-- MariaDB dump 10.19 Distrib 10.5.12-MariaDB, for Linux (x86_64) -- -- Host: localhost Database: translucent -- ------------------------------------------------------ -- Server version 10.5.12-MariaDB /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `wp_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) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(20) COLLATE utf8mb4_unicode_ci 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `schedule` longtext COLLATE utf8mb4_unicode_ci 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) COLLATE utf8mb4_unicode_ci 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 AUTO_INCREMENT=2254 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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 */; INSERT INTO `wp_actionscheduler_actions` VALUES (2251,'action_scheduler/migration_hook','complete','2022-06-20 17:53:40','2022-06-20 13:53:40','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1655747620;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1655747620;}',1,1,'2022-06-20 17:54:42','2022-06-20 13:54:42',0,NULL),(2252,'action_scheduler/migration_hook','complete','2022-06-20 23:55:07','2022-06-20 19:55:07','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1655769307;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1655769307;}',1,1,'2022-06-20 23:55:17','2022-06-20 19:55:17',0,NULL),(2253,'action_scheduler/migration_hook','complete','2022-06-22 14:11:14','2022-06-22 10:11:14','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1655907074;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1655907074;}',1,1,'2022-06-22 14:11:54','2022-06-22 10:11:54',0,NULL); /*!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 AUTO_INCREMENT=67114 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`group_id`), KEY `slug` (`slug`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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'); /*!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 COLLATE utf8mb4_unicode_ci 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 AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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 */; INSERT INTO `wp_actionscheduler_logs` VALUES (13,2251,'action created','2022-06-20 17:52:40','2022-06-20 13:52:40'),(14,2251,'action started via Async Request','2022-06-20 17:54:42','2022-06-20 13:54:42'),(15,2251,'action complete via Async Request','2022-06-20 17:54:42','2022-06-20 13:54:42'),(16,2252,'action created','2022-06-20 23:54:07','2022-06-20 19:54:07'),(17,2252,'action started via Async Request','2022-06-20 23:55:17','2022-06-20 19:55:17'),(18,2252,'action complete via Async Request','2022-06-20 23:55:17','2022-06-20 19:55:17'),(19,2253,'action created','2022-06-22 14:10:14','2022-06-22 10:10:14'),(20,2253,'action started via Async Request','2022-06-22 14:11:54','2022-06-22 10:11:54'),(21,2253,'action complete via Async Request','2022-06-22 14:11:54','2022-06-22 10:11:54'); /*!40000 ALTER TABLE `wp_actionscheduler_logs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_aioseo_notifications` -- DROP TABLE IF EXISTS `wp_aioseo_notifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_aioseo_notifications` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `slug` varchar(13) COLLATE utf8mb4_unicode_ci NOT NULL, `title` text COLLATE utf8mb4_unicode_ci NOT NULL, `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `type` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `level` text COLLATE utf8mb4_unicode_ci NOT NULL, `notification_id` bigint(20) unsigned DEFAULT NULL, `notification_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start` datetime DEFAULT NULL, `end` datetime DEFAULT NULL, `button1_label` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `button1_action` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `button2_label` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `button2_action` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `dismissed` tinyint(1) NOT NULL DEFAULT 0, `created` datetime NOT NULL, `updated` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ndx_aioseo_notifications_slug` (`slug`), KEY `ndx_aioseo_notifications_dates` (`start`,`end`), KEY `ndx_aioseo_notifications_type` (`type`), KEY `ndx_aioseo_notifications_dismissed` (`dismissed`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_aioseo_notifications` -- LOCK TABLES `wp_aioseo_notifications` WRITE; /*!40000 ALTER TABLE `wp_aioseo_notifications` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_aioseo_notifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_aioseo_posts` -- DROP TABLE IF EXISTS `wp_aioseo_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_aioseo_posts` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL, `title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `keywords` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `keyphrases` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `page_analysis` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `canonical_url` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `og_title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `og_description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `og_object_type` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT 'default', `og_image_type` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT 'default', `og_image_custom_url` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `og_image_custom_fields` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `og_custom_image_width` int(11) DEFAULT NULL, `og_custom_image_height` int(11) DEFAULT NULL, `og_video` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `og_custom_url` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `og_article_section` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `og_article_tags` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `twitter_use_og` tinyint(1) DEFAULT 1, `twitter_card` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT 'default', `twitter_image_type` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT 'default', `twitter_image_custom_url` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `twitter_image_custom_fields` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `twitter_title` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `twitter_description` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seo_score` int(11) NOT NULL DEFAULT 0, `schema_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `schema_type_options` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pillar_content` tinyint(1) DEFAULT NULL, `robots_default` tinyint(1) NOT NULL DEFAULT 1, `robots_noindex` tinyint(1) NOT NULL DEFAULT 0, `robots_noarchive` tinyint(1) NOT NULL DEFAULT 0, `robots_nosnippet` tinyint(1) NOT NULL DEFAULT 0, `robots_nofollow` tinyint(1) NOT NULL DEFAULT 0, `robots_noimageindex` tinyint(1) NOT NULL DEFAULT 0, `robots_noodp` tinyint(1) NOT NULL DEFAULT 0, `robots_notranslate` tinyint(1) NOT NULL DEFAULT 0, `robots_max_snippet` int(11) DEFAULT NULL, `robots_max_videopreview` int(11) DEFAULT NULL, `robots_max_imagepreview` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT 'none', `tabs` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `images` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` tinytext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `frequency` tinytext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `videos` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_thumbnail` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_scan_date` datetime DEFAULT NULL, `location` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `local_seo` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created` datetime NOT NULL, `updated` datetime NOT NULL, PRIMARY KEY (`id`), KEY `ndx_aioseo_posts_post_id` (`post_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_aioseo_posts` -- LOCK TABLES `wp_aioseo_posts` WRITE; /*!40000 ALTER TABLE `wp_aioseo_posts` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_aioseo_posts` 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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 */; INSERT INTO `wp_commentmeta` VALUES (3,3,'comment_author_picture',''),(4,3,'author_subscribed','0'),(5,3,'tcm_featured','1'),(6,3,'tcm_needs_reply','2'),(7,3,'downvote','0'),(8,3,'upvote','1'),(9,4,'comment_author_picture',''),(10,4,'author_subscribed','0'),(13,4,'tcm_needs_reply','2'),(14,3,'wpdiscuz_closed','1'); /*!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 COLLATE utf8mb4_unicode_ci NOT NULL, `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci 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 COLLATE utf8mb4_unicode_ci NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT 0, `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'comment', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0, `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)) ) ENGINE=InnoDB AUTO_INCREMENT=143 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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 (3,871,'Robert Golabek','','','10.8.7.37','2020-01-04 12:57:05','2020-01-04 17:57:05','This blog is our first blog we did',0,'1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36','comment',0,4),(4,1004,'Robert Golabek','','','10.8.7.37','2020-01-04 13:39:04','2020-01-04 18:39:04','Well put, we are seeing more time-series data continuously generated in vast amounts in hospital settings using IoT devices.\n\nAny blog that has Homer gets my up vote haha!',0,'1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36','comment',0,4),(8,918,'индивидуальный предприниматель договор','denhcdfxz@bigmir.net','http://walltsidmu.webcindario.com/?c=5&p=75','10.8.10.251','2020-01-25 02:16:40','2020-01-25 07:16:40','This is my first time pay a quick visit at here and i am in fact happy to read all at single place.| а',0,'1','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','comment',0,0),(15,1555,'SEO Referral Program','noreply@exorank.com','https://exorank.com/affiliates.php','10.8.10.251','2020-02-02 05:05:27','2020-02-02 10:05:27','Awesome post! Keep up the great work! :)',0,'1','ExoRank','comment',0,0),(18,1555,'AffiliateLabz','comments@affiliatelabz.com','https://affiliatelabz.com/special/?source=translucentcomputing.com','10.8.10.122','2020-02-16 02:46:08','2020-02-16 07:46:08','Great content! Super high-quality! Keep it up! :)',0,'1','Mozilla/5.0 (compatible; AffiliateLabz/1.0; +https://affiliatelabz.com/)','comment',0,0),(54,912,'VictorBraxy','t.t5731.8.30@gmail.com','https://www.bizcommunity.com/Profile/comprarxanaxonlineespaña','10.8.10.122','2020-05-04 02:57:00','2020-05-04 06:57:00','lisinopril erectile dysfunction https://www.bizcommunity.com/Profile/comprarxanaxonlineespa%c3%b1a original flower remedies',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','comment',0,0),(55,1004,'ufuzozebii','ecidoa@hfgdas.popmile45.com','http://mewkid.net/when-is-xaxlop/','10.8.10.122','2020-05-05 03:52:35','2020-05-05 07:52:35','http://mewkid.net/when-is-xaxlop/ - Amoxil Dose For 55 Pounds Buy Amoxil Online lvb.lmle.translucentcomputing.com.tsw.ud http://mewkid.net/when-is-xaxlop/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','comment',0,0),(56,1004,'ijuduwup','ijoudozoc@hfgdas.popmile45.com','http://mewkid.net/when-is-xaxlop/','10.8.10.122','2020-05-05 04:25:38','2020-05-05 08:25:38','http://mewkid.net/when-is-xaxlop/ - Amoxicillin Buy Amoxicillin Online gqf.dbzo.translucentcomputing.com.kaz.vy http://mewkid.net/when-is-xaxlop/',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','comment',0,0),(57,1004,'osehufuwoivum','osaqov@hfgdas.popmile45.com','http://mewkid.net/when-is-xaxlop/','10.8.10.122','2020-05-05 04:56:58','2020-05-05 08:56:58','http://mewkid.net/when-is-xaxlop/ - Amoxicillin 500mg Amoxicillin 500mg ljp.kcfx.translucentcomputing.com.osv.qc http://mewkid.net/when-is-xaxlop/',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','comment',0,0),(58,1004,'uphugopje','iiqapaej@hfgdas.popmile45.com','http://mewkid.net/when-is-xaxlop/','10.8.10.122','2020-05-05 05:28:58','2020-05-05 09:28:58','http://mewkid.net/when-is-xaxlop/ - Amoxicillin Online Amoxicillin nvd.heyi.translucentcomputing.com.vrr.ms http://mewkid.net/when-is-xaxlop/',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','comment',0,0),(59,912,'RichardFum','t.t573.1.8.30@gmail.com','https://www.bizcommunity.com/Profile/Achetersibutraminesansordon','10.8.10.122','2020-05-06 18:20:38','2020-05-06 22:20:38','street drugs https://www.bizcommunity.com/Profile/comprarzolpidemsinrecetaes valerian herbal',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','comment',0,0),(60,918,'nukedmiwjc','yuzcagehi@diirmail.com','http://mewkid.net/when-is-xaxlop/','10.8.10.122','2020-05-08 14:34:14','2020-05-08 18:34:14','http://mewkid.net/when-is-xaxlop/ - Dosage For Amoxicillin 500mg Amoxicillin Online tew.xfmv.translucentcomputing.com.tem.nh http://mewkid.net/when-is-xaxlop/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','comment',0,0),(61,918,'opofozadqapee','ohuqhezke@diirmail.com','http://mewkid.net/when-is-xaxlop/','10.8.10.122','2020-05-08 15:04:23','2020-05-08 19:04:23','http://mewkid.net/when-is-xaxlop/ - Buy Amoxil Online Amoxicillin 500mg nga.zkrl.translucentcomputing.com.dpw.py http://mewkid.net/when-is-xaxlop/',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','comment',0,0),(62,912,'FrankLen','t.t573.1.8.3.0@gmail.com','https://www.bizcommunity.com/Profile/acheterphentermine37.5mgen','10.8.10.122','2020-05-09 08:49:01','2020-05-09 12:49:01','colon cancer remedies https://www.bizcommunity.com/Profile/achetermodafinilsansordonnax prescription sports sunglasses',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','comment',0,0),(63,892,'Keljoncuh','kelnacy@delays.space','https://buycialisuss.com','10.8.10.122','2020-05-10 01:00:08','2020-05-10 05:00:08','Viagra Cialis Et Levitra https://buycialisuss.com/# - Cialis Order Medications Overnight Cialis Propecia Jabon',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','comment',0,0),(64,912,'FrankLen','t.t573.1.8.3.0@gmail.com','https://www.bizcommunity.com/Profile/comprarzolpidemsinrecetaes','10.8.10.122','2020-05-13 10:42:10','2020-05-13 14:42:10','rhinitis remedies https://www.bizcommunity.com/Profile/comprarxanaxonlineespa%c3%b1a ringworm homeopathic remedies',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','comment',0,0),(65,912,'awavajamu','ecuwezu@gfsafd.sadsdskfm.com','http://mewkid.net/when-is-xaxlop/','10.8.10.122','2020-05-14 20:29:09','2020-05-15 00:29:09','http://mewkid.net/when-is-xaxlop/ - Amoxicillin 500 Mg Amoxicillin 500mg Capsules xiu.qcme.translucentcomputing.com.sen.tj http://mewkid.net/when-is-xaxlop/',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','comment',0,0),(66,912,'alujbucutoel','uzukuvo@gfsafd.sadsdskfm.com','http://mewkid.net/when-is-xaxlop/','10.8.10.122','2020-05-14 20:53:30','2020-05-15 00:53:30','http://mewkid.net/when-is-xaxlop/ - Buy Amoxicillin Online Amoxicillin 500mg Capsules lld.hlmj.translucentcomputing.com.cgo.nk http://mewkid.net/when-is-xaxlop/',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','comment',0,0),(67,912,'Zacharypah','t.t.573.1.8.3.0@gmail.com','https://www.bizcommunity.com/Profile/Comprarlorazepamonlinesinr','10.8.10.122','2020-05-15 12:22:59','2020-05-15 16:22:59','remedies strep throat bizcommunity.com/Profile/StilnoxkaufenDeutschlandohn herbal list',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64 (Edition Yx)','comment',0,0),(68,1405,'AbermotHEf','jufinupuse@gmx.com','http://3dlabs.co/37-r-gammal-kvinna-dating-22-r-gammal-man.html','10.8.10.122','2020-05-18 05:00:57','2020-05-18 09:00:57','aldre dam dating yngre man IBM dejtingsajter dejtingsajter i Essex Taipei dating platser gratis Papua Nya Guinea dating http://3dlabs.co/exempel-bra-profil-online-dating.html Dating amerikanska killar',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.99','comment',0,0),(69,877,'AbermotHEf','awyqinifap@gmx.com','http://aclassynerd.com/dating-kategori.html','10.8.10.122','2020-05-19 12:23:54','2020-05-19 16:23:54','Dating for elva aringar gratis online matchmaking pa hindi Sam Freddie dating verkliga livet lagar mot att dejta en minderarig i Texas varlden basta 100 gratis dejtingsajter http://aclassynerd.com/asiatiska-dating-manchester-storbritannien.html bra dating forsta e-post',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','comment',0,0),(70,912,'RonaldBof','t.t.5.73.1.8.3.0@gmail.com','https://note.com/adderall/n/n07354dadca31','10.8.10.122','2020-05-19 13:55:49','2020-05-19 17:55:49','muscle ache remedies bizcommunity.com/Profile/Comprarreductilsinrecetame radon remediation systems',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','comment',0,0),(71,1004,'ufuhehebmaje','ivutatox@jhgfd.sadsdskfm.com','http://mewkid.net/when-is-xaxlop/','10.8.10.122','2020-05-20 08:43:10','2020-05-20 12:43:10','http://mewkid.net/when-is-xaxlop/ - Buy Amoxil Amoxicillin 500mg Capsules pug.mswh.translucentcomputing.com.ofr.ic http://mewkid.net/when-is-xaxlop/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36','comment',0,0),(72,1004,'acehaco','ifahzuw@jhgfd.sadsdskfm.com','http://mewkid.net/when-is-xaxlop/','10.8.10.122','2020-05-20 09:11:18','2020-05-20 13:11:18','http://mewkid.net/when-is-xaxlop/ - Amoxil Dose For 55 Pounds Amoxil znj.grck.translucentcomputing.com.nnj.ob http://mewkid.net/when-is-xaxlop/',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','comment',0,0),(73,912,'Randyzer','t.t.5.7.3.1.8.3.0@gmail.com','https://note.com/reductil/n/n6fe7944574ee','10.8.10.122','2020-05-22 16:46:45','2020-05-22 20:46:45','herbal vaporizers note.com/stilnox/n/n1b667da02035 drug testing methods',0,'0','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','comment',0,0),(74,873,'Dmitry Digital','justdoitmanordie@gmail.com','https://medium.com/@whub/app-development-c83c40aef72b','10.8.10.122','2020-07-01 10:05:28','2020-07-01 14:05:28','I totally agree with what the article says. But I wanted to clarify: how justified is the processing of mobile applications in 2020? Does it have a financial benefit?',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4022.0 Safari/537.36','comment',0,0),(75,912,'Jamessuina','d.e.borahwilliams1984528@gmail.com','https://siwalimanews.com/forums/topic/acheter-provigil-en-ligne-en-france','10.8.10.122','2020-07-07 10:02:23','2020-07-07 14:02:23','blue drug forum https://www.mps-j.or.jp/topic/acheter-ativan-en-ligne-sans-ordonnance diuretic home remedies',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','comment',0,0),(76,912,'Edwardsmock','d.e.b.orahwilliams1984528@gmail.com','https://siwalimanews.com/forums/topic/comprar-ritalin-online-sin-receta','10.8.10.122','2020-07-09 13:14:22','2020-07-09 17:14:22','herbal teas remedies https://redfilosofia.es/atheneblog/Symposium/topic/comprar-adderall-por-internet-sin-receta drug test cups',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','comment',0,0),(77,912,'WilliamSal','d.e.b.o.rahwilliams1984528@gmail.com','https://redfilosofia.es/atheneblog/Symposium/topic/comprar-clonazepam-online-sin-receta','10.8.10.122','2020-07-12 15:41:03','2020-07-12 19:41:03','flu cough remedy https://redfilosofia.es/atheneblog/Symposium/topic/comprar-clonazepam-online-sin-receta drug crime movies',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','comment',0,0),(78,1324,'inseneMop','natuple@ajmail.xyz','','10.8.10.122','2020-07-16 23:58:15','2020-07-17 03:58:15','Can You Drink Beer With Keflex ZeDDatryDera https://bbuycialisss.com/# - Cialis BentBypepype Acquistare Gel Kamagra Montpellier assodiadlips Buy Cialis Setuapse Cialis 10 Miligramos',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','comment',0,0),(79,1324,'inseneMop','natuple@ajmail.xyz','','10.8.10.122','2020-07-29 03:14:39','2020-07-29 07:14:39','Kamagra Prix En France Arershorgo https://ascialis.com/ - buy cialis online prescription Fallyfew regular cialis vs daily cialis unavyBum Cialis Drearm Liquid Amoxicillin',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','comment',0,0),(80,929,'acikawl','allesse@aymail.xyz','','10.8.10.122','2020-08-03 04:48:56','2020-08-03 08:48:56','Real Progesterone Where To Buy Price On Line Arershorgo https://ascialis.com/ - Cialis Fallyfew viagra levitra unavyBum generic cialis no prescription Drearm Buy Mifepristone And Misoprostol Uk',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','comment',0,0),(81,912,'CraigUnock','lidyakovaleva106@gmail.com','https://redfilosofia.es/atheneblog/Symposium/topic/comprar-lorazepam-por-internet-sin-receta','10.8.10.122','2020-08-18 00:02:07','2020-08-18 04:02:07','drug bust https://www.gammaes.com/index.php/forum/suggestion-box/197739-acheter-adipex-en-ligne-pas-cher natural remedies products',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','comment',0,0),(82,912,'MichaelTub','l.idyakovaleva106@gmail.com','https://www.prevencionintegral.com/comunidad/forum/comprar-xanax-por-internet-sin-receta','10.8.10.122','2020-08-20 17:48:13','2020-08-20 21:48:13','pain remedies https://www.prevencionintegral.com/comunidad/forum/comprar-alprazolam-online-sin-receta tooth remedies home',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','comment',0,0),(83,912,'Thomasvumma','l.i.dyakovaleva106@gmail.com','https://www.gammaes.com/index.php/forum/suggestion-box/197719-acheter-rivotril-en-ligne-sans-ordonnance','10.8.10.122','2020-08-23 05:20:14','2020-08-23 09:20:14','chest cold remedy https://redfilosofia.es/atheneblog/Symposium/topic/comprar-diazepam-en-linea-sin-receta herbal gaba',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','comment',0,0),(84,912,'Kevinplend','l.i.d.yakovaleva106@gmail.com','http://safetycommunity.com/forum/topics/acheter-stilnox-sans-ordonnance-en-france','10.8.10.122','2020-08-25 13:10:52','2020-08-25 17:10:52','boston health care http://mixemergencytutorials.com/modafinil.html herbal escense',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','comment',0,0),(85,920,'oyeujqub','ejefipize@jhgds.safffsmail.com','http://mewkid.net/when-is-xuxlya/','10.8.10.122','2020-08-28 11:04:51','2020-08-28 15:04:51','http://mewkid.net/when-is-xuxlya/ - Amoxicillin 500 Mg Amoxicillin zem.cebu.translucentcomputing.com.xki.sg http://mewkid.net/when-is-xuxlya/',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','comment',0,0),(86,920,'ukalovituv','axenafi@jhgfd.sadsdskfm.com','http://mewkid.net/when-is-xuxlya/','10.8.10.122','2020-08-28 11:08:40','2020-08-28 15:08:40','http://mewkid.net/when-is-xuxlya/ - Amoxicillin 500mg Capsules Amoxicillin 500mg mse.pmaq.translucentcomputing.com.nra.gq http://mewkid.net/when-is-xuxlya/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','comment',0,0),(87,920,'ecubogor','uzonupa@jhgds.safffsmail.com','http://mewkid.net/when-is-xuxlya/','10.8.10.122','2020-08-28 11:50:09','2020-08-28 15:50:09','http://mewkid.net/when-is-xuxlya/ - Amoxicillin 500mg Dosage Buy Amoxicillin wtz.xkfl.translucentcomputing.com.jbc.yd http://mewkid.net/when-is-xuxlya/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','comment',0,0),(88,920,'obmobihl','opiwez@jhgfd.sadsdskfm.com','http://mewkid.net/when-is-xuxlya/','10.8.10.122','2020-08-28 11:59:36','2020-08-28 15:59:36','http://mewkid.net/when-is-xuxlya/ - Amoxicillin 500 Mg Amoxicillin On Line tue.svdp.translucentcomputing.com.auv.bn http://mewkid.net/when-is-xuxlya/',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','comment',0,0),(89,920,'ejuzopuxoxace','anagoq@jhgfd.sadsdskfm.com','http://mewkid.net/when-is-xuxlya/','10.8.10.122','2020-08-28 12:27:04','2020-08-28 16:27:04','http://mewkid.net/when-is-xuxlya/ - Amoxicillin Online Amoxicillin No Prescription cwc.luzy.translucentcomputing.com.mni.sb http://mewkid.net/when-is-xuxlya/',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','comment',0,0),(90,920,'xesacahitotu','oieyupi@jhgfd.sadsdskfm.com','http://mewkid.net/when-is-xuxlya/','10.8.10.122','2020-08-28 12:52:32','2020-08-28 16:52:32','http://mewkid.net/when-is-xuxlya/ - Buy Amoxicillin Amoxil leq.rrdo.translucentcomputing.com.fgb.gh http://mewkid.net/when-is-xuxlya/',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64 (Edition Yx)','comment',0,0),(91,920,'eziyolidotole','icurib@jhgfd.sadsdskfm.com','http://mewkid.net/when-is-xuxlya/','10.8.10.122','2020-08-28 13:41:12','2020-08-28 17:41:12','http://mewkid.net/when-is-xuxlya/ - Buy Amoxicillin Amoxicillin gqs.ngoy.translucentcomputing.com.uhb.yf http://mewkid.net/when-is-xuxlya/',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64 (Edition Yx)','comment',0,0),(92,920,'evuzihabeqaq','iwutudu@jhgfd.sadsdskfm.com','http://mewkid.net/when-is-xuxlya/','10.8.10.122','2020-08-28 14:24:54','2020-08-28 18:24:54','http://mewkid.net/when-is-xuxlya/ - Amoxicillin 500 Mg Amoxicillin 500mg Capsules aev.fnms.translucentcomputing.com.wgk.bm http://mewkid.net/when-is-xuxlya/',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36','comment',0,0),(93,920,'raenuki','irogauhuj@jhgfd.sadsdskfm.com','http://mewkid.net/when-is-xuxlya/','10.8.10.122','2020-08-28 14:51:14','2020-08-28 18:51:14','http://mewkid.net/when-is-xuxlya/ - Amoxicillin Buy Amoxicillin Online hwu.ppta.translucentcomputing.com.vei.sv http://mewkid.net/when-is-xuxlya/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','comment',0,0),(94,920,'odebekugemir','exidio@jhgfd.sadsdskfm.com','http://mewkid.net/when-is-xuxlya/','10.8.10.122','2020-08-28 15:15:56','2020-08-28 19:15:56','http://mewkid.net/when-is-xuxlya/ - Amoxicillin Buy Amoxicillin sif.wmim.translucentcomputing.com.fqp.aw http://mewkid.net/when-is-xuxlya/',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','comment',0,0),(95,920,'acokumauc','efopewa@jhgfd.sadsdskfm.com','http://mewkid.net/when-is-xuxlya/','10.8.10.122','2020-08-28 15:42:12','2020-08-28 19:42:12','http://mewkid.net/when-is-xuxlya/ - Amoxicillin 500mg Capsules Amoxicillin 500mg Dosage fok.lcga.translucentcomputing.com.xxb.ae http://mewkid.net/when-is-xuxlya/',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','comment',0,0),(96,920,'uxceulixzwauz','opubuy@ihicmail.com','http://mewkid.net/when-is-xuxlya/','10.8.10.122','2020-09-06 08:38:01','2020-09-06 12:38:01','http://mewkid.net/when-is-xuxlya/ - Amoxicillin 500 Mg Amoxicillin On Line est.mppw.translucentcomputing.com.ycu.rc http://mewkid.net/when-is-xuxlya/',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36','comment',0,0),(97,920,'anutazudijea','ayixeg@ihicmail.com','http://mewkid.net/when-is-xuxlya/','10.8.10.122','2020-09-06 09:22:24','2020-09-06 13:22:24','http://mewkid.net/when-is-xuxlya/ - 18 Amoxil foq.jxoe.translucentcomputing.com.xpk.fm http://mewkid.net/when-is-xuxlya/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','comment',0,0),(98,918,'imihaga','opagicogi@ilomail.com','http://mewkid.net/when-is-xuxlya2/','10.8.10.122','2020-10-20 13:22:05','2020-10-20 17:22:05','http://mewkid.net/when-is-xuxlya2/ - Amoxicillin 500 Mg Amoxicillin zzi.vxmt.translucentcomputing.com.nrq.lq http://mewkid.net/when-is-xuxlya2/',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','comment',0,0),(99,918,'oewizopafuqog','qaovuxuh@jhgd.emailddtr.com','http://mewkid.net/when-is-xuxlya2/','10.8.10.122','2020-10-20 13:22:47','2020-10-20 17:22:47','http://mewkid.net/when-is-xuxlya2/ - Amoxicillin 500 Mg Amoxicillin 500mg Capsules vif.usyn.translucentcomputing.com.vin.bl http://mewkid.net/when-is-xuxlya2/',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','comment',0,0),(100,918,'urasobi','iroveb@fhasdf.sadsdskfm.com','http://mewkid.net/when-is-xuxlya2/','10.8.10.122','2020-10-20 13:27:53','2020-10-20 17:27:53','http://mewkid.net/when-is-xuxlya2/ - Buy Amoxicillin Amoxicillin 500mg Capsules rmi.gqik.translucentcomputing.com.vls.it http://mewkid.net/when-is-xuxlya2/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','comment',0,0),(101,918,'iyusenip','ayibafum@ilomail.com','http://mewkid.net/when-is-xuxlya2/','10.8.10.122','2020-10-20 13:34:33','2020-10-20 17:34:33','http://mewkid.net/when-is-xuxlya2/ - Amoxicillin Amoxicillin Without Prescription kpv.bzkm.translucentcomputing.com.gjh.un http://mewkid.net/when-is-xuxlya2/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','comment',0,0),(102,918,'ufihowiqohuz','islakadou@jhgd.emailddtr.com','http://mewkid.net/when-is-xuxlya2/','10.8.10.122','2020-10-20 13:35:28','2020-10-20 17:35:28','http://mewkid.net/when-is-xuxlya2/ - Amoxicillin Amoxicillin Without Prescription fvn.yknp.translucentcomputing.com.heg.ra http://mewkid.net/when-is-xuxlya2/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','comment',0,0),(103,918,'inedzse','ogisatahi@fhasdf.sadsdskfm.com','http://mewkid.net/when-is-xuxlya2/','10.8.10.122','2020-10-20 13:47:58','2020-10-20 17:47:58','http://mewkid.net/when-is-xuxlya2/ - Buy Amoxicillin Amoxicillin Without Prescription xoy.brhm.translucentcomputing.com.grn.io http://mewkid.net/when-is-xuxlya2/',0,'0','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36 Kinza/4.8.2','comment',0,0),(104,912,'JoshuaMut','i.n.naatakova92@gmail.com','https://solucionesholcim.com/innovacion/forums/topic/comprar-tramadol-online-precisa-de-receita','10.8.8.148','2020-11-07 19:49:47','2020-11-08 00:49:47','cannabis herbal http://www.europerealestate.es/content/es/forums/topic/comprar-adderall-por-internet-en-espana best prescription lenses',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.68','comment',0,0),(105,912,'RalphRof','i.n.n.aatakova92@gmail.com','https://www.medarbejder.ordrup-gym.dk/tramdk.html','10.8.8.148','2020-11-10 07:56:30','2020-11-10 12:56:30','drug recovery program https://solucionesholcim.com/innovacion/forums/topic/comprar-lorazepam-sin-receta-medica drug rehabilitation arizona',0,'0','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','comment',0,0),(106,912,'DavidFAK','i.n.n.a.at.akova92@gmail.com','http://www.europerealestate.es/content/es/forums/topic/comprar-zolpidem-online-pela-internet','10.8.8.148','2020-11-12 21:02:13','2020-11-13 02:02:13','online otc pharmacy https://courrierdesameriques.com/forums/topic/acheter-lorazepam-en-ligne-sans-ordonnance wildcrafted herbal products',0,'0','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','comment',0,0),(107,1144,'dressyweque','zmovuferisonvityTrets@gmail.com','http://onlinecasinogameslots.com/#','10.8.18.50','2020-11-15 11:01:16','2020-11-15 16:01:16','http://onlinecasinogameslots.com/# all free casino slot games http://onlinecasinogameslots.com/# - casino play casino free ',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64 (Edition Yx)','comment',0,0),(108,912,'Danieltar','i.n.n.a.a.t.a.k.ova92@gmail.com','https://www.bizcommunity.com/Profile/comprarzolpidemsinrecetaes','10.8.0.36','2020-12-05 13:36:42','2020-12-05 18:36:42','herbal coffee alternative https://sites.google.com/view/comprartramadol hernia erectile dysfunction',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4087.0 Safari/537.36','comment',0,0),(109,912,'Orvillenat','i.n.n.a.a.t.a.k.o.v.a92@gmail.com','http://tux4.com.br/networking/grupos/comprar-tramadol-sin-receta-online','10.8.0.36','2020-12-09 00:30:35','2020-12-09 05:30:35','pharmacy degrees online https://finb4all.badminton.es/stiles.html miami mold remediation',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4087.0 Safari/537.36','comment',0,0),(110,912,'Stephennof','i.n.n.a.a.t.a.k.o.v.a.92@gmail.com','https://www.bizcommunity.com/Profile/Achetersibutraminesansordon','10.8.0.36','2020-12-10 10:52:06','2020-12-10 15:52:06','prescription sunglasses fast http://www.ladolcevita-traiteur.fr/clonfr.html health care nyc',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.24 Safari/537.36','comment',0,0),(111,912,'FrankPew','i.n.n.a.a.t.a.k.o.v.a.9.2@gmail.com','https://belladiadesign.com/pill/buy-valium.html','10.8.0.193','2020-12-12 15:28:18','2020-12-12 20:28:18','herbal diabetes remedies cycling prescription glasses erectile dysfunction surgery',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.44 Safari/537.36','comment',0,0),(112,920,'mathewbairstow','mathewbairstow18@gmail.com','https://www.macandro.com/health-fitness-app-development','10.8.0.193','2020-12-14 04:52:05','2020-12-14 09:52:05','Interesting. Great initiative.',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','comment',0,0),(113,1628,'Cinopiemn','Appeddics@brendl.xyz','https://bansocialism.com/','10.8.0.193','2020-12-14 15:58:19','2020-12-14 20:58:19','Buy Lasix Online Fast Delivery Arershorgo cheap cialis Fallyfew Order Fluoxetine Online No Prescription',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4087.0 Safari/537.36','comment',0,0),(114,914,'Cinopiemn','Appeddics@brendl.xyz','https://bansocialism.com/','10.8.0.193','2020-12-16 08:48:12','2020-12-16 13:48:12','Misoprostol Cytotec Arershorgo cheap cialis online canadian pharmacy Fallyfew viagra efectos indeseables',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.44 Safari/537.36 OPR/69.0.3686.7 (Edition beta)','comment',0,0),(115,897,'mufyucrovaqo','aqhegiva@fhfsd.popmile45.com','http://mewkid.net/when-is-xuxlya2/','10.8.0.193','2020-12-18 07:28:25','2020-12-18 12:28:25','http://mewkid.net/when-is-xuxlya2/ - Amoxicillin Online Dosage For Amoxicillin 500mg ana.euls.translucentcomputing.com.ktt.qb http://mewkid.net/when-is-xuxlya2/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.24 Safari/537.36','comment',0,0),(116,897,'okokutayipiho','ugipaxij@fhasdf.sadsdskfm.com','http://mewkid.net/when-is-xuxlya2/','10.8.0.193','2020-12-18 07:28:53','2020-12-18 12:28:53','http://mewkid.net/when-is-xuxlya2/ - Buy Amoxicillin Amoxicillin 500 Mg Dosage cqg.cgqr.translucentcomputing.com.swo.ik http://mewkid.net/when-is-xuxlya2/',0,'0','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25','comment',0,0),(117,897,'aqezeeza','ooyemasal@fhasdf.sadsdskfm.com','http://mewkid.net/when-is-xuxlya2/','10.8.0.193','2020-12-18 07:46:59','2020-12-18 12:46:59','http://mewkid.net/when-is-xuxlya2/ - Amoxicillin 500mg Capsules Buy Amoxicillin qbe.jewm.translucentcomputing.com.vbh.qr http://mewkid.net/when-is-xuxlya2/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.44 Safari/537.36 OPR/69.0.3686.7 (Edition beta)','comment',0,0),(118,907,'btcTOPdaw','gyjghgfhfg@gmail.com','https://t.me/brute_engine','10.8.0.193','2020-12-20 01:19:50','2020-12-20 06:19:50','Hacking Bitcoin!(cracker private key) A program for finding private keys from bitcoin addresses with balance \r\n \r\nhttps://i.ibb.co/Lp3Y0xj/Screenshot-1.png \r\n \r\nBitcoin hack! A program for finding private keys from bitcoin addresses with balance \r\nThe program for finding private keys Brute force \r\nif you have any questions about receiving the program, please contact us by telegram https://t.me/brute_engine (@brute_engine) \r\n \r\nThere are a lot of abandoned wallets in the world! Hack them and earn \r\n \r\nWorks according to a unique algorithm \r\nChecks balance \r\n \r\nDownload \r\n \r\nhttps://mega.nz/file/hlUm2ZJZ#VSk18Z0E1R46wxq48ETQ1itMXXxFuDzywFwCGNlt35k \r\n \r\nhttps://www.sendspace.com/file/plwz9u \r\n \r\nVT \r\n \r\nhttps://www.virustotal.com/gui/file/ddfb1f2638ede0a8ceda6136e99802b29fe8e5e3342edb14b21835434c194b95/detection',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4100.3 Safari/537.36','comment',0,0),(119,885,'fancied','Cadiula@aymail.xyz','https://bansocialism.com/','10.8.0.193','2020-12-21 04:08:41','2020-12-21 09:08:41','Buy Now No Rx Acticin Online Arershorgo cialis pills for sale Fallyfew Instructions Priligy Posologie',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','comment',0,0),(120,1636,'fancied','Cadiula@aymail.xyz','https://bansocialism.com/','10.8.0.193','2020-12-24 07:06:30','2020-12-24 12:06:30','Viagra E Cialis Arershorgo cheap cialis online canadian pharmacy Fallyfew cialis paris',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.14 Safari/537.36','comment',0,0),(121,907,'bitKingdaw','bitlex16@gmail.com','https://t.me/brute_engine','10.8.0.193','2020-12-25 02:02:24','2020-12-25 07:02:24','Hacking Bitcoin!(cracker private key) A program for finding private keys from bitcoin addresses with balance \r\n \r\nhttps://i.ibb.co/Lp3Y0xj/Screenshot-1.png \r\n \r\nBitcoin hack! A program for finding private keys from bitcoin addresses with balance \r\nThe program for finding private keys Brute force \r\nif you have any questions about receiving the program, please contact us by telegram https://t.me/brute_engine (@brute_engine) \r\n \r\nThere are a lot of abandoned wallets in the world! Hack them and earn \r\n \r\nWorks according to a unique algorithm \r\nChecks balance \r\n \r\nDownload \r\n \r\nhttps://mega.nz/file/hlUm2ZJZ#VSk18Z0E1R46wxq48ETQ1itMXXxFuDzywFwCGNlt35k \r\n \r\nhttps://www.sendspace.com/file/plwz9u \r\n \r\nVT \r\n \r\nhttps://www.virustotal.com/gui/file/ddfb1f2638ede0a8ceda6136e99802b29fe8e5e3342edb14b21835434c194b95/detection',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4089.0 Safari/537.36','comment',0,0),(122,918,'Kevgob','tiraksa@mail.ru','https://megaremont.pro/cheboksary-restavratsiya-vann','10.8.0.193','2021-01-01 16:02:14','2021-01-01 21:02:14','Ремонт покрытия ванн в Чебоксарах',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36/iYA9HebN-7','comment',0,0),(123,907,'CoinBitAvady','joker1978qew@gmail.com','','10.8.0.193','2021-01-21 10:59:38','2021-01-21 15:59:38','The best software for hackers (hack bank / dating / bitcoin) \r\n \r\nhttps://cranhan.blogspot.com/ \r\n \r\nand much more in the channel Telegram \r\n \r\nhttps://t.me/brute_engine',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4089.0 Safari/537.36','comment',0,0),(124,905,'oxexatuboci','pikesekue@asdfh.popmile45.com','http://mewkid.net/when-is-xuxlya3/','10.8.16.53','2021-02-02 15:03:32','2021-02-02 20:03:32','http://mewkid.net/when-is-xuxlya3/ - Amoxicillin 500 Mg Amoxicillin Online ewa.nfcl.translucentcomputing.com.hwy.im http://mewkid.net/when-is-xuxlya3/',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','comment',0,0),(125,905,'ogeyidaloj','oxavur@asdfh.popmile45.com','http://mewkid.net/when-is-xuxlya3/','10.8.16.53','2021-02-02 15:27:50','2021-02-02 20:27:50','http://mewkid.net/when-is-xuxlya3/ - Amoxicillin Online Amoxicillin yiv.edgq.translucentcomputing.com.afl.qg http://mewkid.net/when-is-xuxlya3/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4100.3 Safari/537.36','comment',0,0),(126,914,'pailsplusty','nmqnmferisonvityTrets@creditreportblk.com','https://cbdcreamshs.com/','10.8.2.51','2021-02-08 20:51:25','2021-02-09 01:51:25','https://cbdcreamshs.com/ cbd oil for sale medterra cbd oil medterra cbd oil cbd oil store',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36','comment',0,0),(127,1213,'aipijef','ozedrn@hfdsf.sadsdskfm.com','http://mewkid.net/when-is-xuxlya3/','10.8.2.51','2021-02-09 02:50:00','2021-02-09 07:50:00','http://mewkid.net/when-is-xuxlya3/ - Amoxicillin 500mg Capsules Amoxicillin Without Prescription zfi.xuxk.translucentcomputing.com.nlj.ma http://mewkid.net/when-is-xuxlya3/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4093.3 Safari/537.36','comment',0,0),(128,1213,'ahafluk','olomiq@hfdsf.sadsdskfm.com','http://mewkid.net/when-is-xuxlya3/','10.8.2.51','2021-02-09 03:24:58','2021-02-09 08:24:58','http://mewkid.net/when-is-xuxlya3/ - Amoxicillin Amoxicillin No Prescription tqb.cgmu.translucentcomputing.com.wfo.cp http://mewkid.net/when-is-xuxlya3/',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.14 Safari/537.36','comment',0,0),(129,918,'RufusJum','sharikasak@mail.ru','https://drawing-portal.com','10.8.2.51','2021-02-16 03:21:06','2021-02-16 08:21:06','Online Modeling School Yevgenia Kuritsina',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.0 Safari/537.36','comment',0,0),(130,912,'Wesleybrorp','golgolab261@gmail.com','http://brueckenlauf.bbw-web.de/clonde.html','10.8.2.46','2021-02-18 06:41:04','2021-02-18 11:41:04','homeopathic remedies anxiety http://www.baradua.it/xanit.html herbal cure diabetes',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','comment',0,0),(131,918,'RufusJum','sharikasak@mail.ru','https://drawing-portal.com','10.8.2.46','2021-02-18 06:51:01','2021-02-18 11:51:01','Free Autocad training from Evgeny Kuritsin',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.44 Safari/537.36 OPR/69.0.3686.7 (Edition beta)','comment',0,0),(132,2126,'apayeyuojekih','ayakos@obowi.jonjamail.com','http://mewkid.net/when-is-xuxlya3/','10.8.2.46','2021-02-21 17:16:15','2021-02-21 22:16:15','http://mewkid.net/when-is-xuxlya3/ - Amoxicillin Amoxicillin 500mg Capsules hxy.svcr.translucentcomputing.com.rfl.nx http://mewkid.net/when-is-xuxlya3/',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','comment',0,0),(133,2126,'uwipaecod','ojibec@obowi.jonjamail.com','http://mewkid.net/when-is-xuxlya3/','10.8.2.46','2021-02-21 17:40:56','2021-02-21 22:40:56','http://mewkid.net/when-is-xuxlya3/ - Amoxicillin Amoxicillin paf.clyu.translucentcomputing.com.cgm.ii http://mewkid.net/when-is-xuxlya3/',0,'0','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','comment',0,0),(134,912,'Danielploky','g.olgolab261@gmail.com','http://firsttrustpharmacy.com/buy-zyrtec-us','10.8.2.46','2021-02-21 20:26:14','2021-02-22 01:26:14','best herbal cleansers https://www.le36.in/adderfr.html online pharmacy sale',0,'0','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','comment',0,0),(135,2126,'akoqineqemasu','uzilgecma@asfuy.jonjamail.com','http://mewkid.net/when-is-xuxlya3/','10.8.2.46','2021-02-22 12:31:22','2021-02-22 17:31:22','http://mewkid.net/when-is-xuxlya3/ - Buy Amoxil Amoxicillin 500 Mg rav.leko.translucentcomputing.com.mca.gn http://mewkid.net/when-is-xuxlya3/',0,'0','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','comment',0,0),(136,2126,'iqixeguuvejid','onalovap@asfuy.jonjamail.com','http://mewkid.net/when-is-xuxlya3/','10.8.2.46','2021-02-22 12:48:22','2021-02-22 17:48:22','http://mewkid.net/when-is-xuxlya3/ - Amoxicillin 500 Mg Amoxicillin edj.kdwv.translucentcomputing.com.ypu.gp http://mewkid.net/when-is-xuxlya3/',0,'0','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','comment',0,0),(137,912,'Thomasmenty','g.o.lgolab261@gmail.com','http://firsttrustpharmacy.com/buy-clarinex-us','10.8.0.50','2021-02-25 04:18:18','2021-02-25 09:18:18','homeopathic remedies constipation https://staging.vivikola.ch/alprazde.html health care concerns',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.44 Safari/537.36 OPR/69.0.3686.7 (Edition beta)','comment',0,0),(138,912,'WilliamJal','g.o.l.golab261@gmail.com','http://firsttrustpharmacy.com/comprar-analgin','10.8.0.50','2021-02-28 00:05:32','2021-02-28 05:05:32','black plague remedies http://firsttrustpharmacy.com/comprar-pregabalin drug addiction detox',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4100.3 Safari/537.36','comment',0,0),(139,912,'WalterTut','g.o.l.g.olab261@gmail.com','http://firsttrustpharmacy.com/comprar-clonazepam','10.8.0.50','2021-02-28 20:53:19','2021-03-01 01:53:19','ayurvedic remedies diabetes http://firsttrustpharmacy.com/comprar-alprazolam herbal remedy bronchitis',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4096.0 Safari/537.36','comment',0,0),(140,912,'Danielzed','g.o.l.g.o.lab261@gmail.com','http://viagra.ws/tabs/buy-zolpidem-pfz','10.8.0.50','2021-03-02 12:22:56','2021-03-02 17:22:56','female odor remedies http://viagra.ws/tabs/buy-adderall-pfz herbal essences.com',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4099.2 Safari/537.36','comment',0,0),(141,920,'nomie zoe','nomiezoe21@gmail.com','https://angelshomeopathicdispensary.com.au/product/nux-vomica/','10.8.6.61','2021-11-24 05:40:13','2021-11-24 10:40:13','Yeah! Great!',0,'0','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','comment',0,0),(142,2126,'Sam','dehuszar@gmail.com','','10.8.0.41','2022-03-10 09:58:28','2022-03-10 14:58:28','Is there a repo for this plugin that others can use or contribute to?',0,'0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:97.0) Gecko/20100101 Firefox/97.0','comment',0,0); /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_duplicator_packages` -- DROP TABLE IF EXISTS `wp_duplicator_packages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_duplicator_packages` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(250) NOT NULL, `hash` varchar(50) NOT NULL, `status` int(11) NOT NULL, `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `owner` varchar(60) NOT NULL, `package` longtext NOT NULL, PRIMARY KEY (`id`), KEY `hash` (`hash`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_duplicator_packages` -- LOCK TABLES `wp_duplicator_packages` WRITE; /*!40000 ALTER TABLE `wp_duplicator_packages` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_duplicator_packages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_duplicator_pro_entities` -- DROP TABLE IF EXISTS `wp_duplicator_pro_entities`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_duplicator_pro_entities` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `data` longtext COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `type_idx` (`type`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_duplicator_pro_entities` -- LOCK TABLES `wp_duplicator_pro_entities` WRITE; /*!40000 ALTER TABLE `wp_duplicator_pro_entities` DISABLE KEYS */; INSERT INTO `wp_duplicator_pro_entities` VALUES (1,'DUP_PRO_Global_Entity','{\"uninstall_settings\":false,\"uninstall_packages\":false,\"uninstall_tables\":true,\"crypt\":true,\"wpfront_integrate\":false,\"package_ui_created\":1,\"package_mysqldump\":false,\"package_mysqldump_path\":\"\",\"package_phpdump_mode\":0,\"package_php_chunking\":null,\"package_mysqldump_qrylimit\":131072,\"archive_build_mode\":2,\"archive_compression\":true,\"ziparchive_validation\":false,\"ziparchive_mode\":0,\"ziparchive_chunk_size_in_mb\":32,\"homepath_as_abspath\":false,\"archive_build_mode_schedule\":-1,\"archive_compression_schedule\":true,\"server_load_reduction\":0,\"max_package_runtime_in_min\":90,\"php_max_worker_time_in_sec\":20,\"cleanup_mode\":0,\"cleanup_email\":\"\",\"auto_cleanup_hours\":24,\"lock_mode\":1,\"json_mode\":0,\"ajax_protocol\":\"https\",\"custom_ajax_url\":\"https:\\/\\/translucent.local\\/wp-admin\\/admin-ajax.php\",\"clientside_kickoff\":false,\"basic_auth_enabled\":false,\"basic_auth_user\":\"\",\"basic_auth_password\":\"\",\"installer_name_mode\":\"simple\",\"installer_base_name\":\"installer.php\",\"chunk_size\":2048,\"skip_archive_scan\":false,\"send_email_on_build_mode\":1,\"notification_email_address\":\"\",\"storage_htaccess_off\":false,\"max_storage_retries\":10,\"max_default_store_files\":20,\"purge_default_package_record\":false,\"dropbox_upload_chunksize_in_kb\":2000,\"dropbox_transfer_mode\":1,\"gdrive_upload_chunksize_in_kb\":1024,\"gdrive_transfer_mode\":0,\"s3_upload_part_size_in_kb\":6000,\"onedrive_upload_chunksize_in_kb\":3200,\"manual_mode_storage_ids\":[\"-2\"],\"license_status\":0,\"license_expiration_time\":1656626011,\"license_no_activations_left\":false,\"license_key_visible\":false,\"lkp\":\"\",\"license_limit\":15,\"last_edd_api_response\":null,\"last_edd_api_timestamp\":0,\"last_system_check_timestamp\":1655677657,\"initial_activation_timestamp\":1633724748,\"ssl_useservercerts\":true,\"ssl_disableverify\":true,\"import_chunk_size\":1024,\"import_custom_path\":\"\",\"ipv4_only\":false,\"debug_on\":false,\"trace_profiler_on\":false,\"unhook_third_party_js\":false,\"unhook_third_party_css\":false,\"profile_idea\":false,\"profile_beta\":false,\"dupHidePackagesGiftFeatures\":true,\"type\":\"DUP_PRO_Global_Entity\",\"server_kick_off_sslverify\":true,\"cron_parser_lib\":\"csd-parser\",\"betaMUimport\":false,\"notices\":{\"dupArchiveSwitch\":false}}'),(2,'DUP_PRO_Secure_Global_Entity','{\"basic_auth_password\":null,\"lkp\":\"YNs+pzg3Rn0ev\\/jH5JmKoA==\",\"type\":\"DUP_PRO_Secure_Global_Entity\"}'),(3,'DUP_PRO_System_Global_Entity','{\n \"recommended_fixes\": [],\n \"schedule_failed\": false,\n \"package_check_ts\": 1655747559,\n \"type\": \"DUP_PRO_System_Global_Entity\"\n}'),(4,'DUP_PRO_Package_Template_Entity','{\"name\":\"Default\",\"notes\":\"The default template.\",\"filter_sites\":[],\"archive_export_onlydb\":0,\"archive_filter_on\":0,\"archive_filter_dirs\":\"\",\"archive_filter_exts\":\"\",\"archive_filter_files\":\"\",\"archive_filter_names\":false,\"database_filter_on\":0,\"databasePrefixFilter\":false,\"databasePrefixSubFilter\":false,\"database_filter_tables\":\"\",\"database_compatibility_modes\":[],\"installer_opts_secure_on\":0,\"installer_opts_secure_pass\":\"\",\"installerPassowrd\":\"XmJO7YGXKWWC21Vk41B+5o5v538eIVSomnC\\/\\/S3lefKAasOIj+3TOpXQTnEGqEF5sHiJkAPq4EbDcMhUjpabdw==\",\"installer_opts_skip_scan\":0,\"installer_opts_db_host\":\"\",\"installer_opts_db_name\":\"\",\"installer_opts_db_user\":\"\",\"installer_opts_cpnl_enable\":false,\"installer_opts_cpnl_host\":\"\",\"installer_opts_cpnl_user\":\"\",\"installer_opts_cpnl_pass\":\"\",\"installer_opts_cpnl_db_action\":\"create\",\"installer_opts_cpnl_db_host\":\"\",\"installer_opts_cpnl_db_name\":\"\",\"installer_opts_cpnl_db_user\":\"\",\"installer_opts_brand\":-2,\"is_default\":true,\"is_manual\":false,\"type\":\"DUP_PRO_Package_Template_Entity\"}'),(5,'DUP_PRO_Package_Template_Entity','{\"name\":\"[Manual Mode]\",\"notes\":\"The default template.\",\"filter_sites\":\"\",\"archive_export_onlydb\":0,\"archive_filter_on\":0,\"archive_filter_dirs\":\"\",\"archive_filter_exts\":\"\",\"archive_filter_files\":\"\",\"archive_filter_names\":false,\"database_filter_on\":0,\"databasePrefixFilter\":false,\"databasePrefixSubFilter\":false,\"database_filter_tables\":\"\",\"database_compatibility_modes\":\"\",\"installer_opts_secure_on\":0,\"installer_opts_secure_pass\":\"\",\"installerPassowrd\":\"CF8hops0J89Ni+eACjBec6uLVPyiy9y4kEL1DRa1qz\\/LbsZg1\\/cKhCAWVCwaIaSSfO+3tj7SIuVWmypII\\/DzQw==\",\"installer_opts_skip_scan\":0,\"installer_opts_db_host\":\"\",\"installer_opts_db_name\":\"\",\"installer_opts_db_user\":\"\",\"installer_opts_cpnl_enable\":0,\"installer_opts_cpnl_host\":\"\",\"installer_opts_cpnl_user\":\"\",\"installer_opts_cpnl_pass\":\"\",\"installer_opts_cpnl_db_action\":\"create\",\"installer_opts_cpnl_db_host\":\"\",\"installer_opts_cpnl_db_name\":\"\",\"installer_opts_cpnl_db_user\":\"\",\"installer_opts_brand\":-2,\"is_default\":false,\"is_manual\":true,\"type\":\"DUP_PRO_Package_Template_Entity\"}'); /*!40000 ALTER TABLE `wp_duplicator_pro_entities` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_duplicator_pro_packages` -- DROP TABLE IF EXISTS `wp_duplicator_pro_packages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_duplicator_pro_packages` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `hash` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `status` int(11) NOT NULL, `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `owner` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL, `package` longtext COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `hash` (`hash`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_duplicator_pro_packages` -- LOCK TABLES `wp_duplicator_pro_packages` WRITE; /*!40000 ALTER TABLE `wp_duplicator_pro_packages` DISABLE KEYS */; INSERT INTO `wp_duplicator_pro_packages` VALUES (1,'Default','6ff4a86ff2c560eb4020_20211008211232',100,'2021-10-08 17:17:30','robert','{\"Created\":\"2021-10-08 21:12:32\",\"Version\":\"4.0.4.1\",\"VersionWP\":\"5.8.1\",\"VersionDB\":\"10.5.8\",\"VersionPHP\":\"7.4.12\",\"VersionOS\":\"Linux\",\"ID\":1,\"Name\":\"Default\",\"Hash\":\"6ff4a86ff2c560eb4020_20211008211232\",\"NameHash\":\"Default_6ff4a86ff2c560eb4020_20211008211232\",\"Type\":0,\"Notes\":\"The default template.\",\"StorePath\":\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\\/tmp\",\"StoreURL\":\"https:\\/\\/translucent.local\\/wp-content\\/backups-dup-pro\\/\",\"ScanFile\":\"Default_6ff4a86ff2c560eb4020_20211008211232_scan.json\",\"timer_start\":1633727852.854621,\"Runtime\":\"249.027 sec.\",\"ExeSize\":\"75.77KB\",\"ZipSize\":\"519.64MB\",\"Brand\":\"Default\",\"Brand_ID\":-2,\"ziparchive_mode\":0,\"Archive\":{\"ExportOnlyDB\":0,\"FilterDirs\":\"\",\"FilterExts\":\"\",\"FilterFiles\":\"\",\"FilterDirsAll\":[\"\\/bitnami\\/wordpress\\/wp-content\\/ai1wm-backups\",\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-lite\",\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\",\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\",\"\\/bitnami\\/wordpress\\/wp-content\\/backupwordpress\",\"\\/bitnami\\/wordpress\\/wp-content\\/bps-backup\",\"\\/bitnami\\/wordpress\\/wp-content\\/cache\",\"\\/bitnami\\/wordpress\\/wp-content\\/content\\/cache\",\"\\/bitnami\\/wordpress\\/wp-content\\/contents\\/cache\",\"\\/bitnami\\/wordpress\\/wp-content\\/infinitewp\\/backups\",\"\\/bitnami\\/wordpress\\/wp-content\\/managewp\\/backups\",\"\\/bitnami\\/wordpress\\/wp-content\\/old-cache\",\"\\/bitnami\\/wordpress\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/storage\",\"\\/bitnami\\/wordpress\\/wp-content\\/plugins\\/really-simple-captcha\\/tmp\",\"\\/bitnami\\/wordpress\\/wp-content\\/plugins\\/wordfence\\/tmp\",\"\\/bitnami\\/wordpress\\/wp-content\\/updraft\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/aiowps_backups\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/backup-guard\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/backupbuddy_backups\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/backupbuddy_temp\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/ithemes-security\\/backups\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/mainwp\\/backup\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/pb_backupbuddy\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/snapshots\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/sucuri\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/wp-clone\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/wp_all_backup\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/wpbackitup_backups\",\"\\/bitnami\\/wordpress\\/wp-content\\/wfcache\",\"\\/bitnami\\/wordpress\\/wp-content\\/wishlist-backup\",\"\\/var\\/www\\/dfr\\/translucent\\/.opcache\",\"\\/var\\/www\\/dfr\\/translucent\\/.tmb\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-snapshots\"],\"FilterExtsAll\":[],\"FilterFilesAll\":[\".DS_Store\",\"\\/var\\/www\\/dfr\\/translucent\\/.htaccess\",\"\\/var\\/www\\/dfr\\/translucent\\/.user.ini\",\"\\/var\\/www\\/dfr\\/translucent\\/php.ini\",\"\\/var\\/www\\/dfr\\/translucent\\/web.config\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-config.php\",\"dbcache\",\"debug_log\",\"error_log\",\"objectcache\",\"pgcache\",\"ws_ftp.log\"],\"FilterOn\":0,\"File\":\"Default_6ff4a86ff2c560eb4020_20211008211232_archive.zip\",\"Format\":\"ZIP\",\"PackDir\":\"\",\"Size\":544883425,\"Dirs\":null,\"DirCount\":13041,\"RecursiveLinks\":[],\"Files\":null,\"FileCount\":47894,\"file_count\":60935,\"FilterInfo\":{\"Dirs\":{\"Warning\":[],\"AddonSites\":[],\"Size\":[],\"Core\":[],\"Global\":[],\"Instance\":[],\"Unreadable\":[]},\"Files\":{\"Warning\":[],\"Size\":[],\"Core\":[],\"Global\":[],\"Instance\":[],\"Unreadable\":[]},\"Exts\":{\"Core\":[],\"Global\":[],\"Instance\":[],\"Unreadable\":[]},\"TreeSize\":null,\"TreeWarning\":null},\"ListDelimiter\":\"\\n\",\"throttleDelayInUs\":0},\"Multisite\":{\"FilterSites\":\"\"},\"Installer\":{\"File\":\"Default_6ff4a86ff2c560eb4020_20211008211232_installer.php\",\"Size\":77585,\"OptsSecureOn\":0,\"OptsSecurePass\":\"\",\"OptsSkipScan\":0,\"OptsDBHost\":\"\",\"OptsDBName\":\"\",\"OptsDBUser\":\"\",\"OptsCPNLHost\":\"\",\"OptsCPNLUser\":\"\",\"OptsCPNLPass\":\"\",\"OptsCPNLEnable\":0,\"OptsCPNLConnect\":false,\"OptsCPNLDBAction\":\"create\",\"OptsCPNLDBHost\":\"\",\"OptsCPNLDBName\":\"\",\"OptsCPNLDBUser\":\"\",\"numFilesAdded\":0,\"numDirsAdded\":0},\"Database\":{\"info\":{\"buildMode\":\"PHPCHUNKING\",\"charSetList\":[\"utf8mb4\",\"utf8\"],\"collationList\":[\"utf8_general_ci\",\"utf8mb4_unicode_520_ci\",\"utf8mb4_unicode_ci\"],\"isTablesUpperCase\":0,\"isNameUpperCase\":0,\"name\":\"bitnami_wordpress\",\"tablesBaseCount\":67,\"tablesFinalCount\":67,\"muFilteredTableCount\":0,\"tablesRowCount\":19013,\"tablesSizeOnDisk\":38086092,\"tablesList\":{\"wp_actionscheduler_actions\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":131072},\"wp_actionscheduler_claims\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_actionscheduler_groups\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_actionscheduler_logs\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_aioseo_notifications\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":81920},\"wp_aioseo_posts\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_commentmeta\":{\"inaccurateRows\":9,\"insertedRows\":10,\"size\":49152},\"wp_comments\":{\"inaccurateRows\":92,\"insertedRows\":92,\"size\":163840},\"wp_duplicator_pro_entities\":{\"inaccurateRows\":5,\"insertedRows\":5,\"size\":32768},\"wp_duplicator_pro_packages\":{\"inaccurateRows\":0,\"insertedRows\":1,\"size\":32768},\"wp_imagify_files\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":98304},\"wp_imagify_folders\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_links\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_litespeed_img_optm\":{\"inaccurateRows\":5,\"insertedRows\":5,\"size\":114688},\"wp_litespeed_optimizer\":{\"inaccurateRows\":39,\"insertedRows\":39,\"size\":114688},\"wp_mail_bank\":{\"inaccurateRows\":6,\"insertedRows\":6,\"size\":2196},\"wp_mail_bank_logs\":{\"inaccurateRows\":3,\"insertedRows\":3,\"size\":3340},\"wp_mail_bank_meta\":{\"inaccurateRows\":4,\"insertedRows\":4,\"size\":4140},\"wp_options\":{\"inaccurateRows\":766,\"insertedRows\":766,\"size\":3735552},\"wp_postmeta\":{\"inaccurateRows\":9562,\"insertedRows\":9562,\"size\":8863744},\"wp_posts\":{\"inaccurateRows\":888,\"insertedRows\":888,\"size\":9994240},\"wp_redirection_404\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":65536},\"wp_redirection_groups\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":49152},\"wp_redirection_items\":{\"inaccurateRows\":4,\"insertedRows\":4,\"size\":114688},\"wp_redirection_logs\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":98304},\"wp_sgpb_subscribers\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_sgpb_subscription_error_log\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_smush_dir_images\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_snippets\":{\"inaccurateRows\":4,\"insertedRows\":4,\"size\":16384},\"wp_tcm_email_hash\":{\"inaccurateRows\":0,\"insertedRows\":1,\"size\":16384},\"wp_tcm_logs\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":32768},\"wp_td_fields\":{\"inaccurateRows\":14,\"insertedRows\":14,\"size\":16384},\"wp_td_groups\":{\"inaccurateRows\":3,\"insertedRows\":3,\"size\":16384},\"wp_term_relationships\":{\"inaccurateRows\":1286,\"insertedRows\":1353,\"size\":147456},\"wp_term_taxonomy\":{\"inaccurateRows\":1021,\"insertedRows\":1051,\"size\":262144},\"wp_termmeta\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_terms\":{\"inaccurateRows\":1021,\"insertedRows\":1051,\"size\":196608},\"wp_usermeta\":{\"inaccurateRows\":501,\"insertedRows\":533,\"size\":147456},\"wp_users\":{\"inaccurateRows\":15,\"insertedRows\":16,\"size\":65536},\"wp_vxcf_hubspot\":{\"inaccurateRows\":4,\"insertedRows\":5,\"size\":32768},\"wp_vxcf_hubspot_accounts\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":16384},\"wp_vxcf_hubspot_log\":{\"inaccurateRows\":292,\"insertedRows\":292,\"size\":458752},\"wp_wc_comments_subscription\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":81920},\"wp_wc_feedback_forms\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_wc_follow_users\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":147456},\"wp_wc_phrases\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_wc_users_rated\":{\"inaccurateRows\":6,\"insertedRows\":7,\"size\":49152},\"wp_wc_users_voted\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":98304},\"wp_wp_phpmyadmin_extension__errors_log\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_wpfm_backup\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza\":{\"inaccurateRows\":0,\"insertedRows\":1,\"size\":16384},\"wp_wpgmza_categories\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_category_maps\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_circles\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_maps\":{\"inaccurateRows\":0,\"insertedRows\":1,\"size\":16384},\"wp_wpgmza_polygon\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_polylines\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_rectangles\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpr_rucss_resources\":{\"inaccurateRows\":160,\"insertedRows\":160,\"size\":7979008},\"wp_wpr_rucss_used_css\":{\"inaccurateRows\":14,\"insertedRows\":14,\"size\":2686976},\"wp_yoast_indexable\":{\"inaccurateRows\":737,\"insertedRows\":737,\"size\":720896},\"wp_yoast_indexable_hierarchy\":{\"inaccurateRows\":711,\"insertedRows\":711,\"size\":114688},\"wp_yoast_migrations\":{\"inaccurateRows\":24,\"insertedRows\":24,\"size\":32768},\"wp_yoast_primary_term\":{\"inaccurateRows\":36,\"insertedRows\":37,\"size\":49152},\"wp_yoast_prominent_words\":{\"inaccurateRows\":912,\"insertedRows\":946,\"size\":180224},\"wp_yoast_seo_links\":{\"inaccurateRows\":284,\"insertedRows\":289,\"size\":98304},\"wp_yoast_seo_meta\":{\"inaccurateRows\":579,\"insertedRows\":610,\"size\":49152}},\"varLowerCaseTables\":\"0\",\"dbEngine\":\"MariaDB\",\"version\":\"10.5.8\",\"versionComment\":\"Source distribution\",\"viewCount\":0,\"procCount\":0,\"funcCount\":0,\"triggerList\":[]},\"Type\":\"MySQL\",\"Size\":14722041,\"File\":\"Default_6ff4a86ff2c560eb4020_20211008211232_database.sql\",\"FilterTables\":\"\",\"FilterOn\":0,\"DBMode\":\"PHPCHUNKING\",\"Compatible\":\"\",\"Comments\":\"Source distribution\",\"dbStorePathPublic\":\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\\/tmp\\/Default_6ff4a86ff2c560eb4020_20211008211232_database.sql\"},\"Status\":\"100.0\",\"schedule_id\":-1,\"build_progress\":{\"thread_start_time\":1633728101,\"initialized\":true,\"installer_built\":true,\"archive_started\":true,\"archive_start_time\":1633727859.419263,\"archive_has_database\":false,\"archive_built\":true,\"database_script_built\":true,\"failed\":false,\"next_archive_file_index\":47894,\"next_archive_dir_index\":130410,\"retries\":0,\"current_build_mode\":2,\"current_build_compression\":true,\"custom_data\":null,\"warnings\":[]},\"db_build_progress\":{\"tablesToProcess\":[\"wp_actionscheduler_actions\",\"wp_actionscheduler_claims\",\"wp_actionscheduler_groups\",\"wp_actionscheduler_logs\",\"wp_aioseo_notifications\",\"wp_aioseo_posts\",\"wp_commentmeta\",\"wp_comments\",\"wp_duplicator_pro_entities\",\"wp_duplicator_pro_packages\",\"wp_imagify_files\",\"wp_imagify_folders\",\"wp_links\",\"wp_litespeed_img_optm\",\"wp_litespeed_optimizer\",\"wp_mail_bank\",\"wp_mail_bank_logs\",\"wp_mail_bank_meta\",\"wp_options\",\"wp_postmeta\",\"wp_posts\",\"wp_redirection_404\",\"wp_redirection_groups\",\"wp_redirection_items\",\"wp_redirection_logs\",\"wp_sgpb_subscribers\",\"wp_sgpb_subscription_error_log\",\"wp_smush_dir_images\",\"wp_snippets\",\"wp_tcm_email_hash\",\"wp_tcm_logs\",\"wp_td_fields\",\"wp_td_groups\",\"wp_term_relationships\",\"wp_term_taxonomy\",\"wp_termmeta\",\"wp_terms\",\"wp_usermeta\",\"wp_users\",\"wp_vxcf_hubspot\",\"wp_vxcf_hubspot_accounts\",\"wp_vxcf_hubspot_log\",\"wp_wc_comments_subscription\",\"wp_wc_feedback_forms\",\"wp_wc_follow_users\",\"wp_wc_phrases\",\"wp_wc_users_rated\",\"wp_wc_users_voted\",\"wp_wp_phpmyadmin_extension__errors_log\",\"wp_wpfm_backup\",\"wp_wpgmza\",\"wp_wpgmza_categories\",\"wp_wpgmza_category_maps\",\"wp_wpgmza_circles\",\"wp_wpgmza_maps\",\"wp_wpgmza_polygon\",\"wp_wpgmza_polylines\",\"wp_wpgmza_rectangles\",\"wp_wpr_rucss_resources\",\"wp_wpr_rucss_used_css\",\"wp_yoast_indexable\",\"wp_yoast_indexable_hierarchy\",\"wp_yoast_migrations\",\"wp_yoast_primary_term\",\"wp_yoast_prominent_words\",\"wp_yoast_seo_links\",\"wp_yoast_seo_meta\"],\"validationStage1\":true,\"doneInit\":true,\"doneFiltering\":true,\"doneCreates\":true,\"completed\":true,\"startTime\":1633727852.870624,\"wasInterrupted\":false,\"errorOut\":false,\"failureCount\":0,\"countCheckData\":{\"countTotal\":19251,\"impreciseTotalRows\":19014,\"tables\":{\"wp_actionscheduler_actions\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_actionscheduler_claims\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_actionscheduler_groups\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_actionscheduler_logs\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_aioseo_notifications\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_aioseo_posts\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_commentmeta\":{\"start\":\"10\",\"end\":\"10\",\"count\":10,\"create\":true},\"wp_comments\":{\"start\":\"92\",\"end\":\"92\",\"count\":92,\"create\":true},\"wp_duplicator_pro_entities\":{\"start\":\"5\",\"end\":\"5\",\"count\":5,\"create\":true},\"wp_duplicator_pro_packages\":{\"start\":\"1\",\"end\":\"1\",\"count\":1,\"create\":true},\"wp_imagify_files\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_imagify_folders\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_links\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_litespeed_img_optm\":{\"start\":\"5\",\"end\":\"5\",\"count\":5,\"create\":true},\"wp_litespeed_optimizer\":{\"start\":\"39\",\"end\":\"39\",\"count\":39,\"create\":true},\"wp_mail_bank\":{\"start\":\"6\",\"end\":\"6\",\"count\":6,\"create\":true},\"wp_mail_bank_logs\":{\"start\":\"3\",\"end\":\"3\",\"count\":3,\"create\":true},\"wp_mail_bank_meta\":{\"start\":\"4\",\"end\":\"4\",\"count\":4,\"create\":true},\"wp_options\":{\"start\":\"766\",\"end\":\"766\",\"count\":766,\"create\":true},\"wp_postmeta\":{\"start\":\"9562\",\"end\":\"9562\",\"count\":9562,\"create\":true},\"wp_posts\":{\"start\":\"888\",\"end\":\"888\",\"count\":888,\"create\":true},\"wp_redirection_404\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_redirection_groups\":{\"start\":\"2\",\"end\":\"2\",\"count\":2,\"create\":true},\"wp_redirection_items\":{\"start\":\"4\",\"end\":\"4\",\"count\":4,\"create\":true},\"wp_redirection_logs\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_sgpb_subscribers\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_sgpb_subscription_error_log\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_smush_dir_images\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_snippets\":{\"start\":\"4\",\"end\":\"4\",\"count\":4,\"create\":true},\"wp_tcm_email_hash\":{\"start\":\"1\",\"end\":\"1\",\"count\":1,\"create\":true},\"wp_tcm_logs\":{\"start\":\"2\",\"end\":\"2\",\"count\":2,\"create\":true},\"wp_td_fields\":{\"start\":\"14\",\"end\":\"14\",\"count\":14,\"create\":true},\"wp_td_groups\":{\"start\":\"3\",\"end\":\"3\",\"count\":3,\"create\":true},\"wp_term_relationships\":{\"start\":\"1353\",\"end\":\"1353\",\"count\":1353,\"create\":true},\"wp_term_taxonomy\":{\"start\":\"1051\",\"end\":\"1051\",\"count\":1051,\"create\":true},\"wp_termmeta\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_terms\":{\"start\":\"1051\",\"end\":\"1051\",\"count\":1051,\"create\":true},\"wp_usermeta\":{\"start\":\"533\",\"end\":\"533\",\"count\":533,\"create\":true},\"wp_users\":{\"start\":\"16\",\"end\":\"16\",\"count\":16,\"create\":true},\"wp_vxcf_hubspot\":{\"start\":\"5\",\"end\":\"5\",\"count\":5,\"create\":true},\"wp_vxcf_hubspot_accounts\":{\"start\":\"2\",\"end\":\"2\",\"count\":2,\"create\":true},\"wp_vxcf_hubspot_log\":{\"start\":\"292\",\"end\":\"292\",\"count\":292,\"create\":true},\"wp_wc_comments_subscription\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wc_feedback_forms\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wc_follow_users\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wc_phrases\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wc_users_rated\":{\"start\":\"7\",\"end\":\"7\",\"count\":7,\"create\":true},\"wp_wc_users_voted\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wp_phpmyadmin_extension__errors_log\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpfm_backup\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza\":{\"start\":\"1\",\"end\":\"1\",\"count\":1,\"create\":true},\"wp_wpgmza_categories\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_category_maps\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_circles\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_maps\":{\"start\":\"1\",\"end\":\"1\",\"count\":1,\"create\":true},\"wp_wpgmza_polygon\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_polylines\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_rectangles\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpr_rucss_resources\":{\"start\":\"160\",\"end\":\"160\",\"count\":160,\"create\":true},\"wp_wpr_rucss_used_css\":{\"start\":\"14\",\"end\":\"14\",\"count\":14,\"create\":true},\"wp_yoast_indexable\":{\"start\":\"737\",\"end\":\"737\",\"count\":737,\"create\":true},\"wp_yoast_indexable_hierarchy\":{\"start\":\"711\",\"end\":\"711\",\"count\":711,\"create\":true},\"wp_yoast_migrations\":{\"start\":\"24\",\"end\":\"24\",\"count\":24,\"create\":true},\"wp_yoast_primary_term\":{\"start\":\"37\",\"end\":\"37\",\"count\":37,\"create\":true},\"wp_yoast_prominent_words\":{\"start\":\"946\",\"end\":\"946\",\"count\":946,\"create\":true},\"wp_yoast_seo_links\":{\"start\":\"289\",\"end\":\"289\",\"count\":289,\"create\":true},\"wp_yoast_seo_meta\":{\"start\":\"610\",\"end\":\"610\",\"count\":610,\"create\":true}}}},\"upload_infos\":[{\"storage_id\":\"-2\",\"archive_offset\":0,\"copied_installer\":true,\"copied_archive\":true,\"progress\":0,\"num_failures\":0,\"failed\":false,\"cancelled\":false,\"upload_id\":null,\"failure_count\":0,\"data\":\"\",\"data2\":\"\",\"has_started\":true,\"status_message_details\":\"\",\"started_timestamp\":1633728102,\"stopped_timestamp\":1633728103}],\"active_storage_id\":-2,\"template_id\":4}'),(2,'20211014_translucent','92b8cf97a4d9950b8419_20211014141849',100,'2021-10-14 10:21:23','robert','{\"Created\":\"2021-10-14 14:18:49\",\"Version\":\"4.0.4.1\",\"VersionWP\":\"5.5.6\",\"VersionDB\":\"10.5.8\",\"VersionPHP\":\"7.4.12\",\"VersionOS\":\"Linux\",\"ID\":2,\"Name\":\"20211014_translucent\",\"Hash\":\"92b8cf97a4d9950b8419_20211014141849\",\"NameHash\":\"20211014_translucent_92b8cf97a4d9950b8419_20211014141849\",\"Type\":0,\"Notes\":\"The default template.\",\"StorePath\":\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\\/tmp\",\"StoreURL\":\"https:\\/\\/translucent.local\\/wp-content\\/backups-dup-pro\\/\",\"ScanFile\":\"20211014_translucent_92b8cf97a4d9950b8419_20211014141849_scan.json\",\"timer_start\":1634221296.907658,\"Runtime\":\"164.745 sec.\",\"ExeSize\":\"75.78KB\",\"ZipSize\":\"473.42MB\",\"Brand\":\"Default\",\"Brand_ID\":-2,\"ziparchive_mode\":0,\"Archive\":{\"ExportOnlyDB\":0,\"FilterDirs\":\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/backups-dup-pro;\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/cache\",\"FilterExts\":\"\",\"FilterFiles\":\"\",\"FilterDirsAll\":[\"\\/bitnami\\/wordpress\\/wp-content\\/ai1wm-backups\",\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-lite\",\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\",\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\",\"\\/bitnami\\/wordpress\\/wp-content\\/backupwordpress\",\"\\/bitnami\\/wordpress\\/wp-content\\/bps-backup\",\"\\/bitnami\\/wordpress\\/wp-content\\/cache\",\"\\/bitnami\\/wordpress\\/wp-content\\/content\\/cache\",\"\\/bitnami\\/wordpress\\/wp-content\\/contents\\/cache\",\"\\/bitnami\\/wordpress\\/wp-content\\/infinitewp\\/backups\",\"\\/bitnami\\/wordpress\\/wp-content\\/managewp\\/backups\",\"\\/bitnami\\/wordpress\\/wp-content\\/old-cache\",\"\\/bitnami\\/wordpress\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/storage\",\"\\/bitnami\\/wordpress\\/wp-content\\/plugins\\/really-simple-captcha\\/tmp\",\"\\/bitnami\\/wordpress\\/wp-content\\/plugins\\/wordfence\\/tmp\",\"\\/bitnami\\/wordpress\\/wp-content\\/updraft\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/aiowps_backups\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/backup-guard\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/backupbuddy_backups\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/backupbuddy_temp\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/ithemes-security\\/backups\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/mainwp\\/backup\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/pb_backupbuddy\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/snapshots\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/sucuri\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/wp-clone\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/wp_all_backup\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/wpbackitup_backups\",\"\\/bitnami\\/wordpress\\/wp-content\\/wfcache\",\"\\/bitnami\\/wordpress\\/wp-content\\/wishlist-backup\",\"\\/var\\/www\\/dfr\\/translucent\\/.opcache\",\"\\/var\\/www\\/dfr\\/translucent\\/.tmb\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/backups-dup-pro\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/cache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-snapshots\"],\"FilterExtsAll\":[],\"FilterFilesAll\":[\".DS_Store\",\"\\/var\\/www\\/dfr\\/translucent\\/.htaccess\",\"\\/var\\/www\\/dfr\\/translucent\\/.user.ini\",\"\\/var\\/www\\/dfr\\/translucent\\/php.ini\",\"\\/var\\/www\\/dfr\\/translucent\\/web.config\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-config.php\",\"dbcache\",\"debug_log\",\"error_log\",\"objectcache\",\"pgcache\",\"ws_ftp.log\"],\"FilterOn\":1,\"File\":\"20211014_translucent_92b8cf97a4d9950b8419_20211014141849_archive.zip\",\"Format\":\"ZIP\",\"PackDir\":\"\",\"Size\":496420985,\"Dirs\":null,\"DirCount\":4968,\"RecursiveLinks\":[],\"Files\":null,\"FileCount\":37449,\"file_count\":42417,\"FilterInfo\":{\"Dirs\":{\"Warning\":[],\"AddonSites\":[],\"Size\":[],\"Core\":[],\"Global\":[],\"Instance\":[\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/backups-dup-pro\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/cache\"],\"Unreadable\":[]},\"Files\":{\"Warning\":[],\"Size\":[],\"Core\":[],\"Global\":[],\"Instance\":[],\"Unreadable\":[]},\"Exts\":{\"Core\":[],\"Global\":[],\"Instance\":[],\"Unreadable\":[]},\"TreeSize\":null,\"TreeWarning\":null},\"ListDelimiter\":\"\\n\",\"throttleDelayInUs\":0},\"Multisite\":{\"FilterSites\":\"\"},\"Installer\":{\"File\":\"20211014_translucent_92b8cf97a4d9950b8419_20211014141849_installer.php\",\"Size\":77598,\"OptsSecureOn\":0,\"OptsSecurePass\":\"\",\"OptsSkipScan\":0,\"OptsDBHost\":\"\",\"OptsDBName\":\"\",\"OptsDBUser\":\"\",\"OptsCPNLHost\":\"\",\"OptsCPNLUser\":\"\",\"OptsCPNLPass\":\"\",\"OptsCPNLEnable\":0,\"OptsCPNLConnect\":false,\"OptsCPNLDBAction\":\"create\",\"OptsCPNLDBHost\":\"\",\"OptsCPNLDBName\":\"\",\"OptsCPNLDBUser\":\"\",\"numFilesAdded\":0,\"numDirsAdded\":0},\"Database\":{\"info\":{\"buildMode\":\"PHPCHUNKING\",\"charSetList\":[\"utf8mb4\",\"utf8\"],\"collationList\":[\"utf8_general_ci\",\"utf8mb4_unicode_520_ci\",\"utf8mb4_unicode_ci\"],\"isTablesUpperCase\":0,\"isNameUpperCase\":0,\"name\":\"bitnami_wordpress\",\"tablesBaseCount\":67,\"tablesFinalCount\":67,\"muFilteredTableCount\":0,\"tablesRowCount\":19458,\"tablesSizeOnDisk\":32253388,\"tablesList\":{\"wp_actionscheduler_actions\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":131072},\"wp_actionscheduler_claims\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_actionscheduler_groups\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_actionscheduler_logs\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_aioseo_notifications\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":81920},\"wp_aioseo_posts\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_commentmeta\":{\"inaccurateRows\":9,\"insertedRows\":10,\"size\":49152},\"wp_comments\":{\"inaccurateRows\":92,\"insertedRows\":92,\"size\":163840},\"wp_duplicator_pro_entities\":{\"inaccurateRows\":5,\"insertedRows\":5,\"size\":32768},\"wp_duplicator_pro_packages\":{\"inaccurateRows\":0,\"insertedRows\":2,\"size\":32768},\"wp_imagify_files\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":98304},\"wp_imagify_folders\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_links\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_litespeed_img_optm\":{\"inaccurateRows\":5,\"insertedRows\":5,\"size\":114688},\"wp_litespeed_optimizer\":{\"inaccurateRows\":39,\"insertedRows\":39,\"size\":114688},\"wp_mail_bank\":{\"inaccurateRows\":6,\"insertedRows\":6,\"size\":2196},\"wp_mail_bank_logs\":{\"inaccurateRows\":3,\"insertedRows\":3,\"size\":3340},\"wp_mail_bank_meta\":{\"inaccurateRows\":4,\"insertedRows\":4,\"size\":4140},\"wp_options\":{\"inaccurateRows\":788,\"insertedRows\":788,\"size\":3735552},\"wp_postmeta\":{\"inaccurateRows\":9949,\"insertedRows\":9949,\"size\":8863744},\"wp_posts\":{\"inaccurateRows\":921,\"insertedRows\":921,\"size\":9994240},\"wp_redirection_404\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":65536},\"wp_redirection_groups\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":49152},\"wp_redirection_items\":{\"inaccurateRows\":4,\"insertedRows\":4,\"size\":114688},\"wp_redirection_logs\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":98304},\"wp_sgpb_subscribers\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_sgpb_subscription_error_log\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_smush_dir_images\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_snippets\":{\"inaccurateRows\":4,\"insertedRows\":4,\"size\":16384},\"wp_tcm_email_hash\":{\"inaccurateRows\":0,\"insertedRows\":1,\"size\":16384},\"wp_tcm_logs\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":32768},\"wp_td_fields\":{\"inaccurateRows\":14,\"insertedRows\":14,\"size\":16384},\"wp_td_groups\":{\"inaccurateRows\":3,\"insertedRows\":3,\"size\":16384},\"wp_term_relationships\":{\"inaccurateRows\":1287,\"insertedRows\":1354,\"size\":147456},\"wp_term_taxonomy\":{\"inaccurateRows\":1021,\"insertedRows\":1051,\"size\":262144},\"wp_termmeta\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_terms\":{\"inaccurateRows\":1021,\"insertedRows\":1051,\"size\":196608},\"wp_usermeta\":{\"inaccurateRows\":535,\"insertedRows\":572,\"size\":147456},\"wp_users\":{\"inaccurateRows\":16,\"insertedRows\":17,\"size\":65536},\"wp_vxcf_hubspot\":{\"inaccurateRows\":4,\"insertedRows\":5,\"size\":32768},\"wp_vxcf_hubspot_accounts\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":16384},\"wp_vxcf_hubspot_log\":{\"inaccurateRows\":304,\"insertedRows\":310,\"size\":458752},\"wp_wc_comments_subscription\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":81920},\"wp_wc_feedback_forms\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_wc_follow_users\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":147456},\"wp_wc_phrases\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_wc_users_rated\":{\"inaccurateRows\":6,\"insertedRows\":7,\"size\":49152},\"wp_wc_users_voted\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":98304},\"wp_wp_phpmyadmin_extension__errors_log\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_wpfm_backup\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza\":{\"inaccurateRows\":0,\"insertedRows\":1,\"size\":16384},\"wp_wpgmza_categories\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_category_maps\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_circles\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_maps\":{\"inaccurateRows\":0,\"insertedRows\":1,\"size\":16384},\"wp_wpgmza_polygon\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_polylines\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_rectangles\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpr_rucss_resources\":{\"inaccurateRows\":69,\"insertedRows\":69,\"size\":4669440},\"wp_wpr_rucss_used_css\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":65536},\"wp_yoast_indexable\":{\"inaccurateRows\":781,\"insertedRows\":781,\"size\":819200},\"wp_yoast_indexable_hierarchy\":{\"inaccurateRows\":729,\"insertedRows\":729,\"size\":114688},\"wp_yoast_migrations\":{\"inaccurateRows\":22,\"insertedRows\":24,\"size\":32768},\"wp_yoast_primary_term\":{\"inaccurateRows\":36,\"insertedRows\":37,\"size\":49152},\"wp_yoast_prominent_words\":{\"inaccurateRows\":912,\"insertedRows\":946,\"size\":180224},\"wp_yoast_seo_links\":{\"inaccurateRows\":284,\"insertedRows\":289,\"size\":98304},\"wp_yoast_seo_meta\":{\"inaccurateRows\":579,\"insertedRows\":610,\"size\":49152}},\"varLowerCaseTables\":\"0\",\"dbEngine\":\"MariaDB\",\"version\":\"10.5.8\",\"versionComment\":\"Source distribution\",\"viewCount\":0,\"procCount\":0,\"funcCount\":0,\"triggerList\":[]},\"Type\":\"MySQL\",\"Size\":9698333,\"File\":\"20211014_translucent_92b8cf97a4d9950b8419_20211014141849_database.sql\",\"FilterTables\":\"\",\"FilterOn\":0,\"DBMode\":\"PHPCHUNKING\",\"Compatible\":\"\",\"Comments\":\"Source distribution\",\"dbStorePathPublic\":\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\\/tmp\\/20211014_translucent_92b8cf97a4d9950b8419_20211014141849_database.sql\"},\"Status\":\"100.0\",\"schedule_id\":-1,\"build_progress\":{\"thread_start_time\":1634221461,\"initialized\":true,\"installer_built\":true,\"archive_started\":true,\"archive_start_time\":1634221301.739318,\"archive_has_database\":false,\"archive_built\":true,\"database_script_built\":true,\"failed\":false,\"next_archive_file_index\":37449,\"next_archive_dir_index\":34776,\"retries\":0,\"current_build_mode\":2,\"current_build_compression\":true,\"custom_data\":null,\"warnings\":[]},\"db_build_progress\":{\"tablesToProcess\":[\"wp_actionscheduler_actions\",\"wp_actionscheduler_claims\",\"wp_actionscheduler_groups\",\"wp_actionscheduler_logs\",\"wp_aioseo_notifications\",\"wp_aioseo_posts\",\"wp_commentmeta\",\"wp_comments\",\"wp_duplicator_pro_entities\",\"wp_duplicator_pro_packages\",\"wp_imagify_files\",\"wp_imagify_folders\",\"wp_links\",\"wp_litespeed_img_optm\",\"wp_litespeed_optimizer\",\"wp_mail_bank\",\"wp_mail_bank_logs\",\"wp_mail_bank_meta\",\"wp_options\",\"wp_postmeta\",\"wp_posts\",\"wp_redirection_404\",\"wp_redirection_groups\",\"wp_redirection_items\",\"wp_redirection_logs\",\"wp_sgpb_subscribers\",\"wp_sgpb_subscription_error_log\",\"wp_smush_dir_images\",\"wp_snippets\",\"wp_tcm_email_hash\",\"wp_tcm_logs\",\"wp_td_fields\",\"wp_td_groups\",\"wp_term_relationships\",\"wp_term_taxonomy\",\"wp_termmeta\",\"wp_terms\",\"wp_usermeta\",\"wp_users\",\"wp_vxcf_hubspot\",\"wp_vxcf_hubspot_accounts\",\"wp_vxcf_hubspot_log\",\"wp_wc_comments_subscription\",\"wp_wc_feedback_forms\",\"wp_wc_follow_users\",\"wp_wc_phrases\",\"wp_wc_users_rated\",\"wp_wc_users_voted\",\"wp_wp_phpmyadmin_extension__errors_log\",\"wp_wpfm_backup\",\"wp_wpgmza\",\"wp_wpgmza_categories\",\"wp_wpgmza_category_maps\",\"wp_wpgmza_circles\",\"wp_wpgmza_maps\",\"wp_wpgmza_polygon\",\"wp_wpgmza_polylines\",\"wp_wpgmza_rectangles\",\"wp_wpr_rucss_resources\",\"wp_wpr_rucss_used_css\",\"wp_yoast_indexable\",\"wp_yoast_indexable_hierarchy\",\"wp_yoast_migrations\",\"wp_yoast_primary_term\",\"wp_yoast_prominent_words\",\"wp_yoast_seo_links\",\"wp_yoast_seo_meta\"],\"validationStage1\":true,\"doneInit\":true,\"doneFiltering\":true,\"doneCreates\":true,\"completed\":true,\"startTime\":1634221296.923371,\"wasInterrupted\":false,\"errorOut\":false,\"failureCount\":0,\"countCheckData\":{\"countTotal\":19710,\"impreciseTotalRows\":19459,\"tables\":{\"wp_actionscheduler_actions\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_actionscheduler_claims\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_actionscheduler_groups\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_actionscheduler_logs\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_aioseo_notifications\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_aioseo_posts\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_commentmeta\":{\"start\":\"10\",\"end\":\"10\",\"count\":10,\"create\":true},\"wp_comments\":{\"start\":\"92\",\"end\":\"92\",\"count\":92,\"create\":true},\"wp_duplicator_pro_entities\":{\"start\":\"5\",\"end\":\"5\",\"count\":5,\"create\":true},\"wp_duplicator_pro_packages\":{\"start\":\"2\",\"end\":\"2\",\"count\":2,\"create\":true},\"wp_imagify_files\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_imagify_folders\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_links\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_litespeed_img_optm\":{\"start\":\"5\",\"end\":\"5\",\"count\":5,\"create\":true},\"wp_litespeed_optimizer\":{\"start\":\"39\",\"end\":\"39\",\"count\":39,\"create\":true},\"wp_mail_bank\":{\"start\":\"6\",\"end\":\"6\",\"count\":6,\"create\":true},\"wp_mail_bank_logs\":{\"start\":\"3\",\"end\":\"3\",\"count\":3,\"create\":true},\"wp_mail_bank_meta\":{\"start\":\"4\",\"end\":\"4\",\"count\":4,\"create\":true},\"wp_options\":{\"start\":\"788\",\"end\":\"788\",\"count\":788,\"create\":true},\"wp_postmeta\":{\"start\":\"9949\",\"end\":\"9949\",\"count\":9949,\"create\":true},\"wp_posts\":{\"start\":\"921\",\"end\":\"921\",\"count\":921,\"create\":true},\"wp_redirection_404\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_redirection_groups\":{\"start\":\"2\",\"end\":\"2\",\"count\":2,\"create\":true},\"wp_redirection_items\":{\"start\":\"4\",\"end\":\"4\",\"count\":4,\"create\":true},\"wp_redirection_logs\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_sgpb_subscribers\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_sgpb_subscription_error_log\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_smush_dir_images\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_snippets\":{\"start\":\"4\",\"end\":\"4\",\"count\":4,\"create\":true},\"wp_tcm_email_hash\":{\"start\":\"1\",\"end\":\"1\",\"count\":1,\"create\":true},\"wp_tcm_logs\":{\"start\":\"2\",\"end\":\"2\",\"count\":2,\"create\":true},\"wp_td_fields\":{\"start\":\"14\",\"end\":\"14\",\"count\":14,\"create\":true},\"wp_td_groups\":{\"start\":\"3\",\"end\":\"3\",\"count\":3,\"create\":true},\"wp_term_relationships\":{\"start\":\"1354\",\"end\":\"1354\",\"count\":1354,\"create\":true},\"wp_term_taxonomy\":{\"start\":\"1051\",\"end\":\"1051\",\"count\":1051,\"create\":true},\"wp_termmeta\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_terms\":{\"start\":\"1051\",\"end\":\"1051\",\"count\":1051,\"create\":true},\"wp_usermeta\":{\"start\":\"572\",\"end\":\"572\",\"count\":572,\"create\":true},\"wp_users\":{\"start\":\"17\",\"end\":\"17\",\"count\":17,\"create\":true},\"wp_vxcf_hubspot\":{\"start\":\"5\",\"end\":\"5\",\"count\":5,\"create\":true},\"wp_vxcf_hubspot_accounts\":{\"start\":\"2\",\"end\":\"2\",\"count\":2,\"create\":true},\"wp_vxcf_hubspot_log\":{\"start\":\"310\",\"end\":\"310\",\"count\":310,\"create\":true},\"wp_wc_comments_subscription\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wc_feedback_forms\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wc_follow_users\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wc_phrases\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wc_users_rated\":{\"start\":\"7\",\"end\":\"7\",\"count\":7,\"create\":true},\"wp_wc_users_voted\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wp_phpmyadmin_extension__errors_log\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpfm_backup\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza\":{\"start\":\"1\",\"end\":\"1\",\"count\":1,\"create\":true},\"wp_wpgmza_categories\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_category_maps\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_circles\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_maps\":{\"start\":\"1\",\"end\":\"1\",\"count\":1,\"create\":true},\"wp_wpgmza_polygon\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_polylines\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_rectangles\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpr_rucss_resources\":{\"start\":\"69\",\"end\":\"69\",\"count\":69,\"create\":true},\"wp_wpr_rucss_used_css\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_yoast_indexable\":{\"start\":\"781\",\"end\":\"781\",\"count\":781,\"create\":true},\"wp_yoast_indexable_hierarchy\":{\"start\":\"729\",\"end\":\"729\",\"count\":729,\"create\":true},\"wp_yoast_migrations\":{\"start\":\"24\",\"end\":\"24\",\"count\":24,\"create\":true},\"wp_yoast_primary_term\":{\"start\":\"37\",\"end\":\"37\",\"count\":37,\"create\":true},\"wp_yoast_prominent_words\":{\"start\":\"946\",\"end\":\"946\",\"count\":946,\"create\":true},\"wp_yoast_seo_links\":{\"start\":\"289\",\"end\":\"289\",\"count\":289,\"create\":true},\"wp_yoast_seo_meta\":{\"start\":\"610\",\"end\":\"610\",\"count\":610,\"create\":true}}}},\"upload_infos\":[{\"storage_id\":\"-2\",\"archive_offset\":0,\"copied_installer\":true,\"copied_archive\":true,\"progress\":0,\"num_failures\":0,\"failed\":false,\"cancelled\":false,\"upload_id\":null,\"failure_count\":0,\"data\":\"\",\"data2\":\"\",\"has_started\":true,\"status_message_details\":\"\",\"started_timestamp\":1634221462,\"stopped_timestamp\":1634221462}],\"active_storage_id\":-2,\"template_id\":4}'),(3,'20211203_translucent','c01c678cf11e34eb7482_20211203172450',100,'2021-12-03 12:25:04','robert','{\"Created\":\"2021-12-03 17:24:50\",\"Version\":\"4.0.4.1\",\"VersionWP\":\"5.8.2\",\"VersionDB\":\"10.5.8\",\"VersionPHP\":\"7.4.12\",\"VersionOS\":\"Linux\",\"ID\":3,\"Name\":\"20211203_translucent\",\"Hash\":\"c01c678cf11e34eb7482_20211203172450\",\"NameHash\":\"20211203_translucent_c01c678cf11e34eb7482_20211203172450\",\"Type\":0,\"Notes\":\"The default template.\",\"StorePath\":\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\\/tmp\",\"StoreURL\":\"https:\\/\\/translucent.local\\/wp-content\\/backups-dup-pro\\/\",\"ScanFile\":\"20211203_translucent_c01c678cf11e34eb7482_20211203172450_scan.json\",\"timer_start\":1638552319.862525,\"Runtime\":\"206.396 sec.\",\"ExeSize\":\"75.78KB\",\"ZipSize\":\"561.68MB\",\"Brand\":\"Default\",\"Brand_ID\":-2,\"ziparchive_mode\":0,\"Archive\":{\"ExportOnlyDB\":0,\"FilterDirs\":\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/backups-dup-pro;\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/cache\",\"FilterExts\":\"\",\"FilterFiles\":\"\",\"FilterDirsAll\":[\"\\/bitnami\\/wordpress\\/wp-content\\/ai1wm-backups\",\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-lite\",\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\",\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\",\"\\/bitnami\\/wordpress\\/wp-content\\/backupwordpress\",\"\\/bitnami\\/wordpress\\/wp-content\\/bps-backup\",\"\\/bitnami\\/wordpress\\/wp-content\\/cache\",\"\\/bitnami\\/wordpress\\/wp-content\\/content\\/cache\",\"\\/bitnami\\/wordpress\\/wp-content\\/contents\\/cache\",\"\\/bitnami\\/wordpress\\/wp-content\\/infinitewp\\/backups\",\"\\/bitnami\\/wordpress\\/wp-content\\/managewp\\/backups\",\"\\/bitnami\\/wordpress\\/wp-content\\/old-cache\",\"\\/bitnami\\/wordpress\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/storage\",\"\\/bitnami\\/wordpress\\/wp-content\\/plugins\\/really-simple-captcha\\/tmp\",\"\\/bitnami\\/wordpress\\/wp-content\\/plugins\\/wordfence\\/tmp\",\"\\/bitnami\\/wordpress\\/wp-content\\/updraft\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/aiowps_backups\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/backup-guard\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/backupbuddy_backups\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/backupbuddy_temp\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/ithemes-security\\/backups\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/mainwp\\/backup\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/pb_backupbuddy\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/snapshots\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/sucuri\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/wp-clone\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/wp_all_backup\",\"\\/bitnami\\/wordpress\\/wp-content\\/uploads\\/wpbackitup_backups\",\"\\/bitnami\\/wordpress\\/wp-content\\/wfcache\",\"\\/bitnami\\/wordpress\\/wp-content\\/wishlist-backup\",\"\\/var\\/www\\/dfr\\/translucent\\/.opcache\",\"\\/var\\/www\\/dfr\\/translucent\\/.tmb\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/backups-dup-pro\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/cache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-snapshots\"],\"FilterExtsAll\":[],\"FilterFilesAll\":[\".DS_Store\",\"\\/var\\/www\\/dfr\\/translucent\\/.htaccess\",\"\\/var\\/www\\/dfr\\/translucent\\/.user.ini\",\"\\/var\\/www\\/dfr\\/translucent\\/php.ini\",\"\\/var\\/www\\/dfr\\/translucent\\/web.config\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-config.php\",\"dbcache\",\"debug_log\",\"error_log\",\"objectcache\",\"pgcache\",\"ws_ftp.log\"],\"FilterOn\":1,\"File\":\"20211203_translucent_c01c678cf11e34eb7482_20211203172450_archive.zip\",\"Format\":\"ZIP\",\"PackDir\":\"\",\"Size\":588960108,\"Dirs\":null,\"DirCount\":5233,\"RecursiveLinks\":[],\"Files\":null,\"FileCount\":42362,\"file_count\":47595,\"FilterInfo\":{\"Dirs\":{\"Warning\":[],\"AddonSites\":[],\"Size\":[],\"Core\":[],\"Global\":[],\"Instance\":[\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/backups-dup-pro\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/cache\"],\"Unreadable\":[]},\"Files\":{\"Warning\":[],\"Size\":[],\"Core\":[],\"Global\":[],\"Instance\":[],\"Unreadable\":[]},\"Exts\":{\"Core\":[],\"Global\":[],\"Instance\":[],\"Unreadable\":[]},\"TreeSize\":null,\"TreeWarning\":null},\"ListDelimiter\":\"\\n\",\"throttleDelayInUs\":0},\"Multisite\":{\"FilterSites\":\"\"},\"Installer\":{\"File\":\"20211203_translucent_c01c678cf11e34eb7482_20211203172450_installer.php\",\"Size\":77598,\"OptsSecureOn\":0,\"OptsSecurePass\":\"\",\"OptsSkipScan\":0,\"OptsDBHost\":\"\",\"OptsDBName\":\"\",\"OptsDBUser\":\"\",\"OptsCPNLHost\":\"\",\"OptsCPNLUser\":\"\",\"OptsCPNLPass\":\"\",\"OptsCPNLEnable\":0,\"OptsCPNLConnect\":false,\"OptsCPNLDBAction\":\"create\",\"OptsCPNLDBHost\":\"\",\"OptsCPNLDBName\":\"\",\"OptsCPNLDBUser\":\"\",\"numFilesAdded\":0,\"numDirsAdded\":0},\"Database\":{\"info\":{\"buildMode\":\"PHPCHUNKING\",\"charSetList\":[\"utf8mb4\",\"utf8\"],\"collationList\":[\"utf8_general_ci\",\"utf8mb4_unicode_520_ci\",\"utf8mb4_unicode_ci\"],\"isTablesUpperCase\":0,\"isNameUpperCase\":0,\"name\":\"bitnami_wordpress\",\"tablesBaseCount\":79,\"tablesFinalCount\":79,\"muFilteredTableCount\":0,\"tablesRowCount\":25484,\"tablesSizeOnDisk\":42689996,\"tablesList\":{\"wp_actionscheduler_actions\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":131072},\"wp_actionscheduler_claims\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_actionscheduler_groups\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_actionscheduler_logs\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_aioseo_notifications\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":81920},\"wp_aioseo_posts\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_commentmeta\":{\"inaccurateRows\":9,\"insertedRows\":10,\"size\":49152},\"wp_comments\":{\"inaccurateRows\":93,\"insertedRows\":93,\"size\":163840},\"wp_duplicator_pro_entities\":{\"inaccurateRows\":5,\"insertedRows\":5,\"size\":32768},\"wp_duplicator_pro_packages\":{\"inaccurateRows\":0,\"insertedRows\":3,\"size\":32768},\"wp_imagify_files\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":98304},\"wp_imagify_folders\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_links\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_litespeed_img_optm\":{\"inaccurateRows\":5,\"insertedRows\":5,\"size\":114688},\"wp_litespeed_optimizer\":{\"inaccurateRows\":39,\"insertedRows\":39,\"size\":114688},\"wp_mail_bank\":{\"inaccurateRows\":6,\"insertedRows\":6,\"size\":2196},\"wp_mail_bank_logs\":{\"inaccurateRows\":3,\"insertedRows\":3,\"size\":3340},\"wp_mail_bank_meta\":{\"inaccurateRows\":4,\"insertedRows\":4,\"size\":4140},\"wp_options\":{\"inaccurateRows\":803,\"insertedRows\":803,\"size\":4784128},\"wp_postmeta\":{\"inaccurateRows\":17657,\"insertedRows\":17657,\"size\":8830976},\"wp_posts\":{\"inaccurateRows\":1233,\"insertedRows\":1233,\"size\":10059776},\"wp_redirection_404\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":65536},\"wp_redirection_groups\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":49152},\"wp_redirection_items\":{\"inaccurateRows\":4,\"insertedRows\":4,\"size\":114688},\"wp_redirection_logs\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":98304},\"wp_revslider_css\":{\"inaccurateRows\":109,\"insertedRows\":109,\"size\":147456},\"wp_revslider_css_bkp\":{\"inaccurateRows\":47,\"insertedRows\":47,\"size\":32768},\"wp_revslider_layer_animations\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_revslider_layer_animations_bkp\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_revslider_navigations\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_revslider_navigations_bkp\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_revslider_sliders\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":81920},\"wp_revslider_sliders_bkp\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_revslider_slides\":{\"inaccurateRows\":6,\"insertedRows\":6,\"size\":229376},\"wp_revslider_slides_bkp\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_revslider_static_slides\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":32768},\"wp_revslider_static_slides_bkp\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_sgpb_subscribers\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_sgpb_subscription_error_log\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_smush_dir_images\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_snippets\":{\"inaccurateRows\":4,\"insertedRows\":4,\"size\":16384},\"wp_tcm_email_hash\":{\"inaccurateRows\":0,\"insertedRows\":1,\"size\":16384},\"wp_tcm_logs\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":32768},\"wp_td_fields\":{\"inaccurateRows\":14,\"insertedRows\":14,\"size\":16384},\"wp_td_groups\":{\"inaccurateRows\":3,\"insertedRows\":3,\"size\":16384},\"wp_term_relationships\":{\"inaccurateRows\":363,\"insertedRows\":363,\"size\":32768},\"wp_term_taxonomy\":{\"inaccurateRows\":138,\"insertedRows\":138,\"size\":49152},\"wp_termmeta\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_terms\":{\"inaccurateRows\":138,\"insertedRows\":138,\"size\":49152},\"wp_usermeta\":{\"inaccurateRows\":599,\"insertedRows\":616,\"size\":196608},\"wp_users\":{\"inaccurateRows\":18,\"insertedRows\":18,\"size\":65536},\"wp_vxcf_hubspot\":{\"inaccurateRows\":6,\"insertedRows\":6,\"size\":32768},\"wp_vxcf_hubspot_accounts\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":16384},\"wp_vxcf_hubspot_log\":{\"inaccurateRows\":404,\"insertedRows\":404,\"size\":1605632},\"wp_wc_comments_subscription\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":81920},\"wp_wc_feedback_forms\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_wc_follow_users\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":147456},\"wp_wc_phrases\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_wc_users_rated\":{\"inaccurateRows\":7,\"insertedRows\":8,\"size\":49152},\"wp_wc_users_voted\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":98304},\"wp_wp_phpmyadmin_extension__errors_log\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_wpfm_backup\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza\":{\"inaccurateRows\":0,\"insertedRows\":1,\"size\":16384},\"wp_wpgmza_categories\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_category_maps\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_circles\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_maps\":{\"inaccurateRows\":0,\"insertedRows\":1,\"size\":16384},\"wp_wpgmza_polygon\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_polylines\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_rectangles\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpr_rucss_resources\":{\"inaccurateRows\":66,\"insertedRows\":66,\"size\":5701632},\"wp_wpr_rucss_used_css\":{\"inaccurateRows\":22,\"insertedRows\":22,\"size\":5832704},\"wp_yoast_indexable\":{\"inaccurateRows\":965,\"insertedRows\":974,\"size\":1966080},\"wp_yoast_indexable_hierarchy\":{\"inaccurateRows\":838,\"insertedRows\":838,\"size\":114688},\"wp_yoast_migrations\":{\"inaccurateRows\":23,\"insertedRows\":25,\"size\":32768},\"wp_yoast_primary_term\":{\"inaccurateRows\":47,\"insertedRows\":47,\"size\":49152},\"wp_yoast_prominent_words\":{\"inaccurateRows\":912,\"insertedRows\":946,\"size\":180224},\"wp_yoast_seo_links\":{\"inaccurateRows\":305,\"insertedRows\":310,\"size\":98304},\"wp_yoast_seo_meta\":{\"inaccurateRows\":579,\"insertedRows\":610,\"size\":49152}},\"varLowerCaseTables\":\"0\",\"dbEngine\":\"MariaDB\",\"version\":\"10.5.8\",\"versionComment\":\"Source distribution\",\"viewCount\":0,\"procCount\":0,\"funcCount\":0,\"triggerList\":[]},\"Type\":\"MySQL\",\"Size\":16891775,\"File\":\"20211203_translucent_c01c678cf11e34eb7482_20211203172450_database.sql\",\"FilterTables\":\"\",\"FilterOn\":0,\"DBMode\":\"PHPCHUNKING\",\"Compatible\":\"\",\"Comments\":\"Source distribution\",\"dbStorePathPublic\":\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\\/tmp\\/20211203_translucent_c01c678cf11e34eb7482_20211203172450_database.sql\"},\"Status\":\"100.0\",\"schedule_id\":-1,\"build_progress\":{\"thread_start_time\":1638552526,\"initialized\":true,\"installer_built\":true,\"archive_started\":true,\"archive_start_time\":1638552330.916737,\"archive_has_database\":false,\"archive_built\":true,\"database_script_built\":true,\"failed\":false,\"next_archive_file_index\":42362,\"next_archive_dir_index\":41864,\"retries\":0,\"current_build_mode\":2,\"current_build_compression\":true,\"custom_data\":null,\"warnings\":[]},\"db_build_progress\":{\"tablesToProcess\":[\"wp_actionscheduler_actions\",\"wp_actionscheduler_claims\",\"wp_actionscheduler_groups\",\"wp_actionscheduler_logs\",\"wp_aioseo_notifications\",\"wp_aioseo_posts\",\"wp_commentmeta\",\"wp_comments\",\"wp_duplicator_pro_entities\",\"wp_duplicator_pro_packages\",\"wp_imagify_files\",\"wp_imagify_folders\",\"wp_links\",\"wp_litespeed_img_optm\",\"wp_litespeed_optimizer\",\"wp_mail_bank\",\"wp_mail_bank_logs\",\"wp_mail_bank_meta\",\"wp_options\",\"wp_postmeta\",\"wp_posts\",\"wp_redirection_404\",\"wp_redirection_groups\",\"wp_redirection_items\",\"wp_redirection_logs\",\"wp_revslider_css\",\"wp_revslider_css_bkp\",\"wp_revslider_layer_animations\",\"wp_revslider_layer_animations_bkp\",\"wp_revslider_navigations\",\"wp_revslider_navigations_bkp\",\"wp_revslider_sliders\",\"wp_revslider_sliders_bkp\",\"wp_revslider_slides\",\"wp_revslider_slides_bkp\",\"wp_revslider_static_slides\",\"wp_revslider_static_slides_bkp\",\"wp_sgpb_subscribers\",\"wp_sgpb_subscription_error_log\",\"wp_smush_dir_images\",\"wp_snippets\",\"wp_tcm_email_hash\",\"wp_tcm_logs\",\"wp_td_fields\",\"wp_td_groups\",\"wp_term_relationships\",\"wp_term_taxonomy\",\"wp_termmeta\",\"wp_terms\",\"wp_usermeta\",\"wp_users\",\"wp_vxcf_hubspot\",\"wp_vxcf_hubspot_accounts\",\"wp_vxcf_hubspot_log\",\"wp_wc_comments_subscription\",\"wp_wc_feedback_forms\",\"wp_wc_follow_users\",\"wp_wc_phrases\",\"wp_wc_users_rated\",\"wp_wc_users_voted\",\"wp_wp_phpmyadmin_extension__errors_log\",\"wp_wpfm_backup\",\"wp_wpgmza\",\"wp_wpgmza_categories\",\"wp_wpgmza_category_maps\",\"wp_wpgmza_circles\",\"wp_wpgmza_maps\",\"wp_wpgmza_polygon\",\"wp_wpgmza_polylines\",\"wp_wpgmza_rectangles\",\"wp_wpr_rucss_resources\",\"wp_wpr_rucss_used_css\",\"wp_yoast_indexable\",\"wp_yoast_indexable_hierarchy\",\"wp_yoast_migrations\",\"wp_yoast_primary_term\",\"wp_yoast_prominent_words\",\"wp_yoast_seo_links\",\"wp_yoast_seo_meta\"],\"validationStage1\":true,\"doneInit\":true,\"doneFiltering\":true,\"doneCreates\":true,\"completed\":true,\"startTime\":1638552319.896056,\"wasInterrupted\":false,\"errorOut\":false,\"failureCount\":0,\"countCheckData\":{\"countTotal\":25590,\"impreciseTotalRows\":25485,\"tables\":{\"wp_actionscheduler_actions\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_actionscheduler_claims\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_actionscheduler_groups\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_actionscheduler_logs\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_aioseo_notifications\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_aioseo_posts\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_commentmeta\":{\"start\":\"10\",\"end\":\"10\",\"count\":10,\"create\":true},\"wp_comments\":{\"start\":\"93\",\"end\":\"93\",\"count\":93,\"create\":true},\"wp_duplicator_pro_entities\":{\"start\":\"5\",\"end\":\"5\",\"count\":5,\"create\":true},\"wp_duplicator_pro_packages\":{\"start\":\"3\",\"end\":\"3\",\"count\":3,\"create\":true},\"wp_imagify_files\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_imagify_folders\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_links\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_litespeed_img_optm\":{\"start\":\"5\",\"end\":\"5\",\"count\":5,\"create\":true},\"wp_litespeed_optimizer\":{\"start\":\"39\",\"end\":\"39\",\"count\":39,\"create\":true},\"wp_mail_bank\":{\"start\":\"6\",\"end\":\"6\",\"count\":6,\"create\":true},\"wp_mail_bank_logs\":{\"start\":\"3\",\"end\":\"3\",\"count\":3,\"create\":true},\"wp_mail_bank_meta\":{\"start\":\"4\",\"end\":\"4\",\"count\":4,\"create\":true},\"wp_options\":{\"start\":\"803\",\"end\":\"803\",\"count\":803,\"create\":true},\"wp_postmeta\":{\"start\":\"17657\",\"end\":\"17657\",\"count\":17657,\"create\":true},\"wp_posts\":{\"start\":\"1233\",\"end\":\"1233\",\"count\":1233,\"create\":true},\"wp_redirection_404\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_redirection_groups\":{\"start\":\"2\",\"end\":\"2\",\"count\":2,\"create\":true},\"wp_redirection_items\":{\"start\":\"4\",\"end\":\"4\",\"count\":4,\"create\":true},\"wp_redirection_logs\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_revslider_css\":{\"start\":\"109\",\"end\":\"109\",\"count\":109,\"create\":true},\"wp_revslider_css_bkp\":{\"start\":\"47\",\"end\":\"47\",\"count\":47,\"create\":true},\"wp_revslider_layer_animations\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_revslider_layer_animations_bkp\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_revslider_navigations\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_revslider_navigations_bkp\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_revslider_sliders\":{\"start\":\"2\",\"end\":\"2\",\"count\":2,\"create\":true},\"wp_revslider_sliders_bkp\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_revslider_slides\":{\"start\":\"6\",\"end\":\"6\",\"count\":6,\"create\":true},\"wp_revslider_slides_bkp\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_revslider_static_slides\":{\"start\":\"2\",\"end\":\"2\",\"count\":2,\"create\":true},\"wp_revslider_static_slides_bkp\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_sgpb_subscribers\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_sgpb_subscription_error_log\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_smush_dir_images\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_snippets\":{\"start\":\"4\",\"end\":\"4\",\"count\":4,\"create\":true},\"wp_tcm_email_hash\":{\"start\":\"1\",\"end\":\"1\",\"count\":1,\"create\":true},\"wp_tcm_logs\":{\"start\":\"2\",\"end\":\"2\",\"count\":2,\"create\":true},\"wp_td_fields\":{\"start\":\"14\",\"end\":\"14\",\"count\":14,\"create\":true},\"wp_td_groups\":{\"start\":\"3\",\"end\":\"3\",\"count\":3,\"create\":true},\"wp_term_relationships\":{\"start\":\"363\",\"end\":\"363\",\"count\":363,\"create\":true},\"wp_term_taxonomy\":{\"start\":\"138\",\"end\":\"138\",\"count\":138,\"create\":true},\"wp_termmeta\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_terms\":{\"start\":\"138\",\"end\":\"138\",\"count\":138,\"create\":true},\"wp_usermeta\":{\"start\":\"616\",\"end\":\"616\",\"count\":616,\"create\":true},\"wp_users\":{\"start\":\"18\",\"end\":\"18\",\"count\":18,\"create\":true},\"wp_vxcf_hubspot\":{\"start\":\"6\",\"end\":\"6\",\"count\":6,\"create\":true},\"wp_vxcf_hubspot_accounts\":{\"start\":\"2\",\"end\":\"2\",\"count\":2,\"create\":true},\"wp_vxcf_hubspot_log\":{\"start\":\"404\",\"end\":\"404\",\"count\":404,\"create\":true},\"wp_wc_comments_subscription\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wc_feedback_forms\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wc_follow_users\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wc_phrases\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wc_users_rated\":{\"start\":\"8\",\"end\":\"8\",\"count\":8,\"create\":true},\"wp_wc_users_voted\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wp_phpmyadmin_extension__errors_log\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpfm_backup\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza\":{\"start\":\"1\",\"end\":\"1\",\"count\":1,\"create\":true},\"wp_wpgmza_categories\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_category_maps\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_circles\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_maps\":{\"start\":\"1\",\"end\":\"1\",\"count\":1,\"create\":true},\"wp_wpgmza_polygon\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_polylines\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_rectangles\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpr_rucss_resources\":{\"start\":\"66\",\"end\":\"66\",\"count\":66,\"create\":true},\"wp_wpr_rucss_used_css\":{\"start\":\"22\",\"end\":\"22\",\"count\":22,\"create\":true},\"wp_yoast_indexable\":{\"start\":\"974\",\"end\":\"974\",\"count\":974,\"create\":true},\"wp_yoast_indexable_hierarchy\":{\"start\":\"838\",\"end\":\"838\",\"count\":838,\"create\":true},\"wp_yoast_migrations\":{\"start\":\"25\",\"end\":\"25\",\"count\":25,\"create\":true},\"wp_yoast_primary_term\":{\"start\":\"47\",\"end\":\"47\",\"count\":47,\"create\":true},\"wp_yoast_prominent_words\":{\"start\":\"946\",\"end\":\"946\",\"count\":946,\"create\":true},\"wp_yoast_seo_links\":{\"start\":\"310\",\"end\":\"310\",\"count\":310,\"create\":true},\"wp_yoast_seo_meta\":{\"start\":\"610\",\"end\":\"610\",\"count\":610,\"create\":true}}}},\"upload_infos\":[{\"storage_id\":\"-2\",\"archive_offset\":0,\"copied_installer\":true,\"copied_archive\":true,\"progress\":0,\"num_failures\":0,\"failed\":false,\"cancelled\":false,\"upload_id\":null,\"failure_count\":0,\"data\":\"\",\"data2\":\"\",\"has_started\":true,\"status_message_details\":\"\",\"started_timestamp\":1638552526,\"stopped_timestamp\":1638552527}],\"active_storage_id\":-2,\"template_id\":5}'),(4,'Default','b011e07146ddf1a75461_20220429173603',100,'2022-04-29 13:36:12','robert','{\"Created\":\"2022-04-29 17:36:03\",\"Version\":\"4.0.6.1\",\"VersionWP\":\"5.5.9\",\"VersionDB\":\"10.5.8\",\"VersionPHP\":\"7.4.12\",\"VersionOS\":\"Linux\",\"ID\":4,\"Name\":\"Default\",\"Hash\":\"b011e07146ddf1a75461_20220429173603\",\"NameHash\":\"Default_b011e07146ddf1a75461_20220429173603\",\"Type\":0,\"Notes\":\"The default template.\",\"StorePath\":\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\\/tmp\",\"StoreURL\":\"https:\\/\\/translucent.local\\/wp-content\\/backups-dup-pro\\/\",\"ScanFile\":\"Default_b011e07146ddf1a75461_20220429173603_scan.json\",\"timer_start\":1651253776.082823,\"Runtime\":\"177.705 sec.\",\"ExeSize\":\"71.61KB\",\"ZipSize\":\"384.11MB\",\"Brand\":\"Default\",\"Brand_ID\":-2,\"ziparchive_mode\":0,\"Archive\":{\"ExportOnlyDB\":0,\"FilterDirs\":\"\",\"FilterExts\":\"\",\"FilterFiles\":\"\",\"FilterDirsAll\":[\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\",\"\\/bitnami\\/wordpress\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/storage\",\"\\/bitnami\\/wordpress\\/wp-content\\/plugins\\/really-simple-captcha\\/tmp\",\"\\/bitnami\\/wordpress\\/wp-content\\/plugins\\/wordfence\\/tmp\",\"\\/var\\/www\\/dfr\\/translucent\\/.opcache\",\"\\/var\\/www\\/dfr\\/translucent\\/.tmb\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/ai1wm-backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/backupwordpress\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/bps-backup\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/cache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/content\\/cache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/contents\\/cache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/infinitewp\\/backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/managewp\\/backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/old-cache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/updraft\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/aiowps_backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/backup-guard\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/backupbuddy_backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/backupbuddy_temp\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/ithemes-security\\/backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/mainwp\\/backup\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/pb_backupbuddy\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/snapshots\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/sucuri\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/wp-clone\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/wp_all_backup\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/wpbackitup_backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/wfcache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/wishlist-backup\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/wpvividbackups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-snapshots\"],\"FilterExtsAll\":[],\"FilterFilesAll\":[\".DS_Store\",\"\\/var\\/www\\/dfr\\/translucent\\/.htaccess\",\"\\/var\\/www\\/dfr\\/translucent\\/.user.ini\",\"\\/var\\/www\\/dfr\\/translucent\\/php.ini\",\"\\/var\\/www\\/dfr\\/translucent\\/web.config\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-config.php\",\"dbcache\",\"debug_log\",\"error_log\",\"objectcache\",\"pgcache\",\"ws_ftp.log\"],\"FilterOn\":0,\"File\":\"Default_b011e07146ddf1a75461_20220429173603_archive.zip\",\"Format\":\"ZIP\",\"PackDir\":\"\",\"Size\":402767520,\"Dirs\":null,\"DirCount\":4917,\"RecursiveLinks\":[],\"Files\":null,\"FileCount\":37240,\"file_count\":42157,\"FilterInfo\":{\"Dirs\":{\"Warning\":[],\"AddonSites\":[],\"Size\":[],\"Core\":[],\"Global\":[],\"Instance\":[],\"Unreadable\":[]},\"Files\":{\"Warning\":[],\"Size\":[],\"Core\":[],\"Global\":[],\"Instance\":[],\"Unreadable\":[]},\"Exts\":{\"Core\":[],\"Global\":[],\"Instance\":[],\"Unreadable\":[]},\"TreeSize\":null,\"TreeWarning\":null},\"ListDelimiter\":\"\\n\",\"throttleDelayInUs\":0},\"Multisite\":{\"FilterSites\":\"\"},\"Installer\":{\"File\":\"Default_b011e07146ddf1a75461_20220429173603_installer.php\",\"Size\":73324,\"OptsSecureOn\":0,\"OptsSecurePass\":\"\",\"OptsSkipScan\":0,\"OptsDBHost\":\"\",\"OptsDBName\":\"\",\"OptsDBUser\":\"\",\"OptsCPNLHost\":\"\",\"OptsCPNLUser\":\"\",\"OptsCPNLPass\":\"\",\"OptsCPNLEnable\":0,\"OptsCPNLConnect\":false,\"OptsCPNLDBAction\":\"create\",\"OptsCPNLDBHost\":\"\",\"OptsCPNLDBName\":\"\",\"OptsCPNLDBUser\":\"\",\"numFilesAdded\":0,\"numDirsAdded\":0},\"Database\":{\"info\":{\"buildMode\":\"PHPCHUNKING\",\"charSetList\":[\"utf8mb4\",\"utf8\"],\"collationList\":[\"utf8_general_ci\",\"utf8mb4_unicode_520_ci\",\"utf8mb4_unicode_ci\"],\"engineList\":[\"InnoDB\",\"MyISAM\"],\"isTablesUpperCase\":0,\"isNameUpperCase\":0,\"name\":\"bitnami_wordpress\",\"tablesBaseCount\":79,\"tablesFinalCount\":79,\"muFilteredTableCount\":0,\"tablesRowCount\":28690,\"tablesSizeOnDisk\":42427852,\"tablesList\":{\"wp_actionscheduler_actions\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":131072},\"wp_actionscheduler_claims\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_actionscheduler_groups\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_actionscheduler_logs\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_aioseo_notifications\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":81920},\"wp_aioseo_posts\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_commentmeta\":{\"inaccurateRows\":9,\"insertedRows\":10,\"size\":49152},\"wp_comments\":{\"inaccurateRows\":92,\"insertedRows\":94,\"size\":163840},\"wp_duplicator_pro_entities\":{\"inaccurateRows\":5,\"insertedRows\":5,\"size\":32768},\"wp_duplicator_pro_packages\":{\"inaccurateRows\":3,\"insertedRows\":4,\"size\":180224},\"wp_imagify_files\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":98304},\"wp_imagify_folders\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_links\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_litespeed_img_optm\":{\"inaccurateRows\":5,\"insertedRows\":5,\"size\":114688},\"wp_litespeed_optimizer\":{\"inaccurateRows\":39,\"insertedRows\":39,\"size\":114688},\"wp_mail_bank\":{\"inaccurateRows\":6,\"insertedRows\":6,\"size\":2196},\"wp_mail_bank_logs\":{\"inaccurateRows\":3,\"insertedRows\":3,\"size\":3340},\"wp_mail_bank_meta\":{\"inaccurateRows\":4,\"insertedRows\":4,\"size\":4140},\"wp_options\":{\"inaccurateRows\":797,\"insertedRows\":797,\"size\":4784128},\"wp_postmeta\":{\"inaccurateRows\":18215,\"insertedRows\":18212,\"size\":8830976},\"wp_posts\":{\"inaccurateRows\":1271,\"insertedRows\":1271,\"size\":10076160},\"wp_redirection_404\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":65536},\"wp_redirection_groups\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":49152},\"wp_redirection_items\":{\"inaccurateRows\":4,\"insertedRows\":4,\"size\":114688},\"wp_redirection_logs\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":98304},\"wp_revslider_css\":{\"inaccurateRows\":109,\"insertedRows\":109,\"size\":147456},\"wp_revslider_css_bkp\":{\"inaccurateRows\":47,\"insertedRows\":47,\"size\":32768},\"wp_revslider_layer_animations\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_revslider_layer_animations_bkp\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_revslider_navigations\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_revslider_navigations_bkp\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_revslider_sliders\":{\"inaccurateRows\":2,\"insertedRows\":3,\"size\":81920},\"wp_revslider_sliders_bkp\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_revslider_slides\":{\"inaccurateRows\":10,\"insertedRows\":10,\"size\":327680},\"wp_revslider_slides_bkp\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_revslider_static_slides\":{\"inaccurateRows\":2,\"insertedRows\":3,\"size\":32768},\"wp_revslider_static_slides_bkp\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_sgpb_subscribers\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_sgpb_subscription_error_log\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_smush_dir_images\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_snippets\":{\"inaccurateRows\":4,\"insertedRows\":4,\"size\":16384},\"wp_tcm_email_hash\":{\"inaccurateRows\":0,\"insertedRows\":1,\"size\":16384},\"wp_tcm_logs\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":32768},\"wp_td_fields\":{\"inaccurateRows\":14,\"insertedRows\":14,\"size\":16384},\"wp_td_groups\":{\"inaccurateRows\":3,\"insertedRows\":3,\"size\":16384},\"wp_termmeta\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_terms\":{\"inaccurateRows\":131,\"insertedRows\":140,\"size\":49152},\"wp_term_relationships\":{\"inaccurateRows\":347,\"insertedRows\":368,\"size\":32768},\"wp_term_taxonomy\":{\"inaccurateRows\":138,\"insertedRows\":140,\"size\":49152},\"wp_usermeta\":{\"inaccurateRows\":407,\"insertedRows\":407,\"size\":131072},\"wp_users\":{\"inaccurateRows\":12,\"insertedRows\":12,\"size\":65536},\"wp_vxcf_hubspot\":{\"inaccurateRows\":6,\"insertedRows\":6,\"size\":32768},\"wp_vxcf_hubspot_accounts\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":16384},\"wp_vxcf_hubspot_log\":{\"inaccurateRows\":3175,\"insertedRows\":3374,\"size\":4816896},\"wp_wc_comments_subscription\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":81920},\"wp_wc_feedback_forms\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_wc_follow_users\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":147456},\"wp_wc_phrases\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_wc_users_rated\":{\"inaccurateRows\":6,\"insertedRows\":9,\"size\":49152},\"wp_wc_users_voted\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":98304},\"wp_wpfm_backup\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza\":{\"inaccurateRows\":0,\"insertedRows\":1,\"size\":16384},\"wp_wpgmza_categories\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_category_maps\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_circles\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_maps\":{\"inaccurateRows\":0,\"insertedRows\":1,\"size\":16384},\"wp_wpgmza_polygon\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_polylines\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_rectangles\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpr_rucss_resources\":{\"inaccurateRows\":119,\"insertedRows\":119,\"size\":7798784},\"wp_wpr_rucss_used_css\":{\"inaccurateRows\":1,\"insertedRows\":1,\"size\":212992},\"wp_wp_phpmyadmin_extension__errors_log\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_yoast_indexable\":{\"inaccurateRows\":993,\"insertedRows\":993,\"size\":1818624},\"wp_yoast_indexable_hierarchy\":{\"inaccurateRows\":860,\"insertedRows\":860,\"size\":114688},\"wp_yoast_migrations\":{\"inaccurateRows\":22,\"insertedRows\":25,\"size\":32768},\"wp_yoast_primary_term\":{\"inaccurateRows\":48,\"insertedRows\":48,\"size\":49152},\"wp_yoast_prominent_words\":{\"inaccurateRows\":912,\"insertedRows\":946,\"size\":180224},\"wp_yoast_seo_links\":{\"inaccurateRows\":284,\"insertedRows\":328,\"size\":98304},\"wp_yoast_seo_meta\":{\"inaccurateRows\":579,\"insertedRows\":610,\"size\":49152}},\"varLowerCaseTables\":\"0\",\"dbEngine\":\"MariaDB\",\"version\":\"10.5.8\",\"versionComment\":\"Source distribution\",\"viewCount\":0,\"procCount\":0,\"funcCount\":0,\"triggerList\":[]},\"Type\":\"MySQL\",\"Size\":17764694,\"File\":\"Default_b011e07146ddf1a75461_20220429173603_database.sql\",\"FilterTables\":\"\",\"FilterOn\":0,\"prefixFilter\":false,\"prefixSubFilter\":false,\"DBMode\":\"PHPCHUNKING\",\"Compatible\":\"\",\"Comments\":\"Source distribution\",\"dbStorePathPublic\":\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\\/tmp\\/Default_b011e07146ddf1a75461_20220429173603_database.sql\"},\"Status\":\"100.0\",\"schedule_id\":-1,\"build_progress\":{\"thread_start_time\":1651253953,\"initialized\":true,\"installer_built\":true,\"archive_started\":true,\"archive_start_time\":1651253783.127812,\"archive_has_database\":false,\"archive_built\":true,\"database_script_built\":true,\"failed\":false,\"next_archive_file_index\":37240,\"next_archive_dir_index\":34419,\"retries\":0,\"current_build_mode\":2,\"current_build_compression\":true,\"custom_data\":null,\"warnings\":[]},\"db_build_progress\":{\"tablesToProcess\":[\"wp_users\",\"wp_usermeta\",\"wp_actionscheduler_actions\",\"wp_actionscheduler_claims\",\"wp_actionscheduler_groups\",\"wp_actionscheduler_logs\",\"wp_aioseo_notifications\",\"wp_aioseo_posts\",\"wp_commentmeta\",\"wp_comments\",\"wp_duplicator_pro_entities\",\"wp_duplicator_pro_packages\",\"wp_imagify_files\",\"wp_imagify_folders\",\"wp_links\",\"wp_litespeed_img_optm\",\"wp_litespeed_optimizer\",\"wp_mail_bank\",\"wp_mail_bank_logs\",\"wp_mail_bank_meta\",\"wp_options\",\"wp_postmeta\",\"wp_posts\",\"wp_redirection_404\",\"wp_redirection_groups\",\"wp_redirection_items\",\"wp_redirection_logs\",\"wp_revslider_css\",\"wp_revslider_css_bkp\",\"wp_revslider_layer_animations\",\"wp_revslider_layer_animations_bkp\",\"wp_revslider_navigations\",\"wp_revslider_navigations_bkp\",\"wp_revslider_sliders\",\"wp_revslider_sliders_bkp\",\"wp_revslider_slides\",\"wp_revslider_slides_bkp\",\"wp_revslider_static_slides\",\"wp_revslider_static_slides_bkp\",\"wp_sgpb_subscribers\",\"wp_sgpb_subscription_error_log\",\"wp_smush_dir_images\",\"wp_snippets\",\"wp_tcm_email_hash\",\"wp_tcm_logs\",\"wp_td_fields\",\"wp_td_groups\",\"wp_termmeta\",\"wp_terms\",\"wp_term_relationships\",\"wp_term_taxonomy\",\"wp_vxcf_hubspot\",\"wp_vxcf_hubspot_accounts\",\"wp_vxcf_hubspot_log\",\"wp_wc_comments_subscription\",\"wp_wc_feedback_forms\",\"wp_wc_follow_users\",\"wp_wc_phrases\",\"wp_wc_users_rated\",\"wp_wc_users_voted\",\"wp_wpfm_backup\",\"wp_wpgmza\",\"wp_wpgmza_categories\",\"wp_wpgmza_category_maps\",\"wp_wpgmza_circles\",\"wp_wpgmza_maps\",\"wp_wpgmza_polygon\",\"wp_wpgmza_polylines\",\"wp_wpgmza_rectangles\",\"wp_wpr_rucss_resources\",\"wp_wpr_rucss_used_css\",\"wp_wp_phpmyadmin_extension__errors_log\",\"wp_yoast_indexable\",\"wp_yoast_indexable_hierarchy\",\"wp_yoast_migrations\",\"wp_yoast_primary_term\",\"wp_yoast_prominent_words\",\"wp_yoast_seo_links\",\"wp_yoast_seo_meta\"],\"validationStage1\":true,\"doneInit\":true,\"doneFiltering\":true,\"doneCreates\":true,\"completed\":true,\"startTime\":1651253776.103123,\"wasInterrupted\":false,\"errorOut\":false,\"failureCount\":0,\"countCheckData\":{\"countTotal\":29042,\"impreciseTotalRows\":28691,\"tables\":{\"wp_users\":{\"start\":\"12\",\"end\":\"12\",\"count\":12,\"create\":true},\"wp_usermeta\":{\"start\":\"407\",\"end\":\"407\",\"count\":407,\"create\":true},\"wp_actionscheduler_actions\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_actionscheduler_claims\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_actionscheduler_groups\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_actionscheduler_logs\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_aioseo_notifications\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_aioseo_posts\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_commentmeta\":{\"start\":\"10\",\"end\":\"10\",\"count\":10,\"create\":true},\"wp_comments\":{\"start\":\"94\",\"end\":\"94\",\"count\":94,\"create\":true},\"wp_duplicator_pro_entities\":{\"start\":\"5\",\"end\":\"5\",\"count\":5,\"create\":true},\"wp_duplicator_pro_packages\":{\"start\":\"4\",\"end\":\"4\",\"count\":4,\"create\":true},\"wp_imagify_files\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_imagify_folders\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_links\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_litespeed_img_optm\":{\"start\":\"5\",\"end\":\"5\",\"count\":5,\"create\":true},\"wp_litespeed_optimizer\":{\"start\":\"39\",\"end\":\"39\",\"count\":39,\"create\":true},\"wp_mail_bank\":{\"start\":\"6\",\"end\":\"6\",\"count\":6,\"create\":true},\"wp_mail_bank_logs\":{\"start\":\"3\",\"end\":\"3\",\"count\":3,\"create\":true},\"wp_mail_bank_meta\":{\"start\":\"4\",\"end\":\"4\",\"count\":4,\"create\":true},\"wp_options\":{\"start\":\"797\",\"end\":\"797\",\"count\":797,\"create\":true},\"wp_postmeta\":{\"start\":\"18212\",\"end\":\"18212\",\"count\":18212,\"create\":true},\"wp_posts\":{\"start\":\"1271\",\"end\":\"1271\",\"count\":1271,\"create\":true},\"wp_redirection_404\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_redirection_groups\":{\"start\":\"2\",\"end\":\"2\",\"count\":2,\"create\":true},\"wp_redirection_items\":{\"start\":\"4\",\"end\":\"4\",\"count\":4,\"create\":true},\"wp_redirection_logs\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_revslider_css\":{\"start\":\"109\",\"end\":\"109\",\"count\":109,\"create\":true},\"wp_revslider_css_bkp\":{\"start\":\"47\",\"end\":\"47\",\"count\":47,\"create\":true},\"wp_revslider_layer_animations\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_revslider_layer_animations_bkp\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_revslider_navigations\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_revslider_navigations_bkp\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_revslider_sliders\":{\"start\":\"3\",\"end\":\"3\",\"count\":3,\"create\":true},\"wp_revslider_sliders_bkp\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_revslider_slides\":{\"start\":\"10\",\"end\":\"10\",\"count\":10,\"create\":true},\"wp_revslider_slides_bkp\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_revslider_static_slides\":{\"start\":\"3\",\"end\":\"3\",\"count\":3,\"create\":true},\"wp_revslider_static_slides_bkp\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_sgpb_subscribers\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_sgpb_subscription_error_log\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_smush_dir_images\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_snippets\":{\"start\":\"4\",\"end\":\"4\",\"count\":4,\"create\":true},\"wp_tcm_email_hash\":{\"start\":\"1\",\"end\":\"1\",\"count\":1,\"create\":true},\"wp_tcm_logs\":{\"start\":\"2\",\"end\":\"2\",\"count\":2,\"create\":true},\"wp_td_fields\":{\"start\":\"14\",\"end\":\"14\",\"count\":14,\"create\":true},\"wp_td_groups\":{\"start\":\"3\",\"end\":\"3\",\"count\":3,\"create\":true},\"wp_termmeta\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_terms\":{\"start\":\"140\",\"end\":\"140\",\"count\":140,\"create\":true},\"wp_term_relationships\":{\"start\":\"368\",\"end\":\"368\",\"count\":368,\"create\":true},\"wp_term_taxonomy\":{\"start\":\"140\",\"end\":\"140\",\"count\":140,\"create\":true},\"wp_vxcf_hubspot\":{\"start\":\"6\",\"end\":\"6\",\"count\":6,\"create\":true},\"wp_vxcf_hubspot_accounts\":{\"start\":\"2\",\"end\":\"2\",\"count\":2,\"create\":true},\"wp_vxcf_hubspot_log\":{\"start\":\"3374\",\"end\":\"3374\",\"count\":3374,\"create\":true},\"wp_wc_comments_subscription\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wc_feedback_forms\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wc_follow_users\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wc_phrases\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wc_users_rated\":{\"start\":\"9\",\"end\":\"9\",\"count\":9,\"create\":true},\"wp_wc_users_voted\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpfm_backup\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza\":{\"start\":\"1\",\"end\":\"1\",\"count\":1,\"create\":true},\"wp_wpgmza_categories\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_category_maps\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_circles\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_maps\":{\"start\":\"1\",\"end\":\"1\",\"count\":1,\"create\":true},\"wp_wpgmza_polygon\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_polylines\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_rectangles\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpr_rucss_resources\":{\"start\":\"119\",\"end\":\"119\",\"count\":119,\"create\":true},\"wp_wpr_rucss_used_css\":{\"start\":\"1\",\"end\":\"1\",\"count\":1,\"create\":true},\"wp_wp_phpmyadmin_extension__errors_log\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_yoast_indexable\":{\"start\":\"993\",\"end\":\"993\",\"count\":993,\"create\":true},\"wp_yoast_indexable_hierarchy\":{\"start\":\"860\",\"end\":\"860\",\"count\":860,\"create\":true},\"wp_yoast_migrations\":{\"start\":\"25\",\"end\":\"25\",\"count\":25,\"create\":true},\"wp_yoast_primary_term\":{\"start\":\"48\",\"end\":\"48\",\"count\":48,\"create\":true},\"wp_yoast_prominent_words\":{\"start\":\"946\",\"end\":\"946\",\"count\":946,\"create\":true},\"wp_yoast_seo_links\":{\"start\":\"328\",\"end\":\"328\",\"count\":328,\"create\":true},\"wp_yoast_seo_meta\":{\"start\":\"610\",\"end\":\"610\",\"count\":610,\"create\":true}}}},\"upload_infos\":[{\"storage_id\":\"-2\",\"archive_offset\":0,\"copied_installer\":true,\"copied_archive\":true,\"progress\":0,\"num_failures\":0,\"failed\":false,\"cancelled\":false,\"upload_id\":null,\"failure_count\":0,\"data\":\"\",\"data2\":\"\",\"has_started\":true,\"status_message_details\":\"\",\"started_timestamp\":1651253954,\"stopped_timestamp\":1651253954}],\"active_storage_id\":-2,\"template_id\":4}'),(5,'20220520_translucent','b80e04a644992c741107_20220520221841',100,'2022-05-20 18:18:57','robert','{\"Created\":\"2022-05-20 22:18:41\",\"Version\":\"4.0.6.1\",\"VersionWP\":\"5.9.3\",\"VersionDB\":\"10.5.8\",\"VersionPHP\":\"7.4.12\",\"VersionOS\":\"Linux\",\"ID\":5,\"Name\":\"20220520_translucent\",\"Hash\":\"b80e04a644992c741107_20220520221841\",\"NameHash\":\"20220520_translucent_b80e04a644992c741107_20220520221841\",\"Type\":0,\"Notes\":\"The default template.\",\"StorePath\":\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\\/tmp\",\"StoreURL\":\"https:\\/\\/translucent.local\\/wp-content\\/backups-dup-pro\\/\",\"ScanFile\":\"20220520_translucent_b80e04a644992c741107_20220520221841_scan.json\",\"timer_start\":1653085151.379903,\"Runtime\":\"219.554 sec.\",\"ExeSize\":\"71.62KB\",\"ZipSize\":\"440.48MB\",\"Brand\":\"Default\",\"Brand_ID\":-2,\"ziparchive_mode\":0,\"Archive\":{\"ExportOnlyDB\":0,\"FilterDirs\":\"\",\"FilterExts\":\"\",\"FilterFiles\":\"\",\"FilterDirsAll\":[\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\",\"\\/bitnami\\/wordpress\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/storage\",\"\\/bitnami\\/wordpress\\/wp-content\\/plugins\\/really-simple-captcha\\/tmp\",\"\\/bitnami\\/wordpress\\/wp-content\\/plugins\\/wordfence\\/tmp\",\"\\/var\\/www\\/dfr\\/translucent\\/.opcache\",\"\\/var\\/www\\/dfr\\/translucent\\/.tmb\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/ai1wm-backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/backupwordpress\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/bps-backup\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/cache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/content\\/cache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/contents\\/cache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/infinitewp\\/backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/managewp\\/backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/old-cache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/updraft\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/aiowps_backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/backup-guard\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/backupbuddy_backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/backupbuddy_temp\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/ithemes-security\\/backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/mainwp\\/backup\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/pb_backupbuddy\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/snapshots\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/sucuri\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/wp-clone\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/wp_all_backup\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/wpbackitup_backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/wfcache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/wishlist-backup\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/wpvividbackups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-snapshots\"],\"FilterExtsAll\":[],\"FilterFilesAll\":[\".DS_Store\",\"\\/var\\/www\\/dfr\\/translucent\\/.htaccess\",\"\\/var\\/www\\/dfr\\/translucent\\/.user.ini\",\"\\/var\\/www\\/dfr\\/translucent\\/php.ini\",\"\\/var\\/www\\/dfr\\/translucent\\/web.config\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-config.php\",\"dbcache\",\"debug_log\",\"error_log\",\"objectcache\",\"pgcache\",\"ws_ftp.log\"],\"FilterOn\":0,\"File\":\"20220520_translucent_b80e04a644992c741107_20220520221841_archive.zip\",\"Format\":\"ZIP\",\"PackDir\":\"\",\"Size\":461875985,\"Dirs\":null,\"DirCount\":5136,\"RecursiveLinks\":[],\"Files\":null,\"FileCount\":38839,\"file_count\":43975,\"FilterInfo\":{\"Dirs\":{\"Warning\":[],\"AddonSites\":[],\"Size\":[],\"Core\":[],\"Global\":[],\"Instance\":[],\"Unreadable\":[]},\"Files\":{\"Warning\":[],\"Size\":[],\"Core\":[],\"Global\":[],\"Instance\":[],\"Unreadable\":[]},\"Exts\":{\"Core\":[],\"Global\":[],\"Instance\":[],\"Unreadable\":[]},\"TreeSize\":null,\"TreeWarning\":null},\"ListDelimiter\":\"\\n\",\"throttleDelayInUs\":0},\"Multisite\":{\"FilterSites\":\"\"},\"Installer\":{\"File\":\"20220520_translucent_b80e04a644992c741107_20220520221841_installer.php\",\"Size\":73337,\"OptsSecureOn\":0,\"OptsSecurePass\":\"\",\"OptsSkipScan\":0,\"OptsDBHost\":\"\",\"OptsDBName\":\"\",\"OptsDBUser\":\"\",\"OptsCPNLHost\":\"\",\"OptsCPNLUser\":\"\",\"OptsCPNLPass\":\"\",\"OptsCPNLEnable\":0,\"OptsCPNLConnect\":false,\"OptsCPNLDBAction\":\"create\",\"OptsCPNLDBHost\":\"\",\"OptsCPNLDBName\":\"\",\"OptsCPNLDBUser\":\"\",\"numFilesAdded\":0,\"numDirsAdded\":0},\"Database\":{\"info\":{\"buildMode\":\"PHPCHUNKING\",\"charSetList\":[\"utf8mb4\",\"utf8\"],\"collationList\":[\"utf8_general_ci\",\"utf8mb4_unicode_520_ci\",\"utf8mb4_unicode_ci\"],\"engineList\":[\"InnoDB\",\"MyISAM\"],\"isTablesUpperCase\":0,\"isNameUpperCase\":0,\"name\":\"bitnami_wordpress\",\"tablesBaseCount\":79,\"tablesFinalCount\":79,\"muFilteredTableCount\":0,\"tablesRowCount\":42057,\"tablesSizeOnDisk\":43738572,\"tablesList\":{\"wp_actionscheduler_actions\":{\"inaccurateRows\":4,\"insertedRows\":4,\"size\":147456},\"wp_actionscheduler_claims\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_actionscheduler_groups\":{\"inaccurateRows\":0,\"insertedRows\":1,\"size\":32768},\"wp_actionscheduler_logs\":{\"inaccurateRows\":11,\"insertedRows\":12,\"size\":49152},\"wp_aioseo_notifications\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":81920},\"wp_aioseo_posts\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_commentmeta\":{\"inaccurateRows\":9,\"insertedRows\":10,\"size\":49152},\"wp_comments\":{\"inaccurateRows\":92,\"insertedRows\":94,\"size\":163840},\"wp_duplicator_pro_entities\":{\"inaccurateRows\":5,\"insertedRows\":5,\"size\":32768},\"wp_duplicator_pro_packages\":{\"inaccurateRows\":3,\"insertedRows\":5,\"size\":180224},\"wp_imagify_files\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":98304},\"wp_imagify_folders\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_links\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_litespeed_img_optm\":{\"inaccurateRows\":5,\"insertedRows\":5,\"size\":114688},\"wp_litespeed_optimizer\":{\"inaccurateRows\":39,\"insertedRows\":39,\"size\":114688},\"wp_mail_bank\":{\"inaccurateRows\":6,\"insertedRows\":6,\"size\":2196},\"wp_mail_bank_logs\":{\"inaccurateRows\":3,\"insertedRows\":3,\"size\":3340},\"wp_mail_bank_meta\":{\"inaccurateRows\":4,\"insertedRows\":4,\"size\":4140},\"wp_options\":{\"inaccurateRows\":892,\"insertedRows\":892,\"size\":4784128},\"wp_postmeta\":{\"inaccurateRows\":30633,\"insertedRows\":30633,\"size\":9879552},\"wp_posts\":{\"inaccurateRows\":1667,\"insertedRows\":1683,\"size\":10141696},\"wp_redirection_404\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":65536},\"wp_redirection_groups\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":49152},\"wp_redirection_items\":{\"inaccurateRows\":4,\"insertedRows\":4,\"size\":114688},\"wp_redirection_logs\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":98304},\"wp_revslider_css\":{\"inaccurateRows\":109,\"insertedRows\":109,\"size\":147456},\"wp_revslider_css_bkp\":{\"inaccurateRows\":47,\"insertedRows\":47,\"size\":32768},\"wp_revslider_layer_animations\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_revslider_layer_animations_bkp\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_revslider_navigations\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":16384},\"wp_revslider_navigations_bkp\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_revslider_sliders\":{\"inaccurateRows\":3,\"insertedRows\":4,\"size\":81920},\"wp_revslider_sliders_bkp\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_revslider_slides\":{\"inaccurateRows\":14,\"insertedRows\":14,\"size\":491520},\"wp_revslider_slides_bkp\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_revslider_static_slides\":{\"inaccurateRows\":3,\"insertedRows\":4,\"size\":32768},\"wp_revslider_static_slides_bkp\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_sgpb_subscribers\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_sgpb_subscription_error_log\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_smush_dir_images\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_snippets\":{\"inaccurateRows\":4,\"insertedRows\":4,\"size\":16384},\"wp_tcm_email_hash\":{\"inaccurateRows\":0,\"insertedRows\":1,\"size\":16384},\"wp_tcm_logs\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":32768},\"wp_td_fields\":{\"inaccurateRows\":14,\"insertedRows\":14,\"size\":16384},\"wp_td_groups\":{\"inaccurateRows\":3,\"insertedRows\":3,\"size\":16384},\"wp_termmeta\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_terms\":{\"inaccurateRows\":133,\"insertedRows\":148,\"size\":49152},\"wp_term_relationships\":{\"inaccurateRows\":347,\"insertedRows\":397,\"size\":32768},\"wp_term_taxonomy\":{\"inaccurateRows\":140,\"insertedRows\":148,\"size\":49152},\"wp_usermeta\":{\"inaccurateRows\":434,\"insertedRows\":434,\"size\":163840},\"wp_users\":{\"inaccurateRows\":11,\"insertedRows\":12,\"size\":65536},\"wp_vxcf_hubspot\":{\"inaccurateRows\":6,\"insertedRows\":6,\"size\":32768},\"wp_vxcf_hubspot_accounts\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":16384},\"wp_vxcf_hubspot_log\":{\"inaccurateRows\":3176,\"insertedRows\":3376,\"size\":4816896},\"wp_wc_comments_subscription\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":81920},\"wp_wc_feedback_forms\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_wc_follow_users\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":147456},\"wp_wc_phrases\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_wc_users_rated\":{\"inaccurateRows\":6,\"insertedRows\":9,\"size\":49152},\"wp_wc_users_voted\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":98304},\"wp_wpfm_backup\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza\":{\"inaccurateRows\":0,\"insertedRows\":1,\"size\":16384},\"wp_wpgmza_categories\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_category_maps\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_circles\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_maps\":{\"inaccurateRows\":0,\"insertedRows\":1,\"size\":16384},\"wp_wpgmza_polygon\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_polylines\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_rectangles\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpr_rucss_resources\":{\"inaccurateRows\":119,\"insertedRows\":119,\"size\":7798784},\"wp_wpr_rucss_used_css\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":81920},\"wp_wp_phpmyadmin_extension__errors_log\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_yoast_indexable\":{\"inaccurateRows\":1340,\"insertedRows\":1340,\"size\":1900544},\"wp_yoast_indexable_hierarchy\":{\"inaccurateRows\":917,\"insertedRows\":917,\"size\":147456},\"wp_yoast_migrations\":{\"inaccurateRows\":22,\"insertedRows\":25,\"size\":32768},\"wp_yoast_primary_term\":{\"inaccurateRows\":49,\"insertedRows\":49,\"size\":49152},\"wp_yoast_prominent_words\":{\"inaccurateRows\":912,\"insertedRows\":946,\"size\":180224},\"wp_yoast_seo_links\":{\"inaccurateRows\":284,\"insertedRows\":328,\"size\":98304},\"wp_yoast_seo_meta\":{\"inaccurateRows\":579,\"insertedRows\":610,\"size\":49152}},\"varLowerCaseTables\":\"0\",\"dbEngine\":\"MariaDB\",\"version\":\"10.5.8\",\"versionComment\":\"Source distribution\",\"viewCount\":0,\"procCount\":0,\"funcCount\":0,\"triggerList\":[]},\"Type\":\"MySQL\",\"Size\":19995167,\"File\":\"20220520_translucent_b80e04a644992c741107_20220520221841_database.sql\",\"FilterTables\":\"\",\"FilterOn\":0,\"prefixFilter\":false,\"prefixSubFilter\":false,\"DBMode\":\"PHPCHUNKING\",\"Compatible\":\"\",\"Comments\":\"Source distribution\",\"dbStorePathPublic\":\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\\/tmp\\/20220520_translucent_b80e04a644992c741107_20220520221841_database.sql\"},\"Status\":\"100.0\",\"schedule_id\":-1,\"build_progress\":{\"thread_start_time\":1653085370,\"initialized\":true,\"installer_built\":true,\"archive_started\":true,\"archive_start_time\":1653085158.987234,\"archive_has_database\":false,\"archive_built\":true,\"database_script_built\":true,\"failed\":false,\"next_archive_file_index\":38839,\"next_archive_dir_index\":41088,\"retries\":0,\"current_build_mode\":2,\"current_build_compression\":true,\"custom_data\":null,\"warnings\":[]},\"db_build_progress\":{\"tablesToProcess\":[\"wp_users\",\"wp_usermeta\",\"wp_actionscheduler_actions\",\"wp_actionscheduler_claims\",\"wp_actionscheduler_groups\",\"wp_actionscheduler_logs\",\"wp_aioseo_notifications\",\"wp_aioseo_posts\",\"wp_commentmeta\",\"wp_comments\",\"wp_duplicator_pro_entities\",\"wp_duplicator_pro_packages\",\"wp_imagify_files\",\"wp_imagify_folders\",\"wp_links\",\"wp_litespeed_img_optm\",\"wp_litespeed_optimizer\",\"wp_mail_bank\",\"wp_mail_bank_logs\",\"wp_mail_bank_meta\",\"wp_options\",\"wp_postmeta\",\"wp_posts\",\"wp_redirection_404\",\"wp_redirection_groups\",\"wp_redirection_items\",\"wp_redirection_logs\",\"wp_revslider_css\",\"wp_revslider_css_bkp\",\"wp_revslider_layer_animations\",\"wp_revslider_layer_animations_bkp\",\"wp_revslider_navigations\",\"wp_revslider_navigations_bkp\",\"wp_revslider_sliders\",\"wp_revslider_sliders_bkp\",\"wp_revslider_slides\",\"wp_revslider_slides_bkp\",\"wp_revslider_static_slides\",\"wp_revslider_static_slides_bkp\",\"wp_sgpb_subscribers\",\"wp_sgpb_subscription_error_log\",\"wp_smush_dir_images\",\"wp_snippets\",\"wp_tcm_email_hash\",\"wp_tcm_logs\",\"wp_td_fields\",\"wp_td_groups\",\"wp_termmeta\",\"wp_terms\",\"wp_term_relationships\",\"wp_term_taxonomy\",\"wp_vxcf_hubspot\",\"wp_vxcf_hubspot_accounts\",\"wp_vxcf_hubspot_log\",\"wp_wc_comments_subscription\",\"wp_wc_feedback_forms\",\"wp_wc_follow_users\",\"wp_wc_phrases\",\"wp_wc_users_rated\",\"wp_wc_users_voted\",\"wp_wpfm_backup\",\"wp_wpgmza\",\"wp_wpgmza_categories\",\"wp_wpgmza_category_maps\",\"wp_wpgmza_circles\",\"wp_wpgmza_maps\",\"wp_wpgmza_polygon\",\"wp_wpgmza_polylines\",\"wp_wpgmza_rectangles\",\"wp_wpr_rucss_resources\",\"wp_wpr_rucss_used_css\",\"wp_wp_phpmyadmin_extension__errors_log\",\"wp_yoast_indexable\",\"wp_yoast_indexable_hierarchy\",\"wp_yoast_migrations\",\"wp_yoast_primary_term\",\"wp_yoast_prominent_words\",\"wp_yoast_seo_links\",\"wp_yoast_seo_meta\"],\"validationStage1\":true,\"doneInit\":true,\"doneFiltering\":true,\"doneCreates\":true,\"completed\":true,\"startTime\":1653085151.399687,\"wasInterrupted\":false,\"errorOut\":false,\"failureCount\":0,\"countCheckData\":{\"countTotal\":42474,\"impreciseTotalRows\":42058,\"tables\":{\"wp_users\":{\"start\":\"12\",\"end\":\"12\",\"count\":12,\"create\":true},\"wp_usermeta\":{\"start\":\"434\",\"end\":\"434\",\"count\":434,\"create\":true},\"wp_actionscheduler_actions\":{\"start\":\"4\",\"end\":\"4\",\"count\":4,\"create\":true},\"wp_actionscheduler_claims\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_actionscheduler_groups\":{\"start\":\"1\",\"end\":\"1\",\"count\":1,\"create\":true},\"wp_actionscheduler_logs\":{\"start\":\"12\",\"end\":\"12\",\"count\":12,\"create\":true},\"wp_aioseo_notifications\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_aioseo_posts\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_commentmeta\":{\"start\":\"10\",\"end\":\"10\",\"count\":10,\"create\":true},\"wp_comments\":{\"start\":\"94\",\"end\":\"94\",\"count\":94,\"create\":true},\"wp_duplicator_pro_entities\":{\"start\":\"5\",\"end\":\"5\",\"count\":5,\"create\":true},\"wp_duplicator_pro_packages\":{\"start\":\"5\",\"end\":\"5\",\"count\":5,\"create\":true},\"wp_imagify_files\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_imagify_folders\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_links\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_litespeed_img_optm\":{\"start\":\"5\",\"end\":\"5\",\"count\":5,\"create\":true},\"wp_litespeed_optimizer\":{\"start\":\"39\",\"end\":\"39\",\"count\":39,\"create\":true},\"wp_mail_bank\":{\"start\":\"6\",\"end\":\"6\",\"count\":6,\"create\":true},\"wp_mail_bank_logs\":{\"start\":\"3\",\"end\":\"3\",\"count\":3,\"create\":true},\"wp_mail_bank_meta\":{\"start\":\"4\",\"end\":\"4\",\"count\":4,\"create\":true},\"wp_options\":{\"start\":\"892\",\"end\":\"892\",\"count\":892,\"create\":true},\"wp_postmeta\":{\"start\":\"30633\",\"end\":\"30633\",\"count\":30633,\"create\":true},\"wp_posts\":{\"start\":\"1683\",\"end\":\"1683\",\"count\":1683,\"create\":true},\"wp_redirection_404\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_redirection_groups\":{\"start\":\"2\",\"end\":\"2\",\"count\":2,\"create\":true},\"wp_redirection_items\":{\"start\":\"4\",\"end\":\"4\",\"count\":4,\"create\":true},\"wp_redirection_logs\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_revslider_css\":{\"start\":\"109\",\"end\":\"109\",\"count\":109,\"create\":true},\"wp_revslider_css_bkp\":{\"start\":\"47\",\"end\":\"47\",\"count\":47,\"create\":true},\"wp_revslider_layer_animations\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_revslider_layer_animations_bkp\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_revslider_navigations\":{\"start\":\"2\",\"end\":\"2\",\"count\":2,\"create\":true},\"wp_revslider_navigations_bkp\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_revslider_sliders\":{\"start\":\"4\",\"end\":\"4\",\"count\":4,\"create\":true},\"wp_revslider_sliders_bkp\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_revslider_slides\":{\"start\":\"14\",\"end\":\"14\",\"count\":14,\"create\":true},\"wp_revslider_slides_bkp\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_revslider_static_slides\":{\"start\":\"4\",\"end\":\"4\",\"count\":4,\"create\":true},\"wp_revslider_static_slides_bkp\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_sgpb_subscribers\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_sgpb_subscription_error_log\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_smush_dir_images\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_snippets\":{\"start\":\"4\",\"end\":\"4\",\"count\":4,\"create\":true},\"wp_tcm_email_hash\":{\"start\":\"1\",\"end\":\"1\",\"count\":1,\"create\":true},\"wp_tcm_logs\":{\"start\":\"2\",\"end\":\"2\",\"count\":2,\"create\":true},\"wp_td_fields\":{\"start\":\"14\",\"end\":\"14\",\"count\":14,\"create\":true},\"wp_td_groups\":{\"start\":\"3\",\"end\":\"3\",\"count\":3,\"create\":true},\"wp_termmeta\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_terms\":{\"start\":\"148\",\"end\":\"148\",\"count\":148,\"create\":true},\"wp_term_relationships\":{\"start\":\"397\",\"end\":\"397\",\"count\":397,\"create\":true},\"wp_term_taxonomy\":{\"start\":\"148\",\"end\":\"148\",\"count\":148,\"create\":true},\"wp_vxcf_hubspot\":{\"start\":\"6\",\"end\":\"6\",\"count\":6,\"create\":true},\"wp_vxcf_hubspot_accounts\":{\"start\":\"2\",\"end\":\"2\",\"count\":2,\"create\":true},\"wp_vxcf_hubspot_log\":{\"start\":\"3376\",\"end\":\"3376\",\"count\":3376,\"create\":true},\"wp_wc_comments_subscription\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wc_feedback_forms\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wc_follow_users\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wc_phrases\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wc_users_rated\":{\"start\":\"9\",\"end\":\"9\",\"count\":9,\"create\":true},\"wp_wc_users_voted\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpfm_backup\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza\":{\"start\":\"1\",\"end\":\"1\",\"count\":1,\"create\":true},\"wp_wpgmza_categories\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_category_maps\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_circles\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_maps\":{\"start\":\"1\",\"end\":\"1\",\"count\":1,\"create\":true},\"wp_wpgmza_polygon\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_polylines\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpgmza_rectangles\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wpr_rucss_resources\":{\"start\":\"119\",\"end\":\"119\",\"count\":119,\"create\":true},\"wp_wpr_rucss_used_css\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_wp_phpmyadmin_extension__errors_log\":{\"start\":\"0\",\"end\":\"0\",\"count\":0,\"create\":true},\"wp_yoast_indexable\":{\"start\":\"1340\",\"end\":\"1340\",\"count\":1340,\"create\":true},\"wp_yoast_indexable_hierarchy\":{\"start\":\"917\",\"end\":\"917\",\"count\":917,\"create\":true},\"wp_yoast_migrations\":{\"start\":\"25\",\"end\":\"25\",\"count\":25,\"create\":true},\"wp_yoast_primary_term\":{\"start\":\"49\",\"end\":\"49\",\"count\":49,\"create\":true},\"wp_yoast_prominent_words\":{\"start\":\"946\",\"end\":\"946\",\"count\":946,\"create\":true},\"wp_yoast_seo_links\":{\"start\":\"328\",\"end\":\"328\",\"count\":328,\"create\":true},\"wp_yoast_seo_meta\":{\"start\":\"610\",\"end\":\"610\",\"count\":610,\"create\":true}}}},\"upload_infos\":[{\"storage_id\":\"-2\",\"archive_offset\":0,\"copied_installer\":true,\"copied_archive\":true,\"progress\":0,\"num_failures\":0,\"failed\":false,\"cancelled\":false,\"upload_id\":null,\"failure_count\":0,\"data\":\"\",\"data2\":\"\",\"has_started\":true,\"status_message_details\":\"\",\"started_timestamp\":1653085371,\"stopped_timestamp\":1653085372}],\"active_storage_id\":-2,\"template_id\":4}'),(6,'20220615_translucent','98398e6cd2c967732836_20220615151735',100,'2022-06-15 11:20:52','robert','{\"Created\":\"2022-06-15 15:17:35\",\"Version\":\"4.5.4\",\"VersionWP\":\"5.5.9\",\"VersionDB\":\"10.5.8\",\"VersionPHP\":\"7.4.12\",\"VersionOS\":\"Linux\",\"ID\":6,\"Name\":\"20220615_translucent\",\"Hash\":\"98398e6cd2c967732836_20220615151735\",\"NameHash\":\"20220615_translucent_98398e6cd2c967732836_20220615151735\",\"Type\":0,\"notes\":\"The default template.\",\"StorePath\":\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\\/tmp\",\"StoreURL\":\"https:\\/\\/translucent.local\\/wp-content\\/backups-dup-pro\\/\",\"ScanFile\":\"20220615_translucent_98398e6cd2c967732836_20220615151735_scan.json\",\"timer_start\":1655306468.23319,\"Runtime\":\"275.753 sec.\",\"ExeSize\":\"113.21KB\",\"ZipSize\":\"457.93MB\",\"Brand\":\"Default\",\"Brand_ID\":-2,\"ziparchive_mode\":0,\"Archive\":{\"ExportOnlyDB\":0,\"FilterDirs\":\"\",\"FilterExts\":\"\",\"FilterFiles\":\"\",\"FilterDirsAll\":[\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\",\"\\/bitnami\\/wordpress\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/storage\",\"\\/bitnami\\/wordpress\\/wp-content\\/plugins\\/really-simple-captcha\\/tmp\",\"\\/bitnami\\/wordpress\\/wp-content\\/plugins\\/wordfence\\/tmp\",\"\\/var\\/www\\/dfr\\/translucent\\/.opcache\",\"\\/var\\/www\\/dfr\\/translucent\\/.tmb\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/ai1wm-backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/backups-dup-lite\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/backups-dup-pro\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/backupwordpress\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/bps-backup\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/cache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/content\\/cache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/contents\\/cache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/infinitewp\\/backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/managewp\\/backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/old-cache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/updraft\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/aiowps_backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/backup-guard\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/backupbuddy_backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/backupbuddy_temp\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/ithemes-security\\/backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/mainwp\\/backup\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/pb_backupbuddy\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/snapshots\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/sucuri\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/wp-clone\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/wp_all_backup\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/wpbackitup_backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/wfcache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/wishlist-backup\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/wpvividbackups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-snapshots\"],\"FilterExtsAll\":[],\"FilterFilesAll\":[\".DS_Store\",\"\\/var\\/www\\/dfr\\/translucent\\/.htaccess\",\"\\/var\\/www\\/dfr\\/translucent\\/.user.ini\",\"\\/var\\/www\\/dfr\\/translucent\\/php.ini\",\"\\/var\\/www\\/dfr\\/translucent\\/web.config\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-config.php\",\"dbcache\",\"debug_log\",\"error_log\",\"objectcache\",\"pgcache\",\"ws_ftp.log\"],\"FilterOn\":0,\"FilterNames\":false,\"File\":\"20220615_translucent_98398e6cd2c967732836_20220615151735_archive.zip\",\"Format\":\"ZIP\",\"PackDir\":\"\",\"Size\":480170369,\"Dirs\":null,\"DirCount\":5289,\"RecursiveLinks\":[],\"Files\":null,\"FileCount\":42302,\"file_count\":47591,\"FilterInfo\":{\"Dirs\":{\"Warning\":[],\"AddonSites\":[],\"Size\":[],\"Core\":[],\"Global\":[],\"Instance\":[],\"Unreadable\":[]},\"Files\":{\"Warning\":[],\"Size\":[],\"Core\":[],\"Global\":[],\"Instance\":[],\"Unreadable\":[]},\"Exts\":{\"Core\":[],\"Global\":[],\"Instance\":[],\"Unreadable\":[]},\"TreeSize\":null,\"TreeWarning\":null},\"ListDelimiter\":\"\\n\",\"throttleDelayInUs\":0},\"Multisite\":{\"FilterSites\":\"\"},\"Installer\":{\"File\":\"20220615_translucent_98398e6cd2c967732836_20220615151735_installer.php\",\"Size\":115930,\"OptsSecureOn\":0,\"passowrd\":\"fXbEI8wVjSUcgsVoWJ8fdY8mogV9FHhDrDX4Hg+cf6FYVaEvO3bpme4mrET06AUwuPhVifo4bpWBEvq0kFV3ZQ==\",\"OptsSecurePass\":\"\",\"OptsSkipScan\":0,\"OptsDBHost\":\"\",\"OptsDBName\":\"\",\"OptsDBUser\":\"\",\"OptsCPNLHost\":\"\",\"OptsCPNLUser\":\"\",\"OptsCPNLPass\":\"\",\"OptsCPNLEnable\":0,\"OptsCPNLConnect\":false,\"OptsCPNLDBAction\":\"create\",\"OptsCPNLDBHost\":\"\",\"OptsCPNLDBName\":\"\",\"OptsCPNLDBUser\":\"\",\"numFilesAdded\":0,\"numDirsAdded\":0},\"Database\":{\"info\":{\"buildMode\":\"PHPCHUNKING\",\"charSetList\":[\"utf8mb4\",\"utf8\"],\"collationList\":[\"utf8_general_ci\",\"utf8mb4_unicode_520_ci\",\"utf8mb4_unicode_ci\"],\"engineList\":[\"InnoDB\",\"MyISAM\"],\"isTablesUpperCase\":0,\"isNameUpperCase\":0,\"name\":\"bitnami_wordpress\",\"tablesBaseCount\":79,\"tablesFinalCount\":79,\"muFilteredTableCount\":0,\"tablesRowCount\":42384,\"tablesSizeOnDisk\":44967372,\"tablesList\":{\"wp_actionscheduler_actions\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":147456},\"wp_actionscheduler_claims\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_actionscheduler_groups\":{\"inaccurateRows\":0,\"insertedRows\":1,\"size\":32768},\"wp_actionscheduler_logs\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_aioseo_notifications\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":81920},\"wp_aioseo_posts\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_commentmeta\":{\"inaccurateRows\":9,\"insertedRows\":10,\"size\":49152},\"wp_comments\":{\"inaccurateRows\":92,\"insertedRows\":94,\"size\":163840},\"wp_duplicator_pro_entities\":{\"inaccurateRows\":5,\"insertedRows\":5,\"size\":32768},\"wp_duplicator_pro_packages\":{\"inaccurateRows\":5,\"insertedRows\":6,\"size\":278528},\"wp_imagify_files\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":98304},\"wp_imagify_folders\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_links\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_litespeed_img_optm\":{\"inaccurateRows\":5,\"insertedRows\":5,\"size\":114688},\"wp_litespeed_optimizer\":{\"inaccurateRows\":39,\"insertedRows\":39,\"size\":114688},\"wp_mail_bank\":{\"inaccurateRows\":6,\"insertedRows\":6,\"size\":2196},\"wp_mail_bank_logs\":{\"inaccurateRows\":3,\"insertedRows\":3,\"size\":3340},\"wp_mail_bank_meta\":{\"inaccurateRows\":4,\"insertedRows\":4,\"size\":4140},\"wp_options\":{\"inaccurateRows\":876,\"insertedRows\":876,\"size\":4767744},\"wp_postmeta\":{\"inaccurateRows\":30946,\"insertedRows\":31067,\"size\":9879552},\"wp_posts\":{\"inaccurateRows\":1652,\"insertedRows\":1706,\"size\":10141696},\"wp_redirection_404\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":65536},\"wp_redirection_groups\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":49152},\"wp_redirection_items\":{\"inaccurateRows\":4,\"insertedRows\":4,\"size\":114688},\"wp_redirection_logs\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":98304},\"wp_revslider_css\":{\"inaccurateRows\":109,\"insertedRows\":109,\"size\":147456},\"wp_revslider_css_bkp\":{\"inaccurateRows\":47,\"insertedRows\":47,\"size\":32768},\"wp_revslider_layer_animations\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_revslider_layer_animations_bkp\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_revslider_navigations\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":16384},\"wp_revslider_navigations_bkp\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_revslider_sliders\":{\"inaccurateRows\":3,\"insertedRows\":5,\"size\":81920},\"wp_revslider_sliders_bkp\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_revslider_slides\":{\"inaccurateRows\":18,\"insertedRows\":18,\"size\":1605632},\"wp_revslider_slides_bkp\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_revslider_static_slides\":{\"inaccurateRows\":3,\"insertedRows\":5,\"size\":32768},\"wp_revslider_static_slides_bkp\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_sgpb_subscribers\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_sgpb_subscription_error_log\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_smush_dir_images\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_snippets\":{\"inaccurateRows\":4,\"insertedRows\":4,\"size\":16384},\"wp_tcm_email_hash\":{\"inaccurateRows\":0,\"insertedRows\":1,\"size\":16384},\"wp_tcm_logs\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":32768},\"wp_td_fields\":{\"inaccurateRows\":14,\"insertedRows\":14,\"size\":16384},\"wp_td_groups\":{\"inaccurateRows\":3,\"insertedRows\":3,\"size\":16384},\"wp_termmeta\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_terms\":{\"inaccurateRows\":135,\"insertedRows\":152,\"size\":49152},\"wp_term_relationships\":{\"inaccurateRows\":364,\"insertedRows\":416,\"size\":32768},\"wp_term_taxonomy\":{\"inaccurateRows\":142,\"insertedRows\":152,\"size\":49152},\"wp_usermeta\":{\"inaccurateRows\":435,\"insertedRows\":435,\"size\":163840},\"wp_users\":{\"inaccurateRows\":11,\"insertedRows\":12,\"size\":65536},\"wp_vxcf_hubspot\":{\"inaccurateRows\":6,\"insertedRows\":6,\"size\":32768},\"wp_vxcf_hubspot_accounts\":{\"inaccurateRows\":2,\"insertedRows\":2,\"size\":16384},\"wp_vxcf_hubspot_log\":{\"inaccurateRows\":3176,\"insertedRows\":3379,\"size\":4816896},\"wp_wc_comments_subscription\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":81920},\"wp_wc_feedback_forms\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":49152},\"wp_wc_follow_users\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":147456},\"wp_wc_phrases\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_wc_users_rated\":{\"inaccurateRows\":6,\"insertedRows\":9,\"size\":49152},\"wp_wc_users_voted\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":98304},\"wp_wpfm_backup\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza\":{\"inaccurateRows\":0,\"insertedRows\":1,\"size\":16384},\"wp_wpgmza_categories\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_category_maps\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_circles\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_maps\":{\"inaccurateRows\":0,\"insertedRows\":1,\"size\":16384},\"wp_wpgmza_polygon\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_polylines\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpgmza_rectangles\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":16384},\"wp_wpr_rucss_resources\":{\"inaccurateRows\":119,\"insertedRows\":119,\"size\":7798784},\"wp_wpr_rucss_used_css\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":81920},\"wp_wp_phpmyadmin_extension__errors_log\":{\"inaccurateRows\":0,\"insertedRows\":0,\"size\":32768},\"wp_yoast_indexable\":{\"inaccurateRows\":1354,\"insertedRows\":1354,\"size\":1916928},\"wp_yoast_indexable_hierarchy\":{\"inaccurateRows\":929,\"insertedRows\":929,\"size\":163840},\"wp_yoast_migrations\":{\"inaccurateRows\":22,\"insertedRows\":25,\"size\":32768},\"wp_yoast_primary_term\":{\"inaccurateRows\":54,\"insertedRows\":54,\"size\":49152},\"wp_yoast_prominent_words\":{\"inaccurateRows\":912,\"insertedRows\":966,\"size\":180224},\"wp_yoast_seo_links\":{\"inaccurateRows\":285,\"insertedRows\":329,\"size\":98304},\"wp_yoast_seo_meta\":{\"inaccurateRows\":579,\"insertedRows\":610,\"size\":49152}},\"varLowerCaseTables\":\"0\",\"dbEngine\":\"MariaDB\",\"version\":\"10.5.8\",\"versionComment\":\"Source distribution\",\"viewCount\":0,\"procCount\":0,\"funcCount\":0,\"triggerList\":[]},\"Type\":\"MySQL\",\"Size\":20334314,\"File\":\"20220615_translucent_98398e6cd2c967732836_20220615151735_database.sql\",\"FilterTables\":\"\",\"FilterOn\":0,\"prefixFilter\":false,\"prefixSubFilter\":false,\"DBMode\":\"PHPCHUNKING\",\"Compatible\":\"\",\"Comments\":\"Source distribution\",\"dbStorePathPublic\":\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\\/tmp\\/20220615_translucent_98398e6cd2c967732836_20220615151735_database.sql\"},\"Status\":\"100.0\",\"schedule_id\":-1,\"build_progress\":{\"thread_start_time\":0,\"initialized\":false,\"installer_built\":false,\"archive_started\":false,\"archive_start_time\":0,\"archive_has_database\":false,\"archive_built\":false,\"database_script_built\":false,\"failed\":false,\"next_archive_file_index\":0,\"next_archive_dir_index\":0,\"retries\":0,\"current_build_mode\":2,\"current_build_compression\":true,\"dupCreate\":null,\"dupExpand\":null,\"warnings\":[]},\"db_build_progress\":{\"tablesToProcess\":[],\"validationStage1\":false,\"doneInit\":false,\"doneFiltering\":false,\"doneCreates\":false,\"completed\":false,\"startTime\":0,\"wasInterrupted\":false,\"errorOut\":false,\"failureCount\":0,\"countCheckData\":{\"impreciseTotalRows\":0,\"countTotal\":0,\"tables\":[]}},\"upload_infos\":[{\"storage_id\":\"-2\",\"archive_offset\":0,\"copied_installer\":true,\"copied_archive\":true,\"progress\":0,\"num_failures\":0,\"failed\":false,\"cancelled\":false,\"upload_id\":null,\"failure_count\":0,\"data\":\"\",\"data2\":\"\",\"has_started\":true,\"status_message_details\":\"\",\"started_timestamp\":1655306744,\"stopped_timestamp\":1655306745}],\"active_storage_id\":-2,\"template_id\":4}'); /*!40000 ALTER TABLE `wp_duplicator_pro_packages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_emcs_event_types` -- DROP TABLE IF EXISTS `wp_emcs_event_types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_emcs_event_types` ( `id` mediumint(9) NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` tinytext COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinytext COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_emcs_event_types` -- LOCK TABLES `wp_emcs_event_types` WRITE; /*!40000 ALTER TABLE `wp_emcs_event_types` DISABLE KEYS */; INSERT INTO `wp_emcs_event_types` VALUES (1,'TC Results - 60 min - TEKTeams','https://calendly.com/tc-results/tc-results-60-min-tekteams','tc-results-60-min-tekteams','1'),(2,'TC Results - 60 min - Scorecard','https://calendly.com/tc-results/tc-results-60-min-score','tc-results-60-min-score','1'),(3,'TC Results - 30 min','https://calendly.com/tc-results/tc-results-30-min','tc-results-30-min','1'),(4,'TC Results - 60 min','https://calendly.com/tc-results/60','60','1'); /*!40000 ALTER TABLE `wp_emcs_event_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_imagify_files` -- DROP TABLE IF EXISTS `wp_imagify_files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_imagify_files` ( `file_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `folder_id` bigint(20) unsigned NOT NULL DEFAULT 0, `file_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `path` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `hash` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `modified` tinyint(1) unsigned NOT NULL DEFAULT 0, `width` smallint(2) unsigned NOT NULL DEFAULT 0, `height` smallint(2) unsigned NOT NULL DEFAULT 0, `original_size` int(4) unsigned NOT NULL DEFAULT 0, `optimized_size` int(4) unsigned DEFAULT NULL, `percent` smallint(2) unsigned DEFAULT NULL, `optimization_level` tinyint(1) unsigned DEFAULT NULL, `status` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `error` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`file_id`), UNIQUE KEY `path` (`path`), KEY `folder_id` (`folder_id`), KEY `optimization_level` (`optimization_level`), KEY `status` (`status`), KEY `modified` (`modified`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_imagify_files` -- LOCK TABLES `wp_imagify_files` WRITE; /*!40000 ALTER TABLE `wp_imagify_files` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_imagify_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_imagify_folders` -- DROP TABLE IF EXISTS `wp_imagify_folders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_imagify_folders` ( `folder_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `path` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `active` tinyint(1) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`folder_id`), UNIQUE KEY `path` (`path`), KEY `active` (`active`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_imagify_folders` -- LOCK TABLES `wp_imagify_folders` WRITE; /*!40000 ALTER TABLE `wp_imagify_folders` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_imagify_folders` 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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci 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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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_litespeed_img_optm` -- DROP TABLE IF EXISTS `wp_litespeed_img_optm`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_litespeed_img_optm` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT 0, `optm_status` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `src` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `srcpath_md5` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `src_md5` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `root_id` int(11) NOT NULL DEFAULT 0, `src_filesize` int(11) NOT NULL DEFAULT 0, `target_filesize` int(11) NOT NULL DEFAULT 0, `target_saved` int(11) NOT NULL DEFAULT 0, `webp_filesize` int(11) NOT NULL DEFAULT 0, `webp_saved` int(11) NOT NULL DEFAULT 0, `server_info` text COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `post_id_2` (`post_id`,`srcpath_md5`), KEY `post_id` (`post_id`), KEY `optm_status` (`optm_status`), KEY `root_id` (`root_id`), KEY `src_md5` (`src_md5`), KEY `srcpath_md5` (`srcpath_md5`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_litespeed_img_optm` -- LOCK TABLES `wp_litespeed_img_optm` WRITE; /*!40000 ALTER TABLE `wp_litespeed_img_optm` DISABLE KEYS */; INSERT INTO `wp_litespeed_img_optm` VALUES (1,772,'pulled','2019/03/mockup_cbb_mobile.png','21533f1444c082b10a6a166b584853bb','144d382962f19d4306ac558bff3fdd62',0,453385,96948,356437,0,0,'a:4:{s:6:\"server\";s:36:\"https://us1.wp.api.litespeedtech.com\";s:2:\"id\";s:5:\"4FNN7\";s:7:\"ori_md5\";s:32:\"4e44a532537c2c8eacc436e97f293afd\";s:3:\"ori\";s:67:\"https://us1.wp.api.litespeedtech.com/dl/20190307/c87160/7448947.png\";}'),(2,772,'pulled','2019/03/mockup_cbb_mobile-150x150.png','0fccb28a840a16d8f232b09222ef3775','70534dfded8de6bff6440aa97c14913b',0,22154,6996,15158,0,0,'a:4:{s:6:\"server\";s:36:\"https://us1.wp.api.litespeedtech.com\";s:2:\"id\";s:5:\"4FNN8\";s:7:\"ori_md5\";s:32:\"6261b51d67d1c9340bfdd1681c3f09da\";s:3:\"ori\";s:67:\"https://us1.wp.api.litespeedtech.com/dl/20190307/c87160/7448948.png\";}'),(3,772,'pulled','2019/03/mockup_cbb_mobile-300x292.png','0351b1eeb20aa2747f728fe10b7c6e22','6a0abe5090d8efaf6d86c65b95219435',0,62404,15991,46413,0,0,'a:4:{s:6:\"server\";s:36:\"https://us1.wp.api.litespeedtech.com\";s:2:\"id\";s:5:\"4FNN9\";s:7:\"ori_md5\";s:32:\"e485bd20d08bab163286de313fb3b95e\";s:3:\"ori\";s:67:\"https://us1.wp.api.litespeedtech.com/dl/20190307/c87160/7448949.png\";}'),(4,772,'pulled','2019/03/mockup_cbb_mobile-768x747.png','e9f2fc6273d5a921ab4ad55c624887d5','e1228321196afec9652f3aba76af6eae',0,319018,78149,240869,0,0,'a:4:{s:6:\"server\";s:36:\"https://us1.wp.api.litespeedtech.com\";s:2:\"id\";s:5:\"4FNNA\";s:7:\"ori_md5\";s:32:\"e8b418cb5ea46f14bee235311315c649\";s:3:\"ori\";s:67:\"https://us1.wp.api.litespeedtech.com/dl/20190307/c87160/7448950.png\";}'),(5,772,'pulled','2019/03/mockup_cbb_mobile-500x500.png','9452a1a0598d42ad6fa4fdb790ed548a','44757ac2485c1699479252d6525bddf6',0,155095,38949,116146,0,0,'a:4:{s:6:\"server\";s:36:\"https://us1.wp.api.litespeedtech.com\";s:2:\"id\";s:5:\"4FNNB\";s:7:\"ori_md5\";s:32:\"fea79a702269369b6dc4bd4520932049\";s:3:\"ori\";s:67:\"https://us1.wp.api.litespeedtech.com/dl/20190307/c87160/7448951.png\";}'); /*!40000 ALTER TABLE `wp_litespeed_img_optm` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_litespeed_optimizer` -- DROP TABLE IF EXISTS `wp_litespeed_optimizer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_litespeed_optimizer` ( `id` int(11) NOT NULL AUTO_INCREMENT, `hash_name` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'hash.filetype', `src` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'full url array set', `dateline` int(11) NOT NULL, `refer` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The container page url', PRIMARY KEY (`id`), UNIQUE KEY `hash_name` (`hash_name`), KEY `dateline` (`dateline`) ) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_litespeed_optimizer` -- LOCK TABLES `wp_litespeed_optimizer` WRITE; /*!40000 ALTER TABLE `wp_litespeed_optimizer` DISABLE KEYS */; INSERT INTO `wp_litespeed_optimizer` VALUES (1,'5fc90.css','a:12:{i:0;s:74:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/animate.css\";i:1;s:96:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/css/owl.carousel.css\";i:2;s:91:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.css\";i:3;s:97:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.css\";i:4;s:66:\"http://localhost:8082/wp-content/themes/translucent/css/styles.css\";i:5;s:70:\"http://localhost:8082/wp-includes/css/dist/block-library/style.min.css\";i:6;s:79:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/css/styles.css\";i:7;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/wpgmza_style.css\";i:8;s:80:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/font-awesome.min.css\";i:9;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/common.css\";i:10;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.css\";i:11;s:85:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal-default-theme.css\";}',1551968776,'http://localhost:8082/'),(2,'7756a.js','a:4:{i:0;s:65:\"http://localhost:8082/wp-includes/js/jquery/jquery-migrate.min.js\";i:1;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/wpgmza_data.js\";i:2;s:114:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/viewport-checker/dist/jquery.viewportchecker.min.js\";i:3;s:78:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/plax/js/plax.js\";}',1551968776,'http://localhost:8082/'),(3,'c9951.js','a:21:{i:0;s:54:\"http://localhost:8082/wp-includes/js/underscore.min.js\";i:1;s:52:\"http://localhost:8082/wp-includes/js/backbone.min.js\";i:2;s:55:\"http://localhost:8082/wp-includes/js/api-request.min.js\";i:3;s:50:\"http://localhost:8082/wp-includes/js/wp-api.min.js\";i:4;s:78:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/js/scripts.js\";i:5;s:52:\"http://localhost:8082/wp-includes/js/wp-embed.min.js\";i:6;s:81:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayerOptions.js\";i:7;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayer.js\";i:8;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/jquery.dataTables.min.js\";i:9;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/jquery-cookie.js\";i:10;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.min.js\";i:11;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/spectrum.js\";i:12;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/v8/wp-google-maps.min.js\";i:13;s:69:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/wpgmaps.js\";i:14;s:85:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/validate.js\";i:15;s:82:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/masks.js\";i:16;s:98:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/js/owl.carousel.min.js\";i:17;s:90:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.js\";i:18;s:107:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.concat.min.js\";i:19;s:66:\"http://localhost:8082/wp-content/themes/translucent/js/main.min.js\";i:20;s:75:\"http://localhost:8082/wp-content/plugins/litespeed-cache/js/lazyload.min.js\";}',1551968776,'http://localhost:8082/'),(4,'c5b7c.css','a:12:{i:0;s:74:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/animate.css\";i:1;s:96:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/css/owl.carousel.css\";i:2;s:91:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.css\";i:3;s:97:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.css\";i:4;s:66:\"http://localhost:8082/wp-content/themes/translucent/css/styles.css\";i:5;s:70:\"http://localhost:8082/wp-includes/css/dist/block-library/style.min.css\";i:6;s:79:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/css/styles.css\";i:7;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/wpgmza_style.css\";i:8;s:80:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/font-awesome.min.css\";i:9;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/common.css\";i:10;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.css\";i:11;s:85:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal-default-theme.css\";}',1551969053,'http://localhost:8082/'),(5,'b0db4.js','a:4:{i:0;s:65:\"http://localhost:8082/wp-includes/js/jquery/jquery-migrate.min.js\";i:1;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/wpgmza_data.js\";i:2;s:114:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/viewport-checker/dist/jquery.viewportchecker.min.js\";i:3;s:78:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/plax/js/plax.js\";}',1551969053,'http://localhost:8082/'),(6,'cd84d.js','a:21:{i:0;s:54:\"http://localhost:8082/wp-includes/js/underscore.min.js\";i:1;s:52:\"http://localhost:8082/wp-includes/js/backbone.min.js\";i:2;s:55:\"http://localhost:8082/wp-includes/js/api-request.min.js\";i:3;s:50:\"http://localhost:8082/wp-includes/js/wp-api.min.js\";i:4;s:78:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/js/scripts.js\";i:5;s:52:\"http://localhost:8082/wp-includes/js/wp-embed.min.js\";i:6;s:81:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayerOptions.js\";i:7;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayer.js\";i:8;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/jquery.dataTables.min.js\";i:9;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/jquery-cookie.js\";i:10;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.min.js\";i:11;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/spectrum.js\";i:12;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/v8/wp-google-maps.min.js\";i:13;s:69:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/wpgmaps.js\";i:14;s:85:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/validate.js\";i:15;s:82:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/masks.js\";i:16;s:98:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/js/owl.carousel.min.js\";i:17;s:90:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.js\";i:18;s:107:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.concat.min.js\";i:19;s:66:\"http://localhost:8082/wp-content/themes/translucent/js/main.min.js\";i:20;s:75:\"http://localhost:8082/wp-content/plugins/litespeed-cache/js/lazyload.min.js\";}',1551969053,'http://localhost:8082/'),(7,'a566f.css','a:12:{i:0;s:74:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/animate.css\";i:1;s:96:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/css/owl.carousel.css\";i:2;s:91:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.css\";i:3;s:97:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.css\";i:4;s:66:\"http://localhost:8082/wp-content/themes/translucent/css/styles.css\";i:5;s:70:\"http://localhost:8082/wp-includes/css/dist/block-library/style.min.css\";i:6;s:79:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/css/styles.css\";i:7;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/wpgmza_style.css\";i:8;s:80:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/font-awesome.min.css\";i:9;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/common.css\";i:10;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.css\";i:11;s:85:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal-default-theme.css\";}',1551969391,'http://localhost:8082/'),(8,'41570.js','a:2:{i:0;s:65:\"http://localhost:8082/wp-includes/js/jquery/jquery-migrate.min.js\";i:1;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/wpgmza_data.js\";}',1551969392,'http://localhost:8082/'),(9,'c05ba.js','a:23:{i:0;s:54:\"http://localhost:8082/wp-includes/js/underscore.min.js\";i:1;s:52:\"http://localhost:8082/wp-includes/js/backbone.min.js\";i:2;s:55:\"http://localhost:8082/wp-includes/js/api-request.min.js\";i:3;s:50:\"http://localhost:8082/wp-includes/js/wp-api.min.js\";i:4;s:78:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/js/scripts.js\";i:5;s:52:\"http://localhost:8082/wp-includes/js/wp-embed.min.js\";i:6;s:81:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayerOptions.js\";i:7;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayer.js\";i:8;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/jquery.dataTables.min.js\";i:9;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/jquery-cookie.js\";i:10;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.min.js\";i:11;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/spectrum.js\";i:12;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/v8/wp-google-maps.min.js\";i:13;s:69:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/wpgmaps.js\";i:14;s:114:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/viewport-checker/dist/jquery.viewportchecker.min.js\";i:15;s:78:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/plax/js/plax.js\";i:16;s:85:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/validate.js\";i:17;s:82:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/masks.js\";i:18;s:98:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/js/owl.carousel.min.js\";i:19;s:90:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.js\";i:20;s:107:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.concat.min.js\";i:21;s:66:\"http://localhost:8082/wp-content/themes/translucent/js/main.min.js\";i:22;s:75:\"http://localhost:8082/wp-content/plugins/litespeed-cache/js/lazyload.min.js\";}',1551969392,'http://localhost:8082/'),(10,'4fff0.css','a:12:{i:0;s:74:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/animate.css\";i:1;s:96:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/css/owl.carousel.css\";i:2;s:91:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.css\";i:3;s:97:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.css\";i:4;s:66:\"http://localhost:8082/wp-content/themes/translucent/css/styles.css\";i:5;s:70:\"http://localhost:8082/wp-includes/css/dist/block-library/style.min.css\";i:6;s:79:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/css/styles.css\";i:7;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/wpgmza_style.css\";i:8;s:80:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/font-awesome.min.css\";i:9;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/common.css\";i:10;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.css\";i:11;s:85:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal-default-theme.css\";}',1551969550,'http://localhost:8082/'),(11,'9a9ab.js','a:2:{i:0;s:65:\"http://localhost:8082/wp-includes/js/jquery/jquery-migrate.min.js\";i:1;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/wpgmza_data.js\";}',1551969550,'http://localhost:8082/'),(12,'53eba.js','a:23:{i:0;s:54:\"http://localhost:8082/wp-includes/js/underscore.min.js\";i:1;s:52:\"http://localhost:8082/wp-includes/js/backbone.min.js\";i:2;s:55:\"http://localhost:8082/wp-includes/js/api-request.min.js\";i:3;s:50:\"http://localhost:8082/wp-includes/js/wp-api.min.js\";i:4;s:78:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/js/scripts.js\";i:5;s:52:\"http://localhost:8082/wp-includes/js/wp-embed.min.js\";i:6;s:81:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayerOptions.js\";i:7;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayer.js\";i:8;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/jquery.dataTables.min.js\";i:9;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/jquery-cookie.js\";i:10;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.min.js\";i:11;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/spectrum.js\";i:12;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/v8/wp-google-maps.min.js\";i:13;s:69:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/wpgmaps.js\";i:14;s:114:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/viewport-checker/dist/jquery.viewportchecker.min.js\";i:15;s:78:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/plax/js/plax.js\";i:16;s:85:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/validate.js\";i:17;s:82:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/masks.js\";i:18;s:98:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/js/owl.carousel.min.js\";i:19;s:90:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.js\";i:20;s:107:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.concat.min.js\";i:21;s:66:\"http://localhost:8082/wp-content/themes/translucent/js/main.min.js\";i:22;s:75:\"http://localhost:8082/wp-content/plugins/litespeed-cache/js/lazyload.min.js\";}',1551969550,'http://localhost:8082/'),(13,'f2c77.css','a:11:{i:0;s:74:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/animate.css\";i:1;s:96:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/css/owl.carousel.css\";i:2;s:91:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.css\";i:3;s:97:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.css\";i:4;s:66:\"http://localhost:8082/wp-content/themes/translucent/css/styles.css\";i:5;s:70:\"http://localhost:8082/wp-includes/css/dist/block-library/style.min.css\";i:6;s:79:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/css/styles.css\";i:7;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/wpgmza_style.css\";i:8;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/common.css\";i:9;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.css\";i:10;s:85:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal-default-theme.css\";}',1551969845,'http://localhost:8082/'),(14,'2a601.css','a:11:{i:0;s:74:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/animate.css\";i:1;s:96:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/css/owl.carousel.css\";i:2;s:91:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.css\";i:3;s:97:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.css\";i:4;s:66:\"http://localhost:8082/wp-content/themes/translucent/css/styles.css\";i:5;s:70:\"http://localhost:8082/wp-includes/css/dist/block-library/style.min.css\";i:6;s:79:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/css/styles.css\";i:7;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/wpgmza_style.css\";i:8;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/common.css\";i:9;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.css\";i:10;s:85:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal-default-theme.css\";}',1551969922,'http://localhost:8082/'),(15,'96e64.js','a:2:{i:0;s:65:\"http://localhost:8082/wp-includes/js/jquery/jquery-migrate.min.js\";i:1;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/wpgmza_data.js\";}',1551969922,'http://localhost:8082/'),(16,'45aef.js','a:23:{i:0;s:114:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/viewport-checker/dist/jquery.viewportchecker.min.js\";i:1;s:78:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/plax/js/plax.js\";i:2;s:54:\"http://localhost:8082/wp-includes/js/underscore.min.js\";i:3;s:52:\"http://localhost:8082/wp-includes/js/backbone.min.js\";i:4;s:55:\"http://localhost:8082/wp-includes/js/api-request.min.js\";i:5;s:50:\"http://localhost:8082/wp-includes/js/wp-api.min.js\";i:6;s:78:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/js/scripts.js\";i:7;s:52:\"http://localhost:8082/wp-includes/js/wp-embed.min.js\";i:8;s:81:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayerOptions.js\";i:9;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayer.js\";i:10;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/jquery.dataTables.min.js\";i:11;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/jquery-cookie.js\";i:12;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.min.js\";i:13;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/spectrum.js\";i:14;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/v8/wp-google-maps.min.js\";i:15;s:69:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/wpgmaps.js\";i:16;s:85:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/validate.js\";i:17;s:82:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/masks.js\";i:18;s:98:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/js/owl.carousel.min.js\";i:19;s:90:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.js\";i:20;s:107:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.concat.min.js\";i:21;s:66:\"http://localhost:8082/wp-content/themes/translucent/js/main.min.js\";i:22;s:75:\"http://localhost:8082/wp-content/plugins/litespeed-cache/js/lazyload.min.js\";}',1551969922,'http://localhost:8082/'),(17,'6a190.css','a:11:{i:0;s:74:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/animate.css\";i:1;s:96:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/css/owl.carousel.css\";i:2;s:91:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.css\";i:3;s:97:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.css\";i:4;s:66:\"http://localhost:8082/wp-content/themes/translucent/css/styles.css\";i:5;s:70:\"http://localhost:8082/wp-includes/css/dist/block-library/style.min.css\";i:6;s:79:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/css/styles.css\";i:7;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/wpgmza_style.css\";i:8;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/common.css\";i:9;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.css\";i:10;s:85:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal-default-theme.css\";}',1551970255,'http://localhost:8082/'),(18,'0eb2a.js','a:2:{i:0;s:65:\"http://localhost:8082/wp-includes/js/jquery/jquery-migrate.min.js\";i:1;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/wpgmza_data.js\";}',1551970255,'http://localhost:8082/'),(19,'9ca9d.js','a:22:{i:0;s:114:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/viewport-checker/dist/jquery.viewportchecker.min.js\";i:1;s:54:\"http://localhost:8082/wp-includes/js/underscore.min.js\";i:2;s:52:\"http://localhost:8082/wp-includes/js/backbone.min.js\";i:3;s:55:\"http://localhost:8082/wp-includes/js/api-request.min.js\";i:4;s:50:\"http://localhost:8082/wp-includes/js/wp-api.min.js\";i:5;s:78:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/js/scripts.js\";i:6;s:52:\"http://localhost:8082/wp-includes/js/wp-embed.min.js\";i:7;s:81:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayerOptions.js\";i:8;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayer.js\";i:9;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/jquery.dataTables.min.js\";i:10;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/jquery-cookie.js\";i:11;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.min.js\";i:12;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/spectrum.js\";i:13;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/v8/wp-google-maps.min.js\";i:14;s:69:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/wpgmaps.js\";i:15;s:85:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/validate.js\";i:16;s:82:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/masks.js\";i:17;s:98:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/js/owl.carousel.min.js\";i:18;s:90:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.js\";i:19;s:107:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.concat.min.js\";i:20;s:66:\"http://localhost:8082/wp-content/themes/translucent/js/main.min.js\";i:21;s:75:\"http://localhost:8082/wp-content/plugins/litespeed-cache/js/lazyload.min.js\";}',1551970255,'http://localhost:8082/'),(20,'0674f.js','a:3:{i:0;s:65:\"http://localhost:8082/wp-includes/js/jquery/jquery-migrate.min.js\";i:1;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/wpgmza_data.js\";i:2;s:114:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/viewport-checker/dist/jquery.viewportchecker.min.js\";}',1551970354,'http://localhost:8082/min/jquery.viewportchecker.min.js.map'),(21,'2200d.js','a:21:{i:0;s:54:\"http://localhost:8082/wp-includes/js/underscore.min.js\";i:1;s:52:\"http://localhost:8082/wp-includes/js/backbone.min.js\";i:2;s:55:\"http://localhost:8082/wp-includes/js/api-request.min.js\";i:3;s:50:\"http://localhost:8082/wp-includes/js/wp-api.min.js\";i:4;s:78:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/js/scripts.js\";i:5;s:52:\"http://localhost:8082/wp-includes/js/wp-embed.min.js\";i:6;s:81:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayerOptions.js\";i:7;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayer.js\";i:8;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/jquery.dataTables.min.js\";i:9;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/jquery-cookie.js\";i:10;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.min.js\";i:11;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/spectrum.js\";i:12;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/v8/wp-google-maps.min.js\";i:13;s:69:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/wpgmaps.js\";i:14;s:85:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/validate.js\";i:15;s:82:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/masks.js\";i:16;s:98:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/js/owl.carousel.min.js\";i:17;s:90:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.js\";i:18;s:107:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.concat.min.js\";i:19;s:66:\"http://localhost:8082/wp-content/themes/translucent/js/main.min.js\";i:20;s:75:\"http://localhost:8082/wp-content/plugins/litespeed-cache/js/lazyload.min.js\";}',1551970354,'http://localhost:8082/min/jquery.viewportchecker.min.js.map'),(22,'b154c.css','a:11:{i:0;s:74:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/animate.css\";i:1;s:96:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/css/owl.carousel.css\";i:2;s:91:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.css\";i:3;s:97:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.css\";i:4;s:66:\"http://localhost:8082/wp-content/themes/translucent/css/styles.css\";i:5;s:70:\"http://localhost:8082/wp-includes/css/dist/block-library/style.min.css\";i:6;s:79:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/css/styles.css\";i:7;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/wpgmza_style.css\";i:8;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/common.css\";i:9;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.css\";i:10;s:85:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal-default-theme.css\";}',1551970400,'http://localhost:8082/'),(23,'2b91d.js','a:3:{i:0;s:65:\"http://localhost:8082/wp-includes/js/jquery/jquery-migrate.min.js\";i:1;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/wpgmza_data.js\";i:2;s:114:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/viewport-checker/dist/jquery.viewportchecker.min.js\";}',1551970400,'http://localhost:8082/'),(24,'5200d.js','a:21:{i:0;s:54:\"http://localhost:8082/wp-includes/js/underscore.min.js\";i:1;s:52:\"http://localhost:8082/wp-includes/js/backbone.min.js\";i:2;s:55:\"http://localhost:8082/wp-includes/js/api-request.min.js\";i:3;s:50:\"http://localhost:8082/wp-includes/js/wp-api.min.js\";i:4;s:78:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/js/scripts.js\";i:5;s:52:\"http://localhost:8082/wp-includes/js/wp-embed.min.js\";i:6;s:81:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayerOptions.js\";i:7;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayer.js\";i:8;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/jquery.dataTables.min.js\";i:9;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/jquery-cookie.js\";i:10;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.min.js\";i:11;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/spectrum.js\";i:12;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/v8/wp-google-maps.min.js\";i:13;s:69:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/wpgmaps.js\";i:14;s:85:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/validate.js\";i:15;s:82:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/masks.js\";i:16;s:98:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/js/owl.carousel.min.js\";i:17;s:90:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.js\";i:18;s:107:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.concat.min.js\";i:19;s:66:\"http://localhost:8082/wp-content/themes/translucent/js/main.min.js\";i:20;s:75:\"http://localhost:8082/wp-content/plugins/litespeed-cache/js/lazyload.min.js\";}',1551970400,'http://localhost:8082/'),(25,'5503c.js','a:4:{i:0;s:65:\"http://localhost:8082/wp-includes/js/jquery/jquery-migrate.min.js\";i:1;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/wpgmza_data.js\";i:2;s:114:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/viewport-checker/dist/jquery.viewportchecker.min.js\";i:3;s:76:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/typewriter.js\";}',1551970768,'http://localhost:8082/'),(26,'5b52f.js','a:5:{i:0;s:65:\"http://localhost:8082/wp-includes/js/jquery/jquery-migrate.min.js\";i:1;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/wpgmza_data.js\";i:2;s:71:\"http://localhost:8082/wp-content/themes/translucent/js/jquery-ui.min.js\";i:3;s:114:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/viewport-checker/dist/jquery.viewportchecker.min.js\";i:4;s:76:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/typewriter.js\";}',1551970857,'http://localhost:8082/'),(27,'7417a.css','a:11:{i:0;s:74:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/animate.css\";i:1;s:96:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/css/owl.carousel.css\";i:2;s:91:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.css\";i:3;s:97:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.css\";i:4;s:66:\"http://localhost:8082/wp-content/themes/translucent/css/styles.css\";i:5;s:70:\"http://localhost:8082/wp-includes/css/dist/block-library/style.min.css\";i:6;s:79:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/css/styles.css\";i:7;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/wpgmza_style.css\";i:8;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/common.css\";i:9;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.css\";i:10;s:85:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal-default-theme.css\";}',1551970941,'http://localhost:8082/min/jquery.viewportchecker.min.js.map'),(28,'98902.js','a:5:{i:0;s:65:\"http://localhost:8082/wp-includes/js/jquery/jquery-migrate.min.js\";i:1;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/wpgmza_data.js\";i:2;s:71:\"http://localhost:8082/wp-content/themes/translucent/js/jquery-ui.min.js\";i:3;s:114:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/viewport-checker/dist/jquery.viewportchecker.min.js\";i:4;s:76:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/typewriter.js\";}',1551970942,'http://localhost:8082/min/jquery.viewportchecker.min.js.map'),(29,'e17f0.js','a:21:{i:0;s:54:\"http://localhost:8082/wp-includes/js/underscore.min.js\";i:1;s:52:\"http://localhost:8082/wp-includes/js/backbone.min.js\";i:2;s:55:\"http://localhost:8082/wp-includes/js/api-request.min.js\";i:3;s:50:\"http://localhost:8082/wp-includes/js/wp-api.min.js\";i:4;s:78:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/js/scripts.js\";i:5;s:52:\"http://localhost:8082/wp-includes/js/wp-embed.min.js\";i:6;s:81:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayerOptions.js\";i:7;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayer.js\";i:8;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/jquery.dataTables.min.js\";i:9;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/jquery-cookie.js\";i:10;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.min.js\";i:11;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/spectrum.js\";i:12;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/v8/wp-google-maps.min.js\";i:13;s:69:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/wpgmaps.js\";i:14;s:85:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/validate.js\";i:15;s:82:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/masks.js\";i:16;s:98:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/js/owl.carousel.min.js\";i:17;s:90:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.js\";i:18;s:107:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.concat.min.js\";i:19;s:66:\"http://localhost:8082/wp-content/themes/translucent/js/main.min.js\";i:20;s:75:\"http://localhost:8082/wp-content/plugins/litespeed-cache/js/lazyload.min.js\";}',1551970942,'http://localhost:8082/min/jquery.viewportchecker.min.js.map'),(30,'ff128.css','a:7:{i:0;s:74:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/animate.css\";i:1;s:96:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/css/owl.carousel.css\";i:2;s:91:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.css\";i:3;s:97:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.css\";i:4;s:66:\"http://localhost:8082/wp-content/themes/translucent/css/styles.css\";i:5;s:70:\"http://localhost:8082/wp-includes/css/dist/block-library/style.min.css\";i:6;s:79:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/css/styles.css\";}',1551970996,'http://localhost:8082/digital-transformation/'),(31,'cbe5d.js','a:13:{i:0;s:54:\"http://localhost:8082/wp-includes/js/underscore.min.js\";i:1;s:52:\"http://localhost:8082/wp-includes/js/backbone.min.js\";i:2;s:55:\"http://localhost:8082/wp-includes/js/api-request.min.js\";i:3;s:50:\"http://localhost:8082/wp-includes/js/wp-api.min.js\";i:4;s:78:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/js/scripts.js\";i:5;s:52:\"http://localhost:8082/wp-includes/js/wp-embed.min.js\";i:6;s:85:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/validate.js\";i:7;s:82:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/masks.js\";i:8;s:98:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/js/owl.carousel.min.js\";i:9;s:90:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.js\";i:10;s:107:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.concat.min.js\";i:11;s:66:\"http://localhost:8082/wp-content/themes/translucent/js/main.min.js\";i:12;s:75:\"http://localhost:8082/wp-content/plugins/litespeed-cache/js/lazyload.min.js\";}',1551970996,'http://localhost:8082/digital-transformation/'),(32,'9822e.css','a:11:{i:0;s:74:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/animate.css\";i:1;s:96:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/css/owl.carousel.css\";i:2;s:91:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.css\";i:3;s:97:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.css\";i:4;s:66:\"http://localhost:8082/wp-content/themes/translucent/css/styles.css\";i:5;s:70:\"http://localhost:8082/wp-includes/css/dist/block-library/style.min.css\";i:6;s:79:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/css/styles.css\";i:7;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/wpgmza_style.css\";i:8;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/common.css\";i:9;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.css\";i:10;s:85:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal-default-theme.css\";}',1551976662,'http://localhost:8082/'),(33,'40e40.js','a:5:{i:0;s:65:\"http://localhost:8082/wp-includes/js/jquery/jquery-migrate.min.js\";i:1;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/wpgmza_data.js\";i:2;s:71:\"http://localhost:8082/wp-content/themes/translucent/js/jquery-ui.min.js\";i:3;s:114:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/viewport-checker/dist/jquery.viewportchecker.min.js\";i:4;s:76:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/typewriter.js\";}',1551976662,'http://localhost:8082/'),(34,'a056d.js','a:21:{i:0;s:54:\"http://localhost:8082/wp-includes/js/underscore.min.js\";i:1;s:52:\"http://localhost:8082/wp-includes/js/backbone.min.js\";i:2;s:55:\"http://localhost:8082/wp-includes/js/api-request.min.js\";i:3;s:50:\"http://localhost:8082/wp-includes/js/wp-api.min.js\";i:4;s:78:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/js/scripts.js\";i:5;s:52:\"http://localhost:8082/wp-includes/js/wp-embed.min.js\";i:6;s:81:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayerOptions.js\";i:7;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayer.js\";i:8;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/jquery.dataTables.min.js\";i:9;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/jquery-cookie.js\";i:10;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.min.js\";i:11;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/spectrum.js\";i:12;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/v8/wp-google-maps.min.js\";i:13;s:69:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/wpgmaps.js\";i:14;s:85:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/validate.js\";i:15;s:82:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/masks.js\";i:16;s:98:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/js/owl.carousel.min.js\";i:17;s:90:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.js\";i:18;s:107:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.concat.min.js\";i:19;s:66:\"http://localhost:8082/wp-content/themes/translucent/js/main.min.js\";i:20;s:75:\"http://localhost:8082/wp-content/plugins/litespeed-cache/js/lazyload.min.js\";}',1551976663,'http://localhost:8082/'),(35,'1ce68.css','a:11:{i:0;s:74:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/animate.css\";i:1;s:96:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/css/owl.carousel.css\";i:2;s:91:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.css\";i:3;s:97:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.css\";i:4;s:66:\"http://localhost:8082/wp-content/themes/translucent/css/styles.css\";i:5;s:70:\"http://localhost:8082/wp-includes/css/dist/block-library/style.min.css\";i:6;s:79:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/css/styles.css\";i:7;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/wpgmza_style.css\";i:8;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/common.css\";i:9;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.css\";i:10;s:85:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal-default-theme.css\";}',1551977369,'http://localhost:8082/'),(36,'e1caa.js','a:5:{i:0;s:65:\"http://localhost:8082/wp-includes/js/jquery/jquery-migrate.min.js\";i:1;s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/wpgmza_data.js\";i:2;s:71:\"http://localhost:8082/wp-content/themes/translucent/js/jquery-ui.min.js\";i:3;s:114:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/viewport-checker/dist/jquery.viewportchecker.min.js\";i:4;s:76:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/typewriter.js\";}',1551977369,'http://localhost:8082/'),(37,'d66fa.js','a:21:{i:0;s:54:\"http://localhost:8082/wp-includes/js/underscore.min.js\";i:1;s:52:\"http://localhost:8082/wp-includes/js/backbone.min.js\";i:2;s:55:\"http://localhost:8082/wp-includes/js/api-request.min.js\";i:3;s:50:\"http://localhost:8082/wp-includes/js/wp-api.min.js\";i:4;s:78:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/js/scripts.js\";i:5;s:52:\"http://localhost:8082/wp-includes/js/wp-embed.min.js\";i:6;s:81:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayerOptions.js\";i:7;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayer.js\";i:8;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/jquery.dataTables.min.js\";i:9;s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/jquery-cookie.js\";i:10;s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.min.js\";i:11;s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/spectrum.js\";i:12;s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/v8/wp-google-maps.min.js\";i:13;s:69:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/wpgmaps.js\";i:14;s:85:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/validate.js\";i:15;s:82:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/masks.js\";i:16;s:98:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/js/owl.carousel.min.js\";i:17;s:90:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.js\";i:18;s:107:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.concat.min.js\";i:19;s:66:\"http://localhost:8082/wp-content/themes/translucent/js/main.min.js\";i:20;s:75:\"http://localhost:8082/wp-content/plugins/litespeed-cache/js/lazyload.min.js\";}',1551977369,'http://localhost:8082/'),(38,'51ca1.css','a:7:{i:0;s:74:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/animate.css\";i:1;s:96:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/css/owl.carousel.css\";i:2;s:91:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.css\";i:3;s:97:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.css\";i:4;s:66:\"http://localhost:8082/wp-content/themes/translucent/css/styles.css\";i:5;s:70:\"http://localhost:8082/wp-includes/css/dist/block-library/style.min.css\";i:6;s:79:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/css/styles.css\";}',1551977454,'http://localhost:8082/about-us/'),(39,'26157.js','a:13:{i:0;s:54:\"http://localhost:8082/wp-includes/js/underscore.min.js\";i:1;s:52:\"http://localhost:8082/wp-includes/js/backbone.min.js\";i:2;s:55:\"http://localhost:8082/wp-includes/js/api-request.min.js\";i:3;s:50:\"http://localhost:8082/wp-includes/js/wp-api.min.js\";i:4;s:78:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/js/scripts.js\";i:5;s:52:\"http://localhost:8082/wp-includes/js/wp-embed.min.js\";i:6;s:85:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/validate.js\";i:7;s:82:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/validation/masks.js\";i:8;s:98:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/owl-carousel/js/owl.carousel.min.js\";i:9;s:90:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.js\";i:10;s:107:\"http://localhost:8082/wp-content/themes/translucent/js/plugins/malihu/jquery.mCustomScrollbar.concat.min.js\";i:11;s:66:\"http://localhost:8082/wp-content/themes/translucent/js/main.min.js\";i:12;s:75:\"http://localhost:8082/wp-content/plugins/litespeed-cache/js/lazyload.min.js\";}',1551977454,'http://localhost:8082/about-us/'); /*!40000 ALTER TABLE `wp_litespeed_optimizer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mail_bank` -- DROP TABLE IF EXISTS `wp_mail_bank`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mail_bank` ( `id` int(11) NOT NULL AUTO_INCREMENT, `type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `parent_id` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mail_bank` -- LOCK TABLES `wp_mail_bank` WRITE; /*!40000 ALTER TABLE `wp_mail_bank` DISABLE KEYS */; INSERT INTO `wp_mail_bank` VALUES (1,'email_configuration',0),(2,'email_logs',0),(3,'settings',0),(4,'collation_type',0),(5,'notifications',0),(6,'roles_and_capabilities',0); /*!40000 ALTER TABLE `wp_mail_bank` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mail_bank_logs` -- DROP TABLE IF EXISTS `wp_mail_bank_logs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mail_bank_logs` ( `id` int(11) NOT NULL AUTO_INCREMENT, `email_to` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cc` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `bcc` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `subject` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sender_name` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sender_email` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `debug_mode` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `debugging_output` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `timestamp` int(20) DEFAULT NULL, `status` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mail_bank_logs` -- LOCK TABLES `wp_mail_bank_logs` WRITE; /*!40000 ALTER TABLE `wp_mail_bank_logs` DISABLE KEYS */; INSERT INTO `wp_mail_bank_logs` VALUES (1,'contato@gabithomaz.com.br','','','[Translucent] Your site has updated to WordPress 5.0.3','Howdy! Your site at http://localhost:8082 has been updated automatically to WordPress 5.0.3.\n\nNo further action is needed on your part. For more on version 5.0.3, see the About WordPress screen:\nhttp://localhost:8082/wp-admin/about.php\n\nIf you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help.\nhttps://wordpress.org/support/\n\nThe WordPress Team\n','Translucent','contato@gabithomaz.com.br','enable','\'\' does not match the expected structure for a DNS hostname, \'\' does not appear to be a valid URI hostname, \'\' does not appear to be a valid local network name',1547118849,'Not Sent'),(2,'contato@gabithomaz.com.br','','','Translucent \"[your-subject]\"','From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Translucent (http://localhost:8082)','Translucent','contato@gabithomaz.com.br','enable','No property exists by the name \'_hostname\'',1551734156,'Not Sent'),(3,'contato@gabithomaz.com.br','','','Test Email - Mail Bank','This is a demo Test Email for Email Setup - Mail Bank','Translucent','results@localhost','enable','Could not instantiate mail function.',1551891225,'Not Sent'); /*!40000 ALTER TABLE `wp_mail_bank_logs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_mail_bank_meta` -- DROP TABLE IF EXISTS `wp_mail_bank_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_mail_bank_meta` ( `id` int(11) NOT NULL AUTO_INCREMENT, `meta_id` int(11) NOT NULL, `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_mail_bank_meta` -- LOCK TABLES `wp_mail_bank_meta` WRITE; /*!40000 ALTER TABLE `wp_mail_bank_meta` DISABLE KEYS */; INSERT INTO `wp_mail_bank_meta` VALUES (1,1,'email_configuration','a:23:{s:13:\"email_address\";s:17:\"results@localhost\";s:8:\"reply_to\";s:0:\"\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:7:\"headers\";s:0:\"\";s:11:\"mailer_type\";s:17:\"php_mail_function\";s:25:\"sender_name_configuration\";s:8:\"override\";s:11:\"sender_name\";s:11:\"Translucent\";s:24:\"from_email_configuration\";s:8:\"override\";s:12:\"sender_email\";s:17:\"results@localhost\";s:8:\"hostname\";s:0:\"\";s:4:\"port\";i:587;s:8:\"enc_type\";s:3:\"tls\";s:9:\"auth_type\";s:5:\"login\";s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:16:\"sendgrid_api_key\";s:0:\"\";s:15:\"mailgun_api_key\";s:0:\"\";s:19:\"mailgun_domain_name\";s:0:\"\";s:8:\"username\";s:25:\"contato@gabithomaz.com.br\";s:14:\"automatic_mail\";s:1:\"1\";s:8:\"password\";s:0:\"\";s:12:\"redirect_uri\";s:45:\"http://localhost:8082/wp-admin/admin-ajax.php\";}'),(2,3,'settings','a:7:{s:23:\"automatic_plugin_update\";s:7:\"disable\";s:14:\"fetch_settings\";s:15:\"individual_site\";s:10:\"debug_mode\";s:6:\"enable\";s:26:\"remove_tables_at_uninstall\";s:7:\"disable\";s:18:\"monitor_email_logs\";s:6:\"enable\";s:15:\"auto_clear_logs\";s:7:\"disable\";s:17:\"delete_logs_after\";s:4:\"1day\";}'),(3,5,'notifications','a:6:{s:12:\"notification\";s:7:\"disable\";s:20:\"notification_service\";s:5:\"email\";s:26:\"notification_email_address\";s:25:\"contato@gabithomaz.com.br\";s:17:\"pushover_user_key\";s:0:\"\";s:18:\"pushover_app_token\";s:0:\"\";s:14:\"slack_web_hook\";s:0:\"\";}'),(4,6,'roles_and_capabilities','a:10:{s:22:\"roles_and_capabilities\";s:11:\"1,1,1,0,0,0\";s:27:\"show_mail_bank_top_bar_menu\";s:6:\"enable\";s:30:\"others_full_control_capability\";s:1:\"0\";s:24:\"administrator_privileges\";s:19:\"1,1,1,1,1,1,1,1,1,1\";s:17:\"author_privileges\";s:19:\"0,0,1,0,0,0,0,0,0,0\";s:17:\"editor_privileges\";s:19:\"0,0,1,0,0,0,1,0,0,0\";s:22:\"contributor_privileges\";s:19:\"0,0,0,0,0,0,1,0,0,0\";s:21:\"subscriber_privileges\";s:19:\"0,0,0,0,0,0,0,0,0,0\";s:22:\"other_roles_privileges\";s:19:\"0,0,0,0,0,0,0,0,0,0\";s:12:\"capabilities\";a:7:{i:0;s:14:\"manage_options\";i:1;s:12:\"edit_plugins\";i:2;s:10:\"edit_posts\";i:3;s:13:\"publish_posts\";i:4;s:13:\"publish_pages\";i:5;s:10:\"edit_pages\";i:6;s:4:\"read\";}}'); /*!40000 ALTER TABLE `wp_mail_bank_meta` 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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`), KEY `autoload` (`autoload`) ) ENGINE=InnoDB AUTO_INCREMENT=683187 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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://translucent.mesoishop.com/','yes'),(2,'home','https://translucent.mesoishop.com','yes'),(3,'blogname','DEV SERVER - Translucent','yes'),(4,'blogdescription','We Partner with companies to build business value through software innovation.','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','robert@translucentcomputing.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','4','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','4','yes'),(23,'date_format','Y-m-d','yes'),(24,'time_format','H:i','yes'),(25,'links_updated_date_format','j \\d\\e F \\d\\e Y, H:i','yes'),(26,'comment_moderation','','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:5:{i:0;s:98:\"/var/www/dfr/translucent/wp-content/themes/translucent/template-parts/content-tek-teams-banner.php\";i:1;s:64:\"/var/www/dfr/translucent/wp-content/themes/translucent/style.css\";i:2;s:70:\"/var/www/dfr/translucent/wp-content/themes/translucent/css/styles.less\";i:3;s:69:\"/var/www/dfr/translucent/wp-content/themes/translucent/css/styles.css\";i:4;s:69:\"/var/www/dfr/translucent/wp-content/themes/translucent/css/shared.css\";}','no'),(44,'comment_registration','','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','49752','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','retro','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','','yes'),(70,'close_comments_days_old','15','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','1','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:5:{i:0;i:3608;i:1;i:3652;i:2;i:3666;i:3;i:3670;i:4;i:3688;}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:1;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:2:{i:1;a:0:{}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:12:{s:41:\"google-maps-widget/google-maps-widget.php\";a:2:{i:0;s:3:\"GMW\";i:1;s:9:\"uninstall\";}s:35:\"litespeed-cache/litespeed-cache.php\";s:53:\"LiteSpeed_Cache_Activation::uninstall_litespeed_cache\";s:27:\"wp-super-cache/wp-cache.php\";s:22:\"wpsupercache_uninstall\";s:27:\"autoptimize/autoptimize.php\";s:29:\"autoptimizeMain::on_uninstall\";s:31:\"cache-enabler/cache-enabler.php\";a:2:{i:0;s:13:\"Cache_Enabler\";i:1;s:12:\"on_uninstall\";}s:27:\"redirection/redirection.php\";a:2:{i:0;s:17:\"Redirection_Admin\";i:1;s:16:\"plugin_uninstall\";}s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:35:\"monsterinsights_lite_uninstall_hook\";s:43:\"google-analytics-dashboard-for-wp/gadwp.php\";s:32:\"exactmetrics_lite_uninstall_hook\";s:29:\"webp-express/webp-express.php\";a:2:{i:0;s:28:\"\\WebPExpress\\PluginUninstall\";i:1;s:9:\"uninstall\";}s:33:\"duplicator-pro/duplicator-pro.php\";a:2:{i:0;s:24:\"Duplicator\\Core\\Unistall\";i:1;s:8:\"unistall\";}s:24:\"wordpress-seo/wp-seo.php\";s:14:\"__return_false\";s:27:\"wp-optimize/wp-optimize.php\";s:21:\"wpo_uninstall_actions\";}','no'),(82,'timezone_string','America/Toronto','yes'),(83,'page_for_posts','922','yes'),(84,'page_on_front','1924','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','','yes'),(93,'initial_db_version','38590','yes'),(94,'wp_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";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:12:\"access_zopim\";b:1;s:11:\"tve-use-tcm\";b:1;s:10:\"tve-use-td\";b:1;s:12:\"tve-edit-cpt\";b:1;s:18:\"read_wpdiscuz_form\";b:1;s:19:\"read_wpdiscuz_forms\";b:1;s:18:\"edit_wpdiscuz_form\";b:1;s:19:\"edit_wpdiscuz_forms\";b:1;s:26:\"edit_others_wpdiscuz_forms\";b:1;s:29:\"edit_published_wpdiscuz_forms\";b:1;s:22:\"publish_wpdiscuz_forms\";b:1;s:20:\"delete_wpdiscuz_form\";b:1;s:21:\"delete_wpdiscuz_forms\";b:1;s:28:\"delete_others_wpdiscuz_forms\";b:1;s:29:\"delete_private_wpdiscuz_forms\";b:1;s:31:\"delete_published_wpdiscuz_forms\";b:1;s:10:\"copy_posts\";b:1;s:9:\"read_post\";b:1;s:24:\"read_private_sgpb_popups\";b:1;s:15:\"edit_sgpb_popup\";b:1;s:16:\"edit_sgpb_popups\";b:1;s:23:\"edit_others_sgpb_popups\";b:1;s:26:\"edit_published_sgpb_popups\";b:1;s:19:\"publish_sgpb_popups\";b:1;s:18:\"delete_sgpb_popups\";b:1;s:25:\"delete_others_sgpb_popups\";b:1;s:26:\"delete_private_sgpb_popups\";b:1;s:25:\"delete_private_sgpb_popup\";b:1;s:28:\"delete_published_sgpb_popups\";b:1;s:19:\"sgpb_manage_options\";b:1;s:18:\"manage_popup_terms\";b:1;s:29:\"manage_popup_categories_terms\";b:1;s:23:\"vxcf_hubspot_read_feeds\";b:1;s:23:\"vxcf_hubspot_edit_feeds\";b:1;s:22:\"vxcf_hubspot_read_logs\";b:1;s:26:\"vxcf_hubspot_read_settings\";b:1;s:26:\"vxcf_hubspot_edit_settings\";b:1;s:24:\"vxcf_hubspot_send_to_crm\";b:1;s:24:\"vxcf_hubspot_export_logs\";b:1;s:25:\"vxcf_hubspot_read_license\";b:1;s:22:\"vxcf_hubspot_uninstall\";b:1;s:23:\"vx_crmperks_view_addons\";b:1;s:23:\"vx_crmperks_edit_addons\";b:1;s:21:\"rocket_manage_options\";b:1;s:18:\"rocket_purge_cache\";b:1;s:18:\"rocket_purge_posts\";b:1;s:18:\"rocket_purge_terms\";b:1;s:18:\"rocket_purge_users\";b:1;s:20:\"rocket_purge_opcache\";b:1;s:29:\"rocket_purge_cloudflare_cache\";b:1;s:25:\"rocket_purge_sucuri_cache\";b:1;s:20:\"rocket_preload_cache\";b:1;s:30:\"rocket_regenerate_critical_css\";b:1;s:24:\"rocket_remove_unused_css\";b:1;s:20:\"wpseo_manage_options\";b:1;s:22:\"wpseo_manage_redirects\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:41:{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:11:\"tve-use-tcm\";b:1;s:10:\"tve-use-td\";b:1;s:12:\"tve-edit-cpt\";b:1;s:10:\"copy_posts\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:22:\"wpseo_manage_redirects\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:13:{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:12:\"tve-edit-cpt\";b:1;s:11:\"tve-use-tcm\";b:1;s:10:\"tve-use-td\";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:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:43:{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:11:\"tve-use-tcm\";b:1;s:10:\"tve-use-td\";b:1;s:12:\"tve-edit-cpt\";b:1;s:10:\"copy_posts\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;s:22:\"wpseo_manage_redirects\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:41:{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:11:\"tve-use-tcm\";b:1;s:10:\"tve-use-td\";b:1;s:12:\"tve-edit-cpt\";b:1;s:10:\"copy_posts\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:22:\"wpseo_manage_redirects\";b:1;}}}','yes'),(95,'fresh_site','0','yes'),(96,'WPLANG','','yes'),(97,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(98,'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'),(99,'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'),(100,'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'),(101,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:4:{i:0;s:12:\"categories-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:8:\"search-2\";}s:9:\"sidebar-1\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(103,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'cron','a:35:{i:1663322481;a:1:{s:24:\"wp_fastest_cache_Preload\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:15:\"everyfiveminute\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1663323508;a:1:{s:26:\"rediscache_discard_metrics\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1663324674;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:1663324718;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:1663324790;a:2:{s:18:\"w3_pgcache_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:18:\"w3_pgcache_cleanup\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:22:\"w3_objectcache_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:22:\"w3_objectcache_cleanup\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1663324791;a:1:{s:18:\"w3_dbcache_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:18:\"w3_dbcache_cleanup\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1663333157;a:1:{s:33:\"updraftplus_clean_temporary_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1663339118;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1663339149;a:2:{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:1663345042;a:1:{s:20:\"sgpbGetNotifications\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663350802;a:1:{s:17:\"thrive_token_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663354800;a:1:{s:20:\"imagify_rating_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:1663357589;a:1:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1663357624;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:1663357983;a:1:{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;}}}i:1663375155;a:1:{s:23:\"wphb_minify_clear_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663377297;a:1:{s:15:\"wphb_clear_logs\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663378873;a:1:{s:41:\"wpseo-premium-prominent-words-recalculate\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663383496;a:1:{s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663385623;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663387200;a:2:{s:14:\"updraft_backup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:23:\"updraft_backup_database\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663394400;a:1:{s:18:\"imagify_sync_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663402676;a:1:{s:26:\"wpo_minify_purge_old_cache\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663402677;a:1:{s:29:\"wpo_smush_clear_backup_images\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663404868;a:1:{s:19:\"wpo_purge_old_cache\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:19:\"wpo_purge_old_cache\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663407590;a:1:{s:17:\"w3_minify_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:17:\"w3_minify_cleanup\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1663469343;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:1663769077;a:1:{s:27:\"rocket_cache_dir_size_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:1663797891;a:1:{s:32:\"exactmetrics_usage_tracking_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1663815316;a:1:{s:18:\"wpseo_onpage_fetch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1663863443;a:1:{s:24:\"sgpbGetBannerContentOnce\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:12:\"sgpb_banners\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1663876024;a:1:{s:16:\"wpseo_ryte_fetch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1663906676;a:1:{s:21:\"wpo_weekly_cron_tasks\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1663920000;a:1:{s:46:\"imagify_update_library_size_calculations_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(113,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1546526366;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(127,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:31:\"robert@translucentcomputing.com\";s:7:\"version\";s:5:\"5.5.9\";s:9:\"timestamp\";i:1653791936;}','no'),(146,'recently_activated','a:2:{s:27:\"autoptimize/autoptimize.php\";i:1663310528;s:33:\"social-warfare/social-warfare.php\";i:1663130573;}','yes'),(147,'current_theme','Personalizado','yes'),(148,'theme_mods_translucent','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:14:\"menu_principal\";i:2;s:12:\"menu_interna\";i:1028;s:9:\"menu_2021\";i:1028;}s:18:\"custom_css_post_id\";i:1885;}','yes'),(149,'theme_switched','','yes'),(152,'db_upgraded','','yes'),(172,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(179,'acf_version','5.12.2','yes'),(184,'wpcf7','a:6:{s:7:\"version\";s:5:\"5.5.3\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1635539649;s:7:\"version\";s:5:\"5.5.2\";s:11:\"count_valid\";i:6;s:13:\"count_invalid\";i:0;}s:9:\"recaptcha\";a:1:{s:40:\"6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s\";s:40:\"6LcPxMsUAAAAAOmS3nVmqsRpdaSGilHyy3ma3R90\";}s:23:\"recaptcha_v2_v3_warning\";b:0;s:15:\"iqfix_recaptcha\";i:0;s:22:\"iqfix_recaptcha_source\";s:10:\"google.com\";}','yes'),(187,'mb_admin_notice','a:1:{s:15:\"two_week_review\";a:3:{s:5:\"start\";s:10:\"01/18/2019\";s:3:\"int\";i:7;s:9:\"dismissed\";i:1;}}','yes'),(188,'mail_bank_update_database','mail_bank_update_database','yes'),(189,'mail-bank-version-number','3.0.6','yes'),(192,'mail-bank-admin-email','patryk@localhost','yes'),(277,'mail_bank_mail_status','No property exists by the name \'_hostname\'','yes'),(278,'mail_bank_is_mail_sent','Not Sent','yes'),(320,'gmw_options','a:17:{s:6:\"sc_map\";s:3:\"gmw\";s:7:\"api_key\";s:39:\"AIzaSyDpRGCXAhu3Bm6TpRPS4Te-dfr4Ekw143U\";s:8:\"track_ga\";s:1:\"0\";s:14:\"include_jquery\";s:1:\"1\";s:17:\"include_gmaps_api\";s:1:\"1\";s:19:\"include_lightbox_js\";s:1:\"1\";s:20:\"include_lightbox_css\";s:1:\"1\";s:16:\"disable_tooltips\";s:1:\"0\";s:15:\"disable_sidebar\";s:1:\"0\";s:15:\"activation_code\";s:0:\"\";s:14:\"license_active\";s:0:\"\";s:15:\"license_expires\";s:0:\"\";s:12:\"license_type\";s:0:\"\";s:13:\"first_version\";s:4:\"4.05\";s:13:\"first_install\";d:1547227070;s:13:\"last_tracking\";b:0;s:17:\"first_install_gmt\";i:1547234270;}','yes'),(323,'widget_googlemapswidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(328,'WPGMZA_OTHER_SETTINGS','a:25:{s:30:\"wpgmza_settings_map_streetview\";s:3:\"yes\";s:24:\"wpgmza_settings_map_zoom\";s:3:\"yes\";s:23:\"wpgmza_settings_map_pan\";s:3:\"yes\";s:24:\"wpgmza_settings_map_type\";s:3:\"yes\";s:27:\"wpgmza_settings_marker_pull\";s:1:\"0\";s:18:\"wpgmza_maps_engine\";s:11:\"google-maps\";s:30:\"wpgmza_maps_engine_dialog_done\";b:1;s:24:\"wpgmza_gdpr_company_name\";s:11:\"Translucent\";s:29:\"wpgmza_gdpr_retention_purpose\";s:81:\"displaying map tiles, geocoding addresses and calculating and display directions.\";s:32:\"wpgmza_gdpr_notice_override_text\";s:0:\"\";s:32:\"wpgmza_load_engine_api_condition\";s:14:\"where-required\";s:15:\"use_fontawesome\";s:4:\"none\";s:34:\"wpgmza_settings_map_open_marker_by\";s:1:\"2\";s:17:\"wpgmza_custom_css\";s:0:\"\";s:16:\"wpgmza_custom_js\";s:0:\"\";s:28:\"wpgmza_settings_access_level\";s:14:\"manage_options\";s:26:\"wpgmza_store_locator_radii\";s:31:\"1,5,10,25,50,75,100,150,200,300\";s:26:\"wpgmza_google_maps_api_key\";s:39:\"AIzaSyC4wDG68G3W8kzOFRygtZIhkt7BU7XbalQ\";s:6:\"engine\";s:11:\"google-maps\";s:20:\"user_interface_style\";s:6:\"legacy\";s:41:\"wpgmza_always_include_engine_api_on_pages\";s:0:\"\";s:41:\"wpgmza_always_exclude_engine_api_on_pages\";s:0:\"\";s:26:\"wpgmza_marker_xml_location\";s:59:\"/var/www/dfr/translucent/wp-content/uploads/wp-google-maps/\";s:21:\"wpgmza_marker_xml_url\";s:67:\"https://translucentcomputing.com/wp-content/uploads/wp-google-maps/\";s:15:\"internal_engine\";s:11:\"atlas-novus\";}','yes'),(329,'wpgmza_temp_api','AIzaSyDo_fG7DXBOVvdhlrLa-PHREuFDpTklWhY','yes'),(330,'wpgmza_xml_location','/var/www/dfr/translucent/wp-content/uploads/wp-google-maps/','yes'),(331,'wpgmza_xml_url','https://translucentcomputing.com/wp-content/uploads/wp-google-maps/','yes'),(332,'wpgmza_db_version','9.0.10','yes'),(333,'wpgmaps_current_version','8.0.22','yes'),(334,'WPGM_V6_FIRST_TIME','1','yes'),(335,'widget_wpgmza_map_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(336,'WPGMZA_FIRST_TIME','8.0.22','yes'),(337,'wpgmza_stats','a:4:{s:15:\"list_maps_basic\";a:3:{s:5:\"views\";i:17;s:13:\"last_accessed\";s:19:\"2021-02-21 01:17:10\";s:14:\"first_accessed\";s:19:\"2019-01-11 19:25:20\";}s:9:\"dashboard\";a:3:{s:5:\"views\";i:22;s:13:\"last_accessed\";s:19:\"2020-01-15 15:32:38\";s:14:\"first_accessed\";s:19:\"2019-01-11 19:25:28\";}s:14:\"settings_basic\";a:3:{s:5:\"views\";i:15;s:13:\"last_accessed\";s:19:\"2020-01-15 17:33:01\";s:14:\"first_accessed\";s:19:\"2019-01-11 19:28:57\";}s:13:\"support_basic\";a:3:{s:5:\"views\";i:1;s:13:\"last_accessed\";s:19:\"2020-01-15 03:30:55\";s:14:\"first_accessed\";s:19:\"2020-01-15 03:30:55\";}}','yes'),(338,'wpgmza_google_maps_api_key','AIzaSyC4wDG68G3W8kzOFRygtZIhkt7BU7XbalQ','yes'),(339,'WPGMZA_SETTINGS','a:10:{s:24:\"map_default_starting_lat\";s:17:\"43.64115811164498\";s:24:\"map_default_starting_lng\";s:18:\"-79.37326108053253\";s:18:\"map_default_height\";s:3:\"600\";s:17:\"map_default_width\";s:3:\"100\";s:16:\"map_default_zoom\";i:16;s:20:\"map_default_max_zoom\";i:1;s:16:\"map_default_type\";i:1;s:21:\"map_default_alignment\";i:1;s:22:\"map_default_width_type\";s:2:\"\\%\";s:23:\"map_default_height_type\";s:2:\"px\";}','yes'),(669,'wpgmza_global_settings','{\"wpgmza_settings_map_streetview\":\"yes\",\"wpgmza_settings_map_zoom\":\"yes\",\"wpgmza_settings_map_pan\":\"yes\",\"wpgmza_settings_map_type\":\"yes\",\"wpgmza_settings_marker_pull\":\"0\",\"wpgmza_maps_engine\":\"google-maps\",\"wpgmza_maps_engine_dialog_done\":true,\"wpgmza_gdpr_company_name\":\"Translucent\",\"wpgmza_gdpr_retention_purpose\":\"displaying map tiles, geocoding addresses and calculating and display directions.\",\"wpgmza_gdpr_notice_override_text\":\"\",\"wpgmza_load_engine_api_condition\":\"where-required\",\"use_fontawesome\":\"none\",\"wpgmza_settings_map_open_marker_by\":\"2\",\"wpgmza_custom_css\":\"\",\"wpgmza_custom_js\":\"\",\"wpgmza_settings_access_level\":\"manage_options\",\"wpgmza_store_locator_radii\":\"1,5,10,25,50,75,100,150,200,300\",\"wpgmza_google_maps_api_key\":\"AIzaSyC4wDG68G3W8kzOFRygtZIhkt7BU7XbalQ\",\"engine\":\"google-maps\",\"user_interface_style\":\"legacy\",\"wpgmza_always_include_engine_api_on_pages\":\"\",\"wpgmza_always_exclude_engine_api_on_pages\":\"\",\"wpgmza_marker_xml_location\":\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/wp-google-maps\\/\",\"wpgmza_marker_xml_url\":\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/wp-google-maps\\/\",\"internal_engine\":\"atlas-novus\"}','yes'),(953,'update_email_configuration','a:23:{s:13:\"email_address\";s:17:\"results@localhost\";s:8:\"reply_to\";s:0:\"\";s:2:\"cc\";s:0:\"\";s:3:\"bcc\";s:0:\"\";s:7:\"headers\";s:0:\"\";s:11:\"mailer_type\";s:17:\"php_mail_function\";s:25:\"sender_name_configuration\";s:8:\"override\";s:11:\"sender_name\";s:11:\"Translucent\";s:24:\"from_email_configuration\";s:8:\"override\";s:12:\"sender_email\";s:17:\"results@localhost\";s:8:\"hostname\";s:0:\"\";s:4:\"port\";i:587;s:8:\"enc_type\";s:3:\"tls\";s:9:\"auth_type\";s:5:\"login\";s:9:\"client_id\";s:0:\"\";s:13:\"client_secret\";s:0:\"\";s:16:\"sendgrid_api_key\";s:0:\"\";s:15:\"mailgun_api_key\";s:0:\"\";s:19:\"mailgun_domain_name\";s:0:\"\";s:8:\"username\";s:25:\"contato@gabithomaz.com.br\";s:14:\"automatic_mail\";s:1:\"1\";s:8:\"password\";s:0:\"\";s:12:\"redirect_uri\";s:45:\"http://localhost:8082/wp-admin/admin-ajax.php\";}','yes'),(1008,'ossdl_off_cdn_url','http://localhost:8082','yes'),(1009,'ossdl_off_blog_url','http://localhost:8082','yes'),(1010,'ossdl_off_include_dirs','wp-content,wp-includes','yes'),(1011,'ossdl_off_exclude','.php','yes'),(1012,'ossdl_cname','','yes'),(1014,'wpsupercache_start','1551966724','yes'),(1015,'wpsupercache_count','0','yes'),(1016,'supercache_stats','a:3:{s:9:\"generated\";i:1553605283;s:10:\"supercache\";a:5:{s:7:\"expired\";i:0;s:6:\"cached\";i:0;s:5:\"fsize\";i:0;s:11:\"cached_list\";a:0:{}s:12:\"expired_list\";a:0:{}}s:7:\"wpcache\";a:5:{s:7:\"expired\";i:0;s:6:\"cached\";i:0;s:5:\"fsize\";i:0;s:11:\"cached_list\";a:0:{}s:12:\"expired_list\";a:0:{}}}','yes'),(1032,'litespeed-cache_uri_priv','','yes'),(1033,'litespeed-cache-drop_qs','','yes'),(1034,'litespeed-forced_cache_uri','','yes'),(1035,'litespeed-excludes_uri','','yes'),(1036,'litespeed-cache-exclude-cache-roles','a:0:{}','yes'),(1037,'litespeed-optm-css','','yes'),(1038,'litespeed-optm_excludes','','yes'),(1039,'litespeed-optm-js-defer-excludes','','yes'),(1040,'litespeed-cache-exclude-optimization-roles','a:0:{}','yes'),(1041,'litespeed-cache-dns_prefetch','','yes'),(1042,'litespeed-optm-ccss-separate_posttype','','yes'),(1043,'litespeed-optm-css-separate_uri','','yes'),(1044,'litespeed-media-lazy-img-excludes','','yes'),(1045,'litespeed-media-lazy-img-cls-excludes','','yes'),(1046,'litespeed-media-webp_attribute','img.src\ndiv.data-thumb\nimg.data-src\ndiv.data-large_image\nimg.retina_logo_url','yes'),(1047,'litespeed-cdn-ori_dir','wp-content\nwp-includes\n/min/','yes'),(1048,'litespeed-cache-cdn_mapping','a:1:{i:0;a:5:{s:3:\"url\";b:0;s:7:\"inc_img\";s:1:\"1\";s:7:\"inc_css\";s:1:\"1\";s:6:\"inc_js\";s:1:\"1\";s:8:\"filetype\";s:86:\".aac\n.css\n.eot\n.gif\n.jpeg\n.js\n.jpg\n.less\n.mp3\n.mp4\n.ogg\n.otf\n.pdf\n.png\n.svg\n.ttf\n.woff\";}}','yes'),(1049,'litespeed-adv-purge_all_hooks','switch_theme\nwp_create_nav_menu\nwp_update_nav_menu\nwp_delete_nav_menu\ncreate_term\nedit_terms\ndelete_term\nadd_link\nedit_link\ndelete_link','yes'),(1050,'litespeed-log_ignore_filters','gettext\ngettext_with_context\nget_the_terms\nget_term','yes'),(1051,'litespeed-log_ignore_part_filters','i18n\nlocale\nsettings\noption','yes'),(1052,'litespeed-crawler-as-uids','','yes'),(1053,'litespeed-crawler-cookies','a:0:{}','yes'),(1054,'litespeed-object_global_groups','users\nuserlogins\nusermeta\nuser_meta\nsite-transient\nsite-options\nsite-lookup\nblog-lookup\nblog-details\nrss\nglobal-posts\nblog-id-cache','yes'),(1055,'litespeed-object_non_persistent_groups','comment\ncounts\nplugins','yes'),(1056,'litespeed-cache-vary-group','','yes'),(1058,'litespeed-gui-summary','a:2:{s:24:\"banner_promo.new_version\";i:1552054947;s:12:\"banner_promo\";i:1552400547;}','yes'),(1059,'wp_litespeed_img_optm','2.9.4.1','yes'),(1060,'wp_litespeed_optimizer','2.9.4.1','yes'),(1063,'litespeed-setting-mode','1','yes'),(1076,'litespeed_api_cloud','https://us.wp.api.litespeedtech.com','yes'),(1077,'litespeed_api_key_hash','mdm25EwAXLdRx0He','yes'),(1078,'litespeed_api_key','mFVtUMUqoOLwqK1BjUf3YPXsdmiYqOPX','yes'),(1079,'litespeed_img_optm_summary','a:11:{s:5:\"level\";s:1:\"1\";s:6:\"credit\";s:3:\"100\";s:16:\"credit_recovered\";i:5;s:7:\"reduced\";i:0;s:12:\"reduced_webp\";s:1:\"0\";s:9:\"img_taken\";s:1:\"0\";s:12:\"fetch_failed\";s:1:\"0\";s:13:\"notify_failed\";s:1:\"0\";s:14:\"last_requested\";s:10:\"1551968938\";s:14:\"optm_time_cost\";s:1:\"0\";s:11:\"_level_data\";a:7:{i:1;a:2:{i:0;i:0;i:1;i:100;}i:2;a:2:{i:0;i:100;i:1;i:500;}i:3;a:2:{i:0;i:400;i:1;i:1500;}i:4;a:2:{i:0;i:1500;i:1;i:3000;}i:5;a:2:{i:0;i:3000;i:1;i:5000;}i:6;a:2:{i:0;i:5000;i:1;i:7000;}i:7;a:2:{i:0;i:10000;i:1;i:9000;}}}','yes'),(1086,'litespeed-timestamp-purge-css','1551986638','yes'),(1089,'litespeed-ccss-summary','a:5:{s:5:\"queue\";a:0:{}s:12:\"curr_request\";i:0;s:10:\"last_spent\";i:3;s:12:\"last_request\";i:1551986574;s:17:\"ccss_type_history\";a:3:{s:5:\"front\";s:21:\"http://localhost:8082\";i:404;s:59:\"http://localhost:8082/min/jquery.viewportchecker.min.js.map\";s:4:\"page\";s:30:\"http://localhost:8082/about-us\";}}','yes'),(1090,'litespeed-media-placeholder-summary','a:0:{}','yes'),(1093,'litespeed-media-need-pull','pulled','yes'),(1095,'litespeed-img_optm_cron_run','1551969228','yes'),(1249,'litespeed_messages','a:2:{i:0;b:0;i:1;s:94:\"

Purged all caches successfully.

\";}','yes'),(1253,'wpsupercache_gc_time','1554320618','yes'),(1256,'wpsc_feed_list','a:0:{}','yes'),(1273,'pand-d83e5fe4823f8f867dc30d3bb0b6c7de','1630452702','no'),(1369,'wpseo','a:75:{s:8:\"tracking\";b:1;s:22:\"license_server_version\";b:0;s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:0;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:23:\"home_url_option_changed\";s:29:\"indexables_indexing_completed\";b:1;s:7:\"version\";s:4:\"19.1\";s:16:\"previous_version\";s:6:\"17.7.1\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:1;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";b:1;s:16:\"environment_type\";s:10:\"production\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;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:22:\"show_onboarding_notice\";b:0;s:18:\"first_activated_on\";i:1632515059;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:5:{s:12:\"access_token\";s:40:\"UmETw6hqdz1xM6YnSNNIKmMIqQ5VsduY2Bh7q5ma\";s:13:\"refresh_token\";s:40:\"ykq6JRb3WOmcRAQpRTbiisU7jza9s9xKEpkMHgK5\";s:7:\"expires\";i:1643336747;s:11:\"has_expired\";b:0;s:10:\"created_at\";i:1642731947;}s:20:\"semrush_country_code\";s:2:\"ca\";s:19:\"permalink_structure\";s:30:\"/%year%/%monthnum%/%postname%/\";s:8:\"home_url\";s:33:\"https://translucent.mesoishop.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:0:{}s:29:\"enable_enhanced_slack_sharing\";b:1;s:25:\"zapier_integration_active\";b:0;s:19:\"zapier_subscription\";a:0:{}s:14:\"zapier_api_key\";s:32:\"RYoGd3qww3DkDVhkdTEh1tyM4LjLWpYo\";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:3:{s:13:\"finishedSteps\";a:0:{}s:16:\"indexablesByStep\";a:0:{}s:8:\"priority\";i:1;}}s:28:\"configuration_finished_steps\";a:0:{}s:36:\"dismiss_configuration_workout_notice\";b:0;s:19:\"importing_completed\";a:6:{s:30:\"aioseo_custom_archive_settings\";b:1;s:31:\"aioseo_default_archive_settings\";b:1;s:23:\"aioseo_general_settings\";b:1;s:12:\"aioseo_posts\";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:1;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;}','yes'),(1370,'wpseo_titles','a:120:{s:17:\"forcerewritetitle\";b:1;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:1;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:0;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:2:\"»\";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:101:\"https://translucent.local/wp-content/uploads/2019/03/translucent-brand-and-icon-02-e1552318421747.jpg\";s:12:\"company_name\";s:21:\"Translucent Computing\";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:11:\"%%excerpt%%\";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:0;s:20:\"noindex-tax-category\";b:1;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:0;s:20:\"noindex-tax-post_tag\";b:1;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:0;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:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:845;s:17:\"company_logo_meta\";a:9:{s:5:\"width\";i:500;s:6:\"height\";i:94;s:3:\"url\";s:101:\"https://translucent.local/wp-content/uploads/2019/03/translucent-brand-and-icon-02-e1552318421747.jpg\";s:4:\"path\";s:100:\"/var/www/dfr/translucent/wp-content/uploads/2019/03/translucent-brand-and-icon-02-e1552318421747.jpg\";s:4:\"size\";s:4:\"full\";s:2:\"id\";i:845;s:3:\"alt\";s:0:\"\";s:6:\"pixels\";i:47000;s:4:\"type\";s:10:\"image/jpeg\";}s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;s:18:\"title-popupbuilder\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-popupbuilder\";s:0:\"\";s:20:\"noindex-popupbuilder\";b:0;s:31:\"display-metabox-pt-popupbuilder\";b:1;s:31:\"post_types-popupbuilder-maintax\";i:0;s:29:\"schema-page-type-popupbuilder\";s:7:\"WebPage\";s:32:\"schema-article-type-popupbuilder\";s:4:\"None\";s:25:\"social-title-popupbuilder\";s:9:\"%%title%%\";s:31:\"social-description-popupbuilder\";s:0:\"\";s:29:\"social-image-url-popupbuilder\";s:0:\"\";s:28:\"social-image-id-popupbuilder\";i:0;s:26:\"taxonomy-category-ptparent\";s:1:\"0\";s:26:\"taxonomy-post_tag-ptparent\";s:1:\"0\";s:29:\"taxonomy-post_format-ptparent\";s:1:\"0\";}','yes'),(1371,'wpseo_social','a:19:{s:13:\"facebook_site\";s:47:\"https://www.facebook.com/translucent.computing/\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:59:\"https://www.linkedin.com/company/translucent-computing-inc/\";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:15:\"translucentcomp\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:17:\"other_social_urls\";a:1:{i:0;s:59:\"https://www.linkedin.com/company/translucent-computing-inc/\";}}','yes'),(1372,'wpseo_flush_rewrite','1','yes'),(1403,'ai1wmte_plugin_key','1','yes'),(1418,'ai1wm_updater','a:2:{s:38:\"all-in-one-wp-migration-file-extension\";a:13:{s:4:\"name\";s:14:\"File Extension\";s:4:\"slug\";s:14:\"file-extension\";s:8:\"homepage\";s:31:\"https://import.wp-migration.com\";s:13:\"download_link\";s:74:\"https://import.wp-migration.com/all-in-one-wp-migration-file-extension.zip\";s:7:\"version\";s:3:\"1.4\";s:6:\"author\";s:8:\"ServMask\";s:15:\"author_homepage\";s:20:\"https://servmask.com\";s:8:\"sections\";a:1:{s:11:\"description\";s:60:\"
\";}s:7:\"banners\";a:2:{s:3:\"low\";s:71:\"https://import.wp-migration.com/img/products/file-extension-772x250.png\";s:4:\"high\";s:72:\"https://import.wp-migration.com/img/products/file-extension-1544x500.png\";}s:5:\"icons\";a:3:{s:2:\"1x\";s:71:\"https://import.wp-migration.com/img/products/file-extension-128x128.png\";s:2:\"2x\";s:71:\"https://import.wp-migration.com/img/products/file-extension-256x256.png\";s:7:\"default\";s:71:\"https://import.wp-migration.com/img/products/file-extension-256x256.png\";}s:6:\"rating\";i:99;s:11:\"num_ratings\";i:309;s:10:\"downloaded\";i:40188;}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.37\";s:6:\"author\";s:8:\"ServMask\";s:15:\"author_homepage\";s:20:\"https://servmask.com\";s:8:\"sections\";a:1:{s:11:\"description\";s:259:\"
\";}s:7:\"banners\";a:2:{s:3:\"low\";s:65:\"https://servmask.com/img/products/unlimited-extension-772x250.png\";s:4:\"high\";s:66:\"https://servmask.com/img/products/unlimited-extension-1544x500.png\";}s:5:\"icons\";a:3:{s:2:\"1x\";s:65:\"https://servmask.com/img/products/unlimited-extension-128x128.png\";s:2:\"2x\";s:65:\"https://servmask.com/img/products/unlimited-extension-256x256.png\";s:7:\"default\";s:65:\"https://servmask.com/img/products/unlimited-extension-256x256.png\";}s:6:\"rating\";i:99;s:11:\"num_ratings\";i:309;s:10:\"downloaded\";i:40188;}}','yes'),(1847,'pp-404page-admin-notice-2-start','1554831371','yes'),(1928,'tinypng_compression_timing','background','yes'),(1929,'tinypng_api_key_pending','','yes'),(1930,'tinypng_api_key','rHQGL21sNm8LwQ3bgwrFHK169CcjfMWB','yes'),(1931,'tinypng_status','173','yes'),(1933,'tinypng_remaining_credits','327','yes'),(1934,'tinypng_paying_state','free','yes'),(1935,'tinypng_email_address','robert@localhost','yes'),(1936,'tinypng_sizes','a:7:{s:11:\"_tiny_dummy\";s:2:\"on\";i:0;s:2:\"on\";s:9:\"thumbnail\";s:2:\"on\";s:6:\"medium\";s:2:\"on\";s:12:\"medium_large\";s:2:\"on\";s:5:\"large\";s:2:\"on\";s:7:\"feature\";s:2:\"on\";}','yes'),(1937,'tinypng_resize_original','','yes'),(1938,'tinypng_preserve_data','','yes'),(2089,'gadwp_options','{\"client_id\":\"\",\"client_secret\":\"\",\"access_front\":[\"administrator\"],\"access_back\":[\"administrator\"],\"tableid_jail\":\"83116304\",\"theme_color\":\"#1e73be\",\"switch_profile\":0,\"tracking_type\":\"universal\",\"ga_anonymize_ip\":0,\"user_api\":0,\"ga_event_tracking\":0,\"ga_event_downloads\":\"zip|mp3*|mpe*g|pdf|docx*|pptx*|xlsx*|rar*\",\"track_exclude\":[],\"ga_target_geomap\":\"\",\"ga_realtime_pages\":10,\"token\":\"{\\\"access_token\\\":\\\"ya29.a0Adw1xeWaZp_wAX2cQ2N1hyhgARwuqcFzNOVQOfuDPh8PaG2gHsdN_FUn_unnG1-ZyacK7JxpXPWN_ba_WImEThXvIbwlKmDlECKXCSW1b53_BqwdkdJ7I-61XzTPUsuRwPMrQHXXv27nzrAzjMMwp3yzyA3KxvH_U8gvWQ\\\",\\\"expires_in\\\":3599,\\\"refresh_token\\\":\\\"1\\\\\\/JEggDJEE5MBQXLAZiOe7wpMtPpDlPiTelIFZ-eVXC78\\\",\\\"scope\\\":\\\"https:\\\\\\/\\\\\\/www.googleapis.com\\\\\\/auth\\\\\\/analytics.readonly\\\",\\\"token_type\\\":\\\"Bearer\\\",\\\"created\\\":1584569784}\",\"ga_profiles_list\":[[\"UNFILTERED master data\",\"83116304\",\"UA-3976937-5\",\"http:\\/\\/localhost:8082\",-14400,\"America\\/New_York\",null]],\"ga_enhanced_links\":0,\"ga_remarketing\":0,\"network_mode\":0,\"ga_speed_samplerate\":1,\"ga_user_samplerate\":100,\"ga_event_bouncerate\":0,\"ga_crossdomain_tracking\":0,\"ga_crossdomain_list\":\"\",\"ga_author_dimindex\":0,\"ga_category_dimindex\":0,\"ga_tag_dimindex\":0,\"ga_user_dimindex\":0,\"ga_pubyear_dimindex\":0,\"ga_pubyearmonth_dimindex\":0,\"ga_aff_tracking\":0,\"ga_event_affiliates\":\"\\/out\\/\",\"automatic_updates_minorversion\":\"1\",\"backend_item_reports\":1,\"backend_realtime_report\":0,\"frontend_item_reports\":0,\"dashboard_widget\":1,\"api_backoff\":0,\"ga_cookiedomain\":\"\",\"ga_cookiename\":\"\",\"ga_cookieexpires\":\"\",\"pagetitle_404\":\"Page Not Found\",\"maps_api_key\":\"\",\"tm_author_var\":0,\"tm_category_var\":0,\"tm_tag_var\":0,\"tm_user_var\":0,\"tm_pubyear_var\":0,\"tm_pubyearmonth_var\":0,\"web_containerid\":\"\",\"amp_containerid\":\"\",\"amp_tracking_tagmanager\":0,\"amp_tracking_analytics\":0,\"amp_tracking_clientidapi\":0,\"trackingcode_infooter\":0,\"trackingevents_infooter\":0,\"ecommerce_mode\":\"disabled\",\"ga_formsubmit_tracking\":0,\"optimize_tracking\":0,\"optimize_containerid\":\"\",\"optimize_pagehiding\":0,\"superadmin_tracking\":0,\"ga_pagescrolldepth_tracking\":0,\"tm_pagescrolldepth_tracking\":0,\"ga_event_precision\":0,\"ga_force_ssl\":0,\"with_endpoint\":1,\"ga_optout\":0,\"ga_dnt_optout\":0,\"tm_optout\":0,\"tm_dnt_optout\":0,\"ga_with_gtag\":0,\"usage_tracking\":0,\"hide_am_notices\":0,\"network_hide_am_notices\":0,\"ga_enhanced_excludesa\":0,\"ga_hash_tracking\":0,\"gadwp_hidden\":\"Y\"}','yes'),(2090,'widget_gadwp-frontwidget-report','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(2091,'_amn_exact-metrics_last_checked','1556841600','yes'),(2092,'gadwp_redeemed_code','4/CgHQxnl8kduUhth9YxO7UKfLA_oXtqnc6HR1vadBAdwUbqIzQZHd7do','yes'),(2097,'monsterinsights_usage_tracking_config','a:6:{s:3:\"day\";i:0;s:4:\"hour\";i:1;s:6:\"minute\";i:16;s:6:\"second\";i:25;s:6:\"offset\";i:4585;s:8:\"initsend\";i:1552785385;}','yes'),(2098,'monsterinsights_over_time','a:3:{s:17:\"installed_version\";s:5:\"7.4.2\";s:14:\"installed_date\";i:1552311723;s:13:\"installed_pro\";b:0;}','yes'),(2099,'monsterinsights_db_version','7.4.0','yes'),(2100,'monsterinsights_current_version','7.4.2','yes'),(2101,'monsterinsights_settings','a:17:{s:22:\"enable_affiliate_links\";b:1;s:15:\"affiliate_links\";a:2:{i:0;a:2:{s:4:\"path\";s:4:\"/go/\";s:5:\"label\";s:9:\"affiliate\";}i:1;a:2:{s:4:\"path\";s:11:\"/recommend/\";s:5:\"label\";s:9:\"affiliate\";}}s:12:\"demographics\";i:1;s:12:\"ignore_users\";a:1:{i:0;s:13:\"administrator\";}s:19:\"dashboards_disabled\";i:0;s:13:\"anonymize_ips\";i:0;s:19:\"extensions_of_files\";s:30:\"doc,exe,js,pdf,ppt,tgz,zip,xls\";s:18:\"subdomain_tracking\";s:0:\"\";s:16:\"link_attribution\";b:1;s:16:\"tag_links_in_rss\";b:1;s:12:\"allow_anchor\";i:0;s:16:\"add_allow_linker\";i:0;s:11:\"custom_code\";s:0:\"\";s:13:\"save_settings\";a:1:{i:0;s:13:\"administrator\";}s:12:\"view_reports\";a:2:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";}s:11:\"events_mode\";s:2:\"js\";s:13:\"tracking_mode\";s:9:\"analytics\";}','yes'),(2102,'_amn_mi-lite_last_checked','1552262400','yes'),(2185,'sm_options','a:52:{s:18:\"sm_b_prio_provider\";s:41:\"GoogleSitemapGeneratorPrioByCountProvider\";s:9:\"sm_b_ping\";b:1;s:10:\"sm_b_stats\";b:0;s:12:\"sm_b_pingmsn\";b:1;s:12:\"sm_b_autozip\";b:1;s:11:\"sm_b_memory\";s:0:\"\";s:9:\"sm_b_time\";i:-1;s:18:\"sm_b_style_default\";b:1;s:10:\"sm_b_style\";s:0:\"\";s:12:\"sm_b_baseurl\";s:0:\"\";s:11:\"sm_b_robots\";b:1;s:9:\"sm_b_html\";b:1;s:12:\"sm_b_exclude\";a:0:{}s:17:\"sm_b_exclude_cats\";a:0:{}s:10:\"sm_in_home\";b:1;s:11:\"sm_in_posts\";b:1;s:15:\"sm_in_posts_sub\";b:0;s:11:\"sm_in_pages\";b:1;s:10:\"sm_in_cats\";b:0;s:10:\"sm_in_arch\";b:0;s:10:\"sm_in_auth\";b:0;s:10:\"sm_in_tags\";b:0;s:9:\"sm_in_tax\";a:0:{}s:17:\"sm_in_customtypes\";a:0:{}s:13:\"sm_in_lastmod\";b:1;s:10:\"sm_cf_home\";s:5:\"daily\";s:11:\"sm_cf_posts\";s:7:\"monthly\";s:11:\"sm_cf_pages\";s:6:\"weekly\";s:10:\"sm_cf_cats\";s:6:\"weekly\";s:10:\"sm_cf_auth\";s:6:\"weekly\";s:15:\"sm_cf_arch_curr\";s:5:\"daily\";s:14:\"sm_cf_arch_old\";s:6:\"yearly\";s:10:\"sm_cf_tags\";s:6:\"weekly\";s:10:\"sm_pr_home\";d:1;s:11:\"sm_pr_posts\";d:0.6;s:15:\"sm_pr_posts_min\";d:0.2;s:11:\"sm_pr_pages\";d:0.6;s:10:\"sm_pr_cats\";d:0.3;s:10:\"sm_pr_arch\";d:0.3;s:10:\"sm_pr_auth\";d:0.3;s:10:\"sm_pr_tags\";d:0.3;s:12:\"sm_i_donated\";b:0;s:17:\"sm_i_hide_donated\";b:0;s:17:\"sm_i_install_date\";i:1552324712;s:16:\"sm_i_hide_survey\";b:1;s:14:\"sm_i_hide_note\";b:0;s:15:\"sm_i_hide_works\";b:0;s:16:\"sm_i_hide_donors\";b:0;s:9:\"sm_i_hash\";s:20:\"a2429aada90bddd3ec4d\";s:13:\"sm_i_lastping\";i:1552326563;s:16:\"sm_i_supportfeed\";b:1;s:22:\"sm_i_supportfeed_cache\";i:1552328307;}','yes'),(2193,'sm_status','O:28:\"GoogleSitemapGeneratorStatus\":4:{s:39:\"\0GoogleSitemapGeneratorStatus\0startTime\";d:1552326562.761425;s:37:\"\0GoogleSitemapGeneratorStatus\0endTime\";d:1552326563.348572;s:41:\"\0GoogleSitemapGeneratorStatus\0pingResults\";a:2:{s:6:\"google\";a:5:{s:9:\"startTime\";d:1552326562.765109;s:7:\"endTime\";d:1552326562.97033;s:7:\"success\";b:0;s:3:\"url\";s:92:\"http://www.google.com/webmasters/sitemaps/ping?sitemap=http%3A%2F%2F10.4.4.237%2Fsitemap.xml\";s:4:\"name\";s:6:\"Google\";}s:4:\"bing\";a:5:{s:9:\"startTime\";d:1552326562.974039;s:7:\"endTime\";d:1552326563.341168;s:7:\"success\";b:1;s:3:\"url\";s:85:\"http://www.bing.com/webmaster/ping.aspx?siteMap=http%3A%2F%2F10.4.4.237%2Fsitemap.xml\";s:4:\"name\";s:4:\"Bing\";}}s:38:\"\0GoogleSitemapGeneratorStatus\0autoSave\";b:1;}','no'),(2210,'exactmetrics_tracking_notice','1','yes'),(2242,'gadwp_cache_qr2_771099488','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:141:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:hour&metrics=ga:organicSearches&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:24:{i:0;a:2:{i:0;s:2:\"00\";i:1;s:1:\"0\";}i:1;a:2:{i:0;s:2:\"01\";i:1;s:1:\"0\";}i:2;a:2:{i:0;s:2:\"02\";i:1;s:1:\"0\";}i:3;a:2:{i:0;s:2:\"03\";i:1;s:1:\"0\";}i:4;a:2:{i:0;s:2:\"04\";i:1;s:1:\"0\";}i:5;a:2:{i:0;s:2:\"05\";i:1;s:1:\"0\";}i:6;a:2:{i:0;s:2:\"06\";i:1;s:1:\"0\";}i:7;a:2:{i:0;s:2:\"07\";i:1;s:1:\"0\";}i:8;a:2:{i:0;s:2:\"08\";i:1;s:1:\"0\";}i:9;a:2:{i:0;s:2:\"09\";i:1;s:1:\"0\";}i:10;a:2:{i:0;s:2:\"10\";i:1;s:1:\"0\";}i:11;a:2:{i:0;s:2:\"11\";i:1;s:1:\"1\";}i:12;a:2:{i:0;s:2:\"12\";i:1;s:1:\"1\";}i:13;a:2:{i:0;s:2:\"13\";i:1;s:1:\"0\";}i:14;a:2:{i:0;s:2:\"14\";i:1;s:1:\"0\";}i:15;a:2:{i:0;s:2:\"15\";i:1;s:1:\"0\";}i:16;a:2:{i:0;s:2:\"16\";i:1;s:1:\"0\";}i:17;a:2:{i:0;s:2:\"17\";i:1;s:1:\"0\";}i:18;a:2:{i:0;s:2:\"18\";i:1;s:1:\"0\";}i:19;a:2:{i:0;s:2:\"19\";i:1;s:1:\"0\";}i:20;a:2:{i:0;s:2:\"20\";i:1;s:1:\"0\";}i:21;a:2:{i:0;s:2:\"21\";i:1;s:1:\"0\";}i:22;a:2:{i:0;s:2:\"22\";i:1;s:1:\"0\";}i:23;a:2:{i:0;s:2:\"23\";i:1;s:1:\"0\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:141:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:hour&metrics=ga:organicSearches&start-date=today&end-date=today\";s:12:\"totalResults\";i:24;s:19:\"totalsForAllResults\";a:1:{s:18:\"ga:organicSearches\";s:1:\"2\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:8:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:7:\"ga:hour\";s:7:\"metrics\";a:1:{i:0;s:18:\"ga:organicSearches\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:7:\"ga:hour\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:18:\"ga:organicSearches\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1552330800;}','no'),(2251,'sendgrid_asm_permission','true','yes'),(2252,'sendgrid_mc_widget_notice_dismissed','true','yes'),(2255,'sendgrid_api_key','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','yes'),(2256,'sendgrid_from_name','Brad','yes'),(2257,'sendgrid_from_email','results@translucentcomputing.com','yes'),(2258,'sendgrid_reply_to','results@translucentcomputing.com','yes'),(2259,'sendgrid_categories','','yes'),(2260,'sendgrid_stats_categories','','yes'),(2261,'sendgrid_template','','yes'),(2262,'sendgrid_api','api','yes'),(2263,'sendgrid_port','587','yes'),(2264,'sendgrid_content_type','plaintext','yes'),(2267,'sendgrid_unsubscribe_group','0','yes'),(2322,'wpseo-gsc-refresh_token','1/ckeDJ6Y6LmfmHg0oWJvCM7l2o2HsV7nx5JiPZfMPwUM','yes'),(2323,'wpseo-gsc-access_token','a:5:{s:13:\"refresh_token\";s:45:\"1/ckeDJ6Y6LmfmHg0oWJvCM7l2o2HsV7nx5JiPZfMPwUM\";s:12:\"access_token\";s:131:\"ya29.GlzgBt1LoRlV4Q77JFJHzV-xiNZta4m3O3-zDo9SrllZOqvNNEw25HKKGE2pUD4NosU-Q7bmc3rHQk5GrRVSwoa4gBN3eHAMXj2afFdWTy3LKzexSUlkWqRV_Nj64Q\";s:7:\"expires\";d:1554309257;s:10:\"expires_in\";i:3600;s:7:\"created\";i:1554320057;}','yes'),(2324,'wpseo-gsc','a:1:{s:7:\"profile\";s:34:\"sc-domain:translucentcomputing.com\";}','yes'),(2325,'wpseo_gsc_issues_counts','a:0:{}','yes'),(2369,'gadwp_cache_qr4_3108701327','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:211:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:pagePath,ga:fullReferrer&metrics=ga:sessions&sort=-ga:sessions&filters=ga:pageTitle%3D@Page+Not+Found&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:1:{i:0;a:3:{i:0;s:47:\"/case-studies/tekstack-helps-drive-better-care/\";i:1;s:6:\"google\";i:2;s:1:\"2\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:211:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:pagePath,ga:fullReferrer&metrics=ga:sessions&sort=-ga:sessions&filters=ga:pageTitle%3D@Page+Not+Found&start-date=today&end-date=today\";s:12:\"totalResults\";i:1;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:1:\"2\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:27:\"ga:pagePath,ga:fullReferrer\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:7:\"filters\";s:28:\"ga:pageTitle=@Page Not Found\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"ga:pagePath\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:15:\"ga:fullReferrer\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:2;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1552348800;}','no'),(2498,'gadwp_cache_qr2_2568414186','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:158:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:yearMonth,+ga:month&metrics=ga:sessions&start-date=365daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:13:{i:0;a:3:{i:0;s:6:\"201803\";i:1;s:2:\"03\";i:2;s:3:\"106\";}i:1;a:3:{i:0;s:6:\"201804\";i:1;s:2:\"04\";i:2;s:3:\"202\";}i:2;a:3:{i:0;s:6:\"201805\";i:1;s:2:\"05\";i:2;s:3:\"130\";}i:3;a:3:{i:0;s:6:\"201806\";i:1;s:2:\"06\";i:2;s:3:\"193\";}i:4;a:3:{i:0;s:6:\"201807\";i:1;s:2:\"07\";i:2;s:3:\"162\";}i:5;a:3:{i:0;s:6:\"201808\";i:1;s:2:\"08\";i:2;s:3:\"204\";}i:6;a:3:{i:0;s:6:\"201809\";i:1;s:2:\"09\";i:2;s:3:\"196\";}i:7;a:3:{i:0;s:6:\"201810\";i:1;s:2:\"10\";i:2;s:3:\"151\";}i:8;a:3:{i:0;s:6:\"201811\";i:1;s:2:\"11\";i:2;s:3:\"133\";}i:9;a:3:{i:0;s:6:\"201812\";i:1;s:2:\"12\";i:2;s:3:\"226\";}i:10;a:3:{i:0;s:6:\"201901\";i:1;s:2:\"01\";i:2;s:3:\"153\";}i:11;a:3:{i:0;s:6:\"201902\";i:1;s:2:\"02\";i:2;s:3:\"100\";}i:12;a:3:{i:0;s:6:\"201903\";i:1;s:2:\"03\";i:2;s:3:\"153\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:158:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:yearMonth,+ga:month&metrics=ga:sessions&start-date=365daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:13;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:4:\"2109\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:8:{s:10:\"start-date\";s:10:\"365daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:22:\"ga:yearMonth, ga:month\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:3:{i:0;a:3:{s:4:\"name\";s:12:\"ga:yearMonth\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:month\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:2;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1552449600;}','no'),(2499,'gadwp_cache_qr3_2196036025','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:260:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&metrics=ga:sessions,ga:users,ga:pageviews,ga:BounceRate,ga:organicSearches,ga:pageviewsPerSession,ga:avgTimeOnPage,ga:avgPageLoadTime,ga:avgSessionDuration&start-date=365daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:1:{i:0;a:9:{i:0;s:4:\"2109\";i:1;s:4:\"1809\";i:2;s:4:\"3547\";i:3;s:17:\"74.53769559032717\";i:4;s:3:\"557\";i:5;s:18:\"1.6818397344713134\";i:6;s:17:\"86.20291869353719\";i:7;s:17:\"3.922478260869565\";i:8;s:17:\"58.81887150308203\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:260:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&metrics=ga:sessions,ga:users,ga:pageviews,ga:BounceRate,ga:organicSearches,ga:pageviewsPerSession,ga:avgTimeOnPage,ga:avgPageLoadTime,ga:avgSessionDuration&start-date=365daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:1;s:19:\"totalsForAllResults\";a:9:{s:11:\"ga:sessions\";s:4:\"2109\";s:8:\"ga:users\";s:4:\"1809\";s:12:\"ga:pageviews\";s:4:\"3547\";s:13:\"ga:BounceRate\";s:17:\"74.53769559032717\";s:18:\"ga:organicSearches\";s:3:\"557\";s:22:\"ga:pageviewsPerSession\";s:18:\"1.6818397344713134\";s:16:\"ga:avgTimeOnPage\";s:17:\"86.20291869353719\";s:18:\"ga:avgPageLoadTime\";s:17:\"3.922478260869565\";s:21:\"ga:avgSessionDuration\";s:17:\"58.81887150308203\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:7:{s:10:\"start-date\";s:10:\"365daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:7:\"metrics\";a:9:{i:0;s:11:\"ga:sessions\";i:1;s:8:\"ga:users\";i:2;s:12:\"ga:pageviews\";i:3;s:13:\"ga:BounceRate\";i:4;s:18:\"ga:organicSearches\";i:5;s:22:\"ga:pageviewsPerSession\";i:6;s:16:\"ga:avgTimeOnPage\";i:7;s:18:\"ga:avgPageLoadTime\";i:8;s:21:\"ga:avgSessionDuration\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:9:{i:0;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:2;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:3;a:3:{s:4:\"name\";s:13:\"ga:BounceRate\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"PERCENT\";}i:4;a:3:{s:4:\"name\";s:18:\"ga:organicSearches\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:5;a:3:{s:4:\"name\";s:22:\"ga:pageviewsPerSession\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:5:\"FLOAT\";}i:6;a:3:{s:4:\"name\";s:16:\"ga:avgTimeOnPage\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:4:\"TIME\";}i:7;a:3:{s:4:\"name\";s:18:\"ga:avgPageLoadTime\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:5:\"FLOAT\";}i:8;a:3:{s:4:\"name\";s:21:\"ga:avgSessionDuration\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:4:\"TIME\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1552449600;}','no'),(6835,'wpseo_upgrade_history','a:1:{i:1554319642;a:3:{s:7:\"options\";a:3:{s:5:\"wpseo\";a:20:{s:15:\"ms_defaults_set\";b:0;s:7:\"version\";s:6:\"10.0.1\";s:20:\"disableadvanced_meta\";b:1;s:19:\"onpage_indexability\";b:1;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:43:\"Vz29GCMf7cg4c5VP3LodFSYHdFn-iLbIqZuhSFzFx5E\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";b:1;s:16:\"environment_type\";s:10:\"production\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:0;s:24:\"enable_text_link_counter\";b:1;s:22:\"show_onboarding_notice\";b:0;s:18:\"first_activated_on\";i:1551222730;s:13:\"myyoast-oauth\";a:2:{s:6:\"config\";a:2:{s:8:\"clientId\";N;s:6:\"secret\";N;}s:13:\"access_tokens\";a:0:{}}}s:12:\"wpseo_social\";a:20:{s:13:\"facebook_site\";s:47:\"https://www.facebook.com/translucent.computing/\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:59:\"https://www.linkedin.com/company/translucent-computing-inc/\";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:14:\"plus-publisher\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:15:\"translucentcomp\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:15:\"google_plus_url\";s:0:\"\";s:10:\"fbadminapp\";s:0:\"\";}s:12:\"wpseo_titles\";a:67:{s:10:\"title_test\";i:0;s:17:\"forcerewritetitle\";b:1;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: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:1;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:23:\"is-media-purge-relevant\";b:0;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:0;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:2:\"»\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:97:\"http://localhost:8082/wp-content/uploads/2019/03/translucent-brand-and-icon-02-e1552318421747.jpg\";s:12:\"company_name\";s:25:\"Translucent Computing Inc\";s:17:\"company_or_person\";s:7:\"company\";s:17:\"stripcategorybase\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:13:\"showdate-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";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:13:\"showdate-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";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:19:\"showdate-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;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: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: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:0;s:23:\"noindex-tax-post_format\";b:1;}}s:11:\"old_version\";s:6:\"10.0.1\";s:11:\"new_version\";s:6:\"10.1.2\";}}','no'),(6841,'ssl_insecure_content_fixer','a:4:{s:9:\"fix_level\";s:7:\"content\";s:9:\"proxy_fix\";s:22:\"HTTP_X_FORWARDED_PROTO\";s:9:\"site_only\";i:0;s:12:\"fix_specific\";a:1:{s:9:\"woo_https\";i:1;}}','yes'),(6850,'wpseo_gsc_last_fetch','1554320057','no'),(6870,'ai1wmue_plugin_key','23578a28-718b-4d6a-a78e-dfad6d0a8e4a','yes'),(6919,'_amn_exact-metrics_to_check','1584828981','yes'),(7564,'gadwp_cache_qr4_2100999801','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:212:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:pagePath,ga:fullReferrer&metrics=ga:users&sort=-ga:users&filters=ga:pageTitle%3D@Page+Not+Found&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:3:{i:0;a:3:{i:0;s:43:\"/2010/01/restrictionssqlrestriction-extract\";i:1;s:8:\"(direct)\";i:2;s:1:\"2\";}i:1;a:3:{i:0;s:7:\"/?p=929\";i:1;s:8:\"(direct)\";i:2;s:1:\"1\";}i:2;a:3:{i:0;s:3:\"/wo\";i:1;s:8:\"(direct)\";i:2;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:212:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:pagePath,ga:fullReferrer&metrics=ga:users&sort=-ga:users&filters=ga:pageTitle%3D@Page+Not+Found&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:3;s:19:\"totalsForAllResults\";a:1:{s:8:\"ga:users\";s:1:\"4\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:27:\"ga:pagePath,ga:fullReferrer\";s:7:\"metrics\";a:1:{i:0;s:8:\"ga:users\";}s:4:\"sort\";a:1:{i:0;s:9:\"-ga:users\";}s:7:\"filters\";s:28:\"ga:pageTitle=@Page Not Found\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:3:{i:0;a:3:{s:4:\"name\";s:11:\"ga:pagePath\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:15:\"ga:fullReferrer\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:2;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1557979200;}','no'),(7565,'gadwp_cache_qr8_1557456087','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:163:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:deviceCategory&metrics=ga:users&sort=-ga:users&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:3:{i:0;a:2:{i:0;s:7:\"desktop\";i:1;s:2:\"47\";}i:1;a:2:{i:0;s:6:\"mobile\";i:1;s:1:\"7\";}i:2;a:2:{i:0;s:6:\"tablet\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:163:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:deviceCategory&metrics=ga:users&sort=-ga:users&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:3;s:19:\"totalsForAllResults\";a:1:{s:8:\"ga:users\";s:2:\"55\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:17:\"ga:deviceCategory\";s:7:\"metrics\";a:1:{i:0;s:8:\"ga:users\";}s:4:\"sort\";a:1:{i:0;s:9:\"-ga:users\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:17:\"ga:deviceCategory\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1557979200;}','no'),(7566,'gadwp_cache_qr10_3179188887','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:188:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:browser&metrics=ga:users&sort=-ga:users&filters=ga:browser!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:6:{i:0;a:2:{i:0;s:6:\"Chrome\";i:1;s:2:\"39\";}i:1;a:2:{i:0;s:6:\"Safari\";i:1;s:1:\"8\";}i:2;a:2:{i:0;s:4:\"Edge\";i:1;s:1:\"3\";}i:3;a:2:{i:0;s:17:\"Internet Explorer\";i:1;s:1:\"3\";}i:4;a:2:{i:0;s:5:\"Opera\";i:1;s:1:\"1\";}i:5;a:2:{i:0;s:15:\"Safari (in-app)\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:188:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:browser&metrics=ga:users&sort=-ga:users&filters=ga:browser!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:6;s:19:\"totalsForAllResults\";a:1:{s:8:\"ga:users\";s:2:\"55\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:10:\"ga:browser\";s:7:\"metrics\";a:1:{i:0;s:8:\"ga:users\";}s:4:\"sort\";a:1:{i:0;s:9:\"-ga:users\";}s:7:\"filters\";s:21:\"ga:browser!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:10:\"ga:browser\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1557979200;}','no'),(7567,'gadwp_cache_qr10_2208682766','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:204:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:operatingSystem&metrics=ga:users&sort=-ga:users&filters=ga:operatingSystem!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:5:{i:0;a:2:{i:0;s:7:\"Windows\";i:1;s:2:\"33\";}i:1;a:2:{i:0;s:9:\"Macintosh\";i:1;s:2:\"13\";}i:2;a:2:{i:0;s:3:\"iOS\";i:1;s:1:\"5\";}i:3;a:2:{i:0;s:7:\"Android\";i:1;s:1:\"2\";}i:4;a:2:{i:0;s:5:\"Linux\";i:1;s:1:\"2\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:204:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:operatingSystem&metrics=ga:users&sort=-ga:users&filters=ga:operatingSystem!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:5;s:19:\"totalsForAllResults\";a:1:{s:8:\"ga:users\";s:2:\"55\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:18:\"ga:operatingSystem\";s:7:\"metrics\";a:1:{i:0;s:8:\"ga:users\";}s:4:\"sort\";a:1:{i:0;s:9:\"-ga:users\";}s:7:\"filters\";s:29:\"ga:operatingSystem!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:18:\"ga:operatingSystem\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1557979200;}','no'),(7568,'gadwp_cache_qr10_2180048893','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:206:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:screenResolution&metrics=ga:users&sort=-ga:users&filters=ga:screenResolution!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:20:{i:0;a:2:{i:0;s:9:\"1920x1080\";i:1;s:2:\"16\";}i:1;a:2:{i:0;s:8:\"1366x768\";i:1;s:1:\"5\";}i:2;a:2:{i:0;s:8:\"1536x864\";i:1;s:1:\"5\";}i:3;a:2:{i:0;s:8:\"1280x800\";i:1;s:1:\"4\";}i:4;a:2:{i:0;s:9:\"1680x1050\";i:1;s:1:\"4\";}i:5;a:2:{i:0;s:8:\"1440x900\";i:1;s:1:\"3\";}i:6;a:2:{i:0;s:8:\"1600x900\";i:1;s:1:\"3\";}i:7;a:2:{i:0;s:7:\"414x896\";i:1;s:1:\"3\";}i:8;a:2:{i:0;s:9:\"2560x1440\";i:1;s:1:\"2\";}i:9;a:2:{i:0;s:7:\"375x812\";i:1;s:1:\"2\";}i:10;a:2:{i:0;s:8:\"1024x768\";i:1;s:1:\"1\";}i:11;a:2:{i:0;s:8:\"1093x614\";i:1;s:1:\"1\";}i:12;a:2:{i:0;s:8:\"1280x960\";i:1;s:1:\"1\";}i:13;a:2:{i:0;s:8:\"1360x768\";i:1;s:1:\"1\";}i:14;a:2:{i:0;s:9:\"1500x1000\";i:1;s:1:\"1\";}i:15;a:2:{i:0;s:9:\"3008x1692\";i:1;s:1:\"1\";}i:16;a:2:{i:0;s:9:\"3440x1440\";i:1;s:1:\"1\";}i:17;a:2:{i:0;s:7:\"360x640\";i:1;s:1:\"1\";}i:18;a:2:{i:0;s:7:\"412x846\";i:1;s:1:\"1\";}i:19;a:2:{i:0;s:7:\"800x600\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:206:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:screenResolution&metrics=ga:users&sort=-ga:users&filters=ga:screenResolution!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:20;s:19:\"totalsForAllResults\";a:1:{s:8:\"ga:users\";s:2:\"57\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:19:\"ga:screenResolution\";s:7:\"metrics\";a:1:{i:0;s:8:\"ga:users\";}s:4:\"sort\";a:1:{i:0;s:9:\"-ga:users\";}s:7:\"filters\";s:30:\"ga:screenResolution!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:19:\"ga:screenResolution\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1557979200;}','no'),(7569,'gadwp_cache_qr10_1192538980','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:214:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:mobileDeviceBranding&metrics=ga:users&sort=-ga:users&filters=ga:mobileDeviceBranding!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:4:{i:0;a:2:{i:0;s:5:\"Apple\";i:1;s:1:\"5\";}i:1;a:2:{i:0;s:3:\"HTC\";i:1;s:1:\"1\";}i:2;a:2:{i:0;s:9:\"Microsoft\";i:1;s:1:\"1\";}i:3;a:2:{i:0;s:8:\"Motorola\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:214:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:mobileDeviceBranding&metrics=ga:users&sort=-ga:users&filters=ga:mobileDeviceBranding!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:4;s:19:\"totalsForAllResults\";a:1:{s:8:\"ga:users\";s:1:\"8\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:23:\"ga:mobileDeviceBranding\";s:7:\"metrics\";a:1:{i:0;s:8:\"ga:users\";}s:4:\"sort\";a:1:{i:0;s:9:\"-ga:users\";}s:7:\"filters\";s:34:\"ga:mobileDeviceBranding!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:23:\"ga:mobileDeviceBranding\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1557979200;}','no'),(9061,'gadwp_cache_qr2_1464995342','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:232:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:users&filters=ga:pagePath%3D%3D/2019/05/kubernetes-elasticsearch-python-importer/&start-date=30daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:30:{i:0;a:3:{i:0;s:8:\"20190520\";i:1;s:6:\"Monday\";i:2;s:1:\"0\";}i:1;a:3:{i:0;s:8:\"20190521\";i:1;s:7:\"Tuesday\";i:2;s:1:\"2\";}i:2;a:3:{i:0;s:8:\"20190522\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:3;a:3:{i:0;s:8:\"20190523\";i:1;s:8:\"Thursday\";i:2;s:1:\"0\";}i:4;a:3:{i:0;s:8:\"20190524\";i:1;s:6:\"Friday\";i:2;s:1:\"0\";}i:5;a:3:{i:0;s:8:\"20190525\";i:1;s:8:\"Saturday\";i:2;s:1:\"0\";}i:6;a:3:{i:0;s:8:\"20190526\";i:1;s:6:\"Sunday\";i:2;s:1:\"0\";}i:7;a:3:{i:0;s:8:\"20190527\";i:1;s:6:\"Monday\";i:2;s:1:\"0\";}i:8;a:3:{i:0;s:8:\"20190528\";i:1;s:7:\"Tuesday\";i:2;s:1:\"0\";}i:9;a:3:{i:0;s:8:\"20190529\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:10;a:3:{i:0;s:8:\"20190530\";i:1;s:8:\"Thursday\";i:2;s:1:\"0\";}i:11;a:3:{i:0;s:8:\"20190531\";i:1;s:6:\"Friday\";i:2;s:1:\"0\";}i:12;a:3:{i:0;s:8:\"20190601\";i:1;s:8:\"Saturday\";i:2;s:1:\"0\";}i:13;a:3:{i:0;s:8:\"20190602\";i:1;s:6:\"Sunday\";i:2;s:1:\"0\";}i:14;a:3:{i:0;s:8:\"20190603\";i:1;s:6:\"Monday\";i:2;s:1:\"0\";}i:15;a:3:{i:0;s:8:\"20190604\";i:1;s:7:\"Tuesday\";i:2;s:1:\"0\";}i:16;a:3:{i:0;s:8:\"20190605\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:17;a:3:{i:0;s:8:\"20190606\";i:1;s:8:\"Thursday\";i:2;s:1:\"0\";}i:18;a:3:{i:0;s:8:\"20190607\";i:1;s:6:\"Friday\";i:2;s:1:\"0\";}i:19;a:3:{i:0;s:8:\"20190608\";i:1;s:8:\"Saturday\";i:2;s:1:\"0\";}i:20;a:3:{i:0;s:8:\"20190609\";i:1;s:6:\"Sunday\";i:2;s:1:\"1\";}i:21;a:3:{i:0;s:8:\"20190610\";i:1;s:6:\"Monday\";i:2;s:1:\"0\";}i:22;a:3:{i:0;s:8:\"20190611\";i:1;s:7:\"Tuesday\";i:2;s:1:\"0\";}i:23;a:3:{i:0;s:8:\"20190612\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:24;a:3:{i:0;s:8:\"20190613\";i:1;s:8:\"Thursday\";i:2;s:1:\"0\";}i:25;a:3:{i:0;s:8:\"20190614\";i:1;s:6:\"Friday\";i:2;s:1:\"0\";}i:26;a:3:{i:0;s:8:\"20190615\";i:1;s:8:\"Saturday\";i:2;s:1:\"0\";}i:27;a:3:{i:0;s:8:\"20190616\";i:1;s:6:\"Sunday\";i:2;s:1:\"0\";}i:28;a:3:{i:0;s:8:\"20190617\";i:1;s:6:\"Monday\";i:2;s:1:\"0\";}i:29;a:3:{i:0;s:8:\"20190618\";i:1;s:7:\"Tuesday\";i:2;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:232:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:users&filters=ga:pagePath%3D%3D/2019/05/kubernetes-elasticsearch-python-importer/&start-date=30daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:30;s:19:\"totalsForAllResults\";a:1:{s:8:\"ga:users\";s:1:\"4\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:9:\"30daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:24:\"ga:date,ga:dayOfWeekName\";s:7:\"metrics\";a:1:{i:0;s:8:\"ga:users\";}s:7:\"filters\";s:63:\"ga:pagePath==/2019/05/kubernetes-elasticsearch-python-importer/\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:3:{i:0;a:3:{s:4:\"name\";s:7:\"ga:date\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:16:\"ga:dayOfWeekName\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:2;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1561003200;}','no'),(9062,'gadwp_cache_qr2_1655457693','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:236:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:pageviews&filters=ga:pagePath%3D%3D/2019/05/kubernetes-elasticsearch-python-importer/&start-date=30daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:30:{i:0;a:3:{i:0;s:8:\"20190520\";i:1;s:6:\"Monday\";i:2;s:1:\"0\";}i:1;a:3:{i:0;s:8:\"20190521\";i:1;s:7:\"Tuesday\";i:2;s:1:\"3\";}i:2;a:3:{i:0;s:8:\"20190522\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:3;a:3:{i:0;s:8:\"20190523\";i:1;s:8:\"Thursday\";i:2;s:1:\"0\";}i:4;a:3:{i:0;s:8:\"20190524\";i:1;s:6:\"Friday\";i:2;s:1:\"0\";}i:5;a:3:{i:0;s:8:\"20190525\";i:1;s:8:\"Saturday\";i:2;s:1:\"0\";}i:6;a:3:{i:0;s:8:\"20190526\";i:1;s:6:\"Sunday\";i:2;s:1:\"0\";}i:7;a:3:{i:0;s:8:\"20190527\";i:1;s:6:\"Monday\";i:2;s:1:\"0\";}i:8;a:3:{i:0;s:8:\"20190528\";i:1;s:7:\"Tuesday\";i:2;s:1:\"0\";}i:9;a:3:{i:0;s:8:\"20190529\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:10;a:3:{i:0;s:8:\"20190530\";i:1;s:8:\"Thursday\";i:2;s:1:\"0\";}i:11;a:3:{i:0;s:8:\"20190531\";i:1;s:6:\"Friday\";i:2;s:1:\"0\";}i:12;a:3:{i:0;s:8:\"20190601\";i:1;s:8:\"Saturday\";i:2;s:1:\"0\";}i:13;a:3:{i:0;s:8:\"20190602\";i:1;s:6:\"Sunday\";i:2;s:1:\"0\";}i:14;a:3:{i:0;s:8:\"20190603\";i:1;s:6:\"Monday\";i:2;s:1:\"0\";}i:15;a:3:{i:0;s:8:\"20190604\";i:1;s:7:\"Tuesday\";i:2;s:1:\"0\";}i:16;a:3:{i:0;s:8:\"20190605\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:17;a:3:{i:0;s:8:\"20190606\";i:1;s:8:\"Thursday\";i:2;s:1:\"0\";}i:18;a:3:{i:0;s:8:\"20190607\";i:1;s:6:\"Friday\";i:2;s:1:\"0\";}i:19;a:3:{i:0;s:8:\"20190608\";i:1;s:8:\"Saturday\";i:2;s:1:\"0\";}i:20;a:3:{i:0;s:8:\"20190609\";i:1;s:6:\"Sunday\";i:2;s:1:\"1\";}i:21;a:3:{i:0;s:8:\"20190610\";i:1;s:6:\"Monday\";i:2;s:1:\"0\";}i:22;a:3:{i:0;s:8:\"20190611\";i:1;s:7:\"Tuesday\";i:2;s:1:\"0\";}i:23;a:3:{i:0;s:8:\"20190612\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:24;a:3:{i:0;s:8:\"20190613\";i:1;s:8:\"Thursday\";i:2;s:1:\"0\";}i:25;a:3:{i:0;s:8:\"20190614\";i:1;s:6:\"Friday\";i:2;s:1:\"0\";}i:26;a:3:{i:0;s:8:\"20190615\";i:1;s:8:\"Saturday\";i:2;s:1:\"0\";}i:27;a:3:{i:0;s:8:\"20190616\";i:1;s:6:\"Sunday\";i:2;s:1:\"0\";}i:28;a:3:{i:0;s:8:\"20190617\";i:1;s:6:\"Monday\";i:2;s:1:\"0\";}i:29;a:3:{i:0;s:8:\"20190618\";i:1;s:7:\"Tuesday\";i:2;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:236:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:pageviews&filters=ga:pagePath%3D%3D/2019/05/kubernetes-elasticsearch-python-importer/&start-date=30daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:30;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:1:\"5\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:9:\"30daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:24:\"ga:date,ga:dayOfWeekName\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:7:\"filters\";s:63:\"ga:pagePath==/2019/05/kubernetes-elasticsearch-python-importer/\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:3:{i:0;a:3:{s:4:\"name\";s:7:\"ga:date\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:16:\"ga:dayOfWeekName\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:2;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1561003200;}','no'),(16836,'404page_data','a:3:{s:15:\"current_version\";s:6:\"11.3.1\";s:16:\"ask_rating_start\";i:1580016904;s:17:\"ask_rating_closed\";s:3:\"YES\";}','yes'),(16837,'404page_settings','a:7:{s:7:\"page_id\";s:3:\"838\";s:4:\"hide\";s:0:\"\";s:10:\"fire_error\";s:1:\"1\";s:11:\"force_error\";s:0:\"\";s:15:\"no_url_guessing\";s:0:\"\";s:18:\"http410_if_trashed\";s:0:\"\";s:6:\"method\";s:3:\"STD\";}','yes'),(16875,'gadwp_cache_qr2_1630683773','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:242:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:uniquePageviews&filters=ga:pagePath%3D%3D/2019/05/kubernetes-elasticsearch-python-importer/&start-date=30daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:30:{i:0;a:3:{i:0;s:8:\"20191127\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:1;a:3:{i:0;s:8:\"20191128\";i:1;s:8:\"Thursday\";i:2;s:1:\"1\";}i:2;a:3:{i:0;s:8:\"20191129\";i:1;s:6:\"Friday\";i:2;s:1:\"0\";}i:3;a:3:{i:0;s:8:\"20191130\";i:1;s:8:\"Saturday\";i:2;s:1:\"0\";}i:4;a:3:{i:0;s:8:\"20191201\";i:1;s:6:\"Sunday\";i:2;s:1:\"0\";}i:5;a:3:{i:0;s:8:\"20191202\";i:1;s:6:\"Monday\";i:2;s:1:\"0\";}i:6;a:3:{i:0;s:8:\"20191203\";i:1;s:7:\"Tuesday\";i:2;s:1:\"1\";}i:7;a:3:{i:0;s:8:\"20191204\";i:1;s:9:\"Wednesday\";i:2;s:1:\"2\";}i:8;a:3:{i:0;s:8:\"20191205\";i:1;s:8:\"Thursday\";i:2;s:1:\"0\";}i:9;a:3:{i:0;s:8:\"20191206\";i:1;s:6:\"Friday\";i:2;s:1:\"0\";}i:10;a:3:{i:0;s:8:\"20191207\";i:1;s:8:\"Saturday\";i:2;s:1:\"0\";}i:11;a:3:{i:0;s:8:\"20191208\";i:1;s:6:\"Sunday\";i:2;s:1:\"1\";}i:12;a:3:{i:0;s:8:\"20191209\";i:1;s:6:\"Monday\";i:2;s:1:\"0\";}i:13;a:3:{i:0;s:8:\"20191210\";i:1;s:7:\"Tuesday\";i:2;s:1:\"0\";}i:14;a:3:{i:0;s:8:\"20191211\";i:1;s:9:\"Wednesday\";i:2;s:1:\"3\";}i:15;a:3:{i:0;s:8:\"20191212\";i:1;s:8:\"Thursday\";i:2;s:1:\"1\";}i:16;a:3:{i:0;s:8:\"20191213\";i:1;s:6:\"Friday\";i:2;s:1:\"0\";}i:17;a:3:{i:0;s:8:\"20191214\";i:1;s:8:\"Saturday\";i:2;s:1:\"1\";}i:18;a:3:{i:0;s:8:\"20191215\";i:1;s:6:\"Sunday\";i:2;s:1:\"0\";}i:19;a:3:{i:0;s:8:\"20191216\";i:1;s:6:\"Monday\";i:2;s:1:\"0\";}i:20;a:3:{i:0;s:8:\"20191217\";i:1;s:7:\"Tuesday\";i:2;s:1:\"1\";}i:21;a:3:{i:0;s:8:\"20191218\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:22;a:3:{i:0;s:8:\"20191219\";i:1;s:8:\"Thursday\";i:2;s:1:\"0\";}i:23;a:3:{i:0;s:8:\"20191220\";i:1;s:6:\"Friday\";i:2;s:1:\"0\";}i:24;a:3:{i:0;s:8:\"20191221\";i:1;s:8:\"Saturday\";i:2;s:1:\"0\";}i:25;a:3:{i:0;s:8:\"20191222\";i:1;s:6:\"Sunday\";i:2;s:1:\"0\";}i:26;a:3:{i:0;s:8:\"20191223\";i:1;s:6:\"Monday\";i:2;s:1:\"1\";}i:27;a:3:{i:0;s:8:\"20191224\";i:1;s:7:\"Tuesday\";i:2;s:1:\"0\";}i:28;a:3:{i:0;s:8:\"20191225\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:29;a:3:{i:0;s:8:\"20191226\";i:1;s:8:\"Thursday\";i:2;s:1:\"2\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:242:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:uniquePageviews&filters=ga:pagePath%3D%3D/2019/05/kubernetes-elasticsearch-python-importer/&start-date=30daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:30;s:19:\"totalsForAllResults\";a:1:{s:18:\"ga:uniquePageviews\";s:2:\"14\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:9:\"30daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:24:\"ga:date,ga:dayOfWeekName\";s:7:\"metrics\";a:1:{i:0;s:18:\"ga:uniquePageviews\";}s:7:\"filters\";s:63:\"ga:pagePath==/2019/05/kubernetes-elasticsearch-python-importer/\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:3:{i:0;a:3:{s:4:\"name\";s:7:\"ga:date\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:16:\"ga:dayOfWeekName\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:2;a:3:{s:4:\"name\";s:18:\"ga:uniquePageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1577505600;}','no'),(16876,'gadwp_cache_qr3_1030946805','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:332:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&metrics=ga:uniquePageviews,ga:users,ga:pageviews,ga:BounceRate,ga:organicSearches,ga:pageviewsPerSession,ga:avgTimeOnPage,ga:avgPageLoadTime,ga:exitRate&filters=ga:pagePath%3D%3D/2019/05/kubernetes-elasticsearch-python-importer/&start-date=30daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:1:{i:0;a:9:{i:0;s:2:\"14\";i:1;s:2:\"14\";i:2;s:2:\"16\";i:3;s:17:\"77.77777777777779\";i:4;s:1:\"9\";i:5;s:18:\"1.7777777777777777\";i:6;s:4:\"58.5\";i:7;s:3:\"0.0\";i:8;s:4:\"62.5\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:332:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&metrics=ga:uniquePageviews,ga:users,ga:pageviews,ga:BounceRate,ga:organicSearches,ga:pageviewsPerSession,ga:avgTimeOnPage,ga:avgPageLoadTime,ga:exitRate&filters=ga:pagePath%3D%3D/2019/05/kubernetes-elasticsearch-python-importer/&start-date=30daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:1;s:19:\"totalsForAllResults\";a:9:{s:18:\"ga:uniquePageviews\";s:2:\"14\";s:8:\"ga:users\";s:2:\"14\";s:12:\"ga:pageviews\";s:2:\"16\";s:13:\"ga:BounceRate\";s:17:\"77.77777777777779\";s:18:\"ga:organicSearches\";s:1:\"9\";s:22:\"ga:pageviewsPerSession\";s:18:\"1.7777777777777777\";s:16:\"ga:avgTimeOnPage\";s:4:\"58.5\";s:18:\"ga:avgPageLoadTime\";s:3:\"0.0\";s:11:\"ga:exitRate\";s:4:\"62.5\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:8:{s:10:\"start-date\";s:9:\"30daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:7:\"metrics\";a:9:{i:0;s:18:\"ga:uniquePageviews\";i:1;s:8:\"ga:users\";i:2;s:12:\"ga:pageviews\";i:3;s:13:\"ga:BounceRate\";i:4;s:18:\"ga:organicSearches\";i:5;s:22:\"ga:pageviewsPerSession\";i:6;s:16:\"ga:avgTimeOnPage\";i:7;s:18:\"ga:avgPageLoadTime\";i:8;s:11:\"ga:exitRate\";}s:7:\"filters\";s:63:\"ga:pagePath==/2019/05/kubernetes-elasticsearch-python-importer/\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:9:{i:0;a:3:{s:4:\"name\";s:18:\"ga:uniquePageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:2;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:3;a:3:{s:4:\"name\";s:13:\"ga:BounceRate\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"PERCENT\";}i:4;a:3:{s:4:\"name\";s:18:\"ga:organicSearches\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:5;a:3:{s:4:\"name\";s:22:\"ga:pageviewsPerSession\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:5:\"FLOAT\";}i:6;a:3:{s:4:\"name\";s:16:\"ga:avgTimeOnPage\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:4:\"TIME\";}i:7;a:3:{s:4:\"name\";s:18:\"ga:avgPageLoadTime\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:5:\"FLOAT\";}i:8;a:3:{s:4:\"name\";s:11:\"ga:exitRate\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"PERCENT\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1577505600;}','no'),(16877,'gadwp_cache_qr2_882934244','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:228:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:uniquePageviews&filters=ga:pagePath%3D%3D/2019/12/fourier-series-from-points/&start-date=30daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:30:{i:0;a:3:{i:0;s:8:\"20191127\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:1;a:3:{i:0;s:8:\"20191128\";i:1;s:8:\"Thursday\";i:2;s:1:\"0\";}i:2;a:3:{i:0;s:8:\"20191129\";i:1;s:6:\"Friday\";i:2;s:1:\"0\";}i:3;a:3:{i:0;s:8:\"20191130\";i:1;s:8:\"Saturday\";i:2;s:1:\"0\";}i:4;a:3:{i:0;s:8:\"20191201\";i:1;s:6:\"Sunday\";i:2;s:1:\"0\";}i:5;a:3:{i:0;s:8:\"20191202\";i:1;s:6:\"Monday\";i:2;s:1:\"0\";}i:6;a:3:{i:0;s:8:\"20191203\";i:1;s:7:\"Tuesday\";i:2;s:1:\"0\";}i:7;a:3:{i:0;s:8:\"20191204\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:8;a:3:{i:0;s:8:\"20191205\";i:1;s:8:\"Thursday\";i:2;s:1:\"0\";}i:9;a:3:{i:0;s:8:\"20191206\";i:1;s:6:\"Friday\";i:2;s:1:\"0\";}i:10;a:3:{i:0;s:8:\"20191207\";i:1;s:8:\"Saturday\";i:2;s:1:\"0\";}i:11;a:3:{i:0;s:8:\"20191208\";i:1;s:6:\"Sunday\";i:2;s:1:\"0\";}i:12;a:3:{i:0;s:8:\"20191209\";i:1;s:6:\"Monday\";i:2;s:1:\"0\";}i:13;a:3:{i:0;s:8:\"20191210\";i:1;s:7:\"Tuesday\";i:2;s:1:\"0\";}i:14;a:3:{i:0;s:8:\"20191211\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:15;a:3:{i:0;s:8:\"20191212\";i:1;s:8:\"Thursday\";i:2;s:1:\"0\";}i:16;a:3:{i:0;s:8:\"20191213\";i:1;s:6:\"Friday\";i:2;s:1:\"0\";}i:17;a:3:{i:0;s:8:\"20191214\";i:1;s:8:\"Saturday\";i:2;s:1:\"0\";}i:18;a:3:{i:0;s:8:\"20191215\";i:1;s:6:\"Sunday\";i:2;s:1:\"0\";}i:19;a:3:{i:0;s:8:\"20191216\";i:1;s:6:\"Monday\";i:2;s:1:\"0\";}i:20;a:3:{i:0;s:8:\"20191217\";i:1;s:7:\"Tuesday\";i:2;s:1:\"0\";}i:21;a:3:{i:0;s:8:\"20191218\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:22;a:3:{i:0;s:8:\"20191219\";i:1;s:8:\"Thursday\";i:2;s:1:\"0\";}i:23;a:3:{i:0;s:8:\"20191220\";i:1;s:6:\"Friday\";i:2;s:1:\"0\";}i:24;a:3:{i:0;s:8:\"20191221\";i:1;s:8:\"Saturday\";i:2;s:1:\"0\";}i:25;a:3:{i:0;s:8:\"20191222\";i:1;s:6:\"Sunday\";i:2;s:1:\"0\";}i:26;a:3:{i:0;s:8:\"20191223\";i:1;s:6:\"Monday\";i:2;s:1:\"0\";}i:27;a:3:{i:0;s:8:\"20191224\";i:1;s:7:\"Tuesday\";i:2;s:1:\"0\";}i:28;a:3:{i:0;s:8:\"20191225\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:29;a:3:{i:0;s:8:\"20191226\";i:1;s:8:\"Thursday\";i:2;s:1:\"2\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:228:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:uniquePageviews&filters=ga:pagePath%3D%3D/2019/12/fourier-series-from-points/&start-date=30daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:30;s:19:\"totalsForAllResults\";a:1:{s:18:\"ga:uniquePageviews\";s:1:\"2\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:9:\"30daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:24:\"ga:date,ga:dayOfWeekName\";s:7:\"metrics\";a:1:{i:0;s:18:\"ga:uniquePageviews\";}s:7:\"filters\";s:49:\"ga:pagePath==/2019/12/fourier-series-from-points/\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:3:{i:0;a:3:{s:4:\"name\";s:7:\"ga:date\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:16:\"ga:dayOfWeekName\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:2;a:3:{s:4:\"name\";s:18:\"ga:uniquePageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1577505600;}','no'),(16878,'gadwp_cache_qr3_936506852','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:318:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&metrics=ga:uniquePageviews,ga:users,ga:pageviews,ga:BounceRate,ga:organicSearches,ga:pageviewsPerSession,ga:avgTimeOnPage,ga:avgPageLoadTime,ga:exitRate&filters=ga:pagePath%3D%3D/2019/12/fourier-series-from-points/&start-date=30daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:1:{i:0;a:9:{i:0;s:1:\"2\";i:1;s:1:\"2\";i:2;s:1:\"5\";i:3;s:5:\"100.0\";i:4;s:1:\"0\";i:5;s:3:\"5.0\";i:6;s:4:\"42.0\";i:7;s:3:\"0.0\";i:8;s:4:\"40.0\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:318:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&metrics=ga:uniquePageviews,ga:users,ga:pageviews,ga:BounceRate,ga:organicSearches,ga:pageviewsPerSession,ga:avgTimeOnPage,ga:avgPageLoadTime,ga:exitRate&filters=ga:pagePath%3D%3D/2019/12/fourier-series-from-points/&start-date=30daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:1;s:19:\"totalsForAllResults\";a:9:{s:18:\"ga:uniquePageviews\";s:1:\"2\";s:8:\"ga:users\";s:1:\"2\";s:12:\"ga:pageviews\";s:1:\"5\";s:13:\"ga:BounceRate\";s:5:\"100.0\";s:18:\"ga:organicSearches\";s:1:\"0\";s:22:\"ga:pageviewsPerSession\";s:3:\"5.0\";s:16:\"ga:avgTimeOnPage\";s:4:\"42.0\";s:18:\"ga:avgPageLoadTime\";s:3:\"0.0\";s:11:\"ga:exitRate\";s:4:\"40.0\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:8:{s:10:\"start-date\";s:9:\"30daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:7:\"metrics\";a:9:{i:0;s:18:\"ga:uniquePageviews\";i:1;s:8:\"ga:users\";i:2;s:12:\"ga:pageviews\";i:3;s:13:\"ga:BounceRate\";i:4;s:18:\"ga:organicSearches\";i:5;s:22:\"ga:pageviewsPerSession\";i:6;s:16:\"ga:avgTimeOnPage\";i:7;s:18:\"ga:avgPageLoadTime\";i:8;s:11:\"ga:exitRate\";}s:7:\"filters\";s:49:\"ga:pagePath==/2019/12/fourier-series-from-points/\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:9:{i:0;a:3:{s:4:\"name\";s:18:\"ga:uniquePageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:2;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:3;a:3:{s:4:\"name\";s:13:\"ga:BounceRate\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"PERCENT\";}i:4;a:3:{s:4:\"name\";s:18:\"ga:organicSearches\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:5;a:3:{s:4:\"name\";s:22:\"ga:pageviewsPerSession\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:5:\"FLOAT\";}i:6;a:3:{s:4:\"name\";s:16:\"ga:avgTimeOnPage\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:4:\"TIME\";}i:7;a:3:{s:4:\"name\";s:18:\"ga:avgPageLoadTime\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:5:\"FLOAT\";}i:8;a:3:{s:4:\"name\";s:11:\"ga:exitRate\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"PERCENT\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1577505600;}','no'),(16916,'gadwp_cache_qr2_10857565','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:227:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:uniquePageviews&filters=ga:pagePath%3D%3D/2019/12/fourier-series-from-points/&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:7:{i:0;a:3:{i:0;s:8:\"20191220\";i:1;s:6:\"Friday\";i:2;s:1:\"0\";}i:1;a:3:{i:0;s:8:\"20191221\";i:1;s:8:\"Saturday\";i:2;s:1:\"0\";}i:2;a:3:{i:0;s:8:\"20191222\";i:1;s:6:\"Sunday\";i:2;s:1:\"0\";}i:3;a:3:{i:0;s:8:\"20191223\";i:1;s:6:\"Monday\";i:2;s:1:\"0\";}i:4;a:3:{i:0;s:8:\"20191224\";i:1;s:7:\"Tuesday\";i:2;s:1:\"0\";}i:5;a:3:{i:0;s:8:\"20191225\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:6;a:3:{i:0;s:8:\"20191226\";i:1;s:8:\"Thursday\";i:2;s:1:\"2\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:227:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:uniquePageviews&filters=ga:pagePath%3D%3D/2019/12/fourier-series-from-points/&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:7;s:19:\"totalsForAllResults\";a:1:{s:18:\"ga:uniquePageviews\";s:1:\"2\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:24:\"ga:date,ga:dayOfWeekName\";s:7:\"metrics\";a:1:{i:0;s:18:\"ga:uniquePageviews\";}s:7:\"filters\";s:49:\"ga:pagePath==/2019/12/fourier-series-from-points/\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:3:{i:0;a:3:{s:4:\"name\";s:7:\"ga:date\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:16:\"ga:dayOfWeekName\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:2;a:3:{s:4:\"name\";s:18:\"ga:uniquePageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1577505600;}','no'),(16917,'gadwp_cache_qr3_738735433','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:317:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&metrics=ga:uniquePageviews,ga:users,ga:pageviews,ga:BounceRate,ga:organicSearches,ga:pageviewsPerSession,ga:avgTimeOnPage,ga:avgPageLoadTime,ga:exitRate&filters=ga:pagePath%3D%3D/2019/12/fourier-series-from-points/&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:1:{i:0;a:9:{i:0;s:1:\"2\";i:1;s:1:\"2\";i:2;s:1:\"5\";i:3;s:5:\"100.0\";i:4;s:1:\"0\";i:5;s:3:\"5.0\";i:6;s:4:\"42.0\";i:7;s:3:\"0.0\";i:8;s:4:\"40.0\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:317:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&metrics=ga:uniquePageviews,ga:users,ga:pageviews,ga:BounceRate,ga:organicSearches,ga:pageviewsPerSession,ga:avgTimeOnPage,ga:avgPageLoadTime,ga:exitRate&filters=ga:pagePath%3D%3D/2019/12/fourier-series-from-points/&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:1;s:19:\"totalsForAllResults\";a:9:{s:18:\"ga:uniquePageviews\";s:1:\"2\";s:8:\"ga:users\";s:1:\"2\";s:12:\"ga:pageviews\";s:1:\"5\";s:13:\"ga:BounceRate\";s:5:\"100.0\";s:18:\"ga:organicSearches\";s:1:\"0\";s:22:\"ga:pageviewsPerSession\";s:3:\"5.0\";s:16:\"ga:avgTimeOnPage\";s:4:\"42.0\";s:18:\"ga:avgPageLoadTime\";s:3:\"0.0\";s:11:\"ga:exitRate\";s:4:\"40.0\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:8:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:7:\"metrics\";a:9:{i:0;s:18:\"ga:uniquePageviews\";i:1;s:8:\"ga:users\";i:2;s:12:\"ga:pageviews\";i:3;s:13:\"ga:BounceRate\";i:4;s:18:\"ga:organicSearches\";i:5;s:22:\"ga:pageviewsPerSession\";i:6;s:16:\"ga:avgTimeOnPage\";i:7;s:18:\"ga:avgPageLoadTime\";i:8;s:11:\"ga:exitRate\";}s:7:\"filters\";s:49:\"ga:pagePath==/2019/12/fourier-series-from-points/\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:9:{i:0;a:3:{s:4:\"name\";s:18:\"ga:uniquePageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:2;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:3;a:3:{s:4:\"name\";s:13:\"ga:BounceRate\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"PERCENT\";}i:4;a:3:{s:4:\"name\";s:18:\"ga:organicSearches\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:5;a:3:{s:4:\"name\";s:22:\"ga:pageviewsPerSession\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:5:\"FLOAT\";}i:6;a:3:{s:4:\"name\";s:16:\"ga:avgTimeOnPage\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:4:\"TIME\";}i:7;a:3:{s:4:\"name\";s:18:\"ga:avgPageLoadTime\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:5:\"FLOAT\";}i:8;a:3:{s:4:\"name\";s:11:\"ga:exitRate\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"PERCENT\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1577505600;}','no'),(16918,'gadwp_cache_qr2_290173686','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:227:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:organicSearches&filters=ga:pagePath%3D%3D/2019/12/fourier-series-from-points/&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:7:{i:0;a:3:{i:0;s:8:\"20191220\";i:1;s:6:\"Friday\";i:2;s:1:\"0\";}i:1;a:3:{i:0;s:8:\"20191221\";i:1;s:8:\"Saturday\";i:2;s:1:\"0\";}i:2;a:3:{i:0;s:8:\"20191222\";i:1;s:6:\"Sunday\";i:2;s:1:\"0\";}i:3;a:3:{i:0;s:8:\"20191223\";i:1;s:6:\"Monday\";i:2;s:1:\"0\";}i:4;a:3:{i:0;s:8:\"20191224\";i:1;s:7:\"Tuesday\";i:2;s:1:\"0\";}i:5;a:3:{i:0;s:8:\"20191225\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:6;a:3:{i:0;s:8:\"20191226\";i:1;s:8:\"Thursday\";i:2;s:1:\"0\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:227:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:organicSearches&filters=ga:pagePath%3D%3D/2019/12/fourier-series-from-points/&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:7;s:19:\"totalsForAllResults\";a:1:{s:18:\"ga:organicSearches\";s:1:\"0\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:24:\"ga:date,ga:dayOfWeekName\";s:7:\"metrics\";a:1:{i:0;s:18:\"ga:organicSearches\";}s:7:\"filters\";s:49:\"ga:pagePath==/2019/12/fourier-series-from-points/\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:3:{i:0;a:3:{s:4:\"name\";s:7:\"ga:date\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:16:\"ga:dayOfWeekName\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:2;a:3:{s:4:\"name\";s:18:\"ga:organicSearches\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1577505600;}','no'),(16919,'gadwp_cache_qr2_613037961','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:221:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:pageviews&filters=ga:pagePath%3D%3D/2019/12/fourier-series-from-points/&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:7:{i:0;a:3:{i:0;s:8:\"20191220\";i:1;s:6:\"Friday\";i:2;s:1:\"0\";}i:1;a:3:{i:0;s:8:\"20191221\";i:1;s:8:\"Saturday\";i:2;s:1:\"0\";}i:2;a:3:{i:0;s:8:\"20191222\";i:1;s:6:\"Sunday\";i:2;s:1:\"0\";}i:3;a:3:{i:0;s:8:\"20191223\";i:1;s:6:\"Monday\";i:2;s:1:\"0\";}i:4;a:3:{i:0;s:8:\"20191224\";i:1;s:7:\"Tuesday\";i:2;s:1:\"0\";}i:5;a:3:{i:0;s:8:\"20191225\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:6;a:3:{i:0;s:8:\"20191226\";i:1;s:8:\"Thursday\";i:2;s:1:\"5\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:221:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:pageviews&filters=ga:pagePath%3D%3D/2019/12/fourier-series-from-points/&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:7;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:1:\"5\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:24:\"ga:date,ga:dayOfWeekName\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:7:\"filters\";s:49:\"ga:pagePath==/2019/12/fourier-series-from-points/\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:3:{i:0;a:3:{s:4:\"name\";s:7:\"ga:date\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:16:\"ga:dayOfWeekName\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:2;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1577505600;}','no'),(16936,'wpseo_taxonomy_meta','a:1:{s:8:\"category\";a:4:{i:90;a:3:{s:10:\"wpseo_desc\";s:139:\"Applied machine learning and deep learning topics. Blogs outline techniques, skills, tools, algorithms, software used to get ML/DL running.\";s:13:\"wpseo_linkdex\";s:2:\"43\";s:19:\"wpseo_content_score\";s:2:\"90\";}i:1;a:4:{s:21:\"wpseo_keywordsynonyms\";s:4:\"[\"\"]\";s:10:\"wpseo_desc\";s:130:\"General technology posts. We abolustly adore technology at Translucent and we work with some many different types of technologies.\";s:13:\"wpseo_linkdex\";s:2:\"43\";s:19:\"wpseo_content_score\";s:2:\"60\";}i:94;a:3:{s:10:\"wpseo_desc\";s:118:\"Blogs examining Kubernetes. Processes, tools, technologies related to the Kubernetes cluster and Kubernetes ecosystem.\";s:13:\"wpseo_linkdex\";s:2:\"34\";s:19:\"wpseo_content_score\";s:2:\"30\";}i:1022;a:3:{s:21:\"wpseo_keywordsynonyms\";s:4:\"[\"\"]\";s:13:\"wpseo_linkdex\";s:2:\"32\";s:19:\"wpseo_content_score\";s:1:\"0\";}}}','yes'),(17264,'gadwp_cache_qr8_2834886610','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:169:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:deviceCategory&metrics=ga:sessions&sort=-ga:sessions&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:3:{i:0;a:2:{i:0;s:7:\"desktop\";i:1;s:2:\"46\";}i:1;a:2:{i:0;s:6:\"mobile\";i:1;s:2:\"21\";}i:2;a:2:{i:0;s:6:\"tablet\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:169:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:deviceCategory&metrics=ga:sessions&sort=-ga:sessions&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:3;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:2:\"68\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:17:\"ga:deviceCategory\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:17:\"ga:deviceCategory\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1577764800;}','no'),(17265,'gadwp_cache_qr10_2533684853','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:194:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:browser&metrics=ga:sessions&sort=-ga:sessions&filters=ga:browser!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:6:{i:0;a:2:{i:0;s:6:\"Chrome\";i:1;s:2:\"44\";}i:1;a:2:{i:0;s:6:\"Safari\";i:1;s:2:\"18\";}i:2;a:2:{i:0;s:7:\"Firefox\";i:1;s:1:\"2\";}i:3;a:2:{i:0;s:16:\"Samsung Internet\";i:1;s:1:\"2\";}i:4;a:2:{i:0;s:17:\"Internet Explorer\";i:1;s:1:\"1\";}i:5;a:2:{i:0;s:24:\"Mozilla Compatible Agent\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:194:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:browser&metrics=ga:sessions&sort=-ga:sessions&filters=ga:browser!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:6;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:2:\"68\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:10:\"ga:browser\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:7:\"filters\";s:21:\"ga:browser!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:10:\"ga:browser\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1577764800;}','no'),(17266,'gadwp_cache_qr10_2644836396','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:210:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:operatingSystem&metrics=ga:sessions&sort=-ga:sessions&filters=ga:operatingSystem!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:6:{i:0;a:2:{i:0;s:9:\"Macintosh\";i:1;s:2:\"24\";}i:1;a:2:{i:0;s:7:\"Windows\";i:1;s:2:\"17\";}i:2;a:2:{i:0;s:7:\"Android\";i:1;s:2:\"12\";}i:3;a:2:{i:0;s:3:\"iOS\";i:1;s:1:\"9\";}i:4;a:2:{i:0;s:5:\"Linux\";i:1;s:1:\"4\";}i:5;a:2:{i:0;s:9:\"Chrome OS\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:210:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:operatingSystem&metrics=ga:sessions&sort=-ga:sessions&filters=ga:operatingSystem!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:6;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:2:\"67\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:18:\"ga:operatingSystem\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:7:\"filters\";s:29:\"ga:operatingSystem!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:18:\"ga:operatingSystem\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1577764800;}','no'),(17267,'gadwp_cache_qr10_2316081963','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:212:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:screenResolution&metrics=ga:sessions&sort=-ga:sessions&filters=ga:screenResolution!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:27:{i:0;a:2:{i:0;s:9:\"1680x1050\";i:1;s:2:\"19\";}i:1;a:2:{i:0;s:9:\"1920x1080\";i:1;s:1:\"6\";}i:2;a:2:{i:0;s:7:\"414x896\";i:1;s:1:\"5\";}i:3;a:2:{i:0;s:8:\"1366x768\";i:1;s:1:\"3\";}i:4;a:2:{i:0;s:8:\"1440x900\";i:1;s:1:\"3\";}i:5;a:2:{i:0;s:7:\"412x846\";i:1;s:1:\"3\";}i:6;a:2:{i:0;s:8:\"1280x720\";i:1;s:1:\"2\";}i:7;a:2:{i:0;s:8:\"1360x768\";i:1;s:1:\"2\";}i:8;a:2:{i:0;s:8:\"1536x864\";i:1;s:1:\"2\";}i:9;a:2:{i:0;s:9:\"3008x1692\";i:1;s:1:\"2\";}i:10;a:2:{i:0;s:7:\"360x760\";i:1;s:1:\"2\";}i:11;a:2:{i:0;s:7:\"375x667\";i:1;s:1:\"2\";}i:12;a:2:{i:0;s:7:\"412x869\";i:1;s:1:\"2\";}i:13;a:2:{i:0;s:7:\"414x736\";i:1;s:1:\"2\";}i:14;a:2:{i:0;s:9:\"1024x1024\";i:1;s:1:\"1\";}i:15;a:2:{i:0;s:8:\"1024x768\";i:1;s:1:\"1\";}i:16;a:2:{i:0;s:8:\"1024x800\";i:1;s:1:\"1\";}i:17;a:2:{i:0;s:8:\"1440x960\";i:1;s:1:\"1\";}i:18;a:2:{i:0;s:8:\"1600x900\";i:1;s:1:\"1\";}i:19;a:2:{i:0;s:9:\"1715x1143\";i:1;s:1:\"1\";}i:20;a:2:{i:0;s:9:\"1920x1200\";i:1;s:1:\"1\";}i:21;a:2:{i:0;s:7:\"360x640\";i:1;s:1:\"1\";}i:22;a:2:{i:0;s:7:\"360x720\";i:1;s:1:\"1\";}i:23;a:2:{i:0;s:7:\"360x780\";i:1;s:1:\"1\";}i:24;a:2:{i:0;s:7:\"412x732\";i:1;s:1:\"1\";}i:25;a:2:{i:0;s:7:\"412x892\";i:1;s:1:\"1\";}i:26;a:2:{i:0;s:7:\"800x600\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:212:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:screenResolution&metrics=ga:sessions&sort=-ga:sessions&filters=ga:screenResolution!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:27;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:2:\"68\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:19:\"ga:screenResolution\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:7:\"filters\";s:30:\"ga:screenResolution!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:19:\"ga:screenResolution\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1577764800;}','no'),(17268,'gadwp_cache_qr10_25077411','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:220:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:mobileDeviceBranding&metrics=ga:sessions&sort=-ga:sessions&filters=ga:mobileDeviceBranding!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:8:{i:0;a:2:{i:0;s:5:\"Apple\";i:1;s:1:\"9\";}i:1;a:2:{i:0;s:7:\"Samsung\";i:1;s:1:\"4\";}i:2;a:2:{i:0;s:6:\"Google\";i:1;s:1:\"2\";}i:3;a:2:{i:0;s:6:\"Huawei\";i:1;s:1:\"2\";}i:4;a:2:{i:0;s:8:\"Motorola\";i:1;s:1:\"2\";}i:5;a:2:{i:0;s:6:\"Lenovo\";i:1;s:1:\"1\";}i:6;a:2:{i:0;s:9:\"Microsoft\";i:1;s:1:\"1\";}i:7;a:2:{i:0;s:5:\"Nokia\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:220:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:mobileDeviceBranding&metrics=ga:sessions&sort=-ga:sessions&filters=ga:mobileDeviceBranding!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:8;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:2:\"22\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:23:\"ga:mobileDeviceBranding\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:7:\"filters\";s:34:\"ga:mobileDeviceBranding!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:23:\"ga:mobileDeviceBranding\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1577764800;}','no'),(17319,'syntaxhighlighter_settings','a:15:{s:9:\"shversion\";i:3;s:5:\"theme\";s:8:\"midnight\";s:6:\"gutter\";i:1;s:9:\"autolinks\";i:1;s:9:\"smarttabs\";i:1;s:9:\"wraplines\";i:1;s:9:\"classname\";s:0:\"\";s:9:\"firstline\";i:1;s:14:\"padlinenumbers\";s:5:\"false\";s:7:\"tabsize\";i:4;s:5:\"title\";s:0:\"\";s:14:\"loadallbrushes\";i:0;s:8:\"collapse\";i:0;s:5:\"light\";i:0;s:7:\"toolbar\";i:0;}','yes'),(17331,'gadwp_cache_qr2_458444471','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:141:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:hour&metrics=ga:visitBounceRate&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:24:{i:0;a:2:{i:0;s:2:\"00\";i:1;s:3:\"0.0\";}i:1;a:2:{i:0;s:2:\"01\";i:1;s:5:\"100.0\";}i:2;a:2:{i:0;s:2:\"02\";i:1;s:3:\"0.0\";}i:3;a:2:{i:0;s:2:\"03\";i:1;s:3:\"0.0\";}i:4;a:2:{i:0;s:2:\"04\";i:1;s:5:\"100.0\";}i:5;a:2:{i:0;s:2:\"05\";i:1;s:3:\"0.0\";}i:6;a:2:{i:0;s:2:\"06\";i:1;s:5:\"100.0\";}i:7;a:2:{i:0;s:2:\"07\";i:1;s:5:\"100.0\";}i:8;a:2:{i:0;s:2:\"08\";i:1;s:3:\"0.0\";}i:9;a:2:{i:0;s:2:\"09\";i:1;s:4:\"50.0\";}i:10;a:2:{i:0;s:2:\"10\";i:1;s:5:\"100.0\";}i:11;a:2:{i:0;s:2:\"11\";i:1;s:5:\"100.0\";}i:12;a:2:{i:0;s:2:\"12\";i:1;s:4:\"40.0\";}i:13;a:2:{i:0;s:2:\"13\";i:1;s:4:\"50.0\";}i:14;a:2:{i:0;s:2:\"14\";i:1;s:3:\"0.0\";}i:15;a:2:{i:0;s:2:\"15\";i:1;s:3:\"0.0\";}i:16;a:2:{i:0;s:2:\"16\";i:1;s:4:\"25.0\";}i:17;a:2:{i:0;s:2:\"17\";i:1;s:3:\"0.0\";}i:18;a:2:{i:0;s:2:\"18\";i:1;s:3:\"0.0\";}i:19;a:2:{i:0;s:2:\"19\";i:1;s:3:\"0.0\";}i:20;a:2:{i:0;s:2:\"20\";i:1;s:3:\"0.0\";}i:21;a:2:{i:0;s:2:\"21\";i:1;s:3:\"0.0\";}i:22;a:2:{i:0;s:2:\"22\";i:1;s:3:\"0.0\";}i:23;a:2:{i:0;s:2:\"23\";i:1;s:3:\"0.0\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:141:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:hour&metrics=ga:visitBounceRate&start-date=today&end-date=today\";s:12:\"totalResults\";i:24;s:19:\"totalsForAllResults\";a:1:{s:18:\"ga:visitBounceRate\";s:17:\"54.54545454545454\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:8:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:7:\"ga:hour\";s:7:\"metrics\";a:1:{i:0;s:18:\"ga:visitBounceRate\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:7:\"ga:hour\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:18:\"ga:visitBounceRate\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"PERCENT\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1577743200;}','no'),(17448,'code_snippets_version','2.13.3','yes'),(17449,'code_snippets_settings','a:3:{s:7:\"general\";a:6:{s:19:\"activate_by_default\";b:1;s:21:\"snippet_scope_enabled\";b:1;s:11:\"enable_tags\";b:1;s:18:\"enable_description\";b:1;s:13:\"disable_prism\";b:0;s:18:\"complete_uninstall\";b:0;}s:18:\"description_editor\";a:3:{s:4:\"rows\";i:5;s:12:\"use_full_mce\";b:0;s:13:\"media_buttons\";b:0;}s:6:\"editor\";a:8:{s:5:\"theme\";s:7:\"default\";s:16:\"indent_with_tabs\";b:1;s:8:\"tab_size\";i:4;s:11:\"indent_unit\";i:4;s:10:\"wrap_lines\";b:1;s:12:\"line_numbers\";b:1;s:19:\"auto_close_brackets\";b:1;s:27:\"highlight_selection_matches\";b:1;}}','yes'),(17453,'wpcm_setting_editor_lineNumbers','yes','yes'),(17464,'__uagb_do_redirect','','yes'),(17465,'uagb-version','1.14.6','yes'),(17470,'recovery_keys','a:1:{s:22:\"zU6G7ebHHloxyLsCopCN44\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BASoBEHVkhh.Fl3rB5FK8cxAgfaWoa.\";s:10:\"created_at\";i:1663316022;}}','yes'),(17471,'admin_email_lifespan','1664230704','yes'),(17673,'gadwp_cache_qr4_675458715','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:158:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:pageTitle&metrics=ga:users&sort=-ga:users&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:33:{i:0;a:2:{i:0;s:37:\"ML in Frequency Domain? - Translucent\";i:1;s:2:\"32\";}i:1;a:2:{i:0;s:43:\"Performance In Jupyter Python - Translucent\";i:1;s:2:\"25\";}i:2;a:2:{i:0;s:67:\"Translucent Digital Transformation - We Listen. We Learn. We Inform\";i:1;s:2:\"22\";}i:3;a:2:{i:0;s:40:\"Fourier Series From Points - Translucent\";i:1;s:2:\"13\";}i:4;a:2:{i:0;s:18:\"Blog - Translucent\";i:1;s:2:\"10\";}i:5;a:2:{i:0;s:65:\"Contact - Translucent | Creating Digital Transformation Solutions\";i:1;s:1:\"6\";}i:6;a:2:{i:0;s:56:\"Kubernetes, Elasticsearch, Python Importer - Translucent\";i:1;s:1:\"6\";}i:7;a:2:{i:0;s:65:\"Machine Learning - Hand Written Numbers Recognition - Translucent\";i:1;s:1:\"6\";}i:8;a:2:{i:0;s:47:\"Applied Machine Learning Archives - Translucent\";i:1;s:1:\"4\";}i:9;a:2:{i:0;s:91:\"Services - Translucent | Digital Transformation - Microservices - DevOps - Machine Learning\";i:1;s:1:\"4\";}i:10;a:2:{i:0;s:69:\"Translucent Machine Learning Strategy - Is your data working for you?\";i:1;s:1:\"4\";}i:11;a:2:{i:0;s:92:\"About Us - Translucent | Digital transformation consulting company based in Toronto, Canada.\";i:1;s:1:\"3\";}i:12;a:2:{i:0;s:44:\"Slow Performance Test Notebook - Translucent\";i:1;s:1:\"3\";}i:13;a:2:{i:0;s:33:\"Technology Archives - Translucent\";i:1;s:1:\"3\";}i:14;a:2:{i:0;s:67:\"Translucent Microservices Strategy - Incremental Steps to the Cloud\";i:1;s:1:\"3\";}i:15;a:2:{i:0;s:32:\"Blog - Page 2 of 4 - Translucent\";i:1;s:1:\"2\";}i:16;a:2:{i:0;s:32:\"Blog - Page 3 of 4 - Translucent\";i:1;s:1:\"2\";}i:17;a:2:{i:0;s:32:\"Blog - Page 4 of 4 - Translucent\";i:1;s:1:\"2\";}i:18;a:2:{i:0;s:28:\"Page not found - Translucent\";i:1;s:1:\"2\";}i:19;a:2:{i:0;s:47:\"Technology Archives - Page 2 of 5 - Translucent\";i:1;s:1:\"2\";}i:20;a:2:{i:0;s:66:\"Translucent Devops Strategy - Seamless automation and integration!\";i:1;s:1:\"2\";}i:21;a:2:{i:0;s:72:\"Translucent Digital Transformation Strategy - Empower business decisions\";i:1;s:1:\"2\";}i:22;a:2:{i:0;s:72:\"Case Study - Digital Transformation of Canadian Black Book - Translucent\";i:1;s:1:\"1\";}i:23;a:2:{i:0;s:21:\"Generating preview…\";i:1;s:1:\"1\";}i:24;a:2:{i:0;s:50:\"Hacking Robotic Arm With Leap Motion - Translucent\";i:1;s:1:\"1\";}i:25;a:2:{i:0;s:60:\"Healthcare Web Development Platform Case Study - Translucent\";i:1;s:1:\"1\";}i:26;a:2:{i:0;s:39:\"Machine Learning Archives - Translucent\";i:1;s:1:\"1\";}i:27;a:2:{i:0;s:63:\"Principal Component Analysis for Machine Learning - Translucent\";i:1;s:1:\"1\";}i:28;a:2:{i:0;s:66:\"Process - Translucent | Learn - Inception - Digital Transformation\";i:1;s:1:\"1\";}i:29;a:2:{i:0;s:47:\"Technology Archives - Page 3 of 5 - Translucent\";i:1;s:1:\"1\";}i:30;a:2:{i:0;s:47:\"Technology Archives - Page 4 of 5 - Translucent\";i:1;s:1:\"1\";}i:31;a:2:{i:0;s:64:\"The Benefits of Creative Content for your Business - Translucent\";i:1;s:1:\"1\";}i:32;a:2:{i:0;s:11:\"Translucent\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:158:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:pageTitle&metrics=ga:users&sort=-ga:users&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:33;s:19:\"totalsForAllResults\";a:1:{s:8:\"ga:users\";s:3:\"169\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:12:\"ga:pageTitle\";s:7:\"metrics\";a:1:{i:0;s:8:\"ga:users\";}s:4:\"sort\";a:1:{i:0;s:9:\"-ga:users\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ga:pageTitle\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578024000;}','no'),(17778,'gadwp_cache_qr6_4227657016','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:196:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:keyword&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:keyword!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:1:{i:0;a:2:{i:0;s:14:\"(not provided)\";i:1;s:2:\"70\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:196:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:keyword&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:keyword!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:1;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:2:\"70\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:10:\"ga:keyword\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:4:\"sort\";a:1:{i:0;s:13:\"-ga:pageviews\";}s:7:\"filters\";s:21:\"ga:keyword!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:10:\"ga:keyword\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578110400;}','no'),(17779,'gadwp_cache_qr6_3263302396','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:194:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:keyword&metrics=ga:sessions&sort=-ga:sessions&filters=ga:keyword!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:1:{i:0;a:2:{i:0;s:14:\"(not provided)\";i:1;s:2:\"20\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:194:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:keyword&metrics=ga:sessions&sort=-ga:sessions&filters=ga:keyword!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:1;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:2:\"20\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:10:\"ga:keyword\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:7:\"filters\";s:21:\"ga:keyword!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:10:\"ga:keyword\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578110400;}','no'),(17780,'gadwp_cache_qr7_3263302396','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:162:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:country&metrics=ga:sessions&sort=-ga:sessions&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:42:{i:0;a:2:{i:0;s:6:\"Canada\";i:1;s:2:\"71\";}i:1;a:2:{i:0;s:13:\"United States\";i:1;s:2:\"22\";}i:2;a:2:{i:0;s:5:\"India\";i:1;s:2:\"10\";}i:3;a:2:{i:0;s:6:\"Turkey\";i:1;s:1:\"7\";}i:4;a:2:{i:0;s:6:\"Brazil\";i:1;s:1:\"6\";}i:5;a:2:{i:0;s:6:\"France\";i:1;s:1:\"5\";}i:6;a:2:{i:0;s:8:\"Pakistan\";i:1;s:1:\"5\";}i:7;a:2:{i:0;s:9:\"Argentina\";i:1;s:1:\"4\";}i:8;a:2:{i:0;s:11:\"Netherlands\";i:1;s:1:\"4\";}i:9;a:2:{i:0;s:12:\"Saudi Arabia\";i:1;s:1:\"4\";}i:10;a:2:{i:0;s:11:\"Philippines\";i:1;s:1:\"3\";}i:11;a:2:{i:0;s:7:\"Senegal\";i:1;s:1:\"3\";}i:12;a:2:{i:0;s:7:\"Algeria\";i:1;s:1:\"2\";}i:13;a:2:{i:0;s:5:\"China\";i:1;s:1:\"2\";}i:14;a:2:{i:0;s:16:\"Côte d’Ivoire\";i:1;s:1:\"2\";}i:15;a:2:{i:0;s:6:\"Mexico\";i:1;s:1:\"2\";}i:16;a:2:{i:0;s:7:\"Nigeria\";i:1;s:1:\"2\";}i:17;a:2:{i:0;s:7:\"Romania\";i:1;s:1:\"2\";}i:18;a:2:{i:0;s:5:\"Spain\";i:1;s:1:\"2\";}i:19;a:2:{i:0;s:10:\"Bangladesh\";i:1;s:1:\"1\";}i:20;a:2:{i:0;s:7:\"Bolivia\";i:1;s:1:\"1\";}i:21;a:2:{i:0;s:5:\"Chile\";i:1;s:1:\"1\";}i:22;a:2:{i:0;s:8:\"Colombia\";i:1;s:1:\"1\";}i:23;a:2:{i:0;s:7:\"Czechia\";i:1;s:1:\"1\";}i:24;a:2:{i:0;s:18:\"Dominican Republic\";i:1;s:1:\"1\";}i:25;a:2:{i:0;s:8:\"Eswatini\";i:1;s:1:\"1\";}i:26;a:2:{i:0;s:7:\"Finland\";i:1;s:1:\"1\";}i:27;a:2:{i:0;s:5:\"Ghana\";i:1;s:1:\"1\";}i:28;a:2:{i:0;s:9:\"Indonesia\";i:1;s:1:\"1\";}i:29;a:2:{i:0;s:4:\"Iraq\";i:1;s:1:\"1\";}i:30;a:2:{i:0;s:5:\"Japan\";i:1;s:1:\"1\";}i:31;a:2:{i:0;s:8:\"Malaysia\";i:1;s:1:\"1\";}i:32;a:2:{i:0;s:5:\"Nepal\";i:1;s:1:\"1\";}i:33;a:2:{i:0;s:6:\"Norway\";i:1;s:1:\"1\";}i:34;a:2:{i:0;s:8:\"Paraguay\";i:1;s:1:\"1\";}i:35;a:2:{i:0;s:6:\"Poland\";i:1;s:1:\"1\";}i:36;a:2:{i:0;s:9:\"Singapore\";i:1;s:1:\"1\";}i:37;a:2:{i:0;s:9:\"Sri Lanka\";i:1;s:1:\"1\";}i:38;a:2:{i:0;s:6:\"Taiwan\";i:1;s:1:\"1\";}i:39;a:2:{i:0;s:8:\"Thailand\";i:1;s:1:\"1\";}i:40;a:2:{i:0;s:14:\"United Kingdom\";i:1;s:1:\"1\";}i:41;a:2:{i:0;s:7:\"Uruguay\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:162:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:country&metrics=ga:sessions&sort=-ga:sessions&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:42;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:3:\"181\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:10:\"ga:country\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:10:\"ga:country\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578110400;}','no'),(17836,'external_updates-thrive-product-manager','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1579109529;s:14:\"checkedVersion\";s:5:\"1.2.1\";s:6:\"update\";O:8:\"stdClass\":6:{s:2:\"id\";i:0;s:4:\"slug\";s:22:\"thrive-product-manager\";s:7:\"version\";s:5:\"1.2.1\";s:8:\"homepage\";N;s:12:\"download_url\";s:113:\"http://2c0fedc83157f02ada22-41873bbf94a0f18ee40f3b2aa324e2ee.r38.cf5.rackcdn.com/thrive-product-manager-1.2.1.zip\";s:14:\"upgrade_notice\";s:0:\"\";}}','no'),(17838,'tpm_connection_messages','a:0:{}','yes'),(17839,'tpm_token','OGdna29zZzR3c2t3OHdrMG80Y293ODhvY2Mwb2M4d28wZzB3Yy1zNiF4dihRN1pwMjM0TF9zbm9kdF1DdkcybWVST2swR3VyYzQ5S2l5Snp6NmtTanFBeXFwVUwmOStQNHM=','yes'),(17846,'tcm_db_version','1.0.1','yes'),(17847,'tpm_licenses','a:1:{i:178264;a:1:{i:0;s:3:\"tcm\";}}','yes'),(17848,'tve_td_db_version','1.0.0','yes'),(17849,'tcm_labels_option','a:39:{s:18:\"number_of_comments\";a:2:{s:7:\"default\";s:29:\"{number_of_comments} comments\";s:4:\"text\";s:29:\"{number_of_comments} comments\";}s:19:\"show_comments_first\";a:2:{s:7:\"default\";s:32:\"{dropdown_option} comments first\";s:4:\"text\";s:32:\"{dropdown_option} comments first\";}s:6:\"newest\";a:2:{s:7:\"default\";s:6:\"Newest\";s:4:\"text\";s:6:\"Newest\";}s:6:\"oldest\";a:2:{s:7:\"default\";s:6:\"Oldest\";s:4:\"text\";s:6:\"Oldest\";}s:9:\"top_rated\";a:2:{s:7:\"default\";s:9:\"Top rated\";s:4:\"text\";s:9:\"Top rated\";}s:13:\"enter_comment\";a:2:{s:7:\"default\";s:21:\"Enter your comment...\";s:4:\"text\";s:21:\"Enter your comment...\";}s:13:\"load_comments\";a:2:{s:7:\"default\";s:18:\"Load more comments\";s:4:\"text\";s:18:\"Load more comments\";}s:11:\"add_comment\";a:2:{s:7:\"default\";s:19:\"Add your comment...\";s:4:\"text\";s:19:\"Add your comment...\";}s:13:\"reply_to_user\";a:2:{s:7:\"default\";s:19:\"Reply to {username}\";s:4:\"text\";s:19:\"Reply to {username}\";}s:13:\"commenting_as\";a:2:{s:7:\"default\";s:24:\"Commenting as {username}\";s:4:\"text\";s:24:\"Commenting as {username}\";}s:14:\"social_account\";a:2:{s:7:\"default\";s:12:\"Log in with:\";s:4:\"text\";s:12:\"Log in with:\";}s:13:\"guest_comment\";a:2:{s:7:\"default\";s:19:\"Comment as a guest:\";s:4:\"text\";s:19:\"Comment as a guest:\";}s:4:\"name\";a:2:{s:7:\"default\";s:4:\"Name\";s:4:\"text\";s:4:\"Name\";}s:5:\"email\";a:2:{s:7:\"default\";s:30:\"Email (not displayed publicly)\";s:4:\"text\";s:30:\"Email (not displayed publicly)\";}s:7:\"website\";a:2:{s:7:\"default\";s:7:\"Website\";s:4:\"text\";s:7:\"Website\";}s:14:\"submit_comment\";a:2:{s:7:\"default\";s:14:\"Submit comment\";s:4:\"text\";s:14:\"Submit comment\";}s:4:\"vote\";a:2:{s:7:\"default\";s:5:\"Vote:\";s:4:\"text\";s:5:\"Vote:\";}s:5:\"share\";a:2:{s:7:\"default\";s:5:\"Share\";s:4:\"text\";s:5:\"Share\";}s:8:\"copy_url\";a:2:{s:7:\"default\";s:20:\"Copy link to comment\";s:4:\"text\";s:20:\"Copy link to comment\";}s:14:\"close_comments\";a:2:{s:7:\"default\";s:19:\"Comments are closed\";s:4:\"text\";s:19:\"Comments are closed\";}s:13:\"email_address\";a:2:{s:7:\"default\";s:13:\"Email address\";s:4:\"text\";s:13:\"Email address\";}s:9:\"subscribe\";a:2:{s:7:\"default\";s:21:\"Subscribe to comments\";s:4:\"text\";s:21:\"Subscribe to comments\";}s:11:\"unsubscribe\";a:2:{s:7:\"default\";s:11:\"Unsubscribe\";s:4:\"text\";s:11:\"Unsubscribe\";}s:13:\"logout_change\";a:2:{s:7:\"default\";s:13:\"Logout/Change\";s:4:\"text\";s:13:\"Logout/Change\";}s:16:\"login_on_website\";a:2:{s:7:\"default\";s:16:\"Login on website\";s:4:\"text\";s:16:\"Login on website\";}s:15:\"signin_facebook\";a:2:{s:7:\"default\";s:21:\"Sign in with Facebook\";s:4:\"text\";s:21:\"Sign in with Facebook\";}s:13:\"signin_google\";a:2:{s:7:\"default\";s:19:\"Sign in with Google\";s:4:\"text\";s:19:\"Sign in with Google\";}s:23:\"comment_content_missing\";a:2:{s:7:\"default\";s:47:\"Please add your comment text in the field below\";s:4:\"text\";s:47:\"Please add your comment text in the field below\";}s:20:\"author_name_required\";a:2:{s:7:\"default\";s:50:\"Please add your name before submitting the comment\";s:4:\"text\";s:50:\"Please add your name before submitting the comment\";}s:10:\"isRequired\";a:2:{s:7:\"default\";s:34:\"Please enter a valid email address\";s:4:\"text\";s:34:\"Please enter a valid email address\";}s:13:\"need_register\";a:2:{s:7:\"default\";s:74:\"The comment could not be saved. You must be registered in order to comment\";s:4:\"text\";s:74:\"The comment could not be saved. You must be registered in order to comment\";}s:20:\"login_submit_comment\";a:2:{s:7:\"default\";s:44:\"You need to be logged in to submit a comment\";s:4:\"text\";s:44:\"You need to be logged in to submit a comment\";}s:17:\"comment_duplicate\";a:2:{s:7:\"default\";s:72:\"Duplicate comment detected, it looks as though you\'ve already said that!\";s:4:\"text\";s:72:\"Duplicate comment detected, it looks as though you\'ve already said that!\";}s:13:\"comment_flood\";a:2:{s:7:\"default\";s:48:\"You are posting comments too quickly. Slow down.\";s:4:\"text\";s:48:\"You are posting comments too quickly. Slow down.\";}s:12:\"spam_comment\";a:2:{s:7:\"default\";s:31:\"Your comment was marked as spam\";s:4:\"text\";s:31:\"Your comment was marked as spam\";}s:25:\"rest_cookie_invalid_nonce\";a:2:{s:7:\"default\";s:23:\"Cookie nonce is invalid\";s:4:\"text\";s:23:\"Cookie nonce is invalid\";}s:25:\"tcm_receive_notifications\";a:2:{s:7:\"default\";s:44:\"Notify me when someone replies to my comment\";s:4:\"text\";s:44:\"Notify me when someone replies to my comment\";}s:11:\"remember_me\";a:2:{s:7:\"default\";s:66:\"Save the details above in this browser for the next time I comment\";s:4:\"text\";s:66:\"Save the details above in this browser for the next time I comment\";}s:15:\"storing_consent\";a:2:{s:7:\"default\";s:87:\"By using this form you agree with the storage and handling of your data by this website\";s:4:\"text\";s:87:\"By using this form you agree with the storage and handling of your data by this website\";}}','yes'),(17851,'external_updates-thrive-comments','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1579109599;s:14:\"checkedVersion\";s:5:\"1.3.6\";s:6:\"update\";O:8:\"stdClass\":6:{s:2:\"id\";i:0;s:4:\"slug\";s:15:\"thrive-comments\";s:7:\"version\";s:5:\"1.3.6\";s:8:\"homepage\";N;s:12:\"download_url\";s:58:\"http://download.thrivethemes.com/thrive-comments-1.3.6.zip\";s:14:\"upgrade_notice\";s:0:\"\";}}','no'),(17852,'tve_dash_default_cap_set','1','yes'),(17853,'tcm_mod_administrator','1','yes'),(17854,'tcm_mod_editor','1','yes'),(17855,'tcm_mod_author','1','yes'),(17856,'tcm_mod_contributor','0','yes'),(17857,'tcm_mod_subscriber','0','yes'),(17858,'tcm_mod_seo_manager','0','yes'),(17859,'tcm_mod_seo_editor','0','yes'),(17861,'tcm_plugin_ready','1','yes'),(17862,'tcm_def_caps_set','1','yes'),(17863,'thrive_affiliate_id','a:0:{}','yes'),(17864,'thrive_tt_shares','a:2:{s:8:\"facebook\";a:2:{s:5:\"count\";i:0;s:10:\"last_fetch\";i:1579111609;}s:6:\"google\";a:2:{s:5:\"count\";i:0;s:10:\"last_fetch\";i:1579111609;}}','yes'),(17865,'tcm_notification_labels','a:15:{s:13:\"email_subject\";a:2:{s:7:\"default\";s:41:\"New reply to your comment {comment_start}\";s:4:\"text\";s:41:\"New reply to your comment {comment_start}\";}s:13:\"content_title\";a:2:{s:7:\"default\";s:50:\"A reply to your comment was posted on {site_title}\";s:4:\"text\";s:50:\"A reply to your comment was posted on {site_title}\";}s:14:\"comment_posted\";a:2:{s:7:\"default\";s:30:\"Comment posted on {site_title}\";s:4:\"text\";s:30:\"Comment posted on {site_title}\";}s:8:\"reply_to\";a:2:{s:7:\"default\";s:32:\"Reply to {source_commenter_name}\";s:4:\"text\";s:32:\"Reply to {source_commenter_name}\";}s:9:\"signed_up\";a:2:{s:7:\"default\";s:76:\"You are signed up to be notified of replies to your comment on {source_page}\";s:4:\"text\";s:76:\"You are signed up to be notified of replies to your comment on {source_page}\";}s:11:\"unsubscribe\";a:2:{s:7:\"default\";s:262:\"You can {unsubscribe_link} from these notifications. Please note that this will unsubscribe you only from this notification thread. If you have signed up to receive notifications to other comments or comment threads on {site_title}, you will still receive those.\";s:4:\"text\";s:262:\"You can {unsubscribe_link} from these notifications. Please note that this will unsubscribe you only from this notification thread. If you have signed up to receive notifications to other comments or comment threads on {site_title}, you will still receive those.\";}s:15:\"replied_comment\";a:2:{s:7:\"default\";s:104:\"{source_commenter_name} wrote this reply in response to the comment by {comment_author} on {source_page}\";s:4:\"text\";s:104:\"{source_commenter_name} wrote this reply in response to the comment by {comment_author} on {source_page}\";}s:16:\"unsubscribe_text\";a:2:{s:7:\"default\";s:25:\"click here to unsubscribe\";s:4:\"text\";s:25:\"click here to unsubscribe\";}s:18:\"post_email_subject\";a:2:{s:7:\"default\";s:35:\"New comment posted on {source_page}\";s:4:\"text\";s:35:\"New comment posted on {source_page}\";}s:18:\"post_content_title\";a:2:{s:7:\"default\";s:40:\"A new comment was posted on {site_title}\";s:4:\"text\";s:40:\"A new comment was posted on {site_title}\";}s:19:\"post_comment_posted\";a:2:{s:7:\"default\";s:30:\"Comment posted on {site_title}\";s:4:\"text\";s:30:\"Comment posted on {site_title}\";}s:13:\"post_reply_to\";a:2:{s:7:\"default\";s:32:\"Reply to {source_commenter_name}\";s:4:\"text\";s:32:\"Reply to {source_commenter_name}\";}s:14:\"post_signed_up\";a:2:{s:7:\"default\";s:76:\"You are signed up to be notified of replies to your comment on {source_page}\";s:4:\"text\";s:76:\"You are signed up to be notified of replies to your comment on {source_page}\";}s:16:\"post_unsubscribe\";a:2:{s:7:\"default\";s:263:\"You can {unsubscribe_link} from these notifications. Please note that this will unsubscribe you only from this notification thread. If you have signed up to receive notifications to other comments or comment threads on {site_title}, you will still receive those.\";s:4:\"text\";s:263:\"You can {unsubscribe_link} from these notifications. Please note that this will unsubscribe you only from this notification thread. If you have signed up to receive notifications to other comments or comment threads on {site_title}, you will still receive those.\";}s:21:\"post_unsubscribe_text\";a:2:{s:7:\"default\";s:25:\"click here to unsubscribe\";s:4:\"text\";s:25:\"click here to unsubscribe\";}}','yes'),(17866,'tcm_hide_live_preview','','yes'),(17867,'tcm_api_status','a:4:{s:8:\"facebook\";i:1;s:6:\"google\";i:0;s:12:\"facebook_api\";i:0;s:10:\"google_api\";i:1;}','yes'),(17868,'tcm_vote_type','up_and_down','yes'),(17869,'login_activation','1','yes'),(17870,'tcm_conversion','a:7:{s:10:\"first_time\";a:1:{s:6:\"active\";s:15:\"tcm_live_update\";}s:11:\"second_time\";a:1:{s:6:\"active\";s:15:\"tcm_live_update\";}s:15:\"tcm_live_update\";a:2:{s:10:\"first_time\";a:1:{s:14:\"custom_message\";s:161:\"Thank you, {commenter_name} ! Your comment has been submitted for this post. If at any point in time you want to make changes or delete your comment, contact us.\";}s:11:\"second_time\";a:1:{s:14:\"custom_message\";s:161:\"Thank you, {commenter_name} ! Your comment has been submitted for this post. If at any point in time you want to make changes or delete your comment, contact us.\";}}s:16:\"tcm_social_share\";a:2:{s:10:\"first_time\";a:2:{s:14:\"custom_message\";s:213:\"Thank you, {commenter_name}! Your comment has been submitted for this post. If at any point in time you want to make changes or delete your comment, contact us. Would you like to share this post with your friends?\";s:22:\"social_sharing_buttons\";a:6:{s:8:\"fb_share\";i:1;s:8:\"tw_share\";i:1;s:8:\"lk_share\";i:1;s:8:\"pt_share\";i:1;s:8:\"gg_share\";i:1;s:8:\"xi_share\";i:1;}}s:11:\"second_time\";a:2:{s:14:\"custom_message\";s:213:\"Thank you, {commenter_name}! Your comment has been submitted for this post. If at any point in time you want to make changes or delete your comment, contact us. Would you like to share this post with your friends?\";s:22:\"social_sharing_buttons\";a:6:{s:8:\"fb_share\";i:1;s:8:\"tw_share\";i:1;s:8:\"lk_share\";i:1;s:8:\"pt_share\";i:1;s:8:\"gg_share\";i:1;s:8:\"xi_share\";i:1;}}}s:17:\"tcm_related_posts\";a:2:{s:10:\"first_time\";a:2:{s:14:\"custom_message\";s:182:\"Thank you for your comment,{commenter_name}! If at any point in time you want to make changes or delete your comment, contact us. Here are some more posts you might be interested in:\";s:19:\"show_featured_image\";i:1;}s:11:\"second_time\";a:2:{s:14:\"custom_message\";s:182:\"Thank you for your comment,{commenter_name}! If at any point in time you want to make changes or delete your comment, contact us. Here are some more posts you might be interested in:\";s:19:\"show_featured_image\";i:0;}}s:12:\"tcm_redirect\";a:2:{s:10:\"first_time\";a:4:{s:12:\"redirect_url\";s:0:\"\";s:16:\"redirect_post_id\";s:0:\"\";s:17:\"redirect_post_val\";s:0:\"\";s:4:\"flag\";s:0:\"\";}s:11:\"second_time\";a:4:{s:12:\"redirect_url\";s:0:\"\";s:16:\"redirect_post_id\";s:0:\"\";s:17:\"redirect_post_val\";s:0:\"\";s:4:\"flag\";s:0:\"\";}}s:13:\"tcm_thrivebox\";a:2:{s:10:\"first_time\";a:1:{s:12:\"thrivebox_id\";s:0:\"\";}s:11:\"second_time\";a:1:{s:12:\"thrivebox_id\";s:0:\"\";}}}','yes'),(17871,'tcm_enable_social_signin','','yes'),(17874,'thrive_aweber_rts','Y29S7bMr6lbWrO0MYNmtipYYZor0Aw0hbVx6u9Pg','yes'),(17875,'td_api_key','99762e-aafe33-65c4c5-168e62-8dd554','yes'),(17876,'thrive_mail_list_api','a:2:{s:5:\"email\";a:1:{s:9:\"connected\";b:1;}s:6:\"google\";a:4:{s:3:\"api\";s:6:\"google\";s:9:\"client_id\";s:73:\"1058729452937-917r3jkaojt6c89m0soohkdlgo2ga7dn.apps.googleusercontent.com\";s:13:\"client_secret\";s:24:\"tin0yip0V8P-5VW7TcTUb3Si\";s:6:\"action\";s:24:\"tve_dash_api_handle_save\";}}','yes'),(17877,'remember_me','','yes'),(17878,'powered_by','','yes'),(17879,'comment_date','1','yes'),(17900,'gadwp_cache_qr4_225556836','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:159:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:pageTitle&metrics=ga:pageviews&sort=-ga:pageviews&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:10:{i:0;a:2:{i:0;s:55:\"Extract primary key from hibernate entity - Translucent\";i:1;s:2:\"21\";}i:1;a:2:{i:0;s:51:\"Optimizing code with pandas and NumPy - Translucent\";i:1;s:2:\"19\";}i:2;a:2:{i:0;s:18:\"Blog - Translucent\";i:1;s:2:\"10\";}i:3;a:2:{i:0;s:67:\"Translucent Digital Transformation - We Listen. We Learn. We Inform\";i:1;s:1:\"5\";}i:4;a:2:{i:0;s:43:\"Performance In Jupyter Python - Translucent\";i:1;s:1:\"3\";}i:5;a:2:{i:0;s:32:\"Blog - Page 4 of 4 - Translucent\";i:1;s:1:\"2\";}i:6;a:2:{i:0;s:37:\"ML in Frequency Domain? - Translucent\";i:1;s:1:\"2\";}i:7;a:2:{i:0;s:65:\"Machine Learning - Hand Written Numbers Recognition - Translucent\";i:1;s:1:\"2\";}i:8;a:2:{i:0;s:65:\"Contact - Translucent | Creating Digital Transformation Solutions\";i:1;s:1:\"1\";}i:9;a:2:{i:0;s:28:\"Page not found - Translucent\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:159:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:pageTitle&metrics=ga:pageviews&sort=-ga:pageviews&start-date=today&end-date=today\";s:12:\"totalResults\";i:10;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:2:\"66\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:12:\"ga:pageTitle\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:4:\"sort\";a:1:{i:0;s:13:\"-ga:pageviews\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ga:pageTitle\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578178800;}','no'),(17902,'gadwp_cache_qr4_4142927145','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:157:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:pageTitle&metrics=ga:sessions&sort=-ga:sessions&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:7:{i:0;a:2:{i:0;s:51:\"Optimizing code with pandas and NumPy - Translucent\";i:1;s:1:\"9\";}i:1;a:2:{i:0;s:65:\"Machine Learning - Hand Written Numbers Recognition - Translucent\";i:1;s:1:\"2\";}i:2;a:2:{i:0;s:43:\"Performance In Jupyter Python - Translucent\";i:1;s:1:\"2\";}i:3;a:2:{i:0;s:67:\"Translucent Digital Transformation - We Listen. We Learn. We Inform\";i:1;s:1:\"2\";}i:4;a:2:{i:0;s:55:\"Extract primary key from hibernate entity - Translucent\";i:1;s:1:\"1\";}i:5;a:2:{i:0;s:37:\"ML in Frequency Domain? - Translucent\";i:1;s:1:\"1\";}i:6;a:2:{i:0;s:28:\"Page not found - Translucent\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:157:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:pageTitle&metrics=ga:sessions&sort=-ga:sessions&start-date=today&end-date=today\";s:12:\"totalResults\";i:7;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:2:\"18\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:12:\"ga:pageTitle\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ga:pageTitle\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578178800;}','no'),(17904,'gadwp_cache_qr4_3712145186','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:151:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:pageTitle&metrics=ga:users&sort=-ga:users&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:10:{i:0;a:2:{i:0;s:51:\"Optimizing code with pandas and NumPy - Translucent\";i:1;s:2:\"13\";}i:1;a:2:{i:0;s:18:\"Blog - Translucent\";i:1;s:1:\"4\";}i:2;a:2:{i:0;s:67:\"Translucent Digital Transformation - We Listen. We Learn. We Inform\";i:1;s:1:\"3\";}i:3;a:2:{i:0;s:55:\"Extract primary key from hibernate entity - Translucent\";i:1;s:1:\"2\";}i:4;a:2:{i:0;s:37:\"ML in Frequency Domain? - Translucent\";i:1;s:1:\"2\";}i:5;a:2:{i:0;s:65:\"Machine Learning - Hand Written Numbers Recognition - Translucent\";i:1;s:1:\"2\";}i:6;a:2:{i:0;s:32:\"Blog - Page 4 of 4 - Translucent\";i:1;s:1:\"1\";}i:7;a:2:{i:0;s:65:\"Contact - Translucent | Creating Digital Transformation Solutions\";i:1;s:1:\"1\";}i:8;a:2:{i:0;s:28:\"Page not found - Translucent\";i:1;s:1:\"1\";}i:9;a:2:{i:0;s:43:\"Performance In Jupyter Python - Translucent\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:151:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:pageTitle&metrics=ga:users&sort=-ga:users&start-date=today&end-date=today\";s:12:\"totalResults\";i:10;s:19:\"totalsForAllResults\";a:1:{s:8:\"ga:users\";s:2:\"30\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:12:\"ga:pageTitle\";s:7:\"metrics\";a:1:{i:0;s:8:\"ga:users\";}s:4:\"sort\";a:1:{i:0;s:9:\"-ga:users\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ga:pageTitle\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578178800;}','no'),(17948,'gadwp_cache_qr4_4227657016','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:166:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:pageTitle&metrics=ga:pageviews&sort=-ga:pageviews&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:40:{i:0;a:2:{i:0;s:43:\"Performance In Jupyter Python - Translucent\";i:1;s:3:\"147\";}i:1;a:2:{i:0;s:51:\"Optimizing code with pandas and NumPy - Translucent\";i:1;s:3:\"139\";}i:2;a:2:{i:0;s:37:\"ML in Frequency Domain? - Translucent\";i:1;s:3:\"131\";}i:3;a:2:{i:0;s:18:\"Blog - Translucent\";i:1;s:2:\"87\";}i:4;a:2:{i:0;s:67:\"Translucent Digital Transformation - We Listen. We Learn. We Inform\";i:1;s:2:\"72\";}i:5;a:2:{i:0;s:44:\"Slow Performance Test Notebook - Translucent\";i:1;s:2:\"38\";}i:6;a:2:{i:0;s:55:\"Extract primary key from hibernate entity - Translucent\";i:1;s:2:\"21\";}i:7;a:2:{i:0;s:40:\"Fourier Series From Points - Translucent\";i:1;s:2:\"19\";}i:8;a:2:{i:0;s:47:\"Applied Machine Learning Archives - Translucent\";i:1;s:2:\"15\";}i:9;a:2:{i:0;s:65:\"Contact - Translucent | Creating Digital Transformation Solutions\";i:1;s:2:\"14\";}i:10;a:2:{i:0;s:56:\"Pandas and NumPy Performance Test Notebook - Translucent\";i:1;s:2:\"14\";}i:11;a:2:{i:0;s:11:\"Translucent\";i:1;s:2:\"13\";}i:12;a:2:{i:0;s:91:\"Services - Translucent | Digital Transformation - Microservices - DevOps - Machine Learning\";i:1;s:2:\"10\";}i:13;a:2:{i:0;s:92:\"About Us - Translucent | Digital transformation consulting company based in Toronto, Canada.\";i:1;s:1:\"9\";}i:14;a:2:{i:0;s:56:\"Kubernetes, Elasticsearch, Python Importer - Translucent\";i:1;s:1:\"9\";}i:15;a:2:{i:0;s:65:\"Machine Learning - Hand Written Numbers Recognition - Translucent\";i:1;s:1:\"9\";}i:16;a:2:{i:0;s:67:\"Translucent Microservices Strategy - Incremental Steps to the Cloud\";i:1;s:1:\"9\";}i:17;a:2:{i:0;s:28:\"Page not found - Translucent\";i:1;s:1:\"8\";}i:18;a:2:{i:0;s:69:\"Translucent Machine Learning Strategy - Is your data working for you?\";i:1;s:1:\"7\";}i:19;a:2:{i:0;s:33:\"Technology Archives - Translucent\";i:1;s:1:\"5\";}i:20;a:2:{i:0;s:66:\"Translucent Devops Strategy - Seamless automation and integration!\";i:1;s:1:\"5\";}i:21;a:2:{i:0;s:72:\"Translucent Digital Transformation Strategy - Empower business decisions\";i:1;s:1:\"4\";}i:22;a:2:{i:0;s:32:\"Blog - Page 4 of 4 - Translucent\";i:1;s:1:\"3\";}i:23;a:2:{i:0;s:71:\"Case Study - Medical Chart Data Transformation - SickKids - Translucent\";i:1;s:1:\"3\";}i:24;a:2:{i:0;s:50:\"Hacking Robotic Arm With Leap Motion - Translucent\";i:1;s:1:\"3\";}i:25;a:2:{i:0;s:60:\"Healthcare Web Development Platform Case Study - Translucent\";i:1;s:1:\"3\";}i:26;a:2:{i:0;s:66:\"Process - Translucent | Learn - Inception - Digital Transformation\";i:1;s:1:\"3\";}i:27;a:2:{i:0;s:103:\"Android NDK, using JNI bitmap processing - comparing Java to C using flood fill algorithm - Translucent\";i:1;s:1:\"2\";}i:28;a:2:{i:0;s:32:\"Blog - Page 2 of 4 - Translucent\";i:1;s:1:\"2\";}i:29;a:2:{i:0;s:32:\"Blog - Page 3 of 4 - Translucent\";i:1;s:1:\"2\";}i:30;a:2:{i:0;s:72:\"Case Study - Digital Transformation of Canadian Black Book - Translucent\";i:1;s:1:\"2\";}i:31;a:2:{i:0;s:64:\"The Benefits of Creative Content for your Business - Translucent\";i:1;s:1:\"2\";}i:32;a:2:{i:0;s:43:\"Android OS OpenGL Development - Translucent\";i:1;s:1:\"1\";}i:33;a:2:{i:0;s:21:\"Generating preview…\";i:1;s:1:\"1\";}i:34;a:2:{i:0;s:46:\"Hacking Robotic Arm with Android - Translucent\";i:1;s:1:\"1\";}i:35;a:2:{i:0;s:39:\"Jupyter Notebook Archives - Translucent\";i:1;s:1:\"1\";}i:36;a:2:{i:0;s:48:\"Optimizing code with pandas, NumPy - Translucent\";i:1;s:1:\"1\";}i:37;a:2:{i:0;s:63:\"Principal Component Analysis for Machine Learning - Translucent\";i:1;s:1:\"1\";}i:38;a:2:{i:0;s:29:\"Python Archives - Translucent\";i:1;s:1:\"1\";}i:39;a:2:{i:0;s:47:\"Technology Archives - Page 2 of 5 - Translucent\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:166:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:pageTitle&metrics=ga:pageviews&sort=-ga:pageviews&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:40;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:3:\"818\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:12:\"ga:pageTitle\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:4:\"sort\";a:1:{i:0;s:13:\"-ga:pageviews\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ga:pageTitle\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578283200;}','no'),(17968,'gadwp_cache_qr2_1123431688','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:165:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:organicSearches&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:7:{i:0;a:3:{i:0;s:8:\"20191229\";i:1;s:6:\"Sunday\";i:2;s:1:\"0\";}i:1;a:3:{i:0;s:8:\"20191230\";i:1;s:6:\"Monday\";i:2;s:1:\"5\";}i:2;a:3:{i:0;s:8:\"20191231\";i:1;s:7:\"Tuesday\";i:2;s:1:\"1\";}i:3;a:3:{i:0;s:8:\"20200101\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:4;a:3:{i:0;s:8:\"20200102\";i:1;s:8:\"Thursday\";i:2;s:1:\"5\";}i:5;a:3:{i:0;s:8:\"20200103\";i:1;s:6:\"Friday\";i:2;s:1:\"5\";}i:6;a:3:{i:0;s:8:\"20200104\";i:1;s:8:\"Saturday\";i:2;s:1:\"2\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:165:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:organicSearches&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:7;s:19:\"totalsForAllResults\";a:1:{s:18:\"ga:organicSearches\";s:2:\"18\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:8:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:24:\"ga:date,ga:dayOfWeekName\";s:7:\"metrics\";a:1:{i:0;s:18:\"ga:organicSearches\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:3:{i:0;a:3:{s:4:\"name\";s:7:\"ga:date\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:16:\"ga:dayOfWeekName\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:2;a:3:{s:4:\"name\";s:18:\"ga:organicSearches\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578283200;}','no'),(17996,'gadwp_cache_qr5_3263302396','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:193:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:source&metrics=ga:sessions&sort=-ga:sessions&filters=ga:medium%3D%3Dreferral&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:7:{i:0;a:2:{i:0;s:4:\"t.co\";i:1;s:3:\"127\";}i:1;a:2:{i:0;s:12:\"linkedin.com\";i:1;s:1:\"4\";}i:2;a:2:{i:0;s:15:\"mail.google.com\";i:1;s:1:\"4\";}i:3;a:2:{i:0;s:7:\"disq.us\";i:1;s:1:\"2\";}i:4;a:2:{i:0;s:21:\"job.gabithomaz.com.br\";i:1;s:1:\"1\";}i:5;a:2:{i:0;s:14:\"l.facebook.com\";i:1;s:1:\"1\";}i:6;a:2:{i:0;s:12:\"zoominfo.com\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:193:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:source&metrics=ga:sessions&sort=-ga:sessions&filters=ga:medium%3D%3Dreferral&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:7;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:3:\"140\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:9:\"ga:source\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:7:\"filters\";s:19:\"ga:medium==referral\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:9:\"ga:source\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578369600;}','no'),(18019,'gadwp_cache_qr4_3263302396','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:164:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:pageTitle&metrics=ga:sessions&sort=-ga:sessions&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:38:{i:0;a:2:{i:0;s:51:\"Optimizing code with pandas and NumPy - Translucent\";i:1;s:2:\"62\";}i:1;a:2:{i:0;s:43:\"Performance In Jupyter Python - Translucent\";i:1;s:2:\"60\";}i:2;a:2:{i:0;s:67:\"Translucent Digital Transformation - We Listen. We Learn. We Inform\";i:1;s:2:\"41\";}i:3;a:2:{i:0;s:37:\"ML in Frequency Domain? - Translucent\";i:1;s:2:\"33\";}i:4;a:2:{i:0;s:65:\"Machine Learning - Hand Written Numbers Recognition - Translucent\";i:1;s:1:\"7\";}i:5;a:2:{i:0;s:18:\"Blog - Translucent\";i:1;s:1:\"5\";}i:6;a:2:{i:0;s:28:\"Page not found - Translucent\";i:1;s:1:\"4\";}i:7;a:2:{i:0;s:44:\"Slow Performance Test Notebook - Translucent\";i:1;s:1:\"4\";}i:8;a:2:{i:0;s:103:\"Android NDK, using JNI bitmap processing - comparing Java to C using flood fill algorithm - Translucent\";i:1;s:1:\"2\";}i:9;a:2:{i:0;s:50:\"Hacking Robotic Arm With Leap Motion - Translucent\";i:1;s:1:\"2\";}i:10;a:2:{i:0;s:56:\"Kubernetes, Elasticsearch, Python Importer - Translucent\";i:1;s:1:\"2\";}i:11;a:2:{i:0;s:66:\"Translucent Devops Strategy - Seamless automation and integration!\";i:1;s:1:\"2\";}i:12;a:2:{i:0;s:92:\"About Us - Translucent | Digital transformation consulting company based in Toronto, Canada.\";i:1;s:1:\"1\";}i:13;a:2:{i:0;s:43:\"Android OS OpenGL Development - Translucent\";i:1;s:1:\"1\";}i:14;a:2:{i:0;s:72:\"Case Study - Digital Transformation of Canadian Black Book - Translucent\";i:1;s:1:\"1\";}i:15;a:2:{i:0;s:55:\"Extract primary key from hibernate entity - Translucent\";i:1;s:1:\"1\";}i:16;a:2:{i:0;s:40:\"Fourier Series From Points - Translucent\";i:1;s:1:\"1\";}i:17;a:2:{i:0;s:60:\"Healthcare Web Development Platform Case Study - Translucent\";i:1;s:1:\"1\";}i:18;a:2:{i:0;s:91:\"Services - Translucent | Digital Transformation - Microservices - DevOps - Machine Learning\";i:1;s:1:\"1\";}i:19;a:2:{i:0;s:67:\"Translucent Microservices Strategy - Incremental Steps to the Cloud\";i:1;s:1:\"1\";}i:20;a:2:{i:0;s:47:\"Applied Machine Learning Archives - Translucent\";i:1;s:1:\"0\";}i:21;a:2:{i:0;s:32:\"Blog - Page 2 of 4 - Translucent\";i:1;s:1:\"0\";}i:22;a:2:{i:0;s:32:\"Blog - Page 3 of 4 - Translucent\";i:1;s:1:\"0\";}i:23;a:2:{i:0;s:32:\"Blog - Page 4 of 4 - Translucent\";i:1;s:1:\"0\";}i:24;a:2:{i:0;s:71:\"Case Study - Medical Chart Data Transformation - SickKids - Translucent\";i:1;s:1:\"0\";}i:25;a:2:{i:0;s:65:\"Contact - Translucent | Creating Digital Transformation Solutions\";i:1;s:1:\"0\";}i:26;a:2:{i:0;s:21:\"Generating preview…\";i:1;s:1:\"0\";}i:27;a:2:{i:0;s:46:\"Hacking Robotic Arm with Android - Translucent\";i:1;s:1:\"0\";}i:28;a:2:{i:0;s:39:\"Jupyter Notebook Archives - Translucent\";i:1;s:1:\"0\";}i:29;a:2:{i:0;s:48:\"Optimizing code with pandas, NumPy - Translucent\";i:1;s:1:\"0\";}i:30;a:2:{i:0;s:56:\"Pandas and NumPy Performance Test Notebook - Translucent\";i:1;s:1:\"0\";}i:31;a:2:{i:0;s:66:\"Process - Translucent | Learn - Inception - Digital Transformation\";i:1;s:1:\"0\";}i:32;a:2:{i:0;s:29:\"Python Archives - Translucent\";i:1;s:1:\"0\";}i:33;a:2:{i:0;s:47:\"Technology Archives - Page 2 of 5 - Translucent\";i:1;s:1:\"0\";}i:34;a:2:{i:0;s:33:\"Technology Archives - Translucent\";i:1;s:1:\"0\";}i:35;a:2:{i:0;s:64:\"The Benefits of Creative Content for your Business - Translucent\";i:1;s:1:\"0\";}i:36;a:2:{i:0;s:72:\"Translucent Digital Transformation Strategy - Empower business decisions\";i:1;s:1:\"0\";}i:37;a:2:{i:0;s:69:\"Translucent Machine Learning Strategy - Is your data working for you?\";i:1;s:1:\"0\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:164:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:pageTitle&metrics=ga:sessions&sort=-ga:sessions&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:38;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:3:\"232\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:12:\"ga:pageTitle\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:12:\"ga:pageTitle\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578369600;}','no'),(18187,'swp_json_cache','a:3:{s:7:\"notices\";a:0:{}s:7:\"sidebar\";a:3:{i:0;s:909:\"

Upgrade to Pro!

+ Up to 15 social networks to share from!

+ Customize how your content is shared on Pinterest, Facebook, Twitter, and more!

+ More style options to match your site\'s design.

+ Click-tracking so you know exactly how many clicks your share buttons are getting.

+ Priority support for when you need help.

+ Much more!

UPGRADE
\";i:1;s:4075:\"

Love the Plugin?
How about rating us?

Would you mind giving us an honest review in the WordPress listings? It would mean the world to us.

We\'re sorry you\'re not having a great experience. How can we help you fix that?

You can email us or, even better, send us a support request so we can address your needs as quickly and effectively as possible.

Contact Support

If you still want to rate our plugin right now, you can do that by clicking here:
leave a review

Nevermind, close this box

\";i:2;s:589:\"

Need Help?

You can visit our Knowledgebase to troubleshoot issues quickly.

Opening a Support Ticket? Copy your System Status by clicking the button below.

\";}s:9:\"timestamp\";i:1663090760;}','yes'),(18188,'social_warfare_settings','a:77:{s:27:\"location_archive_categories\";s:4:\"none\";s:13:\"location_home\";s:4:\"none\";s:13:\"location_post\";s:5:\"below\";s:13:\"location_page\";s:4:\"none\";s:19:\"float_location_post\";s:3:\"off\";s:19:\"float_location_page\";s:3:\"off\";s:12:\"total_shares\";b:0;s:14:\"network_shares\";b:0;s:10:\"twitter_id\";s:0:\"\";s:16:\"swp_twitter_card\";b:1;s:12:\"button_shape\";s:9:\"flatFresh\";s:14:\"default_colors\";s:10:\"full_color\";s:13:\"single_colors\";s:10:\"full_color\";s:12:\"hover_colors\";s:10:\"full_color\";s:20:\"float_default_colors\";s:10:\"full_color\";s:19:\"float_single_colors\";s:10:\"full_color\";s:18:\"float_hover_colors\";s:9:\"fullColor\";s:18:\"float_style_source\";b:1;s:10:\"float_size\";i:1;s:15:\"float_alignment\";s:6:\"center\";s:11:\"button_size\";i:1;s:16:\"button_alignment\";s:9:\"fullWidth\";s:10:\"transition\";s:5:\"slide\";s:18:\"float_screen_width\";s:4:\"1100\";s:9:\"ctt_theme\";s:6:\"style1\";s:7:\"ctt_css\";s:0:\"\";s:14:\"twitter_shares\";b:0;s:14:\"floating_panel\";b:1;s:14:\"float_location\";s:6:\"bottom\";s:22:\"float_background_color\";s:7:\"#ffffff\";s:18:\"float_button_shape\";s:7:\"default\";s:14:\"float_vertical\";s:6:\"center\";s:18:\"float_button_count\";i:5;s:12:\"custom_color\";s:7:\"#000000\";s:21:\"custom_color_outlines\";s:7:\"#000000\";s:18:\"float_custom_color\";s:7:\"#000000\";s:27:\"float_custom_color_outlines\";s:7:\"#000000\";s:14:\"recover_shares\";b:0;s:15:\"recovery_format\";s:9:\"unchanged\";s:17:\"recovery_protocol\";s:9:\"unchanged\";s:15:\"recovery_prefix\";s:9:\"unchanged\";s:8:\"decimals\";s:1:\"0\";s:17:\"decimal_separator\";s:6:\"period\";s:16:\"totals_alignment\";s:12:\"totals_right\";s:16:\"google_analytics\";b:0;s:20:\"bitly_authentication\";b:0;s:14:\"minimum_shares\";i:0;s:12:\"full_content\";b:0;s:12:\"frame_buster\";b:0;s:16:\"analytics_medium\";s:6:\"social\";s:18:\"analytics_campaign\";s:13:\"SocialWarfare\";s:18:\"swp_click_tracking\";b:0;s:21:\"order_of_icons_method\";s:6:\"manual\";s:7:\"og_post\";s:7:\"article\";s:7:\"og_page\";s:7:\"article\";s:24:\"pinterest_image_location\";s:6:\"hidden\";s:21:\"pin_browser_extension\";b:0;s:18:\"pinterest_fallback\";s:3:\"all\";s:12:\"pinit_toggle\";b:0;s:25:\"pinit_location_horizontal\";s:6:\"center\";s:23:\"pinit_location_vertical\";s:3:\"top\";s:15:\"pinit_min_width\";s:3:\"200\";s:16:\"pinit_min_height\";s:3:\"200\";s:18:\"pinit_image_source\";s:5:\"image\";s:23:\"pinit_image_description\";s:8:\"alt_text\";s:11:\"utm_on_pins\";b:0;s:30:\"pin_browser_extension_location\";s:6:\"hidden\";s:12:\"float_mobile\";s:6:\"bottom\";s:16:\"force_new_shares\";b:0;s:12:\"cache_method\";s:8:\"advanced\";s:14:\"order_of_icons\";a:4:{s:7:\"twitter\";s:7:\"twitter\";s:8:\"linkedin\";s:8:\"linkedin\";s:9:\"pinterest\";s:9:\"pinterest\";s:8:\"facebook\";s:8:\"facebook\";}s:13:\"last_migrated\";s:5:\"3.0.5\";s:20:\"float_before_content\";b:0;s:12:\"pinterest_id\";s:0:\"\";s:22:\"facebook_publisher_url\";s:0:\"\";s:15:\"facebook_app_id\";s:0:\"\";s:16:\"gutenberg_switch\";b:1;}','yes'),(18189,'widget_swp_popular_posts_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(18190,'swp_registered_options','a:2:{s:8:\"defaults\";a:31:{s:14:\"order_of_icons\";a:5:{s:11:\"google_plus\";s:11:\"google_plus\";s:7:\"twitter\";s:7:\"twitter\";s:8:\"facebook\";s:8:\"facebook\";s:8:\"linkedin\";s:8:\"linkedin\";s:9:\"pinterest\";s:9:\"pinterest\";}s:14:\"network_shares\";b:1;s:12:\"total_shares\";b:1;s:8:\"decimals\";s:1:\"0\";s:17:\"decimal_separator\";s:6:\"period\";s:16:\"totals_alignment\";s:12:\"totals_right\";s:21:\"button_position_table\";s:1:\" \";s:15:\"Buttons Preview\";s:1:\" \";s:14:\"floating_panel\";b:0;s:14:\"float_location\";s:6:\"bottom\";s:22:\"float_background_color\";s:7:\"#ffffff\";s:18:\"float_screen_width\";s:4:\"1100\";s:10:\"transition\";s:5:\"slide\";s:20:\"float_before_content\";b:0;s:10:\"twitter_id\";s:0:\"\";s:12:\"pinterest_id\";s:0:\"\";s:22:\"facebook_publisher_url\";s:0:\"\";s:15:\"facebook_app_id\";s:0:\"\";s:16:\"gutenberg_switch\";b:1;s:12:\"frame_buster\";b:1;s:12:\"full_content\";b:0;s:13:\"location_home\";s:4:\"both\";s:27:\"location_archive_categories\";s:4:\"both\";s:13:\"location_post\";s:4:\"both\";s:19:\"float_location_post\";s:2:\"on\";s:13:\"location_page\";s:4:\"both\";s:19:\"float_location_page\";s:2:\"on\";s:21:\"location_popupbuilder\";s:4:\"both\";s:27:\"float_location_popupbuilder\";s:2:\"on\";s:13:\"last_migrated\";s:5:\"3.0.5\";s:20:\"bitly_authentication\";b:0;}s:6:\"values\";a:31:{s:14:\"order_of_icons\";a:2:{s:4:\"type\";s:4:\"none\";s:6:\"values\";a:5:{s:8:\"facebook\";s:8:\"facebook\";s:8:\"linkedin\";s:8:\"linkedin\";s:3:\"mix\";s:3:\"mix\";s:9:\"pinterest\";s:9:\"pinterest\";s:7:\"twitter\";s:7:\"twitter\";}}s:14:\"network_shares\";a:2:{s:4:\"type\";s:7:\"boolean\";s:6:\"values\";a:2:{i:0;b:1;i:1;b:0;}}s:12:\"total_shares\";a:2:{s:4:\"type\";s:7:\"boolean\";s:6:\"values\";a:2:{i:0;b:1;i:1;b:0;}}s:8:\"decimals\";a:2:{s:4:\"type\";s:6:\"select\";s:6:\"values\";a:3:{i:0;s:4:\"Zero\";i:1;s:3:\"One\";i:2;s:3:\"Two\";}}s:17:\"decimal_separator\";a:2:{s:4:\"type\";s:6:\"select\";s:6:\"values\";a:2:{s:6:\"period\";s:6:\"Period\";s:5:\"comma\";s:5:\"Comma\";}}s:16:\"totals_alignment\";a:2:{s:4:\"type\";s:6:\"select\";s:6:\"values\";a:2:{s:12:\"totals_right\";s:5:\"Right\";s:11:\"totals_left\";s:4:\"Left\";}}s:21:\"button_position_table\";a:2:{s:4:\"type\";s:4:\"none\";s:6:\"values\";a:0:{}}s:15:\"Buttons Preview\";a:2:{s:4:\"type\";s:4:\"none\";s:6:\"values\";a:0:{}}s:14:\"floating_panel\";a:2:{s:4:\"type\";s:7:\"boolean\";s:6:\"values\";a:2:{i:0;b:1;i:1;b:0;}}s:14:\"float_location\";a:2:{s:4:\"type\";s:6:\"select\";s:6:\"values\";a:4:{s:3:\"top\";s:15:\"Top of the Page\";s:6:\"bottom\";s:18:\"Bottom of the Page\";s:4:\"left\";s:28:\"On the left side of the page\";s:5:\"right\";s:29:\"On the right side of the page\";}}s:22:\"float_background_color\";a:1:{s:4:\"type\";s:4:\"text\";}s:18:\"float_screen_width\";a:1:{s:4:\"type\";s:4:\"text\";}s:10:\"transition\";a:2:{s:4:\"type\";s:6:\"select\";s:6:\"values\";a:2:{s:5:\"slide\";s:20:\"Slide In / Slide Out\";s:4:\"fade\";s:18:\"Fade In / Fade Out\";}}s:20:\"float_before_content\";a:2:{s:4:\"type\";s:7:\"boolean\";s:6:\"values\";a:2:{i:0;b:1;i:1;b:0;}}s:10:\"twitter_id\";a:1:{s:4:\"type\";s:4:\"text\";}s:12:\"pinterest_id\";a:1:{s:4:\"type\";s:4:\"text\";}s:22:\"facebook_publisher_url\";a:1:{s:4:\"type\";s:4:\"text\";}s:15:\"facebook_app_id\";a:1:{s:4:\"type\";s:4:\"text\";}s:16:\"gutenberg_switch\";a:2:{s:4:\"type\";s:7:\"boolean\";s:6:\"values\";a:2:{i:0;b:1;i:1;b:0;}}s:12:\"frame_buster\";a:2:{s:4:\"type\";s:7:\"boolean\";s:6:\"values\";a:2:{i:0;b:1;i:1;b:0;}}s:12:\"full_content\";a:2:{s:4:\"type\";s:7:\"boolean\";s:6:\"values\";a:2:{i:0;b:1;i:1;b:0;}}s:13:\"location_home\";a:2:{s:4:\"type\";s:6:\"select\";s:6:\"values\";a:4:{s:5:\"above\";s:17:\"Above the Content\";s:5:\"below\";s:17:\"Below the Content\";s:4:\"both\";s:32:\"Both Above and Below the Content\";s:4:\"none\";s:21:\"None/Manual Placement\";}}s:27:\"location_archive_categories\";a:2:{s:4:\"type\";s:6:\"select\";s:6:\"values\";a:4:{s:5:\"above\";s:17:\"Above the Content\";s:5:\"below\";s:17:\"Below the Content\";s:4:\"both\";s:32:\"Both Above and Below the Content\";s:4:\"none\";s:21:\"None/Manual Placement\";}}s:13:\"location_post\";a:2:{s:4:\"type\";s:6:\"select\";s:6:\"values\";a:4:{s:5:\"above\";s:17:\"Above the Content\";s:5:\"below\";s:17:\"Below the Content\";s:4:\"both\";s:32:\"Both Above and Below the Content\";s:4:\"none\";s:21:\"None/Manual Placement\";}}s:19:\"float_location_post\";a:2:{s:4:\"type\";s:6:\"select\";s:6:\"values\";a:2:{s:2:\"on\";s:2:\"On\";s:3:\"off\";s:3:\"Off\";}}s:13:\"location_page\";a:2:{s:4:\"type\";s:6:\"select\";s:6:\"values\";a:4:{s:5:\"above\";s:17:\"Above the Content\";s:5:\"below\";s:17:\"Below the Content\";s:4:\"both\";s:32:\"Both Above and Below the Content\";s:4:\"none\";s:21:\"None/Manual Placement\";}}s:19:\"float_location_page\";a:2:{s:4:\"type\";s:6:\"select\";s:6:\"values\";a:2:{s:2:\"on\";s:2:\"On\";s:3:\"off\";s:3:\"Off\";}}s:21:\"location_popupbuilder\";a:2:{s:4:\"type\";s:6:\"select\";s:6:\"values\";a:4:{s:5:\"above\";s:17:\"Above the Content\";s:5:\"below\";s:17:\"Below the Content\";s:4:\"both\";s:32:\"Both Above and Below the Content\";s:4:\"none\";s:21:\"None/Manual Placement\";}}s:27:\"float_location_popupbuilder\";a:2:{s:4:\"type\";s:6:\"select\";s:6:\"values\";a:2:{s:2:\"on\";s:2:\"On\";s:3:\"off\";s:3:\"Off\";}}s:13:\"last_migrated\";a:2:{s:4:\"type\";s:4:\"none\";s:6:\"values\";s:5:\"3.0.5\";}s:20:\"bitly_authentication\";a:2:{s:4:\"type\";s:4:\"none\";s:6:\"values\";b:0;}}}','yes'),(18223,'leadin_pluginVersion','7.18.81','yes'),(18224,'WP004','1','yes'),(18365,'gadwp_cache_qr2_2463720547','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:142:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:hour&metrics=ga:sessions&start-date=yesterday&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:24:{i:0;a:2:{i:0;s:2:\"00\";i:1;s:1:\"1\";}i:1;a:2:{i:0;s:2:\"01\";i:1;s:1:\"0\";}i:2;a:2:{i:0;s:2:\"02\";i:1;s:1:\"0\";}i:3;a:2:{i:0;s:2:\"03\";i:1;s:1:\"0\";}i:4;a:2:{i:0;s:2:\"04\";i:1;s:1:\"2\";}i:5;a:2:{i:0;s:2:\"05\";i:1;s:2:\"13\";}i:6;a:2:{i:0;s:2:\"06\";i:1;s:1:\"0\";}i:7;a:2:{i:0;s:2:\"07\";i:1;s:1:\"2\";}i:8;a:2:{i:0;s:2:\"08\";i:1;s:1:\"1\";}i:9;a:2:{i:0;s:2:\"09\";i:1;s:1:\"5\";}i:10;a:2:{i:0;s:2:\"10\";i:1;s:1:\"3\";}i:11;a:2:{i:0;s:2:\"11\";i:1;s:1:\"4\";}i:12;a:2:{i:0;s:2:\"12\";i:1;s:1:\"2\";}i:13;a:2:{i:0;s:2:\"13\";i:1;s:1:\"5\";}i:14;a:2:{i:0;s:2:\"14\";i:1;s:1:\"4\";}i:15;a:2:{i:0;s:2:\"15\";i:1;s:1:\"2\";}i:16;a:2:{i:0;s:2:\"16\";i:1;s:1:\"6\";}i:17;a:2:{i:0;s:2:\"17\";i:1;s:1:\"4\";}i:18;a:2:{i:0;s:2:\"18\";i:1;s:1:\"4\";}i:19;a:2:{i:0;s:2:\"19\";i:1;s:1:\"4\";}i:20;a:2:{i:0;s:2:\"20\";i:1;s:1:\"5\";}i:21;a:2:{i:0;s:2:\"21\";i:1;s:1:\"2\";}i:22;a:2:{i:0;s:2:\"22\";i:1;s:1:\"0\";}i:23;a:2:{i:0;s:2:\"23\";i:1;s:1:\"4\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:142:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:hour&metrics=ga:sessions&start-date=yesterday&end-date=yesterday\";s:12:\"totalResults\";i:24;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:2:\"73\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:8:{s:10:\"start-date\";s:9:\"yesterday\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:7:\"ga:hour\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:7:\"ga:hour\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578542400;}','no'),(18366,'gadwp_cache_qr3_54311566','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:259:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&metrics=ga:sessions,ga:users,ga:pageviews,ga:BounceRate,ga:organicSearches,ga:pageviewsPerSession,ga:avgTimeOnPage,ga:avgPageLoadTime,ga:avgSessionDuration&start-date=yesterday&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:1:{i:0;a:9:{i:0;s:2:\"73\";i:1;s:2:\"55\";i:2;s:3:\"157\";i:3;s:17:\"67.12328767123287\";i:4;s:2:\"11\";i:5;s:18:\"2.1506849315068495\";i:6;s:17:\"81.51190476190476\";i:7;s:3:\"0.0\";i:8;s:17:\"93.82191780821918\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:259:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&metrics=ga:sessions,ga:users,ga:pageviews,ga:BounceRate,ga:organicSearches,ga:pageviewsPerSession,ga:avgTimeOnPage,ga:avgPageLoadTime,ga:avgSessionDuration&start-date=yesterday&end-date=yesterday\";s:12:\"totalResults\";i:1;s:19:\"totalsForAllResults\";a:9:{s:11:\"ga:sessions\";s:2:\"73\";s:8:\"ga:users\";s:2:\"55\";s:12:\"ga:pageviews\";s:3:\"157\";s:13:\"ga:BounceRate\";s:17:\"67.12328767123287\";s:18:\"ga:organicSearches\";s:2:\"11\";s:22:\"ga:pageviewsPerSession\";s:18:\"2.1506849315068495\";s:16:\"ga:avgTimeOnPage\";s:17:\"81.51190476190476\";s:18:\"ga:avgPageLoadTime\";s:3:\"0.0\";s:21:\"ga:avgSessionDuration\";s:17:\"93.82191780821918\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:7:{s:10:\"start-date\";s:9:\"yesterday\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:7:\"metrics\";a:9:{i:0;s:11:\"ga:sessions\";i:1;s:8:\"ga:users\";i:2;s:12:\"ga:pageviews\";i:3;s:13:\"ga:BounceRate\";i:4;s:18:\"ga:organicSearches\";i:5;s:22:\"ga:pageviewsPerSession\";i:6;s:16:\"ga:avgTimeOnPage\";i:7;s:18:\"ga:avgPageLoadTime\";i:8;s:21:\"ga:avgSessionDuration\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:9:{i:0;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:2;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:3;a:3:{s:4:\"name\";s:13:\"ga:BounceRate\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"PERCENT\";}i:4;a:3:{s:4:\"name\";s:18:\"ga:organicSearches\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:5;a:3:{s:4:\"name\";s:22:\"ga:pageviewsPerSession\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:5:\"FLOAT\";}i:6;a:3:{s:4:\"name\";s:16:\"ga:avgTimeOnPage\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:4:\"TIME\";}i:7;a:3:{s:4:\"name\";s:18:\"ga:avgPageLoadTime\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:5:\"FLOAT\";}i:8;a:3:{s:4:\"name\";s:21:\"ga:avgSessionDuration\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:4:\"TIME\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578542400;}','no'),(18519,'lazy_load','1','yes'),(18558,'gadwp_cache_qr8_4239460792','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:173:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:channelGrouping&metrics=ga:pageviews&sort=-ga:pageviews&start-date=14daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:4:{i:0;a:2:{i:0;s:6:\"Direct\";i:1;s:4:\"1042\";}i:1;a:2:{i:0;s:6:\"Social\";i:1;s:3:\"409\";}i:2;a:2:{i:0;s:14:\"Organic Search\";i:1;s:3:\"214\";}i:3;a:2:{i:0;s:8:\"Referral\";i:1;s:2:\"59\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:173:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:channelGrouping&metrics=ga:pageviews&sort=-ga:pageviews&start-date=14daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:4;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:4:\"1724\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:9:\"14daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:18:\"ga:channelGrouping\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:4:\"sort\";a:1:{i:0;s:13:\"-ga:pageviews\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:18:\"ga:channelGrouping\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578628800;}','no'),(18559,'gadwp_cache_qr10_29148411','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:195:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:medium&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:medium!%3D(not+set)&start-date=14daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:3:{i:0;a:2:{i:0;s:6:\"(none)\";i:1;s:4:\"1042\";}i:1;a:2:{i:0;s:8:\"referral\";i:1;s:3:\"468\";}i:2;a:2:{i:0;s:7:\"organic\";i:1;s:3:\"214\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:195:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:medium&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:medium!%3D(not+set)&start-date=14daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:3;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:4:\"1724\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:9:\"14daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:9:\"ga:medium\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:4:\"sort\";a:1:{i:0;s:13:\"-ga:pageviews\";}s:7:\"filters\";s:20:\"ga:medium!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:9:\"ga:medium\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578628800;}','no'),(18560,'gadwp_cache_qr10_3257636192','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:205:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:visitorType&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:visitorType!%3D(not+set)&start-date=14daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:2:{i:0;a:2:{i:0;s:17:\"Returning Visitor\";i:1;s:4:\"1235\";}i:1;a:2:{i:0;s:11:\"New Visitor\";i:1;s:3:\"489\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:205:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:visitorType&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:visitorType!%3D(not+set)&start-date=14daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:2;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:4:\"1724\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:9:\"14daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:14:\"ga:visitorType\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:4:\"sort\";a:1:{i:0;s:13:\"-ga:pageviews\";}s:7:\"filters\";s:25:\"ga:visitorType!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:14:\"ga:visitorType\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578628800;}','no'),(18561,'gadwp_cache_qr10_991289739','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:219:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:source&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:medium%3D%3Dorganic;ga:keyword!%3D(not+set)&start-date=14daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:2:{i:0;a:2:{i:0;s:6:\"google\";i:1;s:3:\"212\";}i:1;a:2:{i:0;s:4:\"bing\";i:1;s:1:\"2\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:219:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:source&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:medium%3D%3Dorganic;ga:keyword!%3D(not+set)&start-date=14daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:2;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:3:\"214\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:9:\"14daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:9:\"ga:source\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:4:\"sort\";a:1:{i:0;s:13:\"-ga:pageviews\";}s:7:\"filters\";s:40:\"ga:medium==organic;ga:keyword!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:9:\"ga:source\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578628800;}','no'),(18562,'gadwp_cache_qr10_4038660944','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:209:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:socialNetwork&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:socialNetwork!%3D(not+set)&start-date=14daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:4:{i:0;a:2:{i:0;s:7:\"Twitter\";i:1;s:3:\"348\";}i:1;a:2:{i:0;s:8:\"LinkedIn\";i:1;s:2:\"55\";}i:2;a:2:{i:0;s:8:\"Facebook\";i:1;s:1:\"4\";}i:3;a:2:{i:0;s:4:\"Yelp\";i:1;s:1:\"2\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:209:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:socialNetwork&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:socialNetwork!%3D(not+set)&start-date=14daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:4;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:3:\"409\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:9:\"14daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:16:\"ga:socialNetwork\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:4:\"sort\";a:1:{i:0;s:13:\"-ga:pageviews\";}s:7:\"filters\";s:27:\"ga:socialNetwork!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:16:\"ga:socialNetwork\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578628800;}','no'),(18563,'gadwp_cache_qr8_3802305528','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:171:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:channelGrouping&metrics=ga:sessions&sort=-ga:sessions&start-date=14daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:4:{i:0;a:2:{i:0;s:6:\"Social\";i:1;s:3:\"220\";}i:1;a:2:{i:0;s:6:\"Direct\";i:1;s:3:\"172\";}i:2;a:2:{i:0;s:14:\"Organic Search\";i:1;s:2:\"63\";}i:3;a:2:{i:0;s:8:\"Referral\";i:1;s:2:\"18\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:171:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:channelGrouping&metrics=ga:sessions&sort=-ga:sessions&start-date=14daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:4;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:3:\"473\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:9:\"14daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:18:\"ga:channelGrouping\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:18:\"ga:channelGrouping\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578628800;}','no'),(18564,'gadwp_cache_qr10_2375461602','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:193:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:medium&metrics=ga:sessions&sort=-ga:sessions&filters=ga:medium!%3D(not+set)&start-date=14daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:3:{i:0;a:2:{i:0;s:8:\"referral\";i:1;s:3:\"238\";}i:1;a:2:{i:0;s:6:\"(none)\";i:1;s:3:\"172\";}i:2;a:2:{i:0;s:7:\"organic\";i:1;s:2:\"63\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:193:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:medium&metrics=ga:sessions&sort=-ga:sessions&filters=ga:medium!%3D(not+set)&start-date=14daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:3;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:3:\"473\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:9:\"14daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:9:\"ga:medium\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:7:\"filters\";s:20:\"ga:medium!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:9:\"ga:medium\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578628800;}','no'),(18565,'gadwp_cache_qr10_373919775','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:203:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:visitorType&metrics=ga:sessions&sort=-ga:sessions&filters=ga:visitorType!%3D(not+set)&start-date=14daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:2:{i:0;a:2:{i:0;s:11:\"New Visitor\";i:1;s:3:\"296\";}i:1;a:2:{i:0;s:17:\"Returning Visitor\";i:1;s:3:\"177\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:203:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:visitorType&metrics=ga:sessions&sort=-ga:sessions&filters=ga:visitorType!%3D(not+set)&start-date=14daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:2;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:3:\"473\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:9:\"14daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:14:\"ga:visitorType\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:7:\"filters\";s:25:\"ga:visitorType!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:14:\"ga:visitorType\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578628800;}','no'),(18566,'gadwp_cache_qr10_2447512707','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:217:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:source&metrics=ga:sessions&sort=-ga:sessions&filters=ga:medium%3D%3Dorganic;ga:keyword!%3D(not+set)&start-date=14daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:2:{i:0;a:2:{i:0;s:6:\"google\";i:1;s:2:\"62\";}i:1;a:2:{i:0;s:4:\"bing\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:217:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:source&metrics=ga:sessions&sort=-ga:sessions&filters=ga:medium%3D%3Dorganic;ga:keyword!%3D(not+set)&start-date=14daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:2;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:2:\"63\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:9:\"14daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:9:\"ga:source\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:7:\"filters\";s:40:\"ga:medium==organic;ga:keyword!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:9:\"ga:source\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578628800;}','no'),(18567,'gadwp_cache_qr10_1554203443','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:207:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:socialNetwork&metrics=ga:sessions&sort=-ga:sessions&filters=ga:socialNetwork!%3D(not+set)&start-date=14daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:4:{i:0;a:2:{i:0;s:7:\"Twitter\";i:1;s:3:\"197\";}i:1;a:2:{i:0;s:8:\"LinkedIn\";i:1;s:2:\"18\";}i:2;a:2:{i:0;s:8:\"Facebook\";i:1;s:1:\"4\";}i:3;a:2:{i:0;s:4:\"Yelp\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:207:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:socialNetwork&metrics=ga:sessions&sort=-ga:sessions&filters=ga:socialNetwork!%3D(not+set)&start-date=14daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:4;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:3:\"220\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:9:\"14daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:16:\"ga:socialNetwork\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:7:\"filters\";s:27:\"ga:socialNetwork!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:16:\"ga:socialNetwork\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578628800;}','no'),(18631,'tcm_display_keyboard_notification_tooltip','a:0:{}','yes'),(18665,'gadwp_cache_qr8_53976646','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:170:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:channelGrouping&metrics=ga:sessions&sort=-ga:sessions&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:4:{i:0;a:2:{i:0;s:6:\"Direct\";i:1;s:3:\"130\";}i:1;a:2:{i:0;s:6:\"Social\";i:1;s:3:\"127\";}i:2;a:2:{i:0;s:14:\"Organic Search\";i:1;s:2:\"49\";}i:3;a:2:{i:0;s:8:\"Referral\";i:1;s:2:\"18\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:170:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:channelGrouping&metrics=ga:sessions&sort=-ga:sessions&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:4;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:3:\"324\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:18:\"ga:channelGrouping\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:18:\"ga:channelGrouping\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578715200;}','no'),(18666,'gadwp_cache_qr10_560914059','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:192:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:medium&metrics=ga:sessions&sort=-ga:sessions&filters=ga:medium!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:3:{i:0;a:2:{i:0;s:8:\"referral\";i:1;s:3:\"145\";}i:1;a:2:{i:0;s:6:\"(none)\";i:1;s:3:\"130\";}i:2;a:2:{i:0;s:7:\"organic\";i:1;s:2:\"49\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:192:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:medium&metrics=ga:sessions&sort=-ga:sessions&filters=ga:medium!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:3;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:3:\"324\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:9:\"ga:medium\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:7:\"filters\";s:20:\"ga:medium!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:9:\"ga:medium\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578715200;}','no'),(18667,'gadwp_cache_qr10_3746784101','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:202:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:visitorType&metrics=ga:sessions&sort=-ga:sessions&filters=ga:visitorType!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:2:{i:0;a:2:{i:0;s:11:\"New Visitor\";i:1;s:3:\"197\";}i:1;a:2:{i:0;s:17:\"Returning Visitor\";i:1;s:3:\"127\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:202:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:visitorType&metrics=ga:sessions&sort=-ga:sessions&filters=ga:visitorType!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:2;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:3:\"324\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:14:\"ga:visitorType\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:7:\"filters\";s:25:\"ga:visitorType!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:14:\"ga:visitorType\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578715200;}','no'),(18668,'gadwp_cache_qr10_1025138922','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:216:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:source&metrics=ga:sessions&sort=-ga:sessions&filters=ga:medium%3D%3Dorganic;ga:keyword!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:2:{i:0;a:2:{i:0;s:6:\"google\";i:1;s:2:\"48\";}i:1;a:2:{i:0;s:4:\"bing\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:216:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:source&metrics=ga:sessions&sort=-ga:sessions&filters=ga:medium%3D%3Dorganic;ga:keyword!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:2;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:2:\"49\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:9:\"ga:source\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:7:\"filters\";s:40:\"ga:medium==organic;ga:keyword!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:9:\"ga:source\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578715200;}','no'),(18669,'gadwp_cache_qr10_2915547379','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:206:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:socialNetwork&metrics=ga:sessions&sort=-ga:sessions&filters=ga:socialNetwork!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:4:{i:0;a:2:{i:0;s:7:\"Twitter\";i:1;s:3:\"105\";}i:1;a:2:{i:0;s:8:\"LinkedIn\";i:1;s:2:\"19\";}i:2;a:2:{i:0;s:8:\"Facebook\";i:1;s:1:\"2\";}i:3;a:2:{i:0;s:4:\"Yelp\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:206:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:socialNetwork&metrics=ga:sessions&sort=-ga:sessions&filters=ga:socialNetwork!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:4;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:3:\"127\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:16:\"ga:socialNetwork\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:7:\"filters\";s:27:\"ga:socialNetwork!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:16:\"ga:socialNetwork\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578715200;}','no'),(18776,'activate_comments','','yes'),(18790,'featured_images','1','yes'),(18791,'tcm_show_url','','yes'),(18792,'tcm_live_update','','yes'),(18817,'is_dynamic','1','yes'),(18818,'gravatar_active','','yes'),(18896,'gadwp_cache_qr2_3231853659','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:134:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:hour&metrics=ga:sessions&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:24:{i:0;a:2:{i:0;s:2:\"00\";i:1;s:1:\"0\";}i:1;a:2:{i:0;s:2:\"01\";i:1;s:1:\"0\";}i:2;a:2:{i:0;s:2:\"02\";i:1;s:1:\"2\";}i:3;a:2:{i:0;s:2:\"03\";i:1;s:1:\"0\";}i:4;a:2:{i:0;s:2:\"04\";i:1;s:1:\"1\";}i:5;a:2:{i:0;s:2:\"05\";i:1;s:1:\"0\";}i:6;a:2:{i:0;s:2:\"06\";i:1;s:1:\"1\";}i:7;a:2:{i:0;s:2:\"07\";i:1;s:1:\"0\";}i:8;a:2:{i:0;s:2:\"08\";i:1;s:1:\"2\";}i:9;a:2:{i:0;s:2:\"09\";i:1;s:1:\"1\";}i:10;a:2:{i:0;s:2:\"10\";i:1;s:1:\"0\";}i:11;a:2:{i:0;s:2:\"11\";i:1;s:1:\"1\";}i:12;a:2:{i:0;s:2:\"12\";i:1;s:1:\"1\";}i:13;a:2:{i:0;s:2:\"13\";i:1;s:1:\"0\";}i:14;a:2:{i:0;s:2:\"14\";i:1;s:1:\"0\";}i:15;a:2:{i:0;s:2:\"15\";i:1;s:1:\"2\";}i:16;a:2:{i:0;s:2:\"16\";i:1;s:1:\"0\";}i:17;a:2:{i:0;s:2:\"17\";i:1;s:1:\"1\";}i:18;a:2:{i:0;s:2:\"18\";i:1;s:1:\"0\";}i:19;a:2:{i:0;s:2:\"19\";i:1;s:1:\"0\";}i:20;a:2:{i:0;s:2:\"20\";i:1;s:1:\"0\";}i:21;a:2:{i:0;s:2:\"21\";i:1;s:1:\"0\";}i:22;a:2:{i:0;s:2:\"22\";i:1;s:1:\"0\";}i:23;a:2:{i:0;s:2:\"23\";i:1;s:1:\"0\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:134:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:hour&metrics=ga:sessions&start-date=today&end-date=today\";s:12:\"totalResults\";i:24;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:2:\"12\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:8:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:7:\"ga:hour\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:7:\"ga:hour\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1578870000;}','no'),(19174,'proofly_setting','NjE0MjM2LWY0NDk2NmIxMTkyNWRmMzI1ZGE0','yes'),(19180,'wpgmza_last_rest_api_blocked','2020-01-15T15:32:40+0000','yes'),(19230,'gadwp_cache_qr2_3088710130','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:160:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:pageviews&start-date=30daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:30:{i:0;a:3:{i:0;s:8:\"20191216\";i:1;s:6:\"Monday\";i:2;s:2:\"20\";}i:1;a:3:{i:0;s:8:\"20191217\";i:1;s:7:\"Tuesday\";i:2;s:2:\"37\";}i:2;a:3:{i:0;s:8:\"20191218\";i:1;s:9:\"Wednesday\";i:2;s:2:\"29\";}i:3;a:3:{i:0;s:8:\"20191219\";i:1;s:8:\"Thursday\";i:2;s:2:\"17\";}i:4;a:3:{i:0;s:8:\"20191220\";i:1;s:6:\"Friday\";i:2;s:2:\"12\";}i:5;a:3:{i:0;s:8:\"20191221\";i:1;s:8:\"Saturday\";i:2;s:1:\"9\";}i:6;a:3:{i:0;s:8:\"20191222\";i:1;s:6:\"Sunday\";i:2;s:1:\"3\";}i:7;a:3:{i:0;s:8:\"20191223\";i:1;s:6:\"Monday\";i:2;s:2:\"29\";}i:8;a:3:{i:0;s:8:\"20191224\";i:1;s:7:\"Tuesday\";i:2;s:2:\"16\";}i:9;a:3:{i:0;s:8:\"20191225\";i:1;s:9:\"Wednesday\";i:2;s:1:\"1\";}i:10;a:3:{i:0;s:8:\"20191226\";i:1;s:8:\"Thursday\";i:2;s:2:\"32\";}i:11;a:3:{i:0;s:8:\"20191227\";i:1;s:6:\"Friday\";i:2;s:3:\"140\";}i:12;a:3:{i:0;s:8:\"20191228\";i:1;s:8:\"Saturday\";i:2;s:3:\"104\";}i:13;a:3:{i:0;s:8:\"20191229\";i:1;s:6:\"Sunday\";i:2;s:3:\"143\";}i:14;a:3:{i:0;s:8:\"20191230\";i:1;s:6:\"Monday\";i:2;s:2:\"69\";}i:15;a:3:{i:0;s:8:\"20191231\";i:1;s:7:\"Tuesday\";i:2;s:3:\"121\";}i:16;a:3:{i:0;s:8:\"20200101\";i:1;s:9:\"Wednesday\";i:2;s:2:\"66\";}i:17;a:3:{i:0;s:8:\"20200102\";i:1;s:8:\"Thursday\";i:2;s:3:\"203\";}i:18;a:3:{i:0;s:8:\"20200103\";i:1;s:6:\"Friday\";i:2;s:3:\"141\";}i:19;a:3:{i:0;s:8:\"20200104\";i:1;s:8:\"Saturday\";i:2;s:2:\"75\";}i:20;a:3:{i:0;s:8:\"20200105\";i:1;s:6:\"Sunday\";i:2;s:2:\"28\";}i:21;a:3:{i:0;s:8:\"20200106\";i:1;s:6:\"Monday\";i:2;s:3:\"208\";}i:22;a:3:{i:0;s:8:\"20200107\";i:1;s:7:\"Tuesday\";i:2;s:3:\"157\";}i:23;a:3:{i:0;s:8:\"20200108\";i:1;s:9:\"Wednesday\";i:2;s:3:\"237\";}i:24;a:3:{i:0;s:8:\"20200109\";i:1;s:8:\"Thursday\";i:2;s:3:\"229\";}i:25;a:3:{i:0;s:8:\"20200110\";i:1;s:6:\"Friday\";i:2;s:3:\"154\";}i:26;a:3:{i:0;s:8:\"20200111\";i:1;s:8:\"Saturday\";i:2;s:3:\"173\";}i:27;a:3:{i:0;s:8:\"20200112\";i:1;s:6:\"Sunday\";i:2;s:3:\"118\";}i:28;a:3:{i:0;s:8:\"20200113\";i:1;s:6:\"Monday\";i:2;s:3:\"138\";}i:29;a:3:{i:0;s:8:\"20200114\";i:1;s:7:\"Tuesday\";i:2;s:3:\"244\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:160:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:pageviews&start-date=30daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:30;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:4:\"2953\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:8:{s:10:\"start-date\";s:9:\"30daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:24:\"ga:date,ga:dayOfWeekName\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:3:{i:0;a:3:{s:4:\"name\";s:7:\"ga:date\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:16:\"ga:dayOfWeekName\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:2;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579147200;}','no'),(19246,'tpm_connection','a:4:{s:6:\"ttw_id\";s:6:\"182497\";s:9:\"ttw_email\";s:16:\"robert@localhost\";s:8:\"ttw_salt\";s:43:\"NmFhMjgwNGY0ZmNhNWQ5N2E0NTJjYjE3MDQ3MzA2OGM\";s:6:\"status\";s:9:\"connected\";}','yes'),(19256,'tcm_badges_option','','yes'),(19270,'wc_hash_key','5d800db804aedbfb8119871809b88805','no'),(19271,'wc_options','a:15:{s:4:\"form\";a:18:{s:15:\"commentFormView\";s:9:\"collapsed\";s:19:\"enableDropAnimation\";i:1;s:10:\"richEditor\";s:7:\"desktop\";s:10:\"boldButton\";i:1;s:12:\"italicButton\";i:1;s:15:\"underlineButton\";i:1;s:12:\"strikeButton\";i:1;s:8:\"olButton\";i:1;s:8:\"ulButton\";i:1;s:16:\"blockquoteButton\";i:1;s:15:\"codeblockButton\";i:1;s:10:\"linkButton\";i:1;s:16:\"sourcecodeButton\";i:1;s:13:\"spoilerButton\";i:1;s:15:\"enableQuickTags\";i:0;s:22:\"commenterNameMinLength\";s:1:\"3\";s:22:\"commenterNameMaxLength\";s:2:\"50\";s:18:\"storeCommenterData\";s:2:\"-1\";}s:9:\"recaptcha\";a:8:{s:7:\"siteKey\";s:0:\"\";s:9:\"secretKey\";s:0:\"\";s:5:\"theme\";s:5:\"light\";s:4:\"lang\";s:0:\"\";s:13:\"requestMethod\";s:4:\"auto\";s:13:\"showForGuests\";i:0;s:12:\"showForUsers\";i:0;s:21:\"isShowOnSubscribeForm\";i:0;}s:5:\"login\";a:9:{s:20:\"showLoggedInUsername\";s:1:\"1\";s:22:\"showLoginLinkForGuests\";i:0;s:15:\"showActivityTab\";i:1;s:20:\"showSubscriptionsTab\";i:1;s:14:\"showFollowsTab\";i:1;s:17:\"enableProfileURLs\";i:1;s:19:\"websiteAsProfileUrl\";i:1;s:13:\"isUserByEmail\";i:0;s:8:\"loginUrl\";s:0:\"\";}s:6:\"social\";a:57:{s:28:\"socialLoginAgreementCheckbox\";s:1:\"1\";s:26:\"socialLoginInSecondaryForm\";i:0;s:19:\"displaySocialAvatar\";i:1;s:19:\"displayIconOnAvatar\";i:1;s:20:\"rememberLoggedinUser\";i:1;s:13:\"enableFbLogin\";i:0;s:13:\"enableFbShare\";s:1:\"1\";s:7:\"fbAppID\";s:0:\"\";s:11:\"fbAppSecret\";s:0:\"\";s:11:\"fbUseOAuth2\";i:0;s:18:\"enableTwitterLogin\";i:0;s:18:\"enableTwitterShare\";s:1:\"1\";s:12:\"twitterAppID\";s:25:\"OOwcdVHgutOBguElFGjczYRER\";s:16:\"twitterAppSecret\";s:50:\"9VBILByuV1TTYsxIRMJFIA6leGcgKs2okJ0oUWVhtL5AEzfp14\";s:17:\"enableGoogleLogin\";i:0;s:14:\"googleClientID\";s:0:\"\";s:18:\"googleClientSecret\";s:0:\"\";s:17:\"enableDisqusLogin\";i:0;s:15:\"disqusPublicKey\";s:0:\"\";s:15:\"disqusSecretKey\";s:0:\"\";s:20:\"enableWordpressLogin\";i:0;s:17:\"wordpressClientID\";s:0:\"\";s:21:\"wordpressClientSecret\";s:0:\"\";s:20:\"enableInstagramLogin\";i:0;s:14:\"instagramAppID\";s:0:\"\";s:18:\"instagramAppSecret\";s:0:\"\";s:19:\"enableLinkedinLogin\";i:0;s:16:\"linkedinClientID\";s:0:\"\";s:20:\"linkedinClientSecret\";s:0:\"\";s:19:\"enableWhatsappShare\";i:0;s:17:\"enableYandexLogin\";i:0;s:8:\"yandexID\";s:0:\"\";s:14:\"yandexPassword\";s:0:\"\";s:17:\"enableMailruLogin\";i:0;s:14:\"mailruClientID\";s:0:\"\";s:18:\"mailruClientSecret\";s:0:\"\";s:16:\"enableWeiboLogin\";i:0;s:8:\"weiboKey\";s:0:\"\";s:11:\"weiboSecret\";s:0:\"\";s:17:\"enableWechatLogin\";i:0;s:11:\"wechatAppID\";s:0:\"\";s:12:\"wechatSecret\";s:0:\"\";s:13:\"enableQQLogin\";i:0;s:7:\"qqAppID\";s:0:\"\";s:8:\"qqSecret\";s:0:\"\";s:16:\"enableBaiduLogin\";i:0;s:10:\"baiduAppID\";s:0:\"\";s:11:\"baiduSecret\";s:0:\"\";s:13:\"enableVkLogin\";i:0;s:13:\"enableVkShare\";s:1:\"1\";s:7:\"vkAppID\";s:0:\"\";s:11:\"vkAppSecret\";s:0:\"\";s:13:\"enableOkLogin\";i:0;s:13:\"enableOkShare\";s:1:\"1\";s:7:\"okAppID\";s:0:\"\";s:8:\"okAppKey\";s:0:\"\";s:11:\"okAppSecret\";s:0:\"\";}s:6:\"rating\";a:6:{s:22:\"enablePostRatingSchema\";i:0;s:19:\"displayRatingOnPost\";a:1:{i:0;s:5:\"after\";}s:23:\"ratingCssOnNoneSingular\";i:0;s:16:\"ratingHoverColor\";s:7:\"#FFED85\";s:19:\"ratingInactiveColor\";s:7:\"#DDDDDD\";s:17:\"ratingActiveColor\";s:7:\"#FFD700\";}s:14:\"thread_display\";a:11:{s:17:\"firstLoadWithAjax\";i:0;s:19:\"commentListLoadType\";s:1:\"0\";s:24:\"isLoadOnlyParentComments\";i:0;s:23:\"showReactedFilterButton\";i:1;s:23:\"showHottestFilterButton\";i:1;s:18:\"showSortingButtons\";s:1:\"1\";s:18:\"mostVotedByDefault\";i:0;s:15:\"reverseChildren\";i:0;s:23:\"highlightUnreadComments\";i:0;s:15:\"scrollToComment\";i:1;s:15:\"orderCommentsBy\";s:10:\"comment_ID\";}s:14:\"thread_layouts\";a:12:{s:15:\"showCommentLink\";i:1;s:15:\"showCommentDate\";i:1;s:17:\"showVotingButtons\";i:1;s:17:\"votingButtonsIcon\";s:16:\"fa-plus|fa-minus\";s:18:\"votingButtonsStyle\";s:1:\"0\";s:19:\"enableDislikeButton\";i:1;s:14:\"isGuestCanVote\";s:1:\"1\";s:22:\"highlightVotingButtons\";i:1;s:11:\"showAvatars\";i:1;s:23:\"defaultAvatarUrlForUser\";s:0:\"\";s:24:\"defaultAvatarUrlForGuest\";s:0:\"\";s:23:\"changeAvatarsEverywhere\";i:1;}s:13:\"thread_styles\";a:22:{s:5:\"theme\";s:11:\"wpd-default\";s:12:\"primaryColor\";s:7:\"#00B38F\";s:23:\"newLoadedCommentBGColor\";s:7:\"#FFFAD6\";s:18:\"primaryButtonColor\";s:7:\"#FFFFFF\";s:15:\"primaryButtonBG\";s:7:\"#555555\";s:12:\"bubbleColors\";s:7:\"#1DB99A\";s:20:\"inlineFeedbackColors\";s:7:\"#1DB99A\";s:20:\"defaultCommentAreaBG\";s:0:\"\";s:23:\"defaultCommentTextColor\";s:7:\"#777777\";s:22:\"defaultCommentFieldsBG\";s:0:\"\";s:31:\"defaultCommentFieldsBorderColor\";s:7:\"#DDDDDD\";s:29:\"defaultCommentFieldsTextColor\";s:7:\"#777777\";s:36:\"defaultCommentFieldsPlaceholderColor\";s:0:\"\";s:17:\"darkCommentAreaBG\";s:7:\"#111111\";s:20:\"darkCommentTextColor\";s:7:\"#CCCCCC\";s:19:\"darkCommentFieldsBG\";s:7:\"#999999\";s:28:\"darkCommentFieldsBorderColor\";s:7:\"#D1D1D1\";s:26:\"darkCommentFieldsTextColor\";s:7:\"#000000\";s:33:\"darkCommentFieldsPlaceholderColor\";s:7:\"#DDDDDD\";s:15:\"commentTextSize\";s:4:\"14px\";s:17:\"enableFontAwesome\";i:1;s:9:\"customCss\";s:27:\".comments-area{width:auto;}\";}s:12:\"subscription\";a:27:{s:20:\"enableUserMentioning\";i:1;s:24:\"sendMailToMentionedUsers\";i:1;s:24:\"isNotifyOnCommentApprove\";s:1:\"1\";s:19:\"enableMemberConfirm\";i:0;s:19:\"enableGuestsConfirm\";i:0;s:16:\"subscriptionType\";s:1:\"1\";s:17:\"showReplyCheckbox\";s:1:\"1\";s:21:\"isReplyDefaultChecked\";i:0;s:34:\"usePostmaticForCommentNotification\";i:0;s:14:\"isFollowActive\";i:1;s:28:\"disableFollowConfirmForUsers\";i:1;s:23:\"emailSubjectPostComment\";s:11:\"New Comment\";s:23:\"emailContentPostComment\";s:292:\"Hi [SUBSCRIBER_NAME],

new comment has been posted by the [COMMENT_AUTHOR] on the discussion section you\'ve been interested in

[COMMENT_URL]

[COMMENT_CONTENT]

Unsubscribe\";s:27:\"emailSubjectAllCommentReply\";s:27:\"New Reply ( your comments )\";s:27:\"emailContentAllCommentReply\";s:290:\"Hi [SUBSCRIBER_NAME],

new reply has been posted by the [COMMENT_AUTHOR] on the discussion section you\'ve been interested in

[COMMENT_URL]

[COMMENT_CONTENT]

Unsubscribe\";s:24:\"emailSubjectCommentReply\";s:35:\"New Reply ( your specific comment )\";s:24:\"emailContentCommentReply\";s:290:\"Hi [SUBSCRIBER_NAME],

new reply has been posted by the [COMMENT_AUTHOR] on the discussion section you\'ve been interested in

[COMMENT_URL]

[COMMENT_CONTENT]

Unsubscribe\";s:36:\"emailSubjectSubscriptionConfirmation\";s:25:\"Subscription Confirmation\";s:36:\"emailContentSubscriptionConfirmation\";s:470:\"Hi,
You just subscribed for new comments on our website. This means you will receive an email when new comments are posted according to subscription option you\'ve chosen.
To activate, click confirm below. If you believe this is an error, ignore this message and we\'ll never bother you again.

[POST_TITLE]

Confirm Your Subscription

Cancel Subscription\";s:27:\"emailSubjectCommentApproved\";s:25:\"Your comment is approved!\";s:27:\"emailContentCommentApproved\";s:139:\"Hi [COMMENT_AUTHOR],

your comment has been approved.

[COMMENT_URL]

[COMMENT_CONTENT]\";s:25:\"emailSubjectUserMentioned\";s:34:\"You have been mentioned in comment\";s:25:\"emailContentUserMentioned\";s:181:\"Hi [MENTIONED_USER_NAME]!
You have been mentioned in a comment posted on \"[POST_TITLE]\" post by [COMMENT_AUTHOR].

Comment URL: [COMMENT_URL]\";s:30:\"emailSubjectFollowConfirmation\";s:27:\"User Following Confirmation\";s:30:\"emailContentFollowConfirmation\";s:433:\"Hi,
You just started following a new user. You\'ll get email notification once new comment is posted by this user.
Please click on \"user following confirmation\" link to confirm your request. If you believe this is an error, ignore this message and we\'ll never bother you again.

[POST_TITLE]

Confirm Follow

Unfollow\";s:25:\"emailSubjectFollowComment\";s:11:\"New Comment\";s:25:\"emailContentFollowComment\";s:248:\"Hi [FOLLOWER_NAME],

new comment has been posted by the [COMMENT_AUTHOR] you are following

[COMMENT_URL]

[COMMENT_CONTENT]

Unfollow\";}s:6:\"labels\";a:2:{s:14:\"blogRoleLabels\";a:9:{s:13:\"administrator\";i:1;s:6:\"editor\";i:1;s:6:\"author\";i:0;s:11:\"contributor\";i:0;s:10:\"subscriber\";i:0;s:13:\"wpseo_manager\";i:0;s:12:\"wpseo_editor\";i:0;s:11:\"post_author\";i:1;s:5:\"guest\";i:0;}s:9:\"blogRoles\";a:9:{s:13:\"administrator\";s:7:\"#00B38F\";s:6:\"editor\";s:7:\"#00B38F\";s:6:\"author\";s:7:\"#00B38F\";s:11:\"contributor\";s:7:\"#00B38F\";s:10:\"subscriber\";s:7:\"#00B38F\";s:13:\"wpseo_manager\";s:7:\"#00B38F\";s:12:\"wpseo_editor\";s:7:\"#00B38F\";s:11:\"post_author\";s:7:\"#00B38F\";s:5:\"guest\";s:7:\"#00B38F\";}}s:10:\"moderation\";a:8:{s:19:\"commentEditableTime\";s:3:\"900\";s:28:\"enableEditingWhenHaveReplies\";i:0;s:18:\"displayEditingInfo\";i:1;s:17:\"enableStickButton\";i:1;s:17:\"enableCloseButton\";i:1;s:25:\"restrictCommentingPerUser\";s:7:\"disable\";s:22:\"commentRestrictionType\";s:4:\"both\";s:17:\"userCommentsLimit\";i:1;}s:7:\"content\";a:16:{s:20:\"commentTextMinLength\";i:1;s:18:\"replyTextMinLength\";i:1;s:20:\"commentTextMaxLength\";s:0:\"\";s:18:\"replyTextMaxLength\";s:0:\"\";s:21:\"enableImageConversion\";s:1:\"1\";s:16:\"enableShortcodes\";i:0;s:20:\"commentReadMoreLimit\";i:100;s:12:\"wmuIsEnabled\";i:1;s:17:\"wmuIsGuestAllowed\";i:1;s:13:\"wmuIsLightbox\";i:1;s:12:\"wmuMimeTypes\";a:9:{s:3:\"jpg\";s:10:\"image/jpeg\";s:4:\"jpeg\";s:10:\"image/jpeg\";s:3:\"jpe\";s:10:\"image/jpeg\";s:3:\"gif\";s:9:\"image/gif\";s:3:\"png\";s:9:\"image/png\";s:3:\"bmp\";s:9:\"image/bmp\";s:4:\"tiff\";s:10:\"image/tiff\";s:3:\"tif\";s:10:\"image/tiff\";s:3:\"ico\";s:12:\"image/x-icon\";}s:14:\"wmuMaxFileSize\";i:2;s:23:\"wmuIsShowFilesDashboard\";i:1;s:19:\"wmuSingleImageWidth\";s:4:\"auto\";s:20:\"wmuSingleImageHeight\";i:200;s:13:\"wmuImageSizes\";a:4:{i:0;s:9:\"thumbnail\";i:1;s:6:\"medium\";i:2;s:12:\"medium_large\";i:3;s:5:\"large\";}}s:4:\"live\";a:9:{s:12:\"enableBubble\";i:1;s:16:\"bubbleLiveUpdate\";i:0;s:14:\"bubbleLocation\";s:12:\"content_left\";s:27:\"bubbleShowNewCommentMessage\";i:1;s:17:\"bubbleHintTimeout\";i:45;s:21:\"bubbleHintHideTimeout\";i:10;s:21:\"commentListUpdateType\";s:1:\"0\";s:16:\"liveUpdateGuests\";i:0;s:22:\"commentListUpdateTimer\";i:30;}s:6:\"inline\";a:2:{s:22:\"showInlineFilterButton\";i:1;s:28:\"inlineFeedbackAttractionType\";s:5:\"blink\";}s:7:\"general\";a:12:{s:14:\"isEnableOnHome\";s:1:\"1\";s:19:\"isNativeAjaxEnabled\";i:1;s:16:\"loadComboVersion\";i:1;s:14:\"loadMinVersion\";i:1;s:17:\"commentLinkFilter\";s:1:\"1\";s:12:\"redirectPage\";s:1:\"0\";s:17:\"simpleCommentDate\";i:0;s:14:\"dateDiffFormat\";s:32:\"[number] [time_unit] [adjective]\";s:9:\"isUsePoMo\";i:0;s:23:\"showPluginPoweredByLink\";i:0;s:14:\"isCacheEnabled\";i:1;s:12:\"cacheTimeout\";i:10;}}','yes'),(19272,'wpdiscuz_form_content_type_rel','a:3:{s:4:\"post\";a:1:{s:5:\"en_US\";i:1546;}s:10:\"attachment\";a:1:{s:5:\"en_US\";i:1546;}s:4:\"page\";a:1:{s:5:\"en_US\";i:1546;}}','yes'),(19273,'wc_plugin_version','7.4.2','yes'),(19301,'gadwp_cache_qr2_3008166741','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:135:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:hour&metrics=ga:pageviews&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:24:{i:0;a:2:{i:0;s:2:\"00\";i:1;s:1:\"2\";}i:1;a:2:{i:0;s:2:\"01\";i:1;s:1:\"4\";}i:2;a:2:{i:0;s:2:\"02\";i:1;s:1:\"1\";}i:3;a:2:{i:0;s:2:\"03\";i:1;s:1:\"3\";}i:4;a:2:{i:0;s:2:\"04\";i:1;s:1:\"1\";}i:5;a:2:{i:0;s:2:\"05\";i:1;s:1:\"0\";}i:6;a:2:{i:0;s:2:\"06\";i:1;s:1:\"0\";}i:7;a:2:{i:0;s:2:\"07\";i:1;s:1:\"0\";}i:8;a:2:{i:0;s:2:\"08\";i:1;s:1:\"3\";}i:9;a:2:{i:0;s:2:\"09\";i:1;s:1:\"3\";}i:10;a:2:{i:0;s:2:\"10\";i:1;s:2:\"23\";}i:11;a:2:{i:0;s:2:\"11\";i:1;s:1:\"6\";}i:12;a:2:{i:0;s:2:\"12\";i:1;s:2:\"16\";}i:13;a:2:{i:0;s:2:\"13\";i:1;s:2:\"15\";}i:14;a:2:{i:0;s:2:\"14\";i:1;s:2:\"11\";}i:15;a:2:{i:0;s:2:\"15\";i:1;s:2:\"17\";}i:16;a:2:{i:0;s:2:\"16\";i:1;s:2:\"11\";}i:17;a:2:{i:0;s:2:\"17\";i:1;s:1:\"9\";}i:18;a:2:{i:0;s:2:\"18\";i:1;s:1:\"0\";}i:19;a:2:{i:0;s:2:\"19\";i:1;s:1:\"0\";}i:20;a:2:{i:0;s:2:\"20\";i:1;s:1:\"0\";}i:21;a:2:{i:0;s:2:\"21\";i:1;s:1:\"0\";}i:22;a:2:{i:0;s:2:\"22\";i:1;s:1:\"0\";}i:23;a:2:{i:0;s:2:\"23\";i:1;s:1:\"0\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:135:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:hour&metrics=ga:pageviews&start-date=today&end-date=today\";s:12:\"totalResults\";i:24;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:3:\"125\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:8:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:7:\"ga:hour\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:7:\"ga:hour\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579132800;}','no'),(19303,'gadwp_cache_qr8_1491360304','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:163:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:channelGrouping&metrics=ga:sessions&sort=-ga:sessions&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:4:{i:0;a:2:{i:0;s:6:\"Direct\";i:1;s:2:\"17\";}i:1;a:2:{i:0;s:14:\"Organic Search\";i:1;s:2:\"13\";}i:2;a:2:{i:0;s:6:\"Social\";i:1;s:1:\"5\";}i:3;a:2:{i:0;s:8:\"Referral\";i:1;s:1:\"3\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:163:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:channelGrouping&metrics=ga:sessions&sort=-ga:sessions&start-date=today&end-date=today\";s:12:\"totalResults\";i:4;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:2:\"38\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:18:\"ga:channelGrouping\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:18:\"ga:channelGrouping\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579132800;}','no'),(19304,'gadwp_cache_qr10_870951516','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:185:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:medium&metrics=ga:sessions&sort=-ga:sessions&filters=ga:medium!%3D(not+set)&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:3:{i:0;a:2:{i:0;s:6:\"(none)\";i:1;s:2:\"17\";}i:1;a:2:{i:0;s:7:\"organic\";i:1;s:2:\"13\";}i:2;a:2:{i:0;s:8:\"referral\";i:1;s:1:\"8\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:185:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:medium&metrics=ga:sessions&sort=-ga:sessions&filters=ga:medium!%3D(not+set)&start-date=today&end-date=today\";s:12:\"totalResults\";i:3;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:2:\"38\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:9:\"ga:medium\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:7:\"filters\";s:20:\"ga:medium!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:9:\"ga:medium\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579132800;}','no'),(19305,'gadwp_cache_qr10_2622851633','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:195:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:visitorType&metrics=ga:sessions&sort=-ga:sessions&filters=ga:visitorType!%3D(not+set)&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:2:{i:0;a:2:{i:0;s:11:\"New Visitor\";i:1;s:2:\"21\";}i:1;a:2:{i:0;s:17:\"Returning Visitor\";i:1;s:2:\"17\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:195:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:visitorType&metrics=ga:sessions&sort=-ga:sessions&filters=ga:visitorType!%3D(not+set)&start-date=today&end-date=today\";s:12:\"totalResults\";i:2;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:2:\"38\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:14:\"ga:visitorType\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:7:\"filters\";s:25:\"ga:visitorType!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:14:\"ga:visitorType\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579132800;}','no'),(19306,'gadwp_cache_qr10_798823485','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:209:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:source&metrics=ga:sessions&sort=-ga:sessions&filters=ga:medium%3D%3Dorganic;ga:keyword!%3D(not+set)&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:1:{i:0;a:2:{i:0;s:6:\"google\";i:1;s:2:\"12\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:209:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:source&metrics=ga:sessions&sort=-ga:sessions&filters=ga:medium%3D%3Dorganic;ga:keyword!%3D(not+set)&start-date=today&end-date=today\";s:12:\"totalResults\";i:1;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:2:\"12\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:9:\"ga:source\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:7:\"filters\";s:40:\"ga:medium==organic;ga:keyword!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:9:\"ga:source\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579132800;}','no'),(19307,'gadwp_cache_qr10_2865117561','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:199:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:socialNetwork&metrics=ga:sessions&sort=-ga:sessions&filters=ga:socialNetwork!%3D(not+set)&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:3:{i:0;a:2:{i:0;s:7:\"Twitter\";i:1;s:1:\"3\";}i:1;a:2:{i:0;s:8:\"LinkedIn\";i:1;s:1:\"1\";}i:2;a:2:{i:0;s:7:\"YouTube\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:199:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:socialNetwork&metrics=ga:sessions&sort=-ga:sessions&filters=ga:socialNetwork!%3D(not+set)&start-date=today&end-date=today\";s:12:\"totalResults\";i:3;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:1:\"5\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:16:\"ga:socialNetwork\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:7:\"filters\";s:27:\"ga:socialNetwork!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:16:\"ga:socialNetwork\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579132800;}','no'),(19308,'gadwp_cache_qr6_4142927145','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:187:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:keyword&metrics=ga:sessions&sort=-ga:sessions&filters=ga:keyword!%3D(not+set)&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:1:{i:0;a:2:{i:0;s:14:\"(not provided)\";i:1;s:2:\"12\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:187:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:keyword&metrics=ga:sessions&sort=-ga:sessions&filters=ga:keyword!%3D(not+set)&start-date=today&end-date=today\";s:12:\"totalResults\";i:1;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:2:\"12\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:10:\"ga:keyword\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:4:\"sort\";a:1:{i:0;s:12:\"-ga:sessions\";}s:7:\"filters\";s:21:\"ga:keyword!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:10:\"ga:keyword\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579132800;}','no'),(19309,'gadwp_cache_qr8_3182935475','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:157:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:channelGrouping&metrics=ga:users&sort=-ga:users&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:4:{i:0;a:2:{i:0;s:6:\"Direct\";i:1;s:2:\"12\";}i:1;a:2:{i:0;s:14:\"Organic Search\";i:1;s:1:\"7\";}i:2;a:2:{i:0;s:6:\"Social\";i:1;s:1:\"5\";}i:3;a:2:{i:0;s:8:\"Referral\";i:1;s:1:\"3\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:157:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:channelGrouping&metrics=ga:users&sort=-ga:users&start-date=today&end-date=today\";s:12:\"totalResults\";i:4;s:19:\"totalsForAllResults\";a:1:{s:8:\"ga:users\";s:2:\"27\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:18:\"ga:channelGrouping\";s:7:\"metrics\";a:1:{i:0;s:8:\"ga:users\";}s:4:\"sort\";a:1:{i:0;s:9:\"-ga:users\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:18:\"ga:channelGrouping\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579132800;}','no'),(19310,'gadwp_cache_qr10_2030765655','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:179:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:medium&metrics=ga:users&sort=-ga:users&filters=ga:medium!%3D(not+set)&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:3:{i:0;a:2:{i:0;s:6:\"(none)\";i:1;s:2:\"12\";}i:1;a:2:{i:0;s:8:\"referral\";i:1;s:1:\"8\";}i:2;a:2:{i:0;s:7:\"organic\";i:1;s:1:\"7\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:179:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:medium&metrics=ga:users&sort=-ga:users&filters=ga:medium!%3D(not+set)&start-date=today&end-date=today\";s:12:\"totalResults\";i:3;s:19:\"totalsForAllResults\";a:1:{s:8:\"ga:users\";s:2:\"27\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:9:\"ga:medium\";s:7:\"metrics\";a:1:{i:0;s:8:\"ga:users\";}s:4:\"sort\";a:1:{i:0;s:9:\"-ga:users\";}s:7:\"filters\";s:20:\"ga:medium!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:9:\"ga:medium\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579132800;}','no'),(19311,'gadwp_cache_qr10_495205293','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:189:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:visitorType&metrics=ga:users&sort=-ga:users&filters=ga:visitorType!%3D(not+set)&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:2:{i:0;a:2:{i:0;s:11:\"New Visitor\";i:1;s:2:\"21\";}i:1;a:2:{i:0;s:17:\"Returning Visitor\";i:1;s:1:\"6\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:189:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:visitorType&metrics=ga:users&sort=-ga:users&filters=ga:visitorType!%3D(not+set)&start-date=today&end-date=today\";s:12:\"totalResults\";i:2;s:19:\"totalsForAllResults\";a:1:{s:8:\"ga:users\";s:2:\"27\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:14:\"ga:visitorType\";s:7:\"metrics\";a:1:{i:0;s:8:\"ga:users\";}s:4:\"sort\";a:1:{i:0;s:9:\"-ga:users\";}s:7:\"filters\";s:25:\"ga:visitorType!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:14:\"ga:visitorType\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579132800;}','no'),(19312,'gadwp_cache_qr10_3768461701','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:203:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:source&metrics=ga:users&sort=-ga:users&filters=ga:medium%3D%3Dorganic;ga:keyword!%3D(not+set)&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:1:{i:0;a:2:{i:0;s:6:\"google\";i:1;s:1:\"6\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:203:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:source&metrics=ga:users&sort=-ga:users&filters=ga:medium%3D%3Dorganic;ga:keyword!%3D(not+set)&start-date=today&end-date=today\";s:12:\"totalResults\";i:1;s:19:\"totalsForAllResults\";a:1:{s:8:\"ga:users\";s:1:\"6\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:9:\"ga:source\";s:7:\"metrics\";a:1:{i:0;s:8:\"ga:users\";}s:4:\"sort\";a:1:{i:0;s:9:\"-ga:users\";}s:7:\"filters\";s:40:\"ga:medium==organic;ga:keyword!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:9:\"ga:source\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579132800;}','no'),(19313,'gadwp_cache_qr10_3607186690','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:193:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:socialNetwork&metrics=ga:users&sort=-ga:users&filters=ga:socialNetwork!%3D(not+set)&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:3:{i:0;a:2:{i:0;s:7:\"Twitter\";i:1;s:1:\"3\";}i:1;a:2:{i:0;s:8:\"LinkedIn\";i:1;s:1:\"1\";}i:2;a:2:{i:0;s:7:\"YouTube\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:193:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:socialNetwork&metrics=ga:users&sort=-ga:users&filters=ga:socialNetwork!%3D(not+set)&start-date=today&end-date=today\";s:12:\"totalResults\";i:3;s:19:\"totalsForAllResults\";a:1:{s:8:\"ga:users\";s:1:\"5\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:16:\"ga:socialNetwork\";s:7:\"metrics\";a:1:{i:0;s:8:\"ga:users\";}s:4:\"sort\";a:1:{i:0;s:9:\"-ga:users\";}s:7:\"filters\";s:27:\"ga:socialNetwork!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:16:\"ga:socialNetwork\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579132800;}','no'),(19314,'gadwp_cache_qr8_1773405683','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:165:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:channelGrouping&metrics=ga:pageviews&sort=-ga:pageviews&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:4:{i:0;a:2:{i:0;s:6:\"Direct\";i:1;s:2:\"67\";}i:1;a:2:{i:0;s:14:\"Organic Search\";i:1;s:2:\"47\";}i:2;a:2:{i:0;s:8:\"Referral\";i:1;s:1:\"6\";}i:3;a:2:{i:0;s:6:\"Social\";i:1;s:1:\"5\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:165:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:channelGrouping&metrics=ga:pageviews&sort=-ga:pageviews&start-date=today&end-date=today\";s:12:\"totalResults\";i:4;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:3:\"125\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:18:\"ga:channelGrouping\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:4:\"sort\";a:1:{i:0;s:13:\"-ga:pageviews\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:18:\"ga:channelGrouping\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579132800;}','no'),(19315,'gadwp_cache_qr10_769336688','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:187:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:medium&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:medium!%3D(not+set)&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:3:{i:0;a:2:{i:0;s:6:\"(none)\";i:1;s:2:\"67\";}i:1;a:2:{i:0;s:7:\"organic\";i:1;s:2:\"47\";}i:2;a:2:{i:0;s:8:\"referral\";i:1;s:2:\"11\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:187:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:medium&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:medium!%3D(not+set)&start-date=today&end-date=today\";s:12:\"totalResults\";i:3;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:3:\"125\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:9:\"ga:medium\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:4:\"sort\";a:1:{i:0;s:13:\"-ga:pageviews\";}s:7:\"filters\";s:20:\"ga:medium!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:9:\"ga:medium\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579132800;}','no'),(19316,'gadwp_cache_qr10_511149237','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:197:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:visitorType&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:visitorType!%3D(not+set)&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:2:{i:0;a:2:{i:0;s:17:\"Returning Visitor\";i:1;s:2:\"74\";}i:1;a:2:{i:0;s:11:\"New Visitor\";i:1;s:2:\"51\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:197:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:visitorType&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:visitorType!%3D(not+set)&start-date=today&end-date=today\";s:12:\"totalResults\";i:2;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:3:\"125\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:14:\"ga:visitorType\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:4:\"sort\";a:1:{i:0;s:13:\"-ga:pageviews\";}s:7:\"filters\";s:25:\"ga:visitorType!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:14:\"ga:visitorType\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579132800;}','no'),(19317,'gadwp_cache_qr10_393347072','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:211:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:source&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:medium%3D%3Dorganic;ga:keyword!%3D(not+set)&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:1:{i:0;a:2:{i:0;s:6:\"google\";i:1;s:2:\"44\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:211:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:source&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:medium%3D%3Dorganic;ga:keyword!%3D(not+set)&start-date=today&end-date=today\";s:12:\"totalResults\";i:1;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:2:\"44\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:9:\"ga:source\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:4:\"sort\";a:1:{i:0;s:13:\"-ga:pageviews\";}s:7:\"filters\";s:40:\"ga:medium==organic;ga:keyword!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:9:\"ga:source\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579132800;}','no'),(19318,'gadwp_cache_qr10_1715920548','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:201:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:socialNetwork&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:socialNetwork!%3D(not+set)&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:3:{i:0;a:2:{i:0;s:7:\"Twitter\";i:1;s:1:\"3\";}i:1;a:2:{i:0;s:8:\"LinkedIn\";i:1;s:1:\"1\";}i:2;a:2:{i:0;s:7:\"YouTube\";i:1;s:1:\"1\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:201:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:socialNetwork&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:socialNetwork!%3D(not+set)&start-date=today&end-date=today\";s:12:\"totalResults\";i:3;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:1:\"5\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:16:\"ga:socialNetwork\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:4:\"sort\";a:1:{i:0;s:13:\"-ga:pageviews\";}s:7:\"filters\";s:27:\"ga:socialNetwork!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:16:\"ga:socialNetwork\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579132800;}','no'),(19319,'gadwp_cache_qr_realtimecache_4101591970','a:2:{s:5:\"value\";O:37:\"Deconf_Service_Analytics_RealtimeData\":16:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:50:\"Deconf_Service_Analytics_RealtimeDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:2:\"id\";s:179:\"https://www.googleapis.com/analytics/v3/data/realtime?ids=ga:83116304&dimensions=rt:pagePath,rt:source,rt:keyword,rt:trafficType,rt:visitorType,rt:pageTitle&metrics=rt:activeUsers\";s:4:\"kind\";s:22:\"analytics#realtimeData\";s:18:\"\0*\0profileInfoType\";s:48:\"Deconf_Service_Analytics_RealtimeDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:42:\"Deconf_Service_Analytics_RealtimeDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";N;s:8:\"selfLink\";s:179:\"https://www.googleapis.com/analytics/v3/data/realtime?ids=ga:83116304&dimensions=rt:pagePath,rt:source,rt:keyword,rt:trafficType,rt:visitorType,rt:pageTitle&metrics=rt:activeUsers\";s:12:\"totalResults\";i:0;s:19:\"totalsForAllResults\";a:1:{s:14:\"rt:activeUsers\";s:1:\"0\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:4:{s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:75:\"rt:pagePath,rt:source,rt:keyword,rt:trafficType,rt:visitorType,rt:pageTitle\";s:7:\"metrics\";a:1:{i:0;s:14:\"rt:activeUsers\";}s:11:\"max-results\";i:1000;}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:17:\"realtime:83116304\";}s:13:\"columnHeaders\";a:7:{i:0;a:3:{s:4:\"name\";s:11:\"rt:pagePath\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:9:\"rt:source\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:2;a:3:{s:4:\"name\";s:10:\"rt:keyword\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:3;a:3:{s:4:\"name\";s:14:\"rt:trafficType\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:4;a:3:{s:4:\"name\";s:14:\"rt:visitorType\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:5;a:3:{s:4:\"name\";s:12:\"rt:pageTitle\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:6;a:3:{s:4:\"name\";s:14:\"rt:activeUsers\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579131327;}','no'),(19320,'gadwp_cache_qr8_3498639934','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:172:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:channelGrouping&metrics=ga:pageviews&sort=-ga:pageviews&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:4:{i:0;a:2:{i:0;s:6:\"Direct\";i:1;s:3:\"743\";}i:1;a:2:{i:0;s:6:\"Social\";i:1;s:3:\"227\";}i:2;a:2:{i:0;s:14:\"Organic Search\";i:1;s:3:\"220\";}i:3;a:2:{i:0;s:8:\"Referral\";i:1;s:3:\"103\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:172:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:channelGrouping&metrics=ga:pageviews&sort=-ga:pageviews&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:4;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:4:\"1293\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:9:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:18:\"ga:channelGrouping\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:4:\"sort\";a:1:{i:0;s:13:\"-ga:pageviews\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:18:\"ga:channelGrouping\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579147200;}','no'),(19321,'gadwp_cache_qr10_897508723','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:194:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:medium&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:medium!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:3:{i:0;a:2:{i:0;s:6:\"(none)\";i:1;s:3:\"743\";}i:1;a:2:{i:0;s:8:\"referral\";i:1;s:3:\"330\";}i:2;a:2:{i:0;s:7:\"organic\";i:1;s:3:\"220\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:194:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:medium&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:medium!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:3;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:4:\"1293\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:9:\"ga:medium\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:4:\"sort\";a:1:{i:0;s:13:\"-ga:pageviews\";}s:7:\"filters\";s:20:\"ga:medium!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:9:\"ga:medium\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579147200;}','no'),(19322,'gadwp_cache_qr10_1915885489','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:204:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:visitorType&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:visitorType!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:2:{i:0;a:2:{i:0;s:17:\"Returning Visitor\";i:1;s:3:\"953\";}i:1;a:2:{i:0;s:11:\"New Visitor\";i:1;s:3:\"340\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:204:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:visitorType&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:visitorType!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:2;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:4:\"1293\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:14:\"ga:visitorType\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:4:\"sort\";a:1:{i:0;s:13:\"-ga:pageviews\";}s:7:\"filters\";s:25:\"ga:visitorType!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:14:\"ga:visitorType\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579147200;}','no'),(19323,'gadwp_cache_qr10_265797635','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:218:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:source&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:medium%3D%3Dorganic;ga:keyword!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:2:{i:0;a:2:{i:0;s:6:\"google\";i:1;s:3:\"217\";}i:1;a:2:{i:0;s:4:\"bing\";i:1;s:1:\"3\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:218:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:source&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:medium%3D%3Dorganic;ga:keyword!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:2;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:3:\"220\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:9:\"ga:source\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:4:\"sort\";a:1:{i:0;s:13:\"-ga:pageviews\";}s:7:\"filters\";s:40:\"ga:medium==organic;ga:keyword!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:9:\"ga:source\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579147200;}','no'),(19324,'gadwp_cache_qr10_1798092059','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:208:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:socialNetwork&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:socialNetwork!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:4:{i:0;a:2:{i:0;s:7:\"Twitter\";i:1;s:3:\"160\";}i:1;a:2:{i:0;s:8:\"LinkedIn\";i:1;s:2:\"62\";}i:2;a:2:{i:0;s:8:\"Facebook\";i:1;s:1:\"3\";}i:3;a:2:{i:0;s:4:\"Yelp\";i:1;s:1:\"2\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:208:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:socialNetwork&metrics=ga:pageviews&sort=-ga:pageviews&filters=ga:socialNetwork!%3D(not+set)&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:4;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:3:\"227\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:10:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:16:\"ga:socialNetwork\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:4:\"sort\";a:1:{i:0;s:13:\"-ga:pageviews\";}s:7:\"filters\";s:27:\"ga:socialNetwork!=(not set)\";s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:16:\"ga:socialNetwork\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579147200;}','no'),(19332,'gadwp_cache_qr2_2300434335','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:131:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:hour&metrics=ga:users&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:24:{i:0;a:2:{i:0;s:2:\"00\";i:1;s:1:\"1\";}i:1;a:2:{i:0;s:2:\"01\";i:1;s:1:\"2\";}i:2;a:2:{i:0;s:2:\"02\";i:1;s:1:\"1\";}i:3;a:2:{i:0;s:2:\"03\";i:1;s:1:\"3\";}i:4;a:2:{i:0;s:2:\"04\";i:1;s:1:\"1\";}i:5;a:2:{i:0;s:2:\"05\";i:1;s:1:\"0\";}i:6;a:2:{i:0;s:2:\"06\";i:1;s:1:\"0\";}i:7;a:2:{i:0;s:2:\"07\";i:1;s:1:\"0\";}i:8;a:2:{i:0;s:2:\"08\";i:1;s:1:\"1\";}i:9;a:2:{i:0;s:2:\"09\";i:1;s:1:\"1\";}i:10;a:2:{i:0;s:2:\"10\";i:1;s:1:\"2\";}i:11;a:2:{i:0;s:2:\"11\";i:1;s:1:\"2\";}i:12;a:2:{i:0;s:2:\"12\";i:1;s:1:\"3\";}i:13;a:2:{i:0;s:2:\"13\";i:1;s:1:\"4\";}i:14;a:2:{i:0;s:2:\"14\";i:1;s:1:\"3\";}i:15;a:2:{i:0;s:2:\"15\";i:1;s:1:\"7\";}i:16;a:2:{i:0;s:2:\"16\";i:1;s:1:\"4\";}i:17;a:2:{i:0;s:2:\"17\";i:1;s:1:\"4\";}i:18;a:2:{i:0;s:2:\"18\";i:1;s:1:\"0\";}i:19;a:2:{i:0;s:2:\"19\";i:1;s:1:\"2\";}i:20;a:2:{i:0;s:2:\"20\";i:1;s:1:\"2\";}i:21;a:2:{i:0;s:2:\"21\";i:1;s:1:\"0\";}i:22;a:2:{i:0;s:2:\"22\";i:1;s:1:\"0\";}i:23;a:2:{i:0;s:2:\"23\";i:1;s:1:\"0\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:131:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:hour&metrics=ga:users&start-date=today&end-date=today\";s:12:\"totalResults\";i:24;s:19:\"totalsForAllResults\";a:1:{s:8:\"ga:users\";s:2:\"43\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:8:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:7:\"ga:hour\";s:7:\"metrics\";a:1:{i:0;s:8:\"ga:users\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:2:{i:0;a:3:{s:4:\"name\";s:7:\"ga:hour\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579140000;}','no'),(19333,'gadwp_cache_qr3_1266400537','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:251:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&metrics=ga:sessions,ga:users,ga:pageviews,ga:BounceRate,ga:organicSearches,ga:pageviewsPerSession,ga:avgTimeOnPage,ga:avgPageLoadTime,ga:avgSessionDuration&start-date=today&end-date=today\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:1:{i:0;a:9:{i:0;s:2:\"41\";i:1;s:2:\"29\";i:2;s:3:\"133\";i:3;s:17:\"43.90243902439025\";i:4;s:1:\"5\";i:5;s:18:\"3.2439024390243905\";i:6;s:6:\"108.75\";i:7;s:5:\"7.716\";i:8;s:5:\"244.0\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:251:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&metrics=ga:sessions,ga:users,ga:pageviews,ga:BounceRate,ga:organicSearches,ga:pageviewsPerSession,ga:avgTimeOnPage,ga:avgPageLoadTime,ga:avgSessionDuration&start-date=today&end-date=today\";s:12:\"totalResults\";i:1;s:19:\"totalsForAllResults\";a:9:{s:11:\"ga:sessions\";s:2:\"41\";s:8:\"ga:users\";s:2:\"29\";s:12:\"ga:pageviews\";s:3:\"133\";s:13:\"ga:BounceRate\";s:17:\"43.90243902439025\";s:18:\"ga:organicSearches\";s:1:\"5\";s:22:\"ga:pageviewsPerSession\";s:18:\"3.2439024390243905\";s:16:\"ga:avgTimeOnPage\";s:6:\"108.75\";s:18:\"ga:avgPageLoadTime\";s:5:\"7.716\";s:21:\"ga:avgSessionDuration\";s:5:\"244.0\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:7:{s:10:\"start-date\";s:5:\"today\";s:8:\"end-date\";s:5:\"today\";s:3:\"ids\";s:11:\"ga:83116304\";s:7:\"metrics\";a:9:{i:0;s:11:\"ga:sessions\";i:1;s:8:\"ga:users\";i:2;s:12:\"ga:pageviews\";i:3;s:13:\"ga:BounceRate\";i:4;s:18:\"ga:organicSearches\";i:5;s:22:\"ga:pageviewsPerSession\";i:6;s:16:\"ga:avgTimeOnPage\";i:7;s:18:\"ga:avgPageLoadTime\";i:8;s:21:\"ga:avgSessionDuration\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:9:{i:0;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:1;a:3:{s:4:\"name\";s:8:\"ga:users\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:2;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:3;a:3:{s:4:\"name\";s:13:\"ga:BounceRate\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"PERCENT\";}i:4;a:3:{s:4:\"name\";s:18:\"ga:organicSearches\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}i:5;a:3:{s:4:\"name\";s:22:\"ga:pageviewsPerSession\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:5:\"FLOAT\";}i:6;a:3:{s:4:\"name\";s:16:\"ga:avgTimeOnPage\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:4:\"TIME\";}i:7;a:3:{s:4:\"name\";s:18:\"ga:avgPageLoadTime\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:5:\"FLOAT\";}i:8;a:3:{s:4:\"name\";s:21:\"ga:avgSessionDuration\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:4:\"TIME\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579140000;}','no'),(19351,'wpseo_current_version','16','no'),(19352,'wpseo_premium_version','17.7','yes'),(19354,'wpseo_tracking_last_request','1662433097','yes'),(19428,'gadwp_cache_qr2_305140694','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:160:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:pageviews&start-date=14daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:14:{i:0;a:3:{i:0;s:8:\"20200102\";i:1;s:8:\"Thursday\";i:2;s:3:\"203\";}i:1;a:3:{i:0;s:8:\"20200103\";i:1;s:6:\"Friday\";i:2;s:3:\"141\";}i:2;a:3:{i:0;s:8:\"20200104\";i:1;s:8:\"Saturday\";i:2;s:2:\"75\";}i:3;a:3:{i:0;s:8:\"20200105\";i:1;s:6:\"Sunday\";i:2;s:2:\"28\";}i:4;a:3:{i:0;s:8:\"20200106\";i:1;s:6:\"Monday\";i:2;s:3:\"208\";}i:5;a:3:{i:0;s:8:\"20200107\";i:1;s:7:\"Tuesday\";i:2;s:3:\"157\";}i:6;a:3:{i:0;s:8:\"20200108\";i:1;s:9:\"Wednesday\";i:2;s:3:\"237\";}i:7;a:3:{i:0;s:8:\"20200109\";i:1;s:8:\"Thursday\";i:2;s:3:\"229\";}i:8;a:3:{i:0;s:8:\"20200110\";i:1;s:6:\"Friday\";i:2;s:3:\"154\";}i:9;a:3:{i:0;s:8:\"20200111\";i:1;s:8:\"Saturday\";i:2;s:3:\"173\";}i:10;a:3:{i:0;s:8:\"20200112\";i:1;s:6:\"Sunday\";i:2;s:3:\"118\";}i:11;a:3:{i:0;s:8:\"20200113\";i:1;s:6:\"Monday\";i:2;s:3:\"138\";}i:12;a:3:{i:0;s:8:\"20200114\";i:1;s:7:\"Tuesday\";i:2;s:3:\"244\";}i:13;a:3:{i:0;s:8:\"20200115\";i:1;s:9:\"Wednesday\";i:2;s:3:\"177\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:160:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:pageviews&start-date=14daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:14;s:19:\"totalsForAllResults\";a:1:{s:12:\"ga:pageviews\";s:4:\"2282\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:8:{s:10:\"start-date\";s:9:\"14daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:24:\"ga:date,ga:dayOfWeekName\";s:7:\"metrics\";a:1:{i:0;s:12:\"ga:pageviews\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:3:{i:0;a:3:{s:4:\"name\";s:7:\"ga:date\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:16:\"ga:dayOfWeekName\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:2;a:3:{s:4:\"name\";s:12:\"ga:pageviews\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579233600;}','no'),(19440,'gadwp_cache_qr2_3131727203','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:158:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:sessions&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:7:{i:0;a:3:{i:0;s:8:\"20200109\";i:1;s:8:\"Thursday\";i:2;s:2:\"42\";}i:1;a:3:{i:0;s:8:\"20200110\";i:1;s:6:\"Friday\";i:2;s:2:\"46\";}i:2;a:3:{i:0;s:8:\"20200111\";i:1;s:8:\"Saturday\";i:2;s:2:\"36\";}i:3;a:3:{i:0;s:8:\"20200112\";i:1;s:6:\"Sunday\";i:2;s:2:\"18\";}i:4;a:3:{i:0;s:8:\"20200113\";i:1;s:6:\"Monday\";i:2;s:2:\"37\";}i:5;a:3:{i:0;s:8:\"20200114\";i:1;s:7:\"Tuesday\";i:2;s:2:\"40\";}i:6;a:3:{i:0;s:8:\"20200115\";i:1;s:9:\"Wednesday\";i:2;s:2:\"53\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:158:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:sessions&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:7;s:19:\"totalsForAllResults\";a:1:{s:11:\"ga:sessions\";s:3:\"272\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:8:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:24:\"ga:date,ga:dayOfWeekName\";s:7:\"metrics\";a:1:{i:0;s:11:\"ga:sessions\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:3:{i:0;a:3:{s:4:\"name\";s:7:\"ga:date\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:16:\"ga:dayOfWeekName\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:2;a:3:{s:4:\"name\";s:11:\"ga:sessions\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579233600;}','no'),(19442,'gadwp_cache_qr2_1951625439','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:165:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:visitBounceRate&start-date=7daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:7:{i:0;a:3:{i:0;s:8:\"20200109\";i:1;s:8:\"Thursday\";i:2;s:18:\"38.095238095238095\";}i:1;a:3:{i:0;s:8:\"20200110\";i:1;s:6:\"Friday\";i:2;s:17:\"45.65217391304348\";}i:2;a:3:{i:0;s:8:\"20200111\";i:1;s:8:\"Saturday\";i:2;s:17:\"41.66666666666667\";}i:3;a:3:{i:0;s:8:\"20200112\";i:1;s:6:\"Sunday\";i:2;s:17:\"38.88888888888889\";}i:4;a:3:{i:0;s:8:\"20200113\";i:1;s:6:\"Monday\";i:2;s:17:\"45.94594594594595\";}i:5;a:3:{i:0;s:8:\"20200114\";i:1;s:7:\"Tuesday\";i:2;s:4:\"40.0\";}i:6;a:3:{i:0;s:8:\"20200115\";i:1;s:9:\"Wednesday\";i:2;s:17:\"45.28301886792453\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:165:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:visitBounceRate&start-date=7daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:7;s:19:\"totalsForAllResults\";a:1:{s:18:\"ga:visitBounceRate\";s:17:\"42.64705882352941\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:8:{s:10:\"start-date\";s:8:\"7daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:24:\"ga:date,ga:dayOfWeekName\";s:7:\"metrics\";a:1:{i:0;s:18:\"ga:visitBounceRate\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:3:{i:0;a:3:{s:4:\"name\";s:7:\"ga:date\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:16:\"ga:dayOfWeekName\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:2;a:3:{s:4:\"name\";s:18:\"ga:visitBounceRate\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"PERCENT\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579233600;}','no'),(19443,'gadwp_cache_qr2_2325138680','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:166:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:visitBounceRate&start-date=90daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:90:{i:0;a:3:{i:0;s:8:\"20191018\";i:1;s:6:\"Friday\";i:2;s:4:\"60.0\";}i:1;a:3:{i:0;s:8:\"20191019\";i:1;s:8:\"Saturday\";i:2;s:4:\"50.0\";}i:2;a:3:{i:0;s:8:\"20191020\";i:1;s:6:\"Sunday\";i:2;s:5:\"100.0\";}i:3;a:3:{i:0;s:8:\"20191021\";i:1;s:6:\"Monday\";i:2;s:4:\"80.0\";}i:4;a:3:{i:0;s:8:\"20191022\";i:1;s:7:\"Tuesday\";i:2;s:17:\"66.66666666666666\";}i:5;a:3:{i:0;s:8:\"20191023\";i:1;s:9:\"Wednesday\";i:2;s:17:\"55.55555555555556\";}i:6;a:3:{i:0;s:8:\"20191024\";i:1;s:8:\"Thursday\";i:2;s:17:\"84.61538461538461\";}i:7;a:3:{i:0;s:8:\"20191025\";i:1;s:6:\"Friday\";i:2;s:17:\"57.14285714285714\";}i:8;a:3:{i:0;s:8:\"20191026\";i:1;s:8:\"Saturday\";i:2;s:4:\"50.0\";}i:9;a:3:{i:0;s:8:\"20191027\";i:1;s:6:\"Sunday\";i:2;s:4:\"50.0\";}i:10;a:3:{i:0;s:8:\"20191028\";i:1;s:6:\"Monday\";i:2;s:17:\"84.61538461538461\";}i:11;a:3:{i:0;s:8:\"20191029\";i:1;s:7:\"Tuesday\";i:2;s:17:\"77.77777777777779\";}i:12;a:3:{i:0;s:8:\"20191030\";i:1;s:9:\"Wednesday\";i:2;s:17:\"85.71428571428571\";}i:13;a:3:{i:0;s:8:\"20191031\";i:1;s:8:\"Thursday\";i:2;s:4:\"50.0\";}i:14;a:3:{i:0;s:8:\"20191101\";i:1;s:6:\"Friday\";i:2;s:17:\"72.72727272727273\";}i:15;a:3:{i:0;s:8:\"20191102\";i:1;s:8:\"Saturday\";i:2;s:4:\"60.0\";}i:16;a:3:{i:0;s:8:\"20191103\";i:1;s:6:\"Sunday\";i:2;s:4:\"75.0\";}i:17;a:3:{i:0;s:8:\"20191104\";i:1;s:6:\"Monday\";i:2;s:17:\"73.33333333333333\";}i:18;a:3:{i:0;s:8:\"20191105\";i:1;s:7:\"Tuesday\";i:2;s:4:\"60.0\";}i:19;a:3:{i:0;s:8:\"20191106\";i:1;s:9:\"Wednesday\";i:2;s:4:\"40.0\";}i:20;a:3:{i:0;s:8:\"20191107\";i:1;s:8:\"Thursday\";i:2;s:17:\"77.77777777777779\";}i:21;a:3:{i:0;s:8:\"20191108\";i:1;s:6:\"Friday\";i:2;s:17:\"85.71428571428571\";}i:22;a:3:{i:0;s:8:\"20191109\";i:1;s:8:\"Saturday\";i:2;s:5:\"100.0\";}i:23;a:3:{i:0;s:8:\"20191110\";i:1;s:6:\"Sunday\";i:2;s:17:\"71.42857142857143\";}i:24;a:3:{i:0;s:8:\"20191111\";i:1;s:6:\"Monday\";i:2;s:17:\"64.28571428571429\";}i:25;a:3:{i:0;s:8:\"20191112\";i:1;s:7:\"Tuesday\";i:2;s:17:\"82.35294117647058\";}i:26;a:3:{i:0;s:8:\"20191113\";i:1;s:9:\"Wednesday\";i:2;s:4:\"75.0\";}i:27;a:3:{i:0;s:8:\"20191114\";i:1;s:8:\"Thursday\";i:2;s:17:\"55.55555555555556\";}i:28;a:3:{i:0;s:8:\"20191115\";i:1;s:6:\"Friday\";i:2;s:17:\"71.42857142857143\";}i:29;a:3:{i:0;s:8:\"20191116\";i:1;s:8:\"Saturday\";i:2;s:17:\"83.33333333333334\";}i:30;a:3:{i:0;s:8:\"20191117\";i:1;s:6:\"Sunday\";i:2;s:4:\"80.0\";}i:31;a:3:{i:0;s:8:\"20191118\";i:1;s:6:\"Monday\";i:2;s:18:\"42.857142857142854\";}i:32;a:3:{i:0;s:8:\"20191119\";i:1;s:7:\"Tuesday\";i:2;s:4:\"62.5\";}i:33;a:3:{i:0;s:8:\"20191120\";i:1;s:9:\"Wednesday\";i:2;s:17:\"53.84615384615385\";}i:34;a:3:{i:0;s:8:\"20191121\";i:1;s:8:\"Thursday\";i:2;s:17:\"70.58823529411765\";}i:35;a:3:{i:0;s:8:\"20191122\";i:1;s:6:\"Friday\";i:2;s:17:\"78.57142857142857\";}i:36;a:3:{i:0;s:8:\"20191123\";i:1;s:8:\"Saturday\";i:2;s:17:\"96.66666666666667\";}i:37;a:3:{i:0;s:8:\"20191124\";i:1;s:6:\"Sunday\";i:2;s:4:\"80.0\";}i:38;a:3:{i:0;s:8:\"20191125\";i:1;s:6:\"Monday\";i:2;s:4:\"75.0\";}i:39;a:3:{i:0;s:8:\"20191126\";i:1;s:7:\"Tuesday\";i:2;s:4:\"80.0\";}i:40;a:3:{i:0;s:8:\"20191127\";i:1;s:9:\"Wednesday\";i:2;s:17:\"57.14285714285714\";}i:41;a:3:{i:0;s:8:\"20191128\";i:1;s:8:\"Thursday\";i:2;s:17:\"78.57142857142857\";}i:42;a:3:{i:0;s:8:\"20191129\";i:1;s:6:\"Friday\";i:2;s:4:\"75.0\";}i:43;a:3:{i:0;s:8:\"20191130\";i:1;s:8:\"Saturday\";i:2;s:5:\"100.0\";}i:44;a:3:{i:0;s:8:\"20191201\";i:1;s:6:\"Sunday\";i:2;s:5:\"100.0\";}i:45;a:3:{i:0;s:8:\"20191202\";i:1;s:6:\"Monday\";i:2;s:4:\"50.0\";}i:46;a:3:{i:0;s:8:\"20191203\";i:1;s:7:\"Tuesday\";i:2;s:17:\"80.76923076923077\";}i:47;a:3:{i:0;s:8:\"20191204\";i:1;s:9:\"Wednesday\";i:2;s:17:\"54.54545454545454\";}i:48;a:3:{i:0;s:8:\"20191205\";i:1;s:8:\"Thursday\";i:2;s:4:\"80.0\";}i:49;a:3:{i:0;s:8:\"20191206\";i:1;s:6:\"Friday\";i:2;s:17:\"94.73684210526315\";}i:50;a:3:{i:0;s:8:\"20191207\";i:1;s:8:\"Saturday\";i:2;s:17:\"66.66666666666666\";}i:51;a:3:{i:0;s:8:\"20191208\";i:1;s:6:\"Sunday\";i:2;s:17:\"85.71428571428571\";}i:52;a:3:{i:0;s:8:\"20191209\";i:1;s:6:\"Monday\";i:2;s:17:\"66.66666666666666\";}i:53;a:3:{i:0;s:8:\"20191210\";i:1;s:7:\"Tuesday\";i:2;s:17:\"77.77777777777779\";}i:54;a:3:{i:0;s:8:\"20191211\";i:1;s:9:\"Wednesday\";i:2;s:17:\"69.23076923076923\";}i:55;a:3:{i:0;s:8:\"20191212\";i:1;s:8:\"Thursday\";i:2;s:17:\"66.66666666666666\";}i:56;a:3:{i:0;s:8:\"20191213\";i:1;s:6:\"Friday\";i:2;s:17:\"77.77777777777779\";}i:57;a:3:{i:0;s:8:\"20191214\";i:1;s:8:\"Saturday\";i:2;s:4:\"75.0\";}i:58;a:3:{i:0;s:8:\"20191215\";i:1;s:6:\"Sunday\";i:2;s:5:\"100.0\";}i:59;a:3:{i:0;s:8:\"20191216\";i:1;s:6:\"Monday\";i:2;s:4:\"50.0\";}i:60;a:3:{i:0;s:8:\"20191217\";i:1;s:7:\"Tuesday\";i:2;s:5:\"68.75\";}i:61;a:3:{i:0;s:8:\"20191218\";i:1;s:9:\"Wednesday\";i:2;s:17:\"76.47058823529412\";}i:62;a:3:{i:0;s:8:\"20191219\";i:1;s:8:\"Thursday\";i:2;s:17:\"72.72727272727273\";}i:63;a:3:{i:0;s:8:\"20191220\";i:1;s:6:\"Friday\";i:2;s:16:\"90.9090909090909\";}i:64;a:3:{i:0;s:8:\"20191221\";i:1;s:8:\"Saturday\";i:2;s:17:\"66.66666666666666\";}i:65;a:3:{i:0;s:8:\"20191222\";i:1;s:6:\"Sunday\";i:2;s:4:\"50.0\";}i:66;a:3:{i:0;s:8:\"20191223\";i:1;s:6:\"Monday\";i:2;s:18:\"42.857142857142854\";}i:67;a:3:{i:0;s:8:\"20191224\";i:1;s:7:\"Tuesday\";i:2;s:17:\"57.14285714285714\";}i:68;a:3:{i:0;s:8:\"20191225\";i:1;s:9:\"Wednesday\";i:2;s:5:\"100.0\";}i:69;a:3:{i:0;s:8:\"20191226\";i:1;s:8:\"Thursday\";i:2;s:4:\"50.0\";}i:70;a:3:{i:0;s:8:\"20191227\";i:1;s:6:\"Friday\";i:2;s:17:\"61.53846153846154\";}i:71;a:3:{i:0;s:8:\"20191228\";i:1;s:8:\"Saturday\";i:2;s:17:\"66.66666666666666\";}i:72;a:3:{i:0;s:8:\"20191229\";i:1;s:6:\"Sunday\";i:2;s:17:\"47.61904761904761\";}i:73;a:3:{i:0;s:8:\"20191230\";i:1;s:6:\"Monday\";i:2;s:17:\"61.29032258064516\";}i:74;a:3:{i:0;s:8:\"20191231\";i:1;s:7:\"Tuesday\";i:2;s:4:\"72.0\";}i:75;a:3:{i:0;s:8:\"20200101\";i:1;s:9:\"Wednesday\";i:2;s:17:\"74.07407407407408\";}i:76;a:3:{i:0;s:8:\"20200102\";i:1;s:8:\"Thursday\";i:2;s:17:\"63.63636363636363\";}i:77;a:3:{i:0;s:8:\"20200103\";i:1;s:6:\"Friday\";i:2;s:5:\"68.75\";}i:78;a:3:{i:0;s:8:\"20200104\";i:1;s:8:\"Saturday\";i:2;s:17:\"77.77777777777779\";}i:79;a:3:{i:0;s:8:\"20200105\";i:1;s:6:\"Sunday\";i:2;s:17:\"78.94736842105263\";}i:80;a:3:{i:0;s:8:\"20200106\";i:1;s:6:\"Monday\";i:2;s:18:\"56.666666666666664\";}i:81;a:3:{i:0;s:8:\"20200107\";i:1;s:7:\"Tuesday\";i:2;s:17:\"67.12328767123287\";}i:82;a:3:{i:0;s:8:\"20200108\";i:1;s:9:\"Wednesday\";i:2;s:17:\"63.52941176470588\";}i:83;a:3:{i:0;s:8:\"20200109\";i:1;s:8:\"Thursday\";i:2;s:18:\"38.095238095238095\";}i:84;a:3:{i:0;s:8:\"20200110\";i:1;s:6:\"Friday\";i:2;s:17:\"45.65217391304348\";}i:85;a:3:{i:0;s:8:\"20200111\";i:1;s:8:\"Saturday\";i:2;s:17:\"41.66666666666667\";}i:86;a:3:{i:0;s:8:\"20200112\";i:1;s:6:\"Sunday\";i:2;s:17:\"38.88888888888889\";}i:87;a:3:{i:0;s:8:\"20200113\";i:1;s:6:\"Monday\";i:2;s:17:\"45.94594594594595\";}i:88;a:3:{i:0;s:8:\"20200114\";i:1;s:7:\"Tuesday\";i:2;s:4:\"40.0\";}i:89;a:3:{i:0;s:8:\"20200115\";i:1;s:9:\"Wednesday\";i:2;s:17:\"45.28301886792453\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:166:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:visitBounceRate&start-date=90daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:90;s:19:\"totalsForAllResults\";a:1:{s:18:\"ga:visitBounceRate\";s:17:\"64.85384092454113\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:8:{s:10:\"start-date\";s:9:\"90daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:24:\"ga:date,ga:dayOfWeekName\";s:7:\"metrics\";a:1:{i:0;s:18:\"ga:visitBounceRate\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:3:{i:0;a:3:{s:4:\"name\";s:7:\"ga:date\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:16:\"ga:dayOfWeekName\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:2;a:3:{s:4:\"name\";s:18:\"ga:visitBounceRate\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"PERCENT\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579233600;}','no'),(19450,'gadwp_cache_qr2_2745788711','a:2:{s:5:\"value\";O:31:\"Deconf_Service_Analytics_GaData\":24:{s:17:\"\0*\0collection_key\";s:4:\"rows\";s:25:\"\0*\0internal_gapi_mappings\";a:0:{}s:20:\"\0*\0columnHeadersType\";s:44:\"Deconf_Service_Analytics_GaDataColumnHeaders\";s:24:\"\0*\0columnHeadersDataType\";s:5:\"array\";s:19:\"containsSampledData\";b:0;s:16:\"\0*\0dataTableType\";s:40:\"Deconf_Service_Analytics_GaDataDataTable\";s:20:\"\0*\0dataTableDataType\";s:0:\"\";s:2:\"id\";s:166:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:organicSearches&start-date=30daysAgo&end-date=yesterday\";s:12:\"itemsPerPage\";i:1000;s:4:\"kind\";s:16:\"analytics#gaData\";s:8:\"nextLink\";N;s:12:\"previousLink\";N;s:18:\"\0*\0profileInfoType\";s:42:\"Deconf_Service_Analytics_GaDataProfileInfo\";s:22:\"\0*\0profileInfoDataType\";s:0:\"\";s:12:\"\0*\0queryType\";s:36:\"Deconf_Service_Analytics_GaDataQuery\";s:16:\"\0*\0queryDataType\";s:0:\"\";s:4:\"rows\";a:30:{i:0;a:3:{i:0;s:8:\"20191217\";i:1;s:7:\"Tuesday\";i:2;s:1:\"4\";}i:1;a:3:{i:0;s:8:\"20191218\";i:1;s:9:\"Wednesday\";i:2;s:1:\"9\";}i:2;a:3:{i:0;s:8:\"20191219\";i:1;s:8:\"Thursday\";i:2;s:1:\"3\";}i:3;a:3:{i:0;s:8:\"20191220\";i:1;s:6:\"Friday\";i:2;s:1:\"2\";}i:4;a:3:{i:0;s:8:\"20191221\";i:1;s:8:\"Saturday\";i:2;s:1:\"3\";}i:5;a:3:{i:0;s:8:\"20191222\";i:1;s:6:\"Sunday\";i:2;s:1:\"2\";}i:6;a:3:{i:0;s:8:\"20191223\";i:1;s:6:\"Monday\";i:2;s:1:\"2\";}i:7;a:3:{i:0;s:8:\"20191224\";i:1;s:7:\"Tuesday\";i:2;s:1:\"4\";}i:8;a:3:{i:0;s:8:\"20191225\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:9;a:3:{i:0;s:8:\"20191226\";i:1;s:8:\"Thursday\";i:2;s:1:\"3\";}i:10;a:3:{i:0;s:8:\"20191227\";i:1;s:6:\"Friday\";i:2;s:1:\"2\";}i:11;a:3:{i:0;s:8:\"20191228\";i:1;s:8:\"Saturday\";i:2;s:1:\"1\";}i:12;a:3:{i:0;s:8:\"20191229\";i:1;s:6:\"Sunday\";i:2;s:1:\"0\";}i:13;a:3:{i:0;s:8:\"20191230\";i:1;s:6:\"Monday\";i:2;s:1:\"5\";}i:14;a:3:{i:0;s:8:\"20191231\";i:1;s:7:\"Tuesday\";i:2;s:1:\"1\";}i:15;a:3:{i:0;s:8:\"20200101\";i:1;s:9:\"Wednesday\";i:2;s:1:\"0\";}i:16;a:3:{i:0;s:8:\"20200102\";i:1;s:8:\"Thursday\";i:2;s:1:\"5\";}i:17;a:3:{i:0;s:8:\"20200103\";i:1;s:6:\"Friday\";i:2;s:1:\"5\";}i:18;a:3:{i:0;s:8:\"20200104\";i:1;s:8:\"Saturday\";i:2;s:1:\"2\";}i:19;a:3:{i:0;s:8:\"20200105\";i:1;s:6:\"Sunday\";i:2;s:1:\"0\";}i:20;a:3:{i:0;s:8:\"20200106\";i:1;s:6:\"Monday\";i:2;s:1:\"2\";}i:21;a:3:{i:0;s:8:\"20200107\";i:1;s:7:\"Tuesday\";i:2;s:2:\"11\";}i:22;a:3:{i:0;s:8:\"20200108\";i:1;s:9:\"Wednesday\";i:2;s:1:\"8\";}i:23;a:3:{i:0;s:8:\"20200109\";i:1;s:8:\"Thursday\";i:2;s:1:\"3\";}i:24;a:3:{i:0;s:8:\"20200110\";i:1;s:6:\"Friday\";i:2;s:1:\"7\";}i:25;a:3:{i:0;s:8:\"20200111\";i:1;s:8:\"Saturday\";i:2;s:1:\"4\";}i:26;a:3:{i:0;s:8:\"20200112\";i:1;s:6:\"Sunday\";i:2;s:1:\"1\";}i:27;a:3:{i:0;s:8:\"20200113\";i:1;s:6:\"Monday\";i:2;s:1:\"2\";}i:28;a:3:{i:0;s:8:\"20200114\";i:1;s:7:\"Tuesday\";i:2;s:1:\"7\";}i:29;a:3:{i:0;s:8:\"20200115\";i:1;s:9:\"Wednesday\";i:2;s:1:\"6\";}}s:10:\"sampleSize\";N;s:11:\"sampleSpace\";N;s:8:\"selfLink\";s:166:\"https://www.googleapis.com/analytics/v3/data/ga?ids=ga:83116304&dimensions=ga:date,ga:dayOfWeekName&metrics=ga:organicSearches&start-date=30daysAgo&end-date=yesterday\";s:12:\"totalResults\";i:30;s:19:\"totalsForAllResults\";a:1:{s:18:\"ga:organicSearches\";s:3:\"104\";}s:12:\"\0*\0modelData\";a:3:{s:5:\"query\";a:8:{s:10:\"start-date\";s:9:\"30daysAgo\";s:8:\"end-date\";s:9:\"yesterday\";s:3:\"ids\";s:11:\"ga:83116304\";s:10:\"dimensions\";s:24:\"ga:date,ga:dayOfWeekName\";s:7:\"metrics\";a:1:{i:0;s:18:\"ga:organicSearches\";}s:11:\"start-index\";i:1;s:11:\"max-results\";i:1000;s:13:\"samplingLevel\";s:16:\"HIGHER_PRECISION\";}s:11:\"profileInfo\";a:6:{s:9:\"profileId\";s:8:\"83116304\";s:9:\"accountId\";s:7:\"3976937\";s:13:\"webPropertyId\";s:12:\"UA-3976937-5\";s:21:\"internalWebPropertyId\";s:8:\"80341506\";s:11:\"profileName\";s:22:\"UNFILTERED master data\";s:7:\"tableId\";s:11:\"ga:83116304\";}s:13:\"columnHeaders\";a:3:{i:0;a:3:{s:4:\"name\";s:7:\"ga:date\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:1;a:3:{s:4:\"name\";s:16:\"ga:dayOfWeekName\";s:10:\"columnType\";s:9:\"DIMENSION\";s:8:\"dataType\";s:6:\"STRING\";}i:2;a:3:{s:4:\"name\";s:18:\"ga:organicSearches\";s:10:\"columnType\";s:6:\"METRIC\";s:8:\"dataType\";s:7:\"INTEGER\";}}}s:12:\"\0*\0processed\";a:0:{}}s:7:\"expires\";i:1579233600;}','no'),(19512,'rt_wp_nginx_helper_options','a:22:{s:12:\"enable_purge\";N;s:12:\"cache_method\";s:14:\"enable_fastcgi\";s:12:\"purge_method\";s:11:\"get_request\";s:10:\"enable_map\";N;s:10:\"enable_log\";s:1:\"1\";s:9:\"log_level\";s:4:\"INFO\";s:12:\"log_filesize\";s:1:\"5\";s:12:\"enable_stamp\";N;s:22:\"purge_homepage_on_edit\";s:1:\"1\";s:21:\"purge_homepage_on_del\";s:1:\"1\";s:21:\"purge_archive_on_edit\";s:1:\"1\";s:20:\"purge_archive_on_del\";s:1:\"1\";s:28:\"purge_archive_on_new_comment\";N;s:32:\"purge_archive_on_deleted_comment\";N;s:17:\"purge_page_on_mod\";s:1:\"1\";s:25:\"purge_page_on_new_comment\";s:1:\"1\";s:29:\"purge_page_on_deleted_comment\";s:1:\"1\";s:14:\"redis_hostname\";s:9:\"127.0.0.1\";s:10:\"redis_port\";s:4:\"6379\";s:12:\"redis_prefix\";s:12:\"nginx-cache:\";s:9:\"purge_url\";s:0:\"\";s:25:\"redis_enabled_by_constant\";i:0;}','no'),(19534,'wp-smush-settings','a:20:{s:4:\"auto\";b:1;s:5:\"lossy\";b:0;s:10:\"strip_exif\";b:1;s:6:\"resize\";b:0;s:9:\"detection\";b:0;s:8:\"original\";b:0;s:6:\"backup\";b:0;s:10:\"png_to_jpg\";b:0;s:7:\"nextgen\";b:0;s:2:\"s3\";b:0;s:9:\"gutenberg\";b:0;s:10:\"js_builder\";b:0;s:3:\"cdn\";b:0;s:11:\"auto_resize\";b:0;s:4:\"webp\";b:1;s:5:\"usage\";b:0;s:17:\"accessible_colors\";b:0;s:9:\"keep_data\";b:1;s:9:\"lazy_load\";b:1;s:17:\"background_images\";b:1;}','yes'),(19535,'wp-smush-install-type','existing','no'),(19536,'wp-smush-version','3.4.2','no'),(19537,'wdev-frash','a:3:{s:7:\"plugins\";a:1:{s:23:\"wp-smushit/wp-smush.php\";i:1579216948;}s:5:\"queue\";a:1:{s:32:\"fc50097023d0d34c5a66f6cddcf77694\";a:3:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:4:\"rate\";s:7:\"show_at\";i:1579821748;}}s:4:\"done\";a:1:{i:0;a:6:{s:6:\"plugin\";s:23:\"wp-smushit/wp-smush.php\";s:4:\"type\";s:5:\"email\";s:7:\"show_at\";i:1579216948;s:5:\"state\";s:6:\"ignore\";s:4:\"hash\";s:32:\"fc50097023d0d34c5a66f6cddcf77694\";s:10:\"handled_at\";i:1579220005;}}}','no'),(19540,'smush_global_stats','a:9:{s:11:\"size_before\";i:10020904;s:10:\"size_after\";i:9188871;s:7:\"percent\";d:8.3;s:5:\"human\";s:8:\"812.5 KB\";s:5:\"bytes\";i:832033;s:12:\"total_images\";i:462;s:12:\"resize_count\";i:0;s:14:\"resize_savings\";i:0;s:18:\"conversion_savings\";i:0;}','no'),(19541,'dir_smush_stats','a:2:{s:9:\"dir_smush\";a:2:{s:5:\"total\";i:0;s:9:\"optimised\";i:0;}s:14:\"combined_stats\";a:0:{}}','no'),(19546,'skip-smush-setup','1','yes'),(19757,'wp-smush-lazy_load','a:7:{s:6:\"format\";a:5:{s:4:\"jpeg\";b:1;s:3:\"png\";b:1;s:3:\"gif\";b:1;s:3:\"svg\";b:1;s:6:\"iframe\";b:1;}s:6:\"output\";a:4:{s:7:\"content\";b:1;s:7:\"widgets\";b:1;s:10:\"thumbnails\";b:1;s:9:\"gravatars\";b:1;}s:9:\"animation\";a:4:{s:8:\"selected\";s:6:\"fadein\";s:6:\"fadein\";a:2:{s:8:\"duration\";i:400;s:5:\"delay\";i:0;}s:7:\"spinner\";a:2:{s:8:\"selected\";s:1:\"1\";s:6:\"custom\";a:0:{}}s:11:\"placeholder\";a:3:{s:8:\"selected\";s:1:\"1\";s:6:\"custom\";a:0:{}s:5:\"color\";s:7:\"#F3F3F3\";}}s:7:\"include\";a:7:{s:9:\"frontpage\";b:1;s:4:\"home\";b:1;s:4:\"page\";b:1;s:6:\"single\";b:1;s:7:\"archive\";b:1;s:8:\"category\";b:1;s:3:\"tag\";b:1;}s:13:\"exclude-pages\";a:0:{}s:15:\"exclude-classes\";a:0:{}s:6:\"footer\";b:1;}','yes'),(19759,'wp-smush-hide_smush_welcome','1','no'),(19769,'wp-smush-hide_upgrade_notice','1','no'),(19778,'wphb_version','2.3.0','no'),(19779,'wphb-notice-uptime-info-show','yes','no'),(19780,'wphb-gzip-data','a:3:{s:4:\"HTML\";b:1;s:10:\"JavaScript\";b:1;s:3:\"CSS\";b:1;}','no'),(19781,'wphb-caching-data','a:4:{s:10:\"javascript\";b:0;s:3:\"css\";b:0;s:5:\"media\";b:0;s:6:\"images\";b:0;}','no'),(19782,'wphb_settings','a:10:{s:6:\"minify\";a:12:{s:7:\"enabled\";b:1;s:7:\"use_cdn\";b:0;s:3:\"log\";b:0;s:9:\"file_path\";s:0:\"\";s:11:\"minify_blog\";b:1;s:4:\"view\";s:5:\"basic\";s:5:\"block\";a:2:{s:7:\"scripts\";a:0:{}s:6:\"styles\";a:0:{}}s:6:\"minify\";a:2:{s:7:\"scripts\";a:0:{}s:6:\"styles\";a:0:{}}s:7:\"combine\";a:2:{s:7:\"scripts\";a:0:{}s:6:\"styles\";a:0:{}}s:8:\"position\";a:2:{s:7:\"scripts\";a:0:{}s:6:\"styles\";a:0:{}}s:5:\"defer\";a:2:{s:7:\"scripts\";a:0:{}s:6:\"styles\";a:0:{}}s:6:\"inline\";a:2:{s:7:\"scripts\";a:0:{}s:6:\"styles\";a:0:{}}}s:6:\"uptime\";a:3:{s:7:\"enabled\";b:0;s:13:\"notifications\";a:1:{s:7:\"enabled\";b:0;}s:7:\"reports\";a:1:{s:7:\"enabled\";b:0;}}s:8:\"gravatar\";a:1:{s:7:\"enabled\";b:0;}s:10:\"page_cache\";a:8:{s:7:\"enabled\";b:0;s:10:\"cache_blog\";b:1;s:7:\"control\";b:0;s:9:\"detection\";s:6:\"manual\";s:12:\"pages_cached\";i:0;s:12:\"integrations\";a:2:{s:7:\"varnish\";b:0;s:7:\"opcache\";b:0;}s:7:\"preload\";b:0;s:12:\"preload_type\";a:2:{s:9:\"home_page\";b:1;s:8:\"on_clear\";b:1;}}s:7:\"caching\";a:4:{s:10:\"expiry_css\";s:10:\"8d/A691200\";s:17:\"expiry_javascript\";s:10:\"8d/A691200\";s:12:\"expiry_media\";s:10:\"8d/A691200\";s:13:\"expiry_images\";s:10:\"8d/A691200\";}s:10:\"cloudflare\";a:10:{s:7:\"enabled\";b:0;s:9:\"connected\";b:0;s:10:\"last_check\";i:1579220107;s:5:\"email\";s:0:\"\";s:7:\"api_key\";s:0:\"\";s:4:\"zone\";s:0:\"\";s:9:\"zone_name\";s:0:\"\";s:4:\"plan\";b:0;s:10:\"page_rules\";a:0:{}s:12:\"cache_expiry\";i:691200;}s:11:\"performance\";a:5:{s:7:\"reports\";b:0;s:13:\"subsite_tests\";b:1;s:9:\"dismissed\";b:0;s:6:\"widget\";a:4:{s:7:\"desktop\";b:1;s:12:\"show_metrics\";b:1;s:11:\"show_audits\";b:1;s:13:\"show_historic\";b:1;}s:3:\"hub\";a:3:{s:12:\"show_metrics\";b:1;s:11:\"show_audits\";b:1;s:13:\"show_historic\";b:1;}}s:8:\"advanced\";a:5:{s:12:\"query_string\";b:0;s:5:\"emoji\";b:0;s:8:\"prefetch\";a:0:{}s:11:\"db_cleanups\";b:0;s:14:\"cart_fragments\";b:0;}s:3:\"rss\";a:2:{s:7:\"enabled\";b:1;s:8:\"duration\";i:3600;}s:8:\"settings\";a:3:{s:17:\"accessible_colors\";b:0;s:15:\"remove_settings\";b:0;s:11:\"remove_data\";b:0;}}','yes'),(19783,'wphb-quick-setup','a:1:{s:8:\"finished\";b:1;}','yes'),(19802,'wphb-notice-minification-optimized-show','yes','yes'),(19803,'wphb-notice-http2-info-show','yes','yes'),(19805,'wphb_styles_collection','a:15:{s:25:\"atomic-blocks-fontawesome\";a:8:{s:6:\"handle\";s:25:\"atomic-blocks-fontawesome\";s:3:\"src\";s:94:\"http://localhost:8082/wp-content/plugins/atomic-blocks/dist/assets/fontawesome/css/all.min.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";i:1578523761;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:24:\"social-warfare-block-css\";a:8:{s:6:\"handle\";s:24:\"social-warfare-block-css\";s:3:\"src\";s:105:\"http://localhost:8082/wp-content/plugins/social-warfare/assets/js/post-editor/dist/blocks.style.build.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";b:0;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:16:\"wp-block-library\";a:8:{s:6:\"handle\";s:16:\"wp-block-library\";s:3:\"src\";s:49:\"/wp-includes/css/dist/block-library/style.min.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";b:0;s:4:\"args\";N;s:5:\"extra\";a:2:{s:3:\"rtl\";s:7:\"replace\";s:6:\"suffix\";s:4:\".min\";}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:23:\"atomic-blocks-style-css\";a:8:{s:6:\"handle\";s:23:\"atomic-blocks-style-css\";s:3:\"src\";s:82:\"http://localhost:8082/wp-content/plugins/atomic-blocks/dist/blocks.style.build.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";i:1578523761;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:20:\"mkaz-code-syntax-css\";a:8:{s:6:\"handle\";s:20:\"mkaz-code-syntax-css\";s:3:\"src\";s:82:\"http://localhost:8082/wp-content/plugins/code-syntax-block/assets/blocks.style.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";i:1578365086;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:26:\"mkaz-code-syntax-prism-css\";a:8:{s:6:\"handle\";s:26:\"mkaz-code-syntax-prism-css\";s:3:\"src\";s:81:\"http://localhost:8082/wp-content/plugins/code-syntax-block/assets/prism/prism.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";i:1578365086;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:14:\"contact-form-7\";a:8:{s:6:\"handle\";s:14:\"contact-form-7\";s:3:\"src\";s:79:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/css/styles.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"5.1.6\";s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:14:\"social_warfare\";a:8:{s:6:\"handle\";s:14:\"social_warfare\";s:3:\"src\";s:80:\"http://localhost:8082/wp-content/plugins/social-warfare/assets/css/style.min.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"3.6.1\";s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:13:\"wpgmza-common\";a:8:{s:6:\"handle\";s:13:\"wpgmza-common\";s:3:\"src\";s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/common.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";b:0;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:7:\"remodal\";a:8:{s:6:\"handle\";s:7:\"remodal\";s:3:\"src\";s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";b:0;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:21:\"remodal-default-theme\";a:8:{s:6:\"handle\";s:21:\"remodal-default-theme\";s:3:\"src\";s:85:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal-default-theme.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";b:0;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:16:\"wpgmza-ui-legacy\";a:8:{s:6:\"handle\";s:16:\"wpgmza-ui-legacy\";s:3:\"src\";s:77:\"http://localhost:8082/wp-content/plugins/wp-google-maps/css/styles/legacy.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";b:0;s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:21:\"wpdiscuz-font-awesome\";a:8:{s:6:\"handle\";s:21:\"wpdiscuz-font-awesome\";s:3:\"src\";s:115:\"http://localhost:8082/wp-content/plugins/wpdiscuz/assets/third-party/font-awesome-5.0.6/css/fontawesome-all.min.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"5.3.5\";s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:21:\"wpdiscuz-frontend-css\";a:8:{s:6:\"handle\";s:21:\"wpdiscuz-frontend-css\";s:3:\"src\";s:73:\"http://localhost:8082/wp-content/plugins/wpdiscuz/assets/css/wpdiscuz.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"5.3.5\";s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:25:\"wpdiscuz-user-content-css\";a:8:{s:6:\"handle\";s:25:\"wpdiscuz-user-content-css\";s:3:\"src\";s:86:\"http://localhost:8082/wp-content/plugins/wpdiscuz/assets/css/wpdiscuz-user-content.css\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"5.3.5\";s:4:\"args\";s:3:\"all\";s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}}','yes'),(19806,'wphb_scripts_collection','a:31:{s:25:\"mkaz-code-syntax-prism-js\";a:8:{s:6:\"handle\";s:25:\"mkaz-code-syntax-prism-js\";s:3:\"src\";s:80:\"http://localhost:8082/wp-content/plugins/code-syntax-block/assets/prism/prism.js\";s:4:\"deps\";a:0:{}s:3:\"ver\";i:1578365086;s:4:\"args\";N;s:5:\"extra\";a:2:{s:5:\"group\";i:1;s:4:\"data\";s:103:\"var prism_settings = {\"pluginUrl\":\"http:\\/\\/localhost:8082\\/wp-content\\/plugins\\/code-syntax-block\\/\"};\";}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:11:\"jquery-core\";a:8:{s:6:\"handle\";s:11:\"jquery-core\";s:3:\"src\";s:32:\"/wp-includes/js/jquery/jquery.js\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:9:\"1.12.4-wp\";s:4:\"args\";N;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:14:\"jquery-migrate\";a:8:{s:6:\"handle\";s:14:\"jquery-migrate\";s:3:\"src\";s:44:\"/wp-includes/js/jquery/jquery-migrate.min.js\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"1.4.1\";s:4:\"args\";N;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:14:\"contact-form-7\";a:8:{s:6:\"handle\";s:14:\"contact-form-7\";s:3:\"src\";s:78:\"http://localhost:8082/wp-content/plugins/contact-form-7/includes/js/scripts.js\";s:4:\"deps\";a:1:{i:0;s:6:\"jquery\";}s:3:\"ver\";s:5:\"5.1.6\";s:4:\"args\";N;s:5:\"extra\";a:2:{s:5:\"group\";i:1;s:4:\"data\";s:138:\"var wpcf7 = {\"apiSettings\":{\"root\":\"http:\\/\\/localhost:8082\\/wp-json\\/contact-form-7\\/v1\",\"namespace\":\"contact-form-7\\/v1\"},\"cached\":\"1\"};\";}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:11:\"wpgmza_data\";a:8:{s:6:\"handle\";s:11:\"wpgmza_data\";s:3:\"src\";s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/wpgmza_data.js\";s:4:\"deps\";a:0:{}s:3:\"ver\";b:0;s:4:\"args\";N;s:5:\"extra\";a:1:{s:4:\"data\";s:72:\"var wpgmza_google_api_status = {\"message\":\"Enqueued\",\"code\":\"ENQUEUED\"};\";}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:24:\"atomic-blocks-dismiss-js\";a:8:{s:6:\"handle\";s:24:\"atomic-blocks-dismiss-js\";s:3:\"src\";s:80:\"http://localhost:8082/wp-content/plugins/atomic-blocks/dist/assets/js/dismiss.js\";s:4:\"deps\";a:0:{}s:3:\"ver\";i:1578523761;s:4:\"args\";N;s:5:\"extra\";a:1:{s:5:\"group\";i:1;}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:16:\"google-recaptcha\";a:8:{s:6:\"handle\";s:16:\"google-recaptcha\";s:3:\"src\";s:87:\"https://www.google.com/recaptcha/api.js?render=6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:3:\"3.0\";s:4:\"args\";N;s:5:\"extra\";a:1:{s:5:\"group\";i:1;}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:10:\"underscore\";a:8:{s:6:\"handle\";s:10:\"underscore\";s:3:\"src\";s:33:\"/wp-includes/js/underscore.min.js\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"1.8.3\";s:4:\"args\";i:1;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:11:\"wphb-global\";a:8:{s:6:\"handle\";s:11:\"wphb-global\";s:3:\"src\";s:99:\"http://localhost:8082/wp-content/plugins/hummingbird-performance/admin/assets/js/wphb-global.min.js\";s:4:\"deps\";a:2:{i:0;s:10:\"underscore\";i:1;s:6:\"jquery\";}s:3:\"ver\";s:5:\"2.3.0\";s:4:\"args\";N;s:5:\"extra\";a:2:{s:5:\"group\";i:1;s:4:\"data\";s:81:\"var wphbGlobal = {\"ajaxurl\":\"http:\\/\\/localhost:8082\\/wp-admin\\/admin-ajax.php\"};\";}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:21:\"social_warfare_script\";a:8:{s:6:\"handle\";s:21:\"social_warfare_script\";s:3:\"src\";s:79:\"http://localhost:8082/wp-content/plugins/social-warfare/assets/js/script.min.js\";s:4:\"deps\";a:1:{i:0;s:6:\"jquery\";}s:3:\"ver\";s:5:\"3.6.1\";s:4:\"args\";N;s:5:\"extra\";a:2:{s:5:\"group\";i:1;s:4:\"data\";s:75:\"var socialWarfare = {\"addons\":[],\"post_id\":\"1555\",\"floatBeforeContent\":\"\"};\";}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:15:\"smush-lazy-load\";a:8:{s:6:\"handle\";s:15:\"smush-lazy-load\";s:3:\"src\";s:88:\"http://localhost:8082/wp-content/plugins/wp-smushit/app/assets/js/smush-lazy-load.min.js\";s:4:\"deps\";a:0:{}s:3:\"ver\";s:5:\"3.4.2\";s:4:\"args\";N;s:5:\"extra\";a:3:{s:5:\"group\";i:1;s:6:\"before\";a:2:{i:0;b:0;i:1;s:241:\"window.lazySizesConfig = window.lazySizesConfig || {};\n\nwindow.lazySizesConfig.lazyClass = \'lazyload\';\nwindow.lazySizesConfig.loadingClass = \'lazyloading\';\nwindow.lazySizesConfig.loadedClass = \'lazyloaded\';\n\nlazySizesConfig.loadMode = 1;\";}s:5:\"after\";a:2:{i:0;b:0;i:1;s:17:\"lazySizes.init();\";}}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:23:\"leadin-script-loader-js\";a:8:{s:6:\"handle\";s:23:\"leadin-script-loader-js\";s:3:\"src\";s:52:\"//js.hs-scripts.com/6899710.js?integration=WordPress\";s:4:\"deps\";a:1:{i:0;s:6:\"jquery\";}s:3:\"ver\";N;s:4:\"args\";N;s:5:\"extra\";a:2:{s:5:\"group\";i:1;s:4:\"data\";s:103:\"var leadin_wordpress = {\"userRole\":\"administrator\",\"pageType\":\"other\",\"leadinPluginVersion\":\"7.18.81\"};\";}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:8:\"wp-embed\";a:8:{s:6:\"handle\";s:8:\"wp-embed\";s:3:\"src\";s:31:\"/wp-includes/js/wp-embed.min.js\";s:4:\"deps\";a:0:{}s:3:\"ver\";b:0;s:4:\"args\";N;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:15:\"wpgmza_api_call\";a:8:{s:6:\"handle\";s:15:\"wpgmza_api_call\";s:3:\"src\";s:141:\"//maps.google.com/maps/api/js?v=quarterly&language=en&key=AIzaSyC4wDG68G3W8kzOFRygtZIhkt7BU7XbalQ&libraries=geometry%2Cplaces%2Cvisualization\";s:4:\"deps\";a:0:{}s:3:\"ver\";b:0;s:4:\"args\";N;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:27:\"wpgmza_canvas_layer_options\";a:8:{s:6:\"handle\";s:27:\"wpgmza_canvas_layer_options\";s:3:\"src\";s:81:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayerOptions.js\";s:4:\"deps\";a:1:{i:0;s:15:\"wpgmza_api_call\";}s:3:\"ver\";b:0;s:4:\"args\";N;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:19:\"wpgmza_canvas_layer\";a:8:{s:6:\"handle\";s:19:\"wpgmza_canvas_layer\";s:3:\"src\";s:74:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/CanvasLayer.js\";s:4:\"deps\";a:1:{i:0;s:15:\"wpgmza_api_call\";}s:3:\"ver\";b:0;s:4:\"args\";N;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:10:\"datatables\";a:8:{s:6:\"handle\";s:10:\"datatables\";s:3:\"src\";s:79:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/jquery.dataTables.js\";s:4:\"deps\";a:1:{i:0;s:6:\"jquery\";}s:3:\"ver\";b:0;s:4:\"args\";N;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:17:\"javascript-cookie\";a:8:{s:6:\"handle\";s:17:\"javascript-cookie\";s:3:\"src\";s:76:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/jquery-cookie.js\";s:4:\"deps\";a:1:{i:0;s:6:\"jquery\";}s:3:\"ver\";b:0;s:4:\"args\";N;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:7:\"remodal\";a:8:{s:6:\"handle\";s:7:\"remodal\";s:3:\"src\";s:70:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/remodal.js\";s:4:\"deps\";a:1:{i:0;s:6:\"jquery\";}s:3:\"ver\";b:0;s:4:\"args\";N;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:8:\"spectrum\";a:8:{s:6:\"handle\";s:8:\"spectrum\";s:3:\"src\";s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/spectrum.js\";s:4:\"deps\";a:1:{i:0;s:6:\"jquery\";}s:3:\"ver\";b:0;s:4:\"args\";N;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:18:\"fast-text-encoding\";a:8:{s:6:\"handle\";s:18:\"fast-text-encoding\";s:3:\"src\";s:71:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/text.min.js\";s:4:\"deps\";a:1:{i:0;s:6:\"jquery\";}s:3:\"ver\";b:0;s:4:\"args\";N;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:4:\"pako\";a:8:{s:6:\"handle\";s:4:\"pako\";s:3:\"src\";s:79:\"http://localhost:8082/wp-content/plugins/wp-google-maps/lib/pako_deflate.min.js\";s:4:\"deps\";a:1:{i:0;s:6:\"jquery\";}s:3:\"ver\";b:0;s:4:\"args\";N;s:5:\"extra\";a:0:{}s:10:\"textdomain\";N;s:17:\"translations_path\";N;}s:6:\"wpgmza\";a:8:{s:6:\"handle\";s:6:\"wpgmza\";s:3:\"src\";s:83:\"http://localhost:8082/wp-content/plugins/wp-google-maps/js/v8/wp-google-maps.min.js\";s:4:\"deps\";a:7:{i:0;s:10:\"datatables\";i:1;s:17:\"javascript-cookie\";i:2;s:7:\"remodal\";i:3;s:8:\"spectrum\";i:4;s:18:\"fast-text-encoding\";i:5;s:4:\"pako\";i:6;s:15:\"wpgmza_api_call\";}s:3:\"ver\";s:6:\"8.0.14\";s:4:\"args\";N;s:5:\"extra\";a:1:{s:4:\"data\";s:9218:\"var WPGMZA_localized_data = {\"adminurl\":\"http:\\/\\/localhost:8082\\/wp-admin\\/\",\"ajaxurl\":\"http:\\/\\/localhost:8082\\/wp-admin\\/admin-ajax.php\",\"ajaxnonce\":\"609c38d18a\",\"legacyajaxnonce\":\"2d844311b3\",\"html\":{\"googleMapsAPIErrorDialog\":\"
\\r\\n\\r\\n\\t

Maps API Error<\\/h2>\\r\\n\\t\\r\\n\\t
\\r\\n\\t\\r\\n\\t\\t

\\r\\n\\t\\t\\tOne or more error(s) have occured attempting to initialize the Maps API:\\t\\t<\\/p>\\r\\n\\t\\r\\n\\t\\t

\n

\n\n
\n
\n
\n
\n\n
\n
\n\"Popup
\n
\n\n
\n
\n
\n
\n\n\n\n\n
\n
\n
\n
\n

Lost in Space!

\n

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries,

\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','yes'),(35874,'sgpbModifiedRegisteredPluginsPaths1','1','yes'),(35876,'sgpb-unnecessary-scripts-removed-1','1','yes'),(35884,'SgpbCounter','a:1:{i:1915;i:11;}','yes'),(35900,'sgpb-all-removed-notifications','{\"sgpbMainSupportBanner\":\"sgpbMainSupportBanner\",\"pb-notif-02-05-2020\":\"pb-notif-02-05-2020\"}','yes'),(41415,'ai1wm_backups_labels','a:0:{}','yes'),(41416,'ai1wm_sites_links','a:0:{}','yes'),(41421,'active_plugins','a:38:{i:0;s:19:\"404page/404page.php\";i:1;s:34:\"advanced-custom-fields-pro/acf.php\";i:2;s:35:\"cf7-hubspot-pro/cf7-hubspot-pro.php\";i:3;s:33:\"classic-editor/classic-editor.php\";i:4;s:27:\"code-syntax-block/index.php\";i:5;s:36:\"contact-form-7/wp-contact-form-7.php\";i:6;s:51:\"disable-webp-by-default/disable-webp-by-default.php\";i:7;s:33:\"duplicate-post/duplicate-post.php\";i:8;s:25:\"duplicator/duplicator.php\";i:9;s:25:\"duplicator/duplicator.php\";i:10;s:55:\"embed-calendly-scheduling/embed-calendly-scheduling.php\";i:11;s:24:\"header-footer/plugin.php\";i:12;s:17:\"iframe/iframe.php\";i:13;s:19:\"imagify/imagify.php\";i:14;s:31:\"popup-builder/popup-builder.php\";i:15;s:47:\"post-tags-and-categories-for-pages/post-tag.php\";i:16;s:21:\"raw-html/raw_html.php\";i:17;s:27:\"redirection/redirection.php\";i:18;s:27:\"redis-cache/redis-cache.php\";i:19;s:57:\"remove-w3c-validation-type-warnings/w3c-type-warnings.php\";i:20;s:57:\"reveal-ids-for-wp-admin-25/reveal-ids-for-wp-admin-25.php\";i:21;s:23:\"revslider/revslider.php\";i:22;s:45:\"search-and-replace/inpsyde-search-replace.php\";i:23;s:49:\"sendgrid-email-delivery-simplified/wpsendgrid.php\";i:24;s:57:\"ssl-insecure-content-fixer/ssl-insecure-content-fixer.php\";i:25;s:37:\"tinymce-advanced/tinymce-advanced.php\";i:26;s:27:\"updraftplus/updraftplus.php\";i:27;s:33:\"w3-total-cache/w3-total-cache.php\";i:28;s:40:\"wordpress-seo-premium/wp-seo-premium.php\";i:29;s:24:\"wordpress-seo/wp-seo.php\";i:30;s:35:\"wp-fastest-cache/wpFastestCache.php\";i:31;s:39:\"wp-file-manager/file_folder_manager.php\";i:32;s:31:\"wp-google-maps/wpGoogleMaps.php\";i:33;s:27:\"wp-optimize/wp-optimize.php\";i:34;s:33:\"wp-phpmyadmin-extension/index.php\";i:35;s:31:\"wpdiscuz/class.WpdiscuzCore.php\";i:36;s:15:\"wpide/wpide.php\";i:37;s:30:\"youtube-embed-plus/youtube.php\";}','yes'),(41422,'template','translucent','yes'),(41423,'stylesheet','translucent','yes'),(41424,'swift_performance_plugin_organizer','a:0:{}','yes'),(41432,'disallowed_keys','','no'),(41433,'comment_previously_approved','1','yes'),(41434,'auto_plugin_theme_update_emails','a:0:{}','no'),(41435,'finished_updating_comment_type','1','yes'),(41957,'sgpb-all-dismissed-notifications','{\"sgpbMainRateUsNotification\":\"sgpbMainRateUsNotification\"}','yes'),(41958,'SGPBCloseReviewPopup-notification','1','yes'),(49218,'wpgmza_review_nag','1613870230','yes'),(50918,'autoptimize_ccss_version','AO_3.1.1.1','yes'),(50928,'youtubeprefs_alloptions_backup_13_3_1','a:85:{s:3:\"rel\";s:1:\"1\";s:14:\"modestbranding\";i:0;s:10:\"responsive\";i:1;s:14:\"responsive_all\";i:1;s:8:\"defer_js\";i:0;s:16:\"gallery_pagesize\";i:15;s:15:\"gallery_columns\";i:3;s:16:\"not_live_content\";s:0:\"\";s:11:\"not_live_on\";i:0;s:10:\"ytapi_load\";s:5:\"light\";s:12:\"gdpr_consent\";i:0;s:20:\"gdpr_consent_message\";s:360:\"Please accept YouTube cookies to play this video. By accepting you will be accessing content from YouTube, a service provided by an external third party.\r\n\r\nYouTube privacy policy\r\n\r\nIf you accept this notice, your choice will be saved and the page will refresh.\";s:19:\"gdpr_consent_button\";s:22:\"Accept YouTube Content\";s:8:\"nocookie\";i:0;s:9:\"onboarded\";i:1;s:7:\"version\";s:6:\"13.3.1\";s:9:\"centervid\";i:0;s:6:\"glance\";i:0;s:8:\"autoplay\";i:0;s:14:\"cc_load_policy\";i:0;s:14:\"iv_load_policy\";i:1;s:4:\"loop\";i:0;s:2:\"fs\";i:1;s:11:\"playsinline\";i:0;s:6:\"origin\";i:0;s:8:\"autohide\";i:2;s:2:\"hl\";s:0:\"\";s:4:\"dohl\";i:0;s:5:\"theme\";s:4:\"dark\";s:5:\"color\";s:3:\"red\";s:3:\"pro\";s:0:\"\";s:13:\"playlistorder\";i:0;s:8:\"acctitle\";i:0;s:7:\"migrate\";i:0;s:15:\"migrate_youtube\";i:0;s:22:\"migrate_embedplusvideo\";i:0;s:8:\"controls\";i:1;s:10:\"oldspacing\";i:0;s:13:\"frontend_only\";i:1;s:9:\"widgetfit\";i:1;s:16:\"evselector_light\";i:0;s:18:\"stop_mobile_buffer\";i:1;s:15:\"restrict_wizard\";i:0;s:21:\"restrict_wizard_roles\";a:5:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";}s:11:\"ajax_compat\";i:0;s:11:\"defaultdims\";i:0;s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:12:\"pause_others\";i:0;s:10:\"defaultvol\";i:0;s:3:\"vol\";s:0:\"\";s:6:\"apikey\";s:0:\"\";s:21:\"gallery_collapse_grid\";i:0;s:28:\"gallery_collapse_grid_breaks\";a:1:{i:0;a:2:{s:2:\"bp\";a:2:{s:3:\"min\";i:0;s:3:\"max\";i:767;}s:4:\"cols\";i:1;}}s:20:\"gallery_scrolloffset\";i:20;s:19:\"gallery_hideprivate\";i:1;s:17:\"gallery_showtitle\";i:1;s:18:\"gallery_showpaging\";i:1;s:16:\"gallery_autonext\";i:0;s:17:\"gallery_thumbplay\";i:1;s:18:\"gallery_channelsub\";i:0;s:22:\"gallery_channelsublink\";s:0:\"\";s:22:\"gallery_channelsubtext\";s:23:\"Subscribe to my channel\";s:20:\"gallery_customarrows\";i:0;s:18:\"gallery_customnext\";s:4:\"Next\";s:18:\"gallery_customprev\";s:4:\"Prev\";s:9:\"debugmode\";i:0;s:17:\"admin_off_scripts\";i:0;s:12:\"defer_jquery\";i:0;s:9:\"ajax_save\";i:1;s:12:\"show_pointer\";i:1;s:17:\"old_script_method\";i:0;s:9:\"vi_active\";i:0;s:20:\"vi_hide_monetize_tab\";i:0;s:12:\"vi_endpoints\";s:0:\"\";s:8:\"vi_token\";s:0:\"\";s:13:\"vi_last_login\";s:19:\"2000-01-01 00:00:00\";s:23:\"vi_last_category_update\";s:19:\"2000-01-01 00:00:00\";s:9:\"vi_adstxt\";s:0:\"\";s:14:\"vi_js_settings\";a:15:{s:5:\"divId\";s:20:\"ytvi_story_container\";s:8:\"language\";s:5:\"en-us\";s:11:\"iabCategory\";s:0:\"\";s:4:\"font\";s:5:\"Arial\";s:8:\"fontSize\";i:12;s:8:\"keywords\";s:0:\"\";s:9:\"textColor\";s:7:\"#000000\";s:15:\"backgroundColor\";s:7:\"#ffffff\";s:11:\"vioptional1\";s:0:\"\";s:11:\"vioptional2\";s:0:\"\";s:11:\"vioptional3\";s:0:\"\";s:5:\"float\";b:1;s:10:\"dfpSupport\";b:1;s:13:\"sponsoredText\";s:0:\"\";s:13:\"poweredByText\";s:0:\"\";}s:12:\"vi_js_script\";s:0:\"\";s:15:\"vi_js_posttypes\";a:0:{}s:14:\"vi_js_position\";s:3:\"top\";s:26:\"vi_show_gdpr_authorization\";i:1;s:22:\"vi_show_privacy_button\";i:0;}','no'),(50937,'sgpbPopupBuilderRegisteredPlugins','{\"popup-builder\\/popup-builder.php\":{\"classPath\":\"popup-builder\\/com\\/classes\\/extension\\/SgpbPopupExtension.php\",\"className\":\"SgpbPopupExtension\",\"options\":[]}}','yes'),(50938,'sgpbModifiedRegisteredPluginsPaths2','1','yes'),(50952,'wpd_checked_data','a:0:{}','no'),(50953,'wpdiscuz_show_vote_regenerate_message','0','no'),(50954,'wpdiscuz_show_closed_regenerate_message','0','no'),(50955,'wpdiscuz_show_vote_data_regenerate_message','0','no'),(50956,'wpdiscuz_show_sync_commenters_message','0','no'),(50957,'wpdiscuz_wizard_completed','1','no'),(50958,'wpdiscuz_wizard_after_update','1','no'),(50959,'action_scheduler_hybrid_store_demarkation','2246','yes'),(50960,'schema-ActionScheduler_StoreSchema','6.0.1651713721','yes'),(50961,'schema-ActionScheduler_LoggerSchema','3.0.1651713721','yes'),(50963,'wpd_admin_notices','a:0:{}','yes'),(51033,'secret_key','I$:9A25X?N$_GVt.*~U/n8mCxGHl3wevFDa]TbZnZLP(CKNPPD3QTO@xc.S#rPs{','no'),(55100,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(57576,'zopimSalt','info@translucentcomputing.com_$1$ilioix8i9ZzxkHrQJ8BIJcy84pR1Isff$uDKT1gtRYwk3px/ZYWmcHLfpKuitEvQ4fLHHouO808P+KhIO5yR9Hu/bo1RaP4P5fDWvZ6VU1xQZaD0MVvLnnw==','yes'),(57577,'zopimUsername','info@translucentcomputing.com','yes'),(57578,'zopimCode','3Jw9if6kvTYgP1Q1BNMWwoEn0NCUSnns','yes'),(57579,'zopimGreetings','{\"away\":{\"window\":\"If you leave a question or comment, our agents will be notified and will try to attend to you shortly =)\",\"bar\":\"Click here to chat\"},\"offline\":{\"window\":\"We are offline, but if you leave your message and contact details, we will try to get back to you =)\",\"bar\":\"Leave a message\"},\"online\":{\"window\":\"Leave a question or comment and our agents will try to attend to you shortly =)\",\"bar\":\"Click here to chat\"}}','yes'),(57580,'zopimWidgetOptions','$zopim( function() {\r\nconnectOnPageLoad: false \r\n})','yes'),(57591,'zendeskSubdomain','','yes'),(57599,'vxcf_hubspot_version','1.2.1','yes'),(57600,'vxcf_hubspot_install_data','a:1:{s:4:\"time\";i:1619825467;}','no'),(57602,'vxcf_hubspot_meta','a:1:{s:7:\"objects\";a:9:{s:7:\"Contact\";s:7:\"Contact\";s:7:\"Company\";s:7:\"Company\";s:4:\"Task\";s:4:\"Task\";s:6:\"Ticket\";s:6:\"Ticket\";s:4:\"Deal\";s:4:\"Deal\";s:40:\"vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e\";s:30:\"TC Contact Page - HubSpot Form\";s:40:\"vxf_55513920-4838-4fa4-bb54-941ae6f36a04\";s:34:\"TC Landing Page Top - HubSpot Form\";s:40:\"vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd\";s:37:\"TC Landing Page Bottom - HubSpot Form\";s:40:\"vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7\";s:30:\"TC Main Website - HubSpot Form\";}}','yes'),(61806,'cfx_plugin_updates','a:5:{s:4:\"time\";i:1663224030;s:5:\"users\";a:1:{s:12:\"vxcf-hubspot\";a:7:{s:4:\"user\";s:34:\"60b7f25c269bc925195162266786840463\";s:7:\"expires\";i:1685750399;s:9:\"lic_order\";i:10;s:6:\"status\";s:2:\"ok\";s:13:\"addons_access\";s:4:\"true\";s:4:\"time\";i:1655305792;s:7:\"plugins\";a:1:{s:12:\"vxcf-hubspot\";s:12:\"vxcf-hubspot\";}}}s:6:\"addons\";a:4:{s:6:\"addons\";a:24:{s:23:\"crmperks-marketing-data\";a:22:{s:4:\"name\";s:24:\"CRM Perks Marketing Data\";s:7:\"version\";s:3:\"1.4\";s:4:\"slug\";s:23:\"crmperks-marketing-data\";s:8:\"homepage\";s:20:\"https://crmperks.com\";s:6:\"author\";s:47:\"Boohead Inc\";s:15:\"author_homepage\";s:20:\"https://crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.2\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7039\";s:15:\"active_installs\";s:4:\"6024\";s:12:\"last_updated\";s:11:\"May-16-2016\";s:7:\"banners\";a:2:{s:3:\"low\";s:103:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/crmperks-marketing-addon.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:13:\"vx_track_data\";s:6:\"plugin\";s:51:\"crmperks-marketing-data/crmperks-marketing-data.php\";s:9:\"file_path\";s:47:\"woocommerce_uploads/crmperks-marketing-data.zip\";s:7:\"require\";s:0:\"\";s:4:\"cats\";s:17:\"vx_marketing_data\";s:11:\"new_version\";s:3:\"1.4\";s:8:\"sections\";a:2:{s:11:\"Description\";s:78:\"Track standard Google Analytics parameters and custom query string parameters.\";s:12:\"Installation\";s:325:\"\"manage-addons\"\r\nInstall/Uninstall , Activate/Deactivate any addon from CRM Perks Add-ons panel\";}s:7:\"package\";s:103:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=60\";}s:20:\"crmperks-geolocation\";a:22:{s:4:\"name\";s:21:\"CRM Perks Geolocation\";s:7:\"version\";s:3:\"1.3\";s:4:\"slug\";s:20:\"crmperks-geolocation\";s:8:\"homepage\";s:20:\"https://crmperks.com\";s:6:\"author\";s:47:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:20:\"https://crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.2\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:11:\"May-01-2016\";s:7:\"banners\";a:2:{s:3:\"low\";s:99:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/crmperks-geolocation.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:15:\"vx_geo_location\";s:6:\"plugin\";s:45:\"crmperks-geolocation/crmperks-geolocation.php\";s:9:\"file_path\";s:44:\"woocommerce_uploads/crmperks-geolocation.zip\";s:7:\"require\";s:23:\"crmperks-marketing-data\";s:4:\"cats\";s:17:\"vx_marketing_data\";s:11:\"new_version\";s:3:\"1.3\";s:8:\"sections\";a:3:{s:11:\"Description\";s:77:\"Track IP Address based Geolocation , browser and operating system of customer\";s:12:\"Installation\";s:325:\"\"manage-addons\"\r\nInstall/Uninstall , Activate/Deactivate any addon from CRM Perks Add-ons panel\";s:11:\"ScreenShots\";s:293:\"\"gelocation\"\r\n\r\ntrack visitor geo location, browser , operating system\";}s:7:\"package\";s:103:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=72\";}s:18:\"crmperks-analytics\";a:22:{s:4:\"name\";s:19:\"CRM Perks Analytics\";s:7:\"version\";s:3:\"1.0\";s:4:\"slug\";s:18:\"crmperks-analytics\";s:8:\"homepage\";s:20:\"https://crmperks.com\";s:6:\"author\";s:47:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:20:\"https://crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.2\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:11:\"May-01-2016\";s:7:\"banners\";a:2:{s:3:\"low\";s:97:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/crmperks-analytics.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:14:\"vx_track_pages\";s:6:\"plugin\";s:41:\"crmperks-analytics/crmperks-analytics.php\";s:9:\"file_path\";s:42:\"woocommerce_uploads/crmperks-analytics.zip\";s:7:\"require\";s:20:\"crmperks-geolocation\";s:4:\"cats\";s:17:\"vx_marketing_data\";s:11:\"new_version\";s:3:\"1.0\";s:8:\"sections\";a:3:{s:11:\"Description\";s:57:\"Captures the potential leads from anonymous web visitors.\";s:12:\"Installation\";s:327:\"\"manage-addons\"\r\n\r\nInstall/Uninstall , Activate/Deactivate any addon from CRM Perks Add-ons panel\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:103:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=73\";}s:22:\"crmperks-towerdata-api\";a:22:{s:4:\"name\";s:23:\"CRM Perks TowerData API\";s:7:\"version\";s:3:\"1.0\";s:4:\"slug\";s:22:\"crmperks-towerdata-api\";s:8:\"homepage\";s:20:\"https://crmperks.com\";s:6:\"author\";s:47:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:20:\"https://crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.2\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:11:\"May-01-2016\";s:7:\"banners\";a:2:{s:3:\"low\";s:97:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/crmperks-towerdata.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:13:\"vxa_towerdata\";s:6:\"plugin\";s:49:\"crmperks-towerdata-api/crmperks-towerdata-api.php\";s:9:\"file_path\";s:46:\"woocommerce_uploads/crmperks-towerdata-api.zip\";s:7:\"require\";s:23:\"crmperks-marketing-data\";s:4:\"cats\";s:15:\"vx_email_detail\";s:11:\"new_version\";s:3:\"1.0\";s:8:\"sections\";a:4:{s:11:\"Description\";s:105:\"Get visitor\'s information using their email address. You can select the TowerData fields in the settings.\";s:12:\"Installation\";s:40:\"(Recommended) Installation instructions.\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:103:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=99\";}s:25:\"crmperks-open-weather-api\";a:22:{s:4:\"name\";s:25:\"CRM Perks OpenWeather API\";s:7:\"version\";s:3:\"1.0\";s:4:\"slug\";s:25:\"crmperks-open-weather-api\";s:8:\"homepage\";s:20:\"https://crmperks.com\";s:6:\"author\";s:47:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:20:\"https://crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.2\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:11:\"May-01-2016\";s:7:\"banners\";a:2:{s:3:\"low\";s:99:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/crmperks-openweather.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:16:\"vxa_open_weather\";s:6:\"plugin\";s:55:\"crmperks-open-weather-api/crmperks-open-weather-api.php\";s:9:\"file_path\";s:49:\"woocommerce_uploads/crmperks-open-weather-api.zip\";s:7:\"require\";s:20:\"crmperks-geolocation\";s:4:\"cats\";s:9:\"vx_others\";s:11:\"new_version\";s:3:\"1.0\";s:8:\"sections\";a:4:{s:11:\"Description\";s:74:\"Get the current weather of a visitor\'s location based on their IP address.\";s:12:\"Installation\";s:40:\"(Recommended) Installation instructions.\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:104:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=101\";}s:17:\"crmperks-pipl-api\";a:22:{s:4:\"name\";s:18:\"CRM Perks Pipl API\";s:7:\"version\";s:3:\"1.1\";s:4:\"slug\";s:17:\"crmperks-pipl-api\";s:8:\"homepage\";s:20:\"https://crmperks.com\";s:6:\"author\";s:47:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:20:\"https://crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.2\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:16:\"November-09-2019\";s:7:\"banners\";a:2:{s:3:\"low\";s:92:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/crmperks-pipl.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:8:\"vxa_pipl\";s:6:\"plugin\";s:39:\"crmperks-pipl-api/crmperks-pipl-api.php\";s:9:\"file_path\";s:41:\"woocommerce_uploads/crmperks-pipl-api.zip\";s:7:\"require\";s:23:\"crmperks-marketing-data\";s:4:\"cats\";s:31:\"vx_email_detail vx_phone_detail\";s:11:\"new_version\";s:3:\"1.1\";s:8:\"sections\";a:4:{s:11:\"Description\";s:86:\"Get a visitor\'s information via Pipl\'s API using their phone number and email address.\";s:12:\"Installation\";s:40:\"(Recommended) Installation instructions.\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:104:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=102\";}s:19:\"crmperks-twilio-api\";a:22:{s:4:\"name\";s:20:\"CRM Perks Twilio API\";s:7:\"version\";s:3:\"1.0\";s:4:\"slug\";s:19:\"crmperks-twilio-api\";s:8:\"homepage\";s:20:\"https://crmperks.com\";s:6:\"author\";s:47:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:20:\"https://crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.2\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:11:\"May-01-2016\";s:7:\"banners\";a:2:{s:3:\"low\";s:94:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/crmperks-twilio.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:10:\"vxa_twilio\";s:6:\"plugin\";s:43:\"crmperks-twilio-api/crmperks-twilio-api.php\";s:9:\"file_path\";s:43:\"woocommerce_uploads/crmperks-twilio-api.zip\";s:7:\"require\";s:23:\"crmperks-marketing-data\";s:4:\"cats\";s:15:\"vx_phone_detail\";s:11:\"new_version\";s:3:\"1.0\";s:8:\"sections\";a:4:{s:11:\"Description\";s:85:\"Get a visitor\'s carrier information via Twilio\'s API for international phone numbers.\";s:12:\"Installation\";s:40:\"(Recommended) Installation instructions.\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:104:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=103\";}s:21:\"crmperks-everyone-api\";a:22:{s:4:\"name\";s:22:\"CRM Perks EveryOne API\";s:7:\"version\";s:3:\"1.0\";s:4:\"slug\";s:21:\"crmperks-everyone-api\";s:8:\"homepage\";s:20:\"https://crmperks.com\";s:6:\"author\";s:47:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:20:\"https://crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.2\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:11:\"May-01-2016\";s:7:\"banners\";a:2:{s:3:\"low\";s:96:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/crmperks-everyone.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:12:\"vxa_everyone\";s:6:\"plugin\";s:47:\"crmperks-everyone-api/crmperks-everyone-api.php\";s:9:\"file_path\";s:45:\"woocommerce_uploads/crmperks-everyone-api.zip\";s:7:\"require\";s:23:\"crmperks-marketing-data\";s:4:\"cats\";s:15:\"vx_phone_detail\";s:11:\"new_version\";s:3:\"1.0\";s:8:\"sections\";a:4:{s:11:\"Description\";s:109:\"Get a visitor\'s information via EveryOne\'s API using their phone number. It works for USA phone numbers only.\";s:12:\"Installation\";s:40:\"(Recommended) Installation instructions.\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:104:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=104\";}s:22:\"crmperks-numverify-api\";a:22:{s:4:\"name\";s:23:\"CRM Perks NumVerify API\";s:7:\"version\";s:3:\"1.0\";s:4:\"slug\";s:22:\"crmperks-numverify-api\";s:8:\"homepage\";s:20:\"https://crmperks.com\";s:6:\"author\";s:47:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:20:\"https://crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.2\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:11:\"May-01-2016\";s:7:\"banners\";a:2:{s:3:\"low\";s:97:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/crmperks-numverify.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:13:\"vxa_numverify\";s:6:\"plugin\";s:49:\"crmperks-numverify-api/crmperks-numverify-api.php\";s:9:\"file_path\";s:46:\"woocommerce_uploads/crmperks-numverify-api.zip\";s:7:\"require\";s:23:\"crmperks-marketing-data\";s:4:\"cats\";s:15:\"vx_phone_detail\";s:11:\"new_version\";s:3:\"1.0\";s:8:\"sections\";a:4:{s:11:\"Description\";s:99:\"Get a visitor\'s information via NumVerify\'s API using their phone number. Country Code is required.\";s:12:\"Installation\";s:40:\"(Recommended) Installation instructions.\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:104:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=105\";}s:21:\"crmperks-opencnam-api\";a:22:{s:4:\"name\";s:22:\"CRM Perks OpenCNAM API\";s:7:\"version\";s:3:\"1.0\";s:4:\"slug\";s:21:\"crmperks-opencnam-api\";s:8:\"homepage\";s:20:\"https://crmperks.com\";s:6:\"author\";s:47:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:20:\"https://crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.2\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:11:\"May-01-2016\";s:7:\"banners\";a:2:{s:3:\"low\";s:96:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/crmperks-opencnam.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:12:\"vxa_opencnam\";s:6:\"plugin\";s:47:\"crmperks-opencnam-api/crmperks-opencnam-api.php\";s:9:\"file_path\";s:45:\"woocommerce_uploads/crmperks-opencnam-api.zip\";s:7:\"require\";s:23:\"crmperks-marketing-data\";s:4:\"cats\";s:15:\"vx_phone_detail\";s:11:\"new_version\";s:3:\"1.0\";s:8:\"sections\";a:4:{s:11:\"Description\";s:122:\"Get a visitor\'s name using an international phone number. Country Code is required or should be specified in the settings.\";s:12:\"Installation\";s:40:\"(Recommended) Installation instructions.\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:104:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=106\";}s:39:\"crmperks-whitepages-caller-identity-api\";a:22:{s:4:\"name\";s:30:\"WhitePages Caller Identity API\";s:7:\"version\";s:3:\"1.0\";s:4:\"slug\";s:39:\"crmperks-whitepages-caller-identity-api\";s:8:\"homepage\";s:20:\"https://crmperks.com\";s:6:\"author\";s:47:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:20:\"https://crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.2\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:11:\"May-01-2016\";s:7:\"banners\";a:2:{s:3:\"low\";s:98:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/crmperks-whitepages.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:13:\"vxa_wp_caller\";s:6:\"plugin\";s:83:\"crmperks-whitepages-caller-identity-api/crmperks-whitepages-caller-identity-api.php\";s:9:\"file_path\";s:63:\"woocommerce_uploads/crmperks-whitepages-caller-identity-api.zip\";s:7:\"require\";s:23:\"crmperks-marketing-data\";s:4:\"cats\";s:15:\"vx_phone_detail\";s:11:\"new_version\";s:3:\"1.0\";s:8:\"sections\";a:4:{s:11:\"Description\";s:73:\"Get a visitor\'s information via WhitePages\' API using their phone number.\";s:12:\"Installation\";s:85:\"Excellent API for getting for getting correct information of a person by phone number\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:104:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=107\";}s:23:\"crmperks-export-entries\";a:22:{s:4:\"name\";s:16:\"Wordpress to CRM\";s:7:\"version\";s:3:\"1.3\";s:4:\"slug\";s:23:\"crmperks-export-entries\";s:8:\"homepage\";s:20:\"https://crmperks.com\";s:6:\"author\";s:47:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:20:\"https://crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.2\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:11:\"May-01-2016\";s:7:\"banners\";a:2:{s:3:\"low\";s:103:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/crmperks-crm-bulk-import.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:10:\"vxa_export\";s:6:\"plugin\";s:51:\"crmperks-export-entries/crmperks-export-entries.php\";s:9:\"file_path\";s:47:\"woocommerce_uploads/crmperks-export-entries.zip\";s:7:\"require\";s:23:\"crmperks-marketing-data\";s:4:\"cats\";s:16:\"vx_import_export\";s:11:\"new_version\";s:3:\"1.3\";s:8:\"sections\";a:4:{s:11:\"Description\";s:91:\"Export Woocommerce order info, Gravity Forms & Contact Form 7 entries in bulk to a CRM.\";s:12:\"Installation\";s:40:\"(Recommended) Installation instructions.\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:104:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=132\";}s:23:\"crmperks-field-creation\";a:22:{s:4:\"name\";s:24:\"CRM Perks Field Creation\";s:7:\"version\";s:3:\"1.0\";s:4:\"slug\";s:23:\"crmperks-field-creation\";s:8:\"homepage\";s:20:\"https://crmperks.com\";s:6:\"author\";s:47:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:20:\"https://crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.2\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:11:\"May-01-2016\";s:7:\"banners\";a:2:{s:3:\"low\";s:101:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/crmperks-create-fields.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:10:\"vxa_fields\";s:6:\"plugin\";s:51:\"crmperks-field-creation/crmperks-field-creation.php\";s:9:\"file_path\";s:47:\"woocommerce_uploads/crmperks-field-creation.zip\";s:7:\"require\";s:23:\"crmperks-marketing-data\";s:4:\"cats\";s:9:\"vx_others\";s:11:\"new_version\";s:3:\"1.0\";s:8:\"sections\";a:4:{s:11:\"Description\";s:55:\"Create add-on fields in the CRM to map the information.\";s:12:\"Installation\";s:40:\"(Recommended) Installation instructions.\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:104:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=159\";}s:15:\"crmperks-backup\";a:22:{s:4:\"name\";s:16:\"CRM Perks Backup\";s:7:\"version\";s:3:\"1.0\";s:4:\"slug\";s:15:\"crmperks-backup\";s:8:\"homepage\";s:20:\"https://crmperks.com\";s:6:\"author\";s:47:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:20:\"https://crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.2\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:11:\"May-01-2016\";s:7:\"banners\";a:2:{s:3:\"low\";s:94:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/crmperks-backup.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:10:\"vxa_backup\";s:6:\"plugin\";s:35:\"crmperks-backup/crmperks-backup.php\";s:9:\"file_path\";s:39:\"woocommerce_uploads/crmperks-backup.zip\";s:7:\"require\";s:0:\"\";s:4:\"cats\";s:16:\"vx_import_export\";s:11:\"new_version\";s:3:\"1.0\";s:8:\"sections\";a:4:{s:11:\"Description\";s:37:\"Import and Export feeds and accounts.\";s:12:\"Installation\";s:40:\"(Recommended) Installation instructions.\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:104:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=164\";}s:22:\"crmperks-notifications\";a:22:{s:4:\"name\";s:23:\"CRM Perks Notifications\";s:7:\"version\";s:3:\"1.0\";s:4:\"slug\";s:22:\"crmperks-notifications\";s:8:\"homepage\";s:24:\"https://www.crmperks.com\";s:6:\"author\";s:51:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:24:\"https://www.crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.8\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:15:\"October-14-2017\";s:7:\"banners\";a:2:{s:3:\"low\";s:100:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/crmperks-notification.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:14:\"vxa_bro_notify\";s:6:\"plugin\";s:49:\"crmperks-notifications/crmperks-notifications.php\";s:9:\"file_path\";s:46:\"woocommerce_uploads/crmperks-notifications.zip\";s:7:\"require\";s:0:\"\";s:4:\"cats\";s:9:\"vx_others\";s:11:\"new_version\";s:3:\"1.0\";s:8:\"sections\";a:4:{s:11:\"Description\";s:78:\"Sends a notification (sms/call/email/browser push notification) for new entry.\";s:12:\"Installation\";s:40:\"(Recommended) Installation instructions.\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:104:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=878\";}s:26:\"crmperks-outgoing-webhooks\";a:22:{s:4:\"name\";s:17:\"Outgoing Webhooks\";s:7:\"version\";s:3:\"1.1\";s:4:\"slug\";s:26:\"crmperks-outgoing-webhooks\";s:8:\"homepage\";s:24:\"https://www.crmperks.com\";s:6:\"author\";s:51:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:24:\"https://www.crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.2\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:15:\"October-14-2017\";s:7:\"banners\";a:2:{s:3:\"low\";s:94:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/crmperks-zapier.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:10:\"vxa_zapier\";s:6:\"plugin\";s:57:\"crmperks-outgoing-webhooks/crmperks-outgoing-webhooks.php\";s:9:\"file_path\";s:50:\"woocommerce_uploads/crmperks-outgoing-webhooks.zip\";s:7:\"require\";s:0:\"\";s:4:\"cats\";s:16:\"vx_import_export\";s:11:\"new_version\";s:3:\"1.1\";s:8:\"sections\";a:4:{s:11:\"Description\";s:52:\"Send Contact Form Entries to Zapier or any web hook.\";s:12:\"Installation\";s:40:\"(Recommended) Installation instructions.\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:104:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=879\";}s:26:\"crmperks-incoming-webhooks\";a:22:{s:4:\"name\";s:17:\"Incoming WebHooks\";s:7:\"version\";s:3:\"1.0\";s:4:\"slug\";s:26:\"crmperks-incoming-webhooks\";s:8:\"homepage\";s:24:\"https://www.crmperks.com\";s:6:\"author\";s:51:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:24:\"https://www.crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.2\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:15:\"October-14-2017\";s:7:\"banners\";a:2:{s:3:\"low\";s:101:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/crmperks-entries-feeds.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:17:\"vxa_entries_feeds\";s:6:\"plugin\";s:57:\"crmperks-incoming-webhooks/crmperks-incoming-webhooks.php\";s:9:\"file_path\";s:50:\"woocommerce_uploads/crmperks-incoming-webhooks.zip\";s:7:\"require\";s:0:\"\";s:4:\"cats\";s:9:\"vx_others\";s:11:\"new_version\";s:3:\"1.0\";s:8:\"sections\";a:4:{s:11:\"Description\";s:65:\"Creates a entry in Contact Forms Entries Plugin from posted data.\";s:12:\"Installation\";s:40:\"(Recommended) Installation instructions.\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:104:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=880\";}s:24:\"crmperks-user-assignment\";a:22:{s:4:\"name\";s:25:\"CRM Perks User Assignment\";s:7:\"version\";s:3:\"1.0\";s:4:\"slug\";s:24:\"crmperks-user-assignment\";s:8:\"homepage\";s:24:\"https://www.crmperks.com\";s:6:\"author\";s:51:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:24:\"https://www.crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.2\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:15:\"October-16-2017\";s:7:\"banners\";a:2:{s:3:\"low\";s:103:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/crmperks-user-assignment.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:15:\"vxa_assign_user\";s:6:\"plugin\";s:53:\"crmperks-user-assignment/crmperks-user-assignment.php\";s:9:\"file_path\";s:48:\"woocommerce_uploads/crmperks-user-assignment.zip\";s:7:\"require\";s:0:\"\";s:4:\"cats\";s:9:\"vx_others\";s:11:\"new_version\";s:3:\"1.0\";s:8:\"sections\";a:4:{s:11:\"Description\";s:85:\"Override object(lead, contact etc) assignment or object owner in any CRM plugin feed.\";s:12:\"Installation\";s:40:\"(Recommended) Installation instructions.\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:104:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=881\";}s:21:\"crmperks-clearbit-api\";a:22:{s:4:\"name\";s:22:\"CRM Perks Clearbit API\";s:7:\"version\";s:3:\"1.0\";s:4:\"slug\";s:21:\"crmperks-clearbit-api\";s:8:\"homepage\";s:24:\"https://www.crmperks.com\";s:6:\"author\";s:51:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:24:\"https://www.crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.7\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:16:\"December-01-2017\";s:7:\"banners\";a:2:{s:3:\"low\";s:96:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/crmperks-clearbit.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:12:\"vxa_clearbit\";s:6:\"plugin\";s:47:\"crmperks-clearbit-api/crmperks-clearbit-api.php\";s:9:\"file_path\";s:45:\"woocommerce_uploads/crmperks-clearbit-api.zip\";s:7:\"require\";s:0:\"\";s:4:\"cats\";s:15:\"vx_email_detail\";s:11:\"new_version\";s:3:\"1.0\";s:8:\"sections\";a:4:{s:11:\"Description\";s:49:\"Lookup email , IP and URL using the Clearbit API.\";s:12:\"Installation\";s:40:\"(Recommended) Installation instructions.\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:104:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=889\";}s:18:\"crmperks-whois-api\";a:22:{s:4:\"name\";s:19:\"CRM Perks Whois API\";s:7:\"version\";s:3:\"1.0\";s:4:\"slug\";s:18:\"crmperks-whois-api\";s:8:\"homepage\";s:24:\"https://www.crmperks.com\";s:6:\"author\";s:51:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:24:\"https://www.crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.7\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:16:\"December-15-2017\";s:7:\"banners\";a:2:{s:3:\"low\";s:93:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/crmperks-whois.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:9:\"vxa_whois\";s:6:\"plugin\";s:41:\"crmperks-whois-api/crmperks-whois-api.php\";s:9:\"file_path\";s:42:\"woocommerce_uploads/crmperks-whois-api.zip\";s:7:\"require\";s:0:\"\";s:4:\"cats\";s:17:\"vx_marketing_data\";s:11:\"new_version\";s:3:\"1.0\";s:8:\"sections\";a:4:{s:11:\"Description\";s:60:\"Get Whois info of any URL or domain name from email address.\";s:12:\"Installation\";s:40:\"(Recommended) Installation instructions.\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:104:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=890\";}s:21:\"crmperks-zipcodes-api\";a:22:{s:4:\"name\";s:23:\"CRM Perks Zip Codes API\";s:7:\"version\";s:3:\"1.0\";s:4:\"slug\";s:21:\"crmperks-zipcodes-api\";s:8:\"homepage\";s:24:\"https://www.crmperks.com\";s:6:\"author\";s:51:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:24:\"https://www.crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.2\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:16:\"December-15-2017\";s:7:\"banners\";a:2:{s:3:\"low\";s:96:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/crmperks-zipcodes.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:12:\"vxa_zipcodes\";s:6:\"plugin\";s:47:\"crmperks-zipcodes-api/crmperks-zipcodes-api.php\";s:9:\"file_path\";s:45:\"woocommerce_uploads/crmperks-zipcodes-api.zip\";s:7:\"require\";s:0:\"\";s:4:\"cats\";s:17:\"vx_marketing_data\";s:11:\"new_version\";s:3:\"1.0\";s:8:\"sections\";a:4:{s:11:\"Description\";s:64:\"Get Zip Code detail of visitor\'s geolocation from zip-codes.com.\";s:12:\"Installation\";s:40:\"(Recommended) Installation instructions.\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:104:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=891\";}s:26:\"crmperks-export-conversion\";a:22:{s:4:\"name\";s:25:\"CRM Perks AdWords BingAds\";s:7:\"version\";s:3:\"1.0\";s:4:\"slug\";s:26:\"crmperks-export-conversion\";s:8:\"homepage\";s:24:\"https://www.crmperks.com\";s:6:\"author\";s:51:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:24:\"https://www.crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.8\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:16:\"December-28-2017\";s:7:\"banners\";a:2:{s:3:\"low\";s:95:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/analytics-export.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:14:\"vxa_conversion\";s:6:\"plugin\";s:57:\"crmperks-export-conversion/crmperks-export-conversion.php\";s:9:\"file_path\";s:50:\"woocommerce_uploads/crmperks-export-conversion.zip\";s:7:\"require\";s:0:\"\";s:4:\"cats\";s:17:\"vx_marketing_data\";s:11:\"new_version\";s:3:\"1.0\";s:8:\"sections\";a:4:{s:11:\"Description\";s:119:\"Export offline conversion data with GCLID or MSCLKID from Woocommerce Orders, Gravity Forms and Contact Form  entries.\";s:12:\"Installation\";s:40:\"(Recommended) Installation instructions.\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:104:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=893\";}s:24:\"crmperks-partial-entries\";a:22:{s:4:\"name\";s:15:\"Partial Entries\";s:7:\"version\";s:3:\"1.0\";s:4:\"slug\";s:24:\"crmperks-partial-entries\";s:8:\"homepage\";s:24:\"https://www.crmperks.com\";s:6:\"author\";s:53:\"CRM Perks Inc<\\/a>\";s:15:\"author_homepage\";s:24:\"https://www.crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.9\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:12:\"July-07-2018\";s:7:\"banners\";a:2:{s:3:\"low\";s:94:\"https://crmperks-enthqawcuy.netdna-ssl.com/wp-content/uploads/addon-images/partial-entries.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:25:\"vxcf_form_partial_entries\";s:6:\"plugin\";s:53:\"crmperks-partial-entries/crmperks-partial-entries.php\";s:9:\"file_path\";s:48:\"woocommerce_uploads/crmperks-partial-entries.zip\";s:7:\"require\";s:0:\"\";s:4:\"cats\";s:0:\"\";s:11:\"new_version\";s:3:\"1.0\";s:8:\"sections\";a:4:{s:11:\"Description\";s:96:\"Don\'t miss out on any potential leads. Collect data in real time as it is entered on your forms.\";s:12:\"Installation\";s:40:\"(Recommended) Installation instructions.\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:104:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=925\";}s:25:\"crmperks-conditional-edit\";a:22:{s:4:\"name\";s:28:\"Conditional Field value Edit\";s:7:\"version\";s:3:\"1.2\";s:4:\"slug\";s:25:\"crmperks-conditional-edit\";s:8:\"homepage\";s:24:\"https://www.crmperks.com\";s:6:\"author\";s:51:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:24:\"https://www.crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.2\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:17:\"September-30-2019\";s:7:\"banners\";a:2:{s:3:\"low\";s:75:\"http://w-shadow.com/files/external-update-example/assets/banner-772x250.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:16:\"vxa_modify_field\";s:6:\"plugin\";s:55:\"crmperks-conditional-edit/crmperks-conditional-edit.php\";s:9:\"file_path\";s:49:\"woocommerce_uploads/crmperks-conditional-edit.zip\";s:7:\"require\";s:0:\"\";s:4:\"cats\";s:9:\"vx_others\";s:11:\"new_version\";s:3:\"1.2\";s:8:\"sections\";a:4:{s:11:\"Description\";s:128:\"Modify field value of Gravity Forms entry, Contact Form 7 entry and WooCommerce Order according to different conditions you set.\";s:12:\"Installation\";s:40:\"(Recommended) Installation instructions.\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:7:\"package\";s:105:\"https://www.crmperks.com?vx_action=download_addon&vx_key=60b7f25c269bc925195162266786840463&vx_addon=2877\";}}s:6:\"status\";s:2:\"ok\";s:4:\"cats\";a:6:{s:0:\"\";s:14:\"All Categories\";s:17:\"vx_marketing_data\";s:14:\"Marketing Data\";s:15:\"vx_email_detail\";s:12:\"Email Detail\";s:15:\"vx_phone_detail\";s:12:\"Phone Detail\";s:16:\"vx_import_export\";s:13:\"Import/Export\";s:9:\"vx_others\";s:6:\"Others\";}s:4:\"time\";i:1663224030;}s:7:\"updates\";a:1:{s:12:\"vxcf-hubspot\";a:26:{s:4:\"name\";s:27:\"Contact Form HubSpot Add-on\";s:7:\"version\";s:5:\"1.2.6\";s:4:\"slug\";s:15:\"cf7-hubspot-pro\";s:8:\"homepage\";s:24:\"https://www.crmperks.com\";s:6:\"author\";s:51:\"Boohead Inc<\\/a>\";s:15:\"author_homepage\";s:24:\"https://www.crmperks.com\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:3:\"4.7\";s:6:\"rating\";s:2:\"90\";s:11:\"num_ratings\";s:3:\"102\";s:10:\"downloaded\";s:4:\"7015\";s:15:\"active_installs\";s:4:\"6854\";s:12:\"last_updated\";s:16:\"February-01-2017\";s:7:\"banners\";a:2:{s:3:\"low\";s:75:\"http://w-shadow.com/files/external-update-example/assets/banner-772x250.png\";s:4:\"high\";s:76:\"http://w-shadow.com/files/external-update-example/assets/banner-1544x500.png\";}s:5:\"class\";s:0:\"\";s:6:\"plugin\";s:0:\"\";s:9:\"file_path\";s:0:\"\";s:7:\"require\";s:0:\"\";s:4:\"cats\";s:0:\"\";s:8:\"variable\";a:1:{s:7:\"vx_name\";s:0:\"\";}s:6:\"simple\";a:2:{s:4:\"name\";s:0:\"\";s:5:\"limit\";s:0:\"\";}s:8:\"discount\";a:2:{s:6:\"before\";s:0:\"\";s:5:\"after\";s:0:\"\";}s:3:\"sku\";s:12:\"vxcf-hubspot\";s:8:\"sections\";a:4:{s:11:\"Description\";s:70:\"(Required) Plugin description. Basic HTML can be used in all sections.\";s:12:\"Installation\";s:40:\"(Recommended) Installation instructions.\";s:9:\"ChangeLog\";s:117:\"(Recommended) Changelog.\r\n\r\nThis section will be opened by default when the user clicks \'View version XYZ information\";s:4:\"FAQs\";s:23:\"This is a FAQs Section.\";}s:13:\"download_link\";s:109:\"https://www.crmperks.com?vx_action=download_zip&vx_key=60b7f25c269bc925195162266786840463&vx_sku=vxcf-hubspot\";s:8:\"messages\";a:0:{}}}s:6:\"hidden\";a:1:{s:42:\"60b7f25c269bc925195162266786840463-warning\";i:1683242455;}}','no'),(61893,'wpdiscuz_show_rating_rebuild_message','0','no'),(62090,'autoptimize_js_defer_not_aggregate','','yes'),(62091,'autoptimize_cache_fallback','on','yes'),(74447,'autoptimize_extra_settings','a:7:{s:31:\"autoptimize_extra_radio_field_4\";s:1:\"2\";s:34:\"autoptimize_extra_checkbox_field_1\";s:1:\"1\";s:34:\"autoptimize_extra_checkbox_field_0\";s:1:\"1\";s:34:\"autoptimize_extra_checkbox_field_8\";s:1:\"1\";s:30:\"autoptimize_extra_text_field_2\";s:0:\"\";s:30:\"autoptimize_extra_text_field_7\";s:0:\"\";s:30:\"autoptimize_extra_text_field_3\";s:0:\"\";}','yes'),(75223,'hcaptcha_api_key','515e1cf2-e680-4179-ae7d-e6bf52152cf4','yes'),(75224,'hcaptcha_secret_key','0xD853481f0751F592DD014C3d69Bd47fA9dc0725B','yes'),(75225,'hcaptcha_theme','light','yes'),(75226,'hcaptcha_size','compact','yes'),(75227,'hcaptcha_language','','yes'),(75228,'hcaptcha_recaptchacompat','on','yes'),(75229,'hcaptcha_nf_status','off','yes'),(75230,'hcaptcha_cf7_status','off','yes'),(75231,'hcaptcha_lf_status','off','yes'),(75232,'hcaptcha_rf_status','off','yes'),(75233,'hcaptcha_cmf_status','off','yes'),(75234,'hcaptcha_lpf_status','off','yes'),(75235,'hcaptcha_wc_login_status','off','yes'),(75236,'hcaptcha_wc_reg_status','off','yes'),(75237,'hcaptcha_wc_lost_pass_status','off','yes'),(75238,'hcaptcha_wc_checkout_status','off','yes'),(75239,'hcaptcha_bp_reg_status','off','yes'),(75240,'hcaptcha_bp_create_group_status','off','yes'),(75241,'hcaptcha_bbp_new_topic_status','off','yes'),(75242,'hcaptcha_bbp_reply_status','off','yes'),(75243,'hcaptcha_wpforms_status','off','yes'),(75244,'hcaptcha_wpforms_pro_status','off','yes'),(75245,'hcaptcha_wpforo_new_topic_status','off','yes'),(75246,'hcaptcha_wpforo_reply_status','off','yes'),(75247,'hcaptcha_mc4wp_status','off','yes'),(75248,'hcaptcha_jetpack_cf_status','off','yes'),(75249,'hcaptcha_subscribers_status','off','yes'),(75250,'hcaptcha_wc_wl_create_list_status','off','yes'),(79182,'imagify_settings','a:14:{s:7:\"version\";s:3:\"2.0\";s:7:\"api_key\";s:40:\"b408c304a8a6863dcfb3e23e98c814c48872c0b7\";s:18:\"optimization_level\";i:2;s:13:\"auto_optimize\";i:1;s:6:\"backup\";i:1;s:13:\"resize_larger\";i:1;s:15:\"resize_larger_w\";i:2560;s:15:\"convert_to_webp\";i:1;s:12:\"display_webp\";i:1;s:19:\"display_webp_method\";s:7:\"picture\";s:7:\"cdn_url\";s:0:\"\";s:16:\"disallowed-sizes\";a:0:{}s:14:\"admin_bar_menu\";i:1;s:13:\"partner_links\";i:0;}','yes'),(79183,'imagify_data','a:4:{s:7:\"version\";s:3:\"2.0\";s:25:\"total_size_images_library\";d:100086339.072;s:29:\"average_size_images_per_month\";d:25872137;s:22:\"previous_quota_percent\";d:100;}','yes'),(79184,'imagify_folders_db_version','100','yes'),(79185,'imagify_files_db_version','102','yes'),(83139,'autoptimize_imgopt_provider_stat','a:7:{s:10:\"HasAccount\";b:0;s:11:\"FreeCredits\";i:500;s:15:\"UsedFreeCredits\";i:118;s:8:\"CDNQuota\";i:5368709000;s:7:\"UsedCDN\";i:6987551;s:6:\"Status\";i:2;i:0;s:2:\"OK\";}','yes'),(146749,'leadin_portalId','6899710','yes'),(146750,'leadin_account_name','Translucent','yes'),(146751,'leadin_portal_domain','www.translucentcomputing.com','yes'),(146752,'leadin_hublet','','yes'),(189233,'autoptimize_cachesize_notice','','yes'),(233812,'wpdiscuz-addon-note-dismissed','BuddyPress Integration, Tenor GIFs Integration','yes'),(233833,'youtubeprefs_alloptions_backup_13_4_2','a:87:{s:7:\"version\";s:6:\"13.4.2\";s:9:\"centervid\";i:0;s:6:\"glance\";i:0;s:8:\"autoplay\";i:0;s:14:\"cc_load_policy\";i:0;s:12:\"cc_lang_pref\";s:0:\"\";s:14:\"iv_load_policy\";i:1;s:4:\"loop\";i:0;s:14:\"modestbranding\";i:0;s:3:\"rel\";s:1:\"1\";s:2:\"fs\";i:1;s:11:\"playsinline\";i:0;s:6:\"origin\";i:0;s:8:\"autohide\";i:2;s:2:\"hl\";s:0:\"\";s:4:\"dohl\";i:0;s:5:\"theme\";s:4:\"dark\";s:5:\"color\";s:3:\"red\";s:3:\"pro\";s:0:\"\";s:8:\"nocookie\";i:0;s:9:\"gb_compat\";i:1;s:12:\"gdpr_consent\";i:0;s:20:\"gdpr_consent_message\";s:360:\"Please accept YouTube cookies to play this video. By accepting you will be accessing content from YouTube, a service provided by an external third party.\r\n\r\nYouTube privacy policy\r\n\r\nIf you accept this notice, your choice will be saved and the page will refresh.\";s:19:\"gdpr_consent_button\";s:22:\"Accept YouTube Content\";s:13:\"playlistorder\";i:0;s:8:\"acctitle\";i:0;s:7:\"migrate\";i:0;s:15:\"migrate_youtube\";i:0;s:22:\"migrate_embedplusvideo\";i:0;s:8:\"controls\";i:1;s:10:\"oldspacing\";i:0;s:13:\"frontend_only\";i:1;s:10:\"responsive\";i:1;s:14:\"responsive_all\";i:1;s:9:\"widgetfit\";i:1;s:16:\"evselector_light\";i:0;s:18:\"stop_mobile_buffer\";i:1;s:15:\"restrict_wizard\";i:0;s:21:\"restrict_wizard_roles\";a:5:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";}s:11:\"ajax_compat\";i:0;s:10:\"ytapi_load\";s:5:\"light\";s:11:\"defaultdims\";i:0;s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:12:\"pause_others\";i:0;s:10:\"defaultvol\";i:0;s:3:\"vol\";s:0:\"\";s:6:\"apikey\";s:0:\"\";s:15:\"gallery_columns\";i:3;s:21:\"gallery_collapse_grid\";i:0;s:28:\"gallery_collapse_grid_breaks\";a:1:{i:0;a:2:{s:2:\"bp\";a:2:{s:3:\"min\";i:0;s:3:\"max\";i:767;}s:4:\"cols\";i:1;}}s:20:\"gallery_scrolloffset\";i:20;s:19:\"gallery_hideprivate\";i:1;s:17:\"gallery_showtitle\";i:1;s:18:\"gallery_showpaging\";i:1;s:16:\"gallery_autonext\";i:0;s:17:\"gallery_thumbplay\";i:1;s:18:\"gallery_channelsub\";i:0;s:22:\"gallery_channelsublink\";s:0:\"\";s:22:\"gallery_channelsubtext\";s:23:\"Subscribe to my channel\";s:20:\"gallery_customarrows\";i:0;s:18:\"gallery_customnext\";s:4:\"Next\";s:18:\"gallery_customprev\";s:4:\"Prev\";s:16:\"gallery_pagesize\";i:15;s:16:\"not_live_content\";s:0:\"\";s:11:\"not_live_on\";i:0;s:9:\"debugmode\";i:0;s:17:\"admin_off_scripts\";i:0;s:8:\"defer_js\";i:0;s:12:\"defer_jquery\";i:0;s:9:\"ajax_save\";i:1;s:12:\"show_pointer\";i:1;s:9:\"onboarded\";i:0;s:17:\"old_script_method\";i:0;s:9:\"vi_active\";i:0;s:20:\"vi_hide_monetize_tab\";i:0;s:12:\"vi_endpoints\";s:0:\"\";s:8:\"vi_token\";s:0:\"\";s:13:\"vi_last_login\";s:19:\"2000-01-01 00:00:00\";s:23:\"vi_last_category_update\";s:19:\"2000-01-01 00:00:00\";s:9:\"vi_adstxt\";s:0:\"\";s:14:\"vi_js_settings\";a:15:{s:5:\"divId\";s:20:\"ytvi_story_container\";s:8:\"language\";s:5:\"en-us\";s:11:\"iabCategory\";s:0:\"\";s:4:\"font\";s:5:\"Arial\";s:8:\"fontSize\";i:12;s:8:\"keywords\";s:0:\"\";s:9:\"textColor\";s:7:\"#000000\";s:15:\"backgroundColor\";s:7:\"#ffffff\";s:11:\"vioptional1\";s:0:\"\";s:11:\"vioptional2\";s:0:\"\";s:11:\"vioptional3\";s:0:\"\";s:5:\"float\";b:1;s:10:\"dfpSupport\";b:1;s:13:\"sponsoredText\";s:0:\"\";s:13:\"poweredByText\";s:0:\"\";}s:12:\"vi_js_script\";s:0:\"\";s:15:\"vi_js_posttypes\";a:0:{}s:14:\"vi_js_position\";s:3:\"top\";s:26:\"vi_show_gdpr_authorization\";i:1;s:22:\"vi_show_privacy_button\";i:0;}','no'),(233866,'w3tc_generic_widgetservices','{\"content\":{\"items\":[{\"name\":\"Premium Support Response (Usually <1h First Response)\",\"parameter_name\":\"field4\",\"parameter_value\":\"Premium Support Response (Usually <1h First Response)\",\"form_hash\":\"m5pom8z0qy59rm\"},{\"name\":\"Performance Audit \\/ Consult (Theme, Plugin, Content, Server)\",\"parameter_name\":\"field4\",\"parameter_value\":\"Performance Audit \\/ Consult (Theme, Plugin, Content, Server)\",\"form_hash\":\"m5pom8z0qy59rm\"},{\"name\":\"Plugin Configuration\",\"parameter_name\":\"field4\",\"parameter_value\":\"Plugin Configuration\",\"form_hash\":\"m5pom8z0qy59rm\"},{\"name\":\"SSL Performance Setup\",\"parameter_name\":\"field4\",\"parameter_value\":\"SSL Performance Setup\",\"form_hash\":\"m5pom8z0qy59rm\"},{\"name\":\"Full Site Delivery Setup\",\"parameter_name\":\"field4\",\"parameter_value\":\"Full Site Delivery Setup\",\"form_hash\":\"m5pom8z0qy59rm\"},{\"name\":\"Hosting Environment Troubleshooting\",\"parameter_name\":\"field4\",\"parameter_value\":\"Hosting Environment Troubleshooting\",\"form_hash\":\"m5pom8z0qy59rm\"},{\"name\":\"Performance Monitoring\",\"parameter_name\":\"field4\",\"parameter_value\":\"Performance Monitoring\",\"form_hash\":\"m5pom8z0qy59rm\"}],\"ui_strings\":{\"cdn.maxcdn.signUpAndSave\":\"Sign Up Now and save !\",\"cdn.maxcdn.signUpAndSave.description\":\"MaxCDN is a service that lets you speed up your site even more with W3 Total Cache. Sign up now to recieve a special offer!\",\"cdn.stackpath.signUpAndSave\":\"Sign Up Now and save !\",\"cdn.stackpath.signUpAndSave.description\":\"StackPath is a service that lets you speed up your site even more with W3 Total Cache. Sign up now and save!\",\"cdn.stackpath2.signUpAndSave\":\"Sign Up Now and save !\",\"cdn.stackpath2.signUpAndSave.description\":\"StackPath is a service that lets you speed up your site even more with W3 Total Cache. Sign up now to recieve a special offer!\",\"minify.general.header\":\"Reduce load time by decreasing the size and number of CSS<\\/acronym> and JS<\\/acronym> files. Automatically remove unncessary data from CSS<\\/acronym>, JS<\\/acronym>, feed, page and post HTML<\\/acronym>.\",\"newrelic.general.header\":\"New Relic may not be installed or not active on this server. Sign up for a (free) account<\\/a>. Visit New Relic<\\/a> for installation instructions.\",\"reverseproxy.general.header\":\"A reverse proxy adds scale to an server by handling requests before WordPress does. Purge settings are set on the Page Cache settings<\\/a> page and Browser Cache settings<\\/a> are set on the browser cache settings page.\",\"cdnfsd.general.header\":\"Host the entire website with your compatible CDN<\\/acronym> provider to reduce page load time.\",\"cdn.general.header\":\"Host static files with your CDN<\\/acronym> to reduce page load time.\",\"cdn.stackpath.widget.existing\":\"If you\'re an existing StackPath customer, enable CDN<\\/acronym> and:\",\"cdn.stackpath2.widget.existing\":\"If you\'re an existing StackPath customer, enable CDN<\\/acronym> and:\",\"cdn.stackpath2.widget.works_magically\":\"StackPath works magically with W3 Total Cache.\",\"cdn.stackpath.widget.header\":\"Dramatically increase website speeds in just a few clicks! Add the StackPath content delivery network (CDN<\\/acronym>) service to your site.\",\"cdn.stackpath2.widget.header\":\"Dramatically increase website speeds in just a few clicks! Add the StackPath content delivery network (CDN<\\/acronym>) service to your site.\"}},\"expires\":1624997287}','no'),(234038,'auto_update_core_dev','enabled','yes'),(234039,'auto_update_core_minor','enabled','yes'),(234040,'auto_update_core_major','unset','yes'),(234047,'https_detection_errors','a:0:{}','yes'),(234061,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"19.1\";}','yes'),(234062,'yoast_migrations_premium','a:1:{s:7:\"version\";s:4:\"17.7\";}','yes'),(234063,'wpseo_premium','a:4:{s:34:\"prominent_words_indexing_completed\";b:0;s:8:\"workouts\";a:2:{s:11:\"cornerstone\";a:3:{s:13:\"finishedSteps\";a:0:{}s:16:\"indexablesByStep\";a:5:{s:8:\"addLinks\";a:0:{}s:10:\"checkLinks\";a:0:{}s:18:\"chooseCornerstones\";a:0:{}s:8:\"improved\";a:0:{}s:7:\"skipped\";a:0:{}}s:8:\"priority\";i:20;}s:8:\"orphaned\";a:3:{s:13:\"finishedSteps\";a:0:{}s:16:\"indexablesByStep\";a:7:{s:13:\"improveRemove\";a:10:{i:0;s:1:\"2\";i:1;s:3:\"220\";i:2;s:3:\"221\";i:3;s:3:\"227\";i:4;s:3:\"259\";i:5;s:3:\"248\";i:6;s:3:\"249\";i:7;s:3:\"271\";i:8;s:3:\"274\";i:9;s:3:\"284\";}s:6:\"update\";a:0:{}s:8:\"addLinks\";a:0:{}s:7:\"removed\";a:0:{}s:9:\"noindexed\";a:0:{}s:8:\"improved\";a:0:{}s:7:\"skipped\";a:0:{}}s:8:\"priority\";i:30;}}s:29:\"should_redirect_after_install\";b:0;s:29:\"activation_redirect_timestamp\";i:1662433097;}','yes'),(234066,'yoast_premium_as_an_addon_installer','completed','yes'),(234085,'wpseo_redirect','a:2:{s:20:\"disable_php_redirect\";s:3:\"off\";s:13:\"separate_file\";s:3:\"off\";}','yes'),(234108,'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'),(234109,'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'),(234370,'wp_rocket_settings','a:78:{s:12:\"cache_mobile\";i:1;s:19:\"purge_cron_interval\";i:24;s:15:\"purge_cron_unit\";s:15:\"HOUR_IN_SECONDS\";s:10:\"minify_css\";i:1;s:22:\"minify_concatenate_css\";i:1;s:11:\"exclude_css\";a:0:{}s:21:\"optimize_css_delivery\";s:1:\"1\";s:26:\"remove_unused_css_safelist\";a:0:{}s:12:\"critical_css\";s:0:\"\";s:9:\"minify_js\";i:1;s:17:\"exclude_inline_js\";a:0:{}s:10:\"exclude_js\";a:0:{}s:16:\"exclude_defer_js\";a:0:{}s:19:\"delay_js_exclusions\";a:13:{i:0;s:46:\"/wp-includes/js/jquery/jquery.min.js?ver=3.6.0\";i:1;s:54:\"/wp-content/themes/translucent/js/jquery-1.11.0.min.js\";i:2;s:77:\"/wp-content/themes/translucent/js/plugins/owl-carousel/js/owl.carousel.min.js\";i:3;s:54:\"/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2\";i:4;s:93:\"/wp-content/themes/translucent/js/plugins/viewport-checker/dist/jquery.viewportchecker.min.js\";i:5;s:92:\"/wp-content/cache/min/1/wp-content/themes/translucent/js/plugins/fancybox/jquery.fancybox.js\";i:6;s:78:\"/wp-content/cache/min/1/wp-content/themes/translucent/js/plugins/typewriter.js\";i:7;s:69:\"/wp-content/cache/min/1/typewriter-effect/dist/core.js?ver=1629751074\";i:8;s:57:\"/wp-includes/js/dist/vendor/wp-polyfill.min.js?ver=3.15.0\";i:9;s:34:\"/wp-content/cache/min/1/6899710.js\";i:10;s:81:\"/wp-content/cache/min/1/wp-content/plugins/wp-google-maps/js/jquery.dataTables.js\";i:11;s:85:\"/wp-content/cache/min/1/wp-content/plugins/wp-google-maps/js/dataTables.responsive.js\";i:12;s:62:\"/wp-content/plugins/wp-google-maps/js/v8/wp-google-maps.min.js\";}s:8:\"lazyload\";i:1;s:16:\"lazyload_iframes\";i:1;s:16:\"lazyload_youtube\";i:1;s:16:\"exclude_lazyload\";a:0:{}s:16:\"image_dimensions\";i:1;s:15:\"sitemap_preload\";i:1;s:17:\"yoast_xml_sitemap\";i:1;s:8:\"sitemaps\";a:0:{}s:12:\"dns_prefetch\";a:0:{}s:13:\"preload_fonts\";a:0:{}s:16:\"cache_reject_uri\";a:0:{}s:20:\"cache_reject_cookies\";a:0:{}s:15:\"cache_reject_ua\";a:0:{}s:17:\"cache_purge_pages\";a:0:{}s:19:\"cache_query_strings\";a:0:{}s:18:\"database_revisions\";i:1;s:20:\"database_auto_drafts\";i:1;s:22:\"database_trashed_posts\";i:1;s:22:\"database_spam_comments\";i:1;s:23:\"database_all_transients\";i:1;s:27:\"automatic_cleanup_frequency\";s:0:\"\";s:3:\"cdn\";i:1;s:10:\"cdn_cnames\";a:0:{}s:8:\"cdn_zone\";a:0:{}s:16:\"cdn_reject_files\";a:0:{}s:17:\"control_heartbeat\";i:1;s:24:\"heartbeat_admin_behavior\";s:18:\"reduce_periodicity\";s:25:\"heartbeat_editor_behavior\";s:18:\"reduce_periodicity\";s:23:\"heartbeat_site_behavior\";s:18:\"reduce_periodicity\";s:13:\"do_cloudflare\";i:1;s:18:\"cloudflare_api_key\";s:37:\"a03bc65c99dc17648277f1bebe2efeecaa32a\";s:16:\"cloudflare_email\";s:29:\"info@translucentcomputing.com\";s:18:\"cloudflare_zone_id\";s:32:\"e6a6c2a10d64881d45a6f3f3ff66edde\";s:24:\"cloudflare_auto_settings\";i:1;s:18:\"sucury_waf_api_key\";s:0:\"\";s:12:\"consumer_key\";s:8:\"c3bd4f1c\";s:14:\"consumer_email\";s:31:\"robert@translucentcomputing.com\";s:10:\"secret_key\";s:8:\"8b221894\";s:7:\"license\";s:10:\"1623966674\";s:16:\"secret_cache_key\";s:22:\"60cbc3ce06c8b612936364\";s:14:\"minify_css_key\";s:22:\"62b109a1a1508581989333\";s:13:\"minify_js_key\";s:22:\"62b109a1a1513384902329\";s:7:\"version\";s:6:\"3.11.3\";s:23:\"cloudflare_old_settings\";s:0:\"\";s:25:\"sitemap_preload_url_crawl\";s:6:\"500000\";s:9:\"cache_ssl\";i:1;s:19:\"minify_google_fonts\";i:1;s:5:\"emoji\";i:1;s:17:\"remove_unused_css\";i:0;s:9:\"async_css\";i:1;s:16:\"async_css_mobile\";s:1:\"1\";s:17:\"cache_logged_user\";i:0;s:23:\"do_caching_mobile_files\";i:0;s:21:\"minify_concatenate_js\";i:0;s:12:\"defer_all_js\";i:0;s:25:\"database_trashed_comments\";i:0;s:24:\"database_optimize_tables\";i:0;s:26:\"schedule_automatic_cleanup\";i:0;s:14:\"manual_preload\";i:0;s:18:\"cloudflare_devmode\";i:0;s:27:\"cloudflare_protocol_rewrite\";i:0;s:21:\"sucury_waf_cache_sync\";i:0;s:18:\"varnish_auto_purge\";i:0;s:8:\"delay_js\";i:0;}','yes'),(234387,'rocket_analytics_notice_displayed','1','yes'),(234479,'popup-categories_children','a:0:{}','yes'),(234657,'webp-express-alter-html-hooks','ob','yes'),(234658,'webp-express-alter-html-replacement','picture','yes'),(234659,'webp-express-alter-html-add-picturefill-js','1','yes'),(234660,'webp-express-alter-html-options','{\"replacement\":\"picture\",\"hooks\":\"ob\",\"only-for-webp-enabled-browsers\":false,\"only-for-webps-that-exists\":false,\"alter-html-add-picturefill-js\":true,\"hostname-aliases\":[],\"destination-folder\":\"separate\",\"destination-extension\":\"append\",\"destination-structure\":\"image-roots\",\"scope\":[\"uploads\",\"themes\"],\"image-types\":3}','yes'),(235165,'mkaz-code-syntax-color-scheme','prism-onedark','yes'),(242529,'wpr_rucss_resources_version','20210429','yes'),(242530,'wpr_rucss_used_css_version','20220204','yes'),(242768,'fm_key','ke9JwV3mclEtHoNRTY0OAbxWZ','yes'),(242771,'filemanager_email_verified_4','yes','yes'),(242788,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(242789,'wp_force_deactivated_plugins','a:0:{}','yes'),(242823,'ridwpa_version','1.5.4','yes'),(243131,'superpwa_hide_newsletter','yes','yes'),(243165,'autoptimize_js_defer_inline','','yes'),(243166,'autoptimize_enable_meta_ao_settings','on','yes'),(243169,'wp_rocket_resources_scanner','a:7:{s:37:\"https://www.translucentcomputing.com/\";a:2:{s:4:\"type\";s:10:\"front_page\";s:3:\"url\";s:26:\"https://translucent.local/\";}s:42:\"https://www.translucentcomputing.com/blog/\";a:2:{s:4:\"type\";s:4:\"home\";s:3:\"url\";s:31:\"https://translucent.local/blog/\";}s:60:\"https://www.translucentcomputing.com/cloud-native-solutions/\";a:2:{s:4:\"type\";s:4:\"page\";s:3:\"url\";s:49:\"https://translucent.local/cloud-native-solutions/\";}s:56:\"https://www.translucentcomputing.com/popupbuilder/himss/\";a:2:{s:4:\"type\";s:12:\"popupbuilder\";s:3:\"url\";s:45:\"https://translucent.local/popupbuilder/himss/\";}s:74:\"https://www.translucentcomputing.com/2021/12/apache-airflow-data-pipeline/\";a:2:{s:4:\"type\";s:4:\"post\";s:3:\"url\";s:63:\"https://translucent.local/2021/12/apache-airflow-data-pipeline/\";}s:50:\"https://www.translucentcomputing.com/category/inc/\";a:2:{s:4:\"type\";s:8:\"category\";s:3:\"url\";s:39:\"https://translucent.local/category/inc/\";}s:46:\"https://www.translucentcomputing.com/tag/data/\";a:2:{s:4:\"type\";s:8:\"post_tag\";s:3:\"url\";s:35:\"https://translucent.local/tag/data/\";}}','yes'),(243170,'wp_rocket_resources_scanner_scanned','a:7:{i:0;s:26:\"https://translucent.local/\";i:1;s:31:\"https://translucent.local/blog/\";i:2;s:49:\"https://translucent.local/cloud-native-solutions/\";i:3;s:45:\"https://translucent.local/popupbuilder/himss/\";i:4;s:63:\"https://translucent.local/2021/12/apache-airflow-data-pipeline/\";i:5;s:39:\"https://translucent.local/category/inc/\";i:6;s:35:\"https://translucent.local/tag/data/\";}','yes'),(243171,'wp_rocket_resources_scanner_fetched','a:7:{s:37:\"https://www.translucentcomputing.com/\";a:2:{s:3:\"url\";s:26:\"https://translucent.local/\";s:8:\"is_error\";b:0;}s:42:\"https://www.translucentcomputing.com/blog/\";a:2:{s:3:\"url\";s:31:\"https://translucent.local/blog/\";s:8:\"is_error\";b:0;}s:60:\"https://www.translucentcomputing.com/cloud-native-solutions/\";a:2:{s:3:\"url\";s:49:\"https://translucent.local/cloud-native-solutions/\";s:8:\"is_error\";b:0;}s:56:\"https://www.translucentcomputing.com/popupbuilder/himss/\";a:2:{s:3:\"url\";s:45:\"https://translucent.local/popupbuilder/himss/\";s:8:\"is_error\";b:0;}s:74:\"https://www.translucentcomputing.com/2021/12/apache-airflow-data-pipeline/\";a:2:{s:3:\"url\";s:63:\"https://translucent.local/2021/12/apache-airflow-data-pipeline/\";s:8:\"is_error\";b:0;}s:50:\"https://www.translucentcomputing.com/category/inc/\";a:2:{s:3:\"url\";s:39:\"https://translucent.local/category/inc/\";s:8:\"is_error\";b:0;}s:46:\"https://www.translucentcomputing.com/tag/data/\";a:2:{s:3:\"url\";s:35:\"https://translucent.local/tag/data/\";s:8:\"is_error\";b:0;}}','yes'),(243172,'wp_rocket_prewarmup_stats','a:5:{s:15:\"scan_start_time\";i:1638550071;s:17:\"fetch_finish_time\";i:1642624618;s:23:\"resources_scanner_count\";i:7;s:18:\"allow_optimization\";b:1;s:25:\"warmup_status_finish_time\";i:1638550220;}','yes'),(245987,'wp-phpmyadmin-extension','a:31:{s:16:\"randomCookieName\";s:20:\"pma_wq2VsjxhgoMSBmJQ\";s:17:\"randomCookieValue\";s:20:\"pma_9Hw3XYAKjM7WLq8E\";s:18:\"RandomFolderSuffix\";s:24:\"_rctA6FVUqI5g3xiDPLzwZuk\";s:20:\"manual_pma_login_url\";s:0:\"\";s:10:\"require_ip\";b:1;s:16:\"hide_phma_errors\";b:0;s:13:\"strip_slashes\";b:1;s:9:\"use_https\";b:0;s:12:\"is_localhost\";b:0;s:15:\"has_pro_version\";i:0;s:9:\"show_opts\";b:1;s:19:\"show_rating_message\";b:1;s:19:\"show_donation_popup\";b:1;s:12:\"display_tabs\";a:0:{}s:13:\"required_role\";s:15:\"install_plugins\";s:15:\"default_managed\";s:7:\"network\";s:17:\"menu_button_level\";s:8:\"mainmenu\";s:9:\"menu_icon\";s:116:\"https://translucent.local/wp-content/plugins/wp-phpmyadmin-extension//assets/media/menu_icon.png\" style=\"width:30px;\";s:16:\"menu_button_name\";s:13:\"WP-phpMyAdmin\";s:16:\"custom_opts_page\";s:0:\"\";s:21:\"show_donation_message\";b:1;s:4:\"name\";s:13:\"WP phpMyAdmin\";s:5:\"title\";s:109:\"WP phpMyAdmin\";s:7:\"version\";s:7:\"5.2.0.7\";s:18:\"first_install_date\";i:1629753088;s:16:\"last_update_time\";i:1629753088;s:12:\"last_updates\";a:0:{}s:12:\"last_version\";s:7:\"5.2.0.7\";s:15:\"ssl_error_shown\";i:1;s:20:\"show_donation_footer\";b:1;s:10:\"menu_pages\";a:1:{s:5:\"first\";a:7:{s:5:\"title\";s:13:\"WP-phpMyAdmin\";s:15:\"default_managed\";s:7:\"network\";s:13:\"required_role\";s:15:\"install_plugins\";s:5:\"level\";s:8:\"mainmenu\";s:4:\"icon\";s:103:\"https://translucent.mesoishop.com/wp-content/plugins/wp-phpmyadmin-extension/assets/media/menu_icon.png\";s:10:\"page_title\";s:26:\"WP phpMyAdmin Options page\";s:4:\"tabs\";a:0:{}}}}','yes'),(245988,'wp-phpmyadmin-extension_transl_lastvers','5.2.0.7','no'),(247565,'emcs_stop_newsletter_notice','1','yes'),(252326,'duplicator_pro_reset_user_settings_required','0','yes'),(252330,'duplicator_pro_license_key','9ad097a973096050a91a81025a0b7d89','yes'),(252417,'duplicator_pro_package_active','{\"Created\":\"2022-06-15 15:17:35\",\"Version\":\"4.5.4\",\"VersionWP\":\"5.5.9\",\"VersionDB\":\"10.5.8\",\"VersionPHP\":\"7.4.12\",\"VersionOS\":\"Linux\",\"ID\":null,\"Name\":\"20220615_translucent\",\"Hash\":\"98398e6cd2c967732836_20220615151735\",\"NameHash\":\"20220615_translucent_98398e6cd2c967732836_20220615151735\",\"Type\":0,\"notes\":\"The default template.\",\"StorePath\":\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\\/tmp\",\"StoreURL\":\"https:\\/\\/translucent.local\\/wp-content\\/backups-dup-pro\\/\",\"ScanFile\":\"20220615_translucent_98398e6cd2c967732836_20220615151735_scan.json\",\"timer_start\":-1,\"Runtime\":null,\"ExeSize\":null,\"ZipSize\":0,\"Brand\":\"Default\",\"Brand_ID\":-2,\"ziparchive_mode\":null,\"Archive\":{\"ExportOnlyDB\":0,\"FilterDirs\":\"\",\"FilterExts\":\"\",\"FilterFiles\":\"\",\"FilterDirsAll\":[\"\\/bitnami\\/wordpress\\/wp-content\\/backups-dup-pro\",\"\\/bitnami\\/wordpress\\/wp-content\\/plugins\\/all-in-one-wp-migration\\/storage\",\"\\/bitnami\\/wordpress\\/wp-content\\/plugins\\/really-simple-captcha\\/tmp\",\"\\/bitnami\\/wordpress\\/wp-content\\/plugins\\/wordfence\\/tmp\",\"\\/var\\/www\\/dfr\\/translucent\\/.opcache\",\"\\/var\\/www\\/dfr\\/translucent\\/.tmb\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/ai1wm-backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/backups-dup-lite\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/backups-dup-pro\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/backupwordpress\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/bps-backup\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/cache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/content\\/cache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/contents\\/cache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/infinitewp\\/backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/managewp\\/backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/old-cache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/updraft\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/aiowps_backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/backup-guard\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/backupbuddy_backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/backupbuddy_temp\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/ithemes-security\\/backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/mainwp\\/backup\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/pb_backupbuddy\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/snapshots\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/sucuri\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/wp-clone\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/wp_all_backup\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/uploads\\/wpbackitup_backups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/wfcache\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/wishlist-backup\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-content\\/wpvividbackups\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-snapshots\"],\"FilterExtsAll\":[],\"FilterFilesAll\":[\".DS_Store\",\"\\/var\\/www\\/dfr\\/translucent\\/.htaccess\",\"\\/var\\/www\\/dfr\\/translucent\\/.user.ini\",\"\\/var\\/www\\/dfr\\/translucent\\/php.ini\",\"\\/var\\/www\\/dfr\\/translucent\\/web.config\",\"\\/var\\/www\\/dfr\\/translucent\\/wp-config.php\",\"dbcache\",\"debug_log\",\"error_log\",\"objectcache\",\"pgcache\",\"ws_ftp.log\"],\"FilterOn\":0,\"FilterNames\":false,\"File\":null,\"Format\":\"ZIP\",\"PackDir\":\"\",\"Size\":803264118,\"Dirs\":null,\"DirCount\":5289,\"RecursiveLinks\":[],\"Files\":null,\"FileCount\":42302,\"file_count\":-1,\"FilterInfo\":{\"Dirs\":{\"Warning\":[],\"AddonSites\":[],\"Size\":[],\"Core\":[],\"Global\":[],\"Instance\":[],\"Unreadable\":[]},\"Files\":{\"Warning\":[],\"Size\":[],\"Core\":[],\"Global\":[],\"Instance\":[],\"Unreadable\":[]},\"Exts\":{\"Core\":[],\"Global\":[],\"Instance\":[],\"Unreadable\":[]},\"TreeSize\":null,\"TreeWarning\":null},\"ListDelimiter\":\"\\n\",\"throttleDelayInUs\":0},\"Multisite\":{\"FilterSites\":\"\"},\"Installer\":{\"File\":\"\",\"Size\":0,\"OptsSecureOn\":0,\"passowrd\":\"2FnNWzIubEq69cXSYaTRQHTKxM+JN8\\/0YfvKaEn8SWnpwjjdF\\/Jp8R+U0+zrfDX3fhqAkGE4EQ59juFL\\/xwb1g==\",\"OptsSecurePass\":\"\",\"OptsSkipScan\":0,\"OptsDBHost\":\"\",\"OptsDBName\":\"\",\"OptsDBUser\":\"\",\"OptsCPNLHost\":\"\",\"OptsCPNLUser\":\"\",\"OptsCPNLPass\":\"\",\"OptsCPNLEnable\":0,\"OptsCPNLConnect\":false,\"OptsCPNLDBAction\":\"create\",\"OptsCPNLDBHost\":\"\",\"OptsCPNLDBName\":\"\",\"OptsCPNLDBUser\":\"\",\"numFilesAdded\":0,\"numDirsAdded\":0},\"Database\":{\"info\":{\"buildMode\":\"PHPCHUNKING\",\"charSetList\":[\"utf8mb4\",\"utf8\"],\"collationList\":[\"utf8_general_ci\",\"utf8mb4_unicode_520_ci\",\"utf8mb4_unicode_ci\"],\"engineList\":[\"InnoDB\",\"MyISAM\"],\"isTablesUpperCase\":0,\"isNameUpperCase\":0,\"name\":\"bitnami_wordpress\",\"tablesBaseCount\":79,\"tablesFinalCount\":79,\"muFilteredTableCount\":0,\"tablesRowCount\":42384,\"tablesSizeOnDisk\":44967372,\"tablesList\":{\"wp_actionscheduler_actions\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":147456},\"wp_actionscheduler_claims\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":32768},\"wp_actionscheduler_groups\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":32768},\"wp_actionscheduler_logs\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":49152},\"wp_aioseo_notifications\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":81920},\"wp_aioseo_posts\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":32768},\"wp_commentmeta\":{\"inaccurateRows\":9,\"insertedRows\":false,\"size\":49152},\"wp_comments\":{\"inaccurateRows\":92,\"insertedRows\":false,\"size\":163840},\"wp_duplicator_pro_entities\":{\"inaccurateRows\":5,\"insertedRows\":false,\"size\":32768},\"wp_duplicator_pro_packages\":{\"inaccurateRows\":5,\"insertedRows\":false,\"size\":278528},\"wp_imagify_files\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":98304},\"wp_imagify_folders\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":49152},\"wp_links\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":32768},\"wp_litespeed_img_optm\":{\"inaccurateRows\":5,\"insertedRows\":false,\"size\":114688},\"wp_litespeed_optimizer\":{\"inaccurateRows\":39,\"insertedRows\":false,\"size\":114688},\"wp_mail_bank\":{\"inaccurateRows\":6,\"insertedRows\":false,\"size\":2196},\"wp_mail_bank_logs\":{\"inaccurateRows\":3,\"insertedRows\":false,\"size\":3340},\"wp_mail_bank_meta\":{\"inaccurateRows\":4,\"insertedRows\":false,\"size\":4140},\"wp_options\":{\"inaccurateRows\":876,\"insertedRows\":false,\"size\":4767744},\"wp_postmeta\":{\"inaccurateRows\":30946,\"insertedRows\":false,\"size\":9879552},\"wp_posts\":{\"inaccurateRows\":1652,\"insertedRows\":false,\"size\":10141696},\"wp_redirection_404\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":65536},\"wp_redirection_groups\":{\"inaccurateRows\":2,\"insertedRows\":false,\"size\":49152},\"wp_redirection_items\":{\"inaccurateRows\":4,\"insertedRows\":false,\"size\":114688},\"wp_redirection_logs\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":98304},\"wp_revslider_css\":{\"inaccurateRows\":109,\"insertedRows\":false,\"size\":147456},\"wp_revslider_css_bkp\":{\"inaccurateRows\":47,\"insertedRows\":false,\"size\":32768},\"wp_revslider_layer_animations\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":16384},\"wp_revslider_layer_animations_bkp\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":16384},\"wp_revslider_navigations\":{\"inaccurateRows\":2,\"insertedRows\":false,\"size\":16384},\"wp_revslider_navigations_bkp\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":16384},\"wp_revslider_sliders\":{\"inaccurateRows\":3,\"insertedRows\":false,\"size\":81920},\"wp_revslider_sliders_bkp\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":32768},\"wp_revslider_slides\":{\"inaccurateRows\":18,\"insertedRows\":false,\"size\":1605632},\"wp_revslider_slides_bkp\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":32768},\"wp_revslider_static_slides\":{\"inaccurateRows\":3,\"insertedRows\":false,\"size\":32768},\"wp_revslider_static_slides_bkp\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":32768},\"wp_sgpb_subscribers\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":16384},\"wp_sgpb_subscription_error_log\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":16384},\"wp_smush_dir_images\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":49152},\"wp_snippets\":{\"inaccurateRows\":4,\"insertedRows\":false,\"size\":16384},\"wp_tcm_email_hash\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":16384},\"wp_tcm_logs\":{\"inaccurateRows\":2,\"insertedRows\":false,\"size\":32768},\"wp_td_fields\":{\"inaccurateRows\":14,\"insertedRows\":false,\"size\":16384},\"wp_td_groups\":{\"inaccurateRows\":3,\"insertedRows\":false,\"size\":16384},\"wp_termmeta\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":49152},\"wp_terms\":{\"inaccurateRows\":135,\"insertedRows\":false,\"size\":49152},\"wp_term_relationships\":{\"inaccurateRows\":364,\"insertedRows\":false,\"size\":32768},\"wp_term_taxonomy\":{\"inaccurateRows\":142,\"insertedRows\":false,\"size\":49152},\"wp_usermeta\":{\"inaccurateRows\":435,\"insertedRows\":false,\"size\":163840},\"wp_users\":{\"inaccurateRows\":11,\"insertedRows\":false,\"size\":65536},\"wp_vxcf_hubspot\":{\"inaccurateRows\":6,\"insertedRows\":false,\"size\":32768},\"wp_vxcf_hubspot_accounts\":{\"inaccurateRows\":2,\"insertedRows\":false,\"size\":16384},\"wp_vxcf_hubspot_log\":{\"inaccurateRows\":3176,\"insertedRows\":false,\"size\":4816896},\"wp_wc_comments_subscription\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":81920},\"wp_wc_feedback_forms\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":49152},\"wp_wc_follow_users\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":147456},\"wp_wc_phrases\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":32768},\"wp_wc_users_rated\":{\"inaccurateRows\":6,\"insertedRows\":false,\"size\":49152},\"wp_wc_users_voted\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":98304},\"wp_wpfm_backup\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":16384},\"wp_wpgmza\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":16384},\"wp_wpgmza_categories\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":16384},\"wp_wpgmza_category_maps\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":16384},\"wp_wpgmza_circles\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":16384},\"wp_wpgmza_maps\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":16384},\"wp_wpgmza_polygon\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":16384},\"wp_wpgmza_polylines\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":16384},\"wp_wpgmza_rectangles\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":16384},\"wp_wpr_rucss_resources\":{\"inaccurateRows\":119,\"insertedRows\":false,\"size\":7798784},\"wp_wpr_rucss_used_css\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":81920},\"wp_wp_phpmyadmin_extension__errors_log\":{\"inaccurateRows\":0,\"insertedRows\":false,\"size\":32768},\"wp_yoast_indexable\":{\"inaccurateRows\":1354,\"insertedRows\":false,\"size\":1916928},\"wp_yoast_indexable_hierarchy\":{\"inaccurateRows\":929,\"insertedRows\":false,\"size\":163840},\"wp_yoast_migrations\":{\"inaccurateRows\":22,\"insertedRows\":false,\"size\":32768},\"wp_yoast_primary_term\":{\"inaccurateRows\":54,\"insertedRows\":false,\"size\":49152},\"wp_yoast_prominent_words\":{\"inaccurateRows\":912,\"insertedRows\":false,\"size\":180224},\"wp_yoast_seo_links\":{\"inaccurateRows\":285,\"insertedRows\":false,\"size\":98304},\"wp_yoast_seo_meta\":{\"inaccurateRows\":579,\"insertedRows\":false,\"size\":49152}},\"varLowerCaseTables\":\"0\",\"dbEngine\":\"MariaDB\",\"version\":\"10.5.8\",\"versionComment\":\"Source distribution\",\"viewCount\":0,\"procCount\":0,\"funcCount\":0,\"triggerList\":[]},\"Type\":\"MySQL\",\"Size\":0,\"File\":\"\",\"FilterTables\":\"\",\"FilterOn\":0,\"prefixFilter\":false,\"prefixSubFilter\":false,\"DBMode\":\"PHP\",\"Compatible\":\"\",\"Comments\":\"Source distribution\",\"dbStorePathPublic\":\"\"},\"Status\":5,\"schedule_id\":-1,\"build_progress\":{\"thread_start_time\":0,\"initialized\":false,\"installer_built\":false,\"archive_started\":false,\"archive_start_time\":0,\"archive_has_database\":false,\"archive_built\":false,\"database_script_built\":false,\"failed\":false,\"next_archive_file_index\":0,\"next_archive_dir_index\":0,\"retries\":0,\"current_build_mode\":-1,\"current_build_compression\":true,\"dupCreate\":null,\"dupExpand\":null,\"warnings\":[]},\"db_build_progress\":{\"tablesToProcess\":[],\"validationStage1\":false,\"doneInit\":false,\"doneFiltering\":false,\"doneCreates\":false,\"completed\":false,\"startTime\":0,\"wasInterrupted\":false,\"errorOut\":false,\"failureCount\":0,\"countCheckData\":{\"impreciseTotalRows\":0,\"countTotal\":0,\"tables\":[]}},\"upload_infos\":[{\"storage_id\":\"-2\",\"archive_offset\":0,\"copied_installer\":false,\"copied_archive\":false,\"progress\":0,\"num_failures\":0,\"failed\":false,\"cancelled\":false,\"upload_id\":null,\"failure_count\":0,\"data\":\"\",\"data2\":\"\",\"has_started\":false,\"status_message_details\":\"\",\"started_timestamp\":null,\"stopped_timestamp\":null}],\"active_storage_id\":-1,\"template_id\":4}','yes'),(252424,'72b3c6f5b653e2cb28ac3cc78c634bdd','a:2:{s:7:\"timeout\";i:1654445733;s:5:\"value\";s:1884:\"{\"new_version\":\"4.5.3.1\",\"stable_version\":\"4.5.3.1\",\"name\":\"Duplicator Pro\",\"slug\":\"duplicator-pro\",\"url\":\"https:\\/\\/snapcreek.com\\/downloads\\/duplicator-pro\\/?changelog=1\",\"last_updated\":\"2022-05-30 02:04:22\",\"homepage\":\"https:\\/\\/snapcreek.com\\/duplicator\",\"package\":\"https:\\/\\/snapcreek.com\\/edd-sl\\/package_download\\/MTY1NTQ3MTczMjo5YWQwOTdhOTczMDk2MDUwYTkxYTgxMDI1YTBiN2Q4OTozMToxNzdjM2E1NDcwZWQ4ZmRhODlhNGFjODJiYjRmNjBlMjpodHRwc0AvL3d3dy50cmFuc2x1Y2VudGNvbXB1dGluZy5jb206MA==\",\"download_link\":\"https:\\/\\/snapcreek.com\\/edd-sl\\/package_download\\/MTY1NTQ3MTczMjo5YWQwOTdhOTczMDk2MDUwYTkxYTgxMDI1YTBiN2Q4OTozMToxNzdjM2E1NDcwZWQ4ZmRhODlhNGFjODJiYjRmNjBlMjpodHRwc0AvL3d3dy50cmFuc2x1Y2VudGNvbXB1dGluZy5jb206MA==\",\"sections\":{\"faq\":\"

See Technical FAQ<\\/a><\\/p>\",\"changelog\":\"

See Changelog<\\/a><\\/p>\",\"description\":\"

WordPress migration and backups are much easier with Duplicator Pro! Clone, backup, or transfer an entire site from one location to another.<\\/p>\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":\"a:0:{}\",\"tags\":[\"migration\",\"backup\",\"duplicate\",\"move\",\"migrate\"],\"requires\":\"4.0\",\"tested\":\"6.0\",\"requires_php\":\"5.6.20\",\"short_description\":\"WordPress migration and backups are much easier with Duplicator Pro! Clone, backup, or transfer an entire site from one location to another.\",\"upgrade_notice\":\"

No notes.<\\/p>\",\"screenshots\":[],\"faq\":[\"

See Technical FAQ<\\/a><\\/p>\"],\"warnings\":[],\"changelog\":[\"

See Changelog<\\/a><\\/p>\"],\"description\":[\"

WordPress migration and backups are much easier with Duplicator Pro! Clone, backup, or transfer an entire site from one location to another.<\\/p>\"]}\";}','yes'),(252435,'mk_fm_close_fm_help_c_fm','done','yes'),(252448,'duplicator_pro_recover_point','1','yes'),(264608,'filemanager_email_address_18','gabrielmont.ire@gmail.com','yes'),(264609,'verify_filemanager_fname_18','Gabriel','yes'),(264610,'verify_filemanager_lname_18','Montenegro','yes'),(264611,'filemanager_email_verified_18','yes','yes'),(267868,'youtubeprefs_alloptions_backup_13_4_3','a:87:{s:7:\"version\";s:6:\"13.4.3\";s:9:\"centervid\";i:0;s:6:\"glance\";i:0;s:8:\"autoplay\";i:0;s:14:\"cc_load_policy\";i:0;s:12:\"cc_lang_pref\";s:0:\"\";s:14:\"iv_load_policy\";i:1;s:4:\"loop\";i:0;s:14:\"modestbranding\";i:0;s:3:\"rel\";s:1:\"1\";s:2:\"fs\";i:1;s:11:\"playsinline\";i:0;s:6:\"origin\";i:0;s:8:\"autohide\";i:2;s:2:\"hl\";s:0:\"\";s:4:\"dohl\";i:0;s:5:\"theme\";s:4:\"dark\";s:5:\"color\";s:3:\"red\";s:3:\"pro\";s:0:\"\";s:8:\"nocookie\";i:0;s:9:\"gb_compat\";i:1;s:12:\"gdpr_consent\";i:0;s:20:\"gdpr_consent_message\";s:360:\"Please accept YouTube cookies to play this video. By accepting you will be accessing content from YouTube, a service provided by an external third party.\r\n\r\nYouTube privacy policy\r\n\r\nIf you accept this notice, your choice will be saved and the page will refresh.\";s:19:\"gdpr_consent_button\";s:22:\"Accept YouTube Content\";s:13:\"playlistorder\";i:0;s:8:\"acctitle\";i:0;s:7:\"migrate\";i:0;s:15:\"migrate_youtube\";i:0;s:22:\"migrate_embedplusvideo\";i:0;s:8:\"controls\";i:1;s:10:\"oldspacing\";i:0;s:13:\"frontend_only\";i:1;s:10:\"responsive\";i:1;s:14:\"responsive_all\";i:1;s:9:\"widgetfit\";i:1;s:16:\"evselector_light\";i:0;s:18:\"stop_mobile_buffer\";i:1;s:15:\"restrict_wizard\";i:0;s:21:\"restrict_wizard_roles\";a:5:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";}s:11:\"ajax_compat\";i:0;s:10:\"ytapi_load\";s:5:\"light\";s:11:\"defaultdims\";i:0;s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:12:\"pause_others\";i:0;s:10:\"defaultvol\";i:0;s:3:\"vol\";s:0:\"\";s:6:\"apikey\";s:0:\"\";s:15:\"gallery_columns\";i:3;s:21:\"gallery_collapse_grid\";i:0;s:28:\"gallery_collapse_grid_breaks\";a:1:{i:0;a:2:{s:2:\"bp\";a:2:{s:3:\"min\";i:0;s:3:\"max\";i:767;}s:4:\"cols\";i:1;}}s:20:\"gallery_scrolloffset\";i:20;s:19:\"gallery_hideprivate\";i:1;s:17:\"gallery_showtitle\";i:1;s:18:\"gallery_showpaging\";i:1;s:16:\"gallery_autonext\";i:0;s:17:\"gallery_thumbplay\";i:1;s:18:\"gallery_channelsub\";i:0;s:22:\"gallery_channelsublink\";s:0:\"\";s:22:\"gallery_channelsubtext\";s:23:\"Subscribe to my channel\";s:20:\"gallery_customarrows\";i:0;s:18:\"gallery_customnext\";s:4:\"Next\";s:18:\"gallery_customprev\";s:4:\"Prev\";s:16:\"gallery_pagesize\";i:15;s:16:\"not_live_content\";s:0:\"\";s:11:\"not_live_on\";i:0;s:9:\"debugmode\";i:0;s:17:\"admin_off_scripts\";i:0;s:8:\"defer_js\";i:0;s:12:\"defer_jquery\";i:0;s:9:\"ajax_save\";i:1;s:12:\"show_pointer\";i:1;s:9:\"onboarded\";i:0;s:17:\"old_script_method\";i:0;s:9:\"vi_active\";i:0;s:20:\"vi_hide_monetize_tab\";i:0;s:12:\"vi_endpoints\";s:0:\"\";s:8:\"vi_token\";s:0:\"\";s:13:\"vi_last_login\";s:19:\"2000-01-01 00:00:00\";s:23:\"vi_last_category_update\";s:19:\"2000-01-01 00:00:00\";s:9:\"vi_adstxt\";s:0:\"\";s:14:\"vi_js_settings\";a:15:{s:5:\"divId\";s:20:\"ytvi_story_container\";s:8:\"language\";s:5:\"en-us\";s:11:\"iabCategory\";s:0:\"\";s:4:\"font\";s:5:\"Arial\";s:8:\"fontSize\";i:12;s:8:\"keywords\";s:0:\"\";s:9:\"textColor\";s:7:\"#000000\";s:15:\"backgroundColor\";s:7:\"#ffffff\";s:11:\"vioptional1\";s:0:\"\";s:11:\"vioptional2\";s:0:\"\";s:11:\"vioptional3\";s:0:\"\";s:5:\"float\";b:1;s:10:\"dfpSupport\";b:1;s:13:\"sponsoredText\";s:0:\"\";s:13:\"poweredByText\";s:0:\"\";}s:12:\"vi_js_script\";s:0:\"\";s:15:\"vi_js_posttypes\";a:0:{}s:14:\"vi_js_position\";s:3:\"top\";s:26:\"vi_show_gdpr_authorization\";i:1;s:22:\"vi_show_privacy_button\";i:0;}','no'),(291112,'filemanager_email_verified_19','yes','yes'),(302672,'category_children','a:0:{}','yes'),(377987,'revslider-valid','true','yes'),(377988,'revslider-code','GPL Times','yes'),(377989,'revslider-temp-active-notice','false','yes'),(377990,'revslider_servers','a:7:{i:0;s:16:\"themepunch.tools\";i:1;s:22:\"themepunch-ext-c.tools\";i:2;s:22:\"themepunch-ext-c.tools\";i:3;s:22:\"themepunch-ext-a.tools\";i:4;s:22:\"themepunch-ext-a.tools\";i:5;s:22:\"themepunch-ext-a.tools\";i:6;s:22:\"themepunch-ext-b.tools\";}','yes'),(377991,'revslider_server_refresh','1663096037','yes'),(377992,'revslider-update-check-short','1663300551','yes'),(377993,'revslider-connection','1','yes'),(377994,'revslider-update-hash','f093aa0f250e0926070dfc3924c51efa','yes'),(377995,'revslider-latest-version','6.5.31','yes'),(377996,'revslider-stable-version','4.2.0','yes'),(377997,'revslider-notices','a:3:{i:0;O:8:\"stdClass\":9:{s:7:\"version\";s:5:\"1.0.0\";s:4:\"text\";s:546:\"

\";s:4:\"code\";s:12:\"TPRSV6511-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}i:1;O:8:\"stdClass\":9:{s:7:\"version\";s:5:\"9.9.9\";s:4:\"text\";s:531:\"
\";s:4:\"code\";s:12:\"TPRSV6518-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}i:2;O:8:\"stdClass\":10:{s:7:\"version\";s:5:\"0.9.9\";s:4:\"text\";s:396:\"
\";s:4:\"code\";s:12:\"TPRSV6518-02\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"registered\";b:1;s:4:\"type\";s:1:\"3\";s:10:\"show_until\";s:19:\"0000-00-00 00:00:00\";s:10:\"additional\";a:0:{}}}','yes'),(377998,'revslider-additions','O:8:\"stdClass\":1:{s:7:\"selling\";b:1;}','yes'),(377999,'rs-addons-counter','1','yes'),(378000,'revslider-addons','O:8:\"stdClass\":33:{s:28:\"revslider-particlewave-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"380\";s:9:\"releaseid\";s:2:\"29\";s:4:\"slug\";s:28:\"revslider-particlewave-addon\";s:12:\"version_from\";s:6:\"6.5.15\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Particle Wave\";s:6:\"line_1\";s:36:\"Create 3D particle and polygon grids\";s:6:\"line_2\";s:40:\"with lots of style and animation options\";s:9:\"available\";s:5:\"1.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:1:\"9\";s:11:\"last_update\";s:10:\"2022-08-19\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch.tools/revslider/addons/images/addon_particlewave.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PW\";}}s:25:\"revslider-particles-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"424\";s:9:\"releaseid\";s:1:\"7\";s:4:\"slug\";s:25:\"revslider-particles-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Particle Effects\";s:6:\"line_1\";s:17:\"Let\'s Parti(cle)!\";s:6:\"line_2\";s:51:\"Add interactive particle animations to your sliders\";s:9:\"available\";s:5:\"3.3.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:2:\"10\";s:11:\"last_update\";s:10:\"2022-03-30\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch.tools/revslider/addons/images/addon_particles.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PT\";}}s:27:\"revslider-bubblemorph-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"405\";s:9:\"releaseid\";s:2:\"20\";s:4:\"slug\";s:27:\"revslider-bubblemorph-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:11:\"BubbleMorph\";s:6:\"line_1\";s:26:\"Include BubbleMorph Layers\";s:6:\"line_2\";s:33:\"for a decorative lava lamp effect\";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"20\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:72:\"//updates.themepunch.tools/revslider/addons/images/addon_bubblemorph.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BM\";}}s:30:\"revslider-transitionpack-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"369\";s:9:\"releaseid\";s:2:\"28\";s:4:\"slug\";s:30:\"revslider-transitionpack-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Advanced Transitions\";s:6:\"line_1\";s:43:\"Add never-before-seen slide transitions to \";s:6:\"line_2\";s:42:\"Slider Revolution with the power of WEBGL.\";s:9:\"available\";s:5:\"1.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"30\";s:11:\"last_update\";s:10:\"2022-07-14\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:71:\"//updates.themepunch.tools/revslider/addons/images/addon_transition.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"AT\";}}s:27:\"revslider-beforeafter-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"404\";s:9:\"releaseid\";s:2:\"15\";s:4:\"slug\";s:27:\"revslider-beforeafter-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Before & After\";s:6:\"line_1\";s:35:\"Compare two slides before and after\";s:6:\"line_2\";s:33:\"use it vertically or horizontally\";s:9:\"available\";s:5:\"3.0.7\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:2:\"40\";s:11:\"last_update\";s:10:\"2022-05-25\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:72:\"//updates.themepunch.tools/revslider/addons/images/addon_beforeafter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BA\";}}s:26:\"revslider-typewriter-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"418\";s:9:\"releaseid\";s:1:\"3\";s:4:\"slug\";s:26:\"revslider-typewriter-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"Typewriter Effect\";s:6:\"line_1\";s:27:\"Enhance your slider\'s text \";s:6:\"line_2\";s:24:\"with typewriter effects \";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:2:\"50\";s:11:\"last_update\";s:10:\"2021-12-15\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:71:\"//updates.themepunch.tools/revslider/addons/images/addon_typewriter.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"TW\";}}s:25:\"revslider-mousetrap-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"410\";s:9:\"releaseid\";s:2:\"24\";s:4:\"slug\";s:25:\"revslider-mousetrap-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Mousetrap\";s:6:\"line_1\";s:31:\"Create all kinds of interesting\";s:6:\"line_2\";s:19:\" mouse interactions\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"60\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch.tools/revslider/addons/images/addon_mousetrap.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:28:\"revslider-liquideffect-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"409\";s:9:\"releaseid\";s:2:\"21\";s:4:\"slug\";s:28:\"revslider-liquideffect-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Distortion\";s:6:\"line_1\";s:22:\"Add Distortion Effects\";s:6:\"line_2\";s:30:\"to your slides and transitions\";s:9:\"available\";s:5:\"3.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"70\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:71:\"//updates.themepunch.tools/revslider/addons/images/addon_distortion.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LE\";}}s:22:\"revslider-lottie-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"420\";s:9:\"releaseid\";s:2:\"25\";s:4:\"slug\";s:22:\"revslider-lottie-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Lottie\";s:6:\"line_1\";s:53:\"Adds support for the popular Lottie Animation format,\";s:6:\"line_2\";s:70:\" including animation control, style customization and a local library.\";s:9:\"available\";s:5:\"3.0.8\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"80\";s:11:\"last_update\";s:10:\"2022-04-12\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:67:\"//updates.themepunch.tools/revslider/addons/images/addon_lottie.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LT\";}}s:26:\"revslider-paintbrush-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"411\";s:9:\"releaseid\";s:2:\"23\";s:4:\"slug\";s:26:\"revslider-paintbrush-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Paintbrush\";s:6:\"line_1\";s:14:\"Paint or Erase\";s:6:\"line_2\";s:22:\"your background images\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:2:\"90\";s:11:\"last_update\";s:10:\"2021-08-09\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:71:\"//updates.themepunch.tools/revslider/addons/images/addon_paintbrush.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PB\";}}s:22:\"revslider-charts-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"483\";s:9:\"releaseid\";s:2:\"27\";s:4:\"slug\";s:22:\"revslider-charts-addon\";s:12:\"version_from\";s:6:\"6.5.17\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Charts\";s:6:\"line_1\";s:93:\"The Charts addon allows you to create visually impressive line or bar graphs from .csv data, \";s:6:\"line_2\";s:56:\"with tons of options to take full control of the design.\";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:67:\"//updates.themepunch.tools/revslider/addons/images/addon_charts.png\";s:6:\"button\";s:0:\"\";s:4:\"sort\";s:3:\"100\";s:11:\"last_update\";s:10:\"2022-08-04\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:67:\"//updates.themepunch.tools/revslider/addons/images/addon_charts.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"CH\";}}s:22:\"revslider-slicey-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"417\";s:9:\"releaseid\";s:2:\"13\";s:4:\"slug\";s:22:\"revslider-slicey-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Slicey\";s:6:\"line_1\";s:20:\"Slice \'em up nicely!\";s:6:\"line_2\";s:38:\"Create image slices of your background\";s:9:\"available\";s:5:\"3.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"110\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:67:\"//updates.themepunch.tools/revslider/addons/images/addon_slicey.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SL\";}}s:25:\"revslider-filmstrip-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"422\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:25:\"revslider-filmstrip-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Filmstrip\";s:6:\"line_1\";s:44:\"Display a continously rotating set of images\";s:6:\"line_2\";s:26:\"for your slide backgrounds\";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"125\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch.tools/revslider/addons/images/addon_filmstrip.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FS\";}}s:27:\"revslider-maintenance-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"421\";s:9:\"releaseid\";s:1:\"4\";s:4:\"slug\";s:27:\"revslider-maintenance-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:15:\"Coming & Maint.\";s:6:\"line_1\";s:37:\"Simple Coming Soon & Maintenance Page\";s:6:\"line_2\";s:42:\"Let your visitors know what\'s up and when!\";s:9:\"available\";s:5:\"3.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"127\";s:11:\"last_update\";s:10:\"2021-07-17\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:78:\"//updates.themepunch.tools/revslider/addons/images/addon_underconstruction.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"MT\";}}s:24:\"revslider-revealer-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"416\";s:9:\"releaseid\";s:2:\"19\";s:4:\"slug\";s:24:\"revslider-revealer-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Reveal\";s:6:\"line_1\";s:9:\"Reveal...\";s:6:\"line_2\";s:37:\"...your inner beast... and RevSliders\";s:9:\"available\";s:5:\"3.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"130\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:67:\"//updates.themepunch.tools/revslider/addons/images/addon_reveal.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RV\";}}s:24:\"revslider-panorama-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"423\";s:9:\"releaseid\";s:2:\"17\";s:4:\"slug\";s:24:\"revslider-panorama-addon\";s:12:\"version_from\";s:5:\"6.5.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"Panorama\";s:6:\"line_1\";s:14:\"Panorama AddOn\";s:6:\"line_2\";s:28:\"Display images in 360 degree\";s:9:\"available\";s:5:\"3.0.8\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"135\";s:11:\"last_update\";s:10:\"2022-03-30\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:69:\"//updates.themepunch.tools/revslider/addons/images/addon_panorama.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:27:\"revslider-scrollvideo-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"396\";s:9:\"releaseid\";s:2:\"26\";s:4:\"slug\";s:27:\"revslider-scrollvideo-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Scroll Video\";s:6:\"line_1\";s:114:\"This addon allows you to generate a sequence of images from any html5 video and play them with scroll interaction.\";s:6:\"line_2\";s:49:\"Quality options are included for optimal results!\";s:9:\"available\";s:5:\"3.0.2\";s:10:\"background\";s:72:\"//updates.themepunch.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"140\";s:11:\"last_update\";s:10:\"2021-12-23\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:72:\"//updates.themepunch.tools/revslider/addons/images/addon_scrollvideo.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SV\";}}s:31:\"revslider-explodinglayers-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"407\";s:9:\"releaseid\";s:2:\"22\";s:4:\"slug\";s:31:\"revslider-explodinglayers-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Exploding Layers\";s:6:\"line_1\";s:23:\"Add explosive particles\";s:6:\"line_2\";s:24:\"to your layers animation\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"150\";s:11:\"last_update\";s:10:\"2021-10-11\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch.tools/revslider/addons/images/addon_exploding.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"EL\";}}s:23:\"revslider-sharing-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"397\";s:9:\"releaseid\";s:1:\"5\";s:4:\"slug\";s:23:\"revslider-sharing-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Social Sharing\";s:6:\"line_1\";s:17:\"Share your slides\";s:6:\"line_2\";s:50:\"with RevSlider \"actions\" because sharing is caring\";s:9:\"available\";s:5:\"3.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"165\";s:11:\"last_update\";s:10:\"2021-07-08\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:74:\"//updates.themepunch.tools/revslider/addons/images/addon_socialsharing.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SH\";}}s:26:\"revslider-whiteboard-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"419\";s:9:\"releaseid\";s:1:\"1\";s:4:\"slug\";s:26:\"revslider-whiteboard-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Whiteboard\";s:6:\"line_1\";s:31:\"Create Hand-Drawn Presentations\";s:6:\"line_2\";s:45:\"that are understandable, memorable & engaging\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:75:\"//updates.themepunch.tools/revslider/addons/images/whiteboard_widget_bg.jpg\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"170\";s:11:\"last_update\";s:10:\"2022-05-11\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:71:\"//updates.themepunch.tools/revslider/addons/images/addon_whiteboard.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WB\";}}s:24:\"revslider-polyfold-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"414\";s:9:\"releaseid\";s:2:\"14\";s:4:\"slug\";s:24:\"revslider-polyfold-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:22:\"Polyfold Scroll Effect\";s:6:\"line_1\";s:32:\"Add sharp edges to your sliders \";s:6:\"line_2\";s:35:\"as they scroll into and out of view\";s:9:\"available\";s:5:\"3.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"180\";s:11:\"last_update\";s:10:\"2021-11-03\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:69:\"//updates.themepunch.tools/revslider/addons/images/addon_polyfold.jpg\";s:5:\"color\";s:7:\"#3e186f\";s:4:\"text\";s:2:\"PF\";}}s:29:\"revslider-domain-switch-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"78\";s:9:\"releaseid\";s:2:\"11\";s:4:\"slug\";s:29:\"revslider-domain-switch-addon\";s:12:\"version_from\";s:5:\"6.0.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Domain Switch\";s:6:\"line_1\";s:17:\"Switch Image URLs\";s:6:\"line_2\";s:37:\"in sliders from one domain to another\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"300\";s:11:\"last_update\";s:10:\"2020-02-19\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:73:\"//updates.themepunch.tools/revslider/addons/images/addon_domainswitch.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"DS\";}}s:23:\"revslider-refresh-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"415\";s:9:\"releaseid\";s:2:\"10\";s:4:\"slug\";s:23:\"revslider-refresh-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"(Re)Load\";s:6:\"line_1\";s:39:\"Reload the current page or a custom URL\";s:6:\"line_2\";s:34:\"after a certain time, loops, slide\";s:9:\"available\";s:5:\"3.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"330\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:67:\"//updates.themepunch.tools/revslider/addons/images/addon_reload.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RF\";}}s:25:\"revslider-rel-posts-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"55\";s:9:\"releaseid\";s:1:\"9\";s:4:\"slug\";s:25:\"revslider-rel-posts-addon\";s:12:\"version_from\";s:7:\"5.2.4.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Related Posts\";s:6:\"line_1\";s:25:\"Add related Posts Sliders\";s:6:\"line_2\";s:31:\"at the end of your post content\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"340\";s:11:\"last_update\";s:10:\"2021-06-12\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch.tools/revslider/addons/images/addon_wprelated.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"RP\";}}s:20:\"revslider-snow-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"399\";s:9:\"releaseid\";s:1:\"6\";s:4:\"slug\";s:20:\"revslider-snow-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Holiday Snow\";s:6:\"line_1\";s:12:\"Let it snow!\";s:6:\"line_2\";s:32:\"Add animated snow to any Slider \";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"380\";s:11:\"last_update\";s:10:\"2022-05-25\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:65:\"//updates.themepunch.tools/revslider/addons/images/addon_snow.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"SN\";}}s:23:\"revslider-gallery-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"378\";s:9:\"releaseid\";s:1:\"2\";s:4:\"slug\";s:23:\"revslider-gallery-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"WordPress Gallery\";s:6:\"line_1\";s:31:\"Replace the standard WP Gallery\";s:6:\"line_2\";s:31:\"with the Sliders of your choice\";s:9:\"available\";s:5:\"2.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"430\";s:11:\"last_update\";s:10:\"2022-01-31\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:70:\"//updates.themepunch.tools/revslider/addons/images/addon_wpgallery.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"GA\";}}s:22:\"revslider-backup-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"53\";s:9:\"releaseid\";s:1:\"3\";s:4:\"slug\";s:22:\"revslider-backup-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Backup\";s:6:\"line_1\";s:12:\"Make Backups\";s:6:\"line_2\";s:25:\"Revisions for your safety\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";s:4:\"sort\";s:3:\"500\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:67:\"//updates.themepunch.tools/revslider/addons/images/addon_backup.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"BU\";}}s:19:\"revslider-404-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"62\";s:9:\"releaseid\";s:1:\"8\";s:4:\"slug\";s:19:\"revslider-404-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:3:\"404\";s:6:\"line_1\";s:39:\"Build custom 404 \"Page not Found\" Pages\";s:6:\"line_2\";s:28:\"with Slider Revolution swag!\";s:9:\"available\";s:5:\"2.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"620\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:64:\"//updates.themepunch.tools/revslider/addons/images/addon_404.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"404\";}}s:30:\"revslider-prevnext-posts-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:2:\"63\";s:9:\"releaseid\";s:1:\"9\";s:4:\"slug\";s:30:\"revslider-prevnext-posts-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Adjacent Posts\";s:6:\"line_1\";s:30:\"Display previous and next post\";s:6:\"line_2\";s:28:\"to the currently showing one\";s:9:\"available\";s:5:\"2.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"630\";s:11:\"last_update\";s:10:\"2020-12-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:71:\"//updates.themepunch.tools/revslider/addons/images/addon_wpadjacent.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"PN\";}}s:21:\"revslider-login-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"388\";s:9:\"releaseid\";s:2:\"11\";s:4:\"slug\";s:21:\"revslider-login-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Login Page\";s:6:\"line_1\";s:25:\"Very simple WP Login Page\";s:6:\"line_2\";s:34:\"enhanced with your favorite slider\";s:9:\"available\";s:5:\"3.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"650\";s:11:\"last_update\";s:10:\"2021-06-12\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:66:\"//updates.themepunch.tools/revslider/addons/images/addon_login.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"LI\";}}s:24:\"revslider-featured-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"379\";s:9:\"releaseid\";s:2:\"12\";s:4:\"slug\";s:24:\"revslider-featured-addon\";s:12:\"version_from\";s:6:\"6.4.11\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Post Featured Slider\";s:6:\"line_1\";s:25:\"Display a featured Slider\";s:6:\"line_2\";s:41:\"instead of a featured Image in your Posts\";s:9:\"available\";s:5:\"2.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"660\";s:11:\"last_update\";s:10:\"2021-05-04\";s:6:\"global\";b:1;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:71:\"//updates.themepunch.tools/revslider/addons/images/addon_wpfeatured.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"FT\";}}s:23:\"revslider-weather-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"402\";s:9:\"releaseid\";s:2:\"16\";s:4:\"slug\";s:23:\"revslider-weather-addon\";s:12:\"version_from\";s:5:\"6.5.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Weather\";s:6:\"line_1\";s:21:\"Every where you go...\";s:6:\"line_2\";s:36:\"...always take the weather with you!\";s:9:\"available\";s:5:\"3.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";s:4:\"sort\";s:3:\"690\";s:11:\"last_update\";s:10:\"2021-05-28\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:68:\"//updates.themepunch.tools/revslider/addons/images/addon_weather.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:2:\"WT\";}}s:30:\"revslider-duotonefilters-addon\";O:8:\"stdClass\":15:{s:2:\"id\";s:3:\"406\";s:9:\"releaseid\";s:2:\"18\";s:4:\"slug\";s:30:\"revslider-duotonefilters-addon\";s:12:\"version_from\";s:5:\"6.5.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Duotone\";s:6:\"line_1\";s:7:\"Duotone\";s:6:\"line_2\";s:25:\"Because one is not enough\";s:9:\"available\";s:5:\"3.0.4\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";s:4:\"sort\";s:3:\"710\";s:11:\"last_update\";s:10:\"2021-10-20\";s:6:\"global\";b:0;s:4:\"logo\";O:8:\"stdClass\":3:{s:3:\"img\";s:68:\"//updates.themepunch.tools/revslider/addons/images/addon_duotone.jpg\";s:5:\"color\";s:0:\"\";s:4:\"text\";s:3:\"DTF\";}}}','yes'),(378001,'revslider-deact-notice','1','yes'),(378002,'revslider-library-check','1663090757','yes'),(378003,'revslider-library-hash','dae3de1eb57eeeee008b70e9a23844b5','yes'); INSERT INTO `wp_options` VALUES (378004,'rs-library','a:3:{s:4:\"hash\";s:32:\"dae3de1eb57eeeee008b70e9a23844b5\";s:7:\"objects\";a:417:{i:0;a:12:{s:2:\"id\";s:3:\"198\";s:6:\"handle\";s:16:\"object_dvd_1.png\";s:4:\"name\";s:3:\"DVD\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:1;a:12:{s:2:\"id\";s:3:\"188\";s:6:\"handle\";s:18:\"object_plant_1.png\";s:4:\"name\";s:7:\"Plant 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:2;a:12:{s:2:\"id\";s:3:\"187\";s:6:\"handle\";s:16:\"object_pen_1.png\";s:4:\"name\";s:5:\"Pen 1\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:3;a:12:{s:2:\"id\";s:3:\"172\";s:6:\"handle\";s:16:\"object_egg_1.png\";s:4:\"name\";s:3:\"Egg\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:4;a:12:{s:2:\"id\";s:3:\"171\";s:6:\"handle\";s:19:\"object_guitar_1.png\";s:4:\"name\";s:6:\"Guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:5;a:12:{s:2:\"id\";s:3:\"170\";s:6:\"handle\";s:21:\"object_envelope_1.png\";s:4:\"name\";s:15:\"Closed Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:6;a:12:{s:2:\"id\";s:3:\"169\";s:6:\"handle\";s:19:\"object_postit_2.png\";s:4:\"name\";s:18:\"Postit Label White\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:7;a:12:{s:2:\"id\";s:3:\"168\";s:6:\"handle\";s:21:\"object_envelope_2.png\";s:4:\"name\";s:13:\"Open Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:8;a:12:{s:2:\"id\";s:3:\"167\";s:6:\"handle\";s:17:\"object_eggs_1.png\";s:4:\"name\";s:10:\"Egg Carton\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:9;a:12:{s:2:\"id\";s:3:\"166\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";s:4:\"name\";s:13:\"Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:10;a:12:{s:2:\"id\";s:3:\"165\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";s:4:\"name\";s:10:\"Blueprints\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:11;a:12:{s:2:\"id\";s:3:\"164\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";s:4:\"name\";s:10:\"Hole punch\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:12;a:12:{s:2:\"id\";s:3:\"163\";s:6:\"handle\";s:20:\"object_speaker_1.png\";s:4:\"name\";s:13:\"Black Speaker\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:13;a:12:{s:2:\"id\";s:3:\"162\";s:6:\"handle\";s:19:\"object_eraser_1.png\";s:4:\"name\";s:6:\"Eraser\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:14;a:12:{s:2:\"id\";s:3:\"161\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";s:4:\"name\";s:11:\"Vinyl Cover\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:15;a:12:{s:2:\"id\";s:3:\"160\";s:6:\"handle\";s:20:\"object_booklet_1.png\";s:4:\"name\";s:9:\"Booklet 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:16;a:12:{s:2:\"id\";s:3:\"159\";s:6:\"handle\";s:22:\"object_earphones_2.png\";s:4:\"name\";s:11:\"Earphones 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:17;a:12:{s:2:\"id\";s:3:\"158\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";s:4:\"name\";s:5:\"Vinyl\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:18;a:12:{s:2:\"id\";s:3:\"157\";s:6:\"handle\";s:19:\"object_postit_1.png\";s:4:\"name\";s:17:\"Postit Label Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:19;a:12:{s:2:\"id\";s:3:\"156\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";s:4:\"name\";s:17:\"Mechanical Pencil\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:20;a:12:{s:2:\"id\";s:3:\"155\";s:6:\"handle\";s:22:\"object_turntable_1.png\";s:4:\"name\";s:9:\"Turntable\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:21;a:12:{s:2:\"id\";s:3:\"154\";s:6:\"handle\";s:19:\"object_folder_2.png\";s:4:\"name\";s:19:\"Closed Folder Black\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:22;a:12:{s:2:\"id\";s:3:\"153\";s:6:\"handle\";s:19:\"object_postit_4.png\";s:4:\"name\";s:18:\"Postit Label Green\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:23;a:12:{s:2:\"id\";s:3:\"152\";s:6:\"handle\";s:19:\"object_folder_1.png\";s:4:\"name\";s:12:\"Blank Folder\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:24;a:12:{s:2:\"id\";s:3:\"151\";s:6:\"handle\";s:19:\"object_pencup_1.png\";s:4:\"name\";s:7:\"Pen Cup\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:25;a:12:{s:2:\"id\";s:3:\"150\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";s:4:\"name\";s:15:\"Red Wine Bottle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:26;a:12:{s:2:\"id\";s:3:\"149\";s:6:\"handle\";s:23:\"object_headphones_1.png\";s:4:\"name\";s:10:\"Headphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:27;a:12:{s:2:\"id\";s:3:\"148\";s:6:\"handle\";s:22:\"object_earphones_1.png\";s:4:\"name\";s:9:\"Earphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:28;a:12:{s:2:\"id\";s:3:\"147\";s:6:\"handle\";s:19:\"object_postit_3.png\";s:4:\"name\";s:19:\"Postit Label Yellow\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:29;a:12:{s:2:\"id\";s:3:\"146\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";s:4:\"name\";s:23:\"Corkscrew Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1300\";s:6:\"height\";s:4:\"1300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:30;a:12:{s:2:\"id\";s:3:\"145\";s:6:\"handle\";s:19:\"object_muffin_1.png\";s:4:\"name\";s:16:\"Chocolate Muffin\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:31;a:12:{s:2:\"id\";s:3:\"144\";s:6:\"handle\";s:18:\"object_chair_2.png\";s:4:\"name\";s:12:\"Yellow Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:32;a:12:{s:2:\"id\";s:3:\"143\";s:6:\"handle\";s:18:\"object_knife_2.png\";s:4:\"name\";s:7:\"Knife 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:33;a:12:{s:2:\"id\";s:3:\"142\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";s:4:\"name\";s:16:\"Chopping Board 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:34;a:12:{s:2:\"id\";s:3:\"141\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";s:4:\"name\";s:16:\"Chopping Board 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:35;a:12:{s:2:\"id\";s:3:\"140\";s:6:\"handle\";s:19:\"object_coffee_2.png\";s:4:\"name\";s:12:\"Coffee Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:36;a:12:{s:2:\"id\";s:3:\"139\";s:6:\"handle\";s:18:\"object_bread_1.png\";s:4:\"name\";s:15:\"Croissant Bread\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:37;a:12:{s:2:\"id\";s:3:\"138\";s:6:\"handle\";s:18:\"object_spoon_2.png\";s:4:\"name\";s:12:\"Wodden Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:38;a:12:{s:2:\"id\";s:3:\"137\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";s:4:\"name\";s:16:\"Chopping Board 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:39;a:12:{s:2:\"id\";s:3:\"136\";s:6:\"handle\";s:16:\"object_cup_2.png\";s:4:\"name\";s:11:\"Empty Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:40;a:12:{s:2:\"id\";s:3:\"135\";s:6:\"handle\";s:18:\"object_knife_1.png\";s:4:\"name\";s:5:\"Knife\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:41;a:12:{s:2:\"id\";s:3:\"134\";s:6:\"handle\";s:18:\"object_spoon_1.png\";s:4:\"name\";s:5:\"Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:42;a:12:{s:2:\"id\";s:3:\"133\";s:6:\"handle\";s:16:\"object_cup_1.png\";s:4:\"name\";s:9:\"Empty Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:43;a:12:{s:2:\"id\";s:3:\"132\";s:6:\"handle\";s:18:\"object_chair_3.png\";s:4:\"name\";s:11:\"White Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:44;a:12:{s:2:\"id\";s:3:\"131\";s:6:\"handle\";s:19:\"object_coffee_1.png\";s:4:\"name\";s:10:\"Coffee Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:45;a:12:{s:2:\"id\";s:3:\"130\";s:6:\"handle\";s:19:\"object_frypan_2.png\";s:4:\"name\";s:9:\"Fry Pan 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:46;a:12:{s:2:\"id\";s:3:\"129\";s:6:\"handle\";s:19:\"object_frypan_1.png\";s:4:\"name\";s:9:\"Fry Pan 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:47;a:12:{s:2:\"id\";s:3:\"128\";s:6:\"handle\";s:17:\"object_fork_1.png\";s:4:\"name\";s:4:\"Fork\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:48;a:12:{s:2:\"id\";s:3:\"127\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";s:4:\"name\";s:13:\"Dishrag Cloth\";s:4:\"tags\";a:0:{}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:49;a:12:{s:2:\"id\";s:3:\"126\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";s:4:\"name\";s:17:\"Wacom Drawing Pen\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1060\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:50;a:12:{s:2:\"id\";s:3:\"125\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";s:4:\"name\";s:23:\"Occulus Virtual Reality\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:51;a:12:{s:2:\"id\";s:3:\"124\";s:6:\"handle\";s:18:\"object_antenna.png\";s:4:\"name\";s:13:\"Antenna Radar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:52;a:12:{s:2:\"id\";s:3:\"123\";s:6:\"handle\";s:21:\"object_solarpanel.png\";s:4:\"name\";s:11:\"Solar Panel\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:53;a:12:{s:2:\"id\";s:3:\"122\";s:6:\"handle\";s:16:\"object_wacom.png\";s:4:\"name\";s:20:\"Wacom Drawing Tablet\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:54;a:12:{s:2:\"id\";s:3:\"121\";s:6:\"handle\";s:18:\"object_earth_2.png\";s:4:\"name\";s:20:\"Earth Globe Planet 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:55;a:12:{s:2:\"id\";s:3:\"120\";s:6:\"handle\";s:18:\"object_chair_1.png\";s:4:\"name\";s:12:\"Office Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:56;a:12:{s:2:\"id\";s:3:\"119\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";s:4:\"name\";s:14:\"Wind Turbine 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:57;a:12:{s:2:\"id\";s:3:\"118\";s:6:\"handle\";s:22:\"object_windturbine.png\";s:4:\"name\";s:12:\"Wind Turbine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:58;a:12:{s:2:\"id\";s:3:\"117\";s:6:\"handle\";s:16:\"object_earth.png\";s:4:\"name\";s:18:\"Earth Globe Planet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:59;a:12:{s:2:\"id\";s:2:\"88\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";s:4:\"name\";s:13:\"Eiffeltower 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:60;a:12:{s:2:\"id\";s:2:\"87\";s:6:\"handle\";s:21:\"object_notebook_1.png\";s:4:\"name\";s:11:\"Notebook PC\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:61;a:12:{s:2:\"id\";s:2:\"86\";s:6:\"handle\";s:20:\"object_macbook_1.png\";s:4:\"name\";s:20:\"Apple Macbook Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:62;a:12:{s:2:\"id\";s:2:\"85\";s:6:\"handle\";s:18:\"object_canon_2.png\";s:4:\"name\";s:21:\"Canon Camera DSLR Top\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:63;a:12:{s:2:\"id\";s:2:\"84\";s:6:\"handle\";s:19:\"object_iphone_3.png\";s:4:\"name\";s:25:\"Apple iPhone Silver White\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:64;a:12:{s:2:\"id\";s:2:\"83\";s:6:\"handle\";s:18:\"object_candy_2.png\";s:4:\"name\";s:15:\"Candy Colored 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:65;a:12:{s:2:\"id\";s:2:\"82\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";s:4:\"name\";s:15:\"Apple Mac Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:66;a:12:{s:2:\"id\";s:2:\"81\";s:6:\"handle\";s:19:\"object_iphone_1.png\";s:4:\"name\";s:18:\"Apple iPhone Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:67;a:12:{s:2:\"id\";s:2:\"80\";s:6:\"handle\";s:17:\"object_deco_1.png\";s:4:\"name\";s:17:\"White Deco Object\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:68;a:12:{s:2:\"id\";s:2:\"79\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";s:4:\"name\";s:24:\"Apple Watch White Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:69;a:12:{s:2:\"id\";s:2:\"78\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";s:4:\"name\";s:11:\"Swiss Knife\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:70;a:12:{s:2:\"id\";s:2:\"77\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";s:4:\"name\";s:17:\"Apple Watch Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:71;a:12:{s:2:\"id\";s:2:\"76\";s:6:\"handle\";s:18:\"object_candy_1.png\";s:4:\"name\";s:13:\"Candy Colored\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:72;a:12:{s:2:\"id\";s:2:\"75\";s:6:\"handle\";s:17:\"object_ipad_1.png\";s:4:\"name\";s:16:\"Apple iPad Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:73;a:12:{s:2:\"id\";s:2:\"74\";s:6:\"handle\";s:17:\"object_lamp_2.png\";s:4:\"name\";s:15:\"Black Desk Lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:74;a:12:{s:2:\"id\";s:2:\"73\";s:6:\"handle\";s:18:\"object_canon_1.png\";s:4:\"name\";s:17:\"Canon Camera DLSR\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:75;a:12:{s:2:\"id\";s:2:\"72\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";s:4:\"name\";s:12:\"Blackberry 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:76;a:12:{s:2:\"id\";s:2:\"71\";s:6:\"handle\";s:19:\"object_iphone_2.png\";s:4:\"name\";s:19:\"Apple iPhone Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:77;a:12:{s:2:\"id\";s:2:\"70\";s:6:\"handle\";s:17:\"object_ipad_2.png\";s:4:\"name\";s:15:\"Apple iPad Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:78;a:12:{s:2:\"id\";s:2:\"69\";s:6:\"handle\";s:20:\"object_printer_1.png\";s:4:\"name\";s:7:\"Printer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:79;a:12:{s:2:\"id\";s:2:\"68\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";s:4:\"name\";s:14:\"Black PC Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:80;a:12:{s:2:\"id\";s:2:\"67\";s:6:\"handle\";s:17:\"object_ipad_3.png\";s:4:\"name\";s:17:\"Apple iPad Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:81;a:12:{s:2:\"id\";s:2:\"66\";s:6:\"handle\";s:17:\"object_lamp_1.png\";s:4:\"name\";s:13:\"Desk Lamp Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:82;a:12:{s:2:\"id\";s:2:\"65\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";s:4:\"name\";s:16:\"Apple Mac Screen\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:83;a:12:{s:2:\"id\";s:2:\"64\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";s:4:\"name\";s:12:\"Blackberry 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:84;a:12:{s:2:\"id\";s:2:\"63\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";s:4:\"name\";s:16:\"Apple Watch Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:85;a:12:{s:2:\"id\";s:2:\"62\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";s:4:\"name\";s:10:\"Blackberry\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:86;a:12:{s:2:\"id\";s:2:\"49\";s:6:\"handle\";s:19:\"object_bottle_1.png\";s:4:\"name\";s:18:\"Brown Glass Bottle\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:87;a:12:{s:2:\"id\";s:2:\"48\";s:6:\"handle\";s:20:\"object_glasses_1.png\";s:4:\"name\";s:19:\"Hipster Glasses Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:88;a:12:{s:2:\"id\";s:2:\"47\";s:6:\"handle\";s:21:\"object_magazine_1.png\";s:4:\"name\";s:14:\"Blank Magazine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:89;a:12:{s:2:\"id\";s:2:\"46\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";s:4:\"name\";s:24:\"Black Leather Document 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:90;a:12:{s:2:\"id\";s:2:\"45\";s:6:\"handle\";s:18:\"object_purse_2.png\";s:4:\"name\";s:13:\"Black Purse 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:91;a:12:{s:2:\"id\";s:2:\"44\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";s:4:\"name\";s:18:\"Retro Typewriter 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:92;a:12:{s:2:\"id\";s:2:\"43\";s:6:\"handle\";s:17:\"object_book_5.png\";s:4:\"name\";s:9:\"Old Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:93;a:12:{s:2:\"id\";s:2:\"42\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";s:4:\"name\";s:29:\"Black Leather Document Closed\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:94;a:12:{s:2:\"id\";s:2:\"41\";s:6:\"handle\";s:17:\"object_book_4.png\";s:4:\"name\";s:8:\"Old Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:95;a:12:{s:2:\"id\";s:2:\"40\";s:6:\"handle\";s:19:\"object_wallet_2.png\";s:4:\"name\";s:22:\"Black Leather Document\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:96;a:12:{s:2:\"id\";s:2:\"39\";s:6:\"handle\";s:18:\"object_quill_2.png\";s:4:\"name\";s:15:\"Quill Feather 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:97;a:12:{s:2:\"id\";s:2:\"38\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";s:4:\"name\";s:11:\"Eiffeltower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:98;a:12:{s:2:\"id\";s:2:\"37\";s:6:\"handle\";s:21:\"object_magazine_2.png\";s:4:\"name\";s:11:\"Open Book 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1333\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:99;a:12:{s:2:\"id\";s:2:\"36\";s:6:\"handle\";s:17:\"object_book_1.png\";s:4:\"name\";s:10:\"Blank Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:100;a:12:{s:2:\"id\";s:2:\"35\";s:6:\"handle\";s:20:\"object_glasses_2.png\";s:4:\"name\";s:15:\"Hipster Glasses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:101;a:12:{s:2:\"id\";s:2:\"34\";s:6:\"handle\";s:17:\"object_book_2.png\";s:4:\"name\";s:11:\"Open Book 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:102;a:12:{s:2:\"id\";s:2:\"33\";s:6:\"handle\";s:19:\"object_gloves_1.png\";s:4:\"name\";s:12:\"Black Gloves\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:103;a:12:{s:2:\"id\";s:2:\"32\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";s:4:\"name\";s:16:\"Retro Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:104;a:12:{s:2:\"id\";s:2:\"31\";s:6:\"handle\";s:17:\"object_book_3.png\";s:4:\"name\";s:9:\"Open Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:105;a:12:{s:2:\"id\";s:2:\"30\";s:6:\"handle\";s:19:\"object_wallet_1.png\";s:4:\"name\";s:12:\"Black Wallet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:106;a:12:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:18:\"object_purse_1.png\";s:4:\"name\";s:11:\"Black Purse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:107;a:12:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:18:\"object_quill_1.png\";s:4:\"name\";s:13:\"Quill Feather\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:108;a:12:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:19:\"object_artbox_2.png\";s:4:\"name\";s:16:\"Art Box Colors 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:109;a:12:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:18:\"object_cloth_1.png\";s:4:\"name\";s:17:\"Cloth Paint Color\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:110;a:12:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";s:4:\"name\";s:9:\"Brush Pot\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"984\";s:6:\"height\";s:3:\"984\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:111;a:12:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";s:4:\"name\";s:12:\"Paint Bucket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:112;a:12:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";s:4:\"name\";s:12:\"Paintbrush 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:113;a:12:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:19:\"object_artbox_1.png\";s:4:\"name\";s:14:\"Art Box Colors\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:114;a:12:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";s:4:\"name\";s:12:\"Paintbrush 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:115;a:12:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";s:4:\"name\";s:12:\"Paintbrush 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:116;a:12:{s:2:\"id\";s:2:\"11\";s:6:\"handle\";s:21:\"table_radio_right.png\";s:4:\"name\";s:18:\"Radio Speaker Wood\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:117;a:12:{s:2:\"id\";s:2:\"10\";s:6:\"handle\";s:18:\"keyboard_apple.png\";s:4:\"name\";s:14:\"Apple Keyboard\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:118;a:12:{s:2:\"id\";s:1:\"9\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";s:4:\"name\";s:18:\"Apple Macbook Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:119;a:12:{s:2:\"id\";s:1:\"8\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";s:4:\"name\";s:19:\"Google Nexus 6 Blue\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"1\";}i:120;a:12:{s:2:\"id\";s:3:\"479\";s:6:\"handle\";s:31:\"Tram-beside-waiting-station.jpg\";s:4:\"name\";s:27:\"Tram beside waiting station\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:52:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:121;a:12:{s:2:\"id\";s:3:\"478\";s:6:\"handle\";s:14:\"Pulling-up.jpg\";s:4:\"name\";s:10:\"Pulling up\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1297\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:122;a:12:{s:2:\"id\";s:3:\"477\";s:6:\"handle\";s:16:\"Snowboarding.jpg\";s:4:\"name\";s:12:\"Snowboarding\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1290\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:41:20\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:123;a:12:{s:2:\"id\";s:3:\"476\";s:6:\"handle\";s:16:\"Morning-yoga.jpg\";s:4:\"name\";s:12:\"Morning yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1346\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:124;a:12:{s:2:\"id\";s:3:\"475\";s:6:\"handle\";s:8:\"Yoga.jpg\";s:4:\"name\";s:4:\"Yoga\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:125;a:12:{s:2:\"id\";s:3:\"474\";s:6:\"handle\";s:14:\"Golf-balls.jpg\";s:4:\"name\";s:10:\"Golf balls\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:126;a:12:{s:2:\"id\";s:3:\"473\";s:6:\"handle\";s:19:\"Confident-Boxer.jpg\";s:4:\"name\";s:15:\"Confident Boxer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:127;a:12:{s:2:\"id\";s:3:\"472\";s:6:\"handle\";s:11:\"Aerobic.jpg\";s:4:\"name\";s:7:\"Aerobic\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:40:23\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:128;a:12:{s:2:\"id\";s:3:\"471\";s:6:\"handle\";s:18:\"Riding-bicycle.jpg\";s:4:\"name\";s:14:\"Riding bicycle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1358\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:129;a:12:{s:2:\"id\";s:3:\"470\";s:6:\"handle\";s:27:\"woman-with-barbell-back.jpg\";s:4:\"name\";s:23:\"woman with barbell back\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:130;a:12:{s:2:\"id\";s:3:\"469\";s:6:\"handle\";s:24:\"Woman-lying-on-floor.jpg\";s:4:\"name\";s:20:\"Woman lying on floor\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1318\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:131;a:12:{s:2:\"id\";s:3:\"468\";s:6:\"handle\";s:27:\"Holding-black-dumbbells.jpg\";s:4:\"name\";s:23:\"Holding black dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:132;a:12:{s:2:\"id\";s:3:\"467\";s:6:\"handle\";s:25:\"Woman-using-dumbbells.jpg\";s:4:\"name\";s:21:\"Woman using dumbbells\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1425\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:133;a:12:{s:2:\"id\";s:3:\"466\";s:6:\"handle\";s:16:\"Soccer-cleat.jpg\";s:4:\"name\";s:12:\"Soccer cleat\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:134;a:12:{s:2:\"id\";s:3:\"465\";s:6:\"handle\";s:16:\"Soccer-field.jpg\";s:4:\"name\";s:12:\"Soccer field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:135;a:12:{s:2:\"id\";s:3:\"464\";s:6:\"handle\";s:23:\"Man-tying-his-shoes.jpg\";s:4:\"name\";s:19:\"Man tying his shoes\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:136;a:12:{s:2:\"id\";s:3:\"463\";s:6:\"handle\";s:10:\"Boxing.jpg\";s:4:\"name\";s:6:\"Boxing\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:137;a:12:{s:2:\"id\";s:3:\"462\";s:6:\"handle\";s:22:\"woman-with-barbell.jpg\";s:4:\"name\";s:18:\"woman with barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:138;a:12:{s:2:\"id\";s:3:\"461\";s:6:\"handle\";s:12:\"Crossfit.jpg\";s:4:\"name\";s:8:\"Crossfit\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:139;a:12:{s:2:\"id\";s:3:\"460\";s:6:\"handle\";s:25:\"Man-and-woman-jogging.jpg\";s:4:\"name\";s:21:\"Man and woman jogging\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:140;a:12:{s:2:\"id\";s:3:\"459\";s:6:\"handle\";s:16:\"Playing-golf.jpg\";s:4:\"name\";s:12:\"Playing golf\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:141;a:12:{s:2:\"id\";s:3:\"458\";s:6:\"handle\";s:18:\"Surfer-in-wave.jpg\";s:4:\"name\";s:14:\"Surfer in wave\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:142;a:12:{s:2:\"id\";s:3:\"457\";s:6:\"handle\";s:25:\"Woman-lifting-barbell.jpg\";s:4:\"name\";s:21:\"Woman lifting barbell\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:143;a:12:{s:2:\"id\";s:3:\"456\";s:6:\"handle\";s:14:\"Stretching.jpg\";s:4:\"name\";s:10:\"Stretching\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:144;a:12:{s:2:\"id\";s:3:\"455\";s:6:\"handle\";s:18:\"Snowboarding-2.jpg\";s:4:\"name\";s:14:\"Snowboarding 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:145;a:12:{s:2:\"id\";s:3:\"454\";s:6:\"handle\";s:11:\"Balance.jpg\";s:4:\"name\";s:7:\"Balance\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:146;a:12:{s:2:\"id\";s:3:\"453\";s:6:\"handle\";s:19:\"Pool-meditation.jpg\";s:4:\"name\";s:15:\"Pool meditation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:147;a:12:{s:2:\"id\";s:3:\"452\";s:6:\"handle\";s:18:\"Soccer-stadium.jpg\";s:4:\"name\";s:14:\"Soccer stadium\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:148;a:12:{s:2:\"id\";s:3:\"451\";s:6:\"handle\";s:25:\"Soccer-field-top-view.jpg\";s:4:\"name\";s:21:\"Soccer field top view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:149;a:12:{s:2:\"id\";s:3:\"450\";s:6:\"handle\";s:14:\"Basketball.jpg\";s:4:\"name\";s:10:\"Basketball\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:150;a:12:{s:2:\"id\";s:3:\"449\";s:6:\"handle\";s:14:\"in-the-fog.jpg\";s:4:\"name\";s:10:\"in the fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:151;a:12:{s:2:\"id\";s:3:\"448\";s:6:\"handle\";s:13:\"Handstand.jpg\";s:4:\"name\";s:9:\"Handstand\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:38:24\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:152;a:12:{s:2:\"id\";s:3:\"447\";s:6:\"handle\";s:11:\"Friends.jpg\";s:4:\"name\";s:7:\"Friends\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:153;a:12:{s:2:\"id\";s:3:\"446\";s:6:\"handle\";s:28:\"Sneakers-on-the-railroad.jpg\";s:4:\"name\";s:24:\"Sneakers on the railroad\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:154;a:12:{s:2:\"id\";s:3:\"445\";s:6:\"handle\";s:23:\"Family-on-the-ocean.jpg\";s:4:\"name\";s:19:\"Family on the ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:155;a:12:{s:2:\"id\";s:3:\"444\";s:6:\"handle\";s:10:\"Sunset.jpg\";s:4:\"name\";s:6:\"Sunset\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:156;a:12:{s:2:\"id\";s:3:\"443\";s:6:\"handle\";s:9:\"Books.jpg\";s:4:\"name\";s:5:\"Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:157;a:12:{s:2:\"id\";s:3:\"442\";s:6:\"handle\";s:25:\"Looking-at-the-window.jpg\";s:4:\"name\";s:21:\"Looking at the window\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:158;a:12:{s:2:\"id\";s:3:\"441\";s:6:\"handle\";s:48:\"woman-standing-near-buildings-during-daytime.jpg\";s:4:\"name\";s:44:\"woman standing near buildings during daytime\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:159;a:12:{s:2:\"id\";s:3:\"440\";s:6:\"handle\";s:12:\"Lollipop.jpg\";s:4:\"name\";s:8:\"Lollipop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1395\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:160;a:12:{s:2:\"id\";s:3:\"439\";s:6:\"handle\";s:26:\"People-crossing-street.jpg\";s:4:\"name\";s:22:\"People crossing street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:161;a:12:{s:2:\"id\";s:3:\"438\";s:6:\"handle\";s:24:\"Friends-on-the-shore.jpg\";s:4:\"name\";s:20:\"Friends on the shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:162;a:12:{s:2:\"id\";s:3:\"437\";s:6:\"handle\";s:13:\"Coworkers.jpg\";s:4:\"name\";s:9:\"Coworkers\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:163;a:12:{s:2:\"id\";s:3:\"436\";s:6:\"handle\";s:27:\"Hiking-in-the-Dolomites.jpg\";s:4:\"name\";s:23:\"Hiking in the Dolomites\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:164;a:12:{s:2:\"id\";s:3:\"435\";s:6:\"handle\";s:18:\"Successful-man.jpg\";s:4:\"name\";s:14:\"Successful man\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:165;a:12:{s:2:\"id\";s:3:\"434\";s:6:\"handle\";s:23:\"Beautiful-sunny-day.jpg\";s:4:\"name\";s:19:\"Beautiful sunny day\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:166;a:12:{s:2:\"id\";s:3:\"433\";s:6:\"handle\";s:8:\"Guys.jpg\";s:4:\"name\";s:4:\"Guys\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:167;a:12:{s:2:\"id\";s:3:\"432\";s:6:\"handle\";s:19:\"Confetti-Shower.jpg\";s:4:\"name\";s:15:\"Confetti Shower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:168;a:12:{s:2:\"id\";s:3:\"431\";s:6:\"handle\";s:24:\"Sun-was-setting-down.jpg\";s:4:\"name\";s:20:\"Sun was setting down\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:169;a:12:{s:2:\"id\";s:3:\"430\";s:6:\"handle\";s:9:\"Jumps.jpg\";s:4:\"name\";s:5:\"Jumps\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:170;a:12:{s:2:\"id\";s:3:\"429\";s:6:\"handle\";s:23:\"Friends-by-the-fire.jpg\";s:4:\"name\";s:19:\"Friends by the fire\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:171;a:12:{s:2:\"id\";s:3:\"428\";s:6:\"handle\";s:21:\"Under-the-blanket.jpg\";s:4:\"name\";s:17:\"Under the blanket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1413\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:172;a:12:{s:2:\"id\";s:3:\"427\";s:6:\"handle\";s:18:\"Pretty-in-Pink.jpg\";s:4:\"name\";s:14:\"Pretty in Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1394\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:173;a:12:{s:2:\"id\";s:3:\"426\";s:6:\"handle\";s:31:\"Discussions-at-a-long-table.jpg\";s:4:\"name\";s:27:\"Discussions at a long table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1268\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:174;a:12:{s:2:\"id\";s:3:\"425\";s:6:\"handle\";s:18:\"Lost-in-Lemons.jpg\";s:4:\"name\";s:14:\"Lost in Lemons\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:175;a:12:{s:2:\"id\";s:3:\"424\";s:6:\"handle\";s:13:\"Team-work.jpg\";s:4:\"name\";s:9:\"Team work\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:176;a:12:{s:2:\"id\";s:3:\"423\";s:6:\"handle\";s:20:\"Romantic-evening.jpg\";s:4:\"name\";s:16:\"Romantic evening\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1263\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:36:58\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:177;a:12:{s:2:\"id\";s:3:\"422\";s:6:\"handle\";s:19:\"Crew-collective.jpg\";s:4:\"name\";s:15:\"Crew collective\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:178;a:12:{s:2:\"id\";s:3:\"421\";s:6:\"handle\";s:8:\"Code.jpg\";s:4:\"name\";s:4:\"Code\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:179;a:12:{s:2:\"id\";s:3:\"420\";s:6:\"handle\";s:48:\"Yellow-ceramic-mug-beside-gray-aluminum-iMac.jpg\";s:4:\"name\";s:44:\"Yellow ceramic mug beside gray aluminum iMac\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:180;a:12:{s:2:\"id\";s:3:\"419\";s:6:\"handle\";s:11:\"My-desk.jpg\";s:4:\"name\";s:7:\"My desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1315\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:181;a:12:{s:2:\"id\";s:3:\"418\";s:6:\"handle\";s:17:\"Cooperation-2.jpg\";s:4:\"name\";s:13:\"Cooperation 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:182;a:12:{s:2:\"id\";s:3:\"417\";s:6:\"handle\";s:33:\"MacBook-on-top-of-brown-table.jpg\";s:4:\"name\";s:29:\"MacBook on top of brown table\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:183;a:12:{s:2:\"id\";s:3:\"416\";s:6:\"handle\";s:27:\"Beautiful-working-place.jpg\";s:4:\"name\";s:23:\"Beautiful working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:184;a:12:{s:2:\"id\";s:3:\"415\";s:6:\"handle\";s:14:\"Typewriter.jpg\";s:4:\"name\";s:10:\"Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:185;a:12:{s:2:\"id\";s:3:\"414\";s:6:\"handle\";s:19:\"White-desk-lamp.jpg\";s:4:\"name\";s:15:\"White desk lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:186;a:12:{s:2:\"id\";s:3:\"413\";s:6:\"handle\";s:18:\"Office-working.jpg\";s:4:\"name\";s:14:\"Office working\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:187;a:12:{s:2:\"id\";s:3:\"412\";s:6:\"handle\";s:36:\"Silver-iMac-on-brown-wooden-desk.jpg\";s:4:\"name\";s:32:\"Silver iMac on brown wooden desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1240\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:188;a:12:{s:2:\"id\";s:3:\"411\";s:6:\"handle\";s:23:\"Working-in-progress.jpg\";s:4:\"name\";s:19:\"Working in progress\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:189;a:12:{s:2:\"id\";s:3:\"410\";s:6:\"handle\";s:15:\"Cooperation.jpg\";s:4:\"name\";s:11:\"Cooperation\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:190;a:12:{s:2:\"id\";s:3:\"409\";s:6:\"handle\";s:17:\"Working-place.jpg\";s:4:\"name\";s:13:\"Working place\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:191;a:12:{s:2:\"id\";s:3:\"408\";s:6:\"handle\";s:16:\"Working-desk.jpg\";s:4:\"name\";s:12:\"Working desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:33:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:192;a:12:{s:2:\"id\";s:3:\"407\";s:6:\"handle\";s:23:\"low-angle-of-forest.jpg\";s:4:\"name\";s:19:\"low angle of forest\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:193;a:12:{s:2:\"id\";s:3:\"406\";s:6:\"handle\";s:23:\"Lake-under-blue-sky.jpg\";s:4:\"name\";s:19:\"Lake under blue sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1351\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:194;a:12:{s:2:\"id\";s:3:\"405\";s:6:\"handle\";s:21:\"Blue-starry-night.jpg\";s:4:\"name\";s:17:\"Blue starry night\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:195;a:12:{s:2:\"id\";s:3:\"404\";s:6:\"handle\";s:22:\"Aerial-photography.jpg\";s:4:\"name\";s:18:\"Aerial photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:196;a:12:{s:2:\"id\";s:3:\"403\";s:6:\"handle\";s:14:\"Red-clouds.jpg\";s:4:\"name\";s:10:\"Red clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:197;a:12:{s:2:\"id\";s:3:\"402\";s:6:\"handle\";s:14:\"Snow-field.jpg\";s:4:\"name\";s:10:\"Snow field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1227\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:198;a:12:{s:2:\"id\";s:3:\"401\";s:6:\"handle\";s:13:\"White-sky.jpg\";s:4:\"name\";s:9:\"White sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:199;a:12:{s:2:\"id\";s:3:\"400\";s:6:\"handle\";s:24:\"Trees-covered-by-fog.jpg\";s:4:\"name\";s:20:\"Trees covered by fog\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:200;a:12:{s:2:\"id\";s:3:\"399\";s:6:\"handle\";s:26:\"Red-and-white-mushroom.jpg\";s:4:\"name\";s:22:\"Red and white mushroom\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:201;a:12:{s:2:\"id\";s:3:\"398\";s:6:\"handle\";s:24:\"Lake-near-pine-trees.jpg\";s:4:\"name\";s:20:\"Lake near pine trees\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:202;a:12:{s:2:\"id\";s:3:\"397\";s:6:\"handle\";s:35:\"After-a-long-day-of-backpacking.jpg\";s:4:\"name\";s:31:\"After a long day of backpacking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:203;a:12:{s:2:\"id\";s:3:\"396\";s:6:\"handle\";s:32:\"Mountains-during-golden-hour.jpg\";s:4:\"name\";s:28:\"Mountains during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:204;a:12:{s:2:\"id\";s:3:\"395\";s:6:\"handle\";s:27:\"Man-looking-on-mountain.jpg\";s:4:\"name\";s:23:\"Man looking on mountain\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:205;a:12:{s:2:\"id\";s:3:\"394\";s:6:\"handle\";s:19:\"Body-of-water-2.jpg\";s:4:\"name\";s:15:\"Body of water 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:206;a:12:{s:2:\"id\";s:3:\"393\";s:6:\"handle\";s:15:\"Brown-cliff.jpg\";s:4:\"name\";s:11:\"Brown cliff\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:207;a:12:{s:2:\"id\";s:3:\"392\";s:6:\"handle\";s:20:\"Green-foggy-tree.jpg\";s:4:\"name\";s:16:\"Green foggy tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1417\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:208;a:12:{s:2:\"id\";s:3:\"391\";s:6:\"handle\";s:32:\"Grayscale-photo-of-mountains.jpg\";s:4:\"name\";s:28:\"Grayscale photo of mountains\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:209;a:12:{s:2:\"id\";s:3:\"390\";s:6:\"handle\";s:19:\"Under-sunny-sky.jpg\";s:4:\"name\";s:15:\"Under sunny sky\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:31:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:210;a:12:{s:2:\"id\";s:3:\"389\";s:6:\"handle\";s:16:\"Rock-concert.jpg\";s:4:\"name\";s:12:\"Rock concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1443\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:211;a:12:{s:2:\"id\";s:3:\"388\";s:6:\"handle\";s:30:\"Group-of-people-in-concert.jpg\";s:4:\"name\";s:26:\"Group of people in concert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:212;a:12:{s:2:\"id\";s:3:\"387\";s:6:\"handle\";s:6:\"DJ.jpg\";s:4:\"name\";s:2:\"DJ\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:213;a:12:{s:2:\"id\";s:3:\"386\";s:6:\"handle\";s:56:\"Woman-standing-watching-LED-light-musical-instrument.jpg\";s:4:\"name\";s:52:\"Woman standing watching LED light musical instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:214;a:12:{s:2:\"id\";s:3:\"385\";s:6:\"handle\";s:16:\"Concert-hall.jpg\";s:4:\"name\";s:12:\"Concert hall\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:215;a:12:{s:2:\"id\";s:3:\"384\";s:6:\"handle\";s:18:\"Concert-hall-2.jpg\";s:4:\"name\";s:14:\"Concert hall 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:216;a:12:{s:2:\"id\";s:3:\"383\";s:6:\"handle\";s:29:\"man-playing-upright-piano.jpg\";s:4:\"name\";s:25:\"man playing upright piano\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1340\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:217;a:12:{s:2:\"id\";s:3:\"382\";s:6:\"handle\";s:30:\"person-performing-on-stage.jpg\";s:4:\"name\";s:26:\"person performing on stage\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:218;a:12:{s:2:\"id\";s:3:\"381\";s:6:\"handle\";s:27:\"Brown-string-instrument.jpg\";s:4:\"name\";s:23:\"Brown string instrument\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:219;a:12:{s:2:\"id\";s:3:\"380\";s:6:\"handle\";s:36:\"silhouette-of-person-with-guitar.jpg\";s:4:\"name\";s:32:\"silhouette of person with guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:220;a:12:{s:2:\"id\";s:3:\"379\";s:6:\"handle\";s:14:\"Party-fans.jpg\";s:4:\"name\";s:10:\"Party fans\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:221;a:12:{s:2:\"id\";s:3:\"378\";s:6:\"handle\";s:24:\"Condenser-microphone.jpg\";s:4:\"name\";s:20:\"Condenser microphone\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:25:26\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:222;a:12:{s:2:\"id\";s:3:\"377\";s:6:\"handle\";s:42:\"Low-angle-photo-of-high-rise-buildings.jpg\";s:4:\"name\";s:38:\"Low angle photo of high rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:223;a:12:{s:2:\"id\";s:3:\"376\";s:6:\"handle\";s:23:\"High-rise-buildings.jpg\";s:4:\"name\";s:19:\"High rise buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:224;a:12:{s:2:\"id\";s:3:\"375\";s:6:\"handle\";s:16:\"Cable-bridge.jpg\";s:4:\"name\";s:12:\"Cable bridge\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:225;a:12:{s:2:\"id\";s:3:\"374\";s:6:\"handle\";s:35:\"Bokeh-effect-from-street-lights.jpg\";s:4:\"name\";s:31:\"Bokeh effect from street lights\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:226;a:12:{s:2:\"id\";s:3:\"373\";s:6:\"handle\";s:18:\"Low-angle-view.jpg\";s:4:\"name\";s:14:\"Low angle view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:227;a:12:{s:2:\"id\";s:3:\"372\";s:6:\"handle\";s:21:\"Double-decker-bus.jpg\";s:4:\"name\";s:17:\"Double decker bus\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1373\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:228;a:12:{s:2:\"id\";s:3:\"371\";s:6:\"handle\";s:32:\"Buildings-near-body-of-water.jpg\";s:4:\"name\";s:28:\"Buildings near body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1370\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:229;a:12:{s:2:\"id\";s:3:\"370\";s:6:\"handle\";s:18:\"Satellite-view.jpg\";s:4:\"name\";s:14:\"Satellite view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:230;a:12:{s:2:\"id\";s:3:\"369\";s:6:\"handle\";s:14:\"Twin-Tower.jpg\";s:4:\"name\";s:10:\"Twin Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:231;a:12:{s:2:\"id\";s:3:\"368\";s:6:\"handle\";s:22:\"Two-person-walking.jpg\";s:4:\"name\";s:18:\"Two person walking\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1345\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:232;a:12:{s:2:\"id\";s:3:\"367\";s:6:\"handle\";s:15:\"Sears-Tower.jpg\";s:4:\"name\";s:11:\"Sears Tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:233;a:12:{s:2:\"id\";s:3:\"366\";s:6:\"handle\";s:19:\"Night-cityscape.jpg\";s:4:\"name\";s:15:\"Night cityscape\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:234;a:12:{s:2:\"id\";s:3:\"365\";s:6:\"handle\";s:25:\"Empire-State-Building.jpg\";s:4:\"name\";s:21:\"Empire State Building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:235;a:12:{s:2:\"id\";s:3:\"364\";s:6:\"handle\";s:9:\"Paris.jpg\";s:4:\"name\";s:5:\"Paris\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:236;a:12:{s:2:\"id\";s:3:\"363\";s:6:\"handle\";s:31:\"Building-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Building during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1288\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:237;a:12:{s:2:\"id\";s:3:\"362\";s:6:\"handle\";s:21:\"Afternoon-skyline.jpg\";s:4:\"name\";s:17:\"Afternoon skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:238;a:12:{s:2:\"id\";s:3:\"361\";s:6:\"handle\";s:22:\"Concrete-buildings.jpg\";s:4:\"name\";s:18:\"Concrete buildings\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:239;a:12:{s:2:\"id\";s:3:\"360\";s:6:\"handle\";s:26:\"Architectural-building.jpg\";s:4:\"name\";s:22:\"Architectural building\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1382\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:240;a:12:{s:2:\"id\";s:3:\"359\";s:6:\"handle\";s:23:\"Skyline-photography.jpg\";s:4:\"name\";s:19:\"Skyline photography\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:241;a:12:{s:2:\"id\";s:3:\"358\";s:6:\"handle\";s:38:\"People-standing-on-pedestrian-lane.jpg\";s:4:\"name\";s:34:\"People standing on pedestrian lane\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1154\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:242;a:12:{s:2:\"id\";s:3:\"357\";s:6:\"handle\";s:16:\"Burj-Khalifa.jpg\";s:4:\"name\";s:12:\"Burj Khalifa\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:243;a:12:{s:2:\"id\";s:3:\"356\";s:6:\"handle\";s:13:\"Skycraper.jpg\";s:4:\"name\";s:9:\"Skycraper\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:244;a:12:{s:2:\"id\";s:3:\"355\";s:6:\"handle\";s:14:\"Gray-tower.jpg\";s:4:\"name\";s:10:\"Gray tower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1433\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-16 10:24:11\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:245;a:12:{s:2:\"id\";s:3:\"354\";s:6:\"handle\";s:28:\"One-fine-day-in-Maldives.jpg\";s:4:\"name\";s:24:\"One fine day in Maldives\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1116\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:246;a:12:{s:2:\"id\";s:3:\"353\";s:6:\"handle\";s:25:\"Boat-on-body-of-water.jpg\";s:4:\"name\";s:21:\"Boat on body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:247;a:12:{s:2:\"id\";s:3:\"352\";s:6:\"handle\";s:33:\"Aerial-photo-of-body-of-water.jpg\";s:4:\"name\";s:29:\"Aerial photo of body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1078\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:248;a:12:{s:2:\"id\";s:3:\"351\";s:6:\"handle\";s:31:\"Assorted-color-beach-houses.jpg\";s:4:\"name\";s:27:\"Assorted color beach houses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1135\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:249;a:12:{s:2:\"id\";s:3:\"350\";s:6:\"handle\";s:36:\"Woman-leaning-on-tree-near-beach.jpg\";s:4:\"name\";s:32:\"Woman leaning on tree near beach\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1559\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:250;a:12:{s:2:\"id\";s:3:\"349\";s:6:\"handle\";s:17:\"Body-of-water.jpg\";s:4:\"name\";s:13:\"Body of water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1269\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:251;a:12:{s:2:\"id\";s:3:\"348\";s:6:\"handle\";s:17:\"People-on-sea.jpg\";s:4:\"name\";s:13:\"People on sea\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:252;a:12:{s:2:\"id\";s:3:\"347\";s:6:\"handle\";s:31:\"Man-sitting-beside-of-woman.jpg\";s:4:\"name\";s:27:\"Man sitting beside of woman\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:253;a:12:{s:2:\"id\";s:3:\"346\";s:6:\"handle\";s:22:\"woman-in-the-water.jpg\";s:4:\"name\";s:18:\"woman in the water\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:254;a:12:{s:2:\"id\";s:3:\"345\";s:6:\"handle\";s:39:\"Brown-stone-near-sea-at-golden-hour.jpg\";s:4:\"name\";s:35:\"Brown stone near sea at golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:255;a:12:{s:2:\"id\";s:3:\"344\";s:6:\"handle\";s:18:\"Birds-eye-view.jpg\";s:4:\"name\";s:14:\"Birds eye view\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1079\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:256;a:12:{s:2:\"id\";s:3:\"343\";s:6:\"handle\";s:18:\"Empty-seashore.jpg\";s:4:\"name\";s:14:\"Empty seashore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1365\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:257;a:12:{s:2:\"id\";s:3:\"342\";s:6:\"handle\";s:31:\"Seashore-during-golden-hour.jpg\";s:4:\"name\";s:27:\"Seashore during golden hour\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:258;a:12:{s:2:\"id\";s:3:\"341\";s:6:\"handle\";s:16:\"Coconut-tree.jpg\";s:4:\"name\";s:12:\"Coconut tree\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:259;a:12:{s:2:\"id\";s:3:\"340\";s:6:\"handle\";s:37:\"Aerial-photography-of-beach-shore.jpg\";s:4:\"name\";s:33:\"Aerial photography of beach shore\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1439\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-15 14:18:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:260;a:12:{s:2:\"id\";s:3:\"197\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";s:4:\"name\";s:13:\"Relax Hammock\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:261;a:12:{s:2:\"id\";s:3:\"196\";s:6:\"handle\";s:16:\"beach_houses.jpg\";s:4:\"name\";s:12:\"Beach Houses\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:262;a:12:{s:2:\"id\";s:3:\"195\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";s:4:\"name\";s:13:\"Forest Road 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:263;a:12:{s:2:\"id\";s:3:\"194\";s:6:\"handle\";s:14:\"clean_desk.jpg\";s:4:\"name\";s:10:\"Clean Desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:264;a:12:{s:2:\"id\";s:3:\"193\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";s:4:\"name\";s:15:\"Mountain View 6\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1249\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:265;a:12:{s:2:\"id\";s:3:\"192\";s:6:\"handle\";s:14:\"corn_field.jpg\";s:4:\"name\";s:10:\"Corn Field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1320\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:266;a:12:{s:2:\"id\";s:3:\"191\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";s:4:\"name\";s:17:\"Stylish Apartment\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:267;a:12:{s:2:\"id\";s:3:\"190\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";s:4:\"name\";s:20:\"Hipster Coffee House\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:268;a:12:{s:2:\"id\";s:3:\"189\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";s:4:\"name\";s:12:\"Blurry Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:269;a:12:{s:2:\"id\";s:3:\"186\";s:6:\"handle\";s:17:\"greens_street.jpg\";s:4:\"name\";s:13:\"Greens Street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:270;a:12:{s:2:\"id\";s:3:\"185\";s:6:\"handle\";s:10:\"desert.jpg\";s:4:\"name\";s:6:\"Desert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:271;a:12:{s:2:\"id\";s:3:\"184\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";s:4:\"name\";s:15:\"Mountain View 5\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:272;a:12:{s:2:\"id\";s:3:\"183\";s:6:\"handle\";s:10:\"laptop.jpg\";s:4:\"name\";s:6:\"Laptop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1391\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:273;a:12:{s:2:\"id\";s:3:\"182\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";s:4:\"name\";s:12:\"Grand Canyon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1287\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:274;a:12:{s:2:\"id\";s:3:\"181\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";s:4:\"name\";s:16:\"Landscape Clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:275;a:12:{s:2:\"id\";s:3:\"180\";s:6:\"handle\";s:17:\"highway_night.jpg\";s:4:\"name\";s:13:\"Highway Night\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:276;a:12:{s:2:\"id\";s:3:\"179\";s:6:\"handle\";s:15:\"beach_water.jpg\";s:4:\"name\";s:11:\"Beach Water\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:277;a:12:{s:2:\"id\";s:3:\"177\";s:6:\"handle\";s:15:\"woman_beach.jpg\";s:4:\"name\";s:11:\"Woman Beach\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:3;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:278;a:12:{s:2:\"id\";s:3:\"175\";s:6:\"handle\";s:12:\"cool_guy.jpg\";s:4:\"name\";s:8:\"Cool Guy\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:279;a:12:{s:2:\"id\";s:3:\"174\";s:6:\"handle\";s:13:\"beach_sea.jpg\";s:4:\"name\";s:9:\"Beach Sea\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:280;a:12:{s:2:\"id\";s:3:\"173\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";s:4:\"name\";s:13:\"Bridge Clouds\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:281;a:12:{s:2:\"id\";s:3:\"116\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";s:4:\"name\";s:15:\"Mountain View 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:282;a:12:{s:2:\"id\";s:3:\"115\";s:6:\"handle\";s:16:\"desert_trees.jpg\";s:4:\"name\";s:12:\"Desert Trees\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:283;a:12:{s:2:\"id\";s:3:\"114\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";s:4:\"name\";s:17:\"Explore Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:284;a:12:{s:2:\"id\";s:3:\"113\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";s:4:\"name\";s:15:\"Night Skyline 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:285;a:12:{s:2:\"id\";s:3:\"112\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";s:4:\"name\";s:11:\"Cliff Ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:286;a:12:{s:2:\"id\";s:3:\"111\";s:6:\"handle\";s:14:\"city_smoke.jpg\";s:4:\"name\";s:10:\"City Smoke\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:287;a:12:{s:2:\"id\";s:3:\"110\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";s:4:\"name\";s:12:\"Surfer Beach\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:288;a:12:{s:2:\"id\";s:3:\"109\";s:6:\"handle\";s:13:\"sky_night.jpg\";s:4:\"name\";s:9:\"Sky Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:289;a:12:{s:2:\"id\";s:3:\"108\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";s:4:\"name\";s:11:\"Palm Sunset\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:3;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1372\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:290;a:12:{s:2:\"id\";s:3:\"107\";s:6:\"handle\";s:18:\"concert_people.jpg\";s:4:\"name\";s:14:\"Concert People\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:291;a:12:{s:2:\"id\";s:3:\"106\";s:6:\"handle\";s:15:\"forest_road.jpg\";s:4:\"name\";s:11:\"Forest Road\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:292;a:12:{s:2:\"id\";s:3:\"105\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";s:4:\"name\";s:11:\"Beach Ocean\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:293;a:12:{s:2:\"id\";s:3:\"104\";s:6:\"handle\";s:18:\"mountain_night.jpg\";s:4:\"name\";s:14:\"Mountain Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:294;a:12:{s:2:\"id\";s:3:\"103\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";s:4:\"name\";s:15:\"Ocean Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:295;a:12:{s:2:\"id\";s:3:\"102\";s:6:\"handle\";s:10:\"forest.jpg\";s:4:\"name\";s:6:\"Forest\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:296;a:12:{s:2:\"id\";s:3:\"101\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";s:4:\"name\";s:12:\"Ocean Stones\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:297;a:12:{s:2:\"id\";s:3:\"100\";s:6:\"handle\";s:16:\"country_road.jpg\";s:4:\"name\";s:12:\"Country Road\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:298;a:12:{s:2:\"id\";s:2:\"99\";s:6:\"handle\";s:9:\"beach.jpg\";s:4:\"name\";s:5:\"Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:299;a:12:{s:2:\"id\";s:2:\"98\";s:6:\"handle\";s:16:\"city_skyline.jpg\";s:4:\"name\";s:12:\"City Skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:300;a:12:{s:2:\"id\";s:2:\"97\";s:6:\"handle\";s:17:\"night_skyline.jpg\";s:4:\"name\";s:13:\"Night Skyline\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:301;a:12:{s:2:\"id\";s:2:\"96\";s:6:\"handle\";s:14:\"city_river.jpg\";s:4:\"name\";s:10:\"City River\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:302;a:12:{s:2:\"id\";s:2:\"95\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";s:4:\"name\";s:15:\"Mountain View 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:303;a:12:{s:2:\"id\";s:2:\"94\";s:6:\"handle\";s:14:\"misty_farm.jpg\";s:4:\"name\";s:10:\"Misty Farm\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:304;a:12:{s:2:\"id\";s:2:\"93\";s:6:\"handle\";s:17:\"mountain_path.jpg\";s:4:\"name\";s:13:\"Mountain Path\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:305;a:12:{s:2:\"id\";s:2:\"92\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";s:4:\"name\";s:15:\"Night Skyline 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:306;a:12:{s:2:\"id\";s:2:\"91\";s:6:\"handle\";s:17:\"mountain_view.jpg\";s:4:\"name\";s:13:\"Mountain View\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1160\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:307;a:12:{s:2:\"id\";s:2:\"90\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";s:4:\"name\";s:15:\"Rocky Landscape\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:308;a:12:{s:2:\"id\";s:2:\"89\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";s:4:\"name\";s:15:\"Mountain View 4\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1203\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"2\";}i:309;a:13:{s:2:\"id\";s:3:\"529\";s:6:\"handle\";s:13:\"Fitness-4.jpg\";s:5:\"video\";s:13:\"Fitness-4.mp4\";s:4:\"name\";s:10:\"Fitness 4 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:310;a:13:{s:2:\"id\";s:3:\"528\";s:6:\"handle\";s:13:\"Fitness-3.jpg\";s:5:\"video\";s:13:\"Fitness-3.mp4\";s:4:\"name\";s:10:\"Fitness 3 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:311;a:13:{s:2:\"id\";s:3:\"527\";s:6:\"handle\";s:9:\"Chess.jpg\";s:5:\"video\";s:9:\"Chess.mp4\";s:4:\"name\";s:6:\"Chess \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:312;a:13:{s:2:\"id\";s:3:\"526\";s:6:\"handle\";s:13:\"Fitness-2.jpg\";s:5:\"video\";s:13:\"Fitness-2.mp4\";s:4:\"name\";s:10:\"Fitness 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:313;a:13:{s:2:\"id\";s:3:\"525\";s:6:\"handle\";s:11:\"Fitness.jpg\";s:5:\"video\";s:11:\"Fitness.mp4\";s:4:\"name\";s:8:\"Fitness \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:46:50\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:314;a:13:{s:2:\"id\";s:3:\"524\";s:6:\"handle\";s:9:\"Earth.jpg\";s:5:\"video\";s:9:\"Earth.mp4\";s:4:\"name\";s:6:\"Earth \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:315;a:13:{s:2:\"id\";s:3:\"523\";s:6:\"handle\";s:11:\"Space-2.jpg\";s:5:\"video\";s:11:\"Space-2.mp4\";s:4:\"name\";s:8:\"Space 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1440\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:316;a:13:{s:2:\"id\";s:3:\"522\";s:6:\"handle\";s:13:\"Asteroids.jpg\";s:5:\"video\";s:13:\"Asteroids.mp4\";s:4:\"name\";s:10:\"Asteroids \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:317;a:13:{s:2:\"id\";s:3:\"521\";s:6:\"handle\";s:9:\"Space.jpg\";s:5:\"video\";s:9:\"Space.mp4\";s:4:\"name\";s:6:\"Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:44:06\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:318;a:13:{s:2:\"id\";s:3:\"520\";s:6:\"handle\";s:10:\"People.jpg\";s:5:\"video\";s:10:\"People.mp4\";s:4:\"name\";s:7:\"People \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:319;a:13:{s:2:\"id\";s:3:\"519\";s:6:\"handle\";s:11:\"Walking.jpg\";s:5:\"video\";s:11:\"Walking.mp4\";s:4:\"name\";s:8:\"Walking \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:320;a:13:{s:2:\"id\";s:3:\"518\";s:6:\"handle\";s:19:\"Double-Exposure.jpg\";s:5:\"video\";s:19:\"Double-Exposure.mp4\";s:4:\"name\";s:16:\"Double Exposure \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:321;a:13:{s:2:\"id\";s:3:\"517\";s:6:\"handle\";s:8:\"Girl.jpg\";s:5:\"video\";s:8:\"Girl.mp4\";s:4:\"name\";s:5:\"Girl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1088\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:322;a:13:{s:2:\"id\";s:3:\"516\";s:6:\"handle\";s:17:\"Bengal-Lights.jpg\";s:5:\"video\";s:17:\"Bengal-Lights.mp4\";s:4:\"name\";s:14:\"Bengal Lights \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:42:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:323;a:13:{s:2:\"id\";s:3:\"515\";s:6:\"handle\";s:13:\"Swiping-2.jpg\";s:5:\"video\";s:13:\"Swiping-2.mp4\";s:4:\"name\";s:10:\"Swiping 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:324;a:13:{s:2:\"id\";s:3:\"514\";s:6:\"handle\";s:11:\"Mock-Up.jpg\";s:5:\"video\";s:11:\"Mock-Up.mp4\";s:4:\"name\";s:8:\"Mock Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:325;a:13:{s:2:\"id\";s:3:\"513\";s:6:\"handle\";s:13:\"Countdown.jpg\";s:5:\"video\";s:13:\"Countdown.mp4\";s:4:\"name\";s:10:\"Countdown \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:326;a:13:{s:2:\"id\";s:3:\"512\";s:6:\"handle\";s:18:\"Wall-Sketching.jpg\";s:5:\"video\";s:18:\"Wall-Sketching.mp4\";s:4:\"name\";s:15:\"Wall Sketching \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:327;a:13:{s:2:\"id\";s:3:\"511\";s:6:\"handle\";s:26:\"Typing-on-the-keyboard.jpg\";s:5:\"video\";s:26:\"Typing-on-the-keyboard.mp4\";s:4:\"name\";s:23:\"Typing on the keyboard \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:328;a:13:{s:2:\"id\";s:3:\"510\";s:6:\"handle\";s:11:\"Meeting.jpg\";s:5:\"video\";s:11:\"Meeting.mp4\";s:4:\"name\";s:8:\"Meeting \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:329;a:13:{s:2:\"id\";s:3:\"509\";s:6:\"handle\";s:11:\"Swiping.jpg\";s:5:\"video\";s:11:\"Swiping.mp4\";s:4:\"name\";s:8:\"Swiping \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:330;a:13:{s:2:\"id\";s:3:\"508\";s:6:\"handle\";s:9:\"Alarm.jpg\";s:5:\"video\";s:9:\"Alarm.mp4\";s:4:\"name\";s:6:\"Alarm \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1013\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:331;a:13:{s:2:\"id\";s:3:\"507\";s:6:\"handle\";s:13:\"Hey-World.jpg\";s:5:\"video\";s:13:\"Hey-World.mp4\";s:4:\"name\";s:10:\"Hey World \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:332;a:13:{s:2:\"id\";s:3:\"506\";s:6:\"handle\";s:28:\"Typing-on-the-keyboard-2.jpg\";s:5:\"video\";s:28:\"Typing-on-the-keyboard-2.mp4\";s:4:\"name\";s:25:\"Typing on the keyboard 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:39:19\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:333;a:13:{s:2:\"id\";s:3:\"505\";s:6:\"handle\";s:10:\"Valley.jpg\";s:5:\"video\";s:10:\"Valley.mp4\";s:4:\"name\";s:7:\"Valley \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:334;a:13:{s:2:\"id\";s:3:\"504\";s:6:\"handle\";s:9:\"Stars.jpg\";s:5:\"video\";s:9:\"Stars.mp4\";s:4:\"name\";s:6:\"Stars \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:335;a:13:{s:2:\"id\";s:3:\"503\";s:6:\"handle\";s:21:\"Car-in-the-forest.jpg\";s:5:\"video\";s:21:\"Car-in-the-forest.mp4\";s:4:\"name\";s:18:\"Car in the forest \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1012\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:336;a:13:{s:2:\"id\";s:3:\"502\";s:6:\"handle\";s:15:\"Aerial-Shot.jpg\";s:5:\"video\";s:15:\"Aerial-Shot.mp4\";s:4:\"name\";s:12:\"Aerial Shot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:35:27\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:337;a:13:{s:2:\"id\";s:3:\"501\";s:6:\"handle\";s:14:\"Disco-Ball.jpg\";s:5:\"video\";s:14:\"Disco-Ball.mp4\";s:4:\"name\";s:11:\"Disco Ball \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:338;a:13:{s:2:\"id\";s:3:\"500\";s:6:\"handle\";s:22:\"Man-Playing-Guitar.jpg\";s:5:\"video\";s:22:\"Man-Playing-Guitar.mp4\";s:4:\"name\";s:19:\"Man Playing Guitar \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:339;a:13:{s:2:\"id\";s:3:\"499\";s:6:\"handle\";s:14:\"Live-Music.jpg\";s:5:\"video\";s:14:\"Live-Music.mp4\";s:4:\"name\";s:11:\"Live Music \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:340;a:13:{s:2:\"id\";s:3:\"498\";s:6:\"handle\";s:12:\"Cheer-Up.jpg\";s:5:\"video\";s:12:\"Cheer-Up.mp4\";s:4:\"name\";s:9:\"Cheer Up \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:341;a:13:{s:2:\"id\";s:3:\"497\";s:6:\"handle\";s:14:\"Night-club.jpg\";s:5:\"video\";s:14:\"Night-club.mp4\";s:4:\"name\";s:11:\"Night club \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:33:16\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:342;a:13:{s:2:\"id\";s:3:\"496\";s:6:\"handle\";s:17:\"Cup-Of-Coffee.jpg\";s:5:\"video\";s:17:\"Cup-Of-Coffee.mp4\";s:4:\"name\";s:14:\"Cup Of Coffee \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:343;a:13:{s:2:\"id\";s:3:\"495\";s:6:\"handle\";s:7:\"Pot.jpg\";s:5:\"video\";s:7:\"Pot.mp4\";s:4:\"name\";s:4:\"Pot \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:344;a:13:{s:2:\"id\";s:3:\"494\";s:6:\"handle\";s:11:\"Grill-2.jpg\";s:5:\"video\";s:11:\"Grill-2.mp4\";s:4:\"name\";s:8:\"Grill 2 \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:345;a:13:{s:2:\"id\";s:3:\"493\";s:6:\"handle\";s:13:\"Rice-Bowl.jpg\";s:5:\"video\";s:13:\"Rice-Bowl.mp4\";s:4:\"name\";s:10:\"Rice Bowl \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1010\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:346;a:13:{s:2:\"id\";s:3:\"492\";s:6:\"handle\";s:9:\"Grill.jpg\";s:5:\"video\";s:9:\"Grill.mp4\";s:4:\"name\";s:6:\"Grill \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:30:48\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:347;a:13:{s:2:\"id\";s:3:\"491\";s:6:\"handle\";s:9:\"Water.jpg\";s:5:\"video\";s:9:\"Water.mp4\";s:4:\"name\";s:6:\"Water \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:348;a:13:{s:2:\"id\";s:3:\"490\";s:6:\"handle\";s:17:\"Feet-and-Sand.jpg\";s:5:\"video\";s:17:\"Feet-and-Sand.mp4\";s:4:\"name\";s:14:\"Feet and Sand \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:349;a:13:{s:2:\"id\";s:3:\"489\";s:6:\"handle\";s:9:\"Ocean.jpg\";s:5:\"video\";s:9:\"Ocean.mp4\";s:4:\"name\";s:6:\"Ocean \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:350;a:13:{s:2:\"id\";s:3:\"488\";s:6:\"handle\";s:9:\"Waves.jpg\";s:5:\"video\";s:9:\"Waves.mp4\";s:4:\"name\";s:6:\"Waves \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:24:15\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:351;a:13:{s:2:\"id\";s:3:\"487\";s:6:\"handle\";s:10:\"Hearts.jpg\";s:5:\"video\";s:10:\"Hearts.mp4\";s:4:\"name\";s:7:\"Hearts \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:352;a:13:{s:2:\"id\";s:3:\"486\";s:6:\"handle\";s:12:\"Octagons.jpg\";s:5:\"video\";s:12:\"Octagons.mp4\";s:4:\"name\";s:9:\"Octagons \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:353;a:13:{s:2:\"id\";s:3:\"485\";s:6:\"handle\";s:11:\"Squares.jpg\";s:5:\"video\";s:11:\"Squares.mp4\";s:4:\"name\";s:8:\"Squares \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:354;a:13:{s:2:\"id\";s:3:\"484\";s:6:\"handle\";s:12:\"Pink-ink.jpg\";s:5:\"video\";s:12:\"Pink-ink.mp4\";s:4:\"name\";s:9:\"Pink ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:355;a:13:{s:2:\"id\";s:3:\"483\";s:6:\"handle\";s:22:\"Blurred-Background.jpg\";s:5:\"video\";s:22:\"Blurred-Background.mp4\";s:4:\"name\";s:19:\"Blurred Background \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:356;a:13:{s:2:\"id\";s:3:\"482\";s:6:\"handle\";s:20:\"Blinking-bubbles.jpg\";s:5:\"video\";s:20:\"Blinking-bubbles.mp4\";s:4:\"name\";s:17:\"Blinking bubbles \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:357;a:13:{s:2:\"id\";s:3:\"481\";s:6:\"handle\";s:13:\"Fireworks.jpg\";s:5:\"video\";s:13:\"Fireworks.mp4\";s:4:\"name\";s:10:\"Fireworks \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:358;a:13:{s:2:\"id\";s:3:\"480\";s:6:\"handle\";s:12:\"Dark-ink.jpg\";s:5:\"video\";s:12:\"Dark-ink.mp4\";s:4:\"name\";s:9:\"Dark ink \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-04-23 11:20:38\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:359;a:13:{s:2:\"id\";s:3:\"238\";s:6:\"handle\";s:12:\"Mt_Baker.jpg\";s:5:\"video\";s:12:\"Mt_Baker.mp4\";s:4:\"name\";s:9:\"Mt Baker \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:360;a:13:{s:2:\"id\";s:3:\"237\";s:6:\"handle\";s:16:\"Two-Swimmers.jpg\";s:5:\"video\";s:16:\"Two-Swimmers.mp4\";s:4:\"name\";s:13:\"Two Swimmers \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:361;a:13:{s:2:\"id\";s:3:\"236\";s:6:\"handle\";s:14:\"Boats_Maze.jpg\";s:5:\"video\";s:14:\"Boats_Maze.mp4\";s:4:\"name\";s:11:\"Boats Maze \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:362;a:13:{s:2:\"id\";s:3:\"235\";s:6:\"handle\";s:18:\"Candolim-Beach.jpg\";s:5:\"video\";s:18:\"Candolim-Beach.mp4\";s:4:\"name\";s:15:\"Candolim Beach \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:363;a:13:{s:2:\"id\";s:3:\"234\";s:6:\"handle\";s:17:\"Working-Space.jpg\";s:5:\"video\";s:17:\"Working-Space.mp4\";s:4:\"name\";s:14:\"Working Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:364;a:13:{s:2:\"id\";s:3:\"233\";s:6:\"handle\";s:9:\"Wavez.jpg\";s:5:\"video\";s:9:\"Wavez.mp4\";s:4:\"name\";s:6:\"Wavez \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:365;a:13:{s:2:\"id\";s:3:\"232\";s:6:\"handle\";s:17:\"Coconut-Grove.jpg\";s:5:\"video\";s:17:\"Coconut-Grove.mp4\";s:4:\"name\";s:14:\"Coconut Grove \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:366;a:13:{s:2:\"id\";s:3:\"231\";s:6:\"handle\";s:19:\"Very-Open-Space.jpg\";s:5:\"video\";s:19:\"Very-Open-Space.mp4\";s:4:\"name\";s:16:\"Very Open Space \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:367;a:13:{s:2:\"id\";s:3:\"230\";s:6:\"handle\";s:14:\"Office-Day.jpg\";s:5:\"video\";s:14:\"Office-Day.mp4\";s:4:\"name\";s:11:\"Office Day \";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:368;a:13:{s:2:\"id\";s:3:\"229\";s:6:\"handle\";s:12:\"The-Hill.jpg\";s:5:\"video\";s:12:\"The-Hill.mp4\";s:4:\"name\";s:9:\"The Hill \";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:0:\"\";s:5:\"added\";s:19:\"2018-07-16 15:34:55\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"3\";}i:369;a:13:{s:2:\"id\";s:3:\"339\";s:6:\"handle\";s:19:\"best_price_dark.jpg\";s:5:\"video\";s:19:\"best_price_dark.mp4\";s:4:\"name\";s:15:\"best_price_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"best_price_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:370;a:13:{s:2:\"id\";s:3:\"337\";s:6:\"handle\";s:27:\"limited_time_offer_dark.jpg\";s:5:\"video\";s:27:\"limited_time_offer_dark.mp4\";s:4:\"name\";s:23:\"limited_time_offer_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:23:\"limited_time_offer_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:371;a:13:{s:2:\"id\";s:3:\"336\";s:6:\"handle\";s:26:\"slider_revolution_dark.jpg\";s:5:\"video\";s:26:\"slider_revolution_dark.mp4\";s:4:\"name\";s:22:\"slider_revolution_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:22:\"slider_revolution_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:372;a:13:{s:2:\"id\";s:3:\"335\";s:6:\"handle\";s:19:\"mick_brown_dark.jpg\";s:5:\"video\";s:19:\"mick_brown_dark.mp4\";s:4:\"name\";s:15:\"mick_brown_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"mick_brown_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-26 09:24:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:373;a:13:{s:2:\"id\";s:3:\"334\";s:6:\"handle\";s:14:\"sales_dark.jpg\";s:5:\"video\";s:14:\"sales_dark.mp4\";s:4:\"name\";s:10:\"sales_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:10:\"sales_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:374;a:13:{s:2:\"id\";s:3:\"333\";s:6:\"handle\";s:21:\"robert_smith_dark.jpg\";s:5:\"video\";s:21:\"robert_smith_dark.mp4\";s:4:\"name\";s:17:\"robert_smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"robert_smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:375;a:13:{s:2:\"id\";s:3:\"332\";s:6:\"handle\";s:21:\"product_name_dark.jpg\";s:5:\"video\";s:21:\"product_name_dark.mp4\";s:4:\"name\";s:17:\"product_name_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"product_name_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:376;a:13:{s:2:\"id\";s:3:\"331\";s:6:\"handle\";s:21:\"high_quality_dark.jpg\";s:5:\"video\";s:21:\"high_quality_dark.mp4\";s:4:\"name\";s:17:\"high_quality_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"high_quality_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:377;a:13:{s:2:\"id\";s:3:\"330\";s:6:\"handle\";s:24:\"robert_johnson_light.jpg\";s:5:\"video\";s:24:\"robert_johnson_light.mp4\";s:4:\"name\";s:20:\"robert_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"robert_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:378;a:13:{s:2:\"id\";s:3:\"329\";s:6:\"handle\";s:21:\"jake_collins_dark.jpg\";s:5:\"video\";s:21:\"jake_collins_dark.mp4\";s:4:\"name\";s:17:\"jake_collins_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"jake_collins_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:32:18\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:379;a:13:{s:2:\"id\";s:3:\"328\";s:6:\"handle\";s:22:\"daniele_wood_light.jpg\";s:5:\"video\";s:22:\"daniele_wood_light.mp4\";s:4:\"name\";s:18:\"daniele_wood_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"daniele_wood_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-12 08:31:30\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:380;a:13:{s:2:\"id\";s:3:\"327\";s:6:\"handle\";s:23:\"michael_blake_light.jpg\";s:5:\"video\";s:23:\"michael_blake_light.mp4\";s:4:\"name\";s:19:\"michael_blake_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"michael_blake_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:381;a:13:{s:2:\"id\";s:3:\"326\";s:6:\"handle\";s:22:\"product_name_light.jpg\";s:5:\"video\";s:22:\"product_name_light.mp4\";s:4:\"name\";s:18:\"product_name_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"product_name_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:382;a:13:{s:2:\"id\";s:3:\"325\";s:6:\"handle\";s:24:\"rebecca_cooper_light.jpg\";s:5:\"video\";s:24:\"rebecca_cooper_light.mp4\";s:4:\"name\";s:20:\"rebecca_cooper_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:20:\"rebecca_cooper_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:383;a:13:{s:2:\"id\";s:3:\"324\";s:6:\"handle\";s:28:\"limited_time_offer_light.jpg\";s:5:\"video\";s:28:\"limited_time_offer_light.mp4\";s:4:\"name\";s:24:\"limited_time_offer_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:24:\"limited_time_offer_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:384;a:13:{s:2:\"id\";s:3:\"322\";s:6:\"handle\";s:22:\"jake_michael_light.jpg\";s:5:\"video\";s:22:\"jake_michael_light.mp4\";s:4:\"name\";s:18:\"jake_michael_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"jake_michael_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:385;a:13:{s:2:\"id\";s:3:\"321\";s:6:\"handle\";s:23:\"colin_johnson_light.jpg\";s:5:\"video\";s:23:\"colin_johnson_light.mp4\";s:4:\"name\";s:19:\"colin_johnson_light\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:19:\"colin_johnson_light\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-03-05 09:20:21\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:386;a:13:{s:2:\"id\";s:3:\"320\";s:6:\"handle\";s:21:\"colin_morris_dark.jpg\";s:5:\"video\";s:21:\"colin_morris_dark.mp4\";s:4:\"name\";s:17:\"colin_morris_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"colin_morris_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:387;a:13:{s:2:\"id\";s:3:\"319\";s:6:\"handle\";s:22:\"justin_cooper_dark.jpg\";s:5:\"video\";s:22:\"justin_cooper_dark.mp4\";s:4:\"name\";s:18:\"justin_cooper_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"justin_cooper_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:388;a:13:{s:2:\"id\";s:3:\"318\";s:6:\"handle\";s:21:\"james-dodson_dark.jpg\";s:5:\"video\";s:21:\"james-dodson_dark.mp4\";s:4:\"name\";s:17:\"james-dodson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"james-dodson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:389;a:13:{s:2:\"id\";s:3:\"317\";s:6:\"handle\";s:23:\"robert_sanders_dark.jpg\";s:5:\"video\";s:23:\"robert_sanders_dark.mp4\";s:4:\"name\";s:19:\"robert_sanders_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"robert_sanders_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:390;a:13:{s:2:\"id\";s:3:\"316\";s:6:\"handle\";s:21:\"emily_carney_dark.jpg\";s:5:\"video\";s:21:\"emily_carney_dark.mp4\";s:4:\"name\";s:17:\"emily_carney_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"emily_carney_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:391;a:13:{s:2:\"id\";s:3:\"315\";s:6:\"handle\";s:22:\"michael-smith_dark.jpg\";s:5:\"video\";s:22:\"michael-smith_dark.mp4\";s:4:\"name\";s:18:\"michael-smith_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"michael-smith_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:392;a:13:{s:2:\"id\";s:3:\"314\";s:6:\"handle\";s:23:\"sandra_johnson_dark.jpg\";s:5:\"video\";s:23:\"sandra_johnson_dark.mp4\";s:4:\"name\";s:19:\"sandra_johnson_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:19:\"sandra_johnson_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:393;a:13:{s:2:\"id\";s:3:\"313\";s:6:\"handle\";s:22:\"robert_bolton_dark.jpg\";s:5:\"video\";s:22:\"robert_bolton_dark.mp4\";s:4:\"name\";s:18:\"robert_bolton_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:18:\"robert_bolton_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-21 09:07:08\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:394;a:13:{s:2:\"id\";s:3:\"312\";s:6:\"handle\";s:25:\"elegant_captions_dark.png\";s:5:\"video\";s:25:\"elegant_captions_dark.mp4\";s:4:\"name\";s:21:\"elegant_captions_dark\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:21:\"elegant_captions_dark\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-18 14:41:45\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:395;a:13:{s:2:\"id\";s:3:\"311\";s:6:\"handle\";s:19:\"Caption_Dark_06.png\";s:5:\"video\";s:19:\"Caption_Dark_06.mp4\";s:4:\"name\";s:15:\"Caption_Dark_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_06\";s:5:\"width\";s:3:\"414\";s:6:\"height\";s:3:\"225\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:396;a:13:{s:2:\"id\";s:3:\"310\";s:6:\"handle\";s:19:\"Header_Light_02.png\";s:5:\"video\";s:19:\"Header_Light_02.mp4\";s:4:\"name\";s:15:\"Header_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:397;a:13:{s:2:\"id\";s:3:\"309\";s:6:\"handle\";s:21:\"Columns_4_Dark_01.png\";s:5:\"video\";s:21:\"Columns_4_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_4_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_4_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:398;a:13:{s:2:\"id\";s:3:\"308\";s:6:\"handle\";s:18:\"Header_Dark_01.png\";s:5:\"video\";s:18:\"Header_Dark_01.mp4\";s:4:\"name\";s:14:\"Header_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:399;a:13:{s:2:\"id\";s:3:\"307\";s:6:\"handle\";s:19:\"Caption_Dark_03.png\";s:5:\"video\";s:19:\"Caption_Dark_03.mp4\";s:4:\"name\";s:15:\"Caption_Dark_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:400;a:13:{s:2:\"id\";s:3:\"306\";s:6:\"handle\";s:21:\"Columns_3_Dark_01.png\";s:5:\"video\";s:21:\"Columns_3_Dark_01.mp4\";s:4:\"name\";s:17:\"Columns_3_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"Columns_3_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:401;a:13:{s:2:\"id\";s:3:\"305\";s:6:\"handle\";s:19:\"Caption_Dark_05.png\";s:5:\"video\";s:19:\"Caption_Dark_05.mp4\";s:4:\"name\";s:15:\"Caption_Dark_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_05\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:402;a:13:{s:2:\"id\";s:3:\"304\";s:6:\"handle\";s:20:\"Caption_Light_06.png\";s:5:\"video\";s:20:\"Caption_Light_06.mp4\";s:4:\"name\";s:16:\"Caption_Light_06\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_06\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:403;a:13:{s:2:\"id\";s:3:\"303\";s:6:\"handle\";s:19:\"Header_Light_01.png\";s:5:\"video\";s:19:\"Header_Light_01.mp4\";s:4:\"name\";s:15:\"Header_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:15:\"Header_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:404;a:13:{s:2:\"id\";s:3:\"302\";s:6:\"handle\";s:20:\"Caption_Light_03.png\";s:5:\"video\";s:20:\"Caption_Light_03.mp4\";s:4:\"name\";s:16:\"Caption_Light_03\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_03\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:405;a:13:{s:2:\"id\";s:3:\"301\";s:6:\"handle\";s:19:\"Caption_Dark_01.png\";s:5:\"video\";s:19:\"Caption_Dark_01.mp4\";s:4:\"name\";s:15:\"Caption_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:406;a:13:{s:2:\"id\";s:3:\"300\";s:6:\"handle\";s:21:\"PromoCode_Dark_01.png\";s:5:\"video\";s:21:\"PromoCode_Dark_01.mp4\";s:4:\"name\";s:17:\"PromoCode_Dark_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:17:\"PromoCode_Dark_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:407;a:13:{s:2:\"id\";s:3:\"299\";s:6:\"handle\";s:19:\"Caption_Dark_02.png\";s:5:\"video\";s:19:\"Caption_Dark_02.mp4\";s:4:\"name\";s:15:\"Caption_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:408;a:13:{s:2:\"id\";s:3:\"298\";s:6:\"handle\";s:18:\"Header_Dark_02.png\";s:5:\"video\";s:18:\"Header_Dark_02.mp4\";s:4:\"name\";s:14:\"Header_Dark_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:14:\"Header_Dark_02\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:409;a:13:{s:2:\"id\";s:3:\"297\";s:6:\"handle\";s:22:\"Columns_3_Light_01.png\";s:5:\"video\";s:22:\"Columns_3_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_3_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_3_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:410;a:13:{s:2:\"id\";s:3:\"296\";s:6:\"handle\";s:20:\"Caption_Light_01.png\";s:5:\"video\";s:20:\"Caption_Light_01.mp4\";s:4:\"name\";s:16:\"Caption_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:411;a:13:{s:2:\"id\";s:3:\"295\";s:6:\"handle\";s:19:\"Caption_Dark_04.png\";s:5:\"video\";s:19:\"Caption_Dark_04.mp4\";s:4:\"name\";s:15:\"Caption_Dark_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}}s:11:\"description\";s:15:\"Caption_Dark_04\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:412;a:13:{s:2:\"id\";s:3:\"294\";s:6:\"handle\";s:20:\"Caption_Light_02.png\";s:5:\"video\";s:20:\"Caption_Light_02.mp4\";s:4:\"name\";s:16:\"Caption_Light_02\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_02\";s:5:\"width\";s:3:\"828\";s:6:\"height\";s:3:\"450\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:413;a:13:{s:2:\"id\";s:3:\"293\";s:6:\"handle\";s:20:\"Caption_Light_04.png\";s:5:\"video\";s:20:\"Caption_Light_04.mp4\";s:4:\"name\";s:16:\"Caption_Light_04\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_04\";s:5:\"width\";s:4:\"1104\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:414;a:13:{s:2:\"id\";s:3:\"292\";s:6:\"handle\";s:22:\"Columns_4_Light_01.png\";s:5:\"video\";s:22:\"Columns_4_Light_01.mp4\";s:4:\"name\";s:18:\"Columns_4_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"Columns_4_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:415;a:13:{s:2:\"id\";s:3:\"291\";s:6:\"handle\";s:20:\"Caption_Light_05.png\";s:5:\"video\";s:20:\"Caption_Light_05.mp4\";s:4:\"name\";s:16:\"Caption_Light_05\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:16:\"Caption_Light_05\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}i:416;a:13:{s:2:\"id\";s:3:\"290\";s:6:\"handle\";s:22:\"PromoCode_Light_01.png\";s:5:\"video\";s:22:\"PromoCode_Light_01.mp4\";s:4:\"name\";s:18:\"PromoCode_Light_01\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}}s:11:\"description\";s:18:\"PromoCode_Light_01\";s:5:\"width\";s:3:\"552\";s:6:\"height\";s:3:\"300\";s:7:\"version\";s:3:\"1.0\";s:14:\"plugin_version\";s:5:\"6.0.0\";s:5:\"added\";s:19:\"2019-02-14 13:18:35\";s:6:\"active\";s:1:\"1\";s:4:\"type\";s:1:\"4\";}}s:4:\"tags\";a:18:{i:28;a:3:{s:2:\"id\";s:2:\"28\";s:6:\"handle\";s:11:\"abstraction\";s:4:\"name\";s:11:\"Abstraction\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}i:5;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:20;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:21;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:25;a:3:{s:2:\"id\";s:2:\"25\";s:6:\"handle\";s:4:\"dark\";s:4:\"name\";s:4:\"Dark\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:16;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}i:26;a:3:{s:2:\"id\";s:2:\"26\";s:6:\"handle\";s:5:\"light\";s:4:\"name\";s:5:\"Light\";}i:18;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:4;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:19;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:23;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:3;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:24;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:22;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:29;a:3:{s:2:\"id\";s:2:\"29\";s:6:\"handle\";s:5:\"space\";s:4:\"name\";s:5:\"Space\";}i:27;a:3:{s:2:\"id\";s:2:\"27\";s:6:\"handle\";s:5:\"sport\";s:4:\"name\";s:5:\"Sport\";}}}','no'),(378005,'revslider-templates-check','1663300527','yes'),(378008,'revslider-templates-hash','8a8dddba3b072add87a290cc286cfcf6','yes'),(378009,'rs-templates-new','','no'); INSERT INTO `wp_options` VALUES (378010,'rs-templates','{\"hash\":\"2a291144014b682e6d56ed934a555cdc\",\"slider\":{\"0\":{\"id\":\"1\",\"title\":\"Classic Carousel\",\"alias\":\"classic-carousel\",\"zip\":\"classic-carousel.zip\",\"uid\":\"146a01dd380c0cdee85c4456ee68cd84\",\"img\":\"classic-carousel\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/carousel-slider-plugin\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"Our classic, full-width carousel example. Drag, swipe or click to navigate!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2016-02-22 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"1\":{\"id\":\"2\",\"title\":\"Classic Slider\",\"alias\":\"classicslider\",\"zip\":\"classicslider.zip\",\"uid\":\"a0d6a9248c9066b404ba0f1cdadc5cf2\",\"img\":\"classicslider\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-slideshow-gallery\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\" A classic slideshow example with timer, bullets and arrow navigation.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"2\":{\"id\":\"3\",\"title\":\"Content Tabs\",\"alias\":\"contenttabs\",\"zip\":\"contenttabs.zip\",\"uid\":\"e02e91604b690123a3d07a65582c4fd0\",\"img\":\"contenttabs\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-content-tabs-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1024\",\"height\":\"600\",\"description\":\" An auto-size slider with a cool split-text animation effect. Navigate with vertical bullets and thumbs.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"3\":{\"id\":\"4\",\"title\":\"Facebook Feed\",\"alias\":\"facebook-feed\",\"zip\":\"facebook-feed.zip\",\"uid\":\"5506431d5b1babcb25dcf52c508d42e3\",\"img\":\"facebook-feed\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-facebook-feed\\/\",\"version\":\"1.0.1\",\"required\":\"5.0.5\",\"width\":\"800\",\"height\":\"600\",\"description\":\" This slider is automatically populated by a Facebook stream. Just one slide is needed to show a whole feed!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"The content source is set to \\\"Facebook Stream\\\"<\\/a>. Make sure to input your correct API information in the slider settings.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"socialmedia\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"4\":{\"id\":\"5\",\"title\":\"Fashion\",\"alias\":\"fashion\",\"zip\":\"fashion.zip\",\"uid\":\"4f4b914d6db35e19101ff003c4e7ea3a\",\"img\":\"fashion\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-one-page-slider-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\" A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"5\":{\"id\":\"6\",\"title\":\"Flickr Gallery\",\"alias\":\"flickr-gallery\",\"zip\":\"flickr-gallery.zip\",\"uid\":\"ad85cfac7acfa678e6a1b8febfee51ed\",\"img\":\"flickr-gallery\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-flickr-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"800\",\"height\":\"640\",\"description\":\" This slider is automatically populated by a Flickr stream. Just one slide is needed to show a whole feed!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"socialmedia\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"6\":{\"id\":\"7\",\"title\":\"Gym\",\"alias\":\"gym\",\"zip\":\"gym.zip\",\"uid\":\"e4d81f13f96fb9bc905f4ad89615032b\",\"img\":\"gym\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/one-page-wordpress-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the slider menu.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.Some content is in \\\"Static \\/ Global Layers\\\"<\\/a><\\/span>\\r\\nInstructions for changing the menu<\\/a>.<\\/span><\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"7\":{\"id\":\"8\",\"title\":\"Highlight Carousel\",\"alias\":\"highlight-carousel\",\"zip\":\"highlight-carousel.zip\",\"uid\":\"ada52163f723a942f782351fa0396b3d\",\"img\":\"highlight-carousel\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-swipe-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"800\",\"height\":\"720\",\"description\":\" A swipe-controlled carousel with an additional tab-based navigation.<\\/span>\\r\\n<\\/span>\\r\\n\",\"cat\":\"Revolution Base\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"8\":{\"id\":\"9\",\"title\":\"Highlight Showcase\",\"alias\":\"highlight-showcase\",\"zip\":\"highlight-showcase.zip\",\"uid\":\"2bfe0bd410fb48fec9d942eab1e21530\",\"img\":\"highlight-showcase\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-parallax-slideshow\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1230\",\"height\":\"720\",\"description\":\"A tab-based navigation, a slideshow timer and cool animations make this slider interesting!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"9\":{\"id\":\"10\",\"title\":\"Image Hero\",\"alias\":\"image-hero\",\"zip\":\"imagehero.zip\",\"uid\":\"7db18781d44f2adc28c962440894aac1\",\"img\":\"imagehero\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-hero-image\\/\",\"version\":\"1.0.2\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"A commonly used full-width image hero block with texts.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"10\":{\"id\":\"11\",\"title\":\"Instagram Gallery\",\"alias\":\"insta-gallery\",\"zip\":\"insta-gallery.zip\",\"uid\":\"711732b0d42ec2b57818a2b9b1d86cba\",\"img\":\"insta-gallery\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-instagram-gallery\\/\",\"version\":\"1.0.1\",\"required\":\"5.0.5\",\"width\":\"640\",\"height\":\"640\",\"description\":\"This slider is automatically populated by a Instagram stream. Just one slide is needed to show a whole feed!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"The content source is set to \\\"Instagram Stream\\\"<\\/a>. Make sure to input your correct API information in the slider settings.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"socialmedia\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"11\":{\"id\":\"12\",\"title\":\"Levano Restaurant Bar\",\"alias\":\"levanorestaurantbar\",\"zip\":\"levanorestaurantbar.zip\",\"uid\":\"4178f837db67d1b2eb6cb5840bbd0b42\",\"img\":\"levanorestaurantbar\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-front-page-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.Some content is in \\\"Static \\/ Global Layers\\\"<\\/a><\\/span>\\r\\nInstructions for changing the menu<\\/a>.<\\/span><\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"12\":{\"id\":\"13\",\"title\":\"Main Feature Slider\",\"alias\":\"mainfeature\",\"zip\":\"mainfeature.zip\",\"uid\":\"1e002a3230ab00095bedc6f60393ee7f\",\"img\":\"mainfeature\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1230\",\"height\":\"750\",\"description\":\" A slightly stripped down version of the main preview slider.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Just edit the slides to change images and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"13\":{\"id\":\"14\",\"title\":\"Media Gallery Two\",\"alias\":\"media-gallery-two\",\"zip\":\"media-gallery-two.zip\",\"uid\":\"d002f1b1b55805f9322c264c5504ba5a\",\"img\":\"media-gallery-two\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-media-gallery-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.2.22\",\"width\":\"1230\",\"height\":\"692\",\"description\":\"A media gallery example with Vimeo, HTML5 and Youtube videos.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Just edit the slides to change media and titles.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"14\":{\"id\":\"15\",\"title\":\"Media Carousel Autoplay\",\"alias\":\"media-carousel-autoplay\",\"zip\":\"media-carousel-autoplay.zip\",\"uid\":\"393d7875b1cc9d933378b35e4f645d76\",\"img\":\"media-carousel-autoplay\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-media-gallery\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"720\",\"height\":\"405\",\"description\":\"A media carousel with \\\"autoplay\\\" activated. Swipe or click tabs to navigate the slider.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Just edit the slides to change media and caption texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"15\":{\"id\":\"16\",\"title\":\"News Background Video\",\"alias\":\"news-background-video\",\"zip\":\"news-bg-video.zip\",\"uid\":\"a0efe44ac3af0f958b3f84c816a08272\",\"img\":\"news-bg-video\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-content-blocks\\/\",\"version\":\"1.0.2\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"500\",\"description\":\"A hero block with HTML5 background video that plays when entering the screen.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background video and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"16\":{\"id\":\"17\",\"title\":\"News Gallery\",\"alias\":\"news-gallery\",\"zip\":\"news-gallery.zip\",\"uid\":\"3a069c3b286dbb9ee435563f747e3300\",\"img\":\"news-gallery\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-news-rotator\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"500\",\"description\":\"A news gallery slideshow with tab navigation. Great for any blog!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Just edit the slides to change images and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"17\":{\"id\":\"18\",\"title\":\"News Gallery Post Based\",\"alias\":\"news-gallery-post-based\",\"zip\":\"news-gallery-post-based.zip\",\"uid\":\"32fe05b1039c29ab9420bfd15aec5488\",\"img\":\"news-gallery-post-based\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-post-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"500\",\"description\":\" This slider is automatically populated by WordPress posts.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"The content source is set to \\\"Post-Based Slider\\\"<\\/a>. Make sure to select the post type you want to display in the slider settings.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"postbased\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"18\":{\"id\":\"19\",\"title\":\"News Hero\",\"alias\":\"news-hero\",\"zip\":\"news-hero.zip\",\"uid\":\"96a0385538a17c8c81ed8175740f70ea\",\"img\":\"news-hero\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-content-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"500\",\"description\":\"A image hero block with ken burns effect.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"19\":{\"id\":\"20\",\"title\":\"News Video\",\"alias\":\"news-video\",\"zip\":\"news-video.zip\",\"uid\":\"f901e9e16e0363248156c2209eb584e9\",\"img\":\"news-video\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-content-blocks\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"500\",\"description\":\"A Vimeo background video hero block with play \\/ pause buttons.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content hero slider. Just edit the slide to change the video and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"20\":{\"id\":\"21\",\"title\":\"Newsletter Hero\",\"alias\":\"newsletter-hero\",\"zip\":\"newsletter-hero.zip\",\"uid\":\"6290a9864d8c4c6311784586ed1cc5fe\",\"img\":\"newsletter-hero\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-newsletter-signup\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"This hero block uses a custom styled Mailchimp newsletter signup field.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image, texts, and Mailchimp code<\\/a>.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"21\":{\"id\":\"22\",\"title\":\"Not Generic\",\"alias\":\"notgeneric\",\"zip\":\"notgeneric.zip\",\"uid\":\"9d87ba95e02210a9f82387add2ceadf9\",\"img\":\"notgeneric\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-fullscreen-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A full-screen slider with a layer based navigation and sleek content elements.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.Some content is in \\\"Static \\/ Global Layers\\\"<\\/a><\\/span>\\r\\nInstructions for changing the menu<\\/a>.<\\/span><\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"22\":{\"id\":\"23\",\"title\":\"Photography\",\"alias\":\"photography\",\"zip\":\"photography.zip\",\"uid\":\"1b2072547afb75e49f33b016751ed360\",\"img\":\"photography\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photography-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.Some content is in \\\"Static \\/ Global Layers\\\"<\\/a><\\/span>\\r\\nInstructions for changing the menu<\\/a>.<\\/span><\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"23\":{\"id\":\"24\",\"title\":\"Photography Carousel\",\"alias\":\"photography-carousel\",\"zip\":\"photography-carousel.zip\",\"uid\":\"9a84b859ba23dc49ba8784e3a86545fa\",\"img\":\"photography-carousel\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1024\",\"height\":\"868\",\"description\":\"A front-page carousel that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.Some content is in \\\"Static \\/ Global Layers\\\"<\\/a><\\/span>\\r\\nInstructions for changing the menu<\\/a>.<\\/span><\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"24\":{\"id\":\"25\",\"title\":\"Search Form Hero\",\"alias\":\"search-form-hero\",\"zip\":\"search-form-hero.zip\",\"uid\":\"e09eb1bd0f22b3a2b02a1aa251dd1f3e\",\"img\":\"search-form-hero\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-search-form-hero\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"This hero block uses a custom styled input field to show search results on a WordPress site.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image, texts, and search field code.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"25\":{\"id\":\"26\",\"title\":\"Showcase Carousel\",\"alias\":\"showcasecarousel\",\"zip\":\"showcasecarousel.zip\",\"uid\":\"c5ca218398331bd2c064efc2f62eae56\",\"img\":\"showcasecarousel\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-cover-flow-gallery\\/\",\"version\":\"1.0.1\",\"required\":\"5.0.5\",\"width\":\"600\",\"height\":\"600\",\"description\":\"A fancy carousel that rotates, fades and scales slider items.<\\/span>\\r\\n<\\/span>\\r\\n\",\"setup_notes\":\"This is a \\\"Default\\\" content carousel. Just edit the slides to change images and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"26\":{\"id\":\"27\",\"title\":\"Sports Hero\",\"alias\":\"sports-hero\",\"zip\":\"sportshero.zip\",\"uid\":\"8de7a145f32a362d618d2595ffa2f724\",\"img\":\"sportshero\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-image-hero\\/\",\"version\":\"1.0.2\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"720\",\"description\":\"An sports themed image hero block with buttons.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"27\":{\"id\":\"28\",\"title\":\"Twitter Feed\",\"alias\":\"twitter-feed\",\"zip\":\"twitter-feed.zip\",\"uid\":\"efbfc2af5da5258e7b7bed8598e483cc\",\"img\":\"twitter-feed\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-twitter-feed\\/\",\"version\":\"1.0.1\",\"required\":\"5.0.5\",\"width\":\"800\",\"height\":\"640\",\"description\":\" This slider is automatically populated by a Twitter stream. Just one slide is needed to show a whole feed!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"The content source is set to \\\"Twitter Stream\\\"<\\/a>. Make sure to input your correct API information in the slider settings.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"socialmedia\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"28\":{\"id\":\"29\",\"title\":\"Vimeo Gallery\",\"alias\":\"vimeo-gallery\",\"zip\":\"vimeo-gallery.zip\",\"uid\":\"fa824ce1ff3942ec268fc9eda60df539\",\"img\":\"vimeo-gallery\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-vimeo-gallery\\/\",\"version\":\"1.0.1\",\"required\":\"5.0.5\",\"width\":\"1230\",\"height\":\"692\",\"description\":\"This slider is automatically populated by a Vimeo stream. Just one slide is needed to show a whole feed!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"The content source is set to \\\"Vimeo Stream\\\"<\\/a>. Make sure to input your correct API information in the slider settings.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"socialmedia\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"29\":{\"id\":\"30\",\"title\":\"Vimeo Hero\",\"alias\":\"vimeohero\",\"zip\":\"vimeohero.zip\",\"uid\":\"c575575f96173d88589cddcb06120b77\",\"img\":\"vimeohero\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-hero-vimeo\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"A commonly used Vimeo video background hero block.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background video and texts.<\\/span>\\r\\nScreencast for mobile video<\\/a> considerations.<\\/a>\\r\\n\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"30\":{\"id\":\"31\",\"title\":\"Web Product Dark\",\"alias\":\"web-product-dark\",\"zip\":\"web-product-dark.zip\",\"uid\":\"39b872cf0608e63c3a503e58374dc30a\",\"img\":\"web-product-dark\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-frontpage-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1400\",\"height\":\"868\",\"description\":\"A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.Some content is in \\\"Static \\/ Global Layers\\\"<\\/a><\\/span>\\r\\nInstructions for changing the menu<\\/a>.<\\/span><\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"31\":{\"id\":\"32\",\"title\":\"Web Product Dark Hero\",\"alias\":\"web-product-dark-hero\",\"zip\":\"web-product-dark-hero.zip\",\"uid\":\"b6784e8925221f36677217979d26e6f0\",\"img\":\"web-product-dark-hero\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-header-image\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1400\",\"height\":\"768\",\"description\":\"A modern hero block with three common devices. The screens of each device can be changed easily!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"32\":{\"id\":\"33\",\"title\":\"Web Product Light Hero\",\"alias\":\"web-product-light-hero\",\"zip\":\"web-product-light-hero.zip\",\"uid\":\"428e65d6aaa6ef775429989d50516492\",\"img\":\"web-product-light-hero\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/hero-image-wordpress\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1400\",\"height\":\"768\",\"description\":\"A modern hero block with three common devices. The screens of each device can be changed easily!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content hero slider. Just edit the slide to change the image and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"33\":{\"id\":\"34\",\"title\":\"Web Product Light\",\"alias\":\"webproductlight\",\"zip\":\"webproductlight.zip\",\"uid\":\"fa23dab5bf1139c6393828647a9de4e0\",\"img\":\"webproductlight\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-cover-page\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1400\",\"height\":\"868\",\"description\":\"A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.Some content is in \\\"Static \\/ Global Layers\\\"<\\/a><\\/span>\\r\\nInstructions for changing the menu<\\/a>.<\\/span><\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"34\":{\"id\":\"35\",\"title\":\"Youtube Gallery\",\"alias\":\"youtube-gallery\",\"zip\":\"youtube-gallery.zip\",\"uid\":\"ee9e4928ac74f5f0c0b697ce708f5aa7\",\"img\":\"youtube-gallery\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-youtube-gallery\\/\",\"version\":\"1.0.1\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\" This slider is automatically populated by a YouTube stream. Just one slide is needed to show a whole feed!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"The content source is set to \\\"YouTube Stream\\\"<\\/a>. Make sure to input your correct API information in the slider settings.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"socialmedia\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"35\":{\"id\":\"36\",\"title\":\"Youtube Hero\",\"alias\":\"youtubehero\",\"zip\":\"youtubehero.zip\",\"uid\":\"e0b2c12a45841bdf21cb96305f2c85bf\",\"img\":\"youtubehero\\/slider.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-youtube-header\\/\",\"version\":\"1.0.3\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"A YouTube video background hero block.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background video and texts.<\\/span>\\r\\nScreencast for mobile video<\\/a> considerations.<\\/a>\\r\\n\\r\\nLearn how to enable sound for the background video<\\/a>

\\r\\nCheckout our
Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"36\":{\"id\":\"37\",\"title\":\"Scroll Effect\",\"alias\":\"scroll-effect\",\"zip\":\"scroll-effect.zip\",\"uid\":\"417f59e9db87aa7e47c8509eb88d4af6\",\"img\":\"scrolleffect\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/big-bold-fullscreen-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"A full-screen slider with a unique scroll effect and big, bold text.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.For further configuration options please view the \\\"Custom CSS\\/JS\\\"<\\/a> section in the slider settings.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"37\":{\"id\":\"38\",\"title\":\"Content Zoom\",\"alias\":\"content-zoom\",\"zip\":\"content-zoom.zip\",\"uid\":\"42ef8cdb70d42ec6ff6fa3b69a027b5f\",\"img\":\"contentzoom\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/content-zoom-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"A very unique full-width slider that uses \\\"Layer Actions\\\"<\\/a> to their potential.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.It might be helpful to use the \\\"hide\\/show layer\\\" feature to efficiently edit all content.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"38\":{\"id\":\"39\",\"title\":\"Food Carousel\",\"alias\":\"food-carousel\",\"zip\":\"food-carousel.zip\",\"uid\":\"a7bf54527b6658a0a308c70c729779fe\",\"img\":\"foodcarousel\\/slider_cover.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/food-carousel-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"A fancy carousel with detail content on each slide. \\\"Layer Actions\\\"<\\/a> are used to show and hide layers.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.It might be helpful to use the \\\"hide\\/show layer\\\" feature to efficiently edit all content.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"39\":{\"id\":\"40\",\"title\":\"Rotating Words\",\"alias\":\"rotating-words\",\"zip\":\"rotating-words.zip\",\"uid\":\"70190463d9376f278c8197b7b2ef6c1b\",\"img\":\"rotatingwords\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/rotating-words-hero\\/\",\"version\":\"1.0.1\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"A full-screen hero block with unique animated text and blur effects.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" hero slider. Edit the slide to change the background media and texts.For further configuration options please view the \\\"Custom CSS\\/JS\\\"<\\/a> section in the slider settings.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"40\":{\"id\":\"41\",\"title\":\"Travel Static Captions\",\"alias\":\"travel-static-captions\",\"zip\":\"travel-static-captions.zip\",\"uid\":\"bbe7d61c7c741ebc7aa1ce1082b0cb71\",\"img\":\"travel-static-captions\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/travel-slideshow\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"A slideshow example with static captions layers above a rotating image background.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.Some content is in \\\"Static \\/ Global Layers\\\"<\\/a><\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"41\":{\"id\":\"42\",\"title\":\"Concept\",\"alias\":\"concept\",\"zip\":\"concept.zip\",\"uid\":\"47cb06083e87503762f6746725117a3c\",\"img\":\"concept\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/fullscreen-wordpress-plugin\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A full-screen slider that uses \\\"Layer Actions\\\"<\\/a> to their potential.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.It might be helpful to use the \\\"hide\\/show layer\\\" feature to efficiently edit all content.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"42\":{\"id\":\"43\",\"title\":\"True Fullscreen\",\"alias\":\"fullscreen-button\",\"zip\":\"fullscreen-button.zip\",\"uid\":\"618a43bdf89333b555531f6d6ecde359\",\"img\":\"fullscreen-button\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-sidebar-slideshow\\/\",\"version\":\"1.0.0\",\"required\":\"5.1\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"A slider with a full-screen button that uses \\\"Layer Actions\\\"<\\/a> to their potential.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Just edit the slides to change the background images and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"43\":{\"id\":\"44\",\"title\":\"Creative Freedom\",\"alias\":\"creativefreedom\",\"zip\":\"creativefreedom.zip\",\"uid\":\"8902bf6c93126c2c6323626b9e872621\",\"img\":\"creativefreedom\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-touch-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A full-screen slider with a unique vertical navigation and 3D-parallax effects.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Just edit the slides to change images, videos and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"44\":{\"id\":\"45\",\"title\":\"3D Parallax Scene\",\"alias\":\"parallaxscene\",\"zip\":\"parallaxscene.zip\",\"uid\":\"51566f1ce649708e97a0f5dfaf05ea19\",\"img\":\"parallaxscene\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-3d-parallax\\/\",\"version\":\"1.0.2\",\"required\":\"5.1\",\"width\":\"1240\",\"height\":\"700\",\"description\":\"A 3D-parallax hero scene with mouse-controlled effects. Smart image arrangement creates a convincing 3D effect. Tooltips are shown using \\\"Layer Actions\\\"<\\/a>.<\\/span>\\r\\n<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"45\":{\"id\":\"46\",\"title\":\"Wow Factor\",\"alias\":\"slidingoverlays\",\"zip\":\"slidingoverlays.zip\",\"uid\":\"18002d17e8bc7ca61b0951f5305a759e\",\"img\":\"slidingoverlays\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/responsive-wordpress-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.1\",\"width\":\"1240\",\"height\":\"768\",\"description\":\"A 3D-parallax effect full-screen slider.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Just edit the slides to change images and texts.<\\/span>\\r\\nScreencast for mobile video<\\/a> considerations.<\\/a>\\r\\n\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"46\":{\"id\":\"47\",\"title\":\"3D Web Product\",\"alias\":\"web-product-light-hero-3d\",\"zip\":\"web-product-light-hero-3d.zip\",\"uid\":\"efd345c5da805414093e46066cefd751\",\"img\":\"web-product-light-hero-3d\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-3d-scene\\/\",\"version\":\"1.0.0\",\"required\":\"5.1\",\"width\":\"1400\",\"height\":\"668\",\"description\":\"A 3D-parallax hero scene slider with a convincing depth-effect and animated clouds.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Just edit the slides to change images and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"47\":{\"id\":\"48\",\"title\":\"WooCommerce Big\",\"alias\":\"woobig\",\"zip\":\"woobig.zip\",\"uid\":\"bfb09a39656c7c80e86b468fc5b3403c\",\"img\":\"woobig\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/woocommerce-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1200\",\"height\":\"600\",\"description\":\"This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"The content source is set to \\\"WooCommerce Slider\\\"<\\/a>. Make sure to select the products you want to show in the slider settings.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"postbased\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"48\":{\"id\":\"49\",\"title\":\"WooCommerce Small\",\"alias\":\"woocommercesmall\",\"zip\":\"woocommercesmall.zip\",\"uid\":\"b17c2adcc5c4c4b68a7ac6fee32fa030\",\"img\":\"woocommercesmall\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/woocommerce-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.1\",\"width\":\"400\",\"height\":\"266\",\"description\":\" This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"The content source is set to \\\"WooCommerce Slider\\\"<\\/a>. Make sure to select the products you want to show in the slider settings.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"postbased\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"49\":{\"id\":\"50\",\"title\":\"Restaurant Header\",\"alias\":\"finedining\",\"zip\":\"finedining.zip\",\"uid\":\"03481a9e258501fbe3888b48830ea845\",\"img\":\"finedining\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/restaurant-hero-header\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A full-screen hero block slider that shows different background layers on button hover using \\\"Layer Actions\\\"<\\/a>.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image and texts.<\\/span>\\r\\nScreencast for mobile video<\\/a> considerations.<\\/a>\\r\\n\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"50\":{\"id\":\"51\",\"title\":\"Agency Website Header\",\"alias\":\"agency-intro\",\"zip\":\"agency-intro.zip\",\"uid\":\"e9be2afdd55a0c8d0d8d0cc12ba4c82f\",\"img\":\"agency-intro\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/agency-website-hero-header\\/\",\"version\":\"1.0.0\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\" A full-screen hero block slider with ken burns effect and video modal on button click. \\\"Layer Actions\\\"<\\/a> are used to achieve this effect.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.It might be helpful to use the \\\"hide\\/show layer\\\" feature to efficiently edit all content.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"51\":{\"id\":\"52\",\"title\":\"Team Slider\",\"alias\":\"ourteam\",\"zip\":\"ourteam.zip\",\"uid\":\"d8eb1fec07a79202d1118bb17f70c233\",\"img\":\"ourteam\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/thumbnail-hover-slider-revolution-plugin\\/\",\"version\":\"1.0.0\",\"required\":\"5.1.4\",\"width\":\"1400\",\"height\":\"800\",\"description\":\"A team slider that changes slides and displays additional information on thumbnail hover. It uses \\\"Layer Actions\\\"<\\/a> to achieve this effect.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.It might be helpful to use the \\\"hide\\/show layer\\\" feature to efficiently edit all content.Some content is in \\\"Static \\/ Global Layers\\\"<\\/a><\\/span>\\r\\nLearn how to modify the thumbnails<\\/a>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"52\":{\"id\":\"53\",\"title\":\"Team Carousel\",\"alias\":\"our-team-carousel\",\"zip\":\"our-team-carousel.zip\",\"uid\":\"37656d5dcab1f265c025cb2a3d669809\",\"img\":\"ourteamcarousel\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/thumbnail-hover-carousel-slider-revolution-plugin\\/\",\"version\":\"1.0.0\",\"required\":\"5.1.4\",\"width\":\"1000\",\"height\":\"800\",\"description\":\" A team carousel that changes slides and displays additional information on thumbnail hover. It uses \\\"Layer Actions\\\"<\\/a> to achieve this effect.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content carousel. Edit the slides to change images and texts.It might be helpful to use the \\\"hide\\/show layer\\\" feature to efficiently edit all content.Some content is in \\\"Static \\/ Global Layers\\\"<\\/a><\\/span>\\r\\nLearn how to modify the thumbnails<\\/a>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"53\":{\"id\":\"54\",\"title\":\"4K Youtube Slider\",\"alias\":\"betteryoutube\",\"zip\":\"betteryoutube.zip\",\"uid\":\"d7c5fef9f257037d7a148038aa2a1857\",\"img\":\"betteryoutube\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/fullscreen-4k-youtube-video-gallery-slider-revolution-plugin\\/\",\"version\":\"1.0.2\",\"required\":\"5.1.4\",\"width\":\"1200\",\"height\":\"675\",\"description\":\" A full-screen youtube gallery with 4K videos as an example. \\\"Layer Actions\\\"<\\/a> are used to breathe life into navigation elements.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change videos and texts.It might be helpful to use the \\\"hide\\/show layer\\\" feature to efficiently edit all content.<\\/span>\\r\\nScreencast for mobile video<\\/a> considerations.<\\/a>\\r\\n\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false,\"is_new\":true},\"54\":{\"id\":\"55\",\"title\":\"Agency Website Header\",\"alias\":\"agencywebsiteheader\",\"zip\":\"agencywebsiteheader.zip\",\"uid\":\"c11d272c87277a7a38d9e7fd13e27947\",\"img\":\"agencywebsiteheader\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/fullscreen-hero-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\" A very unique full-screen slider that uses \\\"Layer Actions\\\"<\\/a> to their potential.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.It might be helpful to use the \\\"hide\\/show layer\\\" feature to efficiently edit all content.Some content is in \\\"Static \\/ Global Layers\\\"<\\/a><\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"55\":{\"id\":\"56\",\"title\":\"Coming Soon\",\"alias\":\"comingsoon\",\"zip\":\"comingsoon.zip\",\"uid\":\"0f89edf995512e6d6e864a2ee7221829\",\"img\":\"comingsoon\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/coming-soon-wordpress-under-construction-site\\/\",\"version\":\"1.0.0\",\"required\":\"5.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A full-screen slider that can be used as a \\\"Coming Soon\\\" page. \\\"Layer Actions\\\"<\\/a> are used to achieve various interaction possibilities.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.For further configuration options please view the \\\"Custom CSS\\/JS\\\"<\\/a> section in the slider settings.<\\/span>\\r\\nInstructions for how to change the date.<\\/a>

\\r\\nCheckout our
Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"56\":{\"id\":\"57\",\"title\":\"Christmas Snow Scene\",\"alias\":\"snowscene\",\"zip\":\"snowscene.zip\",\"uid\":\"a747bf0837caff86c62419a746690209\",\"img\":\"snowscene\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/christmas-snow-scene\\/\",\"version\":\"1.0.5\",\"required\":\"5.0.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A slider with multiple christmas themed slides and a neat snow fall effect.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.For further configuration options please view the \\\"Custom CSS\\/JS\\\"<\\/a> section in the slider settings.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"57\":{\"id\":\"58\",\"title\":\"Rock Band Music\",\"alias\":\"rockband\",\"zip\":\"rockband.zip\",\"uid\":\"5f557a5fad2fd6ca982a6ae6e9619637\",\"img\":\"rockband\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/rock-band-music-theme-slider-revolution-plugin\\/\",\"version\":\"1.0.0\",\"required\":\"5.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\" A rock band themed hero block slider with an embedded SoundCloud element.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background video and texts.<\\/span>\\r\\nScreencast for mobile video<\\/a> considerations.<\\/a>\\r\\n\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2016-02-24 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"58\":{\"id\":\"59\",\"title\":\"Sleek Landing Page\",\"alias\":\"sleeklandingpage\",\"zip\":\"sleeklandingpage.zip\",\"uid\":\"07f7f2608936a8ae226213b7d99eee3f\",\"img\":\"sleeklandingpage\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/landing-page-free-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A full-screen slider that can be used as an App-Landing-Page. The object layers and custom animations create a unique effect.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.Some content is in \\\"Static \\/ Global Layers\\\"<\\/a><\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-02-22 13:21:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"59\":{\"id\":\"60\",\"title\":\"App Landing Page\",\"alias\":\"applandingpage\",\"zip\":\"applandingpage.zip\",\"uid\":\"38eb600893c1484ab8fd2a3dce3678d7\",\"img\":\"applandingpage\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/app-landing-page-free-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A full-screen hero block that can be used as an app landing page. The detail view is build using \\\"Layer Actions\\\"<\\/a>.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.It might be helpful to use the \\\"hide\\/show layer\\\" feature to efficiently edit all content.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"60\":{\"id\":\"61\",\"title\":\"Desk Scene\",\"alias\":\"deskscene\",\"zip\":\"deskscene.zip\",\"uid\":\"172a1a89a3e3b333cb4dbeb238f534c5\",\"img\":\"deskscene\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/hero-desk-scene\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A beautiful desk scene with a cool reveal effect when scrolling down.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"61\":{\"id\":\"62\",\"title\":\"Clean News Slider\",\"alias\":\"cleannewsslider\",\"zip\":\"cleannewsslider.zip\",\"uid\":\"82c3f521fe31b80984be0f19e1a9899e\",\"img\":\"cleannewsslider\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-news-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A slideshow example with clean content and thumbnail navigation.<\\/span>\\r\\n<\\/span>\\r\\n\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Just edit the slides to change images and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"62\":{\"id\":\"63\",\"title\":\"Image Gallery\",\"alias\":\"imagegallery\",\"zip\":\"imagegallery.zip\",\"uid\":\"cef1d75357df2cb53b990c74a214813e\",\"img\":\"imagegallery\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery-plugin\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.0\",\"width\":\"1000\",\"height\":\"667\",\"description\":\"A photo gallery suitable to display your images using \\\"Layer Actions\\\"<\\/a> to their potential.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.Some content is in \\\"Static \\/ Global Layers\\\"<\\/a><\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"63\":{\"id\":\"64\",\"title\":\"Standard WP Gallery\",\"alias\":\"standard-wp-gallery\",\"zip\":\"standard-wp-gallery.zip\",\"uid\":\"632035b8a27652d8081dbdfa343dc93d\",\"img\":\"standard-wp-gallery\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery-plugin\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.0\",\"width\":\"1000\",\"height\":\"667\",\"description\":\"A photo gallery that uses the \\\"Standard WP Gallery\\\" add-on to display images.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"Please follow the setup guide on the \\\"Standard WP Gallery\\\" add-on page.Some content is in \\\"Static \\/ Global Layers\\\"<\\/a><\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"postbased\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-gallery-addon\\\\\\/revslider-gallery-addon.php\\\",\\\"name\\\":\\\"WP Gallery AddOn\\\",\\\"url\\\":\\\"http:\\\\\\/\\\\\\/revolution.themepunch.com\\\\\\/wordpress-photo-gallery-plugin\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"64\":{\"id\":\"65\",\"title\":\"Clean News Post Based\",\"alias\":\"clean-news-post-based\",\"zip\":\"clean-news-post-based.zip\",\"uid\":\"f4cf5bbe51afa5a361754bb081cbabf2\",\"img\":\"clean-news-post-based\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-news-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.0\",\"width\":\"1200\",\"height\":\"600\",\"description\":\" This slider is automatically populated by WordPress posts.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"The content source is set to \\\"Post-Based Slider\\\"<\\/a>. Make sure to select the post type you want to display in the slider settings.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"postbased\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"65\":{\"id\":\"66\",\"title\":\"Interactive Whiteboard\",\"alias\":\"interactivewhiteboard\",\"zip\":\"interactivewhiteboard.zip\",\"uid\":\"058b4af535d6c6c7bcec5225845e3eb4\",\"img\":\"interactivewhiteboard\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/interactive-whiteboard-animation-free-addon\\/\",\"version\":\"1.0.5\",\"required\":\"5.2.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"This is the example slider from the Whiteboard add-on preview.\\\"Layer Actions\\\"<\\/a> are used to achieve certain effects.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This slider template requires the Whiteboard add-on<\\/a> to be installed. Edit the slides to change images and texts.Some content is in \\\"Static \\/ Global Layers\\\"<\\/a><\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-whiteboard-addon\\\\\\/revslider-whiteboard-addon.php\\\",\\\"name\\\":\\\"Whiteboard AddOn\\\",\\\"url\\\":\\\"http:\\\\\\/\\\\\\/revolution.themepunch.com\\\\\\/interactive-whiteboard-animation-free-addon\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"66\":{\"id\":\"68\",\"title\":\"Innovation Slider\",\"alias\":\"innovation\",\"zip\":\"innovation.zip\",\"uid\":\"d3440b69126d9c186fddc713b18b0002\",\"img\":\"innovation\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/best-wordpress-slider-plugin-2016\\/\",\"version\":\"1.0.5\",\"required\":\"5.2.3.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A full-screen slider with an elegant fade-out parallax effect. \\\"Layer Actions\\\"<\\/a> are used for links on layers.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images, videos and texts.For further configuration options please view the \\\"Custom CSS\\/JS\\\"<\\/a> section in the slider settings.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2016-03-29 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"67\":{\"id\":\"69\",\"title\":\"Dark Content Block - Menu\",\"alias\":\"dark-fullsite-block-menu\",\"zip\":\"packs\\/dark-fullsite-block-menu.zip\",\"uid\":\"bf4bd226719d3c3d3146592976e31ca1\",\"img\":\"dark-fullsite-block-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/dark-wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite Dark\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"2\",\"installed\":false},\"68\":{\"id\":\"70\",\"title\":\"Dark Content Block - Hero\",\"alias\":\"dark-fullsite-block-1\",\"zip\":\"packs\\/dark-fullsite-block-1.zip\",\"uid\":\"d8859245fe600288ca932dc29aca751f\",\"img\":\"dark-fullsite-block-1\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/dark-wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite Dark\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"2\",\"installed\":false},\"69\":{\"id\":\"71\",\"title\":\"Dark Content Block - About\",\"alias\":\"dark-fullsite-block-2-about\",\"zip\":\"packs\\/dark-fullsite-block-2-about.zip\",\"uid\":\"298401901521a197a8294c1b4f73df3e\",\"img\":\"dark-fullsite-block-2-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/dark-wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite Dark\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"2\",\"installed\":false},\"70\":{\"id\":\"72\",\"title\":\"Dark Content Block - Services\",\"alias\":\"dark-fullsite-block-3-services\",\"zip\":\"packs\\/dark-fullsite-block-3-services.zip\",\"uid\":\"8da3ed605472ed6a26c745fb52f85f82\",\"img\":\"dark-fullsite-block-3-services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/dark-wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite Dark\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"2\",\"installed\":false},\"71\":{\"id\":\"73\",\"title\":\"Dark Content Block - Products\",\"alias\":\"dark-fullsite-block-4-products\",\"zip\":\"packs\\/dark-fullsite-block-4-products.zip\",\"uid\":\"99e4f40399d20261a6131043d0e50b0c\",\"img\":\"dark-fullsite-block-4-products\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/dark-wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\\r\\n\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite Dark\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"2\",\"installed\":false},\"72\":{\"id\":\"74\",\"title\":\"Dark Content Block - Testimonials\",\"alias\":\"dark-fullsite-block-5-testimonials\",\"zip\":\"packs\\/dark-fullsite-block-5-testimonials.zip\",\"uid\":\"2f9121e0eedd51afe85e233d0743acab\",\"img\":\"dark-fullsite-block-5-testimonials\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/dark-wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite Dark\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"2\",\"installed\":false},\"73\":{\"id\":\"75\",\"title\":\"Dark Content Block - Callout\",\"alias\":\"dark-fullsite-block-6-callout\",\"zip\":\"packs\\/dark-fullsite-block-6-callout.zip\",\"uid\":\"55fbecb113ff21f050be7adc08637329\",\"img\":\"dark-fullsite-block-6-callout\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/dark-wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite Dark\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"2\",\"installed\":false},\"74\":{\"id\":\"76\",\"title\":\"Dark Content Block - Footer\",\"alias\":\"dark-fullsite-block-7-footer\",\"zip\":\"packs\\/dark-fullsite-block-7-footer.zip\",\"uid\":\"2ff517f5c7c54e3e0c2dd733cfd3400e\",\"img\":\"dark-fullsite-block-7-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/dark-wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite Dark\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"2\",\"installed\":false},\"75\":{\"id\":\"77\",\"title\":\"Light Content Block - Menu\",\"alias\":\"fullsite-block-menu\",\"zip\":\"packs\\/fullsite-block-menu.zip\",\"uid\":\"8010971f34387d5f94a1f4e577ef382a\",\"img\":\"fullsite-block-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"1\",\"installed\":false},\"76\":{\"id\":\"78\",\"title\":\"Light Content Block - Hero\",\"alias\":\"fullsite-block1\",\"zip\":\"packs\\/fullsite-block1.zip\",\"uid\":\"45bf7179843e01ce112e8ec754b0455c\",\"img\":\"fullsite-block1\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"1\",\"installed\":false},\"77\":{\"id\":\"79\",\"title\":\"Light Content Block - About\",\"alias\":\"fullsite-block-2-about\",\"zip\":\"packs\\/fullsite-block-2-about.zip\",\"uid\":\"8402b460638a746d36433cb161440b7d\",\"img\":\"fullsite-block-2-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"1\",\"installed\":false},\"78\":{\"id\":\"80\",\"title\":\"Light Content Block - Services\",\"alias\":\"fullsite-block-3-services\",\"zip\":\"packs\\/fullsite-block-3-services.zip\",\"uid\":\"7b8cea27f4d6ae17c5e1eae12457bd06\",\"img\":\"fullsite-block-3-services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"1\",\"installed\":false},\"79\":{\"id\":\"81\",\"title\":\"Light Content Block - Products\",\"alias\":\"fullsite-block-4-products\",\"zip\":\"packs\\/fullsite-block-4-products.zip\",\"uid\":\"d148935362d7122636cda0635eae4be7\",\"img\":\"fullsite-block-4-products\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"1\",\"installed\":false},\"80\":{\"id\":\"82\",\"title\":\"Light Content Block - Testimonials\",\"alias\":\"fullsite-block-5-testimonials\",\"zip\":\"packs\\/fullsite-block-5-testimonials.zip\",\"uid\":\"06255bfd421e40f71fa8197b839dbf03\",\"img\":\"fullsite-block-5-testimonials\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"1\",\"installed\":false},\"81\":{\"id\":\"83\",\"title\":\"Light Content Block - Callout\",\"alias\":\"fullsite-block-6-callout\",\"zip\":\"packs\\/fullsite-block-6-callout.zip\",\"uid\":\"8a88c3447676b613ec5db2fe5d63315c\",\"img\":\"fullsite-block-6-callout\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"1\",\"installed\":false},\"82\":{\"id\":\"84\",\"title\":\"Light Content Block - Footer\",\"alias\":\"fullsite-block-7-footer\",\"zip\":\"packs\\/fullsite-block-7-footer.zip\",\"uid\":\"34300b4407a2093eb2e1e08868fa8319\",\"img\":\"fullsite-block-7-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"1\",\"installed\":false},\"83\":{\"id\":\"85\",\"title\":\"Tech Journal\",\"alias\":\"techjournal\",\"zip\":\"techjournal.zip\",\"uid\":\"7f92d70d1c108378f915b18c2ceb71d6\",\"img\":\"techjournal\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.1\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"A full-width slider with navigation direction-based transitions.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"84\":{\"id\":\"86\",\"title\":\"Car Dealership\",\"alias\":\"cardealership\",\"zip\":\"cardealership.zip\",\"uid\":\"bb010838855a8ae4d1dd68e139bf169e\",\"img\":\"cardealership\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/car-dealership-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.1\",\"width\":\"1240\",\"height\":\"650\",\"description\":\"A full-width slider with navigation direction-based transitions.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"85\":{\"id\":\"87\",\"title\":\"FullScreen Menu Slider\",\"alias\":\"fullscreenmenu\",\"zip\":\"fullscreenmenu.zip\",\"uid\":\"6de81d74c4bf193e2e274d43038adc85\",\"img\":\"fullscreenmenu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-fullscreen-menu\\/\",\"version\":\"1.0.1\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A full-screen slider that contains a menu with slide blur effect.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.Some content is in \\\"Static \\/ Global Layers\\\"<\\/a><\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"86\":{\"id\":\"88\",\"title\":\"Creative Frontpage\",\"alias\":\"creativefrontpage\",\"zip\":\"creativefrontpage.zip\",\"uid\":\"0636cb368af3bcaa2f68eb0ebefe6439\",\"img\":\"creativefrontpage\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/best-wordpress-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A full-screen slider with hidden slides that are triggered via \\\"Layer Actions\\\"<\\/a>.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.Some content is in \\\"Static \\/ Global Layers\\\"<\\/a><\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"87\":{\"id\":\"89\",\"title\":\"Website Builder Menu\",\"alias\":\"websitebuilder-menu\",\"zip\":\"packs\\/websitebuilder-menu.zip\",\"uid\":\"d9e6d9c961f123a3a4847b51fc3ba3a2\",\"img\":\"websitebuilder-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-website-builder\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"60\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Website Builder\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"3\",\"installed\":false},\"88\":{\"id\":\"90\",\"title\":\"Website Builder Hero\",\"alias\":\"websitebuilder-hero\",\"zip\":\"packs\\/websitebuilder-hero.zip\",\"uid\":\"6cb2df9a41ad2e7865bb9bbea7e39cb5\",\"img\":\"websitebuilder-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-website-builder\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.3\",\"width\":\"1230\",\"height\":\"700\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Website Builder\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"3\",\"installed\":false},\"89\":{\"id\":\"91\",\"title\":\"Website Builder Clients\",\"alias\":\"websitebuilder-clients\",\"zip\":\"packs\\/websitebuilder-clients.zip\",\"uid\":\"050e59c43c9a693510d01f29532088cf\",\"img\":\"websitebuilder-clients\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-website-builder\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"120\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Website Builder\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"3\",\"installed\":false},\"90\":{\"id\":\"92\",\"title\":\"Website Builder Services\",\"alias\":\"websitebuilder-services\",\"zip\":\"packs\\/websitebuilder-services.zip\",\"uid\":\"48d56d67615efce619ae973ab4358c07\",\"img\":\"websitebuilder-services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-website-builder\\/\",\"version\":\"1.0.1\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"558\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Website Builder\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"3\",\"installed\":false},\"91\":{\"id\":\"93\",\"title\":\"Website Builder Discover\",\"alias\":\"websitebuilder-discover\",\"zip\":\"packs\\/websitebuilder-discover.zip\",\"uid\":\"425a08a7be338daea3df02a07ff5c316\",\"img\":\"websitebuilder-discover\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-website-builder\\/\",\"version\":\"1.0.1\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"955\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Website Builder\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"3\",\"installed\":false},\"92\":{\"id\":\"94\",\"title\":\"Website Builder Slider\",\"alias\":\"websitebuilder-slider\",\"zip\":\"packs\\/websitebuilder-slider.zip\",\"uid\":\"9d670b7335016accb590dc8d52bfb6f0\",\"img\":\"websitebuilder-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-website-builder\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"500\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Website Builder\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"3\",\"installed\":false},\"93\":{\"id\":\"95\",\"title\":\"Website Builder CallToAction\",\"alias\":\"websitebuilder-calltoaction\",\"zip\":\"packs\\/websitebuilder-calltoaction.zip\",\"uid\":\"45851baf9e61f55ed9f5fa9d0beff77e\",\"img\":\"websitebuilder-calltoaction\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-website-builder\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"960\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Website Builder\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"3\",\"installed\":false},\"94\":{\"id\":\"96\",\"title\":\"Website Builder Footer\",\"alias\":\"websitebuilder-footer\",\"zip\":\"packs\\/websitebuilder-footer.zip\",\"uid\":\"2732bbe66ef28219d6cc53ce8cc78863\",\"img\":\"websitebuilder-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-website-builder\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"600\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Website Builder\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"3\",\"installed\":false},\"95\":{\"id\":\"97\",\"title\":\"Focus Parallax Effect\",\"alias\":\"focusparallax\",\"zip\":\"focusparallax.zip\",\"uid\":\"13bd15fb3ddf8b9841cb55b89389cc73\",\"img\":\"focusparallax\\/slide1.jpg\",\"preview\":\" https:\\/\\/revolution.themepunch.com\\/parallax-effect-wordpress-plugin\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"A full-screen slider with mouse controlled parallax effects. \\\"Layer Actions\\\"<\\/a> are used for links on layers.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.Some content is in \\\"Static \\/ Global Layers\\\"<\\/a><\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"96\":{\"id\":\"98\",\"title\":\"Duotone Slider\",\"alias\":\"duotone\",\"zip\":\"duotone.zip\",\"uid\":\"494862ceb6cb7c6658ad7cd36848cccd\",\"img\":\"duotone\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-header-image-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.4\",\"width\":\"1200\",\"height\":\"800\",\"description\":\"A full-screen slider with unique parallax scroll effect. \\\"Layer Actions\\\"<\\/a> are used for links on layers.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"97\":{\"id\":\"99\",\"title\":\"Minimal Menu\",\"alias\":\"r_menu\",\"zip\":\"packs\\/r_menu.zip\",\"uid\":\"30d6a6895db1a5f29b1679061551c9f0\",\"img\":\"r_menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/minimal-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"5.2.6\",\"width\":\"1240\",\"height\":\"110\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"\\r\\nIn the Custom JavaScript<\\/a> section of the \\\"Minimal Menu\\\" Template you can scroll down to the color change section.\\r\\nFor any elements you want to background color change in addition to the sites body, add this class to the Layers Attributes<\\/a> \\\".tp-colorchange\\\".\\r\\nIf you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Minimal Website Template\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"4\",\"installed\":false},\"98\":{\"id\":\"100\",\"title\":\"Minimal Hero\",\"alias\":\"rhero\",\"zip\":\"packs\\/r_hero.zip\",\"uid\":\"b8b46186956f6e66ad0c08e4532bbbde\",\"img\":\"r_hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/minimal-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.6\",\"width\":\"1240\",\"height\":\"700\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"\\r\\nIn the Custom JavaScript<\\/a> section of the \\\"Minimal Menu\\\" Template you can scroll down to the color change section.\\r\\nFor any elements you want to background color change in addition to the sites body, add this class to the Layers Attributes<\\/a> \\\".tp-colorchange\\\".\\r\\nIf you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Minimal Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"4\",\"installed\":false},\"99\":{\"id\":\"101\",\"title\":\"Minimal About\",\"alias\":\"r_about\",\"zip\":\"packs\\/r_about.zip\",\"uid\":\"343010c4b4c03f92888c3e9e95bc2bb1\",\"img\":\"r_about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/minimal-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.6\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"\\r\\nIn the Custom JavaScript<\\/a> section of the \\\"Minimal Menu\\\" Template you can scroll down to the color change section.\\r\\nFor any elements you want to background color change in addition to the sites body, add this class to the Layers Attributes<\\/a> \\\".tp-colorchange\\\".\\r\\nIf you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Minimal Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"4\",\"installed\":false},\"100\":{\"id\":\"102\",\"title\":\"Minimal Products\",\"alias\":\"r_products\",\"zip\":\"packs\\/r_products.zip\",\"uid\":\"dda93e85c6a4456d132040147f087f39\",\"img\":\"r_products\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/minimal-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.6\",\"width\":\"1240\",\"height\":\"1100\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"\\r\\nIn the Custom JavaScript<\\/a> section of the \\\"Minimal Menu\\\" Template you can scroll down to the color change section.\\r\\nFor any elements you want to background color change in addition to the sites body, add this class to the Layers Attributes<\\/a> \\\".tp-colorchange\\\".\\r\\nIf you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Minimal Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"4\",\"installed\":false},\"101\":{\"id\":\"103\",\"title\":\"Minimal Info\",\"alias\":\"r_info\",\"zip\":\"packs\\/r_info.zip\",\"uid\":\"d6e368e8fd4862174af6c980389ae530\",\"img\":\"r_info\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/minimal-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"\\r\\nIn the Custom JavaScript<\\/a> section of the \\\"Minimal Menu\\\" Template you can scroll down to the color change section.\\r\\nFor any elements you want to background color change in addition to the sites body, add this class to the Layers Attributes<\\/a> \\\".tp-colorchange\\\".\\r\\nIf you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Minimal Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"4\",\"installed\":false},\"102\":{\"id\":\"104\",\"title\":\"Inspiration Header\",\"alias\":\"inspirationheader\",\"zip\":\"inspirationheader.zip\",\"uid\":\"69f04b2be0b618fa7e184af83b86b7e7\",\"img\":\"inspirationheader\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme-header\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"This full-screen hero slider features sequentially animated texts and cool parallax elements.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"103\":{\"id\":\"105\",\"title\":\"Magazine Slider\",\"alias\":\"magazineposts\",\"zip\":\"magazineposts.zip\",\"uid\":\"c562f3457e4edbd030959f7c5e6e0f7c\",\"img\":\"magazineposts\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-magazine-slider\\/\",\"version\":\"1.0.1\",\"required\":\"5.2.6\",\"width\":\"1400\",\"height\":\"1000\",\"description\":\"A full-width slider with a mouse-controlled 3D-Parallax effect. Enjoy! \\\"Layer Actions\\\"<\\/a> are used for links on layers.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"104\":{\"id\":\"106\",\"title\":\"News Header\",\"alias\":\"explorationheader\",\"zip\":\"explorationheader.zip\",\"uid\":\"8f20d5a868c90ded08b835fb9e8307d7\",\"img\":\"explorationheader\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-news-header\\/\",\"version\":\"1.0.1\",\"required\":\"5.2.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A full-screen slider that is a perfect fit for displaying news on your websites header! Check out \\\"Layer Actions\\\"<\\/a> to add links to buttons.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Edit the slides to change images and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"105\":{\"id\":\"107\",\"title\":\"Minimal Website Package\",\"alias\":\"minimal-website-package\",\"zip\":\"\",\"uid\":\"minimal-website-package\",\"img\":\"packages\\/template_group_1_1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/minimal-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.6\",\"width\":\"1240\",\"height\":\"110\",\"description\":\"The Minimal Website Template is a one-pager website with a unique background color change effect on scrolling down.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"\\r\\nIn the Custom JavaScript<\\/a> section of the \\\"Minimal Menu\\\" Template you can scroll down to the color change section.\\r\\nFor any elements you want to background color change in addition to the sites body, add this class to the Layers Attributes<\\/a> \\\".tp-colorchange\\\".\\r\\nIf you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Minimal Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"4\",\"installed\":false},\"106\":{\"id\":\"108\",\"title\":\"Website Builder Package\",\"alias\":\"websitebuilder-package\",\"zip\":\"\",\"uid\":\"websitebuilder-package\",\"img\":\"packages\\/template_group_2.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-website-builder\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5.3\",\"width\":\"1240\",\"height\":\"60\",\"description\":\"The Website Builder Package is a clean, usable collection website modules that can be used all together or each on their own.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Website Builder\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"3\",\"installed\":false},\"107\":{\"id\":\"109\",\"title\":\"Dark Content Block Package\",\"alias\":\"dark-fullsite-block-package\",\"zip\":\"\",\"uid\":\"dark-fullsite-block-package\",\"img\":\"packages\\/template_group_4.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/dark-wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"This Minimal Website Template has some sleek parallax effects and on-demand loading modules.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite Dark\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"2\",\"installed\":false},\"108\":{\"id\":\"110\",\"title\":\"Light Content Block Package\",\"alias\":\"fullsite-block-package\",\"zip\":\"\",\"uid\":\"fullsite-block-package\",\"img\":\"packages\\/template_group_3.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-parallax-theme\\/\",\"version\":\"1.0.0\",\"required\":\"5.2.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"This Minimal Website Template has some sleek parallax effects and on-demand loading modules.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Fullsite\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"1\",\"installed\":false},\"109\":{\"id\":\"111\",\"title\":\"Typewriter Effect\",\"alias\":\"typewritereffect\",\"zip\":\"typewritereffect.zip\",\"uid\":\"d6f8bae06cc4a7b158d680c01e59ddc2\",\"img\":\"typewritereffect\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-typewriter-effect\\/\",\"version\":\"1.0.0\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"This is the example slider from the Typewriter add-on preview.\\\"Layer Actions\\\"<\\/a> are used for links on buttons.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This slider template requires the Typewriter add-on<\\/a> to be installed. Edit the slides to change images and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-typewriter-addon\\\\\\/revslider-typewriter-addon.php\\\",\\\"name\\\":\\\"Typewriter AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/typewriter-addon\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"110\":{\"id\":\"112\",\"title\":\"Blend Mode Header\",\"alias\":\"blendmodeheader\",\"zip\":\"blendmodeheader.zip\",\"uid\":\"2e44e976596d757aab40ffa28086dcf9\",\"img\":\"blendmodeheader\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/blend-mode-hero-header\\/\",\"version\":\"1.0.0\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"1000\",\"description\":\"This full-screen hero header with HMTL5 background video, utilizes the new 5.3 blend mode effect.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"111\":{\"id\":\"113\",\"title\":\"Themeplicity Menu\",\"alias\":\"themeplicity_menu\",\"zip\":\"packs\\/themeplicity_menu.zip\",\"uid\":\"7d5c1e75eaafa63683895a32a62f4ce0\",\"img\":\"themeplicity_menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"90\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Themeplicity Website Template\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"5\",\"installed\":false},\"112\":{\"id\":\"114\",\"title\":\"Themeplicity Header\",\"alias\":\"themeplicity_header\",\"zip\":\"packs\\/themeplicity_header.zip\",\"uid\":\"907091e4d58acc7d12f802de2f280b7d\",\"img\":\"themeplicity_header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"1000\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Themeplicity Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"5\",\"installed\":false},\"113\":{\"id\":\"115\",\"title\":\"Themeplicity Offer\",\"alias\":\"themeplicity_offer\",\"zip\":\"packs\\/themeplicity_offer.zip\",\"uid\":\"1bd8f9aa2f3e340449664c65ba17fb51\",\"img\":\"themeplicity_offer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"330\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Themeplicity Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"5\",\"installed\":false},\"114\":{\"id\":\"116\",\"title\":\"Themeplicity What We Do\",\"alias\":\"themeplicity_whatwedo\",\"zip\":\"packs\\/themeplicity_whatwedo.zip\",\"uid\":\"aa800a44b5a3eab30414dde1f32bfed7\",\"img\":\"themeplicity_whatwedo\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"813\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Themeplicity Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"5\",\"installed\":false},\"115\":{\"id\":\"117\",\"title\":\"Themeplicity Projects\",\"alias\":\"themeplicity_projects\",\"zip\":\"packs\\/themeplicity_projects.zip\",\"uid\":\"5f61b3a13033ba6a51a18270163e0a50\",\"img\":\"themeplicity_projects\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"813\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Themeplicity Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"5\",\"installed\":false},\"116\":{\"id\":\"118\",\"title\":\"Themeplicity Whats Great\",\"alias\":\"themeplicity_whatsgreat\",\"zip\":\"packs\\/themeplicity_whatsgreat.zip\",\"uid\":\"ce9faf8c55ed2e33e091b23667e7173b\",\"img\":\"themeplicity_whatsgreat\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Themeplicity Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"5\",\"installed\":false},\"117\":{\"id\":\"119\",\"title\":\"Themeplicity Tables\",\"alias\":\"themeplicity_tables\",\"zip\":\"packs\\/themeplicity_tables.zip\",\"uid\":\"f28bb4cd20ec1f29a1de7da5ad09c293\",\"img\":\"themeplicity_tables\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"1059\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Themeplicity Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"5\",\"installed\":false},\"118\":{\"id\":\"120\",\"title\":\"Themeplicity Contactform\",\"alias\":\"themeplicity_contactform\",\"zip\":\"packs\\/themeplicity_contactform.zip\",\"uid\":\"3e59da970f534490774fa8e053f5b5ed\",\"img\":\"themeplicity_contactform\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"1067\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Themeplicity Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"5\",\"installed\":false},\"119\":{\"id\":\"121\",\"title\":\"Themeplicity Footer\",\"alias\":\"themeplicity_footer\",\"zip\":\"packs\\/themeplicity_footer.zip\",\"uid\":\"89eeb0b4b852c5f743e1bd76e3e8f2ef\",\"img\":\"themeplicity_footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"780\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Themeplicity Website Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"5\",\"installed\":false},\"120\":{\"id\":\"122\",\"title\":\"Themeplicity Package\",\"alias\":\"themeplicity-package\",\"zip\":\"\",\"uid\":\"themeplicity-package\",\"img\":\"packages\\/templatepack_themeplicity.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"5.3.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Themeplicity Website Template uses the new groups & rows feature introduced in 5.3 to its full potential.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Themeplicity Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"5\",\"installed\":false},\"121\":{\"id\":\"123\",\"title\":\"Nice And Clean Menu\",\"alias\":\"NiceAndClean_Menu\",\"zip\":\"packs\\/NiceAndClean_Menu.zip\",\"uid\":\"3f8c01e26c7446428e045c4b1180776d\",\"img\":\"NiceAndClean_Menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"90\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"122\":{\"id\":\"124\",\"title\":\"Nice And Clean Header\",\"alias\":\"NiceAndClean_Header\",\"zip\":\"packs\\/NiceAndClean_Header.zip\",\"uid\":\"76931033addb20a62557c2845a4d6a11\",\"img\":\"NiceAndClean_Header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"123\":{\"id\":\"125\",\"title\":\"Nice And Clean Services\",\"alias\":\"NiceAndClean_Services\",\"zip\":\"packs\\/NiceAndClean_Services.zip\",\"uid\":\"02f72ec606800c8215bcadea09624e87\",\"img\":\"NiceAndClean_Services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"360\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"124\":{\"id\":\"126\",\"title\":\"Nice And Clean About\",\"alias\":\"NiceAndClean_About\",\"zip\":\"packs\\/NiceAndClean_About.zip\",\"uid\":\"9510f6fdbb8e9473e8c22f692a6bc89f\",\"img\":\"NiceAndClean_About\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"125\":{\"id\":\"127\",\"title\":\"Nice And Clean Video\",\"alias\":\"niceandclean_video\",\"zip\":\"packs\\/niceandclean_video.zip\",\"uid\":\"2bb9e1ad329435cc500542d0c7025e15\",\"img\":\"niceandclean_video\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"126\":{\"id\":\"128\",\"title\":\"Nice And Clean Highlights\",\"alias\":\"niceandclean_highlights\",\"zip\":\"packs\\/niceandclean_highlights.zip\",\"uid\":\"ff396af163a79d2d5b35db17c1ea7aa6\",\"img\":\"niceandclean_highlights\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"127\":{\"id\":\"129\",\"title\":\"Nice And Clean Projects\",\"alias\":\"NiceAndClean_Projects\",\"zip\":\"packs\\/NiceAndClean_Projects.zip\",\"uid\":\"1e6695959ef83f8975b52289c08a4d44\",\"img\":\"NiceAndClean_Projects\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"600\",\"height\":\"600\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"128\":{\"id\":\"130\",\"title\":\"Nice And Clean TextBlocks\",\"alias\":\"niceandclean_textblocks\",\"zip\":\"packs\\/niceandclean_textblocks.zip\",\"uid\":\"1f33eb839c96ea3225faff1c8d382b05\",\"img\":\"niceandclean_textblocks\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"129\":{\"id\":\"131\",\"title\":\"Nice And Clean CallOut\",\"alias\":\"niceandclean_callout\",\"zip\":\"packs\\/niceandclean_callout.zip\",\"uid\":\"54d4d9bcf79d357de0e614700e909863\",\"img\":\"niceandclean_callout\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"500\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"130\":{\"id\":\"132\",\"title\":\"Nice And Clean Footer\",\"alias\":\"niceandclean_footer\",\"zip\":\"packs\\/niceandclean_footer.zip\",\"uid\":\"5492d7f72b3771a4e754f91bda063b15\",\"img\":\"niceandclean_footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"400\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nFor using the social sharing buttons, please install the social sharing add-on.

<\\/span>\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"131\":{\"id\":\"134\",\"title\":\"80s Style Intro\",\"alias\":\"80s\",\"zip\":\"80s.zip\",\"uid\":\"98881ab51f71b2fbdb220752d321b15a\",\"img\":\"80s\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/80s-style-intro\\/\",\"version\":\"1.0.0\",\"required\":\"5.3.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"This intro hero block takes you back to the 80\'s with some funky effects.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content hero slider. Just edit the slide to change the background image and text.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"132\":{\"id\":\"135\",\"title\":\"Blur Effect Slider\",\"alias\":\"blurslider\",\"zip\":\"blurslider.zip\",\"uid\":\"83bd6e1ccef83f03c944fa05b0a2d879\",\"img\":\"blurslider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/blur-effect-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.3.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"This slider makes use of the brand new blur effects available with version 5.3.1.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"This is a \\\"Default\\\" content slider. Just edit the slides to change the background images and texts.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"133\":{\"id\":\"136\",\"title\":\"Coming Soon Add-On\",\"alias\":\"ComingSoonAddon\",\"zip\":\"ComingSoonAddon.zip\",\"uid\":\"51258492055b940099eb96ba52901fa9\",\"img\":\"ComingSoonAddon\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/coming-soon-add-on\\/\",\"version\":\"1.0.0\",\"required\":\"5.3.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"This slider template makes use of the brand new Coming Soon Add-On.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-maintenance-addon\\\\\\/revslider-maintenance-addon.php\\\",\\\"name\\\":\\\"Coming Soon & Maintenance AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/revslider-doc\\\\\\/add-coming-soon-maintenance\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"134\":{\"id\":\"137\",\"title\":\"Nice And Clean Package\",\"alias\":\"nice-and-clean-package\",\"zip\":\"\",\"uid\":\"nice-and-clean-package\",\"img\":\"packages\\/templatepack_niceandclean.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/nice-clean-responsive-wordpress-theme\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"800\",\"description\":\"The Nice & Clean Website Template uses groups & rows for a fully responsive website experience. Elegant blur effects available since version 5.3.1 make this template stand out!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Nice & Clean Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"6\",\"installed\":false},\"135\":{\"id\":\"138\",\"title\":\"Snow Effect Add-On\",\"alias\":\"snowaddon\",\"zip\":\"snowaddon.zip\",\"uid\":\"7408d8567b8af5716eaabd390422e51b\",\"img\":\"snowaddon\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/snow-effect-add-on\\/\",\"version\":\"1.0.0\",\"required\":\"5.3.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"Add a pleasant Snow Effect to your website with this slider template. Make sure to install the \\\"Holiday Snow\\\" Add-On.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-snow-addon\\\\\\/revslider-snow-addon.php\\\",\\\"name\\\":\\\"Snow AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"136\":{\"id\":\"139\",\"title\":\"Particle Effect One\",\"alias\":\"particle-effect-one\",\"zip\":\"particle-effect-one.zip\",\"uid\":\"a4611c906e35ca60f617da86217b5299\",\"img\":\"particle-effect-one\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/particle-effect-for-wordpress\\/\",\"version\":\"1.0.0\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A unique particle effect that can serve as a stunning intro for your website.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \\\"BLEND MODE IMAGE\\\" layer and go to \\\"advanced style -> filters -> blend mode\\\".<\\/span>\\r\\n<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"137\":{\"id\":\"140\",\"title\":\"Particle Effect Two\",\"alias\":\"particle-effect-two\",\"zip\":\"particle-effect-two.zip\",\"uid\":\"b8ecbf43374a69e4ab329ea834862ef8\",\"img\":\"particle-effect-two\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/particle-effect-intro\\/\",\"version\":\"1.0.0\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A unique particle effect that can serve as a stunning intro for your website.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"138\":{\"id\":\"141\",\"title\":\"Particle Effect Three\",\"alias\":\"particle-effect-three\",\"zip\":\"particle-effect-three.zip\",\"uid\":\"b33bc2c5655d8d51cd17c3740f72e748\",\"img\":\"particle-effect-three\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/particle-background-effect\\/\",\"version\":\"1.0.0\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A unique particle effect that can serve as a stunning intro for your website.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \\\"BLEND IMAGE\\\" layer and go to \\\"advanced style -> filters -> blend mode\\\".<\\/span>\\r\\n<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"139\":{\"id\":\"142\",\"title\":\"Portfolio Viewer\",\"alias\":\"portfolioviewer\",\"zip\":\"portfolioviewer.zip\",\"uid\":\"9ac7230ff5b880fb6c8f28fbbc123b3b\",\"img\":\"portfolioviewer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-portfolio-plugin\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"This slider template can be used to display your portfolio highlights in a stunning way, utilising out free particles add-on and blend modes.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"The navigation for the slides is found in the Static Layers<\\/a>.<\\/span><\\/span>\\r\\nCheckout our Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"140\":{\"id\":\"143\",\"title\":\"App Showcase\",\"alias\":\"appshowcase\",\"zip\":\"appshowcase.zip\",\"uid\":\"082aef931b0369080bc30c3a2a0c331f\",\"img\":\"appshowcase\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/app-showcase-wordpress-plugin\\/\",\"version\":\"1.0.0\",\"required\":\"5.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"This template shows off our new \\\"Polyfold Effects\\\" Add-On in form of an App product showcase module. Get started now and illustrate your Apps key features in a striking way!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-polyfold-addon\\\\\\/revslider-polyfold-addon.php\\\",\\\"name\\\":\\\"Polyfold Scroll Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"141\":{\"id\":\"144\",\"title\":\"Gravity Design Hero\",\"alias\":\"gravitydesign\",\"zip\":\"gravitydesign.zip\",\"uid\":\"7bdbe73a6e5bf290cb4412708ac4134d\",\"img\":\"gravitydesign\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/best-wordpress-slider-plugin-2017\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"This hero template shows a striking mouse-parallax scene and cool particle effects. Requires our \\\"Particle Effects\\\" Add-on to be installed.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"142\":{\"id\":\"145\",\"title\":\"404 Error Page\",\"alias\":\"404errorpage\",\"zip\":\"404errorpage.zip\",\"uid\":\"2dc62d802b42b73088651cac17d0c486\",\"img\":\"404errorpage\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/404-error-page-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"This template can be used as a custom error page on your website with our new 404 page Add-On. Of course you can also use this template as a regular hero header.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"{\\\"1\\\":{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}}\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"143\":{\"id\":\"146\",\"title\":\"Carousel Gallery\",\"alias\":\"carouselgallery\",\"zip\":\"carouselgallery.zip\",\"uid\":\"041838fd32923c40e15c998f0ea19526\",\"img\":\"carouselgallery\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-carousel-gallery\\/\",\"version\":\"1.0.0\",\"required\":\"5.4\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"This carousel gallery features a subtle parallax effect, html5 video and a fullscreen button.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"144\":{\"id\":\"147\",\"title\":\"Filmstrip Effect\",\"alias\":\"filmstrip\",\"zip\":\"filmstrip.zip\",\"uid\":\"7bd142f272cc15d86998a79520e9e581\",\"img\":\"filmstrip\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/filmstrip-add-on-slider\\/ \",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"This template uses our Filmstrip Add-On to display a continuous scrolling set of images per slide.\\r\\n There is lots of customization options like animation speed and direction.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-filmstrip-addon\\\\\\/revslider-filmstrip-addon.php\\\",\\\"name\\\":\\\"Background FilmStrip Add-On\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"145\":{\"id\":\"148\",\"title\":\"Space Opera\",\"alias\":\"spaceopera\",\"zip\":\"spaceopera.zip\",\"uid\":\"a2c8bffcb138a86c0f373adebb6de046\",\"img\":\"spaceopera\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/space-opera-presentation\\/\",\"version\":\"1.0.0\",\"required\":\"5.4\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Space Opera template can be enjoyed as a slow paced, full-screen slider experience and is great to show your most prominent photos.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"146\":{\"id\":\"149\",\"title\":\"Website Intro\",\"alias\":\"websiteintro\",\"zip\":\"websiteintro.zip\",\"uid\":\"348df76d999456aa19be58c9df56ae20\",\"img\":\"websiteintro\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/website-intro-wordpress-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.4\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"Making use of our new Slicey Add-On, this slider show a really cool effect you just have to experience yourself! Just change the slides background images and the existing slices will automatically be applied.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-slicey-addon\\\\\\/revslider-slicey-addon.php\\\",\\\"name\\\":\\\"Background Slicey Add-On\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"147\":{\"id\":\"150\",\"title\":\"Mask Showcase\",\"alias\":\"maskshowcase\",\"zip\":\"maskshowcase.zip\",\"uid\":\"fc943c31e2da9c63b252aeabf554d128\",\"img\":\"maskshowcase\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/minimal-mask-showcase\\/\",\"version\":\"1.0.0\",\"required\":\"5.4\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Mask Showcase template uses gradients and the amazing block layer animations. A minimal slider treat for any website!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"148\":{\"id\":\"151\",\"title\":\"Parallax Zoom Slices\",\"alias\":\"parallaxzoomslices\",\"zip\":\"parallaxzoomslices.zip\",\"uid\":\"83537cae05709ddb9bcb7375470a5894\",\"img\":\"parallaxzoomslices\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/parallax-zoom-slices-wordpress-plugin\\/\",\"version\":\"1.0.0\",\"required\":\"5.4\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"This template uses the Slicey Add-On to add a unique effect to slide background images. You can simple change the background images and the slice effect will automatically be applied.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-slicey-addon\\\\\\/revslider-slicey-addon.php\\\",\\\"name\\\":\\\"Background Slicey Add-On\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"149\":{\"id\":\"152\",\"title\":\"Double Exposure Effect\",\"alias\":\"doubleexposureeffect\",\"zip\":\"doubleexposureeffect.zip\",\"uid\":\"8d9229b5cbcf5bda5fbdc6a8e01a2b8c\",\"img\":\"doubleexposureeffect\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-double-exposure-effect\\/\",\"version\":\"1.0.1\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"Make any website special with the double exposure effect slider. Use as a header module or anywhere you want!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"150\":{\"id\":\"153\",\"title\":\"Mountain Parallax Header\",\"alias\":\"mountainparallaxheader\",\"zip\":\"mountainparallaxheader.zip\",\"uid\":\"8dc64663f317a2abdf179bbe341d016e\",\"img\":\"mountainparallaxheader\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/mountain-wordpress-parallax-header\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"This template is a cool intro for any page, featuring a striking parallax effect. Just change texts and links and you\'re done!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"151\":{\"id\":\"154\",\"title\":\"GoodNews One-Pager Package\",\"alias\":\"goodnews-one-pager-package\",\"zip\":\"\",\"uid\":\"goodnews-one-pager-package\",\"img\":\"packages\\/templatepack_goodnews_one_pager.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.4.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"slider\",\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews One-Pager\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"7\",\"installed\":false},\"152\":{\"id\":\"155\",\"title\":\"GoodNews Menu\",\"alias\":\"goodnewsmenu\",\"zip\":\"packs\\/goodnewsmenu.zip\",\"uid\":\"4cbc82501ff340fcdc0acf7eb3ba2640\",\"img\":\"goodnewsmenu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"You can use this slider as a module on your website or install it as part of a slider pack. <\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews One-Pager\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"7\",\"installed\":false},\"153\":{\"id\":\"156\",\"title\":\"GoodNews Header\",\"alias\":\"goodnewsheader\",\"zip\":\"packs\\/goodnewsheader.zip\",\"uid\":\"c6660b6bdbf596f38466f569596f5259\",\"img\":\"goodnewsheader\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews One-Pager\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"7\",\"installed\":false},\"154\":{\"id\":\"157\",\"title\":\"GoodNews Whats Hot\",\"alias\":\"goodnewswhatshot\",\"zip\":\"packs\\/goodnewswhatshot.zip\",\"uid\":\"cb841ce64a99a6644adab049cf5405cd\",\"img\":\"goodnewswhatshot\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews One-Pager\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"7\",\"installed\":false},\"155\":{\"id\":\"158\",\"title\":\"GoodNews Featured\",\"alias\":\"goodnewsfeatured\",\"zip\":\"packs\\/goodnewsfeatured.zip\",\"uid\":\"00bde4b09e3700da7183999eaf137ccc\",\"img\":\"goodnewsfeatured\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme\\/\",\"version\":\"1.0.3\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews One-Pager\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"7\",\"installed\":false},\"156\":{\"id\":\"159\",\"title\":\"GoodNews Spotlight\",\"alias\":\"goodnewsspotlight\",\"zip\":\"packs\\/goodnewsspotlight.zip\",\"uid\":\"138076241a828e1c5764379944755f2b\",\"img\":\"goodnewsspotlight\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme\\/\",\"version\":\"1.0.4\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews One-Pager\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"7\",\"installed\":false},\"157\":{\"id\":\"160\",\"title\":\"GoodNews Carousel\",\"alias\":\"goodnewscarousel\",\"zip\":\"packs\\/goodnewscarousel.zip\",\"uid\":\"d29d4460a6015e30d08d2714232d3768\",\"img\":\"goodnewscarousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews One-Pager\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"7\",\"installed\":false},\"158\":{\"id\":\"161\",\"title\":\"GoodNews Callout\",\"alias\":\"goodnewscallout\",\"zip\":\"packs\\/goodnewscallout.zip\",\"uid\":\"d9568b3193e96577fae630b3a6728785\",\"img\":\"goodnewscallout\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews One-Pager\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"7\",\"installed\":false},\"159\":{\"id\":\"162\",\"title\":\"GoodNews Footer\",\"alias\":\"goodnewsfooter\",\"zip\":\"packs\\/goodnewsfooter.zip\",\"uid\":\"34f43f891cb8d55375149dc4bbc38298\",\"img\":\"goodnewsfooter\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews One-Pager\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"7\",\"installed\":false},\"160\":{\"id\":\"163\",\"title\":\"GoodNews Content Page Package\",\"alias\":\"goodnews-content-page-package\",\"zip\":\"\",\"uid\":\"goodnews-content-page-package\",\"img\":\"packages\\/templatepack_goodnews_content_page_package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme-content\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews Content Page\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"8\",\"installed\":false},\"161\":{\"id\":\"164\",\"title\":\"GoodNews Menu Back\",\"alias\":\"goodnewsmenuback\",\"zip\":\"packs\\/goodnewsmenuback.zip\",\"uid\":\"1340d1aeefba497a7d404d12a1fceed4\",\"img\":\"goodnewsmenuback\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme-content\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews Content Page\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"8\",\"installed\":false},\"162\":{\"id\":\"165\",\"title\":\"GoodNews Blog Header\",\"alias\":\"goodnewsblogheader\",\"zip\":\"packs\\/goodnewsblogheader.zip\",\"uid\":\"abc4d7c1e48475c6def05f1f6d8bf564\",\"img\":\"goodnewsblogheader\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme-content\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews Content Page\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"8\",\"installed\":false},\"163\":{\"id\":\"166\",\"title\":\"GoodNews Blog Content\",\"alias\":\"goodnewsblogcontent\",\"zip\":\"packs\\/goodnewsblogcontent.zip\",\"uid\":\"bbf34563da6db2779c29599b503b07e9\",\"img\":\"goodnewsblogcontent\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme-content\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews Content Page\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"8\",\"installed\":false},\"164\":{\"id\":\"167\",\"title\":\"GoodNews Testimonials\",\"alias\":\"goodnewstestimonials\",\"zip\":\"packs\\/goodnewstestimonials.zip\",\"uid\":\"606b7336e86f69c567542d3f43712b56\",\"img\":\"goodnewstestimonials\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme-content\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews Content Page\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"8\",\"installed\":false},\"165\":{\"id\":\"168\",\"title\":\"GoodNews Blog Footer\",\"alias\":\"goodnewsblogfooter\",\"zip\":\"packs\\/goodnewsblogfooter.zip\",\"uid\":\"1fb88aecfb116fde67ce8d52bd3b5f05\",\"img\":\"goodnewsblogfooter\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/goodnews-responsive-wordpress-theme-content\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"GoodNews Content Page\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"8\",\"installed\":false},\"166\":{\"id\":\"169\",\"title\":\"Before After Slider\",\"alias\":\"beforeafterslider\",\"zip\":\"beforeafterslider.zip\",\"uid\":\"6e615091a1fc3037c24b985ce5136fb2\",\"img\":\"beforeafterslider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/before-after-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.3.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"This is the example slider for our Before \\/ After Add-On that allows you to create unique presentations with a comparing functionality.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"How to install Add-Ons<\\/a>.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-beforeafter-addon\\\\\\/revslider-beforeafter-addon.php\\\",\\\"name\\\":\\\"Before After AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"167\":{\"id\":\"170\",\"title\":\"Product Showcase\",\"alias\":\"productshowcase\",\"zip\":\"productshowcase.zip\",\"uid\":\"a43447670260aaa7e8ff66cedfddb57a\",\"img\":\"productshowcase\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-product-showcase-slider\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.5\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Looking to sell products effectively? Our product showcase slider is just what you are looking for!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"168\":{\"id\":\"171\",\"title\":\"Overexposure Transition\",\"alias\":\"overexposuretransition\",\"zip\":\"overexposuretransition.zip\",\"uid\":\"13f16bbe6c6d646c7d0cb817a0d3d181\",\"img\":\"overexposuretransition\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/overexposure-transition-effect\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.5\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Subtle overexposure transitions and smooth color fade effects make this slider stand out.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"How to install Add-Ons<\\/a>.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"169\":{\"id\":\"172\",\"title\":\"Parallax Scroll\",\"alias\":\"parallaxscroll\",\"zip\":\"parallaxscroll.zip\",\"uid\":\"82546ee2f6af6c6682852f495109b3c3\",\"img\":\"parallaxscroll\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/parallax-scroll\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.5\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"A strikingly colourful header for your website with super smooth parallax effects.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"170\":{\"id\":\"173\",\"title\":\"TechCo One-Pager Package\",\"alias\":\"techco-one-pager-package\",\"zip\":\"\",\"uid\":\"techco-one-pager-package\",\"img\":\"packages\\/techco_overview.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/techco-one-page-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.6\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"TechCo One-Pager\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"9\",\"installed\":false},\"171\":{\"id\":\"174\",\"title\":\"TechCo Menu\",\"alias\":\"techco-menu\",\"zip\":\"packs\\/techco-menu.zip\",\"uid\":\"55e5efee828cdf1ff7e2d3b90a301ea9\",\"img\":\"techco-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/techco-one-page-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"TechCo One-Pager\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"9\",\"installed\":false},\"172\":{\"id\":\"175\",\"title\":\"TechCo Header\",\"alias\":\"techco-header\",\"zip\":\"packs\\/techco-header.zip\",\"uid\":\"fb574d1376de9b1e408c91f51e6497d7\",\"img\":\"techco-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/techco-one-page-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"TechCo One-Pager\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"9\",\"installed\":false},\"173\":{\"id\":\"176\",\"title\":\"TechCo About\",\"alias\":\"techco-about\",\"zip\":\"packs\\/techco-about.zip\",\"uid\":\"ba216da8231e55118d87e37d2358812c\",\"img\":\"techco-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/techco-one-page-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"TechCo One-Pager\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"9\",\"installed\":false},\"174\":{\"id\":\"177\",\"title\":\"TechCo Services\",\"alias\":\"techco-services\",\"zip\":\"packs\\/techco-services.zip\",\"uid\":\"ef4a8ddbb5e1136133f7bc1227248e22\",\"img\":\"techco-services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/techco-one-page-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"TechCo One-Pager\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"9\",\"installed\":false},\"175\":{\"id\":\"178\",\"title\":\"TechCo Video\",\"alias\":\"techco-video\",\"zip\":\"packs\\/techco-video.zip\",\"uid\":\"d7bb92281d05f39f9bc9eca71f90e402\",\"img\":\"techco-video\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/techco-one-page-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"TechCo One-Pager\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"9\",\"installed\":false},\"176\":{\"id\":\"179\",\"title\":\"TechCo Prices\",\"alias\":\"techco-prices\",\"zip\":\"packs\\/techco-prices.zip\",\"uid\":\"6291f404efbea12bb181352aba71ef11\",\"img\":\"techco-prices\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/techco-one-page-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"TechCo One-Pager\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"9\",\"installed\":false},\"177\":{\"id\":\"180\",\"title\":\"TechCo Testimonials\",\"alias\":\"techco-testimonials\",\"zip\":\"packs\\/techco-testimonials.zip\",\"uid\":\"3460bd51f6b80599266fecb7fbb918be\",\"img\":\"techco-testimonials\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/techco-one-page-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"TechCo One-Pager\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"9\",\"installed\":false},\"178\":{\"id\":\"181\",\"title\":\"TechCo Footer\",\"alias\":\"techco-footer\",\"zip\":\"packs\\/techco-footer.zip\",\"uid\":\"640abcd549137520461a4a71ff758a3b\",\"img\":\"techco-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/techco-one-page-wordpress-theme\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"TechCo One-Pager\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"9\",\"installed\":false},\"179\":{\"id\":\"182\",\"title\":\"Live Weather\",\"alias\":\"weather\",\"zip\":\"weather.zip\",\"uid\":\"aab92e69374e4c7b8c6741fe02e574b9\",\"img\":\"weather\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-live-weather-add-on\\/\",\"version\":\"1.0.3\",\"required\":\"5.4.5.2\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Showcasing our weather add-on, this slider show a different cities temperatures and forecast on each slide.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-weather-addon\\\\\\/revslider-weather-addon.php\\\",\\\"name\\\":\\\"Live Weather Add-On\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"180\":{\"id\":\"183\",\"title\":\"360 Panorama Tour\",\"alias\":\"360panorama\",\"zip\":\"360panorama.zip\",\"uid\":\"332720fdacdbb38f65e8327a2a96c52d\",\"img\":\"360panorama\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/360-degree-real-estate-virtual-tour\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.5.2\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"An example template for our Panorama 360 tour add-on, created for the real estate market.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-panorama-addon\\\\\\/revslider-panorama-addon.php\\\",\\\"name\\\":\\\"Panorama AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"181\":{\"id\":\"184\",\"title\":\"Duotone Add-on\",\"alias\":\"duotone-add-on\",\"zip\":\"duotone-add-on.zip\",\"uid\":\"a428c6f363b3146e96d20a6f44958922\",\"img\":\"duotone-add-on\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-duotone-effect-add-on\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.6\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"This example template showcases 3 of the 30 Duotone filters available in our brand new Duotone Add-On.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-duotonefilters-addon\\\\\\/revslider-duotonefilters-addon.php\\\",\\\"name\\\":\\\"Duotone AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"182\":{\"id\":\"185\",\"title\":\"Reveal Add-on\",\"alias\":\"reveal-add-on\",\"zip\":\"reveal-add-on.zip\",\"uid\":\"7fa7525d8ff7fa7365cb98a437e88e32\",\"img\":\"reveal-add-on\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-content-reveal-effect\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.6\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"An example template that uses our Reveal Add-On, which adds 14 new preloaders combined with reveal loading effects for any slider or hero.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-revealer-addon\\\\\\/revslider-revealer-addon.php\\\",\\\"name\\\":\\\"Reveal AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"201\":{\"id\":\"210\",\"title\":\"Cryptocurrency Prices\",\"alias\":\"cryptoslider\",\"zip\":\"cryptoslider.zip\",\"uid\":\"c4b02210387f11946223977e940d9e9e\",\"img\":\"cryptoslider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/cryptocurrency-wordpress-price-api-bitcoin-ethereum-litecoin\\/\",\"version\":\"1.0.6\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"This Template can show live, animated cryptocurrency prices. More than 1300 currencies are supported, getting prices via the cryptocompare API.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"Please refer to the \\\"Custom JavaScript\\\" section of this sliders settings, for info on how to modify currencies. Provide a class to the row \\/ column \\/ group where the currency text elements are located in.<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"202\":{\"id\":\"211\",\"title\":\"Immersion One Page\",\"alias\":\"immersion-one-page-package\",\"zip\":\"\",\"uid\":\"immersion-one-page-package\",\"img\":\"packages\\/immersion_overview.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/immersion-wordpress-one-page-theme-2018\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.6\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-typewriter-addon\\\\\\/revslider-typewriter-addon.php\\\",\\\"name\\\":\\\"Typewriter AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/typewriter-addon\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-slicey-addon\\\\\\/revslider-slicey-addon.php\\\",\\\"name\\\":\\\"Background Slicey Add-On\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Immersion One Page\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"10\",\"installed\":false},\"203\":{\"id\":\"212\",\"title\":\"Immersion Header\",\"alias\":\"immersion_header\",\"zip\":\"packs\\/immersion_header.zip\",\"uid\":\"853da51256308b341ecd030bd4883229\",\"img\":\"immersion_header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/immersion-wordpress-one-page-theme-2018\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-typewriter-addon\\\\\\/revslider-typewriter-addon.php\\\",\\\"name\\\":\\\"Typewriter AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/typewriter-addon\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Immersion One Page\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"10\",\"installed\":false},\"204\":{\"id\":\"213\",\"title\":\"Immersion Mountains\",\"alias\":\"immersion-mountains\",\"zip\":\"packs\\/immersion-mountains.zip\",\"uid\":\"817167eb3fe22b7e065ba210cbe6d53c\",\"img\":\"immersion-mountains\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/immersion-wordpress-one-page-theme-2018\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-slicey-addon\\\\\\/revslider-slicey-addon.php\\\",\\\"name\\\":\\\"Background Slicey Add-On\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Immersion One Page\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"10\",\"installed\":false},\"205\":{\"id\":\"214\",\"title\":\"Immersion Product\",\"alias\":\"immersion-product\",\"zip\":\"packs\\/immersion-product.zip\",\"uid\":\"64134f263484d2bbcd7ef088ffbbfb4b\",\"img\":\"immersion-product\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/immersion-wordpress-one-page-theme-2018\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Immersion One Page\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"10\",\"installed\":false},\"206\":{\"id\":\"215\",\"title\":\"Immersion Design\",\"alias\":\"immersion-design\",\"zip\":\"packs\\/immersion-design.zip\",\"uid\":\"91e1d77c1a2826438763804f4d02bc26\",\"img\":\"immersion-design\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/immersion-wordpress-one-page-theme-2018\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Immersion One Page\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"10\",\"installed\":false},\"207\":{\"id\":\"216\",\"title\":\"Immersion Phototgraphy\",\"alias\":\"immersion-photography\",\"zip\":\"packs\\/immersion-photography.zip\",\"uid\":\"e3ddf0c577b09740f5cbf2e38ffd684d\",\"img\":\"immersion-photography\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/immersion-wordpress-one-page-theme-2018\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Immersion One Page\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"10\",\"installed\":false},\"208\":{\"id\":\"217\",\"title\":\"Immersion Grid\",\"alias\":\"immersion-grid\",\"zip\":\"packs\\/immersion-grid.zip\",\"uid\":\"b6903868189bb83b2c7a852fde3a7dc3\",\"img\":\"immersion-grid\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/immersion-wordpress-one-page-theme-2018\\/\",\"version\":\"1.0.1\",\"required\":\"5.4.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Immersion One Page\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"10\",\"installed\":false},\"209\":{\"id\":\"218\",\"title\":\"Funky Intro Slider\",\"alias\":\"funkyslider\",\"zip\":\"funkyslider.zip\",\"uid\":\"2d4187e3fdad19b976be335253c8925d\",\"img\":\"funkyslider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/funky-intro-slider-wordpress-plugin\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"This funky intro slider fits just right if you need a striking introduction to your website! Sleek, beautiful and easily customizable!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-typewriter-addon\\\\\\/revslider-typewriter-addon.php\\\",\\\"name\\\":\\\"Typewriter AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/typewriter-addon\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-revealer-addon\\\\\\/revslider-revealer-addon.php\\\",\\\"name\\\":\\\"Reveal AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"210\":{\"id\":\"219\",\"title\":\"Clear View Magazine\",\"alias\":\"clear-view-magazine-package\",\"zip\":\"\",\"uid\":\"clear-view-magazine-package\",\"img\":\"packages\\/clear_view_magazine_overview.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-minimal-magazine-wordpress-template\\/\",\"version\":\"1.0.3\",\"required\":\"6.1.6\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-revealer-addon\\\\\\/revslider-revealer-addon.php\\\",\\\"name\\\":\\\"Reveal AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Magazine\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"11\",\"installed\":false},\"211\":{\"id\":\"220\",\"title\":\"Clear View Menu\",\"alias\":\"clearview_menu\",\"zip\":\"packs\\/clearview_menu.zip\",\"uid\":\"eaecee5fa5f3c3a7f4d2a96c4616a353\",\"img\":\"clearview_menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-minimal-magazine-wordpress-template\\/\",\"version\":\"1.0.3\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Magazine\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"11\",\"installed\":false},\"212\":{\"id\":\"221\",\"title\":\"Clear View Header\",\"alias\":\"clearview_header\",\"zip\":\"packs\\/clearview_header.zip\",\"uid\":\"25e3dd80ad130875d7438a07952cb0cd\",\"img\":\"clearview_header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-minimal-magazine-wordpress-template\\/\",\"version\":\"1.0.3\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-revealer-addon\\\\\\/revslider-revealer-addon.php\\\",\\\"name\\\":\\\"Reveal AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Magazine\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"11\",\"installed\":false},\"213\":{\"id\":\"222\",\"title\":\"Clear View Mission\",\"alias\":\"clearview_mission\",\"zip\":\"packs\\/clearview_mission.zip\",\"uid\":\"35b2092a49fd2beb549342e69097eb5b\",\"img\":\"clearview_mission\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-minimal-magazine-wordpress-template\\/\",\"version\":\"1.0.3\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Magazine\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"11\",\"installed\":false},\"214\":{\"id\":\"223\",\"title\":\"Clear View Slider\",\"alias\":\"clear-view-slider\",\"zip\":\"packs\\/clear-view-slider.zip\",\"uid\":\"d2e17edffce16ed78c54b0ef23fd7e05\",\"img\":\"clear-view-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-minimal-magazine-wordpress-template\\/\",\"version\":\"1.0.3\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Magazine\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"11\",\"installed\":false},\"215\":{\"id\":\"224\",\"title\":\"Clear View News\",\"alias\":\"clear-view-news\",\"zip\":\"packs\\/clear-view-news.zip\",\"uid\":\"5698d3131ba141e9afcfd2906739dd00\",\"img\":\"clear-view-news\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-minimal-magazine-wordpress-template\\/\",\"version\":\"1.0.3\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Magazine\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"11\",\"installed\":false},\"216\":{\"id\":\"225\",\"title\":\"Clear View Clients\",\"alias\":\"clear-view-clients\",\"zip\":\"packs\\/clear-view-clients.zip\",\"uid\":\"b95616a94832e22bdfac5ce60232be1b\",\"img\":\"clear-view-clients\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-minimal-magazine-wordpress-template\\/\",\"version\":\"1.0.3\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Magazine\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"11\",\"installed\":false},\"217\":{\"id\":\"226\",\"title\":\"Clear View Contact\",\"alias\":\"clear-view-contact\",\"zip\":\"packs\\/clear-view-contact.zip\",\"uid\":\"0e0cc1d8f6f6500e5f8a2b091fa3b4cb\",\"img\":\"clear-view-contact\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-minimal-magazine-wordpress-template\\/\",\"version\":\"1.0.3\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Magazine\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"11\",\"installed\":false},\"218\":{\"id\":\"227\",\"title\":\"Clear View Post Page\",\"alias\":\"clear-view-post-page-package\",\"zip\":\"\",\"uid\":\"clear-view-post-page-package\",\"img\":\"packages\\/clear_view_post_page_overview.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-single-post-page-wordpress-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-revealer-addon\\\\\\/revslider-revealer-addon.php\\\",\\\"name\\\":\\\"Reveal AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Post Page\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"12\",\"installed\":false},\"219\":{\"id\":\"228\",\"title\":\"Clear View Single Menu\",\"alias\":\"clear-view-single-menu\",\"zip\":\"packs\\/clear-view-single-menu.zip\",\"uid\":\"1e80f81982f8a4ea763482d4fa99d321\",\"img\":\"clear-view-single-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-single-post-page-wordpress-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Post Page\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"12\",\"installed\":false},\"220\":{\"id\":\"229\",\"title\":\"Clear View Single Header\",\"alias\":\"clear-view-single-header\",\"zip\":\"packs\\/clear-view-single-header.zip\",\"uid\":\"c8d717627be6cd5e70922ab609694dbf\",\"img\":\"clear-view-single-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-single-post-page-wordpress-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-revealer-addon\\\\\\/revslider-revealer-addon.php\\\",\\\"name\\\":\\\"Reveal AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Post Page\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"12\",\"installed\":false},\"221\":{\"id\":\"230\",\"title\":\"Clear View Single Media\",\"alias\":\"clear-view-single-media\",\"zip\":\"packs\\/clear-view-single-media.zip\",\"uid\":\"c480368ded2a64f0cdd44f1674213814\",\"img\":\"clear-view-single-media\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-single-post-page-wordpress-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Post Page\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"12\",\"installed\":false},\"222\":{\"id\":\"231\",\"title\":\"Clear View Single More\",\"alias\":\"clear-view-single-more\",\"zip\":\"packs\\/clear-view-single-more.zip\",\"uid\":\"9c693190df26218366d1f77e10cf550a\",\"img\":\"clear-view-single-more\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-single-post-page-wordpress-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Post Page\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"12\",\"installed\":false},\"223\":{\"id\":\"232\",\"title\":\"Clear View Single Contact\",\"alias\":\"clear-view-single-contact\",\"zip\":\"packs\\/clear-view-single-contact.zip\",\"uid\":\"73c0a889f2b654a87b5aba1ff76fbc5c\",\"img\":\"clear-view-single-contact\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-view-single-post-page-wordpress-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Clear View Post Page\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"12\",\"installed\":false},\"224\":{\"id\":\"233\",\"title\":\"Clean Landing Page\",\"alias\":\"cleanlandingpage\",\"zip\":\"cleanlandingpage.zip\",\"uid\":\"727a3680d312f22c6a5998ebdb9afe52\",\"img\":\"cleanlandingpage\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clean-landing-page-for-wordpress\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Clean Landing Page is a fullscreen Intro Module that is a striking introduction to any minimal website, with no unnecessary elements.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-typewriter-addon\\\\\\/revslider-typewriter-addon.php\\\",\\\"name\\\":\\\"Typewriter AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/typewriter-addon\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"225\":{\"id\":\"234\",\"title\":\"Clear Cut\",\"alias\":\"clearcut\",\"zip\":\"clearcut.zip\",\"uid\":\"07f43c00e9b4d3057a03cdb3385ad2b7\",\"img\":\"clearcut\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/clear-cut-portfolio-website-for-wordpress\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Clear Cut Template is an All-In-One Portfolio Website solution that works best for smaller portfolios. Highlight your best work in a striking and mobile friendly fashion!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"226\":{\"id\":\"235\",\"title\":\"Wonderstruck One-Pager\",\"alias\":\"wonderstruck-one-pager-package\",\"zip\":\"\",\"uid\":\"wonderstruck-one-pager-package\",\"img\":\"packages\\/wonderstruck-one-pager-overview.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wonderstruck-one-page-website-for-wordpress\",\"version\":\"1.0.0\",\"required\":\"5.4.7\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Wonderstruck One-Pager\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"13\",\"installed\":false},\"227\":{\"id\":\"236\",\"title\":\"Wonderstruck Menu\",\"alias\":\"wonderstruck_menu\",\"zip\":\"packs\\/wonderstruck_menu.zip\",\"uid\":\"0a976e9aaae59c4f795b38f59f5a08d8\",\"img\":\"wonderstruck_menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wonderstruck-one-page-website-for-wordpress\",\"version\":\"1.0.0\",\"required\":\"5.4.7\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Wonderstruck One-Pager\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"13\",\"installed\":false},\"228\":{\"id\":\"237\",\"title\":\"Wonderstruck Header\",\"alias\":\"wonderstruck_header\",\"zip\":\"packs\\/wonderstruck_header.zip\",\"uid\":\"e1379f77a902960a0ce12d44d85a9e0a\",\"img\":\"wonderstruck_header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wonderstruck-one-page-website-for-wordpress\",\"version\":\"1.0.0\",\"required\":\"5.4.7\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Wonderstruck One-Pager\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"13\",\"installed\":false},\"229\":{\"id\":\"238\",\"title\":\"Wonderstruck About\",\"alias\":\"wonderstruck_about\",\"zip\":\"packs\\/wonderstruck_about.zip\",\"uid\":\"d207fb140fd328acc3038300ea52082a\",\"img\":\"wonderstruck_about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wonderstruck-one-page-website-for-wordpress\",\"version\":\"1.0.0\",\"required\":\"5.4.7\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Wonderstruck One-Pager\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"13\",\"installed\":false},\"230\":{\"id\":\"239\",\"title\":\"Wonderstruck Works\",\"alias\":\"wonderstruck-works\",\"zip\":\"packs\\/wonderstruck-works.zip\",\"uid\":\"4476935097e27d92454b0011b7700c1d\",\"img\":\"wonderstruck-works\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wonderstruck-one-page-website-for-wordpress\",\"version\":\"1.0.0\",\"required\":\"5.4.7\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Wonderstruck One-Pager\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"13\",\"installed\":false},\"231\":{\"id\":\"240\",\"title\":\"Wonderstruck Contact\",\"alias\":\"wonderstruck-contact\",\"zip\":\"packs\\/wonderstruck-contact.zip\",\"uid\":\"9e4911521f77bce2b8efa40f4c2adc22\",\"img\":\"wonderstruck-contact\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wonderstruck-one-page-website-for-wordpress\",\"version\":\"1.0.0\",\"required\":\"5.4.7\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Wonderstruck One-Pager\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"13\",\"installed\":false},\"232\":{\"id\":\"241\",\"title\":\"Bubble Morph\",\"alias\":\"bubblemorph\",\"zip\":\"bubblemorph.zip\",\"uid\":\"1102d6f5460ab82cb612cbe9f1d9514b\",\"img\":\"bubblemorph\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/bubble-morph-effect-add-on-for-wordpress\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.7\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Bubble Morph Add-On allows you to create interesting Lava-Lamp style effects on any of your Slider Revolution content.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"233\":{\"id\":\"242\",\"title\":\"Distortion AddOn\",\"alias\":\"distortionaddon\",\"zip\":\"distortionaddon.zip\",\"uid\":\"0ad46c9929bb2fa6316f1e6ced301aaf\",\"img\":\"distortionaddon\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/distortion-effect-add-on-for-wordpress\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.7\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Distortion Add-On allows you to create interesting Distortion style effects on any of your Slider Revolution content.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-liquideffect-addon\\\\\\/revslider-liquideffect-addon.php\\\",\\\"name\\\":\\\"Distortion Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"234\":{\"id\":\"243\",\"title\":\"Club Flyer\",\"alias\":\"clubflyer\",\"zip\":\"clubflyer.zip\",\"uid\":\"dab73b9904d0e643a35b0475980998bd\",\"img\":\"clubflyer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/club-flyer-landing-page-template-for-wordpress\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"This Club Fyler Template for Slider Revolution uses the brand new Exploding Layers Add-On to create a captivating effect. Tap into unlimited creative potential. <\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-explodinglayers-addon\\\\\\/revslider-explodinglayers-addon.php\\\",\\\"name\\\":\\\"Exploding Layers AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"235\":{\"id\":\"244\",\"title\":\"Paintbrush AddOn\",\"alias\":\"paintbrushaddon\",\"zip\":\"paintbrushaddon.zip\",\"uid\":\"c85c48a6742b4bf72a2590cc1b50f6a0\",\"img\":\"paintbrushaddon\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/paintbrush-effect-add-on-for-wordpress\\/\",\"version\":\"1.0.2\",\"required\":\"6.5.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Paintbrush Add-On for WordPress allows you to add cool mouse interaction effects to your Slider Revolution content. Examples: Blur Reveal, Color Reveal, Scratch Me Free.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-paintbrush-addon\\\\\\/revslider-paintbrush-addon.php\\\",\\\"name\\\":\\\"Paintbrush AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"236\":{\"id\":\"245\",\"title\":\"Parallax One-Pager\",\"alias\":\"parallax-one-pager-package\",\"zip\":\"\",\"uid\":\"parallax-one-pager-package\",\"img\":\"packages\\/parallax-one-pager-package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/parallax-one-page-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Parallax One-Pager\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"14\",\"installed\":false},\"237\":{\"id\":\"246\",\"title\":\"Parallax Header\",\"alias\":\"parallax_header\",\"zip\":\"packs\\/parallax_header.zip\",\"uid\":\"32bf4a0f5136853bd6bd366275a7a60b\",\"img\":\"parallax_header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/parallax-one-page-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Parallax One-Pager\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"14\",\"installed\":false},\"238\":{\"id\":\"247\",\"title\":\"Parallax Content\",\"alias\":\"parallax_content\",\"zip\":\"packs\\/parallax_content.zip\",\"uid\":\"a25c5fb8f74757476ab4dc038e56f90d\",\"img\":\"parallax_content\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/parallax-one-page-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Parallax One-Pager\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"14\",\"installed\":false},\"239\":{\"id\":\"248\",\"title\":\"Parallax Footer\",\"alias\":\"parallax_footer\",\"zip\":\"packs\\/parallax_footer.zip\",\"uid\":\"665dff9ea6eaf162a2a1f160f51a9ddb\",\"img\":\"parallax_footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/parallax-one-page-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Parallax One-Page WordPress Template is consisting of 3 hero blocks and contains a beautiful parallax mountain scene. An impactful opening to your web presence!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Parallax One-Pager\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"14\",\"installed\":false},\"240\":{\"id\":\"249\",\"title\":\"Le Chef Restaurant\",\"alias\":\"le-chef-restaurant\",\"zip\":\"\",\"uid\":\"le-chef-restaurant-package\",\"img\":\"packages\\/le-chef-restaurant-package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/le-chef-restaurant-website-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Le Chef Restaurant\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"15\",\"installed\":false},\"241\":{\"id\":\"250\",\"title\":\"Le Chef Menu\",\"alias\":\"le-chef-menu\",\"zip\":\"packs\\/le-chef-menu.zip\",\"uid\":\"2f2a6a333431fefe4a7b3b6a982b2ff5\",\"img\":\"le-chef-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/le-chef-restaurant-website-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Le Chef Restaurant\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"15\",\"installed\":false},\"242\":{\"id\":\"251\",\"title\":\"Le Chef Header\",\"alias\":\"le-chef-header\",\"zip\":\"packs\\/le-chef-header.zip\",\"uid\":\"06450ca3be5a4a8959f3752ab974e574\",\"img\":\"le-chef-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/le-chef-restaurant-website-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Le Chef Restaurant\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"15\",\"installed\":false},\"243\":{\"id\":\"252\",\"title\":\"Le Chef Philosophy\",\"alias\":\"le-chef-philosophy\",\"zip\":\"packs\\/le-chef-philosophy.zip\",\"uid\":\"a532fd029addeb18106e751409b8e20a\",\"img\":\"le-chef-philosophy\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/le-chef-restaurant-website-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Le Chef Restaurant\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"15\",\"installed\":false},\"244\":{\"id\":\"253\",\"title\":\"Le Chef Food\",\"alias\":\"le-chef-food\",\"zip\":\"packs\\/le-chef-food.zip\",\"uid\":\"cd4b6a2cb5de2dd20a0e8ba0c35451df\",\"img\":\"le-chef-food\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/le-chef-restaurant-website-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Le Chef Restaurant\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"15\",\"installed\":false},\"245\":{\"id\":\"254\",\"title\":\"Le Chef La Carte\",\"alias\":\"le-chef-la-carte\",\"zip\":\"packs\\/le-chef-la-carte.zip\",\"uid\":\"6f312749679c3ba52c41189a6b8bf729\",\"img\":\"le-chef-la-carte\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/le-chef-restaurant-website-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Le Chef Restaurant\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"15\",\"installed\":false},\"246\":{\"id\":\"255\",\"title\":\"Le Chef Footer\",\"alias\":\"le-chef-footer\",\"zip\":\"packs\\/le-chef-footer.zip\",\"uid\":\"12fc241e8e5b9e5df9758c43448e2907\",\"img\":\"le-chef-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/le-chef-restaurant-website-wordpress-template\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Le Chef Restaurant Template is a One-Page Website and a full solution for your clients Restaurant. Showcase images in the header slideshow and present the Restaurants offering in a clear way!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Le Chef Restaurant\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"15\",\"installed\":false},\"247\":{\"id\":\"256\",\"title\":\"News Magazine Slider\",\"alias\":\"news-magazine-slider\",\"zip\":\"news-magazine-slider.zip\",\"uid\":\"31f2c1506babb1fef459401f051d2d52\",\"img\":\"news-magazine-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/news-magazine-slider-for-wordpress\\/\",\"version\":\"1.0.1\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Magazine Slider offers various layouts that support static content images, HTML5 and Youtube video. Great for any blog or news website!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-revealer-addon\\\\\\/revslider-revealer-addon.php\\\",\\\"name\\\":\\\"Reveal AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false,\"is_new\":true},\"248\":{\"id\":\"257\",\"title\":\"Real Estate Slider\",\"alias\":\"real-estate-slider\",\"zip\":\"real-estate-slider.zip\",\"uid\":\"739ce6336e46815094387c9448e6c804\",\"img\":\"real-estate-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/real-estate-slider-for-wordpress\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Real Estate Slider allows to display real estate offers with a large ken burns background image and additional thumbnail hover images.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"249\":{\"id\":\"258\",\"title\":\"Fashion Header\",\"alias\":\"fashion-header\",\"zip\":\"fashion-header.zip\",\"uid\":\"24ece4e7f4d31cd90377c62abbd9e25a\",\"img\":\"fashion-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/fashion-shop-header-slider-for-wordpress\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Fashion Shop Header ist the ideal Slider to display as an intro to your shop website or as a separator in between content. Our unique \\\"Bubble Morph\\\" effect makes this module stand out!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"250\":{\"id\":\"259\",\"title\":\"Seasonal Offer\",\"alias\":\"seasonaloffer\",\"zip\":\"seasonaloffer.zip\",\"uid\":\"caf2f17f8fd64f2f89dcb3c8dd238457\",\"img\":\"seasonaloffer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/seasonal-offer-christmas-header-for-wordpress\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"Use the Seasonal Offer Header to promote special offers in the holiday season, or just to add some snowy christmas spirit to your website!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-snow-addon\\\\\\/revslider-snow-addon.php\\\",\\\"name\\\":\\\"Snow AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"251\":{\"id\":\"260\",\"title\":\"Barber Shop\",\"alias\":\"barber-shop\",\"zip\":\"\",\"uid\":\"barber-shop-package\",\"img\":\"packages\\/barber-shop-package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/barber-shop-template-for-wordpress\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Barber Shop\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"16\",\"installed\":false},\"252\":{\"id\":\"261\",\"title\":\"Barber Shop Header\",\"alias\":\"barber-shop-header\",\"zip\":\"packs\\/barber-shop-header.zip\",\"uid\":\"71c995d36d39a0e8a04cffdf753f2ba2\",\"img\":\"barber-shop-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/barber-shop-template-for-wordpress\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Barber Shop\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"16\",\"installed\":false},\"253\":{\"id\":\"262\",\"title\":\"Barber Shop Mobile Menu\",\"alias\":\"barber-shop-mobile-menu\",\"zip\":\"packs\\/barber-shop-mobile-menu.zip\",\"uid\":\"762c6fb5c6306f37becb1e55773c2592\",\"img\":\"barber-shop-mobile-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/barber-shop-template-for-wordpress\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Barber Shop\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"16\",\"installed\":false},\"254\":{\"id\":\"263\",\"title\":\"Barber Shop First Screen\",\"alias\":\"barber-shop-first-screen\",\"zip\":\"packs\\/barber-shop-first-screen.zip\",\"uid\":\"acf70bfd64cff2c3c2ea5585223575da\",\"img\":\"barber-shop-first-screen\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/barber-shop-template-for-wordpress\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Barber Shop\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"16\",\"installed\":false},\"255\":{\"id\":\"264\",\"title\":\"Barber Shop About\",\"alias\":\"barber-shop-about\",\"zip\":\"packs\\/barber-shop-about.zip\",\"uid\":\"bc8b63cfc7f8c34173b4fd5b082fc05a\",\"img\":\"barber-shop-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/barber-shop-template-for-wordpress\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Barber Shop\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"16\",\"installed\":false},\"256\":{\"id\":\"265\",\"title\":\"Barber Shop Services\",\"alias\":\"barber-shop-services\",\"zip\":\"packs\\/barber-shop-services.zip\",\"uid\":\"d65121d6f84fabd812a2b621b768e10e\",\"img\":\"barber-shop-services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/barber-shop-template-for-wordpress\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Barber Shop\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"16\",\"installed\":false},\"257\":{\"id\":\"266\",\"title\":\"Barber Shop Barbers\",\"alias\":\"barber-shop-barbers\",\"zip\":\"packs\\/barber-shop-barbers.zip\",\"uid\":\"003e9fec9693072119c8f8d8b6690c4d\",\"img\":\"barber-shop-barbers\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/barber-shop-template-for-wordpress\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Barber Shop\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"16\",\"installed\":false},\"258\":{\"id\":\"267\",\"title\":\"Barber Shop Contacts\",\"alias\":\"barber-shop-contacts\",\"zip\":\"packs\\/barber-shop-contacts.zip\",\"uid\":\"cdcc08f5d6c90dbcfd0502bda2401643\",\"img\":\"barber-shop-contacts\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/barber-shop-template-for-wordpress\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Barber Shop\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"16\",\"installed\":false},\"259\":{\"id\":\"268\",\"title\":\"Barber Shop Footer\",\"alias\":\"barber-shop-footer\",\"zip\":\"packs\\/barber-shop-footer.zip\",\"uid\":\"26ca5ae0de7cdbb2ca19348b6e01eda0\",\"img\":\"barber-shop-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/barber-shop-template-for-wordpress\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Barber Shop is a useful One-Page template presenting all information about your business. Build your websites faster with Slider Revolution templates.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Barber Shop\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"16\",\"installed\":false},\"260\":{\"id\":\"269\",\"title\":\"Fitness Club\",\"alias\":\"fitness-club-template\",\"zip\":\"fitness-club-template.zip\",\"uid\":\"14ea10d68d6aad1df62b3becf71df754\",\"img\":\"fitness-club-template\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/fitness-club-header-for-wordpress\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Fitness Club Header is the perfect introduction to your fitness themed website. Showcase your current offers or service portfolio with sleek transitions!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"261\":{\"id\":\"270\",\"title\":\"Soccer School\",\"alias\":\"soccer-school\",\"zip\":\"soccer-school.zip\",\"uid\":\"9906b48812aff67097f990eeee42dd41\",\"img\":\"soccer-school\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/soccer-club-slider-for-wordpress\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Soccer Club Header is the perfect introduction to your Soccer School themed website. Showcase your current offers or service portfolio with sleek transitions!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-revealer-addon\\\\\\/revslider-revealer-addon.php\\\",\\\"name\\\":\\\"Reveal AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"262\":{\"id\":\"271\",\"title\":\"Music Band\",\"alias\":\"music-band-template\",\"zip\":\"music-band-template.zip\",\"uid\":\"91e79657bf1b1812f8114a00ab8e0eb4\",\"img\":\"music-band-template\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/music-band-template-for-wordpress\\/\",\"version\":\"1.0.1\",\"required\":\"5.4.8.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Music Band Header is the perfect introduction to your Music Band themed website. Showcase your current songs, albums and videos with sleek transitions!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-revealer-addon\\\\\\/revslider-revealer-addon.php\\\",\\\"name\\\":\\\"Reveal AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"263\":{\"id\":\"272\",\"title\":\"Restaurant Menu\",\"alias\":\"restaurant-menu\",\"zip\":\"restaurant-menu.zip\",\"uid\":\"078809cffb21b6c4d3f5aaa2daeb193d\",\"img\":\"restaurant-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/restaurant-menu-slider-for-wordpress\\/\",\"version\":\"1.0.0\",\"required\":\"5.4.8.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Restaurant Menu Header is the perfect introduction to your Restaurant themed website. Showcase your current dishes with sleek transitions!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"264\":{\"id\":\"273\",\"title\":\"Cinematic Slider\",\"alias\":\"cinematic-slider\",\"zip\":\"cinematic-slider.zip\",\"uid\":\"c53e7dcbb6b656ae7b4c91d333589838\",\"img\":\"cinematic-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/cinematic-slider-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"Bold texts and a cinematic transition effect make this slider stand out!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"265\":{\"id\":\"274\",\"title\":\"3D Parallax Cubes\",\"alias\":\"3d-parallax-cubes\",\"zip\":\"3d-parallax-cubes.zip\",\"uid\":\"c5b809a1829f8f809c9a768cd3d6b3cb\",\"img\":\"3d-parallax-cubes\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/3d-parallax-cubes-slider-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"This amazing 3D cubes parallax effect can be an eye-opening intro for your website!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"266\":{\"id\":\"275\",\"title\":\"Medicare Medical Services Website\",\"alias\":\"medicare-medical-services-website\",\"zip\":\"\",\"uid\":\"medicare-medical-services-website-package\",\"img\":\"packages\\/medicare_package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"267\":{\"id\":\"276\",\"title\":\"Medicare Menu\",\"alias\":\"medicare-menu\",\"zip\":\"packs\\/medicare-menu.zip\",\"uid\":\"0e4ca8fc281e20251b3fffa19d470fed\",\"img\":\"medicare-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"268\":{\"id\":\"277\",\"title\":\"Medicare Header\",\"alias\":\"medicare-header\",\"zip\":\"packs\\/medicare-header.zip\",\"uid\":\"03e8ade247d8c96f548bc0515f34043f\",\"img\":\"medicare-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"269\":{\"id\":\"278\",\"title\":\"Medicare About\",\"alias\":\"medicare-about\",\"zip\":\"packs\\/medicare-about.zip\",\"uid\":\"a3ab9e89155ef2542820343f30b29f72\",\"img\":\"medicare-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"270\":{\"id\":\"279\",\"title\":\"Medicare Highlight\",\"alias\":\"medicare-highlight\",\"zip\":\"packs\\/medicare-highlight.zip\",\"uid\":\"c3c8a74e5402489f1a85a0c83890ef1f\",\"img\":\"medicare-highlight\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"271\":{\"id\":\"280\",\"title\":\"Medicare Services\",\"alias\":\"medicare-services\",\"zip\":\"packs\\/medicare-services.zip\",\"uid\":\"8869b0834d4649dcc3221bed65980806\",\"img\":\"medicare-services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"272\":{\"id\":\"281\",\"title\":\"Medicare Doctors\",\"alias\":\"medicare-doctors\",\"zip\":\"packs\\/medicare-doctors.zip\",\"uid\":\"2c9d57afd64244b5f7e30b0d87c842f9\",\"img\":\"medicare-doctors\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"273\":{\"id\":\"282\",\"title\":\"Medicare Research\",\"alias\":\"medicare-research\",\"zip\":\"packs\\/medicare-research.zip\",\"uid\":\"31e84a91fc8b8d5296e715e539a076d0\",\"img\":\"medicare-research\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"274\":{\"id\":\"283\",\"title\":\"Medicare Why Choose\",\"alias\":\"medicare-whychoose\",\"zip\":\"packs\\/medicare-whychoose.zip\",\"uid\":\"6dad61c672127de9e35884caa45d49a0\",\"img\":\"medicare-whychoose\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"275\":{\"id\":\"284\",\"title\":\"Medicare Contact\",\"alias\":\"medicare-contact\",\"zip\":\"packs\\/medicare-contact.zip\",\"uid\":\"89bc35ad8beb62a149c42262ae49a270\",\"img\":\"medicare-contact\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"276\":{\"id\":\"285\",\"title\":\"Medicare Footer\",\"alias\":\"medicare-footer\",\"zip\":\"packs\\/medicare-footer.zip\",\"uid\":\"ccf63e5233b3d63009e5ee90db51b37b\",\"img\":\"medicare-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/medicare-medical-services-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Medicare Medical Services template is a great solution for your medical practice or hospital.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Medicare Medical Services\",\"package_order\":\"10\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"17\",\"installed\":false},\"277\":{\"id\":\"286\",\"title\":\"Coffee Joint Website\",\"alias\":\"coffee-joint-website\",\"zip\":\"\",\"uid\":\"coffee-joint-website-package\",\"img\":\"packages\\/coffee_package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/coffee-joint-coffee-shop-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Coffee Joint website template is a great solution for your cafe or bistro.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Coffee Joint\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"18\",\"installed\":false},\"278\":{\"id\":\"287\",\"title\":\"Coffee Menu\",\"alias\":\"coffee-menu\",\"zip\":\"packs\\/coffee-menu.zip\",\"uid\":\"81195cad7be3f5180a267b34ce8cf966\",\"img\":\"coffee-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/coffee-joint-coffee-shop-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Coffee Joint website template is a great solution for your cafe or bistro.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Coffee Joint\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"18\",\"installed\":false},\"279\":{\"id\":\"288\",\"title\":\"Coffee Header\",\"alias\":\"coffee-header\",\"zip\":\"packs\\/coffee-header.zip\",\"uid\":\"5eed8adb9d3ae12168ad4735ac63eb20\",\"img\":\"coffee-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/coffee-joint-coffee-shop-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Coffee Joint website template is a great solution for your cafe or bistro.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Coffee Joint\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"18\",\"installed\":false},\"280\":{\"id\":\"289\",\"title\":\"Coffee Philosophy\",\"alias\":\"coffee-philosophy\",\"zip\":\"packs\\/coffee-philosophy.zip\",\"uid\":\"76b5ccae3fa87fd0f991b87e7ae71c27\",\"img\":\"coffee-philosophy\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/coffee-joint-coffee-shop-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Coffee Joint website template is a great solution for your cafe or bistro.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Coffee Joint\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"18\",\"installed\":false},\"281\":{\"id\":\"290\",\"title\":\"Coffee Carte\",\"alias\":\"coffee-carte\",\"zip\":\"packs\\/coffee-carte.zip\",\"uid\":\"470214ddd2cec585629fb79a0fd908d6\",\"img\":\"coffee-carte\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/coffee-joint-coffee-shop-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Coffee Joint website template is a great solution for your cafe or bistro.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Coffee Joint\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"18\",\"installed\":false},\"282\":{\"id\":\"291\",\"title\":\"Coffee Teaser\",\"alias\":\"coffee-teaser\",\"zip\":\"packs\\/coffee-teaser.zip\",\"uid\":\"2ed868896c92a7bfb6431803c79e8486\",\"img\":\"coffee-teaser\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/coffee-joint-coffee-shop-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Coffee Joint website template is a great solution for your cafe or bistro.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Coffee Joint\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"18\",\"installed\":false},\"283\":{\"id\":\"292\",\"title\":\"Coffee Find Us\",\"alias\":\"coffee-findus\",\"zip\":\"packs\\/coffee-findus.zip\",\"uid\":\"96d3784473dfa64bce9e1e4101919927\",\"img\":\"coffee-findus\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/coffee-joint-coffee-shop-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Coffee Joint website template is a great solution for your cafe or bistro.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Coffee Joint\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"18\",\"installed\":false},\"284\":{\"id\":\"293\",\"title\":\"Coffee Footer\",\"alias\":\"coffee-footer\",\"zip\":\"packs\\/coffee-footer.zip\",\"uid\":\"6027c25e87a5fe7fd8727a51c0967915\",\"img\":\"coffee-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/coffee-joint-coffee-shop-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Coffee Joint website template is a great solution for your cafe or bistro.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Coffee Joint\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"18\",\"installed\":false},\"286\":{\"id\":\"295\",\"title\":\"Minimal Portfolio\",\"alias\":\"minimal-portfolio\",\"zip\":\"packs\\/minimal-portfolio.zip\",\"uid\":\"183b97b301d5ff0b171c067a87c8a3f5\",\"img\":\"minimal-portfolio\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/minimal-portfolio-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Minimal Portfolio template is a slide based website with additional modal detail pages.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Minimal Portfolio\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"19\",\"installed\":false,\"is_new\":true},\"287\":{\"id\":\"296\",\"title\":\"Minimal Portfolio Modal\",\"alias\":\"minimal-portfolio-modal\",\"zip\":\"packs\\/minimal-portfolio-modal.zip\",\"uid\":\"6874e6cec3663670f209a8d8a4f26b16\",\"img\":\"minimal-portfolio-modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/minimal-portfolio-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Minimal Portfolio template is a slide based website with additional modal detail pages.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Minimal Portfolio\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"19\",\"installed\":false},\"288\":{\"id\":\"297\",\"title\":\"Angled Business Website\",\"alias\":\"angled-business-website\",\"zip\":\"\",\"uid\":\"angled-business-website-package\",\"img\":\"packages\\/angled_package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/angled-business-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Angled Business\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"20\",\"installed\":false},\"289\":{\"id\":\"298\",\"title\":\"Angled Menu\",\"alias\":\"angled-menu\",\"zip\":\"packs\\/angled-menu.zip\",\"uid\":\"2fe0c4682d1231ee3918be9e4fcb1837\",\"img\":\"angled-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/angled-business-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Angled Business\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"20\",\"installed\":false},\"290\":{\"id\":\"299\",\"title\":\"Angled Header\",\"alias\":\"angled-header\",\"zip\":\"packs\\/angled-header.zip\",\"uid\":\"09462601d4edca8dff899de6f666dc47\",\"img\":\"angled-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/angled-business-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Angled Business\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"20\",\"installed\":false},\"291\":{\"id\":\"300\",\"title\":\"Angled News\",\"alias\":\"angled-news\",\"zip\":\"packs\\/angled-news.zip\",\"uid\":\"b315105763ed91214cb2f0ac12615729\",\"img\":\"angled-news\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/angled-business-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Angled Business\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"20\",\"installed\":false},\"292\":{\"id\":\"301\",\"title\":\"Angled Services\",\"alias\":\"angled-services\",\"zip\":\"packs\\/angled-services.zip\",\"uid\":\"7605651c1487e1a6c32edc70017be8ad\",\"img\":\"angled-services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/angled-business-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Angled Business\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"20\",\"installed\":false},\"293\":{\"id\":\"302\",\"title\":\"Angled Success\",\"alias\":\"angled-success\",\"zip\":\"packs\\/angled-success.zip\",\"uid\":\"9e3fa974a42ecf80e1ec6ff991fca430\",\"img\":\"angled-success\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/angled-business-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Angled Business\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"20\",\"installed\":false},\"294\":{\"id\":\"303\",\"title\":\"Angled Footer\",\"alias\":\"angled-footer\",\"zip\":\"packs\\/angled-footer.zip\",\"uid\":\"aed4eaa2f7883351ba9c9947feef153e\",\"img\":\"angled-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/angled-business-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Angled Business\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"20\",\"installed\":false},\"295\":{\"id\":\"304\",\"title\":\"Angled Content Modal\",\"alias\":\"angled-content-modal\",\"zip\":\"packs\\/angled-content-modal.zip\",\"uid\":\"4ddc74515fdf84f974217e4ed47a7c66\",\"img\":\"angled-content-modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/angled-business-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Angled Business Website template is a geometric, parallax one-page website with modal based detail pages.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Angled Business\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"20\",\"installed\":false},\"296\":{\"id\":\"312\",\"title\":\"Retouch Before and After\",\"alias\":\"Retouch\",\"zip\":\"Retouch.zip\",\"uid\":\"58894991f1abd8b448c8d353b1b5fe76\",\"img\":\"Retouch\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/retouch-before-after-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Retouch Slider is the perfect way to compare your photos before and after retouching.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-beforeafter-addon\\\\\\/revslider-beforeafter-addon.php\\\",\\\"name\\\":\\\"Before After AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"297\":{\"id\":\"313\",\"title\":\"Tech Slider\",\"alias\":\"tech-slider\",\"zip\":\"tech-slider.zip\",\"uid\":\"a98e2b264f00a1116d21808c6a543162\",\"img\":\"tech-slider\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/tech-showcase-slider-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"This classic slider module with sleek device mockups features a smooth parallax effect.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"298\":{\"id\":\"314\",\"title\":\"Peak Agency Website\",\"alias\":\"peak-agency-website\",\"zip\":\"\",\"uid\":\"peak-agency-website-package\",\"img\":\"packages\\/peak_package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/peak-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Peak Agency Website template is a minimal, light one-pager.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Peak Agency\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"22\",\"installed\":false},\"299\":{\"id\":\"315\",\"title\":\"Peak Header\",\"alias\":\"peak-header\",\"zip\":\"packs\\/peak-header.zip\",\"uid\":\"b721bd612e9fbc5182418ad3fd7d0808\",\"img\":\"peak-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/peak-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Peak Agency Website template is a minimal, light one-pager.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Peak Agency\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"22\",\"installed\":false},\"300\":{\"id\":\"316\",\"title\":\"Peak About\",\"alias\":\"peak-about\",\"zip\":\"packs\\/peak-about.zip\",\"uid\":\"7e68b1012fb03490d45c7f79e8cb1b19\",\"img\":\"peak-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/peak-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Peak Agency Website template is a minimal, light one-pager.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Peak Agency\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"22\",\"installed\":false},\"301\":{\"id\":\"317\",\"title\":\"Peak Portfolio\",\"alias\":\"peak-portfolio\",\"zip\":\"packs\\/peak-portfolio.zip\",\"uid\":\"6198d1885ba9e95221c33e404f21bdbc\",\"img\":\"peak-portfolio\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/peak-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Peak Agency Website template is a minimal, light one-pager.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Peak Agency\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"22\",\"installed\":false},\"302\":{\"id\":\"318\",\"title\":\"Peak Footer\",\"alias\":\"peak-footer\",\"zip\":\"packs\\/peak-footer.zip\",\"uid\":\"2dead6897ad3b3a709b380d81242f76b\",\"img\":\"peak-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/peak-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Peak Agency Website template is a minimal, light one-pager.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Peak Agency\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"22\",\"installed\":false},\"303\":{\"id\":\"319\",\"title\":\"Modern Portfolio Website\",\"alias\":\"modern-portfolio-website\",\"zip\":\"\",\"uid\":\"modern-portfolio-website-package\",\"img\":\"packages\\/portfolio-package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/modern-portfolio-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"A modern portfolio template with fancy scroll animations and a colorful design.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Modern Portfolio\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"23\",\"installed\":false},\"304\":{\"id\":\"320\",\"title\":\"Portfolio Welcome\",\"alias\":\"portfolio-welcome\",\"zip\":\"packs\\/portfolio-welcome.zip\",\"uid\":\"97336b8785e4a7b27facaf1547e0464d\",\"img\":\"portfolio-welcome\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/modern-portfolio-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A modern portfolio template with fancy scroll animations and a colorful design.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Modern Portfolio\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"23\",\"installed\":false},\"305\":{\"id\":\"321\",\"title\":\"Portfolio About\",\"alias\":\"portfolio-about\",\"zip\":\"packs\\/portfolio-about.zip\",\"uid\":\"5d3a4724fd453de5313ceb6696c1db62\",\"img\":\"portfolio-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/modern-portfolio-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A modern portfolio template with fancy scroll animations and a colorful design.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Modern Portfolio\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"23\",\"installed\":false},\"306\":{\"id\":\"322\",\"title\":\"Portfolio Works Title\",\"alias\":\"portfolio-works-title\",\"zip\":\"packs\\/portfolio-works-title.zip\",\"uid\":\"cbb5c6e875cc1f25b463fdf89cabef28\",\"img\":\"portfolio-works-title\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/modern-portfolio-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A modern portfolio template with fancy scroll animations and a colorful design.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Modern Portfolio\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"23\",\"installed\":false},\"307\":{\"id\":\"323\",\"title\":\"Portfolio Works Content\",\"alias\":\"portfolio-works-content\",\"zip\":\"packs\\/portfolio-works-content.zip\",\"uid\":\"5c87311128c7794ffa6ee07ea0648082\",\"img\":\"portfolio-works-content\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/modern-portfolio-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A modern portfolio template with fancy scroll animations and a colorful design.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Modern Portfolio\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"23\",\"installed\":false},\"308\":{\"id\":\"324\",\"title\":\"Portfolio Contacts\",\"alias\":\"portfolio-contacts\",\"zip\":\"packs\\/portfolio-contacts.zip\",\"uid\":\"bd81feffad83b69218f7e837478038e5\",\"img\":\"portfolio-contacts\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/modern-portfolio-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A modern portfolio template with fancy scroll animations and a colorful design.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Modern Portfolio\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"23\",\"installed\":false},\"309\":{\"id\":\"325\",\"title\":\"App Studio Website\",\"alias\":\"app-studio-website\",\"zip\":\"\",\"uid\":\"app-studio-website-package\",\"img\":\"packages\\/App_Studio_package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/app-studio-website\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"A modern one-page presentation website to present your mobile app development team.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"App Studio\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"24\",\"installed\":false},\"310\":{\"id\":\"326\",\"title\":\"App Studio Welcome\",\"alias\":\"App-Studio-Welcome\",\"zip\":\"packs\\/App-Studio-Welcome.zip\",\"uid\":\"2ce0f3c54214b04e6c3a9becfd59730c\",\"img\":\"App-Studio-Welcome\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/app-studio-website\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A modern one-page presentation website to present your mobile app development team.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"App Studio\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"24\",\"installed\":false},\"311\":{\"id\":\"327\",\"title\":\"App Studio Services\",\"alias\":\"App-Studio-Services\",\"zip\":\"packs\\/App-Studio-Services.zip\",\"uid\":\"5df7776271ec69d2f9edaa6b842715a9\",\"img\":\"App-Studio-Services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/app-studio-website\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A modern one-page presentation website to present your mobile app development team.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"App Studio\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"24\",\"installed\":false},\"312\":{\"id\":\"328\",\"title\":\"App Studio About\",\"alias\":\"App-Studio-About\",\"zip\":\"packs\\/App-Studio-About.zip\",\"uid\":\"af8b84dc116c629df7bd89fc69271a2e\",\"img\":\"App-Studio-About\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/app-studio-website\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A modern one-page presentation website to present your mobile app development team.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"App Studio\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"24\",\"installed\":false},\"313\":{\"id\":\"329\",\"title\":\"App Studio Contacts\",\"alias\":\"App-Studio-Contacts\",\"zip\":\"packs\\/App-Studio-Contacts.zip\",\"uid\":\"afbbd2214c983d314f3215a00db9198d\",\"img\":\"App-Studio-Contacts\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/app-studio-website\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A modern one-page presentation website to present your mobile app development team.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"App Studio\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"24\",\"installed\":false},\"314\":{\"id\":\"330\",\"title\":\"Cube Animation\",\"alias\":\"cube-animation\",\"zip\":\"cube-animation.zip\",\"uid\":\"c03dd3cfc60479dfc6d79ddb64fa0ec5\",\"img\":\"cube-animation\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/cube-animation-slider-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A modern slider with text elements, cube animations and a striking call to action button.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"315\":{\"id\":\"331\",\"title\":\"Basic Website\",\"alias\":\"basic-website\",\"zip\":\"\",\"uid\":\"basic-website-package\",\"img\":\"packages\\/basic_package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/basic-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Basic Website\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"25\",\"installed\":false},\"316\":{\"id\":\"332\",\"title\":\"Basic Menu\",\"alias\":\"basic-menu\",\"zip\":\"packs\\/basic-menu.zip\",\"uid\":\"39277f53b2cb5ac644a1649b47c37270\",\"img\":\"basic-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/basic-website\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Basic Website\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"25\",\"installed\":false,\"is_new\":true},\"317\":{\"id\":\"333\",\"title\":\"Basic Header\",\"alias\":\"basic-header\",\"zip\":\"packs\\/basic-header.zip\",\"uid\":\"ad7a32dbccb0bdf9de64cf2adfa950a2\",\"img\":\"basic-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/basic-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Basic Website\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"25\",\"installed\":false},\"318\":{\"id\":\"334\",\"title\":\"Basic Content\",\"alias\":\"basic-content\",\"zip\":\"packs\\/basic-content.zip\",\"uid\":\"0b12f3b183a3c8206e3a7b28d2d93108\",\"img\":\"basic-content\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/basic-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Basic Website\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"25\",\"installed\":false},\"319\":{\"id\":\"335\",\"title\":\"Basic Carousel\",\"alias\":\"basic-carousel\",\"zip\":\"packs\\/basic-carousel.zip\",\"uid\":\"e4abb5c6d5cf914530575a982d3dfc14\",\"img\":\"basic-carousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/basic-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Basic Website\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"25\",\"installed\":false},\"320\":{\"id\":\"336\",\"title\":\"Basic Callout\",\"alias\":\"basic-callout\",\"zip\":\"packs\\/basic-callout.zip\",\"uid\":\"2ccc208b9322f5435d0f4ff64c6d9dab\",\"img\":\"basic-callout\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/basic-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Basic Website\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"25\",\"installed\":false},\"321\":{\"id\":\"337\",\"title\":\"Basic Grid\",\"alias\":\"basic-grid\",\"zip\":\"packs\\/basic-grid.zip\",\"uid\":\"3cb4b41d2992eba012921b8fb7c96daa\",\"img\":\"basic-grid\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/basic-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Basic Website\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"25\",\"installed\":false},\"322\":{\"id\":\"338\",\"title\":\"Basic Video Block\",\"alias\":\"basic-video-block\",\"zip\":\"packs\\/basic-video-block.zip\",\"uid\":\"e7c1d42b21819741f3e72c1325dae5ed\",\"img\":\"basic-video-block\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/basic-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Basic Website\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"25\",\"installed\":false},\"323\":{\"id\":\"339\",\"title\":\"Basic Footer\",\"alias\":\"basic-footer\",\"zip\":\"packs\\/basic-footer.zip\",\"uid\":\"ed8f6a554775ebace558af2f4f2dcbac\",\"img\":\"basic-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/basic-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Basic Website\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"25\",\"installed\":false},\"324\":{\"id\":\"340\",\"title\":\"Basic Lightbox\",\"alias\":\"basic-lightbox\",\"zip\":\"packs\\/basic-lightbox.zip\",\"uid\":\"e4b025b300b1a8f417d04eb80113fac2\",\"img\":\"basic-lightbox\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/basic-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Basic Website template is a minimal one-page website with all the essential modules. Usable and quickly customizable.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Basic Website\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"25\",\"installed\":false},\"325\":{\"id\":\"341\",\"title\":\"Nature Slider\",\"alias\":\"nature-slider\",\"zip\":\"nature-slider.zip\",\"uid\":\"eef1a4584ec1c3b8c26c305cca44e805\",\"img\":\"nature-slider\\/slide1.jpg\",\"preview\":\"http:\\/\\/revolution.themepunch.com\\/nature-explorer-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Nature Explorer Slider Template uses the Distortion and Particle Effects Add-Ons.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-liquideffect-addon\\\\\\/revslider-liquideffect-addon.php\\\",\\\"name\\\":\\\"Distortion Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"326\":{\"id\":\"342\",\"title\":\"Art Gallery\",\"alias\":\"art-gallery\",\"zip\":\"art-gallery.zip\",\"uid\":\"b8c5095ae3407337e6e5b2a8515e7d6e\",\"img\":\"art-gallery\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/art-gallery-slider-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.2.22\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A modern slider with large, geometric elements and interesting mask animations.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"327\":{\"id\":\"343\",\"title\":\"Construction Company\",\"alias\":\"construction-company-website\",\"zip\":\"\",\"uid\":\"construction-company-website-package\",\"img\":\"packages\\/construction_package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/construction-company-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-revealer-addon\\\\\\/revslider-revealer-addon.php\\\",\\\"name\\\":\\\"Reveal AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Construction Company\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"26\",\"installed\":false},\"328\":{\"id\":\"344\",\"title\":\"Construction Header\",\"alias\":\"Construction-Header\",\"zip\":\"packs\\/Construction-Header.zip\",\"uid\":\"5c77de774b8f5487c1276c4a7b3dc80c\",\"img\":\"Construction-Header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/construction-company-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Construction Company\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"26\",\"installed\":false},\"329\":{\"id\":\"345\",\"title\":\"Construction Home\",\"alias\":\"Construction-Home\",\"zip\":\"packs\\/Construction-Home.zip\",\"uid\":\"fcb277f0c07dad270d2a7cef4431bef8\",\"img\":\"Construction-Home\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/construction-company-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Construction Company\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"26\",\"installed\":false},\"330\":{\"id\":\"346\",\"title\":\"Construction Projects\",\"alias\":\"Construction-Projects\",\"zip\":\"packs\\/Construction-Projects.zip\",\"uid\":\"0c847173c3739f79778dc2c0fc9704e4\",\"img\":\"Construction-Projects\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/construction-company-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Construction Company\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"26\",\"installed\":false},\"331\":{\"id\":\"347\",\"title\":\"Construction History\",\"alias\":\"Construction-History\",\"zip\":\"packs\\/Construction-History.zip\",\"uid\":\"758da120c4b6c5606692faf0aa43aac6\",\"img\":\"Construction-History\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/construction-company-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Construction Company\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"26\",\"installed\":false},\"332\":{\"id\":\"348\",\"title\":\"Construction Services\",\"alias\":\"Construction-Services\",\"zip\":\"packs\\/Construction-Services.zip\",\"uid\":\"5ad5b841c1d89e97ddbf972c8b11abd4\",\"img\":\"Construction-Services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/construction-company-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Construction Company\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"26\",\"installed\":false},\"333\":{\"id\":\"349\",\"title\":\"Construction Contacts\",\"alias\":\"Construction-Contacts\",\"zip\":\"packs\\/Construction-Contacts.zip\",\"uid\":\"b8c3c34046bb91ebb243e4da64745d37\",\"img\":\"Construction-Contacts\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/construction-company-website\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Construction Company is the perfect introduction to your Construction themed website. Showcase your current projects, services and contact information with sleek transitions!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Construction Company\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"26\",\"installed\":false},\"334\":{\"id\":\"350\",\"title\":\"Classic Cars Evolution\",\"alias\":\"Classic-Cars-Evolution\",\"zip\":\"Classic-Cars-Evolution.zip\",\"uid\":\"7061757f128fd624b0227715dab73b74\",\"img\":\"Classic-Cars-Evolution\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/classic-cars-before-after-hero\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Classic Cars Evolution Slider is a great example of our popular before & after Add-On.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-beforeafter-addon\\\\\\/revslider-beforeafter-addon.php\\\",\\\"name\\\":\\\"Before After AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false,\"is_new\":true},\"335\":{\"id\":\"351\",\"title\":\"404 Error Space Theme\",\"alias\":\"404-Error-Space-Theme\",\"zip\":\"404-Error-Space-Theme.zip\",\"uid\":\"6412adc7ec025826328e40e552a14e1e\",\"img\":\"404-Error-Space-Theme\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/404-error-page\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Classic Cars Evolution Slider is the perfect way to make your error page more beautiful.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"336\":{\"id\":\"352\",\"title\":\"Landing Page\",\"alias\":\"landing-page-website\",\"zip\":\"\",\"uid\":\"landing-page-website-package\",\"img\":\"packages\\/lp_package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/landing-page-builder\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.8\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"Landing Page is a one-page website template with standard modules to build an effective landing page for your business\\/product.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"After installing this template package, please remove the \\\"price modal\\\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \\\"Landing Page Hero\\\", \\\"Landing page Call to Action\\\" and \\\"Landing Page Footer\\\". Click the buttons in these template and then go to \\\"layer -> actions\\\" and set the target of the \\\"Open Slider Modal\\\" action to the \\\"Landing Page Price Modal\\\".<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Landing Page\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"27\",\"installed\":false},\"337\":{\"id\":\"353\",\"title\":\"Landing Page Hero\",\"alias\":\"landing-page-hero\",\"zip\":\"packs\\/landing-page-hero.zip\",\"uid\":\"d328635caa20da7ee8a3ab687f8656ff\",\"img\":\"landing-page-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/landing-page-builder\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"Landing Page is a one-page website template with standard modules to build an effective landing page for your business\\/product.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"After installing this template package, please remove the \\\"price modal\\\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \\\"Landing Page Hero\\\", \\\"Landing page Call to Action\\\" and \\\"Landing Page Footer\\\". Click the buttons in these template and then go to \\\"layer -> actions\\\" and set the target of the \\\"Open Slider Modal\\\" action to the \\\"Landing Page Price Modal\\\".<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Landing Page\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"27\",\"installed\":false},\"338\":{\"id\":\"354\",\"title\":\"Landing Page Features\",\"alias\":\"landing-page-features\",\"zip\":\"packs\\/landing-page-features.zip\",\"uid\":\"6552bc72abace10918a64866d9bb79c1\",\"img\":\"landing-page-features\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/landing-page-builder\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"Landing Page is a one-page website template with standard modules to build an effective landing page for your business\\/product.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"After installing this template package, please remove the \\\"price modal\\\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \\\"Landing Page Hero\\\", \\\"Landing page Call to Action\\\" and \\\"Landing Page Footer\\\". Click the buttons in these template and then go to \\\"layer -> actions\\\" and set the target of the \\\"Open Slider Modal\\\" action to the \\\"Landing Page Price Modal\\\".<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Landing Page\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"27\",\"installed\":false},\"339\":{\"id\":\"355\",\"title\":\"Landing Page Callout\",\"alias\":\"landing-page-callout\",\"zip\":\"packs\\/landing-page-callout.zip\",\"uid\":\"c5b101ea5471e7409ae7effa8d45fbcf\",\"img\":\"landing-page-callout\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/landing-page-builder\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"Landing Page is a one-page website template with standard modules to build an effective landing page for your business\\/product.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"After installing this template package, please remove the \\\"price modal\\\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \\\"Landing Page Hero\\\", \\\"Landing page Call to Action\\\" and \\\"Landing Page Footer\\\". Click the buttons in these template and then go to \\\"layer -> actions\\\" and set the target of the \\\"Open Slider Modal\\\" action to the \\\"Landing Page Price Modal\\\".<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Landing Page\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"27\",\"installed\":false},\"340\":{\"id\":\"356\",\"title\":\"Landing Page Content\",\"alias\":\"landing-page-content\",\"zip\":\"packs\\/landing-page-content.zip\",\"uid\":\"34da8057a6bb3677c9adf9f18ffc6cf0\",\"img\":\"landing-page-content\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/landing-page-builder\\/\",\"version\":\"1.0.1\",\"required\":\"6.0.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"Landing Page is a one-page website template with standard modules to build an effective landing page for your business\\/product.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"After installing this template package, please remove the \\\"price modal\\\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \\\"Landing Page Hero\\\", \\\"Landing page Call to Action\\\" and \\\"Landing Page Footer\\\". Click the buttons in these template and then go to \\\"layer -> actions\\\" and set the target of the \\\"Open Slider Modal\\\" action to the \\\"Landing Page Price Modal\\\".<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Landing Page\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"27\",\"installed\":false},\"341\":{\"id\":\"357\",\"title\":\"Landing Page Testimonials\",\"alias\":\"landing-page-testimonials\",\"zip\":\"packs\\/landing-page-testimonials.zip\",\"uid\":\"a83606e311cd5115422d86f04890cbf1\",\"img\":\"landing-page-testimonials\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/landing-page-builder\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"Landing Page is a one-page website template with standard modules to build an effective landing page for your business\\/product.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"After installing this template package, please remove the \\\"price modal\\\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \\\"Landing Page Hero\\\", \\\"Landing page Call to Action\\\" and \\\"Landing Page Footer\\\". Click the buttons in these template and then go to \\\"layer -> actions\\\" and set the target of the \\\"Open Slider Modal\\\" action to the \\\"Landing Page Price Modal\\\".<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Landing Page\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"27\",\"installed\":false},\"342\":{\"id\":\"358\",\"title\":\"Landing Page Call to Action\",\"alias\":\"landing-page-call-to-action\",\"zip\":\"packs\\/landing-page-call-to-action.zip\",\"uid\":\"adfb456b27fa7eb6b1415d8f80836f05\",\"img\":\"landing-page-call-to-action\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/landing-page-builder\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"Landing Page is a one-page website template with standard modules to build an effective landing page for your business\\/product.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"After installing this template package, please remove the \\\"price modal\\\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \\\"Landing Page Hero\\\", \\\"Landing page Call to Action\\\" and \\\"Landing Page Footer\\\". Click the buttons in these template and then go to \\\"layer -> actions\\\" and set the target of the \\\"Open Slider Modal\\\" action to the \\\"Landing Page Price Modal\\\".<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Landing Page\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"27\",\"installed\":false},\"343\":{\"id\":\"359\",\"title\":\"Landing Page Help\",\"alias\":\"landing-page-help\",\"zip\":\"packs\\/landing-page-help.zip\",\"uid\":\"ca502431f9b7f6249d99b02464de2dd7\",\"img\":\"landing-page-help\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/landing-page-builder\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"Landing Page is a one-page website template with standard modules to build an effective landing page for your business\\/product.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"After installing this template package, please remove the \\\"price modal\\\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \\\"Landing Page Hero\\\", \\\"Landing page Call to Action\\\" and \\\"Landing Page Footer\\\". Click the buttons in these template and then go to \\\"layer -> actions\\\" and set the target of the \\\"Open Slider Modal\\\" action to the \\\"Landing Page Price Modal\\\".<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Landing Page\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"27\",\"installed\":false},\"344\":{\"id\":\"360\",\"title\":\"Landing Page Footer\",\"alias\":\"landing-page-footer\",\"zip\":\"packs\\/landing-page-footer.zip\",\"uid\":\"2a6afc371dbd60cb117f8a0f5d09eac9\",\"img\":\"landing-page-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/landing-page-builder\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"Landing Page is a one-page website template with standard modules to build an effective landing page for your business\\/product.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"After installing this template package, please remove the \\\"price modal\\\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \\\"Landing Page Hero\\\", \\\"Landing page Call to Action\\\" and \\\"Landing Page Footer\\\". Click the buttons in these template and then go to \\\"layer -> actions\\\" and set the target of the \\\"Open Slider Modal\\\" action to the \\\"Landing Page Price Modal\\\".<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Landing Page\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"27\",\"installed\":false},\"345\":{\"id\":\"361\",\"title\":\"Landing Page Price Modal\",\"alias\":\"landing-page-price-modal\",\"zip\":\"packs\\/landing-page-price-modal.zip\",\"uid\":\"a6c5c0430b46dd4e6e68416964a8c54d\",\"img\":\"landing-page-price-modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/landing-page-builder\\/\",\"version\":\"1.0.0\",\"required\":\"6.0.8\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"Landing Page is a one-page website template with standard modules to build an effective landing page for your business\\/product.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"After installing this template package, please remove the \\\"price modal\\\" module shortcode from the automatically created page. Also, a small modification is needed in these templates: \\\"Landing Page Hero\\\", \\\"Landing page Call to Action\\\" and \\\"Landing Page Footer\\\". Click the buttons in these template and then go to \\\"layer -> actions\\\" and set the target of the \\\"Open Slider Modal\\\" action to the \\\"Landing Page Price Modal\\\".<\\/span>\\r\\nCheckout our Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Landing Page\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"27\",\"installed\":false},\"346\":{\"id\":\"371\",\"title\":\"Corporate Website\",\"alias\":\"corporate-website\",\"zip\":\"\",\"uid\":\"corporate-website-package\",\"img\":\"packages\\/corporate-website.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-typewriter-addon\\\\\\/revslider-typewriter-addon.php\\\",\\\"name\\\":\\\"Typewriter AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/typewriter-addon\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"347\":{\"id\":\"372\",\"title\":\"Corporate Header\",\"alias\":\"Corporate-Header\",\"zip\":\"packs\\/Corporate-Header.zip\",\"uid\":\"04f868e3812a1681f00ab89580e5d1f8\",\"img\":\"Corporate-Header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"348\":{\"id\":\"373\",\"title\":\"Corporate Welcome Screen\",\"alias\":\"Corporate-Welcome-Screen\",\"zip\":\"packs\\/Corporate-Welcome-Screen.zip\",\"uid\":\"052afe98ef819f7ace041dbbdb749639\",\"img\":\"Corporate-Welcome-Screen\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-typewriter-addon\\\\\\/revslider-typewriter-addon.php\\\",\\\"name\\\":\\\"Typewriter AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/typewriter-addon\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"349\":{\"id\":\"374\",\"title\":\"Corporate About\",\"alias\":\"Corporate-About\",\"zip\":\"packs\\/Corporate-About.zip\",\"uid\":\"7bf5f8f6d4cc3016cea86289cb46e5b6\",\"img\":\"Corporate-About\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"350\":{\"id\":\"375\",\"title\":\"Corporate Portfolio\",\"alias\":\"Corporate-Portfolio\",\"zip\":\"packs\\/Corporate-Portfolio.zip\",\"uid\":\"612c2bd784fea81392dda1644a3c3cf3\",\"img\":\"Corporate-Portfolio\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"351\":{\"id\":\"376\",\"title\":\"Corporate Chart\",\"alias\":\"Corporate-Chart\",\"zip\":\"packs\\/Corporate-Chart.zip\",\"uid\":\"4d27d9b3b2cfcce750e526aafb322a9f\",\"img\":\"Corporate-Chart\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"352\":{\"id\":\"377\",\"title\":\"Corporate News\",\"alias\":\"Corporate-News\",\"zip\":\"packs\\/Corporate-News.zip\",\"uid\":\"bb65ed57a0d4db795d8b738f0a92f2d7\",\"img\":\"Corporate-News\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"353\":{\"id\":\"378\",\"title\":\"Corporate Hiring\",\"alias\":\"Corporate-Hiring\",\"zip\":\"packs\\/Corporate-Hiring.zip\",\"uid\":\"136cf1a91604e819089eb3573a6e100a\",\"img\":\"Corporate-Hiring\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"354\":{\"id\":\"379\",\"title\":\"Corporate Testimonials\",\"alias\":\"Corporate-Testimonials\",\"zip\":\"packs\\/Corporate-Testimonials.zip\",\"uid\":\"b17aec0afdc31e37359cfa406164463c\",\"img\":\"Corporate-Testimonials\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"355\":{\"id\":\"380\",\"title\":\"Corporate Store\",\"alias\":\"Corporate-Store\",\"zip\":\"packs\\/Corporate-Store.zip\",\"uid\":\"6240b14620ddc634736716e0cdfdeb31\",\"img\":\"Corporate-Store\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"356\":{\"id\":\"381\",\"title\":\"Corporate Support\",\"alias\":\"Corporate-Support\",\"zip\":\"packs\\/Corporate-Support.zip\",\"uid\":\"9424292a78076ce68c2faf587b26cdad\",\"img\":\"Corporate-Support\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"10\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"357\":{\"id\":\"382\",\"title\":\"Corporate Team\",\"alias\":\"Corporate-Team\",\"zip\":\"packs\\/Corporate-Team.zip\",\"uid\":\"4fafe469b5a0a2545625c3f6d7ff3b9e\",\"img\":\"Corporate-Team\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"11\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"358\":{\"id\":\"383\",\"title\":\"Corporate Selected Projects Title\",\"alias\":\"Corporate-Selected-Projects-Title\",\"zip\":\"packs\\/Corporate-Selected-Projects-Title.zip\",\"uid\":\"0ed3c41f51e6bf404c2fe179fa8d8ceb\",\"img\":\"Corporate-Selected-Projects-Title\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"12\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"359\":{\"id\":\"384\",\"title\":\"Corporate Selected Projects\",\"alias\":\"Corporate-Selected-Projects\",\"zip\":\"packs\\/Corporate-Selected-Projects.zip\",\"uid\":\"1096c78d5f007f3900228a4092515e2e\",\"img\":\"Corporate-Selected-Projects\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"13\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"360\":{\"id\":\"385\",\"title\":\"Corporate Clients\",\"alias\":\"Corporate-Clients\",\"zip\":\"packs\\/Corporate-Clients.zip\",\"uid\":\"60fe3a311195bf4dba3e50bd1ab98574\",\"img\":\"Corporate-Clients\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"14\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"361\":{\"id\":\"386\",\"title\":\"Corporate Text Block\",\"alias\":\"Corporate-Text-Block\",\"zip\":\"packs\\/Corporate-Text-Block.zip\",\"uid\":\"93b68bb23d65fd1028b6b5f6d19b85b5\",\"img\":\"Corporate-Text-Block\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"15\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"362\":{\"id\":\"387\",\"title\":\"Corporate Mobile App\",\"alias\":\"Corporate-Mobile-App\",\"zip\":\"packs\\/Corporate-Mobile-App.zip\",\"uid\":\"e592369d233bea673403daa15c6e498a\",\"img\":\"Corporate-Mobile-App\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"16\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"363\":{\"id\":\"388\",\"title\":\"Corporate Contacts\",\"alias\":\"Corporate-Contacts\",\"zip\":\"packs\\/Corporate-Contacts.zip\",\"uid\":\"91ae9488b54b7020f8ae9dfbfd6c563a\",\"img\":\"Corporate-Contacts\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"17\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"364\":{\"id\":\"389\",\"title\":\"Corporate Footer\",\"alias\":\"Corporate-Footer\",\"zip\":\"packs\\/Corporate-Footer.zip\",\"uid\":\"a01df90af203f06194c1a18745d79861\",\"img\":\"Corporate-Footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"18\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"365\":{\"id\":\"390\",\"title\":\"Corporate Scroll To Top\",\"alias\":\"Corporate-Scroll-To-Top\",\"zip\":\"packs\\/Corporate-Scroll-To-Top.zip\",\"uid\":\"2d68f6e4590a9a445e6eb055dfee88ba\",\"img\":\"Corporate-Scroll-To-Top\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/corporate-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.1\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Corporate Template is a collection of useful modules to construct your website. Portfolio, news, clients, team, contact, basic content, etc. There is something for everyone here!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Corporate Website\",\"package_order\":\"19\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"29\",\"installed\":false},\"366\":{\"id\":\"402\",\"title\":\"Brutal Website Template\",\"alias\":\"brutal-website-template\",\"zip\":\"\",\"uid\":\"brutal-website-template-package\",\"img\":\"packages\\/brutal-website-template.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/brutal-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.2\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Brutal Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"31\",\"installed\":false},\"367\":{\"id\":\"403\",\"title\":\"Brutal Menu\",\"alias\":\"brutal-menu\",\"zip\":\"packs\\/brutal-menu.zip\",\"uid\":\"04b21c7aee2479793336e964230d6e3f\",\"img\":\"brutal-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/brutal-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Brutal Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"31\",\"installed\":false},\"368\":{\"id\":\"404\",\"title\":\"Brutal Hero\",\"alias\":\"brutal-hero\",\"zip\":\"packs\\/brutal-hero.zip\",\"uid\":\"a342ad01054b97bac7980fdf9e275b34\",\"img\":\"brutal-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/brutal-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Brutal Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"31\",\"installed\":false},\"369\":{\"id\":\"405\",\"title\":\"Brutal About\",\"alias\":\"brutal-about\",\"zip\":\"packs\\/brutal-about.zip\",\"uid\":\"a3e1cd2e36c9a783c1932fdafe2e4434\",\"img\":\"brutal-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/brutal-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Brutal Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"31\",\"installed\":false},\"370\":{\"id\":\"406\",\"title\":\"Brutal Highlight\",\"alias\":\"brutal-highlight\",\"zip\":\"packs\\/brutal-highlight.zip\",\"uid\":\"b7f8522dcb4636467633bd3b14f4e3e9\",\"img\":\"brutal-highlight\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/brutal-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Brutal Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"31\",\"installed\":false},\"371\":{\"id\":\"407\",\"title\":\"Brutal Projects\",\"alias\":\"brutal-projects\",\"zip\":\"packs\\/brutal-projects.zip\",\"uid\":\"1a462e91373042193ca5d623dd8e8a47\",\"img\":\"brutal-projects\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/brutal-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Brutal Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"31\",\"installed\":false},\"372\":{\"id\":\"408\",\"title\":\"Brutal Services\",\"alias\":\"brutal-services\",\"zip\":\"packs\\/brutal-services.zip\",\"uid\":\"cbeeb1e7a5c2842b155fe13acb7c165d\",\"img\":\"brutal-services\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/brutal-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Brutal Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"31\",\"installed\":false},\"373\":{\"id\":\"409\",\"title\":\"Brutal Callout\",\"alias\":\"brutal-callout\",\"zip\":\"packs\\/brutal-callout.zip\",\"uid\":\"31b6dafdb2dfb548152653e60df5a3bc\",\"img\":\"brutal-callout\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/brutal-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Brutal Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"31\",\"installed\":false},\"374\":{\"id\":\"410\",\"title\":\"Brutal Footer\",\"alias\":\"brutal-footer\",\"zip\":\"packs\\/brutal-footer.zip\",\"uid\":\"07559f0c574e3dd95b2d40d72cbb01bc\",\"img\":\"brutal-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/brutal-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Brutal template is a one-pager with a unique design that sticks out. The project & services sliders with direction based transitions are particularly interesting.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Brutal Website Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"31\",\"installed\":false},\"375\":{\"id\":\"411\",\"title\":\"Church Website Template\",\"alias\":\"church-website-template\",\"zip\":\"\",\"uid\":\"church-website-template-package\",\"img\":\"packages\\/church-website-template.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-dark\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"32\",\"installed\":false},\"376\":{\"id\":\"412\",\"title\":\"Church Header\",\"alias\":\"Church-Header\",\"zip\":\"packs\\/Church-Header.zip\",\"uid\":\"c14289117e1e2b9ee716fb99146b2e03\",\"img\":\"Church-Header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-dark\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"32\",\"installed\":false},\"377\":{\"id\":\"413\",\"title\":\"Church Upcoming Events\",\"alias\":\"Church-Upcoming-Events\",\"zip\":\"packs\\/Church-Upcoming-Events.zip\",\"uid\":\"056a26efddae92973fee4ee5cfa75f10\",\"img\":\"Church-Upcoming-Events\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-dark\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"32\",\"installed\":false},\"378\":{\"id\":\"414\",\"title\":\"Church About\",\"alias\":\"Church-About\",\"zip\":\"packs\\/Church-About.zip\",\"uid\":\"8ef133f3f669f06380334a83e27eedbb\",\"img\":\"Church-About\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-dark\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"32\",\"installed\":false},\"379\":{\"id\":\"415\",\"title\":\"Church Pastors\",\"alias\":\"Church-Pastors\",\"zip\":\"packs\\/Church-Pastors.zip\",\"uid\":\"715edc0833a753b72350b8c974f86f94\",\"img\":\"Church-Pastors\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-dark\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"32\",\"installed\":false},\"380\":{\"id\":\"416\",\"title\":\"Church Photo Gallery\",\"alias\":\"Church-Photo-Gallery\",\"zip\":\"packs\\/Church-Photo-Gallery.zip\",\"uid\":\"d94808a97149cd5d3b3354a28409ffd7\",\"img\":\"Church-Photo-Gallery\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-dark\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"32\",\"installed\":false},\"381\":{\"id\":\"417\",\"title\":\"Church Community\",\"alias\":\"Church-Community\",\"zip\":\"packs\\/Church-Community.zip\",\"uid\":\"2244e6a6d7a691653eae2d70765130a7\",\"img\":\"Church-Community\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-dark\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"32\",\"installed\":false},\"382\":{\"id\":\"418\",\"title\":\"Church Sermon\",\"alias\":\"Church-Sermon\",\"zip\":\"packs\\/Church-Sermon.zip\",\"uid\":\"8fedf983bd55fff0f7a16d9f0a7e5408\",\"img\":\"Church-Sermon\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-dark\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"32\",\"installed\":false},\"383\":{\"id\":\"419\",\"title\":\"Church Contacts\",\"alias\":\"Church-Contacts\",\"zip\":\"packs\\/Church-Contacts.zip\",\"uid\":\"0b1a6968e75868548fd98e435625c090\",\"img\":\"Church-Contacts\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-dark\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Website Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"32\",\"installed\":false},\"384\":{\"id\":\"420\",\"title\":\"Church Footer\",\"alias\":\"Church-Footer\",\"zip\":\"packs\\/Church-Footer.zip\",\"uid\":\"29756685d3dc49e42edada43e6393b7b\",\"img\":\"Church-Footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-dark\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Website Template\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"32\",\"installed\":false},\"385\":{\"id\":\"421\",\"title\":\"Church Light Website Template\",\"alias\":\"church-light-website-template\",\"zip\":\"\",\"uid\":\"church-light-website-template-package\",\"img\":\"packages\\/church-light-website-template.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-light\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Light Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"33\",\"installed\":false},\"386\":{\"id\":\"422\",\"title\":\"Church Light Header\",\"alias\":\"Church-Light-Header\",\"zip\":\"packs\\/Church-Light-Header.zip\",\"uid\":\"81c00f4b52cf55214de919e3f13121fc\",\"img\":\"Church-Light-Header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-light\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Light Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"33\",\"installed\":false},\"387\":{\"id\":\"423\",\"title\":\"Church Light Upcoming Events\",\"alias\":\"Church-Light-Upcoming-Events\",\"zip\":\"packs\\/Church-Light-Upcoming-Events.zip\",\"uid\":\"963a49f4be0557ac5f3ee61d256f5bda\",\"img\":\"Church-Light-Upcoming-Events\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-light\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Light Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"33\",\"installed\":false},\"388\":{\"id\":\"424\",\"title\":\"Church Light About\",\"alias\":\"Church-Light-About\",\"zip\":\"packs\\/Church-Light-About.zip\",\"uid\":\"d46c8e8e6f80e6bfedb54f1cdc49e7e6\",\"img\":\"Church-Light-About\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-light\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Light Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"33\",\"installed\":false},\"389\":{\"id\":\"425\",\"title\":\"Church Light Pastors\",\"alias\":\"Church-Light-Pastors\",\"zip\":\"packs\\/Church-Light-Pastors.zip\",\"uid\":\"7cc3dec61556e2291d6f38c1ea5e983f\",\"img\":\"Church-Light-Pastors\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-light\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Light Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"33\",\"installed\":false},\"390\":{\"id\":\"426\",\"title\":\"Church Light Photo Gallery\",\"alias\":\"Church-Light-Photo-Gallery\",\"zip\":\"packs\\/Church-Light-Photo-Gallery.zip\",\"uid\":\"9e13100179b9b700b005693eeca57902\",\"img\":\"Church-Light-Photo-Gallery\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-light\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Light Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"33\",\"installed\":false},\"391\":{\"id\":\"427\",\"title\":\"Church Light Community\",\"alias\":\"Church-Light-Community\",\"zip\":\"packs\\/Church-Light-Community.zip\",\"uid\":\"14fcc0d43d899fd96116bdbc57c7c5ea\",\"img\":\"Church-Light-Community\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-light\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Light Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"33\",\"installed\":false},\"392\":{\"id\":\"428\",\"title\":\"Church Light Sermon\",\"alias\":\"Church-Light-Sermon\",\"zip\":\"packs\\/Church-Light-Sermon.zip\",\"uid\":\"fc30be7e703bc7b235665c36baa80e4e\",\"img\":\"Church-Light-Sermon\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-light\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Light Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"33\",\"installed\":false},\"393\":{\"id\":\"429\",\"title\":\"Church Light Contacts\",\"alias\":\"Church-Light-Contacts\",\"zip\":\"packs\\/Church-Light-Contacts.zip\",\"uid\":\"ed83d8fa63ecb59cf42656068ecf8d25\",\"img\":\"Church-Light-Contacts\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-light\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Light Website Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"33\",\"installed\":false},\"394\":{\"id\":\"430\",\"title\":\"Church Light Footer\",\"alias\":\"Church-Light-Footer\",\"zip\":\"packs\\/Church-Light-Footer.zip\",\"uid\":\"a168772865fd5dcf6229c9c6a49dff73\",\"img\":\"Church-Light-Footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/church-website-template-light\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.2\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Church Website Template is a complete solution for the holy internet presence of your church. Available as a light and dark version.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Church Light Website Template\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"33\",\"installed\":false},\"395\":{\"id\":\"431\",\"title\":\"Rockable Website Template\",\"alias\":\"rockable-website-template\",\"zip\":\"\",\"uid\":\"rockable-website-template-package\",\"img\":\"packages\\/rockable-website-template.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"396\":{\"id\":\"432\",\"title\":\"Rockable Menu\",\"alias\":\"rockable-menu\",\"zip\":\"packs\\/rockable-menu.zip\",\"uid\":\"92d18f7ff38f22ff411a4ef4d9f54934\",\"img\":\"rockable-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"397\":{\"id\":\"433\",\"title\":\"Rockable Hero\",\"alias\":\"rockable-hero\",\"zip\":\"packs\\/rockable-hero.zip\",\"uid\":\"ba16b28d6bde95910cbce572bb251208\",\"img\":\"rockable-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"398\":{\"id\":\"434\",\"title\":\"Rockable Lineup\",\"alias\":\"rockable-lineup\",\"zip\":\"packs\\/rockable-lineup.zip\",\"uid\":\"6631980112805533a0d328c37e56adbd\",\"img\":\"rockable-lineup\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"399\":{\"id\":\"435\",\"title\":\"Rockable Lineup 2\",\"alias\":\"rockable-lineup-2\",\"zip\":\"packs\\/rockable-lineup-2.zip\",\"uid\":\"98bc41d982dc478edabff4aa99461dbc\",\"img\":\"rockable-lineup-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"400\":{\"id\":\"436\",\"title\":\"Rockable Gallery Title\",\"alias\":\"rockable-gallery-title\",\"zip\":\"packs\\/rockable-gallery-title.zip\",\"uid\":\"da43a76f5bc77aa6efe158b00ab7cf0d\",\"img\":\"rockable-gallery-title\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"401\":{\"id\":\"437\",\"title\":\"Rockable Gallery\",\"alias\":\"rockable-gallery\",\"zip\":\"packs\\/rockable-gallery.zip\",\"uid\":\"c12a144d6860bcf24e91d5b980ac22f1\",\"img\":\"rockable-gallery\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"402\":{\"id\":\"438\",\"title\":\"Rockable Sponsors\",\"alias\":\"rockable-sponsors\",\"zip\":\"packs\\/rockable-sponsors.zip\",\"uid\":\"1e40d4a810c23f8d5fe5cd5ca31ee20d\",\"img\":\"rockable-sponsors\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"403\":{\"id\":\"439\",\"title\":\"Rockable Footer\",\"alias\":\"rockable-footer\",\"zip\":\"packs\\/rockable-footer.zip\",\"uid\":\"a4a9952d5e56fc14366155e8ebfa432a\",\"img\":\"rockable-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"404\":{\"id\":\"440\",\"title\":\"Rockable Detail Modal\",\"alias\":\"rockable-detail-modal\",\"zip\":\"packs\\/rockable-detail-modal.zip\",\"uid\":\"b51d918203ff7975a144a9f1be09f31b\",\"img\":\"rockable-detail-modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"405\":{\"id\":\"441\",\"title\":\"Rockable Detail Modal 2\",\"alias\":\"rockable-detail-modal-2\",\"zip\":\"packs\\/rockable-detail-modal-2.zip\",\"uid\":\"dcf51ebb3d4a1dec94748a1e016c5ef7\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/rockable-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Rockable Website Template can present your Festival or Concert oriented website in a unique one-pager.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Rockable Website Template\",\"package_order\":\"10\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"34\",\"installed\":false},\"406\":{\"id\":\"442\",\"title\":\"Real Estate Showcase Slider\",\"alias\":\"real-estate-showcase-slider\",\"zip\":\"Real-Estate-Showcase-Slider.zip\",\"uid\":\"486b2bbe296722e70421731e3c05711b\",\"img\":\"Real-Estate-Showcase-Slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/real-estate-showcase-slider\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.3\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"An elegant showcase for your real estate & realtor website. Flexible and customizable.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"407\":{\"id\":\"443\",\"title\":\"Isometric Slider\",\"alias\":\"isometric-slider\",\"zip\":\"isometric-slider.zip\",\"uid\":\"fb06051fcf6649a44f2292044e414a36\",\"img\":\"isometric-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/isometric-slider\\/\",\"version\":\"1.0.2\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A colorful, isometric slider template with fully customizable colors and screen content.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"408\":{\"id\":\"444\",\"title\":\"Woo Commerce Slider Static\",\"alias\":\"woo-commerce-slider-static\",\"zip\":\"\",\"uid\":\"woo-commerce-slider-static\",\"img\":\"packages\\/woo-commerce-slider-static.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/woo-commerce-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Woo Commerce Slider Static\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"35\",\"installed\":false},\"409\":{\"id\":\"445\",\"title\":\"E-Commerce Slider\",\"alias\":\"E-Commerce-Slider\",\"zip\":\"packs\\/E-Commerce-Slider.zip\",\"uid\":\"1533cfd83c2ae122f23074e1ed77f256\",\"img\":\"E-Commerce-Slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/woo-commerce-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Woo Commerce Slider Static\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"35\",\"installed\":false},\"410\":{\"id\":\"446\",\"title\":\"E-Commerce Slider Modal\",\"alias\":\"E-Commerce-Slider-Modal\",\"zip\":\"packs\\/E-Commerce-Slider-Modal.zip\",\"uid\":\"825e05c3967515b92a75da017c68a863\",\"img\":\"E-Commerce-Slider-Modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/woo-commerce-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A uniquely animated Woo Commerce Slider template - this is the static version that doesn\'t use Woo Commerce data<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Woo Commerce Slider Static\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"35\",\"installed\":false},\"411\":{\"id\":\"447\",\"title\":\"Woo Commerce Slider Dynamic\",\"alias\":\"Woo-Commerce-Slider-Dynamic\",\"zip\":\"Woo-Commerce-Slider-Dynamic.zip\",\"uid\":\"b8e2c64f3739e552c563c48c59f20fe7\",\"img\":\"Woo-Commerce-Slider-Dynamic\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/woo-commerce-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A uniquely animated Woo Commerce Slider template - this is the dynamic version that uses Woo Commerce data<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"412\":{\"id\":\"448\",\"title\":\"Blooming Event Florist Template\",\"alias\":\"blooming-event-florist-template\",\"zip\":\"\",\"uid\":\"blooming-event-florist-template-package\",\"img\":\"packages\\/blooming-event-florist-template-package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"413\":{\"id\":\"449\",\"title\":\"Blooming Header\",\"alias\":\"blooming-header\",\"zip\":\"packs\\/blooming-header.zip\",\"uid\":\"aa2ee34fd8ed018945ba64e6913810e4\",\"img\":\"blooming-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"414\":{\"id\":\"450\",\"title\":\"Blooming About\",\"alias\":\"blooming-about\",\"zip\":\"packs\\/blooming-about.zip\",\"uid\":\"dd7095e46fab2eb475d00480fd17a6ec\",\"img\":\"blooming-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"415\":{\"id\":\"451\",\"title\":\"Blooming Portfolio\",\"alias\":\"blooming-portfolio\",\"zip\":\"packs\\/blooming-portfolio.zip\",\"uid\":\"c72ddcbb07b62982b8c21328a6383e22\",\"img\":\"blooming-portfolio\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"416\":{\"id\":\"452\",\"title\":\"Blooming Wedding Title\",\"alias\":\"blooming-wedding-title\",\"zip\":\"packs\\/blooming-wedding-title.zip\",\"uid\":\"4fcfb0b99289c12d014c67306bb7687b\",\"img\":\"blooming-wedding-title\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"417\":{\"id\":\"453\",\"title\":\"Blooming Wedding Carousel\",\"alias\":\"blooming-wedding-carousel\",\"zip\":\"packs\\/blooming-wedding-carousel.zip\",\"uid\":\"1d1bb979dbfca8ba9d43da1c0f665339\",\"img\":\"blooming-wedding-carousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"418\":{\"id\":\"454\",\"title\":\"Blooming Wedding Text\",\"alias\":\"blooming-wedding-text\",\"zip\":\"packs\\/blooming-wedding-text.zip\",\"uid\":\"326f2793294a739dd3aac3cc45332df8\",\"img\":\"blooming-wedding-text\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"419\":{\"id\":\"455\",\"title\":\"Blooming Parties Title\",\"alias\":\"blooming-parties-title\",\"zip\":\"packs\\/blooming-parties-title.zip\",\"uid\":\"b47aae1b368d3c3d9017f260e6c6a547\",\"img\":\"blooming-parties-title\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"420\":{\"id\":\"456\",\"title\":\"Blooming Parties Carousel\",\"alias\":\"blooming-parties-carousel\",\"zip\":\"packs\\/blooming-parties-carousel.zip\",\"uid\":\"9f90a9da7b017aeee7f3b608cda066e6\",\"img\":\"blooming-parties-carousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"421\":{\"id\":\"457\",\"title\":\"Blooming Parties Text\",\"alias\":\"blooming-parties-text\",\"zip\":\"packs\\/blooming-parties-text.zip\",\"uid\":\"66a47346cc639b8b9b9b5dfa1521b6ef\",\"img\":\"blooming-parties-text\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"422\":{\"id\":\"458\",\"title\":\"Blooming Funeral Title\",\"alias\":\"blooming-funeral-title\",\"zip\":\"packs\\/blooming-funeral-title.zip\",\"uid\":\"e9e77134472c33c56be442073f29d1fd\",\"img\":\"blooming-funeral-title\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"10\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"423\":{\"id\":\"459\",\"title\":\"Blooming Funeral Slider\",\"alias\":\"blooming-funeral-slider\",\"zip\":\"packs\\/blooming-funeral-slider.zip\",\"uid\":\"d15090841c25c7c8f0e1b0987c0c0887\",\"img\":\"blooming-funeral-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"11\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"424\":{\"id\":\"460\",\"title\":\"Blooming Funeral Text\",\"alias\":\"blooming-funeral-text\",\"zip\":\"packs\\/blooming-funeral-text.zip\",\"uid\":\"d7c80e246f31e3d2f4e5dc1656f133cc\",\"img\":\"blooming-funeral-text\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"12\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"425\":{\"id\":\"461\",\"title\":\"Blooming Contact\",\"alias\":\"blooming-contact\",\"zip\":\"packs\\/blooming-contact.zip\",\"uid\":\"54280182bca86443e2648b3146f41e47\",\"img\":\"blooming-contact\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/event-florist-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Blooming Event Florist Template is a complete one-page website solution with beautiful floral animations.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Blooming Event Florist Template\",\"package_order\":\"13\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"36\",\"installed\":false},\"426\":{\"id\":\"462\",\"title\":\"Particle Hero\",\"alias\":\"particle-hero\",\"zip\":\"particle-hero.zip\",\"uid\":\"3f422f4807bf9ef4cb15dade515dad00\",\"img\":\"particle-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-hero-image-header\\/#slide6\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A Hero header module using the Particle Effect Add-On.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"427\":{\"id\":\"463\",\"title\":\"Bubble Morph Hero\",\"alias\":\"bubble-morph-hero\",\"zip\":\"bubble-morph-hero.zip\",\"uid\":\"b47e6bcc1ae80393ff3f7388ed3b9f8f\",\"img\":\"bubble-morph-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-hero-image-header\\/#slide5\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A Hero header module using the Bubble Morph Add-On.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"428\":{\"id\":\"464\",\"title\":\"Parallax Hero\",\"alias\":\"parallax-hero\",\"zip\":\"parallax-hero.zip\",\"uid\":\"290e86534326ee118e96ae7ce0538fa2\",\"img\":\"parallax-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-hero-image-header\\/#slide4\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A parallax hero module with mouse move interaction.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"429\":{\"id\":\"465\",\"title\":\"Video Hero\",\"alias\":\"video-hero\",\"zip\":\"video-hero.zip\",\"uid\":\"f9e280015d3408bb0482e13fe753da8f\",\"img\":\"video-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-hero-image-header\\/#slide3\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A simple Hero header module with HTML5 video.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"430\":{\"id\":\"466\",\"title\":\"Ken Burns Hero\",\"alias\":\"ken-burns-hero\",\"zip\":\"ken-burns-hero.zip\",\"uid\":\"d5f89e5f5b3991b995e2bfeb50cfe9f8\",\"img\":\"ken-burns-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-hero-image-header\\/#slide2\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A simple image background hero header module with a subtle Ken Burns effect.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"431\":{\"id\":\"467\",\"title\":\"Basic Hero Collection\",\"alias\":\"basic-hero-collection\",\"zip\":\"basic-hero-collection.zip\",\"uid\":\"ff625c65e8aab4689fa56d5652279d51\",\"img\":\"basic-hero-collection\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/wordpress-hero-image-header\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.5\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A collection of WordPress Hero Headers with image, video, particles, parallax and more!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"432\":{\"id\":\"468\",\"title\":\"Launching Very Soon\",\"alias\":\"launching-very-soon\",\"zip\":\"launching-very-soon.zip\",\"uid\":\"2da45cf2d9bec07e7183b3f7777986b9\",\"img\":\"launching-very-soon\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/launching-soon-countdown\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"Rocket BOOST! A beautifully animated launching soon countdown module using our \\\"Coming Soon\\\" Add-On.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-maintenance-addon\\\\\\/revslider-maintenance-addon.php\\\",\\\"name\\\":\\\"Coming Soon & Maintenance AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/revslider-doc\\\\\\/add-coming-soon-maintenance\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"433\":{\"id\":\"469\",\"title\":\"Under Construction\",\"alias\":\"Under-Construction\",\"zip\":\"Under-Construction.zip\",\"uid\":\"4b12f9a82a5b48d45a707df93406eb5b\",\"img\":\"Under-Construction\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/under-construction\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"You will love this animated under construction landing page using our \\\"Coming Soon\\\" Add-On.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-maintenance-addon\\\\\\/revslider-maintenance-addon.php\\\",\\\"name\\\":\\\"Coming Soon & Maintenance AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/revslider-doc\\\\\\/add-coming-soon-maintenance\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"434\":{\"id\":\"470\",\"title\":\"Particle Effect\",\"alias\":\"Particle-Effect\",\"zip\":\"Particle-Effect.zip\",\"uid\":\"66cf4e514e83a6984903694fd587edb6\",\"img\":\"Particle-Effect\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/snow-particle-scene\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"Get into a winter mood with our Snow Particle Scene for Slider Revolution!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"435\":{\"id\":\"471\",\"title\":\"Particle Effect 2\",\"alias\":\"Particle-Effect-2\",\"zip\":\"Particle-Effect-2.zip\",\"uid\":\"303337c29a97a816ccecca7e5f0b5e20\",\"img\":\"Particle-Effect-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/cyber-particle-effect\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"Amaze your website visitors with the cyber particle effect for Slider Revolution!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"436\":{\"id\":\"472\",\"title\":\"Stark Website Template\",\"alias\":\"stark-website-template\",\"zip\":\"\",\"uid\":\"stark-website-template-package\",\"img\":\"packages\\/stark-website-template-package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/stark-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Stark Agency website template is a collection of modules using our new Gutenberg Block \\\"margin & padding\\\" feature. Create unique, customizable layouts!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Stark Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"37\",\"installed\":false},\"437\":{\"id\":\"473\",\"title\":\"Stark Menu\",\"alias\":\"stark-menu\",\"zip\":\"packs\\/stark-menu.zip\",\"uid\":\"bb31150df180e784d76a1f5ea306bf05\",\"img\":\"stark-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/stark-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Stark Agency website template is a collection of modules using our new Gutenberg Block \\\"margin & padding\\\" feature. Create unique, customizable layouts!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Stark Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"offset=\\\"t:0px,0px,0px,0px;b:0px,0px,0px,0px;l:140px,70px,0px,0px;r:140px,70px,0px,0px;\\\"\",\"active\":\"1\",\"package_id\":\"37\",\"installed\":false},\"438\":{\"id\":\"474\",\"title\":\"Stark Header\",\"alias\":\"stark-header\",\"zip\":\"packs\\/stark-header.zip\",\"uid\":\"62bfca01bf6e33cfad81d8df06498299\",\"img\":\"stark-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/stark-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Stark Agency website template is a collection of modules using our new Gutenberg Block \\\"margin & padding\\\" feature. Create unique, customizable layouts!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Stark Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"offset=\\\"t:40px,30px,20px,10px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\\\"\",\"active\":\"1\",\"package_id\":\"37\",\"installed\":false},\"439\":{\"id\":\"475\",\"title\":\"Stark Content\",\"alias\":\"stark-content\",\"zip\":\"packs\\/stark-content.zip\",\"uid\":\"4577ca760133eb5d894c46f212f6eefb\",\"img\":\"stark-content\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/stark-agency-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.2.22\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Stark Agency website template is a collection of modules using our new Gutenberg Block \\\"margin & padding\\\" feature. Create unique, customizable layouts!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Stark Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"offset=\\\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\\\" zindex=\\\"6\\\"\",\"active\":\"1\",\"package_id\":\"37\",\"installed\":false},\"440\":{\"id\":\"476\",\"title\":\"Stark Carousel\",\"alias\":\"stark-carousel\",\"zip\":\"packs\\/stark-carousel.zip\",\"uid\":\"de63336d333eeff10eccfd5d9741e6c9\",\"img\":\"stark-carousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/stark-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Stark Agency website template is a collection of modules using our new Gutenberg Block \\\"margin & padding\\\" feature. Create unique, customizable layouts!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Stark Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"offset=\\\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\\\" zindex=\\\"1\\\"\",\"active\":\"1\",\"package_id\":\"37\",\"installed\":false},\"441\":{\"id\":\"477\",\"title\":\"Stark Portfolio\",\"alias\":\"stark-portfolio\",\"zip\":\"packs\\/stark-portfolio.zip\",\"uid\":\"99fcf3df65f8471fe30bec1bf0c2350d\",\"img\":\"stark-portfolio\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/stark-agency-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.2.22\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Stark Agency website template is a collection of modules using our new Gutenberg Block \\\"margin & padding\\\" feature. Create unique, customizable layouts!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Stark Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"offset=\\\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\\\" zindex=\\\"5\\\"\",\"active\":\"1\",\"package_id\":\"37\",\"installed\":false},\"442\":{\"id\":\"478\",\"title\":\"Stark Portfolio Detail\",\"alias\":\"stark-portfolio-detail\",\"zip\":\"packs\\/stark-portfolio-detail.zip\",\"uid\":\"7484fc54f81daec07c93e992216310ce\",\"img\":\"stark-portfolio-detail\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/stark-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Stark Agency website template is a collection of modules using our new Gutenberg Block \\\"margin & padding\\\" feature. Create unique, customizable layouts!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Stark Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"37\",\"installed\":false},\"443\":{\"id\":\"479\",\"title\":\"Stark Contact\",\"alias\":\"stark-contact\",\"zip\":\"packs\\/stark-contact.zip\",\"uid\":\"8d704226b7093123a9d9faf424da6c35\",\"img\":\"stark-contact\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/stark-agency-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Stark Agency website template is a collection of modules using our new Gutenberg Block \\\"margin & padding\\\" feature. Create unique, customizable layouts!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Stark Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"offset=\\\"t:-50px,-30px,-30px,-20px;b:0px,0px,0px,0px;l:40px,30px,20px,10px;r:40px,30px,20px,10px;\\\" zindex=\\\"2\\\"\",\"active\":\"1\",\"package_id\":\"37\",\"installed\":false},\"444\":{\"id\":\"480\",\"title\":\"Stark Footer\",\"alias\":\"stark-footer\",\"zip\":\"packs\\/stark-footer.zip\",\"uid\":\"e7132dc158e7dcdb4ef5b3a1aa00208a\",\"img\":\"stark-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/stark-agency-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.2.22\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Stark Agency website template is a collection of modules using our new Gutenberg Block \\\"margin & padding\\\" feature. Create unique, customizable layouts!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Stark Website Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"offset=\\\"t:-50px,-30px,-30px,-20px;b:40px,30px,20px,20px;l:140px,70px,50px,30px;r:140px,70px,50px,30px;\\\" zindex=\\\"3\\\"\",\"active\":\"1\",\"package_id\":\"37\",\"installed\":false},\"445\":{\"id\":\"481\",\"title\":\"Stark Newsletter\",\"alias\":\"stark-newsletter\",\"zip\":\"packs\\/stark-newsletter.zip\",\"uid\":\"bb76ddd68dbe6bda5ece7e4227a51413\",\"img\":\"stark-newsletter\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/stark-agency-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Stark Agency website template is a collection of modules using our new Gutenberg Block \\\"margin & padding\\\" feature. Create unique, customizable layouts!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Stark Website Template\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"usage=\\\"modal\\\" modal=\\\"s:#contact;\\\"\",\"active\":\"1\",\"package_id\":\"37\",\"installed\":false},\"446\":{\"id\":\"482\",\"title\":\"Big Summer Sale\",\"alias\":\"big-summer-sale\",\"zip\":\"big-summer-sale.zip\",\"uid\":\"a6779fa7109763209d234f9cf2e766c6\",\"img\":\"big-summer-sale\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/big-summer-sale-shop-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Big Summer Sale Shop Slider is a beautiful eye catcher for your e-commerce website!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"447\":{\"id\":\"483\",\"title\":\"Traveller Carousel\",\"alias\":\"traveller-carousel\",\"zip\":\"traveller-carousel.zip\",\"uid\":\"185344ed6236bea2906a79035d1d5702\",\"img\":\"traveller-carousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/travel-blog-carousel\\/\",\"version\":\"1.0.1\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A travel blog carousel with interesting parallax and ken burns effects!<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"Note that the content visible on all slides can be edited on the \\\"global layers\\\" slide.Checkout our Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"448\":{\"id\":\"484\",\"title\":\"Project Carousel\",\"alias\":\"project-carousel\",\"zip\":\"project-carousel.zip\",\"uid\":\"49c85ad406da943bdd25f08fd6496748\",\"img\":\"project-carousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/project-carousel\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A project carousel with images and texts that can be customized easily!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"449\":{\"id\":\"485\",\"title\":\"News Carousel\",\"alias\":\"news-carousel\",\"zip\":\"news-carousel.zip\",\"uid\":\"76f5b939150092a30038f161084140ae\",\"img\":\"news-carousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/news-carousel\\/\",\"version\":\"1.0.0\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A news carousel with images and texts that can be customized easily!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"450\":{\"id\":\"486\",\"title\":\"Story Blocks Website Template\",\"alias\":\"story-blocks-website-template\",\"zip\":\"\",\"uid\":\"story-blocks-website-template-package\",\"img\":\"packages\\/story-blocks-website-template-package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/story-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Story Blocks Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"38\",\"installed\":false},\"451\":{\"id\":\"487\",\"title\":\"Story Menu\",\"alias\":\"story-menu\",\"zip\":\"packs\\/story-menu.zip\",\"uid\":\"1f2f7cd91480f15cff8e7100f788c650\",\"img\":\"story-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/story-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Story Blocks Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"38\",\"installed\":false},\"452\":{\"id\":\"488\",\"title\":\"Story Header\",\"alias\":\"story-header\",\"zip\":\"packs\\/story-header.zip\",\"uid\":\"e1a5ad5018a24ccdc71c2863edfe775e\",\"img\":\"story-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/story-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Story Blocks Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"38\",\"installed\":false},\"453\":{\"id\":\"489\",\"title\":\"Story Block 1\",\"alias\":\"story-block-1\",\"zip\":\"packs\\/story-block-1.zip\",\"uid\":\"2a9fee97dcf477e36d048af8a902f47a\",\"img\":\"story-block-1\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/story-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Story Blocks Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"38\",\"installed\":false},\"454\":{\"id\":\"490\",\"title\":\"Story Content 1\",\"alias\":\"story-content-1\",\"zip\":\"packs\\/story-content-1.zip\",\"uid\":\"6773614bbce543b83a0d2b2ad8facc96\",\"img\":\"story-content-1\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/story-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Story Blocks Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"38\",\"installed\":false},\"455\":{\"id\":\"491\",\"title\":\"Story Block 2\",\"alias\":\"story-block-2\",\"zip\":\"packs\\/story-block-2.zip\",\"uid\":\"2e708e3cebab57ca20b228ffba426ce7\",\"img\":\"story-block-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/story-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Story Blocks Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"38\",\"installed\":false},\"456\":{\"id\":\"492\",\"title\":\"Story Block 3\",\"alias\":\"story-block-3\",\"zip\":\"packs\\/story-block-3.zip\",\"uid\":\"7156cf069f65644faf90122dab451231\",\"img\":\"story-block-3\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/story-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Story Blocks Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"38\",\"installed\":false},\"457\":{\"id\":\"493\",\"title\":\"Story Content 2\",\"alias\":\"story-content-2\",\"zip\":\"packs\\/story-content-2.zip\",\"uid\":\"1223cd77d1f36d69e69ce50223e16ea7\",\"img\":\"story-content-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/story-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Story Blocks Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"38\",\"installed\":false},\"458\":{\"id\":\"494\",\"title\":\"Story Block 4\",\"alias\":\"story-block-4\",\"zip\":\"packs\\/story-block-4.zip\",\"uid\":\"85ac48e8e8231d2c38206cba4e7ebb68\",\"img\":\"story-block-4\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/story-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Story Blocks Website Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"38\",\"installed\":false},\"459\":{\"id\":\"495\",\"title\":\"Story Content 3\",\"alias\":\"story-content-3\",\"zip\":\"packs\\/story-content-3.zip\",\"uid\":\"82cac52f3ba79c0559fe0ad0cdf9d3b2\",\"img\":\"story-content-3\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/story-blocks\\/\",\"version\":\"1.0.1\",\"required\":\"6.1.6\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Story Blocks for Slider Revolution can be used to create scroll-based stories on your WordPress site. Mix and match the individual blocks to create YOUR story!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Story Blocks Website Template\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"38\",\"installed\":false},\"460\":{\"id\":\"496\",\"title\":\"Animated Mini Website\",\"alias\":\"mini-website\",\"zip\":\"mini-website.zip\",\"uid\":\"cc6c0a3b0f933a88c43e2be0fa397c1c\",\"img\":\"mini-website\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/mini-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The animated mini website template has a modern, vibrant design and can be customized easily! Get the #1 WordPress Builder with 200+ templates.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"461\":{\"id\":\"497\",\"title\":\"Food Delivery Hero\",\"alias\":\"food-delivery\",\"zip\":\"food-delivery.zip\",\"uid\":\"992e9b22ff43227a655eea341835d04c\",\"img\":\"food-delivery\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/food-delivery-hero\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"Yummy! This hero template convinces with a changing color background, a particle effect, vibrant illustrations and smooth mouse over effects.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"462\":{\"id\":\"498\",\"title\":\"Slider With Illustrations\",\"alias\":\"slider-with-illustrations\",\"zip\":\"slider-with-illustrations.zip\",\"uid\":\"ebc24280b669f26734c7fdd8b5683e9f\",\"img\":\"slider-with-illustrations\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/slider-with-illustrations\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"A basic slider template with easy to customize content, colorful illustrations and pleasant parallax effects.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"463\":{\"id\":\"499\",\"title\":\"Zen Technology Website Template\",\"alias\":\"zen-technology-website-template\",\"zip\":\"\",\"uid\":\"zen-technology-website-template-package\",\"img\":\"packages\\/zen-technology-website-template-package.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/zen-technology-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Zen Technology Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"39\",\"installed\":false},\"464\":{\"id\":\"500\",\"title\":\"Zen Menu\",\"alias\":\"zen-menu\",\"zip\":\"packs\\/zen-menu.zip\",\"uid\":\"3b53d755058b75fa6172510dcca2f2bb\",\"img\":\"zen-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/zen-technology-website\\/\",\"version\":\"1.0.2\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Zen Technology Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"39\",\"installed\":false},\"465\":{\"id\":\"501\",\"title\":\"Zen Header\",\"alias\":\"zen-header\",\"zip\":\"packs\\/zen-header.zip\",\"uid\":\"13d3cdde05308616fda7e2920a29e006\",\"img\":\"zen-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/zen-technology-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Zen Technology Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"39\",\"installed\":false},\"466\":{\"id\":\"502\",\"title\":\"Zen About\",\"alias\":\"zen-about\",\"zip\":\"packs\\/zen-about.zip\",\"uid\":\"d50d4f9b43e025fa99503b9a4eec6551\",\"img\":\"zen-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/zen-technology-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Zen Technology Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"39\",\"installed\":false},\"467\":{\"id\":\"503\",\"title\":\"Zen Features\",\"alias\":\"zen-features\",\"zip\":\"packs\\/zen-features.zip\",\"uid\":\"f4f7f500fae57b1b55adace13f030778\",\"img\":\"zen-features\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/zen-technology-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Zen Technology Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"39\",\"installed\":false},\"468\":{\"id\":\"504\",\"title\":\"Zen Video\",\"alias\":\"zen-video\",\"zip\":\"packs\\/zen-video.zip\",\"uid\":\"fa83df1b45b795174770b1b0155e89f3\",\"img\":\"zen-video\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/zen-technology-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Zen Technology Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"39\",\"installed\":false},\"469\":{\"id\":\"505\",\"title\":\"Zen Pricing\",\"alias\":\"zen-pricing\",\"zip\":\"packs\\/zen-pricing.zip\",\"uid\":\"921f8e5c156d9027f6ae8f1c5e426251\",\"img\":\"zen-pricing\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/zen-technology-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Zen Technology Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"39\",\"installed\":false},\"470\":{\"id\":\"506\",\"title\":\"Zen Testimonials Title\",\"alias\":\"zen-testimonials-title\",\"zip\":\"packs\\/zen-testimonials-title.zip\",\"uid\":\"d9aeeb596c0455ddd564a60a2d449b17\",\"img\":\"zen-testimonials-title\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/zen-technology-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Zen Technology Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"39\",\"installed\":false},\"471\":{\"id\":\"507\",\"title\":\"Zen Testimonials\",\"alias\":\"zen-testimonials\",\"zip\":\"packs\\/zen-testimonials.zip\",\"uid\":\"5a0e0141599c63828e4b99e3bc863366\",\"img\":\"zen-testimonials\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/zen-technology-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Zen Technology Website Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"39\",\"installed\":false},\"472\":{\"id\":\"508\",\"title\":\"Zen Footer\",\"alias\":\"zen-footer\",\"zip\":\"packs\\/zen-footer.zip\",\"uid\":\"47fb8604e2aafa8cfc97f5af75fda911\",\"img\":\"zen-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/zen-technology-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Zen Technology Website Template is a modern, striking one-pager for your technology focused project. Easy to edit and get started!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Zen Technology Website Template\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"39\",\"installed\":false},\"473\":{\"id\":\"509\",\"title\":\"Paintbrush Effect Add-on\",\"alias\":\"Paintbrush-Effect\",\"zip\":\"Paintbrush-Effect.zip\",\"uid\":\"b934d1376df026f0ff45447de17b5ee9\",\"img\":\"Paintbrush-Effect\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/paintbrush-effect-collection\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Paintbrush Effect Add-on is the perfect way to add some interactivity to your website with Slider Revolution.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-paintbrush-addon\\\\\\/revslider-paintbrush-addon.php\\\",\\\"name\\\":\\\"Paintbrush AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"474\":{\"id\":\"510\",\"title\":\"Photographer Website Template\",\"alias\":\"photographer-website-template\",\"zip\":\"\",\"uid\":\"photographer-website-template-package\",\"img\":\"packages\\/photographer-website-template-package.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/photographer-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Photographer Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"40\",\"installed\":false},\"475\":{\"id\":\"511\",\"title\":\"Photographer Header\",\"alias\":\"Photographer-Header\",\"zip\":\"packs\\/Photographer-Header.zip\",\"uid\":\"22de8b3b1eeca5d0d1087791a28cc641\",\"img\":\"Photographer-Header\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/photographer-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Photographer Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"40\",\"installed\":false},\"476\":{\"id\":\"512\",\"title\":\"Photographer Welcome Screen\",\"alias\":\"Photographer-Welcome-Screen\",\"zip\":\"packs\\/Photographer-Welcome-Screen.zip\",\"uid\":\"8de63df079ad8b7c0aa7bf164bd5fd8f\",\"img\":\"Photographer-Welcome-Screen\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/photographer-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Photographer Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"40\",\"installed\":false},\"477\":{\"id\":\"513\",\"title\":\"Photographer Showcase\",\"alias\":\"Photographer-Showcase\",\"zip\":\"packs\\/Photographer-Showcase.zip\",\"uid\":\"8b2c7a1541465f77e829a9ac58926359\",\"img\":\"Photographer-Showcase\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/photographer-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Photographer Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"40\",\"installed\":false},\"478\":{\"id\":\"514\",\"title\":\"Photographer Portfolio\",\"alias\":\"Photographer-Portfolio\",\"zip\":\"packs\\/Photographer-Portfolio.zip\",\"uid\":\"ba5cc502a9505725ef169eaf4852d10f\",\"img\":\"Photographer-Portfolio\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/photographer-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Photographer Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"40\",\"installed\":false},\"479\":{\"id\":\"515\",\"title\":\"Photographer Contacts\",\"alias\":\"Photographer-Contacts\",\"zip\":\"packs\\/Photographer-Contacts.zip\",\"uid\":\"6ac142733cd260b5d5d3cdce30885074\",\"img\":\"Photographer-Contacts\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/photographer-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Photographer Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"40\",\"installed\":false},\"480\":{\"id\":\"516\",\"title\":\"Photographer Footer\",\"alias\":\"Photographer-Footer\",\"zip\":\"packs\\/Photographer-Footer.zip\",\"uid\":\"5fae568a988d072fb14b66cc2732ea46\",\"img\":\"Photographer-Footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/photographer-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Photographer Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"40\",\"installed\":false},\"481\":{\"id\":\"517\",\"title\":\"Photographer Modal\",\"alias\":\"Photographer-Modal\",\"zip\":\"packs\\/Photographer-Modal.zip\",\"uid\":\"e6b47a765ad19bce4726540ff7211c07\",\"img\":\"Photographer-Modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/photographer-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.2.23\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The Photographer Website Template is the perfect way to introduce your portfolio. Showcase your latests works, projects and contacts with sleek transitions!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Photographer Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"40\",\"installed\":false},\"482\":{\"id\":\"518\",\"title\":\"Black Friday Scroll Video\",\"alias\":\"black-friday-scroll-video\",\"zip\":\"black-friday-scroll-video.zip\",\"uid\":\"a6a4ab2e2f703aaee0a1e6121881bdd8\",\"img\":\"black-friday-scroll-video\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/black-friday-scroll-video\\/\",\"version\":\"1.0.1\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"Blackfriday offers are coming towards you from the depths of space, with this scroll-based hero module.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-lottie-addon\\\\\\/revslider-lottie-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Lottie AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-scrollvideo-addon\\\\\\/revslider-scrollvideo-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Scroll Video Add-On\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"483\":{\"id\":\"519\",\"title\":\"Charity Non-Profit-Website\",\"alias\":\"charity-non-profit-website\",\"zip\":\"\",\"uid\":\"charity-non-profit-website\",\"img\":\"packages\\/charity-non-profit-website-package.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-lottie-addon\\\\\\/revslider-lottie-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Lottie AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"484\":{\"id\":\"520\",\"title\":\"Charity Menu\",\"alias\":\"charity-menu\",\"zip\":\"packs\\/charity-menu.zip\",\"uid\":\"77794a39041c7f128de3b5ad9b8e7d0d\",\"img\":\"charity-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"485\":{\"id\":\"521\",\"title\":\"Charity Header\",\"alias\":\"charity-header\",\"zip\":\"packs\\/charity-header.zip\",\"uid\":\"36096787d4ed62942cbd48f6a57e9d4f\",\"img\":\"charity-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\" offset=\\\"t:90px,80px,70px,70px;b:0px,0px,0px,0px;l:0px,0px,0px,0px;r:0px,0px,0px,0px;\\\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"486\":{\"id\":\"522\",\"title\":\"Charity Mission\",\"alias\":\"charity-mission\",\"zip\":\"packs\\/charity-mission.zip\",\"uid\":\"8c5cd67e3eb51c0ca3e571408ac8e97b\",\"img\":\"charity-mission\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-lottie-addon\\\\\\/revslider-lottie-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Lottie AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"487\":{\"id\":\"523\",\"title\":\"Charity Funds\",\"alias\":\"charity-funds\",\"zip\":\"packs\\/charity-funds.zip\",\"uid\":\"10da554c7529ef91965e1618a04b410b\",\"img\":\"charity-funds\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-lottie-addon\\\\\\/revslider-lottie-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Lottie AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"488\":{\"id\":\"524\",\"title\":\"Charity Success\",\"alias\":\"charity-success\",\"zip\":\"packs\\/charity-success.zip\",\"uid\":\"0c35448c1905272606e87447886a348e\",\"img\":\"charity-success\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-lottie-addon\\\\\\/revslider-lottie-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Lottie AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"489\":{\"id\":\"525\",\"title\":\"Charity Stories\",\"alias\":\"charity-stories\",\"zip\":\"packs\\/charity-stories.zip\",\"uid\":\"f277f145d9f9c3f0033bb8ceffeb4c9f\",\"img\":\"charity-stories\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"490\":{\"id\":\"526\",\"title\":\"Charity Worldmap\",\"alias\":\"charity-worldmap\",\"zip\":\"packs\\/charity-worldmap.zip\",\"uid\":\"9e00cbac269b92cb24fd3230297f4685\",\"img\":\"charity-worldmap\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"491\":{\"id\":\"527\",\"title\":\"Charity Large Image\",\"alias\":\"charity-large-image\",\"zip\":\"packs\\/charity-large-image.zip\",\"uid\":\"fa927036c2b14622832106fa987bc8e7\",\"img\":\"charity-large-image\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"492\":{\"id\":\"528\",\"title\":\"Charity Sponsors\",\"alias\":\"charity-sponsors\",\"zip\":\"packs\\/charity-sponsors.zip\",\"uid\":\"efd087bc3fa3915139af9e93d47ee295\",\"img\":\"charity-sponsors\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"493\":{\"id\":\"529\",\"title\":\"Charity Help\",\"alias\":\"charity-help\",\"zip\":\"packs\\/charity-help.zip\",\"uid\":\"4f3571c0b27f061648c9ff95b1a3f718\",\"img\":\"charity-help\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"10\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"494\":{\"id\":\"530\",\"title\":\"Charity Footer\",\"alias\":\"charity-footer\",\"zip\":\"packs\\/charity-footer.zip\",\"uid\":\"9340fa48c56635a8a781cc37c4bf538c\",\"img\":\"charity-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charity-non-profit-website\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Charity Non-Profit-Website\",\"package_order\":\"11\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"41\",\"installed\":false},\"495\":{\"id\":\"531\",\"title\":\"Cinematic Hero Titles\",\"alias\":\"cinematic-hero-titles\",\"zip\":\"cinematic-hero-titles.zip\",\"uid\":\"51a59c54bb97c274092d22dbf4f6085e\",\"img\":\"cinematic-hero-titles\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/cinematic-hero-titles\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The \\\"Cinematic Hero Titles\\\" template is a collection of fullscreen hero blocks that use a cinematic, animated letter-spacing effect..<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-lottie-addon\\\\\\/revslider-lottie-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Lottie AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"496\":{\"id\":\"532\",\"title\":\"Design DNA Scroll Video\",\"alias\":\"design-dna-scroll-video\",\"zip\":\"design-dna-scroll-video.zip\",\"uid\":\"39180fc9f7a07e50832fc1a68fb4eba2\",\"img\":\"design-dna-scroll-video\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/design-dna-scroll-video\\/\",\"version\":\"1.0.2\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The \\\"Design DNA Scroll Video\\\" template is\\u00a0a striking, fullscreen hero module that is using our new Scroll Video addon.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-lottie-addon\\\\\\/revslider-lottie-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Lottie AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-scrollvideo-addon\\\\\\/revslider-scrollvideo-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Scroll Video Add-On\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"497\":{\"id\":\"533\",\"title\":\"Food Delivery Lottie Scroll\",\"alias\":\"food-delivery-lottie-scroll\",\"zip\":\"food-delivery-lottie-scroll.zip\",\"uid\":\"5dfbfac45c5df7702238ba1b43afe8f6\",\"img\":\"food-delivery-lottie-scroll\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/food-delivery-lottie-scroll\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The \\\"Design DNA Scroll Video\\\" template is\\u00a0a striking, fullscreen hero module that is using our new Scroll Video addon.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-lottie-addon\\\\\\/revslider-lottie-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Lottie AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"0000-00-00 00:00:00\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"498\":{\"id\":\"534\",\"title\":\"Food Recipe Carousel Template\",\"alias\":\"food-recipe-carousel-template\",\"zip\":\"\",\"uid\":\"food-recipe-carousel-template\",\"img\":\"packages\\/food-recipe-carousel-template-package.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/food-recipe-carousel\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"Showcase your cooking recipes with the easy to use \\\"Food Recipe Carousel\\\" template. Clicking the titles opens up a detail view!<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Food Recipe Carousel Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"42\",\"installed\":false},\"499\":{\"id\":\"535\",\"title\":\"Food Recipe Carousel\",\"alias\":\"food-recipe-carousel\",\"zip\":\"packs\\/food-recipe-carousel.zip\",\"uid\":\"6ba9695ba1a22a6e99f96431d8fb01e8\",\"img\":\"food-recipe-carousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/food-recipe-carousel\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Food Recipe Carousel Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"42\",\"installed\":false},\"500\":{\"id\":\"536\",\"title\":\"Food Recipe Modal\",\"alias\":\"food-recipe-modal\",\"zip\":\"packs\\/food-recipe-modal.zip\",\"uid\":\"1c5b2e959cd973efc5c1887a3a4279f3\",\"img\":\"food-recipe-modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/food-recipe-carousel\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.0\",\"width\":\"1240\",\"height\":\"868\",\"description\":\"The \\\"Charity Non-Profit Website\\\" is a useful one-page website template with simple & smooth animation effects and animated lottie icons.<\\/span>\\r\\n<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Food Recipe Carousel Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"42\",\"installed\":false},\"501\":{\"id\":\"537\",\"title\":\"Corporate Carousel Template\",\"alias\":\"corporate-carousel-template\",\"zip\":\"\",\"uid\":\"corporate-carousel-template\",\"img\":\"packages\\/corporate_carousel_bundle.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/corporate-carousel-with-lightbox\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"2021-01-19 15:14:10\",\"package\":\"Corporate Carousel Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"43\",\"installed\":false},\"502\":{\"id\":\"538\",\"title\":\"Corporate Carousel\",\"alias\":\"corporate-carousel\",\"zip\":\"packs\\/corporate-carousel.zip\",\"uid\":\"30dea0e333913cb5ebbf8dded8c3a839\",\"img\":\"corporate-carousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/\",\"version\":\"1.0.1\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2021-01-19 15:26:51\",\"package\":\"Corporate Carousel Template\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"43\",\"installed\":false},\"503\":{\"id\":\"539\",\"title\":\"Corporate Lightbox\",\"alias\":\"corporate-lightbox\",\"zip\":\"packs\\/corporate-lightbox.zip\",\"uid\":\"832c277bfc5a288c0dffd784e4041265\",\"img\":\"corporate-lightbox\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"The Corporate Carousel is a basic, easy to use carousel with tab navigation. The lightbox modal can show any additonal content, independant of the carousel.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-01-19 15:34:36\",\"package\":\"Corporate Carousel Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"43\",\"installed\":false},\"504\":{\"id\":\"540\",\"title\":\"Cyber Carousel Template\",\"alias\":\"cyber-carousel-template\",\"zip\":\"\",\"uid\":\"cyber-carousel-template\",\"img\":\"packages\\/cybercarousel_bundle.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/cyber-carousel-with-lightbox\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"website\"],\"plugin_require\":null,\"date\":\"2021-01-19 15:40:25\",\"package\":\"Cyber Carousel Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"44\",\"installed\":false},\"505\":{\"id\":\"541\",\"title\":\"Cyber Carousel\",\"alias\":\"cyber-carousel\",\"zip\":\"packs\\/cyber-carousel.zip\",\"uid\":\"b5ef41c7f498bd1dccf8224bfbade718\",\"img\":\"cyber-carousel\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/cyber-carousel-with-lightbox\",\"version\":\"1.0.1\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2021-01-19 15:42:44\",\"package\":\"Cyber Carousel Template\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"44\",\"installed\":false},\"506\":{\"id\":\"542\",\"title\":\"Cyber Carousel Lightbox\",\"alias\":\"cyber-carousel-lightbox\",\"zip\":\"packs\\/cyber-carousel-lightbox.zip\",\"uid\":\"cb91abeed0555dfcafe849c37e7c9c32\",\"img\":\"cyber-carousel-lightbox\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/cyber-carousel-with-lightbox\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"This fullscreen carousel has easy to edit content and vertical navigation tabs. The highlight color can be changed with one click upon opening the editor.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-01-19 15:50:15\",\"package\":\"Cyber Carousel Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"44\",\"installed\":false},\"507\":{\"id\":\"543\",\"title\":\"Woo Carousel One\",\"alias\":\"woocommerce-carousel-one\",\"zip\":\"woocommerce-carousel-one.zip\",\"uid\":\"df0a99cef3981ecb608dff4ed573a493\",\"img\":\"woocommerce-carousel-one\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/woocommerce-slider-pack\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"2021-01-19 16:02:45\",\"package\":\"Woo Slider Pack\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"45\",\"installed\":false},\"508\":{\"id\":\"544\",\"title\":\"Woo Carousel One Static\",\"alias\":\"woocommerce-carousel-one-static\",\"zip\":\"woocommerce-carousel-one-static.zip\",\"uid\":\"5c955a3850369e79b1e18921306ac1df\",\"img\":\"woocommerce-carousel-one-static\\/slide1.jpg\",\"preview\":\"https:\\/\\/sliderrevolution.com\\/templates\\/woocommerce-slider-pack\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"A static content carousel. Please use the \\\"non-static\\\" version for WooCommerce.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"2021-01-19 16:05:02\",\"package\":\"Woo Slider Pack Static\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"46\",\"installed\":false},\"509\":{\"id\":\"545\",\"title\":\"Woo Carousel Two\",\"alias\":\"woocommerce-carousel-two\",\"zip\":\"woocommerce-carousel-two.zip\",\"uid\":\"fdd797d8e98a9138f5563b68b95ebe1c\",\"img\":\"woocommerce-carousel-two\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/woocommerce-slider-pack\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"A basic WooCommerce carousel. Just set your categories and the carousel will be populated with your WooCommerce products.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"2021-01-19 16:06:57\",\"package\":\"Woo Slider Pack\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"45\",\"installed\":false},\"510\":{\"id\":\"546\",\"title\":\"Woo Carousel Two Static\",\"alias\":\"woocommerce-carousel-two-static\",\"zip\":\"woocommerce-carousel-two-static.zip\",\"uid\":\"2f3bfb1dfa99647426ce906f10dfc480\",\"img\":\"woocommerce-carousel-two-static\\/slide1.jpg\",\"preview\":\"https:\\/\\/sliderrevolution.com\\/templates\\/woocommerce-slider-pack\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"A static content carousel. Please use the \\\"non-static\\\" version for WooCommerce.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"carousel\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"2021-01-19 16:16:15\",\"package\":\"Woo Slider Pack Static\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"46\",\"installed\":false},\"511\":{\"id\":\"547\",\"title\":\"Woo Feature Slider\",\"alias\":\"woocommerce-feature-slider\",\"zip\":\"woocommerce-feature-slider.zip\",\"uid\":\"c8aa1f551065eeffc752f2d8daef6db1\",\"img\":\"woocommerce-feature-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/woocommerce-slider-pack\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"2021-01-19 16:19:13\",\"package\":\"Woo Slider Pack\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"45\",\"installed\":false},\"512\":{\"id\":\"548\",\"title\":\"Woo Feature Slider Static\",\"alias\":\"woocommerce-feature-slider-static\",\"zip\":\"woocommerce-feature-slider-static.zip\",\"uid\":\"2f29e8fd101c799480152a7911b33ca6\",\"img\":\"woocommerce-feature-slider-static\\/slide1.jpg\",\"preview\":\"https:\\/\\/sliderrevolution.com\\/templates\\/woocommerce-slider-pack\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"A static content slider Please use the \\\"non-static\\\" version for WooCommerce.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"2021-01-19 16:20:57\",\"package\":\"Woo Slider Pack Static\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"46\",\"installed\":false},\"513\":{\"id\":\"549\",\"title\":\"Woo Liquid Slider\",\"alias\":\"woo-liquid-slider\",\"zip\":\"woo-liquid-slider.zip\",\"uid\":\"9f455f73675a73dbefe820288e994f27\",\"img\":\"woo-liquid-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/woocommerce-liquid-slider\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"A WooCommerce slider using the BubbleMorph addon for an interesting liquid effect. Just set your categories and the slider will be populated with your WooCommerce products.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"postbased\",\"woocommerce\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-01-19 16:23:03\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"514\":{\"id\":\"550\",\"title\":\"Woo Liquid Slider Static\",\"alias\":\"woocommerce-liquid-slider-static\",\"zip\":\"woocommerce-liquid-slider-static.zip\",\"uid\":\"5848192fea46ffee95a91aa531848e19\",\"img\":\"woocommerce-liquid-slider-static\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/woocommerce-liquid-slider\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"A static content slider using the BubbleMorph addon for an interesting liquid effect. For WooCommerce, please use the \\\"non-static\\\" version.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"woocommerce\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-01-19 16:24:35\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"515\":{\"id\":\"551\",\"title\":\"Woo Slider Pack\",\"alias\":\"woo-slider-pack\",\"zip\":\"\",\"uid\":\"woo-slider-pack\",\"img\":\"packages\\/woosliderpack_dynamic.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/woocommerce-slider-pack\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\",\"slider\",\"postbased\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"2021-01-20 09:34:45\",\"package\":\"Woo Slider Pack\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"45\",\"installed\":false},\"516\":{\"id\":\"552\",\"title\":\"Woo Slider Pack Static\",\"alias\":\"woo-slider-pack-static\",\"zip\":\"\",\"uid\":\"woo-slider-pack-static\",\"img\":\"packages\\/woosliderpack_static.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/woocommerce-slider-pack\\/\",\"version\":\"1.0.0\",\"required\":\"6.3.6\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"A basic WooCommerce slider. Just set your categories and the slider will be populated with your WooCommerce products.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\",\"woocommerce\"],\"plugin_require\":null,\"date\":\"2021-01-20 09:39:21\",\"package\":\"Woo Slider Pack Static\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"46\",\"installed\":false},\"517\":{\"id\":\"553\",\"title\":\"Creative Hero Collection\",\"alias\":\"creative-hero-collection\",\"zip\":\"creative-hero-collection.zip\",\"uid\":\"e20126d93d081055e5ff3f6981b971fa\",\"img\":\"creative-hero-collection\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/creative-hero-collection\\/\",\"version\":\"1.0.0\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"A fantastic intro presentation for almost any website. If you want to use a single slide as a hero, simply drag it to the first position and set the layout of the module to \\\"scene\\\".<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-02-23 10:22:47\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"518\":{\"id\":\"554\",\"title\":\"Photo Slider\",\"alias\":\"photographer-slider\",\"zip\":\"photographer-slider.zip\",\"uid\":\"e00104cff231e2aaeb149b3c63e78a5e\",\"img\":\"photographer-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/photographer-and-videographer-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"A great module for any photographer\\/videographer who wants to display their portfolio in an engaging way.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-02-23 10:25:31\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"519\":{\"id\":\"555\",\"title\":\"Real Estate Slider\",\"alias\":\"realestate-slider\",\"zip\":\"realestate-slider.zip\",\"uid\":\"596effabfef768f0371cba2b1fdd0c1d\",\"img\":\"realestate-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/real-estate-showcase-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Showcase your clients real estate offerings with this clean and convincing presentation.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-02-23 10:45:36\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"520\":{\"id\":\"556\",\"title\":\"Saas Product Slider\",\"alias\":\"saas-product-slider\",\"zip\":\"saas-product-slider.zip\",\"uid\":\"3cf7809058f383425c5409aa1204335f\",\"img\":\"saas-product-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/saas-product-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.4.0\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Present your digital SaaS product with a modern design and stunning animations.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-typewriter-addon\\\\\\/revslider-typewriter-addon.php\\\",\\\"name\\\":\\\"Typewriter AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/typewriter-addon\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-lottie-addon\\\\\\/revslider-lottie-addon.php\\\",\\\"name\\\":\\\"Slider Revolution Lottie AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-02-23 10:49:44\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"521\":{\"id\":\"557\",\"title\":\"Cinematic Wildlife Template\",\"alias\":\"cinematic-wildlife-template\",\"zip\":\"\",\"uid\":\"cinematic-wildlife-template\",\"img\":\"packages\\/cinematic-wildlife-package.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/cinematic-wildlife-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.4.8\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-04-16 10:45:38\",\"package\":\"Cinematic Wildlife Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"47\",\"installed\":false},\"522\":{\"id\":\"558\",\"title\":\"Cinematic Wildlife Slider\",\"alias\":\"cinematic-wildlife-slider\",\"zip\":\"packs\\/cinematic-wildlife-slider.zip\",\"uid\":\"a37b04e221a845d6d446f4d70e815b87\",\"img\":\"cinematic-wildlife-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/cinematic-wildlife-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.4.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.<\\/span><\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-04-16 10:47:01\",\"package\":\"Cinematic Wildlife Template\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"47\",\"installed\":false},\"523\":{\"id\":\"559\",\"title\":\"Cinematic Wildlife Modal\",\"alias\":\"cinematic-wildlife-modal\",\"zip\":\"packs\\/cinematic-wildlife-modal.zip\",\"uid\":\"636a6885199f684ad743167ceea70dc4\",\"img\":\"cinematic-wildlife-modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/cinematic-wildlife-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.4.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Easily create cinematic presentations with this photography-based slider, that features a convenient YouTube video popup.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-04-16 10:50:56\",\"package\":\"Cinematic Wildlife Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"47\",\"installed\":false},\"524\":{\"id\":\"560\",\"title\":\"Gaming Stats Presentation Slider\",\"alias\":\"gaming-stats-presentation-slider\",\"zip\":\"gaming-stats-presentation-slider.zip\",\"uid\":\"988df5050f2a45a108ef32518a725bf8\",\"img\":\"gaming-stats-presentation-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/charts-addon-presentation-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.4.11\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Create interactive presentations and showcase statistics with unique and customizable charts<\\/span><\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-charts-addon\\\\\\/revslider-charts-addon.php\\\",\\\"name\\\":\\\"Charts AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-04-29 09:50:58\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"525\":{\"id\":\"561\",\"title\":\"Coffee Shop Split Screen Slider\",\"alias\":\"coffee-flavours\",\"zip\":\"coffee-flavours.zip\",\"uid\":\"63726447a6a614d8f53fbf6024fd3033\",\"img\":\"coffee-flavors\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/coffee-shop-split-screen-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.5.0\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"The animated elements and clean layout make this slider an eye-catcher for your coffee shop. With it\'s easy customizability, this template is perfect for showcasing any type of product!<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-06-11 09:09:52\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"526\":{\"id\":\"562\",\"title\":\"Modern Portfolio Showreel Slider\",\"alias\":\"showreel-slider\",\"zip\":\"showreel-slider.zip\",\"uid\":\"bced29a585e67153a1ed7608ddcdb69d\",\"img\":\"showreel-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/modern-portfolio-showreel-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.0\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Showcase beautiful videos and photography with this clean looking slider with modern UI and effective typography. Perfect for any creative professional.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-06-11 09:14:43\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"527\":{\"id\":\"563\",\"title\":\"Visual Art Forms Slider\",\"alias\":\"visual-art-forms\",\"zip\":\"visual-art-forms.zip\",\"uid\":\"4d57a5abf20bc4a615fe30837ac3ce1a\",\"img\":\"visual-art-forms\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/visual-art-forms-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.5.0\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Present just about anything with this highly flexible and modern looking slider, no matter what industry you are in.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-06-11 09:18:19\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"528\":{\"id\":\"564\",\"title\":\"Background Effect Hero\",\"alias\":\"bg-effect-hero\",\"zip\":\"bg-effect-hero.zip\",\"uid\":\"55bb0fa5ac66ad84423fa704b701e1df\",\"img\":\"bg-effect-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/background-effect-hero-collection\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.6\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"If you really want to stun your visitors with gorgeous gradients and dreamy transitions,
\\r\\nthis slider \\/ hero module is exactly what you were looking for.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-bubblemorph-addon\\\\\\/revslider-bubblemorph-addon.php\\\",\\\"name\\\":\\\"BubbleMorph AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-08-09 10:45:50\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"529\":{\"id\":\"565\",\"title\":\"Cyber Glitch Effect Slider\",\"alias\":\"cyberfunk\",\"zip\":\"cyberfunk.zip\",\"uid\":\"44fdc7e13074bdc46500972cd708c739\",\"img\":\"cyberfunk\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/cyber-glitch-effect-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.6\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Dive into a futuristic, neon, cyber world with this amazing slider template featuring
\\r\\nglitch effect transitions and a typewriter effect.
\\r\\nThe custom navigation skin can be customized easily!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-typewriter-addon\\\\\\/revslider-typewriter-addon.php\\\",\\\"name\\\":\\\"Typewriter AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/typewriter-addon\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-08-09 10:51:54\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"530\":{\"id\":\"566\",\"title\":\"Motion Blur Portfolio Showcase\",\"alias\":\"motion-blur-portfolio\",\"zip\":\"motion-blur-portfolio.zip\",\"uid\":\"28086bed49cfb241c7d40f91cd64e970\",\"img\":\"motion-blur-portfolio\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/motion-blur-portfolio-showcase\\/\",\"version\":\"1.0.1\",\"required\":\"6.5.6\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"This clean showcase slider with an optional video popup is using a fancy motion blur transition!
\\r\\nPacked with a logo and menu its ready to visualize your wildest ideas.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-08-09 10:56:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"531\":{\"id\":\"567\",\"title\":\"Portal Effect Hero Slider\",\"alias\":\"portal-effect-hero\",\"zip\":\"portal-effect-hero.zip\",\"uid\":\"87f5b64e44dc5b75bc1c7adbeb287ee9\",\"img\":\"portal-effect-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/portal-effect-hero-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.5.6\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"This slider module can function as an impressive landing page or a striking product presentation anywhere on your WordPress website.
\\r\\nThe design already includes elements like a logo, menu and social media icons.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-08-09 11:08:18\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"532\":{\"id\":\"568\",\"title\":\"Winery Timeline Slider\",\"alias\":\"winery-timeline\",\"zip\":\"winery-timeline.zip\",\"uid\":\"d2ccdaf0a5c73db21e8e8a3f6712e8bd\",\"img\":\"winery-timeline\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/winery-timeline-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.6\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Tell your own story with this fabulous timeline slider.
\\r\\nLogo and social icon design elements are already included if you want to use this template as a standalone landing page!<\\/span><\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-08-09 11:13:39\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"533\":{\"id\":\"569\",\"title\":\"Smart Living One Pager V1\",\"alias\":\"smart-living-one-pager-v1\",\"zip\":\"\",\"uid\":\"smart-living-one-pager-v1\",\"img\":\"packages\\/Smart-Living-One-Pager-V1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v1\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-09-07 14:33:48\",\"package\":\"Smart Living One Pager V1\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"48\",\"installed\":false},\"534\":{\"id\":\"570\",\"title\":\"Smart Living One Pager V2\",\"alias\":\"smart-living-one-pager-v2\",\"zip\":\"\",\"uid\":\"smart-living-one-pager-v2\",\"img\":\"packages\\/Smart-Living-One-Pager-V2.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v2\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-09-07 14:38:21\",\"package\":\"Smart Living One Pager V2\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"49\",\"installed\":false},\"535\":{\"id\":\"571\",\"title\":\"Smart Living One Pager V3\",\"alias\":\"smart-living-one-pager-v3\",\"zip\":\"\",\"uid\":\"smart-living-one-pager-v3\",\"img\":\"packages\\/Smart-Living-One-Pager-V3.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v3\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-09-07 14:39:44\",\"package\":\"Smart Living One Pager V3\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"50\",\"installed\":false},\"536\":{\"id\":\"572\",\"title\":\"Menu 1\",\"alias\":\"menu-1\",\"zip\":\"packs\\/menu-1.zip\",\"uid\":\"6e5038d711f2ee8326c79c3a9e06ded4\",\"img\":\"menu-1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v1\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 14:41:12\",\"package\":\"Smart Living One Pager V1\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"48\",\"installed\":false},\"537\":{\"id\":\"573\",\"title\":\"Hero 1\",\"alias\":\"onepage-hero-1\",\"zip\":\"packs\\/onepage-hero-1.zip\",\"uid\":\"9f5fec6956bd2e1e1ecc553a8b7471b0\",\"img\":\"onepage-hero-1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v1\\/\",\"version\":\"1.0.1\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-09-07 14:48:41\",\"package\":\"Smart Living One Pager V1\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"48\",\"installed\":false},\"538\":{\"id\":\"574\",\"title\":\"About 1\",\"alias\":\"about1\",\"zip\":\"packs\\/about1.zip\",\"uid\":\"fc4962093f61124101c05ceb506fa5d2\",\"img\":\"about1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v1\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 14:50:54\",\"package\":\"Smart Living One Pager V1\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"48\",\"installed\":false},\"539\":{\"id\":\"575\",\"title\":\"Services 1\",\"alias\":\"services1\",\"zip\":\"packs\\/services1.zip\",\"uid\":\"08f72a81aeb9afdaa57f544e4331a6da\",\"img\":\"services1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v1\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 14:52:41\",\"package\":\"Smart Living One Pager V1\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"48\",\"installed\":false},\"540\":{\"id\":\"576\",\"title\":\"Projects 1\",\"alias\":\"projects1\",\"zip\":\"packs\\/projects1.zip\",\"uid\":\"11ff60e82fcf47a6a2c6bdce3cc1d8f2\",\"img\":\"projects1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v1\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:01:48\",\"package\":\"Smart Living One Pager V1\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"48\",\"installed\":false},\"541\":{\"id\":\"577\",\"title\":\"Footer 1\",\"alias\":\"footer-1\",\"zip\":\"packs\\/footer-1.zip\",\"uid\":\"947fac99689a985c7f0f7dfec4311f6b\",\"img\":\"footer-1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v1\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:05:00\",\"package\":\"Smart Living One Pager V1\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"48\",\"installed\":false},\"542\":{\"id\":\"578\",\"title\":\"Explainer Block 1 Part 1\",\"alias\":\"explainer-block-1-part1\",\"zip\":\"packs\\/explainer-block-1-part1.zip\",\"uid\":\"731980bef0ea06263d05b286b5a75dfe\",\"img\":\"explainer-block-1-part1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v1\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"An elegant slider for your website. Flexible and customizable.<\\/span><\\/span>\",\"setup_notes\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:06:07\",\"package\":\"Smart Living One Pager V1\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"48\",\"installed\":false},\"543\":{\"id\":\"579\",\"title\":\"Explainer Block 1 Part 2\",\"alias\":\"explainer-block-1-part2\",\"zip\":\"packs\\/explainer-block-1-part2.zip\",\"uid\":\"ded730f13551f78b9a87b159b72d8ce8\",\"img\":\"explainer-block-1-part2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v1\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"An elegant slider for your website. Flexible and customizable.<\\/span><\\/span>\",\"setup_notes\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:07:26\",\"package\":\"Smart Living One Pager V1\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"48\",\"installed\":false},\"544\":{\"id\":\"580\",\"title\":\"Projects Modal 1\",\"alias\":\"projects-modal-1\",\"zip\":\"packs\\/projects-modal-1.zip\",\"uid\":\"b17af2f4e21786711a2ce4ac0c4436ad\",\"img\":\"projects-modal-1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v1\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:08:26\",\"package\":\"Smart Living One Pager V1\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"48\",\"installed\":false},\"545\":{\"id\":\"581\",\"title\":\"Menu 2\",\"alias\":\"menu-2\",\"zip\":\"packs\\/menu-2.zip\",\"uid\":\"a8d103f753ee50d4f81aa4100df8b7f9\",\"img\":\"menu-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v2\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:20:20\",\"package\":\"Smart Living One Pager V2\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"49\",\"installed\":false},\"546\":{\"id\":\"582\",\"title\":\"Hero 2\",\"alias\":\"hero-2\",\"zip\":\"packs\\/hero-2.zip\",\"uid\":\"7e56900f8c4b6e12435b70e141accaa8\",\"img\":\"hero-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v2\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-09-07 15:27:59\",\"package\":\"Smart Living One Pager V2\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"49\",\"installed\":false},\"547\":{\"id\":\"583\",\"title\":\"Services 2\",\"alias\":\"services-2\",\"zip\":\"packs\\/services-2.zip\",\"uid\":\"da2d588b291a7754096ac77746ba1da5\",\"img\":\"services-2\\/services2-thumbnail.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v2\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:29:09\",\"package\":\"Smart Living One Pager V2\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"49\",\"installed\":false},\"548\":{\"id\":\"584\",\"title\":\"About 2\",\"alias\":\"about-2\",\"zip\":\"packs\\/about-2.zip\",\"uid\":\"8e9e84d1aec08de6e099473683bf0e57\",\"img\":\"about-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v2\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:30:15\",\"package\":\"Smart Living One Pager V2\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"49\",\"installed\":false},\"549\":{\"id\":\"585\",\"title\":\"Projects 2\",\"alias\":\"projects-2\",\"zip\":\"packs\\/projects-2.zip\",\"uid\":\"99bc6ca75f6d5e018701aef5f5b22b27\",\"img\":\"projects-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v2\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:32:06\",\"package\":\"Smart Living One Pager V2\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"49\",\"installed\":false},\"550\":{\"id\":\"586\",\"title\":\"Footer 2\",\"alias\":\"footer2\",\"zip\":\"packs\\/footer2.zip\",\"uid\":\"99df496d2fd9e897a2debb66958cb610\",\"img\":\"footer2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v2\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:34:09\",\"package\":\"Smart Living One Pager V2\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"49\",\"installed\":false},\"551\":{\"id\":\"587\",\"title\":\"Explainer Block 2 Part 1\",\"alias\":\"explainer-block-2-part1\",\"zip\":\"packs\\/explainer-block-2-part1.zip\",\"uid\":\"aee4d41e9cf5f91ad69bfbe96d1dc1b8\",\"img\":\"explainer-block-2-part1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v2\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:35:48\",\"package\":\"Smart Living One Pager V2\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"49\",\"installed\":false},\"552\":{\"id\":\"588\",\"title\":\"Explainer Block 2 Part 2\",\"alias\":\"explainer-block-2-part2\",\"zip\":\"packs\\/explainer-block-2-part2.zip\",\"uid\":\"b12ac82484c5d2609994978f95026057\",\"img\":\"explainer-block-2-part2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v2\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:37:05\",\"package\":\"Smart Living One Pager V2\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"49\",\"installed\":false},\"553\":{\"id\":\"589\",\"title\":\"Projects Modal 2\",\"alias\":\"projects-modal-2\",\"zip\":\"packs\\/projects-modal-2.zip\",\"uid\":\"ac164d7043a8958ae2931e4be54bf56e\",\"img\":\"projects-modal-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v2\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:38:22\",\"package\":\"Smart Living One Pager V2\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"49\",\"installed\":false},\"554\":{\"id\":\"590\",\"title\":\"Menu 3\",\"alias\":\"menu-3\",\"zip\":\"packs\\/menu-3.zip\",\"uid\":\"7300529d564642c76e61890cf0ef57cf\",\"img\":\"menu-3\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v3\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:42:03\",\"package\":\"Smart Living One Pager V3\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"50\",\"installed\":false},\"555\":{\"id\":\"591\",\"title\":\"Hero 3\",\"alias\":\"hero-3\",\"zip\":\"packs\\/hero-3.zip\",\"uid\":\"08db05794abf4e6c10788cbd423f92b2\",\"img\":\"hero-3\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v3\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:46:06\",\"package\":\"Smart Living One Pager V3\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"50\",\"installed\":false},\"556\":{\"id\":\"592\",\"title\":\"About 3\",\"alias\":\"about-3\",\"zip\":\"packs\\/about-3.zip\",\"uid\":\"dac01fc9b9d664f271e1ea6a1bbb850c\",\"img\":\"about-3\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v3\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:47:44\",\"package\":\"Smart Living One Pager V3\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"50\",\"installed\":false},\"557\":{\"id\":\"593\",\"title\":\"Services 3\",\"alias\":\"services-3\",\"zip\":\"packs\\/services-3.zip\",\"uid\":\"4bad1c4a765cef7d93d3c7e2a0e76b83\",\"img\":\"services-3\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v3\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:50:03\",\"package\":\"Smart Living One Pager V3\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"50\",\"installed\":false},\"558\":{\"id\":\"594\",\"title\":\"Projects 3\",\"alias\":\"projects-3\",\"zip\":\"packs\\/projects-3.zip\",\"uid\":\"e3337a84122e580679474dea8d7bf37c\",\"img\":\"projects-3\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v3\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:51:31\",\"package\":\"Smart Living One Pager V3\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"50\",\"installed\":false},\"559\":{\"id\":\"595\",\"title\":\"Footer 3\",\"alias\":\"footer-3\",\"zip\":\"packs\\/footer-3.zip\",\"uid\":\"524f4445a5565bf3ef1dcd7b2f0228cc\",\"img\":\"footer-3\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v3\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:53:03\",\"package\":\"Smart Living One Pager V3\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"50\",\"installed\":false},\"560\":{\"id\":\"596\",\"title\":\"Explainer Block 3 Part 1\",\"alias\":\"explainer-block-3-part1\",\"zip\":\"packs\\/explainer-block-3-part1.zip\",\"uid\":\"b1469a955fecb4e1d645a604804716de\",\"img\":\"explainer-block-3-part1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v3\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:54:20\",\"package\":\"Smart Living One Pager V3\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"50\",\"installed\":false},\"561\":{\"id\":\"597\",\"title\":\"Explainer Block 3 Part 2\",\"alias\":\"explainer-block-3-part2\",\"zip\":\"packs\\/explainer-block-3-part2.zip\",\"uid\":\"3faa6f1dc248ef2ba3d50cc60db557b1\",\"img\":\"explainer-block-3-part2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v3\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:55:33\",\"package\":\"Smart Living One Pager V3\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"50\",\"installed\":false},\"562\":{\"id\":\"598\",\"title\":\"Projects Modal 3\",\"alias\":\"projects-modal-3\",\"zip\":\"packs\\/projects-modal-3.zip\",\"uid\":\"b22bb57c30e75bf7d7ba7d240a21b3fe\",\"img\":\"projects-modal-3\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/smart-living-one-page-template-for-wordpress-v3\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Never build a one pager from scratch again!
\\r\\nSlider Revolution for WordPress is a modular, fully visual content builder, that allows you to create pro-level one-pagers like this one in no time.
\\r\\n20 different \\\"Smart Living\\\" modules are included and come in 3 example page setups!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2021-09-07 15:57:05\",\"package\":\"Smart Living One Pager V3\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"50\",\"installed\":false},\"563\":{\"id\":\"599\",\"title\":\"Urban Street Skate Slider\",\"alias\":\"urban-street-skate-slider\",\"zip\":\"urban-street-skate-slider.zip\",\"uid\":\"14b18e98ac51aa922a264b74518d6f25\",\"img\":\"urban-street-skate-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.8\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Create catchy presentations with sleek transitions, using this urban-themed slider. A template that\'s perfectly suitable for showcasing products and marketing campaigns!<\\/span><\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-09-14 18:54:30\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"564\":{\"id\":\"600\",\"title\":\"Fast Food Burger Restaurant Slider\",\"alias\":\"yummy-burgers\",\"zip\":\"yummy-burgers.zip\",\"uid\":\"3de3520af809748281f3aaa16d8c2222\",\"img\":\"yummy-burgers\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/fast-food-burger-restaurant-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Make your clients feel hungry with this tasty looking slider, featuring jaw dropping animations and smooth interactions! Easily customizable for showcasing food related products.<\\/span><\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-10-11 12:47:33\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"565\":{\"id\":\"601\",\"title\":\"Tattoo Event Website Template Package\",\"alias\":\"tattoo-event-website-template-package\",\"zip\":\"\",\"uid\":\"tattoo-event-website-template-package\",\"img\":\"packages\\/tattoo_event_website_package.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/tattoo-event-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-10-12 14:37:06\",\"package\":\"Tattoo Event Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"51\",\"installed\":false},\"566\":{\"id\":\"602\",\"title\":\"Tattoo Event Hero Slider\",\"alias\":\"tattoo-event-hero-slider\",\"zip\":\"packs\\/tattoo-event-hero-slider.zip\",\"uid\":\"3a4eb0f2f1de6b9a644d626c4472208b\",\"img\":\"tattoo-event-hero-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/tattoo-event-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-10-13 11:11:21\",\"package\":\"Tattoo Event Website Template\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"51\",\"installed\":false},\"567\":{\"id\":\"603\",\"title\":\"Tattoo Event About\",\"alias\":\"tattoo-event-about\",\"zip\":\"packs\\/tattoo-event-about.zip\",\"uid\":\"ae8aaf2b1aeb84036c35ac3d4a178ed6\",\"img\":\"tattoo-event-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/tattoo-event-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\",\"website\"],\"plugin_require\":null,\"date\":\"2021-10-13 11:14:35\",\"package\":\"Tattoo Event Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"51\",\"installed\":false},\"568\":{\"id\":\"604\",\"title\":\"Tattoo Event Artists\",\"alias\":\"tattoo-event-artists\",\"zip\":\"packs\\/tattoo-event-artists.zip\",\"uid\":\"e11b6508214396963c856afc1b604e58\",\"img\":\"tattoo-event-artists\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/tattoo-event-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.<\\/span><\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"carousel\",\"slider\",\"website\"],\"plugin_require\":null,\"date\":\"2021-10-13 11:16:36\",\"package\":\"Tattoo Event Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"51\",\"installed\":false},\"569\":{\"id\":\"605\",\"title\":\"Tattoo Event Schedule\",\"alias\":\"tattoo-event-schedule\",\"zip\":\"packs\\/tattoo-event-schedule.zip\",\"uid\":\"73be4b953a719fc9abfadc447e88b906\",\"img\":\"tattoo-event-schedule\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/tattoo-event-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-10-13 11:19:17\",\"package\":\"Tattoo Event Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"51\",\"installed\":false},\"570\":{\"id\":\"606\",\"title\":\"Tattoo Event News\",\"alias\":\"tattoo-event-news\",\"zip\":\"packs\\/tattoo-event-news.zip\",\"uid\":\"80eafaaaa2f1844cac7c5c1efb0912d1\",\"img\":\"tattoo-event-news\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/tattoo-event-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-10-13 11:21:56\",\"package\":\"Tattoo Event Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"51\",\"installed\":false},\"571\":{\"id\":\"607\",\"title\":\"Tattoo Event Footer\",\"alias\":\"tattoo-event-footer\",\"zip\":\"packs\\/tattoo-event-footer.zip\",\"uid\":\"0c16f7290794f2e26566c8a8ca8f6493\",\"img\":\"tattoo-event-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/tattoo-event-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"This modern, typography driven, one-page website template is the perfect event landing page. Whether you are looking for a wordpress event website template or a conference website template, Slider Revolution gives you a competitive advantage in event website design.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-10-13 11:23:18\",\"package\":\"Tattoo Event Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"51\",\"installed\":false},\"572\":{\"id\":\"608\",\"title\":\"Startup Website Template\",\"alias\":\"startup-website-template\",\"zip\":\"\",\"uid\":\"startup-website-template\",\"img\":\"packages\\/startup-website-template.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.
\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-polyfold-addon\\\\\\/revslider-polyfold-addon.php\\\",\\\"name\\\":\\\"Polyfold Scroll Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-11-03 09:29:34\",\"package\":\"Startup Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"573\":{\"id\":\"609\",\"title\":\"Startup Menu\",\"alias\":\"startup-menu\",\"zip\":\"packs\\/startup-menu.zip\",\"uid\":\"10b7853c05d47a99e61a68ec7ef0a0ea\",\"img\":\"startup-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.
\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-11-03 09:32:41\",\"package\":\"Startup Website Template\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"574\":{\"id\":\"610\",\"title\":\"Startup Hero\",\"alias\":\"startup-hero\",\"zip\":\"packs\\/startup-hero.zip\",\"uid\":\"7a41e68bac8bc7f937b7eb957e01eb11\",\"img\":\"startup-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.
\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-polyfold-addon\\\\\\/revslider-polyfold-addon.php\\\",\\\"name\\\":\\\"Polyfold Scroll Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-11-03 09:34:41\",\"package\":\"Startup Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"zindex=\\\"300\\\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"575\":{\"id\":\"611\",\"title\":\"Startup About\",\"alias\":\"startup-about\",\"zip\":\"packs\\/startup-about.zip\",\"uid\":\"22a816ba986476a36fef3887ff4d1ea1\",\"img\":\"startup-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.
\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-polyfold-addon\\\\\\/revslider-polyfold-addon.php\\\",\\\"name\\\":\\\"Polyfold Scroll Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-11-03 09:36:55\",\"package\":\"Startup Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"zindex=\\\"0\\\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"576\":{\"id\":\"612\",\"title\":\"Startup Features 1\",\"alias\":\"startup-features-1\",\"zip\":\"packs\\/startup-features-1.zip\",\"uid\":\"4b0b7b8773ba30bdc58b862442155faa\",\"img\":\"startup-features-1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.
\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-polyfold-addon\\\\\\/revslider-polyfold-addon.php\\\",\\\"name\\\":\\\"Polyfold Scroll Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-11-03 09:39:11\",\"package\":\"Startup Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"zindex=\\\"300\\\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"577\":{\"id\":\"613\",\"title\":\"Startup Features 2\",\"alias\":\"startup-features-2\",\"zip\":\"packs\\/startup-features-2.zip\",\"uid\":\"7a686556ca8c4355fea931b3e946a3d0\",\"img\":\"startup-features-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.
\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-polyfold-addon\\\\\\/revslider-polyfold-addon.php\\\",\\\"name\\\":\\\"Polyfold Scroll Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-11-03 09:40:44\",\"package\":\"Startup Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"zindex=\\\"0\\\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"578\":{\"id\":\"614\",\"title\":\"Startup Team\",\"alias\":\"startup-team\",\"zip\":\"packs\\/startup-team.zip\",\"uid\":\"7969f1f556fd276ec04dcbf49144d2f8\",\"img\":\"startup-team\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.
\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-polyfold-addon\\\\\\/revslider-polyfold-addon.php\\\",\\\"name\\\":\\\"Polyfold Scroll Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-11-03 09:42:12\",\"package\":\"Startup Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"579\":{\"id\":\"615\",\"title\":\"Startup Reviews\",\"alias\":\"startup-reviews\",\"zip\":\"packs\\/startup-reviews.zip\",\"uid\":\"4d5253028165c237cda5f42c3f721c09\",\"img\":\"startup-reviews\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.
\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-polyfold-addon\\\\\\/revslider-polyfold-addon.php\\\",\\\"name\\\":\\\"Polyfold Scroll Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-11-03 09:43:42\",\"package\":\"Startup Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"zindex=\\\"300\\\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"580\":{\"id\":\"616\",\"title\":\"Startup CTA\",\"alias\":\"startup-cta\",\"zip\":\"packs\\/startup-cta.zip\",\"uid\":\"bfe7cb2a94dd8292179e16a986cf2748\",\"img\":\"startup-cta\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.
\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-polyfold-addon\\\\\\/revslider-polyfold-addon.php\\\",\\\"name\\\":\\\"Polyfold Scroll Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-11-03 09:45:02\",\"package\":\"Startup Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"581\":{\"id\":\"617\",\"title\":\"Startup Footer\",\"alias\":\"startup-footer\",\"zip\":\"packs\\/startup-footer.zip\",\"uid\":\"d73466042d108699d366bf9cab2beaa8\",\"img\":\"startup-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.
\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-11-03 09:46:31\",\"package\":\"Startup Website Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"582\":{\"id\":\"618\",\"title\":\"Startup Video Modal\",\"alias\":\"startup-video-modal\",\"zip\":\"packs\\/startup-video-modal.zip\",\"uid\":\"5fd53a8ad93456a152c25079f6437377\",\"img\":\"startup-video-modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/startup-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.9\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Launch your startup landing page in no time, with this colourful startup company website template, featuring a fresh, easy-to-read design and subtle animation effects.
\\r\\nWith the YouTube video modal and universally usable content blocks, this template can also be used as a company website template or a business portfolio template.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2021-11-03 09:47:44\",\"package\":\"Startup Website Template\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"52\",\"installed\":false},\"583\":{\"id\":\"619\",\"title\":\"Christmas Gift Card Landing Page\",\"alias\":\"christmas-gift-card-landing-page\",\"zip\":\"\",\"uid\":\"christmas-gift-card-landing-page\",\"img\":\"packages\\/christmas-gift-card-landing-page.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/christmas-gift-card-landing-page\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.11\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\",\"specialfx\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-snow-addon\\\\\\/revslider-snow-addon.php\\\",\\\"name\\\":\\\"Snow AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-12-08 12:05:33\",\"package\":\"Christmas Gift Card Landing Page\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"53\",\"installed\":false},\"584\":{\"id\":\"620\",\"title\":\"Christmas Landing Page 1\",\"alias\":\"christmas-landing-page-1\",\"zip\":\"packs\\/christmas-landing-page-1.zip\",\"uid\":\"17eb656138d076ca1dc2d9fa5cefb1b8\",\"img\":\"christmas-gift-card-landing-page\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/christmas-gift-card-landing-page\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.11\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\",\"specialfx\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-snow-addon\\\\\\/revslider-snow-addon.php\\\",\\\"name\\\":\\\"Snow AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-particles-addon\\\\\\/revslider-particles-addon.php\\\",\\\"name\\\":\\\"Particles Effect AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-12-08 12:08:37\",\"package\":\"Christmas Gift Card Landing Page\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"53\",\"installed\":false},\"585\":{\"id\":\"621\",\"title\":\"Christmas Landing Page 2\",\"alias\":\"christmas-landing-page-2\",\"zip\":\"packs\\/christmas-landing-page-2.zip\",\"uid\":\"ea0d2cfdba50c8060c66ee7b979c3b83\",\"img\":\"christmas-landing-page-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/christmas-gift-card-landing-page\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.11\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Greet and thank your visitors in a creative way during the Christmas Holidays with this dynamic, two-part Christmas gift card landing page. Ideal for e-commerce websites that want to give special discounts during the holidays. The first module can also be used on it\'s own to bring xmas vibes to any website!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\",\"specialfx\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-snow-addon\\\\\\/revslider-snow-addon.php\\\",\\\"name\\\":\\\"Snow AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2021-12-08 12:10:54\",\"package\":\"Christmas Gift Card Landing Page\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"53\",\"installed\":false},\"586\":{\"id\":\"622\",\"title\":\"Image Slider\",\"alias\":\"image-slider\",\"zip\":\"image-slider.zip\",\"uid\":\"85a8fcfa9220809176bd3d6bc70b4abf\",\"img\":\"image-slider\\/slide-1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/newborn-image-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.12\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Get an instant \\\"wow\\\" from your visitors with this sleek background image slider, that includes a clean UI for easy navigation and smooth transitions.<\\/span><\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-01-04 09:45:41\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"587\":{\"id\":\"294\",\"title\":\"Minimal Portfolio Website\",\"alias\":\"minimal-portfolio-website\",\"zip\":\"\",\"uid\":\"minimal-portfolio-website\",\"img\":\"packages\\/minimal_portfolio_package.jpg\",\"preview\":\"https:\\/\\/revolution.themepunch.com\\/minimal-portfolio-website-template\\/\",\"version\":\"1.0.2\",\"required\":\"6.0.0\",\"width\":\"1024\",\"height\":\"768\",\"description\":\"The Minimal Portfolio template is a slide based website with additional modal detail pages.<\\/span>\\r\\n<\\/span>\",\"setup_notes\":\"If you want to setup the full website example as seen in the preview, please follow the
Content Blocks instructions here<\\/a>.

\\r\\nCheckout our
Documentation<\\/a> for basic Slider Revolution help.<\\/span>\",\"cat\":\"Premium\",\"filter\":[\"website\"],\"plugin_require\":null,\"date\":\"0000-00-00 00:00:00\",\"package\":\"Minimal Portfolio\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"19\",\"installed\":false},\"588\":{\"id\":\"623\",\"title\":\"Full Width Slider\",\"alias\":\"full-width-slider\",\"zip\":\"full-width-slider.zip\",\"uid\":\"e2792804e7a1f3ec9806f6a6225a559d\",\"img\":\"full-width-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/delicious-full-width-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"We\'ve prepared something tasty for you. A delicious looking, responsive full width slider, with a wide range of use cases and a plethora of smart, UI navigation options.<\\/span><\\/span>\",\"cat\":\"Revolution Base\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-01-10 11:40:04\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"589\":{\"id\":\"624\",\"title\":\"App Website Template\",\"alias\":\"app-website-template\",\"zip\":\"\",\"uid\":\"app-website-template\",\"img\":\"packages\\/app-website-template.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-01-17 10:22:53\",\"package\":\"App Website Template\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"590\":{\"id\":\"625\",\"title\":\"App Website Menu\",\"alias\":\"app-website-menu\",\"zip\":\"packs\\/app-website-menu.zip\",\"uid\":\"c3c100db368c091d01852df9851b9840\",\"img\":\"app-website-menu\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.1\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-01-17 10:26:14\",\"package\":\"App Website Template\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"591\":{\"id\":\"626\",\"title\":\"App Website Hero\",\"alias\":\"app-website-hero\",\"zip\":\"packs\\/app-website-hero.zip\",\"uid\":\"4b42974b08f2923986932ed529974d6f\",\"img\":\"app-website-hero\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-01-17 10:29:00\",\"package\":\"App Website Template\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\" zindex=\\\"300\\\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"592\":{\"id\":\"627\",\"title\":\"App Download Buttons\",\"alias\":\"app-download-buttons\",\"zip\":\"packs\\/app-download-buttons.zip\",\"uid\":\"d5ecce65284cc95c506185e6f6291d55\",\"img\":\"app-download-buttons\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2022-01-17 10:31:22\",\"package\":\"App Website Template\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"593\":{\"id\":\"628\",\"title\":\"App Website About\",\"alias\":\"app-website-about\",\"zip\":\"packs\\/app-website-about.zip\",\"uid\":\"984477b3ea7c943a7c6be78950754e3c\",\"img\":\"app-website-about\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2022-01-17 10:33:06\",\"package\":\"App Website Template\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"594\":{\"id\":\"629\",\"title\":\"App Website Features\",\"alias\":\"app-website-features\",\"zip\":\"packs\\/app-website-features.zip\",\"uid\":\"206a0f73553c974ad86790fba6a13efd\",\"img\":\"app-website-features\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2022-01-17 10:35:08\",\"package\":\"App Website Template\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"595\":{\"id\":\"630\",\"title\":\"App Website Video Cta\",\"alias\":\"app-website-video-cta\",\"zip\":\"packs\\/app-website-video-cta.zip\",\"uid\":\"19b2930f9cd9840dccbe94cb1cc435e2\",\"img\":\"app-website-video-cta\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-01-17 10:36:15\",\"package\":\"App Website Template\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"596\":{\"id\":\"631\",\"title\":\"App Website Screenshots\",\"alias\":\"app-website-screenshots\",\"zip\":\"packs\\/app-website-screenshots.zip\",\"uid\":\"94ce8eeecb7ffad62adc2d29b203f9d2\",\"img\":\"app-website-screenshots\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2022-01-17 10:38:15\",\"package\":\"App Website Template\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"597\":{\"id\":\"632\",\"title\":\"App Testimonials Title\",\"alias\":\"app-testimonials-title\",\"zip\":\"packs\\/app-testimonials-title.zip\",\"uid\":\"bea74fa6e180fe23007c3d215b1b0704\",\"img\":\"app-testimonials-title\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-01-17 10:40:21\",\"package\":\"App Website Template\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"598\":{\"id\":\"633\",\"title\":\"App Website Testimonials\",\"alias\":\"app-website-testimonials\",\"zip\":\"packs\\/app-website-testimonials.zip\",\"uid\":\"e7438a870ac1007da4c7821056d511fc\",\"img\":\"app-website-testimonials\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2022-01-17 10:41:59\",\"package\":\"App Website Template\",\"package_order\":\"8\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\" offset=\\\"t:-300px,-300px,-300px,-250px;b:0px,0px,0px,0px;l:0px,0px,0px,0px;r:0px,0px,0px,0px;\\\" zindex=\\\"300\\\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"599\":{\"id\":\"634\",\"title\":\"App Website Team\",\"alias\":\"app-website-team\",\"zip\":\"packs\\/app-website-team.zip\",\"uid\":\"d9013f2968e43f696f8cc33fa3524071\",\"img\":\"app-website-team\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2022-01-17 10:43:40\",\"package\":\"App Website Template\",\"package_order\":\"9\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\" offset=\\\"t:-350px,-350px,-350px,-300px;b:0px,0px,0px,0px;l:0px,0px,0px,0px;r:0px,0px,0px,0px;\\\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"600\":{\"id\":\"635\",\"title\":\"App Website Footer\",\"alias\":\"app-website-footer\",\"zip\":\"packs\\/app-website-footer.zip\",\"uid\":\"5e13126b929feb389f9e083f3476ec46\",\"img\":\"app-website-footer\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-01-17 10:45:12\",\"package\":\"App Website Template\",\"package_order\":\"10\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"601\":{\"id\":\"636\",\"title\":\"App Video Modal\",\"alias\":\"app-video-modal\",\"zip\":\"packs\\/app-video-modal.zip\",\"uid\":\"7fe8115d0b6158c90fe92d1144ed7b01\",\"img\":\"app-video-modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/spaceman-app-website-template\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.14\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"From a stunning feature carousel, to a screenshot gallery and testimonial slider, this mobile app website template has got it all!<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"hero\"],\"plugin_require\":null,\"date\":\"2022-01-17 10:46:49\",\"package\":\"App Website Template\",\"package_order\":\"11\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"54\",\"installed\":false},\"602\":{\"id\":\"637\",\"title\":\"Testimonial Carousel Pack\",\"alias\":\"testimonial-carousel-pack\",\"zip\":\"\",\"uid\":\"testimonial-carousel-pack\",\"img\":\"packages\\/testimonial-carousel-pack.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/testimonial-carousel-collection\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.15\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"An elegant slider for your website. Flexible and customizable.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2022-01-31 16:38:17\",\"package\":\"Testimonial Carousel Pack\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"55\",\"installed\":false},\"603\":{\"id\":\"638\",\"title\":\"Testimonial Carousel 1\",\"alias\":\"testimonial-carousel-1\",\"zip\":\"packs\\/testimonial-carousel-1.zip\",\"uid\":\"1cc1f92edb4edd47f880c0b4f77e343d\",\"img\":\"testimonial-carousel-1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/testimonial-carousel-collection\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.15\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Want to show testimonials on your website ? We got you covered. Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2022-01-31 16:41:02\",\"package\":\"Testimonial Carousel Pack\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"55\",\"installed\":false},\"604\":{\"id\":\"639\",\"title\":\"Testimonial Carousel 2\",\"alias\":\"testimonial-carousel-2\",\"zip\":\"packs\\/testimonial-carousel-2.zip\",\"uid\":\"b6ad1675b8d14c0ccc63ffc01b221aac\",\"img\":\"testimonial-carousel-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/testimonial-carousel-collection\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.15\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Want to show testimonials on your website ? We got you covered. Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2022-01-31 16:43:25\",\"package\":\"Testimonial Carousel Pack\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"55\",\"installed\":false},\"605\":{\"id\":\"640\",\"title\":\"Testimonial Carousel 3\",\"alias\":\"testimonial-carousel-3\",\"zip\":\"packs\\/testimonial-carousel-3.zip\",\"uid\":\"cb4a72fb40fc400a71754f71b9bb2d6e\",\"img\":\"testimonial-carousel-3\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/testimonial-carousel-collection\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.15\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Want to show testimonials on your website ? We got you covered. Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2022-01-31 16:46:01\",\"package\":\"Testimonial Carousel Pack\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"55\",\"installed\":false},\"606\":{\"id\":\"641\",\"title\":\"Testimonial Carousel 4\",\"alias\":\"testimonial-carousel-4\",\"zip\":\"packs\\/testimonial-carousel-4.zip\",\"uid\":\"bfca98d6b4042b38df044e9e2a6ca983\",\"img\":\"testimonial-carousel-4\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/testimonial-carousel-collection\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.15\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Want to show testimonials on your website ? We got you covered. Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2022-01-31 16:47:57\",\"package\":\"Testimonial Carousel Pack\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"55\",\"installed\":false},\"607\":{\"id\":\"642\",\"title\":\"Testimonial Carousel 5\",\"alias\":\"testimonial-carousel-5\",\"zip\":\"packs\\/testimonial-carousel-5.zip\",\"uid\":\"4a9b9c72b51628e1343adde9bff3915f\",\"img\":\"testimonial-carousel-5\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/testimonial-carousel-collection\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.15\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Want to show testimonials on your website ? We got you covered. Our testimonial carousel pack has 5 options to choose from with colours you can easily customise.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\"],\"plugin_require\":null,\"date\":\"2022-01-31 16:49:27\",\"package\":\"Testimonial Carousel Pack\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"55\",\"installed\":false},\"608\":{\"id\":\"643\",\"title\":\"Deep Dive Ocean Water Effect\",\"alias\":\"deep-dive\",\"zip\":\"deep-dive.zip\",\"uid\":\"5cc0599857b0108fe4e76adc7fbf9a16\",\"img\":\"deep-dive\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/deep-dive-ocean-water-effect\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.15\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Take a dive into the ocean with this 3D Particles Animation template for Slider Revolution.
\\r\\nThe scroll-based interaction makes this hero module an absolute eye-catcher for any ocean-related website.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"specialfx\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-02-09 09:23:47\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"609\":{\"id\":\"644\",\"title\":\"Particle Wave Showcase\",\"alias\":\"particle-wave-showcase\",\"zip\":\"particle-wave-showcase.zip\",\"uid\":\"1c9ac477fd636078d1812d8d98060899\",\"img\":\"particle-wave-showcase\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/particle-wave-showcase\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.15\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Is your website missing that one unique design element to set it apart from your competition? The Particle Wave addon for Slider Revolution enables you to add interactive, 3D particles background animation effects that will amaze your clients!<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\",\"specialfx\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-02-09 09:30:08\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"610\":{\"id\":\"645\",\"title\":\"Video Hero Header\",\"alias\":\"video-hero-header\",\"zip\":\"video-hero-header.zip\",\"uid\":\"f6a715d4b10e0746f7eb5100836ba1ab\",\"img\":\"video-hero-header\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/video-hero-header\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.15\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Get ahead with this modern, futuristic video hero header with colorful gradients and a polygon particle wave.
\\r\\nShowcase the highlights of your tech-related business website with a video button that demands to be clicked.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"hero\",\"specialfx\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-02-09 09:33:10\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"611\":{\"id\":\"646\",\"title\":\"Solar System Showcase Slider\",\"alias\":\"solar-system-showcase-slider\",\"zip\":\"solar-system-showcase-slider.zip\",\"uid\":\"40f7b26ea7f8228d40e8e9cf0f34b5e8\",\"img\":\"solar-system-showcase-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/solar-system-showcase-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.15\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Want to amaze your users ? Look no further. Showcase products, images or anything you can think of with this highly capable and easily customisable full screen slider. <\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-02-09 09:50:27\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"612\":{\"id\":\"647\",\"title\":\"Optic Shop Showcase Slider\",\"alias\":\"Optic-shop-showcase-slider\",\"zip\":\"Optic-shop-showcase-slider.zip\",\"uid\":\"01509228c996ad45c2179d03654f499b\",\"img\":\"Optic-shop-showcase-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/optic-shop-showcase-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.16\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"This image slider is the perfect showcase for any optic shop, utilizing the blur effect in a brilliant way. It\'s not just made for your optic showcase but also a great fit for any modern product presentation.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":null,\"date\":\"2022-02-16 16:41:07\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"613\":{\"id\":\"648\",\"title\":\"WordPress Charts And Graphs\",\"alias\":\"charts-template-showcase\",\"zip\":\"charts-template-showcase.zip\",\"uid\":\"4ae2fe61830f96c6c5b316368c1ad2c6\",\"img\":\"charts-template-showcase\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/wordpress-charts-and-graphs\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.17\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Who says data has to look boring? With our WordPress charts addon, you can create eye-catching sliders and hero sections with interactive and stunning-looking charts.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-charts-addon\\\\\\/revslider-charts-addon.php\\\",\\\"name\\\":\\\"Charts AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-03-03 15:55:16\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"614\":{\"id\":\"649\",\"title\":\"Fashion Website Slider Template\",\"alias\":\"fashion-website-slider-template\",\"zip\":\"\",\"uid\":\"fashion-website-slider-template\",\"img\":\"packages\\/fashion-website-slider.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/fashion-website-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.19\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"A fashion slider that\'s not just for fashion! This template is suitable for any image-based marketing campaign and also comes with a fullscreen gallery carousel modal to show more images.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\",\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-03-14 13:00:36\",\"package\":\"Fashion Website Slider\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"56\",\"installed\":false},\"615\":{\"id\":\"650\",\"title\":\"Fashion Website Slider\",\"alias\":\"fashion-website-slider\",\"zip\":\"packs\\/fashion-website-slider.zip\",\"uid\":\"8fb8379f47346173fa0dd402dda37360\",\"img\":\"fashion-website-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/fashion-website-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.19\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"A fashion slider that\'s not just for fashion! This template is suitable for any image-based marketing campaign and also comes with a fullscreen gallery carousel modal to show more images.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\",\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-03-14 13:04:56\",\"package\":\"Fashion Website Slider\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"56\",\"installed\":false},\"616\":{\"id\":\"651\",\"title\":\"Fashion Website Slider Modal\",\"alias\":\"fashion-website-slider-modal\",\"zip\":\"packs\\/fashion-website-slider-modal.zip\",\"uid\":\"788f34043b6a5fcbfa5fc1c3322fb502\",\"img\":\"fashion-website-slider-modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/fashion-website-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.19\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"A fashion slider that\'s not just for fashion! This template is suitable for any image-based marketing campaign and also comes with a fullscreen gallery carousel modal to show more images.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"carousel\",\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-03-14 13:08:21\",\"package\":\"Fashion Website Slider\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"56\",\"installed\":false},\"617\":{\"id\":\"652\",\"title\":\"Furniture Website Slider\",\"alias\":\"furniture-website-slider\",\"zip\":\"furniture-website-slider.zip\",\"uid\":\"8575493ed5fd1ee2e671e67479fdeccb\",\"img\":\"furniture-website-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/furniture-website-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.19\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Promote products or create stunning landing pages with the Furniture Website Slider. Each slide comes with a different layout that can be used as a hero module or on an individual section on your website.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-03-23 14:05:44\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"618\":{\"id\":\"653\",\"title\":\"Fitness Gym Website Slider\",\"alias\":\"fitness-gym-website-slider\",\"zip\":\"fitness-gym-website-slider.zip\",\"uid\":\"86894d98e34a590e80a1d0cd3d7dc819\",\"img\":\"fitness-gym-website-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/fitness-gym-website-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.20\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Make your website visitors want to hit the gym once they see this fitness website slider. The background videos and unique, masked slide transitions make this module stand out!<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":null,\"date\":\"2022-04-19 11:02:01\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"619\":{\"id\":\"654\",\"title\":\"Ai & Robotics Webside Slider Package\",\"alias\":\"ai--robotics-webside-slider-package\",\"zip\":\"\",\"uid\":\"ai--robotics-webside-slider-package\",\"img\":\"packages\\/ai-and-robotics-website-slider-package.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/ai-and-robotics-website-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.20\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"Have a glimpse of the future of robots and artificial intelligence. A vivid-looking slider, perfect for tech companies and startups.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-04-19 15:12:25\",\"package\":\"Ai & Robotics Webside Slider Package\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"57\",\"installed\":false},\"620\":{\"id\":\"655\",\"title\":\"Ai & Robotics Website Slider\",\"alias\":\"ai-and-robotics-website-slider\",\"zip\":\"packs\\/ai-and-robotics-website-slider.zip\",\"uid\":\"e40b7296d1519972029e9744a0c09b29\",\"img\":\"ai-and-robotics-website-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/ai-and-robotics-website-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.20\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Have a glimpse of the future of robots and artificial intelligence. A vivid-looking slider, perfect for tech companies and startups.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-04-19 15:16:48\",\"package\":\"Ai & Robotics Webside Slider Package\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"57\",\"installed\":false},\"621\":{\"id\":\"656\",\"title\":\"AI Video Modal\",\"alias\":\"ai-video-modal\",\"zip\":\"packs\\/ai-video-modal.zip\",\"uid\":\"aab36a599413b7e66dfdda8f517b47b1\",\"img\":\"ai-video-modal\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/ai-and-robotics-website-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.20\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Have a glimpse of the future of robots and artificial intelligence. A vivid-looking slider, perfect for tech companies and startups.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-04-19 15:20:55\",\"package\":\"Ai & Robotics Webside Slider Package\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"57\",\"installed\":false},\"622\":{\"id\":\"657\",\"title\":\"Minimal Typography Website Slider\",\"alias\":\"minimal-typography-website-slider\",\"zip\":\"minimal-typography-website-slider.zip\",\"uid\":\"43cf63d6541d33b7d4e59350935d73bf\",\"img\":\"minimal-typography-website-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/minimal-typography-website-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.5.20\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Make the hero section on your website stand out with this minimal, typography-based hero slider, featuring cool parallax bubble effects and fluid slide transitions.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\",\"specialfx\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-04-25 14:39:36\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false,\"is_new\":true},\"623\":{\"id\":\"658\",\"title\":\"404 Page Collection\",\"alias\":\"404-page-collection\",\"zip\":\"404-page-collection.zip\",\"uid\":\"3f0b25b5e893b170536a498939465a1a\",\"img\":\"404-page-collection\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/404-page-collection\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.21\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Show your lost website visitors a funny and lighthearted message with our 404 page template collection.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":null,\"date\":\"2022-05-04 11:30:30\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"624\":{\"id\":\"659\",\"title\":\"eCommerce Product Slider\",\"alias\":\"ecommerce-sale-slider\",\"zip\":\"ecommerce-sale-slider.zip\",\"uid\":\"49ca4743090cddca705ee108eae967c5\",\"img\":\"ecommerce-sale-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/ecommerce-product-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.22\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"So you have an eCommerce shop and are looking for the ultimate sales pitch on your landing page? Trying to convert your precious visitors into more sales? Look no further than our eCommerce Product Slider!<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":null,\"date\":\"2022-05-17 14:22:52\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"625\":{\"id\":\"660\",\"title\":\"Fashion Shop Slider\",\"alias\":\"fashion-shop-slider\",\"zip\":\"fashion-shop-slider.zip\",\"uid\":\"e488e9126dbe4a34c02c89a1115f4ff9\",\"img\":\"fashion-shop-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/fashion-shop-slider\\/\",\"version\":\"1.0.0\",\"required\":\"6.5.22\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"Customize texts, images, and colors in seconds and have this beast of a shop slider running on your own website in no time.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-05-18 13:24:56\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"626\":{\"id\":\"661\",\"title\":\"Lingerie Store Website Slider\",\"alias\":\"lingerie-store-website-slider\",\"zip\":\"lingerie-store-website-slider.zip\",\"uid\":\"7bdad27521b7c9b171b618dff2fa0315\",\"img\":\"lingerie-store-website-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/lingerie-store-website-slider\\/\",\"version\":\"1.0.1\",\"required\":\"6.5.22\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"This hero slider also includes optional menu navigation and links, in case you want to use it as a standalone landing page.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-05-18 13:28:21\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false,\"is_new\":true},\"627\":{\"id\":\"662\",\"title\":\"Beach Events Hero Collection\",\"alias\":\"beach-events-hero-collection\",\"zip\":\"beach-events-hero-collection.zip\",\"uid\":\"cf87cd65572e9bc4ee019cceae1c75f8\",\"img\":\"beach-events-hero-collection\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/summer-beach-events-hero-collection\",\"version\":\"1.0.0\",\"required\":\"6.5.25\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"These hero image templates offer a high-octane mix of headlines, images, and special effects.<\\/span><\\/span>\",\"cat\":\"Premium\",\"filter\":[\"slider\",\"hero\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-transitionpack-addon\\\\\\/revslider-transitionpack-addon.php\\\",\\\"name\\\":\\\"Advanced Transitions\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-07-18 16:56:11\",\"package_order\":\"0\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"installed\":false},\"628\":{\"id\":\"663\",\"title\":\"Creative Portfolio Website Slider Package\",\"alias\":\"creative-portfolio-website-slider-package\",\"zip\":\"\",\"uid\":\"creative-portfolio-website-slider-package\",\"img\":\"packages\\/creative-portfolio-website-slider-package.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/creative-portfolio-website-slider\",\"version\":\"1.0.0\",\"required\":\"6.5.25\",\"width\":\"1240\",\"height\":\"800\",\"description\":\"This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-07-18 17:00:43\",\"package\":\"Creative Portfolio Website Slider Package\",\"package_order\":\"0\",\"package_parent\":\"true\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"58\",\"installed\":false},\"629\":{\"id\":\"664\",\"title\":\"Creative Portfolio Main Slider\",\"alias\":\"creative-portfolio-main-slider\",\"zip\":\"packs\\/creative-portfolio-main-slider.zip\",\"uid\":\"2b01de6e46611e4353f1687609aa6783\",\"img\":\"creative-portfolio-main-slider\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/creative-portfolio-website-slider\",\"version\":\"1.0.0\",\"required\":\"6.5.25\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-07-18 17:03:03\",\"package\":\"Creative Portfolio Website Slider Package\",\"package_order\":\"0\",\"package_parent\":\"\",\"modal\":\"0\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"58\",\"installed\":false},\"630\":{\"id\":\"665\",\"title\":\"Creative Portfolio Project 1\",\"alias\":\"creative-portfolio-project-1\",\"zip\":\"packs\\/creative-portfolio-project-1.zip\",\"uid\":\"f1e3a170d3f06d7162445fe9cce99335\",\"img\":\"creative-portfolio-project-1\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/creative-portfolio-website-slider\",\"version\":\"1.0.0\",\"required\":\"6.5.25\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-07-18 17:07:45\",\"package\":\"Creative Portfolio Website Slider Package\",\"package_order\":\"1\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"58\",\"installed\":false},\"631\":{\"id\":\"666\",\"title\":\"Creative Portfolio Project 2\",\"alias\":\"creative-portfolio-project-2\",\"zip\":\"packs\\/creative-portfolio-project-2.zip\",\"uid\":\"59369faef5b4a0571cd5fd72432d2d20\",\"img\":\"creative-portfolio-project-2\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/creative-portfolio-website-slider\",\"version\":\"1.0.0\",\"required\":\"6.5.25\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-07-18 17:12:09\",\"package\":\"Creative Portfolio Website Slider Package\",\"package_order\":\"2\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"58\",\"installed\":false},\"632\":{\"id\":\"667\",\"title\":\"Creative Portfolio Project 3\",\"alias\":\"creative-portfolio-project-3\",\"zip\":\"packs\\/creative-portfolio-project-3.zip\",\"uid\":\"ac6823b9ffeba97c56aa6f4593109e5f\",\"img\":\"creative-portfolio-project-3\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/creative-portfolio-website-slider\",\"version\":\"1.0.0\",\"required\":\"6.5.25\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-07-18 17:14:02\",\"package\":\"Creative Portfolio Website Slider Package\",\"package_order\":\"3\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"58\",\"installed\":false},\"633\":{\"id\":\"668\",\"title\":\"Creative Portfolio Project 4\",\"alias\":\"creative-portfolio-project-4\",\"zip\":\"packs\\/creative-portfolio-project-4.zip\",\"uid\":\"31f5cc4c9d13af7b56adfa7b7c84dce9\",\"img\":\"creative-portfolio-project-4\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/creative-portfolio-website-slider\",\"version\":\"1.0.0\",\"required\":\"6.5.25\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-07-18 17:16:40\",\"package\":\"Creative Portfolio Website Slider Package\",\"package_order\":\"4\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"58\",\"installed\":false},\"634\":{\"id\":\"669\",\"title\":\"Creative Portfolio Project 5\",\"alias\":\"creative-portfolio-project-5\",\"zip\":\"packs\\/creative-portfolio-project-5.zip\",\"uid\":\"23c8e18d556da040ef6ac2382d4a7b94\",\"img\":\"creative-portfolio-project-5\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/creative-portfolio-website-slider\",\"version\":\"1.0.0\",\"required\":\"6.5.25\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-07-18 17:20:22\",\"package\":\"Creative Portfolio Website Slider Package\",\"package_order\":\"5\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"58\",\"installed\":false},\"635\":{\"id\":\"670\",\"title\":\"Creative Portfolio Project 6\",\"alias\":\"creative-portfolio-project-6\",\"zip\":\"packs\\/creative-portfolio-project-6.zip\",\"uid\":\"518434a06d7a959bd3f3e0905e252209\",\"img\":\"creative-portfolio-project-6\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/creative-portfolio-website-slider\",\"version\":\"1.0.0\",\"required\":\"6.5.25\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-07-18 17:21:51\",\"package\":\"Creative Portfolio Website Slider Package\",\"package_order\":\"6\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"58\",\"installed\":false},\"636\":{\"id\":\"671\",\"title\":\"Creative Portfolio Project 7\",\"alias\":\"creative-portfolio-project-7\",\"zip\":\"packs\\/creative-portfolio-project-7.zip\",\"uid\":\"bb1552746859766efbe319d7c0a1978e\",\"img\":\"creative-portfolio-project-7\\/slide1.jpg\",\"preview\":\"https:\\/\\/www.sliderrevolution.com\\/templates\\/creative-portfolio-website-slider\",\"version\":\"1.0.0\",\"required\":\"6.5.25\",\"width\":\"1240\",\"height\":\"900\",\"description\":\"This one-page portfolio website template was built to impress. Shine a spotlight on all your work with this striking, interactive design and wow prospective clients the second they step foot inside your site.<\\/span><\\/span>\",\"cat\":\"Slider Package\",\"filter\":[\"slider\",\"hero\",\"website\"],\"plugin_require\":\"[{\\\"path\\\":\\\"revslider-mousetrap-addon\\\\\\/revslider-mousetrap-addon.php\\\",\\\"name\\\":\\\"Mousetrap AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"},{\\\"path\\\":\\\"revslider-particlewave-addon\\\\\\/revslider-particlewave-addon.php\\\",\\\"name\\\":\\\"Particle Wave AddOn\\\",\\\"url\\\":\\\"https:\\\\\\/\\\\\\/www.themepunch.com\\\\\\/slider-revolution\\\\\\/install-addons\\\\\\/\\\"}]\",\"date\":\"2022-07-18 17:24:03\",\"package\":\"Creative Portfolio Website Slider Package\",\"package_order\":\"7\",\"package_parent\":\"\",\"modal\":\"1\",\"additions\":\"\",\"active\":\"1\",\"package_id\":\"58\",\"installed\":false}},\"slides\":{\"classic-carousel\":[{\"title\":\"Slide 1\",\"img\":\"classic-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"classic-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"classic-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"classic-carousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"classic-carousel\\/slide5.jpg\"}],\"classicslider\":[{\"title\":\"Slide 1\",\"img\":\"classicslider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"classicslider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"classicslider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"classicslider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"classicslider\\/slide5.jpg\"}],\"contenttabs\":[{\"title\":\"Slide 1\",\"img\":\"contenttabs\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"contenttabs\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"contenttabs\\/slide3.jpg\"}],\"facebook-feed\":[{\"title\":\"Slide 1\",\"img\":\"facebook-feed\\/slide1.jpg\"}],\"fashion\":[{\"title\":\"Slide 1\",\"img\":\"fashion\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fashion\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"fashion\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"fashion\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"fashion\\/slide5.jpg\"}],\"flickr-gallery\":[{\"title\":\"Slide 1\",\"img\":\"flickr-gallery\\/slide1.jpg\"}],\"gym\":[{\"title\":\"Slide 1\",\"img\":\"gym\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"gym\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"gym\\/slide3.jpg\"}],\"highlight-carousel\":[{\"title\":\"Slide 1\",\"img\":\"highlight-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"highlight-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"highlight-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"highlight-carousel\\/slide4.jpg\"}],\"highlight-showcase\":[{\"title\":\"Slide 1\",\"img\":\"highlight-showcase\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"highlight-showcase\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"highlight-showcase\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"highlight-showcase\\/slide4.jpg\"}],\"image-hero\":[{\"title\":\"Slide 1\",\"img\":\"imagehero\\/slide1.jpg\"}],\"insta-gallery\":[{\"title\":\"Slide 1\",\"img\":\"insta-gallery\\/slide1.jpg\"}],\"levanorestaurantbar\":[{\"title\":\"Slide 1\",\"img\":\"levanorestaurantbar\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"levanorestaurantbar\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"levanorestaurantbar\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"levanorestaurantbar\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"levanorestaurantbar\\/slide5.jpg\"}],\"mainfeature\":[{\"title\":\"Slide 1\",\"img\":\"mainfeature\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"mainfeature\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"mainfeature\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"mainfeature\\/slide4.jpg\"},{\"title\":\"Slide 7\",\"img\":\"mainfeature\\/slide7.jpg\"}],\"media-gallery-two\":[{\"title\":\"Slide 1\",\"img\":\"media-gallery-two\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"media-gallery-two\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"media-gallery-two\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"media-gallery-two\\/slide4.jpg\"},{\"title\":\"Slide 6\",\"img\":\"media-gallery-two\\/slide6.jpg\"}],\"media-carousel-autoplay\":[{\"title\":\"Slide 1\",\"img\":\"media-carousel-autoplay\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"media-carousel-autoplay\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"media-carousel-autoplay\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"media-carousel-autoplay\\/slide4.jpg\"},{\"title\":\"Slide 6\",\"img\":\"media-carousel-autoplay\\/slide6.jpg\"}],\"news-background-video\":[{\"title\":\"Slide 1\",\"img\":\"news-bg-video\\/slide1.jpg\"}],\"news-gallery\":[{\"title\":\"Slide 1\",\"img\":\"news-gallery\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"news-gallery\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"news-gallery\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"news-gallery\\/slide4.jpg\"}],\"news-gallery-post-based\":[{\"title\":\"Slide 1\",\"img\":\"news-gallery-post-based\\/slide1.jpg\"}],\"news-hero\":[{\"title\":\"Slide 1\",\"img\":\"news-hero\\/slide1.jpg\"}],\"news-video\":[{\"title\":\"Slide 1\",\"img\":\"news-video\\/slide1.jpg\"}],\"newsletter-hero\":[{\"title\":\"Slide 1\",\"img\":\"newsletter-hero\\/slide1.jpg\"}],\"notgeneric\":[{\"title\":\"Slide 1\",\"img\":\"notgeneric\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"notgeneric\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"notgeneric\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"notgeneric\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"notgeneric\\/slide5.jpg\"}],\"photography\":[{\"title\":\"Slide 1\",\"img\":\"photography\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"photography\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"photography\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"photography\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"photography\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"photography\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"photography\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"photography\\/slide8.jpg\"},{\"title\":\"Slide 9\",\"img\":\"photography\\/slide9.jpg\"},{\"title\":\"Slide 10\",\"img\":\"photography\\/slide10.jpg\"}],\"photography-carousel\":[{\"title\":\"Slide 1\",\"img\":\"photography-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"photography-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"photography-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"photography-carousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"photography-carousel\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"photography-carousel\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"photography-carousel\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"photography-carousel\\/slide8.jpg\"},{\"title\":\"Slide 9\",\"img\":\"photography-carousel\\/slide9.jpg\"},{\"title\":\"Slide 10\",\"img\":\"photography-carousel\\/slide10.jpg\"}],\"search-form-hero\":[{\"title\":\"Slide 1\",\"img\":\"search-form-hero\\/slide1.jpg\"}],\"showcasecarousel\":[{\"title\":\"Slide 1\",\"img\":\"showcasecarousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"showcasecarousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"showcasecarousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"showcasecarousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"showcasecarousel\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"showcasecarousel\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"showcasecarousel\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"showcasecarousel\\/slide8.jpg\"},{\"title\":\"Slide 9\",\"img\":\"showcasecarousel\\/slide9.jpg\"}],\"sports-hero\":[{\"title\":\"Slide 1\",\"img\":\"sportshero\\/slide1.jpg\"}],\"twitter-feed\":[{\"title\":\"Slide 1\",\"img\":\"twitter-feed\\/slide1.jpg\"}],\"vimeo-gallery\":[{\"title\":\"Slide 1\",\"img\":\"vimeo-gallery\\/slide1.jpg\"}],\"vimeohero\":[{\"title\":\"Slide 1\",\"img\":\"vimeohero\\/slide1.jpg\"}],\"web-product-dark\":[{\"title\":\"Slide 1\",\"img\":\"web-product-dark\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"web-product-dark\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"web-product-dark\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"web-product-dark\\/slide4.jpg\"}],\"web-product-dark-hero\":[{\"title\":\"Slide 1\",\"img\":\"web-product-dark-hero\\/slide1.jpg\"}],\"web-product-light-hero\":[{\"title\":\"Slide 1\",\"img\":\"web-product-light-hero\\/slide1.jpg\"}],\"webproductlight\":[{\"title\":\"Slide 1\",\"img\":\"webproductlight\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"webproductlight\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"webproductlight\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"webproductlight\\/slide4.jpg\"}],\"youtube-gallery\":[{\"title\":\"Slide 1\",\"img\":\"youtube-gallery\\/slide1.jpg\"}],\"youtubehero\":[{\"title\":\"Slide 1\",\"img\":\"youtubehero\\/slide1.jpg\"}],\"scroll-effect\":[{\"title\":\"Slide 1\",\"img\":\"scrolleffect\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"scrolleffect\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"scrolleffect\\/slide3.jpg\"}],\"content-zoom\":[{\"title\":\"Slide 1\",\"img\":\"contentzoom\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"contentzoom\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"contentzoom\\/slide3.jpg\"}],\"food-carousel\":[{\"title\":\"Slide 1\",\"img\":\"foodcarousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"foodcarousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"foodcarousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"foodcarousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"foodcarousel\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"foodcarousel\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"foodcarousel\\/slide7.jpg\"}],\"rotating-words\":[{\"title\":\"Slide 1\",\"img\":\"rotatingwords\\/slide1.jpg\"}],\"travel-static-captions\":[{\"title\":\"Slide 1\",\"img\":\"travel-static-captions\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"travel-static-captions\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"travel-static-captions\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"travel-static-captions\\/slide4.jpg\"}],\"concept\":[{\"title\":\"Slide 1\",\"img\":\"concept\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"concept\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"concept\\/slide3.jpg\"}],\"fullscreen-button\":[{\"title\":\"Slide 1\",\"img\":\"fullscreen-button\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fullscreen-button\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"fullscreen-button\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"fullscreen-button\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"fullscreen-button\\/slide5.jpg\"}],\"creativefreedom\":[{\"title\":\"Slide 1\",\"img\":\"creativefreedom\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"creativefreedom\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"creativefreedom\\/slide3.jpg\"}],\"parallaxscene\":[{\"title\":\"Slide 1\",\"img\":\"parallaxscene\\/slide1.jpg\"}],\"slidingoverlays\":[{\"title\":\"Slide 1\",\"img\":\"slidingoverlays\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"slidingoverlays\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"slidingoverlays\\/slide3.jpg\"}],\"web-product-light-hero-3d\":[{\"title\":\"Slide 1\",\"img\":\"web-product-light-hero-3d\\/slide1.jpg\"}],\"woobig\":[{\"title\":\"Slide 1\",\"img\":\"woobig\\/slide1.jpg\"}],\"woocommercesmall\":[{\"title\":\"Slide 1\",\"img\":\"woocommercesmall\\/slide1.jpg\"}],\"finedining\":[{\"title\":\"Slide 1\",\"img\":\"finedining\\/slide1.jpg\"}],\"agency-intro\":[{\"title\":\"Slide 1\",\"img\":\"agency-intro\\/slide1.jpg\"}],\"ourteam\":[{\"title\":\"Slide 1\",\"img\":\"ourteam\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"ourteam\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"ourteam\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"ourteam\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"ourteam\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"ourteam\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"ourteam\\/slide7.jpg\"}],\"our-team-carousel\":[{\"title\":\"Slide 1\",\"img\":\"ourteamcarousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"ourteamcarousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"ourteamcarousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"ourteamcarousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"ourteamcarousel\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"ourteamcarousel\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"ourteamcarousel\\/slide7.jpg\"}],\"betteryoutube\":[{\"title\":\"Slide 1\",\"img\":\"betteryoutube\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"betteryoutube\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"betteryoutube\\/slide3.jpg\"}],\"agencywebsiteheader\":[{\"title\":\"Slide 1\",\"img\":\"agencywebsiteheader\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"agencywebsiteheader\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"agencywebsiteheader\\/slide3.jpg\"}],\"comingsoon\":[{\"title\":\"Slide 1\",\"img\":\"comingsoon\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"comingsoon\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"comingsoon\\/slide3.jpg\"}],\"snowscene\":[{\"title\":\"Slide 1\",\"img\":\"snowscene\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"snowscene\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"snowscene\\/slide3.jpg\"}],\"rockband\":[{\"title\":\"Slide 1\",\"img\":\"rockband\\/slide1.jpg\"}],\"sleeklandingpage\":[{\"title\":\"Slide 1\",\"img\":\"sleeklandingpage\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"sleeklandingpage\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"sleeklandingpage\\/slide3.jpg\"}],\"applandingpage\":[{\"title\":\"Slide 1\",\"img\":\"applandingpage\\/slide1.jpg\"}],\"deskscene\":[{\"title\":\"Slide 1\",\"img\":\"deskscene\\/slide1.jpg\"}],\"cleannewsslider\":[{\"title\":\"Slide 1\",\"img\":\"cleannewsslider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cleannewsslider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cleannewsslider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"cleannewsslider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"cleannewsslider\\/slide5.jpg\"}],\"imagegallery\":[{\"title\":\"Slide 1\",\"img\":\"imagegallery\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"imagegallery\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"imagegallery\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"imagegallery\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"imagegallery\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"imagegallery\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"imagegallery\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"imagegallery\\/slide8.jpg\"}],\"standard-wp-gallery\":[{\"title\":\"Slide 1\",\"img\":\"standard-wp-gallery\\/slide1.jpg\"}],\"clean-news-post-based\":[{\"title\":\"Slide 1\",\"img\":\"clean-news-post-based\\/slide1.jpg\"}],\"interactivewhiteboard\":[{\"title\":\"Slide 1\",\"img\":\"interactivewhiteboard\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"interactivewhiteboard\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"interactivewhiteboard\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"interactivewhiteboard\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"interactivewhiteboard\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"interactivewhiteboard\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"interactivewhiteboard\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"interactivewhiteboard\\/slide8.jpg\"}],\"innovation\":[{\"title\":\"Slide 1\",\"img\":\"innovation\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"innovation\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"innovation\\/slide3.jpg\"}],\"dark-fullsite-block-menu\":[{\"title\":\"Slide 1\",\"img\":\"dark-fullsite-block-menu\\/slide1.jpg\"}],\"dark-fullsite-block-1\":[{\"title\":\"Slide 1\",\"img\":\"dark-fullsite-block-1\\/slide1.jpg\"}],\"dark-fullsite-block-2-about\":[{\"title\":\"Slide 1\",\"img\":\"dark-fullsite-block-2-about\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"dark-fullsite-block-2-about\\/slide2.jpg\"}],\"dark-fullsite-block-3-services\":[{\"title\":\"Slide 1\",\"img\":\"dark-fullsite-block-3-services\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"dark-fullsite-block-3-services\\/slide2.jpg\"}],\"dark-fullsite-block-4-products\":[{\"title\":\"Slide 1\",\"img\":\"dark-fullsite-block-4-products\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"dark-fullsite-block-4-products\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"dark-fullsite-block-4-products\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"dark-fullsite-block-4-products\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"dark-fullsite-block-4-products\\/slide5.jpg\"}],\"dark-fullsite-block-5-testimonials\":[{\"title\":\"Slide 1\",\"img\":\"dark-fullsite-block-5-testimonials\\/slide1.jpg\"}],\"dark-fullsite-block-6-callout\":[{\"title\":\"Slide 1\",\"img\":\"dark-fullsite-block-6-callout\\/slide1.jpg\"}],\"dark-fullsite-block-7-footer\":[{\"title\":\"Slide 1\",\"img\":\"dark-fullsite-block-7-footer\\/slide1.jpg\"}],\"fullsite-block-menu\":[{\"title\":\"Slide 1\",\"img\":\"fullsite-block-menu\\/slide1.jpg\"}],\"fullsite-block1\":[{\"title\":\"Slide 1\",\"img\":\"fullsite-block1\\/slide1.jpg\"}],\"fullsite-block-2-about\":[{\"title\":\"Slide 1\",\"img\":\"fullsite-block-2-about\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fullsite-block-2-about\\/slide2.jpg\"}],\"fullsite-block-3-services\":[{\"title\":\"Slide 1\",\"img\":\"fullsite-block-3-services\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fullsite-block-3-services\\/slide2.jpg\"}],\"fullsite-block-4-products\":[{\"title\":\"Slide 1\",\"img\":\"fullsite-block-4-products\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fullsite-block-4-products\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"fullsite-block-4-products\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"fullsite-block-4-products\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"fullsite-block-4-products\\/slide5.jpg\"}],\"fullsite-block-5-testimonials\":[{\"title\":\"Slide 1\",\"img\":\"fullsite-block-5-testimonials\\/slide1.jpg\"}],\"fullsite-block-6-callout\":[{\"title\":\"Slide 1\",\"img\":\"fullsite-block-6-callout\\/slide1.jpg\"}],\"fullsite-block-7-footer\":[{\"title\":\"Slide 1\",\"img\":\"fullsite-block-7-footer\\/slide1.jpg\"}],\"techjournal\":[{\"title\":\"Slide 1\",\"img\":\"techjournal\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"techjournal\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"techjournal\\/slide3.jpg\"}],\"cardealership\":[{\"title\":\"Slide 1\",\"img\":\"cardealership\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cardealership\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cardealership\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"cardealership\\/slide4.jpg\"}],\"fullscreenmenu\":[{\"title\":\"Slide 1\",\"img\":\"fullscreenmenu\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fullscreenmenu\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"fullscreenmenu\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"fullscreenmenu\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"fullscreenmenu\\/slide5.jpg\"}],\"creativefrontpage\":[{\"title\":\"Slide 1\",\"img\":\"creativefrontpage\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"creativefrontpage\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"creativefrontpage\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"creativefrontpage\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"creativefrontpage\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"creativefrontpage\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"creativefrontpage\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"creativefrontpage\\/slide8.jpg\"}],\"websitebuilder-menu\":[{\"title\":\"Slide 1\",\"img\":\"websitebuilder-menu\\/slide1.jpg\"}],\"websitebuilder-hero\":[{\"title\":\"Slide 1\",\"img\":\"websitebuilder-hero\\/slide1.jpg\"}],\"websitebuilder-clients\":[{\"title\":\"Slide 1\",\"img\":\"websitebuilder-clients\\/slide1.jpg\"}],\"websitebuilder-services\":[{\"title\":\"Slide 1\",\"img\":\"websitebuilder-services\\/slide1.jpg\"}],\"websitebuilder-discover\":[{\"title\":\"Slide 1\",\"img\":\"websitebuilder-discover\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"websitebuilder-discover\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"websitebuilder-discover\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"websitebuilder-discover\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"websitebuilder-discover\\/slide5.jpg\"}],\"websitebuilder-slider\":[{\"title\":\"Slide 1\",\"img\":\"websitebuilder-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"websitebuilder-slider\\/slide2.jpg\"}],\"websitebuilder-calltoaction\":[{\"title\":\"Slide 1\",\"img\":\"websitebuilder-calltoaction\\/slide1.jpg\"}],\"websitebuilder-footer\":[{\"title\":\"Slide 1\",\"img\":\"websitebuilder-footer\\/slide1.jpg\"}],\"focusparallax\":[{\"title\":\"Slide 1\",\"img\":\"focusparallax\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"focusparallax\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"focusparallax\\/slide3.jpg\"}],\"duotone\":[{\"title\":\"Slide 1\",\"img\":\"duotone\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"duotone\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"duotone\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"duotone\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"duotone\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"duotone\\/slide6.jpg\"}],\"r_menu\":[{\"title\":\"Slide 1\",\"img\":\"r_menu\\/slide1.jpg\"}],\"rhero\":[{\"title\":\"Slide 1\",\"img\":\"r_hero\\/slide1.jpg\"}],\"r_about\":[{\"title\":\"Slide 1\",\"img\":\"r_about\\/slide1.jpg\"}],\"r_products\":[{\"title\":\"Slide 1\",\"img\":\"r_products\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"r_products\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"r_products\\/slide3.jpg\"}],\"r_info\":[{\"title\":\"Slide 1\",\"img\":\"r_info\\/slide1.jpg\"}],\"inspirationheader\":[{\"title\":\"Slide 1\",\"img\":\"inspirationheader\\/slide1.jpg\"}],\"magazineposts\":[{\"title\":\"Slide 1\",\"img\":\"magazineposts\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"magazineposts\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"magazineposts\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"magazineposts\\/slide4.jpg\"}],\"explorationheader\":[{\"title\":\"Slide 1\",\"img\":\"explorationheader\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"explorationheader\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"explorationheader\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"explorationheader\\/slide4.jpg\"}],\"typewritereffect\":[{\"title\":\"Slide 1\",\"img\":\"typewritereffect\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"typewritereffect\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"typewritereffect\\/slide3.jpg\"}],\"blendmodeheader\":[{\"title\":\"Slide 1\",\"img\":\"blendmodeheader\\/slide1.jpg\"}],\"themeplicity_menu\":[{\"title\":\"Slide 1\",\"img\":\"themeplicity_menu\\/slide1.jpg\"}],\"themeplicity_header\":[{\"title\":\"Slide 1\",\"img\":\"themeplicity_header\\/slide1.jpg\"}],\"themeplicity_offer\":[{\"title\":\"Slide 1\",\"img\":\"themeplicity_offer\\/slide1.jpg\"}],\"themeplicity_whatwedo\":[{\"title\":\"Slide 1\",\"img\":\"themeplicity_whatwedo\\/slide1.jpg\"}],\"themeplicity_projects\":[{\"title\":\"Slide 1\",\"img\":\"themeplicity_projects\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"themeplicity_projects\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"themeplicity_projects\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"themeplicity_projects\\/slide4.jpg\"},{\"title\":\"themeplicity_projects\\/slide5.jpg\",\"img\":\"Slide 5\"}],\"themeplicity_whatsgreat\":[{\"title\":\"Slide 1\",\"img\":\"themeplicity_whatsgreat\\/slide1.jpg\"}],\"themeplicity_tables\":[{\"title\":\"Slide 1\",\"img\":\"themeplicity_tables\\/slide1.jpg\"}],\"themeplicity_contactform\":[{\"title\":\"Slide 1\",\"img\":\"themeplicity_contactform\\/slide1.jpg\"}],\"themeplicity_footer\":[{\"title\":\"Slide 1\",\"img\":\"themeplicity_footer\\/slide1.jpg\"}],\"NiceAndClean_Menu\":[{\"title\":\"Slide 1\",\"img\":\"NiceAndClean_Menu\\/slide1.jpg\"}],\"NiceAndClean_Header\":[{\"title\":\"Slide 1\",\"img\":\"NiceAndClean_Header\\/slide1.jpg\"}],\"NiceAndClean_Services\":[{\"title\":\"Slide 1\",\"img\":\"NiceAndClean_Services\\/slide1.jpg\"}],\"NiceAndClean_About\":[{\"title\":\"Slide 1\",\"img\":\"NiceAndClean_About\\/slide1.jpg\"}],\"niceandclean_video\":[{\"title\":\"Slide 1\",\"img\":\"niceandclean_video\\/slide1.jpg\"}],\"niceandclean_highlights\":[{\"title\":\"Slide 1\",\"img\":\"niceandclean_highlights\\/slide1.jpg\"}],\"NiceAndClean_Projects\":[{\"title\":\"Slide 1\",\"img\":\"NiceAndClean_Projects\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"NiceAndClean_Projects\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"NiceAndClean_Projects\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"NiceAndClean_Projects\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"NiceAndClean_Projects\\/slide5.jpg\"}],\"niceandclean_textblocks\":[{\"title\":\"Slide 1\",\"img\":\"niceandclean_textblocks\\/slide1.jpg\"}],\"niceandclean_callout\":[{\"title\":\"Slide 1\",\"img\":\"niceandclean_callout\\/slide1.jpg\"}],\"niceandclean_footer\":[{\"title\":\"Slide 1\",\"img\":\"niceandclean_footer\\/slide1.jpg\"}],\"80s\":[{\"title\":\"Slide 1\",\"img\":\"80s\\/slide1.jpg\"}],\"blurslider\":[{\"title\":\"Slide 1\",\"img\":\"blurslider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"blurslider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"blurslider\\/slide3.jpg\"}],\"ComingSoonAddon\":[{\"title\":\"Slide 1\",\"img\":\"ComingSoonAddon\\/slide1.jpg\"}],\"snowaddon\":[{\"title\":\"Slide 1\",\"img\":\"snowaddon\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"snowaddon\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"snowaddon\\/slide3.jpg\"}],\"particle-effect-one\":[{\"title\":\"Slide 1\",\"img\":\"particle-effect-one\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"particle-effect-one\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"particle-effect-one\\/slide3.jpg\"}],\"particle-effect-two\":[{\"title\":\"Slide 1\",\"img\":\"particle-effect-two\\/slide1.jpg\"}],\"particle-effect-three\":[{\"title\":\"Slide 1\",\"img\":\"particle-effect-three\\/slide1.jpg\"}],\"portfolioviewer\":[{\"title\":\"Slide 1\",\"img\":\"portfolioviewer\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"portfolioviewer\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"portfolioviewer\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"portfolioviewer\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"portfolioviewer\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"portfolioviewer\\/slide6.jpg\"}],\"appshowcase\":[{\"title\":\"Slide 1\",\"img\":\"appshowcase\\/slide1.jpg\"}],\"gravitydesign\":[{\"title\":\"Slide 1\",\"img\":\"gravitydesign\\/slide1.jpg\"}],\"404errorpage\":[{\"title\":\"Slide 1\",\"img\":\"404errorpage\\/slide1.jpg\"}],\"carouselgallery\":[{\"title\":\"Slide 1\",\"img\":\"carouselgallery\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"carouselgallery\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"carouselgallery\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"carouselgallery\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"carouselgallery\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"carouselgallery\\/slide6.jpg\"}],\"filmstrip\":[{\"title\":\"Slide 1\",\"img\":\"filmstrip\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"filmstrip\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"filmstrip\\/slide3.jpg\"}],\"spaceopera\":[{\"title\":\"Slide 1\",\"img\":\"spaceopera\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"spaceopera\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"spaceopera\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"spaceopera\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"spaceopera\\/slide5.jpg\"}],\"websiteintro\":[{\"title\":\"Slide 1\",\"img\":\"websiteintro\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"websiteintro\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"websiteintro\\/slide3.jpg\"}],\"maskshowcase\":[{\"title\":\"Slide 1\",\"img\":\"maskshowcase\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"maskshowcase\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"maskshowcase\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"maskshowcase\\/slide4.jpg\"}],\"parallaxzoomslices\":[{\"title\":\"Slide 1\",\"img\":\"parallaxzoomslices\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"parallaxzoomslices\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"parallaxzoomslices\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"parallaxzoomslices\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"parallaxzoomslices\\/slide5.jpg\"}],\"doubleexposureeffect\":[{\"title\":\"Slide 1\",\"img\":\"doubleexposureeffect\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"doubleexposureeffect\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"doubleexposureeffect\\/slide3.jpg\"}],\"mountainparallaxheader\":[{\"title\":\"Slide 1\",\"img\":\"mountainparallaxheader\\/slide1.jpg\"}],\"goodnewsmenu\":[{\"title\":\"Slide 1\",\"img\":\"goodnewsmenu\\/slide1.jpg\"}],\"goodnewsheader\":[{\"title\":\"Slide 1\",\"img\":\"goodnewsheader\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"goodnewsheader\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"goodnewsheader\\/slide3.jpg\"}],\"goodnewswhatshot\":[{\"title\":\"Slide 1\",\"img\":\"goodnewswhatshot\\/slide1.jpg\"}],\"goodnewsfeatured\":[{\"title\":\"Slide 1\",\"img\":\"goodnewsfeatured\\/slide1.jpg\"}],\"goodnewsspotlight\":[{\"title\":\"Slide 1\",\"img\":\"goodnewsspotlight\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"goodnewsspotlight\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"goodnewsspotlight\\/slide3.jpg\"}],\"goodnewscarousel\":[{\"title\":\"Slide 1\",\"img\":\"goodnewscarousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"goodnewscarousel\\/slide2.jpg\"}],\"goodnewscallout\":[{\"title\":\"Slide 1\",\"img\":\"goodnewscallout\\/slide1.jpg\"}],\"goodnewsfooter\":[{\"title\":\"Slide 1\",\"img\":\"goodnewsfooter\\/slide1.jpg\"}],\"goodnewsmenuback\":[{\"title\":\"Slide 1\",\"img\":\"goodnewsmenuback\\/slide1.jpg\"}],\"goodnewsblogheader\":[{\"title\":\"Slide 1\",\"img\":\"goodnewsblogheader\\/slide1.jpg\"}],\"goodnewsblogcontent\":[{\"title\":\"Slide 1\",\"img\":\"goodnewsblogcontent\\/slide1.jpg\"}],\"goodnewstestimonials\":[{\"title\":\"Slide 1\",\"img\":\"goodnewstestimonials\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"goodnewstestimonials\\/slide2.jpg\"}],\"goodnewsblogfooter\":[{\"title\":\"Slide 1\",\"img\":\"goodnewsblogfooter\\/slide1.jpg\"}],\"beforeafterslider\":[{\"title\":\"Slide 1\",\"img\":\"beforeafterslider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"beforeafterslider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"beforeafterslider\\/slide3.jpg\"}],\"productshowcase\":[{\"title\":\"Slide 1\",\"img\":\"productshowcase\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"productshowcase\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"productshowcase\\/slide3.jpg\"}],\"overexposuretransition\":[{\"title\":\"Slide 1\",\"img\":\"overexposuretransition\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"overexposuretransition\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"overexposuretransition\\/slide3.jpg\"}],\"parallaxscroll\":[{\"title\":\"Slide 1\",\"img\":\"parallaxscroll\\/slide1.jpg\"}],\"techco-menu\":[{\"title\":\"Slide 1\",\"img\":\"techco-menu\\/slide1.jpg\"}],\"techco-header\":[{\"title\":\"Slide 1\",\"img\":\"techco-header\\/slide1.jpg\"}],\"techco-about\":[{\"title\":\"Slide 1\",\"img\":\"techco-about\\/slide1.jpg\"}],\"techco-services\":[{\"title\":\"Slide 1\",\"img\":\"techco-services\\/slide1.jpg\"}],\"techco-video\":[{\"title\":\"Slide 1\",\"img\":\"techco-video\\/slide1.jpg\"}],\"techco-prices\":[{\"title\":\"Slide 1\",\"img\":\"techco-prices\\/slide1.jpg\"}],\"techco-testimonials\":[{\"title\":\"Slide 1\",\"img\":\"techco-testimonials\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"techco-testimonials\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"techco-testimonials\\/slide3.jpg\"}],\"techco-footer\":[{\"title\":\"Slide 1\",\"img\":\"techco-footer\\/slide1.jpg\"}],\"weather\":[{\"title\":\"Slide 1\",\"img\":\"weather\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"weather\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"weather\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"weather\\/slide4.jpg\"}],\"360panorama\":[{\"title\":\"Slide 1\",\"img\":\"360panorama\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"360panorama\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"360panorama\\/slide3.jpg\"}],\"duotone-add-on\":[{\"title\":\"Slide 1\",\"img\":\"duotone-add-on\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"duotone-add-on\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"duotone-add-on\\/slide3.jpg\"}],\"reveal-add-on\":[{\"title\":\"Slide 1\",\"img\":\"reveal-add-on\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"reveal-add-on\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"reveal-add-on\\/slide3.jpg\"}],\"band-tour-poster\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/band-tour-poster\\/slide1.png\"}],\"brewery-slider\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/brewery-slider\\/slide1.png\"},{\"title\":\"Slide 2\",\"img\":\"smartcontent\\/brewery-slider\\/slide2.png\"},{\"title\":\"Slide 3\",\"img\":\"smartcontent\\/brewery-slider\\/slide3.png\"}],\"burgerbar\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/burgerbar\\/slide1.png\"},{\"title\":\"Slide 2\",\"img\":\"smartcontent\\/burgerbar\\/slide2.png\"},{\"title\":\"Slide 3\",\"img\":\"smartcontent\\/burgerbar\\/slide3.png\"}],\"burger-bar-portrait\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/burger-bar-portrait\\/slide1.png\"},{\"title\":\"Slide 2\",\"img\":\"smartcontent\\/burger-bar-portrait\\/slide2.png\"},{\"title\":\"Slide 3\",\"img\":\"smartcontent\\/burger-bar-portrait\\/slide3.png\"}],\"car-rent\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/car-rent\\/slide1.png\"}],\"coffee\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/coffee\\/slide1.png\"},{\"title\":\"Slide 2\",\"img\":\"smartcontent\\/coffee\\/slide2.png\"},{\"title\":\"Slide 3\",\"img\":\"smartcontent\\/coffee\\/slide3.png\"}],\"holiday-advert\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/holiday-advert\\/slide1.png\"}],\"iphone-cases-light\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/iphone-cases-light\\/slide1.png\"}],\"medical\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/medical\\/slide1.png\"},{\"title\":\"Slide 2\",\"img\":\"smartcontent\\/medical\\/slide2.png\"}],\"mexican-grill\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/mexican-grill\\/slide1.png\"},{\"title\":\"Slide 2\",\"img\":\"smartcontent\\/mexican-grill\\/slide2.png\"},{\"title\":\"Slide 3\",\"img\":\"smartcontent\\/mexican-grill\\/slide3.png\"}],\"mobile-retail-slider\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/mobile-retail-slider\\/slide1.png\"},{\"title\":\"Slide 2\",\"img\":\"smartcontent\\/mobile-retail-slider\\/slide2.png\"},{\"title\":\"Slide 3\",\"img\":\"smartcontent\\/mobile-retail-slider\\/slide3.png\"}],\"money-exchange\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/money-exchange\\/slide1.png\"},{\"title\":\"Slide 2\",\"img\":\"smartcontent\\/money-exchange\\/slide2.png\"},{\"title\":\"Slide 3\",\"img\":\"smartcontent\\/money-exchange\\/slide3.png\"}],\"restaurant-menu-first-screen\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/restaurant-menu-first-screen\\/slide1.png\"}],\"restaurant-menu-second-screen\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/restaurant-menu-second-screen\\/slide1.png\"}],\"restaurant-menu-third-screen\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/restaurant-menu-third-screen\\/slide1.png\"}],\"shoes-store\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/shoes-store\\/slide1.png\"},{\"title\":\"Slide 2\",\"img\":\"smartcontent\\/shoes-store\\/slide2.png\"},{\"title\":\"Slide 3\",\"img\":\"smartcontent\\/shoes-store\\/slide3.png\"}],\"supermarket-products\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/supermarket-products\\/slide1.png\"},{\"title\":\"Slide 2\",\"img\":\"smartcontent\\/supermarket-products\\/slide2.png\"},{\"title\":\"Slide 3\",\"img\":\"smartcontent\\/supermarket-products\\/slide3.png\"},{\"title\":\"Slide 4\",\"img\":\"smartcontent\\/supermarket-products\\/slide4.png\"},{\"title\":\"Slide 5\",\"img\":\"smartcontent\\/supermarket-products\\/slide5.png\"}],\"travel-insurance\":[{\"title\":\"Slide 1\",\"img\":\"smartcontent\\/travel-insurance\\/slide1.png\"}],\"cryptoslider\":[{\"title\":\"Slide 1\",\"img\":\"cryptoslider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cryptoslider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cryptoslider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"cryptoslider\\/slide4.jpg\"}],\"immersion_header\":[{\"title\":\"Slide 1\",\"img\":\"immersion_header\\/slide1.jpg\"}],\"immersion-mountains\":[{\"title\":\"Slide 1\",\"img\":\"immersion-mountains\\/slide1.jpg\"}],\"immersion-product\":[{\"title\":\"Slide 1\",\"img\":\"immersion-product\\/slide1.jpg\"}],\"immersion-design\":[{\"title\":\"Slide 1\",\"img\":\"immersion-design\\/slide1.jpg\"}],\"immersion-photography\":[{\"title\":\"Slide 1\",\"img\":\"immersion-photography\\/slide1.jpg\"}],\"immersion-grid\":[{\"title\":\"Slide 1\",\"img\":\"immersion-grid\\/slide1.jpg\"}],\"funkyslider\":[{\"title\":\"Slide 1\",\"img\":\"funkyslider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"funkyslider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"funkyslider\\/slide3.jpg\"}],\"clearview_menu\":[{\"title\":\"Slide 1\",\"img\":\"clearview_menu\\/slide1.jpg\"}],\"clearview_header\":[{\"title\":\"Slide 1\",\"img\":\"clearview_header\\/slide1.jpg\"}],\"clearview_mission\":[{\"title\":\"Slide 1\",\"img\":\"clearview_mission\\/slide1.jpg\"}],\"clear-view-slider\":[{\"title\":\"Slide 1\",\"img\":\"clear-view-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"clear-view-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"clear-view-slider\\/slide3.jpg\"}],\"clear-view-news\":[{\"title\":\"Slide 1\",\"img\":\"clear-view-news\\/slide1.jpg\"}],\"clear-view-clients\":[{\"title\":\"Slide 1\",\"img\":\"clear-view-clients\\/slide1.jpg\"}],\"clear-view-contact\":[{\"title\":\"Slide 1\",\"img\":\"clear-view-contact\\/slide1.jpg\"}],\"clear-view-single-menu\":[{\"title\":\"Slide 1\",\"img\":\"clear-view-single-menu\\/slide1.jpg\"}],\"clear-view-single-header\":[{\"title\":\"Slide 1\",\"img\":\"clear-view-single-header\\/slide1.jpg\"}],\"clear-view-single-media\":[{\"title\":\"Slide 1\",\"img\":\"clear-view-single-media\\/slide1.jpg\"}],\"clear-view-single-more\":[{\"title\":\"Slide 1\",\"img\":\"clear-view-single-more\\/slide1.jpg\"}],\"clear-view-single-contact\":[{\"title\":\"Slide 1\",\"img\":\"clear-view-single-contact\\/slide1.jpg\"}],\"cleanlandingpage\":[{\"title\":\"Slide 1\",\"img\":\"cleanlandingpage\\/slide1.jpg\"}],\"clearcut\":[{\"title\":\"Slide 1\",\"img\":\"clearcut\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"clearcut\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"clearcut\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"clearcut\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"clearcut\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"clearcut\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"clearcut\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"clearcut\\/slide8.jpg\"},{\"title\":\"Slide 9\",\"img\":\"clearcut\\/slide9.jpg\"},{\"title\":\"Slide 10\",\"img\":\"clearcut\\/slide10.jpg\"}],\"wonderstruck_menu\":[{\"title\":\"Slide 1\",\"img\":\"wonderstruck_menu\\/slide1.jpg\"}],\"wonderstruck_header\":[{\"title\":\"Slide 1\",\"img\":\"wonderstruck_header\\/slide1.jpg\"}],\"wonderstruck_about\":[{\"title\":\"Slide 1\",\"img\":\"wonderstruck_about\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"wonderstruck_about\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"wonderstruck_about\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"wonderstruck_about\\/slide4.jpg\"}],\"wonderstruck-works\":[{\"title\":\"Slide 1\",\"img\":\"wonderstruck-works\\/slide1.jpg\"}],\"wonderstruck-contact\":[{\"title\":\"Slide 1\",\"img\":\"wonderstruck-contact\\/slide1.jpg\"}],\"bubblemorph\":[{\"title\":\"Slide 1\",\"img\":\"bubblemorph\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"bubblemorph\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"bubblemorph\\/slide3.jpg\"}],\"distortionaddon\":[{\"title\":\"Slide 1\",\"img\":\"distortionaddon\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"distortionaddon\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"distortionaddon\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"distortionaddon\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"distortionaddon\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"distortionaddon\\/slide6.jpg\"}],\"clubflyer\":[{\"title\":\"Slide 1\",\"img\":\"clubflyer\\/slide1.jpg\"}],\"paintbrushaddon\":[{\"title\":\"Slide 1\",\"img\":\"paintbrushaddon\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"paintbrushaddon\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"paintbrushaddon\\/slide3.jpg\"}],\"parallax_header\":[{\"title\":\"Slide 1\",\"img\":\"parallax_header\\/slide1.jpg\"}],\"parallax_content\":[{\"title\":\"Slide 1\",\"img\":\"parallax_content\\/slide1.jpg\"}],\"parallax_footer\":[{\"title\":\"Slide 1\",\"img\":\"parallax_footer\\/slide1.jpg\"}],\"le-chef-menu\":[{\"title\":\"Slide 1\",\"img\":\"le-chef-menu\\/slide1.jpg\"}],\"le-chef-header\":[{\"title\":\"Slide 1\",\"img\":\"le-chef-header\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"le-chef-header\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"le-chef-header\\/slide3.jpg\"}],\"le-chef-philosophy\":[{\"title\":\"Slide 1\",\"img\":\"le-chef-philosophy\\/slide1.jpg\"}],\"le-chef-food\":[{\"title\":\"Slide 1\",\"img\":\"le-chef-food\\/slide1.jpg\"}],\"le-chef-la-carte\":[{\"title\":\"Slide 1\",\"img\":\"le-chef-la-carte\\/slide1.jpg\"}],\"le-chef-footer\":[{\"title\":\"Slide 1\",\"img\":\"le-chef-footer\\/slide1.jpg\"}],\"news-magazine-slider\":[{\"title\":\"Slide 1\",\"img\":\"news-magazine-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"news-magazine-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"news-magazine-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"news-magazine-slider\\/slide4.jpg\"}],\"real-estate-slider\":[{\"title\":\"Slide 1\",\"img\":\"real-estate-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"real-estate-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"real-estate-slider\\/slide3.jpg\"}],\"fashion-header\":[{\"title\":\"Slide 1\",\"img\":\"fashion-header\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fashion-header\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"fashion-header\\/slide3.jpg\"}],\"seasonaloffer\":[{\"title\":\"Slide 1\",\"img\":\"seasonaloffer\\/slide1.jpg\"}],\"barber-shop-header\":[{\"title\":\"Slide 1\",\"img\":\"barber-shop-header\\/slide1.jpg\"}],\"barber-shop-mobile-menu\":[{\"title\":\"Slide 1\",\"img\":\"barber-shop-mobile-menu\\/slide1.jpg\"}],\"barber-shop-first-screen\":[{\"title\":\"Slide 1\",\"img\":\"barber-shop-first-screen\\/slide1.jpg\"}],\"barber-shop-about\":[{\"title\":\"Slide 1\",\"img\":\"barber-shop-about\\/slide1.jpg\"}],\"barber-shop-services\":[{\"title\":\"Slide 1\",\"img\":\"barber-shop-services\\/slide1.jpg\"}],\"barber-shop-barbers\":[{\"title\":\"Slide 1\",\"img\":\"barber-shop-barbers\\/slide1.jpg\"}],\"barber-shop-contacts\":[{\"title\":\"Slide 1\",\"img\":\"barber-shop-contacts\\/slide1.jpg\"}],\"barber-shop-footer\":[{\"title\":\"Slide 1\",\"img\":\"barber-shop-footer\\/slide1.jpg\"}],\"fitness-club-template\":[{\"title\":\"Slide 1\",\"img\":\"fitness-club-template\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fitness-club-template\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"fitness-club-template\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"fitness-club-template\\/slide4.jpg\"}],\"soccer-school\":[{\"title\":\"Slide 1\",\"img\":\"soccer-school\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"soccer-school\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"soccer-school\\/slide3.jpg\"}],\"music-band-template\":[{\"title\":\"Slide 1\",\"img\":\"music-band-template\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"music-band-template\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"music-band-template\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"music-band-template\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"music-band-template\\/slide5.jpg\"}],\"restaurant-menu\":[{\"title\":\"Slide 1\",\"img\":\"restaurant-menu\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"restaurant-menu\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"restaurant-menu\\/slide3.jpg\"}],\"cinematic-slider\":[{\"title\":\"Slide 1\",\"img\":\"cinematic-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cinematic-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cinematic-slider\\/slide3.jpg\"}],\"3d-parallax-cubes\":[{\"title\":\"Slide 1\",\"img\":\"3d-parallax-cubes\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"3d-parallax-cubes\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"3d-parallax-cubes\\/slide3.jpg\"}],\"medicare-menu\":[{\"title\":\"Slide 1\",\"img\":\"medicare-menu\\/slide1.jpg\"}],\"medicare-header\":[{\"title\":\"Slide 1\",\"img\":\"medicare-header\\/slide1.jpg\"}],\"medicare-about\":[{\"title\":\"Slide 1\",\"img\":\"medicare-about\\/slide1.jpg\"}],\"medicare-highlight\":[{\"title\":\"Slide 1\",\"img\":\"medicare-highlight\\/slide1.jpg\"}],\"medicare-services\":[{\"title\":\"Slide 1\",\"img\":\"medicare-services\\/slide1.jpg\"}],\"medicare-doctors\":[{\"title\":\"Slide 1\",\"img\":\"medicare-doctors\\/slide1.jpg\"}],\"medicare-research\":[{\"title\":\"Slide 1\",\"img\":\"medicare-research\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"medicare-research\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"medicare-research\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"medicare-research\\/slide4.jpg\"}],\"medicare-whychoose\":[{\"title\":\"Slide 1\",\"img\":\"medicare-whychoose\\/slide1.jpg\"}],\"medicare-contact\":[{\"title\":\"Slide 1\",\"img\":\"medicare-contact\\/slide1.jpg\"}],\"medicare-footer\":[{\"title\":\"Slide 1\",\"img\":\"medicare-footer\\/slide1.jpg\"}],\"coffee-menu\":[{\"title\":\"Slide 1\",\"img\":\"coffee-menu\\/slide1.jpg\"}],\"coffee-header\":[{\"title\":\"Slide 1\",\"img\":\"coffee-header\\/slide1.jpg\"}],\"coffee-philosophy\":[{\"title\":\"Slide 1\",\"img\":\"coffee-philosophy\\/slide1.jpg\"}],\"coffee-carte\":[{\"title\":\"Slide 1\",\"img\":\"coffee-carte\\/slide1.jpg\"}],\"coffee-teaser\":[{\"title\":\"Slide 1\",\"img\":\"coffee-teaser\\/slide1.jpg\"}],\"coffee-findus\":[{\"title\":\"Slide 1\",\"img\":\"coffee-findus\\/slide1.jpg\"}],\"coffee-footer\":[{\"title\":\"Slide 1\",\"img\":\"coffee-footer\\/slide1.jpg\"}],\"minimal-portfolio\":[{\"title\":\"Slide 1\",\"img\":\"minimal-portfolio\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"minimal-portfolio\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"minimal-portfolio\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"minimal-portfolio\\/slide4.jpg\"}],\"minimal-portfolio-modal\":[{\"title\":\"Slide 1\",\"img\":\"minimal-portfolio-modal\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"minimal-portfolio-modal\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"minimal-portfolio-modal\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"minimal-portfolio-modal\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"minimal-portfolio-modal\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"minimal-portfolio-modal\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"minimal-portfolio-modal\\/slide7.jpg\"}],\"angled-menu\":[{\"title\":\"Slide 1\",\"img\":\"angled-menu\\/slide1.jpg\"}],\"angled-header\":[{\"title\":\"Slide 1\",\"img\":\"angled-header\\/slide1.jpg\"}],\"angled-news\":[{\"title\":\"Slide 1\",\"img\":\"angled-news\\/slide1.jpg\"}],\"angled-services\":[{\"title\":\"Slide 1\",\"img\":\"angled-services\\/slide1.jpg\"}],\"angled-success\":[{\"title\":\"Slide 1\",\"img\":\"angled-success\\/slide1.jpg\"}],\"angled-footer\":[{\"title\":\"Slide 1\",\"img\":\"angled-footer\\/slide1.jpg\"}],\"angled-content-modal\":[{\"title\":\"Slide 1\",\"img\":\"angled-content-modal\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"angled-content-modal\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"angled-content-modal\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"angled-content-modal\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"angled-content-modal\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"angled-content-modal\\/slide6.jpg\"}],\"big-bold-menu\":[{\"title\":\"Slide 1\",\"img\":\"big-bold-menu\\/slide1.jpg\"}],\"big-bold-header\":[{\"title\":\"Slide 1\",\"img\":\"big-bold-header\\/slide1.jpg\"}],\"big-bold-content\":[{\"title\":\"Slide 1\",\"img\":\"big-bold-content\\/slide1.jpg\"}],\"big-bold-blog\":[{\"title\":\"Slide 1\",\"img\":\"big-bold-blog\\/slide1.jpg\"}],\"big-bold-highlight\":[{\"title\":\"Slide 1\",\"img\":\"big-bold-highlight\\/slide1.jpg\"}],\"big-bold-footer\":[{\"title\":\"Slide 1\",\"img\":\"big-bold-footer\\/slide1.jpg\"}],\"Retouch\":[{\"title\":\"Slide 1\",\"img\":\"Retouch\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Retouch\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Retouch\\/slide3.jpg\"}],\"tech-slider\":[{\"title\":\"Slide 1\",\"img\":\"tech-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"tech-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"tech-slider\\/slide3.jpg\"}],\"peak-header\":[{\"title\":\"Slide 1\",\"img\":\"peak-header\\/slide1.jpg\"}],\"peak-about\":[{\"title\":\"Slide 1\",\"img\":\"peak-about\\/slide1.jpg\"}],\"peak-portfolio\":[{\"title\":\"Slide 1\",\"img\":\"peak-portfolio\\/slide1.jpg\"}],\"peak-footer\":[{\"title\":\"Slide 1\",\"img\":\"peak-footer\\/slide1.jpg\"}],\"portfolio-welcome\":[{\"title\":\"Slide 1\",\"img\":\"portfolio-welcome\\/slide1.jpg\"}],\"portfolio-about\":[{\"title\":\"Slide 1\",\"img\":\"portfolio-about\\/slide1.jpg\"}],\"portfolio-works-title\":[{\"title\":\"Slide 1\",\"img\":\"portfolio-works-title\\/slide1.jpg\"}],\"portfolio-works-content\":[{\"title\":\"Slide 1\",\"img\":\"portfolio-works-content\\/slide1.jpg\"}],\"portfolio-contacts\":[{\"title\":\"Slide 1\",\"img\":\"portfolio-contacts\\/slide1.jpg\"}],\"App-Studio-Welcome\":[{\"title\":\"Slide 1\",\"img\":\"App-Studio-Welcome\\/slide1.jpg\"}],\"App-Studio-Services\":[{\"title\":\"Slide 1\",\"img\":\"App-Studio-Services\\/slide1.jpg\"}],\"App-Studio-About\":[{\"title\":\"Slide 1\",\"img\":\"App-Studio-About\\/slide1.jpg\"}],\"App-Studio-Contacts\":[{\"title\":\"Slide 1\",\"img\":\"App-Studio-Contacts\\/slide1.jpg\"}],\"cube-animation\":[{\"title\":\"Slide 1\",\"img\":\"cube-animation\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cube-animation\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cube-animation\\/slide3.jpg\"}],\"basic-menu\":[{\"title\":\"Slide 1\",\"img\":\"basic-menu\\/slide1.jpg\"}],\"basic-header\":[{\"title\":\"Slide 1\",\"img\":\"basic-header\\/slide1.jpg\"}],\"basic-content\":[{\"title\":\"Slide 1\",\"img\":\"basic-content\\/slide1.jpg\"}],\"basic-carousel\":[{\"title\":\"Slide 1\",\"img\":\"basic-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"basic-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"basic-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"basic-carousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"basic-carousel\\/slide5.jpg\"}],\"basic-callout\":[{\"title\":\"Slide 1\",\"img\":\"basic-callout\\/slide1.jpg\"}],\"basic-grid\":[{\"title\":\"Slide 1\",\"img\":\"basic-grid\\/slide1.jpg\"}],\"basic-video-block\":[{\"title\":\"Slide 1\",\"img\":\"basic-video-block\\/slide1.jpg\"}],\"basic-footer\":[{\"title\":\"Slide 1\",\"img\":\"basic-footer\\/slide1.jpg\"}],\"basic-lightbox\":[{\"title\":\"Slide 1\",\"img\":\"basic-lightbox\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"basic-lightbox\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"basic-lightbox\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"basic-lightbox\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"basic-lightbox\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"basic-lightbox\\/slide6.jpg\"}],\"nature-slider\":[{\"title\":\"Slide 1\",\"img\":\"nature-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"nature-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"nature-slider\\/slide3.jpg\"}],\"art-gallery\":[{\"title\":\"Slide 1\",\"img\":\"art-gallery\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"art-gallery\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"art-gallery\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"art-gallery\\/slide4.jpg\"}],\"Construction-Header\":[{\"title\":\"Slide 1\",\"img\":\"Construction-Header\\/slide1.jpg\"}],\"Construction-Home\":[{\"title\":\"Slide 1\",\"img\":\"Construction-Home\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Construction-Home\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Construction-Home\\/slide3.jpg\"}],\"Construction-Projects\":[{\"title\":\"Slide 1\",\"img\":\"Construction-Projects\\/slide1.jpg\"}],\"Construction-History\":[{\"title\":\"Slide 1\",\"img\":\"Construction-History\\/slide1.jpg\"}],\"Construction-Services\":[{\"title\":\"Slide 1\",\"img\":\"Construction-Services\\/slide1.jpg\"}],\"Construction-Contacts\":[{\"title\":\"Slide 1\",\"img\":\"Construction-Contacts\\/slide1.jpg\"}],\"404-Error-Space-Theme\":[{\"title\":\"Slide 1\",\"img\":\"404-Error-Space-Theme\\/slide1.jpg\"}],\"landing-page-hero\":[{\"title\":\"Slide 1\",\"img\":\"landing-page-hero\\/slide1.jpg\"}],\"landing-page-features\":[{\"title\":\"Slide 1\",\"img\":\"landing-page-features\\/slide1.jpg\"}],\"landing-page-callout\":[{\"title\":\"Slide 1\",\"img\":\"landing-page-callout\\/slide1.jpg\"}],\"landing-page-content\":[{\"title\":\"Slide 1\",\"img\":\"landing-page-content\\/slide1.jpg\"}],\"landing-page-testimonials\":[{\"title\":\"Slide 1\",\"img\":\"landing-page-testimonials\\/slide1.jpg\"}],\"landing-page-call-to-action\":[{\"title\":\"Slide 1\",\"img\":\"landing-page-call-to-action\\/slide1.jpg\"}],\"landing-page-help\":[{\"title\":\"Slide 1\",\"img\":\"landing-page-help\\/slide1.jpg\"}],\"landing-page-footer\":[{\"title\":\"Slide 1\",\"img\":\"landing-page-footer\\/slide1.jpg\"}],\"landing-page-price-modal\":[{\"title\":\"Slide 1\",\"img\":\"landing-page-price-modal\\/slide1.jpg\"}],\"energy-drinks-hero\":[{\"title\":\"Slide 1\",\"img\":\"energy-drinks-hero\\/slide1.jpg\"}],\"energy-drinks-about\":[{\"title\":\"Slide 1\",\"img\":\"energy-drinks-about\\/slide1.jpg\"}],\"energy-drinks-product\":[{\"title\":\"Slide 1\",\"img\":\"energy-drinks-product\\/slide1.jpg\"}],\"energy-drinks-product-2\":[{\"title\":\"Slide 1\",\"img\":\"energy-drinks-product-2\\/slide1.jpg\"}],\"energy-drinks-product-3\":[{\"title\":\"Slide 1\",\"img\":\"energy-drinks-product-3\\/slide1.jpg\"}],\"energy-drinks-order\":[{\"title\":\"Slide 1\",\"img\":\"energy-drinks-order\\/slide1.jpg\"}],\"energy-drinks-footer\":[{\"title\":\"Slide 1\",\"img\":\"energy-drinks-footer\\/slide1.jpg\"}],\"energy-drinks-modal\":[{\"title\":\"Slide 1\",\"img\":\"energy-drinks-modal\\/slide1.jpg\"}],\"Corporate-Header\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Header\\/slide1.jpg\"}],\"Corporate-Welcome-Screen\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Welcome-Screen\\/slide1.jpg\"}],\"Corporate-About\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-About\\/slide1.jpg\"}],\"Corporate-Portfolio\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Portfolio\\/slide1.jpg\"}],\"Corporate-Chart\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Chart\\/slide1.jpg\"}],\"Corporate-News\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-News\\/slide1.jpg\"}],\"Corporate-Hiring\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-News\\/slide1.jpg\"}],\"Corporate-Testimonials\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Testimonials\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Corporate-Testimonials\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Corporate-Testimonials\\/slide3.jpg\"}],\"Corporate-Store\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Store\\/slide1.jpg\"}],\"Corporate-Support\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Support\\/slide1.jpg\"}],\"Corporate-Team\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Team\\/slide1.jpg\"}],\"Corporate-Selected-Projects-Title\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Selected-Projects-Title\\/slide1.jpg\"}],\"Corporate-Selected-Projects\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Selected-Projects\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Corporate-Selected-Projects\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Corporate-Selected-Projects\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"Corporate-Selected-Projects\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"Corporate-Selected-Projects\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"Corporate-Selected-Projects\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"Corporate-Selected-Projects\\/slide7.jpg\"}],\"Corporate-Clients\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Clients\\/slide1.jpg\"}],\"Corporate-Text-Block\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Text-Block\\/slide1.jpg\"}],\"Corporate-Mobile-App\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Mobile-App\\/slide1.jpg\"}],\"Corporate-Contacts\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Contacts\\/slide1.jpg\"}],\"Corporate-Footer\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Footer\\/slide1.jpg\"}],\"Corporate-Scroll-To-Top\":[{\"title\":\"Slide 1\",\"img\":\"Corporate-Scroll-To-Top\\/slide1.jpg\"}],\"geometric-menu\":[{\"title\":\"Slide 1\",\"img\":\"geometric-menu\\/slide1.jpg\"}],\"geometric-hero\":[{\"title\":\"Slide 1\",\"img\":\"geometric-hero\\/slide1.jpg\"}],\"geometric-grid\":[{\"title\":\"Slide 1\",\"img\":\"geometric-grid\\/slide1.jpg\"}],\"geometric-about\":[{\"title\":\"Slide 1\",\"img\":\"geometric-about\\/slide1.jpg\"}],\"geometric-texts\":[{\"title\":\"Slide 1\",\"img\":\"geometric-texts\\/slide1.jpg\"}],\"geometric-services\":[{\"title\":\"Slide 1\",\"img\":\"geometric-services\\/slide1.jpg\"}],\"geometric-texts-2\":[{\"title\":\"Slide 1\",\"img\":\"geometric-texts-2\\/slide1.jpg\"}],\"geometric-testimonials\":[{\"title\":\"Slide 1\",\"img\":\"geometric-testimonials\\/slide1.jpg\"}],\"geometric-footer\":[{\"title\":\"Slide 1\",\"img\":\"geometric-footer\\/slide1.jpg\"}],\"geometric-lightbox\":[{\"title\":\"Slide 1\",\"img\":\"geometric-lightbox\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"geometric-lightbox\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"geometric-lightbox\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"geometric-lightbox\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"geometric-lightbox\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"geometric-lightbox\\/slide6.jpg\"}],\"brutal-menu\":[{\"title\":\"Slide 1\",\"img\":\"brutal-menu\\/slide1.jpg\"}],\"brutal-hero\":[{\"title\":\"Slide 1\",\"img\":\"brutal-hero\\/slide1.jpg\"}],\"brutal-about\":[{\"title\":\"Slide 1\",\"img\":\"brutal-about\\/slide1.jpg\"}],\"brutal-highlight\":[{\"title\":\"Slide 1\",\"img\":\"brutal-highlight\\/slide1.jpg\"}],\"brutal-projects\":[{\"title\":\"Slide 1\",\"img\":\"brutal-projects\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"brutal-projects\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"brutal-projects\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"brutal-projects\\/slide4.jpg\"}],\"brutal-services\":[{\"title\":\"Slide 1\",\"img\":\"brutal-services\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"brutal-services\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"brutal-services\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"brutal-services\\/slide4.jpg\"}],\"brutal-callout\":[{\"title\":\"Slide 1\",\"img\":\"brutal-callout\\/slide1.jpg\"}],\"brutal-footer\":[{\"title\":\"Slide 1\",\"img\":\"brutal-footer\\/slide1.jpg\"}],\"Church-Header\":[{\"title\":\"Slide 1\",\"img\":\"Church-Header\\/slide1.jpg\"}],\"Church-Upcoming-Events\":[{\"title\":\"Slide 1\",\"img\":\"Church-Upcoming-Events\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Church-Upcoming-Events\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Church-Upcoming-Events\\/slide3.jpg\"}],\"Church-About\":[{\"title\":\"Slide 1\",\"img\":\"Church-About\\/slide1.jpg\"}],\"Church-Pastors\":[{\"title\":\"Slide 1\",\"img\":\"Church-Pastors\\/slide1.jpg\"}],\"Church-Photo-Gallery\":[{\"title\":\"Slide 1\",\"img\":\"Church-Photo-Gallery\\/slide1.jpg\"}],\"Church-Community\":[{\"title\":\"Slide 1\",\"img\":\"Church-Community\\/slide1.jpg\"}],\"Church-Sermon\":[{\"title\":\"Slide 1\",\"img\":\"Church-Sermon\\/slide1.jpg\"}],\"Church-Contacts\":[{\"title\":\"Slide 1\",\"img\":\"Church-Contacts\\/slide1.jpg\"}],\"Church-Footer\":[{\"title\":\"Slide 1\",\"img\":\"Church-Footer\\/slide1.jpg\"}],\"Church-Light-Header\":[{\"title\":\"Slide 1\",\"img\":\"Church-Light-Header\\/slide1.jpg\"}],\"Church-Light-Upcoming-Events\":[{\"title\":\"Slide 1\",\"img\":\"Church-Light-Upcoming-Events\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Church-Light-Upcoming-Events\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Church-Light-Upcoming-Events\\/slide3.jpg\"}],\"Church-Light-About\":[{\"title\":\"Slide 1\",\"img\":\"Church-Light-About\\/slide1.jpg\"}],\"Church-Light-Pastors\":[{\"title\":\"Slide 1\",\"img\":\"Church-Light-Pastors\\/slide1.jpg\"}],\"Church-Light-Photo-Gallery\":[{\"title\":\"Slide 1\",\"img\":\"Church-Light-Photo-Gallery\\/slide1.jpg\"}],\"Church-Light-Community\":[{\"title\":\"Slide 1\",\"img\":\"Church-Light-Community\\/slide1.jpg\"}],\"Church-Light-Sermon\":[{\"title\":\"Slide 1\",\"img\":\"Church-Light-Sermon\\/slide1.jpg\"}],\"Church-Light-Contacts\":[{\"title\":\"Slide 1\",\"img\":\"Church-Light-Contacts\\/slide1.jpg\"}],\"Church-Light-Footer\":[{\"title\":\"Slide 1\",\"img\":\"Church-Light-Footer\\/slide1.jpg\"}],\"rockable-menu\":[{\"title\":\"Slide 1\",\"img\":\"rockable-menu\\/slide1.jpg\"}],\"rockable-hero\":[{\"title\":\"Slide 1\",\"img\":\"rockable-hero\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"rockable-hero\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"rockable-hero\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"rockable-hero\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"rockable-hero\\/slide5.jpg\"}],\"rockable-lineup\":[{\"title\":\"Slide 1\",\"img\":\"rockable-lineup\\/slide1.jpg\"}],\"rockable-lineup-2\":[{\"title\":\"Slide 1\",\"img\":\"rockable-lineup-2\\/slide1.jpg\"}],\"rockable-gallery-title\":[{\"title\":\"Slide 1\",\"img\":\"rockable-gallery-title\\/slide1.jpg\"}],\"rockable-gallery\":[{\"title\":\"Slide 1\",\"img\":\"rockable-gallery\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"rockable-gallery\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"rockable-gallery\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"rockable-gallery\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"rockable-gallery\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"rockable-gallery\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"rockable-gallery\\/slide7.jpg\"}],\"rockable-sponsors\":[{\"title\":\"Slide 1\",\"img\":\"rockable-sponsors\\/slide1.jpg\"}],\"rockable-footer\":[{\"title\":\"Slide 1\",\"img\":\"rockable-footer\\/slide1.jpg\"}],\"rockable-detail-modal\":[{\"title\":\"Slide 1\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 3\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 4\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 5\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 6\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 7\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 8\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 9\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 10\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 11\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 12\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 13\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 14\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 15\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 16\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 17\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"},{\"title\":\"Slide 18\",\"img\":\"rockable-detail-modal\\/slide1.jpg\"}],\"rockable-detail-modal-2\":[{\"title\":\"Slide 1\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 3\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 4\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 5\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 6\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 7\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 8\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 9\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 10\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 11\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 12\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 13\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 14\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 15\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 16\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 17\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 18\",\"img\":\"rockable-detail-modal-2\\/slide1.jpg\"}],\"real-estate-showcase-slider\":[{\"title\":\"Slide 1\",\"img\":\"Real-Estate-Showcase-Slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Real-Estate-Showcase-Slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Real-Estate-Showcase-Slider\\/slide3.jpg\"}],\"isometric-slider\":[{\"title\":\"Slide 1\",\"img\":\"isometric-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"isometric-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"isometric-slider\\/slide3.jpg\"}],\"E-Commerce-Slider\":[{\"title\":\"Slide 1\",\"img\":\"Shoes-Store-Slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Shoes-Store-Slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Shoes-Store-Slider\\/slide3.jpg\"}],\"E-Commerce-Slider-Modal\":[{\"title\":\"Slide 1\",\"img\":\"Shoes-Store-Slider-Modal\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Shoes-Store-Slider-Modal\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Shoes-Store-Slider-Modal\\/slide3.jpg\"}],\"Woo-Commerce-Slider-Dynamic\":[{\"title\":\"Slide 1\",\"img\":\"Shoes-Store-Slider-Dynamic\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Shoes-Store-Slider-Dynamic\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Shoes-Store-Slider-Dynamic\\/slide3.jpg\"}],\"blooming-header\":[{\"title\":\"Slide 1\",\"img\":\"blooming-header\\/slide1.jpg\"}],\"blooming-about\":[{\"title\":\"Slide 1\",\"img\":\"blooming-about\\/slide1.jpg\"}],\"blooming-portfolio\":[{\"title\":\"Slide 1\",\"img\":\"blooming-portfolio\\/slide1.jpg\"}],\"blooming-wedding-title\":[{\"title\":\"Slide 1\",\"img\":\"blooming-wedding-title\\/slide1.jpg\"}],\"blooming-wedding-carousel\":[{\"title\":\"Slide 1\",\"img\":\"blooming-wedding-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"blooming-wedding-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"blooming-wedding-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"blooming-wedding-carousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"blooming-wedding-carousel\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"blooming-wedding-carousel\\/slide6.jpg\"}],\"blooming-wedding-text\":[{\"title\":\"Slide 1\",\"img\":\"blooming-wedding-text\\/slide1.jpg\"}],\"blooming-parties-title\":[{\"title\":\"Slide 1\",\"img\":\"blooming-parties-title\\/slide1.jpg\"}],\"blooming-parties-carousel\":[{\"title\":\"Slide 1\",\"img\":\"blooming-parties-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"blooming-parties-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"blooming-parties-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"blooming-parties-carousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"blooming-parties-carousel\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"blooming-parties-carousel\\/slide6.jpg\"}],\"blooming-parties-text\":[{\"title\":\"Slide 1\",\"img\":\"blooming-parties-text\\/slide1.jpg\"}],\"blooming-funeral-title\":[{\"title\":\"Slide 1\",\"img\":\"blooming-funeral-title\\/slide1.jpg\"}],\"blooming-funeral-slider\":[{\"title\":\"Slide 1\",\"img\":\"blooming-funeral-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"blooming-funeral-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"blooming-funeral-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"blooming-funeral-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"blooming-funeral-slider\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"blooming-funeral-slider\\/slide6.jpg\"}],\"blooming-funeral-text\":[{\"title\":\"Slide 1\",\"img\":\"blooming-funeral-text\\/slide1.jpg\"}],\"blooming-contact\":[{\"title\":\"Slide 1\",\"img\":\"blooming-contact\\/slide1.jpg\"}],\"particle-hero\":[{\"title\":\"Slide 1\",\"img\":\"particle-hero\\/slide1.jpg\"}],\"bubble-morph-hero\":[{\"title\":\"Slide 1\",\"img\":\"bubble-morph-hero\\/slide1.jpg\"}],\"parallax-hero\":[{\"title\":\"Slide 1\",\"img\":\"parallax-hero\\/slide1.jpg\"}],\"video-hero\":[{\"title\":\"Slide 1\",\"img\":\"video-hero\\/slide1.jpg\"}],\"ken-burns-hero\":[{\"title\":\"Slide 1\",\"img\":\"ken-burns-hero\\/slide1.jpg\"}],\"basic-hero-collection\":[{\"title\":\"Slide 1\",\"img\":\"basic-hero-collection\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"basic-hero-collection\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"basic-hero-collection\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"basic-hero-collection\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"basic-hero-collection\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"basic-hero-collection\\/slide6.jpg\"}],\"launching-very-soon\":[{\"title\":\"Slide 1\",\"img\":\"launching-very-soon\\/slide1.jpg\"}],\"Under-Construction\":[{\"title\":\"Slide 1\",\"img\":\"Under-Construction\\/slide1.jpg\"}],\"Particle-Effect\":[{\"title\":\"Slide 1\",\"img\":\"Particle-Effect\\/slide1.jpg\"}],\"Particle-Effect-2\":[{\"title\":\"Slide 1\",\"img\":\"Particle-Effect-2\\/slide1.jpg\"}],\"stark-menu\":[{\"title\":\"Slide 1\",\"img\":\"stark-menu\\/slide1.jpg\"}],\"stark-header\":[{\"title\":\"Slide 1\",\"img\":\"stark-header\\/slide1.jpg\"}],\"stark-content\":[{\"title\":\"Slide 1\",\"img\":\"stark-content\\/slide1.jpg\"}],\"stark-carousel\":[{\"title\":\"Slide 1\",\"img\":\"stark-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"stark-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"stark-carousel\\/slide3.jpg\"}],\"stark-portfolio\":[{\"title\":\"Slide 1\",\"img\":\"stark-portfolio\\/slide1.jpg\"}],\"stark-portfolio-detail\":[{\"title\":\"Slide 1\",\"img\":\"stark-portfolio-detail\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"stark-portfolio-detail\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"stark-portfolio-detail\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"stark-portfolio-detail\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"stark-portfolio-detail\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"stark-portfolio-detail\\/slide6.jpg\"}],\"stark-contact\":[{\"title\":\"Slide 1\",\"img\":\"stark-contact\\/slide1.jpg\"}],\"stark-footer\":[{\"title\":\"Slide 1\",\"img\":\"stark-footer\\/slide1.jpg\"}],\"stark-newsletter\":[{\"title\":\"Slide 1\",\"img\":\"stark-newsletter\\/slide1.jpg\"}],\"big-summer-sale\":[{\"title\":\"Slide 1\",\"img\":\"big-summer-sale\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"big-summer-sale\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"big-summer-sale\\/slide3.jpg\"}],\"traveller-carousel\":[{\"title\":\"Slide 1\",\"img\":\"traveller-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"traveller-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"traveller-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"traveller-carousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"traveller-carousel\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"traveller-carousel\\/slide6.jpg\"}],\"project-carousel\":[{\"title\":\"Slide 1\",\"img\":\"project-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"project-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"project-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"project-carousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"project-carousel\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"project-carousel\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"project-carousel\\/slide7.jpg\"}],\"news-carousel\":[{\"title\":\"Slide 1\",\"img\":\"news-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"news-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"news-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"news-carousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"news-carousel\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"news-carousel\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"news-carousel\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"news-carousel\\/slide8.jpg\"}],\"story-menu\":[{\"title\":\"Slide 1\",\"img\":\"story-menu\\/slide1.jpg\"}],\"story-header\":[{\"title\":\"Slide 1\",\"img\":\"story-header\\/slide1.jpg\"}],\"story-block-1\":[{\"title\":\"Slide 1\",\"img\":\"story-block-1\\/slide1.jpg\"}],\"story-content-1\":[{\"title\":\"Slide 1\",\"img\":\"story-content-1\\/slide1.jpg\"}],\"story-block-2\":[{\"title\":\"Slide 1\",\"img\":\"story-block-2\\/slide1.jpg\"}],\"story-block-3\":[{\"title\":\"Slide 1\",\"img\":\"story-block-3\\/slide1.jpg\"}],\"story-content-2\":[{\"title\":\"Slide 1\",\"img\":\"story-content-2\\/slide1.jpg\"}],\"story-block-4\":[{\"title\":\"Slide 1\",\"img\":\"story-block-4\\/slide1.jpg\"}],\"story-content-3\":[{\"title\":\"Slide 1\",\"img\":\"story-content-3\\/slide1.jpg\"}],\"mini-website\":[{\"title\":\"Slide 1\",\"img\":\"mini-website\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"mini-website\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"mini-website\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"mini-website\\/slide4.jpg\"}],\"food-delivery\":[{\"title\":\"Slide 1\",\"img\":\"food-delivery\\/slide1.jpg\"}],\"slider-with-illustrations\":[{\"title\":\"Slide 1\",\"img\":\"slider-with-illustrations\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"slider-with-illustrations\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"slider-with-illustrations\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"slider-with-illustrations\\/slide4.jpg\"}],\"zen-menu\":[{\"title\":\"Slide 1\",\"img\":\"zen-menu\\/slide1.jpg\"}],\"zen-header\":[{\"title\":\"Slide 1\",\"img\":\"zen-header\\/slide1.jpg\"}],\"zen-about\":[{\"title\":\"Slide 1\",\"img\":\"zen-about\\/slide1.jpg\"}],\"zen-features\":[{\"title\":\"Slide 1\",\"img\":\"zen-features\\/slide1.jpg\"}],\"zen-video\":[{\"title\":\"Slide 1\",\"img\":\"zen-video\\/slide1.jpg\"}],\"zen-pricing\":[{\"title\":\"Slide 1\",\"img\":\"zen-pricing\\/slide1.jpg\"}],\"zen-testimonials-title\":[{\"title\":\"Slide 1\",\"img\":\"zen-testimonials-title\\/slide1.jpg\"}],\"zen-testimonials\":[{\"title\":\"Slide 1\",\"img\":\"zen-testimonials\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"zen-testimonials\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"zen-testimonials\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"zen-testimonials\\/slide4.jpg\"}],\"zen-footer\":[{\"title\":\"Slide 1\",\"img\":\"zen-footer\\/slide1.jpg\"}],\"Paintbrush-Effect\":[{\"title\":\"Slide 1\",\"img\":\"Paintbrush-Effect\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Paintbrush-Effect\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Paintbrush-Effect\\/slide3.jpg\"}],\"Photographer-Header\":[{\"title\":\"Slide 1\",\"img\":\"Photographer-Header\\/slide1.jpg\"}],\"Photographer-Welcome-Screen\":[{\"title\":\"Slide 1\",\"img\":\"Photographer-Welcome-Screen\\/slide1.jpg\"}],\"Photographer-Showcase\":[{\"title\":\"Slide 1\",\"img\":\"Photographer-Showcase\\/slide1.jpg\"}],\"Photographer-Portfolio\":[{\"title\":\"Slide 1\",\"img\":\"Photographer-Portfolio\\/slide1.jpg\"}],\"Photographer-Contacts\":[{\"title\":\"Slide 1\",\"img\":\"Photographer-Contacts\\/slide1.jpg\"}],\"Photographer-Footer\":[{\"title\":\"Slide 1\",\"img\":\"Photographer-Footer\\/slide1.jpg\"}],\"Photographer-Modal\":[{\"title\":\"Slider 1\",\"img\":\"Photographer-Modal\\/slide1.jpg\"}],\"black-friday-scroll-video\":[{\"title\":\"Slide 1\",\"img\":\"black-friday-scroll-video\\/slide1.jpg\"}],\"charity-menu\":[{\"title\":\"Slide 1\",\"img\":\"charity-menu\\/slide1.jpg\"}],\"charity-header\":[{\"title\":\"Slide 1\",\"img\":\"charity-header\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"charity-header\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"charity-header\\/slide3.jpg\"}],\"charity-mission\":[{\"title\":\"Slide 1\",\"img\":\"charity-mission\\/slide1.jpg\"}],\"charity-funds\":[{\"title\":\"Slide 1\",\"img\":\"charity-funds\\/slide1.jpg\"}],\"charity-success\":[{\"title\":\"Slide 1\",\"img\":\"charity-success\\/slide1.jpg\"}],\"charity-stories\":[{\"title\":\"Slide 1\",\"img\":\"charity-stories\\/slide1.jpg\"}],\"charity-worldmap\":[{\"title\":\"Slide 1\",\"img\":\"charity-worldmap\\/slide1.jpg\"}],\"charity-large-image\":[{\"title\":\"Slide 1\",\"img\":\"charity-large-image\\/slide1.jpg\"}],\"charity-sponsors\":[{\"title\":\"Slide 1\",\"img\":\"charity-sponsors\\/slide1.jpg\"}],\"charity-help\":[{\"title\":\"Slide 1\",\"img\":\"charity-help\\/slide1.jpg\"}],\"charity-footer\":[{\"title\":\"Slide 1\",\"img\":\"charity-footer\\/slide1.jpg\"}],\"cinematic-hero-titles\":[{\"title\":\"Slide 1\",\"img\":\"cinematic-hero-titles\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cinematic-hero-titles\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cinematic-hero-titles\\/slide3.jpg\"}],\"design-dna-scroll-video\":[{\"title\":\"Slide 1\",\"img\":\"design-dna-scroll-video\\/slide1.jpg\"}],\"food-delivery-lottie-scroll\":[{\"title\":\"Slide 1\",\"img\":\"food-delivery-lottie-scroll\\/slide1.jpg\"}],\"food-recipe-carousel\":[{\"title\":\"Slide 1\",\"img\":\"food-recipe-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"food-recipe-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"food-recipe-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"food-recipe-carousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"food-recipe-carousel\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"food-recipe-carousel\\/slide6.jpg\"}],\"food-recipe-modal\":[{\"title\":\"Slide 1\",\"img\":\"food-recipe-modal\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"food-recipe-modal\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"food-recipe-modal\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"food-recipe-modal\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"food-recipe-modal\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"food-recipe-modal\\/slide6.jpg\"}],\"corporate-carousel-template\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/corporate_carousel_bundle.jpg\"}],\"corporate-carousel\":[{\"title\":\"Slide 1\",\"img\":\"corporate-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"corporate-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"corporate-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"corporate-carousel\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"corporate-carousel\\/slide5.jpg\"}],\"corporate-lightbox\":[{\"title\":\"Slide 1\",\"img\":\"corporate-lightbox\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"corporate-lightbox\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"corporate-lightbox\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"corporate-lightbox\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"corporate-lightbox\\/slide5.jpg\"}],\"cyber-carousel-template\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/cybercarousel_bundle.jpg\"}],\"cyber-carousel\":[{\"title\":\"Slide 1\",\"img\":\"cyber-carousel\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cyber-carousel\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cyber-carousel\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"cyber-carousel\\/slide4.jpg\"}],\"cyber-carousel-lightbox\":[{\"title\":\"Slide 1\",\"img\":\"cyber-carousel-lightbox\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cyber-carousel-lightbox\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cyber-carousel-lightbox\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"cyber-carousel-lightbox\\/slide4.jpg\"}],\"woocommerce-carousel-one\":[{\"title\":\"Slide 1\",\"img\":\"woocommerce-carousel-one\\/slide1.jpg\"}],\"woocommerce-carousel-one-static\":[{\"title\":\"Slide 1\",\"img\":\"woocommerce-carousel-one-static\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"woocommerce-carousel-one-static\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"woocommerce-carousel-one-static\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"woocommerce-carousel-one-static\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"woocommerce-carousel-one-static\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"woocommerce-carousel-one-static\\/slide6.jpg\"}],\"woocommerce-carousel-two\":[{\"title\":\"Slide 1\",\"img\":\"woocommerce-carousel-two\\/slide1.jpg\"}],\"woocommerce-carousel-two-static\":[{\"title\":\"Slide 1\",\"img\":\"woocommerce-carousel-two-static\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"woocommerce-carousel-two-static\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"woocommerce-carousel-two-static\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"woocommerce-carousel-two-static\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"woocommerce-carousel-two-static\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"woocommerce-carousel-two-static\\/slide6.jpg\"}],\"woocommerce-feature-slider\":[{\"title\":\"Slide 1\",\"img\":\"woocommerce-feature-slider\\/slide1.jpg\"}],\"woocommerce-feature-slider-static\":[{\"title\":\"Slide 1\",\"img\":\"woocommerce-feature-slider-static\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"woocommerce-feature-slider-static\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"woocommerce-feature-slider-static\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"woocommerce-feature-slider-static\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"woocommerce-feature-slider-static\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"woocommerce-feature-slider-static\\/slide6.jpg\"}],\"woo-liquid-slider\":[{\"title\":\"Slide 1\",\"img\":\"woo-liquid-slider\\/slide1.jpg\"}],\"woocommerce-liquid-slider-static\":[{\"title\":\"Slide 1\",\"img\":\"woocommerce-liquid-slider-static\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"woocommerce-liquid-slider-static\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"woocommerce-liquid-slider-static\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"woocommerce-liquid-slider-static\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"woocommerce-liquid-slider-static\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"woocommerce-liquid-slider-static\\/slide6.jpg\"}],\"woo-slider-pack\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/woosliderpack_dynamic.jpg\"}],\"woo-slider-pack-static\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/woosliderpack_static.jpg\"}],\"creative-hero-collection\":[{\"title\":\"Slide 1\",\"img\":\"creative-hero-collection\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"creative-hero-collection\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"creative-hero-collection\\/slide3.jpg\"}],\"photographer-slider\":[{\"title\":\"Slide 1\",\"img\":\"photographer-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"photographer-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"photographer-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"photographer-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"photographer-slider\\/slide5.jpg\"}],\"realestate-slider\":[{\"title\":\"Slide 1\",\"img\":\"realestate-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"realestate-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"realestate-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"realestate-slider\\/slide4.jpg\"}],\"saas-product-slider\":[{\"title\":\"Slide 1\",\"img\":\"saas-product-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"saas-product-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"saas-product-slider\\/slide3.jpg\"}],\"cinematic-wildlife-template\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/cinematic-wildlife-package.jpg\"}],\"cinematic-wildlife-slider\":[{\"title\":\"Slide 1\",\"img\":\"cinematic-wildlife-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cinematic-wildlife-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cinematic-wildlife-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"cinematic-wildlife-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"cinematic-wildlife-slider\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"cinematic-wildlife-slider\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"cinematic-wildlife-slider\\/slide7.jpg\"}],\"cinematic-wildlife-modal\":[{\"title\":\"Slide 1\",\"img\":\"cinematic-wildlife-modal\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cinematic-wildlife-modal\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cinematic-wildlife-modal\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"cinematic-wildlife-modal\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"cinematic-wildlife-modal\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"cinematic-wildlife-modal\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"cinematic-wildlife-modal\\/slide7.jpg\"}],\"gaming-stats-presentation-slider\":[{\"title\":\"Slide 1\",\"img\":\"gaming-stats-presentation-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"gaming-stats-presentation-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"gaming-stats-presentation-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"gaming-stats-presentation-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"gaming-stats-presentation-slider\\/slide5.jpg\"}],\"coffee-flavours\":[{\"title\":\"Slide 1\",\"img\":\"coffee-flavors\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"coffee-flavors\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"coffee-flavors\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"coffee-flavors\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"coffee-flavors\\/slide5.jpg\"}],\"showreel-slider\":[{\"title\":\"Slide 1\",\"img\":\"showreel-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"showreel-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"showreel-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"showreel-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"showreel-slider\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"showreel-slider\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"showreel-slider\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"showreel-slider\\/slide8.jpg\"},{\"title\":\"Slide 9\",\"img\":\"showreel-slider\\/slide9.jpg\"},{\"title\":\"Slide 10\",\"img\":\"showreel-slider\\/slide10.jpg\"}],\"visual-art-forms\":[{\"title\":\"Slide 1\",\"img\":\"visual-art-forms\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"visual-art-forms\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"visual-art-forms\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"visual-art-forms\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"visual-art-forms\\/slide5.jpg\"}],\"bg-effect-hero\":[{\"title\":\"Slide 1\",\"img\":\"bg-effect-hero\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"bg-effect-hero\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"bg-effect-hero\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"bg-effect-hero\\/slide4.jpg\"}],\"cyberfunk\":[{\"title\":\"Slide 1\",\"img\":\"cyberfunk\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"cyberfunk\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"cyberfunk\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"cyberfunk\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"cyberfunk\\/slide5.jpg\"}],\"motion-blur-portfolio\":[{\"title\":\"Slide 1\",\"img\":\"motion-blur-portfolio\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"motion-blur-portfolio\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"motion-blur-portfolio\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"motion-blur-portfolio\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"motion-blur-portfolio\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"motion-blur-portfolio\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"motion-blur-portfolio\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"motion-blur-portfolio\\/slide8.jpg\"}],\"portal-effect-hero\":[{\"title\":\"Slide 1\",\"img\":\"portal-effect-hero\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"portal-effect-hero\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"portal-effect-hero\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"portal-effect-hero\\/slide4.jpg\"}],\"winery-timeline\":[{\"title\":\"Slide 1\",\"img\":\"winery-timeline\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"winery-timeline\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"winery-timeline\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"winery-timeline\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"winery-timeline\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"winery-timeline\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"winery-timeline\\/slide7.jpg\"}],\"smart-living-one-pager-v1\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/Smart-Living-One-Pager-V1.jpg\"}],\"smart-living-one-pager-v2\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/Smart-Living-One-Pager-V2.jpg\"}],\"smart-living-one-pager-v3\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/Smart-Living-One-Pager-V3.jpg\"}],\"menu-1\":[{\"title\":\"Slide 1\",\"img\":\"menu-1\\/slide1.jpg\"}],\"onepage-hero-1\":[{\"title\":\"Slide 1\",\"img\":\"onepage-hero-1\\/slide1.jpg\"}],\"about1\":[{\"title\":\"Slide 1\",\"img\":\"about1\\/slide1.jpg\"}],\"services1\":[{\"title\":\"Slide 1\",\"img\":\"services1\\/slide1.jpg\"}],\"projects1\":[{\"title\":\"Slide 1\",\"img\":\"projects1\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"projects1\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"projects1\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"projects1\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"projects1\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"projects1\\/slide6.jpg\"}],\"footer-1\":[{\"title\":\"Slide 1\",\"img\":\"footer-1\\/slide1.jpg\"}],\"explainer-block-1-part1\":[{\"title\":\"Slide 1\",\"img\":\"explainer-block-1-part1\\/slide1.jpg\"}],\"explainer-block-1-part2\":[{\"title\":\"Slide 1\",\"img\":\"explainer-block-1-part2\\/slide1.jpg\"}],\"projects-modal-1\":[{\"title\":\"Slide 1\",\"img\":\"projects-modal-1\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"projects-modal-1\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"projects-modal-1\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"projects-modal-1\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"projects-modal-1\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"projects-modal-1\\/slide6.jpg\"}],\"menu-2\":[{\"title\":\"Slide 1\",\"img\":\"menu-2\\/slide1.jpg\"}],\"hero-2\":[{\"title\":\"Slide 1\",\"img\":\"hero-2\\/slide1.jpg\"}],\"services-2\":[{\"title\":\"Slide 1\",\"img\":\"services-2\\/services2-thumbnail.jpg\"}],\"about-2\":[{\"title\":\"Slide 1\",\"img\":\"about-2\\/slide1.jpg\"}],\"projects-2\":[{\"title\":\"Slide 1\",\"img\":\"projects-2\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"projects-2\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"projects-2\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"projects-2\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"projects-2\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"projects-2\\/slide6.jpg\"}],\"footer2\":[{\"title\":\"Slide 1\",\"img\":\"footer2\\/slide1.jpg\"}],\"explainer-block-2-part1\":[{\"title\":\"Slide 1\",\"img\":\"explainer-block-2-part1\\/slide1.jpg\"}],\"explainer-block-2-part2\":[{\"title\":\"Slide 1\",\"img\":\"explainer-block-2-part2\\/slide1.jpg\"}],\"projects-modal-2\":[{\"title\":\"Slide 1\",\"img\":\"projects-modal-2\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"projects-modal-2\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"projects-modal-2\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"projects-modal-2\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"projects-modal-2\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"projects-modal-2\\/slide6.jpg\"}],\"menu-3\":[{\"title\":\"Slide 1\",\"img\":\"menu-3\\/slide1.jpg\"}],\"hero-3\":[{\"title\":\"Slide 1\",\"img\":\"hero-3\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"hero-3\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"hero-3\\/slide3.jpg\"}],\"about-3\":[{\"title\":\"Slide 1\",\"img\":\"about-3\\/slide1.jpg\"}],\"services-3\":[{\"title\":\"Slide 1\",\"img\":\"services-3\\/slide1.jpg\"}],\"projects-3\":[{\"title\":\"Slide 1\",\"img\":\"projects-3\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"projects-3\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"projects-3\\/slide3.jpg\"}],\"footer-3\":[{\"title\":\"Slide 1\",\"img\":\"footer-3\\/slide1.jpg\"}],\"explainer-block-3-part1\":[{\"title\":\"Slide 1\",\"img\":\"explainer-block-3-part1\\/slide1.jpg\"}],\"explainer-block-3-part2\":[{\"title\":\"Slide 1\",\"img\":\"explainer-block-3-part2\\/slide1.jpg\"}],\"projects-modal-3\":[{\"title\":\"Slide 1\",\"img\":\"projects-modal-3\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"projects-modal-3\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"projects-modal-3\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"projects-modal-3\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"projects-modal-3\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"projects-modal-3\\/slide6.jpg\"}],\"urban-street-skate-slider\":[{\"title\":\"Slide 1\",\"img\":\"urban-street-skate-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"urban-street-skate-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"urban-street-skate-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"urban-street-skate-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"urban-street-skate-slider\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"urban-street-skate-slider\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"urban-street-skate-slider\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"urban-street-skate-slider\\/slide8.jpg\"},{\"title\":\"Slide 9\",\"img\":\"urban-street-skate-slider\\/slide9.jpg\"},{\"title\":\"Slide 10\",\"img\":\"urban-street-skate-slider\\/slide10.jpg\"},{\"title\":\"Slide 11\",\"img\":\"urban-street-skate-slider\\/slide11.jpg\"},{\"title\":\"Slide 12\",\"img\":\"urban-street-skate-slider\\/slide12.jpg\"}],\"yummy-burgers\":[{\"title\":\"Slide 1\",\"img\":\"yummy-burgers\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"yummy-burgers\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"yummy-burgers\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"yummy-burgers\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"yummy-burgers\\/slide5.jpg\"}],\"tattoo-event-website-template-package\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/tattoo_event_website_package.jpg\"}],\"tattoo-event-hero-slider\":[{\"title\":\"Slide 1\",\"img\":\"tattoo-event-hero-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"tattoo-event-hero-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"tattoo-event-hero-slider\\/slide3.jpg\"}],\"tattoo-event-about\":[{\"title\":\"Slide 1\",\"img\":\"tattoo-event-about\\/slide1.jpg\"}],\"tattoo-event-artists\":[{\"title\":\"Slide 1\",\"img\":\"tattoo-event-artists\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"tattoo-event-artists\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"tattoo-event-artists\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"tattoo-event-artists\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"tattoo-event-artists\\/slide5.jpg\"}],\"tattoo-event-schedule\":[{\"title\":\"Slide 1\",\"img\":\"tattoo-event-schedule\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"tattoo-event-schedule\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"tattoo-event-schedule\\/slide3.jpg\"}],\"tattoo-event-news\":[{\"title\":\"Slide 1\",\"img\":\"tattoo-event-news\\/slide1.jpg\"}],\"tattoo-event-footer\":[{\"title\":\"Slide 1\",\"img\":\"tattoo-event-footer\\/slide1.jpg\"}],\"startup-website-template\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/startup-website-template.jpg\"}],\"startup-menu\":[{\"title\":\"Slide 1\",\"img\":\"startup-menu\\/slide1.jpg\"}],\"startup-hero\":[{\"title\":\"Slide 1\",\"img\":\"startup-hero\\/slide1.jpg\"}],\"startup-about\":[{\"title\":\"Slide 1\",\"img\":\"startup-about\\/slide1.jpg\"}],\"startup-features-1\":[{\"title\":\"Slide 1\",\"img\":\"startup-features-1\\/slide1.jpg\"}],\"startup-features-2\":[{\"title\":\"Slide 1\",\"img\":\"startup-features-2\\/slide1.jpg\"}],\"startup-team\":[{\"title\":\"Slide 1\",\"img\":\"startup-team\\/slide1.jpg\"}],\"startup-reviews\":[{\"title\":\"Slide 1\",\"img\":\"startup-reviews\\/slide1.jpg\"}],\"startup-cta\":[{\"title\":\"Slide 1\",\"img\":\"startup-cta\\/slide1.jpg\"}],\"startup-footer\":[{\"title\":\"Slide 1\",\"img\":\"startup-footer\\/slide1.jpg\"}],\"startup-video-modal\":[{\"title\":\"Slide 1\",\"img\":\"startup-video-modal\\/slide1.jpg\"}],\"christmas-gift-card-landing-page\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/christmas-gift-card-landing-page.jpg\"}],\"christmas-landing-page-1\":[{\"title\":\"Slide 1\",\"img\":\"christmas-gift-card-landing-page\\/slide1.jpg\"}],\"christmas-landing-page-2\":[{\"title\":\"Slide 1\",\"img\":\"christmas-landing-page-2\\/slide1.jpg\"}],\"image-slider\":[{\"title\":\"Slide 1\",\"img\":\"image-slider\\/slide-1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"image-slider\\/slide-2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"image-slider\\/slide-3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"image-slider\\/slide-4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"image-slider\\/slide-5.jpg\"}],\"full-width-slider\":[{\"title\":\"Slide 1\",\"img\":\"full-width-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"full-width-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"full-width-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"full-width-slider\\/slide4.jpg\"}],\"app-website-template\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/app-website-template.jpg\"}],\"app-website-menu\":[{\"title\":\"Slide 1\",\"img\":\"app-website-menu\\/slide1.jpg\"}],\"app-website-hero\":[{\"title\":\"Slide 1\",\"img\":\"app-website-hero\\/slide1.jpg\"}],\"app-download-buttons\":[{\"title\":\"Slide 1\",\"img\":\"app-download-buttons\\/slide1.jpg\"}],\"app-website-about\":[{\"title\":\"Slide 1\",\"img\":\"app-website-about\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"app-website-about\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"app-website-about\\/slide3.jpg\"}],\"app-website-features\":[{\"title\":\"Slide 1\",\"img\":\"app-website-features\\/slide1.jpg\"}],\"app-website-video-cta\":[{\"title\":\"Slide 1\",\"img\":\"app-website-video-cta\\/slide1.jpg\"}],\"app-website-screenshots\":[{\"title\":\"Slide 1\",\"img\":\"app-website-screenshots\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"app-website-screenshots\\/slide2.jpg\"}],\"app-testimonials-title\":[{\"title\":\"Slide 1\",\"img\":\"app-testimonials-title\\/slide1.jpg\"}],\"app-website-testimonials\":[{\"title\":\"Slide 1\",\"img\":\"app-website-testimonials\\/slide1.jpg\"}],\"app-website-team\":[{\"title\":\"Slide 1\",\"img\":\"app-website-team\\/slide1.jpg\"}],\"app-website-footer\":[{\"title\":\"Slide 1\",\"img\":\"app-website-footer\\/slide1.jpg\"}],\"app-video-modal\":[{\"title\":\"Slide 1\",\"img\":\"app-video-modal\\/slide1.jpg\"}],\"testimonial-carousel-pack\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/testimonial-carousel-pack.jpg\"}],\"testimonial-carousel-1\":[{\"title\":\"Slide 1\",\"img\":\"testimonial-carousel-1\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"testimonial-carousel-1\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"testimonial-carousel-1\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"testimonial-carousel-1\\/slide4.jpg\"}],\"testimonial-carousel-2\":[{\"title\":\"Slide 1\",\"img\":\"testimonial-carousel-2\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"testimonial-carousel-2\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"testimonial-carousel-2\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"testimonial-carousel-2\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"testimonial-carousel-2\\/slide5.jpg\"}],\"testimonial-carousel-3\":[{\"title\":\"Slide 1\",\"img\":\"testimonial-carousel-3\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"testimonial-carousel-3\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"testimonial-carousel-3\\/slide3.jpg\"}],\"testimonial-carousel-4\":[{\"title\":\"Slide 1\",\"img\":\"testimonial-carousel-4\\/slide1.jpg\"}],\"testimonial-carousel-5\":[{\"title\":\"Slide 1\",\"img\":\"testimonial-carousel-5\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"testimonial-carousel-5\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"testimonial-carousel-5\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"testimonial-carousel-5\\/slide4.jpg\"}],\"deep-dive\":[{\"title\":\"Slide 1\",\"img\":\"deep-dive\\/slide1.jpg\"}],\"particle-wave-showcase\":[{\"title\":\"Slide 1\",\"img\":\"particle-wave-showcase\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"particle-wave-showcase\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"particle-wave-showcase\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"particle-wave-showcase\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"particle-wave-showcase\\/slide5.jpg\"}],\"video-hero-header\":[{\"title\":\"Slide 1\",\"img\":\"video-hero-header\\/slide1.jpg\"}],\"solar-system-showcase-slider\":[{\"title\":\"Slide 1\",\"img\":\"solar-system-showcase-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"solar-system-showcase-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"solar-system-showcase-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"solar-system-showcase-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"solar-system-showcase-slider\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"solar-system-showcase-slider\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"solar-system-showcase-slider\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"solar-system-showcase-slider\\/slide8.jpg\"},{\"title\":\"Slide 9\",\"img\":\"solar-system-showcase-slider\\/slide9.jpg\"}],\"Optic-shop-showcase-slider\":[{\"title\":\"Slide 1\",\"img\":\"Optic-shop-showcase-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"Optic-shop-showcase-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"Optic-shop-showcase-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"Optic-shop-showcase-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"Optic-shop-showcase-slider\\/slide5.jpg\"}],\"charts-template-showcase\":[{\"title\":\"Slide 1\",\"img\":\"charts-template-showcase\\/slide1.jpg\"}],\"fashion-website-slider-template\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/fashion-website-slider.jpg\"}],\"fashion-website-slider\":[{\"title\":\"Slide 1\",\"img\":\"fashion-website-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fashion-website-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"fashion-website-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"fashion-website-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"fashion-website-slider\\/slide5.jpg\"}],\"fashion-website-slider-modal\":[{\"title\":\"Slide 1\",\"img\":\"fashion-website-slider-modal\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fashion-website-slider-modal\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"fashion-website-slider-modal\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"fashion-website-slider-modal\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"fashion-website-slider-modal\\/slide5.jpg\"}],\"furniture-website-slider\":[{\"title\":\"Slide 1\",\"img\":\"furniture-website-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"furniture-website-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"furniture-website-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"furniture-website-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"furniture-website-slider\\/slide5.jpg\"}],\"fitness-gym-website-slider\":[{\"title\":\"Slide 1\",\"img\":\"fitness-gym-website-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fitness-gym-website-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"fitness-gym-website-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"fitness-gym-website-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"fitness-gym-website-slider\\/slide5.jpg\"}],\"ai--robotics-webside-slider-package\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/ai-and-robotics-website-slider-package.jpg\"}],\"ai-and-robotics-website-slider\":[{\"title\":\"Slide 1\",\"img\":\"ai-and-robotics-website-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"ai-and-robotics-website-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"ai-and-robotics-website-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"ai-and-robotics-website-slider\\/slide4.jpg\"}],\"ai-video-modal\":[{\"title\":\"Slide 1\",\"img\":\"ai-video-modal\\/slide1.jpg\"}],\"minimal-typography-website-slider\":[{\"title\":\"Slide 1\",\"img\":\"minimal-typography-website-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"minimal-typography-website-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"minimal-typography-website-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"minimal-typography-website-slider\\/slide4.jpg\"}],\"404-page-collection\":[{\"title\":\"Slide 1\",\"img\":\"404-page-collection\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"404-page-collection\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"404-page-collection\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"404-page-collection\\/slide4.jpg\"}],\"ecommerce-sale-slider\":[{\"title\":\"Slide 1\",\"img\":\"ecommerce-sale-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"ecommerce-sale-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"ecommerce-sale-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"ecommerce-sale-slider\\/slide4.jpg\"}],\"fashion-shop-slider\":[{\"title\":\"Slide 1\",\"img\":\"fashion-shop-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"fashion-shop-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"fashion-shop-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"fashion-shop-slider\\/slide4.jpg\"}],\"lingerie-store-website-slider\":[{\"title\":\"Slide 1\",\"img\":\"lingerie-store-website-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"lingerie-store-website-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"lingerie-store-website-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"lingerie-store-website-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"lingerie-store-website-slider\\/slide5.jpg\"}],\"beach-events-hero-collection\":[{\"title\":\"Slide 1\",\"img\":\"beach-events-hero-collection\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"beach-events-hero-collection\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"beach-events-hero-collection\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"beach-events-hero-collection\\/slide4.jpg\"}],\"creative-portfolio-website-slider-package\":[{\"title\":\"Slide 1\",\"img\":\"packages\\/creative-portfolio-website-slider-package.jpg\"}],\"creative-portfolio-main-slider\":[{\"title\":\"Slide 1\",\"img\":\"creative-portfolio-main-slider\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"creative-portfolio-main-slider\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"creative-portfolio-main-slider\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"creative-portfolio-main-slider\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"creative-portfolio-main-slider\\/slide5.jpg\"},{\"title\":\"Slide 6\",\"img\":\"creative-portfolio-main-slider\\/slide6.jpg\"},{\"title\":\"Slide 7\",\"img\":\"creative-portfolio-main-slider\\/slide7.jpg\"},{\"title\":\"Slide 8\",\"img\":\"creative-portfolio-main-slider\\/slide8.jpg\"}],\"creative-portfolio-project-1\":[{\"title\":\"Slide 1\",\"img\":\"creative-portfolio-project-1\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"creative-portfolio-project-1\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"creative-portfolio-project-1\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"creative-portfolio-project-1\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"creative-portfolio-project-1\\/slide5.jpg\"}],\"creative-portfolio-project-2\":[{\"title\":\"Slide 1\",\"img\":\"creative-portfolio-project-2\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"creative-portfolio-project-2\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"creative-portfolio-project-2\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"creative-portfolio-project-2\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"creative-portfolio-project-2\\/slide5.jpg\"}],\"creative-portfolio-project-3\":[{\"title\":\"Slide 1\",\"img\":\"creative-portfolio-project-3\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"creative-portfolio-project-3\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"creative-portfolio-project-3\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"creative-portfolio-project-3\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"creative-portfolio-project-3\\/slide5.jpg\"}],\"creative-portfolio-project-4\":[{\"title\":\"Slide 1\",\"img\":\"creative-portfolio-project-4\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"creative-portfolio-project-4\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"creative-portfolio-project-4\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"creative-portfolio-project-4\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"creative-portfolio-project-4\\/slide5.jpg\"}],\"creative-portfolio-project-5\":[{\"title\":\"Slide 1\",\"img\":\"creative-portfolio-project-5\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"creative-portfolio-project-5\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"creative-portfolio-project-5\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"creative-portfolio-project-5\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"creative-portfolio-project-5\\/slide5.jpg\"}],\"creative-portfolio-project-6\":[{\"title\":\"Slide 1\",\"img\":\"creative-portfolio-project-6\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"creative-portfolio-project-6\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"creative-portfolio-project-6\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"creative-portfolio-project-6\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"creative-portfolio-project-6\\/slide5.jpg\"}],\"creative-portfolio-project-7\":[{\"title\":\"Slide 1\",\"img\":\"creative-portfolio-project-7\\/slide1.jpg\"},{\"title\":\"Slide 2\",\"img\":\"creative-portfolio-project-7\\/slide2.jpg\"},{\"title\":\"Slide 3\",\"img\":\"creative-portfolio-project-7\\/slide3.jpg\"},{\"title\":\"Slide 4\",\"img\":\"creative-portfolio-project-7\\/slide4.jpg\"},{\"title\":\"Slide 5\",\"img\":\"creative-portfolio-project-7\\/slide5.jpg\"}]}}','no'),(378011,'rs-templates-counter','0','no'),(378012,'revslider_table_version','1.0.12','yes'),(378013,'revslider_update_version','6.4.10','yes'),(378014,'widget_rev-slider-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(378015,'revslider-update-check','1663320969','yes'),(378016,'revslider_update_info','O:8:\"stdClass\":3:{s:7:\"checked\";i:1663320969;s:5:\"basic\";O:8:\"stdClass\":6:{s:4:\"slug\";s:9:\"revslider\";s:7:\"package\";s:0:\"\";s:6:\"tested\";s:5:\"5.9.3\";s:5:\"icons\";a:1:{s:2:\"1x\";s:56:\"//updates.themepunch.tools/revslider/logo.png?rev=6.2.23\";}s:3:\"url\";s:33:\"https://www.sliderrevolution.com/\";s:11:\"new_version\";s:6:\"6.5.31\";}s:4:\"full\";O:8:\"stdClass\":19:{s:7:\"banners\";a:2:{s:3:\"low\";s:57:\"//updates.themepunch.tools/revslider/banner.png?rev=6.5.5\";s:4:\"high\";s:57:\"//updates.themepunch.tools/revslider/banner.png?rev=6.5.5\";}s:4:\"name\";s:17:\"Slider Revolution\";s:4:\"slug\";s:9:\"revslider\";s:6:\"stable\";s:5:\"4.2.0\";s:7:\"version\";s:6:\"6.5.31\";s:6:\"tested\";s:5:\"5.9.3\";s:14:\"upgrade_notice\";a:0:{}s:11:\"last_update\";s:10:\"2022-08-13\";s:12:\"last_updated\";s:10:\"2022-08-13\";s:8:\"requires\";s:3:\"3.6\";s:6:\"author\";s:51:\"
ThemePunch\";s:7:\"package\";s:0:\"\";s:13:\"download_link\";s:0:\"\";s:9:\"file_name\";s:13:\"revslider.zip\";s:15:\"active_installs\";i:9000100;s:8:\"homepage\";s:33:\"https://www.sliderrevolution.com/\";s:8:\"sections\";a:3:{s:11:\"description\";s:497:\"

Slider Revolution WordPress Builder Plugin

\n

Slider Revolution 6 is a new way to build rich & dynamic content for your websites. With our powerful visual editor, you can create modern designs in no time, and with no coding experience required.

Create Sliders & Carousels, Hero Headers, Content Modules, Full Websites, Dynamic Solutions and Special FX with our amazing Add-Ons.

\n

200+ templates are included in our online library. Cutting edge designs. Easily customized.

\";s:9:\"changelog\";s:155:\"

For Slider Revolution\'s changelog, please visit this site!

\";s:3:\"faq\";s:2178:\"\";}s:3:\"url\";s:33:\"https://www.sliderrevolution.com/\";s:8:\"external\";i:1;}}','yes'),(383563,'revslider_update_revision_current','6.4.10','yes'),(384075,'rs_image_meta_todo','a:0:{}','yes'),(406074,'youtubeprefs_alloptions_backup_14_0','a:89:{s:7:\"version\";s:4:\"14.0\";s:9:\"centervid\";i:0;s:6:\"glance\";i:0;s:8:\"autoplay\";i:0;s:14:\"cc_load_policy\";i:0;s:12:\"cc_lang_pref\";s:0:\"\";s:14:\"iv_load_policy\";i:1;s:4:\"loop\";i:0;s:14:\"modestbranding\";i:0;s:3:\"rel\";s:1:\"1\";s:2:\"fs\";i:1;s:11:\"playsinline\";i:0;s:6:\"origin\";i:0;s:8:\"autohide\";i:2;s:2:\"hl\";s:0:\"\";s:4:\"dohl\";i:0;s:5:\"theme\";s:4:\"dark\";s:5:\"color\";s:3:\"red\";s:3:\"pro\";s:0:\"\";s:8:\"nocookie\";i:0;s:9:\"gb_compat\";i:1;s:11:\"facade_mode\";i:0;s:15:\"facade_autoplay\";i:1;s:12:\"gdpr_consent\";i:0;s:20:\"gdpr_consent_message\";s:360:\"Please accept YouTube cookies to play this video. By accepting you will be accessing content from YouTube, a service provided by an external third party.\r\n\r\nYouTube privacy policy\r\n\r\nIf you accept this notice, your choice will be saved and the page will refresh.\";s:19:\"gdpr_consent_button\";s:22:\"Accept YouTube Content\";s:13:\"playlistorder\";i:0;s:8:\"acctitle\";i:0;s:7:\"migrate\";i:0;s:15:\"migrate_youtube\";i:0;s:22:\"migrate_embedplusvideo\";i:0;s:8:\"controls\";i:1;s:10:\"oldspacing\";i:0;s:13:\"frontend_only\";i:1;s:10:\"responsive\";i:1;s:14:\"responsive_all\";i:1;s:9:\"widgetfit\";i:1;s:16:\"evselector_light\";i:0;s:18:\"stop_mobile_buffer\";i:1;s:15:\"restrict_wizard\";i:0;s:21:\"restrict_wizard_roles\";a:5:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";}s:11:\"ajax_compat\";i:0;s:10:\"ytapi_load\";s:5:\"light\";s:11:\"defaultdims\";i:0;s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:12:\"pause_others\";i:0;s:10:\"defaultvol\";i:0;s:3:\"vol\";s:0:\"\";s:6:\"apikey\";s:0:\"\";s:15:\"gallery_columns\";i:3;s:21:\"gallery_collapse_grid\";i:0;s:28:\"gallery_collapse_grid_breaks\";a:1:{i:0;a:2:{s:2:\"bp\";a:2:{s:3:\"min\";i:0;s:3:\"max\";i:767;}s:4:\"cols\";i:1;}}s:20:\"gallery_scrolloffset\";i:20;s:19:\"gallery_hideprivate\";i:1;s:17:\"gallery_showtitle\";i:1;s:18:\"gallery_showpaging\";i:1;s:16:\"gallery_autonext\";i:0;s:17:\"gallery_thumbplay\";i:1;s:18:\"gallery_channelsub\";i:0;s:22:\"gallery_channelsublink\";s:0:\"\";s:22:\"gallery_channelsubtext\";s:23:\"Subscribe to my channel\";s:20:\"gallery_customarrows\";i:0;s:18:\"gallery_customnext\";s:4:\"Next\";s:18:\"gallery_customprev\";s:4:\"Prev\";s:16:\"gallery_pagesize\";i:15;s:16:\"not_live_content\";s:0:\"\";s:11:\"not_live_on\";i:0;s:9:\"debugmode\";i:0;s:17:\"admin_off_scripts\";i:0;s:8:\"defer_js\";i:0;s:12:\"defer_jquery\";i:0;s:9:\"ajax_save\";i:1;s:12:\"show_pointer\";i:1;s:9:\"onboarded\";i:0;s:17:\"old_script_method\";i:0;s:9:\"vi_active\";i:0;s:20:\"vi_hide_monetize_tab\";i:0;s:12:\"vi_endpoints\";s:0:\"\";s:8:\"vi_token\";s:0:\"\";s:13:\"vi_last_login\";s:19:\"2000-01-01 00:00:00\";s:23:\"vi_last_category_update\";s:19:\"2000-01-01 00:00:00\";s:9:\"vi_adstxt\";s:0:\"\";s:14:\"vi_js_settings\";a:15:{s:5:\"divId\";s:20:\"ytvi_story_container\";s:8:\"language\";s:5:\"en-us\";s:11:\"iabCategory\";s:0:\"\";s:4:\"font\";s:5:\"Arial\";s:8:\"fontSize\";i:12;s:8:\"keywords\";s:0:\"\";s:9:\"textColor\";s:7:\"#000000\";s:15:\"backgroundColor\";s:7:\"#ffffff\";s:11:\"vioptional1\";s:0:\"\";s:11:\"vioptional2\";s:0:\"\";s:11:\"vioptional3\";s:0:\"\";s:5:\"float\";b:1;s:10:\"dfpSupport\";b:1;s:13:\"sponsoredText\";s:0:\"\";s:13:\"poweredByText\";s:0:\"\";}s:12:\"vi_js_script\";s:0:\"\";s:15:\"vi_js_posttypes\";a:0:{}s:14:\"vi_js_position\";s:3:\"top\";s:26:\"vi_show_gdpr_authorization\";i:1;s:22:\"vi_show_privacy_button\";i:0;}','no'),(406117,'duplicate_post_show_notice','0','no'),(406130,'duplicator_pro_ui_view_state','a:6:{s:22:\"dup-pack-archive-panel\";s:1:\"1\";s:29:\"dup-package-dtl-storage-panel\";s:1:\"1\";s:29:\"dup-package-dtl-archive-panel\";s:1:\"1\";s:29:\"dup-package-dtl-install-panel\";s:1:\"1\";s:29:\"dup-package-dtl-general-panel\";s:1:\"1\";s:25:\"dpro-pack-installer-panel\";s:1:\"1\";}','yes'),(590511,'youtubeprefs_alloptions_backup_14_0_1_1','a:89:{s:7:\"version\";s:8:\"14.0.1.1\";s:9:\"centervid\";i:0;s:6:\"glance\";i:0;s:8:\"autoplay\";i:0;s:14:\"cc_load_policy\";i:0;s:12:\"cc_lang_pref\";s:0:\"\";s:14:\"iv_load_policy\";i:1;s:4:\"loop\";i:0;s:14:\"modestbranding\";i:0;s:3:\"rel\";s:1:\"1\";s:2:\"fs\";i:1;s:11:\"playsinline\";i:0;s:6:\"origin\";i:0;s:8:\"autohide\";i:2;s:2:\"hl\";s:0:\"\";s:4:\"dohl\";i:0;s:5:\"theme\";s:4:\"dark\";s:5:\"color\";s:3:\"red\";s:3:\"pro\";s:0:\"\";s:8:\"nocookie\";i:0;s:9:\"gb_compat\";i:1;s:11:\"facade_mode\";i:0;s:15:\"facade_autoplay\";i:1;s:12:\"gdpr_consent\";i:0;s:20:\"gdpr_consent_message\";s:360:\"Please accept YouTube cookies to play this video. By accepting you will be accessing content from YouTube, a service provided by an external third party.\r\n\r\nYouTube privacy policy\r\n\r\nIf you accept this notice, your choice will be saved and the page will refresh.\";s:19:\"gdpr_consent_button\";s:22:\"Accept YouTube Content\";s:13:\"playlistorder\";i:0;s:8:\"acctitle\";i:0;s:7:\"migrate\";i:0;s:15:\"migrate_youtube\";i:0;s:22:\"migrate_embedplusvideo\";i:0;s:8:\"controls\";i:1;s:10:\"oldspacing\";i:0;s:13:\"frontend_only\";i:1;s:10:\"responsive\";i:1;s:14:\"responsive_all\";i:1;s:9:\"widgetfit\";i:1;s:16:\"evselector_light\";i:0;s:18:\"stop_mobile_buffer\";i:1;s:15:\"restrict_wizard\";i:0;s:21:\"restrict_wizard_roles\";a:5:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";}s:11:\"ajax_compat\";i:0;s:10:\"ytapi_load\";s:5:\"light\";s:11:\"defaultdims\";i:0;s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:12:\"pause_others\";i:0;s:10:\"defaultvol\";i:0;s:3:\"vol\";s:0:\"\";s:6:\"apikey\";s:0:\"\";s:15:\"gallery_columns\";i:3;s:21:\"gallery_collapse_grid\";i:0;s:28:\"gallery_collapse_grid_breaks\";a:1:{i:0;a:2:{s:2:\"bp\";a:2:{s:3:\"min\";i:0;s:3:\"max\";i:767;}s:4:\"cols\";i:1;}}s:20:\"gallery_scrolloffset\";i:20;s:19:\"gallery_hideprivate\";i:1;s:17:\"gallery_showtitle\";i:1;s:18:\"gallery_showpaging\";i:1;s:16:\"gallery_autonext\";i:0;s:17:\"gallery_thumbplay\";i:1;s:18:\"gallery_channelsub\";i:0;s:22:\"gallery_channelsublink\";s:0:\"\";s:22:\"gallery_channelsubtext\";s:23:\"Subscribe to my channel\";s:20:\"gallery_customarrows\";i:0;s:18:\"gallery_customnext\";s:4:\"Next\";s:18:\"gallery_customprev\";s:4:\"Prev\";s:16:\"gallery_pagesize\";i:15;s:16:\"not_live_content\";s:0:\"\";s:11:\"not_live_on\";i:0;s:9:\"debugmode\";i:0;s:17:\"admin_off_scripts\";i:0;s:8:\"defer_js\";i:0;s:12:\"defer_jquery\";i:0;s:9:\"ajax_save\";i:1;s:12:\"show_pointer\";i:1;s:9:\"onboarded\";i:0;s:17:\"old_script_method\";i:0;s:9:\"vi_active\";i:0;s:20:\"vi_hide_monetize_tab\";i:0;s:12:\"vi_endpoints\";s:0:\"\";s:8:\"vi_token\";s:0:\"\";s:13:\"vi_last_login\";s:19:\"2000-01-01 00:00:00\";s:23:\"vi_last_category_update\";s:19:\"2000-01-01 00:00:00\";s:9:\"vi_adstxt\";s:0:\"\";s:14:\"vi_js_settings\";a:15:{s:5:\"divId\";s:20:\"ytvi_story_container\";s:8:\"language\";s:5:\"en-us\";s:11:\"iabCategory\";s:0:\"\";s:4:\"font\";s:5:\"Arial\";s:8:\"fontSize\";i:12;s:8:\"keywords\";s:0:\"\";s:9:\"textColor\";s:7:\"#000000\";s:15:\"backgroundColor\";s:7:\"#ffffff\";s:11:\"vioptional1\";s:0:\"\";s:11:\"vioptional2\";s:0:\"\";s:11:\"vioptional3\";s:0:\"\";s:5:\"float\";b:1;s:10:\"dfpSupport\";b:1;s:13:\"sponsoredText\";s:0:\"\";s:13:\"poweredByText\";s:0:\"\";}s:12:\"vi_js_script\";s:0:\"\";s:15:\"vi_js_posttypes\";a:0:{}s:14:\"vi_js_position\";s:3:\"top\";s:26:\"vi_show_gdpr_authorization\";i:1;s:22:\"vi_show_privacy_button\";i:0;}','no'),(590517,'leadin_activation_time','1643999126','yes'),(599359,'filemanager_email_verified_20','yes','yes'),(599456,'options_header_logo','3963','no'),(599457,'_options_header_logo','field_626a8a53746b6','no'),(599458,'options_talk_to_expert_cta','a:3:{s:5:\"title\";s:17:\"Talk to an expert\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}','no'),(599459,'_options_talk_to_expert_cta','field_626a8a73746b7','no'),(599481,'options_footer_logo','3964','no'),(599482,'_options_footer_logo','field_626a56e00753b','no'),(599483,'options_partnerships_&_certifications_label','Partnerships & Certifications','no'),(599484,'_options_partnerships_&_certifications_label','field_626a57234e71f','no'),(599485,'options_partnerships_certifications_0_images','3966','no'),(599486,'_options_partnerships_certifications_0_images','field_626a571c4e71e','no'),(599487,'options_partnerships_certifications_0_cta','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:22:\"https://kubernetes.io/\";s:6:\"target\";s:6:\"_blank\";}','no'),(599488,'_options_partnerships_certifications_0_cta','field_626a6285f4e18','no'),(599489,'options_partnerships_certifications_0_class','footer-2022__certificates--kubernetes','no'),(599490,'_options_partnerships_certifications_0_class','field_626a63ec6f364','no'),(599491,'options_partnerships_certifications_1_images','3967','no'),(599492,'_options_partnerships_certifications_1_images','field_626a571c4e71e','no'),(599493,'options_partnerships_certifications_1_cta','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:34:\"https://www.cncf.io/about/members/\";s:6:\"target\";s:6:\"_blank\";}','no'),(599494,'_options_partnerships_certifications_1_cta','field_626a6285f4e18','no'),(599495,'options_partnerships_certifications_1_class','footer-2022__certificates--cloud-native','no'),(599496,'_options_partnerships_certifications_1_class','field_626a63ec6f364','no'),(599497,'options_partnerships_certifications_2_images','3965','no'),(599498,'_options_partnerships_certifications_2_images','field_626a571c4e71e','no'),(599499,'options_partnerships_certifications_2_cta','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:45:\"https://www.linuxfoundation.org/join/members/\";s:6:\"target\";s:6:\"_blank\";}','no'),(599500,'_options_partnerships_certifications_2_cta','field_626a6285f4e18','no'),(599501,'options_partnerships_certifications_2_class','footer-2022__certificates--linux-foundation','no'),(599502,'_options_partnerships_certifications_2_class','field_626a63ec6f364','no'),(599503,'options_partnerships_certifications','3','no'),(599504,'_options_partnerships_certifications','field_626a570e4e71d','no'),(599505,'options_social_media','4','no'),(599506,'_options_social_media','field_626a573a104b1','no'),(599507,'options_copy_right_text','Translucent 2009 – 2022. All rights reserved.','no'),(599508,'_options_copy_right_text','field_626a5781ddc51','no'),(599509,'options_privacy_terms_0_select_page','a:3:{s:5:\"title\";s:14:\"Privacy Policy\";s:3:\"url\";s:41:\"https://translucent.local/privacy-policy/\";s:6:\"target\";s:0:\"\";}','no'),(599510,'_options_privacy_terms_0_select_page','field_626a72179af9a','no'),(599511,'options_privacy_terms_0_class_dev_purpose_only','footer-2022__box-end--privacy-policy','no'),(599512,'_options_privacy_terms_0_class_dev_purpose_only','field_626a7282c4b86','no'),(599513,'options_privacy_terms_1_select_page','a:3:{s:5:\"title\";s:12:\"Terms of Use\";s:3:\"url\";s:39:\"https://translucent.local/terms-of-use/\";s:6:\"target\";s:0:\"\";}','no'),(599514,'_options_privacy_terms_1_select_page','field_626a72179af9a','no'),(599515,'options_privacy_terms_1_class_dev_purpose_only','footer-2022__box-end--terms-of-use','no'),(599516,'_options_privacy_terms_1_class_dev_purpose_only','field_626a7282c4b86','no'),(599517,'options_privacy_terms','2','no'),(599518,'_options_privacy_terms','field_626a71829af99','no'),(599519,'options_headline_column_1','WHAT WE DO','no'),(599520,'_options_headline_column_1','field_626a88a354899','no'),(599521,'options_headline_column_2','HOW WE DO IT','no'),(599522,'_options_headline_column_2','field_626a88b25489a','no'),(599523,'options_headline_column_3','WHAT IS CLOUD NATIVE','no'),(599524,'_options_headline_column_3','field_626a88b55489b','no'),(599525,'options_headline_column_4','INDUSTRIES','no'),(599526,'_options_headline_column_4','field_626a88b75489c','no'),(599527,'options_headline_column_5','OUR COMPANY','no'),(599528,'_options_headline_column_5','field_626a88b95489d','no'),(599531,'options_social_media_0_cta','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:46:\"https://www.facebook.com/translucent.computing\";s:6:\"target\";s:6:\"_blank\";}','no'),(599532,'_options_social_media_0_cta','field_626a5743104b2','no'),(599533,'options_social_media_0_icon','3968','no'),(599534,'_options_social_media_0_icon','field_626a574d104b3','no'),(599535,'options_social_media_1_cta','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:58:\"https://www.linkedin.com/company/translucent-computing-inc\";s:6:\"target\";s:6:\"_blank\";}','no'),(599536,'_options_social_media_1_cta','field_626a5743104b2','no'),(599537,'options_social_media_1_icon','3969','no'),(599538,'_options_social_media_1_icon','field_626a574d104b3','no'),(599539,'options_social_media_2_cta','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:35:\"https://twitter.com/translucentcomp\";s:6:\"target\";s:6:\"_blank\";}','no'),(599540,'_options_social_media_2_cta','field_626a5743104b2','no'),(599541,'options_social_media_2_icon','3970','no'),(599542,'_options_social_media_2_icon','field_626a574d104b3','no'),(599543,'options_social_media_3_cta','a:3:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:46:\"https://www.instagram.com/translucentcomputing\";s:6:\"target\";s:6:\"_blank\";}','no'),(599544,'_options_social_media_3_cta','field_626a5743104b2','no'),(599545,'options_social_media_3_icon','3971','no'),(599546,'_options_social_media_3_icon','field_626a574d104b3','no'),(599607,'action_scheduler_lock_async-request-runner','1655907831','yes'),(599658,'youtubeprefs_alloptions_backup_14_0_1_4','a:89:{s:7:\"version\";s:8:\"14.0.1.4\";s:9:\"centervid\";i:0;s:6:\"glance\";i:0;s:8:\"autoplay\";i:0;s:14:\"cc_load_policy\";i:0;s:12:\"cc_lang_pref\";s:0:\"\";s:14:\"iv_load_policy\";i:1;s:4:\"loop\";i:0;s:14:\"modestbranding\";i:0;s:3:\"rel\";s:1:\"1\";s:2:\"fs\";i:1;s:11:\"playsinline\";i:0;s:6:\"origin\";i:0;s:8:\"autohide\";i:2;s:2:\"hl\";s:0:\"\";s:4:\"dohl\";i:0;s:5:\"theme\";s:4:\"dark\";s:5:\"color\";s:3:\"red\";s:3:\"pro\";s:0:\"\";s:8:\"nocookie\";i:0;s:9:\"gb_compat\";i:1;s:11:\"facade_mode\";i:0;s:15:\"facade_autoplay\";i:1;s:12:\"gdpr_consent\";i:0;s:20:\"gdpr_consent_message\";s:360:\"Please accept YouTube cookies to play this video. By accepting you will be accessing content from YouTube, a service provided by an external third party.\r\n\r\nYouTube privacy policy\r\n\r\nIf you accept this notice, your choice will be saved and the page will refresh.\";s:19:\"gdpr_consent_button\";s:22:\"Accept YouTube Content\";s:13:\"playlistorder\";i:0;s:8:\"acctitle\";i:0;s:7:\"migrate\";i:0;s:15:\"migrate_youtube\";i:0;s:22:\"migrate_embedplusvideo\";i:0;s:8:\"controls\";i:1;s:10:\"oldspacing\";i:0;s:13:\"frontend_only\";i:1;s:10:\"responsive\";i:1;s:14:\"responsive_all\";i:1;s:9:\"widgetfit\";i:1;s:16:\"evselector_light\";i:0;s:18:\"stop_mobile_buffer\";i:1;s:15:\"restrict_wizard\";i:0;s:21:\"restrict_wizard_roles\";a:5:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";}s:11:\"ajax_compat\";i:0;s:10:\"ytapi_load\";s:5:\"light\";s:11:\"defaultdims\";i:0;s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:12:\"pause_others\";i:0;s:10:\"defaultvol\";i:0;s:3:\"vol\";s:0:\"\";s:6:\"apikey\";s:0:\"\";s:15:\"gallery_columns\";i:3;s:21:\"gallery_collapse_grid\";i:0;s:28:\"gallery_collapse_grid_breaks\";a:1:{i:0;a:2:{s:2:\"bp\";a:2:{s:3:\"min\";i:0;s:3:\"max\";i:767;}s:4:\"cols\";i:1;}}s:20:\"gallery_scrolloffset\";i:20;s:19:\"gallery_hideprivate\";i:1;s:17:\"gallery_showtitle\";i:1;s:18:\"gallery_showpaging\";i:1;s:16:\"gallery_autonext\";i:0;s:17:\"gallery_thumbplay\";i:1;s:18:\"gallery_channelsub\";i:0;s:22:\"gallery_channelsublink\";s:0:\"\";s:22:\"gallery_channelsubtext\";s:23:\"Subscribe to my channel\";s:20:\"gallery_customarrows\";i:0;s:18:\"gallery_customnext\";s:4:\"Next\";s:18:\"gallery_customprev\";s:4:\"Prev\";s:16:\"gallery_pagesize\";i:15;s:16:\"not_live_content\";s:0:\"\";s:11:\"not_live_on\";i:0;s:9:\"debugmode\";i:0;s:17:\"admin_off_scripts\";i:0;s:8:\"defer_js\";i:0;s:12:\"defer_jquery\";i:0;s:9:\"ajax_save\";i:1;s:12:\"show_pointer\";i:1;s:9:\"onboarded\";i:0;s:17:\"old_script_method\";i:0;s:9:\"vi_active\";i:0;s:20:\"vi_hide_monetize_tab\";i:0;s:12:\"vi_endpoints\";s:0:\"\";s:8:\"vi_token\";s:0:\"\";s:13:\"vi_last_login\";s:19:\"2000-01-01 00:00:00\";s:23:\"vi_last_category_update\";s:19:\"2000-01-01 00:00:00\";s:9:\"vi_adstxt\";s:0:\"\";s:14:\"vi_js_settings\";a:15:{s:5:\"divId\";s:20:\"ytvi_story_container\";s:8:\"language\";s:5:\"en-us\";s:11:\"iabCategory\";s:0:\"\";s:4:\"font\";s:5:\"Arial\";s:8:\"fontSize\";i:12;s:8:\"keywords\";s:0:\"\";s:9:\"textColor\";s:7:\"#000000\";s:15:\"backgroundColor\";s:7:\"#ffffff\";s:11:\"vioptional1\";s:0:\"\";s:11:\"vioptional2\";s:0:\"\";s:11:\"vioptional3\";s:0:\"\";s:5:\"float\";b:1;s:10:\"dfpSupport\";b:1;s:13:\"sponsoredText\";s:0:\"\";s:13:\"poweredByText\";s:0:\"\";}s:12:\"vi_js_script\";s:0:\"\";s:15:\"vi_js_posttypes\";a:0:{}s:14:\"vi_js_position\";s:3:\"top\";s:26:\"vi_show_gdpr_authorization\";i:1;s:22:\"vi_show_privacy_button\";i:0;}','no'),(600698,'autoptimize_installed_before_compatibility','on','yes'),(630906,'wp_calendar_block_has_published_posts','1','yes'),(649494,'edd_sl_72b3c6f5b653e2cb28ac3cc78c634bdd','a:2:{s:7:\"timeout\";i:1655790772;s:5:\"value\";s:1962:\"{\"new_version\":\"4.5.4\",\"stable_version\":\"4.5.4\",\"name\":\"Duplicator Pro\",\"slug\":\"duplicator-pro\",\"url\":\"https:\\/\\/snapcreek.com\\/downloads\\/duplicator-pro\\/?changelog=1\",\"last_updated\":\"2022-06-15 02:08:39\",\"homepage\":\"https:\\/\\/snapcreek.com\\/duplicator\",\"package\":\"https:\\/\\/snapcreek.com\\/edd-sl\\/package_download\\/MTY1NjkzMTk3MTo5YWQwOTdhOTczMDk2MDUwYTkxYTgxMDI1YTBiN2Q4OTozMTpmODk5MmM1MWVmMWRkOWU5MWNhMzNkY2JiYzBhODdiNTpodHRwc0AvL2Rldi50cmFuc2x1Y2VudGNvbXB1dGluZy5jb206MA==\",\"download_link\":\"https:\\/\\/snapcreek.com\\/edd-sl\\/package_download\\/MTY1NjkzMTk3MTo5YWQwOTdhOTczMDk2MDUwYTkxYTgxMDI1YTBiN2Q4OTozMTpmODk5MmM1MWVmMWRkOWU5MWNhMzNkY2JiYzBhODdiNTpodHRwc0AvL2Rldi50cmFuc2x1Y2VudGNvbXB1dGluZy5jb206MA==\",\"sections\":{\"faq\":\"

See Technical FAQ<\\/a><\\/p>\",\"changelog\":\"

See Changelog<\\/a><\\/p>\",\"description\":\"

WordPress migration and backups are much easier with Duplicator Pro! Clone, backup, or transfer an entire site from one location to another.<\\/p>\"},\"banners\":{\"high\":\"\",\"low\":\"\"},\"icons\":[],\"tags\":[\"migration\",\"backup\",\"duplicate\",\"move\",\"migrate\"],\"requires\":\"4.0\",\"tested\":\"6.0\",\"requires_php\":\"5.6.20\",\"short_description\":\"WordPress migration and backups are much easier with Duplicator Pro! Clone, backup, or transfer an entire site from one location to another.\",\"upgrade_notice\":\"

No notes.<\\/p>\",\"screenshots\":[],\"faq\":[\"

See Technical FAQ<\\/a><\\/p>\"],\"warnings\":[],\"changelog\":[\"

See Changelog<\\/a><\\/p>\"],\"description\":[\"

WordPress migration and backups are much easier with Duplicator Pro! Clone, backup, or transfer an entire site from one location to another.<\\/p>\"],\"plugin\":\"duplicator-pro\\/duplicator-pro.php\",\"id\":\"duplicator-pro\\/duplicator-pro.php\"}\";}','no'),(668283,'youtubeprefs_alloptions_backup_14_1','a:90:{s:7:\"version\";s:4:\"14.1\";s:9:\"centervid\";i:0;s:6:\"glance\";i:0;s:8:\"autoplay\";i:0;s:14:\"cc_load_policy\";i:0;s:12:\"cc_lang_pref\";s:0:\"\";s:14:\"iv_load_policy\";i:1;s:4:\"loop\";i:0;s:14:\"modestbranding\";i:0;s:3:\"rel\";s:1:\"1\";s:2:\"fs\";i:1;s:11:\"playsinline\";i:0;s:6:\"origin\";i:0;s:8:\"autohide\";i:2;s:2:\"hl\";s:0:\"\";s:4:\"dohl\";i:0;s:5:\"theme\";s:4:\"dark\";s:5:\"color\";s:3:\"red\";s:3:\"pro\";s:0:\"\";s:8:\"nocookie\";i:0;s:9:\"gb_compat\";i:1;s:11:\"facade_mode\";i:0;s:15:\"facade_autoplay\";i:1;s:12:\"gdpr_consent\";i:0;s:20:\"gdpr_consent_message\";s:360:\"Please accept YouTube cookies to play this video. By accepting you will be accessing content from YouTube, a service provided by an external third party.\r\n\r\nYouTube privacy policy\r\n\r\nIf you accept this notice, your choice will be saved and the page will refresh.\";s:19:\"gdpr_consent_button\";s:22:\"Accept YouTube Content\";s:13:\"playlistorder\";i:0;s:8:\"acctitle\";i:0;s:7:\"migrate\";i:0;s:15:\"migrate_youtube\";i:0;s:22:\"migrate_embedplusvideo\";i:0;s:8:\"controls\";i:1;s:10:\"oldspacing\";i:0;s:13:\"frontend_only\";i:1;s:10:\"responsive\";i:1;s:14:\"responsive_all\";i:1;s:9:\"widgetfit\";i:1;s:16:\"evselector_light\";i:0;s:18:\"stop_mobile_buffer\";i:1;s:15:\"restrict_wizard\";i:0;s:21:\"restrict_wizard_roles\";a:5:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";}s:11:\"ajax_compat\";i:0;s:10:\"ytapi_load\";s:5:\"light\";s:11:\"defaultdims\";i:0;s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:12:\"pause_others\";i:0;s:10:\"defaultvol\";i:0;s:3:\"vol\";s:0:\"\";s:6:\"apikey\";s:0:\"\";s:15:\"gallery_columns\";i:3;s:21:\"gallery_collapse_grid\";i:0;s:28:\"gallery_collapse_grid_breaks\";a:1:{i:0;a:2:{s:2:\"bp\";a:2:{s:3:\"min\";i:0;s:3:\"max\";i:767;}s:4:\"cols\";i:1;}}s:20:\"gallery_scrolloffset\";i:20;s:19:\"gallery_hideprivate\";i:1;s:17:\"gallery_showtitle\";i:1;s:18:\"gallery_showpaging\";i:1;s:16:\"gallery_autonext\";i:0;s:17:\"gallery_thumbplay\";i:1;s:18:\"gallery_channelsub\";i:0;s:22:\"gallery_channelsublink\";s:0:\"\";s:22:\"gallery_channelsubtext\";s:23:\"Subscribe to my channel\";s:20:\"gallery_customarrows\";i:0;s:18:\"gallery_customnext\";s:4:\"Next\";s:18:\"gallery_customprev\";s:4:\"Prev\";s:16:\"gallery_pagesize\";i:15;s:16:\"not_live_content\";s:0:\"\";s:11:\"not_live_on\";i:0;s:19:\"not_live_on_channel\";i:0;s:9:\"debugmode\";i:0;s:17:\"admin_off_scripts\";i:0;s:8:\"defer_js\";i:0;s:12:\"defer_jquery\";i:0;s:9:\"ajax_save\";i:1;s:12:\"show_pointer\";i:1;s:9:\"onboarded\";i:0;s:17:\"old_script_method\";i:0;s:9:\"vi_active\";i:0;s:20:\"vi_hide_monetize_tab\";i:0;s:12:\"vi_endpoints\";s:0:\"\";s:8:\"vi_token\";s:0:\"\";s:13:\"vi_last_login\";s:19:\"2000-01-01 00:00:00\";s:23:\"vi_last_category_update\";s:19:\"2000-01-01 00:00:00\";s:9:\"vi_adstxt\";s:0:\"\";s:14:\"vi_js_settings\";a:15:{s:5:\"divId\";s:20:\"ytvi_story_container\";s:8:\"language\";s:5:\"en-us\";s:11:\"iabCategory\";s:0:\"\";s:4:\"font\";s:5:\"Arial\";s:8:\"fontSize\";i:12;s:8:\"keywords\";s:0:\"\";s:9:\"textColor\";s:7:\"#000000\";s:15:\"backgroundColor\";s:7:\"#ffffff\";s:11:\"vioptional1\";s:0:\"\";s:11:\"vioptional2\";s:0:\"\";s:11:\"vioptional3\";s:0:\"\";s:5:\"float\";b:1;s:10:\"dfpSupport\";b:1;s:13:\"sponsoredText\";s:0:\"\";s:13:\"poweredByText\";s:0:\"\";}s:12:\"vi_js_script\";s:0:\"\";s:15:\"vi_js_posttypes\";a:0:{}s:14:\"vi_js_position\";s:3:\"top\";s:26:\"vi_show_gdpr_authorization\";i:1;s:22:\"vi_show_privacy_button\";i:0;}','no'),(673491,'rewrite_rules','a:133:{s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:39:\"index.php?yoast-sitemap-xsl=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:41:\"wpdiscuz_form/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"wpdiscuz_form/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"wpdiscuz_form/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"wpdiscuz_form/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"wpdiscuz_form/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"wpdiscuz_form/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"wpdiscuz_form/([^/]+)/embed/?$\";s:46:\"index.php?wpdiscuz_form=$matches[1]&embed=true\";s:34:\"wpdiscuz_form/([^/]+)/trackback/?$\";s:40:\"index.php?wpdiscuz_form=$matches[1]&tb=1\";s:42:\"wpdiscuz_form/([^/]+)/page/?([0-9]{1,})/?$\";s:53:\"index.php?wpdiscuz_form=$matches[1]&paged=$matches[2]\";s:49:\"wpdiscuz_form/([^/]+)/comment-page-([0-9]{1,})/?$\";s:53:\"index.php?wpdiscuz_form=$matches[1]&cpage=$matches[2]\";s:38:\"wpdiscuz_form/([^/]+)(?:/([0-9]+))?/?$\";s:52:\"index.php?wpdiscuz_form=$matches[1]&page=$matches[2]\";s:30:\"wpdiscuz_form/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"wpdiscuz_form/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"wpdiscuz_form/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"wpdiscuz_form/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"wpdiscuz_form/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"wpdiscuz_form/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"popupbuilder/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"popupbuilder/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"popupbuilder/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"popupbuilder/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"popupbuilder/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"popupbuilder/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"popupbuilder/([^/]+)/embed/?$\";s:60:\"index.php?post_type=popupbuilder&name=$matches[1]&embed=true\";s:33:\"popupbuilder/([^/]+)/trackback/?$\";s:54:\"index.php?post_type=popupbuilder&name=$matches[1]&tb=1\";s:41:\"popupbuilder/([^/]+)/page/?([0-9]{1,})/?$\";s:67:\"index.php?post_type=popupbuilder&name=$matches[1]&paged=$matches[2]\";s:48:\"popupbuilder/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?post_type=popupbuilder&name=$matches[1]&cpage=$matches[2]\";s:37:\"popupbuilder/([^/]+)(?:/([0-9]+))?/?$\";s:66:\"index.php?post_type=popupbuilder&name=$matches[1]&page=$matches[2]\";s:29:\"popupbuilder/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"popupbuilder/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"popupbuilder/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"popupbuilder/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"popupbuilder/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"popupbuilder/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:41:\"index.php?&page_id=1924&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:47:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/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}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/embed/?$\";s:75:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:69:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&tb=1\";s:64:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]\";s:59:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]\";s:52:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&paged=$matches[4]\";s:59:\"([0-9]{4})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&cpage=$matches[4]\";s:48:\"([0-9]{4})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&page=$matches[4]\";s:36:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";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'),(676328,'auto_update_plugins','a:0:{}','no'),(676360,'updraftplus_unlocked_fd','1','no'),(676361,'updraftplus_last_lock_time_fd','2022-09-12 03:54:42','no'),(676362,'updraftplus_semaphore_fd','0','no'),(676363,'updraft_last_scheduled_fd','1662954882','yes'),(676368,'updraft_remotesites','','yes'),(676369,'updraft_migrator_localkeys','','yes'),(676370,'updraft_central_localkeys','a:1:{i:0;a:5:{s:4:\"name\";s:29:\"UpdraftCentral Remote Control\";s:3:\"key\";s:1700:\"-----BEGIN RSA PRIVATE KEY-----\r\nMIIEowIBAAKCAQEAyZ5MREqj6x3Xorcokakz4FoX2aqks/jPjj0vIE7w3rw6HDs+\r\nrmplnIQcF8y09vnioN5ogu9AtIMXbBHNjZEKSHwBmPQxOGpOyWSgRa7TQ3SE0MU4\r\nzrE4AaRfaiiqZIGkIkL8LqEtO0hNEvJIu9w88N6mgUcVQTn65x27bJt9bmxIqP8r\r\nZEbujTRqGep8/ZryJ0u4L6y2/DsPBHKxHjf47Raf9wdaClUPc525N4j7JtL9/MNX\r\noRGfQANcxO9HW5Fp6GyAYbJZsEE3QN2MaeyIUPZlMiC6Ftvo0EKL4WL3vceVP4xe\r\n0W1gntWnVe1wToM1/P3uchfIiQaMXSzZAIA1RwIDAQABAoIBAEQZa7lFXMh1c/hJ\r\n1TId7J/Cznt+39LKH5DzqY9IGqOhAB+5Axr2ZQvQs4x2YElrbdjYRoSzOy+9d5PR\r\nD5TZgJerCv8Wu+lKPwJXMqtWuZT3LkU12FI4Gaq0UmYRBjycbUwFRBib6CM18JKN\r\ns3OAmDTjf2n7EHrPkqetqzir7Fn3LqmocHJS7yPamEHP17VFhgXynobdRoSaU+Hs\r\ngdNVnc0xdcguv5134AZLuPYoTwJ5vk0q7WqqE10SI5O7rU8Yx+dbmgH7w1oX8Mll\r\nmmKcL/blxsY2o1+1yWkuWGzXLvQ6cgecKZba4qahI7kbiGkDrwqCV/X3/Wfkgh3x\r\nro9R1sECgYEA/5QXcHvlbEP5bjhYSfM/OPBojzry4wC5a+MATn/huIsDF7A/T+sE\r\noChOgB4+uu407co2oPlccLy5M0RKnmzHmLI9YoXswjty+lW2ecFEBqFiIYeQ3IZ/\r\n87nXv4+sp+YAjOnLt+il8xBjfkOBm9WDua8ROkhXsv1qSNaNYHdluOUCgYEAyfNs\r\neHJ4/efJsXHmSBNdWcmFwbAIaC0WN5MOPIClEISv2uB+2//FaGBcRtzEl/1N1yA3\r\neUAXpQoeZKWRIFe6Gb6zlof5tet4KXlfdzl3iMYuDsqyK/JSyPfL1PqoBSP/NjNb\r\nPMFQbl8f+fQtFaVcGK6u9wz6PVRybAVUeneFLrsCgYEA81BRYE0ThZbRCBWsN/rT\r\n3alCYdmFEofF/ugFirZEdiQhtZOdMsBTjwXQdjhVEDFnQlqY13eOgeWpix0gzOJS\r\nwxQtTHajh+aA98JSDmfoE0fg3Hrrdoa1mZr7wutNPCrDq2OJBnT+SAD6N2KdKXaE\r\nCWqZxBrLIyQO43ke7w+8T+ECgYBQvOIb0WAv2nAXYfr3y84hbGDuS4tA4u2j8EXb\r\nyG61iOapceEl4T6x+PxLVE3AmgN5wyaKciZB1CbMhCjeLlR3oHc58kjSAz66Dg0t\r\npCr24oxdW4oZ6bpRIEg8cK2lyHtq1uNeCcc3KQ6mpokzwzVrpMLMgEK3LEDGkOby\r\nQ0BaqwKBgFskj56ddNLy/1LGBpy5K0eN5jSHCRLckyFCCJCVQOZDLKue/dAD1wj+\r\n+ZCAevw4XkUTY5ajOP56tCOgK0N95rpGp7cfIrUXqNoi9WF4KN+LbqGMesa8ItfG\r\n55p1swVhkmj/ITIB8Xh4aUiUri12u/Y7nBQALXx4Sx3b9HcWs8St\r\n-----END RSA PRIVATE KEY-----\";s:10:\"extra_info\";a:6:{s:7:\"user_id\";i:1;s:10:\"user_login\";s:7:\"TCAdmin\";s:5:\"ms_id\";i:1;s:10:\"site_title\";s:25:\"Translucent Computing Inc\";s:10:\"mothership\";s:16:\"__updraftpluscom\";s:8:\"key_size\";i:2048;}s:7:\"created\";i:1655746216;s:16:\"publickey_remote\";s:458:\"-----BEGIN PUBLIC KEY-----\r\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyoZgVPPBuqFsD/FD9YZA\r\nr94o6BxjfNeJauhs3PNqaUf2NGJM33wGGWI5AmGEs0iVtnBLCOHMHy+1nmyRuyiC\r\nwKY+1izaVxlz1MzUg0CAOTFsw3jm74L73WgwnhcDy+I62gppgQLeH5Wa0KloBgUe\r\nAN+C1IlrwO2ufzJKt/J1Fvoq9x/e7N0ot3StV9/Z2PMOsVU5prVSdOQgBkTaZ+gy\r\nVHGMN7yPcUm7fufyWn+r7u1R2RWW6rLVb8b8TjlijazhETCv9kSwMeA5EEIbMqDG\r\n2nQblTbdgo3pqn9AOxy2EDNEzhUEjrPYnknpnXSKYKhj/N3f045ON594i3hYJ0BK\r\niQIDAQAB\r\n-----END PUBLIC KEY-----\";}}','yes'),(676372,'updraft_autobackup_default','0','yes'),(676373,'updraft_dropbox','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-91a86d7bc097cfe957f73301be84c16a\";a:4:{s:6:\"appkey\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:6:\"folder\";s:0:\"\";s:15:\"tk_access_token\";s:0:\"\";}}}','yes'),(676374,'updraft_googledrive','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-f182cc2363a19d357890939db78d65e3\";a:3:{s:8:\"clientid\";s:0:\"\";s:6:\"secret\";s:0:\"\";s:5:\"token\";s:0:\"\";}}}','yes'),(676375,'updraftplus_tmp_googledrive_access_token','','yes'),(676376,'updraftplus_dismissedautobackup','','yes'),(676377,'dismissed_general_notices_until','','yes'),(676378,'dismissed_review_notice','','yes'),(676379,'dismissed_clone_php_notices_until','','yes'),(676380,'dismissed_clone_wc_notices_until','','yes'),(676381,'dismissed_season_notices_until','','yes'),(676382,'updraftplus_dismissedexpiry','','yes'),(676383,'updraftplus_dismisseddashnotice','','yes'),(676384,'updraft_interval','daily','yes'),(676385,'updraft_interval_increments','none','yes'),(676388,'updraft_interval_database','daily','yes'),(676389,'updraft_retain','1','yes'),(676390,'updraft_retain_db','1','yes'),(676391,'updraft_encryptionphrase','','yes'),(676392,'updraft_service','','yes'),(676393,'updraft_googledrive_clientid','','yes'),(676394,'updraft_googledrive_secret','','yes'),(676395,'updraft_googledrive_remotepath','','yes'),(676396,'updraft_ftp','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-288df7f2fa1bc716df61f89e3123b424\";a:5:{s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";s:4:\"path\";s:0:\"\";s:7:\"passive\";i:1;}}}','yes'),(676397,'updraft_backblaze','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-10d8a544a830347be9b0e97b91d13e12\";a:0:{}}}','yes'),(676398,'updraft_server_address','','yes'),(676399,'updraft_dir','','yes'),(676400,'updraft_email','','yes'),(676401,'updraft_delete_local','0','yes'),(676402,'updraft_debug_mode','0','yes'),(676403,'updraft_include_plugins','0','yes'),(676404,'updraft_include_themes','0','yes'),(676405,'updraft_include_uploads','0','yes'),(676406,'updraft_include_others','0','yes'),(676407,'updraft_include_wpcore','0','yes'),(676408,'updraft_include_wpcore_exclude','','yes'),(676409,'updraft_include_more','0','yes'),(676410,'updraft_include_blogs','','yes'),(676411,'updraft_include_mu-plugins','','yes'),(676413,'updraft_include_others_exclude','','yes'),(676414,'updraft_include_uploads_exclude','','yes'),(676415,'updraft_lastmessage','Failed to open log file (/var/www/translucent/wp-content/updraft/log.20c4a01d998c.txt) - you need to check your UpdraftPlus settings (your chosen directory for creating files in is not writable, or you ran out of disk space). Backup aborted. (Sep 16 00:00:18)','yes'),(676416,'updraft_googledrive_token','','yes'),(676417,'updraft_dropboxtk_request_token','','yes'),(676418,'updraft_dropboxtk_access_token','','yes'),(676419,'updraft_adminlocking','','yes'),(676420,'updraft_updraftvault','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-97473e6711ce4a859d6c57906ca490d8\";a:3:{s:5:\"token\";s:0:\"\";s:5:\"email\";s:0:\"\";s:5:\"quota\";i:-1;}}}','yes'),(676421,'updraft_retain_extrarules','','yes'),(676422,'updraft_googlecloud','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:0:{}}','yes'),(676423,'updraft_include_more_path','','yes'),(676424,'updraft_split_every','25','yes'),(676425,'updraft_ssl_nossl','0','yes'),(676426,'updraft_backupdb_nonwp','0','yes'),(676427,'updraft_extradbs','','yes'),(676429,'updraft_last_backup','a:6:{s:26:\"nonincremental_backup_time\";i:1662954882;s:11:\"backup_time\";i:1662954882;s:12:\"backup_array\";a:3:{s:2:\"db\";s:64:\"backup_2022-09-11-2354_DEV_SERVER_Translucent_2b9b2400943e-db.gz\";s:7:\"db-size\";i:2838288;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"67d5c732a72e6d186f7f6007d0c9f6f10e0f507f\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"d58cf7b23199da42749fc54f91d7674e231d17dd6eea0b391852f332de788b69\";}}}s:7:\"success\";i:1;s:6:\"errors\";a:0:{}s:12:\"backup_nonce\";s:12:\"2b9b2400943e\";}','yes'),(676430,'updraft_starttime_files','17:52','yes'),(676431,'updraft_starttime_db','17:52','yes'),(676432,'updraft_startday_db','0','yes'),(676433,'updraft_startday_files','0','yes'),(676434,'updraft_sftp','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-279732a36e9a4c4ee5aefc6ce4549cc7\";a:0:{}}}','yes'),(676435,'updraft_s3','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-3e25e1aba598a5857bcaa353ee601c2e\";a:5:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:3:\"rrs\";s:0:\"\";s:22:\"server_side_encryption\";s:0:\"\";}}}','yes'),(676436,'updraft_s3generic','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-f12141db712859b7f84d3ea0a9be3175\";a:4:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:8:\"endpoint\";s:0:\"\";}}}','yes'),(676437,'updraft_dreamhost','','yes'),(676438,'updraft_s3generic_login','','yes'),(676439,'updraft_s3generic_pass','','yes'),(676440,'updraft_s3generic_remote_path','','yes'),(676441,'updraft_s3generic_endpoint','','yes'),(676442,'updraft_webdav','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:0:{}}','yes'),(676443,'updraft_openstack','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-e43811a1c1ebbcb45991f75596d6e2bd\";a:6:{s:4:\"user\";s:0:\"\";s:7:\"authurl\";s:0:\"\";s:8:\"password\";s:0:\"\";s:6:\"tenant\";s:0:\"\";s:4:\"path\";s:0:\"\";s:6:\"region\";s:0:\"\";}}}','yes'),(676444,'updraft_onedrive','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:0:{}}','yes'),(676445,'updraft_azure','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:0:{}}','yes'),(676446,'updraft_cloudfiles','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-45395be338e719cbb88b53d26ced0d11\";a:5:{s:4:\"user\";s:0:\"\";s:7:\"authurl\";s:35:\"https://auth.api.rackspacecloud.com\";s:6:\"apikey\";s:0:\"\";s:4:\"path\";s:0:\"\";s:6:\"region\";N;}}}','yes'),(676447,'updraft_cloudfiles_user','','yes'),(676448,'updraft_cloudfiles_apikey','','yes'),(676449,'updraft_cloudfiles_path','','yes'),(676450,'updraft_cloudfiles_authurl','','yes'),(676451,'updraft_ssl_useservercerts','0','yes'),(676452,'updraft_ssl_disableverify','0','yes'),(676453,'updraft_s3_login','','yes'),(676454,'updraft_s3_pass','','yes'),(676455,'updraft_s3_remote_path','','yes'),(676456,'updraft_dreamobjects_login','','yes'),(676457,'updraft_dreamobjects_pass','','yes'),(676458,'updraft_dreamobjects_remote_path','','yes'),(676459,'updraft_dreamobjects','a:2:{s:7:\"version\";i:1;s:8:\"settings\";a:1:{s:34:\"s-1aee0e70fd1cba70e02ae642fca8fc0d\";a:3:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}}}','yes'),(676460,'updraft_report_warningsonly','a:0:{}','yes'),(676461,'updraft_report_wholebackup','a:0:{}','yes'),(676462,'updraft_report_dbbackup','a:0:{}','yes'),(676463,'updraft_log_syslog','0','yes'),(676464,'updraft_extradatabases','','yes'),(676465,'updraftplus_tour_cancelled_on','intro','yes'),(676466,'updraftplus_version','1.22.19','yes'),(676467,'updraft_backup_history','a:80:{i:1662954882;a:11:{s:2:\"db\";s:64:\"backup_2022-09-11-2354_DEV_SERVER_Translucent_2b9b2400943e-db.gz\";s:7:\"db-size\";i:2838288;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"67d5c732a72e6d186f7f6007d0c9f6f10e0f507f\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"d58cf7b23199da42749fc54f91d7674e231d17dd6eea0b391852f332de788b69\";}}s:5:\"nonce\";s:12:\"2b9b2400943e\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.19\";s:21:\"last_saved_by_version\";s:7:\"1.22.19\";s:12:\"is_multisite\";b:0;}i:1662437374;a:11:{s:2:\"db\";s:64:\"backup_2022-09-06-0009_DEV_SERVER_Translucent_9408fc9833ac-db.gz\";s:7:\"db-size\";i:2827113;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"5484b0a2f0c82faeb11aeb8bed77b7f7ff7e191b\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"810e084164afea69d9a152f2ab3b4f623e1c7b14560a69ffa9fde9e92ac8a239\";}}s:5:\"nonce\";s:12:\"9408fc9833ac\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.19\";s:21:\"last_saved_by_version\";s:7:\"1.22.19\";s:12:\"is_multisite\";b:0;}i:1662350539;a:11:{s:2:\"db\";s:64:\"backup_2022-09-05-0002_DEV_SERVER_Translucent_345049f02e19-db.gz\";s:7:\"db-size\";i:3188777;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"d47cc7b79907f44847c492569898e8d7d2a2914d\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"227ac153ad8b2508033701537714e1ab1757b2c5c88897bca9fd37aff8bd1ce4\";}}s:5:\"nonce\";s:12:\"345049f02e19\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.19\";s:21:\"last_saved_by_version\";s:7:\"1.22.19\";s:12:\"is_multisite\";b:0;}i:1662266283;a:11:{s:2:\"db\";s:64:\"backup_2022-09-04-0038_DEV_SERVER_Translucent_24387349e1ba-db.gz\";s:7:\"db-size\";i:2822704;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"d2ea49078600fb59e7cc6bd815c8310991b19d40\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"4ec2ae01da2ba7f0aad7c69b5289379517b5ce30a8cbdc4eb2ce3b2240495bd1\";}}s:5:\"nonce\";s:12:\"24387349e1ba\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.19\";s:21:\"last_saved_by_version\";s:7:\"1.22.19\";s:12:\"is_multisite\";b:0;}i:1662178134;a:11:{s:2:\"db\";s:64:\"backup_2022-09-03-0008_DEV_SERVER_Translucent_5b55969166c4-db.gz\";s:7:\"db-size\";i:2821964;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"59ae406d3b81aa967ea062049a4e568097690fcf\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"d8145bc89c44663549af5d99af67e9ac0ca50a2f967a842113c710031d42c093\";}}s:5:\"nonce\";s:12:\"5b55969166c4\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.19\";s:21:\"last_saved_by_version\";s:7:\"1.22.19\";s:12:\"is_multisite\";b:0;}i:1662093945;a:11:{s:2:\"db\";s:64:\"backup_2022-09-02-0045_DEV_SERVER_Translucent_be65bde7b480-db.gz\";s:7:\"db-size\";i:2821865;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"0bddffad9e1f1bf3ef245fb36ff8d2e8dbb15c4f\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"3246ef682c967b408fb79b28a97220cdd56988c825f611fd4e9af32a1a4f77f4\";}}s:5:\"nonce\";s:12:\"be65bde7b480\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.19\";s:21:\"last_saved_by_version\";s:7:\"1.22.19\";s:12:\"is_multisite\";b:0;}i:1662005787;a:11:{s:2:\"db\";s:64:\"backup_2022-09-01-0016_DEV_SERVER_Translucent_a29b8350d7d7-db.gz\";s:7:\"db-size\";i:2829518;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"472af2f8d119aaee5ada333c2e5939713f7bc55e\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"42ec90ff4e25d234c84e9fba8270f9ad1582bef93b1437271f53b52b47328395\";}}s:5:\"nonce\";s:12:\"a29b8350d7d7\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.19\";s:21:\"last_saved_by_version\";s:7:\"1.22.19\";s:12:\"is_multisite\";b:0;}i:1661923643;a:11:{s:2:\"db\";s:64:\"backup_2022-08-31-0127_DEV_SERVER_Translucent_7ed6cee4e5ea-db.gz\";s:7:\"db-size\";i:3151064;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"ffbe42c888077cb8a12d77c8b72f3af31268dc75\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"3e8f62eade9f41eac4b3942432898e04413fd6268d26013c37bdc404738a9d4c\";}}s:5:\"nonce\";s:12:\"7ed6cee4e5ea\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.19\";s:21:\"last_saved_by_version\";s:7:\"1.22.19\";s:12:\"is_multisite\";b:0;}i:1661832763;a:11:{s:2:\"db\";s:64:\"backup_2022-08-30-0012_DEV_SERVER_Translucent_b7b3c3635093-db.gz\";s:7:\"db-size\";i:3152440;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"1ed753315d1ac1c74effb5a4d79a237d54d9d6d5\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"ffb9bce7e05d90bc47b66db3af1b7628a905a828cf500fc86ec4f25c3de83c42\";}}s:5:\"nonce\";s:12:\"b7b3c3635093\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1661746498;a:11:{s:2:\"db\";s:64:\"backup_2022-08-29-0014_DEV_SERVER_Translucent_b2de1b436f33-db.gz\";s:7:\"db-size\";i:2818207;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"8734715f98e29e2ce2e8fd00158b70bd087ad2bc\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"eef6fb28e118c6ea9e1005e2b67518eb42380090aa5336f7885667bbd578f37a\";}}s:5:\"nonce\";s:12:\"b2de1b436f33\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1661671928;a:11:{s:2:\"db\";s:64:\"backup_2022-08-28-0332_DEV_SERVER_Translucent_f5d9b05d1470-db.gz\";s:7:\"db-size\";i:2819628;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"65da3d2025a7aef6846930ddd03362fd12b833f2\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"1ea9393cedde76ce155992363e200bd0c8b49498b32e0612b15e84373eaa5eb5\";}}s:5:\"nonce\";s:12:\"f5d9b05d1470\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1661598514;a:11:{s:2:\"db\";s:64:\"backup_2022-08-27-0708_DEV_SERVER_Translucent_59ce584ebef2-db.gz\";s:7:\"db-size\";i:3171557;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"9ae41ece7e10f51123fbdea5e130c85ef3087289\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"1938ceac8dc51988589bd6f378e1ff1a00979e86f32d1bf0610fa323f1b014e2\";}}s:5:\"nonce\";s:12:\"59ce584ebef2\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1661486519;a:11:{s:2:\"db\";s:64:\"backup_2022-08-26-0001_DEV_SERVER_Translucent_5ef10ef68d89-db.gz\";s:7:\"db-size\";i:3149524;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"7b135099be6d4624351bdd24c01844794b08a629\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"f3fc1e608edbde8b20300a039c95836e4f591517f150cb336954a449a9f50d76\";}}s:5:\"nonce\";s:12:\"5ef10ef68d89\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1661401048;a:11:{s:2:\"db\";s:64:\"backup_2022-08-25-0017_DEV_SERVER_Translucent_d15052ce1b1c-db.gz\";s:7:\"db-size\";i:3183467;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"74c2091695af06ffd39a48d4bacc53b8196ec289\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"3d8bb0db8ae85178a04b65017a810b534816b81404d297c9746578ad91e3c3d3\";}}s:5:\"nonce\";s:12:\"d15052ce1b1c\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1661314060;a:11:{s:2:\"db\";s:64:\"backup_2022-08-24-0007_DEV_SERVER_Translucent_2a707f4d893d-db.gz\";s:7:\"db-size\";i:3172210;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"bb9ca5d4d27a3e92e72ec31b4fd7883f9247976c\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"7e1ca8567d5a005bdd9f987972b2a67e00374f66054465ec21016efad6ef0fec\";}}s:5:\"nonce\";s:12:\"2a707f4d893d\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1661229477;a:11:{s:2:\"db\";s:64:\"backup_2022-08-23-0037_DEV_SERVER_Translucent_7e39bc79d3c2-db.gz\";s:7:\"db-size\";i:2819187;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"cbd6a0275de5160bbf8321235ddbed2afcd50906\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"1277faa603654d93a5c32992dcbc4b785708bac072b0ebdf2f8791b3f9d53b84\";}}s:5:\"nonce\";s:12:\"7e39bc79d3c2\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1661155432;a:11:{s:2:\"db\";s:64:\"backup_2022-08-22-0403_DEV_SERVER_Translucent_dfecbde69a59-db.gz\";s:7:\"db-size\";i:2817598;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"21b1b51a1931f6a0d25cde39ed12ad79aec59982\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"5ca853ba8c2f516458f83063c4edd6e0f803068f13c1f018d8367b667b7c695d\";}}s:5:\"nonce\";s:12:\"dfecbde69a59\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1661071390;a:11:{s:2:\"db\";s:64:\"backup_2022-08-21-0443_DEV_SERVER_Translucent_e74bf3cee7cf-db.gz\";s:7:\"db-size\";i:2815637;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"a35016541fac682ce05915a071572059734537ae\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"496715fe465bdff2efe09e1e2f1dead593d7f9afae9b79bcf8a221991beaca12\";}}s:5:\"nonce\";s:12:\"e74bf3cee7cf\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1660968331;a:11:{s:2:\"db\";s:64:\"backup_2022-08-20-0005_DEV_SERVER_Translucent_9f8e88fc6085-db.gz\";s:7:\"db-size\";i:2821952;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"848fe812bcd41794d65aa1c0acdf4e6a19e4707b\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"f4b3b1361510a2691d64a40c5d241a4dedcd6d925e6294dc43f5249c5641322a\";}}s:5:\"nonce\";s:12:\"9f8e88fc6085\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1660890739;a:11:{s:2:\"db\";s:64:\"backup_2022-08-19-0232_DEV_SERVER_Translucent_5f80dbf5de49-db.gz\";s:7:\"db-size\";i:2820171;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"5e68db0f4e6361e3243beb67f371c07f125f84cc\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"f5333427660841515d5c576acfc798ef37f68f80f057fd21706311e8c137adea\";}}s:5:\"nonce\";s:12:\"5f80dbf5de49\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1660812206;a:11:{s:2:\"db\";s:64:\"backup_2022-08-18-0443_DEV_SERVER_Translucent_9470b2188df2-db.gz\";s:7:\"db-size\";i:2821709;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"ff3c088dee06395cec353f90b6c7a3b4964985ef\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"57cd0d2d0c336eea01e0319fd27306461a96350f6b637ac4feeec69956fd486c\";}}s:5:\"nonce\";s:12:\"9470b2188df2\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1660709728;a:11:{s:2:\"db\";s:64:\"backup_2022-08-17-0015_DEV_SERVER_Translucent_c7ddd15219a8-db.gz\";s:7:\"db-size\";i:2821613;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"7129f7c5ed932370f88f425e7620eb5e72e0b118\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"8ee2a2083ba5d0f61fae4323112b512c4443434ed041f40d0c051a0bb939efbd\";}}s:5:\"nonce\";s:12:\"c7ddd15219a8\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1660622855;a:11:{s:2:\"db\";s:64:\"backup_2022-08-16-0007_DEV_SERVER_Translucent_583095834f38-db.gz\";s:7:\"db-size\";i:2818031;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"48fcc413a1b01404a73bd9f1535607fafa5a9ae5\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"fce0f2c1c7a26a46fa7dcb900a9f373ede2b32b01397a3e8d5be54279c7f74a8\";}}s:5:\"nonce\";s:12:\"583095834f38\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1660540289;a:11:{s:2:\"db\";s:64:\"backup_2022-08-15-0111_DEV_SERVER_Translucent_bb962f43add5-db.gz\";s:7:\"db-size\";i:2816954;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"c3562d4a29844d8d7d47b93f89f403423d42fccf\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"26145e0bc2c735225c197265e0f69f1745c7b889671d2714490ad2ab8dd10def\";}}s:5:\"nonce\";s:12:\"bb962f43add5\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1660456024;a:11:{s:2:\"db\";s:64:\"backup_2022-08-14-0147_DEV_SERVER_Translucent_b5353cc48c27-db.gz\";s:7:\"db-size\";i:2817341;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"66627bb6c871d59188a2dac4ea10e52621f29682\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"605448d884bb0332c1ab7ef8184936d1ec30ea6eb37977f58c3331c7410607cd\";}}s:5:\"nonce\";s:12:\"b5353cc48c27\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1660363201;a:11:{s:2:\"db\";s:64:\"backup_2022-08-13-0000_DEV_SERVER_Translucent_a94b42b7ce2d-db.gz\";s:7:\"db-size\";i:3172447;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"d74bfed3f23556b27f8a95b048b445e4c78f87c9\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"8161688d5b7b176e065819f2e5cb5b835c17991e33d5ba6bcc8679230a52bb2a\";}}s:5:\"nonce\";s:12:\"a94b42b7ce2d\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1660278442;a:11:{s:2:\"db\";s:64:\"backup_2022-08-12-0027_DEV_SERVER_Translucent_cd15d41ee109-db.gz\";s:7:\"db-size\";i:3161956;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"b03f696828c1003bc5933e1005afbf2b9af49a84\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"9e8a0abe3bbd68f4b9bb502bba85373a8d5598650b36a6132a38d0959b0ec136\";}}s:5:\"nonce\";s:12:\"cd15d41ee109\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1660194499;a:11:{s:2:\"db\";s:64:\"backup_2022-08-11-0108_DEV_SERVER_Translucent_b1255c2e3213-db.gz\";s:7:\"db-size\";i:2822835;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"a93b59315dbe0570710e5b819ac3320c0c4c9763\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"6c86e711213858ef491d5a345d39462367b3399b36fb05679da7ec5fa952a7ec\";}}s:5:\"nonce\";s:12:\"b1255c2e3213\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1660109363;a:11:{s:2:\"db\";s:64:\"backup_2022-08-10-0129_DEV_SERVER_Translucent_d824026c0189-db.gz\";s:7:\"db-size\";i:3177240;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"cd712b0a0775330cdd8d95f908746ac8e8ee75f5\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"881da599c2f28767198f1c50bcda84688f1fd9dee3ae68cf0f99f35f5429beb1\";}}s:5:\"nonce\";s:12:\"d824026c0189\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1660026778;a:11:{s:2:\"db\";s:64:\"backup_2022-08-09-0232_DEV_SERVER_Translucent_2c6201442635-db.gz\";s:7:\"db-size\";i:3171258;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"5a88ab19253f39c1214fdc0398dabf17bfa6f641\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"cf3f1c31d6fde2ad2c27dea6a1ab991e049f9c5f6eede1ea6b7921b603c2be72\";}}s:5:\"nonce\";s:12:\"2c6201442635\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1659948025;a:11:{s:2:\"db\";s:64:\"backup_2022-08-08-0440_DEV_SERVER_Translucent_7ae202057abf-db.gz\";s:7:\"db-size\";i:2818762;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"a84b7f890048017182b1a509b0937677db1d1128\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"f6e646f534380722371fc1cd97e3482391253faf24bd19ce0272f0f8b11db7ed\";}}s:5:\"nonce\";s:12:\"7ae202057abf\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1659845117;a:11:{s:2:\"db\";s:64:\"backup_2022-08-07-0005_DEV_SERVER_Translucent_26ac3c9a9477-db.gz\";s:7:\"db-size\";i:2816209;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"7fdc5e364f5f58063b56e077049ac682d359ca15\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"e16c25d9a03f688398a8e2f68bf10a4c8ad69f667439a53564bd67347ecbc748\";}}s:5:\"nonce\";s:12:\"26ac3c9a9477\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1659759382;a:11:{s:2:\"db\";s:64:\"backup_2022-08-06-0016_DEV_SERVER_Translucent_79bf005ea886-db.gz\";s:7:\"db-size\";i:2817869;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"33dc30b2a19bbbdf428d7c283e5366892cb01c87\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"e1192c4d3002e934673b25bc6b27f223c86401204cf523bc04510f3130f6358d\";}}s:5:\"nonce\";s:12:\"79bf005ea886\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1659692596;a:11:{s:2:\"db\";s:64:\"backup_2022-08-05-0543_DEV_SERVER_Translucent_08d891ba1a58-db.gz\";s:7:\"db-size\";i:2816110;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"71957c1f5cdfd5fe5932a5865a813687243fba4b\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"4e9705b7e6b57b658e6b2c0bb4917f10efb102782d991d3082ce3045386349bc\";}}s:5:\"nonce\";s:12:\"08d891ba1a58\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1659599472;a:11:{s:2:\"db\";s:64:\"backup_2022-08-04-0351_DEV_SERVER_Translucent_ecd434ac6014-db.gz\";s:7:\"db-size\";i:2817776;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"b84c82b4ad773c45f9f33014ffa6dd5e6d054ee9\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"0dda7f6a560bd1e0dea72f46154957c1822c1529d227222d5229ad6a16c1198c\";}}s:5:\"nonce\";s:12:\"ecd434ac6014\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1659501304;a:11:{s:2:\"db\";s:64:\"backup_2022-08-03-0035_DEV_SERVER_Translucent_4a61e0104c7b-db.gz\";s:7:\"db-size\";i:2818290;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"6d8740266c83c15b3c11f5e026ab0a71acdfc403\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"40ccbda3ef702e9e313c3efbf7f5fd69c698850c0a00d0d4744987e7ecefbea3\";}}s:5:\"nonce\";s:12:\"4a61e0104c7b\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1659418140;a:11:{s:2:\"db\";s:64:\"backup_2022-08-02-0129_DEV_SERVER_Translucent_30fe3c7fcff6-db.gz\";s:7:\"db-size\";i:2814235;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"11276df0115f8c464b4a81ab7ea9040cfdb73324\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"e0e0e5093fc70b38e96dcb5e2fc17c7340feddbc68ced4e36d2623da9f2a5e53\";}}s:5:\"nonce\";s:12:\"30fe3c7fcff6\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1659327902;a:11:{s:2:\"db\";s:64:\"backup_2022-08-01-0025_DEV_SERVER_Translucent_24608b547633-db.gz\";s:7:\"db-size\";i:2812008;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"47b6adaa56885516d3f320667c2a454d1c94496a\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"60bfda987346d914399ba048adacaebee8d2a541f1b95b59a0d2b8fb0ab74b24\";}}s:5:\"nonce\";s:12:\"24608b547633\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1659240139;a:11:{s:2:\"db\";s:64:\"backup_2022-07-31-0002_DEV_SERVER_Translucent_fb59fcee5eda-db.gz\";s:7:\"db-size\";i:2812607;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"eaff208c6d6082eb66c3dd2db6979132ed7d4d90\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"3fca9df9ede4cc72e13b0f92ea063d57eeaff47d939cd96d9ae62a62a5935771\";}}s:5:\"nonce\";s:12:\"fb59fcee5eda\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1659156443;a:11:{s:2:\"db\";s:64:\"backup_2022-07-30-0047_DEV_SERVER_Translucent_e27f97936d31-db.gz\";s:7:\"db-size\";i:3123380;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"e6edf45885eaf64023b199662c8517b6d64a80e0\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"4b80f9936aa4a7bd8f631e4c523169f8a991fc51a04304beb542832337b13b51\";}}s:5:\"nonce\";s:12:\"e27f97936d31\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1659070747;a:11:{s:2:\"db\";s:64:\"backup_2022-07-29-0059_DEV_SERVER_Translucent_4503d3376fa5-db.gz\";s:7:\"db-size\";i:2810005;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"caecc3a8556b04846971a4b2c183ee639aa755ae\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"33cf54b9211c43eb66aa4a6ea4e15d41b3cef693a576554508f97bf887e8e166\";}}s:5:\"nonce\";s:12:\"4503d3376fa5\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1658981910;a:11:{s:2:\"db\";s:64:\"backup_2022-07-28-0018_DEV_SERVER_Translucent_1463221aab28-db.gz\";s:7:\"db-size\";i:3120341;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"06eeec4079e3f96a76baa4e0ee976eb1ee1ced97\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"f5540f54f0aca77fb0f7cf97e0336176ccae0f7fc533599f94b1d12df48b26f9\";}}s:5:\"nonce\";s:12:\"1463221aab28\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1658894667;a:11:{s:2:\"db\";s:64:\"backup_2022-07-27-0004_DEV_SERVER_Translucent_bdd6ca9967c6-db.gz\";s:7:\"db-size\";i:2812461;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"3fea42b9f7639426b477ec9cbdeab7ecbe7d1506\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"0a4ef371c184ee1c449fad302230165e96987869fb012355f3e074aa2c3ea80e\";}}s:5:\"nonce\";s:12:\"bdd6ca9967c6\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1658812496;a:11:{s:2:\"db\";s:64:\"backup_2022-07-26-0114_DEV_SERVER_Translucent_0538d319ee50-db.gz\";s:7:\"db-size\";i:2819622;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"e3c9d88f63fbeb4e7e9f29cdd00b6203e17bc349\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"1bc7ec18565904930765c0e024da1543e4e4a434e2b67810341f0e13244cf976\";}}s:5:\"nonce\";s:12:\"0538d319ee50\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1658722015;a:11:{s:2:\"db\";s:64:\"backup_2022-07-25-0006_DEV_SERVER_Translucent_a9a16d60fa7d-db.gz\";s:7:\"db-size\";i:2815145;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"f9ee7d597647278e362fe3ba6555d28f4321fd08\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"3b3327625ffe6c9f1cefa0268e1af764925f8ebe4c35cf1c8778d10148c427cb\";}}s:5:\"nonce\";s:12:\"a9a16d60fa7d\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1658637126;a:11:{s:2:\"db\";s:64:\"backup_2022-07-24-0032_DEV_SERVER_Translucent_53e5e94530ea-db.gz\";s:7:\"db-size\";i:2813703;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"eca9437e9b504bc66884c4fe8a21f5a96faf274e\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"9db7608c9c023e62a9d24beafda62812bc094cc00795a1656f36391340c561e9\";}}s:5:\"nonce\";s:12:\"53e5e94530ea\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1658550128;a:11:{s:2:\"db\";s:64:\"backup_2022-07-23-0022_DEV_SERVER_Translucent_11cf44a52d08-db.gz\";s:7:\"db-size\";i:2814066;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"9b5c429f35770f7ba2d7d351eac8513751d0ff8e\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"c1f816029b85f348a9e2dcd694ec4d65ee4ce96d88b00eb51b92a4cd18a88149\";}}s:5:\"nonce\";s:12:\"11cf44a52d08\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1658462522;a:11:{s:2:\"db\";s:64:\"backup_2022-07-22-0002_DEV_SERVER_Translucent_f556e471b6d4-db.gz\";s:7:\"db-size\";i:3100077;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"55ef4b5c2fbba7280d9649e8a17e143c980e621e\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"968f58577cde244dcc37e62e8be01bad896a91e5cab047ce68207ba4f8d98b45\";}}s:5:\"nonce\";s:12:\"f556e471b6d4\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1658376660;a:11:{s:2:\"db\";s:64:\"backup_2022-07-21-0011_DEV_SERVER_Translucent_ebdb16815b2b-db.gz\";s:7:\"db-size\";i:2813073;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"ec220635e52077e8d37e75cb2e3e2d585da46a62\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"dd817e68efa5c0c6aff83ee6a0271df01ac6fb88228c28dce6b7499a704e6419\";}}s:5:\"nonce\";s:12:\"ebdb16815b2b\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1658289972;a:11:{s:2:\"db\";s:64:\"backup_2022-07-20-0006_DEV_SERVER_Translucent_fa33a7daf559-db.gz\";s:7:\"db-size\";i:2810117;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"599373771feb1126fce1a15433f20a420e58ff46\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"fd4adf1bdfff7aaf5f4104c9660f9973b4f7804db1932e33cf8453f8d0a09504\";}}s:5:\"nonce\";s:12:\"fa33a7daf559\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1658207614;a:11:{s:2:\"db\";s:64:\"backup_2022-07-19-0113_DEV_SERVER_Translucent_0d079078ae89-db.gz\";s:7:\"db-size\";i:2818608;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"b3819e297032077a67eeac21ad94da92506b03ba\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"1543a89b71f255befef6722eca265a2c0dd637e3e9ba0a833e2229274e4d1f42\";}}s:5:\"nonce\";s:12:\"0d079078ae89\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1658118030;a:11:{s:2:\"db\";s:64:\"backup_2022-07-18-0020_DEV_SERVER_Translucent_1adc18dfe999-db.gz\";s:7:\"db-size\";i:2812575;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"d60038f496fec9bd0f2cf8d02a6154fc37dbe433\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"f498fb93b57b4532ded8c05c8970f10c35980d43dd0a119d78ac991344aa2f7b\";}}s:5:\"nonce\";s:12:\"1adc18dfe999\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1658042412;a:11:{s:2:\"db\";s:64:\"backup_2022-07-17-0320_DEV_SERVER_Translucent_11fd27ae95a0-db.gz\";s:7:\"db-size\";i:3095922;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"ed5d84cbb79704daab7777bcc6de8a780faa27d9\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"8532fe7845557074296725674f15c4b157a3253caed4f409005e199d92b7b24c\";}}s:5:\"nonce\";s:12:\"11fd27ae95a0\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1657944000;a:11:{s:2:\"db\";s:64:\"backup_2022-07-16-0000_DEV_SERVER_Translucent_20fb198eed26-db.gz\";s:7:\"db-size\";i:3114852;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"dec6a43a557462877aded8812876156706676c4f\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"ba6419ca55561b9ea9e760a9b50686a194b4202a4a93ddc060ea0203de0d5728\";}}s:5:\"nonce\";s:12:\"20fb198eed26\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1657859531;a:11:{s:2:\"db\";s:64:\"backup_2022-07-15-0032_DEV_SERVER_Translucent_a25a8bf71b1b-db.gz\";s:7:\"db-size\";i:2814386;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"e5948a2799c9cbcbd62926e1fb071f8ce84d731e\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"ab3673907453a6e6494e30e832a874c527f61f355b8ca2d3c37bd091cc6d1ef1\";}}s:5:\"nonce\";s:12:\"a25a8bf71b1b\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1657785100;a:11:{s:2:\"db\";s:64:\"backup_2022-07-14-0351_DEV_SERVER_Translucent_d40af3425d5e-db.gz\";s:7:\"db-size\";i:2812317;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"8de0401454639bcefecc8f8c3ac540f836835e39\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"d4441ab2cdba66aea42196c35b71e054f573267753188e3bfb82d5ed28bc531b\";}}s:5:\"nonce\";s:12:\"d40af3425d5e\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1657694702;a:11:{s:2:\"db\";s:64:\"backup_2022-07-13-0245_DEV_SERVER_Translucent_2ec336d01e1f-db.gz\";s:7:\"db-size\";i:2812978;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"c65f0b64758e92144b45595de725fe544fea8fb4\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"11cbee82d625c99776acb78aa7fec6f6c9de5b354ae5ce3c59c7dc3e7d6b0d1b\";}}s:5:\"nonce\";s:12:\"2ec336d01e1f\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1657598882;a:11:{s:2:\"db\";s:64:\"backup_2022-07-12-0008_DEV_SERVER_Translucent_aadd4215384f-db.gz\";s:7:\"db-size\";i:3094242;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"45086660fdeb3aa2286cd95d783b702a3d3ccd0b\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"91ec92725983ef0ebd130b41fbb3c7d2a0db59ae19ff83e331f5b5a0bb0045d0\";}}s:5:\"nonce\";s:12:\"aadd4215384f\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1657514831;a:11:{s:2:\"db\";s:64:\"backup_2022-07-11-0047_DEV_SERVER_Translucent_c32c3f5bc0fa-db.gz\";s:7:\"db-size\";i:2808418;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"a9b5d915b86cd04481492c823445f2e4c8875331\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"142930c181f15103fabf101f0c0af77f8a0d4837bd324a674b09aa42b5a5cc7a\";}}s:5:\"nonce\";s:12:\"c32c3f5bc0fa\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1657427972;a:11:{s:2:\"db\";s:64:\"backup_2022-07-10-0039_DEV_SERVER_Translucent_c071640c2aa1-db.gz\";s:7:\"db-size\";i:2810382;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"c9fcc53e17e2172d6fc52fc36226afb9e141304c\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"07e1bfe1bd2eb4ddaa189a1ac409b7d66f045014f5c61d548f640863f00c9aa4\";}}s:5:\"nonce\";s:12:\"c071640c2aa1\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1657350754;a:11:{s:2:\"db\";s:64:\"backup_2022-07-09-0312_DEV_SERVER_Translucent_e8340b86d1b0-db.gz\";s:7:\"db-size\";i:2809271;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"5598b081514eb09b8f770f7f51575c4e5eb59584\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"7ce773a5c1b7aef2030aac2e7ddd348ca61c4182c23eb9a37447029a66c1cec7\";}}s:5:\"nonce\";s:12:\"e8340b86d1b0\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1657253327;a:11:{s:2:\"db\";s:64:\"backup_2022-07-08-0008_DEV_SERVER_Translucent_ac74df83c2bb-db.gz\";s:7:\"db-size\";i:3086256;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"bb0fb9d716da606e6c9df0185484e31798fcfe7e\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"89208bb323df29b55e8a6d66dfacc25b2e1b8488066c8a7848c271f5c30be01d\";}}s:5:\"nonce\";s:12:\"ac74df83c2bb\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1657166597;a:11:{s:2:\"db\";s:64:\"backup_2022-07-07-0003_DEV_SERVER_Translucent_7d93e5fdad4f-db.gz\";s:7:\"db-size\";i:3072371;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"ae45a30720714060f7144dbbb1de1773da7f4539\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"26cf24a82b0a5d678008a9a13be3cda9bc356bbedb2dae3757f74afab5da5d2c\";}}s:5:\"nonce\";s:12:\"7d93e5fdad4f\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1657080573;a:11:{s:2:\"db\";s:64:\"backup_2022-07-06-0009_DEV_SERVER_Translucent_ad899f5bd798-db.gz\";s:7:\"db-size\";i:2806094;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"ef2be477513fcbe81bb3d0572e3e17726ec9c929\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"cfd696c78340c073d2bcf973ce7594caf5c7b55c40b235b8a4725544e1fa5222\";}}s:5:\"nonce\";s:12:\"ad899f5bd798\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1657000872;a:11:{s:2:\"db\";s:64:\"backup_2022-07-05-0201_DEV_SERVER_Translucent_7c5eb68bbf14-db.gz\";s:7:\"db-size\";i:2766936;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"1076ee2fd31e734cd300a1f903dcdb84bcdffebb\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"8861c148327296d4fd3412a4f62f95897e52a0da5c9e966242f8ff148520703b\";}}s:5:\"nonce\";s:12:\"7c5eb68bbf14\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1656921945;a:11:{s:2:\"db\";s:64:\"backup_2022-07-04-0405_DEV_SERVER_Translucent_6e771c2d1dba-db.gz\";s:7:\"db-size\";i:2766079;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"9378bf4bb21a3a239b337e4fbe56e63ffa7fb166\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"4979b47a1f6389c9259a3216a4a759cd8c0ad623fdb0c637af72eb4c12ec1967\";}}s:5:\"nonce\";s:12:\"6e771c2d1dba\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1656826264;a:11:{s:2:\"db\";s:64:\"backup_2022-07-03-0131_DEV_SERVER_Translucent_e9f7524d6c6f-db.gz\";s:7:\"db-size\";i:2779747;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"d25d917905d965f6f3fdde47f1951b9346fe882f\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"9970a8beada090ecb4498c3c1b14a1f0e30fffe022e29737602f71cd668f57ff\";}}s:5:\"nonce\";s:12:\"e9f7524d6c6f\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1656741020;a:11:{s:2:\"db\";s:64:\"backup_2022-07-02-0150_DEV_SERVER_Translucent_3df8de3d454f-db.gz\";s:7:\"db-size\";i:2780062;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"40d7f6b54574d1efefac58254ecf3636f54dbcd7\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"b061f6e0ccf3f58c95bdc06467481ea21ed40e15fe49eaf6276acc75d4c4705d\";}}s:5:\"nonce\";s:12:\"3df8de3d454f\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1656648728;a:11:{s:2:\"db\";s:64:\"backup_2022-07-01-0012_DEV_SERVER_Translucent_0a3e3ab982c3-db.gz\";s:7:\"db-size\";i:3060962;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"1eb6f7730723b6abf1214328aa12c202dedf4fee\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"f8f6fc97deaf79e65a978a590ed3c2709bf3dfc1ffe085659b7bb5f78d3eb534\";}}s:5:\"nonce\";s:12:\"0a3e3ab982c3\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1656565071;a:11:{s:2:\"db\";s:64:\"backup_2022-06-30-0057_DEV_SERVER_Translucent_81a0720a2461-db.gz\";s:7:\"db-size\";i:3069470;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"9423370a93f296c302ff2185b0b3ae05e6b6053d\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"bc5c968da8c0e279846203384dd599367062c43c7aa31d96b040192e6f8a4c0c\";}}s:5:\"nonce\";s:12:\"81a0720a2461\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1656477390;a:11:{s:2:\"db\";s:64:\"backup_2022-06-29-0036_DEV_SERVER_Translucent_05fc92f89e6a-db.gz\";s:7:\"db-size\";i:2768752;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"04a094434195fcf68afe8d46d6523d3f200fd7df\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"44c2ccdae4b55a023d1d66ce790ca6808c3c186d19489f27d86fc1e2ed49335b\";}}s:5:\"nonce\";s:12:\"05fc92f89e6a\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1656391277;a:11:{s:2:\"db\";s:64:\"backup_2022-06-28-0041_DEV_SERVER_Translucent_c210d484a51b-db.gz\";s:7:\"db-size\";i:2743263;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"986fe2719983904deefe25fe85ef1787fd4b4ba1\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"e566c75512e353af0e78cb7e4b33b16894100be2106caafc38f4332d56ffe086\";}}s:5:\"nonce\";s:12:\"c210d484a51b\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1656308294;a:11:{s:2:\"db\";s:64:\"backup_2022-06-27-0138_DEV_SERVER_Translucent_e962bdb571b7-db.gz\";s:7:\"db-size\";i:2744698;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"5594b5038bb6cca0849864cf1aa5168245fa7721\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"5eaa7a867218c6cf35af91466b535780bcaefaeadc148eaf4b6dab9fb4e007bc\";}}s:5:\"nonce\";s:12:\"e962bdb571b7\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1656216581;a:11:{s:2:\"db\";s:64:\"backup_2022-06-26-0009_DEV_SERVER_Translucent_a2155decffa9-db.gz\";s:7:\"db-size\";i:2742121;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"bad7180e980e1caa63c50ef1b0d09a643a070752\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"423ce3534f35d1b7b1f90942d134c03b9e1ef976cc8bbfb7d5f3ca1ba3590220\";}}s:5:\"nonce\";s:12:\"a2155decffa9\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1656129872;a:11:{s:2:\"db\";s:64:\"backup_2022-06-25-0004_DEV_SERVER_Translucent_50d7d5d73b52-db.gz\";s:7:\"db-size\";i:3024924;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"c59904702682ff91d81571caa3cf8c52e8ade987\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"b432b14016fe428393e847aeacde406f30c48a121ccaa169415832d820d056e5\";}}s:5:\"nonce\";s:12:\"50d7d5d73b52\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1656044199;a:11:{s:2:\"db\";s:64:\"backup_2022-06-24-0016_DEV_SERVER_Translucent_a552c4a53971-db.gz\";s:7:\"db-size\";i:2752149;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"f60a1a6beeed6dcf5f72bed0b9ffcb5c96fd93fe\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"f35251c8e1879cffc82fe5b2366eaaf207648749a23379e54265cf5a090bf387\";}}s:5:\"nonce\";s:12:\"a552c4a53971\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1655958442;a:11:{s:2:\"db\";s:64:\"backup_2022-06-23-0027_DEV_SERVER_Translucent_cbf3b87db39f-db.gz\";s:7:\"db-size\";i:2747542;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"faebf95288881f0113305ae431223e72d4389c99\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"4f4d3c7368018b849d6f687e13b329988bbdac0e677704952f6c3c91d6a8d036\";}}s:5:\"nonce\";s:12:\"cbf3b87db39f\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1655875181;a:11:{s:2:\"db\";s:64:\"backup_2022-06-22-0119_DEV_SERVER_Translucent_989aa793571b-db.gz\";s:7:\"db-size\";i:2747521;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"8d29e2bb327205950cbf3de6311f4febd6b82613\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"64cc0a94eb83b90cda7cbe3befb5d790d2c73840faa2d80e73259abcbeaa14be\";}}s:5:\"nonce\";s:12:\"989aa793571b\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1655785191;a:11:{s:2:\"db\";s:64:\"backup_2022-06-21-0019_DEV_SERVER_Translucent_096e11c8c93f-db.gz\";s:7:\"db-size\";i:3051218;s:9:\"checksums\";a:2:{s:4:\"sha1\";a:1:{s:3:\"db0\";s:40:\"63b9d52c06b02a102dcee4c7b8561c75c6fb39c6\";}s:6:\"sha256\";a:1:{s:3:\"db0\";s:64:\"9a265df89b6d1645daf7a292cbf7ca79382e7c478578b0f66d41e91cfc0db89f\";}}s:5:\"nonce\";s:12:\"096e11c8c93f\";s:7:\"service\";a:0:{}s:20:\"service_instance_ids\";a:0:{}s:11:\"always_keep\";b:0;s:19:\"files_enumerated_at\";N;s:18:\"created_by_version\";s:7:\"1.22.12\";s:21:\"last_saved_by_version\";s:7:\"1.22.12\";s:12:\"is_multisite\";b:0;}i:1655721120;a:12:{s:6:\"others\";a:1:{i:0;s:58:\"backup_2022-06-20-1032_Translucent_6ef929c9dd89-others.zip\";}s:11:\"others-size\";i:94978250;s:5:\"nonce\";s:12:\"6ef929c9dd89\";s:6:\"themes\";a:1:{i:0;s:58:\"backup_2022-06-20-1032_Translucent_6ef929c9dd89-themes.zip\";}s:11:\"themes-size\";i:18776547;s:7:\"plugins\";a:1:{i:0;s:59:\"backup_2022-06-20-1032_Translucent_6ef929c9dd89-plugins.zip\";}s:12:\"plugins-size\";i:93843743;s:18:\"created_by_version\";s:7:\"1.22.12\";s:2:\"db\";s:53:\"backup_2022-06-20-1032_Translucent_6ef929c9dd89-db.gz\";s:7:\"db-size\";i:3077316;s:7:\"uploads\";a:1:{i:0;s:59:\"backup_2022-06-20-1032_Translucent_6ef929c9dd89-uploads.zip\";}s:12:\"uploads-size\";i:213612041;}}','no'),(676470,'updraftplus-addons_siteid','9ab02f93af3e88678da03a41781dc01c','no'),(676471,'updraftplus_migrated_site_domain','www.translucentcomputing.com','no'),(676495,'can_compress_scripts','1','no'),(676496,'updraft_lock_6ef929c9dd89','1655747441','no'),(676569,'duplicate_post_version','4.4','yes'),(676636,'new_admin_email','robert@translucentcomputing.com','yes'),(676687,'updraftcentral_client_log','a:2:{i:0;a:7:{s:4:\"time\";i:1655831322;s:5:\"level\";s:4:\"info\";s:7:\"message\";s:36:\"Command received: core.get_login_url\";s:18:\"key_name_indicator\";s:25:\"0.central.updraftplus.com\";s:9:\"remote_ip\";s:10:\"10.8.2.160\";s:15:\"http_user_agent\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15\";s:25:\"http_secondary_user_agent\";s:35:\"class-udrpc.js/0.3.3 (27/July/2016)\";}i:1;a:7:{s:4:\"time\";i:1655831352;s:5:\"level\";s:4:\"info\";s:7:\"message\";s:46:\"Command received: updraftvault.get_credentials\";s:18:\"key_name_indicator\";s:25:\"0.central.updraftplus.com\";s:9:\"remote_ip\";s:10:\"10.8.2.160\";s:15:\"http_user_agent\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15\";s:25:\"http_secondary_user_agent\";s:35:\"class-udrpc.js/0.3.3 (27/July/2016)\";}}','no'),(676762,'rocket_cache_dir_size_check','1','yes'),(676792,'wp_rocket_hide_deactivation_form','1','yes'),(676795,'action_scheduler_migration_status','complete','yes'),(678878,'revisionize_settings','a:1:{s:17:\"has_seen_settings\";b:1;}','yes'),(680497,'emcs_encryption_key','b9cebac6b8f9b512220b','yes'),(680498,'emcs_settings','a:2:{s:14:\"emcs_v1api_key\";s:88:\"bkFtK0NwQ0c1MjVkanBjMzd6WXcwZFlUSFRnYUgwNDZuNjU0MXUvQ3dLYkE0di8zUHZKZjVVZzNFZDJZOGREdQ==\";s:14:\"emcs_v2api_key\";s:1280:\"SWpTZXpJWlhWbFR2aStUQk81M2tISytwUU0vWHl1SEpiWmhtcnpQbWJtQVFVN2VuQ1hxcGJMR1M4ckUrbStoSkJrdXVRWFlzQ3dOQkNFeXg1aWNzS0o5MDkwSXBkOFFzTWg1VjhSZkxQbGlmWGRKY0NvMUovVUJHdjdDRjBDQUc1SGl0akN5NXgvdHR0YmJWWGptUVMvK2d1QlBYZ2RRSG5KcU16VFo5Yy9NTGwveEdZWlZ4ZGV1aTNQTWtPdXdtUVBEYzFHTWI0YlMwL1FUU3lxV1FubTFTYjhiK1RReXY5UlRsckErd3M4dG9GQVlZdjBlUlE0LzNFYTA0ZlVhcm9QcENteklWZ0dyNDVGYStISW9QM2FicHA5QlZqeFo2Y1duejFmclM5TXJNNi8yT21jeVZlTUVrYTZEY0lhV1JFVTZFUVpHNk9uYmNBYVZMU29IWTFoVFQrazA2UzdXek9GY0cyVHhVZDBPc0FrbWYvM01jZEVlb0JvMHFKVUw2STMySzdWZ3ZCVUtSMTVkczlyTFZnbTlQMEZ6ZmV5ZWdURVZtdkZoajdDWEhlRytnUGtwNUFHV1pSQ2F0U2UwQ0k3Q00wUTA1M1Q5dEovT1Qzc3JWWVJ0TUZOakg3QlZLT0gxdXJ1eUVSb2xadFA2VzZ4RlpqaGZHaE5Rc1lQS1RheERySmJYY1M0V1cvUHVkbmI2OXJIeWl6NG9QdU03SHhDV1BNZ3lYY25MRXdwWWI0SDFlSkRxcXFZT1Q0YURRd2tTL2dRSFdnNHlVWlBzZllWQkF4STBFUGNNUDJ3dDRreXhYa2pVQTVMNnRsZkU0TDVIUkQyS0dOUWQ0WW9vMlBvbFJmYVJRT2RRTjY0Zk1Ic093RHFNMGp1MGxDTy9NZFpoeGhFNlVBRHQ0RU43eEhYaVBoaENGSVN3VnlFbW1vNFdqTm5YVjNhRnViajJlSkowdVpPZW5LZk9zWGk0Rk1BU3NGNU95bEd1RXQwa1NlQjFSblJmYVVJdk5mMzNrSUNoRUsrNTdGOVJONjY1TVBiMjdxdDBiWHhSc0MzR1JVUEJrTXVWNys0R2NCd0RRTWJhK2tYVFI0ME5wd2tneHRsSExIVm8xLy8veTk4WU5keEZxMTVPN1ZMQWxMck03eE9PaDZwck01b3JSWEVLejR2N000SDdwWXlDaXdYZWFSV0ZoZHZNSHE3dFRFYVJuUWIxeVI3UkQyRjNya29hRENYZ21iWGR5V0UxaTdraWlIdWo1SUxJTkttckdqY1Fh\";}','yes'),(681373,'filemanager_email_verified_21','yes','yes'),(681580,'youtubeprefs_alloptions_backup_14_1_1','a:91:{s:7:\"version\";s:6:\"14.1.1\";s:9:\"centervid\";i:0;s:6:\"glance\";i:0;s:8:\"autoplay\";i:0;s:14:\"cc_load_policy\";i:0;s:12:\"cc_lang_pref\";s:0:\"\";s:14:\"iv_load_policy\";i:1;s:4:\"loop\";i:0;s:14:\"modestbranding\";i:0;s:3:\"rel\";s:1:\"1\";s:2:\"fs\";i:1;s:11:\"playsinline\";i:0;s:6:\"origin\";i:0;s:8:\"autohide\";i:2;s:2:\"hl\";s:0:\"\";s:4:\"dohl\";i:0;s:5:\"theme\";s:4:\"dark\";s:5:\"color\";s:3:\"red\";s:3:\"pro\";s:0:\"\";s:8:\"nocookie\";i:0;s:9:\"gb_compat\";i:1;s:11:\"facade_mode\";i:0;s:15:\"facade_autoplay\";i:1;s:12:\"gdpr_consent\";i:0;s:20:\"gdpr_consent_message\";s:360:\"Please accept YouTube cookies to play this video. By accepting you will be accessing content from YouTube, a service provided by an external third party.\r\n\r\nYouTube privacy policy\r\n\r\nIf you accept this notice, your choice will be saved and the page will refresh.\";s:19:\"gdpr_consent_button\";s:22:\"Accept YouTube Content\";s:13:\"playlistorder\";i:0;s:8:\"acctitle\";i:0;s:7:\"migrate\";i:0;s:15:\"migrate_youtube\";i:0;s:22:\"migrate_embedplusvideo\";i:0;s:8:\"controls\";i:1;s:10:\"oldspacing\";i:0;s:13:\"frontend_only\";i:1;s:10:\"responsive\";i:1;s:14:\"responsive_all\";i:1;s:9:\"widgetfit\";i:1;s:16:\"evselector_light\";i:0;s:18:\"stop_mobile_buffer\";i:1;s:15:\"restrict_wizard\";i:0;s:21:\"restrict_wizard_roles\";a:5:{i:0;s:13:\"administrator\";i:1;s:6:\"editor\";i:2;s:6:\"author\";i:3;s:11:\"contributor\";i:4;s:10:\"subscriber\";}s:11:\"ajax_compat\";i:0;s:10:\"ytapi_load\";s:5:\"light\";s:11:\"defaultdims\";i:0;s:5:\"width\";s:0:\"\";s:6:\"height\";s:0:\"\";s:12:\"pause_others\";i:0;s:10:\"defaultvol\";i:0;s:3:\"vol\";s:0:\"\";s:6:\"apikey\";s:0:\"\";s:15:\"gallery_columns\";i:3;s:21:\"gallery_collapse_grid\";i:0;s:28:\"gallery_collapse_grid_breaks\";a:1:{i:0;a:2:{s:2:\"bp\";a:2:{s:3:\"min\";i:0;s:3:\"max\";i:767;}s:4:\"cols\";i:1;}}s:20:\"gallery_scrolloffset\";i:20;s:19:\"gallery_hideprivate\";i:1;s:17:\"gallery_showtitle\";i:1;s:18:\"gallery_showpaging\";i:1;s:16:\"gallery_autonext\";i:0;s:17:\"gallery_thumbplay\";i:1;s:18:\"gallery_channelsub\";i:0;s:22:\"gallery_channelsublink\";s:0:\"\";s:22:\"gallery_channelsubtext\";s:23:\"Subscribe to my channel\";s:20:\"gallery_customarrows\";i:0;s:18:\"gallery_customnext\";s:4:\"Next\";s:18:\"gallery_customprev\";s:4:\"Prev\";s:16:\"gallery_pagesize\";i:15;s:16:\"not_live_content\";s:0:\"\";s:11:\"not_live_on\";i:0;s:19:\"not_live_on_channel\";i:0;s:9:\"debugmode\";i:0;s:14:\"uninstall_data\";i:0;s:17:\"admin_off_scripts\";i:0;s:8:\"defer_js\";i:0;s:12:\"defer_jquery\";i:0;s:9:\"ajax_save\";i:1;s:12:\"show_pointer\";i:1;s:9:\"onboarded\";i:0;s:17:\"old_script_method\";i:0;s:9:\"vi_active\";i:0;s:20:\"vi_hide_monetize_tab\";i:0;s:12:\"vi_endpoints\";s:0:\"\";s:8:\"vi_token\";s:0:\"\";s:13:\"vi_last_login\";s:19:\"2000-01-01 00:00:00\";s:23:\"vi_last_category_update\";s:19:\"2000-01-01 00:00:00\";s:9:\"vi_adstxt\";s:0:\"\";s:14:\"vi_js_settings\";a:15:{s:5:\"divId\";s:20:\"ytvi_story_container\";s:8:\"language\";s:5:\"en-us\";s:11:\"iabCategory\";s:0:\"\";s:4:\"font\";s:5:\"Arial\";s:8:\"fontSize\";i:12;s:8:\"keywords\";s:0:\"\";s:9:\"textColor\";s:7:\"#000000\";s:15:\"backgroundColor\";s:7:\"#ffffff\";s:11:\"vioptional1\";s:0:\"\";s:11:\"vioptional2\";s:0:\"\";s:11:\"vioptional3\";s:0:\"\";s:5:\"float\";b:1;s:10:\"dfpSupport\";b:1;s:13:\"sponsoredText\";s:0:\"\";s:13:\"poweredByText\";s:0:\"\";}s:12:\"vi_js_script\";s:0:\"\";s:15:\"vi_js_posttypes\";a:0:{}s:14:\"vi_js_position\";s:3:\"top\";s:26:\"vi_show_gdpr_authorization\";i:1;s:22:\"vi_show_privacy_button\";i:0;}','no'),(681631,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:14:\"wpide/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.4.5\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1662982935;s:11:\"plugin_path\";s:15:\"wpide/wpide.php\";}}s:7:\"abspath\";s:21:\"/var/www/translucent/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:15:\"wpide/wpide.php\";s:8:\"sdk_path\";s:14:\"wpide/freemius\";s:7:\"version\";s:5:\"2.4.5\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1662982935;}}','yes'),(681632,'fs_debug_mode','','yes'),(681633,'fs_accounts','a:6:{s:21:\"id_slug_type_path_map\";a:1:{i:10410;a:3:{s:4:\"slug\";s:5:\"wpide\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:15:\"wpide/wpide.php\";}}s:11:\"plugin_data\";a:1:{s:5:\"wpide\";a:18:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:15:\"wpide/wpide.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1661907582;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.4.5\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:5:\"3.4.1\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;s:17:\"was_plugin_loaded\";b:1;s:21:\"is_plugin_new_install\";b:0;s:17:\"connectivity_test\";a:6:{s:12:\"is_connected\";b:1;s:4:\"host\";s:14:\"10.8.1.22:8080\";s:9:\"server_ip\";s:11:\"10.165.0.89\";s:9:\"is_active\";b:1;s:9:\"timestamp\";i:1661907701;s:7:\"version\";s:5:\"3.4.1\";}s:15:\"prev_is_premium\";b:0;s:18:\"sticky_optin_added\";b:1;s:12:\"is_anonymous\";a:3:{s:2:\"is\";b:1;s:9:\"timestamp\";i:1661908458;s:7:\"version\";s:5:\"3.4.1\";}s:21:\"trial_promotion_shown\";i:1662347257;}}s:13:\"file_slug_map\";a:1:{s:15:\"wpide/wpide.php\";s:5:\"wpide\";}s:7:\"plugins\";a:1:{s:5:\"wpide\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:34:\"WPIDE - File Manager & Code Editor\";s:4:\"slug\";s:5:\"wpide\";s:12:\"premium_slug\";s:9:\"wpide-pro\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:15:\"wpide/wpide.php\";s:7:\"version\";s:5:\"3.4.1\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:0;s:14:\"premium_suffix\";s:3:\"Pro\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_cbf88d3e3daa650c15108ecc2a7b8\";s:10:\"secret_key\";N;s:2:\"id\";s:5:\"10410\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:0;}}s:9:\"unique_id\";s:32:\"5f0dcece2479dbccef7aff0e17308761\";s:13:\"admin_notices\";a:1:{s:5:\"wpide\";a:0:{}}}','yes'),(681634,'wpide_dropin_version','1.1','yes'),(681636,'wpide_installed_time','1661907692','yes'),(681638,'wpide_version','3.4.1','yes'),(681640,'wpide_changelog_viewed','0','yes'),(681642,'fs_gdpr','a:2:{s:2:\"u0\";a:1:{s:8:\"required\";b:0;}s:2:\"u4\";a:1:{s:8:\"required\";b:0;}}','yes'),(681647,'wpide_config','a:4:{s:7:\"general\";a:2:{s:9:\"dark_mode\";b:0;s:4:\"skin\";s:7:\"default\";}s:4:\"file\";a:12:{s:4:\"root\";s:1:\"/\";s:19:\"overwrite_on_upload\";b:0;s:13:\"calc_dir_size\";s:8:\"ondemand\";s:16:\"backups_max_days\";i:5;s:15:\"upload_max_size\";i:104857600;s:17:\"upload_chunk_size\";i:1048576;s:19:\"upload_simultaneous\";i:3;s:20:\"default_archive_name\";s:11:\"archive.zip\";s:8:\"editable\";a:14:{i:0;s:1:\".\";i:1;s:3:\"txt\";i:2;s:3:\"css\";i:3;s:4:\"scss\";i:4;s:4:\"less\";i:5;s:2:\"js\";i:6;s:4:\"html\";i:7;s:3:\"php\";i:8;s:4:\"json\";i:9;s:3:\"yml\";i:10;s:3:\"xml\";i:11;s:2:\"md\";i:12;s:3:\"log\";i:13;s:8:\"htaccess\";}s:14:\"autoplay_media\";b:0;s:19:\"search_simultaneous\";i:5;s:14:\"filter_entries\";a:10:{i:0;s:9:\".DS_Store\";i:1;s:5:\".tmb/\";i:2;s:6:\".idea/\";i:3;s:15:\".codekit-cache/\";i:4;s:5:\".git/\";i:5;s:12:\".sass-cache/\";i:6;s:12:\"Recycle.bin/\";i:7;s:7:\"@eaDir/\";i:8;s:9:\"#recycle/\";i:9;s:13:\"node_modules/\";}}s:6:\"editor\";a:6:{s:9:\"font_size\";i:12;s:12:\"scroll_speed\";i:3;s:22:\"hightlight_active_line\";b:0;s:18:\"behaviours_enabled\";b:1;s:13:\"use_soft_tabs\";b:0;s:8:\"tab_size\";i:4;}s:2:\"db\";a:1:{s:8:\"per_page\";s:2:\"50\";}}','yes'),(681912,'rs_cache_overlay','6.5.23','yes'),(681951,'duplicator_version_plugin','1.5.0','yes'),(681959,'duplicator_pro_exe_safe_mode','0','yes'),(681960,'duplicator_activate_plugins_after_installation','a:0:{}','yes'),(681962,'duplicator_migration_data','{\n \"installType\": -1,\n \"restoreBackupMode\": false,\n \"recoveryMode\": false,\n \"archivePath\": \"\\/var\\/www\\/dfr\\/translucent\\/20220905_devservertranslucent_59ab3d8fa1e37df39240_20220905085122_archive.zip\",\n \"packageHash\": \"59ab3d8-05085122\",\n \"installerPath\": \"\\/var\\/www\\/dfr\\/translucent\\/installer.php\",\n \"installerBootLog\": \"\\/var\\/www\\/dfr\\/translucent\\/dup-installer-bootlog__3817984-05085122.txt\",\n \"installerLog\": \"\\/var\\/www\\/dfr\\/translucent\\/dup-installer\\/dup-installer-log__3817984-05085122.txt\",\n \"dupInstallerPath\": \"\\/var\\/www\\/dfr\\/translucent\\/dup-installer\",\n \"origFileFolderPath\": \"\\/var\\/www\\/dfr\\/translucent\\/dup-installer\\/original_files_59ab3d8-05085122\",\n \"safeMode\": 0,\n \"cleanInstallerFiles\": true\n}','no'),(681963,'duplicator_settings','a:17:{s:7:\"version\";s:5:\"1.5.0\";s:18:\"uninstall_settings\";b:1;s:15:\"uninstall_files\";b:1;s:16:\"uninstall_tables\";b:1;s:13:\"package_debug\";b:0;s:17:\"package_mysqldump\";b:1;s:22:\"package_mysqldump_path\";s:0:\"\";s:24:\"package_phpdump_qrylimit\";s:3:\"100\";s:17:\"package_zip_flush\";b:0;s:19:\"installer_name_mode\";s:6:\"simple\";s:16:\"storage_position\";s:6:\"wpcont\";s:20:\"storage_htaccess_off\";b:0;s:18:\"archive_build_mode\";i:2;s:17:\"skip_archive_scan\";b:0;s:21:\"unhook_third_party_js\";b:0;s:22:\"unhook_third_party_css\";b:0;s:17:\"active_package_id\";i:-1;}','yes'),(681969,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:4:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.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-6.0.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.0.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.0.2\";s:7:\"version\";s:5:\"6.0.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.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-6.0.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.0.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.0.2\";s:7:\"version\";s:5:\"6.0.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";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:59:\"https://downloads.wordpress.org/release/wordpress-5.9.4.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.9.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.9.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.9.4-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.9.4\";s:7:\"version\";s:5:\"5.9.4\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.8.5.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-5.8.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.8.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.8.5-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-5.8.5-partial-2.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.8.5-rollback-2.zip\";}s:7:\"current\";s:5:\"5.8.5\";s:7:\"version\";s:5:\"5.8.5\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.9\";s:15:\"partial_version\";s:5:\"5.8.2\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1663037290;s:15:\"version_checked\";s:5:\"5.8.2\";s:12:\"translations\";a:0:{}}','no'),(681979,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1663037293;s:7:\"checked\";a:1:{s:11:\"translucent\";s:3:\"1.0\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(682149,'_site_transient_timeout_imagify_check_licence_1','1693980009','no'),(682150,'_site_transient_imagify_check_licence_1','1','no'),(682238,'_transient_timeout_wpseo_site_information','1663144314','no'),(682239,'_transient_wpseo_site_information','O:8:\"stdClass\":2:{s:3:\"url\";s:33:\"https://translucent.mesoishop.com\";s:13:\"subscriptions\";a:0:{}}','no'),(682240,'_transient_timeout_acf_plugin_updates','1663127670','no'),(682241,'_transient_acf_plugin_updates','a:4:{s:7:\"plugins\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";a:8:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:6:\"5.12.3\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:5:\"6.0.1\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:63:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";s:4:\"high\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";}}}s:10:\"expiration\";i:172800;s:6:\"status\";i:1;s:7:\"checked\";a:1:{s:34:\"advanced-custom-fields-pro/acf.php\";s:6:\"5.12.2\";}}','no'),(682245,'_site_transient_imagify_user_images_count','4940','no'),(682248,'_transient_health-check-site-status-result','{\"good\":13,\"recommended\":4,\"critical\":2}','yes'),(682507,'_site_transient_timeout_browser_b5a8b2280e7fb9d94033db5db5b065c0','1663593395','no'),(682508,'_site_transient_browser_b5a8b2280e7fb9d94033db5db5b065c0','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"105.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;}','no'),(682509,'_site_transient_timeout_php_check_3a6f2a803f99347534e67553ed67d1ad','1663593396','no'),(682510,'_site_transient_php_check_3a6f2a803f99347534e67553ed67d1ad','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(682517,'_transient_timeout_wpseo_total_unindexed_general_items','1663074996','no'),(682518,'_transient_wpseo_total_unindexed_general_items','0','no'),(682519,'_transient_timeout_wpseo_unindexed_term_link_count','1663074996','no'),(682520,'_transient_wpseo_unindexed_term_link_count','0','no'),(682523,'_site_transient_timeout_community-events-f852de3b31be1a9e366aff2ba2043497','1663031802','no'),(682524,'_site_transient_community-events-f852de3b31be1a9e366aff2ba2043497','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"14.169.143.0\";}s:6:\"events\";a:0:{}}','no'),(682698,'_site_transient_timeout_browser_4a822b851afbb79d7ada1445daba33ae','1663606190','no'),(682699,'_site_transient_browser_4a822b851afbb79d7ada1445daba33ae','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"103.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;}','no'),(682706,'_site_transient_timeout_theme_roots','1663039092','no'),(682707,'_site_transient_theme_roots','a:1:{s:11:\"translucent\";s:7:\"/themes\";}','no'),(682708,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1663057923;s:8:\"response\";a:6:{s:17:\"leadin/leadin.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:20:\"w.org/plugins/leadin\";s:4:\"slug\";s:6:\"leadin\";s:6:\"plugin\";s:17:\"leadin/leadin.php\";s:11:\"new_version\";s:6:\"9.0.88\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/leadin/\";s:7:\"package\";s:49:\"https://downloads.wordpress.org/plugin/leadin.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/leadin/assets/icon-256x256.png?rev=2783825\";s:2:\"1x\";s:59:\"https://ps.w.org/leadin/assets/icon-128x128.png?rev=2783825\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/leadin/assets/banner-1544x500.png?rev=2783825\";s:2:\"1x\";s:61:\"https://ps.w.org/leadin/assets/banner-772x250.png?rev=2783825\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"6.0.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:27:\"redirection/redirection.php\";O:8:\"stdClass\":12:{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.3.3\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redirection/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/redirection.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:\"5.4\";s:6:\"tested\";s:5:\"6.0.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:27:\"updraftplus/updraftplus.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/updraftplus\";s:4:\"slug\";s:11:\"updraftplus\";s:6:\"plugin\";s:27:\"updraftplus/updraftplus.php\";s:11:\"new_version\";s:7:\"1.22.21\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/updraftplus/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/updraftplus.1.22.21.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-256x256.jpg?rev=1686200\";s:2:\"1x\";s:64:\"https://ps.w.org/updraftplus/assets/icon-128x128.jpg?rev=1686200\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/updraftplus/assets/banner-1544x500.png?rev=1686200\";s:2:\"1x\";s:66:\"https://ps.w.org/updraftplus/assets/banner-772x250.png?rev=1686200\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.2\";s:6:\"tested\";s:5:\"6.0.2\";s:12:\"requires_php\";b:0;}s:15:\"wpide/wpide.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:19:\"w.org/plugins/wpide\";s:4:\"slug\";s:5:\"wpide\";s:6:\"plugin\";s:15:\"wpide/wpide.php\";s:11:\"new_version\";s:5:\"3.4.2\";s:3:\"url\";s:36:\"https://wordpress.org/plugins/wpide/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/wpide.3.4.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:58:\"https://ps.w.org/wpide/assets/icon-256x256.png?rev=2769504\";s:2:\"1x\";s:58:\"https://ps.w.org/wpide/assets/icon-128x128.png?rev=2769504\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:61:\"https://ps.w.org/wpide/assets/banner-1544x500.png?rev=2763745\";s:2:\"1x\";s:60:\"https://ps.w.org/wpide/assets/banner-772x250.png?rev=2763745\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";s:6:\"tested\";s:5:\"6.0.2\";s:12:\"requires_php\";s:5:\"7.4.0\";}s:23:\"revslider/revslider.php\";O:8:\"stdClass\":6:{s:4:\"slug\";s:9:\"revslider\";s:7:\"package\";s:0:\"\";s:6:\"tested\";s:5:\"5.9.3\";s:5:\"icons\";a:1:{s:2:\"1x\";s:62:\"//updates.themepunch-ext-a.tools/revslider/logo.png?rev=6.2.23\";}s:3:\"url\";s:33:\"https://www.sliderrevolution.com/\";s:11:\"new_version\";s:6:\"6.5.31\";}s:34:\"advanced-custom-fields-pro/acf.php\";O:8:\"stdClass\":8:{s:4:\"slug\";s:26:\"advanced-custom-fields-pro\";s:6:\"plugin\";s:34:\"advanced-custom-fields-pro/acf.php\";s:11:\"new_version\";s:6:\"5.12.3\";s:3:\"url\";s:36:\"https://www.advancedcustomfields.com\";s:6:\"tested\";s:5:\"6.0.1\";s:7:\"package\";s:0:\"\";s:5:\"icons\";a:1:{s:7:\"default\";s:63:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png\";}s:7:\"banners\";a:2:{s:3:\"low\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";s:4:\"high\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";}}}s:12:\"translations\";a:3:{i:0;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:16:\"tinymce-advanced\";s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.6.0\";s:7:\"updated\";s:19:\"2020-10-06 00:41:55\";s:7:\"package\";s:83:\"https://downloads.wordpress.org/translation/plugin/tinymce-advanced/5.6.0/pt_BR.zip\";s:10:\"autoupdate\";b:1;}i:1;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:14:\"classic-editor\";s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.6.2\";s:7:\"updated\";s:19:\"2020-08-24 23:09:18\";s:7:\"package\";s:81:\"https://downloads.wordpress.org/translation/plugin/classic-editor/1.6.2/pt_BR.zip\";s:10:\"autoupdate\";b:1;}i:2;a:7:{s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:11:\"redis-cache\";s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.2.0\";s:7:\"updated\";s:19:\"2022-07-22 10:46:49\";s:7:\"package\";s:78:\"https://downloads.wordpress.org/translation/plugin/redis-cache/2.2.0/pt_BR.zip\";s:10:\"autoupdate\";b:1;}}s:9:\"no_update\";a:41:{s:19:\"404page/404page.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/404page\";s:4:\"slug\";s:7:\"404page\";s:6:\"plugin\";s:19:\"404page/404page.php\";s:11:\"new_version\";s:6:\"11.3.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/404page/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/404page.11.3.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:60:\"https://ps.w.org/404page/assets/icon-256x256.png?rev=2451324\";s:2:\"1x\";s:52:\"https://ps.w.org/404page/assets/icon.svg?rev=2451324\";s:3:\"svg\";s:52:\"https://ps.w.org/404page/assets/icon.svg?rev=2451324\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/404page/assets/banner-1544x500.png?rev=2451324\";s:2:\"1x\";s:62:\"https://ps.w.org/404page/assets/banner-772x250.png?rev=2451324\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:30:\"advanced-custom-fields/acf.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:36:\"w.org/plugins/advanced-custom-fields\";s:4:\"slug\";s:22:\"advanced-custom-fields\";s:6:\"plugin\";s:30:\"advanced-custom-fields/acf.php\";s:11:\"new_version\";s:6:\"5.12.3\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/advanced-custom-fields/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/advanced-custom-fields.5.12.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png?rev=1082746\";s:2:\"1x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-128x128.png?rev=1082746\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";s:2:\"1x\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";}s:37:\"tinymce-advanced/tinymce-advanced.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/tinymce-advanced\";s:4:\"slug\";s:16:\"tinymce-advanced\";s:6:\"plugin\";s:37:\"tinymce-advanced/tinymce-advanced.php\";s:11:\"new_version\";s:5:\"5.6.0\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/tinymce-advanced/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/tinymce-advanced.5.6.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/tinymce-advanced/assets/icon-256x256.png?rev=971511\";s:2:\"1x\";s:68:\"https://ps.w.org/tinymce-advanced/assets/icon-128x128.png?rev=971511\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/tinymce-advanced/assets/banner-1544x500.png?rev=2390186\";s:2:\"1x\";s:71:\"https://ps.w.org/tinymce-advanced/assets/banner-772x250.png?rev=2390186\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"5.0\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":10:{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:4:\"7.64\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.64.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=2746234\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=2746234\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";}s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/all-in-one-seo-pack\";s:4:\"slug\";s:19:\"all-in-one-seo-pack\";s:6:\"plugin\";s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";s:11:\"new_version\";s:5:\"4.2.4\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/all-in-one-seo-pack/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/all-in-one-seo-pack.4.2.4.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:72:\"https://ps.w.org/all-in-one-seo-pack/assets/icon-256x256.png?rev=2443290\";s:2:\"1x\";s:64:\"https://ps.w.org/all-in-one-seo-pack/assets/icon.svg?rev=2443290\";s:3:\"svg\";s:64:\"https://ps.w.org/all-in-one-seo-pack/assets/icon.svg?rev=2443290\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/all-in-one-seo-pack/assets/banner-1544x500.png?rev=2443290\";s:2:\"1x\";s:74:\"https://ps.w.org/all-in-one-seo-pack/assets/banner-772x250.png?rev=2443290\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:11:\"amp/amp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:17:\"w.org/plugins/amp\";s:4:\"slug\";s:3:\"amp\";s:6:\"plugin\";s:11:\"amp/amp.php\";s:11:\"new_version\";s:5:\"2.3.0\";s:3:\"url\";s:34:\"https://wordpress.org/plugins/amp/\";s:7:\"package\";s:52:\"https://downloads.wordpress.org/plugin/amp.2.3.0.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:56:\"https://ps.w.org/amp/assets/icon-256x256.png?rev=2527602\";s:2:\"1x\";s:48:\"https://ps.w.org/amp/assets/icon.svg?rev=2527602\";s:3:\"svg\";s:48:\"https://ps.w.org/amp/assets/icon.svg?rev=2527602\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/amp/assets/banner-1544x500.png?rev=2527602\";s:2:\"1x\";s:58:\"https://ps.w.org/amp/assets/banner-772x250.png?rev=2527602\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:27:\"autoptimize/autoptimize.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/autoptimize\";s:4:\"slug\";s:11:\"autoptimize\";s:6:\"plugin\";s:27:\"autoptimize/autoptimize.php\";s:11:\"new_version\";s:7:\"3.1.1.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/autoptimize/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/autoptimize.3.1.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/autoptimize/assets/icon-256X256.png?rev=2211608\";s:2:\"1x\";s:64:\"https://ps.w.org/autoptimize/assets/icon-128x128.png?rev=1864142\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/autoptimize/assets/banner-772x250.jpg?rev=1315920\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:28:\"amazon-polly/amazonpolly.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/amazon-polly\";s:4:\"slug\";s:12:\"amazon-polly\";s:6:\"plugin\";s:28:\"amazon-polly/amazonpolly.php\";s:11:\"new_version\";s:5:\"4.3.2\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/amazon-polly/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/amazon-polly.4.3.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/amazon-polly/assets/icon-256x256.png?rev=2183954\";s:2:\"1x\";s:65:\"https://ps.w.org/amazon-polly/assets/icon-128x128.png?rev=2183954\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:67:\"https://ps.w.org/amazon-polly/assets/banner-772x250.png?rev=2183954\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.6.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.6.2.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:27:\"code-syntax-block/index.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:31:\"w.org/plugins/code-syntax-block\";s:4:\"slug\";s:17:\"code-syntax-block\";s:6:\"plugin\";s:27:\"code-syntax-block/index.php\";s:11:\"new_version\";s:5:\"3.1.1\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/code-syntax-block/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/code-syntax-block.3.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/code-syntax-block/assets/icon-256x256.png?rev=2114225\";s:2:\"1x\";s:70:\"https://ps.w.org/code-syntax-block/assets/icon-128x128.png?rev=2114225\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/code-syntax-block/assets/banner-1544x500.png?rev=2114225\";s:2:\"1x\";s:72:\"https://ps.w.org/code-syntax-block/assets/banner-772x250.png?rev=2114225\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.6.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.6.3.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";s:6:\"tested\";s:5:\"6.0.2\";s:12:\"requires_php\";b:0;}s:25:\"duplicator/duplicator.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:24:\"w.org/plugins/duplicator\";s:4:\"slug\";s:10:\"duplicator\";s:6:\"plugin\";s:25:\"duplicator/duplicator.php\";s:11:\"new_version\";s:5:\"1.5.0\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/duplicator/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/duplicator.1.5.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/duplicator/assets/icon-256x256.png?rev=2605836\";s:2:\"1x\";s:63:\"https://ps.w.org/duplicator/assets/icon-128x128.png?rev=2605835\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/duplicator/assets/banner-772x250.png?rev=2085472\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:55:\"embed-calendly-scheduling/embed-calendly-scheduling.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:39:\"w.org/plugins/embed-calendly-scheduling\";s:4:\"slug\";s:25:\"embed-calendly-scheduling\";s:6:\"plugin\";s:55:\"embed-calendly-scheduling/embed-calendly-scheduling.php\";s:11:\"new_version\";s:3:\"3.0\";s:3:\"url\";s:56:\"https://wordpress.org/plugins/embed-calendly-scheduling/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/embed-calendly-scheduling.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/embed-calendly-scheduling/assets/icon-256x256.png?rev=2576331\";s:2:\"1x\";s:78:\"https://ps.w.org/embed-calendly-scheduling/assets/icon-256x256.png?rev=2576331\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:80:\"https://ps.w.org/embed-calendly-scheduling/assets/banner-772x250.png?rev=2576331\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:30:\"youtube-embed-plus/youtube.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:32:\"w.org/plugins/youtube-embed-plus\";s:4:\"slug\";s:18:\"youtube-embed-plus\";s:6:\"plugin\";s:30:\"youtube-embed-plus/youtube.php\";s:11:\"new_version\";s:6:\"14.1.2\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/youtube-embed-plus/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/youtube-embed-plus.14.1.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/youtube-embed-plus/assets/icon-256x256.png?rev=2165403\";s:2:\"1x\";s:71:\"https://ps.w.org/youtube-embed-plus/assets/icon-128x128.png?rev=2165403\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/youtube-embed-plus/assets/banner-1544x500.png?rev=2165457\";s:2:\"1x\";s:73:\"https://ps.w.org/youtube-embed-plus/assets/banner-772x250.png?rev=2165403\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.5\";}s:50:\"official-facebook-pixel/facebook-for-wordpress.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/official-facebook-pixel\";s:4:\"slug\";s:23:\"official-facebook-pixel\";s:6:\"plugin\";s:50:\"official-facebook-pixel/facebook-for-wordpress.php\";s:11:\"new_version\";s:5:\"3.0.7\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/official-facebook-pixel/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/official-facebook-pixel.3.0.7.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:68:\"https://ps.w.org/official-facebook-pixel/assets/icon.svg?rev=2452179\";s:3:\"svg\";s:68:\"https://ps.w.org/official-facebook-pixel/assets/icon.svg?rev=2452179\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";}s:50:\"google-analytics-for-wordpress/googleanalytics.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:44:\"w.org/plugins/google-analytics-for-wordpress\";s:4:\"slug\";s:30:\"google-analytics-for-wordpress\";s:6:\"plugin\";s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:11:\"new_version\";s:5:\"8.8.2\";s:3:\"url\";s:61:\"https://wordpress.org/plugins/google-analytics-for-wordpress/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.8.8.2.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:83:\"https://ps.w.org/google-analytics-for-wordpress/assets/icon-256x256.png?rev=1598927\";s:2:\"1x\";s:75:\"https://ps.w.org/google-analytics-for-wordpress/assets/icon.svg?rev=1598927\";s:3:\"svg\";s:75:\"https://ps.w.org/google-analytics-for-wordpress/assets/icon.svg?rev=1598927\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:86:\"https://ps.w.org/google-analytics-for-wordpress/assets/banner-1544x500.png?rev=2159532\";s:2:\"1x\";s:85:\"https://ps.w.org/google-analytics-for-wordpress/assets/banner-772x250.png?rev=2159532\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"4.8.0\";}s:24:\"header-footer/plugin.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/header-footer\";s:4:\"slug\";s:13:\"header-footer\";s:6:\"plugin\";s:24:\"header-footer/plugin.php\";s:11:\"new_version\";s:5:\"3.2.5\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/header-footer/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/header-footer.3.2.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/header-footer/assets/icon-256x256.png?rev=1064219\";s:2:\"1x\";s:66:\"https://ps.w.org/header-footer/assets/icon-256x256.png?rev=1064219\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/header-footer/assets/banner-772x250.png?rev=1064202\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:17:\"iframe/iframe.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:20:\"w.org/plugins/iframe\";s:4:\"slug\";s:6:\"iframe\";s:6:\"plugin\";s:17:\"iframe/iframe.php\";s:11:\"new_version\";s:3:\"4.5\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/iframe/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/plugin/iframe.4.5.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:57:\"https://s.w.org/plugins/geopattern-icon/iframe_99a44b.svg\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/iframe/assets/banner-772x250.png?rev=2713983\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";}s:19:\"imagify/imagify.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/imagify\";s:4:\"slug\";s:7:\"imagify\";s:6:\"plugin\";s:19:\"imagify/imagify.php\";s:11:\"new_version\";s:3:\"2.0\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/imagify/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/imagify.2.0.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:60:\"https://ps.w.org/imagify/assets/icon-256x256.png?rev=2759224\";s:2:\"1x\";s:52:\"https://ps.w.org/imagify/assets/icon.svg?rev=1337199\";s:3:\"svg\";s:52:\"https://ps.w.org/imagify/assets/icon.svg?rev=1337199\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/imagify/assets/banner-1544x500.png?rev=2759224\";s:2:\"1x\";s:62:\"https://ps.w.org/imagify/assets/banner-772x250.png?rev=2759224\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}s:27:\"cf7-hubspot/cf7-hubspot.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/cf7-hubspot\";s:4:\"slug\";s:11:\"cf7-hubspot\";s:6:\"plugin\";s:27:\"cf7-hubspot/cf7-hubspot.php\";s:11:\"new_version\";s:5:\"1.2.5\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/cf7-hubspot/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/cf7-hubspot.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/cf7-hubspot/assets/icon-256x256.png?rev=2585265\";s:2:\"1x\";s:64:\"https://ps.w.org/cf7-hubspot/assets/icon-128x128.png?rev=2585265\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/cf7-hubspot/assets/banner-1544x500.png?rev=2585265\";s:2:\"1x\";s:66:\"https://ps.w.org/cf7-hubspot/assets/banner-772x250.png?rev=2585265\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.8\";}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:6:\"11.3.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/jetpack.11.3.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:60:\"https://ps.w.org/jetpack/assets/icon-256x256.png?rev=2638128\";s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2638128\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2638128\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=2653649\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=2653649\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";s:6:\"tested\";s:5:\"6.0.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:31:\"popup-builder/popup-builder.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/popup-builder\";s:4:\"slug\";s:13:\"popup-builder\";s:6:\"plugin\";s:31:\"popup-builder/popup-builder.php\";s:11:\"new_version\";s:6:\"4.1.13\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/popup-builder/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/popup-builder.4.1.13.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/popup-builder/assets/icon-128x128.gif?rev=2698840\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/popup-builder/assets/banner-772x250.jpg?rev=2698842\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.2\";}s:47:\"post-tags-and-categories-for-pages/post-tag.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:48:\"w.org/plugins/post-tags-and-categories-for-pages\";s:4:\"slug\";s:34:\"post-tags-and-categories-for-pages\";s:6:\"plugin\";s:47:\"post-tags-and-categories-for-pages/post-tag.php\";s:11:\"new_version\";s:5:\"1.4.1\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/post-tags-and-categories-for-pages/\";s:7:\"package\";s:83:\"https://downloads.wordpress.org/plugin/post-tags-and-categories-for-pages.1.4.1.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:78:\"https://s.w.org/plugins/geopattern-icon/post-tags-and-categories-for-pages.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";}s:21:\"raw-html/raw_html.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:22:\"w.org/plugins/raw-html\";s:4:\"slug\";s:8:\"raw-html\";s:6:\"plugin\";s:21:\"raw-html/raw_html.php\";s:11:\"new_version\";s:5:\"1.6.3\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/raw-html/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/raw-html.1.6.3.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:52:\"https://s.w.org/plugins/geopattern-icon/raw-html.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"2.8\";}s:27:\"redis-cache/redis-cache.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/redis-cache\";s:4:\"slug\";s:11:\"redis-cache\";s:6:\"plugin\";s:27:\"redis-cache/redis-cache.php\";s:11:\"new_version\";s:5:\"2.2.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redis-cache/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/redis-cache.2.2.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-256x256.gif?rev=2568513\";s:2:\"1x\";s:64:\"https://ps.w.org/redis-cache/assets/icon-128x128.gif?rev=2568513\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/redis-cache/assets/banner-1544x500.png?rev=2315420\";s:2:\"1x\";s:66:\"https://ps.w.org/redis-cache/assets/banner-772x250.png?rev=2315420\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";}s:57:\"reveal-ids-for-wp-admin-25/reveal-ids-for-wp-admin-25.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:40:\"w.org/plugins/reveal-ids-for-wp-admin-25\";s:4:\"slug\";s:26:\"reveal-ids-for-wp-admin-25\";s:6:\"plugin\";s:57:\"reveal-ids-for-wp-admin-25/reveal-ids-for-wp-admin-25.php\";s:11:\"new_version\";s:5:\"1.5.4\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/reveal-ids-for-wp-admin-25/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/reveal-ids-for-wp-admin-25.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/reveal-ids-for-wp-admin-25/assets/icon-256x256.png?rev=1162209\";s:2:\"1x\";s:79:\"https://ps.w.org/reveal-ids-for-wp-admin-25/assets/icon-128x128.png?rev=1163228\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:80:\"https://ps.w.org/reveal-ids-for-wp-admin-25/assets/banner-772x250.png?rev=479453\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";}s:27:\"revisionize/revisionize.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/revisionize\";s:4:\"slug\";s:11:\"revisionize\";s:6:\"plugin\";s:27:\"revisionize/revisionize.php\";s:11:\"new_version\";s:5:\"2.3.4\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/revisionize/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/revisionize.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/revisionize/assets/icon-256x256.png?rev=1832949\";s:2:\"1x\";s:64:\"https://ps.w.org/revisionize/assets/icon-128x128.png?rev=1832949\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:33:\"social-warfare/social-warfare.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/social-warfare\";s:4:\"slug\";s:14:\"social-warfare\";s:6:\"plugin\";s:33:\"social-warfare/social-warfare.php\";s:11:\"new_version\";s:5:\"4.3.0\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/social-warfare/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/social-warfare.4.3.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/social-warfare/assets/icon-256x256.jpg?rev=2272097\";s:2:\"1x\";s:67:\"https://ps.w.org/social-warfare/assets/icon-128x128.jpg?rev=2272097\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/social-warfare/assets/banner-1544x500.jpg?rev=2272097\";s:2:\"1x\";s:69:\"https://ps.w.org/social-warfare/assets/banner-772x250.jpg?rev=2272097\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"4.5.0\";}s:57:\"ssl-insecure-content-fixer/ssl-insecure-content-fixer.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:40:\"w.org/plugins/ssl-insecure-content-fixer\";s:4:\"slug\";s:26:\"ssl-insecure-content-fixer\";s:6:\"plugin\";s:57:\"ssl-insecure-content-fixer/ssl-insecure-content-fixer.php\";s:11:\"new_version\";s:5:\"2.7.2\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/ssl-insecure-content-fixer/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/ssl-insecure-content-fixer.2.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/ssl-insecure-content-fixer/assets/icon-256x256.png?rev=2590634\";s:2:\"1x\";s:79:\"https://ps.w.org/ssl-insecure-content-fixer/assets/icon-128x128.png?rev=2590634\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:81:\"https://ps.w.org/ssl-insecure-content-fixer/assets/banner-772x250.png?rev=2590634\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";}s:27:\"simple-tags/simple-tags.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/simple-tags\";s:4:\"slug\";s:11:\"simple-tags\";s:6:\"plugin\";s:27:\"simple-tags/simple-tags.php\";s:11:\"new_version\";s:5:\"3.6.4\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/simple-tags/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/simple-tags.3.6.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/simple-tags/assets/icon-256x256.png?rev=2549065\";s:2:\"1x\";s:64:\"https://ps.w.org/simple-tags/assets/icon-128x128.png?rev=2549065\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/simple-tags/assets/banner-1544x500.png?rev=2580554\";s:2:\"1x\";s:66:\"https://ps.w.org/simple-tags/assets/banner-772x250.png?rev=2580554\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/simple-tags/assets/banner-1544x500-rtl.png?rev=2580554\";s:2:\"1x\";s:70:\"https://ps.w.org/simple-tags/assets/banner-772x250-rtl.png?rev=2580554\";}s:8:\"requires\";s:3:\"3.3\";}s:33:\"w3-total-cache/w3-total-cache.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/w3-total-cache\";s:4:\"slug\";s:14:\"w3-total-cache\";s:6:\"plugin\";s:33:\"w3-total-cache/w3-total-cache.php\";s:11:\"new_version\";s:5:\"2.2.4\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/w3-total-cache/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/w3-total-cache.2.2.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/w3-total-cache/assets/icon-256x256.png?rev=1041806\";s:2:\"1x\";s:67:\"https://ps.w.org/w3-total-cache/assets/icon-128x128.png?rev=1041806\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/w3-total-cache/assets/banner-772x250.jpg?rev=1041806\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.8\";}s:31:\"wpdiscuz/class.WpdiscuzCore.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:22:\"w.org/plugins/wpdiscuz\";s:4:\"slug\";s:8:\"wpdiscuz\";s:6:\"plugin\";s:31:\"wpdiscuz/class.WpdiscuzCore.php\";s:11:\"new_version\";s:5:\"7.4.2\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/wpdiscuz/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/wpdiscuz.7.4.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:61:\"https://ps.w.org/wpdiscuz/assets/icon-256x256.png?rev=1076265\";s:2:\"1x\";s:61:\"https://ps.w.org/wpdiscuz/assets/icon-128x128.png?rev=1076265\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/wpdiscuz/assets/banner-1544x500.png?rev=1767022\";s:2:\"1x\";s:63:\"https://ps.w.org/wpdiscuz/assets/banner-772x250.png?rev=1767022\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:39:\"wp-file-manager/file_folder_manager.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/wp-file-manager\";s:4:\"slug\";s:15:\"wp-file-manager\";s:6:\"plugin\";s:39:\"wp-file-manager/file_folder_manager.php\";s:11:\"new_version\";s:5:\"7.1.6\";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:31:\"wp-google-maps/wpGoogleMaps.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/wp-google-maps\";s:4:\"slug\";s:14:\"wp-google-maps\";s:6:\"plugin\";s:31:\"wp-google-maps/wpGoogleMaps.php\";s:11:\"new_version\";s:6:\"9.0.10\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/wp-google-maps/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/wp-google-maps.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/wp-google-maps/assets/icon-256x256.gif?rev=2765589\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-google-maps/assets/icon-128x128.gif?rev=2765589\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/wp-google-maps/assets/banner-1544x500.png?rev=2745267\";s:2:\"1x\";s:69:\"https://ps.w.org/wp-google-maps/assets/banner-772x250.png?rev=2746397\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.5\";}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-smtp\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:5:\"3.5.2\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.3.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.png?rev=2468655\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.png?rev=2468655\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";}s:33:\"wp-phpmyadmin-extension/index.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/wp-phpmyadmin-extension\";s:4:\"slug\";s:23:\"wp-phpmyadmin-extension\";s:6:\"plugin\";s:33:\"wp-phpmyadmin-extension/index.php\";s:11:\"new_version\";s:7:\"5.2.0.7\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/wp-phpmyadmin-extension/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/wp-phpmyadmin-extension.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:76:\"https://ps.w.org/wp-phpmyadmin-extension/assets/icon-128x128.png?rev=2234810\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/wp-phpmyadmin-extension/assets/banner-1544x500.png?rev=2234812\";s:2:\"1x\";s:78:\"https://ps.w.org/wp-phpmyadmin-extension/assets/banner-772x250.png?rev=2234811\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:33:\"duplicate-post/duplicate-post.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-post\";s:4:\"slug\";s:14:\"duplicate-post\";s:6:\"plugin\";s:33:\"duplicate-post/duplicate-post.php\";s:11:\"new_version\";s:3:\"4.5\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-post/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/duplicate-post.4.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/duplicate-post/assets/icon-256x256.png?rev=2336666\";s:2:\"1x\";s:67:\"https://ps.w.org/duplicate-post/assets/icon-128x128.png?rev=2336666\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/duplicate-post/assets/banner-1544x500.png?rev=2336666\";s:2:\"1x\";s:69:\"https://ps.w.org/duplicate-post/assets/banner-772x250.png?rev=2336666\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";s:6:\"tested\";s:5:\"6.0.2\";s:12:\"requires_php\";s:6:\"5.6.20\";}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":12:{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:6:\"19.6.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.19.6.1.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.png?rev=2643727\";s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=2643727\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=2643727\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=2643727\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=2643727\";}s:8:\"requires\";s:3:\"5.9\";s:6:\"tested\";s:5:\"6.0.2\";s:12:\"requires_php\";s:6:\"5.6.20\";}s:25:\"zopim-live-chat/zopim.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/zopim-live-chat\";s:4:\"slug\";s:15:\"zopim-live-chat\";s:6:\"plugin\";s:25:\"zopim-live-chat/zopim.php\";s:11:\"new_version\";s:6:\"1.4.18\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/zopim-live-chat/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/zopim-live-chat.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:68:\"https://ps.w.org/zopim-live-chat/assets/icon-256x256.png?rev=1522846\";s:2:\"1x\";s:60:\"https://ps.w.org/zopim-live-chat/assets/icon.svg?rev=1522846\";s:3:\"svg\";s:60:\"https://ps.w.org/zopim-live-chat/assets/icon.svg?rev=1522846\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/zopim-live-chat/assets/banner-1544x500.png?rev=1545638\";s:2:\"1x\";s:70:\"https://ps.w.org/zopim-live-chat/assets/banner-772x250.png?rev=1545638\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.1\";}}s:7:\"checked\";a:52:{s:19:\"404page/404page.php\";s:6:\"11.3.1\";s:30:\"advanced-custom-fields/acf.php\";s:6:\"5.12.3\";s:29:\"acf-repeater/acf-repeater.php\";s:5:\"2.1.0\";s:34:\"advanced-custom-fields-pro/acf.php\";s:6:\"5.12.2\";s:37:\"tinymce-advanced/tinymce-advanced.php\";s:5:\"5.6.0\";s:19:\"akismet/akismet.php\";s:3:\"5.0\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:4:\"7.64\";s:43:\"all-in-one-seo-pack/all_in_one_seo_pack.php\";s:5:\"4.2.4\";s:11:\"amp/amp.php\";s:5:\"2.3.0\";s:27:\"autoptimize/autoptimize.php\";s:7:\"3.1.1.1\";s:28:\"amazon-polly/amazonpolly.php\";s:5:\"4.3.2\";s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.2\";s:27:\"code-syntax-block/index.php\";s:5:\"3.1.1\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.5.3\";s:25:\"duplicator/duplicator.php\";s:5:\"1.5.0\";s:55:\"embed-calendly-scheduling/embed-calendly-scheduling.php\";s:3:\"3.0\";s:30:\"youtube-embed-plus/youtube.php\";s:6:\"14.1.2\";s:50:\"official-facebook-pixel/facebook-for-wordpress.php\";s:5:\"3.0.7\";s:50:\"google-analytics-for-wordpress/googleanalytics.php\";s:5:\"8.8.2\";s:24:\"header-footer/plugin.php\";s:5:\"3.2.5\";s:9:\"hello.php\";s:5:\"1.7.2\";s:17:\"leadin/leadin.php\";s:7:\"8.16.28\";s:17:\"iframe/iframe.php\";s:3:\"4.5\";s:19:\"imagify/imagify.php\";s:3:\"2.0\";s:27:\"cf7-hubspot/cf7-hubspot.php\";s:5:\"1.2.5\";s:35:\"cf7-hubspot-pro/cf7-hubspot-pro.php\";s:5:\"1.2.1\";s:19:\"jetpack/jetpack.php\";s:5:\"9.9.1\";s:31:\"popup-builder/popup-builder.php\";s:6:\"4.1.13\";s:47:\"post-tags-and-categories-for-pages/post-tag.php\";s:5:\"1.4.1\";s:21:\"raw-html/raw_html.php\";s:5:\"1.6.3\";s:27:\"redirection/redirection.php\";s:5:\"5.3.2\";s:27:\"redis-cache/redis-cache.php\";s:5:\"2.2.0\";s:57:\"reveal-ids-for-wp-admin-25/reveal-ids-for-wp-admin-25.php\";s:5:\"1.5.4\";s:27:\"revisionize/revisionize.php\";s:5:\"2.3.4\";s:49:\"sendgrid-email-delivery-simplified/wpsendgrid.php\";s:6:\"1.11.8\";s:23:\"revslider/revslider.php\";s:6:\"6.5.23\";s:33:\"social-warfare/social-warfare.php\";s:5:\"4.3.0\";s:57:\"ssl-insecure-content-fixer/ssl-insecure-content-fixer.php\";s:5:\"2.7.2\";s:27:\"simple-tags/simple-tags.php\";s:5:\"3.6.4\";s:27:\"updraftplus/updraftplus.php\";s:7:\"1.22.19\";s:33:\"w3-total-cache/w3-total-cache.php\";s:5:\"2.2.4\";s:31:\"wpdiscuz/class.WpdiscuzCore.php\";s:5:\"7.4.2\";s:39:\"wp-file-manager/file_folder_manager.php\";s:5:\"7.1.6\";s:31:\"wp-google-maps/wpGoogleMaps.php\";s:6:\"9.0.10\";s:15:\"wpide/wpide.php\";s:5:\"3.4.1\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:5:\"3.5.2\";s:33:\"wp-phpmyadmin-extension/index.php\";s:7:\"5.2.0.7\";s:24:\"wp-rocket2/wp-rocket.php\";s:6:\"3.11.3\";s:33:\"duplicate-post/duplicate-post.php\";s:3:\"4.4\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"19.1\";s:40:\"wordpress-seo-premium/wp-seo-premium.php\";s:4:\"17.7\";s:25:\"zopim-live-chat/zopim.php\";s:6:\"1.4.18\";}}','no'),(682717,'_site_transient_timeout_community-events-65fb6c5d36cb28a2f83ffec1a4fde051','1663080627','no'),(682718,'_site_transient_community-events-65fb6c5d36cb28a2f83ffec1a4fde051','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:20:\"2402:800:6375:10ce::\";}s:6:\"events\";a:0:{}}','no'),(682719,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1663080628','no'); INSERT INTO `wp_options` VALUES (682720,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s: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 \";s: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, 07 Sep 2022 22:55:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s: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=6.1-alpha-54132\";s: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:30:{i:0;a:6:{s:4:\"data\";s:60:\"\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:64:\"Dropping security updates for WordPress versions 3.7 through 4.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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wordpress.org/news/2022/09/dropping-security-updates-for-wordpress-versions-3-7-through-4-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Sep 2022 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:8:\"category\";a:2:{i:0;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: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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13466\";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:343:\"As of December 1, 2022 the WordPress Security Team will no longer provide security updates for WordPress versions 3.7 through 4.0. These versions of WordPress were first released eight or more years ago so the vast majority of WordPress installations run a more recent version of WordPress. The chances this will affect your site, or […]\";s: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:\"Peter Wilson\";s: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:2478:\"\n

As of December 1, 2022 the WordPress Security Team will no longer provide security updates for WordPress versions 3.7 through 4.0.

\n\n\n\n

These versions of WordPress were first released eight or more years ago so the vast majority of WordPress installations run a more recent version of WordPress. The chances this will affect your site, or sites, is very small.

\n\n\n\n

If you are unsure if you are running an up-to-date version of WordPress, please log in to your site’s dashboard. Out of date versions of WordPress will display a notice that looks like this:

\n\n\n\n
\"WordPress
\n\n\n\n

In WordPress versions 3.8 – 4.0, the version you are running is displayed in the bottom of the “At a Glance” section of the dashboard. In WordPress 3.7 this section is titled “Right Now”.

\n\n\n\n
\""At
\n\n\n\n

The Make WordPress Security blog has further details about the process to end support.

\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:\"13466\";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:60:\"\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:38:\"The Month in WordPress – August 2022\";s: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://wordpress.org/news/2022/09/the-month-in-wordpress-august-2022/\";s: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, 05 Sep 2022 13:23: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13445\";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:361:\"August has been a busy month, with the redesign of WordPress.org, new localized content on Learn WordPress, and the WordPress 6.0.2 security and maintenance release. But that’s not all! Read on to catch up on the latest WordPress news. WordPress 6.1 walk-through scheduled for September 13, 2022 Save the date! A live interactive walk-through of […]\";s: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:\"rmartinezduque\";s: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:15623:\"\n

August has been a busy month, with the redesign of WordPress.org, new localized content on Learn WordPress, and the WordPress 6.0.2 security and maintenance release. But that’s not all! Read on to catch up on the latest WordPress news.

\n\n\n\n
\n\n\n\n

WordPress 6.1 walk-through scheduled for September 13, 2022

\n\n\n\n

Save the date! A live interactive walk-through of WordPress 6.1 is coming up on September 13, 2022, at 16:00 UTC. The event will take place via Zoom and include a discussion of new major features, resolved tickets, and potential blockers.

\n\n\n\n

Attendance is open to anyone who wants to know more about what’s coming in the next major release. If you are unable to attend, the event will be recorded for on-demand viewing.

\n\n\n\n
\n

Learn more about the WordPress 6.1 product walk-through.

\n
\n\n\n\n
\n\n\n\n

The WordPress.org Homepage and Download page got a new jazz-inspired look

\n\n\n\n

The redesign of the WordPress.org homepage and download page went live on August 15, 2022. The new pages highlight the benefits of using WordPress while making it easy to access resources for getting started. The look and feel build on the jazzy aesthetic that WordPress is known for.

\n\n\n\n
\"WordPress.org
\n\n\n\n

In addition, the admin bar and global navigation menu have been updated to simplify and better organize the content across the WordPress.org network. Expect more design updates and iterations as efforts to refresh the website continue.

\n\n\n\n
\n

Check out the new WordPress.org homepage and download page.

\n
\n\n\n\n
\n\n\n\n

Gutenberg versions 13.9 and 14.0 are here

\n\n\n\n

Two new versions of Gutenberg were released last month:

\n\n\n\n
    \n
  • Gutenberg 13.9 became available for download on August 17, 2022. This release continues to iterate and polish the user interface (UI), interaction, and engine work for site editing.
  • \n\n\n\n
  • Gutenberg 14.0 brings a lot of enhancements, including extra block supports in the UI, a revamped List block, and more. It shipped on August 31, 2022.
  • \n
\n\n\n\n
\n

This new post in the “Core Editor Improvement” series focuses on the template creation enhancements coming in WordPress 6.1. You can explore them now with the Gutengerg plugin.

\n
\n\n\n\n
\n\n\n\n

New localized content on Learn WordPress

\n\n\n\n

Learn WordPress is currently expanding the non-English resources available on the platform! Last month, some members of the Training Team hosted the first free online workshops in Japanese. Following its success, two more sessions will be held on September 7 and 17, 2022. Get the details in the online workshop calendar.

\n\n\n\n

In addition, learners have access to:

\n\n\n\n\n\n\n\n

Curious about what else is new on Learn WordPress? Check out the learning materials released in August 2022.

\n\n\n\n
\n

Enter the educational world of the Training Team and its Learn initiative in the latest episode of WP Briefing.

\n
\n\n\n\n
\n\n\n\n

Team updates: WordPress 6.0.2 maintenance release, Twenty Twenty-Three kickoff, and more

\n\n\n\n\n\n\n\n
\n

The Testing Team is looking for facilitators to expand testing efforts across the project.

\n
\n\n\n\n
\n\n\n\n

Feedback & testing requests

\n\n\n\n\n\n\n\n
\n

Gutenberg 13.8 introduced the first version of fluid typography, a new feature that allows theme authors to define text size that can scale and adapt to changes in screen size. Help shape its future by joining this testing call.

\n
\n\n\n\n
\n\n\n\n

Event updates & WordCamps

\n\n\n\n\n\n\n\n
\n

The Call for Speakers for WordCamp Asia is closing soon! Submit your application by September 30, 2022, and help reach WCAsia’s speaker diversity goals.

\n
\n\n\n\n
\n\n\n\n
\n\n\n\n

Have a story that we should include in the next issue of The Month in WordPress? Fill out this quick form to let us know.

\n\n\n\n

The following folks contributed to this edition of The Month in WordPress: @laurlittle, @mysweetcate, @chaion07, @bsanevans, @priethor, @rmartinezduque, @webcommsat.

\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:\"13445\";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:61:\"\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:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"WP Briefing: Episode 38: All About LearnWP with Special Guest Hauwa Abashiya\";s: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:98:\"https://wordpress.org/news/2022/09/episode-38-all-about-learnwp-with-special-guest-hauwa-abashiya/\";s: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, 05 Sep 2022 12:01: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";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:11:\"wp-briefing\";s: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://wordpress.org/news/?post_type=podcast&p=13425\";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:127:\"Enter the educational world of the WordPress Training team and its Learn initiative during this week\'s episode of the podcast. \";s: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:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/09/WP-Briefing-038.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s: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:\"Santana Inniss\";s: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:21067:\"\n

In the thirty-eighth episode of the WordPress Briefing, join Josepha Haden Chomphosy and special guest Hauwa Abashiya for a discussion on the WordPress Training team and LearnWP initiative.

\n\n\n\n

Have a question you’d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording.

\n\n\n\n

Credits

\n\n\n\n

Editor: Dustin Hartzler
Logo: Javier Arce
Production: Santana Inniss
Song: Fearless First by Kevin MacLeod

\n\n\n\n

Guests

\n\n\n\n

Hauwa Abashiya 

\n\n\n\n

References

\n\n\n\n

Hauwa Abashiya HeroPress Essay
make.wordpress.org/training
make.wordpress.org
WordPress 6.0.2 Security and Maintenance Release
WordCamp Asia call for speakers (deadline extended to September 30, 2022)
WordCamp US Livestream information

\n\n\n\n

Transcript

\n\n\n\n\n\n\n\n

[Josepha Haden Chomphosy 00:00:00] 

\n\n\n\n

Hello, everyone! And welcome to the WordPress Briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy. Here we go!

\n\n\n\n

[Josepha Haden Chomphosy 00:00:42] 

\n\n\n\n

Helping people who are new to WordPress learn how to make the most out of their CMS used to be one of the most clearly impactful things I ever did as a contributor. Whether it was making sure a brand new installation simply worked, or if the original setup needed to grow along with a solopreneur’s growing business needs, I found great joy in seeing how my local community was learning new tools together.

\n\n\n\n

You’ve probably heard me talk about the Learn WP initiative or the training team on this podcast before, but you might still be a little shy to get started with the team. So I have invited one of their team reps today to talk through what the team does.

\n\n\n\n

All right. I have with us today Hauwa Abashiya. She is one of the team reps for the training team and also works on the learn.wordpress.org site. Thank you for joining me today, Hauwa.

\n\n\n\n

[Hauwa Abashiya 00:01:33] 

\n\n\n\n

And thank you for having me, Josepha, quite exciting to be on your podcast.

\n\n\n\n

[Josepha Haden Chomphosy 00:01:37] 

\n\n\n\n

Oh, I, you know, when we were talking about doing this topic, I was like, you know, who would be an excellent person is Hauwa. Like you were such an interesting person to work with when we were working on the 5.6 release. And then also, you just have such a lovely way of explaining the complicated things that we have going on in WordPress and especially on the training side of things. And so you were the first person that came to mind for me.

\n\n\n\n

[Hauwa Abashiya 00:02:02]

\n\n\n\n

Thank you. 

\n\n\n\n

[Josepha Haden Chomphosy 00:02:03]

\n\n\n\n

Speaking of all the learn.wordpress.org things, you’ve been contributing to the WordPress project as a team rep for the training team for a bit. But that’s not really where you started. Can you tell me a bit about how you found your way to this team? 

\n\n\n\n

[Hauwa Abashiya 00:02:15]

\n\n\n\n

Well, I started by attending a WordCamp, and that was WordCamp Brighton. And if anyone’s read my article on HeroPress, then they will know that I learned WordPress in one week. Went through beginner sessions of it. And then, I was like, yeah, let me just go turn up and see what it’s like.

\n\n\n\n

So turned up, and I met some wonderful people there. One of them being Jenny Wong, who introduced me to the London meetup team. So, I then went there. They were looking for volunteers because they were planning WordCamp London for 2019. And me being me, I was like, yeah, sure. Why not? And got thrown into the deep end, but no, an amazing team.

\n\n\n\n

I got to meet some really amazing people. And yeah, just went from there then, you know, because I was doing stuff with WordCamp London, ended up going to WordCamp Europe. And I think there’s probably quite a lot of people who say they fully got into contributing in WordCamp Europe. So I was doing little bits and pieces then on like, marketing team and then met Jesse [Owens] at the training team cause Abha Thakor introduced me to him and just went from there.

\n\n\n\n

And then in terms of team rep, I mean, Courtney Robertson sent out SOS, because Learn had just launched, and there were a couple of things that we needed. So that was during the soft launch. And I was like, yeah, sure. I’ll help you. I’m not doing much. And that’s how I ended up doing team rep.

\n\n\n\n

[Josepha Haden Chomphosy 00:03:46]

\n\n\n\n

I love that so many initial stories in the WordPress community start with like, well, I went to a WordCamp cause I was like, what in the world is this? And then people were like, we need some help. And I thought to myself, what else am I doing? Like, so many stories start that way. And I just love it. 

\n\n\n\n

[Hauwa Abashiya 00:04:03]

\n\n\n\n

Yeah. 

\n\n\n\n

[Josepha Haden Chomphosy 00:04:03]

\n\n\n\n

So you mentioned learn.wordpress.org. That is a part of the training team in the WordPress project. Correct?

\n\n\n\n

Yeah. So can you give us an idea of the difference between the two? Cause like normally, with a project as big as Learn, you would expect to see like a whole separate team. But these are two intertwined teams using two intertwined concepts.

\n\n\n\n

And so can you give us an idea of the difference between them? 

\n\n\n\n

[Hauwa Abashiya 00:04:29]

\n\n\n\n

So I like to see learners, that’s the content. So it’s the content that we have on the platform, and the training team wrangles all the content on Learn. So that would be like your videos, your lesson plans, and online workshops. Yeah, so we wrangle the content that’s on there.

\n\n\n\n

We try to bring a lot of different teams together, and that’s one of the things the beauty, I think, of Learn is that there is a lot of cross-team collaboration, which started from the beginning and I think just will continue and get better and better.

\n\n\n\n

[Josepha Haden Chomphosy 00:04:59]

\n\n\n\n

Yeah. And the workshops, those are once a week, right? 

\n\n\n\n

[Hauwa Abashiya 00:05:04]

\n\n\n\n

Yeah. So you have online workshops, which used to be called social learning spaces, which used to be called discussion groups. So those run once a week. There’s a number running, and there are some that are launching in Japan. And I think Ben Evans has been quite key in getting quite a lot of those going, and I think Destiny Kanno as well.

\n\n\n\n

So, that’s the beauty is you get to see a lot more languages coming up. Those run once a week. And then we obviously have lesson plans, which traditionally that’s what the training team used to always make for Meetup organizers. So if you didn’t have a speaker, you could go and get a lesson plan and run through something, or anybody could pick one up.

\n\n\n\n

So they are used mainly by like our Meetup users and then people who are running any boot camps or sessions, or you wanna just take somebody through WordPress and teach them, you can pick one up and run through it. And now we’ve got courses on Learn, which is quite exciting. Got a couple of courses.

\n\n\n\n

And I know there’s about three or four courses in development. There is a bit more WordPress development based rather than user based. There’s a fourth piece of content, and that is just the general workshop. So tutorials, I think no tutorials is what we’re calling them now. So there’s like all our online videos. 

\n\n\n\n

[Josepha Haden Chomphosy 00:06:17]

\n\n\n\n

I tell you terminology in any project, the age and size of WordPress is hard to keep everything straight, but especially when you’ve just changed it you’re like, what do we call it though? 

\n\n\n\n

[Hauwa Abashiya 00:06:27]

\n\n\n\n

Yeah. 

\n\n\n\n

[Josepha Haden Chomphosy 00:06:30]

\n\n\n\n

So if I understand correctly, because as you mentioned, like you have this post up on HeroPress, you don’t actually come from a training background. Like you aren’t a teacher or corporate trainer or anything, but you have really committed to contributing to the training team and to learn.wordpress.org.

\n\n\n\n

So, from your perspective, from like the, I’m not a trainer perspective, what’s the most exciting thing for learn.wordpress.org in the near future? 

\n\n\n\n

[Hauwa Abashiya 00:06:58]

\n\n\n\n

I think it’s the collaboration. It’s the potential that Learn has. So I don’t have a training background, but interestingly enough, I come from Kaduna, Nigeria. And Kaduna cause all the states in Nigeria have a tagline, and, Kaduna is actually the center of learning. So there must be some link there, so yeah.

\n\n\n\n

So, I think the beauty of that is you don’t have to have a training background. You can come in and impart your knowledge, and there are people available in the team that can help you impart that knowledge. So if it’s like a lesson plan that you wanna draw up, we’ve got people that can help and assist in that.

\n\n\n\n

Or you wanna run an online workshop. There are people that can assist you. And I think that’s also the beauty of WordPress is that we’re all there to help each other. So just seeing that and seeing how, as time has gone on how the team has actually just been growing cause more and more people are coming.

\n\n\n\n

And then with that, you’ve got more of like the different languages coming in, and I know we might touch on that later, but it’s, I think to me, that is the beauty that anyone can actually now come in and learn. And Learn as this platform that is accessible to everybody. So it’s not necessarily behind a, like a paywall or anything, which is, there’s nothing wrong with that, but there are people that it’s like, well, okay, you can access something by the community for the community.

\n\n\n\n

[Josepha Haden Chomphosy 00:08:32]

\n\n\n\n

I think like your last thought there, something that’s by the community for the community. That’s one of the things that I noticed early on about the WordPress community. So I’ve been in the WordPress community for a long time, but when I started doing the administrative back office, things that are invisible and no one wants to know about, because it’s boring.

\n\n\n\n

When I started doing that work, one of the things I noticed and that I really treasure the most about the WordPress community is that they want to do things together. They want to look at the problem together. They want to find a solution together. And a lot of times they just want to learn together as well.

\n\n\n\n

We see that there is a real, I don’t know, not, it’s not a safety and numbers question. I think it is a long-standing feeling that we can all kind of get further together and that we are better together. And so I like your thought there.

\n\n\n\n

You mentioned, though, translations, and I know that this came up at WordCamp Europe.

\n\n\n\n

We don’t actually have a lot of translated content on learn.wordpress.org. There’s some technical issues that exist there, but are there a few languages that we already are sort of seeing translated courses for? Translated lessons for? 

\n\n\n\n

[Hauwa Abashiya 00:09:47]

\n\n\n\n

Yeah. So we have a couple in Hindi, I believe. And I know we’ve got some Greek translations that have been coming up, so I know, I think it was last year WordCamp India, during contributor day, we had quite a lot of people translating stuff then, and I suppose the online WordCamps that we’ve been able to rank. Cause I think our first like face to face is this year, so they didn’t do that much translation there, but we’ve seen an increase in people wanting to translate. 

\n\n\n\n

And I think those are the ones that come to mind. And I know Japanese, I think that was just recently, in the last two weeks, somebody’s translated one or two of the tutorials have been translated.

\n\n\n\n

But we’re getting more and more requests coming through. And I know we kind of touched on this in our earlier discussion, but it’s like, how do you manage that? Cause you’re right, we don’t have a way to easily manage polyglots on Learn at the moment or WordPress in general. But I think seeing that, and I keep saying to people, I don’t wanna lose that engagement cause if you’ve got the people engaged, let them just do it.

\n\n\n\n

And I don’t normally say this, but let them do it, and we’ll figure out how to sort out the whole pile when it comes in later. Because you kind of don’t want to lose them because I feel like if we say, no, we’ll wait until that comes in, we’ll lose a lot of the engagement. And come that time, people will be like, oh no, I’m not that interested. Or it might be an even more effort to try and bring more people on board.

\n\n\n\n

[Josepha Haden Chomphosy 00:11:18]

\n\n\n\n

That’s always a struggle, like wanting to be able to get something good out without insisting that it be perfect. Like that whole perfect is the enemy of the good sort of concept. 

\n\n\n\n

[Hauwa Abashiya 00:11:30]

\n\n\n\n

Yeah. Mm-hmm 

\n\n\n\n

[Josepha Haden Chomphosy 00:11:30]

\n\n\n\n

When we were talking about this way back in June, I was like, I obviously would love to get a perfect solution out immediately, but like, you’re right.

\n\n\n\n

In the meantime, do we just be if you don’t speak English, you cannot learn here?

\n\n\n\n

Like that’s not fair.

\n\n\n\n

[Hauwa Abashiya 00:11:45]

\n\n\n\n

No.

\n\n\n\n

[Josepha Haden Chomphosy 00:11:46] 

\n\n\n\n

We want everyone to be able to learn here in their own languages, and yeah. That’s just a living, breathing issue with a global project, I think. 

\n\n\n\n

[Hauwa Abashiya 00:11:56]

\n\n\n\n

Yeah. 

\n\n\n\n

[Josepha Haden Chomphosy 00:11:57]

\n\n\n\n

Now that we left us on like a really juicy topic, just the lightest thing we could find. Is there anything else that you wanna be sure to share with the WordPress Briefing listeners before we head out?

\n\n\n\n

[Hauwa Abashiya 00:12:10]

\n\n\n\n

Come and join the training team. Like I said, you don’t have to be a trainer. You can come in, and help us take notes. You can come in and edit, and review. If you are a subject matter expert, we also have the faculty program, which was launched. Was it a month ago now?

\n\n\n\n

Sorry. Days, months, weeks merge for me these days. But yeah, so that’s like a dedicated volunteer team. And in there, we’ve got content creators, editors, subject matter experts, and just admin stuff. If you wanna help us with the admin stuff. If you’re a GitHub guru, get in touch cause we are trying to automate some of our processes, and we could use the help, but yeah, just come join us.

\n\n\n\n

Join one of our meetings, which run on Tuesdays at 7 AM UTC and 4:00 PM UTC. 

\n\n\n\n

Yes, that’s right. I get my time right.

\n\n\n\n

[Josepha Haden Chomphosy 00:13:03] 

\n\n\n\n

If it’s not right, we’ll put it. We’ll correct it in the show notes. 

\n\n\n\n

Also, if you are not necessarily familiar with the WordPress project and how to get started with contributions, you can find the training team and a lot of information about them and all the other teams on make.wordpress.org.

\n\n\n\n

I will share that in the show notes as well. make.wordpress.org/training is where you can find Hauwa’s team. Hauwa, thank you again for joining me today.

\n\n\n\n

[Hauwa Abashiya 00:13:30]

\n\n\n\n

No, thank you for having me. It’s just a wonderful treat. I get to listen to you, and now I get to be on it. 

\n\n\n\n

So, yeah, it’s good. 

\n\n\n\n

[Josepha Haden Chomphosy 00:13:37]

\n\n\n\n

I hope that some of you feel inspired to stop by and see what the team is up to learn something new about WordPress or contribute a little something yourself. And with that, I’ll bring us home with the small list of big things. First thing, there was a freshly pressed minor release last week. You probably didn’t notice it.

\n\n\n\n

It probably went quite smoothly in the background and never interrupted you at all. However, if you want to read what was in it, you can head to wordpress.org/news now, or click on the link in the show notes. 

\n\n\n\n

Second thing, is that coming up at the end of this week, September 9th, 2022, WordCamp US is back and ready to help broaden your WordPress knowledge. If you will be there, I hope it is a wonderful time, but if you won’t be there in person, I’ll include a link to register for the live stream, or you can watch all of those sessions afterward on wp.tv or the WordPress YouTube channel.

\n\n\n\n

Third thing on our list of small list of big things is that WordPress Translation Day is coming up. That’s normally at the end of September, it coincides with a global day of appreciation for translators just generally across the world. And so that is coming, it’s normally around the 28th or so. 

\n\n\n\n

[Josepha Haden Chomphosy 00:14:55]

\n\n\n\n

So put that in your calendars. As soon as I have any information, as soon as I have a link to share with you all, I will have that for you as well. 

\n\n\n\n

And the final thing on my list today is that if you are hoping to speak at WordCamp Asia, 2023, you have 10 more days, September 15th, 2022**, to apply for that.

\n\n\n\n

We need topics of all sorts, from security hardening and backend development to entrepreneurial best practices, WordPress out of the box all the way back around to the importance of securing open source freedom. Even when people don’t know they need them. If you’ve got something you’re a bit passionate about, something that you are a passionate expert about especially, we want to see your application. And that, my friends, is your small list of big things.

\n\n\n\n

Thank you for tuning in today for the WordPress Briefing. I’m your host, Josepha Haden Chomphosy. And I’ll see you again in a couple of weeks.

\n\n\n\n


** Special note: the deadline to apply as a speaker to WordCamp Asia was extended to September 30th, 2022, after the recording of this episode.

\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:\"13425\";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: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:30:\"People of WordPress: Bud Kraus\";s: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:65:\"https://wordpress.org/news/2022/08/people-of-wordpress-bud-kraus/\";s: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, 31 Aug 2022 21:30: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:4:{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:8:\"Features\";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:10:\"Interviews\";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:19:\"People of 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:35:\"https://wordpress.org/news/?p=13385\";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:135:\"The latest People of WordPress story features trainer Bud Kraus, from the United States, talking about the software and how he uses it.\";s: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:28:\"webcommsat AbhaNonStopNewsUK\";s: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:14109:\"\n

This month, as we approach WordCamp US, we feature Bud Kraus, a WordPress trainer who has made a career in helping others learn about software. He also shares how he has developed an approach to using technology in order to overcome longstanding difficulties with his eyesight.

\n\n\n\n

In this People of WordPress series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better.

\n\n\n\n
\"Bud
Bud Kraus with his guitar
\n\n\n\n

Teaching WordPress strengthens your understanding

\n\n\n\n

Bud has taught web design since 1998, with students from more than 80 countries online or in person. He was determined not to let his sight difficulties stop him from his wish to help others learn website building and maintenance skills.

\n\n\n\n

As WordPress evolves and new features release, Bud decided to extend his training services around helping new and existing users improve and practice their skills. He supports others in open source through volunteering to speak at WordPress events, and encourages others to do so too. He also gives time to help produce material for the free-to-access resource Learn WordPress, which is part of the WordPress.org project. 

\n\n\n\n

As a contributor to the Test and Training teams, Bud is keen for others to try contributing to these areas and help support the project’s future development. One of his current training priorities is to help people with using the block editor and Full Site Editing. He is an advocate for the usability of WordPress today, saying: “I can design all aspects of a website now with a block.”

\n\n\n\n

Using WordPress as a traditional developer

\n\n\n\n

Bud’s WordPress journey began with a lunch at Grand Central Station in New York in 2009. A friend and former client was promoting the idea of using WordPress, which Bud initially resisted.

\n\n\n\n

“I’m a code guy…,” he told his friend at the time. “I will never use anything like that.”

\n\n\n\n

However, the friend persisted. Eventually, Bud gave it a try and found a new approach with things called themes and plugins. His first encounter was with WordPress 2.6. Bud signed up with a hosting company and found a theme where he could learn to edit and understand child themes.

\n\n\n\n

He said: “Once I saw that you could edit anything and make it yours, I was hooked. The endorphins were freely coursing through my veins.” Bud was hooked.

\n\n\n\n

Teaching WordPress strengthens your own understanding of the software

\n\n\n\n

There’s an old saying that the best way to learn something new is to turn around and teach someone else.

\n\n\n\n

Bud was already an instructor at the Fashion Institute of Technology when he thought, “I could teach WordPress!”

\n\n\n\n

And so he did, packing classrooms all through those first years of WordPress as it swept through the design world and further.

But Bud had more to discover. He said: “Two big things were about to happen that were really going to change my life. They would show me the way to the WordPress community – not that I even knew what that was.”

\n\n\n\n

Sharing lessons learnt with the WordPress community

\n\n\n\n

In 2014, one of his students suggested he start going to the New York WordPress Meetup. 

\n\n\n\n

As he started going to WordCamps in New York City, he realized that WordPress was getting very large. What’s more, it had a community of people with whom he felt at home and could learn alongside.

\n\n\n\n

Bud gave a talk for the first time in 2016 at the only WordCamp to this day that has been held at the United Nations. He shared his knowledge of “Lessons Learned: Considerations For Teaching Your Clients WordPress.” 

\n\n\n\n
\"Bud
Bud Kraus speaks at WordCamps to help people use the software even more effectively
\n\n\n\n

From there, Bud went on to speak at other WordCamps in the US. He also volunteered as a speaker wrangler for his home camp in New York City in 2018 and 2019.

\n\n\n\n

From speaking to writing about WordPress

\n\n\n\n

At some point before the Covid-19 lockdown, Bud found another outlet, this time in writing. 

\n\n\n\n

Bud heard a magazine was advertising for submissions related to WordPress. His first attempted article did not make the cut.

\n\n\n\n

So in his second submission, Bud took the risk of writing about something deeply personal – a topic he really didn’t want to write about at all.

\n\n\n\n

He gathered his courage and revealed to the entire web design world that he was legally blind.

\n\n\n\n

The article appeared as  Using Low Vision As My Tool To Help Me Teach WordPress”.

\n\n\n\n
\"Bud
Bud Kraus
\n\n\n\n

Since the age of 37, Bud has had macular degeneration in both eyes, which affects his central vision. It is a leading cause of legal blindness in the United States and many other countries. 

\n\n\n\n

He relies on his peripheral vision and finding ways to compensate. He also tends to see things in a flat dimension and has a difficulty discerning contrast  – he  is glad there are starting to be improvements in color contrasts in web design!

He uses tools like Speech to Text, larger sized cursors and bigger font sizes, and heavily uses zooming back in and out when working with WordPress. He is able to recognize patterns but has to rely on detailed preparation and memorizing materials. 

\n\n\n\n

In his first magazine article acknowledging this situation, he shared the added difficulties that technology creates for people with visual conditions, and tips that he had found to try and find alternative routes around them. He uses the technique of finding alternatives in his training work to help people learn and understand, realizing that all people have different ways of reading and understanding. His words and subsequent stories have inspired others and enabled more people to highlight accessibility. He describes himself as a ‘stakeholder in ensuring that the WordPress admin is accessible.’

\n\n\n\n

A year after its first publication, the piece became a WordCamp talk, ‘My Way with WordPress.’ The talk was a hit and started many conversations about accessibility and the importance of raising awareness.

\n\n\n\n

A few months later, he gave a Gutenberg talk at the first WordCamp Montclair. There was no way he could have done it from a laptop, so instead, he did it from his 27” desktop computer.

\n\n\n\n

Bud said: “It was a presentation on Gutenberg plugins. Since I couldn’t do this from a notebook screen (the screen is too small and the keyboard is hard for me to manipulate), it was decided that I would bring in my 27″ desktop machine to a WordCamp. I’m probably the first person to ever have done this. It was good thing I only lived a few miles away.”

\n\n\n\n

He added: “I sat behind my computer, did my thing, and every once in a while peered out to make sure people were still there.”

\n\n\n\n

Different ways of contributing to WordPress

\n\n\n\n

One of the main ways Bud supported the community around the software was through talks at WordCamps and helping others to speak.

\n\n\n\n

During the Covid-19 pandemic, he was keen to continue contributing when WordCamps were no longer meeting in person. He turned greater attention to supporting the Learn WordPress resource, a free to use learning platform made by and for the community itself. 

\n\n\n\n

More training materials on the block editor can be found on Learn WordPress and his WordCamp talks are available on WordPress.tv.

\n\n\n\n

Global reach and meaning through WordPress

\n\n\n\n
\"Bud
Bud Kraus with Josepha Haden Chomphosy at WordCamp Montclair, NJ 2022
\n\n\n\n

Bud’s training materials and willingness to talk about accessibility have helped so many people find their way with WordPress. He in turn is an advocate for the community around open source.

\n\n\n\n

He said: “The software is really good, and the people are even better.”  

\n\n\n\n

He added: “I get a sense of accomplishment whenever I launch a new or redesigned site. It’s also given me a great feeling to know that many people have learned WordPress around the world from my talks and presentations. This might just be the most gratifying thing of all.”

\n\n\n\n

Share the stories

\n\n\n\n

Help share these stories of open source contributors and continue to grow the community. Meet more WordPressers in the People of WordPress series.

\n\n\n\n

Contributors

\n\n\n\n

Thanks to Abha Thakor (@webcommsat), Mary Baum (@marybaum), Surendra Thakor (@sthakor), Meher Bala (@meher), Larissa Murillo (@lmurillom), and Chloe Bringmann (@cbringmann), for work on this feature. Thank you too to Bud Kraus (@trynet) for sharing his experiences.

\n\n\n\n

Thank you to Josepha Haden (@chanthaboune) and Topher DeRosia (@topher1kenobe) for their support of the People of WordPress series.

\n\n\n\n
\"HeroPress
\n

This People of WordPress feature is inspired by an essay originally published on HeroPress.com, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. #HeroPress

\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"13385\";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: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:48:\"WordPress 6.0.2 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2022/08/wordpress-6-0-2-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Aug 2022 19:39:47 +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:\"6.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:\"6.0.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:\"\";}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=13346\";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:299:\"WordPress 6.0.2 is now available for download. This security and maintenance release features several updates since WordPress 6.0.1 in July 2022. You can review a summary of the key changes in this release by visiting https://make.wordpress.org/core/2022/08/23/wordpress-6-0-2-rc1-is-now-available/.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:5702:\"\n

WordPress 6.0.2 is now available!

\n\n\n\n

This security and maintenance release features 12 bug fixes on Core, 5 bug fixes for the Block Editor, and 3 security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.

\n\n\n\n

WordPress 6.0.2 is a short-cycle release. You can review a summary of the main updates in this release by reading the RC1 announcement.

\n\n\n\n

The next major release will be version 6.1 planned for November 1, 2022.

\n\n\n\n

If you have sites that support automatic background updates, the update process will begin automatically.

\n\n\n\n

You can download WordPress 6.0.2 from WordPress.org, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.

\n\n\n\n

For more information on this release, please visit the HelpHub site.

\n\n\n\n

Security updates included in this release

\n\n\n\n

The security team would like to thank the following people for responsibly reporting vulnerabilities, and allowing them to be fixed in this release:

\n\n\n\n
    \n
  • Fariskhi Vidyan for finding a possible SQL injection within the Link API.
  • \n\n\n\n
  • Khalilov Moe for finding an XSS vulnerability on the Plugins screen.
  • \n\n\n\n
  • John Blackbourn of the WordPress security team, for finding an output escaping issue within the_meta().
  • \n
\n\n\n\n

Thank you to these WordPress contributors

\n\n\n\n

The WordPress 6.0.2 release was led by @sergeybiryukov and @gziolo.

\n\n\n\n

WordPress 6.0.2 would not have been possible without the contributions of more than 50 people. Their asynchronous coordination to deliver several enhancements and fixes into a stable release is a testament to the power and capability of the WordPress community.

\n\n\n\n

Alex ConchaAndrei DraganescuannezazuAnton VlasenkoAri StathopoulosBen DwyerCarolina NymarkColin StewartDarren CouttsDilip BhedaDion HulseeMKeyFabian KägyGeorge MamadashviliGreg ZiółkowskihuublironprogrammerJb AudrasJohn BlackbournJonathan DesrosiersjonmackintoshJonny Harris, Kelly Choyce-DwanLena MoritaLinkon MiyanLovro HrustmarybaumNick DiegoNik Tsekouras, Olga GlecklerPascal BirchlerpaulkevanPeter WilsonSergey BiryukovStephen BernhardtTeddy PatriarcaTimothy JacobstommusrhodusTomoki Shimomura, Tonya Morkwebcommsat AbhaNonStopNewsUK, and zieladam.

\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:\"13346\";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: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:46:\"A New WordPress.org Homepage and Download Page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wordpress.org/news/2022/08/a-new-wordpress-org-homepage-and-download-page/\";s: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, 15 Aug 2022 15:34:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{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:\"\";}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:4:\"Meta\";s: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=13321\";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:\"The WordPress experience has significantly evolved in the past few years. In order to highlight the power of WordPress on WordPress.org, the last few weeks have seen a homepage and download page redesign kickoff and shared mockups. Today, these new designs are going live! Like the News pages before them, these refreshed pages are inspired […]\";s: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:8395:\"\n

The WordPress experience has significantly evolved in the past few years. In order to highlight the power of WordPress on WordPress.org, the last few weeks have seen a homepage and download page redesign kickoff and shared mockups. Today, these new designs are going live! Like the News pages before them, these refreshed pages are inspired by the jazzy look & feel WordPress is known for.

\n\n\n\n
\"\"
\n\n\n\n

The new homepage brings more attention to the benefits and experience of using WordPress, while also highlighting the community and resources to get started. 

\n\n\n\n

The new download page greets visitors with a new layout that makes getting started with WordPress even easier by presenting both the download and hosting options right at the top.

\n\n\n\n

This redesign was made possible through great collaboration between Design, Marketing, and Meta teams. Thank you to everyone involved throughout this update:

\n\n\n\n

@abuzon @adamwood @adeebmalik @alexandreb3 @alipawp @angelasjin @aniash_29 @annezazu @beafialho @bjmcsherry @chanthaboune @colinchadwick @crevilaro @critterverse @dansoschin @dd32 @dufresnesteven @eboxnet @eidolonnight @elmastudio @fernandot @geoffgraham @iandunn @javiarce @joedolson @jpantani @kellychoffman @laurlittle @marybaum @matt @maurodf @melchoyce @mikachan @nikhilgandal @pablohoneyhoney @peakzebra @poliuk @priethor @psmits1567 @renyot @rmartinezduque @ryelle @santanainniss @sereedmedia @sippis @tellyworth @tobifjellner @webdados @willmot

\n\n\n\n

Your comments, including some feedback from the 2016 redesign, were taken into consideration with this work. Expect more updates to come as efforts to jazz up WordPress.org continue.

\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:\"13321\";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:60:\"\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:36:\"The Month in WordPress – July 2022\";s: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:68:\"https://wordpress.org/news/2022/08/the-month-in-wordpress-july-2022/\";s: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, 05 Aug 2022 08: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13306\";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:362:\"July 2022 brought a lot of exciting announcements and proposals for the WordPress project, from an updated timeline for the WordPress 6.1 release, to design updates on WordPress.org. Read on to learn more about the latest news from the community. WordPress 6.1 development cycle is now published Mark your calendars! The WordPress 6.1 development cycle […]\";s: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:\"rmartinezduque\";s: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:15049:\"\n

July 2022 brought a lot of exciting announcements and proposals for the WordPress project, from an updated timeline for the WordPress 6.1 release, to design updates on WordPress.org. Read on to learn more about the latest news from the community.

\n\n\n\n
\n\n\n\n

WordPress 6.1 development cycle is now published

\n\n\n\n

Mark your calendars! The WordPress 6.1 development cycle has been published along with its release team. The expected release date has been updated to November 1, 2022, to incorporate feedback received on the first proposed schedule.

\n\n\n\n

In the meantime, you can upgrade WordPress to version 6.0.1. This maintenance release became available for download on July 12, 2022, and includes several updates since WordPress 6.0 in May 2022.

\n\n\n\n
\n

Want to get more involved with WordPress? Join Executive Director Josepha Haden Chomphosy, as she guides you through the five stages of contribution in a recent episode of WP Briefing.

\n
\n\n\n\n
\n\n\n\n

A new look for the WordPress Homepage and Download page

\n\n\n\n

Following the revamp of WordPress.org/News and the Gutenberg page, further design updates are coming to WordPress.org to create a fresh and modern user experience that reflects the future of WordPress.

\n\n\n\n

The WordPress.org home and download pages will be the next pieces to get a refreshed look and feel. The redesign project kicked off on July 8, 2022, and the development work is already underway.

\n\n\n\n
\n

Take a look at the design mockups and join the conversation.

\n
\n\n\n\n
\n\n\n\n

Gutenberg versions 13.6, 13.7, and 13.8 are here

\n\n\n\n

Three new versions of Gutenberg have been released since last month’s edition of The Month in WordPress:

\n\n\n\n
  • Gutenberg 13.6 shipped on July 6, 2022. It includes 26 bug fixes and accessibility enhancements. This release also builds on previous work to expand theme.json and to allow you to create a cohesive design across blocks.
  • Gutenberg 13.7 brings an updated modal design, the ability to apply block locking to inner blocks, and new template types, to name a few highlights. It was released on July 20, 2022.
  • The latest Gutenberg release, version 13.8, went live on August 3, 2022. It comes with ​​fluid typography support among other enhancements, a new feature that will allow you to define text size that can scale and adapt to changes in screen size.
\n\n\n\n
\n

Follow the “What’s new in Gutenberg” posts to stay on top of the latest updates.

\n
\n\n\n\n
\n\n\n\n

Team updates: WordPress mobile app changes, pattern previews, Five for the Future improvements

\n\n\n\n\n\n\n\n
\n

WP Briefing celebrated World Wide Web Day 2022 with a special episode! Tune in to hear contributors from the community reflect on how WordPress impacts their world.

\n
\n\n\n\n
\n\n\n\n

Feedback & testing requests

\n\n\n\n\n\n\n\n
\n

The Community Team is calling on all meetup members and organizers to complete the 2021-2022 Annual Meetup Survey. Your feedback will help strengthen the WordPress meetup program for years to come. Please respond and help spread the word.

\n
\n\n\n\n
\n\n\n\n

WordCamp updates

\n\n\n\n\n\n\n\n
\n

Join #WPDiversity with a free, online speaker workshop for Indian women in the WordPress community. The event will take place on September 24-25, 2022. Sign up now!

\n
\n\n\n\n
\n\n\n\n
\n\n\n\n

Have a story that we should include in the next issue of The Month in WordPress? Let us know by filling out this form.

\n\n\n\n

The following folks contributed to this edition of The Month in WordPress: @chaion07, @laurlittle, @mysweetcate, @sereedmedia, @dansoschin, @rmartinezduque.

\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:\"13306\";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:61:\"\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:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WP Briefing: Episode 37: The World of WordPress on World Wide Web Day\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wordpress.org/news/2022/08/episode-37-the-world-of-wordpress-on-world-wide-web-day/\";s: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, 01 Aug 2022 23: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";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:11:\"wp-briefing\";s: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://wordpress.org/news/?post_type=podcast&p=13198\";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:128:\"Celebrating WWW Day, Josepha invites contributors from around the globe to share stories of how WordPress impacts their worlds. \";s: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:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/08/WP-Briefing-037.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s: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:\"Chloe Bringmann\";s: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:23689:\"\n

In the thirty-seventh episode of the WordPress Briefing, WordPress users and contributors reflect on how WordPress has changed their understanding of the web as we celebrate World Wide Web Day.

\n\n\n\n

Have a question you’d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording.

\n\n\n\n

Credits

\n\n\n\n

Editor: Dustin Hartzler
Logo: Beatriz Fialho
Production: Santana Inniss & Chloé Bringmann
Song: Fearless First by Kevin MacLeod

\n\n\n\n

Guests:

\n\n\n\n\n\n\n\n

References

\n\n\n\n

Diverse Speaker Training Group

\n\n\n\n

Support Underrepresented Speakers at WordCamp US

\n\n\n\n

Call of Speakers – WordCamp Asia 2023

\n\n\n\n

Refocusing the WordPress App on Core Features

\n\n\n\n

WordPress.org Homepage and Download Redesign

\n\n\n\n

Transcript

\n\n\n\n\n\n\n\n

[Josepha Haden Chomphosy 00:00:00] 

\n\n\n\n

Hello, everyone! And welcome to the WordPress Briefing: the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy. Here we go!

\n\n\n\n

[Josepha Haden Chomphosy 00:00:39] 

\n\n\n\n

Today is one of my favorite niche holidays – World Wide Web Day – which serves to raise awareness about the origins of the World Wide Web project. WordPress, as part of Web 2.0, only ever had a chance to exist because the web, as we have come to know it exists. So in order to mark this nerdy day on the WP Briefing, I invited a number of community members to share a bit about how WordPress has been a part of their lives.

\n\n\n\n

But first, let’s do some introductions. 

\n\n\n\n

[Adam Warner 00:01:07]

\n\n\n\n

My name is Adam Warner, and I’m originally from a small town in west Michigan, now residing in Orlando, Florida. 

\n\n\n\n

[Alice Orrù 00:01:15] 

\n\n\n\n

My name is Alice Orrù. I’m Italian. I was born in the beautiful island of Sardinia, but I’ve been living in Spain in the province of Barcelona for 10 years.

\n\n\n\n

[Dee Teal 00:01:26]

\n\n\n\n

My name is Dee Teal; Dee is short for Denise. I’m from New Zealand, but I live In Melbourne.

\n\n\n\n

[Femy Praseeth 00:01:33]

\n\n\n\n

Yeah, my name is Femy Praseeth. I was born and raised in India and now live in San Jose, California, with my family and cuddly Doodle.

\n\n\n\n

[Jill Binder 00:01:41] 

\n\n\n\n

My name is Jill Binder, and I’ve just moved back to Vancouver, Canada. 

\n\n\n\n

[Mary Job 00:01:47] 

\n\n\n\n

My name is Mary Job. I’ve been using WordPress since 2015, and I’m from Nigeria. I’m from the Western part of Nigeria. Ijebu precisely. 

\n\n\n\n

[Oneal Rosero 00:01:57]

\n\n\n\n

Yes. My name is Oneal Rosero. I am from the Philippines and I’ve been using WordPress since 2007. 

\n\n\n\n

[Theophilus Adegbohungbe 00:02:06] 

\n\n\n\n

Thank you. My name is Theophilus Adegbohungbe . And I’m from Ilesa, Osun State in Nigeria. 

\n\n\n\n

[Ugyen Dorji 00:02:14]

\n\n\n\n

My name is Ugyen Dorji and I’m from Bhutan. And I’m working with WordPress for more than five years. 

\n\n\n\n

[Josepha Haden Chomphosy 00:02:22] 

\n\n\n\n

One of the things I enjoy the most about being part of any community is being able to see how people change and grow over time as they learn and gain confidence in their own expertise. So a favorite early question is naturally, ‘How has WordPress changed your World?’

\n\n\n\n

[Alice Orrù 00:02:37] 

\n\n\n\n

WordPress changed my world in many ways. But, uh, starting from the moment, it allowed me to become part of a global connected and welcome community. I started using WordPress as a blogger many, many years ago, but it was in 2015 that I started working behind the scenes of WordPress with a plugin company.

\n\n\n\n

And that was the moment when everything changed, basically, because I realized that WordPress was much more than a CMS for creating websites. It was a world full of opportunities for networking, making new friends and walking a new professional path as well. 

\n\n\n\n

[Ugyen Dorji 00:03:15] 

\n\n\n\n

During one interview, I was asked many questions about WordPress and although I had a basic understanding of WordPress, I struggled to give detailed answers.

\n\n\n\n

After that interview, I resolved to develop my skills and learn as much about WordPress as possible. A few months passed and I received a call from ServeMask In, [who] had developed a plugin called All-in-One WP Migration plugin. They offered me a position which fulfilled my wish to work with WordPress full time.

\n\n\n\n

And because of that, I am now an active contributor to the WordPress community as bread and butter, with the best career in the world.

\n\n\n\n

[Theophilus Adegbohungbe 00:04:03] 

\n\n\n\n

If you are very familiar with my country, Nigeria things here, it’s not as smooth as it is in other parts of the world. That is, when you are done in school in my university, you have to find means of surviving yourself.  There is nothing like the government have work for you. There is nothing like you finish our institution and you get job instantly. So it’s very tough here. And, year by year, schools keep producing graduates with no companies to employ them and no government job again as well.

\n\n\n\n

So I personally, I was able to gain freedom from this with the help of WordPress.

\n\n\n\n

[Femy Praseeth 00:04:51]

\n\n\n\n

WordPress completely changed my work life. I started working independently. I started freelancing with agencies and designers and, uh, building websites from their web designs. And this was around the time my son was born. Actually, he was in elementary school and I think this was around 2014 or so. I started working remotely when remote was not even a thing.

\n\n\n\n

And there were very few companies that let you work from home and remote was not a mainstream thing at all, but with WordPress, I could set my own working hours while my son was in school.

\n\n\n\n

[Josepha Haden Chomphosy 00:05:29] 

\n\n\n\n

And of course, my preferred follow-up question of, ‘How did you hear about us?’ or ‘How did you connect to this global community?’

\n\n\n\n

[Oneal Rosero 00:05:36] 

\n\n\n\n

Yes, actually what I love about WordPress is that it’s a community. It’s not a business. It’s not a company. It’s a community. It’s a community that’s always ready to help support, teach and encourage people. That’s how I felt when I joined the community. There’s always somebody who has your back.

\n\n\n\n

There’s always somebody who’s going to guide you. There’s always an expert who will take your hand and lead you into the beauty that is WordPress. 

\n\n\n\n

[Adam Warner 00:06:05] 

\n\n\n\n

The way that I connect with the global community these days are one, of course, is .org Slack. Another of course is Twitter as there’s a very active WordPress community there.

\n\n\n\n

And then with WordCamps all over the globe. I’m lucky enough to have been able to travel to several hundred WordCamps through the years in the US and abroad. And that’s one of the most rewarding parts is meeting people from all over the world and you see really how small and the world really is and how similar we really all are.

\n\n\n\n

[Theophilus Adegbohungbe 00:06:39] 

\n\n\n\n

So, not until 2020. I don’t know if you know this lady, a very vibrant lady in WordPress. She’s from Nigeria; her name is Mary Job, and she’s really promoting WordPress here. So it was through her that I got to know about the community. Yes.

\n\n\n\n

[Jill Binder 00:06:54]

\n\n\n\n

My work is the global WordPress community. So we hold our three programs for the global WordPress community, and we are always trying to reach more and more countries. For quite a while, it was very North America-heavy, and then I made some efforts to expand. And it’s very exciting that this year, some contributors in our team have actually launched an Asia Pacific branch of our group. 

\n\n\n\n

And so we have two meetings every other week where we have the America/Europe and the APAC, and we’ve also been able to reach other countries as well, but we typically reach something like between 20 and 50 countries a year, depending on the year. So a hundred percent global. Yes.

\n\n\n\n

[Josepha Haden Chomphosy 00:07:39] 

\n\n\n\n

How has WordPress, either the CMS or the project, made you feel more connected? And are there any surprising connections that came from WordPress?

\n\n\n\n

[Dee Teal  00:07:47] 

\n\n\n\n

I guess the surprising connections I think that have come from WordPress have been the fact that I feel like I’ve got friends all over the world. And a lot of those have come out of community involvement and from contributing. That I could go to a, a meetup pretty much anywhere in the world and probably find somebody I know, or at least a second degree connection of somebody that I haven’t, you know, that I might not have met, but know somebody that I know. And certainly that happens fairly regularly. 

\n\n\n\n

[Mary Job 00:08:13]

\n\n\n\n

WordPress. The WordPress project, the community, has made me feel connected in a huge way, because I am literally surrounded by everything WordPress. So I like how, when you meet somebody who does WordPress, there’s this instant, ‘Oh, we’re brothers,’ or  ‘Oh, we’re sisters!’ You know? There’s that feeling? That’s how I feel. 

\n\n\n\n

So when I see somebody who does WordPress, as I do, I’m like, ‘Oh yeah, we’re, kin.’ You know? We are family. That’s how I feel when I meet people who do WordPress. And I’ve met quite a number of people who do WordPress from like around the world. Like I have a friend here, he’s from the Benin Republic, and we host started a dinner on Friday night and one of my guests was asking me, ‘How did you guys meet?’

\n\n\n\n

I was like, ‘Oh yeah, we work in the same WordPress ecosystem.’ He attended our WordCamp, we became friends, and we just literally became really good friends. So I have tons of people that I’ve met like that I hold in high esteem.

\n\n\n\n

[Ugyen Dorji 00:09:12] 

\n\n\n\n

WordPress Meetups are the seeds that lead to the growth of WordPress communities. WordCamp is a platform for plugin and theme developers to meet WordPress users and website developers. It’s a great environment where many incredible discussions about WordPress takes place. With each WordCamp there is a “tribe” meeting, where I think people [can] get more connected. It’s a fantastic opportunity for aspiring computer engineers, generators and get to showcase their talent and meet each other.

\n\n\n\n

[Alice Orrù 00:09:51] 

\n\n\n\n

On the project level, it has given me the opportunity to feel like an active part of a global project. The idea that I can give my contribution to making the web a better place – it’s amazing. And I do so with the Translation team, so making WordPress accessible to all the people that use the core plugins and themes in Italian, and prefer to do that in Italian.

\n\n\n\n

[Josepha Haden Chomphosy 00:10:18] 

\n\n\n\n

What area of the WordPress world is most important to you?

\n\n\n\n

[Jill Binder 00:10:21]

\n\n\n\n

I have a little bit of a passion for diversity in tech and diversity in WordPress, specifically around events. And so, here’s a chance to name the three programs that we’ve been working on this year. So as mentioned a few times, we have our Diverse Speaker Workshop that helps people go from not even having the thought that people could step up on stage.

\n\n\n\n

And then the second program is because of the pandemic. There was no longer the straight path from taking our workshop to speaking, because we used to hold them or people used to hold them for their WordCamps and meetups. And so it was like, okay, you’ve taken. Apply for our next WordCamp or meetup. But during the pandemic, that wasn’t a thing.

\n\n\n\n

So we have this amazing channel that we welcome everyone to join, allies and people from underrepresented groups who are interested in speaking or interested in supporting people and speaking. And that’s the Diverse Speaker channel diverse-speaker-support channel on the Make WordPress slack.

\n\n\n\n

And the third program is, and we, we went through a name change recently. So I’ll try to remember the new change it’s Organizing Inclusive and Diverse WordPress Events. And this is for WordCamp and meetup organizers to learn. We’ve learned over the last couple years, how important it is to create inclusive spaces and be good allies.

\n\n\n\n

But how do we actually do that? And a few of us created a very action oriented workshop in 2019 for WCUS, and that is now the basis of the work that we are bringing to people and people are loving it.. We’ve had people report a 40%, self-report 40%, increase in feeling prepared to create an inclusive event from before and after taking that workshop, which is super cool.

\n\n\n\n

Yeah. So, that’s my passion. 

\n\n\n\n

[Oneal Rosero 00:12:13] 

\n\n\n\n

I really love helping the WP Diversity team. I love running the workshops. I love running the workshops for myself, because I used to do training for software back before the pandemic. I used to train up to a thousand people a year in person, sometimes like 500 people in a room at once.

\n\n\n\n

But of course I had to shift. I had to pivot to online training, which is what the training team has brought for me. And the focus on the diversity. I like running the workshops. I like running workshops for different groups, different countries, because it’s nice to meet new people. It’s nice to hear about their culture, about the limitations that people have in Africa with connectivity.

\n\n\n\n

So they, they resort to using WhatsApp on their phone in order to do a meetup. That’s how they do their, their meetings, their discussions. It’s unlike other countries where we can do video calls. They have to use their mobile phones because connectivity isn’t accessible. 

\n\n\n\n

Places like in the Philippines that get affected when it starts to rain a little bit, we lose our internet. So we have backups and our backups have backups. So there are many things that you learn that are different when you’re living in the city, when you’re living in the provinces, in the country. So it’s so many things that you learn about people and how they’re able to adapt. 

\n\n\n\n

[Adam Warner 00:13:35] 

\n\n\n\n

Enabling end users to reach their goals. And whether that means participating in contributing to the software, to the Core software itself, in terms of UI/UX usability. That can include participating in the community and sharing your knowledge proactively with users who may be new to the platform, or have used WordPress for a while, but now want to step up their game, get a little deeper into using their websites as a tool for growth, for whatever business that they’re in. So, I mean, overall, the, the most important part of the WordPress world to me are the end users. And, you know, there, there is this quote unquote inner circle of WordPress community people. People who are involved in .org, people who contribute to the software, people who contribute to the 20 plus make.wordpress.org teams.

\n\n\n\n

Those we have to keep in mind, are not the average user by and far. They are not the typical user that hears the word WordPress and then goes out and searches it and then has to figure out how to use it. So I think user experience is probably the most important part for me and making sure that any of that innate knowledge that we have in that inner circle of WordPress because many of us have been using it for so long, keeping in mind that is not the norm. And it’s not the scale at which WordPress is used and, and making sure we translate complex concepts down to a layperson’s terms that might not be as familiar. 

\n\n\n\n

[Josepha Haden Chomphosy 00:15:17] 

\n\n\n\n

One of the things that I have always found so fascinating about the web and WordPress’ role in it is how it has made the world simultaneously smaller and bigger. By giving voices to the voiceless we help each other find our community niches regardless of where they are in the world. Some of your closest friends could be people you would never meet in your own neighborhood. Well, let’s hear what some of our community members had to say about that.

\n\n\n\n

[Dee Tea 00:15:42]

\n\n\n\n

I think the thing that has been most empowering is, is coming into the project either in terms of contributing time and efforts to the community, which is where most of my contribution has been – has always been about this is a really cool thing, and I really want to build this.

\n\n\n\n

And so I’ll put my time and efforts into building WordPress. Not for me, but because I see its value and I see its community and I see that the contribution that it’s making to the world and I, and that’s really important. But finding that on the other side of that was a huge amount of personal benefit for me in my career, in the friendships that I’ve made.

\n\n\n\n

But I feel like if I had been approaching the community with, I want a better career, I wanna meet all of these people and I want, and I want all of this. From, “I want” for me, instead of, I want for this project, for the community and effectively for the world with that, you know, that whole democratized, the democratizing of publishing is this thing that serves the world.

\n\n\n\n

I think that’s been the key for me is that I absolutely have reaped amazing benefits from it, but it came out of that sense of, I see this value here and I want to contribute to that because it’s gonna have value, not just for me, but for a whole slew of people. And so, uh, you know, for much, much bigger impact than just on me.

\n\n\n\n

And so I think that’s the important thing for me is that sense of, if you approach it with that attitude of what can I do to help? It’s amazing what you will find yourself helped with in return.

\n\n\n\n

[Josepha Haden Chomphosy 00:17:24] 

\n\n\n\n

I hope that you enjoyed this tour of WordPress in the World Wide Web. I want to share a big thank you to all of the folks who contributed to our little WordPress Briefing celebration of World Wide Web Day today.

\n\n\n\n

And that brings us now to our small list of big things. So firstly, we’ve got a couple of updates from our upcoming flagship events. WordCamp US has announced a speaker support fund specifically for historically underrepresented speakers at the event. You can donate to the fund on the page if you’d like, and there are also directions on how to request support, if you are part of an underrepresented group. 

\n\n\n\n

From the folks over at WordCamp Asia, the call for speakers is live. That’s taking place in February, 2023. But it’s never too early to brush up those presentations and get them submitted. 

\n\n\n\n

Next big thing is that there are some changes coming to the WordPress mobile app. A lot of the Jetpack functionality will be removed from it, so this is going to have a little bit of an effect on daily users of the app, but it will also have an effect on regular contributors. I’ll have a link to the full write up in the show notes so that you don’t have to guess or hold it all in your memory. 

\n\n\n\n

And finally, this excellent design that you see on wordpress.org/news is finally making its way out to the next parts of the wordpress.org website. Before you know, it, there will be a fresh looking homepage as well as few other pages and then… to infinity and beyond (or something like that). 

\n\n\n\n

And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I’m your host, Josepha Haden Chomphosy. And next up I’ll be taking just a mid-year break from the podcast. And so the next time that I actually see you again, will be in September.

\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:\"13198\";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:32:\"People of WordPress: Carla Doria\";s: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/2022/07/people-of-wordpress-carla-doria/\";s: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, 31 Jul 2022 19: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: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:8:\"Features\";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: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:3;a:5:{s:4:\"data\";s:10:\"Interviews\";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:9:\"HeroPress\";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:19:\"People of 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:35:\"https://wordpress.org/news/?p=13201\";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:\"In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better. This month we feature Carla Doria, a customer support specialist from South America on how WordPress opened up a new world for her, and gave her the ability to […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Meher Bala\";s: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:12025:\"\n

In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better. This month we feature Carla Doria, a customer support specialist from South America on how WordPress opened up a new world for her, and gave her the ability to help the local community.

\n\n\n\n

For Carla, working with WordPress is a vital part of her life. It gave her a career and a community, in which she she would organize the first WordCamp in her city, Cochabamba, and the first in Bolivia.

\n\n\n\n

Carla studied industrial engineering and has a master’s degree in environmental studies.
Her first experience with WordPress was when she decided to start a small business designing and selling cushions and bedclothes. While Carla sat in the small store she had rented, hoping that people stopping at the shop windows would step in to buy something, she decided she needed to create a website.

\n\n\n\n

First steps with WordPress

\n\n\n\n

Carla had no budget to hire somebody, but she felt confident  she could learn things on her own. 

\n\n\n\n

“Learning to use WordPress requires no code skills or a technical background. It needs an adventurous and playful spirit.”

Carla Doria
\n\n\n\n

She had always been studious, and decided she would figure out how to build a website herself. Carla ended up building a simple blog with WordPress. At the time, she didn’t even have a budget to buy a custom domain, so she used a free subdomain.

“Learning to use WordPress is easy. It requires no code skills or a technical background at all. It only needs an adventurous and playful spirit,” said Carla

\n\n\n\n

There were no profits, and any income mainly went to pay the store’s rent. At the time, her previous company contacted her for a job opening that matched her profile. Carla needed that income and decided to closed the store and forget about being an entrepreneur.

\n\n\n\n

Back in employee mode, Carla started her new job as a technical writer for a software development company. Since Carla had completed her master’s degree in the UK, she was proficient in English. Her close affinity for computers and technology made it easy for her to translate complex software jargon into simple tutorial steps.

\n\n\n\n

As Carla got more interested in technical writing and started to improve her writing skills. This reconnected her with her previous enthusiasm for writing, and she decided to channel that interest into a blog.

\n\n\n\n

Diving deep

\n\n\n\n

Creating her blog helped her become more familiar with WordPress and building websites. In 2015, Carla blogged about writing, her thoughts, book reviews, and everything that came to mind. 

\n\n\n\n

Through looking for answers to specific issues using her WordPress blog, Carla found the support forums a useful place to go. Soon she realized that she could also help answer other people’s questions.

\n\n\n\n
\"\"
\n\n\n\n

Carla began checking the forums as a hobby. She liked that she was able to help people and learn more while doing so.

\n\n\n\n

Instead of surfing social media during her work breaks, Carla focused on checking the WordPress forums. Through this she learnt about a support job in one of the global firms.

\n\n\n\n

She felt the job was made for her and was excited to support people in building their websites with WordPress. The role offered the possibility to work remotely and travel while still working.

\n\n\n\n

After three years as a technical writer, her career felt stuck. She was certain she did not want to return to any job related to industrial engineering.

\n\n\n\n

Carla did not get through the selection process the first time. But after nearly 18 months between three applications and learning HTML and CSS, Carla finally secured a support job in 2016. With this job, WordPress became her main source of income.

\n\n\n\n

Leading a local WordPress community

\n\n\n\n

On the job, Carla learned about the WordPress communities around the world and WordCamps. But when somebody asked about the WordPress community where Carla lived, she didn’t know what to say. Was there a community?

\n\n\n\n

She discovered no local group existed, so she researched what was needed to setup a meetup. Carla discussed the idea with others, but hesitated as she thought it would require an expert WordPress developer to organize.  

\n\n\n\n

But after trying to gauge interest, Carla realized that the only way to find community members was to start a community. In 2017, the WordPress community in Cochabamba was born.

\n\n\n\n
\"The
WordPress meeting in Cochabamba explored creating your website with blocks
\n\n\n\n

The group has had ups and downs, probably similar to any other community. Although Cochabamba is not a big city, they had issues finding a location that was free and available to anyone who wanted to join. People came with different levels of knowledge, from people with vast experience with WordPress to people with no experience but who wanted to learn. 

\n\n\n\n

The community grew during the pandemic, as meetups went online and people from other cities in Bolivia were able to attend. After restrictions were lifted, there was a lot of excitement amongst members to meet each other in person.

\n\n\n\n

Giving back through speaking

\n\n\n\n
\"Carla
\n\n\n\n

The community also helped Carla to develop a new skill in public speaking. She applied to be a speaker at WordCamp Mexico 2019 and 2020, WordCamp Guayaquil 2019, and WordCamp Colombia in 2020. Her confidence grew while she enjoyed connecting with other communities and meeting people who were on similar pathways. Not all of them were developers, as she had presumed. Many, like her, started out as bloggers.

\n\n\n\n
\"WordCamp
\n\n\n\n

Finally, after three years, Carla applied to organize her first WordCamp in 2021 in Cochabamba. She had never imagined organizing any WordCamp, and through this having the experience to talk to sponsors and contact companies, and lead a group of people with different talents and backgrounds. Carla felt she had learnt so much from the experience.

\n\n\n\n

Thanks to WordPress, Carla found a job she enjoyed, was able to work remotely, and help build something in her community to help people learn skills and find career opportunities.

\n\n\n\n

Carla feels grateful for all she has been able to do thanks to WordPress. She said: “WordPress has led me to find good jobs. It also has allowed me to contribute to a community of friends that love learning about WordPress.”

\n\n\n\n

Share the stories

\n\n\n\n

Help share these stories of open source contributors and continue to grow the community. Meet more WordPressers in the People of WordPress series.

\n\n\n\n

Contributors

\n\n\n\n

Thanks to Alison Rothwell (@wpfiddlybits), Abha Thakor (@webcommsat), Larissa Murillo (@lmurillom), Meher Bala (@meher), Chloe Bringmann (@cbringmann), and Surendra Thakor (@sthakor) for work on this feature, and to all the contributors who helped with the series recently. Thank you too to Carla Doria (@carlisdm) for sharing her experiences.

\n\n\n\n

Thank you to Josepha Haden (@chantaboune) and Topher DeRosia (@topher1kenobe) for their support of the People of WordPress series.

\n\n\n\n
\"HeroPress
\n

This People of WordPress feature is inspired by an essay originally published on HeroPress.com, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. #HeroPress

\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"13201\";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:61:\"\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:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WP Briefing: Episode 36: Beginner’s Guide to Contributions 2.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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wordpress.org/news/2022/07/episode-36-beginners-guide-to-contributions-2-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 25 Jul 2022 11:05:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";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:11:\"wp-briefing\";s: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://wordpress.org/news/?post_type=podcast&p=13162\";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:164:\"Thinking of contributing to WordPress? Josepha Haden Chomphosy guides you through the five stages of contribution on the latest episode of the WP Briefing podcast! \";s: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:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/07/WP-Briefing-036.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s: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:\"Santana Inniss\";s: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:16474:\"\n

In the thirty-sixth episode of the WordPress Briefing, Josepha Haden Chomphosy revisits the Beginner’s Guide to Contributions to the WordPress open source project.

\n\n\n\n

Have a question you’d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording.

\n\n\n\n

Credits

\n\n\n\n

Editor: Dustin Hartzler
Logo: Beatriz Fialho
Production: Santana Inniss
Song: Fearless First by Kevin MacLeod

\n\n\n\n

References

\n\n\n\n
  1. Performance Team Information
  2. WordCamp US Contributor Day Table Lead Info
  3. Call for Testing #15: Category Customization
  4. Contributor Quizlet
\n\n\n\n

Transcript

\n\n\n\n\n\n\n\n

[Josepha Haden Chomphosy 00:00:10]  

\n\n\n\n

Hello everyone, and welcome to the WordPress Briefing. The podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I’m your host Josepha Haden Chomphosy.

\n\n\n\n

Here we go.

\n\n\n\n

[Josepha Haden Chomphosy 00:00:40]  

\n\n\n\n

WordPress is an open source software project and, like many other open source software projects, has an entire community of people who show up to help improve it however they can. Most of you probably use WordPress every day in some way. And I’m going to assume that since you listen to this podcast, you’re also interested in how this all works.

\n\n\n\n

One of the things I mention practically every episode is that WordPress works and continues to work because of generous contributions from people all around the world. I consider my work with WordPress to be my way of giving back for everything that this software enabled me and my family to do. But I once was a first-time contributor, and I remember what it felt like before I knew everything. 

\n\n\n\n

I felt like it moved at the speed of light and that I could never tell what to do now, let alone what to do next. And that everyone around me basically already knew everything. And if you are feeling that way right now, I encourage you to take a big deep breath [breathe] and let me help you get started. 

\n\n\n\n

[Josepha Haden Chomphosy 00:01:43]  

\n\n\n\n

I’m a roadmap sort of person. So I’m going to start by sharing the stages I’ve observed for folks who are contributing to open source. That way, you can tell where you are right now, which spoiler alert is probably a bit further along than you realize. Then I’ll give you some questions you can ask yourself for each stage to figure out what is a good fit for you. Think of it as a guided exploration. 

\n\n\n\n

All right, the five stages. So these are they: 

\n\n\n\n
  1. Connecting. That’s when you’re first learning about the community. You know WordPress exists, but now you’ve just discovered that the community exists. That’s where you are. 
  2. The second phase is Understanding. It’s when you are researching the community, like, you know it exists, you think you want to give back, and so you’re trying to figure out where everything is. 
  3. The third phase is what I call Engaging. It’s when you’re first interacting, you’ve downloaded the CMS, you have figured out which team you think you’re interested in, and you’re headed to events or meetings or whatever. 
  4. The fourth stage is one that I refer to as Performing. And that’s when you’ve decided that you’re gonna volunteer and you’re gonna take some action. You’re going to like a contributor day or running a release or whatever. I think that’s probably not the first place you land, running a release is probably a lot, but, you know, coordinating work on the release or something like that. 
  5. And then phase five, which is the Leading phase. That’s when you’re taking responsibility for things getting done. 
\n\n\n\n

[Josepha Haden Chomphosy 00:03:08]  

\n\n\n\n

Before we get any further, there are four important things to remember about those stages.

\n\n\n\n

The first thing to remember is that there is no set time between any of those stages. You can start in one and then three years later go to the next one, or you can start in one and go into the next stage tomorrow. The next thing to know is that each stage builds on the one before it. In my observation, anytime I have seen a contributor who feels like they’re really struggling, it’s because they skipped a stage in there, which really causes some trouble for them.

\n\n\n\n

The next thing to remember is that not everyone will make it through these stages, which is okay. The majority of the community stops at three. Most contributors stop at four. And that is perfectly fine. That is expected. That is normal and completely in line with what we expect from contribution.

\n\n\n\n

Uh, and the final thing to remember about that list of the phases is that very few people make it into that leadership stage. If we assume, like I do, that 1% of the people who are using WordPress also show up and contribute back to WordPress, then it’s kind of safe to assume also that about 1% of those people who have shown up to contribute to WordPress are moving into a space where they feel like they’re willing to take responsibility for making sure things get done in WordPress.

\n\n\n\n

[Josepha Haden Chomphosy 00:04:31]  

\n\n\n\n

Like we all collectively feel responsible for WordPress’s success, but in that leadership area, you’re kind of taking responsibility for 40% of the web or whatever’s going on there. And not a lot of people make it there, and that is completely fine, too. So that’s our basic terminology today. Those are the caveats that go with our basic terminology.

\n\n\n\n

Most difficulties that arise for new contributors happen because a stage got skipped somewhere along the way. It’s almost never intentional, but from what I’ve observed, that’s what makes it really difficult to get started and what makes it difficult to keep going once you’ve kind of already gotten in there.

\n\n\n\n

So, all right. Big breath, folks with me again [breathe]. Alright, it’s guided exploration time. 

\n\n\n\n

First phase, the connecting phase. Remember, this is where you’ve just learned the community exists, people are talking about it, you don’t know much more. The first step for you is asking yourself what it is you could do. Or if there’s a project out there that looks particularly interesting.

\n\n\n\n

[Josepha Haden Chomphosy 00:05:36]  

\n\n\n\n

So you can ask yourself questions, like, am I a writer? And if I am a writer, do I write technical or prose. The other thing you can ask is, am I a PHP developer, a JavaScript developer, Python, Go; which language am I writing in because I find it most beautiful. Another thing you can ask yourself is, am I a teacher or a mentor, or do I just generally like to be a mighty helper? And I like to make sure that things keep running. 

\n\n\n\n

So once you’ve asked yourself those things, it’s on to phase two, the understanding phase. This is when you’re looking around at this new-to-you community to see what is happening where. So you take a look at the teams that are around, you think about whatever it was you said you were good at in the last question and you look at which teams might be a good fit. 

\n\n\n\n

So if you said that you’re a good technical writer, then Docs probably is for you. Have you been training others to use WordPress for years? Then you might wanna look into Training. There are a lot of other things, obviously, like if you think you’re good at working with code PHP or JavaScript, you’re probably gonna end up in Core.

\n\n\n\n

[Josepha Haden Chomphosy 00:06:46]  

\n\n\n\n

If you are particularly good at any of the other tech stacks that we have around in our Trac area or an Openverse, then that’s where you’ll land over there. You have design options. Like if design is really your thing, we have a Design team, but we also have a Themes team. There are plenty of places that you can land depending on what it is that you feel like you are the best at and could really help the WordPress project. And so that’s your phase two. 

\n\n\n\n

Now that you have gotten a good guess at a team, we’re gonna swing through to phase three, which is the engaging phase. This is the phase that is the scariest for most people, but it’s okay. I am here for you. I am here for you in this podcast. So you have figured out what you want to do in order to contribute, and you’ve got a sense for the team that looks right. There are two things that you do next. 

\n\n\n\n

[Josepha Haden Chomphosy 00:07:34]  

\n\n\n\n

One is that you can go to a meeting. There are many kinds of meetings. There are team meetings, bug scrubs, and testing sessions, but they’re all in Slack, which means that you can attend one from anywhere. When they kick off, you wave, you introduce yourself, you let everybody know that you’re there and you’re observing. Folks will welcome you and just kind of give you some concept of what they’re working on. Easy as that. You’ve done your first time meeting attendance. 

\n\n\n\n

Another good option is to keep an eye out for specific events. Some of those events happen online, like Global Translation Day. But also some of them happen in person like, Meetups or WordCamps. And there again, you show up, you wave, you introduce yourself, see if you can make a connection or two, let people know that you’re new and you’re just trying to figure out where you are and what you wanna do. 

\n\n\n\n

If you’ve made it now, all the way to phase four, the performing phase, then give yourself a little pat on the back! Figuring out where you want to go and who your friendly faces are is the biggest challenge when you get started. So congratulations! 

\n\n\n\n

[Josepha Haden Chomphosy 00:08:37]  

\n\n\n\n

Phase four is the phase where you’ve decided you’re brave enough to volunteer – to do some contribution. You’re volunteering your time. That’s where you are now. So oddly enough, you start this phase by assigning yourself something, assigning yourself, a task. This seems counterintuitive.

\n\n\n\n

There’s this feeling that you can’t say that you’re gonna do something. That you can’t just assign something to yourself and say that you’re gonna do it. But in open source projects, you always can. You find a task where you’re comfortable, and you just mention that you would like to give it a try while the team is having their weekly meeting. And it’s simple as that. And not big things either. Like organizing an event or maintaining a component, those are probably too big for your first time around.

\n\n\n\n

I’m talking things like, ‘I will test that patch that you mentioned in the meeting.’ Or ‘I will review the docs and make sure that they’re up to date with the most recent release.’ Or ‘I can help run meetings for the next release.’

\n\n\n\n

[Josepha Haden Chomphosy 00:09:40]  

\n\n\n\n

And then you have phase five, where you just repeat phase four until you are leading something! And I don’t mean leading in the 1950s sort of way, where you have like a corner office and you’re ordering people around. I mean, in the warm, inviting millennial way where you’re leading by inspiring people to do something or you’re leading because you make sure that the meeting happens every single week.

\n\n\n\n

Or you’re leading because you added screenshots to tickets that needed testing and so you moved something forward in a way that was helpful. Easy peasy. You can go to your first contributor today or a WordPress Slack meeting and just be a contributor by the time you leave, right? You might feel like ‘easy as that isn’t quite the right set of words right there. And as a matter of fact, you might be thinking to yourself, this woman is just plain wrong. It could not possibly be that easy. And I agree. It really isn’t literally quote-unquote just that easy. Just like handing someone a notebook and a pen will not instantly make them an award-winning novelist, handing someone a wordpress.org profile and credentials to Slack won’t instantly make them a contributor. 

\n\n\n\n

[Josepha Haden Chomphosy 00:10:46]  

\n\n\n\n

For both of those examples, what makes someone good is the ability to try and fail and still be encouraged to try again. So if it’s been a while since you contributed and you’re thinking about returning, or if you’ve been listening to me for a while and you’re ready to give this contribution thing a try, I hope this helps you to feel brave enough to try and brave enough to fail.

\n\n\n\n

And I encourage you to be brave enough to try again.

\n\n\n\n

[Josepha Haden Chomphosy 00:11:20]  

\n\n\n\n

Let’s take a look at our small list of big things. My friends, we have a Performance team. This team has been a working group for a long time and is focused on some deep, inner workings of WordPress and its surrounding ecosystem to make sure that we are as fast and slick as possible. You can check them out on make.wordpress.org/performance, their brand new site, and see when they’re meeting, what they’re aiming to get into the WordPress 6.1 release, and if that’s something that you would like to contribute to. 

\n\n\n\n

The second thing is that there’s a brand new call out for testing. This time it’s focused on templates and retroactively applying them to an entire category of posts. So it’s a little bit workflow testing, a little bit technology testing, and we could really use your help in bug hunting for both of those things.

\n\n\n\n

And the final thing is that you know since contribution is obviously the focus of today’s podcast, we are looking for table leads for WordCamp US’ contributor day that’s coming up in September. There’s a whole blog post about it, I’ll link to it in the show notes so that you’ll have all the info and can raise your hand if you want. 

\n\n\n\n

[Josepha Haden Chomphosy 00:12:25]  

\n\n\n\n

And speaking of things that I’ll have in the show notes, I also am going to put like a contributor quizlet guide thing. If the guided, figuring out of the teams in the phase two section, if that didn’t make any sense to you and you just need something to direct you specifically to potential teams, I’m gonna link to the contributor kind of sorting hat quiz that came out with WordCamp Europe. And that should help you work your way through phase two and get ready for phase three if that is where the spirit takes you. 

\n\n\n\n

And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I’m your host, Josepha Haden Chomphosy. And I’ll see you again in a couple of weeks.

\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:\"13162\";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: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 6.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/2022/07/wordpress-6-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:\"Tue, 12 Jul 2022 16:58: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: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:\"6.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:\"6.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=13138\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:236:\"WordPress 6.0.1 is now available for download. This maintenance release features several updates since the release of WordPress 6.0 in May 2022. You can review a summary of the key changes in this release by visiting 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:5452:\"\n

WordPress 6.0.1 is now available

\n\n\n\n

This maintenance release features 13 bug fixes in Core and 18 bug fixes for the Block Editor. WordPress 6.0.1 is a short-cycle maintenance release. You can review a summary of the key updates in this release by reading the RC1 announcement.

\n\n\n\n

The next major release will be version 6.1 planned for later in 2022.

\n\n\n\n

If you have sites that support automatic background updates, the update process will begin automatically.

\n\n\n\n

You can download WordPress 6.0.1 from WordPress.org, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.

\n\n\n\n

For more information, check out the version 6.0.1 HelpHub documentation page.

\n\n\n\n

Thank you to these WordPress contributors

\n\n\n\n

The WordPress 6.0.1 release is led by @sergeybiryukov and @zieladam.

\n\n\n\n

WordPress 6.0.1 would not have been possible without the contributions of more than 50 people. Their asynchronous coordination to deliver several enhancements and fixes into a stable release is a testament to the power and capability of the WordPress community.

\n\n\n\n

Adam Zielinski, Addie, Adil Öztaşer, Andrew Serong, annezazu, Bernie Reiter, Carlos Bravo, Carolina Nymark, Channing Ritter, Colin Stewart, Clement Boirie, Daniel Iser, denishua, Dion Hulse, Erik Betshammar, Gabriel Rose, George Mamadashvili, George Stephanis, Glen Davies, Grant M. Kinney, Greg Ziółkowski, ironprogrammer, James Koster, Jb Audras, jnz31, Jonathan Desrosiers, Jonny Harris, Kelly Choyce-Dwan, Knut Sparhell, Luis Herranz, Maggie Cabrera, manfcarlo, Manzur Ahammed, Matias Ventura, Michal Czaplinski, Miguel Fonseca, Mukesh Panchal, navigatrum, Nick Diego, Nik Tsekouras, Pascal Birchler, Peter Wilson, Presskopp, Ramon James Dodd, Ravikumar Patel, Riad Benguella, Sami Keijonen, Sergey Biryukov, Timothy Jacobs, tobifjellner (Tor-Bjorn Fjellner), Trinadin, and Ulrich Pogson.

\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:\"13138\";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:61:\"\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:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WP Briefing: Episode 35: Five for the Future’s True Intentions\";s: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:83:\"https://wordpress.org/news/2022/07/episode-35-five-for-the-futures-true-intentions/\";s: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, 11 Jul 2022 12: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";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:11:\"wp-briefing\";s: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://wordpress.org/news/?post_type=podcast&p=13132\";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:140:\"On this week\'s episode of the WordPress Briefing, Josepha answers questions about the intentions behind the Five for the Future 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:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/07/WP-Briefing-035.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s: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:\"Santana Inniss\";s: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:14788:\"\n

In the thirty-fifth episode of the WordPress Briefing, Josepha Haden Chomphosy tackles questions about the true intentions of the Five for the Future initiative.

\n\n\n\n

Have a question you’d like answered? You can submit them to You can submit them to wpbriefing@wordpress.org, either written or as a voice recording.

\n\n\n\n

Credits

\n\n\n\n

Editor: Dustin Hartzler
Logo: Beatriz Fialho
Production: Santana Inniss
Song: Fearless First by Kevin MacLeod

\n\n\n\n

References

\n\n\n\n
  1. New Create Block Theme plugin
  2. Open Sourcing Theme Designs
  3. Exploration in Meta to improve DevHub
  4. Tragedy of the Commons definition
\n\n\n\n

Transcript

\n\n\n\n\n\n\n\n

[Josepha Haden Chomphosy 00:00:10]  

\n\n\n\n

Hello everyone. And welcome to the WordPress Briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I’m your host Josepha Haden Chomphosy. Here we go!

\n\n\n\n

[Josepha Haden Chomphosy 00:00:40]  

\n\n\n\n

Today I’m talking about Five for the Future– again. Before we get stuck right into the heart of it, 10 episodes ago, in episode 25, I focused on the Five for the Future initiative and I recommend that you listen to that before you join me in today’s episode. It’s only eight minutes and it gives you a history of the Five for the Future initiative, as well as some information on the Five for the Future program.

\n\n\n\n

It then goes on to talk about some of the original intentions behind that original initiative. The reason I bring this back up today is partially because one, I will talk about both the program and the initiative it’s based on literally anytime. I believe strongly that they are both a vital part of what will result in a triumph of the commons of WordPress, and keep this empowering project around for years to come. 

\n\n\n\n

But I also bring it up today because there’s conversation about a post I published a couple of months back that has generated some dialogue around the intentions of this catchy call to contribution. So to make sure that as we move through this discussion together, we are working with as much factual information as possible, I present to you some facts.

\n\n\n\n

[Josepha Haden Chomphosy 00:01:46]  

\n\n\n\n

First and foremost, the pillars of this initiative. The 5% in Five for the Future is aspirational. Contribution to open source is a question and indication of privilege. So the 5% is not a requirement, but rather it’s an aim. It could refer to 5% of your time or 5% of your resources, or just any amount of your time or resources around. Regardless of how you’re defining it, it is an aspiration, not a requirement. 

\n\n\n\n

The second pillar, pledges show your intention and whatever contributions you are able to offer after you’ve made your pledge are always welcome. No one is out there checking for 100% completion of the hours that you intended to give back to WordPress versus the hours that you actually succeeded at giving back to WordPress.

\n\n\n\n

There are so many volunteers that make sure that this project is running and functional and has plenty of people knowing how to get things done and how to teach others how to get things done. It’s all coming from generosity of heart. 

\n\n\n\n

[Josepha Haden Chomphosy 00:02:52]  

\n\n\n\n

And speaking of generosity, the third thing that is important about this initiative is that it insists on and wants to celebrate a culture of generosity. Beyond the concept of a pledge, is the idea of generous collaboration toward the long term health and stability of our project for the future.

\n\n\n\n

As contributors, we understand that we are greater than the sum of our parts and what we build within WordPress empowers those who build with WordPress. So those are the pillars that went into that initial thought, that opening Five for the Future call to action that Matt gave to everybody in 2014.

\n\n\n\n

And so now I want to share with you some of the pillars of the program that has grown up around it. So the Five for the Future initiative, if you’re not familiar, was started in 2014 and is a grand call to all of us to remember to give back to the shared commons of WordPress. Its aim was to help guard against what is called the “tragedy of the commons,” where resources are continually taken out and not necessarily reinvested in. No one’s necessarily putting anything back into those.

\n\n\n\n

[Josepha Haden Chomphosy 00:04:06]  

\n\n\n\n

So that’s the starting point for all of this. So the program, the Five for the Future program, in 2018 was built as a collaborative effort with full participation and buy-in from the contributors who were active in the project at the time. It allowed anyone to raise their hands, to show support of WordPress via a pledge and also started a multi-year discussion of how to define contributions in a way that let us automatically provide props and therefore more effectively put badges on people’s wordpress.org profiles. 

\n\n\n\n

And then in 2019, there was an additional pilot of the program, which kind of offered some team structure, which was intended to not only take on work that I don’t like to ask volunteers to do, but also to provide some checks and balances to an absolute raft of sponsored contributor hours that we had started to see show up. 

\n\n\n\n

Which brings us then to the post that I mentioned at the start. Knowledgeable supporters of the WordPress open source project have debated next iterations to Five for the Future activity and programming. So, to bring the conversation to a central set of questions, or rather to bring the conversation to a central spot, I raised these two questions. One, what activities can we see inside our contributor networks? So wordpress.org, make.wordpress.org, the Rosetta sites that we have, Slack, et cetera. 

\n\n\n\n

[Josepha Haden Chomphosy 00:05:30]  

\n\n\n\n

So what activities can we see inside the contributor networks that we can flag to enable easier distribution of props and therefore badges? The second question is, what activities can we see also in those contributor networks that appear to be contributions, but in the end are only benefiting the person or company that provides the contributions?

\n\n\n\n

For what it’s worth that discussion then also raised a third question that I don’t think we’ve even started to tackle, which is what about the activities that are not in the contributor network, but still do move WordPress forward? Cause there are so, so many of those things and it’s a great question. I don’t have an answer and just so that I don’t leave you all with a series of questions for which there are no answers provided in this particular podcast, I do have a few answers for questions that I have seen floating around this discussion. 

\n\n\n\n

So the first question is actually a bunch of questions. There are like three parts to it. What are props, who gives props, and who tracks them? So ‘props’ is a term used in WordPress to describe shared recognition of a contribution. Think of it as like a hat tip or kudos or an assist. However you think about it, it’s recognition of the other people who helped to solve a problem along the way. That is what props are. 

\n\n\n\n

[Josepha Haden Chomphosy 00:06:47]  

\n\n\n\n

The second part of that question is who gives props and historically developers have given props, which tends to mean that it’s mostly developers who get props. But now, also, any team rep during a release cycle can provide props to folks on their team, volunteers on their team who were really helpful during the course of the release.

\n\n\n\n

And recently we also added the functionality for ad hoc props to be given in the Slack props channel, and those get added to your profile activity. So that someone can give you basically a public thanks for having helped on something that they were working on. And then that gets logged in your activity tracker on your WordPress.org profile.

\n\n\n\n

And then the final question in that first big question is who tracks these props? And the answer is human beings! Which is why folks feel like they have to do a ton of things before they even get props. And that’s also why I’d like to automate more and more of them so that you don’t have to do a ton of things in order for someone to show up and acknowledge that you are part of a solution.

\n\n\n\n

[Josepha Haden Chomphosy 00:07:51]  

\n\n\n\n

So the second question that I’ve seen kind of running around is, where do props start? And that is a great question that has been asked year after year. And one that I think we should continue to ask. The reality is that we won’t be able to see every contribution to WordPress, but that doesn’t mean that they aren’t valuable. And it doesn’t mean that they don’t matter. 

\n\n\n\n

Building our culture of generosity helps us to better recognize and celebrate each other for all of our contributions, whether they are for a major release or a major event, or one of these new ad hoc props that you can offer to people. And if we see more and more of the same type of contributions being celebrated, then we can also work toward automating those as well, so that you don’t have to do a super ton of them before someone has noticed that you’ve done even one of them. 

\n\n\n\n

And the third big question that has been running around is, what about the people who don’t want the props? If people want to be literally anonymous, then deletion requests are probably your way to go. But I actually don’t think that’s the question here. I think the question is what if a prop holds no intrinsic value to you and then, you know, I wanna thank you for that spirit of generosity. And I also wanna say that I’m so glad you’re here. 

\n\n\n\n

[Josepha Haden Chomphosy 00:09:02]   

\n\n\n\n

Hopefully, all of these answers clarify what lies at the heart of what is intended with the Five for the Future initiative and the program that’s built on top of it. And why I care so much about fixing the ways we offer props to folks. For me, it’s not about assessing the worthiness of people or companies or any of their contributions. For me, it’s about reinvesting in the shared commons of the WordPress ecosystem, by finding a way that our economy can entice folks to put back into WordPress, something close to the benefit that they receive from it.

\n\n\n\n

And that brings us now to our small list of big things. Thank you all for making it into the final stretches with me. These three things that I’m sharing also have companion blog posts to go with them because they are very big questions or very big features, very big plugin kind of things that we’re looking at. And so you’ll be able to find those in the show notes, or you can go to wordpress.org/news if you’re listening to this in a podcast player of your choice that is not wordpress.org. 

\n\n\n\n

[Josepha Haden Chomphosy 00:10:10]   

\n\n\n\n

So the first one on my list is a new plugin. It is called Create Block Theme. And it’s gonna make it easier for theme builders to use the existing site editor tools to create new block themes. I’m very excited about this. Uh, you can find it on make.wordpress.org/themes. And I will also include a link to it in the show notes below. 

\n\n\n\n

If themes are not your area of expertise, but you are interested in documentation or the DevHub or to an extent design things, then the improvements that are being worked on for the DevHub are definitely in your area. That’s kind of a Meta task, but has a few other pieces involved as well. That can be found on make.wordpress.org/meta. But again, I will have a link to the very, very detailed blog post in the show notes. 

\n\n\n\n

It’s got a bunch of hypothetical changes that are being suggested for the WordPress developer docs, uh, especially when it comes to the function reference. And so there are gonna be some slight design questions, but not like, graphic design/visual design, more in the like, can humans read this design area of things? And so that will be a good one to look at. If you are sort of in the Meta or Documentation vein of things in the way that you like to contribute to WordPress.

\n\n\n\n

[Josepha Haden Chomphosy 00:011:30]   

\n\n\n\n

And then the final thing is about open sourcing theme designs. So open sourcing everything obviously is important to us. And the design tool that we use, this tool called Figma, is open to the public. And so it’s possible for folks to be able to kind of get in there and use and reuse any design elements.

\n\n\n\n

And so there’s a discussion happening over on make.wordpress.org/design about how that can and should look in the future. And so if design is definitely your area, and again, this kind of lines up with themes a little bit, then wander over into that one, for which there will also be a link in the show notes. 

\n\n\n\n

And that my friends is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I’m your host, Josepha Haden Chomphosy. And I’ll see you again in a couple of weeks.

\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:\"13132\";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:60:\"\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:36:\"The Month in WordPress – June 2022\";s: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:68:\"https://wordpress.org/news/2022/07/the-month-in-wordpress-june-2022/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 06 Jul 2022 14:19:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13069\";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:313:\"With WordPress 6.1 already in the works, a lot of updates happened during June. Here’s a summary to catch up on the ones you may have missed.  WordPress 6.1 is Slated for Release on October 25, 2022 Planning for WordPress 6.1 kicked off a few weeks ago with a proposed schedule and a call for […]\";s: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:\"rmartinezduque\";s: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:12416:\"\n

With WordPress 6.1 already in the works, a lot of updates happened during June. Here’s a summary to catch up on the ones you may have missed. 

\n\n\n\n
\n\n\n\n

WordPress 6.1 is Slated for Release on October 25, 2022

\n\n\n\n

Planning for WordPress 6.1 kicked off a few weeks ago with a proposed schedule and a call for contributors to the release team. This will be the third major release in 2022 and will include up to Gutenberg 14.1 for a total of 11 Gutenberg releases.

\n\n\n\n

Matías Ventura published the preliminary roadmap for version 6.1, which is expected to refine the full site editing experience introduced in the last two major releases. Stay tuned for a companion post with more details on what’s to come.

\n\n\n\n

Tune in to the latest episode of WP Briefing to hear WordPress Executive Director Josepha Haden discuss planning for major releases and how you can get involved.

\n\n\n\n
\n\n\n\n

New in Gutenberg: Versions 13.4 and 13.5

\n\n\n\n

There are two new versions of Gutenberg since last month’s edition of the Month in WordPress:

\n\n\n\n
  • Gutenberg 13.4 includes 25 enhancements and nearly 30 bug fixes. This version adds support for button elements in theme.json and introduces axial spacing in Gallery Block, among other new features.
  • Gutenberg 13.5 was released on June 22, 2022. It comes with an improved featured image UX, expanded design tools for the Post Navigation Link block, and solid accessibility fixes.
\n\n\n\n

Follow the “What’s new in Gutenberg” posts to stay up to date with the latest updates.

\n\n\n\n
\n\n\n\n

Team Updates: Gutenberg Page Redesign, Meetup Venue Support Funds, and More

\n\n\n\n\n\n\n\n

The BlackPress community is a great place to connect with black African descent people in the WordPress space, access tech resources, and advance your career skills. Join the BlackPress Community.

\n\n\n\n
\n\n\n\n

Feedback/Testing Requests

\n\n\n\n\n\n\n\n

Want to get involved in testing WordPress? Follow the “Week in Test” posts to find a handy list of links and opportunities.

\n\n\n\n
\n\n\n\n

WordCamp Asia 2023 is Calling for Sponsors

\n\n\n\n
  • WordCamp Asia 2023, the first flagship WordCamp event in Asia, recently opened its Call for Sponsors.
  • WordCamp US 2022 is sold out. General Admission tickets went on sale on June 30, 2022, and were quickly claimed the same day. If you couldn’t get yours, the organizing team recommends checking this page periodically to see if any become available.
  • Curious about why WordCamp US is hosting fewer people this year? The WordCamp US team explained why in this post.
  • WordCamp Europe 2022 was successfully held in Porto, Portugal, from June 2 to 4, 2022. The event saw 2,300 in-person attendees and a record 800 participants at Contributor Day. All the sessions will be available on WordPress.tv soon.
  • In 2023, WordCamp Europe will be hosted in the city of Athens, Greece. The Call for Organizers is now open.
  • Josepha Haden covered some important questions from WordCamp Europe on a special episode of WP Briefing. Be sure to give it a listen!
\n\n\n\n

The #WPDiversity group has organized a free, online speaker workshop for Indian women in the WordPress community. The event will take place on September 24-25, 2022. Registration is now open.

\n\n\n\n
\n\n\n\n
\n\n\n\n

Have a story that we could include in the next issue of The Month in WordPress? Let us know by filling out this form.

\n\n\n\n

The following folks contributed to this Month in WordPress: @mysweetcate, @dansoschin, @lmurillom, @webcommsat, @chaion07, @rmartinezduque.

\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:\"13069\";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: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:30:\"People of WordPress: Leo Gopal\";s: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:65:\"https://wordpress.org/news/2022/06/people-of-wordpress-leo-gopal/\";s: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, 30 Jun 2022 12: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: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:8:\"Features\";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: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:3;a:5:{s:4:\"data\";s:10:\"Interviews\";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:9:\"HeroPress\";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:19:\"People of 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:35:\"https://wordpress.org/news/?p=13020\";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:355:\"In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better. This month we feature Leo Gopal, from South Africa, a back-end Developer and Customer Support agent on the encouragement and learning support the WordPress community can give. Writing as […]\";s: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:10:\"Meher Bala\";s: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:11765:\"\n

In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better. This month we feature Leo Gopal, from South Africa, a back-end Developer and Customer Support agent on the encouragement and learning support the WordPress community can give.

\n\n\n\n
\"Portrait
\n\n\n\n

Writing as a channel of expression

\n\n\n\n

Curiosity, writing, and resilience are recurring themes in Leo’s story, and have mapped with his WordPress journey. 

\n\n\n\n

High school was a difficult time for Leo, as he had a speech impediment which only subsided when he was with close friends or family.

\n\n\n\n

He began writing a journal as an avenue of expression and found every word arrived smoothly for him.  

\n\n\n\n

It all began with WordPress 1.2 ‘Mingus’

\n\n\n\n

In 2004, Leo discovered the joy of blogging as a way of combining keeping a journal with ‘conversations’ he could have with those who commented on his blogs. The potential and power of blogs would be an influence in the rest of his life.

\n\n\n\n
\"Leo
\n\n\n\n

As Leo’s confidence grew through expressing himself in writing, he was determined that his stutter would ‘no longer hold power over him’. In 2005, with the encouragement of his blog readers, he spent his school summer break in his room working on reducing his stutter. WordPress would be the tool that would enable him to connect with his blog readers and to express his creativity and thoughts.

\n\n\n\n

Making WordPress your own

\n\n\n\n

In high school, Leo had opted for programming as one of his subjects. In 2008, he built his first website using WordPress for the students at the school. This was the first time he saw the real value of WordPress and open source.

\n\n\n\n

During the following years, he increasingly spent time searching online for information on ‘Customising WordPress’ and ‘Making WordPress your own’.

\n\n\n\n

Leo wanted to keep busy and as soon as he finished school, he applied for every entry-level web-related job that he could find. He was hired by a company for the role of webmaster for its Marketing team focused on WordPress.

\n\n\n\n

He continued to grow his skills as a WordPress developer with the help of useful documentation that he could find and through his helpful local WordPress Community. This helped him earn a living and support his family.

\n\n\n\n

Helping yourself through helping others in the community

\n\n\n\n

In 2015, Leo moved full-time to Cape Town, South Africa, and started as a developer at a web development agency, eventually progressing to its Head of Development and managing a small team.

\n\n\n\n

He chose WordPress as his main platform for development mainly because of the community behind it.

\n\n\n\n

Had it not been for those searches on how to make WordPress your own, my life would have turned out a lot differently.” 

Leo Gopal
\n\n\n\n

Leo felt he had a hurdle to overcome working in web sector. He didn’t feel like a ‘real developer’ being self-taught. However, through the community, he realized that there were many self-taught developers and he was not alone.  

\n\n\n\n

Alongside his development path, Leo faced a mental health journey. He had suffered from depression and found the community to be accepting and understanding of this. 

\n\n\n\n

At WordCamp Cape Town 2016, he stood in front of an audience and gave a talk: “The WordPress Community, Mental Wellness, and You”. Following this talk, he was greeted by many attendees who thanked him for talking so openly about mental health issues.

\n\n\n\n
\"Leo
Leo speaking at a WordCamp Cape Town, 2016
\n\n\n\n

Leo has been diagnosed with bipolar, previously known as manic depression. In 2017, he hit a low period and struggled to keep going. He found support and understanding in the community in WordPress.

\n\n\n\n

He has openly written about his experiences with depression and started an initiative where topics of mental health and general wellbeing can be freely and non-judgmentally discussed.  

\n\n\n\n

He said that by helping others, he is helping himself, every day.

\n\n\n\n

Contributing to WordPress

\n\n\n\n

Leo has contributed to the community as a Co-organizer in South Africa for the 2016 and 2017 WordCamp Cape Town, WordPress Meetup Cape Town 2015 – 2016, and WordPress Durban 2017 – 2020. He has also spoken at a number of WordCamps.

\n\n\n\n

Maintaining connections with people he had met through these events Leo felt was a great aid to his mental wellbeing during the Covid pandemic.

\n\n\n\n

He has contributed to core and plugins and believes that WordPress and its community make it extremely easy to contribute.

\n\n\n\n

The cost to start contributing is extremely low – start now”.

Leo Gopal
\n\n\n\n

When the ability to create and add patterns to the WordPress.org library came out in 2021, Leo used it almost immediately and created a call-to-action box which could be used by both his clients and the community. He plans to release a few more complex patterns.  

\n\n\n\n

Yes, we can.

\n\n\n\n

Leo’s mantra is “I can do it!”

\n\n\n\n
\"Leo
Leo speaking at a WordCamp Cape Town, 2019
\n\n\n\n

Getting over a stutter, overcoming poverty, being urgently self-taught, growing up in a country with “load shedding” electricity outages, and one of the slowest rated internet speeds in the developing world, and strengthening mental wellness are not easy feats., And yet, he knows he can do it.

\n\n\n\n

Never, ever think you do not have the ‘right’ circumstances for success. Just keep going, progress over perfection – you can do it.”

Leo Gopal
\n\n\n\n

As Leo puts it, the WordPress community doesn’t just power a percentage of the internet; it empowers too.

\n\n\n\n

Share the stories

\n\n\n\n

Help share these stories of open source contributors and continue to grow the community. Meet more WordPressers in the People of WordPress series.

\n\n\n\n

Contributors

\n\n\n\n

Thanks to Nalini Thakor (@nalininonstopnewsuk), Larissa Murillo (@lmurillom), Meher Bala (@meher), Abha Thakor (@webcommsat), Chloe Bringmann (@cbringmann) for work on this feature, and to all the contributors who helped with specific areas and the series this last few months. Thank you too to Leo Gopal (@leogopal) for sharing his experiences.

\n\n\n\n

Thank you to Josepha Haden (@chanthaboune) and Topher DeRosia (@topher1kenobe) for support of the People of WordPress series.

\n\n\n\n
\"HeroPress
\n

This People of WordPress feature is inspired by an essay originally published on HeroPress.com, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. #HeroPress

\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"13020\";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:61:\"\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:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"WP Briefing: Episode 34: WordPress 6.1 is Coming!\";s: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://wordpress.org/news/2022/06/episode-34-wordpress-6-1-is-coming/\";s: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, 27 Jun 2022 15:13: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:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";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:11:\"wp-briefing\";s: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://wordpress.org/news/?post_type=podcast&p=13013\";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:154:\"Join WordPress Executive Director Josepha Haden Chomphosy as she covers planning for major releases and how you can get involved in the 6.1 release cycle!\";s: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:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/06/WP-Briefing-034.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s: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:\"Santana Inniss\";s: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:8675:\"\n

In the thirty-fourth episode of the WordPress Briefing, hear WordPress Executive Director Josepha Haden Chomphosy discuss planning for the major release and how you can get involved in the WordPress 6.1 release cycle!

\n\n\n\n

Have a question you’d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording.

\n\n\n\n

Credits

\n\n\n\n\n\n\n\n

References

\n\n\n\n\n\n\n\n

Transcript

\n\n\n\n\n\n\n\n

[Josepha Haden Chomphosy 00:00:10]  

\n\n\n\n

Hello everyone. And welcome to the WordPress Briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I’m your host Josepha Haden Chomphosy.

\n\n\n\n

Here we go.

\n\n\n\n

All right my friends. So it’s been about a month since WordPress 6.0 came out and you know what that means. It means we are already looking at the next major WordPress release because,  as most of you know, WordPress never sleeps. Y’all are honestly up and hustling like 24/7 as far as I can tell, which is great! And is one of the many benefits of being a global community, I suppose. 

\n\n\n\n

[Josepha Haden Chomphosy 00:01:05]

\n\n\n\n

But anyway, back to this major release. There was a high-level roadmap shared by Mattias Ventura at the start of June. And it lists some focus areas for the Block Editor, continued refinements to the template editor and navigation block, and some work on global styles and more / better blocks and design tools that are slated to ship with WordPress 6.1. From the WordPress core side, though, there are a couple hundred tickets that are milestoned for the next major.

\n\n\n\n

Being milestoned for a release means that either a ticket wasn’t ready for the last release and was moved to the next available one, or a ticket has become ready for a release since the last major release occurred. That list as it stands might be a little bit too big for a single release. However, honestly, no list is too big if we have enough folks contributing.

\n\n\n\n

So if you’ve never contributed to a major release of WordPress before, and you’re interested to know how that works, there are some things to keep an eye out for over the next few weeks. We are in what is considered the planning phase for the next big release. And so there are two or three things you’re gonna see pretty soon.

\n\n\n\n

[Josepha Haden Chomphosy 00:02:11] 

\n\n\n\n

First is a planning kickoff post. That post gets published on make.wordpress.org/core, and it includes notes on volunteering for the release squad, some guesses at areas of focus based on the tickets that we’re seeing in track, a schedule, the whole kit, and caboodle. It’s all in there. If you are wanting to know how to lend a hand and how to take your first steps to core contribution, apart from the new contributor meeting that happens before the dev chat, that post is the place to start. 

\n\n\n\n

So keep an eye out on make.wordpress.org/core for that. And then the second thing that shows up in the planning phase for any major release is bug scrub and ticket triage meetings. Like I mentioned, there are the new contributor meetings where they scrub tickets and talk through the basics of what we’re seeing on good first bugs.

\n\n\n\n

And I mentioned that here often, I just mentioned it in the last, in the last bullet point, but there are also regular bug scrubs and ticket triaging sessions where a kind contributor chooses a set of tickets to review and then leads other contributors through the process of checking to see if a ticket is valid to see if it can be replicated to see if it has a patch.

\n\n\n\n

[Josepha Haden Chomphosy 00:03:23] 

\n\n\n\n

If there are decisions that are blocking it and how to move those decisions forward, and generally just kind of discuss what else has to be done in order to take the ticket to the next step. Those get announced in the dev chat every Wednesday, but also there is a post that will go up on make.wordpress.org/core.

\n\n\n\n

I wish I had a faster way to say that instead of just racing through the whole URL every time. But it’ll be okay. We’ll put it in the show notes in case you would rather just click some stuff. And the third thing to keep an eye out for. If development is not your thing, so writing code is not already part of your tool belt, that’s totally fine. There are many other important areas where you can contribute, too. Design, training, support, polyglots, marketing, documentation, and more. These teams all do work in and around a release that is vital to WordPress’ overall success. 

\n\n\n\n

[Josepha Haden Chomphosy 00:04:19] 

\n\n\n\n

And a final thought of all. If that felt a little too intense if you want to see where this ship is headed, but you can’t quite commit to grabbing an oar today, that’s fine, too. The most important thing is that if you are a member of the community, as an extender or a user or a die-hard contributor, or a new contributor, the most important thing is that you have some general awareness of what the overall direction is. 

\n\n\n\n

You might do that by experimenting with blocks in your products or by testing screen readers against your workflow or even by setting aside an hour to participate in the latest testing prompt. Being aware of what’s happening in and around your area of the project will help to keep you kind of prepared and knowledgeable to lend a hand whenever it is that you are ready.

\n\n\n\n

[Josepha Haden Chomphosy 00:05:14] 

\n\n\n\n

And that then brings us to our small list of big things. My friends, registration is now open for the WordPress Speaker Workshop for Women Voices in India. That’s taking place on September 24th and 25th. Uh, it’s happening over Zoom, so location or travel shouldn’t really be an obstacle for you. I’m going to leave a link to some information about that in the show notes. It should be an excellent opportunity that [the] WP Diversity initiative that WordPress has, that the community team helps to foster, is really an excellent experience. And so I hope that you register and attend that. 

\n\n\n\n

And the second thing actually is a bit of a celebration. The Photo Directory recently hit a huge milestone of 3000 photos! And you also can submit your photos to wordpress.org/photos. If you feel so inclined to make a contribution of that type. 

\n\n\n\n

[Josepha Haden Chomphosy 00:06:07] 

\n\n\n\n

And then the third thing on my smallest of big things is actually kind of a, a WordPress tooltip a little bit of a WordPress project did-ya-know? So, there is a special channel in WordPress Slack for sharing thanks to folks who were especially helpful to you. It’s called the Props Channel. And when someone shares props with you, it even shows up in your activity on your wordpress.org profile. Pretty cool, huh? Props to the Meta team for that one.

\n\n\n\n

And that my friends is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I’m your host, Josepha Haden Chomphosy. And I’ll see you again in a couple of weeks.

\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:\"13013\";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:61:\"\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:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"WP Briefing: Episode 33: Some Important Questions from WCEU\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wordpress.org/news/2022/06/episode-33-some-important-questions-from-wceu/\";s: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 Jun 2022 11:01: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";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:11:\"wp-briefing\";s: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://wordpress.org/news/?post_type=podcast&p=13005\";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:165:\"WordPress Executive Director Josepha Haden Chomphosy covers some important questions from WordCamp Europe on this special episode of the WordPress Briefing podcast. \";s: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:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/06/WP-Briefing-033.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s: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:\"Santana Inniss\";s: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:13788:\"\n

In the thirty-third episode of the WordPress Briefing, hear Josepha Haden Chomphosy recap important questions from WordCamp Europe, and a selection of Contributor Day interviews.

\n\n\n\n

Have a question you’d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording.

\n\n\n\n

Credits

\n\n\n\n\n\n\n\n

References

\n\n\n\n\n\n\n\n

Transcript

\n\n\n\n\n\n\n\n

[Daugirdas Jankus 00:00:04] 

\n\n\n\n

Honestly, it’s not a secret. It’s a big part of our business. And I think it’s like WordPress is a big part of all the hosting company, company’s, businesses, you know? So for us, it is like, we want to make it better. We want to give back. We want to understand, you know, where we can contribute the most. And we see it as a, you know, win, win, win situation for everyone, for clients, for the whole ecosystem.

\n\n\n\n

And for us as a business, of course!

\n\n\n\n

[Milana Cap 00:00:32] 

\n\n\n\n

My favorite WordPress component is WP CLI. That’s my crush, haha, because I love terminal. I love doing it. I’m not a really UI type of person, I get lost in UI. But in terminal, you just type command and it does what you want. And a WP CLI is much more powerful than WordPress dashboard. You can do so many things there and you can have fun.

\n\n\n\n

Uh, so that’s my go-to tool!

\n\n\n\n

[Josepha Haden Chomphosy 00:01:10] 

\n\n\n\n

Hello everyone. And welcome to the WordPress Briefing– the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy.

\n\n\n\n

Here we go!

\n\n\n\n

[Josepha Haden Chomphosy 00:01:36] 

\n\n\n\n

Many, many people were at WordCamp Europe a couple of weeks ago. And at the end, Matt and I closed out the event sessions with a little question and answer time from the community. I was excited to see everyone and excited to answer their questions. But as with all spur of the moment answers, I experienced this l’esprit de l’escalier and I found that there were a few things that I would have answered a little more completely if I had taken more than two seconds to think about them.

\n\n\n\n

So today I’m going to augment some of the answers from that session with a little more context and clarity. There was a question from Laura Byrne about favorite blocks in recent WordPress releases. And given that I was exclusively holding WordCamp Europe information in my brain at the time, I couldn’t think of which block was my favorite. While I was sitting there on that stage,

\n\n\n\n

I realized that one of my favorite things about WordPress’s 6.0 release, like Matt, wasn’t really a block, but it was a functional workflow sort of thing. So my favorite thing was the ability to lock blocks, but I mean, the question was about favorite blocks. And so I do know that some of the most anticipated blocks are the Flexbox layout blocks. Whew. What a sentence!

\n\n\n\n

[Josepha Haden Chomphosy 00:02:46]

\n\n\n\n

Try to say that three times fast! Those blocks are the Flexbox layout blocks, they are sort of shortcuts that show up when you’re selecting multiple blocks and allow for easy side-by-side layouts. I’m not explaining it in a way that does it much justice, but I will share a link in the show notes that has more information and you can kind of see how empowering that particular block is in the block editor.

\n\n\n\n

The next question I wanted to give a little more context to came from Courtney Robertson. She asked about how to make translated content more readily available on learn.wordpress.org. My answer was pretty far ranging and talked about why it’s harder to commit to prioritizing that over, for my example, translating WordPress core. 

\n\n\n\n

But I also understand that there are people who want to help and just need someone to point them in the right direction. And so I want to be clear that it is possible to have workshops in any language on learn.wordpress.org right now. We just don’t have a lot of people contributing those translations.

\n\n\n\n

So there are conversations going on right now in the training team about using Glotpress on learn.wordpress.org, and also how to translate subtitles. So, if you are looking for ways to give back through translation and training is an important kind of area of your focus. I will have links to both of those things in the show notes as well.

\n\n\n\n

[Josepha Haden Chomphosy 00:04:11]

\n\n\n\n

I also gave a quick answer, uh, after this question about how hard it is to recognize contributions that are separate from a major event or major release. In this case, when I say recognize, that’s recognized as in thank, not recognize as in, know it exists. In case it’s not clear why that was connected, why that answer was connected to the question, training materials are self-serve and not always specific to individual releases of WordPress.

\n\n\n\n

So that means the maintenance of any content around training happens routinely over the course of time, rather than because of a specific release or a WordCamp. What sometimes can make it a little harder to entice people to join us in that work. 

\n\n\n\n

And now the third question I’d like to tackle is the one that came from Megan Rose. She asked how we can encourage better diversity as we go back to in-person events. My answer was more about the big picture, program-wide work that has been done and specific awarenesses that I, as a leader, have been keeping top of mind. That answer is still true and is still important, but again, it doesn’t really help anyone who’s wondering how they can show up today in their own communities, and do the hard work of fostering an inclusive space there so that we can confidently welcome more diverse voices together. 

\n\n\n\n

[Josepha Haden Chomphosy 00:05:27]

\n\n\n\n

A great place to start is to have conversations with people who aren’t like you and really listen. Also recognizing that we all come from different backgrounds that give us more or less opportunity and always be asking yourself, who is missing from this conversation and why, how can I find them and invite them into our own WordPress spaces?

\n\n\n\n

If that all kind of feels right up your alley, I would check out the show notes. I’ll have some links in there to the community team’s site, as well as a few posts that will help you to explore that a bit further as well. 

\n\n\n\n

There were also a couple of questions about market share slash usage of WordPress, and Five for the Future that I really do want to answer, but as I was writing up the context and just kind of exploring the questions that people were raising, it turned out to really be quite a big set of answers.

\n\n\n\n

So I will do those in either two separate episodes of their own or one surprisingly long, for me, episode. And so there you have it, a lightning round, deep dive on a few questions from WordCamp Europe.

\n\n\n\n

[Jonathan Desrosiers 00:06:41] 

\n\n\n\n

Yeah, it’s definitely great to be back in person. Um, it’s been a long two years, two or three years for a lot of people and it’s, it’s, it’s great that we’re such an asynchronous community and we can all stay connected online through Slack and different means. Um, but there are some things that you can’t replace, like making friends with people and learning people’s demeanors and having some discussions in person that you can’t replace.

\n\n\n\n

And so, uh, I’m really excited to see people I haven’t seen in a long time. Meet new people and, um, you know, have some of those discussions here today in Portugal.

\n\n\n\n

[Josepha Haden Chomphosy 00:07:21] 

\n\n\n\n

Which then brings us to our small list of big things. 

\n\n\n\n

If you missed the announcement, WordCamp Europe will be in Athens next year. And the call for organizers is open already. It’s an experience that is absolutely irreplaceable. So I’ll link to that in the show notes, in case you’ve always wanted to give back to WordPress that way.

\n\n\n\n

The second thing on my list is that work on the next major release of WordPress is already underway. There is a post with roadmap info that was published recently, as well as a slightly more casual thread on Twitter. I’ve linked both of those in the show notes, so that you have some concept of what it is that we are aiming for in 6.1, and also a concept of where to go to get started working on it if that’s what you feel like doing, uh, for the next three to four months– 120 days, roughly.

\n\n\n\n

Uh, and finally. This is less of like a thing to be aware of in the next two weeks and kind of a little WordPress project tool tip. Did you know that we have a calendar that shows all meetings for all teams all week long? It will make you feel tired by the amount of work that gets done in the WordPress project every week, but it’s right there on make.wordpress.org/meetings.

\n\n\n\n

So you never have to wonder where folks are meeting to talk about things ever again. And that my friends is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I’m your host, Josepha Haden Chomphosy, and I’ll see you again in a couple of weeks.

\n\n\n\n

[Santana Inniss & Héctor Prieto 00:09:11] 

\n\n\n\n

Hello! Mic test. One, two, one, two. 

\n\n\n\n

We are testing the USB microphone. Let’s hope we’re using it actually. 

\n\n\n\n

I think so. I think so. 

\n\n\n\n

Yes. Because now I am far, and now I am much closer to the microphone. Yes. 

\n\n\n\n

And I am sitting in the same spot. 

\n\n\n\n

Good. Hello? 

\n\n\n\n

Hello! 

\n\n\n\n

Mic test one, two.

\n\n\n\n

Mic test one, two. 

\n\n\n\n

[record scratching sound effect]

\n\n\n\n

[laughter]

\n\n\n\n

And, close.

\n\n\n\n

Mic check. 

\n\n\n\n

Mic check. 

\n\n\n\n

[record scratching sound effect]

\n\n\n\n

I’m close to the mic. I’m far from the mic. 

\n\n\n\n

I’m far from the mic. Wow.

\n\n\n\n

Not so far.

\n\n\n\n

[laughter]

\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:\"13005\";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:60:\"\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:\"The Month in WordPress – May 2022\";s: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/2022/06/the-month-in-wordpress-may-2022/\";s: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, 02 Jun 2022 11:35:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12993\";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:346:\"WordPress has a lot to celebrate this month. The newest release “Arturo” is here. WordPress turned 19 years old last week. And WordCamp Europe, the first in-person flagship WordCamp in two years, is starting today in Porto, Portugal. Read on to learn more about these and other exciting news around WordPress! Say hello 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s: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:12516:\"\n

WordPress has a lot to celebrate this month. The newest release “Arturo” is here. WordPress turned 19 years old last week. And WordCamp Europe, the first in-person flagship WordCamp in two years, is starting today in Porto, Portugal. Read on to learn more about these and other exciting news around WordPress!

\n\n\n\n
\n\n\n\n

Say hello to WordPress 6.0 “Arturo”

\n\n\n\n

WordPress 6.0 “Arturo” was released on May 24, 2022. Named in honor of the Latin jazz musician Arturo O’Farrill, the awaited release brings more customization tools and numerous updates to make the site-building experience more intuitive.

\n\n\n\n

Check out the WordPress 6.0 video and the announcement post for an overview of the most important changes. Interested in knowing more about the features that will help you build with and extend WordPress? Then the WordPress 6.0 Field Guide might be for you.

\n\n\n\n
\n\n
\n\n\n\n

Over 500+ people in 58+ countries made WordPress 6.0 possible – Thank you!

\n\n\n\n\n\n\n\n

Happy 19th birthday, WordPress!

\n\n\n\n

Time flies, doesn’t it? Believe it or not, May 27 marked the 19th anniversary of WordPress’ first release! To celebrate, the community put together a special site (wp19.day) where contributors shared thoughts, videos, live shows, and more.

\n\n\n\n

You can still join the fun using the hashtag #WP19Day on social media, or even contribute photos of the swag you used to celebrate to the WordPress Photo Directory.

\n\n\n\n\n\n\n\n

New in Gutenberg

\n\n\n\n

Two new versions of Gutenberg were released last month:

\n\n\n\n
  • Gutenberg 13.2 shipped on May 11, 2022, and brings a new API to save editor preferences on the server, visual guides for padding and margins, and improvements to the Comment block.
  • Gutenberg 13.3 comes with a new Table of Contents block and a number of enhancements to existing blocks to provide more ways to display content, among other highlights. It was released on May 25, 2022.
\n\n\n\n\n\n\n\n

Team updates: Five for the Future, guidelines for in-person regional WordCamps, and more

\n\n\n\n
  • Following an earlier discussion on in-person regional WordCamps, the Community team announced new guidelines for these WordPress events.
  • The Five for the Future (5ftF) initiative is key to ensuring the future of the WordPress project. As part of the ongoing efforts to improve this initiative, Executive Director Josepha Haden suggested a definition for 5ftF pledges and contributions.
  • Tonya Mork posted a summary of the core test stats for WordPress 6.0.
  • The Meta and Theme Review teams shared an update on the work done over the past year to improve the theme review process. As a result, the average time for themes to be reviewed has decreased by 90%.
  • Josepha Haden kicked off a discussion post to gather feedback on the Community Code of Conduct section of the new Contributor Handbook.
  • On a similar note, the Community team created a new Incident Response Training. The course, which is live on Learn WordPress and considered a work in progress, addresses how WordPress contributors take and respond to code of conduct reports.
  • The Training team published new lesson plans, workshops, courses, and Social Learning Spaces on Learn WordPress. See what’s new.
  • The #WPDiversity working group organized several Allyship and Diverse Speaker Workshops in April. Attendees reported a 40% increase in public speaking confidence after attending the Speaker workshops. Stay tuned for the next events!
  • A summary of the 14th testing call of the Full Site Editing (FSE) Outreach program – “Rallying Recipe Reviewers” was recently published.
  • You can also find high-level feedback on the FSE Program in this May 2022 post.
  • Learn more about the projects the Design team contributed to over the past month.
  • Anne McCarthy hosted a Hallway Hangout to talk about various FSE pull requests and designs. The recording is available in this post
  • The May editions of the Meetup Organizer Newsletter and the Polyglots Monthly Newsletter were published.
  • The latest edition of People of WordPress features the story of Dee Teal.
\n\n\n\n\n\n\n\n

Open feedback/testing calls

\n\n\n\n
  • The Core team is working on ​​an experimental pull request (PR) to implement fluid typography. They welcome feedback on design, functionality, and API.
  • Version 20.0 of WordPress for Android and iOS is now available for testing.
  • Were you involved in the WordPress 6.0 release? Take some time to reflect on what you learned and participate with your feedback in this retrospective.
\n\n\n\n\n\n\n\n

WordCamp Europe is here!

\n\n\n\n
  • WordPress Foundation’s Kim Parsell Memorial Scholarship returns for WordCamp US 2022. Visit this post for more information.
  • The WordCamp US Call for Sponsors is now open.
  • Two more in-person WordCamps are happening this month:
  • The WordPress community is meeting today at WordCamp Europe (June 2-4) in Porto, Portugal. This edition celebrates the return to in-person events and the 10th anniversary of WCEU. For everyone heading to Porto, have a great WordCamp!
\n\n\n\n\n\n\n\n
\n\n\n\n

Have a story that we could include in the next issue of The Month in WordPress? Let us know by filling out this form.

\n\n\n\n

The following folks contributed to this Month in WordPress: @rmartinezduque, @laurlittle, @harishanker.

\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:\"12993\";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: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:29:\"People of WordPress: Dee Teal\";s: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/2022/05/people-of-wordpress-dee-teal/\";s: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, 31 May 2022 17:51:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a: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:8:\"Features\";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: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:3;a:5:{s:4:\"data\";s:10:\"Interviews\";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:9:\"HeroPress\";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:19:\"People of 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:35:\"https://wordpress.org/news/?p=12946\";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:90:\"This month\'s People of WordPress feature shares the story of Dee Teal, based in Australia.\";s: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:28:\"webcommsat AbhaNonStopNewsUK\";s: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:14883:\"\n

In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better. This month we feature a WordPress development and large project specialist on the difference the software and community can make to your career and life.

\n\n\n\n
\"\"
\n\n\n\n

Dee’s story with computers started at school in New Zealand where discovering how a mouse worked and learning BASIC and Pascal was a catalyst for what later became a programming career.

\n\n\n\n

At a time when computers were just becoming mainstream, there were no opportunities for girls in her school to consider this as a further option. She recalls: “No one thought to say, ‘Dee, you look like you’re good at this, you should pursue it…’. I mean, I was a girl (and I was told girls didn’t ‘do’ computers). No one in the circles I moved in really had any idea where this technology revolution would take us.”

\n\n\n\n

With no particular career path into technology, Dee was encouraged in her final year of school to apply for a job in a bank where she worked and became a teller three years later. She gained financial independence, which enabled her to travel as a 20-year-old and spend the next three years exploring the US and Europe.

\n\n\n\n

Looking back, she noted how the world had changed: the first computer mouse she had seen had come out in 1983, and 20 years later WordPress was founded.

\n\n\n\n

Journey into coding

\n\n\n\n

During those 20 years, Dee worked as a nanny, working in child care centers, in customer support, and as a temp.

\n\n\n\n

In 1999, she packed up her bags once again, and moved from New Zealand to Australia. She took a place at a performing arts school where she honed her singing and performance skills and volunteered her time to the music director who was starting to experiment with sending out HTML newsletters and updates via email.

\n\n\n\n

“And so my personal revolution began. On the day after I graduated from that course, I walked into a full-time role as that music director’s assistant and began my journey back to code.”

\n\n\n\n

As part of that job, Dee edited and sent HTML newsletters on a weekly basis. This ignited her interest in programming, and she bought books about coding for the web and experimented on her home-built PC making web pages.

\n\n\n\n
\n

“I’m sure, like a lot of us, I remember the thrill of creating that first HTML file and seeing a ‘Hello World’ or similar heading rendered in the browser. From there, I was completely hooked.”

\nDee Teal
\n\n\n\n

Later she moved to the IT department and took on maintenance of all the websites. By 2004, she was working full-time as a webmaster. A year later, she was running a small business creating sites on the side. Four years after that, her business became her full-time job as she left employment to pursue her Masters Degree in Digital Communication and Culture.

\n\n\n\n
\"Dee
Dee and other volunteers setting up for a local WordCamp
\n\n\n\n

Dee found the theory and sociology behind the web, and its facilitation of human and machine communication fascinating.

\n\n\n\n

She said: “I love the fact that the tech industry involves a constant constant curve of growth and discovery, which results in a perpetual exercise in finding creative elegant solutions for sticky problems.”

\n\n\n\n

For Dee, being able to use her innate curiosity to leverage processes, people, and tools, fuelled by a focus on communicating a message, has been a defining inspiration in her work.

\n\n\n\n

This combined fascination coincided with her meeting WordPress in 2009 and subsequently its community. She moved her existing blog to the software and it became the CMS of choice for all her client work.

\n\n\n\n

The WordPress community can change your world

\n\n\n\n

In 2011, she stumbled across WordCamps and by extension the WordPress community. Dee has reflected publicly that WordPress didn’t change her life, its community changed her world!

\n\n\n\n

She flew on a whim from her then home in Sydney to attend a WordCamp in Melbourne she had found after a search for ‘WordPress Conferences’.

\n\n\n\n

She said: “I met welcoming people, made friends, connected, and came back home excited and hopeful about continuing this connection with the wider WordPress community.”

\n\n\n\n

Building a community locally around WordPress got off to a slow start in Sydney. From an inauspicious early WordPress Sydney meetup in the function room of a pub, her connection and involvement took off. Before long she was helping organize that meetup, and by the time she moved away from that great city it had branched into two meetups, and soon after, into three.

\n\n\n\n

She was so inspired by the community that at the end of that first year and her second WordCamp, she raised her hand to help organize a WordCamp Sydney in 2012, and after moving interstate, WordCamp Melbourne in 2013.

\n\n\n\n
\n

“WordPress and any other software package exist to serve people.”

\nDee Teal
\n\n\n\n

Dee said: “WordPress, software, technology, the Internet will come and go, morph, and change, evolve. Maybe WordPress will last forever, maybe it will morph into something else, maybe one day it will look completely different than it did when I first started (actually, that’s true now). The thing that doesn’t change is the humanity around it. WordPress and any other software package exist to serve people.”

\n\n\n\n

She added: “The thing that I have learned, not only through WordPress but in life, is that if we too serve the people around what we’re doing, we ourselves will grow, develop and change alongside the people we serve, and the tools we use to serve them.”

\n\n\n\n
\"Dee
Some of the contributors to the WordPress 5.6 release
\n\n\n\n

Dee was a coordinator for WordPress 5.6 release in 2020 and was able to encourage others to learn about the process.

\n\n\n\n

Helping others and sharing knowledge through WordPress

\n\n\n\n

Dee has been an advocate for cross-cultural collaboration and understanding in both WordPress and her work for a large distributed agency which has people from more than 24 countries and operates across 16 timezones. She has also written about closing the gap between diverse distributed teams and how to meet the challenges of cross cultural remote work.

\n\n\n\n

Dee has given talks at WordCamps, including at WordCamp Europe in 2019, on developing ourselves, our relationships, and our communities in increasingly diverse environments.

\n\n\n\n

With a strong desire to share her professional knowledge and experience, Dee hopes her involvement in the WordPress community from being part of a Release Squad in the Core Team, and volunteering in the community through organizing and speaking at WordCamp events, will inspire others to get involved.

\n\n\n\n
\n

“It’s the connections, it’s the friendships. It’s the network of work, referrals, support, help and encouragement.”

\nDee Teal talking about the community that makes WordPress specialbenefits of the WordPress community
\n\n\n\n
\"Dee
Dee shared her experience with attendees at WordCamp Europe 2019
\n\n\n\n

In contributing to WordPress and organizing community events around it, Dee found that for her: “At the end of the day it isn’t actually WordPress that matters. It’s those connections, it’s the friendships. It’s the network of work, referrals, support, help, encouragement that has kept me wired into this community and committed to helping other people find that connection and growth for themselves.”

\n\n\n\n

Dee’s career in WordPress has moved through coding, into project management of large scale WordPress projects, and now into delivery leadership. Her connections to community have helped ‘fuel the transitions’ through these chapters of her life.

\n\n\n\n

She said: “I believe that the place I’ve found and the opportunities I have had owe as much to my own desire and ambition as they do to the help, support and belief of the community around me; sometimes even more than I’ve felt in myself.”

\n\n\n\n

She feels that she is ‘living proof’ that by helping, connecting, and resourcing other people, you can be helped, resourced and connected into places you had never thought possible.

\n\n\n\n

This has enabled her to reach and have a career in technology that she did not know existed as a teenager playing with that first computer mouse and experimenting with code. Dee hopes her story will inspire others in their journey.

\n\n\n\n

Share the stories

\n\n\n\n

Help share these stories of open source contributors and continue to grow the community. Meet more WordPressers in the People of WordPress series.

\n\n\n\n

Contributors

\n\n\n\n

Thanks to Abha Thakor (@webcommsat), Meher Bala (@meher), Chloe Bringmann (@cbringmann), Nalini Thakor (@nalininonstopnewsuk), and Larissa Murillo (@lmurillom) for work on this feature. Thank you to Josepha Haden (@chanthaboune) and Topher DeRosia (@topher1kenobe) for support of the series. Thank you too to @thewebprincess for sharing her experiences.

\n\n\n\n

This article is inspired by an article originally published on HeroPress.com, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories would otherwise go unheard.
Meet more WordPress community members in our People of WordPress series.

\n\n\n\n
\"HeroPress
\n

This People of WordPress feature is inspired by an essay originally published on HeroPress.com, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. #HeroPress

\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12946\";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:61:\"\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:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WP Briefing: Episode 32: An Open Source Reading List\";s: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://wordpress.org/news/2022/05/episode-32-an-open-source-reading-list/\";s: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, 30 May 2022 17: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";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:11:\"wp-briefing\";s: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://wordpress.org/news/?post_type=podcast&p=12940\";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:448:\"In the thirty-second episode of the WordPress Briefing, WordPress Executive Director Josepha Haden Chomphosy shares her open source reading list for that post-WordCamp Europe downtime. Have a question you’d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Credits Editor: Dustin Hartzler Logo: Beatriz Fialho Production: Santana Inniss and Chloé Bringmann Song: […]\";s: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:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/05/WP-Briefing-032.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s: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:\"Santana Inniss\";s: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:11975:\"\n

In the thirty-second episode of the WordPress Briefing, WordPress Executive Director Josepha Haden Chomphosy shares her open source reading list for that post-WordCamp Europe downtime.

\n\n\n\n

Have a question you’d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording.

\n\n\n\n

Credits

\n\n\n\n\n\n\n\n

References

\n\n\n\n\n\n\n\n

Transcript

\n\n\n\n\n\n\n\n

[Josepha Haden Chomphosy 00:00:00] 

\n\n\n\n

Hello everyone. And welcome to the WordPress Briefing. The podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it. As well as get a small list of big things coming up in the next two weeks. I’m your host Josepha Haden Chomphosy. Here we go!

\n\n\n\n

[Josepha Haden Chomphosy 00:00:40] 

\n\n\n\n

With the approach of various mid-year breaks and the prospect of wandering off for some safe, restorative travel, I’ve been updating my to-read and re-read list. As I was looking at the queued books for my Northern hemisphere summer, there were some common threads, mostly around leadership, but there’s also like a chunk that’s about cross-cultural group theory and economics, and then like some beach reads, but there’s one group in particular that you all might find interesting.

\n\n\n\n

And that’s a group that’s sort of like a back-to-FOSS basics list. So I’ll share my top few with you in case you want to pack a copy for your next getaway. 

\n\n\n\n

The first one on our list is called Producing Open Source Software by Karl Fogel. I think everyone who contributes to FOSS projects has received this as one of their first recommendations. Like, y’all are building open software? Excellent, you need to read Producing Open Source Software. Like, that is just a sentence that comes out of everyone’s mouths. So this was one of the first open source books that was recommended to me when I joined the WordPress community. It was freshly revised in 2020, and I haven’t given it a read since then, which is why it is on my reread list this year.

\n\n\n\n

[Josepha Haden Chomphosy 00:01:54]

\n\n\n\n

However, it shaped the early days of the WordPress project’s leadership, and their lead developers, and some of WordPress’s basic philosophies. It’s all available online, under a creative commons, ShareAlike license. And so it’s worth the read. I’ll put a link to it in the show notes so it’s easy for everyone to find in the event that is your preferred beach read.

\n\n\n\n

The second one on this list is a book from Nadia Eghbal. She wrote the excellent Roads and Bridges report that also is probably not light beach reading, but you know, this one is on my list to read this summer because Eghbal always delivers truths about the reality of maintaining popular software, popular, open source software, in a way that’s easy for me to access and process rather than getting paralyzed by the enormity of it all.

\n\n\n\n

For what it’s worth your mileage may vary on that. I realized that, like, I live and breathe open source stuff. And so just because I am not paralyzed by the enormity of her explanations of things doesn’t necessarily mean that you will have a similar experience. And so I’m just going to claim that elephant in the room for all of us.

\n\n\n\n

However, if you only read one book on this list this year, I think that this should be the one that you read.

\n\n\n\n

[Josepha Haden Chomphosy 00:03:14]

\n\n\n\n

The third one is called Code: Collaborative Ownership and the Digital Economy. It was edited by Rishab Aiyer Ghosh. I am certain that I butchered that name. And so I apologize on my own behalf to everyone that knows whether or not I said it correctly.

\n\n\n\n

This book focuses on intellectual property rights and the original purpose of having anything like copyright in the world. So, right up my alley! The writers who contributed to this work promise exploration of the plight of creativity in the commons, the role of sharing in creative advancement, and a concept of what it would look like if intellectual property were to mean the second closing of an ecosystem versus a triumph of the commons.

\n\n\n\n

I mean, obviously, this one is very light reading. You can take this topic to high tea and everyone will not know what you’re talking about. However, this one looks like a really interesting book to me and I am just super ready to read it. 

\n\n\n\n

[Josepha Haden Chomphosy 00:04:19]

\n\n\n\n

The second to last one on the list is a book called Humble Inquiry.

\n\n\n\n

This is a new-to-me book that seems right in line with one of my favorite books to recommend to leaders in the open source space. From reviews of it, I have gathered that it takes a hard look at the value of listening and asking for clarification in a world that puts a high value on an unsolicited hot take.

\n\n\n\n

It puts the importance of high trust relationship building, which is at the heart of any cross-culturally aware organization. And for folks who’ve been working with me for a while, you know, that relationship building is an important part of my leadership expectations for myself. So it puts relationship building at the front and center with a promise of practical applications for everyday life.

\n\n\n\n

And if you ever have tried to tackle a complicated topic like this, you know that practical applications are really hard to come by and it’s often hard to understand it if you don’t have those practical applications. And so that is why this one is on my read and reread list this year. 

\n\n\n\n

[Josepha Haden Chomphosy 00:05:24]

\n\n\n\n

And then finally the WordPress Milestones book.

\n\n\n\n

So this sounds like a shameless plug for WordPress. And on the one hand, this whole podcast is about WordPress. And so, yes! But on the other hand, I actually am reading this for two specific reasons. I’m rereading this actually. I read it when I first joined Automattic. And so the first of the two reasons that I’m rereading it this year is that volume two of this is, like the second decade of WordPress currently, being researched and written in preparation for WordPress’s 20th birthday next year. 

\n\n\n\n

So I am rereading this to kind of get that all back in my mind as that work is getting done. And the second reason is that I honestly like to remind myself of how far we’ve come sometimes. I talk about our work frequently. And I talk about what we’re working on right now, all the time.

\n\n\n\n

I talk about what we’re looking at three years from now, five years from now. The biggest concerns of today, tomorrow, and the future-future. And it’s very easy to forget how much success WordPress has had and how much growth the contributors that support us have had over the course of our long and storied history.

\n\n\n\n

[Josepha Haden Chomphosy 00:06:40]

\n\n\n\n

And so I like to go back to that just to kind of give myself some grounding in our progress, as well as get some concept for how we can move forward together. So that one is also available online. Also under a creative commons ShareAlike license and it is also worth the read. I will share a link to that with the other one in the show notes as well.

\n\n\n\n

That brings us now to our small list of big things. Let’s see what we got in the old lineup today. 

\n\n\n\n

So, firstly WordCamp Europe is happening this week and it’s possible to watch the live stream from the comfort of your own home. There are some smart and talented speakers at the event. So I encourage you to catch a few if you have the time. I’ll include a link to the live stream information in the show notes below, and then also you can always keep an eye out on Twitter. 

\n\n\n\n

There will be a lot of discussions, a lot of conversation there. And so you can engage with folks that are there at the time and catch up on those conversations, catch up on those presentations in your own time, as it fits into your day.

\n\n\n\n

[Josepha Haden Chomphosy 00:07:50]

\n\n\n\n

The second thing is that WordPress’s community team is preparing the annual meetup survey right now. So if you participate in meetup events, keep an eye out for that because your feedback helps us to make plans to improve that program so that it works better for you. And it helps you to learn WordPress better and feel more confident with what you are taking out into the world that way.

\n\n\n\n

But, if you are wanting to use this as a chance to contribute, we actually will need folks who are able to translate the surveys as well. So I’ll leave a link to some information about that in the show notes. If all of that stuff about contribution didn’t make any sense, then just like keep an eye out from your meetup organizer and they will make sure that you have that survey so that you can have your voice heard. 

\n\n\n\n

[Josepha Haden Chomphosy 00:08:33]

\n\n\n\n

And then item three is less of an item. I mean, it’s an item cause it’s in this list, but it’s less of, like, a thing to know and more of a general thing to be aware of. It’s a general awareness item. There’s a lot going on in WordPress right now. I can see how hard it is to keep track of some of these things these days.

\n\n\n\n

And I know as someone who’s looking at this all day every day that, yeah, it’s a lot. And it’s hard to get your bearings. So if you have a team that you contribute to already, don’t forget to reach out to each other, just to check-in. Sometimes we don’t think to ask for help. Sometimes we don’t think to offer help and you know, if no one needs any help from you at that moment, a little hello also can brighten someone’s day.

\n\n\n\n

And that, my friends, is your smallest of big things. Thank you for tuning in today for the WordPress Briefing. I’m your host, Josepha Haden Chomphosy. And I’ll see you again in a couple of weeks.

\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:\"12940\";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: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:26:\"WordPress 6.0 “Arturo”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2022/05/arturo/\";s: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, 24 May 2022 20:01:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{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:\"6.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: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=12879\";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:278:\"Say hello to “Arturo” and WordPress 6.0, inspired by Grammy-winning jazz musician, Arturo O’Farrill. With nearly 1,000 enhancements and bug fixes, the second major release of 2022 is here. Download it now! As of today, WordPress powers more than 42% of websites worldwide.\";s: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:\"Matt Mullenweg\";s: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:58303:\"\n
\"WordPress
\n\n\n\n

Welcome to “Arturo”

\n\n\n\n

Say hello to “Arturo” and WordPress 6.0, inspired by Grammy-winning jazz musician, Arturo O’Farrill. Known for his influence on contemporary Latin jazz, Arturo has pressed more than 15 albums spanning a body of work across five decades. 

\n\n\n\n

Take some time to explore WordPress 6.0, built to help you unlock your creative aspirations and make your site-building experience more intuitive. And check out some of Arturo’s inspirational sounds that span Afro Cuban jazz, contemporary Latin jazz, and so much more.

\n\n\n\n

With nearly 1,000 enhancements and bug fixes, the second major release of 2022 is here. Download it now! As of today, WordPress powers more than 42% of websites worldwide.1

\n\n\n\n

Site owners and administrators should upgrade to take full advantage of the many stability, performance, and usability enhancements today. WordPress content creators will enjoy a suite of new features geared toward improving the writing and designing experiences.

\n\n\n\n

Expanding Gutenberg into a full site editing experience in WordPress means that all of the problems the community had to address were complex and far-reaching. WordPress 6.0 is an example of the community’s commitment to tackling these tough challenges together. With thoughtful updates to the writing experience, building better block functionality, and adding a new intuitive style switcher, I’m really proud of the work that’s been done in this release to make a great site editing experience.

Josepha Haden Chomphosy, Executive Director
\n\n\n\n\n\n\n\n

What’s Inside

\n\n\n\n
\"Selecting
\n\n\n\n

Enhanced Writing Experience

\n\n\n\n

Writing improvements abound, whether you’re writing a brand new post or adding elements to an existing page. Explore more ways to streamline your content creation process, including:

\n\n\n\n
  • Select text across multiple blocks for easier copying and pasting.
  • Type two open brackets `[[` to quickly access a list of recent posts and pages.
  • Keep existing styles when you transform some blocks from one kind to another—from a Paragraph block to a Code block, for instance.
  • Create customized buttons and any new buttons you make will retain the style customizations automatically.
  • Make tag clouds and social icons even more appealing with updated settings and controls, and a new outline style for the tag cloud.
\n\n\n\n
\"Style
\n\n\n\n

Style Switching 

\n\n\n\n

Block themes now include the option to contain multiple style variations. This expands the new Style system even further and enables shortcuts to switch the look and feel of your site all within a single theme. In block themes that support this feature, you can change both the available settings, like the font-weight, and the style options, like the default color palette. Change the look and feel of your site with just a few clicks.

\n\n\n\n
\"Popover
\n\n\n\n

More Template Choices

\n\n\n\n

WordPress 6.0 includes five new template options for block themes: author, date, categories, tag, and taxonomy. These additional templates provide greater flexibility for content creators. Tailor each with the tools you already know or with the following new options in this release: 

\n\n\n\n
  • Featured images can be used in the cover block.
  • New featured image sizing controls make it easier to get the results you want.
  • While editing a template, at the root, or between blocks, the quick inserter shows you patterns and template parts to help you work faster and discover new layout options.
  • The query block supports filtering on multiple authors, support for custom taxonomies, and support for customizing what is shown when there are no results.
\n\n\n\n
\"Browsing
\n\n\n\n

Integrated Patterns

\n\n\n\n

Patterns will now appear when you need them in even more places, like in the quick inserter or when creating a new header or footer. If you’re a block theme author, you can even register patterns from the Pattern Directory using `theme.json`, enabling you to prioritize specific patterns that are most helpful to your theme’s users.

\n\n\n\n

Additional Design Tools

\n\n\n\n

Design tools grow more powerful and intuitive with each release. Some highlights for 6.0 include: 

\n\n\n\n
  • A new color panel design saves space, but still shows your options at a glance. 
  • New border controls offer a simpler way to set your border exactly as you like it. 
  • Transparency levels for your colors allow for even more creative color options.
  • Control gaps, margins, typography, and more on a collection of blocks, all at once, in the Group block.
  • Switch between stack, row, and group variations to position groups of blocks with more layout flexibility.
  • Use the gap support functionality in the Gallery block to create different looks – from adding spacing between all images, to removing spacing altogether.
\n\n\n\n
\"Selecting
\n\n\n\n

Better List View

\n\n\n\n

New keyboard shortcuts enable you to select multiple blocks from the list view, modify them in bulk, and drag and drop them within the list. List View can be opened and closed easily; it comes collapsed by default and it automatically expands to the current selection whenever you select a block. 

\n\n\n\n
\"Unlocking
\n\n\n\n

Block Locking Controls

\n\n\n\n

Now you can lock your blocks. Choose to disable the option to move a block, remove a block, or both. This simplifies project handover, allowing your clients to unleash their creativity without worrying about accidentally breaking their site in the process.

\n\n\n\n

Improved Performance in WordPress 6.0

\n\n\n\n

This release includes several updates focused on improving the performance of WordPress. These enhancements cover a range of performance areas including improving the page and post-load speed, reducing the execution time of various query types, caching, navigation menus, and much more. The performance team working group is an important focus area of the core development team. For more information on this group’s work, please follow their work on Making WordPress with the #performance hashtag.

\n\n\n\n

Enhancing WordPress 6.0 Accessibility

\n\n\n\n

Accessibility is an integral part of the WordPress mission of fostering an inclusive community and supporting users of all types around the world. With this in mind, WordPress 6.0 includes more than 50 updates specifically focused on enhancing the accessibility of the platform. You can read about these updates and learn more about the accessibility initiatives that are ongoing.

\n\n\n\n

Learn More About WordPress 6.0

\n\n\n\n

See WordPress 6.0 in action! Watch a brief overview video highlighting some of the major features debuting in WordPress 6.0.

\n\n\n\n
\n\n
\n\n\n\n

Explore learn.wordpress.org for quick how-to videos and lots more on new features in WordPress. Or join a live interactive online learning session on a specific WordPress topic.

\n\n\n\n

Developers can explore the WordPress 6.0 Field Guide. It is overflowing with detailed developer notes to help you build with and extend WordPress.

\n\n\n\n

Read the WordPress 6.0 Release Notes for more information on the included enhancements and issues fixed, installation information, developer notes and resources, release contributors, and the list of file changes in this release.

\n\n\n\n

The WordPress 6.0 Release Squad

\n\n\n\n

The group listed below tirelessly supported the release, from conception to ship date, and beyond:

\n\n\n\n\n\n\n\n

Thank you to 500+ Contributors

\n\n\n\n

WordPress 6.0 would not have been possible without the contributions of more than 500 people in at least 58 countries. Their asynchronous coordination to deliver hundreds of enhancements and fixes into a stable release is a testament to the power and capability of the WordPress community.

\n\n\n

Aaron Jorbin · Aaron Robertshaw · Abdullah Ramzan · Abha Thakor · Adam Silverstein · Adam Zielinski · Addie · adi64bit · Adil Öztaşer · Adil Ali · agepcom · Ahmed Chaion · Aki Hamano · Akira Tachibana · Alain Schlesser · Alan Jacob Mathew · alansyue · Albert Juhé Lluveras · albertomake · Alefe Souza · Aleksandar Kostov · Alex Concha · Alex Lende · Alex Mills · Alex Stine · aliakseyenkaihar · Alkesh Miyani · Alok Shrestha · Amanda Giles · Andrea Fercia · Andrei Draganescu · Andrei Surdu · Andrew Dixon · Andrew Nacin · Andrew Ozz · Andrew Serong · Andrey \"Rarst\" Savchenko · André · Andy Fragen · Angelika Reisiger · Ankit K Gupta · Anne McCarthy · Anoop Ranawat · Anthony Burchell · Anthony Ledesma · Anton Vlasenko · antonrinas · Antony Booker · arcangelini · Ari Stathopoulos · Arne · Arpit G Shah · artdecotech · ArteMa · Arthur Chu · Asaquzzaman mishu · atomicjack · Aurélien Joahny · Aurooba Ahmed · Barry · Barry Ceelen · Bartosz Gadomski · Beda · Ben Dwyer · Benachi · Bernie Reiter · BettyJJ · Bhrugesh Bavishi · binarymoon · Birgir Erlendsson (birgire) · Birgit Pauli-Haack · Blair Williams · BlogAid · Boone Gorges · Brandon DuRette · Brandon Kraft · Brian Alexander · bronsonquick · Brooke Kaminski · Brooke. · Bruno Ribaric · caraya · Carlos Bravo · Carlos Garcia · Carolina Nymark · cbigler · Chad Chadbourne · Channing Ritter · charleyparkerdesign · charlyox · Chintan hingrajiya · Chloe Bringmann · Chouby · Chris Lubkert · Chris Van Patten · chriscct7 · clonemykey · Colin Stewart · conner_bw · Cory Hughart · Courtney Robertson · Crisoforo Gaspar · Dan Soschin · Daniel Bachhuber · Daniel Iser · Daniel Richards · danieldudzic · darerodz · Darren Coutts · Dat Hoang · Dave Smith · David Baumwald · David Biňovec · David Calhoun · David Gwyer · David Herrera · David Shanske · Deb Nath Utpol · Delowar Hossain · denishua · Dennis Claassen · Dennis Snell · Dhanendran · Dharmesh Patel · dhusakovic · Dilip Bheda · Dion Hulse · Dominik Schilling · donmhico · drago239 · Drew Jaynes · dromero20 · Eddy · ehtis · Eliezer Peña · Ella van Durpe · Emmanuel Hesry · Enrico Battocchi · eric3d · Erik Betshammar · espiat · estelaris · etaproducto · EverPress · Fabian Kägy · Fabio Blanco · Faison · Felipe Elia · Felix Arntz · Femy Praseeth · Florian Brinkmann · Florian TIAR · FolioVision · Francesca Marano · Francisco Vera · frankei · furi3r · Gabriel Rose · gadhiyaravi · Garrett Hyder · Garth Mortensen · Gary Jones · Gary Pendergast · genosseeinhorn · George Hotelling · George Mamadashvili · George Stephanis · Gerardo Pacheco · Glen Davies · Grégory Viguier · Grant M. Kinney · Greg Ziółkowski · gregoiresailland · Guido Scialfa · gumacahin · gvgvgvijayan · Hareesh S · Hasanuzzaman · Hasnain Ashfaq · Hauwa Abashiya · Haz · Helen Hou-Sandi · HelgaTheViking · Henry Wright · Hilay Trivedi · Hitendra Chopda · HristoK · Hugh Lashbrooke · huubl · Héctor Prieto · Ian Belanger · Ian Dunn · ianatkins · ianmjones · ImanGM · imokol · Isabel Brison · ishitaka · itsamoreh · Iulia Cazan · Ivan Lutrov · jadpm · Jake Spurlock · jakeparis · James Koster · Jamie VanRaalte · Jan Weiss · janh2 · Jarret · Jason Johnston · Jason LeMahieu (MadtownLems) · Javier Arce · Javier Prieto · Jay Trees · jazbek · Jean-Baptiste Audras · Jeff Bowen · Jeff Matson · Jeff Ong · Jeff Paul · Jenny Dupuy · Jenny Wong · Jeremy Felt · Jeremy Herve · Jeremy Yip · Jez Emery · jhned · jhnstn · jigar bhanushali · jiteshdhamaniya · jnz31 · Joe Dolson · Joe McGill · Joen Asmussen · Johannes Kinast · John Blackbourn · John James Jacoby · John Regan · John Watkins · Jon Brown · Jonathan Champ · Jonathan Desrosiers · jonmackintosh · Jonny Harris · Jono Alderson · Jorge · Jorge Costa · José Arcos · Josepha · Josepha Dambul · Joshua Fredrickson · Joy · jrivett · jsnajdr · juanlopez4691 · JuanMa Garrido · Juliette Reinders Folmer · Junaid Ahmed · Justin Ahinon · Justin Busa · Justin Tucker · KafleG · Kai Hao · Kajal Gohel · kapacity · Kapil Paul · karolinakulinska · Kaspars · Kelly Choyce-Dwan · Kemory Grubb · Kerry Liu · Kev Provance · Kevin Batdorf · Kharis Sulistiyono · Kirtan Gajjar · Kjell Reigstad · KMix · Knut Sparhell · Konrad.K · Konstantin Obenland · kpegoraro · kubiq · Kukhyeon Heo · laurlittle · Lena Morita · lenasterg · leskam · Lew Ayotte · Linkon Miyan · linux4me2 · Lisa Schuyler · lkraav · Louis · Lovekesh Kumar · Lovro Hrust · Lucas Karpiuk · Luis Felipe Zaguini · luisherranz · Luke Cavanagh · Lukman Nakib · M. van Dam · macbookandrew · Maciej · Maggie Cabrera · maguijo · Mahbub Hasan Imon · malthert · manfcarlo · Manzur Ahammed · Marcelo de Moraes Serpa · Marco Ciampini · Marcus Kazmierczak · Marin Atanasov · Marius L. J. · Mark Jaquith · Markus Kosmal · marv2 · Mary Baum · Mat Lipe · Mathieu · Matias Ventura · matiasbenedetto · Matt Chowning · Matt Martz · Matt Mullenweg · Matt Royal · Matt Stoney · Matt Wiebe · maur · Mauriac AZOUA · Max Kellermann · Mehedi Foysal · Meher Bala · mgol · Michael Burridge · Michal Czaplinski · Miguel Fonseca · Mike Auteri · Mike Schroder · miken32 · Milan Dinić · Milana Cap · Minal Diwan · Mirco Babini · MMDeveloper · Mohadese Ghasemi · Mohammad Ahsan Habib · Mohammad Rockeybul Alam · MohammadJafar Khajeh · Morten Rand-Hendriksen · moushik · mqudsi · Muhammad Faizan Haidar · Mukesh Panchal · Mustaque Ahmed · Nabil · Nagesh Pai - a11n · Nalini Thakor · Nathan · navigatrum · Nayana Maradia · Nicholas Garofalo · Nick Ciske · Nick Diego · Nicolas Juen · nidhidhandhukiya · Nik Tsekouras · Nil · nmschaller · Noah Allen · oakesjosh · oguzkocer · Olga Gleckler · Oliver Campion · Omar Alshaker · opr18 · Otshelnik-Fm · overclokk · ovidiul · Paal Joachim Romdahl · Pablo Honey · Paolo L. Scala · Paragon Initiative Enterprises · Pascal Birchler · Paul Bearne · Paul Biron · Paul Ryan · Paul Von Schrottky · paulkevan · Pavan Patil · Pavlo · pbking · Pedro Mendonça · Petar Ratković · Peter Smits · Peter Westwood · Peter Wilson · petitphp · petrosparaskevopoulos · Petter Walbø Johnsgård · pgpagely · Phil Johnston · Pieterjan Deneys · pikamander2 · Piotrek Boniu · Pooja Derashri · Pooja N Muchandikar · Pravin Parmar · Presskopp · presstoke · Priyank · pypwalters · r-a-y · Rachel Baker · Rafi Ahmed · Ramanan · Ramon Ahnert · Ramon James · Ramona · Ravi Vaghela · Ravikumar Patel · Razvan Onofrei · Rehan Ali · Remy Perona · Riad Benguella · Rian Rietveld · Rich Tabor · Richard B. Kreckel · ricomoorman · Rob Scott · Robert Anderson · Rolf Allard van Hagen · Rolf Siebers · Rostislav Wolný · Rufus87 · Ryan Boren · Ryan Fredlund · Ryan McCue · Ryan Welcher · Sébastien SERRE · Sören Wrede · Sabbir Ahmed · Sabbir Hasan · Sami Falah · Sami Keijonen · Sanjeev Aryal · santosguillamot · Sarah Norris · Sarah Snow · sarayourfriend · Sathiyamoorthy V · Sayedul Sayem · sbossarte · sclayf1 · Scott Buscemi · Scott Reilly · Scott Taylor · Sergey Biryukov · sheepysheep60 · Shital Marakana · Shreyas Ikhar · siddharth ravikumar · Siddharth Thevaril · silb3r · Simon Blackbourn · Simon Prosser · simonhammes · Siobhan · Smit Rathod · snapfractalpop · socalchristina · Spencer Cameron-Morin · stacimc · stefanfisk · Stefano Lissa · Stefano Minoia · Stefanos Togoulidis · Stephen Bernhardt · Stephen Edgar · Stephen Harris · Steve Grunwell · Subrata Sarkar · Sumit Singh · Sumit Singh (WP Lovers) · Sumon Sarker · SunilPrajapati · sunyatasattva · Sven Wagener · Sybre Waaijer · Synchro · Takashi Kitajima · Tammie Lister · Teddy Patriarca · tharsheblows · Theo H · Thimal Wickremage · Thomas McMahon · Thomas Patrick Levy · Thomas Pike · Till Krüss · Tim Blankenship · Tim Nolte · Timothy Jacobs · tobifjellner (Tor-Bjorn Fjellner) · Tom · Tom Rhodes · Tomasz Tunik · Tomek · Tomoki Shimomura · Tony Tahmouch · Tonya Mork · Toro_Unit (Hiroshi Urabe) · Torsten Landsiedel · Tracy · Tran Ngoc Tuan Anh · trex005 · Trinadin · tszming · tumas2 · twstokes · Tynan Beatty · tzipporahwitty · Uday Kokitkar · ugljanin · Ugyen Dorji · Ulrich · Utkarsh · valer1e · versusbassz · Vicente Canales · Vishal Kumar · vlad.olaru · Volodymyr Kolesnykov · vortfu · WebMan Design | Oliver Juhas · Wendy Chen · Wes Theron · Weston Ruter · whoisnegrello · Will Skora · wpmakenorg · wpsoul · WraithKenny · wslyhbb · Xidorn Quan · Yui · Yunus Ertuğrul · yuu · Zebulan Stanphill · znuff · Česlav Przywara

\n\n\n\n

By release day, 76 locales had translated 90-percent or more of WordPress 6.0 into their language. Community translators continue after a release ensuring more translations are on their way. Thank you to everyone who helps to make WordPress available in 205 languages.

\n\n\n\n

Many thanks to all of the community volunteers who contribute to the support forums by answering questions from WordPress users around the world.

\n\n\n\n

If contributing to WordPress appeals to you, it’s easy to learn more and get involved. Discover the different teams that come together to Make WordPress and explore the product roadmap on the core development blog.

\n\n\n\n

The WordPress Mission & You

\n\n\n\n

WordPress is software designed for everyone, emphasizing accessibility, performance, security, and ease of use. The project believes great software should work with minimum setup, so you can focus on sharing your story, product, or services freely. The basic WordPress software is simple and predictable so you can easily get started. It also offers powerful features for growth and success.

\n\n\n\n

WordPress believes in democratizing publishing and the freedoms that come with open source. Supporting this idea is a large community of people collaborating on and contributing to this project. The WordPress community is welcoming and inclusive. Our contributors’ passion drives the success of WordPress which, in turn, helps you reach your goals.

\n\n\n\n

Learn more about WordPress and how you can join our community to help shape the future of the world’s most popular website platform.

\n\n\n\n
\n\n\n\n

A Release Haiku

\n\n\n\n

Six-point-oh is here
Time to download and upgrade
Let’s pause, celebrate

\n\n\n\n
\n\n\n\n

According to W3Techs as of May 5, 2022.

\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:\"12879\";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: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:65:\"WordPress 6.0 Release Candidate 3 (RC3) Now Available for Testing\";s: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:99:\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-3-rc3-now-available-for-testing/\";s: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, 17 May 2022 16:39:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{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: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:2;a:5:{s:4:\"data\";s:3:\"6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a: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: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=12866\";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:166:\"WordPress 6.0 Release Candidate 3 is now available for testing! You can download and help test RC3 in three ways. 6.0 is planned for general release on May 24, 2022.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:4240:\"\n

WordPress 6.0 is scheduled for release next week on May 24, 2022! This RC3 release is the final opportunity for you to test and help contribute to making the 6.0 release great.

\n\n\n\n

You can view changes since the RC2 release via Gutenberg and Trac.

\n\n\n\n

Installing RC3

\n\n\n\n

This version of the WordPress software is under development. Please do not install, run, and test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you install RC3 on a test server and site. 

\n\n\n\n

You can test WordPress 6.0 RC3 in three ways:

\n\n\n\n

Option 1: Install and activate the WordPress Beta Tester plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).

\n\n\n\n

Option 2: Direct download the release candidate (zip).

\n\n\n\n

Option 3: When using WP-CLI to upgrade from Beta 1, 2, 3, 4, RC1, or RC2 on a case-insensitive filesystem, please use the following command:

\n\n\n\n

wp core update --version=6.0-RC3

\n\n\n\n

Plugin and Theme Developers

\n\n\n\n

All plugin and theme developers are encouraged to complete testing of their respective extensions against WordPress 6.0 RC3 and update the “Tested up to” version in their readme file to 6.0 this week. If you find compatibility problems, please be sure to post detailed information to the support forums, so these items can be investigated further prior to the final release date of May 24.

\n\n\n\n

Review the WordPress 6.0 Field Guide, for more details on this release.

\n\n\n\n

Review additional information on the full 6.0 release cycle.

\n\n\n\n

Check the Make WordPress Core blog for 6.0-related developer notes in the coming weeks which will detail upcoming changes.

\n\n\n\n

Translate WordPress

\n\n\n\n

Do you speak a language other than English? Help translate WordPress into more than 100 languages.

\n\n\n\n

How to Help Test WordPress

\n\n\n\n

Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this detailed guide that will walk you through how to get started.

\n\n\n\n

If you think you have run into an issue, please report it to the Alpha/Beta area in the support forums. If you are comfortable writing a reproducible bug report, you can file one on WordPress Trac. This is also where you can find a list of known bugs.

\n\n\n\n
\n\n\n\n

RC3, An (Almost) Final Haiku

\n\n\n\n

It’s near time for six
The reward is the journey
Just one week to go

\n\n\n\n
\n\n\n\n

Thank you to the following contributors for collaborating on this post: @dansoschin, @webcommsat

\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:\"12866\";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:61:\"\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:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"WP Briefing: Episode 31: Open Source & Accessibility– Celebrating Global Accessibility Awareness Day With Guest Joe Devon\";s: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:140:\"https://wordpress.org/news/2022/05/episode-31-open-source-accessibility-celebrating-global-accessibility-awareness-day-with-guest-joe-devon/\";s: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, 16 May 2022 12: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";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:11:\"wp-briefing\";s: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://wordpress.org/news/?post_type=podcast&p=12855\";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:392:\"In the thirty-first episode of the WordPress Briefing, GAAD Co-Founder Joe Devon joins WordPress Executive Director Josepha Haden Chomphosy to discuss Global Accessibility Awareness Day and the role of open source in accessibility. Have a question you’d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording. Credits Guest: Joe […]\";s: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:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/05/WP-Briefing-031.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s: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:\"Chloe Bringmann\";s: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:33186:\"\n

In the thirty-first episode of the WordPress Briefing, GAAD Co-Founder Joe Devon joins WordPress Executive Director Josepha Haden Chomphosy to discuss Global Accessibility Awareness Day and the role of open source in accessibility.

\n\n\n\n

Have a question you’d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording.

\n\n\n\n

Credits

\n\n\n\n\n\n\n\n

References

\n\n\n\n\n\n\n\n

Transcript

\n\n\n\n\n\n\n\n

[Josepha Haden Chomphosy 00:00:00] 

\n\n\n\n

Hello everyone. And welcome to the WordPress Briefing. The podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I’m your host Josepha Haden Chomphosy. Here we go!

\n\n\n\n

[Josepha Haden Chomphosy 00:00:40] 

\n\n\n\n

Y’all, we’ve got an absolutely jam-packed couple of weeks in WordPress. We’ve got events happening and releases shipping and contributor days being coordinated (I almost said contributor days being contributed). That’s also what they’re doing. I’ll share some of those highlights in today’s small list of big things, but I did want to specifically call out something that’s coming up this week on Thursday (May 19, 2022), and that something is Global Accessibility Awareness Day.

\n\n\n\n

The team of contributors over on the Accessibility team has participated in the Global Accessibility Awareness Day in the past. So I thought it would be interesting to hear from one of the co-founders of this particular day of awareness.

\n\n\n\n

[Josepha Haden Chomphosy 00:01:27] 

\n\n\n\n

All right. And with that, Joe Devin, would you like to tell us a little bit more about yourself? 

\n\n\n\n

[Joe Devon 00:01:34]

\n\n\n\n

Sure. So I am the co-founder of Global Accessibility Awareness Day, which is a day that goes viral every year on the third Thursday of May. We typically have the Twitter reach on the GAAD hashtag on Twitter of 200 million users, which is, I think, pretty much their active user count. We stopped counting once we hit their daily active user count.

\n\n\n\n

And then, I am Chair of the GAAD Foundation, which we launched last year. And then I have a day job too, where I’m CEO and co-founder of Diamond, which is an inclusive digital agency that builds software accessibly by default.

\n\n\n\n

[Josepha Haden Chomphosy 00:02:15] 

\n\n\n\n

Wonderful. Well, we are so excited to have you today. I said we like it’s me and the mouse in my pocket—we in the WordPress community that’s going to listen to this. Super excited to have you today. So you mentioned GAAD, Global Accessibility Awareness Day. Last year was your 10th anniversary, which is very exciting, but like with so many good things, I hear it all started with a blog post and a blog post on WordPress, no less.

\n\n\n\n

So I’d love to hear about how GAAD evolved from that, with, as I understand it, your co-founder of Jennison (Asuncion). That must be where you met him, I assume.

\n\n\n\n

[Joe Devon 00:02:51]

\n\n\n\n

Yes. Yes. So what happened was I started a WordPress blog called My SQL Talk. So it’s a database blog, and I just thought it was a brilliant name. I mean, My SQL Talk, like that, should be super popular.

\n\n\n\n

And it probably had maybe ten people who ever looked. Um, and then my dad was getting older, and my dad was a survivor of the concentration camps, and he was a genius. He spoke ten languages. It, he was one of those people. That, when he walked into a room, he just commanded respect. You knew that there was history. I don’t know how to explain it really, but it was special when my dad walked into the room. And considering all of this that he suffered in his life, watching him get older and struggle, particularly with his banking, was very painful to see. And the bank wasn’t accessible, so I wrote this blog post proposing that we create a Global Accessibility Awareness Day.

\n\n\n\n

Sometimes I get these visions, and they never turn into anything. But while I think about it, I’m like, “all right, let’s write this blog post and this can definitely work. Right?” And then you finish the blog post to hit send, and you’re like, “this is not going to work.”

\n\n\n\n

But I wasn’t even smart enough to do social media on it. But fortunately, WordPress had an auto-tweet feature, and it tweeted it out, and Jennison Asuncion, my co-founder, happened to be around and not out that Saturday night. And he read the blog post, and he said, “this is a great idea. Let’s make it happen.”

\n\n\n\n

And we had two busy people, but we both had a community. He had the accessibility community, and I was building a tech scene in Los Angeles. And what I discovered is if you combine a great idea with the community, great things can happen.

\n\n\n\n

[Josepha Haden Chomphosy 00:04:49]

\n\n\n\n

Oh man, you’re speaking my language over here, helping people find their communities, knowing that community is the thing that is the lifeblood of society.

\n\n\n\n

That sounded like a tautology. It is not a tautology. You can have a society with an attempt to not have any sort of community around it, but I bet it doesn’t work very well. Well, that’s, that’s very interesting. And so you all just kind of talked through what that would look like, I assume in confidence, or that would have to take place, right? Or was it on Twitter in those days? 

\n\n\n\n

[Joe Devon 00:05:24]

\n\n\n\n

Oh, you could still look in the comments and see the back and forth of Jennison and a bunch of other people that got pretty involved with GAAD that are some legendary folks in there. It’s kind of mind-blowing because I dunno how, how you feel, but for me, when I used to code, uh, three months later, I’d look back at old code and be like, “oh, I suck,” you know, or write an email even and you look back on it a day later and are like “what a stupid email, how stupid am I?” You know? But I look back on that one after ten years; I was scared to look at it because I’m like, it must’ve been really bad. But you know, it kind of held up, and exactly what I wrote in there happened – to my utter shock.

\n\n\n\n

[Josepha Haden Chomphosy 00:06:06]

\n\n\n\n

But also, it’s kinda nice, though, to look back and be like, “oh, I used to be much dumber.”

\n\n\n\n

Cause then you’re like, look how far I’ve come. I’m no longer that dumb. I’m a different kind of dumb now; good for me. I always hope to be a different kind of dumb as I go forward.

\n\n\n\n

So then, okay, so that was your ten-year anniversary last year. GAAD, in general, now has been going on for 11 years, and at the time of this recording, in a couple of weeks, but then probably a week when it finally publishes, you have your next, your next round of that going.

\n\n\n\n

I think it seems safe to assume that awareness of the need for accessibility has increased during that time, but we all know that the work of accessibility is ongoing. And so, I’m just curious to hear from your perspective if the awareness of the need for accessibility has generally started to permeate developer communities.

\n\n\n\n

And are you seeing more developer awareness around the need for accessibility in tech in general? 

\n\n\n\n

[Joe Devon 00:07:12]

\n\n\n\n

Yeah. You know, it’s not enough. It’s certainly improved a lot. I keynoted a conference probably four years after GAAD started, maybe five, and I kind of assumed nobody would have heard of accessibility, and I was taken aback when I asked who had heard of it, and a good chunk of the room had. So even then, there had been a difference, and I’d say now I see accessibility mentioned a lot more in conferences and stuff. But when it comes to actually building it, there’s a tremendous amount of ignorance. There, there still needs to be a lot more awareness.

\n\n\n\n

And I think partially people are a little bit scared to dip their toe because they’re scared that they’re going to be told that “no, it’s not accessible,” or that they’re going to say the wrong word or offend somebody. So I’d say that there’s some degree of trepidation, but also developers, and it’s not just developers, designers, and product people. There’s so much to learn, and it’s like, “oh God, there’s another piece that I have to learn.”

\n\n\n\n

And I’m so glad that you invited me on this podcast because it’s the developers that, you know, I am a developer, not anymore, I haven’t touched code in years, but that’s where I came from. Right? This is my peach, right? Particularly WordPress folks, because I had done a fair bit of WordPress before I moved on to some other things. And, I think we have to talk about usability and understand that accessibility is so much more than how we look at disability.

\n\n\n\n

And if you don’t mind, I’m going to ask you a question. How do you think the typical WordPress developer or designer would define disability?

\n\n\n\n

[Josepha Haden Chomphosy 00:09:05]

\n\n\n\n

in the kinds of conversations that I’ve had over the years, it frequently has to do with visual things. Because it’s just screens all day, right? And that’s a primary area where our designers and developers really have made some effort.

\n\n\n\n

But my personal favorite sort of, of example, for like, when you’re looking at how to make sure that your products are accessible is, what, if you have to use your website, or you have to build your website using only one arm. Because that gives you an opportunity to kind of look at disability from a permanent standpoint.

\n\n\n\n

Like if you have lost permanent use of one arm, but also gives you an opportunity to look at the temporary options for that sort of lack of mobility. Like you’re a mother with an infant, and so you have to be able to, you know, get your stuff done with one arm. And so I know that we paid a bunch of attention to screen readers and what works in not way back in 2018 and 2019 did a lot of work with. Literally zero screen. And can you still do the thing that you need to do, which was incredibly difficult. And I was really excited to see what our developers came up with around that. But I think that that is quite a bit of that discussion as we’re going through it from the beginning to the end.

\n\n\n\n

[Joe Devon 00:10:27]

\n\n\n\n

Yeah. I mean, that’s a great answer, and you definitely understand some of the nuances way better than I think that the average creator, digital product creator, I’m including the, you know, the product people, the designers, and the developers. 

\n\n\n\n

[Josepha Haden Chomphosy 00:10:42]

\n\n\n\n

We’re very fortunate to have more than just developers in WordPress.

\n\n\n\n

[Joe Devon 00:10:50]

\n\n\n\n

The reason I bring this up is that the WHO (World Health Organization) had to; they’re the ones that did massive research across the globe. And they had to, they had to come up with a definition, and in their definition, they needed to draw a line. Typically, I don’t remember the exact thing cause it’s a 350-page report, and I kept looking for where they defined it again.

\n\n\n\n

It was a little hard to find, but essentially it’s if there’s a major disability or a disability that impacts some significant portion of your day-to-day activities. And that’s really great when you’re trying to do a report on how many disabilities there are out there; what percentage of the population has a disability?

\n\n\n\n

And their figures are something like 15% of the population has a disability, which is a huge number. But at the same time, they also mentioned that 2.2 billion people have a visual impairment. And we also know that over 33% of the population is over 50, and I’m included in that population. And I can say that when you’re over 50, you know, I’ve got clouds in my eyes.

\n\n\n\n

I don’t know where they came from, but they definitely make it harder to see. When I’m in a restaurant, I can’t focus on the person across from me the same way. My hearing is not the same, and anybody over 50 is going to have certain impairments and won’t see as well; color contrast issues are a big deal.

\n\n\n\n

Being able to raise the font is a big deal. And I think that accessibility is connected in most people’s minds with disability. And they’ll attach that to something like being blind or being deaf or hard of hearing or having a missing limb or having some other kind of disability.

\n\n\n\n

And, as a result, they’re like, “well, I don’t even know any people in that category possibly,” and as a result, they’re like, “well, how important is this?” Yes. They might feel guilty. I should do the right thing. This is the right thing to do. But honestly, like how much money should I spend on it? How much, what percentage of my time should I spend on it?

\n\n\n\n

And it’s because they don’t realize that everybody has different abilities. And so, I’m starting to go away from even talking about disabilities and asking people to remember that all of us perceive things differently.

\n\n\n\n

Do you remember the gold dress where they were trying to say, what color is this dress? Is it gold and white or blue and black? And it is blue and black, but to me, all I see is gold and white. And then there was Laurel or Yanny. Do you remember that?. And some people heard it, and typically older people heard it as Laurel, and I’ve, and I do this in some of my presentations. I play that, that sound. And usually, it’s Laurel for me, but sometimes it’s Yanny. Even personally, it changes.

\n\n\n\n

And so, we have a totally different perception. Now think about memory. There’s a different kind of blindness. If you try and remember, let’s say a relative or a friend that is no longer. How well do you see that picture?

\n\n\n\n

Because for me, it is very, very vague, but for some people, they say, and I’ve been asking people, and I’d love your answer as well. How vivid is it? And some people say, I can read the, I can see the pattern on the shirt. It’s as vivid as if I see with opening my eyes, seeing, you know, the regular in front of me, and I can even read a name tag in the memory.

\n\n\n\n

And I’m like, Woah, so maybe I’m blind in a way. Right? So how do you see it? How do you remember things? 

\n\n\n\n

[Josepha Haden Chomphosy 00:14:42]

\n\n\n\n

Oh, I’m a, I’m a real visual person and a tactile person. And so, like if I interacted with someone, I’m very likely to be able to picture, like, recreate that mental picture pretty well in my mind. I recently, very recently, met some of my first people in that executive leadership space who were like, yeah, I don’t, I don’t visualize things.

\n\n\n\n

And I was like, what are you, how do you do this work? Because like, you have to be able to do that. And they were like, no, I don’t have mental pictures. 

\n\n\n\n

[Joe Devon 00:15:13]

\n\n\n\n

Some people don’t have an inner dialogue. 

\n\n\n\n

[Josepha Haden Chomphosy 00:15:17]

\n\n\n\n

I don’t understand that either, 

\n\n\n\n

[Joe Devon 00:15:19]

\n\n\n\n

Me either. So accessibility studies all of these differences with respect to how you’re presenting all of this information.

\n\n\n\n

And if you don’t pay attention to accessibility, you’re really just missing out. And then there’s colorblindness. If you’re creating something like slack that has an online/offline indicator, and you only use red and green for people who are colorblind, they see gray and gray. And so what I’m trying to teach the community with digital product creators is that no, you cannot ignore it.

\n\n\n\n

You can ignore accessibility, but then you’re not good at your job. I mean, I don’t mean to say it in an offensive way, but you’re not good at your job if you’re unaware. If you break a rule on purpose, great. But if you don’t know the rule, it’s just a lack of craft, and you absolutely should make it a priority.

\n\n\n\n

And you’re not doing it as a charity. You’re doing it because you care about your users, and you care about your craft, and you want to build things well, and it’s a necessity. And I think that this is the kind of message that our community needs to hear. 

\n\n\n\n

[Josepha Haden Chomphosy 00:16:31]

\n\n\n\n

I want to touch on something that you sort of brought up a bit, um, at the start of the answer there.

\n\n\n\n

So you brought up the concept of usability. And in the last time that I did a podcast about accessibility, I defined accessibility as a subset of usability. Do you think that if we were to consistently draw that line for people so that it’s not just like accessibility is this thing that you should do outside of usability?

\n\n\n\n

If we were to more consistently draw that line, do you think that that would help people to see and understand better that its shades of existence, usability, and accessibility?  

\n\n\n\n

[Joe Devon 00:17:10]

\n\n\n\n

Oh, 100%, a hundred percent. And in my company, we kind of realized that that’s exactly what we have to do. We have to see this as usability.

\n\n\n\n

And I don’t, we talk about accessibility a lot, but I don’t want to. It’s part of the plumbing for us. We’ve made it part of the plumbing, and I can tell you it’s a struggle to take accessibility and make it part of an organization, even when you’re bringing it top-down, believe it or not. For our teams, particularly the designers, they are blown away by what they’re learning because they’re improving their craft.

\n\n\n\n

And design is typically where there’s a struggle to get accessibility accepted because there seems to be a very strong idea of what a design should look like. And I think it’s really about the approach because UX and design it’s all about empathy for people. And when you approach it, not as, even though empathy should mean that, that, you know, do the right thing at the same time, it’s more about empathy for your user, and your user includes so much more than just people with disabilities that you haven’t run into somebody that has that disability and therefore you build it better, and it’s, it’s completely blown their mind. They love it. They love doing it. And I’m not hiring people with accessibility coming in. We’re training them to work accessibly.

\n\n\n\n

[Josepha Haden Chomphosy 00:18:34]

\n\n\n\n

So I think it’s interesting that you talk about empathy as part of being able to make sure that you’re creating something that’s accessible because I actually feel like empathy is. Like it’s being considered this gold standard for many, many things right now. And I think it actually is more harmful in the long run than instead making altruistic choices.

\n\n\n\n

And so, I have a blog post that I will link in our show notes that will kind of help everybody see more fully my concept there. But when you rely on empathy, you do kind of have to rely on one, being able to run into all of the issues you were mentioning. You have to know people who have problems in order to know that the problems exist.

\n\n\n\n

And then you also kind of have to assume that once you have willingly put yourself into the discomfort of that kind of disability, whatever, wherever it exists on that spectrum, your experience of that discomfort is the same as someone who lives with it. And I just don’t think that we can necessarily do that.

\n\n\n\n

I always think that trying to do the altruistic thing, like doing your research and figuring out what it is and trying to make decisions on behalf of other people as best you can, which is a terrible thing. Still, like decisions that take into account the experiences that people are sharing with you and then going to them and saying, “does this make that experience better or worse?” is the more sustainable option from my perspective, this is specifically leadership. Still, I think it’s true for accessibility as well, and probably product design as a whole, but it’s very difficult. Like people really feel like they understand the concept of empathy right now. And I do think that sometimes that leads us down the wrong path for things.

\n\n\n\n

What’s your thought on that? I think you kind of agree based on what your answer was 

\n\n\n\n

[Joe Devon 00:20:33]

\n\n\n\n

Oh, no, absolutely. And you know, we, you, can’t never about us without us, as the common saying, and we’ve gathered a group of a hundred people with a wide variety of disabilities for research. Whenever we do any UX and research, and sometimes we’re asked to just do research projects, we go out and ask the users.

\n\n\n\n

We had some really interesting companies approach us to do innovation and accessibility, and they had strong assumptions. We looked at the assumptions and agreed with it, but we’re like, all right, they were smart. They said, “vet this with users for us, please,” because they didn’t want to gather their own group.

\n\n\n\n

We vetted with users, and we’re blown away, always blown away because there are so many things you just don’t know unless you’ve lived with a particular disability. You can’t guess, and you’ve got to speak to your users and a wide variety of them.  

\n\n\n\n

[Josepha Haden Chomphosy 00:21:30]

\n\n\n\n

Yes, absolutely. Absolutely. What role does open source play in expanding accessibility, either in specifically the digital space or just accessibility in general?

\n\n\n\n

[Joe Devon 00:21:42]

\n\n\n\n

I guess if the question is, what role does it play? I would say the role it plays is it is, unfortunately, it makes accessibility worse because, for the most part open source is not very accessible. And it’s a personal passion of mine, so I’m really glad that you brought that up.

\n\n\n\n

You know, it is so bizarre. You write a blog post and then it goes viral, and it goes viral every year to a degree that you can’t even believe it, that all these companies that you know are running events. Privately, publicly talking about it. And then you get all these people thanking you for what you’ve done year after year.

\n\n\n\n

And then one year, you read on Twitter, The Blind Onion; I’m sure you’re familiar with The Onion, the satirical clip, there’s the Blind Onion. And they tweet out, “Now that Global Accessibility Awareness Day is over, we look forward to 364 days of global accessibility oblivion.” And that really hurt at the time, but at the same time, and I was told to ignore it, don’t worry about it, but I’m like, no, this is coming from a place of pain.

\n\n\n\n

And the point of GAAD was to make a difference. It wasn’t too to just give everybody an opportunity to say, “Hey, look at what we’re doing,” and then not make a difference. So, as a result of that, I started to think about, well, where are we with this? And, and so I’ve created a state of accessibility report that through my company, we’re able to run for a few years, and it’s not, you know, the state is not great.

\n\n\n\n

And I’m like, well, what can we do to change things? So, as a result of all of this, I really wanted to figure out, well, what can we do to make sure that GAAD does make a difference? And so, I came up with the idea of the GAAD pledge, which is specifically meant for open source frameworks.

\n\n\n\n

And the idea of the GAAD pledge is that an open source framework, when they are ready, takes the pledge to make accessibility a core value of the framework. Now, terms of what that actually entails are different for every single project because every project is unique. We did create a bit of a framework, which had the idea of saying, okay, you’re going to, first of all, create an accessibility statement that says that this framework is going to conform to whatever, WCAG, which is Web Content Accessibility Guidelines, to whatever WCAG level is decided and is appropriate for the framework. That there’s going to be documentation for anybody that is downloading this piece of open source project and trying to implement it, that there should be guidelines for them, that all of the examples should be accessible.

\n\n\n\n

It’s really important because even the frameworks that try to pay attention to accessibility. You’ll often see that people from the community will provide examples, and they’re inaccessible. And it’s really sad when you see that because so many people are just copy-pasting. That’s typically how it works, and they’re going to copy-paste something bad. So putting a statement around it, I think, would be really great.

\n\n\n\n

And what we’re hoping to see is that lots and lots of big open source communities decide to take the pledge. And then it’ll sort of be table stakes that any new open source projects as well look, all of these frameworks that made it, they took the pledge and therefore we should take the pledge as well.

\n\n\n\n

And so the very first year, we had React Native take the pledge, and they put a lot of effort into their accessibility. The second group to take it was Ember.js, and they always put a lot of effort into their accessibility, and they continued that effort. We’re about to announce the next one, but we’re still two weeks away.

\n\n\n\n

So I can’t say anything yet, but yeah, we’re, uh, we’re hoping for a lot more uptake on, on the gap pledge because it, it affects so many people downstream. WordPress’s what percent of the web right now? 43%? So there you go. That’s so many people. 

\n\n\n\n

[Josepha Haden Chomphosy 00:25:57]

\n\n\n\n

So many people. Yeah, fun fact Gutenberg, our current rewriting of the editing experience in WordPress, primarily uses React. And so, I’m glad to hear that they have taken that pledge as well.

\n\n\n\n

As with any good cooking, it starts with good ingredients.

\n\n\n\n

[Joe Devon 00:26:12]

\n\n\n\n

You said it. That was great. I wish I was a cook, though.

\n\n\n\n

[Josepha Haden Chomphosy 00:26:23]

\n\n\n\n

I love it. All right. Let’s what keeps you up at night when it comes to the state of accessibility? 

\n\n\n\n

[Joe Devon 00:26:29]

\n\n\n\n

What keeps me up at night is how to move the needle. It is such a big thing to change. And there are so many angles that you can approach this with, but at the end of the day, it’s, it’s a monster.

\n\n\n\n

It’s a monster. There are so many legacy sites out there. If you look at WebAIM, they do a yearly report on the state of accessibility as well. They call it the WebAIM Million, and they’re typically seeing 97% inaccessible, 98%. It goes up and down a little bit every year. And that’s, that’s just a huge boat to move.

\n\n\n\n

I think we need to at least get the newer, uh, newer websites and mobile apps to move. And what we’ve seen in our state of accessibility report is that only the very top companies seem to put in the effort to make their products accessible. There is a big push with the enterprise companies to do it.

\n\n\n\n

The CEOs are starting to talk about it, but what we need is the entire culture of software development to change. Or I should even say digital product development change and to move that boat is massive. And that’s I put it in my tagline in my email like that’s my mission in life, and I hope to achieve it before I die.

\n\n\n\n

So that keeps me up at night.

\n\n\n\n

[Josepha Haden Chomphosy 00:27:52]

\n\n\n\n

I think that would keep me up at night as well. I mean, it seems like you are really just personally mission-driven and impact-driven. Do you feel like, in the event that the work that you’ve accomplished so far is what you accomplish, you feel still like you’ve had an impact?

\n\n\n\n

I feel like you have had an impact.

\n\n\n\n

[Joe Devon 00:28:13]

\n\n\n\n

I’m not one of those people that tries to have a legacy or like tries to focus on what my impact is and all of that. I just try and do good work. And hopefully, it just shows at the end of the day. I’m just trying to have the impact without the accolades.

\n\n\n\n

[Josepha Haden Chomphosy 00:28:34]

\n\n\n\n

I get it. Well, Joe, thank you so much for joining us here on this episode of WP Briefing. You have been a delight to chat with.

\n\n\n\n

[Joe Devon 00:28:42]

\n\n\n\n

Likewise, it’s really been a pleasure to meet you, and uh, and I appreciate the opportunity.

\n\n\n\n

[Josepha Haden Chomphosy 00:28:54]

\n\n\n\n

And now it’s time for our smallest of big things. As I mentioned at the start, it is packed. Number one tomorrow, May 17th, RC3. So one of the final RCs that we’re going to have for the WordPress 6.0 release, unless something goes horribly, horribly wrong, which I don’t think it will.

\n\n\n\n

And then, two days after that, Global Accessibility Awareness Day, as I mentioned, will be on May 19th. So, this coming Thursday.

\n\n\n\n

And then next week, we have the 6.0 release. We have the WordPress 6.0 release on May 24th.

\n\n\n\n

Three days after that, WordPress turns 19 on May 27th, starting its final teenage year before we turn twenty in 2023. So that was the rapid-fire dance card for the next two weeks.

\n\n\n\n

The stuff that is happening with and around WordPress for everyone to know. As a heads up, also, many people are headed to WordCamp Europe in Porto(, Portugal). The first week of June, I am going to do a live from WordCamp Europe episode. It will not be live. I’ll just record it live. And so. You know you’ll get to hear me with my hoarsest voice and maybe singing to my computer. Cause that almost always happens at these things.

\n\n\n\n

And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I’m your host, Josepha Haden Chomphosy. And I’ll see you again in a couple of weeks.

\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:\"12855\";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: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:65:\"WordPress 6.0 Release Candidate 2 (RC2) Now Available for Testing\";s: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:99:\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-2-rc2-now-available-for-testing/\";s: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, 10 May 2022 18:06: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:8:\"category\";a:5:{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: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:2;a:5:{s:4:\"data\";s:3:\"6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a: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: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=12840\";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:171:\"WordPress 6.0 Release Candidate 2 is now available for testing! You can \ndownload and help test RC2 in three ways. You can also help translate WordPress to 100+ languages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:4830:\"\n

The next release candidate for WordPress 6.0 is now available! 

\n\n\n\n

WordPress 6.0 is scheduled for release on May 24th, 2022 – just two weeks from today.

\n\n\n\n

“Release Candidate” means that this version of WordPress is ready for release! Since the WordPress ecosystem includes thousands of plugins and themes, it is important that everyone within the WordPress community check to see if anything was missed along the way. That means the project would love your help.

\n\n\n\n

Thank you to everyone who has contributed towards testing and logging issues to help make WordPress 6.0 stable (and awesome). WordPress still needs your help testing, especially theme and plugin developers.

\n\n\n\n

Since the RC1 release on May 3rd, 2022, there have been approximately 40 issues resolved in Gutenberg and Trac.

\n\n\n\n

Installing RC2

\n\n\n\n

This version of the WordPress software is under development. Please do not install, run, and test this version of WordPress on a production or mission-critical website. Instead, it is recommended that you RC2 on a test server and site. 

\n\n\n\n

You can test WordPress 6.0 RC2 in three ways:

\n\n\n\n
  • Option 1: Install and activate the WordPress Beta Tester plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).
\n\n\n\n\n\n\n\n
  • Option 3: When using WP-CLI to upgrade from Beta 1, 2, 3, 4, or RC1 on a case-insensitive filesystem, please use the following command:
    wp core update --version=6.0-RC2
\n\n\n\n

Additional information on the full 6.0 release cycle is available here.

\n\n\n\n

Check the Make WordPress Core blog for 6.0-related developer notes in the coming weeks, which will detail all upcoming changes.

\n\n\n\n

Plugin and Theme Developers

\n\n\n\n

All plugin and theme developers should test their respective extensions against WordPress 6.0 RC2 and update the “Tested up to” version in their readme file to 6.0. If you find compatibility problems, please be sure to post detailed information to the support forums so that these items can be investigated further prior to the final release date of May 24th.

\n\n\n\n

Review the WordPress 6.0 Field Guide for more details on this release.

\n\n\n\n

Translate WordPress

\n\n\n\n

Do you speak a language other than English? Help translate WordPress into more than 100 languages.

\n\n\n\n

How to Help Test WordPress

\n\n\n\n

Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this detailed guide that will walk you through how to get started.

\n\n\n\n

If you think you have run into an issue, please report it to the Alpha/Beta area in the support forums. If you are comfortable writing a reproducible bug report, you can file one on WordPress Trac. This is also where you can find a list of known bugs.

\n\n\n\n
\n\n\n\n

An RC2 Haiku for You

\n\n\n\n

Anticipation
Sprinting toward G/A now
Please — test, translate — thanks!

\n\n\n\n
\n\n\n\n

Thank you to the following contributors for collaborating on this post: @dansoschin, @priethor.  

\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:\"12840\";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:60:\"\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:37:\"The Month in WordPress – April 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2022/05/the-month-in-wordpress-april-2022/\";s: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, 05 May 2022 15:01:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:22:\"the month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=12816\";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:329:\"This past month saw a lot of preparation work for WordPress 6.0, due to release on 24 May 2022. This major release brings exciting improvements – read on to find out more about the latest happenings in the WordPress project. WordPress 6.0 Release Candidate 1 The first release candidate (RC1) for WordPress 6.0 is now […]\";s: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:\"rmartinezduque\";s: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:10652:\"\n

This past month saw a lot of preparation work for WordPress 6.0, due to release on 24 May 2022. This major release brings exciting improvements – read on to find out more about the latest happenings in the WordPress project.

\n\n\n\n
\n\n\n\n

WordPress 6.0 Release Candidate 1

\n\n\n\n

The first release candidate (RC1) for WordPress 6.0 is now available for download. Help improve the project by testing and translating this version to non-English languages. Check out the RC1 release post to learn what’s new and how to contribute. For a more in-depth look at the upcoming changes, you can refer to the WordPress 6.0 Field Guide.

\n\n\n\n

WordPress 6.0 is packed with all kinds of improvements for everyone. It brings new blocks, accessibility enhancements, refined design tools, the ability to switch theme styles easily, multi-block partial text selection, and a new block locking interface, to name a few of its highlights.

\n\n\n\n\n\n\n\n

Gutenberg releases: Versions 13.0 and 13.1 are here

\n\n\n\n
  • Gutenberg 13.0 shipped on April 14, 2022, and introduced the final updates that will be part of WordPress 6.0. These include an improved editor experience (with the ability to select text across blocks), better responsive blocks, and prominently exposed block patterns.
  • Gutenberg 13.1 landed on April 27, 2022. This version adds border support to the Columns block and accessibility and Comment block improvements.
\n\n\n\n\n\n\n\n

Team updates: Updated guidelines for in-person events, redesign of the Gutenberg page, and more

\n\n\n\n\n\n\n\n\n\n\n\n

Open feedback/testing calls

\n\n\n\n
  • Following this proposal for a WordPress Project Contributor Handbook, Executive Director Josepha Haden opened a round of discussions to share feedback on the various handbook sections.
  • Version 19.8 of WordPress for Android and iOS is available for testing.
  • Join the 14th testing call of the Full Site Editing (FSE) Outreach program – “Rallying Recipe Reviewers.” This call focuses on testing blocks that help recipe authors make their recipe blogs more interactive. Leave your feedback by May 18, 2022.
\n\n\n\n\n\n\n\n

Get ready for WordCamp Europe in Porto

\n\n\n\n
  • We are four weeks away from WordCamp Europe. After being postponed twice due to the pandemic, the WordPress event is taking place in Porto, Portugal, on 2-4 June 2022. Check out the schedule and get your tickets if you haven’t yet!
  • WordCamp US announced a new program to support underrepresented speakers.
  • WordCamp Irun (Spain) is happening this month on May 21 and 22, 2022.
\n\n\n\n\n\n\n\n
\n\n\n\n

Have a story that we could include in the next issue of The Month in WordPress? Let us know by filling out this form.

\n\n\n\n

The following folks contributed to this Month in WordPress: @rmartinezduque, @cbringmann, @dansoschin.

\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:\"12816\";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: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:33:\"WordPress 6.0 Release Candidate 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:69:\"https://wordpress.org/news/2022/05/wordpress-6-0-release-candidate-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:\"Tue, 03 May 2022 17:18: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:8:\"category\";a:5:{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: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:2;a:5:{s:4:\"data\";s:3:\"6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a: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: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=12799\";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:171:\"WordPress 6.0 Release Candidate 1 is now available for testing! You can \ndownload and help test RC1 in three ways. You can also help translate WordPress to 100+ languages.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:7242:\"\n

The first release candidate (RC1) for WordPress 6.0 is now available!

\n\n\n\n

This is an important milestone on the 6.0 release cycle journey. “Release Candidate” means that this version of WordPress is ready for release! Before the official release date, time is set aside for the community to perform final reviews and help test. Since the WordPress ecosystem includes thousands of plugins and themes, it is important that everyone within the WordPress community check to see if anything was missed along the way. That means the project would love your help.

\n\n\n\n

WordPress 6.0 is planned for official release on May 24th, 2022, three weeks from today. 

\n\n\n\n

This version of the WordPress software is under development. Please do not install, run, and test this version of WordPress on a production or mission-critical website. Instead, it is recommended that you RC1 on a test server and site. 

\n\n\n\n

You can test WordPress 6.0 RC1 in three ways:

\n\n\n\n

Option 1: Install and activate the WordPress Beta Tester plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).

\n\n\n\n

Option 2: Direct download the release candidate version here (zip).

\n\n\n\n

Option 3: When using WP-CLI to upgrade from Beta 1, 2, 3, or 4, on a case-insensitive filesystem, please use the following command:
wp core update --version=6.0-RC1

\n\n\n\n

Additional information on the full 6.0 release cycle is available here.

\n\n\n\n

Check the Make WordPress Core blog for 6.0-related developer notes in the coming weeks which will detail all upcoming changes.

\n\n\n\n

What’s in WordPress 6.0 RC1?

\n\n\n\n

Since Beta 4, various items have been addressed, including (but not limited to): 

\n\n\n\n
  • Backport updates of Comment blocks tests (#55643)
  • Backport a bugfix of Comment Template block pagination (#55658)
  • Editor: Backport bug fixes for WordPress 6.0 from Gutenberg (#55567)
\n\n\n\n

WordPress 6.0 is the second major release for 2022, following 5.9 which became generally available in January. This release includes nearly 1,000 fixes and enhancements spanning most areas of the WordPress platform. Some key highlights within the content creation and site-building feature sets include:

\n\n\n\n
  • Style Switching: switch up the look and feel of your site, all in one block theme. No need to change themes!
  • More template options: use blocks to edit five more templates (author, date, categories, tag, and taxonomy).
  • Multi-select: Easily select text across multiple blocks. Edit to your liking.
  • Retain Styles: Keep your custom styles in place, whether transforming between blocks or creating new buttons. 
  • More patterns in more places: the Quick Inserter surfaces patterns that might work well for the condition you’re in, baking in relevant patterns for template parts and pages you’re working on. 
  • List View improvements: New keyboard shortcuts (shift + click) let you select multiple blocks to modify in bulk (reposition, delete, etc.), see your content at a glance with a collapsed by default view, and more.
  • Refined design tools: Explore a new color panel, transparency options, more group block variations to create new layout options (Stack, Row), the ability to set your featured image in a Cover block, control the exact size of your featured image, gap support for the Gallery block, and more.
  • New blocks: Various Post Comments, Read More, No Results in Query Loop, Post Author Biography, Avatar blocks. 
  • Block Locking: Choose to disable the option to remove a block, move it, or both, right in the editor. 
  • Export block themes: Explore the improved block theme export tool, as WordPress heads closer to codeless visual block theme building.
\n\n\n\n

Plugin and Theme Developers

\n\n\n\n

All plugin and theme developers should test their respective extensions against WordPress 6.0 RC1 and update the “Tested up to” version in their readme file to 6.0. If you find compatibility problems, please be sure to post detailed information to the support forums, so these items can be investigated further prior to the final release date of May 24th.

\n\n\n\n

Review the WordPress 6.0 Field Guide, for more details on what’s contained in this release.

\n\n\n\n

Translate WordPress

\n\n\n\n

Do you speak a language other than English? Help translate WordPress into more than 100 languages. This release also marks the hard string freeze point of the 6.0 release cycle.

\n\n\n\n

How to Help Test WordPress

\n\n\n\n

Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this detailed guide that will walk you through how to get started.

\n\n\n\n

If you think you have run into an issue, please report it to the Alpha/Beta area in the support forums. If you are comfortable writing a reproducible bug report, you can file one on WordPress Trac. This is also where you can find a list of known bugs.

\n\n\n\n
\n\n\n\n

Haiku Fun for RC 1

\n\n\n\n

Release candidate 
Our journey nearly done
Get ready, WordPress

\n\n\n\n
\n\n\n\n

Thank you to the following contributors for collaborating on this post: @dansoschin, @webcommsat, and @annezazu.

\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:\"12799\";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: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:20:\"WordPress 6.0 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/2022/05/wordpress-6-0-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:\"Mon, 02 May 2022 16:46: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: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: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:2;a:5:{s:4:\"data\";s:3:\"6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a: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: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=12787\";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:103:\"WordPress 6.0 Beta 4 is now available for testing! You can download and help test Beta 4 in three ways.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:5813:\"\n

WordPress 6.0 Beta 4 is now available for testing!

\n\n\n\n

Beta 4 was not part of the originally published development cycle. It is aimed at providing an opportunity for testing some specific issues that were resolved since Beta 3. WordPress will continue with the regularly scheduled release milestones on May 3rd, 2022, with the RC1 release.

\n\n\n\n

This version of the WordPress software is under development. Please do not install, run, and test this version of WordPress on a production or mission-critical website. Instead, it is recommended that you test Beta 4 on a test server and site. 

\n\n\n\n

You can test WordPress 6.0 Beta 4 in three ways:

\n\n\n\n

Option 1: Install and activate the WordPress Beta Tester plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).

\n\n\n\n

Option 2: Direct download the beta version here (zip).

\n\n\n\n

Option 3: Use WP-CLI to test: wp core update –version=6.0-beta4.
Do not use this option if your filesystem is case-insensitive.

\n\n\n\n

The current target for the final 6.0 release is May 24, 2022, which is in less than a month! 

\n\n\n\n

Additional information on the full 6.0 release cycle is available.

\n\n\n\n

Check the Make WordPress Core blog for 6.0-related developer notes in the coming weeks which will detail all upcoming changes.

\n\n\n\n

Explore What’s in Beta 4

\n\n\n\n

Since Beta 3, various items have been addressed, including (but not limited to): 

\n\n\n\n
  • Update post content placeholder (#40177)
  • Comments block: Fix glitches found while backporting (#40628)
  • Show add pattern label when patterns are being prioritised (#40598)
  • Fix regression with featured images in latest posts (#40662)
  • Navigation Link: Avoid unnecessary re-renders (#40696)
  • Navigation: Improve selector performance (#40700)
  • Comments Title: Count toggle working in ‘Singular’ editing mode (#40728)
  • [Writing Flow]: Try to fix multi-selection with shift+click (#40687)
  • Fix alignment issue with comment author name (#40610)
  • Comment Content: Show moderation message (#40612)
  • Display paragraph breaks in comment contents block (#40667)
  • Fix style comment awaiting moderation indentation (#40681)
  • Fix: Page patterns don’t show when only one pattern is available (#40707)
  • Update the placeholder for post excerpt (#40178)
  • REST API: Fix regression in the Pattern Directory endpoint. (#55617)
  • REST API: Fix the scheme for the Block Directory search endpoint. (#53621)
  • Show comments previews in the Comment Query Loop. (#55634)
  • Avoid DB error in comment meta queries. (#55218)
\n\n\n\n

How to Help

\n\n\n\n

Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this detailed guide that will walk you through how to get started.

\n\n\n\n

If you think you have run into an issue, please report it to the Alpha/Beta area in the support forums. If you are comfortable writing a reproducible bug report, you can file one on WordPress Trac. This is also where you can find a list of known bugs.

\n\n\n\n
\n\n\n\n

Another Haiku, Just for You

\n\n\n\n

Beta four, surprise!
Iterating all day long
Time to share and test

\n\n\n\n
\n\n\n\n

Thank you to the following contributors for collaborating on this post:
@dansoschin, @annezazu, and @costdev

\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:\"12787\";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:61:\"\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:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"WP Briefing: Episode 30: A Sneak Peek at WordPress 6.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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/news/2022/05/episode-30-a-sneak-peek-at-wordpress-6-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 02 May 2022 13:03:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";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:11:\"wp-briefing\";s: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://wordpress.org/news/?post_type=podcast&p=12742\";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:132:\"Get a behind the scenes sneak peek at the WordPress 6.0 release on this episode of the WordPress Briefing featuring a special guest!\";s: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:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2022/04/WP-Briefing-030.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s: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:\"Santana Inniss\";s: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:33449:\"\n

In the thirtieth episode of the WordPress Briefing, Executive Director Josepha Haden Chomphosy and special guest Channing Ritter give listeners a sneak peek into the WordPress 6.0 release ahead of the Release Candidate 1 (RC1).

\n\n\n\n

Have a question you’d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording.

\n\n\n\n

Credits

\n\n\n\n\n\n\n\n

References

\n\n\n\n\n\n\n\n

Transcript

\n\n\n\n\n\n\n\n

[Josepha Haden Chomphosy 00:00:00] 

\n\n\n\n

Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy. Here we go!

\n\n\n\n

[Josepha Haden Chomphosy 00:00:40]

\n\n\n\n

Tomorrow’s a big day. It marks the beginning of what is called the RC period, or release candidate period, for the current major release of the WordPress CMS. If you’re not super familiar with the way release cycles work, this is the point in the process where the code should pretty much be done changing. 

\n\n\n\n

That way you can call in your designers, developers, and anyone else who builds things for others using your software. And they can either start testing their products on it, or they can figure out what new things they need to be able to teach their clients, whichever is most relevant to them. That is generally true for WordPress as well, but in true open source fashion, there is a caveat built in that helps us to get in last-minute, vital changes from contributors.

\n\n\n\n

We have a two-person sign-off rule that’s been around for about as long as I can remember, but lets things be added late in the release cycle, as long as there are two sign-offs from qualified contributors. Most of the time, those qualified contributors are lead developers of the project, but not always. We have a good group of people who are around helping us make sure that this is doable and the best thing that we can offer to all of our users.

\n\n\n\n

[Josepha Haden Chomphosy 00:01:50]

\n\n\n\n

And so, yeah, two-person sign-off, that is the little bit of release process trivia that you never knew you needed. And since we’re looking at a release trivia, kind of hidden bits of how software is made, I actually have a guest with me today, Channing Ritter. So Channing is a product and visual designer based in Brooklyn, New York.

\n\n\n\n

She’s a design director at Automattic and has been working on the WordPress project as a full-time sponsored contributor since January, 2021. She is joining us to share some behind the scenes intel on what’s going into the 6.0 release, her role in that process, and then we’ll just kind of see how the conversation goes from there.

\n\n\n\n

[Josepha Haden Chomphosy 00:02:40]

\n\n\n\n

Well, and with that, I’d like to welcome Channing to the WordPress Briefing. Hi Channing!

\n\n\n\n

[Channing Ritter 00:02:45]

\n\n\n\n

Hey Josepha. Thanks so much for having me. 

\n\n\n\n

[Josepha Haden Chomphosy 00:02:48]

\n\n\n\n

I’m excited to have you here. If I understand, you are working on the design side of things with the release. So why don’t you tell me a little bit about the role you’ve played?

\n\n\n\n

[Channing Ritter 00:02:59]

\n\n\n\n

I am. I am the design release lead for the 6.0 release. And if I understand correctly, this is a position that has been unfulfilled for the past few release cycles. So I’m kind of the first person to step in over the past few releases. And I think that’s really exciting, especially because design has started to play such a more important role in the WordPress project over the past few years.

\n\n\n\n

So it makes sense that design would have a seat at the table, and I’m really excited to be helping advocate for the design team and learning from other folks on the release squad. Who’ve been doing this for a while.

\n\n\n\n

[Josepha Haden Chomphosy 00:03:33]

\n\n\n\n

So. First big question about 6.0, what is the feature that you are most excited about? 

\n\n\n\n

[Channing Ritter 00:03:39]

\n\n\n\n

I’m most excited about the style switcher within the global styles panel. Um, so if folks still don’t know what I’m talking about there, it’s the ability to change between different variations of the theme.json without actually switching the theme. 

\n\n\n\n

So this is a way to get a drastically different look and feels across your site with just a single click. And I see it as a really fun place to experiment and kind of get inspired for the different ways your site could appear without ever having to change your theme.

\n\n\n\n

And in terms of the Twenty Twenty-Two variations, they’re just really gorgeous and all so diverse. Like you have the main default theme that has the deep green and kind of peachy colors and this really elegant type treatment with a really thin Serif typeface. But then the variations are so different from that. And I think my favorite one is the Swiss variation.

\n\n\n\n

[Josepha Haden Chomphosy 00:04:36]

\n\n\n\n

The Swiss variation? 

\n\n\n\n

[Channing Ritter 00:04:38]

\n\n\n\n

Yeah, every graphic design nerd loves Swiss design. 

\n\n\n\n

[Josepha Haden Chomphosy 00:04:42]

\n\n\n\n

Oh, ok! Now I know! 

\n\n\n\n

[Channing Ritter 00:04:38]

\n\n\n\n

Really awesome things found in there. It’s a really high contrast, bold variation. It’s kind of black and white with red accents. I just love how different it is from the default style and how easy it is to change up your site and just get a whole drastically different look and feel.

\n\n\n\n

[Josepha Haden Chomphosy 00:05:00]

\n\n\n\n

That’s excellent. So for folks who do not know what we’re referring to, when we talk about the Twenty Twenty-Two variation, that is the default theme, Twenty Twenty-Two. I’ll put a link to both the classic and block-based versions in our show notes, but you’ll want to use the block-based version to look at these style variations that Channing has mentioned here. 

\n\n\n\n

[Channing Ritter 00:05:24]

\n\n\n\n

You know, we’re really excited that the first-ever default block theme was released with 5.9, which is when Twenty Twenty-Two first went out and was bundled with 5.9.

\n\n\n\n

But now, with 6.0, I think even more so it’s starting to showcase the real power of block themes and what can actually be done there. And style variations is a huge kind of first step into this new world of block themes and starting to really open up the possibilities and all the flexibility that you have there.

\n\n\n\n

[Josepha Haden Chomphosy 00:05:55]

\n\n\n\n

Yeah, absolutely. So when we’re talking about the Twenty Twenty-Two default theme, when we’re talking about switching these variations inside the theme itself, that seems to me to be a very user-focused kind of feature. And when we talk about users in WordPress, there’s a lot of room for interpretation. Like if we look at it kind of in a framework of three types of users of WordPress, you have, like end-users. So people who are site owners using it as a site to, like, enable their business. 

\n\n\n\n

But you also have mid-end users—people who use it to build sites for others. And what I like to call back-end users, people who are using WordPress as a framework. And of course at the start of the Gutenberg project, way back in forever, a million years ago, one of the big calls to action that we had around even, like, trying to do this, was that we wanted to make WordPress easier for users. Just plain users. 

\n\n\n\n

And, and to me, that means making WordPress easier for those mid-end users, people who are creating WordPress sites for other people. But also should give some power and autonomy back to those end-users, the people who are using sites to enable their business or are site owners. 

\n\n\n\n

[Josepha Haden Chomphosy 00:07:14]

\n\n\n\n

And so in that context, between 5.9 and 6.0, do you feel like we have features that are really giving that kind of power and agency back to our end-users? Do you feel like we have some features that are really focused on those mid-end users, as opposed to our backend users? For a long time, we focused heavily on enabling our backend users, and now Gutenberg kind of moves us into those other two areas.

\n\n\n\n

And so do you think that things like being able to switch between your style of variations, other things like that are moving us closer to that particular goal of Gutenberg?

\n\n\n\n

[Channing Ritter 00:07:51]

\n\n\n\n

That’s a great question. I think it’s both. I think some of the features being released in 6.0 are absolutely going to empower that end-user.

\n\n\n\n

Particularly in terms of improvements around design tools and some of the quality of life improvements. For example, partially selecting across multiple blocks and being able to partially select texts there. That’s the type of thing that really brings the writing experience in the editor to be on par with how you would expect a text editing experience to work.

\n\n\n\n

And there are tons of small quality of life improvements in this release that I think are really gonna help those end-users. But there are also improvements around what we might call the maintainers who are building sites for others. I think block locking in particular is something that is really going to start filling a gap between people who build the sites and then people who do the day-to-day maintenance within a site.

\n\n\n\n

For example, in 6.0, we’re introducing some interface UI around block locking, but also there’ll be control around the ability to lock user roles.

\n\n\n\n

[Josepha Haden Chomphosy 00:09:03]

\n\n\n\n

Which I think makes a lot of sense. I mean, we have all of these user roles in the CMS itself, and for a long time, we’ve just been like free for all on blocks, which was great and is great and should be available to people.

\n\n\n\n

But also if we are saying, like, it makes sense to have this gradient of users and their abilities for the CMS itself, and we are saying that we want to move control of the website and the content to be at the base layer in these blocks, then it also makes sense that we should be able to provide that same sort of granular level of access in the blocks.

\n\n\n\n

So I think that’s a great thing. If you all, if dear listeners, you do not know what we mean by “block locking,” I’m sure that I can find a link for us in our show notes below as well. If for anyone who’s been talking through Gutenberg things with me for a while, you know that this is one of the primary use cases that I think has been a long time coming.

\n\n\n\n

[Josepha Haden Chomphosy 00:10:05]

\n\n\n\n

It was one of the first examples that I offered to folks when we had that question of like, who is this being built for? In what way is this beneficial to that mid-end user, as opposed to just giving all of the power and autonomy to users in a way that maybe is not the best for their visitors? 

\n\n\n\n

This is one of those use cases that made the most sense to me being able to say, okay, well, the opportunity to, as somebody who runs an agency and is building websites for people to be able to say, yeah, ‘You can do anything that is possible in this instance of WordPress and all the things that you are allowed to do will not break your instance. It won’t break your website’. 

\n\n\n\n

And so it gives a lot of time back to agencies to focus on their client’s most important problems, as opposed to not knowing how to update the hours in their footer or something like that. And so I’m very excited about that particular feature.

\n\n\n\n

[Channing Ritter 00:11:01]

\n\n\n\n

It’s such a long-requested feature. I mean, we’ve been hearing requests around this particular feature for years and, you know, often when something gets requested over a span of years like that, it’s because there are some complexities to figure out how it works.

\n\n\n\n

And that’s definitely been the case with moving forward with block locking. And there are a lot of nuances there. But I think what you were saying, I totally agree with. There’s always a push and pull. And as we enable more and more flexibility for end-users, there needs to be a little bit of push from the other side to kind of give more granular controls, more locking options, and make sure that everything can still be easily maintained.

\n\n\n\n

[Josepha Haden Chomphosy 00:11:43]

\n\n\n\n

Yeah, we mentioned in that answer the concept of maintainers. If you are a contributor, it’s not that kind of ‘maintainer.’ So if you’re a WordPress contributor and we said maintainers there, um, just know that that’s not what we’re referring to. If you don’t know what I’m talking about when I say ‘contributor,’ there is a whole community of open source people and maintainers are people who specifically take care of a particular part of the WordPress software or the WordPress project, um, that makes all this possible.

\n\n\n\n

So there’s, ya know…. 

\n\n\n\n

[Channing Ritter 00:12:19]

\n\n\n\n

So true! The maintainer has another meaning in this context.

\n\n\n\n

[Josepha Haden Chomphosy 00:12:20]

\n\n\n\n

Yeah, we have a mix in our audience and I love it, but it also makes me frequently spend like 10% of my podcast being like, by the way, when I said this, I didn’t mean you, but I did mean you, which makes it harder. I know. 

\n\n\n\n

So. You’ve been with the project for a little bit, but if I recall correctly, this is the first time that you were, like, leading part of a release.

\n\n\n\n

So what would you say was the most challenging part of that?

\n\n\n\n

[Channing Ritter 00:12:52]

\n\n\n\n

Another great question. This is my first time being this closely involved with the release. Although I was involved with the 5.9 release, but mostly in a release assets capacity. So I helped with the About Page and the welcome banner that goes on the dashboard.

\n\n\n\n

So I did get some insight in the last release cycle. Which was great preparation for being more involved as a release lead on this cycle. From the design perspective, one of the hardest things is always going to be figuring out what exactly goes into the release and what needs more time. In the sense, you know, that there might be some features that need to stay in the Gutenberg plugin for a while and get more testing before they get released to a much wider audience in a major WordPress release.

\n\n\n\n

So I think on the design side, we definitely have some goals that are big, long-term projects that are likely going to span across, you know, many releases, maybe even over many years. And I think the full site editor is a great example of that in a sense that it’s not something that you just were gone in one release and then it all gets released and then it’s all good to go.

\n\n\n\n

[Channing Ritter 00:14:06]

\n\n\n\n

It’s something that has to be staggered across many releases, and there’s a lot of thought that goes into it; does this make sense in this more limited capacity, and what else needs to go in in order for this feature to go in? And the most complex things about the WordPress project is how interconnected things are.

\n\n\n\n

So when you start making those decisions about what should go in, what should get pulled out, often there’s sort of a domino effect of like, well, that would affect this feature and then, well, maybe they shouldn’t go in, or maybe this does need to go in. And that is really one of the most challenging, but also one of the most fascinating aspects of the release process.

\n\n\n\n

[Josepha Haden Chomphosy 00:14:46]

\n\n\n\n

Yes. It is very, very true that there are kind of no small problems left in WordPress. *laughs* Yeah, when we, when we first started with this like bigger release squad, cause that has not been routine for the history of the project. When we first started with that, I know that expanding out the exposure to like how much one change affects 25 different things was really, it was really good for all of us to be reminded.

\n\n\n\n

And as I mentioned at the top of our episode today, tomorrow begins the RC period. It begins the release candidate period, which is when it’s supposed to be, as locked down as possible. But if you all have been following along with our release process in general, which if you’re listening to this, you probably have, you know that last week or a couple of weeks ago, we had this whole question about the Webfonts API, and we had that conversation in a public space as best we could, 

\n\n\n\n

Like, there are always things that you can’t, like, fully disclose in public spaces, but we had a very open and transparent conversation about, like, who is most affected by putting it in, in the state that the API was in. And, who’s most affected if we take it out. And where can we make compromises on either side so that both sides are a little happy and a little unhappy?

\n\n\n\n

[Josepha Haden Chomphosy 00:16:09]

\n\n\n\n

And, like, that is all so hard to do. Not only in general. We have a 20-year-old code base and a five-year-old code base. And it’s all a big, big undertaking to understand what is happening and where it happens. And so there’s this moment always when we are trying to decide, like, is this baked enough? Did we put it in too early? Should we pull it out? How, if we pull it out, did we ask people to do too much work before we decided to pull it out anyway?

\n\n\n\n

Like, you always have those kinds of questions about it. And honestly, I think that most of us weren’t around the last time, that WordPress was, was this experimental in public, like it’s always been open source. It’s always been experimental and iterating publicly, which is just the hardest way to work on anything. We like, we shipped our best guesses. Don’t be mad. It’ll be… we’re coming for it. We’re going to fix it. Like, that’s always hard, but the last time around, when it was this substantial a change was, like, 2008 or something, like, it was ages and ages ago.

\n\n\n\n

[Josepha Haden Chomphosy 00:17:14]

\n\n\n\n

And we were smaller than, we had a smaller number of contributors. We had a smaller group of people actually using the CMS. And so over time it has gotten more and more complicated. And, and I don’t think that we can ever understate the complexities of that. And so for you, you had a little bit of exposure to it in 5.9 and then showed up for like really doing it in 6.0.

\n\n\n\n

Has it been a surprising change? Like, were you surprised much more by how complicated it was when you were closer to it? 

\n\n\n\n

[Channing Ritter 00:17:47]

\n\n\n\n

Yeah, definitely. It’s been a real learning process, especially coming to understand how much there really are no easy answers. I think a lot of us are in the release squad are real problem solver types of people and, and want it to, you know, be a really neat, tidy answer. 

\n\n\n\n

And it’s not always the case. You know, sometimes parts of the feature might go in, or some contingency plan might get put into place and things didn’t go exactly as planned. But what you said of being an experiment and being on kind of the cutting edge of trying out new things, I think there is a lot of passion around that in the WordPress project. 

\n\n\n\n

Right now, we’re in such a transitional period for the project, you know, moving from classic themes to block themes and really changing the ideas of how we approach designing sites. And because of that, I think there is a lot of momentum and energy around getting new features, as many new features as possible into each release. But there’s also, you know, a lot of testing and stuff that needs to happen.

\n\n\n\n

And to make sure that, like you said, these things aren’t going out too early. 

\n\n\n\n

[Josepha Haden Chomphosy 00:19:01]

\n\n\n\n

Well, and there’s always that difficulty, we’re going to just leap right into open source areas now. There’s always that difficulty around, like, there’s this concept that when, like, we always want to ship something that doesn’t break backward compatibility when possible, we don’t want to ship vulnerabilities. Like, that’s always true, but we are in an open source project, and open source projects are necessarily kind of tolerant of like, that’s not our best, but like it skates, right? 

\n\n\n\n

This was, we aimed for Ferrari and got a skateboard because sometimes you got to start with a skateboard, right? *laughter* Like if it gets you from one place to another, that’s kind of where we’ve got to aim some days. 

\n\n\n\n

[Channing Ritter 00:19:45]

\n\n\n\n

Totally.

\n\n\n\n

[Josepha Haden Chomphosy 00:19:46]

\n\n\n\n

And that’s always so, so difficult, especially cause, like, for the big change that 5.0 represented, and that 5.9 represented– 6.0 is not as big a shock as 5.9 was.  But, like, as big a change as those represented, it still skates. And that’s, I think what makes the work especially hard, especially nuanced. And like, we haven’t gotten together as human beings in two years. And so sometimes people just kind of forget there’s a human being back there.

\n\n\n\n

We’re humans. Everyone be nice. Yeah. I don’t know that part of running a release definitely was surprising to me. My first release that I ran was 5.0 and…

\n\n\n\n

[Channing Ritter 00:20:31]

\n\n\n\n

Oh, wow!

\n\n\n\n

[Josepha Haden Chomphosy 00:20:32]

\n\n\n\n

Yeah, it was, like, that was 2018. And then I became the executive director at the top of 2019. And I distinctly remember one core chat where I showed up and just was like the most transparent, vulnerable person we’ve ever experienced in life.

\n\n\n\n

That’s not true. We have very vulnerable people in the project and very transparent people, but I told everyone like, there are a million of you and one of me, and it’s kind of terrifying that you’re leaping on me in this—like you’re scaring me a lot right now. And that was quite a thing to say to like, all these… it’s terrifying! Right?

\n\n\n\n

[Channing Ritter 00:21:12]

\n\n\n\n

I love when you see that type of vulnerability in the project. I think it takes… it takes a degree of comfort and familiarity with the project to even be able to admit to that. And to me, that’s a real sign of growth in the project. Like when I first started contributing, I don’t think I ever would have just said, like, ‘How is the feature supposed to work? I have no idea.’ That’s something that I say all the time now.

\n\n\n\n

*Laughter*

\n\n\n\n

And you know, that is completely fine and more than okay. It’s a massive project. There are folks who have done deep thinking about a feature over the course of years. You know, and there are experts who can help shed light on various problems that maybe you just haven’t had a chance to dive into yet and really understand the nuances of yet.

\n\n\n\n

So that’s the amazing thing about open source is that you can lean on folks who do have expertise in that particular area. You’re not expected to be an expert-expert in every single domain. It’s okay to say, I don’t really have a good idea or a good concept of this feature. I don’t have a good feeling for it. What do other folks think? 

\n\n\n\n

[Channing Ritter 00:22:24]

\n\n\n\n

And even people who have been in the project for a long time, decade plus, still say that all the time. You know, or you might just say, like, I have a really rough idea of how this works, are other people seeing this the same way? Or did other people have a different, you know, mental picture of how this might work?

\n\n\n\n

Even if, sometimes it feels like you’re over-communicating, it’s really helpful because often people do have really dramatically different ideas about how a feature might take shape.

\n\n\n\n

[Josepha Haden Chomphosy 00:22:49]

\n\n\n\n

And I hope that’s one of the things that we never lose in the project. Like we are an old, old project now and we support a bunch of the web with a tiny, tiny group of people compared to the amount of the web that we support.

\n\n\n\n

And I hope that we always have that opportunity as senior leaders, which I am, and all of our upcoming leaders to all of us, just at some point, be like, can we stop the train? I don’t understand. I don’t understand that. Um, and not necessarily feel that that has made us a worse contributor. Cause I think that it’s when we are transparent about our lack of understanding.

\n\n\n\n

That’s when we have the opportunity to make what we’re offering to the world more solid and always better.  

\n\n\n\n

[Channing Ritter 00:23:35]

\n\n\n\n

I love it. I think it’s the, one of the most lovely things about the WordPress community. There’s really low judgment around those types of questions and people are really inclusive and more than happy to take a moment to explain something to you or shed some light on an issue you might not have thought that much about. 

\n\n\n\n

I think that’s one of the best things you can always reach out for help. And folks are always willing to provide guidance or context or even historical information about, you know, whether it’s been tried in the past or previous explorations and that sort of thing.

\n\n\n\n

[Josepha Haden Chomphosy 00:24:10]

\n\n\n\n

All right. Well, that covers all of my questions for you. Do you have a final thought about the release that you would like to share with everyone you don’t have to, if you don’t want to, not everyone has like a final sign off. 

\n\n\n\n

[Channing Ritter 00:24:25]

\n\n\n\n

Yeah. One of the things I’m most excited about for this 6.0 release is all of the improvements around design tools.

\n\n\n\n

And these are just small improvements around a ton of different things, like the color panel, border controls, gap support, typography options, flexible container blocks, etc. These are the types of tools that are a designer’s dream. You know, they really make the difference between being able to make a really crisp, finished looking final product and having something that’s a little rough around the edges.

\n\n\n\n

And as a designer, like those are the things that your eye goes straight towards. And all of these nuanced new tools, they really allow designers to have that fine detailed control to create really pixel perfect sites. And I think that’s something that, you know, myself and a lot of others on the design team are just so beyond excited about.

\n\n\n\n

[Josepha Haden Chomphosy 00:25:25]

\n\n\n\n

Excellent. Well, Channing, thank you so much for joining us today on the WordPress Briefing; it has been an absolute delight. 

\n\n\n\n

[Channing Ritter 00:25:32]

\n\n\n\n

Thank you for having me.

\n\n\n\n

[Josepha Haden Chomphosy 00:25:41]

\n\n\n\n

And now it is time, woohoo, for the small list of big things. My favorite part of this podcast, that’s not true. I have a lot of things that I love about this podcast. I just, in particular love being able to share like three things that are coming up in the next couple of weeks that everybody should be aware of. And I really particularly like the list I have this week. 

\n\n\n\n

First as of today, we are two weeks away from WordSesh. If you’re looking forward to your first in-person WordPress event, but feel like you could use a little foundation information, a little bit of a WordPress primer, then this event has a lot of excellent thought leaders in the project that you can learn from.

\n\n\n\n

If you’re looking for more practical or hands-on opportunities, uh, you can also check out social learning spaces. All of those are free for anyone. So I will include links to both of them in the show notes. 

\n\n\n\n

[Josepha Haden Chomphosy 00:26:30] 

\n\n\n\n

Second, as of today, we are four weeks away from WordCamp Europe. This is one of our flagship events. So it also includes a contributor day, which I encourage you to look into. If you have never heard of one before. I will be there to meet some of the contributors that have joined the project since the end of 2019. And hopefully, I will see you there as well. If you’ve never heard of a contributor day, then I’ll include a link to the beginner’s guide to contributions, a little talk that I gave in 2017 in the show notes that should help you get your bearings or at the very least know what questions to ask yourself to figure out if a contributor day is right for you.

\n\n\n\n

And then the third thing as of today, it has been one week since Ian Dunn and the Meta developers… Um, that sounds like a band… Ian Dunn and the Meta developers connected the props channel in the community Slack to WordPress.org profile activity. I’m really excited about this. It’s the first in a long list of changes that are part of a larger project to credit more non-code contributions, more contributions that are not specific to a major release or event.

\n\n\n\n

And also to set us up to be able to provide more quality checks and balances for our growing Five for the Future program. If you’ve not been over there lately, if you’re not super sure what I’m talking about, there’s a link to the discussion post that we had about it, but also you can wander right over into the Making WordPress Slack and check out the props channel to just kind of see a running list of contributors that people are really grateful for. Which, frankly, if you ever are having a bad day, that is a wonderful place to just kind of wander in and see all of the positive vibes that people are sending around to each other.

\n\n\n\n

Uh, yeah, so the props channel, is always good. Uh, and that my friends is your small list of big things. Thank you for tuning in today for the WordPress Briefing.

\n\n\n\n

I’m your host, Josepha Haden Chomphosy. And I’ll see you again in a couple of weeks.

\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:\"12742\";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:75:\"\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:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"People of WordPress: Meher Bala\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wordpress.org/news/2022/04/people-of-wordpress-meher-bala/\";s: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, 30 Apr 2022 09:20: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:7:{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:8:\"Features\";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:10:\"Interviews\";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:9:\"HeroPress\";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:19:\"People of 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:\"\";}i:5;a:5:{s:4:\"data\";s:15:\"WordCamp Mumbai\";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:5:{s:4:\"data\";s:16:\"wptranslationday\";s: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=12706\";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:106:\"This month\'s People of WordPress feature shares the story of developer and e-commerce builder Meher Bala. \";s: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:28:\"webcommsat AbhaNonStopNewsUK\";s: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:16731:\"\n

In this series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better. This month we feature a Indian-based WordPress developer and long term contributor on how it helped her find a career and a local and global community to belong to.

\n\n\n\n
\"Meher
\n\n\n\n

WordPress is an inspiration to Meher Bala, a frontend web developer and community builder from India. From using the software as a basic website tool to helping entrepreneurs and good causes around the world fulfill their aspirations, she has overcome personal barriers and now aims to inspire others.

\n\n\n\n

Meher found her vocation and learned new skills through WordPress. She also discovered a way to encourage other women to consider careers in IT. 

\n\n\n\n

Opening the doors to a career in technology

\n\n\n\n

As a child, Meher was diagnosed with dyslexia (difficulty in reading the written word) and dyscalculia (difficulty in comprehending numbers and mathematical functions). With the support of her parents and a tutor, she was able to overcome this learning obstacle. She developed coping techniques and a determination to work to overcome challenges as they appeared later in life.

\n\n\n\n

In school, she got an opportunity to replace one subject with computer studies as an alternative. This proved to be an eye-opener to future career possibilities. 

\n\n\n\n

She began to research not only what the internet had to offer but also how it worked, including the new and fascinating concepts of email and websites. Her father bought the family’s first desktop computer so she could do her research at home.

\n\n\n\n

Meher’s father wanted to turn her love for computers into something that would serve her well in the future. In 2005, he enrolled her in a short computer course from a global IT training provider. The course tutor was so impressed with her performance, she was advised to enroll in a four year software development course.

\n\n\n\n

That meant she had studied the software development course alongside her higher education college course. Looking back, she enjoyed the dual challenge of the degree course in commerce, and the experience prepared her well to keep learning software while working as a developer. Within three years, she had learned C#, C, C++, HTML, Java, and .NET.

\n\n\n\n

After graduation, she was in a dilemma to choose between commerce and IT. What to choose? She had a compulsory one-year technology internship to complete, and her choice of focus for that year would prove to be a defining moment.

\n\n\n\n

In 2009, on her birthday, Meher was offered an internship. On the first day of the internship, she was introduced to WordPress. Her initial assignment was to change the look and feel of the WordPress dashboard — in just six hours. But there was a problem – she had never worked with WordPress before!

\n\n\n\n

“I stared at the whiteboard and thought that task given was impossible and difficult to meet the deadline. I wondered if my boss was joking and did not know then what you could do with WordPress as a developer and how it could slot into your toolbox. It opened my eyes.” 

Meher Bala
\n\n\n\n

Meher used her research skills to know more about using WordPress. She found a plugin that would help her achieve her task. She met the deadline and it ingrained an interest that she would never lose.

\n\n\n\n

Re-discovering WordPress

\n\n\n\n

Five years after her initial WordPress experience, Meher was assigned to lead an international project in WordPress. She was hesitant — she had lost touch with the CMS during that five years, but the project was a great opportunity to become a team leader and lead from the front. 

\n\n\n\n

She decided to update her WordPress skills, relying again on the strength of her research skills and determination. In the process, she also taught her team all about WordPress, inspiring many of those members to continue to develop their WordPress skill set.

\n\n\n\n

The success of that project was a pivotal moment for Meher and a new dawn as a developer specializing in WordPress.

\n\n\n\n

As a team lead, Meher soon found it was not possible to always have all the answers straight away. She found internet searches gave practical solutions—but rarely explained the theory behind it.

\n\n\n\n

So she went looking for a WordPress group to help her expand the scope and depth of her knowledge.

\n\n\n\n

Finding the community and its developer learning opportunities

\n\n\n\n
\"Meher
Meher enjoying being part of WordCamp Nagpur in 2017
\n\n\n\n

In 2015, while browsing Facebook, Meher came across an advertisement for something called WordCamp Mumbai, an event that had taken two days before. She did a little digging to learn what a WordCamp was, and about the people behind it. She took the plunge and joined the WordPress Mumbai Meetup group.

\n\n\n\n

Her first Meetup experience was not love at first sight. She felt the topics were for advanced users, and the timing late in the evening made it difficult to attend.

\n\n\n\n

But a few months later, the Meetup addressed a topic that could help her resolve an issue in one of her current projects. She made the effort to show up and came away with a number of important tips. The speaker had taken the time to speak to individual attendees. When he came to Meher, she took the opportunity to ask a couple of questions about her project issues.

\n\n\n\n

Thereafter she went to more Meetups and got to know the people behind this group, just as they started talking about WordCamp Mumbai 2016.

\n\n\n\n

A WordCamp adventure

\n\n\n\n
\"Meher
Meher discovering WordCamps in Mumbai in 2016
\n\n\n\n

Meher expressed interest in being a part of the coming  WordCamp Mumbai and started in an entry-level role with basic responsibilities.

\n\n\n\n

At first, she thought WordCamp was a formal conference with about 100 people. So on the first day of WordCamp Mumbai 2016, she was surprised to see so many WordCamp enthusiasts attending and enjoying such a relaxed and friendly conference.

\n\n\n\n

After that great experience, Meher went to many more meetups and did more volunteering. She started taking on responsibilities in the coming WordCamps and getting to know the different aspects of the camp. 

\n\n\n\n

In the following years, at each WordPress, she took up a new role like speaker vetting, sponsors, and volunteer coordination. This allowed her to know more about what an organizer needs to do, from planning to execution, to make WordCamp a successful event.

\n\n\n\n
\"WordCamp
With the team at WordCamp Mumbai in 2017
\n\n\n\n

Meher is grateful for her WordPress journey which was fostered in the Mumbai community. It has been filled with beautiful surprises. 

\n\n\n\n

When people ask why she’s chosen to specialize professionally in WordPress, Meher says WordPress is easy to teach a non-technical person, yet it is still highly customizable. Being a WordPress developer has given her the opportunity to work  remotely for global web development companies that let her think out of the box. And she learns new skills with every release.

\n\n\n\n

The community makes WordPress special

\n\n\n\n

Meher says that some of her most memorable WordPress moments have revolved around special friendships, trying new things, and participating in community building. 

\n\n\n\n

WordPress has let her explore different parts of India, make new friends locally and internationally, and encourage women to be a part of meetup groups and events across India. 

\n\n\n\n

One of Meher’s biggest dreams was to lead WordCamp Mumbai as a lead organizer and show others what could be achieved by working together in open source. In 2019, she did just that and has volunteered at international WordCamps and meetups since.

\n\n\n\n
\"Meher
Taking to the stage at WordCamp Mumbai in 2019
\n\n\n\n

As part of her enthusiasm for sharing the opportunities WordPress can give people, especially women, she has given time to co-organize two global WordPress Translation month long events and contributor events in India.   

\n\n\n\n

Meher said: “I was first introduced to translation at one of the meetups which was organised to support the WordPress Translation Day. I realized this was another way to support my local communities and bring the power of WordPress to them by contributing in Gujarati and Hindi. I did not imagine I would a few years later be a global organizer for the event itself!”

\n\n\n\n

With her commitment to ongoing learning as a developer and to model what she believes about the value and community growth opportunities of open source, Meher has given time and energy to the Marketing Team, where she has been a Team Rep, to the Training Team, and to the Core Team contributing to multiple releases. 

\n\n\n\n

The developer adventure with WordPress is unlimited

\n\n\n\n

At the start of my software developer journey, I always thought the C++ and Java were the only skills you required to excel in your career. From the time I started exploring WordPress in depth, I realized the potential and the power of WordPress in web development.

Meher Bala
\n\n\n\n

Being a part of the WordPress community, Meher learned that there is so much more than just building blogs on WordPress. She started exploring different features of WordPress, created her first theme, and eventually specialized as a frontend specialist.

\n\n\n\n

Meher now works as a consultant and front end developer with an international agency specializing in WordPress. Asked what she thought was the best thing about being a WordPress developer, Meher replied: “Through WordPress, I have an opportunity to build unique out of the box websites and work remotely for global web development companies that encourages you to think out of the box. There is always opportunity to continuously advance my coding skills and learn new techniques with every release.”

\n\n\n\n

She believes that there is no limit to where using the software can take you and what you can combine it with to find solutions to projects big and small.

\n\n\n\n

If you earn a living from WordPress, her advice is from the heart: try to give back to the WordPress community.

\n\n\n\n

“I am sure you will learn or teach something new and definitely make friends across the world. There is no shame in making mistakes, as you can learn from them and develop your skills further. You can also help others as they build their skills.”

\n\n\n\n

Meher added: “Don’t let the things you find difficult get in the way of your success.”

\n\n\n\n

Share the stories

\n\n\n\n

Help share these stories of open source contributors and continue to grow the community. Meet more WordPressers in the People of WordPress series.

\n\n\n\n

Contributors

\n\n\n\n

Thanks to Abha Thakor (@webcommsat), Larissa Murillo (@lmurillom), Mary Baum (@marybaum), Chloé Bringmann (@cbringmann), and Meg Phillips (@megphillips91) for interviews, writing and image work on this story. Thank you to Meher Bala (@meher) for sharing her experiences and to Josepha Haden Chomphosy (@chanthaboune) and Topher DeRosia (@topher1kenobe) for their support of the series.

\n\n\n\n
\"HeroPress
\n

This People of WordPress feature is inspired by an essay originally published on HeroPress.com, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. #HeroPress

\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:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"12706\";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: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:20:\"WordPress 6.0 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/2022/04/wordpress-6-0-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:\"Tue, 26 Apr 2022 16:43: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:8:\"category\";a:5:{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: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:2;a:5:{s:4:\"data\";s:3:\"6.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a: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: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=12690\";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:103:\"WordPress 6.0 Beta 3 is now available for testing! You can download and help test Beta 3 in three ways.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}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:5387:\"\n

WordPress 6.0 Beta 3 is now available for testing!

\n\n\n\n

This version of the WordPress software is under development. Please do not install, run, or test this version of WordPress production or mission-critical websites. Instead, it is recommended that you test Beta 3 on a test server and site. 

\n\n\n\n

You can test WordPress 6.0 Beta 3 in three ways:

\n\n\n\n

Option 1: Install and activate the WordPress Beta Tester plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).

\n\n\n\n

Option 2: Direct download the beta version here (zip).

\n\n\n\n

Option 3: Use WP-CLI to test: wp core update --version=6.0-beta3.
Do not use this option if your filesystem is case-insensitive.

\n\n\n\n

The current target for the final 6.0 release is May 24, 2022, which is in less than a month! 

\n\n\n\n

Additional information on the full 6.0 release cycle is available here.

\n\n\n\n

Check the Make WordPress Core blog for 6.0-related developer notes in the coming weeks which will detail all upcoming changes.

\n\n\n\n

See What’s in Beta 3

\n\n\n\n

Since Beta 2, various items have been addressed, including (but not limited to): 

\n\n\n\n
  • Twenty Twenty-Two: Implement alternate json files #55433
  • Fix duotone rendering in site editor #37727 
  • Create Comments Title block with simple styling #40419 
  • Navigation block: After choosing an option from Select Menu, focus after block render #40390
  • Add comment id to all comments inside comments query loop #40268
  • Add post-comments-form block to comments template #40256
  • Elements: Add styles to the footer before the block is rendered #37728
  • Add default comment status to discussion settings  #55567
  • Fix styles for nested elements (link color) #55567
  • Move wp_enqueue_block_style() to wp-includes/script-loader.php, for better consistency #55182, #55148
  • Move administration related hooks to admin-filters.php #54795
\n\n\n\n

Update on the Webfonts API and Style Variations in Twenty Twenty-Two

\n\n\n\n

A prior announcement for WordPress 6.0 Beta 1 included a reference to “Webfonts API: Manage local fonts with PHP or theme.json”, as a feature that would be included in the release. WordPress 6.0 Beta 3 will allow theme authors to use webfonts in theme.json, with a public API for plugins to register and enqueue webfonts available in a future version for WordPress. Beta 3 will also include three new style variations to the Twenty Twenty-Two default theme.

\n\n\n\n

How to Help

\n\n\n\n

Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this detailed guide that will walk you through how to get started.

\n\n\n\n

If you think you have run into an issue, please report it to the Alpha/Beta area in the support forums. If you are comfortable writing a reproducible bug report, you can file one on WordPress Trac. This is also where you can find a list of known bugs.

\n\n\n\n
\n\n\n\n

Thank you to the following contributors for collaborating on this post: @dansoschin  @webcommsat, @audrasjb

\n\n\n\n
\n\n\n\n

And now another WordPress haiku:

\n\n\n\n

Release day is near
6.0 abounds with joy
New features soon here

\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:\"12690\";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:60:\"\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 6.0 Beta 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2022/04/wordpress-6-0-beta-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 19 Apr 2022 16:43:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{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: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=12666\";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:337:\"WordPress 6.0 Beta 2 is now available for testing! This version of the WordPress software is under development. Please do not install, run, and test this version of WordPress on a production or mission-critical website. Instead, it is recommended that you test Beta 2 on a test server and site.  You can test the 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s: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:5119:\"\n

WordPress 6.0 Beta 2 is now available for testing!

\n\n\n\n

This version of the WordPress software is under development. Please do not install, run, and test this version of WordPress on a production or mission-critical website. Instead, it is recommended that you test Beta 2 on a test server and site. 

\n\n\n\n

You can test the WordPress 6.0 Beta 2 in three ways:

\n\n\n\n

Option 1: Install and activate the WordPress Beta Tester plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).

\n\n\n\n

Option 2: Direct download the beta version here (zip).

\n\n\n\n

Option 3: Use WP-CLI to test: wp core update --version=6.0-beta2
Do not use this option if your filesystem is case-insensitive.

\n\n\n\n

The current target for the final release is May 24, 2022, which is about five weeks away. 

\n\n\n\n

Additional information on the full 6.0 release cycle is available.

\n\n\n\n

Check the Make WordPress Core blog for 6.0-related developer notes in the coming weeks, which will detail all upcoming changes.

\n\n\n\n

What’s New In Beta 2

\n\n\n\n

As a reminder, contributors have fixed 209 tickets in WordPress 6.0, including 110 new features and enhancements. Each beta cycle focuses on bug fixes, and more are on the way with your help through testing. Here are a few of the changes you will find in Beta 2 specifically: 

\n\n\n\n
  • Block Editor: Prevent styles from being added to the site editor (#55567)
  • Patterns REST API: Add ‘inserter’ to the schema  (#55567)
  • Don’t load remote patterns twice in WP_REST_Block_Patterns_Controller::get_items (#55567)
  • Add the ability to filter the whole notification email in retrieve_password (#54690)
  • Avoid translating empty plugin headers (#54586)
\n\n\n\n

Note on Webfonts API

\n\n\n\n

Last week’s announcement for WordPress 6.0 Beta 1 includes a reference to “Webfonts API: Manage local fonts with PHP or theme.json,” as a feature that would be included in the release. This specific functionality was not included in Beta 2 but may be available at RC.

\n\n\n\n

How to Help

\n\n\n\n

Testing for issues is critical for stabilizing a release throughout its development. Testing is also a great way to contribute to WordPress. If you are new to testing, check out this detailed guide that will walk you through how to get started.

\n\n\n\n

If you think you have run into an issue, please report it to the Alpha/Beta area in the support forums. If you are comfortable writing a reproducible bug report, you can file one on WordPress Trac. This is also where you can find a list of known bugs.

\n\n\n\n
\n\n\n\n

Thank you to the following contributors for collaborating on this post: @dansoschin, @annezazu, @costdev, @priethor

\n\n\n\n
\n\n\n\n

And now a WordPress Haiku:

\n\n\n\n

We code fervently

\n\n\n\n

A breathless pause for the test

\n\n\n\n

Key tapping resumes

\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:\"12666\";s: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\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 13 Sep 2022 02:50:27 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Wed, 07 Sep 2022 22:55:04 GMT\";s:4:\"link\";s:63:\"; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 1\";}}s:5:\"build\";s:14:\"20220104144308\";}','no'),(682721,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1663080628','no'),(682722,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1663037428','no'),(682723,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1663080630','no'); INSERT INTO `wp_options` VALUES (682724,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WPTavern: Matt Mullenweg Renews Push for Canonical Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=137744\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wptavern.com/matt-mullenweg-renews-push-for-canonical-plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8930:\"

During WordCamp US’ contributor day this weekend, Matt Mullenweg published a renewed call for WordPress’ Make teams to adopt a plugin-first approach when developing new features for core. He revived the notion of canonical plugins, first introduced to the WordPress community in 2009 as a means for delivering optional features to users with a higher level of confidence than regular plugins:

\n\n\n\n
\n

Canonical plugins would be plugins that are community developed (multiple developers, not just one person) and address the most popular functionality requests with superlative execution. These plugins would be GPL and live in the WordPress.org repo, and would be developed in close connection with WordPress core. There would be a very strong relationship between core and these plugins that ensured that a) the plugin code would be secure and the best possible example of coding standards, and b) that new versions of WordPress would be tested against these plugins prior to release to ensure compatibility. There would be a screen within the Plugins section of the WordPress admin to feature these canonical plugins as a kind of Editor’s Choice or Verified guarantee. These plugins would be a true extension of core WordPress in terms of compatibility, security and support.

\nJen Mylo – Canonical Plugins (Say What?)
\n\n\n\n

The WordPress Plugins Directory is just one plugin away from crossing 60,000 (at the time of publishing). In contrast to the idea of canonical plugins, the official directory is still like the wild west in terms of what users can expect from plugin authors. Mullenweg cited several plugin scenarios that are not ideal for users – such as a plugin being controlled by a single company and evolving to go more towards a pro version or removing previously free functionality and putting it behind an upgrade.

\n\n\n\n

Canonical plugins are meant to provide a trustworthy alternative to plugins where authors’ motivations may not put users first. It also provides an avenue for core contributors to demonstrate the demand for features they want to land in WordPress.  A few projects like MP6, Gutenberg, and the REST API have taken this path into core.

\n\n\n\n

“We are reaching a point where core needs to be more editorial and say ‘no’ to features coming in as ad hoc as they sometimes do, and my hope is that more Make teams use this as an opportunity to influence the future of WordPress through a plugin-first approach that gives them the luxury of faster development and release cycles (instead of three times per year), less review overhead, and and path to come into core if the plugin becomes a runaway success,” Mullenweg said.

\n\n\n\n

“I am very conscious that when people are aiming to have something in core, a ‘no’ or ‘not now’ can be frustrating and sometimes create artificial pressure to put something in before it’s ready, as I believe happened with the REST API in WP 4.4.”

\n\n\n\n

In a related post that inspired the renewed discussion on canonical plugins, Mullenweg weighed in on the controversial WebP by default proposal that had recently received new objections from WordPress lead developers. Contributors have been working feverishly to revise their approach in time for 6.1.

\n\n\n\n

Mullenweg recommended these new features as a prime candidate for the canonical plugin pathway, suggesting it would give more time for the ecosystem around WebP to mature:

\n\n\n\n
\n

 I am interested in supporting new formats and improving performance, but I think this change being pushed by default to users when they upgrade to 6.1 is a lot for right now, including with some of the clunky interactions OSes still have around webp (and HEIC!) files.

\n\n\n\n

I’m happy for support for working for webp and HEIC files to stay in core, as we should be liberal in what we accept and work with, but not with the change to convert everything to webp when JPEGs are uploaded.

\n
\n\n\n\n

The Performance team plans to discuss this in tomorrow’s scheduled chat. It’s not clear yet whether the recent WebP by default efforts will be punted to canonical plugin status or if some part of it may still land in 6.1.

\n\n\n\n

Responses to the call for more canonical plugins were mixed, as some immediately recognized the increased burden on maintainers of these plugins.

\n\n\n\n

“WP just needs to get over it’s aversion to optional features,” WordPress developer Jon Brown said. “Features that can be enabled/disabled. ‘Decisions not options’ is a great ethos when it’s about keeping things simple for users but it seems to have been thrown out the window with Gutenberg UX, and turned into axiom when discussing adding trivially simply options to the settings page.”

\n\n\n\n

iThemes-sponsored contributor Timothy Jacobs said he is not necessarily in support of adding more options to Core but thinks canonical plugins could be presented in a similar way to options.

\n\n\n\n

“That doesn’t mean the UI has to be just searching through the plugins directory for something you want,” Jacobs said. “The canonical plugins could be exposed in maybe a ‘settings-like’ UI. I think Import methods are a bit hidden away in the Tools menu, but something like that perhaps.”

\n\n\n\n

Core contributor Torsten Landsiedel said the difference between canonical plugins and feature plugins is not clear. The distinction may be that canonical plugins include those that may never belong in core but are still important for users.

\n\n\n\n

“It sounds like the ‘WordPress importer’ plugin could be a canonical plugin,” Landsiedel said. “Not sure if this a good example for a *thriving* plugin. Does not support featured images, struggles with high amounts of posts/media, etc.

\n\n\n\n

“The useful Health Check plugin struggles with missing people helping out.

\n\n\n\n

“How do we prevent those plugins (whatever called) from not getting enough contributors? I think an importer is a crucial tool, but also not necessary in core (I can install it if I need it, that’s okay) – but it should work and at the moment this does not work well. But I don’t see much interest from the dev community to help fix this (maybe because they use WP CLI and do not care about this plugin?)”

\n\n\n\n

WordPress core contributor Colin Stewart said that while he agrees features as plugins first is useful for new features, it requires “a much better metric than ‘runaway success,’ for inclusion in core.

\n\n\n\n

“Some features are important for stability, and protect users from issues that give them a headache multiple times during their website’s lifetime, but aren’t something users might think to search for in the plugin repository, or install on sight,” Stewart said. “Rollback is such a feature, as is Site Health, Privacy Export/Erase, and such.

\n\n\n\n

“A formal decision-making process for proposals would be incredibly helpful. This topic is coming up regularly now.”

\n\n\n\n

Mullenweg offered nearly two dozen ideas for canonical plugins the Make teams could consider and suggested the teams themselves could likely come up with better ideas. Imagining all these new features in play, it would be like a renaissance of innovation in the admin. This is an exciting prospect that could benefit WordPress users as long as the plugins are featured in such a way that they are easy to adopt. Early commenters on the idea raise legitimate concerns about the lack of maintainers, as history shows support for some of the existing canonical plugins is somewhat patchy.

\n\n\n\n

“I hope it sparks discussion at contributor day and beyond on how we can utilize plugins better to increase the speed of evolution for WordPress, keep core light, fast, and opinionated, and do so while saying ‘yes’ to more ideas and experimentation,” Mullenweg said.

\";s: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, 13 Sep 2022 02:30: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"Gutenberg Times: WordCamp US, What’s new in WordPress 6.1, Style Variations and The Future of Themes – Weekend Edition 228\";s: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=22049\";s: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:128:\"https://gutenbergtimes.com/wordcamp-us-whats-new-in-wordpress-6-1-style-variationx-and-the-future-of-themes-weekend-edition-228/\";s: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:15879:\"

Howdy,

\n\n\n\n

Greeting from San Diego and WordCamp US Contributor Day! The last four days were filled with catching up with friends, conversations about new cool developments, themes and contributing to WordPress.

\n\n\n\n

But the time didn’t stay still, and there is so much more happening around Gutenberg and WordPress.

\n\n\n\n

This is a video heavy edition with recordings from WordCamp US talks, as well as new workshops available on WordPress TV.

\n\n\n\n

Enjoy.

\n\n\n\n

Yours, 💕
Birgit

\n\n\n\n\n\n\n\n\n\n\n\n

Conversations at WordCamp US

\n\n\n\n

Artur Grabowski gave me a demo of Launch, a new product by Extendify. The team works with hosting companies to install a most modern onboarding experience for their WordPress customers to reduce the very high churn rate of 50% customers leaving for SaaS CMSs. Launch provides the “most fool-proof solution to onboard WordPress customers with just a few clicks” the new site owner sees a personalized site with vertical-specific copy and images. It integrates seamless with WordPress instance, is built with native WordPress components and does not use 3rd party page builders.

\n\n\n\nExtendify Launch screenshot, courtesy of Extendify\n\n\n\n
\n\n\n\n

Aaron Edwards demonstrated the early beta version of Iamjinn’s newest product: a plugin to bring the magic of AI Image generation to WordPress. The prompt for testing the image generation API was “Young female assembling blocks in the right corner of a car repair shop” The first set was generated was in the style of Mexican painter Frida Kahlo, the second set in the style of Spanish painter Salvador Dalí and the third in Comic Book Style.

\n\n\n\n\n\n\n\n

Last week, I spent Sunday morning in Midjourney’s Discord server and created last week’s featured image with a similar prompt. So, I was thrilled when I met Aaron Edwards, and he was willing to give me a tour and access to the early Beta. If you are interested, you can request beta access, too.

\n\n\n\n

Developing Gutenberg and WordPress

\n\n\n\n

In her post TT3 default theme: Announcing style variation selections, Channing Ritter wrote: “These variations were selected in an effort to feature the most drastically different set of variations possible — so in many ways, we were looking at what would work best as a collection versus selecting our favorite standalone submissions.”

\n\n\n\n\n

You can see the variations in below video.

\n\n\n\n\n\n\n\n\n

In her article, WordPress Announces 10 Style Variation Selections for Twenty Twenty-Three Theme, Sarah Gooding covers the unveiling of the style variations submitted by community contributors to be bundles with the new default theme.

\n\n\n\n

What’s New in WordPress 6.1

\n\n\n\n

If you’d like to get a head start on what changes will come with WordPress 6.1 you have a few options.

\n\n\n\n

Jonathan Pantani announced that the release team will hold a 6.1 Product Walk-Through on September 13 at 16:00 UTC (12:00 EDT). “WordPress 6.1 release squad members will join #core contributors from #core and the broader WordPress community to conduct an informal preview of the major features in the upcoming release.”

\n\n\n\n
\n\n\n\n

September 19th, 2022, starting at 6pm MDT / 8 pm EDT, I will be discussion WordPress 6.1 new features in a virtual meeting with the members of WordPress Meetup group in Boulder, CO. You can join us via Meetup

\n\n\n\n
\n\n\n\n

Carlo Daniele did a deep dive via his blog post for Kinsta: What’s New in WordPress 6.1: JPEG to WebP Conversion, Fluid Typography, Improved Template System, and Much More!

\n\n\n\n
\n

🎙️ New episode: Gutenberg Changelog #71 – Gutenberg 13.8, Fluid Typography, updates to the Block API and more – with co-hosts Grzegorz Ziolkowski and Birgit Pauli-Haack

\n
\n\n\n\n

Theme Development for Full Site Editing and Blocks

\n\n\n\n

You can watch the recording of Rich Tabor‘s talk at WordCamp US about A New Era of WordPress Themes is Here: Block Themes from the live stream on YouTube. Tabor also tweeted the essence of the talks in this Twitter Thread including links to mentioned references and plugins.

\n\n\n\n
\n\n\n\n

Michelle Schlup walked us through the evolution of themes in WordPress, the advent of Design Systems, the Atomic design of Block themes and the concerns and consideration of a change in how you create Themes in WordPress. Her talk at WordCamp US is available on YouTube (via the livestream). Her slidedeck is available on Speakerdeck: The Future of Themes: Designing for the Block Editor and Beyond

\n\n\n\n
\n\n\n\n\n

 “Keeping up with Gutenberg – Index 2022” 
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. 2021 on. Updated by yours truly. The index 2020 is here

\n\n\n\n\n

Building Blocks and Tools for the Block editor.

\n\n\n\n

In this video: Styling your WordPress Blocks, Jonathan Bossenger guides new block developers through the process of styling the Edit component and the save function of a newly created WordPress block.

\n\n\n\n
\n\n\n\n

Nick Diego invited WordCamp US attendees: Let’s build a Custom Block in 15 Minutes. You need to watch the YouTube recording from the live stream to find out if 15 min are enough.

\n\n\n\n
\n\n\n\n

Ryan Welcher presented on Extending WordPress with Slotfills and you can watch it via YouTube. He also published his code on GitHub: WordPress Slotfill System.

\n\n\n\n
\n\n\n\n

Customizing Core Blocks for Clients was the topic of Alex Ball‘s talk at WordCamp US

\n\n\n\n\n

Need a plugin .zip from Gutenberg’s master branch?
Gutenberg Times provides daily build for testing and review.
Have you been using it? Hit reply and let me know.

\n\n\n\n

\"GitHub

\n\n\n\n\n

Using the Block editor

\n\n\n\n

In this video on WordPress TV, Sarah Snow reveals: How Do They Do That? The (Very) Basics of Block Theme Development. Have you ever wondered how block themes are developed from an idea, through a Figma file, into WordPress, and beyond? If so, this recording of social learning space event is for you. Snow walked intermediate WordPress users through the high-level process many theme developers take to design a theme from start to finish.

\n\n\n\n
\n\n\n\n

Evan Mullins‘ talk at WordCamp US was titled: FSE For the Win. Mullins wrote in the session description: “Personal branding and online presence are made easier with full site editing! Do you have a personal site? Is it attractive? Is it current? No more excuses, full site editing makes it too easy not to put your best website out for the world to see. Put up a photo with a few links, a resume, recent projects, a collection of your favorite social media, a simple link tree, etc. We’ll go through some fun examples and see some blocks and block patterns to quickly get up and running.” See the YouTube livestream.

\n\n\n\n
\n\n\n\n

Creating a new header with blocks was the topic of Wes Theron‘s workshop on meetup. The recording is now available on WordPress TV. Explore how to build a header from scratch using a block theme! Gain a more profound understanding of how blocks are nested to create a header, and how to replace a header template part.

\n\n\n\n
\n\n\n\n

Darren Either created a recording of how he created the first iteration of the Woo Swag Store homepage using FSE, Basti Theme, and various WooCommerce store editing features. The Basti theme by Anariel Design is available in the WooCommerce Marketplace, documented here

\n\n\n\n
\n\n\n\n

Anders Norén published his fourth block theme called Bjork, and introduced it in his blog post. He wrote: “Björk has a very classic blog theme structure, with a sidebar navigation to the left and the content to the right. You’ve seen hundreds of these WordPress themes before – I’ve released like six of them myself – but with the advent of block themes, everything old is new again. There aren’t many block themes with this structure on the theme directory yet.”

\n\n\n\n

Sarah Gooding reviewed it in this article for the WPTavern: Anders Norén Releases Björk, a Free WordPress Block Theme for Blogs and Personal Websites

\n\n\n\n
\n\n\n\n

Marko Segota explains in his post, How to Create a Header in a Block WordPress Theme (FSE)? “For a long time header layout was the least customizable part of a WordPress theme, but with the full-site editing (FSE) (that’s changed.” he wrote.

\n\n\n\n\n

Featured Image: Auto-genrated Image by Imajinn AI Block

\n\n\n\n
\n\n\n\n

Don’t want to miss the next Weekend Edition?

\n\n\n\n

We hate spam, too and won’t give your email address to anyone except Mailchimp to send out our Weekend Edition

Thanks for subscribing.
\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 12 Sep 2022 03:54:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:2;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Post Status: Post Status Excerpt (No. 68) — On the Road to WordCamp 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=121658\";s: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://poststatus.com/on-the-road-to-wordcamp-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:41475:\"

In this episode Dan and Ny are tired! — but excited about heading to their first WordCamp of any kind. They talk about the things they\'re looking forward to seeing and doing at WCUS and in San Diego. Lots of interesting speakers and talks! Contributor day! Karaoke. Food comes up — a lot.

\n\n\n
\n\n\n\n

Estimated reading time: 29 minutes

\n
\n\n\n\n
\n\n\n\n\n\n\n\n
\n\n\n\n

Dan and Ny are looking forward to attending WordCamp US this week, which is a first for them both. In a slightly more casual conversation touching their usual topics — the business of WordPress, careers, and community — they share the things they\'re looking forward to seeing and doing at WCUS and in San Diego.

\n\n\n\n

So it\'s hard for people in the community to kind of branch out and communicate online. So imagine how hard it is for people who are new!

Nyasha Green
\n\n\n\n

Some of the WCUS sessions they\'re interested in have to do with WordPress security and bug bounty programs, cross-cultural communication, WordPress and performance, and getting young people into WordPress. Other tech and open source conferences also come up, as Ny is planning to attend All Things Open 2022 in Raleigh, North Carolina.

\n\n\n\n

Finally, Ny and Dan discover they both have non-tech backgrounds and started reading J.R.R. Tolkien at an early age. Ny talks about learning several languages and reading The Hobbit in Latin.

\n\n\n\n
\n
\n

\"🙏\" Sponsor: Pagely

\n\n\n\n

Top-Tier Managed WordPress hosting solutions for Enterprise, the Public Sector, and Media companies. We invented Managed WordPress and we never stopped raising the bar. Expect Extraordinary!

\n
\n\n\n\n
\n\"Pagely\"
\n
\n\n\n\n

\"👋\" Credits

\n\n\n\n\n\n\n\n

Every week Post Status Excerpt will bring you a conversation about important news and issues in the WordPress community and business ecosystem. \"🎙\"

You can listen to past episodes of The Excerpt, browse all our podcasts, and don’t forget to subscribe on Spotify, Amazon Music, Google Podcasts, iTunes, Castro, YouTube, Stitcher, Player.fm, Pocket Casts, Simplecast, or by RSS. \"🎧\"

\n\n\n\n

Transcript

\n\n\n\n

Dan Knauss: Morning. Ny

\n\n\n\n

Nyasha Green: good morning, Dan. How are you?

\n\n\n\n

Dan Knauss: All right. It\'s gonna be a busy, busy week prepping for travel to, um, word camp us. I\'m I\'m sure you\'re running fast and. hopefully getting some, some rest in there too, but how, how are things going

\n\n\n\n

Nyasha Green: on there? I actually am getting rest. I think the holiday helped, but yeah, I\'m definitely running around like a chicken with a Ted cut off and , I\'m hoping I don\'t forget to pack anything, but I\'m very excited.

\n\n\n\n

This is going to be my first big word camp and my first time in San Diego. So I\'m super excited.

\n\n\n\n

Dan Knauss: Yeah, me too. Yeah. I. haven\'t been down LA in a while, but yeah, never San Diego and first word camp. Um, yeah, the labor day was nice. It\'s one of those, uh, Canada has every province finds a way to have a, a long weekend every month.

\n\n\n\n

So you have a, there\'s always a Monday in the month off and they coincide with the us one. It probably as much as possible, although Thanksgiving is totally different time and oh yeah. so it\'s, it\'s interesting when you, you really, the rest of the world gets dragged along by the us holiday schedule, especially the big.

\n\n\n\n

Shopping ones and you know, nothing stops, email, doesn\'t stop, everything keeps going. And you know, sometimes it\'s a, it\'s a family day or , you know, a long weekend and no one else is, is, uh, aware of that.

\n\n\n\n

Nyasha Green: It sounds lovely.

\n\n\n\n

Dan Knauss: It can be, yeah. I I\'ve been slow to, to adjust to it. They kind of sneak up on me. well, what are you, what are you anticipating doing at, um, at word camp?

\n\n\n\n

What are you looking forward to?

\n\n\n\n

Nyasha Green: I\'m looking forward to meeting a lot more people in the community. I\'ve only met a lot of people through, um, like Twitter, mostly and you know, the occasional popup on a podcast. So I\'m really excited to meet different people and talk with them and pick their brains. Oh yeah.

\n\n\n\n

In private. So that\'s going to be very awesome. What about you?

\n\n\n\n

Dan Knauss: Well, there\'s some, some lots of good talks. I\'m. wondering how I can fit that in and the hallway stuff. And there I\'ve, I\'ve met a, a number of our, our members and people. I happened to have known for a long time earlier this year at one, at a retreat we did.

\n\n\n\n

Um, but yeah, there will be a lot of people I meet for the first time. And it just, it seems like a lot to try to fit in at one point, but I\'m looking forward to contributor day where maybe someone where I can get, I can get. Oriented and, and doing something helpful. I, I, I really wanna get some time to, um, figure out how to ease into, to some things I can help with on a weekly basis.

\n\n\n\n

And it\'s just been kind of nuts lately. So that\'s been tricky. Yeah,

\n\n\n\n

Nyasha Green: that\'s gonna be awesome. I\'m really looking forward to that as well. Like I think with all of us in a room, it\'ll be a little easier than trying to, you know, do it over at the internet.

\n\n\n\n

Dan Knauss: Oh yeah. Yeah. There\'s so much stuff that can be explained directly.

\n\n\n\n

Um, Synchronis communication at least, or if someone right there at your shoulder, um, that, you know, one more tab, one more thing to read. You know, I find like after, you know, after the productive hours of, of work 3, 4, 5 hours of if it\'s reading intensive and man, I just have to read a lot of stuff. It, you just lose that attention and processing ability.

\n\n\n\n

Um, Do you find that? Do you just. Where you\'re trying to read, you\'re scanning through something and you just like, what, what am I, oh yeah. What is, what was this about?

\n\n\n\n

Nyasha Green: And constantly starting over. Oh yeah. it happens a lot.

\n\n\n\n

Dan Knauss: and when you\'re actually trying to learn a workflow or a process or a tool or something like that, you kind of want to get it in muscle memories.

\n\n\n\n

You wanna get it, or in some kind of whatever, part of your brain where you just don\'t have to like driving, you don\'t have to think about it. And, um, yeah, it\'s good to do that. First thing in the morning.

\n\n\n\n

Nyasha Green: Um, is this your first work camp? Like big one? Yeah. Yeah, yeah. And

\n\n\n\n

Dan Knauss: of any of any really? Um, when I was, um, first lived in a, in a city that was big enough to have things like that.

\n\n\n\n

Although I don\'t, I don\'t think Milwaukee\'s ever had a. I don\'t know. I wouldn\'t, I shouldn\'t say that there there\'s, there\'s a ton of WordPress people there mm-hmm um, I don\'t know if they\'ve had a, a word camp, but they didn\'t back then. So I was the, the little open source tech scene was taking off and it was mostly DRAL people around the Makerspace and those of us who did things in WordPress, where, um, well, WordPress was.

\n\n\n\n

Quite young at that point, I was more into Jula.

\n\n\n\n

There was that going on? So, you know, there was, there was kind of a general, there was a, um, bar camp that was a big deal, um, bar camp. What is that have bar camps like food bar? It was, um, it was not a platform specific thing, but it was getting dominated by the local Dal people and, uh, which I was totally into as well.

\n\n\n\n

Um, but it was a more general, um, uh, coder camp hacker kind of hacker space filled up with tons of kids and. You know, we\'re all younger then. Um, and I\'m yeah. I\'m, I\'m curious about the age demographics, uh, you know, I, I feel WordPress and word camps. We really need to, um, find ways to diversify in all directions, including oh yeah.

\n\n\n\n

Uh, age.

\n\n\n\n

Nyasha Green: Oh, I\'m definitely interested in that as well. my, um, husband actually asked me, he was like, is gonna be a lot of people your age. And I was like, I don\'t know. Um, you know, , I know in some people at the company, my age that are going, but I was like, I don\'t know. I was like, this is going to be an interesting experience and it\'s not just WordPress.

\n\n\n\n

Um, I\'ve been to a lot of other big, uh, tech conventions though, and conferences and meetups mm-hmm and they\'ve been pretty diverse in terms of age, um, even race as well. I\'m really interested to see how work camp compares, especially since I\'m going to all things open in November. I\'m really excited for that.

\n\n\n\n

That\'s in Raleigh. and yeah, I\'m just very excited for my first work camp. I\'m I\'m already like prepping to go to work camp Asia as well. So hopefully it just blows my mind and I wanna go to all of them. I

\n\n\n\n

Dan Knauss: wish, I wish I, well, I may be a few more here and there, but yeah, I\'d love to, um, yeah, Raleigh, I lived there for a number of years and university years and they\'re not real nice, nice place.

\n\n\n\n

So you\'ll have to write about that or tell us all about the all things. Yeah, we\'ll talk about it. Mm-hmm um, but more of a broad creator, uh, economy focused conference, I think. Right. Um, but

\n\n\n\n

Nyasha Green: well, all things open source mm-hmm yeah. Yeah. So yeah,

\n\n\n\n

Dan Knauss: age diversity is great. I like it. I I\'ve enjoyed when I went back to classroom university.

\n\n\n\n

Teaching part-time a few years back after raising my own kids. And it was totally different than when like 20 years before when I had started. And hadn\'t, you know, I was, I was barely older than my students. um, I don\'t know. The dead perspective is sometimes nice when you\'ve meowed out and understand people need connection and confidence.

\n\n\n\n

Ahead of technical skill, you know, otherwise they just think you\'re saying you\'re doing everything wrong. Mm-hmm and yeah. So it\'s, it\'s great to have all, all ages. I love having older people around too, for their experience and usually come or

\n\n\n\n

Nyasha Green: approach. Are you, are you going to be in dad mode at work camp?

\n\n\n\n

Oh, I don\'t

\n\n\n\n

Dan Knauss: know. I don\'t know where I. I can come in at all. never really know. It depends on how much I sleep and I don\'t think there\'s that much sleeping that happens when you\'ve got party after party. Another other things going on. Um, yeah, I\'ll try to. Keep the energy up, but I\'m old. I ,

\n\n\n\n

Nyasha Green: you\'re not old.

\n\n\n\n

Dan Knauss: yeah, I can fool people, but oh yeah. It\'s an old,

\n\n\n\n

Nyasha Green: so when we get to karaoke and it\'s time for our duet, I don\'t wanna hear you say, oh, now I can\'t do this. I\'m tired.

\n\n\n\n

Dan Knauss: you pick a song yet? You got a place

\n\n\n\n

Nyasha Green: where I have six or seven songs. So you can\'t tell me no, like, I\'m gonna say Dan, like you can\'t say no to all six

\n\n\n\n

Dan Knauss: or seven.

\n\n\n\n

Okay. As soon as I open my mouth, though, you\'re gonna be like, okay.

\n\n\n\n

Nyasha Green: That\'s it? No, no, no. That\'s, that\'s what karaoke is for you. Don\'t take people who can sing to karaoke. That\'s the worst. That ruins karaoke

\n\n\n\n

Dan Knauss: ah, yeah. Yeah. I haven\'t been in to one in a while. I like watching \'em there\'s a, a terrible place to eat dive bar, you know?

\n\n\n\n

And they\'ve like two kinds of bad Canadian beer. Okay. Downtown here. And it\'s just a weird place, but it\'s, it\'s right down from a, a, a. tall building that has a, a lot of retired people in it. And there were these, um, cute elderly ladies that would, would come down there and do do it along with, it was just the weirdest group of people.

\n\n\n\n

It was all ages and all love it kinds. And so, you know, some people were really fabulous at it and others were just fabulously. amateur and, um, you never know what you\'d get. It was, it was just great to watch. Um, I, I don\'t know that I\'ve seen that many. I\'ve definitely seen some, uh, in-home large house party, Asian karaoke that.

\n\n\n\n

it was just a D totally different thing. Oh,

\n\n\n\n

Nyasha Green: I love it. We, we did Korean style karaoke in Vegas. And when was that? March? Oh my God. I loved it so much. We just had like buckets of Soju and like, we were singing all night and dancing. I had a tambourine. It was so great. I slept in the Uber on the way back to the whole hotel.

\n\n\n\n

was wonderful. there\'s

\n\n\n\n

Dan Knauss: always someone who, who thinks they\'re really good and is really earnest. And they\'re, you know, the dog\'s starting to how and .

\n\n\n\n

Nyasha Green: Oh, that\'s me. That\'s me. Oh, that\'s me. I can\'t wait. Oh, that\'s me. I\'m ready. I\'m ready. I\'m so ready.

\n\n\n\n

Dan Knauss: yeah, I know. Mm. Yeah, I was, I was not trained properly, but at, at any kind of music really too bad.

\n\n\n\n

My, my girls are, they\'ve had tons of tons of musical. Instruction, which they enjoy. But now I, I wanna kick their, their butts out into the street for busking. You can get be a licensed busker in Edmonton, in the summers. Um, but that\'s a totally different thing when you\'re performing live with other people.

\n\n\n\n

And it\'s a big, big confidence jump. Even if you do have the skills confidence. You gotta, you gotta push yourself out there and do it, I guess. So it\'s not, not my thing, but I wish I wish I could.

\n\n\n\n

Nyasha Green: Well, we will make them proud this year. Somehow. See if someone gets video, it\'ll be okay. Oh, well,

\n\n\n\n

Dan Knauss: if anything ends up on the internet, that might be bad.

\n\n\n\n

I\'m I\'m not gonna share

\n\n\n\n

Nyasha Green: that. No it for, okay. We\'ll discuss this later, so, okay. What speakers or sessions are you most excited to see at word? Um,

\n\n\n\n

Dan Knauss: I want, well I\'m Robert Rowley is a fun, you know, wild and crazy guy. I\'ve enjoyed talking books and random things with, and, and security is he he\'s with he\'s the security advocate at patch stack.

\n\n\n\n

And. Uh, he\'s, he\'s giving a talk. He did a really cool, crazy thing he\'s done before he did for us, but he he\'s done mm-hmm before where he teaches lock, picking, it\'s sort of a side hobby and he uses it to talk about security and philosophy of life and, and all kinds of, um, things like that. And so I\'m sure he\'s gonna.

\n\n\n\n

Entertaining and interesting. And it\'s, it\'s just security is a topic. I, I really like, and I\'ve paid more attention cuz he writes in podcasts about it quite a bit. Um, patch stack has a really cool, um, approach where they\'re, they\'re really encouraging collaboration through a network that they, um, I don\'t.

\n\n\n\n

It, it\'s a very, it\'s an open network. They sponsored, I, I guess they\'re kind of the ringleader, but anyone can, can join in the security profession and try to work to keep WordPress safe. I know they just, um, they partnered with hosting her to provide their, um, services. Um, both of those companies are, um, I think lot Vian, uh, mm-hmm multi.

\n\n\n\n

business members of, of post status. And they\'re, it\'s nice to see people get together and collaborate. And so they\'re providing it is security, uh, heads up, Hey, update your stuff inside your hosting panel, if you\'re with hosting or, and I noticed that that last little, there was three security, um, uh, patches in the, the little maintenance and security release that, that went out.

\n\n\n\n

Um, mm. the other day, a few days ago, last week. Um, and you don\'t initially find out all the details about it. And Robert later, um, commented on it, that they were actually, the security stuff was, was hunted down. There\'s a WordPress bug bounty program. Google has one too, where you can get mm-hmm money by finding.

\n\n\n\n

So it was, it was something that couldn\'t actually likely be exploited, but, um, within the parameters of, I guess, finding. Some kind of proof of concept that something could be exploited under certain conditions. You, you know, they, they patch that, check it out, learn some things. And, uh, so I think everyone usually assumes that there\'s something bad going on.

\n\n\n\n

Like some bad guys found something or it\'s, it\'s at risk. And sometimes it\'s just penetration testing analysis from the good guys and then they\'re fixing it so nice. It should be good press when, when things get better and stronger, uh, what\'s your number one session, man? I like there\'s all kinds of good stuff in here.

\n\n\n\n

Um,

\n\n\n\n

Nyasha Green: I think my favorite, favorite, favorite? is an anthropologist, a WordPress developer and a lawyer walking to a bar. Mm. Yeah. Cassandra Decker is doing that one about just communicating in the community, which is something I actually wrote about this, um, wrote about this week. And it talks about how to talk about talk with people in the community that may be from different walks of life.

\n\n\n\n

And that title really caught my eye because. I was interested in all three of these careers at one point, you know, I am a WordPress developer now I was interested in being an anthropologist. I even learned Latin for it. oh, really? And the, yeah, I\'m reading the Hobbit in Latin right now. My Latin is like S shotty.

\n\n\n\n

That was a while ago, but I\'m trying to relearn it. So I\'m reading the Hobbit in Latin and then I also was accepted in the law school, but I didn\'t. So I was like, oh, I\'m really, I\'m really interested in this. And I\'m interested in what she has to say. And, you know, it\'s always, I\'m always interested in opening up communication in the community as well.

\n\n\n\n

So that\'s my absolute favorite. I\'m not missing that one.

\n\n\n\n

Dan Knauss: Yeah. That sounds really interesting. I love it. When people do interdisciplinary things or break out of the bubble and, and stuff like that. Mm-hmm , um, I, I didn\'t know that. So, you know, you\'re such. Non argumentative personality. I wouldn\'t think law would be attractive to you.

\n\n\n\n

Are you making

\n\n\n\n

Nyasha Green: fun of me?

\n\n\n\n

Dan Knauss: yeah, you\'d be a great lawyer. Um, you\'re making

\n\n\n\n

Nyasha Green: fun of me. Oh my God. Yeah.

\n\n\n\n

Dan Knauss: Latin. Um, yeah, I, I had to crash course one summer. Um, when I was doing, I did up to some level of, of graduate work in literature and. Literary cultural studies and Renaissance medieval stuff. And yeah, so we have these odd, odd backgrounds we could have might have explored at at one point, but language.

\n\n\n\n

You never really, you can\'t never go wrong. Like that\'s just cool to know, but you must be pretty good if you can read any of, of the Hobbit in, in Latin, which is crazy because Tolkin. Was this major, you know, Brian has probably, if, if you\'re not a token buff, Brian cords is probably said quite a few things.

\n\n\n\n

He seems to be quite a fan.

\n\n\n\n

Nyasha Green: Mm. Um, I, I really like him a lot. Um, my grandmother actually, she had a copy of the Hobbit. I started reading. I tried to read when I was really young and I was like, okay, that goes back on the shelf. And then I read at a later age. So in order to help, I also have it in Spanish. I can speak Spanish and speaking Spanish.

\n\n\n\n

And I guess my limited English I\'m, I\'m joking. Um, Latin comes. It comes kind of easy when I can recognize it, you know, in different languages and I\'m learning Korean right now, so, oh yeah, I know that right. Duo. Yeah. So I\'ll probably eventually get the ho in Korean. So I guess

\n\n\n\n

Dan Knauss: the Hobbit would be easier than Lord of the rings cuz oh yeah.

\n\n\n\n

yeah. I was trying to imagine, like, how would you do Latin? Does Tolkin knew so many languages? Mm-hmm and then he makes. All these Elish languages and different ways of writing it, the war and, or, oh yeah. All these things. Like how, how would you flatten that? All I\'ve always been curious about that. I, haven\'t not gotten fluent enough in another language to really feel, you know, like how do, when you\'re representing an, a different language mm-hmm, in your own language, like, um, Hemingway like used these and thousand and stuff when he\'s like, I think people are speaking in Spanish and, and things, and.

\n\n\n\n

I think it was in for whom the bell tolls mm-hmm how do you indicate a foreign language? You can do kind of dialect or accents and stuff, but, um, that would be tough, especially to learn, I guess, you know, you\'re fluent. If you\'re reading a foreign language and you\'re reading their creative manipulation of it to pretend to be.

\n\n\n\n

doing another foreign language.

\n\n\n\n

Nyasha Green: Yeah. The books I have. Um, I read them on my iPad because, you know, anytime I don\'t understand anything, I can just click and find the word or find the, a reference for the phrase. But they\'re geared toward people who already speak English, who are trained to learn these other languages.

\n\n\n\n

Um, it was something I discovered, cuz I was gonna start with children\'s book. I was like, okay, I\'ll get like cat and a hat in Latin and stuff like that, which I did find some of those as well. And then it was like some people have, they were like the. It\'s written in different languages and, um, they have learning ones geared toward English speakers.

\n\n\n\n

I was like, oh my God. Yes. Cause I love the habit. I was reading it like every year at one point. So it was like, I\'m, I\'m so familiar with it in English, maybe, you know, it\'ll help. And then like I was on the first page in Latin for like three days. I was like, okay, let\'s just break all of this down. And then Spanish, you know, I was going a little faster cuz I can read Spanish, probably the best I can speak it, but I can read it the best.

\n\n\n\n

So that\'s just getting a really familiar. That you\'re really familiar with and going for it in a different language. I feel like that\'s very helpful. You know, the most helpful is talking to people, but the second most helpful.

\n\n\n\n

Dan Knauss: I, yeah, I, I envy that. I wish I, um, had time to go back and, and do more of languages and, and just reading, um, books, uh, and fiction again.

\n\n\n\n

But when I was, yeah, early, that was one of the, the first big books. I read all the tol and stuff. And we had a record, my brother and I , we had a record where it was a, it was like, it was based on the cartoon version of the Hobbit and the dramatic reading. Yeah. I\'ve seen it. Yeah. I could probably do the whole thing.

\n\n\n\n

Um,

\n\n\n\n

Nyasha Green: love it. .

\n\n\n\n

Dan Knauss: Yeah. Well, what else is is cool in, in here? I know, um, Molana cap is, is doing, is teaching, um, WP CLI do you use that at all? I\'ve it\'s been a long time since I played around with it, but

\n\n\n\n

Nyasha Green: I do, I do cool. it doesn\'t make me the happiest, but I do. Cool. No, it\'s cool. I it\'s, I, I know it\'s useful. I just it\'s me.

\n\n\n\n

It\'s not, yeah, it\'s not WSP CLI it\'s me. I\'m the issue.

\n\n\n\n

Dan Knauss: She\'s on that. I know that one kind of jumped. Oh, and the performance, there\'s a performance session with the Felix arts toos going to he\'s on the performance team and has had a, a lot to contribute on that. So, um, I\'m not sure. I guess, talking, talking about, um, performance at scale.

\n\n\n\n

I\'m not sure if this is geared towards probably developers. Hosting people. I\'m just, I\'m curious what, what I might learn there. Um,

\n\n\n\n

Nyasha Green: I like a WordPress for the next generation. Mm. Um, that\'s the one I\'m very interested in. I think Columbia, I\'m so sorry if I say your name, wrong Hodge is doing it. Just talking about, um, entry, uh, barriers for young people and.

\n\n\n\n

You know, I talk a lot about that. I\'m very excited and, um, it\'s going to be a business talk. So I\'m very excited to go to that one as well, and like soak up knowledge so I can like turn around and use it to help people that\'s get into the community.

\n\n\n\n

Dan Knauss: That\'s really, I important. Have you, so you\'re the meetups that you\'re working on starting?

\n\n\n\n

How how\'s that going along? Do you think you\'ll reach a younger demographic with.

\n\n\n\n

Nyasha Green: Yeah, I\'ve had, um, there are people who weren\'t even that I\'m mentoring in tech that weren\'t interested in. WordPress. They\'re interested in now solely after everything I\'ve said to them solely because they know that we\'re, they\'re going to be meetups near them.

\n\n\n\n

So they know that they\'ll be, you know, someone nearby to talk to. About getting into the community versus trying to do it all online. As we talk about, it\'s so hard to get it\'s. So it\'s hard for people in the community to kind of branch out and communicate online. So imagine how hard it is for people who are new and, you know, just having that in person meet up or that person nearby and to be able to meet other people in the community.

\n\n\n\n

It\'s already getting people, you know, my age and younger, who wants to come into the community. So I think it\'s going to be like a big push for word present in these areas that I\'m.

\n\n\n\n

Dan Knauss: Good. Yeah, that\'s really needed. And, um, I hope, hope we\'ll hear more about the mentoring program that Josepha floated on, on Twitter says his, um, yes.

\n\n\n\n

Nyasha Green: In the words I\'m so excited. I\'m so excited about that. I cannot wait.

\n\n\n\n

Dan Knauss: Yeah. Um, really, really an important one, I think. And cuz it does so many things at, at once it\'s um, this just good for people and, and. Relationships, um, anchors people in meaning and, and value that, um, you know, it\'s very basic human stuff.

\n\n\n\n

Um, if we were just training people, technically, you know, that\'s, that\'s not that that\'s not that interesting. Yeah. Mm-hmm ,

\n\n\n\n

Nyasha Green: I mean, it\'s needed to, but yeah, you\'re right. It\'s not that interesting.

\n\n\n\n

Dan Knauss: well, it\'s always an open source. It\'s always tended to. A culture and belonging mm-hmm and, um, mentoring is really what it is.

\n\n\n\n

It\'s a better way to, to approach it, um, to give people not just training options, but relationship options, where you\'re learning from a real person, who\'s connects to other people in this cooperative project. That\'s that\'s.

\n\n\n\n

Nyasha Green: Yeah, I\'m really excited. This is to be so awesome. Like, I, I don\'t sound as excited as I am because I\'m tired, but I will have energy Thursday when I get there Thursday.

\n\n\n\n

Yeah. Do I get there Thursday? I should probably look into that. It\'s Tuesday, but yeah, I will have a lot of energy when I get there.

\n\n\n\n

Dan Knauss: Yeah. I don\'t miss. All right. Miss your flight. Uh

\n\n\n\n

Nyasha Green: oh yeah, no, I\'m flying with, uh, one of my coworkers, so she\'s not gonna let me miss my flight. Thank God. How long

\n\n\n\n

Dan Knauss: is it for you?

\n\n\n\n

You prob you might have further to go than, than me. Um,

\n\n\n\n

Nyasha Green: it\'s only four and a half hours. Five. You gotta direct know it\'s not five, four and a half. Yeah, I got, I got a nonstop direct from Charlotte. So I\'m only 15 minutes away from the airport. I discovered this weekend when I was picking my brother and uncle up.

\n\n\n\n

So I am not far at all from the airport. That is lovely because when I stayed in South Carolina, I would have to drive either an hour and a half to Charlotte to FL somewhere or two hours to Charleston. And it sucked . So it was a all day travel event to go places.

\n\n\n\n

Dan Knauss: Yeah. That\'s. Eh, travel can be the older you get the, not such a fun thing, but, uh,

\n\n\n\n

Nyasha Green: okay.

\n\n\n\n

Dad. Yeah.

\n\n\n\n

Dan Knauss: well, it\'s better without kids along some of the time, but uh, older, older kids. Um, but I\'m going on my own, but yeah, no direct flights anymore. Uh, from, from here, I, I don\'t think, but it\'s about six hours altogether.

\n\n\n\n

Nyasha Green: What\'s the first thing you\'re doing when you, when you land, like what, what\'s the first thing you want to do?

\n\n\n\n

Dan Knauss: Huh? I don\'t know. I\'ll just, uh, I\'ll get over to the place, get over to the joint and unpack, uh, see what\'s going on. I\'m sure people will be pretty well assembled by then. um, gotcha. The town and country. Um, I don\'t know if I don\'t get I\'ll probably want, want to quick do that and then find somewhere to. Um, late or, well, I\'ll probably do that in the way it\'ll be fairly late.

\n\n\n\n

So I don\'t know. It might just step out. That\'s so interested.

\n\n\n\n

Nyasha Green: Yeah. We, there might be like good, good night street food. I don\'t know. This is my first time in San Diego. I\'m really excited. So. , I don\'t know the first thing I\'m doing. I think I\'m enjoying being in California. I love California. I don\'t care what part put me in it I\'ll go.

\n\n\n\n

So that\'s my first thing.

\n\n\n\n

Dan Knauss: I never really been in the Northern end of it. It would probably be more my speed. I don\'t know, originally from the Northeast and a lot of time in the Midwest and in south it\'s, uh, I\'m kind of biased on the Eastern end of the the country and, um, people who aren\'t that relaxed.

\n\n\n\n

Oh,

\n\n\n\n

Nyasha Green: whatever

\n\n\n\n

Dan Knauss: I need. I need a certain amount of road rage around, uh,

\n\n\n\n

Nyasha Green: um, oh, I\'m sure you\'ll get that. I feel like , that\'s that\'s American the American way. No,

\n\n\n\n

Dan Knauss: I, I don\'t miss that, but you know, I, I did like the Northeastern, um, punchiness of, oh, it\'s not necessarily unfriendly, but willingness to engage with people.

\n\n\n\n

Nyasha Green: Blunt, blunt, strangers.

\n\n\n\n

Dan Knauss: Yeah. Yeah. The. Seinfeld experience isn\'t too, too far off the reality, or maybe as it used to be. I, I always enjoy, um, living in a, in a city where you can\'t really control or predict, predict what\'s gonna happen in public space. And, um, for all the soup around here, I haven\'t found a soup Nazi yet, but there\'s usually there\'s usually a good place or some.

\n\n\n\n

Food mogul who controls access to the, the good bond me or something like that. And you gotta please them to make sure. You\'re getting the good stuff

\n\n\n\n

Nyasha Green: now I\'m hungry. I love bombing. I\'m so hungry. Yeah. I that\'s, I really want to, yeah. I wanna try like good Italian and Mexican. I heard it\'s really good in San Diego, but also I wanna try some really good, different Vietnamese, Thai and Japanese.

\n\n\n\n

Those are my, I don\'t know if I\'ll have enough stomach for

\n\n\n\n

Dan Knauss: I\'ll follow you around. Yeah. I\'ve. Enjoy that a lot too. And Edmonton\'s great for all things, Asian and really just in general, it\'s surprising. Um, when you move out here, not knowing anything about it, how much, uh, how much there is and good eats, um, Definitely.

\n\n\n\n

Yeah. The tacos. Um, I\'ve been making margaritas lately cuz the summer\'s ending and I don\'t know, I just got inspired to, uh, to do that. It\'s a really nice drink. I, Milwaukee was great for Mexican. I missed a lot of the places that were were there. That\'s and they\'re a little weak on that. Maybe here. There\'s a few good few good places.

\n\n\n\n

Nyasha Green: Well, I guess next week, we\'re going to talk about like food, right? Like where we ate at work camp. mm-hmm yeah, this is where the word press community ate during word camp with Dan and I, I

\n\n\n\n

Dan Knauss: like it. I know there\'s a contingent. That\'s all interested in the, um, in and out burger. I don\'t know if they\'re big Laki fans, but I\'ve never been to an in and out burger, but

\n\n\n\n

Nyasha Green: I love in and out.

\n\n\n\n

I eat it every time I go to the west coast, I have to eat it like. It\'s not, I couldn\'t even tell you why it\'s so good. It\'s like, not even great, but I love it. And I\'m yes.

\n\n\n\n

Dan Knauss: Hmm. I don\'t have to try it. I, I don\'t know. I mean, I\'m neutral. um, sounds kind of like the white castle, you know, for. Chicago people. Um, don\'t get a bunch of sliders.

\n\n\n\n

I remember the first time as a kid, when I was Chicago, you have to go to white, white castle. Um, I don\'t know if that\'s even a thing anymore. I miss, um, I haven\'t heard people mention that in a long time. And man from North Carolina, I don\'t, I, I miss the, just the. Franchise unpredictable barbecues and big victims and spicy stuff.

\n\n\n\n

But, uh, BOJ angles had was really good. Hot curly fries, poor BOJ

\n\n\n\n

Nyasha Green: angles. what that, yeah. That\'s where everybody comes here and wants Bojangles. Um, is that considered

\n\n\n\n

Dan Knauss: good? My brother walked there when he was in high school once and he\'d get all these bags of curly fries. The only thing I liked. Oh. And.

\n\n\n\n

Someone had like milkshakes with big chunks of peach in them in

\n\n\n\n

Nyasha Green: the summer cook cookout, cookout. That\'s what people like here. They like to come get cookout and Bojangles mm-hmm Bojangles is good. I do like Bojangles cookout is okay. Um, I, I see the, I see the nostalgia and stuff. Why people like it personally, and I hope nobody from North Carolina.

\n\n\n\n

Is like listening in, sorry, Dan. I think the barbecue is way better in South Carolina. I have not been inspired yet to eat more barbecue here. I\'m actually like every time I go home, I eat barbecue cuz I\'m like, I just can\'t eat it in North Carolina, but it\'s only been a month. I\'ll give North Carolina about two more chances to get me some good barbecue.

\n\n\n\n

That might be true,

\n\n\n\n

Dan Knauss: but I\'d take, I take anything. No, one\'s no one\'s doing it up. Um, no, that, that was the Mississippi culture guaranteed that there was always a Sunday Southern barbecue somewhere in Milwaukee. Mm-hmm but uh, I\'ve missed. a long time since then. And you might be right. I was in Aiken, uh, outside Columbia mm-hmm South Carolina, 1993 in the summer at this that\'s a beautiful old town, these big streets and trees pre automobile.

\n\n\n\n

Um, and there was a staying at this kind of cool little. Old fashioned estate that is probably as old as the town. And, uh, they brought in a, um, a, uh, bluegrass band and, you know, roasting the pig in the mm-hmm back garden for eight hours or so, I dunno, it takes a long time. Um, yeah, that was good. That\'s the most memorable one I\'ve I\'ve been at.

\n\n\n\n

Nyasha Green: Oh yeah. You gotta come to South Carolina. I would invite you now, but it\'s like two last minute, but you know, SU the Southern funeral. So I\'ve been back and forth for a funeral arrangements and oh yeah. When I, last time I went, they had burnt ends, macaroni and cheese, barbecue hash, and like chopped barbecue.

\n\n\n\n

Hash rice, which people probably don\'t know what hash is outside of the south. Mm. Um, uh, they had cream corn and like stuffing and, uh, coleslaw and baked beans and ribs. And I was like, oh my God. Yeah. Somebody make a, made a five. Flavored pound cake. Like I was like, I gotta go. Y\'all like, I\'ve gained too much weight.

\n\n\n\n

Like I have to go. I have to see people this week. Like my cheeks are swollen. Like everybody know let\'s everybody stop cooking. And then they\'re like, well, we\'re frying chicken tomorrow. Please stop everybody. Stop. please. You

\n\n\n\n

Dan Knauss: got reminded of your mortality. You may as well eat well

\n\n\n\n

Nyasha Green: you\'re right. Move yourself.

\n\n\n\n

Dan Knauss: You\'re right along, faster, down. Hard to attack

\n\n\n\n

Nyasha Green: trackers. I\'m I\'m here for a good time. Not a long time.

\n\n\n\n

Dan Knauss: yeah. Yeah. Well, yeah, it\'s hard to, hard to pass up. Good, good food. Yeah. Maybe I\'ll make it back out to the so Southeast sometime and yeah, I miss, I been away long enough from a place to, to start to. Miss or remember things affectionately.

\n\n\n\n

Uh,

\n\n\n\n

Nyasha Green: oh yeah. And I gotta bring you your moon pies. I remember you said yeah.

\n\n\n\n

Dan Knauss: Little things like that from man. I don\'t miss working outside in the summers there though. I I\'ll come in the winter.

\n\n\n\n

Nyasha Green: yeah, do, yeah, we have two weeks of winter now, so you\'ll be completely fine.

\n\n\n\n

Dan Knauss: Awesome. Oh, well that\'s gonna warm here too.

\n\n\n\n

All right. Well, I will let you and I. Get through our short week here and oh yeah. Try to pack our bags and, and then, yeah, we\'re gonna sounds like we\'re gonna have a good time. Yeah. We\'re

\n\n\n\n

Nyasha Green: gonna meet up in San Diego. We can\'t have a bad time. I\'m not gonna have a bad time. So you\'re not gonna have a bad time.

\n\n\n\n

No. All right. That\'s math. .

\n

This article was published at Post Status — the community for WordPress professionals.

\";s: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, 10 Sep 2022 00:15:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Olivia Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: WordPress.com Defies Marked Increase in Russian Takedown Demands\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=137723\";s: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:85:\"https://wptavern.com/wordpress-com-defies-marked-increase-in-russian-takedown-demands\";s: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:3531:\"

Automattic published its bi-annual transparency report this week, which highlights the different information and takedown demands received across the company’s services.

\n\n\n\n

Historically, Automattic has used these reports as an opportunity to publicly reaffirm its commitment to actively pushing back against requests that violate users’ freedom of speech and bring attention to abusive takedown demands. In 2014, the company open sourced its DMCA takedown process documents to help others implement their own processes. Past transparency reports have included information on intellectual property disputes, IRUs (reports from dedicated government Internet Referral Units), national security letters, government information requests, and other issues related to hosted content.

\n\n\n\n

In 2021, Automattic published a unified landing page for WordPress.com and Tumblr’s transparency reports, which are now hosted on the same site, aimed at making it easier to navigate and compare the data. In the future this may include the company’s other products like Day One and Pocket Casts, as relevant requests come in.

\n\n\n\n

The most recent report for the first half of 2022, includes information on the Russian censorship requests WordPress.com received.

\n\n\n\n

“Over the past six months, in the wake of the Russian invasion of Ukraine, we have seen a marked increase in the number of takedown demands that target content which is critical of the Russian government and associates,” WordPress.com Community Guardian Stephen McLeod Blythe said. He cited specific examples relating to the Russian invasion of Ukraine:

\n\n\n\n
    \n
  • Fundraising for Ukranian aid
  • \n\n\n\n
  • Outlining Russian history with a perspective on what led to the war in Ukraine
  • \n\n\n\n
  • Alleging criminal activity on the part of Russian oligarchs, and their personal connections to Putin
  • \n\n\n\n
  • Publishing commentary from former Russian soldiers who were critical of the military involvement in Ukraine
  • \n
\n\n\n\n

“In all of these cases, given our concerns about access to critical information from within Russia, and the implications for freedom of expression, we made the determination that we would not geoblock the content at issue,” Blythe said.

\n\n\n\n

The report also included information on how Automattic resolved IP blocks from two major ISPs in Colombia, after the country blocked Tumblr without disclosing the reason. Colombia’s Ministry of Technologies and Communications had blocked the service after discovering a spam blog on the network. Despite the fact that Automattic had already removed the blog, the process of unblocking Tumblr took months.

\n\n\n\n

“Situations such as these are not uncommon, and, as the above example demonstrates, the issue of government censorship online or regional platform blocks cannot be reflected solely by the numbers of takedown demands that are received,” Blythe said. “As a result, we are committed to continually reviewing and expanding the information that we are able to share in our transparency report.”

\";s: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, 09 Sep 2022 21:16: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WPTavern: WordCamp US 2022 Kicks Off Today, Free Livestream Available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=137691\";s: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://wptavern.com/wordcamp-us-2022-kicks-off-today-free-livestream-available\";s: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:2178:\"

WordCamp US 2022 is underway in San Diego, California, following last night’s welcome party for speakers, sponsors, organizers, and volunteers. For many attendees, this is their first in-person WordPress event since 2019, before the pandemic began shutting down conferences.

\n\n\n\n
\n

Good times tonight at the Sponsors / Speakers / Volunteers / Organizers welcoming party. Took the time to practice some photography for this week. #WCUS pic.twitter.com/g8fJPtz3Mi

— Daniel Schutzsmith (At #WCUS WordCamp US) (@schutzsmith) September 9, 2022
\n
\n\n\n\n

Unlike previous events, where attendees numbered in the thousands, this year tickets were capped at 650. They were sold out the first day they went on sale. A smaller crowd should make for a more intimate event where attendees have a higher chance of bumping into the people they hoped to meet.

\n\n\n\n

Opening remarks are expected at 9am PDT. WordCamp US’ schedule includes 41 sessions over the span of two days. Those who are not able to attend in person can still catch the livestream for both tracks, without any special ticket required. Access is free and presentations will be shown live as they are happening on the two tracks:

\n\n\n\n

Sun Track: https://us.wordcamp.org/2022/livestream/sun-fri/

\n\n\n\n

Palm Track https://us.wordcamp.org/2022/livestream/palm-fri/

\n\n\n\n

Virtual participants can use the #WCUS hashtag on Twitter to join in the global conversation.

\n\n\n\n

On Saturday, September 10, Matt Mullenweg will deliver an address at 4:45 pm -5:30 pm PDT and answer live questions from WordCamp US attendees. This will also be streamed live as the last session of the event.

\";s: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, 09 Sep 2022 14:24: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WPTavern: WordPress Announces 10 Style Variation Selections for Twenty Twenty-Three 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:30:\"https://wptavern.com/?p=137672\";s: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://wptavern.com/wordpress-announces-10-style-variation-selections-for-twenty-twenty-three-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:3191:\"

WordPress’ design team has announced the winners of the challenge to create a style variation for the upcoming Twenty Twenty-Three (TT3) default theme. Organizers received 38 submissions from 19 contributors (some submitted multiple variations) hailing from eight countries.

\n\n\n\n

Given the wide range of colors and typography combinations, TT3 is gearing up to be a vehicle for a diverse set of styles from WordPress’ community of designers. Submissions included creative variations for all kinds of design moods – dark with high contrast, bright yellow with a smaller universal type size, a gradient aubergine background, and many more.

\n\n\n\n

Automattic design director Channing Ritter published the selections that made the cut to be shipped with Twenty Twenty-Three:

\n\n\n\n\n\n\n\n

“These variations were selected in an effort to feature the most drastically different set of variations possible — so in many ways, we were looking at what would work best as a collection versus selecting our favorite standalone submissions,” Ritter said.

\n\n\n\n

The selections are not in their final form. Contributors will continue iterating on them, under the direction of design team leaders, until the WordPress 6.1 beta period begins on September 20.

\n\n\n\n

“Some of the changes suggested may be a bit aspirational, but let’s continue pushing to see how opinionated we can make each of these variations,” Ritter said.

\n\n\n\n

Submissions that were not chosen to ship with TT3 may still have a path towards inclusion via an official child theme of the default theme. Contributors discussed how this might work and have closed the issue in favor of creating a separate project for it after TT3 has launched.

\n\n\n\n

“I particularly like the idea of continuing to create style variations beyond those that are bundled with TT3,” Automattic-sponsored contributor Sarah Norris said. “I think this is a great opportunity to introduce people to block themes and building variations, with the help of the community and experienced block-themers. It also provides a space to test Gutenberg PRs, in a similar way to how emptytheme is currently used, but with more opinionated settings enabled.

\n\n\n\n

“I’m not sure about this being part of the current TT3 project, and in my opinion, it would be best to start this initiative soon after TT3 has launched.” 

\n\n\n\n

In the meantime, contributors plan to refine the selected variations, and the child theme project can proceed without affecting the theme’s current timeline.

\n\n\n\n

Check out the announcement to see each of the selected variations in more detail.

\";s: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, 08 Sep 2022 21:21:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"WPTavern: Anders Norén Releases Björk, a Free WordPress Block Theme for Blogs and Personal Websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=137579\";s: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:109:\"https://wptavern.com/anders-noren-releases-bjork-a-free-wordpress-block-theme-for-blogs-and-personal-websites\";s: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:3853:\"

WordPress theme author Anders Norén is at it again with a new minimal block theme for blogs and personal websites. Björk is the 129th block theme to hit the directory and Norén’s 25th free WordPress theme. It follows the release of Poe, a portfolio style theme, less than two months ago.

\n\n\n\n

Although Norén said he is a fan of the Icelandic singer, his new theme is named for his favorite tree. Björk is the Swedish name for birch.

\n\n\n\n

“Birch trees are incredibly resilient, which is why you can find them closer to the tree line on the Swedish fjäll than any other type of tree,” Norén said. “They’re also very pretty to look at.”

\n\n\n\n

The default style for the theme certainly has a birch-like appearance with its white background and use of Albert Sans, a Google font designed by Danish type designer Andreas Rasmussen who was inspired by the type-characteristics of Scandinavian architects and designers in the early 20th century.

\n\n\n\n\n\n\n\n

Desktop viewers will see a sticky sidebar menu for quick navigation links. This disappears on smaller screen sizes in favor of a hamburger menu.

\n\n\n\n

“Björk has a very classic blog theme structure, with a sidebar navigation to the left and the content to the right,” Norén said in a post introducing the new theme. “You’ve seen hundreds of these WordPress themes before – I’ve released like six of them myself – but with the advent of block themes, everything old is new again. There aren’t a lot of block themes with this structure on the theme directory yet.”

\n\n\n\n

Björk includes seven different theme styles, in addition to the default, which can instantly change the look of the website.

\n\n\n\n\n\n\n\n

Norén has also included more than 15 block patterns, which enable users to mix and match and quickly build their own layouts for the front page or other pages. Patterns include designs for featured items with an image, heading, paragraph and button, a testimonials section, multiple hero patterns, call-to-action patterns, and more.

\n\n\n\n\n\n\n\n

When you install and activate the theme for the first time, you get all of the layouts in place, including the front page. This makes it easy for users to get started by simply replacing the content or rearranging it to suit their unique needs. Check out the demo to see approximately how it will look once installed.

\n\n\n\n

Björk was built using Norén’s Davis Blocks theme as a foundation, the same framework used to build Poe, his last release. It’s a small package, with just 500 lines of CSS and no JavaScript.

\n\n\n\n

Björk is available to download for free on WordPress.org or via the “Add New” themes screen in the admin.

\n\n\n\n

“The Site Editor has really come a long way in a short amount of time,” Norén said. “The most noticeable difference is that I’m having a lot more fun building block themes now compared to when I released Tove, my first block theme, a year ago. With the features coming in WordPress 6.1 in October, it’s only up from here.”

\";s: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, 08 Sep 2022 16:47: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"WPTavern: iThemes Patches Vulnerability in BackupBuddy, Wordfence Tracks 5 Million Exploit Attempts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=137631\";s: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:109:\"https://wptavern.com/ithemes-patches-vulnerability-in-backupbuddy-wordfence-tracks-5-million-exploit-attempts\";s: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:1879:\"

BackupBuddy, a commercial plugin from iThemes that performs scheduled backups with remote storage options, has patched a vulnerability that allowed for arbitrary file download by unauthenticated users. iThemes published an advisory for its users, indicating that the vulnerability affects versions 8.5.8.0 through 8.7.4.1 and is being actively exploited.

\n\n\n\n

Wordfence reviewed its data and found that attackers began targeting this vulnerability on August 26, 2022. The company has blocked nearly 5 million attacks targeting the vulnerability since that time.

\n\n\n\n

Wordfence found that the method BackupBuddy used to download locally stored files was insecurely implemented, making it possible for unauthenticated users to download any file stored on the server.

\n\n\n\n

“Due to this vulnerability being actively exploited, and its ease of exploitation, we are sharing minimal details about this vulnerability,” Wordfence threat analyst Chloe Chamberland said.

\n\n\n\n

Wordfence found the majority of the attacks are attempting to read sensitive files, including the following:

\n\n\n\n
    \n
  • /etc/passwd
  • \n\n\n\n
  • /wp-config.php
  • \n\n\n\n
  • .my.cnf
  • \n\n\n\n
  • .accesshash
  • \n
\n\n\n\n

iThemes published specific indicators of compromise and detailed steps to detect if a site was attacked. The company outlined additional steps for sites that have been compromised.

\n\n\n\n

All BackupBuddy users are advised to update to the patched version 8.7.5. iThemes made it available to all users, regardless of their current BackupBuddy licensing status, due to the severity of the vulnerability.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Sep 2022 19:42:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:121:\"Post Status: WordPress 6.1 Walkthrough, Dropping 3.7 – 4.0 Security Updates, WordPress Advanced Administration Handbook\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=121526\";s: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://poststatus.com/wordpress-6-1-walkthrough-dropping-3-7-4-0-security-updates-wordpress-advanced-administration-handbook/\";s: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:13814:\"

This Week at WordPress.org (September 5, 2022)

\n\n\n

Get ready for WordPress 6.1! There\'s a live walkthrough coming for it on September 13, and the feature freeze is September 20. Other important news: security updates will no longer be backported for WordPress 3.7-4.0, and there\'s a new Advanced WordPress Administration handbook.

\n\n\n
\n\n\n\n\n\n\n\n

News

\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

Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers.

Are you interested in giving back and contributing your time and skills to WordPress.org? \"🙏\" Start Here ›

Get our weekly WordPress community news digest — Post Status\' Week in Review — covering the WP/Woo news plus significant writing and podcasts. It\'s also available in our newsletter. \"💌\"

\n\n\n\n
\n\n\n\n
\"Post
\n

You — and your whole team can Join Post Status too!

\n\n\n\n

Build your network. Learn with others. Find your next job — or your next hire. Read the Post Status newsletter. \"✉\" Listen to podcasts. \"🎙\" Follow @Post_Status. \"🐦\"

\n
\n\n\n\n
\n

This article was published at Post Status — the community for WordPress professionals.

\";s: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, 07 Sep 2022 18:47:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WPTavern: WordPress To Drop Security Updates for Versions 3.7 Through 4.0 by December, 2022\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=137618\";s: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:101:\"https://wptavern.com/wordpress-to-drop-security-updates-for-versions-3-7-through-4-0-by-december-2022\";s: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:2453:\"

WordPress’ Security Team announced it will be dropping support for versions 3.7 through 4.0 on December 1, 2022. To give some context for how old these versions are, in 2013, WordPress 3.7 introduced automatic background updates and 3.8 updated the admin with a new design based on the MP6 plugin.

\n\n\n\n

WordPress’ official policy is that the security team only provides support for the most recent version, but as a courtesy has extended backporting security fixes to older versions that are able to receive automatic updates.

\n\n\n\n

“Until now, these courtesy backports have included all versions of WordPress supporting automatic updates,” 10up-sponsored Security Team member Peter Wilson said. “Versions WordPress 3.7 – 4.0 have reached levels of usage, namely less than 1% of total installs, where the benefit of providing these updates is outweighed by the effort involved.”

\n\n\n\n

More than half of all WordPress sites are on the latest version – 6.0+ (54.3%), and security updates will still be available to more than 99% of sites on older versions after this change. Wilson said the decision to drop support for 3.7 through 4.0 was based off the information reported on the statistics page.

\n\n\n\nWordPress version stats – 9/7/2022\n\n\n\n

“The effect of this imbalance means that the Security team spends most of the time preparing backports for the vast minority of WordPress installations,” Wilson said. “By dropping support for these older versions, the newer versions of WordPress will become more secure as more time can be focused on their needs.”

\n\n\n\n

Over the next three months, versions 4.0 and older will receive their final updates and will also display a non-dismissible notice in the dashboard, advising users to upgrade to the latest version as their sites will no longer receive security 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:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Sep 2022 16: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"WordPress.org blog: Dropping security updates for WordPress versions 3.7 through 4.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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13466\";s: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://wordpress.org/news/2022/09/dropping-security-updates-for-wordpress-versions-3-7-through-4-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:1323:\"

As of December 1, 2022 the WordPress Security Team will no longer provide security updates for WordPress versions 3.7 through 4.0.

\n\n\n\n

These versions of WordPress were first released eight or more years ago so the vast majority of WordPress installations run a more recent version of WordPress. The chances this will affect your site, or sites, is very small.

\n\n\n\n

If you are unsure if you are running an up-to-date version of WordPress, please log in to your site’s dashboard. Out of date versions of WordPress will display a notice that looks like this:

\n\n\n\n\"WordPress\n\n\n\n

In WordPress versions 3.8 – 4.0, the version you are running is displayed in the bottom of the “At a Glance” section of the dashboard. In WordPress 3.7 this section is titled “Right Now”.

\n\n\n\n\"\"\n\n\n\n

The Make WordPress Security blog has further details about the process to end support.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Sep 2022 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Peter Wilson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: Gutenberg Contributors Make Progress on Distraction Free Mode\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=137582\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/gutenberg-contributors-make-progress-on-distraction-free-mode\";s: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:3318:\"

During last week’s Editor chat meeting, Automattic-sponsored Gutenberg contributor Andrei Draganescu reported that he is “slowly but definitely going to introduce distraction free mode,” a project he has been working on since early explorations began in February. The PR he referenced (#41740) is an extension of those explorations that takes the mode even further towards the objective of removing visual clutter when the focus is on editing text content.

\n\n\n\n

“Until now the preference, when toggled on, would only hide some of the toolbar icons and a few other non-essential UI items,” Draganescu said. “With this PR the preference will have a more drastic effect, turning the UI into a blank page.”

\n\n\n\n\n\n\n\n

Whereas the previous explorations were more focused on removing UI from the canvas, the demo video above shows how Draganescu’s PR takes it even further to create a full-page writing-focused environment. This iteration does the following:

\n\n\n\n
    \n
  • hides the top toolbar, makes it appear on hover over its normal occupied
    area
  • \n\n\n\n
  • removes many top toolbar buttons
  • \n\n\n\n
  • automatically closes any open sidebars
  • \n\n\n\n
  • hides the insertion point indicator
  • \n\n\n\n
  • hides the block toolbar
  • \n
\n\n\n\n

The menu to turn on this mode would be added to the three-dot drop-down menu under the other alternative modes.

\n\n\n\n\n\n\n\n

Draganescu said there are a few outstanding bugs and the UI copy is still under consideration (distraction free, toggle interface), but he said he thinks it will be “a great complement to the incoming ‘zoomed out mode.\'”

\n\n\n\n

Gutenberg engineer Riad Benguella created an experimental PR for the zoom-out view idea for the site editor, where the focus is on site building and composing patterns, allowing users to move sections around without affecting inner blocks. It makes it easier to build templates without worrying about block editing. Draganescu said if this code lands, it may lend some foundation to the distraction free mode.

\n\n\n\n

This feature has generally received positive feedback, with a few minor suggestions to correct issues with dismissing the screen and the autosave message. The team does not seem to be in a rush to land distraction free mode in Gutenberg but significant progress has been made over the past six months.

\n\n\n\n

With distractions increasing in the the digital world, some of the most reliable and efficient interfaces are those committed to staying distraction free. The current Fullscreen mode falls short here, as different parts of the interface pop in and out of view when the mouse is moved around the screen. Draganescu’s attempt at making a new, distraction free UI, more tailored to writing, would be a welcome addition to Gutenberg.

\";s: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, 07 Sep 2022 01:47:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"Do The Woo Community: Builder Tips from WordCampUS Speakers Part_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:28:\"https://dothewoo.io/?p=72861\";s: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:65:\"https://dothewoo.io/builder-tips-from-wordcampus-speakers-part_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:417:\"

Tips from Rich Tabor, Cassandra Decker, Robert Rowley, Daisy Olsen, Ronnie Burt, Amber Hinds, Jonathan Desrosiers and Ronald Gijsel

\n

>> The post Builder Tips from WordCampUS Speakers Part_3 appeared first on Do the Woo - a WooCommerce Builder 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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 06 Sep 2022 11:31:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"Post Status: What is a WordPress developer?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=121418\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://poststatus.com/what-is-a-wordpress-developer/\";s: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:1186:\"

That was the question on an episode of Woo DevChat with Ebonie Butler, Lisa Canini, Robbie Adair, and Kathy Zant. It\'s an interesting to compare their views and experiences with the ones shared by Zach Stepek, Till Krüss, and Carl Alexander while discussing the same question on an earlier episode.

\n\n\n\n\n\n\n\n
\nhttps://poststatus.us6.list-manage.com/track/click?u=ff3456b27ebe0be0155087894&id=a8f0a4c9fb&e=f7eab97ac0\n
\n

This article was published at Post Status — the community for WordPress professionals.

\";s: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, 06 Sep 2022 01:50:29 +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:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WordPress.org blog: The Month in WordPress – August 2022\";s: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=13445\";s: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://wordpress.org/news/2022/09/the-month-in-wordpress-august-2022/\";s: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:14582:\"

August has been a busy month, with the redesign of WordPress.org, new localized content on Learn WordPress, and the WordPress 6.0.2 security and maintenance release. But that’s not all! Read on to catch up on the latest WordPress news.

\n\n\n\n
\n\n\n\n

WordPress 6.1 walk-through scheduled for September 13, 2022

\n\n\n\n

Save the date! A live interactive walk-through of WordPress 6.1 is coming up on September 13, 2022, at 16:00 UTC. The event will take place via Zoom and include a discussion of new major features, resolved tickets, and potential blockers.

\n\n\n\n

Attendance is open to anyone who wants to know more about what’s coming in the next major release. If you are unable to attend, the event will be recorded for on-demand viewing.

\n\n\n\n
\n

Learn more about the WordPress 6.1 product walk-through.

\n
\n\n\n\n
\n\n\n\n

The WordPress.org Homepage and Download page got a new jazz-inspired look

\n\n\n\n

The redesign of the WordPress.org homepage and download page went live on August 15, 2022. The new pages highlight the benefits of using WordPress while making it easy to access resources for getting started. The look and feel build on the jazzy aesthetic that WordPress is known for.

\n\n\n\n\"WordPress.org\n\n\n\n

In addition, the admin bar and global navigation menu have been updated to simplify and better organize the content across the WordPress.org network. Expect more design updates and iterations as efforts to refresh the website continue.

\n\n\n\n
\n

Check out the new WordPress.org homepage and download page.

\n
\n\n\n\n
\n\n\n\n

Gutenberg versions 13.9 and 14.0 are here

\n\n\n\n

Two new versions of Gutenberg were released last month:

\n\n\n\n
    \n
  • Gutenberg 13.9 became available for download on August 17, 2022. This release continues to iterate and polish the user interface (UI), interaction, and engine work for site editing.
  • \n\n\n\n
  • Gutenberg 14.0 brings a lot of enhancements, including extra block supports in the UI, a revamped List block, and more. It shipped on August 31, 2022.
  • \n
\n\n\n\n
\n

This new post in the “Core Editor Improvement” series focuses on the template creation enhancements coming in WordPress 6.1. You can explore them now with the Gutengerg plugin.

\n
\n\n\n\n
\n\n\n\n

New localized content on Learn WordPress

\n\n\n\n

Learn WordPress is currently expanding the non-English resources available on the platform! Last month, some members of the Training Team hosted the first free online workshops in Japanese. Following its success, two more sessions will be held on September 7 and 17, 2022. Get the details in the online workshop calendar.

\n\n\n\n

In addition, learners have access to:

\n\n\n\n\n\n\n\n

Curious about what else is new on Learn WordPress? Check out the learning materials released in August 2022.

\n\n\n\n
\n

Enter the educational world of the Training Team and its Learn initiative in the latest episode of WP Briefing.

\n
\n\n\n\n
\n\n\n\n

Team updates: WordPress 6.0.2 maintenance release, Twenty Twenty-Three kickoff, and more

\n\n\n\n\n\n\n\n
\n

The Testing Team is looking for facilitators to expand testing efforts across the project.

\n
\n\n\n\n
\n\n\n\n

Feedback & testing requests

\n\n\n\n\n\n\n\n
\n

Gutenberg 13.8 introduced the first version of fluid typography, a new feature that allows theme authors to define text size that can scale and adapt to changes in screen size. Help shape its future by joining this testing call.

\n
\n\n\n\n
\n\n\n\n

Event updates & WordCamps

\n\n\n\n\n\n\n\n
\n

The Call for Speakers for WordCamp Asia is closing soon! Submit your application by September 30, 2022, and help reach WCAsia’s speaker diversity goals.

\n
\n\n\n\n
\n\n\n\n
\n\n\n\n

Have a story that we should include in the next issue of The Month in WordPress? Fill out this quick form to let us know.

\n\n\n\n

The following folks contributed to this edition of The Month in WordPress: @laurlittle, @mysweetcate, @chaion07, @bsanevans, @priethor, @rmartinezduque, @webcommsat.

\";s: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, 05 Sep 2022 13:23: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:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"WordPress.org blog: WP Briefing: Episode 38: All About LearnWP with Special Guest Hauwa Abashiya\";s: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://wordpress.org/news/?post_type=podcast&p=13425\";s: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:98:\"https://wordpress.org/news/2022/09/episode-38-all-about-learnwp-with-special-guest-hauwa-abashiya/\";s: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:20613:\"

In the thirty-eighth episode of the WordPress Briefing, join Josepha Haden Chomphosy and special guest Hauwa Abashiya for a discussion on the WordPress Training team and LearnWP initiative.

\n\n\n\n

Have a question you’d like answered? You can submit them to wpbriefing@wordpress.org, either written or as a voice recording.

\n\n\n\n

Credits

\n\n\n\n

Editor: Dustin Hartzler
Logo: Javier Arce
Production: Santana Inniss
Song: Fearless First by Kevin MacLeod

\n\n\n\n

Guests

\n\n\n\n

Hauwa Abashiya 

\n\n\n\n

References

\n\n\n\n

Hauwa Abashiya HeroPress Essay
make.wordpress.org/training
make.wordpress.org
WordPress 6.0.2 Security and Maintenance Release
WordCamp Asia call for speakers (deadline extended to September 30, 2022)
WordCamp US Livestream information

\n\n\n\n

Transcript

\n\n\n\n\n\n\n\n

[Josepha Haden Chomphosy 00:00:00] 

\n\n\n\n

Hello, everyone! And welcome to the WordPress Briefing, the podcast where you can catch quick explanations of some of the ideas behind the WordPress open source project and the community around it, as well as get a small list of big things coming up in the next two weeks. I’m your host, Josepha Haden Chomphosy. Here we go!

\n\n\n\n

[Josepha Haden Chomphosy 00:00:42] 

\n\n\n\n

Helping people who are new to WordPress learn how to make the most out of their CMS used to be one of the most clearly impactful things I ever did as a contributor. Whether it was making sure a brand new installation simply worked, or if the original setup needed to grow along with a solopreneur’s growing business needs, I found great joy in seeing how my local community was learning new tools together.

\n\n\n\n

You’ve probably heard me talk about the Learn WP initiative or the training team on this podcast before, but you might still be a little shy to get started with the team. So I have invited one of their team reps today to talk through what the team does.

\n\n\n\n

All right. I have with us today Hauwa Abashiya. She is one of the team reps for the training team and also works on the learn.wordpress.org site. Thank you for joining me today, Hauwa.

\n\n\n\n

[Hauwa Abashiya 00:01:33] 

\n\n\n\n

And thank you for having me, Josepha, quite exciting to be on your podcast.

\n\n\n\n

[Josepha Haden Chomphosy 00:01:37] 

\n\n\n\n

Oh, I, you know, when we were talking about doing this topic, I was like, you know, who would be an excellent person is Hauwa. Like you were such an interesting person to work with when we were working on the 5.6 release. And then also, you just have such a lovely way of explaining the complicated things that we have going on in WordPress and especially on the training side of things. And so you were the first person that came to mind for me.

\n\n\n\n

[Hauwa Abashiya 00:02:02]

\n\n\n\n

Thank you. 

\n\n\n\n

[Josepha Haden Chomphosy 00:02:03]

\n\n\n\n

Speaking of all the learn.wordpress.org things, you’ve been contributing to the WordPress project as a team rep for the training team for a bit. But that’s not really where you started. Can you tell me a bit about how you found your way to this team? 

\n\n\n\n

[Hauwa Abashiya 00:02:15]

\n\n\n\n

Well, I started by attending a WordCamp, and that was WordCamp Brighton. And if anyone’s read my article on HeroPress, then they will know that I learned WordPress in one week. Went through beginner sessions of it. And then, I was like, yeah, let me just go turn up and see what it’s like.

\n\n\n\n

So turned up, and I met some wonderful people there. One of them being Jenny Wong, who introduced me to the London meetup team. So, I then went there. They were looking for volunteers because they were planning WordCamp London for 2019. And me being me, I was like, yeah, sure. Why not? And got thrown into the deep end, but no, an amazing team.

\n\n\n\n

I got to meet some really amazing people. And yeah, just went from there then, you know, because I was doing stuff with WordCamp London, ended up going to WordCamp Europe. And I think there’s probably quite a lot of people who say they fully got into contributing in WordCamp Europe. So I was doing little bits and pieces then on like, marketing team and then met Jesse [Owens] at the training team cause Abha Thakor introduced me to him and just went from there.

\n\n\n\n

And then in terms of team rep, I mean, Courtney Robertson sent out SOS, because Learn had just launched, and there were a couple of things that we needed. So that was during the soft launch. And I was like, yeah, sure. I’ll help you. I’m not doing much. And that’s how I ended up doing team rep.

\n\n\n\n

[Josepha Haden Chomphosy 00:03:46]

\n\n\n\n

I love that so many initial stories in the WordPress community start with like, well, I went to a WordCamp cause I was like, what in the world is this? And then people were like, we need some help. And I thought to myself, what else am I doing? Like, so many stories start that way. And I just love it. 

\n\n\n\n

[Hauwa Abashiya 00:04:03]

\n\n\n\n

Yeah. 

\n\n\n\n

[Josepha Haden Chomphosy 00:04:03]

\n\n\n\n

So you mentioned learn.wordpress.org. That is a part of the training team in the WordPress project. Correct?

\n\n\n\n

Yeah. So can you give us an idea of the difference between the two? Cause like normally, with a project as big as Learn, you would expect to see like a whole separate team. But these are two intertwined teams using two intertwined concepts.

\n\n\n\n

And so can you give us an idea of the difference between them? 

\n\n\n\n

[Hauwa Abashiya 00:04:29]

\n\n\n\n

So I like to see learners, that’s the content. So it’s the content that we have on the platform, and the training team wrangles all the content on Learn. So that would be like your videos, your lesson plans, and online workshops. Yeah, so we wrangle the content that’s on there.

\n\n\n\n

We try to bring a lot of different teams together, and that’s one of the things the beauty, I think, of Learn is that there is a lot of cross-team collaboration, which started from the beginning and I think just will continue and get better and better.

\n\n\n\n

[Josepha Haden Chomphosy 00:04:59]

\n\n\n\n

Yeah. And the workshops, those are once a week, right? 

\n\n\n\n

[Hauwa Abashiya 00:05:04]

\n\n\n\n

Yeah. So you have online workshops, which used to be called social learning spaces, which used to be called discussion groups. So those run once a week. There’s a number running, and there are some that are launching in Japan. And I think Ben Evans has been quite key in getting quite a lot of those going, and I think Destiny Kanno as well.

\n\n\n\n

So, that’s the beauty is you get to see a lot more languages coming up. Those run once a week. And then we obviously have lesson plans, which traditionally that’s what the training team used to always make for Meetup organizers. So if you didn’t have a speaker, you could go and get a lesson plan and run through something, or anybody could pick one up.

\n\n\n\n

So they are used mainly by like our Meetup users and then people who are running any boot camps or sessions, or you wanna just take somebody through WordPress and teach them, you can pick one up and run through it. And now we’ve got courses on Learn, which is quite exciting. Got a couple of courses.

\n\n\n\n

And I know there’s about three or four courses in development. There is a bit more WordPress development based rather than user based. There’s a fourth piece of content, and that is just the general workshop. So tutorials, I think no tutorials is what we’re calling them now. So there’s like all our online videos. 

\n\n\n\n

[Josepha Haden Chomphosy 00:06:17]

\n\n\n\n

I tell you terminology in any project, the age and size of WordPress is hard to keep everything straight, but especially when you’ve just changed it you’re like, what do we call it though? 

\n\n\n\n

[Hauwa Abashiya 00:06:27]

\n\n\n\n

Yeah. 

\n\n\n\n

[Josepha Haden Chomphosy 00:06:30]

\n\n\n\n

So if I understand correctly, because as you mentioned, like you have this post up on HeroPress, you don’t actually come from a training background. Like you aren’t a teacher or corporate trainer or anything, but you have really committed to contributing to the training team and to learn.wordpress.org.

\n\n\n\n

So, from your perspective, from like the, I’m not a trainer perspective, what’s the most exciting thing for learn.wordpress.org in the near future? 

\n\n\n\n

[Hauwa Abashiya 00:06:58]

\n\n\n\n

I think it’s the collaboration. It’s the potential that Learn has. So I don’t have a training background, but interestingly enough, I come from Kaduna, Nigeria. And Kaduna cause all the states in Nigeria have a tagline, and, Kaduna is actually the center of learning. So there must be some link there, so yeah.

\n\n\n\n

So, I think the beauty of that is you don’t have to have a training background. You can come in and impart your knowledge, and there are people available in the team that can help you impart that knowledge. So if it’s like a lesson plan that you wanna draw up, we’ve got people that can help and assist in that.

\n\n\n\n

Or you wanna run an online workshop. There are people that can assist you. And I think that’s also the beauty of WordPress is that we’re all there to help each other. So just seeing that and seeing how, as time has gone on how the team has actually just been growing cause more and more people are coming.

\n\n\n\n

And then with that, you’ve got more of like the different languages coming in, and I know we might touch on that later, but it’s, I think to me, that is the beauty that anyone can actually now come in and learn. And Learn as this platform that is accessible to everybody. So it’s not necessarily behind a, like a paywall or anything, which is, there’s nothing wrong with that, but there are people that it’s like, well, okay, you can access something by the community for the community.

\n\n\n\n

[Josepha Haden Chomphosy 00:08:32]

\n\n\n\n

I think like your last thought there, something that’s by the community for the community. That’s one of the things that I noticed early on about the WordPress community. So I’ve been in the WordPress community for a long time, but when I started doing the administrative back office, things that are invisible and no one wants to know about, because it’s boring.

\n\n\n\n

When I started doing that work, one of the things I noticed and that I really treasure the most about the WordPress community is that they want to do things together. They want to look at the problem together. They want to find a solution together. And a lot of times they just want to learn together as well.

\n\n\n\n

We see that there is a real, I don’t know, not, it’s not a safety and numbers question. I think it is a long-standing feeling that we can all kind of get further together and that we are better together. And so I like your thought there.

\n\n\n\n

You mentioned, though, translations, and I know that this came up at WordCamp Europe.

\n\n\n\n

We don’t actually have a lot of translated content on learn.wordpress.org. There’s some technical issues that exist there, but are there a few languages that we already are sort of seeing translated courses for? Translated lessons for? 

\n\n\n\n

[Hauwa Abashiya 00:09:47]

\n\n\n\n

Yeah. So we have a couple in Hindi, I believe. And I know we’ve got some Greek translations that have been coming up, so I know, I think it was last year WordCamp India, during contributor day, we had quite a lot of people translating stuff then, and I suppose the online WordCamps that we’ve been able to rank. Cause I think our first like face to face is this year, so they didn’t do that much translation there, but we’ve seen an increase in people wanting to translate. 

\n\n\n\n

And I think those are the ones that come to mind. And I know Japanese, I think that was just recently, in the last two weeks, somebody’s translated one or two of the tutorials have been translated.

\n\n\n\n

But we’re getting more and more requests coming through. And I know we kind of touched on this in our earlier discussion, but it’s like, how do you manage that? Cause you’re right, we don’t have a way to easily manage polyglots on Learn at the moment or WordPress in general. But I think seeing that, and I keep saying to people, I don’t wanna lose that engagement cause if you’ve got the people engaged, let them just do it.

\n\n\n\n

And I don’t normally say this, but let them do it, and we’ll figure out how to sort out the whole pile when it comes in later. Because you kind of don’t want to lose them because I feel like if we say, no, we’ll wait until that comes in, we’ll lose a lot of the engagement. And come that time, people will be like, oh no, I’m not that interested. Or it might be an even more effort to try and bring more people on board.

\n\n\n\n

[Josepha Haden Chomphosy 00:11:18]

\n\n\n\n

That’s always a struggle, like wanting to be able to get something good out without insisting that it be perfect. Like that whole perfect is the enemy of the good sort of concept. 

\n\n\n\n

[Hauwa Abashiya 00:11:30]

\n\n\n\n

Yeah. Mm-hmm 

\n\n\n\n

[Josepha Haden Chomphosy 00:11:30]

\n\n\n\n

When we were talking about this way back in June, I was like, I obviously would love to get a perfect solution out immediately, but like, you’re right.

\n\n\n\n

In the meantime, do we just be if you don’t speak English, you cannot learn here?

\n\n\n\n

Like that’s not fair.

\n\n\n\n

[Hauwa Abashiya 00:11:45]

\n\n\n\n

No.

\n\n\n\n

[Josepha Haden Chomphosy 00:11:46] 

\n\n\n\n

We want everyone to be able to learn here in their own languages, and yeah. That’s just a living, breathing issue with a global project, I think. 

\n\n\n\n

[Hauwa Abashiya 00:11:56]

\n\n\n\n

Yeah. 

\n\n\n\n

[Josepha Haden Chomphosy 00:11:57]

\n\n\n\n

Now that we left us on like a really juicy topic, just the lightest thing we could find. Is there anything else that you wanna be sure to share with the WordPress Briefing listeners before we head out?

\n\n\n\n

[Hauwa Abashiya 00:12:10]

\n\n\n\n

Come and join the training team. Like I said, you don’t have to be a trainer. You can come in, and help us take notes. You can come in and edit, and review. If you are a subject matter expert, we also have the faculty program, which was launched. Was it a month ago now?

\n\n\n\n

Sorry. Days, months, weeks merge for me these days. But yeah, so that’s like a dedicated volunteer team. And in there, we’ve got content creators, editors, subject matter experts, and just admin stuff. If you wanna help us with the admin stuff. If you’re a GitHub guru, get in touch cause we are trying to automate some of our processes, and we could use the help, but yeah, just come join us.

\n\n\n\n

Join one of our meetings, which run on Tuesdays at 7 AM UTC and 4:00 PM UTC. 

\n\n\n\n

Yes, that’s right. I get my time right.

\n\n\n\n

[Josepha Haden Chomphosy 00:13:03] 

\n\n\n\n

If it’s not right, we’ll put it. We’ll correct it in the show notes. 

\n\n\n\n

Also, if you are not necessarily familiar with the WordPress project and how to get started with contributions, you can find the training team and a lot of information about them and all the other teams on make.wordpress.org.

\n\n\n\n

I will share that in the show notes as well. make.wordpress.org/training is where you can find Hauwa’s team. Hauwa, thank you again for joining me today.

\n\n\n\n

[Hauwa Abashiya 00:13:30]

\n\n\n\n

No, thank you for having me. It’s just a wonderful treat. I get to listen to you, and now I get to be on it. 

\n\n\n\n

So, yeah, it’s good. 

\n\n\n\n

[Josepha Haden Chomphosy 00:13:37]

\n\n\n\n

I hope that some of you feel inspired to stop by and see what the team is up to learn something new about WordPress or contribute a little something yourself. And with that, I’ll bring us home with the small list of big things. First thing, there was a freshly pressed minor release last week. You probably didn’t notice it.

\n\n\n\n

It probably went quite smoothly in the background and never interrupted you at all. However, if you want to read what was in it, you can head to wordpress.org/news now, or click on the link in the show notes. 

\n\n\n\n

Second thing, is that coming up at the end of this week, September 9th, 2022, WordCamp US is back and ready to help broaden your WordPress knowledge. If you will be there, I hope it is a wonderful time, but if you won’t be there in person, I’ll include a link to register for the live stream, or you can watch all of those sessions afterward on wp.tv or the WordPress YouTube channel.

\n\n\n\n

Third thing on our list of small list of big things is that WordPress Translation Day is coming up. That’s normally at the end of September, it coincides with a global day of appreciation for translators just generally across the world. And so that is coming, it’s normally around the 28th or so. 

\n\n\n\n

[Josepha Haden Chomphosy 00:14:55]

\n\n\n\n

So put that in your calendars. As soon as I have any information, as soon as I have a link to share with you all, I will have that for you as well. 

\n\n\n\n

And the final thing on my list today is that if you are hoping to speak at WordCamp Asia, 2023, you have 10 more days, September 15th, 2022**, to apply for that.

\n\n\n\n

We need topics of all sorts, from security hardening and backend development to entrepreneurial best practices, WordPress out of the box all the way back around to the importance of securing open source freedom. Even when people don’t know they need them. If you’ve got something you’re a bit passionate about, something that you are a passionate expert about especially, we want to see your application. And that, my friends, is your small list of big things.

\n\n\n\n

Thank you for tuning in today for the WordPress Briefing. I’m your host, Josepha Haden Chomphosy. And I’ll see you again in a couple of weeks.

\n\n\n\n


** Special note: the deadline to apply as a speaker to WordCamp Asia was extended to September 30th, 2022, after the recording of this episode.

\";s: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, 05 Sep 2022 12:01: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:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"Gutenberg Times: Gutenberg Changelog #72 Gutenberg 13.9, 14.01, WordPress 6.02, Themes and Design Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=22015\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-72-gutenberg-14-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:49122:\"

Birgit Pauli-Haack and Nick Diego discuss highlights from Gutenberg 13.9, 14.01, WordPress 6.02, Themes and Design Tools.

\n\n\n\n

Show Notes / Transcript

\n\n\n\n\n\n\n\n

Show Notes

\n\n\n\n

Nick Diego

\n\n\n\n

developer advocate at WP Engine, plugin developer and themes builder. He is also a core contributor. Running Triage sessions in the core editor channel and is on the WordPress 6.1 release squad

\n\n\n\n\n\n\n\n

Designing Style Variations for Twenty Twenty-Three: The Good, the Bad, and Everything Else by Justin Tadlock

\n\n\n\n

WordCamp US

\n\n\n\n\n\n\n\n

@WordPress/Create-Block package

\n\n\n\n

Ryan Welcher new release of the @wordpress/create-block package

\n\n\n\n

Documentation

\n\n\n\n\n\n\n\n

Themes

\n\n\n\n

Hallway Hangout: Discussion on Block Themes (25 Aug)

\n\n\n\n

WordPress 6.0.2

\n\n\n\n\n\n\n\n

Gutenberg 13.9

\n\n\n\n\n\n\n\n

Gutenberg 14.0

\n\n\n\n

What’s new in Gutenberg 14.0? (31 August)

\n\n\n\n

Before the end

\n\n\n\n

WP Engine: Builders Resource – Explore the basics of creating powerful WordPress websites.

\n\n\n\n

Stay in Touch

\n\n\n\n
\n\n
\n\n\n\n

Transcript

\n\n\n\n

\n\n\n\n

Birgit Pauli-Haack: Hello, and welcome to our 72nd episode of the Gutenberg Changelog. In today’s episode, we will talk about Gutenberg 13.9, Gutenberg 14.01, WordPress 6.02, and a lot of things about themes and design tools in the editor. And I am Birgit Pauli-Haack, curator at the Gutenberg Times and WordPress Developer Advocate. And today, I have a special guest on the show, it’s Nick Diego, Developer Advocate at WP Engine, Plugin Developer, and Themes Builder.

\n\n\n\n

And I just learned he is also from the hospitality industry. So, we have a whole new show. He’s also a Core Contributor on WordPress and running triage sessions every Tuesday in the core editor channel. And he’s also a teammate of mine on the 6.1 release squad. Good afternoon, Nick. Thank you so much for coming to the show today. How are you?

\n\n\n\n

Nick Diego: I’m doing great. Thank you for having me.

\n\n\n\n

Birgit Pauli-Haack: Well, sure. I should probably also mention that you were part of the group of experts on the developer hours meet up, where a group of contributors answer questions from the audience. We should schedule some more, what do you think?

\n\n\n\n

Nick Diego: We should.

\n\n\n\n

Birgit Pauli-Haack: Well, in the meantime, until that happens, you held or will hold also build up basics events on the learn WordPress online meetup, thank you for those. Most events were recorded and are uploaded to WordPress TV. So, you get a lot of Nick Diego on WordPress TV.

\n\n\n\n

Nick Diego: Yeah, exactly.

\n\n\n\n

Birgit Pauli-Haack: So, what have you learned that… what are the most common concepts that are harder to understand for people?

\n\n\n\n

Nick Diego: Well, first of all, those online workshops are so important for engaging directly with the community and WordPress builders. A lot of people aren’t keeping up with what’s happening in Gutenberg, they have businesses to run, websites to build, right?

\n\n\n\n

And WordPress is developing so quickly as we’ll see in today’s episode with all the things that have happened in the latest releases. And so, it’s a great time to connect with them and just to cover the basics. One of my main series is builder basics, where we talk about really the fundamentals, like how to work with row blocks and group blocks and that thing.

\n\n\n\n

And I think people really get a lot out of that. And so, I’m also really excited for the new 2023 theme because it’s going to incorporate a lot of the new functionality that we’re seeing in WordPress and provide users a place to look and see a working functional example of all the new stuff that’s coming in WordPress.

\n\n\n\n

So, a couple ways. There are online workshops and all the other developer relations stuff that we’re doing, hopefully, we can help get people up to speed more quickly than they would on their own.

\n\n\n\n

Birgit Pauli-Haack: Yeah. So, if you don’t have them signed up for the meetup yet, where you get all the announcements of all the new workshops that are coming there. Sometimes, there are months with 2025 workshops. Well, month of August wasn’t so good because we were… many of the faculty were on vacation, but definitely sign up and join the group.

\n\n\n\n

Sometimes, there are 20. Sometimes, there are 60 in there, I have noticed. And most of them are recorded. So, even if you’ve missed them… but it’s hard to watch the recording when there is some life interaction with people in there. So, Nick, you mentioned the 2023 theme and the update here is that the theme is a base theme.

\n\n\n\n

And there was a call for the community to send in style variations, that’s style variations, or something like a skin of a theme that follows the theme, but you can change color, fonts, and other things, spacings, and all the good things. And the community submitted actually 33 style variations.

\n\n\n\n

And next week, the team will learn… the team will decide which ones are bundled with the default theme. And I look through them, I like quite a few. So, did you get a look at them?

\n\n\n\n

Nick Diego: I did. I did. And some of my fellow colleagues submitted a couple. It’s a really exciting project, reach out into the community and get designs from other community members, it really makes you feel like this is a community project and WordPress is open-source and we have a big community. I really like the direction they took with this and the designs that have come out of it.

\n\n\n\n

Birgit Pauli-Haack: Yeah, there are all voices in the community that you don’t need, every year new theme, just add new styling there or so not every WordPress is going to change a theme every year, so. But you’re right, it’s actually the reference theme for all the new features.

\n\n\n\n

And if the listeners want to learn more about style variations and how to create them and what it was working on one of them for the 2023 theme, Justin Tadlock, takes you along in his new post on his experience designing the style variations on the Gutenberg Times.

\n\n\n\n

And I love this sentiment, although there are 1,400 words in there, but I’m just picking those from Justin’s post. So, there was a… and I quote them. “So, there was a small part of me that remembered exactly why I fell in love with WordPress in the first place.

\n\n\n\n

I felt like that same 21-year old kid who had just learned to edit a theme style CSS file to make some minor color changes. This was the WordPress that I remembered from so long. The one where themes were not hundreds of files and thousands of lines of code.” So, back to the basics and back to just do change the styling.

\n\n\n\n

Nick Diego: Yeah. It’s such a great quote from Justin and I completely agree. I think that because with block themes and this movement that we’re on, it’s really making themes a lot more accessible, it’s brand new, so it’s something new that you need to learn.

\n\n\n\n

But it is creating simpler themes that can be visually unique with just a few lines of code. And I think that provides a lot of power to users, especially in the low code, no code movement, I think there’s a lot of exciting things happening there.

\n\n\n\n

Birgit Pauli-Haack: Yeah, it’s back to the thinkers that can just change some things and have immediate gratification that they see it right away. There is no build spot on. There is no PHP thing or, yeah. So, it’s good. Well, WordCamp US is coming up next week. I am so excited to go to San Diego on Wednesday night. I can hardly wait. How about you?

\n\n\n\n

Nick Diego: Yeah, I’ll be there Thursday, but yeah. No, this is actually my first WordCamp.

\n\n\n\n

Birgit Pauli-Haack: Oh, really?

\n\n\n\n

Nick Diego: Yeah. I was planning to go the 2022 one, but then the world fell apart. So, yeah, I’m very excited to be going.

\n\n\n\n

Birgit Pauli-Haack: Okay. Well, awesome. Yeah. So, I’m glad I’m going to see you there. So, I knew that you would be there, but I didn’t know that was your first WordCamp, so yeah. Go through that post on, I don’t know if it’s what WordCamp US or WordCamp Europe what to do when it’s your first time.

\n\n\n\n

Nick Diego: I saw that, yeah. I saw that.

\n\n\n\n

Birgit Pauli-Haack: It’s so spot on. Yeah. So, don’t worry dear listeners, if you didn’t get a ticket, there will be live streams of the talks and workshops, and they will all be recorded and available on records to be sometime later this year. So, there are quite a few block editor-related talks on the schedule.

\n\n\n\n

So, Alex Ball will talk about customizing core blocks for clients. Very interesting topic. I have lots of discussions about that topic. Evan Mullins has a talk titled FSE for the win, it’s a lightning talk. And Daisy Olsen’s workshop on Saturday morning is about creating your first block theme.

\n\n\n\n

Rich Tabor, always a great presenter, will talk about the new era of WordPress themes is here, block themes. And I saw you on the roster of a lightning talk. What will it be about?

\n\n\n\n

Nick Diego: Well, the title of my talk is a little, I guess, attention grabbing it’s build a custom block in 15 minutes. So, the goal of this presentation is to demystify the complexities of block development in WordPress. It’s something I’ve heard a lot. Oh, building block is really challenging. It requires new skills, whether it’s JavaScript or React.

\n\n\n\n

And the idea behind this is to show that you can actually build something quite functional in a short amount of time. And hopefully, inspire the… either that you’re watching it through the live stream or you’re attending, inspire people to build their own.

\n\n\n\n

Because I’d be the first person to say that building blocks can be challenging depending on the complexity of your project, but it’s never been easier to get started with block development. We’ll actually talk about it later today. But there have been so many tools built by the WordPress community that makes getting started with block development easier.

\n\n\n\n

And you combine that with some of the internal block supports, some block controls that are available directly from WordPress. And you can really get started pretty quickly in less than 15 minutes as I will demonstrate. So, very excited to be giving the presentation.

\n\n\n\n

Birgit Pauli-Haack: That’s awesome. I’m probably going to sneak in there. I’m going to be in the accessibility testing workshop, but I will sneak out and come see your talk. I hope that everyone’s punctual there.

\n\n\n\n

Nick Diego: Hopefully, I can do it. 

\n\n\n\n

Birgit Pauli-Haack: We know afterwards.

\n\n\n\n

Nick Diego: Yeah, exactly.

\n\n\n\n

Birgit Pauli-Haack: Yeah. But what are the other talks that you are interested in?

\n\n\n\n

Nick Diego: So, I’m really interested in… well, I’m very excited to see Rich’s talk. And as you mentioned, Rich is a great presenter. But I’m excited to learn more about things I don’t know much about. So, there’s getting started with WP-CLI, CLI. And then, there’s another one by WordPress Through the Terminal by Milana Cap.

\n\n\n\n

And I don’t know much about them. And I think it’d be a great opportunity to learn more. It’s one of the areas of WordPress that I should be better at, so I’m excited to learn from those folks.

\n\n\n\n

Birgit Pauli-Haack: Oh, yeah. Both are great presenters. So, if you’re in San Diego, the listeners, and we cross path, please don’t be shy. Introduce yourself. And I want to meet you. And even if I’m in a conversation with others at WordCamps, we try to follow the PacMan rule, I don’t know. Do you know about that, Nick?

\n\n\n\n

Nick Diego: I learned of it, but I did not know prior to seeing the description here.

\n\n\n\n

Birgit Pauli-Haack: So, when we stand in a group of people and you always do, you have two people, then another one came said, “Hey, glad to see you.” And then, you talk about things, you chat together. We don’t make close circles. We always leave one opening so other people can walk in and join us.

\n\n\n\n

So, it’s an explicit permission to join a new group of people. And that’s how you meet people. That’s how the community works. So, definitely welcome to do this, and I will always make sure there is a spot for you.

\n\n\n\n

Nick Diego: Yeah, that’s really great.

\n\n\n\n

Community Contributions

\n\n\n\n

Birgit Pauli-Haack: So, we are on the section of community contributions. And Ryan Welcher did a Twitch stream this week about the new features of the create-block package. And I have actually the YouTube link for you and the show notes because he just finished uploading it to YouTube. Twitch only saves the video for 14 days and that’s… so, Ryan always downloads them and uploads them to YouTube, he edits them sometimes.

\n\n\n\n

And he was exploring the new release of the WordPress create-block package. And he thinks it’s a game changer. I think so, too. So, he goes over the new features, the flags for the, speaking of CLI, the flags of the terminal program for no plugin and variant flags that have been added to the tool.

\n\n\n\n

These flags increase the usability because they allow the users to add a new block to an existing plugin and or theme, and also provide the ability for a template to provide different variants for a block, like either a dynamic block or a static version, for instance. So, it’s going to be a really cool if you, yeah, do you want to say something about that?

\n\n\n\n

Nick Diego: Well, a little bit of sneak peek. So, the create-block package is absolutely fantastic. I will actually be using the create-block package during my presentation, that’s what makes it possible to build a block in 15 minutes. So, there’s really no way to get started with block development. And Ryan’s did a fantastic job both working on the package itself, and then also educating folks.

\n\n\n\n

He actually runs an online workshop through the meetup, through the training team as well talking about building custom block. So, can’t say enough good things about Ryan and the work he’s done there.

\n\n\n\n

Birgit Pauli-Haack: Excellent. Yeah. No, I feel the same way. If you are more the reading type learner, Ryan also updated documentation pages for the create-block package. And we have the link in the show note, and there’s also an added section to it for how to create templates for the tool, your custom templates.

\n\n\n\n

So, you can use them for agency specific scaffolding and standardize some of the work there as well. Okay, got that done. Speaking of themes and I have the feeling there will be more talk about themes or, yeah. Anne McCarthy gathered about 15 theme developers from the community from the FSE program, FSE, Full Site Editing Outreach Program.

\n\n\n\n

And they discussed various aspects of theme development with Full Site Editing and starts also Figma and design systems was a topic, and how they can work together with the theme JSON. Figma also has a theme, a JSON file operation, then custom block development, or how to organize pattern libraries in her post and concludes.

\n\n\n\n

And I quote, “While there is both excitement and interest in what block themes unlock.” It’s also clear that there is a buildup of pain points to address whether through clearer resources or changes to good look itself. Now, besides that conclusion is, if you are a theme developer hearing from people who already worked with block themes.

\n\n\n\n

And some of them are no strangers to our listeners, it’s Ellen Bauer, Carolina Nymark, Rich Tabor, Ana Zagora, Herb Miller. It’ll jump your discovery or speed up your knowledge. So, I really urge you to just listen into people talking about the things.

\n\n\n\n

WordPress 6.0.2

\n\n\n\n

Okay. So, now, let’s move on to the releases. First up is the WordPress 6.0 release. It’s a security maintenance release with a few bug fixers for the block editor. And it was released, I forgot, it was, I think, August 30th.

\n\n\n\n

Nick Diego: Something like that, yeah.

\n\n\n\n

Birgit Pauli-Haack: Yeah. But there was one thing in there that you worked mainly on it, that’s allow remote pattern registration in theme JSON when code patterns are disabled. So, what was that about?

\n\n\n\n

Nick Diego: Well, I’ll give you props for originally flagging this issue.

\n\n\n\n

Birgit Pauli-Haack: Thank you.

\n\n\n\n

Nick Diego: And it’s where a lot of times, theme developers want to disable the core patterns that come with WordPress. You’re building your theme and you want to provide your own patterns, which makes perfect sense. And there’s an easy flag to do that.

\n\n\n\n

But unfortunately, when you would do that, you would basically turn off your ability to pull down patterns from the pattern directory. So, it stymied the growth of the pattern directory, because theme developers couldn’t both use their own patterns, shut down the core patterns and then pull down from the pattern directory.

\n\n\n\n

And so, this little, fairly simple change allows that to happen. So, now, you could include your pattern with your own theme, and you could also pick and choose from the pattern directory and include those with your theme. Little simple change but I think an important one for people to actually use the pattern directory.

\n\n\n\n

Because now, if you wanted to, you could put all your patterns on the pattern directory and then just create a custom theme and then pull them down from the pattern directory into your theme. So, it really opens the doors to a lot of different ways you might want to work with patterns and themes, which I think is exciting. So, glad to see this push through.

\n\n\n\n

Birgit Pauli-Haack: Yeah, I’m really glad that made it. But when I thought about, not when I thought about it, I got it from other theme developers who said, okay. So, I was thinking how could we curate the block directory without having a lot of additional changes in Gutenberg?

\n\n\n\n

And I think that change was really good. And now, you can curate, even if you are not a theme developer, but you are working for an agency and your developers have a theme for you and you want to add some of the patterns from the directory you want because of fun or whatever.

\n\n\n\n

You can just add the theme, edit the theme, JSON file and add disabled core patterns, but also edit the same JSON file to pull up. I don’t know, four or five patterns that you like or from your favorite designer. So, it’s really cool. But of course having 200 or whatever, how many patterns are in there now? I think it’s 18?

\n\n\n\n

Nick Diego: Yeah. And I think that’s one of the things that turns people off in the pattern directory is you open up the… you’re just getting everything. And this way, it allows you to really pick and choose what you want to include, which I think is what most people are looking for.

\n\n\n\n

Birgit Pauli-Haack: Yeah. So, that is already available. If you have updated your WordPress instance to 6.0.2, and there were others, the link in show notes will have the changelog from the make blog, so you can look what are the fixes, where in there, it was a security and maintenance release fix release. So, there are no new features. And this is actually not a new feature it’s just a-

\n\n\n\n

Nick Diego: A bug. I considered it a bug, yeah.

\n\n\n\n

Gutenberg 13.9 and 14.0

\n\n\n\n

Birgit Pauli-Haack: Yeah. All right. So, the last time we had a changelog recording, it was for Gutenberg 13.8. Now, today, we discussed 13.9 and 14. And there were a few enhancements in 13.9. For instance, the media and text blog got a new help for the image settings control.

\n\n\n\n

So, it’s a little bit clearer what it actually does. The post author block now renders HTML in the editor for the author description that is… there is this user profile section in the WP admin. And when you write the description for a user that’s pulled in into a theme, you can actually add HTML to it.

\n\n\n\n

Nick Diego: Yeah, it’s really helpful.

\n\n\n\n

Birgit Pauli-Haack: … I didn’t read it yet. So, that’s definitely an enhancement or going back to original feature set. The post feature image now has a link target and attributes. Not quite sure. I’m fail to see the, oh, you can… link target is you can open up a new window.

\n\n\n\n

Nick Diego: Yeah, exactly, a new tab. Yeah.

\n\n\n\n

Birgit Pauli-Haack: All right. And I also like that query title in the search template or the search result template. Now, you get some variations there. That is really cool. And then, is the transforms. Transforms is such a powerful tool. But I don’t think a whole lot of people, developers or plug-in developers or theme viewers are actually using it.

\n\n\n\n

Now, you can unwrap the group. It’s actually only a change in or an add-on to the transform menu that you actually can do this… the box that are assembled into a group can now be separated again. It’s the same as the more options menu, but it’s much faster to get there.

\n\n\n\n

And transforms, it’s actually a huge topic. And later this year, we’re probably going to talk a lot more about it because there’s some work in progress. Do you want to take the layout style?

\n\n\n\n

Nick Diego: Yeah. So, we are breezing by many, many enhancements because we would be here all day if we were talking about each one. But under global styles, you can now add a disabled layout style, theme support flag to opt out of all layout styles, which it just provides developers with more flexibility about how they want styles to be applied. And then, the next one which I’m really excited about, and I think it’s so minor. And I’m excited because this is my ticket.

\n\n\n\n

Birgit Pauli-Haack: I saw that.

\n\n\n\n

Nick Diego: But it enabled opacity on global styles for color pickers. So, if you’re in the normal block editor, when you add a color you can actually change the opacity on that color. They’re nobody’s no fault of anybody just got left off in global styles, so that got added. So, adding consistency. So, now, you can basically change opacity on colors throughout the all of WordPress, which is fantastic.

\n\n\n\n

Birgit Pauli-Haack: Yeah. Good job. Thank you, Nick.

\n\n\n\n

Nick Diego: Well, I think that Ellen Bauer pinged me about that and I’m like, I can fix that one. That one’s easy. I can do that. And then, for elements, update the load order of CSS in the site editor. We have a lot going on in the editor with different style sheets and different way things are loaded.

\n\n\n\n

And with time, we’re starting to see these… figuring out the optimal way to load styles and making sure that nothing… things don’t interact negatively with one another. So, a nice enhancement there.

\n\n\n\n

Birgit Pauli-Haack: Yeah. It’s also about the hierarchy, now who comes first. Yeah.

\n\n\n\n

Nick Diego: Exactly. It can get very tricky because we have, what we have the theme, we have core, we have user styles that they edit in global styles. So, there’s a lot going on in the site editor for sure.

\n\n\n\n

Birgit Pauli-Haack: Yeah. And then, we have edited stuff from the theme and it’s really… I’m glad that someone is actually organizing that. So, it’s not too complicated anymore. The site editor also got up some changes or some enhancements. Well, so, the author nicename template creation is now available for now.

\n\n\n\n

I think that concludes with the fallback template for content, all template possibilities that you could create with a site editor, author nicename, it’s not the username, it’s a different field in the profile, but you can now do it with that instead of the author name, so.

\n\n\n\n

And now, that all the templates are there, we also finally got the view side link in the editor. And I think a lot of millions of people probably are so glad that is actually now available. You don’t have…

\n\n\n\n

Nick Diego: I would hear it so much. I would hear it so much. Where’s the view site button? And now we have it, which is amazing.

\n\n\n\n

Birgit Pauli-Haack: Yeah, we have it. And I think it needs to be more intelligent. So, because when I edit the single page or single post or template, I want to click view site and then see it, but it goes to the homepage. But it’s one step at a time and I’m glad I don’t have to open browsers and do all that, which reminds me so much of previous of WordPress scenarios.

\n\n\n\n

Nick Diego: Yeah. No, it’s definitely a huge improvement, but more work to be done, for sure.

\n\n\n\n

Birgit Pauli-Haack: Yeah. Like Everything in WordPress, you have a first version and then you see what do the people want? What do we do? Let’s try it first and see what we need. So, I think that… is that all for 13.9 that we want to point out?

\n\n\n\n

Nick Diego: Yeah. I mean, there’s a lot of bug fixes, just a lot of improvements. But I think the meat of new features comes in 14.0.

\n\n\n\n

Birgit Pauli-Haack: I think there was a lot as of the 13.9 was really a cleanup things and that continued. There were also in the background, some changes continued from lodash and from the testing that were continued from, and I think the last three or four plugin releases actually. And I’m right? Yeah.

\n\n\n\n

We are at the end of 13.9. In comes Gutenberg 14. And it was just released this week on August 31st. And it came with an enhancement. I would like to change that a little bit up. Let’s start with the design tools first, because that’s what everybody’s waiting for.

\n\n\n\n

Nick Diego: Yeah. This is I’m so excited about. So, to focus on the example of a paragraph block, one of the things that was missing from the paragraph block was the ability to change the font family and the typography controls. We had all the other stuff but not font family.

\n\n\n\n

Similarly, you couldn’t change margin and padding. Now, there’s good reasons why those, that functionality wasn’t in Gutenberg yet. There were still some things that needed to be fixed and whether it’s visualization for margin and padding or interactions with web bonds to do those font family.

\n\n\n\n

But we finally cut the green light on all this stuff. And there’s a huge project underway to provide consistency across as many blocks as possible. So, in 14.0, you’ll now see, for example, font family across not all we’re not quite done yet, but most blocks. So, it’s because there’s that muscle memory.

\n\n\n\n

When you learn how to change font family on one block, and then you go to the next one, you expect that to be there, right? And so, this huge process of standardizing design tools across blocks to me is super exciting. I hear from it all the time from users, why can’t I do this here? But I can’t do it here.

\n\n\n\n

And huge effort was made in 14.0. And it’s continuing. And we’ll be continuing to 14.1. We got tons of typography support, tons of spacing, padding and margin support. And we also got a lot of color supports as well that were missing. So, there’s a lot there and I encourage you to check out 14.0, because there may have been something you were desperately wanting and it most likely will be in 14.0, if not, 14.1.

\n\n\n\n

Birgit Pauli-Haack: Yeah. And well, think about how many blocks are there. They’ll need to be updated. So, that’s a huge effort for contributors. I’m not sure, I haven’t looked at the copays yet, but some blocks do it differently than other blocks in the background. So, it’s always a… you can’t just copy paste like you would do it in a Google doc. You definitely have to think about things.

\n\n\n\n

Nick Diego: There’s no magic switch you can just turn on then, so.

\n\n\n\n

Birgit Pauli-Haack: Now, you with theme JSON when every block has it. But up until now, that wasn’t possible yet. And now, that the controls are there, you also have them in the theme JSON file, so for your theme.

\n\n\n\n

Nick Diego: And that’s a really good point, because I’m sure there are some people listening when I’m saying, look at all this new functionality, they might be like, I don’t want my users to have that. You can always turn this stuff off in theme JSON. So, before you… even if you wanted it, you couldn’t have it, now you can have it. But if you don’t want it can be turned off, so that’s an important component for those that want to turn off stuff.

\n\n\n\n

Birgit Pauli-Haack: Yeah, it’s WordPress. If you have new features, we need the code to switch it off. It’s definitely MO4. It’s a standard for WordPress, right? All right. So, we mentioned it also before in 13.9, no, with Ryan Welcher’s Twitch stream, the create-block has a new variant flag as well as a no plugin flag that is in the enhancement section of the release.

\n\n\n\n

I also wanted to point out a few other things from the block library. One is a setting to hide the prefix for the archive title. I don’t know how many people come to me for the classic theme to remove the category string from the archive page or the archive title. And now, with block theme, it wasn’t possible. So, now, it is. It has come in and it was actually a blocker for people.

\n\n\n\n

Nick Diego: It’s really funny. This is actually a really interesting issue because the archive title is just it… the block is just a wrapper around the PHP function that’s been in WordPress forever. And so, there are people who’ve been building WordPress forever like, oh, I know how to do that, there’s just the filter to do that.

\n\n\n\n

But then, you have the people that are coming at WordPress in a no code situation and they need the control for that in the block editor. So, it’s a really interesting like little microcosm of the two worlds coming together and it’s like you can change it in the filter with PHP, if you know how to do that. Or now, we have the ability to turn off the prefix, which I think is awesome.

\n\n\n\n

Birgit Pauli-Haack: Yeah. And it enhances WordPress because you… a user, whenever, you would do this before. Now, they are. So, I’m really excited about that. Even if you know how to develop, yeah, just making a check mark in an interface is so much easier than, yeah. And open up your development environment, make that change, upload to the server and then, yeah, all…

\n\n\n\n

Nick Diego: Google how to do it because you forgot.

\n\n\n\n

Birgit Pauli-Haack: Yeah. And then, now, the post-date block on the query block or the post template. Now, you can also select that the date is the last modified date instead of the published date, which is actually also an enhancement that wasn’t before in WordPress. And so, you always have the latest date of the modification for the post, if all, or page in your Cloud.

\n\n\n\n

And now, we come to the next big feature, which is the list block has a version two, and it’s now out of experiments and available in the plugin out of the box. And give it for the next three weeks, a big testing because it will come to retro 6.1, we hope.

\n\n\n\n

It’s not yet clear, but because it’s coming rather late in there. But it’s out of experiments. The list items can now be easily better sorted with a much more improved user experience. Did you get a chance to use it yet?

\n\n\n\n

Nick Diego: Oh, yeah. And one of the things that always frustrated me, the original list block, because I kept like, I’d want to change the order of my list items, and you could. And not that I should have expected that, but you’re so used to moving blocks around. I’m like, why can’t I move this list item? Well, now you can. And it works great.

\n\n\n\n

Birgit Pauli-Haack: Excellent. Yeah. So, it’s the little things.

\n\n\n\n

Nick Diego: It is, it is.

\n\n\n\n

Birgit Pauli-Haack: It adds up. And also, in 14.0, we have a few global style changes.

\n\n\n\n

Nick Diego: Yeah. I can talk about these. So, I’ve always been a big fan of block gap. And block gap is something that, not everything is making use of, but it’s the gap between blocks. And those that use it, it’s an incredibly powerful tool. And one of the things that’s neat now is the introduction of axial gap support.

\n\n\n\n

So, one of the things that you have is if you imagine columns or buttons that are in a row. Before when you set block gap, it was the gap between the blocks, what happens on mobile when those blocks are displayed vertically. And well, now, you can control both the horizontal gap as well as the vertical gap, which is really powerful.

\n\n\n\n

One of the things I hear a lot about or had heard a lot about was the lack of responsive controls within WordPress. And we’re starting to see how we’re not getting some interface where you define what you want on mobile and define what you want on tablet. But we’re getting these more holistic approaches to dealing with different devices and axial gap is one of them.

\n\n\n\n

So, really great to see. And then, another one, which is, I think honestly, a game changer when it comes to where we’re going in WordPress is what are called spacing presets. So, if you were changing margin or even block gap or padding, you’d get a little slider or you could type in a pixel number or you… it’s free form.

\n\n\n\n

For users, that’s hard. It’s also hard for anybody. Because if you want to have consistent padding or spacing throughout your site and you keep having to enter in a specific number or use a slider, you get, did I add five pixels over here? Did I add 10 over here? I get lost.

\n\n\n\n

So, spacing stuff simplifies that UI where you can define how many steps of padding or margin, how many steps of space so you could have small, medium, large, extra, large, whatever you want. And by enabling this, WordPress provides a set scale.

\n\n\n\n

But in theme at JSON, you can define your own scale. So, I’ve been playing around with the defining my own scale and it’s great, and not to go too deep into this, but I’m very happy. When you define your own scale, you can also define a scale that uses fluid spacing.

\n\n\n\n

So, not only can you define small, medium, large, you can make that spacing value using clamp fluid. So, you can have small on desktop as different from small on mobile. And all of a sudden, you have a very fluid website that’s adapting based on old devices and it’s quite amazing.

\n\n\n\n

And it’s going to take some retooling in how people build themes a little bit that really take advantage of this stuff, but it makes block themes super powerful. And we’re actually going to start seeing that in the 2023 theme. So, that’s why back to our original discussion why 2023 is such an important thing, important theme, is this going to provide a real world example of how to use some of this stuff, so.

\n\n\n\n

Birgit Pauli-Haack: Yeah. And that combined with the fluid typography, it has been in the plugin for quite a bit now, but it’s coming to 6.1. Definitely, it’s really getting better together for the mobile responsiveness and all that. I had a conversation with plugin developers.

\n\n\n\n

And they had, I think, six view port changes that you can make to the block. And I was thinking, okay, who would actually want that? Who has the patience and the perseverance to change layout for six different view ports? And-

\n\n\n\n

Nick Diego: For every block, too.

\n\n\n\n

Birgit Pauli-Haack: For every block, yeah. So, as you said, the scaling of this is a little bit different. So, on the last item for the global styles we’re going to talk about is the pseudo element supports for button elements. That is the hub and other pseudo elements for the buttons that you want to.

\n\n\n\n

Nick Diego: Yeah. Focus and active. Yeah.

\n\n\n\n

Birgit Pauli-Haack: Focus and active, yeah. Thank you for helping me out. And we had this already for the link element. And now, we also have it for the button element, and it’s both in the interface as well as available for theme JSON.

\n\n\n\n

Nick Diego: Yeah. Having these additional supports for elements is really great. And it allows you to pull a lot of that CSS that you had in your own style sheet and put it back into the theme JSON. Granted theme JSON, they’re getting quite big. But the beauty is you can edit it directly in the global style. So, it’s very powerful.

\n\n\n\n

Birgit Pauli-Haack: Yeah. Awesome. So, good things are coming to WordPress with the next version. I’m just going through that. And we have some more features, one more feature with… for the patterns, this new bundle of collections of header and footer block patterns in the plugin, because the directory is not working right with all the dynamic stuff. So, they bundled a few more collections there.

\n\n\n\n

Nick Diego: Yeah. It’s nice to see those updated. The ones that have been there have been in there for a while.

\n\n\n\n

Birgit Pauli-Haack: Oh, yeah. I think the pattern when, the first introduced like the 5.5 or something like that. So, they’re coming… new things are coming in the pattern. There’s one feature that I really like, it’s the merging of blocks that you allow, that you can merge wrap blocks or into wrap blocks from both and list group and all that. It’s a nice quality of life change.

\n\n\n\n

And it needs a little bit, it takes more to explain that than show that. So, we probably need to do a demo on that and will be demoed on any of the talks that are on workers, learning on workers, not learning WordPress online, meetup groups. I’m sure some of them will demo that. And that, I think unless we overlooked something, we are at the end of it.

\n\n\n\n

Nick Diego: Yeah. Well, I mean, for the listeners, we breeze through a lot here. These two releases 5.9 and 14.0 super impactful, but they’re also give you a really good look about what’s coming in 6.1. We’ve had full site editing and block themes in WordPress for a while now.

\n\n\n\n

If you’ve been hesitant to jump in 6.1 is going to have a lot of things that you might have been looking for in order to get started and jump in. So, very excited for 6.1, and having all of this stuff included in core.

\n\n\n\n

Birgit Pauli-Haack: Yeah. And the next version is 14.1. Of course, the next… and it will be released on September 14. That’s interesting because on September 13, it’s going to be the walkthrough. That’s a preliminary date. It hasn’t been officially announced, but it’s for you listeners here.

\n\n\n\n

You heard it here first. But it’s when the release leads from a core, technically leads from core and block editor go through what’s going to be released and demo some of the things. So, we have all the priorities, right? The last version that will make it into WordPress 6.1 of the good note plugin is probably… so the feature releases on September 20th, there will be a release candidate of WordPress 14.2.

\n\n\n\n

So, whatever gets into that release in that milestone will be wrapped up and pushed into WordPress 6.0. And I think the editor release leads will do some last. And of course, the triage will go through that and see what’s happening there.

\n\n\n\n

Nick Diego: Yeah. And I have a lot to do with the next few months.

\n\n\n\n

Birgit Pauli-Haack: Yeah. All of us, because we are going through all the PRs and mark all for dev notes. So, there is a team. And Milana is doing the same for core, for the track tickets to find the dev notes that need to be published, and then we publish them. So, that’s going to be a really interesting thing.

\n\n\n\n

And I learn so much when I do that. It’s just mine. I don’t know where my brain do, it does that. But yeah, I just keep adding to it. So, we are almost at the end of the show. Is there anything, Nick, that you wanted to share with our listeners that you didn’t get to yet?

\n\n\n\n

Nick Diego: Yeah. I mean, I’ll do a short plug here. So, our developer relations team at WP Engine, we do a lot of contributing to both the docs team and training and to core. But we also do, produce our own content, take supplement, some of the things that are already out in the world.

\n\n\n\n

And so, if you just go to wpengine.com/builders, it’s all just tutorials and articles on building with modern WordPress, very topical to what we’ve talked about today, talking about fluid typography. One of my favorite articles that I just released is about contextual patterns, which I don’t think that many people know about or use.

\n\n\n\n

But it’s a great way of functionality that’s in Gutenberg and in WordPress to take your theme to the next level. So, yeah, lots of great content. But of course, we’re always contributing to training docs as well, so.

\n\n\n\n

Birgit Pauli-Haack: Yeah. And I really like what you’re doing there. All of the articles are really well go deep, sometimes, deep developer wise, sometimes, content creator wise. So, it’s a great mixture for any target audience pretty much. That’s terrific. So, thank you for joining me today, sharing your knowledge and opinions with our listeners. And I’m looking forward to meeting you in-person.

\n\n\n\n

Nick Diego: I know. Yeah. I can’t wait. Well, thank you very much for having me. I remember listening to this podcast a year ago, once I started working on WordPress full time. So, I think I’ve peaked now that I’m on the show now, so.

\n\n\n\n

Birgit Pauli-Haack: Yeah. You made it.

\n\n\n\n

Nick Diego: That’s right.

\n\n\n\n

Birgit Pauli-Haack: That’s what I thought. When Doc Pop invited me to the Pope Magazine. He said, “I made it.”

\n\n\n\n

Nick Diego: That’s right.

\n\n\n\n

Birgit Pauli-Haack: Yeah. Dear listeners, our next show will be recorded on September 15th. So, there’s 13, walkthrough, 14 release, 15th Gutenberg changelog recording. It will be released shortly after. And we will have the brilliant Channing Ritter from the WordPress design team on the show. As always the show notes will be published on gutenburgtimes.com/podcast.

\n\n\n\n

This is episode 72. And if you have questions or suggestions or news, you want us to include send them to changelog@gutenbergtimes.com, that’s changelog@gutenbergtimes.com. Or, just shoot me a DM or PM on Slack or Twitter. It’s all opened for us, for you. Thank you again, Nick, for joining us. What’s your Twitter handle?

\n\n\n\n

Nick Diego: Just Nick Diego, @nickdiego on Twitter. Wow, I should notice it, it’s actually @nickmdiego on Twitter. It was hard to get Nick Diego.

\n\n\n\n

Birgit Pauli-Haack: Yeah, you need to kick the Nick Diego out who has your handle.

\n\n\n\n

Nick Diego: Exactly.

\n\n\n\n

Birgit Pauli-Haack: Yeah. Well this is it. Thanks all. And be well. And if I see you on WordCamp US, please, I’m looking forward to it. Take care.

\n\n\n\n

Nick Diego: Thanks so much.

\n\n\n\n

Birgit Pauli-Haack: All right, bye-bye.

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 04 Sep 2022 20:11:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:17;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"Gutenberg Times: Typography for all blocks, Refined Template editing, context patterns – Weekend Edition 227\";s: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=21934\";s: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/typography-for-all-blocks-refined-template-editing-context-patterns-weekend-edition-227/\";s: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:29822:\"

Howdy,

\n\n\n\n

I am finally home in Sarasota, Florida with just enough time to do laundry, get over the jetlag and clear the backlog of messages after being away from the computer for three weeks. Next week, I’ll be gone again to San Diego and WordCamp US (WCUS). I am so excited to see lots of friends and make new ones! If you can’t make it, there will be a livestream of all sessions, except the workshops.

\n\n\n\n

If you plan to attend WCUS, please let me know. I want to meet you and see you again! Don’t be shy. Introduce yourself. Even if I am in conversation with someone else. At WordCamps, people practice the the Pac-Man rule – when standing in a group chatting, we leave a space so a new person can join the conversation.

\n\n\n\n\n\n

Now let’s catch up on two weeks of Gutenberg updates and posts. It’s again a long list, stoke full of creativity, features and discussion.

\n\n\n\n

Be well,

\n\n\n\n

Yours, 💕
Birgit

\n\n\n\n\n\n\n\n\n\n

Developing Gutenberg and WordPress

\n\n\n\n

Anne McCarthy published another post in the Core Editor improvement serie about Refining the template creation experience. She wrote: “Alongside more template options comes some exciting refinements to the overall experience that should allow you to move faster with more accuracy to do what you want to do. In isolation, these enhancements might not catch your attention but, when viewed collectively, it’s clear that the template experience has been greatly improved. ”

\n\n\n\n

McCarthy goes into great detail of the template editing workflow and the videos are quite ilustrative. Many of you, who have been experimenting with block themes, might get great joy out of the fact that there is now a View Site link available in the editor. All will be available in WordPress 6.1, scheduled for release on November 1, 2022. If you don’t want to wait that long, install the latest version of the Gutenberg plugin.

\n\n\n\n\n\n\n\n
\n\n\n\n

Courtney Robertson posted the latest from the training team. The post includes a list of new tutorials available about the block editor. These short ,8 to 10 minutes long, free videos are ideal for on-demand direct learners.

\n\n\n\n\n\n\n\n

Below you also find the upcoming events from the Learning WordPress Online Meetup group.

\n\n\n\n
\n\n\n\n

Wes Theron posted a Summary Update: Courses Currently in Development (1 September 2022). They are all course for the block editor:

\n\n\n\n
    \n
  • Block Development Course
  • \n\n\n\n
  • Two Block Theme Development Courses
  • \n\n\n\n
  • Create your First App with Gutenberg Data Course
  • \n
\n\n\n\n

We will keep you posted on when those course will be opened up for enrollment. They all will be part of the Learn.WordPress site.

\n\n\n\n
\n\n\n\n

Maggie Cabrera, member of the WordPress Themes team and first-time release lead, published What’s new in Gutenberg 14.0? (31 August). The new release come with lots refinement updates, especially regarding consistence of the interface, for instance, 30 core block received UI support for typography settings. The highlights:

\n\n\n\n\n\n\n\n

This week, we produced again a Gutenberg Changelog episode (#72) and my special guest was Nick Diego. We talked about Gutenberg 13.9 and 14.0 releases and WordPress 6.0.2 Security and Maintenance release. We also touched on WCUS and theme releated topics.

\n\n\n\nNick Diego, WPEngine and Birgit Pauli-Haack making Gutenberg Changelog episode #72\n\n\n\n
\n

🎙️ New episode: Gutenberg Changelog #71 – Gutenberg 13.8, Fluid Typography, updates to the Block API and more – with co-hosts Grzegorz Ziolkowski and Birgit Pauli-Haack

\n
\n\n\n\n
\n\n\n\n

Officially, Friday was the last day to respond to the 16th FSE call for Testing Back to the Basics, but Anne McCarthy wrote in the Slack channel “I was out hiking in the mountains for most of this week so will be catching up on the feedback that came in today and early next week as I begin the write up too. Thanks to everyone who has responded and for the patience! This also means that if you really want to sneak in a response over the weekend, you can”.

\n\n\n\n

James Koster, design team, published on his private blog Revising the presentation of key Site Editor features. He wrote: “I’ve been ideating on how we might present site editor features with more appropriate weighting, so that the overall experience feels more like a design tool.”

\n\n\n\n
\n\n\n\n

Theme Development for Full Site Editing and Blocks

\n\n\n\n

If you want to know more about Style variations, how to create them and what it was like working on one for the Twenty-Twenty Three theme,  Justin Tadlock takes you along for his experience designing a style variation.

\n\n\n\n

I appreciated this sentiment from Tadlock’s post: “There was a small part of me that remembered exactly why I fell in love with WordPress in the first place. I felt like that same 21-year-old kid who had just learned to edit a theme’s style.css file to make some minor color changes. This was the WordPress that I remembered from so long ago. The one where themes were not 100s of files and 1,000s of lines of code.” 

\n\n\n\n\n

 “Keeping up with Gutenberg – Index 2022” 
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. 2021 on. Updated by yours truly. The index 2020 is here

\n\n\n\n\n

Tools, plugins and themes for site owners and nocode site builders

\n\n\n\n

Jeff Chandler is now writing for the Torque magazine and discovered: The Quote Block We Deserve Is Finally Here. He wrote: “It’s wonderful. I can copy and paste multiple paragraphs of text into a quote. I can paste or create lists inside of a Quote. I can select multiple paragraphs that exist within the content and turn that into a Quote. “

\n\n\n\n
\n\n\n\n

Lesley Sim, co-founder of Newsletter Glue describes in here latest newsleter post Big Changes are Coming how style variations will arrive at the plugin’s template designer, as well as Global styles and automated newsletters. With the latter, there will be dragons in form of breaking changes coming your way in 4 to 6 weeks . So stay tuned!

\n\n\n\n
\n\n\n\n

Jamie Marsland published his Gutenberg Block News video and quick five minute show with the latest in the space: He covers the plugin release 14.0 – AI Image plugin and FSE Studio by WPEngine, both still in private beta and alpha testing.

\n\n\n\n
\n\n\n\n

In his post, Fränk Klein asks Can we please stop saying ‘Gutenberg’? and bemoans the confusion around various terms, he encounters in the WordPress universe. If you feel confused, too, let Klein explain what he thinks is the root cause, and what are more precise terms could be used when talking or writing about features of the block editor.

\n\n\n\n

BTW: There hasn’t been any decision yet for on the renaming of Full-site-editing.

\n\n\n\n
\n\n\n\n

Vikas Singhal announced on Twitter, the release of the Gutena Forms plugin in the repository. He continues: “We try to make it as native as the core blocks, which means: super flexible , easy to fonfigure, light weight (& no jQuery) and available as a single block plugin”.

\n\n\n\n

Despite it being a single block plugin, it doesn’t come up in the Inserter search. You would need to install it via the Plugins page.

\n\n\n\n

The design options are fairly intuitive and you are presented with four prebuild forms to start out. You are also able to edit the submission message and error message below the form in the editor. Also, options for the form actions are to send a message (via email) or to enter a URL to externally handle the processing of the submitted form values.

\n\n\n\n

It’s certainly a great start. Some documentation wouldn’t hurt especially the difference between a Form Group and a Form Field block, how to use the URL action option and an explanation of the design options.

\n\n\n\n\n\n\n\n

Marie Comet built a new plugin: Convert classic to Gutenberg (GitHub). In the Readme she wrote: “This WordPress plugin provides an interface to convert posts built with the Classic (old) Editor to Gutenberg. Classic content is parsed and converted to blocks.”

\n\n\n\n

Jeff Chandler has tested it and wants you to Check Out This New Plugin That Converts Posts Published in the Classic Editor Into Blocks (via Torque Magazine)

\n\n\n\n

Building Blocks and Tools for the Block editor.

\n\n\n\n

Ryan Welcher published the recording of this week’s Twitch stream Overview of the new flags in the 4.0 release of create-block on YouTube. He goes over the new –-no-plugin and --variant flags that have been added to the create-block tool. These flags greatly increase the usability of the tool by allowing users to add a new blocks to an existing plugin ( or theme ) and by providing the ability for a template to provide variants of a block, such as a dynamic and static version.

\n\n\n\n

If you are more the reading type learner, Welcher also updated the documentation pages for the create-block package, and added a section on how to create custom templates for the tool, so you can use them for agency specific scaffolding. 

\n\n\n\n
\n\n\n\n

A couple weeks ago, Tom McFarlin, long time independent WordPress back end developer started on a quest to write ‘better’ block development tutorials. In his A Backend Engineer Learns to Build Block Editor Blocks, Part 1, he walk you through the pre-requisites and creating a block plugin from scratch, explains dependencies and the Block API using block.json file. He also suggests a certain folder structure for the plugin and you can now activate the plugin in your development site. It doesn’t do anything yet, but you have the skeleton working. Further in the tutorial you learn about the edit() and `save()` functions to display a string in the editor and on the front end of your site. In the reference section you’ll find short explanations of terms and links to the WordPress block editor handbook.

\n\n\n\n
\n\n\n\n

In a Hangout Hallway, Anne McCarthy gathered about 15 theme developers to discussed various aspects of theme development with full-site editing, styles, Figma and Design Systems and how they can work together with theme.json – Custom block development, how to organize Pattern Libraries.  In her post McCarthy concludes: “ .. while there is both excitement and interest in what block themes unlock, it’s also clear that there are a build up of pain points to address, whether through clearer resources or changes to Gutenberg itself. “ 

\n\n\n\n

If you are a theme developer hearing from people, like Ellen Bauer, Carolina Nymark, Rich Tabor, Ana Segota, Herb Miller, who have been working and building block themes for quite some time already, it will jumpstart your discovery and speed up your knowledge aquisition.

\n\n\n\n
\n\n\n\n

In his latest post, What are Page Creation Patterns in WordPress?, Nick Diego explains the nature of context aware block patterns, used for a specific use case; for instance, when create a new Page your user can select full page patterns, or if they use a particular custome post type, you can offer different set of patterns. He writes “Combine this functionality with block locking, and you could present users with an extremely curated editing experience.”

\n\n\n\n
\n\n\n\n\n

Need a plugin .zip from Gutenberg’s master branch?
Gutenberg Times provides daily build for testing and review.
Have you been using it? Hit reply and let me know.

\n\n\n\n

\"GitHub

\n\n\n\n\n\n
\n\n \n
\n \n \n
\n \n \n \n \n
\n
\n
Live Q & A: Block-First Approach at Pew Research Center
On July 22, 2022, Michael Piccorossi, Head of Digital Strategy and Seth Rubenstein, Lead Developer at Pew Research Center talked to co-hosts Anne McCarthy, WordPress Product Liason and Birgit Pauli-Haack,… Read more.
\n
\n
\n \n \n \n\n \n \n
\n \n \n \n \n
\n
\n
Conditionally Registering Patterns in Themes with Third-Party Blocks
What happens when a theme registers a pattern with a third-party block? If the user has the block plugin installed, it appears as it should. WordPress also does a good… Read more.
\n
\n
\n \n \n \n\n \n \n
\n \n \n \n \n
\n
\n
Layouts and Wide Alignments in WordPress: Then, Now, and Upcoming Changes
For most of WordPress’ history, the platform accepted a single layout width, defined by the active theme’s global $content_width variable. Theme authors were required to handle the CSS for it… Read more.
\n
\n
\n \n \n \n\n \n \n
\n \n \n \n \n
\n
\n
Designing Style Variations for Twenty Twenty-Three: The Good, the Bad, and Everything Else
Since the release of Twenty Ten, the WordPress community has gotten a new default theme almost every year. This has allowed the platform to amass a well-designed and solid body… Read more.
\n
\n
\n \n \n \n\n \n \n
\n\n
\n\n\n\n\n
\n\n\n\n

Upcoming WordPress events

\n\n\n\n

November 18, 2022
WordFest Live 2022

\n\n\n\n

October 11-13, 2022
WooSesh 2022

\n\n\n\n

WordCamps around the World

\n\n\n\n

September 3 + 4, 2022
WordCamp Kathmandu, Nepal

\n\n\n\n

September 9 – 11, 2022
WordCamp US in San Diego

\n\n\n\n

September 15 + 16, 2022
WordCamp Netherlands at the Royal Burger’s Zoo in Arnhem

\n\n\n\n

September 24 + 25, 2022
WordCamp Pontevedra

\n\n\n\n

February 17 – 19, 2023
WordCamp Asia, Bangkok, Thailand
Call for speaker was just published. Deadline: September 15th, 2022 (UTC +7)
Contributor Day is planned for February 17, 2023 (Day 1)

\n\n\n\n

Learn WordPress Online Meetups

\n\n\n\n

September 6, 2022, 5 pm EDT / 21:00 UTC
Customizing a footer with patterns with Wes Theron

\n\n\n\n

September 6, 2022 4 pm EDT / 20:00 UTC
The Creative Side of Blocks, Vol. 2 with Brian Gardner

\n\n\n\n

September 8, 2022, 10 am EDT / 14:00 UTC
A Beginners Guide to Block Locking in Block Themes with Jonathan Bossenger

\n\n\n\n

September 14, 2022 1 AM EDT / 5 am UTC
Showcasing Content with Query Loops with Wes Theron

\n\n\n\n
\n\n\n\n

If you are curious about the featured image, I spent about an hour on Midjourney’s Discord server interacting with their Imaging AI bot to create illustrations. . It’s a fascinating journey. It’s also addictive.

\n\n\n\n

Don McKenzie, designer at Deephaven, shared is experience in I replaced all our blog thumbnails using DALL·E 2 for $45: here’s what I learned.

\n\n\n\n

Aaron Edwards, CTO at WPMUDEV, posted on Twitter a preview of a new plugin he has been working on to bring Google’s Imagen generated into your WordPress editor.

\n\n\n\n\n

Featured Image: Young female in car repair shop created by Midjourney AI

\n\n\n\n
\n\n\n\n

Don’t want to miss the next Weekend Edition?

\n\n\n\n

We hate spam, too and won’t give your email address to anyone except Mailchimp to send out our Weekend Edition

Thanks for subscribing.
\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 03 Sep 2022 20:39: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:18;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: Gutenberg 13.9 Adds New Shortcut to Wrap Selected Text in Quotes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=137551\";s: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:85:\"https://wptavern.com/gutenberg-13-9-adds-new-shortcut-to-wrap-selected-text-in-quotes\";s: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:3825:\"

Wouldn’t it be convenient to select a sentence or paragraph and instantly wrap it with quotes by tapping on the quote key? This is a fun little feature that was tucked into the Gutenberg 13.9 changelog last month with very little fanfare:

\n\n\n\n
\n

Rich text: Add character shortcuts for wrapping selection. (42469)

\n
\n\n\n\n

The new shortcut is a rich text feature contributed by Automattic-sponsored WordPress core committer Ella van Durpe. It works in a similar way that pasting a link over selection will auto-link the text instead of replace it, a feature that landed seven years ago which she also worked on.

\n\n\n\n

The new quotes shortcut escaped my notice until I saw George Mamadashvili’s quick video demo on Twitter:

\n\n\n\n
\n

My new favorite Block Editor shortcut is the ability to wrap selected text in quotes. Select text and press `, \' or \".

This nifty little feature shipped with Gutenberg 13.9. However, the editor always supported air quotes. pic.twitter.com/VnPqv6E44U

— George Mamadashvili (@Mamaduka) September 2, 2022
\n
\n\n\n\n

This is a clever feature that is commonly supported by IDE’s like IntelliJ and PyCharm. Although wrapping with quotes is likely the most common use case for this type of shortcut, it also supports wrapping the selection with a back tick (`), which will automatically wrap it in a code tag instead of replacing the selection with a back tick. van Durpe demonstrated this in the PR with a gif:

\n\n\n\n\n\n\n\n

If you frequently copy and paste text that is meant to be in quotes, or code that needs backticks, this new shortcut is a major timesaver and one of the most exciting features to land in 13.9. van Durpe said it was generalized to work with any characters, such as pressing ( to wrap the selection in parenthesis, instead of deleting the selection. However, this was scaled back a bit during the review before the PR was merged.

\n\n\n\n

“I’m a bit worried with expanding these to characters that are natural openers because I suspect it’s a typical action to select a word and type the first letter of what should replace it — parentheses and quotation marks, in particular, would have a much higher incidence of cases where the intention is indeed to replace the selected text with the mark, not to wrap it in them,” Gutenberg lead architect Matias Ventura said.

\n\n\n\n

Ventura concluded that it’s worth testing but suggested more characters be added incrementally to focus feature announcements on the ones they are more certain about “without the ones that could be problematic tainting the feature.” This is possibly the reason it wasn’t highlighted in the release post.

\n\n\n\n

The backtick and quote characters are the only two included in this iteration of the feature. It’s not easy for users to discover in the natural course of using the editor, so it might need a little promotion for people to start using it enough to know if it’s going to become one of those indispensable features or something that is inadvertently causing frustration.

\";s: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, 03 Sep 2022 03:29:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: Jetpack Performance Team Takes Over WP Super Cache 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:30:\"https://wptavern.com/?p=137516\";s: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:83:\"https://wptavern.com/jetpack-performance-team-takes-over-wp-super-cache-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:4657:\"

WP Super Cache, one of the oldest and most widely used static caching plugins for WordPress, is changing hands. After 15 years, the plugin’s author, Donncha Ó Caoimh, is handing over maintenance and development to Jetpack’s performance team.

\n\n\n\n

If you have been building WordPress sites since the early days, you are almost guaranteed to have used WP Super Cache on at least one project (or hundreds). It is based on an earlier plugin called WP Cache 2 that Ó Caoimh forked in 2007 when its author had lost interest and was no longer developing it.

\n\n\n\n

Jetpack’s performance team manages the Jetpack Boost plugin, used by more than 100,000 sites, and the CDN. In today’s announcement, Jetpack assured current users that they will still be able to “enjoy its core features without a new plugin or a connection to Jetpack.”

\n\n\n\n

“We’re excited to start working on WP Super Cache,” Jetpack Performance Lead Mark George said. “Our goal is to create an experience where anyone can make their site extremely fast without being an expert. We want to help make sure that WP Super Cache remains a reliable and easy option for that.”

\n\n\n\n

This change in hands is not an acquisition. Ó Caoimh, who was the very first Automattic employee, confirmed the company did not buy the plugin from him.

\n\n\n\n

“I’ve worked in Automattic since the company was founded, so they’ve supported the development of the plugin all along,” he said. “Really, the plugin is moving sideways in the company, from one developer to a team.

\n\n\n\n

“I just don’t have time to work on it properly. I’m working on other projects, mainly Crowdsignal now, and it was hard to find time to work on it. Jetpack will be able to do a lot more with it than I ever could.”

\n\n\n\n

Ó Caoimh said the support burden for the plugin isn’t that bad, despite it being active on more than two million WordPress sites.

\n\n\n\n

“The plugin has a ‘debug log’ that will log (almost) everything it does to a file, which makes it easier to figure out why a problem is happening a lot of the time,” Ó Caoimh said. “Unfortunately, due to time constraints, I wasn’t able to give the support forums the time it deserved either. Now, a team in Automattic will be helping answer questions and solve problems. It can only be a good thing for users of the plugin.”

\n\n\n\n

Ó Caoimh said handing over maintenance and development to the Jetpack team frees up time for his family and eliminates a source of stress, as he was worried that WP Super Cache wasn’t getting the attention it needed.

\n\n\n\n

“In the past I worked on this late into the night but I have a family, and they come first,” he said.

\n\n\n\n

The Jetpack team already has plans to modernize the plugin and will be investing more resources in support and new features.

\n\n\n\n

“While we research new features to help make WordPress sites cache faster, we will begin updating the WP Super Cache UI to bring it in line with modern standards, so it is easier to use,” Jetpack VP of Marketing Rob Pugh said. “In addition, we’ll be working behind the scenes to ensure it’s compatible with our other performance features like Jetpack Boost.”

\n\n\n\n

After 15 years, it’s impressive that WP Super Cache has maintained a 4.3 out of 5 stars rating on WordPress.org with 1,296 reviews. With the Jetpack team’s resources, support in the forums is likely to improve, and users can expect to see more improvements as the plugin now has a team of people moving it forward.

\n\n\n\n

“I have no regrets handing over the plugin to Jetpack,” Ó Caoimh said. “It’s one thing to create and maintain a plugin that might be used by a handful of sites, but this plugin is used by two million sites. If I introduced a subtle error that impacted people using WordPress in a manner I hadn’t thought of that might cause problems for thousands of websites. The itch that I scratched by creating WP Super Cache has well and truly been scratched and has long healed.”

\";s: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, 02 Sep 2022 20:46: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"Post Status: Post Status Excerpt (No. 67) — What Does Professionalism Mean in WordPress?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=114431\";s: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://poststatus.com/what-does-professionalism-mean-in-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:56786:\"

Dan and Eric discuss their top picks for WordPress news stories of the week and the topic of professionalism. What is it — what does it mean for us in the WordPress community, and how does it relate to a healthy open source project and business ecosystem?

\n\n\n
\n\n\n\n

Estimated reading time: 29 minutes

\n
\n\n\n\n
\n\n\n\n\n\n\n\n
\n\n\n\n

We\'re not afraid to let our human side show.

Erik Karkovack
\n\n\n\n

In this episode of Post Status Draft, Eric Karkovack joins Dan Knauss to discuss their top picks for important topics and news stories in the WordPress world this week.

\n\n\n\n

Finally, Dan and Eric take up the topic of “professionalism.” What is it — what does it mean for us in the WordPress community, and how does it relate to a healthy open source project and business ecosystem?

\n\n\n\n

Eric\'s Top News Picks

\n\n\n\n
  1. WP-Optimize‘s “Cheating” Scandal (WP Tavern)
  2. WebP in WordPress 6.1 in on hold again / “being reconsidered” (Post Status)
  3. WordPress.com Now Offering $499 Websites (Post Status)
\n\n\n\n

Dan\'s Top News Picks

\n\n\n\n
  1. Unethical “GPL clubs” and “piracy” — and what we can do about it. (An emerging discussion in Post Status Slack and on Twitter.)
  2. Gravity Forms acquires Gravity Flow and Gravity Experts, a pair of product and service businesses in the Gravity Forms ecosystem developed by Steven Henty, Director of Product Development for Rocketgenius – the creators of Gravity Forms.
  3. Post Status\'s Member Spotlight for this week is on Jonathan Bossenger. What he says (and personally represents) touches some ideas about professionalism in the WordPress ecosystem and here at Post Status.
\n\n\n\n
\n
\n

\"🙏\" Sponsor: A2 Hosting

\n\n\n\n

A2Hosting offers solutions for WordPress and WooCommerce that are both blazing fast and ultra-reliable. WordPress can be easily deployed on ANY web hosting plan from A2: Shared, VPS, or Dedicated. A2 also offers Managed WordPress and WooCommerce Hosting. Take a look at a2hosting.com today!

\n
\n\n\n\n
\n\"A2
\n
\n\n\n\n

\"🔗\" Mentioned in the Show

\n\n\n\n\n\n\n\n

\"👋\" Credits

\n\n\n\n\n\n\n\n

Every week Post Status Excerpt will bring you a conversation about important news and issues in the WordPress community and business ecosystem. \"🎙\"

You can listen to past episodes of The Excerpt, browse all our podcasts, and don’t forget to subscribe on Spotify, Amazon Music, Google Podcasts, iTunes, Castro, YouTube, Stitcher, Player.fm, Pocket Casts, Simplecast, or by RSS. \"🎧\"

\n\n\n\n

Transcript

\n\n\n\n

Dan Knauss: Hey, Eric, how are you doing?

\n\n\n\n

Eric Karkovack: I\'m good. How are you?

\n\n\n\n

Dan Knauss: Not bad. Um, yeah, another, another week coming, coming down to, uh, to a close and assembling the, the stories that matter. We want to, um, get into our often jampacked newsletter and thinking about, um, weird camp coming up. And, um, I think everyone\'s getting geared up for that.

\n\n\n\n

Um, So what\'s, what\'s on the top of your mind this week, I wanted to kinda run through the top three, um, news stories of, um, the commentary issues, questions in the WordPress space that, uh, matter to you. And I\'ve gotta got a few, two.

\n\n\n\n

Eric Karkovack: I think the biggest thing that came out to me is that, uh, the whole WebP support in, uh, WordPress six point ones kind of being reconsidered at the moment.

\n\n\n\n

Yeah. Thought that was, uh, a lot of community pushback on, uh, how they were going to implement it and kind of nice to see the, uh, leadership, uh, in, you know, the developers take a step back and kind of think things through again,

\n\n\n\n

Dan Knauss: right. Yeah, that\'s gone back and forth quite a bit. I, I got a little lost, um, keeping up and like, like you and your earlier writing about it.

\n\n\n\n

I, I think a lot of us feel, boy that would turning that on by default, um, is, is not something we like is there should be. An option or at least, uh, I don\'t know. I could see, I could see putting in a default for new installs or something like that, but for, to suddenly switch, um, potentially, um, everyone over from JPEGs or, or whatever, that\'s, isn\'t that the main sticking point.

\n\n\n\n

Eric Karkovack: Yeah, basically it would take, um, what was being proposed was that if you uploaded a, a JPEG or a PNG file or whatever, uh, WordPress would automatically convert it to a WebP and use. And so there\'s, you know, talk about, well, that takes up a lot of server resources. Um, WebP isn\'t supported in every browser.

\n\n\n\n

There\'s like specific versions of safari that are a few years old that don\'t, you know, uh, support it yet. And just all the files that it\'s gonna create, cuz you know, WordPress creates three or four versions of every image you upload. And if it\'s doing that again for WebP versions, You know, some folks on cheaper hosting accounts could run outta space.

\n\n\n\n

Right. And then there\'s the whole idea of, you know, WordPress is all about controlling your content and controlling your process. And to me, that\'s kind of a, the oddity of it. It\'s like, well, they\'re gonna force you to use this format that by the way Google created and you know, yeah. Not everybody wants to use it.

\n\n\n\n

I, I think, you know, having a check box makes a lot of sense, right?

\n\n\n\n

Dan Knauss: Yeah, there\'s, uh, I was looking at, um, working on, um, towards editing on the, uh, web Almanac, um, which a number of WordPress people contribute to each year for, um, CMS section of that. And, um, their data set where they compile, um, run a bunch of queries on a test population and, you know, see how many are using WordPress and Elementor stands out to, and, you know, WordPress is just.

\n\n\n\n

Weighing the numbers are, are way out there. And you start to think about, um, the dramatic impact it, it would have with, um, Switching a format to, you know, suddenly becoming very heavily used, like, um, like WebP, which, which I\'ve kind of been in favor of, uh, from a sustainability perspective, because end performance it\'s, it\'s generally faster and is gonna use less bandwidth and let\'s storage.

\n\n\n\n

But if you duplicate, you still have all those old JPEGs and you duplicate that. And yeah, you\'re really adding a lot in that, in that respect, it\'s not saving, uh, saving the planets and. Particularly well, um, but I haven\'t seen that side of the discussion come up, um, on it, but I, I, uh, I know there are people who care about, um, just how much we\'ve got in the cloud.

\n\n\n\n

That\'s just junk and it\'s taken cost in electrons, power every day. Um, so it, it will be interesting to see how that gets, that gets sorted out. Um, I\'m sure more efficient formats are where we\'re headed. um, so my, my, um, my number one pick is, is not really something that\'s been tackled yet. I\'m sure people are starting to write.

\n\n\n\n

I haven\'t, uh, I have to let things settle and think about a bit, but there\'s a, there\'s a big running discussion that started in two channels, two threads and, and, uh, post data is slack. Piracy G or unethical behavior with cloning, um, you know, G GPL clubs that get hold of a commercial license and crack, uh, WordPress plugins and, and so on, and then re resell this, uh, cheaply.

\n\n\n\n

Um, that\'s always been a thing. Uh, I think I remember that going on in ju. Um, there\'s we all know the reasons why that\'s a bad idea, hurts people\'s businesses. There\'s often malware that comes along as a payload with your free, cheap cracked software. Um, but this, at the same time, one of the big culprits here, um, was adding in some, adding in some new product that is sort of specialized at a niche.

\n\n\n\n

And it\'s not, you know, it\'s not, uh, Cheap plugins are some quite high end things targeted at hosts. Um, so it\'s a, it can be really devastating to some people\'s business model. If, if it were, um, if it was costing them, their target audience, some people feel actually, you shouldn\'t worry about this because the only people using it or kids or people who aren\'t your customers anyway, um, but this one particular.

\n\n\n\n

Hosting, uh, pirated, uh, GPL club. Where\'s archives, spammed, a ton of people, including people who are in the middle of this discussion. Uh, just at that moment, um, got a lot of Twitter, DMS and, and other things, uh, straight at people who totally don\'t want is going on. So, um, Allie Niman suggested, well, you know, one way we could come combat, this is go at the host and say, there.

\n\n\n\n

Spamming. Um, there\'s been some discussion of what could we do collectively to fight back and protect the ecosystem. Um, have you taken a look at those discussions or seen this come up in the past and have thoughts on it?

\n\n\n\n

Eric Karkovack: Yeah. There have been a number of cases over the years where people\'s plugins have been forked and stolen and, you know, resold that\'s.

\n\n\n\n

I mean, I, I wonder how many of those plugins are actually in product. Especially on high level sites. I mean, if you are a web designer who is, you know, partaking in something like that, uh, you know, clients may have these things on their sites and not know it. I wouldn\'t think there\'s a huge number, but yeah, I think Allie\'s, uh, you know, Suggestion of going after hosting is, is, is a good one.

\n\n\n\n

I think maybe it could go after payment gateways too. I know, like, especially PayPal has been rough on anyone. Who\'s doing anything sketchy over the years. You know, if, if that\'s gets reported, they may get their, uh, their payment gateway shut down, which, you know, could kind of cripple their ability to redistribute this stuff.

\n\n\n\n

But yeah, I mean, I do think WordPress leadership should speak out on it. You know, I, I know that\'s, I mean, it\'s not just a WordPress issue. It\'s, it\'s a software issue. It\'s an open source issue, but you know, just some sort of statement, you know, maybe even at word camp us about, you know, let\'s protect this ecosystem.

\n\n\n\n

Let\'s make sure. You know, everybody\'s playing by the rules and that we, you know, if we find someone who\'s not, we should, you know, make, uh, everyone aware of.

\n\n\n\n

Dan Knauss: Yeah, exactly. I\'ve I\'ve often thought, man, I wish there was some advocacy. I wish we had like a nonprofit or, or some collective where we supported, uh, advocacy for open source to both educate people who know nothing about it, the consumers and everyone else and just show, Hey, look, this is a professional space where people are making, living from small.

\n\n\n\n

Freelancers solo people. Who\'ve been at it a long time, basically family businesses, all the way up to, um, in the bigger, the bigger companies that are heavily by everyone else. It\'s a, it\'s a big family and, uh, they\'re real people here. And if you, you support these products, it\'s, uh, it\'s hurting us. So there\'s kind of that, um, The, uh, tending the collective governments, governance of an industry as a commons like this, an open source one there\'s, there should be things that, um, outside of the project, even that, that people in, in the WordPress business.

\n\n\n\n

Can do that would kind of be on the list of Eleanor Ostrom\'s, um, things that healthy ecosystems, healthy commons do to, uh, to protect themselves where you, you find the bad actors and find ways to suppress and discourage that. And sometimes if they\'re internal to the community, you wanna, you know, not completely.

\n\n\n\n

Demonize them, but give some kind of carrots and stick so that there\'s incentives to come back and be a good contributor. And you know, some host, straight anger, rage on the internet is just adding to useless stressful stuff. Maybe there\'s a win in this and on the advocacy and education side. But, uh, I also threw out the idea that since the WordPress foundation does legal.

\n\n\n\n

Defense of the WordPress trademark. Uh, this is like one step away. Suppose you had good citizens who are doing five for the future. Um, and they\'re, they don\'t have quite the means to individually defend themselves in the same way or they\'re are there ways we could, um, pull together and help each other through, um, through that, through the foundation or something like that?

\n\n\n\n

Eric Karkovack: Um, yeah, you would think there, there could at least be some sort. Guide to, uh, steps you can take, you know, I know they, they have lawyers working on their side, as you said, to protect trademarks and, and things like that. You know, even if it\'s just general advice to come out and say, Hey, your, your, your, your plugin has been selling on the black market.

\n\n\n\n

Here\'s what you can do. Here\'s some resources that would, you know, seem like at least the basic way to, to help.

\n\n\n\n

Dan Knauss: Yeah. And I think it\'s kind of a black eye for. Uh, for any, any business ecosystem, uh, people looking to get into it. Um, it may not understand quite what\'s going on, but it looks if it looks like you\'re laying down to predators, um, who have gotten entrenched it\'s it\'s not a good.

\n\n\n\n

Sign for the healthiness of the ecosystem. And it, it would, um, definitely be good for morale to have some, some clear boundaries defined and say like, this is not okay in our, in our world. And we\'re not gonna support this anyway and find what we can do to limit it. Um, over, I wrote about this a few weeks ago, because FIUs had on their blog.

\n\n\n\n

A pretty long post about dealing with this. Um, and we\'ve, we\'ve done this before people getting courseware stolen. It can be content that can be all kinds of things getting ripped off. Um, When you, you may or may not have any intellectual property rights over it. If it\'s, if it\'s GP stuff, um, some is some isn\'t.

\n\n\n\n

Um, but they, they actually had some interesting, uh, case studies or, or people who, who didn\'t fly off the handle, they would get, ultimately you\'re getting support requests from people who have. This pirate did stuff. And sometimes they don\'t know, um, what they\'ve done or what situation they\'re in. And someone had found that it was kind of a teachable moment where they could educate and, and convert some of these people into customers and say like, oh, okay, we\'re not gonna give you support until you\'re actually our customer.

\n\n\n\n

And some people just needed that. They just needed the education, I guess. So, um, there\'s maybe there is some win possible there. Um, All right. Well, what\'s your, uh, what\'s your next pick?

\n\n\n\n

Eric Karkovack: Okay. Well, I have to go with the, uh, little scandal about, uh, WP optimize and the alleged cheating on, uh, performance tests by, uh, turning off all JavaScript.

\n\n\n\n

Um, and when it\'s, uh, under a, a testing user agent, I guess it\'s, it\'s able to detect that. Say okay. It\'s GT metrics or it\'s, uh, page feed insights. And in that case, we\'re gonna turn off all of our, all of your site\'s JavaScript to boost your score and make you feel good about yourself, right?

\n\n\n\n

Dan Knauss: Yeah. So that got quickly compared to the Volkswagen scandal a few years back, and there may have been another manufacturer car manufacturer doing that when you hook the cars up to a, uh, Uh, emissions test, um, they, uh, turn the catalytic converter and filters on and rest of the time, uh, it, it\'s not on and you get, um, better performance on the road.

\n\n\n\n

And, um, I don\'t, if it yeah, probably affects fuel economy. Right. Um,

\n\n\n\n

Eric Karkovack: yeah, I think it was, I want to, I think it does. And then it also, I mean, the pollutants that came out of those cars on the road,

\n\n\n\n

Dan Knauss: Way more than the legal limit. Yeah, yeah, yeah. Really bad. And so they had, it was a huge blow for the, um, for the brand, uh, a huge amount of distrust, uh, and, and a blow for what everyone, you know, probably was a really solid brand Volkswagen.

\n\n\n\n

Um, the. The interesting. I, I remember I, this was a, when I was teaching writing last, um, there was a Corey doctoral piece about this. Well, it brought it in as an example, and he was talking about we\'re dangerously going into a. A future where software can be so sophisticated, we don\'t really know what it\'s doing.

\n\n\n\n

And we don\'t even really know if the experience we\'re having is software mediated with an there\'s an algorithm that is manipulating the semi virtual experience we\'re having. So is your, is your WordPress really? You know, what\'s it doing? Uh, who\'s it talking to, um, Are you, are you, when you think you\'re doing tests, are you getting valid, um, results?

\n\n\n\n

So to me, the trust issue is, is interesting. Um, how, how has the response been from, um, from the company that has allegedly this, this code in it that is sort of a cheater code on, um, op optimization tests.

\n\n\n\n

Eric Karkovack: Yeah. So Sarah Gooding at the WP Tavern put. Article together that, uh, spoke with, uh, one of the lead developers of WP optimize.

\n\n\n\n

And, uh, according to him, it was a code that was forked over from another plugin. And I have to plea ignorance on the name of that plugin right now. But, uh, apparently they were in talks to maybe, um, acquire this plugin. And at the time they decided to, um, kind of merge some code in there to make it, um, You know, to get ready for this big merger they were gonna have, which ended up falling through.

\n\n\n\n

And then, um, it ended up that they forgot the code was in there. The deal fell through. And, um, they weren\'t quite sure why the code was still in there or, you know, kind of pleaded ignorance on it. Um, but then Sarah also came up with a, an article the day after that, uh, kind of dug into it more where I guess, you know, this, the, um, the, the settings in this plugin are also a little bit up too, so they\'re not, uh, completely clear on what they\'re doing.

\n\n\n\n

And so, you know, there\'s, it, it, it may be not an intentional thing, but at the same time, it still doesn\'t look very good. Right.

\n\n\n\n

Dan Knauss: Yeah, it will be interesting to see how quickly and how well that that clears up. Um, yeah, I really care about the trust, the trust issues, and you know, again, kind of like the, the piracy, if, if you, if there\'s a widespread perception of, we can\'t trust.

\n\n\n\n

Certain brands or theoretically any hypothetically anyone in the, in our ecosystem. It it\'s a, that\'s a really bad consequence where so much trust is at, at the core of making open source work. But in a sense, it\'s open source working. Someone looked at the code

\n\n\n\n

Eric Karkovack: yeah. It\'s interesting that somebody was able to test that and found that what it was doing.

\n\n\n\n

And I mean, I don\'t know. I I\'m, I\'m not a huge believer in these metrics. Um, you know, they, I don\'t wanna say they\'re made up, but they\'re, they are kind of made up and they don\'t always reflect, I don\'t think, you know, the actual user experience. Right. But, you know, I think any of these systems we bring out, somebody\'s gonna find a way to cheat on them.

\n\n\n\n

And if you wanna cheat on your performance test and get yourself, you know, a little bit of an ego boost by saying, oh, I scored a 99. You. And so be it, um, you, you are the one that kind of has to live with it, but I think the plugin should, at the very least be very clear about what they\'re doing and you know, what it\'s used for.

\n\n\n\n

What\'s good about it. And, you know, here\'s how you shouldn\'t use it. Um, which, you know, they apparently did not do in this case. Sure.

\n\n\n\n

Dan Knauss: Yeah, it, it does pose again to me, like interesting questions about what could we do better as a community collectively to incentivize good behavior around performance. Can there be kind of a general working standard or guidance on for plugin authors and for users?

\n\n\n\n

What, what we\'re looking for? What makes afor, what, what\'s the margin of, of a good performance plugin or just. I wish if you had details, when you\'re down, you you\'re in the.org repo, how many queries does has add to your page? What kind of, what are the main dependencies here? Um, is there a quick way to get a heads up on that sometimes, um, before you in install something and then find out , um, all, all of, um, all of the work being done in performance core is, is really outstanding and.

\n\n\n\n

I it\'s probably wrong to think about it as this is just a core, that\'s their problem. And this is a, a core thing. There\'s, there\'s a huge plug in ecosystem where, uh, testing and standards could be, um, a bit more rigorous and that it sort of came up a bit with a proposal from, um, uh, Felix aren\'t to, um, um, look at to when, when plugins are submitted.

\n\n\n\n

Um, To, uh, test specifically around performance and security, a little bit more rigorously.

\n\n\n\n

Eric Karkovack: And yeah, I mean, we have, I mean, you know, where I live, we have, uh, energy star appliances, right. That means that they\'re certified as being efficient. You know, maybe there\'s a third party out there that can do that for plugins, or I don\'t know if the word price folks would wanna do that necessarily, but, you know, we have, yeah.

\n\n\n\n

You could have like some sort of, uh, certification system that says, Hey, this plug. You know, performs well and is lean and is secure. Yeah, of course that, you know, it\'s hard with software because there\'s no guarantees. Um, of course your refrigerator could break the day after you bring it home. But you know, things interesting to thank see if somebody would ever, uh, come up with something like that, that you know, and how legitimate it could.

\n\n\n\n

Dan Knauss: Sure. Yeah, that could be really useful. Um, maybe if it was a consensus or amongst hosts who, you know, doing anything at scale, the, the, the performance, um, matters in dollars in significant dollars. Um, and yeah, we should think more about that. Um, my, my next pick was, um, Gravity acquires gravity. Um, the, uh, uh, gravity forms, um, uh, acquire G gravity flow and, uh, and the services, um, oriented.

\n\n\n\n

Um, what was it name,

\n\n\n\n

Eric Karkovack: name, uh, gravity experts. I think.

\n\n\n\n

Dan Knauss: Yeah, gravity experts. Okay. Um, not too familiar with those, but these are, uh, product and, and services in the gravity forms ecosystem that, um, we\'re are owned and were owned and developed by, um, one of, uh, gravity\'s team members. Um, so that\'s, that\'s kind of an interesting story is I don\'t, I\'m not aware of anyone, anyone else building an E plug in ecosystem.

\n\n\n\n

Around their product and working that closely where your employees are, are developed. Uh, I would assume, uh, encouraged to develop a product or service related to it on their own, and then maybe it really takes off and bring it back in into the, um, parent company. Um, Is that, is that something unusual they\'ve innovated with it\'s you\'re not being taken over by a big, uh, a conglomerate it\'s it\'s the family you\'re already

\n\n\n\n

Eric Karkovack: in.

\n\n\n\n

Yeah. I kind of think that\'s interesting. Isn\'t it? I mean, you do a side project based on your everyday job and then your boss essentially buys your product. It\'s like getting a really good bonus at work. You don\'t don\'t really get that. So I, I, I kind of think it\'s cool though. Um, you know, gravity forms, if you use it a lot, I mean, you notice there are tons of, you know, official extensions and they have a whole third party directory now and they go through and certify certain add-ons, uh, third party add-ons on their site that you can look through.

\n\n\n\n

So, you know, kind of a neat thing. I mean like gravity flow. Um, allows you to really do some complex things with, um, what happens when a form gets submitted. You can tie it in with a bunch of third party services or have it do different things on your site. So I think that just is such a natural fit for gravity forms that, you know, why wouldn\'t they wanna sell something that does that.

\n\n\n\n

Right. Um, and then gravity experts is a service. That\'ll do a lot of customization and. As I mentioned to you off the air, I think that, you know, they probably get a lot of customization requests through their support. Sure. Um, and I\'ve actually just from my own experience, found their support to be awesome.

\n\n\n\n

They tend to, I mean, they don\'t mind sending you code snippets to use for, to achieve certain things. Um, this steps it up a whole other level. Um, you know, if you need customization services, well, we have that too. Um, you know, why not keep that all in house and you. And maybe some of the customizations they create could end up being products on their own too.

\n\n\n\n

I think it would be a great way to kind of continue to grow their

\n\n\n\n

Dan Knauss: business. Yeah. It\'s a really, it\'s a really cool thing. And I, I wonder if anyone else is, is doing that. It, it, it occurs to me. The advantage of it is, is that, um, your own in internal people know that product best, but there\'s not really, if they\'re already working for you there, there\'s not.

\n\n\n\n

If you budget and, and allocate like, Hey, go and develop, you know, blue sky, even, you know, go and build, uh, add-ons for this. Um, and, and see what we come back with. It\'s a totally different thing. Um, the incentives are, are not there as if you\'re, you\'re building this as your own product and in if it\'s good enough, um, it\'s you, you gotta get it to the point of maturity and, and quality where a competitor.

\n\n\n\n

Might actually want it or someone else might. And, um, then I guess you\'re, you\'re really establishing value in a, um, a clear and somewhat more neutral way while still totally being within this, um, sub economy, this E gravity ecosystem. It\'s a smart, smart way to own and share it collectively and not smother.

\n\n\n\n

Creativity and things like that. And yeah, I just don\'t, there\'s no other way to, um, to do something like that in the usual, usual way where some outside company would absorb something else. And then maybe the quality, you know, there\'s just stereotype or fear the quality\'s gonna drop off cuz it\'s a different,

\n\n\n\n

Eric Karkovack: yeah.

\n\n\n\n

Usually we worry, even plugins get acquired, but not in this case because it\'s, you know, the OG has it now, so we don\'t have to worry about, you know, them. You know, making it less quality or, or not supporting it? Well,

\n\n\n\n

Dan Knauss: yeah, it\'s a fantastic model. I think others should seriously take note. There\'s plenty of, um, plenty of other ecosystem plugins that, uh, have this potential for that kind of collaboration.

\n\n\n\n

Um, good one. Okay. So yeah. What\'s your, what\'s your third?

\n\n\n\n

Eric Karkovack: Pick. So my third one is that, uh, wordpress.com this week announce that they\'re gonna start offering $499 websites to anyone who wants one it\'s, uh, supposed, supposed to be done within four business days. Uh, they\'ll give you a choice of themes or they\'ll pick one for you, which is kind of interesting.

\n\n\n\n

Um, you pick my theme. Um, I, I, I kind of wonder. Who the target is and what the strategy is here. Are they just trying to get you in the door? So that you\'re kind of part of their wordpress.com ecosystem you kind of, uh, a different, uh, different strategy? I would think.

\n\n\n\n

Dan Knauss: Yeah, it\'s, uh, it\'s interesting. I did write about this, um, because it was, I, I love it when, you know, we have, we have about a 10 year, um, backlog, uh, Back issues and, you know, things that have, uh, we can look back and see the history on.

\n\n\n\n

And, um, I thought it was a further back, but it was just probably about a year ago that, um, wordpress.com did that for the first time where they introduced a premium, um, built with wordpress.com service, which this seems to be an add-on to that the, uh, part of. Same brand, but the, the initial one a year ago was, um, not supposed to compete with freelancers.

\n\n\n\n

It was priced at around $5,000, um, as a baseline that seems to have come down in their FAQ. Now it\'s, it\'s around three. So there\'s still this, this premium layer. And I think that was supposed to use, um, Agencies and people within the ecosystem to do some of this work. I\'m not, we really haven\'t got, I don\'t think anyone has dug into that or gotten numbers.

\n\n\n\n

We were very curious to, to see what, um, what might come out of that in, in terms of its success for wordpress.com and who\'s how many sites are being brought into it. What that it\'s, we\'re, we\'re very data poor. About the economics and details of the market. And that also made me think too, in this, in this story, that, um, is it, is that really competing or over the same piece of the pie or is there, is there so much there it\'s not, um, not a, not a threat to.

\n\n\n\n

So, so freelancers, small agencies, the way they, they might think, um, you can do very different things and I can see why.com wants to, you know, continually expand at, um, where it\'s easier to do that, where it\'s always had more market share at the lower end of, of the market. Uh, but when you\'re freelance, those, those are not necessarily the jobs you want.

\n\n\n\n

Um,

\n\n\n\n

Eric Karkovack: So I, I actually made a joke online that I would rather like farm up stuff I don\'t want to do to them because at that price point I\'m, you know, probably gonna lose money. So yeah, if they wanna take on that, that small stuff, that\'s, that\'s cool with me, but right. Um, it is kind of interesting to, to think that they\'re going after that, that market too.

\n\n\n\n

I. Right, but I think you\'re right about, about them not wanting about a lot of people on the lower end, going to wordpress.com to start out because it is kind of managed

\n\n\n\n

Dan Knauss: for them. Right. And as they pivot more and more to presenting themselves as, as a managed WordPress host, um, with. With that market in mind.

\n\n\n\n

Um, you know, there, there are others already doing, doing this. Why, why let competitors have a, a free run at this? Um, they\'re doing the same thing, but.com now I\'ll Hey, you can, uh, you can install pretty much anything in the repo. I, I think, and there\'s a commercial ecosystem within there. You can buy Yost and everything else right from within there.

\n\n\n\n

So as it grows, it\'s not, you know, it\'s not. The way to look at that is still ecosystem growth with opportunities for, um, plugins and services and other things like that. But, um, I also feel like we looked so much at the market share number and where it\'s biggest is the, um, top 10 million plus active sites with WordPress installed.

\n\n\n\n

So it\'s, it\'s the bigger universe. And you assume that these are. People\'s personal blogs and so on. But, um, because they\'re not, it\'s just by traffic, you know, they\'re not in the top 10,000, but, um, when I did a lot more freelancing, a lot of the clients I had that were good would be established. Nonprofits, local governmental things, um, people with, with significant budgets, but they\'re their traffic is they don\'t care about it.

\n\n\n\n

Number one, that much necessarily. Um, they\'re not doing even doing much content marketing. Maybe they have a newsletter. They\'re speaking to a very. Specific audience that may be numbered in the hundreds or the thousands. They\'re doing a lot on social. So they would be considered in this low end of the market, but that\'s, um, but by assessing their site by traffic, but it\'s not a that\'s completely a misnomer, then they would have no, no use for a, um, A hired site builder, even they need, they need an agency or, or someone with a capacity to do support in the hosting and a rather much more elaborate feature set.

\n\n\n\n

Um, so that market, that market is always there. I, I, I think people forget that and you\'re not gonna be killed off by the $500, four day service.

\n\n\n\n

Eric Karkovack: No. And, and I mean, if they they\'ve talked about, you know, wanting to compete with some of these proprietary systems like Wix, And I think that\'s kind of the same market.

\n\n\n\n

I mean, people that want to not spend a ton of money and maybe in this case, they don\'t even really wanna build it themselves. They just want something up there and maybe as they grow, they go to something bigger. But to start out, you know, it\'s not a huge investment and. You know, those are the folks that I think aren\'t necessarily attracted to freelancers, not just cuz of budget, but because you know, somebody wants to try a blog.

\n\n\n\n

Somebody wants to start their small business and with no guarantee of how long that\'s going to last, you know, is that client going to still be there for you in two years? And if they are, you know, what\'s the value. Are you getting so many support requests that you can\'t necessarily deal with? So in that way, I, I, I don\'t think this is a bad thing to kind of tie them all into that, that one service, uh, it might, it might be, you know, something more beneficial for them that where they can even leave at any time they want to.

\n\n\n\n

I mean, the business goes belly up, you know, it\'s, it\'s not as tangled and messy as it might be getting away from an agency or a freelancer.

\n\n\n\n

Dan Knauss: Yeah. And I\'m, I much rather have them on, um, on.com or anything in the WordPress ecosystem than WX. Um, which I still, man, I have a, I was in, I\'ve had to use it again recently for a, a local nonprofit I\'m, uh, helping out.

\n\n\n\n

And, and I, I don\'t like, I don\'t like Wix . Um, and I\'m just thinking like, if, as this organization grows and what\'s needs, are it, it needs open source. It needs WordPress. It needs data security. Um, there. There are things that maybe they\'re not in a position to pay for, but they\'re at this point, but their success will get them into that at some point.

\n\n\n\n

Um, and there as a, um, running your own business, that\'s a kind of, you can only do that. You know, you, you can ask those questions and do the discovery and form the relationship and say, look, these are, these are the needs you really have. And, um, what\'s. What\'s really the best product or, or thing here. And sometimes that leads to long good relationships with, uh, a decent paying client who may get a lot bigger, um, in that budget at least.

\n\n\n\n

So.

\n\n\n\n

Eric Karkovack: Absolutely.

\n\n\n\n

Dan Knauss: Yeah. All right. Well that, that all kind of ties in kind of nicely, um, to the last thing, um, kind of our topic we wanna open up for kind of long term discussion and get. People engaged with, um, kind of a big central one for, for post status. And, and I think everyone working in this space is, is professionalism.

\n\n\n\n

And what does it mean to be a WordPress professional? We say we\'re the post status is the community for WordPress professionals. And that\'s an interesting phrase that\'s really kind of come into, I would say, in the last five to 10 years, um, widespread use in our community. And what does that, what does that mean to you?

\n\n\n\n

Um, As an individual as a, and within the community and the, the business ecosystem, uh, to be a WordPress professional and professionalism in general.

\n\n\n\n

Eric Karkovack: Yeah. I mean, I think, you know, WordPress professionals kind of interesting, cuz it started out as a small blogging platform, right. And people were using it as more of a hobbyist thing.

\n\n\n\n

And then all of a sudden, you know, the theme and plugin markets kind of exploded and we. Using it as a full blown CMS and, you know, for all sorts of projects from, you know, the, the little tiny startups to enterprise. So I think the professionalism part of it is, you know, that there\'s a lot of traditional parts to professionalism.

\n\n\n\n

Like I, I think being polite and honest and, you know, hardworking and all those things come to come to mind, but then, um, it also meets kind of. The WordPress way. That\'s a little bit more relaxed. I think that kind of reflects, I think that reflects on Matt Mullenweg a little bit. He\'s not always, you know, the, uh, old fashioned stuff, shirt, CEO that mm-hmm , you know, gets up there and makes.

\n\n\n\n

You know, grand pronouncements necessarily. Um, but it also, I think, reflects on, you know, the word camp culture of just kind of going come as you are. Um, but generally, you know, being kind to one another being open, uh, to discussion doesn\'t always work out that way. But, um, yeah, I think it\'s, it\'s an interesting way to think about.

\n\n\n\n

WordPress these days. I mean, cuz a lot of us make a living with it. Um, either full time or at least part of the time and you know, the ground rules that applied for other sorts of businesses over the years don\'t necessarily, you know, apply here. Uh, it\'s a little bit different kind of ecosystem I think.

\n\n\n\n

Dan Knauss: Yeah. It, it definitely is. I, I think people hear that. That word and there\'s sort of the, you know, the larger corporate stereotype of, um, well, there\'s, there\'s good thing. There\'s good. Basic definitions of, you know, you show up every day, you do the, you do the work every day, no matter what, um, the basics of it, but there\'s also the, um, the kind of the negative, um, connotations of professionals.

\n\n\n\n

Um, In, in a more corporate scaled up space, that\'s kind of lost the human and individual element, the personal element, and doesn\'t have this kind of big family community of relations necessarily. And I, I mentioned to you a, a friend, um, Sarah Shelman. Who\'s got a book. I think that touches this. She runs a, they do a lot with WordPress, but it\'s a, it\'s a social design agency.

\n\n\n\n

They\'re they\'re anthropologists and ethnographers who try to solve, um, Largely institutional social problems and municipal governments and lend advice on, um, dealing with things like homelessness and, and, uh, why do helping institutions often they\'re too bloodless and faceless and impersonal to help very real individual human problems.

\n\n\n\n

And, uh, I got to know, I got to know her. And there are people last year. I\'ll probably do it again. We\'re working with, um, kind of post COVID recovery projects or city is, um, funding. Uh, we just listened to people\'s stories and got them to talk about wellbeing and what that means for them. And, uh, it\'s, it\'s a very unusual kind of, wooy even kind of, hippie-ish, uh, weird thing that you don\'t usually associate with government, um, bureaucracies doing something like that.

\n\n\n\n

Individuals listening to each other and caring something about the experience and totality of each other\'s lives. Um, you know, that might be good for good for people.

\n\n\n\n

Eric Karkovack: We use more of

\n\n\n\n

Dan Knauss: that. Absolutely. Yeah. And she, we were talking about professionalism specifically after this and she said, Yes. The, the dysfunctional form of that, that we try to overcome is, is the sense that you\'ve got to create a mask of invulnerability.

\n\n\n\n

And I think that there\'s coinciding and even integral to word breast professionalism, WordPress professionals, and professionalism is that you can be known as a person who has. A full life and all these other things going on. And, uh, we talk about that and there\'s, there\'s not as much of this kind of informal or private segregation from the business side, especially, maybe on, you know, on those who\'ve been in it a long time or contributors and, uh, small businesses and, and so on.

\n\n\n\n

And that\'s a, really, a really healthy thing for people. And it translates to a healthy community and I think a healthy. Business ecosystem, um, because it takes the edge off of straight hard competition, the tendency for towards paranoia and reaction and meanness, uh, especially on remote and internet stuff.

\n\n\n\n

Um, I feel like that\'s a, a big part of it. And when we, uh, Michelle Frette featured, um, ran, uh, or featured, uh, member spotlight for. The week and, um, well known to many, many people, Jonathan Boer. Um, who\'s now at automatic as, um, working on training, which is a kind of newer and big thing there, um, impacting the, the community and doing code instruction.

\n\n\n\n

Um, and he said some really good things that, um, I think define. Him and others as a, a good model of, of what professionalism is. And he, you know, there\'s power to change lives and people finding, um, their footing in the community and in work here. And, um, what else was, was, was in here. It was just a very, there were very personal flavor to it.

\n\n\n\n

Um, we\'re not doing kind of faceless, um, Roles and cubicles here. A lot of people really value that freedom.

\n\n\n\n

Eric Karkovack: Yeah. I mean, you can see it as you know, we\'re not afraid to let our human side show, which I think is like really refreshing. I mean, if you look at a lot of the more traditional corporations out there, I mean, when do you see their leadership out there?

\n\n\n\n

Like just being humans. Um, and of course it\'s at a much greater scale, but, um, Just just even, even with, uh, Corey Miller, um, you know, talking about the struggles that he\'s had and, you know, I mean, he\'s a very successful person and you know, he, he and, uh, his family have done a lot in WordPress, but you know, he\'s still ha not afraid to show some vulnerability.

\n\n\n\n

I think that\'s so important. I mean, did you don\'t feel like you have to put up a facade? Um, you know, that\'s one thing I\'ve. Kind of felt comfortable with in the, in this, uh, community, is that if I\'m having a bad day, I can say that on Twitter and, you know, still being thankful for what I have. I could still say, it\'s not been a good day.

\n\n\n\n

I haven\'t done well. You know? Um, not every industry really accepts that and would, you know, applaud that. But I think ours generally does. And I think that\'s something we should not take for grant.

\n\n\n\n

Dan Knauss: Yeah. I, I, I really, uh, value that too. And, and agree with that. I think that, um, Jonathan and you, and I have probably been around this around the same period of time going back 20 years.

\n\n\n\n

So we\'re in the generation X category, um, where, um, yeah, we might have slack or tendencies, but I, I think it was still, it was still younger people and, and down to my kids\' ages, who. Really more comfortable with, um, not separating who they are in their private lives and you get messy, even, you know, politics and, and feelings about a variety of things that we don\'t.

\n\n\n\n

Um, you don\'t have to pretend that doesn\'t exist. It\'s it\'s a really, it can be a really fine line. You don\'t there\'s there\'s oversharing. There\'s there\'s stuff it has to balance out, but yeah, somehow. When we\'re healthy, uh, as a community advantages to work out. And Jonathan mentioned, um, post status is being a place that serves that by, um, not just you can go there for answers and social kind of hanging out and, um, Fun things and, and, and, uh, there\'s always plenty of good humor, but there\'s, he also mentioned having bigger philosophical discussions around business, open source and everything, WordPress related in a respectful and inclusive way.

\n\n\n\n

And, um, yeah, there\'s not, there\'s no way to define, there\'s no recipe for that, but we know it when, when we see it and that have being able to. Maintain a level of trust that comes from being real people to each other who care to know something and share things about each other. Um, and you know, the role that word camps play in that meetups for sure.

\n\n\n\n

Um, mentoring becoming more of a thing, um, that we talk about and, and support. Um, it, it allows the hard stuff, the bad feelings, conflicts competition. In theory, and I think we\'ve seen this happen. people can work, work it out. It takes the edge off of that and becomes, um, a way where I don\'t know, pressure valve a yeah, it, it definitely performs, um, a, a healthy service to, um, a way to check in and, and maybe help each other maintain a, a healthy.

\n\n\n\n

Community and, and business culture, um, that is, that is professional in our own, our own way. Um, and all the, all the normal ways you\'d think about showing up, getting stuff done, being reliable and, um, the best you can every day, but also showing up as a, as a real person who values, trust and kindness and respect, um, between each other.

\n\n\n\n

Yeah, the more of that, more of that, the better, but . Do you have any other, uh, thoughts on, um, on that topic or where we, where that could go, uh, hoping to pull more people into to discuss it? Um, since it seems, seems like one of those kind of pressures, commodities that, you know, it\'s actually not an economic thing.

\n\n\n\n

You can\'t, you can\'t buy.

\n\n\n\n

Eric Karkovack: No, and it\'s, I think it it\'s good for your, for your own health, for the health of the community. And you know, when you can see others, whether you agree with them or not as, as a person, as opposed to, you know, sub distant object that you\'re, um, at odds with, or you want to, um, or you\'re competing against.

\n\n\n\n

It, it does take that edge off a little bit. It lets you just kind of take a deep breath and you know, I mean, we see arguments just like in any other community, but what I don\'t see is them becoming to the point where, um, at least in public where, you know, it it\'s just incredibly toxic. Um, and usually if things do go bad, there\'s always somebody else to come in and say, Hey, wait a minute.

\n\n\n\n

Let\'s, you know, take a deep breath, which. It\'s just, I think refreshing, I, I, I wish, and I won\'t go into it too far, but I wish we had, uh, you know, political leadership that could do the same thing we had, like, like, you know, a referee that could come in and voluntarily say, Hey, you guys don\'t agree, but that\'s okay.

\n\n\n\n

It\'s

\n\n\n\n

Dan Knauss: tough. Yeah. And it\'s there, it\'s an ideal, we\'ll never be perfect at. Um, and. Yeah, to take one example, I\'m thinking about writing about, you know, one of the, um, a, a friend in, uh, uh, a country where democracy has been threatened and on the way and along a while. Um, and that\'s very widespread. We\'re all, we\'re seeing a lot of, uh, difficult times for some of the, the, the key values in the project, in the community and the, in our own lives.

\n\n\n\n

Um, and actually was. I think jailed and suppressed for things. He was blogging of a political nature on his WordPress blog in his, in his country. And, um, which you can imagine doesn\'t a number on you, um, psychologically and, and socially. And then of course, like anyone else, especially your plugin or theme author, or something like that, you run into what feels like unfairness at some point in.

\n\n\n\n

In the, um, in your work life, in the ecosystem of, um, how decisions get made, how, how things are handled. And, um, I, I feel for people sometimes when we\'re not at our best, or even when things are, are perfectly fine, it\'s not, everything is not gonna go your way all the time and it can feel oppressive or like people are not living up to, uh, levels.

\n\n\n\n

Transparency or kindness as, as they should. And I try to think, yeah, you know, there\'s people coming from a lot of different contexts where, um, you wanna be sensitive to all that, but there\'s also, there\'s also a need to kind of bear up with, we\'re not always at our best. We\'re not, everything is not consistent the way we think it should be.

\n\n\n\n

Um, but. That means try harder. Don\'t give up on it. Um, keep it\'s it\'s it\'s hard for a reason. It\'s not, uh, not something you can just take for granted. Um, yeah, and I wish there was more of it well said. Well, I look forward to, uh, clicking, publish on, on the piece you\'ve written for us that touches some of.

\n\n\n\n

Some of some of these things too, in the writing space that we both occupy and, um, the value that being able to write and talk well and respectfully and in an informed way, um, about things going on and in WordPress is really important. And I thankful for your steady part in it. I\'ve, you know, read you for a long time.

\n\n\n\n

This is, I think the first time we\'ve connected face to face and, um, yeah, I\'m glad. You\'re here and that you\'re there. doing what you do.

\n\n\n\n

Eric Karkovack: Thank you. Thank you. It\'s been, uh, it\'s been awesome being here with you and, and, you know, I\'ve been a post status member for several years now and, you know, I\'ve just gotten so much out of it, just the connections.

\n\n\n\n

And just as you said, the philosophical discussions that go on and it it\'s, you know, it, it\'s a little bit of everything and I, I think it, it\'s a great representation of the community and as a.

\n\n\n\n

Dan Knauss: Yeah, well, it\'s the, it\'s the members membership who makes it it\'s the community that shows up and, and, uh, that we keep carrying each other along and, and bringing in new people.

\n\n\n\n

It\'s it\'s great. But everyone, no one owns it. No one, no one can take full credit for it. We\'re glad to have you here. So thank you. Thank you.

\n

This article was published at Post Status — the community for WordPress professionals.

\";s: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, 02 Sep 2022 17:58:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Olivia Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Post Status: Post Status Picks for the Week of August 29\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=114397\";s: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://poststatus.com/post-status-picks-for-the-week-of-august-29/\";s: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:3311:\"

Building an empire on free code: Matt talks WordPress outside the bubble. James Kemp, Anh Tran, and Phil Webster on WooCommerce options for licensing. Adam Silver on testimonials that help you grow. Anne Bovelett on accessibility and page builders. Jamie Marsland wonders if people building third-party plugins for the block editor have been too preoccupied with whether or not they could that they didn’t stop to ask if they should. Are they heading in the wrong direction?

\n\n\n
\n\n\n\n

Post Status Podcast Picks \"🎙\"

\n\n\n\n
  • What\'s Your Problem: A fairly good “outside the WordPress bubble” interview with Matt Mullenweg by Jacob Goldstein. Among other things, they discuss how you can make money and “build an empire” on “free code.”
  • Do The Woo: James Kemp, Anh Tran, and Phil Webster have a discussion about the options for software licensing with WooCommerce, both out-of-the-box or when you roll your own custom-built solution.
  • Kitchen Sink WordPress: Adam Silver on how to use testimonials to grow your business.
  • Matt Report: Anne Bovelett explains why accessibility is important to her, and how to make accessible sites with page builders.
\n\n\n\n

Video Pick:

\n\n\n\n\n\n\n\n
\n

Get our weekly WordPress community news digest — Post Status\' Week in Review — also available in our newsletter. \"💌\"

\n\n\n\n

And don\'t miss the latest updates from the people making WordPress. We\'ve got you covered with This Week at WordPress.org. \"⚙\"

\n
\n

This article was published at Post Status — the community for WordPress professionals.

\";s: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, 02 Sep 2022 16:12:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"Gutenberg Times: Designing Style Variations for Twenty Twenty-Three: The Good, the Bad, and Everything Else\";s: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=21922\";s: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/designing-style-variations-for-twenty-twenty-three-the-good-the-bad-and-everything-else/\";s: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:11004:\"

Since the release of Twenty Ten, the WordPress community has gotten a new default theme almost every year. This has allowed the platform to amass a well-designed and solid body of work. However, we needed to mix things up a bit, to make theme development exciting again. The next default theme, Twenty Twenty-Three, will be a stripped-down base theme with a pool of style variations built by our design community.

\n\n\n\n

And the community has not disappointed. By the deadline of August 31, theme authors had submitted over 33 variations for consideration. This was a reasonably significant turnout, considering that the project’s kick-off was less than a month before. That is not much time to create and execute a design, and some people shared multiple.

\n\n\n\n

The final group of variations that will ship with Twenty Twenty-Three is set to be chosen by September 7. Not all will become an “official” variation. However, there is a discussion that proposes a separate child theme that would offer even more options.

\n\n\n\n

As one of the oldest theme authors in the WordPress community, I was excited about this effort. There was no way that I could pass on the challenge of designing a custom variation. Plus, it fit in line with some of the current work I was doing in finding pain points around FSE for theme authors.

\n\n\n\n

In this post, I will share my experience with building a custom style variation for Twenty Twenty-Three.

\n\n\n\n

What Are Style Variations?

\n\n\n\n

Style variations are one of my favorite features of modern WordPress, second only to block patterns. They allow theme authors to ship multiple design presets that users can choose between via the Styles panel in the site editor, as shown in the following screenshot:

\n\n\n\nExample style variations for Twenty Twenty-Three.\n\n\n\n

Style variations can be as simple as a couple of color or font changes to entirely unique designs in their own right.

\n\n\n\n

Before Beginning: The Right Mindset

\n\n\n\n

The thing to keep in mind when designing a custom style variation is that you are not building a theme. You are skinning an existing theme.

\n\n\n\n

It is easy to get carried away with grand ideas about what is possible but only become disappointed with the limitations of the global settings and styles framework. You can change things like typography, colors, and spacing, but there are times when you’re stuck with chosen presets when they are used within templates. You also cannot arrange layout elements to your liking. That would require, at least, a child theme.

\n\n\n\n

Style variations are skins with a specific set of rules that you must follow. You do not quite have the full power of CSS at your disposal, but you can do some pretty nifty things under the current standard.

\n\n\n\n

Building a custom style variation is an easy introduction to modern theme development. It is a way to get your feet wet, to gain an understanding of how theme.json works.

\n\n\n\n

Designing a variation for Twenty Twenty-Three was also like trying to hit a moving target at times. Because the theme was under active development during this process, it meant that anything could change on any given day. And, the more complex a style variation was, the more likely a change to the base theme would affect it. This should not be the case for established themes, but it did create additional hurdles to clear.

\n\n\n\n

Stepping into the Fray: Building a Custom *.json File

\n\n\n\nJSON file for a custom style variation.\n\n\n\n

Style variations are one of the easiest onramps to WordPress theme development because creators only need to work from within one file. The usual complexities around theme development are of no concern for such a project. And, because the global settings and styles feature has a standard ruleset, it’s easy to make a few changes and see quick results.

\n\n\n\n

Style variations are *.json files that live in a theme’s /styles folder. In the case of Twenty Twenty-Three, the organizational structure might look something like the following:

\n\n\n
/twentytwentythree\n /styles\n /example-a.json\n /example-b.json \n /...\n /theme.json\n ...
\n\n\n

Because my variation was named “Rough Draft,” it was located at /styles/rough-draft.json.

\n\n\n\n

Custom variations follow all the same rules as the theme.json standard. The one exception is that variations have a title field to differentiate them from the theme’s default.

\n\n\n\n

The following is an example of what my variation’s JSON file looked like:

\n\n\n
{\n \"version\": 2,\n \"title\": \"Rough Draft\",\n \"settings\": {},\n \"styles\": {}\n}
Code language: JSON / JSON with Comments (json)
\n\n\n

With the basics out of the way, the variation can overwrite anything that is defined in the theme’s primary theme.json file. A creator can do something as simple as overwrite the settings.color.palette to create a new color scheme. Or, they can configure every possible setting and style under the standard ruleset, building a massively different work of art from the base theme design.

\n\n\n\n

The Good: Wow, This Is Really Cool!

\n\n\n\nSingle post view of custom style variation.\n\n\n\n

I have dabbled a bit here and there with custom style variations. I have long understood their potential, but I had yet to dive into a full-blown project, particularly one that could land in front of millions of users. I don’t know that my variation submission will be a part of the curated set, but it was just plain ol’ fun tinkering with a design idea again. It was also far less stressful to not have to worry about every aspect of the theme.

\n\n\n\n

Given the time constraint, I pulled my initial idea from an old theme I had created. Then, I went to work, breaking as much as anyone could break (don’t forget that I was also on a mission to find pain points).

\n\n\n\n

There was a small part of me that remembered exactly why I fell in love with WordPress in the first place. I felt like that same 21-year-old kid who had just learned to edit a theme’s style.css file to make some minor color changes. This was the WordPress that I remembered from so long ago. The one where themes were not 100s of files and 1,000s of lines of code. It was about figuring out how to design for the first time and enjoying every minute of it, warts and all.

\n\n\n\n

If I’m being entirely honest, I probably took things a bit to the extreme. After looking at a few other variations, I realized I had customized quite a bit more than most folks. This is not necessarily a “good” or “bad” thing. Rather, it was more of a Justin-does-not-know-when-to-stop thing.

\n\n\n\n

At the time, with a looming deadline for submission, I was unable to customize every feature that I had in mind. There are simply so many possibilities that I could have continued working on this for weeks.

\n\n\n\n

The Bad: Lingering Pain Points

\n\n\n\nHomepage view of custom style variation.\n\n\n\n

Between those moments of clarity and jaunts of glee were some rough moments. These were a necessary part of the process—someone needed to experience them.

\n\n\n\n

For example, why can I not control the gap between posts in a Query Loop so that it matches the spacing elsewhere in the theme? There are still missing features or design tools support. Fortunately, some of the issues I either ran into or reported upstream were fixed during this process, such as theme.json-support for the <cite> element and a duplicate background on the Code block. Plus, Gutenberg 14.0 added spacing and typography support for a boatload of blocks, both blockers for many theme authors who have tried to adopt FSE features.

\n\n\n\n

The upcoming WordPress 6.1 will continue to improve the lives of theme authors who are taking advantage of the theme.json toolset. Compared to a year ago, there are far fewer of those tiny irritations.

\n\n\n\n

Most of my initial issues were from building a design based on someone else’s system. It took me a bit to come to grips with Twenty Twenty-Three’s slug names, spacing presets, and similar bits. While I have a few opinions on a standard naming system, there are no right or wrong answers here. Plus, such discussions are a can of worms that would only get in the way of the theme’s progress.

\n\n\n\n

I had to remember that I was skinning an existing theme. It was my job to apply my vision onto the canvas sitting in front of me. Once I was able to get in the right mindset for this project, that’s when all the fun began.

\n\n\n\n
\n\n\n\n

As I look over the past few weeks, I am genuinely having a hard time remembering any truly frustrating moments. What I recall the most is just having a blast building my Twenty Twenty-Three variation and testing those that others built. I cannot wait for the theme and its curated set of styles to be unveiled to the 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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 Sep 2022 15:00:29 +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:\"Justin Tadlock\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Post Status: Writing is a Challenging But Needed Profession in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=114274\";s: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:83:\"https://poststatus.com/writing-is-a-challenging-but-needed-profession-in-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14334:\"

The WordPress project, software, and community are equally important. They all play a role in ensuring growth, progress, and success. A sizeable economy of users, builders, and business owners depends on it. That’s why staying informed is vital. And so much of the reporting and learning opportunities come from unofficial sources. We need more people within the WordPress community who are interested in writing and more places to amplify their voices.

\n\n\n
\n\n\n\n

Estimated reading time: 29 minutes

\n
\n\n\n\n

Over the past decade, I’ve written about a lot of web-related subjects. I started with a focus on freelancing — mainly because that’s what I knew best. It was an area where I had experience and felt like I could be of help to others.

\n\n\n\n

However, WordPress soon became my topic of choice. The more projects I built with the content management system (CMS), the more I wanted to share. There was so much to learn and discover.

\n\n\n\n

It’s easy to criticize someone or something from afar. For example, there’s a difference between critiquing a random stranger’s parenting style and that of your best friend. Proximity makes a difference.

\n\n\n\n

And the software wasn’t my only inspiration. Having attended my first WordCamp in 2011, I was taken aback at how welcoming the WordPress community was. Not only could I level up my design and development skills, but I also had access to this incredible human resource.

\n\n\n\n

The experience took me from merely building websites to wanting to be a part of something bigger. The community is what made me truly care about WordPress. And I couldn’t help but want to give back.

\n\n\n\n

The Challenges of Writing About WordPress

\n\n\n\n

Writing about WordPress made perfect sense. I wasn’t the greatest developer — but I could share what I’ve learned. I also felt an obligation to ask questions about the direction of the software and how it impacts the community.

\n\n\n\n

Those deeper topics are often difficult to write about. Not only do they require some critical thinking (not my greatest skill), but they also need to strike a delicate balance. Because, while a post may nominally be about software, it’s people that are the real subject.

\n\n\n\n

As such, there are significant challenges in writing about WordPress and its community. What follows are some lessons and observations from my journey so far.

\n\n\n\n

Sometimes You’re Close to Your Subjects

\n\n\n\n

It’s easy to criticize someone or something from afar. For example, there’s a difference between critiquing a random stranger’s parenting style and that of your best friend. Proximity makes a difference.

\n\n\n\n

That applies to the WordPress community as well. While it’s global and we don’t all know each other personally, there are often connections. You may follow a particular person (or their employer) on social media. There’s a chance you use their product or service.

\n\n\n\n

This complicates things — especially when there’s a reason to be critical of a situation. For instance, I’ve written about product decisions that I found questionable. One was a plugin that set itself to automatically update without user consent. Another involved a plugin that blocked access to its settings screen after a user’s license expired.

\n\n\n\n

I use both plugins and have generally enjoyed the experience. Thus, it felt a bit awkward to discuss them publicly. Yet I also felt it was necessary to try and explore various points of view.

\n\n\n\n

In these scenarios, I hope to lay out both sides of an argument and spark a productive discussion. Not everyone’s going to agree — but that’s OK. No rule says the debate has to be comfortable.

\n\n\n\n

You Have To Fill in the Blanks When Covering WordPress Core

\n\n\n\n

Software is difficult to produce and maintain. And when an app is as widely-used as WordPress, the job is even tougher. There’s simply no way to please everyone.

\n\n\n\n

As users, we all have our WordPress pet peeves. In my case, the clutter of the dashboard tends to drive me crazy — especially on content-heavy websites. And the block editor still has several bumps to smooth out.

\n\n\n\n

And then there’s the overall direction of the WordPress project. It’s no secret that a lot of resources have been allocated towards the block editor and Full Site Editing. Meanwhile, this changing landscape can create unease among those who make a living with the software.

\n\n\n\n

Therefore, it’s vital to take a closer look at what’s happening. This empowers the community to prepare for change and allows their voices to be heard as things evolve.

\n\n\n\n

There are several challenges for writers who take on these topics. The biggest is that official information can be very difficult to find. It may require searching through Slack channels or digging up a post from one of several Make WordPress blogs. And, even if you locate something relevant, there may still be some key information missing.

\n\n\n\n

Plus, the decision-making process isn’t always clear to those of us on the outside. A lack of context in this area can lead to speculation. That, in turn, has the potential to create distrust within the community.

\n\n\n\n

Writing about these subjects is a balancing act. You can only work with the facts you have. At the same time, it’s difficult to avoid speculating on how or why a decision was made.

\n\n\n\n

Discussing Project Leadership is Tricky

\n\n\n\n

The structure of the WordPress project can be confusing when it comes to leadership. Matt Mullenweg is the co-founder of WordPress. He’s also heavily involved in its direction.

\n\n\n\n

In addition, he’s the founder of Automattic — a commercial entity that runs WordPress.com, among other products. The company also sponsors a significant number of WordPress contributors.

\n\n\n\n

Speaking of which, WordPress is also free and open-source. It depends on volunteers for virtually everything. Except that some contributors are paid by their employers to do so via the Five for the Future initiative. Got all of that?

\n\n\n\n

It’s a unique and seemingly complex arrangement. The result is a lot of gray area and uncertainty for even avid observers.

\n\n\n\n

While we typically know the project leads for various tasks, there are still questions about who’s doing what, and where decisions come from. Does Mullenweg have the final say over everything? Do sponsored contributors have more clout than volunteers? Where do the interests of WordPress.org and WordPress.com start to diverge?

\n\n\n\n

These are fair questions to ask. And in my experience, they’re very difficult to answer. Once again, the lack of clarity can lead to guessing games.

\n\n\n\n

There Are People Behind the Code

\n\n\n\n

Writers also need to take a measured approach when asking questions or leveling criticism. That’s because we’re not just talking about a product. Human beings make WordPress, and we must consider the impact of what we say.

\n\n\n\n

This is where the fuzzy details on leadership and decision-making make our job more difficult. We may hypothetically posit a question. But taken out of context, it could read as being hurtful or unfair.

\n\n\n\n

The basic rules of journalism apply — even if you’re not technically a journalist (Full disclosure: I’ve had no formal training in this area). But suffice to say that it’s best to stick to the facts. Making accusations without proof or passing along hearsay does you no favors.

\n\n\n\n

And when criticizing a feature or decision, we should include a detailed explanation. Instead of simply stating that a theme “is hard to use”, provide examples of why it was difficult. It’s still important to provide context — even if we don’t always get it from our subjects.

\n\n\n\n

Granted, we all make mistakes. And even the most careful writers will still face negative feedback.

\n\n\n\n

Sometimes it comes in the form of an old-fashioned internet troll. But it may also come from a place of misunderstanding. In that case, I’d encourage engaging on a personal level. An honest dialogue can produce positive results.

\n\n\n\n

Financial Resources for Writers Are Scant

\n\n\n\n

If you want to cover the important issues and happenings in the WordPress community, it takes time and resources. For most writers in our space, these aren’t easy to come by.

\n\n\n\n

There are several online publications dedicated to the CMS and many more that provide at least some level of coverage. But news, analysis, and opinion aren’t necessarily what they’re looking for. Quick tips, tutorials, and plugin roundups get plenty of clicks and are somewhat evergreen. More importantly, they don’t run the risk of rubbing stakeholders the wrong way.

\n\n\n\n

And the few outlets that do encourage in-depth coverage tend to have very limited budgets. They aren’t full-time gigs. Writers often have to piece together roles at multiple publications. This doesn’t leave much time to dig into a topic.

\n\n\n\n

To be clear, I love having gigs at places like Speckyboy and The WP Minute. They’ve helped me to find my voice and feel closer to the WordPress community. But I also consider my situation to be an outlier. There don’t appear to be many opportunities for a writer who wants to take a similar path.

\n\n\n\n

Yet writing is only part of what I do. I’m still a freelance web designer and that makes up the bulk of my income. Writing is a passion and (thankfully) a way to boost my bottom line.

\n\n\n\n

Much like contributing to WordPress core, writing about the software takes some measure of passion. You do it because you love it — not for wealth and accolades.

\n\n\n\n

WordPress Journalism Is a Unique and Important Niche

\n\n\n\n

The WordPress project, software, and community are equally important. They all play a role in ensuring growth, progress, and success. A sizeable economy of users, builders, and business owners depends on it.

\n\n\n\n

That’s why staying informed is vital. And so much of the reporting and learning opportunities come from unofficial sources. These writers help us keep up with the news and teach us how to use new features. They’re a key part of the mission to democratize publishing. I’m honored to play a tiny part in it.

\n\n\n\n

Writing about WordPress isn’t always easy. There can be several obstacles — not least of which is having access to accurate information. But that hasn’t stopped the many talented bloggers and journalists out there from trying their best.

\n\n\n\n

If anything, we need more people within the community who are interested in writing and more places to amplify their voices. WordPress is in a constant state of change, and it takes a dedicated group to spread the word and ask difficult questions.

\n\n\n\n

Want to write for Post Status? Please get in touch.

We are happy to compensate members of the WordPress community (and Post Status) who have experiences and insights to share or good questions worth exploring — about tech, business, and careers as well as the project and culture of WordPress.

\n\n\n\n

\n\n\n\n
\n\"Post
\n\n\n

You — and your whole team — can Join Post Status.

\n\n\n\n

Build your network. Learn with others. Find your next job — or your next hire. Read the Post Status newsletter. \"✉\" Listen to podcasts. \"🎙\" Follow @Post_Status. \"🐦\"

\n
\n

This article was published at Post Status — the community for WordPress professionals.

\";s: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, 02 Sep 2022 13:52:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Eric Karkovack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"Do The Woo Community: WooBits: Cultural Intelligence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=72853\";s: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://dothewoo.io/woobits-cultural-intelligence/\";s: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:370:\"

As part of the WordCampUS speaker series, I singled out this one because Cultural Intelligence resonated with me.

\n

>> The post WooBits: Cultural Intelligence appeared first on Do the Woo - a WooCommerce Builder 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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 02 Sep 2022 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:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Post Status: The $500 Website\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=114223\";s: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:39:\"https://poststatus.com/the-500-website/\";s: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:4610:\"

A decade ago, Chris Butler\'s survey and report for Newfangled provided other agencies with the numbers that meaningfully define their market. WordPress agencies and freelancers could use something similar today.

\n\n\n
\n\n\n\n

Estimated reading time: 29 minutes

\n
\n\n\n\n

In 2021 WordPress.com announced a premium $4,900 website building service — builtbywp.com. It\'s still active but the FAQ says, “Our website design & development services start at $3,500 USD.”

\n\n\n\n

Now there\'s Built by WordPress.com Express — where “in-house experts will build the site for you, all in four business days or less. The cost is $499, plus an additional purchase of the WordPress.com Premium plan.”

\n\n\n\n

There\'s no way not to see this Do it for Me service as competing with freelancers on the low end of the market, which Matt Mullenweg previously claimed was not the intention of the premium site building service last year.

\n\n\n\n

He also estimated that Automattic captures less than 5% of the revenue in the total WordPress ecosystem — much less than other large hosts. At the time, David Bisset writing for Post Status, asked for more transparency about “how many customers have been acquired and new sites built on WordPress.com.”

\n\n\n\n

The WordPress market share has always been highest and expanded the most in the broadest market — the top million active websites as measured by traffic. WordPress currently has around a 36% market share by that measure, but it falls to 14% in the top 10,000 most active sites. While sites with no (identifiable) CMS are still the largest and probably easiest area for growth, it\'s logical for WordPress.com to focus on the lower end of the market rather than leave it to other hosting companies.

\n\n\n\n

Inevitably, freelancers are going to feel the squeeze as commodified websites and website building services compete downward on price. The wisdom usually offered about this is sound: learn the price points where you can be most competitive and trade on unique value you can bring to clients.

\n\n\n\n

A geographically localized focus, an affinity-based or purpose-built niche of features, and personal referral networks are unique strengths. There are also plenty of important, high-budget clients whose websites never need or intend to serve millions of visitors. Built your own local or niche market analysis — current market share data for WordPress doesn\'t tell you much.

\n\n\n\n

A decade ago, Chris Butler‘s survey and report at Newfangled for other small agencies was really helpful in getting the numbers that matter. (I believe this survey was done more than once but not sustained over the years since then.) We could use something similar for WordPress agencies and freelancers.

\n\n\n\n\n

This article was published at Post Status — the community for WordPress professionals.

\";s: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, 01 Sep 2022 15:13: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:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"Do The Woo Community: Builder Tips from WordCampUS Speakers Part_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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=72844\";s: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:65:\"https://dothewoo.io/builder-tips-from-wordcampus-speakers-part_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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:433:\"

Listen in to these WooCommerce / WordPress builder tips from Ben Meredith, Christina Deemer, George Woodard, Nick Diego, Milana Cap and Micah Wood.

\n

>> The post Builder Tips from WordCampUS Speakers Part_2 appeared first on Do the Woo - a WooCommerce Builder 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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 Sep 2022 09: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:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Post Status: WOOF for WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=114160\";s: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:\"https://poststatus.com/woof/\";s: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:766:\"

WOOF is a new directory for WooCommerce extensions. Their goal is to become the “yellow pages” for your WooCommerce add-on needs. Check out the guidelines for joining.

\n\n\n\n

Announced today by Dave Loodts, Dave clarified in Post Status Slack that the WOOF directory is open to WordPress plugins too if they have Woo modules. Look for more clarification about that down the line.

\n

This article was published at Post Status — the community for WordPress professionals.

\";s: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, 31 Aug 2022 22:19: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"Post Status: WordPress 6.0.2 Security and Maintenance Release: WordPress.org’s Bug Bounty Program at Work\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=114149\";s: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://poststatus.com/wordfence-on-the-wordpress-6-0-2-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1758:\"

Ram Dall over at Wordfence has a good breakdown of three vulnerabilities patched in the WordPress 6.0.2 Security and Maintenance Release. One is a high severity SQLi vulnerability in the links functionality, and the other two are medium severity Cross-Site Scripting vulnerabilities.

\n\n\n\n

Ram notes:

\n\n\n\n

Most actively used WordPress sites should be patched via automatic updates within the next 24 hours, and any sites that remain vulnerable would only be exploitable under very specific circumstances.

\n\n\n\n

Robert Rowley dug deeper for Patchstack:

\n\n\n\n

There are also no proof of concepts (or exploitation steps) nor any reports of these bugs actively targeted in the wild. This is because the security bugs were reported and handled through WordPress.org\'s official Bug Bounty program … as well as one WordPress security team member, John Blackbourn who at this time is sponsored by Human Made.

\n

This article was published at Post Status — the community for WordPress professionals.

\";s: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, 31 Aug 2022 22:04:23 +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:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WordPress.org blog: People of WordPress: Bud Kraus\";s: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=13385\";s: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:65:\"https://wordpress.org/news/2022/08/people-of-wordpress-bud-kraus/\";s: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:12123:\"

This month, as we approach WordCamp US, we feature Bud Kraus, a WordPress trainer who has made a career in helping others learn about software. He also shares how he has developed an approach to using technology in order to overcome longstanding difficulties with his eyesight.

\n\n\n\n

In this People of WordPress series, we share some of the inspiring stories of how WordPress and its global network of contributors can change people’s lives for the better.

\n\n\n\n\"BudBud Kraus with his guitar\n\n\n\n

Teaching WordPress strengthens your understanding

\n\n\n\n

Bud has taught web design since 1998, with students from more than 80 countries online or in person. He was determined not to let his sight difficulties stop him from his wish to help others learn website building and maintenance skills.

\n\n\n\n

As WordPress evolves and new features release, Bud decided to extend his training services around helping new and existing users improve and practice their skills. He supports others in open source through volunteering to speak at WordPress events, and encourages others to do so too. He also gives time to help produce material for the free-to-access resource Learn WordPress, which is part of the WordPress.org project. 

\n\n\n\n

As a contributor to the Test and Training teams, Bud is keen for others to try contributing to these areas and help support the project’s future development. One of his current training priorities is to help people with using the block editor and Full Site Editing. He is an advocate for the usability of WordPress today, saying: “I can design all aspects of a website now with a block.”

\n\n\n\n

Using WordPress as a traditional developer

\n\n\n\n

Bud’s WordPress journey began with a lunch at Grand Central Station in New York in 2009. A friend and former client was promoting the idea of using WordPress, which Bud initially resisted.

\n\n\n\n

“I’m a code guy…,” he told his friend at the time. “I will never use anything like that.”

\n\n\n\n

However, the friend persisted. Eventually, Bud gave it a try and found a new approach with things called themes and plugins. His first encounter was with WordPress 2.6. Bud signed up with a hosting company and found a theme where he could learn to edit and understand child themes.

\n\n\n\n

He said: “Once I saw that you could edit anything and make it yours, I was hooked. The endorphins were freely coursing through my veins.” Bud was hooked.

\n\n\n\n

Teaching WordPress strengthens your own understanding of the software

\n\n\n\n

There’s an old saying that the best way to learn something new is to turn around and teach someone else.

\n\n\n\n

Bud was already an instructor at the Fashion Institute of Technology when he thought, “I could teach WordPress!”

\n\n\n\n

And so he did, packing classrooms all through those first years of WordPress as it swept through the design world and further.

But Bud had more to discover. He said: “Two big things were about to happen that were really going to change my life. They would show me the way to the WordPress community – not that I even knew what that was.”

\n\n\n\n

Sharing lessons learnt with the WordPress community

\n\n\n\n

In 2014, one of his students suggested he start going to the New York WordPress Meetup. 

\n\n\n\n

As he started going to WordCamps in New York City, he realized that WordPress was getting very large. What’s more, it had a community of people with whom he felt at home and could learn alongside.

\n\n\n\n

Bud gave a talk for the first time in 2016 at the only WordCamp to this day that has been held at the United Nations. He shared his knowledge of “Lessons Learned: Considerations For Teaching Your Clients WordPress.” 

\n\n\n\n\"BudBud Kraus speaks at WordCamps to help people use the software even more effectively\n\n\n\n

From there, Bud went on to speak at other WordCamps in the US. He also volunteered as a speaker wrangler for his home camp in New York City in 2018 and 2019.

\n\n\n\n

From speaking to writing about WordPress

\n\n\n\n

At some point before the Covid-19 lockdown, Bud found another outlet, this time in writing. 

\n\n\n\n

Bud heard a magazine was advertising for submissions related to WordPress. His first attempted article did not make the cut.

\n\n\n\n

So in his second submission, Bud took the risk of writing about something deeply personal – a topic he really didn’t want to write about at all.

\n\n\n\n

He gathered his courage and revealed to the entire web design world that he was legally blind.

\n\n\n\n

The article appeared as  Using Low Vision As My Tool To Help Me Teach WordPress”.

\n\n\n\n\"BudBud Kraus\n\n\n\n

Since the age of 37, Bud has had macular degeneration in both eyes, which affects his central vision. It is a leading cause of legal blindness in the United States and many other countries. 

\n\n\n\n

He relies on his peripheral vision and finding ways to compensate. He also tends to see things in a flat dimension and has a difficulty discerning contrast  – he  is glad there are starting to be improvements in color contrasts in web design!

He uses tools like Speech to Text, larger sized cursors and bigger font sizes, and heavily uses zooming back in and out when working with WordPress. He is able to recognize patterns but has to rely on detailed preparation and memorizing materials. 

\n\n\n\n

In his first magazine article acknowledging this situation, he shared the added difficulties that technology creates for people with visual conditions, and tips that he had found to try and find alternative routes around them. He uses the technique of finding alternatives in his training work to help people learn and understand, realizing that all people have different ways of reading and understanding. His words and subsequent stories have inspired others and enabled more people to highlight accessibility. He describes himself as a ‘stakeholder in ensuring that the WordPress admin is accessible.’

\n\n\n\n

A year after its first publication, the piece became a WordCamp talk, ‘My Way with WordPress.’ The talk was a hit and started many conversations about accessibility and the importance of raising awareness.

\n\n\n\n

A few months later, he gave a Gutenberg talk at the first WordCamp Montclair. There was no way he could have done it from a laptop, so instead, he did it from his 27” desktop computer.

\n\n\n\n

Bud said: “It was a presentation on Gutenberg plugins. Since I couldn’t do this from a notebook screen (the screen is too small and the keyboard is hard for me to manipulate), it was decided that I would bring in my 27″ desktop machine to a WordCamp. I’m probably the first person to ever have done this. It was good thing I only lived a few miles away.”

\n\n\n\n

He added: “I sat behind my computer, did my thing, and every once in a while peered out to make sure people were still there.”

\n\n\n\n

Different ways of contributing to WordPress

\n\n\n\n

One of the main ways Bud supported the community around the software was through talks at WordCamps and helping others to speak.

\n\n\n\n

During the Covid-19 pandemic, he was keen to continue contributing when WordCamps were no longer meeting in person. He turned greater attention to supporting the Learn WordPress resource, a free to use learning platform made by and for the community itself. 

\n\n\n\n

More training materials on the block editor can be found on Learn WordPress and his WordCamp talks are available on WordPress.tv.

\n\n\n\n

Global reach and meaning through WordPress

\n\n\n\n\"BudBud Kraus with Josepha Haden Chomphosy at WordCamp Montclair, NJ 2022\n\n\n\n

Bud’s training materials and willingness to talk about accessibility have helped so many people find their way with WordPress. He in turn is an advocate for the community around open source.

\n\n\n\n

He said: “The software is really good, and the people are even better.”  

\n\n\n\n

He added: “I get a sense of accomplishment whenever I launch a new or redesigned site. It’s also given me a great feeling to know that many people have learned WordPress around the world from my talks and presentations. This might just be the most gratifying thing of all.”

\n\n\n\n

Share the stories

\n\n\n\n

Help share these stories of open source contributors and continue to grow the community. Meet more WordPressers in the People of WordPress series.

\n\n\n\n

Contributors

\n\n\n\n

Thanks to Abha Thakor (@webcommsat), Mary Baum (@marybaum), Surendra Thakor (@sthakor), Meher Bala (@meher), Larissa Murillo (@lmurillom), and Chloe Bringmann (@cbringmann), for work on this feature. Thank you too to Bud Kraus (@trynet) for sharing his experiences.

\n\n\n\n

Thank you to Josepha Haden (@chanthaboune) and Topher DeRosia (@topher1kenobe) for their support of the People of WordPress series.

\n\n\n\n
\"HeroPress
\n

This People of WordPress feature is inspired by an essay originally published on HeroPress.com, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. #HeroPress

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 31 Aug 2022 21:30: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:28:\"webcommsat AbhaNonStopNewsUK\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:138:\"Post Status: WordPress 6.0.2, Advanced Admin Handbook, Accessibility Tags for Block Themes, and Improving the Template Creation Experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=114004\";s: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://poststatus.com/wordpress-6-0-2-advanced-admin-handbook-accessibility-tags-for-block-themes-and-improving-the-template-creation-experience/\";s: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:14589:\"

This Week at WordPress.org (August 29, 2022)

\n\n\n

WordPress 6.0.2, Advanced Admin Handbook, Accessibility Tags for Block Themes, and Improving the Template Creation Experience

\n\n\n
\n\n\n\n\n\n\n\n

News

\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

Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers.

Are you interested in giving back and contributing your time and skills to WordPress.org? \"🙏\" Start Here ›

Get our weekly WordPress community news digest — Post Status\' Week in Review — covering the WP/Woo news plus significant writing and podcasts. It\'s also available in our newsletter. \"💌\"

\n\n\n\n
\n\n\n\n
\"Post
\n

You — and your whole team can Join Post Status too!

\n\n\n\n

Build your network. Learn with others. Find your next job — or your next hire. Read the Post Status newsletter. \"✉\" Listen to podcasts. \"🎙\" Follow @Post_Status. \"🐦\"

\n
\n\n\n\n
\n

This article was published at Post Status — the community for WordPress professionals.

\";s: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, 31 Aug 2022 16:16: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:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"Post Status: New pricing model at Business Bloomer aims at Purchasing Power Parity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=113971\";s: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://poststatus.com/new-pricing-model-at-business-bloomer-aims-at-purchasing-power-parity/\";s: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:1268:\"

Rodolfo Melogli has changed the pricing structure at bto be more affordable to people around the globe. He\'s done this by calculating “Purchasing Power Parity.”

\n\n\n\n

Purchasing Power Parity (PPP) is a metric that can be used to determine the actual “purchasing power” of a given country. A basket of goods purchased in the USA with USD is compared to the price of that same basket in a given country, in that country’s local currency. This ratio is never identical to the actual local currency exchange rate against USD. In fact, in some countries it’s much lower, which means that those goods can only be purchased using less USD than would be required in the USA.

Based on this metric, the PPP value helps with redefining prices. To better illustrate this, based on PPP data from the last 5 years, those in India may receive discounts of up to 75% on Business Bloomer WooCommerce online courses, those in South Africa may receive a 59% discount, Norway students may receive no discount, and so on. 

\n

This article was published at Post Status — the community for WordPress professionals.

\";s: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, 31 Aug 2022 14:51: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:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"WPTavern: #41 – Laura Nelson on How To Create a Profitable Newsletter\";s: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=137279\";s: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:85:\"https://wptavern.com/podcast/41-laura-nelson-on-how-to-create-a-profitable-newsletter\";s: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:42472:\"

On the podcast today, we have Laura Nelson.

\n\n\n\n

Laura is a Content Marketer at WooCommerce where she’s responsible for creating and planning engaging content for their users.

\n\n\n\n

Prior to WooCommerce she worked at MailPoet, an email marketing plugin for WordPress, and before that, she worked at Pragmatic, a UK based WordPress agency.

\n\n\n\n

She’s on the show to share her experience about how you can, and why you might want to, set up a paid email newsletter.

\n\n\n\n

When I hear the word newsletter, I’m typically thinking of the information which drops into your inbox on a regular basis. We’ve all surrendered our email addresses in return for some product or service. We agree to receive emails on the understanding that we can unsubscribe at some point. Perhaps a few of these emails really resonate with you, but it’s likely that you’ve unsubscribed from many as the content is no longer wanted.

\n\n\n\n

This kind of email marketing is not always viewed favourably, and is not the kind of technique that Laura is on podcast to talk about.

\n\n\n\n

Her pitch is that email newsletters can themselves be a product. That people will pay to receive your emails, and she’s got data and examples to back it up.

\n\n\n\n

I suppose that the closest analogy would be people who create an online course. You have an area of expertise; you do the hard work of creating the course and people will pay for a membership to have the benefit of learning from your expertise.

\n\n\n\n

Laura is describing something similar to that. The only difference being that instead of a course, people will pay to receive your emails, knowing that you’re going to bring value to them regularly.

\n\n\n\n

I know that this can be done, because, as you will hear, I’m a subscriber of some of the emails which Laura mentions.

\n\n\n\n

This is not a get rich quick scheme. It’s hard work and you’ve got to cultivate your audience and give them something of value, repeatedly.

\n\n\n\n

Typically, when we record the podcast, there’s not a lot of background noise, but that’s not always the case with these WordCamp Europe interviews. We were competing against crowds and the air-conditioning. Whilst the podcasts are more than listenable, I hope ‌you understand that the vagaries of the real world were at play.

\n\n\n\n

Useful links.

\n\n\n\n

Jack’s Flight Club

\n\n\n\n

Dense Discovery

\n\n\n\n

Daily Coding Problem

\n\n\n\n

Litmus Email Testing

\n\n\n\n

Email on Acid

\n\n\n\nTranscript
\n

[00:00:00] Nathan Wrigley: Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.

\n\n\n\n

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 how WordPress can be the backbone of a profitable newsletter.

\n\n\n\n

If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.

\n\n\n\n

If you have a topic that you’d like us to share on the podcast, I’m keen to hear from you and hopefully get you all your idea featured on the show. Head over to WPTavern.com forward slash contact forward slash jukebox, and use the contact form there.

\n\n\n\n

So on the podcast today, we have Laura Nelson.

\n\n\n\n

Laura is a content marketer at WooCommerce, where she’s responsible for creating and planning engaging content for their users. Prior to WooCommerce she worked at MailPoet, an email marketing plugin for WordPress, and before that she worked at Pragmatic, a UK based WordPress agency.

\n\n\n\n

She’s on the show to explore her experience of how you can, and while you might want to set up a paid email newsletter.

\n\n\n\n

When I hear the word newsletter, I’m typically thinking about the information which drops into your inbox on a daily basis. We’ve all surrendered our email addresses in return for some product or service. We agree to receive emails on the understanding that we can unsubscribe at some point.

\n\n\n\n

Perhaps a few of these emails really resonate with you, but it’s likely that you unsubscribed from many as the content was no longer wanted. This kind of email marketing is not always viewed favorably, and it’s not the kind of technique that Laura is talking about on the podcast today. Her pitch is that email newsletters can themselves be a product? That people will pay to receive your emails, and she’s got data and examples to back it up.

\n\n\n\n

I suppose that the closest analogy would be people who create an online course. You have an area of expertise. You do the hard work of creating the course and people will pay for a membership to have the benefit of learning from your expertise.

\n\n\n\n

Laura is describing something similar to that. The only difference being that instead of a course, people will pay to receive your emails, knowing that you’re going to bring value to them regularly. I know that this can be done because as you will hear, I’m a ,subscriber to some of the emails which Laura mentioned.

\n\n\n\n

This is not a get rich quick scheme. It’s hard work and you’ve got to cultivate your audience and give them something of value, repeatedly.

\n\n\n\n

Typically when we record the podcast, there’s not a lot of background noise, but that’s not always the case with these WordCamp Europe interviews. We were competing against crowds and the air conditioning. And whilst the podcasts are more than listenable, I hope that you understand that the vagaries of the real world were a play.

\n\n\n\n

One last thing to mention is that I’ll be attending WordCamp US next week. And as a result there won’t be a podcast episode. If you’re going to be there. I do hope that our paths cross.

\n\n\n\n

If you’re interested in finding out more about the podcast, you can find all the links in the show notes by heading to WPTavern.com forward slash podcast. And you’ll find all the other episodes of there as well.

\n\n\n\n

And so without further delay, I bring you Laura Nelson.

\n\n\n\n

I am joined on the podcast by Laura Nelson. Hello.

\n\n\n\n

[00:04:19] Laura Nelson: Hello.

\n\n\n\n

[00:04:20] Nathan Wrigley: Laura did a talk yesterday?

\n\n\n\n

[00:04:23] Laura Nelson: Yesterday afternoon. Yep. So I’m feeling pretty good today.

\n\n\n\n

[00:04:27] Nathan Wrigley: You’re feeling happy. Yeah, she did a talk at WordCamp Europe, 2022. What was it entitled? What was it about?

\n\n\n\n

[00:04:32] Laura Nelson: It was how to create a paid newsletter subscription in WordPress.

\n\n\n\n

[00:04:35] Nathan Wrigley: Okay, and did it go well?

\n\n\n\n

[00:04:38] Laura Nelson: I think so.

\n\n\n\n

[00:04:39] Nathan Wrigley: So we’re gonna be talking today about newsletters. Obviously newsletters, they do seem to be all the rage.

\n\n\n\n

[00:04:45] Laura Nelson: Yeah, every so often you hear like, email is dead, it’s all about TikTok and in fairness it is all about TikTok at the moment. But email marketing is amazing way to speak to your customers or your audience.

\n\n\n\n

[00:04:57] Nathan Wrigley: Does the data back that up then? Reliably over the last 20 years, we can say email still works?

\n\n\n\n

[00:05:02] Laura Nelson: Yeah, yeah. And conversion rates are far higher from email marketing than they are from like, if you tweet about your product or your services. Email marketing is golden in terms of conversion rates.

\n\n\n\n

[00:05:13] Nathan Wrigley: That’s interesting. Just the interface is a little bit more, how to describe it? TikTok’s a bit more ephemeral. There’s a lot going on, and there’s a lot making you wish to scroll past all of the things. I think it’s the only thing that’s been with me for 20 years.

\n\n\n\n

[00:05:26] Laura Nelson: Exactly. People are familiar with it. They know how it works, they know what to expect from an email. I think you’re capturing people at a good time, because generally they’re not gonna open their emails unless they have time to read your email. Whereas if you are like on Twitter and you’re like idly scrolling or you’ve got like two minutes, it forces them to stop, but they might not have time to take that information in. So email, it’s nice. It sits there. If you don’t have time to read it properly when you first open it, you can come back to it.

\n\n\n\n

[00:05:53] Nathan Wrigley: Yeah, that’s a good point. I was just thinking about that. And if I don’t log into Twitter for a few days, there’s almost no chance that I’m gonna see the things from three days ago, because I’m gonna start at the top. Yeah, that’s a really good point.

\n\n\n\n

So, when you’re talking about newsletters, presumably we’re talking about a piece where people have subscribed to a newsletter, and you are then offering content to them. Is that basically the model?

\n\n\n\n

[00:06:16] Laura Nelson: That’s right, yeah.

\n\n\n\n

[00:06:17] Nathan Wrigley: Okay, and you are talking about getting paid and generating revenue, and it almost sounds like it’s too good to be true. You throw together a newsletter and suddenly, you become incredibly wealthy. Of course that’s not the case. There’s probably a lot of hard work. There’s probably a lot of expertise required. Is that true?

\n\n\n\n

[00:06:33] Laura Nelson: Yes. I’d say the hardest part of this is building your list. So if you don’t already have people in your community or your audience available, you probably have to put a bit more effort into marketing. But in terms of expertise, you can write a newsletter about anything you want.

\n\n\n\n

The example I gave in my talk yesterday was a newsletter about cats, and that’s an interest. I’m not an expert on cats, I just think cats are cute. And so, you can use them in whatever ways you want. I definitely don’t think you have to be an expert in a specific subject. If you are good at writing, or if you have interesting or unusual opinions about things, you can easily make an email newsletter.

\n\n\n\n

[00:07:11] Nathan Wrigley: Before we pressed record, we talked about the fact that there is a rival platform, which I think by now probably most people have heard of. It’s called Substack. And you likened what you were describing in the talk and probably what we’re gonna be talking about as a, kind of an alternative to that.

\n\n\n\n

[00:07:26] Laura Nelson: Yes. That’s right. Substack is huge now, and I can’t remember the figures off the top of my head, but there are millions of subscribers across all the Substack newsletters, I guess you’d call them. And the solution that I’m gonna be talking to you about is an alternative to keep that in WordPress, rather than outsourcing that to a different platform.

\n\n\n\n

[00:07:46] Nathan Wrigley: Is there a strong reason in your head why you would not wish to go with the, it’s the SaaS versus WordPress argument. You could have this about a thousand different SaaS platforms. But is there a strong reason in your head why you wish to do it in WordPress and not just pay Substack the fee and get on with it over there?

\n\n\n\n

[00:08:00] Laura Nelson: I think WordPress, I mean, WordPress lends itself to content. Like WordPress is where you publish content. And we’re talking about sharing content in a newsletter. And I think like this method, what most appeals about it to me is the fact that everything is in one place, and it’s familiar.

\n\n\n\n

So if you already have a WordPress website or a business that’s using WordPress to power it then you don’t have to learn something new, it’s already, it’s just there. It can be extended onto what you are already doing.

\n\n\n\n

[00:08:27] Nathan Wrigley: The payment bit, we’ll probably unpick the payment puzzle, but is this basically a paywall thing? In other words, are you restricting content? Are you only sending out to people who’ve paid? Or is it that you embed other things inside the newsletters, you know, upsells and subscriptions that people might join and so on?

\n\n\n\n

[00:08:44] Laura Nelson: No, no, you are only sending the content to those who’ve paid. So it’s like a subscription, like you would, sign up to like a, I think you can get them for like dog and cat food, where they get delivered regularly. Then you, yeah, just like that. But instead you’re receiving content in your inbox.

\n\n\n\n

[00:08:58] Nathan Wrigley: So you are going to describe to us a system built where you go to the website, you’re engaged, you sign up, you begin receiving emails and if your subscription payment is cancelled, the emails fail, and it stops.

\n\n\n\n

[00:09:09] Laura Nelson: Yeah, that’s exactly it.

\n\n\n\n

[00:09:11] Nathan Wrigley: Okay, so what plugins are you using?

\n\n\n\n

[00:09:13] Laura Nelson: Yeah, so in addition to like being on a WordPress website, so disclaimer, I mean, if you’re not on WordPress, I don’t know why you’re listening to this.

\n\n\n\n

[00:09:19] Nathan Wrigley: No, that’s probably fair.

\n\n\n\n

[00:09:21] Laura Nelson: You’ll need like WooCommerce, MailPoet, which is an email marketing plugin for WordPress, and WooCommerce subscriptions.

\n\n\n\n

[00:09:28] Nathan Wrigley: So the basic WooCommerce to sort of bind the whole subscription thing together. You add the subscription thing on top. And then there’s MailPoet. Is there any cost to any of that?

\n\n\n\n

[00:09:36] Laura Nelson: Yeah, so WooCommerce subscriptions is $199 per year. MailPoet is free to use up to a thousand subscribers. So when you get beyond that, there’s tiered plans. But I think the lowest plan starts at around $12 or $15 per month. It’s quite reasonable.

\n\n\n\n

[00:09:53] Nathan Wrigley: I’ve heard, and I don’t know where this number comes from, but I’ve heard that if your email list is a thousand people, roughly you can become profitable. And what I mean by that is that you can become profitable enough for it to become an important part of what you do. And it always felt that that was like a really, quite a low number.

\n\n\n\n

But then having tried to create email lists in the past, I quickly realized actually a thousand is pretty hard to get to. It’s difficult to get people to surrender their email address. So is there any advice that you give to people essentially to give you their email address?

\n\n\n\n

[00:10:25] Laura Nelson: Yeah. I think what works best is honesty. Be upfront and honest about what you’re gonna be sending to them. That you’re not gonna pass on your, their email to somebody else. And when you’re going to, like the frequency that they can expect to receive emails from you.

\n\n\n\n

And then it’s just a case of making sure that the content that you’re including in it is really valuable, offers something a bit different or unique that they might not be able to read elsewhere. I mean, that’s like solid advice for if it’s a paid newsletter or not paid. And then it’s just another form of marketing.

\n\n\n\n

So I recommend including, including a link to sign up in all of your normal email signatures, like from your Gmail or whatever you use. Use your social networks. If you have a good community on Twitter, let them know about your newsletter. Basically, plug it everywhere that you possibly can.

\n\n\n\n

[00:11:13] Nathan Wrigley: Does the MailPoet solution, does it allow you to create, so forgive me, first of all, I’ve not used MailPoet, so I don’t know how the UI works, but does it allow you to basically create a post in WordPress, which is then fired out as an email?

\n\n\n\n

[00:11:25] Laura Nelson: Yes and no. So if you mean like a post in WordPress that you’d be able to go onto a WordPress website and see it in like the blog section. It wouldn’t work that way around. If you had published a blog post on WordPress and then use MailPoet to send an email, it’s a tick, like a widget, that you drag in and a tick that and you can include that entire blog post in your email.

\n\n\n\n

[00:11:45] Nathan Wrigley: Okay. So you create a normal blog post. Tick a box. When you click publish, it is converted to an email and sent out?

\n\n\n\n

[00:11:52] Laura Nelson: Yeah. Or you drag it into like your email template, and you can add other stuff around it.

\n\n\n\n

[00:11:56] Nathan Wrigley: Oh, okay. So you could put a different header and a different footer in? Okay.

\n\n\n\n

[00:11:59] Laura Nelson: And in the case of the paid news letter though, you’d probably, in order to get people to sign up and pay for this, you don’t want that content being available on your website for free. So you’d probably want to write the post within the email itself. So it only lives there and not elsewhere.

\n\n\n\n

[00:12:16] Nathan Wrigley: Yes, that wouldn’t make sense, would it? If it was a paid newsletter, and the content was available on your website.

\n\n\n\n

[00:12:21] Laura Nelson: But you could use WooCommerce memberships. You could guard that and make it a private post and then link to it it.

\n\n\n\n

[00:12:27] Nathan Wrigley: Okay. So as with all things WordPress, there’s a way.

\n\n\n\n

[00:12:30] Laura Nelson: Yeah. You can add another layer to this if you want to do that.

\n\n\n\n

[00:12:32] Nathan Wrigley: If somebody was to begin a completely new website. You know, they wanna talk about, I dunno, volcanoes or something. Then would you be able to do this on pretty modest hosting? Because it doesn’t feel like there’s a lot going on. Basic WordPress, basic WooCommerce, a couple of extra plugins, maybe really cheap hosting?

\n\n\n\n

[00:12:50] Laura Nelson: Uh, yeah. Really, unless you are planning on adding loads of other products to your store or adding loads and loads of other content to your website. You can keep this really lean and get away with really cheap posting. It wouldn’t take much, you just need a product page really.

\n\n\n\n

[00:13:05] Nathan Wrigley: The difficulty I think maybe is trying to get people to find your newsletter in the first place. And then of course there’s the problem of getting them to separate their email and give it to you. Have you got any advice for how you market your newsletter? Anything around there?

\n\n\n\n

[00:13:21] Laura Nelson: Yeah. It’s funny. Someone asked me this yesterday after the talk and I, I said I could probably do an entire other presentation on this exact topic.

\n\n\n\n

[00:13:30] Nathan Wrigley: Go deep, it’s good.

\n\n\n\n

[00:13:31] Laura Nelson: So, what I was saying earlier about being really upfront about what you’re gonna be sending, when you’re gonna be sending it. Know what you’re doing with their email address. And you just really need to show some value. So you need to make sure that the content that you are creating is unique or if you do have an expertise in a certain area, really let people know, like why that’s important to them.

\n\n\n\n

Content is all about problem solving for people. So you need to find out what problems people have. And if you can solve that in content, then let them know.

\n\n\n\n

[00:14:03] Nathan Wrigley: I’m guessing that some things are going to be more of a labour of love than other things. Again if you’re producing the volcano newsletter, I’m expecting in the low single digits.

\n\n\n\n

[00:14:12] Laura Nelson: Well you know, it’s a niche market I imagine. Maybe that would be more successful because you know, you get people who are really into something like that. You know, there’s probably not a lot. I dunno, I’m not, I’m not familiar with the volcano market. I’m not gonna lie, but, um, I kind of imagine there will be those niche areas like that, where if there’s not content being published about that or at least readily available to you, then you probably would pay. It’s like, oh yeah, I love that, and I’m really interested in that. So I would pay to receive.

\n\n\n\n

[00:14:40] Nathan Wrigley: Yeah. It’s interesting because of course you’ve gotta think about the person reading the content and whether volcanoes are gonna be of any interest to them, but also your ability to sustain this, is directly related to how interested you think it is.

\n\n\n\n

So, you know, if you genuinely have no interest in volcanoes and you embark on that mission, probably it’s gonna dry up fairly quickly, and so I wonder if often people in this chase the big thing, the big shiny, exciting thing only to discover, you know, what, actually on a deep, personal level, I’m not interested in this, and the newsletter dries up and falters and fails.

\n\n\n\n

[00:15:16] Laura Nelson: If you’re thinking about starting this up, you need to remember, it’s not just one email. It’s not just two. It has to have like longevity to it. So whatever it is, whatever topic you’re choosing, obviously you can’t possibly know what you might like to talk about or write about in six months time, but you need to make sure that the topic is either big enough or is like new things are happening in that area enough in order to sustain a long term newsletter.

\n\n\n\n

[00:15:42] Nathan Wrigley: I wonder if this is like a perfect extension to people who are already doing things. They might have got a YouTube channel. They might have a WordPress website and they’re producing things. Or in this case here we are on a podcast. It may be that you’ve got that kind of thing. It feels like a bit of a no brainer to just add this on as a kind of value add. So you could have, well, I don’t know, content that only subscribers get, or things like that. Is that where the market seems to be leading.

\n\n\n\n

[00:16:08] Laura Nelson: Absolutely. You obviously can start from scratch and it, technically it’s pretty easy to do so, in that respect. But, you’re gonna have more success if you already have, you need to make sure you already have an audience. And if you already have a business, you already have a customer base or an audience that are, are listening to you, and you’re communicating with. So yeah, I think it’s an obvious, like an easy fit for established businesses.

\n\n\n\n

[00:16:34] Nathan Wrigley: Yeah. So if you’ve got something going already. It’s almost like a missing piece of the jigsaw if you’re not doing it.

\n\n\n\n

[00:16:39] Laura Nelson: It’s not to be used to like plug your products or services. It’s not like, I guess if you were to run a, an eCommerce store and you sell products, it’s not to be used like that. It’s like a highlight of, oh, we got these new trainers in stock etc. You have to be adding something of value, like an opinion or some content that they can’t get elsewhere. I think one of the, um, examples I gave yesterday was digital downloads. Like if you’re really good photographer, you could share your photos in an email newsletter and let have access to use your photos, you know? Like on a weekly basis like, 10 new photos every week or fortnight or something.

\n\n\n\n

[00:17:18] Nathan Wrigley: So this is subscription, which means we must decide on a subscription term. Do you typically, would you say like go monthly? Is that, is that the easiest, least friction way to do it? Sort of asking people to separate money from their wallet, monthly, annually.

\n\n\n\n

[00:17:34] Laura Nelson: I’d offer both a monthly option and then a yearly, maybe it would just slightly discounted. Because it’s great. If you have people signed up for a year or they’ve committed to that year, that’s excellent. But I’d always give people the option of monthly.

\n\n\n\n

[00:17:45] Nathan Wrigley: My fear of offering an annual plan would be that I just dry up. You know, I’d be eight months in and I’d be, ah, I’ve got nothing else to say, and then I’ve got to think about the, the sort of refund process.

\n\n\n\n

[00:17:58] Laura Nelson: Yeah. If you do that, you would probably have to refund people, but offering a yearly option is something you could consider after you’ve got into the groove of creating a newsletter and you think you can see it has a longer life to it.

\n\n\n\n

[00:18:10] Nathan Wrigley: Yeah I know this, what we’ve been talking about is a WordPress thing. The piece that you described, the MailPoet and the WooCommerce bit is the way to get paid for that. Just briefly talking about alternative ways of doing that. The sponsorship bit, or the payment bit outside of WordPress. There’s things like Patreon and Ko-fi is that, an angle you’ve ever looked at or explored?

\n\n\n\n

[00:18:30] Laura Nelson: Yeah, and like Substack. They’re all like really great platforms to use. But they’re outside of WordPress. So, I think the kind of unique angle here or for this approach is, if you want everything to be all in one place, if you’re already creating content in WordPress, don’t spend your time copying and pacing it over to a different piece of software. You can have it all like in one dashboard, basically. Ownership is a big part of that.

\n\n\n\n

[00:18:59] Nathan Wrigley: Thorny question.

\n\n\n\n

[00:19:01] Laura Nelson: Mm-hmm.

\n\n\n\n

[00:19:01] Nathan Wrigley: Where are the email addresses stored?

\n\n\n\n

[00:19:03] Laura Nelson: Right? So in MailPoet, no one else can see your subscriber’s email addresses. MailPoet takes, email best practices and security very seriously. We don’t even see the emails that get sent out via MailPoet. So they’re stored on, I think it’s like your server, they belong with you.

\n\n\n\n

[00:19:22] Nathan Wrigley: Mm-hmm.

\n\n\n\n

[00:19:23] Laura Nelson: They don’t come to MailPoet at any point. They are yours.

\n\n\n\n

[00:19:26] Nathan Wrigley: That’s an interesting thing. And I guess you would need to be mindful of GDPR if you are storing people’s email addresses. Do you have any insight into whether those are in the database? Do you know whether they’re in an encrypted, in an encrypted form or not?

\n\n\n\n

[00:19:40] Laura Nelson: This is a technical question that I am not able to answer, I’m afraid. At least not confidently. I think I know the answer, but I absolutely wouldn’t want to go on a podcast and tell everybody the wrong thing if that’s okay.

\n\n\n\n

[00:19:51] Nathan Wrigley: That’s okay we could could look at that another time. And so have you got any good examples of newsletters where you could say, go and have a look at that one. Two or three that you think are really worthwhile where somebody’s done it just right. They’re doing really well.

\n\n\n\n

[00:20:03] Laura Nelson: So the first one’s called Dense Discovery. None of these examples are actually of paid, well, actually I can give some paid newsletter examples. Let me start with Dense Discovery, which you can pay for, but they handle the payment a slightly different way. It’s more like a tip based system. Like if you enjoy this, you know, become a friend of the newsletter. But from a content perspective, I would pay to receive Dense Discovery.

\n\n\n\n

If they offered it up as a subscription, I would do that. Cause I tip on a regular basis. It has a really good balance of the guy who’s created the newsletter called Kai, like his opinion, and his take on what’s happening in the world. There are some lovely resources for like design. He often shares like an illustrator and their work, as well as some like handy tools for like productivity at work.

\n\n\n\n

So it’s kind like a nice, a nice blend of content. And it’s really regular. I know when I’m gonna receive it. It’s the same time each week, and I know the quality of the content’s gonna be really, really good.

\n\n\n\n

[00:21:01] Nathan Wrigley: Can I just pause you there, and just go on a bit of a segue and we’ll come back to some other ones in a minute, because that just suddenly occurred to me. There’s something a bit meta going on there, because he’s not asking for a subscription, but what if you had an email newsletter, which was a, the sort of upsell for the paid newsletter?

\n\n\n\n

[00:21:17] Laura Nelson: Oh yeah.

\n\n\n\n

[00:21:18] Nathan Wrigley: If you know what I mean? So the newsletter itself contains a proportion of the content. Is that a thing?

\n\n\n\n

[00:21:24] Laura Nelson: Yeah, absolutely. And actually the next example I was going to give. I’d like to like add to disclaimer it, this isn’t of my interest but’s I can see it’s done really, really well, which is why I’m gonna mention it. It’s called Daily Coding Problem. So it uses this paid newsletter technique really interestingly. It’s basically they send like a coding problem. It’s designed to help programmers prepare for technical interviews. And if you are only a free subscriber, you don’t get to see the answer.

\n\n\n\n

[00:21:53] Nathan Wrigley: Oh.

\n\n\n\n

[00:21:53] Laura Nelson: Uhhuh.

\n\n\n\n

[00:21:54] Nathan Wrigley: That is intriguing. Yeah, that’s kind of like using the annoyance style isn’t it? Yeah.

\n\n\n\n

[00:21:58] Laura Nelson: So I mean, if you’re really confident with these, maybe you don’t, maybe you don’t need to see them, like the mystery. Yeah, you have to become a paid subscriber to see the solution.

\n\n\n\n

[00:22:07] Nathan Wrigley: That’s fascinating. So throw something out there. It’s a bit like if Wordle didn’t give you the answer.

\n\n\n\n

[00:22:12] Laura Nelson: I know. How annoying would that be?

\n\n\n\n

[00:22:14] Nathan Wrigley: Well, you’d pay.

\n\n\n\n

[00:22:16] Laura Nelson: Exactly.

\n\n\n\n

[00:22:17] Nathan Wrigley: And you’d get the answer every, every day. Yeah, that’s fascinating. So I mean that’s really unique isn’t it? But presumably most of it is about just the kind of stuff that you would ordinarily put on your website. You just make sure that the content’s really good, but you indicate they’ve got to the end of this newsletter, but there’s more.

\n\n\n\n

[00:22:32] Laura Nelson: Yeah, yeah.

\n\n\n\n

[00:22:32] Nathan Wrigley: You could find out more.

\n\n\n\n

[00:22:33] Laura Nelson: Absolutely. And another example, um, which I mentioned yesterday actually was Jack’s Flight Club.

\n\n\n\n

[00:22:38] Nathan Wrigley: Oh. I pay for Jack’s Flight Club.

\n\n\n\n

[00:22:40] Laura Nelson: You’re newsletter subscriber.

\n\n\n\n

[00:22:42] Nathan Wrigley: That’s fascinating. I hadn’t connected. I use the app.

\n\n\n\n

[00:22:46] Laura Nelson: Yeah.

\n\n\n\n

[00:22:47] Nathan Wrigley: But it is a newsletter, is and he got me through the newsletter. You’re right. Go on, tell them about Jack’s Flight Club.

\n\n\n\n

[00:22:52] Laura Nelson: Yeah, so Jack’s Flight Club, as we just heard, is, it’s a really popular one, uh, in the UK and Europe. And it sends you like error fairs and cheap flight deals. But if you’re not a paid subscriber, you don’t get all of the deals. And when you get the free version of email, they tell you which deals that you missed. So it really plays on that, like FOMO, like, you know, you’ve missed these incredibly cheap flights to Canada. You didn’t get that because you’re not a paid subscriber.

\n\n\n\n

[00:23:18] Nathan Wrigley: That’s right. And the interesting thing about that one is. That’s kind of opened my eyes up actually about where the price points may be. And maybe, maybe Jack is different, but it’s about if I recall, I think I paid about $40, something like that per year. So it was not really a lot. If you spread that over the, you know, it’s like $3 80 or a month

\n\n\n\n

[00:23:40] Laura Nelson: Yep.

\n\n\n\n

[00:23:40] Nathan Wrigley: That’s really not a significant amount, but presumably if Jack, I’m guessing there is a Jack, I don’t know, but presumably if Jack’s into the tens of thousands, hundreds of thousands. This

\n\n\n\n

is incredible… a million.

\n\n\n\n

[00:23:52] Laura Nelson: He’s got a million subscribers, million plus, yeah.

\n\n\n\n

[00:23:55] Nathan Wrigley: We can work the maths out there. Okay Jack’s doing well from newsletters.

\n\n\n\n

[00:23:58] Laura Nelson: Jack’s doing alright. Well, it’s the success of a newsletter that enabled him to take it to an app and, you know, grow this beyond just email content.

\n\n\n\n

[00:24:06] Nathan Wrigley: I want to be Jack.

\n\n\n\n

[00:24:08] Laura Nelson: Yeah, me too. I bet he’s on a yacht somewhere lovely, right. He’s not looking up cheap flights.

\n\n\n\n

[00:24:12] Nathan Wrigley: He’s no longer looking, but that really illustrates it perfectly. So it was something most people probably don’t care about flights at all. They’ll just look the flight when they’re going on holiday but here’s me, I’m intrigued. I want if there is a cheap deal out there. So it’s got me on that niche thing. Like the coding chap.

\n\n\n\n

And, I don’t know how long it took me. I think he was probably giving me the free one for six months.

\n\n\n\n

[00:24:35] Laura Nelson: Yep.

\n\n\n\n

[00:24:36] Nathan Wrigley: Do you know what he also did, which was curious, which was actually the hook. He offered a 20% discount in one of his emails. So that’s another interesting pricing strategy. He had his annual price and then he, for a week only, I think it was 20% off. That was the, the fishing rod that I happily bit on. And, and I think he’s got me for years to come.

\n\n\n\n

[00:24:56] Laura Nelson: Yeah. You can do that with this, and I’d recommend exploring things like that. Just jumping back to your question earlier about how to get paid subscribers. If you already run a successful newsletter, you can drop in the bit about you having a paid newsletter too, give ’em a little taster of what they’ve missed or what they will miss if they don’t pay to subscribe and yeah, it got you.

\n\n\n\n

[00:25:17] Nathan Wrigley: It works. And interestingly enough, I am pretty difficult to get, and yet he got me. So it is, it is about the niche I think.

\n\n\n\n

[00:25:25] Laura Nelson: Yeah, yeah.

\n\n\n\n

[00:25:25] Nathan Wrigley: Well, let’s talk about the actual email itself. So we open up the email. Are there any sort of top tips about the way you should present things? I mean, are we looking for bright and colorful? Are we looking for more words than images? Are there trip wires that prevent the email clients from opening things? Because there’s just way too much text and it truncates it. Just give us what the email actually should be looking like.

\n\n\n\n

[00:25:47] Laura Nelson: Well, I mean, it does completely depend, like what you’re including in it. I wouldn’t be, if you are selling a like long form content style email, don’t be afraid of including lots of words. Because that’s what people are paying for. But in terms of spam filters, if you’re offering a paid newsletter subscription, I don’t think you’d have any issues because it’s usually things like the word free and like capital letters, lots of exclamation marks.

\n\n\n\n

[00:26:09] Nathan Wrigley: Emojis in the subject line, yeah.

\n\n\n\n

[00:26:12] Laura Nelson: Emojis in the subject line are okay, as long as they’re not overused. Yeah. Basically emails like don’t overdo anything.

\n\n\n\n

[00:26:20] Nathan Wrigley: Okay.

\n\n\n\n

[00:26:21] Laura Nelson: A good, combination of yeah, different things that works well. In terms of layout, I mean, just take a step back and think about what you’d like to read. If it’s a big wall of text, would that entice you to read it? I mean, some people maybe, but not no. So, and you can format the newsletter to look how you want. So you could add spaces, you can add some images, you can use columns if that’s better for your content, so.

\n\n\n\n

[00:26:45] Nathan Wrigley: The last time I was fiddling with email, I think we’re still stuck in tables. Are there big constraints still about the way that you can present things? So obviously on the web, our own WordPress websites, we can literally put anything anywhere, pixel by pixel, more or less. Are we confined with emails still? I mean are we still thinking about email clients from the year 2004 as a thing?

\n\n\n\n

[00:27:06] Laura Nelson: Yeah. Well, I mean email’s tricky because it will look different according to different email clients, and Outlook is forever a bug bear for those who create emails. But if you’re using email marketing software, I mean, I can only speak to MailPoet, and I’m not just trying to plug here. It’s just the one I’m most familiar with. Their templates are already fully responsive. Their templates are tested on all the different email clients. So you can kind of be pretty confident that unless you’ve gone in and really messed with that, they’re gonna work in most email clients.

\n\n\n\n

Litmus is a great tool if you’re not sure. Email on Acid to test your emails, to see what they’re going to look like on Outlook, on Gmail, all the big email.

\n\n\n\n

[00:27:47] Nathan Wrigley: And how do they work? You send Email on Acid an actual email and it then tells you, it gives you a rating or things to improve and so on.

\n\n\n\n

[00:27:54] Laura Nelson: It will show you how they look across the different email clients.

\n\n\n\n

[00:27:58] Nathan Wrigley: Tell us about the actual UI, about how you build email. I’ve logged into all sorts of services. Typically there’s a bunch of modules for want of a better word, a bit like in Gutenberg with blocks now. So you drag in a, an image and you could drag in a couple of columns and put the image to the left, and text to the right. Is it what you see is what you get kind of builder?

\n\n\n\n

[00:28:18] Laura Nelson: Yeah. Yeah. It is a WYSIWYG builder. It doesn’t use Gutenberg but I know the MailPoet team are looking to explore that option. But the email itself is a WYSIWYG editor where you drag and drop.

\n\n\n\n

[00:28:30] Nathan Wrigley: So it’s familiar? You’ll be right at home. Yeah.

\n\n\n\n

[00:28:32] Laura Nelson: I don’t like describing things as easy because I think different people have different perceptions of what’s easy, but this is the easiest email editor I’ve ever used, because it is simply you drag it and you drop it where you want it.

\n\n\n\n

[00:28:46] Nathan Wrigley: Do you get an opportunity to inspect it before you commit?

\n\n\n\n

[00:28:51] Laura Nelson: Yeah.

\n\n\n\n

[00:28:51] Nathan Wrigley: So it will send you a version you can inspect make sure the links are all working and so on.

\n\n\n\n

[00:28:56] Laura Nelson: Yeah, absolutely.

\n\n\n\n

[00:28:18] Nathan Wrigley: And does it check that stuff as well? So in other words, it will see that for example, you’ve overused images, Nathan. Stop with the images volcanoes. Or that there’s too much text typically. Does it give you any metrics about, what is that called even? Because I’ve seen that before, they do some sort of test in the background and give you a rating.

\n\n\n\n

[00:29:14] Laura Nelson: Like a readability.

\n\n\n\n

[00:29:15] Nathan Wrigley: Something along those lines, yeah.

\n\n\n\n

[00:29:17] Laura Nelson: It doesn’t, no. I think because the way MailPoet’s built and we don’t see your email content.

\n\n\n\n

[00:29:23] Nathan Wrigley: That’s interesting because it’s your WordPress site. So it’s your email. So it’s not phoning home any to any third parties.

\n\n\n\n

[00:29:29] Laura Nelson: It’s not but that’s a pretty interesting idea. Maybe I’ll pass it onto the team.

\n\n\n\n

[00:29:32] Nathan Wrigley: Oh okay.

\n\n\n\n

[00:29:33] Laura Nelson: That would be useful.

\n\n\n\n

[00:29:34] Nathan Wrigley: Can I take credit for that?

\n\n\n\n

[00:29:35] Laura Nelson: The feature will be called email read, readability by Nathan.

\n\n\n\n

[00:29:40] Nathan Wrigley: That’s great. Okay I’m happy with that. So Laura, just before we wrap up, where’s the best place to find out about, well, in this case, MailPoet, where do we go?

\n\n\n\n

[00:29:48] Laura Nelson: MailPoet.com. If you head to the blog, there’s some really great articles there about email marketing in general. How to build your list. There’s even a blog post about creating a paid newsletter. Like what my talk was on yesterday. Fantastic resource for all things email marketing.

\n\n\n\n

[00:30:04] Nathan Wrigley: Well Laura, well done for getting through your talk at WordCamp Europe.

\n\n\n\n

[00:30:07] Laura Nelson: Thank you. Thank you.

\n\n\n\n

[00:30:08] Nathan Wrigley: A nice relief and, very happy to have you on the podcast today.

\n\n\n\n

[00:30:12] Laura Nelson: Thank you so much for having me. It’s been a pleasure.

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 31 Aug 2022 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:33;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"Post Status: Naming is Hard: Content Types on Learn 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:32:\"https://poststatus.com/?p=113897\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://poststatus.com/naming-is-hard-content-types-on-learn-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:1257:\"

Based on a public discussion led by Hugh Lashbrooke, Workshops (5-15 minute instructional videos) are going to be called Tutorials, moving forward while Social Learning Spaces (live and collaborative learning sessions) have become Online Workshops.

\n\n\n\n

No change to Courses (long-form content with multiple lessons in multiple media formats) and Lesson Plans (structured plans that trainers can use to teach others).

\n\n\n\n

Definitely seems to move things toward greater simplicity and clarity.

\n\n\n\n\n

This article was published at Post Status — the community for WordPress professionals.

\";s: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, 31 Aug 2022 04:28: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:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Post Status: LearnDash: Plugin or SaaS?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=113919\";s: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:48:\"https://poststatus.com/learndash-plugin-or-saas/\";s: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:883:\"

Or both — if you want both. It\'s LearnDash — and LearnDash Cloud.

\n\n\n\n

I don\'t think I\'ve ever seen a WordPress plugin priced and marketed this well as both a product and a service.

\n\n\n\n

At least that\'s how most people think of it… A plugin is really a product with updates and support as a service. A SaaSified plugin is still the underlying WordPress product.

\n\n\n\n

What the customer cares about is what they can (or don\'t have to) do — as a site builder or developer, or as someone who wants all the technical details and heavy lifting to be taken off their plate.

\n\n\n\n

Both are open source. Both introduce different kinds of people to a community and ecosystem.

\n

This article was published at Post Status — the community for WordPress professionals.

\";s: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, 30 Aug 2022 23:09: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:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: WP-Optimize Denies Allegations of Cheating Performance Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=137433\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wptavern.com/wp-optimize-denies-allegations-of-cheating-performance-tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:11452:\"

Yesterday, we published allegations from Gijo Varghese against UpdraftPlus, the makers of WP-Optimize. Varghese is founder of FlyingProxy, a competing company, and identifies himself as a “performance enthusiast.” He accused the plugin of “cheating Pagespeed and other tools” by hiding JavaScript files from loading when users test their sites through popular performance testing tools. The code uses an odd set of obfuscated names for the testing tools, which drew his suspicion.

\n\n\n\n

Varghese neglected to mention in his tweet that this is what happens when one of the plugin’s settings under Minify > JS is set to defer JavaScript. There are two radio button settings but they are confusing.

\n\n\n\n

The first radio button allows users to defer selected JavaScript files. It says the files will be loaded asynchronously (not the same as defer), and then it also says that users should select the first radio button if they want to exclude scripts from page speed tests. It is not clear how the scripts will be loaded for the user or for testing sites. Excluding is not the same as deferring, so in this case the settings UI is somewhat misleading and should be more clear.

\n\n\n\n\n\n\n\n

The second radio option is for users who are simply looking to defer all JavaScript. If one selects “Defer using JavaScript (Use this method if you require support for older browsers),” it should do exactly what it describes in the link:

\n\n\n\n
\n

If the defer attribute is set, it specifies that the script is downloaded in parallel to parsing the page, and executed after the page has finished parsing.

\n
\n\n\n\n

Even though the UI says it is deferring all files, WP-Optimize never loads the JavaScript for performance testing sites. In this second option, the exclusion of testing sites happens without the users’ permission. If users had wanted that, they would have selected the previous radio button and explicitly identified which scripts to exclude.

\n\n\n\n\n\n\n\n

Varghese left out some significant details in his original report, but it was accurate in that certain settings are misleading about what they actually do. He demonstrated this in a follow-up video where there is no manual entry of any scripts to exclude and the second radio option is checked.

\n\n\n\n
\n\n
\n\n\n\n

“They’re providing an option for users to cheat testing tools,” Varghese said. “Also, using names like ‘ighth’ for Lighthouse and ‘tmetr’ for GTmetrix clearly shows what they’re trying to do.

\n\n\n\n

“Most of the users try disabling and enabling different features to see which one is increasing the speed/scores in testing tools.”

\n\n\n\n

Varghese contends there is no need to do things differently for testing tools and humans, as this can be confusing for site owners. His allegation left out significant details and implied that all of this is hidden in the code. It is for one of the settings but not the other one. The interface implies that you must enter scripts manually to exclude from testing, but this is also misleading.

\n\n\n\n

WP-Optimize published a public response to the allegations today, but has not revealed any of the results from the code investigation they completed. Instead, the company cited a video created by Peter Wilkinson from Divi Engine, who claims that users must manually enter scripts to make testing sites exclude them.

\n\n\n\n

Wilkinson is quoted as concluding that “Gijo Varghese has used deception to promote Flying Pages and Flying Press” in bringing this issue to public attention on Twitter.

\n\n\n\n

“In reality (from my research) WP-Optimize do not ‘cheat’ Pagespeed tools when you install or Minify your JavaScript,” Wilkinson said.

\n\n\n\n

“To ‘cheat’ the tools, you need to manually add the JS files you want to asynchronous load to a setting that clearly has the label ‘Use this if you have a completely independent script or would like to exclude scripts from page speed tests (PageSpeed Insights, GTMetrix…)\'”

\n\n\n\n

This is not the case. The easiest way to test is to install the plugin, turn on “defer all JavaScript,” and then view the source to see that performance tools are excluded.

\n\n\n\n

Since WP-Optimize’s public response to the issue did not include anything from their code investigation, I contacted them again. Their deputy lead Venkat Raj was not available to answer why other settings in the plugin silently remove JS for performance testing tools with the click of a radio button. Joe Miles, head of strategy for the company, shared the last information he received on the issue from Venkat Raj:

\n\n\n\n
\n

“The advanced setting used in the allegation is actually useful to find out whether the essential js/css files are actually slowing down the web page or not.  This feature is by default, turned ‘off’ and only enabled by advanced users who know what they’re doing.

“You may use this feature if you have a completely independent script or would like to exclude scripts from page speed tests (PageSpeed Insights, GTMetrix…)

“Independent scripts are for example ‘analytics’ or ‘pixel’ scripts. They are not required for the website to work. ‘Use this if you have a completely independent stylesheet or would like to exclude stylesheets from page speed tests (PageSpeed Insights, GTMetrix…)

\n
\n\n\n\n

This applies to the first radio button. The second button does not have any indication that it will turn off all scripts when using testing tools – nor does WP-Optimize’s team seem to be aware that it is available with the click of a radio button.

\n\n\n\n

Miles could not confirm whether this is how it is intended to work or if it is a bug. He also could not account for why the names of the popular testing sites were obfuscated in the code, but said the original developer “doesn’t work for us as it’s open source code repurposed from elsewhere.”

\n\n\n\n

“However, we believe this is a distraction from the false allegations, and what matters is that the UI is very clear for the settings are for, so users aren’t deceived,” Miles said.

\n\n\n\n

Raul Peixoto, author of the Fast Velocity Minify (FVM), the plugin from which WP-Optimize copied the code, said he can confirm that this code was part of FVM but said it was not used in the same way:

\n\n\n\n
\n

The purpose of such code on FVM was completely different than the one on WP Optimize and furthermore it required for the users to manually enable this option via wp-admin (it was disabled by default).

\n\n\n\n

The purpose of that code was to selectively test the impact of new scripts or plugins in performance, and help developers decide if they should refactor, remove or replace heavy plugins or scripts.

\n\n\n\n

This existed on FVM to answer questions like these:
“I have a production site and my performance is low. What would be the performance if this plugin was simply not here, but without actually removing it from the site for regular users yet?”
“What would the performance be if I could defer all scripts, or specific scripts that are not currently compatible with defer, before actually doing that change for everyone?”

\n
\n\n\n\n

An official explanation regarding its use on FVM is available in the plugin’s support forum as of this morning.

\n\n\n\n

“I suppose that the developers hired by WP Optimize did not understand what this was doing on FVM or under what settings, or perhaps, they may have felt tempted to use it as a hack,” Peixoto said.

\n\n\n\n

“We should also carefully remember that at that time, there were still no web vitals metrics publicly available, so using something like this would have yield better ‘measurable’ results, thus offering a product advantage.”

\n\n\n\n

Piexoto said he “felt compelled” to remove this code two years ago because of how often it was abused by developers who were cheating on tests for their clients:

\n\n\n\n
\n

Fast forward some time, and I realized that some developers were actually using this to cheat on the tests for their clients, so I felt compelled to make the decision on FVM 3 (already late 2020) to remove this feature, which was met by a lot of protests of angry developers when their clients started complaining that their scores went down.

\n\n\n\n

I tried at that time, to explain that having a good score was not the same as having good web vitals metrics, but eventually I gave up on that, as some people cared more about the test results than the actual performance.

\n\n\n\n

After FVM 3 release, I am basically just maintaining it and doing small bug fixes when reported, as I have to focus on other things. I have removed that function and fixed a couple of bugs that were pending on version 3.2.9 and pushed an update, so thank you for referring this to me.

\n
\n\n\n\n

For whatever reason, UpdraftPlus chose to merge this code into WP-Optimize in 2020 and, as reported yesterday, hasn’t touched the code since.

\n\n\n\n

What appeared to be a black and white issue yesterday is a more nuanced situation. WP-Optimize’s implementation of FVM’s code is poorly documented in the UI and misleading about how the scripts are loaded. It can lead site owners to activating it without being advanced users, and historically has a high potential for abuse. When Varghese discovered it, he exposed it in an inflammatory way, feeling certain he had found wrongdoing because of how inexplicably obfuscated the code is. This compounded the issue but started a broader, important conversation.

\n\n\n\n

Should users have this kind of easy access (two clicks) to turning off scripts for performance testing tools? How can developers in the same industry better communicate about potential harms to users that they see in others’ products? What kind of code documentation requirements should agencies implement to prevent a situation like this where code needs to be investigated over the span of days in order to find out what it is intended to do?

\";s: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, 30 Aug 2022 22:41: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Post Status: Naming is Hard: Social and Schema Images\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=113879\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://poststatus.com/naming-is-hard-social-and-schema-images/\";s: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:799:\"

This was a neat post from Joost de Valk back in July where he did some thinking out loud about the challenges of naming in Schema.org image standards to distinguish between featured and poster images on social networks:

\n\n\n\n

I’ve been playing a lot with Schema and Social images recently and one thing has become clear: we need better naming of these images and we should probably improve the Schema.org image standards a bit. In this post I want to briefly discuss the different needs and my proposed (very simple) naming scheme.

\n

This article was published at Post Status — the community for WordPress professionals.

\";s: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, 30 Aug 2022 22:17:15 +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:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"Post Status: Talk about edge cases!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=113837\";s: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:45:\"https://poststatus.com/talk-about-edge-cases/\";s: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:935:\"

On August 8, wordpress.org was down for a few hours after a Chicago data center outage. During the outage, a user of Salt Shaker reported the plugin replaced salt keys with an outage notice, leading to a WSOD on a customer\'s site:

\n\n\n\n

Probably the plugin just scraped and copied what was displayed at https://api.wordpress.org/secret-key/1.1/salt/.

wordpress.org support forum
\n\n\n\n

\n

This article was published at Post Status — the community for WordPress professionals.

\";s: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, 30 Aug 2022 21:35: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:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WordPress.org blog: WordPress 6.0.2 Security and Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=13346\";s: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://wordpress.org/news/2022/08/wordpress-6-0-2-security-and-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5700:\"

WordPress 6.0.2 is now available!

\n\n\n\n

This security and maintenance release features 12 bug fixes on Core, 5 bug fixes for the Block Editor, and 3 security fixes. Because this is a security release, it is recommended that you update your sites immediately. All versions since WordPress 3.7 have also been updated.

\n\n\n\n

WordPress 6.0.2 is a short-cycle release. You can review a summary of the main updates in this release by reading the RC1 announcement.

\n\n\n\n

The next major release will be version 6.1 planned for November 1, 2022.

\n\n\n\n

If you have sites that support automatic background updates, the update process will begin automatically.

\n\n\n\n

You can download WordPress 6.0.2 from WordPress.org, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”.

\n\n\n\n

For more information on this release, please visit the HelpHub site.

\n\n\n\n

Security updates included in this release

\n\n\n\n

The security team would like to thank the following people for responsibly reporting vulnerabilities, and allowing them to be fixed in this release:

\n\n\n\n
    \n
  • Fariskhi Vidyan for finding a possible SQL injection within the Link API.
  • \n\n\n\n
  • Khalilov Moe for finding an XSS vulnerability on the Plugins screen.
  • \n\n\n\n
  • John Blackbourn of the WordPress security team, for finding an output escaping issue within the_meta().
  • \n
\n\n\n\n

Thank you to these WordPress contributors

\n\n\n\n

The WordPress 6.0.2 release was led by @sergeybiryukov and @gziolo.

\n\n\n\n

WordPress 6.0.2 would not have been possible without the contributions of more than 50 people. Their asynchronous coordination to deliver several enhancements and fixes into a stable release is a testament to the power and capability of the WordPress community.

\n\n\n\n

Alex ConchaAndrei DraganescuannezazuAnton VlasenkoAri StathopoulosBen DwyerCarolina NymarkColin StewartDarren CouttsDilip BhedaDion HulseeMKeyFabian KägyGeorge MamadashviliGreg ZiółkowskihuublironprogrammerJb AudrasJohn BlackbournJonathan DesrosiersjonmackintoshJonny Harris, Kelly Choyce-DwanLena MoritaLinkon MiyanLovro HrustmarybaumNick DiegoNik Tsekouras, Olga GlecklerPascal BirchlerpaulkevanPeter WilsonSergey BiryukovStephen BernhardtTeddy PatriarcaTimothy JacobstommusrhodusTomoki Shimomura, Tonya Morkwebcommsat AbhaNonStopNewsUK, and zieladam.

\";s: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, 30 Aug 2022 19:39:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"Do The Woo Community: Builder Tips from WordCampUS Speakers Part_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:28:\"https://dothewoo.io/?p=72834\";s: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:65:\"https://dothewoo.io/builder-tips-from-wordcampus-speakers-part_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:418:\"

Listen in to these WooCommerce / WordPress builder tips from Chris Lubkert, Michelle Schulp, Joey Daoud, Maddy Osman and Phil Crumm.

\n

>> The post Builder Tips from WordCampUS Speakers Part_1 appeared first on Do the Woo - a WooCommerce Builder 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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Aug 2022 09:17:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"WPTavern: WP-Optimize Plugin Accused of Cheating PageSpeed and Other Performance Testing Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=137404\";s: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://wptavern.com/wp-optimize-plugin-accused-of-cheating-pagespeed-and-other-performance-testing-tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9158:\"

Gijo Varghese, a developer who calls himself a “web performance enthusiast,” shocked WordPress users around the world over the weekend when he tweeted a screenshot of how WP-Optimize is allegedly preventing select JavaScript files from loading when users test their sites through popular performance testing tools.

\n\n\n\n

“When a site is loaded, the JavaScript files are loaded only when the user-agent/browser is not Lighthouse/GTmetrix/Headless Chrome/Pingdom,” Varghese said. “No JS = high scores. But for real users, these JS files are loaded!”

\n\n\n\n

\n\n\n\n
\n

\"🚨\" How \"WP Optimize\" is cheating PageSpeed and other testing tools \"👇\"

When a site is loaded, the JavaScript files are loaded only when the user-agent/browser is not Lighthouse/GTmetrix/Headless Chrome/Pingdom.

No JS = high scores. But for real users, these JS files are loaded! pic.twitter.com/uuOiAOgvoo

— Gijo Varghese (@GijoVarghese_) August 26, 2022
\n
\n\n\n\n

Varghese confirmed that he was testing the free version of WP-Optimize, which is used on more than a million WordPress sites. UpdraftPlus acquired WP-Optimize in 2016 and claims that the tool “has everything you need to keep your website fast and thoroughly optimized.” A commercial version is also promoted through the free plugin that is hosted on WordPress.org.

\n\n\n\n

“Tell me, UpdraftPlus, how I’m supposed to continue trusting your company with my clients’ backups when you use these deceptive and fraudulent practices?” one customer Adam Lowe said in response to Varghese’s discovery of the plugin not loading JS for performance tools.

\n\n\n\n

“Wow, all I can say is what an utter disappointment,” WordPress agency owner and developer Brian Jackson said.

\n\n\n\n

This type of alleged deception is eerily similar to a scam reported by someone who contracted a performance freelancer on Upwork who artificially manipulated Google Pagespeed results. Others participating in the discussion on Twitter compared it to the Volkswagon emissions scandal where the carmaker was found to activate its emissions controls only during laboratory testing in order to meet the EPA’s requirements after a violation. The vehicles on the road emitted up to 40 times more nitrogen oxides while driving, as compared to how they performed in the rigged laboratory tests.

\n\n\n\n

Varghese and several other participants in the conversation concluded that this is why site owners should focus on what real world users are experiencing, instead of performance tool test scores.

\n\n\n\n
\n

Hopefully they wonder why their CrUX report data (or better, RUM data) didn\'t budge. The whole reasons we release CrUX publicly is to give developers some ground truth. There\'s endless ways to trick yourself into believing your lab data is representative of real users \"😛\".

— Rick Byers (@RickByers) August 29, 2022
\n
\n\n\n\n

Even when focusing on real user experiences, site owners often rely on the tests to diagnose issues and see how a site’s performance can be improved. They don’t expect that a plugin will be hiding JS files from performance tools. Tricking the tests has eroded WP-Optimize’s credibility.

\n\n\n\n

“Wow. If true, this is as short sighted as it is inexcusable,” UpdraftPlus customer Johnathon William said. “And it makes me wonder if I can trust their other product, UpdraftPlus, which I use to backup several client sites.”

\n\n\n\n

I contacted UpdraftPlus and lead developer David Anderson said the company was not aware of the issue with the code but related some of the backstory. UpdraftPlus was briefly in talks with the author of the Fast Velocity Minify plugin about the possibility of combining forces, in which he would maintain the minification module within WP-Optimize and gain more users. Ultimately they could not come to an agreement, but during that time WP-Optimize’s developers forked and adapted Fast Velocity Minify under the GPL. The developers who worked on that adaption are no longer with the company.

\n\n\n\n

“In the commit to our own source repository, 2.5 years ago (Jan 2020), the commit was labelled ‘Resolve ‘Add CSS and JS Minification GPL code from ‘Fast Velocity Minify’ – Part 6′,” Anderson said. “Part of a series of initial merges of code that was re-factored to be cleaner and use our coding style preferences (but not change any functionality). So the apparent intention of the merge of those lines was to bring over refactored code without at that stage making any changes.

\n\n\n\n

“According to the commit history (i.e. the ‘git blame’ function) no changes have been made to that code since, i.e. it is as-imported. (The history for WP Optimize is public in WordPress SVN too).”

\n\n\n\n

After a cursory examination of the code, Anderson concluded that his team may need to reexamine it, as they were not aware of what was added two years ago.

\n\n\n\n

“As I try to trace that function through the code within the plugins, the intention on the face of it appears to be that if the website visitor is a ‘bot,’ then code that is pointless for bots won’t be carried out,” he said.

\n\n\n\n

“However having said that, 1) the bot names look to be heavily obfuscated/redacted, which is strange (why?), and  2) there are plenty of more obvious bots that aren’t listed there, such as the Googlebot itself. If that function was being put before me for review today, I’d certainly question why that is so. I can’t mind-read myself back 32 months ago, but, I remember it as being a long series of large patches, so it wasn’t being closely analysed on a line-by-line basis. We knew that we had identified FVM as a good plugin and our main focus was on adapting it to our structure and style, and those were the things I personally was looking at as the final reviewer.”

\n\n\n\n

In summary, UpdraftPlus’ development team was not aware of this code until the Twitter thread was published over the weekend.

\n\n\n\n

“I’m certainly glad to have it brought to our intention,” Anderson said. “The associated code comment on a related fragment in its original source that it’s intended to prevent unnecessary requests for bots, but on a closer examination than that line got at the time, that’s something we’ll want to look at, as it does look questionable/strange, and we’ll be doing that by assigning it to a team member who’s our expert in JavaScript optimizations.”

\n\n\n\n

Anderson also said that if the JavaScript optimization experts cannot find any legitimate purpose for the code, “it will certainly be removed,” with a clear and unambiguous disclosure for the reasoning behind it.

\n\n\n\n

In the meantime, UpdraftPlus has published a notice in the plugin’s support forum to inform users that the code is currently under investigation.

\n\n\n\n

“To be clear and set users’ minds at rest: the code in question is not dangerous, a virus, an infection, useful to hackers, or anything of that kind,” Anderson said. “The allegation is that its only purpose in existing is effectively to cheat on speed tests. Such code, if so, does not belong in WP Optimize and we will remove it with a new release. Our products’ integrity, and our customers’ trust, are essential for us (and deliberately putting things in open source code that compromises that is, frankly, a stupid thing to do).”

\";s: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 Aug 2022 23:15:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"Matt: Sonic Sphere and Empyrean Gate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=60315\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://ma.tt/2022/08/sonic-sphere-and-empyrean-gate/\";s: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:1266:\"

If I had to pick one reason why I’d suggest every person should attend Burning Man at least once, it would be the art. (Second reason would be seeing the principles in action.) This year I am particularly excited to support two pieces, the first being the Sonic Sphere which has this great video introducing it:

\n\n\n\n
\n\n
\n\n\n\n

I got a chance to try out a smaller prototype of this and it was a great experience. You can read a bit about the history of the Kugel Auditorium that this is based on on Ed Cooke’s blog post Which is more memorable, a Bitcoin or a Spherical Concert Hall? The Sphere will be in Deep Playa (what3words).

\n\n\n\n

Another exciting new project is the Empyrean Gate at the Entheos camp, which will be at 3 and Esplanade. Here are some renderings but I can’t wait to see how it turns out in person.

\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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 27 Aug 2022 16:31:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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:42;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WPTavern: Catch Themes Releases Pentatonic: A New Block Theme for Bands and Musicians\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=137282\";s: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:95:\"https://wptavern.com/catch-themes-releases-pentatonic-a-new-block-theme-for-bands-and-musicians\";s: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:2525:\"

Block themes are expanding to include more niches beyond the simple one-column blogging themes, and Catch Themes is one of the companies at the forefront of this new frontier. Pentatonic, the company’s latest release on WordPress.org, is a free theme created for band and musicians.

\n\n\n\n

The theme uses core blocks to create sections that showcase the work of creative artists of all kinds. For example, the header uses the Cover block featuring a gradient image with the focal point picker set at a certain point. Site identity and navigation are organized within a group, followed by a Media and Text block header section.

\n\n\n\n

Upon install and activation, Pentatonic delivers a good experience for users. Clicking “Customize” takes users to the Site Editor with the front page loaded, looking nearly identical to the demo for the free version.

\n\n\n\n\n\n\n\n

Pentatonic comes with 17 block patterns that users can easily mix and match to create their own unique pages. These include patterns for About Us, Call to Action, Featured Content, Sidebar, Music Podcasts, 404 Header, Archive header, Default footer, Footer with three columns, Default header, Recent with blog sidebar, Post header, Header with buttons, and more. Each section on the homepage can be recreated using a pattern on other pages or repeated/rearranged on the front page.

\n\n\n\n\n\n\n\n

The theme also includes 11 templates and eight template parts, allowing users to make customizations to the 404 page, blog single posts, search results, post content, and others.

\n\n\n\n

The pro version of the theme includes access to custom blocks, such as a playlist, case study, skills bar, masonry, popup video, and more. The demo for the pro version has a sticky music player at the bottom of the page, promotional popup video, podcast playlist, and other custom media additions that bands and artists may require.

\n\n\n\n

Pentatonic has been optimized to respond well to all screen sizes and looks just as good on mobile as it does on desktop. The theme is available for free on WordPress.org where you can preview all the patterns and check out a preview of the whole theme in action that strongly resembles the demo hosted on Catch Themes.

\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 Aug 2022 21:38:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"Post Status: Tech Roundup for the Week of August 22\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=106848\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://poststatus.com/tech-roundup-for-the-week-of-august-22/\";s: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:5489:\"

DigitalOcean\'s acquisition of Cloudways • Stop saying “Gutenberg!” • Build Mode Live with Brian Gardner and Sam Munoz • One week left to submit a style variation for TT3 • Cool Tool of the Week: Munir Kamal\'s Editor Plus

\n\n\n
\n\n\n\n

Estimated reading time: 3 minutes

\n
\n\n\n\n

WordPress Development Around the Web

\n\n\n\n

A glimpse of what’s going on in the world of development and design in the WordPress space.

\n\n\n\n

Huge news in the hosting space! DigitalOcean is set to acquire Cloudways for $350 million (USD). From a development perspective I hope this enables Cloudways to innovate even more in the coming years, but it does immediately pose the question: will DigitalOcean keep their competitors\' hosting services available on Cloudways. All signs point to the same business-as-usual, but only time will truly tell. Regardless, big congrats to Post Status members over there, Robert Jacobi and Zach Stepek.

\n\n\n\n

Fränk Klein over at WordPress agency Human Made is asking us to stop saying ‘Gutenberg’. This makes sense. We need to have a consistent vocabulary on how we talk about these things to each other and to stakeholders so we all understand what we’re discussing. I’ve gotten into the habit of saying “the Block Editor” when talking about the new interface for page building in core, but I never thought that we could also break down explaining the various parts to full site editing as well. Human Made does a good job of clarifying all of this, and it might even be a great addition to the WordPress documentation to have all these defined right up front somewhere.

\n\n\n\n

Speaking of hosting companies, Post Status members Sam Munoz and Brian Gardner from WPEngine have started a regular Zoom meeting called Build Mode Live to help anyone with their questions and struggles around full site editing, the block editor, WordPress, and how it all impacts business owners. They’re bringing a design, development, builder, and business owner perspective to an area where we haven’t seen much open discussion. You can sign up to participate right now!

\n\n\n\n

On the Make WordPress Design blog Channing Ritter, Design Director at Automattic, shared a reminder that there is one week left to submit a variation to be included in the new Twenty Twenty Three theme (TT3). There’s a Figma file attached to Channing\'s kickoff post you can use for the variations. This builds on the tools I shared last week that reinforce the importance of a build flow from Figma to WordPress. All of it is very encouraging! It\'s great to see this process improving.

\n\n\n\n
\n

Cool Tool

\n\n\n\n

Each week we’ll feature one cool tool that can help make your life easier as a WordPress builder.

\n\n\n\n

Editor Plus

\n\n\n\n

Have you been struggling with the lack of features in the block editor that you’ve grown accustomed to having in a page builder? That is where Editor Plus comes in! It helps you set background, margin, padding, icons, tabs, accordions, ratings, and even animation. I like most that these settings also stay in place even when you switch themes, keeping it from locking you into a specific theme forever. The plugin is led by serial developer Munir Kamal, who also runs Editors Kit and Gutenberg Hub. A bonus for users of this plugin is that there are also a ton of great video tutorials on how to extend Editor Plus to do almost anything.

\n
\n

This article was published at Post Status — the community for WordPress professionals.

\";s: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, 26 Aug 2022 16:46:02 +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:\"Daniel Schutzsmith\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"WPTavern: James Koster Shares Design Explorations that Transform WordPress’ Site Editor Into a More Visual, User-Friendly Tool\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=137360\";s: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:135:\"https://wptavern.com/james-koster-shares-design-explorations-that-transform-wordpress-site-editor-into-a-more-visual-user-friendly-tool\";s: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:4026:\"

Automattic-sponsored designer James Koster has a vision for taking WordPress’ Site Editor from its beta awkwardness and transforming it to become a more visual and user-friendly design tool. In a recent post titled Revising the presentation of key Site Editor features, Koster identifies unbalanced feature weighting as a critical design flaw that is negatively impacting users’ experience with the editor:

\n\n\n\n
\n

The Site Editor is a powerful tool, but the user experience lacks some coherence and a sense of hierarchy.

\n\n\n\n

Template management and editing has central focus, despite the fact that it’s a product area that has proven difficult for some users to interpret.

\n\n\n\n

Impactful features like style and menu management are hierarchically relegated, and consequently deliver a sub-optimal UX.

\n\n\n\n

This week I’ve been ideating on how we might present site editor features with more appropriate weighting, so that the overall experience feels more like a design tool.

\n
\n\n\n\n

Instead of dropping users directly into editing the homepage, Koster contends that the Site Editor’s design should be updated to become a “navigable frame” where users can select from a menu of features and styles on the left. This is a radical improvement over the current experience, which feels like walking into a room with all the lights on and multiple features competing for attention.

\n\n\n\n
\n\n
\n\n\n\n

“The combination of the site frame (Browse mode) and one-click editing helps to obfuscate some of the aforementioned confusion around template editing,” Koster said. “Now you simply browse to the page you want to update, and click ‘Edit’.”

\n\n\n\n

Another idea Koster explored is a view that makes it easier to understand the interaction of styles and templates. The UI is much cleaner and drastically reduces the cognitive load for users who are struggling to grasp the concept of templates in the first place.

\n\n\n\n
\n\n
\n\n\n\n

Identity and homepage configuration options haven’t found a place in the site editor yet. Koster proposed bringing them into the editor in a similar fashion to how it was previously presented in the Customizer, with live previews.

\n\n\n\n\n\n\n\n

Koster also proposes organizing features like templates, template parts, reusable blocks, and patterns in a “Design Library” section, presented via a grid of thumbnails that would open the edit view. This would bring a new level of organization to a set of tools that are currently scattered throughout the site editor interface.

\n\n\n\n

These are just a few highlights from his explorations. Although Koster articulates many of the Site Editor’s current pain points, his designs present an elegant solution for each. Check out the full post to see all the videos and other ideas for organizing features in the site editor.

\n\n\n\n

The disparity between the current experience and Koster’s mockups is like a night and day Cinderella style transformation. It’s a powerful example of how thoughtful design can really solve problems. His explorations received positive feedback from those eager to see these designs implemented in Gutenberg. Koster said his next step is to prepare some simpler prototypes for collaboration on GitHub.

\n\n\n\n

“The ideas are still formative, but with some pruning we can get things into a shippable state,” Koster said. “My next step is to refine and prototype a more stripped-back version, and take that to GitHub for wider thoughts and feedback.”

\";s: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, 26 Aug 2022 15:13: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"Post Status: A Taxonomy of Access Control\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=106756\";s: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:52:\"https://poststatus.com/a-taxonomy-of-access-control/\";s: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:2978:\"

Bruce Schneier thinks this idea from Ittay Eyal is brilliant and broadly applicable. Since I like pretty much everything Bruce says (that I can understand) I tried to get my head around this and the discussion it spawned in Post Status Slack with Rowley and JJJ.

\n\n\n\n

Bruce\'s summary:

\n\n\n\n

The paper is about cryptocurrency wallet design, but the ideas are more general. Ittay points out that a key—or an account, or anything similar—can be in one of four states:

safe Only the user has access,
loss No one has access,
leak Both the user and the adversary have access, or
theft Only the adversary has access.

Once you know these states, you can assign probabilities of transitioning from one state to another (someone hacks your account and locks you out, you forgot your own password, etc.) and then build optimal security and reliability to deal with it. It’s a truly elegant way of conceptualizing the problem.

\n\n\n\n

I think of it more like this, since it\'s how most people actually operate:

\n\n\n\n
  • Secure: Only I have access (as far as I know)
    • Strong Secure: Proper strong, unique passwords, 2FA
    • Weak Secure: Weak, reused passwords, no 2FA (OK for trivial sites that require a login, bad for your bank account.)
  • Loss:/Lockout No one has access
  • Shared: I and designated others have access, which could easily become:
    • Leak: Undesignated, unknown others have access, which could easily become:
      • Theft/Breach: An adversary has access
        • Theft and Lockout: An adversary has access and may have broadly leaked or shared access with others, but I am locked out.
        • Theft and No Lockout: My account has been hacked but I can still get in.
\n\n\n\n

Avoid Sharing/Leaking with strong secure accounts, and the probability of theft/breach is much, much lower.

\n\n\n\n\n

This article was published at Post Status — the community for WordPress professionals.

\";s: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, 26 Aug 2022 14:42:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Do The Woo Community: Woo Stories, They are Everywhere\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=72682\";s: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:52:\"https://dothewoo.io/woo-stories-they-are-everywhere/\";s: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:383:\"

Every product or site WooCommerce builder has a story to tell whether they are a developer, designer or anything between.

\n

>> The post Woo Stories, They are Everywhere appeared first on Do the Woo - a WooCommerce Builder 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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 26 Aug 2022 10: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:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"Post Status: Post Status Excerpt (No. 66) — What Does It Mean To Contribute 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:32:\"https://poststatus.com/?p=106853\";s: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:68:\"https://poststatus.com/what-does-it-mean-to-contribute-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:58319:\"

How do we give back? We all want a community of creativity, cooperation, and contribution — how do we get there?

\n\n\n
\n\n\n\n

Estimated reading time: 3 minutes

\n
\n\n\n\n
\n\n\n\n

In this episode, Dan and Ny talk about WordPress and giving back. Giving, making, creating… Looking at the search results for “Make WordPress” and “the firehose” of Make WordPress Slack where the #docs channel was having their weekly meeting, Dan and Ny look at the wide range of options there are for new contributors.

\n\n\n\n

I would say you\'re contributing by learning. Like if you\'re, if you\'re learning in community, that\'s a step deeper in.

Dan Knauss
\n\n\n\n

Mentoring and organizing Meetups is a topic that comes up again. That\'s where Ny feels she has been given the most and most enjoys giving back. However, there are barriers to getting people engaged with the WordPress project — and to work for free.

\n\n\n\n

Dan asks what needs to be done to reach younger people. Ny talks about the barriers from a BIPOC perspective, where sensitivity to history and personal stories matters. Dan relates that to an inner city gardening project he volunteered with that had an all-white leadership team. If contributing is a privilege, how can we help elevate more people to that level of privilege?

\n\n\n\n

Also covered:

\n\n\n\n
  • How does the older open source culture of contribution (not) translate to the contemporary culture of the “creator economy?”
  • Dan\'s initial experience with trying to onboard himself in #docs.
\n\n\n\n\n\n\n\n
\n
\n

\"🙏\" Sponsor: Cloudways

\n\n\n\n

Cloudways is proud to sponsor Post Status. Our managed hosting for WordPress and WooCommerce takes away the cloud server-related learning curve with a seamless and scalable web hosting experience. Trusted by over 250,000 WordPress users, Cloudways gives you the freedom to choose from any of the top IaaS (infrastructure as a service) providers for ultimate performance.

\n
\n\n\n\n
\n\"Cloudways:Managed Cloud Hosting Simplified
\n
\n\n\n\n

\"🔗\" Mentioned in the Show

\n\n\n\n\n\n\n\n

\"👋\" Credits

\n\n\n\n\n\n\n\n

Every week Post Status Excerpt will bring you a conversation about important news and issues in the WordPress community and business ecosystem. \"🎙\"

You can listen to past episodes of The Excerpt, browse all our podcasts, and don’t forget to subscribe on Spotify, Amazon Music, Google Podcasts, iTunes, Castro, YouTube, Stitcher, Player.fm, Pocket Casts, Simplecast, or by RSS. \"🎧\"

\n\n\n\n

Transcript

\n\n\n\n

Dan Knauss: [00:00:00] Good morning Ny.

\n\n\n\n

Nyasha Green: Good morning, Dan. How are you?

\n\n\n\n

Dan Knauss: All right. It\'s an earlier one than, than we usually do, but that\'s good. Start the day. Um, yeah, so I thought we could, we could talk about, um, contribution and contributors and, and what that means in the, in the word. community where, um, I don\'t know, you, we probably both have about the same level of outside in kind of experience with it.

\n\n\n\n

So, um, I\'m not the expert or anything, but, um, mm-hmm, , I could tell you what my, my experience is and how I\'m, I\'m looking at that. And some of the discussions that are going on about what it, what contribution means or could mean. And, um, Yeah, how\'s that sound? What\'s what\'s yours? What is it? What comes to mind when, when you hear that word in the [00:01:00] WordPress context?

\n\n\n\n

Nyasha Green: Um, I guess, uh, the same it\'s, it\'s the same when I hear it in like, you know, outside in life contribution means giving back. It means helping, it means providing, um, and, uh, you know, it\'s the same in WordPress. So definitely down to talk about this today, and I\'m very interested to hear your thoughts.

\n\n\n\n

Dan Knauss: Yeah, it\'s I, I think it\'s, um, it\'s the core part of the, the project that is the oldest, um, feature of it.

\n\n\n\n

The oldest foundations of it, that\'s very, very open source, very old, um, old part of open. As Matt has said in, in some talks, like give a penny, take a penny kind of, kind of ethic. Um, really kind of going back, I guess, to like Linux and the seventies [00:02:00] and early and earlier generation. And I wonder sometimes if like after millennials or so if, if that\'s things have changed a lot and that\'s not.

\n\n\n\n

Understood. There\'s kind of a, a reciprocity there. You use the software, it\'s free. It\'s open. Um, how are, how can you, the more you get engaged with it as a user, as a developer, um, someone maybe profiting from it. How, how do you give back and does that, does that just happen naturally through the relationships that arise?

\n\n\n\n

Or not. And how do we move really? How do we move the, the project forward? And, um, I was just looking this morning. Like if you, if you, um, I was, I was just Googling make WordPress. So there\'s the whole make.wordpress.org, um, page where you get the list of all the core core teams and, um, [00:03:00] If you search for make WordPress, you get three ads.

\n\n\n\n

First, first for WP engines, WordPress page builder, wordpress.com WordPress page builder element, or for WordPress, create it with Elementor, um, the create and build language. So, uh, most people these days, um, and, and they\'re targeting what people wanna do. Uh, how do you just make something with WordPress?

\n\n\n\n

Create and build. But I\'m looking for the old school. How do I contribute back? Where, where the you\'re budding developer designer, just helping, like helping out. We\'re always looking for people to help make WordPress even better. Um, and there, what you can give back goes into all these teams that, uh, we now have a performance team.

\n\n\n\n

It hasn\'t changed a ton. It\'s, it\'s rare for them to add. So we got the core and that\'s really like the fundamental. Thing here, if we don\'t move word breast core [00:04:00] forward, how much does anything else matter? But there\'s so much else people can give and do that really is essential too. You don\'t don\'t want to deemphasize that design mobile mobile team is now been more explicitly defined as that\'s open source that.

\n\n\n\n

That\'s not, um, that\'s not something that is tied to jet pack or.com. And you, you wanna work on iOS and Android apps, Java objective C swift. Um, that\'s a, that\'s a whole nother section accessibility. Polyglots multilingual, uh, translation, WordPress support, uh, support forums. What,

\n\n\n\n

Nyasha Green: uh, what stands out to you the most out of all of those?

\n\n\n\n

What, what do you think? Like, not what\'s most important, but, um, cuz that\'s subjective. Um, which one would you be like most interested in contributing to? Yeah. Which one do you think speaks to you the most? When you read through the list? [00:05:00]

\n\n\n\n

Dan Knauss: Yeah. And I was, I was, I\'ve been thinking about that. So then there\'s documentation and that\'s where I\'ve been trying to kind of learn, figure out how to get in.

\n\n\n\n

And that\'s, that\'s kind of where it, it isn\'t that easy. It isn\'t that easy. maybe, you know, some people or if you have a deeper connection, but from that straight outside in it\'s it\'s tricky documentation, themes, plugins, community. Training test TV marketing, CLI WordPress CLI the VP CLI uh, hosting tide, open verse photos for performance.

\n\n\n\n

Um, there\'s really a lot of different skill sets that could be attractive. And a lot of things you could do, but to be honest, the, um, my, my experience is, um, I haven\'t really done like. Contribution in the form of little patches and bug reports and stuff since way back, like, you know, they\'re still using tra have you, do you have much SVN experience?

\n\n\n\n

that\'s what we were all using like 20 years [00:06:00] ago on source project. WordPress is still using. Um, so, so yeah, there\'s all these, all these different teams that are maybe attractive to different skill sets you may have or different people, um, May have, and, um, core is really at the center of it. And there\'s all, all these other things orbiting around that, um, or orbiting around the community and, and serving it or around mobile app.

\n\n\n\n

Um, and yeah, finding your way into it, I think is, is. Is the trick. Um, once someone gets interested in, in doing that and bringing, bringing new folks in and smoothing the onboarding, um, is probably, um, something we need to pay more attention to. It\'s tough. I, Brian mm-hmm Brian cords was, was writing about [00:07:00] that.

\n\n\n\n

Did he, um, So he, he talks about his experience. I\'m, I\'m kind of doing the same thing. Try, can I put in a few hours a week, I\'ve been trying to follow, just look at the docs program, you know, cause writing, editing that\'s mm-hmm, , that\'s probably the easiest thing for me. I\'ve I\'ve done little bug reports and patches and, and things before.

\n\n\n\n

And I go back a long way. So SVN or, you know, was something I was using way before GitHub existed get was a thing. Um, but it\'s, it\'s. It\'s quite amazed of, of things and a lot of customs and etiquettes and rituals, parts of the culture to, to understand, um, to get started. So I feel like there\'s like a long watching, reading, learning, asking questions, maybe getting mentored, um, phase you have to go through, um, have you taken a look at like the.

\n\n\n\n

Would make [00:08:00] WordPress slack at all.

\n\n\n\n

Nyasha Green: I have not. And I\'m going to be completely honest. Um, I will eventually, I am just in so many slack channels right now. I don\'t think I can. I don\'t think I can possibly take on that one. Um, I\'ve heard it\'s it\'s a lot. I, I just cannot do it. I\'m in like work slacks. I have like my mentoring slacks that I do official mentoring with.

\n\n\n\n

I have like slacks I was in before I, um, got. Um, tech and I still help people there. I just, uh, if I join one more, I think my head will explode. Yeah. But please enlighten me to what usually goes on

\n\n\n\n

Dan Knauss: here. Well, I\'m not an expert, I\'m trying to figure out the same as you and, and, and Brian and, um, yeah, I think the reality is, is yet they call it the fire hose for reason.

\n\n\n\n

It\'s, it\'s probably, one of the busiest slacks and consistently for so long, this major, um, Of [00:09:00] information and cooperation. Um, so it\'s daunting, it\'s intimidating to, um, to look at how to get into, um, but it there\'s there\'s method to the madness and what I\'ve learned, just kind of following along and looking at, at things in a, in a pretty traditional way.

\n\n\n\n

I, I assume the. Other teams work like this, but like docs. Um, we have a, um, a meeting every Tuesday morning at this time. So 8, 8, 8 am. I\'m kind of following, um, on my phone here and people kind of check in. I can make it, I can\'t make it. Um, melanic cap is, um, one, the leader there and one of the leaders and you\'d probably like her.

\n\n\n\n

She\'s a ump developer. Um, who\'s kind an advocate. For PHP as well. Who\'s been doing docs for a long time. So you developer literacy is really important if you\'re gonna write [00:10:00] docs and guides for, for things that directly deal with that. But there\'s so much else you don\'t have to be. You don\'t have to have any particular code depth.

\n\n\n\n

There\'s so much other documentation going on. Um, and that\'s probably starting to overlap some with the training materials that are another team. That\'s a. Newer thing that will help onboard people, I think, to have training and then also mentoring happening all these meetups that are relatively new, um, community.

\n\n\n\n

Yeah. Is that I\'m not sure what group that\'s what if that\'s happening under the community team? I think that\'s all that\'s under the training team. Mm-hmm uh,

\n\n\n\n

Nyasha Green: what the meetups,

\n\n\n\n

Dan Knauss: oh, that you\'re talking about. Yeah. They\'re make they\'re they\'re coming out of the core. So they\'re, there are, um, Hannah tab. For this somewhere.

\n\n\n\n

Um,

\n\n\n\n

Nyasha Green: Organizing the meetups, which is what I\'m doing in [00:11:00] Columbia, South Carolina. And I always say the city and not the state and Charlotte, North Carolina, mm-hmm um, falls more under community. We\'ve been all over there. Yeah. Trying to get things, uh, settled for it. Um, that\'s that\'s my area of export.

\n\n\n\n

Expertise, but it\'s still really, really hard. Um, , I I\'ve, I\'ve organized a lot of things and this might be the hardest honestly. And I don\'t know if, if it\'s, you know, because it\'s so specialized or what, but, um, still really excited. And I just I\'m, I just can\'t wait to, you know, have that set up as my contribution and like spread it.

\n\n\n\n

That\'s like my goal for it. Yeah. That

\n\n\n\n

would

\n\n\n\n

Dan Knauss: Def that would be under, under community. Um, Yeah, it\'s actually is I guess, something you could get into and start doing in your own, um, in your own city and a lot happens outside of slack, outside of, um, Outside of this, but that there\'s the community team. And mm-hmm

\n\n\n\n

I was, I was speaking of, um, the, the newer meetups that [00:12:00] are sponsored by learn, um, WordPress. So there\'s, there\'s probably some increasing overlap between community and training, which is a good thing. There, there are all these meetups that are happening as virtual. Um, there\'s a schedule, there\'s a calendar on here where people like, um, um, People who are directly involved in working on Gutenberg.

\n\n\n\n

Like, uh, Nick Diego, I saw I had had one coming up, um, uh, will be doing live workshops so you can go and get, get some knowledge from, from people who are directly working on, um, on newer parts of, of WordPress and. so some of that is higher, higher level stuff for, um, developers, designers, and some of it is oriented towards people who might be really new to using WordPress in different ways.

\n\n\n\n

So training\'s [00:13:00] close to mentoring and close to community building. So that\'s kind of a neat area where, um, where people can. Brought in and, um, connected. And I would say you\'re contributing by learning. Like if you\'re, if you\'re learning in community, , that\'s like step in mm-hmm um, for a lot of people, um, I noticed that, so we have this weekly thing that Daniel Chut Smith is doing, um, for us where he\'s rounding up.

\n\n\n\n

Um, What\'s going on and what\'s catching his eye, uh, design and development. And this, his last Roundup was mostly stuff coming from.org from make, create your first app with Gutenberg data. So using react. Um, so Adams Linsky put together a nice tutorial. That\'s showing you how to do that. That\'s a link to, um, developer, the developer section of word, wordpress.org.

\n\n\n\n

Block theme builders, Figma [00:14:00] of building a workflow from Figma Figma to your block theme. You\'re trying to create, that\'s a learn WordPress online workshop. So that\'s, that\'s one of these things I\'m talking about. That\'s a meet up. So, um, you can sign up and, and do that. There that\'s an intermediate level for an audience of builders.

\n\n\n\n

So people who may not be high, um, Deep into code, um, high level development stuff. That\'s okay. This is, um, working from Figma to your block template. Are you, are you doing anything, any front end stuff like that, or mostly have these database backend projects you\'re working on.

\n\n\n\n

Nyasha Green: I\'m doing everything. But, um, mostly right now I am working with the database.

\n\n\n\n

Um, mostly when I talk to my mentors and they want me to show them, like, I always get the question. Uh, can you show me what you do at work or a day in the life of you? Mm-hmm and, um, I don\'t show them my [00:15:00] calendar. I don\'t wanna scare them away, but, um, uh, usually it\'s front end work with them, um, because that\'s what, you know, they learn first and most are interested in, so.

\n\n\n\n

Surprisingly, I have not gotten away from front end work because that\'s the first thing that newbies wanna see. Oh yeah. How it works in WordPress. And I think, uh, WordPress is great for front end development. So that\'s my way of trying to get them into the community as well. So I throw in my community stuff like, Hey, you know, we\'re gonna have meet up soon.

\n\n\n\n

If you want to come and learn more about the community and that\'s my sales pitch. And that\'s how I, that\'s how I get. That\'s how I\'m getting people into the community.

\n\n\n\n

Dan Knauss: Yeah. It\'s great to see that there\'s so many levels like, yeah, we\'re gonna reach out to builders, to people who are totally new to it, to people are maybe doing freelance or agency work.

\n\n\n\n

Um, I was hinting earlier, like when you, if you search for this, like the way that, the way that a lot of companies, including, um, wordpress.com and automatic or. [00:16:00] Presenting WordPress to the world is to the creator economy and to, to people, I just wanna build something. I wanna start my business online. I, and, and their first thought is I don\'t not to understand anything about open source or that there\'s a community behind that or what, that, that, there\'s this, uh, culture of contribution and open source.

\n\n\n\n

That\'s a long, that\'s a long way up later. Mm-hmm and , I wrote something where I, I, I feel like, you know, we really have. Embrace that. And I see that happening on the marketing level, on the commercial side to a lot of WordPress companies. Um, and I, I even noticed like, as, as the.com, um, I, when they did their first price change, I got the bargain and I up upgraded my longstanding account.

\n\n\n\n

I have a.blog blog and a bunch of other sites there. And. Um, you can, there\'s the marketplace there. You can install and do a lot in.com. Now you can install Elementor I\'ve not seen that [00:17:00] before. So you could, you could pop that in on wordpress.com and start building with that if you want. And they\'re very oriented towards a, a builder, um, creator economy approach, but getting people inside is like the key thing.

\n\n\n\n

Like, however you come, however you come, come, as you are. I think like that needs to be more of. Our approach. And as cuz people aren\'t gonna, the average person, isn\'t gonna go to.org, the make thing there, and look at these core teams and, and, and go like, okay. Yeah. I, I see where I fit. Like I, you and I would, would struggle with that.

\n\n\n\n

Like it\'s gonna, it\'s gonna take weeks and, and months to probably get, um, to get comfortable. And that\'s, that\'s cool. That\'s fine. That\'s how you build relationships, but it\'s not. It\'s not like on the instant gratification level of, let me build my site today, which you wanna do as quickly as as you can. Um, [00:18:00]

\n\n\n\n

Nyasha Green: I think it\'s even, um, even for people like me who will sit down and take their time, um, when things are presented to them, It\'s so much to go through sometimes depending on what you want to do.

\n\n\n\n

And like you said, like it\'s not an easy thing to jump into. It\'s it\'s making that time too. I know, like for me right now, I get asked every week, like, how are you doing everything you do? And sometimes, I don\'t know, but, um, like. I think it\'s easier for me to still contribute because like, I, I didn\'t go into this.

\n\n\n\n

Like, Hey, I have to make myself fit to one of these. I went into this as, this is what I already do. This is something I\'m good at, how can I connect this with WordPress? So I think that\'s an easier way. And then like that allowed me to like, okay, I can make time to, you know, set this. I have a partner helping me.

\n\n\n\n

Um, Ken, yeah. Elliot is helping, um, well, he\'s the mastermind. I\'m helping him. Um, and, um, I think that\'s a easier way, but I agree with you a hundred percent. [00:19:00] Um, that\'s, you know, just when you were reading them off, I\'m like, this is a lot. And then when you get into them, it\'s like, you have to break it down and that\'s a lot.

\n\n\n\n

So I think if we have like more. I guess people like me or you cuz you did it too. When you talked about how, you know, you\'re a writer and documentation probably would be your strongest point and you\'ve done some of it before. I think people getting people like us to talk to people and say, well, this is how we did it.

\n\n\n\n

That would definitely help people a lot because it\'s a little overwhelming.

\n\n\n\n

Dan Knauss: Yeah. It, it is. And yeah. Well, if what I, what I found is that it\'s probably your own sense of, um, my own sense of in, in, uh, you don\'t want to be ask of the dumb question, but, or, you know, You have to put yourself out there. So they\'re very encouraging.

\n\n\n\n

Like who\'s got questions who needs help. You know, you, you, people will take the time and, and show you. And I\'ve, I\'ve got like an accumulated list of tabs and, and links where I need to, I need to take some time and watch this UN WordPress TV. Right. I need to read through this and figure it out. [00:20:00] I, um, a couple weeks ago, I, you know, figured out how they\'re using good Gutenberg on, um, GitHub, a little deeper and, and how to, um, How to submit, um, changes on, uh, there\'s there\'s documentation, that\'s written into code, uh, in WordPress.

\n\n\n\n

So, and sometimes it\'s wrong or, or changes. So you have to, you have to actually commit, um, changes to comments that are embedded in PHP code somewhere. Um, Things like that there\'s a wide range of, of stuff, but how all these workflows and things work and it just takes some time to, to learn. And it\'s, it\'s pretty satisfying once you figure it out and you are like, okay, I fixed, I fixed that.

\n\n\n\n

do this.

\n\n\n\n

Nyasha Green: Yeah, it definitely

\n\n\n\n

Dan Knauss: is. Yeah. And in the process you might find some more bugs or things and stuff like that to, to put in. Um, but just a little here and there is, is, um, is really a good thing. [00:21:00] Um, I, I. People on the whole are, are really welcoming. It is, it is just getting past that fire hose and here, here\'s what I need to forget all that other stuff.

\n\n\n\n

Here\'s what I need to focus on. And it\'s probably cool doing the meetups or mentoring, which, um, is gonna become more and more a part of the training and community. I, um, I don\'t have, I\'d like to get more details on this, but I, I see SFA has been, been saying things about mentoring as. Becoming a more explicit form of contribution, mentoring, how to do word camps and, and so on.

\n\n\n\n

And mm-hmm , and that they, there is probably some mentoring program coming down the line, along with training. So if you\'re doing, you want to go and do, um, a meetup, um, tutorial of some kind or do that in the context of your own meetups, totally contributing. And then I that\'s, that\'s probably accessible to a lot of people cuz most of the work is.

\n\n\n\n

Gonna be, I would assume relationships and [00:22:00] stuff like in your community. So you don\'t like, you don\'t start from slack, you don\'t start from, from all that. That\'s kind of where you go to maybe get support. And, um, the main, the main thing is really the people stuff. So if that\'s, that\'s what turns you on and, and motivates you?

\n\n\n\n

Um, yeah, that\'s totally essential contributing out there in. Real life relationships, um, locally where you\'re, you\'re starting. How\'s that going with? Um, Greenville and, um, or green wait, Greensboro.

\n\n\n\n

Nyasha Green: no, not Greenville. Um, not Greensboro. Um, I think you\'re, you\'re getting me nice or green mixed up with those I\'m I\'m joking. Um, so char Charlotte and Columbia. Okay. I don\'t know where Columbia .

\n\n\n\n

Dan Knauss: Go ahead. Sorry. I used Greenville in my head like Greenville, South Carolina, you know, I used to live [00:23:00] in Raleigh mm-hmm Durham, chapel hill area.

\n\n\n\n

Actually. I don\'t know if you know that area that well, Carrie and Carrie and table mm-hmm . Yeah. Um,

\n\n\n\n

Nyasha Green: yeah, I, I really love that area actually. Um, uh, you, uh, now there was a, uh, Greenville, uh, WordPress meetup for a long time. Um, and I think like a lot of people in Columbia, even though there was one in Columbia at one point, I think a lot of people in Columbia had to go to Greenville for that one.

\n\n\n\n

So you may be thinking about that. Cuz Greenville, I think had a longer, a one that lasted longer than ours. In Columbia. Um, but we\'re right now, if we were to start one in Columbia, to my knowledge, cuz I always check out Greenville, Columbia, Charleston, the big major cities, to my knowledge, we would be the only one in the state right now.

\n\n\n\n

I\'m gonna double check on that. But the last I checked a few months ago. Yeah, we would be the only one. So I. It definitely would help. And like, we really want to spread the knowledge because Columbia\'s in the, in the middle of the state. Right. That\'s why I chose Columbia, not just because I [00:24:00] was from there, but it\'s in the middle of the state.

\n\n\n\n

Mm-hmm, , we\'re an hour and a half to almost anywhere in the state, maybe two max. And so if people have to make that drive, which, you know, if they can, that\'s fine. If they can, we still wanna do it, uh, in a way that will. You know, semi virtual and recording recorded. So we\'re setting that up as well. Um, cuz we know South Carolina is very rural and we don\'t have great public transportation.

\n\n\n\n

So, um, it\'s really going to help a lot because it\'s going to reach all throughout our state, which is not known for tech at all, Charleston and Greenville, more Southern Columbia. So. It\'s going to help a lot and it\'s going really, really well. Um, we have a place, um, we have food, uh, so many different companies reached out to me because they saw what I was doing and wanted to help goad wants to feed us.

\n\n\n\n

You know, my company master WP wants to feed us and master WP is actually sponsoring our, um, sponsoring us and taking care of our venue. Um, we [00:25:00] have people offering to send us. Things to give out to newbies. Um, I have Courtney Robertson, which is, she\'s been such a great help who has just offered to give out so many learning materials.

\n\n\n\n

Yeah. Um, I ju just the outpouring of support and then we can take that and spread it. It\'s just been, it\'s been a community effort, so it definitely meetups are definitely community. I see why it\'s under that label and I\'m just so excited. Like I\'m going to like spam everyone\'s Twitter when. You know, get up and running and we have pictures and video and things like that because, um, I think, you know, I agree with Josepha Josepha is really, really great to talk to, and I love how she answers questions and it\'s always very transparent.

\n\n\n\n

And, um, it\'s, it\'s awesome that she\'s going to expand that because we can definitely take these materials and, you know, help with that and make sure people can do it in their states. Maybe their states don\'t have any work camp meetups or WordPress meetups.

\n\n\n\n

Dan Knauss: Yeah. Yeah. There\'s probably, uh, It\'d be interesting to look at a, a Pinboard, you know, [00:26:00] map of, you know, where we, where there\'s activity and yeah.

\n\n\n\n

Some are very established and been around a long time. Some come and go. The, I know the local Edmonton one. Um, yeah, pretty much ended just around the time I, I moved here. There\'s one in there\'s, one in Calgary. Um, and I\'ve talked with some people there about, about all that. Um, you know, it, it\'s a, it\'s a takes a lot to.

\n\n\n\n

To get things, uh, rolling again, but there\'s wherever you go, there\'s kind of an existing WordPress builder community. I, I, I sense there\'s a lot of people freelancing or, and there\'s a bunch of agencies and my, this was true even when, before WordPress was that adopted probably at that level. And I was doing more with, um, with June law and some other DRAL and other, other CMS, um, related things.

\n\n\n\n

That a lot of people just get in to scratch their rich and build something. And, and then they [00:27:00] start doing that as a job and maybe they develop an agency or something. And so there\'s, there\'s a bunch of people who are like an unorganized, the lump and proletariat of word press, who are like, uh, they\'re not organized into, um, into a, a regular meetup.

\n\n\n\n

Exactly. Um, but the potential is there mm-hmm , maybe it comes in and goes at at times, cuz there there\'re people who would fit the kind of WordPress professional or the line between the hazy line amateur and, and professional and doing this for myself and or which often turns into this is my job. Um, but it\'s, it\'s often secondary and I think that\'s an, that\'s been tough for the.

\n\n\n\n

The project. And I wonder if there\'s, if there\'s a, that\'s kind of where contributor language gets gets complicated. And I wonder if we should like focus more on creativity and creation and there\'s all these people who are sort of [00:28:00] on the outer edges, who, who are very versed, inward press or using it in some significant way, but they haven\'t really connected deeper.

\n\n\n\n

Into the community. And they\'re definitely contributing in the sense of, um, teaching and informing and expanding the market and expanding the brand, but, um, how they find their way into. These other, um, layers of the onion towards core contribution. Um, it\'s, it\'s tough cause you don\'t wanna make it sound like, well, what you\'re doing isn\'t worth as much mm-hmm um, cause it it\'s as they\'re all different, but to drive things forward, you do need people to come in who get more of that kinda leadership level to organize, meet up.

\n\n\n\n

Mentor people, um, submit patches, um, get involved in, [00:29:00] in actual software development, which yeah. Is hard not to, not to privilege. Cause that\'s really a key, that\'s what we\'re all using. That\'s what either falls behind or, or innovates and yeah. What do, what do you think about that? Do you, are you think there\'s ways in our language that can be kind of offputting?

\n\n\n\n

Sometimes it\'s like this inner circle of, of people who give back and are. Are you adequate is it can maybe be an easy feeling of, uh, of inadequacy or imposter syndrome that\'s RI and, and things, and, and that language can kinda land heavily on, on you.

\n\n\n\n

Nyasha Green: Oh, yeah, definitely. Um, especially, you know, that\'s something that goes beyond tech, but, um, when we\'re talking specifically about us right here. Yeah. That can be off putting you. You have to think. Um, I do a lot of community service. because that\'s just how I am. That\'s just how I was raised. That\'s just me as a person, but I\'m smart enough also to acknowledge [00:30:00] it\'s tough to get people to work for free.

\n\n\n\n

Yeah, it\'s tough. Um, that\'s something that\'s drilled that was drilled into my head from, um, From a young age. And we talked a little bit about that on one of our other podcasts, like how American slavery, like is affecting people to this day. And it\'s like, there\'s no way anybody in my family from the oldest members, my great aunts to the youngest, my little baby niece, none of them would just sit and smile.

\n\n\n\n

If I told them I was working, doing anything for free outside of C. Help. So , and it\'s like, it doesn\'t even have to be that deep for a lot of people. People are just not working for free mm-hmm, , we\'re in a very capitalist society. Um, we, things cost money. You know, things are high right now. Um, but again, not even getting that deep, it\'s just hard for some people to just work for free.

\n\n\n\n

And also for people who want to do it time. Time is such a big constraint. So you may have people that are out there. They\'re like, I wanna do this. Yeah. But I [00:31:00] don\'t know how I wanna do this. And I don\'t have the time. And now these people are telling me that I\'m not enough. If I\'m not doing this, man, I\'m not doing it.

\n\n\n\n

So, you know, I, I see how it can lead there. Um, I, I, I definitely see that. Um, sometimes, you know, I, I it\'s, it, it is, it does seem like that at times, but it\'s just going to depend on you as a person, like stuff like that. Won\'t bother me personally, because if I can\'t do something, I can\'t do it. Yeah. I don\'t have the time.

\n\n\n\n

I don\'t have the time, but I, I get it. I definitely get it. Um, I, I\'m not sure though how. I\'m not sure how to pull people in, who may be feeling that like it, they may have that imposter syndrome now. Um, is there just like extra reassurance? What do you think? What, what do you think could be clarified in the language to get those, to, to kind of pull those people back?

\n\n\n\n

I, I think that

\n\n\n\n

Dan Knauss: the more channels, the more way, ways in the, the better off you are, if it, I feel like in the past, it\'s [00:32:00] like, that\'s the only thing, like.org make page. You either figure out how to get into a team here, you hit the support forum. You, you, you find you come in through some local group. Um, there are only a couple, couple ways to do it and it, uh, it is all in this open source contribution code, committing focus, and that\'s become less and less.

\n\n\n\n

I think that was alwa that\'s always, always been a subculture and it\'s become probably more and more of one. um, I think younger generations too, are in a totally different space in because it\'s social, um, realities, like, I don\'t know how much we\'ve really addressed that. I mean, there are long term prolonged economic contraction.

\n\n\n\n

Um, not everyone\'s doing that. Mm-hmm well, emotionally. With stable income and employment. Mm-hmm [00:33:00] you can\'t assume stuff like that there, it we\'ve been through the most stressful. Yeah. I, I don\'t know if we\'re really through it, you know, like you turn on the news and it people all around the world. And even in, in places that are, are fairly affluent it\'s, there\'s a lot, there\'s a lot more stress and tension in, in life.

\n\n\n\n

And people have lost, uh, friends and loved ones either, you know? They\'re no longer living. Um, that happens normally, but we just pandemic. Um, there\'s but there\'s so many, especially as you have a community to ages and, and goes along. I, I think a lot of us who\'ve been in there a long time. Um, there\'s time of life things.

\n\n\n\n

It\'s, I, it would be more sensitive to that all. And, and what you\'re saying too about. there\'s cultural and, and definitely racial differences that I think are hard to see from the outside. You\'re making me think of, um, mm-hmm, how the, a [00:34:00] good metaphor for this is when I, one of the things I did, I did a ton of, I lived in a part of Milwaukee that was, um, and otherwise it\'s very second.

\n\n\n\n

Maybe people would say an apartheid city that has some. Entrenched in difficult problems and living in one of really the only area that\'s, that\'s fairly mixed and, and diverse is volunteerism is a key thing there. And it\'s tough. People don\'t have necessarily have a bunch, but there\'s this huge. They don\'t necessarily have the means or whatever, but they.

\n\n\n\n

There\'s just such a drive to do community projects together and fix stuff. And gardening became more and more community gardens and stuff like that. Victory gardens. Yeah. Well, when I first started doing that, I was, um, I was doing it with, uh, uh, a church that had an interesting history. And so we had mostly African American kids coming to the summer program and, and trying to make a.[00:35:00]

\n\n\n\n

Lots of vacant lots where stuff has been torn down or burned down over the years and in my neighborhood there. And, um, trying to build a, make a garden and, um, this same, it, it it\'s, it wasn\'t so much the work for free, cuz we, it was all hitched up to, um, You you come and you work on this, you get paid a certain kind of gift allowance.

\n\n\n\n

And then we like try to explain banking and like walk down the street to the, the local bank on Martin Luther king drive. And like, this is how money works and like save a little. And , uh, give a little back and, and think about what your long term plans are for what you want to get. It was, it was honestly very white, middle class kind of skiing.

\n\n\n\n

very good in very good intentions, but the first barrier is, um, these are kids who have like zero, um, [00:36:00] there in that area. Um, Their, their experience is all urban for, um, probably one or two generations. But before that down the Mississippi deep south, not a good agricultural experience share, you know, share cropping, you know, extended forms of Neo slavery.

\n\n\n\n

Uh, you know, until grandparents, parents came up in the fifties, forties, fifties, and got the last of the good industrial jobs before that all went, went in part. Um, so, mm. I realized and read some things. Um, I never read something. I can\'t remember who it was, but there was a, there was a local guy and then someone else rare, uh, voices of African Americans who got on the land and were farming got, you know, as free farmers.

\n\n\n\n

Some people came all the way up here in Alberta and did that Canada. And it\'s not the typical voice. And they talked about how hard it is to do. [00:37:00] Things like with the land, from an African American perspective, cuz there\'s such an alienation from it some of the time. And so these kids, oh yeah, they would not wear, like they didn\'t have grungy clothes.

\n\n\n\n

They would wear like their best white brand new shoes. Like, you know, they didn\'t want to get messed up. It was really hard to get people like, get your hands down in, in this. And then like, remember kids would say like, you all look like a bunch of slaves. Like this is a huge barrier. Here cuz there\'s not an ability to imagine us working and doing this free labor in any other way.

\n\n\n\n

And like who\'s in charge, the white guys like, like, yeah, it totally looks, it totally looks that way. So,

\n\n\n\n

Nyasha Green: um, yeah. Yeah. It that\'s a good, that is a good way to put that. Sorry, that that

\n\n\n\n

Dan Knauss: really story. Cause you can express that in a way that is accusatory. and make, you know, make us feel really bad, but, um, but it\'s totally valid and, and [00:38:00] there was a disconnect.

\n\n\n\n

And the only way I found around that was like individual relationships and getting like over a couple years and getting to know some of these kids is they were growing up and like they in doing other things with them, like I found a, a bunch of the young men, um, like they never went over to east side.

\n\n\n\n

That\'s dangerous. You can\'t go over there and there\'s nothing there that we would be interested in and, you know, broadening people\'s sense of their own freedom and capacity. Yeah, you actually, we can go over here. There\'s some cool stuff and food you like and, um, people who, uh, are friendly. So it, I think that kind of everyone does that everyone has their little comfort zone that probably needs to be expand.

\n\n\n\n

But at the same time, those walls exist, cuz people have been hurt or they\'ve, um, or there\'s something in their history where they see this as a wall that is defended and is dangerous to push [00:39:00] or they, they sense on some level like this is gonna, um, this isn\'t what I should, this isn\'t for me, this isn\'t my people.

\n\n\n\n

That\'s just huge that\'s people stuff. We have to find, find ways to make many ways through and in. Um, cuz if you keep trying something that doesn\'t work, that turns people off, it doesn\'t matter how right. You think you are.

\n\n\n\n

Nyasha Green: Oh yeah, you\'re right on the money with that. And. just relating that back to WordPress. Imagine those kids that you were, uh, you know, trying to get to do that with. And they\'re like, God, like not saying, this is their attitude, but say they walked away with that saying mm-hmm they were trying to get us to do free labor.

\n\n\n\n

They were trying to get us do free work. That\'s crazy. And then they. um, they, you know, they get older and they learn code and they learn tech. And they\'ve heard that tech is just this, this freedom and it\'s this place to make money. And it\'s just like, you can elevate, I can elevate my life and they get to tech.

\n\n\n\n

And the first thing they see is people saying, Hey, if you wanna be a [00:40:00] great person in this community, you need to do some free work. They all like what? Like they might freak out like what in the world? Why is everybody want me to do free, free labor and, um, that\'s, you know, that\'s just relating that back.

\n\n\n\n

It\'s it\'s sometimes that\'s. A red flag to people. It\'s definitely a red flag to me. Um, because also people are still exploiting people of color women. Um, people who are disabled, they are still getting exploited for low wages or free labor to this day. So that\'s still something we have to look out for.

\n\n\n\n

I\'ve been asked to do free labor many times, and I\'ve had to politely tell people like, no, I\'m not doing that. Or, you know, and depending on. What the situation is, maybe talk to others, like what\'s going on. Like I have to teach my mentors not to accept like, well, this job, they really gonna gimme the experience.

\n\n\n\n

They said, okay, me an exposure and experience. And then one day I\'ll be a big developer. No. Do not let people do that to you. That\'s like, I, I always tell people like, no, [00:41:00] you, you deserve to be paid. Now you deserve to be paid fair and adequately. So we don\'t have to go back too far. It\'s happening today. Um, so of course people are calling it out more and people are looking at it as a red flag.

\n\n\n\n

I hate that people see it as a red flag in WordPress. Uh, some people. Inmate WordPress and giving back. And then I hate that some people just, you know, don\'t have the time and they\'re turned off by, you know, phrasing about it because it\'s, it\'s a privilege to have free time. Honestly, these days, isn\'t it, it\'s a privilege to be able to give back.

\n\n\n\n

And that\'s something I never forget. And that\'s, that\'s something I always tell people as well, like, you know, you don\'t have to. You don\'t have to thank me. Like people are always like, oh, thank you for this like that. I don\'t, you know, you don\'t have to thank me. I, I acknowledge that, you know, it\'s just a privilege for me to be able to do this for you and that throws some people off, but Hey, it knows what it is, but we, I don\'t know how to bridge that.

\n\n\n\n

Especially as a, as a woman of color, who\'s been asked to do free things as a woman, as a woman of color, as a [00:42:00] person of color. I get it. I get it. I definitely

\n\n\n\n

Dan Knauss: get. I, I, I was really glad when I, I think it was Josepha my first contact with hearing someone say that it\'s a privilege to contribute. Um, and I hadn\'t really thought about that.

\n\n\n\n

Um, that does that\'s good language, I think, because it, it gives honor to that role and that capacity, but it also understands that that might not be. An individual is at, at that time, then I think you have to extend yourself and go further and, and look at who is underprivileged or who lacks these privileges and how can we raise them up?

\n\n\n\n

How can we open doors? Um, and that that\'s, what\'s cool about the mentoring and, and the community stuff. Cause I think that\'s, that\'s what it does, you know, get it will help. It will help. There are other ways to, to give back and. [00:43:00] And it\'s, it can take years it\'s years of relationships and, and growth where, um, that that\'s what\'s needed to happen.

\n\n\n\n

And you can\'t, you can\'t what we\'re saying here. You can\'t just treat people like cogs. Like they\'re not all in the same category. They\'re not the same time of life and they\'re not the same people. And when you really know, get to know them, um, they\'ve unique gifts and capacities and what they\'re okay.

\n\n\n\n

Okay. With doing. um, at the moment and it\'s okay for everyone to say, and they, they, they need to, like, I need to, I need to step back. I need, um, I think we\'ve been, there\'s been so much more, um, recognition of that. Um, mm-hmm , uh, someone was tweeting the other day of like, they\'re just too much coming at. \'em too much stress.

\n\n\n\n

They\'re gonna, they\'re gonna give their, um, word camp ticket to someone else. And. Step back from going there. And, um, and a lot of people are [00:44:00] really supportive of that. Like, yeah, it\'s tough. Uh, tough call maybe, but, um, it\'s okay to it\'s okay to say, you know, I I\'ve hit my limit here. Um, mm-hmm .

\n\n\n\n

Nyasha Green: That. Yeah, I think so.

\n\n\n\n

I\'m gonna backtrack. I think that that\'s a great way. That would be a, a big help to helping people letting them know it\'s okay. That needs to be more clear if you can\'t do this right now. It\'s okay. Like you said, like, you know, Joseph said it\'s a privilege and you know, letting these people know, like, um, that doesn\'t mean you\'re not privileged if you can\'t do.

\n\n\n\n

You know, that\'s just not your time and that\'s, and that\'s completely okay. Right. And I, I like that. I like that a lot. And I, I really like that. I think also another big thing. We need to get people to see the value mm-hmm and giving back. Because again, like what\'s the value. If I can\'t make money, if I have to like take time out of my life where I\'m missing with my family or my friends, what\'s the, what value do I have to, some people like, just knowing it\'s going to [00:45:00] improve the life of someone else is not enough.

\n\n\n\n

it\'s okay though. It\'s okay. Um, but how do we get people to see the value in this? I think community seeing people like me, who, you know, I could not, I could stop giving back tomorrow and be okay and go do other things with my life. But I don\'t wanna do that. I like giving back. It\'s valuable to. . I have a lot of things I value about giving back, especially in this community.

\n\n\n\n

And if I stand up there and I talk about it and I tell people and I give to them, honestly, I think that\'s the number one thing I\'ve seen in my life that makes other people wanna give. If they can see the value that other people are getting, that isn\'t tangible, nobody\'s handing me money to do any of this.

\n\n\n\n

so I think being a, a beacon of that helps, and I think I wish we had more people, but it\'s, it\'s hard if you\'re, if you\'re doing all of this and you\'re giving your time away, it\'s hard to be like, you know, the poster job for that as well. Um, right. We a lot of people have families. I don\'t know what I would do if I had children.

\n\n\n\n

I think I would probably just [00:46:00] scrap \'em to my chest. One of those little baby vests. I like those. Yeah. I used to do that in front of you. Yeah. Oh, I love those. I would just scrap \'em to my chest and like, I guess we

\n\n\n\n

Dan Knauss: around and talk. I\'m glad to be through that kind of, um, yeah, my, my younger two daughters are, um, on finishing high school now, so it\'s pretty.

\n\n\n\n

It\'s on their own, but, uh, yeah, that was, that was tough. That was interesting. I was the home parent. Um, and at one point, yeah, they were like, mm-hmm um, four girls they were mostly there with me and yeah, the two close together. Um, yeah. It\'s uh, well freelancing and doing neighborhood projects. It, it was, um, it was a lot and yeah.

\n\n\n\n

And mm-hmm it makes you, it makes you sensitive. the fact that you need to, you need to understand people in their context and so that, like you don\'t mm-hmm so you can kind of help on your end too. You don\'t ask too much or that, you know, you know, how to, [00:47:00] how to phrase, um, you know what they\'re, they\'re just some conditions like you understand like, oh, this is, isn\'t a good, this isn\'t a good time or a good person to, to ask to, to help with this.

\n\n\n\n

Or. Or maybe they need, you know, just knowing what the needs are and where you can be supportive to. Um, yeah, just the, the more you get deeper into individual relationships, I think the stronger and more, um, sensitive like community is the, like those go together, the strong and sensitive . Cause you\'re, you\'re aware of each other as individuals and, um, that holds things nice.

\n\n\n\n

Yeah, that made me, I was one. The last thing I, I was thinking while you were saying that there, there are so many, I think there are so many things people do or don\'t do that. Some things need to not be done. that, that contribute so [00:48:00] much. And we know it and, and sometimes it there\'s other forms of recognition that are important.

\n\n\n\n

Like yeah. If the, if WordPress cord doesn\'t move forward, everything else fails. And there\'s like, there\'s a level. um, mm-hmm of focus and need on that, that that is is unique, but then there\'s stuff that\'s farfield from maybe any, any teams that is so important in the ecosystem. And, um, uh, a guy, everyone I think has nothing but prays for it.

\n\n\n\n

Kevin O Hashi who, um, who like Kevin O Hashi, who does the, um, uh, WordPress benchmarks? WooCommerce too. Have you ever looked at those? Uh, there\'s kind of neutral third party deep, um, uh, analysis each year of, um, performance on load testing and, and a bunch of other stuff of, of hosts. Who, who, um, partner with them who say like, yeah, here here\'s our, here\'s a free account [00:49:00] and all of our tiers test them.

\n\n\n\n

Um, never go through those and, and see.

\n\n\n\n

Nyasha Green: I have, um, I have, did I do last year? I have, I have, I I\'m like, I\'m just going back in my mind, but I have, and I think that is really, really, really awesome. That does that. I\'m so sorry. I hear

\n\n\n\n

Dan Knauss: from people a lot about, about that. Like that\'s a, that\'s a major service because there there\'s a lot of data poverty in the WordPress ecosystem.

\n\n\n\n

If your plugin isn\'t in the re.org repo, like what do we know? What, what, what do you, what do we know about that whole, um, part of the market? And if you are in it, it\'s very limited. What, what data you get out, um, hosting, you know, going way back has always been. A pretty murky place for are these real reviews?

\n\n\n\n

No, Jen . Oh man. So this is like the [00:50:00] one he\'s got the one, um, the one shining beacon of reliable, trustworthy stuff. And as, uh, And he, the contribution is largely in what he doesn\'t do, which is take money or sponsors in. Um, I, I forget what is, what the, what the revenue model there is, but this is, this is one guy.

\n\n\n\n

Um, this isn\'t some growth oper organization. Um, it, those are really difficult things. The things we need to subsidize or help that, um, are. Kind of have a regulatory effect that help protect the space and the commons, um, because they don\'t aim at massive growth and they aim at a giving you a really honest signal on, um, you know, how are, how are these hosts doing one, one compared to another, what do you get for this, [00:51:00] this price point?

\n\n\n\n

And. They, um, it\'s good for them. They, they know where they stand and how they\'re, how they\'re doing. I\'m sure they have their own data, but it\'s a huge incentive to, um, to compete where we want them to . Um, there\'s a lot, there\'s a lot of different things like that. There\'s just certain personalities who give back a ton on, um, social media or in, um, their willingness to, to teach others.

\n\n\n\n

Um, but. Yeah, I don\'t know. Do we recognize that openly enough? Um, and I think people doing stuff for the love of it is a huge privilege and it really, it is really is gratifying when people say thank you. So, um, we should do that more and thank you for starting meetups. Interesting. coming on this, on this podcast and, and being a, um, a unique voice in the, in the C.[00:52:00]

\n\n\n\n

Nyasha Green: Uh, you\'re so welcome. Thank you, Dan, for having me on here and agreeing to do a

\n\n\n\n

Dan Knauss: no, I didn\'t agree to that. depends on what it is, but yeah, I\'m looking, looking forward to meeting all there.

\n\n\n\n

I, you picked the song. We\'ll see. I don\'t know. It\'s pens. Who\'s watching.

\n\n\n\n

Nyasha Green: I\'ll give you a list. I\'ll give you a.

\n\n\n\n

Dan Knauss: God love. Uh, yeah. I don\'t know nothing by Madonna. I remember bad memories of a friend at a, um, student union at Marquette university who, uh, crazy guy. I don\'t think he had even been drinking, but he did, um, Papa don\'t preach and acted it out.

\n\n\n\n

Oh, he ended up playing down on a table or something and yeah. Yeah. He was having a, having his baby. Um,

\n\n\n\n

Nyasha Green: oh, now I gotta do [00:53:00] Madonna. I gotta show him up. okay. No Madonna just make me a list of no, the nose. No Madonna. Okay. I have that. I\'ll

\n\n\n\n

Dan Knauss: write that down. probably, and Tom waits. I love Madonna. Tom waits. Some.

\n\n\n\n

Nyasha Green: It\'s not really singing. Oh, okay. Okay. Okay. yeah. We\'re yeah, you\'re gonna let me, uh, do, yeah.

\n\n\n\n

Dan Knauss: Right. So, all right. You take care. all right. Thanks.

\n

This article was published at Post Status — the community for WordPress professionals.

\";s: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, 26 Aug 2022 05:51:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Olivia Bisset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"Post Status: Two Big Tweets on Ways to Give Back\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=106861\";s: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:55:\"https://poststatus.com/big-tweets-on-ways-to-give-back/\";s: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:2600:\"

1) We\'re really looking forward to seeing this WordPress mentorship program launch — and maybe some of the planning? In a recent episode of The Excerpt, Nyasha Green talks about the importance of mentorship to her growth as a developer and entry into WordPress.

\n\n\n\n
\n

There are some plans for a mentorship program coming before the end of the year.

— Josepha Haden Chomphosy (@JosephaHaden) August 18, 2022
\n
\n\n\n\n

Drupal does have a lot of good models to learn from — Amy June Hineline recently talked with David Bisset about their local development tools for their equivalent of Contributor Days.

\n\n\n\n

2) This is a neat way to support someone doing volunteer work you value — Thank With Google.

\n\n\n\n
\n

During today\'s @TheTorqueMag livestream, @felixarntz dropped an exciting bit of news about a new Google product called \"Thank With Google\". Similar to Ko-fi, Thank enables easy payment/donation options for content creators via a #WordPress plugin. https://t.co/LgT9PAY2yC

— DoctorPopular.RSS (@DocPop) August 24, 2022
\n
\n\n\n\n

Steve Burge digs deeper at KinshiPress.

\n

This article was published at Post Status — the community for WordPress professionals.

\";s: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, 26 Aug 2022 00:35:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Post Status: Is this a WordPress Acquisition?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=106830\";s: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:55:\"https://poststatus.com/is-this-a-wordpress-acquisition/\";s: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:7123:\"

DigitalOcean buys Cloudways for $350 million in cash

\n\n\n\n
\n

DigitalOcean\'s acquisition of Cloudways is an investment in the WordPress ecosystem with an emphasis on “digital agencies, eCommerce sites, bloggers, freelance developers and builders hosting on WordPress.”

\n\n\n
\n\n\n\n

Estimated reading time: 3 minutes

\n
\n\n\n\n
\n
\n\n\n\n

“Is this a WordPress acquisition?”

\n\n\n\n

That question led to some discussion in Post Status Slack this week. The consensus was “yes it is,” although we’ve certainly included many WordPress-adjacent or partnered companies on our (updated) Acquisitions page. The number-filled announcement to investors and infographic from DigitalOcean make it clear they know they are buying (or rather getting deeper) into the WordPress ecosystem by acquiring Cloudways:

\n\n\n\n

“The acquisition of Cloudways expands DigitalOcean’s serviceable market within global SMBs and increases options for digital agencies, eCommerce sites, bloggers, freelance developers and builders hosting on WordPress, PHP and Magento. WordPress is the most popular content management system (CMS) and, according to W3Techs, it powers 43% of all websites on the internet.”

“DigitalOcean to Acquire Cloudways” • bold text added for emphasis
\n\n\n\n

DigitalOcean is embracing its role as a WordPress host and pivoting to define its market as, well, us. The bold text above highlights a large part of our membership and the WordPress community.

\n\n\n\n

Key Takeaways:

\n\n\n\n
  • Big emphasis on SMBs. DigitalOcean sees itself expanding to gain small-to-mid-sized businesses (SMBs) in its customer demographic, and acquiring Cloudways with its WordPress and other open source eCommerce customers achieves that.
  • Cloudways fills a big gap. There’s no easy button within DigitalOcean itself for setting up a WordPress site or anything else, but their 1-click apps are the latest progression toward something like that. It’s just not likely to appeal to most people in the low-end market in its current state. DigitalOcean marketing is still locked onto startups and developers too. I imagine all this will change if Cloudways is brought in as a SMB customer-facing easy-button.
  • New Competition. Focusing on less-technical end users and the people who build their sites will put DigitalOcean in direct competition with other WordPress-focused Infrastructure-as-a-Service (IaaS) providers or hosting panel middleware like ServerPilot — which only works with DigitalOcean — and SpinupWP. Even more so than Cloudways, SpinupWP is host-agnostic — any server with a public IP and (currently) Ubuntu 20.04 or 22.04 will work with SpinupWP.
  • Will DigitalOcean drop Cloudways’ support for competitors? In addition to DigitalOcean, Cloudways can be used with Google, AWS, Vultr, and Linode. Many of us wonder if that flexibility might go away now. If it does, that’s a wasted opportunity. Post Status Member Kevin Ohashi optimistically (and I hope rightly) opined nothing will be changed: “If the customer isn\'t going to choose you, might as well still make money off them.”
  • The terms “Build” and “Builder” are a large part of DigitalOcean’s messaging about the acquisition. In fact, the company’s mission is defined this way, in the context of the acquisition news release: “DigitalOcean simplifies cloud computing so builders can spend more time creating software that changes the world.” This sounds a lot like WordPress’s mission updated for the era of (increasingly low/no-code) website builders (the software and the people). It’s also rather different from DigitalOcean’s main public-facing messaging which is still focused on startups and developers.
\n\n\n\n

Some interesting numbers from DigitalOcean:

\n\n\n\n
  • DigitalOcean and Cloudways have been close partners since 2014.
  • Cloudways has approximately 50% of its customers on DigitalOcean servers.
  • This acquisition increases DigitalOcean’s high spend customers by 18%. They will come away from the deal with a total of 124,000+ (new plus existing) customers paying $50+ per month, which is 84% of DigitalOcean’s total revenue. ($6.2M/mo. * 12 = $74.4M/yr.)
  • Cloudways is projected to contribute between $13 and $15 million of revenue to DigitalOcean’s bottom line in the remaining months of FY2022 after the deal closes in September.
  • The acquisition of Cloudways will expand DigitalOcean’s global employee base by 30%. A good deal of those jobs are in Pakistan, and the sale represents the “Pakistan tech sector\'s largest exit to date,” according to Jawwad Farid. (Thanks to Rae Morey at The Repository for picking up on this.)
\n

This article was published at Post Status — the community for WordPress professionals.

\";s: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, 25 Aug 2022 19:53: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:10:\"Dan Knauss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Tue, 13 Sep 2022 02:50:29 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Tue, 13 Sep 2022 02:45:36 GMT\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:9:\"HIT ord 2\";s:16:\"content-encoding\";s:4:\"gzip\";}}s:5:\"build\";s:14:\"20220104144308\";}','no'),(682725,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1663080630','no'),(682726,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1663037430','no'),(682727,'_transient_timeout_feed_e0061ca2fa5b884e483872aa34d3e7eb','1663080631','no'),(682728,'_transient_feed_e0061ca2fa5b884e483872aa34d3e7eb','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:49:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"UpdraftPlus\";s: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:24:\"https://updraftplus.com/\";s: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:77:\"WordPress\'s leading backup plugin - backup, restore and clone WordPress sites\";s: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, 07 Sep 2022 14:07: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: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:30:\"https://wordpress.org/?v=5.9.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:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:73:\"\n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"UpdraftPlus Marks Anniversary of All-in-One Security Acquisition with Major 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:108:\"https://updraftplus.com/updraftplus-marks-anniversary-of-all-in-one-security-acquisition-with-major-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://updraftplus.com/updraftplus-marks-anniversary-of-all-in-one-security-acquisition-with-major-release/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 07 Sep 2022 10:17: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s: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://updraftplus.com/?p=1550192\";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:882:\"

AIOS 5.0 is the first major release of ‘All-in-One Security’, since the popular WordPress Plugin was acquired by UpdraftPlus in August 2021.  Joe Miles, Director at UpdraftPlus said: “We’re thrilled to build on the good work already done with All-In-One … Continue reading

\n

The post UpdraftPlus Marks Anniversary of All-in-One Security Acquisition with Major Release appeared first on UpdraftPlus. UpdraftPlus - Backup, restore and migration plugin for WordPress.

\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Shane Gurney\";s: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:10584:\"

AIOS 5.0 is the first major release of ‘All-in-One Security’, since the popular WordPress Plugin was acquired by UpdraftPlus in August 2021. 

\n

Joe Miles, Director at UpdraftPlus said:

\n

“We’re thrilled to build on the good work already done with All-In-One Security (AIOS), the only five-star rated WordPress security plugin with more than 1 million active installs. Release 5.0 brings significant new features, tweaks and fixes to our loyal customer base.”

\n

AIOS 5.0 includes the launch of a new PHP firewall. 

\n

Previous versions used .htaccess files to provide firewall rules. This new release extends AIOS server compatibility beyond apache based servers. 

\n

AIOS also includes the addition of Two-Factor Authentication (TFA). TFA supports TOTP + HOTP protocols and so supports Google Authenticator, Authy and various other authentication tools.

\n

The UpdraftPlus team is also working on an AIOS Premium product which will bring active scanning for downtime and malware as well as response time monitoring, advanced two factor authentication, country blocking, smart 404 blocking and premium support at a competitive price point.

\n

Looking to install the all new AIOS? Visit: https://en-gb.wordpress.org/plugins/all-in-one-wp-security-and-firewall/

\n

The full change log for AIOS 5.0 log is included below 

\n
    \n
  • FEATURE: Two-Factor Authentication (TFA) functionality & related settings.
  • \n
  • FEATURE: Set up a mechanism to load the firewall PHP file early.
  • \n
  • FEATURE: PHP firewall rule engine.
  • \n
  • FEATURE: Add WHOIS lookup functionality.
  • \n
  • FEATURE: Implement 6G firewall rules in the new PHP-based firewall.
  • \n
  • FEATURE: Disable WordPress application passwords.
  • \n
  • FEATURE: Remove the plugin’s tables and options when uninstalling the plugin according to configuration settings.
  • \n
  • FEATURE: Trash spam comments after n number of days as per configuration set in Admin Dashboard > WP Security > SPAM Prevention > the “Comment SPAM” tab > the  “Comment Processing” section > the “Trash Comments After” settings.
  • \n
  • FEATURE: Brute force Cookie-based Firewall Protection based on the PHP code instead of htaccess rules so that it also works with Nginx, IIS etc servers.
  • \n
  • FEATURE: Allow multiple email addresses for the User Login > Notify By Email setting.
  • \n
  • FEATURE: IPv6 range support in CIDR Format enabled.
  • \n
  • FIX: The WooCommerce customer was redirected to the wp-login page after payment with an external payment gateway if forced logout configured after a specific number of minutes.
  • \n
  • FIX: If the WordPress language was set to something other than English, then auto-update core, plugin, and theme emails sent in English instead of the configured language.
  • \n
  • FIX: Database error for multisite when creating a new site solved.
  • \n
  • FIX: Captcha options should not be autoloaded.
  • \n
  • FIX: Database error for multisite cronjob column name.
  • \n
  • FIX: The plugin clogs up the database with lots of rows. Delete old data after 90 days.
  • \n
  • FIX: Rename Login issue with wp plugin list command solved.
  • \n
  • FIX: Rename Login breaks logout functionality if WP_HOME is set to a different URL than the WordPress core files URL.
  • \n
  • FIX: PHP Fatal error:  Uncaught Error: Class ‘AIOWPSecurity_Admin_Init’ not found in html/wp-content/plugins/all-in-one-wp-security-and-firewall/wp-security-core.php:366.
  • \n
  • FIX: The Spam comment blocked IP address remains blocked even after spammed comments are approved.
  • \n
  • FIX: Admin Dashboard > WP Security > Security Points Breakdown Section piechart tooltips flickering.
  • \n
  • FIX: The “Time Length of 404 Lockout” option doesn’t do anything.
  • \n
  • FIX: Search did not work for the 404 Event Logs list table.
  • \n
  • FIX: Search did not work for Failed Logins list table.
  • \n
  • FIX: Search did not work for the Account Activity list table.
  • \n
  • FIX: Bulk deletions did not work for the Account Activity list table.
  • \n
  • FIX: Warning when bots make malformed requests.
  • \n
  • FIX: When the user had pressed the bottom bulk action button of the list table, the bulk action was confirmed by two confirm alerts.
  • \n
  • FIX: Unblock link in 404 Event Logs list table redirected to wrong tab.
  • \n
  • FIX: Temp Block, Blacklist IP and Delete links in 404 Event Logs list table didn’t work.
  • \n
  • FIX: Rename login page and Cookie based brute force login prevention configurations didn’t work simultaneously.
  • \n
  • FIX: Fatal error when activating using older PHP versions
  • \n
  • FIX: If auto_prepend_file is already pointed to the firewall bootstrap file from php.ini manually, the bootstrap file try to include itself.
  • \n
  • FIX: The custom logo wasn’t displayed on the login lockdown unlock request form.
  • \n
  • TWEAK: Allow taking database backups via the UpdraftPlus backup plugin.
  • \n
  • TWEAK: Make lockout reasons more specific.
  • \n
  • TWEAK: Update notice class.
  • \n
  • TWEAK: If the user has not performed the cookie test, the brute force attack prevention configuration fields remain disabled in the Admin Dashboard > WP Security > Brute Force > Cookie Based Brute Force Prevention.
  • \n
  • TWEAK: Display locked IP addresses lockout date and release date in WordPress settings format.
  • \n
  • TWEAK: Improve success or messages when performing bulk actions on the table list.
  • \n
  • TWEAK: 404 events date is displayed in WordPress settings format.
  • \n
  • TWEAK: Account activity login date and logout date are displayed in WordPress settings format.
  • \n
  • TWEAK: Add a label for each setting field.
  • \n
  • TWEAK: JQMIGRATE: jQuery.fn.click() event shorthand is deprecated.
  • \n
  • TWEAK: Fix typos at Admin Dashboard > WP Security > Firewall > Basic Firewall Rules > Block Access to Debug Log File. 
  • \n
\n

The post UpdraftPlus Marks Anniversary of All-in-One Security Acquisition with Major Release appeared first on UpdraftPlus. UpdraftPlus - Backup, restore and migration plugin for WordPress.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://updraftplus.com/updraftplus-marks-anniversary-of-all-in-one-security-acquisition-with-major-release/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:82:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"UpdraftPlus completely rejects false allegations of WP-Optimize plugin ‘gaming’ page speed results\";s: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://updraftplus.com/updraftplus-completely-rejects-false-allegations-of-wp-optimize-gaming-page-speed-results/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:122:\"https://updraftplus.com/updraftplus-completely-rejects-false-allegations-of-wp-optimize-gaming-page-speed-results/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 30 Aug 2022 18:21: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:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:20:\"Other 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:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"Site 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:\"\";}i:2;a:5:{s:4:\"data\";s:11:\"WP Optimize\";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:\"WP-Optimize\";s: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://updraftplus.com/?p=1543890\";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:923:\"

On Friday 26 August, Gilo Varghese, founder of Flying Proxy, a CDN, tweeted the following allegation about WP Optimize: https://twitter.com/GijoVarghese_/status/1563097754322501632 . We were not contacted directly but learned of it a few days later when we were asked by a … Continue reading

\n

The post UpdraftPlus completely rejects false allegations of WP-Optimize plugin ‘gaming’ page speed results appeared first on UpdraftPlus. UpdraftPlus - Backup, restore and migration plugin for WordPress.

\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Shane Gurney\";s: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:7935:\"

On Friday 26 August, Gilo Varghese, founder of Flying Proxy, a CDN, tweeted the following allegation about WP Optimize: https://twitter.com/GijoVarghese_/status/1563097754322501632 . We were not contacted directly but learned of it a few days later when we were asked by a WordPress news site to comment.
\n

\n

\"Gijo

\n

In short, the allegation is that WP-Optimize are deliberately deceiving its users by appearing to use page speed tools like GTMetrix to be faster than sites actually are, and are doing this secretly for the purpose of making WP-Optimize look better.
\n

\n

Varghese then proceeded to respond to users who responded to his Tweet to ‘plug’ his company, Flying Press, which is a competitor to WP-Optimize, with a competing plugin product:
\n

\n

\"Gijo

\n

The tweet was widely circulated, and resulted in a WP Tavern article yesterday on the allegations.  This was a UK public holiday, when many of our team were away and we didn’t have time to fully investigate the allegations. We were given a few hours before publication to respond, but at that time our main WP Optimize developer was already, in his time zone, asleep.
\n

\n

The team at UpdraftPlus (owners of WP-Optimize) investigated today and found the allegations to be completely false.  The truth is actually the reverse – it is the allegations which have been presented deceptively, missing out obvious and key facts.
\n

\n

The most fundamental is that feature used to construct the claim clearly says in the user interface “…if you would like to exclude scripts from page speed tests”.  The allegation by contrast implies this is hidden only in the code.
\n

\n

\"WP

\n

Secondly, the advanced setting used in the allegation is a valid feature, useful to find out whether the essential JS/CSS files are actually slowing down the web page or not.  i.e. It has a proper use. This feature is by default, turned ‘off’ and only enabled by advanced users who know what they’re doing.  

\n

Joe Miles, a manager at UpdraftPlus said “the claim is the plugin is being deceptive, but it’s actually an explained setting in advanced settings which a site owner would have to decide to use, which have been used to falsely claim that WP-Optimize is manipulating things.  The setting is a valid tool for testing.  So UpdraftPlus will not be removing it and we’ve asked for the false accusations to be deleted.”

\n

Peter Wilkinson from Divi Engine who developed Divi Nitro, (a speed performance plugin which is not affiliated with WP-Optimize, but actually a competitor), investigated the claims and said “Initially I was shocked at the news and as a competitor, thought it was bad practice to be deceiving customers.”

\n

“Upon further investigation, I found out that it was actually far from the truth. In reality (from my research) WP-Optimize do not “cheat” pagespeed tools when you install or minify your Javascript. 

\n

“To “cheat” the tools, you need to manually add the JS files you want to asynchronous load to a setting that clearly has the label “Use this if you have a completely independent script or would like to exclude scripts from page speed tests (PageSpeed Insights, GTMetrix…)”

\n

Wilkinson made this very clear video to show how the untrue allegations have been unfairly presented in a way that misleads people:

\n

\n


\n“It just goes to show that you should not believe everything you read or hear. Test everything to make sure it is the truth.”  Wilkinson added.

\n

“In my view, Gijo Varghese has used deception to promote Flying Pages and Flying Press.”

\n

Adam Lowe, President of PeakPerformanceDigital.com who was initially quoted in WP-Tavern as asking UpdraftPlus “how are we supposed to continue trusting your company with my clients’ backups when you use these deceptive and fraudulent practices?” replied today in support of WP-Optimize.  He said:

\n

\"Adam

\n

Meanwhile, Andrew Palmer of WP Plugins Plus, tweeted that he believed the original claims to be false:

\n

\"Andrew

\n

Summary: Gijo achieved the result that he did by using a clearly labelled expert feature with explained possible use cases to do something else. He then presented this as the normal but dishonestly hidden result of using WP-Optimize. This should never have been made a news story. We do not encourage anyone to try to “game” PageSpeed scores, and Gijo’s allegations that this is our secret intention that people would do so is unworthy, and we hope he will do the honourable thing and retract it. If any other users are puzzled by anything else in WP-Optimize, we hope that instead of stirring outrage on Twitter, they will ask us about it in a support channel.

\n

The post UpdraftPlus completely rejects false allegations of WP-Optimize plugin ‘gaming’ page speed results appeared first on UpdraftPlus. UpdraftPlus - Backup, restore and migration plugin for WordPress.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"https://updraftplus.com/updraftplus-completely-rejects-false-allegations-of-wp-optimize-gaming-page-speed-results/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:91:\"\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:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Which is the best image format for your WordPress site\";s: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://updraftplus.com/which-is-the-best-image-format-for-your-wordpress-site/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://updraftplus.com/which-is-the-best-image-format-for-your-wordpress-site/#comments\";s: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, 21 Apr 2022 10:47: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:7:{i:0;a:5:{s:4:\"data\";s:11:\"WP Optimize\";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:17:\"best image format\";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:3:\"BMP\";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:4:\"JPEG\";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:4:\"WebP\";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:17:\"what image format\";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:5:{s:4:\"data\";s:9:\"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:34:\"https://updraftplus.com/?p=1422739\";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:754:\"

Having engaging, clear and fast loading images on your WordPress site is one of the most effective ways to draw a user/customer in. There is a reason that car dealerships spend so much time making sure that the new models … Continue reading

\n

The post Which is the best image format for your WordPress site appeared first on UpdraftPlus. UpdraftPlus - Backup, restore and migration plugin for WordPress.

\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Wayne Mullins\";s: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:17102:\"

\n

Having engaging, clear and fast loading images on your WordPress site is one of the most effective ways to draw a user/customer in. There is a reason that car dealerships spend so much time making sure that the new models are spotless and sparkling. The visual impact of a product can often be the make or break decision between success and failure. Online showrooms are no different, plus there is the added complication of how an image can impact your loading speed. It is a well used and famous metric, that a user will leave a website if it takes more than 3 seconds to load. If a website does take more than 3 seconds to load, then there is a good chance that the images you have on your site are part of that reason. 

\n

So as a WordPress site owner, what can you do to ensure that the images you have on your site are both appealing to users and allow your site to load quickly. Your initial instinct might just be to shrink the image down from a 1800×1400 size image to 300×200 size image. This would be the wrong course of action to take, as while your image file size might now be a lot smaller, the quality of the image and user experience has suffered as a result. If you have a car showroom sales website for example, customers will want to get a really good look at the car and be able to see all the features and detail. By making the image so much smaller, any detailed inspection of the car is now impossible – leaving the potential customer frustrated and looking elsewhere. 

\n

So what are your options? Thankfully, there are dozens of different image file options you can choose from, ranging from the high quality, but large file size BMP, the tried and tested JPEG, to the new and widely unknown WebP format. Along with choosing the right format, it is important to remember that regardless of what format you choose, you can additionally reduce the image file size by employing a process via WP-Optimize known as “compression”. 

\n

Site speed is one of the top 10 most important factors Google bots crawling your website observe when they are ranking your site in the search results. Having poor loading speed can badly impact on the ranking of your site and can easily take your site from the first page, to failing to be indexed by Google. Google is very strict on how they rank sites in their search algorithm and if they find that the site offers a poor user experience due to slow loading times, they might not even go through the trouble of even crawling it and making it discoverable via Google search.

\n

Which image format should you choose?

\n

As high quality images are so important for any modern WordPress website, you need to know which format to use, how they affect the performance of your site and how to get the best out of your file selection. 

\n

The two most popular image file formats for websites are PNG and JPEG/JPG. According to w3techs, more than 70% of all websites use these file types. Around 30% of sites use SVG and 22% use GIF.

\n

This is where image file types would come into play as the type of file you use to upload your images play an important role. As there are so many different file types, we will go through the most popular ones and their pros and cons down below:

\n

Before we jump into the type of file we need to understand some concepts before, like what a raster and a bitmap image are? What is compression? What is the difference between a lossy and lossless compression?

\n

Compression – Lossy Vs Lossless

\n

Both of the compression types are aimed at reducing the file size, but it’s what they remove that really matters. In Lossy compression; important data that is relevant to the quality of the image is removed. This can be reflected in the image being pixelated in some cases as your computer can have trouble reconstructing the image.

\n

In lossless compression, irrelevant data that is present in the image (such as metadata) is reduced, which helps reduce the file size. The image quality is not affected at all in this process.

\n

Raster Vs Vector

\n

The most commonly used image file types are typically raster-based. This means that they have a fixed RGB color value associated with every pixel and all of those pixels are combined and used to create a whole image.

\n

Examples of such file formats include jpg, png, and gif.

\n

Alternatively, a vector image is created using shapes and lines that can be scaled infinitely without them ever being pixelated. The vectors are created using mathematical formulas that allow users to change the values, while not affecting the quality of the image.

\n

Now that we have gone over the basics of the images, we can now look at the details of the different file types.

\n

JPEG:

\n

This is a digital image format that contains compressed image data. With a 10:1 compression ratio, JPEG images are used as they are very compact. JPEG format contains important image details and is the most popular image format for sharing photos and other images on the internet. The small file size of JPEG images can also let users store thousands of images (for example on an art site) without the need for extra storage space on your site. 

\n

JPEG is a lossy compression file type that works well for photos, but it is recommended that you use another format when working graphics, such as PNG.

\n
\"\"

A JPEG image file example. You can see that the detail and quality has been maintained when uploading.

\n

PNG:

\n

PNG is a popular bitmap image format and is short for “Portable Graphics Format”. This format was created as an alternative to Graphics Interchange Format (GIF). PNG has some great features like containing 24-bit RGB color palettes, greyscale images and displaying transparent backgrounds. A lossless data compression method is also used in PNG images when working on high quality images or graphics. PNG images are also frequently used in Image editing as they can give the user more control and options on the image over traditional JPEG format.

\n

PNG also uses a lossless compression algorithm, which means this format can retain more data than JPG. When using a PNG image file, users can also save these images with a transparent background. By using this format, users have the option of working with layered images that can show a clear background (for example – just the flowers in the image below and not the background wall), enabling users to add the image to other images without the need to cut it out and remove the existing background – as you would have to with a JPEG image. This is one of the main reasons why it is the preferred choice for graphics like diagrams and illustrations. PNGs are known to be more popular for users working with graphics, rather than uploading standard photos.

\n
\"\"

A PNG image maintains high quality, while also allowing you to have more control over the image

\n

GIF:

\n

You probably know the term “GIF” best from the countless short clips you are sent on messaging apps. GIF stands for “Graphics Interchange Format” and is mostly used to support animation without audio 

\n

Unlike JPEG and PNG, GIFs are used in a more niche case and are not typically used for static images (although this is possible). If you use a GIF on your WordPress site, it is most likely in order to show you visitors a simple animation or process. GIFs have a limited color range and are best used for simple graphics. They use lossless compression and tend to be smaller than JPGs. It is generally recommended that you only use GIFs sparingly in your site, as they can increase loading times (given the file size) and are limited to 256 colours. 

\n
\"\"

An example of a GIF image. The quality of the original image has been greatly reduced in order to produce the animation.

\n

SVG:

\n

Scalable Vector Graphics (SVG) is a web-friendly vector file format. As opposed to pixel-based raster image files like JPEGs, vector files store images via mathematical formulas based on points and lines on a grid. This means that vector files like SVG can be significantly resized without losing any of their quality, which makes them ideal for logos and complex online graphics. 

\n

Vectors are best only for simple graphics, shapes, and illustrations. SVGs are a good choice for logos, especially if you need your logo to be responsive and are supported by most browsers including Chrome, Firefox, Edge and Opera.

\n
\"\"

An example of the sunflowers in a SVG format that you would use for a logo.

\n

BMP:

\n

BITMAP is now considered an outdated image format. BMP loads the images in a lossless image format which can result in huge file sizes due to the lack of compression. Considering the importance of loading speed and how site creators want to keep the image sizes to a minimum (not to mention the popularity of SVG and JPEG formats), this format has become largely unused for online images. 

\n
\"\"

The original quality of the image is maintained when uploading in the BMP format, but the file size will badly slow down your site and is not recommended.

\n

WebP:

\n

This image format was created by Google in 2010 and is starting to prove popular with people who upload lots of images to their site as it has several advantages over JPEG and PNG, such as having better lossy and lossless compression performance.

\n

WebP also typically uploads in smaller file sizes than JPEG or PNG formats given its improved compression performance and will take up less space on your site – allowing it to load faster. While it isn’t supported by all browsers, it is supported by all the most popular browsers – including Chrome, Firefox, Edge and Opera. 

\n
\"\"

Though not as well known as JPEG and PNG, WebP could prove to be the image format of choice in the future.

\n

Conclusion:

\n

There are many types of image formats that can be used on your WordPress site, but it is important to evaluate the purpose of the image. If your site is for a wedding photographer for example, you will want to maintain high quality images that still load quickly and are user friendly (JPEG). However, if you are selling images in an online poster store, then you will want to maintain as much detail and image information as possible (PNG).  

\n

As a general rule of thumb, if you are just uploading standard images for your online store, blog, portfolio, social media or social media site – then it is recommended that you upload you images in a standard JPEG format and then use WP-Optimize to further compress your images

\n

However, should you wish to future-proof your images and improve your loading speed as much as possible, then WebP can offer superior lossy and lossless compression, while still maintaining high levels of details. Whatever you decide, remember to always compress your images using WP-Optimize for the market leading compression. 

\n

The post Which is the best image format for your WordPress site appeared first on UpdraftPlus. UpdraftPlus - Backup, restore and migration plugin for WordPress.

\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://updraftplus.com/which-is-the-best-image-format-for-your-wordpress-site/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:6:{s:4:\"data\";s:81:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Improve your WordPress user experience: 7 strategies to succeed\";s: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:87:\"https://updraftplus.com/improve-your-wordpress-user-experience-7-strategies-to-succeed/\";s: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, 08 Apr 2022 14:06: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:8:\"category\";a:9:{i:0;a:5:{s:4:\"data\";s:20:\"Other 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:\"\";}i:1;a:5:{s:4:\"data\";s:5:\"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:\"\";}i:2;a:5:{s:4:\"data\";s:6:\"How to\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:7:\"Improve\";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:4:\"list\";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:\"tips\";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:5:{s:4:\"data\";s:15:\"user experience\";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:5:{s:4:\"data\";s:2:\"UX\";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:5:{s:4:\"data\";s:9:\"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:34:\"https://updraftplus.com/?p=1410380\";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:783:\"

Now that you have contributed so much of your time and money to your shiny new WordPress website and have showcased your talents to the world, it is important to ask the questions; “Did you pay close attention to perfecting … Continue reading

\n

The post Improve your WordPress user experience: 7 strategies to succeed appeared first on UpdraftPlus. UpdraftPlus - Backup, restore and migration plugin for WordPress.

\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Jessica Day\";s: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:19464:\"

Now that you have contributed so much of your time and money to your shiny new WordPress website and have showcased your talents to the world, it is important to ask the questions; “Did you pay close attention to perfecting the WordPress user experience?”

\n

Today’s tech-literate consumers have high expectations, which is why a website that feels clunky and awkward, just isn’t good enough. Providing the best user experience for your WordPress site should be paramount. No matter how professional or high quality your products or services are, if your site showcase doesn’t give a high standard of customer user experience, you will be doomed to failure.

\n

In this blog, we have put together a guide on how to greatly improve user experience in your WordPress site with 7 strategies to succeed. 

\n

Why is the user experience so important? 

\n

In a world filled with so many digital options and distractions, providing a good user experience can be one of the main keys to success. Take Uber for example. Uber revolutionized the taxi industry with a new way to order and track cabs by using an intuitive and simple-to-use app on your mobile phone. Uber is now a world-wide multibillion-dollar company with services in most cities – largely thanks to its innovation and consideration of the end-user. 

\n

The same theory applies when creating your WordPress site. Whether it’s a blog, an online store, a marketing hub, or a portfolio for your services; your chances of success are intrinsically tied to the positive level of user experience you provide. 

\n

Here are some of the most obvious and measurable benefits of a good user experience:

\n

Set a good first impression of your brand 

\n

Setting a good first impression is important for showing potential customers you’re the real deal. It doesn’t matter how good your products, services, or content are, if your WordPress website isn’t aesthetically coherent and functional, no one will want to use it. Users must be able to navigate your pages with ease so that they get an immediate sense of direction and understanding on how your site operates. 

\n

Increased sales

\n

Any website that makes the purchasing process straightforward and easy to follow iis more likely to see an increase in sales and revenue. To put it simply, the easier it is to browse and take action, the quicker users will be able to act on impulse and purchase products and services from you. Simple features like search filters and recommendations can enhance the user experience by giving them multiple options to begin the buying journey. 

\n

It’s a win-win. A positive experience for the customer and more sales for your business. 

\n

Increase user retention rates 

\n

Offering the best user experience keeps customers coming back for more. Satisfied customers will not feel the need to look elsewhere if you’re meeting their expectations. Existing customers are also likely to recommend your site to others and become brand advocates if you offer a professional and friendly UX. 

\n

Improve search engine optimization (SEO)

\n

Take a look at the top-ranked sites on a search engine like Google and you’ll find they all have a professional high end user experience design. The days of cramming as many keywords as possible into your content to rank via SEO are long gone. Google has expanded how it ranks websites and how it views SEO requirements by including such elements as UX design. It is important to remember this when it comes to setting and designing your site using WordPress. 

\n

How to improve user experience in your WordPress site: 7 strategies to succeed

\n

Creating a popular and (potentially) profitable website means putting the user experience first. Try putting yourself in the shoes of a new customer, and design your site around their experience, rather than how ‘amazing’ your product is. The user experience goes hand-in-hand with usability and functionality. 

\n

\"\"

\n

Image Source

\n

Let’s now look at 7 actionable strategies to help improve the user experience of your WordPress site. 

\n

1. Opt for a simple design 

\n

\"\"

\n

Image Source

\n

It is important to remember that sometimes less, really is more. Don’t sacrifice functionality for an overly pretty and complex design. Ask yourself, ‘Would I find this website easy to follow if I came here for the first time?’ Users value usability and useful features over crowded visuals. For example, always put buttons where you would expect to find a button. Make your potential customers’ life as easy as possible, as they will quickly abandon your site if they struggle to perform a simple task or have to go looking for the ‘buy button’.

\n

A conventional blog format is suitable in many instances, that is, a header, followed by the main body and a sidebar, completed with a footer. From here, you can make subtle tweaks to enhance the overall design. Be sure to give it a quick mobile friendly test to ensure it’s appearing correctly on mobile devices. 

\n

It’s all about getting that balance between form and function. 

\n

2. Ensure navigation is easy

\n

Navigating through your WordPress website should feel natural and effortless for the user. Try to build your site to incorporate the following features: 

\n
    \n
  • A navigation bar (this is a must-have)
    \n
    Naming key pages for your navigation bar is simple with WordPress. Simply click (Appearance > Menus) in your sidebar to customize your menu’s order and page names.
  • \n
\n
    \n
  • A list of categories in your sidebar
    \n
    Having an easily viewable list of categories will allow users to quickly navigate to their general area of interest. For example, if they are in the market for a new TV, they can browse all TVs available on your site, without having to also view Laptops.
  • \n
\n
    \n
  • A search tool
    \n
    Imagine a customer has come to you specifically for a bluetooth headset, give them a search bar to find them fast. WordPress has several search bar plugins for you to try. Some are free while others are paid for.
  • \n
\n
    \n
  • An archives page
    \n
    For an Archive page, let users search previous content by date, category, and keyword. This will help users find content fast while also helping your WordPress SEO strategy
  • \n
\n
    \n
  • Breadcrumbs
    \n
    Breadcrumbs are the navigational links found at the top of a page to tell you where you are on the site. For example, (Home > Blog > January 2022 > How to nail your WordPress website.)
  • \n
\n

Utilizing these common design features on your WordPress page is a great way to create a familiar experience for users. 

\n

3. Make sure your homepage is useful and informative

\n

Your homepage is almost certainly going to be the most viewed page on your website. Think of it as your personal shop window for what goods and services you have to offer. Feature boxes can be a useful addition to the homepage. A feature box pops up on the homepage and can include content of your choice. A popular strategy is to use an ‘Opt-in’ box to introduce yourselves and encourage users to sign up for deals, information and discounts. 

\n

For example, your feature box could say:  

\n

Want to know the best magicjack competitors

\n

Sign-up now to receive advice on: 

\n
    \n
  • The best in VoIP call center solutions. 
  • \n
  • The best alternatives out there for your favorite tools.
  • \n
  • The best tools for collecting and analyzing key data…’, etc. 
  • \n
\n

A well-placed feature box involves the visitor right away and tells them what to expect and how to get more from your site. This can add to a better user experience. However, it is important to make sure your feature box contains legitimate and valuable information and doesn’t just present as an ad attempting to get the visitors email address. 

\n

4. Is your content easy-on-the-eye? 

\n

Content that looks visually appealing is more likely to attract visitors and keep them engaged. Remember to take inspiration and design cues from other popular websites in your niche area to get an idea of how their visual layout enhances the user experience. 

\n

When designing your site, also be sure to pay attention to design elements, typography choices and formatting. Have a look at other popular websites to see what they look like and what choices they made. Once you’ve found inspiration, you can use a pre-existing layout template to start from, or design your own layout from scratch. 

\n

In terms of formatting, consider the following: 

\n
    \n
  • Keep sentences and paragraphs short and sweet. 
  • \n
  • Use sub-headers to break sections up and make navigation easier. 
  • \n
  • Use bold to highlight keywords and phrases. 
  • \n
  • Italics are useful for emphasis and speech. 
  • \n
  • Images are useful for adding variety and color to a piece. 
  • \n
  • Other visual elements such as tables, lists and quotes help break up the site and provide extra information. 
  • \n
\n

Creating a good user experience means nailing a design that’s easy-on-the-eye, while also being practical. 

\n

5. Deliver fast page speeds

\n

\"\"

\n

Image Source

\n

Today’s website users expect fast page speeds and sites that load in a second or two at most. In fact, having a slow loading site is the top reason visitors will leave. 

\n

Ways to increase page speed include: 

\n
    \n
  • Using only necessary plugins
    \n
    Running multiple plugins is one of the leading sources of slowing your site down.
  • \n
  • Watch your image sizes
    \n
    Image compression plugins like WP-Optimize reduce the file size of images to boost loading speeds. 
  • \n
  • Use a Content Delivery Network service (CDN)
    \n
    This adds a level of protection against WordPress security issues too. 
  • \n
  • Enable caching
    \n
    Saves user data to reduce future loading times. WP-Optimize is also one of the leading caching plugins available for WordPress 
  • \n
\n

6. Include plenty of negative space 

\n

Also known as white space, negative space refers to the parts of your page that have no content.

\n

Somewhat ironically, negative space usually leads to a positive experience. Utilizing negative space lets users focus on the important aspects of your content without being distracted. 84.6% of web designers believe crowded web design is the most common mistake by small businesses. 

\n

Today’s consumers visit dozens of web pages a day. It’s likely they’re going to scan through your website anyway. A clever use of negative space lets them do this at their leisure without becoming bored. 

\n

7. Have a clear call-to-action

\n

What use is your website if you don’t tell users what to do next? Far too often, visitors will leave a website without taking action simply because there was no clear CTA. A well-placed and well-worded CTA is key for boosting your WordPress conversion ratesModern users want fast results, so placing your call-to-action button immediately after or halfway through your written content is a good way to go. 

\n

Effectively, you want to make it easy for the user to take the desired action without them having to search around for what’s next. WordPress has some useful plugins for managing CTA’s, have a look and see what works for you. 

\n

Final thoughts

\n

Now that you have reviewed all the potential ways you can help improve the user experience for your WordPress site, these tips have got you thinking about the ways you can employ them to help boost your performance and SEO score. 

\n

The strategies above are commonly used across successful business websites all over the world on both WordPress and non-WordPress sites. Failing to have your own strategy could see you fall behind the rest and struggle to gain a foothold in your particular niche. 

\n

Start building your next WordPress website today, and remember to keep the user experience in mind in everything that you do.  

\n

Jessica Day – Senior Director, Marketing Strategy, Dialpad

\n

The post Improve your WordPress user experience: 7 strategies to succeed appeared first on UpdraftPlus. UpdraftPlus - Backup, restore and migration plugin for WordPress.

\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:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:78:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"How to build a small WordPress business website using Gutenberg\";s: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://updraftplus.com/how-to-build-a-small-wordpress-business-website-using-gutenberg/\";s: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, 01 Apr 2022 13:51: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:8:{i:0;a:5:{s:4:\"data\";s:20:\"Other 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:\"\";}i:1;a:5:{s:4:\"data\";s:13:\"business site\";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:\"Create\";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:5:\"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:\"\";}i:4;a:5:{s:4:\"data\";s:10:\"Guttenberg\";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:6:\"How to\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:6;a:5:{s:4:\"data\";s:12:\"setup set-up\";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:5:{s:4:\"data\";s:14:\"small business\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://updraftplus.com/?p=1403337\";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:783:\"

Whether your business is purely based online, or in the real world, building an online presence for your business, no matter how small, has become a necessity. In this blog, we will look at how to build a WordPress business … Continue reading

\n

The post How to build a small WordPress business website using Gutenberg appeared first on UpdraftPlus. UpdraftPlus - Backup, restore and migration plugin for WordPress.

\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Wayne Mullins\";s: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:31745:\"

Whether your business is purely based online, or in the real world, building an online presence for your business, no matter how small, has become a necessity. In this blog, we will look at how to build a WordPress business website using Gutenberg. Thanks to the consistent rise of eCommerce, a record 2.14 billion people shopped online in 2021, compared to just 1.24 billion digital buyers in 2020. With the increase in the popularity of online shopping and the mass adoption of smartphones all over the world, it is clear that online shopping is here to stay.

\n

If you’re looking for one of the easiest and fastest ways to build a business website, WordPress is definitely an option to consider. While in the past, the platform required third-party page builders to create elegant designs, with the advent of the new Gutenberg block editor, WordPress now allows you to quickly build almost any type of website out of the box. With the new Gutenberg building options, you can use ‘blocks’ to put together a professional and stunning looking business site in just a few hours. In this blog, we’ll walk you through the entire process of building a small WordPress business site from scratch using Gutenberg. We will also endeavor to answer some of the most important questions you might have about the default WordPress editor.

\n

Let’s get to it!

\n

Why you should build a WordPress site for your small business

\n

A good website can significantly impact the success of your business. While your business may already be performing well without a website, offering your customers products and services online can help you achieve even more sales, improve customer engagement and increase brand awareness.

\n

A few stats

\n

Let’s look at some of the numbers that show the power and importance of owning a business site:

\n
    \n
  • 84% of consumers think businesses with websites are more credible. In fact, 56% of people asked said they won’t trust a business without one. (Source: Verisign)
  • \n
  • 81% of shoppers worldwide make a purchase decision only after researching the business, product, or service online. (Source: Adweek)
  • \n
  • 88% of people who search for a particular type of business on their mobile phones visit or call a related store within a week. (Source: Google Mobile Movement Study)
  • \n
  • 79% of users believe the reviews they read online. (Source: Salesforce)
  • \n
\n

Considering these numbers, establishing an online presence and conducting your business through a website is definitely a step in the right direction. Here are some of the biggest ways your small business can benefit from a dedicated WordPress site:

\n
    \n
  • Attract more new customers and generate sales at a fraction of the cost
    \n
    Getting leads through organic and inorganic traffic is one of the major benefits of owning a website. At just a fraction of the cost of traditional marketing, an SEO-optimized site can get you a lot of traffic through Google.
  • \n
  • Help people find out all the information they need easily
    \n
    Your site allows you to showcase all the products and services your business offers. You can also include contact information, opening times, product guarantee details and directions to your physical store via Google Maps.
  • \n
  • Conduct business at any time of the day
    \n
    Even if you finish work at 5pm, your customers can still make purchases and interact with your business 24/7.
  • \n
  • Add more credibility to your business
    \n
    Potential customers will expect your business to have a dedicated website in 2022. A good website design creates a solid first impression and can set you apart from the competition.
  • \n
  • Set the narrative for your brand
    \n
    You can showcase your best testimonials and reviews on your site’s homepage and promote your brand by putting your best foot forward.
  • \n
\n

\"\"

\n

What Is Gutenberg and why should you use it?

\n

As WordPress continues to grow from its humble blog beginnings, third-party developers have added plugins that made it possible to add more dynamic content. Gutenberg was added to keep WordPress relevant and to deliver on user expectations.

\n

Gutenberg relies on content blocks and allows users to add almost any type of content to their site. It has a clean interface and that allows users to add new content to a site by selecting a corresponding block.

\n

\"\"

\n

Gutenberg isn’t just a text editor with limited formatting buttons however. With this block-based system, you can easily add buttons, videos, shortcodes or contact form anywhere on your site.

\n

Since December 2018, when Automattic made Gutenberg the default editor in WordPress 5.0, the platform has continually improved the features of the block editor. Other WordPress developers have also integrated some of their plugin features into Gutenberg, making it possible for you to add other custom content types to your site directly within the block editor.

\n

What do you need to build your business WordPress site

\n

Depending on the nature of your business, websites often vary in terms of design and features. Your small business site may be focused on brand awareness, eCommerce or content publishing. Regardless of what industry you are in, any business site built with WordPress requires these common resources:

\n
    \n
  • Domain name – average cost $10/yr (depending on the extension)
    \n
    A domain name is the address users type in their browser’s URL bar when they visit your site. A catchy and memorable domain can help boost your chances of generating more traffic.
  • \n
  • Website hosting – starting from $0.99/month
    \n
    Web hosts help you store website files and resources on servers that make it possible for site visitors to access them. There are different types of web hosts and choosing the best provider for you depends on a number of factors.
  • \n
  • SSL certificate
    \n
    An SSL certificate can help keep your site files and your users’ information secure. Most popular WordPress hosting providers include a free SSL certificate in their plans. Once you have one, your site will show the ‘https://’ prefix in the URL bar.
  • \n
  • Themes and plugins
    \n
    One of the advantages of using WordPress is that you can add specific features and set up your site’s design in minutes with free and premium WordPress themes and plugins. 
  • \n
\n

How to build your WordPress business site using Gutenberg

\n

Step 1: Get web hosting and install the WordPress software

\n

Choosing WordPress hosting means you can easily install the software in one click. Your server resources are also optimized for website performance. You can buy WordPress hosting from many different sources, with shared hosting plans starting from as low as $2.95/month.

\n

\"\"
\nOnce you’ve selected your plan, you can either register a new domain name or enter an existing one you have already setup. If you want to register a new domain name, you need to first confirm that it’s available. Next, fill in your account information and all the required payment information. Once your purchase is complete, you can now install WordPress in just one click. 

\n

You’ll immediately be redirected to your WordPress admin dashboard after setting up your account login details.

\n

\"\"

\n

Your WordPress site is now ready for use. It’s time to set it up and design it specifically for your business.

\n

Step 2: Customize your site with a WordPress Theme

\n

When working on how to build a WordPress business website using Gutenberg, the next step is to customize your site’s design. The fastest way to do this is to use a WordPress theme that includes professional design templates. We recommend using the Astra theme as it is the fastest WordPress theme and includes a number of templates tailored for Gutenberg. To get Astra, navigate to Appearance > Themes > Add New in your WordPress dashboard and search for ‘Astra’.

\n

Select the theme, then click Install followed by Activate.

\n

\"\"
\nTo setup and use the ready made design templates, go to Astra Options under the Appearance tab. 

\n

Next, click Install Importer Plugin.

\n

\"\"

\n

After installing the importer plugin, select Gutenberg as your page builder.

\n

\"\"
\nYou can streamline the template options you’ll see by selecting the type of site you want to build.

\n

As we are showing you how to build a business website, we will select Business.

\n

\"\"

\n

With Guttenberg, you can even preview each template in a new tab to make sure it suits your needs and that you like the style before you commit. 

\n

Click Import Complete Site when you find the design you like.

\n

\"\"

\n

WordPress will then apply this template and change your site’s design. To further tweak your design, you can use the default WordPress Customizer. Navigate to Appearance > Customize to do this.

\n

\"\"
\nPages are, of course, one of the major components of any business website’s design. Let’s see how to design important web pages using Gutenberg.

\n

Step 3: Build important pages using Gutenberg blocks

\n

For maximum SEO score, customer confidence and professionalism, some of the most important pages every business website needs must include the following: Home, About, Contact and Privacy Policy pages.The starter template we added should have already created these pages by default. 

\n

If you wish to create a new page that will show different information, such as a page dedicated to your opening times, you can create a new page by going to Pages > Add New.

\n

\"\"
\nTo edit any of your existing pages, go to PagesThen click Edit after hovering over the page you want to edit.

\n

\"\"
\nYou can add any type of content like paragraphs, shortcodes and media such as images, documents, and videos to your web pages using Gutenberg blocks. To do this, click the + icon on the page editor.

\n

\"\"
\nTo help build pages faster, it can help if you install a WordPress block plugin. We recommend Ultimate Addons for Gutenberg. Apart from adding creative blocks to your site, the plugin also comes with lots more starter templates. Some of the interesting blocks to check out that could be of particular benefit to you include the Price List, Team and Testimonial blocks.

\n

\"\"
\nWith these ready-made blocks ready to go, you’ll find that you will be able to build as many pages as you need in very little time.

\n

Step 4: Extend website features with WordPress plugins

\n

You can improve the speed, performance, functionality and features on your site by using WordPress plugins. Below are some popular options that you may want to incorporate to your site.

\n

WPForms
\n

\n

\"\"

\n

WPForms is an excellent forms plugin that enables you to build attractive forms and implement them anywhere on your website. While most websites use forms that only allow visitors to get in touch, a business website should make extra use of the features available by offering a customer the opportunity to reach out, ask questions or engage with your business. 

\n

Alternatives plugins include Contact Form 7, and Formidable Forms

\n

UpdraftPlus
\n

\n

\"\"

\n

UpdraftPlus is the world’s leading and highest rated WordPress backup plugin that helps keep your website safe by backing it up. After spending all this time and effort setting up your WordPress site, protecting it and creating a secure backup is one of the most important tasks you can carry out. So, should the worst happen, you can rest easy knowing that you will always have a recent backup copy of your site to restore from. 

\n

WP-Optimize
\n

\n

\"\"

\n

Speed is a hugely important factor for a business site, both in terms of SEO score and customer retention. WP-Optimize is a WordPress optimization plugin that can be used to calibrate and format your site, so it loads as quickly as possible. The importance of how quickly your site loads cannot be overstated. Faster loading websites perform significantly better than sites that take longer to load. So remember, anything you can do to boost performance is a good thing.

\n

All in One WP Security and Firewall
\n

\n

\"\"

\n

As well as backing up and optimizing your site, you should also remember to protect your site with a security plugin, such as All in One WP Security and Firewall. You use a firewall on a website for the same reason you use anti-virus software on your computer and browser – To keep bad guys out. All in One WP Security and Firewall provides a wide ranging and comprehensive list of security tools to help keep your site safe and is simple to set up and use.

\n

Presto Player
\n

\n

\"\"

\n

Video is a hugely important communication and marketing tool that every business should use on their site to help promote their products and services. Presto Player can help with that. This plugin helps you control how video looks, how it plays and even lets you monetize videos or add calls to action. Ideal if you use video in your business in any way.

\n

Alternatives to Presto Player include Videopack, and YouTube Embed.

\n

Building your Gutenberg-powered business WordPress site

\n

A well put together and professional business website is an integral part of any successful marketing strategy. The great thing is, that when trying to figure out how to build a WordPress business website using Gutenbergwith, you don’t need to be a coding expert or break the bank to build one for your small business. We hope the tips and processes outlined in this blog go a long way in setting up your business for success. If you have any questions, please let us know in the comments section below.

\n

Author’s Name : Sujay Pawar

\n

Sujay is the CEO and Co-Founder of Brainstorm Force, the company behind Astra. You can connect with him on Twitter @sujaypawar

\n

The post How to build a small WordPress business website using Gutenberg appeared first on UpdraftPlus. UpdraftPlus - Backup, restore and migration plugin for WordPress.

\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:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:75:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"UpdraftPlus celebrates World Backup Day: Get 20% off UpdraftPlus Premium\";s: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:95:\"https://updraftplus.com/updraftplus-celebrates-world-backup-day-get-20-off-updraftplus-premium/\";s: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, 31 Mar 2022 10:26:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:20:\"Other 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:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Backup\";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:13:\"backup plugin\";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:18:\"Updraftplus coupon\";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:20:\"updraftplus discount\";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:9:\"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:\"\";}i:6;a:5:{s:4:\"data\";s:16:\"world backup day\";s: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://updraftplus.com/?p=1402192\";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:835:\"

UpdraftPlus is happy to celebrate World Backup Day with everyone today! With millions of users of UpdraftPlus all over the world, we are continually supporting and developing our WordPress backup plugin to help keep your WordPress site safe and secure. … Continue reading

\n

The post UpdraftPlus celebrates World Backup Day: Get 20% off UpdraftPlus Premium appeared first on UpdraftPlus. UpdraftPlus - Backup, restore and migration plugin for WordPress.

\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Wayne Mullins\";s: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:3185:\"

\n

UpdraftPlus is happy to celebrate World Backup Day with everyone today! With millions of users of UpdraftPlus all over the world, we are continually supporting and developing our WordPress backup plugin to help keep your WordPress site safe and secure.

\n

With hacking becoming a bigger threat every day, the importance of having a secure and safe backup of your site available with UpdraftPlus (should the worst happen) cannot be overstated. From opportunistic amateurs to state sponsored cyber-attack units, the security of your site has never been under as much threat as it is now.

\n

World Backup day is a yearly reminder that everything you’ve worked for and built can be lost in just a few seconds. As well as hacking threats, site owners have to also be wary of crashes, viruses, malicious actors and issues with plugins and themes.

\n

\"\"

\n

Here at UpdraftPlus, we hear stories from users all over the world every day who have had these problems; and were only saved by their UpdraftPlus backup. As the world’s most popular and highest rated WordPress backup plugin, we have made it our mission in life to ensure that should your site ever get hit by any of these problems, you can always restore it to its previous state using your downloaded backup and our plugin.

\n

Installed by over 3 million users all over the world, our easy-to-use interface allows you to backup and restore your website with a single click. You can also set the schedule to backup automatically as often as you like, so you don’t have to worry about forgetting to backup your site manually and will always have a recent upload of your site ready to go.
\n
\nAs it is World Backup Day, get 20% off
UpdraftPlus Premium for today only using the discount code: WBUD22 at the checkout.

\n

Happy World Backup Day from all at UpdraftPlus

\n

The post UpdraftPlus celebrates World Backup Day: Get 20% off UpdraftPlus Premium appeared first on UpdraftPlus. UpdraftPlus - Backup, restore and migration plugin for WordPress.

\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:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:81:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Why You Need to Upgrade to WP-Optimize Premium\";s: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://updraftplus.com/why-you-need-to-upgrade-to-wp-optimize-premium/\";s: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, 28 Mar 2022 15:31: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:8:\"category\";a:9:{i:0;a:5:{s:4:\"data\";s:11:\"WP Optimize\";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:\"Premium\";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:7:\"Upgrade\";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:17:\"WordPress caching\";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:\"WordPress speed\";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:\"WP-O\";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:5:{s:4:\"data\";s:11:\"WP-Optimise\";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:5:{s:4:\"data\";s:11:\"WP-Optimize\";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:5:{s:4:\"data\";s:17:\"WP-Optmize 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:34:\"https://updraftplus.com/?p=1399275\";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:735:\"

Now that you have your WordPress site in excellent shape and filled with engaging content and compelling designs, you can start to evaluate if it is enough to retain new visitors and keep them coming back again and again. With … Continue reading

\n

The post Why You Need to Upgrade to WP-Optimize Premium appeared first on UpdraftPlus. UpdraftPlus - Backup, restore and migration plugin for WordPress.

\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Melvin Braide\";s: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:13926:\"

\n

Now that you have your WordPress site in excellent shape and filled with engaging content and compelling designs, you can start to evaluate if it is enough to retain new visitors and keep them coming back again and again.

\n

\"\"

\n

With so many online options to choose from, it can be hugely difficult to compete for people’s already fleeting attention. To have a successful site these days, you have to do a lot more than just the bare minimum if you hope to increase the traffic on your page. While colourful designs, well-made content and excellent marketing may bring visitors to your WordPress site initially, it is the efficiency, speed and quality that will get them to stay. 

\n

Given how important speed is to a user that visits your site, one of the most important questions you need to ask is, how long does your website take to load a page? Studies show that more than half of the people who visit a site will leave if it takes over three seconds to load a page. Ideally you should aim to have your site load in around two seconds or less. 

\n

Abandonment of your site is not the only damage slow loading speeds can cause. Google confirmed that the speed of your website can even affect a percentage of search queries – and by extension, your SEO ranking. A very large part of your website’s success reflects on how fast it responds to visitor interaction. 

\n

With this knowledge, it is important that you do everything you can to make sure your WordPress site loads as quickly as possible. A great way to help achieve this is by installing the WP-Optimize WordPress plugin. In this blog, we will take a look at the many features and advantages of WP-Optimize, why it should be your WordPress optimization plugin of choice, and why you should upgrade to the premium version.  

\n

What can performance-boosting plugins do for your WordPress site?

\n

No matter how well you may think your site is set-up, you should always have a dedicated tool that will help with your site’s performance. Performance-boosting plugins like

\n

 help optimize your WordPress site to perform at the best possible level. It can help to speed things up for visitors interacting with your pages for the first time, as well as improve the general efficiency of the website. 

\n

As an all-in-one performance-boosting plugin, WP-Optimize consists of everything you need to keep your website fast and thoroughly optimized. With thousands of 5-star reviews and more than one million active installations, WP-Optimize ranks at the very top of the list of the best performance-boosting plugins in the world.  

\n

Why should you use WP-Optimize?

\n

\"\"

\n

As mentioned earlier, both the free and Premium versions of WP-Optimize expertly optimizes your WordPress site in the following ways:

\n
    \n
  1. Cleans the database.
  2. \n
  3. Compress images.
  4. \n
  5. Caching. 
  6. \n
\n

1. Clean database

\n

Your database stores all the data you require for your website to function properly. Some things you don’t need are also stored in the process. The clean database feature removes all the useless data and even reclaims the space lost due to data fragmentation. Database cleaning is the number one, most basic function of a performance-boosting plugin. 

\n

The database feature is easy to use and especially comes in handy for cleaning out the following: 

\n
    \n
  • Drafts. Gets rid of auto-draft posts and creates space in your database for new and useful drafts. 
  • \n
\n
    \n
  • Comments. Removes Askimets and other such redundant metadata from comments. 
  • \n
\n
    \n
  • Trash. Deletes old post revisions and trash.  
  • \n
\n
    \n
  • Spam. Zero spam tolerance. Automatically removes all spam, unapproved and trashed comments. 
  • \n
\n
    \n
  • Trackbacks and pingbacks. Deletes automatic acknowledgments, references, and notifications ensuring a clutter-free website.
  • \n
\n

2. Compress images

\n

In addition to cleaning databases, WP-Optimize features a tool for image optimization and compression. Large images that would have otherwise reduced your site’s load speed are compressed and saved to your image library, where they are uploaded instantly. WP-Optimize covers a wide range of image formats including PNG, GIF, JPG, BM, and TIF. This feature frees up space, saves server resources for more important tasks, and helps your website load faster. 

\n

3. Caching

\n

Every website has a reserved storage space, which is referred to as the cache system

\n

The purpose of this cache system is to store temporary data like the static versions of your website. This way, your WordPress site won’t have to run heavy PHP scripts whenever someone loads your site. Instead, your cache will collect texts, images, and other required data from first-time visitors. This improves the load speed and general efficiency of the site during subsequent visits.  

\n

Every cache system requires adequate RAM and CPU performance. With time, growing page traffic will overwhelm your RAM and CPU causing your site to render slowly. But that won’t happen with performance-boosting plugins like WP-Optimize. With the WP-Optimize cache 

\n

Why you should upgrade to WP-Optimize Premium

\n

As mentioned at the beginning of this blog, WP-Optimize has both a free and a premium version. The basic features of WP-Optimize are free and can be downloaded hereThe Premium version comes with the following additional features:

\n

Premium packages

\n

The premium version is available in three packages at competitive prices: 

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Package Coverage 
1.Starter1 to 2 websites
2.Business5 websites 
3.Unlimited No limit 
\n

Additional benefits of WP-Optimize Premium

\n

Multisite support

\n

While the free version can cater to ONLY one site at a time, the Premium version offers multisite functions. Optimize all your sites on your WordPress network. 

\n

More options

\n

WP-Optimize Premium offers flexibility and a range of advanced options. For instance, you can optimize individual database tables should you wish to do so.

\n

Remove unwanted images

\n

This newly-added Premium optimization process helps to eliminate orphaned images from your WordPress sites. Images that exceed specific size limits are also removed to minimize server footprint – and by extension cost. 

\n

Lazy load

\n

Not all components are needed to load your page. The lazy load feature helps to prioritize the necessary components while delaying the rest until they are required. This optimization process significantly improves website performance for large sites.  

\n

Scheduling

\n

Optimization might be automatic, but with Premium you can schedule when it occurs. This Premium scheduling feature allows you to set up routine optimizations. 

\n

Logging

\n

Every process can now be documented. Log messages are sent to three additional destinations – including Simple History, Syslog, and Slack. 

\n

Versatility

\n

WP-Optimize Premium is available in multiple languages and subscriptions can also be paid for with multiple currencies. 

\n

Geolocation and WooCommerce compatible

\n

Your international WooCommerce store requires an effective geolocation feature to offer country-specific content, determine appropriate VAT and pricing. WP-Optimize Premium can even help with this. 

\n

Run from WP-CLI

\n

You can run optimization commands straight on the command line and receive detailed results on screen.

\n

Power tweaks

\n

This is an advanced option for experienced users. Power tweaks improve your site’s performance by aiming at certain weak points in your website or other plugins. 

\n

Purge pages

\n

This lets you delete HTML copies of your page(s). With the Premium version, you can purge pages when needed – For example, when you update a media file or create a new post. 

\n

Prevent individual page caching

\n

You can use Premium to prevent selected pages on your website from being cached. An example of such a page is the admin page. This feature can also help improve security.

\n

Premium support

\n

Upgrading to Premium automatically gives you Premium support. Your queries will be promptly addressed by WP-Optimize experts. 

\n

Conclusion

\n

If you are serious about getting the best performance out of your site and giving your visitors the best user experience possible, then the short and simple answer is yes – upgrading to WP-Premium is totally worth it. With so many extra Premium features available, the added benefits will remove all doubts once you realize how important factors such as removing unwanted images, lazy loading, power tweaks and premium support are to the success and speed of your site. 

\n

Download WP-Optimize Premium today and see the difference for yourself.

\n

The post Why You Need to Upgrade to WP-Optimize Premium appeared first on UpdraftPlus. UpdraftPlus - Backup, restore and migration plugin for WordPress.

\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:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:78:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Why you should upgrade to UpdraftPlus Premium\";s: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://updraftplus.com/why-you-should-upgrade-to-updraftplus-premium/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 18 Mar 2022 14:48: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:8:\"category\";a:8:{i:0;a:5:{s:4:\"data\";s:22:\"UpdraftPlus advantages\";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:33:\"Advantages of Premium UpdraftPlus\";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:\"Backup\";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:31:\"Benefits of UpdraftPlus Premium\";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:18:\"how to get premium\";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:15:\"Updraft Premium\";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:5:{s:4:\"data\";s:19:\"updraftplus premium\";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:5:{s:4:\"data\";s:9:\"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:34:\"https://updraftplus.com/?p=1389934\";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:753:\"

The free version of UpdraftPlus is fully functional and a great option for a lot of WordPress users. However, we’ve developed a brilliant range of features to make it even better. UpdraftPlus Premium will unlock all the extra features, including … Continue reading

\n

The post Why you should upgrade to UpdraftPlus Premium appeared first on UpdraftPlus. UpdraftPlus - Backup, restore and migration plugin for WordPress.

\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Melvin Braide\";s: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:24789:\"

\n

The free version of UpdraftPlus is fully functional and a great option for a lot of WordPress users. However, we’ve developed a brilliant range of features to make it even better. UpdraftPlus Premium will unlock all the extra features, including a Migrate/Clone tool, multiple online storage options, detailed scheduling, reporting, encryption and much more.

\n

UpdraftPlus Premium also gives you free upgrades and support for a year and plus 1 Gigabyte of UpdraftVault storage, which means you can back up the site without needing to pay for space with a separate remote storage location like Dropbox.

\n

Why go Premium?

\n

No platform offers you the kind of tools to make a highly functional website quite like WordPress. As the platform currently hosts over 40% of the world’s websites, it is a natural target for malicious attacks by bad actors looking to exploit any vulnerabilities. 

\n

As well as the threat of hacks, your website could also fall victim to other issues, such as a server crash due to simple use errors, or the installation of badly coded plugins or themes. In just a few seconds, everything you’ve worked so hard to build could be taken away – leaving you to start again from scratch. 

\n

To avoid such a catastrophic loss happening to you, your first task when setting up a WordPress site should be installing the WordPress backup plugin UpdraftPlus – The world’s number 1, most trusted backup and restore plugin. 

\n

You might think you have every security box checked and have your website running perfectly, with no indication that there are any problems on the horizon. While that may be the case, it doesn’t mean a problem isn’t waiting just around the corner. Think of UpdraftPlus premium as website insurance. If your website never suffers a problem, then great. If it does however, you can rest easy knowing you are in safe hands and UpdraftPlus will be there to help you get all your hard work back.

\n

The benefits of UpdraftPlus Premium: Backup, restore and clone

\n

As the world’s most popular and highest rated WordPress backup plugin, UpdraftPlus Premium comes loaded with features and tools:

\n

Backup
\n
UpdraftPlus can perform total manual or/and scheduled backups of all your site’s databases, files, themes, and plugins. 

\n

Restore
\n
Just having a backup can be pretty useless if it doesn’t you are not able to perform a prompt and secure restoration. With UpdraftPlus Premium, you can restore your backup file directly from the control panel of your site.

\n

Schedule
\n
With most backup plugins, you are left to manually backup your website whenever you remember. With UpdraftPlus Premium, you can set your site up to automatically backup every 2, 4, 8, or 12 hours, daily, weekly, bi-weekly or monthly.

\n

\"\"

\n

Trusted
\n
UpdraftPlus Premium has earned the trust of its considerable user base as it has provided a trusted service to the WordPress community for around a decade. Little wonder why it is the most installed and highest rated backup plugin on the market.

\n

Easy to use
\n
UpdraftPlus Premium comes with an engaging, easy-to-use interface that lets you backup and restore data with just a click of a button.

\n

What additional benefits does UpdraftPlus Premium have?
\n
If you use the free version of the UpdraftPlus plugin, you will be familiar with many of the basic features available. If you upgrade to the Premium version, you get the following features in addition to those being available on the free version: 

\n

Incremental backups

\n

\"\"

\n

Incremental backups (as the name implies) only backups changes that have occurred in your WordPress website since your last full backup. If your last backup was 12 hours ago, the new incremental backup will backup only what has changed in those last twelve hours (e.g. a new photo was uploaded) and add it to the main backup file. By making incremental backups, you use less resources and have quicker backup times.

\n

Other backup plugins will typically backup the whole website every time you make a backup. As you can imagine, this is a huge waste of your time and resources which UpdraftPlus Premium prevents by employing the incremental backup process. 

\n

Cloning and migration
\n
UpdraftPlus Premium has features that can clone your whole website and/or migrate it to a new domain of your choice in minutes. With UpdraftPlus Premium, you are also given free UpdraftClone tokens, so you are no longer required to buy tokens when you want to clone your site.

\n

The UpdraftClone and Updraft Migrator features are a way for you to effectively and seamlessly “copy and paste” your website to any URL with no hosting difficulties. 

\n

Prompt customer support
\n
UpdraftPlus Premium also comes with quick access to expert help and support from our product developers whenever you require it. You can reach us through a web forum and ticket. 

\n

Pre-update backups
\n
Other backup plugins typically stand idle when you update a plugin, theme or core updates, putting your site at considerable risk. But UpdraftPlus Premium will ask you if you would like to first back up your site before any update begins. This way, you will have the most recent version of your WordPress site before you make any changes. 

\n

Non-WP files and databases
\n
Besides the obvious WordPress website core data that will be secured, an UpdraftPlus Premium backup will also cover non-WordPress files and databases such as third party themes. Total security is guaranteed. 

\n

Network/multisite
\n
UpdraftPlus Premium works with WordPress Network and Multisite to back them up securely. The backup and restore control panel can be found in the dashboard of the network. You can even restore individual websites within the network.

\n

Advanced scheduling
\n
The premium version also allows you to set a specific time for your website’s backup to be created, retained, or deleted.

\n

More database options
\n
A typical backup plugin saves all your data somewhere safe for when a problem hits your site. Should this happen, you are left with your backup copy to restore your website to its previous state.

\n

But there are times when the hacker doesn’t just attack your site, but also attempts to steal or delete your backup files. With UpdraftPlus Premium and its enhanced security and industry-standard AES (Advanced Encryption Standard) encryptor, your WordPress site’s database (including files, passwords, and list of users) is encrypted and secured in the backup location of your choice. 

\n

Thorough logging and reporting
\n
UpdraftPlus Premium keeps you updated on what’s going on with your website in real time. All backup activities are carefully recorded and the backup status is displayed in the WordPress admin panel – together with warnings and error messages. You will also receive a report for when a backup completes, as well as file checksums for backup integrity verification. UpdraftPlus Premium also allows users to send reports to Slack if desired.

\n

Importer feature
\n
This is easily one of the coolest features of UpdraftPlus Premium. Some backup plugins are just that – they backup your website without any capacity to restore it at a later point. Besides restoring its own backup files, UpdraftPlus Premium also allows you to restore backups from other WordPress backup plugins with our importer feature.

\n

Lock settings
\n
Much like your smartphones, the Premium version locks access to UpdraftPlus using a password. This gives you the ability to control which site users can access the backup dashboard and files. 

\n

WP-CLI
\n
WP-CLI stands for WordPress Command Line Interface. CLI functions by relaying commands to a program using a line of text. So, instead of the cumbersome drag-and-drop plugins, you simply backup files using typed lines of text. 

\n

While it may require some technical know-how, this can be a very handy feature for those that require it. 

\n

Zero ads
\n
No one enjoys random ads popping up, disrupting your workflow and taking up your valuable time. The Premium version of UpdraftPlus removes all adverts and lets you get to work away without any distractions

\n

UpdraftPlus Premium packages
\n

\nIf you decide to upgrade to UpdraftPlus Premium, you can choose between five packages with an annual subscription. Automatic renewal gives you 40% off on renewal. What’s more? You can cancel at any time. 

\n

Personal
\n
Supports up to 2 websites.
\nAll UpdraftPlus add-ons. Free updates. Free support. Free storage of 1GB UpdraftVault. UpdraftClone tokens.

\n

Business
\n
Supports up to 10 websites.
\nAll UpdraftPlus add-ons. Free updates. Free support. Free storage of 1GB UpdraftVault. UpdraftClone tokens.

\n

Agency
\n
Supports up to 35 websites.
\n
All UpdraftPlus add-ons. Free updates. Free support. Free storage of 1GB UpdraftVault. UpdraftClone tokens. 

\n

Enterprise
\n
Supports an unlimited number of websites.
\nAll UpdraftPlus add-ons. Free updates. Free support. Free storage of 1GB UpdraftVault. UpdraftClone tokens.

\n

Gold
\n
All of the same features as Enterprise, but with unlimited annual UpdraftCentral Cloud subscription and an additional 50GB UpdraftVault storage

\n

Why would you need to upgrade?

\n

Premium can be particularly useful if you run a bigger or more complex website (or multiple websites), have a history of being targeted by malicious hackers, make a lot of changes daily to your site, or feel the limited “backup and restore” options of the UpdraftPlus free plugin no longer meet your needs. 

\n

If you fall within the above categories, then UpdraftPlus Premium is for you. 

\n

Benefit from UpdraftVault with UpdraftPlus Premium

\n

\"\"

\n

This is a built-in storage option for your UpdraftPlus backups that gives you 1GB – 50GB of free storage tailored specifically for the UpdraftPlus platform. This can save you the headache of setting up and calibrating third-party storage systems like Google Drive. 

\n

More remote storage options

\n

With the free version of UpdraftPlus, you can backup your website directly to UpdraftVault, Dropbox, Google Drive, Amazon S3 (or compatible), Rackspace Cloud, FTP, DreamObjects, Openstack Swift and email. 

\n

The Premium version expands your options and allows you to backup directly to Microsoft OneDrive, Microsoft Azure, Google Cloud Storage, Backblaze B2, SFTP, SCP, and WebDAV.

\n

Free and premium versions of UpdraftPlus plugin compared

\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\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
\"\"\"\"
Get it fromWordPress.OrgUpdraftPlus.Com
\nBuy It Now!
Backup WordPress files and database\"\"\"\"
Translated into over 16 languages\"\"\"\"
Restore from backup\"\"\"\"
Backup to remote storage\"\"\"\"
Dropbox, Google Drive, FTP, S3, Rackspace, Email\"\"\"\"
Incremental Backups\"\"\"\"
Free 1Gb for UpdraftVault\"\"\"\"
WebDAV, Microsoft OneDrive, Google Cloud, Microsoft Azure, SFTP/SCP, encrypted FTP, BackBlaze\"\"\"\"
Backup extra files and databases\"\"\"\"
Migrate / clone (i.e. copy) websites\"\"\"\"
Basic email reporting\"\"\"\"
Advanced reporting features\"\"\"\"
Automatic backup when updating WP/plugins/themes\"\"\"\"
Send backups to multiple remote destinations\"\"\"\"
Database encryption\"\"\"\"
Restore backups from other plugins\"\"\"\"
No advertising links on UpdraftPlus settings page\"\"\"\"
Scheduled backups\"\"\"\"
Fix backup time\"\"\"\"
Network/Multisite support\"\"\"\"
Lock settings access\"\"\"\"
Browse backup contents in WordPress\"\"\"\"
Download individual files from backup in WordPress\"\"\"\"
Personal support\"\"\"\"
Run from WP-CLI\"\"\"\"
Restore a backup from other plugins\"\"\"\"
\n

Is UpdraftPlus Premium worth it?

\n

For all the additional benefits and perks that it brings, we feel that UpdraftPlus Premium is more than worth it if you truly value the safety and security of your WordPress site. With Premium you can exercise full control over your backups by unlocking enhanced security features and free updates. From accessing the latest UpdraftPlus Add-Ons for a year, to free support via our forum and email for a year, extra remote storage options, incremental backups and free tokens for UpdraftClone.

\n

UpdraftPlus Premium is what total security and peace of mind looks like! 

\n

The post Why you should upgrade to UpdraftPlus Premium appeared first on UpdraftPlus. UpdraftPlus - Backup, restore and migration plugin for WordPress.

\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:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:75:\"\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"How to create an eLearning course site with WordPress \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://updraftplus.com/how-to-create-an-elearning-course-site-with-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Mar 2022 15:33:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:7:{i:0;a:5:{s:4:\"data\";s:20:\"Other 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:\"\";}i:1;a:5:{s:4:\"data\";s:21:\"create elearning site\";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:9:\"eLearning\";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:12:\"how to setup\";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:9:\"marketing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:4:\"sell\";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:5:{s:4:\"data\";s:9:\"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:34:\"https://updraftplus.com/?p=1383049\";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:753:\"

The world of online course creation can seem daunting to a new instructor. Creating courses might be your forte, but making a website to sell them might seem like a difficult and daunting task. Fear not, as this blog will … Continue reading

\n

The post How to create an eLearning course site with WordPress  appeared first on UpdraftPlus. UpdraftPlus - Backup, restore and migration plugin for WordPress.

\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Wayne Mullins\";s: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:20460:\"

The world of online course creation can seem daunting to a new instructor. Creating courses might be your forte, but making a website to sell them might seem like a difficult and daunting task. Fear not, as this blog will help you set up an create an eLearning course site with WordPress.

\n

We understand that most people might not be adept at coding or do not have the resources to create a full-fledged website by themselves. That is where WordPress comes in. Little needs to be said about the popularity of WordPress, as it is one of the most popular CMS platforms in the world. WordPress lets users have a large number of nifty plugins and themes and can assist in setting up a site by simply dragging and dropping elements, without much need for coding. 

\n

For this blog, we are going to go through a comprehensive view of tools that will let us set up an LMS site with ease. 

\n

Why have an LMS site?

\n

eLearning has seen a huge increase in popularity recently due to Covid and the rise of remote working/teaching. Business analytics forums state that 1.2 billion students were affected by the closure of educational institutions worldwide during the pandemic. Filling the gap with a fast and well-designed solution for students is the right way to make an impact in this massive market. 

\n

What do you need to start off? We are going to talk about two main elements in this article:

\n
    \n
  • Robust LMS plugin  
  • \n
  • Innovative design pack
  • \n
\n

This may seem like a small list of tools to start with, but trust us they will be more than enough.

\n

Making the right plugin choice

\n

To build our LMS site on WordPress we need to be careful about the plugins that we use. While some plugins are paid versions only, they also usually offer free counterparts under the “freemium” model. We are only going to focus on an LMS plugin that offers us enough functionality without having to spend any money. But how do you determine if a plugin is right for you? An LMS plugin should offer some basic features that we need to start with:

\n
    \n
  • Functional course building
  • \n
  • Easy to use quiz building 
  • \n
  • Student interaction with email 
  • \n
  • Easy payment integration 
  • \n
  • Certificates
  • \n
  • Theme starter pack integrations 
  • \n
\n

Taking into consideration these features, we suggest using Tutor LMS. Tutor LMS offers these features on its free version for users. Although there are more features on the paid version, we will only look at the free features of plugins in this blog. 

\n

Installing the required plugin

\n

Now that you have decided on the choice of plugin, lets go ahead and start setting it up. To install Tutor LMS navigate first to your WordPress admin panel. From the admin panel go to Plugins > Add new, search for Tutor LMS then install and activate the plugin. In a few seconds, it should be ready to be used.

\n

\"\"

\n

Beautifying with a theme

\n

Before heading on to configure our LMS plugin, you must first decide on a theme for your site. The Tutor Starter theme not only is free, but it also was made to be integrated with the LMS plugin – Tutor LMS. This makes life a whole lot easier. To install Tutor Starter from the WordPress admin panel we find the Appearance tab. From there we click on Add new and search for “Tutor Starter”. Go ahead and hit install and activate.

\n

You need to add one more plugin before you can start utilizing Tutor Starter properly. In the same way you installed the other plugins, you need to navigate to ‘Add a new plugin’ and search for TutorMate. TutorMate is a companion demo importer plugin for the Tutor Starter theme. After finding it from Plugins > Add new, click to install and activate it.

\n

\"\"

\n

You are now geared up and ready to go. Next, ass a starter pack from Tutor Starter to your WordPress site. From the WordPress admin panel, go to Tutor Starter > Starter sites. Here you can find 4 unique demo starter sites for different types of sites according to what you want to create. 

\n

\"\"

\n

You can preview the site before you choose to import it. When you have decided which site to import simply click the Import button. This will bring up the following popup.

\n

\"\"

\n

From here you can choose to launch with either the Elementor or Gutenberg page builder. For this blog, we are going to go ahead and run it with Gutenberg. Tutor Starter shows us if we are missing any plugin/add-ons when we try to make this installation. So if you are missing Qubely and WooCommerce, they will be automatically installed and activated. 

\n

Once the import is complete you can see the site by clicking “View your site”.

\n

\"\"

\n

To edit the page, go to the WordPress admin dashboard and select Customize your site. This takes us to the customization page where you can access all the background changes, widgets, and much more. 

\n

\"\"

\n

Configuring the back-end

\n

Next you need to add some content to the site. Here starts your main journey to create content for your LMS site. To set up our courses, navigate to WpAdmin > Tutor LMS > Courses. From the courses menu, we select Add new to add a new course to the siteYou are then taken to the main course menu. Here input the course name, add a course description, add a video if needed and any other information. There is also a featured image section that can utilized to let students know what the course is about. 

\n

\"\"

\n

Now comes the most important task to setting up your course – adding topics and quizzes. To add a quiz first you need to create a topic. Scroll down on the course menu to the course builder section where you can find a button that adds a new topic. Once you have added a new topic, you can now add a lesson and/or a quiz to that topic. 

\n

Adding a lesson

\n

\"\"

\n

Clicking the lesson button brings up the pop up that lets you configure the lesson. Add the lesson title, the actual lesson text and the lesson video, should it be required. We can even add attachments to the lesson.

\n

Create the quiz

\n

After you have created a lesson, for evaluation you will also need to add a quiz. Right beside the lesson button, click the Quiz button to show the quiz pop up menu. 

\n

\"\"

\n

First, add a quiz name and hit Save & Next. The next tab gives the quiz question option where you can configure what type of questions you want to set for students. Next, select the name of the question and access the drop-down Question Type menu that shows all the different types of questions that can be set. 

\n

The options on this pop up are easy to navigate and self-explanatory, so setting it up is a breeze regardless of what type of question selected. 

\n

How do you monetize your course?

\n

Once you are done with the basic setup of the course, what then comes next? The basic setup is followed by adding payments options to the course in order to generate revenue. To achieve that, you will need to integrate WooCommerce as it is one of the most popular eCommerce solutions. It is very easy to use and integrate and also FREE. 

\n

WooCommerce integration and sales

\n

For selling your courses as a product on your LMS site, you need to have a payment system such as WooCommerce added. As previously stated, WooCommerce is automatically installed, so you do not need to separately go through the installation process. To activate WooCommerce on Tutor LMS head to Dashboard > Tutor LMS > Settings > Monetization (Tab) > WooCommerce (Enable).

\n

\"\"

\n

You have now activated WooCommerce for your LMS site. But how do you link the course to WooCommerce so that it can be paid for? You need to first create a Product to sell through WooCommerce. Go to the WordPress admin panel where you will see a new Product tab. From there, you can add a new product. You can set the name, price and even sale price of the said product. 

\n

\"\"

\n

To finalize the monetization process, you must link this product to the course we want to sell. In order to do this, you need to edit the course and scroll down to the Add Product section, where you can find a drop-down menu of the product you created and link it to your course. Make sure to select the paid option and you are all set!

\n

\"\"

\n

For any other course you want to monetize, just follow these steps and you should have no problems.. 

\n

Market your courses 

\n

The next task is to market your course to potential students, making sure that your product reaches its desired customer.

\n
    \n
  • Identify your target students
  • \n
  • Advertise your courses efficiently for maximum outreach
  • \n
  • Promote your course as industry-standard material
  • \n
  • Offer sales to increase student
  • \n
  • Get affiliate personnel to promote your material elsewhere
  • \n
\n

While this is definitely not a comprehensive list, these tips could help you get on track with marketing your course.

\n

Backing up your site

\n

Now you have set up your eLearning site, it is important to remember to back it up using UpdraftPlus. As the world’s leading and most trusted backup plugin, UpdraftPlus can be trusted to keep your site and all the hard work you put into creating it, safe and secure. 

\n

Just download the free plugin, or upgrade to UpdraftPlus Premium, for total peace of mind.

\n

Best of luck with your site and if you have any queries, feel free to comment below.

\n

The post How to create an eLearning course site with WordPress  appeared first on UpdraftPlus. UpdraftPlus - Backup, restore and migration plugin for WordPress.

\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:\"\";}}}}}i:9;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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"What crucial WordPress security issues you be aware of?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://updraftplus.com/crucial-wordpress-security-issues-you-should-be-aware-of/\";s: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, 04 Mar 2022 15:04: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:8:\"category\";a:6:{i:0;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:1;a:5:{s:4:\"data\";s:6:\"attack\";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:\"issues\";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:10:\"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:\"\";}i:4;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:5;a:5:{s:4:\"data\";s:9:\"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:34:\"https://updraftplus.com/?p=1376226\";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:796:\"

WordPress is the most popular Content Management System (CMS) worldwide, powering more than a third of all websites existing today. Its popularity also makes it an appealing target for cyberattacks, and it too has its share of security vulnerabilities. While … Continue reading

\n

The post What crucial WordPress security issues you be aware of? appeared first on UpdraftPlus. UpdraftPlus - Backup, restore and migration plugin for WordPress.

\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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"PuiMun Beh\";s: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:15995:\"

WordPress is the most popular Content Management System (CMS) worldwide, powering more than a third of all websites existing today. Its popularity also makes it an appealing target for cyberattacks, and it too has its share of security vulnerabilities.

\n

While WordPress may have its own security issues, it isn’t the only platform that is targeted by cyber-criminals, with the theft of data becoming a highly lucrative business. From personal blogs to large business websites, no one has been safe from the potential threats posed by malicious actors. Regardless of if your site is a small blog or a large business, you need to know how to secure your website regardless of its purpose. Top of any list should be installing the UpdraftPlus backup plugin – The world’s most popular and highest rated backup plugin. In the event that you should ever find yourself a victim of an attack, you can at least rest easy in the knowledge that you have a secure backup in order to restore your site. 

\n

Here are some WordPress Security issues you should know about and how to address them;

\n

1. The plugin system

\n

Part of what makes WordPress so popular is its modularity. You can quickly and easily expand base features thanks to the plugin system. Unfortunately, not all plugins are created to the high standard of UpdraftPlus, and some can introduce new vulnerabilities to your WordPress website.

\n

The ‘PWA for WP & AMP’ Plugin for example exposed over 20,000 WordPress websites to an access control vulnerability. Due to allowing arbitrary file uploads, attackers could remotely execute code and take over websites running this plugin. Users should be aware of two things from this example. The first is to limit the number of plugins used on your WordPress site where possible. The second is to ensure that all your applications – including plugins and WordPress version – are regularly updated. Updates sometimes add new features, but their main purpose is to address newly discovered vulnerabilities.

\n

2. SQL injection attacks

\n

Data is a new and highly valuable commodity, and one reason attackers target websites is to steal information held in the database. SQL Injections are a popular way of doing this, with attackers embedding SQL commands on websites that may compromise sensitive information.

\n

If you’re wondering how this happens, think about the average form you’ll find on many WordPress websites. It allows users to provide information such as usernames and passwords for login. If an attacker inserts SQL code in these fields, the underlying database may process that code and perform unexpected actions. There are several ways you can work to prevent SQL injection attacks, but the most common is to implement strict input validation. For example, you can add the following code to your .htaccess file to ensure that all input is excluded from SQL queries;

\n\n\n\n\n\n\n
# Enable rewrite engine

\n

RewriteEngine On

\n

RewriteRule ^(.*)$ – [F,L]

\n

# Block MySQL injections

\n

RewriteCond %{QUERY_STRING} [a-zA-Z0-9_]=https:// [OR]

\n

RewriteCond %{QUERY_STRING} [a-zA-Z0-9_]=(\\.\\.//?)+ [OR]

\n

RewriteCond %{QUERY_STRING} [a-zA-Z0-9_]=/([a-z0-9_.]//?)+ [NC,OR]

\n

RewriteCond %{QUERY_STRING} \\=PHP[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12} [NC,OR]

\n

RewriteCond %{QUERY_STRING} (\\.\\./|\\.\\.) [OR]

\n

RewriteCond %{QUERY_STRING} ftp\\: [NC,OR]

\n

RewriteCond %{QUERY_STRING} http\\: [NC,OR]

\n

RewriteCond %{QUERY_STRING} https\\: [NC,OR]

\n

RewriteCond %{QUERY_STRING} \\=\\|w\\| [NC,OR]

\n

RewriteCond %{QUERY_STRING} ^(.*)/self/(.*)$ [NC,OR]

\n

RewriteCond %{QUERY_STRING} ^(.*)cPath=https://(.*)$ [NC,OR]

\n

RewriteCond %{QUERY_STRING} (\\<|%3C).*script.*(\\>|%3E) [NC,OR]

\n

RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]

\n

RewriteCond %{QUERY_STRING} (\\<|%3C).*iframe.*(\\>|%3E) [NC,OR]

\n

RewriteCond %{QUERY_STRING} (<|%3C)([^i]*i)+frame.*(>|%3E) [NC,OR]

\n

RewriteCond %{QUERY_STRING} GLOBALS(=|\\[|\\%[0-9A-Z]{0,2}) [OR]

\n

RewriteCond %{QUERY_STRING} _REQUEST(=|\\[|\\%[0-9A-Z]{0,2}) [OR]

\n

RewriteCond %{QUERY_STRING} ^.*(\\[|\\]|\\(|\\)|<|>).* [NC,OR]

\n

RewriteCond %{QUERY_STRING} (NULL|OUTFILE|LOAD_FILE) [OR]

\n

RewriteCond %{QUERY_STRING} (\\./|\\../|\\…/)+(motd|etc|bin) [NC,OR]

\n

RewriteCond %{QUERY_STRING} (localhost|loopback|127\\.0\\.0\\.1) [NC,OR]

\n

RewriteCond %{QUERY_STRING} (<|>|’|%0A|%0D|%27|%3C|%3E|%00) [NC,OR]

\n

RewriteCond %{QUERY_STRING} concat[^\\(]*\\( [NC,OR]

\n

RewriteCond %{QUERY_STRING} union([^s]*s)+elect [NC,OR]

\n

RewriteCond %{QUERY_STRING} union([^a]*a)+ll([^s]*s)+elect [NC,OR]

\n

RewriteCond %{QUERY_STRING} (sp_executesql) [NC]

\n

RewriteRule ^(.*)$ – [F,L]

\n

 

\n

3. Cross-site scripting attacks

\n
\"\"

How the XSS attack works (Source: Imperva)

\n

Like SQL Injection attacks, Cross-site scripting (XSS) attempts to inject malicious code into vulnerable websites. One example is posting information that leads website users to another website that then attempts to steal personal data. This scenario can be potentially dangerous as the other website may not even need input from the user. It can simply scan user identification data such as cookies, session tokens, and more.

\n

You can generally prevent XSS attacks using a Web Application Firewall (WAF). This useful tool allows you to block specific traffic on websites. Most top WordPress security plugins like All In One WP Security & Firewall will have this feature available. If you’d rather focus on running your WordPress website and want to leave the security to the experts, One WP Security & Firewall is a great way of doing so. It not only helps you block most types of attacks but can also scan your WordPress website for vulnerabilities you may not be aware of.

\n

4. Brute force attacks

\n

WordPress makes use of a credential system that allows administrators and other authorized users to access its control features. Unfortunately, many users tend to employ weak and obvious passwords. Brute force passwords make use of scripts that make continued and multiple login attempts to a WordPress site until successful. The script works with a database that holds a dictionary of commonly used usernames and passwords (such as Admin and Password1), hoping that you would have chosen one of these combinations without putting any thought into the risks.

\n

You can however do several things to limit the effectiveness of brute force attacks;

\n
    \n
  • Use complex and unique passwords
  • \n
  • Block access to the WordPress admin directory
  • \n
  • Add Two-factor Authentication (2FA)
  • \n
  • Disable directory browsing
  • \n
  • Limit the number of login attempts
  • \n
\n

5. Distributed denial of service attacks

\n
\"\"

DDoS attacks try to overcome a website with a flood of requests mimicking visitor traffic. (Source: dnsstuff)

\n

Distributed denial of service (DDoS) attacks consist of a massive flood of requests that target a website. This flood is intended to cripple a website, making it inaccessible to regular visitors as it is unable to cope with the volume of requests. While DDoS isn’t unique to WordPress, websites based on this CMS can be especially vulnerable since it requires more resources to serve a request than regular static websites. It can be impossible to guard against a determined DDoS flood however, but even the most prominent organisations have succumbed to these attacks. One example of this was the GitHub attack in 2018, in which their website came under a 20-minute DDoS flood attack.

\n

Generally smaller websites aren’t the target of such a massive volume. To mitigate against smaller DDoS waves however, make sure you use a Content Distribution Network (CDN). These server networks can help balance incoming loads and help in serving content faster.

\n

6. Cross-site request forgery attacks

\n

Cross-site request forgery (CSRF) attacks are another way attackers force web applications like WordPress to recognize fake authentications. WordPress is especially vulnerable since these sites generally hold many user credentials. The CSRF attack is similar to the XSS attack discussed earlier in many ways. The main difference is that CSRF needs an authentication session, while XSS does not. Regardless, the ultimate aim is to divert a visitor towards an alternative location to steal data.

\n

CSRF prevention needs implementation at the plugin level in most cases. Developers typically use anti-CSRF tokens to link sessions with specific users. WordPress website owners can only rely on plugin updates and general website hardening techniques to help prevent CSRF attacks.

\n

Some hardening actions that may work include;

\n
    \n
  • Disabling file editors
  • \n
  • Targeted blocks of PHO execution
  • \n
  • 2FA implementation
  • \n
\n

Final thoughts on WordPress security issues

\n

There is sometimes a misconception that WordPress is a highly vulnerable web application. However, this isn’t an entirely fair claim. Part of it stems from the widespread use of WordPress, but a more significant reason is the failure of website owners to take the necessary proper precautions.

\n

We often take security for granted without thinking of the consequences of choosing a simple password. Website owners however have to take responsibility not just for the integrity of their websites, but also for the safety of their users’ data.

\n

Author Profile

\n

Pui Mun Beh is a digital marketer of WebRevenue

\n

The post What crucial WordPress security issues you be aware of? appeared first on UpdraftPlus. UpdraftPlus - Backup, restore and migration plugin for WordPress.

\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: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:29:\"https://updraftplus.com/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:19:{s:12:\"content-type\";s:23:\"text/xml; charset=utf-8\";s:4:\"vary\";s:46:\"Sec-Fetch-Dest, Sec-Fetch-Mode, Sec-Fetch-Site\";s:12:\"feedburnerv2\";s:0:\"\";s:13:\"last-modified\";s:29:\"Mon, 12 Sep 2022 17:56:59 GMT\";s:13:\"cache-control\";s:46:\"no-cache, no-store, max-age=0, must-revalidate\";s:6:\"pragma\";s:8:\"no-cache\";s:7:\"expires\";s:29:\"Mon, 01 Jan 1990 00:00:00 GMT\";s:4:\"date\";s:29:\"Tue, 13 Sep 2022 02:50:31 GMT\";s:23:\"content-security-policy\";s:75:\"require-trusted-types-for \'script\';report-uri /_/RaichuFeedServer/cspreport\";s:18:\"permissions-policy\";s:152:\"ch-ua-arch=*, ch-ua-bitness=*, ch-ua-full-version=*, ch-ua-full-version-list=*, ch-ua-model=*, ch-ua-wow64=*, ch-ua-platform=*, ch-ua-platform-version=*\";s:9:\"accept-ch\";s:168:\"Sec-CH-UA-Arch, Sec-CH-UA-Bitness, Sec-CH-UA-Full-Version, Sec-CH-UA-Full-Version-List, Sec-CH-UA-Model, Sec-CH-UA-WoW64, Sec-CH-UA-Platform, Sec-CH-UA-Platform-Version\";s:9:\"report-to\";s:137:\"{\"group\":\"RaichuFeedServer\",\"max_age\":2592000,\"endpoints\":[{\"url\":\"https://csp.withgoogle.com/csp/report-to/RaichuFeedServer/external\"}]}\";s:26:\"cross-origin-opener-policy\";s:41:\"same-origin; report-to=\"RaichuFeedServer\"\";s:28:\"cross-origin-resource-policy\";s:9:\"same-site\";s:16:\"content-encoding\";s:4:\"gzip\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:6:\"server\";s:3:\"GSE\";s:7:\"alt-svc\";s:162:\"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\"\";}}s:5:\"build\";s:14:\"20220104144308\";}','no'),(682729,'_transient_timeout_feed_mod_e0061ca2fa5b884e483872aa34d3e7eb','1663080631','no'),(682730,'_transient_feed_mod_e0061ca2fa5b884e483872aa34d3e7eb','1663037431','no'),(682731,'_transient_timeout_updraftplus_dashboard_news','1663080631','no'),(682732,'_transient_updraftplus_dashboard_news','','no'),(682733,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1663080631','no'),(682734,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','','no'),(682811,'_transient_timeout_wpseo_unindexed_post_link_count','1663128111','no'),(682812,'_transient_wpseo_unindexed_post_link_count','0','no'),(682821,'_site_transient_yoast_translations_wordpress-seo-premium','a:2:{s:21:\"wordpress-seo-premium\";a:1:{s:12:\"translations\";a:28:{i:0;a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-09-01T12:12:09+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:95:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}i:1;a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-08-31T20:38:54+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:95:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}i:2;a:7:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-08-31T20:38:53+00:00\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-cs_CZ.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"cs\";i:1;s:3:\"ces\";}}i:3;a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-09-01T12:12:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}i:4;a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-09-01T12:23:07+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}i:5;a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-09-01T12:13:30+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}i:6;a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-09-01T12:12:30+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}i:7;a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-09-04T11:09:33+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}i:8;a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-09-01T12:12:57+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:95:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}i:9;a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-09-01T12:22:29+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}i:10;a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-09-01T12:12:26+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}i:11;a:7:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-08-31T20:38:50+00:00\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:95:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-el.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"el\";i:1;s:3:\"ell\";}}i:12;a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-09-01T12:13:03+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}i:13;a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-09-01T12:13:05+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}i:14;a:7:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-08-31T20:38:52+00:00\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-id_ID.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"id\";i:1;s:3:\"ind\";}}i:15;a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-09-02T13:00:19+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}i:16;a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-08-31T20:38:52+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:95:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}i:17;a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-09-01T12:13:35+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}i:18;a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-08-31T20:38:51+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}i:19;a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-08-31T20:38:51+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}i:20;a:7:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-08-31T20:38:51+00:00\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-ro_RO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ro\";i:1;s:3:\"ron\";}}i:21;a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-08-31T20:38:51+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}i:22;a:7:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-08-31T20:38:51+00:00\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-sr_RS.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sr\";i:1;s:3:\"srp\";}}i:23;a:7:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-08-31T20:38:53+00:00\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-es_MX.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}i:24;a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-09-08T07:02:54+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}i:25;a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-09-10T16:21:57+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}i:26;a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-09-01T12:13:51+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:98:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}i:27;a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:8:\"19.3-RC7\";s:7:\"updated\";s:25:\"2022-08-31T20:38:50+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:95:\"https://packages.translationspress.com/yoast/wordpress-seo-premium/wordpress-seo-premium-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:13:\"_last_checked\";i:1663041942;}','no'),(682824,'tadv_settings','a:10:{s:9:\"toolbar_1\";s:106:\"formatselect,bold,italic,blockquote,bullist,numlist,alignleft,aligncenter,alignright,link,unlink,undo,redo\";s:9:\"toolbar_2\";s:103:\"fontselect,fontsizeselect,outdent,indent,pastetext,removeformat,charmap,wp_more,forecolor,table,wp_help\";s:9:\"toolbar_3\";s:0:\"\";s:9:\"toolbar_4\";s:0:\"\";s:21:\"toolbar_classic_block\";s:123:\"formatselect,bold,italic,blockquote,bullist,numlist,alignleft,aligncenter,alignright,link,forecolor,backcolor,table,wp_help\";s:13:\"toolbar_block\";s:67:\"core/code,core/image,core/strikethrough,tadv/mark,tadv/removeformat\";s:18:\"toolbar_block_side\";s:46:\"core/superscript,core/subscript,core/underline\";s:12:\"panels_block\";s:44:\"tadv/color-panel,tadv/background-color-panel\";s:7:\"options\";s:44:\"menubar_block,menubar,merge_toolbars,advlist\";s:7:\"plugins\";s:13:\"table,advlist\";}','yes'),(682825,'tadv_admin_settings','a:2:{s:7:\"options\";s:95:\"classic_paragraph_block,no_autop,table_resize_bars,table_grid,table_tab_navigation,table_advtab\";s:16:\"disabled_editors\";s:0:\"\";}','yes'),(682826,'tadv_version','5600','yes'),(682841,'_site_transient_timeout_available_translations','1663053213','no'),(682842,'_site_transient_available_translations','a:127:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-05-13 15:59:22\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-17 11:49:29\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.2/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:6:\"4.8.20\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.20/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-09-08 17:57:56\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.2/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:6:\"4.9.21\";s:7:\"updated\";s:19:\"2019-10-29 07:54:22\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.9.21/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-01 15:31:45\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Напред\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:6:\"5.4.11\";s:7:\"updated\";s:19:\"2020-10-31 08:48:37\";s:12:\"english_name\";s:20:\"Bengali (Bangladesh)\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.11/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-10-30 03:24:38\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:33:\"མུ་མཐུད་དུ།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-10-16 21:42:36\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-15 09:50:05\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.2/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-11-15 22:52:34\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-16 20:33:10\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.2/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-12 13:35:53\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsæt\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-07-22 10:24:47\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/5.8.2/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-13 18:06:50\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-13 18:09:57\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.8.2/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_AT\";a:8:{s:8:\"language\";s:5:\"de_AT\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-07-10 12:19:50\";s:12:\"english_name\";s:16:\"German (Austria)\";s:11:\"native_name\";s:21:\"Deutsch (Österreich)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/de_AT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-07-22 10:24:20\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:3:\"dsb\";a:8:{s:8:\"language\";s:3:\"dsb\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-09-02 11:17:46\";s:12:\"english_name\";s:13:\"Lower Sorbian\";s:11:\"native_name\";s:16:\"Dolnoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.2/dsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"dsb\";i:3;s:3:\"dsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Dalej\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-06 23:28:37\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.2/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-09-09 10:29:25\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-09-25 03:05:46\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-09-03 10:52:30\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-09-25 03:09:33\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-10-04 18:08:37\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-10-12 16:17:36\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.2/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-09-14 13:29:01\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_DO\";a:8:{s:8:\"language\";s:5:\"es_DO\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-10-08 14:32:50\";s:12:\"english_name\";s:28:\"Spanish (Dominican Republic)\";s:11:\"native_name\";s:33:\"Español de República Dominicana\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/es_DO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_EC\";a:8:{s:8:\"language\";s:5:\"es_EC\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-09-02 02:19:31\";s:12:\"english_name\";s:17:\"Spanish (Ecuador)\";s:11:\"native_name\";s:19:\"Español de Ecuador\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/es_EC.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-09-02 13:13:00\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-10-04 20:53:18\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-09-02 02:19:00\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-18 06:07:34\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-06 11:31:19\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-14 16:02:22\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_UY\";a:8:{s:8:\"language\";s:5:\"es_UY\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-31 18:33:26\";s:12:\"english_name\";s:17:\"Spanish (Uruguay)\";s:11:\"native_name\";s:19:\"Español de Uruguay\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/es_UY.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PR\";a:8:{s:8:\"language\";s:5:\"es_PR\";s:7:\"version\";s:6:\"5.4.11\";s:7:\"updated\";s:19:\"2020-04-29 15:36:59\";s:12:\"english_name\";s:21:\"Spanish (Puerto Rico)\";s:11:\"native_name\";s:23:\"Español de Puerto Rico\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.11/es_PR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:6:\"5.2.16\";s:7:\"updated\";s:19:\"2019-03-02 06:35:01\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.16/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CR\";a:8:{s:8:\"language\";s:5:\"es_CR\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-07-30 00:35:05\";s:12:\"english_name\";s:20:\"Spanish (Costa Rica)\";s:11:\"native_name\";s:22:\"Español de Costa Rica\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/es_CR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2020-08-12 08:38:59\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8-beta/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-11 09:49:40\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.2/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-10-20 12:04:09\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"fa_AF\";a:8:{s:8:\"language\";s:5:\"fa_AF\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-11-20 16:34:11\";s:12:\"english_name\";s:21:\"Persian (Afghanistan)\";s:11:\"native_name\";s:31:\"(فارسی (افغانستان\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/fa_AF.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-09-17 11:15:06\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.2/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-25 12:20:46\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-07 15:52:29\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-22 13:54:46\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:3:\"fur\";a:8:{s:8:\"language\";s:3:\"fur\";s:7:\"version\";s:6:\"4.8.20\";s:7:\"updated\";s:19:\"2018-01-29 17:32:35\";s:12:\"english_name\";s:8:\"Friulian\";s:11:\"native_name\";s:8:\"Friulian\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.20/fur.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"fur\";i:3;s:3:\"fur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-10-26 18:07:06\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:6:\"4.9.21\";s:7:\"updated\";s:19:\"2018-09-14 12:33:48\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.21/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:6:\"4.4.28\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.4.28/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-09-20 10:01:27\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"המשך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:6:\"5.4.11\";s:7:\"updated\";s:19:\"2020-11-06 12:34:38\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.11/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"जारी रखें\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-15 18:51:47\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.2/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:3:\"hsb\";a:8:{s:8:\"language\";s:3:\"hsb\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-09-02 11:18:08\";s:12:\"english_name\";s:13:\"Upper Sorbian\";s:11:\"native_name\";s:17:\"Hornjoserbšćina\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.2/hsb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"hsb\";i:3;s:3:\"hsb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:4:\"Dale\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-13 09:45:39\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Folytatás\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-10-25 11:28:10\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:6:\"4.9.21\";s:7:\"updated\";s:19:\"2018-12-11 10:40:02\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.21/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-14 16:49:52\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-11-27 05:18:09\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.2/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"次へ\";}}s:5:\"jv_ID\";a:8:{s:8:\"language\";s:5:\"jv_ID\";s:7:\"version\";s:6:\"4.9.21\";s:7:\"updated\";s:19:\"2019-02-16 23:58:56\";s:12:\"english_name\";s:8:\"Javanese\";s:11:\"native_name\";s:9:\"Basa Jawa\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.21/jv_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"jv\";i:2;s:3:\"jav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Nerusaké\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-09-21 06:43:12\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-14 17:37:38\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.2/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Kemmel\";}}s:2:\"kk\";a:8:{s:8:\"language\";s:2:\"kk\";s:7:\"version\";s:6:\"4.9.21\";s:7:\"updated\";s:19:\"2018-07-10 11:35:44\";s:12:\"english_name\";s:6:\"Kazakh\";s:11:\"native_name\";s:19:\"Қазақ тілі\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.21/kk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kk\";i:2;s:3:\"kaz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Жалғастыру\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:6:\"5.2.16\";s:7:\"updated\";s:19:\"2019-06-10 16:18:28\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.2.16/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:2:\"kn\";a:8:{s:8:\"language\";s:2:\"kn\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-10-03 06:17:02\";s:12:\"english_name\";s:7:\"Kannada\";s:11:\"native_name\";s:15:\"ಕನ್ನಡ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.2/kn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"kn\";i:2;s:3:\"kan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"ಮುಂದುವರಿಸು\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-06 13:14:34\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-07 16:32:30\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی‎\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.2/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"به‌رده‌وام به‌\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"ຕໍ່​ໄປ\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-23 12:35:40\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-09-17 20:04:07\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.2/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:6:\"5.4.11\";s:7:\"updated\";s:19:\"2020-07-01 09:16:57\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.4.11/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Үргэлжлүүлэх\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:6:\"4.9.21\";s:7:\"updated\";s:19:\"2019-11-22 15:32:08\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.9.21/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:6:\"5.5.10\";s:7:\"updated\";s:19:\"2022-03-11 13:52:22\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.5.10/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.2.33\";s:7:\"updated\";s:19:\"2017-12-26 11:57:10\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.33/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ဆောင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-10-21 04:11:41\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:6:\"5.2.16\";s:7:\"updated\";s:19:\"2020-05-31 16:07:59\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/5.2.16/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:43:\"जारी राख्नुहोस्\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-11-14 12:51:29\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/5.8.2/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-12 17:53:09\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-06 13:55:08\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-03-18 10:59:16\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:6:\"4.8.20\";s:7:\"updated\";s:19:\"2017-08-25 10:03:08\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/4.8.20/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2022-01-05 07:10:03\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.3.29\";s:7:\"updated\";s:19:\"2015-12-02 21:41:29\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.3.29/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"دوام ورکړه\";}}s:5:\"pt_AO\";a:8:{s:8:\"language\";s:5:\"pt_AO\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-11-27 16:28:47\";s:12:\"english_name\";s:19:\"Portuguese (Angola)\";s:11:\"native_name\";s:20:\"Português de Angola\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/pt_AO.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-09-08 19:39:30\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-09-15 08:56:03\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:10:\"pt_PT_ao90\";a:8:{s:8:\"language\";s:10:\"pt_PT_ao90\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-09-09 21:40:55\";s:12:\"english_name\";s:27:\"Portuguese (Portugal, AO90)\";s:11:\"native_name\";s:17:\"Português (AO90)\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/translation/core/5.8.2/pt_PT_ao90.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2022-01-05 18:07:22\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-16 23:35:59\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:3:\"snd\";a:8:{s:8:\"language\";s:3:\"snd\";s:7:\"version\";s:6:\"5.4.11\";s:7:\"updated\";s:19:\"2020-07-07 01:53:37\";s:12:\"english_name\";s:6:\"Sindhi\";s:11:\"native_name\";s:8:\"سنڌي\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/translation/core/5.4.11/snd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"sd\";i:2;s:3:\"snd\";i:3;s:3:\"snd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"اڳتي هلو\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-10 07:31:29\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:3:\"skr\";a:8:{s:8:\"language\";s:3:\"skr\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-10-15 15:37:00\";s:12:\"english_name\";s:7:\"Saraiki\";s:11:\"native_name\";s:14:\"سرائیکی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.8.2/skr.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"skr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"جاری رکھو\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-11-23 08:11:23\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Nadaljuj\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-02 20:06:53\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.2/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-08-01 21:21:06\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-16 08:39:17\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:2:\"sw\";a:8:{s:8:\"language\";s:2:\"sw\";s:7:\"version\";s:6:\"5.3.13\";s:7:\"updated\";s:19:\"2019-10-13 15:35:35\";s:12:\"english_name\";s:7:\"Swahili\";s:11:\"native_name\";s:9:\"Kiswahili\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.3.13/sw.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sw\";i:2;s:3:\"swa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Endelea\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:5:\"ta_LK\";a:8:{s:8:\"language\";s:5:\"ta_LK\";s:7:\"version\";s:6:\"4.2.33\";s:7:\"updated\";s:19:\"2015-12-03 01:07:44\";s:12:\"english_name\";s:17:\"Tamil (Sri Lanka)\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.2.33/ta_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"தொடர்க\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-12-28 02:58:38\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.2/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:6:\"4.8.20\";s:7:\"updated\";s:19:\"2017-09-30 09:04:29\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.8.20/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-10-04 12:16:39\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:6:\"4.9.21\";s:7:\"updated\";s:19:\"2021-07-03 18:41:33\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:16:\"ئۇيغۇرچە\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.9.21/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-10-10 16:46:39\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.2/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:6:\"5.4.11\";s:7:\"updated\";s:19:\"2020-04-09 11:17:33\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/5.4.11/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-02-28 12:02:22\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Davom etish\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-11-16 07:16:28\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/5.8.2/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-11-16 00:27:59\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:8:\"5.8-beta\";s:7:\"updated\";s:19:\"2021-06-27 10:46:14\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:67:\"https://downloads.wordpress.org/translation/core/5.8-beta/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"5.8.2\";s:7:\"updated\";s:19:\"2021-11-05 11:55:27\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/5.8.2/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}}','no'),(682850,'_transient_timeout_wpseo_total_unindexed_terms_limited','1663043816','no'),(682851,'_transient_wpseo_total_unindexed_terms_limited','24','no'),(682965,'_transient_timeout_wpseo_total_unindexed_posts_limited','1663058814','no'),(682966,'_transient_wpseo_total_unindexed_posts_limited','26','no'),(682967,'_transient_timeout_wpseo_site_information_quick','1663057974','no'),(682968,'_transient_wpseo_site_information_quick','O:8:\"stdClass\":2:{s:3:\"url\";s:33:\"https://translucent.mesoishop.com\";s:13:\"subscriptions\";a:0:{}}','no'),(682972,'_transient_timeout_settings_errors','1663058014','no'),(682973,'_transient_settings_errors','a:1:{i:0;a:4:{s:7:\"setting\";s:11:\"redis-cache\";s:4:\"code\";s:6:\"dropin\";s:7:\"message\";s:21:\"Object cache enabled.\";s:4:\"type\";s:7:\"updated\";}}','no'),(682975,'amp-options','a:17:{s:13:\"theme_support\";s:6:\"reader\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:9:\"analytics\";a:0:{}s:23:\"all_templates_supported\";b:1;s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:7:\"version\";s:5:\"2.3.0\";s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"paired_url_structure\";s:9:\"query_var\";s:17:\"plugin_configured\";b:0;s:24:\"delete_data_at_uninstall\";b:1;s:18:\"use_native_img_tag\";b:0;s:15:\"mobile_redirect\";b:1;s:17:\"late_defined_slug\";N;s:18:\"suppressed_plugins\";a:0:{}s:18:\"sandboxing_enabled\";b:0;s:16:\"sandboxing_level\";i:1;s:21:\"primary_theme_support\";N;}','no'),(682976,'amp_url_validation_queue','a:3:{s:4:\"urls\";a:1:{i:0;s:44:\"https://translucent.mesoishop.com/test-robs/\";}s:9:\"timestamp\";i:1663058592;s:3:\"env\";a:3:{s:5:\"theme\";a:1:{s:11:\"translucent\";s:3:\"1.0\";}s:7:\"plugins\";a:32:{s:7:\"404page\";s:6:\"11.3.1\";s:26:\"advanced-custom-fields-pro\";s:6:\"5.12.2\";s:16:\"tinymce-advanced\";s:5:\"5.6.0\";s:3:\"amp\";s:5:\"2.3.0\";s:17:\"code-syntax-block\";s:5:\"3.1.1\";s:14:\"contact-form-7\";s:5:\"5.5.3\";s:10:\"duplicator\";s:5:\"1.5.0\";s:25:\"embed-calendly-scheduling\";s:3:\"3.0\";s:18:\"youtube-embed-plus\";s:6:\"14.1.2\";s:13:\"header-footer\";s:5:\"3.2.5\";s:6:\"iframe\";s:3:\"4.5\";s:7:\"imagify\";s:3:\"2.0\";s:15:\"cf7-hubspot-pro\";s:5:\"1.2.1\";s:13:\"popup-builder\";s:6:\"4.1.13\";s:34:\"post-tags-and-categories-for-pages\";s:5:\"1.4.1\";s:8:\"raw-html\";s:5:\"1.6.3\";s:11:\"redirection\";s:5:\"5.3.2\";s:11:\"redis-cache\";s:5:\"2.2.0\";s:26:\"reveal-ids-for-wp-admin-25\";s:5:\"1.5.4\";s:34:\"sendgrid-email-delivery-simplified\";s:6:\"1.11.8\";s:9:\"revslider\";s:6:\"6.5.23\";s:14:\"social-warfare\";s:5:\"4.3.0\";s:26:\"ssl-insecure-content-fixer\";s:5:\"2.7.2\";s:11:\"updraftplus\";s:7:\"1.22.19\";s:8:\"wpdiscuz\";s:5:\"7.4.2\";s:15:\"wp-file-manager\";s:5:\"7.1.6\";s:14:\"wp-google-maps\";s:6:\"9.0.10\";s:5:\"wpide\";s:5:\"3.4.1\";s:23:\"wp-phpmyadmin-extension\";s:7:\"5.2.0.7\";s:14:\"duplicate-post\";s:3:\"4.4\";s:13:\"wordpress-seo\";s:4:\"19.1\";s:21:\"wordpress-seo-premium\";s:4:\"17.7\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:6:\"reader\";}}}','yes'),(682979,'autoptimize_html_minify_inline','on','yes'),(682980,'perflab_modules_settings','a:5:{s:21:\"images/dominant-color\";a:1:{s:7:\"enabled\";s:1:\"1\";}s:19:\"images/webp-uploads\";a:1:{s:7:\"enabled\";s:1:\"1\";}s:33:\"site-health/audit-full-page-cache\";a:1:{s:7:\"enabled\";s:1:\"1\";}s:24:\"site-health/webp-support\";a:1:{s:7:\"enabled\";s:1:\"1\";}s:49:\"object-cache/persistent-object-cache-health-check\";a:1:{s:7:\"enabled\";s:1:\"1\";}}','yes'),(683027,'disable_webp_by_default_plugin_version','0.7.0','yes'),(683028,'disable_webp_by_default_database_version','50','yes'),(683029,'disable_webp_transforms','1','yes'),(683109,'updraft_combine_jobs_around','1663387200','yes'),(683110,'WpFc_api_key','38e1c71f2a64bd7f7450cb8f047308ec','yes'),(683111,'WpFastestCachePreLoad','{\"page\":0,\"number\":\"4\",\"order\":0}','yes'),(683112,'WpFastestCache','{\"wpFastestCachePreload\":\"on\",\"wpFastestCachePreload_page\":\"on\",\"wpFastestCachePreload_number\":\"4\",\"wpFastestCachePreload_order\":\"homepage,post,category,page,tag,attachment,customposttypes,customTaxonomies,number,restart,order\",\"wpFastestCacheNewPost\":\"on\",\"wpFastestCacheNewPost_type\":\"all\",\"wpFastestCacheUpdatePost\":\"on\",\"wpFastestCacheUpdatePost_type\":\"post\",\"wpFastestCacheMinifyHtml\":\"on\",\"wpFastestCacheCombineJs\":\"on\",\"wpFastestCacheGzip\":\"on\",\"wpFastestCacheLBC\":\"on\",\"wpFastestCacheDisableEmojis\":\"on\",\"wpFastestCacheLanguage\":\"eng\"}','yes'),(683113,'wpfc-group','','yes'),(683114,'WpFastestCacheCDN','[{\"id\":\"cloudflare\",\"cdnurl\":\"wpfc\",\"originurl\":\"VAflV76YzOHTM0W9KEl-hVt1RiA5S0quUqZjq9bm\",\"file_types\":\"\",\"keywords\":\"\",\"excludekeywords\":\"\",\"zone_id\":\"a:4:{s:7:\\\"success\\\";b:1;s:6:\\\"zoneid\\\";s:32:\\\"80ed10428d29ae88485fd9426be1b3b6\\\";s:4:\\\"plan\\\";s:4:\\\"free\\\";s:4:\\\"time\\\";i:1663302743;}\"}]','yes'),(683115,'wp-optimize-installed-for','1663304188','yes'),(683116,'wp-optimize-newly-activated','1','yes'),(683117,'wp-optimize-schedule','false','yes'),(683118,'wp-optimize-last-optimized','Never','yes'),(683119,'wp-optimize-schedule-type','wpo_weekly','yes'),(683120,'wp-optimize-retention-enabled','false','yes'),(683121,'wp-optimize-retention-period','2','yes'),(683122,'wp-optimize-enable-admin-menu','false','yes'),(683123,'wp-optimize-total-cleaned','0','yes'),(683124,'wp-optimize-auto','a:7:{s:8:\"optimize\";s:5:\"false\";s:9:\"revisions\";s:4:\"true\";s:9:\"transient\";s:5:\"false\";s:5:\"spams\";s:4:\"true\";s:6:\"drafts\";s:4:\"true\";s:10:\"unapproved\";s:5:\"false\";s:5:\"trash\";s:4:\"true\";}','yes'),(683125,'wp-optimize-settings','a:16:{s:19:\"user-orphanedtables\";s:4:\"true\";s:13:\"user-postmeta\";s:5:\"false\";s:15:\"user-trackbacks\";s:5:\"false\";s:13:\"user-optimize\";s:4:\"true\";s:16:\"user-commentmeta\";s:5:\"false\";s:14:\"user-revisions\";s:4:\"true\";s:15:\"user-orphandata\";s:5:\"false\";s:14:\"user-transient\";s:5:\"false\";s:10:\"user-spams\";s:4:\"true\";s:16:\"user-attachments\";s:5:\"false\";s:14:\"user-pingbacks\";s:5:\"false\";s:11:\"user-drafts\";s:4:\"true\";s:17:\"user-repairtables\";s:4:\"true\";s:15:\"user-unapproved\";s:4:\"true\";s:10:\"user-trash\";s:4:\"true\";s:13:\"last_saved_in\";s:5:\"3.2.7\";}','yes'),(683126,'wpo_minify_config','a:51:{s:5:\"debug\";b:0;s:19:\"enabled_css_preload\";b:0;s:18:\"enabled_js_preload\";b:0;s:11:\"hpreconnect\";s:0:\"\";s:8:\"hpreload\";s:0:\"\";s:7:\"loadcss\";b:0;s:10:\"remove_css\";b:0;s:17:\"critical_path_css\";s:0:\"\";s:31:\"critical_path_css_is_front_page\";s:0:\"\";s:30:\"preserve_settings_on_uninstall\";b:1;s:22:\"disable_when_logged_in\";b:0;s:16:\"default_protocol\";s:7:\"dynamic\";s:17:\"html_minification\";b:0;s:16:\"clean_header_one\";b:0;s:13:\"emoji_removal\";b:1;s:18:\"merge_google_fonts\";b:1;s:19:\"enable_display_swap\";b:1;s:18:\"remove_googlefonts\";b:1;s:13:\"gfonts_method\";s:7:\"inherit\";s:15:\"fawesome_method\";s:7:\"inherit\";s:10:\"enable_css\";b:0;s:23:\"enable_css_minification\";b:0;s:21:\"enable_merging_of_css\";b:0;s:23:\"remove_print_mediatypes\";b:0;s:10:\"inline_css\";b:0;s:9:\"enable_js\";b:0;s:22:\"enable_js_minification\";b:1;s:20:\"enable_merging_of_js\";b:1;s:15:\"enable_defer_js\";s:10:\"individual\";s:13:\"defer_js_type\";s:5:\"defer\";s:12:\"defer_jquery\";b:0;s:18:\"enable_js_trycatch\";b:0;s:19:\"exclude_defer_login\";b:1;s:7:\"cdn_url\";s:0:\"\";s:9:\"cdn_force\";b:0;s:9:\"async_css\";s:0:\"\";s:8:\"async_js\";s:0:\"\";s:24:\"disable_css_inline_merge\";b:1;s:6:\"ualist\";a:8:{i:0;s:12:\"x11.*fox\\/54\";i:1;s:20:\"oid\\s4.*xus.*ome\\/62\";i:2;s:12:\"x11.*ome\\/62\";i:3;s:5:\"oobot\";i:4;s:5:\"ighth\";i:5;s:5:\"tmetr\";i:6;s:6:\"eadles\";i:7;s:5:\"ingdo\";}s:9:\"blacklist\";a:0:{}s:11:\"ignore_list\";a:0:{}s:10:\"exclude_js\";s:0:\"\";s:11:\"exclude_css\";s:0:\"\";s:23:\"edit_default_exclutions\";b:0;s:18:\"merge_allowed_urls\";s:0:\"\";s:7:\"enabled\";b:0;s:17:\"last-cache-update\";i:1663321090;s:14:\"plugin_version\";s:5:\"0.0.0\";s:14:\"cache_lifespan\";i:30;s:25:\"merge_inline_extra_css_js\";b:1;s:19:\"include_ui_elements\";b:1;}','yes'),(683127,'updraft_task_manager_dbversion','1.1','yes'),(683128,'wpo_update_version','3.2.7','yes'),(683129,'wp-optimize-webp_converters','a:1:{i:0;s:2:\"gd\";}','yes'),(683130,'wp-optimize-install-or-update-notice-show-time','1663304190','yes'),(683131,'updraft_lock_wpo_page_cache_preloader_creating_tasks','0','no'),(683132,'wp-optimize-is_gzip_compression_enabled','gzip','yes'),(683133,'updraft_lock_wpo_minify_preloader_creating_tasks','0','no'),(683134,'wp-optimize-corrupted-tables-count','0','yes'),(683136,'Re_Smush_It_Task','1663314624','yes'),(683137,'wpo_cache_config','a:20:{s:19:\"enable_page_caching\";b:0;s:23:\"page_cache_length_value\";i:24;s:22:\"page_cache_length_unit\";s:5:\"hours\";s:17:\"page_cache_length\";i:86400;s:32:\"cache_exception_conditional_tags\";a:1:{i:0;s:0:\"\";}s:20:\"cache_exception_urls\";a:1:{i:0;s:0:\"\";}s:23:\"cache_exception_cookies\";a:1:{i:0;s:0:\"\";}s:30:\"cache_exception_browser_agents\";a:1:{i:0;s:0:\"\";}s:22:\"enable_sitemap_preload\";b:0;s:23:\"enable_schedule_preload\";s:1:\"0\";s:21:\"preload_schedule_type\";s:22:\"wpo_use_cache_lifespan\";s:21:\"enable_mobile_caching\";s:1:\"1\";s:19:\"enable_user_caching\";s:1:\"1\";s:8:\"site_url\";s:34:\"https://translucent.mesoishop.com/\";s:24:\"enable_cache_per_country\";b:0;s:19:\"permalink_structure\";s:30:\"/%year%/%monthnum%/%postname%/\";s:7:\"uploads\";s:39:\"/var/www/translucent/wp-content/uploads\";s:22:\"purge_cloudflare_cache\";s:1:\"0\";s:17:\"wpo_cache_cookies\";a:0:{}s:25:\"wpo_cache_query_variables\";a:0:{}}','yes'),(683148,'wp-optimize-compression_server','resmushit','yes'),(683149,'wp-optimize-lossy_compression','1','yes'),(683150,'wp-optimize-back_up_original','1','yes'),(683151,'wp-optimize-back_up_delete_after','1','yes'),(683152,'wp-optimize-back_up_delete_after_days','50','yes'),(683153,'wp-optimize-image_quality','65','yes'),(683154,'wp-optimize-show_smush_metabox','show','yes'),(683157,'wp-optimize-failed_task_count','66','yes'),(683158,'wp-optimize-completed_task_count','101','yes'),(683159,'wp-optimize-total_bytes_saved','1152500','yes'),(683160,'wp-optimize-total_percent_saved','4.0891089108911','yes'),(683161,'wp-optimize-autosmush','1','yes'),(683163,'wp-optimize-wpo_last_minify_preload_type','sitemap','yes'),(683165,'wp-optimize-wpo_last_minify_preload','1663314896','yes'),(683169,'_transient_timeout_sendgrid_api_key_check','1663324986','no'),(683170,'_transient_sendgrid_api_key_check','valid','no'),(683171,'_transient_timeout_sendgrid_api_key_stats_check','1663324988','no'),(683172,'_transient_sendgrid_api_key_stats_check','valid','no'),(683186,'w3tc_extensions_hooks','{\"actions\":[],\"filters\":[],\"next_check_date\":1663406662}','yes'); /*!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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=176357 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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 (1,2,'_wp_page_template','index.php'),(6,2,'_edit_last','4'),(7,2,'_edit_lock','1635531484:4'),(17,8,'_form','
\n
\n [text* first-name class:form-control placeholder \" First Name\"]\n
\n
\n [text* last-name class:form-control placeholder \"Last Name\"]\n
\n \n
\n
\n
\n [email* email class:form-control placeholder \"Email\"]\n
\n
\n [tel* phone class:form-control placeholder \"Phone Number\"]\n
\n
\n\n
\n
\n [textarea message class:form-control placeholder \"Message\"]\n
\n
\n
\n
\n [submit class:btn \"Submit\"]\n
\n
'),(18,8,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:68:\"DEV SERVER - TC Form Submissions: From Translucent Contact Page Form\";s:6:\"sender\";s:32:\"results@translucentcomputing.com\";s:9:\"recipient\";s:99:\"results@translucentcomputing.com, robert@translucentcomputing.com, bsankar@translucentcomputing.com\";s:4:\"body\";s:82:\"From: [first-name] [last-name] \nEmail: <[email]>\nPhone: [phone]\nMessage:\n[message]\";s:18:\"additional_headers\";s:17:\"Reply-To: [email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(19,8,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:54:\"Service Inquiry | Thank you for contacting Translucent\";s:6:\"sender\";s:50:\"Bradford Sankar \";s:9:\"recipient\";s:7:\"[email]\";s:4:\"body\";s:244:\"Hi [first-name],\n\nWe would like to express our thanks for your interest in our cloud native services.\nWe will review your request with our team and be in touch shortly.\n\nYours sincerely,\nBradford Sankar\nYour Translucent Cloud Native Specialist!\";s:18:\"additional_headers\";s:60:\"Reply-To: Bradford Sankar \";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(20,8,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(21,8,'_additional_settings',''),(22,8,'_locale','en_US'),(24,10,'_edit_lock','1634159528:4'),(26,14,'_edit_lock','1631034472:17'),(27,16,'_edit_lock','1662983266:21'),(28,18,'_edit_lock','1652420092:17'),(29,16,'_edit_last','21'),(30,16,'_wp_page_template','machine-learning.php'),(31,18,'_edit_last','17'),(32,18,'_wp_page_template','devops.php'),(188,10,'_edit_last','4'),(189,10,'_wp_page_template','about.php'),(190,38,'_edit_lock','1652419010:17'),(191,38,'_edit_last','17'),(192,38,'_wp_page_template','case-studies.php'),(211,42,'_menu_item_type','custom'),(212,42,'_menu_item_menu_item_parent','0'),(213,42,'_menu_item_object_id','42'),(214,42,'_menu_item_object','custom'),(215,42,'_menu_item_target',''),(216,42,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(217,42,'_menu_item_xfn',''),(218,42,'_menu_item_url',''),(220,43,'_menu_item_type','post_type'),(221,43,'_menu_item_menu_item_parent','42'),(222,43,'_menu_item_object_id','38'),(223,43,'_menu_item_object','page'),(224,43,'_menu_item_target',''),(225,43,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(226,43,'_menu_item_xfn',''),(227,43,'_menu_item_url',''),(229,44,'_edit_lock','1652419263:17'),(230,14,'_edit_last','17'),(231,14,'_wp_page_template','microservices.php'),(232,44,'_edit_last','17'),(233,44,'_wp_page_template','digital.php'),(234,46,'_edit_lock','1652419104:17'),(235,46,'_edit_last','17'),(236,46,'_wp_page_template','cases.php'),(240,50,'_wp_attached_file','2019/01/sickkids.jpg'),(241,50,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:355;s:6:\"height\";i:174;s:4:\"file\";s:20:\"2019/01/sickkids.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"sickkids-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"sickkids-300x147.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:147;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:{}}}'),(242,51,'_wp_attached_file','2019/01/logo1.png'),(243,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:105;s:6:\"height\";i:34;s:4:\"file\";s:17:\"2019/01/logo1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(244,52,'_wp_attached_file','2019/01/logo2.png'),(245,52,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:169;s:6:\"height\";i:36;s:4:\"file\";s:17:\"2019/01/logo2.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"logo2-150x36.png\";s:5:\"width\";i:150;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:{}}}'),(246,53,'_wp_attached_file','2019/01/logo3.png'),(247,53,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:135;s:6:\"height\";i:34;s:4:\"file\";s:17:\"2019/01/logo3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(248,54,'_wp_attached_file','2019/01/logo4.png'),(249,54,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:62;s:6:\"height\";i:37;s:4:\"file\";s:17:\"2019/01/logo4.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(250,55,'_wp_attached_file','2019/01/logo5.png'),(251,55,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:89;s:6:\"height\";i:27;s:4:\"file\";s:17:\"2019/01/logo5.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(252,57,'_edit_lock','1657984817:4'),(253,57,'_edit_last','17'),(254,57,'_wp_page_template','contact.php'),(255,59,'_menu_item_type','post_type'),(256,59,'_menu_item_menu_item_parent','0'),(257,59,'_menu_item_object_id','57'),(258,59,'_menu_item_object','page'),(259,59,'_menu_item_target',''),(260,59,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(261,59,'_menu_item_xfn',''),(262,59,'_menu_item_url',''),(264,60,'_edit_lock','1652418353:17'),(265,60,'_edit_last','17'),(266,60,'_wp_page_template','process.php'),(267,62,'_menu_item_type','post_type'),(268,62,'_menu_item_menu_item_parent','0'),(269,62,'_menu_item_object_id','60'),(270,62,'_menu_item_object','page'),(271,62,'_menu_item_target',''),(272,62,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(273,62,'_menu_item_xfn',''),(274,62,'_menu_item_url',''),(276,63,'_wp_attached_file','2019/01/sickkids-1.jpg'),(277,63,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1226;s:6:\"height\";i:871;s:4:\"file\";s:22:\"2019/01/sickkids-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"sickkids-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"sickkids-1-300x213.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"sickkids-1-768x546.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:546;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"sickkids-1-1024x727.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:727;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"sickkids-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(280,528,'_wp_attached_file','2019/01/devops-page.jpg'),(281,528,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:577;s:4:\"file\";s:23:\"2019/01/devops-page.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"devops-page-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"devops-page-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"devops-page-768x231.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"devops-page-1024x308.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:308;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:23:\"devops-page-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(282,529,'_wp_attached_file','2019/01/mobile-mockup.jpg'),(283,529,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:210;s:6:\"height\";i:210;s:4:\"file\";s:25:\"2019/01/mobile-mockup.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"mobile-mockup-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:{}}}'),(293,531,'_wp_attached_file','2019/01/bg-process.jpg'),(294,531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:792;s:4:\"file\";s:22:\"2019/01/bg-process.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"bg-process-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"bg-process-300x124.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"bg-process-768x317.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:317;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"bg-process-1024x422.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:422;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"bg-process-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(296,532,'_wp_attached_file','2019/01/bg-about.jpg'),(297,532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:20:\"2019/01/bg-about.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"bg-about-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"bg-about-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"bg-about-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"bg-about-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:20:\"bg-about-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(298,533,'_wp_attached_file','2019/01/bg-interna-ml.png'),(299,533,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:998;s:6:\"height\";i:762;s:4:\"file\";s:25:\"2019/01/bg-interna-ml.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-interna-ml-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-interna-ml-300x229.png\";s:5:\"width\";i:300;s:6:\"height\";i:229;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"bg-interna-ml-768x586.png\";s:5:\"width\";i:768;s:6:\"height\";i:586;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:25:\"bg-interna-ml-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(300,534,'_wp_attached_file','2019/01/bg-ml.jpg'),(301,534,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:691;s:4:\"file\";s:17:\"2019/01/bg-ml.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"bg-ml-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"bg-ml-300x108.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:108;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"bg-ml-768x276.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"bg-ml-1024x369.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:369;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:17:\"bg-ml-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(302,535,'_wp_attached_file','2019/01/bg-micro.jpg'),(303,535,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:752;s:4:\"file\";s:20:\"2019/01/bg-micro.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"bg-micro-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"bg-micro-300x118.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"bg-micro-768x301.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:301;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"bg-micro-1024x401.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:20:\"bg-micro-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(304,536,'_wp_attached_file','2019/01/bg-dt.jpg'),(305,536,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:752;s:4:\"file\";s:17:\"2019/01/bg-dt.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"bg-dt-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"bg-dt-300x118.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"bg-dt-768x301.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:301;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"bg-dt-1024x401.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:17:\"bg-dt-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(308,538,'_wp_attached_file','2019/01/dt1.jpg'),(309,538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/dt1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"dt1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"dt1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(310,539,'_wp_attached_file','2019/01/dt9.jpg'),(311,539,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/dt9.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"dt9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"dt9-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(312,540,'_wp_attached_file','2019/01/dt8.jpg'),(313,540,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/dt8.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"dt8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"dt8-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(314,541,'_wp_attached_file','2019/01/dt7.jpg'),(315,541,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/dt7.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"dt7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"dt7-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(316,542,'_wp_attached_file','2019/01/dt6.jpg'),(317,542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/dt6.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"dt6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"dt6-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(318,543,'_wp_attached_file','2019/01/dt5.jpg'),(319,543,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/dt5.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"dt5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"dt5-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(320,544,'_wp_attached_file','2019/01/dt3.jpg'),(321,544,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/dt3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"dt3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"dt3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(322,545,'_wp_attached_file','2019/01/dt2.jpg'),(323,545,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/dt2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"dt2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"dt2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(324,546,'_wp_attached_file','2019/01/ms1.jpg'),(325,546,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/ms1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ms1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ms1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(326,547,'_wp_attached_file','2019/01/ms8.jpg'),(327,547,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/ms8.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ms8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ms8-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(328,548,'_wp_attached_file','2019/01/ms7.jpg'),(329,548,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/ms7.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ms7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ms7-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(330,549,'_wp_attached_file','2019/01/ms6.jpg'),(331,549,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/ms6.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ms6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ms6-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(332,550,'_wp_attached_file','2019/01/ms5.jpg'),(333,550,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/ms5.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ms5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ms5-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(334,551,'_wp_attached_file','2019/01/ms4.jpg'),(335,551,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/ms4.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ms4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ms4-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(336,552,'_wp_attached_file','2019/01/ms3.jpg'),(337,552,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/ms3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ms3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ms3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(338,553,'_wp_attached_file','2019/01/ms2.jpg'),(339,553,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/ms2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ms2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ms2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(340,554,'_wp_attached_file','2019/01/ml1.jpg'),(341,554,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/ml1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ml1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ml1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(342,555,'_wp_attached_file','2019/01/ml8.jpg'),(343,555,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/ml8.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ml8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ml8-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(344,556,'_wp_attached_file','2019/01/ml7.jpg'),(345,556,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/ml7.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ml7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ml7-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(346,557,'_wp_attached_file','2019/01/ml6.jpg'),(347,557,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/ml6.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ml6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ml6-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(348,558,'_wp_attached_file','2019/01/ml5.jpg'),(349,558,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/ml5.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ml5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ml5-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(350,559,'_wp_attached_file','2019/01/ml4.jpg'),(351,559,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/ml4.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ml4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ml4-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(352,560,'_wp_attached_file','2019/01/ml3.jpg'),(353,560,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/ml3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ml3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ml3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(354,561,'_wp_attached_file','2019/01/ml2.jpg'),(355,561,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:15:\"2019/01/ml2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ml2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ml2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(356,578,'_wp_attached_file','2019/01/dev1.jpg'),(357,578,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:16:\"2019/01/dev1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"dev1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"dev1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(358,579,'_wp_attached_file','2019/01/dev8.jpg'),(359,579,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:16:\"2019/01/dev8.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"dev8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"dev8-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(360,580,'_wp_attached_file','2019/01/dev7.jpg'),(361,580,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:16:\"2019/01/dev7.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"dev7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"dev7-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(362,581,'_wp_attached_file','2019/01/dev6.jpg'),(363,581,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:16:\"2019/01/dev6.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"dev6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"dev6-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(364,582,'_wp_attached_file','2019/01/dev5.jpg'),(365,582,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:16:\"2019/01/dev5.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"dev5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"dev5-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(366,583,'_wp_attached_file','2019/01/dev4.jpg'),(367,583,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:16:\"2019/01/dev4.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"dev4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"dev4-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(368,584,'_wp_attached_file','2019/01/dev3.jpg'),(369,584,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:16:\"2019/01/dev3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"dev3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"dev3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(370,585,'_wp_attached_file','2019/01/dev2.jpg'),(371,585,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:16:\"2019/01/dev2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"dev2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"dev2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(372,586,'_wp_attached_file','2019/01/Volentix.jpg'),(373,586,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:812;s:6:\"height\";i:494;s:4:\"file\";s:20:\"2019/01/Volentix.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Volentix-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Volentix-300x183.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"Volentix-768x467.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:20:\"Volentix-500x494.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:494;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:{}}}'),(374,587,'_wp_attached_file','2019/01/US-Army.png'),(375,587,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:212;s:6:\"height\";i:237;s:4:\"file\";s:19:\"2019/01/US-Army.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"US-Army-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:{}}}'),(376,588,'_wp_attached_file','2019/01/Prometheus.png'),(377,588,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:112;s:4:\"file\";s:22:\"2019/01/Prometheus.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Prometheus-150x112.png\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Prometheus-300x75.png\";s:5:\"width\";i:300;s:6:\"height\";i:75;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:{}}}'),(378,589,'_wp_attached_file','2019/01/Spinnaker.png'),(379,589,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:209;s:6:\"height\";i:241;s:4:\"file\";s:21:\"2019/01/Spinnaker.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Spinnaker-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:{}}}'),(380,590,'_wp_attached_file','2019/01/Tensorflow.jpg'),(381,590,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:246;s:6:\"height\";i:205;s:4:\"file\";s:22:\"2019/01/Tensorflow.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Tensorflow-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:{}}}'),(382,591,'_wp_attached_file','2019/01/BMO.jpg'),(383,591,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:452;s:6:\"height\";i:111;s:4:\"file\";s:15:\"2019/01/BMO.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"BMO-150x111.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:111;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"BMO-300x74.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:74;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:{}}}'),(384,592,'_wp_attached_file','2019/01/Caliper.png'),(385,592,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:19:\"2019/01/Caliper.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Caliper-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:{}}}'),(386,593,'_wp_attached_file','2019/01/Excellus-Blue-Cross.png'),(387,593,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:484;s:6:\"height\";i:104;s:4:\"file\";s:31:\"2019/01/Excellus-Blue-Cross.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Excellus-Blue-Cross-150x104.png\";s:5:\"width\";i:150;s:6:\"height\";i:104;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Excellus-Blue-Cross-300x64.png\";s:5:\"width\";i:300;s:6:\"height\";i:64;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:{}}}'),(388,594,'_wp_attached_file','2019/01/Jenkins.png'),(389,594,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:299;s:6:\"height\";i:168;s:4:\"file\";s:19:\"2019/01/Jenkins.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Jenkins-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:{}}}'),(390,595,'_wp_attached_file','2019/01/Jupyter.png'),(391,595,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:224;s:4:\"file\";s:19:\"2019/01/Jupyter.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Jupyter-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:{}}}'),(392,596,'_wp_attached_file','2019/01/Loanpro.png'),(393,596,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:230;s:6:\"height\";i:219;s:4:\"file\";s:19:\"2019/01/Loanpro.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Loanpro-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:{}}}'),(396,598,'_wp_attached_file','2019/01/download.png'),(397,598,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:531;s:6:\"height\";i:401;s:4:\"file\";s:20:\"2019/01/download.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"download-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"download-300x227.png\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:20:\"download-500x401.png\";s:5:\"width\";i:500;s:6:\"height\";i:401;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:{}}}'),(398,599,'_wp_attached_file','2019/01/full_logo.png'),(399,599,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:682;s:6:\"height\";i:170;s:4:\"file\";s:21:\"2019/01/full_logo.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"full_logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"full_logo-300x75.png\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:21:\"full_logo-500x170.png\";s:5:\"width\";i:500;s:6:\"height\";i:170;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:{}}}'),(400,600,'_wp_attached_file','2019/01/google-cloud-platform.png'),(401,600,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:186;s:6:\"height\";i:186;s:4:\"file\";s:33:\"2019/01/google-cloud-platform.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"google-cloud-platform-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:{}}}'),(404,602,'_wp_attached_file','2019/01/logo@1x.png'),(405,602,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:496;s:6:\"height\";i:127;s:4:\"file\";s:19:\"2019/01/logo@1x.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"logo@1x-150x127.png\";s:5:\"width\";i:150;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"logo@1x-300x77.png\";s:5:\"width\";i:300;s:6:\"height\";i:77;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:{}}}'),(406,603,'_wp_attached_file','2019/01/docker_facebook_share.png'),(407,603,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:336;s:6:\"height\";i:287;s:4:\"file\";s:33:\"2019/01/docker_facebook_share.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"docker_facebook_share-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"docker_facebook_share-300x256.png\";s:5:\"width\";i:300;s:6:\"height\";i:256;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:{}}}'),(408,604,'_wp_attached_file','2019/01/2000px-The_Hospital_for_Sick_Children_Logo.svg_.png'),(409,604,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:645;s:4:\"file\";s:59:\"2019/01/2000px-The_Hospital_for_Sick_Children_Logo.svg_.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"2000px-The_Hospital_for_Sick_Children_Logo.svg_-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"2000px-The_Hospital_for_Sick_Children_Logo.svg_-300x97.png\";s:5:\"width\";i:300;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"2000px-The_Hospital_for_Sick_Children_Logo.svg_-768x248.png\";s:5:\"width\";i:768;s:6:\"height\";i:248;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"2000px-The_Hospital_for_Sick_Children_Logo.svg_-1024x330.png\";s:5:\"width\";i:1024;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:59:\"2000px-The_Hospital_for_Sick_Children_Logo.svg_-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(410,605,'_wp_attached_file','2019/01/angular.png'),(411,605,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:19:\"2019/01/angular.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"angular-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:{}}}'),(412,606,'_wp_attached_file','2019/01/CBB-Logo-POS-URL-RGB-May2716.jpg'),(413,606,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:659;s:4:\"file\";s:40:\"2019/01/CBB-Logo-POS-URL-RGB-May2716.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"CBB-Logo-POS-URL-RGB-May2716-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"CBB-Logo-POS-URL-RGB-May2716-300x77.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"CBB-Logo-POS-URL-RGB-May2716-768x198.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"CBB-Logo-POS-URL-RGB-May2716-1024x264.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:264;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:40:\"CBB-Logo-POS-URL-RGB-May2716-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:28:\"CBB Logo-POS-URL-RGB-May2716\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(414,607,'_wp_attached_file','2019/01/Confluence@2x-blue.png'),(415,607,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1022;s:6:\"height\";i:129;s:4:\"file\";s:30:\"2019/01/Confluence@2x-blue.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Confluence@2x-blue-150x129.png\";s:5:\"width\";i:150;s:6:\"height\";i:129;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Confluence@2x-blue-300x38.png\";s:5:\"width\";i:300;s:6:\"height\";i:38;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"Confluence@2x-blue-768x97.png\";s:5:\"width\";i:768;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:30:\"Confluence@2x-blue-500x129.png\";s:5:\"width\";i:500;s:6:\"height\";i:129;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:{}}}'),(416,608,'_wp_attached_file','2019/01/25LN4Pm1.png'),(417,608,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:256;s:6:\"height\";i:256;s:4:\"file\";s:20:\"2019/01/25LN4Pm1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"25LN4Pm1-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:{}}}'),(418,609,'_wp_attached_file','2019/01/1280px-Samsung_Logo.svg_.png'),(419,609,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:425;s:4:\"file\";s:36:\"2019/01/1280px-Samsung_Logo.svg_.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"1280px-Samsung_Logo.svg_-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"1280px-Samsung_Logo.svg_-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"1280px-Samsung_Logo.svg_-768x255.png\";s:5:\"width\";i:768;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"1280px-Samsung_Logo.svg_-1024x340.png\";s:5:\"width\";i:1024;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:36:\"1280px-Samsung_Logo.svg_-500x425.png\";s:5:\"width\";i:500;s:6:\"height\";i:425;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:{}}}'),(420,610,'_wp_attached_file','2019/01/2000px-Amazon_Web_Services_Logo.svg_.png'),(421,610,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1197;s:4:\"file\";s:48:\"2019/01/2000px-Amazon_Web_Services_Logo.svg_.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"2000px-Amazon_Web_Services_Logo.svg_-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"2000px-Amazon_Web_Services_Logo.svg_-300x180.png\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"2000px-Amazon_Web_Services_Logo.svg_-768x460.png\";s:5:\"width\";i:768;s:6:\"height\";i:460;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"2000px-Amazon_Web_Services_Logo.svg_-1024x613.png\";s:5:\"width\";i:1024;s:6:\"height\";i:613;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:48:\"2000px-Amazon_Web_Services_Logo.svg_-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(422,611,'_wp_attached_file','2019/01/2000px-Much_-_2013_logo.svg_.png'),(423,611,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:671;s:4:\"file\";s:40:\"2019/01/2000px-Much_-_2013_logo.svg_.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"2000px-Much_-_2013_logo.svg_-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"2000px-Much_-_2013_logo.svg_-300x101.png\";s:5:\"width\";i:300;s:6:\"height\";i:101;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"2000px-Much_-_2013_logo.svg_-768x258.png\";s:5:\"width\";i:768;s:6:\"height\";i:258;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"2000px-Much_-_2013_logo.svg_-1024x344.png\";s:5:\"width\";i:1024;s:6:\"height\";i:344;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:40:\"2000px-Much_-_2013_logo.svg_-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(424,612,'_wp_attached_file','2019/01/Rogers-Logo-use-this-360x360.png'),(425,612,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:360;s:6:\"height\";i:360;s:4:\"file\";s:40:\"2019/01/Rogers-Logo-use-this-360x360.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Rogers-Logo-use-this-360x360-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Rogers-Logo-use-this-360x360-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;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:{}}}'),(426,613,'_wp_attached_file','2019/01/Spark-Icon-Logo.png'),(427,613,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:276;s:6:\"height\";i:96;s:4:\"file\";s:27:\"2019/01/Spark-Icon-Logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Spark-Icon-Logo-150x96.png\";s:5:\"width\";i:150;s:6:\"height\";i:96;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:{}}}'),(428,614,'_wp_attached_file','2019/01/Stella_Artois_new_logo.png'),(429,614,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:855;s:4:\"file\";s:34:\"2019/01/Stella_Artois_new_logo.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Stella_Artois_new_logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Stella_Artois_new_logo-300x214.png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"Stella_Artois_new_logo-768x547.png\";s:5:\"width\";i:768;s:6:\"height\";i:547;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Stella_Artois_new_logo-1024x730.png\";s:5:\"width\";i:1024;s:6:\"height\";i:730;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:34:\"Stella_Artois_new_logo-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(430,615,'_wp_attached_file','2019/01/td-logo.png'),(431,615,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:89;s:6:\"height\";i:78;s:4:\"file\";s:19:\"2019/01/td-logo.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(432,616,'_wp_attached_file','2019/01/uw-logo-color-transparent.png'),(433,616,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:506;s:4:\"file\";s:37:\"2019/01/uw-logo-color-transparent.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"uw-logo-color-transparent-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"uw-logo-color-transparent-300x127.png\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"uw-logo-color-transparent-768x324.png\";s:5:\"width\";i:768;s:6:\"height\";i:324;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"uw-logo-color-transparent-1024x432.png\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:37:\"uw-logo-color-transparent-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(434,617,'_wp_attached_file','2019/01/woodgreen.gif'),(435,617,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:313;s:6:\"height\";i:63;s:4:\"file\";s:21:\"2019/01/woodgreen.gif\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"woodgreen-150x63.gif\";s:5:\"width\";i:150;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"woodgreen-300x60.gif\";s:5:\"width\";i:300;s:6:\"height\";i:60;s:9:\"mime-type\";s:9:\"image/gif\";}}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:{}}}'),(436,618,'_wp_attached_file','2019/01/main-logo-test-2.png'),(437,618,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:235;s:6:\"height\";i:49;s:4:\"file\";s:28:\"2019/01/main-logo-test-2.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"main-logo-test-2-150x49.png\";s:5:\"width\";i:150;s:6:\"height\";i:49;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:{}}}'),(438,619,'_wp_attached_file','2019/01/Mosaic.jpg'),(439,619,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:630;s:4:\"file\";s:18:\"2019/01/Mosaic.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Mosaic-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Mosaic-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"Mosaic-768x403.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:403;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"Mosaic-1024x538.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:538;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:18:\"Mosaic-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(440,620,'_wp_attached_file','2019/01/resized-UofT-Logo.8cce108.jpg'),(441,620,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:69;s:4:\"file\";s:37:\"2019/01/resized-UofT-Logo.8cce108.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"resized-UofT-Logo.8cce108-150x69.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"resized-UofT-Logo.8cce108-300x69.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:69;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:{}}}'),(442,621,'_wp_attached_file','2019/01/logo-uhn.png'),(443,621,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:274;s:6:\"height\";i:55;s:4:\"file\";s:20:\"2019/01/logo-uhn.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"logo-uhn-150x55.png\";s:5:\"width\";i:150;s:6:\"height\";i:55;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:{}}}'),(449,623,'_wp_attached_file','2019/01/logo@1x-1-e1552250616403.png'),(450,623,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:158;s:6:\"height\";i:40;s:4:\"file\";s:36:\"2019/01/logo@1x-1-e1552250616403.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"logo@1x-1-150x127.png\";s:5:\"width\";i:150;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"logo@1x-1-300x77.png\";s:5:\"width\";i:300;s:6:\"height\";i:77;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:{}}}'),(451,624,'_edit_last','1'),(452,624,'_edit_lock','1628127865:1'),(453,637,'_edit_last','1'),(454,637,'_edit_lock','1662349617:21'),(455,654,'_wp_attached_file','2019/01/bg-home.jpg'),(456,654,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1208;s:4:\"file\";s:19:\"2019/01/bg-home.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"bg-home-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"bg-home-300x189.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"bg-home-768x483.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:483;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"bg-home-1024x644.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:644;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:19:\"bg-home-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(457,655,'_wp_attached_file','2019/01/macbook.png'),(458,655,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:826;s:6:\"height\";i:757;s:4:\"file\";s:19:\"2019/01/macbook.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"macbook-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"macbook-300x275.png\";s:5:\"width\";i:300;s:6:\"height\";i:275;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"macbook-768x704.png\";s:5:\"width\";i:768;s:6:\"height\";i:704;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:19:\"macbook-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(459,2,'top-image','654'),(460,2,'_top-image','field_5c47486901570'),(461,2,'top-title','Data-Driven
Digital Transformation'),(462,2,'_top-title','field_5c47489001571'),(463,2,'top-text','We Partner with companies to build business value through software innovation.

Every company is now a technology company. How competitive are you in your industry? Let us help you.'),(464,2,'_top-text','field_5c47489e01572'),(465,2,'top-items_0_item','Cloud-Native'),(466,2,'_top-items_0_item','field_5c4748d001574'),(467,2,'top-items_1_item','Data Lake'),(468,2,'_top-items_1_item','field_5c4748d001574'),(469,2,'top-items_2_item','Kubernetes'),(470,2,'_top-items_2_item','field_5c4748d001574'),(471,2,'top-items_3_item','Scalable'),(472,2,'_top-items_3_item','field_5c4748d001574'),(473,2,'top-items_4_item','Secure'),(474,2,'_top-items_4_item','field_5c4748d001574'),(475,2,'top-items','5'),(476,2,'_top-items','field_5c4748c401573'),(477,2,'top-button','44'),(478,2,'_top-button','field_5c4748e601575'),(479,2,'services-presentation','Build cloud-native applications with Translucent\r\nCreate modern applications using state-of-the-art technology with TEKStack AI'),(480,2,'_services-presentation','field_5c474986bee5b'),(481,2,'call-title','Start a Conversation'),(482,2,'_call-title','field_5c4749bcbee5c'),(483,2,'call-text',''),(484,2,'_call-text','field_5c4749d7bee5d'),(485,2,'case-title','The Hospital for Sick Children'),(486,2,'_case-title','field_5c4749f4bee5e'),(487,2,'case-text',''),(488,2,'_case-text','field_5c474a4abee5f'),(489,2,'case-image','772'),(490,2,'_case-image','field_5c474a6dbee61'),(523,2,'case-link','38'),(524,2,'_case-link','field_5c476a3dac685'),(559,659,'_wp_attached_file','2019/01/bg1.jpg'),(560,659,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:268;s:6:\"height\";i:268;s:4:\"file\";s:15:\"2019/01/bg1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bg1-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:{}}}'),(561,660,'_wp_attached_file','2019/01/bg2.jpg'),(562,660,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:268;s:6:\"height\";i:268;s:4:\"file\";s:15:\"2019/01/bg2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bg2-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:{}}}'),(563,661,'_wp_attached_file','2019/01/bg3.jpg'),(564,661,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:267;s:6:\"height\";i:268;s:4:\"file\";s:15:\"2019/01/bg3.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"bg3-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:{}}}'),(565,10,'top-image','790'),(566,10,'_top-image','field_5c474afbe6e69'),(567,10,'top-mission','Simplifying complex technical issues, with solutions you need, in a language you can understand.'),(568,10,'_top-mission','field_5c474b15e6e6a'),(569,10,'idea-text','Creating Digital Transformation technology solutions that work for real people.'),(570,10,'_idea-text','field_5c474b3ce6e6b'),(571,10,'ready-text','People don’t need to know everything about how digital transformation works. They care that their systems are built for their needs and create consistent results.'),(572,10,'_ready-text','field_5c474b57e6e6c'),(573,10,'about-translucent','Translucent takes your technology problems and transforms them to measurable and manageable outcomes.'),(574,10,'_about-translucent','field_5c474b8fe6e6d'),(575,10,'phrase','“Customers’ expectations are on the rise. They’re accessing and using multiple data points in real time, and don’t expect to be kept waiting. This affects the performance of systems and software. Adapting means undergoing a complete restructuring of our processes.”'),(576,10,'_phrase','field_5c474bafe6e6e'),(577,10,'author','EUROPEAN RAIL OPERATOR\r\nHEAD OF PLANNING AND PRODUCTION'),(578,10,'_author','field_5c474bbfe6e6f'),(579,10,'quality-image','659'),(580,10,'_quality-image','field_5c474bfae6e70'),(581,10,'quality-text','We strive to create solutions of the highest Quality while understanding real-world issues of time, budget, and results. We work with you to identify your \"A\" Priorities and give you solutions built for your exact needs.\r\n\r\nWe can build from a vision or start from your existing systems, evolving your company through the next industrial revolution, the Digital Transformation Evolution.'),(582,10,'_quality-text','field_5c474c13e6e71'),(583,10,'inovation-image','660'),(584,10,'_inovation-image','field_5c474c2de6e72'),(585,10,'inovation-text','We are here to serve our clients, understanding their needs and where we can provide insight based on the best, most stable, forward-moving technologies available. True Innovation.\r\n\r\nOnce we understand your vision and goals, we\'ll work with you to make you competitive now, and together we will build your future.'),(586,10,'_inovation-text','field_5c474c4be6e73'),(587,10,'value-image','661'),(588,10,'_value-image','field_5c474c5ae6e74'),(589,10,'value-text','Translucent was built upon creating relationships that became trusted partnerships.\r\nIt starts with having a good conversation, seeing what Value we can provide.\r\n\r\nWe are your Digital\r\nTransformation Partner.'),(590,10,'_value-text','field_5c474c6ce6e75'),(591,10,'trusted_0_logo','793'),(592,10,'_trusted_0_logo','field_5c474c91e6e77'),(593,10,'trusted_1_logo','794'),(594,10,'_trusted_1_logo','field_5c474c91e6e77'),(595,10,'trusted_2_logo','795'),(596,10,'_trusted_2_logo','field_5c474c91e6e77'),(597,10,'trusted_3_logo','796'),(598,10,'_trusted_3_logo','field_5c474c91e6e77'),(599,10,'trusted_4_logo','797'),(600,10,'_trusted_4_logo','field_5c474c91e6e77'),(601,10,'trusted_5_logo','798'),(602,10,'_trusted_5_logo','field_5c474c91e6e77'),(603,10,'trusted_6_logo','799'),(604,10,'_trusted_6_logo','field_5c474c91e6e77'),(605,10,'trusted_7_logo','800'),(606,10,'_trusted_7_logo','field_5c474c91e6e77'),(607,10,'trusted_8_logo','801'),(608,10,'_trusted_8_logo','field_5c474c91e6e77'),(609,10,'trusted_9_logo','802'),(610,10,'_trusted_9_logo','field_5c474c91e6e77'),(655,10,'trusted','10'),(656,10,'_trusted','field_5c474c81e6e76'),(749,663,'_edit_last','1'),(750,663,'_edit_lock','1629398042:4'),(751,682,'_edit_last','1'),(752,682,'_edit_lock','1598648978:4'),(753,693,'_edit_last','21'),(754,693,'_edit_lock','1662969214:21'),(755,708,'_edit_last','20'),(756,708,'_edit_lock','1660255841:20'),(757,44,'top-image','536'),(758,44,'_top-image','field_5c488d805f5d4'),(759,44,'top-text','We Partner with companies to build business value through software innovation.

Every company is now a technology company! How competitive are you in your industry? Let us help you.'),(760,44,'_top-text','field_5c488e575f5d5'),(761,44,'features_0_feature','Cloud Native'),(762,44,'_features_0_feature','field_5c4890c93ae20'),(763,44,'features_1_feature','Data Lake'),(764,44,'_features_1_feature','field_5c4890c93ae20'),(765,44,'features_2_feature','Kubernetes'),(766,44,'_features_2_feature','field_5c4890c93ae20'),(767,44,'features_3_feature','Scalable'),(768,44,'_features_3_feature','field_5c4890c93ae20'),(769,44,'features_4_feature','Secure'),(770,44,'_features_4_feature','field_5c4890c93ae20'),(771,44,'features','5'),(772,44,'_features','field_5c4890bc3ae1f'),(773,44,'about-title','Technology failing your business?'),(774,44,'_about-title','field_5c488e7a5f5d6'),(775,44,'about-text','Companies need to continuously improve with systems that continuously deliver results in real time.\r\nOrganizations have out of date technology, unable to stay connected in the information age, and so much data to sort through. Legacy systems & CTO\'s minds are over extended.'),(776,44,'_about-text','field_5c488e945f5d7'),(777,44,'problems',' \r\n\r\n \r\n\r\nCan we really do it alone?\r\n\r\nHow do we even keep up?\r\n\r\nAre the IT resources we have enough?'),(778,44,'_problems','field_5c488ec75f5d8'),(779,44,'solutions','

Translucent Digital Transformation Strategy

\r\nTranslucent is your Digital Transformation partner: DevOps, Machine Learning, and Microservices. Providing affordable, tailored services to update & transform your business operations.\r\nStay connected, be competitive.\r\n
\r\n
    \r\n
  • Effectively resolve your cross-application communication issues – technology tailored to your business, that actually works for you!
  • \r\n
  • Convert technical debt into opportunities by leveraging current technology – untangling your systems to empower business decisions.
  • \r\n
  • Use your data to increase your revenues – who is buying, when to purchase, what to do, when to do it!
  • \r\n
  • Meet your deliverables efficiently: Increase Agility & Speed to Market – when the market shifts your organization can adjust quickly!
  • \r\n
'),(780,44,'_solutions','field_5c488ed95f5d9'),(781,44,'difference','

Is your company working around your system on daily basis?

\r\nWe will learn about your business, your operations, your customers, your employees and create a system that works for you and them. Seamless integration is possible!\r\n
\r\nYou want us to work with your IT department, be your IT project partner for the duration, or be an external resource to build your solutions, we will do what is best for you!'),(782,44,'_difference','field_5c488eed5f5da'),(783,44,'panel_0_background','538'),(784,44,'_panel_0_background','field_5c488f425f5dc'),(785,44,'panel_0_title','Technology Tailored to Your Business'),(786,44,'_panel_0_title','field_5c488f525f5dd'),(787,44,'panel_0_text',''),(788,44,'_panel_0_text','field_5c488f5b5f5de'),(789,44,'panel_1_background','545'),(790,44,'_panel_1_background','field_5c488f425f5dc'),(791,44,'panel_1_title','System Stability'),(792,44,'_panel_1_title','field_5c488f525f5dd'),(793,44,'panel_1_text',''),(794,44,'_panel_1_text','field_5c488f5b5f5de'),(795,44,'panel_2_background','544'),(796,44,'_panel_2_background','field_5c488f425f5dc'),(797,44,'panel_2_title','Empower Business Decisions'),(798,44,'_panel_2_title','field_5c488f525f5dd'),(799,44,'panel_2_text',''),(800,44,'_panel_2_text','field_5c488f5b5f5de'),(801,44,'panel_3_background','543'),(802,44,'_panel_3_background','field_5c488f425f5dc'),(803,44,'panel_3_title','Pivot Quickly into Production'),(804,44,'_panel_3_title','field_5c488f525f5dd'),(805,44,'panel_3_text',''),(806,44,'_panel_3_text','field_5c488f5b5f5de'),(807,44,'panel_4_background','542'),(808,44,'_panel_4_background','field_5c488f425f5dc'),(809,44,'panel_4_title','Revenue Increasing Algorithms'),(810,44,'_panel_4_title','field_5c488f525f5dd'),(811,44,'panel_4_text',''),(812,44,'_panel_4_text','field_5c488f5b5f5de'),(813,44,'panel_5_background','541'),(814,44,'_panel_5_background','field_5c488f425f5dc'),(815,44,'panel_5_title','Secure Self-Healing Systems'),(816,44,'_panel_5_title','field_5c488f525f5dd'),(817,44,'panel_5_text',''),(818,44,'_panel_5_text','field_5c488f5b5f5de'),(819,44,'panel_6_background','540'),(820,44,'_panel_6_background','field_5c488f425f5dc'),(821,44,'panel_6_title','Operational Process Automation'),(822,44,'_panel_6_title','field_5c488f525f5dd'),(823,44,'panel_6_text',''),(824,44,'_panel_6_text','field_5c488f5b5f5de'),(825,44,'panel_7_background','539'),(826,44,'_panel_7_background','field_5c488f425f5dc'),(827,44,'panel_7_title','Financial Analyst'),(828,44,'_panel_7_title','field_5c488f525f5dd'),(829,44,'panel_7_text',''),(830,44,'_panel_7_text','field_5c488f5b5f5de'),(831,44,'panel','8'),(832,44,'_panel','field_5c488f195f5db'),(833,44,'more-text','The largest enterprise and fastest growing companies are using Digital Transformation from Google, JP Morgan, Walmart, Bank of America, Netflix, Airbnb, Motorola, Uber, Ford, Dupont, GM, BMW, GE, to Nordstrom.'),(834,44,'_more-text','field_5c488f8f5f5df'),(835,44,'phrase','Elite Technology Partner, We Listen. We Learn. We Inform. Creating technology solutions that mirror your operations to increase efficiency by 20%+ using digital transformation.'),(836,44,'_phrase','field_5c488faf5f5e0'),(837,44,'author','TRANSLUCENT'),(838,44,'_author','field_5c488fba5f5e1'),(921,14,'top-image','535'),(922,14,'_top-image','field_5c488d805f5d4'),(923,14,'top-text','Building scalable, reliable and secure ecosystems for your business!'),(924,14,'_top-text','field_5c488e575f5d5'),(925,14,'features_0_feature','Kubernetes'),(926,14,'_features_0_feature','field_5c4890c93ae20'),(927,14,'features_1_feature','Speed to Market'),(928,14,'_features_1_feature','field_5c4890c93ae20'),(929,14,'features_2_feature','Reusable'),(930,14,'_features_2_feature','field_5c4890c93ae20'),(931,14,'features_3_feature','Agile'),(932,14,'_features_3_feature','field_5c4890c93ae20'),(933,14,'features_4_feature','Scalable'),(934,14,'_features_4_feature','field_5c4890c93ae20'),(935,14,'features_5_feature','Secure'),(936,14,'_features_5_feature','field_5c4890c93ae20'),(937,14,'features_6_feature','Flexible'),(938,14,'_features_6_feature','field_5c4890c93ae20'),(939,14,'features','7'),(940,14,'_features','field_5c4890bc3ae1f'),(941,14,'about-title','Your technology slowing down your business?'),(942,14,'_about-title','field_5c488e7a5f5d6'),(943,14,'about-text','Picture your systems architecture naturally mirroring your operations, your people, your clients.\r\nBuilding block by block solutions that fit your organization like a perfect pair of gloves.\r\nIt is possible!'),(944,14,'_about-text','field_5c488e945f5d7'),(945,14,'problems','Do your business operations consistently have to work around your technology?\r\n\r\nDoes your system take forever to add new features into production?\r\n\r\nIs the stability of your system causing you consistent user issues & delays?'),(946,14,'_problems','field_5c488ec75f5d8'),(947,14,'solutions','

Translucent Microservices Strategy

\r\nTranslucent Microservices provides affordable, tailored services to transform your old legacy applications, or build out an industry leading platform from scratch.\r\n
\r\n
    \r\n
  • System changes are done without affecting daily operations
  • \r\n
  • Dynamically transition from legacy system to Microservices, based on priority & timeline
  • \r\n
  • Scalable solutions - solving today\'s issues with tomorrow’s growth in mind
  • \r\n
'),(948,14,'_solutions','field_5c488ed95f5d9'),(949,14,'difference','

We decompose your business, how it runs, understanding the WHY.

\r\nThis allows the form of your systems architecture to naturally mimic your operations, your people, your clients. Building block by block solutions that fit your organization like a perfect pair of gloves.\r\n
\r\nTEKStack™ allows us to Architect upon the foundation of how your company actually works in the physical world, with unmatched precision and speed to market.\r\n\r\nBlock by block systems that are independent and integrated. Building feature by feature, keeping you involved in the process so you get the outcome you really want.\r\n\r\nIf one function or application has an issue or is being worked on the rest of your system still works. The system snaps together or can be removed like Lego Blocks. Okay a bit more complex, you get the idea!\r\n\r\nWe will learn about your business, your operations, your customers, your employees and create a system that works for you and them. Seamless integration is possible!\r\n\r\nTechnology that serves you!.'),(950,14,'_difference','field_5c488eed5f5da'),(951,14,'panel_0_background','546'),(952,14,'_panel_0_background','field_5c488f425f5dc'),(953,14,'panel_0_title','Improved User Experience'),(954,14,'_panel_0_title','field_5c488f525f5dd'),(955,14,'panel_0_text',''),(956,14,'_panel_0_text','field_5c488f5b5f5de'),(957,14,'panel_1_background','553'),(958,14,'_panel_1_background','field_5c488f425f5dc'),(959,14,'panel_1_title','Improved Uptime'),(960,14,'_panel_1_title','field_5c488f525f5dd'),(961,14,'panel_1_text',''),(962,14,'_panel_1_text','field_5c488f5b5f5de'),(963,14,'panel_2_background','552'),(964,14,'_panel_2_background','field_5c488f425f5dc'),(965,14,'panel_2_title','Quickly React to Market Conditions'),(966,14,'_panel_2_title','field_5c488f525f5dd'),(967,14,'panel_2_text',''),(968,14,'_panel_2_text','field_5c488f5b5f5de'),(969,14,'panel_3_background','550'),(970,14,'_panel_3_background','field_5c488f425f5dc'),(971,14,'panel_3_title','Tech Built to Fit Business Operations'),(972,14,'_panel_3_title','field_5c488f525f5dd'),(973,14,'panel_3_text',''),(974,14,'_panel_3_text','field_5c488f5b5f5de'),(975,14,'panel_4_background','551'),(976,14,'_panel_4_background','field_5c488f425f5dc'),(977,14,'panel_4_title','Incremental Steps to the Cloud'),(978,14,'_panel_4_title','field_5c488f525f5dd'),(979,14,'panel_4_text',''),(980,14,'_panel_4_text','field_5c488f5b5f5de'),(981,14,'panel_5_background','549'),(982,14,'_panel_5_background','field_5c488f425f5dc'),(983,14,'panel_5_title','Improved Testability'),(984,14,'_panel_5_title','field_5c488f525f5dd'),(985,14,'panel_5_text',''),(986,14,'_panel_5_text','field_5c488f5b5f5de'),(987,14,'panel_6_background','548'),(988,14,'_panel_6_background','field_5c488f425f5dc'),(989,14,'panel_6_title','Better Scalability'),(990,14,'_panel_6_title','field_5c488f525f5dd'),(991,14,'panel_6_text',''),(992,14,'_panel_6_text','field_5c488f5b5f5de'),(993,14,'panel_7_background','547'),(994,14,'_panel_7_background','field_5c488f425f5dc'),(995,14,'panel_7_title','Quicker Release Cycles'),(996,14,'_panel_7_title','field_5c488f525f5dd'),(997,14,'panel_7_text',''),(998,14,'_panel_7_text','field_5c488f5b5f5de'),(999,14,'panel','8'),(1000,14,'_panel','field_5c488f195f5db'),(1001,14,'more-text','The largest enterprise and fastest growing companies have converted to Microservices from Google, JP, Morgan, Walmart, Bank of America, Netflix, Airbnb, Motorola, to Nordstrom.'),(1002,14,'_more-text','field_5c488f8f5f5df'),(1003,14,'phrase','“Microservices might be even more disruptive than any other tech paradigm shift that has come before.”'),(1004,14,'_phrase','field_5c488faf5f5e0'),(1005,14,'author','FORBES.COM'),(1006,14,'_author','field_5c488fba5f5e1'),(1093,16,'top-image','534'),(1094,16,'_top-image','field_5c488d805f5d4'),(1095,16,'top-text','Insights to improve quality of life, provide clarity in decision making and increase profits.'),(1096,16,'_top-text','field_5c488e575f5d5'),(1097,16,'features_0_feature','Analytics'),(1098,16,'_features_0_feature','field_5c4890c93ae20'),(1099,16,'features_1_feature','Fraud Detection'),(1100,16,'_features_1_feature','field_5c4890c93ae20'),(1101,16,'features_2_feature','Recommendations'),(1102,16,'_features_2_feature','field_5c4890c93ae20'),(1103,16,'features_3_feature','Predictions'),(1104,16,'_features_3_feature','field_5c4890c93ae20'),(1105,16,'features_4_feature','Image Recognition'),(1106,16,'_features_4_feature','field_5c4890c93ae20'),(1107,16,'features_5_feature','Data Lake'),(1108,16,'_features_5_feature','field_5c4890c93ae20'),(1109,16,'features_6_feature','Deep Learning'),(1110,16,'_features_6_feature','field_5c4890c93ae20'),(1111,16,'features','7'),(1112,16,'_features','field_5c4890bc3ae1f'),(1113,16,'about-title','How intelligent is your business?'),(1114,16,'_about-title','field_5c488e7a5f5d6'),(1115,16,'about-text','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(1116,16,'_about-text','field_5c488e945f5d7'),(1117,16,'problems','Are you learning from your data and market conditions?\r\n\r\nDo you know where your business is making and losing money?\r\n\r\nHow well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(1118,16,'_problems','field_5c488ec75f5d8'),(1119,16,'solutions','

Translucent Machine Learning Strategy

\r\n
\r\nUnderstanding the patterns of organizational success & giving you control over the numbers.\r\n
\r\n
    \r\n
  • Learning from Data - understanding past & current experiences, to model your company’s future
  • \r\n
  • Predictive Services – using key performance indicators to road map future possibilities
  • \r\n
  • Intelligent automation - enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient
  • \r\n
  • Analytics: Use your data to increase your revenues & purchasing power – in depth reporting
  • \r\n
'),(1120,16,'_solutions','field_5c488ed95f5d9'),(1121,16,'difference','

Is Your Data Working for You?

\r\nPattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour.\r\n\r\nWe will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.\r\n
\r\nWeave machine learning into your business systems meeting and exceeding industry standards and best practices.\r\nThe ability to automate intelligence by department, exact need, and function in real time.'),(1122,16,'_difference','field_5c488eed5f5da'),(1123,16,'panel_0_background','554'),(1124,16,'_panel_0_background','field_5c488f425f5dc'),(1125,16,'panel_0_title','Data Entry Automation'),(1126,16,'_panel_0_title','field_5c488f525f5dd'),(1127,16,'panel_0_text',''),(1128,16,'_panel_0_text','field_5c488f5b5f5de'),(1129,16,'panel_1_background','561'),(1130,16,'_panel_1_background','field_5c488f425f5dc'),(1131,16,'panel_1_title','Product Recommendation'),(1132,16,'_panel_1_title','field_5c488f525f5dd'),(1133,16,'panel_1_text',''),(1134,16,'_panel_1_text','field_5c488f5b5f5de'),(1135,16,'panel_2_background','560'),(1136,16,'_panel_2_background','field_5c488f425f5dc'),(1137,16,'panel_2_title','Medical Diagnosis'),(1138,16,'_panel_2_title','field_5c488f525f5dd'),(1139,16,'panel_2_text',''),(1140,16,'_panel_2_text','field_5c488f5b5f5de'),(1141,16,'panel_3_background','559'),(1142,16,'_panel_3_background','field_5c488f425f5dc'),(1143,16,'panel_3_title','Clients: Who is buying what'),(1144,16,'_panel_3_title','field_5c488f525f5dd'),(1145,16,'panel_3_text',''),(1146,16,'_panel_3_text','field_5c488f5b5f5de'),(1147,16,'panel_4_background','557'),(1148,16,'_panel_4_background','field_5c488f425f5dc'),(1149,16,'panel_4_title','User Behavior'),(1150,16,'_panel_4_title','field_5c488f525f5dd'),(1151,16,'panel_4_text',''),(1152,16,'_panel_4_text','field_5c488f5b5f5de'),(1153,16,'panel_5_background','558'),(1154,16,'_panel_5_background','field_5c488f425f5dc'),(1155,16,'panel_5_title','BI: Automated Reporting'),(1156,16,'_panel_5_title','field_5c488f525f5dd'),(1157,16,'panel_5_text',''),(1158,16,'_panel_5_text','field_5c488f5b5f5de'),(1159,16,'panel_6_background','556'),(1160,16,'_panel_6_background','field_5c488f425f5dc'),(1161,16,'panel_6_title','Detecting Spam in Emails'),(1162,16,'_panel_6_title','field_5c488f525f5dd'),(1163,16,'panel_6_text',''),(1164,16,'_panel_6_text','field_5c488f5b5f5de'),(1165,16,'panel_7_background','555'),(1166,16,'_panel_7_background','field_5c488f425f5dc'),(1167,16,'panel_7_title','Analytics'),(1168,16,'_panel_7_title','field_5c488f525f5dd'),(1169,16,'panel_7_text',''),(1170,16,'_panel_7_text','field_5c488f5b5f5de'),(1171,16,'panel','8'),(1172,16,'_panel','field_5c488f195f5db'),(1173,16,'more-text','The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.'),(1174,16,'_more-text','field_5c488f8f5f5df'),(1175,16,'phrase','“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”'),(1176,16,'_phrase','field_5c488faf5f5e0'),(1177,16,'author','FORBES.COM'),(1178,16,'_author','field_5c488fba5f5e1'),(1351,18,'top-image','528'),(1352,18,'_top-image','field_5c488d805f5d4'),(1353,18,'top-text','Keeping communication between your business operations, your technology, and the online world, in sync.'),(1354,18,'_top-text','field_5c488e575f5d5'),(1355,18,'features_0_feature','Constant Communication'),(1356,18,'_features_0_feature','field_5c4890c93ae20'),(1357,18,'features_1_feature','Speed to Market'),(1358,18,'_features_1_feature','field_5c4890c93ae20'),(1359,18,'features_2_feature','Secure Self-Healing Systems'),(1360,18,'_features_2_feature','field_5c4890c93ae20'),(1361,18,'features_3_feature','Automation'),(1362,18,'_features_3_feature','field_5c4890c93ae20'),(1363,18,'features_4_feature','CI'),(1364,18,'_features_4_feature','field_5c4890c93ae20'),(1365,18,'features_5_feature','CD'),(1366,18,'_features_5_feature','field_5c4890c93ae20'),(1367,18,'features_6_feature','Bimodal'),(1368,18,'_features_6_feature','field_5c4890c93ae20'),(1369,18,'features','7'),(1370,18,'_features','field_5c4890bc3ae1f'),(1371,18,'about-title','It’s 3 AM in the morning,
is your business still working for you?'),(1372,18,'_about-title','field_5c488e7a5f5d6'),(1373,18,'about-text','Translucent DevOps understands the ever-changing landscape of your operations, systems, and software and creates solutions. Automate your processes and increase effectiveness & collaboration company-wide.\r\nWe architect solutions based on how your business actually works!'),(1374,18,'_about-text','field_5c488e945f5d7'),(1375,18,'problems','How long before your competition’s technology puts you out of business?\r\n\r\nHow long does it take to go from concept to production?\r\n\r\nHow secure is your company’s Intellectual property & confidential information?\r\n\r\nAre you competitive? Are your automated processes ahead of industry standard?'),(1376,18,'_problems','field_5c488ec75f5d8'),(1377,18,'solutions','

Translucent Devops Strategy

\r\n
\r\n
    \r\n
  • End-to-End Monitoring and Automation.\r\nSee things in real time and solve them
  • \r\n
  • Translucent taking technical debt and turning it into techniques and dollars
  • \r\n
  • Continuous Integration & Continuous Deployment - Faster delivery of operational changes into your technology.\r\nFeatures delivered to market more rapidly.\r\nWithout business interruption.
  • \r\n
  • Secure your company’s information while staying completely connected online
  • \r\n
  • DevOps + AIOps: Self learning, self-healing systems that prioritizes, communicates to needed resources and resolves issues automatically
  • \r\n
'),(1378,18,'_solutions','field_5c488ed95f5d9'),(1379,18,'difference','

Are your systems working while you are sleeping?

\r\n \r\n\r\nImagine your business and your systems automatically working around the clock to improve your operations.\r\n\r\nWe will learn about your business, your operations, your customers, your employees and create solutions that work for you and them.\r\n
\r\nSeamless integration is possible!'),(1380,18,'_difference','field_5c488eed5f5da'),(1381,18,'panel_0_background','780'),(1382,18,'_panel_0_background','field_5c488f425f5dc'),(1383,18,'panel_0_title','Constant Comunication'),(1384,18,'_panel_0_title','field_5c488f525f5dd'),(1385,18,'panel_0_text',''),(1386,18,'_panel_0_text','field_5c488f5b5f5de'),(1387,18,'panel_1_background','775'),(1388,18,'_panel_1_background','field_5c488f425f5dc'),(1389,18,'panel_1_title','Bimodal'),(1390,18,'_panel_1_title','field_5c488f525f5dd'),(1391,18,'panel_1_text',''),(1392,18,'_panel_1_text','field_5c488f5b5f5de'),(1393,18,'panel_2_background','776'),(1394,18,'_panel_2_background','field_5c488f425f5dc'),(1395,18,'panel_2_title','Secure Self-Healing Systems'),(1396,18,'_panel_2_title','field_5c488f525f5dd'),(1397,18,'panel_2_text',''),(1398,18,'_panel_2_text','field_5c488f5b5f5de'),(1399,18,'panel_3_background','787'),(1400,18,'_panel_3_background','field_5c488f425f5dc'),(1401,18,'panel_3_title','Automation'),(1402,18,'_panel_3_title','field_5c488f525f5dd'),(1403,18,'panel_3_text',''),(1404,18,'_panel_3_text','field_5c488f5b5f5de'),(1405,18,'panel_4_background','779'),(1406,18,'_panel_4_background','field_5c488f425f5dc'),(1407,18,'panel_4_title','IT & Business Harmony'),(1408,18,'_panel_4_title','field_5c488f525f5dd'),(1409,18,'panel_4_text',''),(1410,18,'_panel_4_text','field_5c488f5b5f5de'),(1411,18,'panel_5_background','777'),(1412,18,'_panel_5_background','field_5c488f425f5dc'),(1413,18,'panel_5_title','Profitability in Productivity'),(1414,18,'_panel_5_title','field_5c488f525f5dd'),(1415,18,'panel_5_text',''),(1416,18,'_panel_5_text','field_5c488f5b5f5de'),(1417,18,'panel_6_background','778'),(1418,18,'_panel_6_background','field_5c488f425f5dc'),(1419,18,'panel_6_title','Kubernetes'),(1420,18,'_panel_6_title','field_5c488f525f5dd'),(1421,18,'panel_6_text',''),(1422,18,'_panel_6_text','field_5c488f5b5f5de'),(1423,18,'panel_7_background','781'),(1424,18,'_panel_7_background','field_5c488f425f5dc'),(1425,18,'panel_7_title','Blockchain'),(1426,18,'_panel_7_title','field_5c488f525f5dd'),(1427,18,'panel_7_text',''),(1428,18,'_panel_7_text','field_5c488f5b5f5de'),(1429,18,'panel','8'),(1430,18,'_panel','field_5c488f195f5db'),(1431,18,'more-text','The largest enterprise and fastest growing companies have converted to DevOps from Google, JP, Morgan, Walmart, Bank of America, Netflix, Airbnb, Motorola, to Nordstrom.'),(1432,18,'_more-text','field_5c488f8f5f5df'),(1433,18,'phrase','“The transition to agile DevOps is saving millions.”'),(1434,18,'_phrase','field_5c488faf5f5e0'),(1435,18,'author','JOHN JENKINS'),(1436,18,'_author','field_5c488fba5f5e1'),(1523,60,'background-image','531'),(1524,60,'_background-image','field_5c488b8869ce6'),(1525,60,'about','Every company is now a technology company, whether you are in plumbing, manufacturing, investment banking, or corporate services.\r\n\r\nThe evolution of technology has created complex communication at light speed, code that understands behavior, and data stored in the cloud.\r\n\r\nMuch like your car, you do not have to understand precisely how it works to reap the benefits of using it!\r\n\r\nTranslucent takes your business from wherever it is and roadmaps from point A to point B.\r\n\r\nImplementing the technology your business needs to stay competitive, at a pace you can handle.\r\n\r\nUsing Calculated measurable manageable actions, focused on Return on Investment.'),(1526,60,'_about','field_5c488b9a69ce7'),(1527,60,'1about','Translucent is your technology partner! \r\nBuilding very close relationships with our clients, we take the time and effort to lay the foundations needed to create the future together.'),(1528,60,'_1about','field_5c488c0c69ce8'),(1529,60,'1text',' \r\n

Requirements Gathering

\r\nWhen gathering requirements, it is a growing conversation with all influencers and decision makers within the business. It is very important to break down specific business function so that your company’s technology wraps around your operations like the perfect pair of gloves.\r\n

Stakeholder Ownership

\r\nThe information gathered must speak to all the needs and asks of all stakeholders, allowing more effective and efficient architecting and implementation to steady state. Create a system that connects your people, your clients and the world to you as an extension of how your business operations actually work.\r\n

Starting S.M.A.R.T.

\r\nOnce we have learned the specifics of your business, we inform and get signed stakeholder buy-in. From there we set Specific, Measurable, Agreed upon, Realistic, Time-bound (S.M.A.R.T.) goals based on what is the highest priority for your business needs. By removing the back and forth both internally and externally we create a workflow that increases return on investment and speed to market.'),(1530,60,'_1text','field_5c488c3969ce9'),(1531,60,'2text','

Proposal:

\r\nOnce scoped and approved by all stakeholders based on exact function and outcome, we put together a detailed proposal for your review and confirmation.'),(1532,60,'_2text','field_5c488c8d69ceb'),(1533,60,'2list_0_item','Work to be accomplished'),(1534,60,'_2list_0_item','field_5c488ccc69ced'),(1535,60,'2list_1_item','Resources'),(1536,60,'_2list_1_item','field_5c488ccc69ced'),(1537,60,'2list_2_item','Task and timelines'),(1538,60,'_2list_2_item','field_5c488ccc69ced'),(1539,60,'2list_3_item','Cost'),(1540,60,'_2list_3_item','field_5c488ccc69ced'),(1541,60,'2list_4_item','Deliverables'),(1542,60,'_2list_4_item','field_5c488ccc69ced'),(1543,60,'2list','5'),(1544,60,'_2list','field_5c488cb869cec'),(1545,60,'3about','Translucent as your Digital Transformation technology partner, we focus on Priority A approved deliverables:'),(1546,60,'_3about','field_5c488c7469cea'),(1547,60,'3list_0_item','Use Microservices to create a more fluid connection to the cloud with your legacy systems.'),(1548,60,'_3list_0_item','field_5c488cf969cef'),(1549,60,'3list_1_item','Use DevOps to ensure production automation workflow and security.'),(1550,60,'_3list_1_item','field_5c488cf969cef'),(1551,60,'3list_2_item','Create algorithms to understand complex business issues, discovering your clients’ buying patterns, or finding cross-market revenue opportunities using Machine Learning (AI).'),(1552,60,'_3list_2_item','field_5c488cf969cef'),(1553,60,'3list_3_item','Use Microservices, Machine Learning, and DevOps together to fully transform your business competing on the new digital landscape.'),(1554,60,'_3list_3_item','field_5c488cf969cef'),(1555,60,'3list','4'),(1556,60,'_3list','field_5c488cf969cee'),(1591,38,'top-color','#002048'),(1592,38,'_top-color','field_5c4888dec7760'),(1593,38,'success-color','#00ddbd'),(1594,38,'_success-color','field_5c48895cc7762'),(1595,38,'top-text-color','#ffffff'),(1596,38,'_top-text-color','field_5c48897ec7763'),(1597,38,'top-image','63'),(1598,38,'_top-image','field_5c48893dc7761'),(1599,38,'top-text','Translucent has indexed, analysed and transformed half a billion records of Neonatal Intensive Care Unit data'),(1600,38,'_top-text','field_5c4889acc7764'),(1601,38,'costumer','The Hospital for Sick Children (SickKids) \r\nNeonatal Intensive Care Unit'),(1602,38,'_costumer','field_5c4889e3c7765'),(1603,38,'industry','Health Care Services'),(1604,38,'_industry','field_5c488a0bc7766'),(1605,38,'company-size','5001 to 10000'),(1606,38,'_company-size','field_5c488a0cc7767'),(1607,38,'location','Toronto, Ontario'),(1608,38,'_location','field_5c488a10c7768'),(1609,38,'project-areas','● Microservices\r\n● DevOps\r\n● Machine Learning'),(1610,38,'_project-areas','field_5c488a13c7769'),(1611,38,'key-stats','● 400M ES documents\r\n● 30-40 properties in each ES document mapping\r\n● 15B data elements imported\r\n● 40 import asynchronous jobs (run time: 5 m to 30 h)\r\n● Jobs combined paper mapping, electronic file, and a database dump'),(1612,38,'_key-stats','field_5c488a14c776a'),(1613,38,'about','Affiliated with the University of Toronto, The Hospital for Sick Children (SickKids) is Canada’s most research-intensive hospital and largest centre dedicated to the improvement of children’s health in the country. By staffing professionals from all disciplines within both health care and research, SickKids provides the best in complex and specialized care through creating scientific and clinical advancements, sharing knowledge and expertise, as well as championing the development of accessible, comprehensive and sustainable child health systems.'),(1614,38,'_about','field_5c488a7dc776b'),(1615,38,'the-challenge','SickKids decommissioned an electronic medical chart application (CIMS) which ran in the Neonatal, Pediatric and Cardiac Intensive Care Units since 1999.\r\n\r\nThe hospital now requires the migration of billions of records from CIMS to a new system that will allow physicians and researchers to find, examine and analyze this complex data.\r\n\r\nData defragmentation\r\nCIMS data was stored in multiple file sources, including flat text files, mapping text files, b-tree file structures, and oracle database data extracts with over 1000 tables.\r\n\r\nData volume\r\nBillions of records stored over 20 years for over 50,000 patients needed to be reindexed in a new system with novel requirements such as sub-second searching, data analytics, reporting and metrics.\r\n\r\nMappings\r\nManual cross mapping between text files, b-tree records, and database extract:\r\n• 1000’s of text files\r\n• 50,000+ Patients\r\n• 400,000,000+ patines row data\r\n• 2,000,000,000+ electronic chart inputs\r\n\r\nInfostructure\r\nOnly single VM was available to process and import all data. TC ES exports had to fine tune the ES to make sure the system would import data without running out of memory which was a challenge to accomplish.'),(1616,38,'_the-challenge','field_5c488a8fc776c'),(1617,38,'the-solution','Given the complexity of the challenge Translucent broke up the project in to 4 phases:\r\n\r\n1. Mapping\r\n• TC Consultants carefully mapped out the whole system in 40 + excel import files that combine layouts, labels and groups from a flat file, complex cross functional lookups between text files and db lookups\r\n• These import files were the bases for system import\r\n\r\n2. Importing\r\n• TC engineers created asynchronous importers that executed up to 30 hours\r\n• The importer used the mappings and DB data dump from the old system to construct ES documents\r\n\r\n3. Testing\r\n• Careful testing was done by TC team to match the old system with the new system\r\n\r\n4. Searching and Analytics\r\n• SK team is now using the system for searching patients for data lookups\r\n• SK Research team is using the system to chart, graph and data mind the system\r\n• Kibana is one of tools used for dashboards'),(1618,38,'_the-solution','field_5c488a9cc776d'),(1619,38,'the-results','A new Electronic Medical Chart Platform based on data transformation, mapping and migration of billions of charts inputs from legacy electronic medical chart application (CIMS). New electronic charts allow physicians and researchers to find 20 years of historical patient data with sub second searching, analytics and reporting.'),(1620,38,'_the-results','field_5c488ad1c776e'),(1621,38,'logo','50'),(1622,38,'_logo','field_5c488af6c776f'),(1623,38,'gallery_0_image','997'),(1624,38,'_gallery_0_image','field_5c488b0fc7771'),(1629,38,'gallery','1'),(1630,38,'_gallery','field_5c488b02c7770'),(1671,57,'phone','1-888-828-0144'),(1672,57,'_phone','field_5c488fee200b5'),(1673,57,'address','18 King Street East, Suite 1400\r\nToronto, Ontario\r\nM5C 1C4'),(1674,57,'_address','field_5c488ff4200b6'),(1675,57,'email','results@translucentcomputing.com'),(1676,57,'_email','field_5c489004200b7'),(1677,57,'text-contact',''),(1678,57,'_text-contact','field_5c489019200b8'),(1687,60,'1home','We work with you, informing and educating you about what it takes to be digitally competitive in the current market.\r\nWe learn your business and business needs.'),(1688,60,'_1home','field_5c48ade7a3abb'),(1689,60,'2home','During the discovery phase we uncover all business processes and requirements and understand your current state.\r\nDuring the inception phase we conceive and plan your solution.'),(1690,60,'_2home','field_5c48adffa3abc'),(1691,60,'2about','

Priority A:

\r\nOnce we understand how your business works and uncover Priority A based on company goals, immediate needs, and ROI we start to scope out Phase 1 of your digital transformation.'),(1692,60,'_2about','field_5c48adcda3aba'),(1693,60,'3home','We implement your digital strategy with ongoing support, leveraging proven development methodologies.'),(1694,60,'_3home','field_5c48ae0ca3abd'),(2349,740,'_wp_attached_file','2019/02/bg-digital-1.jpg'),(2350,740,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:684;s:4:\"file\";s:24:\"2019/02/bg-digital-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"bg-digital-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"bg-digital-1-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:24:\"bg-digital-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(3273,752,'_wp_attached_file','2019/02/bg-devops-1.jpg'),(3274,752,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:684;s:4:\"file\";s:23:\"2019/02/bg-devops-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"bg-devops-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"bg-devops-1-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:23:\"bg-devops-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(3275,753,'_wp_attached_file','2019/02/bg-microservices-1.jpg'),(3276,753,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:684;s:4:\"file\";s:30:\"2019/02/bg-microservices-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"bg-microservices-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"bg-microservices-1-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:30:\"bg-microservices-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(3277,754,'_wp_attached_file','2019/02/bg-ml-1.jpg'),(3278,754,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:648;s:6:\"height\";i:684;s:4:\"file\";s:19:\"2019/02/bg-ml-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"bg-ml-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"bg-ml-1-284x300.jpg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:19:\"bg-ml-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(4213,772,'_wp_attached_file','2019/03/mockup_cbb_mobile.png'),(4214,772,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:832;s:6:\"height\";i:809;s:4:\"file\";s:29:\"2019/03/mockup_cbb_mobile.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"mockup_cbb_mobile-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"mockup_cbb_mobile-300x292.png\";s:5:\"width\";i:300;s:6:\"height\";i:292;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"mockup_cbb_mobile-768x747.png\";s:5:\"width\";i:768;s:6:\"height\";i:747;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:29:\"mockup_cbb_mobile-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(4249,623,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:496;s:6:\"height\";i:127;s:4:\"file\";s:13:\"logo@1x-1.png\";}s:18:\"full-1552250616403\";a:3:{s:5:\"width\";i:391;s:6:\"height\";i:100;s:4:\"file\";s:28:\"logo@1x-1-e1551968004407.png\";}}'),(4342,772,'litespeed-optimize-size','a:4:{s:9:\"ori_total\";i:1012056;s:9:\"ori_saved\";i:775023;s:10:\"webp_total\";i:0;s:10:\"webp_saved\";i:0;}'),(4343,775,'_wp_attached_file','2019/03/devops-bim.jpg'),(4344,775,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:22:\"2019/03/devops-bim.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"devops-bim-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"devops-bim-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(4345,776,'_wp_attached_file','2019/03/devops-sec.jpg'),(4346,776,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:22:\"2019/03/devops-sec.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"devops-sec-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"devops-sec-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(4347,777,'_wp_attached_file','2019/03/devops-prod.jpg'),(4348,777,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:23:\"2019/03/devops-prod.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"devops-prod-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"devops-prod-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(4349,778,'_wp_attached_file','2019/03/devops-kub.jpg'),(4350,778,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:22:\"2019/03/devops-kub.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"devops-kub-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"devops-kub-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(4351,779,'_wp_attached_file','2019/03/devops-it.jpg'),(4352,779,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:21:\"2019/03/devops-it.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"devops-it-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"devops-it-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(4353,780,'_wp_attached_file','2019/03/devops-com.jpg'),(4354,780,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:22:\"2019/03/devops-com.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"devops-com-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"devops-com-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(4355,781,'_wp_attached_file','2019/03/devops-block.jpg'),(4356,781,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:24:\"2019/03/devops-block.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"devops-block-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"devops-block-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(4567,785,'_wp_attached_file','2019/03/abou-top.jpg'),(4568,785,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:20:\"2019/03/abou-top.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"abou-top-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"abou-top-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"abou-top-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"abou-top-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:20:\"abou-top-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(4661,787,'_wp_attached_file','2019/03/devops-auto.jpg'),(4662,787,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:480;s:6:\"height\";i:360;s:4:\"file\";s:23:\"2019/03/devops-auto.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"devops-auto-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"devops-auto-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;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:{}}}'),(4785,790,'_wp_attached_file','2019/03/about-top.jpg'),(4786,790,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:21:\"2019/03/about-top.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"about-top-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"about-top-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"about-top-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"about-top-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:21:\"about-top-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(4927,793,'_wp_attached_file','2019/03/Tensorflow.jpg'),(4928,793,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:120;s:6:\"height\";i:100;s:4:\"file\";s:22:\"2019/03/Tensorflow.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4929,794,'_wp_attached_file','2019/03/Spinnaker.jpg'),(4930,794,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:87;s:6:\"height\";i:100;s:4:\"file\";s:21:\"2019/03/Spinnaker.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4931,795,'_wp_attached_file','2019/03/logo@1x-1-e1552250749325.png'),(4932,795,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:158;s:6:\"height\";i:40;s:4:\"file\";s:36:\"2019/03/logo@1x-1-e1552250749325.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"logo@1x-1-e1551968004407-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"logo@1x-1-e1551968004407-300x77.png\";s:5:\"width\";i:300;s:6:\"height\";i:77;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:{}}}'),(4933,796,'_wp_attached_file','2019/03/logo.png'),(4934,796,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:103;s:6:\"height\";i:100;s:4:\"file\";s:16:\"2019/03/logo.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4935,797,'_wp_attached_file','2019/03/google-cloud-platform.jpg'),(4936,797,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:33:\"2019/03/google-cloud-platform.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4937,798,'_wp_attached_file','2019/03/Excellus-Blue-Cross-e1552250514781.jpg'),(4938,798,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:158;s:6:\"height\";i:34;s:4:\"file\";s:46:\"2019/03/Excellus-Blue-Cross-e1552250514781.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Excellus-Blue-Cross-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Excellus-Blue-Cross-300x65.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:65;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:{}}}'),(4939,799,'_wp_attached_file','2019/03/CBB-Logo-POS-URL-RGB-May2716-e1552250564354.jpg'),(4940,799,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:158;s:6:\"height\";i:41;s:4:\"file\";s:55:\"2019/03/CBB-Logo-POS-URL-RGB-May2716-e1552250564354.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"CBB-Logo-POS-URL-RGB-May2716-150x100.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"CBB-Logo-POS-URL-RGB-May2716-300x77.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:77;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:{}}}'),(4941,800,'_wp_attached_file','2019/03/BMO-e1552250420948.png'),(4942,800,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:158;s:6:\"height\";i:39;s:4:\"file\";s:30:\"2019/03/BMO-e1552250420948.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"BMO-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"BMO-300x74.png\";s:5:\"width\";i:300;s:6:\"height\";i:74;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:{}}}'),(4943,801,'_wp_attached_file','2019/03/2000px-The_Hospital_for_Sick_Children_Logo.svg_.png'),(4944,801,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:310;s:6:\"height\";i:100;s:4:\"file\";s:59:\"2019/03/2000px-The_Hospital_for_Sick_Children_Logo.svg_.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"2000px-The_Hospital_for_Sick_Children_Logo.svg_-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"2000px-The_Hospital_for_Sick_Children_Logo.svg_-300x97.png\";s:5:\"width\";i:300;s:6:\"height\";i:97;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:{}}}'),(4945,802,'_wp_attached_file','2019/03/2000px-Amazon_Web_Services_Logo.svg_.png'),(4946,802,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:167;s:6:\"height\";i:100;s:4:\"file\";s:48:\"2019/03/2000px-Amazon_Web_Services_Logo.svg_.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"2000px-Amazon_Web_Services_Logo.svg_-150x100.png\";s:5:\"width\";i:150;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:{}}}'),(4995,804,'_edit_lock','1652419013:17'),(4996,804,'_wp_page_template','case-studies.php'),(4997,804,'_edit_last','17'),(4998,804,'top-color',''),(4999,804,'_top-color','field_5c4888dec7760'),(5000,804,'success-color',''),(5001,804,'_success-color','field_5c48895cc7762'),(5002,804,'top-text-color',''),(5003,804,'_top-text-color','field_5c48897ec7763'),(5004,804,'top-image','820'),(5005,804,'_top-image','field_5c48893dc7761'),(5006,804,'top-text','Backend, middle tier, front end, mobile (iOS & Android), security and monitoring from architecture throughout implementation.'),(5007,804,'_top-text','field_5c4889acc7764'),(5008,804,'costumer','Canadian Black Book (CBB) \r\nA Subsidiary of Hearst Business Media Corporation\r\n'),(5009,804,'_costumer','field_5c4889e3c7765'),(5010,804,'industry','Automotive Industry'),(5011,804,'_industry','field_5c488a0bc7766'),(5012,804,'company-size','50 to 500'),(5013,804,'_company-size','field_5c488a0cc7767'),(5014,804,'location','Toronto, Ontario'),(5015,804,'_location','field_5c488a10c7768'),(5016,804,'project-areas','Full Digital Transformation\r\n• Microservices\r\n• DevOps\r\n• Machine Learning'),(5017,804,'_project-areas','field_5c488a13c7769'),(5018,804,'key-stats','• CBB Connect: 219,000 users yearly\r\n• CBB Connect: 30,000 Vehicle searches a day\r\n• CBB Connect: 10,950,000 Vehicle searches yearly'),(5019,804,'_key-stats','field_5c488a14c776a'),(5020,804,'about','The auto industry is evolving. How vehicles are bought, sold and financed is also changing. One constant: the industry and its various markets continue to trust Canadian Black Book insight and its innovative delivery systems to make the right business decisions faster.\r\n\r\nToday, Canadian Black Book is a division of the Hearst Business Media Corporation who boast 360 corporations under their wing. Their line-up of innovative products and services includes new and used vehicle value services, custom data licensing solutions, as well as lender origination and risk analysis.'),(5021,804,'_about','field_5c488a7dc776b'),(5022,804,'the-challenge','CBB had outdate software & hardware solution that was not compatible to cloud native digitally transformed evolution of technology in the current world.\r\n\r\nAs a leader in the automotive data collection and distribution industry it was crucial that they were able to internally and externally communicate at the current pace of business. As every company is now a technology company.\r\n\r\nTranslucent through our partnership model has been able to work with the various moving parts of the complex CBB applications; backend, middle tier, front end, mobile (iOS & Android), security and monitoring to be a major partner from architecture throughout implementation.\r\n\r\nCBB Connect:\r\nWeb Application & CBB mobile application – IOS & Android:\r\n\r\nWhat is CBB Connect?\r\n\r\nBar Code Scanner of the V.I.N. # of vehicles.\r\n\r\nThe application allows the user to search the vehicles by scanning a VIN or enter it manually.\r\n\r\nThree ways to enter V.I.N.:\r\n• Specialized keyboard\r\n• Scanner\r\n• Drop down menu\r\nCBB Evaluation based on parameters such as mileage, year, model, make, and other key indicators.\r\n\r\nCBB Estimator:\r\nWeb Application – responsive design\r\n\r\nCBB Estimator allows consumers to enter their current vehicle year, make, model, mileage and the new car they would want from the dealer in order to get a trade in value when they purchase their new car.\r\n\r\nThis is a good tool for the consumer and an excellent tool for the company to drive business and close on very qualified leads.'),(5023,804,'_the-challenge','field_5c488a8fc776c'),(5024,804,'the-solution','Technologies used to create a Total Digital Transformation:\r\n\r\nMicroservices:\r\nBuilt distributed systems tailored to CBB’s operations and product offerings to transform their old legacy applications.\r\n\r\nMicroservices allows for pivot and scalability while minimally affecting day to day operations. Consistently upgrading based on user feedback to keep CBB an industry leader in today’s competitive landscape of a digitally transformed world.\r\n\r\nDevOps:\r\nTEKStack™:\r\nTranslucent has a years of experience in the build pipeline and has created multiple tools under the TEKStackTM umbrella for CI / CD that maximizes effectiveness and efficiency to help your technology mimic your business operations.\r\n\r\nKubernetes cluster (EKS -AWS) running Dockerized containers designed in multiple languages and tools: Java, Spring, Angular, Node JS, databases MySql & ElasticSearch, HazelCast (cache solution), RabbitMQ (messaging bus), Nginx (API Gateway & reverse Proxy)\r\n\r\nMonitoring:\r\nPrometheus is used to collect metrics data from the Kubernetes cluster and the Microservices, as well as APM Application Performance Metrics.\r\n\r\nElasticSearch: To aggregate the logs from the cluster and the Microservices\r\n\r\nGrafana: To create dashboards to visualize and display from Prometheus\r\n\r\nKabana: To create dashboards and visualizations for ElasticSearch\r\n\r\nSentry: Error tracking software to find exceptions in Microservices and Alert\r\n\r\nMachine Learning: The applications and systems have been Optimized for machine learning. The ability to implement automated DevOps pipeline, Security, Monitoring and Alerts to true AIOps is available.'),(5025,804,'_the-solution','field_5c488a9cc776d'),(5026,804,'the-results','Letter of Reference | Mike Compton CTO, Canadian Black Book\r\nWhen I arrived at Canadian Black Book as the new CTO one of my priorities was to come up-to-speed on all the projects that were underway and learn more about the third-party technology companies being leveraged. On the product development front, I learned that a company named Translucent Computing was under contract to provide their software development services in redeveloping the core mobile and web-based products.\r\n\r\nThe more I learned the more I realized that we had been fortunate to find a technology of their caliber. The architectures and technologies that I was brought in to implement were already being integrated and deployed by Translucent. Specifically, all the new products were built on a strong foundation using the AWS cloud, terraform for infrastructure deployment, Kubernetes for cluster monitoring and scaling, app containerization using Docker, and a strong dose of DevOps to ensure the pipeline was automated.\r\n\r\nA lot of technology vendors claim to have expertise with these technologies, but those boasts aren’t always a reality. You need to hire great engineers that work well with clients and that, in a nutshell, is what Translucent Computing has brought to Canadian Black Book.\r\n\r\nMike Compton, CTO, Canadian Black Book\r\nA division of the Hearst Business Media Corporation'),(5027,804,'_the-results','field_5c488ad1c776e'),(5028,804,'logo','606'),(5029,804,'_logo','field_5c488af6c776f'),(5030,804,'gallery','1'),(5031,804,'_gallery','field_5c488b02c7770'),(5202,811,'_menu_item_type','post_type'),(5203,811,'_menu_item_menu_item_parent','42'),(5204,811,'_menu_item_object_id','804'),(5205,811,'_menu_item_object','page'),(5206,811,'_menu_item_target',''),(5207,811,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5208,811,'_menu_item_xfn',''),(5209,811,'_menu_item_url',''),(5245,804,'gallery_0_image','655'),(5246,804,'_gallery_0_image','field_5c488b0fc7771'),(5283,816,'_wp_attached_file','2019/03/icon-about-splash.png'),(5284,816,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:635;s:6:\"height\";i:318;s:4:\"file\";s:29:\"2019/03/icon-about-splash.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"icon-about-splash-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"icon-about-splash-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:29:\"icon-about-splash-500x318.png\";s:5:\"width\";i:500;s:6:\"height\";i:318;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:{}}}'),(5393,820,'_wp_attached_file','2019/03/cbb.jpg'),(5394,820,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1900;s:6:\"height\";i:951;s:4:\"file\";s:15:\"2019/03/cbb.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"cbb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"cbb-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"cbb-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"cbb-1024x513.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:15:\"cbb-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(5431,2,'case_study_0_title','Canadian Black Book'),(5432,2,'_case_study_0_title','field_5c82d24ccbac6'),(5433,2,'case_study_0_text',''),(5434,2,'_case_study_0_text','field_5c82d258cbac7'),(5435,2,'case_study_0_image','655'),(5436,2,'_case_study_0_image','field_5c82d266cbac8'),(5437,2,'case_study_0_link','804'),(5438,2,'_case_study_0_link','field_5c82d275cbac9'),(5439,2,'case_study_1_title','The Hospital for Sick Children'),(5440,2,'_case_study_1_title','field_5c82d24ccbac6'),(5441,2,'case_study_1_text',''),(5442,2,'_case_study_1_text','field_5c82d258cbac7'),(5443,2,'case_study_1_image','772'),(5444,2,'_case_study_1_image','field_5c82d266cbac8'),(5445,2,'case_study_1_link','38'),(5446,2,'_case_study_1_link','field_5c82d275cbac9'),(5447,2,'case_study','2'),(5448,2,'_case_study','field_5c82d238cbac5'),(5554,829,'_edit_lock','1662377222:21'),(5555,829,'_edit_last','17'),(5557,831,'_menu_item_type','post_type'),(5558,831,'_menu_item_menu_item_parent','859'),(5559,831,'_menu_item_object_id','44'),(5560,831,'_menu_item_object','page'),(5561,831,'_menu_item_target',''),(5562,831,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5563,831,'_menu_item_xfn',''),(5564,831,'_menu_item_url',''),(5566,832,'_menu_item_type','post_type'),(5567,832,'_menu_item_menu_item_parent','859'),(5568,832,'_menu_item_object_id','18'),(5569,832,'_menu_item_object','page'),(5570,832,'_menu_item_target',''),(5571,832,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5572,832,'_menu_item_xfn',''),(5573,832,'_menu_item_url',''),(5575,833,'_menu_item_type','post_type'),(5576,833,'_menu_item_menu_item_parent','859'),(5577,833,'_menu_item_object_id','16'),(5578,833,'_menu_item_object','page'),(5579,833,'_menu_item_target',''),(5580,833,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5581,833,'_menu_item_xfn',''),(5582,833,'_menu_item_url',''),(5584,834,'_menu_item_type','post_type'),(5585,834,'_menu_item_menu_item_parent','859'),(5586,834,'_menu_item_object_id','14'),(5587,834,'_menu_item_object','page'),(5588,834,'_menu_item_target',''),(5589,834,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5590,834,'_menu_item_xfn',''),(5591,834,'_menu_item_url',''),(5599,838,'_edit_lock','1552247080:4'),(5600,838,'_wp_page_template','404.php'),(5601,838,'_edit_last','4'),(5602,838,'_yoast_wpseo_content_score','90'),(5603,829,'_wp_page_template','services.php'),(5604,840,'_wp_attached_file','2019/03/human-dt.jpg'),(5605,840,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:918;s:6:\"height\";i:783;s:4:\"file\";s:20:\"2019/03/human-dt.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"human-dt-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"human-dt-300x256.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"human-dt-768x655.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:655;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:20:\"human-dt-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(5606,816,'tiny_compress_images','a:4:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:318586;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:97827;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:635;s:6:\"height\";i:318;s:5:\"ratio\";d:0.3071;}s:3:\"end\";i:1552248324;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:29708;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:12543;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.4222;}s:3:\"end\";i:1552248341;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:65311;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:24653;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:5:\"ratio\";d:0.3775;}s:3:\"end\";i:1552248342;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:208974;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:75122;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:318;s:5:\"ratio\";d:0.3595;}s:3:\"end\";i:1552248345;}}'),(5607,820,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:210074;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:159510;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1900;s:6:\"height\";i:951;s:5:\"ratio\";d:0.7593;}s:3:\"end\";i:1552248326;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6524;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5492;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8418;}s:3:\"end\";i:1552248327;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:12152;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:10747;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8844;}s:3:\"end\";i:1552248329;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:53844;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:43842;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:5:\"ratio\";d:0.8142;}s:3:\"end\";i:1552248334;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:85480;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:73044;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:513;s:5:\"ratio\";d:0.8545;}s:3:\"end\";i:1552248337;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:40729;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:32783;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.8049;}s:3:\"end\";i:1552248339;}}'),(5608,802,'tiny_compress_images','a:2:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:12821;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4398;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:167;s:6:\"height\";i:100;s:5:\"ratio\";d:0.343;}s:3:\"end\";i:1552248322;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10488;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4135;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:5:\"ratio\";d:0.3943;}s:3:\"end\";i:1552248324;}}'),(5609,840,'tiny_compress_images','a:5:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:74216;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:47781;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:918;s:6:\"height\";i:783;s:5:\"ratio\";d:0.6438;}s:3:\"end\";i:1552248324;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5173;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5073;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.9807;}s:3:\"end\";i:1552248325;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:11143;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:11143;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:256;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248327;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:44820;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:26581;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:655;s:5:\"ratio\";d:0.5931;}s:3:\"end\";i:1552248329;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:29453;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:24358;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.827;}s:3:\"end\";i:1552248331;}}'),(5610,801,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:15448;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:5897;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:310;s:6:\"height\";i:100;s:5:\"ratio\";d:0.3817;}s:3:\"end\";i:1552248322;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5752;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:3047;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:5:\"ratio\";d:0.5297;}s:3:\"end\";i:1552248323;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:17601;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:6656;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:97;s:5:\"ratio\";d:0.3782;}s:3:\"end\";i:1552248325;}}'),(5611,800,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:7277;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:3793;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:158;s:6:\"height\";i:39;s:5:\"ratio\";d:0.5212;}s:3:\"end\";i:1579217076;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:11912;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:5125;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:5:\"ratio\";d:0.4302;}s:3:\"end\";i:1552248327;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:16259;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:7022;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:74;s:5:\"ratio\";d:0.4319;}s:3:\"end\";i:1552248329;}}'),(5612,799,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:3957;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3348;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:158;s:6:\"height\";i:41;s:5:\"ratio\";d:0.8461;}s:3:\"end\";i:1579217077;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6914;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5087;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:5:\"ratio\";d:0.7358;}s:3:\"end\";i:1552248328;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:8818;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6749;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:5:\"ratio\";d:0.7654;}s:3:\"end\";i:1552248331;}}'),(5613,798,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:3083;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:2686;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:158;s:6:\"height\";i:34;s:5:\"ratio\";d:0.8712;}s:3:\"end\";i:1579217078;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:3704;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:2487;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:5:\"ratio\";d:0.6714;}s:3:\"end\";i:1552248332;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:7565;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6030;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:5:\"ratio\";d:0.7971;}s:3:\"end\";i:1552248334;}}'),(5614,797,'tiny_compress_images','a:1:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:3922;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3175;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:5:\"ratio\";d:0.8095;}s:3:\"end\";i:1552248332;}}'),(5615,796,'tiny_compress_images','a:1:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:9045;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2753;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:103;s:6:\"height\";i:100;s:5:\"ratio\";d:0.3044;}s:3:\"end\";i:1552248333;}}'),(5616,795,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:9034;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:3637;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:158;s:6:\"height\";i:40;s:5:\"ratio\";d:0.4026;}s:3:\"end\";i:1579217078;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:9557;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4179;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:5:\"ratio\";d:0.4373;}s:3:\"end\";i:1552248335;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:22031;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:7966;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:5:\"ratio\";d:0.3616;}s:3:\"end\";i:1552248337;}}'),(5617,794,'tiny_compress_images','a:1:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4018;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3256;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:87;s:6:\"height\";i:100;s:5:\"ratio\";d:0.8104;}s:3:\"end\";i:1552248334;}}'),(5618,793,'tiny_compress_images','a:1:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4529;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3523;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:120;s:6:\"height\";i:100;s:5:\"ratio\";d:0.7779;}s:3:\"end\";i:1552248336;}}'),(5619,787,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:45183;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:43888;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:0.9713;}s:3:\"end\";i:1552248338;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10118;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:9087;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8981;}s:3:\"end\";i:1552248340;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:23017;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:20718;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.9001;}s:3:\"end\";i:1552248346;}}'),(5620,781,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:33155;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:33155;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248341;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6318;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5188;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8211;}s:3:\"end\";i:1552248343;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:14763;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:13224;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.8958;}s:3:\"end\";i:1552248345;}}'),(5621,790,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:104765;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:62959;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:5:\"ratio\";d:0.601;}s:3:\"end\";i:1552248340;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4334;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:2882;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.665;}s:3:\"end\";i:1552248342;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6024;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3972;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:5:\"ratio\";d:0.6594;}s:3:\"end\";i:1552248344;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:23231;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:13779;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:5:\"ratio\";d:0.5931;}s:3:\"end\";i:1552248346;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:37177;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:21971;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:5:\"ratio\";d:0.591;}s:3:\"end\";i:1552248349;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:24260;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:14702;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.606;}s:3:\"end\";i:1552248351;}}'),(5622,780,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:46010;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:46010;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248347;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:9958;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:8862;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8899;}s:3:\"end\";i:1552248349;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:21586;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:20096;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.931;}s:3:\"end\";i:1552248351;}}'),(5623,785,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:108110;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:61958;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:5:\"ratio\";d:0.5731;}s:3:\"end\";i:1552248343;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4178;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:2690;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.6438;}s:3:\"end\";i:1552248345;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5758;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3758;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:5:\"ratio\";d:0.6527;}s:3:\"end\";i:1552248346;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:22608;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:13296;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:5:\"ratio\";d:0.5881;}s:3:\"end\";i:1552248349;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:35906;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:20948;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:5:\"ratio\";d:0.5834;}s:3:\"end\";i:1552248351;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:23241;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:13977;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.6014;}s:3:\"end\";i:1552248353;}}'),(5624,779,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:18208;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:16450;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:0.9034;}s:3:\"end\";i:1552248347;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5561;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:4473;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8044;}s:3:\"end\";i:1552248348;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10559;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:9348;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.8853;}s:3:\"end\";i:1552248352;}}'),(5625,778,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:76985;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:74665;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:0.9699;}s:3:\"end\";i:1552248349;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:11599;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:10302;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8882;}s:3:\"end\";i:1552248351;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:29868;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:27558;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.9227;}s:3:\"end\";i:1552248353;}}'),(5626,777,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:27106;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:25097;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:0.9259;}s:3:\"end\";i:1552248359;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:7035;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5743;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8163;}s:3:\"end\";i:1552248369;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:14867;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:12830;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.863;}s:3:\"end\";i:1552248370;}}'),(5627,775,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:41129;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:41129;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248361;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:8129;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6866;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8446;}s:3:\"end\";i:1552248362;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:18294;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:16696;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.9126;}s:3:\"end\";i:1552248364;}}'),(5628,776,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:45916;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:45916;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248354;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:8856;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:7516;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8487;}s:3:\"end\";i:1552248366;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:21124;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:19252;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.9114;}s:3:\"end\";i:1552248368;}}'),(5629,772,'tiny_compress_images','a:5:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:96948;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:74124;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:832;s:6:\"height\";i:809;s:5:\"ratio\";d:0.7646;}s:3:\"end\";i:1552248356;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6996;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:5754;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8225;}s:3:\"end\";i:1552248357;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:15991;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:12746;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:292;s:5:\"ratio\";d:0.7971;}s:3:\"end\";i:1552248631;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:78149;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:60553;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:747;s:5:\"ratio\";d:0.7748;}s:3:\"end\";i:1552248688;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:38949;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:30307;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.7781;}s:3:\"end\";i:1552248690;}}'),(5630,754,'tiny_compress_images','a:4:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:49920;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:34387;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:648;s:6:\"height\";i:684;s:5:\"ratio\";d:0.6888;}s:3:\"end\";i:1552248356;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:7490;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6218;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8302;}s:3:\"end\";i:1552248358;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:16668;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:14818;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:5:\"ratio\";d:0.889;}s:3:\"end\";i:1552248360;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:35143;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:23482;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.6682;}s:3:\"end\";i:1552248362;}}'),(5631,753,'tiny_compress_images','a:4:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:40271;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:27280;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:648;s:6:\"height\";i:684;s:5:\"ratio\";d:0.6774;}s:3:\"end\";i:1552248365;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6143;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:4833;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.7867;}s:3:\"end\";i:1552248367;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:13241;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:11351;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:5:\"ratio\";d:0.8573;}s:3:\"end\";i:1552248369;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:27286;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:17874;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.6551;}s:3:\"end\";i:1552248371;}}'),(5632,752,'tiny_compress_images','a:4:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:46189;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:32200;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:648;s:6:\"height\";i:684;s:5:\"ratio\";d:0.6971;}s:3:\"end\";i:1552248367;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:7321;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5989;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8181;}s:3:\"end\";i:1552248368;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:15797;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:13897;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:5:\"ratio\";d:0.8797;}s:3:\"end\";i:1552248370;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:33077;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:22091;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.6679;}s:3:\"end\";i:1552248373;}}'),(5633,740,'tiny_compress_images','a:4:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:42302;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:29267;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:648;s:6:\"height\";i:684;s:5:\"ratio\";d:0.6919;}s:3:\"end\";i:1552248382;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6281;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6200;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.9871;}s:3:\"end\";i:1552248384;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:13841;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:13841;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:284;s:6:\"height\";i:300;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248386;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:29311;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:18853;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.6432;}s:3:\"end\";i:1552248387;}}'),(5634,661,'tiny_compress_images','a:2:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:42895;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:23869;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:267;s:6:\"height\";i:268;s:5:\"ratio\";d:0.5565;}s:3:\"end\";i:1552248373;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5951;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:4857;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8162;}s:3:\"end\";i:1552248380;}}'),(5635,660,'tiny_compress_images','a:2:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:29768;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:16331;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:268;s:6:\"height\";i:268;s:5:\"ratio\";d:0.5486;}s:3:\"end\";i:1552248376;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4610;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3461;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.7508;}s:3:\"end\";i:1552248377;}}'),(5636,659,'tiny_compress_images','a:2:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:50865;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:23441;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:268;s:6:\"height\";i:268;s:5:\"ratio\";d:0.4608;}s:3:\"end\";i:1552248376;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4349;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3359;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.7724;}s:3:\"end\";i:1552248378;}}'),(5637,655,'tiny_compress_images','a:5:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:243035;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:67780;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:826;s:6:\"height\";i:757;s:5:\"ratio\";d:0.2789;}s:3:\"end\";i:1552248381;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:16906;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:6416;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.3795;}s:3:\"end\";i:1552248382;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:41972;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:13774;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:275;s:5:\"ratio\";d:0.3282;}s:3:\"end\";i:1552248384;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:213199;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:60223;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:704;s:5:\"ratio\";d:0.2825;}s:3:\"end\";i:1552248388;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:111003;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:35589;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.3206;}s:3:\"end\";i:1552248393;}}'),(5638,654,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:89422;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:52982;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1920;s:6:\"height\";i:1208;s:5:\"ratio\";d:0.5925;}s:3:\"end\";i:1552248384;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:3736;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:2376;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.636;}s:3:\"end\";i:1552248402;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5800;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3628;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:5:\"ratio\";d:0.6255;}s:3:\"end\";i:1552248403;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:21942;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:12786;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:483;s:5:\"ratio\";d:0.5827;}s:3:\"end\";i:1552248406;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:34195;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:19978;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:644;s:5:\"ratio\";d:0.5842;}s:3:\"end\";i:1552248408;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:17841;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:10410;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.5835;}s:3:\"end\";i:1552248410;}}'),(5639,623,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:9034;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:3637;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:158;s:6:\"height\";i:40;s:5:\"ratio\";d:0.4026;}s:3:\"end\";i:1579217080;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:2771;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:1994;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:127;s:5:\"ratio\";d:0.7196;}s:3:\"end\";i:1552248415;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:19052;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:7087;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:5:\"ratio\";d:0.372;}s:3:\"end\";i:1552248424;}}'),(5640,621,'tiny_compress_images','a:2:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:23218;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4001;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:274;s:6:\"height\";i:55;s:5:\"ratio\";d:0.1723;}s:3:\"end\";i:1552248389;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:2750;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:1385;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:55;s:5:\"ratio\";d:0.5036;}s:3:\"end\";i:1552248391;}}'),(5641,620,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:27567;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:11078;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:5:\"ratio\";d:0.4019;}s:3:\"end\";i:1552248672;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6566;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:4106;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:69;s:5:\"ratio\";d:0.6253;}s:3:\"end\";i:1552248673;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10815;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:7795;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:69;s:5:\"ratio\";d:0.7208;}s:3:\"end\";i:1552248674;}}'),(5642,618,'tiny_compress_images','a:2:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:9070;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:3615;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:235;s:6:\"height\";i:49;s:5:\"ratio\";d:0.3986;}s:3:\"end\";i:1552248412;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:2995;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:1515;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:49;s:5:\"ratio\";d:0.5058;}s:3:\"end\";i:1552248414;}}'),(5643,616,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:69932;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:47722;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1200;s:6:\"height\";i:506;s:5:\"ratio\";d:0.6824;}s:3:\"end\";i:1552248417;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:9988;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:3533;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.3537;}s:3:\"end\";i:1552248418;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:25402;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:7219;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:5:\"ratio\";d:0.2842;}s:3:\"end\";i:1552248420;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:112702;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:28035;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:324;s:5:\"ratio\";d:0.2488;}s:3:\"end\";i:1552248422;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:180963;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:47843;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1024;s:6:\"height\";i:432;s:5:\"ratio\";d:0.2644;}s:3:\"end\";i:1552248425;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:62314;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:17700;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.284;}s:3:\"end\";i:1552248427;}}'),(5644,619,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:20002;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:12022;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:5:\"ratio\";d:0.601;}s:3:\"end\";i:1552248398;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:2851;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:1632;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.5724;}s:3:\"end\";i:1552248400;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:3550;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:1963;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:5:\"ratio\";d:0.553;}s:3:\"end\";i:1552248402;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10588;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6343;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:403;s:5:\"ratio\";d:0.5991;}s:3:\"end\";i:1552248403;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:15874;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:9402;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:538;s:5:\"ratio\";d:0.5923;}s:3:\"end\";i:1552248406;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:11319;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6795;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.6003;}s:3:\"end\";i:1552248426;}}'),(5645,615,'tiny_compress_images','a:1:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:3175;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:1117;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:89;s:6:\"height\";i:78;s:5:\"ratio\";d:0.3518;}s:3:\"end\";i:1552248426;}}'),(5646,614,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:191100;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:72983;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1200;s:6:\"height\";i:855;s:5:\"ratio\";d:0.3819;}s:3:\"end\";i:1552248429;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:12822;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:5422;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.4229;}s:3:\"end\";i:1552248430;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:31428;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:13099;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:5:\"ratio\";d:0.4168;}s:3:\"end\";i:1552248431;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:120862;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:46963;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:547;s:5:\"ratio\";d:0.3886;}s:3:\"end\";i:1552248434;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:180923;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:70818;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1024;s:6:\"height\";i:730;s:5:\"ratio\";d:0.3914;}s:3:\"end\";i:1552248436;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:67492;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:26461;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.3921;}s:3:\"end\";i:1552248438;}}'),(5647,613,'tiny_compress_images','a:2:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:11633;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4549;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:276;s:6:\"height\";i:96;s:5:\"ratio\";d:0.391;}s:3:\"end\";i:1552248428;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:3849;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2534;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:96;s:5:\"ratio\";d:0.6584;}s:3:\"end\";i:1552248429;}}'),(5648,611,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:33543;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:17256;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:2000;s:6:\"height\";i:671;s:5:\"ratio\";d:0.5144;}s:3:\"end\";i:1552248432;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:2646;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:1164;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.4399;}s:3:\"end\";i:1552248433;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4876;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2097;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:101;s:5:\"ratio\";d:0.4301;}s:3:\"end\";i:1552248434;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:13698;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:5272;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:258;s:5:\"ratio\";d:0.3849;}s:3:\"end\";i:1552248436;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:18973;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:8087;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1024;s:6:\"height\";i:344;s:5:\"ratio\";d:0.4262;}s:3:\"end\";i:1552248437;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10388;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4183;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.4027;}s:3:\"end\";i:1552248440;}}'),(5649,612,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:9631;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:3686;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:360;s:6:\"height\";i:360;s:5:\"ratio\";d:0.3827;}s:3:\"end\";i:1552248429;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:3436;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:1675;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.4875;}s:3:\"end\";i:1552248430;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:8997;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:3477;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:5:\"ratio\";d:0.3865;}s:3:\"end\";i:1552248432;}}'),(5650,610,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:103411;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:36978;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:2000;s:6:\"height\";i:1197;s:5:\"ratio\";d:0.3576;}s:3:\"end\";i:1552248435;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6609;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2952;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.4467;}s:3:\"end\";i:1552248437;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:14360;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:5558;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:5:\"ratio\";d:0.387;}s:3:\"end\";i:1552248438;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:44315;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:14612;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:460;s:5:\"ratio\";d:0.3297;}s:3:\"end\";i:1552248440;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:61909;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:20688;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1024;s:6:\"height\";i:613;s:5:\"ratio\";d:0.3342;}s:3:\"end\";i:1552248442;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:27576;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:9485;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.344;}s:3:\"end\";i:1552248444;}}'),(5651,608,'tiny_compress_images','a:2:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:12302;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:3782;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:256;s:6:\"height\";i:256;s:5:\"ratio\";d:0.3074;}s:3:\"end\";i:1552248441;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5929;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2616;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.4412;}s:3:\"end\";i:1552248443;}}'),(5652,609,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:38487;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:13670;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1280;s:6:\"height\";i:425;s:5:\"ratio\";d:0.3552;}s:3:\"end\";i:1552248440;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6470;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2744;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.4241;}s:3:\"end\";i:1552248442;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10905;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4460;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:5:\"ratio\";d:0.409;}s:3:\"end\";i:1552248443;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:29520;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:11184;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:255;s:5:\"ratio\";d:0.3789;}s:3:\"end\";i:1552248445;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:41933;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:15854;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1024;s:6:\"height\";i:340;s:5:\"ratio\";d:0.3781;}s:3:\"end\";i:1552248447;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:14992;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:6049;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:425;s:5:\"ratio\";d:0.4035;}s:3:\"end\";i:1552248448;}}'),(5653,607,'tiny_compress_images','a:5:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:14786;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:6686;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1022;s:6:\"height\";i:129;s:5:\"ratio\";d:0.4522;}s:3:\"end\";i:1552248445;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:953;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:656;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:129;s:5:\"ratio\";d:0.6884;}s:3:\"end\";i:1552248446;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6981;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:3971;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:38;s:5:\"ratio\";d:0.5688;}s:3:\"end\";i:1552248642;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:19589;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:9614;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:97;s:5:\"ratio\";d:0.4908;}s:3:\"end\";i:1552248643;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:2842;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2423;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:129;s:5:\"ratio\";d:0.8526;}s:3:\"end\";i:1552248644;}}'),(5654,606,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:281872;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:89585;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:2831;s:6:\"height\";i:729;s:5:\"ratio\";d:0.3178;}s:3:\"end\";i:1552248451;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:42033;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5188;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.1234;}s:3:\"end\";i:1552248453;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:43936;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6770;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:5:\"ratio\";d:0.1541;}s:3:\"end\";i:1552248454;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:64711;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:23555;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:198;s:5:\"ratio\";d:0.364;}s:3:\"end\";i:1552248456;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:76472;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:33129;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:264;s:5:\"ratio\";d:0.4332;}s:3:\"end\";i:1552248459;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:64327;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:18288;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.2843;}s:3:\"end\";i:1552248461;}}'),(5655,605,'tiny_compress_images','a:2:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:2385;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2385;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:250;s:6:\"height\";i:250;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248450;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5318;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:3062;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.5758;}s:3:\"end\";i:1552248451;}}'),(5656,604,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:64653;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:28377;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:2000;s:6:\"height\";i:645;s:5:\"ratio\";d:0.4389;}s:3:\"end\";i:1552248454;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4079;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2196;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.5384;}s:3:\"end\";i:1552248456;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:9136;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4301;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:97;s:5:\"ratio\";d:0.4708;}s:3:\"end\";i:1552248457;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:27347;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:11545;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:248;s:5:\"ratio\";d:0.4222;}s:3:\"end\";i:1552248459;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:38104;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:16149;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1024;s:6:\"height\";i:330;s:5:\"ratio\";d:0.4238;}s:3:\"end\";i:1552248461;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:16094;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:7778;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.4833;}s:3:\"end\";i:1552248462;}}'),(5657,603,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4205;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:3850;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:336;s:6:\"height\";i:287;s:5:\"ratio\";d:0.9156;}s:3:\"end\";i:1552248462;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:9366;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4461;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.4763;}s:3:\"end\";i:1552248464;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:15993;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:7365;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:256;s:5:\"ratio\";d:0.4605;}s:3:\"end\";i:1552248468;}}'),(5658,602,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:27479;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:5378;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:496;s:6:\"height\";i:127;s:5:\"ratio\";d:0.1957;}s:3:\"end\";i:1552248464;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:2755;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:1992;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:127;s:5:\"ratio\";d:0.723;}s:3:\"end\";i:1552248465;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:11720;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:5763;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:5:\"ratio\";d:0.4917;}s:3:\"end\";i:1552248467;}}'),(5659,600,'tiny_compress_images','a:2:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:2607;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2176;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:186;s:6:\"height\";i:186;s:5:\"ratio\";d:0.8347;}s:3:\"end\";i:1552248468;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:7354;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:3322;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.4517;}s:3:\"end\";i:1552248469;}}'),(5660,599,'tiny_compress_images','a:4:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:14418;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:11273;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:682;s:6:\"height\";i:170;s:5:\"ratio\";d:0.7819;}s:3:\"end\";i:1552248470;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:8502;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:3384;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.398;}s:3:\"end\";i:1552248471;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:22989;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:6850;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:5:\"ratio\";d:0.298;}s:3:\"end\";i:1552248473;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:8040;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:6262;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:170;s:5:\"ratio\";d:0.7789;}s:3:\"end\";i:1552248474;}}'),(5662,598,'tiny_compress_images','a:4:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:78838;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:40116;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:531;s:6:\"height\";i:401;s:5:\"ratio\";d:0.5088;}s:3:\"end\";i:1552248472;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:33126;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:10689;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.3227;}s:3:\"end\";i:1552248473;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:65391;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:20537;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:5:\"ratio\";d:0.3141;}s:3:\"end\";i:1552248475;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:111677;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:40026;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:401;s:5:\"ratio\";d:0.3584;}s:3:\"end\";i:1552248645;}}'),(5663,596,'tiny_compress_images','a:2:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4754;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4043;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:230;s:6:\"height\";i:219;s:5:\"ratio\";d:0.8504;}s:3:\"end\";i:1552248478;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:9128;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:3972;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.4351;}s:3:\"end\";i:1552248480;}}'),(5664,595,'tiny_compress_images','a:2:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5296;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4354;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:225;s:6:\"height\";i:224;s:5:\"ratio\";d:0.8221;}s:3:\"end\";i:1552248481;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:12431;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4319;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.3474;}s:3:\"end\";i:1552248483;}}'),(5665,594,'tiny_compress_images','a:2:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:3640;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:3231;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:299;s:6:\"height\";i:168;s:5:\"ratio\";d:0.8876;}s:3:\"end\";i:1552248484;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5446;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2442;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.4484;}s:3:\"end\";i:1552248485;}}'),(5666,593,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6760;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:5175;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:484;s:6:\"height\";i:104;s:5:\"ratio\";d:0.7655;}s:3:\"end\";i:1552248487;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:1259;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:979;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:104;s:5:\"ratio\";d:0.7776;}s:3:\"end\";i:1552248488;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:14540;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:5295;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:64;s:5:\"ratio\";d:0.3642;}s:3:\"end\";i:1552248490;}}'),(5667,592,'tiny_compress_images','a:2:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:13651;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:11098;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:225;s:6:\"height\";i:225;s:5:\"ratio\";d:0.813;}s:3:\"end\";i:1552248491;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:24895;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:8360;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.3358;}s:3:\"end\";i:1552248493;}}'),(5668,591,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:8927;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:8497;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:452;s:6:\"height\";i:111;s:5:\"ratio\";d:0.9518;}s:3:\"end\";i:1552248495;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:3847;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3706;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:111;s:5:\"ratio\";d:0.9633;}s:3:\"end\";i:1552248497;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6412;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6096;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:74;s:5:\"ratio\";d:0.9507;}s:3:\"end\";i:1552248498;}}'),(5669,590,'tiny_compress_images','a:2:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6978;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6599;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:246;s:6:\"height\";i:205;s:5:\"ratio\";d:0.9457;}s:3:\"end\";i:1552248500;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5643;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5136;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.9102;}s:3:\"end\";i:1552248502;}}'),(5670,589,'tiny_compress_images','a:2:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4682;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:3978;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:209;s:6:\"height\";i:241;s:5:\"ratio\";d:0.8496;}s:3:\"end\";i:1552248503;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:11709;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4562;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.3896;}s:3:\"end\";i:1552248505;}}'),(5671,588,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4785;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4046;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:450;s:6:\"height\";i:112;s:5:\"ratio\";d:0.8456;}s:3:\"end\";i:1552248506;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:1811;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:1423;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:5:\"ratio\";d:0.7858;}s:3:\"end\";i:1552248508;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10264;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:3703;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:75;s:5:\"ratio\";d:0.3608;}s:3:\"end\";i:1552248510;}}'),(5672,587,'tiny_compress_images','a:2:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:2385;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2019;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:212;s:6:\"height\";i:237;s:5:\"ratio\";d:0.8465;}s:3:\"end\";i:1552248511;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6327;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2366;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.374;}s:3:\"end\";i:1552248513;}}'),(5673,586,'tiny_compress_images','a:5:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:71125;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:45137;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:812;s:6:\"height\";i:494;s:5:\"ratio\";d:0.6346;}s:3:\"end\";i:1552248515;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6505;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6505;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248517;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:13087;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:13087;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248518;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:56786;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:45462;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:467;s:5:\"ratio\";d:0.8006;}s:3:\"end\";i:1552248521;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:44274;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:34748;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:494;s:5:\"ratio\";d:0.7848;}s:3:\"end\";i:1552248523;}}'),(5674,585,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:37108;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:37108;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248526;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:8082;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:7059;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8734;}s:3:\"end\";i:1552248528;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:17539;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:16283;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.9284;}s:3:\"end\";i:1552248530;}}'),(5675,582,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:14717;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:13111;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:0.8909;}s:3:\"end\";i:1552248543;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4322;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3326;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.7696;}s:3:\"end\";i:1552248545;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:8006;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6792;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.8484;}s:3:\"end\";i:1552248546;}}'),(5676,584,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:29963;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:29963;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248533;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6384;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5342;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8368;}s:3:\"end\";i:1552248534;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:14429;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:13004;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.9012;}s:3:\"end\";i:1552248535;}}'),(5677,583,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:31273;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:30579;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:0.9778;}s:3:\"end\";i:1552248538;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:7207;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5933;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8232;}s:3:\"end\";i:1552248539;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:16119;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:14227;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.8826;}s:3:\"end\";i:1552248541;}}'),(5678,581,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:21721;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:21009;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:0.9672;}s:3:\"end\";i:1552248549;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5671;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:4639;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.818;}s:3:\"end\";i:1552248551;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:11183;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:9814;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.8776;}s:3:\"end\";i:1552248553;}}'),(5679,580,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:46702;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:46702;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248556;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:8031;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6814;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8485;}s:3:\"end\";i:1552248557;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:19443;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:17602;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.9053;}s:3:\"end\";i:1552248559;}}'),(5680,579,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:26714;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:26714;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248561;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5382;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:4375;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8129;}s:3:\"end\";i:1552248563;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:11949;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:10710;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.8963;}s:3:\"end\";i:1552248564;}}'),(5681,578,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:39653;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:39653;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248566;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:7805;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6543;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8383;}s:3:\"end\";i:1552248568;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:17842;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:15906;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.8915;}s:3:\"end\";i:1552248573;}}'),(5682,561,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:19438;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:17196;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:0.8847;}s:3:\"end\";i:1552248575;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5360;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:4243;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.7916;}s:3:\"end\";i:1552248576;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10817;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:9184;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.849;}s:3:\"end\";i:1552248578;}}'),(5683,560,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:20974;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:19647;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:0.9367;}s:3:\"end\";i:1552248580;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5613;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:4598;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8192;}s:3:\"end\";i:1552248581;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:11342;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:10096;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.8901;}s:3:\"end\";i:1552248584;}}'),(5684,558,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:29678;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:29678;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248592;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6425;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5326;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8289;}s:3:\"end\";i:1552248594;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:14324;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:12946;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.9038;}s:3:\"end\";i:1552248595;}}'),(5685,557,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:35629;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:35629;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248598;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:7344;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6051;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8239;}s:3:\"end\";i:1552248599;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:16740;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:15072;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.9004;}s:3:\"end\";i:1552248601;}}'),(5686,559,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:40932;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:40932;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248586;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:8207;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6928;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8442;}s:3:\"end\";i:1552248587;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:18638;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:16841;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.9036;}s:3:\"end\";i:1552248590;}}'),(5687,556,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:16816;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:15048;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:0.8949;}s:3:\"end\";i:1552248603;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4799;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3755;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.7825;}s:3:\"end\";i:1552248605;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:9321;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:8043;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.8629;}s:3:\"end\";i:1552248606;}}'),(5688,555,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:29991;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:29991;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248609;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6250;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5194;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.831;}s:3:\"end\";i:1552248610;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:14102;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:12743;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.9036;}s:3:\"end\";i:1552248612;}}'),(5689,554,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:25115;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:25115;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248691;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5046;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3952;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.7832;}s:3:\"end\";i:1552248693;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:11385;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:10068;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.8843;}s:3:\"end\";i:1552248694;}}'),(5690,550,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:36981;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:36981;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248652;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6765;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5602;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8281;}s:3:\"end\";i:1552248653;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:15626;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:14061;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.8998;}s:3:\"end\";i:1552248655;}}'),(5691,553,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:20621;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:19403;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:0.9409;}s:3:\"end\";i:1552248647;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5475;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:4354;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.7953;}s:3:\"end\";i:1552248648;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:11010;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:9740;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.8847;}s:3:\"end\";i:1552248649;}}'),(5692,551,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:19836;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:19732;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:0.9948;}s:3:\"end\";i:1552248651;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4447;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3485;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.7837;}s:3:\"end\";i:1552248653;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:9488;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:8370;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.8822;}s:3:\"end\";i:1552248654;}}'),(5693,552,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:29463;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:29463;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248647;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:7053;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6153;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8724;}s:3:\"end\";i:1552248648;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:14644;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:13685;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.9345;}s:3:\"end\";i:1552248650;}}'),(5694,549,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:25341;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:25341;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248656;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5420;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:4368;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8059;}s:3:\"end\";i:1552248658;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:12436;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:11035;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.8873;}s:3:\"end\";i:1552248659;}}'),(5695,545,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:20715;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:20214;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:0.9758;}s:3:\"end\";i:1552248666;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5017;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:4027;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8027;}s:3:\"end\";i:1552248668;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10272;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:9076;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.8836;}s:3:\"end\";i:1552248669;}}'),(5696,548,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:26568;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:25849;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:0.9729;}s:3:\"end\";i:1552248657;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6162;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:4964;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8056;}s:3:\"end\";i:1552248658;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:13391;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:11696;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.8734;}s:3:\"end\";i:1552248660;}}'),(5697,546,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:52244;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:52244;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248663;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:9968;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:8465;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8492;}s:3:\"end\";i:1552248664;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:23756;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:21389;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.9004;}s:3:\"end\";i:1552248666;}}'),(5698,547,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:16186;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:14961;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:0.9243;}s:3:\"end\";i:1552248662;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4330;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3324;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.7677;}s:3:\"end\";i:1552248663;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:8514;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:7350;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.8633;}s:3:\"end\";i:1552248664;}}'),(5699,544,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:25065;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:24149;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:0.9635;}s:3:\"end\";i:1552248668;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6230;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:4982;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.7997;}s:3:\"end\";i:1552248670;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:12879;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:11432;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.8876;}s:3:\"end\";i:1552248671;}}'),(5700,543,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:49454;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:49454;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248672;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:7931;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6710;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.846;}s:3:\"end\";i:1552248673;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:19738;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:17916;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.9077;}s:3:\"end\";i:1552248675;}}'),(5701,542,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:24947;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:24677;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:0.9892;}s:3:\"end\";i:1552248674;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5364;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:4313;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8041;}s:3:\"end\";i:1552248675;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:11578;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:10266;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.8867;}s:3:\"end\";i:1552248677;}}'),(5702,541,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:32850;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:32386;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:0.9859;}s:3:\"end\";i:1552248677;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6886;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5907;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8578;}s:3:\"end\";i:1552248678;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:14717;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:13379;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.9091;}s:3:\"end\";i:1552248685;}}'),(5703,540,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:37048;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:37048;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248678;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:7103;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5798;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8163;}s:3:\"end\";i:1552248679;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:16360;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:14528;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.888;}s:3:\"end\";i:1552248681;}}'),(5704,538,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:30152;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:30152;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248683;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6469;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5365;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8293;}s:3:\"end\";i:1552248684;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:14618;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:13038;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.8919;}s:3:\"end\";i:1552248686;}}'),(5705,539,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:26692;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:26692;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:360;s:5:\"ratio\";d:1;}s:3:\"end\";i:1552248679;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5792;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:4756;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8211;}s:3:\"end\";i:1552248680;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:12871;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:11556;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:0.8978;}s:3:\"end\";i:1552248682;}}'),(5706,535,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:185654;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:128564;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1920;s:6:\"height\";i:752;s:5:\"ratio\";d:0.6925;}s:3:\"end\";i:1552248690;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:7069;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5823;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8237;}s:3:\"end\";i:1552248691;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:7262;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5622;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:118;s:5:\"ratio\";d:0.7742;}s:3:\"end\";i:1552248693;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:33966;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:28895;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:301;s:5:\"ratio\";d:0.8507;}s:3:\"end\";i:1552248695;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:56876;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:39399;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:401;s:5:\"ratio\";d:0.6927;}s:3:\"end\";i:1552248698;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:53180;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:41820;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.7864;}s:3:\"end\";i:1552248700;}}'),(5707,536,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:85900;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:61777;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1920;s:6:\"height\";i:752;s:5:\"ratio\";d:0.7192;}s:3:\"end\";i:1552248686;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6353;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5230;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8232;}s:3:\"end\";i:1552248687;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6294;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:4880;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:118;s:5:\"ratio\";d:0.7753;}s:3:\"end\";i:1552248701;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:22569;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:18219;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:301;s:5:\"ratio\";d:0.8073;}s:3:\"end\";i:1552248704;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:34476;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:20933;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:401;s:5:\"ratio\";d:0.6072;}s:3:\"end\";i:1552248706;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:33635;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:24532;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.7294;}s:3:\"end\";i:1552248708;}}'),(5708,534,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:141658;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:49078;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1920;s:6:\"height\";i:691;s:5:\"ratio\";d:0.3465;}s:3:\"end\";i:1552248690;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5744;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:4637;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8073;}s:3:\"end\";i:1552248691;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4812;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3543;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:108;s:5:\"ratio\";d:0.7363;}s:3:\"end\";i:1552248693;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:18264;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:14583;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:276;s:5:\"ratio\";d:0.7985;}s:3:\"end\";i:1552248695;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:28507;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:23076;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:369;s:5:\"ratio\";d:0.8095;}s:3:\"end\";i:1552248698;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:32008;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:22617;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.7066;}s:3:\"end\";i:1552248700;}}'),(5709,533,'tiny_compress_images','a:5:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:952805;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:202105;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:998;s:6:\"height\";i:762;s:5:\"ratio\";d:0.2121;}s:3:\"end\";i:1552248696;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:39430;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:11714;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.2971;}s:3:\"end\";i:1552248697;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:94779;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:24476;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:229;s:5:\"ratio\";d:0.2582;}s:3:\"end\";i:1552248700;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:521870;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:122009;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:586;s:5:\"ratio\";d:0.2338;}s:3:\"end\";i:1552248704;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:330297;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:77129;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.2335;}s:3:\"end\";i:1552248708;}}'),(5710,532,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:106915;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:58349;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:5:\"ratio\";d:0.5458;}s:3:\"end\";i:1552248700;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:3940;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:2627;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.6668;}s:3:\"end\";i:1552248701;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5001;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3181;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:5:\"ratio\";d:0.6361;}s:3:\"end\";i:1552248702;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:18681;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:10812;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:5:\"ratio\";d:0.5788;}s:3:\"end\";i:1552248704;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:30319;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:17151;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:5:\"ratio\";d:0.5657;}s:3:\"end\";i:1552248706;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:20667;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:12120;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.5864;}s:3:\"end\";i:1552248708;}}'),(5711,529,'tiny_compress_images','a:2:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:11159;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:9960;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:210;s:6:\"height\";i:210;s:5:\"ratio\";d:0.8926;}s:3:\"end\";i:1552248702;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6403;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5058;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.7899;}s:3:\"end\";i:1552248703;}}'),(5712,531,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:78471;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:44233;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1920;s:6:\"height\";i:792;s:5:\"ratio\";d:0.5637;}s:3:\"end\";i:1552248704;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5117;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3832;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.7489;}s:3:\"end\";i:1552248705;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4892;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3274;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:5:\"ratio\";d:0.6693;}s:3:\"end\";i:1552248709;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:17536;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:12591;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:317;s:5:\"ratio\";d:0.718;}s:3:\"end\";i:1552248711;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:27254;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:15884;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:422;s:5:\"ratio\";d:0.5828;}s:3:\"end\";i:1552248723;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:27243;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:16585;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.6088;}s:3:\"end\";i:1552248725;}}'),(5713,528,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:93959;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:61153;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1920;s:6:\"height\";i:577;s:5:\"ratio\";d:0.6508;}s:3:\"end\";i:1552248709;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4009;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:2905;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.7246;}s:3:\"end\";i:1552248710;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4592;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3422;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:5:\"ratio\";d:0.7452;}s:3:\"end\";i:1552248712;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:19177;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:15804;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:231;s:5:\"ratio\";d:0.8241;}s:3:\"end\";i:1552248714;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:31618;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:26491;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:308;s:5:\"ratio\";d:0.8378;}s:3:\"end\";i:1552248716;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:22550;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:14186;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.6291;}s:3:\"end\";i:1552248718;}}'),(5714,63,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:271267;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:197072;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1226;s:6:\"height\";i:871;s:5:\"ratio\";d:0.7265;}s:3:\"end\";i:1552248713;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10013;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:8502;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8491;}s:3:\"end\";i:1552248714;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:22848;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:20394;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:5:\"ratio\";d:0.8926;}s:3:\"end\";i:1552248716;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:112929;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:89925;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:546;s:5:\"ratio\";d:0.7963;}s:3:\"end\";i:1552248718;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:181561;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:117759;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:727;s:5:\"ratio\";d:0.6486;}s:3:\"end\";i:1552248722;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:75817;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:56396;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.7438;}s:3:\"end\";i:1552248724;}}'),(5715,55,'tiny_compress_images','a:1:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5242;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2151;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:89;s:6:\"height\";i:27;s:5:\"ratio\";d:0.4103;}s:3:\"end\";i:1552248710;}}'),(5716,54,'tiny_compress_images','a:1:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5634;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:1624;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:62;s:6:\"height\";i:37;s:5:\"ratio\";d:0.2882;}s:3:\"end\";i:1552248716;}}'),(5717,53,'tiny_compress_images','a:1:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4244;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:1611;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:135;s:6:\"height\";i:34;s:5:\"ratio\";d:0.3796;}s:3:\"end\";i:1552248711;}}'),(5718,52,'tiny_compress_images','a:2:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5170;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2492;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:169;s:6:\"height\";i:36;s:5:\"ratio\";d:0.482;}s:3:\"end\";i:1552248712;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:3520;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2149;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:36;s:5:\"ratio\";d:0.6105;}s:3:\"end\";i:1552248713;}}'),(5719,51,'tiny_compress_images','a:1:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5357;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2076;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:105;s:6:\"height\";i:34;s:5:\"ratio\";d:0.3875;}s:3:\"end\";i:1552248715;}}'),(5720,50,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:22040;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:20753;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:355;s:6:\"height\";i:174;s:5:\"ratio\";d:0.9416;}s:3:\"end\";i:1552248741;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:8614;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:7387;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8576;}s:3:\"end\";i:1552248742;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:16814;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:14980;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:5:\"ratio\";d:0.8909;}s:3:\"end\";i:1552248744;}}'),(5721,800,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:407;s:6:\"height\";i:100;s:4:\"file\";s:7:\"BMO.png\";}}'),(5722,593,'_edit_lock','1552250344:4'),(5723,798,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:465;s:6:\"height\";i:100;s:4:\"file\";s:23:\"Excellus-Blue-Cross.jpg\";}}'),(5724,798,'_edit_lock','1552250388:4'),(5725,799,'_edit_lock','1552250425:4'),(5726,799,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:388;s:6:\"height\";i:100;s:4:\"file\";s:32:\"CBB-Logo-POS-URL-RGB-May2716.jpg\";}}'),(5727,795,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:391;s:6:\"height\";i:100;s:4:\"file\";s:28:\"logo@1x-1-e1551968004407.png\";}}'),(5728,795,'_edit_lock','1552251896:4'),(5736,845,'_wp_attached_file','2019/03/translucent-brand-and-icon-02-e1552318421747.jpg'),(5737,845,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:94;s:4:\"file\";s:56:\"2019/03/translucent-brand-and-icon-02-e1552318421747.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"translucent-brand-and-icon-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"translucent-brand-and-icon-02-300x56.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:56;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"translucent-brand-and-icon-02-768x144.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"translucent-brand-and-icon-02-1024x193.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:41:\"translucent-brand-and-icon-02-500x362.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:362;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:{}}}'),(5743,847,'_wp_attached_file','2019/03/translucent-brand-and-icon-02-e1552318265738.png'),(5744,847,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:333;s:6:\"height\";i:70;s:4:\"file\";s:56:\"2019/03/translucent-brand-and-icon-02-e1552318265738.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"translucent-brand-and-icon-02-e1552318265738-150x70.png\";s:5:\"width\";i:150;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"translucent-brand-and-icon-02-e1552318265738-300x63.png\";s:5:\"width\";i:300;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"translucent-brand-and-icon-02-768x307.png\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"translucent-brand-and-icon-02-1024x410.png\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:41:\"translucent-brand-and-icon-02-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(5745,847,'_edit_lock','1552318225:4'),(5746,847,'_wp_attachment_backup_sizes','a:7:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2954;s:6:\"height\";i:1182;s:4:\"file\";s:33:\"translucent-brand-and-icon-02.png\";}s:18:\"full-1552318265738\";a:3:{s:5:\"width\";i:500;s:6:\"height\";i:200;s:4:\"file\";s:48:\"translucent-brand-and-icon-02-e1552318221862.png\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:41:\"translucent-brand-and-icon-02-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:41:\"translucent-brand-and-icon-02-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:41:\"translucent-brand-and-icon-02-768x307.png\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:42:\"translucent-brand-and-icon-02-1024x410.png\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"feature-orig\";a:4:{s:4:\"file\";s:41:\"translucent-brand-and-icon-02-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}}'),(5747,847,'_edit_last','4'),(5748,848,'_wp_attached_file','2019/03/translucent-brand-and-icon-500by200.png'),(5749,848,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1024;s:4:\"file\";s:47:\"2019/03/translucent-brand-and-icon-500by200.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"translucent-brand-and-icon-500by200-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"translucent-brand-and-icon-500by200-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"translucent-brand-and-icon-500by200-768x307.png\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"translucent-brand-and-icon-500by200-1024x410.png\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:47:\"translucent-brand-and-icon-500by200-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(5750,845,'_edit_lock','1552319357:4'),(5751,845,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1924;s:6:\"height\";i:362;s:4:\"file\";s:33:\"translucent-brand-and-icon-02.jpg\";}}'),(5752,845,'_edit_last','4'),(5805,2,'_yoast_wpseo_metadesc','Your digital transformation, certified cloud native and Kubernetes partner focused on DevOps and data driven application development.'),(5806,2,'_yoast_wpseo_content_score','60'),(5859,2,'_yoast_wpseo_focuskw','Toronto\'s Cloud Native Consulting'),(5860,2,'_yoast_wpseo_linkdex','31'),(5913,2,'_yoast_wpseo_title','%%title%% %%sep%% %%sitename%% %%sep%% Toronto\'s Cloud Native Application Development & DevOps Consultants | We Listen. We Learn. We Inform. We Support'),(5914,14,'_yoast_wpseo_focuskw','Microservices'),(5915,14,'_yoast_wpseo_title','Translucent | Microservices - Incremental Steps to the Cloud'),(5916,14,'_yoast_wpseo_metadesc','Translucent Microservices Strategy - Building scalable, reliable and secure ecosystems for your business!'),(5917,14,'_yoast_wpseo_linkdex','46'),(6091,16,'_yoast_wpseo_focuskw','Machine Learning'),(6092,16,'_yoast_wpseo_title','Machine Learning Experts - Is Your Data Working For You? | Translucent'),(6093,16,'_yoast_wpseo_metadesc','Machine learning solutions that provide insights on how to increase profits, improve user experience, and enhance clarity in decision making.'),(6094,16,'_yoast_wpseo_linkdex','47'),(6096,18,'_yoast_wpseo_focuskw','Devops'),(6097,18,'_yoast_wpseo_title','Cloud Native DevOps Consulting - Seamless Automation and Integration | Translucent'),(6098,18,'_yoast_wpseo_metadesc','Custom SRE DevSecOps solutions to build and deliver automated and self-sustaining infrastructures on all cloud platforms. The online world – in sync.'),(6099,18,'_yoast_wpseo_linkdex','22'),(6101,44,'_yoast_wpseo_focuskw','Digital Transformation'),(6102,44,'_yoast_wpseo_title','Cloud Native Digital Transformation Experts | Translucent'),(6103,44,'_yoast_wpseo_metadesc','Cost-effective and customized services to digitize, digitalize, and transform your business. We are your Digital Transformation partner.'),(6104,44,'_yoast_wpseo_linkdex','32'),(6158,10,'_yoast_wpseo_focuskw','digital transformation'),(6159,10,'_yoast_wpseo_title','About Translucent | Your Data-Driven Digital Transformation Team'),(6160,10,'_yoast_wpseo_metadesc','Translucent provides custom solutions for your complex technical issues, without the technical jargon. We transform your technology problems into results.'),(6161,10,'_yoast_wpseo_linkdex','25'),(6163,60,'_yoast_wpseo_focuskw','Digital Transformation'),(6164,60,'_yoast_wpseo_title','TEKProcess: Innovation, Value, Digital Transformation | Translucent'),(6165,60,'_yoast_wpseo_metadesc','Translucent will help your business stay relevant and competitive through Digital Transformation -while providing quality, innovation, and value.'),(6166,60,'_yoast_wpseo_linkdex','32'),(6204,804,'_yoast_wpseo_focuskw','Digital Transformation'),(6205,804,'_yoast_wpseo_title','Canadian Black Book Case Study | Translucent'),(6206,804,'_yoast_wpseo_metadesc','Digital Transformation for CBB – How we used our cloud platform to successfully build and deploy scalable, reliable apps for consumers and enterprise. (Backend middle tier, front end, mobile, security and monitoring from architecture throughout implementation.)'),(6207,804,'_yoast_wpseo_linkdex','27'),(6209,38,'_yoast_wpseo_focuskw','Medical Chart Data Transformation - SickKids'),(6210,38,'_yoast_wpseo_title','SickKids Case Study: Health AI Data Platform | Translucent'),(6211,38,'_yoast_wpseo_metadesc','SickKids – How we indexed, analyzed and transformed half a billion hospital records for the Neonatal Intensive Care Unit using an Electronic Medical Chart platform based on data transformation, and mapping and migration of billions of charts inputs from a legacy electronic chart application.'),(6212,38,'_yoast_wpseo_linkdex','29'),(6214,57,'_yoast_wpseo_focuskw','contact translucent'),(6215,57,'_yoast_wpseo_title','Contact Us - Digital Transformation Solutions | Translucent'),(6216,57,'_yoast_wpseo_metadesc','Contact Translucent today for all your Digital Transformation and cloud native questions, sales, and support needs.'),(6217,57,'_yoast_wpseo_linkdex','43'),(6255,859,'_menu_item_type','post_type'),(6256,859,'_menu_item_menu_item_parent','0'),(6257,859,'_menu_item_object_id','829'),(6258,859,'_menu_item_object','page'),(6259,859,'_menu_item_target',''),(6260,859,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6261,859,'_menu_item_xfn',''),(6262,859,'_menu_item_url',''),(6264,848,'_edit_lock','1552343176:4'),(6503,829,'_yoast_wpseo_focuskw','Digital Transformation'),(6504,829,'_yoast_wpseo_title','Our Services - Digital Transformation with Kubernetes | Translucent'),(6505,829,'_yoast_wpseo_metadesc','Your Digital Transformation, cloud native, DevOps, microservices, and machine learning partner. Accelerate your cloud journey with solutions your business can depend on.'),(6506,829,'_yoast_wpseo_linkdex','28'),(6511,868,'_wp_attached_file','2019/03/Color-logo-with-background-small.png'),(6512,868,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1084;s:6:\"height\";i:493;s:4:\"file\";s:44:\"2019/03/Color-logo-with-background-small.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Color-logo-with-background-small-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Color-logo-with-background-small-300x136.png\";s:5:\"width\";i:300;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Color-logo-with-background-small-768x349.png\";s:5:\"width\";i:768;s:6:\"height\";i:349;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"Color-logo-with-background-small-1024x466.png\";s:5:\"width\";i:1024;s:6:\"height\";i:466;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:44:\"Color-logo-with-background-small-500x493.png\";s:5:\"width\";i:500;s:6:\"height\";i:493;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:{}}}'),(6513,869,'_edit_lock','1654604169:20'),(6514,869,'_edit_last','9'),(6515,869,'_yoast_wpseo_content_score','60'),(6516,871,'_edit_lock','1606450153:9'),(6518,871,'_wp_old_date','2019-03-26'),(6519,871,'_edit_last','1'),(6521,871,'_yoast_wpseo_primary_category',''),(6522,871,'_yoast_wpseo_content_score','90'),(6523,873,'_edit_lock','1606450033:9'),(6525,873,'_wp_old_date','2019-03-26'),(6526,873,'_edit_last','1'),(6528,873,'_yoast_wpseo_primary_category',''),(6529,873,'_yoast_wpseo_content_score','30'),(6530,875,'_edit_lock','1606450024:9'),(6532,875,'_wp_old_date','2019-03-26'),(6533,875,'_edit_last','1'),(6535,875,'_yoast_wpseo_primary_category',''),(6536,875,'_yoast_wpseo_content_score','60'),(6537,877,'_edit_lock','1606449995:9'),(6539,877,'_wp_old_date','2019-03-26'),(6540,877,'_edit_last','1'),(6542,877,'_yoast_wpseo_primary_category',''),(6543,877,'_yoast_wpseo_content_score','60'),(6544,879,'_edit_lock','1606449984:9'),(6546,879,'_wp_old_date','2019-03-26'),(6547,879,'_edit_last','1'),(6549,879,'_yoast_wpseo_primary_category',''),(6550,879,'_yoast_wpseo_content_score','60'),(6552,879,'_wp_old_date','2012-07-12'),(6553,881,'_edit_lock','1606449973:9'),(6555,881,'_wp_old_date','2019-03-26'),(6556,881,'_edit_last','1'),(6558,881,'_yoast_wpseo_primary_category',''),(6559,881,'_yoast_wpseo_content_score','60'),(6560,883,'_edit_lock','1606450089:9'),(6562,883,'_wp_old_date','2019-03-26'),(6563,883,'_edit_last','9'),(6565,883,'_yoast_wpseo_primary_category','1'),(6566,883,'_yoast_wpseo_content_score','90'),(6567,885,'_edit_lock','1606449707:9'),(6569,885,'_wp_old_date','2019-03-26'),(6570,885,'_edit_last','1'),(6572,885,'_yoast_wpseo_primary_category',''),(6573,885,'_yoast_wpseo_content_score','90'),(6574,887,'_edit_lock','1606449824:9'),(6576,887,'_wp_old_date','2019-03-26'),(6577,887,'_oembed_669294c70bcf7a05b87dc31852be421f','{{unknown}}'),(6578,887,'_edit_last','9'),(6580,887,'_yoast_wpseo_primary_category','1'),(6581,887,'_yoast_wpseo_content_score','30'),(6582,890,'_edit_lock','1606449648:9'),(6584,890,'_wp_old_date','2019-03-26'),(6585,890,'_edit_last','1'),(6587,890,'_yoast_wpseo_primary_category',''),(6588,890,'_yoast_wpseo_content_score','30'),(6589,892,'_edit_lock','1606449771:9'),(6591,892,'_wp_old_date','2019-03-26'),(6592,892,'_edit_last','9'),(6594,892,'_yoast_wpseo_primary_category','1'),(6595,892,'_yoast_wpseo_content_score','30'),(6596,894,'_edit_lock','1606449727:9'),(6598,894,'_wp_old_date','2019-03-26'),(6599,894,'_edit_last','9'),(6601,894,'_yoast_wpseo_primary_category','1'),(6602,894,'_yoast_wpseo_content_score','30'),(6604,897,'_edit_lock','1606449685:9'),(6606,897,'_wp_old_date','2019-03-26'),(6607,897,'_edit_last','9'),(6609,897,'_yoast_wpseo_primary_category','1'),(6610,897,'_yoast_wpseo_content_score','30'),(6611,899,'_edit_lock','1606449608:9'),(6612,899,'_edit_last','1'),(6613,899,'_yoast_wpseo_primary_category',''),(6614,899,'_yoast_wpseo_content_score','30'),(6616,899,'_wp_old_date','2019-03-26'),(6618,901,'_edit_lock','1606449444:9'),(6620,901,'_wp_old_date','2019-03-26'),(6621,901,'_edit_last','1'),(6623,901,'_yoast_wpseo_primary_category',''),(6624,901,'_yoast_wpseo_content_score','60'),(6625,903,'_edit_lock','1606449407:9'),(6627,903,'_wp_old_date','2019-03-26'),(6628,903,'_edit_last','1'),(6630,903,'_yoast_wpseo_primary_category',''),(6631,903,'_yoast_wpseo_content_score','30'),(6632,905,'_edit_lock','1606449384:9'),(6634,905,'_wp_old_date','2019-03-26'),(6635,905,'_edit_last','1'),(6637,905,'_yoast_wpseo_primary_category',''),(6638,905,'_yoast_wpseo_content_score','60'),(6639,907,'_edit_lock','1606449384:9'),(6641,907,'_wp_old_date','2019-03-26'),(6642,907,'_oembed_9b879a394434f774510b8a4644dc7bf2','{{unknown}}'),(6643,907,'_edit_last','9'),(6645,907,'_yoast_wpseo_primary_category','1'),(6646,907,'_yoast_wpseo_content_score','30'),(6647,910,'_edit_lock','1606449184:9'),(6649,910,'_wp_old_date','2019-03-26'),(6650,910,'_edit_last','9'),(6652,910,'_yoast_wpseo_primary_category','1'),(6653,910,'_yoast_wpseo_content_score','30'),(6654,912,'_edit_lock','1606448862:9'),(6656,912,'_wp_old_date','2019-03-26'),(6657,912,'_edit_last','1'),(6659,912,'_yoast_wpseo_primary_category',''),(6660,912,'_yoast_wpseo_content_score','30'),(6661,914,'_edit_lock','1662370178:21'),(6663,914,'_wp_old_date','2019-03-26'),(6664,914,'_edit_last','1'),(6666,914,'_yoast_wpseo_primary_category',''),(6667,914,'_yoast_wpseo_content_score','30'),(6668,916,'_edit_lock','1606448716:9'),(6670,916,'_wp_old_date','2019-03-26'),(6671,916,'_edit_last','1'),(6673,916,'_yoast_wpseo_primary_category',''),(6674,916,'_yoast_wpseo_content_score','30'),(6675,918,'_edit_lock','1606448678:9'),(6677,918,'_wp_old_date','2019-03-26'),(6678,918,'_edit_last','9'),(6680,918,'_yoast_wpseo_primary_category','1'),(6681,918,'_yoast_wpseo_content_score','30'),(6682,920,'_edit_lock','1606448515:9'),(6684,920,'_wp_old_date','2019-03-26'),(6685,920,'_edit_last','9'),(6687,920,'_yoast_wpseo_primary_category','1'),(6688,920,'_yoast_wpseo_content_score','60'),(6689,922,'_edit_lock','1639174361:19'),(6690,922,'_edit_last','17'),(6692,922,'_wp_page_template','home.php'),(6720,920,'_thumbnail_id','560'),(6723,918,'_thumbnail_id','778'),(6726,916,'_thumbnail_id','558'),(6729,914,'_thumbnail_id','559'),(6734,912,'_thumbnail_id','780'),(6737,910,'_thumbnail_id','545'),(6740,907,'_thumbnail_id','554'),(6743,905,'_thumbnail_id','779'),(6752,910,'_wp_old_slug','the-hashtag-5975-html'),(6755,910,'_wp_old_slug','the-hashtag-5975'),(6758,928,'_menu_item_type','post_type'),(6759,928,'_menu_item_menu_item_parent','0'),(6760,928,'_menu_item_object_id','922'),(6761,928,'_menu_item_object','page'),(6762,928,'_menu_item_target',''),(6763,928,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6764,928,'_menu_item_xfn',''),(6765,928,'_menu_item_url',''),(6767,929,'_edit_lock','1606448177:9'),(6768,929,'_edit_last','3'),(6769,929,'_yoast_wpseo_primary_category','94'),(6770,929,'_yoast_wpseo_content_score','30'),(6778,929,'_yoast_wpseo_focuskw','Kubernetes'),(6779,929,'_yoast_wpseo_metadesc','How to import local data into Elasticsearch with Python. The Elasticsearch has been deployed in Kubernetes cluster and a connection has to be established.'),(6780,929,'_yoast_wpseo_linkdex','71'),(6781,949,'_wp_attached_file','2019/05/k8s-pod-connection.png'),(6782,949,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1169;s:6:\"height\";i:774;s:4:\"file\";s:30:\"2019/05/k8s-pod-connection.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"k8s-pod-connection-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"k8s-pod-connection-300x199.png\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"k8s-pod-connection-768x508.png\";s:5:\"width\";i:768;s:6:\"height\";i:508;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"k8s-pod-connection-1024x678.png\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:30:\"k8s-pod-connection-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(6783,929,'_thumbnail_id','949'),(6798,968,'_wp_attached_file','2019/06/254by34px-jpeg.jpg'),(6799,968,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:254;s:6:\"height\";i:34;s:4:\"file\";s:26:\"2019/06/254by34px-jpeg.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"254by34px-jpeg-150x34.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:34;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:{}}}'),(6800,969,'_wp_attached_file','2019/07/number-1-blue-64.png'),(6801,969,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:28:\"2019/07/number-1-blue-64.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6802,970,'_wp_attached_file','2019/07/number-1-red-128.png'),(6803,970,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:126;s:6:\"height\";i:126;s:4:\"file\";s:28:\"2019/07/number-1-red-128.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6804,971,'_wp_attached_file','2019/07/number-2-blue-64.png'),(6805,971,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:28:\"2019/07/number-2-blue-64.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6806,972,'_wp_attached_file','2019/07/number-2-red-128.png'),(6807,972,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:126;s:6:\"height\";i:126;s:4:\"file\";s:28:\"2019/07/number-2-red-128.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6808,973,'_wp_attached_file','2019/07/number-3-black-64.png'),(6809,973,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:29:\"2019/07/number-3-black-64.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6810,974,'_wp_attached_file','2019/07/number-4-black-64.png'),(6811,974,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:29:\"2019/07/number-4-black-64.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6812,975,'_wp_attached_file','2019/07/number-5-black-64.png'),(6813,975,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:29:\"2019/07/number-5-black-64.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6814,976,'_wp_attached_file','2019/07/number-1-black-64.png'),(6815,976,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:29:\"2019/07/number-1-black-64.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6816,977,'_wp_attached_file','2019/07/number-3-blue-64.png'),(6817,977,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:64;s:6:\"height\";i:64;s:4:\"file\";s:28:\"2019/07/number-3-blue-64.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(7828,997,'_wp_attached_file','2019/12/tablet.png'),(7829,997,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:768;s:4:\"file\";s:18:\"2019/12/tablet.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"tablet-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"tablet-300x230.png\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"tablet-768x590.png\";s:5:\"width\";i:768;s:6:\"height\";i:590;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:18:\"tablet-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(7868,1000,'_edit_lock','1606448143:9'),(7869,1000,'_edit_last','9'),(7870,1000,'_yoast_wpseo_primary_category','90'),(7871,1000,'_yoast_wpseo_content_score','30'),(7874,1003,'_wp_attached_file','2019/12/greetings.png'),(7875,1003,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:363;s:4:\"file\";s:21:\"2019/12/greetings.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"greetings-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"greetings-300x218.png\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:21:\"greetings-500x363.png\";s:5:\"width\";i:500;s:6:\"height\";i:363;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:{}}}'),(7877,1000,'_thumbnail_id','1003'),(7881,1000,'_yoast_wpseo_focuskw','Fourier Series'),(7882,1000,'_yoast_wpseo_metadesc','Taking an array of points representing an image and converting the points into a Fourier Series. Animating the dance of vecotrs composing the Fourier Series'),(7883,1000,'_yoast_wpseo_linkdex','41'),(7886,1004,'_edit_lock','1606447983:9'),(7887,1004,'_edit_last','9'),(7888,1004,'_yoast_wpseo_primary_category','90'),(7889,1004,'_yoast_wpseo_content_score','30'),(7890,1008,'_wp_attached_file','2019/12/music-player-speaker.png'),(7891,1008,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1441;s:6:\"height\";i:751;s:4:\"file\";s:32:\"2019/12/music-player-speaker.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"music-player-speaker-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"music-player-speaker-300x156.png\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"music-player-speaker-768x400.png\";s:5:\"width\";i:768;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"music-player-speaker-1024x534.png\";s:5:\"width\";i:1024;s:6:\"height\";i:534;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:32:\"music-player-speaker-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(7892,1011,'_wp_attached_file','2019/12/homer-snakes.jpg'),(7893,1011,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:400;s:4:\"file\";s:24:\"2019/12/homer-snakes.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"homer-snakes-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"homer-snakes-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"homer-snakes-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:24:\"homer-snakes-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;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:{}}}'),(7894,1014,'_wp_attached_file','2019/12/rlc.png'),(7895,1014,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2310;s:6:\"height\";i:1078;s:4:\"file\";s:15:\"2019/12/rlc.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"rlc-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"rlc-300x140.png\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"rlc-768x358.png\";s:5:\"width\";i:768;s:6:\"height\";i:358;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"rlc-1024x478.png\";s:5:\"width\";i:1024;s:6:\"height\";i:478;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:15:\"rlc-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(7896,1018,'_wp_attached_file','2019/12/RLC-classic-analysis.html'),(7897,1023,'_wp_attached_file','2019/12/RLC-laplace.html'),(7898,1030,'_wp_attached_file','2019/12/voice.png'),(7899,1030,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:904;s:6:\"height\";i:592;s:4:\"file\";s:17:\"2019/12/voice.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"voice-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"voice-300x196.png\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"voice-768x503.png\";s:5:\"width\";i:768;s:6:\"height\";i:503;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:17:\"voice-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(7900,1004,'_thumbnail_id','1030'),(7901,1048,'_wp_attached_file','2019/12/rlc-circuit.gif'),(7902,1048,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1145;s:6:\"height\";i:781;s:4:\"file\";s:23:\"2019/12/rlc-circuit.gif\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"rlc-circuit-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"rlc-circuit-300x205.gif\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"rlc-circuit-768x524.gif\";s:5:\"width\";i:768;s:6:\"height\";i:524;s:9:\"mime-type\";s:9:\"image/gif\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"rlc-circuit-1024x698.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:698;s:9:\"mime-type\";s:9:\"image/gif\";}s:7:\"feature\";a:4:{s:4:\"file\";s:23:\"rlc-circuit-500x500.gif\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/gif\";}}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:{}}}'),(7907,1004,'_yoast_wpseo_focuskw','Machine Learning Frequency Domain'),(7908,1004,'_yoast_wpseo_metadesc','Looking at frequency domain for machine learning analysis of time series data. How can transformaing the problem into to frequency domain improve analysis'),(7909,1004,'_yoast_wpseo_linkdex','56'),(7913,1058,'_edit_lock','1606429195:9'),(7914,1058,'_edit_last','9'),(7915,1058,'_yoast_wpseo_primary_category','90'),(7916,1058,'_yoast_wpseo_content_score','60'),(7917,1076,'_wp_attached_file','2019/12/performance-test-top.html'),(7918,1086,'_wp_attached_file','2019/12/performance-test.html'),(7919,1104,'_wp_attached_file','2019/12/performance.png'),(7920,1104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2019/12/performance.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"performance-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"performance-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"performance-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"performance-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:23:\"performance-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(7921,1058,'_thumbnail_id','1104'),(7928,1058,'_yoast_wpseo_focuskw','Jupyter Notebook Performance'),(7929,1058,'_yoast_wpseo_metadesc','A deeper look into optimzing Jupter python notebooks. Looking at profiling and structuring code. Showing how to use magic commands to profile code.'),(7930,1058,'_yoast_wpseo_linkdex','59'),(7931,1109,'_edit_lock','1606429303:9'),(7932,1109,'_edit_last','9'),(7933,1109,'_yoast_wpseo_primary_category','90'),(7934,1109,'_yoast_wpseo_content_score','60'),(7935,1109,'_oembed_77f5ba246e0cefa31f8cb48d1f56a7aa','{{unknown}}'),(7936,1118,'_wp_attached_file','2019/12/WILqvqC20V.gif'),(7937,1118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:562;s:6:\"height\";i:381;s:4:\"file\";s:22:\"2019/12/WILqvqC20V.gif\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"WILqvqC20V-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"WILqvqC20V-300x203.gif\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:9:\"image/gif\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"WILqvqC20V-500x381.gif\";s:5:\"width\";i:500;s:6:\"height\";i:381;s:9:\"mime-type\";s:9:\"image/gif\";}}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:{}}}'),(7938,1109,'_thumbnail_id','1118'),(7953,1128,'_wp_attached_file','2020/01/notebook-greetings-full.html'),(7954,1129,'_wp_attached_file','2020/01/notebook-performance-test-full.html'),(7972,1144,'_edit_lock','1606429236:9'),(7973,1144,'_edit_last','9'),(7974,1144,'_yoast_wpseo_primary_category','90'),(7975,1144,'_yoast_wpseo_content_score','60'),(7976,1144,'uagb_style_timestamp-css','1577942580'),(7977,1144,'uagb_style_timestamp-js','1577942580'),(7980,1177,'_wp_attached_file','2020/01/noise-data.png'),(7981,1177,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:776;s:6:\"height\";i:510;s:4:\"file\";s:22:\"2020/01/noise-data.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"noise-data-300x197.png\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"noise-data-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:\"noise-data-768x505.png\";s:5:\"width\";i:768;s:6:\"height\";i:505;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"noise-data-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(7982,1184,'_wp_attached_file','2020/01/performance-extreme.png'),(7983,1184,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:31:\"2020/01/performance-extreme.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"performance-extreme-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"performance-extreme-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"performance-extreme-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:\"performance-extreme-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:31:\"performance-extreme-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(7984,1144,'_thumbnail_id','1184'),(7985,1144,'_yoast_wpseo_focuskw','numpy and pandas optimization'),(7986,1144,'_yoast_wpseo_linkdex','55'),(7987,1144,'_yoast_wpseo_metadesc','Optimizing Python code with NumPy and pandas. Using vectorization techniques and code profiler to get an intuition about how to optimize the code.'),(7988,1185,'_wp_attached_file','2020/01/performance-test-optimize-notebook.html'),(7989,1186,'_edit_lock','1606429284:9'),(7990,1186,'_edit_last','9'),(7991,1186,'_yoast_wpseo_primary_category','90'),(7992,1186,'_yoast_wpseo_content_score','30'),(7993,1195,'_wp_attached_file','2020/01/XQDDaTdQeD.gif'),(7994,1195,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:647;s:6:\"height\";i:430;s:4:\"file\";s:22:\"2020/01/XQDDaTdQeD.gif\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"XQDDaTdQeD-300x199.gif\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"XQDDaTdQeD-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"XQDDaTdQeD-500x430.gif\";s:5:\"width\";i:500;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/gif\";}}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:{}}}'),(7995,1186,'_thumbnail_id','1195'),(7996,1186,'_yoast_wpseo_focuskw','performance notebook'),(7997,1186,'_yoast_wpseo_metadesc','Test notebook showing how to optimize Python code with pandas and NumPy'),(7998,1186,'_yoast_wpseo_linkdex','34'),(8005,1109,'_yoast_wpseo_focuskw','slow performance notebook'),(8006,1109,'_yoast_wpseo_metadesc','Examining magic code profiler commands with slow Python implementation of a time-series data generation process.'),(8007,1109,'_yoast_wpseo_linkdex','41'),(8014,1213,'_edit_lock','1606429174:9'),(8015,1213,'_edit_last','9'),(8016,1213,'_yoast_wpseo_primary_category','90'),(8017,1215,'_wp_attached_file','2020/01/ecg-sympy.jpg'),(8018,1215,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:21:\"2020/01/ecg-sympy.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"ecg-sympy-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:\"ecg-sympy-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:\"ecg-sympy-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:21:\"ecg-sympy-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(8019,1215,'_wp_attachment_image_alt','SymPy and ECG'),(8020,1213,'_thumbnail_id','1215'),(8021,1213,'_yoast_wpseo_content_score','30'),(8022,1216,'_wp_attached_file','2020/01/performance-ecg.html'),(8023,1217,'_wp_attached_file','2020/01/performance-test-wave.html'),(8024,1218,'_wp_attached_file','2020/01/t7W4ihQb60.gif'),(8025,1218,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:613;s:6:\"height\";i:276;s:4:\"file\";s:22:\"2020/01/t7W4ihQb60.gif\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"t7W4ihQb60-300x135.gif\";s:5:\"width\";i:300;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"t7W4ihQb60-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"t7W4ihQb60-500x276.gif\";s:5:\"width\";i:500;s:6:\"height\";i:276;s:9:\"mime-type\";s:9:\"image/gif\";}}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:{}}}'),(8026,1219,'_wp_attached_file','2020/01/CuSyhhKnYD.gif'),(8027,1219,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:541;s:6:\"height\";i:249;s:4:\"file\";s:22:\"2020/01/CuSyhhKnYD.gif\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"CuSyhhKnYD-300x138.gif\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"CuSyhhKnYD-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"CuSyhhKnYD-500x249.gif\";s:5:\"width\";i:500;s:6:\"height\";i:249;s:9:\"mime-type\";s:9:\"image/gif\";}}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:{}}}'),(8028,1220,'_edit_lock','1606429201:9'),(8029,1220,'_edit_last','9'),(8030,1220,'_yoast_wpseo_primary_category','90'),(8031,1220,'_yoast_wpseo_content_score','30'),(8032,1220,'_thumbnail_id','1218'),(8033,1220,'_yoast_wpseo_focuskw','jupyter notebook waveform generator'),(8034,1220,'_yoast_wpseo_metadesc','Jupyter notebook, Python, waveform generator starter. Example of creating a sine wave with noise. Pandas is used to process the data and spectrogram plots.'),(8035,1220,'_yoast_wpseo_linkdex','38'),(8038,1231,'_edit_lock','1606429189:9'),(8039,1231,'_thumbnail_id','1219'),(8040,1231,'_edit_last','9'),(8041,1231,'_yoast_wpseo_primary_category','90'),(8042,1231,'_yoast_wpseo_content_score','60'),(8043,1231,'_yoast_wpseo_focuskw','Jupyter SymPy ECG Model Notebook'),(8044,1231,'_yoast_wpseo_metadesc','Translucent simplified ECG model Jupyter notebook used to examine SymPy. SymPy is used to create idealized model symbolically.'),(8045,1231,'_yoast_wpseo_linkdex','38'),(8048,1243,'_wp_attached_file','2020/01/12leadECG.jpg'),(8049,1243,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1040;s:6:\"height\";i:407;s:4:\"file\";s:21:\"2020/01/12leadECG.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"12leadECG-300x117.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"12leadECG-1024x401.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:401;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"12leadECG-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:\"12leadECG-768x301.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:301;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:21:\"12leadECG-500x407.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:407;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:{}}}'),(8050,1244,'_wp_attached_file','2020/01/sinusrhythmlabels.jpeg'),(8051,1244,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:495;s:4:\"file\";s:30:\"2020/01/sinusrhythmlabels.jpeg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"sinusrhythmlabels-300x297.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"sinusrhythmlabels-150x150.jpeg\";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:{}}}'),(8054,1246,'_wp_attached_file','2020/01/apple-watch-ecg.png'),(8055,1246,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1578;s:4:\"file\";s:27:\"2020/01/apple-watch-ecg.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"apple-watch-ecg-300x185.png\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"apple-watch-ecg-1024x631.png\";s:5:\"width\";i:1024;s:6:\"height\";i:631;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"apple-watch-ecg-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:27:\"apple-watch-ecg-768x473.png\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"apple-watch-ecg-1536x947.png\";s:5:\"width\";i:1536;s:6:\"height\";i:947;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"apple-watch-ecg-2048x1262.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1262;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:27:\"apple-watch-ecg-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(8056,1213,'uagb_style_timestamp-css','1578344931'),(8057,1213,'uagb_style_timestamp-js','1578359874'),(8058,1275,'_wp_attached_file','2020/01/sympy-example.html'),(8059,1284,'_wp_attached_file','2020/01/p-wave-formula.png'),(8060,1284,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:372;s:6:\"height\";i:112;s:4:\"file\";s:26:\"2020/01/p-wave-formula.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"p-wave-formula-300x90.png\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"p-wave-formula-150x112.png\";s:5:\"width\";i:150;s:6:\"height\";i:112;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:{}}}'),(8061,1285,'_wp_attached_file','2020/01/p-wave-graph.png'),(8062,1285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:834;s:6:\"height\";i:526;s:4:\"file\";s:24:\"2020/01/p-wave-graph.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"p-wave-graph-300x189.png\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"p-wave-graph-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:24:\"p-wave-graph-768x484.png\";s:5:\"width\";i:768;s:6:\"height\";i:484;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:24:\"p-wave-graph-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(8063,1289,'_wp_attached_file','2020/01/tc-ecg-model-formula.png'),(8064,1289,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1978;s:6:\"height\";i:208;s:4:\"file\";s:32:\"2020/01/tc-ecg-model-formula.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"tc-ecg-model-formula-300x32.png\";s:5:\"width\";i:300;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"tc-ecg-model-formula-1024x108.png\";s:5:\"width\";i:1024;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"tc-ecg-model-formula-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:\"tc-ecg-model-formula-768x81.png\";s:5:\"width\";i:768;s:6:\"height\";i:81;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"tc-ecg-model-formula-1536x162.png\";s:5:\"width\";i:1536;s:6:\"height\";i:162;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:32:\"tc-ecg-model-formula-500x208.png\";s:5:\"width\";i:500;s:6:\"height\";i:208;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:{}}}'),(8065,1291,'_wp_attached_file','2020/01/tc-ecg-model.png'),(8066,1291,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:812;s:6:\"height\";i:514;s:4:\"file\";s:24:\"2020/01/tc-ecg-model.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"tc-ecg-model-300x190.png\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"tc-ecg-model-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:24:\"tc-ecg-model-768x486.png\";s:5:\"width\";i:768;s:6:\"height\";i:486;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:24:\"tc-ecg-model-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(8067,1298,'_wp_attached_file','2020/01/tc-ecg-wave.png'),(8068,1298,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2010;s:6:\"height\";i:276;s:4:\"file\";s:23:\"2020/01/tc-ecg-wave.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"tc-ecg-wave-300x41.png\";s:5:\"width\";i:300;s:6:\"height\";i:41;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"tc-ecg-wave-1024x141.png\";s:5:\"width\";i:1024;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"tc-ecg-wave-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:23:\"tc-ecg-wave-768x105.png\";s:5:\"width\";i:768;s:6:\"height\";i:105;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"tc-ecg-wave-1536x211.png\";s:5:\"width\";i:1536;s:6:\"height\";i:211;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:23:\"tc-ecg-wave-500x276.png\";s:5:\"width\";i:500;s:6:\"height\";i:276;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:{}}}'),(8073,1213,'_yoast_wpseo_focuskw','Jupyter SymPy ECG model'),(8074,1213,'_yoast_wpseo_metadesc','Using Jupyter Notebook and SymPy to generate a simplified ECG model. Looking at symbolic mathematics and SymPy performance, generating an ideal ECG model.'),(8075,1213,'_yoast_wpseo_linkdex','67'),(8085,1213,'_wp_old_slug','using-sympy-to-build-ecg-model-model'),(8095,838,'_google_plus_shares','0'),(8102,1213,'_google_plus_shares','0'),(8321,1324,'_edit_lock','1630428444:4'),(8322,1324,'_edit_last','4'),(8323,1324,'_yoast_wpseo_primary_category','94'),(8324,1324,'_yoast_wpseo_content_score','30'),(8361,1337,'_wp_attached_file','2020/01/bimodal-helm-charts.png'),(8362,1337,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:31:\"2020/01/bimodal-helm-charts.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"bimodal-helm-charts-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"bimodal-helm-charts-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:31:\"bimodal-helm-charts-500x400.png\";s:5:\"width\";i:500;s:6:\"height\";i:400;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:{}}}'),(8363,1324,'_thumbnail_id','1337'),(8364,1324,'uagb_style_timestamp-css','1578525187'),(8365,1324,'uagb_style_timestamp-js','1578523569'),(8372,1358,'_wp_attached_file','2020/01/icon_cncf_twitter.png'),(8373,1358,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:29:\"2020/01/icon_cncf_twitter.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"icon_cncf_twitter-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:29:\"icon_cncf_twitter-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:{}}}'),(8374,1378,'_wp_attached_file','2020/01/3lkk3v.jpg'),(8375,1378,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:575;s:4:\"file\";s:18:\"2020/01/3lkk3v.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"3lkk3v-261x300.jpg\";s:5:\"width\";i:261;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"3lkk3v-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:18:\"3lkk3v-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"ab-block-post-grid-landscape\";a:4:{s:4:\"file\";s:18:\"3lkk3v-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;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:{}}}'),(8376,1324,'_yoast_wpseo_focuskw','Bimodal Helm Kubernetes'),(8377,1324,'_yoast_wpseo_metadesc','We are examining the use of Bimodal Gartner concepts that apply to digital transformation to Kubernetes Helm Charts.'),(8378,1324,'_yoast_wpseo_linkdex','58'),(8927,1405,'_edit_lock','1630428390:4'),(8928,1405,'_edit_last','4'),(8929,1405,'_yoast_wpseo_primary_category','94'),(8932,1405,'_yoast_wpseo_content_score','90'),(8937,1411,'_wp_attached_file','2020/01/cloud-cost-kube.png'),(8938,1411,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1536;s:4:\"file\";s:27:\"2020/01/cloud-cost-kube.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"cloud-cost-kube-300x180.png\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"cloud-cost-kube-1024x614.png\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"cloud-cost-kube-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:27:\"cloud-cost-kube-768x461.png\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"cloud-cost-kube-1536x922.png\";s:5:\"width\";i:1536;s:6:\"height\";i:922;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:29:\"cloud-cost-kube-2048x1229.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1229;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:27:\"cloud-cost-kube-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}s:28:\"ab-block-post-grid-landscape\";a:4:{s:4:\"file\";s:27:\"cloud-cost-kube-600x400.png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:25:\"ab-block-post-grid-square\";a:4:{s:4:\"file\";s:27:\"cloud-cost-kube-600x600.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:{}}}'),(8939,1405,'_thumbnail_id','1411'),(8940,1415,'_wp_attached_file','2020/01/Deloitte-Logo.png'),(8941,1415,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:27;s:4:\"file\";s:25:\"2020/01/Deloitte-Logo.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(8942,1416,'_wp_attached_file','2020/01/deloitte-squarelogo.png'),(8943,1416,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:100;s:4:\"file\";s:31:\"2020/01/deloitte-squarelogo.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(9286,1423,'_wp_attached_file','2020/01/cloudblob.jpeg'),(9287,1423,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:505;s:4:\"file\";s:22:\"2020/01/cloudblob.jpeg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"cloudblob-300x152.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cloudblob-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:\"cloudblob-768x388.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:388;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"cloudblob-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"ab-block-post-grid-landscape\";a:4:{s:4:\"file\";s:22:\"cloudblob-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"ab-block-post-grid-square\";a:4:{s:4:\"file\";s:22:\"cloudblob-600x505.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:505;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:{}}}'),(9316,1472,'_wp_attached_file','2020/01/kubenodespools.jpeg'),(9317,1472,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1538;s:6:\"height\";i:753;s:4:\"file\";s:27:\"2020/01/kubenodespools.jpeg\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"kubenodespools-300x147.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"kubenodespools-1024x501.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"kubenodespools-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:27:\"kubenodespools-768x376.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:376;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"kubenodespools-1536x752.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:752;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:27:\"kubenodespools-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"ab-block-post-grid-landscape\";a:4:{s:4:\"file\";s:27:\"kubenodespools-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"ab-block-post-grid-square\";a:4:{s:4:\"file\";s:27:\"kubenodespools-600x600.jpeg\";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:{}}}'),(9519,1513,'_wp_attached_file','2020/01/audio_bimodal_blog_v2.mp3'),(9520,1513,'_wp_attachment_metadata','a:16:{s:10:\"dataformat\";s:3:\"mp3\";s:8:\"channels\";i:1;s:11:\"sample_rate\";i:24000;s:7:\"bitrate\";i:32000;s:11:\"channelmode\";s:4:\"mono\";s:12:\"bitrate_mode\";s:3:\"cbr\";s:8:\"lossless\";b:0;s:15:\"encoder_options\";s:5:\"CBR32\";s:17:\"compression_ratio\";d:0.08333333333333333;s:10:\"fileformat\";s:3:\"mp3\";s:8:\"filesize\";i:940224;s:9:\"mime_type\";s:10:\"audio/mpeg\";s:6:\"length\";i:235;s:16:\"length_formatted\";s:4:\"3:55\";s:6:\"artist\";s:0:\"\";s:5:\"album\";s:0:\"\";}'),(9551,1517,'_wp_attached_file','2020/01/kubenodes-v2.jpeg'),(9552,1517,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1120;s:6:\"height\";i:621;s:4:\"file\";s:25:\"2020/01/kubenodes-v2.jpeg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"kubenodes-v2-300x166.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"kubenodes-v2-1024x568.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:568;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"kubenodes-v2-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:25:\"kubenodes-v2-768x426.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:426;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:25:\"kubenodes-v2-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"ab-block-post-grid-landscape\";a:4:{s:4:\"file\";s:25:\"kubenodes-v2-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"ab-block-post-grid-square\";a:4:{s:4:\"file\";s:25:\"kubenodes-v2-600x600.jpeg\";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:{}}}'),(9553,1519,'_wp_attached_file','2020/01/node_resources_unused_v2.jpeg'),(9554,1519,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:939;s:6:\"height\";i:775;s:4:\"file\";s:37:\"2020/01/node_resources_unused_v2.jpeg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"node_resources_unused_v2-300x248.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:248;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"node_resources_unused_v2-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:37:\"node_resources_unused_v2-768x634.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:634;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:37:\"node_resources_unused_v2-500x500.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"ab-block-post-grid-landscape\";a:4:{s:4:\"file\";s:37:\"node_resources_unused_v2-600x400.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"ab-block-post-grid-square\";a:4:{s:4:\"file\";s:37:\"node_resources_unused_v2-600x600.jpeg\";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:{}}}'),(9555,1405,'_yoast_wpseo_focuskw','Kubernetes Cluster Cloud Cost'),(9556,1405,'_yoast_wpseo_metadesc','Answering the question \'What is Kubernetes\', and examining strategies for managing the Kubernetes cluster cloud cost. All without stressing out your poor DevOps engineer.'),(9557,1405,'_yoast_wpseo_linkdex','61'),(9623,1526,'_edit_lock','1629919942:9'),(9624,1526,'_edit_last','3'),(9625,1526,'_yoast_wpseo_primary_category','1'),(9626,1526,'_yoast_wpseo_content_score','90'),(9627,1526,'uagb_style_timestamp-css','1579305927'),(9628,1526,'uagb_style_timestamp-js','1579304297'),(9760,1539,'_wp_attached_file','2020/01/audio-kube-cost-part1_v4.mp3'),(9761,1539,'_wp_attachment_metadata','a:18:{s:10:\"dataformat\";s:3:\"mp3\";s:8:\"channels\";i:2;s:11:\"sample_rate\";i:24000;s:7:\"bitrate\";d:32342.235602602697;s:11:\"channelmode\";s:6:\"stereo\";s:12:\"bitrate_mode\";s:3:\"vbr\";s:8:\"lossless\";b:0;s:15:\"encoder_options\";s:3:\"VBR\";s:17:\"compression_ratio\";d:0.04211228594088893;s:10:\"fileformat\";s:3:\"mp3\";s:8:\"filesize\";i:1998296;s:9:\"mime_type\";s:10:\"audio/mpeg\";s:6:\"length\";i:494;s:16:\"length_formatted\";s:4:\"8:14\";s:5:\"title\";s:52:\"Strategies For Managing Kubernetes Cloud Cost Part 1\";s:16:\"encoder_settings\";s:13:\"Lavf58.33.100\";s:6:\"artist\";s:0:\"\";s:5:\"album\";s:0:\"\";}'),(9942,1546,'_facebook_shares','0'),(9943,1546,'_pinterest_shares','0'),(9944,1546,'_twitter_shares','0'),(9945,1546,'_linkedin_shares','0'),(9946,1546,'_total_shares','0'),(9948,1546,'wpd_form_custom_css',NULL),(9949,1546,'wpdiscuz_form_general_options','a:10:{s:4:\"lang\";s:5:\"en_US\";s:20:\"roles_cannot_comment\";a:0:{}s:17:\"guest_can_comment\";i:1;s:21:\"show_subscription_bar\";i:1;s:11:\"header_text\";s:13:\"Leave a Reply\";s:24:\"wpdiscuz_form_post_types\";a:3:{s:4:\"post\";s:4:\"post\";s:10:\"attachment\";s:10:\"attachment\";s:4:\"page\";s:4:\"page\";}s:6:\"postid\";s:0:\"\";s:12:\"postidsArray\";a:0:{}s:6:\"layout\";i:1;s:18:\"enable_post_rating\";i:1;}'),(9950,1546,'wpdiscuz_form_structure','a:1:{s:19:\"wpd_form_row_wrap_0\";a:5:{s:11:\"column_type\";s:3:\"two\";s:9:\"row_order\";s:1:\"0\";s:7:\"default\";s:1:\"1\";s:4:\"left\";a:3:{s:7:\"wc_name\";a:5:{s:4:\"type\";s:35:\"wpdFormAttr\\Field\\DefaultField\\Name\";s:4:\"name\";s:4:\"Name\";s:4:\"desc\";s:0:\"\";s:4:\"icon\";s:11:\"fas fa-user\";s:8:\"required\";s:1:\"1\";}s:8:\"wc_email\";a:5:{s:4:\"type\";s:36:\"wpdFormAttr\\Field\\DefaultField\\Email\";s:4:\"name\";s:5:\"Email\";s:4:\"desc\";s:0:\"\";s:4:\"icon\";s:9:\"fas fa-at\";s:8:\"required\";s:1:\"1\";}s:10:\"wc_website\";a:5:{s:4:\"type\";s:38:\"wpdFormAttr\\Field\\DefaultField\\Website\";s:4:\"name\";s:7:\"Website\";s:4:\"desc\";s:0:\"\";s:4:\"icon\";s:11:\"fas fa-link\";s:6:\"enable\";s:1:\"1\";}}s:5:\"right\";a:2:{s:10:\"wc_captcha\";a:5:{s:4:\"type\";s:38:\"wpdFormAttr\\Field\\DefaultField\\Captcha\";s:4:\"name\";s:4:\"Code\";s:4:\"desc\";s:0:\"\";s:15:\"show_for_guests\";s:1:\"0\";s:14:\"show_for_users\";s:1:\"0\";}s:6:\"submit\";a:2:{s:4:\"type\";s:37:\"wpdFormAttr\\Field\\DefaultField\\Submit\";s:4:\"name\";s:12:\"Post Comment\";}}}}'),(9951,1546,'wpdiscuz_form_fields','a:5:{s:7:\"wc_name\";a:5:{s:4:\"type\";s:35:\"wpdFormAttr\\Field\\DefaultField\\Name\";s:4:\"name\";s:4:\"Name\";s:4:\"desc\";s:0:\"\";s:4:\"icon\";s:11:\"fas fa-user\";s:8:\"required\";s:1:\"1\";}s:8:\"wc_email\";a:5:{s:4:\"type\";s:36:\"wpdFormAttr\\Field\\DefaultField\\Email\";s:4:\"name\";s:5:\"Email\";s:4:\"desc\";s:0:\"\";s:4:\"icon\";s:9:\"fas fa-at\";s:8:\"required\";s:1:\"1\";}s:10:\"wc_website\";a:5:{s:4:\"type\";s:38:\"wpdFormAttr\\Field\\DefaultField\\Website\";s:4:\"name\";s:7:\"Website\";s:4:\"desc\";s:0:\"\";s:4:\"icon\";s:11:\"fas fa-link\";s:6:\"enable\";s:1:\"1\";}s:10:\"wc_captcha\";a:5:{s:4:\"type\";s:38:\"wpdFormAttr\\Field\\DefaultField\\Captcha\";s:4:\"name\";s:4:\"Code\";s:4:\"desc\";s:0:\"\";s:15:\"show_for_guests\";s:1:\"0\";s:14:\"show_for_users\";s:1:\"0\";}s:6:\"submit\";a:2:{s:4:\"type\";s:37:\"wpdFormAttr\\Field\\DefaultField\\Submit\";s:4:\"name\";s:12:\"Post Comment\";}}'),(10006,1519,'_wp_attachment_image_alt','Example of underutilized nodes'),(10007,1517,'_wp_attachment_image_alt','Example of Kubernetes Cluster'),(10008,1472,'_wp_attachment_image_alt','Example of node pools'),(10009,1423,'_wp_attachment_image_alt','cloud computing ram memory hard drive processor'),(10011,1416,'_wp_attachment_image_alt','Deloitte Logo Square'),(10012,1415,'_wp_attachment_image_alt','Deloitte Logo'),(10013,1411,'_wp_attachment_image_alt','Cloud bill getting out of hand'),(10014,1378,'_wp_attachment_image_alt','Yoda, DevOps or SRE, There is no Try!'),(10015,1358,'_wp_attachment_image_alt','CNCF Logo'),(10016,1337,'_wp_attachment_image_alt','Bimodal Helm Charts'),(10017,1337,'_wp_old_slug','bimodal-helm-charts'),(10018,1298,'_wp_attachment_image_alt','Generate Synthetic ECG signal'),(10019,1291,'_wp_attachment_image_alt','Ideal ECG Waveform Model'),(10020,1289,'_wp_attachment_image_alt','TC ECG waveform formula'),(10021,1285,'_wp_attachment_image_alt','ECG P waveform'),(10022,1284,'_wp_attachment_image_alt','ECG P equation'),(10023,1246,'_wp_attachment_image_alt','Apple Watch ECG Results'),(10024,1244,'_wp_attachment_image_alt','ECG wave with segments'),(10025,1243,'_wp_attachment_image_alt','Real ECG results'),(10026,1219,'_wp_attachment_image_alt','Python Success For Life'),(10027,1218,'_wp_attachment_image_alt','Python Quote'),(10028,1195,'_wp_attachment_image_alt','Python Fast Plot'),(10029,1184,'_wp_attachment_image_alt','Python Extreme Performance'),(10030,1177,'_wp_attachment_image_alt','Spectrogram of noise'),(10031,1118,'_wp_attachment_image_alt','Python Fun Time'),(10032,1104,'_wp_attachment_image_alt','Python Low Performance'),(10033,1048,'_wp_attachment_image_alt','RLC Filter Circuit'),(10034,1030,'_wp_attachment_image_alt','Voice Graph'),(10035,1014,'_wp_attachment_image_alt','RLC And Speaker'),(10036,1011,'_wp_attachment_image_alt','Homer Snake Whacking Time'),(10037,1008,'_wp_attachment_image_alt','Sound Player and filter and speaker'),(10038,1003,'_wp_attachment_image_alt','Graph of Happy Holidays'),(10047,1405,'_yoast_wpseo_focuskeywords','[{\"keyword\":\"Kubernetes Cluster Cost\",\"score\":\"ok\"}]'),(10048,1405,'_yoast_wpseo_keywordsynonyms','[\"Reducer Kubernetes Cluster Cloud Cost\",\"Reducing Cloud Cost\"]'),(10117,829,'_yoast_wpseo_focuskeywords','[]'),(10118,829,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(10125,10,'_yoast_wpseo_focuskeywords','[]'),(10126,10,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(10168,1324,'_yoast_wpseo_focuskeywords','[{\"keyword\":\"Bimodal\",\"score\":\"good\"}]'),(10169,1324,'_yoast_wpseo_keywordsynonyms','[\"Helm Charts\",\"Helm Charts\"]'),(10191,1213,'_yoast_wpseo_focuskeywords','[{\"keyword\":\"ECG waveform\",\"score\":\"ok\"}]'),(10192,1213,'_yoast_wpseo_keywordsynonyms','[\"Python SciPy Jupter\",\"Generating model of ECG waveform\"]'),(10292,922,'_facebook_shares','0'),(10294,922,'_twitter_shares','0'),(10295,922,'_linkedin_shares','0'),(10298,922,'_yoast_wpseo_focuskw','Blog'),(10299,922,'_yoast_wpseo_metadesc','Read our take on industry best practices, cloud native news, and DevOps strategies to learn more about our approach to Digital Transformation.'),(10300,922,'_yoast_wpseo_linkdex','31'),(10301,922,'_yoast_wpseo_focuskeywords','[]'),(10302,922,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(10309,1554,'_wp_attached_file','2020/01/Text-to-speech.html'),(10310,1555,'_edit_lock','1661515313:21'),(10312,1555,'_edit_last','4'),(10313,1555,'_yoast_wpseo_primary_category','90'),(10314,1555,'_yoast_wpseo_content_score','90'),(10315,1555,'_yoast_wpseo_focuskeywords','[]'),(10316,1555,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(10317,1560,'_wp_attached_file','2020/01/LyoJL5YisS.gif'),(10318,1560,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:628;s:6:\"height\";i:240;s:4:\"file\";s:22:\"2020/01/LyoJL5YisS.gif\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"LyoJL5YisS-300x115.gif\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/gif\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"LyoJL5YisS-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"LyoJL5YisS-500x240.gif\";s:5:\"width\";i:500;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/gif\";}s:28:\"ab-block-post-grid-landscape\";a:4:{s:4:\"file\";s:22:\"LyoJL5YisS-600x240.gif\";s:5:\"width\";i:600;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/gif\";}s:25:\"ab-block-post-grid-square\";a:4:{s:4:\"file\";s:22:\"LyoJL5YisS-600x240.gif\";s:5:\"width\";i:600;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/gif\";}}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:{}}}'),(10319,1555,'_thumbnail_id','1560'),(10335,1555,'_yoast_wpseo_focuskw','text-to-speech'),(10336,1555,'_yoast_wpseo_metadesc','Example of Text-to-Speech, generating audio for our blogs.'),(10337,1555,'_yoast_wpseo_linkdex','47'),(10392,1519,'tiny_compress_images','a:7:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:31152;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:30884;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:939;s:6:\"height\";i:775;s:5:\"ratio\";d:0.9914;}s:3:\"end\";i:1579217001;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10275;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:9384;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:248;s:5:\"ratio\";d:0.9133;}s:3:\"end\";i:1579217004;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4482;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:4264;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.9514;}s:3:\"end\";i:1579217002;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:36065;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:23886;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:634;s:5:\"ratio\";d:0.6623;}s:3:\"end\";i:1579217006;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:21143;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:13899;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.6574;}s:3:\"end\";i:1579217008;}s:28:\"ab-block-post-grid-landscape\";a:0:{}s:25:\"ab-block-post-grid-square\";a:0:{}}'),(10393,1517,'tiny_compress_images','a:8:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:34438;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:30194;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1120;s:6:\"height\";i:621;s:5:\"ratio\";d:0.8768;}s:3:\"end\";i:1579217001;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:8882;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6889;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:5:\"ratio\";d:0.7756;}s:3:\"end\";i:1579217004;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:48167;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:27336;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:568;s:5:\"ratio\";d:0.5675;}s:3:\"end\";i:1579217009;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4476;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3469;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.775;}s:3:\"end\";i:1579217002;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:32743;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:19278;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:426;s:5:\"ratio\";d:0.5888;}s:3:\"end\";i:1579217006;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:23735;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:13062;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.5503;}s:3:\"end\";i:1579217011;}s:28:\"ab-block-post-grid-landscape\";a:0:{}s:25:\"ab-block-post-grid-square\";a:0:{}}'),(10394,1416,'tiny_compress_images','a:1:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4123;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:1310;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:5:\"ratio\";d:0.3177;}s:3:\"end\";i:1579216999;}}'),(10395,1472,'tiny_compress_images','a:9:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:61847;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:48826;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1538;s:6:\"height\";i:753;s:5:\"ratio\";d:0.7895;}s:3:\"end\";i:1579217001;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:9082;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:7509;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:5:\"ratio\";d:0.8268;}s:3:\"end\";i:1579217004;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:52161;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:29228;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:501;s:5:\"ratio\";d:0.5603;}s:3:\"end\";i:1579217010;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4963;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:4025;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.811;}s:3:\"end\";i:1579217003;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:34902;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:26269;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:376;s:5:\"ratio\";d:0.7527;}s:3:\"end\";i:1579217007;}s:9:\"1536x1536\";a:0:{}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:25060;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:13841;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.5523;}s:3:\"end\";i:1579217012;}s:28:\"ab-block-post-grid-landscape\";a:0:{}s:25:\"ab-block-post-grid-square\";a:0:{}}'),(10396,1423,'tiny_compress_images','a:7:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:231407;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:42436;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1000;s:6:\"height\";i:505;s:5:\"ratio\";d:0.1834;}s:3:\"end\";i:1579217001;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:12430;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:11513;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:152;s:5:\"ratio\";d:0.9262;}s:3:\"end\";i:1579217005;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:7961;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:7520;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.9446;}s:3:\"end\";i:1579217003;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:43051;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:28065;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:388;s:5:\"ratio\";d:0.6519;}s:3:\"end\";i:1579217007;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:36502;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:24982;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.6844;}s:3:\"end\";i:1579217009;}s:28:\"ab-block-post-grid-landscape\";a:0:{}s:25:\"ab-block-post-grid-square\";a:0:{}}'),(10397,1415,'tiny_compress_images','a:1:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:3886;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:1336;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:100;s:6:\"height\";i:27;s:5:\"ratio\";d:0.3438;}s:3:\"end\";i:1579217001;}}'),(10398,1411,'tiny_compress_images','a:10:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:323285;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:89195;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:3000;s:6:\"height\";i:1800;s:5:\"ratio\";d:0.2759;}s:3:\"end\";i:1579217006;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:18764;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:6729;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:5:\"ratio\";d:0.3586;}s:3:\"end\";i:1579217009;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:213441;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:48704;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:5:\"ratio\";d:0.2282;}s:3:\"end\";i:1579217014;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10704;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4309;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.4026;}s:3:\"end\";i:1579217007;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:98981;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:26287;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:5:\"ratio\";d:0.2656;}s:3:\"end\";i:1579217011;}s:9:\"1536x1536\";a:0:{}s:9:\"2048x2048\";a:0:{}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:77226;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:20026;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.2593;}s:3:\"end\";i:1579217016;}s:28:\"ab-block-post-grid-landscape\";a:0:{}s:25:\"ab-block-post-grid-square\";a:0:{}}'),(10399,1378,'tiny_compress_images','a:5:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:78616;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:45500;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:575;s:5:\"ratio\";d:0.5788;}s:3:\"end\";i:1579217011;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:23130;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:23027;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:261;s:6:\"height\";i:300;s:5:\"ratio\";d:0.9955;}s:3:\"end\";i:1579217015;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:8549;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:8264;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.9667;}s:3:\"end\";i:1579217013;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:53412;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:37845;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.7085;}s:3:\"end\";i:1579217017;}s:28:\"ab-block-post-grid-landscape\";a:0:{}}'),(10400,1358,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:26735;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:21330;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:5:\"ratio\";d:0.7978;}s:3:\"end\";i:1579217011;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:43026;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:19173;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:5:\"ratio\";d:0.4456;}s:3:\"end\";i:1579217015;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:13884;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:6790;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.4891;}s:3:\"end\";i:1579217013;}}'),(10401,1337,'tiny_compress_images','a:4:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:55724;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:17824;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:5:\"ratio\";d:0.3199;}s:3:\"end\";i:1579217013;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:19420;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:6542;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:5:\"ratio\";d:0.3369;}s:3:\"end\";i:1579217016;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:11126;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4266;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.3834;}s:3:\"end\";i:1579217015;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:48736;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:16272;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:5:\"ratio\";d:0.3339;}s:3:\"end\";i:1579217018;}}'),(10402,1298,'tiny_compress_images','a:7:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:129078;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:30997;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:2010;s:6:\"height\";i:276;s:5:\"ratio\";d:0.2401;}s:3:\"end\";i:1579217015;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6166;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2249;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:41;s:5:\"ratio\";d:0.3647;}s:3:\"end\";i:1579217017;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:70483;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:23433;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1024;s:6:\"height\";i:141;s:5:\"ratio\";d:0.3325;}s:3:\"end\";i:1579217021;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:12488;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4036;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.3232;}s:3:\"end\";i:1579217016;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:30993;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:11735;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:105;s:5:\"ratio\";d:0.3786;}s:3:\"end\";i:1579217019;}s:9:\"1536x1536\";a:0:{}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:20380;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:8152;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:276;s:5:\"ratio\";d:0.4;}s:3:\"end\";i:1579217023;}}'),(10403,1291,'tiny_compress_images','a:5:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:48909;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:10409;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:812;s:6:\"height\";i:514;s:5:\"ratio\";d:0.2128;}s:3:\"end\";i:1579217017;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:21485;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:8632;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:5:\"ratio\";d:0.4018;}s:3:\"end\";i:1579217020;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10559;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4183;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.3962;}s:3:\"end\";i:1579217018;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:125954;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:53868;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:486;s:5:\"ratio\";d:0.4277;}s:3:\"end\";i:1579217023;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:99143;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:39908;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.4025;}s:3:\"end\";i:1579217025;}}'),(10404,1289,'tiny_compress_images','a:7:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:54731;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:16165;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1978;s:6:\"height\";i:208;s:5:\"ratio\";d:0.2954;}s:3:\"end\";i:1579217018;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10571;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2630;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:32;s:5:\"ratio\";d:0.2488;}s:3:\"end\";i:1579217021;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:68090;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:20875;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1024;s:6:\"height\";i:108;s:5:\"ratio\";d:0.3066;}s:3:\"end\";i:1579217028;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:16943;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:5824;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.3437;}s:3:\"end\";i:1579217020;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:47878;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:15686;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:81;s:5:\"ratio\";d:0.3276;}s:3:\"end\";i:1579217026;}s:9:\"1536x1536\";a:0:{}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:26128;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:7970;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:208;s:5:\"ratio\";d:0.305;}s:3:\"end\";i:1579217029;}}'),(10405,1285,'tiny_compress_images','a:5:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:80521;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:20592;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:834;s:6:\"height\";i:526;s:5:\"ratio\";d:0.2557;}s:3:\"end\";i:1579217019;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:34843;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:11177;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:5:\"ratio\";d:0.3208;}s:3:\"end\";i:1579217023;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:14549;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4950;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.3402;}s:3:\"end\";i:1579217021;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:128367;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:41730;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:484;s:5:\"ratio\";d:0.3251;}s:3:\"end\";i:1579217025;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:153403;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:51097;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.3331;}s:3:\"end\";i:1579217028;}}'),(10406,1284,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:11277;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2658;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:372;s:6:\"height\";i:112;s:5:\"ratio\";d:0.2357;}s:3:\"end\";i:1579217020;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:14171;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:5027;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:5:\"ratio\";d:0.3547;}s:3:\"end\";i:1579217023;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5066;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:1799;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:112;s:5:\"ratio\";d:0.3551;}s:3:\"end\";i:1579217021;}}'),(10407,1246,'tiny_compress_images','a:8:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:690169;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:119953;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:2778;s:6:\"height\";i:1712;s:5:\"ratio\";d:0.1738;}s:3:\"end\";i:1579217028;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:19431;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:7105;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:5:\"ratio\";d:0.3657;}s:3:\"end\";i:1579217031;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:271498;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:101507;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1024;s:6:\"height\";i:631;s:5:\"ratio\";d:0.3739;}s:3:\"end\";i:1579217036;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10333;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4106;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.3974;}s:3:\"end\";i:1579217029;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:160046;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:49024;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:5:\"ratio\";d:0.3063;}s:3:\"end\";i:1579217033;}s:9:\"1536x1536\";a:0:{}s:9:\"2048x2048\";a:0:{}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:123395;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:43660;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.3538;}s:3:\"end\";i:1579217039;}}'),(10408,1244,'tiny_compress_images','a:3:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:39844;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:13645;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:495;s:5:\"ratio\";d:0.3425;}s:3:\"end\";i:1579217026;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10458;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:7854;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:5:\"ratio\";d:0.751;}s:3:\"end\";i:1579217029;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:4707;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:3992;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8481;}s:3:\"end\";i:1579217027;}}'),(10409,1243,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:75020;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:67106;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1040;s:6:\"height\";i:407;s:5:\"ratio\";d:0.8945;}s:3:\"end\";i:1579217028;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10151;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:9231;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:5:\"ratio\";d:0.9094;}s:3:\"end\";i:1579217031;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:90744;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:75042;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:401;s:5:\"ratio\";d:0.827;}s:3:\"end\";i:1579217037;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:7111;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6561;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.9227;}s:3:\"end\";i:1579217029;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:56536;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:52323;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:301;s:5:\"ratio\";d:0.9255;}s:3:\"end\";i:1579217034;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:52108;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:39017;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:407;s:5:\"ratio\";d:0.7488;}s:3:\"end\";i:1579217039;}}'),(10410,1215,'tiny_compress_images','a:5:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:106377;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:91128;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:5:\"ratio\";d:0.8567;}s:3:\"end\";i:1579217031;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:16782;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:16782;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:5:\"ratio\";d:1;}s:3:\"end\";i:1579217034;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:6969;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6969;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:1;}s:3:\"end\";i:1579217032;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:82790;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:70877;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:5:\"ratio\";d:0.8561;}s:3:\"end\";i:1579217037;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:51678;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:42137;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.8154;}s:3:\"end\";i:1579217039;}}'),(10411,1184,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:157211;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:34204;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:5:\"ratio\";d:0.2176;}s:3:\"end\";i:1579217032;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:21966;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:7086;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:5:\"ratio\";d:0.3226;}s:3:\"end\";i:1579217035;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:218735;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:42442;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:5:\"ratio\";d:0.194;}s:3:\"end\";i:1579217040;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:12283;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4572;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.3722;}s:3:\"end\";i:1579217034;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:83483;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:22260;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:5:\"ratio\";d:0.2666;}s:3:\"end\";i:1579217037;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:71704;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:17603;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.2455;}s:3:\"end\";i:1579217043;}}'),(10412,1177,'tiny_compress_images','a:5:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:269522;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:104494;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:776;s:6:\"height\";i:510;s:5:\"ratio\";d:0.3877;}s:3:\"end\";i:1579217032;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:67014;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:23724;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:5:\"ratio\";d:0.354;}s:3:\"end\";i:1579217036;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:22560;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:7667;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.3398;}s:3:\"end\";i:1579217034;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:316967;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:126556;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:505;s:5:\"ratio\";d:0.3993;}s:3:\"end\";i:1579217038;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:204464;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:77504;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.3791;}s:3:\"end\";i:1579217040;}}'),(10413,1104,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:144430;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:33358;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:5:\"ratio\";d:0.231;}s:3:\"end\";i:1579217042;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:9491;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:3662;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.3858;}s:3:\"end\";i:1579217043;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:21787;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:7135;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:5:\"ratio\";d:0.3275;}s:3:\"end\";i:1579217045;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:79608;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:22478;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:5:\"ratio\";d:0.2824;}s:3:\"end\";i:1579217047;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:217617;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:46752;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:5:\"ratio\";d:0.2148;}s:3:\"end\";i:1579217050;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:53027;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:14571;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.2748;}s:3:\"end\";i:1579217052;}}'),(10414,1030,'tiny_compress_images','a:5:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:192832;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:53862;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:904;s:6:\"height\";i:592;s:5:\"ratio\";d:0.2793;}s:3:\"end\";i:1579217054;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:19236;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:8576;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.4458;}s:3:\"end\";i:1579217056;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:41308;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:18884;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:196;s:5:\"ratio\";d:0.4572;}s:3:\"end\";i:1579217058;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:186350;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:89494;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:503;s:5:\"ratio\";d:0.4802;}s:3:\"end\";i:1579217061;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:142768;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:66583;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.4664;}s:3:\"end\";i:1579217063;}}'),(10415,1014,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:185577;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:36927;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:2310;s:6:\"height\";i:1078;s:5:\"ratio\";d:0.199;}s:3:\"end\";i:1579217043;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:3757;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:1180;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.3141;}s:3:\"end\";i:1579217045;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10392;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:3747;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:5:\"ratio\";d:0.3606;}s:3:\"end\";i:1579217046;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:43150;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:15423;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:358;s:5:\"ratio\";d:0.3574;}s:3:\"end\";i:1579217048;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:68767;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:23958;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1024;s:6:\"height\";i:478;s:5:\"ratio\";d:0.3484;}s:3:\"end\";i:1579217050;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:18110;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:6405;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.3537;}s:3:\"end\";i:1579217052;}}'),(10416,1011,'tiny_compress_images','a:5:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:78391;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:71098;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:800;s:6:\"height\";i:400;s:5:\"ratio\";d:0.907;}s:3:\"end\";i:1579217044;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:7974;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:7974;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:1;}s:3:\"end\";i:1579217046;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:14220;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:14220;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:5:\"ratio\";d:1;}s:3:\"end\";i:1579217048;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:47003;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:30494;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:5:\"ratio\";d:0.6488;}s:3:\"end\";i:1579217050;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:34069;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:26638;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:5:\"ratio\";d:0.7819;}s:3:\"end\";i:1579217052;}}'),(10417,1008,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:147365;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:59949;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1441;s:6:\"height\";i:751;s:5:\"ratio\";d:0.4068;}s:3:\"end\";i:1579217046;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:3016;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:1502;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.498;}s:3:\"end\";i:1579217055;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:19562;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:6660;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:5:\"ratio\";d:0.3405;}s:3:\"end\";i:1579217057;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:96715;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:34050;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:400;s:5:\"ratio\";d:0.3521;}s:3:\"end\";i:1579217059;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:156730;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:49618;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1024;s:6:\"height\";i:534;s:5:\"ratio\";d:0.3166;}s:3:\"end\";i:1579217061;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:19082;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:7097;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.3719;}s:3:\"end\";i:1579217063;}}'),(10418,1003,'tiny_compress_images','a:4:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:87587;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:30063;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:363;s:5:\"ratio\";d:0.3432;}s:3:\"end\";i:1579217054;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:21386;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:9261;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.433;}s:3:\"end\";i:1579217055;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:39608;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:15930;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:5:\"ratio\";d:0.4022;}s:3:\"end\";i:1579217057;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:78488;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:29903;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:363;s:5:\"ratio\";d:0.381;}s:3:\"end\";i:1579217059;}}'),(10419,997,'tiny_compress_images','a:5:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:346632;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:119916;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1000;s:6:\"height\";i:768;s:5:\"ratio\";d:0.3459;}s:3:\"end\";i:1579217056;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:14975;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:5108;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.3411;}s:3:\"end\";i:1579217057;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:42365;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:16116;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:5:\"ratio\";d:0.3804;}s:3:\"end\";i:1579217059;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:294617;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:104033;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:590;s:5:\"ratio\";d:0.3531;}s:3:\"end\";i:1579217063;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:158156;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:60949;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.3854;}s:3:\"end\";i:1579217065;}}'),(10420,977,'tiny_compress_images','a:1:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:1456;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:886;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:64;s:6:\"height\";i:64;s:5:\"ratio\";d:0.6085;}s:3:\"end\";i:1579217054;}}'),(10421,976,'tiny_compress_images','a:1:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:1456;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:942;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:64;s:6:\"height\";i:64;s:5:\"ratio\";d:0.647;}s:3:\"end\";i:1579217056;}}'),(10422,975,'tiny_compress_images','a:1:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:2400;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:1385;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:64;s:6:\"height\";i:64;s:5:\"ratio\";d:0.5771;}s:3:\"end\";i:1579217058;}}'),(10423,974,'tiny_compress_images','a:1:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:1558;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:1024;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:64;s:6:\"height\";i:64;s:5:\"ratio\";d:0.6573;}s:3:\"end\";i:1579217060;}}'),(10424,973,'tiny_compress_images','a:1:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:1701;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:1160;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:64;s:6:\"height\";i:64;s:5:\"ratio\";d:0.682;}s:3:\"end\";i:1579217061;}}'),(10425,972,'tiny_compress_images','a:1:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:3770;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2030;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:126;s:6:\"height\";i:126;s:5:\"ratio\";d:0.5385;}s:3:\"end\";i:1579217061;}}'),(10426,971,'tiny_compress_images','a:1:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:1441;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:856;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:64;s:6:\"height\";i:64;s:5:\"ratio\";d:0.594;}s:3:\"end\";i:1579217063;}}'),(10427,970,'tiny_compress_images','a:1:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:3065;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:1734;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:126;s:6:\"height\";i:126;s:5:\"ratio\";d:0.5657;}s:3:\"end\";i:1579217063;}}'),(10428,969,'tiny_compress_images','a:1:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:1022;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:698;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:64;s:6:\"height\";i:64;s:5:\"ratio\";d:0.683;}s:3:\"end\";i:1579217065;}}'),(10429,968,'tiny_compress_images','a:2:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10854;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5969;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:254;s:6:\"height\";i:34;s:5:\"ratio\";d:0.5499;}s:3:\"end\";i:1579217065;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:2856;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:2333;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:34;s:5:\"ratio\";d:0.8169;}s:3:\"end\";i:1579217067;}}'),(10430,949,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:41673;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:15347;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1169;s:6:\"height\";i:774;s:5:\"ratio\";d:0.3683;}s:3:\"end\";i:1579217066;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10788;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:3639;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.3373;}s:3:\"end\";i:1579217076;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:25744;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:10197;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:5:\"ratio\";d:0.3961;}s:3:\"end\";i:1579217078;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:154247;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:58957;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:508;s:5:\"ratio\";d:0.3822;}s:3:\"end\";i:1579217081;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:244585;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:93529;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:5:\"ratio\";d:0.3824;}s:3:\"end\";i:1579217086;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:108521;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:43289;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.3989;}s:3:\"end\";i:1579217089;}}'),(10431,868,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:18290;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:15901;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1084;s:6:\"height\";i:493;s:5:\"ratio\";d:0.8694;}s:3:\"end\";i:1579217104;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:11619;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:5044;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.4341;}s:3:\"end\";i:1579217105;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:19595;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:5371;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:136;s:5:\"ratio\";d:0.2741;}s:3:\"end\";i:1579217107;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:116534;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:34181;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:349;s:5:\"ratio\";d:0.2933;}s:3:\"end\";i:1579217110;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:160434;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:28247;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1024;s:6:\"height\";i:466;s:5:\"ratio\";d:0.1761;}s:3:\"end\";i:1579217112;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:20845;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:6690;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:493;s:5:\"ratio\";d:0.3209;}s:3:\"end\";i:1579217114;}}'),(10432,848,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:43213;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:17799;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:2954;s:6:\"height\";i:1182;s:5:\"ratio\";d:0.4119;}s:3:\"end\";i:1579217068;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5259;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:1819;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.3459;}s:3:\"end\";i:1579217069;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5785;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:2417;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:5:\"ratio\";d:0.4178;}s:3:\"end\";i:1579217071;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:22738;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:7754;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:5:\"ratio\";d:0.341;}s:3:\"end\";i:1579217072;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:32785;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:11492;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:5:\"ratio\";d:0.3505;}s:3:\"end\";i:1579217073;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:32957;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:8905;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.2702;}s:3:\"end\";i:1579217075;}}'),(10433,847,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:11152;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4698;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:333;s:6:\"height\";i:70;s:5:\"ratio\";d:0.4213;}s:3:\"end\";i:1579217067;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5627;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:1817;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:150;s:6:\"height\";i:70;s:5:\"ratio\";d:0.3229;}s:3:\"end\";i:1579217068;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:10925;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:4751;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:300;s:6:\"height\";i:63;s:5:\"ratio\";d:0.4349;}s:3:\"end\";i:1579217070;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:22738;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:7754;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:5:\"ratio\";d:0.341;}s:3:\"end\";i:1579217071;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:32785;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:11492;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:5:\"ratio\";d:0.3505;}s:3:\"end\";i:1579217073;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:32957;s:4:\"type\";s:9:\"image/png\";}s:6:\"output\";a:5:{s:4:\"size\";i:8905;s:4:\"type\";s:9:\"image/png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:5:\"ratio\";d:0.2702;}s:3:\"end\";i:1579217075;}}'),(10434,845,'tiny_compress_images','a:6:{i:0;a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:13481;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:12136;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:94;s:5:\"ratio\";d:0.9002;}s:3:\"end\";i:1579217069;}s:9:\"thumbnail\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:5598;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:5030;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:5:\"ratio\";d:0.8985;}s:3:\"end\";i:1579217070;}s:6:\"medium\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:7309;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:6657;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:56;s:5:\"ratio\";d:0.9108;}s:3:\"end\";i:1579217072;}s:12:\"medium_large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:21997;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:20415;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:144;s:5:\"ratio\";d:0.9281;}s:3:\"end\";i:1579217074;}s:5:\"large\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:30097;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:27734;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:193;s:5:\"ratio\";d:0.9215;}s:3:\"end\";i:1579217076;}s:7:\"feature\";a:3:{s:5:\"input\";a:2:{s:4:\"size\";i:20671;s:4:\"type\";s:10:\"image/jpeg\";}s:6:\"output\";a:5:{s:4:\"size\";i:18558;s:4:\"type\";s:10:\"image/jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:362;s:5:\"ratio\";d:0.8978;}s:3:\"end\";i:1579217079;}}'),(10435,1560,'wp-smush-animated','1'),(10436,1560,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.607384054722411;s:5:\"bytes\";i:420;s:11:\"size_before\";i:69149;s:10:\"size_after\";i:68729;s:4:\"time\";d:0.07;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.41;s:5:\"bytes\";i:102;s:11:\"size_before\";i:7238;s:10:\"size_after\";i:7136;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4426;s:10:\"size_after\";i:4426;s:4:\"time\";d:0.02;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16681;s:10:\"size_after\";i:16681;s:4:\"time\";d:0.01;}s:28:\"ab-block-post-grid-landscape\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.55;s:5:\"bytes\";i:318;s:11:\"size_before\";i:20561;s:10:\"size_after\";i:20243;s:4:\"time\";d:0.01;}s:25:\"ab-block-post-grid-square\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20243;s:10:\"size_after\";i:20243;s:4:\"time\";d:0.02;}}}'),(10437,1519,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:8.248361252731245;s:5:\"bytes\";i:8154;s:11:\"size_before\";i:98856;s:10:\"size_after\";i:90702;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9384;s:10:\"size_after\";i:9384;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4264;s:10:\"size_after\";i:4264;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23886;s:10:\"size_after\";i:23886;s:4:\"time\";d:0.05;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13899;s:10:\"size_after\";i:13899;s:4:\"time\";d:0.02;}s:28:\"ab-block-post-grid-landscape\";O:8:\"stdClass\":5:{s:7:\"percent\";d:15.94;s:5:\"bytes\";i:3189;s:11:\"size_before\";i:20012;s:10:\"size_after\";i:16823;s:4:\"time\";d:0.04;}s:25:\"ab-block-post-grid-square\";O:8:\"stdClass\":5:{s:7:\"percent\";d:18.11;s:5:\"bytes\";i:4965;s:11:\"size_before\";i:27411;s:10:\"size_after\";i:22446;s:4:\"time\";d:0.02;}}}'),(10438,1517,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:9.999364867654299;s:5:\"bytes\";i:12595;s:11:\"size_before\";i:125958;s:10:\"size_after\";i:113363;s:4:\"time\";d:0.14;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6889;s:10:\"size_after\";i:6889;s:4:\"time\";d:0.01;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:27336;s:10:\"size_after\";i:27336;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3469;s:10:\"size_after\";i:3469;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19278;s:10:\"size_after\";i:19278;s:4:\"time\";d:0.02;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13062;s:10:\"size_after\";i:13062;s:4:\"time\";d:0.02;}s:28:\"ab-block-post-grid-landscape\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.04;s:5:\"bytes\";i:6042;s:11:\"size_before\";i:26222;s:10:\"size_after\";i:20180;s:4:\"time\";d:0.03;}s:25:\"ab-block-post-grid-square\";O:8:\"stdClass\":5:{s:7:\"percent\";d:22.06;s:5:\"bytes\";i:6553;s:11:\"size_before\";i:29702;s:10:\"size_after\";i:23149;s:4:\"time\";d:0.02;}}}'),(10439,1472,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:14.5997017274589;s:5:\"bytes\";i:33578;s:11:\"size_before\";i:229991;s:10:\"size_after\";i:196413;s:4:\"time\";d:0.19;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:8:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7509;s:10:\"size_after\";i:7509;s:4:\"time\";d:0.01;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:29228;s:10:\"size_after\";i:29228;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4025;s:10:\"size_after\";i:4025;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26269;s:10:\"size_after\";i:26269;s:4:\"time\";d:0.02;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.51;s:5:\"bytes\";i:21146;s:11:\"size_before\";i:89937;s:10:\"size_after\";i:68791;s:4:\"time\";d:0.05;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13841;s:10:\"size_after\";i:13841;s:4:\"time\";d:0.04;}s:28:\"ab-block-post-grid-landscape\";O:8:\"stdClass\":5:{s:7:\"percent\";d:20.86;s:5:\"bytes\";i:5785;s:11:\"size_before\";i:27729;s:10:\"size_after\";i:21944;s:4:\"time\";d:0.01;}s:25:\"ab-block-post-grid-square\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.13;s:5:\"bytes\";i:6647;s:11:\"size_before\";i:31453;s:10:\"size_after\";i:24806;s:4:\"time\";d:0.02;}}}'),(10440,1423,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:5.51243986165766;s:5:\"bytes\";i:8559;s:11:\"size_before\";i:155267;s:10:\"size_after\";i:146708;s:4:\"time\";d:0.09;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11513;s:10:\"size_after\";i:11513;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7520;s:10:\"size_after\";i:7520;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:28065;s:10:\"size_after\";i:28065;s:4:\"time\";d:0.02;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:24982;s:10:\"size_after\";i:24982;s:4:\"time\";d:0.02;}s:28:\"ab-block-post-grid-landscape\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.25;s:5:\"bytes\";i:3783;s:11:\"size_before\";i:36907;s:10:\"size_after\";i:33124;s:4:\"time\";d:0.01;}s:25:\"ab-block-post-grid-square\";O:8:\"stdClass\":5:{s:7:\"percent\";d:10.32;s:5:\"bytes\";i:4776;s:11:\"size_before\";i:46280;s:10:\"size_after\";i:41504;s:4:\"time\";d:0.02;}}}'),(10441,1416,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.45801526717557256;s:5:\"bytes\";i:6;s:11:\"size_before\";i:1310;s:10:\"size_after\";i:1304;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.46;s:5:\"bytes\";i:6;s:11:\"size_before\";i:1310;s:10:\"size_after\";i:1304;s:4:\"time\";d:0.03;}}}'),(10442,1415,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.07485029940119761;s:5:\"bytes\";i:1;s:11:\"size_before\";i:1336;s:10:\"size_after\";i:1335;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.07;s:5:\"bytes\";i:1;s:11:\"size_before\";i:1336;s:10:\"size_after\";i:1335;s:4:\"time\";d:0.01;}}}'),(10443,1411,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:28.361734902934487;s:5:\"bytes\";i:348161;s:11:\"size_before\";i:1227573;s:10:\"size_after\";i:879412;s:4:\"time\";d:7.65;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:9:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6729;s:10:\"size_after\";i:6729;s:4:\"time\";d:0.03;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:48704;s:10:\"size_after\";i:48704;s:4:\"time\";d:0.38;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4309;s:10:\"size_after\";i:4309;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26287;s:10:\"size_after\";i:26287;s:4:\"time\";d:0.13;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:27.49;s:5:\"bytes\";i:84649;s:11:\"size_before\";i:307899;s:10:\"size_after\";i:223250;s:4:\"time\";d:1.55;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:34.13;s:5:\"bytes\";i:242511;s:11:\"size_before\";i:710485;s:10:\"size_after\";i:467974;s:4:\"time\";d:4.93;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20026;s:10:\"size_after\";i:20026;s:4:\"time\";d:0.12;}s:28:\"ab-block-post-grid-landscape\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.15;s:5:\"bytes\";i:9459;s:11:\"size_before\";i:49404;s:10:\"size_after\";i:39945;s:4:\"time\";d:0.19;}s:25:\"ab-block-post-grid-square\";O:8:\"stdClass\":5:{s:7:\"percent\";d:21.48;s:5:\"bytes\";i:11542;s:11:\"size_before\";i:53730;s:10:\"size_after\";i:42188;s:4:\"time\";d:0.3;}}}'),(10444,1378,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.0134350699134753;s:5:\"bytes\";i:2206;s:11:\"size_before\";i:109564;s:10:\"size_after\";i:107358;s:4:\"time\";d:0.07;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23027;s:10:\"size_after\";i:23027;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8264;s:10:\"size_after\";i:8264;s:4:\"time\";d:0.01;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37845;s:10:\"size_after\";i:37845;s:4:\"time\";d:0.02;}s:28:\"ab-block-post-grid-landscape\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.46;s:5:\"bytes\";i:2206;s:11:\"size_before\";i:40428;s:10:\"size_after\";i:38222;s:4:\"time\";d:0.02;}}}'),(10445,1358,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.18487848091514847;s:5:\"bytes\";i:48;s:11:\"size_before\";i:25963;s:10:\"size_after\";i:25915;s:4:\"time\";d:0.06;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.25;s:5:\"bytes\";i:48;s:11:\"size_before\";i:19173;s:10:\"size_after\";i:19125;s:4:\"time\";d:0.04;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6790;s:10:\"size_after\";i:6790;s:4:\"time\";d:0.02;}}}'),(10446,1337,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:27080;s:10:\"size_after\";i:27080;s:4:\"time\";d:0.16999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6542;s:10:\"size_after\";i:6542;s:4:\"time\";d:0.06;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4266;s:10:\"size_after\";i:4266;s:4:\"time\";d:0.02;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16272;s:10:\"size_after\";i:16272;s:4:\"time\";d:0.09;}}}'),(10447,1298,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:13.0667072718606;s:5:\"bytes\";i:19737;s:11:\"size_before\";i:151048;s:10:\"size_after\";i:131311;s:4:\"time\";d:1.2600000000000002;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.27;s:5:\"bytes\";i:6;s:11:\"size_before\";i:2249;s:10:\"size_after\";i:2243;s:4:\"time\";d:0.01;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23433;s:10:\"size_after\";i:23433;s:4:\"time\";d:0.54;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4036;s:10:\"size_after\";i:4036;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11735;s:10:\"size_after\";i:11735;s:4:\"time\";d:0.05;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.45;s:5:\"bytes\";i:19731;s:11:\"size_before\";i:101443;s:10:\"size_after\";i:81712;s:4:\"time\";d:0.53;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8152;s:10:\"size_after\";i:8152;s:4:\"time\";d:0.11;}}}'),(10448,1291,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.10882719929449954;s:5:\"bytes\";i:116;s:11:\"size_before\";i:106591;s:10:\"size_after\";i:106475;s:4:\"time\";d:1.4000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8632;s:10:\"size_after\";i:8632;s:4:\"time\";d:0.08;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4183;s:10:\"size_after\";i:4183;s:4:\"time\";d:0.11;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.04;s:5:\"bytes\";i:21;s:11:\"size_before\";i:53868;s:10:\"size_after\";i:53847;s:4:\"time\";d:0.92;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.24;s:5:\"bytes\";i:95;s:11:\"size_before\";i:39908;s:10:\"size_after\";i:39813;s:4:\"time\";d:0.29;}}}'),(10449,1289,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:33.03466934532411;s:5:\"bytes\";i:69720;s:11:\"size_before\";i:211051;s:10:\"size_after\";i:141331;s:4:\"time\";d:1.24;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:6:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.9;s:5:\"bytes\";i:50;s:11:\"size_before\";i:2630;s:10:\"size_after\";i:2580;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.17;s:5:\"bytes\";i:36;s:11:\"size_before\";i:20875;s:10:\"size_after\";i:20839;s:4:\"time\";d:0.06;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.07;s:5:\"bytes\";i:4;s:11:\"size_before\";i:5824;s:10:\"size_after\";i:5820;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.16;s:5:\"bytes\";i:25;s:11:\"size_before\";i:15686;s:10:\"size_after\";i:15661;s:4:\"time\";d:0.08;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:43.97;s:5:\"bytes\";i:69506;s:11:\"size_before\";i:158066;s:10:\"size_after\";i:88560;s:4:\"time\";d:0.97;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.24;s:5:\"bytes\";i:99;s:11:\"size_before\";i:7970;s:10:\"size_after\";i:7871;s:4:\"time\";d:0.09;}}}'),(10450,1285,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.03763055968573894;s:5:\"bytes\";i:41;s:11:\"size_before\";i:108954;s:10:\"size_after\";i:108913;s:4:\"time\";d:0.52;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.13;s:5:\"bytes\";i:14;s:11:\"size_before\";i:11177;s:10:\"size_after\";i:11163;s:4:\"time\";d:0.05;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4950;s:10:\"size_after\";i:4950;s:4:\"time\";d:0.04;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.06;s:5:\"bytes\";i:27;s:11:\"size_before\";i:41730;s:10:\"size_after\";i:41703;s:4:\"time\";d:0.24;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:51097;s:10:\"size_after\";i:51097;s:4:\"time\";d:0.19;}}}'),(10451,1284,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.41019630823322595;s:5:\"bytes\";i:28;s:11:\"size_before\";i:6826;s:10:\"size_after\";i:6798;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5027;s:10:\"size_after\";i:5027;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.56;s:5:\"bytes\";i:28;s:11:\"size_before\";i:1799;s:10:\"size_after\";i:1771;s:4:\"time\";d:0.01;}}}'),(10452,1246,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:19.31896958434831;s:5:\"bytes\";i:321038;s:11:\"size_before\";i:1661776;s:10:\"size_after\";i:1340738;s:4:\"time\";d:10.13;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:7:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7105;s:10:\"size_after\";i:7105;s:4:\"time\";d:0.06;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:101507;s:10:\"size_after\";i:101507;s:4:\"time\";d:0.3;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4106;s:10:\"size_after\";i:4106;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:49024;s:10:\"size_after\";i:49024;s:4:\"time\";d:0.14;}s:9:\"1536x1536\";O:8:\"stdClass\":5:{s:7:\"percent\";d:19.65;s:5:\"bytes\";i:101823;s:11:\"size_before\";i:518056;s:10:\"size_after\";i:416233;s:4:\"time\";d:2.64;}s:9:\"2048x2048\";O:8:\"stdClass\":5:{s:7:\"percent\";d:23.36;s:5:\"bytes\";i:219215;s:11:\"size_before\";i:938318;s:10:\"size_after\";i:719103;s:4:\"time\";d:6.83;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:43660;s:10:\"size_after\";i:43660;s:4:\"time\";d:0.14;}}}'),(10453,1244,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11846;s:10:\"size_after\";i:11846;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7854;s:10:\"size_after\";i:7854;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3992;s:10:\"size_after\";i:3992;s:4:\"time\";d:0.01;}}}'),(10454,1243,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:182174;s:10:\"size_after\";i:182174;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9231;s:10:\"size_after\";i:9231;s:4:\"time\";d:0.01;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:75042;s:10:\"size_after\";i:75042;s:4:\"time\";d:0.08;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6561;s:10:\"size_after\";i:6561;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:52323;s:10:\"size_after\";i:52323;s:4:\"time\";d:0.03;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39017;s:10:\"size_after\";i:39017;s:4:\"time\";d:0.03;}}}'),(10455,1219,'wp-smush-animated','1'),(10456,1219,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.5792011572771838;s:5:\"bytes\";i:393;s:11:\"size_before\";i:24886;s:10:\"size_after\";i:24493;s:4:\"time\";d:0.04;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.59;s:5:\"bytes\";i:50;s:11:\"size_before\";i:8485;s:10:\"size_after\";i:8435;s:4:\"time\";d:0.01;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.14;s:5:\"bytes\";i:233;s:11:\"size_before\";i:4537;s:10:\"size_after\";i:4304;s:4:\"time\";d:0.01;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.93;s:5:\"bytes\";i:110;s:11:\"size_before\";i:11864;s:10:\"size_after\";i:11754;s:4:\"time\";d:0.02;}}}'),(10457,1218,'wp-smush-animated','1'),(10458,1218,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.9744613826854926;s:5:\"bytes\";i:351;s:11:\"size_before\";i:17777;s:10:\"size_after\";i:17426;s:4:\"time\";d:0.060000000000000005;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.27;s:5:\"bytes\";i:351;s:11:\"size_before\";i:8218;s:10:\"size_after\";i:7867;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1766;s:10:\"size_after\";i:1766;s:4:\"time\";d:0.03;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7793;s:10:\"size_after\";i:7793;s:4:\"time\";d:0.01;}}}'),(10459,1215,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.6997404306657404;s:5:\"bytes\";i:957;s:11:\"size_before\";i:136765;s:10:\"size_after\";i:135808;s:4:\"time\";d:0.1;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:3.71;s:5:\"bytes\";i:622;s:11:\"size_before\";i:16782;s:10:\"size_after\";i:16160;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.81;s:5:\"bytes\";i:335;s:11:\"size_before\";i:6969;s:10:\"size_after\";i:6634;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:70877;s:10:\"size_after\";i:70877;s:4:\"time\";d:0.03;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:42137;s:10:\"size_after\";i:42137;s:4:\"time\";d:0.02;}}}'),(10460,1195,'wp-smush-animated','1'),(10461,1195,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.021890619869385966;s:5:\"bytes\";i:6;s:11:\"size_before\";i:27409;s:10:\"size_after\";i:27403;s:4:\"time\";d:0.05;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.06;s:5:\"bytes\";i:6;s:11:\"size_before\";i:10497;s:10:\"size_after\";i:10491;s:4:\"time\";d:0.02;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:965;s:10:\"size_after\";i:965;s:4:\"time\";d:0.01;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15947;s:10:\"size_after\";i:15947;s:4:\"time\";d:0.02;}}}'),(10462,1184,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.015963730404520926;s:5:\"bytes\";i:15;s:11:\"size_before\";i:93963;s:10:\"size_after\";i:93948;s:4:\"time\";d:0.6900000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.21;s:5:\"bytes\";i:15;s:11:\"size_before\";i:7086;s:10:\"size_after\";i:7071;s:4:\"time\";d:0.04;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:42442;s:10:\"size_after\";i:42442;s:4:\"time\";d:0.32;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4572;s:10:\"size_after\";i:4572;s:4:\"time\";d:0.03;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22260;s:10:\"size_after\";i:22260;s:4:\"time\";d:0.18;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17603;s:10:\"size_after\";i:17603;s:4:\"time\";d:0.12;}}}'),(10463,1177,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:235451;s:10:\"size_after\";i:235451;s:4:\"time\";d:0.25;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23724;s:10:\"size_after\";i:23724;s:4:\"time\";d:0.03;}s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7667;s:10:\"size_after\";i:7667;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:126556;s:10:\"size_after\";i:126556;s:4:\"time\";d:0.15;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:77504;s:10:\"size_after\";i:77504;s:4:\"time\";d:0.05;}}}'),(10464,1118,'wp-smush-animated','1'),(10465,1118,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.9178965675499409;s:5:\"bytes\";i:380;s:11:\"size_before\";i:41399;s:10:\"size_after\";i:41019;s:4:\"time\";d:0.05;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.02;s:5:\"bytes\";i:1;s:11:\"size_before\";i:4055;s:10:\"size_after\";i:4054;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.08;s:5:\"bytes\";i:9;s:11:\"size_before\";i:10949;s:10:\"size_after\";i:10940;s:4:\"time\";d:0.01;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.4;s:5:\"bytes\";i:370;s:11:\"size_before\";i:26395;s:10:\"size_after\";i:26025;s:4:\"time\";d:0.02;}}}'),(10466,1104,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.07505444089727055;s:5:\"bytes\";i:71;s:11:\"size_before\";i:94598;s:10:\"size_after\";i:94527;s:4:\"time\";d:0.93;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3662;s:10:\"size_after\";i:3662;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7135;s:10:\"size_after\";i:7135;s:4:\"time\";d:0.08;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.25;s:5:\"bytes\";i:56;s:11:\"size_before\";i:22478;s:10:\"size_after\";i:22422;s:4:\"time\";d:0.28;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:46752;s:10:\"size_after\";i:46752;s:4:\"time\";d:0.45;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.1;s:5:\"bytes\";i:15;s:11:\"size_before\";i:14571;s:10:\"size_after\";i:14556;s:4:\"time\";d:0.1;}}}'),(10467,1048,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.06707236129645286;s:5:\"bytes\";i:96;s:11:\"size_before\";i:143129;s:10:\"size_after\";i:143033;s:4:\"time\";d:0.16;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5491;s:10:\"size_after\";i:5491;s:4:\"time\";d:0.04;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.01;s:5:\"bytes\";i:1;s:11:\"size_before\";i:10080;s:10:\"size_after\";i:10079;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.24;s:5:\"bytes\";i:95;s:11:\"size_before\";i:40042;s:10:\"size_after\";i:39947;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:61591;s:10:\"size_after\";i:61591;s:4:\"time\";d:0.04;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:25925;s:10:\"size_after\";i:25925;s:4:\"time\";d:0.04;}}}'),(10468,1030,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:183537;s:10:\"size_after\";i:183537;s:4:\"time\";d:0.8600000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8576;s:10:\"size_after\";i:8576;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18884;s:10:\"size_after\";i:18884;s:4:\"time\";d:0.05;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:89494;s:10:\"size_after\";i:89494;s:4:\"time\";d:0.27;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:66583;s:10:\"size_after\";i:66583;s:4:\"time\";d:0.52;}}}'),(10469,1014,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.34113540906670875;s:5:\"bytes\";i:173;s:11:\"size_before\";i:50713;s:10:\"size_after\";i:50540;s:4:\"time\";d:0.37;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.17;s:5:\"bytes\";i:2;s:11:\"size_before\";i:1180;s:10:\"size_after\";i:1178;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3747;s:10:\"size_after\";i:3747;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.27;s:5:\"bytes\";i:42;s:11:\"size_before\";i:15423;s:10:\"size_after\";i:15381;s:4:\"time\";d:0.1;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.41;s:5:\"bytes\";i:99;s:11:\"size_before\";i:23958;s:10:\"size_after\";i:23859;s:4:\"time\";d:0.14;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.47;s:5:\"bytes\";i:30;s:11:\"size_before\";i:6405;s:10:\"size_after\";i:6375;s:4:\"time\";d:0.1;}}}'),(10470,1011,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.6614981216751128;s:5:\"bytes\";i:1318;s:11:\"size_before\";i:79326;s:10:\"size_after\";i:78008;s:4:\"time\";d:0.1;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.88;s:5:\"bytes\";i:469;s:11:\"size_before\";i:7974;s:10:\"size_after\";i:7505;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:5.97;s:5:\"bytes\";i:849;s:11:\"size_before\";i:14220;s:10:\"size_after\";i:13371;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:30494;s:10:\"size_after\";i:30494;s:4:\"time\";d:0.03;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26638;s:10:\"size_after\";i:26638;s:4:\"time\";d:0.04;}}}'),(10471,1008,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.0737917858623025;s:5:\"bytes\";i:73;s:11:\"size_before\";i:98927;s:10:\"size_after\";i:98854;s:4:\"time\";d:0.52;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.73;s:5:\"bytes\";i:11;s:11:\"size_before\";i:1502;s:10:\"size_after\";i:1491;s:4:\"time\";d:0.03;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6660;s:10:\"size_after\";i:6660;s:4:\"time\";d:0.04;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.18;s:5:\"bytes\";i:62;s:11:\"size_before\";i:34050;s:10:\"size_after\";i:33988;s:4:\"time\";d:0.14;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:49618;s:10:\"size_after\";i:49618;s:4:\"time\";d:0.23;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7097;s:10:\"size_after\";i:7097;s:4:\"time\";d:0.08;}}}'),(10472,1003,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.16335717137982356;s:5:\"bytes\";i:90;s:11:\"size_before\";i:55094;s:10:\"size_after\";i:55004;s:4:\"time\";d:0.19;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9261;s:10:\"size_after\";i:9261;s:4:\"time\";d:0.04;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.56;s:5:\"bytes\";i:90;s:11:\"size_before\";i:15930;s:10:\"size_after\";i:15840;s:4:\"time\";d:0.04;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:29903;s:10:\"size_after\";i:29903;s:4:\"time\";d:0.11;}}}'),(10473,997,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:186206;s:10:\"size_after\";i:186206;s:4:\"time\";d:0.49;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5108;s:10:\"size_after\";i:5108;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16116;s:10:\"size_after\";i:16116;s:4:\"time\";d:0.04;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:104033;s:10:\"size_after\";i:104033;s:4:\"time\";d:0.3;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:60949;s:10:\"size_after\";i:60949;s:4:\"time\";d:0.13;}}}'),(10474,977,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.1286681715575622;s:5:\"bytes\";i:10;s:11:\"size_before\";i:886;s:10:\"size_after\";i:876;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.13;s:5:\"bytes\";i:10;s:11:\"size_before\";i:886;s:10:\"size_after\";i:876;s:4:\"time\";d:0.01;}}}'),(10475,976,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.8492569002123143;s:5:\"bytes\";i:8;s:11:\"size_before\";i:942;s:10:\"size_after\";i:934;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.85;s:5:\"bytes\";i:8;s:11:\"size_before\";i:942;s:10:\"size_after\";i:934;s:4:\"time\";d:0.02;}}}'),(10476,975,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.4332129963898917;s:5:\"bytes\";i:6;s:11:\"size_before\";i:1385;s:10:\"size_after\";i:1379;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.43;s:5:\"bytes\";i:6;s:11:\"size_before\";i:1385;s:10:\"size_after\";i:1379;s:4:\"time\";d:0.02;}}}'),(10477,974,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.171875;s:5:\"bytes\";i:12;s:11:\"size_before\";i:1024;s:10:\"size_after\";i:1012;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.17;s:5:\"bytes\";i:12;s:11:\"size_before\";i:1024;s:10:\"size_after\";i:1012;s:4:\"time\";d:0.01;}}}'),(10478,973,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.1206896551724137;s:5:\"bytes\";i:13;s:11:\"size_before\";i:1160;s:10:\"size_after\";i:1147;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.12;s:5:\"bytes\";i:13;s:11:\"size_before\";i:1160;s:10:\"size_after\";i:1147;s:4:\"time\";d:0.01;}}}'),(10479,972,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.5763546798029555;s:5:\"bytes\";i:32;s:11:\"size_before\";i:2030;s:10:\"size_after\";i:1998;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.58;s:5:\"bytes\";i:32;s:11:\"size_before\";i:2030;s:10:\"size_after\";i:1998;s:4:\"time\";d:0.03;}}}'),(10480,971,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.5841121495327103;s:5:\"bytes\";i:5;s:11:\"size_before\";i:856;s:10:\"size_after\";i:851;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.58;s:5:\"bytes\";i:5;s:11:\"size_before\";i:856;s:10:\"size_after\";i:851;s:4:\"time\";d:0.01;}}}'),(10481,970,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.845444059976932;s:5:\"bytes\";i:32;s:11:\"size_before\";i:1734;s:10:\"size_after\";i:1702;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.85;s:5:\"bytes\";i:32;s:11:\"size_before\";i:1734;s:10:\"size_after\";i:1702;s:4:\"time\";d:0.03;}}}'),(10482,969,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.7163323782234957;s:5:\"bytes\";i:5;s:11:\"size_before\";i:698;s:10:\"size_after\";i:693;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.72;s:5:\"bytes\";i:5;s:11:\"size_before\";i:698;s:10:\"size_after\";i:693;s:4:\"time\";d:0.01;}}}'),(10483,968,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2333;s:10:\"size_after\";i:2333;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2333;s:10:\"size_after\";i:2333;s:4:\"time\";d:0.01;}}}'),(10484,949,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.0009541483987004499;s:5:\"bytes\";i:2;s:11:\"size_before\";i:209611;s:10:\"size_after\";i:209609;s:4:\"time\";d:1.24;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.05;s:5:\"bytes\";i:2;s:11:\"size_before\";i:3639;s:10:\"size_after\";i:3637;s:4:\"time\";d:0.04;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10197;s:10:\"size_after\";i:10197;s:4:\"time\";d:0.07;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:58957;s:10:\"size_after\";i:58957;s:4:\"time\";d:0.29;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:93529;s:10:\"size_after\";i:93529;s:4:\"time\";d:0.65;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:43289;s:10:\"size_after\";i:43289;s:4:\"time\";d:0.19;}}}'),(10485,868,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.016345416368048482;s:5:\"bytes\";i:13;s:11:\"size_before\";i:79533;s:10:\"size_after\";i:79520;s:4:\"time\";d:0.6;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.26;s:5:\"bytes\";i:13;s:11:\"size_before\";i:5044;s:10:\"size_after\";i:5031;s:4:\"time\";d:0.05;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5371;s:10:\"size_after\";i:5371;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:34181;s:10:\"size_after\";i:34181;s:4:\"time\";d:0.15;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:28247;s:10:\"size_after\";i:28247;s:4:\"time\";d:0.23;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6690;s:10:\"size_after\";i:6690;s:4:\"time\";d:0.15;}}}'),(10486,848,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.015438293142310187;s:5:\"bytes\";i:5;s:11:\"size_before\";i:32387;s:10:\"size_after\";i:32382;s:4:\"time\";d:0.19;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.27;s:5:\"bytes\";i:5;s:11:\"size_before\";i:1819;s:10:\"size_after\";i:1814;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2417;s:10:\"size_after\";i:2417;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7754;s:10:\"size_after\";i:7754;s:4:\"time\";d:0.05;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11492;s:10:\"size_after\";i:11492;s:4:\"time\";d:0.05;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8905;s:10:\"size_after\";i:8905;s:4:\"time\";d:0.05;}}}'),(10487,847,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.10080935510815403;s:5:\"bytes\";i:35;s:11:\"size_before\";i:34719;s:10:\"size_after\";i:34684;s:4:\"time\";d:0.19;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.5;s:5:\"bytes\";i:9;s:11:\"size_before\";i:1817;s:10:\"size_after\";i:1808;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.55;s:5:\"bytes\";i:26;s:11:\"size_before\";i:4751;s:10:\"size_after\";i:4725;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7754;s:10:\"size_after\";i:7754;s:4:\"time\";d:0.05;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11492;s:10:\"size_after\";i:11492;s:4:\"time\";d:0.07;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8905;s:10:\"size_after\";i:8905;s:4:\"time\";d:0.05;}}}'),(10488,845,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:78394;s:10:\"size_after\";i:78394;s:4:\"time\";d:0.11;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5030;s:10:\"size_after\";i:5030;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6657;s:10:\"size_after\";i:6657;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20415;s:10:\"size_after\";i:20415;s:4:\"time\";d:0.01;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:27734;s:10:\"size_after\";i:27734;s:4:\"time\";d:0.03;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18558;s:10:\"size_after\";i:18558;s:4:\"time\";d:0.03;}}}'),(10489,840,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.7430571066934702;s:5:\"bytes\";i:499;s:11:\"size_before\";i:67155;s:10:\"size_after\";i:66656;s:4:\"time\";d:0.08;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5073;s:10:\"size_after\";i:5073;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:4.48;s:5:\"bytes\";i:499;s:11:\"size_before\";i:11143;s:10:\"size_after\";i:10644;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26581;s:10:\"size_after\";i:26581;s:4:\"time\";d:0.03;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:24358;s:10:\"size_after\";i:24358;s:4:\"time\";d:0.02;}}}'),(10490,820,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:165908;s:10:\"size_after\";i:165908;s:4:\"time\";d:0.13;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5492;s:10:\"size_after\";i:5492;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10747;s:10:\"size_after\";i:10747;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:43842;s:10:\"size_after\";i:43842;s:4:\"time\";d:0.03;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:73044;s:10:\"size_after\";i:73044;s:4:\"time\";d:0.05;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:32783;s:10:\"size_after\";i:32783;s:4:\"time\";d:0.03;}}}'),(10491,816,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:112318;s:10:\"size_after\";i:112318;s:4:\"time\";d:0.11000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:12543;s:10:\"size_after\";i:12543;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:24653;s:10:\"size_after\";i:24653;s:4:\"time\";d:0.02;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:75122;s:10:\"size_after\";i:75122;s:4:\"time\";d:0.07;}}}'),(10492,802,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4135;s:10:\"size_after\";i:4135;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4135;s:10:\"size_after\";i:4135;s:4:\"time\";d:0.03;}}}'),(10493,801,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.15459136349582603;s:5:\"bytes\";i:15;s:11:\"size_before\";i:9703;s:10:\"size_after\";i:9688;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3047;s:10:\"size_after\";i:3047;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.23;s:5:\"bytes\";i:15;s:11:\"size_before\";i:6656;s:10:\"size_after\";i:6641;s:4:\"time\";d:0.02;}}}'),(10494,800,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.04939491232403062;s:5:\"bytes\";i:6;s:11:\"size_before\";i:12147;s:10:\"size_after\";i:12141;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.12;s:5:\"bytes\";i:6;s:11:\"size_before\";i:5125;s:10:\"size_after\";i:5119;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7022;s:10:\"size_after\";i:7022;s:4:\"time\";d:0.02;}}}'),(10495,799,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11836;s:10:\"size_after\";i:11836;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5087;s:10:\"size_after\";i:5087;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6749;s:10:\"size_after\";i:6749;s:4:\"time\";d:0.01;}}}'),(10496,798,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8517;s:10:\"size_after\";i:8517;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2487;s:10:\"size_after\";i:2487;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6030;s:10:\"size_after\";i:6030;s:4:\"time\";d:0.01;}}}'),(10497,797,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3175;s:10:\"size_after\";i:3175;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3175;s:10:\"size_after\";i:3175;s:4:\"time\";d:0.01;}}}'),(10498,796,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.2905920813657828;s:5:\"bytes\";i:8;s:11:\"size_before\";i:2753;s:10:\"size_after\";i:2745;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.29;s:5:\"bytes\";i:8;s:11:\"size_before\";i:2753;s:10:\"size_after\";i:2745;s:4:\"time\";d:0.02;}}}'),(10499,795,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.12350761630300536;s:5:\"bytes\";i:15;s:11:\"size_before\";i:12145;s:10:\"size_after\";i:12130;s:4:\"time\";d:0.05;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.36;s:5:\"bytes\";i:15;s:11:\"size_before\";i:4179;s:10:\"size_after\";i:4164;s:4:\"time\";d:0.03;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7966;s:10:\"size_after\";i:7966;s:4:\"time\";d:0.02;}}}'),(10500,794,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3256;s:10:\"size_after\";i:3256;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3256;s:10:\"size_after\";i:3256;s:4:\"time\";d:0.01;}}}'),(10501,793,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3523;s:10:\"size_after\";i:3523;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3523;s:10:\"size_after\";i:3523;s:4:\"time\";d:0.01;}}}'),(10502,790,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:57306;s:10:\"size_after\";i:57306;s:4:\"time\";d:0.09000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2882;s:10:\"size_after\";i:2882;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3972;s:10:\"size_after\";i:3972;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13779;s:10:\"size_after\";i:13779;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21971;s:10:\"size_after\";i:21971;s:4:\"time\";d:0.03;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14702;s:10:\"size_after\";i:14702;s:4:\"time\";d:0.02;}}}'),(10503,787,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:29805;s:10:\"size_after\";i:29805;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9087;s:10:\"size_after\";i:9087;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20718;s:10:\"size_after\";i:20718;s:4:\"time\";d:0.02;}}}'),(10504,785,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:54669;s:10:\"size_after\";i:54669;s:4:\"time\";d:0.11;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2690;s:10:\"size_after\";i:2690;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3758;s:10:\"size_after\";i:3758;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13296;s:10:\"size_after\";i:13296;s:4:\"time\";d:0.03;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20948;s:10:\"size_after\";i:20948;s:4:\"time\";d:0.04;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13977;s:10:\"size_after\";i:13977;s:4:\"time\";d:0.02;}}}'),(10505,781,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18412;s:10:\"size_after\";i:18412;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5188;s:10:\"size_after\";i:5188;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13224;s:10:\"size_after\";i:13224;s:4:\"time\";d:0.02;}}}'),(10506,780,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:28958;s:10:\"size_after\";i:28958;s:4:\"time\";d:0.05;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8862;s:10:\"size_after\";i:8862;s:4:\"time\";d:0.03;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20096;s:10:\"size_after\";i:20096;s:4:\"time\";d:0.02;}}}'),(10507,779,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13821;s:10:\"size_after\";i:13821;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4473;s:10:\"size_after\";i:4473;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9348;s:10:\"size_after\";i:9348;s:4:\"time\";d:0.01;}}}'),(10508,778,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:37860;s:10:\"size_after\";i:37860;s:4:\"time\";d:0.04;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10302;s:10:\"size_after\";i:10302;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:27558;s:10:\"size_after\";i:27558;s:4:\"time\";d:0.02;}}}'),(10509,777,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18573;s:10:\"size_after\";i:18573;s:4:\"time\";d:0.04;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5743;s:10:\"size_after\";i:5743;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:12830;s:10:\"size_after\";i:12830;s:4:\"time\";d:0.03;}}}'),(10510,776,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26768;s:10:\"size_after\";i:26768;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7516;s:10:\"size_after\";i:7516;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19252;s:10:\"size_after\";i:19252;s:4:\"time\";d:0.02;}}}'),(10511,775,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23562;s:10:\"size_after\";i:23562;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6866;s:10:\"size_after\";i:6866;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16696;s:10:\"size_after\";i:16696;s:4:\"time\";d:0.01;}}}'),(10512,772,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.04937820043891734;s:5:\"bytes\";i:54;s:11:\"size_before\";i:109360;s:10:\"size_after\";i:109306;s:4:\"time\";d:1.09;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5754;s:10:\"size_after\";i:5754;s:4:\"time\";d:0.03;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:12746;s:10:\"size_after\";i:12746;s:4:\"time\";d:0.06;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.09;s:5:\"bytes\";i:54;s:11:\"size_before\";i:60553;s:10:\"size_after\";i:60499;s:4:\"time\";d:0.22;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:30307;s:10:\"size_after\";i:30307;s:4:\"time\";d:0.78;}}}'),(10513,754,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:44518;s:10:\"size_after\";i:44518;s:4:\"time\";d:0.07;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6218;s:10:\"size_after\";i:6218;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14818;s:10:\"size_after\";i:14818;s:4:\"time\";d:0.02;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23482;s:10:\"size_after\";i:23482;s:4:\"time\";d:0.04;}}}'),(10514,753,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:34058;s:10:\"size_after\";i:34058;s:4:\"time\";d:0.05;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4833;s:10:\"size_after\";i:4833;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11351;s:10:\"size_after\";i:11351;s:4:\"time\";d:0.01;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17874;s:10:\"size_after\";i:17874;s:4:\"time\";d:0.02;}}}'),(10515,752,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:41977;s:10:\"size_after\";i:41977;s:4:\"time\";d:0.05;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5989;s:10:\"size_after\";i:5989;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13897;s:10:\"size_after\";i:13897;s:4:\"time\";d:0.02;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22091;s:10:\"size_after\";i:22091;s:4:\"time\";d:0.02;}}}'),(10516,740,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:2.452820486450352;s:5:\"bytes\";i:954;s:11:\"size_before\";i:38894;s:10:\"size_after\";i:37940;s:4:\"time\";d:0.060000000000000005;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6200;s:10:\"size_after\";i:6200;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:6.89;s:5:\"bytes\";i:954;s:11:\"size_before\";i:13841;s:10:\"size_after\";i:12887;s:4:\"time\";d:0.03;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18853;s:10:\"size_after\";i:18853;s:4:\"time\";d:0.01;}}}'),(10517,661,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4857;s:10:\"size_after\";i:4857;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4857;s:10:\"size_after\";i:4857;s:4:\"time\";d:0.01;}}}'),(10518,660,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3461;s:10:\"size_after\";i:3461;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3461;s:10:\"size_after\";i:3461;s:4:\"time\";d:0.02;}}}'),(10519,659,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3359;s:10:\"size_after\";i:3359;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3359;s:10:\"size_after\";i:3359;s:4:\"time\";d:0.01;}}}'),(10520,655,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.009482595127670213;s:5:\"bytes\";i:11;s:11:\"size_before\";i:116002;s:10:\"size_after\";i:115991;s:4:\"time\";d:0.6900000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6416;s:10:\"size_after\";i:6416;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13774;s:10:\"size_after\";i:13774;s:4:\"time\";d:0.08;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:60223;s:10:\"size_after\";i:60223;s:4:\"time\";d:0.43;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.03;s:5:\"bytes\";i:11;s:11:\"size_before\";i:35589;s:10:\"size_after\";i:35578;s:4:\"time\";d:0.16;}}}'),(10521,654,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:49178;s:10:\"size_after\";i:49178;s:4:\"time\";d:0.13999999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2376;s:10:\"size_after\";i:2376;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3628;s:10:\"size_after\";i:3628;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:12786;s:10:\"size_after\";i:12786;s:4:\"time\";d:0.06;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19978;s:10:\"size_after\";i:19978;s:4:\"time\";d:0.03;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10410;s:10:\"size_after\";i:10410;s:4:\"time\";d:0.02;}}}'),(10522,623,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.39643211100099107;s:5:\"bytes\";i:36;s:11:\"size_before\";i:9081;s:10:\"size_after\";i:9045;s:4:\"time\";d:0.04;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.65;s:5:\"bytes\";i:13;s:11:\"size_before\";i:1994;s:10:\"size_after\";i:1981;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.32;s:5:\"bytes\";i:23;s:11:\"size_before\";i:7087;s:10:\"size_after\";i:7064;s:4:\"time\";d:0.02;}}}'),(10523,621,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.07220216606498195;s:5:\"bytes\";i:1;s:11:\"size_before\";i:1385;s:10:\"size_after\";i:1384;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.07;s:5:\"bytes\";i:1;s:11:\"size_before\";i:1385;s:10:\"size_after\";i:1384;s:4:\"time\";d:0.01;}}}'),(10524,620,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11901;s:10:\"size_after\";i:11901;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4106;s:10:\"size_after\";i:4106;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7795;s:10:\"size_after\";i:7795;s:4:\"time\";d:0.01;}}}'),(10525,619,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26135;s:10:\"size_after\";i:26135;s:4:\"time\";d:0.1;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1632;s:10:\"size_after\";i:1632;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1963;s:10:\"size_after\";i:1963;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6343;s:10:\"size_after\";i:6343;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9402;s:10:\"size_after\";i:9402;s:4:\"time\";d:0.03;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6795;s:10:\"size_after\";i:6795;s:4:\"time\";d:0.02;}}}'),(10526,618,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.132013201320132;s:5:\"bytes\";i:2;s:11:\"size_before\";i:1515;s:10:\"size_after\";i:1513;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.13;s:5:\"bytes\";i:2;s:11:\"size_before\";i:1515;s:10:\"size_after\";i:1513;s:4:\"time\";d:0.01;}}}'),(10527,617,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4883;s:10:\"size_after\";i:4883;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1092;s:10:\"size_after\";i:1092;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3791;s:10:\"size_after\";i:3791;s:4:\"time\";d:0.01;}}}'),(10528,616,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.0038339883063356656;s:5:\"bytes\";i:4;s:11:\"size_before\";i:104330;s:10:\"size_after\";i:104326;s:4:\"time\";d:0.76;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.11;s:5:\"bytes\";i:4;s:11:\"size_before\";i:3533;s:10:\"size_after\";i:3529;s:4:\"time\";d:0.03;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7219;s:10:\"size_after\";i:7219;s:4:\"time\";d:0.03;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:28035;s:10:\"size_after\";i:28035;s:4:\"time\";d:0.08;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:47843;s:10:\"size_after\";i:47843;s:4:\"time\";d:0.54;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17700;s:10:\"size_after\";i:17700;s:4:\"time\";d:0.08;}}}'),(10529,615,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.08952551477170993;s:5:\"bytes\";i:1;s:11:\"size_before\";i:1117;s:10:\"size_after\";i:1116;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.09;s:5:\"bytes\";i:1;s:11:\"size_before\";i:1117;s:10:\"size_after\";i:1116;s:4:\"time\";d:0.01;}}}'),(10530,614,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.033177073413490785;s:5:\"bytes\";i:54;s:11:\"size_before\";i:162763;s:10:\"size_after\";i:162709;s:4:\"time\";d:0.84;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.15;s:5:\"bytes\";i:8;s:11:\"size_before\";i:5422;s:10:\"size_after\";i:5414;s:4:\"time\";d:0.03;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.24;s:5:\"bytes\";i:32;s:11:\"size_before\";i:13099;s:10:\"size_after\";i:13067;s:4:\"time\";d:0.08;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:46963;s:10:\"size_after\";i:46963;s:4:\"time\";d:0.18;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0;s:5:\"bytes\";i:1;s:11:\"size_before\";i:70818;s:10:\"size_after\";i:70817;s:4:\"time\";d:0.42;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.05;s:5:\"bytes\";i:13;s:11:\"size_before\";i:26461;s:10:\"size_after\";i:26448;s:4:\"time\";d:0.13;}}}'),(10531,613,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2534;s:10:\"size_after\";i:2534;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2534;s:10:\"size_after\";i:2534;s:4:\"time\";d:0.01;}}}'),(10532,612,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.019409937888198756;s:5:\"bytes\";i:1;s:11:\"size_before\";i:5152;s:10:\"size_after\";i:5151;s:4:\"time\";d:0.05;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.06;s:5:\"bytes\";i:1;s:11:\"size_before\";i:1675;s:10:\"size_after\";i:1674;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3477;s:10:\"size_after\";i:3477;s:4:\"time\";d:0.03;}}}'),(10533,611,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:1.9997115800605683;s:5:\"bytes\";i:416;s:11:\"size_before\";i:20803;s:10:\"size_after\";i:20387;s:4:\"time\";d:0.65;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.63;s:5:\"bytes\";i:19;s:11:\"size_before\";i:1164;s:10:\"size_after\";i:1145;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.38;s:5:\"bytes\";i:8;s:11:\"size_before\";i:2097;s:10:\"size_after\";i:2089;s:4:\"time\";d:0.03;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.53;s:5:\"bytes\";i:28;s:11:\"size_before\";i:5272;s:10:\"size_after\";i:5244;s:4:\"time\";d:0.14;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.93;s:5:\"bytes\";i:237;s:11:\"size_before\";i:8087;s:10:\"size_after\";i:7850;s:4:\"time\";d:0.34;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.96;s:5:\"bytes\";i:124;s:11:\"size_before\";i:4183;s:10:\"size_after\";i:4059;s:4:\"time\";d:0.13;}}}'),(10534,610,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.6923726428370391;s:5:\"bytes\";i:369;s:11:\"size_before\";i:53295;s:10:\"size_after\";i:52926;s:4:\"time\";d:0.63;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2952;s:10:\"size_after\";i:2952;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5558;s:10:\"size_after\";i:5558;s:4:\"time\";d:0.04;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.81;s:5:\"bytes\";i:119;s:11:\"size_before\";i:14612;s:10:\"size_after\";i:14493;s:4:\"time\";d:0.17;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.02;s:5:\"bytes\";i:211;s:11:\"size_before\";i:20688;s:10:\"size_after\";i:20477;s:4:\"time\";d:0.27;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.41;s:5:\"bytes\";i:39;s:11:\"size_before\";i:9485;s:10:\"size_after\";i:9446;s:4:\"time\";d:0.13;}}}'),(10535,609,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.40455684892407734;s:5:\"bytes\";i:163;s:11:\"size_before\";i:40291;s:10:\"size_after\";i:40128;s:4:\"time\";d:0.9199999999999999;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2744;s:10:\"size_after\";i:2744;s:4:\"time\";d:0.03;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4460;s:10:\"size_after\";i:4460;s:4:\"time\";d:0.18;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.97;s:5:\"bytes\";i:109;s:11:\"size_before\";i:11184;s:10:\"size_after\";i:11075;s:4:\"time\";d:0.5;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.34;s:5:\"bytes\";i:54;s:11:\"size_before\";i:15854;s:10:\"size_after\";i:15800;s:4:\"time\";d:0.12;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6049;s:10:\"size_after\";i:6049;s:4:\"time\";d:0.09;}}}'),(10536,608,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.34403669724770647;s:5:\"bytes\";i:9;s:11:\"size_before\";i:2616;s:10:\"size_after\";i:2607;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.34;s:5:\"bytes\";i:9;s:11:\"size_before\";i:2616;s:10:\"size_after\";i:2607;s:4:\"time\";d:0.03;}}}'),(10537,607,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.2640422467594815;s:5:\"bytes\";i:44;s:11:\"size_before\";i:16664;s:10:\"size_after\";i:16620;s:4:\"time\";d:0.11000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.91;s:5:\"bytes\";i:6;s:11:\"size_before\";i:656;s:10:\"size_after\";i:650;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3971;s:10:\"size_after\";i:3971;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9614;s:10:\"size_after\";i:9614;s:4:\"time\";d:0.04;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.57;s:5:\"bytes\";i:38;s:11:\"size_before\";i:2423;s:10:\"size_after\";i:2385;s:4:\"time\";d:0.04;}}}'),(10538,606,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:86930;s:10:\"size_after\";i:86930;s:4:\"time\";d:0.12000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5188;s:10:\"size_after\";i:5188;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6770;s:10:\"size_after\";i:6770;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23555;s:10:\"size_after\";i:23555;s:4:\"time\";d:0.03;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:33129;s:10:\"size_after\";i:33129;s:4:\"time\";d:0.03;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18288;s:10:\"size_after\";i:18288;s:4:\"time\";d:0.02;}}}'),(10539,605,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.32658393207054215;s:5:\"bytes\";i:10;s:11:\"size_before\";i:3062;s:10:\"size_after\";i:3052;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.33;s:5:\"bytes\";i:10;s:11:\"size_before\";i:3062;s:10:\"size_after\";i:3052;s:4:\"time\";d:0.03;}}}'),(10540,604,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.917343753722986;s:5:\"bytes\";i:385;s:11:\"size_before\";i:41969;s:10:\"size_after\";i:41584;s:4:\"time\";d:1.17;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2196;s:10:\"size_after\";i:2196;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4301;s:10:\"size_after\";i:4301;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.53;s:5:\"bytes\";i:61;s:11:\"size_before\";i:11545;s:10:\"size_after\";i:11484;s:4:\"time\";d:0.1;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.64;s:5:\"bytes\";i:104;s:11:\"size_before\";i:16149;s:10:\"size_after\";i:16045;s:4:\"time\";d:0.26;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";d:2.83;s:5:\"bytes\";i:220;s:11:\"size_before\";i:7778;s:10:\"size_after\";i:7558;s:4:\"time\";d:0.77;}}}'),(10541,603,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11826;s:10:\"size_after\";i:11826;s:4:\"time\";d:0.06;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4461;s:10:\"size_after\";i:4461;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7365;s:10:\"size_after\";i:7365;s:4:\"time\";d:0.04;}}}'),(10542,602,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.23210831721470018;s:5:\"bytes\";i:18;s:11:\"size_before\";i:7755;s:10:\"size_after\";i:7737;s:4:\"time\";d:0.04;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.55;s:5:\"bytes\";i:11;s:11:\"size_before\";i:1992;s:10:\"size_after\";i:1981;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.12;s:5:\"bytes\";i:7;s:11:\"size_before\";i:5763;s:10:\"size_after\";i:5756;s:4:\"time\";d:0.02;}}}'),(10543,600,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.27092113184828415;s:5:\"bytes\";i:9;s:11:\"size_before\";i:3322;s:10:\"size_after\";i:3313;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.27;s:5:\"bytes\";i:9;s:11:\"size_before\";i:3322;s:10:\"size_after\";i:3313;s:4:\"time\";d:0.03;}}}'),(10544,599,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16496;s:10:\"size_after\";i:16496;s:4:\"time\";d:0.12;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3384;s:10:\"size_after\";i:3384;s:4:\"time\";d:0.04;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6850;s:10:\"size_after\";i:6850;s:4:\"time\";d:0.02;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6262;s:10:\"size_after\";i:6262;s:4:\"time\";d:0.06;}}}'),(10545,598,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.31718407904339524;s:5:\"bytes\";i:226;s:11:\"size_before\";i:71252;s:10:\"size_after\";i:71026;s:4:\"time\";d:0.24;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:3:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10689;s:10:\"size_after\";i:10689;s:4:\"time\";d:0.05;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.21;s:5:\"bytes\";i:44;s:11:\"size_before\";i:20537;s:10:\"size_after\";i:20493;s:4:\"time\";d:0.08;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.45;s:5:\"bytes\";i:182;s:11:\"size_before\";i:40026;s:10:\"size_after\";i:39844;s:4:\"time\";d:0.11;}}}'),(10547,596,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3972;s:10:\"size_after\";i:3972;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3972;s:10:\"size_after\";i:3972;s:4:\"time\";d:0.02;}}}'),(10548,595,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4319;s:10:\"size_after\";i:4319;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4319;s:10:\"size_after\";i:4319;s:4:\"time\";d:0.02;}}}'),(10549,594,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2442;s:10:\"size_after\";i:2442;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2442;s:10:\"size_after\";i:2442;s:4:\"time\";d:0.02;}}}'),(10550,593,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.09563277016257571;s:5:\"bytes\";i:6;s:11:\"size_before\";i:6274;s:10:\"size_after\";i:6268;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.61;s:5:\"bytes\";i:6;s:11:\"size_before\";i:979;s:10:\"size_after\";i:973;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5295;s:10:\"size_after\";i:5295;s:4:\"time\";d:0.02;}}}'),(10551,592,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8360;s:10:\"size_after\";i:8360;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8360;s:10:\"size_after\";i:8360;s:4:\"time\";d:0.02;}}}'),(10552,591,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9802;s:10:\"size_after\";i:9802;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3706;s:10:\"size_after\";i:3706;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6096;s:10:\"size_after\";i:6096;s:4:\"time\";d:0.02;}}}'),(10553,590,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5136;s:10:\"size_after\";i:5136;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5136;s:10:\"size_after\";i:5136;s:4:\"time\";d:0.01;}}}'),(10554,589,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4562;s:10:\"size_after\";i:4562;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4562;s:10:\"size_after\";i:4562;s:4:\"time\";d:0.03;}}}'),(10555,588,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.11705033164260631;s:5:\"bytes\";i:6;s:11:\"size_before\";i:5126;s:10:\"size_after\";i:5120;s:4:\"time\";d:0.04;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.42;s:5:\"bytes\";i:6;s:11:\"size_before\";i:1423;s:10:\"size_after\";i:1417;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3703;s:10:\"size_after\";i:3703;s:4:\"time\";d:0.02;}}}'),(10556,587,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2366;s:10:\"size_after\";i:2366;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2366;s:10:\"size_after\";i:2366;s:4:\"time\";d:0.03;}}}'),(10557,586,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.18436504278471375;s:5:\"bytes\";i:184;s:11:\"size_before\";i:99802;s:10:\"size_after\";i:99618;s:4:\"time\";d:0.1;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6505;s:10:\"size_after\";i:6505;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";d:1.41;s:5:\"bytes\";i:184;s:11:\"size_before\";i:13087;s:10:\"size_after\";i:12903;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45462;s:10:\"size_after\";i:45462;s:4:\"time\";d:0.04;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:34748;s:10:\"size_after\";i:34748;s:4:\"time\";d:0.03;}}}'),(10558,585,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23342;s:10:\"size_after\";i:23342;s:4:\"time\";d:0.04;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7059;s:10:\"size_after\";i:7059;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16283;s:10:\"size_after\";i:16283;s:4:\"time\";d:0.03;}}}'),(10559,584,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18346;s:10:\"size_after\";i:18346;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5342;s:10:\"size_after\";i:5342;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13004;s:10:\"size_after\";i:13004;s:4:\"time\";d:0.01;}}}'),(10560,583,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20160;s:10:\"size_after\";i:20160;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5933;s:10:\"size_after\";i:5933;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14227;s:10:\"size_after\";i:14227;s:4:\"time\";d:0.01;}}}'),(10561,582,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10118;s:10:\"size_after\";i:10118;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3326;s:10:\"size_after\";i:3326;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6792;s:10:\"size_after\";i:6792;s:4:\"time\";d:0.01;}}}'),(10562,581,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14453;s:10:\"size_after\";i:14453;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4639;s:10:\"size_after\";i:4639;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9814;s:10:\"size_after\";i:9814;s:4:\"time\";d:0.02;}}}'),(10563,580,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:24416;s:10:\"size_after\";i:24416;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6814;s:10:\"size_after\";i:6814;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17602;s:10:\"size_after\";i:17602;s:4:\"time\";d:0.02;}}}'),(10564,579,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15085;s:10:\"size_after\";i:15085;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4375;s:10:\"size_after\";i:4375;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10710;s:10:\"size_after\";i:10710;s:4:\"time\";d:0.02;}}}'),(10565,578,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22449;s:10:\"size_after\";i:22449;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6543;s:10:\"size_after\";i:6543;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15906;s:10:\"size_after\";i:15906;s:4:\"time\";d:0.02;}}}'),(10566,561,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13427;s:10:\"size_after\";i:13427;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4243;s:10:\"size_after\";i:4243;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9184;s:10:\"size_after\";i:9184;s:4:\"time\";d:0.01;}}}'),(10567,560,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14694;s:10:\"size_after\";i:14694;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4598;s:10:\"size_after\";i:4598;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10096;s:10:\"size_after\";i:10096;s:4:\"time\";d:0.01;}}}'),(10568,559,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23769;s:10:\"size_after\";i:23769;s:4:\"time\";d:0.1;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6928;s:10:\"size_after\";i:6928;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16841;s:10:\"size_after\";i:16841;s:4:\"time\";d:0.08;}}}'),(10569,558,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18272;s:10:\"size_after\";i:18272;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5326;s:10:\"size_after\";i:5326;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:12946;s:10:\"size_after\";i:12946;s:4:\"time\";d:0.02;}}}'),(10570,557,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21123;s:10:\"size_after\";i:21123;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6051;s:10:\"size_after\";i:6051;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15072;s:10:\"size_after\";i:15072;s:4:\"time\";d:0.01;}}}'),(10571,556,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11798;s:10:\"size_after\";i:11798;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3755;s:10:\"size_after\";i:3755;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8043;s:10:\"size_after\";i:8043;s:4:\"time\";d:0.01;}}}'),(10572,555,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17937;s:10:\"size_after\";i:17937;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5194;s:10:\"size_after\";i:5194;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:12743;s:10:\"size_after\";i:12743;s:4:\"time\";d:0.02;}}}'),(10573,554,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14020;s:10:\"size_after\";i:14020;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3952;s:10:\"size_after\";i:3952;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10068;s:10:\"size_after\";i:10068;s:4:\"time\";d:0.01;}}}'),(10574,553,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14094;s:10:\"size_after\";i:14094;s:4:\"time\";d:0.04;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4354;s:10:\"size_after\";i:4354;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9740;s:10:\"size_after\";i:9740;s:4:\"time\";d:0.03;}}}'),(10575,552,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19838;s:10:\"size_after\";i:19838;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6153;s:10:\"size_after\";i:6153;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13685;s:10:\"size_after\";i:13685;s:4:\"time\";d:0.02;}}}'),(10576,551,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11855;s:10:\"size_after\";i:11855;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3485;s:10:\"size_after\";i:3485;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8370;s:10:\"size_after\";i:8370;s:4:\"time\";d:0.01;}}}'),(10577,550,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19663;s:10:\"size_after\";i:19663;s:4:\"time\";d:0.07;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5602;s:10:\"size_after\";i:5602;s:4:\"time\";d:0.04;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14061;s:10:\"size_after\";i:14061;s:4:\"time\";d:0.03;}}}'),(10578,549,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15403;s:10:\"size_after\";i:15403;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4368;s:10:\"size_after\";i:4368;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11035;s:10:\"size_after\";i:11035;s:4:\"time\";d:0.01;}}}'),(10579,548,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16660;s:10:\"size_after\";i:16660;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4964;s:10:\"size_after\";i:4964;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11696;s:10:\"size_after\";i:11696;s:4:\"time\";d:0.01;}}}'),(10580,547,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10674;s:10:\"size_after\";i:10674;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3324;s:10:\"size_after\";i:3324;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7350;s:10:\"size_after\";i:7350;s:4:\"time\";d:0.01;}}}'),(10581,546,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:29854;s:10:\"size_after\";i:29854;s:4:\"time\";d:0.04;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8465;s:10:\"size_after\";i:8465;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:21389;s:10:\"size_after\";i:21389;s:4:\"time\";d:0.02;}}}'),(10582,545,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13103;s:10:\"size_after\";i:13103;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4027;s:10:\"size_after\";i:4027;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:9076;s:10:\"size_after\";i:9076;s:4:\"time\";d:0.01;}}}'),(10583,544,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16414;s:10:\"size_after\";i:16414;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4982;s:10:\"size_after\";i:4982;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11432;s:10:\"size_after\";i:11432;s:4:\"time\";d:0.01;}}}'),(10584,543,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:24626;s:10:\"size_after\";i:24626;s:4:\"time\";d:0.04;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:6710;s:10:\"size_after\";i:6710;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17916;s:10:\"size_after\";i:17916;s:4:\"time\";d:0.02;}}}'),(10585,542,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14579;s:10:\"size_after\";i:14579;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4313;s:10:\"size_after\";i:4313;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10266;s:10:\"size_after\";i:10266;s:4:\"time\";d:0.01;}}}'),(10586,541,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:19286;s:10:\"size_after\";i:19286;s:4:\"time\";d:0.08;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5907;s:10:\"size_after\";i:5907;s:4:\"time\";d:0.03;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13379;s:10:\"size_after\";i:13379;s:4:\"time\";d:0.05;}}}'),(10587,540,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20326;s:10:\"size_after\";i:20326;s:4:\"time\";d:0.08;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5798;s:10:\"size_after\";i:5798;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14528;s:10:\"size_after\";i:14528;s:4:\"time\";d:0.07;}}}'),(10588,539,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16312;s:10:\"size_after\";i:16312;s:4:\"time\";d:0.03;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4756;s:10:\"size_after\";i:4756;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11556;s:10:\"size_after\";i:11556;s:4:\"time\";d:0.02;}}}'),(10589,538,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18403;s:10:\"size_after\";i:18403;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5365;s:10:\"size_after\";i:5365;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:13038;s:10:\"size_after\";i:13038;s:4:\"time\";d:0.01;}}}'),(10590,536,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:73794;s:10:\"size_after\";i:73794;s:4:\"time\";d:0.15999999999999998;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5230;s:10:\"size_after\";i:5230;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4880;s:10:\"size_after\";i:4880;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:18219;s:10:\"size_after\";i:18219;s:4:\"time\";d:0.09;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20933;s:10:\"size_after\";i:20933;s:4:\"time\";d:0.02;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:24532;s:10:\"size_after\";i:24532;s:4:\"time\";d:0.02;}}}'),(10591,535,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:121559;s:10:\"size_after\";i:121559;s:4:\"time\";d:0.15;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5823;s:10:\"size_after\";i:5823;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5622;s:10:\"size_after\";i:5622;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:28895;s:10:\"size_after\";i:28895;s:4:\"time\";d:0.04;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:39399;s:10:\"size_after\";i:39399;s:4:\"time\";d:0.07;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:41820;s:10:\"size_after\";i:41820;s:4:\"time\";d:0.02;}}}'),(10592,534,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:68456;s:10:\"size_after\";i:68456;s:4:\"time\";d:0.11;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:4637;s:10:\"size_after\";i:4637;s:4:\"time\";d:0.02;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3543;s:10:\"size_after\";i:3543;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14583;s:10:\"size_after\";i:14583;s:4:\"time\";d:0.01;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:23076;s:10:\"size_after\";i:23076;s:4:\"time\";d:0.03;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22617;s:10:\"size_after\";i:22617;s:4:\"time\";d:0.03;}}}'),(10593,533,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:235328;s:10:\"size_after\";i:235328;s:4:\"time\";d:0.41000000000000003;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:4:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:11714;s:10:\"size_after\";i:11714;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:24476;s:10:\"size_after\";i:24476;s:4:\"time\";d:0.04;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:122009;s:10:\"size_after\";i:122009;s:4:\"time\";d:0.26;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:77129;s:10:\"size_after\";i:77129;s:4:\"time\";d:0.1;}}}'),(10594,532,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:45891;s:10:\"size_after\";i:45891;s:4:\"time\";d:0.11000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2627;s:10:\"size_after\";i:2627;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3181;s:10:\"size_after\";i:3181;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:10812;s:10:\"size_after\";i:10812;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:17151;s:10:\"size_after\";i:17151;s:4:\"time\";d:0.03;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:12120;s:10:\"size_after\";i:12120;s:4:\"time\";d:0.04;}}}'),(10595,531,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:52166;s:10:\"size_after\";i:52166;s:4:\"time\";d:0.09;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3832;s:10:\"size_after\";i:3832;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3274;s:10:\"size_after\";i:3274;s:4:\"time\";d:0.01;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:12591;s:10:\"size_after\";i:12591;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15884;s:10:\"size_after\";i:15884;s:4:\"time\";d:0.02;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:16585;s:10:\"size_after\";i:16585;s:4:\"time\";d:0.03;}}}'),(10596,529,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5058;s:10:\"size_after\";i:5058;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:5058;s:10:\"size_after\";i:5058;s:4:\"time\";d:0.01;}}}'),(10597,528,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:62808;s:10:\"size_after\";i:62808;s:4:\"time\";d:0.11000000000000001;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2905;s:10:\"size_after\";i:2905;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:3422;s:10:\"size_after\";i:3422;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:15804;s:10:\"size_after\";i:15804;s:4:\"time\";d:0.02;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:26491;s:10:\"size_after\";i:26491;s:4:\"time\";d:0.02;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14186;s:10:\"size_after\";i:14186;s:4:\"time\";d:0.04;}}}'),(10598,63,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:292976;s:10:\"size_after\";i:292976;s:4:\"time\";d:0.19;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:5:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:8502;s:10:\"size_after\";i:8502;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:20394;s:10:\"size_after\";i:20394;s:4:\"time\";d:0.02;}s:12:\"medium_large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:89925;s:10:\"size_after\";i:89925;s:4:\"time\";d:0.05;}s:5:\"large\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:117759;s:10:\"size_after\";i:117759;s:4:\"time\";d:0.05;}s:7:\"feature\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:56396;s:10:\"size_after\";i:56396;s:4:\"time\";d:0.06;}}}'),(10599,55,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.046490004649000466;s:5:\"bytes\";i:1;s:11:\"size_before\";i:2151;s:10:\"size_after\";i:2150;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.05;s:5:\"bytes\";i:1;s:11:\"size_before\";i:2151;s:10:\"size_after\";i:2150;s:4:\"time\";d:0.01;}}}'),(10600,54,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1624;s:10:\"size_after\";i:1624;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:1624;s:10:\"size_after\";i:1624;s:4:\"time\";d:0.01;}}}'),(10601,53,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.8069522036002483;s:5:\"bytes\";i:13;s:11:\"size_before\";i:1611;s:10:\"size_after\";i:1598;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.81;s:5:\"bytes\";i:13;s:11:\"size_before\";i:1611;s:10:\"size_after\";i:1598;s:4:\"time\";d:0.01;}}}'),(10602,52,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2149;s:10:\"size_after\";i:2149;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:2149;s:10:\"size_after\";i:2149;s:4:\"time\";d:0.02;}}}'),(10603,51,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";d:0.1926782273603083;s:5:\"bytes\";i:4;s:11:\"size_before\";i:2076;s:10:\"size_after\";i:2072;s:4:\"time\";d:0.01;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:1:{s:4:\"full\";O:8:\"stdClass\":5:{s:7:\"percent\";d:0.19;s:5:\"bytes\";i:4;s:11:\"size_before\";i:2076;s:10:\"size_after\";i:2072;s:4:\"time\";d:0.01;}}}'),(10604,50,'wp-smpro-smush-data','a:2:{s:5:\"stats\";a:8:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:22367;s:10:\"size_after\";i:22367;s:4:\"time\";d:0.02;s:11:\"api_version\";s:3:\"1.0\";s:5:\"lossy\";b:0;s:9:\"keep_exif\";i:0;}s:5:\"sizes\";a:2:{s:9:\"thumbnail\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:7387;s:10:\"size_after\";i:7387;s:4:\"time\";d:0.01;}s:6:\"medium\";O:8:\"stdClass\":5:{s:7:\"percent\";i:0;s:5:\"bytes\";i:0;s:11:\"size_before\";i:14980;s:10:\"size_after\";i:14980;s:4:\"time\";d:0.01;}}}'),(10669,1565,'_dont_combine','a:1:{i:0;s:23:\"atomic-blocks-style-css\";}'),(10670,1565,'_dont_enqueue','a:0:{}'),(10671,1565,'_defer','a:0:{}'),(10672,1565,'_inline','a:0:{}'),(10673,1565,'_handle_dependencies','a:1:{s:23:\"atomic-blocks-style-css\";a:0:{}}'),(10674,1565,'_handle_original_sizes','a:1:{s:23:\"atomic-blocks-style-css\";s:4:\"41.7\";}'),(10675,1565,'_handle_compressed_sizes','a:1:{s:23:\"atomic-blocks-style-css\";s:4:\"41.7\";}'),(10676,1565,'_hash','035f6ed067001c375351e516ab638b93'),(10677,1565,'_file_id','1565'),(10678,1565,'_url','http://localhost:8082/wp-content/uploads/hummingbird-assets/035f6ed067001c375351e516ab638b93.css'),(10679,1565,'_path','/var/www/dfr/translucent/wp-content/uploads/hummingbird-assets/035f6ed067001c375351e516ab638b93.css'),(10680,1565,'_expires','1581813560'),(10812,1572,'_handle_dependencies','a:1:{s:11:\"wpgmza_data\";a:0:{}}'),(10813,1572,'_handle_original_sizes','a:1:{s:11:\"wpgmza_data\";s:3:\"0.1\";}'),(10814,1572,'_handle_compressed_sizes','a:1:{s:11:\"wpgmza_data\";s:3:\"0.1\";}'),(10815,1572,'_hash','bdbeebd3d7a7d1184700d655dcd3a8fa'),(10816,1572,'_file_id','1572'),(10817,1572,'_url','http://localhost:8082/wp-content/uploads/hummingbird-assets/bdbeebd3d7a7d1184700d655dcd3a8fa.js'),(10818,1572,'_path','/var/www/dfr/translucent/wp-content/uploads/hummingbird-assets/bdbeebd3d7a7d1184700d655dcd3a8fa.js'),(10819,1572,'_expires','1581813564'),(10978,1581,'_handles','a:1:{i:0;s:16:\"google-recaptcha\";}'),(10979,1581,'_handle_urls','a:1:{s:16:\"google-recaptcha\";s:87:\"https://www.google.com/recaptcha/api.js?render=6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s\";}'),(10980,1581,'_handle_versions','a:1:{s:16:\"google-recaptcha\";s:0:\"\";}'),(10981,1581,'_extra','a:1:{s:5:\"group\";i:1;}'),(10982,1581,'_args',NULL),(10983,1581,'_type','scripts'),(10984,1581,'_dont_minify','a:1:{i:0;s:16:\"google-recaptcha\";}'),(10985,1581,'_dont_combine','a:1:{i:0;s:16:\"google-recaptcha\";}'),(10986,1581,'_dont_enqueue','a:0:{}'),(10987,1581,'_defer','a:0:{}'),(10988,1581,'_inline','a:0:{}'),(10989,1581,'_handle_dependencies','a:1:{s:16:\"google-recaptcha\";a:0:{}}'),(10990,1581,'_handle_original_sizes','a:1:{s:16:\"google-recaptcha\";s:3:\"0.8\";}'),(10991,1581,'_handle_compressed_sizes','a:1:{s:16:\"google-recaptcha\";s:3:\"0.8\";}'),(10992,1581,'_hash','ccd13b6900312cf5827070d55ca1e015'),(10993,1581,'_file_id','1581'),(10994,1581,'_url','http://localhost:8082/wp-content/uploads/hummingbird-assets/ccd13b6900312cf5827070d55ca1e015.js'),(10995,1581,'_path','/var/www/dfr/translucent/wp-content/uploads/hummingbird-assets/ccd13b6900312cf5827070d55ca1e015.js'),(10996,1581,'_expires','1581813571'),(11293,1597,'_handle_dependencies','a:1:{s:23:\"atomic-blocks-style-css\";a:0:{}}'),(11294,1597,'_handle_original_sizes','a:1:{s:23:\"atomic-blocks-style-css\";s:4:\"41.7\";}'),(11295,1597,'_handle_compressed_sizes','a:1:{s:23:\"atomic-blocks-style-css\";s:4:\"41.7\";}'),(11296,1597,'_hash','035f6ed067001c375351e516ab638b93'),(11297,1597,'_file_id','1597'),(11298,1597,'_url','http://localhost:8082/wp-content/uploads/hummingbird-assets/035f6ed067001c375351e516ab638b93.css'),(11299,1597,'_path','/var/www/dfr/translucent/wp-content/uploads/hummingbird-assets/035f6ed067001c375351e516ab638b93.css'),(11300,1597,'_expires','1581813581'),(11534,1610,'_type','scripts'),(11535,1610,'_dont_minify','a:1:{i:0;s:24:\"atomic-blocks-dismiss-js\";}'),(11536,1610,'_dont_combine','a:1:{i:0;s:24:\"atomic-blocks-dismiss-js\";}'),(11537,1610,'_dont_enqueue','a:0:{}'),(11538,1610,'_defer','a:0:{}'),(11539,1610,'_inline','a:0:{}'),(11540,1610,'_handle_dependencies','a:1:{s:24:\"atomic-blocks-dismiss-js\";a:0:{}}'),(11541,1610,'_handle_original_sizes','a:1:{s:24:\"atomic-blocks-dismiss-js\";s:3:\"0.7\";}'),(11542,1610,'_handle_compressed_sizes','a:1:{s:24:\"atomic-blocks-dismiss-js\";s:3:\"0.7\";}'),(11543,1610,'_hash','2fd9da85a7823716bd44e82a4aa22c60'),(11544,1610,'_file_id','1610'),(11545,1610,'_url','http://localhost:8082/wp-content/uploads/hummingbird-assets/2fd9da85a7823716bd44e82a4aa22c60.js'),(11546,1610,'_path','/var/www/dfr/translucent/wp-content/uploads/hummingbird-assets/2fd9da85a7823716bd44e82a4aa22c60.js'),(11547,1610,'_expires','1581813590'),(11720,1526,'_yoast_wpseo_focuskeywords','[]'),(11721,1526,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(12046,1622,'_wp_attached_file','2020/01/blogimg.jpg'),(12047,1622,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:433;s:4:\"file\";s:19:\"2020/01/blogimg.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"blogimg-300x87.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:87;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"blogimg-1024x296.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"blogimg-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:19:\"blogimg-768x222.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:19:\"blogimg-500x433.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"ab-block-post-grid-landscape\";a:4:{s:4:\"file\";s:19:\"blogimg-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:25:\"ab-block-post-grid-square\";a:4:{s:4:\"file\";s:19:\"blogimg-600x433.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:433;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:{}}}'),(12048,1623,'_wp_attached_file','2020/01/t-translucent.png'),(12049,1623,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:189;s:6:\"height\";i:113;s:4:\"file\";s:25:\"2020/01/t-translucent.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"t-translucent-150x113.png\";s:5:\"width\";i:150;s:6:\"height\";i:113;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:{}}}'),(20551,1628,'_edit_lock','1662370445:21'),(20553,1628,'_edit_last','9'),(20554,1628,'_yoast_wpseo_content_score','90'),(20555,1628,'_yoast_wpseo_focuskeywords','[]'),(20556,1628,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(20557,1628,'_oembed_eea3c1b3f7559c3e98c99b5e1ca74a93',''),(20558,1628,'_oembed_time_eea3c1b3f7559c3e98c99b5e1ca74a93','1606428693'),(20559,1628,'_oembed_2e9addc72e01c398f9897f679c981bf3',''),(20560,1628,'_oembed_time_2e9addc72e01c398f9897f679c981bf3','1606428693'),(20561,1634,'_wp_attached_file','2020/04/ScreenHunter_40-Apr.-05-15.38.jpg'),(20562,1634,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:841;s:6:\"height\";i:410;s:4:\"file\";s:41:\"2020/04/ScreenHunter_40-Apr.-05-15.38.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"ScreenHunter_40-Apr.-05-15.38-300x146.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"ScreenHunter_40-Apr.-05-15.38-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:\"ScreenHunter_40-Apr.-05-15.38-768x374.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:374;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:41:\"ScreenHunter_40-Apr.-05-15.38-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;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:{}}}'),(20563,1634,'_wp_attachment_image_alt','COVID-19 - Total Cases Growth Over Time'),(20576,1628,'_thumbnail_id','1634'),(20577,1628,'_yoast_wpseo_focuskw','Total Cases Growth Over Time'),(20578,1628,'_yoast_wpseo_metadesc','COVID-19- Total cases growth over time. Data is ordered and re-order live, by countries and total cases as time passes.'),(20579,1628,'_yoast_wpseo_linkdex','26'),(20827,1636,'_edit_lock','1606425306:9'),(20829,1636,'_edit_last','9'),(20831,1636,'_yoast_wpseo_focuskeywords','[]'),(20832,1636,'_yoast_wpseo_keywordsynonyms','[\"errexit\"]'),(23896,1656,'_wp_attached_file','2020/05/ScreenHunter_01-Apr.-08-11.20.jpg'),(23897,1656,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:421;s:6:\"height\";i:518;s:4:\"file\";s:41:\"2020/05/ScreenHunter_01-Apr.-08-11.20.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"ScreenHunter_01-Apr.-08-11.20-244x300.jpg\";s:5:\"width\";i:244;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"ScreenHunter_01-Apr.-08-11.20-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:41:\"ScreenHunter_01-Apr.-08-11.20-421x500.jpg\";s:5:\"width\";i:421;s:6:\"height\";i:500;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:{}}}'),(23898,1657,'_wp_attached_file','2020/05/ScreenHunter_01-May.-07-21.44.jpg'),(23899,1657,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:719;s:6:\"height\";i:214;s:4:\"file\";s:41:\"2020/05/ScreenHunter_01-May.-07-21.44.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"ScreenHunter_01-May.-07-21.44-300x89.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"ScreenHunter_01-May.-07-21.44-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:41:\"ScreenHunter_01-May.-07-21.44-500x214.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:214;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:{}}}'),(23900,1636,'_thumbnail_id','1657'),(23937,1636,'_yoast_wpseo_focuskw','Unofficial Bash Strict Mode'),(23938,1636,'_yoast_wpseo_metadesc','Unofficial Bash Strict Mode - Improve your code behaviour by setting the errexit flag'),(23939,1636,'_yoast_wpseo_linkdex','72'),(24503,1681,'_edit_lock','1589376612:4'),(24505,1681,'_edit_last','4'),(24506,1681,'_yoast_wpseo_content_score','60'),(24507,1681,'_yoast_wpseo_focuskeywords','[]'),(24508,1681,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(24544,1636,'_yoast_wpseo_content_score','60'),(25814,1692,'_edit_lock','1607646159:9'),(25816,1692,'_edit_last','9'),(25817,1692,'_yoast_wpseo_content_score','90'),(25818,1692,'_yoast_wpseo_focuskeywords','[]'),(25819,1692,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(26520,1699,'_edit_lock','1630428542:4'),(26522,1699,'_edit_last','4'),(26523,1699,'_yoast_wpseo_content_score','30'),(26524,1699,'_yoast_wpseo_focuskeywords','[{\"keyword\":\" data-driven future\",\"score\":\"bad\"}]'),(26525,1699,'_yoast_wpseo_keywordsynonyms','[\"How can I be smart about tech and data?\",\"smart data-driven decisions\"]'),(26564,1699,'_thumbnail_id','1762'),(26633,1710,'_wp_attached_file','2020/05/0001_translucent_home_v5_2020_mockup_ML2-1.png'),(26634,1710,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:54:\"2020/05/0001_translucent_home_v5_2020_mockup_ML2-1.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"0001_translucent_home_v5_2020_mockup_ML2-1-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:55:\"0001_translucent_home_v5_2020_mockup_ML2-1-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:54:\"0001_translucent_home_v5_2020_mockup_ML2-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:54:\"0001_translucent_home_v5_2020_mockup_ML2-1-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:55:\"0001_translucent_home_v5_2020_mockup_ML2-1-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:54:\"0001_translucent_home_v5_2020_mockup_ML2-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(26683,1711,'_wp_attached_file','2020/05/0001_translucent_home_v5_2020_mockup_ML2_v2.png'),(26684,1711,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1581;s:6:\"height\";i:697;s:4:\"file\";s:55:\"2020/05/0001_translucent_home_v5_2020_mockup_ML2_v2.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"0001_translucent_home_v5_2020_mockup_ML2_v2-300x132.png\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"0001_translucent_home_v5_2020_mockup_ML2_v2-1024x451.png\";s:5:\"width\";i:1024;s:6:\"height\";i:451;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"0001_translucent_home_v5_2020_mockup_ML2_v2-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:55:\"0001_translucent_home_v5_2020_mockup_ML2_v2-768x339.png\";s:5:\"width\";i:768;s:6:\"height\";i:339;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:56:\"0001_translucent_home_v5_2020_mockup_ML2_v2-1536x677.png\";s:5:\"width\";i:1536;s:6:\"height\";i:677;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:55:\"0001_translucent_home_v5_2020_mockup_ML2_v2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(26709,1713,'_wp_attached_file','2020/05/0001_translucent_home_v5_2020_mockup_ML2_v3.png'),(26710,1713,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1807;s:6:\"height\";i:692;s:4:\"file\";s:55:\"2020/05/0001_translucent_home_v5_2020_mockup_ML2_v3.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"0001_translucent_home_v5_2020_mockup_ML2_v3-300x115.png\";s:5:\"width\";i:300;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"0001_translucent_home_v5_2020_mockup_ML2_v3-1024x392.png\";s:5:\"width\";i:1024;s:6:\"height\";i:392;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"0001_translucent_home_v5_2020_mockup_ML2_v3-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:55:\"0001_translucent_home_v5_2020_mockup_ML2_v3-768x294.png\";s:5:\"width\";i:768;s:6:\"height\";i:294;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:56:\"0001_translucent_home_v5_2020_mockup_ML2_v3-1536x588.png\";s:5:\"width\";i:1536;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:55:\"0001_translucent_home_v5_2020_mockup_ML2_v3-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(26711,1714,'_wp_attached_file','2020/05/0001_translucent_home_v5_2020_mockup_ML2_v4.png'),(26712,1714,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:432;s:6:\"height\";i:345;s:4:\"file\";s:55:\"2020/05/0001_translucent_home_v5_2020_mockup_ML2_v4.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"0001_translucent_home_v5_2020_mockup_ML2_v4-300x240.png\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"0001_translucent_home_v5_2020_mockup_ML2_v4-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:{}}}'),(26713,1715,'_wp_attached_file','2020/05/0001_translucent_home_v5_2020_mockup_ML2_v5.png'),(26714,1715,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1800;s:6:\"height\";i:408;s:4:\"file\";s:55:\"2020/05/0001_translucent_home_v5_2020_mockup_ML2_v5.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"0001_translucent_home_v5_2020_mockup_ML2_v5-300x68.png\";s:5:\"width\";i:300;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"0001_translucent_home_v5_2020_mockup_ML2_v5-1024x232.png\";s:5:\"width\";i:1024;s:6:\"height\";i:232;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"0001_translucent_home_v5_2020_mockup_ML2_v5-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:55:\"0001_translucent_home_v5_2020_mockup_ML2_v5-768x174.png\";s:5:\"width\";i:768;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:56:\"0001_translucent_home_v5_2020_mockup_ML2_v5-1536x348.png\";s:5:\"width\";i:1536;s:6:\"height\";i:348;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:55:\"0001_translucent_home_v5_2020_mockup_ML2_v5-500x408.png\";s:5:\"width\";i:500;s:6:\"height\";i:408;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:{}}}'),(26715,1716,'_wp_attached_file','2020/05/0001_translucent_home_v5_2020_mockup_ML2_v6.png'),(26716,1716,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:379;s:6:\"height\";i:179;s:4:\"file\";s:55:\"2020/05/0001_translucent_home_v5_2020_mockup_ML2_v6.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"0001_translucent_home_v5_2020_mockup_ML2_v6-300x142.png\";s:5:\"width\";i:300;s:6:\"height\";i:142;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"0001_translucent_home_v5_2020_mockup_ML2_v6-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:{}}}'),(26717,1746,'_wp_attached_file','2020/05/0001_translucent_home_v5_2020_mockup_ML2_v7.png'),(26718,1746,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:353;s:6:\"height\";i:280;s:4:\"file\";s:55:\"2020/05/0001_translucent_home_v5_2020_mockup_ML2_v7.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"0001_translucent_home_v5_2020_mockup_ML2_v7-300x238.png\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"0001_translucent_home_v5_2020_mockup_ML2_v7-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:{}}}'),(26719,1751,'_wp_attached_file','2020/05/0001_translucent_home_v5_2020_mockup_ML2_v8.png'),(26720,1751,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1903;s:6:\"height\";i:799;s:4:\"file\";s:55:\"2020/05/0001_translucent_home_v5_2020_mockup_ML2_v8.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"0001_translucent_home_v5_2020_mockup_ML2_v8-300x126.png\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"0001_translucent_home_v5_2020_mockup_ML2_v8-1024x430.png\";s:5:\"width\";i:1024;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"0001_translucent_home_v5_2020_mockup_ML2_v8-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:55:\"0001_translucent_home_v5_2020_mockup_ML2_v8-768x322.png\";s:5:\"width\";i:768;s:6:\"height\";i:322;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:56:\"0001_translucent_home_v5_2020_mockup_ML2_v8-1536x645.png\";s:5:\"width\";i:1536;s:6:\"height\";i:645;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:55:\"0001_translucent_home_v5_2020_mockup_ML2_v8-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(26721,2,'_yoast_wpseo_focuskeywords','[]'),(26722,2,'_yoast_wpseo_keywordsynonyms','[\"App and DevOps Consulting\"]'),(27012,1762,'_wp_attached_file','2020/05/0001_translucent_home_v5_2020_mockup_ML2_v9.png'),(27013,1762,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1276;s:6:\"height\";i:408;s:4:\"file\";s:55:\"2020/05/0001_translucent_home_v5_2020_mockup_ML2_v9.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"0001_translucent_home_v5_2020_mockup_ML2_v9-300x96.png\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:56:\"0001_translucent_home_v5_2020_mockup_ML2_v9-1024x327.png\";s:5:\"width\";i:1024;s:6:\"height\";i:327;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"0001_translucent_home_v5_2020_mockup_ML2_v9-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:55:\"0001_translucent_home_v5_2020_mockup_ML2_v9-768x246.png\";s:5:\"width\";i:768;s:6:\"height\";i:246;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:55:\"0001_translucent_home_v5_2020_mockup_ML2_v9-500x408.png\";s:5:\"width\";i:500;s:6:\"height\";i:408;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:{}}}'),(27051,1699,'_yoast_wpseo_opengraph-image','http://localhost:8082/wp-content/uploads/2020/05/0001_translucent_home_v5_2020_mockup_ML2_v9.png'),(27052,1699,'_yoast_wpseo_opengraph-image-id','1762'),(27053,1699,'_yoast_wpseo_twitter-image','http://localhost:8082/wp-content/uploads/2020/05/0001_translucent_home_v5_2020_mockup_ML2_v9.png'),(27054,1699,'_yoast_wpseo_twitter-image-id','1762'),(27071,1699,'_yoast_wpseo_metadesc','Why do you need to be smart about your data? Streamline your business processes to reduce costs, eliminate waste and make data-informed decisions'),(27091,1699,'_yoast_wpseo_focuskw','smart about data'),(27092,1699,'_yoast_wpseo_linkdex','68'),(27121,1699,'_yoast_wpseo_title','What companies need now for a data-driven future %%page%%'),(27156,1699,'_yoast_wpseo_is_cornerstone','1'),(27205,1699,'_wp_old_slug','survival-of-the-smartest-what-companies-need-now-for-a-data-driven-future'),(27356,1699,'_yoast_wpseo_primary_category','875'),(27617,44,'_yoast_wpseo_focuskeywords','[]'),(27618,44,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(27819,1774,'_facebook_shares','0'),(27820,1774,'_pinterest_shares','0'),(27821,1774,'_twitter_shares','0'),(27822,1774,'_linkedin_shares','0'),(27823,1774,'_total_shares','0'),(27867,1781,'_facebook_shares','0'),(27868,1781,'_pinterest_shares','0'),(27869,1781,'_twitter_shares','0'),(27870,1781,'_linkedin_shares','0'),(27871,1781,'_total_shares','0'),(27873,1782,'_facebook_shares','0'),(27874,1782,'_pinterest_shares','0'),(27875,1782,'_twitter_shares','0'),(27876,1782,'_linkedin_shares','0'),(27877,1782,'_total_shares','0'),(27879,1783,'_facebook_shares','0'),(27880,1783,'_pinterest_shares','0'),(27881,1783,'_twitter_shares','0'),(27882,1783,'_linkedin_shares','0'),(27883,1783,'_total_shares','0'),(28148,57,'_yoast_wpseo_focuskeywords','[]'),(28149,57,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(28244,16,'_yoast_wpseo_focuskeywords','[]'),(28245,16,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(29264,1793,'_facebook_shares','0'),(29265,1793,'_pinterest_shares','0'),(29266,1793,'_twitter_shares','0'),(29267,1793,'_linkedin_shares','0'),(29268,1793,'_total_shares','0'),(29270,695,'_facebook_shares','0'),(29271,695,'_pinterest_shares','0'),(29272,695,'_twitter_shares','0'),(29273,695,'_linkedin_shares','0'),(29274,695,'_total_shares','0'),(29276,713,'_facebook_shares','0'),(29277,713,'_pinterest_shares','0'),(29278,713,'_twitter_shares','0'),(29279,713,'_linkedin_shares','0'),(29280,713,'_total_shares','0'),(29282,696,'_facebook_shares','0'),(29283,696,'_pinterest_shares','0'),(29284,696,'_twitter_shares','0'),(29285,696,'_linkedin_shares','0'),(29286,696,'_total_shares','0'),(29288,697,'_facebook_shares','0'),(29289,697,'_pinterest_shares','0'),(29290,697,'_twitter_shares','0'),(29291,697,'_linkedin_shares','0'),(29292,697,'_total_shares','0'),(29294,698,'_facebook_shares','0'),(29295,698,'_pinterest_shares','0'),(29296,698,'_twitter_shares','0'),(29297,698,'_linkedin_shares','0'),(29298,698,'_total_shares','0'),(29300,699,'_facebook_shares','0'),(29301,699,'_pinterest_shares','0'),(29302,699,'_twitter_shares','0'),(29303,699,'_linkedin_shares','0'),(29304,699,'_total_shares','0'),(29306,700,'_facebook_shares','0'),(29307,700,'_pinterest_shares','0'),(29308,700,'_twitter_shares','0'),(29309,700,'_linkedin_shares','0'),(29310,700,'_total_shares','0'),(29312,701,'_facebook_shares','0'),(29313,701,'_pinterest_shares','0'),(29314,701,'_twitter_shares','0'),(29315,701,'_linkedin_shares','0'),(29316,701,'_total_shares','0'),(29318,705,'_facebook_shares','0'),(29319,705,'_pinterest_shares','0'),(29320,705,'_twitter_shares','0'),(29321,705,'_linkedin_shares','0'),(29322,705,'_total_shares','0'),(29324,706,'_facebook_shares','0'),(29325,706,'_pinterest_shares','0'),(29326,706,'_twitter_shares','0'),(29327,706,'_linkedin_shares','0'),(29328,706,'_total_shares','0'),(29330,707,'_facebook_shares','0'),(29331,707,'_pinterest_shares','0'),(29332,707,'_twitter_shares','0'),(29333,707,'_linkedin_shares','0'),(29334,707,'_total_shares','0'),(29342,693,'_facebook_shares','0'),(29344,693,'_twitter_shares','0'),(29345,693,'_linkedin_shares','0'),(29348,14,'_yoast_wpseo_focuskeywords','[]'),(29349,14,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(29350,14,'top_title','Cloud Native Application Development with Microservices'),(29351,14,'_top_title','field_5edfac92f4226'),(29446,44,'top_title','Digital Transformation'),(29447,44,'_top_title','field_5edfac92f4226'),(29538,16,'top_title','Machine Learningcac'),(29539,16,'_top_title','field_5edfac92f4226'),(29634,18,'_yoast_wpseo_focuskeywords','[]'),(29635,18,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(29636,18,'top_title','Cloud Native DevOps'),(29637,18,'_top_title','field_5edfac92f4226'),(38866,1822,'_edit_lock','1652418679:17'),(38868,1822,'_edit_last','17'),(38875,1822,'_yoast_wpseo_focuskeywords','[]'),(38876,1822,'_yoast_wpseo_keywordsynonyms','[\"Modern Applications Supported by Kubernetes\"]'),(38961,1822,'_wp_page_template','tekstack-ai.php'),(39150,1822,'background-image','1865'),(39151,1822,'_background-image','field_5f49717494f58'),(39152,1822,'about','TEKStack AI'),(39153,1822,'_about','field_5f49717495002'),(39199,1822,'1home',''),(39200,1822,'_1home','field_5c48ade7a3abb'),(39201,1822,'1about',''),(39202,1822,'_1about','field_5c488c0c69ce8'),(39203,1822,'1text',''),(39204,1822,'_1text','field_5c488c3969ce9'),(39205,1822,'2home',''),(39206,1822,'_2home','field_5c48adffa3abc'),(39207,1822,'2about',''),(39208,1822,'_2about','field_5c48adcda3aba'),(39209,1822,'2text',''),(39210,1822,'_2text','field_5c488c8d69ceb'),(39211,1822,'2list',''),(39212,1822,'_2list','field_5c488cb869cec'),(39213,1822,'3home',''),(39214,1822,'_3home','field_5c48ae0ca3abd'),(39215,1822,'3about',''),(39216,1822,'_3about','field_5c488c7469cea'),(39217,1822,'3list',''),(39218,1822,'_3list','field_5c488cf969cee'),(39923,1872,'_wp_attached_file','2020/08/0001_translucent_home_v5_2020_mockup_ML2_v3-copy.jpg'),(39924,1872,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1027;s:6:\"height\";i:633;s:4:\"file\";s:60:\"2020/08/0001_translucent_home_v5_2020_mockup_ML2_v3-copy.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"0001_translucent_home_v5_2020_mockup_ML2_v3-copy-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:61:\"0001_translucent_home_v5_2020_mockup_ML2_v3-copy-1024x631.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:631;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"0001_translucent_home_v5_2020_mockup_ML2_v3-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:60:\"0001_translucent_home_v5_2020_mockup_ML2_v3-copy-768x473.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:473;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:60:\"0001_translucent_home_v5_2020_mockup_ML2_v3-copy-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(39955,1873,'_wp_attached_file','2020/08/translucent_services_brand-08.png'),(39956,1873,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2143;s:6:\"height\";i:2033;s:4:\"file\";s:41:\"2020/08/translucent_services_brand-08.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"translucent_services_brand-08-300x285.png\";s:5:\"width\";i:300;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"translucent_services_brand-08-1024x971.png\";s:5:\"width\";i:1024;s:6:\"height\";i:971;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"translucent_services_brand-08-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:41:\"translucent_services_brand-08-768x729.png\";s:5:\"width\";i:768;s:6:\"height\";i:729;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"translucent_services_brand-08-1536x1457.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1457;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:43:\"translucent_services_brand-08-2048x1943.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1943;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:41:\"translucent_services_brand-08-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(39961,1877,'_wp_attached_file','2020/08/translucent_services_brand-09.png'),(39962,1877,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2143;s:6:\"height\";i:2033;s:4:\"file\";s:41:\"2020/08/translucent_services_brand-09.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"translucent_services_brand-09-300x285.png\";s:5:\"width\";i:300;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"translucent_services_brand-09-1024x971.png\";s:5:\"width\";i:1024;s:6:\"height\";i:971;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"translucent_services_brand-09-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:41:\"translucent_services_brand-09-768x729.png\";s:5:\"width\";i:768;s:6:\"height\";i:729;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"translucent_services_brand-09-1536x1457.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1457;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:43:\"translucent_services_brand-09-2048x1943.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1943;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:41:\"translucent_services_brand-09-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(39963,1878,'_wp_attached_file','2020/08/translucent_services_brand-07.png'),(39964,1878,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2143;s:6:\"height\";i:2033;s:4:\"file\";s:41:\"2020/08/translucent_services_brand-07.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"translucent_services_brand-07-300x285.png\";s:5:\"width\";i:300;s:6:\"height\";i:285;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"translucent_services_brand-07-1024x971.png\";s:5:\"width\";i:1024;s:6:\"height\";i:971;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"translucent_services_brand-07-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:41:\"translucent_services_brand-07-768x729.png\";s:5:\"width\";i:768;s:6:\"height\";i:729;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"translucent_services_brand-07-1536x1457.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1457;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:43:\"translucent_services_brand-07-2048x1943.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1943;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:41:\"translucent_services_brand-07-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(39965,1879,'_wp_attached_file','2020/08/ml-small.jpg'),(39966,1879,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:460;s:6:\"height\";i:368;s:4:\"file\";s:20:\"2020/08/ml-small.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"ml-small-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"ml-small-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:{}}}'),(39967,1880,'_wp_attached_file','2020/08/smart-data-lake.png'),(39968,1880,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:440;s:4:\"file\";s:27:\"2020/08/smart-data-lake.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"smart-data-lake-300x220.png\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"smart-data-lake-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:27:\"smart-data-lake-500x440.png\";s:5:\"width\";i:500;s:6:\"height\";i:440;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:{}}}'),(39983,1882,'_wp_attached_file','2020/08/tekstack_logo_AI_small.png'),(39984,1882,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:219;s:6:\"height\";i:25;s:4:\"file\";s:34:\"2020/08/tekstack_logo_AI_small.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"tekstack_logo_AI_small-150x25.png\";s:5:\"width\";i:150;s:6:\"height\";i:25;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:{}}}'),(40279,1883,'_menu_item_type','post_type'),(40280,1883,'_menu_item_menu_item_parent','0'),(40281,1883,'_menu_item_object_id','1822'),(40282,1883,'_menu_item_object','page'),(40283,1883,'_menu_item_target',''),(40284,1883,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(40285,1883,'_menu_item_xfn',''),(40286,1883,'_menu_item_url',''),(40572,1822,'_yoast_wpseo_focuskw','cloud native applications'),(40573,1822,'_yoast_wpseo_title','TEKStack: Kubernetes Stack for Cloud Native Applications | Translucent'),(40574,1822,'_yoast_wpseo_metadesc','TEKStack is our production-ready, data-driven platform based on open source code, specializing in cloud native application development.'),(40575,1822,'_yoast_wpseo_linkdex','46'),(41520,1915,'sg_popup_scripts','a:2:{s:2:\"js\";a:0:{}s:3:\"css\";s:0:\"\";}'),(41521,1915,'sg_popup_events_preview','a:0:{}'),(41522,1915,'sg_popup_options_preview','a:51:{s:12:\"sgpb-post-id\";s:4:\"1915\";s:14:\"sgpb-image-url\";s:75:\"http://localhost:8082/wp-content/uploads/2020/09/HIMSS-EU-SoMe-Banner-3.jpg\";s:24:\"sgpb-target[0][0][param]\";s:9:\"page_type\";s:27:\"sgpb-target[0][0][operator]\";s:2:\"==\";s:26:\"sgpb-target[0][0][value][]\";s:12:\"is_home_page\";s:9:\"sgpb-type\";s:5:\"image\";s:15:\"sgpb-is-preview\";s:1:\"0\";s:14:\"sgpb-is-active\";s:0:\"\";s:24:\"sgpb-events[0][0][param]\";s:4:\"load\";s:24:\"sgpb-events[0][0][value]\";s:0:\"\";s:47:\"sgpb-behavior-after-special-events[0][0][param]\";s:12:\"select_event\";s:18:\"sgpb-popup-z-index\";s:4:\"9999\";s:17:\"sgpb-popup-themes\";s:12:\"sgpb-theme-6\";s:25:\"sgpb-overlay-custom-class\";s:18:\"sgpb-popup-overlay\";s:18:\"sgpb-overlay-color\";s:0:\"\";s:20:\"sgpb-overlay-opacity\";s:3:\"0.8\";s:25:\"sgpb-content-custom-class\";s:16:\"sg-popup-content\";s:12:\"sgpb-esc-key\";s:2:\"on\";s:24:\"sgpb-enable-close-button\";s:2:\"on\";s:23:\"sgpb-close-button-delay\";s:1:\"0\";s:26:\"sgpb-close-button-position\";s:8:\"topRight\";s:24:\"sgpb-button-position-top\";s:3:\"-18\";s:26:\"sgpb-button-position-right\";s:3:\"-18\";s:27:\"sgpb-button-position-bottom\";s:1:\"0\";s:25:\"sgpb-button-position-left\";s:0:\"\";s:17:\"sgpb-button-image\";s:0:\"\";s:23:\"sgpb-button-image-width\";s:2:\"30\";s:24:\"sgpb-button-image-height\";s:2:\"30\";s:17:\"sgpb-border-color\";s:7:\"#ffffff\";s:18:\"sgpb-border-radius\";s:2:\"50\";s:23:\"sgpb-border-radius-type\";s:1:\"%\";s:16:\"sgpb-button-text\";s:5:\"Close\";s:18:\"sgpb-overlay-click\";s:2:\"on\";s:25:\"sgpb-popup-dimension-mode\";s:14:\"responsiveMode\";s:33:\"sgpb-responsive-dimension-measure\";s:4:\"auto\";s:10:\"sgpb-width\";s:5:\"640px\";s:11:\"sgpb-height\";s:5:\"480px\";s:14:\"sgpb-max-width\";s:3:\"80%\";s:15:\"sgpb-max-height\";s:3:\"80%\";s:14:\"sgpb-min-width\";s:3:\"120\";s:15:\"sgpb-min-height\";s:0:\"\";s:26:\"sgpb-open-animation-effect\";s:9:\"No effect\";s:27:\"sgpb-close-animation-effect\";s:9:\"No effect\";s:29:\"sgpb-enable-content-scrolling\";s:2:\"on\";s:16:\"sgpb-popup-order\";s:1:\"0\";s:16:\"sgpb-popup-delay\";s:1:\"0\";s:7:\"sgpb-js\";s:2:\"JS\";s:8:\"sgpb-css\";s:3:\"CSS\";s:25:\"sgpb-enable-popup-overlay\";s:2:\"on\";s:22:\"sgpb-button-image-data\";s:0:\"\";s:26:\"sgpb-background-image-data\";s:0:\"\";}'),(41524,1915,'_edit_lock','1606441704:4'),(41525,1915,'_edit_last','1'),(41526,1916,'_wp_attached_file','2020/09/HIMSS-EU-SoMe-Banner-3.jpg'),(41527,1916,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1024;s:4:\"file\";s:34:\"2020/09/HIMSS-EU-SoMe-Banner-3.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"HIMSS-EU-SoMe-Banner-3-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:35:\"HIMSS-EU-SoMe-Banner-3-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:34:\"HIMSS-EU-SoMe-Banner-3-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:\"HIMSS-EU-SoMe-Banner-3-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:35:\"HIMSS-EU-SoMe-Banner-3-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:34:\"HIMSS-EU-SoMe-Banner-3-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(41534,1915,'sg_popup_target','a:2:{s:11:\"sgpb-target\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"page_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";a:1:{i:0;s:12:\"is_home_page\";}}}}s:15:\"sgpb-conditions\";N;}'),(41535,1915,'sg_popup_events','a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:4:\"load\";s:5:\"value\";s:0:\"\";s:12:\"hiddenOption\";a:0:{}}}}'),(41536,1915,'sg_popup_options','a:46:{s:14:\"sgpb-image-url\";s:75:\"http://localhost:8082/wp-content/uploads/2020/09/HIMSS-EU-SoMe-Banner-3.jpg\";s:9:\"sgpb-type\";s:5:\"image\";s:15:\"sgpb-is-preview\";s:1:\"0\";s:14:\"sgpb-is-active\";s:0:\"\";s:34:\"sgpb-behavior-after-special-events\";a:1:{i:0;a:1:{i:0;a:1:{s:5:\"param\";s:12:\"select_event\";}}}s:18:\"sgpb-popup-z-index\";s:4:\"9999\";s:17:\"sgpb-popup-themes\";s:12:\"sgpb-theme-6\";s:25:\"sgpb-overlay-custom-class\";s:18:\"sgpb-popup-overlay\";s:18:\"sgpb-overlay-color\";s:0:\"\";s:20:\"sgpb-overlay-opacity\";s:3:\"0.8\";s:25:\"sgpb-content-custom-class\";s:16:\"sg-popup-content\";s:12:\"sgpb-esc-key\";s:2:\"on\";s:24:\"sgpb-enable-close-button\";s:2:\"on\";s:23:\"sgpb-close-button-delay\";s:1:\"0\";s:26:\"sgpb-close-button-position\";s:8:\"topRight\";s:24:\"sgpb-button-position-top\";s:3:\"-18\";s:26:\"sgpb-button-position-right\";s:3:\"-18\";s:27:\"sgpb-button-position-bottom\";s:0:\"\";s:25:\"sgpb-button-position-left\";s:0:\"\";s:17:\"sgpb-button-image\";s:0:\"\";s:23:\"sgpb-button-image-width\";s:2:\"30\";s:24:\"sgpb-button-image-height\";s:2:\"30\";s:17:\"sgpb-border-color\";s:7:\"#ffffff\";s:18:\"sgpb-border-radius\";s:2:\"50\";s:23:\"sgpb-border-radius-type\";s:1:\"%\";s:16:\"sgpb-button-text\";s:5:\"Close\";s:18:\"sgpb-overlay-click\";s:2:\"on\";s:25:\"sgpb-popup-dimension-mode\";s:14:\"responsiveMode\";s:33:\"sgpb-responsive-dimension-measure\";s:4:\"auto\";s:10:\"sgpb-width\";s:5:\"640px\";s:11:\"sgpb-height\";s:5:\"480px\";s:14:\"sgpb-max-width\";s:3:\"80%\";s:15:\"sgpb-max-height\";s:3:\"80%\";s:14:\"sgpb-min-width\";s:3:\"120\";s:15:\"sgpb-min-height\";s:0:\"\";s:26:\"sgpb-open-animation-effect\";s:9:\"No effect\";s:27:\"sgpb-close-animation-effect\";s:9:\"No effect\";s:29:\"sgpb-enable-content-scrolling\";s:2:\"on\";s:16:\"sgpb-popup-order\";s:1:\"0\";s:16:\"sgpb-popup-delay\";s:1:\"0\";s:7:\"sgpb-js\";s:2:\"JS\";s:8:\"sgpb-css\";s:3:\"CSS\";s:12:\"sgpb-post-id\";s:4:\"1915\";s:25:\"sgpb-enable-popup-overlay\";s:2:\"on\";s:22:\"sgpb-button-image-data\";s:0:\"\";s:26:\"sgpb-background-image-data\";s:0:\"\";}'),(41537,1915,'_yoast_wpseo_focuskeywords','[]'),(41538,1915,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(41545,1915,'_facebook_shares','0'),(41547,1915,'_twitter_shares','0'),(41548,1915,'_linkedin_shares','0'),(41879,1924,'_wp_page_template','index-new.php'),(41880,1924,'top-image','654'),(41881,1924,'_top-image','field_5c47486901570'),(41882,1924,'top-title','Data-Driven
Digital Transformation'),(41883,1924,'_top-title','field_5c47489001571'),(41884,1924,'top-text','We Partner with companies to build business value through software innovation.

Every company is now a technology company. How competitive are you in your industry? Let us help you.'),(41885,1924,'_top-text','field_5c47489e01572'),(41886,1924,'top-items_0_item','Cloud-Native'),(41887,1924,'_top-items_0_item','field_5c4748d001574'),(41888,1924,'top-items_1_item','Data Lake'),(41889,1924,'_top-items_1_item','field_5c4748d001574'),(41890,1924,'top-items_2_item','Kubernetes'),(41891,1924,'_top-items_2_item','field_5c4748d001574'),(41892,1924,'top-items_3_item','Scalable'),(41893,1924,'_top-items_3_item','field_5c4748d001574'),(41894,1924,'top-items_4_item','Secure'),(41895,1924,'_top-items_4_item','field_5c4748d001574'),(41896,1924,'top-items','5'),(41897,1924,'_top-items','field_5c4748c401573'),(41898,1924,'top-button','44'),(41899,1924,'_top-button','field_5c4748e601575'),(41900,1924,'services-presentation','Build cloud-native applications with Translucent\r\nCreate modern applications using state-of-the-art technology with TEKStack AI'),(41901,1924,'_services-presentation','field_5c474986bee5b'),(41902,1924,'call-title','Start a Conversation'),(41903,1924,'_call-title','field_5c4749bcbee5c'),(41904,1924,'call-text',''),(41905,1924,'_call-text','field_5c4749d7bee5d'),(41906,1924,'case-title','The Hospital for Sick Children'),(41907,1924,'_case-title','field_5c4749f4bee5e'),(41908,1924,'case-text',''),(41909,1924,'_case-text','field_5c474a4abee5f'),(41910,1924,'case-image','772'),(41911,1924,'_case-image','field_5c474a6dbee61'),(41912,1924,'case-link','38'),(41913,1924,'_case-link','field_5c476a3dac685'),(41914,1924,'case_study_0_title',''),(41915,1924,'_case_study_0_title','field_5c82d24ccbac6'),(41916,1924,'case_study_0_text',''),(41917,1924,'_case_study_0_text','field_5c82d258cbac7'),(41918,1924,'case_study_0_image',''),(41919,1924,'_case_study_0_image','field_5c82d266cbac8'),(41920,1924,'case_study_0_link',''),(41921,1924,'_case_study_0_link','field_5c82d275cbac9'),(41922,1924,'case_study_1_title',''),(41923,1924,'_case_study_1_title','field_5c82d24ccbac6'),(41924,1924,'case_study_1_text',''),(41925,1924,'_case_study_1_text','field_5c82d258cbac7'),(41926,1924,'case_study_1_image',''),(41927,1924,'_case_study_1_image','field_5c82d266cbac8'),(41928,1924,'case_study_1_link',''),(41929,1924,'_case_study_1_link','field_5c82d275cbac9'),(41930,1924,'case_study',''),(41931,1924,'_case_study','field_6059d436ba0ce'),(41932,1924,'_yoast_wpseo_metadesc','Accelerate your digital transformation! Certified cloud native solutions and Kubernetes partners specializing in DevSecOps and data-driven app development.'),(41934,1924,'_yoast_wpseo_focuskw','Cloud Native Solutions'),(41935,1924,'_yoast_wpseo_linkdex','39'),(41936,1924,'_yoast_wpseo_title','Translucent I Award Winning Cloud Native Solutions & DevOps Experts'),(41938,1924,'_yoast_wpseo_focuskeywords','[{\"keyword\":\"Cloud Native Solutions\",\"score\":\"good\"}]'),(41939,1924,'_yoast_wpseo_keywordsynonyms','[\"\",\"Cloud Consulting\"]'),(41946,1924,'_dp_original','2'),(41947,1924,'_edit_lock','1663091007:21'),(41948,1924,'_edit_last','17'),(42019,624,'_facebook_shares','0'),(42021,624,'_twitter_shares','0'),(42022,624,'_linkedin_shares','0'),(42382,1924,'_facebook_shares','2'),(42384,1924,'_twitter_shares','0'),(42385,1924,'_linkedin_shares','0'),(42394,1926,'_wp_attached_file','2020/09/tlc-2.png'),(42395,1926,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1024;s:4:\"file\";s:17:\"2020/09/tlc-2.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"tlc-2-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"tlc-2-1024x512.png\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"tlc-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:17:\"tlc-2-768x384.png\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"tlc-2-1536x768.png\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:17:\"tlc-2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(42396,1927,'_wp_attached_file','2020/09/tlc-3.png'),(42397,1927,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1024;s:4:\"file\";s:17:\"2020/09/tlc-3.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"tlc-3-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"tlc-3-1024x512.png\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"tlc-3-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:\"tlc-3-768x384.png\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"tlc-3-1536x768.png\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:17:\"tlc-3-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(42464,1928,'_wp_attached_file','2020/09/data_experts.png'),(42465,1928,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:966;s:6:\"height\";i:672;s:4:\"file\";s:24:\"2020/09/data_experts.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"data_experts-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:24:\"data_experts-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:24:\"data_experts-768x534.png\";s:5:\"width\";i:768;s:6:\"height\";i:534;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:24:\"data_experts-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(42466,1929,'_wp_attached_file','2020/09/derive_great_value.png'),(42467,1929,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:923;s:6:\"height\";i:647;s:4:\"file\";s:30:\"2020/09/derive_great_value.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"derive_great_value-300x210.png\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"derive_great_value-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:\"derive_great_value-768x538.png\";s:5:\"width\";i:768;s:6:\"height\";i:538;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:30:\"derive_great_value-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(42468,1930,'_wp_attached_file','2020/09/enhance.png'),(42469,1930,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:929;s:6:\"height\";i:729;s:4:\"file\";s:19:\"2020/09/enhance.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"enhance-300x235.png\";s:5:\"width\";i:300;s:6:\"height\";i:235;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"enhance-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:19:\"enhance-768x603.png\";s:5:\"width\";i:768;s:6:\"height\";i:603;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:19:\"enhance-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(42470,1931,'_wp_attached_file','2020/09/full_img.png'),(42471,1931,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1485;s:6:\"height\";i:851;s:4:\"file\";s:20:\"2020/09/full_img.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"full_img-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"full_img-1024x587.png\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"full_img-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:20:\"full_img-768x440.png\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:20:\"full_img-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(42472,1932,'_wp_attached_file','2020/09/kubernetes.png'),(42473,1932,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:821;s:6:\"height\";i:833;s:4:\"file\";s:22:\"2020/09/kubernetes.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"kubernetes-296x300.png\";s:5:\"width\";i:296;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"kubernetes-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:\"kubernetes-768x779.png\";s:5:\"width\";i:768;s:6:\"height\";i:779;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"kubernetes-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(42474,1933,'_wp_attached_file','2020/09/modern_apps.png'),(42475,1933,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:891;s:6:\"height\";i:622;s:4:\"file\";s:23:\"2020/09/modern_apps.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"modern_apps-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:23:\"modern_apps-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:23:\"modern_apps-768x536.png\";s:5:\"width\";i:768;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:23:\"modern_apps-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(42587,1885,'_facebook_shares','0'),(42589,1885,'_twitter_shares','0'),(42590,1885,'_linkedin_shares','0'),(45872,1943,'_edit_lock','1607289527:9'),(45874,1943,'_edit_last','4'),(45875,1943,'_yoast_wpseo_content_score','60'),(45876,1943,'_yoast_wpseo_focuskeywords','[]'),(45877,1943,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(46199,1692,'_yoast_wpseo_focuskw','bash'),(46200,1692,'_yoast_wpseo_linkdex','69'),(46212,1958,'_wp_attached_file','2020/10/ScreenHunter_01-May.-07-21.44.jpg'),(46213,1958,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:719;s:6:\"height\";i:214;s:4:\"file\";s:41:\"2020/10/ScreenHunter_01-May.-07-21.44.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"ScreenHunter_01-May.-07-21.44-300x89.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:89;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"ScreenHunter_01-May.-07-21.44-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:41:\"ScreenHunter_01-May.-07-21.44-500x214.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:214;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:{}}}'),(46214,1959,'_wp_attached_file','2020/10/Screenshot-2020-10-19-at-04.14.19.png'),(46215,1959,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2362;s:6:\"height\";i:347;s:4:\"file\";s:45:\"2020/10/Screenshot-2020-10-19-at-04.14.19.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Screenshot-2020-10-19-at-04.14.19-300x44.png\";s:5:\"width\";i:300;s:6:\"height\";i:44;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.14.19-1024x150.png\";s:5:\"width\";i:1024;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.14.19-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:45:\"Screenshot-2020-10-19-at-04.14.19-768x113.png\";s:5:\"width\";i:768;s:6:\"height\";i:113;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.14.19-1536x226.png\";s:5:\"width\";i:1536;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.14.19-2048x301.png\";s:5:\"width\";i:2048;s:6:\"height\";i:301;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.14.19-500x347.png\";s:5:\"width\";i:500;s:6:\"height\";i:347;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:{}}}'),(46216,1960,'_wp_attached_file','2020/10/Screenshot-2020-10-19-at-04.16.23.png'),(46217,1960,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2387;s:6:\"height\";i:61;s:4:\"file\";s:45:\"2020/10/Screenshot-2020-10-19-at-04.16.23.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Screenshot-2020-10-19-at-04.16.23-300x8.png\";s:5:\"width\";i:300;s:6:\"height\";i:8;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.16.23-1024x26.png\";s:5:\"width\";i:1024;s:6:\"height\";i:26;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Screenshot-2020-10-19-at-04.16.23-150x61.png\";s:5:\"width\";i:150;s:6:\"height\";i:61;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Screenshot-2020-10-19-at-04.16.23-768x20.png\";s:5:\"width\";i:768;s:6:\"height\";i:20;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.16.23-1536x39.png\";s:5:\"width\";i:1536;s:6:\"height\";i:39;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.16.23-2048x52.png\";s:5:\"width\";i:2048;s:6:\"height\";i:52;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:44:\"Screenshot-2020-10-19-at-04.16.23-500x61.png\";s:5:\"width\";i:500;s:6:\"height\";i:61;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:{}}}'),(46218,1961,'_wp_attached_file','2020/10/Screenshot-2020-10-19-at-04.17.29.png'),(46219,1961,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2382;s:6:\"height\";i:359;s:4:\"file\";s:45:\"2020/10/Screenshot-2020-10-19-at-04.17.29.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Screenshot-2020-10-19-at-04.17.29-300x45.png\";s:5:\"width\";i:300;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.17.29-1024x154.png\";s:5:\"width\";i:1024;s:6:\"height\";i:154;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.17.29-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:45:\"Screenshot-2020-10-19-at-04.17.29-768x116.png\";s:5:\"width\";i:768;s:6:\"height\";i:116;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.17.29-1536x231.png\";s:5:\"width\";i:1536;s:6:\"height\";i:231;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.17.29-2048x309.png\";s:5:\"width\";i:2048;s:6:\"height\";i:309;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.17.29-500x359.png\";s:5:\"width\";i:500;s:6:\"height\";i:359;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:{}}}'),(46220,1962,'_wp_attached_file','2020/10/Screenshot-2020-10-19-at-04.18.23.png'),(46221,1962,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2382;s:6:\"height\";i:932;s:4:\"file\";s:45:\"2020/10/Screenshot-2020-10-19-at-04.18.23.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.18.23-300x117.png\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.18.23-1024x401.png\";s:5:\"width\";i:1024;s:6:\"height\";i:401;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.18.23-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:45:\"Screenshot-2020-10-19-at-04.18.23-768x300.png\";s:5:\"width\";i:768;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.18.23-1536x601.png\";s:5:\"width\";i:1536;s:6:\"height\";i:601;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.18.23-2048x801.png\";s:5:\"width\";i:2048;s:6:\"height\";i:801;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.18.23-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(46222,1963,'_wp_attached_file','2020/10/Screenshot-2020-10-19-at-04.19.23.png'),(46223,1963,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2380;s:6:\"height\";i:304;s:4:\"file\";s:45:\"2020/10/Screenshot-2020-10-19-at-04.19.23.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Screenshot-2020-10-19-at-04.19.23-300x38.png\";s:5:\"width\";i:300;s:6:\"height\";i:38;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.19.23-1024x131.png\";s:5:\"width\";i:1024;s:6:\"height\";i:131;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.19.23-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:44:\"Screenshot-2020-10-19-at-04.19.23-768x98.png\";s:5:\"width\";i:768;s:6:\"height\";i:98;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.19.23-1536x196.png\";s:5:\"width\";i:1536;s:6:\"height\";i:196;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.19.23-2048x262.png\";s:5:\"width\";i:2048;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.19.23-500x304.png\";s:5:\"width\";i:500;s:6:\"height\";i:304;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:{}}}'),(46224,1964,'_wp_attached_file','2020/10/Screenshot-2020-10-19-at-04.20.12.png'),(46225,1964,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2384;s:6:\"height\";i:422;s:4:\"file\";s:45:\"2020/10/Screenshot-2020-10-19-at-04.20.12.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Screenshot-2020-10-19-at-04.20.12-300x53.png\";s:5:\"width\";i:300;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.20.12-1024x181.png\";s:5:\"width\";i:1024;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.20.12-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:45:\"Screenshot-2020-10-19-at-04.20.12-768x136.png\";s:5:\"width\";i:768;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.20.12-1536x272.png\";s:5:\"width\";i:1536;s:6:\"height\";i:272;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.20.12-2048x363.png\";s:5:\"width\";i:2048;s:6:\"height\";i:363;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.20.12-500x422.png\";s:5:\"width\";i:500;s:6:\"height\";i:422;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:{}}}'),(46226,1965,'_wp_attached_file','2020/10/Screenshot-2020-10-19-at-04.21.57.png'),(46227,1965,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2386;s:6:\"height\";i:824;s:4:\"file\";s:45:\"2020/10/Screenshot-2020-10-19-at-04.21.57.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.21.57-300x104.png\";s:5:\"width\";i:300;s:6:\"height\";i:104;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.21.57-1024x354.png\";s:5:\"width\";i:1024;s:6:\"height\";i:354;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.21.57-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:45:\"Screenshot-2020-10-19-at-04.21.57-768x265.png\";s:5:\"width\";i:768;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.21.57-1536x530.png\";s:5:\"width\";i:1536;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.21.57-2048x707.png\";s:5:\"width\";i:2048;s:6:\"height\";i:707;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.21.57-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(46228,1966,'_wp_attached_file','2020/10/Screenshot-2020-10-19-at-04.22.45.png'),(46229,1966,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2382;s:6:\"height\";i:1506;s:4:\"file\";s:45:\"2020/10/Screenshot-2020-10-19-at-04.22.45.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.22.45-300x190.png\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.22.45-1024x647.png\";s:5:\"width\";i:1024;s:6:\"height\";i:647;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.22.45-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:45:\"Screenshot-2020-10-19-at-04.22.45-768x486.png\";s:5:\"width\";i:768;s:6:\"height\";i:486;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.22.45-1536x971.png\";s:5:\"width\";i:1536;s:6:\"height\";i:971;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"Screenshot-2020-10-19-at-04.22.45-2048x1295.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1295;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.22.45-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(46230,1967,'_wp_attached_file','2020/10/Screenshot-2020-10-19-at-04.23.27.png'),(46231,1967,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2383;s:6:\"height\";i:243;s:4:\"file\";s:45:\"2020/10/Screenshot-2020-10-19-at-04.23.27.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Screenshot-2020-10-19-at-04.23.27-300x31.png\";s:5:\"width\";i:300;s:6:\"height\";i:31;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.23.27-1024x104.png\";s:5:\"width\";i:1024;s:6:\"height\";i:104;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.23.27-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:44:\"Screenshot-2020-10-19-at-04.23.27-768x78.png\";s:5:\"width\";i:768;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.23.27-1536x157.png\";s:5:\"width\";i:1536;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.23.27-2048x209.png\";s:5:\"width\";i:2048;s:6:\"height\";i:209;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.23.27-500x243.png\";s:5:\"width\";i:500;s:6:\"height\";i:243;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:{}}}'),(46232,1968,'_wp_attached_file','2020/10/Screenshot-2020-10-19-at-04.24.20.png'),(46233,1968,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2382;s:6:\"height\";i:1794;s:4:\"file\";s:45:\"2020/10/Screenshot-2020-10-19-at-04.24.20.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.24.20-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.24.20-1024x771.png\";s:5:\"width\";i:1024;s:6:\"height\";i:771;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.24.20-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:45:\"Screenshot-2020-10-19-at-04.24.20-768x578.png\";s:5:\"width\";i:768;s:6:\"height\";i:578;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"Screenshot-2020-10-19-at-04.24.20-1536x1157.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1157;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"Screenshot-2020-10-19-at-04.24.20-2048x1542.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1542;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.24.20-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(46234,1969,'_wp_attached_file','2020/10/Screenshot-2020-10-19-at-04.25.12.png'),(46235,1969,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2383;s:6:\"height\";i:944;s:4:\"file\";s:45:\"2020/10/Screenshot-2020-10-19-at-04.25.12.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.25.12-300x119.png\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.25.12-1024x406.png\";s:5:\"width\";i:1024;s:6:\"height\";i:406;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.25.12-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:45:\"Screenshot-2020-10-19-at-04.25.12-768x304.png\";s:5:\"width\";i:768;s:6:\"height\";i:304;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.25.12-1536x608.png\";s:5:\"width\";i:1536;s:6:\"height\";i:608;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-10-19-at-04.25.12-2048x811.png\";s:5:\"width\";i:2048;s:6:\"height\";i:811;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-10-19-at-04.25.12-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(46236,1692,'_yoast_wpseo_metadesc','Welcome to part 2 of our 3-part series of \"Unofficial Bash Strict Mode\". This post is about the notable behaviours of pipefail and how to overcome them.'),(46393,1692,'_yoast_wpseo_primary_category','1'),(50795,2009,'_edit_lock','1614212324:9'),(50797,2009,'_edit_last','9'),(50798,2009,'_yoast_wpseo_content_score','30'),(50799,2009,'_yoast_wpseo_focuskeywords','[]'),(50800,2009,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(50801,2009,'_yoast_wpseo_primary_category','1022'),(50923,2023,'_wp_attached_file','2020/11/Screenshot-2020-11-26-at-21.02.36.png'),(50924,2023,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1363;s:6:\"height\";i:237;s:4:\"file\";s:45:\"2020/11/Screenshot-2020-11-26-at-21.02.36.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Screenshot-2020-11-26-at-21.02.36-300x52.png\";s:5:\"width\";i:300;s:6:\"height\";i:52;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2020-11-26-at-21.02.36-1024x178.png\";s:5:\"width\";i:1024;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-11-26-at-21.02.36-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:45:\"Screenshot-2020-11-26-at-21.02.36-768x134.png\";s:5:\"width\";i:768;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2020-11-26-at-21.02.36-500x237.png\";s:5:\"width\";i:500;s:6:\"height\";i:237;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:{}}}'),(50927,1692,'_thumbnail_id','2023'),(50976,1636,'_yoast_wpseo_primary_category','1'),(51006,1628,'_yoast_wpseo_primary_category','1'),(51109,1231,'_yoast_wpseo_focuskeywords','[]'),(51110,1231,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(51144,1144,'_yoast_wpseo_focuskeywords','[]'),(51145,1144,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(51173,1109,'_yoast_wpseo_focuskeywords','[]'),(51174,1109,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(51195,1058,'_yoast_wpseo_focuskeywords','[]'),(51196,1058,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(51436,1220,'_yoast_wpseo_focuskeywords','[]'),(51437,1220,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(51467,1186,'_yoast_wpseo_focuskeywords','[]'),(51468,1186,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(51520,1004,'_yoast_wpseo_focuskeywords','[]'),(51521,1004,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(51559,1000,'_yoast_wpseo_focuskeywords','[]'),(51560,1000,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(51605,1004,'_oembed_230fb2bb96183eb2e9484a82f5edad1a','{{unknown}}'),(51622,1004,'_oembed_1ddb08b8467c9252c1dc89caae3bda65','{{unknown}}'),(51671,2075,'_wp_attached_file','2020/11/tc.png'),(51672,2075,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2243;s:6:\"height\";i:734;s:4:\"file\";s:14:\"2020/11/tc.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"tc-300x98.png\";s:5:\"width\";i:300;s:6:\"height\";i:98;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:15:\"tc-1024x335.png\";s:5:\"width\";i:1024;s:6:\"height\";i:335;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"tc-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:14:\"tc-768x251.png\";s:5:\"width\";i:768;s:6:\"height\";i:251;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:15:\"tc-1536x503.png\";s:5:\"width\";i:1536;s:6:\"height\";i:503;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:15:\"tc-2048x670.png\";s:5:\"width\";i:2048;s:6:\"height\";i:670;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:14:\"tc-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(51673,2076,'_wp_attached_file','2020/11/tc2.png'),(51674,2076,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2243;s:6:\"height\";i:1250;s:4:\"file\";s:15:\"2020/11/tc2.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"tc2-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:16:\"tc2-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:15:\"tc2-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:15:\"tc2-768x428.png\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:16:\"tc2-1536x856.png\";s:5:\"width\";i:1536;s:6:\"height\";i:856;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:17:\"tc2-2048x1141.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1141;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:15:\"tc2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(51724,920,'_yoast_wpseo_focuskeywords','[]'),(51725,920,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(51761,918,'_yoast_wpseo_focuskeywords','[]'),(51762,918,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(51785,910,'_yoast_wpseo_focuskeywords','[]'),(51786,910,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(51808,2089,'_wp_attached_file','2014/01/7OuJGCv.jpg'),(51809,2089,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:19:\"2014/01/7OuJGCv.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"7OuJGCv-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:19:\"7OuJGCv-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:{}}}'),(51845,907,'_yoast_wpseo_focuskeywords','[]'),(51846,907,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(51862,2093,'_wp_attached_file','2013/12/TC-kringlemeAPP.jpg'),(51863,2093,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2013/12/TC-kringlemeAPP.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"TC-kringlemeAPP-300x188.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"TC-kringlemeAPP-1024x640.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"TC-kringlemeAPP-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:\"TC-kringlemeAPP-768x480.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:27:\"TC-kringlemeAPP-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(51884,897,'_yoast_wpseo_focuskeywords','[]'),(51885,897,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(51902,894,'_yoast_wpseo_focuskeywords','[]'),(51903,894,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(51919,892,'_yoast_wpseo_focuskeywords','[]'),(51920,892,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(51935,887,'_yoast_wpseo_focuskeywords','[]'),(51936,887,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(51958,883,'_yoast_wpseo_focuskeywords','[]'),(51959,883,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(52315,2104,'_wp_attached_file','2020/11/Press-Release-v1b-Trans-min.jpg'),(52316,2104,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2100;s:6:\"height\";i:600;s:4:\"file\";s:39:\"2020/11/Press-Release-v1b-Trans-min.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"Press-Release-v1b-Trans-min-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:40:\"Press-Release-v1b-Trans-min-1024x293.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Press-Release-v1b-Trans-min-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:\"Press-Release-v1b-Trans-min-768x219.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:219;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:40:\"Press-Release-v1b-Trans-min-1536x439.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:40:\"Press-Release-v1b-Trans-min-2048x585.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:585;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:39:\"Press-Release-v1b-Trans-min-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(52317,2009,'_thumbnail_id','2195'),(52742,2009,'_wp_old_date','2020-12-01'),(53182,2107,'_edit_lock','1614212362:9'),(53184,2107,'_edit_last','9'),(53185,2107,'_yoast_wpseo_primary_category','1022'),(53186,2107,'_yoast_wpseo_content_score','30'),(53187,2107,'_yoast_wpseo_focuskeywords','[]'),(53188,2107,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(53473,894,'_facebook_shares','0'),(53475,894,'_twitter_shares','0'),(53476,894,'_linkedin_shares','0'),(53527,887,'_facebook_shares','0'),(53529,887,'_twitter_shares','0'),(53530,887,'_linkedin_shares','0'),(53719,883,'_facebook_shares','0'),(53721,883,'_twitter_shares','0'),(53722,883,'_linkedin_shares','0'),(54550,2126,'_edit_lock','1609426003:9'),(54552,2126,'_edit_last','9'),(54553,2126,'_yoast_wpseo_content_score','30'),(54554,2126,'_yoast_wpseo_focuskeywords','[]'),(54555,2126,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(54671,2128,'_wp_attached_file','2020/12/Translucent-Computing-prepares-for-US-expansion.jpg'),(54672,2128,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:540;s:4:\"file\";s:59:\"2020/12/Translucent-Computing-prepares-for-US-expansion.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"Translucent-Computing-prepares-for-US-expansion-300x84.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"Translucent-Computing-prepares-for-US-expansion-1024x288.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"Translucent-Computing-prepares-for-US-expansion-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:59:\"Translucent-Computing-prepares-for-US-expansion-768x216.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:60:\"Translucent-Computing-prepares-for-US-expansion-1536x432.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:59:\"Translucent-Computing-prepares-for-US-expansion-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(54673,2107,'_thumbnail_id','2193'),(54692,2130,'_wp_attached_file','2020/12/Monolithic-vs-Microservices-architecture-image-704x540-1.png'),(54693,2130,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:704;s:6:\"height\";i:540;s:4:\"file\";s:68:\"2020/12/Monolithic-vs-Microservices-architecture-image-704x540-1.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:68:\"Monolithic-vs-Microservices-architecture-image-704x540-1-300x230.png\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:68:\"Monolithic-vs-Microservices-architecture-image-704x540-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:68:\"Monolithic-vs-Microservices-architecture-image-704x540-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(54852,2107,'_wp_old_date','2020-12-16'),(55060,2126,'_yoast_wpseo_primary_category','1'),(55092,2138,'_wp_attached_file','2020/12/Architecture-1.png'),(55093,2138,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:784;s:6:\"height\";i:814;s:4:\"file\";s:26:\"2020/12/Architecture-1.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Architecture-1-289x300.png\";s:5:\"width\";i:289;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Architecture-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:26:\"Architecture-1-768x797.png\";s:5:\"width\";i:768;s:6:\"height\";i:797;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:26:\"Architecture-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(55106,2140,'_wp_attached_file','2020/12/Architecture-2.png'),(55107,2140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:784;s:6:\"height\";i:814;s:4:\"file\";s:26:\"2020/12/Architecture-2.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Architecture-2-289x300.png\";s:5:\"width\";i:289;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Architecture-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:26:\"Architecture-2-768x797.png\";s:5:\"width\";i:768;s:6:\"height\";i:797;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:26:\"Architecture-2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(55584,2154,'_wp_attached_file','2020/12/vault-dynamic-secrets.png'),(55585,2154,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:726;s:6:\"height\";i:289;s:4:\"file\";s:33:\"2020/12/vault-dynamic-secrets.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"vault-dynamic-secrets-300x119.png\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"vault-dynamic-secrets-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:33:\"vault-dynamic-secrets-500x289.png\";s:5:\"width\";i:500;s:6:\"height\";i:289;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:{}}}'),(56430,2170,'_wp_attached_file','2020/12/Untitled-design-2.png'),(56431,2170,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:29:\"2020/12/Untitled-design-2.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Untitled-design-2-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Untitled-design-2-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Untitled-design-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:29:\"Untitled-design-2-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:29:\"Untitled-design-2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(56433,2126,'_thumbnail_id','2170'),(60414,2172,'_edit_lock','1612717046:4'),(60416,2173,'_wp_attached_file','2021/02/Multi-Cloud-Deployment-Strategy-Why-Parler-went-down_1200x628px.png'),(60417,2173,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:75:\"2021/02/Multi-Cloud-Deployment-Strategy-Why-Parler-went-down_1200x628px.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:75:\"Multi-Cloud-Deployment-Strategy-Why-Parler-went-down_1200x628px-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:76:\"Multi-Cloud-Deployment-Strategy-Why-Parler-went-down_1200x628px-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:75:\"Multi-Cloud-Deployment-Strategy-Why-Parler-went-down_1200x628px-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:75:\"Multi-Cloud-Deployment-Strategy-Why-Parler-went-down_1200x628px-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:75:\"Multi-Cloud-Deployment-Strategy-Why-Parler-went-down_1200x628px-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(60418,2172,'_thumbnail_id','2173'),(60419,2172,'_edit_last','4'),(60420,2172,'_yoast_wpseo_content_score','30'),(60421,2172,'_yoast_wpseo_focuskeywords','[]'),(60422,2172,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(60423,2172,'_yoast_wpseo_opengraph-image','https://translucent.local/wp-content/uploads/2021/02/Multi-Cloud-Deployment-Strategy-Why-Parler-went-down_1200x628px.png'),(60424,2172,'_yoast_wpseo_opengraph-image-id','2173'),(61814,873,'_facebook_shares','0'),(61816,873,'_twitter_shares','0'),(61817,873,'_linkedin_shares','0'),(62186,903,'_facebook_shares','0'),(62188,903,'_twitter_shares','0'),(62189,903,'_linkedin_shares','0'),(62192,899,'_facebook_shares','0'),(62194,899,'_twitter_shares','0'),(62195,899,'_linkedin_shares','0'),(62198,920,'_facebook_shares','0'),(62200,920,'_twitter_shares','0'),(62201,920,'_linkedin_shares','0'),(62204,901,'_facebook_shares','0'),(62206,901,'_twitter_shares','0'),(62207,901,'_linkedin_shares','0'),(62210,885,'_facebook_shares','0'),(62212,885,'_twitter_shares','0'),(62213,885,'_linkedin_shares','0'),(62222,905,'_facebook_shares','0'),(62224,905,'_twitter_shares','0'),(62225,905,'_linkedin_shares','0'),(62228,910,'_facebook_shares','0'),(62230,910,'_twitter_shares','0'),(62231,910,'_linkedin_shares','0'),(62246,892,'_facebook_shares','0'),(62248,892,'_twitter_shares','0'),(62249,892,'_linkedin_shares','0'),(62252,881,'_facebook_shares','0'),(62254,881,'_twitter_shares','0'),(62255,881,'_linkedin_shares','0'),(62258,879,'_facebook_shares','0'),(62260,879,'_twitter_shares','0'),(62261,879,'_linkedin_shares','0'),(62270,877,'_facebook_shares','0'),(62272,877,'_twitter_shares','0'),(62273,877,'_linkedin_shares','0'),(62324,918,'_facebook_shares','0'),(62326,918,'_twitter_shares','0'),(62327,918,'_linkedin_shares','0'),(62402,1699,'_facebook_shares','0'),(62404,1699,'_twitter_shares','0'),(62405,1699,'_linkedin_shares','0'),(62408,2177,'_edit_lock','1614202377:9'),(62410,2177,'_edit_last','9'),(62411,2177,'_yoast_wpseo_content_score','30'),(62412,2177,'_yoast_wpseo_focuskeywords','[]'),(62413,2177,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(62649,2184,'_wp_attached_file','2021/02/0005_jakub_banner_blog_microblogs_01_1200x628px.png'),(62650,2184,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:59:\"2021/02/0005_jakub_banner_blog_microblogs_01_1200x628px.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"0005_jakub_banner_blog_microblogs_01_1200x628px-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"0005_jakub_banner_blog_microblogs_01_1200x628px-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"0005_jakub_banner_blog_microblogs_01_1200x628px-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:59:\"0005_jakub_banner_blog_microblogs_01_1200x628px-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:59:\"0005_jakub_banner_blog_microblogs_01_1200x628px-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(62651,2184,'_wp_attachment_image_alt','What is replatforming? Translucent blog on replatforming'),(62652,2177,'_thumbnail_id','2184'),(62653,2177,'_yoast_wpseo_metadesc','Replatforming can be done gradually by migrating complex legacy applications into new runtime platforms that support cloud-native architecture.'),(62736,2177,'_yoast_wpseo_primary_category','1027'),(62743,2128,'_wp_attachment_image_alt','translucent computing prepares for us expansion Press Release'),(62865,907,'_facebook_shares','0'),(62867,907,'_twitter_shares','0'),(62868,907,'_linkedin_shares','0'),(63075,2193,'_wp_attached_file','2020/12/0007_TCMP_blogs_content_new_format_1200x628_02.png'),(63076,2193,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:58:\"2020/12/0007_TCMP_blogs_content_new_format_1200x628_02.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"0007_TCMP_blogs_content_new_format_1200x628_02-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"0007_TCMP_blogs_content_new_format_1200x628_02-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"0007_TCMP_blogs_content_new_format_1200x628_02-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:58:\"0007_TCMP_blogs_content_new_format_1200x628_02-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:58:\"0007_TCMP_blogs_content_new_format_1200x628_02-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(63077,2193,'_wp_attachment_image_alt','translucent computing press release on preparing for us expansion'),(63099,2195,'_wp_attached_file','2020/12/0007_TCMP_blogs_content_new_format_1200x628_01.png'),(63100,2195,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:58:\"2020/12/0007_TCMP_blogs_content_new_format_1200x628_01.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"0007_TCMP_blogs_content_new_format_1200x628_01-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:59:\"0007_TCMP_blogs_content_new_format_1200x628_01-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"0007_TCMP_blogs_content_new_format_1200x628_01-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:58:\"0007_TCMP_blogs_content_new_format_1200x628_01-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:58:\"0007_TCMP_blogs_content_new_format_1200x628_01-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(63101,2195,'_wp_attachment_image_alt','translucent computing press release on canadian ai healthcare solution'),(63214,2196,'_yoast_wpseo_focuskeywords','[]'),(63215,2196,'_yoast_wpseo_keywordsynonyms','[\"Modern Applications Supported by Kubernetes\"]'),(63216,2196,'_wp_page_template','kubernetes-professional-services.php'),(63217,2196,'background-image','1865'),(63218,2196,'_background-image','field_5f49717494f58'),(63219,2196,'about','

Kubernetes Professional Services

'),(63220,2196,'_about','field_5f49717495002'),(63222,2196,'1home',''),(63223,2196,'_1home','field_5c48ade7a3abb'),(63224,2196,'1about',''),(63225,2196,'_1about','field_5c488c0c69ce8'),(63226,2196,'1text',''),(63227,2196,'_1text','field_5c488c3969ce9'),(63228,2196,'2home',''),(63229,2196,'_2home','field_5c48adffa3abc'),(63230,2196,'2about',''),(63231,2196,'_2about','field_5c48adcda3aba'),(63232,2196,'2text',''),(63233,2196,'_2text','field_5c488c8d69ceb'),(63234,2196,'2list',''),(63235,2196,'_2list','field_5c488cb869cec'),(63236,2196,'3home',''),(63237,2196,'_3home','field_5c48ae0ca3abd'),(63238,2196,'3about',''),(63239,2196,'_3about','field_5c488c7469cea'),(63240,2196,'3list',''),(63241,2196,'_3list','field_5c488cf969cee'),(63242,2196,'_yoast_wpseo_focuskw','kubernetes certified'),(63243,2196,'_yoast_wpseo_title','Kubernetes Professional Services - Certified Partner | Translucent'),(63244,2196,'_yoast_wpseo_metadesc','Cost-effective ROI-focused consulting and implementation. Build, deploy, and scale modern apps in the cloud. Kubernetes Certified Service Provider (KCSP).'),(63245,2196,'_yoast_wpseo_linkdex','39'),(63252,2196,'_dp_original','1822'),(63253,2196,'_edit_lock','1662969020:21'),(63254,2196,'_edit_last','17'),(63353,2202,'_wp_attached_file','2021/02/Kubernetes-Professional-Services.png'),(63354,2202,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1477;s:6:\"height\";i:846;s:4:\"file\";s:44:\"2021/02/Kubernetes-Professional-Services.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Kubernetes-Professional-Services-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"Kubernetes-Professional-Services-1024x587.png\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"Kubernetes-Professional-Services-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:44:\"Kubernetes-Professional-Services-768x440.png\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:44:\"Kubernetes-Professional-Services-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(63355,2203,'_wp_attached_file','2021/02/Learn-Inform-Plan.png'),(63356,2203,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1480;s:6:\"height\";i:848;s:4:\"file\";s:29:\"2021/02/Learn-Inform-Plan.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Learn-Inform-Plan-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Learn-Inform-Plan-1024x587.png\";s:5:\"width\";i:1024;s:6:\"height\";i:587;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Learn-Inform-Plan-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:\"Learn-Inform-Plan-768x440.png\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:29:\"Learn-Inform-Plan-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(63361,2206,'_wp_attached_file','2021/02/Learn-Inform-Plan-Dark.png'),(63362,2206,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1481;s:6:\"height\";i:848;s:4:\"file\";s:34:\"2021/02/Learn-Inform-Plan-Dark.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"Learn-Inform-Plan-Dark-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Learn-Inform-Plan-Dark-1024x586.png\";s:5:\"width\";i:1024;s:6:\"height\";i:586;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Learn-Inform-Plan-Dark-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:\"Learn-Inform-Plan-Dark-768x440.png\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:34:\"Learn-Inform-Plan-Dark-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(63363,2207,'_wp_attached_file','2021/02/Kubernetes-Professional-Services-trans.png'),(63364,2207,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1485;s:6:\"height\";i:850;s:4:\"file\";s:50:\"2021/02/Kubernetes-Professional-Services-trans.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"Kubernetes-Professional-Services-trans-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"Kubernetes-Professional-Services-trans-1024x586.png\";s:5:\"width\";i:1024;s:6:\"height\";i:586;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"Kubernetes-Professional-Services-trans-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:50:\"Kubernetes-Professional-Services-trans-768x440.png\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:50:\"Kubernetes-Professional-Services-trans-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(63365,2208,'_wp_attached_file','2021/02/Learn-Inform-Plan-trans.png'),(63366,2208,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1485;s:6:\"height\";i:850;s:4:\"file\";s:35:\"2021/02/Learn-Inform-Plan-trans.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Learn-Inform-Plan-trans-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Learn-Inform-Plan-trans-1024x586.png\";s:5:\"width\";i:1024;s:6:\"height\";i:586;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Learn-Inform-Plan-trans-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:\"Learn-Inform-Plan-trans-768x440.png\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:35:\"Learn-Inform-Plan-trans-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(63367,2209,'_wp_attached_file','2021/02/Kubernetes-Consulting-trans.png'),(63368,2209,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1485;s:6:\"height\";i:850;s:4:\"file\";s:39:\"2021/02/Kubernetes-Consulting-trans.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Kubernetes-Consulting-trans-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"Kubernetes-Consulting-trans-1024x586.png\";s:5:\"width\";i:1024;s:6:\"height\";i:586;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Kubernetes-Consulting-trans-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:\"Kubernetes-Consulting-trans-768x440.png\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:39:\"Kubernetes-Consulting-trans-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(63379,2212,'_wp_attached_file','2021/02/Support-and-Maintenance-trans.png'),(63380,2212,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1485;s:6:\"height\";i:850;s:4:\"file\";s:41:\"2021/02/Support-and-Maintenance-trans.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"Support-and-Maintenance-trans-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"Support-and-Maintenance-trans-1024x586.png\";s:5:\"width\";i:1024;s:6:\"height\";i:586;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Support-and-Maintenance-trans-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:41:\"Support-and-Maintenance-trans-768x440.png\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:41:\"Support-and-Maintenance-trans-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(63475,2213,'_menu_item_type','post_type'),(63476,2213,'_menu_item_menu_item_parent','859'),(63477,2213,'_menu_item_object_id','2196'),(63478,2213,'_menu_item_object','page'),(63479,2213,'_menu_item_target',''),(63480,2213,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(63481,2213,'_menu_item_xfn',''),(63482,2213,'_menu_item_url',''),(63484,859,'_facebook_shares','0'),(63486,859,'_twitter_shares','0'),(63487,859,'_linkedin_shares','0'),(63490,831,'_facebook_shares','0'),(63492,831,'_twitter_shares','0'),(63493,831,'_linkedin_shares','0'),(63496,834,'_facebook_shares','0'),(63498,834,'_twitter_shares','0'),(63499,834,'_linkedin_shares','0'),(63502,833,'_facebook_shares','0'),(63504,833,'_twitter_shares','0'),(63505,833,'_linkedin_shares','0'),(63508,832,'_facebook_shares','0'),(63510,832,'_twitter_shares','0'),(63511,832,'_linkedin_shares','0'),(63514,2213,'_facebook_shares','0'),(63516,2213,'_twitter_shares','0'),(63517,2213,'_linkedin_shares','0'),(63520,1883,'_facebook_shares','0'),(63522,1883,'_twitter_shares','0'),(63523,1883,'_linkedin_shares','0'),(63526,62,'_facebook_shares','0'),(63528,62,'_twitter_shares','0'),(63529,62,'_linkedin_shares','0'),(63532,42,'_facebook_shares','0'),(63534,42,'_twitter_shares','0'),(63535,42,'_linkedin_shares','0'),(63538,43,'_facebook_shares','0'),(63540,43,'_twitter_shares','0'),(63541,43,'_linkedin_shares','0'),(63544,811,'_facebook_shares','0'),(63546,811,'_twitter_shares','0'),(63547,811,'_linkedin_shares','0'),(63556,928,'_facebook_shares','0'),(63558,928,'_twitter_shares','0'),(63559,928,'_linkedin_shares','0'),(63562,59,'_facebook_shares','0'),(63564,59,'_twitter_shares','0'),(63565,59,'_linkedin_shares','0'),(63628,1628,'_facebook_shares','0'),(63630,1628,'_twitter_shares','0'),(63631,1628,'_linkedin_shares','0'),(63658,2214,'_form','
[text* nome class:new-home__input placeholder \"Name\"]
[email* email class:new-home__input placeholder \"Email\"]
\n
[text* company class:new-home__input placeholder \"Company\"]
[tel* phone class:new-home__input placeholder \"Phone number\"]
[textarea* message class:new-home__textarea placeholder \"Message\"]
[submit class:new-home__input-btn \"Send\"]
'),(63659,2214,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:58:\"TC Form Submissions: From Translucent What is Contact form\";s:6:\"sender\";s:32:\"results@translucentcomputing.com\";s:9:\"recipient\";s:99:\"results@translucentcomputing.com, robert@translucentcomputing.com, bsankar@translucentcomputing.com\";s:4:\"body\";s:42:\"From: [nome] <[email]>\n\nMessage:\n[message]\";s:18:\"additional_headers\";s:17:\"Reply-To: [email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(63660,2214,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:28:\"Translucent \"[your-subject]\"\";s:6:\"sender\";s:33:\"Translucent \";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:113:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Translucent (http://localhost:8082)\";s:18:\"additional_headers\";s:35:\"Reply-To: contato@gabithomaz.com.br\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(63661,2214,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(63662,2214,'_additional_settings',''),(63663,2214,'_locale','en_US'),(63685,2214,'_facebook_shares','0'),(63687,2214,'_twitter_shares','0'),(63688,2214,'_linkedin_shares','0'),(63692,2215,'_wp_attached_file','2021/02/mockup-kids.png'),(63693,2215,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:644;s:6:\"height\";i:726;s:4:\"file\";s:23:\"2021/02/mockup-kids.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"mockup-kids-266x300.png\";s:5:\"width\";i:266;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"mockup-kids-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:23:\"mockup-kids-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(63850,1004,'_facebook_shares','2'),(63852,1004,'_twitter_shares','0'),(63853,1004,'_linkedin_shares','0'),(63994,1186,'_facebook_shares','0'),(63996,1186,'_twitter_shares','0'),(63997,1186,'_linkedin_shares','0'),(64060,2216,'_menu_item_type','custom'),(64061,2216,'_menu_item_menu_item_parent','0'),(64062,2216,'_menu_item_object_id','2216'),(64063,2216,'_menu_item_object','custom'),(64064,2216,'_menu_item_target',''),(64065,2216,'_menu_item_classes','a:1:{i:0;s:9:\"menu-main\";}'),(64066,2216,'_menu_item_xfn',''),(64067,2216,'_menu_item_url',''),(64069,2217,'_menu_item_type','custom'),(64070,2217,'_menu_item_menu_item_parent','0'),(64071,2217,'_menu_item_object_id','2217'),(64072,2217,'_menu_item_object','custom'),(64073,2217,'_menu_item_target',''),(64074,2217,'_menu_item_classes','a:1:{i:0;s:9:\"menu-main\";}'),(64075,2217,'_menu_item_xfn',''),(64076,2217,'_menu_item_url',''),(64078,2218,'_menu_item_type','custom'),(64079,2218,'_menu_item_menu_item_parent','0'),(64080,2218,'_menu_item_object_id','2218'),(64081,2218,'_menu_item_object','custom'),(64082,2218,'_menu_item_target',''),(64083,2218,'_menu_item_classes','a:1:{i:0;s:9:\"menu-main\";}'),(64084,2218,'_menu_item_xfn',''),(64085,2218,'_menu_item_url',''),(64114,2222,'_menu_item_type','post_type'),(64115,2222,'_menu_item_menu_item_parent','2218'),(64116,2222,'_menu_item_object_id','922'),(64117,2222,'_menu_item_object','page'),(64118,2222,'_menu_item_target',''),(64119,2222,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(64120,2222,'_menu_item_xfn',''),(64121,2222,'_menu_item_url',''),(64123,2223,'_menu_item_type','post_type'),(64124,2223,'_menu_item_menu_item_parent','2218'),(64125,2223,'_menu_item_object_id','46'),(64126,2223,'_menu_item_object','page'),(64127,2223,'_menu_item_target',''),(64128,2223,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(64129,2223,'_menu_item_xfn',''),(64130,2223,'_menu_item_url',''),(64132,2224,'_menu_item_type','post_type'),(64133,2224,'_menu_item_menu_item_parent','2217'),(64134,2224,'_menu_item_object_id','1822'),(64135,2224,'_menu_item_object','page'),(64136,2224,'_menu_item_target',''),(64137,2224,'_menu_item_classes','a:1:{i:0;s:8:\"menu-sub\";}'),(64138,2224,'_menu_item_xfn',''),(64139,2224,'_menu_item_url',''),(64156,2226,'_menu_item_type','post_type'),(64157,2226,'_menu_item_menu_item_parent','2216'),(64158,2226,'_menu_item_object_id','16'),(64159,2226,'_menu_item_object','page'),(64160,2226,'_menu_item_target',''),(64161,2226,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(64162,2226,'_menu_item_xfn',''),(64163,2226,'_menu_item_url',''),(64186,2228,'_menu_item_type','custom'),(64187,2228,'_menu_item_menu_item_parent','0'),(64188,2228,'_menu_item_object_id','2228'),(64189,2228,'_menu_item_object','custom'),(64190,2228,'_menu_item_target',''),(64191,2228,'_menu_item_classes','a:1:{i:0;s:9:\"menu-main\";}'),(64192,2228,'_menu_item_xfn',''),(64193,2228,'_menu_item_url',''),(64195,2229,'_menu_item_type','post_type'),(64196,2229,'_menu_item_menu_item_parent','2216'),(64197,2229,'_menu_item_object_id','44'),(64198,2229,'_menu_item_object','page'),(64199,2229,'_menu_item_target',''),(64200,2229,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(64201,2229,'_menu_item_xfn',''),(64202,2229,'_menu_item_url',''),(64204,2230,'_menu_item_type','post_type'),(64205,2230,'_menu_item_menu_item_parent','2216'),(64206,2230,'_menu_item_object_id','2196'),(64207,2230,'_menu_item_object','page'),(64208,2230,'_menu_item_target',''),(64209,2230,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(64210,2230,'_menu_item_xfn',''),(64211,2230,'_menu_item_url',''),(64603,2231,'_edit_lock','1614711041:9'),(64605,2231,'_edit_last','9'),(64606,2231,'_yoast_wpseo_content_score','60'),(64607,2231,'_yoast_wpseo_focuskeywords','[]'),(64608,2231,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(64609,2233,'_wp_attached_file','2021/03/0005_jakub_banner_blog_microblogs_02_1200x628px-2.png'),(64610,2233,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:61:\"2021/03/0005_jakub_banner_blog_microblogs_02_1200x628px-2.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"0005_jakub_banner_blog_microblogs_02_1200x628px-2-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"0005_jakub_banner_blog_microblogs_02_1200x628px-2-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"0005_jakub_banner_blog_microblogs_02_1200x628px-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:61:\"0005_jakub_banner_blog_microblogs_02_1200x628px-2-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:61:\"0005_jakub_banner_blog_microblogs_02_1200x628px-2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(64611,2233,'_wp_attachment_image_alt','translucent why you should modernize your legacy applications infographic'),(64614,2231,'_thumbnail_id','2233'),(64628,2231,'_yoast_wpseo_primary_category','1027'),(64748,1220,'_facebook_shares','0'),(64750,1220,'_twitter_shares','0'),(64751,1220,'_linkedin_shares','0'),(64910,1231,'_facebook_shares','0'),(64912,1231,'_twitter_shares','0'),(64913,1231,'_linkedin_shares','0'),(65006,897,'_facebook_shares','0'),(65008,897,'_twitter_shares','0'),(65009,897,'_linkedin_shares','0'),(65126,2231,'_facebook_shares','0'),(65128,2231,'_twitter_shares','0'),(65129,2231,'_linkedin_shares','0'),(65150,2009,'_facebook_shares','0'),(65152,2009,'_twitter_shares','0'),(65153,2009,'_linkedin_shares','0'),(65186,1324,'_facebook_shares','0'),(65188,1324,'_twitter_shares','0'),(65189,1324,'_linkedin_shares','0'),(65222,1109,'_facebook_shares','0'),(65224,1109,'_twitter_shares','0'),(65225,1109,'_linkedin_shares','0'),(65240,829,'_facebook_shares','0'),(65243,829,'_twitter_shares','0'),(65245,829,'_linkedin_shares','0'),(65300,875,'_facebook_shares','0'),(65302,875,'_twitter_shares','0'),(65303,875,'_linkedin_shares','0'),(65336,2177,'_facebook_shares','0'),(65338,2177,'_twitter_shares','0'),(65339,2177,'_twitter_shares','0'),(65340,2177,'_linkedin_shares','0'),(65341,2177,'_linkedin_shares','0'),(65346,2107,'_facebook_shares','0'),(65348,2107,'_twitter_shares','0'),(65349,2107,'_linkedin_shares','0'),(65370,912,'_facebook_shares','0'),(65372,912,'_twitter_shares','0'),(65373,912,'_linkedin_shares','0'),(65394,1213,'_facebook_shares','2'),(65396,1213,'_twitter_shares','0'),(65397,1213,'_linkedin_shares','0'),(65400,1144,'_facebook_shares','2'),(65402,1144,'_twitter_shares','0'),(65403,1144,'_linkedin_shares','0'),(65406,871,'_facebook_shares','0'),(65408,871,'_twitter_shares','0'),(65409,871,'_linkedin_shares','0'),(65412,1555,'_facebook_shares','0'),(65414,1555,'_twitter_shares','0'),(65415,1555,'_linkedin_shares','0'),(65418,890,'_facebook_shares','0'),(65420,890,'_twitter_shares','0'),(65421,890,'_linkedin_shares','0'),(65424,1405,'_facebook_shares','0'),(65426,1405,'_twitter_shares','0'),(65427,1405,'_linkedin_shares','0'),(65430,1000,'_facebook_shares','0'),(65432,1000,'_twitter_shares','0'),(65433,1000,'_linkedin_shares','0'),(65460,914,'_facebook_shares','0'),(65462,914,'_twitter_shares','0'),(65463,914,'_linkedin_shares','0'),(65466,929,'_facebook_shares','0'),(65468,929,'_twitter_shares','0'),(65469,929,'_linkedin_shares','0'),(65484,1822,'_facebook_shares','0'),(65486,1822,'_twitter_shares','0'),(65487,1822,'_linkedin_shares','0'),(65490,44,'_facebook_shares','0'),(65492,44,'_twitter_shares','0'),(65493,44,'_linkedin_shares','0'),(65502,38,'_facebook_shares','0'),(65504,38,'_twitter_shares','0'),(65505,38,'_linkedin_shares','0'),(65508,16,'_facebook_shares','0'),(65510,16,'_twitter_shares','0'),(65511,16,'_linkedin_shares','0'),(65526,804,'_facebook_shares','0'),(65528,804,'_twitter_shares','0'),(65529,804,'_linkedin_shares','0'),(65532,1692,'_facebook_shares','0'),(65534,1692,'_twitter_shares','0'),(65535,1692,'_linkedin_shares','0'),(65544,1058,'_facebook_shares','1'),(65546,1058,'_twitter_shares','0'),(65547,1058,'_linkedin_shares','0'),(65550,2,'_facebook_shares','2'),(65552,2,'_twitter_shares','0'),(65553,2,'_linkedin_shares','0'),(65556,2126,'_facebook_shares','0'),(65558,2126,'_twitter_shares','0'),(65559,2126,'_linkedin_shares','0'),(65562,1636,'_facebook_shares','0'),(65564,1636,'_twitter_shares','0'),(65565,1636,'_linkedin_shares','0'),(65568,838,'_facebook_shares','0'),(65570,838,'_twitter_shares','0'),(65571,838,'_linkedin_shares','0'),(65574,916,'_facebook_shares','0'),(65576,916,'_twitter_shares','0'),(65577,916,'_linkedin_shares','0'),(65580,2238,'_menu_item_type','post_type'),(65581,2238,'_menu_item_menu_item_parent','2217'),(65582,2238,'_menu_item_object_id','60'),(65583,2238,'_menu_item_object','page'),(65584,2238,'_menu_item_target',''),(65585,2238,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(65586,2238,'_menu_item_xfn',''),(65587,2238,'_menu_item_url',''),(65667,60,'_facebook_shares','0'),(65669,60,'_twitter_shares','0'),(65670,60,'_linkedin_shares','0'),(65673,2239,'_menu_item_type','custom'),(65674,2239,'_menu_item_menu_item_parent','0'),(65675,2239,'_menu_item_object_id','2239'),(65676,2239,'_menu_item_object','custom'),(65677,2239,'_menu_item_target',''),(65678,2239,'_menu_item_classes','a:1:{i:0;s:9:\"menu-main\";}'),(65679,2239,'_menu_item_xfn',''),(65680,2239,'_menu_item_url',''),(65691,2241,'_menu_item_type','post_type'),(65692,2241,'_menu_item_menu_item_parent','2239'),(65693,2241,'_menu_item_object_id','57'),(65694,2241,'_menu_item_object','page'),(65695,2241,'_menu_item_target',''),(65696,2241,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(65697,2241,'_menu_item_xfn',''),(65698,2241,'_menu_item_url',''),(65796,57,'_facebook_shares','0'),(65798,57,'_twitter_shares','0'),(65799,57,'_linkedin_shares','0'),(65802,10,'_facebook_shares','0'),(65804,10,'_twitter_shares','0'),(65805,10,'_linkedin_shares','0'),(66000,2228,'_facebook_shares','0'),(66002,2228,'_twitter_shares','0'),(66003,2228,'_linkedin_shares','0'),(66006,2229,'_facebook_shares','0'),(66008,2229,'_twitter_shares','0'),(66009,2229,'_linkedin_shares','0'),(66012,2216,'_facebook_shares','0'),(66014,2216,'_twitter_shares','0'),(66015,2216,'_linkedin_shares','0'),(66030,2226,'_facebook_shares','0'),(66032,2226,'_twitter_shares','0'),(66033,2226,'_linkedin_shares','0'),(66036,2230,'_facebook_shares','0'),(66038,2230,'_twitter_shares','0'),(66039,2230,'_linkedin_shares','0'),(66042,2217,'_facebook_shares','0'),(66044,2217,'_twitter_shares','0'),(66045,2217,'_linkedin_shares','0'),(66048,2224,'_facebook_shares','0'),(66050,2224,'_twitter_shares','0'),(66051,2224,'_linkedin_shares','0'),(66054,2238,'_facebook_shares','0'),(66056,2238,'_twitter_shares','0'),(66057,2238,'_linkedin_shares','0'),(66060,2218,'_facebook_shares','0'),(66062,2218,'_twitter_shares','0'),(66063,2218,'_linkedin_shares','0'),(66066,2222,'_facebook_shares','0'),(66068,2222,'_twitter_shares','0'),(66069,2222,'_linkedin_shares','0'),(66072,2223,'_facebook_shares','0'),(66074,2223,'_twitter_shares','0'),(66075,2223,'_linkedin_shares','0'),(66078,2239,'_facebook_shares','0'),(66080,2239,'_twitter_shares','0'),(66081,2239,'_linkedin_shares','0'),(66090,2241,'_facebook_shares','0'),(66092,2241,'_twitter_shares','0'),(66093,2241,'_linkedin_shares','0'),(66384,18,'_facebook_shares','0'),(66386,18,'_twitter_shares','0'),(66387,18,'_linkedin_shares','0'),(66390,14,'_facebook_shares','0'),(66392,14,'_twitter_shares','0'),(66393,14,'_linkedin_shares','0'),(66396,2196,'_facebook_shares','0'),(66398,2196,'_twitter_shares','0'),(66399,2196,'_linkedin_shares','0'),(66402,46,'_facebook_shares','0'),(66404,46,'_twitter_shares','0'),(66405,46,'_linkedin_shares','0'),(66408,2246,'_wp_attached_file','2021/03/kubernetes-kcsp-color.png'),(66409,2246,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:33:\"2021/03/kubernetes-kcsp-color.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"kubernetes-kcsp-color-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:{}}}'),(66413,2248,'_wp_attached_file','2021/03/Kubernetes-Professional-Services-with-cert.png'),(66414,2248,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1485;s:6:\"height\";i:850;s:4:\"file\";s:54:\"2021/03/Kubernetes-Professional-Services-with-cert.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:54:\"Kubernetes-Professional-Services-with-cert-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:55:\"Kubernetes-Professional-Services-with-cert-1024x586.png\";s:5:\"width\";i:1024;s:6:\"height\";i:586;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:54:\"Kubernetes-Professional-Services-with-cert-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:54:\"Kubernetes-Professional-Services-with-cert-768x440.png\";s:5:\"width\";i:768;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:54:\"Kubernetes-Professional-Services-with-cert-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(66415,2196,'hefo_before','0'),(66416,2196,'hefo_after','0'),(66498,2249,'_edit_lock','1652419634:17'),(66500,2249,'_edit_last','17'),(66501,2249,'hefo_before','0'),(66502,2249,'hefo_after','0'),(66503,2249,'_yoast_wpseo_focuskeywords','[]'),(66504,2249,'_yoast_wpseo_keywordsynonyms','[\"digitization, digitalization\"]'),(66505,2249,'_wp_page_template','digital-transformation-2021.php'),(66506,2249,'_yoast_wpseo_content_score','90'),(66558,2259,'hefo_before','0'),(66559,2259,'hefo_after','0'),(66560,2259,'_yoast_wpseo_focuskeywords','[]'),(66561,2259,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(66562,2259,'_wp_page_template','digital-transformation-2021.php'),(66563,2259,'_yoast_wpseo_content_score','30'),(66564,2259,'_dp_original','2249'),(66565,2259,'_edit_lock','1621262816:5'),(66566,2259,'_edit_last','4'),(66699,2263,'_wp_attached_file','2021/03/logo-2.png'),(66700,2263,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1749;s:6:\"height\";i:483;s:4:\"file\";s:18:\"2021/03/logo-2.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"logo-2-300x83.png\";s:5:\"width\";i:300;s:6:\"height\";i:83;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"logo-2-1024x283.png\";s:5:\"width\";i:1024;s:6:\"height\";i:283;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"logo-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:18:\"logo-2-768x212.png\";s:5:\"width\";i:768;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"logo-2-1536x424.png\";s:5:\"width\";i:1536;s:6:\"height\";i:424;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:18:\"logo-2-500x483.png\";s:5:\"width\";i:500;s:6:\"height\";i:483;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:{}}}'),(66701,2264,'_wp_attached_file','2021/03/logo-3.png'),(66702,2264,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1425;s:6:\"height\";i:689;s:4:\"file\";s:18:\"2021/03/logo-3.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"logo-3-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:19:\"logo-3-1024x495.png\";s:5:\"width\";i:1024;s:6:\"height\";i:495;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"logo-3-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:18:\"logo-3-768x371.png\";s:5:\"width\";i:768;s:6:\"height\";i:371;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:18:\"logo-3-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(66715,2265,'_wp_attached_file','2021/03/digital-transformation.png'),(66716,2265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:330;s:4:\"file\";s:34:\"2021/03/digital-transformation.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"digital-transformation-300x77.png\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"digital-transformation-1024x264.png\";s:5:\"width\";i:1024;s:6:\"height\";i:264;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"digital-transformation-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:\"digital-transformation-768x198.png\";s:5:\"width\";i:768;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:34:\"digital-transformation-500x330.png\";s:5:\"width\";i:500;s:6:\"height\";i:330;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:{}}}'),(66717,2249,'_thumbnail_id','2454'),(66805,1924,'hefo_before','0'),(66806,1924,'hefo_after','0'),(66973,2268,'_wp_attached_file','2021/03/devops.png'),(66974,2268,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:516;s:4:\"file\";s:18:\"2021/03/devops.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"devops-300x132.png\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"devops-1024x452.png\";s:5:\"width\";i:1024;s:6:\"height\";i:452;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"devops-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:18:\"devops-768x339.png\";s:5:\"width\";i:768;s:6:\"height\";i:339;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:18:\"devops-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(67016,2271,'_wp_attached_file','2021/03/home1.png'),(67017,2271,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:592;s:4:\"file\";s:17:\"2021/03/home1.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"home1-300x123.png\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"home1-1024x421.png\";s:5:\"width\";i:1024;s:6:\"height\";i:421;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"home1-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:\"home1-768x316.png\";s:5:\"width\";i:768;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:17:\"home1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(67018,2272,'_wp_attached_file','2021/03/home2.png'),(67019,2272,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:592;s:4:\"file\";s:17:\"2021/03/home2.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"home2-300x123.png\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"home2-1024x421.png\";s:5:\"width\";i:1024;s:6:\"height\";i:421;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"home2-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:\"home2-768x316.png\";s:5:\"width\";i:768;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:17:\"home2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(67020,2273,'_wp_attached_file','2021/03/home3.png'),(67021,2273,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:592;s:4:\"file\";s:17:\"2021/03/home3.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"home3-300x123.png\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"home3-1024x421.png\";s:5:\"width\";i:1024;s:6:\"height\";i:421;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"home3-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:\"home3-768x316.png\";s:5:\"width\";i:768;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:17:\"home3-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(67028,2274,'_wp_attached_file','2021/03/dt-2.png'),(67029,2274,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:570;s:6:\"height\";i:562;s:4:\"file\";s:16:\"2021/03/dt-2.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"dt-2-300x296.png\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"dt-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:16:\"dt-2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(67030,2275,'_wp_attached_file','2021/03/dt-3.png'),(67031,2275,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:570;s:6:\"height\";i:402;s:4:\"file\";s:16:\"2021/03/dt-3.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"dt-3-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"dt-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:16:\"dt-3-500x402.png\";s:5:\"width\";i:500;s:6:\"height\";i:402;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:{}}}'),(67032,2276,'_wp_attached_file','2021/03/dt-1.png'),(67033,2276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1900;s:6:\"height\";i:490;s:4:\"file\";s:16:\"2021/03/dt-1.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"dt-1-300x77.png\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"dt-1-1024x264.png\";s:5:\"width\";i:1024;s:6:\"height\";i:264;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"dt-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:16:\"dt-1-768x198.png\";s:5:\"width\";i:768;s:6:\"height\";i:198;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"dt-1-1536x396.png\";s:5:\"width\";i:1536;s:6:\"height\";i:396;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:16:\"dt-1-500x490.png\";s:5:\"width\";i:500;s:6:\"height\";i:490;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:{}}}'),(67034,2278,'_wp_attached_file','2021/03/mrdata1.png'),(67035,2278,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:44;s:6:\"height\";i:53;s:4:\"file\";s:19:\"2021/03/mrdata1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(67036,2279,'_wp_attached_file','2021/03/mrdata2.png'),(67037,2279,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:36;s:6:\"height\";i:48;s:4:\"file\";s:19:\"2021/03/mrdata2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(67038,2281,'_wp_attached_file','2021/03/mrdata3.png'),(67039,2281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:36;s:6:\"height\";i:41;s:4:\"file\";s:19:\"2021/03/mrdata3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(67040,2285,'_wp_attached_file','2021/03/devops1.png'),(67041,2285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:805;s:6:\"height\";i:376;s:4:\"file\";s:19:\"2021/03/devops1.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"devops1-300x140.png\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"devops1-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:19:\"devops1-768x359.png\";s:5:\"width\";i:768;s:6:\"height\";i:359;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:19:\"devops1-500x376.png\";s:5:\"width\";i:500;s:6:\"height\";i:376;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:{}}}'),(67069,2177,'wpdiscuz_post_rating','5'),(67070,2177,'wpdiscuz_post_rating_count','1'),(67146,2308,'_wp_attached_file','2021/03/TC_BANNER.mp4'),(67147,2308,'_wp_attachment_metadata','a:10:{s:7:\"bitrate\";i:1125062;s:8:\"filesize\";i:562579;s:9:\"mime_type\";s:15:\"video/quicktime\";s:6:\"length\";i:4;s:16:\"length_formatted\";s:4:\"0:04\";s:5:\"width\";i:1028;s:6:\"height\";i:788;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:17:\"created_timestamp\";i:-2082844800;}'),(67181,2309,'_edit_lock','1662969229:21'),(67182,2309,'_edit_last','1'),(67183,2310,'_pinterest_shares','0'),(67184,2310,'_total_shares','0'),(67186,2311,'_pinterest_shares','0'),(67187,2311,'_total_shares','0'),(67189,2312,'_pinterest_shares','0'),(67190,2312,'_total_shares','0'),(67192,2313,'_pinterest_shares','0'),(67193,2313,'_total_shares','0'),(67195,2314,'_pinterest_shares','0'),(67196,2314,'_total_shares','0'),(67198,2315,'_pinterest_shares','0'),(67199,2315,'_total_shares','0'),(67201,2316,'_pinterest_shares','0'),(67202,2316,'_total_shares','0'),(67204,2317,'_pinterest_shares','0'),(67205,2317,'_total_shares','0'),(67207,2318,'_pinterest_shares','0'),(67208,2318,'_total_shares','0'),(67210,2319,'_pinterest_shares','0'),(67211,2319,'_total_shares','0'),(67213,2320,'_pinterest_shares','0'),(67214,2320,'_total_shares','0'),(67216,2321,'_pinterest_shares','0'),(67217,2321,'_total_shares','0'),(67219,2322,'_pinterest_shares','0'),(67220,2322,'_total_shares','0'),(67222,2323,'_pinterest_shares','0'),(67223,2323,'_total_shares','0'),(67225,2324,'_pinterest_shares','0'),(67226,2324,'_total_shares','0'),(67228,2325,'_pinterest_shares','0'),(67229,2325,'_total_shares','0'),(67231,2326,'_pinterest_shares','0'),(67232,2326,'_total_shares','0'),(67234,2327,'_pinterest_shares','0'),(67235,2327,'_total_shares','0'),(67237,2328,'_pinterest_shares','0'),(67238,2328,'_total_shares','0'),(67240,2329,'_pinterest_shares','0'),(67241,2329,'_total_shares','0'),(67243,2330,'_pinterest_shares','0'),(67244,2330,'_total_shares','0'),(67246,2331,'_pinterest_shares','0'),(67247,2331,'_total_shares','0'),(67249,2332,'_pinterest_shares','0'),(67250,2332,'_total_shares','0'),(67252,2333,'_pinterest_shares','0'),(67253,2333,'_total_shares','0'),(67255,2334,'_pinterest_shares','0'),(67256,2334,'_total_shares','0'),(67258,2335,'_pinterest_shares','0'),(67259,2335,'_total_shares','0'),(67261,2336,'_pinterest_shares','0'),(67262,2336,'_total_shares','0'),(67264,2337,'_pinterest_shares','0'),(67265,2337,'_total_shares','0'),(67267,2338,'_pinterest_shares','0'),(67268,2338,'_total_shares','0'),(67270,2339,'_pinterest_shares','0'),(67271,2339,'_total_shares','0'),(67273,2340,'_pinterest_shares','0'),(67274,2340,'_total_shares','0'),(67276,2341,'_pinterest_shares','0'),(67277,2341,'_total_shares','0'),(67279,2342,'_pinterest_shares','0'),(67280,2342,'_total_shares','0'),(67282,2343,'_pinterest_shares','0'),(67283,2343,'_total_shares','0'),(67288,2309,'_pinterest_shares','0'),(67289,2309,'_total_shares','0'),(67295,2196,'section_1_image','2248'),(67296,2196,'_section_1_image','field_60592c342d237'),(67297,2196,'section_1_title','Kubernetes Professional Services'),(67298,2196,'_section_1_title','field_60592a672d21a'),(67299,2196,'section_1_subheading','Kubernetes Certified Service Provider (KCSP)'),(67300,2196,'_section_1_subheading','field_60592a7b2d21b'),(67301,2196,'section_1_text','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.'),(67302,2196,'_section_1_text','field_60592a942d21c'),(67303,2196,'section_1_keywords_0_keyword','Cloud Native Applications'),(67304,2196,'_section_1_keywords_0_keyword','field_60592ab92d21e'),(67305,2196,'section_1_keywords_1_keyword','Cloud Native DevOps'),(67306,2196,'_section_1_keywords_1_keyword','field_60592ab92d21e'),(67307,2196,'section_1_keywords_2_keyword','Cloud Native Machine Learning'),(67308,2196,'_section_1_keywords_2_keyword','field_60592ab92d21e'),(67309,2196,'section_1_keywords','3'),(67310,2196,'_section_1_keywords','field_60592aaf2d21d'),(67311,2196,'section_1_cta_text','Book Consultation Now'),(67312,2196,'_section_1_cta_text','field_60592bb52d231'),(67313,2196,'section_1_cta_link','/contact'),(67314,2196,'_section_1_cta_link','field_60592bc02d232'),(67315,2196,'section_1',''),(67316,2196,'_section_1','field_60592a3f2d219'),(67317,2196,'services_0_service','Cloud Native DevOps with Kubernetes and Serverless'),(67318,2196,'_services_0_service','field_60592c042d236'),(67319,2196,'services_1_service','Cloud Native Transformation and Strategy'),(67320,2196,'_services_1_service','field_60592c042d236'),(67321,2196,'services_2_service','Continuous Security - DevSecOps'),(67322,2196,'_services_2_service','field_60592c042d236'),(67323,2196,'services_3_service','Multi-Cloud Deployment Strategy'),(67324,2196,'_services_3_service','field_60592c042d236'),(67325,2196,'services_4_service','Design, Build and Monitor Microservices Applications'),(67326,2196,'_services_4_service','field_60592c042d236'),(67327,2196,'services_5_service','Application Modernization - Replatforming with Kubernetes '),(67328,2196,'_services_5_service','field_60592c042d236'),(67329,2196,'services_6_service','Continuous Delivery and Automation - Faster Release Cycle'),(67330,2196,'_services_6_service','field_60592c042d236'),(67331,2196,'services_7_service','Production-Grade Kubernetes Support'),(67332,2196,'_services_7_service','field_60592c042d236'),(67333,2196,'services','8'),(67334,2196,'_services','field_60592bfc2d235'),(67335,2196,'section_2_image','2208'),(67336,2196,'_section_2_image','field_60592c4e2d239'),(67337,2196,'section_2_title','Learn, Inform, Plan'),(67338,2196,'_section_2_title','field_60592b6e2d220'),(67339,2196,'section_2_subheading','Plan Your Next Kubernetes Project with Translucent'),(67340,2196,'_section_2_subheading','field_60592b6e2d221'),(67341,2196,'section_2_text','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(67342,2196,'_section_2_text','field_60592b6e2d222'),(67343,2196,'section_2_keywords_0_keyword','We Listen'),(67344,2196,'_section_2_keywords_0_keyword','field_60592b6e2d224'),(67345,2196,'section_2_keywords_1_keyword','We Learn'),(67346,2196,'_section_2_keywords_1_keyword','field_60592b6e2d224'),(67347,2196,'section_2_keywords_2_keyword','We Inform'),(67348,2196,'_section_2_keywords_2_keyword','field_60592b6e2d224'),(67349,2196,'section_2_keywords_3_keyword','We Plan'),(67350,2196,'_section_2_keywords_3_keyword','field_60592b6e2d224'),(67351,2196,'section_2_keywords','4'),(67352,2196,'_section_2_keywords','field_60592b6e2d223'),(67353,2196,'section_2',''),(67354,2196,'_section_2','field_60592b6e2d21f'),(67355,2196,'section_3_image','2209'),(67356,2196,'_section_3_image','field_60592c5d2d23a'),(67357,2196,'section_3_title','Kubernetes Consulting'),(67358,2196,'_section_3_title','field_60592b762d226'),(67359,2196,'section_3_subheading','Driving Digital Transformation with Containers and Kubernetes'),(67360,2196,'_section_3_subheading','field_60592b762d227'),(67361,2196,'section_3_text','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(67362,2196,'_section_3_text','field_60592b762d228'),(67363,2196,'section_3_keywords_0_keyword','Build'),(67364,2196,'_section_3_keywords_0_keyword','field_60592b762d22a'),(67365,2196,'section_3_keywords_1_keyword','Rebuild'),(67366,2196,'_section_3_keywords_1_keyword','field_60592b762d22a'),(67367,2196,'section_3_keywords_2_keyword','Replatform'),(67368,2196,'_section_3_keywords_2_keyword','field_60592b762d22a'),(67369,2196,'section_3_keywords','3'),(67370,2196,'_section_3_keywords','field_60592b762d229'),(67371,2196,'section_3_cta_text','Book Consultation Now'),(67372,2196,'_section_3_cta_text','field_60592bcc2d233'),(67373,2196,'section_3_cta_link','/contact'),(67374,2196,'_section_3_cta_link','field_60592bd22d234'),(67375,2196,'section_3',''),(67376,2196,'_section_3','field_60592b762d225'),(67377,2196,'section_4_image','2212'),(67378,2196,'_section_4_image','field_60592c722d23c'),(67379,2196,'section_4_title','Support and Maintenance'),(67380,2196,'_section_4_title','field_60592b882d22c'),(67381,2196,'section_4_subheading','24/7 Support and Maintenance with our Site Reliability Engineering Services'),(67382,2196,'_section_4_subheading','field_60592b882d22d'),(67383,2196,'section_4_text','From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(67384,2196,'_section_4_text','field_60592b882d22e'),(67385,2196,'section_4_keywords_0_keyword','SRE: Site Reliability Engineering'),(67386,2196,'_section_4_keywords_0_keyword','field_60592b882d230'),(67387,2196,'section_4_keywords_1_keyword','SLA: Service Level Agreements'),(67388,2196,'_section_4_keywords_1_keyword','field_60592b882d230'),(67389,2196,'section_4_keywords_2_keyword','SLO: Service Level Objectives'),(67390,2196,'_section_4_keywords_2_keyword','field_60592b882d230'),(67391,2196,'section_4_keywords_3_keyword','SLI: Service Level Indicator'),(67392,2196,'_section_4_keywords_3_keyword','field_60592b882d230'),(67393,2196,'section_4_keywords','4'),(67394,2196,'_section_4_keywords','field_60592b882d22f'),(67395,2196,'section_4',''),(67396,2196,'_section_4','field_60592b882d22b'),(67532,2347,'_pinterest_shares','0'),(67533,2347,'_total_shares','0'),(67535,2348,'_pinterest_shares','0'),(67536,2348,'_total_shares','0'),(67538,2349,'_pinterest_shares','0'),(67539,2349,'_total_shares','0'),(67541,2350,'_pinterest_shares','0'),(67542,2350,'_total_shares','0'),(67547,2352,'_pinterest_shares','0'),(67548,2352,'_total_shares','0'),(67550,2351,'_pinterest_shares','0'),(67551,2351,'_total_shares','0'),(67559,2346,'_pinterest_shares','0'),(67560,2346,'_total_shares','0'),(67574,2358,'_pinterest_shares','0'),(67575,2358,'_total_shares','0'),(67577,2359,'_pinterest_shares','0'),(67578,2359,'_total_shares','0'),(67580,2360,'_pinterest_shares','0'),(67581,2360,'_total_shares','0'),(67583,2361,'_pinterest_shares','0'),(67584,2361,'_total_shares','0'),(67589,2363,'_pinterest_shares','0'),(67590,2363,'_total_shares','0'),(67592,2362,'_pinterest_shares','0'),(67593,2362,'_total_shares','0'),(67601,2365,'_pinterest_shares','0'),(67602,2365,'_total_shares','0'),(67604,2366,'_pinterest_shares','0'),(67605,2366,'_total_shares','0'),(67607,2367,'_pinterest_shares','0'),(67608,2367,'_total_shares','0'),(67610,2368,'_pinterest_shares','0'),(67611,2368,'_total_shares','0'),(67616,2370,'_pinterest_shares','0'),(67617,2370,'_total_shares','0'),(67619,2369,'_pinterest_shares','0'),(67620,2369,'_total_shares','0'),(67634,2374,'_pinterest_shares','0'),(67635,2374,'_total_shares','0'),(67637,2375,'_pinterest_shares','0'),(67638,2375,'_total_shares','0'),(67640,2376,'_pinterest_shares','0'),(67641,2376,'_total_shares','0'),(67643,2377,'_pinterest_shares','0'),(67644,2377,'_total_shares','0'),(67649,2379,'_pinterest_shares','0'),(67650,2379,'_total_shares','0'),(67652,2378,'_pinterest_shares','0'),(67653,2378,'_total_shares','0'),(67661,2345,'_edit_lock','1616464254:1'),(67662,2345,'_edit_last','1'),(67669,2382,'_pinterest_shares','0'),(67670,2382,'_total_shares','0'),(67672,2383,'_pinterest_shares','0'),(67673,2383,'_total_shares','0'),(67675,2384,'_pinterest_shares','0'),(67676,2384,'_total_shares','0'),(67678,2385,'_pinterest_shares','0'),(67679,2385,'_total_shares','0'),(67681,2386,'_pinterest_shares','0'),(67682,2386,'_total_shares','0'),(67687,2388,'_pinterest_shares','0'),(67688,2388,'_total_shares','0'),(67690,2389,'_pinterest_shares','0'),(67691,2389,'_total_shares','0'),(67693,2390,'_pinterest_shares','0'),(67694,2390,'_total_shares','0'),(67696,2391,'_pinterest_shares','0'),(67697,2391,'_total_shares','0'),(67699,2392,'_pinterest_shares','0'),(67700,2392,'_total_shares','0'),(67702,2393,'_pinterest_shares','0'),(67703,2393,'_total_shares','0'),(67726,1822,'hefo_before','0'),(67727,1822,'hefo_after','0'),(67728,1822,'section_1_image','1931'),(67729,1822,'_section_1_image','field_605942092a128'),(67730,1822,'section_1_title','TEKStack - Kubernetes Technology Stack'),(67731,1822,'_section_1_title','field_605942092a176'),(67732,1822,'section_1_subheading','Data-Driven application platform tools and processes, specialized in building cloud native applications.'),(67733,1822,'_section_1_subheading','field_605942092a1c3'),(67734,1822,'section_1_text','Our team of Kubernetes Certified (KCSP) engineers has worked on all the major cloud platforms on projects ranging from cloud native applications, DevOps, data engineering, chatbots, natural language processing, machine learning all built on top of Kubernetes with a focus on data.\r\n\r\nTEKStack Kubernetes Technology Stack is a collection of Kubernetes platform tools, best practices and processes driven by clients\' needs and requirements.\r\n\r\nSupported by open source and production-ready.'),(67735,1822,'_section_1_text','field_605942092a206'),(67736,1822,'section_1_keywords_0_keyword','Replatforming'),(67737,1822,'_section_1_keywords_0_keyword','field_60594209f3e6d'),(67738,1822,'section_1_keywords_1_keyword','Modern Applications'),(67739,1822,'_section_1_keywords_1_keyword','field_60594209f3e6d'),(67740,1822,'section_1_keywords_2_keyword','Kubernetes DevOps'),(67741,1822,'_section_1_keywords_2_keyword','field_60594209f3e6d'),(67742,1822,'section_1_keywords_3_keyword','Enterprise Search'),(67743,1822,'_section_1_keywords_3_keyword','field_60594209f3e6d'),(67744,1822,'section_1_keywords_4_keyword','Smart Data Lake'),(67745,1822,'_section_1_keywords_4_keyword','field_60594209f3e6d'),(67746,1822,'section_1_keywords_5_keyword','End-to-End Machine Learning'),(67747,1822,'_section_1_keywords_5_keyword','field_60594209f3e6d'),(67748,1822,'section_1_keywords','6'),(67749,1822,'_section_1_keywords','field_605942092a274'),(67750,1822,'section_1',''),(67751,1822,'_section_1','field_60594208ec82e'),(67752,1822,'services',''),(67753,1822,'_services','field_60594208ec880'),(67754,1822,'section_2_image','1933'),(67755,1822,'_section_2_image','field_6059420b73dfe'),(67756,1822,'section_2_title','Cloud Native Kubernetes Tools'),(67757,1822,'_section_2_title','field_6059420b73e74'),(67758,1822,'section_2_subheading','Technology can make everyone’s job easier – when you take a holistic and human-centric approach.'),(67759,1822,'_section_2_subheading','field_6059420b73ee3'),(67760,1822,'section_2_text','TEKStack platform tools are built from the ground up to support your enterprise data-driven applications. Save time and money by using TEKStack tools for your next project. TEKStack can be used for your new project or expand your current offerings; support your entire data journey, from inception to insights to successful customer engagements.'),(67761,1822,'_section_2_text','field_6059420b73f3c'),(67762,1822,'section_2_keywords_0_keyword','Kubernetes'),(67763,1822,'_section_2_keywords_0_keyword','field_6059420c41697'),(67764,1822,'section_2_keywords_1_keyword','Helm'),(67765,1822,'_section_2_keywords_1_keyword','field_6059420c41697'),(67766,1822,'section_2_keywords_2_keyword','Prometheus'),(67767,1822,'_section_2_keywords_2_keyword','field_6059420c41697'),(67768,1822,'section_2_keywords_3_keyword','Terraform'),(67769,1822,'_section_2_keywords_3_keyword','field_6059420c41697'),(67770,1822,'section_2_keywords_4_keyword','Spinnaker'),(67771,1822,'_section_2_keywords_4_keyword','field_6059420c41697'),(67772,1822,'section_2_keywords','7'),(67773,1822,'_section_2_keywords','field_6059420b73f90'),(67774,1822,'section_2',''),(67775,1822,'_section_2','field_60594208ec8c9'),(67776,1822,'section_3_image','1932'),(67777,1822,'_section_3_image','field_6059420ce2747'),(67778,1822,'section_3_title','Delivering Amazing Kubernetes Solutions'),(67779,1822,'_section_3_title','field_6059420ce279c'),(67780,1822,'section_3_subheading','Expand your limits and enhance your productivity – so you can be more agile with evolving customer needs and market shifts.'),(67781,1822,'_section_3_subheading','field_6059420ce27ef'),(67782,1822,'section_3_text','TEKStack tools are built on the foundation of Kubernetes to make your business in the cloud faster, more secure, and scalable. TEKStack saves you money by delivering your application to the end user more quickly. Our DevOps features support your enterprise applications by monitoring and reacting to your application\'s needs in real-time. With TEKStack, continuous integration and continuous delivery, we can integrate and automate pipelines.'),(67783,1822,'_section_3_text','field_6059420ce2832'),(67784,1822,'section_3_keywords_0_keyword','100% GitOps Based'),(67785,1822,'_section_3_keywords_0_keyword','field_6059420db2a80'),(67786,1822,'section_3_keywords_1_keyword','Configuration as Code'),(67787,1822,'_section_3_keywords_1_keyword','field_6059420db2a80'),(67788,1822,'section_3_keywords_2_keyword','Declarative Pipelines'),(67789,1822,'_section_3_keywords_2_keyword','field_6059420db2a80'),(67790,1822,'section_3_keywords_3_keyword','Observability'),(67791,1822,'_section_3_keywords_3_keyword','field_6059420db2a80'),(67792,1822,'section_3_keywords_4_keyword','Cloud Agnostic (AWS | GCP | Azure)'),(67793,1822,'_section_3_keywords_4_keyword','field_6059420db2a80'),(67794,1822,'section_3_keywords_5_keyword','High Dev-Prod Parity'),(67795,1822,'_section_3_keywords_5_keyword','field_6059420db2a80'),(67796,1822,'section_3_keywords','6'),(67797,1822,'_section_3_keywords','field_6059420ce2874'),(67798,1822,'section_3',''),(67799,1822,'_section_3','field_60594208ec909'),(67800,1822,'section_4_image','1928'),(67801,1822,'_section_4_image','field_6059420ec7401'),(67802,1822,'section_4_title','Data Experts Alongside Our Tools'),(67803,1822,'_section_4_title','field_6059420ec7454'),(67804,1822,'section_4_subheading','Technology is only as powerful and effective as its users.'),(67805,1822,'_section_4_subheading','field_6059420ec74a0'),(67806,1822,'section_4_text','Our TEKStack platform tools draw their strength from the people that support them. Our human expertise creates applications that best leverage your data while drawing on ML technologies – this approach puts your applications ahead of what the very best have to offer. The platform tools accommodate an end-to-end ML lifecycle, with a particular focus on data engineering, data ingestion and pre-processing smart data lake design, and lightweight ML pipelines. Our data journey expertise allows us to automate elements of the ML pipeline in ways that make it easier to create assets, which in turn allows us to address a greater range of customer challenges.'),(67807,1822,'_section_4_text','field_6059420ec74ee'),(67808,1822,'section_4_keywords_0_keyword','Enable Machine Learning'),(67809,1822,'_section_4_keywords_0_keyword','field_6059420fa2108'),(67810,1822,'section_4_keywords_1_keyword','Supported by Open Source'),(67811,1822,'_section_4_keywords_1_keyword','field_6059420fa2108'),(67812,1822,'section_4_keywords_2_keyword','Easy to Use'),(67813,1822,'_section_4_keywords_2_keyword','field_6059420fa2108'),(67814,1822,'section_4_keywords_3_keyword','Empowered Decisions'),(67815,1822,'_section_4_keywords_3_keyword','field_6059420fa2108'),(67816,1822,'section_4_keywords_4_keyword','Managed Kubeflow'),(67817,1822,'_section_4_keywords_4_keyword','field_6059420fa2108'),(67818,1822,'section_4_keywords_5_keyword','User Authentication and Authorization'),(67819,1822,'_section_4_keywords_5_keyword','field_6059420fa2108'),(67820,1822,'section_4_keywords','6'),(67821,1822,'_section_4_keywords','field_6059420ec752d'),(67822,1822,'section_4',''),(67823,1822,'_section_4','field_60594208ec95c'),(67824,1822,'section_5_image','1930'),(67825,1822,'_section_5_image','field_60594243d91f0'),(67826,1822,'section_5_title','Enterprise Search'),(67827,1822,'_section_5_title','field_60594243d91f1'),(67828,1822,'section_5_subheading','Search your data faster than you can think – and make data-informed insights and decisions.'),(67829,1822,'_section_5_subheading','field_60594243d91f2'),(67830,1822,'section_5_text','TEKStack applies natural language processing (NLP) technologies to our enterprise search solutions, with the goal of creating faster and improved database search. This allows for context-dependent search results, more informed insights, and faster business decision-making. We first process information from the databases we ingest into our platform, then tag information based on their type (name entity recognition). We then leverage this information to produce enterprise search solutions that are easier to use, and more informative than traditional full-text search options.'),(67831,1822,'_section_5_text','field_60594243d91f3'),(67832,1822,'section_5_keywords_0_keyword','Knowledge Graph'),(67833,1822,'_section_5_keywords_0_keyword','field_60594243d91f5'),(67834,1822,'section_5_keywords_1_keyword','TensorFlow'),(67835,1822,'_section_5_keywords_1_keyword','field_60594243d91f5'),(67836,1822,'section_5_keywords_2_keyword','KubeFlow'),(67837,1822,'_section_5_keywords_2_keyword','field_60594243d91f5'),(67838,1822,'section_5_keywords_3_keyword','Airflow'),(67839,1822,'_section_5_keywords_3_keyword','field_60594243d91f5'),(67840,1822,'section_5_keywords_4_keyword','Kafka'),(67841,1822,'_section_5_keywords_4_keyword','field_60594243d91f5'),(67842,1822,'section_5_keywords','5'),(67843,1822,'_section_5_keywords','field_60594243d91f4'),(67844,1822,'section_5',''),(67845,1822,'_section_5','field_60594243d91ef'),(67846,1822,'section_6_image','1929'),(67847,1822,'_section_6_image','field_60594249d91f7'),(67848,1822,'section_6_title','Derive Greater from Multi-Model Data Lake'),(67849,1822,'_section_6_title','field_60594249d91f8'),(67850,1822,'section_6_subheading','The right data at the right time has value greater than the sum of its parts.'),(67851,1822,'_section_6_subheading','field_60594249d91f9'),(67852,1822,'section_6_text','TEKStack platform tools include a scalable, multi-model data lake that supports any and every database best suited for the data type ingested into our platform. These databases are consolidated in a way that centralizes and simplifies data security and governance, and defines the source of truth for the datasets. The data lake is “smart”, in that it contains metadata that describes itself, which can be efficiently queried using a built-in data catalog. The data catalog allows users a greater ability to identify their data of interest across a number of different databases quickly, without the need to enlist help from a database expert.'),(67853,1822,'_section_6_text','field_60594249d91fa'),(67854,1822,'section_6_keywords_0_keyword','Multi-model Data Lake'),(67855,1822,'_section_6_keywords_0_keyword','field_60594249d91fc'),(67856,1822,'section_6_keywords_1_keyword','Data Governance'),(67857,1822,'_section_6_keywords_1_keyword','field_60594249d91fc'),(67858,1822,'section_6_keywords_2_keyword','Elasticsearch'),(67859,1822,'_section_6_keywords_2_keyword','field_60594249d91fc'),(67860,1822,'section_6_keywords_3_keyword','Blockchain- Immudb'),(67861,1822,'_section_6_keywords_3_keyword','field_60594249d91fc'),(67862,1822,'section_6_keywords_4_keyword','Neo4j'),(67863,1822,'_section_6_keywords_4_keyword','field_60594249d91fc'),(67864,1822,'section_6_keywords','7'),(67865,1822,'_section_6_keywords','field_60594249d91fb'),(67866,1822,'section_6',''),(67867,1822,'_section_6','field_60594249d91f6'),(68035,2357,'_pinterest_shares','0'),(68036,2357,'_total_shares','0'),(68038,2364,'_pinterest_shares','0'),(68039,2364,'_total_shares','0'),(68041,2373,'_pinterest_shares','0'),(68042,2373,'_total_shares','0'),(68044,2380,'_pinterest_shares','0'),(68045,2380,'_total_shares','0'),(68047,2387,'_pinterest_shares','0'),(68048,2387,'_total_shares','0'),(68229,2381,'_pinterest_shares','0'),(68230,2381,'_total_shares','0'),(68235,2345,'_pinterest_shares','0'),(68236,2345,'_total_shares','0'),(68246,2400,'_wp_attached_file','2021/03/watermark-1.png'),(68247,2400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:233;s:4:\"file\";s:23:\"2021/03/watermark-1.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"watermark-1-300x175.png\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"watermark-1-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:{}}}'),(68248,2401,'_wp_attached_file','2021/03/watermark-2.png'),(68249,2401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:379;s:4:\"file\";s:23:\"2021/03/watermark-2.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"watermark-2-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"watermark-2-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:{}}}'),(68250,2402,'_wp_attached_file','2021/03/watermark-3.png'),(68251,2402,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:290;s:4:\"file\";s:23:\"2021/03/watermark-3.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"watermark-3-300x218.png\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"watermark-3-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:{}}}'),(68252,2403,'_wp_attached_file','2021/03/watermark-4.png'),(68253,2403,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:337;s:4:\"file\";s:23:\"2021/03/watermark-4.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"watermark-4-300x253.png\";s:5:\"width\";i:300;s:6:\"height\";i:253;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"watermark-4-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:{}}}'),(68269,2404,'_edit_lock','1662349698:21'),(68270,2404,'_edit_last','1'),(68274,2406,'_pinterest_shares','0'),(68275,2406,'_total_shares','0'),(68277,2407,'_pinterest_shares','0'),(68278,2407,'_total_shares','0'),(68280,2408,'_pinterest_shares','0'),(68281,2408,'_total_shares','0'),(68283,2409,'_pinterest_shares','0'),(68284,2409,'_total_shares','0'),(68286,2410,'_pinterest_shares','0'),(68287,2410,'_total_shares','0'),(68289,2411,'_pinterest_shares','0'),(68290,2411,'_total_shares','0'),(68295,2413,'_pinterest_shares','0'),(68296,2413,'_total_shares','0'),(68298,2414,'_pinterest_shares','0'),(68299,2414,'_total_shares','0'),(68301,2415,'_pinterest_shares','0'),(68302,2415,'_total_shares','0'),(68304,2416,'_pinterest_shares','0'),(68305,2416,'_total_shares','0'),(68310,2418,'_pinterest_shares','0'),(68311,2418,'_total_shares','0'),(68313,2419,'_pinterest_shares','0'),(68314,2419,'_total_shares','0'),(68316,2420,'_pinterest_shares','0'),(68317,2420,'_total_shares','0'),(68319,2421,'_pinterest_shares','0'),(68320,2421,'_total_shares','0'),(68322,2422,'_pinterest_shares','0'),(68323,2422,'_total_shares','0'),(68325,2423,'_pinterest_shares','0'),(68326,2423,'_total_shares','0'),(68328,2424,'_pinterest_shares','0'),(68329,2424,'_total_shares','0'),(68349,2431,'_pinterest_shares','0'),(68350,2431,'_total_shares','0'),(68374,1924,'banners',''),(68375,1924,'_banners','field_6059d073ba0ba'),(68376,1924,'blog_section_title',''),(68377,1924,'_blog_section_title','field_6059d32dba0c4'),(68378,1924,'inform_and_learn',''),(68379,1924,'_inform_and_learn','field_6059d34dba0c5'),(68380,1924,'inception_and_discovery',''),(68381,1924,'_inception_and_discovery','field_6059d361ba0c6'),(68382,1924,'digital_transformation',''),(68383,1924,'_digital_transformation','field_6059d375ba0c7'),(68384,1924,'services_microservices',''),(68385,1924,'_services_microservices','field_6059d397ba0c8'),(68386,1924,'services_microservices_image',''),(68387,1924,'_services_microservices_image','field_6059d3b9ba0c9'),(68388,1924,'services_machine',''),(68389,1924,'_services_machine','field_6059d3ccba0ca'),(68390,1924,'services_machine_image',''),(68391,1924,'_services_machine_image','field_6059d3e2ba0cb'),(68392,1924,'services_devops',''),(68393,1924,'_services_devops','field_6059d402ba0cc'),(68394,1924,'services_devops_image',''),(68395,1924,'_services_devops_image','field_6059d412ba0cd'),(68396,1924,'case_study_title','Sick Kids Hospital'),(68397,1924,'_case_study_title','field_6059d43fba0cf'),(68398,1924,'case_study_description','At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum'),(68399,1924,'_case_study_description','field_6059d44aba0d0'),(68400,1924,'case_study_image','2215'),(68401,1924,'_case_study_image','field_6059d459ba0d1'),(68402,1924,'case_study_link','#'),(68403,1924,'_case_study_link','field_6059d471ba0d2'),(68404,1924,'clients','10'),(68405,1924,'_clients','field_6059d489ba0d3'),(68406,1924,'case_study_2_title',''),(68407,1924,'_case_study_2_title','field_5c82d24ccbac6'),(68408,1924,'case_study_2_text',''),(68409,1924,'_case_study_2_text','field_5c82d258cbac7'),(68410,1924,'case_study_2_image',''),(68411,1924,'_case_study_2_image','field_5c82d266cbac8'),(68412,1924,'case_study_2_link',''),(68413,1924,'_case_study_2_link','field_5c82d275cbac9'),(68414,1924,'case_study_3_title',''),(68415,1924,'_case_study_3_title','field_5c82d24ccbac6'),(68416,1924,'case_study_3_text',''),(68417,1924,'_case_study_3_text','field_5c82d258cbac7'),(68418,1924,'case_study_3_image',''),(68419,1924,'_case_study_3_image','field_5c82d266cbac8'),(68420,1924,'case_study_3_link',''),(68421,1924,'_case_study_3_link','field_5c82d275cbac9'),(68538,2405,'_pinterest_shares','0'),(68539,2405,'_total_shares','0'),(68547,2433,'_wp_attached_file','2021/03/human-devops.png'),(68548,2433,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:918;s:6:\"height\";i:780;s:4:\"file\";s:24:\"2021/03/human-devops.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"human-devops-300x255.png\";s:5:\"width\";i:300;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"human-devops-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:24:\"human-devops-768x653.png\";s:5:\"width\";i:768;s:6:\"height\";i:653;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:24:\"human-devops-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(68549,2434,'_wp_attached_file','2021/03/human-microservices.png'),(68550,2434,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:918;s:6:\"height\";i:783;s:4:\"file\";s:31:\"2021/03/human-microservices.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"human-microservices-300x256.png\";s:5:\"width\";i:300;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"human-microservices-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:\"human-microservices-768x655.png\";s:5:\"width\";i:768;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:31:\"human-microservices-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(68551,2435,'_wp_attached_file','2021/03/human-ml.png'),(68552,2435,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:918;s:6:\"height\";i:783;s:4:\"file\";s:20:\"2021/03/human-ml.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"human-ml-300x256.png\";s:5:\"width\";i:300;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"human-ml-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:20:\"human-ml-768x655.png\";s:5:\"width\";i:768;s:6:\"height\";i:655;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:20:\"human-ml-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(68585,1924,'clients_0_image','793'),(68586,1924,'_clients_0_image','field_6059d493ba0d4'),(68587,1924,'clients_1_image','794'),(68588,1924,'_clients_1_image','field_6059d493ba0d4'),(68589,1924,'clients_2_image','623'),(68590,1924,'_clients_2_image','field_6059d493ba0d4'),(68591,1924,'clients_3_image','796'),(68592,1924,'_clients_3_image','field_6059d493ba0d4'),(68593,1924,'clients_4_image','797'),(68594,1924,'_clients_4_image','field_6059d493ba0d4'),(68595,1924,'clients_5_image','798'),(68596,1924,'_clients_5_image','field_6059d493ba0d4'),(68597,1924,'clients_6_image','799'),(68598,1924,'_clients_6_image','field_6059d493ba0d4'),(68599,1924,'clients_7_image','800'),(68600,1924,'_clients_7_image','field_6059d493ba0d4'),(68601,1924,'clients_8_image','801'),(68602,1924,'_clients_8_image','field_6059d493ba0d4'),(68603,1924,'clients_9_image','802'),(68604,1924,'_clients_9_image','field_6059d493ba0d4'),(68776,624,'_pinterest_shares','0'),(68777,624,'_total_shares','0'),(68809,1924,'case_title',''),(68810,1924,'_case_title','field_6059e3a6eec00'),(68811,1924,'case_description',''),(68812,1924,'_case_description','field_6059e3bdeec01'),(68813,1924,'case_image',''),(68814,1924,'_case_image','field_6059e3d7eec02'),(68815,1924,'case_link','#'),(68816,1924,'_case_link','field_6059e3e6eec03'),(68993,2437,'_pinterest_shares','0'),(68994,2437,'_total_shares','0'),(68996,2438,'_pinterest_shares','0'),(68997,2438,'_total_shares','0'),(68999,2439,'_pinterest_shares','0'),(69000,2439,'_total_shares','0'),(69002,2440,'_pinterest_shares','0'),(69003,2440,'_total_shares','0'),(69005,2430,'_pinterest_shares','0'),(69006,2430,'_total_shares','0'),(70036,2452,'_wp_attached_file','2021/03/0012_infographic_rob_1170x500px-01-wo-text-v2.png'),(70037,2452,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:394;s:4:\"file\";s:57:\"2021/03/0012_infographic_rob_1170x500px-01-wo-text-v2.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"0012_infographic_rob_1170x500px-01-wo-text-v2-300x101.png\";s:5:\"width\";i:300;s:6:\"height\";i:101;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:58:\"0012_infographic_rob_1170x500px-01-wo-text-v2-1024x345.png\";s:5:\"width\";i:1024;s:6:\"height\";i:345;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"0012_infographic_rob_1170x500px-01-wo-text-v2-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:57:\"0012_infographic_rob_1170x500px-01-wo-text-v2-768x259.png\";s:5:\"width\";i:768;s:6:\"height\";i:259;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:57:\"0012_infographic_rob_1170x500px-01-wo-text-v2-500x394.png\";s:5:\"width\";i:500;s:6:\"height\";i:394;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:{}}}'),(70044,2454,'_wp_attached_file','2021/03/0004_banner_header_datadriven-scaled.jpg'),(70045,2454,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:612;s:4:\"file\";s:48:\"2021/03/0004_banner_header_datadriven-scaled.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"0004_banner_header_datadriven-300x72.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:72;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"0004_banner_header_datadriven-1024x245.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"0004_banner_header_datadriven-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:\"0004_banner_header_datadriven-768x184.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:184;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:42:\"0004_banner_header_datadriven-1536x367.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:367;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:42:\"0004_banner_header_datadriven-2048x490.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:41:\"0004_banner_header_datadriven-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}s:14:\"original_image\";s:33:\"0004_banner_header_datadriven.jpg\";}'),(70190,1692,'wpdiscuz_post_rating','5'),(70191,1692,'wpdiscuz_post_rating_count','1'),(71037,2463,'_edit_lock','1617730972:9'),(71039,2464,'_wp_attached_file','2021/04/Kubernetes-services.png'),(71040,2464,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:31:\"2021/04/Kubernetes-services.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Kubernetes-services-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Kubernetes-services-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Kubernetes-services-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:\"Kubernetes-services-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:31:\"Kubernetes-services-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(71041,2464,'_wp_attachment_image_alt','Kubernetes professional services with cloud native solutions'),(71042,2463,'_oembed_7c8188b4916b44d5298b04e1ed227f2b','
Kubernetes Professional Services
'),(71043,2463,'_oembed_time_7c8188b4916b44d5298b04e1ed227f2b','1617647246'),(71044,2463,'_oembed_affa89a9a3963d2ab1cc6864f62f4bf9','
TEKStack AI
'),(71045,2463,'_oembed_time_affa89a9a3963d2ab1cc6864f62f4bf9','1617647246'),(71046,2463,'_edit_last','9'),(71047,2463,'hefo_before','0'),(71048,2463,'hefo_after','0'),(71049,2463,'_yoast_wpseo_content_score','30'),(71050,2463,'_yoast_wpseo_focuskeywords','[]'),(71051,2463,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(71052,2468,'_wp_attached_file','2021/04/News-release-kubernetes-service-page.png'),(71053,2468,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:48:\"2021/04/News-release-kubernetes-service-page.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"News-release-kubernetes-service-page-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"News-release-kubernetes-service-page-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"News-release-kubernetes-service-page-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:\"News-release-kubernetes-service-page-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:48:\"News-release-kubernetes-service-page-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(71054,2463,'_thumbnail_id','2468'),(71055,2463,'_yoast_wpseo_primary_category','1022'),(71062,2470,'_edit_lock','1617895644:9'),(71064,2470,'_edit_last','9'),(71065,2470,'hefo_before','0'),(71066,2470,'hefo_after','0'),(71067,2470,'_yoast_wpseo_focuskeywords','[]'),(71068,2470,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(71069,2470,'_yoast_wpseo_content_score','30'),(71076,2473,'_wp_attached_file','2021/04/AMY_NRC-IRAP_2-1200x675-1.jpg'),(71077,2473,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:675;s:4:\"file\";s:37:\"2021/04/AMY_NRC-IRAP_2-1200x675-1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"AMY_NRC-IRAP_2-1200x675-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:38:\"AMY_NRC-IRAP_2-1200x675-1-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"AMY_NRC-IRAP_2-1200x675-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:37:\"AMY_NRC-IRAP_2-1200x675-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:37:\"AMY_NRC-IRAP_2-1200x675-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(71078,2477,'_wp_attached_file','2021/04/Bias-in-AI-Course.png'),(71079,2477,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:29:\"2021/04/Bias-in-AI-Course.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"Bias-in-AI-Course-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"Bias-in-AI-Course-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Bias-in-AI-Course-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:\"Bias-in-AI-Course-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:29:\"Bias-in-AI-Course-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(71080,2477,'_wp_attachment_image_alt','Bias in AI course by the vector institute'),(71081,2470,'_thumbnail_id','2477'),(71082,2470,'_yoast_wpseo_primary_category','1022'),(71089,2478,'_wp_attached_file','2021/04/image-11.png'),(71090,2478,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:20:\"2021/04/image-11.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image-11-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:21:\"image-11-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:20:\"image-11-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:20:\"image-11-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:21:\"image-11-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:20:\"image-11-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(71103,2481,'_wp_attached_file','2021/04/0011_new_jakub_blog_banners_Bias_in_AI-CERTIFICATE.png'),(71104,2481,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1881;s:6:\"height\";i:628;s:4:\"file\";s:62:\"2021/04/0011_new_jakub_blog_banners_Bias_in_AI-CERTIFICATE.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:62:\"0011_new_jakub_blog_banners_Bias_in_AI-CERTIFICATE-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"0011_new_jakub_blog_banners_Bias_in_AI-CERTIFICATE-1024x342.png\";s:5:\"width\";i:1024;s:6:\"height\";i:342;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"0011_new_jakub_blog_banners_Bias_in_AI-CERTIFICATE-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:62:\"0011_new_jakub_blog_banners_Bias_in_AI-CERTIFICATE-768x256.png\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:63:\"0011_new_jakub_blog_banners_Bias_in_AI-CERTIFICATE-1536x513.png\";s:5:\"width\";i:1536;s:6:\"height\";i:513;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:62:\"0011_new_jakub_blog_banners_Bias_in_AI-CERTIFICATE-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(71967,1822,'section_2_keywords_5_keyword','Vault'),(71968,1822,'_section_2_keywords_5_keyword','field_6059420c41697'),(71969,1822,'section_2_keywords_6_keyword','Jenkins'),(71970,1822,'_section_2_keywords_6_keyword','field_6059420c41697'),(73192,1822,'section_6_keywords_5_keyword','MinIO'),(73193,1822,'_section_6_keywords_5_keyword','field_60594249d91fc'),(73194,1822,'section_6_keywords_6_keyword','Amundsen '),(73195,1822,'_section_6_keywords_6_keyword','field_60594249d91fc'),(74448,2508,'_wp_attached_file','2021/04/0013_tc_WEBSITE_assets_devops_consulting_banner_1440x368px.png'),(74449,2508,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:368;s:4:\"file\";s:70:\"2021/04/0013_tc_WEBSITE_assets_devops_consulting_banner_1440x368px.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:69:\"0013_tc_WEBSITE_assets_devops_consulting_banner_1440x368px-300x77.png\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:71:\"0013_tc_WEBSITE_assets_devops_consulting_banner_1440x368px-1024x262.png\";s:5:\"width\";i:1024;s:6:\"height\";i:262;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:70:\"0013_tc_WEBSITE_assets_devops_consulting_banner_1440x368px-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:70:\"0013_tc_WEBSITE_assets_devops_consulting_banner_1440x368px-768x196.png\";s:5:\"width\";i:768;s:6:\"height\";i:196;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:70:\"0013_tc_WEBSITE_assets_devops_consulting_banner_1440x368px-500x368.png\";s:5:\"width\";i:500;s:6:\"height\";i:368;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:{}}}'),(74460,2510,'_wp_attached_file','2021/04/0003_rob_banner_blog_multicloud_1200x628px_v4.png'),(74461,2510,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:57:\"2021/04/0003_rob_banner_blog_multicloud_1200x628px_v4.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"0003_rob_banner_blog_multicloud_1200x628px_v4-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:58:\"0003_rob_banner_blog_multicloud_1200x628px_v4-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"0003_rob_banner_blog_multicloud_1200x628px_v4-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:57:\"0003_rob_banner_blog_multicloud_1200x628px_v4-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:57:\"0003_rob_banner_blog_multicloud_1200x628px_v4-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(74462,2512,'_wp_attached_file','2021/04/0003_rob_banner_blog_multicloud_1200x628px_v5.png'),(74463,2512,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:726;s:6:\"height\";i:628;s:4:\"file\";s:57:\"2021/04/0003_rob_banner_blog_multicloud_1200x628px_v5.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"0003_rob_banner_blog_multicloud_1200x628px_v5-300x260.png\";s:5:\"width\";i:300;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"0003_rob_banner_blog_multicloud_1200x628px_v5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:57:\"0003_rob_banner_blog_multicloud_1200x628px_v5-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(74578,2463,'wpdiscuz_post_rating','5'),(74579,2463,'wpdiscuz_post_rating_count','1'),(74620,2518,'_menu_item_type','post_type'),(74621,2518,'_menu_item_menu_item_parent','2228'),(74622,2518,'_menu_item_object_id','2249'),(74623,2518,'_menu_item_object','page'),(74624,2518,'_menu_item_target',''),(74625,2518,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(74626,2518,'_menu_item_xfn',''),(74627,2518,'_menu_item_url',''),(74856,2470,'wpdiscuz_post_rating','5'),(74857,2470,'wpdiscuz_post_rating_count','1'),(74861,2526,'_edit_lock','1652291670:4'),(74863,2526,'_edit_last','4'),(74864,2526,'hefo_before','0'),(74865,2526,'hefo_after','0'),(74866,2526,'_yoast_wpseo_focuskeywords','[]'),(74867,2526,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(74868,2526,'_wp_page_template','landing-page.php'),(74869,2528,'_wp_attached_file','2021/04/top-bg.jpg'),(74870,2528,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1990;s:6:\"height\";i:979;s:4:\"file\";s:18:\"2021/04/top-bg.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"top-bg-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:19:\"top-bg-1024x504.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"top-bg-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:18:\"top-bg-768x378.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:378;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"top-bg-1536x756.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:756;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:18:\"top-bg-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(74873,2530,'_wp_attached_file','2021/04/top-girl.png'),(74874,2530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1071;s:4:\"file\";s:20:\"2021/04/top-girl.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"top-girl-280x300.png\";s:5:\"width\";i:280;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"top-girl-956x1024.png\";s:5:\"width\";i:956;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"top-girl-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:20:\"top-girl-768x823.png\";s:5:\"width\";i:768;s:6:\"height\";i:823;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:20:\"top-girl-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(74875,2531,'_wp_attached_file','2021/04/t-bg.png'),(74876,2531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:511;s:6:\"height\";i:300;s:4:\"file\";s:16:\"2021/04/t-bg.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"t-bg-300x176.png\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"t-bg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:16:\"t-bg-500x300.png\";s:5:\"width\";i:500;s:6:\"height\";i:300;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:{}}}'),(74880,2532,'_wp_attached_file','2021/04/t-icon.png'),(74881,2532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:86;s:6:\"height\";i:50;s:4:\"file\";s:18:\"2021/04/t-icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(74936,2249,'_yoast_wpseo_metadesc','Data-Driven Digital Transformations to unlock your business\'s untapped potential for deeper insights and enhanced process automation. Achieve digitization and digitalization. Greater collaboration, scaling, and integration.'),(74964,2534,'_wp_attached_file','2021/04/t-bg-2.png'),(74965,2534,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1056;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2021/04/t-bg-2.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"t-bg-2-300x85.png\";s:5:\"width\";i:300;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"t-bg-2-1024x291.png\";s:5:\"width\";i:1024;s:6:\"height\";i:291;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"t-bg-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:18:\"t-bg-2-768x218.png\";s:5:\"width\";i:768;s:6:\"height\";i:218;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:18:\"t-bg-2-500x300.png\";s:5:\"width\";i:500;s:6:\"height\";i:300;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:{}}}'),(74975,2535,'_wp_attached_file','2021/04/mac-canadian.png'),(74976,2535,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1616;s:6:\"height\";i:1594;s:4:\"file\";s:24:\"2021/04/mac-canadian.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"mac-canadian-300x296.png\";s:5:\"width\";i:300;s:6:\"height\";i:296;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"mac-canadian-1024x1010.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1010;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"mac-canadian-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:24:\"mac-canadian-768x758.png\";s:5:\"width\";i:768;s:6:\"height\";i:758;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"mac-canadian-1536x1515.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1515;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:24:\"mac-canadian-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(75055,2537,'_wp_attached_file','2021/04/banner-1.jpg'),(75056,2537,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:854;s:6:\"height\";i:612;s:4:\"file\";s:20:\"2021/04/banner-1.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"banner-1-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"banner-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:20:\"banner-1-768x550.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:20:\"banner-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(75057,2538,'_wp_attached_file','2021/04/banner-2.jpg'),(75058,2538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:854;s:6:\"height\";i:612;s:4:\"file\";s:20:\"2021/04/banner-2.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"banner-2-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"banner-2-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:\"banner-2-768x550.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:20:\"banner-2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(75059,2539,'_wp_attached_file','2021/04/banner-3.jpg'),(75060,2539,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:854;s:6:\"height\";i:612;s:4:\"file\";s:20:\"2021/04/banner-3.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"banner-3-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"banner-3-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:\"banner-3-768x550.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:20:\"banner-3-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(75199,2543,'_wp_attached_file','2021/04/steps.png'),(75200,2543,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:502;s:6:\"height\";i:362;s:4:\"file\";s:17:\"2021/04/steps.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"steps-300x216.png\";s:5:\"width\";i:300;s:6:\"height\";i:216;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"steps-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:17:\"steps-500x362.png\";s:5:\"width\";i:500;s:6:\"height\";i:362;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:{}}}'),(75213,2249,'_yoast_wpseo_focuskw','Data-Driven Digital Transformation'),(75214,2249,'_yoast_wpseo_linkdex','53'),(75217,2545,'_wp_attached_file','2021/04/top-bg-2.jpg'),(75218,2545,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:812;s:4:\"file\";s:20:\"2021/04/top-bg-2.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"top-bg-2-300x127.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"top-bg-2-1024x433.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"top-bg-2-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:\"top-bg-2-768x325.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:325;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"top-bg-2-1536x650.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:20:\"top-bg-2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(75228,2417,'_pinterest_shares','0'),(75229,2417,'_total_shares','0'),(75237,2546,'_wp_attached_file','2021/04/picture.jpg'),(75238,2546,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:401;s:4:\"file\";s:19:\"2021/04/picture.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"picture-224x300.jpg\";s:5:\"width\";i:224;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"picture-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:{}}}'),(75323,2548,'_wp_attached_file','2021/04/call-icon.png'),(75324,2548,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:106;s:6:\"height\";i:106;s:4:\"file\";s:21:\"2021/04/call-icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(75325,2549,'_wp_attached_file','2021/04/footer-services.png'),(75326,2549,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:385;s:6:\"height\";i:60;s:4:\"file\";s:27:\"2021/04/footer-services.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"footer-services-300x47.png\";s:5:\"width\";i:300;s:6:\"height\";i:47;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"footer-services-150x60.png\";s:5:\"width\";i:150;s:6:\"height\";i:60;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:{}}}'),(75331,2552,'_wp_attached_file','2021/04/bd-1.png'),(75332,2552,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:727;s:4:\"file\";s:16:\"2021/04/bd-1.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"bd-1-300x114.png\";s:5:\"width\";i:300;s:6:\"height\";i:114;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"bd-1-1024x388.png\";s:5:\"width\";i:1024;s:6:\"height\";i:388;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"bd-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:16:\"bd-1-768x291.png\";s:5:\"width\";i:768;s:6:\"height\";i:291;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"bd-1-1536x582.png\";s:5:\"width\";i:1536;s:6:\"height\";i:582;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:16:\"bd-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(75533,2555,'_form','
\n
\nFirst Name*\n[text* first-name class:form-contact placeholder \"John\"]\n
\n
\nLast Name*\n[text* last-name class:form-contact placeholder \"Doe\"]\n
\n
\nEmail*\n[email* email class:form-contact placeholder \"john.doe@example.com\"]\n
\n
\nPhone*\n[tel* phone class:form-contact placeholder \"555-555\"]\n
\n
\nYour Company Name*\n[text* company class:form-contact placeholder \"Translucent\"]\n
\n
\nHow Can We Help You?\n[textarea message class:form-contact placeholder \"Message\"]\n
\n
\n[submit class:form-btn \"Let\'s grow together\"]\n
\n
\nWe Treat Your Business like our Own\n
\n
'),(75534,2555,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:83:\"DEV SERVER - TC Form Submissions: From Translucent Landing Page Bottom Contact Form\";s:6:\"sender\";s:32:\"results@translucentcomputing.com\";s:9:\"recipient\";s:99:\"results@translucentcomputing.com, robert@translucentcomputing.com, bsankar@translucentcomputing.com\";s:4:\"body\";s:94:\"From: [first-name] [last-name] <[email]>\nPhone: [phone]\nCompany: [company]\n\nMessage: [message]\";s:18:\"additional_headers\";s:17:\"Reply-To: [email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(75535,2555,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:54:\"Service Inquiry | Thank you for contacting Translucent\";s:6:\"sender\";s:50:\"Bradford Sankar \";s:9:\"recipient\";s:7:\"[email]\";s:4:\"body\";s:244:\"Hi [first-name],\n\nWe would like to express our thanks for your interest in our cloud native services.\nWe will review your request with our team and be in touch shortly.\n\nYours sincerely,\nBradford Sankar\nYour Translucent Cloud Native Specialist!\";s:18:\"additional_headers\";s:60:\"Reply-To: Bradford Sankar \";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(75536,2555,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:28:\"The phone number is invalid.\";}'),(75537,2555,'_additional_settings',''),(75538,2555,'_locale','en_US'),(75572,2556,'_form','
\n
\nFind the right fit for your DevOps Journey\n
\n
\n[text* fullname class:form-top placeholder \"Full Name\"][email* email class:form-top placeholder \"Your Work Email\"]\n
\n\n
\n[textarea message class:form-textarea placeholder \"Tell us a few more details\"]\n[submit class:top-btn \"Let\'s grow!\"]\n
\n
'),(75573,2556,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:80:\"DEV SERVER - TC Form Submissions: From Translucent Landing Page Top Contact Form\";s:6:\"sender\";s:32:\"results@translucentcomputing.com\";s:9:\"recipient\";s:99:\"bsankar@translucentcomputing.com, robert@translucentcomputing.com, results@translucentcomputing.com\";s:4:\"body\";s:46:\"From: [fullname] <[email]>\n\nMessage:\n[message]\";s:18:\"additional_headers\";s:17:\"Reply-To: [email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(75574,2556,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:54:\"Service Inquiry | Thank you for contacting Translucent\";s:6:\"sender\";s:50:\"Bradford Sankar \";s:9:\"recipient\";s:7:\"[email]\";s:4:\"body\";s:242:\"Hi [fullname],\n\nWe would like to express our thanks for your interest in our cloud native services.\nWe will review your request with our team and be in touch shortly.\n\nYours sincerely,\nBradford Sankar\nYour Translucent Cloud Native Specialist!\";s:18:\"additional_headers\";s:60:\"Reply-To: Bradford Sankar \";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(75575,2556,'_messages','a:22:{s:12:\"mail_sent_ok\";s:67:\"Message submitted. We look forward to creating the future together!\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(75576,2556,'_additional_settings',''),(75577,2556,'_locale','en_US'),(75607,2557,'_wp_attached_file','2021/04/mrdata4.png'),(75608,2557,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:40;s:4:\"file\";s:19:\"2021/04/mrdata4.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(75615,2558,'_wp_attached_file','2021/04/pre-item.png'),(75616,2558,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:36;s:6:\"height\";i:18;s:4:\"file\";s:20:\"2021/04/pre-item.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(75617,2559,'_wp_attached_file','2021/04/phrase-bg.jpg'),(75618,2559,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:850;s:4:\"file\";s:21:\"2021/04/phrase-bg.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"phrase-bg-300x133.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"phrase-bg-1024x453.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:453;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"phrase-bg-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:\"phrase-bg-768x340.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"phrase-bg-1536x680.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:21:\"phrase-bg-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(75621,2561,'_wp_attached_file','2021/04/graphics.png'),(75622,2561,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1224;s:6:\"height\";i:276;s:4:\"file\";s:20:\"2021/04/graphics.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"graphics-300x68.png\";s:5:\"width\";i:300;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"graphics-1024x231.png\";s:5:\"width\";i:1024;s:6:\"height\";i:231;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"graphics-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:20:\"graphics-768x173.png\";s:5:\"width\";i:768;s:6:\"height\";i:173;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:20:\"graphics-500x276.png\";s:5:\"width\";i:500;s:6:\"height\";i:276;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:{}}}'),(75650,2563,'_edit_lock','1618951088:4'),(75652,2564,'_wp_attached_file','2021/04/how-to-nail-your-digital-transformation.png'),(75653,2564,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:51:\"2021/04/how-to-nail-your-digital-transformation.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:51:\"how-to-nail-your-digital-transformation-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:52:\"how-to-nail-your-digital-transformation-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:51:\"how-to-nail-your-digital-transformation-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:51:\"how-to-nail-your-digital-transformation-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:51:\"how-to-nail-your-digital-transformation-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(75654,2564,'_wp_attachment_image_alt','how to nail your digital transformation'),(75655,2563,'_thumbnail_id','2564'),(75656,2563,'_edit_last','9'),(75657,2563,'hefo_before','0'),(75658,2563,'hefo_after','0'),(75659,2563,'_yoast_wpseo_primary_category','1035'),(75660,2563,'_yoast_wpseo_content_score','30'),(75661,2563,'_yoast_wpseo_focuskeywords','[]'),(75662,2563,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(75663,2567,'_wp_attached_file','2021/04/unnamed-3.jpg'),(75664,2567,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1182;s:4:\"file\";s:21:\"2021/04/unnamed-3.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"unnamed-3-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"unnamed-3-1024x756.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:756;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"unnamed-3-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:\"unnamed-3-768x567.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:567;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"unnamed-3-1536x1135.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:21:\"unnamed-3-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(75752,2578,'_wp_attached_file','2021/04/rob.png'),(75753,2578,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:248;s:6:\"height\";i:271;s:4:\"file\";s:15:\"2021/04/rob.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"rob-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:{}}}'),(75760,2579,'_wp_attached_file','2021/04/kubernetes-image-2.png'),(75761,2579,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:699;s:6:\"height\";i:236;s:4:\"file\";s:30:\"2021/04/kubernetes-image-2.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"kubernetes-image-2-300x101.png\";s:5:\"width\";i:300;s:6:\"height\";i:101;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"kubernetes-image-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:30:\"kubernetes-image-2-500x236.png\";s:5:\"width\";i:500;s:6:\"height\";i:236;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:{}}}'),(75762,2563,'wpdiscuz_post_rating','5'),(75763,2563,'wpdiscuz_post_rating_count','1'),(76013,2597,'_wp_attached_file','2021/04/trusted.png'),(76014,2597,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1252;s:6:\"height\";i:45;s:4:\"file\";s:19:\"2021/04/trusted.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"trusted-300x11.png\";s:5:\"width\";i:300;s:6:\"height\";i:11;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"trusted-1024x37.png\";s:5:\"width\";i:1024;s:6:\"height\";i:37;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"trusted-150x45.png\";s:5:\"width\";i:150;s:6:\"height\";i:45;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"trusted-768x28.png\";s:5:\"width\";i:768;s:6:\"height\";i:28;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:18:\"trusted-500x45.png\";s:5:\"width\";i:500;s:6:\"height\";i:45;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:{}}}'),(76017,2599,'_wp_attached_file','2021/04/top-girl-1.png'),(76018,2599,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:606;s:6:\"height\";i:763;s:4:\"file\";s:22:\"2021/04/top-girl-1.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"top-girl-1-238x300.png\";s:5:\"width\";i:238;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"top-girl-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"top-girl-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(76023,2600,'_wp_attached_file','2021/04/kubernetes-image.png'),(76024,2600,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:509;s:6:\"height\";i:614;s:4:\"file\";s:28:\"2021/04/kubernetes-image.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"kubernetes-image-249x300.png\";s:5:\"width\";i:249;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"kubernetes-image-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:28:\"kubernetes-image-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(76026,2602,'hefo_before','0'),(76027,2602,'hefo_after','0'),(76028,2602,'_yoast_wpseo_focuskeywords','[]'),(76029,2602,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(76030,2602,'_wp_page_template','landing-page-mid.php'),(76031,2602,'_dp_original','2526'),(76032,2602,'_edit_last','4'),(76033,2602,'_edit_lock','1623780449:4'),(76496,2613,'_wp_attached_file','2021/04/bg-city-tc1.png'),(76497,2613,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:940;s:4:\"file\";s:23:\"2021/04/bg-city-tc1.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"bg-city-tc1-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"bg-city-tc1-1024x501.png\";s:5:\"width\";i:1024;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"bg-city-tc1-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:23:\"bg-city-tc1-768x376.png\";s:5:\"width\";i:768;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"bg-city-tc1-1536x752.png\";s:5:\"width\";i:1536;s:6:\"height\";i:752;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:23:\"bg-city-tc1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(76500,2615,'_wp_attached_file','2021/04/bd-2.png'),(76501,2615,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1046;s:4:\"file\";s:16:\"2021/04/bd-2.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"bd-2-300x163.png\";s:5:\"width\";i:300;s:6:\"height\";i:163;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"bd-2-1024x558.png\";s:5:\"width\";i:1024;s:6:\"height\";i:558;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"bd-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:16:\"bd-2-768x418.png\";s:5:\"width\";i:768;s:6:\"height\";i:418;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"bd-2-1536x837.png\";s:5:\"width\";i:1536;s:6:\"height\";i:837;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:16:\"bd-2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(76503,2616,'hefo_before','0'),(76504,2616,'hefo_after','0'),(76505,2616,'_yoast_wpseo_focuskeywords','[]'),(76506,2616,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(76507,2616,'_wp_page_template','landing-page-short-5.php'),(76512,2616,'_dp_original','2602'),(76513,2616,'_edit_last','4'),(76514,2616,'_edit_lock','1623780416:4'),(76516,2619,'hefo_before','0'),(76517,2619,'hefo_after','0'),(76518,2619,'_yoast_wpseo_focuskeywords','[]'),(76519,2619,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(76520,2619,'_wp_page_template','landing-page-short-4.php'),(76525,2619,'_dp_original','2616'),(76526,2619,'_edit_last','4'),(76527,2619,'_edit_lock','1623780430:4'),(76531,2621,'_wp_attached_file','2021/04/bg-people-tc1.png'),(76532,2621,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1983;s:6:\"height\";i:1082;s:4:\"file\";s:25:\"2021/04/bg-people-tc1.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-people-tc1-300x164.png\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-people-tc1-1024x559.png\";s:5:\"width\";i:1024;s:6:\"height\";i:559;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-people-tc1-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:25:\"bg-people-tc1-768x419.png\";s:5:\"width\";i:768;s:6:\"height\";i:419;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bg-people-tc1-1536x838.png\";s:5:\"width\";i:1536;s:6:\"height\";i:838;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:25:\"bg-people-tc1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(76536,2622,'_wp_attached_file','2021/04/t-icon-coloured.png'),(76537,2622,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:78;s:4:\"file\";s:27:\"2021/04/t-icon-coloured.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(76554,2623,'_wp_attached_file','2021/04/graphics-m1.png'),(76555,2623,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:690;s:6:\"height\";i:276;s:4:\"file\";s:23:\"2021/04/graphics-m1.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"graphics-m1-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"graphics-m1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:23:\"graphics-m1-500x276.png\";s:5:\"width\";i:500;s:6:\"height\";i:276;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:{}}}'),(76556,2624,'_wp_attached_file','2021/04/graphics-m2.png'),(76557,2624,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:690;s:6:\"height\";i:276;s:4:\"file\";s:23:\"2021/04/graphics-m2.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"graphics-m2-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"graphics-m2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:23:\"graphics-m2-500x276.png\";s:5:\"width\";i:500;s:6:\"height\";i:276;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:{}}}'),(76558,2625,'_wp_attached_file','2021/04/rob-mobile.png'),(76559,2625,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:267;s:6:\"height\";i:218;s:4:\"file\";s:22:\"2021/04/rob-mobile.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"rob-mobile-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:{}}}'),(76563,2626,'_edit_lock','1625143834:1'),(76567,2626,'_edit_last','1'),(76568,2627,'_pinterest_shares','0'),(76569,2627,'_total_shares','0'),(76577,2630,'_pinterest_shares','0'),(76578,2630,'_total_shares','0'),(76616,2643,'_pinterest_shares','0'),(76617,2643,'_total_shares','0'),(76631,2648,'_pinterest_shares','0'),(76632,2648,'_total_shares','0'),(76686,2526,'background','2613'),(76687,2526,'_background','field_6083613c01a24'),(76688,2526,'title','Your\r\n#1 Partner\r\nin Cloud\r\nNative\r\nDevOps'),(76689,2526,'_title','field_6083614f01a25'),(76690,2526,'items_0_item','Simplify your Cloud'),(76691,2526,'_items_0_item','field_608361a401a28'),(76692,2526,'items_1_item','Make your Cloud computing worry-free'),(76693,2526,'_items_1_item','field_608361a401a28'),(76694,2526,'items','2'),(76695,2526,'_items','field_6083618a01a27'),(76696,2526,'image','2599'),(76697,2526,'_image','field_6083616401a26'),(76698,2526,'trusted_by_logos','5'),(76699,2526,'_trusted_by_logos','field_60d931a311b0f'),(76700,2526,'steps_image','2543'),(76701,2526,'_steps_image','field_608361e101a2b'),(76702,2526,'steps_title','Our approach to Your Successful DevOps Implementation'),(76703,2526,'_steps_title','field_608361ee01a2c'),(76704,2526,'steps_text','Plan we partner with your people and objectives in mind\r\nMigrate what adds business value first\r\nManage your cloud native DevOps Journey with you\r\nAutomate saving on your resource cost and making you money\r\nOptimize continuously improve and develop for your future'),(76705,2526,'_steps_text','field_6083620201a2d'),(76706,2526,'people_background','2621'),(76707,2526,'_people_background','field_6083621801a2e'),(76708,2526,'people_title',' We Listen. We Learn. We Inform.'),(76709,2526,'_people_title','field_6083622601a2f'),(76710,2526,'people_text','Digital Transformation is not just about cloud native DevOps technology. It’s about…\r\nPeople, Business, Operations and Results. Oh and People! Did I say people?'),(76711,2526,'_people_text','field_6083623101a30'),(76712,2526,'kubernetes_partnership_title','Benefits of the Translucent DevOps Kubernetes Partnership\r\nSAVE TIME and SAVE MONEY'),(76713,2526,'_kubernetes_partnership_title','field_6083624901a31'),(76714,2526,'kubernetes_partnership_image_desktop','2907'),(76715,2526,'_kubernetes_partnership_image_desktop','field_6083626601a33'),(76716,2526,'kubernetes_partnership_images_mobile_0_image','2911'),(76717,2526,'_kubernetes_partnership_images_mobile_0_image','field_6083628a01a35'),(76718,2526,'kubernetes_partnership_images_mobile_1_image','2912'),(76719,2526,'_kubernetes_partnership_images_mobile_1_image','field_6083628a01a35'),(76720,2526,'kubernetes_partnership_images_mobile','2'),(76721,2526,'_kubernetes_partnership_images_mobile','field_6083627c01a34'),(76722,2526,'kubernetes_partnership_text','Reduce costs and improve operational efficiency through enhanced collaboration between your teams, increased platform and automation.'),(76723,2526,'_kubernetes_partnership_text','field_6083625901a32'),(76724,2526,'kubernetes_seal_title','Why choose Cloud Native Kubernetes Certified DevOps?'),(76725,2526,'_kubernetes_seal_title','field_608362a801a36'),(76726,2526,'kubernetes_seal_subtitle','71% of Fortune 100 companies use Kubernetes'),(76727,2526,'_kubernetes_seal_subtitle','field_608362c501a37'),(76728,2526,'kubernetes_seal_items_0_item','25%+ Faster to Market'),(76729,2526,'_kubernetes_seal_items_0_item','field_608362e601a39'),(76730,2526,'kubernetes_seal_items_1_item','Reliable and Secure'),(76731,2526,'_kubernetes_seal_items_1_item','field_608362e601a39'),(76732,2526,'kubernetes_seal_items_2_item','Privacy by Design'),(76733,2526,'_kubernetes_seal_items_2_item','field_608362e601a39'),(76734,2526,'kubernetes_seal_items_3_item','Automated Reporting for Your Entire Company'),(76735,2526,'_kubernetes_seal_items_3_item','field_608362e601a39'),(76736,2526,'kubernetes_seal_items_4_item','Kubernetes Connects You to all Major Clouds'),(76737,2526,'_kubernetes_seal_items_4_item','field_608362e601a39'),(76738,2526,'kubernetes_seal_items_5_item','35%+ Increase in Operational Efficiency'),(76739,2526,'_kubernetes_seal_items_5_item','field_608362e601a39'),(76740,2526,'kubernetes_seal_items_6_item','More Done with Less Resources'),(76741,2526,'_kubernetes_seal_items_6_item','field_608362e601a39'),(76742,2526,'kubernetes_seal_items','7'),(76743,2526,'_kubernetes_seal_items','field_608362db01a38'),(76744,2526,'kubernetes_seal_message','As a Certified Provider Translucent gets the Job Done Right!'),(76745,2526,'_kubernetes_seal_message','field_6083630501a3a'),(76746,2526,'kubernetes_seal_image','2600'),(76747,2526,'_kubernetes_seal_image','field_6083632101a3b'),(76748,2526,'black_background_phrase','As Your Cloud Native Kubernetes DevOps Partner, We are with You All the Way!'),(76749,2526,'_black_background_phrase','field_6083633201a3c'),(76750,2526,'testimonials_0_text','“Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automotive, loan, mechanic, and customer workflow data making the complex almost seems like magic.” '),(76751,2526,'_testimonials_0_text','field_60d931a81ba7d'),(76752,2526,'testimonials_0_picture','3195'),(76753,2526,'_testimonials_0_picture','field_60d931a81bb40'),(76754,2526,'testimonials_0_name','Eric Kaplan'),(76755,2526,'_testimonials_0_name','field_60d931a81bbf2'),(76756,2526,'testimonials_0_role','GoToLoans.com (We have you covered)'),(76757,2526,'_testimonials_0_role','field_60d931a81bc35'),(76766,2526,'testimonials','9'),(76767,2526,'_testimonials','field_60d931a312092'),(76768,2526,'ceo_picture','2904'),(76769,2526,'_ceo_picture','field_608363a901a42'),(76770,2526,'ceo_picture_mobile','2905'),(76771,2526,'_ceo_picture_mobile','field_608363b701a43'),(76772,2526,'ceo_name','Robert Golabeck'),(76773,2526,'_ceo_name','field_608363cd01a44'),(76774,2526,'ceo_email','results@translucentcomputing.com'),(76775,2526,'_ceo_email','field_60d931a3121f6'),(76776,2526,'ceo_phone','1-888-828-0144 x 105'),(76777,2526,'_ceo_phone','field_60d931a31223d'),(76778,2526,'ceo_address','1 Yonge Street, Suite 1801\r\nToronto, Ontario\r\nM5E 1W7'),(76779,2526,'_ceo_address','field_60d931a312283'),(76780,2526,'footer_kubernetes_image','2579'),(76781,2526,'_footer_kubernetes_image','field_60d931a3122c3'),(76893,2666,'_pinterest_shares','0'),(76894,2666,'_total_shares','0'),(76902,2669,'_pinterest_shares','0'),(76903,2669,'_total_shares','0'),(76947,2682,'_pinterest_shares','0'),(76948,2682,'_total_shares','0'),(77022,2665,'_edit_lock','1625144583:1'),(77023,2665,'_edit_last','1'),(77093,2602,'_yoast_wpseo_content_score','30'),(77094,2602,'background','2613'),(77095,2602,'_background','field_60836a906fbfa'),(77096,2602,'title','71% of Fortune 100 companies use Kubernetes in DevOps'),(77097,2602,'_title','field_60836a906fc4e'),(77098,2602,'items_0_item','Simplify your Cloud'),(77099,2602,'_items_0_item','field_60836a91045e9'),(77100,2602,'items_1_item','Make your Cloud computing worry-free'),(77101,2602,'_items_1_item','field_60836a91045e9'),(77102,2602,'items','2'),(77103,2602,'_items','field_60836a906fc93'),(77104,2602,'image','2599'),(77105,2602,'_image','field_60836a906fce6'),(77106,2602,'trusted_by_logos',''),(77107,2602,'_trusted_by_logos','field_60836a906fd30'),(77108,2602,'kubernetes_partnership_title','Translucent\'s Devops Kubernetes Partnership\r\nSaves You Time and Money'),(77109,2602,'_kubernetes_partnership_title','field_60836a906ffbf'),(77110,2602,'kubernetes_partnership_image_desktop','2907'),(77111,2602,'_kubernetes_partnership_image_desktop','field_60836a9070001'),(77112,2602,'kubernetes_partnership_images_mobile_0_image','2911'),(77113,2602,'_kubernetes_partnership_images_mobile_0_image','field_60836a9390fba'),(77114,2602,'kubernetes_partnership_images_mobile_1_image','2912'),(77115,2602,'_kubernetes_partnership_images_mobile_1_image','field_60836a9390fba'),(77116,2602,'kubernetes_partnership_images_mobile','2'),(77117,2602,'_kubernetes_partnership_images_mobile','field_60836a907003f'),(77118,2602,'kubernetes_partnership_text','\"The team takes a very human-centric approach, understanding that all businesses have to work with a budget. We attribute a large part of integrating our physical operational model into technological success to Translucent.\" Eric Kaplan COO - GoToLoans'),(77119,2602,'_kubernetes_partnership_text','field_60836a907007d'),(77120,2602,'people_background','2621'),(77121,2602,'_people_background','field_60836a906fede'),(77122,2602,'people_title',' We Listen. We Learn. We Inform.'),(77123,2602,'_people_title','field_60836a906ff2f'),(77124,2602,'people_text','This is not just about cloud native DevOps technology. It’s about…\r\nPeople, Business, Operations and Results. Oh and People! Did we say people?'),(77125,2602,'_people_text','field_60836a906ff6f'),(77126,2602,'black_background_phrase','Your Cloud Native Kubernetes\r\nDevOps Partner we are with You All the Way!'),(77127,2602,'_black_background_phrase','field_60836a9070202'),(77128,2602,'testimonials_0_text','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Quis ipsum suspendisse ultrices gravida. Risus commodo viverra maecenas accumsan lacus vel facilisis.'),(77129,2602,'_testimonials_0_text','field_60836a959bf3a'),(77130,2602,'testimonials_0_picture','2546'),(77131,2602,'_testimonials_0_picture','field_60836a959bf8f'),(77132,2602,'testimonials_0_name','Pedro Alvares Cabral'),(77133,2602,'_testimonials_0_name','field_60836a959bfe0'),(77134,2602,'testimonials_0_role',' Discoverer @ Brazil'),(77135,2602,'_testimonials_0_role','field_60836a959c02e'),(77136,2602,'testimonials_1_text','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Quis ipsum suspendisse ultrices gravida. Risus commodo viverra maecenas accumsan lacus vel facilisis.'),(77137,2602,'_testimonials_1_text','field_60836a959bf3a'),(77138,2602,'testimonials_1_picture','2546'),(77139,2602,'_testimonials_1_picture','field_60836a959bf8f'),(77140,2602,'testimonials_1_name','Pedro Alvares Cabral 2'),(77141,2602,'_testimonials_1_name','field_60836a959bfe0'),(77142,2602,'testimonials_1_role',' Discoverer @ Brazil'),(77143,2602,'_testimonials_1_role','field_60836a959c02e'),(77144,2602,'testimonials','2'),(77145,2602,'_testimonials','field_60836a907026e'),(77146,2602,'steps_image',''),(77147,2602,'_steps_image','field_60836a906fd7e'),(77148,2602,'steps_title',''),(77149,2602,'_steps_title','field_60836a906fe1c'),(77150,2602,'steps_text',''),(77151,2602,'_steps_text','field_60836a906fe70'),(77152,2602,'ceo_picture',''),(77153,2602,'_ceo_picture','field_60836a90702ab'),(77154,2602,'ceo_picture_mobile',''),(77155,2602,'_ceo_picture_mobile','field_60836a90702eb'),(77156,2602,'ceo_name',''),(77157,2602,'_ceo_name','field_60836a907032b'),(77158,2602,'ceo_email',''),(77159,2602,'_ceo_email','field_60836a907037a'),(77160,2602,'ceo_phone',''),(77161,2602,'_ceo_phone','field_60836a90703b9'),(77162,2602,'ceo_address',''),(77163,2602,'_ceo_address','field_60836a90703f8'),(77164,2602,'footer_kubernetes_image',''),(77165,2602,'_footer_kubernetes_image','field_60836a9070439'),(77571,2708,'_wp_attached_file','2021/04/footer-services-1.png'),(77572,2708,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:121;s:6:\"height\";i:60;s:4:\"file\";s:29:\"2021/04/footer-services-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(77573,2709,'_wp_attached_file','2021/04/footer-services-2.png'),(77574,2709,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:155;s:6:\"height\";i:60;s:4:\"file\";s:29:\"2021/04/footer-services-2.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"footer-services-2-150x60.png\";s:5:\"width\";i:150;s:6:\"height\";i:60;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:{}}}'),(77575,2710,'_wp_attached_file','2021/04/footer-services-3.png'),(77576,2710,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:111;s:6:\"height\";i:60;s:4:\"file\";s:29:\"2021/04/footer-services-3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(77616,2711,'_wp_attached_file','2021/04/blackbook.png'),(77617,2711,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:227;s:6:\"height\";i:31;s:4:\"file\";s:21:\"2021/04/blackbook.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"blackbook-150x31.png\";s:5:\"width\";i:150;s:6:\"height\";i:31;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:{}}}'),(77618,2712,'_wp_attached_file','2021/04/gotoloans.png'),(77619,2712,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:143;s:6:\"height\";i:37;s:4:\"file\";s:21:\"2021/04/gotoloans.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(77620,2713,'_wp_attached_file','2021/04/sick.png'),(77621,2713,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:91;s:6:\"height\";i:27;s:4:\"file\";s:16:\"2021/04/sick.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(77622,2714,'_wp_attached_file','2021/04/southlake.png'),(77623,2714,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:206;s:6:\"height\";i:33;s:4:\"file\";s:21:\"2021/04/southlake.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"southlake-150x33.png\";s:5:\"width\";i:150;s:6:\"height\";i:33;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:{}}}'),(77624,2715,'_wp_attached_file','2021/04/trusted-by.png'),(77625,2715,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:154;s:6:\"height\";i:45;s:4:\"file\";s:22:\"2021/04/trusted-by.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"trusted-by-150x45.png\";s:5:\"width\";i:150;s:6:\"height\";i:45;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:{}}}'),(77626,2716,'_wp_attached_file','2021/04/uhn.png'),(77627,2716,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:108;s:6:\"height\";i:32;s:4:\"file\";s:15:\"2021/04/uhn.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(77628,2526,'trusted_by_logos_0_logo','2713'),(77629,2526,'_trusted_by_logos_0_logo','field_60d931a425c8c'),(77630,2526,'trusted_by_logos_1_logo','2711'),(77631,2526,'_trusted_by_logos_1_logo','field_60d931a425c8c'),(77632,2526,'trusted_by_logos_2_logo','2712'),(77633,2526,'_trusted_by_logos_2_logo','field_60d931a425c8c'),(77634,2526,'trusted_by_logos_3_logo','2716'),(77635,2526,'_trusted_by_logos_3_logo','field_60d931a425c8c'),(77636,2526,'trusted_by_logos_4_logo','2714'),(77637,2526,'_trusted_by_logos_4_logo','field_60d931a425c8c'),(77750,2719,'_pinterest_shares','0'),(77751,2719,'_total_shares','0'),(77753,2720,'_pinterest_shares','0'),(77754,2720,'_total_shares','0'),(77759,2722,'_pinterest_shares','0'),(77760,2722,'_total_shares','0'),(77762,2721,'_pinterest_shares','0'),(77763,2721,'_total_shares','0'),(77765,2723,'_pinterest_shares','0'),(77766,2723,'_total_shares','0'),(77822,2740,'_pinterest_shares','0'),(77823,2740,'_total_shares','0'),(77879,2718,'_edit_lock','1624848495:1'),(77883,2718,'_edit_last','1'),(77884,2737,'_pinterest_shares','0'),(77885,2737,'_total_shares','0'),(77890,2739,'_pinterest_shares','0'),(77891,2739,'_total_shares','0'),(77893,2741,'_pinterest_shares','0'),(77894,2741,'_total_shares','0'),(77896,2742,'_pinterest_shares','0'),(77897,2742,'_total_shares','0'),(77899,2729,'_pinterest_shares','0'),(77900,2729,'_total_shares','0'),(77902,2730,'_pinterest_shares','0'),(77903,2730,'_total_shares','0'),(77908,2743,'_pinterest_shares','0'),(77909,2743,'_total_shares','0'),(77917,2616,'_yoast_wpseo_content_score','60'),(77918,2616,'background','2613'),(77919,2616,'_background','field_60837bcb4601d'),(77920,2616,'title',' \r\n\r\n \r\n\r\n71% of Fortune 100 companies use Kubernetes in DevOps\r\n\r\n '),(77921,2616,'_title','field_60837bcb4606e'),(77922,2616,'items_0_item','Simplify your Cloud'),(77923,2616,'_items_0_item','field_60837bcbda2ad'),(77924,2616,'items_1_item','Make your Cloud computing worry-free'),(77925,2616,'_items_1_item','field_60837bcbda2ad'),(77926,2616,'items','2'),(77927,2616,'_items','field_60837bcb460ba'),(77928,2616,'image','2599'),(77929,2616,'_image','field_60837bcb46106'),(77930,2616,'kubernetes_seal_title','Why choose Cloud Native Kubernetes Certified DevOps?'),(77931,2616,'_kubernetes_seal_title','field_60837bcb46461'),(77932,2616,'kubernetes_seal_subtitle','Automation in Motion'),(77933,2616,'_kubernetes_seal_subtitle','field_60837bcb464ca'),(77934,2616,'kubernetes_seal_items_0_item','25%+ Faster to Market'),(77935,2616,'_kubernetes_seal_items_0_item','field_60837bd025766'),(77936,2616,'kubernetes_seal_items_1_item','Reliable and Secure'),(77937,2616,'_kubernetes_seal_items_1_item','field_60837bd025766'),(77938,2616,'kubernetes_seal_items_2_item','Privacy by Design'),(77939,2616,'_kubernetes_seal_items_2_item','field_60837bd025766'),(77940,2616,'kubernetes_seal_items_3_item','Automated Reporting for Your Entire Company'),(77941,2616,'_kubernetes_seal_items_3_item','field_60837bd025766'),(77942,2616,'kubernetes_seal_items_4_item','Kubernetes Connects You to all Major Clouds'),(77943,2616,'_kubernetes_seal_items_4_item','field_60837bd025766'),(77944,2616,'kubernetes_seal_items_5_item','35%+ Increase in Operational Efficiency'),(77945,2616,'_kubernetes_seal_items_5_item','field_60837bd025766'),(77946,2616,'kubernetes_seal_items_6_item','More Done with Less Resources'),(77947,2616,'_kubernetes_seal_items_6_item','field_60837bd025766'),(77948,2616,'kubernetes_seal_items','7'),(77949,2616,'_kubernetes_seal_items','field_60837bcb46524'),(77950,2616,'kubernetes_seal_message','As a Certified Provider Translucent gets the Job Done Right!'),(77951,2616,'_kubernetes_seal_message','field_60837bcb46594'),(77952,2616,'kubernetes_seal_image','2600'),(77953,2616,'_kubernetes_seal_image','field_60837bcb465ef'),(77954,2616,'people_background','2621'),(77955,2616,'_people_background','field_60837bcb46250'),(77956,2616,'people_title','Team Collaboration just got an Upgrade'),(77957,2616,'_people_title','field_60837bcb46294'),(77958,2616,'people_text','\"\"Automation of repetitive workflow task. Faster and highly available customer, staff and 3rd party experience. Saving company money, keeping current clients happier and closing new customers 24/7.'),(77959,2616,'_people_text','field_60837bcb462fa'),(77960,2616,'black_background_phrase','Your Cloud Native Kubernetes\r\nDevOps Partner with You All the Way!'),(77961,2616,'_black_background_phrase','field_60837bcb4668e'),(78094,2759,'_wp_attached_file','2021/04/call-icon-blue.png'),(78095,2759,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:106;s:6:\"height\";i:106;s:4:\"file\";s:26:\"2021/04/call-icon-blue.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(78096,2731,'_pinterest_shares','0'),(78097,2731,'_total_shares','0'),(78149,2762,'_pinterest_shares','0'),(78150,2762,'_total_shares','0'),(78152,2763,'_pinterest_shares','0'),(78153,2763,'_total_shares','0'),(78158,2765,'_pinterest_shares','0'),(78159,2765,'_total_shares','0'),(78161,2764,'_pinterest_shares','0'),(78162,2764,'_total_shares','0'),(78164,2766,'_pinterest_shares','0'),(78165,2766,'_total_shares','0'),(78203,2778,'_pinterest_shares','0'),(78204,2778,'_total_shares','0'),(78221,2783,'_pinterest_shares','0'),(78222,2783,'_total_shares','0'),(78278,2761,'_edit_lock','1624848493:1'),(78279,2761,'_edit_last','1'),(78325,2619,'_yoast_wpseo_content_score','60'),(78326,2619,'background','2613'),(78327,2619,'_background','field_608382637df1b'),(78328,2619,'title','Your\r\n#1 Partner\r\nin Cloud\r\nNative\r\nDevOps'),(78329,2619,'_title','field_608382637df71'),(78330,2619,'items_0_item','Simplify your Cloud'),(78331,2619,'_items_0_item','field_6083826409fc4'),(78332,2619,'items_1_item','Make your Cloud computing worry-free'),(78333,2619,'_items_1_item','field_6083826409fc4'),(78334,2619,'items','2'),(78335,2619,'_items','field_608382637dfb5'),(78336,2619,'image','2599'),(78337,2619,'_image','field_608382637e061'),(78338,2619,'steps_image',''),(78339,2619,'_steps_image','field_608382637e232'),(78340,2619,'kubernetes_seal_title','Why choose Cloud Native Kubernetes Certified DevOps?'),(78341,2619,'_kubernetes_seal_title','field_608382637e6d1'),(78342,2619,'kubernetes_seal_subtitle','71% of Fortune 100 companies use Kubernetes'),(78343,2619,'_kubernetes_seal_subtitle','field_608382637e736'),(78344,2619,'kubernetes_seal_items_0_item','25%+ Faster to Market'),(78345,2619,'_kubernetes_seal_items_0_item','field_60838267663e6'),(78346,2619,'kubernetes_seal_items_1_item','Reliable and Secure'),(78347,2619,'_kubernetes_seal_items_1_item','field_60838267663e6'),(78348,2619,'kubernetes_seal_items_2_item','Privacy by Design'),(78349,2619,'_kubernetes_seal_items_2_item','field_60838267663e6'),(78350,2619,'kubernetes_seal_items_3_item','Automated Reporting for Your Entire Company'),(78351,2619,'_kubernetes_seal_items_3_item','field_60838267663e6'),(78352,2619,'kubernetes_seal_items_4_item','Kubernetes Connects You to all Major Clouds'),(78353,2619,'_kubernetes_seal_items_4_item','field_60838267663e6'),(78354,2619,'kubernetes_seal_items_5_item','35%+ Increase in Operational Efficiency'),(78355,2619,'_kubernetes_seal_items_5_item','field_60838267663e6'),(78356,2619,'kubernetes_seal_items_6_item','More Done with Less Resources'),(78357,2619,'_kubernetes_seal_items_6_item','field_60838267663e6'),(78358,2619,'kubernetes_seal_items','7'),(78359,2619,'_kubernetes_seal_items','field_608382637e777'),(78360,2619,'kubernetes_seal_message','As a Certified Provider, Translucent gets the Job Done Right!'),(78361,2619,'_kubernetes_seal_message','field_608382637e7b8'),(78362,2619,'kubernetes_seal_image','2600'),(78363,2619,'_kubernetes_seal_image','field_608382637e847'),(78364,2619,'kubernetes_partnership_title','Translucent\'s Devops Kubernetes Partnership\r\nSaves You Time and Money'),(78365,2619,'_kubernetes_partnership_title','field_608382637e494'),(78366,2619,'kubernetes_partnership_image_desktop','2907'),(78367,2619,'_kubernetes_partnership_image_desktop','field_608382637e4ee'),(78368,2619,'kubernetes_partnership_images_mobile','2'),(78369,2619,'_kubernetes_partnership_images_mobile','field_608382637e597'),(78370,2619,'kubernetes_partnership_text','\"\"Automation of repetitive workflow task. Faster and highly available customer, staff and 3rd party experience. Saving company money, keeping current clients happier and closing new customers 24/7.\r\n'),(78371,2619,'_kubernetes_partnership_text','field_608382637e5c7'),(78372,2619,'black_background_phrase',''),(78373,2619,'_black_background_phrase','field_608382637e896'),(78422,2619,'kubernetes_partnership_images_mobile_0_image','2911'),(78423,2619,'_kubernetes_partnership_images_mobile_0_image','field_6083826669ba2'),(78424,2619,'kubernetes_partnership_images_mobile_1_image','2912'),(78425,2619,'_kubernetes_partnership_images_mobile_1_image','field_6083826669ba2'),(78478,2780,'_pinterest_shares','0'),(78479,2780,'_total_shares','0'),(78484,2782,'_pinterest_shares','0'),(78485,2782,'_total_shares','0'),(78487,2784,'_pinterest_shares','0'),(78488,2784,'_total_shares','0'),(78490,2785,'_pinterest_shares','0'),(78491,2785,'_total_shares','0'),(78496,2776,'_pinterest_shares','0'),(78497,2776,'_total_shares','0'),(78499,2777,'_pinterest_shares','0'),(78500,2777,'_total_shares','0'),(78563,2779,'_pinterest_shares','0'),(78564,2779,'_total_shares','0'),(78624,2775,'_pinterest_shares','0'),(78625,2775,'_total_shares','0'),(78783,2804,'_edit_lock','1624996905:1'),(78788,2805,'_wp_attached_file','2021/04/Multi-Cloud-Deployment-Strategy.png'),(78789,2805,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:43:\"2021/04/Multi-Cloud-Deployment-Strategy.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"Multi-Cloud-Deployment-Strategy-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"Multi-Cloud-Deployment-Strategy-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Multi-Cloud-Deployment-Strategy-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:43:\"Multi-Cloud-Deployment-Strategy-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:43:\"Multi-Cloud-Deployment-Strategy-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(78790,2805,'_wp_attachment_image_alt','translucent Multi Cloud Deployment Strategy'),(78791,2804,'_thumbnail_id','2805'),(78792,2804,'_edit_last','4'),(78793,2804,'hefo_before','0'),(78794,2804,'hefo_after','0'),(78795,2804,'_yoast_wpseo_primary_category','94'),(78796,2804,'_yoast_wpseo_content_score','30'),(78797,2804,'_yoast_wpseo_focuskeywords','[]'),(78798,2804,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(78826,2804,'wpdiscuz_post_rating','5'),(78827,2804,'wpdiscuz_post_rating_count','2'),(79435,2738,'_pinterest_shares','0'),(79436,2738,'_total_shares','0'),(79444,2781,'_pinterest_shares','0'),(79445,2781,'_total_shares','0'),(82795,2847,'_wp_attached_file','2021/04/brad.png'),(82796,2847,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:248;s:6:\"height\";i:271;s:4:\"file\";s:16:\"2021/04/brad.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"brad-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:{}}}'),(82797,2848,'_wp_attached_file','2021/04/brad-m.png'),(82798,2848,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:267;s:6:\"height\";i:218;s:4:\"file\";s:18:\"2021/04/brad-m.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"brad-m-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:{}}}'),(82799,2849,'_wp_attached_file','2021/04/patryk.png'),(82800,2849,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:248;s:6:\"height\";i:271;s:4:\"file\";s:18:\"2021/04/patryk.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"patryk-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:{}}}'),(82801,2850,'_wp_attached_file','2021/04/patryk-m.png'),(82802,2850,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:267;s:6:\"height\";i:218;s:4:\"file\";s:20:\"2021/04/patryk-m.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"patryk-m-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:{}}}'),(82897,2851,'hefo_before','0'),(82898,2851,'hefo_after','0'),(82899,2851,'_yoast_wpseo_focuskeywords','[]'),(82900,2851,'_yoast_wpseo_keywordsynonyms','[\"DevOps Consulting\"]'),(82901,2851,'_wp_page_template','devops-consulting.php'),(82902,2851,'_yoast_wpseo_content_score','90'),(82904,2851,'_thumbnail_id','2903'),(82905,2851,'_dp_original','2267'),(82906,2851,'_edit_last','4'),(82907,2851,'_edit_lock','1658731810:20'),(82923,2858,'_wp_attached_file','2021/05/imagem.png'),(82924,2858,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1368;s:6:\"height\";i:690;s:4:\"file\";s:18:\"2021/05/imagem.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"imagem-300x151.png\";s:5:\"width\";i:300;s:6:\"height\";i:151;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"imagem-1024x516.png\";s:5:\"width\";i:1024;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"imagem-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:18:\"imagem-768x387.png\";s:5:\"width\";i:768;s:6:\"height\";i:387;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:18:\"imagem-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(82925,2859,'_wp_attached_file','2021/05/slide-1.jpg'),(82926,2859,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1366;s:6:\"height\";i:678;s:4:\"file\";s:19:\"2021/05/slide-1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"slide-1-300x149.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:149;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"slide-1-1024x508.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"slide-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:19:\"slide-1-768x381.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:381;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:19:\"slide-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(82927,2860,'_wp_attached_file','2021/05/slide-2.jpg'),(82928,2860,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1366;s:6:\"height\";i:678;s:4:\"file\";s:19:\"2021/05/slide-2.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"slide-2-300x149.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:149;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"slide-2-1024x508.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"slide-2-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:19:\"slide-2-768x381.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:381;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:19:\"slide-2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(82932,2861,'_wp_attached_file','2021/05/mrdata.png'),(82933,2861,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:168;s:6:\"height\";i:207;s:4:\"file\";s:18:\"2021/05/mrdata.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"mrdata-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:{}}}'),(82936,2863,'_wp_attached_file','2021/05/mrdata2.png'),(82937,2863,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:168;s:6:\"height\";i:169;s:4:\"file\";s:19:\"2021/05/mrdata2.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"mrdata2-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:{}}}'),(82938,2864,'_wp_attached_file','2021/05/image.png'),(82939,2864,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:526;s:4:\"file\";s:17:\"2021/05/image.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"image-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"image-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:17:\"image-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(82964,2866,'_wp_attached_file','2021/05/top-banner.jpg'),(82965,2866,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2021/05/top-banner.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"top-banner-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"top-banner-1024x267.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"top-banner-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:\"top-banner-768x200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"top-banner-1536x400.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"top-banner-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(82966,2867,'_wp_attached_file','2021/05/icon-quote.png'),(82967,2867,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:37;s:6:\"height\";i:37;s:4:\"file\";s:22:\"2021/05/icon-quote.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(82968,2868,'_wp_attached_file','2021/05/icon-title.png'),(82969,2868,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:48;s:6:\"height\";i:54;s:4:\"file\";s:22:\"2021/05/icon-title.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(84096,2880,'_wp_attached_file','2021/05/graphics-m2.png'),(84097,2880,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:690;s:6:\"height\";i:276;s:4:\"file\";s:23:\"2021/05/graphics-m2.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"graphics-m2-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"graphics-m2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:23:\"graphics-m2-500x276.png\";s:5:\"width\";i:500;s:6:\"height\";i:276;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:{}}}'),(84406,2884,'_edit_lock','1654291759:4'),(84408,2884,'_edit_last','18'),(84409,2884,'hefo_before','0'),(84410,2884,'hefo_after','0'),(84411,2884,'_yoast_wpseo_focuskeywords','[{\"keyword\":\"Cloud Native Data Driven Applications\",\"score\":\"ok\"}]'),(84412,2884,'_yoast_wpseo_keywordsynonyms','[\"Modern application development\",\"\"]'),(84413,2884,'_wp_page_template','cloud-native-applications.php'),(84438,2886,'_wp_attached_file','2021/05/image1.jpg'),(84439,2886,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1368;s:6:\"height\";i:605;s:4:\"file\";s:18:\"2021/05/image1.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"image1-300x133.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"image1-1024x453.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:453;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"image1-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:18:\"image1-768x340.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:18:\"image1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(84440,2887,'_wp_attached_file','2021/05/image2.jpg'),(84441,2887,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1368;s:6:\"height\";i:605;s:4:\"file\";s:18:\"2021/05/image2.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"image2-300x133.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"image2-1024x453.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:453;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"image2-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:18:\"image2-768x340.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:18:\"image2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(84472,2891,'_wp_attached_file','2021/05/slider3.png'),(84473,2891,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:489;s:6:\"height\";i:700;s:4:\"file\";s:19:\"2021/05/slider3.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"slider3-210x300.png\";s:5:\"width\";i:210;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"slider3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:19:\"slider3-489x500.png\";s:5:\"width\";i:489;s:6:\"height\";i:500;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:{}}}'),(84479,2893,'_wp_attached_file','2021/05/icon-rp.png'),(84480,2893,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:288;s:6:\"height\";i:180;s:4:\"file\";s:19:\"2021/05/icon-rp.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"icon-rp-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:{}}}'),(84500,2894,'_wp_attached_file','2021/05/top-banner2.jpg'),(84501,2894,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1923;s:6:\"height\";i:500;s:4:\"file\";s:23:\"2021/05/top-banner2.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"top-banner2-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"top-banner2-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"top-banner2-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:\"top-banner2-768x200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"top-banner2-1536x399.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:23:\"top-banner2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(84502,2895,'_wp_attached_file','2021/05/pink-icon.png'),(84503,2895,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:49;s:6:\"height\";i:54;s:4:\"file\";s:21:\"2021/05/pink-icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(84506,2897,'_wp_attached_file','2021/05/icon-quote-pink.png'),(84507,2897,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:38;s:6:\"height\";i:37;s:4:\"file\";s:27:\"2021/05/icon-quote-pink.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(84589,2903,'_wp_attached_file','2021/05/top-devops.jpg'),(84590,2903,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1923;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2021/05/top-devops.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"top-devops-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"top-devops-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"top-devops-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:\"top-devops-768x200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"top-devops-1536x399.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"top-devops-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(84597,2904,'_wp_attached_file','2021/05/rob.png'),(84598,2904,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:248;s:6:\"height\";i:271;s:4:\"file\";s:15:\"2021/05/rob.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"rob-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:{}}}'),(84599,2905,'_wp_attached_file','2021/05/rob-mobile.png'),(84600,2905,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:267;s:6:\"height\";i:218;s:4:\"file\";s:22:\"2021/05/rob-mobile.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"rob-mobile-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:{}}}'),(84758,2907,'_wp_attached_file','2021/05/new-graphic.png'),(84759,2907,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1224;s:6:\"height\";i:276;s:4:\"file\";s:23:\"2021/05/new-graphic.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"new-graphic-300x68.png\";s:5:\"width\";i:300;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"new-graphic-1024x231.png\";s:5:\"width\";i:1024;s:6:\"height\";i:231;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"new-graphic-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:23:\"new-graphic-768x173.png\";s:5:\"width\";i:768;s:6:\"height\";i:173;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:23:\"new-graphic-500x276.png\";s:5:\"width\";i:500;s:6:\"height\";i:276;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:{}}}'),(85047,2911,'_wp_attached_file','2021/05/new-graphic-1.png'),(85048,2911,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:690;s:6:\"height\";i:276;s:4:\"file\";s:25:\"2021/05/new-graphic-1.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"new-graphic-1-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"new-graphic-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:25:\"new-graphic-1-500x276.png\";s:5:\"width\";i:500;s:6:\"height\";i:276;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:{}}}'),(85049,2912,'_wp_attached_file','2021/05/new-graphic-2.png'),(85050,2912,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:690;s:6:\"height\";i:276;s:4:\"file\";s:25:\"2021/05/new-graphic-2.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"new-graphic-2-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"new-graphic-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:25:\"new-graphic-2-500x276.png\";s:5:\"width\";i:500;s:6:\"height\";i:276;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:{}}}'),(85347,2916,'_wp_attached_file','2021/05/b-icon.png'),(85348,2916,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:18:\"2021/05/b-icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(85351,2918,'_wp_attached_file','2021/05/icon-rb.png'),(85352,2918,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:289;s:6:\"height\";i:181;s:4:\"file\";s:19:\"2021/05/icon-rb.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"icon-rb-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:{}}}'),(85353,2919,'_wp_attached_file','2021/05/blue-icon.png'),(85354,2919,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:49;s:6:\"height\";i:54;s:4:\"file\";s:21:\"2021/05/blue-icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(85355,2920,'_wp_attached_file','2021/05/slider1.png'),(85356,2920,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:372;s:6:\"height\";i:700;s:4:\"file\";s:19:\"2021/05/slider1.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"slider1-159x300.png\";s:5:\"width\";i:159;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"slider1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:19:\"slider1-372x500.png\";s:5:\"width\";i:372;s:6:\"height\";i:500;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:{}}}'),(85357,2921,'_wp_attached_file','2021/05/slider2.png'),(85358,2921,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:447;s:6:\"height\";i:700;s:4:\"file\";s:19:\"2021/05/slider2.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"slider2-192x300.png\";s:5:\"width\";i:192;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"slider2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:19:\"slider2-447x500.png\";s:5:\"width\";i:447;s:6:\"height\";i:500;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:{}}}'),(85359,2922,'_wp_attached_file','2021/05/quote.png'),(85360,2922,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:611;s:6:\"height\";i:519;s:4:\"file\";s:17:\"2021/05/quote.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"quote-300x255.png\";s:5:\"width\";i:300;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"quote-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:17:\"quote-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(85583,2851,'_yoast_wpseo_title','Cloud Native SRE DevOps Consulting | Translucent'),(85584,2851,'_yoast_wpseo_metadesc','SRE DevOps and DevSecOps solutions to build and deliver automated, self-sustaining infrastructures on all cloud platforms. The online world – in sync.'),(85594,2851,'_yoast_wpseo_focuskw','Kubernetes and DevOps Consulting'),(85595,2851,'_yoast_wpseo_linkdex','33'),(85614,2925,'_menu_item_type','post_type'),(85615,2925,'_menu_item_menu_item_parent','2216'),(85616,2925,'_menu_item_object_id','2851'),(85617,2925,'_menu_item_object','page'),(85618,2925,'_menu_item_target',''),(85619,2925,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(85620,2925,'_menu_item_xfn',''),(85621,2925,'_menu_item_url',''),(85859,57,'hefo_before','0'),(85860,57,'hefo_after','0'),(86006,2933,'_wp_attached_file','2021/05/purple-top.jpg'),(86007,2933,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1923;s:6:\"height\";i:500;s:4:\"file\";s:22:\"2021/05/purple-top.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"purple-top-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"purple-top-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"purple-top-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:\"purple-top-768x200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"purple-top-1536x399.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"purple-top-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(86008,2934,'_wp_attached_file','2021/05/purple-icon.png'),(86009,2934,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:49;s:6:\"height\";i:54;s:4:\"file\";s:23:\"2021/05/purple-icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(86010,2935,'_wp_attached_file','2021/05/purple-b-icon.png'),(86011,2935,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:25:\"2021/05/purple-b-icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(86012,2936,'_wp_attached_file','2021/05/purple-quote.png'),(86013,2936,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:611;s:6:\"height\";i:519;s:4:\"file\";s:24:\"2021/05/purple-quote.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"purple-quote-300x255.png\";s:5:\"width\";i:300;s:6:\"height\";i:255;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"purple-quote-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:24:\"purple-quote-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(86016,2938,'_wp_attached_file','2021/05/purple-icon-rb.png'),(86017,2938,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:289;s:6:\"height\";i:181;s:4:\"file\";s:26:\"2021/05/purple-icon-rb.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"purple-icon-rb-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:{}}}'),(86018,2939,'_wp_attached_file','2021/05/purple-slider2.png'),(86019,2939,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:447;s:6:\"height\";i:700;s:4:\"file\";s:26:\"2021/05/purple-slider2.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"purple-slider2-192x300.png\";s:5:\"width\";i:192;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"purple-slider2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:26:\"purple-slider2-447x500.png\";s:5:\"width\";i:447;s:6:\"height\";i:500;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:{}}}'),(86020,2940,'_wp_attached_file','2021/05/purple-slider-1.png'),(86021,2940,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:372;s:6:\"height\";i:700;s:4:\"file\";s:27:\"2021/05/purple-slider-1.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"purple-slider-1-159x300.png\";s:5:\"width\";i:159;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"purple-slider-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:27:\"purple-slider-1-372x500.png\";s:5:\"width\";i:372;s:6:\"height\";i:500;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:{}}}'),(86022,2941,'_wp_attached_file','2021/05/purple-image1.jpg'),(86023,2941,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1900;s:6:\"height\";i:840;s:4:\"file\";s:25:\"2021/05/purple-image1.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"purple-image1-300x133.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"purple-image1-1024x453.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:453;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"purple-image1-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:\"purple-image1-768x340.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"purple-image1-1536x679.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:25:\"purple-image1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(86024,2942,'_wp_attached_file','2021/05/purple-icon-quote.png'),(86025,2942,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:37;s:6:\"height\";i:37;s:4:\"file\";s:29:\"2021/05/purple-icon-quote.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(86026,2943,'_wp_attached_file','2021/05/purple-image2.jpg'),(86027,2943,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1900;s:6:\"height\";i:840;s:4:\"file\";s:25:\"2021/05/purple-image2.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"purple-image2-300x133.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"purple-image2-1024x453.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:453;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"purple-image2-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:\"purple-image2-768x340.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:340;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"purple-image2-1536x679.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:679;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:25:\"purple-image2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(86181,2904,'_edit_lock','1621105329:4'),(86188,2,'hefo_before','0'),(86189,2,'hefo_after','0'),(86251,10,'hefo_before','0'),(86252,10,'hefo_after','0'),(86314,60,'hefo_before','0'),(86315,60,'hefo_after','0'),(86319,60,'_yoast_wpseo_focuskeywords','[]'),(86320,60,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(86321,46,'hefo_before','0'),(86322,46,'hefo_after','0'),(86326,46,'_yoast_wpseo_title','Case Studies - Explore Our Latest Work | Translucent'),(86327,46,'_yoast_wpseo_metadesc','Cloud native projects can be complex and risky. See how we work with our clients to simplify and overcome technical challenges.'),(86328,46,'_yoast_wpseo_focuskeywords','[{\"keyword\":\"Cloud Native Latest Work\",\"score\":\"ok\"}]'),(86329,46,'_yoast_wpseo_keywordsynonyms','[\"\",\"Working together with our clients\"]'),(86333,46,'_yoast_wpseo_focuskw','Cloud Native Case Studies'),(86334,46,'_yoast_wpseo_linkdex','33'),(86419,804,'hefo_before','0'),(86420,804,'hefo_after','0'),(86424,804,'_yoast_wpseo_focuskeywords','[]'),(86425,804,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(86462,38,'hefo_before','0'),(86463,38,'hefo_after','0'),(86467,38,'_yoast_wpseo_focuskeywords','[]'),(86468,38,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(86486,2249,'_yoast_wpseo_title','What is Data-Driven Digital Transformation? | Translucent'),(86538,2953,'_wp_page_template','index-2021.php'),(86539,2953,'top-image','654'),(86540,2953,'_top-image','field_5c47486901570'),(86541,2953,'top-title','Data-Driven
Digital Transformation'),(86542,2953,'_top-title','field_5c47489001571'),(86543,2953,'top-text','We Partner with companies to build business value through software innovation.

Every company is now a technology company. How competitive are you in your industry? Let us help you.'),(86544,2953,'_top-text','field_5c47489e01572'),(86545,2953,'top-items_0_item','Cloud-Native'),(86546,2953,'_top-items_0_item','field_5c4748d001574'),(86547,2953,'top-items_1_item','Data Lake'),(86548,2953,'_top-items_1_item','field_5c4748d001574'),(86549,2953,'top-items_2_item','Kubernetes'),(86550,2953,'_top-items_2_item','field_5c4748d001574'),(86551,2953,'top-items_3_item','Scalable'),(86552,2953,'_top-items_3_item','field_5c4748d001574'),(86553,2953,'top-items_4_item','Secure'),(86554,2953,'_top-items_4_item','field_5c4748d001574'),(86555,2953,'top-items','5'),(86556,2953,'_top-items','field_5c4748c401573'),(86557,2953,'top-button','44'),(86558,2953,'_top-button','field_5c4748e601575'),(86559,2953,'services-presentation','Build cloud-native applications with Translucent\r\nCreate modern applications using state-of-the-art technology with TEKStack AI'),(86560,2953,'_services-presentation','field_5c474986bee5b'),(86561,2953,'call-title','Start a Conversation'),(86562,2953,'_call-title','field_5c4749bcbee5c'),(86563,2953,'call-text',''),(86564,2953,'_call-text','field_5c4749d7bee5d'),(86565,2953,'case-title','The Hospital for Sick Children'),(86566,2953,'_case-title','field_5c4749f4bee5e'),(86567,2953,'case-text',''),(86568,2953,'_case-text','field_5c474a4abee5f'),(86569,2953,'case-image','772'),(86570,2953,'_case-image','field_5c474a6dbee61'),(86571,2953,'case-link','38'),(86572,2953,'_case-link','field_5c476a3dac685'),(86573,2953,'case_study_0_title',''),(86574,2953,'_case_study_0_title','field_5c82d24ccbac6'),(86575,2953,'case_study_0_text',''),(86576,2953,'_case_study_0_text','field_5c82d258cbac7'),(86577,2953,'case_study_0_image',''),(86578,2953,'_case_study_0_image','field_5c82d266cbac8'),(86579,2953,'case_study_0_link',''),(86580,2953,'_case_study_0_link','field_5c82d275cbac9'),(86581,2953,'case_study_1_title',''),(86582,2953,'_case_study_1_title','field_5c82d24ccbac6'),(86583,2953,'case_study_1_text',''),(86584,2953,'_case_study_1_text','field_5c82d258cbac7'),(86585,2953,'case_study_1_image',''),(86586,2953,'_case_study_1_image','field_5c82d266cbac8'),(86587,2953,'case_study_1_link',''),(86588,2953,'_case_study_1_link','field_5c82d275cbac9'),(86589,2953,'case_study',''),(86590,2953,'_case_study','field_6059d436ba0ce'),(86591,2953,'_yoast_wpseo_metadesc','Data-Driven Digital Transformation - Toronto based consulting company - Simplifying complex technical issues, with solutions you need, in a language you can understand.'),(86592,2953,'_yoast_wpseo_focuskw','Data-Driven Digital Transformation'),(86593,2953,'_yoast_wpseo_linkdex','53'),(86594,2953,'_yoast_wpseo_title','Data-Driven Digital Transformation - We Listen. We Learn. We Inform'),(86596,2953,'_yoast_wpseo_focuskeywords','[]'),(86597,2953,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(86599,2953,'_yoast_wpseo_content_score','60'),(86600,2953,'_facebook_shares','2'),(86601,2953,'_twitter_shares','0'),(86602,2953,'_linkedin_shares','0'),(86603,2953,'hefo_before','0'),(86604,2953,'hefo_after','0'),(86605,2953,'banners_0_banner_title','
'),(86606,2953,'_banners_0_banner_title','field_6059d268ba0bb'),(86607,2953,'banners_0_banner_subheading','data-driven | Digital transformation'),(86608,2953,'_banners_0_banner_subheading','field_6059d289ba0bc'),(86609,2953,'banners_0_banner_bold','We partner with companies to build business value through software innovation.'),(86610,2953,'_banners_0_banner_bold','field_6059d293ba0bd'),(86611,2953,'banners_0_banner_text','Every company is now a technology company. How competitive are you in your industry? Let us help you.'),(86612,2953,'_banners_0_banner_text','field_6059d2a2ba0be'),(86613,2953,'banners_0_video_background','1'),(86614,2953,'_banners_0_video_background','field_6059d2b3ba0bf'),(86615,2953,'banners_0_video_link','https://translucent.local/wp-content/uploads/2021/03/TC_BANNER.mp4'),(86616,2953,'_banners_0_video_link','field_6059d2ccba0c0'),(86617,2953,'banners_0_button_text','Learn More'),(86618,2953,'_banners_0_button_text','field_6059d309ba0c2'),(86619,2953,'banners_0_button_link','#'),(86620,2953,'_banners_0_button_link','field_6059d314ba0c3'),(86621,2953,'banners','3'),(86622,2953,'_banners','field_6059d073ba0ba'),(86623,2953,'blog_section_title','Build cloud-native\r\ndata-driven applications with Translucent'),(86624,2953,'_blog_section_title','field_6059d32dba0c4'),(86625,2953,'inform_and_learn','We work with you, informing and educating you about what it takes to be digitally competitive in the current market. We learn your business and business needs.'),(86626,2953,'_inform_and_learn','field_6059d34dba0c5'),(86627,2953,'inception_and_discovery','During the discovery phase we uncover all business processes and requirements and understand your current state. During the inception phase we conceive and plan your solution.'),(86628,2953,'_inception_and_discovery','field_6059d361ba0c6'),(86629,2953,'digital_transformation','We implement your digital strategy with ongoing support, leveraging proven development methodologies.'),(86630,2953,'_digital_transformation','field_6059d375ba0c7'),(86631,2953,'services_microservices','Building scalable, reliable and secure ecosystems for your business!'),(86632,2953,'_services_microservices','field_6059d397ba0c8'),(86633,2953,'services_microservices_image','2434'),(86634,2953,'_services_microservices_image','field_6059d3b9ba0c9'),(86635,2953,'services_machine','Insights to improve quality of life, provide clarity in decision making and increase profits.'),(86636,2953,'_services_machine','field_6059d3ccba0ca'),(86637,2953,'services_machine_image','2435'),(86638,2953,'_services_machine_image','field_6059d3e2ba0cb'),(86639,2953,'services_devops','Keeping communication between your business operations, your technology, and the online world, in sync.'),(86640,2953,'_services_devops','field_6059d402ba0cc'),(86641,2953,'services_devops_image','2433'),(86642,2953,'_services_devops_image','field_6059d412ba0cd'),(86643,2953,'case_study_title','Sick Kids Hospital'),(86644,2953,'_case_study_title','field_6059d43fba0cf'),(86645,2953,'case_study_description','At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum'),(86646,2953,'_case_study_description','field_6059d44aba0d0'),(86647,2953,'case_study_image','2215'),(86648,2953,'_case_study_image','field_6059d459ba0d1'),(86649,2953,'case_study_link','#'),(86650,2953,'_case_study_link','field_6059d471ba0d2'),(86651,2953,'clients','10'),(86652,2953,'_clients','field_6059d489ba0d3'),(86653,2953,'case_study_2_title',''),(86654,2953,'_case_study_2_title','field_5c82d24ccbac6'),(86655,2953,'case_study_2_text',''),(86656,2953,'_case_study_2_text','field_5c82d258cbac7'),(86657,2953,'case_study_2_image',''),(86658,2953,'_case_study_2_image','field_5c82d266cbac8'),(86659,2953,'case_study_2_link',''),(86660,2953,'_case_study_2_link','field_5c82d275cbac9'),(86661,2953,'case_study_3_title',''),(86662,2953,'_case_study_3_title','field_5c82d24ccbac6'),(86663,2953,'case_study_3_text',''),(86664,2953,'_case_study_3_text','field_5c82d258cbac7'),(86665,2953,'case_study_3_image',''),(86666,2953,'_case_study_3_image','field_5c82d266cbac8'),(86667,2953,'case_study_3_link',''),(86668,2953,'_case_study_3_link','field_5c82d275cbac9'),(86669,2953,'banners_1_banner_title','We Support'),(86670,2953,'_banners_1_banner_title','field_6059d268ba0bb'),(86671,2953,'banners_1_banner_subheading','24 hour support | 7 days a week'),(86672,2953,'_banners_1_banner_subheading','field_6059d289ba0bc'),(86673,2953,'banners_1_banner_bold','We support our people so they can support you, anytime and anywhere.'),(86674,2953,'_banners_1_banner_bold','field_6059d293ba0bd'),(86675,2953,'banners_1_banner_text','\"I would use tem again if I could. In fact,\r\nI would use their team for everything if I could!\"\r\nThiago Telles - Cerberus CEO'),(86676,2953,'_banners_1_banner_text','field_6059d2a2ba0be'),(86677,2953,'banners_1_video_background','0'),(86678,2953,'_banners_1_video_background','field_6059d2b3ba0bf'),(86679,2953,'banners_1_background_image','2272'),(86680,2953,'_banners_1_background_image','field_6059d2e1ba0c1'),(86681,2953,'banners_1_button_text','Know more'),(86682,2953,'_banners_1_button_text','field_6059d309ba0c2'),(86683,2953,'banners_1_button_link','#'),(86684,2953,'_banners_1_button_link','field_6059d314ba0c3'),(86685,2953,'banners_2_banner_title','We Learn'),(86686,2953,'_banners_2_banner_title','field_6059d268ba0bb'),(86687,2953,'banners_2_banner_subheading','Machine learning lorem ipsum'),(86688,2953,'_banners_2_banner_subheading','field_6059d289ba0bc'),(86689,2953,'banners_2_banner_bold','Learning is our DNA.
Knowledge sharing is our passion.'),(86690,2953,'_banners_2_banner_bold','field_6059d293ba0bd'),(86691,2953,'banners_2_banner_text','We share what we know, so you\'ll know what we learn.'),(86692,2953,'_banners_2_banner_text','field_6059d2a2ba0be'),(86693,2953,'banners_2_video_background','0'),(86694,2953,'_banners_2_video_background','field_6059d2b3ba0bf'),(86695,2953,'banners_2_background_image','2273'),(86696,2953,'_banners_2_background_image','field_6059d2e1ba0c1'),(86697,2953,'banners_2_button_text','Know more'),(86698,2953,'_banners_2_button_text','field_6059d309ba0c2'),(86699,2953,'banners_2_button_link','#'),(86700,2953,'_banners_2_button_link','field_6059d314ba0c3'),(86701,2953,'clients_0_image','793'),(86702,2953,'_clients_0_image','field_6059d493ba0d4'),(86703,2953,'clients_1_image','794'),(86704,2953,'_clients_1_image','field_6059d493ba0d4'),(86705,2953,'clients_2_image','623'),(86706,2953,'_clients_2_image','field_6059d493ba0d4'),(86707,2953,'clients_3_image','796'),(86708,2953,'_clients_3_image','field_6059d493ba0d4'),(86709,2953,'clients_4_image','797'),(86710,2953,'_clients_4_image','field_6059d493ba0d4'),(86711,2953,'clients_5_image','798'),(86712,2953,'_clients_5_image','field_6059d493ba0d4'),(86713,2953,'clients_6_image','799'),(86714,2953,'_clients_6_image','field_6059d493ba0d4'),(86715,2953,'clients_7_image','800'),(86716,2953,'_clients_7_image','field_6059d493ba0d4'),(86717,2953,'clients_8_image','801'),(86718,2953,'_clients_8_image','field_6059d493ba0d4'),(86719,2953,'clients_9_image','802'),(86720,2953,'_clients_9_image','field_6059d493ba0d4'),(86721,2953,'_pinterest_shares','0'),(86722,2953,'_total_shares','2'),(86723,2953,'swp_cache_timestamp','449028'),(86724,2953,'case_title','Sick Kids Hospital'),(86725,2953,'_case_title','field_6059e3a6eec00'),(86726,2953,'case_description','At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum'),(86727,2953,'_case_description','field_6059e3bdeec01'),(86728,2953,'case_image','2215'),(86729,2953,'_case_image','field_6059e3d7eec02'),(86730,2953,'case_link','#'),(86731,2953,'_case_link','field_6059e3e6eec03'),(86732,2953,'_dp_original','1924'),(86733,2953,'_edit_lock','1621799268:1'),(87072,2956,'_wp_attached_file','2021/05/icon-3.png'),(87073,2956,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:54;s:6:\"height\";i:60;s:4:\"file\";s:18:\"2021/05/icon-3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(87074,2957,'_wp_attached_file','2021/05/icon-2.png'),(87075,2957,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:54;s:6:\"height\";i:62;s:4:\"file\";s:18:\"2021/05/icon-2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(87076,2958,'_wp_attached_file','2021/05/icon-1.png'),(87077,2958,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:54;s:6:\"height\";i:60;s:4:\"file\";s:18:\"2021/05/icon-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(87078,2959,'_wp_attached_file','2021/05/services-1.png'),(87079,2959,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:584;s:6:\"height\";i:501;s:4:\"file\";s:22:\"2021/05/services-1.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"services-1-300x257.png\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"services-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"services-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(87080,2960,'_wp_attached_file','2021/05/services-3.png'),(87081,2960,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:520;s:6:\"height\";i:506;s:4:\"file\";s:22:\"2021/05/services-3.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"services-3-300x292.png\";s:5:\"width\";i:300;s:6:\"height\";i:292;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"services-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"services-3-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(87082,2961,'_wp_attached_file','2021/05/services-2.png'),(87083,2961,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:559;s:6:\"height\";i:497;s:4:\"file\";s:22:\"2021/05/services-2.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"services-2-300x267.png\";s:5:\"width\";i:300;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"services-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"services-2-500x497.png\";s:5:\"width\";i:500;s:6:\"height\";i:497;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:{}}}'),(87123,2884,'_yoast_wpseo_title','Translucent | Cloud Native Application Development'),(87127,2884,'_yoast_wpseo_focuskw','Cloud Native Application Development'),(87128,2884,'_yoast_wpseo_metadesc','A cloud native experience that mirrors what makes you successful in the physical world. Modern app development with Build, Rebuild, and Replatform strategy.'),(87129,2884,'_yoast_wpseo_linkdex','38'),(87220,2884,'_thumbnail_id','2933'),(87224,2884,'_yoast_wpseo_content_score','60'),(87834,2972,'hefo_before','0'),(87835,2972,'hefo_after','0'),(87836,2972,'_yoast_wpseo_focuskeywords','[]'),(87837,2972,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(87838,2972,'_wp_page_template','landing-page-colorful.php'),(87839,2972,'_yoast_wpseo_content_score','30'),(87840,2972,'background','2974'),(87841,2972,'_background','field_6083613c01a24'),(87842,2972,'title','Your \r\n#1 Partner \r\nin Cloud \r\nNative \r\nDevOps '),(87843,2972,'_title','field_6083614f01a25'),(87844,2972,'items_0_item','Simplify your Cloud'),(87845,2972,'_items_0_item','field_608361a401a28'),(87846,2972,'items_1_item','Make your Cloud computing worry-free'),(87847,2972,'_items_1_item','field_608361a401a28'),(87848,2972,'items','2'),(87849,2972,'_items','field_6083618a01a27'),(87850,2972,'image','2975'),(87851,2972,'_image','field_6083616401a26'),(87852,2972,'trusted_by_logos','5'),(87853,2972,'_trusted_by_logos','field_608361b101a29'),(87854,2972,'steps_image','2543'),(87855,2972,'_steps_image','field_608361e101a2b'),(87856,2972,'steps_title','Our approach to Your Successful DevOps Implementation'),(87857,2972,'_steps_title','field_608361ee01a2c'),(87858,2972,'steps_text','Plan we partner with your people and objectives in mind\r\nMigrate what adds business value first\r\nManage your cloud native DevOps Journey with you\r\nAutomate saving on your resource cost and making you money\r\nOptimize continuously improve and develop for your future'),(87859,2972,'_steps_text','field_6083620201a2d'),(87860,2972,'people_background','2621'),(87861,2972,'_people_background','field_6083621801a2e'),(87862,2972,'people_title',' We Listen. We Learn. We Inform.'),(87863,2972,'_people_title','field_6083622601a2f'),(87864,2972,'people_text','Digital Transformation is not just about cloud native DevOps technology. It’s about…\r\nPeople, Business, Operations and Results. Oh and People! Did I say people?'),(87865,2972,'_people_text','field_6083623101a30'),(87866,2972,'kubernetes_partnership_title','Benefits of the Translucent DevOps Kubernetes Partnership\r\nSAVE TIME and SAVE MONEY'),(87867,2972,'_kubernetes_partnership_title','field_6083624901a31'),(87868,2972,'kubernetes_partnership_image_desktop','2907'),(87869,2972,'_kubernetes_partnership_image_desktop','field_6083626601a33'),(87870,2972,'kubernetes_partnership_images_mobile_0_image','2911'),(87871,2972,'_kubernetes_partnership_images_mobile_0_image','field_6083628a01a35'),(87872,2972,'kubernetes_partnership_images_mobile_1_image','2912'),(87873,2972,'_kubernetes_partnership_images_mobile_1_image','field_6083628a01a35'),(87874,2972,'kubernetes_partnership_images_mobile','2'),(87875,2972,'_kubernetes_partnership_images_mobile','field_6083627c01a34'),(87876,2972,'kubernetes_partnership_text','Reduce costs and improve operational efficiency through enhanced collaboration between your teams, increased platform and automation.'),(87877,2972,'_kubernetes_partnership_text','field_6083625901a32'),(87878,2972,'kubernetes_seal_title','Why choose Cloud Native Kubernetes Certified DevOps?'),(87879,2972,'_kubernetes_seal_title','field_608362a801a36'),(87880,2972,'kubernetes_seal_subtitle','71% of Fortune 100 companies use Kubernetes'),(87881,2972,'_kubernetes_seal_subtitle','field_608362c501a37'),(87882,2972,'kubernetes_seal_items_0_item','25%+ Faster to Market'),(87883,2972,'_kubernetes_seal_items_0_item','field_608362e601a39'),(87884,2972,'kubernetes_seal_items_1_item','Reliable and Secure'),(87885,2972,'_kubernetes_seal_items_1_item','field_608362e601a39'),(87886,2972,'kubernetes_seal_items_2_item','Privacy by Design'),(87887,2972,'_kubernetes_seal_items_2_item','field_608362e601a39'),(87888,2972,'kubernetes_seal_items_3_item','Automated Reporting for Your Entire Company'),(87889,2972,'_kubernetes_seal_items_3_item','field_608362e601a39'),(87890,2972,'kubernetes_seal_items_4_item','Kubernetes Connects You to all Major Clouds'),(87891,2972,'_kubernetes_seal_items_4_item','field_608362e601a39'),(87892,2972,'kubernetes_seal_items_5_item','35%+ Increase in Operational Efficiency'),(87893,2972,'_kubernetes_seal_items_5_item','field_608362e601a39'),(87894,2972,'kubernetes_seal_items_6_item','More Done with Less Resources'),(87895,2972,'_kubernetes_seal_items_6_item','field_608362e601a39'),(87896,2972,'kubernetes_seal_items','7'),(87897,2972,'_kubernetes_seal_items','field_608362db01a38'),(87898,2972,'kubernetes_seal_message','As a Certified Provider Translucent gets the Job Done Right!'),(87899,2972,'_kubernetes_seal_message','field_6083630501a3a'),(87900,2972,'kubernetes_seal_image','2600'),(87901,2972,'_kubernetes_seal_image','field_6083632101a3b'),(87902,2972,'black_background_phrase','As Your Cloud Native Kubernetes DevOps Partner, We are with You All the Way!'),(87903,2972,'_black_background_phrase','field_6083633201a3c'),(87904,2972,'testimonials_0_text','\"Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automotive, loan, mechanic, and customer workflow data making the complex almost seem like magic.\"'),(87905,2972,'_testimonials_0_text','field_6083636801a3e'),(87906,2972,'testimonials_0_picture',''),(87907,2972,'_testimonials_0_picture','field_6083638701a41'),(87908,2972,'testimonials_0_name','Eric Kaplan'),(87909,2972,'_testimonials_0_name','field_6083637a01a3f'),(87910,2972,'testimonials_0_role','COO – GoToLoans'),(87911,2972,'_testimonials_0_role','field_6083638101a40'),(87912,2972,'testimonials_1_text','\"A lot of technology vendors claim to have expertise with these technologies, but those boasts aren’t always a reality. You need to hire great engineers that work well with clients and that, in a nutshell, is what Translucent Computing has brought to Canadian Black Book.\"'),(87913,2972,'_testimonials_1_text','field_6083636801a3e'),(87914,2972,'testimonials_1_picture',''),(87915,2972,'_testimonials_1_picture','field_6083638701a41'),(87916,2972,'testimonials_1_name','Mike Compton'),(87917,2972,'_testimonials_1_name','field_6083637a01a3f'),(87918,2972,'testimonials_1_role','CTO, Canadian Black Book | A division of the Hearst Business Media Corporation (US$11.4 billion 2019)'),(87919,2972,'_testimonials_1_role','field_6083638101a40'),(87920,2972,'testimonials','8'),(87921,2972,'_testimonials','field_6083636001a3d'),(87922,2972,'ceo_picture','2904'),(87923,2972,'_ceo_picture','field_608363a901a42'),(87924,2972,'ceo_picture_mobile','2905'),(87925,2972,'_ceo_picture_mobile','field_608363b701a43'),(87926,2972,'ceo_name','Robert Golabeck'),(87927,2972,'_ceo_name','field_608363cd01a44'),(87928,2972,'ceo_email','results@translucentcomputing.com'),(87929,2972,'_ceo_email','field_608363da01a45'),(87930,2972,'ceo_phone','1-888-828-0144 x 105'),(87931,2972,'_ceo_phone','field_608363e701a46'),(87932,2972,'ceo_address','1 Yonge Street, Suite 1801\r\nToronto, Ontario\r\nM5E 1W7'),(87933,2972,'_ceo_address','field_608363fa01a47'),(87934,2972,'footer_kubernetes_image','2579'),(87935,2972,'_footer_kubernetes_image','field_6083644901a49'),(87936,2972,'trusted_by_logos_0_logo','2713'),(87937,2972,'_trusted_by_logos_0_logo','field_608361c501a2a'),(87938,2972,'trusted_by_logos_1_logo','2711'),(87939,2972,'_trusted_by_logos_1_logo','field_608361c501a2a'),(87940,2972,'trusted_by_logos_2_logo','2712'),(87941,2972,'_trusted_by_logos_2_logo','field_608361c501a2a'),(87942,2972,'trusted_by_logos_3_logo','2716'),(87943,2972,'_trusted_by_logos_3_logo','field_608361c501a2a'),(87944,2972,'trusted_by_logos_4_logo','2714'),(87945,2972,'_trusted_by_logos_4_logo','field_608361c501a2a'),(87946,2972,'testimonials_2_text','\"Translucent understanding of the cloud native DevOps space and expertise in Kubernetes though to data-driven applications has proven extremely valuable to Volentix\'s growth of our multi-currency cross-blockchain solution.\"'),(87947,2972,'_testimonials_2_text','field_6083636801a3e'),(87948,2972,'testimonials_2_picture',''),(87949,2972,'_testimonials_2_picture','field_6083638701a41'),(87950,2972,'testimonials_2_name','Rhys Parry'),(87951,2972,'_testimonials_2_name','field_6083637a01a3f'),(87952,2972,'testimonials_2_role','Volentix CTO'),(87953,2972,'_testimonials_2_role','field_6083638101a40'),(87954,2972,'testimonials_3_text','\"Translucent Computing… Dedicated professionals that can provide economical solutions for web base needs for both the private and public sector. They have worked with us for some 5 years and they have shown to be both very professional and helpful in developing and supporting our database.\"'),(87955,2972,'_testimonials_3_text','field_6083636801a3e'),(87956,2972,'testimonials_3_picture',''),(87957,2972,'_testimonials_3_picture','field_6083638701a41'),(87958,2972,'testimonials_3_name','James Loukides'),(87959,2972,'_testimonials_3_name','field_6083637a01a3f'),(87960,2972,'testimonials_3_role','The Michael and Amira Dan Brain Tumor Bank Network Manager | University of Toronto'),(87961,2972,'_testimonials_3_role','field_6083638101a40'),(87962,2972,'testimonials_4_text','\"A strong foundation using AWS cloud, terraform for infrastructure deployment, Kubernetes for cluster monitoring and scaling, app containerization using Docker, and a strong dose of DevOps to ensure the pipeline was automated.\"'),(87963,2972,'_testimonials_4_text','field_6083636801a3e'),(87964,2972,'testimonials_4_picture',''),(87965,2972,'_testimonials_4_picture','field_6083638701a41'),(87966,2972,'testimonials_4_name','Mike Compton'),(87967,2972,'_testimonials_4_name','field_6083637a01a3f'),(87968,2972,'testimonials_4_role','CTO, Canadian Black Book | A division of the Hearst Business Media Corporation (US$11.4 billion 2019)'),(87969,2972,'_testimonials_4_role','field_6083638101a40'),(87970,2972,'testimonials_5_text','\"I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.\"'),(87971,2972,'_testimonials_5_text','field_6083636801a3e'),(87972,2972,'testimonials_5_picture',''),(87973,2972,'_testimonials_5_picture','field_6083638701a41'),(87974,2972,'testimonials_5_name','Andrew James'),(87975,2972,'_testimonials_5_name','field_6083637a01a3f'),(87976,2972,'testimonials_5_role','MBChB, MBI, FRACP, FRCPC | Neonatology & Biomedical Informatics -Staff Neonatologist, Division of Neonatology, The Hospital for Sick Children, Toronto | Associate Professor, Department of Pediatrics, University of Toronto'),(87977,2972,'_testimonials_5_role','field_6083638101a40'),(87978,2972,'testimonials_6_text','\"Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security as it fits the fintech and financial services space has been invaluable.  I would use them again if I could.  In fact, I would use their team for everything if I could!\"'),(87979,2972,'_testimonials_6_text','field_6083636801a3e'),(87980,2972,'testimonials_6_picture',''),(87981,2972,'_testimonials_6_picture','field_6083638701a41'),(87982,2972,'testimonials_6_name','Rhys Parry'),(87983,2972,'_testimonials_6_name','field_6083637a01a3f'),(87984,2972,'testimonials_6_role','Volentix CTO'),(87985,2972,'_testimonials_6_role','field_6083638101a40'),(87986,2972,'testimonials_7_text','\"Translucent is a strategic partner in the design and development of our technology platform. Their expertise, commitment and flexibility during the engagement helped us to build a solution that will improve patient scheduling for healthcare providers.\"'),(87987,2972,'_testimonials_7_text','field_6083636801a3e'),(87988,2972,'testimonials_7_picture',''),(87989,2972,'_testimonials_7_picture','field_6083638701a41'),(87990,2972,'testimonials_7_name','Wayne Li'),(87991,2972,'_testimonials_7_name','field_6083637a01a3f'),(87992,2972,'testimonials_7_role','CEO NextUp Care'),(87993,2972,'_testimonials_7_role','field_6083638101a40'),(87997,2972,'_dp_original','2526'),(87998,2972,'_edit_last','4'),(87999,2972,'_edit_lock','1623780350:4'),(88006,2974,'_wp_attached_file','2021/05/bg-banner-colorful.jpg'),(88007,2974,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:940;s:4:\"file\";s:30:\"2021/05/bg-banner-colorful.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"bg-banner-colorful-300x147.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"bg-banner-colorful-1024x501.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:501;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"bg-banner-colorful-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:\"bg-banner-colorful-768x376.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:376;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"bg-banner-colorful-1536x752.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:752;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:30:\"bg-banner-colorful-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(88014,2975,'_wp_attached_file','2021/05/woman-colorful.png'),(88015,2975,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:792;s:6:\"height\";i:878;s:4:\"file\";s:26:\"2021/05/woman-colorful.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"woman-colorful-271x300.png\";s:5:\"width\";i:271;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"woman-colorful-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:\"woman-colorful-768x851.png\";s:5:\"width\";i:768;s:6:\"height\";i:851;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:26:\"woman-colorful-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(88179,2761,'_pinterest_shares','0'),(88180,2761,'_total_shares','0'),(88185,2718,'_pinterest_shares','0'),(88186,2718,'_total_shares','0'),(88189,2977,'hefo_before','0'),(88190,2977,'hefo_after','0'),(88191,2977,'_yoast_wpseo_focuskeywords','[]'),(88192,2977,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(88193,2977,'_wp_page_template','landing-page-mid-colorful.php'),(88195,2977,'_yoast_wpseo_content_score','30'),(88196,2977,'background','2974'),(88197,2977,'_background','field_60836a906fbfa'),(88198,2977,'title','71% of \r\nFortune 100 \r\ncompanies \r\nuse \r\nKubernetes \r\nin DevOps '),(88199,2977,'_title','field_60836a906fc4e'),(88200,2977,'items_0_item','Simplify your Cloud'),(88201,2977,'_items_0_item','field_60836a91045e9'),(88202,2977,'items_1_item','Make your Cloud computing worry-free'),(88203,2977,'_items_1_item','field_60836a91045e9'),(88204,2977,'items','2'),(88205,2977,'_items','field_60836a906fc93'),(88206,2977,'image','2975'),(88207,2977,'_image','field_60836a906fce6'),(88208,2977,'trusted_by_logos',''),(88209,2977,'_trusted_by_logos','field_60836a906fd30'),(88210,2977,'kubernetes_partnership_title','Translucent\'s Devops Kubernetes Partnership\r\nSaves You Time and Money'),(88211,2977,'_kubernetes_partnership_title','field_60836a906ffbf'),(88212,2977,'kubernetes_partnership_image_desktop','2907'),(88213,2977,'_kubernetes_partnership_image_desktop','field_60836a9070001'),(88214,2977,'kubernetes_partnership_images_mobile_0_image','2911'),(88215,2977,'_kubernetes_partnership_images_mobile_0_image','field_60836a9390fba'),(88216,2977,'kubernetes_partnership_images_mobile_1_image','2912'),(88217,2977,'_kubernetes_partnership_images_mobile_1_image','field_60836a9390fba'),(88218,2977,'kubernetes_partnership_images_mobile','2'),(88219,2977,'_kubernetes_partnership_images_mobile','field_60836a907003f'),(88220,2977,'kubernetes_partnership_text','\"The team takes a very human-centric approach, understanding that all businesses have to work with a budget. We attribute a large part of integrating our physical operational model into technological success to Translucent.\" Eric Kaplan COO - GoToLoans'),(88221,2977,'_kubernetes_partnership_text','field_60836a907007d'),(88222,2977,'people_background','2621'),(88223,2977,'_people_background','field_60836a906fede'),(88224,2977,'people_title',' We Listen. We Learn. We Inform.'),(88225,2977,'_people_title','field_60836a906ff2f'),(88226,2977,'people_text','This is not just about cloud native DevOps technology. It’s about…\r\nPeople, Business, Operations and Results. Oh and People! Did we say people?'),(88227,2977,'_people_text','field_60836a906ff6f'),(88228,2977,'black_background_phrase','Your Cloud Native Kubernetes\r\nDevOps Partner we are with You All the Way!'),(88229,2977,'_black_background_phrase','field_60836a9070202'),(88230,2977,'testimonials_0_text','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Quis ipsum suspendisse ultrices gravida. Risus commodo viverra maecenas accumsan lacus vel facilisis.'),(88231,2977,'_testimonials_0_text','field_60836a959bf3a'),(88232,2977,'testimonials_0_picture','2546'),(88233,2977,'_testimonials_0_picture','field_60836a959bf8f'),(88234,2977,'testimonials_0_name','Pedro Alvares Cabral'),(88235,2977,'_testimonials_0_name','field_60836a959bfe0'),(88236,2977,'testimonials_0_role',' Discoverer @ Brazil'),(88237,2977,'_testimonials_0_role','field_60836a959c02e'),(88238,2977,'testimonials_1_text','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Quis ipsum suspendisse ultrices gravida. Risus commodo viverra maecenas accumsan lacus vel facilisis.'),(88239,2977,'_testimonials_1_text','field_60836a959bf3a'),(88240,2977,'testimonials_1_picture','2546'),(88241,2977,'_testimonials_1_picture','field_60836a959bf8f'),(88242,2977,'testimonials_1_name','Pedro Alvares Cabral 2'),(88243,2977,'_testimonials_1_name','field_60836a959bfe0'),(88244,2977,'testimonials_1_role',' Discoverer @ Brazil'),(88245,2977,'_testimonials_1_role','field_60836a959c02e'),(88246,2977,'testimonials','2'),(88247,2977,'_testimonials','field_60836a907026e'),(88248,2977,'steps_image',''),(88249,2977,'_steps_image','field_60836a906fd7e'),(88250,2977,'steps_title',''),(88251,2977,'_steps_title','field_60836a906fe1c'),(88252,2977,'steps_text',''),(88253,2977,'_steps_text','field_60836a906fe70'),(88254,2977,'ceo_picture',''),(88255,2977,'_ceo_picture','field_60836a90702ab'),(88256,2977,'ceo_picture_mobile',''),(88257,2977,'_ceo_picture_mobile','field_60836a90702eb'),(88258,2977,'ceo_name',''),(88259,2977,'_ceo_name','field_60836a907032b'),(88260,2977,'ceo_email',''),(88261,2977,'_ceo_email','field_60836a907037a'),(88262,2977,'ceo_phone',''),(88263,2977,'_ceo_phone','field_60836a90703b9'),(88264,2977,'ceo_address',''),(88265,2977,'_ceo_address','field_60836a90703f8'),(88266,2977,'footer_kubernetes_image',''),(88267,2977,'_footer_kubernetes_image','field_60836a9070439'),(88271,2977,'_dp_original','2602'),(88272,2977,'_edit_last','4'),(88273,2977,'_edit_lock','1623780443:4'),(88347,2980,'hefo_before','0'),(88348,2980,'hefo_after','0'),(88349,2980,'_yoast_wpseo_focuskeywords','[]'),(88350,2980,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(88351,2980,'_wp_page_template','landing-page-short-4-colorful.php'),(88353,2980,'_yoast_wpseo_content_score','60'),(88354,2980,'background','2974'),(88355,2980,'_background','field_608382637df1b'),(88356,2980,'title','Your\r\n#1 Partner\r\nin Cloud\r\nNative\r\nDevOps'),(88357,2980,'_title','field_608382637df71'),(88358,2980,'items_0_item','Simplify your Cloud'),(88359,2980,'_items_0_item','field_6083826409fc4'),(88360,2980,'items_1_item','Make your Cloud computing worry-free'),(88361,2980,'_items_1_item','field_6083826409fc4'),(88362,2980,'items','2'),(88363,2980,'_items','field_608382637dfb5'),(88364,2980,'image','2975'),(88365,2980,'_image','field_608382637e061'),(88366,2980,'steps_image',''),(88367,2980,'_steps_image','field_608382637e232'),(88368,2980,'kubernetes_seal_title','Why choose Cloud Native Kubernetes Certified DevOps?'),(88369,2980,'_kubernetes_seal_title','field_608382637e6d1'),(88370,2980,'kubernetes_seal_subtitle','71% of Fortune 100 companies use Kubernetes'),(88371,2980,'_kubernetes_seal_subtitle','field_608382637e736'),(88372,2980,'kubernetes_seal_items_0_item','25%+ Faster to Market'),(88373,2980,'_kubernetes_seal_items_0_item','field_60838267663e6'),(88374,2980,'kubernetes_seal_items_1_item','Reliable and Secure'),(88375,2980,'_kubernetes_seal_items_1_item','field_60838267663e6'),(88376,2980,'kubernetes_seal_items_2_item','Privacy by Design'),(88377,2980,'_kubernetes_seal_items_2_item','field_60838267663e6'),(88378,2980,'kubernetes_seal_items_3_item','Automated Reporting for Your Entire Company'),(88379,2980,'_kubernetes_seal_items_3_item','field_60838267663e6'),(88380,2980,'kubernetes_seal_items_4_item','Kubernetes Connects You to all Major Clouds'),(88381,2980,'_kubernetes_seal_items_4_item','field_60838267663e6'),(88382,2980,'kubernetes_seal_items_5_item','35%+ Increase in Operational Efficiency'),(88383,2980,'_kubernetes_seal_items_5_item','field_60838267663e6'),(88384,2980,'kubernetes_seal_items_6_item','More Done with Less Resources'),(88385,2980,'_kubernetes_seal_items_6_item','field_60838267663e6'),(88386,2980,'kubernetes_seal_items','7'),(88387,2980,'_kubernetes_seal_items','field_608382637e777'),(88388,2980,'kubernetes_seal_message','As a Certified Provider, Translucent gets the Job Done Right!'),(88389,2980,'_kubernetes_seal_message','field_608382637e7b8'),(88390,2980,'kubernetes_seal_image','2600'),(88391,2980,'_kubernetes_seal_image','field_608382637e847'),(88392,2980,'kubernetes_partnership_title','Translucent\'s Devops Kubernetes Partnership\r\nSaves You Time and Money'),(88393,2980,'_kubernetes_partnership_title','field_608382637e494'),(88394,2980,'kubernetes_partnership_image_desktop','2907'),(88395,2980,'_kubernetes_partnership_image_desktop','field_608382637e4ee'),(88396,2980,'kubernetes_partnership_images_mobile','2'),(88397,2980,'_kubernetes_partnership_images_mobile','field_608382637e597'),(88398,2980,'kubernetes_partnership_text','\"\"Automation of repetitive workflow task. Faster and highly available customer, staff and 3rd party experience. Saving company money, keeping current clients happier and closing new customers 24/7.\r\n'),(88399,2980,'_kubernetes_partnership_text','field_608382637e5c7'),(88400,2980,'black_background_phrase',''),(88401,2980,'_black_background_phrase','field_608382637e896'),(88402,2980,'kubernetes_partnership_images_mobile_0_image','2911'),(88403,2980,'_kubernetes_partnership_images_mobile_0_image','field_6083826669ba2'),(88404,2980,'kubernetes_partnership_images_mobile_1_image','2912'),(88405,2980,'_kubernetes_partnership_images_mobile_1_image','field_6083826669ba2'),(88409,2980,'_dp_original','2619'),(88410,2980,'_edit_last','4'),(88411,2980,'_edit_lock','1623780423:4'),(88465,2983,'hefo_before','0'),(88466,2983,'hefo_after','0'),(88467,2983,'_yoast_wpseo_focuskeywords','[]'),(88468,2983,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(88469,2983,'_wp_page_template','landing-page-short-5-colorful.php'),(88471,2983,'_yoast_wpseo_content_score','60'),(88472,2983,'background','2974'),(88473,2983,'_background','field_60837bcb4601d'),(88474,2983,'title',' \r\n\r\n \r\n\r\n71% of Fortune 100 companies use Kubernetes in DevOps\r\n\r\n '),(88475,2983,'_title','field_60837bcb4606e'),(88476,2983,'items_0_item','Simplify your Cloud'),(88477,2983,'_items_0_item','field_60837bcbda2ad'),(88478,2983,'items_1_item','Make your Cloud computing worry-free'),(88479,2983,'_items_1_item','field_60837bcbda2ad'),(88480,2983,'items','2'),(88481,2983,'_items','field_60837bcb460ba'),(88482,2983,'image','2975'),(88483,2983,'_image','field_60837bcb46106'),(88484,2983,'kubernetes_seal_title','Why choose Cloud Native Kubernetes Certified DevOps?'),(88485,2983,'_kubernetes_seal_title','field_60837bcb46461'),(88486,2983,'kubernetes_seal_subtitle','Automation in Motion'),(88487,2983,'_kubernetes_seal_subtitle','field_60837bcb464ca'),(88488,2983,'kubernetes_seal_items_0_item','25%+ Faster to Market'),(88489,2983,'_kubernetes_seal_items_0_item','field_60837bd025766'),(88490,2983,'kubernetes_seal_items_1_item','Reliable and Secure'),(88491,2983,'_kubernetes_seal_items_1_item','field_60837bd025766'),(88492,2983,'kubernetes_seal_items_2_item','Privacy by Design'),(88493,2983,'_kubernetes_seal_items_2_item','field_60837bd025766'),(88494,2983,'kubernetes_seal_items_3_item','Automated Reporting for Your Entire Company'),(88495,2983,'_kubernetes_seal_items_3_item','field_60837bd025766'),(88496,2983,'kubernetes_seal_items_4_item','Kubernetes Connects You to all Major Clouds'),(88497,2983,'_kubernetes_seal_items_4_item','field_60837bd025766'),(88498,2983,'kubernetes_seal_items_5_item','35%+ Increase in Operational Efficiency'),(88499,2983,'_kubernetes_seal_items_5_item','field_60837bd025766'),(88500,2983,'kubernetes_seal_items_6_item','More Done with Less Resources'),(88501,2983,'_kubernetes_seal_items_6_item','field_60837bd025766'),(88502,2983,'kubernetes_seal_items','7'),(88503,2983,'_kubernetes_seal_items','field_60837bcb46524'),(88504,2983,'kubernetes_seal_message','As a Certified Provider Translucent gets the Job Done Right!'),(88505,2983,'_kubernetes_seal_message','field_60837bcb46594'),(88506,2983,'kubernetes_seal_image','2600'),(88507,2983,'_kubernetes_seal_image','field_60837bcb465ef'),(88508,2983,'people_background','2621'),(88509,2983,'_people_background','field_60837bcb46250'),(88510,2983,'people_title','Team Collaboration just got an Upgrade'),(88511,2983,'_people_title','field_60837bcb46294'),(88512,2983,'people_text','\"\"Automation of repetitive workflow task. Faster and highly available customer, staff and 3rd party experience. Saving company money, keeping current clients happier and closing new customers 24/7.'),(88513,2983,'_people_text','field_60837bcb462fa'),(88514,2983,'black_background_phrase','Your Cloud Native Kubernetes\r\nDevOps Partner with You All the Way!'),(88515,2983,'_black_background_phrase','field_60837bcb4668e'),(88519,2983,'_dp_original','2616'),(88520,2983,'_edit_last','4'),(88521,2983,'_edit_lock','1623780407:4'),(89470,3009,'hefo_before','0'),(89471,3009,'hefo_after','0'),(89472,3009,'_yoast_wpseo_focuskeywords','[]'),(89473,3009,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(89474,3009,'_wp_page_template','landing-page-mid-colorful.php'),(89476,3009,'background','3057'),(89477,3009,'_background','field_60836a906fbfa'),(89478,3009,'title','71% of \r\nFortune 100 \r\ncompanies \r\nuse \r\nKubernetes \r\nin DevOps '),(89479,3009,'_title','field_60836a906fc4e'),(89480,3009,'items_0_item','Simplify your Cloud'),(89481,3009,'_items_0_item','field_60836a91045e9'),(89482,3009,'items_1_item','Make your Cloud computing worry-free'),(89483,3009,'_items_1_item','field_60836a91045e9'),(89484,3009,'items','2'),(89485,3009,'_items','field_60836a906fc93'),(89486,3009,'image','2975'),(89487,3009,'_image','field_60836a906fce6'),(89488,3009,'trusted_by_logos',''),(89489,3009,'_trusted_by_logos','field_60836a906fd30'),(89490,3009,'kubernetes_partnership_title','Translucent\'s Devops Kubernetes Partnership\r\nSaves You Time and Money'),(89491,3009,'_kubernetes_partnership_title','field_60836a906ffbf'),(89492,3009,'kubernetes_partnership_image_desktop','2907'),(89493,3009,'_kubernetes_partnership_image_desktop','field_60836a9070001'),(89494,3009,'kubernetes_partnership_images_mobile_0_image','2911'),(89495,3009,'_kubernetes_partnership_images_mobile_0_image','field_60836a9390fba'),(89496,3009,'kubernetes_partnership_images_mobile_1_image','2912'),(89497,3009,'_kubernetes_partnership_images_mobile_1_image','field_60836a9390fba'),(89498,3009,'kubernetes_partnership_images_mobile','2'),(89499,3009,'_kubernetes_partnership_images_mobile','field_60836a907003f'),(89500,3009,'kubernetes_partnership_text','\"The team takes a very human-centric approach, understanding that all businesses have to work with a budget. We attribute a large part of integrating our physical operational model into technological success to Translucent.\" Eric Kaplan COO - GoToLoans'),(89501,3009,'_kubernetes_partnership_text','field_60836a907007d'),(89502,3009,'people_background','2621'),(89503,3009,'_people_background','field_60836a906fede'),(89504,3009,'people_title',' We Listen. We Learn. We Inform.'),(89505,3009,'_people_title','field_60836a906ff2f'),(89506,3009,'people_text','This is not just about cloud native DevOps technology. It’s about…\r\nPeople, Business, Operations and Results. Oh and People! Did we say people?'),(89507,3009,'_people_text','field_60836a906ff6f'),(89508,3009,'black_background_phrase','Your Cloud Native Kubernetes\r\nDevOps Partner we are with You All the Way!'),(89509,3009,'_black_background_phrase','field_60836a9070202'),(89510,3009,'testimonials_0_text','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Quis ipsum suspendisse ultrices gravida. Risus commodo viverra maecenas accumsan lacus vel facilisis.'),(89511,3009,'_testimonials_0_text','field_60836a959bf3a'),(89512,3009,'testimonials_0_picture','2546'),(89513,3009,'_testimonials_0_picture','field_60836a959bf8f'),(89514,3009,'testimonials_0_name','Pedro Alvares Cabral'),(89515,3009,'_testimonials_0_name','field_60836a959bfe0'),(89516,3009,'testimonials_0_role',' Discoverer @ Brazil'),(89517,3009,'_testimonials_0_role','field_60836a959c02e'),(89518,3009,'testimonials_1_text','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Quis ipsum suspendisse ultrices gravida. Risus commodo viverra maecenas accumsan lacus vel facilisis.'),(89519,3009,'_testimonials_1_text','field_60836a959bf3a'),(89520,3009,'testimonials_1_picture','2546'),(89521,3009,'_testimonials_1_picture','field_60836a959bf8f'),(89522,3009,'testimonials_1_name','Pedro Alvares Cabral 2'),(89523,3009,'_testimonials_1_name','field_60836a959bfe0'),(89524,3009,'testimonials_1_role',' Discoverer @ Brazil'),(89525,3009,'_testimonials_1_role','field_60836a959c02e'),(89526,3009,'testimonials','2'),(89527,3009,'_testimonials','field_60836a907026e'),(89528,3009,'steps_image',''),(89529,3009,'_steps_image','field_60836a906fd7e'),(89530,3009,'steps_title',''),(89531,3009,'_steps_title','field_60836a906fe1c'),(89532,3009,'steps_text',''),(89533,3009,'_steps_text','field_60836a906fe70'),(89534,3009,'ceo_picture',''),(89535,3009,'_ceo_picture','field_60836a90702ab'),(89536,3009,'ceo_picture_mobile',''),(89537,3009,'_ceo_picture_mobile','field_60836a90702eb'),(89538,3009,'ceo_name',''),(89539,3009,'_ceo_name','field_60836a907032b'),(89540,3009,'ceo_email',''),(89541,3009,'_ceo_email','field_60836a907037a'),(89542,3009,'ceo_phone',''),(89543,3009,'_ceo_phone','field_60836a90703b9'),(89544,3009,'ceo_address',''),(89545,3009,'_ceo_address','field_60836a90703f8'),(89546,3009,'footer_kubernetes_image',''),(89547,3009,'_footer_kubernetes_image','field_60836a9070439'),(89552,3009,'_dp_original','2977'),(89553,3009,'_edit_last','1'),(89557,3009,'_edit_lock','1625144214:1'),(89630,3012,'hefo_before','0'),(89631,3012,'hefo_after','0'),(89632,3012,'_yoast_wpseo_focuskeywords','[]'),(89633,3012,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(89634,3012,'_wp_page_template','landing-page-mid-colorful.php'),(89636,3012,'background','3073'),(89637,3012,'_background','field_60836a906fbfa'),(89638,3012,'title','71% of \r\nFortune 100 \r\ncompanies \r\nuse \r\nKubernetes \r\nin DevOps '),(89639,3012,'_title','field_60836a906fc4e'),(89640,3012,'items_0_item','Simplify your Cloud'),(89641,3012,'_items_0_item','field_60836a91045e9'),(89642,3012,'items_1_item','Make your Cloud computing worry-free'),(89643,3012,'_items_1_item','field_60836a91045e9'),(89644,3012,'items','2'),(89645,3012,'_items','field_60836a906fc93'),(89646,3012,'image','2975'),(89647,3012,'_image','field_60836a906fce6'),(89648,3012,'trusted_by_logos',''),(89649,3012,'_trusted_by_logos','field_60836a906fd30'),(89650,3012,'kubernetes_partnership_title','Translucent\'s Devops Kubernetes Partnership\r\nSaves You Time and Money'),(89651,3012,'_kubernetes_partnership_title','field_60836a906ffbf'),(89652,3012,'kubernetes_partnership_image_desktop','2907'),(89653,3012,'_kubernetes_partnership_image_desktop','field_60836a9070001'),(89654,3012,'kubernetes_partnership_images_mobile_0_image','2911'),(89655,3012,'_kubernetes_partnership_images_mobile_0_image','field_60836a9390fba'),(89656,3012,'kubernetes_partnership_images_mobile_1_image','2912'),(89657,3012,'_kubernetes_partnership_images_mobile_1_image','field_60836a9390fba'),(89658,3012,'kubernetes_partnership_images_mobile','2'),(89659,3012,'_kubernetes_partnership_images_mobile','field_60836a907003f'),(89660,3012,'kubernetes_partnership_text','\"The team takes a very human-centric approach, understanding that all businesses have to work with a budget. We attribute a large part of integrating our physical operational model into technological success to Translucent.\" Eric Kaplan COO - GoToLoans'),(89661,3012,'_kubernetes_partnership_text','field_60836a907007d'),(89662,3012,'people_background','2621'),(89663,3012,'_people_background','field_60836a906fede'),(89664,3012,'people_title',' We Listen. We Learn. We Inform.'),(89665,3012,'_people_title','field_60836a906ff2f'),(89666,3012,'people_text','This is not just about cloud native DevOps technology. It’s about…\r\nPeople, Business, Operations and Results. Oh and People! Did we say people?'),(89667,3012,'_people_text','field_60836a906ff6f'),(89668,3012,'black_background_phrase','Your Cloud Native Kubernetes\r\nDevOps Partner we are with You All the Way!'),(89669,3012,'_black_background_phrase','field_60836a9070202'),(89670,3012,'testimonials_0_text','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Quis ipsum suspendisse ultrices gravida. Risus commodo viverra maecenas accumsan lacus vel facilisis.'),(89671,3012,'_testimonials_0_text','field_60836a959bf3a'),(89672,3012,'testimonials_0_picture','2546'),(89673,3012,'_testimonials_0_picture','field_60836a959bf8f'),(89674,3012,'testimonials_0_name','Pedro Alvares Cabral'),(89675,3012,'_testimonials_0_name','field_60836a959bfe0'),(89676,3012,'testimonials_0_role',' Discoverer @ Brazil'),(89677,3012,'_testimonials_0_role','field_60836a959c02e'),(89678,3012,'testimonials_1_text','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Quis ipsum suspendisse ultrices gravida. Risus commodo viverra maecenas accumsan lacus vel facilisis.'),(89679,3012,'_testimonials_1_text','field_60836a959bf3a'),(89680,3012,'testimonials_1_picture','2546'),(89681,3012,'_testimonials_1_picture','field_60836a959bf8f'),(89682,3012,'testimonials_1_name','Pedro Alvares Cabral 2'),(89683,3012,'_testimonials_1_name','field_60836a959bfe0'),(89684,3012,'testimonials_1_role',' Discoverer @ Brazil'),(89685,3012,'_testimonials_1_role','field_60836a959c02e'),(89686,3012,'testimonials','2'),(89687,3012,'_testimonials','field_60836a907026e'),(89688,3012,'steps_image',''),(89689,3012,'_steps_image','field_60836a906fd7e'),(89690,3012,'steps_title',''),(89691,3012,'_steps_title','field_60836a906fe1c'),(89692,3012,'steps_text',''),(89693,3012,'_steps_text','field_60836a906fe70'),(89694,3012,'ceo_picture',''),(89695,3012,'_ceo_picture','field_60836a90702ab'),(89696,3012,'ceo_picture_mobile',''),(89697,3012,'_ceo_picture_mobile','field_60836a90702eb'),(89698,3012,'ceo_name',''),(89699,3012,'_ceo_name','field_60836a907032b'),(89700,3012,'ceo_email',''),(89701,3012,'_ceo_email','field_60836a907037a'),(89702,3012,'ceo_phone',''),(89703,3012,'_ceo_phone','field_60836a90703b9'),(89704,3012,'ceo_address',''),(89705,3012,'_ceo_address','field_60836a90703f8'),(89706,3012,'footer_kubernetes_image',''),(89707,3012,'_footer_kubernetes_image','field_60836a9070439'),(89711,3012,'_dp_original','3009'),(89712,3012,'_edit_last','1'),(89716,3012,'_edit_lock','1625144319:1'),(89763,3014,'hefo_before','0'),(89764,3014,'hefo_after','0'),(89765,3014,'_yoast_wpseo_focuskeywords','[]'),(89766,3014,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(89767,3014,'_wp_page_template','landing-page-mid-colorful.php'),(89769,3014,'background','3067'),(89770,3014,'_background','field_60836a906fbfa'),(89771,3014,'title','71% of \r\nFortune 100 \r\ncompanies \r\nuse \r\nKubernetes \r\nin DevOps '),(89772,3014,'_title','field_60836a906fc4e'),(89773,3014,'items_0_item','Simplify your Cloud'),(89774,3014,'_items_0_item','field_60836a91045e9'),(89775,3014,'items_1_item','Make your Cloud computing worry-free'),(89776,3014,'_items_1_item','field_60836a91045e9'),(89777,3014,'items','2'),(89778,3014,'_items','field_60836a906fc93'),(89779,3014,'image','2975'),(89780,3014,'_image','field_60836a906fce6'),(89781,3014,'trusted_by_logos',''),(89782,3014,'_trusted_by_logos','field_60836a906fd30'),(89783,3014,'kubernetes_partnership_title','Translucent\'s Devops Kubernetes Partnership\r\nSaves You Time and Money'),(89784,3014,'_kubernetes_partnership_title','field_60836a906ffbf'),(89785,3014,'kubernetes_partnership_image_desktop','2907'),(89786,3014,'_kubernetes_partnership_image_desktop','field_60836a9070001'),(89787,3014,'kubernetes_partnership_images_mobile_0_image','2911'),(89788,3014,'_kubernetes_partnership_images_mobile_0_image','field_60836a9390fba'),(89789,3014,'kubernetes_partnership_images_mobile_1_image','2912'),(89790,3014,'_kubernetes_partnership_images_mobile_1_image','field_60836a9390fba'),(89791,3014,'kubernetes_partnership_images_mobile','2'),(89792,3014,'_kubernetes_partnership_images_mobile','field_60836a907003f'),(89793,3014,'kubernetes_partnership_text','\"The team takes a very human-centric approach, understanding that all businesses have to work with a budget. We attribute a large part of integrating our physical operational model into technological success to Translucent.\" Eric Kaplan COO - GoToLoans'),(89794,3014,'_kubernetes_partnership_text','field_60836a907007d'),(89795,3014,'people_background','2621'),(89796,3014,'_people_background','field_60836a906fede'),(89797,3014,'people_title',' We Listen. We Learn. We Inform.'),(89798,3014,'_people_title','field_60836a906ff2f'),(89799,3014,'people_text','This is not just about cloud native DevOps technology. It’s about…\r\nPeople, Business, Operations and Results. Oh and People! Did we say people?'),(89800,3014,'_people_text','field_60836a906ff6f'),(89801,3014,'black_background_phrase','Your Cloud Native Kubernetes\r\nDevOps Partner we are with You All the Way!'),(89802,3014,'_black_background_phrase','field_60836a9070202'),(89803,3014,'testimonials_0_text','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Quis ipsum suspendisse ultrices gravida. Risus commodo viverra maecenas accumsan lacus vel facilisis.'),(89804,3014,'_testimonials_0_text','field_60836a959bf3a'),(89805,3014,'testimonials_0_picture','2546'),(89806,3014,'_testimonials_0_picture','field_60836a959bf8f'),(89807,3014,'testimonials_0_name','Pedro Alvares Cabral'),(89808,3014,'_testimonials_0_name','field_60836a959bfe0'),(89809,3014,'testimonials_0_role',' Discoverer @ Brazil'),(89810,3014,'_testimonials_0_role','field_60836a959c02e'),(89811,3014,'testimonials_1_text','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Quis ipsum suspendisse ultrices gravida. Risus commodo viverra maecenas accumsan lacus vel facilisis.'),(89812,3014,'_testimonials_1_text','field_60836a959bf3a'),(89813,3014,'testimonials_1_picture','2546'),(89814,3014,'_testimonials_1_picture','field_60836a959bf8f'),(89815,3014,'testimonials_1_name','Pedro Alvares Cabral 2'),(89816,3014,'_testimonials_1_name','field_60836a959bfe0'),(89817,3014,'testimonials_1_role',' Discoverer @ Brazil'),(89818,3014,'_testimonials_1_role','field_60836a959c02e'),(89819,3014,'testimonials','2'),(89820,3014,'_testimonials','field_60836a907026e'),(89821,3014,'steps_image',''),(89822,3014,'_steps_image','field_60836a906fd7e'),(89823,3014,'steps_title',''),(89824,3014,'_steps_title','field_60836a906fe1c'),(89825,3014,'steps_text',''),(89826,3014,'_steps_text','field_60836a906fe70'),(89827,3014,'ceo_picture',''),(89828,3014,'_ceo_picture','field_60836a90702ab'),(89829,3014,'ceo_picture_mobile',''),(89830,3014,'_ceo_picture_mobile','field_60836a90702eb'),(89831,3014,'ceo_name',''),(89832,3014,'_ceo_name','field_60836a907032b'),(89833,3014,'ceo_email',''),(89834,3014,'_ceo_email','field_60836a907037a'),(89835,3014,'ceo_phone',''),(89836,3014,'_ceo_phone','field_60836a90703b9'),(89837,3014,'ceo_address',''),(89838,3014,'_ceo_address','field_60836a90703f8'),(89839,3014,'footer_kubernetes_image',''),(89840,3014,'_footer_kubernetes_image','field_60836a9070439'),(89844,3014,'_dp_original','3012'),(89845,3014,'_edit_last','1'),(89849,3014,'_edit_lock','1625144268:1'),(89851,3016,'hefo_before','0'),(89852,3016,'hefo_after','0'),(89853,3016,'_yoast_wpseo_focuskeywords','[]'),(89854,3016,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(89855,3016,'_wp_page_template','landing-page-mid-colorful.php'),(89857,3016,'background','3076'),(89858,3016,'_background','field_60836a906fbfa'),(89859,3016,'title','71% of \r\nFortune 100 \r\ncompanies \r\nuse \r\nKubernetes \r\nin DevOps '),(89860,3016,'_title','field_60836a906fc4e'),(89861,3016,'items_0_item','Simplify your Cloud'),(89862,3016,'_items_0_item','field_60836a91045e9'),(89863,3016,'items_1_item','Make your Cloud computing worry-free'),(89864,3016,'_items_1_item','field_60836a91045e9'),(89865,3016,'items','2'),(89866,3016,'_items','field_60836a906fc93'),(89867,3016,'image','2975'),(89868,3016,'_image','field_60836a906fce6'),(89869,3016,'trusted_by_logos',''),(89870,3016,'_trusted_by_logos','field_60836a906fd30'),(89871,3016,'kubernetes_partnership_title','Translucent\'s Devops Kubernetes Partnership\r\nSaves You Time and Money'),(89872,3016,'_kubernetes_partnership_title','field_60836a906ffbf'),(89873,3016,'kubernetes_partnership_image_desktop','2907'),(89874,3016,'_kubernetes_partnership_image_desktop','field_60836a9070001'),(89875,3016,'kubernetes_partnership_images_mobile_0_image','2911'),(89876,3016,'_kubernetes_partnership_images_mobile_0_image','field_60836a9390fba'),(89877,3016,'kubernetes_partnership_images_mobile_1_image','2912'),(89878,3016,'_kubernetes_partnership_images_mobile_1_image','field_60836a9390fba'),(89879,3016,'kubernetes_partnership_images_mobile','2'),(89880,3016,'_kubernetes_partnership_images_mobile','field_60836a907003f'),(89881,3016,'kubernetes_partnership_text','\"The team takes a very human-centric approach, understanding that all businesses have to work with a budget. We attribute a large part of integrating our physical operational model into technological success to Translucent.\" Eric Kaplan COO - GoToLoans'),(89882,3016,'_kubernetes_partnership_text','field_60836a907007d'),(89883,3016,'people_background','2621'),(89884,3016,'_people_background','field_60836a906fede'),(89885,3016,'people_title',' We Listen. We Learn. We Inform.'),(89886,3016,'_people_title','field_60836a906ff2f'),(89887,3016,'people_text','This is not just about cloud native DevOps technology. It’s about…\r\nPeople, Business, Operations and Results. Oh and People! Did we say people?'),(89888,3016,'_people_text','field_60836a906ff6f'),(89889,3016,'black_background_phrase','Your Cloud Native Kubernetes\r\nDevOps Partner we are with You All the Way!'),(89890,3016,'_black_background_phrase','field_60836a9070202'),(89891,3016,'testimonials_0_text','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Quis ipsum suspendisse ultrices gravida. Risus commodo viverra maecenas accumsan lacus vel facilisis.'),(89892,3016,'_testimonials_0_text','field_60836a959bf3a'),(89893,3016,'testimonials_0_picture','2546'),(89894,3016,'_testimonials_0_picture','field_60836a959bf8f'),(89895,3016,'testimonials_0_name','Pedro Alvares Cabral'),(89896,3016,'_testimonials_0_name','field_60836a959bfe0'),(89897,3016,'testimonials_0_role',' Discoverer @ Brazil'),(89898,3016,'_testimonials_0_role','field_60836a959c02e'),(89899,3016,'testimonials_1_text','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Quis ipsum suspendisse ultrices gravida. Risus commodo viverra maecenas accumsan lacus vel facilisis.'),(89900,3016,'_testimonials_1_text','field_60836a959bf3a'),(89901,3016,'testimonials_1_picture','2546'),(89902,3016,'_testimonials_1_picture','field_60836a959bf8f'),(89903,3016,'testimonials_1_name','Pedro Alvares Cabral 2'),(89904,3016,'_testimonials_1_name','field_60836a959bfe0'),(89905,3016,'testimonials_1_role',' Discoverer @ Brazil'),(89906,3016,'_testimonials_1_role','field_60836a959c02e'),(89907,3016,'testimonials','2'),(89908,3016,'_testimonials','field_60836a907026e'),(89909,3016,'steps_image',''),(89910,3016,'_steps_image','field_60836a906fd7e'),(89911,3016,'steps_title',''),(89912,3016,'_steps_title','field_60836a906fe1c'),(89913,3016,'steps_text',''),(89914,3016,'_steps_text','field_60836a906fe70'),(89915,3016,'ceo_picture',''),(89916,3016,'_ceo_picture','field_60836a90702ab'),(89917,3016,'ceo_picture_mobile',''),(89918,3016,'_ceo_picture_mobile','field_60836a90702eb'),(89919,3016,'ceo_name',''),(89920,3016,'_ceo_name','field_60836a907032b'),(89921,3016,'ceo_email',''),(89922,3016,'_ceo_email','field_60836a907037a'),(89923,3016,'ceo_phone',''),(89924,3016,'_ceo_phone','field_60836a90703b9'),(89925,3016,'ceo_address',''),(89926,3016,'_ceo_address','field_60836a90703f8'),(89927,3016,'footer_kubernetes_image',''),(89928,3016,'_footer_kubernetes_image','field_60836a9070439'),(89932,3016,'_dp_original','3014'),(89933,3016,'_edit_last','1'),(89937,3016,'_edit_lock','1625144240:1'),(89942,3018,'hefo_before','0'),(89943,3018,'hefo_after','0'),(89944,3018,'_yoast_wpseo_focuskeywords','[]'),(89945,3018,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(89946,3018,'_wp_page_template','landing-page-mid-colorful.php'),(89948,3018,'background','3064'),(89949,3018,'_background','field_60836a906fbfa'),(89950,3018,'title','71% of \r\nFortune 100 \r\ncompanies \r\nuse \r\nKubernetes \r\nin DevOps '),(89951,3018,'_title','field_60836a906fc4e'),(89952,3018,'items_0_item','Simplify your Cloud'),(89953,3018,'_items_0_item','field_60836a91045e9'),(89954,3018,'items_1_item','Make your Cloud computing worry-free'),(89955,3018,'_items_1_item','field_60836a91045e9'),(89956,3018,'items','2'),(89957,3018,'_items','field_60836a906fc93'),(89958,3018,'image','2975'),(89959,3018,'_image','field_60836a906fce6'),(89960,3018,'trusted_by_logos',''),(89961,3018,'_trusted_by_logos','field_60836a906fd30'),(89962,3018,'kubernetes_partnership_title','Translucent\'s Devops Kubernetes Partnership\r\nSaves You Time and Money'),(89963,3018,'_kubernetes_partnership_title','field_60836a906ffbf'),(89964,3018,'kubernetes_partnership_image_desktop','2907'),(89965,3018,'_kubernetes_partnership_image_desktop','field_60836a9070001'),(89966,3018,'kubernetes_partnership_images_mobile_0_image','2911'),(89967,3018,'_kubernetes_partnership_images_mobile_0_image','field_60836a9390fba'),(89968,3018,'kubernetes_partnership_images_mobile_1_image','2912'),(89969,3018,'_kubernetes_partnership_images_mobile_1_image','field_60836a9390fba'),(89970,3018,'kubernetes_partnership_images_mobile','2'),(89971,3018,'_kubernetes_partnership_images_mobile','field_60836a907003f'),(89972,3018,'kubernetes_partnership_text','\"The team takes a very human-centric approach, understanding that all businesses have to work with a budget. We attribute a large part of integrating our physical operational model into technological success to Translucent.\" Eric Kaplan COO - GoToLoans'),(89973,3018,'_kubernetes_partnership_text','field_60836a907007d'),(89974,3018,'people_background','2621'),(89975,3018,'_people_background','field_60836a906fede'),(89976,3018,'people_title',' We Listen. We Learn. We Inform.'),(89977,3018,'_people_title','field_60836a906ff2f'),(89978,3018,'people_text','This is not just about cloud native DevOps technology. It’s about…\r\nPeople, Business, Operations and Results. Oh and People! Did we say people?'),(89979,3018,'_people_text','field_60836a906ff6f'),(89980,3018,'black_background_phrase','Your Cloud Native Kubernetes\r\nDevOps Partner we are with You All the Way!'),(89981,3018,'_black_background_phrase','field_60836a9070202'),(89982,3018,'testimonials_0_text','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Quis ipsum suspendisse ultrices gravida. Risus commodo viverra maecenas accumsan lacus vel facilisis.'),(89983,3018,'_testimonials_0_text','field_60836a959bf3a'),(89984,3018,'testimonials_0_picture','2546'),(89985,3018,'_testimonials_0_picture','field_60836a959bf8f'),(89986,3018,'testimonials_0_name','Pedro Alvares Cabral'),(89987,3018,'_testimonials_0_name','field_60836a959bfe0'),(89988,3018,'testimonials_0_role',' Discoverer @ Brazil'),(89989,3018,'_testimonials_0_role','field_60836a959c02e'),(89990,3018,'testimonials_1_text','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Quis ipsum suspendisse ultrices gravida. Risus commodo viverra maecenas accumsan lacus vel facilisis.'),(89991,3018,'_testimonials_1_text','field_60836a959bf3a'),(89992,3018,'testimonials_1_picture','2546'),(89993,3018,'_testimonials_1_picture','field_60836a959bf8f'),(89994,3018,'testimonials_1_name','Pedro Alvares Cabral 2'),(89995,3018,'_testimonials_1_name','field_60836a959bfe0'),(89996,3018,'testimonials_1_role',' Discoverer @ Brazil'),(89997,3018,'_testimonials_1_role','field_60836a959c02e'),(89998,3018,'testimonials','2'),(89999,3018,'_testimonials','field_60836a907026e'),(90000,3018,'steps_image',''),(90001,3018,'_steps_image','field_60836a906fd7e'),(90002,3018,'steps_title',''),(90003,3018,'_steps_title','field_60836a906fe1c'),(90004,3018,'steps_text',''),(90005,3018,'_steps_text','field_60836a906fe70'),(90006,3018,'ceo_picture',''),(90007,3018,'_ceo_picture','field_60836a90702ab'),(90008,3018,'ceo_picture_mobile',''),(90009,3018,'_ceo_picture_mobile','field_60836a90702eb'),(90010,3018,'ceo_name',''),(90011,3018,'_ceo_name','field_60836a907032b'),(90012,3018,'ceo_email',''),(90013,3018,'_ceo_email','field_60836a907037a'),(90014,3018,'ceo_phone',''),(90015,3018,'_ceo_phone','field_60836a90703b9'),(90016,3018,'ceo_address',''),(90017,3018,'_ceo_address','field_60836a90703f8'),(90018,3018,'footer_kubernetes_image',''),(90019,3018,'_footer_kubernetes_image','field_60836a9070439'),(90023,3018,'_dp_original','3012'),(90024,3018,'_edit_last','1'),(90025,3018,'_edit_lock','1625144291:1'),(90949,3043,'hefo_before','0'),(90950,3043,'hefo_after','0'),(90951,3043,'_yoast_wpseo_focuskeywords','[]'),(90952,3043,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(90953,3043,'_wp_page_template','landing-page-colorful.php'),(90955,3043,'background','3073'),(90956,3043,'_background','field_6083613c01a24'),(90957,3043,'title','Your \r\n#1 Partner \r\nin Cloud \r\nNative \r\nDevOps '),(90958,3043,'_title','field_6083614f01a25'),(90959,3043,'items_0_item','Simplify your Cloud'),(90960,3043,'_items_0_item','field_608361a401a28'),(90961,3043,'items_1_item','Make your Cloud computing worry-free'),(90962,3043,'_items_1_item','field_608361a401a28'),(90963,3043,'items','2'),(90964,3043,'_items','field_6083618a01a27'),(90965,3043,'image','2975'),(90966,3043,'_image','field_6083616401a26'),(90967,3043,'trusted_by_logos','5'),(90968,3043,'_trusted_by_logos','field_608361b101a29'),(90969,3043,'steps_image','2543'),(90970,3043,'_steps_image','field_608361e101a2b'),(90971,3043,'steps_title','Our approach to Your Successful DevOps Implementation'),(90972,3043,'_steps_title','field_608361ee01a2c'),(90973,3043,'steps_text','Plan we partner with your people and objectives in mind\r\nMigrate what adds business value first\r\nManage your cloud native DevOps Journey with you\r\nAutomate saving on your resource cost and making you money\r\nOptimize continuously improve and develop for your future'),(90974,3043,'_steps_text','field_6083620201a2d'),(90975,3043,'people_background','2621'),(90976,3043,'_people_background','field_6083621801a2e'),(90977,3043,'people_title',' We Listen. We Learn. We Inform.'),(90978,3043,'_people_title','field_6083622601a2f'),(90979,3043,'people_text','Digital Transformation is not just about cloud native DevOps technology. It’s about…\r\nPeople, Business, Operations and Results. Oh and People! Did I say people?'),(90980,3043,'_people_text','field_6083623101a30'),(90981,3043,'kubernetes_partnership_title','Benefits of the Translucent DevOps Kubernetes Partnership\r\nSAVE TIME and SAVE MONEY'),(90982,3043,'_kubernetes_partnership_title','field_6083624901a31'),(90983,3043,'kubernetes_partnership_image_desktop','2907'),(90984,3043,'_kubernetes_partnership_image_desktop','field_6083626601a33'),(90985,3043,'kubernetes_partnership_images_mobile_0_image','2911'),(90986,3043,'_kubernetes_partnership_images_mobile_0_image','field_6083628a01a35'),(90987,3043,'kubernetes_partnership_images_mobile_1_image','2912'),(90988,3043,'_kubernetes_partnership_images_mobile_1_image','field_6083628a01a35'),(90989,3043,'kubernetes_partnership_images_mobile','2'),(90990,3043,'_kubernetes_partnership_images_mobile','field_6083627c01a34'),(90991,3043,'kubernetes_partnership_text','Reduce costs and improve operational efficiency through enhanced collaboration between your teams, increased platform and automation.'),(90992,3043,'_kubernetes_partnership_text','field_6083625901a32'),(90993,3043,'kubernetes_seal_title','Why choose Cloud Native Kubernetes Certified DevOps?'),(90994,3043,'_kubernetes_seal_title','field_608362a801a36'),(90995,3043,'kubernetes_seal_subtitle','71% of Fortune 100 companies use Kubernetes'),(90996,3043,'_kubernetes_seal_subtitle','field_608362c501a37'),(90997,3043,'kubernetes_seal_items_0_item','25%+ Faster to Market'),(90998,3043,'_kubernetes_seal_items_0_item','field_608362e601a39'),(90999,3043,'kubernetes_seal_items_1_item','Reliable and Secure'),(91000,3043,'_kubernetes_seal_items_1_item','field_608362e601a39'),(91001,3043,'kubernetes_seal_items_2_item','Privacy by Design'),(91002,3043,'_kubernetes_seal_items_2_item','field_608362e601a39'),(91003,3043,'kubernetes_seal_items_3_item','Automated Reporting for Your Entire Company'),(91004,3043,'_kubernetes_seal_items_3_item','field_608362e601a39'),(91005,3043,'kubernetes_seal_items_4_item','Kubernetes Connects You to all Major Clouds'),(91006,3043,'_kubernetes_seal_items_4_item','field_608362e601a39'),(91007,3043,'kubernetes_seal_items_5_item','35%+ Increase in Operational Efficiency'),(91008,3043,'_kubernetes_seal_items_5_item','field_608362e601a39'),(91009,3043,'kubernetes_seal_items_6_item','More Done with Less Resources'),(91010,3043,'_kubernetes_seal_items_6_item','field_608362e601a39'),(91011,3043,'kubernetes_seal_items','7'),(91012,3043,'_kubernetes_seal_items','field_608362db01a38'),(91013,3043,'kubernetes_seal_message','As a Certified Provider Translucent gets the Job Done Right!'),(91014,3043,'_kubernetes_seal_message','field_6083630501a3a'),(91015,3043,'kubernetes_seal_image','2600'),(91016,3043,'_kubernetes_seal_image','field_6083632101a3b'),(91017,3043,'black_background_phrase','As Your Cloud Native Kubernetes DevOps Partner, We are with You All the Way!'),(91018,3043,'_black_background_phrase','field_6083633201a3c'),(91019,3043,'testimonials_0_text','\"Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automotive, loan, mechanic, and customer workflow data making the complex almost seem like magic.\"'),(91020,3043,'_testimonials_0_text','field_6083636801a3e'),(91021,3043,'testimonials_0_picture',''),(91022,3043,'_testimonials_0_picture','field_6083638701a41'),(91023,3043,'testimonials_0_name','Eric Kaplan'),(91024,3043,'_testimonials_0_name','field_6083637a01a3f'),(91025,3043,'testimonials_0_role','COO – GoToLoans'),(91026,3043,'_testimonials_0_role','field_6083638101a40'),(91027,3043,'testimonials_1_text','\"A lot of technology vendors claim to have expertise with these technologies, but those boasts aren’t always a reality. You need to hire great engineers that work well with clients and that, in a nutshell, is what Translucent Computing has brought to Canadian Black Book.\"'),(91028,3043,'_testimonials_1_text','field_6083636801a3e'),(91029,3043,'testimonials_1_picture',''),(91030,3043,'_testimonials_1_picture','field_6083638701a41'),(91031,3043,'testimonials_1_name','Mike Compton'),(91032,3043,'_testimonials_1_name','field_6083637a01a3f'),(91033,3043,'testimonials_1_role','CTO, Canadian Black Book'),(91034,3043,'_testimonials_1_role','field_6083638101a40'),(91035,3043,'testimonials','8'),(91036,3043,'_testimonials','field_6083636001a3d'),(91037,3043,'ceo_picture','2904'),(91038,3043,'_ceo_picture','field_608363a901a42'),(91039,3043,'ceo_picture_mobile','2905'),(91040,3043,'_ceo_picture_mobile','field_608363b701a43'),(91041,3043,'ceo_name','Robert Golabeck'),(91042,3043,'_ceo_name','field_608363cd01a44'),(91043,3043,'ceo_email','results@translucentcomputing.com'),(91044,3043,'_ceo_email','field_608363da01a45'),(91045,3043,'ceo_phone','1-888-828-0144 x 105'),(91046,3043,'_ceo_phone','field_608363e701a46'),(91047,3043,'ceo_address','1 Yonge Street, Suite 1801\r\nToronto, Ontario\r\nM5E 1W7'),(91048,3043,'_ceo_address','field_608363fa01a47'),(91049,3043,'footer_kubernetes_image','2579'),(91050,3043,'_footer_kubernetes_image','field_6083644901a49'),(91051,3043,'trusted_by_logos_0_logo','2713'),(91052,3043,'_trusted_by_logos_0_logo','field_608361c501a2a'),(91053,3043,'trusted_by_logos_1_logo','2711'),(91054,3043,'_trusted_by_logos_1_logo','field_608361c501a2a'),(91055,3043,'trusted_by_logos_2_logo','2712'),(91056,3043,'_trusted_by_logos_2_logo','field_608361c501a2a'),(91057,3043,'trusted_by_logos_3_logo','2716'),(91058,3043,'_trusted_by_logos_3_logo','field_608361c501a2a'),(91059,3043,'trusted_by_logos_4_logo','2714'),(91060,3043,'_trusted_by_logos_4_logo','field_608361c501a2a'),(91061,3043,'testimonials_2_text','\"Translucent understanding of the cloud native DevOps space and expertise in Kubernetes though to data-driven applications has proven extremely valuable to Volentix\'s growth of our multi-currency cross-blockchain solution.\"'),(91062,3043,'_testimonials_2_text','field_6083636801a3e'),(91063,3043,'testimonials_2_picture',''),(91064,3043,'_testimonials_2_picture','field_6083638701a41'),(91065,3043,'testimonials_2_name','Rhys Parry'),(91066,3043,'_testimonials_2_name','field_6083637a01a3f'),(91067,3043,'testimonials_2_role','Volentix CTO'),(91068,3043,'_testimonials_2_role','field_6083638101a40'),(91069,3043,'testimonials_3_text','\"Translucent Computing… Dedicated professionals that can provide economical solutions for web base needs for both the private and public sector. They have worked with us for some 5 years and they have shown to be both very professional and helpful in developing and supporting our database.\"'),(91070,3043,'_testimonials_3_text','field_6083636801a3e'),(91071,3043,'testimonials_3_picture',''),(91072,3043,'_testimonials_3_picture','field_6083638701a41'),(91073,3043,'testimonials_3_name','James Loukides'),(91074,3043,'_testimonials_3_name','field_6083637a01a3f'),(91075,3043,'testimonials_3_role','The Michael and Amira Dan Brain Tumor Bank Network Manager | University of Toronto'),(91076,3043,'_testimonials_3_role','field_6083638101a40'),(91077,3043,'testimonials_4_text','\"A strong foundation using AWS cloud, terraform for infrastructure deployment, Kubernetes for cluster monitoring and scaling, app containerization using Docker, and a strong dose of DevOps to ensure the pipeline was automated.\"'),(91078,3043,'_testimonials_4_text','field_6083636801a3e'),(91079,3043,'testimonials_4_picture',''),(91080,3043,'_testimonials_4_picture','field_6083638701a41'),(91081,3043,'testimonials_4_name','Mike Compton'),(91082,3043,'_testimonials_4_name','field_6083637a01a3f'),(91083,3043,'testimonials_4_role','CTO, Canadian Black Book'),(91084,3043,'_testimonials_4_role','field_6083638101a40'),(91085,3043,'testimonials_5_text','\"I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.\"'),(91086,3043,'_testimonials_5_text','field_6083636801a3e'),(91087,3043,'testimonials_5_picture',''),(91088,3043,'_testimonials_5_picture','field_6083638701a41'),(91089,3043,'testimonials_5_name','Andrew James'),(91090,3043,'_testimonials_5_name','field_6083637a01a3f'),(91091,3043,'testimonials_5_role','MBChB, MBI, FRACP, FRCPC | University of Toronto'),(91092,3043,'_testimonials_5_role','field_6083638101a40'),(91093,3043,'testimonials_6_text','\"Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security as it fits the fintech and financial services space has been invaluable.  I would use them again if I could.  In fact, I would use their team for everything if I could!\"'),(91094,3043,'_testimonials_6_text','field_6083636801a3e'),(91095,3043,'testimonials_6_picture',''),(91096,3043,'_testimonials_6_picture','field_6083638701a41'),(91097,3043,'testimonials_6_name','Rhys Parry'),(91098,3043,'_testimonials_6_name','field_6083637a01a3f'),(91099,3043,'testimonials_6_role','Volentix CTO'),(91100,3043,'_testimonials_6_role','field_6083638101a40'),(91101,3043,'testimonials_7_text','\"Translucent is a strategic partner in the design and development of our technology platform. Their expertise, commitment and flexibility during the engagement helped us to build a solution that will improve patient scheduling for healthcare providers.\"'),(91102,3043,'_testimonials_7_text','field_6083636801a3e'),(91103,3043,'testimonials_7_picture',''),(91104,3043,'_testimonials_7_picture','field_6083638701a41'),(91105,3043,'testimonials_7_name','Wayne Li'),(91106,3043,'_testimonials_7_name','field_6083637a01a3f'),(91107,3043,'testimonials_7_role','CEO NextUp Care'),(91108,3043,'_testimonials_7_role','field_6083638101a40'),(91113,3043,'_dp_original','2972'),(91114,3043,'_edit_last','1'),(91115,3043,'_edit_lock','1625144191:1'),(91117,3045,'hefo_before','0'),(91118,3045,'hefo_after','0'),(91119,3045,'_yoast_wpseo_focuskeywords','[]'),(91120,3045,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(91121,3045,'_wp_page_template','landing-page-colorful.php'),(91123,3045,'background','3067'),(91124,3045,'_background','field_6083613c01a24'),(91125,3045,'title','Your \r\n#1 Partner \r\nin Cloud \r\nNative \r\nDevOps '),(91126,3045,'_title','field_6083614f01a25'),(91127,3045,'items_0_item','Simplify your Cloud'),(91128,3045,'_items_0_item','field_608361a401a28'),(91129,3045,'items_1_item','Make your Cloud computing worry-free'),(91130,3045,'_items_1_item','field_608361a401a28'),(91131,3045,'items','2'),(91132,3045,'_items','field_6083618a01a27'),(91133,3045,'image','2975'),(91134,3045,'_image','field_6083616401a26'),(91135,3045,'trusted_by_logos','5'),(91136,3045,'_trusted_by_logos','field_608361b101a29'),(91137,3045,'steps_image','2543'),(91138,3045,'_steps_image','field_608361e101a2b'),(91139,3045,'steps_title','Our approach to Your Successful DevOps Implementation'),(91140,3045,'_steps_title','field_608361ee01a2c'),(91141,3045,'steps_text','Plan we partner with your people and objectives in mind\r\nMigrate what adds business value first\r\nManage your cloud native DevOps Journey with you\r\nAutomate saving on your resource cost and making you money\r\nOptimize continuously improve and develop for your future'),(91142,3045,'_steps_text','field_6083620201a2d'),(91143,3045,'people_background','2621'),(91144,3045,'_people_background','field_6083621801a2e'),(91145,3045,'people_title',' We Listen. We Learn. We Inform.'),(91146,3045,'_people_title','field_6083622601a2f'),(91147,3045,'people_text','Digital Transformation is not just about cloud native DevOps technology. It’s about…\r\nPeople, Business, Operations and Results. Oh and People! Did I say people?'),(91148,3045,'_people_text','field_6083623101a30'),(91149,3045,'kubernetes_partnership_title','Benefits of the Translucent DevOps Kubernetes Partnership\r\nSAVE TIME and SAVE MONEY'),(91150,3045,'_kubernetes_partnership_title','field_6083624901a31'),(91151,3045,'kubernetes_partnership_image_desktop','2907'),(91152,3045,'_kubernetes_partnership_image_desktop','field_6083626601a33'),(91153,3045,'kubernetes_partnership_images_mobile_0_image','2911'),(91154,3045,'_kubernetes_partnership_images_mobile_0_image','field_6083628a01a35'),(91155,3045,'kubernetes_partnership_images_mobile_1_image','2912'),(91156,3045,'_kubernetes_partnership_images_mobile_1_image','field_6083628a01a35'),(91157,3045,'kubernetes_partnership_images_mobile','2'),(91158,3045,'_kubernetes_partnership_images_mobile','field_6083627c01a34'),(91159,3045,'kubernetes_partnership_text','Reduce costs and improve operational efficiency through enhanced collaboration between your teams, increased platform and automation.'),(91160,3045,'_kubernetes_partnership_text','field_6083625901a32'),(91161,3045,'kubernetes_seal_title','Why choose Cloud Native Kubernetes Certified DevOps?'),(91162,3045,'_kubernetes_seal_title','field_608362a801a36'),(91163,3045,'kubernetes_seal_subtitle','71% of Fortune 100 companies use Kubernetes'),(91164,3045,'_kubernetes_seal_subtitle','field_608362c501a37'),(91165,3045,'kubernetes_seal_items_0_item','25%+ Faster to Market'),(91166,3045,'_kubernetes_seal_items_0_item','field_608362e601a39'),(91167,3045,'kubernetes_seal_items_1_item','Reliable and Secure'),(91168,3045,'_kubernetes_seal_items_1_item','field_608362e601a39'),(91169,3045,'kubernetes_seal_items_2_item','Privacy by Design'),(91170,3045,'_kubernetes_seal_items_2_item','field_608362e601a39'),(91171,3045,'kubernetes_seal_items_3_item','Automated Reporting for Your Entire Company'),(91172,3045,'_kubernetes_seal_items_3_item','field_608362e601a39'),(91173,3045,'kubernetes_seal_items_4_item','Kubernetes Connects You to all Major Clouds'),(91174,3045,'_kubernetes_seal_items_4_item','field_608362e601a39'),(91175,3045,'kubernetes_seal_items_5_item','35%+ Increase in Operational Efficiency'),(91176,3045,'_kubernetes_seal_items_5_item','field_608362e601a39'),(91177,3045,'kubernetes_seal_items_6_item','More Done with Less Resources'),(91178,3045,'_kubernetes_seal_items_6_item','field_608362e601a39'),(91179,3045,'kubernetes_seal_items','7'),(91180,3045,'_kubernetes_seal_items','field_608362db01a38'),(91181,3045,'kubernetes_seal_message','As a Certified Provider Translucent gets the Job Done Right!'),(91182,3045,'_kubernetes_seal_message','field_6083630501a3a'),(91183,3045,'kubernetes_seal_image','2600'),(91184,3045,'_kubernetes_seal_image','field_6083632101a3b'),(91185,3045,'black_background_phrase','As Your Cloud Native Kubernetes DevOps Partner, We are with You All the Way!'),(91186,3045,'_black_background_phrase','field_6083633201a3c'),(91187,3045,'testimonials_0_text','\"Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automotive, loan, mechanic, and customer workflow data making the complex almost seem like magic.\"'),(91188,3045,'_testimonials_0_text','field_6083636801a3e'),(91189,3045,'testimonials_0_picture',''),(91190,3045,'_testimonials_0_picture','field_6083638701a41'),(91191,3045,'testimonials_0_name','Eric Kaplan'),(91192,3045,'_testimonials_0_name','field_6083637a01a3f'),(91193,3045,'testimonials_0_role','COO – GoToLoans'),(91194,3045,'_testimonials_0_role','field_6083638101a40'),(91195,3045,'testimonials_1_text','\"A lot of technology vendors claim to have expertise with these technologies, but those boasts aren’t always a reality. You need to hire great engineers that work well with clients and that, in a nutshell, is what Translucent Computing has brought to Canadian Black Book.\"'),(91196,3045,'_testimonials_1_text','field_6083636801a3e'),(91197,3045,'testimonials_1_picture',''),(91198,3045,'_testimonials_1_picture','field_6083638701a41'),(91199,3045,'testimonials_1_name','Mike Compton'),(91200,3045,'_testimonials_1_name','field_6083637a01a3f'),(91201,3045,'testimonials_1_role','CTO, Canadian Black Book'),(91202,3045,'_testimonials_1_role','field_6083638101a40'),(91203,3045,'testimonials','8'),(91204,3045,'_testimonials','field_6083636001a3d'),(91205,3045,'ceo_picture','2904'),(91206,3045,'_ceo_picture','field_608363a901a42'),(91207,3045,'ceo_picture_mobile','2905'),(91208,3045,'_ceo_picture_mobile','field_608363b701a43'),(91209,3045,'ceo_name','Robert Golabeck'),(91210,3045,'_ceo_name','field_608363cd01a44'),(91211,3045,'ceo_email','results@translucentcomputing.com'),(91212,3045,'_ceo_email','field_608363da01a45'),(91213,3045,'ceo_phone','1-888-828-0144 x 105'),(91214,3045,'_ceo_phone','field_608363e701a46'),(91215,3045,'ceo_address','1 Yonge Street, Suite 1801\r\nToronto, Ontario\r\nM5E 1W7'),(91216,3045,'_ceo_address','field_608363fa01a47'),(91217,3045,'footer_kubernetes_image','2579'),(91218,3045,'_footer_kubernetes_image','field_6083644901a49'),(91219,3045,'trusted_by_logos_0_logo','2713'),(91220,3045,'_trusted_by_logos_0_logo','field_608361c501a2a'),(91221,3045,'trusted_by_logos_1_logo','2711'),(91222,3045,'_trusted_by_logos_1_logo','field_608361c501a2a'),(91223,3045,'trusted_by_logos_2_logo','2712'),(91224,3045,'_trusted_by_logos_2_logo','field_608361c501a2a'),(91225,3045,'trusted_by_logos_3_logo','2716'),(91226,3045,'_trusted_by_logos_3_logo','field_608361c501a2a'),(91227,3045,'trusted_by_logos_4_logo','2714'),(91228,3045,'_trusted_by_logos_4_logo','field_608361c501a2a'),(91229,3045,'testimonials_2_text','\"Translucent understanding of the cloud native DevOps space and expertise in Kubernetes though to data-driven applications has proven extremely valuable to Volentix\'s growth of our multi-currency cross-blockchain solution.\"'),(91230,3045,'_testimonials_2_text','field_6083636801a3e'),(91231,3045,'testimonials_2_picture',''),(91232,3045,'_testimonials_2_picture','field_6083638701a41'),(91233,3045,'testimonials_2_name','Rhys Parry'),(91234,3045,'_testimonials_2_name','field_6083637a01a3f'),(91235,3045,'testimonials_2_role','Volentix CTO'),(91236,3045,'_testimonials_2_role','field_6083638101a40'),(91237,3045,'testimonials_3_text','\"Translucent Computing… Dedicated professionals that can provide economical solutions for web base needs for both the private and public sector. They have worked with us for some 5 years and they have shown to be both very professional and helpful in developing and supporting our database.\"'),(91238,3045,'_testimonials_3_text','field_6083636801a3e'),(91239,3045,'testimonials_3_picture',''),(91240,3045,'_testimonials_3_picture','field_6083638701a41'),(91241,3045,'testimonials_3_name','James Loukides'),(91242,3045,'_testimonials_3_name','field_6083637a01a3f'),(91243,3045,'testimonials_3_role','The Michael and Amira Dan Brain Tumor Bank Network Manager | University of Toronto'),(91244,3045,'_testimonials_3_role','field_6083638101a40'),(91245,3045,'testimonials_4_text','\"A strong foundation using AWS cloud, terraform for infrastructure deployment, Kubernetes for cluster monitoring and scaling, app containerization using Docker, and a strong dose of DevOps to ensure the pipeline was automated.\"'),(91246,3045,'_testimonials_4_text','field_6083636801a3e'),(91247,3045,'testimonials_4_picture',''),(91248,3045,'_testimonials_4_picture','field_6083638701a41'),(91249,3045,'testimonials_4_name','Mike Compton'),(91250,3045,'_testimonials_4_name','field_6083637a01a3f'),(91251,3045,'testimonials_4_role','CTO, Canadian Black Book'),(91252,3045,'_testimonials_4_role','field_6083638101a40'),(91253,3045,'testimonials_5_text','\"I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.\"'),(91254,3045,'_testimonials_5_text','field_6083636801a3e'),(91255,3045,'testimonials_5_picture',''),(91256,3045,'_testimonials_5_picture','field_6083638701a41'),(91257,3045,'testimonials_5_name','Andrew James'),(91258,3045,'_testimonials_5_name','field_6083637a01a3f'),(91259,3045,'testimonials_5_role','MBChB, MBI, FRACP, FRCPC | University of Toronto'),(91260,3045,'_testimonials_5_role','field_6083638101a40'),(91261,3045,'testimonials_6_text','\"Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security as it fits the fintech and financial services space has been invaluable.  I would use them again if I could.  In fact, I would use their team for everything if I could!\"'),(91262,3045,'_testimonials_6_text','field_6083636801a3e'),(91263,3045,'testimonials_6_picture',''),(91264,3045,'_testimonials_6_picture','field_6083638701a41'),(91265,3045,'testimonials_6_name','Rhys Parry'),(91266,3045,'_testimonials_6_name','field_6083637a01a3f'),(91267,3045,'testimonials_6_role','Volentix CTO'),(91268,3045,'_testimonials_6_role','field_6083638101a40'),(91269,3045,'testimonials_7_text','\"Translucent is a strategic partner in the design and development of our technology platform. Their expertise, commitment and flexibility during the engagement helped us to build a solution that will improve patient scheduling for healthcare providers.\"'),(91270,3045,'_testimonials_7_text','field_6083636801a3e'),(91271,3045,'testimonials_7_picture',''),(91272,3045,'_testimonials_7_picture','field_6083638701a41'),(91273,3045,'testimonials_7_name','Wayne Li'),(91274,3045,'_testimonials_7_name','field_6083637a01a3f'),(91275,3045,'testimonials_7_role','CEO NextUp Care'),(91276,3045,'_testimonials_7_role','field_6083638101a40'),(91280,3045,'_dp_original','3043'),(91281,3045,'_edit_last','1'),(91285,3045,'_edit_lock','1625144106:1'),(91287,3047,'hefo_before','0'),(91288,3047,'hefo_after','0'),(91289,3047,'_yoast_wpseo_focuskeywords','[]'),(91290,3047,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(91291,3047,'_wp_page_template','landing-page-colorful.php'),(91293,3047,'background','3076'),(91294,3047,'_background','field_6083613c01a24'),(91295,3047,'title','Your \r\n#1 Partner \r\nin Cloud \r\nNative \r\nDevOps '),(91296,3047,'_title','field_6083614f01a25'),(91297,3047,'items_0_item','Simplify your Cloud'),(91298,3047,'_items_0_item','field_608361a401a28'),(91299,3047,'items_1_item','Make your Cloud computing worry-free'),(91300,3047,'_items_1_item','field_608361a401a28'),(91301,3047,'items','2'),(91302,3047,'_items','field_6083618a01a27'),(91303,3047,'image','2975'),(91304,3047,'_image','field_6083616401a26'),(91305,3047,'trusted_by_logos','5'),(91306,3047,'_trusted_by_logos','field_608361b101a29'),(91307,3047,'steps_image','2543'),(91308,3047,'_steps_image','field_608361e101a2b'),(91309,3047,'steps_title','Our approach to Your Successful DevOps Implementation'),(91310,3047,'_steps_title','field_608361ee01a2c'),(91311,3047,'steps_text','Plan we partner with your people and objectives in mind\r\nMigrate what adds business value first\r\nManage your cloud native DevOps Journey with you\r\nAutomate saving on your resource cost and making you money\r\nOptimize continuously improve and develop for your future'),(91312,3047,'_steps_text','field_6083620201a2d'),(91313,3047,'people_background','2621'),(91314,3047,'_people_background','field_6083621801a2e'),(91315,3047,'people_title',' We Listen. We Learn. We Inform.'),(91316,3047,'_people_title','field_6083622601a2f'),(91317,3047,'people_text','Digital Transformation is not just about cloud native DevOps technology. It’s about…\r\nPeople, Business, Operations and Results. Oh and People! Did I say people?'),(91318,3047,'_people_text','field_6083623101a30'),(91319,3047,'kubernetes_partnership_title','Benefits of the Translucent DevOps Kubernetes Partnership\r\nSAVE TIME and SAVE MONEY'),(91320,3047,'_kubernetes_partnership_title','field_6083624901a31'),(91321,3047,'kubernetes_partnership_image_desktop','2907'),(91322,3047,'_kubernetes_partnership_image_desktop','field_6083626601a33'),(91323,3047,'kubernetes_partnership_images_mobile_0_image','2911'),(91324,3047,'_kubernetes_partnership_images_mobile_0_image','field_6083628a01a35'),(91325,3047,'kubernetes_partnership_images_mobile_1_image','2912'),(91326,3047,'_kubernetes_partnership_images_mobile_1_image','field_6083628a01a35'),(91327,3047,'kubernetes_partnership_images_mobile','2'),(91328,3047,'_kubernetes_partnership_images_mobile','field_6083627c01a34'),(91329,3047,'kubernetes_partnership_text','Reduce costs and improve operational efficiency through enhanced collaboration between your teams, increased platform and automation.'),(91330,3047,'_kubernetes_partnership_text','field_6083625901a32'),(91331,3047,'kubernetes_seal_title','Why choose Cloud Native Kubernetes Certified DevOps?'),(91332,3047,'_kubernetes_seal_title','field_608362a801a36'),(91333,3047,'kubernetes_seal_subtitle','71% of Fortune 100 companies use Kubernetes'),(91334,3047,'_kubernetes_seal_subtitle','field_608362c501a37'),(91335,3047,'kubernetes_seal_items_0_item','25%+ Faster to Market'),(91336,3047,'_kubernetes_seal_items_0_item','field_608362e601a39'),(91337,3047,'kubernetes_seal_items_1_item','Reliable and Secure'),(91338,3047,'_kubernetes_seal_items_1_item','field_608362e601a39'),(91339,3047,'kubernetes_seal_items_2_item','Privacy by Design'),(91340,3047,'_kubernetes_seal_items_2_item','field_608362e601a39'),(91341,3047,'kubernetes_seal_items_3_item','Automated Reporting for Your Entire Company'),(91342,3047,'_kubernetes_seal_items_3_item','field_608362e601a39'),(91343,3047,'kubernetes_seal_items_4_item','Kubernetes Connects You to all Major Clouds'),(91344,3047,'_kubernetes_seal_items_4_item','field_608362e601a39'),(91345,3047,'kubernetes_seal_items_5_item','35%+ Increase in Operational Efficiency'),(91346,3047,'_kubernetes_seal_items_5_item','field_608362e601a39'),(91347,3047,'kubernetes_seal_items_6_item','More Done with Less Resources'),(91348,3047,'_kubernetes_seal_items_6_item','field_608362e601a39'),(91349,3047,'kubernetes_seal_items','7'),(91350,3047,'_kubernetes_seal_items','field_608362db01a38'),(91351,3047,'kubernetes_seal_message','As a Certified Provider Translucent gets the Job Done Right!'),(91352,3047,'_kubernetes_seal_message','field_6083630501a3a'),(91353,3047,'kubernetes_seal_image','2600'),(91354,3047,'_kubernetes_seal_image','field_6083632101a3b'),(91355,3047,'black_background_phrase','As Your Cloud Native Kubernetes DevOps Partner, We are with You All the Way!'),(91356,3047,'_black_background_phrase','field_6083633201a3c'),(91357,3047,'testimonials_0_text','\"Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automotive, loan, mechanic, and customer workflow data making the complex almost seem like magic.\"'),(91358,3047,'_testimonials_0_text','field_6083636801a3e'),(91359,3047,'testimonials_0_picture',''),(91360,3047,'_testimonials_0_picture','field_6083638701a41'),(91361,3047,'testimonials_0_name','Eric Kaplan'),(91362,3047,'_testimonials_0_name','field_6083637a01a3f'),(91363,3047,'testimonials_0_role','COO – GoToLoans'),(91364,3047,'_testimonials_0_role','field_6083638101a40'),(91365,3047,'testimonials_1_text','\"A lot of technology vendors claim to have expertise with these technologies, but those boasts aren’t always a reality. You need to hire great engineers that work well with clients and that, in a nutshell, is what Translucent Computing has brought to Canadian Black Book.\"'),(91366,3047,'_testimonials_1_text','field_6083636801a3e'),(91367,3047,'testimonials_1_picture',''),(91368,3047,'_testimonials_1_picture','field_6083638701a41'),(91369,3047,'testimonials_1_name','Mike Compton'),(91370,3047,'_testimonials_1_name','field_6083637a01a3f'),(91371,3047,'testimonials_1_role','CTO, Canadian Black Book'),(91372,3047,'_testimonials_1_role','field_6083638101a40'),(91373,3047,'testimonials','8'),(91374,3047,'_testimonials','field_6083636001a3d'),(91375,3047,'ceo_picture','2904'),(91376,3047,'_ceo_picture','field_608363a901a42'),(91377,3047,'ceo_picture_mobile','2905'),(91378,3047,'_ceo_picture_mobile','field_608363b701a43'),(91379,3047,'ceo_name','Robert Golabeck'),(91380,3047,'_ceo_name','field_608363cd01a44'),(91381,3047,'ceo_email','results@translucentcomputing.com'),(91382,3047,'_ceo_email','field_608363da01a45'),(91383,3047,'ceo_phone','1-888-828-0144 x 105'),(91384,3047,'_ceo_phone','field_608363e701a46'),(91385,3047,'ceo_address','1 Yonge Street, Suite 1801\r\nToronto, Ontario\r\nM5E 1W7'),(91386,3047,'_ceo_address','field_608363fa01a47'),(91387,3047,'footer_kubernetes_image','2579'),(91388,3047,'_footer_kubernetes_image','field_6083644901a49'),(91389,3047,'trusted_by_logos_0_logo','2713'),(91390,3047,'_trusted_by_logos_0_logo','field_608361c501a2a'),(91391,3047,'trusted_by_logos_1_logo','2711'),(91392,3047,'_trusted_by_logos_1_logo','field_608361c501a2a'),(91393,3047,'trusted_by_logos_2_logo','2712'),(91394,3047,'_trusted_by_logos_2_logo','field_608361c501a2a'),(91395,3047,'trusted_by_logos_3_logo','2716'),(91396,3047,'_trusted_by_logos_3_logo','field_608361c501a2a'),(91397,3047,'trusted_by_logos_4_logo','2714'),(91398,3047,'_trusted_by_logos_4_logo','field_608361c501a2a'),(91399,3047,'testimonials_2_text','\"Translucent understanding of the cloud native DevOps space and expertise in Kubernetes though to data-driven applications has proven extremely valuable to Volentix\'s growth of our multi-currency cross-blockchain solution.\"'),(91400,3047,'_testimonials_2_text','field_6083636801a3e'),(91401,3047,'testimonials_2_picture',''),(91402,3047,'_testimonials_2_picture','field_6083638701a41'),(91403,3047,'testimonials_2_name','Rhys Parry'),(91404,3047,'_testimonials_2_name','field_6083637a01a3f'),(91405,3047,'testimonials_2_role','Volentix CTO'),(91406,3047,'_testimonials_2_role','field_6083638101a40'),(91407,3047,'testimonials_3_text','\"Translucent Computing… Dedicated professionals that can provide economical solutions for web base needs for both the private and public sector. They have worked with us for some 5 years and they have shown to be both very professional and helpful in developing and supporting our database.\"'),(91408,3047,'_testimonials_3_text','field_6083636801a3e'),(91409,3047,'testimonials_3_picture',''),(91410,3047,'_testimonials_3_picture','field_6083638701a41'),(91411,3047,'testimonials_3_name','James Loukides'),(91412,3047,'_testimonials_3_name','field_6083637a01a3f'),(91413,3047,'testimonials_3_role','The Michael and Amira Dan Brain Tumor Bank Network Manager | University of Toronto'),(91414,3047,'_testimonials_3_role','field_6083638101a40'),(91415,3047,'testimonials_4_text','\"A strong foundation using AWS cloud, terraform for infrastructure deployment, Kubernetes for cluster monitoring and scaling, app containerization using Docker, and a strong dose of DevOps to ensure the pipeline was automated.\"'),(91416,3047,'_testimonials_4_text','field_6083636801a3e'),(91417,3047,'testimonials_4_picture',''),(91418,3047,'_testimonials_4_picture','field_6083638701a41'),(91419,3047,'testimonials_4_name','Mike Compton'),(91420,3047,'_testimonials_4_name','field_6083637a01a3f'),(91421,3047,'testimonials_4_role','CTO, Canadian Black Book'),(91422,3047,'_testimonials_4_role','field_6083638101a40'),(91423,3047,'testimonials_5_text','\"I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.\"'),(91424,3047,'_testimonials_5_text','field_6083636801a3e'),(91425,3047,'testimonials_5_picture',''),(91426,3047,'_testimonials_5_picture','field_6083638701a41'),(91427,3047,'testimonials_5_name','Andrew James'),(91428,3047,'_testimonials_5_name','field_6083637a01a3f'),(91429,3047,'testimonials_5_role','MBChB, MBI, FRACP, FRCPC | University of Toronto'),(91430,3047,'_testimonials_5_role','field_6083638101a40'),(91431,3047,'testimonials_6_text','\"Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security as it fits the fintech and financial services space has been invaluable.  I would use them again if I could.  In fact, I would use their team for everything if I could!\"'),(91432,3047,'_testimonials_6_text','field_6083636801a3e'),(91433,3047,'testimonials_6_picture',''),(91434,3047,'_testimonials_6_picture','field_6083638701a41'),(91435,3047,'testimonials_6_name','Rhys Parry'),(91436,3047,'_testimonials_6_name','field_6083637a01a3f'),(91437,3047,'testimonials_6_role','Volentix CTO'),(91438,3047,'_testimonials_6_role','field_6083638101a40'),(91439,3047,'testimonials_7_text','\"Translucent is a strategic partner in the design and development of our technology platform. Their expertise, commitment and flexibility during the engagement helped us to build a solution that will improve patient scheduling for healthcare providers.\"'),(91440,3047,'_testimonials_7_text','field_6083636801a3e'),(91441,3047,'testimonials_7_picture',''),(91442,3047,'_testimonials_7_picture','field_6083638701a41'),(91443,3047,'testimonials_7_name','Wayne Li'),(91444,3047,'_testimonials_7_name','field_6083637a01a3f'),(91445,3047,'testimonials_7_role','CEO NextUp Care'),(91446,3047,'_testimonials_7_role','field_6083638101a40'),(91450,3047,'_dp_original','3045'),(91451,3047,'_edit_last','1'),(91455,3047,'_edit_lock','1625144082:1'),(91457,3049,'hefo_before','0'),(91458,3049,'hefo_after','0'),(91459,3049,'_yoast_wpseo_focuskeywords','[]'),(91460,3049,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(91461,3049,'_wp_page_template','landing-page-colorful.php'),(91463,3049,'background','3064'),(91464,3049,'_background','field_6083613c01a24'),(91465,3049,'title','Your \r\n#1 Partner \r\nin Cloud \r\nNative \r\nDevOps '),(91466,3049,'_title','field_6083614f01a25'),(91467,3049,'items_0_item','Simplify your Cloud'),(91468,3049,'_items_0_item','field_608361a401a28'),(91469,3049,'items_1_item','Make your Cloud computing worry-free'),(91470,3049,'_items_1_item','field_608361a401a28'),(91471,3049,'items','2'),(91472,3049,'_items','field_6083618a01a27'),(91473,3049,'image','2975'),(91474,3049,'_image','field_6083616401a26'),(91475,3049,'trusted_by_logos','5'),(91476,3049,'_trusted_by_logos','field_608361b101a29'),(91477,3049,'steps_image','2543'),(91478,3049,'_steps_image','field_608361e101a2b'),(91479,3049,'steps_title','Our approach to Your Successful DevOps Implementation'),(91480,3049,'_steps_title','field_608361ee01a2c'),(91481,3049,'steps_text','Plan we partner with your people and objectives in mind\r\nMigrate what adds business value first\r\nManage your cloud native DevOps Journey with you\r\nAutomate saving on your resource cost and making you money\r\nOptimize continuously improve and develop for your future'),(91482,3049,'_steps_text','field_6083620201a2d'),(91483,3049,'people_background','2621'),(91484,3049,'_people_background','field_6083621801a2e'),(91485,3049,'people_title',' We Listen. We Learn. We Inform.'),(91486,3049,'_people_title','field_6083622601a2f'),(91487,3049,'people_text','Digital Transformation is not just about cloud native DevOps technology. It’s about…\r\nPeople, Business, Operations and Results. Oh and People! Did I say people?'),(91488,3049,'_people_text','field_6083623101a30'),(91489,3049,'kubernetes_partnership_title','Benefits of the Translucent DevOps Kubernetes Partnership\r\nSAVE TIME and SAVE MONEY'),(91490,3049,'_kubernetes_partnership_title','field_6083624901a31'),(91491,3049,'kubernetes_partnership_image_desktop','2907'),(91492,3049,'_kubernetes_partnership_image_desktop','field_6083626601a33'),(91493,3049,'kubernetes_partnership_images_mobile_0_image','2911'),(91494,3049,'_kubernetes_partnership_images_mobile_0_image','field_6083628a01a35'),(91495,3049,'kubernetes_partnership_images_mobile_1_image','2912'),(91496,3049,'_kubernetes_partnership_images_mobile_1_image','field_6083628a01a35'),(91497,3049,'kubernetes_partnership_images_mobile','2'),(91498,3049,'_kubernetes_partnership_images_mobile','field_6083627c01a34'),(91499,3049,'kubernetes_partnership_text','Reduce costs and improve operational efficiency through enhanced collaboration between your teams, increased platform and automation.'),(91500,3049,'_kubernetes_partnership_text','field_6083625901a32'),(91501,3049,'kubernetes_seal_title','Why choose Cloud Native Kubernetes Certified DevOps?'),(91502,3049,'_kubernetes_seal_title','field_608362a801a36'),(91503,3049,'kubernetes_seal_subtitle','71% of Fortune 100 companies use Kubernetes'),(91504,3049,'_kubernetes_seal_subtitle','field_608362c501a37'),(91505,3049,'kubernetes_seal_items_0_item','25%+ Faster to Market'),(91506,3049,'_kubernetes_seal_items_0_item','field_608362e601a39'),(91507,3049,'kubernetes_seal_items_1_item','Reliable and Secure'),(91508,3049,'_kubernetes_seal_items_1_item','field_608362e601a39'),(91509,3049,'kubernetes_seal_items_2_item','Privacy by Design'),(91510,3049,'_kubernetes_seal_items_2_item','field_608362e601a39'),(91511,3049,'kubernetes_seal_items_3_item','Automated Reporting for Your Entire Company'),(91512,3049,'_kubernetes_seal_items_3_item','field_608362e601a39'),(91513,3049,'kubernetes_seal_items_4_item','Kubernetes Connects You to all Major Clouds'),(91514,3049,'_kubernetes_seal_items_4_item','field_608362e601a39'),(91515,3049,'kubernetes_seal_items_5_item','35%+ Increase in Operational Efficiency'),(91516,3049,'_kubernetes_seal_items_5_item','field_608362e601a39'),(91517,3049,'kubernetes_seal_items_6_item','More Done with Less Resources'),(91518,3049,'_kubernetes_seal_items_6_item','field_608362e601a39'),(91519,3049,'kubernetes_seal_items','7'),(91520,3049,'_kubernetes_seal_items','field_608362db01a38'),(91521,3049,'kubernetes_seal_message','As a Certified Provider Translucent gets the Job Done Right!'),(91522,3049,'_kubernetes_seal_message','field_6083630501a3a'),(91523,3049,'kubernetes_seal_image','2600'),(91524,3049,'_kubernetes_seal_image','field_6083632101a3b'),(91525,3049,'black_background_phrase','As Your Cloud Native Kubernetes DevOps Partner, We are with You All the Way!'),(91526,3049,'_black_background_phrase','field_6083633201a3c'),(91527,3049,'testimonials_0_text','\"Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automotive, loan, mechanic, and customer workflow data making the complex almost seem like magic.\"'),(91528,3049,'_testimonials_0_text','field_6083636801a3e'),(91529,3049,'testimonials_0_picture',''),(91530,3049,'_testimonials_0_picture','field_6083638701a41'),(91531,3049,'testimonials_0_name','Eric Kaplan'),(91532,3049,'_testimonials_0_name','field_6083637a01a3f'),(91533,3049,'testimonials_0_role','COO – GoToLoans'),(91534,3049,'_testimonials_0_role','field_6083638101a40'),(91535,3049,'testimonials_1_text','\"A lot of technology vendors claim to have expertise with these technologies, but those boasts aren’t always a reality. You need to hire great engineers that work well with clients and that, in a nutshell, is what Translucent Computing has brought to Canadian Black Book.\"'),(91536,3049,'_testimonials_1_text','field_6083636801a3e'),(91537,3049,'testimonials_1_picture',''),(91538,3049,'_testimonials_1_picture','field_6083638701a41'),(91539,3049,'testimonials_1_name','Mike Compton'),(91540,3049,'_testimonials_1_name','field_6083637a01a3f'),(91541,3049,'testimonials_1_role','CTO, Canadian Black Book'),(91542,3049,'_testimonials_1_role','field_6083638101a40'),(91543,3049,'testimonials','8'),(91544,3049,'_testimonials','field_6083636001a3d'),(91545,3049,'ceo_picture','2904'),(91546,3049,'_ceo_picture','field_608363a901a42'),(91547,3049,'ceo_picture_mobile','2905'),(91548,3049,'_ceo_picture_mobile','field_608363b701a43'),(91549,3049,'ceo_name','Robert Golabeck'),(91550,3049,'_ceo_name','field_608363cd01a44'),(91551,3049,'ceo_email','results@translucentcomputing.com'),(91552,3049,'_ceo_email','field_608363da01a45'),(91553,3049,'ceo_phone','1-888-828-0144 x 105'),(91554,3049,'_ceo_phone','field_608363e701a46'),(91555,3049,'ceo_address','1 Yonge Street, Suite 1801\r\nToronto, Ontario\r\nM5E 1W7'),(91556,3049,'_ceo_address','field_608363fa01a47'),(91557,3049,'footer_kubernetes_image','2579'),(91558,3049,'_footer_kubernetes_image','field_6083644901a49'),(91559,3049,'trusted_by_logos_0_logo','2713'),(91560,3049,'_trusted_by_logos_0_logo','field_608361c501a2a'),(91561,3049,'trusted_by_logos_1_logo','2711'),(91562,3049,'_trusted_by_logos_1_logo','field_608361c501a2a'),(91563,3049,'trusted_by_logos_2_logo','2712'),(91564,3049,'_trusted_by_logos_2_logo','field_608361c501a2a'),(91565,3049,'trusted_by_logos_3_logo','2716'),(91566,3049,'_trusted_by_logos_3_logo','field_608361c501a2a'),(91567,3049,'trusted_by_logos_4_logo','2714'),(91568,3049,'_trusted_by_logos_4_logo','field_608361c501a2a'),(91569,3049,'testimonials_2_text','\"Translucent understanding of the cloud native DevOps space and expertise in Kubernetes though to data-driven applications has proven extremely valuable to Volentix\'s growth of our multi-currency cross-blockchain solution.\"'),(91570,3049,'_testimonials_2_text','field_6083636801a3e'),(91571,3049,'testimonials_2_picture',''),(91572,3049,'_testimonials_2_picture','field_6083638701a41'),(91573,3049,'testimonials_2_name','Rhys Parry'),(91574,3049,'_testimonials_2_name','field_6083637a01a3f'),(91575,3049,'testimonials_2_role','Volentix CTO'),(91576,3049,'_testimonials_2_role','field_6083638101a40'),(91577,3049,'testimonials_3_text','\"Translucent Computing… Dedicated professionals that can provide economical solutions for web base needs for both the private and public sector. They have worked with us for some 5 years and they have shown to be both very professional and helpful in developing and supporting our database.\"'),(91578,3049,'_testimonials_3_text','field_6083636801a3e'),(91579,3049,'testimonials_3_picture',''),(91580,3049,'_testimonials_3_picture','field_6083638701a41'),(91581,3049,'testimonials_3_name','James Loukides'),(91582,3049,'_testimonials_3_name','field_6083637a01a3f'),(91583,3049,'testimonials_3_role','The Michael and Amira Dan Brain Tumor Bank Network Manager | University of Toronto'),(91584,3049,'_testimonials_3_role','field_6083638101a40'),(91585,3049,'testimonials_4_text','\"A strong foundation using AWS cloud, terraform for infrastructure deployment, Kubernetes for cluster monitoring and scaling, app containerization using Docker, and a strong dose of DevOps to ensure the pipeline was automated.\"'),(91586,3049,'_testimonials_4_text','field_6083636801a3e'),(91587,3049,'testimonials_4_picture',''),(91588,3049,'_testimonials_4_picture','field_6083638701a41'),(91589,3049,'testimonials_4_name','Mike Compton'),(91590,3049,'_testimonials_4_name','field_6083637a01a3f'),(91591,3049,'testimonials_4_role','CTO, Canadian Black Book'),(91592,3049,'_testimonials_4_role','field_6083638101a40'),(91593,3049,'testimonials_5_text','\"I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.\"'),(91594,3049,'_testimonials_5_text','field_6083636801a3e'),(91595,3049,'testimonials_5_picture',''),(91596,3049,'_testimonials_5_picture','field_6083638701a41'),(91597,3049,'testimonials_5_name','Andrew James'),(91598,3049,'_testimonials_5_name','field_6083637a01a3f'),(91599,3049,'testimonials_5_role','MBChB, MBI, FRACP, FRCPC | University of Toronto'),(91600,3049,'_testimonials_5_role','field_6083638101a40'),(91601,3049,'testimonials_6_text','\"Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security as it fits the fintech and financial services space has been invaluable.  I would use them again if I could.  In fact, I would use their team for everything if I could!\"'),(91602,3049,'_testimonials_6_text','field_6083636801a3e'),(91603,3049,'testimonials_6_picture',''),(91604,3049,'_testimonials_6_picture','field_6083638701a41'),(91605,3049,'testimonials_6_name','Rhys Parry'),(91606,3049,'_testimonials_6_name','field_6083637a01a3f'),(91607,3049,'testimonials_6_role','Volentix CTO'),(91608,3049,'_testimonials_6_role','field_6083638101a40'),(91609,3049,'testimonials_7_text','\"Translucent is a strategic partner in the design and development of our technology platform. Their expertise, commitment and flexibility during the engagement helped us to build a solution that will improve patient scheduling for healthcare providers.\"'),(91610,3049,'_testimonials_7_text','field_6083636801a3e'),(91611,3049,'testimonials_7_picture',''),(91612,3049,'_testimonials_7_picture','field_6083638701a41'),(91613,3049,'testimonials_7_name','Wayne Li'),(91614,3049,'_testimonials_7_name','field_6083637a01a3f'),(91615,3049,'testimonials_7_role','CEO NextUp Care'),(91616,3049,'_testimonials_7_role','field_6083638101a40'),(91620,3049,'_dp_original','3043'),(91621,3049,'_edit_last','1'),(91625,3049,'_edit_lock','1625144134:1'),(91630,3051,'hefo_before','0'),(91631,3051,'hefo_after','0'),(91632,3051,'_yoast_wpseo_focuskeywords','[]'),(91633,3051,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(91634,3051,'_wp_page_template','landing-page-colorful.php'),(91636,3051,'background','3057'),(91637,3051,'_background','field_6083613c01a24'),(91638,3051,'title','Your \r\n#1 Partner \r\nin Cloud \r\nNative \r\nDevOps '),(91639,3051,'_title','field_6083614f01a25'),(91640,3051,'items_0_item','Simplify your Cloud'),(91641,3051,'_items_0_item','field_608361a401a28'),(91642,3051,'items_1_item','Make your Cloud computing worry-free'),(91643,3051,'_items_1_item','field_608361a401a28'),(91644,3051,'items','2'),(91645,3051,'_items','field_6083618a01a27'),(91646,3051,'image','2975'),(91647,3051,'_image','field_6083616401a26'),(91648,3051,'trusted_by_logos','5'),(91649,3051,'_trusted_by_logos','field_608361b101a29'),(91650,3051,'steps_image','2543'),(91651,3051,'_steps_image','field_608361e101a2b'),(91652,3051,'steps_title','Our approach to Your Successful DevOps Implementation'),(91653,3051,'_steps_title','field_608361ee01a2c'),(91654,3051,'steps_text','Plan we partner with your people and objectives in mind\r\nMigrate what adds business value first\r\nManage your cloud native DevOps Journey with you\r\nAutomate saving on your resource cost and making you money\r\nOptimize continuously improve and develop for your future'),(91655,3051,'_steps_text','field_6083620201a2d'),(91656,3051,'people_background','2621'),(91657,3051,'_people_background','field_6083621801a2e'),(91658,3051,'people_title',' We Listen. We Learn. We Inform.'),(91659,3051,'_people_title','field_6083622601a2f'),(91660,3051,'people_text','Digital Transformation is not just about cloud native DevOps technology. It’s about…\r\nPeople, Business, Operations and Results. Oh and People! Did I say people?'),(91661,3051,'_people_text','field_6083623101a30'),(91662,3051,'kubernetes_partnership_title','Benefits of the Translucent DevOps Kubernetes Partnership\r\nSAVE TIME and SAVE MONEY'),(91663,3051,'_kubernetes_partnership_title','field_6083624901a31'),(91664,3051,'kubernetes_partnership_image_desktop','2907'),(91665,3051,'_kubernetes_partnership_image_desktop','field_6083626601a33'),(91666,3051,'kubernetes_partnership_images_mobile_0_image','2911'),(91667,3051,'_kubernetes_partnership_images_mobile_0_image','field_6083628a01a35'),(91668,3051,'kubernetes_partnership_images_mobile_1_image','2912'),(91669,3051,'_kubernetes_partnership_images_mobile_1_image','field_6083628a01a35'),(91670,3051,'kubernetes_partnership_images_mobile','2'),(91671,3051,'_kubernetes_partnership_images_mobile','field_6083627c01a34'),(91672,3051,'kubernetes_partnership_text','Reduce costs and improve operational efficiency through enhanced collaboration between your teams, increased platform and automation.'),(91673,3051,'_kubernetes_partnership_text','field_6083625901a32'),(91674,3051,'kubernetes_seal_title','Why choose Cloud Native Kubernetes Certified DevOps?'),(91675,3051,'_kubernetes_seal_title','field_608362a801a36'),(91676,3051,'kubernetes_seal_subtitle','71% of Fortune 100 companies use Kubernetes'),(91677,3051,'_kubernetes_seal_subtitle','field_608362c501a37'),(91678,3051,'kubernetes_seal_items_0_item','25%+ Faster to Market'),(91679,3051,'_kubernetes_seal_items_0_item','field_608362e601a39'),(91680,3051,'kubernetes_seal_items_1_item','Reliable and Secure'),(91681,3051,'_kubernetes_seal_items_1_item','field_608362e601a39'),(91682,3051,'kubernetes_seal_items_2_item','Privacy by Design'),(91683,3051,'_kubernetes_seal_items_2_item','field_608362e601a39'),(91684,3051,'kubernetes_seal_items_3_item','Automated Reporting for Your Entire Company'),(91685,3051,'_kubernetes_seal_items_3_item','field_608362e601a39'),(91686,3051,'kubernetes_seal_items_4_item','Kubernetes Connects You to all Major Clouds'),(91687,3051,'_kubernetes_seal_items_4_item','field_608362e601a39'),(91688,3051,'kubernetes_seal_items_5_item','35%+ Increase in Operational Efficiency'),(91689,3051,'_kubernetes_seal_items_5_item','field_608362e601a39'),(91690,3051,'kubernetes_seal_items_6_item','More Done with Less Resources'),(91691,3051,'_kubernetes_seal_items_6_item','field_608362e601a39'),(91692,3051,'kubernetes_seal_items','7'),(91693,3051,'_kubernetes_seal_items','field_608362db01a38'),(91694,3051,'kubernetes_seal_message','As a Certified Provider Translucent gets the Job Done Right!'),(91695,3051,'_kubernetes_seal_message','field_6083630501a3a'),(91696,3051,'kubernetes_seal_image','2600'),(91697,3051,'_kubernetes_seal_image','field_6083632101a3b'),(91698,3051,'black_background_phrase','As Your Cloud Native Kubernetes DevOps Partner, We are with You All the Way!'),(91699,3051,'_black_background_phrase','field_6083633201a3c'),(91700,3051,'testimonials_0_text','\"Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automotive, loan, mechanic, and customer workflow data making the complex almost seem like magic.\"'),(91701,3051,'_testimonials_0_text','field_6083636801a3e'),(91702,3051,'testimonials_0_picture',''),(91703,3051,'_testimonials_0_picture','field_6083638701a41'),(91704,3051,'testimonials_0_name','Eric Kaplan'),(91705,3051,'_testimonials_0_name','field_6083637a01a3f'),(91706,3051,'testimonials_0_role','COO – GoToLoans'),(91707,3051,'_testimonials_0_role','field_6083638101a40'),(91708,3051,'testimonials_1_text','\"A lot of technology vendors claim to have expertise with these technologies, but those boasts aren’t always a reality. You need to hire great engineers that work well with clients and that, in a nutshell, is what Translucent Computing has brought to Canadian Black Book.\"'),(91709,3051,'_testimonials_1_text','field_6083636801a3e'),(91710,3051,'testimonials_1_picture',''),(91711,3051,'_testimonials_1_picture','field_6083638701a41'),(91712,3051,'testimonials_1_name','Mike Compton'),(91713,3051,'_testimonials_1_name','field_6083637a01a3f'),(91714,3051,'testimonials_1_role','CTO, Canadian Black Book'),(91715,3051,'_testimonials_1_role','field_6083638101a40'),(91716,3051,'testimonials','8'),(91717,3051,'_testimonials','field_6083636001a3d'),(91718,3051,'ceo_picture','2904'),(91719,3051,'_ceo_picture','field_608363a901a42'),(91720,3051,'ceo_picture_mobile','2905'),(91721,3051,'_ceo_picture_mobile','field_608363b701a43'),(91722,3051,'ceo_name','Robert Golabeck'),(91723,3051,'_ceo_name','field_608363cd01a44'),(91724,3051,'ceo_email','results@translucentcomputing.com'),(91725,3051,'_ceo_email','field_608363da01a45'),(91726,3051,'ceo_phone','1-888-828-0144 x 105'),(91727,3051,'_ceo_phone','field_608363e701a46'),(91728,3051,'ceo_address','1 Yonge Street, Suite 1801\r\nToronto, Ontario\r\nM5E 1W7'),(91729,3051,'_ceo_address','field_608363fa01a47'),(91730,3051,'footer_kubernetes_image','2579'),(91731,3051,'_footer_kubernetes_image','field_6083644901a49'),(91732,3051,'trusted_by_logos_0_logo','2713'),(91733,3051,'_trusted_by_logos_0_logo','field_608361c501a2a'),(91734,3051,'trusted_by_logos_1_logo','2711'),(91735,3051,'_trusted_by_logos_1_logo','field_608361c501a2a'),(91736,3051,'trusted_by_logos_2_logo','2712'),(91737,3051,'_trusted_by_logos_2_logo','field_608361c501a2a'),(91738,3051,'trusted_by_logos_3_logo','2716'),(91739,3051,'_trusted_by_logos_3_logo','field_608361c501a2a'),(91740,3051,'trusted_by_logos_4_logo','2714'),(91741,3051,'_trusted_by_logos_4_logo','field_608361c501a2a'),(91742,3051,'testimonials_2_text','\"Translucent understanding of the cloud native DevOps space and expertise in Kubernetes though to data-driven applications has proven extremely valuable to Volentix\'s growth of our multi-currency cross-blockchain solution.\"'),(91743,3051,'_testimonials_2_text','field_6083636801a3e'),(91744,3051,'testimonials_2_picture',''),(91745,3051,'_testimonials_2_picture','field_6083638701a41'),(91746,3051,'testimonials_2_name','Rhys Parry'),(91747,3051,'_testimonials_2_name','field_6083637a01a3f'),(91748,3051,'testimonials_2_role','Volentix CTO'),(91749,3051,'_testimonials_2_role','field_6083638101a40'),(91750,3051,'testimonials_3_text','\"Translucent Computing… Dedicated professionals that can provide economical solutions for web base needs for both the private and public sector. They have worked with us for some 5 years and they have shown to be both very professional and helpful in developing and supporting our database.\"'),(91751,3051,'_testimonials_3_text','field_6083636801a3e'),(91752,3051,'testimonials_3_picture',''),(91753,3051,'_testimonials_3_picture','field_6083638701a41'),(91754,3051,'testimonials_3_name','James Loukides'),(91755,3051,'_testimonials_3_name','field_6083637a01a3f'),(91756,3051,'testimonials_3_role','The Michael and Amira Dan Brain Tumor Bank Network Manager | University of Toronto'),(91757,3051,'_testimonials_3_role','field_6083638101a40'),(91758,3051,'testimonials_4_text','\"A strong foundation using AWS cloud, terraform for infrastructure deployment, Kubernetes for cluster monitoring and scaling, app containerization using Docker, and a strong dose of DevOps to ensure the pipeline was automated.\"'),(91759,3051,'_testimonials_4_text','field_6083636801a3e'),(91760,3051,'testimonials_4_picture',''),(91761,3051,'_testimonials_4_picture','field_6083638701a41'),(91762,3051,'testimonials_4_name','Mike Compton'),(91763,3051,'_testimonials_4_name','field_6083637a01a3f'),(91764,3051,'testimonials_4_role','CTO, Canadian Black Book'),(91765,3051,'_testimonials_4_role','field_6083638101a40'),(91766,3051,'testimonials_5_text','\"I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.\"'),(91767,3051,'_testimonials_5_text','field_6083636801a3e'),(91768,3051,'testimonials_5_picture',''),(91769,3051,'_testimonials_5_picture','field_6083638701a41'),(91770,3051,'testimonials_5_name','Andrew James'),(91771,3051,'_testimonials_5_name','field_6083637a01a3f'),(91772,3051,'testimonials_5_role','MBChB, MBI, FRACP, FRCPC | University of Toronto'),(91773,3051,'_testimonials_5_role','field_6083638101a40'),(91774,3051,'testimonials_6_text','\"Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security as it fits the fintech and financial services space has been invaluable.  I would use them again if I could.  In fact, I would use their team for everything if I could!\"'),(91775,3051,'_testimonials_6_text','field_6083636801a3e'),(91776,3051,'testimonials_6_picture',''),(91777,3051,'_testimonials_6_picture','field_6083638701a41'),(91778,3051,'testimonials_6_name','Rhys Parry'),(91779,3051,'_testimonials_6_name','field_6083637a01a3f'),(91780,3051,'testimonials_6_role','Volentix CTO'),(91781,3051,'_testimonials_6_role','field_6083638101a40'),(91782,3051,'testimonials_7_text','\"Translucent is a strategic partner in the design and development of our technology platform. Their expertise, commitment and flexibility during the engagement helped us to build a solution that will improve patient scheduling for healthcare providers.\"'),(91783,3051,'_testimonials_7_text','field_6083636801a3e'),(91784,3051,'testimonials_7_picture',''),(91785,3051,'_testimonials_7_picture','field_6083638701a41'),(91786,3051,'testimonials_7_name','Wayne Li'),(91787,3051,'_testimonials_7_name','field_6083637a01a3f'),(91788,3051,'testimonials_7_role','CEO NextUp Care'),(91789,3051,'_testimonials_7_role','field_6083638101a40'),(91794,3051,'_dp_original','2972'),(91795,3051,'_edit_last','1'),(91796,3051,'_edit_lock','1625144055:1'),(92430,3057,'_wp_attached_file','2021/05/toronto.png'),(92431,3057,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:940;s:4:\"file\";s:19:\"2021/05/toronto.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"toronto-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"toronto-1024x501.png\";s:5:\"width\";i:1024;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"toronto-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:19:\"toronto-768x376.png\";s:5:\"width\";i:768;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"toronto-1536x752.png\";s:5:\"width\";i:1536;s:6:\"height\";i:752;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:19:\"toronto-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(92914,3064,'_wp_attached_file','2021/05/newyork.png'),(92915,3064,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:940;s:4:\"file\";s:19:\"2021/05/newyork.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"newyork-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"newyork-1024x501.png\";s:5:\"width\";i:1024;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"newyork-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:19:\"newyork-768x376.png\";s:5:\"width\";i:768;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"newyork-1536x752.png\";s:5:\"width\";i:1536;s:6:\"height\";i:752;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:19:\"newyork-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(93157,3067,'_wp_attached_file','2021/05/georgia.png'),(93158,3067,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:940;s:4:\"file\";s:19:\"2021/05/georgia.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"georgia-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"georgia-1024x501.png\";s:5:\"width\";i:1024;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"georgia-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:19:\"georgia-768x376.png\";s:5:\"width\";i:768;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"georgia-1536x752.png\";s:5:\"width\";i:1536;s:6:\"height\";i:752;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:19:\"georgia-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(93400,3070,'_wp_attached_file','2021/05/dallas.png'),(93401,3070,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:940;s:4:\"file\";s:18:\"2021/05/dallas.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"dallas-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"dallas-1024x501.png\";s:5:\"width\";i:1024;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"dallas-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:18:\"dallas-768x376.png\";s:5:\"width\";i:768;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:19:\"dallas-1536x752.png\";s:5:\"width\";i:1536;s:6:\"height\";i:752;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:18:\"dallas-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(93640,3073,'_wp_attached_file','2021/05/houston.png'),(93641,3073,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:940;s:4:\"file\";s:19:\"2021/05/houston.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"houston-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"houston-1024x501.png\";s:5:\"width\";i:1024;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"houston-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:19:\"houston-768x376.png\";s:5:\"width\";i:768;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:20:\"houston-1536x752.png\";s:5:\"width\";i:1536;s:6:\"height\";i:752;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:19:\"houston-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(93883,3076,'_wp_attached_file','2021/05/california.png'),(93884,3076,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:940;s:4:\"file\";s:22:\"2021/05/california.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"california-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"california-1024x501.png\";s:5:\"width\";i:1024;s:6:\"height\";i:501;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"california-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:\"california-768x376.png\";s:5:\"width\";i:768;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"california-1536x752.png\";s:5:\"width\";i:1536;s:6:\"height\";i:752;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"california-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(94207,3080,'_wp_attached_file','2021/05/top-purple-banner.jpg'),(94208,3080,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1923;s:6:\"height\";i:500;s:4:\"file\";s:29:\"2021/05/top-purple-banner.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"top-purple-banner-300x78.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"top-purple-banner-1024x266.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"top-purple-banner-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:\"top-purple-banner-768x200.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:30:\"top-purple-banner-1536x399.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:29:\"top-purple-banner-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(94873,3085,'_wp_attached_file','2021/05/TC_BANNER_2.0-HEX121d3d.webm'),(94874,3085,'_wp_attachment_metadata','a:9:{s:7:\"bitrate\";i:938590;s:8:\"filesize\";i:469295;s:9:\"mime_type\";s:10:\"video/webm\";s:6:\"length\";i:4;s:16:\"length_formatted\";s:4:\"0:04\";s:5:\"width\";i:1028;s:6:\"height\";i:789;s:10:\"fileformat\";s:4:\"webm\";s:10:\"dataformat\";s:5:\"V_VP9\";}'),(97178,2,'_pinterest_shares','3'),(97179,2,'_total_shares','5'),(98041,3113,'_wp_attached_file','2021/05/new-home-icon3.png'),(98042,3113,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:48;s:4:\"file\";s:26:\"2021/05/new-home-icon3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(98043,3114,'_wp_attached_file','2021/05/new-home-icon2.png'),(98044,3114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:56;s:4:\"file\";s:26:\"2021/05/new-home-icon2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(98045,3115,'_wp_attached_file','2021/05/new-home-icon1.png'),(98046,3115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:55;s:4:\"file\";s:26:\"2021/05/new-home-icon1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(98254,2980,'_pinterest_shares','0'),(98255,2980,'_total_shares','0'),(98256,2980,'swp_cache_timestamp','450690'),(98257,2983,'_pinterest_shares','0'),(98258,2983,'_total_shares','0'),(98259,2983,'swp_cache_timestamp','450690'),(98362,2619,'_pinterest_shares','0'),(98363,2619,'_total_shares','0'),(98364,2619,'swp_cache_timestamp','450716'),(98365,2616,'_pinterest_shares','0'),(98366,2616,'_total_shares','0'),(98367,2616,'swp_cache_timestamp','450716'),(99275,3123,'_form','
\n
\nFirst Name*\n[text* first-name class:form-contact placeholder \"John\"]\n
\n
\nLast Name*\n[text* last-name class:form-contact placeholder \"Doe\"]\n
\n
\nEmail*\n[email* email class:form-contact placeholder \"john.doe@example.com\"]\n
\n
\nPhone*\n[tel* phone class:form-contact placeholder \"555-555\"]\n
\n
\nYour Company Name*\n[text* company class:form-contact placeholder \"Translucent\"]\n
\n
\nHow Can We Help You?\n[textarea message class:form-contact placeholder \"Message\"]\n
\n
\n[submit class:form-btn \"Let\'s grow together\"]\n
\n
\nWe Treat Your Business like our Own\n
\n
'),(99276,3123,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:70:\"TC Form Submissions: From Translucent Main Website Bottom Contact Form\";s:6:\"sender\";s:32:\"results@translucentcomputing.com\";s:9:\"recipient\";s:99:\"results@translucentcomputing.com, robert@translucentcomputing.com, bsankar@translucentcomputing.com\";s:4:\"body\";s:94:\"From: [first-name] [last-name] <[email]>\nPhone: [phone]\nCompany: [company]\n\nMessage: [message]\";s:18:\"additional_headers\";s:17:\"Reply-To: [email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(99277,3123,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:54:\"Service Inquiry | Thank you for contacting Translucent\";s:6:\"sender\";s:50:\"Bradford Sankar \";s:9:\"recipient\";s:7:\"[email]\";s:4:\"body\";s:244:\"Hi [first-name],\n\nWe would like to express our thanks for your interest in our cloud native services.\nWe will review your request with our team and be in touch shortly.\n\nYours sincerely,\nBradford Sankar\nYour Translucent Cloud Native Specialist!\";s:18:\"additional_headers\";s:60:\"Reply-To: Bradford Sankar \";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(99278,3123,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:28:\"The phone number is invalid.\";}'),(99279,3123,'_additional_settings',''),(99280,3123,'_locale','en_US'),(99314,3124,'_wp_attached_file','2021/06/home2.jpg'),(99315,3124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:592;s:4:\"file\";s:17:\"2021/06/home2.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"home2-300x123.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"home2-1024x421.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:421;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"home2-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:17:\"home2-768x316.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:17:\"home2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(99316,3125,'_wp_attached_file','2021/06/home4.jpg'),(99317,3125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:592;s:4:\"file\";s:17:\"2021/06/home4.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"home4-300x123.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"home4-1024x421.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:421;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"home4-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:17:\"home4-768x316.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:17:\"home4-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(99318,3126,'_wp_attached_file','2021/06/home3.jpg'),(99319,3126,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:592;s:4:\"file\";s:17:\"2021/06/home3.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"home3-300x123.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"home3-1024x421.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:421;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"home3-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:17:\"home3-768x316.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:17:\"home3-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(99518,2412,'_pinterest_shares','0'),(99519,2412,'_total_shares','0'),(99524,2404,'_pinterest_shares','0'),(99525,2404,'_total_shares','0'),(99654,2977,'_pinterest_shares','0'),(99655,2977,'_total_shares','0'),(99656,2977,'swp_cache_timestamp','450759'),(100253,3115,'_imagify_optimization_level','1'),(100254,3115,'_imagify_status','success'),(100255,3115,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4245;s:14:\"optimized_size\";i:2289;s:7:\"percent\";d:46.08;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4245;s:14:\"optimized_size\";i:944;s:7:\"percent\";d:77.76;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:8490;s:14:\"optimized_size\";i:3233;s:7:\"percent\";d:61.92;}}'),(100262,3113,'_imagify_optimization_level','1'),(100263,3113,'_imagify_status','success'),(100264,3113,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4155;s:14:\"optimized_size\";i:2308;s:7:\"percent\";d:44.45;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4155;s:14:\"optimized_size\";i:1152;s:7:\"percent\";d:72.27;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:8310;s:14:\"optimized_size\";i:3460;s:7:\"percent\";d:58.36;}}'),(100265,3114,'_imagify_optimization_level','1'),(100266,3114,'_imagify_status','success'),(100267,3114,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3012;s:14:\"optimized_size\";i:1818;s:7:\"percent\";d:39.64;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3012;s:14:\"optimized_size\";i:1070;s:7:\"percent\";d:64.48;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:6024;s:14:\"optimized_size\";i:2888;s:7:\"percent\";d:52.06;}}'),(100298,2974,'_imagify_optimization_level','1'),(100299,2974,'_imagify_status','already_optimized'),(100300,2974,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34999;s:14:\"optimized_size\";i:18946;s:7:\"percent\";d:45.87;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:132336;s:14:\"optimized_size\";i:68172;s:7:\"percent\";d:48.49;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:38859;s:14:\"optimized_size\";i:20826;s:7:\"percent\";d:46.41;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4734;s:14:\"optimized_size\";i:2464;s:7:\"percent\";d:47.95;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:65555;s:14:\"optimized_size\";i:34748;s:7:\"percent\";d:46.99;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8290;s:14:\"optimized_size\";i:4156;s:7:\"percent\";d:49.87;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:177734;s:14:\"optimized_size\";i:115932;s:7:\"percent\";d:34.77;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:462507;s:14:\"optimized_size\";i:265244;s:7:\"percent\";d:42.65;}}'),(100301,2958,'_imagify_optimization_level','1'),(100302,2958,'_imagify_status','success'),(100303,2958,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3466;s:14:\"optimized_size\";i:2063;s:7:\"percent\";d:40.48;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3466;s:14:\"optimized_size\";i:740;s:7:\"percent\";d:78.65;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:6932;s:14:\"optimized_size\";i:2803;s:7:\"percent\";d:59.56;}}'),(100304,2960,'_imagify_optimization_level','1'),(100305,2960,'_imagify_status','success'),(100306,2960,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:393597;s:14:\"optimized_size\";i:100628;s:7:\"percent\";d:74.43;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:323544;s:14:\"optimized_size\";i:33776;s:7:\"percent\";d:89.56;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35781;s:14:\"optimized_size\";i:6264;s:7:\"percent\";d:82.49;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:122663;s:14:\"optimized_size\";i:15580;s:7:\"percent\";d:87.3;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:393597;s:14:\"optimized_size\";i:39822;s:7:\"percent\";d:89.88;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:122663;s:14:\"optimized_size\";i:35310;s:7:\"percent\";d:71.21;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35781;s:14:\"optimized_size\";i:11633;s:7:\"percent\";d:67.49;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:323544;s:14:\"optimized_size\";i:90654;s:7:\"percent\";d:71.98;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1751170;s:14:\"optimized_size\";i:333667;s:7:\"percent\";d:80.95;}}'),(100307,2961,'_imagify_optimization_level','1'),(100308,2961,'_imagify_status','success'),(100309,2961,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:380080;s:14:\"optimized_size\";i:117509;s:7:\"percent\";d:69.08;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:362235;s:14:\"optimized_size\";i:32918;s:7:\"percent\";d:90.91;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:38071;s:14:\"optimized_size\";i:4200;s:7:\"percent\";d:88.97;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:122798;s:14:\"optimized_size\";i:10422;s:7:\"percent\";d:91.51;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:380080;s:14:\"optimized_size\";i:33984;s:7:\"percent\";d:91.06;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:122798;s:14:\"optimized_size\";i:43026;s:7:\"percent\";d:64.96;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:38071;s:14:\"optimized_size\";i:14315;s:7:\"percent\";d:62.4;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:362235;s:14:\"optimized_size\";i:113583;s:7:\"percent\";d:68.64;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1806368;s:14:\"optimized_size\";i:369957;s:7:\"percent\";d:79.52;}}'),(100310,2959,'_imagify_optimization_level','1'),(100311,2959,'_imagify_status','success'),(100312,2959,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:375273;s:14:\"optimized_size\";i:96645;s:7:\"percent\";d:74.25;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:279080;s:14:\"optimized_size\";i:41182;s:7:\"percent\";d:85.24;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34969;s:14:\"optimized_size\";i:7820;s:7:\"percent\";d:77.64;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:93598;s:14:\"optimized_size\";i:17994;s:7:\"percent\";d:80.78;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:375273;s:14:\"optimized_size\";i:51512;s:7:\"percent\";d:86.27;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:93598;s:14:\"optimized_size\";i:29524;s:7:\"percent\";d:68.46;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34969;s:14:\"optimized_size\";i:11833;s:7:\"percent\";d:66.16;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:279080;s:14:\"optimized_size\";i:86951;s:7:\"percent\";d:68.84;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1565840;s:14:\"optimized_size\";i:343461;s:7:\"percent\";d:78.07;}}'),(100313,2957,'_imagify_optimization_level','1'),(100314,2957,'_imagify_status','success'),(100315,2957,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4150;s:14:\"optimized_size\";i:1959;s:7:\"percent\";d:52.8;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4150;s:14:\"optimized_size\";i:732;s:7:\"percent\";d:82.36;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:8300;s:14:\"optimized_size\";i:2691;s:7:\"percent\";d:67.58;}}'),(100316,2956,'_imagify_optimization_level','1'),(100317,2956,'_imagify_status','success'),(100318,2956,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3914;s:14:\"optimized_size\";i:2250;s:7:\"percent\";d:42.51;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3914;s:14:\"optimized_size\";i:934;s:7:\"percent\";d:76.14;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:7828;s:14:\"optimized_size\";i:3184;s:7:\"percent\";d:59.33;}}'),(100319,2943,'_imagify_optimization_level','1'),(100320,2943,'_imagify_status','success'),(100321,2943,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:108094;s:14:\"optimized_size\";i:50192;s:7:\"percent\";d:53.57;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32696;s:14:\"optimized_size\";i:18404;s:7:\"percent\";d:43.71;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:77485;s:14:\"optimized_size\";i:34032;s:7:\"percent\";d:56.08;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26869;s:14:\"optimized_size\";i:13274;s:7:\"percent\";d:50.6;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5446;s:14:\"optimized_size\";i:2970;s:7:\"percent\";d:45.46;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:43189;s:14:\"optimized_size\";i:19754;s:7:\"percent\";d:54.26;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6668;s:14:\"optimized_size\";i:3130;s:7:\"percent\";d:53.06;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:108094;s:14:\"optimized_size\";i:52188;s:7:\"percent\";d:51.72;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6668;s:14:\"optimized_size\";i:4904;s:7:\"percent\";d:26.45;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:43189;s:14:\"optimized_size\";i:26179;s:7:\"percent\";d:39.39;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5446;s:14:\"optimized_size\";i:4294;s:7:\"percent\";d:21.15;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26869;s:14:\"optimized_size\";i:16972;s:7:\"percent\";d:36.83;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:77485;s:14:\"optimized_size\";i:36584;s:7:\"percent\";d:52.79;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32696;s:14:\"optimized_size\";i:22078;s:7:\"percent\";d:32.47;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:600894;s:14:\"optimized_size\";i:304955;s:7:\"percent\";d:49.25;}}'),(100322,2942,'_imagify_optimization_level','1'),(100323,2942,'_imagify_status','success'),(100324,2942,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1381;s:14:\"optimized_size\";i:1274;s:7:\"percent\";d:7.75;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1381;s:14:\"optimized_size\";i:290;s:7:\"percent\";d:79;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2762;s:14:\"optimized_size\";i:1564;s:7:\"percent\";d:43.37;}}'),(100325,2940,'_imagify_optimization_level','1'),(100326,2940,'_imagify_status','success'),(100327,2940,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:78357;s:14:\"optimized_size\";i:12718;s:7:\"percent\";d:83.77;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30327;s:14:\"optimized_size\";i:5978;s:7:\"percent\";d:80.29;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11905;s:14:\"optimized_size\";i:2196;s:7:\"percent\";d:81.55;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12799;s:14:\"optimized_size\";i:2838;s:7:\"percent\";d:77.83;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:78357;s:14:\"optimized_size\";i:6624;s:7:\"percent\";d:91.55;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12799;s:14:\"optimized_size\";i:5914;s:7:\"percent\";d:53.79;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11905;s:14:\"optimized_size\";i:5162;s:7:\"percent\";d:56.64;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30327;s:14:\"optimized_size\";i:11442;s:7:\"percent\";d:62.27;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:266776;s:14:\"optimized_size\";i:52872;s:7:\"percent\";d:80.18;}}'),(100328,2941,'_imagify_optimization_level','1'),(100329,2941,'_imagify_status','success'),(100330,2941,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:234650;s:14:\"optimized_size\";i:171306;s:7:\"percent\";d:27;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37345;s:14:\"optimized_size\";i:20558;s:7:\"percent\";d:44.95;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:147095;s:14:\"optimized_size\";i:84026;s:7:\"percent\";d:42.88;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:50095;s:14:\"optimized_size\";i:33060;s:7:\"percent\";d:34.01;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6576;s:14:\"optimized_size\";i:3982;s:7:\"percent\";d:39.45;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:79605;s:14:\"optimized_size\";i:49466;s:7:\"percent\";d:37.86;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9964;s:14:\"optimized_size\";i:6292;s:7:\"percent\";d:36.85;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:234650;s:14:\"optimized_size\";i:127062;s:7:\"percent\";d:45.85;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9964;s:14:\"optimized_size\";i:7837;s:7:\"percent\";d:21.35;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:79605;s:14:\"optimized_size\";i:60954;s:7:\"percent\";d:23.43;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6576;s:14:\"optimized_size\";i:5257;s:7:\"percent\";d:20.06;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:50095;s:14:\"optimized_size\";i:40164;s:7:\"percent\";d:19.82;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:147095;s:14:\"optimized_size\";i:102184;s:7:\"percent\";d:30.53;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37345;s:14:\"optimized_size\";i:26168;s:7:\"percent\";d:29.93;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1130660;s:14:\"optimized_size\";i:738316;s:7:\"percent\";d:34.7;}}'),(100331,2938,'_imagify_optimization_level','1'),(100332,2938,'_imagify_status','success'),(100333,2938,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40824;s:14:\"optimized_size\";i:5440;s:7:\"percent\";d:86.67;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9563;s:14:\"optimized_size\";i:1918;s:7:\"percent\";d:79.94;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40824;s:14:\"optimized_size\";i:1258;s:7:\"percent\";d:96.92;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9563;s:14:\"optimized_size\";i:2846;s:7:\"percent\";d:70.24;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:100774;s:14:\"optimized_size\";i:11462;s:7:\"percent\";d:88.63;}}'),(100334,2939,'_imagify_optimization_level','1'),(100335,2939,'_imagify_status','success'),(100336,2939,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:68249;s:14:\"optimized_size\";i:19523;s:7:\"percent\";d:71.39;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:70171;s:14:\"optimized_size\";i:17116;s:7:\"percent\";d:75.61;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19524;s:14:\"optimized_size\";i:3226;s:7:\"percent\";d:83.48;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23442;s:14:\"optimized_size\";i:4484;s:7:\"percent\";d:80.87;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:68249;s:14:\"optimized_size\";i:17552;s:7:\"percent\";d:74.28;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23442;s:14:\"optimized_size\";i:6319;s:7:\"percent\";d:73.04;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19524;s:14:\"optimized_size\";i:6096;s:7:\"percent\";d:68.78;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:70171;s:14:\"optimized_size\";i:18631;s:7:\"percent\";d:73.45;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:362772;s:14:\"optimized_size\";i:92947;s:7:\"percent\";d:74.38;}}'),(100337,2936,'_imagify_optimization_level','1'),(100338,2936,'_imagify_status','success'),(100339,2936,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34028;s:14:\"optimized_size\";i:15388;s:7:\"percent\";d:54.78;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:146190;s:14:\"optimized_size\";i:17780;s:7:\"percent\";d:87.84;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18247;s:14:\"optimized_size\";i:3306;s:7:\"percent\";d:81.88;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:55012;s:14:\"optimized_size\";i:7918;s:7:\"percent\";d:85.61;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34028;s:14:\"optimized_size\";i:21334;s:7:\"percent\";d:37.3;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:55012;s:14:\"optimized_size\";i:16441;s:7:\"percent\";d:70.11;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18247;s:14:\"optimized_size\";i:6016;s:7:\"percent\";d:67.03;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:146190;s:14:\"optimized_size\";i:47718;s:7:\"percent\";d:67.36;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:506954;s:14:\"optimized_size\";i:135901;s:7:\"percent\";d:73.19;}}'),(100340,2935,'_imagify_optimization_level','1'),(100341,2935,'_imagify_status','success'),(100342,2935,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2825;s:14:\"optimized_size\";i:1611;s:7:\"percent\";d:42.97;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2825;s:14:\"optimized_size\";i:310;s:7:\"percent\";d:89.03;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:5650;s:14:\"optimized_size\";i:1921;s:7:\"percent\";d:66;}}'),(100343,2934,'_imagify_optimization_level','1'),(100344,2934,'_imagify_status','success'),(100345,2934,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5016;s:14:\"optimized_size\";i:2559;s:7:\"percent\";d:48.98;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5016;s:14:\"optimized_size\";i:942;s:7:\"percent\";d:81.22;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:10032;s:14:\"optimized_size\";i:3501;s:7:\"percent\";d:65.1;}}'),(100346,2933,'_imagify_optimization_level','1'),(100347,2933,'_imagify_status','success'),(100348,2933,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:77790;s:14:\"optimized_size\";i:41125;s:7:\"percent\";d:47.13;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19460;s:14:\"optimized_size\";i:8966;s:7:\"percent\";d:53.93;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:51348;s:14:\"optimized_size\";i:25260;s:7:\"percent\";d:50.81;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18400;s:14:\"optimized_size\";i:10260;s:7:\"percent\";d:44.24;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3781;s:14:\"optimized_size\";i:1912;s:7:\"percent\";d:49.43;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28767;s:14:\"optimized_size\";i:15100;s:7:\"percent\";d:47.51;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3988;s:14:\"optimized_size\";i:2244;s:7:\"percent\";d:43.73;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:77790;s:14:\"optimized_size\";i:38770;s:7:\"percent\";d:50.16;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3988;s:14:\"optimized_size\";i:2889;s:7:\"percent\";d:27.56;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28767;s:14:\"optimized_size\";i:16633;s:7:\"percent\";d:42.18;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3781;s:14:\"optimized_size\";i:2486;s:7:\"percent\";d:34.25;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18400;s:14:\"optimized_size\";i:11645;s:7:\"percent\";d:36.71;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:51348;s:14:\"optimized_size\";i:28968;s:7:\"percent\";d:43.58;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19460;s:14:\"optimized_size\";i:10221;s:7:\"percent\";d:47.48;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:407068;s:14:\"optimized_size\";i:216479;s:7:\"percent\";d:46.82;}}'),(100349,2922,'_imagify_optimization_level','1'),(100350,2922,'_imagify_status','success'),(100351,2922,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34413;s:14:\"optimized_size\";i:15834;s:7:\"percent\";d:53.99;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:147232;s:14:\"optimized_size\";i:17550;s:7:\"percent\";d:88.08;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18258;s:14:\"optimized_size\";i:3356;s:7:\"percent\";d:81.62;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:55050;s:14:\"optimized_size\";i:7992;s:7:\"percent\";d:85.48;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34413;s:14:\"optimized_size\";i:21552;s:7:\"percent\";d:37.37;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:55050;s:14:\"optimized_size\";i:16343;s:7:\"percent\";d:70.31;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18258;s:14:\"optimized_size\";i:6009;s:7:\"percent\";d:67.09;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:147232;s:14:\"optimized_size\";i:49403;s:7:\"percent\";d:66.45;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:509906;s:14:\"optimized_size\";i:138039;s:7:\"percent\";d:72.93;}}'),(100352,2921,'_imagify_optimization_level','1'),(100353,2921,'_imagify_status','success'),(100354,2921,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:68561;s:14:\"optimized_size\";i:19645;s:7:\"percent\";d:71.35;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:70145;s:14:\"optimized_size\";i:17186;s:7:\"percent\";d:75.5;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19529;s:14:\"optimized_size\";i:3248;s:7:\"percent\";d:83.37;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23517;s:14:\"optimized_size\";i:4576;s:7:\"percent\";d:80.54;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:68561;s:14:\"optimized_size\";i:17758;s:7:\"percent\";d:74.1;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23517;s:14:\"optimized_size\";i:6438;s:7:\"percent\";d:72.62;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19529;s:14:\"optimized_size\";i:6133;s:7:\"percent\";d:68.6;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:70145;s:14:\"optimized_size\";i:18906;s:7:\"percent\";d:73.05;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:363504;s:14:\"optimized_size\";i:93890;s:7:\"percent\";d:74.17;}}'),(100355,2920,'_imagify_optimization_level','1'),(100356,2920,'_imagify_status','success'),(100357,2920,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:75551;s:14:\"optimized_size\";i:13181;s:7:\"percent\";d:82.55;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27789;s:14:\"optimized_size\";i:6268;s:7:\"percent\";d:77.44;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11683;s:14:\"optimized_size\";i:2250;s:7:\"percent\";d:80.74;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12524;s:14:\"optimized_size\";i:2908;s:7:\"percent\";d:76.78;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:75551;s:14:\"optimized_size\";i:6864;s:7:\"percent\";d:90.91;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12524;s:14:\"optimized_size\";i:5718;s:7:\"percent\";d:54.34;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11683;s:14:\"optimized_size\";i:4567;s:7:\"percent\";d:60.91;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27789;s:14:\"optimized_size\";i:11058;s:7:\"percent\";d:60.21;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:255094;s:14:\"optimized_size\";i:52814;s:7:\"percent\";d:79.3;}}'),(100358,2919,'_imagify_optimization_level','1'),(100359,2919,'_imagify_status','success'),(100360,2919,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4442;s:14:\"optimized_size\";i:2971;s:7:\"percent\";d:33.12;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4442;s:14:\"optimized_size\";i:978;s:7:\"percent\";d:77.98;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:8884;s:14:\"optimized_size\";i:3949;s:7:\"percent\";d:55.55;}}'),(100361,2918,'_imagify_optimization_level','1'),(100362,2918,'_imagify_status','already_optimized'),(100363,2918,'_imagify_data','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6743;s:14:\"optimized_size\";i:2056;s:7:\"percent\";d:69.51;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3285;s:14:\"optimized_size\";i:1354;s:7:\"percent\";d:58.78;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:10028;s:14:\"optimized_size\";i:3410;s:7:\"percent\";d:66;}}'),(100364,2916,'_imagify_optimization_level','1'),(100365,2916,'_imagify_status','already_optimized'),(100366,2916,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1395;s:14:\"optimized_size\";i:334;s:7:\"percent\";d:76.06;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1395;s:14:\"optimized_size\";i:334;s:7:\"percent\";d:76.06;}}'),(100367,2912,'_imagify_optimization_level','1'),(100368,2912,'_imagify_status','success'),(100369,2912,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19290;s:14:\"optimized_size\";i:8495;s:7:\"percent\";d:55.96;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18545;s:14:\"optimized_size\";i:10918;s:7:\"percent\";d:41.13;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10506;s:14:\"optimized_size\";i:5078;s:7:\"percent\";d:51.67;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12027;s:14:\"optimized_size\";i:5238;s:7:\"percent\";d:56.45;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19290;s:14:\"optimized_size\";i:11378;s:7:\"percent\";d:41.02;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12027;s:14:\"optimized_size\";i:4634;s:7:\"percent\";d:61.47;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10506;s:14:\"optimized_size\";i:4156;s:7:\"percent\";d:60.44;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18545;s:14:\"optimized_size\";i:7034;s:7:\"percent\";d:62.07;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:120736;s:14:\"optimized_size\";i:56931;s:7:\"percent\";d:52.85;}}'),(100370,2911,'_imagify_optimization_level','1'),(100371,2911,'_imagify_status','success'),(100372,2911,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25784;s:14:\"optimized_size\";i:10617;s:7:\"percent\";d:58.82;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20351;s:14:\"optimized_size\";i:11628;s:7:\"percent\";d:42.86;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8288;s:14:\"optimized_size\";i:4426;s:7:\"percent\";d:46.6;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13963;s:14:\"optimized_size\";i:6214;s:7:\"percent\";d:55.5;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25784;s:14:\"optimized_size\";i:14022;s:7:\"percent\";d:45.62;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13963;s:14:\"optimized_size\";i:5212;s:7:\"percent\";d:62.67;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8288;s:14:\"optimized_size\";i:3303;s:7:\"percent\";d:60.15;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20351;s:14:\"optimized_size\";i:8036;s:7:\"percent\";d:60.51;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:136772;s:14:\"optimized_size\";i:63458;s:7:\"percent\";d:53.6;}}'),(100373,2905,'_imagify_optimization_level','1'),(100374,2905,'_imagify_status','success'),(100375,2905,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:72083;s:14:\"optimized_size\";i:28195;s:7:\"percent\";d:60.89;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30949;s:14:\"optimized_size\";i:2604;s:7:\"percent\";d:91.59;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:72083;s:14:\"optimized_size\";i:4952;s:7:\"percent\";d:93.13;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30949;s:14:\"optimized_size\";i:12508;s:7:\"percent\";d:59.59;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:206064;s:14:\"optimized_size\";i:48259;s:7:\"percent\";d:76.58;}}'),(100376,2907,'_imagify_optimization_level','1'),(100377,2907,'_imagify_status','success'),(100378,2907,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46870;s:14:\"optimized_size\";i:16105;s:7:\"percent\";d:65.64;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18654;s:14:\"optimized_size\";i:9470;s:7:\"percent\";d:49.23;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41934;s:14:\"optimized_size\";i:17792;s:7:\"percent\";d:57.57;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4808;s:14:\"optimized_size\";i:2470;s:7:\"percent\";d:48.63;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:65718;s:14:\"optimized_size\";i:26118;s:7:\"percent\";d:60.26;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11980;s:14:\"optimized_size\";i:5446;s:7:\"percent\";d:54.54;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46870;s:14:\"optimized_size\";i:26084;s:7:\"percent\";d:44.35;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11980;s:14:\"optimized_size\";i:4483;s:7:\"percent\";d:62.58;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:65718;s:14:\"optimized_size\";i:22439;s:7:\"percent\";d:65.86;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4808;s:14:\"optimized_size\";i:1864;s:7:\"percent\";d:61.23;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41934;s:14:\"optimized_size\";i:15707;s:7:\"percent\";d:62.54;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18654;s:14:\"optimized_size\";i:6357;s:7:\"percent\";d:65.92;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:379928;s:14:\"optimized_size\";i:154335;s:7:\"percent\";d:59.38;}}'),(100379,2904,'_imagify_optimization_level','1'),(100380,2904,'_imagify_status','success'),(100381,2904,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:62605;s:14:\"optimized_size\";i:23564;s:7:\"percent\";d:62.36;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24252;s:14:\"optimized_size\";i:2964;s:7:\"percent\";d:87.78;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:62605;s:14:\"optimized_size\";i:4936;s:7:\"percent\";d:92.12;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24252;s:14:\"optimized_size\";i:9444;s:7:\"percent\";d:61.06;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:173714;s:14:\"optimized_size\";i:40908;s:7:\"percent\";d:76.45;}}'),(100382,2897,'_imagify_optimization_level','1'),(100383,2897,'_imagify_status','success'),(100384,2897,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1384;s:14:\"optimized_size\";i:1284;s:7:\"percent\";d:7.23;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1384;s:14:\"optimized_size\";i:294;s:7:\"percent\";d:78.76;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2768;s:14:\"optimized_size\";i:1578;s:7:\"percent\";d:42.99;}}'),(100385,2903,'_imagify_optimization_level','1'),(100386,2903,'_imagify_status','success'),(100387,2903,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:68295;s:14:\"optimized_size\";i:31236;s:7:\"percent\";d:54.26;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16001;s:14:\"optimized_size\";i:6696;s:7:\"percent\";d:58.15;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46981;s:14:\"optimized_size\";i:20144;s:7:\"percent\";d:57.12;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17320;s:14:\"optimized_size\";i:8928;s:7:\"percent\";d:48.45;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2968;s:14:\"optimized_size\";i:1102;s:7:\"percent\";d:62.87;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26017;s:14:\"optimized_size\";i:12506;s:7:\"percent\";d:51.93;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4406;s:14:\"optimized_size\";i:2444;s:7:\"percent\";d:44.53;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:68295;s:14:\"optimized_size\";i:30462;s:7:\"percent\";d:55.4;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4406;s:14:\"optimized_size\";i:3337;s:7:\"percent\";d:24.26;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26017;s:14:\"optimized_size\";i:15133;s:7:\"percent\";d:41.83;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2968;s:14:\"optimized_size\";i:1852;s:7:\"percent\";d:37.6;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17320;s:14:\"optimized_size\";i:10795;s:7:\"percent\";d:37.67;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46981;s:14:\"optimized_size\";i:21611;s:7:\"percent\";d:54;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16001;s:14:\"optimized_size\";i:6290;s:7:\"percent\";d:60.69;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:363976;s:14:\"optimized_size\";i:172536;s:7:\"percent\";d:52.6;}}'),(100388,2895,'_imagify_optimization_level','1'),(100389,2895,'_imagify_status','success'),(100390,2895,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4340;s:14:\"optimized_size\";i:2483;s:7:\"percent\";d:42.79;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4340;s:14:\"optimized_size\";i:958;s:7:\"percent\";d:77.93;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:8680;s:14:\"optimized_size\";i:3441;s:7:\"percent\";d:60.36;}}'),(100391,2894,'_imagify_optimization_level','1'),(100392,2894,'_imagify_status','success'),(100393,2894,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:83987;s:14:\"optimized_size\";i:45933;s:7:\"percent\";d:45.31;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20537;s:14:\"optimized_size\";i:9558;s:7:\"percent\";d:53.46;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:54541;s:14:\"optimized_size\";i:27754;s:7:\"percent\";d:49.11;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19650;s:14:\"optimized_size\";i:11080;s:7:\"percent\";d:43.61;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3991;s:14:\"optimized_size\";i:2052;s:7:\"percent\";d:48.58;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30651;s:14:\"optimized_size\";i:16386;s:7:\"percent\";d:46.54;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4307;s:14:\"optimized_size\";i:2534;s:7:\"percent\";d:41.17;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:83987;s:14:\"optimized_size\";i:41790;s:7:\"percent\";d:50.24;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4307;s:14:\"optimized_size\";i:3096;s:7:\"percent\";d:28.12;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30651;s:14:\"optimized_size\";i:18209;s:7:\"percent\";d:40.59;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3991;s:14:\"optimized_size\";i:2630;s:7:\"percent\";d:34.1;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19650;s:14:\"optimized_size\";i:12751;s:7:\"percent\";d:35.11;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:54541;s:14:\"optimized_size\";i:31341;s:7:\"percent\";d:42.54;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20537;s:14:\"optimized_size\";i:11277;s:7:\"percent\";d:45.09;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:435328;s:14:\"optimized_size\";i:236391;s:7:\"percent\";d:45.7;}}'),(100394,2893,'_imagify_optimization_level','1'),(100395,2893,'_imagify_status','success'),(100396,2893,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31848;s:14:\"optimized_size\";i:5467;s:7:\"percent\";d:82.83;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7079;s:14:\"optimized_size\";i:2098;s:7:\"percent\";d:70.36;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31848;s:14:\"optimized_size\";i:1180;s:7:\"percent\";d:96.29;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7079;s:14:\"optimized_size\";i:2546;s:7:\"percent\";d:64.03;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:77854;s:14:\"optimized_size\";i:11291;s:7:\"percent\";d:85.5;}}'),(100397,2887,'_imagify_optimization_level','1'),(100398,2887,'_imagify_status','success'),(100399,2887,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:70114;s:14:\"optimized_size\";i:38815;s:7:\"percent\";d:44.64;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32623;s:14:\"optimized_size\";i:17936;s:7:\"percent\";d:45.02;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28240;s:14:\"optimized_size\";i:13568;s:7:\"percent\";d:51.95;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5484;s:14:\"optimized_size\";i:2894;s:7:\"percent\";d:47.23;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:44522;s:14:\"optimized_size\";i:19888;s:7:\"percent\";d:55.33;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6810;s:14:\"optimized_size\";i:3142;s:7:\"percent\";d:53.86;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:70114;s:14:\"optimized_size\";i:33240;s:7:\"percent\";d:52.59;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6810;s:14:\"optimized_size\";i:5008;s:7:\"percent\";d:26.46;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:44522;s:14:\"optimized_size\";i:27440;s:7:\"percent\";d:38.37;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5484;s:14:\"optimized_size\";i:4309;s:7:\"percent\";d:21.43;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28240;s:14:\"optimized_size\";i:18125;s:7:\"percent\";d:35.82;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32623;s:14:\"optimized_size\";i:22497;s:7:\"percent\";d:31.04;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:375586;s:14:\"optimized_size\";i:206862;s:7:\"percent\";d:44.92;}}'),(100400,2891,'_imagify_optimization_level','1'),(100401,2891,'_imagify_status','success'),(100402,2891,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:109790;s:14:\"optimized_size\";i:31133;s:7:\"percent\";d:71.64;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:115016;s:14:\"optimized_size\";i:27596;s:7:\"percent\";d:76.01;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24746;s:14:\"optimized_size\";i:4050;s:7:\"percent\";d:83.63;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40231;s:14:\"optimized_size\";i:6804;s:7:\"percent\";d:83.09;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:109790;s:14:\"optimized_size\";i:27606;s:7:\"percent\";d:74.86;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40231;s:14:\"optimized_size\";i:10349;s:7:\"percent\";d:74.28;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24746;s:14:\"optimized_size\";i:7206;s:7:\"percent\";d:70.88;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:115016;s:14:\"optimized_size\";i:30851;s:7:\"percent\";d:73.18;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:579566;s:14:\"optimized_size\";i:145595;s:7:\"percent\";d:74.88;}}'),(100403,2886,'_imagify_optimization_level','1'),(100404,2886,'_imagify_status','already_optimized'); INSERT INTO `wp_postmeta` VALUES (100405,2886,'_imagify_data','a:2:{s:5:\"sizes\";a:7:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36045;s:14:\"optimized_size\";i:20052;s:7:\"percent\";d:44.37;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:48736;s:14:\"optimized_size\";i:31606;s:7:\"percent\";d:35.15;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5987;s:14:\"optimized_size\";i:3570;s:7:\"percent\";d:40.37;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:76351;s:14:\"optimized_size\";i:46608;s:7:\"percent\";d:38.96;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9267;s:14:\"optimized_size\";i:5624;s:7:\"percent\";d:39.31;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:136668;s:14:\"optimized_size\";i:78986;s:7:\"percent\";d:42.21;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:313054;s:14:\"optimized_size\";i:186446;s:7:\"percent\";d:40.44;}}'),(100406,2880,'_imagify_optimization_level','1'),(100407,2880,'_imagify_status','success'),(100408,2880,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:110021;s:14:\"optimized_size\";i:8671;s:7:\"percent\";d:92.12;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16042;s:14:\"optimized_size\";i:8912;s:7:\"percent\";d:44.45;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10106;s:14:\"optimized_size\";i:4378;s:7:\"percent\";d:56.68;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11889;s:14:\"optimized_size\";i:4906;s:7:\"percent\";d:58.73;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:110021;s:14:\"optimized_size\";i:9354;s:7:\"percent\";d:91.5;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11889;s:14:\"optimized_size\";i:4824;s:7:\"percent\";d:59.42;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10106;s:14:\"optimized_size\";i:4073;s:7:\"percent\";d:59.7;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16042;s:14:\"optimized_size\";i:7117;s:7:\"percent\";d:55.64;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:296116;s:14:\"optimized_size\";i:52235;s:7:\"percent\";d:82.36;}}'),(100409,2868,'_imagify_optimization_level','1'),(100410,2868,'_imagify_status','success'),(100411,2868,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4374;s:14:\"optimized_size\";i:2973;s:7:\"percent\";d:32.03;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4374;s:14:\"optimized_size\";i:1116;s:7:\"percent\";d:74.49;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:8748;s:14:\"optimized_size\";i:4089;s:7:\"percent\";d:53.26;}}'),(100412,2867,'_imagify_optimization_level','1'),(100413,2867,'_imagify_status','success'),(100414,2867,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1284;s:14:\"optimized_size\";i:1165;s:7:\"percent\";d:9.27;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1284;s:14:\"optimized_size\";i:290;s:7:\"percent\";d:77.41;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2568;s:14:\"optimized_size\";i:1455;s:7:\"percent\";d:43.34;}}'),(100415,2866,'_imagify_optimization_level','1'),(100416,2866,'_imagify_status','success'),(100417,2866,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:99704;s:14:\"optimized_size\";i:35157;s:7:\"percent\";d:64.74;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28718;s:14:\"optimized_size\";i:13766;s:7:\"percent\";d:52.06;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:48419;s:14:\"optimized_size\";i:21964;s:7:\"percent\";d:54.64;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17462;s:14:\"optimized_size\";i:9452;s:7:\"percent\";d:45.87;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5117;s:14:\"optimized_size\";i:2824;s:7:\"percent\";d:44.81;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26974;s:14:\"optimized_size\";i:13670;s:7:\"percent\";d:49.32;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4299;s:14:\"optimized_size\";i:2462;s:7:\"percent\";d:42.73;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:99704;s:14:\"optimized_size\";i:33960;s:7:\"percent\";d:65.94;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4299;s:14:\"optimized_size\";i:3256;s:7:\"percent\";d:24.26;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26974;s:14:\"optimized_size\";i:16100;s:7:\"percent\";d:40.31;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5117;s:14:\"optimized_size\";i:3904;s:7:\"percent\";d:23.71;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17462;s:14:\"optimized_size\";i:10771;s:7:\"percent\";d:38.32;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:48419;s:14:\"optimized_size\";i:23026;s:7:\"percent\";d:52.44;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28718;s:14:\"optimized_size\";i:17213;s:7:\"percent\";d:40.06;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:461386;s:14:\"optimized_size\";i:207525;s:7:\"percent\";d:55.02;}}'),(100418,2861,'_imagify_optimization_level','1'),(100419,2861,'_imagify_status','success'),(100420,2861,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10302;s:14:\"optimized_size\";i:5228;s:7:\"percent\";d:49.25;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16498;s:14:\"optimized_size\";i:3954;s:7:\"percent\";d:76.03;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10302;s:14:\"optimized_size\";i:6080;s:7:\"percent\";d:40.98;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16498;s:14:\"optimized_size\";i:6000;s:7:\"percent\";d:63.63;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:53600;s:14:\"optimized_size\";i:21262;s:7:\"percent\";d:60.33;}}'),(100421,2863,'_imagify_optimization_level','1'),(100422,2863,'_imagify_status','success'),(100423,2863,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10717;s:14:\"optimized_size\";i:5380;s:7:\"percent\";d:49.8;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17975;s:14:\"optimized_size\";i:4276;s:7:\"percent\";d:76.21;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10717;s:14:\"optimized_size\";i:5086;s:7:\"percent\";d:52.54;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17975;s:14:\"optimized_size\";i:7302;s:7:\"percent\";d:59.38;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:57384;s:14:\"optimized_size\";i:22044;s:7:\"percent\";d:61.59;}}'),(100424,2864,'_imagify_optimization_level','1'),(100425,2864,'_imagify_status','success'),(100426,2864,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:172158;s:14:\"optimized_size\";i:49976;s:7:\"percent\";d:70.97;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:170738;s:14:\"optimized_size\";i:50074;s:7:\"percent\";d:70.67;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22883;s:14:\"optimized_size\";i:8818;s:7:\"percent\";d:61.46;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:51636;s:14:\"optimized_size\";i:18746;s:7:\"percent\";d:63.7;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:172158;s:14:\"optimized_size\";i:63612;s:7:\"percent\";d:63.05;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:51636;s:14:\"optimized_size\";i:16222;s:7:\"percent\";d:68.58;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22883;s:14:\"optimized_size\";i:7854;s:7:\"percent\";d:65.68;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:170738;s:14:\"optimized_size\";i:44151;s:7:\"percent\";d:74.14;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:834830;s:14:\"optimized_size\";i:259453;s:7:\"percent\";d:68.92;}}'),(100427,2860,'_imagify_optimization_level','1'),(100428,2860,'_imagify_status','success'),(100429,2860,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:124998;s:14:\"optimized_size\";i:57233;s:7:\"percent\";d:54.21;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35670;s:14:\"optimized_size\";i:17804;s:7:\"percent\";d:50.09;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37757;s:14:\"optimized_size\";i:19540;s:7:\"percent\";d:48.25;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5073;s:14:\"optimized_size\";i:2946;s:7:\"percent\";d:41.93;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:58163;s:14:\"optimized_size\";i:27932;s:7:\"percent\";d:51.98;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7768;s:14:\"optimized_size\";i:4446;s:7:\"percent\";d:42.77;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:124998;s:14:\"optimized_size\";i:41540;s:7:\"percent\";d:66.77;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7768;s:14:\"optimized_size\";i:6103;s:7:\"percent\";d:21.43;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:58163;s:14:\"optimized_size\";i:36125;s:7:\"percent\";d:37.89;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5073;s:14:\"optimized_size\";i:3964;s:7:\"percent\";d:21.86;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37757;s:14:\"optimized_size\";i:25247;s:7:\"percent\";d:33.13;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35670;s:14:\"optimized_size\";i:25728;s:7:\"percent\";d:27.87;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:538858;s:14:\"optimized_size\";i:268608;s:7:\"percent\";d:50.15;}}'),(100430,2859,'_imagify_optimization_level','1'),(100431,2859,'_imagify_status','success'),(100432,2859,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:107347;s:14:\"optimized_size\";i:42364;s:7:\"percent\";d:60.54;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26178;s:14:\"optimized_size\";i:12084;s:7:\"percent\";d:53.84;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33236;s:14:\"optimized_size\";i:16322;s:7:\"percent\";d:50.89;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4655;s:14:\"optimized_size\";i:2484;s:7:\"percent\";d:46.64;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:51621;s:14:\"optimized_size\";i:22940;s:7:\"percent\";d:55.56;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7846;s:14:\"optimized_size\";i:4276;s:7:\"percent\";d:45.5;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:107347;s:14:\"optimized_size\";i:35068;s:7:\"percent\";d:67.33;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7846;s:14:\"optimized_size\";i:6117;s:7:\"percent\";d:22.04;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:51621;s:14:\"optimized_size\";i:30873;s:7:\"percent\";d:40.19;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4655;s:14:\"optimized_size\";i:3570;s:7:\"percent\";d:23.31;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33236;s:14:\"optimized_size\";i:21552;s:7:\"percent\";d:35.15;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26178;s:14:\"optimized_size\";i:15808;s:7:\"percent\";d:39.61;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:461766;s:14:\"optimized_size\";i:213458;s:7:\"percent\";d:53.77;}}'),(100433,2858,'_imagify_optimization_level','1'),(100434,2858,'_imagify_status','success'),(100435,2858,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:249693;s:14:\"optimized_size\";i:96080;s:7:\"percent\";d:61.52;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:143139;s:14:\"optimized_size\";i:13586;s:7:\"percent\";d:90.51;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:121940;s:14:\"optimized_size\";i:17788;s:7:\"percent\";d:85.41;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13631;s:14:\"optimized_size\";i:2960;s:7:\"percent\";d:78.28;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:223911;s:14:\"optimized_size\";i:25836;s:7:\"percent\";d:88.46;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34338;s:14:\"optimized_size\";i:4690;s:7:\"percent\";d:86.34;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:249693;s:14:\"optimized_size\";i:42534;s:7:\"percent\";d:82.97;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34338;s:14:\"optimized_size\";i:12233;s:7:\"percent\";d:64.37;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:223911;s:14:\"optimized_size\";i:114010;s:7:\"percent\";d:49.08;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13631;s:14:\"optimized_size\";i:5306;s:7:\"percent\";d:61.07;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:121940;s:14:\"optimized_size\";i:50038;s:7:\"percent\";d:58.97;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:143139;s:14:\"optimized_size\";i:50948;s:7:\"percent\";d:64.41;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1573304;s:14:\"optimized_size\";i:436009;s:7:\"percent\";d:72.29;}}'),(100436,2850,'_imagify_optimization_level','1'),(100437,2850,'_imagify_status','success'),(100438,2850,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:80274;s:14:\"optimized_size\";i:26945;s:7:\"percent\";d:66.43;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34150;s:14:\"optimized_size\";i:3312;s:7:\"percent\";d:90.3;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:80274;s:14:\"optimized_size\";i:5888;s:7:\"percent\";d:92.67;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34150;s:14:\"optimized_size\";i:12110;s:7:\"percent\";d:64.54;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:228848;s:14:\"optimized_size\";i:48255;s:7:\"percent\";d:78.91;}}'),(100439,2849,'_imagify_optimization_level','1'),(100440,2849,'_imagify_status','success'),(100441,2849,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:69803;s:14:\"optimized_size\";i:22576;s:7:\"percent\";d:67.66;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26600;s:14:\"optimized_size\";i:3506;s:7:\"percent\";d:86.82;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:69803;s:14:\"optimized_size\";i:6092;s:7:\"percent\";d:91.27;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26600;s:14:\"optimized_size\";i:9530;s:7:\"percent\";d:64.17;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:192806;s:14:\"optimized_size\";i:41704;s:7:\"percent\";d:78.37;}}'),(100442,2848,'_imagify_optimization_level','1'),(100443,2848,'_imagify_status','success'),(100444,2848,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:99502;s:14:\"optimized_size\";i:31434;s:7:\"percent\";d:68.41;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41863;s:14:\"optimized_size\";i:4860;s:7:\"percent\";d:88.39;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:99502;s:14:\"optimized_size\";i:9142;s:7:\"percent\";d:90.81;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41863;s:14:\"optimized_size\";i:13860;s:7:\"percent\";d:66.89;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:282730;s:14:\"optimized_size\";i:59296;s:7:\"percent\";d:79.03;}}'),(100445,2847,'_imagify_optimization_level','1'),(100446,2847,'_imagify_status','success'),(100447,2847,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:85110;s:14:\"optimized_size\";i:26220;s:7:\"percent\";d:69.19;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31363;s:14:\"optimized_size\";i:4492;s:7:\"percent\";d:85.68;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:85110;s:14:\"optimized_size\";i:8796;s:7:\"percent\";d:89.67;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31363;s:14:\"optimized_size\";i:10559;s:7:\"percent\";d:66.33;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:232946;s:14:\"optimized_size\";i:50067;s:7:\"percent\";d:78.51;}}'),(100448,2759,'_imagify_optimization_level','1'),(100449,2759,'_imagify_status','success'),(100450,2759,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5454;s:14:\"optimized_size\";i:2933;s:7:\"percent\";d:46.22;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5454;s:14:\"optimized_size\";i:2342;s:7:\"percent\";d:57.06;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:10908;s:14:\"optimized_size\";i:5275;s:7:\"percent\";d:51.64;}}'),(100451,2805,'_imagify_optimization_level','1'),(100452,2805,'_imagify_status','success'),(100453,2805,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:581512;s:14:\"optimized_size\";i:168989;s:7:\"percent\";d:70.94;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:186134;s:14:\"optimized_size\";i:13652;s:7:\"percent\";d:92.67;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:222789;s:14:\"optimized_size\";i:18312;s:7:\"percent\";d:91.78;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18140;s:14:\"optimized_size\";i:2860;s:7:\"percent\";d:84.23;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:390237;s:14:\"optimized_size\";i:25432;s:7:\"percent\";d:93.48;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35950;s:14:\"optimized_size\";i:5374;s:7:\"percent\";d:85.05;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:581512;s:14:\"optimized_size\";i:33670;s:7:\"percent\";d:94.21;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35950;s:14:\"optimized_size\";i:13652;s:7:\"percent\";d:62.03;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:390237;s:14:\"optimized_size\";i:122940;s:7:\"percent\";d:68.5;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18140;s:14:\"optimized_size\";i:7442;s:7:\"percent\";d:58.97;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:222789;s:14:\"optimized_size\";i:76168;s:7:\"percent\";d:65.81;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:186134;s:14:\"optimized_size\";i:62961;s:7:\"percent\";d:66.17;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2869524;s:14:\"optimized_size\";i:551452;s:7:\"percent\";d:80.78;}}'),(100454,2716,'_imagify_optimization_level','1'),(100455,2716,'_imagify_status','success'),(100456,2716,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2663;s:14:\"optimized_size\";i:1867;s:7:\"percent\";d:29.89;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2663;s:14:\"optimized_size\";i:988;s:7:\"percent\";d:62.9;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:5326;s:14:\"optimized_size\";i:2855;s:7:\"percent\";d:46.4;}}'),(100457,2715,'_imagify_optimization_level','1'),(100458,2715,'_imagify_status','success'),(100459,2715,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1870;s:14:\"optimized_size\";i:1441;s:7:\"percent\";d:22.94;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:976;s:14:\"optimized_size\";i:442;s:7:\"percent\";d:54.71;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1870;s:14:\"optimized_size\";i:442;s:7:\"percent\";d:76.36;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:976;s:14:\"optimized_size\";i:482;s:7:\"percent\";d:50.61;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:5692;s:14:\"optimized_size\";i:2807;s:7:\"percent\";d:50.69;}}'),(100460,2714,'_imagify_optimization_level','1'),(100461,2714,'_imagify_status','success'),(100462,2714,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4862;s:14:\"optimized_size\";i:2911;s:7:\"percent\";d:40.13;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2985;s:14:\"optimized_size\";i:1610;s:7:\"percent\";d:46.06;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4862;s:14:\"optimized_size\";i:2250;s:7:\"percent\";d:53.72;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2985;s:14:\"optimized_size\";i:1560;s:7:\"percent\";d:47.74;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:15694;s:14:\"optimized_size\";i:8331;s:7:\"percent\";d:46.92;}}'),(100463,2713,'_imagify_optimization_level','1'),(100464,2713,'_imagify_status','success'),(100465,2713,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2790;s:14:\"optimized_size\";i:1976;s:7:\"percent\";d:29.18;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2790;s:14:\"optimized_size\";i:1176;s:7:\"percent\";d:57.85;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:5580;s:14:\"optimized_size\";i:3152;s:7:\"percent\";d:43.51;}}'),(100466,2712,'_imagify_optimization_level','1'),(100467,2712,'_imagify_status','success'),(100468,2712,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4272;s:14:\"optimized_size\";i:2675;s:7:\"percent\";d:37.38;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4272;s:14:\"optimized_size\";i:2004;s:7:\"percent\";d:53.09;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:8544;s:14:\"optimized_size\";i:4679;s:7:\"percent\";d:45.24;}}'),(100469,2710,'_imagify_optimization_level','1'),(100470,2710,'_imagify_status','success'),(100471,2710,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3995;s:14:\"optimized_size\";i:2061;s:7:\"percent\";d:48.41;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3995;s:14:\"optimized_size\";i:1636;s:7:\"percent\";d:59.05;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:7990;s:14:\"optimized_size\";i:3697;s:7:\"percent\";d:53.73;}}'),(100472,2711,'_imagify_optimization_level','1'),(100473,2711,'_imagify_status','success'),(100474,2711,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5015;s:14:\"optimized_size\";i:3110;s:7:\"percent\";d:37.99;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2670;s:14:\"optimized_size\";i:1670;s:7:\"percent\";d:37.45;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5015;s:14:\"optimized_size\";i:2674;s:7:\"percent\";d:46.68;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2670;s:14:\"optimized_size\";i:1423;s:7:\"percent\";d:46.7;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:15370;s:14:\"optimized_size\";i:8877;s:7:\"percent\";d:42.24;}}'),(100475,2709,'_imagify_optimization_level','1'),(100476,2709,'_imagify_status','success'),(100477,2709,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4572;s:14:\"optimized_size\";i:2238;s:7:\"percent\";d:51.05;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3740;s:14:\"optimized_size\";i:1788;s:7:\"percent\";d:52.19;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4572;s:14:\"optimized_size\";i:1992;s:7:\"percent\";d:56.43;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3740;s:14:\"optimized_size\";i:1326;s:7:\"percent\";d:64.55;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:16624;s:14:\"optimized_size\";i:7344;s:7:\"percent\";d:55.82;}}'),(100478,2708,'_imagify_optimization_level','1'),(100479,2708,'_imagify_status','success'),(100480,2708,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4197;s:14:\"optimized_size\";i:2172;s:7:\"percent\";d:48.25;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4197;s:14:\"optimized_size\";i:1846;s:7:\"percent\";d:56.02;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:8394;s:14:\"optimized_size\";i:4018;s:7:\"percent\";d:52.13;}}'),(100481,2625,'_imagify_optimization_level','1'),(100482,2625,'_imagify_status','success'),(100483,2625,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:68677;s:14:\"optimized_size\";i:26531;s:7:\"percent\";d:61.37;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33040;s:14:\"optimized_size\";i:2964;s:7:\"percent\";d:91.03;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:68677;s:14:\"optimized_size\";i:4544;s:7:\"percent\";d:93.38;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33040;s:14:\"optimized_size\";i:12706;s:7:\"percent\";d:61.54;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:203434;s:14:\"optimized_size\";i:46745;s:7:\"percent\";d:77.02;}}'),(100484,2624,'_imagify_optimization_level','1'),(100485,2624,'_imagify_status','success'),(100486,2624,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:107908;s:14:\"optimized_size\";i:8730;s:7:\"percent\";d:91.91;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15364;s:14:\"optimized_size\";i:8890;s:7:\"percent\";d:42.14;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9769;s:14:\"optimized_size\";i:4236;s:7:\"percent\";d:56.64;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11934;s:14:\"optimized_size\";i:4934;s:7:\"percent\";d:58.66;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:107908;s:14:\"optimized_size\";i:9312;s:7:\"percent\";d:91.37;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11934;s:14:\"optimized_size\";i:4936;s:7:\"percent\";d:58.64;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9769;s:14:\"optimized_size\";i:4193;s:7:\"percent\";d:57.08;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15364;s:14:\"optimized_size\";i:7141;s:7:\"percent\";d:53.52;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:289950;s:14:\"optimized_size\";i:52372;s:7:\"percent\";d:81.94;}}'),(100487,2622,'_imagify_optimization_level','1'),(100488,2622,'_imagify_status','success'),(100489,2622,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5790;s:14:\"optimized_size\";i:3951;s:7:\"percent\";d:31.76;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5790;s:14:\"optimized_size\";i:1546;s:7:\"percent\";d:73.3;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:11580;s:14:\"optimized_size\";i:5497;s:7:\"percent\";d:52.53;}}'),(100490,2623,'_imagify_optimization_level','1'),(100491,2623,'_imagify_status','success'),(100492,2623,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:104075;s:14:\"optimized_size\";i:11508;s:7:\"percent\";d:88.94;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17479;s:14:\"optimized_size\";i:10090;s:7:\"percent\";d:42.27;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7832;s:14:\"optimized_size\";i:3964;s:7:\"percent\";d:49.39;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13303;s:14:\"optimized_size\";i:5812;s:7:\"percent\";d:56.31;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:104075;s:14:\"optimized_size\";i:11786;s:7:\"percent\";d:88.68;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13303;s:14:\"optimized_size\";i:5385;s:7:\"percent\";d:59.52;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7832;s:14:\"optimized_size\";i:3484;s:7:\"percent\";d:55.52;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17479;s:14:\"optimized_size\";i:8939;s:7:\"percent\";d:48.86;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:285378;s:14:\"optimized_size\";i:60968;s:7:\"percent\";d:78.64;}}'),(100493,2621,'_imagify_optimization_level','1'),(100494,2621,'_imagify_status','success'),(100495,2621,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:713539;s:14:\"optimized_size\";i:224237;s:7:\"percent\";d:68.57;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:132848;s:14:\"optimized_size\";i:4874;s:7:\"percent\";d:96.33;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:575054;s:14:\"optimized_size\";i:17100;s:7:\"percent\";d:97.03;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:157457;s:14:\"optimized_size\";i:6658;s:7:\"percent\";d:95.77;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14644;s:14:\"optimized_size\";i:1046;s:7:\"percent\";d:92.86;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:293634;s:14:\"optimized_size\";i:9870;s:7:\"percent\";d:96.64;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28885;s:14:\"optimized_size\";i:1808;s:7:\"percent\";d:93.74;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:713539;s:14:\"optimized_size\";i:28940;s:7:\"percent\";d:95.94;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28885;s:14:\"optimized_size\";i:7951;s:7:\"percent\";d:72.47;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:293634;s:14:\"optimized_size\";i:71948;s:7:\"percent\";d:75.5;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14644;s:14:\"optimized_size\";i:4024;s:7:\"percent\";d:72.52;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:157457;s:14:\"optimized_size\";i:43863;s:7:\"percent\";d:72.14;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:575054;s:14:\"optimized_size\";i:150780;s:7:\"percent\";d:73.78;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:132848;s:14:\"optimized_size\";i:30710;s:7:\"percent\";d:76.88;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3832122;s:14:\"optimized_size\";i:603809;s:7:\"percent\";d:84.24;}}'),(100496,2615,'_imagify_optimization_level','1'),(100497,2615,'_imagify_status','success'),(100498,2615,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:316649;s:14:\"optimized_size\";i:50413;s:7:\"percent\";d:84.08;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8049;s:14:\"optimized_size\";i:2546;s:7:\"percent\";d:68.37;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:171861;s:14:\"optimized_size\";i:58422;s:7:\"percent\";d:66.01;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:62569;s:14:\"optimized_size\";i:19484;s:7:\"percent\";d:68.86;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1181;s:14:\"optimized_size\";i:470;s:7:\"percent\";d:60.2;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:97102;s:14:\"optimized_size\";i:30974;s:7:\"percent\";d:68.1;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11893;s:14:\"optimized_size\";i:4088;s:7:\"percent\";d:65.63;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:316649;s:14:\"optimized_size\";i:69804;s:7:\"percent\";d:77.96;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11893;s:14:\"optimized_size\";i:2679;s:7:\"percent\";d:77.47;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:97102;s:14:\"optimized_size\";i:29522;s:7:\"percent\";d:69.6;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1181;s:14:\"optimized_size\";i:324;s:7:\"percent\";d:72.57;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:62569;s:14:\"optimized_size\";i:18287;s:7:\"percent\";d:70.77;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:171861;s:14:\"optimized_size\";i:41540;s:7:\"percent\";d:75.83;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8049;s:14:\"optimized_size\";i:1437;s:7:\"percent\";d:82.15;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1338608;s:14:\"optimized_size\";i:329990;s:7:\"percent\";d:75.35;}}'),(100499,2613,'_imagify_optimization_level','1'),(100500,2613,'_imagify_status','success'),(100501,2613,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:998683;s:14:\"optimized_size\";i:263661;s:7:\"percent\";d:73.6;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:184031;s:14:\"optimized_size\";i:6748;s:7:\"percent\";d:96.33;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:568261;s:14:\"optimized_size\";i:23570;s:7:\"percent\";d:95.85;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:159727;s:14:\"optimized_size\";i:6888;s:7:\"percent\";d:95.69;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16766;s:14:\"optimized_size\";i:822;s:7:\"percent\";d:95.1;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:300368;s:14:\"optimized_size\";i:11500;s:7:\"percent\";d:96.17;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26653;s:14:\"optimized_size\";i:1382;s:7:\"percent\";d:94.81;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:998683;s:14:\"optimized_size\";i:44012;s:7:\"percent\";d:95.59;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26653;s:14:\"optimized_size\";i:7884;s:7:\"percent\";d:70.42;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:300368;s:14:\"optimized_size\";i:76167;s:7:\"percent\";d:74.64;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16766;s:14:\"optimized_size\";i:4756;s:7:\"percent\";d:71.63;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:159727;s:14:\"optimized_size\";i:44024;s:7:\"percent\";d:72.44;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:568261;s:14:\"optimized_size\";i:161086;s:7:\"percent\";d:71.65;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:184031;s:14:\"optimized_size\";i:43530;s:7:\"percent\";d:76.35;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:4508978;s:14:\"optimized_size\";i:696030;s:7:\"percent\";d:84.56;}}'),(100502,2600,'_imagify_optimization_level','1'),(100503,2600,'_imagify_status','success'),(100504,2600,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:76449;s:14:\"optimized_size\";i:28905;s:7:\"percent\";d:62.19;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:162656;s:14:\"optimized_size\";i:37834;s:7:\"percent\";d:76.74;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21995;s:14:\"optimized_size\";i:7668;s:7:\"percent\";d:65.14;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:54880;s:14:\"optimized_size\";i:17316;s:7:\"percent\";d:68.45;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:76449;s:14:\"optimized_size\";i:45024;s:7:\"percent\";d:41.11;}s:6:\"medium\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:97:\"cURL error 35: OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to s1-amz-par.imagify.io:443 \";}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21995;s:14:\"optimized_size\";i:6837;s:7:\"percent\";d:68.92;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:162656;s:14:\"optimized_size\";i:48294;s:7:\"percent\";d:70.31;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:577080;s:14:\"optimized_size\";i:191878;s:7:\"percent\";d:66.75;}}'),(100505,2599,'_imagify_optimization_level','1'),(100506,2599,'_imagify_status','success'),(100507,2599,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:422367;s:14:\"optimized_size\";i:212009;s:7:\"percent\";d:49.8;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:310925;s:14:\"optimized_size\";i:58768;s:7:\"percent\";d:81.1;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29644;s:14:\"optimized_size\";i:6806;s:7:\"percent\";d:77.04;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:86554;s:14:\"optimized_size\";i:18042;s:7:\"percent\";d:79.16;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:422367;s:14:\"optimized_size\";i:112418;s:7:\"percent\";d:73.38;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:86554;s:14:\"optimized_size\";i:37901;s:7:\"percent\";d:56.21;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29644;s:14:\"optimized_size\";i:14092;s:7:\"percent\";d:52.46;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:310925;s:14:\"optimized_size\";i:130205;s:7:\"percent\";d:58.12;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1698980;s:14:\"optimized_size\";i:590241;s:7:\"percent\";d:65.26;}}'),(100508,2597,'_imagify_optimization_level','1'),(100509,2597,'_imagify_status','success'),(100510,2597,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19384;s:14:\"optimized_size\";i:8967;s:7:\"percent\";d:53.74;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6633;s:14:\"optimized_size\";i:3706;s:7:\"percent\";d:44.13;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14575;s:14:\"optimized_size\";i:6126;s:7:\"percent\";d:57.97;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2169;s:14:\"optimized_size\";i:1172;s:7:\"percent\";d:45.97;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21998;s:14:\"optimized_size\";i:9358;s:7:\"percent\";d:57.46;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3457;s:14:\"optimized_size\";i:1614;s:7:\"percent\";d:53.31;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19384;s:14:\"optimized_size\";i:9276;s:7:\"percent\";d:52.15;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3457;s:14:\"optimized_size\";i:1417;s:7:\"percent\";d:59.01;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21998;s:14:\"optimized_size\";i:8380;s:7:\"percent\";d:61.91;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2169;s:14:\"optimized_size\";i:1082;s:7:\"percent\";d:50.12;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14575;s:14:\"optimized_size\";i:5457;s:7:\"percent\";d:62.56;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6633;s:14:\"optimized_size\";i:3214;s:7:\"percent\";d:51.55;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:136432;s:14:\"optimized_size\";i:59769;s:7:\"percent\";d:56.19;}}'),(100511,2579,'_imagify_optimization_level','1'),(100512,2579,'_imagify_status','success'),(100513,2579,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35149;s:14:\"optimized_size\";i:13143;s:7:\"percent\";d:62.61;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25361;s:14:\"optimized_size\";i:9400;s:7:\"percent\";d:62.94;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12172;s:14:\"optimized_size\";i:1382;s:7:\"percent\";d:88.65;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21262;s:14:\"optimized_size\";i:4228;s:7:\"percent\";d:80.11;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35149;s:14:\"optimized_size\";i:13602;s:7:\"percent\";d:61.3;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21262;s:14:\"optimized_size\";i:7428;s:7:\"percent\";d:65.06;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12172;s:14:\"optimized_size\";i:2931;s:7:\"percent\";d:75.92;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25361;s:14:\"optimized_size\";i:8611;s:7:\"percent\";d:66.05;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:187888;s:14:\"optimized_size\";i:60725;s:7:\"percent\";d:67.68;}}'),(100514,2578,'_imagify_optimization_level','1'),(100515,2578,'_imagify_status','success'),(100516,2578,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:68490;s:14:\"optimized_size\";i:23105;s:7:\"percent\";d:66.27;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26477;s:14:\"optimized_size\";i:3486;s:7:\"percent\";d:86.83;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:68490;s:14:\"optimized_size\";i:6804;s:7:\"percent\";d:90.07;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26477;s:14:\"optimized_size\";i:9509;s:7:\"percent\";d:64.09;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:189934;s:14:\"optimized_size\";i:42904;s:7:\"percent\";d:77.41;}}'),(100517,2567,'_imagify_optimization_level','1'),(100518,2567,'_imagify_status','success'),(100519,2567,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:172271;s:14:\"optimized_size\";i:88663;s:7:\"percent\";d:48.53;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37066;s:14:\"optimized_size\";i:19360;s:7:\"percent\";d:47.77;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:136302;s:14:\"optimized_size\";i:55180;s:7:\"percent\";d:59.52;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:47873;s:14:\"optimized_size\";i:23172;s:7:\"percent\";d:51.6;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5404;s:14:\"optimized_size\";i:2854;s:7:\"percent\";d:47.19;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:74488;s:14:\"optimized_size\";i:33756;s:7:\"percent\";d:54.68;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10582;s:14:\"optimized_size\";i:5588;s:7:\"percent\";d:47.19;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:172271;s:14:\"optimized_size\";i:63102;s:7:\"percent\";d:63.37;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10582;s:14:\"optimized_size\";i:7549;s:7:\"percent\";d:28.66;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:74488;s:14:\"optimized_size\";i:44328;s:7:\"percent\";d:40.49;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5404;s:14:\"optimized_size\";i:4144;s:7:\"percent\";d:23.32;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:47873;s:14:\"optimized_size\";i:29144;s:7:\"percent\";d:39.12;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:136302;s:14:\"optimized_size\";i:76092;s:7:\"percent\";d:44.17;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37066;s:14:\"optimized_size\";i:26762;s:7:\"percent\";d:27.8;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:967972;s:14:\"optimized_size\";i:479694;s:7:\"percent\";d:50.44;}}'),(100520,2564,'_imagify_optimization_level','1'),(100521,2564,'_imagify_status','success'),(100522,2564,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:209581;s:14:\"optimized_size\";i:85639;s:7:\"percent\";d:59.14;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:205719;s:14:\"optimized_size\";i:8942;s:7:\"percent\";d:95.65;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:138873;s:14:\"optimized_size\";i:12524;s:7:\"percent\";d:90.98;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20124;s:14:\"optimized_size\";i:2562;s:7:\"percent\";d:87.27;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:261859;s:14:\"optimized_size\";i:16390;s:7:\"percent\";d:93.74;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23653;s:14:\"optimized_size\";i:4634;s:7:\"percent\";d:80.41;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:209581;s:14:\"optimized_size\";i:21626;s:7:\"percent\";d:89.68;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23653;s:14:\"optimized_size\";i:8860;s:7:\"percent\";d:62.54;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:261859;s:14:\"optimized_size\";i:93602;s:7:\"percent\";d:64.25;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20124;s:14:\"optimized_size\";i:4638;s:7:\"percent\";d:76.95;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:138873;s:14:\"optimized_size\";i:53013;s:7:\"percent\";d:61.83;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:205719;s:14:\"optimized_size\";i:37919;s:7:\"percent\";d:81.57;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1719618;s:14:\"optimized_size\";i:350349;s:7:\"percent\";d:79.63;}}'),(100523,2559,'_imagify_optimization_level','1'),(100524,2559,'_imagify_status','success'),(100525,2559,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:98800;s:14:\"optimized_size\";i:37175;s:7:\"percent\";d:62.37;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16886;s:14:\"optimized_size\";i:4912;s:7:\"percent\";d:70.91;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:60887;s:14:\"optimized_size\";i:17228;s:7:\"percent\";d:71.7;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19934;s:14:\"optimized_size\";i:6546;s:7:\"percent\";d:67.16;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3061;s:14:\"optimized_size\";i:1010;s:7:\"percent\";d:67;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31425;s:14:\"optimized_size\";i:9948;s:7:\"percent\";d:68.34;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4950;s:14:\"optimized_size\";i:1732;s:7:\"percent\";d:65.01;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:98800;s:14:\"optimized_size\";i:26716;s:7:\"percent\";d:72.96;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4950;s:14:\"optimized_size\";i:2773;s:7:\"percent\";d:43.98;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31425;s:14:\"optimized_size\";i:15076;s:7:\"percent\";d:52.03;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3061;s:14:\"optimized_size\";i:1726;s:7:\"percent\";d:43.61;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19934;s:14:\"optimized_size\";i:10019;s:7:\"percent\";d:49.74;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:60887;s:14:\"optimized_size\";i:25120;s:7:\"percent\";d:58.74;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16886;s:14:\"optimized_size\";i:7689;s:7:\"percent\";d:54.47;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:471886;s:14:\"optimized_size\";i:167670;s:7:\"percent\";d:64.47;}}'),(100526,2561,'_imagify_optimization_level','1'),(100527,2561,'_imagify_status','success'),(100528,2561,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:202814;s:14:\"optimized_size\";i:17342;s:7:\"percent\";d:91.45;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15486;s:14:\"optimized_size\";i:8990;s:7:\"percent\";d:41.95;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39902;s:14:\"optimized_size\";i:16512;s:7:\"percent\";d:58.62;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4442;s:14:\"optimized_size\";i:2476;s:7:\"percent\";d:44.26;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:62669;s:14:\"optimized_size\";i:24538;s:7:\"percent\";d:60.85;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11620;s:14:\"optimized_size\";i:5136;s:7:\"percent\";d:55.8;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:202814;s:14:\"optimized_size\";i:20806;s:7:\"percent\";d:89.74;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11620;s:14:\"optimized_size\";i:4742;s:7:\"percent\";d:59.19;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:62669;s:14:\"optimized_size\";i:23591;s:7:\"percent\";d:62.36;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4442;s:14:\"optimized_size\";i:1912;s:7:\"percent\";d:56.96;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39902;s:14:\"optimized_size\";i:14999;s:7:\"percent\";d:62.41;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15486;s:14:\"optimized_size\";i:6086;s:7:\"percent\";d:60.7;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:673866;s:14:\"optimized_size\";i:147130;s:7:\"percent\";d:78.17;}}'),(100529,2558,'_imagify_optimization_level','1'),(100530,2558,'_imagify_status','success'),(100531,2558,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1332;s:14:\"optimized_size\";i:1296;s:7:\"percent\";d:2.7;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1332;s:14:\"optimized_size\";i:296;s:7:\"percent\";d:77.78;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2664;s:14:\"optimized_size\";i:1592;s:7:\"percent\";d:40.24;}}'),(100532,2557,'_imagify_optimization_level','1'),(100533,2557,'_imagify_status','success'),(100534,2557,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2835;s:14:\"optimized_size\";i:2291;s:7:\"percent\";d:19.19;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2835;s:14:\"optimized_size\";i:784;s:7:\"percent\";d:72.35;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:5670;s:14:\"optimized_size\";i:3075;s:7:\"percent\";d:45.77;}}'),(100535,2552,'_imagify_optimization_level','1'),(100536,2552,'_imagify_status','success'),(100537,2552,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:192334;s:14:\"optimized_size\";i:60147;s:7:\"percent\";d:68.73;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4334;s:14:\"optimized_size\";i:1778;s:7:\"percent\";d:58.98;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:204240;s:14:\"optimized_size\";i:73826;s:7:\"percent\";d:63.85;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:74076;s:14:\"optimized_size\";i:24340;s:7:\"percent\";d:67.14;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:871;s:14:\"optimized_size\";i:370;s:7:\"percent\";d:57.52;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:114903;s:14:\"optimized_size\";i:39064;s:7:\"percent\";d:66;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13846;s:14:\"optimized_size\";i:5152;s:7:\"percent\";d:62.79;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:192334;s:14:\"optimized_size\";i:83164;s:7:\"percent\";d:56.76;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13846;s:14:\"optimized_size\";i:3663;s:7:\"percent\";d:73.54;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:114903;s:14:\"optimized_size\";i:34472;s:7:\"percent\";d:70;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:871;s:14:\"optimized_size\";i:276;s:7:\"percent\";d:68.31;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:74076;s:14:\"optimized_size\";i:22994;s:7:\"percent\";d:68.96;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:204240;s:14:\"optimized_size\";i:63160;s:7:\"percent\";d:69.08;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4334;s:14:\"optimized_size\";i:1090;s:7:\"percent\";d:74.85;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1209208;s:14:\"optimized_size\";i:413496;s:7:\"percent\";d:65.8;}}'),(100538,2548,'_imagify_optimization_level','1'),(100539,2548,'_imagify_status','success'),(100540,2548,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5592;s:14:\"optimized_size\";i:2656;s:7:\"percent\";d:52.5;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5592;s:14:\"optimized_size\";i:2320;s:7:\"percent\";d:58.51;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:11184;s:14:\"optimized_size\";i:4976;s:7:\"percent\";d:55.51;}}'),(100541,2549,'_imagify_optimization_level','1'),(100542,2549,'_imagify_status','success'),(100543,2549,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10598;s:14:\"optimized_size\";i:4232;s:7:\"percent\";d:60.07;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3745;s:14:\"optimized_size\";i:1800;s:7:\"percent\";d:51.94;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9390;s:14:\"optimized_size\";i:4094;s:7:\"percent\";d:56.4;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10598;s:14:\"optimized_size\";i:5116;s:7:\"percent\";d:51.73;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9390;s:14:\"optimized_size\";i:2955;s:7:\"percent\";d:68.53;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3745;s:14:\"optimized_size\";i:1355;s:7:\"percent\";d:63.82;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:47466;s:14:\"optimized_size\";i:19552;s:7:\"percent\";d:58.81;}}'),(100544,2546,'_imagify_optimization_level','1'),(100545,2546,'_imagify_status','success'),(100546,2546,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30153;s:14:\"optimized_size\";i:20214;s:7:\"percent\";d:32.96;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5357;s:14:\"optimized_size\";i:2958;s:7:\"percent\";d:44.78;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12467;s:14:\"optimized_size\";i:6606;s:7:\"percent\";d:47.01;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30153;s:14:\"optimized_size\";i:11990;s:7:\"percent\";d:60.24;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12467;s:14:\"optimized_size\";i:9145;s:7:\"percent\";d:26.65;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5357;s:14:\"optimized_size\";i:4290;s:7:\"percent\";d:19.92;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:95954;s:14:\"optimized_size\";i:55203;s:7:\"percent\";d:42.47;}}'),(100547,2543,'_imagify_optimization_level','1'),(100548,2543,'_imagify_status','success'),(100549,2543,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26127;s:14:\"optimized_size\";i:12311;s:7:\"percent\";d:52.88;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25297;s:14:\"optimized_size\";i:16510;s:7:\"percent\";d:34.74;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14141;s:14:\"optimized_size\";i:5584;s:7:\"percent\";d:60.51;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27719;s:14:\"optimized_size\";i:9314;s:7:\"percent\";d:66.4;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26127;s:14:\"optimized_size\";i:14718;s:7:\"percent\";d:43.67;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27719;s:14:\"optimized_size\";i:7363;s:7:\"percent\";d:73.44;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14141;s:14:\"optimized_size\";i:4362;s:7:\"percent\";d:69.15;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25297;s:14:\"optimized_size\";i:11409;s:7:\"percent\";d:54.9;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:186568;s:14:\"optimized_size\";i:81571;s:7:\"percent\";d:56.28;}}'),(100550,2545,'_imagify_optimization_level','1'),(100551,2545,'_imagify_status','already_optimized'),(100552,2545,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33994;s:14:\"optimized_size\";i:16772;s:7:\"percent\";d:50.66;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:129827;s:14:\"optimized_size\";i:64006;s:7:\"percent\";d:50.7;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35396;s:14:\"optimized_size\";i:17354;s:7:\"percent\";d:50.97;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4165;s:14:\"optimized_size\";i:1912;s:7:\"percent\";d:54.09;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61186;s:14:\"optimized_size\";i:30870;s:7:\"percent\";d:49.55;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6453;s:14:\"optimized_size\";i:3022;s:7:\"percent\";d:53.17;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:232503;s:14:\"optimized_size\";i:112994;s:7:\"percent\";d:51.4;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:503524;s:14:\"optimized_size\";i:246930;s:7:\"percent\";d:50.96;}}'),(100553,2539,'_imagify_optimization_level','1'),(100554,2539,'_imagify_status','success'),(100555,2539,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:95648;s:14:\"optimized_size\";i:35202;s:7:\"percent\";d:63.2;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31789;s:14:\"optimized_size\";i:15136;s:7:\"percent\";d:52.39;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39970;s:14:\"optimized_size\";i:17964;s:7:\"percent\";d:55.06;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4724;s:14:\"optimized_size\";i:2528;s:7:\"percent\";d:46.49;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9063;s:14:\"optimized_size\";i:4922;s:7:\"percent\";d:45.69;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:95648;s:14:\"optimized_size\";i:22436;s:7:\"percent\";d:76.54;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9063;s:14:\"optimized_size\";i:6048;s:7:\"percent\";d:33.27;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4724;s:14:\"optimized_size\";i:3717;s:7:\"percent\";d:21.32;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39970;s:14:\"optimized_size\";i:22807;s:7:\"percent\";d:42.94;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31789;s:14:\"optimized_size\";i:21437;s:7:\"percent\";d:32.56;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:362388;s:14:\"optimized_size\";i:152197;s:7:\"percent\";d:58;}}'),(100556,2538,'_imagify_optimization_level','1'),(100557,2538,'_imagify_status','success'),(100558,2538,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:87116;s:14:\"optimized_size\";i:25248;s:7:\"percent\";d:71.02;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26262;s:14:\"optimized_size\";i:12118;s:7:\"percent\";d:53.86;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35740;s:14:\"optimized_size\";i:15544;s:7:\"percent\";d:56.51;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3910;s:14:\"optimized_size\";i:2064;s:7:\"percent\";d:47.21;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8158;s:14:\"optimized_size\";i:4522;s:7:\"percent\";d:44.57;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:87116;s:14:\"optimized_size\";i:19408;s:7:\"percent\";d:77.72;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8158;s:14:\"optimized_size\";i:5474;s:7:\"percent\";d:32.9;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3910;s:14:\"optimized_size\";i:2879;s:7:\"percent\";d:26.37;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35740;s:14:\"optimized_size\";i:20339;s:7:\"percent\";d:43.09;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26262;s:14:\"optimized_size\";i:15957;s:7:\"percent\";d:39.24;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:322372;s:14:\"optimized_size\";i:123553;s:7:\"percent\";d:61.67;}}'),(100559,2537,'_imagify_optimization_level','1'),(100560,2537,'_imagify_status','success'),(100561,2537,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:59345;s:14:\"optimized_size\";i:17861;s:7:\"percent\";d:69.9;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20778;s:14:\"optimized_size\";i:8376;s:7:\"percent\";d:59.69;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26111;s:14:\"optimized_size\";i:9740;s:7:\"percent\";d:62.7;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3663;s:14:\"optimized_size\";i:1786;s:7:\"percent\";d:51.24;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6458;s:14:\"optimized_size\";i:3116;s:7:\"percent\";d:51.75;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:59345;s:14:\"optimized_size\";i:12054;s:7:\"percent\";d:79.69;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6458;s:14:\"optimized_size\";i:3817;s:7:\"percent\";d:40.9;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3663;s:14:\"optimized_size\";i:2457;s:7:\"percent\";d:32.92;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26111;s:14:\"optimized_size\";i:14244;s:7:\"percent\";d:45.45;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20778;s:14:\"optimized_size\";i:11827;s:7:\"percent\";d:43.08;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:232710;s:14:\"optimized_size\";i:85278;s:7:\"percent\";d:63.35;}}'),(100562,2535,'_imagify_optimization_level','1'),(100563,2535,'_imagify_status','success'),(100564,2535,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:646394;s:14:\"optimized_size\";i:278550;s:7:\"percent\";d:56.91;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:123200;s:14:\"optimized_size\";i:22860;s:7:\"percent\";d:81.44;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:817713;s:14:\"optimized_size\";i:103028;s:7:\"percent\";d:87.4;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:248492;s:14:\"optimized_size\";i:41360;s:7:\"percent\";d:83.36;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16415;s:14:\"optimized_size\";i:4646;s:7:\"percent\";d:71.7;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:386570;s:14:\"optimized_size\";i:60914;s:7:\"percent\";d:84.24;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:48984;s:14:\"optimized_size\";i:11256;s:7:\"percent\";d:77.02;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:646394;s:14:\"optimized_size\";i:129618;s:7:\"percent\";d:79.95;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:48984;s:14:\"optimized_size\";i:21638;s:7:\"percent\";d:55.83;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:386570;s:14:\"optimized_size\";i:161434;s:7:\"percent\";d:58.24;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16415;s:14:\"optimized_size\";i:7870;s:7:\"percent\";d:52.06;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:248492;s:14:\"optimized_size\";i:102638;s:7:\"percent\";d:58.7;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:817713;s:14:\"optimized_size\";i:362304;s:7:\"percent\";d:55.69;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:123200;s:14:\"optimized_size\";i:54817;s:7:\"percent\";d:55.51;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:4575536;s:14:\"optimized_size\";i:1362933;s:7:\"percent\";d:70.21;}}'),(100565,2534,'_imagify_optimization_level','1'),(100566,2534,'_imagify_status','success'),(100567,2534,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:158658;s:14:\"optimized_size\";i:37980;s:7:\"percent\";d:76.06;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:103754;s:14:\"optimized_size\";i:16006;s:7:\"percent\";d:84.57;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:75270;s:14:\"optimized_size\";i:8334;s:7:\"percent\";d:88.93;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26414;s:14:\"optimized_size\";i:3096;s:7:\"percent\";d:88.28;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:126876;s:14:\"optimized_size\";i:13848;s:7:\"percent\";d:89.09;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13014;s:14:\"optimized_size\";i:1700;s:7:\"percent\";d:86.94;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:158658;s:14:\"optimized_size\";i:17600;s:7:\"percent\";d:88.91;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13014;s:14:\"optimized_size\";i:4608;s:7:\"percent\";d:64.59;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:126876;s:14:\"optimized_size\";i:42327;s:7:\"percent\";d:66.64;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26414;s:14:\"optimized_size\";i:9142;s:7:\"percent\";d:65.39;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:75270;s:14:\"optimized_size\";i:24910;s:7:\"percent\";d:66.91;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:103754;s:14:\"optimized_size\";i:33561;s:7:\"percent\";d:67.65;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1007972;s:14:\"optimized_size\";i:213112;s:7:\"percent\";d:78.86;}}'),(100568,2532,'_imagify_optimization_level','1'),(100569,2532,'_imagify_status','success'),(100570,2532,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4313;s:14:\"optimized_size\";i:3032;s:7:\"percent\";d:29.7;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4313;s:14:\"optimized_size\";i:1344;s:7:\"percent\";d:68.84;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:8626;s:14:\"optimized_size\";i:4376;s:7:\"percent\";d:49.27;}}'),(100571,2531,'_imagify_optimization_level','1'),(100572,2531,'_imagify_status','success'),(100573,2531,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:268403;s:14:\"optimized_size\";i:40454;s:7:\"percent\";d:84.93;}s:20:\"feature@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:103:\"Our server returned an error (100 - Operation timed out after 45001 milliseconds with 0 bytes received)\";}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27925;s:14:\"optimized_size\";i:2970;s:7:\"percent\";d:89.36;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52221;s:14:\"optimized_size\";i:4738;s:7:\"percent\";d:90.93;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:268403;s:14:\"optimized_size\";i:16058;s:7:\"percent\";d:94.02;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52221;s:14:\"optimized_size\";i:17578;s:7:\"percent\";d:66.34;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27925;s:14:\"optimized_size\";i:9851;s:7:\"percent\";d:64.72;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:123078;s:14:\"optimized_size\";i:39228;s:7:\"percent\";d:68.13;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:820176;s:14:\"optimized_size\";i:130877;s:7:\"percent\";d:84.04;}}'),(100574,2530,'_imagify_optimization_level','1'),(100575,2530,'_imagify_status','success'),(100576,2530,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:835548;s:14:\"optimized_size\";i:410090;s:7:\"percent\";d:50.92;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:273537;s:14:\"optimized_size\";i:45560;s:7:\"percent\";d:83.34;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:625387;s:14:\"optimized_size\";i:104788;s:7:\"percent\";d:83.24;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22564;s:14:\"optimized_size\";i:4814;s:7:\"percent\";d:78.67;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:898048;s:14:\"optimized_size\";i:150748;s:7:\"percent\";d:83.21;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:82415;s:14:\"optimized_size\";i:14792;s:7:\"percent\";d:82.05;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:835548;s:14:\"optimized_size\";i:195962;s:7:\"percent\";d:76.55;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:82415;s:14:\"optimized_size\";i:34945;s:7:\"percent\";d:57.6;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:898048;s:14:\"optimized_size\";i:370776;s:7:\"percent\";d:58.71;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22564;s:14:\"optimized_size\";i:10697;s:7:\"percent\";d:52.59;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:625387;s:14:\"optimized_size\";i:242905;s:7:\"percent\";d:61.16;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:273537;s:14:\"optimized_size\";i:98512;s:7:\"percent\";d:63.99;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:5474998;s:14:\"optimized_size\";i:1684589;s:7:\"percent\";d:69.23;}}'),(100577,2528,'_imagify_optimization_level','1'),(100578,2528,'_imagify_status','already_optimized'),(100579,2528,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15426;s:14:\"optimized_size\";i:4972;s:7:\"percent\";d:67.77;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:63765;s:14:\"optimized_size\";i:17354;s:7:\"percent\";d:72.78;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17129;s:14:\"optimized_size\";i:4930;s:7:\"percent\";d:71.22;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2318;s:14:\"optimized_size\";i:630;s:7:\"percent\";d:72.82;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29006;s:14:\"optimized_size\";i:8552;s:7:\"percent\";d:70.52;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3646;s:14:\"optimized_size\";i:970;s:7:\"percent\";d:73.4;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:83922;s:14:\"optimized_size\";i:33890;s:7:\"percent\";d:59.62;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:215212;s:14:\"optimized_size\";i:71298;s:7:\"percent\";d:66.87;}}'),(100580,2512,'_imagify_optimization_level','1'),(100581,2512,'_imagify_status','success'),(100582,2512,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:101854;s:14:\"optimized_size\";i:34668;s:7:\"percent\";d:65.96;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:121081;s:14:\"optimized_size\";i:35492;s:7:\"percent\";d:70.69;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17605;s:14:\"optimized_size\";i:6862;s:7:\"percent\";d:61.02;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41783;s:14:\"optimized_size\";i:14792;s:7:\"percent\";d:64.6;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:101854;s:14:\"optimized_size\";i:37188;s:7:\"percent\";d:63.49;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41783;s:14:\"optimized_size\";i:13357;s:7:\"percent\";d:68.03;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17605;s:14:\"optimized_size\";i:6476;s:7:\"percent\";d:63.21;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:121081;s:14:\"optimized_size\";i:34489;s:7:\"percent\";d:71.52;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:564646;s:14:\"optimized_size\";i:183324;s:7:\"percent\";d:67.53;}}'),(100583,2510,'_imagify_optimization_level','1'),(100584,2510,'_imagify_status','success'),(100585,2510,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:329769;s:14:\"optimized_size\";i:95404;s:7:\"percent\";d:71.07;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:125299;s:14:\"optimized_size\";i:24832;s:7:\"percent\";d:80.18;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:153931;s:14:\"optimized_size\";i:27768;s:7:\"percent\";d:81.96;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14149;s:14:\"optimized_size\";i:4836;s:7:\"percent\";d:65.82;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:267592;s:14:\"optimized_size\";i:41264;s:7:\"percent\";d:84.58;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24394;s:14:\"optimized_size\";i:7490;s:7:\"percent\";d:69.3;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:329769;s:14:\"optimized_size\";i:37240;s:7:\"percent\";d:88.71;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24394;s:14:\"optimized_size\";i:9802;s:7:\"percent\";d:59.82;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:267592;s:14:\"optimized_size\";i:84244;s:7:\"percent\";d:68.52;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14149;s:14:\"optimized_size\";i:6020;s:7:\"percent\";d:57.45;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:153931;s:14:\"optimized_size\";i:50726;s:7:\"percent\";d:67.05;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:125299;s:14:\"optimized_size\";i:39194;s:7:\"percent\";d:68.72;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1830268;s:14:\"optimized_size\";i:428820;s:7:\"percent\";d:76.57;}}'),(100586,2508,'_imagify_optimization_level','1'),(100587,2508,'_imagify_status','success'),(100588,2508,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:202660;s:14:\"optimized_size\";i:71710;s:7:\"percent\";d:64.62;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:92873;s:14:\"optimized_size\";i:13030;s:7:\"percent\";d:85.97;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:77727;s:14:\"optimized_size\";i:9820;s:7:\"percent\";d:87.37;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30219;s:14:\"optimized_size\";i:3488;s:7:\"percent\";d:88.46;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:132989;s:14:\"optimized_size\";i:14588;s:7:\"percent\";d:89.03;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19240;s:14:\"optimized_size\";i:2922;s:7:\"percent\";d:84.81;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:202660;s:14:\"optimized_size\";i:25460;s:7:\"percent\";d:87.44;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19240;s:14:\"optimized_size\";i:7235;s:7:\"percent\";d:62.4;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:132989;s:14:\"optimized_size\";i:47199;s:7:\"percent\";d:64.51;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30219;s:14:\"optimized_size\";i:10295;s:7:\"percent\";d:65.93;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:77727;s:14:\"optimized_size\";i:30717;s:7:\"percent\";d:60.48;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:92873;s:14:\"optimized_size\";i:33236;s:7:\"percent\";d:64.21;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1111416;s:14:\"optimized_size\";i:269700;s:7:\"percent\";d:75.73;}}'),(100589,2481,'_imagify_optimization_level','1'),(100590,2481,'_imagify_status','success'),(100591,2481,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:199511;s:14:\"optimized_size\";i:128203;s:7:\"percent\";d:35.74;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:146797;s:14:\"optimized_size\";i:11968;s:7:\"percent\";d:91.85;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:374285;s:14:\"optimized_size\";i:39340;s:7:\"percent\";d:89.49;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:85749;s:14:\"optimized_size\";i:13038;s:7:\"percent\";d:84.8;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16395;s:14:\"optimized_size\";i:1686;s:7:\"percent\";d:89.72;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:216634;s:14:\"optimized_size\";i:20950;s:7:\"percent\";d:90.33;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20319;s:14:\"optimized_size\";i:2650;s:7:\"percent\";d:86.96;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:199511;s:14:\"optimized_size\";i:62122;s:7:\"percent\";d:68.86;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20319;s:14:\"optimized_size\";i:7961;s:7:\"percent\";d:60.82;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:216634;s:14:\"optimized_size\";i:81394;s:7:\"percent\";d:62.43;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16395;s:14:\"optimized_size\";i:5699;s:7:\"percent\";d:65.24;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:85749;s:14:\"optimized_size\";i:34862;s:7:\"percent\";d:59.34;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:374285;s:14:\"optimized_size\";i:150577;s:7:\"percent\";d:59.77;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:146797;s:14:\"optimized_size\";i:58645;s:7:\"percent\";d:60.05;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2119380;s:14:\"optimized_size\";i:619095;s:7:\"percent\";d:70.79;}}'),(100592,2478,'_imagify_optimization_level','1'),(100593,2478,'_imagify_status','success'),(100594,2478,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:225499;s:14:\"optimized_size\";i:106622;s:7:\"percent\";d:52.72;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:103316;s:14:\"optimized_size\";i:9944;s:7:\"percent\";d:90.38;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:264731;s:14:\"optimized_size\";i:40446;s:7:\"percent\";d:84.72;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:83371;s:14:\"optimized_size\";i:13154;s:7:\"percent\";d:84.22;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10012;s:14:\"optimized_size\";i:1428;s:7:\"percent\";d:85.74;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:136263;s:14:\"optimized_size\";i:21322;s:7:\"percent\";d:84.35;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19419;s:14:\"optimized_size\";i:2648;s:7:\"percent\";d:86.36;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:225499;s:14:\"optimized_size\";i:68138;s:7:\"percent\";d:69.78;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19419;s:14:\"optimized_size\";i:7106;s:7:\"percent\";d:63.41;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:136263;s:14:\"optimized_size\";i:54562;s:7:\"percent\";d:59.96;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10012;s:14:\"optimized_size\";i:3720;s:7:\"percent\";d:62.84;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:83371;s:14:\"optimized_size\";i:32312;s:7:\"percent\";d:61.24;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:264731;s:14:\"optimized_size\";i:110674;s:7:\"percent\";d:58.19;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:103316;s:14:\"optimized_size\";i:35761;s:7:\"percent\";d:65.39;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1685222;s:14:\"optimized_size\";i:507837;s:7:\"percent\";d:69.87;}}'),(100595,2477,'_imagify_optimization_level','1'),(100596,2477,'_imagify_status','success'),(100597,2477,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:234262;s:14:\"optimized_size\";i:76784;s:7:\"percent\";d:67.22;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:230753;s:14:\"optimized_size\";i:15284;s:7:\"percent\";d:93.38;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:155822;s:14:\"optimized_size\";i:17292;s:7:\"percent\";d:88.9;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26793;s:14:\"optimized_size\";i:3702;s:7:\"percent\";d:86.18;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:279063;s:14:\"optimized_size\";i:23594;s:7:\"percent\";d:91.55;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28279;s:14:\"optimized_size\";i:5600;s:7:\"percent\";d:80.2;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:234262;s:14:\"optimized_size\";i:30788;s:7:\"percent\";d:86.86;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28279;s:14:\"optimized_size\";i:10085;s:7:\"percent\";d:64.34;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:279063;s:14:\"optimized_size\";i:80429;s:7:\"percent\";d:71.18;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26793;s:14:\"optimized_size\";i:8481;s:7:\"percent\";d:68.35;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:155822;s:14:\"optimized_size\";i:48443;s:7:\"percent\";d:68.91;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:230753;s:14:\"optimized_size\";i:60697;s:7:\"percent\";d:73.7;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1909944;s:14:\"optimized_size\";i:381179;s:7:\"percent\";d:80.04;}}'),(100598,2473,'_imagify_optimization_level','1'),(100599,2473,'_imagify_status','success'),(100600,2473,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:89564;s:14:\"optimized_size\";i:55268;s:7:\"percent\";d:38.29;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:42536;s:14:\"optimized_size\";i:21624;s:7:\"percent\";d:49.16;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:47803;s:14:\"optimized_size\";i:25290;s:7:\"percent\";d:47.1;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8277;s:14:\"optimized_size\";i:5234;s:7:\"percent\";d:36.76;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:68805;s:14:\"optimized_size\";i:32320;s:7:\"percent\";d:53.03;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13119;s:14:\"optimized_size\";i:7956;s:7:\"percent\";d:39.36;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:89564;s:14:\"optimized_size\";i:40868;s:7:\"percent\";d:54.37;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13119;s:14:\"optimized_size\";i:10102;s:7:\"percent\";d:23;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:68805;s:14:\"optimized_size\";i:43118;s:7:\"percent\";d:37.33;}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:47803;s:14:\"optimized_size\";i:32262;s:7:\"percent\";d:32.51;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:42536;s:14:\"optimized_size\";i:29394;s:7:\"percent\";d:30.9;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:531931;s:14:\"optimized_size\";i:303436;s:7:\"percent\";d:42.96;}}'),(100601,2468,'_imagify_optimization_level','1'),(100602,2468,'_imagify_status','success'),(100603,2468,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:199801;s:14:\"optimized_size\";i:82472;s:7:\"percent\";d:58.72;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:215243;s:14:\"optimized_size\";i:8566;s:7:\"percent\";d:96.02;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:143619;s:14:\"optimized_size\";i:15732;s:7:\"percent\";d:89.05;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21757;s:14:\"optimized_size\";i:2074;s:7:\"percent\";d:90.47;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:272180;s:14:\"optimized_size\";i:21514;s:7:\"percent\";d:92.1;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26043;s:14:\"optimized_size\";i:4906;s:7:\"percent\";d:81.16;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:199801;s:14:\"optimized_size\";i:28616;s:7:\"percent\";d:85.68;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26043;s:14:\"optimized_size\";i:9251;s:7:\"percent\";d:64.48;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:272180;s:14:\"optimized_size\";i:84635;s:7:\"percent\";d:68.9;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21757;s:14:\"optimized_size\";i:5490;s:7:\"percent\";d:74.77;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:143619;s:14:\"optimized_size\";i:52501;s:7:\"percent\";d:63.44;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:215243;s:14:\"optimized_size\";i:43235;s:7:\"percent\";d:79.91;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1757286;s:14:\"optimized_size\";i:358992;s:7:\"percent\";d:79.57;}}'),(100604,2464,'_imagify_optimization_level','1'),(100605,2464,'_imagify_status','success'),(100606,2464,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:200967;s:14:\"optimized_size\";i:82832;s:7:\"percent\";d:58.78;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:215190;s:14:\"optimized_size\";i:8540;s:7:\"percent\";d:96.03;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:143561;s:14:\"optimized_size\";i:15714;s:7:\"percent\";d:89.05;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21736;s:14:\"optimized_size\";i:2072;s:7:\"percent\";d:90.47;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:272047;s:14:\"optimized_size\";i:21548;s:7:\"percent\";d:92.08;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25989;s:14:\"optimized_size\";i:4920;s:7:\"percent\";d:81.07;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:200967;s:14:\"optimized_size\";i:28510;s:7:\"percent\";d:85.81;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25989;s:14:\"optimized_size\";i:9815;s:7:\"percent\";d:62.23;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:272047;s:14:\"optimized_size\";i:86091;s:7:\"percent\";d:68.35;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21736;s:14:\"optimized_size\";i:5515;s:7:\"percent\";d:74.63;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:143561;s:14:\"optimized_size\";i:50504;s:7:\"percent\";d:64.82;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:215190;s:14:\"optimized_size\";i:50035;s:7:\"percent\";d:76.75;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1758980;s:14:\"optimized_size\";i:366096;s:7:\"percent\";d:79.19;}}'),(100607,2454,'_imagify_optimization_level','1'),(100608,2454,'_imagify_status','success'),(100609,2454,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:123362;s:14:\"optimized_size\";i:66345;s:7:\"percent\";d:46.22;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27445;s:14:\"optimized_size\";i:13180;s:7:\"percent\";d:51.98;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:88651;s:14:\"optimized_size\";i:40302;s:7:\"percent\";d:54.54;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:55919;s:14:\"optimized_size\";i:26876;s:7:\"percent\";d:51.94;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17419;s:14:\"optimized_size\";i:9082;s:7:\"percent\";d:47.86;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4125;s:14:\"optimized_size\";i:2212;s:7:\"percent\";d:46.38;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28072;s:14:\"optimized_size\";i:14662;s:7:\"percent\";d:47.77;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3850;s:14:\"optimized_size\";i:1898;s:7:\"percent\";d:50.7;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:684579;s:14:\"optimized_size\";i:87142;s:7:\"percent\";d:87.27;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3850;s:14:\"optimized_size\";i:2749;s:7:\"percent\";d:28.6;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28072;s:14:\"optimized_size\";i:18151;s:7:\"percent\";d:35.34;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4125;s:14:\"optimized_size\";i:2956;s:7:\"percent\";d:28.34;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17419;s:14:\"optimized_size\";i:11170;s:7:\"percent\";d:35.87;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:55919;s:14:\"optimized_size\";i:33917;s:7:\"percent\";d:39.35;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:88651;s:14:\"optimized_size\";i:51704;s:7:\"percent\";d:41.68;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27445;s:14:\"optimized_size\";i:16769;s:7:\"percent\";d:38.9;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1258903;s:14:\"optimized_size\";i:399115;s:7:\"percent\";d:68.3;}}'),(100610,2452,'_imagify_optimization_level','1'),(100611,2452,'_imagify_status','success'),(100612,2452,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:209267;s:14:\"optimized_size\";i:75414;s:7:\"percent\";d:63.96;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:71503;s:14:\"optimized_size\";i:13056;s:7:\"percent\";d:81.74;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:144134;s:14:\"optimized_size\";i:16584;s:7:\"percent\";d:88.49;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25004;s:14:\"optimized_size\";i:3102;s:7:\"percent\";d:87.59;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:307371;s:14:\"optimized_size\";i:23870;s:7:\"percent\";d:92.23;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28658;s:14:\"optimized_size\";i:4372;s:7:\"percent\";d:84.74;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:209267;s:14:\"optimized_size\";i:32394;s:7:\"percent\";d:84.52;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28658;s:14:\"optimized_size\";i:10683;s:7:\"percent\";d:62.72;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:307371;s:14:\"optimized_size\";i:108111;s:7:\"percent\";d:64.83;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25004;s:14:\"optimized_size\";i:7906;s:7:\"percent\";d:68.38;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:144134;s:14:\"optimized_size\";i:50839;s:7:\"percent\";d:64.73;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:71503;s:14:\"optimized_size\";i:27697;s:7:\"percent\";d:61.26;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1571874;s:14:\"optimized_size\";i:374028;s:7:\"percent\";d:76.2;}}'),(100613,2435,'_imagify_optimization_level','1'),(100614,2435,'_imagify_status','already_optimized'),(100615,2435,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:307978;s:14:\"optimized_size\";i:34194;s:7:\"percent\";d:88.9;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:527248;s:14:\"optimized_size\";i:57140;s:7:\"percent\";d:89.16;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33078;s:14:\"optimized_size\";i:5102;s:7:\"percent\";d:84.58;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:87987;s:14:\"optimized_size\";i:11276;s:7:\"percent\";d:87.18;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:170759;s:14:\"optimized_size\";i:93068;s:7:\"percent\";d:45.5;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1127050;s:14:\"optimized_size\";i:200780;s:7:\"percent\";d:82.19;}}'),(100616,2434,'_imagify_optimization_level','1'),(100617,2434,'_imagify_status','already_optimized'),(100618,2434,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:375265;s:14:\"optimized_size\";i:69064;s:7:\"percent\";d:81.6;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:716113;s:14:\"optimized_size\";i:139244;s:7:\"percent\";d:80.56;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:38824;s:14:\"optimized_size\";i:8650;s:7:\"percent\";d:77.72;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:112919;s:14:\"optimized_size\";i:22280;s:7:\"percent\";d:80.27;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:176542;s:14:\"optimized_size\";i:180048;s:7:\"percent\";d:-1.99;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1419663;s:14:\"optimized_size\";i:419286;s:7:\"percent\";d:70.47;}}'),(100619,2433,'_imagify_optimization_level','1'),(100620,2433,'_imagify_status','already_optimized'),(100621,2433,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:354593;s:14:\"optimized_size\";i:48516;s:7:\"percent\";d:86.32;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:615678;s:14:\"optimized_size\";i:87260;s:7:\"percent\";d:85.83;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36062;s:14:\"optimized_size\";i:6448;s:7:\"percent\";d:82.12;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:100395;s:14:\"optimized_size\";i:16286;s:7:\"percent\";d:83.78;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:199452;s:14:\"optimized_size\";i:117506;s:7:\"percent\";d:41.09;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1306180;s:14:\"optimized_size\";i:276016;s:7:\"percent\";d:78.87;}}'),(100622,2403,'_imagify_optimization_level','1'),(100623,2403,'_imagify_status','success'),(100624,2403,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:95666;s:14:\"optimized_size\";i:7447;s:7:\"percent\";d:92.22;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30832;s:14:\"optimized_size\";i:4028;s:7:\"percent\";d:86.94;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:69346;s:14:\"optimized_size\";i:9474;s:7:\"percent\";d:86.34;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:95666;s:14:\"optimized_size\";i:14832;s:7:\"percent\";d:84.5;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:69346;s:14:\"optimized_size\";i:4670;s:7:\"percent\";d:93.27;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30832;s:14:\"optimized_size\";i:2211;s:7:\"percent\";d:92.83;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:391688;s:14:\"optimized_size\";i:42662;s:7:\"percent\";d:89.11;}}'),(100625,2402,'_imagify_optimization_level','1'),(100626,2402,'_imagify_status','success'),(100627,2402,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:111128;s:14:\"optimized_size\";i:8452;s:7:\"percent\";d:92.39;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20887;s:14:\"optimized_size\";i:4128;s:7:\"percent\";d:80.24;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:57061;s:14:\"optimized_size\";i:10942;s:7:\"percent\";d:80.82;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:111128;s:14:\"optimized_size\";i:17216;s:7:\"percent\";d:84.51;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:57061;s:14:\"optimized_size\";i:5262;s:7:\"percent\";d:90.78;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20887;s:14:\"optimized_size\";i:1669;s:7:\"percent\";d:92.01;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:378152;s:14:\"optimized_size\";i:47669;s:7:\"percent\";d:87.39;}}'),(100628,2400,'_imagify_optimization_level','1'),(100629,2400,'_imagify_status','success'),(100630,2400,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:109916;s:14:\"optimized_size\";i:9226;s:7:\"percent\";d:91.61;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30659;s:14:\"optimized_size\";i:4488;s:7:\"percent\";d:85.36;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:56922;s:14:\"optimized_size\";i:8740;s:7:\"percent\";d:84.65;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:109916;s:14:\"optimized_size\";i:15754;s:7:\"percent\";d:85.67;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:56922;s:14:\"optimized_size\";i:4640;s:7:\"percent\";d:91.85;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30659;s:14:\"optimized_size\";i:2549;s:7:\"percent\";d:91.69;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:394994;s:14:\"optimized_size\";i:45397;s:7:\"percent\";d:88.51;}}'),(100631,2401,'_imagify_optimization_level','1'),(100632,2401,'_imagify_status','success'),(100633,2401,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:112904;s:14:\"optimized_size\";i:9064;s:7:\"percent\";d:91.97;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18067;s:14:\"optimized_size\";i:4390;s:7:\"percent\";d:75.7;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:56492;s:14:\"optimized_size\";i:11878;s:7:\"percent\";d:78.97;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:112904;s:14:\"optimized_size\";i:18956;s:7:\"percent\";d:83.21;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:56492;s:14:\"optimized_size\";i:4005;s:7:\"percent\";d:92.91;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18067;s:14:\"optimized_size\";i:1830;s:7:\"percent\";d:89.87;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:374926;s:14:\"optimized_size\";i:50123;s:7:\"percent\";d:86.63;}}'),(100634,2285,'_imagify_optimization_level','1'),(100635,2285,'_imagify_status','success'),(100636,2285,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:228875;s:14:\"optimized_size\";i:93272;s:7:\"percent\";d:59.25;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:147688;s:14:\"optimized_size\";i:13710;s:7:\"percent\";d:90.72;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:245208;s:14:\"optimized_size\";i:17552;s:7:\"percent\";d:92.84;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21558;s:14:\"optimized_size\";i:2774;s:7:\"percent\";d:87.13;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:43037;s:14:\"optimized_size\";i:5538;s:7:\"percent\";d:87.13;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:228875;s:14:\"optimized_size\";i:21222;s:7:\"percent\";d:90.73;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:43037;s:14:\"optimized_size\";i:15237;s:7:\"percent\";d:64.6;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21558;s:14:\"optimized_size\";i:8260;s:7:\"percent\";d:61.68;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:245208;s:14:\"optimized_size\";i:88633;s:7:\"percent\";d:63.85;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:147688;s:14:\"optimized_size\";i:61360;s:7:\"percent\";d:58.45;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1372732;s:14:\"optimized_size\";i:327558;s:7:\"percent\";d:76.14;}}'),(100637,2281,'_imagify_optimization_level','1'),(100638,2281,'_imagify_status','success'),(100639,2281,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1537;s:14:\"optimized_size\";i:870;s:7:\"percent\";d:43.4;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1537;s:14:\"optimized_size\";i:726;s:7:\"percent\";d:52.77;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3074;s:14:\"optimized_size\";i:1596;s:7:\"percent\";d:48.08;}}'),(100640,2279,'_imagify_optimization_level','1'),(100641,2279,'_imagify_status','success'),(100642,2279,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1615;s:14:\"optimized_size\";i:1132;s:7:\"percent\";d:29.91;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1615;s:14:\"optimized_size\";i:900;s:7:\"percent\";d:44.27;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3230;s:14:\"optimized_size\";i:2032;s:7:\"percent\";d:37.09;}}'),(100643,2278,'_imagify_optimization_level','1'),(100644,2278,'_imagify_status','success'),(100645,2278,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2496;s:14:\"optimized_size\";i:1548;s:7:\"percent\";d:37.98;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2496;s:14:\"optimized_size\";i:1028;s:7:\"percent\";d:58.81;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:4992;s:14:\"optimized_size\";i:2576;s:7:\"percent\";d:48.4;}}'),(100646,2275,'_imagify_optimization_level','1'),(100647,2275,'_imagify_status','success'),(100648,2275,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:84726;s:14:\"optimized_size\";i:54644;s:7:\"percent\";d:35.51;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:94114;s:14:\"optimized_size\";i:15808;s:7:\"percent\";d:83.2;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24445;s:14:\"optimized_size\";i:2724;s:7:\"percent\";d:88.86;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46596;s:14:\"optimized_size\";i:5178;s:7:\"percent\";d:88.89;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:84726;s:14:\"optimized_size\";i:15856;s:7:\"percent\";d:81.29;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46596;s:14:\"optimized_size\";i:16841;s:7:\"percent\";d:63.86;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24445;s:14:\"optimized_size\";i:8919;s:7:\"percent\";d:63.51;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:94114;s:14:\"optimized_size\";i:37397;s:7:\"percent\";d:60.26;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:499762;s:14:\"optimized_size\";i:157367;s:7:\"percent\";d:68.51;}}'),(100649,2274,'_imagify_optimization_level','1'),(100650,2274,'_imagify_status','success'),(100651,2274,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:78295;s:14:\"optimized_size\";i:32721;s:7:\"percent\";d:58.21;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:240215;s:14:\"optimized_size\";i:11032;s:7:\"percent\";d:95.41;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23892;s:14:\"optimized_size\";i:1706;s:7:\"percent\";d:92.86;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:56823;s:14:\"optimized_size\";i:5146;s:7:\"percent\";d:90.94;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:78295;s:14:\"optimized_size\";i:14748;s:7:\"percent\";d:81.16;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:56823;s:14:\"optimized_size\";i:18980;s:7:\"percent\";d:66.6;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23892;s:14:\"optimized_size\";i:6773;s:7:\"percent\";d:71.65;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:240215;s:14:\"optimized_size\";i:60457;s:7:\"percent\";d:74.83;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:798450;s:14:\"optimized_size\";i:151563;s:7:\"percent\";d:81.02;}}'),(100652,2276,'_imagify_optimization_level','1'),(100653,2276,'_imagify_status','success'),(100654,2276,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:161751;s:14:\"optimized_size\";i:66203;s:7:\"percent\";d:59.07;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46818;s:14:\"optimized_size\";i:16526;s:7:\"percent\";d:64.7;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:315593;s:14:\"optimized_size\";i:40620;s:7:\"percent\";d:87.13;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:94892;s:14:\"optimized_size\";i:15746;s:7:\"percent\";d:83.41;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14011;s:14:\"optimized_size\";i:3194;s:7:\"percent\";d:77.2;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:129750;s:14:\"optimized_size\";i:24074;s:7:\"percent\";d:81.45;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16154;s:14:\"optimized_size\";i:3676;s:7:\"percent\";d:77.24;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:161751;s:14:\"optimized_size\";i:56994;s:7:\"percent\";d:64.76;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16154;s:14:\"optimized_size\";i:8750;s:7:\"percent\";d:45.83;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:129750;s:14:\"optimized_size\";i:62228;s:7:\"percent\";d:52.04;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14011;s:14:\"optimized_size\";i:6067;s:7:\"percent\";d:56.7;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:94892;s:14:\"optimized_size\";i:43395;s:7:\"percent\";d:54.27;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:315593;s:14:\"optimized_size\";i:136438;s:7:\"percent\";d:56.77;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46818;s:14:\"optimized_size\";i:17708;s:7:\"percent\";d:62.18;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1557938;s:14:\"optimized_size\";i:501619;s:7:\"percent\";d:67.8;}}'),(100655,2273,'_imagify_optimization_level','1'),(100656,2273,'_imagify_status','success'),(100657,2273,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:215310;s:14:\"optimized_size\";i:82361;s:7:\"percent\";d:61.75;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:233948;s:14:\"optimized_size\";i:11486;s:7:\"percent\";d:95.09;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:96963;s:14:\"optimized_size\";i:10538;s:7:\"percent\";d:89.13;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23772;s:14:\"optimized_size\";i:1488;s:7:\"percent\";d:93.74;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:164517;s:14:\"optimized_size\";i:16422;s:7:\"percent\";d:90.02;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23367;s:14:\"optimized_size\";i:2386;s:7:\"percent\";d:89.79;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:215310;s:14:\"optimized_size\";i:29966;s:7:\"percent\";d:86.08;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23367;s:14:\"optimized_size\";i:8474;s:7:\"percent\";d:63.74;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:164517;s:14:\"optimized_size\";i:55662;s:7:\"percent\";d:66.17;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23772;s:14:\"optimized_size\";i:6907;s:7:\"percent\";d:70.94;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:96963;s:14:\"optimized_size\";i:33942;s:7:\"percent\";d:64.99;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:233948;s:14:\"optimized_size\";i:63342;s:7:\"percent\";d:72.92;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1515754;s:14:\"optimized_size\";i:322974;s:7:\"percent\";d:78.69;}}'),(100658,2272,'_imagify_optimization_level','1'),(100659,2272,'_imagify_status','success'),(100660,2272,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:154019;s:14:\"optimized_size\";i:62206;s:7:\"percent\";d:59.61;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:202459;s:14:\"optimized_size\";i:7528;s:7:\"percent\";d:96.28;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:67345;s:14:\"optimized_size\";i:8726;s:7:\"percent\";d:87.04;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20454;s:14:\"optimized_size\";i:1160;s:7:\"percent\";d:94.33;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:117074;s:14:\"optimized_size\";i:13734;s:7:\"percent\";d:88.27;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17330;s:14:\"optimized_size\";i:1982;s:7:\"percent\";d:88.56;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:154019;s:14:\"optimized_size\";i:24856;s:7:\"percent\";d:83.86;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17330;s:14:\"optimized_size\";i:6202;s:7:\"percent\";d:64.21;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:117074;s:14:\"optimized_size\";i:46978;s:7:\"percent\";d:59.87;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20454;s:14:\"optimized_size\";i:5957;s:7:\"percent\";d:70.88;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:67345;s:14:\"optimized_size\";i:23779;s:7:\"percent\";d:64.69;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:202459;s:14:\"optimized_size\";i:55944;s:7:\"percent\";d:72.37;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1157362;s:14:\"optimized_size\";i:259052;s:7:\"percent\";d:77.62;}}'),(100664,2268,'_imagify_optimization_level','1'),(100665,2268,'_imagify_status','success'),(100666,2268,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:197440;s:14:\"optimized_size\";i:80352;s:7:\"percent\";d:59.3;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:131208;s:14:\"optimized_size\";i:7474;s:7:\"percent\";d:94.3;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:126122;s:14:\"optimized_size\";i:13088;s:7:\"percent\";d:89.62;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14434;s:14:\"optimized_size\";i:1858;s:7:\"percent\";d:87.13;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:255732;s:14:\"optimized_size\";i:17720;s:7:\"percent\";d:93.07;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25614;s:14:\"optimized_size\";i:3890;s:7:\"percent\";d:84.81;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:197440;s:14:\"optimized_size\";i:21380;s:7:\"percent\";d:89.17;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25614;s:14:\"optimized_size\";i:11062;s:7:\"percent\";d:56.81;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:255732;s:14:\"optimized_size\";i:114402;s:7:\"percent\";d:55.26;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14434;s:14:\"optimized_size\";i:6596;s:7:\"percent\";d:54.3;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:126122;s:14:\"optimized_size\";i:51142;s:7:\"percent\";d:59.45;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:131208;s:14:\"optimized_size\";i:62060;s:7:\"percent\";d:52.7;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1501100;s:14:\"optimized_size\";i:391024;s:7:\"percent\";d:73.95;}}'),(100667,2265,'_imagify_optimization_level','1'),(100668,2265,'_imagify_status','success'),(100669,2265,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:304574;s:14:\"optimized_size\";i:112148;s:7:\"percent\";d:63.18;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:102307;s:14:\"optimized_size\";i:11816;s:7:\"percent\";d:88.45;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:115390;s:14:\"optimized_size\";i:13018;s:7:\"percent\";d:88.72;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20937;s:14:\"optimized_size\";i:2818;s:7:\"percent\";d:86.54;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:180913;s:14:\"optimized_size\";i:18420;s:7:\"percent\";d:89.82;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22688;s:14:\"optimized_size\";i:3228;s:7:\"percent\";d:85.77;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:304574;s:14:\"optimized_size\";i:27876;s:7:\"percent\";d:90.85;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22688;s:14:\"optimized_size\";i:9919;s:7:\"percent\";d:56.28;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:180913;s:14:\"optimized_size\";i:77383;s:7:\"percent\";d:57.23;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20937;s:14:\"optimized_size\";i:9651;s:7:\"percent\";d:53.9;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:115390;s:14:\"optimized_size\";i:48378;s:7:\"percent\";d:58.07;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:102307;s:14:\"optimized_size\";i:44662;s:7:\"percent\";d:56.35;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1493618;s:14:\"optimized_size\";i:379317;s:7:\"percent\";d:74.6;}}'),(100670,2264,'_imagify_optimization_level','1'),(100671,2264,'_imagify_status','success'),(100672,2264,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27139;s:14:\"optimized_size\";i:22941;s:7:\"percent\";d:15.47;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:82559;s:14:\"optimized_size\";i:11818;s:7:\"percent\";d:85.69;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:60757;s:14:\"optimized_size\";i:17336;s:7:\"percent\";d:71.47;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11134;s:14:\"optimized_size\";i:3598;s:7:\"percent\";d:67.68;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:163564;s:14:\"optimized_size\";i:23230;s:7:\"percent\";d:85.8;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13848;s:14:\"optimized_size\";i:6200;s:7:\"percent\";d:55.23;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27139;s:14:\"optimized_size\";i:23730;s:7:\"percent\";d:12.56;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13848;s:14:\"optimized_size\";i:4999;s:7:\"percent\";d:63.9;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:163564;s:14:\"optimized_size\";i:36610;s:7:\"percent\";d:77.62;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11134;s:14:\"optimized_size\";i:3327;s:7:\"percent\";d:70.12;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:60757;s:14:\"optimized_size\";i:19991;s:7:\"percent\";d:67.1;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:82559;s:14:\"optimized_size\";i:15541;s:7:\"percent\";d:81.18;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:718002;s:14:\"optimized_size\";i:189321;s:7:\"percent\";d:73.63;}}'),(100673,2263,'_imagify_optimization_level','1'),(100674,2263,'_imagify_status','success'),(100675,2263,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32140;s:14:\"optimized_size\";i:16935;s:7:\"percent\";d:47.31;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13417;s:14:\"optimized_size\";i:7312;s:7:\"percent\";d:45.5;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:186385;s:14:\"optimized_size\";i:25688;s:7:\"percent\";d:86.22;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:58389;s:14:\"optimized_size\";i:11862;s:7:\"percent\";d:79.68;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12531;s:14:\"optimized_size\";i:3006;s:7:\"percent\";d:76.01;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:111188;s:14:\"optimized_size\";i:16324;s:7:\"percent\";d:85.32;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16426;s:14:\"optimized_size\";i:4548;s:7:\"percent\";d:72.31;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32140;s:14:\"optimized_size\";i:20564;s:7:\"percent\";d:36.02;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16426;s:14:\"optimized_size\";i:5055;s:7:\"percent\";d:69.23;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:111188;s:14:\"optimized_size\";i:27171;s:7:\"percent\";d:75.56;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12531;s:14:\"optimized_size\";i:3416;s:7:\"percent\";d:72.74;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:58389;s:14:\"optimized_size\";i:14980;s:7:\"percent\";d:74.34;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:186385;s:14:\"optimized_size\";i:43133;s:7:\"percent\";d:76.86;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13417;s:14:\"optimized_size\";i:6012;s:7:\"percent\";d:55.19;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:860952;s:14:\"optimized_size\";i:206006;s:7:\"percent\";d:76.07;}}'),(100676,2248,'_imagify_optimization_level','1'),(100677,2248,'_imagify_status','success'),(100678,2248,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:310901;s:14:\"optimized_size\";i:106653;s:7:\"percent\";d:65.7;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:105810;s:14:\"optimized_size\";i:26948;s:7:\"percent\";d:74.53;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:121792;s:14:\"optimized_size\";i:29278;s:7:\"percent\";d:75.96;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13775;s:14:\"optimized_size\";i:4548;s:7:\"percent\";d:66.98;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:197585;s:14:\"optimized_size\";i:45834;s:7:\"percent\";d:76.8;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24740;s:14:\"optimized_size\";i:6998;s:7:\"percent\";d:71.71;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:310901;s:14:\"optimized_size\";i:82678;s:7:\"percent\";d:73.41;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24740;s:14:\"optimized_size\";i:8234;s:7:\"percent\";d:66.72;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:197585;s:14:\"optimized_size\";i:60888;s:7:\"percent\";d:69.18;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13775;s:14:\"optimized_size\";i:5172;s:7:\"percent\";d:62.45;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:121792;s:14:\"optimized_size\";i:36997;s:7:\"percent\";d:69.62;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:105810;s:14:\"optimized_size\";i:33047;s:7:\"percent\";d:68.77;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1549206;s:14:\"optimized_size\";i:447275;s:7:\"percent\";d:71.13;}}'),(100679,2246,'_imagify_optimization_level','1'),(100680,2246,'_imagify_status','success'),(100681,2246,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24523;s:14:\"optimized_size\";i:9517;s:7:\"percent\";d:61.19;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21217;s:14:\"optimized_size\";i:6696;s:7:\"percent\";d:68.44;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24523;s:14:\"optimized_size\";i:10752;s:7:\"percent\";d:56.16;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21217;s:14:\"optimized_size\";i:6539;s:7:\"percent\";d:69.18;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:91480;s:14:\"optimized_size\";i:33504;s:7:\"percent\";d:63.38;}}'),(100682,2233,'_imagify_optimization_level','1'),(100683,2233,'_imagify_status','success'),(100684,2233,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:475264;s:14:\"optimized_size\";i:136286;s:7:\"percent\";d:71.32;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:268973;s:14:\"optimized_size\";i:17276;s:7:\"percent\";d:93.58;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:275673;s:14:\"optimized_size\";i:26100;s:7:\"percent\";d:90.53;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28679;s:14:\"optimized_size\";i:2976;s:7:\"percent\";d:89.62;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:474158;s:14:\"optimized_size\";i:39818;s:7:\"percent\";d:91.6;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:48818;s:14:\"optimized_size\";i:5750;s:7:\"percent\";d:88.22;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:475264;s:14:\"optimized_size\";i:56416;s:7:\"percent\";d:88.13;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:48818;s:14:\"optimized_size\";i:16380;s:7:\"percent\";d:66.45;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:474158;s:14:\"optimized_size\";i:141102;s:7:\"percent\";d:70.24;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28679;s:14:\"optimized_size\";i:8391;s:7:\"percent\";d:70.74;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:275673;s:14:\"optimized_size\";i:85472;s:7:\"percent\";d:69;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:268973;s:14:\"optimized_size\";i:71897;s:7:\"percent\";d:73.27;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3143130;s:14:\"optimized_size\";i:607864;s:7:\"percent\";d:80.66;}}'),(100685,2215,'_imagify_optimization_level','1'),(100686,2215,'_imagify_status','success'),(100687,2215,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:206560;s:14:\"optimized_size\";i:75548;s:7:\"percent\";d:63.43;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:223672;s:14:\"optimized_size\";i:23858;s:7:\"percent\";d:89.33;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27276;s:14:\"optimized_size\";i:4962;s:7:\"percent\";d:81.81;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:75287;s:14:\"optimized_size\";i:11096;s:7:\"percent\";d:85.26;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:206560;s:14:\"optimized_size\";i:37066;s:7:\"percent\";d:82.06;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:75287;s:14:\"optimized_size\";i:24253;s:7:\"percent\";d:67.79;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27276;s:14:\"optimized_size\";i:9031;s:7:\"percent\";d:66.89;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:223672;s:14:\"optimized_size\";i:75867;s:7:\"percent\";d:66.08;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1065590;s:14:\"optimized_size\";i:261681;s:7:\"percent\";d:75.44;}}'),(100688,2212,'_imagify_optimization_level','1'),(100689,2212,'_imagify_status','success'),(100690,2212,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:208010;s:14:\"optimized_size\";i:78192;s:7:\"percent\";d:62.41;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:81352;s:14:\"optimized_size\";i:25600;s:7:\"percent\";d:68.53;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:86513;s:14:\"optimized_size\";i:26494;s:7:\"percent\";d:69.38;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12476;s:14:\"optimized_size\";i:4966;s:7:\"percent\";d:60.2;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:137297;s:14:\"optimized_size\";i:40394;s:7:\"percent\";d:70.58;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20141;s:14:\"optimized_size\";i:7342;s:7:\"percent\";d:63.55;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:208010;s:14:\"optimized_size\";i:65276;s:7:\"percent\";d:68.62;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20141;s:14:\"optimized_size\";i:6942;s:7:\"percent\";d:65.53;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:137297;s:14:\"optimized_size\";i:44562;s:7:\"percent\";d:67.54;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12476;s:14:\"optimized_size\";i:4664;s:7:\"percent\";d:62.62;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:86513;s:14:\"optimized_size\";i:27743;s:7:\"percent\";d:67.93;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:81352;s:14:\"optimized_size\";i:26813;s:7:\"percent\";d:67.04;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1091578;s:14:\"optimized_size\";i:358988;s:7:\"percent\";d:67.11;}}'),(100691,2209,'_imagify_optimization_level','1'),(100692,2209,'_imagify_status','success'),(100693,2209,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:211120;s:14:\"optimized_size\";i:76101;s:7:\"percent\";d:63.95;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:73721;s:14:\"optimized_size\";i:24266;s:7:\"percent\";d:67.08;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:87432;s:14:\"optimized_size\";i:27360;s:7:\"percent\";d:68.71;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11260;s:14:\"optimized_size\";i:4810;s:7:\"percent\";d:57.28;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:138112;s:14:\"optimized_size\";i:41936;s:7:\"percent\";d:69.64;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19472;s:14:\"optimized_size\";i:7410;s:7:\"percent\";d:61.95;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:211120;s:14:\"optimized_size\";i:68556;s:7:\"percent\";d:67.53;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19472;s:14:\"optimized_size\";i:6659;s:7:\"percent\";d:65.8;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:138112;s:14:\"optimized_size\";i:43892;s:7:\"percent\";d:68.22;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11260;s:14:\"optimized_size\";i:4329;s:7:\"percent\";d:61.55;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:87432;s:14:\"optimized_size\";i:27166;s:7:\"percent\";d:68.93;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:73721;s:14:\"optimized_size\";i:23184;s:7:\"percent\";d:68.55;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1082234;s:14:\"optimized_size\";i:355669;s:7:\"percent\";d:67.14;}}'),(100694,2208,'_imagify_optimization_level','1'),(100695,2208,'_imagify_status','success'),(100696,2208,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:179350;s:14:\"optimized_size\";i:67818;s:7:\"percent\";d:62.19;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:91580;s:14:\"optimized_size\";i:21668;s:7:\"percent\";d:76.34;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:102787;s:14:\"optimized_size\";i:22958;s:7:\"percent\";d:77.66;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15093;s:14:\"optimized_size\";i:4432;s:7:\"percent\";d:70.64;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:165719;s:14:\"optimized_size\";i:33672;s:7:\"percent\";d:79.68;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23923;s:14:\"optimized_size\";i:6596;s:7:\"percent\";d:72.43;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:179350;s:14:\"optimized_size\";i:54480;s:7:\"percent\";d:69.62;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23923;s:14:\"optimized_size\";i:8553;s:7:\"percent\";d:64.25;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:165719;s:14:\"optimized_size\";i:52157;s:7:\"percent\";d:68.53;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15093;s:14:\"optimized_size\";i:5940;s:7:\"percent\";d:60.64;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:102787;s:14:\"optimized_size\";i:34706;s:7:\"percent\";d:66.24;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:91580;s:14:\"optimized_size\";i:35324;s:7:\"percent\";d:61.43;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1156904;s:14:\"optimized_size\";i:348304;s:7:\"percent\";d:69.89;}}'),(100697,2207,'_imagify_optimization_level','1'),(100698,2207,'_imagify_status','success'),(100699,2207,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:229433;s:14:\"optimized_size\";i:81679;s:7:\"percent\";d:64.4;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:71798;s:14:\"optimized_size\";i:16992;s:7:\"percent\";d:76.33;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:87042;s:14:\"optimized_size\";i:19260;s:7:\"percent\";d:77.87;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9306;s:14:\"optimized_size\";i:2896;s:7:\"percent\";d:68.88;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:142088;s:14:\"optimized_size\";i:30634;s:7:\"percent\";d:78.44;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17099;s:14:\"optimized_size\";i:4570;s:7:\"percent\";d:73.27;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:229433;s:14:\"optimized_size\";i:56266;s:7:\"percent\";d:75.48;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17099;s:14:\"optimized_size\";i:6405;s:7:\"percent\";d:62.54;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:142088;s:14:\"optimized_size\";i:45675;s:7:\"percent\";d:67.85;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9306;s:14:\"optimized_size\";i:4019;s:7:\"percent\";d:56.81;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:87042;s:14:\"optimized_size\";i:27548;s:7:\"percent\";d:68.35;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:71798;s:14:\"optimized_size\";i:23114;s:7:\"percent\";d:67.81;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1113532;s:14:\"optimized_size\";i:319058;s:7:\"percent\";d:71.35;}}'),(100700,2206,'_imagify_optimization_level','1'),(100701,2206,'_imagify_status','success'),(100702,2206,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:211641;s:14:\"optimized_size\";i:81227;s:7:\"percent\";d:61.62;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:208990;s:14:\"optimized_size\";i:10626;s:7:\"percent\";d:94.92;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:260147;s:14:\"optimized_size\";i:11300;s:7:\"percent\";d:95.66;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22538;s:14:\"optimized_size\";i:1966;s:7:\"percent\";d:91.28;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:469633;s:14:\"optimized_size\";i:16100;s:7:\"percent\";d:96.57;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46717;s:14:\"optimized_size\";i:3016;s:7:\"percent\";d:93.54;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:211641;s:14:\"optimized_size\";i:28312;s:7:\"percent\";d:86.62;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46717;s:14:\"optimized_size\";i:14281;s:7:\"percent\";d:69.43;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:469633;s:14:\"optimized_size\";i:155122;s:7:\"percent\";d:66.97;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22538;s:14:\"optimized_size\";i:7868;s:7:\"percent\";d:65.09;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:260147;s:14:\"optimized_size\";i:84837;s:7:\"percent\";d:67.39;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:208990;s:14:\"optimized_size\";i:72590;s:7:\"percent\";d:65.27;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2439332;s:14:\"optimized_size\";i:487245;s:7:\"percent\";d:80.03;}}'),(100703,2203,'_imagify_optimization_level','1'),(100704,2203,'_imagify_status','success'),(100705,2203,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:282892;s:14:\"optimized_size\";i:83854;s:7:\"percent\";d:70.36;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:180049;s:14:\"optimized_size\";i:13524;s:7:\"percent\";d:92.49;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:179575;s:14:\"optimized_size\";i:14064;s:7:\"percent\";d:92.17;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18130;s:14:\"optimized_size\";i:2618;s:7:\"percent\";d:85.56;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:232955;s:14:\"optimized_size\";i:21518;s:7:\"percent\";d:90.76;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28012;s:14:\"optimized_size\";i:3630;s:7:\"percent\";d:87.04;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:282892;s:14:\"optimized_size\";i:43134;s:7:\"percent\";d:84.75;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28012;s:14:\"optimized_size\";i:11701;s:7:\"percent\";d:58.23;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:232955;s:14:\"optimized_size\";i:96316;s:7:\"percent\";d:58.65;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18130;s:14:\"optimized_size\";i:7820;s:7:\"percent\";d:56.87;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:179575;s:14:\"optimized_size\";i:63480;s:7:\"percent\";d:64.65;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:180049;s:14:\"optimized_size\";i:54204;s:7:\"percent\";d:69.89;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1843226;s:14:\"optimized_size\";i:415863;s:7:\"percent\";d:77.44;}}'),(100706,2202,'_imagify_optimization_level','1'),(100707,2202,'_imagify_status','success'),(100708,2202,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:241671;s:14:\"optimized_size\";i:145205;s:7:\"percent\";d:39.92;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:232007;s:14:\"optimized_size\";i:9782;s:7:\"percent\";d:95.78;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:297809;s:14:\"optimized_size\";i:11734;s:7:\"percent\";d:96.06;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15622;s:14:\"optimized_size\";i:1372;s:7:\"percent\";d:91.22;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:445107;s:14:\"optimized_size\";i:19384;s:7:\"percent\";d:95.65;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:43689;s:14:\"optimized_size\";i:2324;s:7:\"percent\";d:94.68;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:241671;s:14:\"optimized_size\";i:39424;s:7:\"percent\";d:83.69;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:43689;s:14:\"optimized_size\";i:12549;s:7:\"percent\";d:71.28;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:445107;s:14:\"optimized_size\";i:134732;s:7:\"percent\";d:69.73;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15622;s:14:\"optimized_size\";i:5907;s:7:\"percent\";d:62.19;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:297809;s:14:\"optimized_size\";i:81735;s:7:\"percent\";d:72.55;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:232007;s:14:\"optimized_size\";i:68567;s:7:\"percent\";d:70.45;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2551810;s:14:\"optimized_size\";i:532715;s:7:\"percent\";d:79.12;}}'),(100709,2195,'_imagify_optimization_level','1'),(100710,2195,'_imagify_status','success'),(100711,2195,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:736212;s:14:\"optimized_size\";i:170353;s:7:\"percent\";d:76.86;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:276965;s:14:\"optimized_size\";i:18144;s:7:\"percent\";d:93.45;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:326124;s:14:\"optimized_size\";i:20196;s:7:\"percent\";d:93.81;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34991;s:14:\"optimized_size\";i:4744;s:7:\"percent\";d:86.44;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:554847;s:14:\"optimized_size\";i:27010;s:7:\"percent\";d:95.13;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61839;s:14:\"optimized_size\";i:6938;s:7:\"percent\";d:88.78;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:736212;s:14:\"optimized_size\";i:34196;s:7:\"percent\";d:95.36;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61839;s:14:\"optimized_size\";i:14786;s:7:\"percent\";d:76.09;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:554847;s:14:\"optimized_size\";i:135707;s:7:\"percent\";d:75.54;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34991;s:14:\"optimized_size\";i:8514;s:7:\"percent\";d:75.67;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:326124;s:14:\"optimized_size\";i:75736;s:7:\"percent\";d:76.78;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:276965;s:14:\"optimized_size\";i:67379;s:7:\"percent\";d:75.67;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3981956;s:14:\"optimized_size\";i:583703;s:7:\"percent\";d:85.34;}}'),(100712,2193,'_imagify_optimization_level','1'),(100713,2193,'_imagify_status','success'),(100714,2193,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:735302;s:14:\"optimized_size\";i:180118;s:7:\"percent\";d:75.5;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:271835;s:14:\"optimized_size\";i:15280;s:7:\"percent\";d:94.38;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:320047;s:14:\"optimized_size\";i:18946;s:7:\"percent\";d:94.08;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32993;s:14:\"optimized_size\";i:3948;s:7:\"percent\";d:88.03;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:549400;s:14:\"optimized_size\";i:25238;s:7:\"percent\";d:95.41;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:60112;s:14:\"optimized_size\";i:6016;s:7:\"percent\";d:89.99;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:735302;s:14:\"optimized_size\";i:32148;s:7:\"percent\";d:95.63;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:60112;s:14:\"optimized_size\";i:13598;s:7:\"percent\";d:77.38;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:549400;s:14:\"optimized_size\";i:130310;s:7:\"percent\";d:76.28;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32993;s:14:\"optimized_size\";i:7689;s:7:\"percent\";d:76.7;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:320047;s:14:\"optimized_size\";i:74309;s:7:\"percent\";d:76.78;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:271835;s:14:\"optimized_size\";i:62458;s:7:\"percent\";d:77.02;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3939378;s:14:\"optimized_size\";i:570058;s:7:\"percent\";d:85.53;}}'),(100715,2184,'_imagify_optimization_level','1'),(100716,2184,'_imagify_status','success'),(100717,2184,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:428477;s:14:\"optimized_size\";i:135407;s:7:\"percent\";d:68.4;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:253053;s:14:\"optimized_size\";i:18456;s:7:\"percent\";d:92.71;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:275025;s:14:\"optimized_size\";i:32434;s:7:\"percent\";d:88.21;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26677;s:14:\"optimized_size\";i:3528;s:7:\"percent\";d:86.78;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:469006;s:14:\"optimized_size\";i:48878;s:7:\"percent\";d:89.58;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:48083;s:14:\"optimized_size\";i:6666;s:7:\"percent\";d:86.14;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:428477;s:14:\"optimized_size\";i:68888;s:7:\"percent\";d:83.92;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:48083;s:14:\"optimized_size\";i:15238;s:7:\"percent\";d:68.31;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:469006;s:14:\"optimized_size\";i:131558;s:7:\"percent\";d:71.95;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26677;s:14:\"optimized_size\";i:7552;s:7:\"percent\";d:71.69;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:275025;s:14:\"optimized_size\";i:79421;s:7:\"percent\";d:71.12;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:253053;s:14:\"optimized_size\";i:63668;s:7:\"percent\";d:74.84;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3000642;s:14:\"optimized_size\";i:611694;s:7:\"percent\";d:79.61;}}'),(100718,2173,'_imagify_optimization_level','1'),(100719,2173,'_imagify_status','success'),(100720,2173,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:637405;s:14:\"optimized_size\";i:216323;s:7:\"percent\";d:66.06;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:211428;s:14:\"optimized_size\";i:12302;s:7:\"percent\";d:94.18;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:250208;s:14:\"optimized_size\";i:16804;s:7:\"percent\";d:93.28;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20612;s:14:\"optimized_size\";i:2786;s:7:\"percent\";d:86.48;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:442303;s:14:\"optimized_size\";i:22672;s:7:\"percent\";d:94.87;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39469;s:14:\"optimized_size\";i:4888;s:7:\"percent\";d:87.62;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:637405;s:14:\"optimized_size\";i:29750;s:7:\"percent\";d:95.33;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39469;s:14:\"optimized_size\";i:15488;s:7:\"percent\";d:60.76;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:442303;s:14:\"optimized_size\";i:151701;s:7:\"percent\";d:65.7;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20612;s:14:\"optimized_size\";i:8499;s:7:\"percent\";d:58.77;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:250208;s:14:\"optimized_size\";i:92807;s:7:\"percent\";d:62.91;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:211428;s:14:\"optimized_size\";i:72737;s:7:\"percent\";d:65.6;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3202850;s:14:\"optimized_size\";i:646757;s:7:\"percent\";d:79.81;}}'),(100721,2170,'_imagify_optimization_level','1'),(100722,2170,'_imagify_status','success'),(100723,2170,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:73631;s:14:\"optimized_size\";i:20353;s:7:\"percent\";d:72.36;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:139915;s:14:\"optimized_size\";i:3686;s:7:\"percent\";d:97.37;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:51977;s:14:\"optimized_size\";i:6814;s:7:\"percent\";d:86.89;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15115;s:14:\"optimized_size\";i:1258;s:7:\"percent\";d:91.68;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:103875;s:14:\"optimized_size\";i:8766;s:7:\"percent\";d:91.56;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10745;s:14:\"optimized_size\";i:2660;s:7:\"percent\";d:75.24;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:73631;s:14:\"optimized_size\";i:10972;s:7:\"percent\";d:85.1;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10745;s:14:\"optimized_size\";i:3065;s:7:\"percent\";d:71.48;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:103875;s:14:\"optimized_size\";i:24469;s:7:\"percent\";d:76.44;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15115;s:14:\"optimized_size\";i:2640;s:7:\"percent\";d:82.53;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:51977;s:14:\"optimized_size\";i:13901;s:7:\"percent\";d:73.26;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:139915;s:14:\"optimized_size\";i:13466;s:7:\"percent\";d:90.38;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:790516;s:14:\"optimized_size\";i:112050;s:7:\"percent\";d:85.83;}}'),(100724,2154,'_imagify_optimization_level','1'),(100725,2154,'_imagify_status','success'),(100726,2154,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46686;s:14:\"optimized_size\";i:13385;s:7:\"percent\";d:71.33;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34748;s:14:\"optimized_size\";i:7656;s:7:\"percent\";d:77.97;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13206;s:14:\"optimized_size\";i:1394;s:7:\"percent\";d:89.44;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23642;s:14:\"optimized_size\";i:3452;s:7:\"percent\";d:85.4;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46686;s:14:\"optimized_size\";i:11246;s:7:\"percent\";d:75.91;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23642;s:14:\"optimized_size\";i:6963;s:7:\"percent\";d:70.55;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13206;s:14:\"optimized_size\";i:4506;s:7:\"percent\";d:65.88;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34748;s:14:\"optimized_size\";i:8390;s:7:\"percent\";d:75.85;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:236564;s:14:\"optimized_size\";i:56992;s:7:\"percent\";d:75.91;}}'),(100727,2140,'_imagify_optimization_level','1'),(100728,2140,'_imagify_status','success'),(100729,2140,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39211;s:14:\"optimized_size\";i:33431;s:7:\"percent\";d:14.74;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:171442;s:14:\"optimized_size\";i:15284;s:7:\"percent\";d:91.09;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:251231;s:14:\"optimized_size\";i:24278;s:7:\"percent\";d:90.34;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19354;s:14:\"optimized_size\";i:3028;s:7:\"percent\";d:84.35;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:66328;s:14:\"optimized_size\";i:7656;s:7:\"percent\";d:88.46;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39211;s:14:\"optimized_size\";i:26982;s:7:\"percent\";d:31.19;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:66328;s:14:\"optimized_size\";i:15528;s:7:\"percent\";d:76.59;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19354;s:14:\"optimized_size\";i:4767;s:7:\"percent\";d:75.37;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:251231;s:14:\"optimized_size\";i:85721;s:7:\"percent\";d:65.88;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:171442;s:14:\"optimized_size\";i:38440;s:7:\"percent\";d:77.58;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1095132;s:14:\"optimized_size\";i:255115;s:7:\"percent\";d:76.7;}}'),(100730,2138,'_imagify_optimization_level','1'),(100731,2138,'_imagify_status','success'),(100732,2138,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:60901;s:14:\"optimized_size\";i:36987;s:7:\"percent\";d:39.27;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:183321;s:14:\"optimized_size\";i:15018;s:7:\"percent\";d:91.81;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:276045;s:14:\"optimized_size\";i:23992;s:7:\"percent\";d:91.31;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20217;s:14:\"optimized_size\";i:2944;s:7:\"percent\";d:85.44;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:71243;s:14:\"optimized_size\";i:7488;s:7:\"percent\";d:89.49;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:60901;s:14:\"optimized_size\";i:26706;s:7:\"percent\";d:56.15;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:71243;s:14:\"optimized_size\";i:19629;s:7:\"percent\";d:72.45;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20217;s:14:\"optimized_size\";i:6611;s:7:\"percent\";d:67.3;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:276045;s:14:\"optimized_size\";i:97338;s:7:\"percent\";d:64.74;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:183321;s:14:\"optimized_size\";i:54966;s:7:\"percent\";d:70.02;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1223454;s:14:\"optimized_size\";i:291679;s:7:\"percent\";d:76.16;}}'),(100733,2130,'_imagify_optimization_level','1'),(100734,2130,'_imagify_status','success'),(100735,2130,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:223503;s:14:\"optimized_size\";i:77478;s:7:\"percent\";d:65.33;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:183202;s:14:\"optimized_size\";i:12988;s:7:\"percent\";d:92.91;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12441;s:14:\"optimized_size\";i:3120;s:7:\"percent\";d:74.92;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36403;s:14:\"optimized_size\";i:6196;s:7:\"percent\";d:82.98;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:223503;s:14:\"optimized_size\";i:19598;s:7:\"percent\";d:91.23;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36403;s:14:\"optimized_size\";i:15065;s:7:\"percent\";d:58.62;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12441;s:14:\"optimized_size\";i:5152;s:7:\"percent\";d:58.59;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:183202;s:14:\"optimized_size\";i:62351;s:7:\"percent\";d:65.97;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:911098;s:14:\"optimized_size\";i:201948;s:7:\"percent\";d:77.83;}}'),(100736,2128,'_imagify_optimization_level','1'),(100737,2128,'_imagify_status','success'),(100738,2128,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:165119;s:14:\"optimized_size\";i:101026;s:7:\"percent\";d:38.82;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36666;s:14:\"optimized_size\";i:12302;s:7:\"percent\";d:66.45;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:89438;s:14:\"optimized_size\";i:31106;s:7:\"percent\";d:65.22;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31338;s:14:\"optimized_size\";i:15110;s:7:\"percent\";d:51.78;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6197;s:14:\"optimized_size\";i:3342;s:7:\"percent\";d:46.07;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46748;s:14:\"optimized_size\";i:20686;s:7:\"percent\";d:55.75;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7316;s:14:\"optimized_size\";i:4388;s:7:\"percent\";d:40.02;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:165119;s:14:\"optimized_size\";i:45104;s:7:\"percent\";d:72.68;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7316;s:14:\"optimized_size\";i:5631;s:7:\"percent\";d:23.03;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46748;s:14:\"optimized_size\";i:30998;s:7:\"percent\";d:33.69;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6197;s:14:\"optimized_size\";i:4666;s:7:\"percent\";d:24.71;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31338;s:14:\"optimized_size\";i:23159;s:7:\"percent\";d:26.1;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:89438;s:14:\"optimized_size\";i:51117;s:7:\"percent\";d:42.85;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36666;s:14:\"optimized_size\";i:21198;s:7:\"percent\";d:42.19;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:765644;s:14:\"optimized_size\";i:369833;s:7:\"percent\";d:51.7;}}'),(100739,2104,'_imagify_optimization_level','1'),(100740,2104,'_imagify_status','already_optimized'),(100741,2104,'_imagify_data','a:2:{s:5:\"sizes\";a:9:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:38741;s:14:\"optimized_size\";i:13838;s:7:\"percent\";d:64.28;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:147994;s:14:\"optimized_size\";i:46452;s:7:\"percent\";d:68.61;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:93958;s:14:\"optimized_size\";i:35206;s:7:\"percent\";d:62.53;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32682;s:14:\"optimized_size\";i:16118;s:7:\"percent\";d:50.68;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6109;s:14:\"optimized_size\";i:3540;s:7:\"percent\";d:42.05;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52067;s:14:\"optimized_size\";i:22214;s:7:\"percent\";d:57.34;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8028;s:14:\"optimized_size\";i:4980;s:7:\"percent\";d:37.97;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:163935;s:14:\"optimized_size\";i:49984;s:7:\"percent\";d:69.51;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:543514;s:14:\"optimized_size\";i:192332;s:7:\"percent\";d:64.61;}}'),(100742,2093,'_imagify_optimization_level','1'),(100743,2093,'_imagify_status','already_optimized'),(100744,2093,'_imagify_data','a:2:{s:5:\"sizes\";a:7:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23784;s:14:\"optimized_size\";i:10836;s:7:\"percent\";d:54.44;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32140;s:14:\"optimized_size\";i:15026;s:7:\"percent\";d:53.25;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4840;s:14:\"optimized_size\";i:2678;s:7:\"percent\";d:44.67;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:47477;s:14:\"optimized_size\";i:19516;s:7:\"percent\";d:58.89;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8559;s:14:\"optimized_size\";i:4670;s:7:\"percent\";d:45.44;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:54129;s:14:\"optimized_size\";i:28576;s:7:\"percent\";d:47.21;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:170929;s:14:\"optimized_size\";i:81302;s:7:\"percent\";d:52.44;}}'),(100745,2089,'_imagify_optimization_level','1'),(100746,2089,'_imagify_status','success'),(100747,2089,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14021;s:14:\"optimized_size\";i:3197;s:7:\"percent\";d:77.2;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3965;s:14:\"optimized_size\";i:1244;s:7:\"percent\";d:68.63;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5222;s:14:\"optimized_size\";i:1558;s:7:\"percent\";d:70.16;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14021;s:14:\"optimized_size\";i:2312;s:7:\"percent\";d:83.51;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5222;s:14:\"optimized_size\";i:2175;s:7:\"percent\";d:58.35;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3965;s:14:\"optimized_size\";i:2268;s:7:\"percent\";d:42.8;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:46416;s:14:\"optimized_size\";i:12754;s:7:\"percent\";d:72.52;}}'),(100748,2076,'_imagify_optimization_level','1'),(100749,2076,'_imagify_status','success'),(100750,2076,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:182189;s:14:\"optimized_size\";i:36724;s:7:\"percent\";d:79.84;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:45007;s:14:\"optimized_size\";i:10924;s:7:\"percent\";d:75.73;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:818826;s:14:\"optimized_size\";i:39462;s:7:\"percent\";d:95.18;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:507819;s:14:\"optimized_size\";i:28420;s:7:\"percent\";d:94.4;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:141999;s:14:\"optimized_size\";i:11458;s:7:\"percent\";d:91.93;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8428;s:14:\"optimized_size\";i:1800;s:7:\"percent\";d:78.64;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:226158;s:14:\"optimized_size\";i:16826;s:7:\"percent\";d:92.56;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21577;s:14:\"optimized_size\";i:2728;s:7:\"percent\";d:87.36;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:182189;s:14:\"optimized_size\";i:47504;s:7:\"percent\";d:73.93;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21577;s:14:\"optimized_size\";i:8214;s:7:\"percent\";d:61.93;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:226158;s:14:\"optimized_size\";i:91634;s:7:\"percent\";d:59.48;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8428;s:14:\"optimized_size\";i:2390;s:7:\"percent\";d:71.64;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:141999;s:14:\"optimized_size\";i:54937;s:7:\"percent\";d:61.31;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:507819;s:14:\"optimized_size\";i:200917;s:7:\"percent\";d:60.44;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:818826;s:14:\"optimized_size\";i:324752;s:7:\"percent\";d:60.34;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:45007;s:14:\"optimized_size\";i:11102;s:7:\"percent\";d:75.33;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3904006;s:14:\"optimized_size\";i:889792;s:7:\"percent\";d:77.21;}}'),(100751,2075,'_imagify_optimization_level','1'),(100752,2075,'_imagify_status','success'),(100753,2075,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:119280;s:14:\"optimized_size\";i:25514;s:7:\"percent\";d:78.61;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:139423;s:14:\"optimized_size\";i:14300;s:7:\"percent\";d:89.74;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:510386;s:14:\"optimized_size\";i:26988;s:7:\"percent\";d:94.71;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:307716;s:14:\"optimized_size\";i:19562;s:7:\"percent\";d:93.64;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:88688;s:14:\"optimized_size\";i:7812;s:7:\"percent\";d:91.19;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15835;s:14:\"optimized_size\";i:3002;s:7:\"percent\";d:81.04;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:142865;s:14:\"optimized_size\";i:11752;s:7:\"percent\";d:91.77;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13272;s:14:\"optimized_size\";i:1990;s:7:\"percent\";d:85.01;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:119280;s:14:\"optimized_size\";i:32034;s:7:\"percent\";d:73.14;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13272;s:14:\"optimized_size\";i:5122;s:7:\"percent\";d:61.41;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:142865;s:14:\"optimized_size\";i:55020;s:7:\"percent\";d:61.49;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15835;s:14:\"optimized_size\";i:5021;s:7:\"percent\";d:68.29;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:88688;s:14:\"optimized_size\";i:33497;s:7:\"percent\";d:62.23;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:307716;s:14:\"optimized_size\";i:118632;s:7:\"percent\";d:61.45;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:510386;s:14:\"optimized_size\";i:203965;s:7:\"percent\";d:60.04;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:139423;s:14:\"optimized_size\";i:48126;s:7:\"percent\";d:65.48;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2674930;s:14:\"optimized_size\";i:612337;s:7:\"percent\";d:77.11;}}'),(100754,2023,'_imagify_optimization_level','1'),(100755,2023,'_imagify_status','success'),(100756,2023,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34942;s:14:\"optimized_size\";i:8769;s:7:\"percent\";d:74.9;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7272;s:14:\"optimized_size\";i:1988;s:7:\"percent\";d:72.66;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:89021;s:14:\"optimized_size\";i:3782;s:7:\"percent\";d:95.75;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17015;s:14:\"optimized_size\";i:800;s:7:\"percent\";d:95.3;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:136151;s:14:\"optimized_size\";i:5090;s:7:\"percent\";d:96.26;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14153;s:14:\"optimized_size\";i:972;s:7:\"percent\";d:93.13;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34942;s:14:\"optimized_size\";i:7698;s:7:\"percent\";d:77.97;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14153;s:14:\"optimized_size\";i:6261;s:7:\"percent\";d:55.76;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:136151;s:14:\"optimized_size\";i:62084;s:7:\"percent\";d:54.4;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17015;s:14:\"optimized_size\";i:4531;s:7:\"percent\";d:73.37;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:89021;s:14:\"optimized_size\";i:38101;s:7:\"percent\";d:57.2;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7272;s:14:\"optimized_size\";i:1855;s:7:\"percent\";d:74.49;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:597108;s:14:\"optimized_size\";i:141931;s:7:\"percent\";d:76.23;}}'),(100757,1969,'_imagify_optimization_level','1'),(100758,1969,'_imagify_status','success'),(100759,1969,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:276630;s:14:\"optimized_size\";i:80324;s:7:\"percent\";d:70.96;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:89070;s:14:\"optimized_size\";i:25828;s:7:\"percent\";d:71;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:350007;s:14:\"optimized_size\";i:74920;s:7:\"percent\";d:78.59;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:228589;s:14:\"optimized_size\";i:56348;s:7:\"percent\";d:75.35;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:85351;s:14:\"optimized_size\";i:24108;s:7:\"percent\";d:71.75;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15420;s:14:\"optimized_size\";i:4690;s:7:\"percent\";d:69.58;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:126166;s:14:\"optimized_size\";i:35102;s:7:\"percent\";d:72.18;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21350;s:14:\"optimized_size\";i:5758;s:7:\"percent\";d:73.03;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:276630;s:14:\"optimized_size\";i:93116;s:7:\"percent\";d:66.34;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21350;s:14:\"optimized_size\";i:6171;s:7:\"percent\";d:71.1;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:126166;s:14:\"optimized_size\";i:35951;s:7:\"percent\";d:71.51;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15420;s:14:\"optimized_size\";i:4314;s:7:\"percent\";d:72.02;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:85351;s:14:\"optimized_size\";i:23229;s:7:\"percent\";d:72.78;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:228589;s:14:\"optimized_size\";i:61764;s:7:\"percent\";d:72.98;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:350007;s:14:\"optimized_size\";i:96935;s:7:\"percent\";d:72.3;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:89070;s:14:\"optimized_size\";i:23955;s:7:\"percent\";d:73.11;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2385166;s:14:\"optimized_size\";i:652513;s:7:\"percent\";d:72.64;}}'),(100760,1968,'_imagify_optimization_level','1'),(100761,1968,'_imagify_status','success'),(100762,1968,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:342076;s:14:\"optimized_size\";i:84704;s:7:\"percent\";d:75.24;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52323;s:14:\"optimized_size\";i:13528;s:7:\"percent\";d:74.15;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:381401;s:14:\"optimized_size\";i:70964;s:7:\"percent\";d:81.39;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:247408;s:14:\"optimized_size\";i:53746;s:7:\"percent\";d:78.28;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:93233;s:14:\"optimized_size\";i:23112;s:7:\"percent\";d:75.21;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8847;s:14:\"optimized_size\";i:2196;s:7:\"percent\";d:75.18;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:141448;s:14:\"optimized_size\";i:33258;s:7:\"percent\";d:76.49;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23765;s:14:\"optimized_size\";i:5670;s:7:\"percent\";d:76.14;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:342076;s:14:\"optimized_size\";i:89136;s:7:\"percent\";d:73.94;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23765;s:14:\"optimized_size\";i:6101;s:7:\"percent\";d:74.33;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:141448;s:14:\"optimized_size\";i:36030;s:7:\"percent\";d:74.53;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8847;s:14:\"optimized_size\";i:2382;s:7:\"percent\";d:73.08;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:93233;s:14:\"optimized_size\";i:25431;s:7:\"percent\";d:72.72;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:247408;s:14:\"optimized_size\";i:66215;s:7:\"percent\";d:73.24;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:381401;s:14:\"optimized_size\";i:98625;s:7:\"percent\";d:74.14;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52323;s:14:\"optimized_size\";i:14597;s:7:\"percent\";d:72.1;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2581002;s:14:\"optimized_size\";i:625695;s:7:\"percent\";d:75.76;}}'),(100763,1967,'_imagify_optimization_level','1'),(100764,1967,'_imagify_status','success'),(100765,1967,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39581;s:14:\"optimized_size\";i:9472;s:7:\"percent\";d:76.07;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1099;s:14:\"optimized_size\";i:364;s:7:\"percent\";d:66.88;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:45153;s:14:\"optimized_size\";i:7818;s:7:\"percent\";d:82.69;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29182;s:14:\"optimized_size\";i:5936;s:7:\"percent\";d:79.66;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10070;s:14:\"optimized_size\";i:2682;s:7:\"percent\";d:73.37;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:986;s:14:\"optimized_size\";i:154;s:7:\"percent\";d:84.38;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14098;s:14:\"optimized_size\";i:3560;s:7:\"percent\";d:74.75;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2606;s:14:\"optimized_size\";i:730;s:7:\"percent\";d:71.99;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39581;s:14:\"optimized_size\";i:9974;s:7:\"percent\";d:74.8;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2606;s:14:\"optimized_size\";i:799;s:7:\"percent\";d:69.34;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14098;s:14:\"optimized_size\";i:3815;s:7:\"percent\";d:72.94;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:986;s:14:\"optimized_size\";i:195;s:7:\"percent\";d:80.22;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10070;s:14:\"optimized_size\";i:2572;s:7:\"percent\";d:74.46;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29182;s:14:\"optimized_size\";i:5803;s:7:\"percent\";d:80.11;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:45153;s:14:\"optimized_size\";i:7754;s:7:\"percent\";d:82.83;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1099;s:14:\"optimized_size\";i:169;s:7:\"percent\";d:84.62;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:285550;s:14:\"optimized_size\";i:61797;s:7:\"percent\";d:78.36;}}'),(100766,1966,'_imagify_optimization_level','1'),(100767,1966,'_imagify_status','success'),(100768,1966,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:273446;s:14:\"optimized_size\";i:68859;s:7:\"percent\";d:74.82;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35059;s:14:\"optimized_size\";i:8854;s:7:\"percent\";d:74.75;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:302876;s:14:\"optimized_size\";i:55160;s:7:\"percent\";d:81.79;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:194186;s:14:\"optimized_size\";i:40852;s:7:\"percent\";d:78.96;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:73236;s:14:\"optimized_size\";i:17574;s:7:\"percent\";d:76;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6137;s:14:\"optimized_size\";i:1434;s:7:\"percent\";d:76.63;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:110146;s:14:\"optimized_size\";i:25588;s:7:\"percent\";d:76.77;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18307;s:14:\"optimized_size\";i:4492;s:7:\"percent\";d:75.46;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:273446;s:14:\"optimized_size\";i:70142;s:7:\"percent\";d:74.35;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18307;s:14:\"optimized_size\";i:4972;s:7:\"percent\";d:72.84;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:110146;s:14:\"optimized_size\";i:30585;s:7:\"percent\";d:72.23;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6137;s:14:\"optimized_size\";i:1787;s:7:\"percent\";d:70.88;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:73236;s:14:\"optimized_size\";i:18595;s:7:\"percent\";d:74.61;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:194186;s:14:\"optimized_size\";i:49425;s:7:\"percent\";d:74.55;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:302876;s:14:\"optimized_size\";i:79335;s:7:\"percent\";d:73.81;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35059;s:14:\"optimized_size\";i:9449;s:7:\"percent\";d:73.05;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2026786;s:14:\"optimized_size\";i:487103;s:7:\"percent\";d:75.97;}}'),(100769,1965,'_imagify_optimization_level','1'),(100770,1965,'_imagify_status','success'),(100771,1965,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:224205;s:14:\"optimized_size\";i:71377;s:7:\"percent\";d:68.16;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:65869;s:14:\"optimized_size\";i:17852;s:7:\"percent\";d:72.9;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:268943;s:14:\"optimized_size\";i:57808;s:7:\"percent\";d:78.51;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:180123;s:14:\"optimized_size\";i:42998;s:7:\"percent\";d:76.13;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:66422;s:14:\"optimized_size\";i:18382;s:7:\"percent\";d:72.33;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11955;s:14:\"optimized_size\";i:3718;s:7:\"percent\";d:68.9;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:100526;s:14:\"optimized_size\";i:26686;s:7:\"percent\";d:73.45;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16643;s:14:\"optimized_size\";i:4564;s:7:\"percent\";d:72.58;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:224205;s:14:\"optimized_size\";i:73452;s:7:\"percent\";d:67.24;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16643;s:14:\"optimized_size\";i:4792;s:7:\"percent\";d:71.21;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:100526;s:14:\"optimized_size\";i:28343;s:7:\"percent\";d:71.81;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11955;s:14:\"optimized_size\";i:3396;s:7:\"percent\";d:71.59;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:66422;s:14:\"optimized_size\";i:19210;s:7:\"percent\";d:71.08;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:180123;s:14:\"optimized_size\";i:49141;s:7:\"percent\";d:72.72;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:268943;s:14:\"optimized_size\";i:70764;s:7:\"percent\";d:73.69;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:65869;s:14:\"optimized_size\";i:17968;s:7:\"percent\";d:72.72;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1869372;s:14:\"optimized_size\";i:510451;s:7:\"percent\";d:72.69;}}'),(100772,1964,'_imagify_optimization_level','1'),(100773,1964,'_imagify_status','success'),(100774,1964,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:74089;s:14:\"optimized_size\";i:19885;s:7:\"percent\";d:73.16;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3898;s:14:\"optimized_size\";i:1000;s:7:\"percent\";d:74.35;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:77194;s:14:\"optimized_size\";i:13384;s:7:\"percent\";d:82.66;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:53061;s:14:\"optimized_size\";i:10234;s:7:\"percent\";d:80.71;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19279;s:14:\"optimized_size\";i:4624;s:7:\"percent\";d:76.02;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1393;s:14:\"optimized_size\";i:254;s:7:\"percent\";d:81.77;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28160;s:14:\"optimized_size\";i:6296;s:7:\"percent\";d:77.64;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5037;s:14:\"optimized_size\";i:1232;s:7:\"percent\";d:75.54;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:74089;s:14:\"optimized_size\";i:16960;s:7:\"percent\";d:77.11;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5037;s:14:\"optimized_size\";i:1388;s:7:\"percent\";d:72.44;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28160;s:14:\"optimized_size\";i:7243;s:7:\"percent\";d:74.28;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1393;s:14:\"optimized_size\";i:316;s:7:\"percent\";d:77.32;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19279;s:14:\"optimized_size\";i:5140;s:7:\"percent\";d:73.34;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:53061;s:14:\"optimized_size\";i:12444;s:7:\"percent\";d:76.55;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:77194;s:14:\"optimized_size\";i:19184;s:7:\"percent\";d:75.15;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3898;s:14:\"optimized_size\";i:789;s:7:\"percent\";d:79.76;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:524222;s:14:\"optimized_size\";i:120373;s:7:\"percent\";d:77.04;}}'),(100775,1963,'_imagify_optimization_level','1'),(100776,1963,'_imagify_status','success'),(100777,1963,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:58430;s:14:\"optimized_size\";i:16083;s:7:\"percent\";d:72.47;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5667;s:14:\"optimized_size\";i:1546;s:7:\"percent\";d:72.72;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:63660;s:14:\"optimized_size\";i:12414;s:7:\"percent\";d:80.5;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:43290;s:14:\"optimized_size\";i:9286;s:7:\"percent\";d:78.55;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15830;s:14:\"optimized_size\";i:4046;s:7:\"percent\";d:74.44;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2156;s:14:\"optimized_size\";i:452;s:7:\"percent\";d:79.04;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23740;s:14:\"optimized_size\";i:6048;s:7:\"percent\";d:74.52;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4016;s:14:\"optimized_size\";i:1202;s:7:\"percent\";d:70.07;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:58430;s:14:\"optimized_size\";i:15750;s:7:\"percent\";d:73.04;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4016;s:14:\"optimized_size\";i:1164;s:7:\"percent\";d:71.02;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23740;s:14:\"optimized_size\";i:5869;s:7:\"percent\";d:75.28;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2156;s:14:\"optimized_size\";i:450;s:7:\"percent\";d:79.13;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15830;s:14:\"optimized_size\";i:4023;s:7:\"percent\";d:74.59;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:43290;s:14:\"optimized_size\";i:10739;s:7:\"percent\";d:75.19;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:63660;s:14:\"optimized_size\";i:17441;s:7:\"percent\";d:72.6;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5667;s:14:\"optimized_size\";i:1424;s:7:\"percent\";d:74.87;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:433578;s:14:\"optimized_size\";i:107937;s:7:\"percent\";d:75.11;}}'),(100778,1962,'_imagify_optimization_level','1'),(100779,1962,'_imagify_status','success'),(100780,1962,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:255494;s:14:\"optimized_size\";i:72561;s:7:\"percent\";d:71.6;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:72230;s:14:\"optimized_size\";i:20804;s:7:\"percent\";d:71.2;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:311884;s:14:\"optimized_size\";i:66126;s:7:\"percent\";d:78.8;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:200757;s:14:\"optimized_size\";i:49566;s:7:\"percent\";d:75.31;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:76249;s:14:\"optimized_size\";i:21434;s:7:\"percent\";d:71.89;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12911;s:14:\"optimized_size\";i:4052;s:7:\"percent\";d:68.62;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:113597;s:14:\"optimized_size\";i:30836;s:7:\"percent\";d:72.85;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19095;s:14:\"optimized_size\";i:4948;s:7:\"percent\";d:74.09;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:255494;s:14:\"optimized_size\";i:84316;s:7:\"percent\";d:67;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19095;s:14:\"optimized_size\";i:5329;s:7:\"percent\";d:72.09;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:113597;s:14:\"optimized_size\";i:32636;s:7:\"percent\";d:71.27;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12911;s:14:\"optimized_size\";i:3698;s:7:\"percent\";d:71.36;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:76249;s:14:\"optimized_size\";i:22176;s:7:\"percent\";d:70.92;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:200757;s:14:\"optimized_size\";i:59888;s:7:\"percent\";d:70.17;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:311884;s:14:\"optimized_size\";i:90208;s:7:\"percent\";d:71.08;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:72230;s:14:\"optimized_size\";i:20493;s:7:\"percent\";d:71.63;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2124434;s:14:\"optimized_size\";i:589071;s:7:\"percent\";d:72.27;}}'),(100781,1961,'_imagify_optimization_level','1'),(100782,1961,'_imagify_status','success'),(100783,1961,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:73536;s:14:\"optimized_size\";i:21033;s:7:\"percent\";d:71.4;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9674;s:14:\"optimized_size\";i:2750;s:7:\"percent\";d:71.57;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:84434;s:14:\"optimized_size\";i:16240;s:7:\"percent\";d:80.77;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:54278;s:14:\"optimized_size\";i:12100;s:7:\"percent\";d:77.71;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19933;s:14:\"optimized_size\";i:5316;s:7:\"percent\";d:73.33;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3668;s:14:\"optimized_size\";i:956;s:7:\"percent\";d:73.94;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30728;s:14:\"optimized_size\";i:7828;s:7:\"percent\";d:74.52;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4973;s:14:\"optimized_size\";i:1510;s:7:\"percent\";d:69.64;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:73536;s:14:\"optimized_size\";i:20304;s:7:\"percent\";d:72.39;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4973;s:14:\"optimized_size\";i:1524;s:7:\"percent\";d:69.35;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30728;s:14:\"optimized_size\";i:8034;s:7:\"percent\";d:73.85;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3668;s:14:\"optimized_size\";i:903;s:7:\"percent\";d:75.38;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19933;s:14:\"optimized_size\";i:5373;s:7:\"percent\";d:73.04;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:54278;s:14:\"optimized_size\";i:13996;s:7:\"percent\";d:74.21;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:84434;s:14:\"optimized_size\";i:20700;s:7:\"percent\";d:75.48;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9674;s:14:\"optimized_size\";i:2211;s:7:\"percent\";d:77.14;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:562448;s:14:\"optimized_size\";i:140778;s:7:\"percent\";d:74.97;}}'),(100784,1960,'_imagify_optimization_level','1'),(100785,1960,'_imagify_status','success'),(100786,1960,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14081;s:14:\"optimized_size\";i:3143;s:7:\"percent\";d:77.68;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:357;s:14:\"optimized_size\";i:150;s:7:\"percent\";d:57.98;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11937;s:14:\"optimized_size\";i:2400;s:7:\"percent\";d:79.89;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7579;s:14:\"optimized_size\";i:1764;s:7:\"percent\";d:76.73;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3106;s:14:\"optimized_size\";i:884;s:7:\"percent\";d:71.54;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:266;s:14:\"optimized_size\";i:96;s:7:\"percent\";d:63.91;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4350;s:14:\"optimized_size\";i:1266;s:7:\"percent\";d:70.9;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1032;s:14:\"optimized_size\";i:290;s:7:\"percent\";d:71.9;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14081;s:14:\"optimized_size\";i:2624;s:7:\"percent\";d:81.36;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1032;s:14:\"optimized_size\";i:355;s:7:\"percent\";d:65.6;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4350;s:14:\"optimized_size\";i:1144;s:7:\"percent\";d:73.7;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:266;s:14:\"optimized_size\";i:118;s:7:\"percent\";d:55.64;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3106;s:14:\"optimized_size\";i:858;s:7:\"percent\";d:72.38;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7579;s:14:\"optimized_size\";i:1927;s:7:\"percent\";d:74.57;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11937;s:14:\"optimized_size\";i:3079;s:7:\"percent\";d:74.21;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:357;s:14:\"optimized_size\";i:127;s:7:\"percent\";d:64.43;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:85416;s:14:\"optimized_size\";i:20225;s:7:\"percent\";d:76.32;}}'),(100787,1959,'_imagify_optimization_level','1'),(100788,1959,'_imagify_status','success'),(100789,1959,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:79296;s:14:\"optimized_size\";i:21291;s:7:\"percent\";d:73.15;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12213;s:14:\"optimized_size\";i:2480;s:7:\"percent\";d:79.69;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:77807;s:14:\"optimized_size\";i:14048;s:7:\"percent\";d:81.95;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:51165;s:14:\"optimized_size\";i:10882;s:7:\"percent\";d:78.73;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18362;s:14:\"optimized_size\";i:4940;s:7:\"percent\";d:73.1;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3764;s:14:\"optimized_size\";i:824;s:7:\"percent\";d:78.11;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28463;s:14:\"optimized_size\";i:6974;s:7:\"percent\";d:75.5;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4566;s:14:\"optimized_size\";i:1330;s:7:\"percent\";d:70.87;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:79296;s:14:\"optimized_size\";i:17526;s:7:\"percent\";d:77.9;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4566;s:14:\"optimized_size\";i:1525;s:7:\"percent\";d:66.6;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28463;s:14:\"optimized_size\";i:7323;s:7:\"percent\";d:74.27;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3764;s:14:\"optimized_size\";i:969;s:7:\"percent\";d:74.26;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18362;s:14:\"optimized_size\";i:5263;s:7:\"percent\";d:71.34;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:51165;s:14:\"optimized_size\";i:13938;s:7:\"percent\";d:72.76;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:77807;s:14:\"optimized_size\";i:19969;s:7:\"percent\";d:74.34;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12213;s:14:\"optimized_size\";i:3099;s:7:\"percent\";d:74.63;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:551272;s:14:\"optimized_size\";i:132381;s:7:\"percent\";d:75.99;}}'),(100790,1958,'_imagify_optimization_level','1'),(100791,1958,'_imagify_status','success'),(100792,1958,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12232;s:14:\"optimized_size\";i:5137;s:7:\"percent\";d:58;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6527;s:14:\"optimized_size\";i:3130;s:7:\"percent\";d:52.05;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1588;s:14:\"optimized_size\";i:482;s:7:\"percent\";d:69.65;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2969;s:14:\"optimized_size\";i:1306;s:7:\"percent\";d:56.01;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12232;s:14:\"optimized_size\";i:5024;s:7:\"percent\";d:58.93;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2969;s:14:\"optimized_size\";i:1792;s:7:\"percent\";d:39.64;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1588;s:14:\"optimized_size\";i:765;s:7:\"percent\";d:51.83;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6527;s:14:\"optimized_size\";i:2626;s:7:\"percent\";d:59.77;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:46632;s:14:\"optimized_size\";i:20262;s:7:\"percent\";d:56.55;}}'),(100793,1933,'_imagify_optimization_level','1'),(100794,1933,'_imagify_status','success'),(100795,1933,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:59061;s:14:\"optimized_size\";i:28770;s:7:\"percent\";d:51.29;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:49365;s:14:\"optimized_size\";i:16480;s:7:\"percent\";d:66.62;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:83232;s:14:\"optimized_size\";i:27438;s:7:\"percent\";d:67.03;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9313;s:14:\"optimized_size\";i:4190;s:7:\"percent\";d:55.01;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22912;s:14:\"optimized_size\";i:9266;s:7:\"percent\";d:59.56;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:59061;s:14:\"optimized_size\";i:28554;s:7:\"percent\";d:51.65;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22912;s:14:\"optimized_size\";i:8899;s:7:\"percent\";d:61.16;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9313;s:14:\"optimized_size\";i:4304;s:7:\"percent\";d:53.79;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:83232;s:14:\"optimized_size\";i:31426;s:7:\"percent\";d:62.24;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:49365;s:14:\"optimized_size\";i:18594;s:7:\"percent\";d:62.33;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:447766;s:14:\"optimized_size\";i:177921;s:7:\"percent\";d:60.26;}}'),(100802,1932,'_imagify_optimization_level','1'),(100803,1932,'_imagify_status','success'),(100804,1932,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:90691;s:14:\"optimized_size\";i:37437;s:7:\"percent\";d:58.72;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:83422;s:14:\"optimized_size\";i:24258;s:7:\"percent\";d:70.92;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:162269;s:14:\"optimized_size\";i:40414;s:7:\"percent\";d:75.09;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14847;s:14:\"optimized_size\";i:6220;s:7:\"percent\";d:58.11;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:38575;s:14:\"optimized_size\";i:13358;s:7:\"percent\";d:65.37;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:90691;s:14:\"optimized_size\";i:35210;s:7:\"percent\";d:61.18;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:38575;s:14:\"optimized_size\";i:13539;s:7:\"percent\";d:64.9;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14847;s:14:\"optimized_size\";i:5753;s:7:\"percent\";d:61.25;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:162269;s:14:\"optimized_size\";i:51599;s:7:\"percent\";d:68.2;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:83422;s:14:\"optimized_size\";i:28205;s:7:\"percent\";d:66.19;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:779608;s:14:\"optimized_size\";i:255993;s:7:\"percent\";d:67.16;}}'),(100805,1931,'_imagify_optimization_level','1'),(100806,1931,'_imagify_status','success'),(100807,1931,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:152757;s:14:\"optimized_size\";i:66907;s:7:\"percent\";d:56.2;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:77864;s:14:\"optimized_size\";i:26406;s:7:\"percent\";d:66.09;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:99924;s:14:\"optimized_size\";i:34678;s:7:\"percent\";d:65.3;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15104;s:14:\"optimized_size\";i:6706;s:7:\"percent\";d:55.6;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:153737;s:14:\"optimized_size\";i:49856;s:7:\"percent\";d:67.57;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27075;s:14:\"optimized_size\";i:11408;s:7:\"percent\";d:57.87;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:152757;s:14:\"optimized_size\";i:67610;s:7:\"percent\";d:55.74;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27075;s:14:\"optimized_size\";i:10060;s:7:\"percent\";d:62.84;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:153737;s:14:\"optimized_size\";i:53690;s:7:\"percent\";d:65.08;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15104;s:14:\"optimized_size\";i:6104;s:7:\"percent\";d:59.59;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:99924;s:14:\"optimized_size\";i:35259;s:7:\"percent\";d:64.71;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:77864;s:14:\"optimized_size\";i:26795;s:7:\"percent\";d:65.59;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1052922;s:14:\"optimized_size\";i:395479;s:7:\"percent\";d:62.44;}}'),(100808,1930,'_imagify_optimization_level','1'),(100809,1930,'_imagify_status','success'),(100810,1930,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33270;s:14:\"optimized_size\";i:15845;s:7:\"percent\";d:52.37;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:43698;s:14:\"optimized_size\";i:10326;s:7:\"percent\";d:76.37;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:64323;s:14:\"optimized_size\";i:14210;s:7:\"percent\";d:77.91;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7902;s:14:\"optimized_size\";i:3028;s:7:\"percent\";d:61.68;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15616;s:14:\"optimized_size\";i:5284;s:7:\"percent\";d:66.16;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33270;s:14:\"optimized_size\";i:15654;s:7:\"percent\";d:52.95;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15616;s:14:\"optimized_size\";i:6398;s:7:\"percent\";d:59.03;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7902;s:14:\"optimized_size\";i:3051;s:7:\"percent\";d:61.39;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:64323;s:14:\"optimized_size\";i:23188;s:7:\"percent\";d:63.95;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:43698;s:14:\"optimized_size\";i:14940;s:7:\"percent\";d:65.81;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:329618;s:14:\"optimized_size\";i:111924;s:7:\"percent\";d:66.04;}}'),(100811,1929,'_imagify_optimization_level','1'),(100812,1929,'_imagify_status','success'),(100813,1929,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:93722;s:14:\"optimized_size\";i:37831;s:7:\"percent\";d:59.63;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:114317;s:14:\"optimized_size\";i:32924;s:7:\"percent\";d:71.2;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:139664;s:14:\"optimized_size\";i:39366;s:7:\"percent\";d:71.81;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19021;s:14:\"optimized_size\";i:7674;s:7:\"percent\";d:59.66;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33731;s:14:\"optimized_size\";i:12322;s:7:\"percent\";d:63.47;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:93722;s:14:\"optimized_size\";i:40140;s:7:\"percent\";d:57.17;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33731;s:14:\"optimized_size\";i:11301;s:7:\"percent\";d:66.5;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19021;s:14:\"optimized_size\";i:6923;s:7:\"percent\";d:63.6;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:139664;s:14:\"optimized_size\";i:44857;s:7:\"percent\";d:67.88;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:114317;s:14:\"optimized_size\";i:35775;s:7:\"percent\";d:68.71;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:800910;s:14:\"optimized_size\";i:269113;s:7:\"percent\";d:66.4;}}'),(100814,1928,'_imagify_optimization_level','1'),(100815,1928,'_imagify_status','success'),(100816,1928,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:80241;s:14:\"optimized_size\";i:36561;s:7:\"percent\";d:54.44;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:55986;s:14:\"optimized_size\";i:18896;s:7:\"percent\";d:66.25;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:91910;s:14:\"optimized_size\";i:30596;s:7:\"percent\";d:66.71;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10468;s:14:\"optimized_size\";i:4768;s:7:\"percent\";d:54.45;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24268;s:14:\"optimized_size\";i:9628;s:7:\"percent\";d:60.33;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:80241;s:14:\"optimized_size\";i:32856;s:7:\"percent\";d:59.05;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24268;s:14:\"optimized_size\";i:9429;s:7:\"percent\";d:61.15;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10468;s:14:\"optimized_size\";i:4611;s:7:\"percent\";d:55.95;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:91910;s:14:\"optimized_size\";i:35238;s:7:\"percent\";d:61.66;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:55986;s:14:\"optimized_size\";i:21728;s:7:\"percent\";d:61.19;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:525746;s:14:\"optimized_size\";i:204311;s:7:\"percent\";d:61.14;}}'),(100817,1927,'_imagify_optimization_level','1'),(100818,1927,'_imagify_status','success'),(100819,1927,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:185738;s:14:\"optimized_size\";i:178596;s:7:\"percent\";d:3.85;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:146629;s:14:\"optimized_size\";i:8884;s:7:\"percent\";d:93.94;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:181605;s:14:\"optimized_size\";i:18740;s:7:\"percent\";d:89.68;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:65902;s:14:\"optimized_size\";i:10542;s:7:\"percent\";d:84;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22252;s:14:\"optimized_size\";i:2504;s:7:\"percent\";d:88.75;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:79424;s:14:\"optimized_size\";i:13484;s:7:\"percent\";d:83.02;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34665;s:14:\"optimized_size\";i:3432;s:7:\"percent\";d:90.1;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:185738;s:14:\"optimized_size\";i:24260;s:7:\"percent\";d:86.94;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34665;s:14:\"optimized_size\";i:5757;s:7:\"percent\";d:83.39;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:79424;s:14:\"optimized_size\";i:40983;s:7:\"percent\";d:48.4;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22252;s:14:\"optimized_size\";i:4308;s:7:\"percent\";d:80.64;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:65902;s:14:\"optimized_size\";i:23556;s:7:\"percent\";d:64.26;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:181605;s:14:\"optimized_size\";i:77329;s:7:\"percent\";d:57.42;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:146629;s:14:\"optimized_size\";i:32054;s:7:\"percent\";d:78.14;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1432430;s:14:\"optimized_size\";i:444429;s:7:\"percent\";d:68.97;}}'),(100820,1926,'_imagify_optimization_level','1'),(100821,1926,'_imagify_status','already_optimized'),(100822,1926,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:135766;s:14:\"optimized_size\";i:14820;s:7:\"percent\";d:89.08;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:156621;s:14:\"optimized_size\";i:27386;s:7:\"percent\";d:82.51;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61203;s:14:\"optimized_size\";i:13194;s:7:\"percent\";d:78.44;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20554;s:14:\"optimized_size\";i:3406;s:7:\"percent\";d:83.43;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:58396;s:14:\"optimized_size\";i:18186;s:7:\"percent\";d:68.86;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28165;s:14:\"optimized_size\";i:3876;s:7:\"percent\";d:86.24;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:112323;s:14:\"optimized_size\";i:39868;s:7:\"percent\";d:64.51;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:573028;s:14:\"optimized_size\";i:120736;s:7:\"percent\";d:78.93;}}'),(100823,1916,'_imagify_optimization_level','1'),(100824,1916,'_imagify_status','success'),(100825,1916,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:150098;s:14:\"optimized_size\";i:87709;s:7:\"percent\";d:41.57;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26653;s:14:\"optimized_size\";i:12740;s:7:\"percent\";d:52.2;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:111680;s:14:\"optimized_size\";i:46698;s:7:\"percent\";d:58.19;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:45200;s:14:\"optimized_size\";i:23110;s:7:\"percent\";d:48.87;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5309;s:14:\"optimized_size\";i:3272;s:7:\"percent\";d:38.37;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:66949;s:14:\"optimized_size\";i:32564;s:7:\"percent\";d:51.36;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11896;s:14:\"optimized_size\";i:7574;s:7:\"percent\";d:36.33;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:150098;s:14:\"optimized_size\";i:69224;s:7:\"percent\";d:53.88;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11896;s:14:\"optimized_size\";i:9244;s:7:\"percent\";d:22.29;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:66949;s:14:\"optimized_size\";i:43398;s:7:\"percent\";d:35.18;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5309;s:14:\"optimized_size\";i:3974;s:7:\"percent\";d:25.15;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:45200;s:14:\"optimized_size\";i:30786;s:7:\"percent\";d:31.89;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:111680;s:14:\"optimized_size\";i:65496;s:7:\"percent\";d:41.35;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26653;s:14:\"optimized_size\";i:15401;s:7:\"percent\";d:42.22;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:835570;s:14:\"optimized_size\";i:451190;s:7:\"percent\";d:46;}}'),(100826,1882,'_imagify_optimization_level','1'),(100827,1882,'_imagify_status','success'),(100828,1882,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7932;s:14:\"optimized_size\";i:1921;s:7:\"percent\";d:75.78;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4182;s:14:\"optimized_size\";i:1770;s:7:\"percent\";d:57.68;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7932;s:14:\"optimized_size\";i:2172;s:7:\"percent\";d:72.62;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4182;s:14:\"optimized_size\";i:1330;s:7:\"percent\";d:68.2;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:24228;s:14:\"optimized_size\";i:7193;s:7:\"percent\";d:70.31;}}'),(100829,1880,'_imagify_optimization_level','1'),(100830,1880,'_imagify_status','success'),(100831,1880,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40278;s:14:\"optimized_size\";i:19252;s:7:\"percent\";d:52.2;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37608;s:14:\"optimized_size\";i:12476;s:7:\"percent\";d:66.83;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18017;s:14:\"optimized_size\";i:3000;s:7:\"percent\";d:83.35;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19110;s:14:\"optimized_size\";i:5424;s:7:\"percent\";d:71.62;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40278;s:14:\"optimized_size\";i:12884;s:7:\"percent\";d:68.01;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19110;s:14:\"optimized_size\";i:7944;s:7:\"percent\";d:58.43;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18017;s:14:\"optimized_size\";i:6583;s:7:\"percent\";d:63.46;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37608;s:14:\"optimized_size\";i:17805;s:7:\"percent\";d:52.66;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:230026;s:14:\"optimized_size\";i:85368;s:7:\"percent\";d:62.89;}}'),(100832,1879,'_imagify_optimization_level','1'),(100833,1879,'_imagify_status','success'),(100834,1879,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:99526;s:14:\"optimized_size\";i:22537;s:7:\"percent\";d:77.36;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5164;s:14:\"optimized_size\";i:2688;s:7:\"percent\";d:47.95;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10177;s:14:\"optimized_size\";i:5050;s:7:\"percent\";d:50.38;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:99526;s:14:\"optimized_size\";i:10106;s:7:\"percent\";d:89.85;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10177;s:14:\"optimized_size\";i:6901;s:7:\"percent\";d:32.19;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5164;s:14:\"optimized_size\";i:4087;s:7:\"percent\";d:20.86;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:229734;s:14:\"optimized_size\";i:51369;s:7:\"percent\";d:77.64;}}'),(100835,1878,'_imagify_optimization_level','1'),(100836,1878,'_imagify_status','success'),(100837,1878,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:95250;s:14:\"optimized_size\";i:69106;s:7:\"percent\";d:27.45;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32513;s:14:\"optimized_size\";i:8468;s:7:\"percent\";d:73.96;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:316233;s:14:\"optimized_size\";i:44598;s:7:\"percent\";d:85.9;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:197604;s:14:\"optimized_size\";i:30210;s:7:\"percent\";d:84.71;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:60144;s:14:\"optimized_size\";i:13194;s:7:\"percent\";d:78.06;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5936;s:14:\"optimized_size\";i:2340;s:7:\"percent\";d:60.58;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:97510;s:14:\"optimized_size\";i:18510;s:7:\"percent\";d:81.02;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13809;s:14:\"optimized_size\";i:4656;s:7:\"percent\";d:66.28;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:95250;s:14:\"optimized_size\";i:38586;s:7:\"percent\";d:59.49;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13809;s:14:\"optimized_size\";i:6197;s:7:\"percent\";d:55.12;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:97510;s:14:\"optimized_size\";i:35134;s:7:\"percent\";d:63.97;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5936;s:14:\"optimized_size\";i:3078;s:7:\"percent\";d:48.15;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:60144;s:14:\"optimized_size\";i:19783;s:7:\"percent\";d:67.11;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:197604;s:14:\"optimized_size\";i:64644;s:7:\"percent\";d:67.29;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:316233;s:14:\"optimized_size\";i:98454;s:7:\"percent\";d:68.87;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32513;s:14:\"optimized_size\";i:13222;s:7:\"percent\";d:59.33;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1637998;s:14:\"optimized_size\";i:470180;s:7:\"percent\";d:71.3;}}'),(100838,1877,'_imagify_optimization_level','1'),(100839,1877,'_imagify_status','success'),(100840,1877,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:135104;s:14:\"optimized_size\";i:73660;s:7:\"percent\";d:45.48;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35574;s:14:\"optimized_size\";i:9686;s:7:\"percent\";d:72.77;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:343521;s:14:\"optimized_size\";i:52426;s:7:\"percent\";d:84.74;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:209678;s:14:\"optimized_size\";i:35812;s:7:\"percent\";d:82.92;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:65266;s:14:\"optimized_size\";i:15326;s:7:\"percent\";d:76.52;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7049;s:14:\"optimized_size\";i:2596;s:7:\"percent\";d:63.17;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:105677;s:14:\"optimized_size\";i:21448;s:7:\"percent\";d:79.7;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15862;s:14:\"optimized_size\";i:5100;s:7:\"percent\";d:67.85;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:135104;s:14:\"optimized_size\";i:38222;s:7:\"percent\";d:71.71;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15862;s:14:\"optimized_size\";i:6488;s:7:\"percent\";d:59.1;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:105677;s:14:\"optimized_size\";i:36550;s:7:\"percent\";d:65.41;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7049;s:14:\"optimized_size\";i:3388;s:7:\"percent\";d:51.94;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:65266;s:14:\"optimized_size\";i:23613;s:7:\"percent\";d:63.82;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:209678;s:14:\"optimized_size\";i:69353;s:7:\"percent\";d:66.92;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:343521;s:14:\"optimized_size\";i:116121;s:7:\"percent\";d:66.2;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35574;s:14:\"optimized_size\";i:13306;s:7:\"percent\";d:62.6;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1835462;s:14:\"optimized_size\";i:523095;s:7:\"percent\";d:71.5;}}'),(100841,1872,'_imagify_optimization_level','1'),(100842,1872,'_imagify_status','success'),(100843,1872,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:325974;s:14:\"optimized_size\";i:84314;s:7:\"percent\";d:74.13;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:54647;s:14:\"optimized_size\";i:32124;s:7:\"percent\";d:41.22;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:57589;s:14:\"optimized_size\";i:32458;s:7:\"percent\";d:43.64;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7723;s:14:\"optimized_size\";i:4996;s:7:\"percent\";d:35.31;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:84522;s:14:\"optimized_size\";i:45208;s:7:\"percent\";d:46.51;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12603;s:14:\"optimized_size\";i:7440;s:7:\"percent\";d:40.97;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:325974;s:14:\"optimized_size\";i:51524;s:7:\"percent\";d:84.19;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12603;s:14:\"optimized_size\";i:9539;s:7:\"percent\";d:24.31;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:84522;s:14:\"optimized_size\";i:56366;s:7:\"percent\";d:33.31;}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:57589;s:14:\"optimized_size\";i:40537;s:7:\"percent\";d:29.61;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:54647;s:14:\"optimized_size\";i:41778;s:7:\"percent\";d:23.55;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1078393;s:14:\"optimized_size\";i:406284;s:7:\"percent\";d:62.33;}}'),(100844,1873,'_imagify_optimization_level','1'),(100845,1873,'_imagify_status','success'),(100846,1873,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:97182;s:14:\"optimized_size\";i:40450;s:7:\"percent\";d:58.38;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37981;s:14:\"optimized_size\";i:8402;s:7:\"percent\";d:77.88;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:366726;s:14:\"optimized_size\";i:49122;s:7:\"percent\";d:86.61;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:221730;s:14:\"optimized_size\";i:33086;s:7:\"percent\";d:85.08;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:69920;s:14:\"optimized_size\";i:13946;s:7:\"percent\";d:80.05;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7519;s:14:\"optimized_size\";i:2256;s:7:\"percent\";d:70;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:106687;s:14:\"optimized_size\";i:20032;s:7:\"percent\";d:81.22;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16588;s:14:\"optimized_size\";i:4408;s:7:\"percent\";d:73.43;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:97182;s:14:\"optimized_size\";i:32988;s:7:\"percent\";d:66.06;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16588;s:14:\"optimized_size\";i:6359;s:7:\"percent\";d:61.67;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:106687;s:14:\"optimized_size\";i:32449;s:7:\"percent\";d:69.58;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7519;s:14:\"optimized_size\";i:3311;s:7:\"percent\";d:55.96;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:69920;s:14:\"optimized_size\";i:20346;s:7:\"percent\";d:70.9;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:221730;s:14:\"optimized_size\";i:56242;s:7:\"percent\";d:74.63;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:366726;s:14:\"optimized_size\";i:87995;s:7:\"percent\";d:76.01;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37981;s:14:\"optimized_size\";i:11780;s:7:\"percent\";d:68.98;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1848666;s:14:\"optimized_size\";i:423172;s:7:\"percent\";d:77.11;}}'),(100847,1762,'_imagify_optimization_level','1'),(100848,1762,'_imagify_status','success'),(100849,1762,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:245069;s:14:\"optimized_size\";i:168656;s:7:\"percent\";d:31.18;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:112018;s:14:\"optimized_size\";i:27706;s:7:\"percent\";d:75.27;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:149967;s:14:\"optimized_size\";i:18804;s:7:\"percent\";d:87.46;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29698;s:14:\"optimized_size\";i:5228;s:7:\"percent\";d:82.4;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:202137;s:14:\"optimized_size\";i:27252;s:7:\"percent\";d:86.52;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28553;s:14:\"optimized_size\";i:4304;s:7:\"percent\";d:84.93;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:245069;s:14:\"optimized_size\";i:39508;s:7:\"percent\";d:83.88;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28553;s:14:\"optimized_size\";i:8328;s:7:\"percent\";d:70.83;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:202137;s:14:\"optimized_size\";i:94336;s:7:\"percent\";d:53.33;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29698;s:14:\"optimized_size\";i:8468;s:7:\"percent\";d:71.49;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:149967;s:14:\"optimized_size\";i:62842;s:7:\"percent\";d:58.1;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:112018;s:14:\"optimized_size\";i:41407;s:7:\"percent\";d:63.04;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1534884;s:14:\"optimized_size\";i:506839;s:7:\"percent\";d:66.98;}}'),(100850,1751,'_imagify_optimization_level','1'),(100851,1751,'_imagify_status','success'),(100852,1751,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:283764;s:14:\"optimized_size\";i:205969;s:7:\"percent\";d:27.42;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:244565;s:14:\"optimized_size\";i:34270;s:7:\"percent\";d:85.99;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:581219;s:14:\"optimized_size\";i:53016;s:7:\"percent\";d:90.88;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:169046;s:14:\"optimized_size\";i:20024;s:7:\"percent\";d:88.15;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31359;s:14:\"optimized_size\";i:5230;s:7:\"percent\";d:83.32;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:267739;s:14:\"optimized_size\";i:30938;s:7:\"percent\";d:88.44;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30803;s:14:\"optimized_size\";i:4078;s:7:\"percent\";d:86.76;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:283764;s:14:\"optimized_size\";i:75388;s:7:\"percent\";d:73.43;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30803;s:14:\"optimized_size\";i:9066;s:7:\"percent\";d:70.57;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:267739;s:14:\"optimized_size\";i:128959;s:7:\"percent\";d:51.83;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31359;s:14:\"optimized_size\";i:9333;s:7:\"percent\";d:70.24;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:169046;s:14:\"optimized_size\";i:52219;s:7:\"percent\";d:69.11;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:581219;s:14:\"optimized_size\";i:277754;s:7:\"percent\";d:52.21;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:244565;s:14:\"optimized_size\";i:70473;s:7:\"percent\";d:71.18;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3216990;s:14:\"optimized_size\";i:976717;s:7:\"percent\";d:69.64;}}'),(100853,1746,'_imagify_optimization_level','1'),(100854,1746,'_imagify_status','success'),(100855,1746,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28193;s:14:\"optimized_size\";i:17959;s:7:\"percent\";d:36.3;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18095;s:14:\"optimized_size\";i:2890;s:7:\"percent\";d:84.03;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:50664;s:14:\"optimized_size\";i:5710;s:7:\"percent\";d:88.73;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28193;s:14:\"optimized_size\";i:7536;s:7:\"percent\";d:73.27;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:50664;s:14:\"optimized_size\";i:15525;s:7:\"percent\";d:69.36;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18095;s:14:\"optimized_size\";i:6231;s:7:\"percent\";d:65.57;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:193904;s:14:\"optimized_size\";i:55851;s:7:\"percent\";d:71.2;}}'),(100856,1716,'_imagify_optimization_level','1'),(100857,1716,'_imagify_status','success'),(100858,1716,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:44780;s:14:\"optimized_size\";i:18827;s:7:\"percent\";d:57.96;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32441;s:14:\"optimized_size\";i:5494;s:7:\"percent\";d:83.06;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:59211;s:14:\"optimized_size\";i:9910;s:7:\"percent\";d:83.26;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:44780;s:14:\"optimized_size\";i:14508;s:7:\"percent\";d:67.6;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:59211;s:14:\"optimized_size\";i:16867;s:7:\"percent\";d:71.51;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32441;s:14:\"optimized_size\";i:8919;s:7:\"percent\";d:72.51;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:272864;s:14:\"optimized_size\";i:74525;s:7:\"percent\";d:72.69;}}'),(100859,1715,'_imagify_optimization_level','1'),(100860,1715,'_imagify_status','success'),(100861,1715,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:155999;s:14:\"optimized_size\";i:74356;s:7:\"percent\";d:52.34;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:114507;s:14:\"optimized_size\";i:28298;s:7:\"percent\";d:75.29;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:204897;s:14:\"optimized_size\";i:28854;s:7:\"percent\";d:85.92;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:66791;s:14:\"optimized_size\";i:11318;s:7:\"percent\";d:83.05;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30692;s:14:\"optimized_size\";i:5318;s:7:\"percent\";d:82.67;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:116617;s:14:\"optimized_size\";i:17276;s:7:\"percent\";d:85.19;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13527;s:14:\"optimized_size\";i:2398;s:7:\"percent\";d:82.27;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:155999;s:14:\"optimized_size\";i:39816;s:7:\"percent\";d:74.48;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13527;s:14:\"optimized_size\";i:4992;s:7:\"percent\";d:63.1;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:116617;s:14:\"optimized_size\";i:43584;s:7:\"percent\";d:62.63;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30692;s:14:\"optimized_size\";i:8435;s:7:\"percent\";d:72.52;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:66791;s:14:\"optimized_size\";i:28561;s:7:\"percent\";d:57.24;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:204897;s:14:\"optimized_size\";i:107320;s:7:\"percent\";d:47.62;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:114507;s:14:\"optimized_size\";i:42067;s:7:\"percent\";d:63.26;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1406060;s:14:\"optimized_size\";i:442593;s:7:\"percent\";d:68.52;}}'),(100862,1714,'_imagify_optimization_level','1'),(100863,1714,'_imagify_status','success'),(100864,1714,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35951;s:14:\"optimized_size\";i:14496;s:7:\"percent\";d:59.68;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16412;s:14:\"optimized_size\";i:2846;s:7:\"percent\";d:82.66;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41658;s:14:\"optimized_size\";i:5788;s:7:\"percent\";d:86.11;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35951;s:14:\"optimized_size\";i:9976;s:7:\"percent\";d:72.25;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41658;s:14:\"optimized_size\";i:11008;s:7:\"percent\";d:73.58;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16412;s:14:\"optimized_size\";i:5322;s:7:\"percent\";d:67.57;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:188042;s:14:\"optimized_size\";i:49436;s:7:\"percent\";d:73.71;}}'),(100865,1713,'_imagify_optimization_level','1'),(100866,1713,'_imagify_status','success'),(100867,1713,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:216169;s:14:\"optimized_size\";i:143075;s:7:\"percent\";d:33.81;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:255658;s:14:\"optimized_size\";i:37062;s:7:\"percent\";d:85.5;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:583756;s:14:\"optimized_size\";i:55074;s:7:\"percent\";d:90.57;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:171787;s:14:\"optimized_size\";i:21238;s:7:\"percent\";d:87.64;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33911;s:14:\"optimized_size\";i:5906;s:7:\"percent\";d:82.58;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:276729;s:14:\"optimized_size\";i:32142;s:7:\"percent\";d:88.39;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31769;s:14:\"optimized_size\";i:4490;s:7:\"percent\";d:85.87;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:216169;s:14:\"optimized_size\";i:73240;s:7:\"percent\";d:66.12;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31769;s:14:\"optimized_size\";i:9625;s:7:\"percent\";d:69.7;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:276729;s:14:\"optimized_size\";i:121699;s:7:\"percent\";d:56.02;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33911;s:14:\"optimized_size\";i:9989;s:7:\"percent\";d:70.54;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:171787;s:14:\"optimized_size\";i:50129;s:7:\"percent\";d:70.82;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:583756;s:14:\"optimized_size\";i:262105;s:7:\"percent\";d:55.1;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:255658;s:14:\"optimized_size\";i:97895;s:7:\"percent\";d:61.71;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3139558;s:14:\"optimized_size\";i:923669;s:7:\"percent\";d:70.58;}}'),(100868,1711,'_imagify_optimization_level','1'),(100869,1711,'_imagify_status','success'),(100870,1711,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:370030;s:14:\"optimized_size\";i:322577;s:7:\"percent\";d:12.82;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:258330;s:14:\"optimized_size\";i:36444;s:7:\"percent\";d:85.89;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:567974;s:14:\"optimized_size\";i:63728;s:7:\"percent\";d:88.78;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:174429;s:14:\"optimized_size\";i:25354;s:7:\"percent\";d:85.46;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33934;s:14:\"optimized_size\";i:6050;s:7:\"percent\";d:82.17;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:319996;s:14:\"optimized_size\";i:38218;s:7:\"percent\";d:88.06;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:38831;s:14:\"optimized_size\";i:5618;s:7:\"percent\";d:85.53;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:370030;s:14:\"optimized_size\";i:73236;s:7:\"percent\";d:80.21;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:38831;s:14:\"optimized_size\";i:11504;s:7:\"percent\";d:70.37;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:319996;s:14:\"optimized_size\";i:141300;s:7:\"percent\";d:55.84;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33934;s:14:\"optimized_size\";i:9639;s:7:\"percent\";d:71.59;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:174429;s:14:\"optimized_size\";i:76334;s:7:\"percent\";d:56.24;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:567974;s:14:\"optimized_size\";i:271562;s:7:\"percent\";d:52.19;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:258330;s:14:\"optimized_size\";i:98482;s:7:\"percent\";d:61.88;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3527048;s:14:\"optimized_size\";i:1180046;s:7:\"percent\";d:66.54;}}'),(100871,1710,'_imagify_optimization_level','1'),(100872,1710,'_imagify_status','success'),(100873,1710,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:310751;s:14:\"optimized_size\";i:270761;s:7:\"percent\";d:12.87;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:164305;s:14:\"optimized_size\";i:24338;s:7:\"percent\";d:85.19;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:286560;s:14:\"optimized_size\";i:51738;s:7:\"percent\";d:81.95;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:100034;s:14:\"optimized_size\";i:19768;s:7:\"percent\";d:80.24;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20547;s:14:\"optimized_size\";i:3276;s:7:\"percent\";d:84.06;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:159398;s:14:\"optimized_size\";i:30196;s:7:\"percent\";d:81.06;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26904;s:14:\"optimized_size\";i:4128;s:7:\"percent\";d:84.66;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:310751;s:14:\"optimized_size\";i:75512;s:7:\"percent\";d:75.7;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26904;s:14:\"optimized_size\";i:8261;s:7:\"percent\";d:69.29;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:159398;s:14:\"optimized_size\";i:68891;s:7:\"percent\";d:56.78;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20547;s:14:\"optimized_size\";i:6516;s:7:\"percent\";d:68.29;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:100034;s:14:\"optimized_size\";i:42026;s:7:\"percent\";d:57.99;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:286560;s:14:\"optimized_size\";i:134872;s:7:\"percent\";d:52.93;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:164305;s:14:\"optimized_size\";i:72113;s:7:\"percent\";d:56.11;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2136998;s:14:\"optimized_size\";i:812396;s:7:\"percent\";d:61.98;}}'),(100874,1657,'_imagify_optimization_level','1'),(100875,1657,'_imagify_status','success'),(100876,1657,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12232;s:14:\"optimized_size\";i:5137;s:7:\"percent\";d:58;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6527;s:14:\"optimized_size\";i:3130;s:7:\"percent\";d:52.05;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1588;s:14:\"optimized_size\";i:482;s:7:\"percent\";d:69.65;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2969;s:14:\"optimized_size\";i:1306;s:7:\"percent\";d:56.01;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12232;s:14:\"optimized_size\";i:5024;s:7:\"percent\";d:58.93;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2969;s:14:\"optimized_size\";i:1792;s:7:\"percent\";d:39.64;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1588;s:14:\"optimized_size\";i:765;s:7:\"percent\";d:51.83;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6527;s:14:\"optimized_size\";i:2626;s:7:\"percent\";d:59.77;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:46632;s:14:\"optimized_size\";i:20262;s:7:\"percent\";d:56.55;}}'),(100877,1656,'_imagify_optimization_level','1'),(100878,1656,'_imagify_status','already_optimized'),(100879,1656,'_imagify_data','a:2:{s:5:\"sizes\";a:5:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35420;s:14:\"optimized_size\";i:16514;s:7:\"percent\";d:53.38;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5448;s:14:\"optimized_size\";i:2710;s:7:\"percent\";d:50.26;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14761;s:14:\"optimized_size\";i:7068;s:7:\"percent\";d:52.12;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:43721;s:14:\"optimized_size\";i:17296;s:7:\"percent\";d:60.44;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:99350;s:14:\"optimized_size\";i:43588;s:7:\"percent\";d:56.13;}}'),(100880,1634,'_imagify_optimization_level','1'),(100881,1634,'_imagify_status','already_optimized'),(100882,1634,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25892;s:14:\"optimized_size\";i:9120;s:7:\"percent\";d:64.78;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34144;s:14:\"optimized_size\";i:12518;s:7:\"percent\";d:63.34;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4689;s:14:\"optimized_size\";i:1880;s:7:\"percent\";d:59.91;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7913;s:14:\"optimized_size\";i:3196;s:7:\"percent\";d:59.61;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:49695;s:14:\"optimized_size\";i:15282;s:7:\"percent\";d:69.25;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:122333;s:14:\"optimized_size\";i:41996;s:7:\"percent\";d:65.67;}}'),(100883,1623,'_imagify_optimization_level','1'),(100884,1623,'_imagify_status','success'),(100885,1623,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2251;s:14:\"optimized_size\";i:1696;s:7:\"percent\";d:24.66;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1372;s:14:\"optimized_size\";i:1508;s:7:\"percent\";d:-9.91;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2251;s:14:\"optimized_size\";i:808;s:7:\"percent\";d:64.1;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1372;s:14:\"optimized_size\";i:708;s:7:\"percent\";d:48.4;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:7246;s:14:\"optimized_size\";i:4720;s:7:\"percent\";d:34.86;}}'),(100886,1622,'_imagify_optimization_level','1'),(100887,1622,'_imagify_status','success'),(100888,1622,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:50640;s:14:\"optimized_size\";i:17831;s:7:\"percent\";d:64.79;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25209;s:14:\"optimized_size\";i:11246;s:7:\"percent\";d:55.39;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14540;s:14:\"optimized_size\";i:6136;s:7:\"percent\";d:57.8;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4625;s:14:\"optimized_size\";i:2206;s:7:\"percent\";d:52.3;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22633;s:14:\"optimized_size\";i:9156;s:7:\"percent\";d:59.55;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3892;s:14:\"optimized_size\";i:1818;s:7:\"percent\";d:53.29;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:50640;s:14:\"optimized_size\";i:16664;s:7:\"percent\";d:67.09;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3892;s:14:\"optimized_size\";i:2650;s:7:\"percent\";d:31.91;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22633;s:14:\"optimized_size\";i:11932;s:7:\"percent\";d:47.28;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4625;s:14:\"optimized_size\";i:3437;s:7:\"percent\";d:25.69;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14540;s:14:\"optimized_size\";i:8362;s:7:\"percent\";d:42.49;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25209;s:14:\"optimized_size\";i:16026;s:7:\"percent\";d:36.43;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:243078;s:14:\"optimized_size\";i:107464;s:7:\"percent\";d:55.79;}}'),(100889,1519,'_imagify_optimization_level','1'),(100890,1519,'_imagify_status','already_optimized'),(100891,1519,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13899;s:14:\"optimized_size\";i:5658;s:7:\"percent\";d:59.29;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23886;s:14:\"optimized_size\";i:8752;s:7:\"percent\";d:63.36;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4264;s:14:\"optimized_size\";i:1476;s:7:\"percent\";d:65.38;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9384;s:14:\"optimized_size\";i:3008;s:7:\"percent\";d:67.95;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30884;s:14:\"optimized_size\";i:12428;s:7:\"percent\";d:59.76;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:82317;s:14:\"optimized_size\";i:31322;s:7:\"percent\";d:61.95;}}'),(100892,1560,'_imagify_optimization_level','1'),(100893,1560,'_imagify_status','success'),(100894,1560,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28517;s:14:\"optimized_size\";i:16579;s:7:\"percent\";d:41.86;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16681;s:14:\"optimized_size\";i:3858;s:7:\"percent\";d:76.87;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4426;s:14:\"optimized_size\";i:818;s:7:\"percent\";d:81.52;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7136;s:14:\"optimized_size\";i:1648;s:7:\"percent\";d:76.91;}s:17:\"full@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:119:\"This file is an animated gif: since Imagify does not support animated webp, webp creation for animated gif is disabled.\";}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7136;s:14:\"optimized_size\";i:2023;s:7:\"percent\";d:71.65;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4426;s:14:\"optimized_size\";i:1149;s:7:\"percent\";d:74.04;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16681;s:14:\"optimized_size\";i:4222;s:7:\"percent\";d:74.69;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:85003;s:14:\"optimized_size\";i:30297;s:7:\"percent\";d:64.36;}}'),(100895,1517,'_imagify_optimization_level','1'),(100896,1517,'_imagify_status','already_optimized'),(100897,1517,'_imagify_data','a:2:{s:5:\"sizes\";a:7:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13062;s:14:\"optimized_size\";i:5414;s:7:\"percent\";d:58.55;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19278;s:14:\"optimized_size\";i:7126;s:7:\"percent\";d:63.04;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3469;s:14:\"optimized_size\";i:1598;s:7:\"percent\";d:53.93;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27336;s:14:\"optimized_size\";i:9698;s:7:\"percent\";d:64.52;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6889;s:14:\"optimized_size\";i:2794;s:7:\"percent\";d:59.44;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30194;s:14:\"optimized_size\";i:11336;s:7:\"percent\";d:62.46;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:100228;s:14:\"optimized_size\";i:37966;s:7:\"percent\";d:62.12;}}'),(100898,1472,'_imagify_optimization_level','1'),(100899,1472,'_imagify_status','already_optimized'),(100900,1472,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13841;s:14:\"optimized_size\";i:6322;s:7:\"percent\";d:54.32;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:68791;s:14:\"optimized_size\";i:22528;s:7:\"percent\";d:67.25;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26269;s:14:\"optimized_size\";i:10160;s:7:\"percent\";d:61.32;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4025;s:14:\"optimized_size\";i:1906;s:7:\"percent\";d:52.65;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29228;s:14:\"optimized_size\";i:12972;s:7:\"percent\";d:55.62;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7509;s:14:\"optimized_size\";i:3552;s:7:\"percent\";d:52.7;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:48826;s:14:\"optimized_size\";i:22182;s:7:\"percent\";d:54.57;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:198489;s:14:\"optimized_size\";i:79622;s:7:\"percent\";d:59.89;}}'),(100901,1423,'_imagify_optimization_level','1'),(100902,1423,'_imagify_status','success'),(100903,1423,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:42436;s:14:\"optimized_size\";i:24949;s:7:\"percent\";d:41.21;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24982;s:14:\"optimized_size\";i:14680;s:7:\"percent\";d:41.24;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28065;s:14:\"optimized_size\";i:17136;s:7:\"percent\";d:38.94;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7520;s:14:\"optimized_size\";i:3854;s:7:\"percent\";d:48.75;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11513;s:14:\"optimized_size\";i:6058;s:7:\"percent\";d:47.38;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:42436;s:14:\"optimized_size\";i:26280;s:7:\"percent\";d:38.07;}s:6:\"medium\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28065;s:14:\"optimized_size\";i:17288;s:7:\"percent\";d:38.4;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24982;s:14:\"optimized_size\";i:14974;s:7:\"percent\";d:40.06;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:209999;s:14:\"optimized_size\";i:125219;s:7:\"percent\";d:40.37;}}'),(100904,1416,'_imagify_optimization_level','1'),(100905,1416,'_imagify_status','success'),(100906,1416,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1304;s:14:\"optimized_size\";i:1092;s:7:\"percent\";d:16.26;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1304;s:14:\"optimized_size\";i:596;s:7:\"percent\";d:54.29;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2608;s:14:\"optimized_size\";i:1688;s:7:\"percent\";d:35.28;}}'),(100907,1415,'_imagify_optimization_level','1'),(100908,1415,'_imagify_status','success'),(100909,1415,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1335;s:14:\"optimized_size\";i:1023;s:7:\"percent\";d:23.37;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1335;s:14:\"optimized_size\";i:1218;s:7:\"percent\";d:8.76;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2670;s:14:\"optimized_size\";i:2241;s:7:\"percent\";d:16.07;}}'),(100910,1411,'_imagify_optimization_level','1'),(100911,1411,'_imagify_status','success'),(100912,1411,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:331451;s:14:\"optimized_size\";i:256493;s:7:\"percent\";d:22.62;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20026;s:14:\"optimized_size\";i:13524;s:7:\"percent\";d:32.47;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:467974;s:14:\"optimized_size\";i:46502;s:7:\"percent\";d:90.06;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:223250;s:14:\"optimized_size\";i:34858;s:7:\"percent\";d:84.39;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26287;s:14:\"optimized_size\";i:16266;s:7:\"percent\";d:38.12;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4309;s:14:\"optimized_size\";i:3138;s:7:\"percent\";d:27.18;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:48704;s:14:\"optimized_size\";i:22010;s:7:\"percent\";d:54.81;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6729;s:14:\"optimized_size\";i:5370;s:7:\"percent\";d:20.2;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:89195;s:14:\"optimized_size\";i:71898;s:7:\"percent\";d:19.39;}s:6:\"medium\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:5:\"large\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:12:\"medium_large\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:223250;s:14:\"optimized_size\";i:153280;s:7:\"percent\";d:31.34;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:467974;s:14:\"optimized_size\";i:294519;s:7:\"percent\";d:37.07;}s:7:\"feature\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1909149;s:14:\"optimized_size\";i:917858;s:7:\"percent\";d:51.92;}}'),(100913,1378,'_imagify_optimization_level','1'),(100914,1378,'_imagify_status','already_optimized'),(100915,1378,'_imagify_data','a:2:{s:5:\"sizes\";a:5:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37845;s:14:\"optimized_size\";i:23924;s:7:\"percent\";d:36.78;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8264;s:14:\"optimized_size\";i:4862;s:7:\"percent\";d:41.17;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23027;s:14:\"optimized_size\";i:11816;s:7:\"percent\";d:48.69;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:45500;s:14:\"optimized_size\";i:26800;s:7:\"percent\";d:41.1;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:114636;s:14:\"optimized_size\";i:67402;s:7:\"percent\";d:41.2;}}'),(100916,1358,'_imagify_optimization_level','1'),(100917,1358,'_imagify_status','already_optimized'),(100918,1358,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6790;s:14:\"optimized_size\";i:1042;s:7:\"percent\";d:84.65;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19125;s:14:\"optimized_size\";i:1602;s:7:\"percent\";d:91.62;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21330;s:14:\"optimized_size\";i:2242;s:7:\"percent\";d:89.49;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:47245;s:14:\"optimized_size\";i:4886;s:7:\"percent\";d:89.66;}}'),(100919,1337,'_imagify_optimization_level','1'),(100920,1337,'_imagify_status','success'),(100921,1337,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17824;s:14:\"optimized_size\";i:17712;s:7:\"percent\";d:0.63;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16272;s:14:\"optimized_size\";i:8458;s:7:\"percent\";d:48.02;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4266;s:14:\"optimized_size\";i:2114;s:7:\"percent\";d:50.45;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6542;s:14:\"optimized_size\";i:4062;s:7:\"percent\";d:37.91;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17824;s:14:\"optimized_size\";i:9314;s:7:\"percent\";d:47.74;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6542;s:14:\"optimized_size\";i:5977;s:7:\"percent\";d:8.64;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4266;s:14:\"optimized_size\";i:3822;s:7:\"percent\";d:10.41;}s:7:\"feature\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:73536;s:14:\"optimized_size\";i:51459;s:7:\"percent\";d:30.02;}}'),(100922,1298,'_imagify_optimization_level','1'),(100923,1298,'_imagify_status','already_optimized'),(100924,1298,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8152;s:14:\"optimized_size\";i:3378;s:7:\"percent\";d:58.56;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:81712;s:14:\"optimized_size\";i:7470;s:7:\"percent\";d:90.86;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11735;s:14:\"optimized_size\";i:2726;s:7:\"percent\";d:76.77;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4036;s:14:\"optimized_size\";i:908;s:7:\"percent\";d:77.5;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23433;s:14:\"optimized_size\";i:4320;s:7:\"percent\";d:81.56;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2243;s:14:\"optimized_size\";i:892;s:7:\"percent\";d:60.23;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30997;s:14:\"optimized_size\";i:12172;s:7:\"percent\";d:60.73;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:162308;s:14:\"optimized_size\";i:31866;s:7:\"percent\";d:80.37;}}'),(100925,1291,'_imagify_optimization_level','1'),(100926,1291,'_imagify_status','success'),(100927,1291,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10409;s:14:\"optimized_size\";i:8145;s:7:\"percent\";d:21.75;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39813;s:14:\"optimized_size\";i:2640;s:7:\"percent\";d:93.37;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:53847;s:14:\"optimized_size\";i:2896;s:7:\"percent\";d:94.62;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4183;s:14:\"optimized_size\";i:712;s:7:\"percent\";d:82.98;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8632;s:14:\"optimized_size\";i:988;s:7:\"percent\";d:88.55;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10409;s:14:\"optimized_size\";i:3168;s:7:\"percent\";d:69.56;}s:6:\"medium\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:12:\"medium_large\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39813;s:14:\"optimized_size\";i:39485;s:7:\"percent\";d:0.82;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:167106;s:14:\"optimized_size\";i:58034;s:7:\"percent\";d:65.27;}}'),(100928,1289,'_imagify_optimization_level','1'),(100929,1289,'_imagify_status','already_optimized'),(100930,1289,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7871;s:14:\"optimized_size\";i:9040;s:7:\"percent\";d:-14.85;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:88560;s:14:\"optimized_size\";i:19518;s:7:\"percent\";d:77.96;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15661;s:14:\"optimized_size\";i:8724;s:7:\"percent\";d:44.29;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5820;s:14:\"optimized_size\";i:2798;s:7:\"percent\";d:51.92;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20839;s:14:\"optimized_size\";i:12492;s:7:\"percent\";d:40.05;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2580;s:14:\"optimized_size\";i:2248;s:7:\"percent\";d:12.87;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16165;s:14:\"optimized_size\";i:27772;s:7:\"percent\";d:-71.8;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:157496;s:14:\"optimized_size\";i:82592;s:7:\"percent\";d:47.56;}}'),(100931,1285,'_imagify_optimization_level','1'),(100932,1285,'_imagify_status','already_optimized'),(100933,1285,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:51097;s:14:\"optimized_size\";i:3692;s:7:\"percent\";d:92.77;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41703;s:14:\"optimized_size\";i:5786;s:7:\"percent\";d:86.13;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4950;s:14:\"optimized_size\";i:1084;s:7:\"percent\";d:78.1;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11163;s:14:\"optimized_size\";i:2184;s:7:\"percent\";d:80.44;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20592;s:14:\"optimized_size\";i:6814;s:7:\"percent\";d:66.91;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:129505;s:14:\"optimized_size\";i:19560;s:7:\"percent\";d:84.9;}}'),(100934,1284,'_imagify_optimization_level','1'),(100935,1284,'_imagify_status','success'),(100936,1284,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2658;s:14:\"optimized_size\";i:2499;s:7:\"percent\";d:5.98;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1771;s:14:\"optimized_size\";i:1764;s:7:\"percent\";d:0.4;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5027;s:14:\"optimized_size\";i:2168;s:7:\"percent\";d:56.87;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2658;s:14:\"optimized_size\";i:3086;s:7:\"percent\";d:-16.1;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5027;s:14:\"optimized_size\";i:3014;s:7:\"percent\";d:40.04;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1771;s:14:\"optimized_size\";i:1624;s:7:\"percent\";d:8.3;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:18912;s:14:\"optimized_size\";i:14155;s:7:\"percent\";d:25.15;}}'),(100937,1246,'_imagify_optimization_level','1'),(100938,1246,'_imagify_status','success'),(100939,1246,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1562219;s:14:\"optimized_size\";i:782336;s:7:\"percent\";d:49.92;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:43660;s:14:\"optimized_size\";i:11954;s:7:\"percent\";d:72.62;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:719103;s:14:\"optimized_size\";i:93640;s:7:\"percent\";d:86.98;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:416233;s:14:\"optimized_size\";i:52852;s:7:\"percent\";d:87.3;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:49024;s:14:\"optimized_size\";i:16596;s:7:\"percent\";d:66.15;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4106;s:14:\"optimized_size\";i:1274;s:7:\"percent\";d:68.97;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:101507;s:14:\"optimized_size\";i:24916;s:7:\"percent\";d:75.45;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7105;s:14:\"optimized_size\";i:2634;s:7:\"percent\";d:62.93;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:119953;s:14:\"optimized_size\";i:197236;s:7:\"percent\";d:-64.43;}s:6:\"medium\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:101507;s:14:\"optimized_size\";i:100079;s:7:\"percent\";d:1.41;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4106;s:14:\"optimized_size\";i:3671;s:7:\"percent\";d:10.59;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:49024;s:14:\"optimized_size\";i:41580;s:7:\"percent\";d:15.18;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:416233;s:14:\"optimized_size\";i:238071;s:7:\"percent\";d:42.8;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:719103;s:14:\"optimized_size\";i:416403;s:7:\"percent\";d:42.09;}s:7:\"feature\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:4312883;s:14:\"optimized_size\";i:1983242;s:7:\"percent\";d:54.02;}}'),(100940,1243,'_imagify_optimization_level','1'),(100941,1243,'_imagify_status','already_optimized'),(100942,1243,'_imagify_data','a:2:{s:5:\"sizes\";a:7:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39017;s:14:\"optimized_size\";i:24442;s:7:\"percent\";d:37.36;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52323;s:14:\"optimized_size\";i:25068;s:7:\"percent\";d:52.09;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6561;s:14:\"optimized_size\";i:3564;s:7:\"percent\";d:45.68;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:75042;s:14:\"optimized_size\";i:39696;s:7:\"percent\";d:47.1;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9231;s:14:\"optimized_size\";i:5164;s:7:\"percent\";d:44.06;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:67106;s:14:\"optimized_size\";i:42904;s:7:\"percent\";d:36.07;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:249280;s:14:\"optimized_size\";i:140838;s:7:\"percent\";d:43.5;}}'),(100943,1244,'_imagify_optimization_level','1'),(100944,1244,'_imagify_status','already_optimized'),(100945,1244,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3992;s:14:\"optimized_size\";i:1820;s:7:\"percent\";d:54.41;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7854;s:14:\"optimized_size\";i:3478;s:7:\"percent\";d:55.72;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13645;s:14:\"optimized_size\";i:6482;s:7:\"percent\";d:52.5;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:25491;s:14:\"optimized_size\";i:11780;s:7:\"percent\";d:53.79;}}'),(100946,1219,'_imagify_optimization_level','1'),(100947,1219,'_imagify_status','success'),(100948,1219,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30265;s:14:\"optimized_size\";i:20886;s:7:\"percent\";d:30.99;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11754;s:14:\"optimized_size\";i:2332;s:7:\"percent\";d:80.16;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4304;s:14:\"optimized_size\";i:906;s:7:\"percent\";d:78.95;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8435;s:14:\"optimized_size\";i:1834;s:7:\"percent\";d:78.26;}s:17:\"full@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:119:\"This file is an animated gif: since Imagify does not support animated webp, webp creation for animated gif is disabled.\";}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8435;s:14:\"optimized_size\";i:2209;s:7:\"percent\";d:73.81;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4304;s:14:\"optimized_size\";i:1043;s:7:\"percent\";d:75.77;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11754;s:14:\"optimized_size\";i:3308;s:7:\"percent\";d:71.86;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:79251;s:14:\"optimized_size\";i:32518;s:7:\"percent\";d:58.97;}}'),(100949,1218,'_imagify_optimization_level','1'),(100950,1218,'_imagify_status','success'),(100951,1218,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:69778;s:14:\"optimized_size\";i:52993;s:7:\"percent\";d:24.05;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7793;s:14:\"optimized_size\";i:2154;s:7:\"percent\";d:72.36;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1766;s:14:\"optimized_size\";i:520;s:7:\"percent\";d:70.55;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7867;s:14:\"optimized_size\";i:1790;s:7:\"percent\";d:77.25;}s:17:\"full@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:119:\"This file is an animated gif: since Imagify does not support animated webp, webp creation for animated gif is disabled.\";}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7867;s:14:\"optimized_size\";i:1955;s:7:\"percent\";d:75.15;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1766;s:14:\"optimized_size\";i:970;s:7:\"percent\";d:45.07;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7793;s:14:\"optimized_size\";i:3406;s:7:\"percent\";d:56.29;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:104630;s:14:\"optimized_size\";i:63788;s:7:\"percent\";d:39.03;}}'),(100952,1215,'_imagify_optimization_level','1'),(100953,1215,'_imagify_status','already_optimized'),(100954,1215,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:42137;s:14:\"optimized_size\";i:27070;s:7:\"percent\";d:35.76;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:70877;s:14:\"optimized_size\";i:41992;s:7:\"percent\";d:40.75;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6634;s:14:\"optimized_size\";i:3680;s:7:\"percent\";d:44.53;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16160;s:14:\"optimized_size\";i:8804;s:7:\"percent\";d:45.52;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:91128;s:14:\"optimized_size\";i:64372;s:7:\"percent\";d:29.36;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:226936;s:14:\"optimized_size\";i:145918;s:7:\"percent\";d:35.7;}}'),(100955,1195,'_imagify_optimization_level','1'),(100956,1195,'_imagify_status','success'),(100957,1195,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:93068;s:14:\"optimized_size\";i:64927;s:7:\"percent\";d:30.24;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15947;s:14:\"optimized_size\";i:2116;s:7:\"percent\";d:86.73;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:965;s:14:\"optimized_size\";i:424;s:7:\"percent\";d:56.06;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10491;s:14:\"optimized_size\";i:1974;s:7:\"percent\";d:81.18;}s:17:\"full@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:119:\"This file is an animated gif: since Imagify does not support animated webp, webp creation for animated gif is disabled.\";}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10491;s:14:\"optimized_size\";i:2121;s:7:\"percent\";d:79.78;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:965;s:14:\"optimized_size\";i:741;s:7:\"percent\";d:23.21;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15947;s:14:\"optimized_size\";i:3203;s:7:\"percent\";d:79.91;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:147874;s:14:\"optimized_size\";i:75506;s:7:\"percent\";d:48.94;}}'),(100958,1184,'_imagify_optimization_level','1'),(100959,1184,'_imagify_status','already_optimized'),(100960,1184,'_imagify_data','a:2:{s:5:\"sizes\";a:7:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17603;s:14:\"optimized_size\";i:10604;s:7:\"percent\";d:39.76;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22260;s:14:\"optimized_size\";i:15198;s:7:\"percent\";d:31.73;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4572;s:14:\"optimized_size\";i:2838;s:7:\"percent\";d:37.93;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:42442;s:14:\"optimized_size\";i:20268;s:7:\"percent\";d:52.25;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7071;s:14:\"optimized_size\";i:5338;s:7:\"percent\";d:24.51;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34204;s:14:\"optimized_size\";i:26222;s:7:\"percent\";d:23.34;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:128152;s:14:\"optimized_size\";i:80468;s:7:\"percent\";d:37.21;}}'),(100961,1118,'_imagify_optimization_level','1'),(100962,1118,'_imagify_status','success'),(100963,1118,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52365;s:14:\"optimized_size\";i:35531;s:7:\"percent\";d:32.15;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26025;s:14:\"optimized_size\";i:5660;s:7:\"percent\";d:78.25;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10940;s:14:\"optimized_size\";i:1898;s:7:\"percent\";d:82.65;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4054;s:14:\"optimized_size\";i:1112;s:7:\"percent\";d:72.57;}s:17:\"full@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:119:\"This file is an animated gif: since Imagify does not support animated webp, webp creation for animated gif is disabled.\";}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4054;s:14:\"optimized_size\";i:1103;s:7:\"percent\";d:72.79;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10940;s:14:\"optimized_size\";i:2282;s:7:\"percent\";d:79.14;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26025;s:14:\"optimized_size\";i:5940;s:7:\"percent\";d:77.18;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:134403;s:14:\"optimized_size\";i:53526;s:7:\"percent\";d:60.17;}}'),(100964,1177,'_imagify_optimization_level','1'),(100965,1177,'_imagify_status','success'),(100966,1177,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:104494;s:14:\"optimized_size\";i:76069;s:7:\"percent\";d:27.2;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:77504;s:14:\"optimized_size\";i:11306;s:7:\"percent\";d:85.41;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:126556;s:14:\"optimized_size\";i:15864;s:7:\"percent\";d:87.46;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7667;s:14:\"optimized_size\";i:1794;s:7:\"percent\";d:76.6;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23724;s:14:\"optimized_size\";i:3906;s:7:\"percent\";d:83.54;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:104494;s:14:\"optimized_size\";i:19710;s:7:\"percent\";d:81.14;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23724;s:14:\"optimized_size\";i:15812;s:7:\"percent\";d:33.35;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7667;s:14:\"optimized_size\";i:5826;s:7:\"percent\";d:24.01;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:126556;s:14:\"optimized_size\";i:77237;s:7:\"percent\";d:38.97;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:77504;s:14:\"optimized_size\";i:54346;s:7:\"percent\";d:29.88;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:679890;s:14:\"optimized_size\";i:281870;s:7:\"percent\";d:58.54;}}'),(100967,1104,'_imagify_optimization_level','1'),(100968,1104,'_imagify_status','already_optimized'),(100969,1104,'_imagify_data','a:2:{s:5:\"sizes\";a:7:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14556;s:14:\"optimized_size\";i:7818;s:7:\"percent\";d:46.29;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46752;s:14:\"optimized_size\";i:18494;s:7:\"percent\";d:60.44;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22422;s:14:\"optimized_size\";i:14024;s:7:\"percent\";d:37.45;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7135;s:14:\"optimized_size\";i:5118;s:7:\"percent\";d:28.27;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3662;s:14:\"optimized_size\";i:2258;s:7:\"percent\";d:38.34;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33358;s:14:\"optimized_size\";i:23680;s:7:\"percent\";d:29.01;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:127885;s:14:\"optimized_size\";i:71392;s:7:\"percent\";d:44.17;}}'),(100970,1048,'_imagify_optimization_level','1'),(100971,1048,'_imagify_status','success'),(100972,1048,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:892357;s:14:\"optimized_size\";i:705593;s:7:\"percent\";d:20.93;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25925;s:14:\"optimized_size\";i:11094;s:7:\"percent\";d:57.21;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61591;s:14:\"optimized_size\";i:23228;s:7:\"percent\";d:62.29;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39947;s:14:\"optimized_size\";i:17192;s:7:\"percent\";d:56.96;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10079;s:14:\"optimized_size\";i:5460;s:7:\"percent\";d:45.83;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5491;s:14:\"optimized_size\";i:2638;s:7:\"percent\";d:51.96;}s:17:\"full@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:119:\"This file is an animated gif: since Imagify does not support animated webp, webp creation for animated gif is disabled.\";}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5491;s:14:\"optimized_size\";i:3651;s:7:\"percent\";d:33.51;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10079;s:14:\"optimized_size\";i:7217;s:7:\"percent\";d:28.4;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39947;s:14:\"optimized_size\";i:29187;s:7:\"percent\";d:26.94;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61591;s:14:\"optimized_size\";i:42270;s:7:\"percent\";d:31.37;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25925;s:14:\"optimized_size\";i:18653;s:7:\"percent\";d:28.05;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1178423;s:14:\"optimized_size\";i:866183;s:7:\"percent\";d:26.5;}}'),(100973,1030,'_imagify_optimization_level','1'),(100974,1030,'_imagify_status','success'),(100975,1030,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:53862;s:14:\"optimized_size\";i:47777;s:7:\"percent\";d:11.3;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:66583;s:14:\"optimized_size\";i:11344;s:7:\"percent\";d:82.96;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:89494;s:14:\"optimized_size\";i:13876;s:7:\"percent\";d:84.5;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18884;s:14:\"optimized_size\";i:5236;s:7:\"percent\";d:72.27;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8576;s:14:\"optimized_size\";i:3082;s:7:\"percent\";d:64.06;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:53862;s:14:\"optimized_size\";i:16688;s:7:\"percent\";d:69.02;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8576;s:14:\"optimized_size\";i:7371;s:7:\"percent\";d:14.05;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18884;s:14:\"optimized_size\";i:17727;s:7:\"percent\";d:6.13;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:89494;s:14:\"optimized_size\";i:82242;s:7:\"percent\";d:8.1;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:66583;s:14:\"optimized_size\";i:58742;s:7:\"percent\";d:11.78;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:474798;s:14:\"optimized_size\";i:264085;s:7:\"percent\";d:44.38;}}'),(100976,1014,'_imagify_optimization_level','1'),(100977,1014,'_imagify_status','already_optimized'),(100978,1014,'_imagify_data','a:2:{s:5:\"sizes\";a:7:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6375;s:14:\"optimized_size\";i:3516;s:7:\"percent\";d:44.85;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23859;s:14:\"optimized_size\";i:9680;s:7:\"percent\";d:59.43;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15381;s:14:\"optimized_size\";i:7214;s:7:\"percent\";d:53.1;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3747;s:14:\"optimized_size\";i:2558;s:7:\"percent\";d:31.73;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1178;s:14:\"optimized_size\";i:968;s:7:\"percent\";d:17.83;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36927;s:14:\"optimized_size\";i:24470;s:7:\"percent\";d:33.73;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:87467;s:14:\"optimized_size\";i:48406;s:7:\"percent\";d:44.66;}}'),(100979,1011,'_imagify_optimization_level','1'),(100980,1011,'_imagify_status','success'),(100981,1011,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:71098;s:14:\"optimized_size\";i:38839;s:7:\"percent\";d:45.37;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26638;s:14:\"optimized_size\";i:14202;s:7:\"percent\";d:46.69;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30494;s:14:\"optimized_size\";i:19400;s:7:\"percent\";d:36.38;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13371;s:14:\"optimized_size\";i:7372;s:7:\"percent\";d:44.87;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7505;s:14:\"optimized_size\";i:4184;s:7:\"percent\";d:44.25;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:71098;s:14:\"optimized_size\";i:22162;s:7:\"percent\";d:68.83;}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:6:\"medium\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30494;s:14:\"optimized_size\";i:24046;s:7:\"percent\";d:21.15;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26638;s:14:\"optimized_size\";i:16886;s:7:\"percent\";d:36.61;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:277336;s:14:\"optimized_size\";i:147091;s:7:\"percent\";d:46.96;}}'),(100982,1008,'_imagify_optimization_level','1'),(100983,1008,'_imagify_status','success'),(100984,1008,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:59949;s:14:\"optimized_size\";i:45996;s:7:\"percent\";d:23.27;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7097;s:14:\"optimized_size\";i:4612;s:7:\"percent\";d:35.01;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:49618;s:14:\"optimized_size\";i:15166;s:7:\"percent\";d:69.43;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33988;s:14:\"optimized_size\";i:10562;s:7:\"percent\";d:68.92;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6660;s:14:\"optimized_size\";i:3302;s:7:\"percent\";d:50.42;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1491;s:14:\"optimized_size\";i:990;s:7:\"percent\";d:33.6;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:59949;s:14:\"optimized_size\";i:23754;s:7:\"percent\";d:60.38;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1491;s:14:\"optimized_size\";i:1092;s:7:\"percent\";d:26.76;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6660;s:14:\"optimized_size\";i:5545;s:7:\"percent\";d:16.74;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33988;s:14:\"optimized_size\";i:27902;s:7:\"percent\";d:17.91;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:49618;s:14:\"optimized_size\";i:40407;s:7:\"percent\";d:18.56;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7097;s:14:\"optimized_size\";i:5235;s:7:\"percent\";d:26.24;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:317606;s:14:\"optimized_size\";i:184563;s:7:\"percent\";d:41.89;}}'),(100985,1003,'_imagify_optimization_level','1'),(100986,1003,'_imagify_status','success'),(100987,1003,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30063;s:14:\"optimized_size\";i:28263;s:7:\"percent\";d:5.99;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29903;s:14:\"optimized_size\";i:10128;s:7:\"percent\";d:66.13;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15840;s:14:\"optimized_size\";i:5210;s:7:\"percent\";d:67.11;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9261;s:14:\"optimized_size\";i:2838;s:7:\"percent\";d:69.36;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30063;s:14:\"optimized_size\";i:10312;s:7:\"percent\";d:65.7;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9261;s:14:\"optimized_size\";i:8082;s:7:\"percent\";d:12.73;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15840;s:14:\"optimized_size\";i:15066;s:7:\"percent\";d:4.89;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29903;s:14:\"optimized_size\";i:27957;s:7:\"percent\";d:6.51;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:170134;s:14:\"optimized_size\";i:107856;s:7:\"percent\";d:36.61;}}'),(100988,997,'_imagify_optimization_level','1'),(100989,997,'_imagify_status','already_optimized'),(100990,997,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:60949;s:14:\"optimized_size\";i:5582;s:7:\"percent\";d:90.84;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:104033;s:14:\"optimized_size\";i:11260;s:7:\"percent\";d:89.18;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16116;s:14:\"optimized_size\";i:2976;s:7:\"percent\";d:81.53;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5108;s:14:\"optimized_size\";i:1144;s:7:\"percent\";d:77.6;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:119916;s:14:\"optimized_size\";i:17578;s:7:\"percent\";d:85.34;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:306122;s:14:\"optimized_size\";i:38540;s:7:\"percent\";d:87.41;}}'),(100991,977,'_imagify_optimization_level','1'),(100992,977,'_imagify_status','success'),(100993,977,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:876;s:14:\"optimized_size\";i:758;s:7:\"percent\";d:13.47;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:876;s:14:\"optimized_size\";i:1278;s:7:\"percent\";d:-45.89;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1752;s:14:\"optimized_size\";i:2036;s:7:\"percent\";d:-16.21;}}'),(100994,976,'_imagify_optimization_level','1'),(100995,976,'_imagify_status','success'),(100996,976,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:934;s:14:\"optimized_size\";i:736;s:7:\"percent\";d:21.2;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:934;s:14:\"optimized_size\";i:782;s:7:\"percent\";d:16.27;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1868;s:14:\"optimized_size\";i:1518;s:7:\"percent\";d:18.74;}}'),(100997,975,'_imagify_optimization_level','1'),(100998,975,'_imagify_status','success'),(100999,975,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1379;s:14:\"optimized_size\";i:1159;s:7:\"percent\";d:15.95;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1379;s:14:\"optimized_size\";i:1248;s:7:\"percent\";d:9.5;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2758;s:14:\"optimized_size\";i:2407;s:7:\"percent\";d:12.73;}}'),(101000,974,'_imagify_optimization_level','1'),(101001,974,'_imagify_status','success'),(101002,974,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1012;s:14:\"optimized_size\";i:845;s:7:\"percent\";d:16.5;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1012;s:14:\"optimized_size\";i:854;s:7:\"percent\";d:15.61;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2024;s:14:\"optimized_size\";i:1699;s:7:\"percent\";d:16.06;}}'),(101003,971,'_imagify_optimization_level','1'),(101004,971,'_imagify_status','success'),(101005,971,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:851;s:14:\"optimized_size\";i:769;s:7:\"percent\";d:9.64;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:851;s:14:\"optimized_size\";i:1288;s:7:\"percent\";d:-51.35;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1702;s:14:\"optimized_size\";i:2057;s:7:\"percent\";d:-20.86;}}'),(101006,973,'_imagify_optimization_level','1'),(101007,973,'_imagify_status','success'),(101008,973,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1147;s:14:\"optimized_size\";i:948;s:7:\"percent\";d:17.35;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1147;s:14:\"optimized_size\";i:1008;s:7:\"percent\";d:12.12;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2294;s:14:\"optimized_size\";i:1956;s:7:\"percent\";d:14.73;}}'),(101009,972,'_imagify_optimization_level','1'),(101010,972,'_imagify_status','success'),(101011,972,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1998;s:14:\"optimized_size\";i:1704;s:7:\"percent\";d:14.71;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1998;s:14:\"optimized_size\";i:3336;s:7:\"percent\";d:-66.97;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3996;s:14:\"optimized_size\";i:5040;s:7:\"percent\";d:-26.13;}}'),(101012,969,'_imagify_optimization_level','1'),(101013,969,'_imagify_status','success'),(101014,969,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:693;s:14:\"optimized_size\";i:653;s:7:\"percent\";d:5.77;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:693;s:14:\"optimized_size\";i:1062;s:7:\"percent\";d:-53.25;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1386;s:14:\"optimized_size\";i:1715;s:7:\"percent\";d:-23.74;}}'),(101015,970,'_imagify_optimization_level','1'),(101016,970,'_imagify_status','success'),(101017,970,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1702;s:14:\"optimized_size\";i:1445;s:7:\"percent\";d:15.1;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1702;s:14:\"optimized_size\";i:2744;s:7:\"percent\";d:-61.22;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3404;s:14:\"optimized_size\";i:4189;s:7:\"percent\";d:-23.06;}}'),(101018,949,'_imagify_optimization_level','1'),(101019,949,'_imagify_status','success'),(101020,949,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15347;s:14:\"optimized_size\";i:11854;s:7:\"percent\";d:22.76;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:43289;s:14:\"optimized_size\";i:6190;s:7:\"percent\";d:85.7;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:93529;s:14:\"optimized_size\";i:9452;s:7:\"percent\";d:89.89;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:58957;s:14:\"optimized_size\";i:7418;s:7:\"percent\";d:87.42;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10197;s:14:\"optimized_size\";i:2946;s:7:\"percent\";d:71.11;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3637;s:14:\"optimized_size\";i:1702;s:7:\"percent\";d:53.2;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15347;s:14:\"optimized_size\";i:11040;s:7:\"percent\";d:28.06;}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:6:\"medium\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:58957;s:14:\"optimized_size\";i:33877;s:7:\"percent\";d:42.54;}s:5:\"large\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:7:\"feature\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:299260;s:14:\"optimized_size\";i:84479;s:7:\"percent\";d:71.77;}}'),(101021,968,'_imagify_optimization_level','1'),(101022,968,'_imagify_status','success'),(101023,968,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5969;s:14:\"optimized_size\";i:4417;s:7:\"percent\";d:26;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2333;s:14:\"optimized_size\";i:1228;s:7:\"percent\";d:47.36;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5969;s:14:\"optimized_size\";i:2000;s:7:\"percent\";d:66.49;}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:14271;s:14:\"optimized_size\";i:7645;s:7:\"percent\";d:46.43;}}'),(101024,848,'_imagify_optimization_level','1'),(101025,848,'_imagify_status','success'),(101026,848,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:108592;s:14:\"optimized_size\";i:31528;s:7:\"percent\";d:70.97;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8905;s:14:\"optimized_size\";i:7574;s:7:\"percent\";d:14.95;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11492;s:14:\"optimized_size\";i:9362;s:7:\"percent\";d:18.53;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7754;s:14:\"optimized_size\";i:6248;s:7:\"percent\";d:19.42;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2417;s:14:\"optimized_size\";i:2280;s:7:\"percent\";d:5.67;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1814;s:14:\"optimized_size\";i:1892;s:7:\"percent\";d:-4.3;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17799;s:14:\"optimized_size\";i:24380;s:7:\"percent\";d:-36.97;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1814;s:14:\"optimized_size\";i:1496;s:7:\"percent\";d:17.53;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2417;s:14:\"optimized_size\";i:1891;s:7:\"percent\";d:21.76;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7754;s:14:\"optimized_size\";i:6788;s:7:\"percent\";d:12.46;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11492;s:14:\"optimized_size\";i:8682;s:7:\"percent\";d:24.45;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8905;s:14:\"optimized_size\";i:7336;s:7:\"percent\";d:17.62;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:191155;s:14:\"optimized_size\";i:109457;s:7:\"percent\";d:42.74;}}'),(101027,868,'_imagify_optimization_level','1'),(101028,868,'_imagify_status','already_optimized'),(101029,868,'_imagify_data','a:2:{s:5:\"sizes\";a:7:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6690;s:14:\"optimized_size\";i:4716;s:7:\"percent\";d:29.51;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28247;s:14:\"optimized_size\";i:8918;s:7:\"percent\";d:68.43;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34181;s:14:\"optimized_size\";i:6668;s:7:\"percent\";d:80.49;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5371;s:14:\"optimized_size\";i:2900;s:7:\"percent\";d:46.01;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5031;s:14:\"optimized_size\";i:1470;s:7:\"percent\";d:70.78;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15901;s:14:\"optimized_size\";i:10658;s:7:\"percent\";d:32.97;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:95421;s:14:\"optimized_size\";i:35330;s:7:\"percent\";d:62.97;}}'),(101030,847,'_imagify_optimization_level','1'),(101031,847,'_imagify_status','success'),(101032,847,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4698;s:14:\"optimized_size\";i:3756;s:7:\"percent\";d:20.05;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8905;s:14:\"optimized_size\";i:7574;s:7:\"percent\";d:14.95;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11492;s:14:\"optimized_size\";i:9362;s:7:\"percent\";d:18.53;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7754;s:14:\"optimized_size\";i:6248;s:7:\"percent\";d:19.42;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4725;s:14:\"optimized_size\";i:5234;s:7:\"percent\";d:-10.77;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1808;s:14:\"optimized_size\";i:1992;s:7:\"percent\";d:-10.18;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4698;s:14:\"optimized_size\";i:3944;s:7:\"percent\";d:16.05;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1808;s:14:\"optimized_size\";i:1551;s:7:\"percent\";d:14.21;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4725;s:14:\"optimized_size\";i:3919;s:7:\"percent\";d:17.06;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7754;s:14:\"optimized_size\";i:6788;s:7:\"percent\";d:12.46;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11492;s:14:\"optimized_size\";i:8682;s:7:\"percent\";d:24.45;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8905;s:14:\"optimized_size\";i:7336;s:7:\"percent\";d:17.62;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:78764;s:14:\"optimized_size\";i:66386;s:7:\"percent\";d:15.72;}}'),(101033,845,'_imagify_optimization_level','1'),(101034,845,'_imagify_status','already_optimized'),(101035,845,'_imagify_data','a:2:{s:5:\"sizes\";a:7:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18558;s:14:\"optimized_size\";i:6672;s:7:\"percent\";d:64.05;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27734;s:14:\"optimized_size\";i:10912;s:7:\"percent\";d:60.65;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20415;s:14:\"optimized_size\";i:8330;s:7:\"percent\";d:59.2;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6657;s:14:\"optimized_size\";i:3530;s:7:\"percent\";d:46.97;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5030;s:14:\"optimized_size\";i:2256;s:7:\"percent\";d:55.15;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12136;s:14:\"optimized_size\";i:5788;s:7:\"percent\";d:52.31;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:90530;s:14:\"optimized_size\";i:37488;s:7:\"percent\";d:58.59;}}'),(101036,840,'_imagify_optimization_level','1'),(101037,840,'_imagify_status','success'),(101038,840,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:47781;s:14:\"optimized_size\";i:23585;s:7:\"percent\";d:50.64;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24358;s:14:\"optimized_size\";i:13344;s:7:\"percent\";d:45.22;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26581;s:14:\"optimized_size\";i:17058;s:7:\"percent\";d:35.83;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10644;s:14:\"optimized_size\";i:5494;s:7:\"percent\";d:48.38;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5073;s:14:\"optimized_size\";i:2624;s:7:\"percent\";d:48.28;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:47781;s:14:\"optimized_size\";i:23936;s:7:\"percent\";d:49.9;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5073;s:14:\"optimized_size\";i:3768;s:7:\"percent\";d:25.72;}s:6:\"medium\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:12:\"medium_large\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24358;s:14:\"optimized_size\";i:15091;s:7:\"percent\";d:38.04;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:191649;s:14:\"optimized_size\";i:104900;s:7:\"percent\";d:45.26;}}'),(101039,820,'_imagify_optimization_level','1'),(101040,820,'_imagify_status','success'),(101041,820,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:159510;s:14:\"optimized_size\";i:78643;s:7:\"percent\";d:50.7;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32783;s:14:\"optimized_size\";i:14560;s:7:\"percent\";d:55.59;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:73044;s:14:\"optimized_size\";i:31756;s:7:\"percent\";d:56.52;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:43842;s:14:\"optimized_size\";i:21742;s:7:\"percent\";d:50.41;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10747;s:14:\"optimized_size\";i:5266;s:7:\"percent\";d:51;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5492;s:14:\"optimized_size\";i:2630;s:7:\"percent\";d:52.11;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:159510;s:14:\"optimized_size\";i:68150;s:7:\"percent\";d:57.28;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5492;s:14:\"optimized_size\";i:3741;s:7:\"percent\";d:31.88;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10747;s:14:\"optimized_size\";i:7148;s:7:\"percent\";d:33.49;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:43842;s:14:\"optimized_size\";i:26823;s:7:\"percent\";d:38.82;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:73044;s:14:\"optimized_size\";i:40272;s:7:\"percent\";d:44.87;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32783;s:14:\"optimized_size\";i:18710;s:7:\"percent\";d:42.93;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:650836;s:14:\"optimized_size\";i:319441;s:7:\"percent\";d:50.92;}}'),(101042,816,'_imagify_optimization_level','1'),(101043,816,'_imagify_status','success'),(101044,816,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:97827;s:14:\"optimized_size\";i:94083;s:7:\"percent\";d:3.83;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:75122;s:14:\"optimized_size\";i:13322;s:7:\"percent\";d:82.27;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24653;s:14:\"optimized_size\";i:4512;s:7:\"percent\";d:81.7;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12543;s:14:\"optimized_size\";i:2208;s:7:\"percent\";d:82.4;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:97827;s:14:\"optimized_size\";i:17930;s:7:\"percent\";d:81.67;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12543;s:14:\"optimized_size\";i:9210;s:7:\"percent\";d:26.57;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24653;s:14:\"optimized_size\";i:19943;s:7:\"percent\";d:19.11;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:75122;s:14:\"optimized_size\";i:70820;s:7:\"percent\";d:5.73;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:420290;s:14:\"optimized_size\";i:232028;s:7:\"percent\";d:44.79;}}'),(101045,802,'_imagify_optimization_level','1'),(101046,802,'_imagify_status','success'),(101047,802,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4398;s:14:\"optimized_size\";i:3529;s:7:\"percent\";d:19.76;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4135;s:14:\"optimized_size\";i:5070;s:7:\"percent\";d:-22.61;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4398;s:14:\"optimized_size\";i:5368;s:7:\"percent\";d:-22.06;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4135;s:14:\"optimized_size\";i:3411;s:7:\"percent\";d:17.51;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:17066;s:14:\"optimized_size\";i:17378;s:7:\"percent\";d:-1.83;}}'),(101048,801,'_imagify_optimization_level','1'),(101049,801,'_imagify_status','success'),(101050,801,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5897;s:14:\"optimized_size\";i:5869;s:7:\"percent\";d:0.47;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6641;s:14:\"optimized_size\";i:8900;s:7:\"percent\";d:-34.02;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3047;s:14:\"optimized_size\";i:3756;s:7:\"percent\";d:-23.27;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5897;s:14:\"optimized_size\";i:8090;s:7:\"percent\";d:-37.19;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3047;s:14:\"optimized_size\";i:2373;s:7:\"percent\";d:22.12;}s:6:\"medium\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:24529;s:14:\"optimized_size\";i:28988;s:7:\"percent\";d:-18.18;}}'),(101051,800,'_imagify_optimization_level','1'),(101052,800,'_imagify_status','success'),(101053,800,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3793;s:14:\"optimized_size\";i:2252;s:7:\"percent\";d:40.63;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7022;s:14:\"optimized_size\";i:2056;s:7:\"percent\";d:70.72;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5119;s:14:\"optimized_size\";i:1522;s:7:\"percent\";d:70.27;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3793;s:14:\"optimized_size\";i:1014;s:7:\"percent\";d:73.27;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5119;s:14:\"optimized_size\";i:4328;s:7:\"percent\";d:15.45;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7022;s:14:\"optimized_size\";i:5331;s:7:\"percent\";d:24.08;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:31868;s:14:\"optimized_size\";i:16503;s:7:\"percent\";d:48.21;}}'),(101054,798,'_imagify_optimization_level','0'),(101055,798,'_imagify_status','success'),(101056,798,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2686;s:14:\"optimized_size\";i:2678;s:7:\"percent\";d:0.3;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6030;s:14:\"optimized_size\";i:13550;s:7:\"percent\";d:-124.71;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2487;s:14:\"optimized_size\";i:4342;s:7:\"percent\";d:-74.59;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2686;s:14:\"optimized_size\";i:6068;s:7:\"percent\";d:-125.91;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2487;s:14:\"optimized_size\";i:2479;s:7:\"percent\";d:0.32;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6030;s:14:\"optimized_size\";i:6022;s:7:\"percent\";d:0.13;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:22406;s:14:\"optimized_size\";i:35139;s:7:\"percent\";d:-56.83;}}'),(101057,799,'_imagify_optimization_level','0'),(101058,799,'_imagify_status','success'),(101059,799,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3348;s:14:\"optimized_size\";i:3340;s:7:\"percent\";d:0.24;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6749;s:14:\"optimized_size\";i:18122;s:7:\"percent\";d:-168.51;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5087;s:14:\"optimized_size\";i:13036;s:7:\"percent\";d:-156.26;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3348;s:14:\"optimized_size\";i:8092;s:7:\"percent\";d:-141.7;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5087;s:14:\"optimized_size\";i:5079;s:7:\"percent\";d:0.16;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6749;s:14:\"optimized_size\";i:6741;s:7:\"percent\";d:0.12;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:30368;s:14:\"optimized_size\";i:54410;s:7:\"percent\";d:-79.17;}}'),(101060,796,'_imagify_optimization_level','1'),(101061,796,'_imagify_status','already_optimized'),(101062,796,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2745;s:14:\"optimized_size\";i:3130;s:7:\"percent\";d:-14.03;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2745;s:14:\"optimized_size\";i:3130;s:7:\"percent\";d:-14.03;}}'),(101063,797,'_imagify_optimization_level','1'),(101064,797,'_imagify_status','success'),(101065,797,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3175;s:14:\"optimized_size\";i:2277;s:7:\"percent\";d:28.28;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3175;s:14:\"optimized_size\";i:1172;s:7:\"percent\";d:63.09;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:6350;s:14:\"optimized_size\";i:3449;s:7:\"percent\";d:45.69;}}'),(101066,795,'_imagify_optimization_level','1'),(101067,795,'_imagify_status','success'),(101068,795,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3637;s:14:\"optimized_size\";i:2626;s:7:\"percent\";d:27.8;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7966;s:14:\"optimized_size\";i:9410;s:7:\"percent\";d:-18.13;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4164;s:14:\"optimized_size\";i:4680;s:7:\"percent\";d:-12.39;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3637;s:14:\"optimized_size\";i:3734;s:7:\"percent\";d:-2.67;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4164;s:14:\"optimized_size\";i:3236;s:7:\"percent\";d:22.29;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7966;s:14:\"optimized_size\";i:6670;s:7:\"percent\";d:16.27;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:31534;s:14:\"optimized_size\";i:30356;s:7:\"percent\";d:3.74;}}'),(101069,794,'_imagify_optimization_level','1'),(101070,794,'_imagify_status','success'),(101071,794,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3256;s:14:\"optimized_size\";i:2278;s:7:\"percent\";d:30.04;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3256;s:14:\"optimized_size\";i:1468;s:7:\"percent\";d:54.91;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:6512;s:14:\"optimized_size\";i:3746;s:7:\"percent\";d:42.48;}}'),(101072,790,'_imagify_optimization_level','1'),(101073,790,'_imagify_status','already_optimized'),(101074,790,'_imagify_data','a:2:{s:5:\"sizes\";a:7:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14702;s:14:\"optimized_size\";i:8740;s:7:\"percent\";d:40.55;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21971;s:14:\"optimized_size\";i:12218;s:7:\"percent\";d:44.39;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13779;s:14:\"optimized_size\";i:7706;s:7:\"percent\";d:44.07;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3972;s:14:\"optimized_size\";i:2072;s:7:\"percent\";d:47.83;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2882;s:14:\"optimized_size\";i:1524;s:7:\"percent\";d:47.12;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:62959;s:14:\"optimized_size\";i:36380;s:7:\"percent\";d:42.22;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:120265;s:14:\"optimized_size\";i:68640;s:7:\"percent\";d:42.93;}}'),(101075,793,'_imagify_optimization_level','1'),(101076,793,'_imagify_status','success'),(101077,793,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3523;s:14:\"optimized_size\";i:2477;s:7:\"percent\";d:29.69;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3523;s:14:\"optimized_size\";i:1584;s:7:\"percent\";d:55.04;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:7046;s:14:\"optimized_size\";i:4061;s:7:\"percent\";d:42.36;}}'),(101078,785,'_imagify_optimization_level','1'),(101079,785,'_imagify_status','already_optimized'),(101080,785,'_imagify_data','a:2:{s:5:\"sizes\";a:7:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13977;s:14:\"optimized_size\";i:8138;s:7:\"percent\";d:41.78;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20948;s:14:\"optimized_size\";i:11550;s:7:\"percent\";d:44.86;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13296;s:14:\"optimized_size\";i:7220;s:7:\"percent\";d:45.7;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3758;s:14:\"optimized_size\";i:1906;s:7:\"percent\";d:49.28;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2690;s:14:\"optimized_size\";i:1474;s:7:\"percent\";d:45.2;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61958;s:14:\"optimized_size\";i:35184;s:7:\"percent\";d:43.21;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:116627;s:14:\"optimized_size\";i:65472;s:7:\"percent\";d:43.86;}}'),(101081,787,'_imagify_optimization_level','1'),(101082,787,'_imagify_status','success'),(101083,787,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:43888;s:14:\"optimized_size\";i:26567;s:7:\"percent\";d:39.47;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20718;s:14:\"optimized_size\";i:10580;s:7:\"percent\";d:48.93;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9087;s:14:\"optimized_size\";i:4818;s:7:\"percent\";d:46.98;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:43888;s:14:\"optimized_size\";i:20128;s:7:\"percent\";d:54.14;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9087;s:14:\"optimized_size\";i:6365;s:7:\"percent\";d:29.95;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20718;s:14:\"optimized_size\";i:13241;s:7:\"percent\";d:36.09;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:147386;s:14:\"optimized_size\";i:81699;s:7:\"percent\";d:44.57;}}'),(101084,781,'_imagify_optimization_level','1'),(101085,781,'_imagify_status','success'),(101086,781,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33155;s:14:\"optimized_size\";i:24331;s:7:\"percent\";d:26.61;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13224;s:14:\"optimized_size\";i:6096;s:7:\"percent\";d:53.9;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5188;s:14:\"optimized_size\";i:2508;s:7:\"percent\";d:51.66;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33155;s:14:\"optimized_size\";i:14988;s:7:\"percent\";d:54.79;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5188;s:14:\"optimized_size\";i:3711;s:7:\"percent\";d:28.47;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13224;s:14:\"optimized_size\";i:8769;s:7:\"percent\";d:33.69;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:103134;s:14:\"optimized_size\";i:60403;s:7:\"percent\";d:41.43;}}'),(101087,780,'_imagify_optimization_level','1'),(101088,780,'_imagify_status','success'),(101089,780,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46010;s:14:\"optimized_size\";i:38170;s:7:\"percent\";d:17.04;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20096;s:14:\"optimized_size\";i:10586;s:7:\"percent\";d:47.32;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8862;s:14:\"optimized_size\";i:5068;s:7:\"percent\";d:42.81;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46010;s:14:\"optimized_size\";i:22354;s:7:\"percent\";d:51.41;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8862;s:14:\"optimized_size\";i:6335;s:7:\"percent\";d:28.52;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20096;s:14:\"optimized_size\";i:14154;s:7:\"percent\";d:29.57;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:149936;s:14:\"optimized_size\";i:96667;s:7:\"percent\";d:35.53;}}'),(101090,779,'_imagify_optimization_level','1'),(101091,779,'_imagify_status','success'),(101092,779,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16450;s:14:\"optimized_size\";i:7716;s:7:\"percent\";d:53.09;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9348;s:14:\"optimized_size\";i:3406;s:7:\"percent\";d:63.56;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4473;s:14:\"optimized_size\";i:1914;s:7:\"percent\";d:57.21;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16450;s:14:\"optimized_size\";i:5954;s:7:\"percent\";d:63.81;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4473;s:14:\"optimized_size\";i:2707;s:7:\"percent\";d:39.48;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9348;s:14:\"optimized_size\";i:4803;s:7:\"percent\";d:48.62;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:60542;s:14:\"optimized_size\";i:26500;s:7:\"percent\";d:56.23;}}'),(101093,778,'_imagify_optimization_level','0'),(101094,778,'_imagify_status','success'),(101095,778,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:74665;s:14:\"optimized_size\";i:74657;s:7:\"percent\";d:0.01;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27558;s:14:\"optimized_size\";i:76324;s:7:\"percent\";d:-176.96;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10302;s:14:\"optimized_size\";i:29166;s:7:\"percent\";d:-183.11;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:74665;s:14:\"optimized_size\";i:196112;s:7:\"percent\";d:-162.66;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10302;s:14:\"optimized_size\";i:10294;s:7:\"percent\";d:0.08;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27558;s:14:\"optimized_size\";i:27550;s:7:\"percent\";d:0.03;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:225050;s:14:\"optimized_size\";i:414103;s:7:\"percent\";d:-84;}}'),(101096,777,'_imagify_optimization_level','1'),(101097,777,'_imagify_status','success'),(101098,777,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25097;s:14:\"optimized_size\";i:14021;s:7:\"percent\";d:44.13;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12830;s:14:\"optimized_size\";i:6010;s:7:\"percent\";d:53.16;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5743;s:14:\"optimized_size\";i:2912;s:7:\"percent\";d:49.29;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25097;s:14:\"optimized_size\";i:10434;s:7:\"percent\";d:58.43;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5743;s:14:\"optimized_size\";i:3750;s:7:\"percent\";d:34.7;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12830;s:14:\"optimized_size\";i:8184;s:7:\"percent\";d:36.21;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:87340;s:14:\"optimized_size\";i:45311;s:7:\"percent\";d:48.12;}}'),(101099,775,'_imagify_optimization_level','1'),(101100,775,'_imagify_status','success'),(101101,775,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41129;s:14:\"optimized_size\";i:32389;s:7:\"percent\";d:21.25;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16696;s:14:\"optimized_size\";i:8218;s:7:\"percent\";d:50.78;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6866;s:14:\"optimized_size\";i:3742;s:7:\"percent\";d:45.5;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41129;s:14:\"optimized_size\";i:18590;s:7:\"percent\";d:54.8;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6866;s:14:\"optimized_size\";i:5041;s:7:\"percent\";d:26.58;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16696;s:14:\"optimized_size\";i:11472;s:7:\"percent\";d:31.29;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:129382;s:14:\"optimized_size\";i:79452;s:7:\"percent\";d:38.59;}}'),(101102,776,'_imagify_optimization_level','1'),(101103,776,'_imagify_status','success'),(101104,776,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:45916;s:14:\"optimized_size\";i:36057;s:7:\"percent\";d:21.47;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19252;s:14:\"optimized_size\";i:10218;s:7:\"percent\";d:46.92;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7516;s:14:\"optimized_size\";i:4456;s:7:\"percent\";d:40.71;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:45916;s:14:\"optimized_size\";i:21284;s:7:\"percent\";d:53.65;}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19252;s:14:\"optimized_size\";i:13693;s:7:\"percent\";d:28.87;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:137852;s:14:\"optimized_size\";i:85708;s:7:\"percent\";d:37.83;}}'),(101105,772,'_imagify_optimization_level','1'),(101106,772,'_imagify_status','already_optimized'),(101107,772,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30307;s:14:\"optimized_size\";i:19684;s:7:\"percent\";d:35.05;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:60499;s:14:\"optimized_size\";i:34276;s:7:\"percent\";d:43.34;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12746;s:14:\"optimized_size\";i:9626;s:7:\"percent\";d:24.48;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5754;s:14:\"optimized_size\";i:4246;s:7:\"percent\";d:26.21;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:74124;s:14:\"optimized_size\";i:42490;s:7:\"percent\";d:42.68;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:183430;s:14:\"optimized_size\";i:110322;s:7:\"percent\";d:39.86;}}'),(101108,754,'_imagify_optimization_level','1'),(101109,754,'_imagify_status','success'),(101110,754,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34387;s:14:\"optimized_size\";i:17956;s:7:\"percent\";d:47.78;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23482;s:14:\"optimized_size\";i:10296;s:7:\"percent\";d:56.15;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14818;s:14:\"optimized_size\";i:5204;s:7:\"percent\";d:64.88;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6218;s:14:\"optimized_size\";i:2530;s:7:\"percent\";d:59.31;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34387;s:14:\"optimized_size\";i:14748;s:7:\"percent\";d:57.11;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6218;s:14:\"optimized_size\";i:4151;s:7:\"percent\";d:33.24;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14818;s:14:\"optimized_size\";i:8454;s:7:\"percent\";d:42.95;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23482;s:14:\"optimized_size\";i:12862;s:7:\"percent\";d:45.23;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:157810;s:14:\"optimized_size\";i:76201;s:7:\"percent\";d:51.71;}}'),(101111,753,'_imagify_optimization_level','1'),(101112,753,'_imagify_status','success'),(101113,753,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27280;s:14:\"optimized_size\";i:15238;s:7:\"percent\";d:44.14;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17874;s:14:\"optimized_size\";i:7774;s:7:\"percent\";d:56.51;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11351;s:14:\"optimized_size\";i:3944;s:7:\"percent\";d:65.25;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4833;s:14:\"optimized_size\";i:2048;s:7:\"percent\";d:57.62;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27280;s:14:\"optimized_size\";i:11476;s:7:\"percent\";d:57.93;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4833;s:14:\"optimized_size\";i:3324;s:7:\"percent\";d:31.22;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11351;s:14:\"optimized_size\";i:6735;s:7:\"percent\";d:40.67;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17874;s:14:\"optimized_size\";i:10172;s:7:\"percent\";d:43.09;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:122676;s:14:\"optimized_size\";i:60711;s:7:\"percent\";d:50.51;}}'),(101114,740,'_imagify_optimization_level','1'),(101115,740,'_imagify_status','already_optimized'),(101116,740,'_imagify_data','a:2:{s:5:\"sizes\";a:5:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18853;s:14:\"optimized_size\";i:11062;s:7:\"percent\";d:41.32;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12887;s:14:\"optimized_size\";i:5812;s:7:\"percent\";d:54.9;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6200;s:14:\"optimized_size\";i:2688;s:7:\"percent\";d:56.65;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29267;s:14:\"optimized_size\";i:17320;s:7:\"percent\";d:40.82;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:67207;s:14:\"optimized_size\";i:36882;s:7:\"percent\";d:45.12;}}'),(101117,752,'_imagify_optimization_level','1'),(101118,752,'_imagify_status','success'),(101119,752,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32200;s:14:\"optimized_size\";i:17136;s:7:\"percent\";d:46.78;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22091;s:14:\"optimized_size\";i:9270;s:7:\"percent\";d:58.04;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13897;s:14:\"optimized_size\";i:4676;s:7:\"percent\";d:66.35;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5989;s:14:\"optimized_size\";i:2358;s:7:\"percent\";d:60.63;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32200;s:14:\"optimized_size\";i:12922;s:7:\"percent\";d:59.87;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5989;s:14:\"optimized_size\";i:4053;s:7:\"percent\";d:32.33;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13897;s:14:\"optimized_size\";i:7758;s:7:\"percent\";d:44.18;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22091;s:14:\"optimized_size\";i:12037;s:7:\"percent\";d:45.51;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:148354;s:14:\"optimized_size\";i:70210;s:7:\"percent\";d:52.67;}}'),(101120,661,'_imagify_optimization_level','1'),(101121,661,'_imagify_status','success'),(101122,661,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23869;s:14:\"optimized_size\";i:11400;s:7:\"percent\";d:52.24;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4857;s:14:\"optimized_size\";i:2180;s:7:\"percent\";d:55.12;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23869;s:14:\"optimized_size\";i:4766;s:7:\"percent\";d:80.03;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4857;s:14:\"optimized_size\";i:3349;s:7:\"percent\";d:31.05;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:57452;s:14:\"optimized_size\";i:21695;s:7:\"percent\";d:62.24;}}'),(101123,660,'_imagify_optimization_level','1'),(101124,660,'_imagify_status','success'),(101125,660,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16331;s:14:\"optimized_size\";i:10652;s:7:\"percent\";d:34.77;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3461;s:14:\"optimized_size\";i:1856;s:7:\"percent\";d:46.37;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16331;s:14:\"optimized_size\";i:4268;s:7:\"percent\";d:73.87;}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:36123;s:14:\"optimized_size\";i:16776;s:7:\"percent\";d:53.56;}}'),(101126,659,'_imagify_optimization_level','1'),(101127,659,'_imagify_status','success'),(101128,659,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23441;s:14:\"optimized_size\";i:10946;s:7:\"percent\";d:53.3;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3359;s:14:\"optimized_size\";i:1198;s:7:\"percent\";d:64.33;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23441;s:14:\"optimized_size\";i:3262;s:7:\"percent\";d:86.08;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3359;s:14:\"optimized_size\";i:1774;s:7:\"percent\";d:47.19;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:53600;s:14:\"optimized_size\";i:17180;s:7:\"percent\";d:67.95;}}'),(101129,654,'_imagify_optimization_level','1'),(101130,654,'_imagify_status','already_optimized'),(101131,654,'_imagify_data','a:2:{s:5:\"sizes\";a:7:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10410;s:14:\"optimized_size\";i:4844;s:7:\"percent\";d:53.47;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19978;s:14:\"optimized_size\";i:9632;s:7:\"percent\";d:51.79;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12786;s:14:\"optimized_size\";i:6264;s:7:\"percent\";d:51.01;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3628;s:14:\"optimized_size\";i:1668;s:7:\"percent\";d:54.02;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2376;s:14:\"optimized_size\";i:990;s:7:\"percent\";d:58.33;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52982;s:14:\"optimized_size\";i:24278;s:7:\"percent\";d:54.18;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:102160;s:14:\"optimized_size\";i:47676;s:7:\"percent\";d:53.33;}}'),(101132,623,'_imagify_optimization_level','1'),(101133,623,'_imagify_status','success'),(101134,623,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3637;s:14:\"optimized_size\";i:2626;s:7:\"percent\";d:27.8;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7064;s:14:\"optimized_size\";i:8580;s:7:\"percent\";d:-21.46;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1981;s:14:\"optimized_size\";i:3406;s:7:\"percent\";d:-71.93;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3637;s:14:\"optimized_size\";i:3734;s:7:\"percent\";d:-2.67;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1981;s:14:\"optimized_size\";i:1903;s:7:\"percent\";d:3.94;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7064;s:14:\"optimized_size\";i:5796;s:7:\"percent\";d:17.95;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:25364;s:14:\"optimized_size\";i:26045;s:7:\"percent\";d:-2.68;}}'),(101135,655,'_imagify_optimization_level','1'),(101136,655,'_imagify_status','already_optimized'),(101137,655,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35578;s:14:\"optimized_size\";i:22546;s:7:\"percent\";d:36.63;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:60223;s:14:\"optimized_size\";i:40162;s:7:\"percent\";d:33.31;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13774;s:14:\"optimized_size\";i:9666;s:7:\"percent\";d:29.82;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6416;s:14:\"optimized_size\";i:4260;s:7:\"percent\";d:33.6;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:67780;s:14:\"optimized_size\";i:54308;s:7:\"percent\";d:19.88;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:183771;s:14:\"optimized_size\";i:130942;s:7:\"percent\";d:28.75;}}'),(101138,621,'_imagify_optimization_level','1'),(101139,621,'_imagify_status','success'),(101140,621,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4001;s:14:\"optimized_size\";i:3653;s:7:\"percent\";d:8.7;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1384;s:14:\"optimized_size\";i:1782;s:7:\"percent\";d:-28.76;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4001;s:14:\"optimized_size\";i:4782;s:7:\"percent\";d:-19.52;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1384;s:14:\"optimized_size\";i:1285;s:7:\"percent\";d:7.15;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:10770;s:14:\"optimized_size\";i:11502;s:7:\"percent\";d:-6.8;}}'),(101141,620,'_imagify_optimization_level','1'),(101142,620,'_imagify_status','success'),(101143,620,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11078;s:14:\"optimized_size\";i:7737;s:7:\"percent\";d:30.16;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7795;s:14:\"optimized_size\";i:4300;s:7:\"percent\";d:44.84;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4106;s:14:\"optimized_size\";i:2236;s:7:\"percent\";d:45.54;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11078;s:14:\"optimized_size\";i:4104;s:7:\"percent\";d:62.95;}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:6:\"medium\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:34057;s:14:\"optimized_size\";i:18377;s:7:\"percent\";d:46.04;}}'),(101144,619,'_imagify_optimization_level','1'),(101145,619,'_imagify_status','already_optimized'),(101146,619,'_imagify_data','a:2:{s:5:\"sizes\";a:7:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6795;s:14:\"optimized_size\";i:2968;s:7:\"percent\";d:56.32;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9402;s:14:\"optimized_size\";i:3830;s:7:\"percent\";d:59.26;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6343;s:14:\"optimized_size\";i:2698;s:7:\"percent\";d:57.46;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1963;s:14:\"optimized_size\";i:918;s:7:\"percent\";d:53.23;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1632;s:14:\"optimized_size\";i:754;s:7:\"percent\";d:53.8;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12022;s:14:\"optimized_size\";i:5000;s:7:\"percent\";d:58.41;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:38157;s:14:\"optimized_size\";i:16168;s:7:\"percent\";d:57.63;}}'),(101147,618,'_imagify_optimization_level','1'),(101148,618,'_imagify_status','success'),(101149,618,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3615;s:14:\"optimized_size\";i:2785;s:7:\"percent\";d:22.96;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1513;s:14:\"optimized_size\";i:1332;s:7:\"percent\";d:11.96;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3615;s:14:\"optimized_size\";i:3058;s:7:\"percent\";d:15.41;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1513;s:14:\"optimized_size\";i:1251;s:7:\"percent\";d:17.32;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:10256;s:14:\"optimized_size\";i:8426;s:7:\"percent\";d:17.84;}}'),(101150,617,'_imagify_optimization_level','1'),(101151,617,'_imagify_status','success'),(101152,617,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2174;s:14:\"optimized_size\";i:1921;s:7:\"percent\";d:11.64;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3791;s:14:\"optimized_size\";i:1982;s:7:\"percent\";d:47.72;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1092;s:14:\"optimized_size\";i:1132;s:7:\"percent\";d:-3.66;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2174;s:14:\"optimized_size\";i:2278;s:7:\"percent\";d:-4.78;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1092;s:14:\"optimized_size\";i:987;s:7:\"percent\";d:9.62;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3791;s:14:\"optimized_size\";i:2656;s:7:\"percent\";d:29.94;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:14114;s:14:\"optimized_size\";i:10956;s:7:\"percent\";d:22.37;}}'),(101153,616,'_imagify_optimization_level','1'),(101154,616,'_imagify_status','already_optimized'),(101155,616,'_imagify_data','a:2:{s:5:\"sizes\";a:7:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17700;s:14:\"optimized_size\";i:18616;s:7:\"percent\";d:-5.18;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:47843;s:14:\"optimized_size\";i:51528;s:7:\"percent\";d:-7.7;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28035;s:14:\"optimized_size\";i:33682;s:7:\"percent\";d:-20.14;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7219;s:14:\"optimized_size\";i:8784;s:7:\"percent\";d:-21.68;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3529;s:14:\"optimized_size\";i:3714;s:7:\"percent\";d:-5.24;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:47722;s:14:\"optimized_size\";i:53084;s:7:\"percent\";d:-11.24;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:152048;s:14:\"optimized_size\";i:169408;s:7:\"percent\";d:-11.42;}}'),(101156,615,'_imagify_optimization_level','1'),(101157,615,'_imagify_status','already_optimized'),(101158,615,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1116;s:14:\"optimized_size\";i:640;s:7:\"percent\";d:42.65;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1116;s:14:\"optimized_size\";i:640;s:7:\"percent\";d:42.65;}}'),(101159,614,'_imagify_optimization_level','1'),(101160,614,'_imagify_status','success'),(101161,614,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:72983;s:14:\"optimized_size\";i:67312;s:7:\"percent\";d:7.77;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26448;s:14:\"optimized_size\";i:35454;s:7:\"percent\";d:-34.05;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:70817;s:14:\"optimized_size\";i:93826;s:7:\"percent\";d:-32.49;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46963;s:14:\"optimized_size\";i:62292;s:7:\"percent\";d:-32.64;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13067;s:14:\"optimized_size\";i:16294;s:7:\"percent\";d:-24.7;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5414;s:14:\"optimized_size\";i:6760;s:7:\"percent\";d:-24.86;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:72983;s:14:\"optimized_size\";i:102398;s:7:\"percent\";d:-40.3;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5414;s:14:\"optimized_size\";i:5044;s:7:\"percent\";d:6.83;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13067;s:14:\"optimized_size\";i:11977;s:7:\"percent\";d:8.34;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46963;s:14:\"optimized_size\";i:43239;s:7:\"percent\";d:7.93;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:70817;s:14:\"optimized_size\";i:64885;s:7:\"percent\";d:8.38;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26448;s:14:\"optimized_size\";i:24417;s:7:\"percent\";d:7.68;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:471384;s:14:\"optimized_size\";i:533898;s:7:\"percent\";d:-13.26;}}'),(101162,613,'_imagify_optimization_level','1'),(101163,613,'_imagify_status','success'),(101164,613,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4549;s:14:\"optimized_size\";i:4177;s:7:\"percent\";d:8.18;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2534;s:14:\"optimized_size\";i:2710;s:7:\"percent\";d:-6.95;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4549;s:14:\"optimized_size\";i:5158;s:7:\"percent\";d:-13.39;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2534;s:14:\"optimized_size\";i:1965;s:7:\"percent\";d:22.45;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:14166;s:14:\"optimized_size\";i:14010;s:7:\"percent\";d:1.1;}}'),(101165,612,'_imagify_optimization_level','1'),(101166,612,'_imagify_status','success'),(101167,612,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3686;s:14:\"optimized_size\";i:3343;s:7:\"percent\";d:9.31;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3477;s:14:\"optimized_size\";i:4958;s:7:\"percent\";d:-42.59;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1674;s:14:\"optimized_size\";i:2192;s:7:\"percent\";d:-30.94;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3686;s:14:\"optimized_size\";i:5628;s:7:\"percent\";d:-52.69;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1674;s:14:\"optimized_size\";i:1463;s:7:\"percent\";d:12.6;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3477;s:14:\"optimized_size\";i:3023;s:7:\"percent\";d:13.06;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:17674;s:14:\"optimized_size\";i:20607;s:7:\"percent\";d:-16.59;}}'),(101168,611,'_imagify_optimization_level','1'),(101169,611,'_imagify_status','success'),(101170,611,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17256;s:14:\"optimized_size\";i:12021;s:7:\"percent\";d:30.34;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4059;s:14:\"optimized_size\";i:3604;s:7:\"percent\";d:11.21;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7850;s:14:\"optimized_size\";i:7328;s:7:\"percent\";d:6.65;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5244;s:14:\"optimized_size\";i:5280;s:7:\"percent\";d:-0.69;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2089;s:14:\"optimized_size\";i:2036;s:7:\"percent\";d:2.54;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1145;s:14:\"optimized_size\";i:1090;s:7:\"percent\";d:4.8;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17256;s:14:\"optimized_size\";i:13542;s:7:\"percent\";d:21.52;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1145;s:14:\"optimized_size\";i:1078;s:7:\"percent\";d:5.85;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2089;s:14:\"optimized_size\";i:2080;s:7:\"percent\";d:0.43;}s:12:\"medium_large\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:5:\"large\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4059;s:14:\"optimized_size\";i:3112;s:7:\"percent\";d:23.33;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:62192;s:14:\"optimized_size\";i:51171;s:7:\"percent\";d:17.72;}}'),(101171,610,'_imagify_optimization_level','1'),(101172,610,'_imagify_status','success'),(101173,610,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36978;s:14:\"optimized_size\";i:31242;s:7:\"percent\";d:15.51;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9446;s:14:\"optimized_size\";i:11974;s:7:\"percent\";d:-26.76;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20477;s:14:\"optimized_size\";i:26942;s:7:\"percent\";d:-31.57;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14493;s:14:\"optimized_size\";i:19630;s:7:\"percent\";d:-35.44;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5558;s:14:\"optimized_size\";i:7126;s:7:\"percent\";d:-28.21;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2952;s:14:\"optimized_size\";i:3634;s:7:\"percent\";d:-23.1;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36978;s:14:\"optimized_size\";i:45968;s:7:\"percent\";d:-24.31;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2952;s:14:\"optimized_size\";i:2562;s:7:\"percent\";d:13.21;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5558;s:14:\"optimized_size\";i:4823;s:7:\"percent\";d:13.22;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14493;s:14:\"optimized_size\";i:12452;s:7:\"percent\";d:14.08;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20477;s:14:\"optimized_size\";i:17000;s:7:\"percent\";d:16.98;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9446;s:14:\"optimized_size\";i:8718;s:7:\"percent\";d:7.71;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:179808;s:14:\"optimized_size\";i:192071;s:7:\"percent\";d:-6.82;}}'),(101174,609,'_imagify_optimization_level','1'),(101175,609,'_imagify_status','success'),(101176,609,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13670;s:14:\"optimized_size\";i:10968;s:7:\"percent\";d:19.77;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6049;s:14:\"optimized_size\";i:6772;s:7:\"percent\";d:-11.95;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15800;s:14:\"optimized_size\";i:14762;s:7:\"percent\";d:6.57;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11075;s:14:\"optimized_size\";i:10874;s:7:\"percent\";d:1.81;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4460;s:14:\"optimized_size\";i:4426;s:7:\"percent\";d:0.76;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2744;s:14:\"optimized_size\";i:2584;s:7:\"percent\";d:5.83;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13670;s:14:\"optimized_size\";i:16562;s:7:\"percent\";d:-21.16;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2744;s:14:\"optimized_size\";i:2229;s:7:\"percent\";d:18.77;}s:6:\"medium\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11075;s:14:\"optimized_size\";i:8470;s:7:\"percent\";d:23.52;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15800;s:14:\"optimized_size\";i:12079;s:7:\"percent\";d:23.55;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6049;s:14:\"optimized_size\";i:4385;s:7:\"percent\";d:27.51;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:103136;s:14:\"optimized_size\";i:94111;s:7:\"percent\";d:8.75;}}'),(101177,608,'_imagify_optimization_level','1'),(101178,608,'_imagify_status','already_optimized'),(101179,608,'_imagify_data','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2607;s:14:\"optimized_size\";i:1336;s:7:\"percent\";d:48.75;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3782;s:14:\"optimized_size\";i:2286;s:7:\"percent\";d:39.56;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:6389;s:14:\"optimized_size\";i:3622;s:7:\"percent\";d:43.31;}}'),(101180,607,'_imagify_optimization_level','1'),(101181,607,'_imagify_status','already_optimized'),(101182,607,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2385;s:14:\"optimized_size\";i:3486;s:7:\"percent\";d:-46.16;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9614;s:14:\"optimized_size\";i:9798;s:7:\"percent\";d:-1.91;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3971;s:14:\"optimized_size\";i:3944;s:7:\"percent\";d:0.68;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:650;s:14:\"optimized_size\";i:924;s:7:\"percent\";d:-42.15;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6686;s:14:\"optimized_size\";i:8250;s:7:\"percent\";d:-23.39;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:23306;s:14:\"optimized_size\";i:26402;s:7:\"percent\";d:-13.28;}}'),(101183,606,'_imagify_optimization_level','1'),(101184,606,'_imagify_status','success'),(101185,606,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:132715;s:14:\"optimized_size\";i:61117;s:7:\"percent\";d:53.95;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18288;s:14:\"optimized_size\";i:9884;s:7:\"percent\";d:45.95;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33129;s:14:\"optimized_size\";i:16684;s:7:\"percent\";d:49.64;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23555;s:14:\"optimized_size\";i:12718;s:7:\"percent\";d:46.01;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6770;s:14:\"optimized_size\";i:4586;s:7:\"percent\";d:32.26;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5188;s:14:\"optimized_size\";i:2958;s:7:\"percent\";d:42.98;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:89585;s:14:\"optimized_size\";i:50482;s:7:\"percent\";d:43.65;}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:6:\"medium\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:12:\"medium_large\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:5:\"large\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:7:\"feature\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:309230;s:14:\"optimized_size\";i:158429;s:7:\"percent\";d:48.77;}}'),(101186,605,'_imagify_optimization_level','1'),(101187,605,'_imagify_status','success'),(101188,605,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2385;s:14:\"optimized_size\";i:2252;s:7:\"percent\";d:5.58;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3052;s:14:\"optimized_size\";i:2468;s:7:\"percent\";d:19.13;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2385;s:14:\"optimized_size\";i:3062;s:7:\"percent\";d:-28.39;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3052;s:14:\"optimized_size\";i:2141;s:7:\"percent\";d:29.85;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:10874;s:14:\"optimized_size\";i:9923;s:7:\"percent\";d:8.75;}}'),(101189,604,'_imagify_optimization_level','1'),(101190,604,'_imagify_status','success'),(101191,604,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28377;s:14:\"optimized_size\";i:25778;s:7:\"percent\";d:9.16;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7558;s:14:\"optimized_size\";i:9476;s:7:\"percent\";d:-25.38;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16045;s:14:\"optimized_size\";i:22570;s:7:\"percent\";d:-40.67;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11484;s:14:\"optimized_size\";i:16842;s:7:\"percent\";d:-46.66;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4301;s:14:\"optimized_size\";i:6266;s:7:\"percent\";d:-45.69;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2196;s:14:\"optimized_size\";i:3134;s:7:\"percent\";d:-42.71;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28377;s:14:\"optimized_size\";i:35568;s:7:\"percent\";d:-25.34;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2196;s:14:\"optimized_size\";i:2045;s:7:\"percent\";d:6.88;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4301;s:14:\"optimized_size\";i:4115;s:7:\"percent\";d:4.32;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11484;s:14:\"optimized_size\";i:10985;s:7:\"percent\";d:4.35;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16045;s:14:\"optimized_size\";i:15015;s:7:\"percent\";d:6.42;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7558;s:14:\"optimized_size\";i:6697;s:7:\"percent\";d:11.39;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:139922;s:14:\"optimized_size\";i:158491;s:7:\"percent\";d:-13.27;}}'),(101192,603,'_imagify_optimization_level','1'),(101193,603,'_imagify_status','already_optimized'),(101194,603,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7365;s:14:\"optimized_size\";i:7640;s:7:\"percent\";d:-3.73;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4461;s:14:\"optimized_size\";i:4444;s:7:\"percent\";d:0.38;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3850;s:14:\"optimized_size\";i:6448;s:7:\"percent\";d:-67.48;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:15676;s:14:\"optimized_size\";i:18532;s:7:\"percent\";d:-18.22;}}'),(101195,602,'_imagify_optimization_level','1'),(101196,602,'_imagify_status','success'),(101197,602,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5378;s:14:\"optimized_size\";i:5125;s:7:\"percent\";d:4.7;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5756;s:14:\"optimized_size\";i:7172;s:7:\"percent\";d:-24.6;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1981;s:14:\"optimized_size\";i:2336;s:7:\"percent\";d:-17.92;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5378;s:14:\"optimized_size\";i:6544;s:7:\"percent\";d:-21.68;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1981;s:14:\"optimized_size\";i:1869;s:7:\"percent\";d:5.65;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5756;s:14:\"optimized_size\";i:4910;s:7:\"percent\";d:14.7;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:26230;s:14:\"optimized_size\";i:27956;s:7:\"percent\";d:-6.58;}}'),(101198,600,'_imagify_optimization_level','1'),(101199,600,'_imagify_status','already_optimized'),(101200,600,'_imagify_data','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3313;s:14:\"optimized_size\";i:1584;s:7:\"percent\";d:52.19;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2176;s:14:\"optimized_size\";i:1952;s:7:\"percent\";d:10.29;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:5489;s:14:\"optimized_size\";i:3536;s:7:\"percent\";d:35.58;}}'),(101201,599,'_imagify_optimization_level','1'),(101202,599,'_imagify_status','success'),(101203,599,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11273;s:14:\"optimized_size\";i:11198;s:7:\"percent\";d:0.67;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6262;s:14:\"optimized_size\";i:10178;s:7:\"percent\";d:-62.54;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6850;s:14:\"optimized_size\";i:9374;s:7:\"percent\";d:-36.85;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3384;s:14:\"optimized_size\";i:4036;s:7:\"percent\";d:-19.27;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11273;s:14:\"optimized_size\";i:15466;s:7:\"percent\";d:-37.2;}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:6:\"medium\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6262;s:14:\"optimized_size\";i:6202;s:7:\"percent\";d:0.96;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:45304;s:14:\"optimized_size\";i:56454;s:7:\"percent\";d:-24.61;}}'),(101204,598,'_imagify_optimization_level','1'),(101205,598,'_imagify_status','success'),(101206,598,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40116;s:14:\"optimized_size\";i:39199;s:7:\"percent\";d:2.29;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39844;s:14:\"optimized_size\";i:37914;s:7:\"percent\";d:4.84;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20493;s:14:\"optimized_size\";i:18372;s:7:\"percent\";d:10.35;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10689;s:14:\"optimized_size\";i:9886;s:7:\"percent\";d:7.51;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40116;s:14:\"optimized_size\";i:37788;s:7:\"percent\";d:5.8;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10689;s:14:\"optimized_size\";i:10359;s:7:\"percent\";d:3.09;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20493;s:14:\"optimized_size\";i:19569;s:7:\"percent\";d:4.51;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39844;s:14:\"optimized_size\";i:39191;s:7:\"percent\";d:1.64;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:222284;s:14:\"optimized_size\";i:212278;s:7:\"percent\";d:4.5;}}'),(101210,596,'_imagify_optimization_level','1'),(101211,596,'_imagify_status','already_optimized'),(101212,596,'_imagify_data','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3972;s:14:\"optimized_size\";i:2046;s:7:\"percent\";d:48.49;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4043;s:14:\"optimized_size\";i:3604;s:7:\"percent\";d:10.86;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:8015;s:14:\"optimized_size\";i:5650;s:7:\"percent\";d:29.51;}}'),(101213,595,'_imagify_optimization_level','1'),(101214,595,'_imagify_status','already_optimized'),(101215,595,'_imagify_data','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4319;s:14:\"optimized_size\";i:2390;s:7:\"percent\";d:44.66;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4354;s:14:\"optimized_size\";i:3672;s:7:\"percent\";d:15.66;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:8673;s:14:\"optimized_size\";i:6062;s:7:\"percent\";d:30.1;}}'),(101216,594,'_imagify_optimization_level','1'),(101217,594,'_imagify_status','success'),(101218,594,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3231;s:14:\"optimized_size\";i:3124;s:7:\"percent\";d:3.31;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2442;s:14:\"optimized_size\";i:1208;s:7:\"percent\";d:50.53;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3231;s:14:\"optimized_size\";i:2808;s:7:\"percent\";d:13.09;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2442;s:14:\"optimized_size\";i:1844;s:7:\"percent\";d:24.49;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:11346;s:14:\"optimized_size\";i:8984;s:7:\"percent\";d:20.82;}}'),(101219,593,'_imagify_optimization_level','1'),(101220,593,'_imagify_status','already_optimized'),(101221,593,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5295;s:14:\"optimized_size\";i:3376;s:7:\"percent\";d:36.24;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:973;s:14:\"optimized_size\";i:1056;s:7:\"percent\";d:-8.53;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5175;s:14:\"optimized_size\";i:6086;s:7:\"percent\";d:-17.6;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:11443;s:14:\"optimized_size\";i:10518;s:7:\"percent\";d:8.08;}}'),(101222,592,'_imagify_optimization_level','1'),(101223,592,'_imagify_status','already_optimized'),(101224,592,'_imagify_data','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8360;s:14:\"optimized_size\";i:4590;s:7:\"percent\";d:45.1;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11098;s:14:\"optimized_size\";i:8424;s:7:\"percent\";d:24.09;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:19458;s:14:\"optimized_size\";i:13014;s:7:\"percent\";d:33.12;}}'),(101225,591,'_imagify_optimization_level','1'),(101226,591,'_imagify_status','already_optimized'),(101227,591,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6096;s:14:\"optimized_size\";i:2240;s:7:\"percent\";d:63.25;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3706;s:14:\"optimized_size\";i:1674;s:7:\"percent\";d:54.83;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8497;s:14:\"optimized_size\";i:4064;s:7:\"percent\";d:52.17;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:18299;s:14:\"optimized_size\";i:7978;s:7:\"percent\";d:56.4;}}'),(101228,590,'_imagify_optimization_level','1'),(101229,590,'_imagify_status','success'),(101230,590,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6599;s:14:\"optimized_size\";i:4228;s:7:\"percent\";d:35.93;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5136;s:14:\"optimized_size\";i:2324;s:7:\"percent\";d:54.75;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6599;s:14:\"optimized_size\";i:3508;s:7:\"percent\";d:46.84;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5136;s:14:\"optimized_size\";i:3401;s:7:\"percent\";d:33.78;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:23470;s:14:\"optimized_size\";i:13461;s:7:\"percent\";d:42.65;}}'),(101231,589,'_imagify_optimization_level','1'),(101232,589,'_imagify_status','already_optimized'),(101233,589,'_imagify_data','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4562;s:14:\"optimized_size\";i:2404;s:7:\"percent\";d:47.3;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3978;s:14:\"optimized_size\";i:3892;s:7:\"percent\";d:2.16;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:8540;s:14:\"optimized_size\";i:6296;s:7:\"percent\";d:26.28;}}'),(101234,588,'_imagify_optimization_level','1'),(101235,588,'_imagify_status','already_optimized'),(101236,588,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3703;s:14:\"optimized_size\";i:2476;s:7:\"percent\";d:33.14;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1417;s:14:\"optimized_size\";i:1478;s:7:\"percent\";d:-4.3;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4046;s:14:\"optimized_size\";i:4062;s:7:\"percent\";d:-0.4;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:9166;s:14:\"optimized_size\";i:8016;s:7:\"percent\";d:12.55;}}'),(101237,587,'_imagify_optimization_level','1'),(101238,587,'_imagify_status','already_optimized'),(101239,587,'_imagify_data','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2366;s:14:\"optimized_size\";i:1594;s:7:\"percent\";d:32.63;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2019;s:14:\"optimized_size\";i:2468;s:7:\"percent\";d:-22.24;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:4385;s:14:\"optimized_size\";i:4062;s:7:\"percent\";d:7.37;}}'),(101240,585,'_imagify_optimization_level','1'),(101241,585,'_imagify_status','success'),(101242,585,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37108;s:14:\"optimized_size\";i:29246;s:7:\"percent\";d:21.19;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16283;s:14:\"optimized_size\";i:7820;s:7:\"percent\";d:51.97;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7059;s:14:\"optimized_size\";i:3806;s:7:\"percent\";d:46.08;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37108;s:14:\"optimized_size\";i:16190;s:7:\"percent\";d:56.37;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7059;s:14:\"optimized_size\";i:5244;s:7:\"percent\";d:25.71;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16283;s:14:\"optimized_size\";i:10851;s:7:\"percent\";d:33.36;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:120900;s:14:\"optimized_size\";i:73157;s:7:\"percent\";d:39.49;}}'),(101243,586,'_imagify_optimization_level','1'),(101244,586,'_imagify_status','already_optimized'),(101245,586,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34748;s:14:\"optimized_size\";i:22206;s:7:\"percent\";d:36.09;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:45462;s:14:\"optimized_size\";i:27096;s:7:\"percent\";d:40.4;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12903;s:14:\"optimized_size\";i:7644;s:7:\"percent\";d:40.76;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6505;s:14:\"optimized_size\";i:4054;s:7:\"percent\";d:37.68;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:45137;s:14:\"optimized_size\";i:29950;s:7:\"percent\";d:33.65;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:144755;s:14:\"optimized_size\";i:90950;s:7:\"percent\";d:37.17;}}'),(101246,584,'_imagify_optimization_level','1'),(101247,584,'_imagify_status','success'),(101248,584,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29963;s:14:\"optimized_size\";i:20012;s:7:\"percent\";d:33.21;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13004;s:14:\"optimized_size\";i:5596;s:7:\"percent\";d:56.97;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5342;s:14:\"optimized_size\";i:2600;s:7:\"percent\";d:51.33;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29963;s:14:\"optimized_size\";i:11318;s:7:\"percent\";d:62.23;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5342;s:14:\"optimized_size\";i:3622;s:7:\"percent\";d:32.2;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13004;s:14:\"optimized_size\";i:8482;s:7:\"percent\";d:34.77;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:96618;s:14:\"optimized_size\";i:51630;s:7:\"percent\";d:46.56;}}'),(101249,582,'_imagify_optimization_level','1'),(101250,582,'_imagify_status','success'),(101251,582,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13111;s:14:\"optimized_size\";i:6052;s:7:\"percent\";d:53.84;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6792;s:14:\"optimized_size\";i:2490;s:7:\"percent\";d:63.34;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3326;s:14:\"optimized_size\";i:1314;s:7:\"percent\";d:60.49;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13111;s:14:\"optimized_size\";i:4500;s:7:\"percent\";d:65.68;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3326;s:14:\"optimized_size\";i:1878;s:7:\"percent\";d:43.54;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6792;s:14:\"optimized_size\";i:3378;s:7:\"percent\";d:50.27;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:46458;s:14:\"optimized_size\";i:19612;s:7:\"percent\";d:57.79;}}'),(101252,583,'_imagify_optimization_level','1'),(101253,583,'_imagify_status','success'),(101254,583,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30579;s:14:\"optimized_size\";i:18567;s:7:\"percent\";d:39.28;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14227;s:14:\"optimized_size\";i:6454;s:7:\"percent\";d:54.64;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5933;s:14:\"optimized_size\";i:3008;s:7:\"percent\";d:49.3;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30579;s:14:\"optimized_size\";i:12580;s:7:\"percent\";d:58.86;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5933;s:14:\"optimized_size\";i:4106;s:7:\"percent\";d:30.79;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14227;s:14:\"optimized_size\";i:8460;s:7:\"percent\";d:40.54;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:101478;s:14:\"optimized_size\";i:53175;s:7:\"percent\";d:47.6;}}'),(101255,581,'_imagify_optimization_level','1'),(101256,581,'_imagify_status','success'),(101257,581,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21009;s:14:\"optimized_size\";i:12039;s:7:\"percent\";d:42.7;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9814;s:14:\"optimized_size\";i:4124;s:7:\"percent\";d:57.98;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4639;s:14:\"optimized_size\";i:2216;s:7:\"percent\";d:52.23;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21009;s:14:\"optimized_size\";i:8130;s:7:\"percent\";d:61.3;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4639;s:14:\"optimized_size\";i:3368;s:7:\"percent\";d:27.4;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9814;s:14:\"optimized_size\";i:5983;s:7:\"percent\";d:39.04;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:70924;s:14:\"optimized_size\";i:35860;s:7:\"percent\";d:49.44;}}'),(101258,580,'_imagify_optimization_level','1'),(101259,580,'_imagify_status','already_optimized'),(101260,580,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17602;s:14:\"optimized_size\";i:9844;s:7:\"percent\";d:44.07;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6814;s:14:\"optimized_size\";i:4128;s:7:\"percent\";d:39.42;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46702;s:14:\"optimized_size\";i:22298;s:7:\"percent\";d:52.25;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:71118;s:14:\"optimized_size\";i:36270;s:7:\"percent\";d:49;}}'),(101261,579,'_imagify_optimization_level','1'),(101262,579,'_imagify_status','already_optimized'),(101263,579,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10710;s:14:\"optimized_size\";i:5104;s:7:\"percent\";d:52.34;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4375;s:14:\"optimized_size\";i:2014;s:7:\"percent\";d:53.97;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26714;s:14:\"optimized_size\";i:11734;s:7:\"percent\";d:56.08;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:41799;s:14:\"optimized_size\";i:18852;s:7:\"percent\";d:54.9;}}'),(101264,578,'_imagify_optimization_level','1'),(101265,578,'_imagify_status','success'),(101266,578,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39653;s:14:\"optimized_size\";i:31405;s:7:\"percent\";d:20.8;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15906;s:14:\"optimized_size\";i:7898;s:7:\"percent\";d:50.35;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6543;s:14:\"optimized_size\";i:3424;s:7:\"percent\";d:47.67;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39653;s:14:\"optimized_size\";i:17262;s:7:\"percent\";d:56.47;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6543;s:14:\"optimized_size\";i:4890;s:7:\"percent\";d:25.26;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15906;s:14:\"optimized_size\";i:10747;s:7:\"percent\";d:32.43;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:124204;s:14:\"optimized_size\";i:75626;s:7:\"percent\";d:39.11;}}'),(101267,561,'_imagify_optimization_level','1'),(101268,561,'_imagify_status','success'),(101269,561,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17196;s:14:\"optimized_size\";i:8667;s:7:\"percent\";d:49.6;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9184;s:14:\"optimized_size\";i:3612;s:7:\"percent\";d:60.67;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4243;s:14:\"optimized_size\";i:1762;s:7:\"percent\";d:58.47;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17196;s:14:\"optimized_size\";i:6642;s:7:\"percent\";d:61.37;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4243;s:14:\"optimized_size\";i:2650;s:7:\"percent\";d:37.54;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9184;s:14:\"optimized_size\";i:5055;s:7:\"percent\";d:44.96;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:61246;s:14:\"optimized_size\";i:28388;s:7:\"percent\";d:53.65;}}'),(101270,560,'_imagify_optimization_level','1'),(101271,560,'_imagify_status','success'),(101272,560,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19647;s:14:\"optimized_size\";i:10070;s:7:\"percent\";d:48.75;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10096;s:14:\"optimized_size\";i:3670;s:7:\"percent\";d:63.65;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4598;s:14:\"optimized_size\";i:1848;s:7:\"percent\";d:59.81;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19647;s:14:\"optimized_size\";i:6856;s:7:\"percent\";d:65.1;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4598;s:14:\"optimized_size\";i:2737;s:7:\"percent\";d:40.47;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10096;s:14:\"optimized_size\";i:5513;s:7:\"percent\";d:45.39;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:68682;s:14:\"optimized_size\";i:30694;s:7:\"percent\";d:55.31;}}'),(101273,559,'_imagify_optimization_level','1'),(101274,559,'_imagify_status','success'),(101275,559,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40932;s:14:\"optimized_size\";i:32009;s:7:\"percent\";d:21.8;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16841;s:14:\"optimized_size\";i:8266;s:7:\"percent\";d:50.92;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6928;s:14:\"optimized_size\";i:3774;s:7:\"percent\";d:45.53;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40932;s:14:\"optimized_size\";i:17872;s:7:\"percent\";d:56.34;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6928;s:14:\"optimized_size\";i:5014;s:7:\"percent\";d:27.63;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16841;s:14:\"optimized_size\";i:11166;s:7:\"percent\";d:33.7;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:129402;s:14:\"optimized_size\";i:78101;s:7:\"percent\";d:39.64;}}'),(101276,558,'_imagify_optimization_level','1'),(101277,558,'_imagify_status','success'),(101278,558,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29678;s:14:\"optimized_size\";i:19686;s:7:\"percent\";d:33.67;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12946;s:14:\"optimized_size\";i:5496;s:7:\"percent\";d:57.55;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5326;s:14:\"optimized_size\";i:2412;s:7:\"percent\";d:54.71;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29678;s:14:\"optimized_size\";i:11014;s:7:\"percent\";d:62.89;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5326;s:14:\"optimized_size\";i:3550;s:7:\"percent\";d:33.35;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12946;s:14:\"optimized_size\";i:7283;s:7:\"percent\";d:43.74;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:95900;s:14:\"optimized_size\";i:49441;s:7:\"percent\";d:48.45;}}'),(101279,556,'_imagify_optimization_level','1'),(101280,556,'_imagify_status','success'),(101281,556,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15048;s:14:\"optimized_size\";i:7448;s:7:\"percent\";d:50.51;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8043;s:14:\"optimized_size\";i:2994;s:7:\"percent\";d:62.78;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3755;s:14:\"optimized_size\";i:1494;s:7:\"percent\";d:60.21;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15048;s:14:\"optimized_size\";i:5494;s:7:\"percent\";d:63.49;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3755;s:14:\"optimized_size\";i:2219;s:7:\"percent\";d:40.91;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8043;s:14:\"optimized_size\";i:4130;s:7:\"percent\";d:48.65;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:53692;s:14:\"optimized_size\";i:23779;s:7:\"percent\";d:55.71;}}'),(101282,557,'_imagify_optimization_level','1'),(101283,557,'_imagify_status','success'),(101284,557,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35629;s:14:\"optimized_size\";i:26355;s:7:\"percent\";d:26.03;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15072;s:14:\"optimized_size\";i:7148;s:7:\"percent\";d:52.57;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6051;s:14:\"optimized_size\";i:3178;s:7:\"percent\";d:47.48;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35629;s:14:\"optimized_size\";i:14558;s:7:\"percent\";d:59.14;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6051;s:14:\"optimized_size\";i:4291;s:7:\"percent\";d:29.09;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15072;s:14:\"optimized_size\";i:10081;s:7:\"percent\";d:33.11;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:113504;s:14:\"optimized_size\";i:65611;s:7:\"percent\";d:42.19;}}'),(101285,555,'_imagify_optimization_level','1'),(101286,555,'_imagify_status','success'),(101287,555,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29991;s:14:\"optimized_size\";i:20087;s:7:\"percent\";d:33.02;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12743;s:14:\"optimized_size\";i:5684;s:7:\"percent\";d:55.4;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5194;s:14:\"optimized_size\";i:2446;s:7:\"percent\";d:52.91;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29991;s:14:\"optimized_size\";i:11622;s:7:\"percent\";d:61.25;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5194;s:14:\"optimized_size\";i:3542;s:7:\"percent\";d:31.81;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12743;s:14:\"optimized_size\";i:8279;s:7:\"percent\";d:35.03;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:95856;s:14:\"optimized_size\";i:51660;s:7:\"percent\";d:46.11;}}'),(101288,554,'_imagify_optimization_level','1'),(101289,554,'_imagify_status','success'),(101290,554,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25115;s:14:\"optimized_size\";i:13694;s:7:\"percent\";d:45.47;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10068;s:14:\"optimized_size\";i:3878;s:7:\"percent\";d:61.48;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3952;s:14:\"optimized_size\";i:1558;s:7:\"percent\";d:60.58;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25115;s:14:\"optimized_size\";i:9072;s:7:\"percent\";d:63.88;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3952;s:14:\"optimized_size\";i:2309;s:7:\"percent\";d:41.57;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10068;s:14:\"optimized_size\";i:5348;s:7:\"percent\";d:46.88;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:78270;s:14:\"optimized_size\";i:35859;s:7:\"percent\";d:54.19;}}'),(101291,553,'_imagify_optimization_level','1'),(101292,553,'_imagify_status','success'),(101293,553,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19403;s:14:\"optimized_size\";i:9229;s:7:\"percent\";d:52.44;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9740;s:14:\"optimized_size\";i:3554;s:7:\"percent\";d:63.51;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4354;s:14:\"optimized_size\";i:1880;s:7:\"percent\";d:56.82;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19403;s:14:\"optimized_size\";i:6650;s:7:\"percent\";d:65.73;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4354;s:14:\"optimized_size\";i:2797;s:7:\"percent\";d:35.76;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9740;s:14:\"optimized_size\";i:5328;s:7:\"percent\";d:45.3;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:66994;s:14:\"optimized_size\";i:29438;s:7:\"percent\";d:56.06;}}'),(101294,552,'_imagify_optimization_level','1'),(101295,552,'_imagify_status','success'),(101296,552,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29463;s:14:\"optimized_size\";i:16554;s:7:\"percent\";d:43.81;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13685;s:14:\"optimized_size\";i:5156;s:7:\"percent\";d:62.32;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6153;s:14:\"optimized_size\";i:2598;s:7:\"percent\";d:57.78;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29463;s:14:\"optimized_size\";i:10140;s:7:\"percent\";d:65.58;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6153;s:14:\"optimized_size\";i:3912;s:7:\"percent\";d:36.42;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13685;s:14:\"optimized_size\";i:7036;s:7:\"percent\";d:48.59;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:98602;s:14:\"optimized_size\";i:45396;s:7:\"percent\";d:53.96;}}'),(101297,551,'_imagify_optimization_level','1'),(101298,551,'_imagify_status','success'),(101299,551,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19732;s:14:\"optimized_size\";i:10117;s:7:\"percent\";d:48.73;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8370;s:14:\"optimized_size\";i:3136;s:7:\"percent\";d:62.53;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3485;s:14:\"optimized_size\";i:1328;s:7:\"percent\";d:61.89;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19732;s:14:\"optimized_size\";i:6800;s:7:\"percent\";d:65.54;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3485;s:14:\"optimized_size\";i:2098;s:7:\"percent\";d:39.8;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8370;s:14:\"optimized_size\";i:4555;s:7:\"percent\";d:45.58;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:63174;s:14:\"optimized_size\";i:28034;s:7:\"percent\";d:55.62;}}'),(101300,550,'_imagify_optimization_level','1'),(101301,550,'_imagify_status','already_optimized'),(101302,550,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14061;s:14:\"optimized_size\";i:6910;s:7:\"percent\";d:50.86;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5602;s:14:\"optimized_size\";i:2866;s:7:\"percent\";d:48.84;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36981;s:14:\"optimized_size\";i:15914;s:7:\"percent\";d:56.97;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:56644;s:14:\"optimized_size\";i:25690;s:7:\"percent\";d:54.65;}}'),(101303,549,'_imagify_optimization_level','1'),(101304,549,'_imagify_status','success'),(101305,549,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25341;s:14:\"optimized_size\";i:16972;s:7:\"percent\";d:33.03;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11035;s:14:\"optimized_size\";i:4634;s:7:\"percent\";d:58.01;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4368;s:14:\"optimized_size\";i:1870;s:7:\"percent\";d:57.19;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25341;s:14:\"optimized_size\";i:9052;s:7:\"percent\";d:64.28;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4368;s:14:\"optimized_size\";i:2921;s:7:\"percent\";d:33.13;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11035;s:14:\"optimized_size\";i:6506;s:7:\"percent\";d:41.04;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:81488;s:14:\"optimized_size\";i:41955;s:7:\"percent\";d:48.51;}}'),(101306,548,'_imagify_optimization_level','1'),(101307,548,'_imagify_status','success'),(101308,548,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25849;s:14:\"optimized_size\";i:14502;s:7:\"percent\";d:43.9;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11696;s:14:\"optimized_size\";i:5242;s:7:\"percent\";d:55.18;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4964;s:14:\"optimized_size\";i:2366;s:7:\"percent\";d:52.34;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25849;s:14:\"optimized_size\";i:9846;s:7:\"percent\";d:61.91;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4964;s:14:\"optimized_size\";i:3563;s:7:\"percent\";d:28.22;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11696;s:14:\"optimized_size\";i:7280;s:7:\"percent\";d:37.76;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:85018;s:14:\"optimized_size\";i:42799;s:7:\"percent\";d:49.66;}}'),(101309,547,'_imagify_optimization_level','1'),(101310,547,'_imagify_status','success'),(101311,547,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14961;s:14:\"optimized_size\";i:6037;s:7:\"percent\";d:59.65;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7350;s:14:\"optimized_size\";i:2316;s:7:\"percent\";d:68.49;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3324;s:14:\"optimized_size\";i:1096;s:7:\"percent\";d:67.03;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14961;s:14:\"optimized_size\";i:4652;s:7:\"percent\";d:68.91;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3324;s:14:\"optimized_size\";i:1608;s:7:\"percent\";d:51.62;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7350;s:14:\"optimized_size\";i:3026;s:7:\"percent\";d:58.83;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:51270;s:14:\"optimized_size\";i:18735;s:7:\"percent\";d:63.46;}}'),(101312,546,'_imagify_optimization_level','1'),(101313,546,'_imagify_status','success'),(101314,546,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52244;s:14:\"optimized_size\";i:43703;s:7:\"percent\";d:16.35;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21389;s:14:\"optimized_size\";i:12312;s:7:\"percent\";d:42.44;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8465;s:14:\"optimized_size\";i:5270;s:7:\"percent\";d:37.74;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52244;s:14:\"optimized_size\";i:25704;s:7:\"percent\";d:50.8;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8465;s:14:\"optimized_size\";i:6142;s:7:\"percent\";d:27.44;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21389;s:14:\"optimized_size\";i:15265;s:7:\"percent\";d:28.63;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:164196;s:14:\"optimized_size\";i:108396;s:7:\"percent\";d:33.98;}}'),(101315,545,'_imagify_optimization_level','1'),(101316,545,'_imagify_status','success'),(101317,545,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20214;s:14:\"optimized_size\";i:10582;s:7:\"percent\";d:47.65;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9076;s:14:\"optimized_size\";i:3446;s:7:\"percent\";d:62.03;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4027;s:14:\"optimized_size\";i:1648;s:7:\"percent\";d:59.08;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20214;s:14:\"optimized_size\";i:7028;s:7:\"percent\";d:65.23;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4027;s:14:\"optimized_size\";i:2608;s:7:\"percent\";d:35.24;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9076;s:14:\"optimized_size\";i:5134;s:7:\"percent\";d:43.43;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:66634;s:14:\"optimized_size\";i:30446;s:7:\"percent\";d:54.31;}}'),(101318,544,'_imagify_optimization_level','1'),(101319,544,'_imagify_status','success'),(101320,544,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24149;s:14:\"optimized_size\";i:12534;s:7:\"percent\";d:48.1;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11432;s:14:\"optimized_size\";i:4618;s:7:\"percent\";d:59.6;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4982;s:14:\"optimized_size\";i:2250;s:7:\"percent\";d:54.84;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24149;s:14:\"optimized_size\";i:8914;s:7:\"percent\";d:63.09;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4982;s:14:\"optimized_size\";i:3352;s:7:\"percent\";d:32.72;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11432;s:14:\"optimized_size\";i:6523;s:7:\"percent\";d:42.94;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:81126;s:14:\"optimized_size\";i:38191;s:7:\"percent\";d:52.92;}}'),(101321,542,'_imagify_optimization_level','1'),(101322,542,'_imagify_status','success'),(101323,542,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24677;s:14:\"optimized_size\";i:17225;s:7:\"percent\";d:30.2;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10266;s:14:\"optimized_size\";i:4560;s:7:\"percent\";d:55.58;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4313;s:14:\"optimized_size\";i:2030;s:7:\"percent\";d:52.93;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24677;s:14:\"optimized_size\";i:10612;s:7:\"percent\";d:57;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4313;s:14:\"optimized_size\";i:3065;s:7:\"percent\";d:28.94;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10266;s:14:\"optimized_size\";i:6683;s:7:\"percent\";d:34.9;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:78512;s:14:\"optimized_size\";i:44175;s:7:\"percent\";d:43.73;}}'),(101324,543,'_imagify_optimization_level','1'),(101325,543,'_imagify_status','success'),(101326,543,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:49454;s:14:\"optimized_size\";i:41390;s:7:\"percent\";d:16.31;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17916;s:14:\"optimized_size\";i:9154;s:7:\"percent\";d:48.91;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6710;s:14:\"optimized_size\";i:3472;s:7:\"percent\";d:48.26;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:49454;s:14:\"optimized_size\";i:22982;s:7:\"percent\";d:53.53;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6710;s:14:\"optimized_size\";i:4789;s:7:\"percent\";d:28.63;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17916;s:14:\"optimized_size\";i:11393;s:7:\"percent\";d:36.41;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:148160;s:14:\"optimized_size\";i:93180;s:7:\"percent\";d:37.11;}}'),(101327,541,'_imagify_optimization_level','1'),(101328,541,'_imagify_status','success'),(101329,541,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32386;s:14:\"optimized_size\";i:18620;s:7:\"percent\";d:42.51;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13379;s:14:\"optimized_size\";i:5898;s:7:\"percent\";d:55.92;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5907;s:14:\"optimized_size\";i:2752;s:7:\"percent\";d:53.41;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32386;s:14:\"optimized_size\";i:13406;s:7:\"percent\";d:58.61;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5907;s:14:\"optimized_size\";i:3617;s:7:\"percent\";d:38.77;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13379;s:14:\"optimized_size\";i:7413;s:7:\"percent\";d:44.59;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:103344;s:14:\"optimized_size\";i:51706;s:7:\"percent\";d:49.97;}}'),(101330,540,'_imagify_optimization_level','1'),(101331,540,'_imagify_status','already_optimized'),(101332,540,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14528;s:14:\"optimized_size\";i:7784;s:7:\"percent\";d:46.42;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5798;s:14:\"optimized_size\";i:3392;s:7:\"percent\";d:41.5;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37048;s:14:\"optimized_size\";i:17270;s:7:\"percent\";d:53.38;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:57374;s:14:\"optimized_size\";i:28446;s:7:\"percent\";d:50.42;}}'),(101333,539,'_imagify_optimization_level','1'),(101334,539,'_imagify_status','success'),(101335,539,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26692;s:14:\"optimized_size\";i:14993;s:7:\"percent\";d:43.83;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11556;s:14:\"optimized_size\";i:4594;s:7:\"percent\";d:60.25;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4756;s:14:\"optimized_size\";i:1956;s:7:\"percent\";d:58.87;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26692;s:14:\"optimized_size\";i:9776;s:7:\"percent\";d:63.37;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4756;s:14:\"optimized_size\";i:2645;s:7:\"percent\";d:44.39;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11556;s:14:\"optimized_size\";i:6132;s:7:\"percent\";d:46.94;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:86008;s:14:\"optimized_size\";i:40096;s:7:\"percent\";d:53.38;}}'),(101336,538,'_imagify_optimization_level','1'),(101337,538,'_imagify_status','success'),(101338,538,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30152;s:14:\"optimized_size\";i:20192;s:7:\"percent\";d:33.03;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13038;s:14:\"optimized_size\";i:6126;s:7:\"percent\";d:53.01;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5365;s:14:\"optimized_size\";i:2540;s:7:\"percent\";d:52.66;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:30152;s:14:\"optimized_size\";i:12434;s:7:\"percent\";d:58.76;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5365;s:14:\"optimized_size\";i:3670;s:7:\"percent\";d:31.59;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13038;s:14:\"optimized_size\";i:8673;s:7:\"percent\";d:33.48;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:97110;s:14:\"optimized_size\";i:53635;s:7:\"percent\";d:44.77;}}'),(101339,536,'_imagify_optimization_level','1'),(101340,536,'_imagify_status','success'),(101341,536,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61777;s:14:\"optimized_size\";i:27574;s:7:\"percent\";d:55.37;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24532;s:14:\"optimized_size\";i:11872;s:7:\"percent\";d:51.61;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20933;s:14:\"optimized_size\";i:10630;s:7:\"percent\";d:49.22;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18219;s:14:\"optimized_size\";i:7496;s:7:\"percent\";d:58.86;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4880;s:14:\"optimized_size\";i:2186;s:7:\"percent\";d:55.2;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5230;s:14:\"optimized_size\";i:2432;s:7:\"percent\";d:53.5;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61777;s:14:\"optimized_size\";i:25974;s:7:\"percent\";d:57.96;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5230;s:14:\"optimized_size\";i:3457;s:7:\"percent\";d:33.9;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4880;s:14:\"optimized_size\";i:2812;s:7:\"percent\";d:42.38;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18219;s:14:\"optimized_size\";i:8023;s:7:\"percent\";d:55.96;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20933;s:14:\"optimized_size\";i:11309;s:7:\"percent\";d:45.98;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24532;s:14:\"optimized_size\";i:13009;s:7:\"percent\";d:46.97;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:271142;s:14:\"optimized_size\";i:126774;s:7:\"percent\";d:53.24;}}'),(101342,535,'_imagify_optimization_level','1'),(101343,535,'_imagify_status','success'),(101344,535,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:128564;s:14:\"optimized_size\";i:68696;s:7:\"percent\";d:46.57;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41820;s:14:\"optimized_size\";i:25110;s:7:\"percent\";d:39.96;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39399;s:14:\"optimized_size\";i:24514;s:7:\"percent\";d:37.78;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28895;s:14:\"optimized_size\";i:14638;s:7:\"percent\";d:49.34;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5622;s:14:\"optimized_size\";i:2804;s:7:\"percent\";d:50.12;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5823;s:14:\"optimized_size\";i:3032;s:7:\"percent\";d:47.93;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:128564;s:14:\"optimized_size\";i:77522;s:7:\"percent\";d:39.7;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5823;s:14:\"optimized_size\";i:3877;s:7:\"percent\";d:33.42;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5622;s:14:\"optimized_size\";i:3176;s:7:\"percent\";d:43.51;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28895;s:14:\"optimized_size\";i:15129;s:7:\"percent\";d:47.64;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39399;s:14:\"optimized_size\";i:22111;s:7:\"percent\";d:43.88;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41820;s:14:\"optimized_size\";i:26211;s:7:\"percent\";d:37.32;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:500246;s:14:\"optimized_size\";i:286820;s:7:\"percent\";d:42.66;}}'),(101345,534,'_imagify_optimization_level','1'),(101346,534,'_imagify_status','already_optimized'),(101347,534,'_imagify_data','a:2:{s:5:\"sizes\";a:7:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22617;s:14:\"optimized_size\";i:12968;s:7:\"percent\";d:42.66;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23076;s:14:\"optimized_size\";i:10824;s:7:\"percent\";d:53.09;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14583;s:14:\"optimized_size\";i:6730;s:7:\"percent\";d:53.85;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3543;s:14:\"optimized_size\";i:1536;s:7:\"percent\";d:56.65;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4637;s:14:\"optimized_size\";i:2176;s:7:\"percent\";d:53.07;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:49078;s:14:\"optimized_size\";i:28032;s:7:\"percent\";d:42.88;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:117534;s:14:\"optimized_size\";i:62266;s:7:\"percent\";d:47.02;}}'),(101348,533,'_imagify_optimization_level','1'),(101349,533,'_imagify_status','already_optimized'),(101350,533,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:77129;s:14:\"optimized_size\";i:52786;s:7:\"percent\";d:31.56;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:122009;s:14:\"optimized_size\";i:111236;s:7:\"percent\";d:8.83;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24476;s:14:\"optimized_size\";i:19954;s:7:\"percent\";d:18.48;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11714;s:14:\"optimized_size\";i:7882;s:7:\"percent\";d:32.71;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:202105;s:14:\"optimized_size\";i:143898;s:7:\"percent\";d:28.8;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:437433;s:14:\"optimized_size\";i:335756;s:7:\"percent\";d:23.24;}}'),(101351,532,'_imagify_optimization_level','1'),(101352,532,'_imagify_status','already_optimized'),(101353,532,'_imagify_data','a:2:{s:5:\"sizes\";a:7:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12120;s:14:\"optimized_size\";i:6400;s:7:\"percent\";d:47.19;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17151;s:14:\"optimized_size\";i:8808;s:7:\"percent\";d:48.64;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10812;s:14:\"optimized_size\";i:5386;s:7:\"percent\";d:50.18;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3181;s:14:\"optimized_size\";i:1454;s:7:\"percent\";d:54.29;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2627;s:14:\"optimized_size\";i:1126;s:7:\"percent\";d:57.14;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:58349;s:14:\"optimized_size\";i:33248;s:7:\"percent\";d:43.02;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:104240;s:14:\"optimized_size\";i:56422;s:7:\"percent\";d:45.87;}}'),(101354,531,'_imagify_optimization_level','1'),(101355,531,'_imagify_status','already_optimized'),(101356,531,'_imagify_data','a:2:{s:5:\"sizes\";a:7:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16585;s:14:\"optimized_size\";i:9452;s:7:\"percent\";d:43.01;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15884;s:14:\"optimized_size\";i:8712;s:7:\"percent\";d:45.15;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12591;s:14:\"optimized_size\";i:6030;s:7:\"percent\";d:52.11;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3274;s:14:\"optimized_size\";i:1584;s:7:\"percent\";d:51.62;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3832;s:14:\"optimized_size\";i:1860;s:7:\"percent\";d:51.46;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:44233;s:14:\"optimized_size\";i:23528;s:7:\"percent\";d:46.81;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:96399;s:14:\"optimized_size\";i:51166;s:7:\"percent\";d:46.92;}}'),(101357,529,'_imagify_optimization_level','1'),(101358,529,'_imagify_status','already_optimized'),(101359,529,'_imagify_data','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5058;s:14:\"optimized_size\";i:2758;s:7:\"percent\";d:45.47;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9960;s:14:\"optimized_size\";i:4992;s:7:\"percent\";d:49.88;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:15018;s:14:\"optimized_size\";i:7750;s:7:\"percent\";d:48.4;}}'),(101360,528,'_imagify_optimization_level','1'),(101361,528,'_imagify_status','success'),(101362,528,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61153;s:14:\"optimized_size\";i:33216;s:7:\"percent\";d:45.68;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14186;s:14:\"optimized_size\";i:9064;s:7:\"percent\";d:36.11;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26491;s:14:\"optimized_size\";i:12706;s:7:\"percent\";d:52.04;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15804;s:14:\"optimized_size\";i:7874;s:7:\"percent\";d:50.18;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3422;s:14:\"optimized_size\";i:1598;s:7:\"percent\";d:53.3;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2905;s:14:\"optimized_size\";i:1352;s:7:\"percent\";d:53.46;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61153;s:14:\"optimized_size\";i:36010;s:7:\"percent\";d:41.11;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2905;s:14:\"optimized_size\";i:1853;s:7:\"percent\";d:36.21;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3422;s:14:\"optimized_size\";i:2114;s:7:\"percent\";d:38.22;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15804;s:14:\"optimized_size\";i:8681;s:7:\"percent\";d:45.07;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26491;s:14:\"optimized_size\";i:14164;s:7:\"percent\";d:46.53;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14186;s:14:\"optimized_size\";i:8214;s:7:\"percent\";d:42.1;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:247922;s:14:\"optimized_size\";i:136846;s:7:\"percent\";d:44.8;}}'),(101363,63,'_imagify_optimization_level','1'),(101364,63,'_imagify_status','already_optimized'),(101365,63,'_imagify_data','a:2:{s:5:\"sizes\";a:7:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:56396;s:14:\"optimized_size\";i:42672;s:7:\"percent\";d:24.34;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:117759;s:14:\"optimized_size\";i:84216;s:7:\"percent\";d:28.48;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:89925;s:14:\"optimized_size\";i:62110;s:7:\"percent\";d:30.93;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20394;s:14:\"optimized_size\";i:12494;s:7:\"percent\";d:38.74;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8502;s:14:\"optimized_size\";i:5504;s:7:\"percent\";d:35.26;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:197072;s:14:\"optimized_size\";i:126440;s:7:\"percent\";d:35.84;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:490048;s:14:\"optimized_size\";i:333436;s:7:\"percent\";d:31.96;}}'),(101366,55,'_imagify_optimization_level','1'),(101367,55,'_imagify_status','success'),(101368,55,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2150;s:14:\"optimized_size\";i:1397;s:7:\"percent\";d:35.02;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2150;s:14:\"optimized_size\";i:1648;s:7:\"percent\";d:23.35;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:4300;s:14:\"optimized_size\";i:3045;s:7:\"percent\";d:29.19;}}'),(101369,54,'_imagify_optimization_level','1'),(101370,54,'_imagify_status','success'),(101371,54,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1624;s:14:\"optimized_size\";i:1113;s:7:\"percent\";d:31.47;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1624;s:14:\"optimized_size\";i:1266;s:7:\"percent\";d:22.04;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3248;s:14:\"optimized_size\";i:2379;s:7:\"percent\";d:26.75;}}'),(101372,53,'_imagify_optimization_level','1'),(101373,53,'_imagify_status','success'),(101374,53,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1598;s:14:\"optimized_size\";i:1326;s:7:\"percent\";d:17.02;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1598;s:14:\"optimized_size\";i:1466;s:7:\"percent\";d:8.26;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3196;s:14:\"optimized_size\";i:2792;s:7:\"percent\";d:12.64;}}'),(101375,51,'_imagify_optimization_level','1'),(101376,51,'_imagify_status','success'),(101377,51,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2072;s:14:\"optimized_size\";i:1585;s:7:\"percent\";d:23.5;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2072;s:14:\"optimized_size\";i:1488;s:7:\"percent\";d:28.19;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:4144;s:14:\"optimized_size\";i:3073;s:7:\"percent\";d:25.84;}}'),(101378,52,'_imagify_optimization_level','1'),(101379,52,'_imagify_status','success'),(101380,52,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2492;s:14:\"optimized_size\";i:1921;s:7:\"percent\";d:22.91;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2149;s:14:\"optimized_size\";i:1640;s:7:\"percent\";d:23.69;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2492;s:14:\"optimized_size\";i:1790;s:7:\"percent\";d:28.17;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2149;s:14:\"optimized_size\";i:1759;s:7:\"percent\";d:18.15;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:9282;s:14:\"optimized_size\";i:7110;s:7:\"percent\";d:23.4;}}'),(101381,50,'_imagify_optimization_level','1'),(101382,50,'_imagify_status','success'),(101383,50,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20753;s:14:\"optimized_size\";i:14742;s:7:\"percent\";d:28.96;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14980;s:14:\"optimized_size\";i:6438;s:7:\"percent\";d:57.02;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7387;s:14:\"optimized_size\";i:3320;s:7:\"percent\";d:55.06;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20753;s:14:\"optimized_size\";i:8018;s:7:\"percent\";d:61.36;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7387;s:14:\"optimized_size\";i:5417;s:7:\"percent\";d:26.67;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14980;s:14:\"optimized_size\";i:10857;s:7:\"percent\";d:27.52;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:86240;s:14:\"optimized_size\";i:48792;s:7:\"percent\";d:43.42;}}'),(101384,3057,'_pinterest_shares','0'),(101385,3057,'_total_shares','0'),(101386,3057,'swp_cache_timestamp','450768'),(101387,3057,'_edit_lock','1623963140:4'),(101403,3064,'_imagify_optimization_level','1'),(101404,3064,'_imagify_status','already_optimized'),(101405,3064,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:376652;s:14:\"optimized_size\";i:17712;s:7:\"percent\";d:95.3;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1677299;s:14:\"optimized_size\";i:69056;s:7:\"percent\";d:95.88;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:411226;s:14:\"optimized_size\";i:20280;s:7:\"percent\";d:95.07;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32380;s:14:\"optimized_size\";i:2030;s:7:\"percent\";d:93.73;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:756827;s:14:\"optimized_size\";i:34282;s:7:\"percent\";d:95.47;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:62579;s:14:\"optimized_size\";i:3744;s:7:\"percent\";d:94.02;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:622577;s:14:\"optimized_size\";i:128316;s:7:\"percent\";d:79.39;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3939540;s:14:\"optimized_size\";i:275420;s:7:\"percent\";d:93.01;}}'),(101409,3076,'_imagify_optimization_level','2'),(101410,3076,'_imagify_status','already_optimized'),(101411,3076,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:395556;s:14:\"optimized_size\";i:15224;s:7:\"percent\";d:96.15;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1760658;s:14:\"optimized_size\";i:59038;s:7:\"percent\";d:96.65;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:439122;s:14:\"optimized_size\";i:18520;s:7:\"percent\";d:95.78;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32579;s:14:\"optimized_size\";i:1932;s:7:\"percent\";d:94.07;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:805410;s:14:\"optimized_size\";i:30830;s:7:\"percent\";d:96.17;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:63820;s:14:\"optimized_size\";i:3864;s:7:\"percent\";d:93.95;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:598063;s:14:\"optimized_size\";i:111694;s:7:\"percent\";d:81.32;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:4095208;s:14:\"optimized_size\";i:241102;s:7:\"percent\";d:94.11;}}'),(101412,3073,'_imagify_optimization_level','2'),(101413,3073,'_imagify_status','already_optimized'),(101414,3073,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:379018;s:14:\"optimized_size\";i:15408;s:7:\"percent\";d:95.93;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1651014;s:14:\"optimized_size\";i:52078;s:7:\"percent\";d:96.85;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:393030;s:14:\"optimized_size\";i:16176;s:7:\"percent\";d:95.88;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33360;s:14:\"optimized_size\";i:2076;s:7:\"percent\";d:93.78;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:730599;s:14:\"optimized_size\";i:26566;s:7:\"percent\";d:96.36;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61185;s:14:\"optimized_size\";i:3450;s:7:\"percent\";d:94.36;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:551836;s:14:\"optimized_size\";i:101534;s:7:\"percent\";d:81.6;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3800042;s:14:\"optimized_size\";i:217288;s:7:\"percent\";d:94.28;}}'),(101415,3070,'_imagify_optimization_level','2'),(101416,3070,'_imagify_status','already_optimized'),(101417,3070,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:396644;s:14:\"optimized_size\";i:24758;s:7:\"percent\";d:93.76;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1639168;s:14:\"optimized_size\";i:71980;s:7:\"percent\";d:95.61;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:397908;s:14:\"optimized_size\";i:22358;s:7:\"percent\";d:94.38;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33915;s:14:\"optimized_size\";i:2938;s:7:\"percent\";d:91.34;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:741961;s:14:\"optimized_size\";i:37440;s:7:\"percent\";d:94.95;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:58410;s:14:\"optimized_size\";i:4266;s:7:\"percent\";d:92.7;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:578332;s:14:\"optimized_size\";i:133416;s:7:\"percent\";d:76.93;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3846338;s:14:\"optimized_size\";i:297156;s:7:\"percent\";d:92.27;}}'),(101505,2972,'_pinterest_shares','0'),(101506,2972,'_total_shares','0'),(101507,2972,'swp_cache_timestamp','450787'),(102486,2602,'_pinterest_shares','0'),(102487,2602,'_total_shares','0'),(102488,2602,'swp_cache_timestamp','451050'),(102645,2975,'_imagify_optimization_level','2'),(102646,2975,'_imagify_status','success'),(102647,2975,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:807088;s:14:\"optimized_size\";i:157329;s:7:\"percent\";d:80.51;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:286406;s:14:\"optimized_size\";i:31088;s:7:\"percent\";d:89.15;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:656410;s:14:\"optimized_size\";i:61766;s:7:\"percent\";d:90.59;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31879;s:14:\"optimized_size\";i:6194;s:7:\"percent\";d:80.57;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:97993;s:14:\"optimized_size\";i:13930;s:7:\"percent\";d:85.78;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:807088;s:14:\"optimized_size\";i:78710;s:7:\"percent\";d:90.25;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:97993;s:14:\"optimized_size\";i:22014;s:7:\"percent\";d:77.54;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31879;s:14:\"optimized_size\";i:8413;s:7:\"percent\";d:73.61;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:656410;s:14:\"optimized_size\";i:138571;s:7:\"percent\";d:78.89;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:286406;s:14:\"optimized_size\";i:57810;s:7:\"percent\";d:79.82;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3759552;s:14:\"optimized_size\";i:575825;s:7:\"percent\";d:84.68;}}'),(102648,3057,'_edit_last','4'),(102652,3057,'_imagify_optimization_level','2'),(102653,3057,'_imagify_status','success'),(102654,3057,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:646342;s:14:\"optimized_size\";i:636862;s:7:\"percent\";d:1.47;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:363707;s:14:\"optimized_size\";i:19618;s:7:\"percent\";d:94.61;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1611664;s:14:\"optimized_size\";i:78950;s:7:\"percent\";d:95.1;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:412116;s:14:\"optimized_size\";i:23328;s:7:\"percent\";d:94.34;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31314;s:14:\"optimized_size\";i:2412;s:7:\"percent\";d:92.3;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:751239;s:14:\"optimized_size\";i:39614;s:7:\"percent\";d:94.73;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:62428;s:14:\"optimized_size\";i:4406;s:7:\"percent\";d:92.94;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:646342;s:14:\"optimized_size\";i:138718;s:7:\"percent\";d:78.54;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:62428;s:14:\"optimized_size\";i:13183;s:7:\"percent\";d:78.88;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:751239;s:14:\"optimized_size\";i:137476;s:7:\"percent\";d:81.7;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31314;s:14:\"optimized_size\";i:6742;s:7:\"percent\";d:78.47;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:412116;s:14:\"optimized_size\";i:80867;s:7:\"percent\";d:80.38;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1611664;s:14:\"optimized_size\";i:304569;s:7:\"percent\";d:81.1;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:363707;s:14:\"optimized_size\";i:65944;s:7:\"percent\";d:81.87;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:7757620;s:14:\"optimized_size\";i:1552689;s:7:\"percent\";d:79.98;}}'),(102655,2128,'_edit_lock','1623963405:4'),(102656,3080,'_edit_lock','1624049526:4'),(102663,3126,'_edit_lock','1634134222:18'),(102667,3125,'_edit_lock','1624041438:4'),(102671,3076,'_edit_lock','1623963682:4'),(102678,3080,'_imagify_optimization_level','0'),(102679,3080,'_imagify_status','success'),(102680,3080,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:48153;s:14:\"optimized_size\";i:41591;s:7:\"percent\";d:13.63;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13416;s:14:\"optimized_size\";i:19958;s:7:\"percent\";d:-48.76;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36801;s:14:\"optimized_size\";i:59694;s:7:\"percent\";d:-62.21;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12337;s:14:\"optimized_size\";i:21042;s:7:\"percent\";d:-70.56;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2562;s:14:\"optimized_size\";i:3748;s:7:\"percent\";d:-46.29;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19653;s:14:\"optimized_size\";i:32858;s:7:\"percent\";d:-67.19;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2717;s:14:\"optimized_size\";i:4216;s:7:\"percent\";d:-55.17;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:48153;s:14:\"optimized_size\";i:85474;s:7:\"percent\";d:-77.51;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2717;s:14:\"optimized_size\";i:2245;s:7:\"percent\";d:17.37;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19653;s:14:\"optimized_size\";i:16585;s:7:\"percent\";d:15.61;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2562;s:14:\"optimized_size\";i:2037;s:7:\"percent\";d:20.49;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12337;s:14:\"optimized_size\";i:10376;s:7:\"percent\";d:15.9;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36801;s:14:\"optimized_size\";i:30442;s:7:\"percent\";d:17.28;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13416;s:14:\"optimized_size\";i:10498;s:7:\"percent\";d:21.75;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:271278;s:14:\"optimized_size\";i:340764;s:7:\"percent\";d:-25.61;}}'),(102869,3137,'_wp_attached_file','2021/06/toronto_small.png'),(102870,3137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:195;s:4:\"file\";s:25:\"2021/06/toronto_small.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"toronto_small-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"toronto_small-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:{}}}'),(102871,3137,'_imagify_optimization_level','0'),(102872,3137,'_imagify_status','success'),(102873,3137,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:150284;s:14:\"optimized_size\";i:116786;s:7:\"percent\";d:22.29;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33989;s:14:\"optimized_size\";i:9042;s:7:\"percent\";d:73.4;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:67282;s:14:\"optimized_size\";i:17290;s:7:\"percent\";d:74.3;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:150284;s:14:\"optimized_size\";i:32878;s:7:\"percent\";d:78.12;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:67282;s:14:\"optimized_size\";i:56868;s:7:\"percent\";d:15.48;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33989;s:14:\"optimized_size\";i:28472;s:7:\"percent\";d:16.23;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:503110;s:14:\"optimized_size\";i:261336;s:7:\"percent\";d:48.06;}}'),(102874,3138,'_wp_attached_file','2021/06/toronto_medium.png'),(102875,3138,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:391;s:4:\"file\";s:26:\"2021/06/toronto_medium.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"toronto_medium-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"toronto_medium-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:\"toronto_medium-768x375.png\";s:5:\"width\";i:768;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:26:\"toronto_medium-500x391.png\";s:5:\"width\";i:500;s:6:\"height\";i:391;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:{}}}'),(102876,3138,'_imagify_optimization_level','0'),(102877,3138,'_imagify_status','success'),(102878,3138,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:619988;s:14:\"optimized_size\";i:497996;s:7:\"percent\";d:19.68;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:357195;s:14:\"optimized_size\";i:75308;s:7:\"percent\";d:78.92;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:442023;s:14:\"optimized_size\";i:90694;s:7:\"percent\";d:79.48;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32817;s:14:\"optimized_size\";i:8910;s:7:\"percent\";d:72.85;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:65189;s:14:\"optimized_size\";i:16844;s:7:\"percent\";d:74.16;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:619988;s:14:\"optimized_size\";i:122566;s:7:\"percent\";d:80.23;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:65189;s:14:\"optimized_size\";i:55494;s:7:\"percent\";d:14.87;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32817;s:14:\"optimized_size\";i:27697;s:7:\"percent\";d:15.6;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:442023;s:14:\"optimized_size\";i:371959;s:7:\"percent\";d:15.85;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:357195;s:14:\"optimized_size\";i:307234;s:7:\"percent\";d:13.99;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3034424;s:14:\"optimized_size\";i:1574702;s:7:\"percent\";d:48.11;}}'),(102879,3138,'_edit_lock','1624035413:4'),(102891,3141,'_wp_attached_file','2021/06/woman-colorful_small.png'),(102892,3141,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:396;s:6:\"height\";i:439;s:4:\"file\";s:32:\"2021/06/woman-colorful_small.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"woman-colorful_small-271x300.png\";s:5:\"width\";i:271;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"woman-colorful_small-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:{}}}'),(102893,3141,'_imagify_optimization_level','0'),(102894,3141,'_imagify_status','already_optimized'),(102895,3141,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33295;s:14:\"optimized_size\";i:12672;s:7:\"percent\";d:61.94;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:101634;s:14:\"optimized_size\";i:33274;s:7:\"percent\";d:67.26;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:47959;s:14:\"optimized_size\";i:64006;s:7:\"percent\";d:-33.46;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:182888;s:14:\"optimized_size\";i:109952;s:7:\"percent\";d:39.88;}}'),(102896,3142,'_wp_attached_file','2021/06/woman-colorful_medium.png'),(102897,3142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:594;s:6:\"height\";i:659;s:4:\"file\";s:33:\"2021/06/woman-colorful_medium.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"woman-colorful_medium-270x300.png\";s:5:\"width\";i:270;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"woman-colorful_medium-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:33:\"woman-colorful_medium-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(102898,3142,'_imagify_optimization_level','0'),(102899,3142,'_imagify_status','already_optimized'),(102900,3142,'_imagify_data','a:2:{s:5:\"sizes\";a:5:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:280917;s:14:\"optimized_size\";i:84030;s:7:\"percent\";d:70.09;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32316;s:14:\"optimized_size\";i:12538;s:7:\"percent\";d:61.2;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:99252;s:14:\"optimized_size\";i:33222;s:7:\"percent\";d:66.53;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:104170;s:14:\"optimized_size\";i:130644;s:7:\"percent\";d:-25.41;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:516655;s:14:\"optimized_size\";i:260434;s:7:\"percent\";d:49.59;}}'),(102901,3141,'_edit_lock','1624042196:4'),(102902,3143,'_wp_attached_file','2021/06/bg-people-tc1_small-e1624041254298.png'),(102903,3143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:521;s:6:\"height\";i:342;s:4:\"file\";s:46:\"2021/06/bg-people-tc1_small-e1624041254298.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"bg-people-tc1_small-e1624041254298-300x197.png\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"bg-people-tc1_small-e1624041254298-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:46:\"bg-people-tc1_small-e1624041254298-500x342.png\";s:5:\"width\";i:500;s:6:\"height\";i:342;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:{}}}'),(102904,3143,'_imagify_optimization_level','0'),(102905,3143,'_imagify_status','success'),(102906,3143,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40577;s:14:\"optimized_size\";i:36435;s:7:\"percent\";d:10.21;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:80430;s:14:\"optimized_size\";i:64578;s:7:\"percent\";d:19.71;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18864;s:14:\"optimized_size\";i:6282;s:7:\"percent\";d:66.7;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:49604;s:14:\"optimized_size\";i:16234;s:7:\"percent\";d:67.27;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40577;s:14:\"optimized_size\";i:66704;s:7:\"percent\";d:-64.39;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:49604;s:14:\"optimized_size\";i:27907;s:7:\"percent\";d:43.74;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18864;s:14:\"optimized_size\";i:10305;s:7:\"percent\";d:45.37;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:80430;s:14:\"optimized_size\";i:35274;s:7:\"percent\";d:56.14;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:378950;s:14:\"optimized_size\";i:263719;s:7:\"percent\";d:30.41;}}'),(102907,3144,'_wp_attached_file','2021/06/bg-people-tc1_medium-e1624041226627.png'),(102908,3144,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:674;s:4:\"file\";s:47:\"2021/06/bg-people-tc1_medium-e1624041226627.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"bg-people-tc1_medium-e1624041226627-300x253.png\";s:5:\"width\";i:300;s:6:\"height\";i:253;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"bg-people-tc1_medium-e1624041226627-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:47:\"bg-people-tc1_medium-e1624041226627-768x647.png\";s:5:\"width\";i:768;s:6:\"height\";i:647;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:47:\"bg-people-tc1_medium-e1624041226627-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(102909,3144,'_imagify_optimization_level','0'),(102910,3144,'_imagify_status','success'),(102911,3144,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:99252;s:14:\"optimized_size\";i:90792;s:7:\"percent\";d:8.52;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:161365;s:14:\"optimized_size\";i:49046;s:7:\"percent\";d:69.61;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:335245;s:14:\"optimized_size\";i:114400;s:7:\"percent\";d:65.88;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15835;s:14:\"optimized_size\";i:5148;s:7:\"percent\";d:67.49;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:50148;s:14:\"optimized_size\";i:15428;s:7:\"percent\";d:69.24;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:99252;s:14:\"optimized_size\";i:163300;s:7:\"percent\";d:-64.53;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:50148;s:14:\"optimized_size\";i:29479;s:7:\"percent\";d:41.22;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15835;s:14:\"optimized_size\";i:8696;s:7:\"percent\";d:45.08;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:335245;s:14:\"optimized_size\";i:210153;s:7:\"percent\";d:37.31;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:161365;s:14:\"optimized_size\";i:95884;s:7:\"percent\";d:40.58;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1323690;s:14:\"optimized_size\";i:782326;s:7:\"percent\";d:40.9;}}'),(102912,3144,'_edit_lock','1624041158:4'),(102913,3143,'_edit_lock','1624041132:4'),(102914,3144,'_edit_last','4'),(102915,3144,'_wp_attachment_backup_sizes','a:5:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:800;s:6:\"height\";i:752;s:4:\"file\";s:24:\"bg-people-tc1_medium.png\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:32:\"bg-people-tc1_medium-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:32:\"bg-people-tc1_medium-300x282.png\";s:5:\"width\";i:300;s:6:\"height\";i:282;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:32:\"bg-people-tc1_medium-768x722.png\";s:5:\"width\";i:768;s:6:\"height\";i:722;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"feature-orig\";a:4:{s:4:\"file\";s:32:\"bg-people-tc1_medium-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";}}'),(102916,3143,'_wp_attachment_backup_sizes','a:4:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:521;s:6:\"height\";i:353;s:4:\"file\";s:23:\"bg-people-tc1_small.png\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:31:\"bg-people-tc1_small-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:31:\"bg-people-tc1_small-300x203.png\";s:5:\"width\";i:300;s:6:\"height\";i:203;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"feature-orig\";a:4:{s:4:\"file\";s:31:\"bg-people-tc1_small-500x353.png\";s:5:\"width\";i:500;s:6:\"height\";i:353;s:9:\"mime-type\";s:9:\"image/png\";}}'),(102917,3143,'_edit_last','4'),(102930,3113,'_edit_lock','1624049478:4'),(102931,3067,'_imagify_optimization_level','0'),(102932,3067,'_imagify_status','success'),(102933,3067,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:651652;s:14:\"optimized_size\";i:651640;s:7:\"percent\";d:0;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:424588;s:14:\"optimized_size\";i:98540;s:7:\"percent\";d:76.79;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1802138;s:14:\"optimized_size\";i:411624;s:7:\"percent\";d:77.16;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:439996;s:14:\"optimized_size\";i:101984;s:7:\"percent\";d:76.82;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34577;s:14:\"optimized_size\";i:10092;s:7:\"percent\";d:70.81;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:811090;s:14:\"optimized_size\";i:180926;s:7:\"percent\";d:77.69;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:62468;s:14:\"optimized_size\";i:17122;s:7:\"percent\";d:72.59;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:651652;s:14:\"optimized_size\";i:784994;s:7:\"percent\";d:-20.46;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:62468;s:14:\"optimized_size\";i:52893;s:7:\"percent\";d:15.33;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:811090;s:14:\"optimized_size\";i:696474;s:7:\"percent\";d:14.13;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34577;s:14:\"optimized_size\";i:29078;s:7:\"percent\";d:15.9;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:439996;s:14:\"optimized_size\";i:379108;s:7:\"percent\";d:13.84;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1802138;s:14:\"optimized_size\";i:1579949;s:7:\"percent\";d:12.33;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:424588;s:14:\"optimized_size\";i:362559;s:7:\"percent\";d:14.61;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:8453018;s:14:\"optimized_size\";i:5356983;s:7:\"percent\";d:36.63;}}'),(102949,3146,'_edit_lock','1629923962:9'),(102950,3146,'_edit_last','3'),(102951,3146,'hefo_before','0'),(102952,3146,'hefo_after','0'),(102953,3146,'_yoast_wpseo_content_score','90'),(102954,3146,'_yoast_wpseo_focuskeywords','[]'),(102955,3146,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(102956,3146,'_yoast_wpseo_estimated-reading-time-minutes','1'),(102957,3150,'_wp_attached_file','2021/06/296243-200.png'),(102958,3150,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:22:\"2021/06/296243-200.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"296243-200-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:{}}}'),(102959,3150,'_imagify_optimization_level','0'),(102960,3150,'_imagify_status','success'),(102961,3150,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:782;s:14:\"optimized_size\";i:647;s:7:\"percent\";d:17.26;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:696;s:14:\"optimized_size\";i:436;s:7:\"percent\";d:37.36;}s:17:\"full@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:97:\"cURL error 35: OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to s1-amz-par.imagify.io:443 \";}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:696;s:14:\"optimized_size\";i:606;s:7:\"percent\";d:12.93;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2174;s:14:\"optimized_size\";i:1689;s:7:\"percent\";d:22.31;}}'),(102962,3146,'_thumbnail_id','3150'),(102963,3146,'_yoast_wpseo_primary_category','1'),(102970,3150,'_wp_attachment_image_alt','left and right arrows'),(103593,2526,'_yoast_wpseo_estimated-reading-time-minutes',''),(103615,3163,'_pinterest_shares','0'),(103616,3163,'_total_shares','0'),(103684,3183,'_pinterest_shares','0'),(103685,3183,'_total_shares','0'),(103687,3184,'_pinterest_shares','0'),(103688,3184,'_total_shares','0'),(103690,3185,'_pinterest_shares','0'),(103691,3185,'_total_shares','0'),(103693,3186,'_pinterest_shares','0'),(103694,3186,'_total_shares','0'),(103723,3156,'_edit_lock','1636401721:19'),(103724,3156,'_edit_last','19'),(103725,3162,'_pinterest_shares','0'),(103726,3162,'_total_shares','0'),(103728,3182,'_pinterest_shares','0'),(103729,3182,'_total_shares','0'),(103731,3190,'_pinterest_shares','0'),(103732,3190,'_total_shares','0'),(103734,3191,'_pinterest_shares','0'),(103735,3191,'_total_shares','0'),(103737,3192,'_pinterest_shares','0'),(103738,3192,'_total_shares','0'),(103740,3193,'_pinterest_shares','0'),(103741,3193,'_total_shares','0'),(103915,3195,'_wp_attached_file','2021/06/gotoloans.png'),(103916,3195,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:143;s:6:\"height\";i:37;s:4:\"file\";s:21:\"2021/06/gotoloans.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(103917,3195,'_imagify_optimization_level','0'),(103918,3195,'_imagify_status','success'),(103919,3195,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2675;s:14:\"optimized_size\";i:2658;s:7:\"percent\";d:0.64;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2675;s:14:\"optimized_size\";i:2814;s:7:\"percent\";d:-5.2;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:5350;s:14:\"optimized_size\";i:5472;s:7:\"percent\";d:-2.28;}}'),(104278,3198,'_pinterest_shares','0'),(104279,3198,'_total_shares','0'),(104281,3199,'_pinterest_shares','0'),(104282,3199,'_total_shares','0'),(104284,2628,'_pinterest_shares','0'),(104285,2628,'_total_shares','0'),(104287,2629,'_pinterest_shares','0'),(104288,2629,'_total_shares','0'),(104290,2631,'_pinterest_shares','0'),(104291,2631,'_total_shares','0'),(104353,3202,'_pinterest_shares','0'),(104354,3202,'_total_shares','0'),(104356,3203,'_pinterest_shares','0'),(104357,3203,'_total_shares','0'),(104359,2667,'_pinterest_shares','0'),(104360,2667,'_total_shares','0'),(104362,2668,'_pinterest_shares','0'),(104363,2668,'_total_shares','0'),(104365,2670,'_pinterest_shares','0'),(104366,2670,'_total_shares','0'),(104410,3207,'_wp_attached_file','2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_CALIFA_01.png'),(104411,3207,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:392;s:4:\"file\";s:58:\"2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_CALIFA_01.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"0013_tc_landingpage_TOP_BANNERS_CITY_CALIFA_01-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"0013_tc_landingpage_TOP_BANNERS_CITY_CALIFA_01-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:58:\"0013_tc_landingpage_TOP_BANNERS_CITY_CALIFA_01-768x376.png\";s:5:\"width\";i:768;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:58:\"0013_tc_landingpage_TOP_BANNERS_CITY_CALIFA_01-500x392.png\";s:5:\"width\";i:500;s:6:\"height\";i:392;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:{}}}'),(104412,3207,'_imagify_optimization_level','0'),(104413,3207,'_imagify_status','success'),(104414,3207,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:139613;s:14:\"optimized_size\";i:138019;s:7:\"percent\";d:1.14;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:248549;s:14:\"optimized_size\";i:96356;s:7:\"percent\";d:61.23;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:476197;s:14:\"optimized_size\";i:111004;s:7:\"percent\";d:76.69;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36708;s:14:\"optimized_size\";i:9280;s:7:\"percent\";d:74.72;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:71825;s:14:\"optimized_size\";i:18204;s:7:\"percent\";d:74.66;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:139613;s:14:\"optimized_size\";i:150122;s:7:\"percent\";d:-7.53;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:71825;s:14:\"optimized_size\";i:61992;s:7:\"percent\";d:13.69;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36708;s:14:\"optimized_size\";i:31354;s:7:\"percent\";d:14.59;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:476197;s:14:\"optimized_size\";i:416785;s:7:\"percent\";d:12.48;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:248549;s:14:\"optimized_size\";i:87960;s:7:\"percent\";d:64.61;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1945784;s:14:\"optimized_size\";i:1121076;s:7:\"percent\";d:42.38;}}'),(104415,3208,'_wp_attached_file','2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_CALIFA_01-1.png'),(104416,3208,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:196;s:4:\"file\";s:60:\"2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_CALIFA_01-1.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:60:\"0013_tc_landingpage_TOP_BANNERS_CITY_CALIFA_01-1-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:60:\"0013_tc_landingpage_TOP_BANNERS_CITY_CALIFA_01-1-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:{}}}'),(104417,3208,'_imagify_optimization_level','0'),(104418,3208,'_imagify_status','success'),(104419,3208,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:43066;s:14:\"optimized_size\";i:41169;s:7:\"percent\";d:4.4;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40176;s:14:\"optimized_size\";i:10942;s:7:\"percent\";d:72.76;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:79201;s:14:\"optimized_size\";i:21228;s:7:\"percent\";d:73.2;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:43066;s:14:\"optimized_size\";i:42264;s:7:\"percent\";d:1.86;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:79201;s:14:\"optimized_size\";i:69068;s:7:\"percent\";d:12.79;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40176;s:14:\"optimized_size\";i:35024;s:7:\"percent\";d:12.82;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:324886;s:14:\"optimized_size\";i:219695;s:7:\"percent\";d:32.38;}}'),(104420,3047,'_yoast_wpseo_estimated-reading-time-minutes',''),(104421,3047,'background_m','3207'),(104422,3047,'_background_m','field_60ddb5aec032b'),(104423,3047,'background_s','3208'),(104424,3047,'_background_s','field_60ddb5bac032c'),(104425,3047,'people_background_m','3144'),(104426,3047,'_people_background_m','field_60ddb5d3c032d'),(104427,3047,'people_background_s','3143'),(104428,3047,'_people_background_s','field_60ddb5ddc032e'),(104594,3210,'_wp_attached_file','2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_GEORGIA_ATLANTA.png'),(104595,3210,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:392;s:4:\"file\";s:64:\"2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_GEORGIA_ATLANTA.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:64:\"0013_tc_landingpage_TOP_BANNERS_CITY_GEORGIA_ATLANTA-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"0013_tc_landingpage_TOP_BANNERS_CITY_GEORGIA_ATLANTA-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:64:\"0013_tc_landingpage_TOP_BANNERS_CITY_GEORGIA_ATLANTA-768x376.png\";s:5:\"width\";i:768;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:64:\"0013_tc_landingpage_TOP_BANNERS_CITY_GEORGIA_ATLANTA-500x392.png\";s:5:\"width\";i:500;s:6:\"height\";i:392;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:{}}}'),(104596,3210,'_imagify_optimization_level','0'),(104597,3210,'_imagify_status','success'),(104598,3210,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:150658;s:14:\"optimized_size\";i:149051;s:7:\"percent\";d:1.07;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:268705;s:14:\"optimized_size\";i:103364;s:7:\"percent\";d:61.53;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:504796;s:14:\"optimized_size\";i:121500;s:7:\"percent\";d:75.93;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40136;s:14:\"optimized_size\";i:11024;s:7:\"percent\";d:72.53;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:74413;s:14:\"optimized_size\";i:18928;s:7:\"percent\";d:74.56;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:150658;s:14:\"optimized_size\";i:159976;s:7:\"percent\";d:-6.18;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:74413;s:14:\"optimized_size\";i:62483;s:7:\"percent\";d:16.03;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40136;s:14:\"optimized_size\";i:33531;s:7:\"percent\";d:16.46;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:504796;s:14:\"optimized_size\";i:437376;s:7:\"percent\";d:13.36;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:268705;s:14:\"optimized_size\";i:95759;s:7:\"percent\";d:64.36;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2077416;s:14:\"optimized_size\";i:1192992;s:7:\"percent\";d:42.57;}}'),(104599,3211,'_wp_attached_file','2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_GEORGIA_ATLANTA-1.png'),(104600,3211,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:196;s:4:\"file\";s:66:\"2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_GEORGIA_ATLANTA-1.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:66:\"0013_tc_landingpage_TOP_BANNERS_CITY_GEORGIA_ATLANTA-1-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:66:\"0013_tc_landingpage_TOP_BANNERS_CITY_GEORGIA_ATLANTA-1-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:{}}}'),(104601,3211,'_imagify_optimization_level','0'),(104602,3211,'_imagify_status','success'),(104603,3211,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:45829;s:14:\"optimized_size\";i:44327;s:7:\"percent\";d:3.28;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:44435;s:14:\"optimized_size\";i:12710;s:7:\"percent\";d:71.4;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:82476;s:14:\"optimized_size\";i:21976;s:7:\"percent\";d:73.35;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:45829;s:14:\"optimized_size\";i:44348;s:7:\"percent\";d:3.23;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:82476;s:14:\"optimized_size\";i:71025;s:7:\"percent\";d:13.88;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:44435;s:14:\"optimized_size\";i:38033;s:7:\"percent\";d:14.41;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:345480;s:14:\"optimized_size\";i:232419;s:7:\"percent\";d:32.73;}}'),(104604,3045,'_yoast_wpseo_estimated-reading-time-minutes',''),(104605,3045,'background_m','3210'),(104606,3045,'_background_m','field_60ddb5aec032b'),(104607,3045,'background_s','3211'),(104608,3045,'_background_s','field_60ddb5bac032c'),(104609,3045,'people_background_m','3144'),(104610,3045,'_people_background_m','field_60ddb5d3c032d'),(104611,3045,'people_background_s','3143'),(104612,3045,'_people_background_s','field_60ddb5ddc032e'),(104778,3213,'_wp_attached_file','2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_NEWYORK.png'),(104779,3213,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:196;s:4:\"file\";s:56:\"2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_NEWYORK.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:56:\"0013_tc_landingpage_TOP_BANNERS_CITY_NEWYORK-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"0013_tc_landingpage_TOP_BANNERS_CITY_NEWYORK-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:{}}}'),(104780,3213,'_imagify_optimization_level','0'),(104781,3213,'_imagify_status','success'),(104782,3213,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:44462;s:14:\"optimized_size\";i:43390;s:7:\"percent\";d:2.41;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40287;s:14:\"optimized_size\";i:10522;s:7:\"percent\";d:73.88;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:78734;s:14:\"optimized_size\";i:20230;s:7:\"percent\";d:74.31;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:44462;s:14:\"optimized_size\";i:40492;s:7:\"percent\";d:8.93;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:78734;s:14:\"optimized_size\";i:67264;s:7:\"percent\";d:14.57;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40287;s:14:\"optimized_size\";i:34331;s:7:\"percent\";d:14.78;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:326966;s:14:\"optimized_size\";i:216229;s:7:\"percent\";d:33.87;}}'),(104783,3214,'_wp_attached_file','2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_NEWYORK-1.png'),(104784,3214,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:392;s:4:\"file\";s:58:\"2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_NEWYORK-1.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"0013_tc_landingpage_TOP_BANNERS_CITY_NEWYORK-1-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"0013_tc_landingpage_TOP_BANNERS_CITY_NEWYORK-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:58:\"0013_tc_landingpage_TOP_BANNERS_CITY_NEWYORK-1-768x376.png\";s:5:\"width\";i:768;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:58:\"0013_tc_landingpage_TOP_BANNERS_CITY_NEWYORK-1-500x392.png\";s:5:\"width\";i:500;s:6:\"height\";i:392;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:{}}}'),(104785,3214,'_imagify_optimization_level','0'),(104786,3214,'_imagify_status','success'),(104787,3214,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:144178;s:14:\"optimized_size\";i:143254;s:7:\"percent\";d:0.64;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:225860;s:14:\"optimized_size\";i:91646;s:7:\"percent\";d:59.42;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:468917;s:14:\"optimized_size\";i:107592;s:7:\"percent\";d:77.06;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37123;s:14:\"optimized_size\";i:9234;s:7:\"percent\";d:75.13;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:72018;s:14:\"optimized_size\";i:17530;s:7:\"percent\";d:75.66;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:144178;s:14:\"optimized_size\";i:143910;s:7:\"percent\";d:0.19;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:72018;s:14:\"optimized_size\";i:60197;s:7:\"percent\";d:16.41;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37123;s:14:\"optimized_size\";i:30833;s:7:\"percent\";d:16.94;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:468917;s:14:\"optimized_size\";i:404150;s:7:\"percent\";d:13.81;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:225860;s:14:\"optimized_size\";i:90079;s:7:\"percent\";d:60.12;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1896192;s:14:\"optimized_size\";i:1098425;s:7:\"percent\";d:42.07;}}'),(104788,3049,'_yoast_wpseo_estimated-reading-time-minutes',''),(104789,3049,'background_m','3214'),(104790,3049,'_background_m','field_60ddb5aec032b'),(104791,3049,'background_s','3213'),(104792,3049,'_background_s','field_60ddb5bac032c'),(104793,3049,'people_background_m','3144'),(104794,3049,'_people_background_m','field_60ddb5d3c032d'),(104795,3049,'people_background_s','3143'),(104796,3049,'_people_background_s','field_60ddb5ddc032e'),(104962,3216,'_wp_attached_file','2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_ONTARIO_01_TORONTO.png'),(104963,3216,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:392;s:4:\"file\";s:67:\"2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_ONTARIO_01_TORONTO.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:67:\"0013_tc_landingpage_TOP_BANNERS_CITY_ONTARIO_01_TORONTO-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:67:\"0013_tc_landingpage_TOP_BANNERS_CITY_ONTARIO_01_TORONTO-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:67:\"0013_tc_landingpage_TOP_BANNERS_CITY_ONTARIO_01_TORONTO-768x376.png\";s:5:\"width\";i:768;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:67:\"0013_tc_landingpage_TOP_BANNERS_CITY_ONTARIO_01_TORONTO-500x392.png\";s:5:\"width\";i:500;s:6:\"height\";i:392;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:{}}}'),(104964,3216,'_imagify_optimization_level','0'),(104965,3216,'_imagify_status','success'),(104966,3216,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:146069;s:14:\"optimized_size\";i:144685;s:7:\"percent\";d:0.95;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:237840;s:14:\"optimized_size\";i:83860;s:7:\"percent\";d:64.74;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:457482;s:14:\"optimized_size\";i:102004;s:7:\"percent\";d:77.7;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36079;s:14:\"optimized_size\";i:9422;s:7:\"percent\";d:73.89;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:70959;s:14:\"optimized_size\";i:17944;s:7:\"percent\";d:74.71;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:146069;s:14:\"optimized_size\";i:134826;s:7:\"percent\";d:7.7;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:70959;s:14:\"optimized_size\";i:60677;s:7:\"percent\";d:14.49;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36079;s:14:\"optimized_size\";i:30770;s:7:\"percent\";d:14.71;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:457482;s:14:\"optimized_size\";i:397512;s:7:\"percent\";d:13.11;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:237840;s:14:\"optimized_size\";i:89958;s:7:\"percent\";d:62.18;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1896858;s:14:\"optimized_size\";i:1071658;s:7:\"percent\";d:43.5;}}'),(104967,3217,'_wp_attached_file','2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_ONTARIO_01_TORONTO-1.png'),(104968,3217,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:196;s:4:\"file\";s:69:\"2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_ONTARIO_01_TORONTO-1.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:69:\"0013_tc_landingpage_TOP_BANNERS_CITY_ONTARIO_01_TORONTO-1-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:69:\"0013_tc_landingpage_TOP_BANNERS_CITY_ONTARIO_01_TORONTO-1-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:{}}}'),(104969,3051,'_yoast_wpseo_estimated-reading-time-minutes',''),(104970,3051,'background_m','3216'),(104971,3051,'_background_m','field_60ddb5aec032b'),(104972,3051,'background_s','3217'),(104973,3051,'_background_s','field_60ddb5bac032c'),(104974,3051,'people_background_m','3144'),(104975,3051,'_people_background_m','field_60ddb5d3c032d'),(104976,3051,'people_background_s','3143'),(104977,3051,'_people_background_s','field_60ddb5ddc032e'),(105143,3217,'_imagify_optimization_level','0'),(105144,3217,'_imagify_status','success'),(105145,3217,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:45184;s:14:\"optimized_size\";i:43778;s:7:\"percent\";d:3.11;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39169;s:14:\"optimized_size\";i:10516;s:7:\"percent\";d:73.15;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:77240;s:14:\"optimized_size\";i:20478;s:7:\"percent\";d:73.49;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:45184;s:14:\"optimized_size\";i:39246;s:7:\"percent\";d:13.14;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:77240;s:14:\"optimized_size\";i:66963;s:7:\"percent\";d:13.31;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39169;s:14:\"optimized_size\";i:33593;s:7:\"percent\";d:14.24;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:323186;s:14:\"optimized_size\";i:214574;s:7:\"percent\";d:33.61;}}'),(105146,3219,'_wp_attached_file','2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_TEXAS_04_Houston.png'),(105147,3219,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:196;s:4:\"file\";s:65:\"2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_TEXAS_04_Houston.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:65:\"0013_tc_landingpage_TOP_BANNERS_CITY_TEXAS_04_Houston-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:65:\"0013_tc_landingpage_TOP_BANNERS_CITY_TEXAS_04_Houston-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:{}}}'),(105151,3220,'_wp_attached_file','2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_TEXAS_04_Houston-1.png'),(105152,3220,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:800;s:6:\"height\";i:392;s:4:\"file\";s:67:\"2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_TEXAS_04_Houston-1.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:67:\"0013_tc_landingpage_TOP_BANNERS_CITY_TEXAS_04_Houston-1-300x147.png\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:67:\"0013_tc_landingpage_TOP_BANNERS_CITY_TEXAS_04_Houston-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:67:\"0013_tc_landingpage_TOP_BANNERS_CITY_TEXAS_04_Houston-1-768x376.png\";s:5:\"width\";i:768;s:6:\"height\";i:376;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:67:\"0013_tc_landingpage_TOP_BANNERS_CITY_TEXAS_04_Houston-1-500x392.png\";s:5:\"width\";i:500;s:6:\"height\";i:392;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:{}}}'),(105153,3220,'_imagify_optimization_level','0'),(105154,3220,'_imagify_status','success'),(105155,3220,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:132061;s:14:\"optimized_size\";i:130974;s:7:\"percent\";d:0.82;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:213911;s:14:\"optimized_size\";i:98656;s:7:\"percent\";d:53.88;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:466039;s:14:\"optimized_size\";i:105794;s:7:\"percent\";d:77.3;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:38865;s:14:\"optimized_size\";i:10264;s:7:\"percent\";d:73.59;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:72347;s:14:\"optimized_size\";i:17730;s:7:\"percent\";d:75.49;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:132061;s:14:\"optimized_size\";i:141972;s:7:\"percent\";d:-7.5;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:72347;s:14:\"optimized_size\";i:61359;s:7:\"percent\";d:15.19;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:38865;s:14:\"optimized_size\";i:32996;s:7:\"percent\";d:15.1;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:466039;s:14:\"optimized_size\";i:404551;s:7:\"percent\";d:13.19;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:213911;s:14:\"optimized_size\";i:86106;s:7:\"percent\";d:59.75;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1846446;s:14:\"optimized_size\";i:1090402;s:7:\"percent\";d:40.95;}}'),(105156,3043,'_yoast_wpseo_estimated-reading-time-minutes',''),(105157,3043,'background_m','3220'),(105158,3043,'_background_m','field_60ddb5aec032b'),(105159,3043,'background_s','3219'),(105160,3043,'_background_s','field_60ddb5bac032c'),(105161,3043,'people_background_m','3144'),(105162,3043,'_people_background_m','field_60ddb5d3c032d'),(105163,3043,'people_background_s','3143'),(105164,3043,'_people_background_s','field_60ddb5ddc032e'),(105330,3009,'_yoast_wpseo_estimated-reading-time-minutes',''),(105331,3009,'background_m','3216'),(105332,3009,'_background_m','field_60ddb5ff59178'),(105333,3009,'background_s','3217'),(105334,3009,'_background_s','field_60ddb60859179'),(105335,3009,'people_background_m','3144'),(105336,3009,'_people_background_m','field_60ddb6155917a'),(105337,3009,'people_background_s','3143'),(105338,3009,'_people_background_s','field_60ddb61f5917b'),(105422,3016,'_yoast_wpseo_estimated-reading-time-minutes',''),(105423,3016,'background_m','3207'),(105424,3016,'_background_m','field_60ddb5ff59178'),(105425,3016,'background_s','3208'),(105426,3016,'_background_s','field_60ddb60859179'),(105427,3016,'people_background_m','3144'),(105428,3016,'_people_background_m','field_60ddb6155917a'),(105429,3016,'people_background_s','3143'),(105430,3016,'_people_background_s','field_60ddb61f5917b'),(105514,3014,'_yoast_wpseo_estimated-reading-time-minutes',''),(105515,3014,'background_m','3210'),(105516,3014,'_background_m','field_60ddb5ff59178'),(105517,3014,'background_s','3211'),(105518,3014,'_background_s','field_60ddb60859179'),(105519,3014,'people_background_m','3144'),(105520,3014,'_people_background_m','field_60ddb6155917a'),(105521,3014,'people_background_s','3143'),(105522,3014,'_people_background_s','field_60ddb61f5917b'),(105606,3018,'_yoast_wpseo_estimated-reading-time-minutes',''),(105607,3018,'background_m','3214'),(105608,3018,'_background_m','field_60ddb5ff59178'),(105609,3018,'background_s','3213'),(105610,3018,'_background_s','field_60ddb60859179'),(105611,3018,'people_background_m','3144'),(105612,3018,'_people_background_m','field_60ddb6155917a'),(105613,3018,'people_background_s','3143'),(105614,3018,'_people_background_s','field_60ddb61f5917b'),(105698,3012,'_yoast_wpseo_estimated-reading-time-minutes',''),(105699,3012,'background_m','3220'),(105700,3012,'_background_m','field_60ddb5ff59178'),(105701,3012,'background_s','3219'),(105702,3012,'_background_s','field_60ddb60859179'),(105703,3012,'people_background_m','3144'),(105704,3012,'_people_background_m','field_60ddb6155917a'),(105705,3012,'people_background_s','3143'),(105706,3012,'_people_background_s','field_60ddb61f5917b'),(105814,3227,'_pinterest_shares','0'),(105815,3227,'_total_shares','0'),(105817,3228,'_pinterest_shares','0'),(105818,3228,'_total_shares','0'),(105820,2634,'_pinterest_shares','0'),(105821,2634,'_total_shares','0'),(105823,2635,'_pinterest_shares','0'),(105824,2635,'_total_shares','0'),(105826,2636,'_pinterest_shares','0'),(105827,2636,'_total_shares','0'),(105829,2637,'_pinterest_shares','0'),(105830,2637,'_total_shares','0'),(105832,3200,'_pinterest_shares','0'),(105833,3200,'_total_shares','0'),(105835,3201,'_pinterest_shares','0'),(105836,3201,'_total_shares','0'),(105838,2638,'_pinterest_shares','0'),(105839,2638,'_total_shares','0'),(105841,2639,'_pinterest_shares','0'),(105842,2639,'_total_shares','0'),(105844,2640,'_pinterest_shares','0'),(105845,2640,'_total_shares','0'),(105847,2641,'_pinterest_shares','0'),(105848,2641,'_total_shares','0'),(105850,2642,'_pinterest_shares','0'),(105851,2642,'_total_shares','0'),(105853,2644,'_pinterest_shares','0'),(105854,2644,'_total_shares','0'),(105856,2645,'_pinterest_shares','0'),(105857,2645,'_total_shares','0'),(105859,2646,'_pinterest_shares','0'),(105860,2646,'_total_shares','0'),(105862,2647,'_pinterest_shares','0'),(105863,2647,'_total_shares','0'),(105865,2649,'_pinterest_shares','0'),(105866,2649,'_total_shares','0'),(105868,2650,'_pinterest_shares','0'),(105869,2650,'_total_shares','0'),(105871,2651,'_pinterest_shares','0'),(105872,2651,'_total_shares','0'),(105877,2626,'_pinterest_shares','0'),(105878,2626,'_total_shares','0'),(105880,3229,'_pinterest_shares','0'),(105881,3229,'_total_shares','0'),(105883,3230,'_pinterest_shares','0'),(105884,3230,'_total_shares','0'),(105886,2679,'_pinterest_shares','0'),(105887,2679,'_total_shares','0'),(105889,2680,'_pinterest_shares','0'),(105890,2680,'_total_shares','0'),(105892,2681,'_pinterest_shares','0'),(105893,2681,'_total_shares','0'),(105895,2683,'_pinterest_shares','0'),(105896,2683,'_total_shares','0'),(105898,2676,'_pinterest_shares','0'),(105899,2676,'_total_shares','0'),(105901,3204,'_pinterest_shares','0'),(105902,3204,'_total_shares','0'),(105904,3205,'_pinterest_shares','0'),(105905,3205,'_total_shares','0'),(105907,2677,'_pinterest_shares','0'),(105908,2677,'_total_shares','0'),(105910,2678,'_pinterest_shares','0'),(105911,2678,'_total_shares','0'),(105913,2690,'_pinterest_shares','0'),(105914,2690,'_total_shares','0'),(105919,2665,'_pinterest_shares','0'),(105920,2665,'_total_shares','0'),(105922,3051,'image_m','3142'),(105923,3051,'_image_m','field_60ddba8aef029'),(105924,3051,'image_s','3141'),(105925,3051,'_image_s','field_60ddba94ef02a'),(106095,3047,'image_m','3142'),(106096,3047,'_image_m','field_60ddba8aef029'),(106097,3047,'image_s','3141'),(106098,3047,'_image_s','field_60ddba94ef02a'),(106268,3045,'image_m','3142'),(106269,3045,'_image_m','field_60ddba8aef029'),(106270,3045,'image_s','3141'),(106271,3045,'_image_s','field_60ddba94ef02a'),(106441,3049,'image_m','3142'),(106442,3049,'_image_m','field_60ddba8aef029'),(106443,3049,'image_s','3141'),(106444,3049,'_image_s','field_60ddba94ef02a'),(106614,3043,'image_m','3142'),(106615,3043,'_image_m','field_60ddba8aef029'),(106616,3043,'image_s','3141'),(106617,3043,'_image_s','field_60ddba94ef02a'),(106787,3009,'image_m','3142'),(106788,3009,'_image_m','field_60ddbaaf262b1'),(106789,3009,'image_s','3141'),(106790,3009,'_image_s','field_60ddbab6262b2'),(106878,3016,'image_m','3142'),(106879,3016,'_image_m','field_60ddbaaf262b1'),(106880,3016,'image_s','3141'),(106881,3016,'_image_s','field_60ddbab6262b2'),(106969,3014,'image_m','3142'),(106970,3014,'_image_m','field_60ddbaaf262b1'),(106971,3014,'image_s','3141'),(106972,3014,'_image_s','field_60ddbab6262b2'),(107060,3018,'image_m','3142'),(107061,3018,'_image_m','field_60ddbaaf262b1'),(107062,3018,'image_s','3141'),(107063,3018,'_image_s','field_60ddbab6262b2'),(107151,3012,'image_m','3142'),(107152,3012,'_image_m','field_60ddbaaf262b1'),(107153,3012,'image_s','3141'),(107154,3012,'_image_s','field_60ddbab6262b2'),(107996,1924,'_yoast_wpseo_estimated-reading-time-minutes',''),(108538,3248,'_edit_lock','1629404490:4'),(108539,3248,'_edit_last','1'),(108540,3249,'_pinterest_shares','0'),(108541,3249,'_total_shares','0'),(108543,3250,'_pinterest_shares','0'),(108544,3250,'_total_shares','0'),(108546,3251,'_pinterest_shares','0'),(108547,3251,'_total_shares','0'),(108549,3252,'_pinterest_shares','0'),(108550,3252,'_total_shares','0'),(108552,3253,'_pinterest_shares','0'),(108553,3253,'_total_shares','0'),(108558,3248,'_pinterest_shares','0'),(108559,3248,'_total_shares','0'),(108561,46,'_yoast_wpseo_estimated-reading-time-minutes',''),(108562,46,'case_study_0_title','Canadian Black Book'),(108563,46,'_case_study_0_title','field_610b429bb78f0'),(108564,46,'case_study_0_text',''),(108565,46,'_case_study_0_text','field_610b42a3b78f1'),(108566,46,'case_study_0_image','655'),(108567,46,'_case_study_0_image','field_610b42b3b78f2'),(108568,46,'case_study_0_link','804'),(108569,46,'_case_study_0_link','field_610b42c7b78f3'),(108570,46,'case_study_1_title','The Hospital for Sick Children'),(108571,46,'_case_study_1_title','field_610b429bb78f0'),(108572,46,'case_study_1_text',''),(108573,46,'_case_study_1_text','field_610b42a3b78f1'),(108574,46,'case_study_1_image','772'),(108575,46,'_case_study_1_image','field_610b42b3b78f2'),(108576,46,'case_study_1_link','38'),(108577,46,'_case_study_1_link','field_610b42c7b78f3'),(108578,46,'case_study','2'),(108579,46,'_case_study','field_610b428cb78ef'),(109340,1555,'hefo_before','0'),(109341,1555,'hefo_after','0'),(109342,1555,'ao_post_optimize','a:5:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";}'),(109346,1555,'_yoast_wpseo_estimated-reading-time-minutes','1'),(109682,869,'hefo_before','0'),(109683,869,'hefo_after','0'),(109684,869,'ao_post_optimize','a:5:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";}'),(109685,869,'_yoast_wpseo_focuskeywords','[]'),(109686,869,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(109687,869,'_yoast_wpseo_estimated-reading-time-minutes','1'),(110161,1405,'hefo_before','0'),(110162,1405,'hefo_after','0'),(110163,1405,'ao_post_optimize','a:5:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";}'),(110167,1405,'_yoast_wpseo_estimated-reading-time-minutes','9'),(110177,1405,'enclosure','https://translucentcomputing.com/wp-content/uploads/2020/01/audio-kube-cost-part1_v4.mp3\n0\naudio/mpeg\n'),(110183,1324,'hefo_before','0'),(110184,1324,'hefo_after','0'),(110185,1324,'ao_post_optimize','a:5:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";}'),(110189,1324,'_yoast_wpseo_estimated-reading-time-minutes','3'),(110193,1324,'enclosure','https://translucentcomputing.com/wp-content/uploads/2020/01/audio_bimodal_blog_v2.mp3\n0\naudio/mpeg\n'),(110203,1699,'hefo_before','0'),(110204,1699,'hefo_after','0'),(110205,1699,'ao_post_optimize','a:5:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";}'),(110212,1699,'_yoast_wpseo_estimated-reading-time-minutes','6'),(110333,3220,'_wp_attachment_image_alt','houston city skyline in texas'),(110334,3219,'_wp_attachment_image_alt','houston city skyline in texas small'),(110335,3217,'_wp_attachment_image_alt','toronto city skyline small'),(110336,3216,'_wp_attachment_image_alt','toronto city skyline medium'),(110337,3214,'_wp_attachment_image_alt','new york city skyline medium'),(110338,3213,'_wp_attachment_image_alt','new york city skyline small'),(110339,3211,'_wp_attachment_image_alt','georgia city skyline small'),(110340,3210,'_wp_attachment_image_alt','georgia city skyline large'),(110341,3207,'_wp_attachment_image_alt','california skyline large'),(110342,3208,'_wp_attachment_image_alt','california skyline small'),(110343,3195,'_wp_attachment_image_alt','gotoloans transparent logo'),(110344,3144,'_wp_attachment_image_alt','three people smiling happy customers'),(110345,3143,'_wp_attachment_image_alt','two business partners smiling'),(110346,3142,'_wp_attachment_image_alt','kubernetes business partner representative'),(110347,3141,'_wp_attachment_image_alt','kubernetes business partner'),(110348,3138,'_wp_attachment_image_alt','toronto skyline large'),(110349,3137,'_wp_attachment_image_alt','toronto skyline small'),(110350,3126,'_wp_attachment_image_alt','translucent learning process large'),(110351,3125,'_wp_attachment_image_alt','translucent computing digital transformation process large'),(110352,3124,'_wp_attachment_image_alt','translucent computing support process large'),(110353,3114,'_wp_attachment_image_alt','cloud native devops info icon'),(110354,3115,'_wp_attachment_image_alt','cloud native applications info icon'),(110355,3113,'_wp_attachment_image_alt','kubernetes services icon'),(110361,3080,'_wp_attachment_image_alt','translucent cloud native applications main banner'),(110362,3076,'_wp_attachment_image_alt','california city skyline'),(110363,3073,'_wp_attachment_image_alt','houston city skyline'),(110364,3070,'_wp_attachment_image_alt','dallas city skyline'),(110365,3067,'_wp_attachment_image_alt','georgia city skyline'),(110366,3064,'_wp_attachment_image_alt','new york city skyline large'),(110367,3057,'_wp_attachment_image_alt','toronto city skyline large'),(110368,2975,'_wp_attachment_image_alt','translucent Kubernetes certified partner'),(110369,2974,'_wp_attachment_image_alt','toronto city skyline big banner'),(110370,2961,'_wp_attachment_image_alt','translcuent cloud native devops partner'),(110398,2960,'_wp_attachment_image_alt','translucent Kubernetes Professional Services partner'),(110429,2959,'_wp_attachment_image_alt','translucent Cloud Native Applications partner'),(110436,2958,'_wp_attachment_image_alt','blue hexagon number 1 icon'),(110437,2957,'_wp_attachment_image_alt','blue hexagon number 2 icon'),(110438,2956,'_wp_attachment_image_alt','blue hexagon number 3 icon'),(110439,2943,'_wp_attachment_image_alt','translucent digital transformation main banner'),(110440,2942,'_wp_attachment_image_alt','translucent mr data purple icon'),(110447,2941,'_wp_attachment_image_alt','translucent build rebuild replatform process'),(110448,2940,'_wp_attachment_image_alt','replatforming and rebuilding with mr data icons'),(110449,2939,'_wp_attachment_image_alt','translucent andrew james comment'),(110450,2938,'_wp_attachment_image_alt','translucent rebuilding image icon'),(110451,2936,'_wp_attachment_image_alt','translucent eric kaplan comment'),(110452,2935,'_wp_attachment_image_alt','square purple b icon'),(110453,2934,'_wp_attachment_image_alt','purple cloud native applications icon'),(110454,2933,'_wp_attachment_image_alt','translucent purple cloud native applications banner'),(110455,2922,'_wp_attachment_image_alt','translucent eric kaplan comment review transparent'),(110456,2921,'_wp_attachment_image_alt','translucent andrew james comment review transparent'),(110457,2920,'_wp_attachment_image_alt','blue rebuilding and replatforming mr data process'),(110458,2919,'_wp_attachment_image_alt','translucent blue cloud native applications icon'),(110459,2918,'_wp_attachment_image_alt','translucent rebuilding process in blue color'),(110460,2916,'_wp_attachment_image_alt','blue color b icon'),(110461,2912,'_wp_attachment_image_alt','translucent save money process example banner transparent'),(110462,2911,'_wp_attachment_image_alt','translucent faster deployment process transparent'),(110463,2907,'_wp_attachment_image_alt','translucent save money and deploy faster process transparent'),(110464,2905,'_wp_attachment_image_alt','translucent ceo icon image Robert Golabek'),(110465,2904,'_wp_attachment_image_alt','translucent CEO robert golabek icon'),(110466,2903,'_wp_attachment_image_alt','translucent cloud native devops consulting banner blue'),(110467,2897,'_wp_attachment_image_alt','translucent mr data pink icon'),(110468,2895,'_wp_attachment_image_alt','translucent cloud native applications pink icon'),(110469,2894,'_wp_attachment_image_alt','translucent cloud native applications pink banner'),(110470,2893,'_wp_attachment_image_alt','translucent replatform blue icon'),(110471,2891,'_wp_attachment_image_alt','translucent mike compton review comment transparent'),(110472,2887,'_wp_attachment_image_alt','translucent digital transformation pink blue banner'),(110473,2886,'_wp_attachment_image_alt','translucent build rebuild and replatform blue banner process'),(110474,2880,'_wp_attachment_image_alt','translucent devops solution'),(110475,2868,'_wp_attachment_image_alt','translucent cloud n devops blue icon transparent'),(110476,2867,'_wp_attachment_image_alt','translucent mr data blue icon image transparent'),(110477,2866,'_wp_attachment_image_alt','translucent business value main banner in blue color'),(110484,2864,'_wp_attachment_image_alt','Translucent’s cloud native data driven Devops solutions banner'),(110485,2863,'_wp_attachment_image_alt','translucent mr data main icon'),(110486,2861,'_wp_attachment_image_alt','mr data blue afro icon image'),(110487,2860,'_wp_attachment_image_alt','part 2 of What is Data Driven Digital Transformation process banner'),(110488,2859,'_wp_attachment_image_alt','part 1 of What is Data Driven Digital Transformation process banner'),(110489,2858,'_wp_attachment_image_alt','translucent\'s DevOps Journey Roadmap banner'),(110490,2850,'_wp_attachment_image_alt','translucent CTO patryk golabek icon'),(110491,2848,'_wp_attachment_image_alt','translucent COO bradford sankar icon'),(110492,2849,'_wp_attachment_image_alt','translucent CTO patryk golabek image icon transparent'),(110493,2847,'_wp_attachment_image_alt','translucent COO bradford sankar icon transparent'),(110497,2759,'_wp_attachment_image_alt','translucent transparent call icon in blue color'),(110498,2716,'_wp_attachment_image_alt','translucent partner uhn icon logo transparent'),(110499,2714,'_wp_attachment_image_alt','translucent partner southlake icon logo transparent'),(110500,2715,'_wp_attachment_image_alt','translucent trusted by icon logo transparent'),(110501,2713,'_wp_attachment_image_alt','translucent partner sick kids icon logo transparent'),(110502,2711,'_wp_attachment_image_alt','translucent partner canadian black book icon logo transparent'),(110503,2712,'_wp_attachment_image_alt','translucent partner go to loans icon logo transparent'),(110504,2710,'_wp_attachment_image_alt','translucent transparent devops icon image'),(110505,2708,'_wp_attachment_image_alt','translucent machine learning icon image'),(110506,2709,'_wp_attachment_image_alt','translucent microservices icon image'),(110507,2624,'_wp_attachment_image_alt','translucent save money devops solution'),(110508,2623,'_wp_attachment_image_alt','translucent save time devops solution'),(110509,2622,'_wp_attachment_image_alt','translucent logo in color small'),(110510,2621,'_wp_attachment_image_alt','all of translucent business partners large'),(110511,2615,'_wp_attachment_image_alt','mesh graphic transparent image'),(110512,2613,'_wp_attachment_image_alt','ontario skyline image in dark color'),(110513,2600,'_wp_attachment_image_alt','kubernetes certified service prodiver logo including partners'),(110514,2599,'_wp_attachment_image_alt','translucent kubernetes prodivers business partner'),(110515,2597,'_wp_attachment_image_alt','translucent computing trusted partners wide transparent'),(110516,2579,'_wp_attachment_image_alt','kubernetes certified prodivers with partners wide'),(110517,2567,'_wp_attachment_image_alt','shining bulb with lights inside'),(110518,2561,'_wp_attachment_image_alt','translucent save money process solution image transparent'),(110519,2559,'_wp_attachment_image_alt','translucent business partners community'),(110520,2558,'_wp_attachment_image_alt','translucent blue dots graphic'),(110521,2557,'_wp_attachment_image_alt','mr data with colorful afro mini icon'),(110522,2552,'_wp_attachment_image_alt','mesh style graphic transparent'),(110523,2549,'_wp_attachment_image_alt','translucent main services'),(110524,2548,'_wp_attachment_image_alt','translucent call icon transparent'),(110525,2545,'_wp_attachment_image_alt','ontario city in dark large'),(110526,2543,'_wp_attachment_image_alt','kubernetes solution process'),(110527,2539,'_wp_attachment_image_alt','data digital transformation process 2'),(110528,2538,'_wp_attachment_image_alt','data digital transformation process 1'),(110529,2537,'_wp_attachment_image_alt','data digital transformation process 3'),(110530,2535,'_wp_attachment_image_alt','canadian black book study case front'),(110531,2534,'_wp_attachment_image_alt','translucent large logo in purple color transparent'),(110532,2532,'_wp_attachment_image_alt','small translucent logo icon'),(110533,2531,'_wp_attachment_image_alt','large translucent logo in purple with mesh'),(110534,2530,'_wp_attachment_image_alt','translucent devops business partner'),(110535,2528,'_wp_attachment_image_alt','ontario city skyline in dark with small blue dots'),(110536,2512,'_wp_attachment_image_alt','translucent multicloud solution process explained'),(110537,2510,'_wp_attachment_image_alt','translucent multicloud process explained with blue side'),(110538,2508,'_wp_attachment_image_alt','translucent devops automation process and solution'),(110539,2481,'_wp_attachment_image_alt','translucent bias in ai certificates'),(110540,2478,'_wp_attachment_image_alt','translucent 3 bias in ai certificates'),(110541,2473,'_wp_attachment_image_alt','NRCCNRC canada assistance program partner'),(110542,2468,'_wp_attachment_image_alt','kubernetes professional services and cloud native'),(110543,2454,'_wp_attachment_image_alt','What is Data Driven Digital Transformation process? large'),(110544,2452,'_wp_attachment_image_alt','translucent DevOps Journey Roadmap'),(110545,2435,'_wp_attachment_image_alt','translucent kubernetes service assistant'),(110546,2434,'_wp_attachment_image_alt','translucent cloud native applications assistant'),(110547,2433,'_wp_attachment_image_alt','translucent cloud native devops assistant'),(110548,2173,'_wp_attachment_image_alt','Why parler went down? blog'),(110549,2170,'_wp_attachment_image_alt','neo4j + vault hashicorp blog'),(110556,3272,'top-image','654'),(110557,3272,'_top-image','field_5c47486901570'),(110558,3272,'top-title','Data-Driven
Digital Transformation'),(110559,3272,'_top-title','field_5c47489001571'),(110560,3272,'top-text','We Partner with companies to build business value through software innovation.

Every company is now a technology company. How competitive are you in your industry? Let us help you.'),(110561,3272,'_top-text','field_5c47489e01572'),(110562,3272,'top-items_0_item','Cloud-Native'),(110563,3272,'_top-items_0_item','field_5c4748d001574'),(110564,3272,'top-items_1_item','Data Lake'),(110565,3272,'_top-items_1_item','field_5c4748d001574'),(110566,3272,'top-items_2_item','Kubernetes'),(110567,3272,'_top-items_2_item','field_5c4748d001574'),(110568,3272,'top-items_3_item','Scalable'),(110569,3272,'_top-items_3_item','field_5c4748d001574'),(110570,3272,'top-items_4_item','Secure'),(110571,3272,'_top-items_4_item','field_5c4748d001574'),(110572,3272,'top-items','5'),(110573,3272,'_top-items','field_5c4748c401573'),(110574,3272,'top-button','44'),(110575,3272,'_top-button','field_5c4748e601575'),(110576,3272,'services-presentation','Build cloud-native applications with Translucent\r\nCreate modern applications using state-of-the-art technology with TEKStack AI'),(110577,3272,'_services-presentation','field_5c474986bee5b'),(110578,3272,'call-title','Start a Conversation'),(110579,3272,'_call-title','field_5c4749bcbee5c'),(110580,3272,'call-text',''),(110581,3272,'_call-text','field_5c4749d7bee5d'),(110582,3272,'case-title','The Hospital for Sick Children'),(110583,3272,'_case-title','field_5c4749f4bee5e'),(110584,3272,'case-text',''),(110585,3272,'_case-text','field_5c474a4abee5f'),(110586,3272,'case-image','772'),(110587,3272,'_case-image','field_5c474a6dbee61'),(110588,3272,'case-link','38'),(110589,3272,'_case-link','field_5c476a3dac685'),(110590,3272,'case_study_0_title',''),(110591,3272,'_case_study_0_title','field_5c82d24ccbac6'),(110592,3272,'case_study_0_text',''),(110593,3272,'_case_study_0_text','field_5c82d258cbac7'),(110594,3272,'case_study_0_image',''),(110595,3272,'_case_study_0_image','field_5c82d266cbac8'),(110596,3272,'case_study_0_link',''),(110597,3272,'_case_study_0_link','field_5c82d275cbac9'),(110598,3272,'case_study_1_title',''),(110599,3272,'_case_study_1_title','field_5c82d24ccbac6'),(110600,3272,'case_study_1_text',''),(110601,3272,'_case_study_1_text','field_5c82d258cbac7'),(110602,3272,'case_study_1_image',''),(110603,3272,'_case_study_1_image','field_5c82d266cbac8'),(110604,3272,'case_study_1_link',''),(110605,3272,'_case_study_1_link','field_5c82d275cbac9'),(110606,3272,'case_study',''),(110607,3272,'_case_study','field_6059d436ba0ce'),(110608,3272,'banners_0_banner_title','We Listen.'),(110609,3272,'_banners_0_banner_title','field_6059d268ba0bb'),(110610,3272,'banners_0_banner_subheading','Your needs matter to us'),(110611,3272,'_banners_0_banner_subheading','field_6059d289ba0bc'),(110612,3272,'banners_0_banner_bold','With open communication.
Your goals become our goals.'),(110613,3272,'_banners_0_banner_bold','field_6059d293ba0bd'),(110614,3272,'banners_0_banner_text','This allows us to transform your company\r\nLet us help you.'),(110615,3272,'_banners_0_banner_text','field_6059d2a2ba0be'),(110616,3272,'banners_0_video_background','1'),(110617,3272,'_banners_0_video_background','field_6059d2b3ba0bf'),(110618,3272,'banners_0_video_link','https://translucentcomputing.com/wp-content/uploads/2021/05/TC_BANNER_2.0-HEX121d3d.webm'),(110619,3272,'_banners_0_video_link','field_6059d2ccba0c0'),(110620,3272,'banners_0_button_text','Book a consultation '),(110621,3272,'_banners_0_button_text','field_6059d309ba0c2'),(110622,3272,'banners_0_button_link','#contact'),(110623,3272,'_banners_0_button_link','field_6059d314ba0c3'),(110624,3272,'banners','4'),(110625,3272,'_banners','field_6059d073ba0ba'),(110626,3272,'blog_section_title','Build cloud-native\r\ndata-driven applications with Translucent'),(110627,3272,'_blog_section_title','field_6059d32dba0c4'),(110628,3272,'inform_and_learn','We work with you, informing and educating you about what it takes to be digitally competitive in the current market. We learn your business and business needs.'),(110629,3272,'_inform_and_learn','field_6059d34dba0c5'),(110630,3272,'inception_and_discovery','During the discovery phase we uncover all business processes and requirements and understand your current state. During the inception phase we conceive and plan your solution.'),(110631,3272,'_inception_and_discovery','field_6059d361ba0c6'),(110632,3272,'digital_transformation','We implement your digital strategy with ongoing support, leveraging proven development methodologies.'),(110633,3272,'_digital_transformation','field_6059d375ba0c7'),(110634,3272,'services_microservices','Building scalable, reliable and secure ecosystems for your business!'),(110635,3272,'_services_microservices','field_6059d397ba0c8'),(110636,3272,'services_microservices_image','2434'),(110637,3272,'_services_microservices_image','field_6059d3b9ba0c9'),(110638,3272,'services_machine','Insights to improve quality of life, provide clarity in decision making and increase profits.'),(110639,3272,'_services_machine','field_6059d3ccba0ca'),(110640,3272,'services_machine_image','2435'),(110641,3272,'_services_machine_image','field_6059d3e2ba0cb'),(110642,3272,'services_devops','Keeping communication between your business operations, your technology, and the online world, in sync.'),(110643,3272,'_services_devops','field_6059d402ba0cc'),(110644,3272,'services_devops_image','2433'),(110645,3272,'_services_devops_image','field_6059d412ba0cd'),(110646,3272,'case_study_title','Sick Kids Hospital'),(110647,3272,'_case_study_title','field_6059d43fba0cf'),(110648,3272,'case_study_description','At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum'),(110649,3272,'_case_study_description','field_6059d44aba0d0'),(110650,3272,'case_study_image','2215'),(110651,3272,'_case_study_image','field_6059d459ba0d1'),(110652,3272,'case_study_link','#'),(110653,3272,'_case_study_link','field_6059d471ba0d2'),(110654,3272,'clients','10'),(110655,3272,'_clients','field_6059d489ba0d3'),(110656,3272,'case_study_2_title',''),(110657,3272,'_case_study_2_title','field_5c82d24ccbac6'),(110658,3272,'case_study_2_text',''),(110659,3272,'_case_study_2_text','field_5c82d258cbac7'),(110660,3272,'case_study_2_image',''),(110661,3272,'_case_study_2_image','field_5c82d266cbac8'),(110662,3272,'case_study_2_link',''),(110663,3272,'_case_study_2_link','field_5c82d275cbac9'),(110664,3272,'case_study_3_title',''),(110665,3272,'_case_study_3_title','field_5c82d24ccbac6'),(110666,3272,'case_study_3_text',''),(110667,3272,'_case_study_3_text','field_5c82d258cbac7'),(110668,3272,'case_study_3_image',''),(110669,3272,'_case_study_3_image','field_5c82d266cbac8'),(110670,3272,'case_study_3_link',''),(110671,3272,'_case_study_3_link','field_5c82d275cbac9'),(110672,3272,'clients_0_image','793'),(110673,3272,'_clients_0_image','field_6059d493ba0d4'),(110674,3272,'clients_1_image','794'),(110675,3272,'_clients_1_image','field_6059d493ba0d4'),(110676,3272,'clients_2_image','623'),(110677,3272,'_clients_2_image','field_6059d493ba0d4'),(110678,3272,'clients_3_image','796'),(110679,3272,'_clients_3_image','field_6059d493ba0d4'),(110680,3272,'clients_4_image','797'),(110681,3272,'_clients_4_image','field_6059d493ba0d4'),(110682,3272,'clients_5_image','798'),(110683,3272,'_clients_5_image','field_6059d493ba0d4'),(110684,3272,'clients_6_image','799'),(110685,3272,'_clients_6_image','field_6059d493ba0d4'),(110686,3272,'clients_7_image','800'),(110687,3272,'_clients_7_image','field_6059d493ba0d4'),(110688,3272,'clients_8_image','801'),(110689,3272,'_clients_8_image','field_6059d493ba0d4'),(110690,3272,'clients_9_image','802'),(110691,3272,'_clients_9_image','field_6059d493ba0d4'),(110692,3272,'case_title','Sick Kids Hospital'),(110693,3272,'_case_title','field_6059e3a6eec00'),(110694,3272,'case_description','At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum'),(110695,3272,'_case_description','field_6059e3bdeec01'),(110696,3272,'case_image','2215'),(110697,3272,'_case_image','field_6059e3d7eec02'),(110698,3272,'case_link','#'),(110699,3272,'_case_link','field_6059e3e6eec03'),(110700,3272,'banners_1_banner_title','We Learn.'),(110701,3272,'_banners_1_banner_title','field_6059d268ba0bb'),(110702,3272,'banners_1_banner_subheading','Focused Action | Targeted results'),(110703,3272,'_banners_1_banner_subheading','field_6059d289ba0bc'),(110704,3272,'banners_1_banner_bold','Learning is is our DNA.
Knowledge sharing is our passion.'),(110705,3272,'_banners_1_banner_bold','field_6059d293ba0bd'),(110706,3272,'banners_1_banner_text','We share what we know, so you\'ll know what we learn.'),(110707,3272,'_banners_1_banner_text','field_6059d2a2ba0be'),(110708,3272,'banners_1_video_background','0'),(110709,3272,'_banners_1_video_background','field_6059d2b3ba0bf'),(110710,3272,'banners_1_background_image','3126'),(110711,3272,'_banners_1_background_image','field_6059d2e1ba0c1'),(110712,3272,'banners_1_button_text','Book a consultation'),(110713,3272,'_banners_1_button_text','field_6059d309ba0c2'),(110714,3272,'banners_1_button_link','#contact'),(110715,3272,'_banners_1_button_link','field_6059d314ba0c3'),(110716,3272,'banners_2_banner_title','We Inform.'),(110717,3272,'_banners_2_banner_title','field_6059d268ba0bb'),(110718,3272,'banners_2_banner_subheading','Data Driven | Digital Transformation'),(110719,3272,'_banners_2_banner_subheading','field_6059d289ba0bc'),(110720,3272,'banners_2_banner_bold','The cloud native partnership.
Your business depends on.'),(110721,3272,'_banners_2_banner_bold','field_6059d293ba0bd'),(110722,3272,'banners_2_banner_text','Every company is now a technology company.\r\nHow can we help you?'),(110723,3272,'_banners_2_banner_text','field_6059d2a2ba0be'),(110724,3272,'banners_2_video_background','0'),(110725,3272,'_banners_2_video_background','field_6059d2b3ba0bf'),(110726,3272,'banners_2_background_image','3125'),(110727,3272,'_banners_2_background_image','field_6059d2e1ba0c1'),(110728,3272,'banners_2_button_text','Book a consultation'),(110729,3272,'_banners_2_button_text','field_6059d309ba0c2'),(110730,3272,'banners_2_button_link','#contact'),(110731,3272,'_banners_2_button_link','field_6059d314ba0c3'),(110732,3272,'banners_3_banner_title','We Support.'),(110733,3272,'_banners_3_banner_title','field_6059d268ba0bb'),(110734,3272,'banners_3_banner_subheading','24 hour support | 7 days a week'),(110735,3272,'_banners_3_banner_subheading','field_6059d289ba0bc'),(110736,3272,'banners_3_banner_bold','We support our people so they can support you, anytime and anywhere.'),(110737,3272,'_banners_3_banner_bold','field_6059d293ba0bd'),(110738,3272,'banners_3_banner_text','\"I would use them again if I could. In fact,\r\nI would use their team for everything if I could!\"\r\nThiago Telles - Cerberus CEO'),(110739,3272,'_banners_3_banner_text','field_6059d2a2ba0be'),(110740,3272,'banners_3_video_background','0'),(110741,3272,'_banners_3_video_background','field_6059d2b3ba0bf'),(110742,3272,'banners_3_background_image','3124'),(110743,3272,'_banners_3_background_image','field_6059d2e1ba0c1'),(110744,3272,'banners_3_button_text','Book a consultation'),(110745,3272,'_banners_3_button_text','field_6059d309ba0c2'),(110746,3272,'banners_3_button_link','#contact'),(110747,3272,'_banners_3_button_link','field_6059d314ba0c3'),(110748,3272,'banners_0_background_image',''),(110749,3272,'_banners_0_background_image','field_6059d2e1ba0c1'),(110750,1924,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(110754,922,'hefo_before','0'),(110755,922,'hefo_after','0'),(110756,922,'ao_post_optimize','a:5:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";}'),(110757,922,'_yoast_wpseo_title','Translucent | Blog'),(110758,922,'_yoast_wpseo_estimated-reading-time-minutes',''),(110768,3275,'top-image','790'),(110769,3275,'_top-image','field_5c474afbe6e69'),(110770,3275,'top-mission','Simplifying complex technical issues, with solutions you need, in a language you can understand.'),(110771,3275,'_top-mission','field_5c474b15e6e6a'),(110772,3275,'idea-text','Creating Digital Transformation technology solutions that work for real people.'),(110773,3275,'_idea-text','field_5c474b3ce6e6b'),(110774,3275,'ready-text','People don’t need to know everything about how digital transformation works. They care that their systems are built for their needs and create consistent results.'),(110775,3275,'_ready-text','field_5c474b57e6e6c'),(110776,3275,'about-translucent','Translucent takes your technology problems and transforms them to measurable and manageable outcomes.'),(110777,3275,'_about-translucent','field_5c474b8fe6e6d'),(110778,3275,'phrase','“Customers’ expectations are on the rise. They’re accessing and using multiple data points in real time, and don’t expect to be kept waiting. This affects the performance of systems and software. Adapting means undergoing a complete restructuring of our processes.”'),(110779,3275,'_phrase','field_5c474bafe6e6e'),(110780,3275,'author','EUROPEAN RAIL OPERATOR\r\nHEAD OF PLANNING AND PRODUCTION'),(110781,3275,'_author','field_5c474bbfe6e6f'),(110782,3275,'quality-image','659'),(110783,3275,'_quality-image','field_5c474bfae6e70'),(110784,3275,'quality-text','We strive to create solutions of the highest Quality while understanding real-world issues of time, budget, and results. We work with you to identify your \"A\" Priorities and give you solutions built for your exact needs.\r\n\r\nWe can build from a vision or start from your existing systems, evolving your company through the next industrial revolution, the Digital Transformation Evolution.'),(110785,3275,'_quality-text','field_5c474c13e6e71'),(110786,3275,'inovation-image','660'),(110787,3275,'_inovation-image','field_5c474c2de6e72'),(110788,3275,'inovation-text','We are here to serve our clients, understanding their needs and where we can provide insight based on the best, most stable, forward-moving technologies available. True Innovation.\r\n\r\nOnce we understand your vision and goals, we\'ll work with you to make you competitive now, and together we will build your future.'),(110789,3275,'_inovation-text','field_5c474c4be6e73'),(110790,3275,'value-image','661'),(110791,3275,'_value-image','field_5c474c5ae6e74'),(110792,3275,'value-text','Translucent was built upon creating relationships that became trusted partnerships.\r\nIt starts with having a good conversation, seeing what Value we can provide.\r\n\r\nWe are your Digital\r\nTransformation Partner.'),(110793,3275,'_value-text','field_5c474c6ce6e75'),(110794,3275,'trusted_0_logo','793'),(110795,3275,'_trusted_0_logo','field_5c474c91e6e77'),(110796,3275,'trusted_1_logo','794'),(110797,3275,'_trusted_1_logo','field_5c474c91e6e77'),(110798,3275,'trusted_2_logo','795'),(110799,3275,'_trusted_2_logo','field_5c474c91e6e77'),(110800,3275,'trusted_3_logo','796'),(110801,3275,'_trusted_3_logo','field_5c474c91e6e77'),(110802,3275,'trusted_4_logo','797'),(110803,3275,'_trusted_4_logo','field_5c474c91e6e77'),(110804,3275,'trusted_5_logo','798'),(110805,3275,'_trusted_5_logo','field_5c474c91e6e77'),(110806,3275,'trusted_6_logo','799'),(110807,3275,'_trusted_6_logo','field_5c474c91e6e77'),(110808,3275,'trusted_7_logo','800'),(110809,3275,'_trusted_7_logo','field_5c474c91e6e77'),(110810,3275,'trusted_8_logo','801'),(110811,3275,'_trusted_8_logo','field_5c474c91e6e77'),(110812,3275,'trusted_9_logo','802'),(110813,3275,'_trusted_9_logo','field_5c474c91e6e77'),(110814,3275,'trusted','10'),(110815,3275,'_trusted','field_5c474c81e6e76'),(110816,10,'ao_post_optimize','a:5:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";}'),(110817,10,'_yoast_wpseo_estimated-reading-time-minutes',''),(110827,10,'_yoast_wpseo_schema_page_type','AboutPage'),(110831,3277,'background-image','531'),(110832,3277,'_background-image','field_5c488b8869ce6'),(110833,3277,'about','Every company is now a technology company, whether you are in plumbing, manufacturing, investment banking, or corporate services.\r\n\r\nThe evolution of technology has created complex communication at light speed, code that understands behavior, and data stored in the cloud.\r\n\r\nMuch like your car, you do not have to understand precisely how it works to reap the benefits of using it!\r\n\r\nTranslucent takes your business from wherever it is and roadmaps from point A to point B.\r\n\r\nImplementing the technology your business needs to stay competitive, at a pace you can handle.\r\n\r\nUsing Calculated measurable manageable actions, focused on Return on Investment.'),(110834,3277,'_about','field_5c488b9a69ce7'),(110835,3277,'1about','Translucent is your technology partner! \r\nBuilding very close relationships with our clients, we take the time and effort to lay the foundations needed to create the future together.'),(110836,3277,'_1about','field_5c488c0c69ce8'),(110837,3277,'1text',' \r\n

Requirements Gathering

\r\nWhen gathering requirements, it is a growing conversation with all influencers and decision makers within the business. It is very important to break down specific business function so that your company’s technology wraps around your operations like the perfect pair of gloves.\r\n

Stakeholder Ownership

\r\nThe information gathered must speak to all the needs and asks of all stakeholders, allowing more effective and efficient architecting and implementation to steady state. Create a system that connects your people, your clients and the world to you as an extension of how your business operations actually work.\r\n

Starting S.M.A.R.T.

\r\nOnce we have learned the specifics of your business, we inform and get signed stakeholder buy-in. From there we set Specific, Measurable, Agreed upon, Realistic, Time-bound (S.M.A.R.T.) goals based on what is the highest priority for your business needs. By removing the back and forth both internally and externally we create a workflow that increases return on investment and speed to market.'),(110838,3277,'_1text','field_5c488c3969ce9'),(110839,3277,'2text','

Proposal:

\r\nOnce scoped and approved by all stakeholders based on exact function and outcome, we put together a detailed proposal for your review and confirmation.'),(110840,3277,'_2text','field_5c488c8d69ceb'),(110841,3277,'2list_0_item','Work to be accomplished'),(110842,3277,'_2list_0_item','field_5c488ccc69ced'),(110843,3277,'2list_1_item','Resources'),(110844,3277,'_2list_1_item','field_5c488ccc69ced'),(110845,3277,'2list_2_item','Task and timelines'),(110846,3277,'_2list_2_item','field_5c488ccc69ced'),(110847,3277,'2list_3_item','Cost'),(110848,3277,'_2list_3_item','field_5c488ccc69ced'),(110849,3277,'2list_4_item','Deliverables'),(110850,3277,'_2list_4_item','field_5c488ccc69ced'),(110851,3277,'2list','5'),(110852,3277,'_2list','field_5c488cb869cec'),(110853,3277,'3about','Translucent as your Digital Transformation technology partner, we focus on Priority A approved deliverables:'),(110854,3277,'_3about','field_5c488c7469cea'),(110855,3277,'3list_0_item','Use Microservices to create a more fluid connection to the cloud with your legacy systems.'),(110856,3277,'_3list_0_item','field_5c488cf969cef'),(110857,3277,'3list_1_item','Use DevOps to ensure production automation workflow and security.'),(110858,3277,'_3list_1_item','field_5c488cf969cef'),(110859,3277,'3list_2_item','Create algorithms to understand complex business issues, discovering your clients’ buying patterns, or finding cross-market revenue opportunities using Machine Learning (AI).'),(110860,3277,'_3list_2_item','field_5c488cf969cef'),(110861,3277,'3list_3_item','Use Microservices, Machine Learning, and DevOps together to fully transform your business competing on the new digital landscape.'),(110862,3277,'_3list_3_item','field_5c488cf969cef'),(110863,3277,'3list','4'),(110864,3277,'_3list','field_5c488cf969cee'),(110865,3277,'1home','We work with you, informing and educating you about what it takes to be digitally competitive in the current market.\r\nWe learn your business and business needs.'),(110866,3277,'_1home','field_5c48ade7a3abb'),(110867,3277,'2home','During the discovery phase we uncover all business processes and requirements and understand your current state.\r\nDuring the inception phase we conceive and plan your solution.'),(110868,3277,'_2home','field_5c48adffa3abc'),(110869,3277,'2about','

Priority A:

\r\nOnce we understand how your business works and uncover Priority A based on company goals, immediate needs, and ROI we start to scope out Phase 1 of your digital transformation.'),(110870,3277,'_2about','field_5c48adcda3aba'),(110871,3277,'3home','We implement your digital strategy with ongoing support, leveraging proven development methodologies.'),(110872,3277,'_3home','field_5c48ae0ca3abd'),(110873,60,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(110874,60,'_yoast_wpseo_estimated-reading-time-minutes',''),(110887,3278,'case_study_0_title','Canadian Black Book'),(110888,3278,'_case_study_0_title','field_610b429bb78f0'),(110889,3278,'case_study_0_text',''),(110890,3278,'_case_study_0_text','field_610b42a3b78f1'),(110891,3278,'case_study_0_image','655'),(110892,3278,'_case_study_0_image','field_610b42b3b78f2'),(110893,3278,'case_study_0_link','804'),(110894,3278,'_case_study_0_link','field_610b42c7b78f3'),(110895,3278,'case_study_1_title','The Hospital for Sick Children'),(110896,3278,'_case_study_1_title','field_610b429bb78f0'),(110897,3278,'case_study_1_text',''),(110898,3278,'_case_study_1_text','field_610b42a3b78f1'),(110899,3278,'case_study_1_image','772'),(110900,3278,'_case_study_1_image','field_610b42b3b78f2'),(110901,3278,'case_study_1_link','38'),(110902,3278,'_case_study_1_link','field_610b42c7b78f3'),(110903,3278,'case_study','2'),(110904,3278,'_case_study','field_610b428cb78ef'),(110905,46,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(110909,3279,'top-color',''),(110910,3279,'_top-color','field_5c4888dec7760'),(110911,3279,'success-color',''),(110912,3279,'_success-color','field_5c48895cc7762'),(110913,3279,'top-text-color',''),(110914,3279,'_top-text-color','field_5c48897ec7763'),(110915,3279,'top-image','820'),(110916,3279,'_top-image','field_5c48893dc7761'),(110917,3279,'top-text','Backend, middle tier, front end, mobile (iOS & Android), security and monitoring from architecture throughout implementation.'),(110918,3279,'_top-text','field_5c4889acc7764'),(110919,3279,'costumer','Canadian Black Book (CBB) \r\nA Subsidiary of Hearst Business Media Corporation\r\n'),(110920,3279,'_costumer','field_5c4889e3c7765'),(110921,3279,'industry','Automotive Industry'),(110922,3279,'_industry','field_5c488a0bc7766'),(110923,3279,'company-size','50 to 500'),(110924,3279,'_company-size','field_5c488a0cc7767'),(110925,3279,'location','Toronto, Ontario'),(110926,3279,'_location','field_5c488a10c7768'),(110927,3279,'project-areas','Full Digital Transformation\r\n• Microservices\r\n• DevOps\r\n• Machine Learning'),(110928,3279,'_project-areas','field_5c488a13c7769'),(110929,3279,'key-stats','• CBB Connect: 219,000 users yearly\r\n• CBB Connect: 30,000 Vehicle searches a day\r\n• CBB Connect: 10,950,000 Vehicle searches yearly'),(110930,3279,'_key-stats','field_5c488a14c776a'),(110931,3279,'about','The auto industry is evolving. How vehicles are bought, sold and financed is also changing. One constant: the industry and its various markets continue to trust Canadian Black Book insight and its innovative delivery systems to make the right business decisions faster.\r\n\r\nToday, Canadian Black Book is a division of the Hearst Business Media Corporation who boast 360 corporations under their wing. Their line-up of innovative products and services includes new and used vehicle value services, custom data licensing solutions, as well as lender origination and risk analysis.'),(110932,3279,'_about','field_5c488a7dc776b'),(110933,3279,'the-challenge','CBB had outdate software & hardware solution that was not compatible to cloud native digitally transformed evolution of technology in the current world.\r\n\r\nAs a leader in the automotive data collection and distribution industry it was crucial that they were able to internally and externally communicate at the current pace of business. As every company is now a technology company.\r\n\r\nTranslucent through our partnership model has been able to work with the various moving parts of the complex CBB applications; backend, middle tier, front end, mobile (iOS & Android), security and monitoring to be a major partner from architecture throughout implementation.\r\n\r\nCBB Connect:\r\nWeb Application & CBB mobile application – IOS & Android:\r\n\r\nWhat is CBB Connect?\r\n\r\nBar Code Scanner of the V.I.N. # of vehicles.\r\n\r\nThe application allows the user to search the vehicles by scanning a VIN or enter it manually.\r\n\r\nThree ways to enter V.I.N.:\r\n• Specialized keyboard\r\n• Scanner\r\n• Drop down menu\r\nCBB Evaluation based on parameters such as mileage, year, model, make, and other key indicators.\r\n\r\nCBB Estimator:\r\nWeb Application – responsive design\r\n\r\nCBB Estimator allows consumers to enter their current vehicle year, make, model, mileage and the new car they would want from the dealer in order to get a trade in value when they purchase their new car.\r\n\r\nThis is a good tool for the consumer and an excellent tool for the company to drive business and close on very qualified leads.'),(110934,3279,'_the-challenge','field_5c488a8fc776c'),(110935,3279,'the-solution','Technologies used to create a Total Digital Transformation:\r\n\r\nMicroservices:\r\nBuilt distributed systems tailored to CBB’s operations and product offerings to transform their old legacy applications.\r\n\r\nMicroservices allows for pivot and scalability while minimally affecting day to day operations. Consistently upgrading based on user feedback to keep CBB an industry leader in today’s competitive landscape of a digitally transformed world.\r\n\r\nDevOps:\r\nTEKStack™:\r\nTranslucent has a years of experience in the build pipeline and has created multiple tools under the TEKStackTM umbrella for CI / CD that maximizes effectiveness and efficiency to help your technology mimic your business operations.\r\n\r\nKubernetes cluster (EKS -AWS) running Dockerized containers designed in multiple languages and tools: Java, Spring, Angular, Node JS, databases MySql & ElasticSearch, HazelCast (cache solution), RabbitMQ (messaging bus), Nginx (API Gateway & reverse Proxy)\r\n\r\nMonitoring:\r\nPrometheus is used to collect metrics data from the Kubernetes cluster and the Microservices, as well as APM Application Performance Metrics.\r\n\r\nElasticSearch: To aggregate the logs from the cluster and the Microservices\r\n\r\nGrafana: To create dashboards to visualize and display from Prometheus\r\n\r\nKabana: To create dashboards and visualizations for ElasticSearch\r\n\r\nSentry: Error tracking software to find exceptions in Microservices and Alert\r\n\r\nMachine Learning: The applications and systems have been Optimized for machine learning. The ability to implement automated DevOps pipeline, Security, Monitoring and Alerts to true AIOps is available.'),(110936,3279,'_the-solution','field_5c488a9cc776d'),(110937,3279,'the-results','Letter of Reference | Mike Compton CTO, Canadian Black Book\r\nWhen I arrived at Canadian Black Book as the new CTO one of my priorities was to come up-to-speed on all the projects that were underway and learn more about the third-party technology companies being leveraged. On the product development front, I learned that a company named Translucent Computing was under contract to provide their software development services in redeveloping the core mobile and web-based products.\r\n\r\nThe more I learned the more I realized that we had been fortunate to find a technology of their caliber. The architectures and technologies that I was brought in to implement were already being integrated and deployed by Translucent. Specifically, all the new products were built on a strong foundation using the AWS cloud, terraform for infrastructure deployment, Kubernetes for cluster monitoring and scaling, app containerization using Docker, and a strong dose of DevOps to ensure the pipeline was automated.\r\n\r\nA lot of technology vendors claim to have expertise with these technologies, but those boasts aren’t always a reality. You need to hire great engineers that work well with clients and that, in a nutshell, is what Translucent Computing has brought to Canadian Black Book.\r\n\r\nMike Compton, CTO, Canadian Black Book\r\nA division of the Hearst Business Media Corporation'),(110938,3279,'_the-results','field_5c488ad1c776e'),(110939,3279,'logo','606'),(110940,3279,'_logo','field_5c488af6c776f'),(110941,3279,'gallery','1'),(110942,3279,'_gallery','field_5c488b02c7770'),(110943,3279,'gallery_0_image','655'),(110944,3279,'_gallery_0_image','field_5c488b0fc7771'),(110945,804,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(110946,804,'_yoast_wpseo_estimated-reading-time-minutes',''),(110962,3280,'top-color','#002048'),(110963,3280,'_top-color','field_5c4888dec7760'),(110964,3280,'success-color','#00ddbd'),(110965,3280,'_success-color','field_5c48895cc7762'),(110966,3280,'top-text-color','#ffffff'),(110967,3280,'_top-text-color','field_5c48897ec7763'),(110968,3280,'top-image','63'),(110969,3280,'_top-image','field_5c48893dc7761'),(110970,3280,'top-text','Translucent has indexed, analysed and transformed half a billion records of Neonatal Intensive Care Unit data'),(110971,3280,'_top-text','field_5c4889acc7764'),(110972,3280,'costumer','The Hospital for Sick Children (SickKids) \r\nNeonatal Intensive Care Unit'),(110973,3280,'_costumer','field_5c4889e3c7765'),(110974,3280,'industry','Health Care Services'),(110975,3280,'_industry','field_5c488a0bc7766'),(110976,3280,'company-size','5001 to 10000'),(110977,3280,'_company-size','field_5c488a0cc7767'),(110978,3280,'location','Toronto, Ontario'),(110979,3280,'_location','field_5c488a10c7768'),(110980,3280,'project-areas','● Microservices\r\n● DevOps\r\n● Machine Learning'),(110981,3280,'_project-areas','field_5c488a13c7769'),(110982,3280,'key-stats','● 400M ES documents\r\n● 30-40 properties in each ES document mapping\r\n● 15B data elements imported\r\n● 40 import asynchronous jobs (run time: 5 m to 30 h)\r\n● Jobs combined paper mapping, electronic file, and a database dump'),(110983,3280,'_key-stats','field_5c488a14c776a'),(110984,3280,'about','Affiliated with the University of Toronto, The Hospital for Sick Children (SickKids) is Canada’s most research-intensive hospital and largest centre dedicated to the improvement of children’s health in the country. By staffing professionals from all disciplines within both health care and research, SickKids provides the best in complex and specialized care through creating scientific and clinical advancements, sharing knowledge and expertise, as well as championing the development of accessible, comprehensive and sustainable child health systems.'),(110985,3280,'_about','field_5c488a7dc776b'),(110986,3280,'the-challenge','SickKids decommissioned an electronic medical chart application (CIMS) which ran in the Neonatal, Pediatric and Cardiac Intensive Care Units since 1999.\r\n\r\nThe hospital now requires the migration of billions of records from CIMS to a new system that will allow physicians and researchers to find, examine and analyze this complex data.\r\n\r\nData defragmentation\r\nCIMS data was stored in multiple file sources, including flat text files, mapping text files, b-tree file structures, and oracle database data extracts with over 1000 tables.\r\n\r\nData volume\r\nBillions of records stored over 20 years for over 50,000 patients needed to be reindexed in a new system with novel requirements such as sub-second searching, data analytics, reporting and metrics.\r\n\r\nMappings\r\nManual cross mapping between text files, b-tree records, and database extract:\r\n• 1000’s of text files\r\n• 50,000+ Patients\r\n• 400,000,000+ patines row data\r\n• 2,000,000,000+ electronic chart inputs\r\n\r\nInfostructure\r\nOnly single VM was available to process and import all data. TC ES exports had to fine tune the ES to make sure the system would import data without running out of memory which was a challenge to accomplish.'),(110987,3280,'_the-challenge','field_5c488a8fc776c'),(110988,3280,'the-solution','Given the complexity of the challenge Translucent broke up the project in to 4 phases:\r\n\r\n1. Mapping\r\n• TC Consultants carefully mapped out the whole system in 40 + excel import files that combine layouts, labels and groups from a flat file, complex cross functional lookups between text files and db lookups\r\n• These import files were the bases for system import\r\n\r\n2. Importing\r\n• TC engineers created asynchronous importers that executed up to 30 hours\r\n• The importer used the mappings and DB data dump from the old system to construct ES documents\r\n\r\n3. Testing\r\n• Careful testing was done by TC team to match the old system with the new system\r\n\r\n4. Searching and Analytics\r\n• SK team is now using the system for searching patients for data lookups\r\n• SK Research team is using the system to chart, graph and data mind the system\r\n• Kibana is one of tools used for dashboards'),(110989,3280,'_the-solution','field_5c488a9cc776d'),(110990,3280,'the-results','A new Electronic Medical Chart Platform based on data transformation, mapping and migration of billions of charts inputs from legacy electronic medical chart application (CIMS). New electronic charts allow physicians and researchers to find 20 years of historical patient data with sub second searching, analytics and reporting.'),(110991,3280,'_the-results','field_5c488ad1c776e'),(110992,3280,'logo','50'),(110993,3280,'_logo','field_5c488af6c776f'),(110994,3280,'gallery_0_image','997'),(110995,3280,'_gallery_0_image','field_5c488b0fc7771'),(110996,3280,'gallery','1'),(110997,3280,'_gallery','field_5c488b02c7770'),(110998,38,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(110999,38,'_yoast_wpseo_estimated-reading-time-minutes',''),(111009,3281,'phone','1-888-828-0144'),(111010,3281,'_phone','field_5c488fee200b5'),(111011,3281,'address','1 Yonge Street, Suite 1801\r\nToronto, Ontario\r\nM5E 1W7'),(111012,3281,'_address','field_5c488ff4200b6'),(111013,3281,'email','results@translucentcomputing.com'),(111014,3281,'_email','field_5c489004200b7'),(111015,3281,'text-contact',''),(111016,3281,'_text-contact','field_5c489019200b8'),(111017,57,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(111018,57,'_yoast_wpseo_estimated-reading-time-minutes',''),(111022,3282,'background-image','1865'),(111023,3282,'_background-image','field_5f49717494f58'),(111024,3282,'about','TEKStack AI'),(111025,3282,'_about','field_5f49717495002'),(111026,3282,'1home',''),(111027,3282,'_1home','field_5c48ade7a3abb'),(111028,3282,'1about',''),(111029,3282,'_1about','field_5c488c0c69ce8'),(111030,3282,'1text',''),(111031,3282,'_1text','field_5c488c3969ce9'),(111032,3282,'2home',''),(111033,3282,'_2home','field_5c48adffa3abc'),(111034,3282,'2about',''),(111035,3282,'_2about','field_5c48adcda3aba'),(111036,3282,'2text',''),(111037,3282,'_2text','field_5c488c8d69ceb'),(111038,3282,'2list',''),(111039,3282,'_2list','field_5c488cb869cec'),(111040,3282,'3home',''),(111041,3282,'_3home','field_5c48ae0ca3abd'),(111042,3282,'3about',''),(111043,3282,'_3about','field_5c488c7469cea'),(111044,3282,'3list',''),(111045,3282,'_3list','field_5c488cf969cee'),(111046,3282,'section_1_image','1931'),(111047,3282,'_section_1_image','field_605942092a128'),(111048,3282,'section_1_title','TEKStack AI - Kubernetes Technology Stack'),(111049,3282,'_section_1_title','field_605942092a176'),(111050,3282,'section_1_subheading','Data-Driven application platform tools and processes, specialized in building cloud native applications.'),(111051,3282,'_section_1_subheading','field_605942092a1c3'),(111052,3282,'section_1_text','Our team of Kubernetes Certified (KCSP) engineers has worked on all the major cloud platforms on projects ranging from cloud native applications, DevOps, data engineering, chatbots, natural language processing, machine learning all built on top of Kubernetes with a focus on data.\r\n\r\nTEKStack Kubernetes Technology Stack is a collection of Kubernetes platform tools, best practices and processes driven by clients\' needs and requirements.\r\n\r\nSupported by open source and production-ready.'),(111053,3282,'_section_1_text','field_605942092a206'),(111054,3282,'section_1_keywords_0_keyword','Replatforming'),(111055,3282,'_section_1_keywords_0_keyword','field_60594209f3e6d'),(111056,3282,'section_1_keywords_1_keyword','Modern Applications'),(111057,3282,'_section_1_keywords_1_keyword','field_60594209f3e6d'),(111058,3282,'section_1_keywords_2_keyword','Kubernetes DevOps'),(111059,3282,'_section_1_keywords_2_keyword','field_60594209f3e6d'),(111060,3282,'section_1_keywords_3_keyword','Enterprise Search'),(111061,3282,'_section_1_keywords_3_keyword','field_60594209f3e6d'),(111062,3282,'section_1_keywords_4_keyword','Smart Data Lake'),(111063,3282,'_section_1_keywords_4_keyword','field_60594209f3e6d'),(111064,3282,'section_1_keywords_5_keyword','End-to-End Machine Learning'),(111065,3282,'_section_1_keywords_5_keyword','field_60594209f3e6d'),(111066,3282,'section_1_keywords','6'),(111067,3282,'_section_1_keywords','field_605942092a274'),(111068,3282,'section_1',''),(111069,3282,'_section_1','field_60594208ec82e'),(111070,3282,'services',''),(111071,3282,'_services','field_60594208ec880'),(111072,3282,'section_2_image','1933'),(111073,3282,'_section_2_image','field_6059420b73dfe'),(111074,3282,'section_2_title','Cloud Native Kubernetes Tools'),(111075,3282,'_section_2_title','field_6059420b73e74'),(111076,3282,'section_2_subheading','Technology can make everyone’s job easier – when you take a holistic and human-centric approach.'),(111077,3282,'_section_2_subheading','field_6059420b73ee3'),(111078,3282,'section_2_text','TEKStack AI platform tools are built from the ground up to support your enterprise data-driven applications. Save time and money by using TEKStack AI tools for your next project. TEKStack AI can be used for your new project or expand your current offerings; support your entire data journey, from inception to insights to successful customer engagements.'),(111079,3282,'_section_2_text','field_6059420b73f3c'),(111080,3282,'section_2_keywords_0_keyword','Kubernetes'),(111081,3282,'_section_2_keywords_0_keyword','field_6059420c41697'),(111082,3282,'section_2_keywords_1_keyword','Helm'),(111083,3282,'_section_2_keywords_1_keyword','field_6059420c41697'),(111084,3282,'section_2_keywords_2_keyword','Prometheus'),(111085,3282,'_section_2_keywords_2_keyword','field_6059420c41697'),(111086,3282,'section_2_keywords_3_keyword','Terraform'),(111087,3282,'_section_2_keywords_3_keyword','field_6059420c41697'),(111088,3282,'section_2_keywords_4_keyword','Spinnaker'),(111089,3282,'_section_2_keywords_4_keyword','field_6059420c41697'),(111090,3282,'section_2_keywords','7'),(111091,3282,'_section_2_keywords','field_6059420b73f90'),(111092,3282,'section_2',''),(111093,3282,'_section_2','field_60594208ec8c9'),(111094,3282,'section_3_image','1932'),(111095,3282,'_section_3_image','field_6059420ce2747'),(111096,3282,'section_3_title','Delivering Amazing Kubernetes Solutions'),(111097,3282,'_section_3_title','field_6059420ce279c'),(111098,3282,'section_3_subheading','Expand your limits and enhance your productivity – so you can be more agile with evolving customer needs and market shifts.'),(111099,3282,'_section_3_subheading','field_6059420ce27ef'),(111100,3282,'section_3_text','TEKStack AI tools are built on the foundation of Kubernetes to make your business in the cloud faster, more secure, and scalable. TEKStack AI saves you money by delivering your application to the end user more quickly. Our DevOps features support your enterprise applications by monitoring and reacting to your application\'s needs in real-time. With TEKStack AI, continuous integration and continuous delivery, we can integrate and automate pipelines.'),(111101,3282,'_section_3_text','field_6059420ce2832'),(111102,3282,'section_3_keywords_0_keyword','100% GitOps Based'),(111103,3282,'_section_3_keywords_0_keyword','field_6059420db2a80'),(111104,3282,'section_3_keywords_1_keyword','Configuration as Code'),(111105,3282,'_section_3_keywords_1_keyword','field_6059420db2a80'),(111106,3282,'section_3_keywords_2_keyword','Declarative Pipelines'),(111107,3282,'_section_3_keywords_2_keyword','field_6059420db2a80'),(111108,3282,'section_3_keywords_3_keyword','Observability'),(111109,3282,'_section_3_keywords_3_keyword','field_6059420db2a80'),(111110,3282,'section_3_keywords_4_keyword','Cloud Agnostic (AWS | GCP | Azure)'),(111111,3282,'_section_3_keywords_4_keyword','field_6059420db2a80'),(111112,3282,'section_3_keywords_5_keyword','High Dev-Prod Parity'),(111113,3282,'_section_3_keywords_5_keyword','field_6059420db2a80'),(111114,3282,'section_3_keywords','6'),(111115,3282,'_section_3_keywords','field_6059420ce2874'),(111116,3282,'section_3',''),(111117,3282,'_section_3','field_60594208ec909'),(111118,3282,'section_4_image','1928'),(111119,3282,'_section_4_image','field_6059420ec7401'),(111120,3282,'section_4_title','Data Experts Alongside Our Tools'),(111121,3282,'_section_4_title','field_6059420ec7454'),(111122,3282,'section_4_subheading','Technology is only as powerful and effective as its users.'),(111123,3282,'_section_4_subheading','field_6059420ec74a0'),(111124,3282,'section_4_text','Our TEKStack AI platform tools draw their strength from the people that support them. Our human expertise creates applications that best leverage your data while drawing on ML technologies – this approach puts your applications ahead of what the very best have to offer. The platform tools accommodate an end-to-end ML lifecycle, with a particular focus on data engineering, data ingestion and pre-processing smart data lake design, and lightweight ML pipelines. Our data journey expertise allows us to automate elements of the ML pipeline in ways that make it easier to create assets, which in turn allows us to address a greater range of customer challenges.'),(111125,3282,'_section_4_text','field_6059420ec74ee'),(111126,3282,'section_4_keywords_0_keyword','Enable Machine Learning'),(111127,3282,'_section_4_keywords_0_keyword','field_6059420fa2108'),(111128,3282,'section_4_keywords_1_keyword','Supported by Open Source'),(111129,3282,'_section_4_keywords_1_keyword','field_6059420fa2108'),(111130,3282,'section_4_keywords_2_keyword','Easy to Use'),(111131,3282,'_section_4_keywords_2_keyword','field_6059420fa2108'),(111132,3282,'section_4_keywords_3_keyword','Empowered Decisions'),(111133,3282,'_section_4_keywords_3_keyword','field_6059420fa2108'),(111134,3282,'section_4_keywords_4_keyword','Managed Kubeflow'),(111135,3282,'_section_4_keywords_4_keyword','field_6059420fa2108'),(111136,3282,'section_4_keywords_5_keyword','User Authentication and Authorization'),(111137,3282,'_section_4_keywords_5_keyword','field_6059420fa2108'),(111138,3282,'section_4_keywords','6'),(111139,3282,'_section_4_keywords','field_6059420ec752d'),(111140,3282,'section_4',''),(111141,3282,'_section_4','field_60594208ec95c'),(111142,3282,'section_5_image','1930'),(111143,3282,'_section_5_image','field_60594243d91f0'),(111144,3282,'section_5_title','Enterprise Search'),(111145,3282,'_section_5_title','field_60594243d91f1'),(111146,3282,'section_5_subheading','Search your data faster than you can think – and make data-informed insights and decisions.'),(111147,3282,'_section_5_subheading','field_60594243d91f2'),(111148,3282,'section_5_text','TEKStack AI applies natural language processing (NLP) technologies to our enterprise search solutions, with the goal of creating faster and improved database search. This allows for context-dependent search results, more informed insights, and faster business decision-making. We first process information from the databases we ingest into our platform, then tag information based on their type (name entity recognition). We then leverage this information to produce enterprise search solutions that are easier to use, and more informative than traditional full-text search options.'),(111149,3282,'_section_5_text','field_60594243d91f3'),(111150,3282,'section_5_keywords_0_keyword','Knowledge Graph'),(111151,3282,'_section_5_keywords_0_keyword','field_60594243d91f5'),(111152,3282,'section_5_keywords_1_keyword','TensorFlow'),(111153,3282,'_section_5_keywords_1_keyword','field_60594243d91f5'),(111154,3282,'section_5_keywords_2_keyword','KubeFlow'),(111155,3282,'_section_5_keywords_2_keyword','field_60594243d91f5'),(111156,3282,'section_5_keywords_3_keyword','Airflow'),(111157,3282,'_section_5_keywords_3_keyword','field_60594243d91f5'),(111158,3282,'section_5_keywords_4_keyword','Kafka'),(111159,3282,'_section_5_keywords_4_keyword','field_60594243d91f5'),(111160,3282,'section_5_keywords','5'),(111161,3282,'_section_5_keywords','field_60594243d91f4'),(111162,3282,'section_5',''),(111163,3282,'_section_5','field_60594243d91ef'),(111164,3282,'section_6_image','1929'),(111165,3282,'_section_6_image','field_60594249d91f7'),(111166,3282,'section_6_title','Derive Greater from Multi-Model Data Lake'),(111167,3282,'_section_6_title','field_60594249d91f8'),(111168,3282,'section_6_subheading','The right data at the right time has value greater than the sum of its parts.'),(111169,3282,'_section_6_subheading','field_60594249d91f9'),(111170,3282,'section_6_text','TEKStack AI platform tools include a scalable, multi-model data lake that supports any and every database best suited for the data type ingested into our platform. These databases are consolidated in a way that centralizes and simplifies data security and governance, and defines the source of truth for the datasets. The data lake is “smart”, in that it contains metadata that describes itself, which can be efficiently queried using a built-in data catalog. The data catalog allows users a greater ability to identify their data of interest across a number of different databases quickly, without the need to enlist help from a database expert.'),(111171,3282,'_section_6_text','field_60594249d91fa'),(111172,3282,'section_6_keywords_0_keyword','Multi-model Data Lake'),(111173,3282,'_section_6_keywords_0_keyword','field_60594249d91fc'),(111174,3282,'section_6_keywords_1_keyword','Data Governance'),(111175,3282,'_section_6_keywords_1_keyword','field_60594249d91fc'),(111176,3282,'section_6_keywords_2_keyword','Elasticsearch'),(111177,3282,'_section_6_keywords_2_keyword','field_60594249d91fc'),(111178,3282,'section_6_keywords_3_keyword','Blockchain- Immudb'),(111179,3282,'_section_6_keywords_3_keyword','field_60594249d91fc'),(111180,3282,'section_6_keywords_4_keyword','Neo4j'),(111181,3282,'_section_6_keywords_4_keyword','field_60594249d91fc'),(111182,3282,'section_6_keywords','7'),(111183,3282,'_section_6_keywords','field_60594249d91fb'),(111184,3282,'section_6',''),(111185,3282,'_section_6','field_60594249d91f6'),(111186,3282,'section_2_keywords_5_keyword','Vault'),(111187,3282,'_section_2_keywords_5_keyword','field_6059420c41697'),(111188,3282,'section_2_keywords_6_keyword','Jenkins'),(111189,3282,'_section_2_keywords_6_keyword','field_6059420c41697'),(111190,3282,'section_6_keywords_5_keyword','MinIO'),(111191,3282,'_section_6_keywords_5_keyword','field_60594249d91fc'),(111192,3282,'section_6_keywords_6_keyword','Amundsen '),(111193,3282,'_section_6_keywords_6_keyword','field_60594249d91fc'),(111194,1822,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(111195,1822,'_yoast_wpseo_estimated-reading-time-minutes',''),(111199,3283,'background-image','1865'),(111200,3283,'_background-image','field_5f49717494f58'),(111201,3283,'about','

Kubernetes Professional Services

'),(111202,3283,'_about','field_5f49717495002'),(111203,3283,'1home',''),(111204,3283,'_1home','field_5c48ade7a3abb'),(111205,3283,'1about',''),(111206,3283,'_1about','field_5c488c0c69ce8'),(111207,3283,'1text',''),(111208,3283,'_1text','field_5c488c3969ce9'),(111209,3283,'2home',''),(111210,3283,'_2home','field_5c48adffa3abc'),(111211,3283,'2about',''),(111212,3283,'_2about','field_5c48adcda3aba'),(111213,3283,'2text',''),(111214,3283,'_2text','field_5c488c8d69ceb'),(111215,3283,'2list',''),(111216,3283,'_2list','field_5c488cb869cec'),(111217,3283,'3home',''),(111218,3283,'_3home','field_5c48ae0ca3abd'),(111219,3283,'3about',''),(111220,3283,'_3about','field_5c488c7469cea'),(111221,3283,'3list',''),(111222,3283,'_3list','field_5c488cf969cee'),(111223,3283,'section_1_image','2248'),(111224,3283,'_section_1_image','field_60592c342d237'),(111225,3283,'section_1_title','Kubernetes Professional Services'),(111226,3283,'_section_1_title','field_60592a672d21a'),(111227,3283,'section_1_subheading','Kubernetes Certified Service Provider (KCSP)'),(111228,3283,'_section_1_subheading','field_60592a7b2d21b'),(111229,3283,'section_1_text','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.'),(111230,3283,'_section_1_text','field_60592a942d21c'),(111231,3283,'section_1_keywords_0_keyword','Cloud Native Applications'),(111232,3283,'_section_1_keywords_0_keyword','field_60592ab92d21e'),(111233,3283,'section_1_keywords_1_keyword','Cloud Native DevOps'),(111234,3283,'_section_1_keywords_1_keyword','field_60592ab92d21e'),(111235,3283,'section_1_keywords_2_keyword','Cloud Native Machine Learning'),(111236,3283,'_section_1_keywords_2_keyword','field_60592ab92d21e'),(111237,3283,'section_1_keywords','3'),(111238,3283,'_section_1_keywords','field_60592aaf2d21d'),(111239,3283,'section_1_cta_text','Book Consultation Now'),(111240,3283,'_section_1_cta_text','field_60592bb52d231'),(111241,3283,'section_1_cta_link','/contact'),(111242,3283,'_section_1_cta_link','field_60592bc02d232'),(111243,3283,'section_1',''),(111244,3283,'_section_1','field_60592a3f2d219'),(111245,3283,'services_0_service','Cloud Native DevOps with Kubernetes and Serverless'),(111246,3283,'_services_0_service','field_60592c042d236'),(111247,3283,'services_1_service','Cloud Native Transformation and Strategy'),(111248,3283,'_services_1_service','field_60592c042d236'),(111249,3283,'services_2_service','Continuous Security - DevSecOps'),(111250,3283,'_services_2_service','field_60592c042d236'),(111251,3283,'services_3_service','Multi-Cloud Deployment Strategy'),(111252,3283,'_services_3_service','field_60592c042d236'),(111253,3283,'services_4_service','Design, Build and Monitor Microservices Applications'),(111254,3283,'_services_4_service','field_60592c042d236'),(111255,3283,'services_5_service','Application Modernization - Replatforming with Kubernetes '),(111256,3283,'_services_5_service','field_60592c042d236'),(111257,3283,'services_6_service','Continuous Delivery and Automation - Faster Release Cycle'),(111258,3283,'_services_6_service','field_60592c042d236'),(111259,3283,'services_7_service','Production-Grade Kubernetes Support'),(111260,3283,'_services_7_service','field_60592c042d236'),(111261,3283,'services','8'),(111262,3283,'_services','field_60592bfc2d235'),(111263,3283,'section_2_image','2208'),(111264,3283,'_section_2_image','field_60592c4e2d239'),(111265,3283,'section_2_title','Learn, Inform, Plan'),(111266,3283,'_section_2_title','field_60592b6e2d220'),(111267,3283,'section_2_subheading','Plan Your Next Kubernetes Project with Translucent'),(111268,3283,'_section_2_subheading','field_60592b6e2d221'),(111269,3283,'section_2_text','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(111270,3283,'_section_2_text','field_60592b6e2d222'),(111271,3283,'section_2_keywords_0_keyword','We Listen'),(111272,3283,'_section_2_keywords_0_keyword','field_60592b6e2d224'),(111273,3283,'section_2_keywords_1_keyword','We Learn'),(111274,3283,'_section_2_keywords_1_keyword','field_60592b6e2d224'),(111275,3283,'section_2_keywords_2_keyword','We Inform'),(111276,3283,'_section_2_keywords_2_keyword','field_60592b6e2d224'),(111277,3283,'section_2_keywords_3_keyword','We Plan'),(111278,3283,'_section_2_keywords_3_keyword','field_60592b6e2d224'),(111279,3283,'section_2_keywords','4'),(111280,3283,'_section_2_keywords','field_60592b6e2d223'),(111281,3283,'section_2',''),(111282,3283,'_section_2','field_60592b6e2d21f'),(111283,3283,'section_3_image','2209'),(111284,3283,'_section_3_image','field_60592c5d2d23a'),(111285,3283,'section_3_title','Kubernetes Consulting'),(111286,3283,'_section_3_title','field_60592b762d226'),(111287,3283,'section_3_subheading','Driving Digital Transformation with Containers and Kubernetes'),(111288,3283,'_section_3_subheading','field_60592b762d227'),(111289,3283,'section_3_text','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(111290,3283,'_section_3_text','field_60592b762d228'),(111291,3283,'section_3_keywords_0_keyword','Build'),(111292,3283,'_section_3_keywords_0_keyword','field_60592b762d22a'),(111293,3283,'section_3_keywords_1_keyword','Rebuild'),(111294,3283,'_section_3_keywords_1_keyword','field_60592b762d22a'),(111295,3283,'section_3_keywords_2_keyword','Replatform'),(111296,3283,'_section_3_keywords_2_keyword','field_60592b762d22a'),(111297,3283,'section_3_keywords','3'),(111298,3283,'_section_3_keywords','field_60592b762d229'),(111299,3283,'section_3_cta_text','Book Consultation Now'),(111300,3283,'_section_3_cta_text','field_60592bcc2d233'),(111301,3283,'section_3_cta_link','/contact'),(111302,3283,'_section_3_cta_link','field_60592bd22d234'),(111303,3283,'section_3',''),(111304,3283,'_section_3','field_60592b762d225'),(111305,3283,'section_4_image','2212'),(111306,3283,'_section_4_image','field_60592c722d23c'),(111307,3283,'section_4_title','Support and Maintenance'),(111308,3283,'_section_4_title','field_60592b882d22c'),(111309,3283,'section_4_subheading','24/7 Support and Maintenance with our Site Reliability Engineering Services'),(111310,3283,'_section_4_subheading','field_60592b882d22d'),(111311,3283,'section_4_text','From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(111312,3283,'_section_4_text','field_60592b882d22e'),(111313,3283,'section_4_keywords_0_keyword','SRE: Site Reliability Engineering'),(111314,3283,'_section_4_keywords_0_keyword','field_60592b882d230'),(111315,3283,'section_4_keywords_1_keyword','SLA: Service Level Agreements'),(111316,3283,'_section_4_keywords_1_keyword','field_60592b882d230'),(111317,3283,'section_4_keywords_2_keyword','SLO: Service Level Objectives'),(111318,3283,'_section_4_keywords_2_keyword','field_60592b882d230'),(111319,3283,'section_4_keywords_3_keyword','SLI: Service Level Indicator'),(111320,3283,'_section_4_keywords_3_keyword','field_60592b882d230'),(111321,3283,'section_4_keywords','4'),(111322,3283,'_section_4_keywords','field_60592b882d22f'),(111323,3283,'section_4',''),(111324,3283,'_section_4','field_60592b882d22b'),(111325,2196,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(111326,2196,'_yoast_wpseo_estimated-reading-time-minutes',''),(111330,2249,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(111331,2249,'_yoast_wpseo_estimated-reading-time-minutes','5'),(111341,2884,'ao_post_optimize','a:5:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";}'),(111342,2884,'_yoast_wpseo_estimated-reading-time-minutes',''),(111352,2851,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(111353,2851,'_yoast_wpseo_estimated-reading-time-minutes','1'),(111366,3287,'top-image','536'),(111367,3287,'_top-image','field_5c488d805f5d4'),(111368,3287,'top-text','We Partner with companies to build business value through software innovation.

Every company is now a technology company! How competitive are you in your industry? Let us help you.'),(111369,3287,'_top-text','field_5c488e575f5d5'),(111370,3287,'features_0_feature','Cloud Native'),(111371,3287,'_features_0_feature','field_5c4890c93ae20'),(111372,3287,'features_1_feature','Data Lake'),(111373,3287,'_features_1_feature','field_5c4890c93ae20'),(111374,3287,'features_2_feature','Kubernetes'),(111375,3287,'_features_2_feature','field_5c4890c93ae20'),(111376,3287,'features_3_feature','Scalable'),(111377,3287,'_features_3_feature','field_5c4890c93ae20'),(111378,3287,'features_4_feature','Secure'),(111379,3287,'_features_4_feature','field_5c4890c93ae20'),(111380,3287,'features','5'),(111381,3287,'_features','field_5c4890bc3ae1f'),(111382,3287,'about-title','Technology failing your business?'),(111383,3287,'_about-title','field_5c488e7a5f5d6'),(111384,3287,'about-text','Companies need to continuously improve with systems that continuously deliver results in real time.\r\nOrganizations have out of date technology, unable to stay connected in the information age, and so much data to sort through. Legacy systems & CTO\'s minds are over extended.'),(111385,3287,'_about-text','field_5c488e945f5d7'),(111386,3287,'problems',' \r\n\r\n \r\n\r\nCan we really do it alone?\r\n\r\nHow do we even keep up?\r\n\r\nAre the IT resources we have enough?'),(111387,3287,'_problems','field_5c488ec75f5d8'),(111388,3287,'solutions','

Translucent Digital Transformation Strategy

\r\nTranslucent is your Digital Transformation partner: DevOps, Machine Learning, and Microservices. Providing affordable, tailored services to update & transform your business operations.\r\nStay connected, be competitive.\r\n
\r\n
    \r\n
  • Effectively resolve your cross-application communication issues – technology tailored to your business, that actually works for you!
  • \r\n
  • Convert technical debt into opportunities by leveraging current technology – untangling your systems to empower business decisions.
  • \r\n
  • Use your data to increase your revenues – who is buying, when to purchase, what to do, when to do it!
  • \r\n
  • Meet your deliverables efficiently: Increase Agility & Speed to Market – when the market shifts your organization can adjust quickly!
  • \r\n
'),(111389,3287,'_solutions','field_5c488ed95f5d9'),(111390,3287,'difference','

Is your company working around your system on daily basis?

\r\nWe will learn about your business, your operations, your customers, your employees and create a system that works for you and them. Seamless integration is possible!\r\n
\r\nYou want us to work with your IT department, be your IT project partner for the duration, or be an external resource to build your solutions, we will do what is best for you!'),(111391,3287,'_difference','field_5c488eed5f5da'),(111392,3287,'panel_0_background','538'),(111393,3287,'_panel_0_background','field_5c488f425f5dc'),(111394,3287,'panel_0_title','Technology Tailored to Your Business'),(111395,3287,'_panel_0_title','field_5c488f525f5dd'),(111396,3287,'panel_0_text',''),(111397,3287,'_panel_0_text','field_5c488f5b5f5de'),(111398,3287,'panel_1_background','545'),(111399,3287,'_panel_1_background','field_5c488f425f5dc'),(111400,3287,'panel_1_title','System Stability'),(111401,3287,'_panel_1_title','field_5c488f525f5dd'),(111402,3287,'panel_1_text',''),(111403,3287,'_panel_1_text','field_5c488f5b5f5de'),(111404,3287,'panel_2_background','544'),(111405,3287,'_panel_2_background','field_5c488f425f5dc'),(111406,3287,'panel_2_title','Empower Business Decisions'),(111407,3287,'_panel_2_title','field_5c488f525f5dd'),(111408,3287,'panel_2_text',''),(111409,3287,'_panel_2_text','field_5c488f5b5f5de'),(111410,3287,'panel_3_background','543'),(111411,3287,'_panel_3_background','field_5c488f425f5dc'),(111412,3287,'panel_3_title','Pivot Quickly into Production'),(111413,3287,'_panel_3_title','field_5c488f525f5dd'),(111414,3287,'panel_3_text',''),(111415,3287,'_panel_3_text','field_5c488f5b5f5de'),(111416,3287,'panel_4_background','542'),(111417,3287,'_panel_4_background','field_5c488f425f5dc'),(111418,3287,'panel_4_title','Revenue Increasing Algorithms'),(111419,3287,'_panel_4_title','field_5c488f525f5dd'),(111420,3287,'panel_4_text',''),(111421,3287,'_panel_4_text','field_5c488f5b5f5de'),(111422,3287,'panel_5_background','541'),(111423,3287,'_panel_5_background','field_5c488f425f5dc'),(111424,3287,'panel_5_title','Secure Self-Healing Systems'),(111425,3287,'_panel_5_title','field_5c488f525f5dd'),(111426,3287,'panel_5_text',''),(111427,3287,'_panel_5_text','field_5c488f5b5f5de'),(111428,3287,'panel_6_background','540'),(111429,3287,'_panel_6_background','field_5c488f425f5dc'),(111430,3287,'panel_6_title','Operational Process Automation'),(111431,3287,'_panel_6_title','field_5c488f525f5dd'),(111432,3287,'panel_6_text',''),(111433,3287,'_panel_6_text','field_5c488f5b5f5de'),(111434,3287,'panel_7_background','539'),(111435,3287,'_panel_7_background','field_5c488f425f5dc'),(111436,3287,'panel_7_title','Financial Analyst'),(111437,3287,'_panel_7_title','field_5c488f525f5dd'),(111438,3287,'panel_7_text',''),(111439,3287,'_panel_7_text','field_5c488f5b5f5de'),(111440,3287,'panel','8'),(111441,3287,'_panel','field_5c488f195f5db'),(111442,3287,'more-text','The largest enterprise and fastest growing companies are using Digital Transformation from Google, JP Morgan, Walmart, Bank of America, Netflix, Airbnb, Motorola, Uber, Ford, Dupont, GM, BMW, GE, to Nordstrom.'),(111443,3287,'_more-text','field_5c488f8f5f5df'),(111444,3287,'phrase','Elite Technology Partner, We Listen. We Learn. We Inform. Creating technology solutions that mirror your operations to increase efficiency by 20%+ using digital transformation.'),(111445,3287,'_phrase','field_5c488faf5f5e0'),(111446,3287,'author','TRANSLUCENT'),(111447,3287,'_author','field_5c488fba5f5e1'),(111448,3287,'top_title','Digital Transformation'),(111449,3287,'_top_title','field_5edfac92f4226'),(111450,44,'hefo_before','0'),(111451,44,'hefo_after','0'),(111452,44,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(111453,44,'_yoast_wpseo_estimated-reading-time-minutes',''),(111454,3288,'top-image','528'),(111455,3288,'_top-image','field_5c488d805f5d4'),(111456,3288,'top-text','Keeping communication between your business operations, your technology, and the online world, in sync.'),(111457,3288,'_top-text','field_5c488e575f5d5'),(111458,3288,'features_0_feature','Constant Communication'),(111459,3288,'_features_0_feature','field_5c4890c93ae20'),(111460,3288,'features_1_feature','Speed to Market'),(111461,3288,'_features_1_feature','field_5c4890c93ae20'),(111462,3288,'features_2_feature','Secure Self-Healing Systems'),(111463,3288,'_features_2_feature','field_5c4890c93ae20'),(111464,3288,'features_3_feature','Automation'),(111465,3288,'_features_3_feature','field_5c4890c93ae20'),(111466,3288,'features_4_feature','CI'),(111467,3288,'_features_4_feature','field_5c4890c93ae20'),(111468,3288,'features_5_feature','CD'),(111469,3288,'_features_5_feature','field_5c4890c93ae20'),(111470,3288,'features_6_feature','Bimodal'),(111471,3288,'_features_6_feature','field_5c4890c93ae20'),(111472,3288,'features','7'),(111473,3288,'_features','field_5c4890bc3ae1f'),(111474,3288,'about-title','It’s 3 AM in the morning,
is your business still working for you?'),(111475,3288,'_about-title','field_5c488e7a5f5d6'),(111476,3288,'about-text','Translucent DevOps understands the ever-changing landscape of your operations, systems, and software and creates solutions. Automate your processes and increase effectiveness & collaboration company-wide.\r\nWe architect solutions based on how your business actually works!'),(111477,3288,'_about-text','field_5c488e945f5d7'),(111478,3288,'problems','How long before your competition’s technology puts you out of business?\r\n\r\nHow long does it take to go from concept to production?\r\n\r\nHow secure is your company’s Intellectual property & confidential information?\r\n\r\nAre you competitive? Are your automated processes ahead of industry standard?'),(111479,3288,'_problems','field_5c488ec75f5d8'),(111480,3288,'solutions','

Translucent Devops Strategy

\r\n
\r\n
    \r\n
  • End-to-End Monitoring and Automation.\r\nSee things in real time and solve them
  • \r\n
  • Translucent taking technical debt and turning it into techniques and dollars
  • \r\n
  • Continuous Integration & Continuous Deployment - Faster delivery of operational changes into your technology.\r\nFeatures delivered to market more rapidly.\r\nWithout business interruption.
  • \r\n
  • Secure your company’s information while staying completely connected online
  • \r\n
  • DevOps + AIOps: Self learning, self-healing systems that prioritizes, communicates to needed resources and resolves issues automatically
  • \r\n
'),(111481,3288,'_solutions','field_5c488ed95f5d9'),(111482,3288,'difference','

Are your systems working while you are sleeping?

\r\n \r\n\r\nImagine your business and your systems automatically working around the clock to improve your operations.\r\n\r\nWe will learn about your business, your operations, your customers, your employees and create solutions that work for you and them.\r\n
\r\nSeamless integration is possible!'),(111483,3288,'_difference','field_5c488eed5f5da'),(111484,3288,'panel_0_background','780'),(111485,3288,'_panel_0_background','field_5c488f425f5dc'),(111486,3288,'panel_0_title','Constant Comunication'),(111487,3288,'_panel_0_title','field_5c488f525f5dd'),(111488,3288,'panel_0_text',''),(111489,3288,'_panel_0_text','field_5c488f5b5f5de'),(111490,3288,'panel_1_background','775'),(111491,3288,'_panel_1_background','field_5c488f425f5dc'),(111492,3288,'panel_1_title','Bimodal'),(111493,3288,'_panel_1_title','field_5c488f525f5dd'),(111494,3288,'panel_1_text',''),(111495,3288,'_panel_1_text','field_5c488f5b5f5de'),(111496,3288,'panel_2_background','776'),(111497,3288,'_panel_2_background','field_5c488f425f5dc'),(111498,3288,'panel_2_title','Secure Self-Healing Systems'),(111499,3288,'_panel_2_title','field_5c488f525f5dd'),(111500,3288,'panel_2_text',''),(111501,3288,'_panel_2_text','field_5c488f5b5f5de'),(111502,3288,'panel_3_background','787'),(111503,3288,'_panel_3_background','field_5c488f425f5dc'),(111504,3288,'panel_3_title','Automation'),(111505,3288,'_panel_3_title','field_5c488f525f5dd'),(111506,3288,'panel_3_text',''),(111507,3288,'_panel_3_text','field_5c488f5b5f5de'),(111508,3288,'panel_4_background','779'),(111509,3288,'_panel_4_background','field_5c488f425f5dc'),(111510,3288,'panel_4_title','IT & Business Harmony'),(111511,3288,'_panel_4_title','field_5c488f525f5dd'),(111512,3288,'panel_4_text',''),(111513,3288,'_panel_4_text','field_5c488f5b5f5de'),(111514,3288,'panel_5_background','777'),(111515,3288,'_panel_5_background','field_5c488f425f5dc'),(111516,3288,'panel_5_title','Profitability in Productivity'),(111517,3288,'_panel_5_title','field_5c488f525f5dd'),(111518,3288,'panel_5_text',''),(111519,3288,'_panel_5_text','field_5c488f5b5f5de'),(111520,3288,'panel_6_background','778'),(111521,3288,'_panel_6_background','field_5c488f425f5dc'),(111522,3288,'panel_6_title','Kubernetes'),(111523,3288,'_panel_6_title','field_5c488f525f5dd'),(111524,3288,'panel_6_text',''),(111525,3288,'_panel_6_text','field_5c488f5b5f5de'),(111526,3288,'panel_7_background','781'),(111527,3288,'_panel_7_background','field_5c488f425f5dc'),(111528,3288,'panel_7_title','Blockchain'),(111529,3288,'_panel_7_title','field_5c488f525f5dd'),(111530,3288,'panel_7_text',''),(111531,3288,'_panel_7_text','field_5c488f5b5f5de'),(111532,3288,'panel','8'),(111533,3288,'_panel','field_5c488f195f5db'),(111534,3288,'more-text','The largest enterprise and fastest growing companies have converted to DevOps from Google, JP, Morgan, Walmart, Bank of America, Netflix, Airbnb, Motorola, to Nordstrom.'),(111535,3288,'_more-text','field_5c488f8f5f5df'),(111536,3288,'phrase','“The transition to agile DevOps is saving millions.”'),(111537,3288,'_phrase','field_5c488faf5f5e0'),(111538,3288,'author','JOHN JENKINS'),(111539,3288,'_author','field_5c488fba5f5e1'),(111540,3288,'top_title','Cloud Native DevOps'),(111541,3288,'_top_title','field_5edfac92f4226'),(111542,18,'hefo_before','0'),(111543,18,'hefo_after','0'),(111544,18,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(111548,18,'_yoast_wpseo_estimated-reading-time-minutes',''),(111552,3289,'top-image','534'),(111553,3289,'_top-image','field_5c488d805f5d4'),(111554,3289,'top-text','Insights to improve quality of life, provide clarity in decision making and increase profits.'),(111555,3289,'_top-text','field_5c488e575f5d5'),(111556,3289,'features_0_feature','Analytics'),(111557,3289,'_features_0_feature','field_5c4890c93ae20'),(111558,3289,'features_1_feature','Fraud Detection'),(111559,3289,'_features_1_feature','field_5c4890c93ae20'),(111560,3289,'features_2_feature','Recommendations'),(111561,3289,'_features_2_feature','field_5c4890c93ae20'),(111562,3289,'features_3_feature','Predictions'),(111563,3289,'_features_3_feature','field_5c4890c93ae20'),(111564,3289,'features_4_feature','Image Recognition'),(111565,3289,'_features_4_feature','field_5c4890c93ae20'),(111566,3289,'features_5_feature','Data Lake'),(111567,3289,'_features_5_feature','field_5c4890c93ae20'),(111568,3289,'features_6_feature','Deep Learning'),(111569,3289,'_features_6_feature','field_5c4890c93ae20'),(111570,3289,'features','7'),(111571,3289,'_features','field_5c4890bc3ae1f'),(111572,3289,'about-title','How intelligent is your business?'),(111573,3289,'_about-title','field_5c488e7a5f5d6'),(111574,3289,'about-text','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(111575,3289,'_about-text','field_5c488e945f5d7'),(111576,3289,'problems','Are you learning from your data and market conditions?\r\n\r\nDo you know where your business is making and losing money?\r\n\r\nHow well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(111577,3289,'_problems','field_5c488ec75f5d8'),(111578,3289,'solutions','

Translucent Machine Learning Strategy

\r\n
\r\nUnderstanding the patterns of organizational success & giving you control over the numbers.\r\n
\r\n
    \r\n
  • Learning from Data - understanding past & current experiences, to model your company’s future
  • \r\n
  • Predictive Services – using key performance indicators to road map future possibilities
  • \r\n
  • Intelligent automation - enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient
  • \r\n
  • Analytics: Use your data to increase your revenues & purchasing power – in depth reporting
  • \r\n
'),(111579,3289,'_solutions','field_5c488ed95f5d9'),(111580,3289,'difference','

Is Your Data Working for You?

\r\nPattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour.\r\n\r\nWe will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.\r\n
\r\nWeave machine learning into your business systems meeting and exceeding industry standards and best practices.\r\nThe ability to automate intelligence by department, exact need, and function in real time.'),(111581,3289,'_difference','field_5c488eed5f5da'),(111582,3289,'panel_0_background','554'),(111583,3289,'_panel_0_background','field_5c488f425f5dc'),(111584,3289,'panel_0_title','Data Entry Automation'),(111585,3289,'_panel_0_title','field_5c488f525f5dd'),(111586,3289,'panel_0_text',''),(111587,3289,'_panel_0_text','field_5c488f5b5f5de'),(111588,3289,'panel_1_background','561'),(111589,3289,'_panel_1_background','field_5c488f425f5dc'),(111590,3289,'panel_1_title','Product Recommendation'),(111591,3289,'_panel_1_title','field_5c488f525f5dd'),(111592,3289,'panel_1_text',''),(111593,3289,'_panel_1_text','field_5c488f5b5f5de'),(111594,3289,'panel_2_background','560'),(111595,3289,'_panel_2_background','field_5c488f425f5dc'),(111596,3289,'panel_2_title','Medical Diagnosis'),(111597,3289,'_panel_2_title','field_5c488f525f5dd'),(111598,3289,'panel_2_text',''),(111599,3289,'_panel_2_text','field_5c488f5b5f5de'),(111600,3289,'panel_3_background','559'),(111601,3289,'_panel_3_background','field_5c488f425f5dc'),(111602,3289,'panel_3_title','Clients: Who is buying what'),(111603,3289,'_panel_3_title','field_5c488f525f5dd'),(111604,3289,'panel_3_text',''),(111605,3289,'_panel_3_text','field_5c488f5b5f5de'),(111606,3289,'panel_4_background','557'),(111607,3289,'_panel_4_background','field_5c488f425f5dc'),(111608,3289,'panel_4_title','User Behavior'),(111609,3289,'_panel_4_title','field_5c488f525f5dd'),(111610,3289,'panel_4_text',''),(111611,3289,'_panel_4_text','field_5c488f5b5f5de'),(111612,3289,'panel_5_background','558'),(111613,3289,'_panel_5_background','field_5c488f425f5dc'),(111614,3289,'panel_5_title','BI: Automated Reporting'),(111615,3289,'_panel_5_title','field_5c488f525f5dd'),(111616,3289,'panel_5_text',''),(111617,3289,'_panel_5_text','field_5c488f5b5f5de'),(111618,3289,'panel_6_background','556'),(111619,3289,'_panel_6_background','field_5c488f425f5dc'),(111620,3289,'panel_6_title','Detecting Spam in Emails'),(111621,3289,'_panel_6_title','field_5c488f525f5dd'),(111622,3289,'panel_6_text',''),(111623,3289,'_panel_6_text','field_5c488f5b5f5de'),(111624,3289,'panel_7_background','555'),(111625,3289,'_panel_7_background','field_5c488f425f5dc'),(111626,3289,'panel_7_title','Analytics'),(111627,3289,'_panel_7_title','field_5c488f525f5dd'),(111628,3289,'panel_7_text',''),(111629,3289,'_panel_7_text','field_5c488f5b5f5de'),(111630,3289,'panel','8'),(111631,3289,'_panel','field_5c488f195f5db'),(111632,3289,'more-text','The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.'),(111633,3289,'_more-text','field_5c488f8f5f5df'),(111634,3289,'phrase','“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”'),(111635,3289,'_phrase','field_5c488faf5f5e0'),(111636,3289,'author','FORBES.COM'),(111637,3289,'_author','field_5c488fba5f5e1'),(111638,3289,'top_title','Machine Learning'),(111639,3289,'_top_title','field_5edfac92f4226'),(111640,16,'hefo_before','0'),(111641,16,'hefo_after','0'),(111642,16,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(111643,16,'_yoast_wpseo_estimated-reading-time-minutes',''),(111644,829,'hefo_before','0'),(111645,829,'hefo_after','0'),(111646,829,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(111650,829,'_yoast_wpseo_estimated-reading-time-minutes',''),(111651,3291,'top-image','535'),(111652,3291,'_top-image','field_5c488d805f5d4'),(111653,3291,'top-text','Building scalable, reliable and secure ecosystems for your business!'),(111654,3291,'_top-text','field_5c488e575f5d5'),(111655,3291,'features_0_feature','Kubernetes'),(111656,3291,'_features_0_feature','field_5c4890c93ae20'),(111657,3291,'features_1_feature','Speed to Market'),(111658,3291,'_features_1_feature','field_5c4890c93ae20'),(111659,3291,'features_2_feature','Reusable'),(111660,3291,'_features_2_feature','field_5c4890c93ae20'),(111661,3291,'features_3_feature','Agile'),(111662,3291,'_features_3_feature','field_5c4890c93ae20'),(111663,3291,'features_4_feature','Scalable'),(111664,3291,'_features_4_feature','field_5c4890c93ae20'),(111665,3291,'features_5_feature','Secure'),(111666,3291,'_features_5_feature','field_5c4890c93ae20'),(111667,3291,'features_6_feature','Flexible'),(111668,3291,'_features_6_feature','field_5c4890c93ae20'),(111669,3291,'features','7'),(111670,3291,'_features','field_5c4890bc3ae1f'),(111671,3291,'about-title','Your technology slowing down your business?'),(111672,3291,'_about-title','field_5c488e7a5f5d6'),(111673,3291,'about-text','Picture your systems architecture naturally mirroring your operations, your people, your clients.\r\nBuilding block by block solutions that fit your organization like a perfect pair of gloves.\r\nIt is possible!'),(111674,3291,'_about-text','field_5c488e945f5d7'),(111675,3291,'problems','Do your business operations consistently have to work around your technology?\r\n\r\nDoes your system take forever to add new features into production?\r\n\r\nIs the stability of your system causing you consistent user issues & delays?'),(111676,3291,'_problems','field_5c488ec75f5d8'),(111677,3291,'solutions','

Translucent Microservices Strategy

\r\nTranslucent Microservices provides affordable, tailored services to transform your old legacy applications, or build out an industry leading platform from scratch.\r\n
\r\n
    \r\n
  • System changes are done without affecting daily operations
  • \r\n
  • Dynamically transition from legacy system to Microservices, based on priority & timeline
  • \r\n
  • Scalable solutions - solving today\'s issues with tomorrow’s growth in mind
  • \r\n
'),(111678,3291,'_solutions','field_5c488ed95f5d9'),(111679,3291,'difference','

We decompose your business, how it runs, understanding the WHY.

\r\nThis allows the form of your systems architecture to naturally mimic your operations, your people, your clients. Building block by block solutions that fit your organization like a perfect pair of gloves.\r\n
\r\nTEKStack™ allows us to Architect upon the foundation of how your company actually works in the physical world, with unmatched precision and speed to market.\r\n\r\nBlock by block systems that are independent and integrated. Building feature by feature, keeping you involved in the process so you get the outcome you really want.\r\n\r\nIf one function or application has an issue or is being worked on the rest of your system still works. The system snaps together or can be removed like Lego Blocks. Okay a bit more complex, you get the idea!\r\n\r\nWe will learn about your business, your operations, your customers, your employees and create a system that works for you and them. Seamless integration is possible!\r\n\r\nTechnology that serves you!.'),(111680,3291,'_difference','field_5c488eed5f5da'),(111681,3291,'panel_0_background','546'),(111682,3291,'_panel_0_background','field_5c488f425f5dc'),(111683,3291,'panel_0_title','Improved User Experience'),(111684,3291,'_panel_0_title','field_5c488f525f5dd'),(111685,3291,'panel_0_text',''),(111686,3291,'_panel_0_text','field_5c488f5b5f5de'),(111687,3291,'panel_1_background','553'),(111688,3291,'_panel_1_background','field_5c488f425f5dc'),(111689,3291,'panel_1_title','Improved Uptime'),(111690,3291,'_panel_1_title','field_5c488f525f5dd'),(111691,3291,'panel_1_text',''),(111692,3291,'_panel_1_text','field_5c488f5b5f5de'),(111693,3291,'panel_2_background','552'),(111694,3291,'_panel_2_background','field_5c488f425f5dc'),(111695,3291,'panel_2_title','Quickly React to Market Conditions'),(111696,3291,'_panel_2_title','field_5c488f525f5dd'),(111697,3291,'panel_2_text',''),(111698,3291,'_panel_2_text','field_5c488f5b5f5de'),(111699,3291,'panel_3_background','550'),(111700,3291,'_panel_3_background','field_5c488f425f5dc'),(111701,3291,'panel_3_title','Tech Built to Fit Business Operations'),(111702,3291,'_panel_3_title','field_5c488f525f5dd'),(111703,3291,'panel_3_text',''),(111704,3291,'_panel_3_text','field_5c488f5b5f5de'),(111705,3291,'panel_4_background','551'),(111706,3291,'_panel_4_background','field_5c488f425f5dc'),(111707,3291,'panel_4_title','Incremental Steps to the Cloud'),(111708,3291,'_panel_4_title','field_5c488f525f5dd'),(111709,3291,'panel_4_text',''),(111710,3291,'_panel_4_text','field_5c488f5b5f5de'),(111711,3291,'panel_5_background','549'),(111712,3291,'_panel_5_background','field_5c488f425f5dc'),(111713,3291,'panel_5_title','Improved Testability'),(111714,3291,'_panel_5_title','field_5c488f525f5dd'),(111715,3291,'panel_5_text',''),(111716,3291,'_panel_5_text','field_5c488f5b5f5de'),(111717,3291,'panel_6_background','548'),(111718,3291,'_panel_6_background','field_5c488f425f5dc'),(111719,3291,'panel_6_title','Better Scalability'),(111720,3291,'_panel_6_title','field_5c488f525f5dd'),(111721,3291,'panel_6_text',''),(111722,3291,'_panel_6_text','field_5c488f5b5f5de'),(111723,3291,'panel_7_background','547'),(111724,3291,'_panel_7_background','field_5c488f425f5dc'),(111725,3291,'panel_7_title','Quicker Release Cycles'),(111726,3291,'_panel_7_title','field_5c488f525f5dd'),(111727,3291,'panel_7_text',''),(111728,3291,'_panel_7_text','field_5c488f5b5f5de'),(111729,3291,'panel','8'),(111730,3291,'_panel','field_5c488f195f5db'),(111731,3291,'more-text','The largest enterprise and fastest growing companies have converted to Microservices from Google, JP, Morgan, Walmart, Bank of America, Netflix, Airbnb, Motorola, to Nordstrom.'),(111732,3291,'_more-text','field_5c488f8f5f5df'),(111733,3291,'phrase','“Microservices might be even more disruptive than any other tech paradigm shift that has come before.”'),(111734,3291,'_phrase','field_5c488faf5f5e0'),(111735,3291,'author','FORBES.COM'),(111736,3291,'_author','field_5c488fba5f5e1'),(111737,3291,'top_title','Cloud Native Application Development with Microservices'),(111738,3291,'_top_title','field_5edfac92f4226'),(111739,14,'hefo_before','0'),(111740,14,'hefo_after','0'),(111741,14,'ao_post_optimize','a:5:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";}'),(111742,14,'_pinterest_shares','0'),(111743,14,'_total_shares','0'),(111745,14,'_yoast_wpseo_estimated-reading-time-minutes',''),(112079,3292,'_edit_lock','1631035554:17'),(112080,3292,'_wp_page_template','tc-simple-page.php'),(112084,3292,'_edit_last','17'),(112085,3292,'hefo_before','0'),(112086,3292,'hefo_after','0'),(112087,3292,'ao_post_optimize','a:5:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";}'),(112088,3292,'_yoast_wpseo_content_score','30'),(112089,3292,'_yoast_wpseo_focuskeywords','[]'),(112090,3292,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(112091,3292,'_yoast_wpseo_estimated-reading-time-minutes','5'),(112098,3294,'_edit_lock','1631035695:17'),(112099,3294,'_wp_page_template','tc-simple-page.php'),(112100,3294,'_edit_last','17'),(112101,3294,'hefo_before','0'),(112102,3294,'hefo_after','0'),(112103,3294,'ao_post_optimize','a:5:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";}'),(112107,3294,'_yoast_wpseo_content_score','30'),(112108,3294,'_yoast_wpseo_focuskeywords','[]'),(112109,3294,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(112110,3294,'_yoast_wpseo_estimated-reading-time-minutes','6'),(112114,3296,'_menu_item_type','post_type'),(112115,3296,'_menu_item_menu_item_parent','2239'),(112116,3296,'_menu_item_object_id','3294'),(112117,3296,'_menu_item_object','page'),(112118,3296,'_menu_item_target',''),(112119,3296,'_menu_item_classes','a:1:{i:0;s:14:\"main-menu-hide\";}'),(112120,3296,'_menu_item_xfn',''),(112121,3296,'_menu_item_url',''),(112123,3297,'_menu_item_type','post_type'),(112124,3297,'_menu_item_menu_item_parent','2239'),(112125,3297,'_menu_item_object_id','3292'),(112126,3297,'_menu_item_object','page'),(112127,3297,'_menu_item_target',''),(112128,3297,'_menu_item_classes','a:1:{i:0;s:14:\"main-menu-hide\";}'),(112129,3297,'_menu_item_xfn',''),(112130,3297,'_menu_item_url',''),(112214,3292,'_yoast_wpseo_title','Translucent | Privacy Policy'),(112215,3292,'_yoast_wpseo_metadesc','Your Privacy Rights: Translucent Computing Inc. (“Translucent”) is governed by the Personal Information Protection nd Electronic Documents Act (“PIPEDA”)'),(112222,3294,'_yoast_wpseo_title','Translucent | Terms of Use'),(112223,3294,'_yoast_wpseo_metadesc','Use of this Website: By using this website, you agree to these terms of use. These terms of use are an Ontario contract. If you do not agree with the terms of use, do not use this website.'),(112864,922,'_pinterest_shares','0'),(112865,922,'_total_shares','0'),(114175,2625,'_wp_attachment_image_alt','translucent ceo robert golabek'),(114176,2578,'_wp_attachment_image_alt','translucent ceo robert golabek badge transparent background'),(114177,2546,'_wp_attachment_image_alt','man staring'),(114178,2403,'_wp_attachment_image_alt','cloud watermark transparent'),(114179,2402,'_wp_attachment_image_alt','chat sms bubble watermark transparent background'),(114180,2401,'_wp_attachment_image_alt','cloud icon watermark transparent background'),(114181,2400,'_wp_attachment_image_alt','translucent watermark logo transparent background'),(114182,2285,'_wp_attachment_image_alt','translucent Multi Cloud Deployment Strategy banner'),(114183,2281,'_wp_attachment_image_alt','mr data favicon small'),(114184,2279,'_wp_attachment_image_alt','mr data favicon small'),(114185,2278,'_wp_attachment_image_alt','mr data gradient afro small'),(114186,2276,'_wp_attachment_image_alt','translucent what is digital transformation infographic'),(114187,2275,'_wp_attachment_image_alt','translucent what is data driven transformation infographic'),(114188,2274,'_wp_attachment_image_alt','translucent what is data driven transformation infographic 2'),(114189,2273,'_wp_attachment_image_alt','translucent computing homepage banner 3'),(114190,2272,'_wp_attachment_image_alt','translucent computing homepage banner 2'),(114191,2271,'_wp_attachment_image_alt','translucent computing homepage banner 1'),(114192,2268,'_wp_attachment_image_alt','translucent cloud native devops infographic'),(114193,2265,'_wp_attachment_image_alt','translucent cloud native devops infographic 2'),(114194,2264,'_wp_attachment_image_alt','the linux foundation silver member icon transparent background'),(114195,2263,'_wp_attachment_image_alt','cloud native computing foundation silver member icon transparent background'),(114196,2248,'_wp_attachment_image_alt','translucent Kubernetes certified partner icon transparent background'),(114197,2246,'_wp_attachment_image_alt','kubernetes certified service provider'),(114198,2215,'_wp_attachment_image_alt','2 iphones mockup'),(114199,2212,'_wp_attachment_image_alt','translucent support and maintenance sms chat bubble transparent background'),(114200,2209,'_wp_attachment_image_alt','translucent kuberneter consulting cloud icon transparent background'),(114201,2208,'_wp_attachment_image_alt','translucent learn inform plan icon transparent background'),(114202,2207,'_wp_attachment_image_alt','translucent kubernetes professional services watermark icon'),(114203,2206,'_wp_attachment_image_alt','translucent learn inform plan image kubernetes icon blue'),(114204,2203,'_wp_attachment_image_alt','translucent learn inform plan image kubernetes icon inverted'),(114205,2202,'_wp_attachment_image_alt','translucent Kubernetes certified partner banner blue'),(114206,2154,'_wp_attachment_image_alt','vault dynamic secrets infographic'),(114207,2140,'_wp_attachment_image_alt','translucent monolithic vs microservices architecture infographic'),(114208,2138,'_wp_attachment_image_alt','translucent monolithic vs microservices architecture infographic 2'),(114209,2130,'_wp_attachment_image_alt','sam solutions monolithic vs microservices architecture infographic'),(114210,2104,'_wp_attachment_image_alt','translucent computing showcases canadian ai healthcare solution press release'),(114211,2093,'_wp_attachment_image_alt','translucent krindle me christmas ugly sweater app banner'),(114212,2089,'_wp_attachment_image_alt','translucent the hashtag blog octothorpe'),(114213,2076,'_wp_attachment_image_alt','ML in frequency domain'),(114214,2075,'_wp_attachment_image_alt','ml in frequency domain 2'),(114215,2023,'_wp_attachment_image_alt','pipefail screenshot'),(114216,1969,'_wp_attachment_image_alt','pipefail screenshot 2'),(114217,1968,'_wp_attachment_image_alt','pipefail screenshot 3'),(114218,1967,'_wp_attachment_image_alt','pipefail screenshot 4'),(114219,1966,'_wp_attachment_image_alt','pipefail screenshot 5'),(114220,1965,'_wp_attachment_image_alt','pipefail screenshot 6'),(114221,1964,'_wp_attachment_image_alt','pipfail screenshot 7'),(114222,1963,'_wp_attachment_image_alt','pipefail screenshot 9'),(114223,1962,'_wp_attachment_image_alt','pipefail screenshot 10'),(114224,1961,'_wp_attachment_image_alt','pipefail screenshot 11'),(114225,1960,'_wp_attachment_image_alt','pipefail screenshot 12'),(114226,1959,'_wp_attachment_image_alt','pipefail screenshot 13'),(114227,1958,'_wp_attachment_image_alt','hello world screenshot'),(114228,1933,'_wp_attachment_image_alt','translucent tekstack ai infographic transparent background'),(114229,1932,'_wp_attachment_image_alt','translucent tekstack ai kubernetes infographic transparent background'),(114230,1931,'_wp_attachment_image_alt','translucent tekstack ai infographic full transparent background'),(114231,1930,'_wp_attachment_image_alt','translucent tekstack ai enhance graphic transparent background'),(114232,1929,'_wp_attachment_image_alt','translucent tekstack ai tech stack elastic search mysql neo4j minio kubernetes icons transparent background'),(114233,1928,'_wp_attachment_image_alt','translucent tekstack ai data experts icons transparent background'),(114234,1927,'_wp_attachment_image_alt','virtual medtech conference banner'),(114235,1926,'_wp_attachment_image_alt','intelligent health 2020 summit banner'),(114236,1916,'_wp_attachment_image_alt','HIMSS EU SoMe Banner 3'),(114237,1882,'_wp_attachment_image_alt','translucent tekstack ai logo small'),(114238,1880,'_wp_attachment_image_alt','smart data lake kubernetes'),(114239,1879,'_wp_attachment_image_alt','man looking into the connected web'),(114240,1878,'_wp_attachment_image_alt','translucent services icon'),(114256,1877,'_wp_attachment_image_alt','devops icon green transparent background'),(114257,1873,'_wp_attachment_image_alt','cloud native solutions icon transparent background'),(114261,1872,'_wp_attachment_image_alt','translucent machine learning infographic'),(114262,1762,'_wp_attachment_image_alt','translucent machine learning infographic 2'),(114263,1751,'_wp_attachment_image_alt','translucent machine learning infographic 3'),(114264,1746,'_wp_attachment_image_alt','translucent analytics 2 data scientists and a pie graph'),(114265,1716,'_wp_attachment_image_alt','translucent machine learning infographic 4'),(114299,1714,'_wp_attachment_image_alt','translucent deep learning scientist stack of books helicopter'),(114309,1715,'_wp_attachment_image_alt','translucent machine learning infographic 5'),(114316,1713,'_wp_attachment_image_alt','translucent machine learning infographic 6'),(114326,1711,'_wp_attachment_image_alt','translucent machine learning infographic 7'),(114327,1710,'_wp_attachment_image_alt','translucent machine learning infographic 8'),(114328,1657,'_wp_attachment_image_alt','hello world screenshot 2'),(114329,1656,'_wp_attachment_image_alt','certificate screenshot'),(114330,1623,'_wp_attachment_image_alt','translucent logo icon blue outline'),(114331,1622,'_wp_attachment_image_alt','man on tablet pc'),(114332,1560,'_wp_attachment_image_alt','text to speech animation'),(114333,997,'_wp_attachment_image_alt','translucent sickkids tablet screenshot'),(114334,977,'_wp_attachment_image_alt','number 3 in circle blue'),(114335,976,'_wp_attachment_image_alt','number 1 in circle black'),(114336,974,'_wp_attachment_image_alt','number 4 in circle black'),(114337,975,'_wp_attachment_image_alt','number 5 in circle black'),(114338,973,'_wp_attachment_image_alt','number 3 in circle black'),(114339,972,'_wp_attachment_image_alt','number 2 in circle red'),(114340,971,'_wp_attachment_image_alt','number 2 in circle blue'),(114341,970,'_wp_attachment_image_alt','number 1 in circle red'),(114342,969,'_wp_attachment_image_alt','number 1 in circle blue'),(114343,968,'_wp_attachment_image_alt','translucent computing full logo'),(114344,949,'_wp_attachment_image_alt','pod connection diagram'),(114345,868,'_wp_attachment_image_alt','chatops logo'),(114346,848,'_wp_attachment_image_alt','translucent full logo transparent background'),(114347,847,'_wp_attachment_image_alt','translucent full logo transparent background 2'),(114348,845,'_wp_attachment_image_alt','translucent full logo transparent background 3'),(114349,840,'_wp_attachment_image_alt','woman holding notebook touching screen'),(114350,820,'_wp_attachment_image_alt','man holding tablet car diagram'),(114351,816,'_wp_attachment_image_alt','man holding tablet car diagram 2'),(114352,802,'_wp_attachment_image_alt','aws logo'),(114353,800,'_wp_attachment_image_alt','bmo bank of montreal logo'),(114354,801,'_wp_attachment_image_alt','sickkids hospital logo'),(114355,799,'_wp_attachment_image_alt','canadian black book logo'),(114356,798,'_wp_attachment_image_alt','excellus logo'),(114357,797,'_wp_attachment_image_alt','google cloud platform logo'),(114358,796,'_wp_attachment_image_alt','kubernetes icon logo'),(114359,795,'_wp_attachment_image_alt','goto loans logo transparent background'),(114360,794,'_wp_attachment_image_alt','spinnaker logo'),(114361,793,'_wp_attachment_image_alt','tensorflow logo'),(114362,790,'_wp_attachment_image_alt','people in an office'),(114363,787,'_wp_attachment_image_alt','man in hardhat on tablet in office'),(114364,785,'_wp_attachment_image_alt','people in office'),(114365,781,'_wp_attachment_image_alt','man touching screen security lock icons'),(114366,780,'_wp_attachment_image_alt','devops infographic'),(114367,779,'_wp_attachment_image_alt','2 people connecting puzzle pieces'),(114368,778,'_wp_attachment_image_alt','devops inforgraphic 2'),(114369,777,'_wp_attachment_image_alt','man making credit card payment on phone'),(114370,776,'_wp_attachment_image_alt','person on laptop with devops images'),(114371,775,'_wp_attachment_image_alt','people looking at screen data in office'),(114372,772,'_wp_attachment_image_alt','2 iphones mockup 2'),(114373,754,'_wp_attachment_image_alt','translucent services man on phone'),(114374,753,'_wp_attachment_image_alt','translucent services man cheering'),(114375,752,'_wp_attachment_image_alt','translucent services man upset'),(114376,740,'_wp_attachment_image_alt','translucent services man focused'),(114377,660,'_wp_attachment_image_alt','man touching tablet screen'),(114378,661,'_wp_attachment_image_alt','2 people giving props'),(114379,659,'_wp_attachment_image_alt','hand placing stars on table'),(114380,655,'_wp_attachment_image_alt','computer screen mock up'),(114381,654,'_wp_attachment_image_alt','finger touching screen'),(114382,623,'_wp_attachment_image_alt','goto loans logo 2'),(114383,621,'_wp_attachment_image_alt','university health network logo'),(114384,620,'_wp_attachment_image_alt','uft faculty of medicine logo'),(114385,619,'_wp_attachment_image_alt','mosaic logo'),(114386,618,'_wp_attachment_image_alt','ready portal logo'),(114387,617,'_wp_attachment_image_alt','woodgreen logo'),(114388,616,'_wp_attachment_image_alt','united way logo'),(114389,615,'_wp_attachment_image_alt','td bank logo'),(114390,613,'_wp_attachment_image_alt','spark logo'),(114391,614,'_wp_attachment_image_alt','stella artois logo'),(114392,612,'_wp_attachment_image_alt','rogers logo'),(114393,611,'_wp_attachment_image_alt','much music logo'),(114394,610,'_wp_attachment_image_alt','aws logo large'),(114395,609,'_wp_attachment_image_alt','samsung logo large'),(114396,608,'_wp_attachment_image_alt','lab bottle Erlenmeyer Flask'),(114397,607,'_wp_attachment_image_alt','confluence logo'),(114398,606,'_wp_attachment_image_alt','canadian black book logo large'),(114399,605,'_wp_attachment_image_alt','angular logo'),(114400,604,'_wp_attachment_image_alt','sick kids hospital logo large'),(114401,603,'_wp_attachment_image_alt','docker logo medium'),(114402,602,'_wp_attachment_image_alt','go to loans logo large'),(114403,600,'_wp_attachment_image_alt','google cloud platform logo large'),(114404,599,'_wp_attachment_image_alt','caliper logo large'),(114405,598,'_wp_attachment_image_alt','espolon logo large'),(114406,596,'_wp_attachment_image_alt','loanpro software logo'),(114407,595,'_wp_attachment_image_alt','jupyter logo'),(114408,593,'_wp_attachment_image_alt','excellus logo large'),(114409,594,'_wp_attachment_image_alt','jenkins logo large'),(114410,592,'_wp_attachment_image_alt','caliper logo large 2'),(114411,591,'_wp_attachment_image_alt','bank of montreal logo large'),(114412,590,'_wp_attachment_image_alt','tensorflow logo large'),(114413,589,'_wp_attachment_image_alt','spinnaker logo large'),(114414,588,'_wp_attachment_image_alt','prometheus logo large'),(114415,587,'_wp_attachment_image_alt','us army logo'),(114416,586,'_wp_attachment_image_alt','volentix logo'),(114417,585,'_wp_attachment_image_alt','stock image of fingers touching'),(114418,584,'_wp_attachment_image_alt','hands typing on laptop'),(114419,583,'_wp_attachment_image_alt','man on tablet'),(114420,582,'_wp_attachment_image_alt','puzzle pieces'),(114421,581,'_wp_attachment_image_alt','iphone credit card'),(114422,580,'_wp_attachment_image_alt','connected brain'),(114423,579,'_wp_attachment_image_alt','finger touching screen'),(114424,578,'_wp_attachment_image_alt','people in office looking at screen'),(114425,561,'_wp_attachment_image_alt','person making card payment on phone'),(114426,560,'_wp_attachment_image_alt','doctor holding tablet and stylus'),(114427,559,'_wp_attachment_image_alt','connected profiles'),(114428,557,'_wp_attachment_image_alt','people looking at screen together holding a laptop'),(114429,558,'_wp_attachment_image_alt','man reading data on screen'),(114430,556,'_wp_attachment_image_alt','hands typing email'),(114431,555,'_wp_attachment_image_alt','hands typing data'),(114432,554,'_wp_attachment_image_alt','figure 8 biometric security'),(114433,553,'_wp_attachment_image_alt','2 hands and a clock face'),(114434,552,'_wp_attachment_image_alt','chart downward trend'),(114435,550,'_wp_attachment_image_alt','person touching tablet screen and cloud icon'),(114436,551,'_wp_attachment_image_alt','doctor on laptop'),(114437,549,'_wp_attachment_image_alt','finger pointing at data on laptop screen'),(114438,548,'_wp_attachment_image_alt','man pointing at data on tablet screen'),(114439,547,'_wp_attachment_image_alt','hands in the sky'),(114440,546,'_wp_attachment_image_alt','connected profiles'),(114441,545,'_wp_attachment_image_alt','person on laptop connected'),(114442,544,'_wp_attachment_image_alt','multiple people using surface touch device'),(114443,543,'_wp_attachment_image_alt','person surrounded by tech icons'),(114444,542,'_wp_attachment_image_alt','man working on 3 screens'),(114445,541,'_wp_attachment_image_alt','code screenshot'),(114446,540,'_wp_attachment_image_alt','person typing connected dots'),(114447,539,'_wp_attachment_image_alt','piggy bank looking at data on screen'),(114448,538,'_wp_attachment_image_alt','person on tablet'),(114449,536,'_wp_attachment_image_alt','person touching tablet screen'),(114450,535,'_wp_attachment_image_alt','industrial building'),(114451,534,'_wp_attachment_image_alt','person standing looking at tech icons'),(114452,533,'_wp_attachment_image_alt','man smiling holding tablet'),(114453,532,'_wp_attachment_image_alt','mature man with glasses'),(114454,531,'_wp_attachment_image_alt','woman holding tablet touching screen 2'),(114455,529,'_wp_attachment_image_alt','2 iphones mockup 3'),(114456,528,'_wp_attachment_image_alt','devops inforgraphic original'),(114457,63,'_wp_attachment_image_alt','sickkids hostpital front'),(114458,55,'_wp_attachment_image_alt','sickkids logo small'),(114459,54,'_wp_attachment_image_alt','aws logo small'),(114460,52,'_wp_attachment_image_alt','ready portal logo small'),(114461,53,'_wp_attachment_image_alt','gotoloans logo greyscale small'),(114462,51,'_wp_attachment_image_alt','samsung logo small'),(114463,50,'_wp_attachment_image_alt','sickkids foundation logo large'),(114467,3219,'_imagify_optimization_level','1'),(114468,3219,'_imagify_status','success'),(114469,3219,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41518;s:14:\"optimized_size\";i:40696;s:7:\"percent\";d:1.98;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:42075;s:14:\"optimized_size\";i:4134;s:7:\"percent\";d:90.17;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:78495;s:14:\"optimized_size\";i:6976;s:7:\"percent\";d:91.11;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41518;s:14:\"optimized_size\";i:13132;s:7:\"percent\";d:68.37;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:78495;s:14:\"optimized_size\";i:24979;s:7:\"percent\";d:68.18;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:42075;s:14:\"optimized_size\";i:13958;s:7:\"percent\";d:66.83;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:324176;s:14:\"optimized_size\";i:103875;s:7:\"percent\";d:67.96;}}'),(115035,10,'_pinterest_shares','0'),(115036,10,'_total_shares','0'),(115037,10,'swp_cache_timestamp','453923'),(115044,3126,'_edit_last','18'),(115048,3124,'_imagify_optimization_level','0'),(115049,3124,'_imagify_status','success'),(115050,3124,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:68215;s:14:\"optimized_size\";i:58078;s:7:\"percent\";d:14.86;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15832;s:14:\"optimized_size\";i:39236;s:7:\"percent\";d:-147.83;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18259;s:14:\"optimized_size\";i:44706;s:7:\"percent\";d:-144.84;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2580;s:14:\"optimized_size\";i:4998;s:7:\"percent\";d:-93.72;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28277;s:14:\"optimized_size\";i:68756;s:7:\"percent\";d:-143.15;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4203;s:14:\"optimized_size\";i:8924;s:7:\"percent\";d:-112.32;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:68215;s:14:\"optimized_size\";i:126016;s:7:\"percent\";d:-84.73;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4203;s:14:\"optimized_size\";i:3616;s:7:\"percent\";d:13.97;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28277;s:14:\"optimized_size\";i:22969;s:7:\"percent\";d:18.77;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2580;s:14:\"optimized_size\";i:2114;s:7:\"percent\";d:18.06;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18259;s:14:\"optimized_size\";i:15292;s:7:\"percent\";d:16.25;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15832;s:14:\"optimized_size\";i:12670;s:7:\"percent\";d:19.97;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:274732;s:14:\"optimized_size\";i:407375;s:7:\"percent\";d:-48.28;}}'),(115051,3124,'_edit_lock','1634133155:18'),(115052,3124,'_edit_last','18'),(115056,2271,'_edit_lock','1634133941:18'),(115057,2271,'_edit_last','18'),(115067,2271,'_imagify_optimization_level','1'),(115068,2271,'_imagify_status','success'),(115069,2271,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:233008;s:14:\"optimized_size\";i:81212;s:7:\"percent\";d:65.15;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:225602;s:14:\"optimized_size\";i:15002;s:7:\"percent\";d:93.35;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:86769;s:14:\"optimized_size\";i:13296;s:7:\"percent\";d:84.68;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21528;s:14:\"optimized_size\";i:1662;s:7:\"percent\";d:92.28;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:150658;s:14:\"optimized_size\";i:20736;s:7:\"percent\";d:86.24;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20647;s:14:\"optimized_size\";i:2588;s:7:\"percent\";d:87.47;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:233008;s:14:\"optimized_size\";i:39646;s:7:\"percent\";d:82.99;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20647;s:14:\"optimized_size\";i:7831;s:7:\"percent\";d:62.07;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:150658;s:14:\"optimized_size\";i:51822;s:7:\"percent\";d:65.6;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21528;s:14:\"optimized_size\";i:6120;s:7:\"percent\";d:71.57;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:86769;s:14:\"optimized_size\";i:30094;s:7:\"percent\";d:65.32;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:225602;s:14:\"optimized_size\";i:62574;s:7:\"percent\";d:72.26;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1476424;s:14:\"optimized_size\";i:332583;s:7:\"percent\";d:77.47;}}'),(115070,3126,'_imagify_optimization_level','1'),(115071,3126,'_imagify_status','success'),(115072,3126,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:82468;s:14:\"optimized_size\";i:27388;s:7:\"percent\";d:66.79;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21975;s:14:\"optimized_size\";i:14042;s:7:\"percent\";d:36.1;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20802;s:14:\"optimized_size\";i:14240;s:7:\"percent\";d:31.55;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3228;s:14:\"optimized_size\";i:1906;s:7:\"percent\";d:40.95;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33161;s:14:\"optimized_size\";i:22032;s:7:\"percent\";d:33.56;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4887;s:14:\"optimized_size\";i:3446;s:7:\"percent\";d:29.49;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:82468;s:14:\"optimized_size\";i:37678;s:7:\"percent\";d:54.31;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4887;s:14:\"optimized_size\";i:3249;s:7:\"percent\";d:33.52;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33161;s:14:\"optimized_size\";i:16920;s:7:\"percent\";d:48.98;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3228;s:14:\"optimized_size\";i:1976;s:7:\"percent\";d:38.79;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20802;s:14:\"optimized_size\";i:11578;s:7:\"percent\";d:44.34;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21975;s:14:\"optimized_size\";i:11729;s:7:\"percent\";d:46.63;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:333042;s:14:\"optimized_size\";i:166184;s:7:\"percent\";d:50.1;}}'),(115088,3220,'_edit_lock','1634139619:17'),(115095,3308,'_pinterest_shares','0'),(115096,3308,'_total_shares','0'),(115098,3309,'_pinterest_shares','0'),(115099,3309,'_total_shares','0'),(115101,3310,'_pinterest_shares','0'),(115102,3310,'_total_shares','0'),(115104,3311,'_pinterest_shares','0'),(115105,3311,'_total_shares','0'),(115107,3312,'_pinterest_shares','0'),(115108,3312,'_total_shares','0'),(115110,3313,'_pinterest_shares','0'),(115111,3313,'_total_shares','0'),(115113,3314,'_pinterest_shares','0'),(115114,3314,'_total_shares','0'),(115116,3315,'_pinterest_shares','0'),(115117,3315,'_total_shares','0'),(115119,3316,'_pinterest_shares','0'),(115120,3316,'_total_shares','0'),(115122,3317,'_pinterest_shares','0'),(115123,3317,'_total_shares','0'),(115125,3318,'_pinterest_shares','0'),(115126,3318,'_total_shares','0'),(115128,3319,'_pinterest_shares','0'),(115129,3319,'_total_shares','0'),(115131,3320,'_pinterest_shares','0'),(115132,3320,'_total_shares','0'),(115134,3321,'_pinterest_shares','0'),(115135,3321,'_total_shares','0'),(115137,3322,'_pinterest_shares','0'),(115138,3322,'_total_shares','0'),(115140,3323,'_pinterest_shares','0'),(115141,3323,'_total_shares','0'),(115143,3324,'_pinterest_shares','0'),(115144,3324,'_total_shares','0'),(115146,3325,'_pinterest_shares','0'),(115147,3325,'_total_shares','0'),(115149,3326,'_pinterest_shares','0'),(115150,3326,'_total_shares','0'),(115152,3327,'_pinterest_shares','0'),(115153,3327,'_total_shares','0'),(115155,3328,'_pinterest_shares','0'),(115156,3328,'_total_shares','0'),(115158,3329,'_pinterest_shares','0'),(115159,3329,'_total_shares','0'),(115161,3330,'_pinterest_shares','0'),(115162,3330,'_total_shares','0'),(115164,3331,'_pinterest_shares','0'),(115165,3331,'_total_shares','0'),(115167,3332,'_pinterest_shares','0'),(115168,3332,'_total_shares','0'),(115170,3333,'_pinterest_shares','0'),(115171,3333,'_total_shares','0'),(115173,3334,'_pinterest_shares','0'),(115174,3334,'_total_shares','0'),(115176,3307,'_pinterest_shares','0'),(115177,3307,'_total_shares','0'),(115182,3335,'_wp_page_template','about-us-new.php'),(115183,3335,'top-image','790'),(115184,3335,'_top-image','field_6143a535dfc53'),(115185,3335,'top-mission','Translucent is your partner in data-driven cloud native solutions. We help companies assemble expert cloud native teams on-demand, tailored to project goals. We give companies a competitive edge by building platforms for the cloud, with over ten years of experience in successful large-scale complex project delivery while providing quality, ROI, and innovation in today\'s modern tech environment. '),(115186,3335,'_top-mission','field_6143a535dfca2'),(115187,3335,'idea-text','Creating Digital Transformation technology solutions that work for real people.'),(115188,3335,'_idea-text','field_6143a535dfce9'),(115189,3335,'ready-text','People don’t need to know everything about how digital transformation works. They care that their systems are built for their needs and create consistent results.'),(115190,3335,'_ready-text','field_6143a535dfd67'),(115191,3335,'about-translucent','Translucent takes your technology problems and transforms them to measurable and manageable outcomes.'),(115192,3335,'_about-translucent','field_6143a535dfdb1'),(115193,3335,'phrase','“Customers’ expectations are on the rise. They’re accessing and using multiple data points in real time, and don’t expect to be kept waiting. This affects the performance of systems and software. Adapting means undergoing a complete restructuring of our processes.”'),(115194,3335,'_phrase','field_6143a535dfdfa'),(115195,3335,'author','EUROPEAN RAIL OPERATOR\r\nHEAD OF PLANNING AND PRODUCTION'),(115196,3335,'_author','field_6143a535dfe40'),(115197,3335,'quality-image','659'),(115198,3335,'_quality-image','field_6143a535dfe92'),(115199,3335,'quality-text','We strive to create solutions of the highest Quality while understanding real-world issues of time, budget, and results. We work with you to identify your \"A\" Priorities and give you solutions built for your exact needs.\r\n\r\nWe can build from a vision or start from your existing systems, evolving your company through the next industrial revolution, the Digital Transformation Evolution.'),(115200,3335,'_quality-text','field_6143a535dfed9'),(115201,3335,'inovation-image','660'),(115202,3335,'_inovation-image','field_6143a535dff2d'),(115203,3335,'inovation-text','We are here to serve our clients, understanding their needs and where we can provide insight based on the best, most stable, forward-moving technologies available. True Innovation.\r\n\r\nOnce we understand your vision and goals, we\'ll work with you to make you competitive now, and together we will build your future.'),(115204,3335,'_inovation-text','field_6143a535dff6f'),(115205,3335,'value-image','661'),(115206,3335,'_value-image','field_6143a535dffb1'),(115207,3335,'value-text','Translucent was built upon creating relationships that became trusted partnerships.\r\nIt starts with having a good conversation, seeing what Value we can provide.\r\n\r\nWe are your Digital\r\nTransformation Partner.'),(115208,3335,'_value-text','field_6143a535dfff1'),(115209,3335,'trusted_0_logo','793'),(115210,3335,'_trusted_0_logo','field_6143a538ef7d3'),(115211,3335,'trusted_1_logo','794'),(115212,3335,'_trusted_1_logo','field_6143a538ef7d3'),(115213,3335,'trusted_2_logo','795'),(115214,3335,'_trusted_2_logo','field_6143a538ef7d3'),(115215,3335,'trusted_3_logo','796'),(115216,3335,'_trusted_3_logo','field_6143a538ef7d3'),(115217,3335,'trusted_4_logo','797'),(115218,3335,'_trusted_4_logo','field_6143a538ef7d3'),(115219,3335,'trusted_5_logo','798'),(115220,3335,'_trusted_5_logo','field_6143a538ef7d3'),(115221,3335,'trusted_6_logo','799'),(115222,3335,'_trusted_6_logo','field_6143a538ef7d3'),(115223,3335,'trusted_7_logo','800'),(115224,3335,'_trusted_7_logo','field_6143a538ef7d3'),(115225,3335,'trusted_8_logo','801'),(115226,3335,'_trusted_8_logo','field_6143a538ef7d3'),(115227,3335,'trusted_9_logo','802'),(115228,3335,'_trusted_9_logo','field_6143a538ef7d3'),(115229,3335,'trusted','10'),(115230,3335,'_trusted','field_6143a535e0032'),(115231,3335,'_yoast_wpseo_focuskw','digital transformation'),(115232,3335,'_yoast_wpseo_title','About Translucent | Your Data-Driven Digital Transformation Team'),(115233,3335,'_yoast_wpseo_metadesc','Translucent provides custom solutions for your complex technical issues, without the technical jargon. We transform your technology problems into results.'),(115234,3335,'_yoast_wpseo_linkdex','19'),(115236,3335,'_yoast_wpseo_focuskeywords','[]'),(115237,3335,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(115238,3335,'_facebook_shares','0'),(115239,3335,'_twitter_shares','0'),(115240,3335,'_linkedin_shares','0'),(115241,3335,'hefo_before','0'),(115242,3335,'hefo_after','0'),(115243,3335,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(115244,3335,'_yoast_wpseo_estimated-reading-time-minutes',''),(115245,3335,'_yoast_wpseo_schema_page_type','AboutPage'),(115249,3335,'_dp_original','10'),(115250,3335,'_edit_lock','1652418888:17'),(115251,3335,'_edit_last','17'),(115252,3335,'title-about','About Us'),(115253,3335,'_title-about','field_6143a576598b8'),(115254,3335,'button-call',''),(115255,3335,'_button-call','field_6143a7ff974b4'),(115256,3335,'circle-1','Quality'),(115257,3335,'_circle-1','field_6143aa38565c3'),(115258,3335,'circle-2','Innovation'),(115259,3335,'_circle-2','field_6143aa58565c4'),(115260,3335,'circle-3','Value'),(115261,3335,'_circle-3','field_6143aa67565c5'),(115262,3335,'button-call-2','Our Idea'),(115263,3335,'_button-call-2','field_6143a994eea5f'),(115264,3335,'section-text','

Ready to be
Transformed!

'),(115265,3335,'_section-text','field_6143b4a0dd081'),(115266,3335,'circle-4','Quality'),(115267,3335,'_circle-4','field_6143abcb19fdc'),(115268,3335,'circle-5','Innovation'),(115269,3335,'_circle-5','field_6143abdc19fdd'),(115270,3335,'circle-6','Value'),(115271,3335,'_circle-6','field_6143abea19fde'),(115272,3335,'phrase-1','The Digital Transformation
is the new Industrial Revolution.'),(115273,3335,'_phrase-1','field_6143b242ba7b9'),(115274,3335,'phrase-2','We Are Your Onshore Partner
in Cloud Native Technology'),(115275,3335,'_phrase-2','field_6143b1974f197'),(115276,3337,'top-image','790'),(115277,3337,'_top-image','field_6143a535dfc53'),(115278,3337,'top-mission','Simplifying complex technical issues, with solutions you need, in a language you can understand.'),(115279,3337,'_top-mission','field_6143a535dfca2'),(115280,3337,'idea-text','Creating Digital Transformation technology solutions that work for real people.'),(115281,3337,'_idea-text','field_6143a535dfce9'),(115282,3337,'ready-text','People don’t need to know everything about how digital transformation works. They care that their systems are built for their needs and create consistent results.'),(115283,3337,'_ready-text','field_6143a535dfd67'),(115284,3337,'about-translucent','Translucent takes your technology problems and transforms them to measurable and manageable outcomes.'),(115285,3337,'_about-translucent','field_6143a535dfdb1'),(115286,3337,'phrase','“Customers’ expectations are on the rise. They’re accessing and using multiple data points in real time, and don’t expect to be kept waiting. This affects the performance of systems and software. Adapting means undergoing a complete restructuring of our processes.”'),(115287,3337,'_phrase','field_6143a535dfdfa'),(115288,3337,'author','EUROPEAN RAIL OPERATOR\r\nHEAD OF PLANNING AND PRODUCTION'),(115289,3337,'_author','field_6143a535dfe40'),(115290,3337,'quality-image','659'),(115291,3337,'_quality-image','field_6143a535dfe92'),(115292,3337,'quality-text','We strive to create solutions of the highest Quality while understanding real-world issues of time, budget, and results. We work with you to identify your \"A\" Priorities and give you solutions built for your exact needs.\r\n\r\nWe can build from a vision or start from your existing systems, evolving your company through the next industrial revolution, the Digital Transformation Evolution.'),(115293,3337,'_quality-text','field_6143a535dfed9'),(115294,3337,'inovation-image','660'),(115295,3337,'_inovation-image','field_6143a535dff2d'),(115296,3337,'inovation-text','We are here to serve our clients, understanding their needs and where we can provide insight based on the best, most stable, forward-moving technologies available. True Innovation.\r\n\r\nOnce we understand your vision and goals, we\'ll work with you to make you competitive now, and together we will build your future.'),(115297,3337,'_inovation-text','field_6143a535dff6f'),(115298,3337,'value-image','661'),(115299,3337,'_value-image','field_6143a535dffb1'),(115300,3337,'value-text','Translucent was built upon creating relationships that became trusted partnerships.\r\nIt starts with having a good conversation, seeing what Value we can provide.\r\n\r\nWe are your Digital\r\nTransformation Partner.'),(115301,3337,'_value-text','field_6143a535dfff1'),(115302,3337,'trusted_0_logo','793'),(115303,3337,'_trusted_0_logo','field_6143a538ef7d3'),(115304,3337,'trusted_1_logo','794'),(115305,3337,'_trusted_1_logo','field_6143a538ef7d3'),(115306,3337,'trusted_2_logo','795'),(115307,3337,'_trusted_2_logo','field_6143a538ef7d3'),(115308,3337,'trusted_3_logo','796'),(115309,3337,'_trusted_3_logo','field_6143a538ef7d3'),(115310,3337,'trusted_4_logo','797'),(115311,3337,'_trusted_4_logo','field_6143a538ef7d3'),(115312,3337,'trusted_5_logo','798'),(115313,3337,'_trusted_5_logo','field_6143a538ef7d3'),(115314,3337,'trusted_6_logo','799'),(115315,3337,'_trusted_6_logo','field_6143a538ef7d3'),(115316,3337,'trusted_7_logo','800'),(115317,3337,'_trusted_7_logo','field_6143a538ef7d3'),(115318,3337,'trusted_8_logo','801'),(115319,3337,'_trusted_8_logo','field_6143a538ef7d3'),(115320,3337,'trusted_9_logo','802'),(115321,3337,'_trusted_9_logo','field_6143a538ef7d3'),(115322,3337,'trusted','10'),(115323,3337,'_trusted','field_6143a535e0032'),(115324,3337,'title-about','About Us'),(115325,3337,'_title-about','field_6143a576598b8'),(115326,3337,'button-call','Our Mission'),(115327,3337,'_button-call','field_6143a7ff974b4'),(115328,3337,'circle-1','Quality'),(115329,3337,'_circle-1','field_6143aa38565c3'),(115330,3337,'circle-2','Innovation'),(115331,3337,'_circle-2','field_6143aa58565c4'),(115332,3337,'circle-3','Value'),(115333,3337,'_circle-3','field_6143aa67565c5'),(115334,3337,'button-call-2','Our Idea'),(115335,3337,'_button-call-2','field_6143a994eea5f'),(115336,3337,'section-text','

Ready to be
Transformed!

'),(115337,3337,'_section-text','field_6143b4a0dd081'),(115338,3337,'circle-4','Quality'),(115339,3337,'_circle-4','field_6143abcb19fdc'),(115340,3337,'circle-5','Innovation'),(115341,3337,'_circle-5','field_6143abdc19fdd'),(115342,3337,'circle-6','Value'),(115343,3337,'_circle-6','field_6143abea19fde'),(115344,3337,'phrase-1','The Digital Transformation
is the new Industrial Revolution.'),(115345,3337,'_phrase-1','field_6143b242ba7b9'),(115346,3337,'phrase-2','Is your company
still using hand tools?'),(115347,3337,'_phrase-2','field_6143b1974f197'),(115348,3338,'top-image','790'),(115349,3338,'_top-image','field_6143a535dfc53'),(115350,3338,'top-mission','Simplifying complex technical issues, with solutions you need, in a language you can understand.'),(115351,3338,'_top-mission','field_6143a535dfca2'),(115352,3338,'idea-text','Creating Digital Transformation technology solutions that work for real people.'),(115353,3338,'_idea-text','field_6143a535dfce9'),(115354,3338,'ready-text','People don’t need to know everything about how digital transformation works. They care that their systems are built for their needs and create consistent results.'),(115355,3338,'_ready-text','field_6143a535dfd67'),(115356,3338,'about-translucent','Translucent takes your technology problems and transforms them to measurable and manageable outcomes.'),(115357,3338,'_about-translucent','field_6143a535dfdb1'),(115358,3338,'phrase','“Customers’ expectations are on the rise. They’re accessing and using multiple data points in real time, and don’t expect to be kept waiting. This affects the performance of systems and software. Adapting means undergoing a complete restructuring of our processes.”'),(115359,3338,'_phrase','field_6143a535dfdfa'),(115360,3338,'author','EUROPEAN RAIL OPERATOR\r\nHEAD OF PLANNING AND PRODUCTION'),(115361,3338,'_author','field_6143a535dfe40'),(115362,3338,'quality-image','659'),(115363,3338,'_quality-image','field_6143a535dfe92'),(115364,3338,'quality-text','We strive to create solutions of the highest Quality while understanding real-world issues of time, budget, and results. We work with you to identify your \"A\" Priorities and give you solutions built for your exact needs.\r\n\r\nWe can build from a vision or start from your existing systems, evolving your company through the next industrial revolution, the Digital Transformation Evolution.'),(115365,3338,'_quality-text','field_6143a535dfed9'),(115366,3338,'inovation-image','660'),(115367,3338,'_inovation-image','field_6143a535dff2d'),(115368,3338,'inovation-text','We are here to serve our clients, understanding their needs and where we can provide insight based on the best, most stable, forward-moving technologies available. True Innovation.\r\n\r\nOnce we understand your vision and goals, we\'ll work with you to make you competitive now, and together we will build your future.'),(115369,3338,'_inovation-text','field_6143a535dff6f'),(115370,3338,'value-image','661'),(115371,3338,'_value-image','field_6143a535dffb1'),(115372,3338,'value-text','Translucent was built upon creating relationships that became trusted partnerships.\r\nIt starts with having a good conversation, seeing what Value we can provide.\r\n\r\nWe are your Digital\r\nTransformation Partner.'),(115373,3338,'_value-text','field_6143a535dfff1'),(115374,3338,'trusted_0_logo','793'),(115375,3338,'_trusted_0_logo','field_6143a538ef7d3'),(115376,3338,'trusted_1_logo','794'),(115377,3338,'_trusted_1_logo','field_6143a538ef7d3'),(115378,3338,'trusted_2_logo','795'),(115379,3338,'_trusted_2_logo','field_6143a538ef7d3'),(115380,3338,'trusted_3_logo','796'),(115381,3338,'_trusted_3_logo','field_6143a538ef7d3'),(115382,3338,'trusted_4_logo','797'),(115383,3338,'_trusted_4_logo','field_6143a538ef7d3'),(115384,3338,'trusted_5_logo','798'),(115385,3338,'_trusted_5_logo','field_6143a538ef7d3'),(115386,3338,'trusted_6_logo','799'),(115387,3338,'_trusted_6_logo','field_6143a538ef7d3'),(115388,3338,'trusted_7_logo','800'),(115389,3338,'_trusted_7_logo','field_6143a538ef7d3'),(115390,3338,'trusted_8_logo','801'),(115391,3338,'_trusted_8_logo','field_6143a538ef7d3'),(115392,3338,'trusted_9_logo','802'),(115393,3338,'_trusted_9_logo','field_6143a538ef7d3'),(115394,3338,'trusted','10'),(115395,3338,'_trusted','field_6143a535e0032'),(115396,3338,'title-about','About Us'),(115397,3338,'_title-about','field_6143a576598b8'),(115398,3338,'button-call','Our Mission'),(115399,3338,'_button-call','field_6143a7ff974b4'),(115400,3338,'circle-1','Quality'),(115401,3338,'_circle-1','field_6143aa38565c3'),(115402,3338,'circle-2','Innovation'),(115403,3338,'_circle-2','field_6143aa58565c4'),(115404,3338,'circle-3','Value'),(115405,3338,'_circle-3','field_6143aa67565c5'),(115406,3338,'button-call-2','Our Idea'),(115407,3338,'_button-call-2','field_6143a994eea5f'),(115408,3338,'section-text','

Ready to be
Transformed!

'),(115409,3338,'_section-text','field_6143b4a0dd081'),(115410,3338,'circle-4','Quality'),(115411,3338,'_circle-4','field_6143abcb19fdc'),(115412,3338,'circle-5','Innovation'),(115413,3338,'_circle-5','field_6143abdc19fdd'),(115414,3338,'circle-6','Value'),(115415,3338,'_circle-6','field_6143abea19fde'),(115416,3338,'phrase-1','The Digital Transformation
is the new Industrial Revolution.'),(115417,3338,'_phrase-1','field_6143b242ba7b9'),(115418,3338,'phrase-2','Is your company
still using hand tools?'),(115419,3338,'_phrase-2','field_6143b1974f197'),(115420,3339,'top-image','790'),(115421,3339,'_top-image','field_6143a535dfc53'),(115422,3339,'top-mission','Simplifying complex technical issues, with solutions you need, in a language you can understand.'),(115423,3339,'_top-mission','field_6143a535dfca2'),(115424,3339,'idea-text','Creating Digital Transformation technology solutions that work for real people.'),(115425,3339,'_idea-text','field_6143a535dfce9'),(115426,3339,'ready-text','People don’t need to know everything about how digital transformation works. They care that their systems are built for their needs and create consistent results.'),(115427,3339,'_ready-text','field_6143a535dfd67'),(115428,3339,'about-translucent','Translucent takes your technology problems and transforms them to measurable and manageable outcomes.'),(115429,3339,'_about-translucent','field_6143a535dfdb1'),(115430,3339,'phrase','“Customers’ expectations are on the rise. They’re accessing and using multiple data points in real time, and don’t expect to be kept waiting. This affects the performance of systems and software. Adapting means undergoing a complete restructuring of our processes.”'),(115431,3339,'_phrase','field_6143a535dfdfa'),(115432,3339,'author','EUROPEAN RAIL OPERATOR\r\nHEAD OF PLANNING AND PRODUCTION'),(115433,3339,'_author','field_6143a535dfe40'),(115434,3339,'quality-image','659'),(115435,3339,'_quality-image','field_6143a535dfe92'),(115436,3339,'quality-text','We strive to create solutions of the highest Quality while understanding real-world issues of time, budget, and results. We work with you to identify your \"A\" Priorities and give you solutions built for your exact needs.\r\n\r\nWe can build from a vision or start from your existing systems, evolving your company through the next industrial revolution, the Digital Transformation Evolution.'),(115437,3339,'_quality-text','field_6143a535dfed9'),(115438,3339,'inovation-image','660'),(115439,3339,'_inovation-image','field_6143a535dff2d'),(115440,3339,'inovation-text','We are here to serve our clients, understanding their needs and where we can provide insight based on the best, most stable, forward-moving technologies available. True Innovation.\r\n\r\nOnce we understand your vision and goals, we\'ll work with you to make you competitive now, and together we will build your future.'),(115441,3339,'_inovation-text','field_6143a535dff6f'),(115442,3339,'value-image','661'),(115443,3339,'_value-image','field_6143a535dffb1'),(115444,3339,'value-text','Translucent was built upon creating relationships that became trusted partnerships.\r\nIt starts with having a good conversation, seeing what Value we can provide.\r\n\r\nWe are your Digital\r\nTransformation Partner.'),(115445,3339,'_value-text','field_6143a535dfff1'),(115446,3339,'trusted_0_logo','793'),(115447,3339,'_trusted_0_logo','field_6143a538ef7d3'),(115448,3339,'trusted_1_logo','794'),(115449,3339,'_trusted_1_logo','field_6143a538ef7d3'),(115450,3339,'trusted_2_logo','795'),(115451,3339,'_trusted_2_logo','field_6143a538ef7d3'),(115452,3339,'trusted_3_logo','796'),(115453,3339,'_trusted_3_logo','field_6143a538ef7d3'),(115454,3339,'trusted_4_logo','797'),(115455,3339,'_trusted_4_logo','field_6143a538ef7d3'),(115456,3339,'trusted_5_logo','798'),(115457,3339,'_trusted_5_logo','field_6143a538ef7d3'),(115458,3339,'trusted_6_logo','799'),(115459,3339,'_trusted_6_logo','field_6143a538ef7d3'),(115460,3339,'trusted_7_logo','800'),(115461,3339,'_trusted_7_logo','field_6143a538ef7d3'),(115462,3339,'trusted_8_logo','801'),(115463,3339,'_trusted_8_logo','field_6143a538ef7d3'),(115464,3339,'trusted_9_logo','802'),(115465,3339,'_trusted_9_logo','field_6143a538ef7d3'),(115466,3339,'trusted','10'),(115467,3339,'_trusted','field_6143a535e0032'),(115468,3339,'title-about','About Us'),(115469,3339,'_title-about','field_6143a576598b8'),(115470,3339,'button-call','Our Mission'),(115471,3339,'_button-call','field_6143a7ff974b4'),(115472,3339,'circle-1','Quality'),(115473,3339,'_circle-1','field_6143aa38565c3'),(115474,3339,'circle-2','Innovation'),(115475,3339,'_circle-2','field_6143aa58565c4'),(115476,3339,'circle-3','Value'),(115477,3339,'_circle-3','field_6143aa67565c5'),(115478,3339,'button-call-2','Our Idea'),(115479,3339,'_button-call-2','field_6143a994eea5f'),(115480,3339,'section-text','

Ready to be
Transformed!

'),(115481,3339,'_section-text','field_6143b4a0dd081'),(115482,3339,'circle-4','Quality'),(115483,3339,'_circle-4','field_6143abcb19fdc'),(115484,3339,'circle-5','Innovation'),(115485,3339,'_circle-5','field_6143abdc19fdd'),(115486,3339,'circle-6','Value'),(115487,3339,'_circle-6','field_6143abea19fde'),(115488,3339,'phrase-1','The Digital Transformation
is the new Industrial Revolution.'),(115489,3339,'_phrase-1','field_6143b242ba7b9'),(115490,3339,'phrase-2','Is your company
still using hand tools?'),(115491,3339,'_phrase-2','field_6143b1974f197'),(115513,3340,'_menu_item_type','post_type'),(115514,3340,'_menu_item_menu_item_parent','0'),(115515,3340,'_menu_item_object_id','3335'),(115516,3340,'_menu_item_object','page'),(115517,3340,'_menu_item_target',''),(115518,3340,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(115519,3340,'_menu_item_xfn',''),(115520,3340,'_menu_item_url',''),(115578,3341,'_menu_item_type','post_type'),(115579,3341,'_menu_item_menu_item_parent','2239'),(115580,3341,'_menu_item_object_id','3335'),(115581,3341,'_menu_item_object','page'),(115582,3341,'_menu_item_target',''),(115583,3341,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(115584,3341,'_menu_item_xfn',''),(115585,3341,'_menu_item_url',''),(115798,859,'_pinterest_shares','0'),(115800,859,'_total_shares','0'),(115803,859,'_menu_sgpb_popup_id','0'),(115809,831,'_pinterest_shares','0'),(115810,831,'_total_shares','0'),(115815,831,'_menu_sgpb_popup_id','0'),(115817,834,'_pinterest_shares','0'),(115819,834,'_total_shares','0'),(115827,834,'_menu_sgpb_popup_id','0'),(115829,833,'_pinterest_shares','0'),(115831,833,'_total_shares','0'),(115837,833,'_menu_sgpb_popup_id','0'),(115840,832,'_pinterest_shares','0'),(115841,832,'_total_shares','0'),(115849,832,'_menu_sgpb_popup_id','0'),(115852,2213,'_pinterest_shares','0'),(115853,2213,'_total_shares','0'),(115858,2213,'_menu_sgpb_popup_id','0'),(115862,1883,'_pinterest_shares','0'),(115864,1883,'_total_shares','0'),(115867,1883,'_menu_sgpb_popup_id','0'),(115871,62,'_pinterest_shares','0'),(115872,62,'_total_shares','0'),(115875,62,'_menu_sgpb_popup_id','0'),(115876,42,'_pinterest_shares','0'),(115877,42,'_total_shares','0'),(115879,42,'_menu_sgpb_popup_id','0'),(115880,43,'_pinterest_shares','0'),(115881,43,'_total_shares','0'),(115883,43,'_menu_sgpb_popup_id','0'),(115884,811,'_pinterest_shares','0'),(115885,811,'_total_shares','0'),(115887,811,'_menu_sgpb_popup_id','0'),(115888,3340,'_pinterest_shares','0'),(115889,3340,'_total_shares','0'),(115891,3340,'_menu_sgpb_popup_id','0'),(115892,928,'_pinterest_shares','0'),(115893,928,'_total_shares','0'),(115895,928,'_menu_sgpb_popup_id','0'),(115896,59,'_pinterest_shares','0'),(115897,59,'_total_shares','0'),(115899,59,'_menu_sgpb_popup_id','0'),(115900,3335,'_yoast_post_redirect_info','a:4:{s:6:\"origin\";s:10:\"about-us-2\";s:6:\"target\";s:8:\"about-us\";s:4:\"type\";i:301;s:6:\"format\";s:5:\"plain\";}'),(116514,3347,'_pinterest_shares','0'),(116515,3347,'_total_shares','0'),(116517,3348,'_pinterest_shares','0'),(116518,3348,'_total_shares','0'),(116520,3349,'_pinterest_shares','0'),(116521,3349,'_total_shares','0'),(116523,3350,'_pinterest_shares','0'),(116524,3350,'_total_shares','0'),(116526,3351,'_pinterest_shares','0'),(116527,3351,'_total_shares','0'),(116529,3352,'_pinterest_shares','0'),(116530,3352,'_total_shares','0'),(116532,3353,'_pinterest_shares','0'),(116533,3353,'_total_shares','0'),(116535,3354,'_pinterest_shares','0'),(116536,3354,'_total_shares','0'),(116538,3355,'_pinterest_shares','0'),(116539,3355,'_total_shares','0'),(116541,3356,'_pinterest_shares','0'),(116542,3356,'_total_shares','0'),(116544,3357,'_pinterest_shares','0'),(116545,3357,'_total_shares','0'),(116547,3358,'_pinterest_shares','0'),(116548,3358,'_total_shares','0'),(116550,3359,'_pinterest_shares','0'),(116551,3359,'_total_shares','0'),(116553,3360,'_pinterest_shares','0'),(116554,3360,'_total_shares','0'),(116559,3362,'_pinterest_shares','0'),(116560,3362,'_total_shares','0'),(116562,3363,'_pinterest_shares','0'),(116563,3363,'_total_shares','0'),(116568,3365,'_pinterest_shares','0'),(116569,3365,'_total_shares','0'),(116571,3366,'_pinterest_shares','0'),(116572,3366,'_total_shares','0'),(116574,3367,'_pinterest_shares','0'),(116575,3367,'_total_shares','0'),(116577,3368,'_pinterest_shares','0'),(116578,3368,'_total_shares','0'),(116580,3369,'_pinterest_shares','0'),(116581,3369,'_total_shares','0'),(116583,3370,'_pinterest_shares','0'),(116584,3370,'_total_shares','0'),(116586,3371,'_pinterest_shares','0'),(116587,3371,'_total_shares','0'),(116593,3372,'hefo_before','0'),(116594,3372,'hefo_after','0'),(116595,3372,'_yoast_wpseo_focuskeywords','[{\"keyword\":\"Cloud Native Data Driven Applications\",\"score\":\"bad\"}]'),(116596,3372,'_yoast_wpseo_keywordsynonyms','[\"Modern application development\",\"\"]'),(116597,3372,'_wp_page_template','cloud-native-applications.php'),(116598,3372,'_yoast_wpseo_title','Cloud Native Application Development | Translucent'),(116599,3372,'_yoast_wpseo_focuskw','Cloud Native Application Development'),(116600,3372,'_yoast_wpseo_metadesc','A cloud native experience that mirrors what makes you successful in the physical world. Modern app development with Build, Rebuild, and Replatform strategy.'),(116601,3372,'_yoast_wpseo_linkdex','36'),(116602,3372,'_thumbnail_id','2933'),(116603,3372,'_yoast_wpseo_content_score','60'),(116604,3372,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(116605,3372,'_yoast_wpseo_estimated-reading-time-minutes',''),(116609,3372,'_dp_original','2884'),(116610,3372,'_edit_lock','1656419945:20'),(116611,3372,'_edit_last','4'),(116612,3372,'top-banner','3080'),(116613,3372,'_top-banner','field_615ea94aa14ad'),(116614,3372,'top-title','Cloud Native Applications'),(116615,3372,'_top-title','field_615ea986a14ae'),(116616,3372,'purple-icon-sq','2934'),(116617,3372,'_purple-icon-sq','field_615eb6e1990d3'),(116618,3372,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(116619,3372,'_phrase-1','field_615ec3e936adb'),(116620,3372,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(116621,3372,'_phrase-2','field_615ec4b052c68'),(116622,3372,'purple-icon-b','2935'),(116623,3372,'_purple-icon-b','field_615ec54f0247b'),(116624,3372,'phrase-icon','Building new applications'),(116625,3372,'_phrase-icon','field_615ec5eb0499b'),(116626,3372,'phrase-i-subtitle','What is Building?'),(116627,3372,'_phrase-i-subtitle','field_615ec6aaadf65'),(116628,3372,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(116629,3372,'_text-i-sec','field_615ec761c96fb'),(116630,3372,'purple-quote-img','2936'),(116631,3372,'_purple-quote-img','field_615eca8c68d41'),(116632,3372,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(116633,3372,'_phrase-slider-1','field_615ed12966bce'),(116634,3372,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(116635,3372,'_text-slider-1','field_615ed1ea36c7c'),(116636,3372,'rb-icon-slider','2938'),(116637,3372,'_rb-icon-slider','field_615ed3500b12c'),(116638,3372,'phrase-rb','What is Rebuilding?'),(116639,3372,'_phrase-rb','field_615f0f2dc37ac'),(116640,3372,'link-rb','#rb'),(116641,3372,'_link-rb','field_615f10dc69c6c'),(116642,3372,'rp-icon-slider','2893'),(116643,3372,'_rp-icon-slider','field_615ed383c1a5e'),(116644,3372,'phrase-rp','What is Replatforming?'),(116645,3372,'_phrase-rp','field_615f0f63c37ad'),(116646,3372,'link-rp','#rp'),(116647,3372,'_link-rp','field_615f1218b6ffd'),(116648,3372,'img-slider-1','2940'),(116649,3372,'_img-slider-1','field_615f13c3c0cf3'),(116650,3372,'title-slide-rb','What is Rebuilding?'),(116651,3372,'_title-slide-rb','field_615f2512c338c'),(116652,3372,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(116653,3372,'_text-slide-rb','field_615f24e2c338b'),(116654,3372,'img-slider-2','2939'),(116655,3372,'_img-slider-2','field_615f2539c338d'),(116656,3372,'title-slide-rp','What is Replatforming?'),(116657,3372,'_title-slide-rp','field_615f27d9335b6'),(116658,3372,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(116659,3372,'_text-slide-rp','field_615f27ee335b7'),(116660,3372,'img-slider-3','2940'),(116661,3372,'_img-slider-3','field_615f27ff335b8'),(116662,3373,'top-banner',''),(116663,3373,'_top-banner','field_615ea94aa14ad'),(116664,3373,'top-title',''),(116665,3373,'_top-title','field_615ea986a14ae'),(116666,3373,'purple-icon-sq',''),(116667,3373,'_purple-icon-sq','field_615eb6e1990d3'),(116668,3373,'phrase-1',''),(116669,3373,'_phrase-1','field_615ec3e936adb'),(116670,3373,'phrase-2',''),(116671,3373,'_phrase-2','field_615ec4b052c68'),(116672,3373,'purple-icon-b',''),(116673,3373,'_purple-icon-b','field_615ec54f0247b'),(116674,3373,'phrase-icon',''),(116675,3373,'_phrase-icon','field_615ec5eb0499b'),(116676,3373,'phrase-i-subtitle',''),(116677,3373,'_phrase-i-subtitle','field_615ec6aaadf65'),(116678,3373,'text-i-sec',''),(116679,3373,'_text-i-sec','field_615ec761c96fb'),(116680,3373,'purple-quote-img',''),(116681,3373,'_purple-quote-img','field_615eca8c68d41'),(116682,3373,'phrase-slider-1',''),(116683,3373,'_phrase-slider-1','field_615ed12966bce'),(116684,3373,'text-slider-1',''),(116685,3373,'_text-slider-1','field_615ed1ea36c7c'),(116686,3373,'rb-icon-slider',''),(116687,3373,'_rb-icon-slider','field_615ed3500b12c'),(116688,3373,'phrase-rb',''),(116689,3373,'_phrase-rb','field_615f0f2dc37ac'),(116690,3373,'link-rb',''),(116691,3373,'_link-rb','field_615f10dc69c6c'),(116692,3373,'rp-icon-slider',''),(116693,3373,'_rp-icon-slider','field_615ed383c1a5e'),(116694,3373,'phrase-rp',''),(116695,3373,'_phrase-rp','field_615f0f63c37ad'),(116696,3373,'link-rp',''),(116697,3373,'_link-rp','field_615f1218b6ffd'),(116698,3373,'img-slider-1',''),(116699,3373,'_img-slider-1','field_615f13c3c0cf3'),(116700,3373,'title-slide-rb',''),(116701,3373,'_title-slide-rb','field_615f2512c338c'),(116702,3373,'text-slide-rb',''),(116703,3373,'_text-slide-rb','field_615f24e2c338b'),(116704,3373,'img-slider-2',''),(116705,3373,'_img-slider-2','field_615f2539c338d'),(116706,3373,'title-slide-rp',''),(116707,3373,'_title-slide-rp','field_615f27d9335b6'),(116708,3373,'text-slide-rp',''),(116709,3373,'_text-slide-rp','field_615f27ee335b7'),(116710,3373,'img-slider-3',''),(116711,3373,'_img-slider-3','field_615f27ff335b8'),(116712,3374,'top-banner',''),(116713,3374,'_top-banner','field_615ea94aa14ad'),(116714,3374,'top-title','Cloud Native Applications'),(116715,3374,'_top-title','field_615ea986a14ae'),(116716,3374,'purple-icon-sq','2934'),(116717,3374,'_purple-icon-sq','field_615eb6e1990d3'),(116718,3374,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(116719,3374,'_phrase-1','field_615ec3e936adb'),(116720,3374,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(116721,3374,'_phrase-2','field_615ec4b052c68'),(116722,3374,'purple-icon-b','2935'),(116723,3374,'_purple-icon-b','field_615ec54f0247b'),(116724,3374,'phrase-icon','Building new applications'),(116725,3374,'_phrase-icon','field_615ec5eb0499b'),(116726,3374,'phrase-i-subtitle','What is Building?'),(116727,3374,'_phrase-i-subtitle','field_615ec6aaadf65'),(116728,3374,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(116729,3374,'_text-i-sec','field_615ec761c96fb'),(116730,3374,'purple-quote-img','2936'),(116731,3374,'_purple-quote-img','field_615eca8c68d41'),(116732,3374,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(116733,3374,'_phrase-slider-1','field_615ed12966bce'),(116734,3374,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(116735,3374,'_text-slider-1','field_615ed1ea36c7c'),(116736,3374,'rb-icon-slider','2938'),(116737,3374,'_rb-icon-slider','field_615ed3500b12c'),(116738,3374,'phrase-rb','What is Rebuilding?'),(116739,3374,'_phrase-rb','field_615f0f2dc37ac'),(116740,3374,'link-rb','#rb'),(116741,3374,'_link-rb','field_615f10dc69c6c'),(116742,3374,'rp-icon-slider',''),(116743,3374,'_rp-icon-slider','field_615ed383c1a5e'),(116744,3374,'phrase-rp','What is Replatforming?'),(116745,3374,'_phrase-rp','field_615f0f63c37ad'),(116746,3374,'link-rp','#rp'),(116747,3374,'_link-rp','field_615f1218b6ffd'),(116748,3374,'img-slider-1','2940'),(116749,3374,'_img-slider-1','field_615f13c3c0cf3'),(116750,3374,'title-slide-rb','What is Rebuilding?'),(116751,3374,'_title-slide-rb','field_615f2512c338c'),(116752,3374,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(116753,3374,'_text-slide-rb','field_615f24e2c338b'),(116754,3374,'img-slider-2','2939'),(116755,3374,'_img-slider-2','field_615f2539c338d'),(116756,3374,'title-slide-rp','What is Replatforming?'),(116757,3374,'_title-slide-rp','field_615f27d9335b6'),(116758,3374,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(116759,3374,'_text-slide-rp','field_615f27ee335b7'),(116760,3374,'img-slider-3','2940'),(116761,3374,'_img-slider-3','field_615f27ff335b8'),(116762,3375,'top-banner',''),(116763,3375,'_top-banner','field_615ea94aa14ad'),(116764,3375,'top-title','Cloud Native Applications'),(116765,3375,'_top-title','field_615ea986a14ae'),(116766,3375,'purple-icon-sq','2934'),(116767,3375,'_purple-icon-sq','field_615eb6e1990d3'),(116768,3375,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(116769,3375,'_phrase-1','field_615ec3e936adb'),(116770,3375,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(116771,3375,'_phrase-2','field_615ec4b052c68'),(116772,3375,'purple-icon-b','2935'),(116773,3375,'_purple-icon-b','field_615ec54f0247b'),(116774,3375,'phrase-icon','Building new applications'),(116775,3375,'_phrase-icon','field_615ec5eb0499b'),(116776,3375,'phrase-i-subtitle','What is Building?'),(116777,3375,'_phrase-i-subtitle','field_615ec6aaadf65'),(116778,3375,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(116779,3375,'_text-i-sec','field_615ec761c96fb'),(116780,3375,'purple-quote-img','2936'),(116781,3375,'_purple-quote-img','field_615eca8c68d41'),(116782,3375,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(116783,3375,'_phrase-slider-1','field_615ed12966bce'),(116784,3375,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(116785,3375,'_text-slider-1','field_615ed1ea36c7c'),(116786,3375,'rb-icon-slider','2938'),(116787,3375,'_rb-icon-slider','field_615ed3500b12c'),(116788,3375,'phrase-rb','What is Rebuilding?'),(116789,3375,'_phrase-rb','field_615f0f2dc37ac'),(116790,3375,'link-rb','#rb'),(116791,3375,'_link-rb','field_615f10dc69c6c'),(116792,3375,'rp-icon-slider',''),(116793,3375,'_rp-icon-slider','field_615ed383c1a5e'),(116794,3375,'phrase-rp','What is Replatforming?'),(116795,3375,'_phrase-rp','field_615f0f63c37ad'),(116796,3375,'link-rp','#rp'),(116797,3375,'_link-rp','field_615f1218b6ffd'),(116798,3375,'img-slider-1','2940'),(116799,3375,'_img-slider-1','field_615f13c3c0cf3'),(116800,3375,'title-slide-rb','What is Rebuilding?'),(116801,3375,'_title-slide-rb','field_615f2512c338c'),(116802,3375,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(116803,3375,'_text-slide-rb','field_615f24e2c338b'),(116804,3375,'img-slider-2','2939'),(116805,3375,'_img-slider-2','field_615f2539c338d'),(116806,3375,'title-slide-rp','What is Replatforming?'),(116807,3375,'_title-slide-rp','field_615f27d9335b6'),(116808,3375,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(116809,3375,'_text-slide-rp','field_615f27ee335b7'),(116810,3375,'img-slider-3','2940'),(116811,3375,'_img-slider-3','field_615f27ff335b8'),(116812,3376,'top-banner','3080'),(116813,3376,'_top-banner','field_615ea94aa14ad'),(116814,3376,'top-title','Cloud Native Applications'),(116815,3376,'_top-title','field_615ea986a14ae'),(116816,3376,'purple-icon-sq','2934'),(116817,3376,'_purple-icon-sq','field_615eb6e1990d3'),(116818,3376,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(116819,3376,'_phrase-1','field_615ec3e936adb'),(116820,3376,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(116821,3376,'_phrase-2','field_615ec4b052c68'),(116822,3376,'purple-icon-b','2935'),(116823,3376,'_purple-icon-b','field_615ec54f0247b'),(116824,3376,'phrase-icon','Building new applications'),(116825,3376,'_phrase-icon','field_615ec5eb0499b'),(116826,3376,'phrase-i-subtitle','What is Building?'),(116827,3376,'_phrase-i-subtitle','field_615ec6aaadf65'),(116828,3376,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(116829,3376,'_text-i-sec','field_615ec761c96fb'),(116830,3376,'purple-quote-img','2936'),(116831,3376,'_purple-quote-img','field_615eca8c68d41'),(116832,3376,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(116833,3376,'_phrase-slider-1','field_615ed12966bce'),(116834,3376,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(116835,3376,'_text-slider-1','field_615ed1ea36c7c'),(116836,3376,'rb-icon-slider','2938'),(116837,3376,'_rb-icon-slider','field_615ed3500b12c'),(116838,3376,'phrase-rb','What is Rebuilding?'),(116839,3376,'_phrase-rb','field_615f0f2dc37ac'),(116840,3376,'link-rb','#rb'),(116841,3376,'_link-rb','field_615f10dc69c6c'),(116842,3376,'rp-icon-slider',''),(116843,3376,'_rp-icon-slider','field_615ed383c1a5e'),(116844,3376,'phrase-rp','What is Replatforming?'),(116845,3376,'_phrase-rp','field_615f0f63c37ad'),(116846,3376,'link-rp','#rp'),(116847,3376,'_link-rp','field_615f1218b6ffd'),(116848,3376,'img-slider-1','2940'),(116849,3376,'_img-slider-1','field_615f13c3c0cf3'),(116850,3376,'title-slide-rb','What is Rebuilding?'),(116851,3376,'_title-slide-rb','field_615f2512c338c'),(116852,3376,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(116853,3376,'_text-slide-rb','field_615f24e2c338b'),(116854,3376,'img-slider-2','2939'),(116855,3376,'_img-slider-2','field_615f2539c338d'),(116856,3376,'title-slide-rp','What is Replatforming?'),(116857,3376,'_title-slide-rp','field_615f27d9335b6'),(116858,3376,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(116859,3376,'_text-slide-rp','field_615f27ee335b7'),(116860,3376,'img-slider-3','2940'),(116861,3376,'_img-slider-3','field_615f27ff335b8'),(116862,3377,'top-banner','3080'),(116863,3377,'_top-banner','field_615ea94aa14ad'),(116864,3377,'top-title','Cloud Native Applications'),(116865,3377,'_top-title','field_615ea986a14ae'),(116866,3377,'purple-icon-sq','2934'),(116867,3377,'_purple-icon-sq','field_615eb6e1990d3'),(116868,3377,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(116869,3377,'_phrase-1','field_615ec3e936adb'),(116870,3377,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(116871,3377,'_phrase-2','field_615ec4b052c68'),(116872,3377,'purple-icon-b','2935'),(116873,3377,'_purple-icon-b','field_615ec54f0247b'),(116874,3377,'phrase-icon','Building new applications'),(116875,3377,'_phrase-icon','field_615ec5eb0499b'),(116876,3377,'phrase-i-subtitle','What is Building?'),(116877,3377,'_phrase-i-subtitle','field_615ec6aaadf65'),(116878,3377,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(116879,3377,'_text-i-sec','field_615ec761c96fb'),(116880,3377,'purple-quote-img','2936'),(116881,3377,'_purple-quote-img','field_615eca8c68d41'),(116882,3377,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(116883,3377,'_phrase-slider-1','field_615ed12966bce'),(116884,3377,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(116885,3377,'_text-slider-1','field_615ed1ea36c7c'),(116886,3377,'rb-icon-slider','2938'),(116887,3377,'_rb-icon-slider','field_615ed3500b12c'),(116888,3377,'phrase-rb','What is Rebuilding?'),(116889,3377,'_phrase-rb','field_615f0f2dc37ac'),(116890,3377,'link-rb','#rb'),(116891,3377,'_link-rb','field_615f10dc69c6c'),(116892,3377,'rp-icon-slider',''),(116893,3377,'_rp-icon-slider','field_615ed383c1a5e'),(116894,3377,'phrase-rp','What is Replatforming?'),(116895,3377,'_phrase-rp','field_615f0f63c37ad'),(116896,3377,'link-rp','#rp'),(116897,3377,'_link-rp','field_615f1218b6ffd'),(116898,3377,'img-slider-1','2940'),(116899,3377,'_img-slider-1','field_615f13c3c0cf3'),(116900,3377,'title-slide-rb','What is Rebuilding?'),(116901,3377,'_title-slide-rb','field_615f2512c338c'),(116902,3377,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(116903,3377,'_text-slide-rb','field_615f24e2c338b'),(116904,3377,'img-slider-2','2939'),(116905,3377,'_img-slider-2','field_615f2539c338d'),(116906,3377,'title-slide-rp','What is Replatforming?'),(116907,3377,'_title-slide-rp','field_615f27d9335b6'),(116908,3377,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(116909,3377,'_text-slide-rp','field_615f27ee335b7'),(116910,3377,'img-slider-3','2940'),(116911,3377,'_img-slider-3','field_615f27ff335b8'),(116912,3378,'top-banner','3080'),(116913,3378,'_top-banner','field_615ea94aa14ad'),(116914,3378,'top-title','Cloud Native Applications'),(116915,3378,'_top-title','field_615ea986a14ae'),(116916,3378,'purple-icon-sq','2934'),(116917,3378,'_purple-icon-sq','field_615eb6e1990d3'),(116918,3378,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(116919,3378,'_phrase-1','field_615ec3e936adb'),(116920,3378,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(116921,3378,'_phrase-2','field_615ec4b052c68'),(116922,3378,'purple-icon-b','2935'),(116923,3378,'_purple-icon-b','field_615ec54f0247b'),(116924,3378,'phrase-icon','Building new applications'),(116925,3378,'_phrase-icon','field_615ec5eb0499b'),(116926,3378,'phrase-i-subtitle','What is Building?'),(116927,3378,'_phrase-i-subtitle','field_615ec6aaadf65'),(116928,3378,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(116929,3378,'_text-i-sec','field_615ec761c96fb'),(116930,3378,'purple-quote-img','2936'),(116931,3378,'_purple-quote-img','field_615eca8c68d41'),(116932,3378,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(116933,3378,'_phrase-slider-1','field_615ed12966bce'),(116934,3378,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(116935,3378,'_text-slider-1','field_615ed1ea36c7c'),(116936,3378,'rb-icon-slider','2938'),(116937,3378,'_rb-icon-slider','field_615ed3500b12c'),(116938,3378,'phrase-rb','What is Rebuilding?'),(116939,3378,'_phrase-rb','field_615f0f2dc37ac'),(116940,3378,'link-rb','#rb'),(116941,3378,'_link-rb','field_615f10dc69c6c'),(116942,3378,'rp-icon-slider',''),(116943,3378,'_rp-icon-slider','field_615ed383c1a5e'),(116944,3378,'phrase-rp','What is Replatforming?'),(116945,3378,'_phrase-rp','field_615f0f63c37ad'),(116946,3378,'link-rp','#rp'),(116947,3378,'_link-rp','field_615f1218b6ffd'),(116948,3378,'img-slider-1','2940'),(116949,3378,'_img-slider-1','field_615f13c3c0cf3'),(116950,3378,'title-slide-rb','What is Rebuilding?'),(116951,3378,'_title-slide-rb','field_615f2512c338c'),(116952,3378,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(116953,3378,'_text-slide-rb','field_615f24e2c338b'),(116954,3378,'img-slider-2','2939'),(116955,3378,'_img-slider-2','field_615f2539c338d'),(116956,3378,'title-slide-rp','What is Replatforming?'),(116957,3378,'_title-slide-rp','field_615f27d9335b6'),(116958,3378,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(116959,3378,'_text-slide-rp','field_615f27ee335b7'),(116960,3378,'img-slider-3','2940'),(116961,3378,'_img-slider-3','field_615f27ff335b8'),(116962,3346,'_edit_lock','1634905068:18'),(116963,3346,'_edit_last','18'),(116970,3379,'_pinterest_shares','0'),(116971,3379,'_total_shares','0'),(116988,3381,'_pinterest_shares','0'),(116989,3381,'_total_shares','0'),(116997,3382,'_pinterest_shares','0'),(116998,3382,'_total_shares','0'),(117006,3383,'_pinterest_shares','0'),(117007,3383,'_total_shares','0'),(117018,3384,'_pinterest_shares','0'),(117019,3384,'_total_shares','0'),(117027,3372,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(117028,3372,'_title-after-slider-h4','field_6172940c9f539'),(117029,3372,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(117030,3372,'_text-data-driven','field_61729471e80a2'),(117031,3372,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(117032,3372,'_text-tags','field_617295261e2bc'),(117033,3372,'img-app-modernization','2941'),(117034,3372,'_img-app-modernization','field_617295ac82cd3'),(117035,3372,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(117036,3372,'_phrase-rb-rp','field_6172960479081'),(117037,3372,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(117038,3372,'_phrase-tc','field_617296a28447f'),(117039,3385,'top-banner','3080'),(117040,3385,'_top-banner','field_615ea94aa14ad'),(117041,3385,'top-title','Cloud Native Applications'),(117042,3385,'_top-title','field_615ea986a14ae'),(117043,3385,'purple-icon-sq','2934'),(117044,3385,'_purple-icon-sq','field_615eb6e1990d3'),(117045,3385,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(117046,3385,'_phrase-1','field_615ec3e936adb'),(117047,3385,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(117048,3385,'_phrase-2','field_615ec4b052c68'),(117049,3385,'purple-icon-b','2935'),(117050,3385,'_purple-icon-b','field_615ec54f0247b'),(117051,3385,'phrase-icon','Building new applications'),(117052,3385,'_phrase-icon','field_615ec5eb0499b'),(117053,3385,'phrase-i-subtitle','What is Building?'),(117054,3385,'_phrase-i-subtitle','field_615ec6aaadf65'),(117055,3385,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(117056,3385,'_text-i-sec','field_615ec761c96fb'),(117057,3385,'purple-quote-img','2936'),(117058,3385,'_purple-quote-img','field_615eca8c68d41'),(117059,3385,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(117060,3385,'_phrase-slider-1','field_615ed12966bce'),(117061,3385,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(117062,3385,'_text-slider-1','field_615ed1ea36c7c'),(117063,3385,'rb-icon-slider','2938'),(117064,3385,'_rb-icon-slider','field_615ed3500b12c'),(117065,3385,'phrase-rb','What is Rebuilding?'),(117066,3385,'_phrase-rb','field_615f0f2dc37ac'),(117067,3385,'link-rb','#rb'),(117068,3385,'_link-rb','field_615f10dc69c6c'),(117069,3385,'rp-icon-slider',''),(117070,3385,'_rp-icon-slider','field_615ed383c1a5e'),(117071,3385,'phrase-rp','What is Replatforming?'),(117072,3385,'_phrase-rp','field_615f0f63c37ad'),(117073,3385,'link-rp','#rp'),(117074,3385,'_link-rp','field_615f1218b6ffd'),(117075,3385,'img-slider-1','2940'),(117076,3385,'_img-slider-1','field_615f13c3c0cf3'),(117077,3385,'title-slide-rb','What is Rebuilding?'),(117078,3385,'_title-slide-rb','field_615f2512c338c'),(117079,3385,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(117080,3385,'_text-slide-rb','field_615f24e2c338b'),(117081,3385,'img-slider-2','2939'),(117082,3385,'_img-slider-2','field_615f2539c338d'),(117083,3385,'title-slide-rp','What is Replatforming?'),(117084,3385,'_title-slide-rp','field_615f27d9335b6'),(117085,3385,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(117086,3385,'_text-slide-rp','field_615f27ee335b7'),(117087,3385,'img-slider-3','2940'),(117088,3385,'_img-slider-3','field_615f27ff335b8'),(117089,3385,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(117090,3385,'_title-after-slider-h4','field_6172940c9f539'),(117091,3385,'text-data-driven',''),(117092,3385,'_text-data-driven','field_61729471e80a2'),(117093,3385,'text-tags',''),(117094,3385,'_text-tags','field_617295261e2bc'),(117095,3385,'img-app-modernization',''),(117096,3385,'_img-app-modernization','field_617295ac82cd3'),(117097,3385,'phrase-rb-rp',''),(117098,3385,'_phrase-rb-rp','field_6172960479081'),(117099,3385,'phrase-tc',''),(117100,3385,'_phrase-tc','field_617296a28447f'),(117101,3386,'top-banner','3080'),(117102,3386,'_top-banner','field_615ea94aa14ad'),(117103,3386,'top-title','Cloud Native Applications'),(117104,3386,'_top-title','field_615ea986a14ae'),(117105,3386,'purple-icon-sq','2934'),(117106,3386,'_purple-icon-sq','field_615eb6e1990d3'),(117107,3386,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(117108,3386,'_phrase-1','field_615ec3e936adb'),(117109,3386,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(117110,3386,'_phrase-2','field_615ec4b052c68'),(117111,3386,'purple-icon-b','2935'),(117112,3386,'_purple-icon-b','field_615ec54f0247b'),(117113,3386,'phrase-icon','Building new applications'),(117114,3386,'_phrase-icon','field_615ec5eb0499b'),(117115,3386,'phrase-i-subtitle','What is Building?'),(117116,3386,'_phrase-i-subtitle','field_615ec6aaadf65'),(117117,3386,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(117118,3386,'_text-i-sec','field_615ec761c96fb'),(117119,3386,'purple-quote-img','2936'),(117120,3386,'_purple-quote-img','field_615eca8c68d41'),(117121,3386,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(117122,3386,'_phrase-slider-1','field_615ed12966bce'),(117123,3386,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(117124,3386,'_text-slider-1','field_615ed1ea36c7c'),(117125,3386,'rb-icon-slider','2938'),(117126,3386,'_rb-icon-slider','field_615ed3500b12c'),(117127,3386,'phrase-rb','What is Rebuilding?'),(117128,3386,'_phrase-rb','field_615f0f2dc37ac'),(117129,3386,'link-rb','#rb'),(117130,3386,'_link-rb','field_615f10dc69c6c'),(117131,3386,'rp-icon-slider',''),(117132,3386,'_rp-icon-slider','field_615ed383c1a5e'),(117133,3386,'phrase-rp','What is Replatforming?'),(117134,3386,'_phrase-rp','field_615f0f63c37ad'),(117135,3386,'link-rp','#rp'),(117136,3386,'_link-rp','field_615f1218b6ffd'),(117137,3386,'img-slider-1','2940'),(117138,3386,'_img-slider-1','field_615f13c3c0cf3'),(117139,3386,'title-slide-rb','What is Rebuilding?'),(117140,3386,'_title-slide-rb','field_615f2512c338c'),(117141,3386,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(117142,3386,'_text-slide-rb','field_615f24e2c338b'),(117143,3386,'img-slider-2','2939'),(117144,3386,'_img-slider-2','field_615f2539c338d'),(117145,3386,'title-slide-rp','What is Replatforming?'),(117146,3386,'_title-slide-rp','field_615f27d9335b6'),(117147,3386,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(117148,3386,'_text-slide-rp','field_615f27ee335b7'),(117149,3386,'img-slider-3','2940'),(117150,3386,'_img-slider-3','field_615f27ff335b8'),(117151,3386,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(117152,3386,'_title-after-slider-h4','field_6172940c9f539'),(117153,3386,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(117154,3386,'_text-data-driven','field_61729471e80a2'),(117155,3386,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(117156,3386,'_text-tags','field_617295261e2bc'),(117157,3386,'img-app-modernization','2941'),(117158,3386,'_img-app-modernization','field_617295ac82cd3'),(117159,3386,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(117160,3386,'_phrase-rb-rp','field_6172960479081'),(117161,3386,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(117162,3386,'_phrase-tc','field_617296a28447f'),(117163,3380,'_pinterest_shares','0'),(117164,3380,'_total_shares','0'),(117172,3387,'top-banner','3080'),(117173,3387,'_top-banner','field_615ea94aa14ad'),(117174,3387,'top-title','Cloud Native Applications'),(117175,3387,'_top-title','field_615ea986a14ae'),(117176,3387,'purple-icon-sq','2934'),(117177,3387,'_purple-icon-sq','field_615eb6e1990d3'),(117178,3387,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(117179,3387,'_phrase-1','field_615ec3e936adb'),(117180,3387,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(117181,3387,'_phrase-2','field_615ec4b052c68'),(117182,3387,'purple-icon-b','2935'),(117183,3387,'_purple-icon-b','field_615ec54f0247b'),(117184,3387,'phrase-icon','Building new applications'),(117185,3387,'_phrase-icon','field_615ec5eb0499b'),(117186,3387,'phrase-i-subtitle','What is Building?'),(117187,3387,'_phrase-i-subtitle','field_615ec6aaadf65'),(117188,3387,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(117189,3387,'_text-i-sec','field_615ec761c96fb'),(117190,3387,'purple-quote-img','2936'),(117191,3387,'_purple-quote-img','field_615eca8c68d41'),(117192,3387,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(117193,3387,'_phrase-slider-1','field_615ed12966bce'),(117194,3387,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(117195,3387,'_text-slider-1','field_615ed1ea36c7c'),(117196,3387,'rb-icon-slider','2938'),(117197,3387,'_rb-icon-slider','field_615ed3500b12c'),(117198,3387,'phrase-rb','What is Rebuilding?'),(117199,3387,'_phrase-rb','field_615f0f2dc37ac'),(117200,3387,'link-rb','#rb'),(117201,3387,'_link-rb','field_615f10dc69c6c'),(117202,3387,'rp-icon-slider',''),(117203,3387,'_rp-icon-slider','field_615ed383c1a5e'),(117204,3387,'phrase-rp','What is Replatforming?'),(117205,3387,'_phrase-rp','field_615f0f63c37ad'),(117206,3387,'link-rp','#rp'),(117207,3387,'_link-rp','field_615f1218b6ffd'),(117208,3387,'img-slider-1','2940'),(117209,3387,'_img-slider-1','field_615f13c3c0cf3'),(117210,3387,'title-slide-rb','What is Rebuilding?'),(117211,3387,'_title-slide-rb','field_615f2512c338c'),(117212,3387,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(117213,3387,'_text-slide-rb','field_615f24e2c338b'),(117214,3387,'img-slider-2','2939'),(117215,3387,'_img-slider-2','field_615f2539c338d'),(117216,3387,'title-slide-rp','What is Replatforming?'),(117217,3387,'_title-slide-rp','field_615f27d9335b6'),(117218,3387,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(117219,3387,'_text-slide-rp','field_615f27ee335b7'),(117220,3387,'img-slider-3','2940'),(117221,3387,'_img-slider-3','field_615f27ff335b8'),(117222,3387,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(117223,3387,'_title-after-slider-h4','field_6172940c9f539'),(117224,3387,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(117225,3387,'_text-data-driven','field_61729471e80a2'),(117226,3387,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(117227,3387,'_text-tags','field_617295261e2bc'),(117228,3387,'img-app-modernization','2941'),(117229,3387,'_img-app-modernization','field_617295ac82cd3'),(117230,3387,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(117231,3387,'_phrase-rb-rp','field_6172960479081'),(117232,3387,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(117233,3387,'_phrase-tc','field_617296a28447f'),(117234,3388,'top-banner','3080'),(117235,3388,'_top-banner','field_615ea94aa14ad'),(117236,3388,'top-title','Cloud Native Applications'),(117237,3388,'_top-title','field_615ea986a14ae'),(117238,3388,'purple-icon-sq','2934'),(117239,3388,'_purple-icon-sq','field_615eb6e1990d3'),(117240,3388,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(117241,3388,'_phrase-1','field_615ec3e936adb'),(117242,3388,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(117243,3388,'_phrase-2','field_615ec4b052c68'),(117244,3388,'purple-icon-b','2935'),(117245,3388,'_purple-icon-b','field_615ec54f0247b'),(117246,3388,'phrase-icon','Building new applications'),(117247,3388,'_phrase-icon','field_615ec5eb0499b'),(117248,3388,'phrase-i-subtitle','What is Building?'),(117249,3388,'_phrase-i-subtitle','field_615ec6aaadf65'),(117250,3388,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(117251,3388,'_text-i-sec','field_615ec761c96fb'),(117252,3388,'purple-quote-img','2936'),(117253,3388,'_purple-quote-img','field_615eca8c68d41'),(117254,3388,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(117255,3388,'_phrase-slider-1','field_615ed12966bce'),(117256,3388,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(117257,3388,'_text-slider-1','field_615ed1ea36c7c'),(117258,3388,'rb-icon-slider','2938'),(117259,3388,'_rb-icon-slider','field_615ed3500b12c'),(117260,3388,'phrase-rb','What is Rebuilding?'),(117261,3388,'_phrase-rb','field_615f0f2dc37ac'),(117262,3388,'link-rb','#rb'),(117263,3388,'_link-rb','field_615f10dc69c6c'),(117264,3388,'rp-icon-slider',''),(117265,3388,'_rp-icon-slider','field_615ed383c1a5e'),(117266,3388,'phrase-rp','What is Replatforming?'),(117267,3388,'_phrase-rp','field_615f0f63c37ad'),(117268,3388,'link-rp','#rp'),(117269,3388,'_link-rp','field_615f1218b6ffd'),(117270,3388,'img-slider-1','2940'),(117271,3388,'_img-slider-1','field_615f13c3c0cf3'),(117272,3388,'title-slide-rb','What is Rebuilding?'),(117273,3388,'_title-slide-rb','field_615f2512c338c'),(117274,3388,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(117275,3388,'_text-slide-rb','field_615f24e2c338b'),(117276,3388,'img-slider-2','2939'),(117277,3388,'_img-slider-2','field_615f2539c338d'),(117278,3388,'title-slide-rp','What is Replatforming?'),(117279,3388,'_title-slide-rp','field_615f27d9335b6'),(117280,3388,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(117281,3388,'_text-slide-rp','field_615f27ee335b7'),(117282,3388,'img-slider-3','2940'),(117283,3388,'_img-slider-3','field_615f27ff335b8'),(117284,3388,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(117285,3388,'_title-after-slider-h4','field_6172940c9f539'),(117286,3388,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(117287,3388,'_text-data-driven','field_61729471e80a2'),(117288,3388,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(117289,3388,'_text-tags','field_617295261e2bc'),(117290,3388,'img-app-modernization','2941'),(117291,3388,'_img-app-modernization','field_617295ac82cd3'),(117292,3388,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(117293,3388,'_phrase-rb-rp','field_6172960479081'),(117294,3388,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(117295,3388,'_phrase-tc','field_617296a28447f'),(117296,3389,'_pinterest_shares','0'),(117297,3389,'_total_shares','0'),(117305,3372,'icon-t','2942'),(117306,3372,'_icon-t','field_617298d4928e0'),(117307,3390,'top-banner','3080'),(117308,3390,'_top-banner','field_615ea94aa14ad'),(117309,3390,'top-title','Cloud Native Applications'),(117310,3390,'_top-title','field_615ea986a14ae'),(117311,3390,'purple-icon-sq','2934'),(117312,3390,'_purple-icon-sq','field_615eb6e1990d3'),(117313,3390,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(117314,3390,'_phrase-1','field_615ec3e936adb'),(117315,3390,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(117316,3390,'_phrase-2','field_615ec4b052c68'),(117317,3390,'purple-icon-b','2935'),(117318,3390,'_purple-icon-b','field_615ec54f0247b'),(117319,3390,'phrase-icon','Building new applications'),(117320,3390,'_phrase-icon','field_615ec5eb0499b'),(117321,3390,'phrase-i-subtitle','What is Building?'),(117322,3390,'_phrase-i-subtitle','field_615ec6aaadf65'),(117323,3390,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(117324,3390,'_text-i-sec','field_615ec761c96fb'),(117325,3390,'purple-quote-img','2936'),(117326,3390,'_purple-quote-img','field_615eca8c68d41'),(117327,3390,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(117328,3390,'_phrase-slider-1','field_615ed12966bce'),(117329,3390,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(117330,3390,'_text-slider-1','field_615ed1ea36c7c'),(117331,3390,'rb-icon-slider','2938'),(117332,3390,'_rb-icon-slider','field_615ed3500b12c'),(117333,3390,'phrase-rb','What is Rebuilding?'),(117334,3390,'_phrase-rb','field_615f0f2dc37ac'),(117335,3390,'link-rb','#rb'),(117336,3390,'_link-rb','field_615f10dc69c6c'),(117337,3390,'rp-icon-slider',''),(117338,3390,'_rp-icon-slider','field_615ed383c1a5e'),(117339,3390,'phrase-rp','What is Replatforming?'),(117340,3390,'_phrase-rp','field_615f0f63c37ad'),(117341,3390,'link-rp','#rp'),(117342,3390,'_link-rp','field_615f1218b6ffd'),(117343,3390,'img-slider-1','2940'),(117344,3390,'_img-slider-1','field_615f13c3c0cf3'),(117345,3390,'title-slide-rb','What is Rebuilding?'),(117346,3390,'_title-slide-rb','field_615f2512c338c'),(117347,3390,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(117348,3390,'_text-slide-rb','field_615f24e2c338b'),(117349,3390,'img-slider-2','2939'),(117350,3390,'_img-slider-2','field_615f2539c338d'),(117351,3390,'title-slide-rp','What is Replatforming?'),(117352,3390,'_title-slide-rp','field_615f27d9335b6'),(117353,3390,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(117354,3390,'_text-slide-rp','field_615f27ee335b7'),(117355,3390,'img-slider-3','2940'),(117356,3390,'_img-slider-3','field_615f27ff335b8'),(117357,3390,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(117358,3390,'_title-after-slider-h4','field_6172940c9f539'),(117359,3390,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(117360,3390,'_text-data-driven','field_61729471e80a2'),(117361,3390,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(117362,3390,'_text-tags','field_617295261e2bc'),(117363,3390,'img-app-modernization','2941'),(117364,3390,'_img-app-modernization','field_617295ac82cd3'),(117365,3390,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(117366,3390,'_phrase-rb-rp','field_6172960479081'),(117367,3390,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(117368,3390,'_phrase-tc','field_617296a28447f'),(117369,3390,'icon-t','2942'),(117370,3390,'_icon-t','field_617298d4928e0'),(117371,3391,'top-banner','3080'),(117372,3391,'_top-banner','field_615ea94aa14ad'),(117373,3391,'top-title','Cloud Native Applications'),(117374,3391,'_top-title','field_615ea986a14ae'),(117375,3391,'purple-icon-sq','2934'),(117376,3391,'_purple-icon-sq','field_615eb6e1990d3'),(117377,3391,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(117378,3391,'_phrase-1','field_615ec3e936adb'),(117379,3391,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(117380,3391,'_phrase-2','field_615ec4b052c68'),(117381,3391,'purple-icon-b','2935'),(117382,3391,'_purple-icon-b','field_615ec54f0247b'),(117383,3391,'phrase-icon','Building new applications'),(117384,3391,'_phrase-icon','field_615ec5eb0499b'),(117385,3391,'phrase-i-subtitle','What is Building?'),(117386,3391,'_phrase-i-subtitle','field_615ec6aaadf65'),(117387,3391,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(117388,3391,'_text-i-sec','field_615ec761c96fb'),(117389,3391,'purple-quote-img','2936'),(117390,3391,'_purple-quote-img','field_615eca8c68d41'),(117391,3391,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(117392,3391,'_phrase-slider-1','field_615ed12966bce'),(117393,3391,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(117394,3391,'_text-slider-1','field_615ed1ea36c7c'),(117395,3391,'rb-icon-slider','2938'),(117396,3391,'_rb-icon-slider','field_615ed3500b12c'),(117397,3391,'phrase-rb','What is Rebuilding?'),(117398,3391,'_phrase-rb','field_615f0f2dc37ac'),(117399,3391,'link-rb','#rb'),(117400,3391,'_link-rb','field_615f10dc69c6c'),(117401,3391,'rp-icon-slider',''),(117402,3391,'_rp-icon-slider','field_615ed383c1a5e'),(117403,3391,'phrase-rp','What is Replatforming?'),(117404,3391,'_phrase-rp','field_615f0f63c37ad'),(117405,3391,'link-rp','#rp'),(117406,3391,'_link-rp','field_615f1218b6ffd'),(117407,3391,'img-slider-1','2940'),(117408,3391,'_img-slider-1','field_615f13c3c0cf3'),(117409,3391,'title-slide-rb','What is Rebuilding?'),(117410,3391,'_title-slide-rb','field_615f2512c338c'),(117411,3391,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(117412,3391,'_text-slide-rb','field_615f24e2c338b'),(117413,3391,'img-slider-2','2939'),(117414,3391,'_img-slider-2','field_615f2539c338d'),(117415,3391,'title-slide-rp','What is Replatforming?'),(117416,3391,'_title-slide-rp','field_615f27d9335b6'),(117417,3391,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(117418,3391,'_text-slide-rp','field_615f27ee335b7'),(117419,3391,'img-slider-3','2940'),(117420,3391,'_img-slider-3','field_615f27ff335b8'),(117421,3391,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(117422,3391,'_title-after-slider-h4','field_6172940c9f539'),(117423,3391,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(117424,3391,'_text-data-driven','field_61729471e80a2'),(117425,3391,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(117426,3391,'_text-tags','field_617295261e2bc'),(117427,3391,'img-app-modernization','2941'),(117428,3391,'_img-app-modernization','field_617295ac82cd3'),(117429,3391,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(117430,3391,'_phrase-rb-rp','field_6172960479081'),(117431,3391,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(117432,3391,'_phrase-tc','field_617296a28447f'),(117433,3391,'icon-t','2942'),(117434,3391,'_icon-t','field_617298d4928e0'),(117435,3392,'_pinterest_shares','0'),(117436,3392,'_total_shares','0'),(117444,3372,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(117445,3372,'_team-member','field_6172995811847'),(117446,3393,'top-banner','3080'),(117447,3393,'_top-banner','field_615ea94aa14ad'),(117448,3393,'top-title','Cloud Native Applications'),(117449,3393,'_top-title','field_615ea986a14ae'),(117450,3393,'purple-icon-sq','2934'),(117451,3393,'_purple-icon-sq','field_615eb6e1990d3'),(117452,3393,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(117453,3393,'_phrase-1','field_615ec3e936adb'),(117454,3393,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(117455,3393,'_phrase-2','field_615ec4b052c68'),(117456,3393,'purple-icon-b','2935'),(117457,3393,'_purple-icon-b','field_615ec54f0247b'),(117458,3393,'phrase-icon','Building new applications'),(117459,3393,'_phrase-icon','field_615ec5eb0499b'),(117460,3393,'phrase-i-subtitle','What is Building?'),(117461,3393,'_phrase-i-subtitle','field_615ec6aaadf65'),(117462,3393,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(117463,3393,'_text-i-sec','field_615ec761c96fb'),(117464,3393,'purple-quote-img','2936'),(117465,3393,'_purple-quote-img','field_615eca8c68d41'),(117466,3393,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(117467,3393,'_phrase-slider-1','field_615ed12966bce'),(117468,3393,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(117469,3393,'_text-slider-1','field_615ed1ea36c7c'),(117470,3393,'rb-icon-slider','2938'),(117471,3393,'_rb-icon-slider','field_615ed3500b12c'),(117472,3393,'phrase-rb','What is Rebuilding?'),(117473,3393,'_phrase-rb','field_615f0f2dc37ac'),(117474,3393,'link-rb','#rb'),(117475,3393,'_link-rb','field_615f10dc69c6c'),(117476,3393,'rp-icon-slider',''),(117477,3393,'_rp-icon-slider','field_615ed383c1a5e'),(117478,3393,'phrase-rp','What is Replatforming?'),(117479,3393,'_phrase-rp','field_615f0f63c37ad'),(117480,3393,'link-rp','#rp'),(117481,3393,'_link-rp','field_615f1218b6ffd'),(117482,3393,'img-slider-1','2940'),(117483,3393,'_img-slider-1','field_615f13c3c0cf3'),(117484,3393,'title-slide-rb','What is Rebuilding?'),(117485,3393,'_title-slide-rb','field_615f2512c338c'),(117486,3393,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(117487,3393,'_text-slide-rb','field_615f24e2c338b'),(117488,3393,'img-slider-2','2939'),(117489,3393,'_img-slider-2','field_615f2539c338d'),(117490,3393,'title-slide-rp','What is Replatforming?'),(117491,3393,'_title-slide-rp','field_615f27d9335b6'),(117492,3393,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(117493,3393,'_text-slide-rp','field_615f27ee335b7'),(117494,3393,'img-slider-3','2940'),(117495,3393,'_img-slider-3','field_615f27ff335b8'),(117496,3393,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(117497,3393,'_title-after-slider-h4','field_6172940c9f539'),(117498,3393,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(117499,3393,'_text-data-driven','field_61729471e80a2'),(117500,3393,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(117501,3393,'_text-tags','field_617295261e2bc'),(117502,3393,'img-app-modernization','2941'),(117503,3393,'_img-app-modernization','field_617295ac82cd3'),(117504,3393,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(117505,3393,'_phrase-rb-rp','field_6172960479081'),(117506,3393,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(117507,3393,'_phrase-tc','field_617296a28447f'),(117508,3393,'icon-t','2942'),(117509,3393,'_icon-t','field_617298d4928e0'),(117510,3393,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(117511,3393,'_team-member','field_6172995811847'),(117512,3394,'top-banner','3080'),(117513,3394,'_top-banner','field_615ea94aa14ad'),(117514,3394,'top-title','Cloud Native Applications'),(117515,3394,'_top-title','field_615ea986a14ae'),(117516,3394,'purple-icon-sq','2934'),(117517,3394,'_purple-icon-sq','field_615eb6e1990d3'),(117518,3394,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(117519,3394,'_phrase-1','field_615ec3e936adb'),(117520,3394,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(117521,3394,'_phrase-2','field_615ec4b052c68'),(117522,3394,'purple-icon-b','2935'),(117523,3394,'_purple-icon-b','field_615ec54f0247b'),(117524,3394,'phrase-icon','Building new applications'),(117525,3394,'_phrase-icon','field_615ec5eb0499b'),(117526,3394,'phrase-i-subtitle','What is Building?'),(117527,3394,'_phrase-i-subtitle','field_615ec6aaadf65'),(117528,3394,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(117529,3394,'_text-i-sec','field_615ec761c96fb'),(117530,3394,'purple-quote-img','2936'),(117531,3394,'_purple-quote-img','field_615eca8c68d41'),(117532,3394,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(117533,3394,'_phrase-slider-1','field_615ed12966bce'),(117534,3394,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(117535,3394,'_text-slider-1','field_615ed1ea36c7c'),(117536,3394,'rb-icon-slider','2938'),(117537,3394,'_rb-icon-slider','field_615ed3500b12c'),(117538,3394,'phrase-rb','What is Rebuilding?'),(117539,3394,'_phrase-rb','field_615f0f2dc37ac'),(117540,3394,'link-rb','#rb'),(117541,3394,'_link-rb','field_615f10dc69c6c'),(117542,3394,'rp-icon-slider',''),(117543,3394,'_rp-icon-slider','field_615ed383c1a5e'),(117544,3394,'phrase-rp','What is Replatforming?'),(117545,3394,'_phrase-rp','field_615f0f63c37ad'),(117546,3394,'link-rp','#rp'),(117547,3394,'_link-rp','field_615f1218b6ffd'),(117548,3394,'img-slider-1','2940'),(117549,3394,'_img-slider-1','field_615f13c3c0cf3'),(117550,3394,'title-slide-rb','What is Rebuilding?'),(117551,3394,'_title-slide-rb','field_615f2512c338c'),(117552,3394,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(117553,3394,'_text-slide-rb','field_615f24e2c338b'),(117554,3394,'img-slider-2','2939'),(117555,3394,'_img-slider-2','field_615f2539c338d'),(117556,3394,'title-slide-rp','What is Replatforming?'),(117557,3394,'_title-slide-rp','field_615f27d9335b6'),(117558,3394,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(117559,3394,'_text-slide-rp','field_615f27ee335b7'),(117560,3394,'img-slider-3','2940'),(117561,3394,'_img-slider-3','field_615f27ff335b8'),(117562,3394,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(117563,3394,'_title-after-slider-h4','field_6172940c9f539'),(117564,3394,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(117565,3394,'_text-data-driven','field_61729471e80a2'),(117566,3394,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(117567,3394,'_text-tags','field_617295261e2bc'),(117568,3394,'img-app-modernization','2941'),(117569,3394,'_img-app-modernization','field_617295ac82cd3'),(117570,3394,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(117571,3394,'_phrase-rb-rp','field_6172960479081'),(117572,3394,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(117573,3394,'_phrase-tc','field_617296a28447f'),(117574,3394,'icon-t','2942'),(117575,3394,'_icon-t','field_617298d4928e0'),(117576,3394,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(117577,3394,'_team-member','field_6172995811847'),(117578,3395,'_pinterest_shares','0'),(117579,3395,'_total_shares','0'),(117587,3396,'_pinterest_shares','0'),(117588,3396,'_total_shares','0'),(117596,3372,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(117597,3372,'_phrase-consulting','field_61729ea05b9e6'),(117598,3372,'image-consulting','2887'),(117599,3372,'_image-consulting','field_61729f356923f'),(117600,3397,'top-banner','3080'),(117601,3397,'_top-banner','field_615ea94aa14ad'),(117602,3397,'top-title','Cloud Native Applications'),(117603,3397,'_top-title','field_615ea986a14ae'),(117604,3397,'purple-icon-sq','2934'),(117605,3397,'_purple-icon-sq','field_615eb6e1990d3'),(117606,3397,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(117607,3397,'_phrase-1','field_615ec3e936adb'),(117608,3397,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(117609,3397,'_phrase-2','field_615ec4b052c68'),(117610,3397,'purple-icon-b','2935'),(117611,3397,'_purple-icon-b','field_615ec54f0247b'),(117612,3397,'phrase-icon','Building new applications'),(117613,3397,'_phrase-icon','field_615ec5eb0499b'),(117614,3397,'phrase-i-subtitle','What is Building?'),(117615,3397,'_phrase-i-subtitle','field_615ec6aaadf65'),(117616,3397,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(117617,3397,'_text-i-sec','field_615ec761c96fb'),(117618,3397,'purple-quote-img','2936'),(117619,3397,'_purple-quote-img','field_615eca8c68d41'),(117620,3397,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(117621,3397,'_phrase-slider-1','field_615ed12966bce'),(117622,3397,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(117623,3397,'_text-slider-1','field_615ed1ea36c7c'),(117624,3397,'rb-icon-slider','2938'),(117625,3397,'_rb-icon-slider','field_615ed3500b12c'),(117626,3397,'phrase-rb','What is Rebuilding?'),(117627,3397,'_phrase-rb','field_615f0f2dc37ac'),(117628,3397,'link-rb','#rb'),(117629,3397,'_link-rb','field_615f10dc69c6c'),(117630,3397,'rp-icon-slider',''),(117631,3397,'_rp-icon-slider','field_615ed383c1a5e'),(117632,3397,'phrase-rp','What is Replatforming?'),(117633,3397,'_phrase-rp','field_615f0f63c37ad'),(117634,3397,'link-rp','#rp'),(117635,3397,'_link-rp','field_615f1218b6ffd'),(117636,3397,'img-slider-1','2940'),(117637,3397,'_img-slider-1','field_615f13c3c0cf3'),(117638,3397,'title-slide-rb','What is Rebuilding?'),(117639,3397,'_title-slide-rb','field_615f2512c338c'),(117640,3397,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(117641,3397,'_text-slide-rb','field_615f24e2c338b'),(117642,3397,'img-slider-2','2939'),(117643,3397,'_img-slider-2','field_615f2539c338d'),(117644,3397,'title-slide-rp','What is Replatforming?'),(117645,3397,'_title-slide-rp','field_615f27d9335b6'),(117646,3397,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(117647,3397,'_text-slide-rp','field_615f27ee335b7'),(117648,3397,'img-slider-3','2940'),(117649,3397,'_img-slider-3','field_615f27ff335b8'),(117650,3397,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(117651,3397,'_title-after-slider-h4','field_6172940c9f539'),(117652,3397,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(117653,3397,'_text-data-driven','field_61729471e80a2'),(117654,3397,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(117655,3397,'_text-tags','field_617295261e2bc'),(117656,3397,'img-app-modernization','2941'),(117657,3397,'_img-app-modernization','field_617295ac82cd3'),(117658,3397,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(117659,3397,'_phrase-rb-rp','field_6172960479081'),(117660,3397,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(117661,3397,'_phrase-tc','field_617296a28447f'),(117662,3397,'icon-t','2942'),(117663,3397,'_icon-t','field_617298d4928e0'),(117664,3397,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(117665,3397,'_team-member','field_6172995811847'),(117666,3397,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(117667,3397,'_phrase-consulting','field_61729ea05b9e6'),(117668,3397,'image-consulting','2887'),(117669,3397,'_image-consulting','field_61729f356923f'),(117670,3398,'top-banner','3080'),(117671,3398,'_top-banner','field_615ea94aa14ad'),(117672,3398,'top-title','Cloud Native Applications'),(117673,3398,'_top-title','field_615ea986a14ae'),(117674,3398,'purple-icon-sq','2934'),(117675,3398,'_purple-icon-sq','field_615eb6e1990d3'),(117676,3398,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(117677,3398,'_phrase-1','field_615ec3e936adb'),(117678,3398,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(117679,3398,'_phrase-2','field_615ec4b052c68'),(117680,3398,'purple-icon-b','2935'),(117681,3398,'_purple-icon-b','field_615ec54f0247b'),(117682,3398,'phrase-icon','Building new applications'),(117683,3398,'_phrase-icon','field_615ec5eb0499b'),(117684,3398,'phrase-i-subtitle','What is Building?'),(117685,3398,'_phrase-i-subtitle','field_615ec6aaadf65'),(117686,3398,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(117687,3398,'_text-i-sec','field_615ec761c96fb'),(117688,3398,'purple-quote-img','2936'),(117689,3398,'_purple-quote-img','field_615eca8c68d41'),(117690,3398,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(117691,3398,'_phrase-slider-1','field_615ed12966bce'),(117692,3398,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(117693,3398,'_text-slider-1','field_615ed1ea36c7c'),(117694,3398,'rb-icon-slider','2938'),(117695,3398,'_rb-icon-slider','field_615ed3500b12c'),(117696,3398,'phrase-rb','What is Rebuilding?'),(117697,3398,'_phrase-rb','field_615f0f2dc37ac'),(117698,3398,'link-rb','#rb'),(117699,3398,'_link-rb','field_615f10dc69c6c'),(117700,3398,'rp-icon-slider',''),(117701,3398,'_rp-icon-slider','field_615ed383c1a5e'),(117702,3398,'phrase-rp','What is Replatforming?'),(117703,3398,'_phrase-rp','field_615f0f63c37ad'),(117704,3398,'link-rp','#rp'),(117705,3398,'_link-rp','field_615f1218b6ffd'),(117706,3398,'img-slider-1','2940'),(117707,3398,'_img-slider-1','field_615f13c3c0cf3'),(117708,3398,'title-slide-rb','What is Rebuilding?'),(117709,3398,'_title-slide-rb','field_615f2512c338c'),(117710,3398,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(117711,3398,'_text-slide-rb','field_615f24e2c338b'),(117712,3398,'img-slider-2','2939'),(117713,3398,'_img-slider-2','field_615f2539c338d'),(117714,3398,'title-slide-rp','What is Replatforming?'),(117715,3398,'_title-slide-rp','field_615f27d9335b6'),(117716,3398,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(117717,3398,'_text-slide-rp','field_615f27ee335b7'),(117718,3398,'img-slider-3','2940'),(117719,3398,'_img-slider-3','field_615f27ff335b8'),(117720,3398,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(117721,3398,'_title-after-slider-h4','field_6172940c9f539'),(117722,3398,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(117723,3398,'_text-data-driven','field_61729471e80a2'),(117724,3398,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(117725,3398,'_text-tags','field_617295261e2bc'),(117726,3398,'img-app-modernization','2941'),(117727,3398,'_img-app-modernization','field_617295ac82cd3'),(117728,3398,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(117729,3398,'_phrase-rb-rp','field_6172960479081'),(117730,3398,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(117731,3398,'_phrase-tc','field_617296a28447f'),(117732,3398,'icon-t','2942'),(117733,3398,'_icon-t','field_617298d4928e0'),(117734,3398,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(117735,3398,'_team-member','field_6172995811847'),(117736,3398,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(117737,3398,'_phrase-consulting','field_61729ea05b9e6'),(117738,3398,'image-consulting','2887'),(117739,3398,'_image-consulting','field_61729f356923f'),(117740,3399,'_pinterest_shares','0'),(117741,3399,'_total_shares','0'),(117749,3372,'button-consulting','Book consultation now'),(117750,3372,'_button-consulting','field_61729fcbe169a'),(117751,3400,'top-banner','3080'),(117752,3400,'_top-banner','field_615ea94aa14ad'),(117753,3400,'top-title','Cloud Native Applications'),(117754,3400,'_top-title','field_615ea986a14ae'),(117755,3400,'purple-icon-sq','2934'),(117756,3400,'_purple-icon-sq','field_615eb6e1990d3'),(117757,3400,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(117758,3400,'_phrase-1','field_615ec3e936adb'),(117759,3400,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(117760,3400,'_phrase-2','field_615ec4b052c68'),(117761,3400,'purple-icon-b','2935'),(117762,3400,'_purple-icon-b','field_615ec54f0247b'),(117763,3400,'phrase-icon','Building new applications'),(117764,3400,'_phrase-icon','field_615ec5eb0499b'),(117765,3400,'phrase-i-subtitle','What is Building?'),(117766,3400,'_phrase-i-subtitle','field_615ec6aaadf65'),(117767,3400,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(117768,3400,'_text-i-sec','field_615ec761c96fb'),(117769,3400,'purple-quote-img','2936'),(117770,3400,'_purple-quote-img','field_615eca8c68d41'),(117771,3400,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(117772,3400,'_phrase-slider-1','field_615ed12966bce'),(117773,3400,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(117774,3400,'_text-slider-1','field_615ed1ea36c7c'),(117775,3400,'rb-icon-slider','2938'),(117776,3400,'_rb-icon-slider','field_615ed3500b12c'),(117777,3400,'phrase-rb','What is Rebuilding?'),(117778,3400,'_phrase-rb','field_615f0f2dc37ac'),(117779,3400,'link-rb','#rb'),(117780,3400,'_link-rb','field_615f10dc69c6c'),(117781,3400,'rp-icon-slider',''),(117782,3400,'_rp-icon-slider','field_615ed383c1a5e'),(117783,3400,'phrase-rp','What is Replatforming?'),(117784,3400,'_phrase-rp','field_615f0f63c37ad'),(117785,3400,'link-rp','#rp'),(117786,3400,'_link-rp','field_615f1218b6ffd'),(117787,3400,'img-slider-1','2940'),(117788,3400,'_img-slider-1','field_615f13c3c0cf3'),(117789,3400,'title-slide-rb','What is Rebuilding?'),(117790,3400,'_title-slide-rb','field_615f2512c338c'),(117791,3400,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(117792,3400,'_text-slide-rb','field_615f24e2c338b'),(117793,3400,'img-slider-2','2939'),(117794,3400,'_img-slider-2','field_615f2539c338d'),(117795,3400,'title-slide-rp','What is Replatforming?'),(117796,3400,'_title-slide-rp','field_615f27d9335b6'),(117797,3400,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(117798,3400,'_text-slide-rp','field_615f27ee335b7'),(117799,3400,'img-slider-3','2940'),(117800,3400,'_img-slider-3','field_615f27ff335b8'),(117801,3400,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(117802,3400,'_title-after-slider-h4','field_6172940c9f539'),(117803,3400,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(117804,3400,'_text-data-driven','field_61729471e80a2'),(117805,3400,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(117806,3400,'_text-tags','field_617295261e2bc'),(117807,3400,'img-app-modernization','2941'),(117808,3400,'_img-app-modernization','field_617295ac82cd3'),(117809,3400,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(117810,3400,'_phrase-rb-rp','field_6172960479081'),(117811,3400,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(117812,3400,'_phrase-tc','field_617296a28447f'),(117813,3400,'icon-t','2942'),(117814,3400,'_icon-t','field_617298d4928e0'),(117815,3400,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(117816,3400,'_team-member','field_6172995811847'),(117817,3400,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(117818,3400,'_phrase-consulting','field_61729ea05b9e6'),(117819,3400,'image-consulting','2887'),(117820,3400,'_image-consulting','field_61729f356923f'),(117821,3400,'button-consulting','Book consultation now'),(117822,3400,'_button-consulting','field_61729fcbe169a'),(117823,3401,'top-banner','3080'),(117824,3401,'_top-banner','field_615ea94aa14ad'),(117825,3401,'top-title','Cloud Native Applications'),(117826,3401,'_top-title','field_615ea986a14ae'),(117827,3401,'purple-icon-sq','2934'),(117828,3401,'_purple-icon-sq','field_615eb6e1990d3'),(117829,3401,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(117830,3401,'_phrase-1','field_615ec3e936adb'),(117831,3401,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(117832,3401,'_phrase-2','field_615ec4b052c68'),(117833,3401,'purple-icon-b','2935'),(117834,3401,'_purple-icon-b','field_615ec54f0247b'),(117835,3401,'phrase-icon','Building new applications'),(117836,3401,'_phrase-icon','field_615ec5eb0499b'),(117837,3401,'phrase-i-subtitle','What is Building?'),(117838,3401,'_phrase-i-subtitle','field_615ec6aaadf65'),(117839,3401,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(117840,3401,'_text-i-sec','field_615ec761c96fb'),(117841,3401,'purple-quote-img','2936'),(117842,3401,'_purple-quote-img','field_615eca8c68d41'),(117843,3401,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(117844,3401,'_phrase-slider-1','field_615ed12966bce'),(117845,3401,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(117846,3401,'_text-slider-1','field_615ed1ea36c7c'),(117847,3401,'rb-icon-slider','2938'),(117848,3401,'_rb-icon-slider','field_615ed3500b12c'),(117849,3401,'phrase-rb','What is Rebuilding?'),(117850,3401,'_phrase-rb','field_615f0f2dc37ac'),(117851,3401,'link-rb','#rb'),(117852,3401,'_link-rb','field_615f10dc69c6c'),(117853,3401,'rp-icon-slider',''),(117854,3401,'_rp-icon-slider','field_615ed383c1a5e'),(117855,3401,'phrase-rp','What is Replatforming?'),(117856,3401,'_phrase-rp','field_615f0f63c37ad'),(117857,3401,'link-rp','#rp'),(117858,3401,'_link-rp','field_615f1218b6ffd'),(117859,3401,'img-slider-1','2940'),(117860,3401,'_img-slider-1','field_615f13c3c0cf3'),(117861,3401,'title-slide-rb','What is Rebuilding?'),(117862,3401,'_title-slide-rb','field_615f2512c338c'),(117863,3401,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(117864,3401,'_text-slide-rb','field_615f24e2c338b'),(117865,3401,'img-slider-2','2939'),(117866,3401,'_img-slider-2','field_615f2539c338d'),(117867,3401,'title-slide-rp','What is Replatforming?'),(117868,3401,'_title-slide-rp','field_615f27d9335b6'),(117869,3401,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(117870,3401,'_text-slide-rp','field_615f27ee335b7'),(117871,3401,'img-slider-3','2940'),(117872,3401,'_img-slider-3','field_615f27ff335b8'),(117873,3401,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(117874,3401,'_title-after-slider-h4','field_6172940c9f539'),(117875,3401,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(117876,3401,'_text-data-driven','field_61729471e80a2'),(117877,3401,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(117878,3401,'_text-tags','field_617295261e2bc'),(117879,3401,'img-app-modernization','2941'),(117880,3401,'_img-app-modernization','field_617295ac82cd3'),(117881,3401,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(117882,3401,'_phrase-rb-rp','field_6172960479081'),(117883,3401,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(117884,3401,'_phrase-tc','field_617296a28447f'),(117885,3401,'icon-t','2942'),(117886,3401,'_icon-t','field_617298d4928e0'),(117887,3401,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(117888,3401,'_team-member','field_6172995811847'),(117889,3401,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(117890,3401,'_phrase-consulting','field_61729ea05b9e6'),(117891,3401,'image-consulting','2887'),(117892,3401,'_image-consulting','field_61729f356923f'),(117893,3401,'button-consulting','Book consultation now'),(117894,3401,'_button-consulting','field_61729fcbe169a'),(117895,3402,'_pinterest_shares','0'),(117896,3402,'_total_shares','0'),(117904,3372,'services-title','Services - Cloud Native Applications solutions:'),(117905,3372,'_services-title','field_6172a01105ae7'),(117906,3403,'top-banner','3080'),(117907,3403,'_top-banner','field_615ea94aa14ad'),(117908,3403,'top-title','Cloud Native Applications'),(117909,3403,'_top-title','field_615ea986a14ae'),(117910,3403,'purple-icon-sq','2934'),(117911,3403,'_purple-icon-sq','field_615eb6e1990d3'),(117912,3403,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(117913,3403,'_phrase-1','field_615ec3e936adb'),(117914,3403,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(117915,3403,'_phrase-2','field_615ec4b052c68'),(117916,3403,'purple-icon-b','2935'),(117917,3403,'_purple-icon-b','field_615ec54f0247b'),(117918,3403,'phrase-icon','Building new applications'),(117919,3403,'_phrase-icon','field_615ec5eb0499b'),(117920,3403,'phrase-i-subtitle','What is Building?'),(117921,3403,'_phrase-i-subtitle','field_615ec6aaadf65'),(117922,3403,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(117923,3403,'_text-i-sec','field_615ec761c96fb'),(117924,3403,'purple-quote-img','2936'),(117925,3403,'_purple-quote-img','field_615eca8c68d41'),(117926,3403,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(117927,3403,'_phrase-slider-1','field_615ed12966bce'),(117928,3403,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(117929,3403,'_text-slider-1','field_615ed1ea36c7c'),(117930,3403,'rb-icon-slider','2938'),(117931,3403,'_rb-icon-slider','field_615ed3500b12c'),(117932,3403,'phrase-rb','What is Rebuilding?'),(117933,3403,'_phrase-rb','field_615f0f2dc37ac'),(117934,3403,'link-rb','#rb'),(117935,3403,'_link-rb','field_615f10dc69c6c'),(117936,3403,'rp-icon-slider',''),(117937,3403,'_rp-icon-slider','field_615ed383c1a5e'),(117938,3403,'phrase-rp','What is Replatforming?'),(117939,3403,'_phrase-rp','field_615f0f63c37ad'),(117940,3403,'link-rp','#rp'),(117941,3403,'_link-rp','field_615f1218b6ffd'),(117942,3403,'img-slider-1','2940'),(117943,3403,'_img-slider-1','field_615f13c3c0cf3'),(117944,3403,'title-slide-rb','What is Rebuilding?'),(117945,3403,'_title-slide-rb','field_615f2512c338c'),(117946,3403,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(117947,3403,'_text-slide-rb','field_615f24e2c338b'),(117948,3403,'img-slider-2','2939'),(117949,3403,'_img-slider-2','field_615f2539c338d'),(117950,3403,'title-slide-rp','What is Replatforming?'),(117951,3403,'_title-slide-rp','field_615f27d9335b6'),(117952,3403,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(117953,3403,'_text-slide-rp','field_615f27ee335b7'),(117954,3403,'img-slider-3','2940'),(117955,3403,'_img-slider-3','field_615f27ff335b8'),(117956,3403,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(117957,3403,'_title-after-slider-h4','field_6172940c9f539'),(117958,3403,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(117959,3403,'_text-data-driven','field_61729471e80a2'),(117960,3403,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(117961,3403,'_text-tags','field_617295261e2bc'),(117962,3403,'img-app-modernization','2941'),(117963,3403,'_img-app-modernization','field_617295ac82cd3'),(117964,3403,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(117965,3403,'_phrase-rb-rp','field_6172960479081'),(117966,3403,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(117967,3403,'_phrase-tc','field_617296a28447f'),(117968,3403,'icon-t','2942'),(117969,3403,'_icon-t','field_617298d4928e0'),(117970,3403,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(117971,3403,'_team-member','field_6172995811847'),(117972,3403,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(117973,3403,'_phrase-consulting','field_61729ea05b9e6'),(117974,3403,'image-consulting','2887'),(117975,3403,'_image-consulting','field_61729f356923f'),(117976,3403,'button-consulting','Book consultation now'),(117977,3403,'_button-consulting','field_61729fcbe169a'),(117978,3403,'services-title','Services - Cloud Native Applications solutions:'),(117979,3403,'_services-title','field_6172a01105ae7'),(117980,3404,'top-banner','3080'),(117981,3404,'_top-banner','field_615ea94aa14ad'),(117982,3404,'top-title','Cloud Native Applications'),(117983,3404,'_top-title','field_615ea986a14ae'),(117984,3404,'purple-icon-sq','2934'),(117985,3404,'_purple-icon-sq','field_615eb6e1990d3'),(117986,3404,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(117987,3404,'_phrase-1','field_615ec3e936adb'),(117988,3404,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(117989,3404,'_phrase-2','field_615ec4b052c68'),(117990,3404,'purple-icon-b','2935'),(117991,3404,'_purple-icon-b','field_615ec54f0247b'),(117992,3404,'phrase-icon','Building new applications'),(117993,3404,'_phrase-icon','field_615ec5eb0499b'),(117994,3404,'phrase-i-subtitle','What is Building?'),(117995,3404,'_phrase-i-subtitle','field_615ec6aaadf65'),(117996,3404,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(117997,3404,'_text-i-sec','field_615ec761c96fb'),(117998,3404,'purple-quote-img','2936'),(117999,3404,'_purple-quote-img','field_615eca8c68d41'),(118000,3404,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(118001,3404,'_phrase-slider-1','field_615ed12966bce'),(118002,3404,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(118003,3404,'_text-slider-1','field_615ed1ea36c7c'),(118004,3404,'rb-icon-slider','2938'),(118005,3404,'_rb-icon-slider','field_615ed3500b12c'),(118006,3404,'phrase-rb','What is Rebuilding?'),(118007,3404,'_phrase-rb','field_615f0f2dc37ac'),(118008,3404,'link-rb','#rb'),(118009,3404,'_link-rb','field_615f10dc69c6c'),(118010,3404,'rp-icon-slider',''),(118011,3404,'_rp-icon-slider','field_615ed383c1a5e'),(118012,3404,'phrase-rp','What is Replatforming?'),(118013,3404,'_phrase-rp','field_615f0f63c37ad'),(118014,3404,'link-rp','#rp'),(118015,3404,'_link-rp','field_615f1218b6ffd'),(118016,3404,'img-slider-1','2940'),(118017,3404,'_img-slider-1','field_615f13c3c0cf3'),(118018,3404,'title-slide-rb','What is Rebuilding?'),(118019,3404,'_title-slide-rb','field_615f2512c338c'),(118020,3404,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(118021,3404,'_text-slide-rb','field_615f24e2c338b'),(118022,3404,'img-slider-2','2939'),(118023,3404,'_img-slider-2','field_615f2539c338d'),(118024,3404,'title-slide-rp','What is Replatforming?'),(118025,3404,'_title-slide-rp','field_615f27d9335b6'),(118026,3404,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(118027,3404,'_text-slide-rp','field_615f27ee335b7'),(118028,3404,'img-slider-3','2940'),(118029,3404,'_img-slider-3','field_615f27ff335b8'),(118030,3404,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(118031,3404,'_title-after-slider-h4','field_6172940c9f539'),(118032,3404,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(118033,3404,'_text-data-driven','field_61729471e80a2'),(118034,3404,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(118035,3404,'_text-tags','field_617295261e2bc'),(118036,3404,'img-app-modernization','2941'),(118037,3404,'_img-app-modernization','field_617295ac82cd3'),(118038,3404,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(118039,3404,'_phrase-rb-rp','field_6172960479081'),(118040,3404,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(118041,3404,'_phrase-tc','field_617296a28447f'),(118042,3404,'icon-t','2942'),(118043,3404,'_icon-t','field_617298d4928e0'),(118044,3404,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(118045,3404,'_team-member','field_6172995811847'),(118046,3404,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(118047,3404,'_phrase-consulting','field_61729ea05b9e6'),(118048,3404,'image-consulting','2887'),(118049,3404,'_image-consulting','field_61729f356923f'),(118050,3404,'button-consulting','Book consultation now'),(118051,3404,'_button-consulting','field_61729fcbe169a'),(118052,3404,'services-title','Services - Cloud Native Applications solutions:'),(118053,3404,'_services-title','field_6172a01105ae7'),(118054,3405,'_pinterest_shares','0'),(118055,3405,'_total_shares','0'),(118057,3406,'_pinterest_shares','0'),(118058,3406,'_total_shares','0'),(118066,3372,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(118067,3372,'_services-col-left','field_6172a091834a5'),(118068,3372,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(118069,3372,'_services-col-right','field_6172a0a9834a6'),(118070,3407,'top-banner','3080'),(118071,3407,'_top-banner','field_615ea94aa14ad'),(118072,3407,'top-title','Cloud Native Applications'),(118073,3407,'_top-title','field_615ea986a14ae'),(118074,3407,'purple-icon-sq','2934'),(118075,3407,'_purple-icon-sq','field_615eb6e1990d3'),(118076,3407,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(118077,3407,'_phrase-1','field_615ec3e936adb'),(118078,3407,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(118079,3407,'_phrase-2','field_615ec4b052c68'),(118080,3407,'purple-icon-b','2935'),(118081,3407,'_purple-icon-b','field_615ec54f0247b'),(118082,3407,'phrase-icon','Building new applications'),(118083,3407,'_phrase-icon','field_615ec5eb0499b'),(118084,3407,'phrase-i-subtitle','What is Building?'),(118085,3407,'_phrase-i-subtitle','field_615ec6aaadf65'),(118086,3407,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(118087,3407,'_text-i-sec','field_615ec761c96fb'),(118088,3407,'purple-quote-img','2936'),(118089,3407,'_purple-quote-img','field_615eca8c68d41'),(118090,3407,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(118091,3407,'_phrase-slider-1','field_615ed12966bce'),(118092,3407,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(118093,3407,'_text-slider-1','field_615ed1ea36c7c'),(118094,3407,'rb-icon-slider','2938'),(118095,3407,'_rb-icon-slider','field_615ed3500b12c'),(118096,3407,'phrase-rb','What is Rebuilding?'),(118097,3407,'_phrase-rb','field_615f0f2dc37ac'),(118098,3407,'link-rb','#rb'),(118099,3407,'_link-rb','field_615f10dc69c6c'),(118100,3407,'rp-icon-slider',''),(118101,3407,'_rp-icon-slider','field_615ed383c1a5e'),(118102,3407,'phrase-rp','What is Replatforming?'),(118103,3407,'_phrase-rp','field_615f0f63c37ad'),(118104,3407,'link-rp','#rp'),(118105,3407,'_link-rp','field_615f1218b6ffd'),(118106,3407,'img-slider-1','2940'),(118107,3407,'_img-slider-1','field_615f13c3c0cf3'),(118108,3407,'title-slide-rb','What is Rebuilding?'),(118109,3407,'_title-slide-rb','field_615f2512c338c'),(118110,3407,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(118111,3407,'_text-slide-rb','field_615f24e2c338b'),(118112,3407,'img-slider-2','2939'),(118113,3407,'_img-slider-2','field_615f2539c338d'),(118114,3407,'title-slide-rp','What is Replatforming?'),(118115,3407,'_title-slide-rp','field_615f27d9335b6'),(118116,3407,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(118117,3407,'_text-slide-rp','field_615f27ee335b7'),(118118,3407,'img-slider-3','2940'),(118119,3407,'_img-slider-3','field_615f27ff335b8'),(118120,3407,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(118121,3407,'_title-after-slider-h4','field_6172940c9f539'),(118122,3407,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(118123,3407,'_text-data-driven','field_61729471e80a2'),(118124,3407,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(118125,3407,'_text-tags','field_617295261e2bc'),(118126,3407,'img-app-modernization','2941'),(118127,3407,'_img-app-modernization','field_617295ac82cd3'),(118128,3407,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(118129,3407,'_phrase-rb-rp','field_6172960479081'),(118130,3407,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(118131,3407,'_phrase-tc','field_617296a28447f'),(118132,3407,'icon-t','2942'),(118133,3407,'_icon-t','field_617298d4928e0'),(118134,3407,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(118135,3407,'_team-member','field_6172995811847'),(118136,3407,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(118137,3407,'_phrase-consulting','field_61729ea05b9e6'),(118138,3407,'image-consulting','2887'),(118139,3407,'_image-consulting','field_61729f356923f'),(118140,3407,'button-consulting','Book consultation now'),(118141,3407,'_button-consulting','field_61729fcbe169a'),(118142,3407,'services-title','Services - Cloud Native Applications solutions:'),(118143,3407,'_services-title','field_6172a01105ae7'),(118144,3407,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(118145,3407,'_services-col-left','field_6172a091834a5'),(118146,3407,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planningt'),(118147,3407,'_services-col-right','field_6172a0a9834a6'),(118148,3408,'top-banner','3080'),(118149,3408,'_top-banner','field_615ea94aa14ad'),(118150,3408,'top-title','Cloud Native Applications'),(118151,3408,'_top-title','field_615ea986a14ae'),(118152,3408,'purple-icon-sq','2934'),(118153,3408,'_purple-icon-sq','field_615eb6e1990d3'),(118154,3408,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(118155,3408,'_phrase-1','field_615ec3e936adb'),(118156,3408,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(118157,3408,'_phrase-2','field_615ec4b052c68'),(118158,3408,'purple-icon-b','2935'),(118159,3408,'_purple-icon-b','field_615ec54f0247b'),(118160,3408,'phrase-icon','Building new applications'),(118161,3408,'_phrase-icon','field_615ec5eb0499b'),(118162,3408,'phrase-i-subtitle','What is Building?'),(118163,3408,'_phrase-i-subtitle','field_615ec6aaadf65'),(118164,3408,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(118165,3408,'_text-i-sec','field_615ec761c96fb'),(118166,3408,'purple-quote-img','2936'),(118167,3408,'_purple-quote-img','field_615eca8c68d41'),(118168,3408,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(118169,3408,'_phrase-slider-1','field_615ed12966bce'),(118170,3408,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(118171,3408,'_text-slider-1','field_615ed1ea36c7c'),(118172,3408,'rb-icon-slider','2938'),(118173,3408,'_rb-icon-slider','field_615ed3500b12c'),(118174,3408,'phrase-rb','What is Rebuilding?'),(118175,3408,'_phrase-rb','field_615f0f2dc37ac'),(118176,3408,'link-rb','#rb'),(118177,3408,'_link-rb','field_615f10dc69c6c'),(118178,3408,'rp-icon-slider',''),(118179,3408,'_rp-icon-slider','field_615ed383c1a5e'),(118180,3408,'phrase-rp','What is Replatforming?'),(118181,3408,'_phrase-rp','field_615f0f63c37ad'),(118182,3408,'link-rp','#rp'),(118183,3408,'_link-rp','field_615f1218b6ffd'),(118184,3408,'img-slider-1','2940'),(118185,3408,'_img-slider-1','field_615f13c3c0cf3'),(118186,3408,'title-slide-rb','What is Rebuilding?'),(118187,3408,'_title-slide-rb','field_615f2512c338c'),(118188,3408,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(118189,3408,'_text-slide-rb','field_615f24e2c338b'),(118190,3408,'img-slider-2','2939'),(118191,3408,'_img-slider-2','field_615f2539c338d'),(118192,3408,'title-slide-rp','What is Replatforming?'),(118193,3408,'_title-slide-rp','field_615f27d9335b6'),(118194,3408,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(118195,3408,'_text-slide-rp','field_615f27ee335b7'),(118196,3408,'img-slider-3','2940'),(118197,3408,'_img-slider-3','field_615f27ff335b8'),(118198,3408,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(118199,3408,'_title-after-slider-h4','field_6172940c9f539'),(118200,3408,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(118201,3408,'_text-data-driven','field_61729471e80a2'),(118202,3408,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(118203,3408,'_text-tags','field_617295261e2bc'),(118204,3408,'img-app-modernization','2941'),(118205,3408,'_img-app-modernization','field_617295ac82cd3'),(118206,3408,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(118207,3408,'_phrase-rb-rp','field_6172960479081'),(118208,3408,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(118209,3408,'_phrase-tc','field_617296a28447f'),(118210,3408,'icon-t','2942'),(118211,3408,'_icon-t','field_617298d4928e0'),(118212,3408,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(118213,3408,'_team-member','field_6172995811847'),(118214,3408,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(118215,3408,'_phrase-consulting','field_61729ea05b9e6'),(118216,3408,'image-consulting','2887'),(118217,3408,'_image-consulting','field_61729f356923f'),(118218,3408,'button-consulting','Book consultation now'),(118219,3408,'_button-consulting','field_61729fcbe169a'),(118220,3408,'services-title','Services - Cloud Native Applications solutions:'),(118221,3408,'_services-title','field_6172a01105ae7'),(118222,3408,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(118223,3408,'_services-col-left','field_6172a091834a5'),(118224,3408,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planningt'),(118225,3408,'_services-col-right','field_6172a0a9834a6'),(118226,3409,'_pinterest_shares','0'),(118227,3409,'_total_shares','0'),(118235,3410,'top-banner','3080'),(118236,3410,'_top-banner','field_615ea94aa14ad'),(118237,3410,'top-title','Cloud Native Applications'),(118238,3410,'_top-title','field_615ea986a14ae'),(118239,3410,'purple-icon-sq','2934'),(118240,3410,'_purple-icon-sq','field_615eb6e1990d3'),(118241,3410,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(118242,3410,'_phrase-1','field_615ec3e936adb'),(118243,3410,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(118244,3410,'_phrase-2','field_615ec4b052c68'),(118245,3410,'purple-icon-b','2935'),(118246,3410,'_purple-icon-b','field_615ec54f0247b'),(118247,3410,'phrase-icon','Building new applications'),(118248,3410,'_phrase-icon','field_615ec5eb0499b'),(118249,3410,'phrase-i-subtitle','What is Building?'),(118250,3410,'_phrase-i-subtitle','field_615ec6aaadf65'),(118251,3410,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(118252,3410,'_text-i-sec','field_615ec761c96fb'),(118253,3410,'purple-quote-img','2936'),(118254,3410,'_purple-quote-img','field_615eca8c68d41'),(118255,3410,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(118256,3410,'_phrase-slider-1','field_615ed12966bce'),(118257,3410,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(118258,3410,'_text-slider-1','field_615ed1ea36c7c'),(118259,3410,'rb-icon-slider','2938'),(118260,3410,'_rb-icon-slider','field_615ed3500b12c'),(118261,3410,'phrase-rb','What is Rebuilding?'),(118262,3410,'_phrase-rb','field_615f0f2dc37ac'),(118263,3410,'link-rb','#rb'),(118264,3410,'_link-rb','field_615f10dc69c6c'),(118265,3410,'rp-icon-slider',''),(118266,3410,'_rp-icon-slider','field_615ed383c1a5e'),(118267,3410,'phrase-rp','What is Replatforming?'),(118268,3410,'_phrase-rp','field_615f0f63c37ad'),(118269,3410,'link-rp','#rp'),(118270,3410,'_link-rp','field_615f1218b6ffd'),(118271,3410,'img-slider-1','2940'),(118272,3410,'_img-slider-1','field_615f13c3c0cf3'),(118273,3410,'title-slide-rb','What is Rebuilding?'),(118274,3410,'_title-slide-rb','field_615f2512c338c'),(118275,3410,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(118276,3410,'_text-slide-rb','field_615f24e2c338b'),(118277,3410,'img-slider-2','2939'),(118278,3410,'_img-slider-2','field_615f2539c338d'),(118279,3410,'title-slide-rp','What is Replatforming?'),(118280,3410,'_title-slide-rp','field_615f27d9335b6'),(118281,3410,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(118282,3410,'_text-slide-rp','field_615f27ee335b7'),(118283,3410,'img-slider-3','2940'),(118284,3410,'_img-slider-3','field_615f27ff335b8'),(118285,3410,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(118286,3410,'_title-after-slider-h4','field_6172940c9f539'),(118287,3410,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(118288,3410,'_text-data-driven','field_61729471e80a2'),(118289,3410,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(118290,3410,'_text-tags','field_617295261e2bc'),(118291,3410,'img-app-modernization','2941'),(118292,3410,'_img-app-modernization','field_617295ac82cd3'),(118293,3410,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(118294,3410,'_phrase-rb-rp','field_6172960479081'),(118295,3410,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(118296,3410,'_phrase-tc','field_617296a28447f'),(118297,3410,'icon-t','2942'),(118298,3410,'_icon-t','field_617298d4928e0'),(118299,3410,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(118300,3410,'_team-member','field_6172995811847'),(118301,3410,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(118302,3410,'_phrase-consulting','field_61729ea05b9e6'),(118303,3410,'image-consulting','2887'),(118304,3410,'_image-consulting','field_61729f356923f'),(118305,3410,'button-consulting','Book consultation now'),(118306,3410,'_button-consulting','field_61729fcbe169a'),(118307,3410,'services-title','Services - Cloud Native Applications solutions:'),(118308,3410,'_services-title','field_6172a01105ae7'),(118309,3410,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(118310,3410,'_services-col-left','field_6172a091834a5'),(118311,3410,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(118312,3410,'_services-col-right','field_6172a0a9834a6'),(118313,3411,'_pinterest_shares','0'),(118314,3411,'_total_shares','0'),(118322,3372,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(118323,3372,'_phrase-services','field_6172a1941f2ef'),(118324,3372,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(118325,3372,'_tag-services','field_6172a1ebc36e4'),(118326,3412,'top-banner','3080'),(118327,3412,'_top-banner','field_615ea94aa14ad'),(118328,3412,'top-title','Cloud Native Applications'),(118329,3412,'_top-title','field_615ea986a14ae'),(118330,3412,'purple-icon-sq','2934'),(118331,3412,'_purple-icon-sq','field_615eb6e1990d3'),(118332,3412,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(118333,3412,'_phrase-1','field_615ec3e936adb'),(118334,3412,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(118335,3412,'_phrase-2','field_615ec4b052c68'),(118336,3412,'purple-icon-b','2935'),(118337,3412,'_purple-icon-b','field_615ec54f0247b'),(118338,3412,'phrase-icon','Building new applications'),(118339,3412,'_phrase-icon','field_615ec5eb0499b'),(118340,3412,'phrase-i-subtitle','What is Building?'),(118341,3412,'_phrase-i-subtitle','field_615ec6aaadf65'),(118342,3412,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(118343,3412,'_text-i-sec','field_615ec761c96fb'),(118344,3412,'purple-quote-img','2936'),(118345,3412,'_purple-quote-img','field_615eca8c68d41'),(118346,3412,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(118347,3412,'_phrase-slider-1','field_615ed12966bce'),(118348,3412,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(118349,3412,'_text-slider-1','field_615ed1ea36c7c'),(118350,3412,'rb-icon-slider','2938'),(118351,3412,'_rb-icon-slider','field_615ed3500b12c'),(118352,3412,'phrase-rb','What is Rebuilding?'),(118353,3412,'_phrase-rb','field_615f0f2dc37ac'),(118354,3412,'link-rb','#rb'),(118355,3412,'_link-rb','field_615f10dc69c6c'),(118356,3412,'rp-icon-slider',''),(118357,3412,'_rp-icon-slider','field_615ed383c1a5e'),(118358,3412,'phrase-rp','What is Replatforming?'),(118359,3412,'_phrase-rp','field_615f0f63c37ad'),(118360,3412,'link-rp','#rp'),(118361,3412,'_link-rp','field_615f1218b6ffd'),(118362,3412,'img-slider-1','2940'),(118363,3412,'_img-slider-1','field_615f13c3c0cf3'),(118364,3412,'title-slide-rb','What is Rebuilding?'),(118365,3412,'_title-slide-rb','field_615f2512c338c'),(118366,3412,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(118367,3412,'_text-slide-rb','field_615f24e2c338b'),(118368,3412,'img-slider-2','2939'),(118369,3412,'_img-slider-2','field_615f2539c338d'),(118370,3412,'title-slide-rp','What is Replatforming?'),(118371,3412,'_title-slide-rp','field_615f27d9335b6'),(118372,3412,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(118373,3412,'_text-slide-rp','field_615f27ee335b7'),(118374,3412,'img-slider-3','2940'),(118375,3412,'_img-slider-3','field_615f27ff335b8'),(118376,3412,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(118377,3412,'_title-after-slider-h4','field_6172940c9f539'),(118378,3412,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(118379,3412,'_text-data-driven','field_61729471e80a2'),(118380,3412,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(118381,3412,'_text-tags','field_617295261e2bc'),(118382,3412,'img-app-modernization','2941'),(118383,3412,'_img-app-modernization','field_617295ac82cd3'),(118384,3412,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(118385,3412,'_phrase-rb-rp','field_6172960479081'),(118386,3412,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(118387,3412,'_phrase-tc','field_617296a28447f'),(118388,3412,'icon-t','2942'),(118389,3412,'_icon-t','field_617298d4928e0'),(118390,3412,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(118391,3412,'_team-member','field_6172995811847'),(118392,3412,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(118393,3412,'_phrase-consulting','field_61729ea05b9e6'),(118394,3412,'image-consulting','2887'),(118395,3412,'_image-consulting','field_61729f356923f'),(118396,3412,'button-consulting','Book consultation now'),(118397,3412,'_button-consulting','field_61729fcbe169a'),(118398,3412,'services-title','Services - Cloud Native Applications solutions:'),(118399,3412,'_services-title','field_6172a01105ae7'),(118400,3412,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(118401,3412,'_services-col-left','field_6172a091834a5'),(118402,3412,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(118403,3412,'_services-col-right','field_6172a0a9834a6'),(118404,3412,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(118405,3412,'_phrase-services','field_6172a1941f2ef'),(118406,3412,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(118407,3412,'_tag-services','field_6172a1ebc36e4'),(118408,3413,'top-banner','3080'),(118409,3413,'_top-banner','field_615ea94aa14ad'),(118410,3413,'top-title','Cloud Native Applications'),(118411,3413,'_top-title','field_615ea986a14ae'),(118412,3413,'purple-icon-sq','2934'),(118413,3413,'_purple-icon-sq','field_615eb6e1990d3'),(118414,3413,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(118415,3413,'_phrase-1','field_615ec3e936adb'),(118416,3413,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(118417,3413,'_phrase-2','field_615ec4b052c68'),(118418,3413,'purple-icon-b','2935'),(118419,3413,'_purple-icon-b','field_615ec54f0247b'),(118420,3413,'phrase-icon','Building new applications'),(118421,3413,'_phrase-icon','field_615ec5eb0499b'),(118422,3413,'phrase-i-subtitle','What is Building?'),(118423,3413,'_phrase-i-subtitle','field_615ec6aaadf65'),(118424,3413,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(118425,3413,'_text-i-sec','field_615ec761c96fb'),(118426,3413,'purple-quote-img','2936'),(118427,3413,'_purple-quote-img','field_615eca8c68d41'),(118428,3413,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(118429,3413,'_phrase-slider-1','field_615ed12966bce'),(118430,3413,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(118431,3413,'_text-slider-1','field_615ed1ea36c7c'),(118432,3413,'rb-icon-slider','2938'),(118433,3413,'_rb-icon-slider','field_615ed3500b12c'),(118434,3413,'phrase-rb','What is Rebuilding?'),(118435,3413,'_phrase-rb','field_615f0f2dc37ac'),(118436,3413,'link-rb','#rb'),(118437,3413,'_link-rb','field_615f10dc69c6c'),(118438,3413,'rp-icon-slider',''),(118439,3413,'_rp-icon-slider','field_615ed383c1a5e'),(118440,3413,'phrase-rp','What is Replatforming?'),(118441,3413,'_phrase-rp','field_615f0f63c37ad'),(118442,3413,'link-rp','#rp'),(118443,3413,'_link-rp','field_615f1218b6ffd'),(118444,3413,'img-slider-1','2940'),(118445,3413,'_img-slider-1','field_615f13c3c0cf3'),(118446,3413,'title-slide-rb','What is Rebuilding?'),(118447,3413,'_title-slide-rb','field_615f2512c338c'),(118448,3413,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(118449,3413,'_text-slide-rb','field_615f24e2c338b'),(118450,3413,'img-slider-2','2939'),(118451,3413,'_img-slider-2','field_615f2539c338d'),(118452,3413,'title-slide-rp','What is Replatforming?'),(118453,3413,'_title-slide-rp','field_615f27d9335b6'),(118454,3413,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(118455,3413,'_text-slide-rp','field_615f27ee335b7'),(118456,3413,'img-slider-3','2940'),(118457,3413,'_img-slider-3','field_615f27ff335b8'),(118458,3413,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(118459,3413,'_title-after-slider-h4','field_6172940c9f539'),(118460,3413,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(118461,3413,'_text-data-driven','field_61729471e80a2'),(118462,3413,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(118463,3413,'_text-tags','field_617295261e2bc'),(118464,3413,'img-app-modernization','2941'),(118465,3413,'_img-app-modernization','field_617295ac82cd3'),(118466,3413,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(118467,3413,'_phrase-rb-rp','field_6172960479081'),(118468,3413,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(118469,3413,'_phrase-tc','field_617296a28447f'),(118470,3413,'icon-t','2942'),(118471,3413,'_icon-t','field_617298d4928e0'),(118472,3413,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(118473,3413,'_team-member','field_6172995811847'),(118474,3413,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(118475,3413,'_phrase-consulting','field_61729ea05b9e6'),(118476,3413,'image-consulting','2887'),(118477,3413,'_image-consulting','field_61729f356923f'),(118478,3413,'button-consulting','Book consultation now'),(118479,3413,'_button-consulting','field_61729fcbe169a'),(118480,3413,'services-title','Services - Cloud Native Applications solutions:'),(118481,3413,'_services-title','field_6172a01105ae7'),(118482,3413,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(118483,3413,'_services-col-left','field_6172a091834a5'),(118484,3413,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(118485,3413,'_services-col-right','field_6172a0a9834a6'),(118486,3413,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(118487,3413,'_phrase-services','field_6172a1941f2ef'),(118488,3413,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(118489,3413,'_tag-services','field_6172a1ebc36e4'),(118490,3414,'top-banner','3080'),(118491,3414,'_top-banner','field_615ea94aa14ad'),(118492,3414,'top-title','Cloud Native Applications'),(118493,3414,'_top-title','field_615ea986a14ae'),(118494,3414,'purple-icon-sq','2934'),(118495,3414,'_purple-icon-sq','field_615eb6e1990d3'),(118496,3414,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(118497,3414,'_phrase-1','field_615ec3e936adb'),(118498,3414,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(118499,3414,'_phrase-2','field_615ec4b052c68'),(118500,3414,'purple-icon-b','2935'),(118501,3414,'_purple-icon-b','field_615ec54f0247b'),(118502,3414,'phrase-icon','Building new applications'),(118503,3414,'_phrase-icon','field_615ec5eb0499b'),(118504,3414,'phrase-i-subtitle','What is Building?'),(118505,3414,'_phrase-i-subtitle','field_615ec6aaadf65'),(118506,3414,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(118507,3414,'_text-i-sec','field_615ec761c96fb'),(118508,3414,'purple-quote-img','2936'),(118509,3414,'_purple-quote-img','field_615eca8c68d41'),(118510,3414,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(118511,3414,'_phrase-slider-1','field_615ed12966bce'),(118512,3414,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(118513,3414,'_text-slider-1','field_615ed1ea36c7c'),(118514,3414,'rb-icon-slider','2938'),(118515,3414,'_rb-icon-slider','field_615ed3500b12c'),(118516,3414,'phrase-rb','What is Rebuilding?'),(118517,3414,'_phrase-rb','field_615f0f2dc37ac'),(118518,3414,'link-rb','#rb'),(118519,3414,'_link-rb','field_615f10dc69c6c'),(118520,3414,'rp-icon-slider',''),(118521,3414,'_rp-icon-slider','field_615ed383c1a5e'),(118522,3414,'phrase-rp','What is Replatforming?'),(118523,3414,'_phrase-rp','field_615f0f63c37ad'),(118524,3414,'link-rp','#rp'),(118525,3414,'_link-rp','field_615f1218b6ffd'),(118526,3414,'img-slider-1','2940'),(118527,3414,'_img-slider-1','field_615f13c3c0cf3'),(118528,3414,'title-slide-rb','What is Rebuilding?'),(118529,3414,'_title-slide-rb','field_615f2512c338c'),(118530,3414,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(118531,3414,'_text-slide-rb','field_615f24e2c338b'),(118532,3414,'img-slider-2','2939'),(118533,3414,'_img-slider-2','field_615f2539c338d'),(118534,3414,'title-slide-rp','What is Replatforming?'),(118535,3414,'_title-slide-rp','field_615f27d9335b6'),(118536,3414,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(118537,3414,'_text-slide-rp','field_615f27ee335b7'),(118538,3414,'img-slider-3','2940'),(118539,3414,'_img-slider-3','field_615f27ff335b8'),(118540,3414,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(118541,3414,'_title-after-slider-h4','field_6172940c9f539'),(118542,3414,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(118543,3414,'_text-data-driven','field_61729471e80a2'),(118544,3414,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(118545,3414,'_text-tags','field_617295261e2bc'),(118546,3414,'img-app-modernization','2941'),(118547,3414,'_img-app-modernization','field_617295ac82cd3'),(118548,3414,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(118549,3414,'_phrase-rb-rp','field_6172960479081'),(118550,3414,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(118551,3414,'_phrase-tc','field_617296a28447f'),(118552,3414,'icon-t','2942'),(118553,3414,'_icon-t','field_617298d4928e0'),(118554,3414,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(118555,3414,'_team-member','field_6172995811847'),(118556,3414,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(118557,3414,'_phrase-consulting','field_61729ea05b9e6'),(118558,3414,'image-consulting','2887'),(118559,3414,'_image-consulting','field_61729f356923f'),(118560,3414,'button-consulting','Book consultation now'),(118561,3414,'_button-consulting','field_61729fcbe169a'),(118562,3414,'services-title','Services - Cloud Native Applications solutions:'),(118563,3414,'_services-title','field_6172a01105ae7'),(118564,3414,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(118565,3414,'_services-col-left','field_6172a091834a5'),(118566,3414,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(118567,3414,'_services-col-right','field_6172a0a9834a6'),(118568,3414,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(118569,3414,'_phrase-services','field_6172a1941f2ef'),(118570,3414,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(118571,3414,'_tag-services','field_6172a1ebc36e4'),(118572,3415,'top-banner','3080'),(118573,3415,'_top-banner','field_615ea94aa14ad'),(118574,3415,'top-title','Cloud Native Applications'),(118575,3415,'_top-title','field_615ea986a14ae'),(118576,3415,'purple-icon-sq','2934'),(118577,3415,'_purple-icon-sq','field_615eb6e1990d3'),(118578,3415,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(118579,3415,'_phrase-1','field_615ec3e936adb'),(118580,3415,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(118581,3415,'_phrase-2','field_615ec4b052c68'),(118582,3415,'purple-icon-b','2935'),(118583,3415,'_purple-icon-b','field_615ec54f0247b'),(118584,3415,'phrase-icon','Building new applications'),(118585,3415,'_phrase-icon','field_615ec5eb0499b'),(118586,3415,'phrase-i-subtitle','What is Building?'),(118587,3415,'_phrase-i-subtitle','field_615ec6aaadf65'),(118588,3415,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(118589,3415,'_text-i-sec','field_615ec761c96fb'),(118590,3415,'purple-quote-img','2936'),(118591,3415,'_purple-quote-img','field_615eca8c68d41'),(118592,3415,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(118593,3415,'_phrase-slider-1','field_615ed12966bce'),(118594,3415,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(118595,3415,'_text-slider-1','field_615ed1ea36c7c'),(118596,3415,'rb-icon-slider','2938'),(118597,3415,'_rb-icon-slider','field_615ed3500b12c'),(118598,3415,'phrase-rb','What is Rebuilding?'),(118599,3415,'_phrase-rb','field_615f0f2dc37ac'),(118600,3415,'link-rb','#rb'),(118601,3415,'_link-rb','field_615f10dc69c6c'),(118602,3415,'rp-icon-slider',''),(118603,3415,'_rp-icon-slider','field_615ed383c1a5e'),(118604,3415,'phrase-rp','What is Replatforming?'),(118605,3415,'_phrase-rp','field_615f0f63c37ad'),(118606,3415,'link-rp','#rp'),(118607,3415,'_link-rp','field_615f1218b6ffd'),(118608,3415,'img-slider-1','2940'),(118609,3415,'_img-slider-1','field_615f13c3c0cf3'),(118610,3415,'title-slide-rb','What is Rebuilding?'),(118611,3415,'_title-slide-rb','field_615f2512c338c'),(118612,3415,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(118613,3415,'_text-slide-rb','field_615f24e2c338b'),(118614,3415,'img-slider-2','2939'),(118615,3415,'_img-slider-2','field_615f2539c338d'),(118616,3415,'title-slide-rp','What is Replatforming?'),(118617,3415,'_title-slide-rp','field_615f27d9335b6'),(118618,3415,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(118619,3415,'_text-slide-rp','field_615f27ee335b7'),(118620,3415,'img-slider-3','2940'),(118621,3415,'_img-slider-3','field_615f27ff335b8'),(118622,3415,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(118623,3415,'_title-after-slider-h4','field_6172940c9f539'),(118624,3415,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(118625,3415,'_text-data-driven','field_61729471e80a2'),(118626,3415,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(118627,3415,'_text-tags','field_617295261e2bc'),(118628,3415,'img-app-modernization','2941'),(118629,3415,'_img-app-modernization','field_617295ac82cd3'),(118630,3415,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(118631,3415,'_phrase-rb-rp','field_6172960479081'),(118632,3415,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(118633,3415,'_phrase-tc','field_617296a28447f'),(118634,3415,'icon-t','2942'),(118635,3415,'_icon-t','field_617298d4928e0'),(118636,3415,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(118637,3415,'_team-member','field_6172995811847'),(118638,3415,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(118639,3415,'_phrase-consulting','field_61729ea05b9e6'),(118640,3415,'image-consulting','2887'),(118641,3415,'_image-consulting','field_61729f356923f'),(118642,3415,'button-consulting','Book consultation now'),(118643,3415,'_button-consulting','field_61729fcbe169a'),(118644,3415,'services-title','Services - Cloud Native Applications solutions:'),(118645,3415,'_services-title','field_6172a01105ae7'),(118646,3415,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(118647,3415,'_services-col-left','field_6172a091834a5'),(118648,3415,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(118649,3415,'_services-col-right','field_6172a0a9834a6'),(118650,3415,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(118651,3415,'_phrase-services','field_6172a1941f2ef'),(118652,3415,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(118653,3415,'_tag-services','field_6172a1ebc36e4'),(118660,3416,'top-banner','3080'),(118661,3416,'_top-banner','field_615ea94aa14ad'),(118662,3416,'top-title','Cloud Native Applications'),(118663,3416,'_top-title','field_615ea986a14ae'),(118664,3416,'purple-icon-sq','2934'),(118665,3416,'_purple-icon-sq','field_615eb6e1990d3'),(118666,3416,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(118667,3416,'_phrase-1','field_615ec3e936adb'),(118668,3416,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(118669,3416,'_phrase-2','field_615ec4b052c68'),(118670,3416,'purple-icon-b','2935'),(118671,3416,'_purple-icon-b','field_615ec54f0247b'),(118672,3416,'phrase-icon','Building new applications'),(118673,3416,'_phrase-icon','field_615ec5eb0499b'),(118674,3416,'phrase-i-subtitle','What is Building?'),(118675,3416,'_phrase-i-subtitle','field_615ec6aaadf65'),(118676,3416,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(118677,3416,'_text-i-sec','field_615ec761c96fb'),(118678,3416,'purple-quote-img','2936'),(118679,3416,'_purple-quote-img','field_615eca8c68d41'),(118680,3416,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(118681,3416,'_phrase-slider-1','field_615ed12966bce'),(118682,3416,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(118683,3416,'_text-slider-1','field_615ed1ea36c7c'),(118684,3416,'rb-icon-slider','2938'),(118685,3416,'_rb-icon-slider','field_615ed3500b12c'),(118686,3416,'phrase-rb','What is Rebuilding?'),(118687,3416,'_phrase-rb','field_615f0f2dc37ac'),(118688,3416,'link-rb','#rb'),(118689,3416,'_link-rb','field_615f10dc69c6c'),(118690,3416,'rp-icon-slider',''),(118691,3416,'_rp-icon-slider','field_615ed383c1a5e'),(118692,3416,'phrase-rp','What is Replatforming?'),(118693,3416,'_phrase-rp','field_615f0f63c37ad'),(118694,3416,'link-rp','#rp'),(118695,3416,'_link-rp','field_615f1218b6ffd'),(118696,3416,'img-slider-1','2940'),(118697,3416,'_img-slider-1','field_615f13c3c0cf3'),(118698,3416,'title-slide-rb','What is Rebuilding?'),(118699,3416,'_title-slide-rb','field_615f2512c338c'),(118700,3416,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(118701,3416,'_text-slide-rb','field_615f24e2c338b'),(118702,3416,'img-slider-2','2939'),(118703,3416,'_img-slider-2','field_615f2539c338d'),(118704,3416,'title-slide-rp','What is Replatforming?'),(118705,3416,'_title-slide-rp','field_615f27d9335b6'),(118706,3416,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(118707,3416,'_text-slide-rp','field_615f27ee335b7'),(118708,3416,'img-slider-3','2940'),(118709,3416,'_img-slider-3','field_615f27ff335b8'),(118710,3416,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(118711,3416,'_title-after-slider-h4','field_6172940c9f539'),(118712,3416,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(118713,3416,'_text-data-driven','field_61729471e80a2'),(118714,3416,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(118715,3416,'_text-tags','field_617295261e2bc'),(118716,3416,'img-app-modernization','2941'),(118717,3416,'_img-app-modernization','field_617295ac82cd3'),(118718,3416,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(118719,3416,'_phrase-rb-rp','field_6172960479081'),(118720,3416,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(118721,3416,'_phrase-tc','field_617296a28447f'),(118722,3416,'icon-t','2942'),(118723,3416,'_icon-t','field_617298d4928e0'),(118724,3416,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(118725,3416,'_team-member','field_6172995811847'),(118726,3416,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(118727,3416,'_phrase-consulting','field_61729ea05b9e6'),(118728,3416,'image-consulting','2887'),(118729,3416,'_image-consulting','field_61729f356923f'),(118730,3416,'button-consulting','Book consultation now'),(118731,3416,'_button-consulting','field_61729fcbe169a'),(118732,3416,'services-title','Services - Cloud Native Applications solutions:'),(118733,3416,'_services-title','field_6172a01105ae7'),(118734,3416,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(118735,3416,'_services-col-left','field_6172a091834a5'),(118736,3416,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(118737,3416,'_services-col-right','field_6172a0a9834a6'),(118738,3416,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(118739,3416,'_phrase-services','field_6172a1941f2ef'),(118740,3416,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(118741,3416,'_tag-services','field_6172a1ebc36e4'),(118742,3417,'_pinterest_shares','0'),(118743,3417,'_total_shares','0'),(118751,3372,'values-title','Business Value
The Translucent Value:'),(118752,3372,'_values-title','field_6172a2a40fd02'),(118753,3418,'top-banner','3080'),(118754,3418,'_top-banner','field_615ea94aa14ad'),(118755,3418,'top-title','Cloud Native Applications'),(118756,3418,'_top-title','field_615ea986a14ae'),(118757,3418,'purple-icon-sq','2934'),(118758,3418,'_purple-icon-sq','field_615eb6e1990d3'),(118759,3418,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(118760,3418,'_phrase-1','field_615ec3e936adb'),(118761,3418,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(118762,3418,'_phrase-2','field_615ec4b052c68'),(118763,3418,'purple-icon-b','2935'),(118764,3418,'_purple-icon-b','field_615ec54f0247b'),(118765,3418,'phrase-icon','Building new applications'),(118766,3418,'_phrase-icon','field_615ec5eb0499b'),(118767,3418,'phrase-i-subtitle','What is Building?'),(118768,3418,'_phrase-i-subtitle','field_615ec6aaadf65'),(118769,3418,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(118770,3418,'_text-i-sec','field_615ec761c96fb'),(118771,3418,'purple-quote-img','2936'),(118772,3418,'_purple-quote-img','field_615eca8c68d41'),(118773,3418,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(118774,3418,'_phrase-slider-1','field_615ed12966bce'),(118775,3418,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(118776,3418,'_text-slider-1','field_615ed1ea36c7c'),(118777,3418,'rb-icon-slider','2938'),(118778,3418,'_rb-icon-slider','field_615ed3500b12c'),(118779,3418,'phrase-rb','What is Rebuilding?'),(118780,3418,'_phrase-rb','field_615f0f2dc37ac'),(118781,3418,'link-rb','#rb'),(118782,3418,'_link-rb','field_615f10dc69c6c'),(118783,3418,'rp-icon-slider',''),(118784,3418,'_rp-icon-slider','field_615ed383c1a5e'),(118785,3418,'phrase-rp','What is Replatforming?'),(118786,3418,'_phrase-rp','field_615f0f63c37ad'),(118787,3418,'link-rp','#rp'),(118788,3418,'_link-rp','field_615f1218b6ffd'),(118789,3418,'img-slider-1','2940'),(118790,3418,'_img-slider-1','field_615f13c3c0cf3'),(118791,3418,'title-slide-rb','What is Rebuilding?'),(118792,3418,'_title-slide-rb','field_615f2512c338c'),(118793,3418,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(118794,3418,'_text-slide-rb','field_615f24e2c338b'),(118795,3418,'img-slider-2','2939'),(118796,3418,'_img-slider-2','field_615f2539c338d'),(118797,3418,'title-slide-rp','What is Replatforming?'),(118798,3418,'_title-slide-rp','field_615f27d9335b6'),(118799,3418,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(118800,3418,'_text-slide-rp','field_615f27ee335b7'),(118801,3418,'img-slider-3','2940'),(118802,3418,'_img-slider-3','field_615f27ff335b8'),(118803,3418,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(118804,3418,'_title-after-slider-h4','field_6172940c9f539'),(118805,3418,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(118806,3418,'_text-data-driven','field_61729471e80a2'),(118807,3418,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(118808,3418,'_text-tags','field_617295261e2bc'),(118809,3418,'img-app-modernization','2941'),(118810,3418,'_img-app-modernization','field_617295ac82cd3'),(118811,3418,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(118812,3418,'_phrase-rb-rp','field_6172960479081'),(118813,3418,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(118814,3418,'_phrase-tc','field_617296a28447f'),(118815,3418,'icon-t','2942'),(118816,3418,'_icon-t','field_617298d4928e0'),(118817,3418,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(118818,3418,'_team-member','field_6172995811847'),(118819,3418,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(118820,3418,'_phrase-consulting','field_61729ea05b9e6'),(118821,3418,'image-consulting','2887'),(118822,3418,'_image-consulting','field_61729f356923f'),(118823,3418,'button-consulting','Book consultation now'),(118824,3418,'_button-consulting','field_61729fcbe169a'),(118825,3418,'services-title','Services - Cloud Native Applications solutions:'),(118826,3418,'_services-title','field_6172a01105ae7'),(118827,3418,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(118828,3418,'_services-col-left','field_6172a091834a5'),(118829,3418,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(118830,3418,'_services-col-right','field_6172a0a9834a6'),(118831,3418,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(118832,3418,'_phrase-services','field_6172a1941f2ef'),(118833,3418,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(118834,3418,'_tag-services','field_6172a1ebc36e4'),(118835,3418,'values-title','Business Value
The Translucent Value:'),(118836,3418,'_values-title','field_6172a2a40fd02'),(118837,3419,'top-banner','3080'),(118838,3419,'_top-banner','field_615ea94aa14ad'),(118839,3419,'top-title','Cloud Native Applications'),(118840,3419,'_top-title','field_615ea986a14ae'),(118841,3419,'purple-icon-sq','2934'),(118842,3419,'_purple-icon-sq','field_615eb6e1990d3'),(118843,3419,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(118844,3419,'_phrase-1','field_615ec3e936adb'),(118845,3419,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(118846,3419,'_phrase-2','field_615ec4b052c68'),(118847,3419,'purple-icon-b','2935'),(118848,3419,'_purple-icon-b','field_615ec54f0247b'),(118849,3419,'phrase-icon','Building new applications'),(118850,3419,'_phrase-icon','field_615ec5eb0499b'),(118851,3419,'phrase-i-subtitle','What is Building?'),(118852,3419,'_phrase-i-subtitle','field_615ec6aaadf65'),(118853,3419,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(118854,3419,'_text-i-sec','field_615ec761c96fb'),(118855,3419,'purple-quote-img','2936'),(118856,3419,'_purple-quote-img','field_615eca8c68d41'),(118857,3419,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(118858,3419,'_phrase-slider-1','field_615ed12966bce'),(118859,3419,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(118860,3419,'_text-slider-1','field_615ed1ea36c7c'),(118861,3419,'rb-icon-slider','2938'),(118862,3419,'_rb-icon-slider','field_615ed3500b12c'),(118863,3419,'phrase-rb','What is Rebuilding?'),(118864,3419,'_phrase-rb','field_615f0f2dc37ac'),(118865,3419,'link-rb','#rb'),(118866,3419,'_link-rb','field_615f10dc69c6c'),(118867,3419,'rp-icon-slider',''),(118868,3419,'_rp-icon-slider','field_615ed383c1a5e'),(118869,3419,'phrase-rp','What is Replatforming?'),(118870,3419,'_phrase-rp','field_615f0f63c37ad'),(118871,3419,'link-rp','#rp'),(118872,3419,'_link-rp','field_615f1218b6ffd'),(118873,3419,'img-slider-1','2940'),(118874,3419,'_img-slider-1','field_615f13c3c0cf3'),(118875,3419,'title-slide-rb','What is Rebuilding?'),(118876,3419,'_title-slide-rb','field_615f2512c338c'),(118877,3419,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(118878,3419,'_text-slide-rb','field_615f24e2c338b'),(118879,3419,'img-slider-2','2939'),(118880,3419,'_img-slider-2','field_615f2539c338d'),(118881,3419,'title-slide-rp','What is Replatforming?'),(118882,3419,'_title-slide-rp','field_615f27d9335b6'),(118883,3419,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(118884,3419,'_text-slide-rp','field_615f27ee335b7'),(118885,3419,'img-slider-3','2940'),(118886,3419,'_img-slider-3','field_615f27ff335b8'),(118887,3419,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(118888,3419,'_title-after-slider-h4','field_6172940c9f539'),(118889,3419,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(118890,3419,'_text-data-driven','field_61729471e80a2'),(118891,3419,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(118892,3419,'_text-tags','field_617295261e2bc'),(118893,3419,'img-app-modernization','2941'),(118894,3419,'_img-app-modernization','field_617295ac82cd3'),(118895,3419,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(118896,3419,'_phrase-rb-rp','field_6172960479081'),(118897,3419,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(118898,3419,'_phrase-tc','field_617296a28447f'),(118899,3419,'icon-t','2942'),(118900,3419,'_icon-t','field_617298d4928e0'),(118901,3419,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(118902,3419,'_team-member','field_6172995811847'),(118903,3419,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(118904,3419,'_phrase-consulting','field_61729ea05b9e6'),(118905,3419,'image-consulting','2887'),(118906,3419,'_image-consulting','field_61729f356923f'),(118907,3419,'button-consulting','Book consultation now'),(118908,3419,'_button-consulting','field_61729fcbe169a'),(118909,3419,'services-title','Services - Cloud Native Applications solutions:'),(118910,3419,'_services-title','field_6172a01105ae7'),(118911,3419,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(118912,3419,'_services-col-left','field_6172a091834a5'),(118913,3419,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(118914,3419,'_services-col-right','field_6172a0a9834a6'),(118915,3419,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(118916,3419,'_phrase-services','field_6172a1941f2ef'),(118917,3419,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(118918,3419,'_tag-services','field_6172a1ebc36e4'),(118919,3419,'values-title','Business Value
The Translucent Value:'),(118920,3419,'_values-title','field_6172a2a40fd02'),(118921,3420,'_pinterest_shares','0'),(118922,3420,'_total_shares','0'),(118930,3372,'values-phrase','What does Cloud Native Data Driven Application Modernization mean for your Business?'),(118931,3372,'_values-phrase','field_6172a3355f6bb'),(118932,3421,'top-banner','3080'),(118933,3421,'_top-banner','field_615ea94aa14ad'),(118934,3421,'top-title','Cloud Native Applications'),(118935,3421,'_top-title','field_615ea986a14ae'),(118936,3421,'purple-icon-sq','2934'),(118937,3421,'_purple-icon-sq','field_615eb6e1990d3'),(118938,3421,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(118939,3421,'_phrase-1','field_615ec3e936adb'),(118940,3421,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(118941,3421,'_phrase-2','field_615ec4b052c68'),(118942,3421,'purple-icon-b','2935'),(118943,3421,'_purple-icon-b','field_615ec54f0247b'),(118944,3421,'phrase-icon','Building new applications'),(118945,3421,'_phrase-icon','field_615ec5eb0499b'),(118946,3421,'phrase-i-subtitle','What is Building?'),(118947,3421,'_phrase-i-subtitle','field_615ec6aaadf65'),(118948,3421,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(118949,3421,'_text-i-sec','field_615ec761c96fb'),(118950,3421,'purple-quote-img','2936'),(118951,3421,'_purple-quote-img','field_615eca8c68d41'),(118952,3421,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(118953,3421,'_phrase-slider-1','field_615ed12966bce'),(118954,3421,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(118955,3421,'_text-slider-1','field_615ed1ea36c7c'),(118956,3421,'rb-icon-slider','2938'),(118957,3421,'_rb-icon-slider','field_615ed3500b12c'),(118958,3421,'phrase-rb','What is Rebuilding?'),(118959,3421,'_phrase-rb','field_615f0f2dc37ac'),(118960,3421,'link-rb','#rb'),(118961,3421,'_link-rb','field_615f10dc69c6c'),(118962,3421,'rp-icon-slider',''),(118963,3421,'_rp-icon-slider','field_615ed383c1a5e'),(118964,3421,'phrase-rp','What is Replatforming?'),(118965,3421,'_phrase-rp','field_615f0f63c37ad'),(118966,3421,'link-rp','#rp'),(118967,3421,'_link-rp','field_615f1218b6ffd'),(118968,3421,'img-slider-1','2940'),(118969,3421,'_img-slider-1','field_615f13c3c0cf3'),(118970,3421,'title-slide-rb','What is Rebuilding?'),(118971,3421,'_title-slide-rb','field_615f2512c338c'),(118972,3421,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(118973,3421,'_text-slide-rb','field_615f24e2c338b'),(118974,3421,'img-slider-2','2939'),(118975,3421,'_img-slider-2','field_615f2539c338d'),(118976,3421,'title-slide-rp','What is Replatforming?'),(118977,3421,'_title-slide-rp','field_615f27d9335b6'),(118978,3421,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(118979,3421,'_text-slide-rp','field_615f27ee335b7'),(118980,3421,'img-slider-3','2940'),(118981,3421,'_img-slider-3','field_615f27ff335b8'),(118982,3421,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(118983,3421,'_title-after-slider-h4','field_6172940c9f539'),(118984,3421,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(118985,3421,'_text-data-driven','field_61729471e80a2'),(118986,3421,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(118987,3421,'_text-tags','field_617295261e2bc'),(118988,3421,'img-app-modernization','2941'),(118989,3421,'_img-app-modernization','field_617295ac82cd3'),(118990,3421,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(118991,3421,'_phrase-rb-rp','field_6172960479081'),(118992,3421,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(118993,3421,'_phrase-tc','field_617296a28447f'),(118994,3421,'icon-t','2942'),(118995,3421,'_icon-t','field_617298d4928e0'),(118996,3421,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(118997,3421,'_team-member','field_6172995811847'),(118998,3421,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(118999,3421,'_phrase-consulting','field_61729ea05b9e6'),(119000,3421,'image-consulting','2887'),(119001,3421,'_image-consulting','field_61729f356923f'),(119002,3421,'button-consulting','Book consultation now'),(119003,3421,'_button-consulting','field_61729fcbe169a'),(119004,3421,'services-title','Services - Cloud Native Applications solutions:'),(119005,3421,'_services-title','field_6172a01105ae7'),(119006,3421,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(119007,3421,'_services-col-left','field_6172a091834a5'),(119008,3421,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(119009,3421,'_services-col-right','field_6172a0a9834a6'),(119010,3421,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(119011,3421,'_phrase-services','field_6172a1941f2ef'),(119012,3421,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(119013,3421,'_tag-services','field_6172a1ebc36e4'),(119014,3421,'values-title','Business Value
The Translucent Value:'),(119015,3421,'_values-title','field_6172a2a40fd02'),(119016,3421,'values-phrase','What does Cloud Native Data Driven Application Modernization mean for your Business?'),(119017,3421,'_values-phrase','field_6172a3355f6bb'),(119018,3422,'top-banner','3080'),(119019,3422,'_top-banner','field_615ea94aa14ad'),(119020,3422,'top-title','Cloud Native Applications'),(119021,3422,'_top-title','field_615ea986a14ae'),(119022,3422,'purple-icon-sq','2934'),(119023,3422,'_purple-icon-sq','field_615eb6e1990d3'),(119024,3422,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(119025,3422,'_phrase-1','field_615ec3e936adb'),(119026,3422,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(119027,3422,'_phrase-2','field_615ec4b052c68'),(119028,3422,'purple-icon-b','2935'),(119029,3422,'_purple-icon-b','field_615ec54f0247b'),(119030,3422,'phrase-icon','Building new applications'),(119031,3422,'_phrase-icon','field_615ec5eb0499b'),(119032,3422,'phrase-i-subtitle','What is Building?'),(119033,3422,'_phrase-i-subtitle','field_615ec6aaadf65'),(119034,3422,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(119035,3422,'_text-i-sec','field_615ec761c96fb'),(119036,3422,'purple-quote-img','2936'),(119037,3422,'_purple-quote-img','field_615eca8c68d41'),(119038,3422,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(119039,3422,'_phrase-slider-1','field_615ed12966bce'),(119040,3422,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(119041,3422,'_text-slider-1','field_615ed1ea36c7c'),(119042,3422,'rb-icon-slider','2938'),(119043,3422,'_rb-icon-slider','field_615ed3500b12c'),(119044,3422,'phrase-rb','What is Rebuilding?'),(119045,3422,'_phrase-rb','field_615f0f2dc37ac'),(119046,3422,'link-rb','#rb'),(119047,3422,'_link-rb','field_615f10dc69c6c'),(119048,3422,'rp-icon-slider',''),(119049,3422,'_rp-icon-slider','field_615ed383c1a5e'),(119050,3422,'phrase-rp','What is Replatforming?'),(119051,3422,'_phrase-rp','field_615f0f63c37ad'),(119052,3422,'link-rp','#rp'),(119053,3422,'_link-rp','field_615f1218b6ffd'),(119054,3422,'img-slider-1','2940'),(119055,3422,'_img-slider-1','field_615f13c3c0cf3'),(119056,3422,'title-slide-rb','What is Rebuilding?'),(119057,3422,'_title-slide-rb','field_615f2512c338c'),(119058,3422,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(119059,3422,'_text-slide-rb','field_615f24e2c338b'),(119060,3422,'img-slider-2','2939'),(119061,3422,'_img-slider-2','field_615f2539c338d'),(119062,3422,'title-slide-rp','What is Replatforming?'),(119063,3422,'_title-slide-rp','field_615f27d9335b6'),(119064,3422,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(119065,3422,'_text-slide-rp','field_615f27ee335b7'),(119066,3422,'img-slider-3','2940'),(119067,3422,'_img-slider-3','field_615f27ff335b8'),(119068,3422,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(119069,3422,'_title-after-slider-h4','field_6172940c9f539'),(119070,3422,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(119071,3422,'_text-data-driven','field_61729471e80a2'),(119072,3422,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(119073,3422,'_text-tags','field_617295261e2bc'),(119074,3422,'img-app-modernization','2941'),(119075,3422,'_img-app-modernization','field_617295ac82cd3'),(119076,3422,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(119077,3422,'_phrase-rb-rp','field_6172960479081'),(119078,3422,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(119079,3422,'_phrase-tc','field_617296a28447f'),(119080,3422,'icon-t','2942'),(119081,3422,'_icon-t','field_617298d4928e0'),(119082,3422,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(119083,3422,'_team-member','field_6172995811847'),(119084,3422,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(119085,3422,'_phrase-consulting','field_61729ea05b9e6'),(119086,3422,'image-consulting','2887'),(119087,3422,'_image-consulting','field_61729f356923f'),(119088,3422,'button-consulting','Book consultation now'),(119089,3422,'_button-consulting','field_61729fcbe169a'),(119090,3422,'services-title','Services - Cloud Native Applications solutions:'),(119091,3422,'_services-title','field_6172a01105ae7'),(119092,3422,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(119093,3422,'_services-col-left','field_6172a091834a5'),(119094,3422,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(119095,3422,'_services-col-right','field_6172a0a9834a6'),(119096,3422,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(119097,3422,'_phrase-services','field_6172a1941f2ef'),(119098,3422,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(119099,3422,'_tag-services','field_6172a1ebc36e4'),(119100,3422,'values-title','Business Value
The Translucent Value:'),(119101,3422,'_values-title','field_6172a2a40fd02'),(119102,3422,'values-phrase','What does Cloud Native Data Driven Application Modernization mean for your Business?'),(119103,3422,'_values-phrase','field_6172a3355f6bb'),(119104,3423,'top-banner','3080'),(119105,3423,'_top-banner','field_615ea94aa14ad'),(119106,3423,'top-title','Cloud Native Applications'),(119107,3423,'_top-title','field_615ea986a14ae'),(119108,3423,'purple-icon-sq','2934'),(119109,3423,'_purple-icon-sq','field_615eb6e1990d3'),(119110,3423,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(119111,3423,'_phrase-1','field_615ec3e936adb'),(119112,3423,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(119113,3423,'_phrase-2','field_615ec4b052c68'),(119114,3423,'purple-icon-b','2935'),(119115,3423,'_purple-icon-b','field_615ec54f0247b'),(119116,3423,'phrase-icon','Building new applications'),(119117,3423,'_phrase-icon','field_615ec5eb0499b'),(119118,3423,'phrase-i-subtitle','What is Building?'),(119119,3423,'_phrase-i-subtitle','field_615ec6aaadf65'),(119120,3423,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(119121,3423,'_text-i-sec','field_615ec761c96fb'),(119122,3423,'purple-quote-img','2936'),(119123,3423,'_purple-quote-img','field_615eca8c68d41'),(119124,3423,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(119125,3423,'_phrase-slider-1','field_615ed12966bce'),(119126,3423,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(119127,3423,'_text-slider-1','field_615ed1ea36c7c'),(119128,3423,'rb-icon-slider','2938'),(119129,3423,'_rb-icon-slider','field_615ed3500b12c'),(119130,3423,'phrase-rb','What is Rebuilding?'),(119131,3423,'_phrase-rb','field_615f0f2dc37ac'),(119132,3423,'link-rb','#rb'),(119133,3423,'_link-rb','field_615f10dc69c6c'),(119134,3423,'rp-icon-slider',''),(119135,3423,'_rp-icon-slider','field_615ed383c1a5e'),(119136,3423,'phrase-rp','What is Replatforming?'),(119137,3423,'_phrase-rp','field_615f0f63c37ad'),(119138,3423,'link-rp','#rp'),(119139,3423,'_link-rp','field_615f1218b6ffd'),(119140,3423,'img-slider-1','2940'),(119141,3423,'_img-slider-1','field_615f13c3c0cf3'),(119142,3423,'title-slide-rb','What is Rebuilding?'),(119143,3423,'_title-slide-rb','field_615f2512c338c'),(119144,3423,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(119145,3423,'_text-slide-rb','field_615f24e2c338b'),(119146,3423,'img-slider-2','2939'),(119147,3423,'_img-slider-2','field_615f2539c338d'),(119148,3423,'title-slide-rp','What is Replatforming?'),(119149,3423,'_title-slide-rp','field_615f27d9335b6'),(119150,3423,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(119151,3423,'_text-slide-rp','field_615f27ee335b7'),(119152,3423,'img-slider-3','2940'),(119153,3423,'_img-slider-3','field_615f27ff335b8'),(119154,3423,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(119155,3423,'_title-after-slider-h4','field_6172940c9f539'),(119156,3423,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(119157,3423,'_text-data-driven','field_61729471e80a2'),(119158,3423,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(119159,3423,'_text-tags','field_617295261e2bc'),(119160,3423,'img-app-modernization','2941'),(119161,3423,'_img-app-modernization','field_617295ac82cd3'),(119162,3423,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(119163,3423,'_phrase-rb-rp','field_6172960479081'),(119164,3423,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(119165,3423,'_phrase-tc','field_617296a28447f'),(119166,3423,'icon-t','2942'),(119167,3423,'_icon-t','field_617298d4928e0'),(119168,3423,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(119169,3423,'_team-member','field_6172995811847'),(119170,3423,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(119171,3423,'_phrase-consulting','field_61729ea05b9e6'),(119172,3423,'image-consulting','2887'),(119173,3423,'_image-consulting','field_61729f356923f'),(119174,3423,'button-consulting','Book consultation now'),(119175,3423,'_button-consulting','field_61729fcbe169a'),(119176,3423,'services-title','Services - Cloud Native Applications solutions:'),(119177,3423,'_services-title','field_6172a01105ae7'),(119178,3423,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(119179,3423,'_services-col-left','field_6172a091834a5'),(119180,3423,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(119181,3423,'_services-col-right','field_6172a0a9834a6'),(119182,3423,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(119183,3423,'_phrase-services','field_6172a1941f2ef'),(119184,3423,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(119185,3423,'_tag-services','field_6172a1ebc36e4'),(119186,3423,'values-title','Business Value
The Translucent Value:'),(119187,3423,'_values-title','field_6172a2a40fd02'),(119188,3423,'values-phrase','What does Cloud Native Data Driven Application Modernization mean for your Business?'),(119189,3423,'_values-phrase','field_6172a3355f6bb'),(119199,3372,'values-text','We learn about what makes your business and physical operations valuable to your clients and modernize that
\r\nOnshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions
\r\nData Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI
\r\nResponsive design makes your applications available across desktop, mobile, tablets and laptops 24/7
\r\nWe go above and beyond to deliver and treat your solution like our own
\r\nConstant proactive communication. Adjusting project milestones and communicating the outcomes
\r\nTranslucent application development and application modernization reduces cost
\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(119200,3372,'_values-text','field_6172a44bd49d9'),(119201,3425,'top-banner','3080'),(119202,3425,'_top-banner','field_615ea94aa14ad'),(119203,3425,'top-title','Cloud Native Applications'),(119204,3425,'_top-title','field_615ea986a14ae'),(119205,3425,'purple-icon-sq','2934'),(119206,3425,'_purple-icon-sq','field_615eb6e1990d3'),(119207,3425,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(119208,3425,'_phrase-1','field_615ec3e936adb'),(119209,3425,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(119210,3425,'_phrase-2','field_615ec4b052c68'),(119211,3425,'purple-icon-b','2935'),(119212,3425,'_purple-icon-b','field_615ec54f0247b'),(119213,3425,'phrase-icon','Building new applications'),(119214,3425,'_phrase-icon','field_615ec5eb0499b'),(119215,3425,'phrase-i-subtitle','What is Building?'),(119216,3425,'_phrase-i-subtitle','field_615ec6aaadf65'),(119217,3425,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(119218,3425,'_text-i-sec','field_615ec761c96fb'),(119219,3425,'purple-quote-img','2936'),(119220,3425,'_purple-quote-img','field_615eca8c68d41'),(119221,3425,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(119222,3425,'_phrase-slider-1','field_615ed12966bce'),(119223,3425,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(119224,3425,'_text-slider-1','field_615ed1ea36c7c'),(119225,3425,'rb-icon-slider','2938'),(119226,3425,'_rb-icon-slider','field_615ed3500b12c'),(119227,3425,'phrase-rb','What is Rebuilding?'),(119228,3425,'_phrase-rb','field_615f0f2dc37ac'),(119229,3425,'link-rb','#rb'),(119230,3425,'_link-rb','field_615f10dc69c6c'),(119231,3425,'rp-icon-slider',''),(119232,3425,'_rp-icon-slider','field_615ed383c1a5e'),(119233,3425,'phrase-rp','What is Replatforming?'),(119234,3425,'_phrase-rp','field_615f0f63c37ad'),(119235,3425,'link-rp','#rp'),(119236,3425,'_link-rp','field_615f1218b6ffd'),(119237,3425,'img-slider-1','2940'),(119238,3425,'_img-slider-1','field_615f13c3c0cf3'),(119239,3425,'title-slide-rb','What is Rebuilding?'),(119240,3425,'_title-slide-rb','field_615f2512c338c'),(119241,3425,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(119242,3425,'_text-slide-rb','field_615f24e2c338b'),(119243,3425,'img-slider-2','2939'),(119244,3425,'_img-slider-2','field_615f2539c338d'),(119245,3425,'title-slide-rp','What is Replatforming?'),(119246,3425,'_title-slide-rp','field_615f27d9335b6'),(119247,3425,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(119248,3425,'_text-slide-rp','field_615f27ee335b7'),(119249,3425,'img-slider-3','2940'),(119250,3425,'_img-slider-3','field_615f27ff335b8'),(119251,3425,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(119252,3425,'_title-after-slider-h4','field_6172940c9f539'),(119253,3425,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(119254,3425,'_text-data-driven','field_61729471e80a2'),(119255,3425,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(119256,3425,'_text-tags','field_617295261e2bc'),(119257,3425,'img-app-modernization','2941'),(119258,3425,'_img-app-modernization','field_617295ac82cd3'),(119259,3425,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(119260,3425,'_phrase-rb-rp','field_6172960479081'),(119261,3425,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(119262,3425,'_phrase-tc','field_617296a28447f'),(119263,3425,'icon-t','2942'),(119264,3425,'_icon-t','field_617298d4928e0'),(119265,3425,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(119266,3425,'_team-member','field_6172995811847'),(119267,3425,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(119268,3425,'_phrase-consulting','field_61729ea05b9e6'),(119269,3425,'image-consulting','2887'),(119270,3425,'_image-consulting','field_61729f356923f'),(119271,3425,'button-consulting','Book consultation now'),(119272,3425,'_button-consulting','field_61729fcbe169a'),(119273,3425,'services-title','Services - Cloud Native Applications solutions:'),(119274,3425,'_services-title','field_6172a01105ae7'),(119275,3425,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(119276,3425,'_services-col-left','field_6172a091834a5'),(119277,3425,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(119278,3425,'_services-col-right','field_6172a0a9834a6'),(119279,3425,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(119280,3425,'_phrase-services','field_6172a1941f2ef'),(119281,3425,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(119282,3425,'_tag-services','field_6172a1ebc36e4'),(119283,3425,'values-title','Business Value
The Translucent Value:'),(119284,3425,'_values-title','field_6172a2a40fd02'),(119285,3425,'values-phrase','What does Cloud Native Data Driven Application Modernization mean for your Business?'),(119286,3425,'_values-phrase','field_6172a3355f6bb'),(119287,3425,'values-text','We learn about what makes your business and physical operations valuable to your clients and modernize that
\r\nOnshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions
\r\nData Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI
\r\nResponsive design makes your applications available across desktop, mobile, tablets and laptops 24/7
\r\nWe go above and beyond to deliver and treat your solution like our own
\r\nConstant proactive communication. Adjusting project milestones and communicating the outcomes
\r\nTranslucent application development and application modernization reduces cost
\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(119288,3425,'_values-text','field_6172a44bd49d9'),(119289,3426,'top-banner','3080'),(119290,3426,'_top-banner','field_615ea94aa14ad'),(119291,3426,'top-title','Cloud Native Applications'),(119292,3426,'_top-title','field_615ea986a14ae'),(119293,3426,'purple-icon-sq','2934'),(119294,3426,'_purple-icon-sq','field_615eb6e1990d3'),(119295,3426,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(119296,3426,'_phrase-1','field_615ec3e936adb'),(119297,3426,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(119298,3426,'_phrase-2','field_615ec4b052c68'),(119299,3426,'purple-icon-b','2935'),(119300,3426,'_purple-icon-b','field_615ec54f0247b'),(119301,3426,'phrase-icon','Building new applications'),(119302,3426,'_phrase-icon','field_615ec5eb0499b'),(119303,3426,'phrase-i-subtitle','What is Building?'),(119304,3426,'_phrase-i-subtitle','field_615ec6aaadf65'),(119305,3426,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(119306,3426,'_text-i-sec','field_615ec761c96fb'),(119307,3426,'purple-quote-img','2936'),(119308,3426,'_purple-quote-img','field_615eca8c68d41'),(119309,3426,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(119310,3426,'_phrase-slider-1','field_615ed12966bce'),(119311,3426,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(119312,3426,'_text-slider-1','field_615ed1ea36c7c'),(119313,3426,'rb-icon-slider','2938'),(119314,3426,'_rb-icon-slider','field_615ed3500b12c'),(119315,3426,'phrase-rb','What is Rebuilding?'),(119316,3426,'_phrase-rb','field_615f0f2dc37ac'),(119317,3426,'link-rb','#rb'),(119318,3426,'_link-rb','field_615f10dc69c6c'),(119319,3426,'rp-icon-slider',''),(119320,3426,'_rp-icon-slider','field_615ed383c1a5e'),(119321,3426,'phrase-rp','What is Replatforming?'),(119322,3426,'_phrase-rp','field_615f0f63c37ad'),(119323,3426,'link-rp','#rp'),(119324,3426,'_link-rp','field_615f1218b6ffd'),(119325,3426,'img-slider-1','2940'),(119326,3426,'_img-slider-1','field_615f13c3c0cf3'),(119327,3426,'title-slide-rb','What is Rebuilding?'),(119328,3426,'_title-slide-rb','field_615f2512c338c'),(119329,3426,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(119330,3426,'_text-slide-rb','field_615f24e2c338b'),(119331,3426,'img-slider-2','2939'),(119332,3426,'_img-slider-2','field_615f2539c338d'),(119333,3426,'title-slide-rp','What is Replatforming?'),(119334,3426,'_title-slide-rp','field_615f27d9335b6'),(119335,3426,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(119336,3426,'_text-slide-rp','field_615f27ee335b7'),(119337,3426,'img-slider-3','2940'),(119338,3426,'_img-slider-3','field_615f27ff335b8'),(119339,3426,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(119340,3426,'_title-after-slider-h4','field_6172940c9f539'),(119341,3426,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(119342,3426,'_text-data-driven','field_61729471e80a2'),(119343,3426,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(119344,3426,'_text-tags','field_617295261e2bc'),(119345,3426,'img-app-modernization','2941'),(119346,3426,'_img-app-modernization','field_617295ac82cd3'),(119347,3426,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(119348,3426,'_phrase-rb-rp','field_6172960479081'),(119349,3426,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(119350,3426,'_phrase-tc','field_617296a28447f'),(119351,3426,'icon-t','2942'),(119352,3426,'_icon-t','field_617298d4928e0'),(119353,3426,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(119354,3426,'_team-member','field_6172995811847'),(119355,3426,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(119356,3426,'_phrase-consulting','field_61729ea05b9e6'),(119357,3426,'image-consulting','2887'),(119358,3426,'_image-consulting','field_61729f356923f'),(119359,3426,'button-consulting','Book consultation now'),(119360,3426,'_button-consulting','field_61729fcbe169a'),(119361,3426,'services-title','Services - Cloud Native Applications solutions:'),(119362,3426,'_services-title','field_6172a01105ae7'),(119363,3426,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(119364,3426,'_services-col-left','field_6172a091834a5'),(119365,3426,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(119366,3426,'_services-col-right','field_6172a0a9834a6'),(119367,3426,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(119368,3426,'_phrase-services','field_6172a1941f2ef'),(119369,3426,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(119370,3426,'_tag-services','field_6172a1ebc36e4'),(119371,3426,'values-title','Business Value
The Translucent Value:'),(119372,3426,'_values-title','field_6172a2a40fd02'),(119373,3426,'values-phrase','What does Cloud Native Data Driven Application Modernization mean for your Business?'),(119374,3426,'_values-phrase','field_6172a3355f6bb'),(119375,3426,'values-text','We learn about what makes your business and physical operations valuable to your clients and modernize that
\r\nOnshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions
\r\nData Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI
\r\nResponsive design makes your applications available across desktop, mobile, tablets and laptops 24/7
\r\nWe go above and beyond to deliver and treat your solution like our own
\r\nConstant proactive communication. Adjusting project milestones and communicating the outcomes
\r\nTranslucent application development and application modernization reduces cost
\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(119376,3426,'_values-text','field_6172a44bd49d9'),(119377,3424,'_pinterest_shares','0'),(119378,3424,'_total_shares','0'),(119380,3427,'_pinterest_shares','0'),(119381,3427,'_total_shares','0'),(119383,3428,'_pinterest_shares','0'),(119384,3428,'_total_shares','0'),(119386,3429,'_pinterest_shares','0'),(119387,3429,'_total_shares','0'),(119389,3430,'_pinterest_shares','0'),(119390,3430,'_total_shares','0'),(119392,3431,'_pinterest_shares','0'),(119393,3431,'_total_shares','0'),(119395,3432,'_pinterest_shares','0'),(119396,3432,'_total_shares','0'),(119398,3433,'_pinterest_shares','0'),(119399,3433,'_total_shares','0'),(119401,3434,'_pinterest_shares','0'),(119402,3434,'_total_shares','0'),(119410,3372,'values-item-1','We learn about what makes your business and physical operations valuable to your clients and modernize that'),(119411,3372,'_values-item-1','field_6172a44bd49d9'),(119412,3372,'values-item-2','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions'),(119413,3372,'_values-item-2','field_6172a5a7e1457'),(119414,3372,'values-item-3','Data Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI'),(119415,3372,'_values-item-3','field_6172a5b0e1458'),(119416,3372,'values-item-4','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(119417,3372,'_values-item-4','field_6172a5b7e1459'),(119418,3372,'values-item-5','We go above and beyond to deliver and treat your solution like our own'),(119419,3372,'_values-item-5','field_6172a5bee145a'),(119420,3372,'values-item-6','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(119421,3372,'_values-item-6','field_6172a5c4e145b'),(119422,3372,'values-item-7','Translucent application development and application modernization reduces cost'),(119423,3372,'_values-item-7','field_6172a5cbe145c'),(119424,3372,'values-item-8','Automation of the employee and customer experience saves money and makes money'),(119425,3372,'_values-item-8','field_6172a5d3e145d'),(119426,3372,'values-item-9','strong>Increase profit
and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(119427,3372,'_values-item-9','field_6172a5dbe145e'),(119428,3435,'top-banner','3080'),(119429,3435,'_top-banner','field_615ea94aa14ad'),(119430,3435,'top-title','Cloud Native Applications'),(119431,3435,'_top-title','field_615ea986a14ae'),(119432,3435,'purple-icon-sq','2934'),(119433,3435,'_purple-icon-sq','field_615eb6e1990d3'),(119434,3435,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(119435,3435,'_phrase-1','field_615ec3e936adb'),(119436,3435,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(119437,3435,'_phrase-2','field_615ec4b052c68'),(119438,3435,'purple-icon-b','2935'),(119439,3435,'_purple-icon-b','field_615ec54f0247b'),(119440,3435,'phrase-icon','Building new applications'),(119441,3435,'_phrase-icon','field_615ec5eb0499b'),(119442,3435,'phrase-i-subtitle','What is Building?'),(119443,3435,'_phrase-i-subtitle','field_615ec6aaadf65'),(119444,3435,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(119445,3435,'_text-i-sec','field_615ec761c96fb'),(119446,3435,'purple-quote-img','2936'),(119447,3435,'_purple-quote-img','field_615eca8c68d41'),(119448,3435,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(119449,3435,'_phrase-slider-1','field_615ed12966bce'),(119450,3435,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(119451,3435,'_text-slider-1','field_615ed1ea36c7c'),(119452,3435,'rb-icon-slider','2938'),(119453,3435,'_rb-icon-slider','field_615ed3500b12c'),(119454,3435,'phrase-rb','What is Rebuilding?'),(119455,3435,'_phrase-rb','field_615f0f2dc37ac'),(119456,3435,'link-rb','#rb'),(119457,3435,'_link-rb','field_615f10dc69c6c'),(119458,3435,'rp-icon-slider',''),(119459,3435,'_rp-icon-slider','field_615ed383c1a5e'),(119460,3435,'phrase-rp','What is Replatforming?'),(119461,3435,'_phrase-rp','field_615f0f63c37ad'),(119462,3435,'link-rp','#rp'),(119463,3435,'_link-rp','field_615f1218b6ffd'),(119464,3435,'img-slider-1','2940'),(119465,3435,'_img-slider-1','field_615f13c3c0cf3'),(119466,3435,'title-slide-rb','What is Rebuilding?'),(119467,3435,'_title-slide-rb','field_615f2512c338c'),(119468,3435,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(119469,3435,'_text-slide-rb','field_615f24e2c338b'),(119470,3435,'img-slider-2','2939'),(119471,3435,'_img-slider-2','field_615f2539c338d'),(119472,3435,'title-slide-rp','What is Replatforming?'),(119473,3435,'_title-slide-rp','field_615f27d9335b6'),(119474,3435,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(119475,3435,'_text-slide-rp','field_615f27ee335b7'),(119476,3435,'img-slider-3','2940'),(119477,3435,'_img-slider-3','field_615f27ff335b8'),(119478,3435,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(119479,3435,'_title-after-slider-h4','field_6172940c9f539'),(119480,3435,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(119481,3435,'_text-data-driven','field_61729471e80a2'),(119482,3435,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(119483,3435,'_text-tags','field_617295261e2bc'),(119484,3435,'img-app-modernization','2941'),(119485,3435,'_img-app-modernization','field_617295ac82cd3'),(119486,3435,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(119487,3435,'_phrase-rb-rp','field_6172960479081'),(119488,3435,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(119489,3435,'_phrase-tc','field_617296a28447f'),(119490,3435,'icon-t','2942'),(119491,3435,'_icon-t','field_617298d4928e0'),(119492,3435,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(119493,3435,'_team-member','field_6172995811847'),(119494,3435,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(119495,3435,'_phrase-consulting','field_61729ea05b9e6'),(119496,3435,'image-consulting','2887'),(119497,3435,'_image-consulting','field_61729f356923f'),(119498,3435,'button-consulting','Book consultation now'),(119499,3435,'_button-consulting','field_61729fcbe169a'),(119500,3435,'services-title','Services - Cloud Native Applications solutions:'),(119501,3435,'_services-title','field_6172a01105ae7'),(119502,3435,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(119503,3435,'_services-col-left','field_6172a091834a5'),(119504,3435,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(119505,3435,'_services-col-right','field_6172a0a9834a6'),(119506,3435,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(119507,3435,'_phrase-services','field_6172a1941f2ef'),(119508,3435,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(119509,3435,'_tag-services','field_6172a1ebc36e4'),(119510,3435,'values-title','Business Value
The Translucent Value:'),(119511,3435,'_values-title','field_6172a2a40fd02'),(119512,3435,'values-phrase','What does Cloud Native Data Driven Application Modernization mean for your Business?'),(119513,3435,'_values-phrase','field_6172a3355f6bb'),(119514,3435,'values-text','We learn about what makes your business and physical operations valuable to your clients and modernize that
\r\nOnshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions
\r\nData Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI
\r\nResponsive design makes your applications available across desktop, mobile, tablets and laptops 24/7
\r\nWe go above and beyond to deliver and treat your solution like our own
\r\nConstant proactive communication. Adjusting project milestones and communicating the outcomes
\r\nTranslucent application development and application modernization reduces cost
\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(119515,3435,'_values-text','field_6172a44bd49d9'),(119516,3435,'values-item-1','We learn about what makes your business and physical operations valuable to your clients and modernize that'),(119517,3435,'_values-item-1','field_6172a44bd49d9'),(119518,3435,'values-item-2','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions'),(119519,3435,'_values-item-2','field_6172a5a7e1457'),(119520,3435,'values-item-3','Data Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI'),(119521,3435,'_values-item-3','field_6172a5b0e1458'),(119522,3435,'values-item-4','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(119523,3435,'_values-item-4','field_6172a5b7e1459'),(119524,3435,'values-item-5','We go above and beyond to deliver and treat your solution like our own'),(119525,3435,'_values-item-5','field_6172a5bee145a'),(119526,3435,'values-item-6','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(119527,3435,'_values-item-6','field_6172a5c4e145b'),(119528,3435,'values-item-7','Translucent application development and application modernization reduces cost'),(119529,3435,'_values-item-7','field_6172a5cbe145c'),(119530,3435,'values-item-8','Automation of the employee and customer experience saves money and makes money'),(119531,3435,'_values-item-8','field_6172a5d3e145d'),(119532,3435,'values-item-9','strong>Increase profit
and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditionsx'),(119533,3435,'_values-item-9','field_6172a5dbe145e'),(119534,3436,'top-banner','3080'),(119535,3436,'_top-banner','field_615ea94aa14ad'),(119536,3436,'top-title','Cloud Native Applications'),(119537,3436,'_top-title','field_615ea986a14ae'),(119538,3436,'purple-icon-sq','2934'),(119539,3436,'_purple-icon-sq','field_615eb6e1990d3'),(119540,3436,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(119541,3436,'_phrase-1','field_615ec3e936adb'),(119542,3436,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(119543,3436,'_phrase-2','field_615ec4b052c68'),(119544,3436,'purple-icon-b','2935'),(119545,3436,'_purple-icon-b','field_615ec54f0247b'),(119546,3436,'phrase-icon','Building new applications'),(119547,3436,'_phrase-icon','field_615ec5eb0499b'),(119548,3436,'phrase-i-subtitle','What is Building?'),(119549,3436,'_phrase-i-subtitle','field_615ec6aaadf65'),(119550,3436,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(119551,3436,'_text-i-sec','field_615ec761c96fb'),(119552,3436,'purple-quote-img','2936'),(119553,3436,'_purple-quote-img','field_615eca8c68d41'),(119554,3436,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(119555,3436,'_phrase-slider-1','field_615ed12966bce'),(119556,3436,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(119557,3436,'_text-slider-1','field_615ed1ea36c7c'),(119558,3436,'rb-icon-slider','2938'),(119559,3436,'_rb-icon-slider','field_615ed3500b12c'),(119560,3436,'phrase-rb','What is Rebuilding?'),(119561,3436,'_phrase-rb','field_615f0f2dc37ac'),(119562,3436,'link-rb','#rb'),(119563,3436,'_link-rb','field_615f10dc69c6c'),(119564,3436,'rp-icon-slider',''),(119565,3436,'_rp-icon-slider','field_615ed383c1a5e'),(119566,3436,'phrase-rp','What is Replatforming?'),(119567,3436,'_phrase-rp','field_615f0f63c37ad'),(119568,3436,'link-rp','#rp'),(119569,3436,'_link-rp','field_615f1218b6ffd'),(119570,3436,'img-slider-1','2940'),(119571,3436,'_img-slider-1','field_615f13c3c0cf3'),(119572,3436,'title-slide-rb','What is Rebuilding?'),(119573,3436,'_title-slide-rb','field_615f2512c338c'),(119574,3436,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(119575,3436,'_text-slide-rb','field_615f24e2c338b'),(119576,3436,'img-slider-2','2939'),(119577,3436,'_img-slider-2','field_615f2539c338d'),(119578,3436,'title-slide-rp','What is Replatforming?'),(119579,3436,'_title-slide-rp','field_615f27d9335b6'),(119580,3436,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(119581,3436,'_text-slide-rp','field_615f27ee335b7'),(119582,3436,'img-slider-3','2940'),(119583,3436,'_img-slider-3','field_615f27ff335b8'),(119584,3436,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(119585,3436,'_title-after-slider-h4','field_6172940c9f539'),(119586,3436,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(119587,3436,'_text-data-driven','field_61729471e80a2'),(119588,3436,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(119589,3436,'_text-tags','field_617295261e2bc'),(119590,3436,'img-app-modernization','2941'),(119591,3436,'_img-app-modernization','field_617295ac82cd3'),(119592,3436,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(119593,3436,'_phrase-rb-rp','field_6172960479081'),(119594,3436,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(119595,3436,'_phrase-tc','field_617296a28447f'),(119596,3436,'icon-t','2942'),(119597,3436,'_icon-t','field_617298d4928e0'),(119598,3436,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(119599,3436,'_team-member','field_6172995811847'),(119600,3436,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(119601,3436,'_phrase-consulting','field_61729ea05b9e6'),(119602,3436,'image-consulting','2887'),(119603,3436,'_image-consulting','field_61729f356923f'),(119604,3436,'button-consulting','Book consultation now'),(119605,3436,'_button-consulting','field_61729fcbe169a'),(119606,3436,'services-title','Services - Cloud Native Applications solutions:'),(119607,3436,'_services-title','field_6172a01105ae7'),(119608,3436,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(119609,3436,'_services-col-left','field_6172a091834a5'),(119610,3436,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(119611,3436,'_services-col-right','field_6172a0a9834a6'),(119612,3436,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(119613,3436,'_phrase-services','field_6172a1941f2ef'),(119614,3436,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(119615,3436,'_tag-services','field_6172a1ebc36e4'),(119616,3436,'values-title','Business Value
The Translucent Value:'),(119617,3436,'_values-title','field_6172a2a40fd02'),(119618,3436,'values-phrase','What does Cloud Native Data Driven Application Modernization mean for your Business?'),(119619,3436,'_values-phrase','field_6172a3355f6bb'),(119620,3436,'values-text','We learn about what makes your business and physical operations valuable to your clients and modernize that
\r\nOnshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions
\r\nData Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI
\r\nResponsive design makes your applications available across desktop, mobile, tablets and laptops 24/7
\r\nWe go above and beyond to deliver and treat your solution like our own
\r\nConstant proactive communication. Adjusting project milestones and communicating the outcomes
\r\nTranslucent application development and application modernization reduces cost
\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(119621,3436,'_values-text','field_6172a44bd49d9'),(119622,3436,'values-item-1','We learn about what makes your business and physical operations valuable to your clients and modernize that'),(119623,3436,'_values-item-1','field_6172a44bd49d9'),(119624,3436,'values-item-2','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions'),(119625,3436,'_values-item-2','field_6172a5a7e1457'),(119626,3436,'values-item-3','Data Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI'),(119627,3436,'_values-item-3','field_6172a5b0e1458'),(119628,3436,'values-item-4','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(119629,3436,'_values-item-4','field_6172a5b7e1459'),(119630,3436,'values-item-5','We go above and beyond to deliver and treat your solution like our own'),(119631,3436,'_values-item-5','field_6172a5bee145a'),(119632,3436,'values-item-6','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(119633,3436,'_values-item-6','field_6172a5c4e145b'),(119634,3436,'values-item-7','Translucent application development and application modernization reduces cost'),(119635,3436,'_values-item-7','field_6172a5cbe145c'),(119636,3436,'values-item-8','Automation of the employee and customer experience saves money and makes money'),(119637,3436,'_values-item-8','field_6172a5d3e145d'),(119638,3436,'values-item-9','strong>Increase profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditionsx'),(119639,3436,'_values-item-9','field_6172a5dbe145e'),(119640,3437,'top-banner','3080'),(119641,3437,'_top-banner','field_615ea94aa14ad'),(119642,3437,'top-title','Cloud Native Applications'),(119643,3437,'_top-title','field_615ea986a14ae'),(119644,3437,'purple-icon-sq','2934'),(119645,3437,'_purple-icon-sq','field_615eb6e1990d3'),(119646,3437,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(119647,3437,'_phrase-1','field_615ec3e936adb'),(119648,3437,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(119649,3437,'_phrase-2','field_615ec4b052c68'),(119650,3437,'purple-icon-b','2935'),(119651,3437,'_purple-icon-b','field_615ec54f0247b'),(119652,3437,'phrase-icon','Building new applications'),(119653,3437,'_phrase-icon','field_615ec5eb0499b'),(119654,3437,'phrase-i-subtitle','What is Building?'),(119655,3437,'_phrase-i-subtitle','field_615ec6aaadf65'),(119656,3437,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(119657,3437,'_text-i-sec','field_615ec761c96fb'),(119658,3437,'purple-quote-img','2936'),(119659,3437,'_purple-quote-img','field_615eca8c68d41'),(119660,3437,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(119661,3437,'_phrase-slider-1','field_615ed12966bce'),(119662,3437,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(119663,3437,'_text-slider-1','field_615ed1ea36c7c'),(119664,3437,'rb-icon-slider','2938'),(119665,3437,'_rb-icon-slider','field_615ed3500b12c'),(119666,3437,'phrase-rb','What is Rebuilding?'),(119667,3437,'_phrase-rb','field_615f0f2dc37ac'),(119668,3437,'link-rb','#rb'),(119669,3437,'_link-rb','field_615f10dc69c6c'),(119670,3437,'rp-icon-slider',''),(119671,3437,'_rp-icon-slider','field_615ed383c1a5e'),(119672,3437,'phrase-rp','What is Replatforming?'),(119673,3437,'_phrase-rp','field_615f0f63c37ad'),(119674,3437,'link-rp','#rp'),(119675,3437,'_link-rp','field_615f1218b6ffd'),(119676,3437,'img-slider-1','2940'),(119677,3437,'_img-slider-1','field_615f13c3c0cf3'),(119678,3437,'title-slide-rb','What is Rebuilding?'),(119679,3437,'_title-slide-rb','field_615f2512c338c'),(119680,3437,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(119681,3437,'_text-slide-rb','field_615f24e2c338b'),(119682,3437,'img-slider-2','2939'),(119683,3437,'_img-slider-2','field_615f2539c338d'),(119684,3437,'title-slide-rp','What is Replatforming?'),(119685,3437,'_title-slide-rp','field_615f27d9335b6'),(119686,3437,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(119687,3437,'_text-slide-rp','field_615f27ee335b7'),(119688,3437,'img-slider-3','2940'),(119689,3437,'_img-slider-3','field_615f27ff335b8'),(119690,3437,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(119691,3437,'_title-after-slider-h4','field_6172940c9f539'),(119692,3437,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(119693,3437,'_text-data-driven','field_61729471e80a2'),(119694,3437,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(119695,3437,'_text-tags','field_617295261e2bc'),(119696,3437,'img-app-modernization','2941'),(119697,3437,'_img-app-modernization','field_617295ac82cd3'),(119698,3437,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(119699,3437,'_phrase-rb-rp','field_6172960479081'),(119700,3437,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(119701,3437,'_phrase-tc','field_617296a28447f'),(119702,3437,'icon-t','2942'),(119703,3437,'_icon-t','field_617298d4928e0'),(119704,3437,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(119705,3437,'_team-member','field_6172995811847'),(119706,3437,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(119707,3437,'_phrase-consulting','field_61729ea05b9e6'),(119708,3437,'image-consulting','2887'),(119709,3437,'_image-consulting','field_61729f356923f'),(119710,3437,'button-consulting','Book consultation now'),(119711,3437,'_button-consulting','field_61729fcbe169a'),(119712,3437,'services-title','Services - Cloud Native Applications solutions:'),(119713,3437,'_services-title','field_6172a01105ae7'),(119714,3437,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(119715,3437,'_services-col-left','field_6172a091834a5'),(119716,3437,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(119717,3437,'_services-col-right','field_6172a0a9834a6'),(119718,3437,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(119719,3437,'_phrase-services','field_6172a1941f2ef'),(119720,3437,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(119721,3437,'_tag-services','field_6172a1ebc36e4'),(119722,3437,'values-title','Business Value
The Translucent Value:'),(119723,3437,'_values-title','field_6172a2a40fd02'),(119724,3437,'values-phrase','What does Cloud Native Data Driven Application Modernization mean for your Business?'),(119725,3437,'_values-phrase','field_6172a3355f6bb'),(119726,3437,'values-text','We learn about what makes your business and physical operations valuable to your clients and modernize that
\r\nOnshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions
\r\nData Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI
\r\nResponsive design makes your applications available across desktop, mobile, tablets and laptops 24/7
\r\nWe go above and beyond to deliver and treat your solution like our own
\r\nConstant proactive communication. Adjusting project milestones and communicating the outcomes
\r\nTranslucent application development and application modernization reduces cost
\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(119727,3437,'_values-text','field_6172a44bd49d9'),(119728,3437,'values-item-1','We learn about what makes your business and physical operations valuable to your clients and modernize that'),(119729,3437,'_values-item-1','field_6172a44bd49d9'),(119730,3437,'values-item-2','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions'),(119731,3437,'_values-item-2','field_6172a5a7e1457'),(119732,3437,'values-item-3','Data Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI'),(119733,3437,'_values-item-3','field_6172a5b0e1458'),(119734,3437,'values-item-4','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(119735,3437,'_values-item-4','field_6172a5b7e1459'),(119736,3437,'values-item-5','We go above and beyond to deliver and treat your solution like our own'),(119737,3437,'_values-item-5','field_6172a5bee145a'),(119738,3437,'values-item-6','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(119739,3437,'_values-item-6','field_6172a5c4e145b'),(119740,3437,'values-item-7','Translucent application development and application modernization reduces cost'),(119741,3437,'_values-item-7','field_6172a5cbe145c'),(119742,3437,'values-item-8','Automation of the employee and customer experience saves money and makes money'),(119743,3437,'_values-item-8','field_6172a5d3e145d'),(119744,3437,'values-item-9','strong>Increase profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(119745,3437,'_values-item-9','field_6172a5dbe145e'),(119746,3438,'_pinterest_shares','0'),(119747,3438,'_total_shares','0'),(119761,3372,'final-phrase','Translucent Cloud Native Data Driven Application
Development. IT’s how your client’s do business'),(119762,3372,'_final-phrase','field_6172a81bcf043'),(119763,3439,'top-banner','3080'),(119764,3439,'_top-banner','field_615ea94aa14ad'),(119765,3439,'top-title','Cloud Native Applications'),(119766,3439,'_top-title','field_615ea986a14ae'),(119767,3439,'purple-icon-sq','2934'),(119768,3439,'_purple-icon-sq','field_615eb6e1990d3'),(119769,3439,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(119770,3439,'_phrase-1','field_615ec3e936adb'),(119771,3439,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(119772,3439,'_phrase-2','field_615ec4b052c68'),(119773,3439,'purple-icon-b','2935'),(119774,3439,'_purple-icon-b','field_615ec54f0247b'),(119775,3439,'phrase-icon','Building new applications'),(119776,3439,'_phrase-icon','field_615ec5eb0499b'),(119777,3439,'phrase-i-subtitle','What is Building?'),(119778,3439,'_phrase-i-subtitle','field_615ec6aaadf65'),(119779,3439,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(119780,3439,'_text-i-sec','field_615ec761c96fb'),(119781,3439,'purple-quote-img','2936'),(119782,3439,'_purple-quote-img','field_615eca8c68d41'),(119783,3439,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(119784,3439,'_phrase-slider-1','field_615ed12966bce'),(119785,3439,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(119786,3439,'_text-slider-1','field_615ed1ea36c7c'),(119787,3439,'rb-icon-slider','2938'),(119788,3439,'_rb-icon-slider','field_615ed3500b12c'),(119789,3439,'phrase-rb','What is Rebuilding?'),(119790,3439,'_phrase-rb','field_615f0f2dc37ac'),(119791,3439,'link-rb','#rb'),(119792,3439,'_link-rb','field_615f10dc69c6c'),(119793,3439,'rp-icon-slider',''),(119794,3439,'_rp-icon-slider','field_615ed383c1a5e'),(119795,3439,'phrase-rp','What is Replatforming?'),(119796,3439,'_phrase-rp','field_615f0f63c37ad'),(119797,3439,'link-rp','#rp'),(119798,3439,'_link-rp','field_615f1218b6ffd'),(119799,3439,'img-slider-1','2940'),(119800,3439,'_img-slider-1','field_615f13c3c0cf3'),(119801,3439,'title-slide-rb','What is Rebuilding?'),(119802,3439,'_title-slide-rb','field_615f2512c338c'),(119803,3439,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(119804,3439,'_text-slide-rb','field_615f24e2c338b'),(119805,3439,'img-slider-2','2939'),(119806,3439,'_img-slider-2','field_615f2539c338d'),(119807,3439,'title-slide-rp','What is Replatforming?'),(119808,3439,'_title-slide-rp','field_615f27d9335b6'),(119809,3439,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(119810,3439,'_text-slide-rp','field_615f27ee335b7'),(119811,3439,'img-slider-3','2940'),(119812,3439,'_img-slider-3','field_615f27ff335b8'),(119813,3439,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(119814,3439,'_title-after-slider-h4','field_6172940c9f539'),(119815,3439,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(119816,3439,'_text-data-driven','field_61729471e80a2'),(119817,3439,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(119818,3439,'_text-tags','field_617295261e2bc'),(119819,3439,'img-app-modernization','2941'),(119820,3439,'_img-app-modernization','field_617295ac82cd3'),(119821,3439,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(119822,3439,'_phrase-rb-rp','field_6172960479081'),(119823,3439,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(119824,3439,'_phrase-tc','field_617296a28447f'),(119825,3439,'icon-t','2942'),(119826,3439,'_icon-t','field_617298d4928e0'),(119827,3439,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(119828,3439,'_team-member','field_6172995811847'),(119829,3439,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(119830,3439,'_phrase-consulting','field_61729ea05b9e6'),(119831,3439,'image-consulting','2887'),(119832,3439,'_image-consulting','field_61729f356923f'),(119833,3439,'button-consulting','Book consultation now'),(119834,3439,'_button-consulting','field_61729fcbe169a'),(119835,3439,'services-title','Services - Cloud Native Applications solutions:'),(119836,3439,'_services-title','field_6172a01105ae7'),(119837,3439,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(119838,3439,'_services-col-left','field_6172a091834a5'),(119839,3439,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(119840,3439,'_services-col-right','field_6172a0a9834a6'),(119841,3439,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(119842,3439,'_phrase-services','field_6172a1941f2ef'),(119843,3439,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(119844,3439,'_tag-services','field_6172a1ebc36e4'),(119845,3439,'values-title','Business Value
The Translucent Value:'),(119846,3439,'_values-title','field_6172a2a40fd02'),(119847,3439,'values-phrase','What does Cloud Native Data Driven Application Modernization mean for your Business?'),(119848,3439,'_values-phrase','field_6172a3355f6bb'),(119849,3439,'values-text','We learn about what makes your business and physical operations valuable to your clients and modernize that
\r\nOnshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions
\r\nData Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI
\r\nResponsive design makes your applications available across desktop, mobile, tablets and laptops 24/7
\r\nWe go above and beyond to deliver and treat your solution like our own
\r\nConstant proactive communication. Adjusting project milestones and communicating the outcomes
\r\nTranslucent application development and application modernization reduces cost
\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(119850,3439,'_values-text','field_6172a44bd49d9'),(119851,3439,'values-item-1','We learn about what makes your business and physical operations valuable to your clients and modernize that'),(119852,3439,'_values-item-1','field_6172a44bd49d9'),(119853,3439,'values-item-2','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions'),(119854,3439,'_values-item-2','field_6172a5a7e1457'),(119855,3439,'values-item-3','Data Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI'),(119856,3439,'_values-item-3','field_6172a5b0e1458'),(119857,3439,'values-item-4','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(119858,3439,'_values-item-4','field_6172a5b7e1459'),(119859,3439,'values-item-5','We go above and beyond to deliver and treat your solution like our own'),(119860,3439,'_values-item-5','field_6172a5bee145a'),(119861,3439,'values-item-6','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(119862,3439,'_values-item-6','field_6172a5c4e145b'),(119863,3439,'values-item-7','Translucent application development and application modernization reduces cost'),(119864,3439,'_values-item-7','field_6172a5cbe145c'),(119865,3439,'values-item-8','Automation of the employee and customer experience saves money and makes money'),(119866,3439,'_values-item-8','field_6172a5d3e145d'),(119867,3439,'values-item-9','strong>Increase profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(119868,3439,'_values-item-9','field_6172a5dbe145e'),(119869,3439,'final-phrase','Translucent Cloud Native Data Driven Application
Development. IT’s how your client’s do business'),(119870,3439,'_final-phrase','field_6172a81bcf043'),(119871,3440,'top-banner','3080'),(119872,3440,'_top-banner','field_615ea94aa14ad'),(119873,3440,'top-title','Cloud Native Applications'),(119874,3440,'_top-title','field_615ea986a14ae'),(119875,3440,'purple-icon-sq','2934'),(119876,3440,'_purple-icon-sq','field_615eb6e1990d3'),(119877,3440,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(119878,3440,'_phrase-1','field_615ec3e936adb'),(119879,3440,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(119880,3440,'_phrase-2','field_615ec4b052c68'),(119881,3440,'purple-icon-b','2935'),(119882,3440,'_purple-icon-b','field_615ec54f0247b'),(119883,3440,'phrase-icon','Building new applications'),(119884,3440,'_phrase-icon','field_615ec5eb0499b'),(119885,3440,'phrase-i-subtitle','What is Building?'),(119886,3440,'_phrase-i-subtitle','field_615ec6aaadf65'),(119887,3440,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(119888,3440,'_text-i-sec','field_615ec761c96fb'),(119889,3440,'purple-quote-img','2936'),(119890,3440,'_purple-quote-img','field_615eca8c68d41'),(119891,3440,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(119892,3440,'_phrase-slider-1','field_615ed12966bce'),(119893,3440,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(119894,3440,'_text-slider-1','field_615ed1ea36c7c'),(119895,3440,'rb-icon-slider','2938'),(119896,3440,'_rb-icon-slider','field_615ed3500b12c'),(119897,3440,'phrase-rb','What is Rebuilding?'),(119898,3440,'_phrase-rb','field_615f0f2dc37ac'),(119899,3440,'link-rb','#rb'),(119900,3440,'_link-rb','field_615f10dc69c6c'),(119901,3440,'rp-icon-slider',''),(119902,3440,'_rp-icon-slider','field_615ed383c1a5e'),(119903,3440,'phrase-rp','What is Replatforming?'),(119904,3440,'_phrase-rp','field_615f0f63c37ad'),(119905,3440,'link-rp','#rp'),(119906,3440,'_link-rp','field_615f1218b6ffd'),(119907,3440,'img-slider-1','2940'),(119908,3440,'_img-slider-1','field_615f13c3c0cf3'),(119909,3440,'title-slide-rb','What is Rebuilding?'),(119910,3440,'_title-slide-rb','field_615f2512c338c'),(119911,3440,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(119912,3440,'_text-slide-rb','field_615f24e2c338b'),(119913,3440,'img-slider-2','2939'),(119914,3440,'_img-slider-2','field_615f2539c338d'),(119915,3440,'title-slide-rp','What is Replatforming?'),(119916,3440,'_title-slide-rp','field_615f27d9335b6'),(119917,3440,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(119918,3440,'_text-slide-rp','field_615f27ee335b7'),(119919,3440,'img-slider-3','2940'),(119920,3440,'_img-slider-3','field_615f27ff335b8'),(119921,3440,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(119922,3440,'_title-after-slider-h4','field_6172940c9f539'),(119923,3440,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(119924,3440,'_text-data-driven','field_61729471e80a2'),(119925,3440,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(119926,3440,'_text-tags','field_617295261e2bc'),(119927,3440,'img-app-modernization','2941'),(119928,3440,'_img-app-modernization','field_617295ac82cd3'),(119929,3440,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(119930,3440,'_phrase-rb-rp','field_6172960479081'),(119931,3440,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(119932,3440,'_phrase-tc','field_617296a28447f'),(119933,3440,'icon-t','2942'),(119934,3440,'_icon-t','field_617298d4928e0'),(119935,3440,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(119936,3440,'_team-member','field_6172995811847'),(119937,3440,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(119938,3440,'_phrase-consulting','field_61729ea05b9e6'),(119939,3440,'image-consulting','2887'),(119940,3440,'_image-consulting','field_61729f356923f'),(119941,3440,'button-consulting','Book consultation now'),(119942,3440,'_button-consulting','field_61729fcbe169a'),(119943,3440,'services-title','Services - Cloud Native Applications solutions:'),(119944,3440,'_services-title','field_6172a01105ae7'),(119945,3440,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(119946,3440,'_services-col-left','field_6172a091834a5'),(119947,3440,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(119948,3440,'_services-col-right','field_6172a0a9834a6'),(119949,3440,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(119950,3440,'_phrase-services','field_6172a1941f2ef'),(119951,3440,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(119952,3440,'_tag-services','field_6172a1ebc36e4'),(119953,3440,'values-title','Business Value
The Translucent Value:'),(119954,3440,'_values-title','field_6172a2a40fd02'),(119955,3440,'values-phrase','What does Cloud Native Data Driven Application Modernization mean for your Business?'),(119956,3440,'_values-phrase','field_6172a3355f6bb'),(119957,3440,'values-text','We learn about what makes your business and physical operations valuable to your clients and modernize that
\r\nOnshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions
\r\nData Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI
\r\nResponsive design makes your applications available across desktop, mobile, tablets and laptops 24/7
\r\nWe go above and beyond to deliver and treat your solution like our own
\r\nConstant proactive communication. Adjusting project milestones and communicating the outcomes
\r\nTranslucent application development and application modernization reduces cost
\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(119958,3440,'_values-text','field_6172a44bd49d9'),(119959,3440,'values-item-1','We learn about what makes your business and physical operations valuable to your clients and modernize that'),(119960,3440,'_values-item-1','field_6172a44bd49d9'),(119961,3440,'values-item-2','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions'),(119962,3440,'_values-item-2','field_6172a5a7e1457'),(119963,3440,'values-item-3','Data Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI'),(119964,3440,'_values-item-3','field_6172a5b0e1458'),(119965,3440,'values-item-4','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(119966,3440,'_values-item-4','field_6172a5b7e1459'),(119967,3440,'values-item-5','We go above and beyond to deliver and treat your solution like our own'),(119968,3440,'_values-item-5','field_6172a5bee145a'),(119969,3440,'values-item-6','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(119970,3440,'_values-item-6','field_6172a5c4e145b'),(119971,3440,'values-item-7','Translucent application development and application modernization reduces cost'),(119972,3440,'_values-item-7','field_6172a5cbe145c'),(119973,3440,'values-item-8','Automation of the employee and customer experience saves money and makes money'),(119974,3440,'_values-item-8','field_6172a5d3e145d'),(119975,3440,'values-item-9','strong>Increase profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(119976,3440,'_values-item-9','field_6172a5dbe145e'),(119977,3440,'final-phrase','Translucent Cloud Native Data Driven Application
Development. IT’s how your client’s do business'),(119978,3440,'_final-phrase','field_6172a81bcf043'),(119979,3441,'top-banner','3080'),(119980,3441,'_top-banner','field_615ea94aa14ad'),(119981,3441,'top-title','Cloud Native Applications'),(119982,3441,'_top-title','field_615ea986a14ae'),(119983,3441,'purple-icon-sq','2934'),(119984,3441,'_purple-icon-sq','field_615eb6e1990d3'),(119985,3441,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(119986,3441,'_phrase-1','field_615ec3e936adb'),(119987,3441,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(119988,3441,'_phrase-2','field_615ec4b052c68'),(119989,3441,'purple-icon-b','2935'),(119990,3441,'_purple-icon-b','field_615ec54f0247b'),(119991,3441,'phrase-icon','Building new applications'),(119992,3441,'_phrase-icon','field_615ec5eb0499b'),(119993,3441,'phrase-i-subtitle','What is Building?'),(119994,3441,'_phrase-i-subtitle','field_615ec6aaadf65'),(119995,3441,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(119996,3441,'_text-i-sec','field_615ec761c96fb'),(119997,3441,'purple-quote-img','2936'),(119998,3441,'_purple-quote-img','field_615eca8c68d41'),(119999,3441,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(120000,3441,'_phrase-slider-1','field_615ed12966bce'),(120001,3441,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(120002,3441,'_text-slider-1','field_615ed1ea36c7c'),(120003,3441,'rb-icon-slider','2938'),(120004,3441,'_rb-icon-slider','field_615ed3500b12c'),(120005,3441,'phrase-rb','What is Rebuilding?'),(120006,3441,'_phrase-rb','field_615f0f2dc37ac'),(120007,3441,'link-rb','#rb'),(120008,3441,'_link-rb','field_615f10dc69c6c'),(120009,3441,'rp-icon-slider',''),(120010,3441,'_rp-icon-slider','field_615ed383c1a5e'),(120011,3441,'phrase-rp','What is Replatforming?'),(120012,3441,'_phrase-rp','field_615f0f63c37ad'),(120013,3441,'link-rp','#rp'),(120014,3441,'_link-rp','field_615f1218b6ffd'),(120015,3441,'img-slider-1','2940'),(120016,3441,'_img-slider-1','field_615f13c3c0cf3'),(120017,3441,'title-slide-rb','What is Rebuilding?'),(120018,3441,'_title-slide-rb','field_615f2512c338c'),(120019,3441,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(120020,3441,'_text-slide-rb','field_615f24e2c338b'),(120021,3441,'img-slider-2','2939'),(120022,3441,'_img-slider-2','field_615f2539c338d'),(120023,3441,'title-slide-rp','What is Replatforming?'),(120024,3441,'_title-slide-rp','field_615f27d9335b6'),(120025,3441,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(120026,3441,'_text-slide-rp','field_615f27ee335b7'),(120027,3441,'img-slider-3','2940'),(120028,3441,'_img-slider-3','field_615f27ff335b8'),(120029,3441,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(120030,3441,'_title-after-slider-h4','field_6172940c9f539'),(120031,3441,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(120032,3441,'_text-data-driven','field_61729471e80a2'),(120033,3441,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(120034,3441,'_text-tags','field_617295261e2bc'),(120035,3441,'img-app-modernization','2941'),(120036,3441,'_img-app-modernization','field_617295ac82cd3'),(120037,3441,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(120038,3441,'_phrase-rb-rp','field_6172960479081'),(120039,3441,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(120040,3441,'_phrase-tc','field_617296a28447f'),(120041,3441,'icon-t','2942'),(120042,3441,'_icon-t','field_617298d4928e0'),(120043,3441,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(120044,3441,'_team-member','field_6172995811847'),(120045,3441,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(120046,3441,'_phrase-consulting','field_61729ea05b9e6'),(120047,3441,'image-consulting','2887'),(120048,3441,'_image-consulting','field_61729f356923f'),(120049,3441,'button-consulting','Book consultation now'),(120050,3441,'_button-consulting','field_61729fcbe169a'),(120051,3441,'services-title','Services - Cloud Native Applications solutions:'),(120052,3441,'_services-title','field_6172a01105ae7'),(120053,3441,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(120054,3441,'_services-col-left','field_6172a091834a5'),(120055,3441,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(120056,3441,'_services-col-right','field_6172a0a9834a6'),(120057,3441,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(120058,3441,'_phrase-services','field_6172a1941f2ef'),(120059,3441,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(120060,3441,'_tag-services','field_6172a1ebc36e4'),(120061,3441,'values-title','Business Value
The Translucent Value:'),(120062,3441,'_values-title','field_6172a2a40fd02'),(120063,3441,'values-phrase','What does Cloud Native Data Driven Application Modernization mean for your Business?'),(120064,3441,'_values-phrase','field_6172a3355f6bb'),(120065,3441,'values-text','We learn about what makes your business and physical operations valuable to your clients and modernize that
\r\nOnshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions
\r\nData Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI
\r\nResponsive design makes your applications available across desktop, mobile, tablets and laptops 24/7
\r\nWe go above and beyond to deliver and treat your solution like our own
\r\nConstant proactive communication. Adjusting project milestones and communicating the outcomes
\r\nTranslucent application development and application modernization reduces cost
\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(120066,3441,'_values-text','field_6172a44bd49d9'),(120067,3441,'values-item-1','We learn about what makes your business and physical operations valuable to your clients and modernize that'),(120068,3441,'_values-item-1','field_6172a44bd49d9'),(120069,3441,'values-item-2','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions'),(120070,3441,'_values-item-2','field_6172a5a7e1457'),(120071,3441,'values-item-3','Data Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI'),(120072,3441,'_values-item-3','field_6172a5b0e1458'),(120073,3441,'values-item-4','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(120074,3441,'_values-item-4','field_6172a5b7e1459'),(120075,3441,'values-item-5','We go above and beyond to deliver and treat your solution like our own'),(120076,3441,'_values-item-5','field_6172a5bee145a'),(120077,3441,'values-item-6','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(120078,3441,'_values-item-6','field_6172a5c4e145b'),(120079,3441,'values-item-7','Translucent application development and application modernization reduces cost'),(120080,3441,'_values-item-7','field_6172a5cbe145c'),(120081,3441,'values-item-8','Automation of the employee and customer experience saves money and makes money'),(120082,3441,'_values-item-8','field_6172a5d3e145d'),(120083,3441,'values-item-9','strong>Increase profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(120084,3441,'_values-item-9','field_6172a5dbe145e'),(120085,3441,'final-phrase','Translucent Cloud Native Data Driven Application
Development. IT’s how your client’s do business'),(120086,3441,'_final-phrase','field_6172a81bcf043'),(120087,3442,'top-banner','3080'),(120088,3442,'_top-banner','field_615ea94aa14ad'),(120089,3442,'top-title','Cloud Native Applications'),(120090,3442,'_top-title','field_615ea986a14ae'),(120091,3442,'purple-icon-sq','2934'),(120092,3442,'_purple-icon-sq','field_615eb6e1990d3'),(120093,3442,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(120094,3442,'_phrase-1','field_615ec3e936adb'),(120095,3442,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(120096,3442,'_phrase-2','field_615ec4b052c68'),(120097,3442,'purple-icon-b','2935'),(120098,3442,'_purple-icon-b','field_615ec54f0247b'),(120099,3442,'phrase-icon','Building new applications'),(120100,3442,'_phrase-icon','field_615ec5eb0499b'),(120101,3442,'phrase-i-subtitle','What is Building?'),(120102,3442,'_phrase-i-subtitle','field_615ec6aaadf65'),(120103,3442,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(120104,3442,'_text-i-sec','field_615ec761c96fb'),(120105,3442,'purple-quote-img','2936'),(120106,3442,'_purple-quote-img','field_615eca8c68d41'),(120107,3442,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(120108,3442,'_phrase-slider-1','field_615ed12966bce'),(120109,3442,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(120110,3442,'_text-slider-1','field_615ed1ea36c7c'),(120111,3442,'rb-icon-slider','2938'),(120112,3442,'_rb-icon-slider','field_615ed3500b12c'),(120113,3442,'phrase-rb','What is Rebuilding?'),(120114,3442,'_phrase-rb','field_615f0f2dc37ac'),(120115,3442,'link-rb','#rb'),(120116,3442,'_link-rb','field_615f10dc69c6c'),(120117,3442,'rp-icon-slider',''),(120118,3442,'_rp-icon-slider','field_615ed383c1a5e'),(120119,3442,'phrase-rp','What is Replatforming?'),(120120,3442,'_phrase-rp','field_615f0f63c37ad'),(120121,3442,'link-rp','#rp'),(120122,3442,'_link-rp','field_615f1218b6ffd'),(120123,3442,'img-slider-1','2940'),(120124,3442,'_img-slider-1','field_615f13c3c0cf3'),(120125,3442,'title-slide-rb','What is Rebuilding?'),(120126,3442,'_title-slide-rb','field_615f2512c338c'),(120127,3442,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(120128,3442,'_text-slide-rb','field_615f24e2c338b'),(120129,3442,'img-slider-2','2939'),(120130,3442,'_img-slider-2','field_615f2539c338d'),(120131,3442,'title-slide-rp','What is Replatforming?'),(120132,3442,'_title-slide-rp','field_615f27d9335b6'),(120133,3442,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(120134,3442,'_text-slide-rp','field_615f27ee335b7'),(120135,3442,'img-slider-3','2940'),(120136,3442,'_img-slider-3','field_615f27ff335b8'),(120137,3442,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(120138,3442,'_title-after-slider-h4','field_6172940c9f539'),(120139,3442,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(120140,3442,'_text-data-driven','field_61729471e80a2'),(120141,3442,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(120142,3442,'_text-tags','field_617295261e2bc'),(120143,3442,'img-app-modernization','2941'),(120144,3442,'_img-app-modernization','field_617295ac82cd3'),(120145,3442,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(120146,3442,'_phrase-rb-rp','field_6172960479081'),(120147,3442,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(120148,3442,'_phrase-tc','field_617296a28447f'),(120149,3442,'icon-t','2942'),(120150,3442,'_icon-t','field_617298d4928e0'),(120151,3442,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(120152,3442,'_team-member','field_6172995811847'),(120153,3442,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(120154,3442,'_phrase-consulting','field_61729ea05b9e6'),(120155,3442,'image-consulting','2887'),(120156,3442,'_image-consulting','field_61729f356923f'),(120157,3442,'button-consulting','Book consultation now'),(120158,3442,'_button-consulting','field_61729fcbe169a'),(120159,3442,'services-title','Services - Cloud Native Applications solutions:'),(120160,3442,'_services-title','field_6172a01105ae7'),(120161,3442,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(120162,3442,'_services-col-left','field_6172a091834a5'),(120163,3442,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(120164,3442,'_services-col-right','field_6172a0a9834a6'),(120165,3442,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(120166,3442,'_phrase-services','field_6172a1941f2ef'),(120167,3442,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(120168,3442,'_tag-services','field_6172a1ebc36e4'),(120169,3442,'values-title','Business Value
The Translucent Value:'),(120170,3442,'_values-title','field_6172a2a40fd02'),(120171,3442,'values-phrase','What does Cloud Native Data Driven Application Modernization mean for your Business?'),(120172,3442,'_values-phrase','field_6172a3355f6bb'),(120173,3442,'values-text','We learn about what makes your business and physical operations valuable to your clients and modernize that
\r\nOnshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions
\r\nData Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI
\r\nResponsive design makes your applications available across desktop, mobile, tablets and laptops 24/7
\r\nWe go above and beyond to deliver and treat your solution like our own
\r\nConstant proactive communication. Adjusting project milestones and communicating the outcomes
\r\nTranslucent application development and application modernization reduces cost
\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(120174,3442,'_values-text','field_6172a44bd49d9'),(120175,3442,'values-item-1','We learn about what makes your business and physical operations valuable to your clients and modernize that'),(120176,3442,'_values-item-1','field_6172a44bd49d9'),(120177,3442,'values-item-2','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions'),(120178,3442,'_values-item-2','field_6172a5a7e1457'),(120179,3442,'values-item-3','Data Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI'),(120180,3442,'_values-item-3','field_6172a5b0e1458'),(120181,3442,'values-item-4','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(120182,3442,'_values-item-4','field_6172a5b7e1459'),(120183,3442,'values-item-5','We go above and beyond to deliver and treat your solution like our own'),(120184,3442,'_values-item-5','field_6172a5bee145a'),(120185,3442,'values-item-6','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(120186,3442,'_values-item-6','field_6172a5c4e145b'),(120187,3442,'values-item-7','Translucent application development and application modernization reduces cost'),(120188,3442,'_values-item-7','field_6172a5cbe145c'),(120189,3442,'values-item-8','Automation of the employee and customer experience saves money and makes money'),(120190,3442,'_values-item-8','field_6172a5d3e145d'),(120191,3442,'values-item-9','strong>Increase profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(120192,3442,'_values-item-9','field_6172a5dbe145e'),(120193,3442,'final-phrase','Translucent Cloud Native Data Driven Application
Development. IT’s how your client’s do business'),(120194,3442,'_final-phrase','field_6172a81bcf043'),(120195,3443,'top-banner','3080'),(120196,3443,'_top-banner','field_615ea94aa14ad'),(120197,3443,'top-title','Cloud Native Applications'),(120198,3443,'_top-title','field_615ea986a14ae'),(120199,3443,'purple-icon-sq','2934'),(120200,3443,'_purple-icon-sq','field_615eb6e1990d3'),(120201,3443,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(120202,3443,'_phrase-1','field_615ec3e936adb'),(120203,3443,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(120204,3443,'_phrase-2','field_615ec4b052c68'),(120205,3443,'purple-icon-b','2935'),(120206,3443,'_purple-icon-b','field_615ec54f0247b'),(120207,3443,'phrase-icon','Building new applications'),(120208,3443,'_phrase-icon','field_615ec5eb0499b'),(120209,3443,'phrase-i-subtitle','What is Building?'),(120210,3443,'_phrase-i-subtitle','field_615ec6aaadf65'),(120211,3443,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(120212,3443,'_text-i-sec','field_615ec761c96fb'),(120213,3443,'purple-quote-img','2936'),(120214,3443,'_purple-quote-img','field_615eca8c68d41'),(120215,3443,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(120216,3443,'_phrase-slider-1','field_615ed12966bce'),(120217,3443,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(120218,3443,'_text-slider-1','field_615ed1ea36c7c'),(120219,3443,'rb-icon-slider','2938'),(120220,3443,'_rb-icon-slider','field_615ed3500b12c'),(120221,3443,'phrase-rb','What is Rebuilding?'),(120222,3443,'_phrase-rb','field_615f0f2dc37ac'),(120223,3443,'link-rb','#rb'),(120224,3443,'_link-rb','field_615f10dc69c6c'),(120225,3443,'rp-icon-slider',''),(120226,3443,'_rp-icon-slider','field_615ed383c1a5e'),(120227,3443,'phrase-rp','What is Replatforming?'),(120228,3443,'_phrase-rp','field_615f0f63c37ad'),(120229,3443,'link-rp','#rp'),(120230,3443,'_link-rp','field_615f1218b6ffd'),(120231,3443,'img-slider-1','2940'),(120232,3443,'_img-slider-1','field_615f13c3c0cf3'),(120233,3443,'title-slide-rb','What is Rebuilding?'),(120234,3443,'_title-slide-rb','field_615f2512c338c'),(120235,3443,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(120236,3443,'_text-slide-rb','field_615f24e2c338b'),(120237,3443,'img-slider-2','2939'),(120238,3443,'_img-slider-2','field_615f2539c338d'),(120239,3443,'title-slide-rp','What is Replatforming?'),(120240,3443,'_title-slide-rp','field_615f27d9335b6'),(120241,3443,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(120242,3443,'_text-slide-rp','field_615f27ee335b7'),(120243,3443,'img-slider-3','2940'),(120244,3443,'_img-slider-3','field_615f27ff335b8'),(120245,3443,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(120246,3443,'_title-after-slider-h4','field_6172940c9f539'),(120247,3443,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(120248,3443,'_text-data-driven','field_61729471e80a2'),(120249,3443,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(120250,3443,'_text-tags','field_617295261e2bc'),(120251,3443,'img-app-modernization','2941'),(120252,3443,'_img-app-modernization','field_617295ac82cd3'),(120253,3443,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(120254,3443,'_phrase-rb-rp','field_6172960479081'),(120255,3443,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(120256,3443,'_phrase-tc','field_617296a28447f'),(120257,3443,'icon-t','2942'),(120258,3443,'_icon-t','field_617298d4928e0'),(120259,3443,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(120260,3443,'_team-member','field_6172995811847'),(120261,3443,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(120262,3443,'_phrase-consulting','field_61729ea05b9e6'),(120263,3443,'image-consulting','2887'),(120264,3443,'_image-consulting','field_61729f356923f'),(120265,3443,'button-consulting','Book consultation now'),(120266,3443,'_button-consulting','field_61729fcbe169a'),(120267,3443,'services-title','Services - Cloud Native Applications solutions:'),(120268,3443,'_services-title','field_6172a01105ae7'),(120269,3443,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(120270,3443,'_services-col-left','field_6172a091834a5'),(120271,3443,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(120272,3443,'_services-col-right','field_6172a0a9834a6'),(120273,3443,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(120274,3443,'_phrase-services','field_6172a1941f2ef'),(120275,3443,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(120276,3443,'_tag-services','field_6172a1ebc36e4'),(120277,3443,'values-title','Business Value
The Translucent Value:'),(120278,3443,'_values-title','field_6172a2a40fd02'),(120279,3443,'values-phrase','What does Cloud Native Data Driven Application Modernization mean for your Business?'),(120280,3443,'_values-phrase','field_6172a3355f6bb'),(120281,3443,'values-text','We learn about what makes your business and physical operations valuable to your clients and modernize that
\r\nOnshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions
\r\nData Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI
\r\nResponsive design makes your applications available across desktop, mobile, tablets and laptops 24/7
\r\nWe go above and beyond to deliver and treat your solution like our own
\r\nConstant proactive communication. Adjusting project milestones and communicating the outcomes
\r\nTranslucent application development and application modernization reduces cost
\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(120282,3443,'_values-text','field_6172a44bd49d9'),(120283,3443,'values-item-1','We learn about what makes your business and physical operations valuable to your clients and modernize that'),(120284,3443,'_values-item-1','field_6172a44bd49d9'),(120285,3443,'values-item-2','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions'),(120286,3443,'_values-item-2','field_6172a5a7e1457'),(120287,3443,'values-item-3','Data Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI'),(120288,3443,'_values-item-3','field_6172a5b0e1458'),(120289,3443,'values-item-4','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(120290,3443,'_values-item-4','field_6172a5b7e1459'),(120291,3443,'values-item-5','We go above and beyond to deliver and treat your solution like our own'),(120292,3443,'_values-item-5','field_6172a5bee145a'),(120293,3443,'values-item-6','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(120294,3443,'_values-item-6','field_6172a5c4e145b'),(120295,3443,'values-item-7','Translucent application development and application modernization reduces cost'),(120296,3443,'_values-item-7','field_6172a5cbe145c'),(120297,3443,'values-item-8','Automation of the employee and customer experience saves money and makes money'),(120298,3443,'_values-item-8','field_6172a5d3e145d'),(120299,3443,'values-item-9','strong>Increase profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(120300,3443,'_values-item-9','field_6172a5dbe145e'),(120301,3443,'final-phrase','Translucent Cloud Native Data Driven Application
Development. IT’s how your client’s do business'),(120302,3443,'_final-phrase','field_6172a81bcf043'),(120303,3444,'top-banner','3080'),(120304,3444,'_top-banner','field_615ea94aa14ad'),(120305,3444,'top-title','Cloud Native Applications'),(120306,3444,'_top-title','field_615ea986a14ae'),(120307,3444,'purple-icon-sq','2934'),(120308,3444,'_purple-icon-sq','field_615eb6e1990d3'),(120309,3444,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(120310,3444,'_phrase-1','field_615ec3e936adb'),(120311,3444,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(120312,3444,'_phrase-2','field_615ec4b052c68'),(120313,3444,'purple-icon-b','2935'),(120314,3444,'_purple-icon-b','field_615ec54f0247b'),(120315,3444,'phrase-icon','Building new applications'),(120316,3444,'_phrase-icon','field_615ec5eb0499b'),(120317,3444,'phrase-i-subtitle','What is Building?'),(120318,3444,'_phrase-i-subtitle','field_615ec6aaadf65'),(120319,3444,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(120320,3444,'_text-i-sec','field_615ec761c96fb'),(120321,3444,'purple-quote-img','2936'),(120322,3444,'_purple-quote-img','field_615eca8c68d41'),(120323,3444,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(120324,3444,'_phrase-slider-1','field_615ed12966bce'),(120325,3444,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(120326,3444,'_text-slider-1','field_615ed1ea36c7c'),(120327,3444,'rb-icon-slider','2938'),(120328,3444,'_rb-icon-slider','field_615ed3500b12c'),(120329,3444,'phrase-rb','What is Rebuilding?'),(120330,3444,'_phrase-rb','field_615f0f2dc37ac'),(120331,3444,'link-rb','#rb'),(120332,3444,'_link-rb','field_615f10dc69c6c'),(120333,3444,'rp-icon-slider','2893'),(120334,3444,'_rp-icon-slider','field_615ed383c1a5e'),(120335,3444,'phrase-rp','What is Replatforming?'),(120336,3444,'_phrase-rp','field_615f0f63c37ad'),(120337,3444,'link-rp','#rp'),(120338,3444,'_link-rp','field_615f1218b6ffd'),(120339,3444,'img-slider-1','2940'),(120340,3444,'_img-slider-1','field_615f13c3c0cf3'),(120341,3444,'title-slide-rb','What is Rebuilding?'),(120342,3444,'_title-slide-rb','field_615f2512c338c'),(120343,3444,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(120344,3444,'_text-slide-rb','field_615f24e2c338b'),(120345,3444,'img-slider-2','2939'),(120346,3444,'_img-slider-2','field_615f2539c338d'),(120347,3444,'title-slide-rp','What is Replatforming?'),(120348,3444,'_title-slide-rp','field_615f27d9335b6'),(120349,3444,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(120350,3444,'_text-slide-rp','field_615f27ee335b7'),(120351,3444,'img-slider-3','2940'),(120352,3444,'_img-slider-3','field_615f27ff335b8'),(120353,3444,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(120354,3444,'_title-after-slider-h4','field_6172940c9f539'),(120355,3444,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(120356,3444,'_text-data-driven','field_61729471e80a2'),(120357,3444,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(120358,3444,'_text-tags','field_617295261e2bc'),(120359,3444,'img-app-modernization','2941'),(120360,3444,'_img-app-modernization','field_617295ac82cd3'),(120361,3444,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(120362,3444,'_phrase-rb-rp','field_6172960479081'),(120363,3444,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(120364,3444,'_phrase-tc','field_617296a28447f'),(120365,3444,'icon-t','2942'),(120366,3444,'_icon-t','field_617298d4928e0'),(120367,3444,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(120368,3444,'_team-member','field_6172995811847'),(120369,3444,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(120370,3444,'_phrase-consulting','field_61729ea05b9e6'),(120371,3444,'image-consulting','2887'),(120372,3444,'_image-consulting','field_61729f356923f'),(120373,3444,'button-consulting','Book consultation now'),(120374,3444,'_button-consulting','field_61729fcbe169a'),(120375,3444,'services-title','Services - Cloud Native Applications solutions:'),(120376,3444,'_services-title','field_6172a01105ae7'),(120377,3444,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(120378,3444,'_services-col-left','field_6172a091834a5'),(120379,3444,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(120380,3444,'_services-col-right','field_6172a0a9834a6'),(120381,3444,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(120382,3444,'_phrase-services','field_6172a1941f2ef'),(120383,3444,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(120384,3444,'_tag-services','field_6172a1ebc36e4'),(120385,3444,'values-title','Business Value
The Translucent Value:'),(120386,3444,'_values-title','field_6172a2a40fd02'),(120387,3444,'values-phrase','What does Cloud Native Data Driven Application Modernization mean for your Business?'),(120388,3444,'_values-phrase','field_6172a3355f6bb'),(120389,3444,'values-text','We learn about what makes your business and physical operations valuable to your clients and modernize that
\r\nOnshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions
\r\nData Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI
\r\nResponsive design makes your applications available across desktop, mobile, tablets and laptops 24/7
\r\nWe go above and beyond to deliver and treat your solution like our own
\r\nConstant proactive communication. Adjusting project milestones and communicating the outcomes
\r\nTranslucent application development and application modernization reduces cost
\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(120390,3444,'_values-text','field_6172a44bd49d9'),(120391,3444,'values-item-1','We learn about what makes your business and physical operations valuable to your clients and modernize that'),(120392,3444,'_values-item-1','field_6172a44bd49d9'),(120393,3444,'values-item-2','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions'),(120394,3444,'_values-item-2','field_6172a5a7e1457'),(120395,3444,'values-item-3','Data Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI'),(120396,3444,'_values-item-3','field_6172a5b0e1458'),(120397,3444,'values-item-4','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(120398,3444,'_values-item-4','field_6172a5b7e1459'),(120399,3444,'values-item-5','We go above and beyond to deliver and treat your solution like our own'),(120400,3444,'_values-item-5','field_6172a5bee145a'),(120401,3444,'values-item-6','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(120402,3444,'_values-item-6','field_6172a5c4e145b'),(120403,3444,'values-item-7','Translucent application development and application modernization reduces cost'),(120404,3444,'_values-item-7','field_6172a5cbe145c'),(120405,3444,'values-item-8','Automation of the employee and customer experience saves money and makes money'),(120406,3444,'_values-item-8','field_6172a5d3e145d'),(120407,3444,'values-item-9','strong>Increase profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(120408,3444,'_values-item-9','field_6172a5dbe145e'),(120409,3444,'final-phrase','Translucent Cloud Native Data Driven Application
Development. IT’s how your client’s do business'),(120410,3444,'_final-phrase','field_6172a81bcf043'),(120411,3445,'top-banner','3080'),(120412,3445,'_top-banner','field_615ea94aa14ad'),(120413,3445,'top-title','Cloud Native Applications'),(120414,3445,'_top-title','field_615ea986a14ae'),(120415,3445,'purple-icon-sq','2934'),(120416,3445,'_purple-icon-sq','field_615eb6e1990d3'),(120417,3445,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(120418,3445,'_phrase-1','field_615ec3e936adb'),(120419,3445,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(120420,3445,'_phrase-2','field_615ec4b052c68'),(120421,3445,'purple-icon-b','2935'),(120422,3445,'_purple-icon-b','field_615ec54f0247b'),(120423,3445,'phrase-icon','Building new applications'),(120424,3445,'_phrase-icon','field_615ec5eb0499b'),(120425,3445,'phrase-i-subtitle','What is Building?'),(120426,3445,'_phrase-i-subtitle','field_615ec6aaadf65'),(120427,3445,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(120428,3445,'_text-i-sec','field_615ec761c96fb'),(120429,3445,'purple-quote-img','2936'),(120430,3445,'_purple-quote-img','field_615eca8c68d41'),(120431,3445,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(120432,3445,'_phrase-slider-1','field_615ed12966bce'),(120433,3445,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(120434,3445,'_text-slider-1','field_615ed1ea36c7c'),(120435,3445,'rb-icon-slider','2938'),(120436,3445,'_rb-icon-slider','field_615ed3500b12c'),(120437,3445,'phrase-rb','What is Rebuilding?'),(120438,3445,'_phrase-rb','field_615f0f2dc37ac'),(120439,3445,'link-rb','#rb'),(120440,3445,'_link-rb','field_615f10dc69c6c'),(120441,3445,'rp-icon-slider','2893'),(120442,3445,'_rp-icon-slider','field_615ed383c1a5e'),(120443,3445,'phrase-rp','What is Replatforming?'),(120444,3445,'_phrase-rp','field_615f0f63c37ad'),(120445,3445,'link-rp','#rp'),(120446,3445,'_link-rp','field_615f1218b6ffd'),(120447,3445,'img-slider-1','2940'),(120448,3445,'_img-slider-1','field_615f13c3c0cf3'),(120449,3445,'title-slide-rb','What is Rebuilding?'),(120450,3445,'_title-slide-rb','field_615f2512c338c'),(120451,3445,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(120452,3445,'_text-slide-rb','field_615f24e2c338b'),(120453,3445,'img-slider-2','2939'),(120454,3445,'_img-slider-2','field_615f2539c338d'),(120455,3445,'title-slide-rp','What is Replatforming?'),(120456,3445,'_title-slide-rp','field_615f27d9335b6'),(120457,3445,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(120458,3445,'_text-slide-rp','field_615f27ee335b7'),(120459,3445,'img-slider-3','2940'),(120460,3445,'_img-slider-3','field_615f27ff335b8'),(120461,3445,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(120462,3445,'_title-after-slider-h4','field_6172940c9f539'),(120463,3445,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(120464,3445,'_text-data-driven','field_61729471e80a2'),(120465,3445,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(120466,3445,'_text-tags','field_617295261e2bc'),(120467,3445,'img-app-modernization','2941'),(120468,3445,'_img-app-modernization','field_617295ac82cd3'),(120469,3445,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(120470,3445,'_phrase-rb-rp','field_6172960479081'),(120471,3445,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(120472,3445,'_phrase-tc','field_617296a28447f'),(120473,3445,'icon-t','2942'),(120474,3445,'_icon-t','field_617298d4928e0'),(120475,3445,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(120476,3445,'_team-member','field_6172995811847'),(120477,3445,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(120478,3445,'_phrase-consulting','field_61729ea05b9e6'),(120479,3445,'image-consulting','2887'),(120480,3445,'_image-consulting','field_61729f356923f'),(120481,3445,'button-consulting','Book consultation now'),(120482,3445,'_button-consulting','field_61729fcbe169a'),(120483,3445,'services-title','Services - Cloud Native Applications solutions:'),(120484,3445,'_services-title','field_6172a01105ae7'),(120485,3445,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(120486,3445,'_services-col-left','field_6172a091834a5'),(120487,3445,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(120488,3445,'_services-col-right','field_6172a0a9834a6'),(120489,3445,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(120490,3445,'_phrase-services','field_6172a1941f2ef'),(120491,3445,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(120492,3445,'_tag-services','field_6172a1ebc36e4'),(120493,3445,'values-title','Business Value
The Translucent Value:'),(120494,3445,'_values-title','field_6172a2a40fd02'),(120495,3445,'values-phrase','What does Cloud Native Data Driven Application Modernization mean for your Business?'),(120496,3445,'_values-phrase','field_6172a3355f6bb'),(120497,3445,'values-text','We learn about what makes your business and physical operations valuable to your clients and modernize that
\r\nOnshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions
\r\nData Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI
\r\nResponsive design makes your applications available across desktop, mobile, tablets and laptops 24/7
\r\nWe go above and beyond to deliver and treat your solution like our own
\r\nConstant proactive communication. Adjusting project milestones and communicating the outcomes
\r\nTranslucent application development and application modernization reduces cost
\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(120498,3445,'_values-text','field_6172a44bd49d9'),(120499,3445,'values-item-1','We learn about what makes your business and physical operations valuable to your clients and modernize that'),(120500,3445,'_values-item-1','field_6172a44bd49d9'),(120501,3445,'values-item-2','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions'),(120502,3445,'_values-item-2','field_6172a5a7e1457'),(120503,3445,'values-item-3','Data Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI'),(120504,3445,'_values-item-3','field_6172a5b0e1458'),(120505,3445,'values-item-4','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(120506,3445,'_values-item-4','field_6172a5b7e1459'),(120507,3445,'values-item-5','We go above and beyond to deliver and treat your solution like our own'),(120508,3445,'_values-item-5','field_6172a5bee145a'),(120509,3445,'values-item-6','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(120510,3445,'_values-item-6','field_6172a5c4e145b'),(120511,3445,'values-item-7','Translucent application development and application modernization reduces cost'),(120512,3445,'_values-item-7','field_6172a5cbe145c'),(120513,3445,'values-item-8','Automation of the employee and customer experience saves money and makes money'),(120514,3445,'_values-item-8','field_6172a5d3e145d'),(120515,3445,'values-item-9','strong>Increase profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(120516,3445,'_values-item-9','field_6172a5dbe145e'),(120517,3445,'final-phrase','Translucent Cloud Native Data Driven Application
Development. IT’s how your client’s do business'),(120518,3445,'_final-phrase','field_6172a81bcf043'),(120519,3446,'top-banner','3080'),(120520,3446,'_top-banner','field_615ea94aa14ad'),(120521,3446,'top-title','Cloud Native Applications'),(120522,3446,'_top-title','field_615ea986a14ae'),(120523,3446,'purple-icon-sq','2934'),(120524,3446,'_purple-icon-sq','field_615eb6e1990d3'),(120525,3446,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(120526,3446,'_phrase-1','field_615ec3e936adb'),(120527,3446,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(120528,3446,'_phrase-2','field_615ec4b052c68'),(120529,3446,'purple-icon-b','2935'),(120530,3446,'_purple-icon-b','field_615ec54f0247b'),(120531,3446,'phrase-icon','Building new applications'),(120532,3446,'_phrase-icon','field_615ec5eb0499b'),(120533,3446,'phrase-i-subtitle','What is Building?'),(120534,3446,'_phrase-i-subtitle','field_615ec6aaadf65'),(120535,3446,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(120536,3446,'_text-i-sec','field_615ec761c96fb'),(120537,3446,'purple-quote-img','2936'),(120538,3446,'_purple-quote-img','field_615eca8c68d41'),(120539,3446,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(120540,3446,'_phrase-slider-1','field_615ed12966bce'),(120541,3446,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(120542,3446,'_text-slider-1','field_615ed1ea36c7c'),(120543,3446,'rb-icon-slider','2938'),(120544,3446,'_rb-icon-slider','field_615ed3500b12c'),(120545,3446,'phrase-rb','What is Rebuilding?'),(120546,3446,'_phrase-rb','field_615f0f2dc37ac'),(120547,3446,'link-rb','#rb'),(120548,3446,'_link-rb','field_615f10dc69c6c'),(120549,3446,'rp-icon-slider','2893'),(120550,3446,'_rp-icon-slider','field_615ed383c1a5e'),(120551,3446,'phrase-rp','What is Replatforming?'),(120552,3446,'_phrase-rp','field_615f0f63c37ad'),(120553,3446,'link-rp','#rp'),(120554,3446,'_link-rp','field_615f1218b6ffd'),(120555,3446,'img-slider-1','2940'),(120556,3446,'_img-slider-1','field_615f13c3c0cf3'),(120557,3446,'title-slide-rb','What is Rebuilding?'),(120558,3446,'_title-slide-rb','field_615f2512c338c'),(120559,3446,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(120560,3446,'_text-slide-rb','field_615f24e2c338b'),(120561,3446,'img-slider-2','2939'),(120562,3446,'_img-slider-2','field_615f2539c338d'),(120563,3446,'title-slide-rp','What is Replatforming?'),(120564,3446,'_title-slide-rp','field_615f27d9335b6'),(120565,3446,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(120566,3446,'_text-slide-rp','field_615f27ee335b7'),(120567,3446,'img-slider-3','2940'),(120568,3446,'_img-slider-3','field_615f27ff335b8'),(120569,3446,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(120570,3446,'_title-after-slider-h4','field_6172940c9f539'),(120571,3446,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(120572,3446,'_text-data-driven','field_61729471e80a2'),(120573,3446,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(120574,3446,'_text-tags','field_617295261e2bc'),(120575,3446,'img-app-modernization','2941'),(120576,3446,'_img-app-modernization','field_617295ac82cd3'),(120577,3446,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(120578,3446,'_phrase-rb-rp','field_6172960479081'),(120579,3446,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(120580,3446,'_phrase-tc','field_617296a28447f'),(120581,3446,'icon-t','2942'),(120582,3446,'_icon-t','field_617298d4928e0'),(120583,3446,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(120584,3446,'_team-member','field_6172995811847'),(120585,3446,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(120586,3446,'_phrase-consulting','field_61729ea05b9e6'),(120587,3446,'image-consulting','2887'),(120588,3446,'_image-consulting','field_61729f356923f'),(120589,3446,'button-consulting','Book consultation now'),(120590,3446,'_button-consulting','field_61729fcbe169a'),(120591,3446,'services-title','Services - Cloud Native Applications solutions:'),(120592,3446,'_services-title','field_6172a01105ae7'),(120593,3446,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(120594,3446,'_services-col-left','field_6172a091834a5'),(120595,3446,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(120596,3446,'_services-col-right','field_6172a0a9834a6'),(120597,3446,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(120598,3446,'_phrase-services','field_6172a1941f2ef'),(120599,3446,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(120600,3446,'_tag-services','field_6172a1ebc36e4'),(120601,3446,'values-title','Business Value
The Translucent Value:'),(120602,3446,'_values-title','field_6172a2a40fd02'),(120603,3446,'values-phrase','What does Cloud Native Data Driven Application Modernization mean for your Business?'),(120604,3446,'_values-phrase','field_6172a3355f6bb'),(120605,3446,'values-text','We learn about what makes your business and physical operations valuable to your clients and modernize that
\r\nOnshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions
\r\nData Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI
\r\nResponsive design makes your applications available across desktop, mobile, tablets and laptops 24/7
\r\nWe go above and beyond to deliver and treat your solution like our own
\r\nConstant proactive communication. Adjusting project milestones and communicating the outcomes
\r\nTranslucent application development and application modernization reduces cost
\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(120606,3446,'_values-text','field_6172a44bd49d9'),(120607,3446,'values-item-1','We learn about what makes your business and physical operations valuable to your clients and modernize that'),(120608,3446,'_values-item-1','field_6172a44bd49d9'),(120609,3446,'values-item-2','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions'),(120610,3446,'_values-item-2','field_6172a5a7e1457'),(120611,3446,'values-item-3','Data Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI'),(120612,3446,'_values-item-3','field_6172a5b0e1458'),(120613,3446,'values-item-4','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(120614,3446,'_values-item-4','field_6172a5b7e1459'),(120615,3446,'values-item-5','We go above and beyond to deliver and treat your solution like our own'),(120616,3446,'_values-item-5','field_6172a5bee145a'),(120617,3446,'values-item-6','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(120618,3446,'_values-item-6','field_6172a5c4e145b'),(120619,3446,'values-item-7','Translucent application development and application modernization reduces cost'),(120620,3446,'_values-item-7','field_6172a5cbe145c'),(120621,3446,'values-item-8','Automation of the employee and customer experience saves money and makes money'),(120622,3446,'_values-item-8','field_6172a5d3e145d'),(120623,3446,'values-item-9','strong>Increase profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(120624,3446,'_values-item-9','field_6172a5dbe145e'),(120625,3446,'final-phrase','Translucent Cloud Native Data Driven Application
Development. IT’s how your client’s do business'),(120626,3446,'_final-phrase','field_6172a81bcf043'),(120627,3447,'top-banner','3080'),(120628,3447,'_top-banner','field_615ea94aa14ad'),(120629,3447,'top-title','Cloud Native Applications'),(120630,3447,'_top-title','field_615ea986a14ae'),(120631,3447,'purple-icon-sq','2934'),(120632,3447,'_purple-icon-sq','field_615eb6e1990d3'),(120633,3447,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(120634,3447,'_phrase-1','field_615ec3e936adb'),(120635,3447,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(120636,3447,'_phrase-2','field_615ec4b052c68'),(120637,3447,'purple-icon-b','2935'),(120638,3447,'_purple-icon-b','field_615ec54f0247b'),(120639,3447,'phrase-icon','Building new applications'),(120640,3447,'_phrase-icon','field_615ec5eb0499b'),(120641,3447,'phrase-i-subtitle','What is Building?'),(120642,3447,'_phrase-i-subtitle','field_615ec6aaadf65'),(120643,3447,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(120644,3447,'_text-i-sec','field_615ec761c96fb'),(120645,3447,'purple-quote-img','2936'),(120646,3447,'_purple-quote-img','field_615eca8c68d41'),(120647,3447,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(120648,3447,'_phrase-slider-1','field_615ed12966bce'),(120649,3447,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(120650,3447,'_text-slider-1','field_615ed1ea36c7c'),(120651,3447,'rb-icon-slider','2938'),(120652,3447,'_rb-icon-slider','field_615ed3500b12c'),(120653,3447,'phrase-rb','What is Rebuilding?'),(120654,3447,'_phrase-rb','field_615f0f2dc37ac'),(120655,3447,'link-rb','#rb'),(120656,3447,'_link-rb','field_615f10dc69c6c'),(120657,3447,'rp-icon-slider','2893'),(120658,3447,'_rp-icon-slider','field_615ed383c1a5e'),(120659,3447,'phrase-rp','What is Replatforming?'),(120660,3447,'_phrase-rp','field_615f0f63c37ad'),(120661,3447,'link-rp','#rp'),(120662,3447,'_link-rp','field_615f1218b6ffd'),(120663,3447,'img-slider-1','2940'),(120664,3447,'_img-slider-1','field_615f13c3c0cf3'),(120665,3447,'title-slide-rb','What is Rebuilding?'),(120666,3447,'_title-slide-rb','field_615f2512c338c'),(120667,3447,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(120668,3447,'_text-slide-rb','field_615f24e2c338b'),(120669,3447,'img-slider-2','2939'),(120670,3447,'_img-slider-2','field_615f2539c338d'),(120671,3447,'title-slide-rp','What is Replatforming?'),(120672,3447,'_title-slide-rp','field_615f27d9335b6'),(120673,3447,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(120674,3447,'_text-slide-rp','field_615f27ee335b7'),(120675,3447,'img-slider-3','2940'),(120676,3447,'_img-slider-3','field_615f27ff335b8'),(120677,3447,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(120678,3447,'_title-after-slider-h4','field_6172940c9f539'); INSERT INTO `wp_postmeta` VALUES (120679,3447,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(120680,3447,'_text-data-driven','field_61729471e80a2'),(120681,3447,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(120682,3447,'_text-tags','field_617295261e2bc'),(120683,3447,'img-app-modernization','2941'),(120684,3447,'_img-app-modernization','field_617295ac82cd3'),(120685,3447,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(120686,3447,'_phrase-rb-rp','field_6172960479081'),(120687,3447,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(120688,3447,'_phrase-tc','field_617296a28447f'),(120689,3447,'icon-t','2942'),(120690,3447,'_icon-t','field_617298d4928e0'),(120691,3447,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(120692,3447,'_team-member','field_6172995811847'),(120693,3447,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(120694,3447,'_phrase-consulting','field_61729ea05b9e6'),(120695,3447,'image-consulting','2887'),(120696,3447,'_image-consulting','field_61729f356923f'),(120697,3447,'button-consulting','Book consultation now'),(120698,3447,'_button-consulting','field_61729fcbe169a'),(120699,3447,'services-title','Services - Cloud Native Applications solutions:'),(120700,3447,'_services-title','field_6172a01105ae7'),(120701,3447,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(120702,3447,'_services-col-left','field_6172a091834a5'),(120703,3447,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(120704,3447,'_services-col-right','field_6172a0a9834a6'),(120705,3447,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(120706,3447,'_phrase-services','field_6172a1941f2ef'),(120707,3447,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(120708,3447,'_tag-services','field_6172a1ebc36e4'),(120709,3447,'values-title','Business Value
The Translucent Value:'),(120710,3447,'_values-title','field_6172a2a40fd02'),(120711,3447,'values-phrase','What does Cloud Native Data Driven Application Modernization mean for your Business?'),(120712,3447,'_values-phrase','field_6172a3355f6bb'),(120713,3447,'values-text','We learn about what makes your business and physical operations valuable to your clients and modernize that
\r\nOnshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions
\r\nData Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI
\r\nResponsive design makes your applications available across desktop, mobile, tablets and laptops 24/7
\r\nWe go above and beyond to deliver and treat your solution like our own
\r\nConstant proactive communication. Adjusting project milestones and communicating the outcomes
\r\nTranslucent application development and application modernization reduces cost
\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(120714,3447,'_values-text','field_6172a44bd49d9'),(120715,3447,'values-item-1','We learn about what makes your business and physical operations valuable to your clients and modernize that'),(120716,3447,'_values-item-1','field_6172a44bd49d9'),(120717,3447,'values-item-2','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions'),(120718,3447,'_values-item-2','field_6172a5a7e1457'),(120719,3447,'values-item-3','Data Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI'),(120720,3447,'_values-item-3','field_6172a5b0e1458'),(120721,3447,'values-item-4','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(120722,3447,'_values-item-4','field_6172a5b7e1459'),(120723,3447,'values-item-5','We go above and beyond to deliver and treat your solution like our own'),(120724,3447,'_values-item-5','field_6172a5bee145a'),(120725,3447,'values-item-6','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(120726,3447,'_values-item-6','field_6172a5c4e145b'),(120727,3447,'values-item-7','Translucent application development and application modernization reduces cost'),(120728,3447,'_values-item-7','field_6172a5cbe145c'),(120729,3447,'values-item-8','Automation of the employee and customer experience saves money and makes money'),(120730,3447,'_values-item-8','field_6172a5d3e145d'),(120731,3447,'values-item-9','strong>Increase profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(120732,3447,'_values-item-9','field_6172a5dbe145e'),(120733,3447,'final-phrase','Translucent Cloud Native Data Driven Application
Development. IT’s how your client’s do business'),(120734,3447,'_final-phrase','field_6172a81bcf043'),(120741,3448,'top-banner','3080'),(120742,3448,'_top-banner','field_615ea94aa14ad'),(120743,3448,'top-title','Cloud Native Applications'),(120744,3448,'_top-title','field_615ea986a14ae'),(120745,3448,'purple-icon-sq','2934'),(120746,3448,'_purple-icon-sq','field_615eb6e1990d3'),(120747,3448,'phrase-1','Translucent cloud native data driven application development. IT’s how your client’s do business.'),(120748,3448,'_phrase-1','field_615ec3e936adb'),(120749,3448,'phrase-2','In modern application development you have three choices. Build | Rebuild | Replatform'),(120750,3448,'_phrase-2','field_615ec4b052c68'),(120751,3448,'purple-icon-b','2935'),(120752,3448,'_purple-icon-b','field_615ec54f0247b'),(120753,3448,'phrase-icon','Building new applications'),(120754,3448,'_phrase-icon','field_615ec5eb0499b'),(120755,3448,'phrase-i-subtitle','What is Building?'),(120756,3448,'_phrase-i-subtitle','field_615ec6aaadf65'),(120757,3448,'text-i-sec','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.
\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.

\r\n

Unleashing the true power of your organization in the 4th industrial revolution.

\r\n

Keeping you competitive now and built for the future.'),(120758,3448,'_text-i-sec','field_615ec761c96fb'),(120759,3448,'purple-quote-img','2936'),(120760,3448,'_purple-quote-img','field_615eca8c68d41'),(120761,3448,'phrase-slider-1','What is the Best Application Modernization Choice for my Company?'),(120762,3448,'_phrase-slider-1','field_615ed12966bce'),(120763,3448,'text-slider-1','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming.

'),(120764,3448,'_text-slider-1','field_615ed1ea36c7c'),(120765,3448,'rb-icon-slider','2938'),(120766,3448,'_rb-icon-slider','field_615ed3500b12c'),(120767,3448,'phrase-rb','What is Rebuilding?'),(120768,3448,'_phrase-rb','field_615f0f2dc37ac'),(120769,3448,'link-rb','#rb'),(120770,3448,'_link-rb','field_615f10dc69c6c'),(120771,3448,'rp-icon-slider','2893'),(120772,3448,'_rp-icon-slider','field_615ed383c1a5e'),(120773,3448,'phrase-rp','What is Replatforming?'),(120774,3448,'_phrase-rp','field_615f0f63c37ad'),(120775,3448,'link-rp','#rp'),(120776,3448,'_link-rp','field_615f1218b6ffd'),(120777,3448,'img-slider-1','2940'),(120778,3448,'_img-slider-1','field_615f13c3c0cf3'),(120779,3448,'title-slide-rb','What is Rebuilding?'),(120780,3448,'_title-slide-rb','field_615f2512c338c'),(120781,3448,'text-slide-rb','You can rebuild your application components while preserving your original specifications, requirements, and business logic – this will help you shake off the confines of your old legacy technology. While using what is still of value.'),(120782,3448,'_text-slide-rb','field_615f24e2c338b'),(120783,3448,'img-slider-2','2939'),(120784,3448,'_img-slider-2','field_615f2539c338d'),(120785,3448,'title-slide-rp','What is Replatforming?'),(120786,3448,'_title-slide-rp','field_615f27d9335b6'),(120787,3448,'text-slide-rp','Replatforming is migrating an old application to a new runtime platform.

\r\n

Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(120788,3448,'_text-slide-rp','field_615f27ee335b7'),(120789,3448,'img-slider-3','2940'),(120790,3448,'_img-slider-3','field_615f27ff335b8'),(120791,3448,'title-after-slider-h4','Translucent works with the best people in your company to create data driven applications that serve your clients in a digitally transformed world.'),(120792,3448,'_title-after-slider-h4','field_6172940c9f539'),(120793,3448,'text-data-driven','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world.  Making you very competitive, especially in the current market conditions.'),(120794,3448,'_text-data-driven','field_61729471e80a2'),(120795,3448,'text-tags','Strategy | API 1st Design | Secure Transactions | Automated Customes Experience | Responsive Design | Open for Business 24/7 | Critical System 1st Approach | Revenue Driving Data Insights | APM'),(120796,3448,'_text-tags','field_617295261e2bc'),(120797,3448,'img-app-modernization','2941'),(120798,3448,'_img-app-modernization','field_617295ac82cd3'),(120799,3448,'phrase-rb-rp','Build      |      Rebuild      |      Replatform'),(120800,3448,'_phrase-rb-rp','field_6172960479081'),(120801,3448,'phrase-tc','“Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.” '),(120802,3448,'_phrase-tc','field_617296a28447f'),(120803,3448,'icon-t','2942'),(120804,3448,'_icon-t','field_617298d4928e0'),(120805,3448,'team-member','Bradford A. M. Sankar, COO - Translucent Computing'),(120806,3448,'_team-member','field_6172995811847'),(120807,3448,'phrase-consulting','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(120808,3448,'_phrase-consulting','field_61729ea05b9e6'),(120809,3448,'image-consulting','2887'),(120810,3448,'_image-consulting','field_61729f356923f'),(120811,3448,'button-consulting','Book consultation now'),(120812,3448,'_button-consulting','field_61729fcbe169a'),(120813,3448,'services-title','Services - Cloud Native Applications solutions:'),(120814,3448,'_services-title','field_6172a01105ae7'),(120815,3448,'services-col-left',' Application Development – Build | Rebuild | Replatform
\r\n Customer experience workflow automation
\r\n Application Performance Metrics (APM)
\r\n API 1st Design
\r\n Mobile 1st design
\r\n Responsive Design All Devices
\r\n Open for business 24/7'),(120816,3448,'_services-col-left','field_6172a091834a5'),(120817,3448,'services-col-right',' Microservices – Distributed Architecture
\r\n Secure Transactions – DevSecOps
\r\n Kubernetes Certified Service Provider
\r\n Multi-cloud Solutions – GCP – AWS – Azure
\r\n Critical System 1st Approach
\r\n API Economy – 3rd Party partnerships
\r\n Return on Investment 1st driven planning'),(120818,3448,'_services-col-right','field_6172a0a9834a6'),(120819,3448,'phrase-services','Is your Company Competitive in Today’s Landscape?'),(120820,3448,'_phrase-services','field_6172a1941f2ef'),(120821,3448,'tag-services','Increase Profit | Scalability | Data Driven Decisions | API Economy | Faster to Market | Reduce Cost'),(120822,3448,'_tag-services','field_6172a1ebc36e4'),(120823,3448,'values-title','Business Value
The Translucent Value:'),(120824,3448,'_values-title','field_6172a2a40fd02'),(120825,3448,'values-phrase','What does Cloud Native Data Driven Application Modernization mean for your Business?'),(120826,3448,'_values-phrase','field_6172a3355f6bb'),(120827,3448,'values-text','We learn about what makes your business and physical operations valuable to your clients and modernize that
\r\nOnshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions
\r\nData Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI
\r\nResponsive design makes your applications available across desktop, mobile, tablets and laptops 24/7
\r\nWe go above and beyond to deliver and treat your solution like our own
\r\nConstant proactive communication. Adjusting project milestones and communicating the outcomes
\r\nTranslucent application development and application modernization reduces cost
\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions\r\nAutomation of the employee and customer experience saves money and makes money
\r\nIncrease profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(120828,3448,'_values-text','field_6172a44bd49d9'),(120829,3448,'values-item-1','We learn about what makes your business and physical operations valuable to your clients and modernize that'),(120830,3448,'_values-item-1','field_6172a44bd49d9'),(120831,3448,'values-item-2','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions'),(120832,3448,'_values-item-2','field_6172a5a7e1457'),(120833,3448,'values-item-3','Data Driven Decisions will give you the ability to fine-tune your products and services based on historical patterns that give you the best ROI'),(120834,3448,'_values-item-3','field_6172a5b0e1458'),(120835,3448,'values-item-4','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(120836,3448,'_values-item-4','field_6172a5b7e1459'),(120837,3448,'values-item-5','We go above and beyond to deliver and treat your solution like our own'),(120838,3448,'_values-item-5','field_6172a5bee145a'),(120839,3448,'values-item-6','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(120840,3448,'_values-item-6','field_6172a5c4e145b'),(120841,3448,'values-item-7','Translucent application development and application modernization reduces cost'),(120842,3448,'_values-item-7','field_6172a5cbe145c'),(120843,3448,'values-item-8','Automation of the employee and customer experience saves money and makes money'),(120844,3448,'_values-item-8','field_6172a5d3e145d'),(120845,3448,'values-item-9','strong>Increase profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(120846,3448,'_values-item-9','field_6172a5dbe145e'),(120847,3448,'final-phrase','Translucent Cloud Native Data Driven Application
Development. IT’s how your client’s do business'),(120848,3448,'_final-phrase','field_6172a81bcf043'),(120862,3364,'_pinterest_shares','0'),(120863,3364,'_total_shares','0'),(120871,3361,'_pinterest_shares','0'),(120872,3361,'_total_shares','0'),(120877,3346,'_pinterest_shares','0'),(120878,3346,'_total_shares','0'),(120881,2884,'_pinterest_shares','0'),(120882,2884,'_total_shares','0'),(120893,3449,'_menu_item_type','post_type'),(120894,3449,'_menu_item_menu_item_parent','2216'),(120895,3449,'_menu_item_object_id','3372'),(120896,3449,'_menu_item_object','page'),(120897,3449,'_menu_item_target',''),(120898,3449,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(120899,3449,'_menu_item_xfn',''),(120900,3449,'_menu_item_url',''),(120902,2228,'_wp_old_date','2021-03-02'),(120903,2228,'_pinterest_shares','0'),(120904,2228,'_total_shares','0'),(120906,2228,'_menu_sgpb_popup_id','0'),(120907,2518,'_wp_old_date','2021-04-06'),(120908,2518,'_pinterest_shares','0'),(120909,2518,'_total_shares','0'),(120911,2518,'_menu_sgpb_popup_id','0'),(120912,2216,'_wp_old_date','2021-03-02'),(120913,2216,'_pinterest_shares','0'),(120914,2216,'_total_shares','0'),(120916,2216,'_menu_sgpb_popup_id','0'),(120917,3449,'_pinterest_shares','0'),(120918,3449,'_total_shares','0'),(120920,3449,'_menu_sgpb_popup_id','0'),(120921,2925,'_wp_old_date','2021-05-13'),(120922,2925,'_pinterest_shares','0'),(120923,2925,'_total_shares','0'),(120925,2925,'_menu_sgpb_popup_id','0'),(120926,2230,'_wp_old_date','2021-03-02'),(120927,2230,'_pinterest_shares','0'),(120928,2230,'_total_shares','0'),(120930,2230,'_menu_sgpb_popup_id','0'),(120931,2229,'_wp_old_date','2021-03-02'),(120932,2229,'_pinterest_shares','0'),(120933,2229,'_total_shares','0'),(120935,2229,'_menu_sgpb_popup_id','0'),(120936,2226,'_wp_old_date','2021-03-02'),(120937,2226,'_pinterest_shares','0'),(120938,2226,'_total_shares','0'),(120940,2226,'_menu_sgpb_popup_id','0'),(120941,2217,'_wp_old_date','2021-03-02'),(120942,2217,'_pinterest_shares','0'),(120943,2217,'_total_shares','0'),(120945,2217,'_menu_sgpb_popup_id','0'),(120946,2224,'_wp_old_date','2021-03-02'),(120947,2224,'_pinterest_shares','0'),(120948,2224,'_total_shares','0'),(120950,2224,'_menu_sgpb_popup_id','0'),(120951,2238,'_wp_old_date','2021-03-10'),(120952,2238,'_pinterest_shares','0'),(120953,2238,'_total_shares','0'),(120955,2238,'_menu_sgpb_popup_id','0'),(120956,2218,'_wp_old_date','2021-03-02'),(120957,2218,'_pinterest_shares','0'),(120958,2218,'_total_shares','0'),(120960,2218,'_menu_sgpb_popup_id','0'),(120961,2222,'_wp_old_date','2021-03-02'),(120962,2222,'_pinterest_shares','0'),(120963,2222,'_total_shares','0'),(120965,2222,'_menu_sgpb_popup_id','0'),(120966,2223,'_wp_old_date','2021-03-02'),(120967,2223,'_pinterest_shares','0'),(120968,2223,'_total_shares','0'),(120970,2223,'_menu_sgpb_popup_id','0'),(120971,2239,'_wp_old_date','2021-03-10'),(120972,2239,'_pinterest_shares','0'),(120973,2239,'_total_shares','0'),(120975,2239,'_menu_sgpb_popup_id','0'),(120976,3341,'_wp_old_date','2021-10-13'),(120977,3341,'_pinterest_shares','0'),(120978,3341,'_total_shares','0'),(120980,3341,'_menu_sgpb_popup_id','0'),(120981,2241,'_wp_old_date','2021-03-10'),(120982,2241,'_pinterest_shares','0'),(120983,2241,'_total_shares','0'),(120985,2241,'_menu_sgpb_popup_id','0'),(120986,3297,'_wp_old_date','2021-09-07'),(120987,3297,'_pinterest_shares','0'),(120988,3297,'_total_shares','0'),(120990,3297,'_menu_sgpb_popup_id','0'),(120991,3296,'_wp_old_date','2021-09-07'),(120992,3296,'_pinterest_shares','0'),(120993,3296,'_total_shares','0'),(120995,3296,'_menu_sgpb_popup_id','0'),(121143,3450,'_edit_lock','1650425730:17'),(121144,3450,'_edit_last','18'),(121145,3450,'hefo_before','0'),(121146,3450,'hefo_after','0'),(121147,3450,'ao_post_optimize','a:5:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";}'),(121148,3450,'_yoast_wpseo_focuskeywords','[]'),(121149,3450,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(121150,3450,'_yoast_wpseo_estimated-reading-time-minutes',''),(121151,3453,'_pinterest_shares','0'),(121152,3453,'_total_shares','0'),(121154,3454,'_pinterest_shares','0'),(121155,3454,'_total_shares','0'),(121157,3455,'_pinterest_shares','0'),(121158,3455,'_total_shares','0'),(121160,3456,'_pinterest_shares','0'),(121161,3456,'_total_shares','0'),(121163,3457,'_pinterest_shares','0'),(121164,3457,'_total_shares','0'),(121166,3458,'_pinterest_shares','0'),(121167,3458,'_total_shares','0'),(121169,3459,'_pinterest_shares','0'),(121170,3459,'_total_shares','0'),(121172,3460,'_pinterest_shares','0'),(121173,3460,'_total_shares','0'),(121175,3461,'_pinterest_shares','0'),(121176,3461,'_total_shares','0'),(121178,3452,'_pinterest_shares','0'),(121179,3452,'_total_shares','0'),(121181,3450,'_wp_page_template','client-testimonial.php'),(121182,3450,'top-phrase','What our trusted clients say about us'),(121183,3450,'_top-phrase','field_6176a2d7d64cf'),(121184,3450,'cta-phrase-1','\"Almost seem like magic\".'),(121185,3450,'_cta-phrase-1','field_6176a356d64d1'),(121186,3450,'author-1','ERIC KAPLAN'),(121187,3450,'_author-1','field_6176a387d64d3'),(121188,3450,'company-1','COO - GO TO LOANS'),(121189,3450,'_company-1','field_6176a4590a26c'),(121190,3450,'text-1','\"Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automative, loan, mechanic, and customer workflow data making the complex almost seem like magic.\" \r\n'),(121191,3450,'_text-1','field_6176a3aed64d5'),(121192,3450,'cta-phrase-2','\"Almost seem like magic\".'),(121193,3450,'_cta-phrase-2','field_6176a364d64d2'),(121194,3450,'author-2','ERIC KAPLAN'),(121195,3450,'_author-2','field_6176a391d64d4'),(121196,3450,'company-2','COO - GO TO LOANS'),(121197,3450,'_company-2','field_6176a4780a26d'),(121198,3450,'text-2','\"Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automative, loan, mechanic, and customer workflow data making the complex almost seem like magic.\" '),(121199,3450,'_text-2','field_6176a3c2d64d6'),(121200,3451,'top-phrase',''),(121201,3451,'_top-phrase','field_6176a2d7d64cf'),(121202,3451,'cta-phrase-1',''),(121203,3451,'_cta-phrase-1','field_6176a356d64d1'),(121204,3451,'author-1',''),(121205,3451,'_author-1','field_6176a387d64d3'),(121206,3451,'company-1',''),(121207,3451,'_company-1','field_6176a4590a26c'),(121208,3451,'text-1',''),(121209,3451,'_text-1','field_6176a3aed64d5'),(121210,3451,'cta-phrase-2',''),(121211,3451,'_cta-phrase-2','field_6176a364d64d2'),(121212,3451,'author-2',''),(121213,3451,'_author-2','field_6176a391d64d4'),(121214,3451,'company-2',''),(121215,3451,'_company-2','field_6176a4780a26d'),(121216,3451,'text-2',''),(121217,3451,'_text-2','field_6176a3c2d64d6'),(121218,3462,'top-phrase','What our trusted clients say about us'),(121219,3462,'_top-phrase','field_6176a2d7d64cf'),(121220,3462,'cta-phrase-1','\"Almost seem like magic\".Z'),(121221,3462,'_cta-phrase-1','field_6176a356d64d1'),(121222,3462,'author-1','ERIC KAPLANz'),(121223,3462,'_author-1','field_6176a387d64d3'),(121224,3462,'company-1','COO - GO TO LOANSz'),(121225,3462,'_company-1','field_6176a4590a26c'),(121226,3462,'text-1','\"Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automative, loan, mechanic, and customer workflow data making the complex almost seem like magic.\" 1\r\n'),(121227,3462,'_text-1','field_6176a3aed64d5'),(121228,3462,'cta-phrase-2','\"Almost seem like magic\".T'),(121229,3462,'_cta-phrase-2','field_6176a364d64d2'),(121230,3462,'author-2','ERIC KAPLANt'),(121231,3462,'_author-2','field_6176a391d64d4'),(121232,3462,'company-2','COO - GO TO LOANSt'),(121233,3462,'_company-2','field_6176a4780a26d'),(121234,3462,'text-2','\"Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automative, loan, mechanic, and customer workflow data making the complex almost seem like magic.\" 2\r\n'),(121235,3462,'_text-2','field_6176a3c2d64d6'),(121236,3463,'top-phrase','What our trusted clients say about us'),(121237,3463,'_top-phrase','field_6176a2d7d64cf'),(121238,3463,'cta-phrase-1','\"Almost seem like magic\".Z'),(121239,3463,'_cta-phrase-1','field_6176a356d64d1'),(121240,3463,'author-1','ERIC KAPLANz'),(121241,3463,'_author-1','field_6176a387d64d3'),(121242,3463,'company-1','COO - GO TO LOANSz'),(121243,3463,'_company-1','field_6176a4590a26c'),(121244,3463,'text-1','\"Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automative, loan, mechanic, and customer workflow data making the complex almost seem like magic.\" 1\r\n'),(121245,3463,'_text-1','field_6176a3aed64d5'),(121246,3463,'cta-phrase-2','\"Almost seem like magic\".T'),(121247,3463,'_cta-phrase-2','field_6176a364d64d2'),(121248,3463,'author-2','ERIC KAPLANt'),(121249,3463,'_author-2','field_6176a391d64d4'),(121250,3463,'company-2','COO - GO TO LOANSt'),(121251,3463,'_company-2','field_6176a4780a26d'),(121252,3463,'text-2','\"Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automative, loan, mechanic, and customer workflow data making the complex almost seem like magic.\" 2\r\n'),(121253,3463,'_text-2','field_6176a3c2d64d6'),(121257,3464,'top-phrase','What our trusted clients say about us'),(121258,3464,'_top-phrase','field_6176a2d7d64cf'),(121259,3464,'cta-phrase-1','\"Almost seem like magic\".'),(121260,3464,'_cta-phrase-1','field_6176a356d64d1'),(121261,3464,'author-1','ERIC KAPLAN'),(121262,3464,'_author-1','field_6176a387d64d3'),(121263,3464,'company-1','COO - GO TO LOANS'),(121264,3464,'_company-1','field_6176a4590a26c'),(121265,3464,'text-1','\"Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automative, loan, mechanic, and customer workflow data making the complex almost seem like magic.\" \r\n'),(121266,3464,'_text-1','field_6176a3aed64d5'),(121267,3464,'cta-phrase-2','\"Almost seem like magic\".'),(121268,3464,'_cta-phrase-2','field_6176a364d64d2'),(121269,3464,'author-2','ERIC KAPLAN'),(121270,3464,'_author-2','field_6176a391d64d4'),(121271,3464,'company-2','COO - GO TO LOANS'),(121272,3464,'_company-2','field_6176a4780a26d'),(121273,3464,'text-2','\"Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automative, loan, mechanic, and customer workflow data making the complex almost seem like magic.\" '),(121274,3464,'_text-2','field_6176a3c2d64d6'),(121275,3450,'_pinterest_shares','0'),(121276,3450,'_total_shares','0'),(121362,3466,'_pinterest_shares','0'),(121363,3466,'_total_shares','0'),(121365,3467,'_pinterest_shares','0'),(121366,3467,'_total_shares','0'),(121368,3468,'_pinterest_shares','0'),(121369,3468,'_total_shares','0'),(121371,3469,'_pinterest_shares','0'),(121372,3469,'_total_shares','0'),(121389,3475,'_pinterest_shares','0'),(121390,3475,'_total_shares','0'),(121392,3476,'_pinterest_shares','0'),(121393,3476,'_total_shares','0'),(121395,3477,'_pinterest_shares','0'),(121396,3477,'_total_shares','0'),(121398,3478,'_pinterest_shares','0'),(121399,3478,'_total_shares','0'),(121401,3479,'_pinterest_shares','0'),(121402,3479,'_total_shares','0'),(121404,3480,'_pinterest_shares','0'),(121405,3480,'_total_shares','0'),(121407,3481,'_pinterest_shares','0'),(121408,3481,'_total_shares','0'),(121410,3482,'_pinterest_shares','0'),(121411,3482,'_total_shares','0'),(121413,3483,'_pinterest_shares','0'),(121414,3483,'_total_shares','0'),(121416,3484,'_pinterest_shares','0'),(121417,3484,'_total_shares','0'),(121419,3485,'_pinterest_shares','0'),(121420,3485,'_total_shares','0'),(121422,3486,'_pinterest_shares','0'),(121423,3486,'_total_shares','0'),(121425,3487,'_pinterest_shares','0'),(121426,3487,'_total_shares','0'),(121428,3488,'_pinterest_shares','0'),(121429,3488,'_total_shares','0'),(121431,3489,'_pinterest_shares','0'),(121432,3489,'_total_shares','0'),(121434,3474,'_pinterest_shares','0'),(121435,3474,'_total_shares','0'),(121437,3491,'_pinterest_shares','0'),(121438,3491,'_total_shares','0'),(121440,3492,'_pinterest_shares','0'),(121441,3492,'_total_shares','0'),(121443,3493,'_pinterest_shares','0'),(121444,3493,'_total_shares','0'),(121446,3494,'_pinterest_shares','0'),(121447,3494,'_total_shares','0'),(121449,3495,'_pinterest_shares','0'),(121450,3495,'_total_shares','0'),(121452,3496,'_pinterest_shares','0'),(121453,3496,'_total_shares','0'),(121455,3497,'_pinterest_shares','0'),(121456,3497,'_total_shares','0'),(121458,3498,'_pinterest_shares','0'),(121459,3498,'_total_shares','0'),(121461,3499,'_pinterest_shares','0'),(121462,3499,'_total_shares','0'),(121464,3500,'_pinterest_shares','0'),(121465,3500,'_total_shares','0'),(121467,3501,'_pinterest_shares','0'),(121468,3501,'_total_shares','0'),(121470,3502,'_pinterest_shares','0'),(121471,3502,'_total_shares','0'),(121473,3490,'_pinterest_shares','0'),(121474,3490,'_total_shares','0'),(121476,3504,'_pinterest_shares','0'),(121477,3504,'_total_shares','0'),(121479,3505,'_pinterest_shares','0'),(121480,3505,'_total_shares','0'),(121482,3506,'_pinterest_shares','0'),(121483,3506,'_total_shares','0'),(121485,3507,'_pinterest_shares','0'),(121486,3507,'_total_shares','0'),(121488,3508,'_pinterest_shares','0'),(121489,3508,'_total_shares','0'),(121491,3509,'_pinterest_shares','0'),(121492,3509,'_total_shares','0'),(121494,3510,'_pinterest_shares','0'),(121495,3510,'_total_shares','0'),(121497,3511,'_pinterest_shares','0'),(121498,3511,'_total_shares','0'),(121500,3512,'_pinterest_shares','0'),(121501,3512,'_total_shares','0'),(121503,3513,'_pinterest_shares','0'),(121504,3513,'_total_shares','0'),(121506,3514,'_pinterest_shares','0'),(121507,3514,'_total_shares','0'),(121509,3515,'_pinterest_shares','0'),(121510,3515,'_total_shares','0'),(121512,3516,'_pinterest_shares','0'),(121513,3516,'_total_shares','0'),(121515,3517,'_pinterest_shares','0'),(121516,3517,'_total_shares','0'),(121518,3518,'_pinterest_shares','0'),(121519,3518,'_total_shares','0'),(121521,3519,'_pinterest_shares','0'),(121522,3519,'_total_shares','0'),(121524,3520,'_pinterest_shares','0'),(121525,3520,'_total_shares','0'),(121527,3521,'_pinterest_shares','0'),(121528,3521,'_total_shares','0'),(121530,3522,'_pinterest_shares','0'),(121531,3522,'_total_shares','0'),(121533,3503,'_pinterest_shares','0'),(121534,3503,'_total_shares','0'),(121536,3523,'_edit_lock','1654635866:20'),(121537,3523,'_edit_last','4'),(121538,3523,'hefo_before','0'),(121539,3523,'hefo_after','0'),(121540,3523,'ao_post_optimize','a:5:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";}'),(121541,3523,'_yoast_wpseo_focuskeywords','[]'),(121542,3523,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(121543,3523,'_yoast_wpseo_estimated-reading-time-minutes',''),(121549,3523,'_wp_page_template','cloud-native.php'),(121550,3523,'main-title','Cloud Native Solutions Your Business Depends On'),(121551,3523,'_main-title','field_6176c354de231'),(121552,3523,'title-1','Digital Transformation What’s In It For Me?'),(121553,3523,'_title-1','field_6176c363de232'),(121554,3523,'phrase-1','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(121555,3523,'_phrase-1','field_6176c396de234'),(121556,3523,'button-cta-1','LEARN MORE'),(121557,3523,'_button-cta-1','field_6176c3c9de236'),(121558,3523,'title-2','Our Technology is Stacked'),(121559,3523,'_title-2','field_6176c388de233'),(121560,3523,'phrase-2','Data-Driven application tools and processes specialized in building cloud native applications. \r\nOptimize your development by 20% to 50%, by using production-ready open source tools.'),(121561,3523,'_phrase-2','field_6176c3adde235'),(121562,3523,'button-cta-2','LEARN MORE'),(121563,3523,'_button-cta-2','field_6176c3d7de237'),(121564,3523,'background',''),(121565,3523,'_background','field_6176cdd41416a'),(121566,3526,'main-title','Cloud Native Solutions Your Business Depends On'),(121567,3526,'_main-title','field_6176c354de231'),(121568,3526,'title-1','Digital Transformation What’s In It For Me?'),(121569,3526,'_title-1','field_6176c363de232'),(121570,3526,'phrase-1','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(121571,3526,'_phrase-1','field_6176c396de234'),(121572,3526,'button-cta-1','LEARN MORE'),(121573,3526,'_button-cta-1','field_6176c3c9de236'),(121574,3526,'title-2','Digital Transformation What’s In It For Me?'),(121575,3526,'_title-2','field_6176c388de233'),(121576,3526,'phrase-2','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(121577,3526,'_phrase-2','field_6176c3adde235'),(121578,3526,'button-cta-2','LEARN MORE'),(121579,3526,'_button-cta-2','field_6176c3d7de237'),(121580,3526,'background','3525'),(121581,3526,'_background','field_6176cdd41416a'),(121582,3527,'_edit_lock','1635594823:18'),(121583,3528,'_wp_attached_file','2021/10/rob.png'),(121584,3528,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:248;s:6:\"height\";i:189;s:4:\"file\";s:15:\"2021/10/rob.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"rob-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:{}}}'),(121585,3528,'_imagify_optimization_level','0'),(121586,3528,'_imagify_status','success'),(121587,3528,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52393;s:14:\"optimized_size\";i:19485;s:7:\"percent\";d:62.81;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36821;s:14:\"optimized_size\";i:15526;s:7:\"percent\";d:57.83;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52393;s:14:\"optimized_size\";i:23682;s:7:\"percent\";d:54.8;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36821;s:14:\"optimized_size\";i:36246;s:7:\"percent\";d:1.56;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:178428;s:14:\"optimized_size\";i:94939;s:7:\"percent\";d:46.79;}}'),(121588,3529,'_wp_attached_file','2021/10/patryk.png'),(121589,3529,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:248;s:6:\"height\";i:189;s:4:\"file\";s:18:\"2021/10/patryk.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"patryk-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:{}}}'),(121590,3529,'_imagify_optimization_level','0'),(121591,3529,'_imagify_status','success'),(121592,3529,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:53206;s:14:\"optimized_size\";i:20960;s:7:\"percent\";d:60.61;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41491;s:14:\"optimized_size\";i:18822;s:7:\"percent\";d:54.64;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:53206;s:14:\"optimized_size\";i:31786;s:7:\"percent\";d:40.26;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41491;s:14:\"optimized_size\";i:41009;s:7:\"percent\";d:1.16;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:189394;s:14:\"optimized_size\";i:112577;s:7:\"percent\";d:40.56;}}'),(121593,3530,'_wp_attached_file','2021/10/brad.png'),(121594,3530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:248;s:6:\"height\";i:189;s:4:\"file\";s:16:\"2021/10/brad.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"brad-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:{}}}'),(121595,3530,'_imagify_optimization_level','0'),(121596,3530,'_imagify_status','success'),(121597,3530,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:73330;s:14:\"optimized_size\";i:24333;s:7:\"percent\";d:66.82;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:49065;s:14:\"optimized_size\";i:25086;s:7:\"percent\";d:48.87;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:73330;s:14:\"optimized_size\";i:40820;s:7:\"percent\";d:44.33;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:49065;s:14:\"optimized_size\";i:48788;s:7:\"percent\";d:0.56;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:244790;s:14:\"optimized_size\";i:139027;s:7:\"percent\";d:43.21;}}'),(121598,3527,'_wp_page_template','contact-us.php'),(121599,3527,'_edit_last','18'),(121600,3527,'hefo_before','0'),(121601,3527,'hefo_after','0'),(121602,3527,'ao_post_optimize','a:5:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";}'),(121603,3527,'_yoast_wpseo_focuskeywords','[]'),(121604,3527,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(121605,3527,'_yoast_wpseo_estimated-reading-time-minutes',''),(121606,3527,'main-title','Contact us'),(121607,3527,'_main-title','field_61773432e6ceb'),(121608,3527,'sub-title','Let`s Talk'),(121609,3527,'_sub-title','field_61773452e6cec'),(121610,3527,'phrase-1','We Treat Your Business like our Own'),(121611,3527,'_phrase-1','field_617732a4e6cde'),(121612,3527,'img-1','3528'),(121613,3527,'_img-1','field_617732cae6cdf'),(121614,3527,'name-1','Robert Golabek'),(121615,3527,'_name-1','field_61773304e6ce2'),(121616,3527,'position-1','Chief Executive Officer'),(121617,3527,'_position-1','field_6177334de6ce5'),(121618,3527,'img-2','3529'),(121619,3527,'_img-2','field_617732e3e6ce0'),(121620,3527,'name-2','Patryk Golabek'),(121621,3527,'_name-2','field_61773313e6ce3'),(121622,3527,'position-2','Chief Technology Officer'),(121623,3527,'_position-2','field_61773370e6ce6'),(121624,3527,'img-3','3530'),(121625,3527,'_img-3','field_617732f0e6ce1'),(121626,3527,'name-3','Bradford A. M. Sankar'),(121627,3527,'_name-3','field_6177331fe6ce4'),(121628,3527,'position-3','Chief Operating Office'),(121629,3527,'_position-3','field_6177337be6ce7'),(121630,3527,'field-1','Send an email to us'),(121631,3527,'_field-1','field_61773393e6ce8'),(121632,3527,'field-2','info@translucentcomputing.com'),(121633,3527,'_field-2','field_617733c5e6ce9'),(121634,3527,'field-3','1-888-828-0144 x 105'),(121635,3527,'_field-3','field_617733d2e6cea'),(121636,3532,'main-title','Contact us'),(121637,3532,'_main-title','field_61773432e6ceb'),(121638,3532,'sub-title','Let`s Talk'),(121639,3532,'_sub-title','field_61773452e6cec'),(121640,3532,'phrase-1','We Treat Your Business like our Own'),(121641,3532,'_phrase-1','field_617732a4e6cde'),(121642,3532,'img-1','3528'),(121643,3532,'_img-1','field_617732cae6cdf'),(121644,3532,'name-1','Robert Golabek'),(121645,3532,'_name-1','field_61773304e6ce2'),(121646,3532,'position-1','Chief Executive Officer'),(121647,3532,'_position-1','field_6177334de6ce5'),(121648,3532,'img-2','3529'),(121649,3532,'_img-2','field_617732e3e6ce0'),(121650,3532,'name-2','Patryk Golabek'),(121651,3532,'_name-2','field_61773313e6ce3'),(121652,3532,'position-2','Chief Technology Officer'),(121653,3532,'_position-2','field_61773370e6ce6'),(121654,3532,'img-3','3530'),(121655,3532,'_img-3','field_617732f0e6ce1'),(121656,3532,'name-3','Bradford A. M. Sankar'),(121657,3532,'_name-3','field_6177331fe6ce4'),(121658,3532,'position-3','Chief Operating Office'),(121659,3532,'_position-3','field_6177337be6ce7'),(121660,3532,'field-1','Send an email to us'),(121661,3532,'_field-1','field_61773393e6ce8'),(121662,3532,'field-2','contact@translucentcomputing.com'),(121663,3532,'_field-2','field_617733c5e6ce9'),(121664,3532,'field-3','1-888-828-0144 x 105'),(121665,3532,'_field-3','field_617733d2e6cea'),(121666,3533,'main-title','Contact us'),(121667,3533,'_main-title','field_61773432e6ceb'),(121668,3533,'sub-title','Let`s Talks'),(121669,3533,'_sub-title','field_61773452e6cec'),(121670,3533,'phrase-1','We Treat Your Business like our Own'),(121671,3533,'_phrase-1','field_617732a4e6cde'),(121672,3533,'img-1','3528'),(121673,3533,'_img-1','field_617732cae6cdf'),(121674,3533,'name-1','Robert Golabek'),(121675,3533,'_name-1','field_61773304e6ce2'),(121676,3533,'position-1','Chief Executive Officer'),(121677,3533,'_position-1','field_6177334de6ce5'),(121678,3533,'img-2','3529'),(121679,3533,'_img-2','field_617732e3e6ce0'),(121680,3533,'name-2','Patryk Golabek'),(121681,3533,'_name-2','field_61773313e6ce3'),(121682,3533,'position-2','Chief Technology Officer'),(121683,3533,'_position-2','field_61773370e6ce6'),(121684,3533,'img-3','3530'),(121685,3533,'_img-3','field_617732f0e6ce1'),(121686,3533,'name-3','Bradford A. M. Sankar'),(121687,3533,'_name-3','field_6177331fe6ce4'),(121688,3533,'position-3','Chief Operating Office'),(121689,3533,'_position-3','field_6177337be6ce7'),(121690,3533,'field-1','Send an email to us'),(121691,3533,'_field-1','field_61773393e6ce8'),(121692,3533,'field-2','contact@translucentcomputing.com'),(121693,3533,'_field-2','field_617733c5e6ce9'),(121694,3533,'field-3','1-888-828-0144 x 105'),(121695,3533,'_field-3','field_617733d2e6cea'),(121696,3534,'main-title','Contact us'),(121697,3534,'_main-title','field_61773432e6ceb'),(121698,3534,'sub-title','Let`s Talk'),(121699,3534,'_sub-title','field_61773452e6cec'),(121700,3534,'phrase-1','We Treat Your Business like our Own'),(121701,3534,'_phrase-1','field_617732a4e6cde'),(121702,3534,'img-1','3528'),(121703,3534,'_img-1','field_617732cae6cdf'),(121704,3534,'name-1','Robert Golabek'),(121705,3534,'_name-1','field_61773304e6ce2'),(121706,3534,'position-1','Chief Executive Officer'),(121707,3534,'_position-1','field_6177334de6ce5'),(121708,3534,'img-2','3529'),(121709,3534,'_img-2','field_617732e3e6ce0'),(121710,3534,'name-2','Patryk Golabek'),(121711,3534,'_name-2','field_61773313e6ce3'),(121712,3534,'position-2','Chief Technology Officer'),(121713,3534,'_position-2','field_61773370e6ce6'),(121714,3534,'img-3','3530'),(121715,3534,'_img-3','field_617732f0e6ce1'),(121716,3534,'name-3','Bradford A. M. Sankar'),(121717,3534,'_name-3','field_6177331fe6ce4'),(121718,3534,'position-3','Chief Operating Office'),(121719,3534,'_position-3','field_6177337be6ce7'),(121720,3534,'field-1','Send an email to us'),(121721,3534,'_field-1','field_61773393e6ce8'),(121722,3534,'field-2','contact@translucentcomputing.com'),(121723,3534,'_field-2','field_617733c5e6ce9'),(121724,3534,'field-3','1-888-828-0144 x 105'),(121725,3534,'_field-3','field_617733d2e6cea'),(121726,3535,'_edit_lock','1635264886:18'),(121727,3535,'_edit_last','18'),(121728,3535,'hefo_before','0'),(121729,3535,'hefo_after','0'),(121730,3535,'ao_post_optimize','a:5:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";}'),(121731,3535,'_yoast_wpseo_focuskeywords','[]'),(121732,3535,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(121733,3535,'_yoast_wpseo_estimated-reading-time-minutes',''),(121734,3537,'_wp_attached_file','2021/10/inform-and-learn.png'),(121735,3537,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:440;s:6:\"height\";i:477;s:4:\"file\";s:28:\"2021/10/inform-and-learn.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"inform-and-learn-277x300.png\";s:5:\"width\";i:277;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"inform-and-learn-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:{}}}'),(121736,3537,'_imagify_optimization_level','0'),(121737,3537,'_imagify_status','success'),(121738,3537,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37693;s:14:\"optimized_size\";i:30315;s:7:\"percent\";d:19.57;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13871;s:14:\"optimized_size\";i:14862;s:7:\"percent\";d:-7.14;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35508;s:14:\"optimized_size\";i:33380;s:7:\"percent\";d:5.99;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37693;s:14:\"optimized_size\";i:58064;s:7:\"percent\";d:-54.04;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35508;s:14:\"optimized_size\";i:32345;s:7:\"percent\";d:8.91;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13871;s:14:\"optimized_size\";i:12411;s:7:\"percent\";d:10.53;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:174144;s:14:\"optimized_size\";i:181377;s:7:\"percent\";d:-4.15;}}'),(121739,3538,'_wp_attached_file','2021/10/inception-and-discovery.png'),(121740,3538,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:474;s:6:\"height\";i:474;s:4:\"file\";s:35:\"2021/10/inception-and-discovery.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"inception-and-discovery-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:35:\"inception-and-discovery-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:{}}}'),(121741,3538,'_imagify_optimization_level','0'),(121742,3538,'_imagify_status','success'),(121743,3538,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:44263;s:14:\"optimized_size\";i:34831;s:7:\"percent\";d:21.31;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15200;s:14:\"optimized_size\";i:17268;s:7:\"percent\";d:-13.61;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40486;s:14:\"optimized_size\";i:42466;s:7:\"percent\";d:-4.89;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:44263;s:14:\"optimized_size\";i:67740;s:7:\"percent\";d:-53.04;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40486;s:14:\"optimized_size\";i:36199;s:7:\"percent\";d:10.59;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15200;s:14:\"optimized_size\";i:13176;s:7:\"percent\";d:13.32;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:199898;s:14:\"optimized_size\";i:211680;s:7:\"percent\";d:-5.89;}}'),(121744,3539,'_wp_attached_file','2021/10/digital-transformation.png'),(121745,3539,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:468;s:6:\"height\";i:458;s:4:\"file\";s:34:\"2021/10/digital-transformation.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"digital-transformation-300x294.png\";s:5:\"width\";i:300;s:6:\"height\";i:294;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"digital-transformation-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:{}}}'),(121746,3539,'_imagify_optimization_level','0'),(121747,3539,'_imagify_status','success'),(121748,3539,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39204;s:14:\"optimized_size\";i:31364;s:7:\"percent\";d:20;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18092;s:14:\"optimized_size\";i:13298;s:7:\"percent\";d:26.5;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:42460;s:14:\"optimized_size\";i:33076;s:7:\"percent\";d:22.1;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39204;s:14:\"optimized_size\";i:56422;s:7:\"percent\";d:-43.92;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:42460;s:14:\"optimized_size\";i:37390;s:7:\"percent\";d:11.94;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18092;s:14:\"optimized_size\";i:15332;s:7:\"percent\";d:15.26;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:199512;s:14:\"optimized_size\";i:186882;s:7:\"percent\";d:6.33;}}'),(121749,3535,'_wp_page_template','our-process.php'),(121750,3535,'main-title','Our Process'),(121751,3535,'_main-title','field_6176d497ea6e8'),(121752,3535,'img-1','3537'),(121753,3535,'_img-1','field_6176d4f3ea6ec'),(121754,3535,'title-1','Inform and Learn'),(121755,3535,'_title-1','field_6176d51eea6ef'),(121756,3535,'text-1','We work with you, informing and educating you about what it takes\r\nto be digitally competitive in the current market. \r\nWe learn your business and business needs.'),(121757,3535,'_text-1','field_6176d4a6ea6e9'),(121758,3535,'img-2','3538'),(121759,3535,'_img-2','field_6176d506ea6ed'),(121760,3535,'title-2','Inception and Discovery'),(121761,3535,'_title-2','field_6176d527ea6f0'),(121762,3535,'text-2','During the discovery phase we uncover all business processes and requirements and understand your current state. During the inception phase we conceive and plan your solution. '),(121763,3535,'_text-2','field_6176d4c3ea6ea'),(121764,3535,'img-3','3539'),(121765,3535,'_img-3','field_6176d50dea6ee'),(121766,3535,'title-3','Digital Transformation'),(121767,3535,'_title-3','field_6176d537ea6f1'),(121768,3535,'text-3','We implement your digital strategy with ongoing support, leveraging proven development methodologies.'),(121769,3535,'_text-3','field_6176d4cfea6eb'),(121770,3535,'button','Learn More'),(121771,3535,'_button','field_6176d548ea6f2'),(121772,3535,'link-button','https://translucentcomputing.com/process/'),(121773,3535,'_link-button','field_617708ef74394'),(121774,3540,'main-title','Our Process'),(121775,3540,'_main-title','field_6176d497ea6e8'),(121776,3540,'img-1','3537'),(121777,3540,'_img-1','field_6176d4f3ea6ec'),(121778,3540,'title-1','Inform and Learn'),(121779,3540,'_title-1','field_6176d51eea6ef'),(121780,3540,'text-1','We work with you, informing and educating you about what it takes\r\nto be digitally competitive in the current market. \r\nWe learn your business and business needs.'),(121781,3540,'_text-1','field_6176d4a6ea6e9'),(121782,3540,'img-2','3538'),(121783,3540,'_img-2','field_6176d506ea6ed'),(121784,3540,'title-2','Inception and Discovery'),(121785,3540,'_title-2','field_6176d527ea6f0'),(121786,3540,'text-2','During the discovery phase we uncover all business processes and requirements and understand your current state. During the inception phase we conceive and plan your solution. '),(121787,3540,'_text-2','field_6176d4c3ea6ea'),(121788,3540,'img-3','3539'),(121789,3540,'_img-3','field_6176d50dea6ee'),(121790,3540,'title-3','Digital Transformation'),(121791,3540,'_title-3','field_6176d537ea6f1'),(121792,3540,'text-3','We implement your digital strategy with ongoing support, leveraging proven development methodologies.'),(121793,3540,'_text-3','field_6176d4cfea6eb'),(121794,3540,'button','Learn More'),(121795,3540,'_button','field_6176d548ea6f2'),(121796,3540,'link-button','https://translucentcomputing.com/process/'),(121797,3540,'_link-button','field_617708ef74394'),(121798,3541,'_edit_lock','1635264896:18'),(121799,3541,'_edit_last','18'),(121800,3541,'hefo_before','0'),(121801,3541,'hefo_after','0'),(121802,3541,'ao_post_optimize','a:5:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";}'),(121803,3541,'_yoast_wpseo_focuskeywords','[]'),(121804,3541,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(121805,3541,'_yoast_wpseo_estimated-reading-time-minutes',''),(121806,3541,'_wp_page_template','services-inc.php'),(121807,3541,'icon-1','3115'),(121808,3541,'_icon-1','field_61771b1e08856'),(121809,3541,'title-1','Cloud Native Applications'),(121810,3541,'_title-1','field_61771a9908852'),(121811,3541,'text-1','Translucent cloud native data driven
application development.
\r\nIT’s how your client’s do business.'),(121812,3541,'_text-1','field_61771c77557fe'),(121813,3541,'img-1','2959'),(121814,3541,'_img-1','field_61771cdb68720'),(121815,3541,'button-1','Learn more'),(121816,3541,'_button-1','field_61771d677c6cd'),(121817,3541,'link-button-1','https://translucentcomputing.com/cloud-native-application-development/'),(121818,3541,'_link-button-1','field_61771da87c6d0'),(121819,3541,'icon-2','3114'),(121820,3541,'_icon-2','field_61771b4308857'),(121821,3541,'title-2','Cloud Native DevOps'),(121822,3541,'_title-2','field_61771ae908853'),(121823,3541,'text-2','Cost-effective automation of your
\r\noperations and infrastructure, with a
\r\nfocus on what drives business value.'),(121824,3541,'_text-2','field_61771c8a557ff'),(121825,3541,'img-2','2961'),(121826,3541,'_img-2','field_61771cf568721'),(121827,3541,'button-2','Learn more'),(121828,3541,'_button-2','field_61771d767c6ce'),(121829,3541,'link-button-2','https://translucentcomputing.com/cloud-native-devops/'),(121830,3541,'_link-button-2','field_61771dda7c6d1'),(121831,3541,'icon-3','3113'),(121832,3541,'_icon-3','field_61771b4e08858'),(121833,3541,'title-3','Kubernetes Services'),(121834,3541,'_title-3','field_61771aff08855'),(121835,3541,'text-3','Our cloud native teams are experts in Docker,
\r\nKubernetes, Microservices and distributed systems.
\r\nWe excel in building, deploying, and scaling modern
\r\napplications in the cloud.'),(121836,3541,'_text-3','field_61771c9b55800'),(121837,3541,'img-3','2960'),(121838,3541,'_img-3','field_61771d0368722'),(121839,3541,'button-3','Learn more'),(121840,3541,'_button-3','field_61771d837c6cf'),(121841,3541,'link-button-3','https://translucent.local/kubernetes-professional-services/'),(121842,3541,'_link-button-3','field_61771de57c6d2'),(121843,3541,'background','3544'),(121844,3541,'_background','field_61771d2e6c2f9'),(121845,3542,'icon-1',''),(121846,3542,'_icon-1','field_61771b1e08856'),(121847,3542,'title-1',''),(121848,3542,'_title-1','field_61771a9908852'),(121849,3542,'text-1',''),(121850,3542,'_text-1','field_61771c77557fe'),(121851,3542,'img-1',''),(121852,3542,'_img-1','field_61771cdb68720'),(121853,3542,'button-1',''),(121854,3542,'_button-1','field_61771d677c6cd'),(121855,3542,'link-button-1',''),(121856,3542,'_link-button-1','field_61771da87c6d0'),(121857,3542,'icon-2',''),(121858,3542,'_icon-2','field_61771b4308857'),(121859,3542,'title-2',''),(121860,3542,'_title-2','field_61771ae908853'),(121861,3542,'text-2',''),(121862,3542,'_text-2','field_61771c8a557ff'),(121863,3542,'img-2',''),(121864,3542,'_img-2','field_61771cf568721'),(121865,3542,'button-2',''),(121866,3542,'_button-2','field_61771d767c6ce'),(121867,3542,'link-button-2',''),(121868,3542,'_link-button-2','field_61771dda7c6d1'),(121869,3542,'icon-3',''),(121870,3542,'_icon-3','field_61771b4e08858'),(121871,3542,'title-3',''),(121872,3542,'_title-3','field_61771aff08855'),(121873,3542,'text-3',''),(121874,3542,'_text-3','field_61771c9b55800'),(121875,3542,'img-3',''),(121876,3542,'_img-3','field_61771d0368722'),(121877,3542,'button-3',''),(121878,3542,'_button-3','field_61771d837c6cf'),(121879,3542,'link-button-3',''),(121880,3542,'_link-button-3','field_61771de57c6d2'),(121881,3542,'background',''),(121882,3542,'_background','field_61771d2e6c2f9'),(121883,3543,'icon-1','3115'),(121884,3543,'_icon-1','field_61771b1e08856'),(121885,3543,'title-1','Cloud Native Applications'),(121886,3543,'_title-1','field_61771a9908852'),(121887,3543,'text-1','Translucent cloud native data driven
application development.
\r\nIT’s how your client’s do business.'),(121888,3543,'_text-1','field_61771c77557fe'),(121889,3543,'img-1',''),(121890,3543,'_img-1','field_61771cdb68720'),(121891,3543,'button-1','Learn more'),(121892,3543,'_button-1','field_61771d677c6cd'),(121893,3543,'link-button-1','https://translucentcomputing.com/cloud-native-application-development/'),(121894,3543,'_link-button-1','field_61771da87c6d0'),(121895,3543,'icon-2','3114'),(121896,3543,'_icon-2','field_61771b4308857'),(121897,3543,'title-2','Cloud Native DevOps'),(121898,3543,'_title-2','field_61771ae908853'),(121899,3543,'text-2','Cost-effective automation of your
\r\noperations and infrastructure, with a
\r\nfocus on what drives business value.'),(121900,3543,'_text-2','field_61771c8a557ff'),(121901,3543,'img-2',''),(121902,3543,'_img-2','field_61771cf568721'),(121903,3543,'button-2','Learn more'),(121904,3543,'_button-2','field_61771d767c6ce'),(121905,3543,'link-button-2','https://translucentcomputing.com/cloud-native-devops/'),(121906,3543,'_link-button-2','field_61771dda7c6d1'),(121907,3543,'icon-3','3113'),(121908,3543,'_icon-3','field_61771b4e08858'),(121909,3543,'title-3','Kubernetes Services'),(121910,3543,'_title-3','field_61771aff08855'),(121911,3543,'text-3','Our cloud native teams are experts in Docker,
\r\nKubernetes, Microservices and distributed systems.
\r\nWe excel in building, deploying, and scaling modern
\r\napplications in the cloud.'),(121912,3543,'_text-3','field_61771c9b55800'),(121913,3543,'img-3',''),(121914,3543,'_img-3','field_61771d0368722'),(121915,3543,'button-3','Learn more'),(121916,3543,'_button-3','field_61771d837c6cf'),(121917,3543,'link-button-3','https://translucent.local/kubernetes-professional-services/'),(121918,3543,'_link-button-3','field_61771de57c6d2'),(121919,3543,'background',''),(121920,3543,'_background','field_61771d2e6c2f9'),(121926,3545,'icon-1','3115'),(121927,3545,'_icon-1','field_61771b1e08856'),(121928,3545,'title-1','Cloud Native Applications'),(121929,3545,'_title-1','field_61771a9908852'),(121930,3545,'text-1','Translucent cloud native data driven
application development.
\r\nIT’s how your client’s do business.'),(121931,3545,'_text-1','field_61771c77557fe'),(121932,3545,'img-1','2959'),(121933,3545,'_img-1','field_61771cdb68720'),(121934,3545,'button-1','Learn more'),(121935,3545,'_button-1','field_61771d677c6cd'),(121936,3545,'link-button-1','https://translucentcomputing.com/cloud-native-application-development/'),(121937,3545,'_link-button-1','field_61771da87c6d0'),(121938,3545,'icon-2','3114'),(121939,3545,'_icon-2','field_61771b4308857'),(121940,3545,'title-2','Cloud Native DevOps'),(121941,3545,'_title-2','field_61771ae908853'),(121942,3545,'text-2','Cost-effective automation of your
\r\noperations and infrastructure, with a
\r\nfocus on what drives business value.'),(121943,3545,'_text-2','field_61771c8a557ff'),(121944,3545,'img-2','2961'),(121945,3545,'_img-2','field_61771cf568721'),(121946,3545,'button-2','Learn more'),(121947,3545,'_button-2','field_61771d767c6ce'),(121948,3545,'link-button-2','https://translucentcomputing.com/cloud-native-devops/'),(121949,3545,'_link-button-2','field_61771dda7c6d1'),(121950,3545,'icon-3','3113'),(121951,3545,'_icon-3','field_61771b4e08858'),(121952,3545,'title-3','Kubernetes Services'),(121953,3545,'_title-3','field_61771aff08855'),(121954,3545,'text-3','Our cloud native teams are experts in Docker,
\r\nKubernetes, Microservices and distributed systems.
\r\nWe excel in building, deploying, and scaling modern
\r\napplications in the cloud.'),(121955,3545,'_text-3','field_61771c9b55800'),(121956,3545,'img-3','2960'),(121957,3545,'_img-3','field_61771d0368722'),(121958,3545,'button-3','Learn more'),(121959,3545,'_button-3','field_61771d837c6cf'),(121960,3545,'link-button-3','https://translucent.local/kubernetes-professional-services/'),(121961,3545,'_link-button-3','field_61771de57c6d2'),(121962,3545,'background','3544'),(121963,3545,'_background','field_61771d2e6c2f9'),(121964,3547,'_edit_lock','1635264877:18'),(121965,3547,'_edit_last','18'),(121966,3547,'hefo_before','0'),(121967,3547,'hefo_after','0'),(121968,3547,'ao_post_optimize','a:5:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";}'),(121969,3547,'_yoast_wpseo_focuskeywords','[]'),(121970,3547,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(121971,3547,'_yoast_wpseo_estimated-reading-time-minutes',''),(121972,3549,'_edit_lock','1635264297:18'),(121973,3549,'_edit_last','18'),(121974,3550,'_pinterest_shares','0'),(121975,3550,'_total_shares','0'),(121995,3557,'_pinterest_shares','0'),(121996,3557,'_total_shares','0'),(121998,3558,'_pinterest_shares','0'),(121999,3558,'_total_shares','0'),(122001,3559,'_pinterest_shares','0'),(122002,3559,'_total_shares','0'),(122004,3560,'_pinterest_shares','0'),(122005,3560,'_total_shares','0'),(122007,3561,'_pinterest_shares','0'),(122008,3561,'_total_shares','0'),(122017,3547,'_wp_page_template','our-client.php'),(122018,3547,'side-text-1','Our Clients'),(122019,3547,'_side-text-1','field_61780cca952c9'),(122020,3547,'side-text-2','Our Partners'),(122021,3547,'_side-text-2','field_61780cdb952ca'),(122022,3547,'logo-1','801'),(122023,3547,'_logo-1','field_61780d1b952cb'),(122024,3547,'logo-2','800'),(122025,3547,'_logo-2','field_61780d34952cc'),(122026,3547,'logo-3','799'),(122027,3547,'_logo-3','field_61780d3d952cd'),(122028,3547,'logo-4','795'),(122029,3547,'_logo-4','field_61780d47952ce'),(122030,3547,'logo-5','798'),(122031,3547,'_logo-5','field_61780d54952cf'),(122032,3547,'logo-6','802'),(122033,3547,'_logo-6','field_61780d5f952d0'),(122034,3547,'logo-7','797'),(122035,3547,'_logo-7','field_61780d69952d1'),(122036,3547,'logo-8','796'),(122037,3547,'_logo-8','field_61780d7a952d2'),(122038,3547,'logo-9','794'),(122039,3547,'_logo-9','field_61780d88952d3'),(122040,3547,'logo-10','793'),(122041,3547,'_logo-10','field_61780d96952d4'),(122042,3548,'side-text-1',''),(122043,3548,'_side-text-1','field_61780cca952c9'),(122044,3548,'side-text-2',''),(122045,3548,'_side-text-2','field_61780cdb952ca'),(122046,3548,'logo-1',''),(122047,3548,'_logo-1','field_61780d1b952cb'),(122048,3548,'logo-2',''),(122049,3548,'_logo-2','field_61780d34952cc'),(122050,3548,'logo-3',''),(122051,3548,'_logo-3','field_61780d3d952cd'),(122052,3548,'logo-4',''),(122053,3548,'_logo-4','field_61780d47952ce'),(122054,3548,'logo-5',''),(122055,3548,'_logo-5','field_61780d54952cf'),(122056,3548,'logo-6',''),(122057,3548,'_logo-6','field_61780d5f952d0'),(122058,3548,'logo-7',''),(122059,3548,'_logo-7','field_61780d69952d1'),(122060,3548,'logo-8',''),(122061,3548,'_logo-8','field_61780d7a952d2'),(122062,3548,'logo-9',''),(122063,3548,'_logo-9','field_61780d88952d3'),(122064,3548,'logo-10',''),(122065,3548,'_logo-10','field_61780d96952d4'),(122066,3563,'side-text-1','Our Clientz'),(122067,3563,'_side-text-1','field_61780cca952c9'),(122068,3563,'side-text-2',''),(122069,3563,'_side-text-2','field_61780cdb952ca'),(122070,3563,'logo-1',''),(122071,3563,'_logo-1','field_61780d1b952cb'),(122072,3563,'logo-2',''),(122073,3563,'_logo-2','field_61780d34952cc'),(122074,3563,'logo-3',''),(122075,3563,'_logo-3','field_61780d3d952cd'),(122076,3563,'logo-4',''),(122077,3563,'_logo-4','field_61780d47952ce'),(122078,3563,'logo-5',''),(122079,3563,'_logo-5','field_61780d54952cf'),(122080,3563,'logo-6',''),(122081,3563,'_logo-6','field_61780d5f952d0'),(122082,3563,'logo-7',''),(122083,3563,'_logo-7','field_61780d69952d1'),(122084,3563,'logo-8',''),(122085,3563,'_logo-8','field_61780d7a952d2'),(122086,3563,'logo-9',''),(122087,3563,'_logo-9','field_61780d88952d3'),(122088,3563,'logo-10',''),(122089,3563,'_logo-10','field_61780d96952d4'),(122090,3564,'side-text-1','Our Clients'),(122091,3564,'_side-text-1','field_61780cca952c9'),(122092,3564,'side-text-2',''),(122093,3564,'_side-text-2','field_61780cdb952ca'),(122094,3564,'logo-1',''),(122095,3564,'_logo-1','field_61780d1b952cb'),(122096,3564,'logo-2',''),(122097,3564,'_logo-2','field_61780d34952cc'),(122098,3564,'logo-3',''),(122099,3564,'_logo-3','field_61780d3d952cd'),(122100,3564,'logo-4',''),(122101,3564,'_logo-4','field_61780d47952ce'),(122102,3564,'logo-5',''),(122103,3564,'_logo-5','field_61780d54952cf'),(122104,3564,'logo-6',''),(122105,3564,'_logo-6','field_61780d5f952d0'),(122106,3564,'logo-7',''),(122107,3564,'_logo-7','field_61780d69952d1'),(122108,3564,'logo-8',''),(122109,3564,'_logo-8','field_61780d7a952d2'),(122110,3564,'logo-9',''),(122111,3564,'_logo-9','field_61780d88952d3'),(122112,3564,'logo-10',''),(122113,3564,'_logo-10','field_61780d96952d4'),(122114,3565,'main-title','Contact us'),(122115,3565,'_main-title','field_61773432e6ceb'),(122116,3565,'sub-title','Let`s Talk'),(122117,3565,'_sub-title','field_61773452e6cec'),(122118,3565,'phrase-1','We Treat Your Business like our Own'),(122119,3565,'_phrase-1','field_617732a4e6cde'),(122120,3565,'img-1','3528'),(122121,3565,'_img-1','field_617732cae6cdf'),(122122,3565,'name-1','Robert Golabek'),(122123,3565,'_name-1','field_61773304e6ce2'),(122124,3565,'position-1','Chief Executive Officer'),(122125,3565,'_position-1','field_6177334de6ce5'),(122126,3565,'img-2','3529'),(122127,3565,'_img-2','field_617732e3e6ce0'),(122128,3565,'name-2','Patryk Golabek'),(122129,3565,'_name-2','field_61773313e6ce3'),(122130,3565,'position-2','Chief Technology Officer'),(122131,3565,'_position-2','field_61773370e6ce6'),(122132,3565,'img-3','3530'),(122133,3565,'_img-3','field_617732f0e6ce1'),(122134,3565,'name-3','Bradford A. M. Sankar'),(122135,3565,'_name-3','field_6177331fe6ce4'),(122136,3565,'position-3','Chief Operating Office'),(122137,3565,'_position-3','field_6177337be6ce7'),(122138,3565,'field-1','Send an email to us'),(122139,3565,'_field-1','field_61773393e6ce8'),(122140,3565,'field-2','info@translucentcomputing.com'),(122141,3565,'_field-2','field_617733c5e6ce9'),(122142,3565,'field-3','1-888-828-0144 x 105'),(122143,3565,'_field-3','field_617733d2e6cea'),(122144,3566,'side-text-1','Our Clients'),(122145,3566,'_side-text-1','field_61780cca952c9'),(122146,3566,'side-text-2','Our Partners'),(122147,3566,'_side-text-2','field_61780cdb952ca'),(122148,3566,'logo-1',''),(122149,3566,'_logo-1','field_61780d1b952cb'),(122150,3566,'logo-2',''),(122151,3566,'_logo-2','field_61780d34952cc'),(122152,3566,'logo-3',''),(122153,3566,'_logo-3','field_61780d3d952cd'),(122154,3566,'logo-4',''),(122155,3566,'_logo-4','field_61780d47952ce'),(122156,3566,'logo-5',''),(122157,3566,'_logo-5','field_61780d54952cf'),(122158,3566,'logo-6',''),(122159,3566,'_logo-6','field_61780d5f952d0'),(122160,3566,'logo-7',''),(122161,3566,'_logo-7','field_61780d69952d1'),(122162,3566,'logo-8',''),(122163,3566,'_logo-8','field_61780d7a952d2'),(122164,3566,'logo-9',''),(122165,3566,'_logo-9','field_61780d88952d3'),(122166,3566,'logo-10',''),(122167,3566,'_logo-10','field_61780d96952d4'),(122168,3567,'side-text-1','Our Clients'),(122169,3567,'_side-text-1','field_61780cca952c9'),(122170,3567,'side-text-2','Our Partners'),(122171,3567,'_side-text-2','field_61780cdb952ca'),(122172,3567,'logo-1','801'),(122173,3567,'_logo-1','field_61780d1b952cb'),(122174,3567,'logo-2',''),(122175,3567,'_logo-2','field_61780d34952cc'),(122176,3567,'logo-3',''),(122177,3567,'_logo-3','field_61780d3d952cd'),(122178,3567,'logo-4',''),(122179,3567,'_logo-4','field_61780d47952ce'),(122180,3567,'logo-5',''),(122181,3567,'_logo-5','field_61780d54952cf'),(122182,3567,'logo-6',''),(122183,3567,'_logo-6','field_61780d5f952d0'),(122184,3567,'logo-7',''),(122185,3567,'_logo-7','field_61780d69952d1'),(122186,3567,'logo-8',''),(122187,3567,'_logo-8','field_61780d7a952d2'),(122188,3567,'logo-9',''),(122189,3567,'_logo-9','field_61780d88952d3'),(122190,3567,'logo-10',''),(122191,3567,'_logo-10','field_61780d96952d4'),(122192,3568,'side-text-1','Our Clients'),(122193,3568,'_side-text-1','field_61780cca952c9'),(122194,3568,'side-text-2','Our Partners'),(122195,3568,'_side-text-2','field_61780cdb952ca'),(122196,3568,'logo-1','801'),(122197,3568,'_logo-1','field_61780d1b952cb'),(122198,3568,'logo-2',''),(122199,3568,'_logo-2','field_61780d34952cc'),(122200,3568,'logo-3',''),(122201,3568,'_logo-3','field_61780d3d952cd'),(122202,3568,'logo-4',''),(122203,3568,'_logo-4','field_61780d47952ce'),(122204,3568,'logo-5',''),(122205,3568,'_logo-5','field_61780d54952cf'),(122206,3568,'logo-6',''),(122207,3568,'_logo-6','field_61780d5f952d0'),(122208,3568,'logo-7',''),(122209,3568,'_logo-7','field_61780d69952d1'),(122210,3568,'logo-8',''),(122211,3568,'_logo-8','field_61780d7a952d2'),(122212,3568,'logo-9',''),(122213,3568,'_logo-9','field_61780d88952d3'),(122214,3568,'logo-10',''),(122215,3568,'_logo-10','field_61780d96952d4'),(122231,3569,'main-title','Cloud Native Solutions Your Business Depends On'),(122232,3569,'_main-title','field_6176c354de231'),(122233,3569,'title-1','Digital Transformation What’s In It For Me?'),(122234,3569,'_title-1','field_6176c363de232'),(122235,3569,'phrase-1','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.1'),(122236,3569,'_phrase-1','field_6176c396de234'),(122237,3569,'button-cta-1','LEARN MORE'),(122238,3569,'_button-cta-1','field_6176c3c9de236'),(122239,3569,'title-2','Digital Transformation What’s In It For Me?'),(122240,3569,'_title-2','field_6176c388de233'),(122241,3569,'phrase-2','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.2'),(122242,3569,'_phrase-2','field_6176c3adde235'),(122243,3569,'button-cta-2','LEARN MORE'),(122244,3569,'_button-cta-2','field_6176c3d7de237'),(122245,3569,'background','3525'),(122246,3569,'_background','field_6176cdd41416a'),(122247,3570,'main-title','Cloud Native Solutions Your Business Depends On'),(122248,3570,'_main-title','field_6176c354de231'),(122249,3570,'title-1','Digital Transformation What’s In It For Me?'),(122250,3570,'_title-1','field_6176c363de232'),(122251,3570,'phrase-1','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(122252,3570,'_phrase-1','field_6176c396de234'),(122253,3570,'button-cta-1','LEARN MORE'),(122254,3570,'_button-cta-1','field_6176c3c9de236'),(122255,3570,'title-2','Digital Transformation What’s In It For Me?'),(122256,3570,'_title-2','field_6176c388de233'),(122257,3570,'phrase-2','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(122258,3570,'_phrase-2','field_6176c3adde235'),(122259,3570,'button-cta-2','LEARN MORE'),(122260,3570,'_button-cta-2','field_6176c3d7de237'),(122261,3570,'background','3525'),(122262,3570,'_background','field_6176cdd41416a'),(122263,3465,'_edit_lock','1635261217:18'),(122264,3465,'_edit_last','18'),(122265,3571,'_pinterest_shares','0'),(122266,3571,'_total_shares','0'),(122268,3470,'_pinterest_shares','0'),(122269,3470,'_total_shares','0'),(122271,3471,'_pinterest_shares','0'),(122272,3471,'_total_shares','0'),(122274,3472,'_pinterest_shares','0'),(122275,3472,'_total_shares','0'),(122277,3572,'_pinterest_shares','0'),(122278,3572,'_total_shares','0'),(122280,3473,'_pinterest_shares','0'),(122281,3473,'_total_shares','0'),(122286,3465,'_pinterest_shares','0'),(122287,3465,'_total_shares','0'),(122289,3523,'link-cta-1','https://translucent.local/what-is-data-driven-digital-transformation/'),(122290,3523,'_link-cta-1','field_61781a892a517'),(122291,3523,'link-cta-2','https://translucent.local/tekstack-ai/'),(122292,3523,'_link-cta-2','field_61781a982a518'),(122293,3570,'link-cta-1',''),(122294,3570,'_link-cta-1','field_61781a892a517'),(122295,3570,'link-cta-2',''),(122296,3570,'_link-cta-2','field_61781a982a518'),(122297,3523,'_yoast_wpseo_primary_category','1052'),(122298,3547,'_yoast_wpseo_primary_category','1052'),(122299,3527,'_yoast_wpseo_primary_category','1052'),(122300,3541,'_yoast_wpseo_primary_category','1052'),(122301,3535,'_yoast_wpseo_primary_category','1052'),(122302,3450,'_yoast_wpseo_primary_category','1052'),(122303,3573,'main-title','Cloud Native Solutions Your Business Depends On'),(122304,3573,'_main-title','field_6176c354de231'),(122305,3573,'title-1','Digital Transformation What’s In It For Me?'),(122306,3573,'_title-1','field_6176c363de232'),(122307,3573,'phrase-1','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.1'),(122308,3573,'_phrase-1','field_6176c396de234'),(122309,3573,'button-cta-1','LEARN MORE'),(122310,3573,'_button-cta-1','field_6176c3c9de236'),(122311,3573,'title-2','Digital Transformation What’s In It For Me?'),(122312,3573,'_title-2','field_6176c388de233'),(122313,3573,'phrase-2','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.2'),(122314,3573,'_phrase-2','field_6176c3adde235'),(122315,3573,'button-cta-2','LEARN MORE'),(122316,3573,'_button-cta-2','field_6176c3d7de237'),(122317,3573,'background','3525'),(122318,3573,'_background','field_6176cdd41416a'),(122319,3573,'link-cta-1',''),(122320,3573,'_link-cta-1','field_61781a892a517'),(122321,3573,'link-cta-2',''),(122322,3573,'_link-cta-2','field_61781a982a518'),(122323,3574,'main-title','Cloud Native Solutions Your Business Depends On'),(122324,3574,'_main-title','field_6176c354de231'),(122325,3574,'title-1','Digital Transformation What’s In It For Me?'),(122326,3574,'_title-1','field_6176c363de232'),(122327,3574,'phrase-1','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(122328,3574,'_phrase-1','field_6176c396de234'),(122329,3574,'button-cta-1','LEARN MORE'),(122330,3574,'_button-cta-1','field_6176c3c9de236'),(122331,3574,'title-2','Digital Transformation What’s In It For Me?'),(122332,3574,'_title-2','field_6176c388de233'),(122333,3574,'phrase-2','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(122334,3574,'_phrase-2','field_6176c3adde235'),(122335,3574,'button-cta-2','LEARN MORE'),(122336,3574,'_button-cta-2','field_6176c3d7de237'),(122337,3574,'background','3525'),(122338,3574,'_background','field_6176cdd41416a'),(122339,3574,'link-cta-1',''),(122340,3574,'_link-cta-1','field_61781a892a517'),(122341,3574,'link-cta-2',''),(122342,3574,'_link-cta-2','field_61781a982a518'),(122346,3575,'main-title','Cloud Native Solutions Your Business Depends On'),(122347,3575,'_main-title','field_6176c354de231'),(122348,3575,'title-1','Digital Transformation What’s In It For Me?'),(122349,3575,'_title-1','field_6176c363de232'),(122350,3575,'phrase-1','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(122351,3575,'_phrase-1','field_6176c396de234'),(122352,3575,'button-cta-1','LEARN MORE'),(122353,3575,'_button-cta-1','field_6176c3c9de236'),(122354,3575,'title-2','Digital Transformation What’s In It For Me?'),(122355,3575,'_title-2','field_6176c388de233'),(122356,3575,'phrase-2','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(122357,3575,'_phrase-2','field_6176c3adde235'),(122358,3575,'button-cta-2','LEARN MORE'),(122359,3575,'_button-cta-2','field_6176c3d7de237'),(122360,3575,'background','3525'),(122361,3575,'_background','field_6176cdd41416a'),(122362,3575,'link-cta-1','https://translucent.local/what-is-data-driven-digital-transformation/'),(122363,3575,'_link-cta-1','field_61781a892a517'),(122364,3575,'link-cta-2','https://translucent.local/what-is-data-driven-digital-transformation/'),(122365,3575,'_link-cta-2','field_61781a982a518'),(122366,3576,'main-title','Cloud Native Solutions Your Business Depends On'),(122367,3576,'_main-title','field_6176c354de231'),(122368,3576,'title-1','Digital Transformation What’s In It For Me?'),(122369,3576,'_title-1','field_6176c363de232'),(122370,3576,'phrase-1','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(122371,3576,'_phrase-1','field_6176c396de234'),(122372,3576,'button-cta-1','LEARN MORE'),(122373,3576,'_button-cta-1','field_6176c3c9de236'),(122374,3576,'title-2','Digital Transformation What’s In It For Me?'),(122375,3576,'_title-2','field_6176c388de233'),(122376,3576,'phrase-2','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(122377,3576,'_phrase-2','field_6176c3adde235'),(122378,3576,'button-cta-2','LEARN MORE'),(122379,3576,'_button-cta-2','field_6176c3d7de237'),(122380,3576,'background','3525'),(122381,3576,'_background','field_6176cdd41416a'),(122382,3576,'link-cta-1','https://translucent.local/what-is-data-driven-digital-transformation/'),(122383,3576,'_link-cta-1','field_61781a892a517'),(122384,3576,'link-cta-2',''),(122385,3576,'_link-cta-2','field_61781a982a518'),(122386,3577,'main-title','Cloud Native Solutions Your Business Depends On'),(122387,3577,'_main-title','field_6176c354de231'),(122388,3577,'title-1','Digital Transformation What’s In It For Me?'),(122389,3577,'_title-1','field_6176c363de232'),(122390,3577,'phrase-1','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(122391,3577,'_phrase-1','field_6176c396de234'),(122392,3577,'button-cta-1','LEARN MORE'),(122393,3577,'_button-cta-1','field_6176c3c9de236'),(122394,3577,'title-2','Digital Transformation What’s In It For Me?'),(122395,3577,'_title-2','field_6176c388de233'),(122396,3577,'phrase-2','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(122397,3577,'_phrase-2','field_6176c3adde235'),(122398,3577,'button-cta-2','LEARN MORE'),(122399,3577,'_button-cta-2','field_6176c3d7de237'),(122400,3577,'background','3525'),(122401,3577,'_background','field_6176cdd41416a'),(122402,3577,'link-cta-1','https://translucent.local/what-is-data-driven-digital-transformation/'),(122403,3577,'_link-cta-1','field_61781a892a517'),(122404,3577,'link-cta-2',''),(122405,3577,'_link-cta-2','field_61781a982a518'),(122406,3578,'main-title','Cloud Native Solutions Your Business Depends On'),(122407,3578,'_main-title','field_6176c354de231'),(122408,3578,'title-1','Digital Transformation What’s In It For Me?'),(122409,3578,'_title-1','field_6176c363de232'),(122410,3578,'phrase-1','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(122411,3578,'_phrase-1','field_6176c396de234'),(122412,3578,'button-cta-1','LEARN MORE'),(122413,3578,'_button-cta-1','field_6176c3c9de236'),(122414,3578,'title-2','Digital Transformation What’s In It For Me?'),(122415,3578,'_title-2','field_6176c388de233'),(122416,3578,'phrase-2','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(122417,3578,'_phrase-2','field_6176c3adde235'),(122418,3578,'button-cta-2','LEARN MORE'),(122419,3578,'_button-cta-2','field_6176c3d7de237'),(122420,3578,'background','3525'),(122421,3578,'_background','field_6176cdd41416a'),(122422,3578,'link-cta-1',''),(122423,3578,'_link-cta-1','field_61781a892a517'),(122424,3578,'link-cta-2',''),(122425,3578,'_link-cta-2','field_61781a982a518'),(122426,3579,'main-title','Cloud Native Solutions Your Business Depends On'),(122427,3579,'_main-title','field_6176c354de231'),(122428,3579,'title-1','Digital Transformation What’s In It For Me?'),(122429,3579,'_title-1','field_6176c363de232'),(122430,3579,'phrase-1','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(122431,3579,'_phrase-1','field_6176c396de234'),(122432,3579,'button-cta-1','LEARN MORE'),(122433,3579,'_button-cta-1','field_6176c3c9de236'),(122434,3579,'title-2','Digital Transformation What’s In It For Me?'),(122435,3579,'_title-2','field_6176c388de233'),(122436,3579,'phrase-2','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(122437,3579,'_phrase-2','field_6176c3adde235'),(122438,3579,'button-cta-2','LEARN MORE'),(122439,3579,'_button-cta-2','field_6176c3d7de237'),(122440,3579,'background','3525'),(122441,3579,'_background','field_6176cdd41416a'),(122442,3579,'link-cta-1','https://translucent.local/what-is-data-driven-digital-transformation/'),(122443,3579,'_link-cta-1','field_61781a892a517'),(122444,3579,'link-cta-2','https://translucent.local/what-is-data-driven-digital-transformation/'),(122445,3579,'_link-cta-2','field_61781a982a518'),(122446,3580,'main-title','Cloud Native Solutions Your Business Depends On'),(122447,3580,'_main-title','field_6176c354de231'),(122448,3580,'title-1','Digital Transformation What’s In It For Me?'),(122449,3580,'_title-1','field_6176c363de232'),(122450,3580,'phrase-1','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(122451,3580,'_phrase-1','field_6176c396de234'),(122452,3580,'button-cta-1','LEARN MORE'),(122453,3580,'_button-cta-1','field_6176c3c9de236'),(122454,3580,'title-2','Digital Transformation What’s In It For Me?'),(122455,3580,'_title-2','field_6176c388de233'),(122456,3580,'phrase-2','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(122457,3580,'_phrase-2','field_6176c3adde235'),(122458,3580,'button-cta-2','LEARN MORE'),(122459,3580,'_button-cta-2','field_6176c3d7de237'),(122460,3580,'background','3525'),(122461,3580,'_background','field_6176cdd41416a'),(122462,3580,'link-cta-1','https://translucent.local/what-is-data-driven-digital-transformation/'),(122463,3580,'_link-cta-1','field_61781a892a517'),(122464,3580,'link-cta-2','https://translucent.local/what-is-data-driven-digital-transformation/'),(122465,3580,'_link-cta-2','field_61781a982a518'),(122466,3581,'side-text-1','Our Clients'),(122467,3581,'_side-text-1','field_61780cca952c9'),(122468,3581,'side-text-2','Our Partners'),(122469,3581,'_side-text-2','field_61780cdb952ca'),(122470,3581,'logo-1','801'),(122471,3581,'_logo-1','field_61780d1b952cb'),(122472,3581,'logo-2','800'),(122473,3581,'_logo-2','field_61780d34952cc'),(122474,3581,'logo-3',''),(122475,3581,'_logo-3','field_61780d3d952cd'),(122476,3581,'logo-4',''),(122477,3581,'_logo-4','field_61780d47952ce'),(122478,3581,'logo-5',''),(122479,3581,'_logo-5','field_61780d54952cf'),(122480,3581,'logo-6',''),(122481,3581,'_logo-6','field_61780d5f952d0'),(122482,3581,'logo-7',''),(122483,3581,'_logo-7','field_61780d69952d1'),(122484,3581,'logo-8',''),(122485,3581,'_logo-8','field_61780d7a952d2'),(122486,3581,'logo-9',''),(122487,3581,'_logo-9','field_61780d88952d3'),(122488,3581,'logo-10',''),(122489,3581,'_logo-10','field_61780d96952d4'),(122490,3582,'side-text-1','Our Clients'),(122491,3582,'_side-text-1','field_61780cca952c9'),(122492,3582,'side-text-2','Our Partners'),(122493,3582,'_side-text-2','field_61780cdb952ca'),(122494,3582,'logo-1','801'),(122495,3582,'_logo-1','field_61780d1b952cb'),(122496,3582,'logo-2','800'),(122497,3582,'_logo-2','field_61780d34952cc'),(122498,3582,'logo-3','799'),(122499,3582,'_logo-3','field_61780d3d952cd'),(122500,3582,'logo-4','795'),(122501,3582,'_logo-4','field_61780d47952ce'),(122502,3582,'logo-5',''),(122503,3582,'_logo-5','field_61780d54952cf'),(122504,3582,'logo-6',''),(122505,3582,'_logo-6','field_61780d5f952d0'),(122506,3582,'logo-7',''),(122507,3582,'_logo-7','field_61780d69952d1'),(122508,3582,'logo-8',''),(122509,3582,'_logo-8','field_61780d7a952d2'),(122510,3582,'logo-9',''),(122511,3582,'_logo-9','field_61780d88952d3'),(122512,3582,'logo-10',''),(122513,3582,'_logo-10','field_61780d96952d4'),(122517,3583,'side-text-1','Our Clients'),(122518,3583,'_side-text-1','field_61780cca952c9'),(122519,3583,'side-text-2','Our Partners'),(122520,3583,'_side-text-2','field_61780cdb952ca'),(122521,3583,'logo-1','801'),(122522,3583,'_logo-1','field_61780d1b952cb'),(122523,3583,'logo-2','800'),(122524,3583,'_logo-2','field_61780d34952cc'),(122525,3583,'logo-3','799'),(122526,3583,'_logo-3','field_61780d3d952cd'),(122527,3583,'logo-4','795'),(122528,3583,'_logo-4','field_61780d47952ce'),(122529,3583,'logo-5','798'),(122530,3583,'_logo-5','field_61780d54952cf'),(122531,3583,'logo-6','802'),(122532,3583,'_logo-6','field_61780d5f952d0'),(122533,3583,'logo-7','797'),(122534,3583,'_logo-7','field_61780d69952d1'),(122535,3583,'logo-8','796'),(122536,3583,'_logo-8','field_61780d7a952d2'),(122537,3583,'logo-9',''),(122538,3583,'_logo-9','field_61780d88952d3'),(122539,3583,'logo-10',''),(122540,3583,'_logo-10','field_61780d96952d4'),(122541,3584,'side-text-1','Our Clients'),(122542,3584,'_side-text-1','field_61780cca952c9'),(122543,3584,'side-text-2','Our Partners'),(122544,3584,'_side-text-2','field_61780cdb952ca'),(122545,3584,'logo-1','801'),(122546,3584,'_logo-1','field_61780d1b952cb'),(122547,3584,'logo-2','800'),(122548,3584,'_logo-2','field_61780d34952cc'),(122549,3584,'logo-3','799'),(122550,3584,'_logo-3','field_61780d3d952cd'),(122551,3584,'logo-4','795'),(122552,3584,'_logo-4','field_61780d47952ce'),(122553,3584,'logo-5','798'),(122554,3584,'_logo-5','field_61780d54952cf'),(122555,3584,'logo-6','802'),(122556,3584,'_logo-6','field_61780d5f952d0'),(122557,3584,'logo-7','797'),(122558,3584,'_logo-7','field_61780d69952d1'),(122559,3584,'logo-8','796'),(122560,3584,'_logo-8','field_61780d7a952d2'),(122561,3584,'logo-9','794'),(122562,3584,'_logo-9','field_61780d88952d3'),(122563,3584,'logo-10','793'),(122564,3584,'_logo-10','field_61780d96952d4'),(122565,3585,'side-text-1','Our Clients'),(122566,3585,'_side-text-1','field_61780cca952c9'),(122567,3585,'side-text-2','Our Partners'),(122568,3585,'_side-text-2','field_61780cdb952ca'),(122569,3585,'logo-1','801'),(122570,3585,'_logo-1','field_61780d1b952cb'),(122571,3585,'logo-2','800'),(122572,3585,'_logo-2','field_61780d34952cc'),(122573,3585,'logo-3','799'),(122574,3585,'_logo-3','field_61780d3d952cd'),(122575,3585,'logo-4','795'),(122576,3585,'_logo-4','field_61780d47952ce'),(122577,3585,'logo-5','798'),(122578,3585,'_logo-5','field_61780d54952cf'),(122579,3585,'logo-6','802'),(122580,3585,'_logo-6','field_61780d5f952d0'),(122581,3585,'logo-7','797'),(122582,3585,'_logo-7','field_61780d69952d1'),(122583,3585,'logo-8','796'),(122584,3585,'_logo-8','field_61780d7a952d2'),(122585,3585,'logo-9','794'),(122586,3585,'_logo-9','field_61780d88952d3'),(122587,3585,'logo-10','793'),(122588,3585,'_logo-10','field_61780d96952d4'),(122589,3552,'_pinterest_shares','0'),(122590,3552,'_total_shares','0'),(122592,3553,'_pinterest_shares','0'),(122593,3553,'_total_shares','0'),(122595,3554,'_pinterest_shares','0'),(122596,3554,'_total_shares','0'),(122598,3555,'_pinterest_shares','0'),(122599,3555,'_total_shares','0'),(122601,3556,'_pinterest_shares','0'),(122602,3556,'_total_shares','0'),(122604,3551,'_pinterest_shares','0'),(122605,3551,'_total_shares','0'),(122610,3549,'_pinterest_shares','0'),(122611,3549,'_total_shares','0'),(122841,3586,'_form','

\n
\n
\n \n [text* first-name placeholder \"Your Name\"]\n
\n
\n \n [email* email placeholder \"name@example.com\"]\n
\n
\n \n [text company ]\n
\n
\n \n [tel phone placeholder \" +00 000 0000 \"]\n
\n
\n \n\n [textarea message x5 placeholder \"Message\"]\n
\n
\n [submit class:cp-contact-us__form--button \"SEND MESSAGE\"]\n
\n
\n
'),(122842,3586,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:83:\"DEV SERVER - TC Form Submissions: From Translucent Main Website Bottom Contact Form\";s:6:\"sender\";s:32:\"results@translucentcomputing.com\";s:9:\"recipient\";s:99:\"results@translucentcomputing.com, robert@translucentcomputing.com, bsankar@translucentcomputing.com\";s:4:\"body\";s:82:\"From: [first-name] <[email]>\nPhone: [phone]\nCompany: [company]\n\nMessage: [message]\";s:18:\"additional_headers\";s:17:\"Reply-To: [email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(122843,3586,'_mail_2','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:54:\"Service Inquiry | Thank you for contacting Translucent\";s:6:\"sender\";s:50:\"Bradford Sankar \";s:9:\"recipient\";s:7:\"[email]\";s:4:\"body\";s:244:\"Hi [first-name],\n\nWe would like to express our thanks for your interest in our cloud native services.\nWe will review your request with our team and be in touch shortly.\n\nYours sincerely,\nBradford Sankar\nYour Translucent Cloud Native Specialist!\";s:18:\"additional_headers\";s:60:\"Reply-To: Bradford Sankar \";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(122844,3586,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:28:\"The phone number is invalid.\";}'),(122845,3586,'_additional_settings',''),(122846,3586,'_locale','en_US'),(122892,3587,'top-image','654'),(122893,3587,'_top-image','field_5c47486901570'),(122894,3587,'top-title','Data-Driven
Digital Transformation'),(122895,3587,'_top-title','field_5c47489001571'),(122896,3587,'top-text','We Partner with companies to build business value through software innovation.

Every company is now a technology company. How competitive are you in your industry? Let us help you.'),(122897,3587,'_top-text','field_5c47489e01572'),(122898,3587,'top-items_0_item','Cloud-Native'),(122899,3587,'_top-items_0_item','field_5c4748d001574'),(122900,3587,'top-items_1_item','Data Lake'),(122901,3587,'_top-items_1_item','field_5c4748d001574'),(122902,3587,'top-items_2_item','Kubernetes'),(122903,3587,'_top-items_2_item','field_5c4748d001574'),(122904,3587,'top-items_3_item','Scalable'),(122905,3587,'_top-items_3_item','field_5c4748d001574'),(122906,3587,'top-items_4_item','Secure'),(122907,3587,'_top-items_4_item','field_5c4748d001574'),(122908,3587,'top-items','5'),(122909,3587,'_top-items','field_5c4748c401573'),(122910,3587,'top-button','44'),(122911,3587,'_top-button','field_5c4748e601575'),(122912,3587,'services-presentation','Build cloud-native applications with Translucent\r\nCreate modern applications using state-of-the-art technology with TEKStack AI'),(122913,3587,'_services-presentation','field_5c474986bee5b'),(122914,3587,'call-title','Start a Conversation'),(122915,3587,'_call-title','field_5c4749bcbee5c'),(122916,3587,'call-text',''),(122917,3587,'_call-text','field_5c4749d7bee5d'),(122918,3587,'case-title','The Hospital for Sick Children'),(122919,3587,'_case-title','field_5c4749f4bee5e'),(122920,3587,'case-text',''),(122921,3587,'_case-text','field_5c474a4abee5f'),(122922,3587,'case-image','772'),(122923,3587,'_case-image','field_5c474a6dbee61'),(122924,3587,'case-link','38'),(122925,3587,'_case-link','field_5c476a3dac685'),(122926,3587,'case_study_0_title',''),(122927,3587,'_case_study_0_title','field_5c82d24ccbac6'),(122928,3587,'case_study_0_text',''),(122929,3587,'_case_study_0_text','field_5c82d258cbac7'),(122930,3587,'case_study_0_image',''),(122931,3587,'_case_study_0_image','field_5c82d266cbac8'),(122932,3587,'case_study_0_link',''),(122933,3587,'_case_study_0_link','field_5c82d275cbac9'),(122934,3587,'case_study_1_title',''),(122935,3587,'_case_study_1_title','field_5c82d24ccbac6'),(122936,3587,'case_study_1_text',''),(122937,3587,'_case_study_1_text','field_5c82d258cbac7'),(122938,3587,'case_study_1_image',''),(122939,3587,'_case_study_1_image','field_5c82d266cbac8'),(122940,3587,'case_study_1_link',''),(122941,3587,'_case_study_1_link','field_5c82d275cbac9'),(122942,3587,'case_study',''),(122943,3587,'_case_study','field_6059d436ba0ce'),(122944,3587,'banners_0_banner_title','We Listen.'),(122945,3587,'_banners_0_banner_title','field_6059d268ba0bb'),(122946,3587,'banners_0_banner_subheading','Your needs matter to us'),(122947,3587,'_banners_0_banner_subheading','field_6059d289ba0bc'),(122948,3587,'banners_0_banner_bold','With open communication.
Your goals become our goals.'),(122949,3587,'_banners_0_banner_bold','field_6059d293ba0bd'),(122950,3587,'banners_0_banner_text','This allows us to transform your company\r\nLet us help you.'),(122951,3587,'_banners_0_banner_text','field_6059d2a2ba0be'),(122952,3587,'banners_0_video_background','1'),(122953,3587,'_banners_0_video_background','field_6059d2b3ba0bf'),(122954,3587,'banners_0_video_link','https://translucentcomputing.com/wp-content/uploads/2021/05/TC_BANNER_2.0-HEX121d3d.webm'),(122955,3587,'_banners_0_video_link','field_6059d2ccba0c0'),(122956,3587,'banners_0_button_text','Book a consultation '),(122957,3587,'_banners_0_button_text','field_6059d309ba0c2'),(122958,3587,'banners_0_button_link','#'),(122959,3587,'_banners_0_button_link','field_6059d314ba0c3'),(122960,3587,'banners','4'),(122961,3587,'_banners','field_6059d073ba0ba'),(122962,3587,'blog_section_title','Build cloud-native\r\ndata-driven applications with Translucent'),(122963,3587,'_blog_section_title','field_6059d32dba0c4'),(122964,3587,'inform_and_learn','We work with you, informing and educating you about what it takes to be digitally competitive in the current market. We learn your business and business needs.'),(122965,3587,'_inform_and_learn','field_6059d34dba0c5'),(122966,3587,'inception_and_discovery','During the discovery phase we uncover all business processes and requirements and understand your current state. During the inception phase we conceive and plan your solution.'),(122967,3587,'_inception_and_discovery','field_6059d361ba0c6'),(122968,3587,'digital_transformation','We implement your digital strategy with ongoing support, leveraging proven development methodologies.'),(122969,3587,'_digital_transformation','field_6059d375ba0c7'),(122970,3587,'services_microservices','Building scalable, reliable and secure ecosystems for your business!'),(122971,3587,'_services_microservices','field_6059d397ba0c8'),(122972,3587,'services_microservices_image','2434'),(122973,3587,'_services_microservices_image','field_6059d3b9ba0c9'),(122974,3587,'services_machine','Insights to improve quality of life, provide clarity in decision making and increase profits.'),(122975,3587,'_services_machine','field_6059d3ccba0ca'),(122976,3587,'services_machine_image','2435'),(122977,3587,'_services_machine_image','field_6059d3e2ba0cb'),(122978,3587,'services_devops','Keeping communication between your business operations, your technology, and the online world, in sync.'),(122979,3587,'_services_devops','field_6059d402ba0cc'),(122980,3587,'services_devops_image','2433'),(122981,3587,'_services_devops_image','field_6059d412ba0cd'),(122982,3587,'case_study_title','Sick Kids Hospital'),(122983,3587,'_case_study_title','field_6059d43fba0cf'),(122984,3587,'case_study_description','At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum'),(122985,3587,'_case_study_description','field_6059d44aba0d0'),(122986,3587,'case_study_image','2215'),(122987,3587,'_case_study_image','field_6059d459ba0d1'),(122988,3587,'case_study_link','#'),(122989,3587,'_case_study_link','field_6059d471ba0d2'),(122990,3587,'clients','10'),(122991,3587,'_clients','field_6059d489ba0d3'),(122992,3587,'case_study_2_title',''),(122993,3587,'_case_study_2_title','field_5c82d24ccbac6'),(122994,3587,'case_study_2_text',''),(122995,3587,'_case_study_2_text','field_5c82d258cbac7'),(122996,3587,'case_study_2_image',''),(122997,3587,'_case_study_2_image','field_5c82d266cbac8'),(122998,3587,'case_study_2_link',''),(122999,3587,'_case_study_2_link','field_5c82d275cbac9'),(123000,3587,'case_study_3_title',''),(123001,3587,'_case_study_3_title','field_5c82d24ccbac6'),(123002,3587,'case_study_3_text',''),(123003,3587,'_case_study_3_text','field_5c82d258cbac7'),(123004,3587,'case_study_3_image',''),(123005,3587,'_case_study_3_image','field_5c82d266cbac8'),(123006,3587,'case_study_3_link',''),(123007,3587,'_case_study_3_link','field_5c82d275cbac9'),(123008,3587,'clients_0_image','793'),(123009,3587,'_clients_0_image','field_6059d493ba0d4'),(123010,3587,'clients_1_image','794'),(123011,3587,'_clients_1_image','field_6059d493ba0d4'),(123012,3587,'clients_2_image','623'),(123013,3587,'_clients_2_image','field_6059d493ba0d4'),(123014,3587,'clients_3_image','796'),(123015,3587,'_clients_3_image','field_6059d493ba0d4'),(123016,3587,'clients_4_image','797'),(123017,3587,'_clients_4_image','field_6059d493ba0d4'),(123018,3587,'clients_5_image','798'),(123019,3587,'_clients_5_image','field_6059d493ba0d4'),(123020,3587,'clients_6_image','799'),(123021,3587,'_clients_6_image','field_6059d493ba0d4'),(123022,3587,'clients_7_image','800'),(123023,3587,'_clients_7_image','field_6059d493ba0d4'),(123024,3587,'clients_8_image','801'),(123025,3587,'_clients_8_image','field_6059d493ba0d4'),(123026,3587,'clients_9_image','802'),(123027,3587,'_clients_9_image','field_6059d493ba0d4'),(123028,3587,'case_title','Sick Kids Hospital'),(123029,3587,'_case_title','field_6059e3a6eec00'),(123030,3587,'case_description','At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum'),(123031,3587,'_case_description','field_6059e3bdeec01'),(123032,3587,'case_image','2215'),(123033,3587,'_case_image','field_6059e3d7eec02'),(123034,3587,'case_link','#'),(123035,3587,'_case_link','field_6059e3e6eec03'),(123036,3587,'banners_1_banner_title','We Learn.'),(123037,3587,'_banners_1_banner_title','field_6059d268ba0bb'),(123038,3587,'banners_1_banner_subheading','Focused Action | Targeted results'),(123039,3587,'_banners_1_banner_subheading','field_6059d289ba0bc'),(123040,3587,'banners_1_banner_bold','Learning is is our DNA.
Knowledge sharing is our passion.'),(123041,3587,'_banners_1_banner_bold','field_6059d293ba0bd'),(123042,3587,'banners_1_banner_text','We share what we know, so you\'ll know what we learn.'),(123043,3587,'_banners_1_banner_text','field_6059d2a2ba0be'),(123044,3587,'banners_1_video_background','0'),(123045,3587,'_banners_1_video_background','field_6059d2b3ba0bf'),(123046,3587,'banners_1_background_image','3126'),(123047,3587,'_banners_1_background_image','field_6059d2e1ba0c1'),(123048,3587,'banners_1_button_text','Book a consultation'),(123049,3587,'_banners_1_button_text','field_6059d309ba0c2'),(123050,3587,'banners_1_button_link','#contact'),(123051,3587,'_banners_1_button_link','field_6059d314ba0c3'),(123052,3587,'banners_2_banner_title','We Inform.'),(123053,3587,'_banners_2_banner_title','field_6059d268ba0bb'),(123054,3587,'banners_2_banner_subheading','Data Driven | Digital Transformation'),(123055,3587,'_banners_2_banner_subheading','field_6059d289ba0bc'),(123056,3587,'banners_2_banner_bold','The cloud native partnership.
Your business depends on.'),(123057,3587,'_banners_2_banner_bold','field_6059d293ba0bd'),(123058,3587,'banners_2_banner_text','Every company is now a technology company.\r\nHow can we help you?'),(123059,3587,'_banners_2_banner_text','field_6059d2a2ba0be'),(123060,3587,'banners_2_video_background','0'),(123061,3587,'_banners_2_video_background','field_6059d2b3ba0bf'),(123062,3587,'banners_2_background_image','3125'),(123063,3587,'_banners_2_background_image','field_6059d2e1ba0c1'),(123064,3587,'banners_2_button_text','Book a consultation'),(123065,3587,'_banners_2_button_text','field_6059d309ba0c2'),(123066,3587,'banners_2_button_link','#contact'),(123067,3587,'_banners_2_button_link','field_6059d314ba0c3'),(123068,3587,'banners_3_banner_title','We Support.'),(123069,3587,'_banners_3_banner_title','field_6059d268ba0bb'),(123070,3587,'banners_3_banner_subheading','24 hour support | 7 days a week'),(123071,3587,'_banners_3_banner_subheading','field_6059d289ba0bc'),(123072,3587,'banners_3_banner_bold','We support our people so they can support you, anytime and anywhere.'),(123073,3587,'_banners_3_banner_bold','field_6059d293ba0bd'),(123074,3587,'banners_3_banner_text','\"I would use them again if I could. In fact,\r\nI would use their team for everything if I could!\"\r\nThiago Telles - Cerberus CEO'),(123075,3587,'_banners_3_banner_text','field_6059d2a2ba0be'),(123076,3587,'banners_3_video_background','0'),(123077,3587,'_banners_3_video_background','field_6059d2b3ba0bf'),(123078,3587,'banners_3_background_image','3124'),(123079,3587,'_banners_3_background_image','field_6059d2e1ba0c1'),(123080,3587,'banners_3_button_text','Book a consultation'),(123081,3587,'_banners_3_button_text','field_6059d309ba0c2'),(123082,3587,'banners_3_button_link','#contact'),(123083,3587,'_banners_3_button_link','field_6059d314ba0c3'),(123084,3587,'banners_0_background_image',''),(123085,3587,'_banners_0_background_image','field_6059d2e1ba0c1'),(123104,3589,'main-title','Contact us'),(123105,3589,'_main-title','field_61773432e6ceb'),(123106,3589,'sub-title','Let`s Talk'),(123107,3589,'_sub-title','field_61773452e6cec'),(123108,3589,'phrase-1','We Treat Your Business like our On'),(123109,3589,'_phrase-1','field_617732a4e6cde'),(123110,3589,'img-1','3528'),(123111,3589,'_img-1','field_617732cae6cdf'),(123112,3589,'name-1','Robert Golabek'),(123113,3589,'_name-1','field_61773304e6ce2'),(123114,3589,'position-1','Chief Executive Officer'),(123115,3589,'_position-1','field_6177334de6ce5'),(123116,3589,'img-2','3529'),(123117,3589,'_img-2','field_617732e3e6ce0'),(123118,3589,'name-2','Patryk Golabek'),(123119,3589,'_name-2','field_61773313e6ce3'),(123120,3589,'position-2','Chief Technology Officer'),(123121,3589,'_position-2','field_61773370e6ce6'),(123122,3589,'img-3','3530'),(123123,3589,'_img-3','field_617732f0e6ce1'),(123124,3589,'name-3','Bradford A. M. Sankar'),(123125,3589,'_name-3','field_6177331fe6ce4'),(123126,3589,'position-3','Chief Operating Office'),(123127,3589,'_position-3','field_6177337be6ce7'),(123128,3589,'field-1','Send an email to us'),(123129,3589,'_field-1','field_61773393e6ce8'),(123130,3589,'field-2','info@translucentcomputing.com'),(123131,3589,'_field-2','field_617733c5e6ce9'),(123132,3589,'field-3','1-888-828-0144 x 105'),(123133,3589,'_field-3','field_617733d2e6cea'),(123134,3590,'main-title','Contact us'),(123135,3590,'_main-title','field_61773432e6ceb'),(123136,3590,'sub-title','Let`s Talk'),(123137,3590,'_sub-title','field_61773452e6cec'),(123138,3590,'phrase-1','We Treat Your Business like our Own'),(123139,3590,'_phrase-1','field_617732a4e6cde'),(123140,3590,'img-1','3528'),(123141,3590,'_img-1','field_617732cae6cdf'),(123142,3590,'name-1','Robert Golabek'),(123143,3590,'_name-1','field_61773304e6ce2'),(123144,3590,'position-1','Chief Executive Officer'),(123145,3590,'_position-1','field_6177334de6ce5'),(123146,3590,'img-2','3529'),(123147,3590,'_img-2','field_617732e3e6ce0'),(123148,3590,'name-2','Patryk Golabek'),(123149,3590,'_name-2','field_61773313e6ce3'),(123150,3590,'position-2','Chief Technology Officer'),(123151,3590,'_position-2','field_61773370e6ce6'),(123152,3590,'img-3','3530'),(123153,3590,'_img-3','field_617732f0e6ce1'),(123154,3590,'name-3','Bradford A. M. Sankar'),(123155,3590,'_name-3','field_6177331fe6ce4'),(123156,3590,'position-3','Chief Operating Office'),(123157,3590,'_position-3','field_6177337be6ce7'),(123158,3590,'field-1','Send an email to us'),(123159,3590,'_field-1','field_61773393e6ce8'),(123160,3590,'field-2','info@translucentcomputing.com'),(123161,3590,'_field-2','field_617733c5e6ce9'),(123162,3590,'field-3','1-888-828-0144 x 105'),(123163,3590,'_field-3','field_617733d2e6cea'),(123236,3591,'main-title','Cloud Native Solutions Your Business Depends On'),(123237,3591,'_main-title','field_6176c354de231'),(123238,3591,'title-1','Digital Transformation What’s In It For Me?'),(123239,3591,'_title-1','field_6176c363de232'),(123240,3591,'phrase-1','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(123241,3591,'_phrase-1','field_6176c396de234'),(123242,3591,'button-cta-1','LEARN MORE'),(123243,3591,'_button-cta-1','field_6176c3c9de236'),(123244,3591,'title-2','Our Technology is Stacked'),(123245,3591,'_title-2','field_6176c388de233'),(123246,3591,'phrase-2','Data-Driven application tools and processes specialized in building cloud native applications. \r\nOptimize your development by 20% to 50%, by using production-ready open source tools.'),(123247,3591,'_phrase-2','field_6176c3adde235'),(123248,3591,'button-cta-2','LEARN MORE'),(123249,3591,'_button-cta-2','field_6176c3d7de237'),(123250,3591,'background','3525'),(123251,3591,'_background','field_6176cdd41416a'),(123252,3591,'link-cta-1','https://translucent.local/what-is-data-driven-digital-transformation/'),(123253,3591,'_link-cta-1','field_61781a892a517'),(123254,3591,'link-cta-2','https://translucent.local/tekstack-ai/'),(123255,3591,'_link-cta-2','field_61781a982a518'),(123469,3593,'_pinterest_shares','0'),(123470,3593,'_total_shares','0'),(123475,3156,'_pinterest_shares','0'),(123476,3156,'_total_shares','0'),(123478,2526,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(123479,2526,'testimonials_0_phrase',' “Almost seems like magic”'),(123480,2526,'_testimonials_0_phrase','field_61897cf2a836b'),(123481,3595,'background','2613'),(123482,3595,'_background','field_6083613c01a24'),(123483,3595,'title','Your\r\n#1 Partner\r\nin Cloud\r\nNative\r\nDevOps'),(123484,3595,'_title','field_6083614f01a25'),(123485,3595,'items_0_item','Simplify your Cloud'),(123486,3595,'_items_0_item','field_608361a401a28'),(123487,3595,'items_1_item','Make your Cloud computing worry-free'),(123488,3595,'_items_1_item','field_608361a401a28'),(123489,3595,'items','2'),(123490,3595,'_items','field_6083618a01a27'),(123491,3595,'image','2599'),(123492,3595,'_image','field_6083616401a26'),(123493,3595,'trusted_by_logos','5'),(123494,3595,'_trusted_by_logos','field_60d931a311b0f'),(123495,3595,'steps_image','2543'),(123496,3595,'_steps_image','field_608361e101a2b'),(123497,3595,'steps_title','Our approach to Your Successful DevOps Implementation'),(123498,3595,'_steps_title','field_608361ee01a2c'),(123499,3595,'steps_text','Plan we partner with your people and objectives in mind\r\nMigrate what adds business value first\r\nManage your cloud native DevOps Journey with you\r\nAutomate saving on your resource cost and making you money\r\nOptimize continuously improve and develop for your future'),(123500,3595,'_steps_text','field_6083620201a2d'),(123501,3595,'people_background','2621'),(123502,3595,'_people_background','field_6083621801a2e'),(123503,3595,'people_title',' We Listen. We Learn. We Inform.'),(123504,3595,'_people_title','field_6083622601a2f'),(123505,3595,'people_text','Digital Transformation is not just about cloud native DevOps technology. It’s about…\r\nPeople, Business, Operations and Results. Oh and People! Did I say people?'),(123506,3595,'_people_text','field_6083623101a30'),(123507,3595,'kubernetes_partnership_title','Benefits of the Translucent DevOps Kubernetes Partnership\r\nSAVE TIME and SAVE MONEY'),(123508,3595,'_kubernetes_partnership_title','field_6083624901a31'),(123509,3595,'kubernetes_partnership_image_desktop','2907'),(123510,3595,'_kubernetes_partnership_image_desktop','field_6083626601a33'),(123511,3595,'kubernetes_partnership_images_mobile_0_image','2911'),(123512,3595,'_kubernetes_partnership_images_mobile_0_image','field_6083628a01a35'),(123513,3595,'kubernetes_partnership_images_mobile_1_image','2912'),(123514,3595,'_kubernetes_partnership_images_mobile_1_image','field_6083628a01a35'),(123515,3595,'kubernetes_partnership_images_mobile','2'),(123516,3595,'_kubernetes_partnership_images_mobile','field_6083627c01a34'),(123517,3595,'kubernetes_partnership_text','Reduce costs and improve operational efficiency through enhanced collaboration between your teams, increased platform and automation.'),(123518,3595,'_kubernetes_partnership_text','field_6083625901a32'),(123519,3595,'kubernetes_seal_title','Why choose Cloud Native Kubernetes Certified DevOps?'),(123520,3595,'_kubernetes_seal_title','field_608362a801a36'),(123521,3595,'kubernetes_seal_subtitle','71% of Fortune 100 companies use Kubernetes'),(123522,3595,'_kubernetes_seal_subtitle','field_608362c501a37'),(123523,3595,'kubernetes_seal_items_0_item','25%+ Faster to Market'),(123524,3595,'_kubernetes_seal_items_0_item','field_608362e601a39'),(123525,3595,'kubernetes_seal_items_1_item','Reliable and Secure'),(123526,3595,'_kubernetes_seal_items_1_item','field_608362e601a39'),(123527,3595,'kubernetes_seal_items_2_item','Privacy by Design'),(123528,3595,'_kubernetes_seal_items_2_item','field_608362e601a39'),(123529,3595,'kubernetes_seal_items_3_item','Automated Reporting for Your Entire Company'),(123530,3595,'_kubernetes_seal_items_3_item','field_608362e601a39'),(123531,3595,'kubernetes_seal_items_4_item','Kubernetes Connects You to all Major Clouds'),(123532,3595,'_kubernetes_seal_items_4_item','field_608362e601a39'),(123533,3595,'kubernetes_seal_items_5_item','35%+ Increase in Operational Efficiency'),(123534,3595,'_kubernetes_seal_items_5_item','field_608362e601a39'),(123535,3595,'kubernetes_seal_items_6_item','More Done with Less Resources'),(123536,3595,'_kubernetes_seal_items_6_item','field_608362e601a39'),(123537,3595,'kubernetes_seal_items','7'),(123538,3595,'_kubernetes_seal_items','field_608362db01a38'),(123539,3595,'kubernetes_seal_message','As a Certified Provider Translucent gets the Job Done Right!'),(123540,3595,'_kubernetes_seal_message','field_6083630501a3a'),(123541,3595,'kubernetes_seal_image','2600'),(123542,3595,'_kubernetes_seal_image','field_6083632101a3b'),(123543,3595,'black_background_phrase','As Your Cloud Native Kubernetes DevOps Partner, We are with You All the Way!'),(123544,3595,'_black_background_phrase','field_6083633201a3c'),(123545,3595,'testimonials_0_text','“Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automotive, loan, mechanic, and customer workflow data making the complex almost seems like magic.” '),(123546,3595,'_testimonials_0_text','field_60d931a81ba7d'),(123547,3595,'testimonials_0_picture','3195'),(123548,3595,'_testimonials_0_picture','field_60d931a81bb40'),(123549,3595,'testimonials_0_name','Eric Kaplan'),(123550,3595,'_testimonials_0_name','field_60d931a81bbf2'),(123551,3595,'testimonials_0_role','GoToLoans.com (We have you covered)'),(123552,3595,'_testimonials_0_role','field_60d931a81bc35'),(123553,3595,'testimonials','1'),(123554,3595,'_testimonials','field_60d931a312092'),(123555,3595,'ceo_picture','2904'),(123556,3595,'_ceo_picture','field_608363a901a42'),(123557,3595,'ceo_picture_mobile','2905'),(123558,3595,'_ceo_picture_mobile','field_608363b701a43'),(123559,3595,'ceo_name','Robert Golabeck'),(123560,3595,'_ceo_name','field_608363cd01a44'),(123561,3595,'ceo_email','results@translucentcomputing.com'),(123562,3595,'_ceo_email','field_60d931a3121f6'),(123563,3595,'ceo_phone','1-888-828-0144 x 105'),(123564,3595,'_ceo_phone','field_60d931a31223d'),(123565,3595,'ceo_address','1 Yonge Street, Suite 1801\r\nToronto, Ontario\r\nM5E 1W7'),(123566,3595,'_ceo_address','field_60d931a312283'),(123567,3595,'footer_kubernetes_image','2579'),(123568,3595,'_footer_kubernetes_image','field_60d931a3122c3'),(123569,3595,'trusted_by_logos_0_logo','2713'),(123570,3595,'_trusted_by_logos_0_logo','field_60d931a425c8c'),(123571,3595,'trusted_by_logos_1_logo','2711'),(123572,3595,'_trusted_by_logos_1_logo','field_60d931a425c8c'),(123573,3595,'trusted_by_logos_2_logo','2712'),(123574,3595,'_trusted_by_logos_2_logo','field_60d931a425c8c'),(123575,3595,'trusted_by_logos_3_logo','2716'),(123576,3595,'_trusted_by_logos_3_logo','field_60d931a425c8c'),(123577,3595,'trusted_by_logos_4_logo','2714'),(123578,3595,'_trusted_by_logos_4_logo','field_60d931a425c8c'),(123579,3595,'testimonials_0_phrase',' “Almost seems like magic”'),(123580,3595,'_testimonials_0_phrase','field_61897cf2a836b'),(123584,2526,'testimonials_1_text','A lot of technology vendors claim to have expertise with these technologies, but those boasts aren’t always a reality. You need to hire great engineers that work well with clients, and that, in a nutshell, is what Translucent Computing has brought to Canadian Black Book.”'),(123585,2526,'_testimonials_1_text','field_60d931a81ba7d'),(123586,2526,'testimonials_1_picture','2711'),(123587,2526,'_testimonials_1_picture','field_60d931a81bb40'),(123588,2526,'testimonials_1_name','Mike Compton'),(123589,2526,'_testimonials_1_name','field_60d931a81bbf2'),(123590,2526,'testimonials_1_role','CTO, Canadian Black Book | A division of the Hearst Business Media Corporation ($11.5 billion revenues USD - 2021)'),(123591,2526,'_testimonials_1_role','field_60d931a81bc35'),(123592,2526,'testimonials_1_phrase','“Fortunate to find a technology partner of their caliber” '),(123593,2526,'_testimonials_1_phrase','field_61897cf2a836b'),(123594,3596,'background','2613'),(123595,3596,'_background','field_6083613c01a24'),(123596,3596,'title','Your\r\n#1 Partner\r\nin Cloud\r\nNative\r\nDevOps'),(123597,3596,'_title','field_6083614f01a25'),(123598,3596,'items_0_item','Simplify your Cloud'),(123599,3596,'_items_0_item','field_608361a401a28'),(123600,3596,'items_1_item','Make your Cloud computing worry-free'),(123601,3596,'_items_1_item','field_608361a401a28'),(123602,3596,'items','2'),(123603,3596,'_items','field_6083618a01a27'),(123604,3596,'image','2599'),(123605,3596,'_image','field_6083616401a26'),(123606,3596,'trusted_by_logos','5'),(123607,3596,'_trusted_by_logos','field_60d931a311b0f'),(123608,3596,'steps_image','2543'),(123609,3596,'_steps_image','field_608361e101a2b'),(123610,3596,'steps_title','Our approach to Your Successful DevOps Implementation'),(123611,3596,'_steps_title','field_608361ee01a2c'),(123612,3596,'steps_text','Plan we partner with your people and objectives in mind\r\nMigrate what adds business value first\r\nManage your cloud native DevOps Journey with you\r\nAutomate saving on your resource cost and making you money\r\nOptimize continuously improve and develop for your future'),(123613,3596,'_steps_text','field_6083620201a2d'),(123614,3596,'people_background','2621'),(123615,3596,'_people_background','field_6083621801a2e'),(123616,3596,'people_title',' We Listen. We Learn. We Inform.'),(123617,3596,'_people_title','field_6083622601a2f'),(123618,3596,'people_text','Digital Transformation is not just about cloud native DevOps technology. It’s about…\r\nPeople, Business, Operations and Results. Oh and People! Did I say people?'),(123619,3596,'_people_text','field_6083623101a30'),(123620,3596,'kubernetes_partnership_title','Benefits of the Translucent DevOps Kubernetes Partnership\r\nSAVE TIME and SAVE MONEY'),(123621,3596,'_kubernetes_partnership_title','field_6083624901a31'),(123622,3596,'kubernetes_partnership_image_desktop','2907'),(123623,3596,'_kubernetes_partnership_image_desktop','field_6083626601a33'),(123624,3596,'kubernetes_partnership_images_mobile_0_image','2911'),(123625,3596,'_kubernetes_partnership_images_mobile_0_image','field_6083628a01a35'),(123626,3596,'kubernetes_partnership_images_mobile_1_image','2912'),(123627,3596,'_kubernetes_partnership_images_mobile_1_image','field_6083628a01a35'),(123628,3596,'kubernetes_partnership_images_mobile','2'),(123629,3596,'_kubernetes_partnership_images_mobile','field_6083627c01a34'),(123630,3596,'kubernetes_partnership_text','Reduce costs and improve operational efficiency through enhanced collaboration between your teams, increased platform and automation.'),(123631,3596,'_kubernetes_partnership_text','field_6083625901a32'),(123632,3596,'kubernetes_seal_title','Why choose Cloud Native Kubernetes Certified DevOps?'),(123633,3596,'_kubernetes_seal_title','field_608362a801a36'),(123634,3596,'kubernetes_seal_subtitle','71% of Fortune 100 companies use Kubernetes'),(123635,3596,'_kubernetes_seal_subtitle','field_608362c501a37'),(123636,3596,'kubernetes_seal_items_0_item','25%+ Faster to Market'),(123637,3596,'_kubernetes_seal_items_0_item','field_608362e601a39'),(123638,3596,'kubernetes_seal_items_1_item','Reliable and Secure'),(123639,3596,'_kubernetes_seal_items_1_item','field_608362e601a39'),(123640,3596,'kubernetes_seal_items_2_item','Privacy by Design'),(123641,3596,'_kubernetes_seal_items_2_item','field_608362e601a39'),(123642,3596,'kubernetes_seal_items_3_item','Automated Reporting for Your Entire Company'),(123643,3596,'_kubernetes_seal_items_3_item','field_608362e601a39'),(123644,3596,'kubernetes_seal_items_4_item','Kubernetes Connects You to all Major Clouds'),(123645,3596,'_kubernetes_seal_items_4_item','field_608362e601a39'),(123646,3596,'kubernetes_seal_items_5_item','35%+ Increase in Operational Efficiency'),(123647,3596,'_kubernetes_seal_items_5_item','field_608362e601a39'),(123648,3596,'kubernetes_seal_items_6_item','More Done with Less Resources'),(123649,3596,'_kubernetes_seal_items_6_item','field_608362e601a39'),(123650,3596,'kubernetes_seal_items','7'),(123651,3596,'_kubernetes_seal_items','field_608362db01a38'),(123652,3596,'kubernetes_seal_message','As a Certified Provider Translucent gets the Job Done Right!'),(123653,3596,'_kubernetes_seal_message','field_6083630501a3a'),(123654,3596,'kubernetes_seal_image','2600'),(123655,3596,'_kubernetes_seal_image','field_6083632101a3b'),(123656,3596,'black_background_phrase','As Your Cloud Native Kubernetes DevOps Partner, We are with You All the Way!'),(123657,3596,'_black_background_phrase','field_6083633201a3c'),(123658,3596,'testimonials_0_text','“Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automotive, loan, mechanic, and customer workflow data making the complex almost seems like magic.” '),(123659,3596,'_testimonials_0_text','field_60d931a81ba7d'),(123660,3596,'testimonials_0_picture','3195'),(123661,3596,'_testimonials_0_picture','field_60d931a81bb40'),(123662,3596,'testimonials_0_name','Eric Kaplan'),(123663,3596,'_testimonials_0_name','field_60d931a81bbf2'),(123664,3596,'testimonials_0_role','GoToLoans.com (We have you covered)'),(123665,3596,'_testimonials_0_role','field_60d931a81bc35'),(123666,3596,'testimonials','2'),(123667,3596,'_testimonials','field_60d931a312092'),(123668,3596,'ceo_picture','2904'),(123669,3596,'_ceo_picture','field_608363a901a42'),(123670,3596,'ceo_picture_mobile','2905'),(123671,3596,'_ceo_picture_mobile','field_608363b701a43'),(123672,3596,'ceo_name','Robert Golabeck'),(123673,3596,'_ceo_name','field_608363cd01a44'),(123674,3596,'ceo_email','results@translucentcomputing.com'),(123675,3596,'_ceo_email','field_60d931a3121f6'),(123676,3596,'ceo_phone','1-888-828-0144 x 105'),(123677,3596,'_ceo_phone','field_60d931a31223d'),(123678,3596,'ceo_address','1 Yonge Street, Suite 1801\r\nToronto, Ontario\r\nM5E 1W7'),(123679,3596,'_ceo_address','field_60d931a312283'),(123680,3596,'footer_kubernetes_image','2579'),(123681,3596,'_footer_kubernetes_image','field_60d931a3122c3'),(123682,3596,'trusted_by_logos_0_logo','2713'),(123683,3596,'_trusted_by_logos_0_logo','field_60d931a425c8c'),(123684,3596,'trusted_by_logos_1_logo','2711'),(123685,3596,'_trusted_by_logos_1_logo','field_60d931a425c8c'),(123686,3596,'trusted_by_logos_2_logo','2712'),(123687,3596,'_trusted_by_logos_2_logo','field_60d931a425c8c'),(123688,3596,'trusted_by_logos_3_logo','2716'),(123689,3596,'_trusted_by_logos_3_logo','field_60d931a425c8c'),(123690,3596,'trusted_by_logos_4_logo','2714'),(123691,3596,'_trusted_by_logos_4_logo','field_60d931a425c8c'),(123692,3596,'testimonials_0_phrase',' “Almost seems like magic”'),(123693,3596,'_testimonials_0_phrase','field_61897cf2a836b'),(123694,3596,'testimonials_1_text','A lot of technology vendors claim to have expertise with these technologies, but those boasts aren’t always a reality. You need to hire great engineers that work well with clients, and that, in a nutshell, is what Translucent Computing has brought to Canadian Black Book.”'),(123695,3596,'_testimonials_1_text','field_60d931a81ba7d'),(123696,3596,'testimonials_1_picture','2711'),(123697,3596,'_testimonials_1_picture','field_60d931a81bb40'),(123698,3596,'testimonials_1_name','Mike Compton'),(123699,3596,'_testimonials_1_name','field_60d931a81bbf2'),(123700,3596,'testimonials_1_role','CTO, Canadian Black Book | A division of the Hearst Business Media Corporation ($11.5 billion revenues USD - 2021)'),(123701,3596,'_testimonials_1_role','field_60d931a81bc35'),(123702,3596,'testimonials_1_phrase','“Fortunate to find a technology partner of their caliber” '),(123703,3596,'_testimonials_1_phrase','field_61897cf2a836b'),(123707,3597,'_wp_attached_file','2021/11/volentix3.png'),(123708,3597,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:96;s:6:\"height\";i:96;s:4:\"file\";s:21:\"2021/11/volentix3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(123709,3597,'_imagify_optimization_level','0'),(123710,3597,'_imagify_status','success'),(123711,3597,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13532;s:14:\"optimized_size\";i:13342;s:7:\"percent\";d:1.4;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13532;s:14:\"optimized_size\";i:7682;s:7:\"percent\";d:43.23;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:27064;s:14:\"optimized_size\";i:21024;s:7:\"percent\";d:22.32;}}'),(123712,3598,'_wp_attached_file','2021/11/logo-nuc_notag.jpg'),(123713,3598,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:280;s:6:\"height\";i:89;s:4:\"file\";s:26:\"2021/11/logo-nuc_notag.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"logo-nuc_notag-150x89.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:89;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:{}}}'),(123714,3598,'_imagify_optimization_level','0'),(123715,3598,'_imagify_status','success'),(123716,3598,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9899;s:14:\"optimized_size\";i:9458;s:7:\"percent\";d:4.45;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3879;s:14:\"optimized_size\";i:8214;s:7:\"percent\";d:-111.76;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9899;s:14:\"optimized_size\";i:15370;s:7:\"percent\";d:-55.27;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3879;s:14:\"optimized_size\";i:3395;s:7:\"percent\";d:12.48;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:27556;s:14:\"optimized_size\";i:36437;s:7:\"percent\";d:-32.23;}}'),(123717,2526,'testimonials_2_text','“Translucent’s understanding of the cloud native DevOps space and expertise in Kubernetes, through to data-driven applications, has proven extremely valuable to Volentix’s growth of our multi-currency cross-blockchain solution.”'),(123718,2526,'_testimonials_2_text','field_60d931a81ba7d'),(123719,2526,'testimonials_2_picture','3597'),(123720,2526,'_testimonials_2_picture','field_60d931a81bb40'),(123721,2526,'testimonials_2_name','Rhys Parry'),(123722,2526,'_testimonials_2_name','field_60d931a81bbf2'),(123723,2526,'testimonials_2_role','Volentix CTO'),(123724,2526,'_testimonials_2_role','field_60d931a81bc35'),(123725,2526,'testimonials_2_phrase','“Fits the fintech and financial services space”'),(123726,2526,'_testimonials_2_phrase','field_61897cf2a836b'),(123727,2526,'testimonials_3_text','“Translucent Computing…has dedicated professionals that can provide economical solutions for web-based needs, for both the private and public sector. They have worked with us for some 5 years, and they have shown themselves to be both very professional and helpful in developing and supporting our database.”'),(123728,2526,'_testimonials_3_text','field_60d931a81ba7d'),(123729,2526,'testimonials_3_picture','2716'),(123730,2526,'_testimonials_3_picture','field_60d931a81bb40'),(123731,2526,'testimonials_3_name','James Loukides'),(123732,2526,'_testimonials_3_name','field_60d931a81bbf2'),(123733,2526,'testimonials_3_role','The Michael and Amira Dan Brain Tumor Bank Network Manager | University of Toronto'),(123734,2526,'_testimonials_3_role','field_60d931a81bc35'),(123735,2526,'testimonials_3_phrase','“Economical solutions…very professional'),(123736,2526,'_testimonials_3_phrase','field_61897cf2a836b'),(123737,2526,'testimonials_4_text','GoTo Loans (GTL) has been awarded by the Canadian Lenders Association as Auto Lending Platform of the Year category for the “Leaders in Lending 2020” awards.  Translucent has been our fintech, financial services technology partner from the inception of GTL’s journey.'),(123738,2526,'_testimonials_4_text','field_60d931a81ba7d'),(123739,2526,'testimonials_4_picture','3195'),(123740,2526,'_testimonials_4_picture','field_60d931a81bb40'),(123741,2526,'testimonials_4_name','Eric Kaplan'),(123742,2526,'_testimonials_4_name','field_60d931a81bbf2'),(123743,2526,'testimonials_4_role','GoToLoans.com (We have you covered)'),(123744,2526,'_testimonials_4_role','field_60d931a81bc35'),(123745,2526,'testimonials_4_phrase','“Award winning… Fintech, Financial technology partner”'),(123746,2526,'_testimonials_4_phrase','field_61897cf2a836b'),(123747,2526,'testimonials_5_text','“A strong foundation using AWS Cloud, Terraform for infrastructure deployment, Kubernetes for cluster monitoring and scaling, Docker for app containerization, and a strong dose of DevOps to ensure the pipeline was automated.”'),(123748,2526,'_testimonials_5_text','field_60d931a81ba7d'),(123749,2526,'testimonials_5_picture','2711'),(123750,2526,'_testimonials_5_picture','field_60d931a81bb40'),(123751,2526,'testimonials_5_name','Mike Compton'),(123752,2526,'_testimonials_5_name','field_60d931a81bbf2'),(123753,2526,'testimonials_5_role','CTO, Canadian Black Book | A division of the Hearst Business Media Corporation ($11.5 billion revenues USD - 2021)'),(123754,2526,'_testimonials_5_role','field_60d931a81bc35'),(123755,2526,'testimonials_5_phrase','“Redeveloping the core mobile and web-based products.”'),(123756,2526,'_testimonials_5_phrase','field_61897cf2a836b'),(123757,2526,'testimonials_6_text','“I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise, but also the technological resources that could assist SickKids as we deal with the current pandemic.”'),(123758,2526,'_testimonials_6_text','field_60d931a81ba7d'),(123759,2526,'testimonials_6_picture','801'),(123760,2526,'_testimonials_6_picture','field_60d931a81bb40'),(123761,2526,'testimonials_6_name','Dr. Andrew James'),(123762,2526,'_testimonials_6_name','field_60d931a81bbf2'),(123763,2526,'testimonials_6_role','The Hospital for Sick Children | Associate Professor, Department of Pediatrics, University of Toronto'),(123764,2526,'_testimonials_6_role','field_60d931a81bc35'),(123765,2526,'testimonials_6_phrase','“Highly reliable and extremely valuable” '),(123766,2526,'_testimonials_6_phrase','field_61897cf2a836b'),(123767,2526,'testimonials_7_text','“Translucent is a strategic partner in the design and development of our technology platform. Their expertise, commitment and flexibility during the engagement helped us to build a solution that will improve patient scheduling for healthcare providers.”'),(123768,2526,'_testimonials_7_text','field_60d931a81ba7d'),(123769,2526,'testimonials_7_picture','3598'),(123770,2526,'_testimonials_7_picture','field_60d931a81bb40'),(123771,2526,'testimonials_7_name','Wayne Li'),(123772,2526,'_testimonials_7_name','field_60d931a81bbf2'),(123773,2526,'testimonials_7_role','CEO NextUp Care'),(123774,2526,'_testimonials_7_role','field_60d931a81bc35'),(123775,2526,'testimonials_7_phrase','“Strategic partner…for healthcare providers”'),(123776,2526,'_testimonials_7_phrase','field_61897cf2a836b'),(123777,2526,'testimonials_8_text','“Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security as it fits the fintech and financial services space has been invaluable.  I would use them again if I could.  In fact, I would use their team for everything if I could!\"'),(123778,2526,'_testimonials_8_text','field_60d931a81ba7d'),(123779,2526,'testimonials_8_picture','3597'),(123780,2526,'_testimonials_8_picture','field_60d931a81bb40'),(123781,2526,'testimonials_8_name','Rhys Parry'),(123782,2526,'_testimonials_8_name','field_60d931a81bbf2'),(123783,2526,'testimonials_8_role','Volentix CTO'),(123784,2526,'_testimonials_8_role','field_60d931a81bc35'),(123785,2526,'testimonials_8_phrase','“Use their team for everything”'),(123786,2526,'_testimonials_8_phrase','field_61897cf2a836b'),(123787,3599,'background','2613'),(123788,3599,'_background','field_6083613c01a24'),(123789,3599,'title','Your\r\n#1 Partner\r\nin Cloud\r\nNative\r\nDevOps'),(123790,3599,'_title','field_6083614f01a25'),(123791,3599,'items_0_item','Simplify your Cloud'),(123792,3599,'_items_0_item','field_608361a401a28'),(123793,3599,'items_1_item','Make your Cloud computing worry-free'),(123794,3599,'_items_1_item','field_608361a401a28'),(123795,3599,'items','2'),(123796,3599,'_items','field_6083618a01a27'),(123797,3599,'image','2599'),(123798,3599,'_image','field_6083616401a26'),(123799,3599,'trusted_by_logos','5'),(123800,3599,'_trusted_by_logos','field_60d931a311b0f'),(123801,3599,'steps_image','2543'),(123802,3599,'_steps_image','field_608361e101a2b'),(123803,3599,'steps_title','Our approach to Your Successful DevOps Implementation'),(123804,3599,'_steps_title','field_608361ee01a2c'),(123805,3599,'steps_text','Plan we partner with your people and objectives in mind\r\nMigrate what adds business value first\r\nManage your cloud native DevOps Journey with you\r\nAutomate saving on your resource cost and making you money\r\nOptimize continuously improve and develop for your future'),(123806,3599,'_steps_text','field_6083620201a2d'),(123807,3599,'people_background','2621'),(123808,3599,'_people_background','field_6083621801a2e'),(123809,3599,'people_title',' We Listen. We Learn. We Inform.'),(123810,3599,'_people_title','field_6083622601a2f'),(123811,3599,'people_text','Digital Transformation is not just about cloud native DevOps technology. It’s about…\r\nPeople, Business, Operations and Results. Oh and People! Did I say people?'),(123812,3599,'_people_text','field_6083623101a30'),(123813,3599,'kubernetes_partnership_title','Benefits of the Translucent DevOps Kubernetes Partnership\r\nSAVE TIME and SAVE MONEY'),(123814,3599,'_kubernetes_partnership_title','field_6083624901a31'),(123815,3599,'kubernetes_partnership_image_desktop','2907'),(123816,3599,'_kubernetes_partnership_image_desktop','field_6083626601a33'),(123817,3599,'kubernetes_partnership_images_mobile_0_image','2911'),(123818,3599,'_kubernetes_partnership_images_mobile_0_image','field_6083628a01a35'),(123819,3599,'kubernetes_partnership_images_mobile_1_image','2912'),(123820,3599,'_kubernetes_partnership_images_mobile_1_image','field_6083628a01a35'),(123821,3599,'kubernetes_partnership_images_mobile','2'),(123822,3599,'_kubernetes_partnership_images_mobile','field_6083627c01a34'),(123823,3599,'kubernetes_partnership_text','Reduce costs and improve operational efficiency through enhanced collaboration between your teams, increased platform and automation.'),(123824,3599,'_kubernetes_partnership_text','field_6083625901a32'),(123825,3599,'kubernetes_seal_title','Why choose Cloud Native Kubernetes Certified DevOps?'),(123826,3599,'_kubernetes_seal_title','field_608362a801a36'),(123827,3599,'kubernetes_seal_subtitle','71% of Fortune 100 companies use Kubernetes'),(123828,3599,'_kubernetes_seal_subtitle','field_608362c501a37'),(123829,3599,'kubernetes_seal_items_0_item','25%+ Faster to Market'),(123830,3599,'_kubernetes_seal_items_0_item','field_608362e601a39'),(123831,3599,'kubernetes_seal_items_1_item','Reliable and Secure'),(123832,3599,'_kubernetes_seal_items_1_item','field_608362e601a39'),(123833,3599,'kubernetes_seal_items_2_item','Privacy by Design'),(123834,3599,'_kubernetes_seal_items_2_item','field_608362e601a39'),(123835,3599,'kubernetes_seal_items_3_item','Automated Reporting for Your Entire Company'),(123836,3599,'_kubernetes_seal_items_3_item','field_608362e601a39'),(123837,3599,'kubernetes_seal_items_4_item','Kubernetes Connects You to all Major Clouds'),(123838,3599,'_kubernetes_seal_items_4_item','field_608362e601a39'),(123839,3599,'kubernetes_seal_items_5_item','35%+ Increase in Operational Efficiency'),(123840,3599,'_kubernetes_seal_items_5_item','field_608362e601a39'),(123841,3599,'kubernetes_seal_items_6_item','More Done with Less Resources'),(123842,3599,'_kubernetes_seal_items_6_item','field_608362e601a39'),(123843,3599,'kubernetes_seal_items','7'),(123844,3599,'_kubernetes_seal_items','field_608362db01a38'),(123845,3599,'kubernetes_seal_message','As a Certified Provider Translucent gets the Job Done Right!'),(123846,3599,'_kubernetes_seal_message','field_6083630501a3a'),(123847,3599,'kubernetes_seal_image','2600'),(123848,3599,'_kubernetes_seal_image','field_6083632101a3b'),(123849,3599,'black_background_phrase','As Your Cloud Native Kubernetes DevOps Partner, We are with You All the Way!'),(123850,3599,'_black_background_phrase','field_6083633201a3c'),(123851,3599,'testimonials_0_text','“Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automotive, loan, mechanic, and customer workflow data making the complex almost seems like magic.” '),(123852,3599,'_testimonials_0_text','field_60d931a81ba7d'),(123853,3599,'testimonials_0_picture','3195'),(123854,3599,'_testimonials_0_picture','field_60d931a81bb40'),(123855,3599,'testimonials_0_name','Eric Kaplan'),(123856,3599,'_testimonials_0_name','field_60d931a81bbf2'),(123857,3599,'testimonials_0_role','GoToLoans.com (We have you covered)'),(123858,3599,'_testimonials_0_role','field_60d931a81bc35'),(123859,3599,'testimonials','9'),(123860,3599,'_testimonials','field_60d931a312092'),(123861,3599,'ceo_picture','2904'),(123862,3599,'_ceo_picture','field_608363a901a42'),(123863,3599,'ceo_picture_mobile','2905'),(123864,3599,'_ceo_picture_mobile','field_608363b701a43'),(123865,3599,'ceo_name','Robert Golabeck'),(123866,3599,'_ceo_name','field_608363cd01a44'),(123867,3599,'ceo_email','results@translucentcomputing.com'),(123868,3599,'_ceo_email','field_60d931a3121f6'),(123869,3599,'ceo_phone','1-888-828-0144 x 105'),(123870,3599,'_ceo_phone','field_60d931a31223d'),(123871,3599,'ceo_address','1 Yonge Street, Suite 1801\r\nToronto, Ontario\r\nM5E 1W7'),(123872,3599,'_ceo_address','field_60d931a312283'),(123873,3599,'footer_kubernetes_image','2579'),(123874,3599,'_footer_kubernetes_image','field_60d931a3122c3'),(123875,3599,'trusted_by_logos_0_logo','2713'),(123876,3599,'_trusted_by_logos_0_logo','field_60d931a425c8c'),(123877,3599,'trusted_by_logos_1_logo','2711'),(123878,3599,'_trusted_by_logos_1_logo','field_60d931a425c8c'),(123879,3599,'trusted_by_logos_2_logo','2712'),(123880,3599,'_trusted_by_logos_2_logo','field_60d931a425c8c'),(123881,3599,'trusted_by_logos_3_logo','2716'),(123882,3599,'_trusted_by_logos_3_logo','field_60d931a425c8c'),(123883,3599,'trusted_by_logos_4_logo','2714'),(123884,3599,'_trusted_by_logos_4_logo','field_60d931a425c8c'),(123885,3599,'testimonials_0_phrase',' “Almost seems like magic”'),(123886,3599,'_testimonials_0_phrase','field_61897cf2a836b'),(123887,3599,'testimonials_1_text','A lot of technology vendors claim to have expertise with these technologies, but those boasts aren’t always a reality. You need to hire great engineers that work well with clients, and that, in a nutshell, is what Translucent Computing has brought to Canadian Black Book.”'),(123888,3599,'_testimonials_1_text','field_60d931a81ba7d'),(123889,3599,'testimonials_1_picture','2711'),(123890,3599,'_testimonials_1_picture','field_60d931a81bb40'),(123891,3599,'testimonials_1_name','Mike Compton'),(123892,3599,'_testimonials_1_name','field_60d931a81bbf2'),(123893,3599,'testimonials_1_role','CTO, Canadian Black Book | A division of the Hearst Business Media Corporation ($11.5 billion revenues USD - 2021)'),(123894,3599,'_testimonials_1_role','field_60d931a81bc35'),(123895,3599,'testimonials_1_phrase','“Fortunate to find a technology partner of their caliber” '),(123896,3599,'_testimonials_1_phrase','field_61897cf2a836b'),(123897,3599,'testimonials_2_text','“Translucent’s understanding of the cloud native DevOps space and expertise in Kubernetes, through to data-driven applications, has proven extremely valuable to Volentix’s growth of our multi-currency cross-blockchain solution.”'),(123898,3599,'_testimonials_2_text','field_60d931a81ba7d'),(123899,3599,'testimonials_2_picture','3597'),(123900,3599,'_testimonials_2_picture','field_60d931a81bb40'),(123901,3599,'testimonials_2_name','Rhys Parry'),(123902,3599,'_testimonials_2_name','field_60d931a81bbf2'),(123903,3599,'testimonials_2_role','Volentix CTO'),(123904,3599,'_testimonials_2_role','field_60d931a81bc35'),(123905,3599,'testimonials_2_phrase','“Fits the fintech and financial services space”'),(123906,3599,'_testimonials_2_phrase','field_61897cf2a836b'),(123907,3599,'testimonials_3_text','“Translucent Computing…has dedicated professionals that can provide economical solutions for web-based needs, for both the private and public sector. They have worked with us for some 5 years, and they have shown themselves to be both very professional and helpful in developing and supporting our database.”'),(123908,3599,'_testimonials_3_text','field_60d931a81ba7d'),(123909,3599,'testimonials_3_picture','620'),(123910,3599,'_testimonials_3_picture','field_60d931a81bb40'),(123911,3599,'testimonials_3_name','James Loukides'),(123912,3599,'_testimonials_3_name','field_60d931a81bbf2'),(123913,3599,'testimonials_3_role','The Michael and Amira Dan Brain Tumor Bank Network Manager | University of Toronto'),(123914,3599,'_testimonials_3_role','field_60d931a81bc35'),(123915,3599,'testimonials_3_phrase','“Economical solutions…very professional'),(123916,3599,'_testimonials_3_phrase','field_61897cf2a836b'),(123917,3599,'testimonials_4_text','GoTo Loans (GTL) has been awarded by the Canadian Lenders Association as Auto Lending Platform of the Year category for the “Leaders in Lending 2020” awards.  Translucent has been our fintech, financial services technology partner from the inception of GTL’s journey.'),(123918,3599,'_testimonials_4_text','field_60d931a81ba7d'),(123919,3599,'testimonials_4_picture','3195'),(123920,3599,'_testimonials_4_picture','field_60d931a81bb40'),(123921,3599,'testimonials_4_name','Eric Kaplan'),(123922,3599,'_testimonials_4_name','field_60d931a81bbf2'),(123923,3599,'testimonials_4_role','GoToLoans.com (We have you covered)'),(123924,3599,'_testimonials_4_role','field_60d931a81bc35'),(123925,3599,'testimonials_4_phrase','“Award winning… Fintech, Financial technology partner”'),(123926,3599,'_testimonials_4_phrase','field_61897cf2a836b'),(123927,3599,'testimonials_5_text','“A strong foundation using AWS Cloud, Terraform for infrastructure deployment, Kubernetes for cluster monitoring and scaling, Docker for app containerization, and a strong dose of DevOps to ensure the pipeline was automated.”'),(123928,3599,'_testimonials_5_text','field_60d931a81ba7d'),(123929,3599,'testimonials_5_picture','2711'),(123930,3599,'_testimonials_5_picture','field_60d931a81bb40'),(123931,3599,'testimonials_5_name','Mike Compton'),(123932,3599,'_testimonials_5_name','field_60d931a81bbf2'),(123933,3599,'testimonials_5_role','CTO, Canadian Black Book | A division of the Hearst Business Media Corporation ($11.5 billion revenues USD - 2021)'),(123934,3599,'_testimonials_5_role','field_60d931a81bc35'),(123935,3599,'testimonials_5_phrase','“Redeveloping the core mobile and web-based products.”'),(123936,3599,'_testimonials_5_phrase','field_61897cf2a836b'),(123937,3599,'testimonials_6_text','“I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise, but also the technological resources that could assist SickKids as we deal with the current pandemic.”'),(123938,3599,'_testimonials_6_text','field_60d931a81ba7d'),(123939,3599,'testimonials_6_picture','620'),(123940,3599,'_testimonials_6_picture','field_60d931a81bb40'),(123941,3599,'testimonials_6_name','Dr. Andrew James'),(123942,3599,'_testimonials_6_name','field_60d931a81bbf2'),(123943,3599,'testimonials_6_role','The Hospital for Sick Children | Associate Professor, Department of Pediatrics, University of Toronto'),(123944,3599,'_testimonials_6_role','field_60d931a81bc35'),(123945,3599,'testimonials_6_phrase','“Highly reliable and extremely valuable” '),(123946,3599,'_testimonials_6_phrase','field_61897cf2a836b'),(123947,3599,'testimonials_7_text','“Translucent is a strategic partner in the design and development of our technology platform. Their expertise, commitment and flexibility during the engagement helped us to build a solution that will improve patient scheduling for healthcare providers.”'),(123948,3599,'_testimonials_7_text','field_60d931a81ba7d'),(123949,3599,'testimonials_7_picture','3598'),(123950,3599,'_testimonials_7_picture','field_60d931a81bb40'),(123951,3599,'testimonials_7_name','Wayne Li'),(123952,3599,'_testimonials_7_name','field_60d931a81bbf2'),(123953,3599,'testimonials_7_role','CEO NextUp Care'),(123954,3599,'_testimonials_7_role','field_60d931a81bc35'),(123955,3599,'testimonials_7_phrase','“Strategic partner…for healthcare providers”'),(123956,3599,'_testimonials_7_phrase','field_61897cf2a836b'),(123957,3599,'testimonials_8_text','“Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security as it fits the fintech and financial services space has been invaluable.  I would use them again if I could.  In fact, I would use their team for everything if I could!\"'),(123958,3599,'_testimonials_8_text','field_60d931a81ba7d'),(123959,3599,'testimonials_8_picture','3597'),(123960,3599,'_testimonials_8_picture','field_60d931a81bb40'),(123961,3599,'testimonials_8_name','Rhys Parry'),(123962,3599,'_testimonials_8_name','field_60d931a81bbf2'),(123963,3599,'testimonials_8_role','Volentix CTO'),(123964,3599,'_testimonials_8_role','field_60d931a81bc35'),(123965,3599,'testimonials_8_phrase','“Use their team for everything”'),(123966,3599,'_testimonials_8_phrase','field_61897cf2a836b'),(123985,3601,'background','2613'),(123986,3601,'_background','field_6083613c01a24'),(123987,3601,'title','Your\r\n#1 Partner\r\nin Cloud\r\nNative\r\nDevOps'),(123988,3601,'_title','field_6083614f01a25'),(123989,3601,'items_0_item','Simplify your Cloud'),(123990,3601,'_items_0_item','field_608361a401a28'),(123991,3601,'items_1_item','Make your Cloud computing worry-free'),(123992,3601,'_items_1_item','field_608361a401a28'),(123993,3601,'items','2'),(123994,3601,'_items','field_6083618a01a27'),(123995,3601,'image','2599'),(123996,3601,'_image','field_6083616401a26'),(123997,3601,'trusted_by_logos','5'),(123998,3601,'_trusted_by_logos','field_60d931a311b0f'),(123999,3601,'steps_image','2543'),(124000,3601,'_steps_image','field_608361e101a2b'),(124001,3601,'steps_title','Our approach to Your Successful DevOps Implementation'),(124002,3601,'_steps_title','field_608361ee01a2c'),(124003,3601,'steps_text','Plan we partner with your people and objectives in mind\r\nMigrate what adds business value first\r\nManage your cloud native DevOps Journey with you\r\nAutomate saving on your resource cost and making you money\r\nOptimize continuously improve and develop for your future'),(124004,3601,'_steps_text','field_6083620201a2d'),(124005,3601,'people_background','2621'),(124006,3601,'_people_background','field_6083621801a2e'),(124007,3601,'people_title',' We Listen. We Learn. We Inform.'),(124008,3601,'_people_title','field_6083622601a2f'),(124009,3601,'people_text','Digital Transformation is not just about cloud native DevOps technology. It’s about…\r\nPeople, Business, Operations and Results. Oh and People! Did I say people?'),(124010,3601,'_people_text','field_6083623101a30'),(124011,3601,'kubernetes_partnership_title','Benefits of the Translucent DevOps Kubernetes Partnership\r\nSAVE TIME and SAVE MONEY'),(124012,3601,'_kubernetes_partnership_title','field_6083624901a31'),(124013,3601,'kubernetes_partnership_image_desktop','2907'),(124014,3601,'_kubernetes_partnership_image_desktop','field_6083626601a33'),(124015,3601,'kubernetes_partnership_images_mobile_0_image','2911'),(124016,3601,'_kubernetes_partnership_images_mobile_0_image','field_6083628a01a35'),(124017,3601,'kubernetes_partnership_images_mobile_1_image','2912'),(124018,3601,'_kubernetes_partnership_images_mobile_1_image','field_6083628a01a35'),(124019,3601,'kubernetes_partnership_images_mobile','2'),(124020,3601,'_kubernetes_partnership_images_mobile','field_6083627c01a34'),(124021,3601,'kubernetes_partnership_text','Reduce costs and improve operational efficiency through enhanced collaboration between your teams, increased platform and automation.'),(124022,3601,'_kubernetes_partnership_text','field_6083625901a32'),(124023,3601,'kubernetes_seal_title','Why choose Cloud Native Kubernetes Certified DevOps?'),(124024,3601,'_kubernetes_seal_title','field_608362a801a36'),(124025,3601,'kubernetes_seal_subtitle','71% of Fortune 100 companies use Kubernetes'),(124026,3601,'_kubernetes_seal_subtitle','field_608362c501a37'),(124027,3601,'kubernetes_seal_items_0_item','25%+ Faster to Market'),(124028,3601,'_kubernetes_seal_items_0_item','field_608362e601a39'),(124029,3601,'kubernetes_seal_items_1_item','Reliable and Secure'),(124030,3601,'_kubernetes_seal_items_1_item','field_608362e601a39'),(124031,3601,'kubernetes_seal_items_2_item','Privacy by Design'),(124032,3601,'_kubernetes_seal_items_2_item','field_608362e601a39'),(124033,3601,'kubernetes_seal_items_3_item','Automated Reporting for Your Entire Company'),(124034,3601,'_kubernetes_seal_items_3_item','field_608362e601a39'),(124035,3601,'kubernetes_seal_items_4_item','Kubernetes Connects You to all Major Clouds'),(124036,3601,'_kubernetes_seal_items_4_item','field_608362e601a39'),(124037,3601,'kubernetes_seal_items_5_item','35%+ Increase in Operational Efficiency'),(124038,3601,'_kubernetes_seal_items_5_item','field_608362e601a39'),(124039,3601,'kubernetes_seal_items_6_item','More Done with Less Resources'),(124040,3601,'_kubernetes_seal_items_6_item','field_608362e601a39'),(124041,3601,'kubernetes_seal_items','7'),(124042,3601,'_kubernetes_seal_items','field_608362db01a38'),(124043,3601,'kubernetes_seal_message','As a Certified Provider Translucent gets the Job Done Right!'),(124044,3601,'_kubernetes_seal_message','field_6083630501a3a'),(124045,3601,'kubernetes_seal_image','2600'),(124046,3601,'_kubernetes_seal_image','field_6083632101a3b'),(124047,3601,'black_background_phrase','As Your Cloud Native Kubernetes DevOps Partner, We are with You All the Way!'),(124048,3601,'_black_background_phrase','field_6083633201a3c'),(124049,3601,'testimonials_0_text','“Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automotive, loan, mechanic, and customer workflow data making the complex almost seems like magic.” '),(124050,3601,'_testimonials_0_text','field_60d931a81ba7d'),(124051,3601,'testimonials_0_picture','3195'),(124052,3601,'_testimonials_0_picture','field_60d931a81bb40'),(124053,3601,'testimonials_0_name','Eric Kaplan'),(124054,3601,'_testimonials_0_name','field_60d931a81bbf2'),(124055,3601,'testimonials_0_role','GoToLoans.com (We have you covered)'),(124056,3601,'_testimonials_0_role','field_60d931a81bc35'),(124057,3601,'testimonials','9'),(124058,3601,'_testimonials','field_60d931a312092'),(124059,3601,'ceo_picture','2904'),(124060,3601,'_ceo_picture','field_608363a901a42'),(124061,3601,'ceo_picture_mobile','2905'),(124062,3601,'_ceo_picture_mobile','field_608363b701a43'),(124063,3601,'ceo_name','Robert Golabeck'),(124064,3601,'_ceo_name','field_608363cd01a44'),(124065,3601,'ceo_email','results@translucentcomputing.com'),(124066,3601,'_ceo_email','field_60d931a3121f6'),(124067,3601,'ceo_phone','1-888-828-0144 x 105'),(124068,3601,'_ceo_phone','field_60d931a31223d'),(124069,3601,'ceo_address','1 Yonge Street, Suite 1801\r\nToronto, Ontario\r\nM5E 1W7'),(124070,3601,'_ceo_address','field_60d931a312283'),(124071,3601,'footer_kubernetes_image','2579'),(124072,3601,'_footer_kubernetes_image','field_60d931a3122c3'),(124073,3601,'trusted_by_logos_0_logo','2713'),(124074,3601,'_trusted_by_logos_0_logo','field_60d931a425c8c'),(124075,3601,'trusted_by_logos_1_logo','2711'),(124076,3601,'_trusted_by_logos_1_logo','field_60d931a425c8c'),(124077,3601,'trusted_by_logos_2_logo','2712'),(124078,3601,'_trusted_by_logos_2_logo','field_60d931a425c8c'),(124079,3601,'trusted_by_logos_3_logo','2716'),(124080,3601,'_trusted_by_logos_3_logo','field_60d931a425c8c'),(124081,3601,'trusted_by_logos_4_logo','2714'),(124082,3601,'_trusted_by_logos_4_logo','field_60d931a425c8c'),(124083,3601,'testimonials_0_phrase',' “Almost seems like magic”'),(124084,3601,'_testimonials_0_phrase','field_61897cf2a836b'),(124085,3601,'testimonials_1_text','A lot of technology vendors claim to have expertise with these technologies, but those boasts aren’t always a reality. You need to hire great engineers that work well with clients, and that, in a nutshell, is what Translucent Computing has brought to Canadian Black Book.”'),(124086,3601,'_testimonials_1_text','field_60d931a81ba7d'),(124087,3601,'testimonials_1_picture','2711'),(124088,3601,'_testimonials_1_picture','field_60d931a81bb40'),(124089,3601,'testimonials_1_name','Mike Compton'),(124090,3601,'_testimonials_1_name','field_60d931a81bbf2'),(124091,3601,'testimonials_1_role','CTO, Canadian Black Book | A division of the Hearst Business Media Corporation ($11.5 billion revenues USD - 2021)'),(124092,3601,'_testimonials_1_role','field_60d931a81bc35'),(124093,3601,'testimonials_1_phrase','“Fortunate to find a technology partner of their caliber” '),(124094,3601,'_testimonials_1_phrase','field_61897cf2a836b'),(124095,3601,'testimonials_2_text','“Translucent’s understanding of the cloud native DevOps space and expertise in Kubernetes, through to data-driven applications, has proven extremely valuable to Volentix’s growth of our multi-currency cross-blockchain solution.”'),(124096,3601,'_testimonials_2_text','field_60d931a81ba7d'),(124097,3601,'testimonials_2_picture','3597'),(124098,3601,'_testimonials_2_picture','field_60d931a81bb40'),(124099,3601,'testimonials_2_name','Rhys Parry'),(124100,3601,'_testimonials_2_name','field_60d931a81bbf2'),(124101,3601,'testimonials_2_role','Volentix CTO'),(124102,3601,'_testimonials_2_role','field_60d931a81bc35'),(124103,3601,'testimonials_2_phrase','“Fits the fintech and financial services space”'),(124104,3601,'_testimonials_2_phrase','field_61897cf2a836b'),(124105,3601,'testimonials_3_text','“Translucent Computing…has dedicated professionals that can provide economical solutions for web-based needs, for both the private and public sector. They have worked with us for some 5 years, and they have shown themselves to be both very professional and helpful in developing and supporting our database.”'),(124106,3601,'_testimonials_3_text','field_60d931a81ba7d'),(124107,3601,'testimonials_3_picture','620'),(124108,3601,'_testimonials_3_picture','field_60d931a81bb40'),(124109,3601,'testimonials_3_name','James Loukides'),(124110,3601,'_testimonials_3_name','field_60d931a81bbf2'),(124111,3601,'testimonials_3_role','The Michael and Amira Dan Brain Tumor Bank Network Manager | University of Toronto'),(124112,3601,'_testimonials_3_role','field_60d931a81bc35'),(124113,3601,'testimonials_3_phrase','“Economical solutions…very professional'),(124114,3601,'_testimonials_3_phrase','field_61897cf2a836b'),(124115,3601,'testimonials_4_text','GoTo Loans (GTL) has been awarded by the Canadian Lenders Association as Auto Lending Platform of the Year category for the “Leaders in Lending 2020” awards.  Translucent has been our fintech, financial services technology partner from the inception of GTL’s journey.'),(124116,3601,'_testimonials_4_text','field_60d931a81ba7d'),(124117,3601,'testimonials_4_picture','3195'),(124118,3601,'_testimonials_4_picture','field_60d931a81bb40'),(124119,3601,'testimonials_4_name','Eric Kaplan'),(124120,3601,'_testimonials_4_name','field_60d931a81bbf2'),(124121,3601,'testimonials_4_role','GoToLoans.com (We have you covered)'),(124122,3601,'_testimonials_4_role','field_60d931a81bc35'),(124123,3601,'testimonials_4_phrase','“Award winning… Fintech, Financial technology partner”'),(124124,3601,'_testimonials_4_phrase','field_61897cf2a836b'),(124125,3601,'testimonials_5_text','“A strong foundation using AWS Cloud, Terraform for infrastructure deployment, Kubernetes for cluster monitoring and scaling, Docker for app containerization, and a strong dose of DevOps to ensure the pipeline was automated.”'),(124126,3601,'_testimonials_5_text','field_60d931a81ba7d'),(124127,3601,'testimonials_5_picture','2711'),(124128,3601,'_testimonials_5_picture','field_60d931a81bb40'),(124129,3601,'testimonials_5_name','Mike Compton'),(124130,3601,'_testimonials_5_name','field_60d931a81bbf2'),(124131,3601,'testimonials_5_role','CTO, Canadian Black Book | A division of the Hearst Business Media Corporation ($11.5 billion revenues USD - 2021)'),(124132,3601,'_testimonials_5_role','field_60d931a81bc35'),(124133,3601,'testimonials_5_phrase','“Redeveloping the core mobile and web-based products.”'),(124134,3601,'_testimonials_5_phrase','field_61897cf2a836b'),(124135,3601,'testimonials_6_text','“I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise, but also the technological resources that could assist SickKids as we deal with the current pandemic.”'),(124136,3601,'_testimonials_6_text','field_60d931a81ba7d'),(124137,3601,'testimonials_6_picture','2713'),(124138,3601,'_testimonials_6_picture','field_60d931a81bb40'),(124139,3601,'testimonials_6_name','Dr. Andrew James'),(124140,3601,'_testimonials_6_name','field_60d931a81bbf2'),(124141,3601,'testimonials_6_role','The Hospital for Sick Children | Associate Professor, Department of Pediatrics, University of Toronto'),(124142,3601,'_testimonials_6_role','field_60d931a81bc35'),(124143,3601,'testimonials_6_phrase','“Highly reliable and extremely valuable” '),(124144,3601,'_testimonials_6_phrase','field_61897cf2a836b'),(124145,3601,'testimonials_7_text','“Translucent is a strategic partner in the design and development of our technology platform. Their expertise, commitment and flexibility during the engagement helped us to build a solution that will improve patient scheduling for healthcare providers.”'),(124146,3601,'_testimonials_7_text','field_60d931a81ba7d'),(124147,3601,'testimonials_7_picture','3598'),(124148,3601,'_testimonials_7_picture','field_60d931a81bb40'),(124149,3601,'testimonials_7_name','Wayne Li'),(124150,3601,'_testimonials_7_name','field_60d931a81bbf2'),(124151,3601,'testimonials_7_role','CEO NextUp Care'),(124152,3601,'_testimonials_7_role','field_60d931a81bc35'),(124153,3601,'testimonials_7_phrase','“Strategic partner…for healthcare providers”'),(124154,3601,'_testimonials_7_phrase','field_61897cf2a836b'),(124155,3601,'testimonials_8_text','“Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security as it fits the fintech and financial services space has been invaluable.  I would use them again if I could.  In fact, I would use their team for everything if I could!\"'),(124156,3601,'_testimonials_8_text','field_60d931a81ba7d'),(124157,3601,'testimonials_8_picture','3597'),(124158,3601,'_testimonials_8_picture','field_60d931a81bb40'),(124159,3601,'testimonials_8_name','Rhys Parry'),(124160,3601,'_testimonials_8_name','field_60d931a81bbf2'),(124161,3601,'testimonials_8_role','Volentix CTO'),(124162,3601,'_testimonials_8_role','field_60d931a81bc35'),(124163,3601,'testimonials_8_phrase','“Use their team for everything”'),(124164,3601,'_testimonials_8_phrase','field_61897cf2a836b'),(124168,3602,'background','2613'),(124169,3602,'_background','field_6083613c01a24'),(124170,3602,'title','Your\r\n#1 Partner\r\nin Cloud\r\nNative\r\nDevOps'),(124171,3602,'_title','field_6083614f01a25'),(124172,3602,'items_0_item','Simplify your Cloud'),(124173,3602,'_items_0_item','field_608361a401a28'),(124174,3602,'items_1_item','Make your Cloud computing worry-free'),(124175,3602,'_items_1_item','field_608361a401a28'),(124176,3602,'items','2'),(124177,3602,'_items','field_6083618a01a27'),(124178,3602,'image','2599'),(124179,3602,'_image','field_6083616401a26'),(124180,3602,'trusted_by_logos','5'),(124181,3602,'_trusted_by_logos','field_60d931a311b0f'),(124182,3602,'steps_image','2543'),(124183,3602,'_steps_image','field_608361e101a2b'),(124184,3602,'steps_title','Our approach to Your Successful DevOps Implementation'),(124185,3602,'_steps_title','field_608361ee01a2c'),(124186,3602,'steps_text','Plan we partner with your people and objectives in mind\r\nMigrate what adds business value first\r\nManage your cloud native DevOps Journey with you\r\nAutomate saving on your resource cost and making you money\r\nOptimize continuously improve and develop for your future'),(124187,3602,'_steps_text','field_6083620201a2d'),(124188,3602,'people_background','2621'),(124189,3602,'_people_background','field_6083621801a2e'),(124190,3602,'people_title',' We Listen. We Learn. We Inform.'),(124191,3602,'_people_title','field_6083622601a2f'),(124192,3602,'people_text','Digital Transformation is not just about cloud native DevOps technology. It’s about…\r\nPeople, Business, Operations and Results. Oh and People! Did I say people?'),(124193,3602,'_people_text','field_6083623101a30'),(124194,3602,'kubernetes_partnership_title','Benefits of the Translucent DevOps Kubernetes Partnership\r\nSAVE TIME and SAVE MONEY'),(124195,3602,'_kubernetes_partnership_title','field_6083624901a31'),(124196,3602,'kubernetes_partnership_image_desktop','2907'),(124197,3602,'_kubernetes_partnership_image_desktop','field_6083626601a33'),(124198,3602,'kubernetes_partnership_images_mobile_0_image','2911'),(124199,3602,'_kubernetes_partnership_images_mobile_0_image','field_6083628a01a35'),(124200,3602,'kubernetes_partnership_images_mobile_1_image','2912'),(124201,3602,'_kubernetes_partnership_images_mobile_1_image','field_6083628a01a35'),(124202,3602,'kubernetes_partnership_images_mobile','2'),(124203,3602,'_kubernetes_partnership_images_mobile','field_6083627c01a34'),(124204,3602,'kubernetes_partnership_text','Reduce costs and improve operational efficiency through enhanced collaboration between your teams, increased platform and automation.'),(124205,3602,'_kubernetes_partnership_text','field_6083625901a32'),(124206,3602,'kubernetes_seal_title','Why choose Cloud Native Kubernetes Certified DevOps?'),(124207,3602,'_kubernetes_seal_title','field_608362a801a36'),(124208,3602,'kubernetes_seal_subtitle','71% of Fortune 100 companies use Kubernetes'),(124209,3602,'_kubernetes_seal_subtitle','field_608362c501a37'),(124210,3602,'kubernetes_seal_items_0_item','25%+ Faster to Market'),(124211,3602,'_kubernetes_seal_items_0_item','field_608362e601a39'),(124212,3602,'kubernetes_seal_items_1_item','Reliable and Secure'),(124213,3602,'_kubernetes_seal_items_1_item','field_608362e601a39'),(124214,3602,'kubernetes_seal_items_2_item','Privacy by Design'),(124215,3602,'_kubernetes_seal_items_2_item','field_608362e601a39'),(124216,3602,'kubernetes_seal_items_3_item','Automated Reporting for Your Entire Company'),(124217,3602,'_kubernetes_seal_items_3_item','field_608362e601a39'),(124218,3602,'kubernetes_seal_items_4_item','Kubernetes Connects You to all Major Clouds'),(124219,3602,'_kubernetes_seal_items_4_item','field_608362e601a39'),(124220,3602,'kubernetes_seal_items_5_item','35%+ Increase in Operational Efficiency'),(124221,3602,'_kubernetes_seal_items_5_item','field_608362e601a39'),(124222,3602,'kubernetes_seal_items_6_item','More Done with Less Resources'),(124223,3602,'_kubernetes_seal_items_6_item','field_608362e601a39'),(124224,3602,'kubernetes_seal_items','7'),(124225,3602,'_kubernetes_seal_items','field_608362db01a38'),(124226,3602,'kubernetes_seal_message','As a Certified Provider Translucent gets the Job Done Right!'),(124227,3602,'_kubernetes_seal_message','field_6083630501a3a'),(124228,3602,'kubernetes_seal_image','2600'),(124229,3602,'_kubernetes_seal_image','field_6083632101a3b'),(124230,3602,'black_background_phrase','As Your Cloud Native Kubernetes DevOps Partner, We are with You All the Way!'),(124231,3602,'_black_background_phrase','field_6083633201a3c'),(124232,3602,'testimonials_0_text','“Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automotive, loan, mechanic, and customer workflow data making the complex almost seems like magic.” '),(124233,3602,'_testimonials_0_text','field_60d931a81ba7d'),(124234,3602,'testimonials_0_picture','3195'),(124235,3602,'_testimonials_0_picture','field_60d931a81bb40'),(124236,3602,'testimonials_0_name','Eric Kaplan'),(124237,3602,'_testimonials_0_name','field_60d931a81bbf2'),(124238,3602,'testimonials_0_role','GoToLoans.com (We have you covered)'),(124239,3602,'_testimonials_0_role','field_60d931a81bc35'),(124240,3602,'testimonials','9'),(124241,3602,'_testimonials','field_60d931a312092'),(124242,3602,'ceo_picture','2904'),(124243,3602,'_ceo_picture','field_608363a901a42'),(124244,3602,'ceo_picture_mobile','2905'),(124245,3602,'_ceo_picture_mobile','field_608363b701a43'),(124246,3602,'ceo_name','Robert Golabeck'),(124247,3602,'_ceo_name','field_608363cd01a44'),(124248,3602,'ceo_email','results@translucentcomputing.com'),(124249,3602,'_ceo_email','field_60d931a3121f6'),(124250,3602,'ceo_phone','1-888-828-0144 x 105'),(124251,3602,'_ceo_phone','field_60d931a31223d'),(124252,3602,'ceo_address','1 Yonge Street, Suite 1801\r\nToronto, Ontario\r\nM5E 1W7'),(124253,3602,'_ceo_address','field_60d931a312283'),(124254,3602,'footer_kubernetes_image','2579'),(124255,3602,'_footer_kubernetes_image','field_60d931a3122c3'),(124256,3602,'trusted_by_logos_0_logo','2713'),(124257,3602,'_trusted_by_logos_0_logo','field_60d931a425c8c'),(124258,3602,'trusted_by_logos_1_logo','2711'),(124259,3602,'_trusted_by_logos_1_logo','field_60d931a425c8c'),(124260,3602,'trusted_by_logos_2_logo','2712'),(124261,3602,'_trusted_by_logos_2_logo','field_60d931a425c8c'),(124262,3602,'trusted_by_logos_3_logo','2716'),(124263,3602,'_trusted_by_logos_3_logo','field_60d931a425c8c'),(124264,3602,'trusted_by_logos_4_logo','2714'),(124265,3602,'_trusted_by_logos_4_logo','field_60d931a425c8c'),(124266,3602,'testimonials_0_phrase',' “Almost seems like magic”'),(124267,3602,'_testimonials_0_phrase','field_61897cf2a836b'),(124268,3602,'testimonials_1_text','A lot of technology vendors claim to have expertise with these technologies, but those boasts aren’t always a reality. You need to hire great engineers that work well with clients, and that, in a nutshell, is what Translucent Computing has brought to Canadian Black Book.”'),(124269,3602,'_testimonials_1_text','field_60d931a81ba7d'),(124270,3602,'testimonials_1_picture','2711'),(124271,3602,'_testimonials_1_picture','field_60d931a81bb40'),(124272,3602,'testimonials_1_name','Mike Compton'),(124273,3602,'_testimonials_1_name','field_60d931a81bbf2'),(124274,3602,'testimonials_1_role','CTO, Canadian Black Book | A division of the Hearst Business Media Corporation ($11.5 billion revenues USD - 2021)'),(124275,3602,'_testimonials_1_role','field_60d931a81bc35'),(124276,3602,'testimonials_1_phrase','“Fortunate to find a technology partner of their caliber” '),(124277,3602,'_testimonials_1_phrase','field_61897cf2a836b'),(124278,3602,'testimonials_2_text','“Translucent’s understanding of the cloud native DevOps space and expertise in Kubernetes, through to data-driven applications, has proven extremely valuable to Volentix’s growth of our multi-currency cross-blockchain solution.”'),(124279,3602,'_testimonials_2_text','field_60d931a81ba7d'),(124280,3602,'testimonials_2_picture','3597'),(124281,3602,'_testimonials_2_picture','field_60d931a81bb40'),(124282,3602,'testimonials_2_name','Rhys Parry'),(124283,3602,'_testimonials_2_name','field_60d931a81bbf2'),(124284,3602,'testimonials_2_role','Volentix CTO'),(124285,3602,'_testimonials_2_role','field_60d931a81bc35'),(124286,3602,'testimonials_2_phrase','“Fits the fintech and financial services space”'),(124287,3602,'_testimonials_2_phrase','field_61897cf2a836b'),(124288,3602,'testimonials_3_text','“Translucent Computing…has dedicated professionals that can provide economical solutions for web-based needs, for both the private and public sector. They have worked with us for some 5 years, and they have shown themselves to be both very professional and helpful in developing and supporting our database.”'),(124289,3602,'_testimonials_3_text','field_60d931a81ba7d'),(124290,3602,'testimonials_3_picture','2716'),(124291,3602,'_testimonials_3_picture','field_60d931a81bb40'),(124292,3602,'testimonials_3_name','James Loukides'),(124293,3602,'_testimonials_3_name','field_60d931a81bbf2'),(124294,3602,'testimonials_3_role','The Michael and Amira Dan Brain Tumor Bank Network Manager | University of Toronto'),(124295,3602,'_testimonials_3_role','field_60d931a81bc35'),(124296,3602,'testimonials_3_phrase','“Economical solutions…very professional'),(124297,3602,'_testimonials_3_phrase','field_61897cf2a836b'),(124298,3602,'testimonials_4_text','GoTo Loans (GTL) has been awarded by the Canadian Lenders Association as Auto Lending Platform of the Year category for the “Leaders in Lending 2020” awards.  Translucent has been our fintech, financial services technology partner from the inception of GTL’s journey.'),(124299,3602,'_testimonials_4_text','field_60d931a81ba7d'),(124300,3602,'testimonials_4_picture','3195'),(124301,3602,'_testimonials_4_picture','field_60d931a81bb40'),(124302,3602,'testimonials_4_name','Eric Kaplan'),(124303,3602,'_testimonials_4_name','field_60d931a81bbf2'),(124304,3602,'testimonials_4_role','GoToLoans.com (We have you covered)'),(124305,3602,'_testimonials_4_role','field_60d931a81bc35'),(124306,3602,'testimonials_4_phrase','“Award winning… Fintech, Financial technology partner”'),(124307,3602,'_testimonials_4_phrase','field_61897cf2a836b'),(124308,3602,'testimonials_5_text','“A strong foundation using AWS Cloud, Terraform for infrastructure deployment, Kubernetes for cluster monitoring and scaling, Docker for app containerization, and a strong dose of DevOps to ensure the pipeline was automated.”'),(124309,3602,'_testimonials_5_text','field_60d931a81ba7d'),(124310,3602,'testimonials_5_picture','2711'),(124311,3602,'_testimonials_5_picture','field_60d931a81bb40'),(124312,3602,'testimonials_5_name','Mike Compton'),(124313,3602,'_testimonials_5_name','field_60d931a81bbf2'),(124314,3602,'testimonials_5_role','CTO, Canadian Black Book | A division of the Hearst Business Media Corporation ($11.5 billion revenues USD - 2021)'),(124315,3602,'_testimonials_5_role','field_60d931a81bc35'),(124316,3602,'testimonials_5_phrase','“Redeveloping the core mobile and web-based products.”'),(124317,3602,'_testimonials_5_phrase','field_61897cf2a836b'),(124318,3602,'testimonials_6_text','“I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise, but also the technological resources that could assist SickKids as we deal with the current pandemic.”'),(124319,3602,'_testimonials_6_text','field_60d931a81ba7d'),(124320,3602,'testimonials_6_picture','2713'),(124321,3602,'_testimonials_6_picture','field_60d931a81bb40'),(124322,3602,'testimonials_6_name','Dr. Andrew James'),(124323,3602,'_testimonials_6_name','field_60d931a81bbf2'),(124324,3602,'testimonials_6_role','The Hospital for Sick Children | Associate Professor, Department of Pediatrics, University of Toronto'),(124325,3602,'_testimonials_6_role','field_60d931a81bc35'),(124326,3602,'testimonials_6_phrase','“Highly reliable and extremely valuable” '),(124327,3602,'_testimonials_6_phrase','field_61897cf2a836b'),(124328,3602,'testimonials_7_text','“Translucent is a strategic partner in the design and development of our technology platform. Their expertise, commitment and flexibility during the engagement helped us to build a solution that will improve patient scheduling for healthcare providers.”'),(124329,3602,'_testimonials_7_text','field_60d931a81ba7d'),(124330,3602,'testimonials_7_picture','3598'),(124331,3602,'_testimonials_7_picture','field_60d931a81bb40'),(124332,3602,'testimonials_7_name','Wayne Li'),(124333,3602,'_testimonials_7_name','field_60d931a81bbf2'),(124334,3602,'testimonials_7_role','CEO NextUp Care'),(124335,3602,'_testimonials_7_role','field_60d931a81bc35'),(124336,3602,'testimonials_7_phrase','“Strategic partner…for healthcare providers”'),(124337,3602,'_testimonials_7_phrase','field_61897cf2a836b'),(124338,3602,'testimonials_8_text','“Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security as it fits the fintech and financial services space has been invaluable.  I would use them again if I could.  In fact, I would use their team for everything if I could!\"'),(124339,3602,'_testimonials_8_text','field_60d931a81ba7d'),(124340,3602,'testimonials_8_picture','3597'),(124341,3602,'_testimonials_8_picture','field_60d931a81bb40'),(124342,3602,'testimonials_8_name','Rhys Parry'),(124343,3602,'_testimonials_8_name','field_60d931a81bbf2'),(124344,3602,'testimonials_8_role','Volentix CTO'),(124345,3602,'_testimonials_8_role','field_60d931a81bc35'),(124346,3602,'testimonials_8_phrase','“Use their team for everything”'),(124347,3602,'_testimonials_8_phrase','field_61897cf2a836b'),(124594,3603,'background','2613'),(124595,3603,'_background','field_6083613c01a24'),(124596,3603,'title','Your\r\n#1 Partner\r\nin Cloud\r\nNative\r\nDevOps'),(124597,3603,'_title','field_6083614f01a25'),(124598,3603,'items_0_item','Simplify your Cloud'),(124599,3603,'_items_0_item','field_608361a401a28'),(124600,3603,'items_1_item','Make your Cloud computing worry-free'),(124601,3603,'_items_1_item','field_608361a401a28'),(124602,3603,'items','2'),(124603,3603,'_items','field_6083618a01a27'),(124604,3603,'image','2599'),(124605,3603,'_image','field_6083616401a26'),(124606,3603,'trusted_by_logos','5'),(124607,3603,'_trusted_by_logos','field_60d931a311b0f'),(124608,3603,'steps_image','2543'),(124609,3603,'_steps_image','field_608361e101a2b'),(124610,3603,'steps_title','Our approach to Your Successful DevOps Implementation'),(124611,3603,'_steps_title','field_608361ee01a2c'),(124612,3603,'steps_text','Plan we partner with your people and objectives in mind\r\nMigrate what adds business value first\r\nManage your cloud native DevOps Journey with you\r\nAutomate saving on your resource cost and making you money\r\nOptimize continuously improve and develop for your future'),(124613,3603,'_steps_text','field_6083620201a2d'),(124614,3603,'people_background','2621'),(124615,3603,'_people_background','field_6083621801a2e'),(124616,3603,'people_title',' We Listen. We Learn. We Inform.'),(124617,3603,'_people_title','field_6083622601a2f'),(124618,3603,'people_text','Digital Transformation is not just about cloud native DevOps technology. It’s about…\r\nPeople, Business, Operations and Results. Oh and People! Did I say people?'),(124619,3603,'_people_text','field_6083623101a30'),(124620,3603,'kubernetes_partnership_title','Benefits of the Translucent DevOps Kubernetes Partnership\r\nSAVE TIME and SAVE MONEY'),(124621,3603,'_kubernetes_partnership_title','field_6083624901a31'),(124622,3603,'kubernetes_partnership_image_desktop','2907'),(124623,3603,'_kubernetes_partnership_image_desktop','field_6083626601a33'),(124624,3603,'kubernetes_partnership_images_mobile_0_image','2911'),(124625,3603,'_kubernetes_partnership_images_mobile_0_image','field_6083628a01a35'),(124626,3603,'kubernetes_partnership_images_mobile_1_image','2912'),(124627,3603,'_kubernetes_partnership_images_mobile_1_image','field_6083628a01a35'),(124628,3603,'kubernetes_partnership_images_mobile','2'),(124629,3603,'_kubernetes_partnership_images_mobile','field_6083627c01a34'),(124630,3603,'kubernetes_partnership_text','Reduce costs and improve operational efficiency through enhanced collaboration between your teams, increased platform and automation.'),(124631,3603,'_kubernetes_partnership_text','field_6083625901a32'),(124632,3603,'kubernetes_seal_title','Why choose Cloud Native Kubernetes Certified DevOps?'),(124633,3603,'_kubernetes_seal_title','field_608362a801a36'),(124634,3603,'kubernetes_seal_subtitle','71% of Fortune 100 companies use Kubernetes'),(124635,3603,'_kubernetes_seal_subtitle','field_608362c501a37'),(124636,3603,'kubernetes_seal_items_0_item','25%+ Faster to Market'),(124637,3603,'_kubernetes_seal_items_0_item','field_608362e601a39'),(124638,3603,'kubernetes_seal_items_1_item','Reliable and Secure'),(124639,3603,'_kubernetes_seal_items_1_item','field_608362e601a39'),(124640,3603,'kubernetes_seal_items_2_item','Privacy by Design'),(124641,3603,'_kubernetes_seal_items_2_item','field_608362e601a39'),(124642,3603,'kubernetes_seal_items_3_item','Automated Reporting for Your Entire Company'),(124643,3603,'_kubernetes_seal_items_3_item','field_608362e601a39'),(124644,3603,'kubernetes_seal_items_4_item','Kubernetes Connects You to all Major Clouds'),(124645,3603,'_kubernetes_seal_items_4_item','field_608362e601a39'),(124646,3603,'kubernetes_seal_items_5_item','35%+ Increase in Operational Efficiency'),(124647,3603,'_kubernetes_seal_items_5_item','field_608362e601a39'),(124648,3603,'kubernetes_seal_items_6_item','More Done with Less Resources'),(124649,3603,'_kubernetes_seal_items_6_item','field_608362e601a39'),(124650,3603,'kubernetes_seal_items','7'),(124651,3603,'_kubernetes_seal_items','field_608362db01a38'),(124652,3603,'kubernetes_seal_message','As a Certified Provider Translucent gets the Job Done Right!'),(124653,3603,'_kubernetes_seal_message','field_6083630501a3a'),(124654,3603,'kubernetes_seal_image','2600'),(124655,3603,'_kubernetes_seal_image','field_6083632101a3b'),(124656,3603,'black_background_phrase','As Your Cloud Native Kubernetes DevOps Partner, We are with You All the Way!'),(124657,3603,'_black_background_phrase','field_6083633201a3c'),(124658,3603,'testimonials_0_text','“Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automotive, loan, mechanic, and customer workflow data making the complex almost seems like magic.” '),(124659,3603,'_testimonials_0_text','field_60d931a81ba7d'),(124660,3603,'testimonials_0_picture','3195'),(124661,3603,'_testimonials_0_picture','field_60d931a81bb40'),(124662,3603,'testimonials_0_name','Eric Kaplan'),(124663,3603,'_testimonials_0_name','field_60d931a81bbf2'),(124664,3603,'testimonials_0_role','GoToLoans.com (We have you covered)'),(124665,3603,'_testimonials_0_role','field_60d931a81bc35'),(124666,3603,'testimonials','9'),(124667,3603,'_testimonials','field_60d931a312092'),(124668,3603,'ceo_picture','2904'),(124669,3603,'_ceo_picture','field_608363a901a42'),(124670,3603,'ceo_picture_mobile','2905'),(124671,3603,'_ceo_picture_mobile','field_608363b701a43'),(124672,3603,'ceo_name','Robert Golabeck'),(124673,3603,'_ceo_name','field_608363cd01a44'),(124674,3603,'ceo_email','results@translucentcomputing.com'),(124675,3603,'_ceo_email','field_60d931a3121f6'),(124676,3603,'ceo_phone','1-888-828-0144 x 105'),(124677,3603,'_ceo_phone','field_60d931a31223d'),(124678,3603,'ceo_address','1 Yonge Street, Suite 1801\r\nToronto, Ontario\r\nM5E 1W7'),(124679,3603,'_ceo_address','field_60d931a312283'),(124680,3603,'footer_kubernetes_image','2579'),(124681,3603,'_footer_kubernetes_image','field_60d931a3122c3'),(124682,3603,'trusted_by_logos_0_logo','2713'),(124683,3603,'_trusted_by_logos_0_logo','field_60d931a425c8c'),(124684,3603,'trusted_by_logos_1_logo','2711'),(124685,3603,'_trusted_by_logos_1_logo','field_60d931a425c8c'),(124686,3603,'trusted_by_logos_2_logo','2712'),(124687,3603,'_trusted_by_logos_2_logo','field_60d931a425c8c'),(124688,3603,'trusted_by_logos_3_logo','2716'),(124689,3603,'_trusted_by_logos_3_logo','field_60d931a425c8c'),(124690,3603,'trusted_by_logos_4_logo','2714'),(124691,3603,'_trusted_by_logos_4_logo','field_60d931a425c8c'),(124692,3603,'testimonials_0_phrase',' “Almost seems like magic”'),(124693,3603,'_testimonials_0_phrase','field_61897cf2a836b'),(124694,3603,'testimonials_1_text','A lot of technology vendors claim to have expertise with these technologies, but those boasts aren’t always a reality. You need to hire great engineers that work well with clients, and that, in a nutshell, is what Translucent Computing has brought to Canadian Black Book.”'),(124695,3603,'_testimonials_1_text','field_60d931a81ba7d'),(124696,3603,'testimonials_1_picture','2711'),(124697,3603,'_testimonials_1_picture','field_60d931a81bb40'),(124698,3603,'testimonials_1_name','Mike Compton'),(124699,3603,'_testimonials_1_name','field_60d931a81bbf2'),(124700,3603,'testimonials_1_role','CTO, Canadian Black Book | A division of the Hearst Business Media Corporation ($11.5 billion revenues USD - 2021)'),(124701,3603,'_testimonials_1_role','field_60d931a81bc35'),(124702,3603,'testimonials_1_phrase','“Fortunate to find a technology partner of their caliber” '),(124703,3603,'_testimonials_1_phrase','field_61897cf2a836b'),(124704,3603,'testimonials_2_text','“Translucent’s understanding of the cloud native DevOps space and expertise in Kubernetes, through to data-driven applications, has proven extremely valuable to Volentix’s growth of our multi-currency cross-blockchain solution.”'),(124705,3603,'_testimonials_2_text','field_60d931a81ba7d'),(124706,3603,'testimonials_2_picture','3597'),(124707,3603,'_testimonials_2_picture','field_60d931a81bb40'),(124708,3603,'testimonials_2_name','Rhys Parry'),(124709,3603,'_testimonials_2_name','field_60d931a81bbf2'),(124710,3603,'testimonials_2_role','Volentix CTO'),(124711,3603,'_testimonials_2_role','field_60d931a81bc35'),(124712,3603,'testimonials_2_phrase','“Fits the fintech and financial services space”'),(124713,3603,'_testimonials_2_phrase','field_61897cf2a836b'),(124714,3603,'testimonials_3_text','“Translucent Computing…has dedicated professionals that can provide economical solutions for web-based needs, for both the private and public sector. They have worked with us for some 5 years, and they have shown themselves to be both very professional and helpful in developing and supporting our database.”'),(124715,3603,'_testimonials_3_text','field_60d931a81ba7d'),(124716,3603,'testimonials_3_picture','2716'),(124717,3603,'_testimonials_3_picture','field_60d931a81bb40'),(124718,3603,'testimonials_3_name','James Loukides'),(124719,3603,'_testimonials_3_name','field_60d931a81bbf2'),(124720,3603,'testimonials_3_role','The Michael and Amira Dan Brain Tumor Bank Network Manager | University of Toronto'),(124721,3603,'_testimonials_3_role','field_60d931a81bc35'),(124722,3603,'testimonials_3_phrase','“Economical solutions…very professional'),(124723,3603,'_testimonials_3_phrase','field_61897cf2a836b'),(124724,3603,'testimonials_4_text','GoTo Loans (GTL) has been awarded by the Canadian Lenders Association as Auto Lending Platform of the Year category for the “Leaders in Lending 2020” awards.  Translucent has been our fintech, financial services technology partner from the inception of GTL’s journey.'),(124725,3603,'_testimonials_4_text','field_60d931a81ba7d'),(124726,3603,'testimonials_4_picture','3195'),(124727,3603,'_testimonials_4_picture','field_60d931a81bb40'),(124728,3603,'testimonials_4_name','Eric Kaplan'),(124729,3603,'_testimonials_4_name','field_60d931a81bbf2'),(124730,3603,'testimonials_4_role','GoToLoans.com (We have you covered)'),(124731,3603,'_testimonials_4_role','field_60d931a81bc35'),(124732,3603,'testimonials_4_phrase','“Award winning… Fintech, Financial technology partner”'),(124733,3603,'_testimonials_4_phrase','field_61897cf2a836b'),(124734,3603,'testimonials_5_text','“A strong foundation using AWS Cloud, Terraform for infrastructure deployment, Kubernetes for cluster monitoring and scaling, Docker for app containerization, and a strong dose of DevOps to ensure the pipeline was automated.”'),(124735,3603,'_testimonials_5_text','field_60d931a81ba7d'),(124736,3603,'testimonials_5_picture','2711'),(124737,3603,'_testimonials_5_picture','field_60d931a81bb40'),(124738,3603,'testimonials_5_name','Mike Compton'),(124739,3603,'_testimonials_5_name','field_60d931a81bbf2'),(124740,3603,'testimonials_5_role','CTO, Canadian Black Book | A division of the Hearst Business Media Corporation ($11.5 billion revenues USD - 2021)'),(124741,3603,'_testimonials_5_role','field_60d931a81bc35'),(124742,3603,'testimonials_5_phrase','“Redeveloping the core mobile and web-based products.”'),(124743,3603,'_testimonials_5_phrase','field_61897cf2a836b'),(124744,3603,'testimonials_6_text','“I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise, but also the technological resources that could assist SickKids as we deal with the current pandemic.”'),(124745,3603,'_testimonials_6_text','field_60d931a81ba7d'),(124746,3603,'testimonials_6_picture','801'),(124747,3603,'_testimonials_6_picture','field_60d931a81bb40'),(124748,3603,'testimonials_6_name','Dr. Andrew James'),(124749,3603,'_testimonials_6_name','field_60d931a81bbf2'),(124750,3603,'testimonials_6_role','The Hospital for Sick Children | Associate Professor, Department of Pediatrics, University of Toronto'),(124751,3603,'_testimonials_6_role','field_60d931a81bc35'),(124752,3603,'testimonials_6_phrase','“Highly reliable and extremely valuable” '),(124753,3603,'_testimonials_6_phrase','field_61897cf2a836b'),(124754,3603,'testimonials_7_text','“Translucent is a strategic partner in the design and development of our technology platform. Their expertise, commitment and flexibility during the engagement helped us to build a solution that will improve patient scheduling for healthcare providers.”'),(124755,3603,'_testimonials_7_text','field_60d931a81ba7d'),(124756,3603,'testimonials_7_picture','3598'),(124757,3603,'_testimonials_7_picture','field_60d931a81bb40'),(124758,3603,'testimonials_7_name','Wayne Li'),(124759,3603,'_testimonials_7_name','field_60d931a81bbf2'),(124760,3603,'testimonials_7_role','CEO NextUp Care'),(124761,3603,'_testimonials_7_role','field_60d931a81bc35'),(124762,3603,'testimonials_7_phrase','“Strategic partner…for healthcare providers”'),(124763,3603,'_testimonials_7_phrase','field_61897cf2a836b'),(124764,3603,'testimonials_8_text','“Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security as it fits the fintech and financial services space has been invaluable.  I would use them again if I could.  In fact, I would use their team for everything if I could!\"'),(124765,3603,'_testimonials_8_text','field_60d931a81ba7d'),(124766,3603,'testimonials_8_picture','3597'),(124767,3603,'_testimonials_8_picture','field_60d931a81bb40'),(124768,3603,'testimonials_8_name','Rhys Parry'),(124769,3603,'_testimonials_8_name','field_60d931a81bbf2'),(124770,3603,'testimonials_8_role','Volentix CTO'),(124771,3603,'_testimonials_8_role','field_60d931a81bc35'),(124772,3603,'testimonials_8_phrase','“Use their team for everything”'),(124773,3603,'_testimonials_8_phrase','field_61897cf2a836b'),(124890,3606,'top-image','654'),(124891,3606,'_top-image','field_5c47486901570'),(124892,3606,'top-title','Data-Driven
Digital Transformation'),(124893,3606,'_top-title','field_5c47489001571'),(124894,3606,'top-text','We Partner with companies to build business value through software innovation.

Every company is now a technology company. How competitive are you in your industry? Let us help you.'),(124895,3606,'_top-text','field_5c47489e01572'),(124896,3606,'top-items_0_item','Cloud-Native'),(124897,3606,'_top-items_0_item','field_5c4748d001574'),(124898,3606,'top-items_1_item','Data Lake'),(124899,3606,'_top-items_1_item','field_5c4748d001574'),(124900,3606,'top-items_2_item','Kubernetes'),(124901,3606,'_top-items_2_item','field_5c4748d001574'),(124902,3606,'top-items_3_item','Scalable'),(124903,3606,'_top-items_3_item','field_5c4748d001574'),(124904,3606,'top-items_4_item','Secure'),(124905,3606,'_top-items_4_item','field_5c4748d001574'),(124906,3606,'top-items','5'),(124907,3606,'_top-items','field_5c4748c401573'),(124908,3606,'top-button','44'),(124909,3606,'_top-button','field_5c4748e601575'),(124910,3606,'services-presentation','Build cloud-native applications with Translucent\r\nCreate modern applications using state-of-the-art technology with TEKStack AI'),(124911,3606,'_services-presentation','field_5c474986bee5b'),(124912,3606,'call-title','Start a Conversation'),(124913,3606,'_call-title','field_5c4749bcbee5c'),(124914,3606,'call-text',''),(124915,3606,'_call-text','field_5c4749d7bee5d'),(124916,3606,'case-title','The Hospital for Sick Children'),(124917,3606,'_case-title','field_5c4749f4bee5e'),(124918,3606,'case-text',''),(124919,3606,'_case-text','field_5c474a4abee5f'),(124920,3606,'case-image','772'),(124921,3606,'_case-image','field_5c474a6dbee61'),(124922,3606,'case-link','38'),(124923,3606,'_case-link','field_5c476a3dac685'),(124924,3606,'case_study_0_title',''),(124925,3606,'_case_study_0_title','field_5c82d24ccbac6'),(124926,3606,'case_study_0_text',''),(124927,3606,'_case_study_0_text','field_5c82d258cbac7'),(124928,3606,'case_study_0_image',''),(124929,3606,'_case_study_0_image','field_5c82d266cbac8'),(124930,3606,'case_study_0_link',''),(124931,3606,'_case_study_0_link','field_5c82d275cbac9'),(124932,3606,'case_study_1_title',''),(124933,3606,'_case_study_1_title','field_5c82d24ccbac6'),(124934,3606,'case_study_1_text',''),(124935,3606,'_case_study_1_text','field_5c82d258cbac7'),(124936,3606,'case_study_1_image',''),(124937,3606,'_case_study_1_image','field_5c82d266cbac8'),(124938,3606,'case_study_1_link',''),(124939,3606,'_case_study_1_link','field_5c82d275cbac9'),(124940,3606,'case_study',''),(124941,3606,'_case_study','field_6059d436ba0ce'),(124942,3606,'banners_0_banner_title','We Listen.'),(124943,3606,'_banners_0_banner_title','field_6059d268ba0bb'),(124944,3606,'banners_0_banner_subheading','Your needs matter to us'),(124945,3606,'_banners_0_banner_subheading','field_6059d289ba0bc'),(124946,3606,'banners_0_banner_bold','With open communication.
Your goals become our goals.'),(124947,3606,'_banners_0_banner_bold','field_6059d293ba0bd'),(124948,3606,'banners_0_banner_text','This allows us to transform your company\r\nLet us help you.'),(124949,3606,'_banners_0_banner_text','field_6059d2a2ba0be'),(124950,3606,'banners_0_video_background','1'),(124951,3606,'_banners_0_video_background','field_6059d2b3ba0bf'),(124952,3606,'banners_0_video_link','https://translucentcomputing.com/wp-content/uploads/2021/05/TC_BANNER_2.0-HEX121d3d.webm'),(124953,3606,'_banners_0_video_link','field_6059d2ccba0c0'),(124954,3606,'banners_0_button_text','Book a consultation '),(124955,3606,'_banners_0_button_text','field_6059d309ba0c2'),(124956,3606,'banners_0_button_link','#'),(124957,3606,'_banners_0_button_link','field_6059d314ba0c3'),(124958,3606,'banners','4'),(124959,3606,'_banners','field_6059d073ba0ba'),(124960,3606,'blog_section_title','Build cloud-native\r\ndata-driven applications with Translucent'),(124961,3606,'_blog_section_title','field_6059d32dba0c4'),(124962,3606,'inform_and_learn','We work with you, informing and educating you about what it takes to be digitally competitive in the current market. We learn your business and business needs.'),(124963,3606,'_inform_and_learn','field_6059d34dba0c5'),(124964,3606,'inception_and_discovery','During the discovery phase we uncover all business processes and requirements and understand your current state. During the inception phase we conceive and plan your solution.'),(124965,3606,'_inception_and_discovery','field_6059d361ba0c6'),(124966,3606,'digital_transformation','We implement your digital strategy with ongoing support, leveraging proven development methodologies.'),(124967,3606,'_digital_transformation','field_6059d375ba0c7'),(124968,3606,'services_microservices','Building scalable, reliable and secure ecosystems for your business!'),(124969,3606,'_services_microservices','field_6059d397ba0c8'),(124970,3606,'services_microservices_image','2434'),(124971,3606,'_services_microservices_image','field_6059d3b9ba0c9'),(124972,3606,'services_machine','Insights to improve quality of life, provide clarity in decision making and increase profits.'),(124973,3606,'_services_machine','field_6059d3ccba0ca'),(124974,3606,'services_machine_image','2435'),(124975,3606,'_services_machine_image','field_6059d3e2ba0cb'),(124976,3606,'services_devops','Keeping communication between your business operations, your technology, and the online world, in sync.'),(124977,3606,'_services_devops','field_6059d402ba0cc'),(124978,3606,'services_devops_image','2433'),(124979,3606,'_services_devops_image','field_6059d412ba0cd'),(124980,3606,'case_study_title','Sick Kids Hospital'),(124981,3606,'_case_study_title','field_6059d43fba0cf'),(124982,3606,'case_study_description','At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum'),(124983,3606,'_case_study_description','field_6059d44aba0d0'),(124984,3606,'case_study_image','2215'),(124985,3606,'_case_study_image','field_6059d459ba0d1'),(124986,3606,'case_study_link','#'),(124987,3606,'_case_study_link','field_6059d471ba0d2'),(124988,3606,'clients','10'),(124989,3606,'_clients','field_6059d489ba0d3'),(124990,3606,'case_study_2_title',''),(124991,3606,'_case_study_2_title','field_5c82d24ccbac6'),(124992,3606,'case_study_2_text',''),(124993,3606,'_case_study_2_text','field_5c82d258cbac7'),(124994,3606,'case_study_2_image',''),(124995,3606,'_case_study_2_image','field_5c82d266cbac8'),(124996,3606,'case_study_2_link',''),(124997,3606,'_case_study_2_link','field_5c82d275cbac9'),(124998,3606,'case_study_3_title',''),(124999,3606,'_case_study_3_title','field_5c82d24ccbac6'),(125000,3606,'case_study_3_text',''),(125001,3606,'_case_study_3_text','field_5c82d258cbac7'),(125002,3606,'case_study_3_image',''),(125003,3606,'_case_study_3_image','field_5c82d266cbac8'),(125004,3606,'case_study_3_link',''),(125005,3606,'_case_study_3_link','field_5c82d275cbac9'),(125006,3606,'clients_0_image','793'),(125007,3606,'_clients_0_image','field_6059d493ba0d4'),(125008,3606,'clients_1_image','794'),(125009,3606,'_clients_1_image','field_6059d493ba0d4'),(125010,3606,'clients_2_image','623'),(125011,3606,'_clients_2_image','field_6059d493ba0d4'),(125012,3606,'clients_3_image','796'),(125013,3606,'_clients_3_image','field_6059d493ba0d4'),(125014,3606,'clients_4_image','797'),(125015,3606,'_clients_4_image','field_6059d493ba0d4'),(125016,3606,'clients_5_image','798'),(125017,3606,'_clients_5_image','field_6059d493ba0d4'),(125018,3606,'clients_6_image','799'),(125019,3606,'_clients_6_image','field_6059d493ba0d4'),(125020,3606,'clients_7_image','800'),(125021,3606,'_clients_7_image','field_6059d493ba0d4'),(125022,3606,'clients_8_image','801'),(125023,3606,'_clients_8_image','field_6059d493ba0d4'),(125024,3606,'clients_9_image','802'),(125025,3606,'_clients_9_image','field_6059d493ba0d4'),(125026,3606,'case_title','Sick Kids Hospital'),(125027,3606,'_case_title','field_6059e3a6eec00'),(125028,3606,'case_description','At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum'),(125029,3606,'_case_description','field_6059e3bdeec01'),(125030,3606,'case_image','2215'),(125031,3606,'_case_image','field_6059e3d7eec02'),(125032,3606,'case_link','#'),(125033,3606,'_case_link','field_6059e3e6eec03'),(125034,3606,'banners_1_banner_title','We Learn.'),(125035,3606,'_banners_1_banner_title','field_6059d268ba0bb'),(125036,3606,'banners_1_banner_subheading','Focused Action | Targeted results'),(125037,3606,'_banners_1_banner_subheading','field_6059d289ba0bc'),(125038,3606,'banners_1_banner_bold','Learning is is our DNA.
Knowledge sharing is our passion.'),(125039,3606,'_banners_1_banner_bold','field_6059d293ba0bd'),(125040,3606,'banners_1_banner_text','We share what we know, so you\'ll know what we learn.'),(125041,3606,'_banners_1_banner_text','field_6059d2a2ba0be'),(125042,3606,'banners_1_video_background','0'),(125043,3606,'_banners_1_video_background','field_6059d2b3ba0bf'),(125044,3606,'banners_1_background_image','3126'),(125045,3606,'_banners_1_background_image','field_6059d2e1ba0c1'),(125046,3606,'banners_1_button_text','Book a consultation'),(125047,3606,'_banners_1_button_text','field_6059d309ba0c2'),(125048,3606,'banners_1_button_link','#contact'),(125049,3606,'_banners_1_button_link','field_6059d314ba0c3'),(125050,3606,'banners_2_banner_title','We Inform.'),(125051,3606,'_banners_2_banner_title','field_6059d268ba0bb'),(125052,3606,'banners_2_banner_subheading','Data Driven | Digital Transformation'),(125053,3606,'_banners_2_banner_subheading','field_6059d289ba0bc'),(125054,3606,'banners_2_banner_bold','The cloud native partnership.
Your business depends on.'),(125055,3606,'_banners_2_banner_bold','field_6059d293ba0bd'),(125056,3606,'banners_2_banner_text','Every company is now a technology company.\r\nHow can we help you?'),(125057,3606,'_banners_2_banner_text','field_6059d2a2ba0be'),(125058,3606,'banners_2_video_background','0'),(125059,3606,'_banners_2_video_background','field_6059d2b3ba0bf'),(125060,3606,'banners_2_background_image','3125'),(125061,3606,'_banners_2_background_image','field_6059d2e1ba0c1'),(125062,3606,'banners_2_button_text','Book a consultation'),(125063,3606,'_banners_2_button_text','field_6059d309ba0c2'),(125064,3606,'banners_2_button_link','#contact'),(125065,3606,'_banners_2_button_link','field_6059d314ba0c3'),(125066,3606,'banners_3_banner_title','We Support.'),(125067,3606,'_banners_3_banner_title','field_6059d268ba0bb'),(125068,3606,'banners_3_banner_subheading','24 hour support | 7 days a week'),(125069,3606,'_banners_3_banner_subheading','field_6059d289ba0bc'),(125070,3606,'banners_3_banner_bold','We support our people so they can support you, anytime and anywhere.'),(125071,3606,'_banners_3_banner_bold','field_6059d293ba0bd'),(125072,3606,'banners_3_banner_text','\"I would use them again if I could. In fact,\r\nI would use their team for everything if I could!\"\r\nThiago Telles - Cerberus CEO'),(125073,3606,'_banners_3_banner_text','field_6059d2a2ba0be'),(125074,3606,'banners_3_video_background','0'),(125075,3606,'_banners_3_video_background','field_6059d2b3ba0bf'),(125076,3606,'banners_3_background_image','3124'),(125077,3606,'_banners_3_background_image','field_6059d2e1ba0c1'),(125078,3606,'banners_3_button_text','Book a consultation'),(125079,3606,'_banners_3_button_text','field_6059d309ba0c2'),(125080,3606,'banners_3_button_link','#contact'),(125081,3606,'_banners_3_button_link','field_6059d314ba0c3'),(125082,3606,'banners_0_background_image','3605'),(125083,3606,'_banners_0_background_image','field_6059d2e1ba0c1'),(125150,3608,'_edit_lock','1653084784:4'),(125151,3609,'_wp_attached_file','2021/11/unnamed-3.png'),(125152,3609,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:179;s:4:\"file\";s:21:\"2021/11/unnamed-3.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"unnamed-3-300x105.png\";s:5:\"width\";i:300;s:6:\"height\";i:105;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"unnamed-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:21:\"unnamed-3-500x179.png\";s:5:\"width\";i:500;s:6:\"height\";i:179;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:{}}}'),(125153,3609,'_imagify_optimization_level','0'),(125154,3609,'_imagify_status','success'),(125155,3609,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:85172;s:14:\"optimized_size\";i:81946;s:7:\"percent\";d:3.79;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:90023;s:14:\"optimized_size\";i:38580;s:7:\"percent\";d:57.14;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26510;s:14:\"optimized_size\";i:11512;s:7:\"percent\";d:56.57;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36472;s:14:\"optimized_size\";i:15412;s:7:\"percent\";d:57.74;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:85172;s:14:\"optimized_size\";i:39398;s:7:\"percent\";d:53.74;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36472;s:14:\"optimized_size\";i:31246;s:7:\"percent\";d:14.33;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26510;s:14:\"optimized_size\";i:22747;s:7:\"percent\";d:14.19;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:90023;s:14:\"optimized_size\";i:77468;s:7:\"percent\";d:13.95;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:476354;s:14:\"optimized_size\";i:318309;s:7:\"percent\";d:33.18;}}'),(125156,3610,'_wp_attached_file','2021/11/unnamed-4.png'),(125157,3610,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:250;s:4:\"file\";s:21:\"2021/11/unnamed-4.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"unnamed-4-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"unnamed-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:21:\"unnamed-4-500x250.png\";s:5:\"width\";i:500;s:6:\"height\";i:250;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:{}}}'),(125158,3610,'_imagify_optimization_level','0'),(125159,3610,'_imagify_status','success'),(125160,3610,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52959;s:14:\"optimized_size\";i:36616;s:7:\"percent\";d:30.86;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52833;s:14:\"optimized_size\";i:51672;s:7:\"percent\";d:2.2;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13381;s:14:\"optimized_size\";i:10090;s:7:\"percent\";d:24.59;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36811;s:14:\"optimized_size\";i:21944;s:7:\"percent\";d:40.39;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52959;s:14:\"optimized_size\";i:54462;s:7:\"percent\";d:-2.84;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36811;s:14:\"optimized_size\";i:26597;s:7:\"percent\";d:27.75;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13381;s:14:\"optimized_size\";i:9355;s:7:\"percent\";d:30.09;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52833;s:14:\"optimized_size\";i:36130;s:7:\"percent\";d:31.61;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:311968;s:14:\"optimized_size\";i:246866;s:7:\"percent\";d:20.87;}}'),(125161,3608,'_edit_last','4'),(125162,3608,'hefo_before','0'),(125163,3608,'hefo_after','0'),(125164,3608,'ao_post_optimize','a:5:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";}'),(125165,3608,'_yoast_wpseo_content_score','30'),(125166,3608,'_yoast_wpseo_focuskeywords','[]'),(125167,3608,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(125168,3608,'_yoast_wpseo_estimated-reading-time-minutes','4'),(125169,3612,'_wp_attached_file','2021/11/unnamed-5.png'),(125170,3612,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:780;s:4:\"file\";s:21:\"2021/11/unnamed-5.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"unnamed-5-300x146.png\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"unnamed-5-1024x499.png\";s:5:\"width\";i:1024;s:6:\"height\";i:499;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"unnamed-5-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:21:\"unnamed-5-768x374.png\";s:5:\"width\";i:768;s:6:\"height\";i:374;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"unnamed-5-1536x749.png\";s:5:\"width\";i:1536;s:6:\"height\";i:749;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:21:\"unnamed-5-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(125171,3612,'_imagify_optimization_level','0'),(125172,3612,'_imagify_status','success'),(125173,3612,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:238533;s:14:\"optimized_size\";i:178397;s:7:\"percent\";d:25.21;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:106772;s:14:\"optimized_size\";i:62008;s:7:\"percent\";d:41.92;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:388815;s:14:\"optimized_size\";i:232564;s:7:\"percent\";d:40.19;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:131516;s:14:\"optimized_size\";i:100346;s:7:\"percent\";d:23.7;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13148;s:14:\"optimized_size\";i:11446;s:7:\"percent\";d:12.94;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:178095;s:14:\"optimized_size\";i:145846;s:7:\"percent\";d:18.11;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26923;s:14:\"optimized_size\";i:23914;s:7:\"percent\";d:11.18;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:238533;s:14:\"optimized_size\";i:233736;s:7:\"percent\";d:2.01;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26923;s:14:\"optimized_size\";i:17439;s:7:\"percent\";d:35.23;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:178095;s:14:\"optimized_size\";i:131304;s:7:\"percent\";d:26.27;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13148;s:14:\"optimized_size\";i:8358;s:7:\"percent\";d:36.43;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:131516;s:14:\"optimized_size\";i:96050;s:7:\"percent\";d:26.97;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:388815;s:14:\"optimized_size\";i:287837;s:7:\"percent\";d:25.97;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:106772;s:14:\"optimized_size\";i:78803;s:7:\"percent\";d:26.2;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2167604;s:14:\"optimized_size\";i:1608048;s:7:\"percent\";d:25.81;}}'),(125174,3614,'_wp_attached_file','2021/11/unnamed-3-1.png'),(125175,3614,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:559;s:4:\"file\";s:23:\"2021/11/unnamed-3-1.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"unnamed-3-1-300x105.png\";s:5:\"width\";i:300;s:6:\"height\";i:105;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"unnamed-3-1-1024x358.png\";s:5:\"width\";i:1024;s:6:\"height\";i:358;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"unnamed-3-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:23:\"unnamed-3-1-768x268.png\";s:5:\"width\";i:768;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"unnamed-3-1-1536x537.png\";s:5:\"width\";i:1536;s:6:\"height\";i:537;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:23:\"unnamed-3-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(125176,3614,'_imagify_optimization_level','0'),(125177,3614,'_imagify_status','success'),(125178,3614,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:474119;s:14:\"optimized_size\";i:447315;s:7:\"percent\";d:5.65;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:224241;s:14:\"optimized_size\";i:48374;s:7:\"percent\";d:78.43;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:679493;s:14:\"optimized_size\";i:144308;s:7:\"percent\";d:78.76;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:198869;s:14:\"optimized_size\";i:62460;s:7:\"percent\";d:68.59;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25608;s:14:\"optimized_size\";i:11776;s:7:\"percent\";d:54.01;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:323363;s:14:\"optimized_size\";i:90224;s:7:\"percent\";d:72.1;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33971;s:14:\"optimized_size\";i:15840;s:7:\"percent\";d:53.37;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:474119;s:14:\"optimized_size\";i:150022;s:7:\"percent\";d:68.36;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33971;s:14:\"optimized_size\";i:29212;s:7:\"percent\";d:14.01;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:323363;s:14:\"optimized_size\";i:275243;s:7:\"percent\";d:14.88;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25608;s:14:\"optimized_size\";i:22256;s:7:\"percent\";d:13.09;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:198869;s:14:\"optimized_size\";i:168791;s:7:\"percent\";d:15.12;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:679493;s:14:\"optimized_size\";i:576133;s:7:\"percent\";d:15.21;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:224241;s:14:\"optimized_size\";i:188341;s:7:\"percent\";d:16.01;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3919328;s:14:\"optimized_size\";i:2230295;s:7:\"percent\";d:43.09;}}'),(125179,3615,'_wp_attached_file','2021/11/Screenshot-2021-11-19-at-12.02.50.png'),(125180,3615,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2489;s:6:\"height\";i:821;s:4:\"file\";s:45:\"2021/11/Screenshot-2021-11-19-at-12.02.50.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Screenshot-2021-11-19-at-12.02.50-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-11-19-at-12.02.50-1024x338.png\";s:5:\"width\";i:1024;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-11-19-at-12.02.50-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:45:\"Screenshot-2021-11-19-at-12.02.50-768x253.png\";s:5:\"width\";i:768;s:6:\"height\";i:253;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-11-19-at-12.02.50-1536x507.png\";s:5:\"width\";i:1536;s:6:\"height\";i:507;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-11-19-at-12.02.50-2048x676.png\";s:5:\"width\";i:2048;s:6:\"height\";i:676;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-11-19-at-12.02.50-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(125181,3615,'_imagify_optimization_level','0'),(125182,3615,'_imagify_status','success'),(125183,3615,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:120409;s:14:\"optimized_size\";i:75334;s:7:\"percent\";d:37.43;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:113363;s:14:\"optimized_size\";i:14916;s:7:\"percent\";d:86.84;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:498884;s:14:\"optimized_size\";i:61708;s:7:\"percent\";d:87.63;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:346046;s:14:\"optimized_size\";i:51556;s:7:\"percent\";d:85.1;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:82985;s:14:\"optimized_size\";i:19572;s:7:\"percent\";d:76.42;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10096;s:14:\"optimized_size\";i:3384;s:7:\"percent\";d:66.48;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:134024;s:14:\"optimized_size\";i:30502;s:7:\"percent\";d:77.24;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12556;s:14:\"optimized_size\";i:6406;s:7:\"percent\";d:48.98;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:120409;s:14:\"optimized_size\";i:53082;s:7:\"percent\";d:55.92;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12556;s:14:\"optimized_size\";i:8740;s:7:\"percent\";d:30.39;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:134024;s:14:\"optimized_size\";i:85309;s:7:\"percent\";d:36.35;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10096;s:14:\"optimized_size\";i:6937;s:7:\"percent\";d:31.29;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:82985;s:14:\"optimized_size\";i:55931;s:7:\"percent\";d:32.6;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:346046;s:14:\"optimized_size\";i:222170;s:7:\"percent\";d:35.8;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:498884;s:14:\"optimized_size\";i:314009;s:7:\"percent\";d:37.06;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:113363;s:14:\"optimized_size\";i:70603;s:7:\"percent\";d:37.72;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2636726;s:14:\"optimized_size\";i:1080159;s:7:\"percent\";d:59.03;}}'),(125184,3616,'_wp_attached_file','2021/11/directd-acyclic-graph.png'),(125185,3616,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:440;s:6:\"height\";i:604;s:4:\"file\";s:33:\"2021/11/directd-acyclic-graph.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"directd-acyclic-graph-219x300.png\";s:5:\"width\";i:219;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"directd-acyclic-graph-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:33:\"directd-acyclic-graph-440x500.png\";s:5:\"width\";i:440;s:6:\"height\";i:500;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:{}}}'),(125186,3616,'_imagify_optimization_level','0'),(125187,3616,'_imagify_status','success'),(125188,3616,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17222;s:14:\"optimized_size\";i:16006;s:7:\"percent\";d:7.06;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37795;s:14:\"optimized_size\";i:34702;s:7:\"percent\";d:8.18;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13734;s:14:\"optimized_size\";i:9022;s:7:\"percent\";d:34.31;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35820;s:14:\"optimized_size\";i:17046;s:7:\"percent\";d:52.41;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17222;s:14:\"optimized_size\";i:39022;s:7:\"percent\";d:-126.58;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35820;s:14:\"optimized_size\";i:13888;s:7:\"percent\";d:61.23;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13734;s:14:\"optimized_size\";i:5204;s:7:\"percent\";d:62.11;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37795;s:14:\"optimized_size\";i:14087;s:7:\"percent\";d:62.73;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:209142;s:14:\"optimized_size\";i:148977;s:7:\"percent\";d:28.77;}}'),(125189,3620,'_wp_attached_file','2021/11/workflow-engine-data-pipeline.png'),(125190,3620,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:41:\"2021/11/workflow-engine-data-pipeline.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"workflow-engine-data-pipeline-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"workflow-engine-data-pipeline-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"workflow-engine-data-pipeline-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:41:\"workflow-engine-data-pipeline-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:41:\"workflow-engine-data-pipeline-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(125191,3620,'_imagify_optimization_level','0'),(125192,3620,'_imagify_status','success'),(125193,3620,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:382852;s:14:\"optimized_size\";i:333414;s:7:\"percent\";d:12.91;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:292327;s:14:\"optimized_size\";i:82036;s:7:\"percent\";d:71.94;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:289654;s:14:\"optimized_size\";i:109740;s:7:\"percent\";d:62.11;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31489;s:14:\"optimized_size\";i:11130;s:7:\"percent\";d:64.65;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:507462;s:14:\"optimized_size\";i:167566;s:7:\"percent\";d:66.98;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:48103;s:14:\"optimized_size\";i:23502;s:7:\"percent\";d:51.14;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:382852;s:14:\"optimized_size\";i:225688;s:7:\"percent\";d:41.05;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:48103;s:14:\"optimized_size\";i:41782;s:7:\"percent\";d:13.14;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:507462;s:14:\"optimized_size\";i:428924;s:7:\"percent\";d:15.48;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31489;s:14:\"optimized_size\";i:27277;s:7:\"percent\";d:13.38;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:289654;s:14:\"optimized_size\";i:248382;s:7:\"percent\";d:14.25;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:292327;s:14:\"optimized_size\";i:245402;s:7:\"percent\";d:16.05;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3103774;s:14:\"optimized_size\";i:1944843;s:7:\"percent\";d:37.34;}}'),(125194,3620,'_wp_attachment_image_alt','Data Pipeline'),(125195,3608,'_thumbnail_id','3620'),(125313,3608,'_yoast_wpseo_primary_category','1027'),(125436,3045,'_pinterest_shares','0'),(125437,3045,'_total_shares','0'),(125438,3045,'swp_cache_timestamp','454950'),(125439,3049,'_pinterest_shares','0'),(125440,3049,'_total_shares','0'),(125441,3049,'swp_cache_timestamp','454950'),(125445,3009,'_pinterest_shares','0'),(125446,3009,'_total_shares','0'),(125447,3009,'swp_cache_timestamp','454950'),(125451,3014,'_pinterest_shares','0'),(125452,3014,'_total_shares','0'),(125453,3014,'swp_cache_timestamp','454950'),(125660,3645,'_wp_attached_file','revslider/slider-1/home11.png'),(125661,3645,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:592;s:4:\"file\";s:29:\"revslider/slider-1/home11.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"home11-300x123.png\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"home11-1024x421.png\";s:5:\"width\";i:1024;s:6:\"height\";i:421;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"home11-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:18:\"home11-768x316.png\";s:5:\"width\";i:768;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:18:\"home11-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(125662,3646,'_wp_attached_file','revslider/slider-1/home-fundo.png'),(125663,3646,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:680;s:6:\"height\";i:592;s:4:\"file\";s:33:\"revslider/slider-1/home-fundo.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"home-fundo-300x261.png\";s:5:\"width\";i:300;s:6:\"height\";i:261;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"home-fundo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"home-fundo-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(125664,3647,'_wp_attached_file','revslider/slider-1/home31.jpg'),(125665,3647,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:592;s:4:\"file\";s:29:\"revslider/slider-1/home31.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"home31-300x123.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:123;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"home31-1024x421.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:421;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"home31-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:18:\"home31-768x316.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:18:\"home31-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(125675,3645,'_imagify_optimization_level','0'),(125676,3645,'_imagify_status','already_optimized'),(125677,3645,'_imagify_data','a:2:{s:5:\"sizes\";a:7:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:231923;s:14:\"optimized_size\";i:68652;s:7:\"percent\";d:70.4;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:87580;s:14:\"optimized_size\";i:61976;s:7:\"percent\";d:29.23;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21769;s:14:\"optimized_size\";i:7090;s:7:\"percent\";d:67.43;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:153950;s:14:\"optimized_size\";i:97878;s:7:\"percent\";d:36.42;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21046;s:14:\"optimized_size\";i:11356;s:7:\"percent\";d:46.04;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:80696;s:14:\"optimized_size\";i:161076;s:7:\"percent\";d:-99.61;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:596964;s:14:\"optimized_size\";i:408028;s:7:\"percent\";d:31.65;}}'),(125678,3646,'_imagify_optimization_level','0'),(125679,3646,'_imagify_status','already_optimized'),(125680,3646,'_imagify_data','a:2:{s:5:\"sizes\";a:5:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:155203;s:14:\"optimized_size\";i:12402;s:7:\"percent\";d:92.01;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14959;s:14:\"optimized_size\";i:1438;s:7:\"percent\";d:90.39;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20089;s:14:\"optimized_size\";i:3524;s:7:\"percent\";d:82.46;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:194;s:14:\"optimized_size\";i:4536;s:7:\"percent\";d:-2238.14;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:190445;s:14:\"optimized_size\";i:21900;s:7:\"percent\";d:88.5;}}'),(125681,3647,'_imagify_optimization_level','0'),(125682,3647,'_imagify_status','already_optimized'),(125683,3647,'_imagify_data','a:2:{s:5:\"sizes\";a:7:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21975;s:14:\"optimized_size\";i:59448;s:7:\"percent\";d:-170.53;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20802;s:14:\"optimized_size\";i:53704;s:7:\"percent\";d:-158.17;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3228;s:14:\"optimized_size\";i:7012;s:7:\"percent\";d:-117.22;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33161;s:14:\"optimized_size\";i:83334;s:7:\"percent\";d:-151.3;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4887;s:14:\"optimized_size\";i:11732;s:7:\"percent\";d:-140.07;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:70997;s:14:\"optimized_size\";i:153992;s:7:\"percent\";d:-116.9;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:155050;s:14:\"optimized_size\";i:369222;s:7:\"percent\";d:-138.13;}}'),(125684,3648,'top-image','654'),(125685,3648,'_top-image','field_5c47486901570'),(125686,3648,'top-title','Data-Driven
Digital Transformation'),(125687,3648,'_top-title','field_5c47489001571'),(125688,3648,'top-text','We Partner with companies to build business value through software innovation.

Every company is now a technology company. How competitive are you in your industry? Let us help you.'),(125689,3648,'_top-text','field_5c47489e01572'),(125690,3648,'top-items_0_item','Cloud-Native'),(125691,3648,'_top-items_0_item','field_5c4748d001574'),(125692,3648,'top-items_1_item','Data Lake'),(125693,3648,'_top-items_1_item','field_5c4748d001574'),(125694,3648,'top-items_2_item','Kubernetes'),(125695,3648,'_top-items_2_item','field_5c4748d001574'),(125696,3648,'top-items_3_item','Scalable'),(125697,3648,'_top-items_3_item','field_5c4748d001574'),(125698,3648,'top-items_4_item','Secure'),(125699,3648,'_top-items_4_item','field_5c4748d001574'),(125700,3648,'top-items','5'),(125701,3648,'_top-items','field_5c4748c401573'),(125702,3648,'top-button','44'),(125703,3648,'_top-button','field_5c4748e601575'),(125704,3648,'services-presentation','Build cloud-native applications with Translucent\r\nCreate modern applications using state-of-the-art technology with TEKStack AI'),(125705,3648,'_services-presentation','field_5c474986bee5b'),(125706,3648,'call-title','Start a Conversation'),(125707,3648,'_call-title','field_5c4749bcbee5c'),(125708,3648,'call-text',''),(125709,3648,'_call-text','field_5c4749d7bee5d'),(125710,3648,'case-title','The Hospital for Sick Children'),(125711,3648,'_case-title','field_5c4749f4bee5e'),(125712,3648,'case-text',''),(125713,3648,'_case-text','field_5c474a4abee5f'),(125714,3648,'case-image','772'),(125715,3648,'_case-image','field_5c474a6dbee61'),(125716,3648,'case-link','38'),(125717,3648,'_case-link','field_5c476a3dac685'),(125718,3648,'case_study_0_title',''),(125719,3648,'_case_study_0_title','field_5c82d24ccbac6'),(125720,3648,'case_study_0_text',''),(125721,3648,'_case_study_0_text','field_5c82d258cbac7'),(125722,3648,'case_study_0_image',''),(125723,3648,'_case_study_0_image','field_5c82d266cbac8'),(125724,3648,'case_study_0_link',''),(125725,3648,'_case_study_0_link','field_5c82d275cbac9'),(125726,3648,'case_study_1_title',''),(125727,3648,'_case_study_1_title','field_5c82d24ccbac6'),(125728,3648,'case_study_1_text',''),(125729,3648,'_case_study_1_text','field_5c82d258cbac7'),(125730,3648,'case_study_1_image',''),(125731,3648,'_case_study_1_image','field_5c82d266cbac8'),(125732,3648,'case_study_1_link',''),(125733,3648,'_case_study_1_link','field_5c82d275cbac9'),(125734,3648,'case_study',''),(125735,3648,'_case_study','field_6059d436ba0ce'),(125736,3648,'banners_0_banner_title','We Listen.'),(125737,3648,'_banners_0_banner_title','field_6059d268ba0bb'),(125738,3648,'banners_0_banner_subheading','Your needs matter to us'),(125739,3648,'_banners_0_banner_subheading','field_6059d289ba0bc'),(125740,3648,'banners_0_banner_bold','With open communication.
Your goals become our goals.'),(125741,3648,'_banners_0_banner_bold','field_6059d293ba0bd'),(125742,3648,'banners_0_banner_text','This allows us to transform your company\r\nLet us help you.'),(125743,3648,'_banners_0_banner_text','field_6059d2a2ba0be'),(125744,3648,'banners_0_video_background','1'),(125745,3648,'_banners_0_video_background','field_6059d2b3ba0bf'),(125746,3648,'banners_0_video_link','https://translucentcomputing.com/wp-content/uploads/2021/05/TC_BANNER_2.0-HEX121d3d.webm'),(125747,3648,'_banners_0_video_link','field_6059d2ccba0c0'),(125748,3648,'banners_0_button_text','Book a consultation '),(125749,3648,'_banners_0_button_text','field_6059d309ba0c2'),(125750,3648,'banners_0_button_link','#'),(125751,3648,'_banners_0_button_link','field_6059d314ba0c3'),(125752,3648,'banners','4'),(125753,3648,'_banners','field_6059d073ba0ba'),(125754,3648,'blog_section_title','Build cloud-native\r\ndata-driven applications with Translucent'),(125755,3648,'_blog_section_title','field_6059d32dba0c4'),(125756,3648,'inform_and_learn','We work with you, informing and educating you about what it takes to be digitally competitive in the current market. We learn your business and business needs.'),(125757,3648,'_inform_and_learn','field_6059d34dba0c5'),(125758,3648,'inception_and_discovery','During the discovery phase we uncover all business processes and requirements and understand your current state. During the inception phase we conceive and plan your solution.'),(125759,3648,'_inception_and_discovery','field_6059d361ba0c6'),(125760,3648,'digital_transformation','We implement your digital strategy with ongoing support, leveraging proven development methodologies.'),(125761,3648,'_digital_transformation','field_6059d375ba0c7'),(125762,3648,'services_microservices','Building scalable, reliable and secure ecosystems for your business!'),(125763,3648,'_services_microservices','field_6059d397ba0c8'),(125764,3648,'services_microservices_image','2434'),(125765,3648,'_services_microservices_image','field_6059d3b9ba0c9'),(125766,3648,'services_machine','Insights to improve quality of life, provide clarity in decision making and increase profits.'),(125767,3648,'_services_machine','field_6059d3ccba0ca'),(125768,3648,'services_machine_image','2435'),(125769,3648,'_services_machine_image','field_6059d3e2ba0cb'),(125770,3648,'services_devops','Keeping communication between your business operations, your technology, and the online world, in sync.'),(125771,3648,'_services_devops','field_6059d402ba0cc'),(125772,3648,'services_devops_image','2433'),(125773,3648,'_services_devops_image','field_6059d412ba0cd'),(125774,3648,'case_study_title','Sick Kids Hospital'),(125775,3648,'_case_study_title','field_6059d43fba0cf'),(125776,3648,'case_study_description','At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum'),(125777,3648,'_case_study_description','field_6059d44aba0d0'),(125778,3648,'case_study_image','2215'),(125779,3648,'_case_study_image','field_6059d459ba0d1'),(125780,3648,'case_study_link','#'),(125781,3648,'_case_study_link','field_6059d471ba0d2'),(125782,3648,'clients','10'),(125783,3648,'_clients','field_6059d489ba0d3'),(125784,3648,'case_study_2_title',''),(125785,3648,'_case_study_2_title','field_5c82d24ccbac6'),(125786,3648,'case_study_2_text',''),(125787,3648,'_case_study_2_text','field_5c82d258cbac7'),(125788,3648,'case_study_2_image',''),(125789,3648,'_case_study_2_image','field_5c82d266cbac8'),(125790,3648,'case_study_2_link',''),(125791,3648,'_case_study_2_link','field_5c82d275cbac9'),(125792,3648,'case_study_3_title',''),(125793,3648,'_case_study_3_title','field_5c82d24ccbac6'),(125794,3648,'case_study_3_text',''),(125795,3648,'_case_study_3_text','field_5c82d258cbac7'),(125796,3648,'case_study_3_image',''),(125797,3648,'_case_study_3_image','field_5c82d266cbac8'),(125798,3648,'case_study_3_link',''),(125799,3648,'_case_study_3_link','field_5c82d275cbac9'),(125800,3648,'clients_0_image','793'),(125801,3648,'_clients_0_image','field_6059d493ba0d4'),(125802,3648,'clients_1_image','794'),(125803,3648,'_clients_1_image','field_6059d493ba0d4'),(125804,3648,'clients_2_image','623'),(125805,3648,'_clients_2_image','field_6059d493ba0d4'),(125806,3648,'clients_3_image','796'),(125807,3648,'_clients_3_image','field_6059d493ba0d4'),(125808,3648,'clients_4_image','797'),(125809,3648,'_clients_4_image','field_6059d493ba0d4'),(125810,3648,'clients_5_image','798'),(125811,3648,'_clients_5_image','field_6059d493ba0d4'),(125812,3648,'clients_6_image','799'),(125813,3648,'_clients_6_image','field_6059d493ba0d4'),(125814,3648,'clients_7_image','800'),(125815,3648,'_clients_7_image','field_6059d493ba0d4'),(125816,3648,'clients_8_image','801'),(125817,3648,'_clients_8_image','field_6059d493ba0d4'),(125818,3648,'clients_9_image','802'),(125819,3648,'_clients_9_image','field_6059d493ba0d4'),(125820,3648,'case_title','Sick Kids Hospital'),(125821,3648,'_case_title','field_6059e3a6eec00'),(125822,3648,'case_description','At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum'),(125823,3648,'_case_description','field_6059e3bdeec01'),(125824,3648,'case_image',''),(125825,3648,'_case_image','field_6059e3d7eec02'),(125826,3648,'case_link','#'),(125827,3648,'_case_link','field_6059e3e6eec03'),(125828,3648,'banners_1_banner_title','We Learn.'),(125829,3648,'_banners_1_banner_title','field_6059d268ba0bb'),(125830,3648,'banners_1_banner_subheading','Focused Action | Targeted results'),(125831,3648,'_banners_1_banner_subheading','field_6059d289ba0bc'),(125832,3648,'banners_1_banner_bold','Learning is is our DNA.
Knowledge sharing is our passion.'),(125833,3648,'_banners_1_banner_bold','field_6059d293ba0bd'),(125834,3648,'banners_1_banner_text','We share what we know, so you\'ll know what we learn.'),(125835,3648,'_banners_1_banner_text','field_6059d2a2ba0be'),(125836,3648,'banners_1_video_background','0'),(125837,3648,'_banners_1_video_background','field_6059d2b3ba0bf'),(125838,3648,'banners_1_background_image','3126'),(125839,3648,'_banners_1_background_image','field_6059d2e1ba0c1'),(125840,3648,'banners_1_button_text','Book a consultation'),(125841,3648,'_banners_1_button_text','field_6059d309ba0c2'),(125842,3648,'banners_1_button_link','#contact'),(125843,3648,'_banners_1_button_link','field_6059d314ba0c3'),(125844,3648,'banners_2_banner_title','We Inform.'),(125845,3648,'_banners_2_banner_title','field_6059d268ba0bb'),(125846,3648,'banners_2_banner_subheading','Data Driven | Digital Transformation'),(125847,3648,'_banners_2_banner_subheading','field_6059d289ba0bc'),(125848,3648,'banners_2_banner_bold','The cloud native partnership.
Your business depends on.'),(125849,3648,'_banners_2_banner_bold','field_6059d293ba0bd'),(125850,3648,'banners_2_banner_text','Every company is now a technology company.\r\nHow can we help you?'),(125851,3648,'_banners_2_banner_text','field_6059d2a2ba0be'),(125852,3648,'banners_2_video_background','0'),(125853,3648,'_banners_2_video_background','field_6059d2b3ba0bf'),(125854,3648,'banners_2_background_image','3125'),(125855,3648,'_banners_2_background_image','field_6059d2e1ba0c1'),(125856,3648,'banners_2_button_text','Book a consultation'),(125857,3648,'_banners_2_button_text','field_6059d309ba0c2'),(125858,3648,'banners_2_button_link','#contact'),(125859,3648,'_banners_2_button_link','field_6059d314ba0c3'),(125860,3648,'banners_3_banner_title','We Support.'),(125861,3648,'_banners_3_banner_title','field_6059d268ba0bb'),(125862,3648,'banners_3_banner_subheading','24 hour support | 7 days a week'),(125863,3648,'_banners_3_banner_subheading','field_6059d289ba0bc'),(125864,3648,'banners_3_banner_bold','We support our people so they can support you, anytime and anywhere.'),(125865,3648,'_banners_3_banner_bold','field_6059d293ba0bd'),(125866,3648,'banners_3_banner_text','\"I would use them again if I could. In fact,\r\nI would use their team for everything if I could!\"\r\nThiago Telles - Cerberus CEO'),(125867,3648,'_banners_3_banner_text','field_6059d2a2ba0be'),(125868,3648,'banners_3_video_background','0'),(125869,3648,'_banners_3_video_background','field_6059d2b3ba0bf'),(125870,3648,'banners_3_background_image','3124'),(125871,3648,'_banners_3_background_image','field_6059d2e1ba0c1'),(125872,3648,'banners_3_button_text','Book a consultation'),(125873,3648,'_banners_3_button_text','field_6059d309ba0c2'),(125874,3648,'banners_3_button_link','#contact'),(125875,3648,'_banners_3_button_link','field_6059d314ba0c3'),(125876,3648,'banners_0_background_image','3605'),(125877,3648,'_banners_0_background_image','field_6059d2e1ba0c1'),(125881,3649,'top-image','654'),(125882,3649,'_top-image','field_5c47486901570'),(125883,3649,'top-title','Data-Driven
Digital Transformation'),(125884,3649,'_top-title','field_5c47489001571'),(125885,3649,'top-text','We Partner with companies to build business value through software innovation.

Every company is now a technology company. How competitive are you in your industry? Let us help you.'),(125886,3649,'_top-text','field_5c47489e01572'),(125887,3649,'top-items_0_item','Cloud-Native'),(125888,3649,'_top-items_0_item','field_5c4748d001574'),(125889,3649,'top-items_1_item','Data Lake'),(125890,3649,'_top-items_1_item','field_5c4748d001574'),(125891,3649,'top-items_2_item','Kubernetes'),(125892,3649,'_top-items_2_item','field_5c4748d001574'),(125893,3649,'top-items_3_item','Scalable'),(125894,3649,'_top-items_3_item','field_5c4748d001574'),(125895,3649,'top-items_4_item','Secure'),(125896,3649,'_top-items_4_item','field_5c4748d001574'),(125897,3649,'top-items','5'),(125898,3649,'_top-items','field_5c4748c401573'),(125899,3649,'top-button','44'),(125900,3649,'_top-button','field_5c4748e601575'),(125901,3649,'services-presentation','Build cloud-native applications with Translucent\r\nCreate modern applications using state-of-the-art technology with TEKStack AI'),(125902,3649,'_services-presentation','field_5c474986bee5b'),(125903,3649,'call-title','Start a Conversation'),(125904,3649,'_call-title','field_5c4749bcbee5c'),(125905,3649,'call-text',''),(125906,3649,'_call-text','field_5c4749d7bee5d'),(125907,3649,'case-title','The Hospital for Sick Children'),(125908,3649,'_case-title','field_5c4749f4bee5e'),(125909,3649,'case-text',''),(125910,3649,'_case-text','field_5c474a4abee5f'),(125911,3649,'case-image','772'),(125912,3649,'_case-image','field_5c474a6dbee61'),(125913,3649,'case-link','38'),(125914,3649,'_case-link','field_5c476a3dac685'),(125915,3649,'case_study_0_title',''),(125916,3649,'_case_study_0_title','field_5c82d24ccbac6'),(125917,3649,'case_study_0_text',''),(125918,3649,'_case_study_0_text','field_5c82d258cbac7'),(125919,3649,'case_study_0_image',''),(125920,3649,'_case_study_0_image','field_5c82d266cbac8'),(125921,3649,'case_study_0_link',''),(125922,3649,'_case_study_0_link','field_5c82d275cbac9'),(125923,3649,'case_study_1_title',''),(125924,3649,'_case_study_1_title','field_5c82d24ccbac6'),(125925,3649,'case_study_1_text',''),(125926,3649,'_case_study_1_text','field_5c82d258cbac7'),(125927,3649,'case_study_1_image',''),(125928,3649,'_case_study_1_image','field_5c82d266cbac8'),(125929,3649,'case_study_1_link',''),(125930,3649,'_case_study_1_link','field_5c82d275cbac9'),(125931,3649,'case_study',''),(125932,3649,'_case_study','field_6059d436ba0ce'),(125933,3649,'banners',''),(125934,3649,'_banners','field_6059d073ba0ba'),(125935,3649,'blog_section_title','Build cloud-native\r\ndata-driven applications with Translucent'),(125936,3649,'_blog_section_title','field_6059d32dba0c4'),(125937,3649,'inform_and_learn','We work with you, informing and educating you about what it takes to be digitally competitive in the current market. We learn your business and business needs.'),(125938,3649,'_inform_and_learn','field_6059d34dba0c5'),(125939,3649,'inception_and_discovery','During the discovery phase we uncover all business processes and requirements and understand your current state. During the inception phase we conceive and plan your solution.'),(125940,3649,'_inception_and_discovery','field_6059d361ba0c6'),(125941,3649,'digital_transformation','We implement your digital strategy with ongoing support, leveraging proven development methodologies.'),(125942,3649,'_digital_transformation','field_6059d375ba0c7'),(125943,3649,'services_microservices','Building scalable, reliable and secure ecosystems for your business!'),(125944,3649,'_services_microservices','field_6059d397ba0c8'),(125945,3649,'services_microservices_image','2434'),(125946,3649,'_services_microservices_image','field_6059d3b9ba0c9'),(125947,3649,'services_machine','Insights to improve quality of life, provide clarity in decision making and increase profits.'),(125948,3649,'_services_machine','field_6059d3ccba0ca'),(125949,3649,'services_machine_image','2435'),(125950,3649,'_services_machine_image','field_6059d3e2ba0cb'),(125951,3649,'services_devops','Keeping communication between your business operations, your technology, and the online world, in sync.'),(125952,3649,'_services_devops','field_6059d402ba0cc'),(125953,3649,'services_devops_image','2433'),(125954,3649,'_services_devops_image','field_6059d412ba0cd'),(125955,3649,'case_study_title','Sick Kids Hospital'),(125956,3649,'_case_study_title','field_6059d43fba0cf'),(125957,3649,'case_study_description','At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum'),(125958,3649,'_case_study_description','field_6059d44aba0d0'),(125959,3649,'case_study_image','2215'),(125960,3649,'_case_study_image','field_6059d459ba0d1'),(125961,3649,'case_study_link','#'),(125962,3649,'_case_study_link','field_6059d471ba0d2'),(125963,3649,'clients','10'),(125964,3649,'_clients','field_6059d489ba0d3'),(125965,3649,'case_study_2_title',''),(125966,3649,'_case_study_2_title','field_5c82d24ccbac6'),(125967,3649,'case_study_2_text',''),(125968,3649,'_case_study_2_text','field_5c82d258cbac7'),(125969,3649,'case_study_2_image',''),(125970,3649,'_case_study_2_image','field_5c82d266cbac8'),(125971,3649,'case_study_2_link',''),(125972,3649,'_case_study_2_link','field_5c82d275cbac9'),(125973,3649,'case_study_3_title',''),(125974,3649,'_case_study_3_title','field_5c82d24ccbac6'),(125975,3649,'case_study_3_text',''),(125976,3649,'_case_study_3_text','field_5c82d258cbac7'),(125977,3649,'case_study_3_image',''),(125978,3649,'_case_study_3_image','field_5c82d266cbac8'),(125979,3649,'case_study_3_link',''),(125980,3649,'_case_study_3_link','field_5c82d275cbac9'),(125981,3649,'clients_0_image','793'),(125982,3649,'_clients_0_image','field_6059d493ba0d4'),(125983,3649,'clients_1_image','794'),(125984,3649,'_clients_1_image','field_6059d493ba0d4'),(125985,3649,'clients_2_image','623'),(125986,3649,'_clients_2_image','field_6059d493ba0d4'),(125987,3649,'clients_3_image','796'),(125988,3649,'_clients_3_image','field_6059d493ba0d4'),(125989,3649,'clients_4_image','797'),(125990,3649,'_clients_4_image','field_6059d493ba0d4'),(125991,3649,'clients_5_image','798'),(125992,3649,'_clients_5_image','field_6059d493ba0d4'),(125993,3649,'clients_6_image','799'),(125994,3649,'_clients_6_image','field_6059d493ba0d4'),(125995,3649,'clients_7_image','800'),(125996,3649,'_clients_7_image','field_6059d493ba0d4'),(125997,3649,'clients_8_image','801'),(125998,3649,'_clients_8_image','field_6059d493ba0d4'),(125999,3649,'clients_9_image','802'),(126000,3649,'_clients_9_image','field_6059d493ba0d4'),(126001,3649,'case_title','Sick Kids Hospital'),(126002,3649,'_case_title','field_6059e3a6eec00'),(126003,3649,'case_description','At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum'),(126004,3649,'_case_description','field_6059e3bdeec01'),(126005,3649,'case_image',''),(126006,3649,'_case_image','field_6059e3d7eec02'),(126007,3649,'case_link','#'),(126008,3649,'_case_link','field_6059e3e6eec03'),(126012,3650,'top-image','654'),(126013,3650,'_top-image','field_5c47486901570'),(126014,3650,'top-title','Data-Driven
Digital Transformation'),(126015,3650,'_top-title','field_5c47489001571'),(126016,3650,'top-text','We Partner with companies to build business value through software innovation.

Every company is now a technology company. How competitive are you in your industry? Let us help you.'),(126017,3650,'_top-text','field_5c47489e01572'),(126018,3650,'top-items_0_item','Cloud-Native'),(126019,3650,'_top-items_0_item','field_5c4748d001574'),(126020,3650,'top-items_1_item','Data Lake'),(126021,3650,'_top-items_1_item','field_5c4748d001574'),(126022,3650,'top-items_2_item','Kubernetes'),(126023,3650,'_top-items_2_item','field_5c4748d001574'),(126024,3650,'top-items_3_item','Scalable'),(126025,3650,'_top-items_3_item','field_5c4748d001574'),(126026,3650,'top-items_4_item','Secure'),(126027,3650,'_top-items_4_item','field_5c4748d001574'),(126028,3650,'top-items','5'),(126029,3650,'_top-items','field_5c4748c401573'),(126030,3650,'top-button','44'),(126031,3650,'_top-button','field_5c4748e601575'),(126032,3650,'services-presentation','Build cloud-native applications with Translucent\r\nCreate modern applications using state-of-the-art technology with TEKStack AI'),(126033,3650,'_services-presentation','field_5c474986bee5b'),(126034,3650,'call-title','Start a Conversation'),(126035,3650,'_call-title','field_5c4749bcbee5c'),(126036,3650,'call-text',''),(126037,3650,'_call-text','field_5c4749d7bee5d'),(126038,3650,'case-title','The Hospital for Sick Children'),(126039,3650,'_case-title','field_5c4749f4bee5e'),(126040,3650,'case-text',''),(126041,3650,'_case-text','field_5c474a4abee5f'),(126042,3650,'case-image','772'),(126043,3650,'_case-image','field_5c474a6dbee61'),(126044,3650,'case-link','38'),(126045,3650,'_case-link','field_5c476a3dac685'),(126046,3650,'case_study_0_title',''),(126047,3650,'_case_study_0_title','field_5c82d24ccbac6'),(126048,3650,'case_study_0_text',''),(126049,3650,'_case_study_0_text','field_5c82d258cbac7'),(126050,3650,'case_study_0_image',''),(126051,3650,'_case_study_0_image','field_5c82d266cbac8'),(126052,3650,'case_study_0_link',''),(126053,3650,'_case_study_0_link','field_5c82d275cbac9'),(126054,3650,'case_study_1_title',''),(126055,3650,'_case_study_1_title','field_5c82d24ccbac6'),(126056,3650,'case_study_1_text',''),(126057,3650,'_case_study_1_text','field_5c82d258cbac7'),(126058,3650,'case_study_1_image',''),(126059,3650,'_case_study_1_image','field_5c82d266cbac8'),(126060,3650,'case_study_1_link',''),(126061,3650,'_case_study_1_link','field_5c82d275cbac9'),(126062,3650,'case_study',''),(126063,3650,'_case_study','field_6059d436ba0ce'),(126064,3650,'banners',''),(126065,3650,'_banners','field_6059d073ba0ba'),(126066,3650,'blog_section_title','Build cloud-native\r\ndata-driven applications with Translucent'),(126067,3650,'_blog_section_title','field_6059d32dba0c4'),(126068,3650,'inform_and_learn','We work with you, informing and educating you about what it takes to be digitally competitive in the current market. We learn your business and business needs.'),(126069,3650,'_inform_and_learn','field_6059d34dba0c5'),(126070,3650,'inception_and_discovery','During the discovery phase we uncover all business processes and requirements and understand your current state. During the inception phase we conceive and plan your solution.'),(126071,3650,'_inception_and_discovery','field_6059d361ba0c6'),(126072,3650,'digital_transformation','We implement your digital strategy with ongoing support, leveraging proven development methodologies.'),(126073,3650,'_digital_transformation','field_6059d375ba0c7'),(126074,3650,'services_microservices','Building scalable, reliable and secure ecosystems for your business!'),(126075,3650,'_services_microservices','field_6059d397ba0c8'),(126076,3650,'services_microservices_image','2434'),(126077,3650,'_services_microservices_image','field_6059d3b9ba0c9'),(126078,3650,'services_machine','Insights to improve quality of life, provide clarity in decision making and increase profits.'),(126079,3650,'_services_machine','field_6059d3ccba0ca'),(126080,3650,'services_machine_image','2435'),(126081,3650,'_services_machine_image','field_6059d3e2ba0cb'),(126082,3650,'services_devops','Keeping communication between your business operations, your technology, and the online world, in sync.'),(126083,3650,'_services_devops','field_6059d402ba0cc'),(126084,3650,'services_devops_image','2433'),(126085,3650,'_services_devops_image','field_6059d412ba0cd'),(126086,3650,'case_study_title','Sick Kids Hospital'),(126087,3650,'_case_study_title','field_6059d43fba0cf'),(126088,3650,'case_study_description','At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum'),(126089,3650,'_case_study_description','field_6059d44aba0d0'),(126090,3650,'case_study_image','2215'),(126091,3650,'_case_study_image','field_6059d459ba0d1'),(126092,3650,'case_study_link','#'),(126093,3650,'_case_study_link','field_6059d471ba0d2'),(126094,3650,'clients','10'),(126095,3650,'_clients','field_6059d489ba0d3'),(126097,3650,'case_study_2_title',''),(126098,3650,'_case_study_2_title','field_5c82d24ccbac6'),(126099,3650,'case_study_2_text',''),(126100,3650,'_case_study_2_text','field_5c82d258cbac7'),(126101,3650,'case_study_2_image',''),(126103,3650,'_case_study_2_image','field_5c82d266cbac8'),(126104,3650,'case_study_2_link',''),(126105,3650,'_case_study_2_link','field_5c82d275cbac9'),(126106,3650,'case_study_3_title',''),(126107,3650,'_case_study_3_title','field_5c82d24ccbac6'),(126109,3650,'case_study_3_text',''),(126110,3650,'_case_study_3_text','field_5c82d258cbac7'),(126111,3650,'case_study_3_image',''),(126112,3650,'_case_study_3_image','field_5c82d266cbac8'),(126113,3650,'case_study_3_link',''),(126114,3650,'_case_study_3_link','field_5c82d275cbac9'),(126115,3650,'clients_0_image','793'),(126116,3650,'_clients_0_image','field_6059d493ba0d4'),(126117,3650,'clients_1_image','794'),(126118,3650,'_clients_1_image','field_6059d493ba0d4'),(126119,3650,'clients_2_image','623'),(126120,3650,'_clients_2_image','field_6059d493ba0d4'),(126121,3650,'clients_3_image','796'),(126122,3650,'_clients_3_image','field_6059d493ba0d4'),(126123,3650,'clients_4_image','797'),(126124,3650,'_clients_4_image','field_6059d493ba0d4'),(126125,3650,'clients_5_image','798'),(126126,3650,'_clients_5_image','field_6059d493ba0d4'),(126127,3650,'clients_6_image','799'),(126128,3650,'_clients_6_image','field_6059d493ba0d4'),(126129,3650,'clients_7_image','800'),(126130,3650,'_clients_7_image','field_6059d493ba0d4'),(126131,3650,'clients_8_image','801'),(126132,3650,'_clients_8_image','field_6059d493ba0d4'),(126133,3650,'clients_9_image','802'),(126134,3650,'_clients_9_image','field_6059d493ba0d4'),(126135,3650,'case_title','Sick Kids Hospital'),(126136,3650,'_case_title','field_6059e3a6eec00'),(126137,3650,'case_description','At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum'),(126138,3650,'_case_description','field_6059e3bdeec01'),(126139,3650,'case_image',''),(126140,3650,'_case_image','field_6059e3d7eec02'),(126141,3650,'case_link','#'),(126142,3650,'_case_link','field_6059e3e6eec03'),(126167,3652,'_edit_lock','1653084770:4'),(126168,3653,'_wp_attached_file','2021/11/self-managed-airflow.png'),(126169,3653,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:796;s:4:\"file\";s:32:\"2021/11/self-managed-airflow.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"self-managed-airflow-300x149.png\";s:5:\"width\";i:300;s:6:\"height\";i:149;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"self-managed-airflow-1024x509.png\";s:5:\"width\";i:1024;s:6:\"height\";i:509;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"self-managed-airflow-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:\"self-managed-airflow-768x382.png\";s:5:\"width\";i:768;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"self-managed-airflow-1536x764.png\";s:5:\"width\";i:1536;s:6:\"height\";i:764;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:32:\"self-managed-airflow-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(126170,3653,'_imagify_optimization_level','0'),(126171,3653,'_imagify_status','success'),(126172,3653,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:257471;s:14:\"optimized_size\";i:206329;s:7:\"percent\";d:19.86;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:135257;s:14:\"optimized_size\";i:72662;s:7:\"percent\";d:46.28;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:371008;s:14:\"optimized_size\";i:263934;s:7:\"percent\";d:28.86;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:120137;s:14:\"optimized_size\";i:103334;s:7:\"percent\";d:13.99;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15601;s:14:\"optimized_size\";i:14360;s:7:\"percent\";d:7.95;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:165477;s:14:\"optimized_size\";i:156006;s:7:\"percent\";d:5.72;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25217;s:14:\"optimized_size\";i:26550;s:7:\"percent\";d:-5.29;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:257471;s:14:\"optimized_size\";i:265516;s:7:\"percent\";d:-3.12;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25217;s:14:\"optimized_size\";i:18414;s:7:\"percent\";d:26.98;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:165477;s:14:\"optimized_size\";i:135632;s:7:\"percent\";d:18.04;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15601;s:14:\"optimized_size\";i:11511;s:7:\"percent\";d:26.22;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:120137;s:14:\"optimized_size\";i:94169;s:7:\"percent\";d:21.62;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:371008;s:14:\"optimized_size\";i:305481;s:7:\"percent\";d:17.66;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:135257;s:14:\"optimized_size\";i:99191;s:7:\"percent\";d:26.66;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2180336;s:14:\"optimized_size\";i:1773089;s:7:\"percent\";d:18.68;}}'),(126173,3654,'_wp_attached_file','2021/11/cloud-managed-airflow.png'),(126174,3654,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:857;s:4:\"file\";s:33:\"2021/11/cloud-managed-airflow.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"cloud-managed-airflow-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:34:\"cloud-managed-airflow-1024x548.png\";s:5:\"width\";i:1024;s:6:\"height\";i:548;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"cloud-managed-airflow-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:\"cloud-managed-airflow-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:34:\"cloud-managed-airflow-1536x823.png\";s:5:\"width\";i:1536;s:6:\"height\";i:823;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:33:\"cloud-managed-airflow-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(126175,3654,'_imagify_optimization_level','0'),(126176,3654,'_imagify_status','success'),(126177,3654,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:854263;s:14:\"optimized_size\";i:790370;s:7:\"percent\";d:7.48;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:279630;s:14:\"optimized_size\";i:70974;s:7:\"percent\";d:74.62;}s:22:\"1536x1536@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:25:\"medium_large@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:22:\"thumbnail@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:18:\"large@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:19:\"medium@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:17:\"full@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:6:\"medium\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:5:\"large\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:12:\"medium_large\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:9:\"1536x1536\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:7:\"feature\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1133893;s:14:\"optimized_size\";i:861344;s:7:\"percent\";d:24.04;}}'),(126178,3655,'_wp_attached_file','2021/11/composer-1-private-ip-architecture.png'),(126179,3655,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1599;s:6:\"height\";i:1507;s:4:\"file\";s:46:\"2021/11/composer-1-private-ip-architecture.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"composer-1-private-ip-architecture-300x283.png\";s:5:\"width\";i:300;s:6:\"height\";i:283;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"composer-1-private-ip-architecture-1024x965.png\";s:5:\"width\";i:1024;s:6:\"height\";i:965;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"composer-1-private-ip-architecture-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:46:\"composer-1-private-ip-architecture-768x724.png\";s:5:\"width\";i:768;s:6:\"height\";i:724;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:48:\"composer-1-private-ip-architecture-1536x1448.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1448;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:46:\"composer-1-private-ip-architecture-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(126180,3655,'_imagify_optimization_level','0'),(126181,3655,'_imagify_status','error'),(126182,3655,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(126183,3652,'_edit_last','4'),(126184,3652,'hefo_before','0'),(126185,3652,'hefo_after','0'),(126186,3652,'ao_post_optimize','a:5:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";}'),(126187,3652,'_yoast_wpseo_content_score','60'),(126188,3652,'_yoast_wpseo_focuskeywords','[]'),(126189,3652,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(126190,3652,'_yoast_wpseo_estimated-reading-time-minutes','3'),(126191,3657,'_wp_attached_file','2021/11/apache-airflow-management.png'),(126192,3657,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:37:\"2021/11/apache-airflow-management.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"apache-airflow-management-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"apache-airflow-management-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"apache-airflow-management-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:\"apache-airflow-management-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:37:\"apache-airflow-management-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(126193,3657,'_imagify_optimization_level','0'),(126194,3657,'_imagify_status','error'),(126195,3657,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(126196,3657,'_wp_attachment_image_alt','apache airflow - management'),(126197,3652,'_thumbnail_id','3657'),(126198,3652,'_yoast_wpseo_primary_category','1'),(126259,3662,'top-image','654'),(126260,3662,'_top-image','field_5c47486901570'),(126261,3662,'top-title','Data-Driven
Digital Transformation'),(126262,3662,'_top-title','field_5c47489001571'),(126263,3662,'top-text','We Partner with companies to build business value through software innovation.

Every company is now a technology company. How competitive are you in your industry? Let us help you.'),(126264,3662,'_top-text','field_5c47489e01572'),(126265,3662,'top-items_0_item','Cloud-Native'),(126266,3662,'_top-items_0_item','field_5c4748d001574'),(126267,3662,'top-items_1_item','Data Lake'),(126268,3662,'_top-items_1_item','field_5c4748d001574'),(126269,3662,'top-items_2_item','Kubernetes'),(126270,3662,'_top-items_2_item','field_5c4748d001574'),(126271,3662,'top-items_3_item','Scalable'),(126272,3662,'_top-items_3_item','field_5c4748d001574'),(126273,3662,'top-items_4_item','Secure'),(126274,3662,'_top-items_4_item','field_5c4748d001574'),(126275,3662,'top-items','5'),(126276,3662,'_top-items','field_5c4748c401573'),(126277,3662,'top-button','44'),(126278,3662,'_top-button','field_5c4748e601575'),(126279,3662,'services-presentation','Build cloud-native applications with Translucent\r\nCreate modern applications using state-of-the-art technology with TEKStack AI'),(126280,3662,'_services-presentation','field_5c474986bee5b'),(126281,3662,'call-title','Start a Conversation'),(126282,3662,'_call-title','field_5c4749bcbee5c'),(126283,3662,'call-text',''),(126284,3662,'_call-text','field_5c4749d7bee5d'),(126285,3662,'case-title','The Hospital for Sick Children'),(126286,3662,'_case-title','field_5c4749f4bee5e'),(126287,3662,'case-text',''),(126288,3662,'_case-text','field_5c474a4abee5f'),(126289,3662,'case-image','772'),(126290,3662,'_case-image','field_5c474a6dbee61'),(126291,3662,'case-link','38'),(126292,3662,'_case-link','field_5c476a3dac685'),(126293,3662,'case_study_0_title',''),(126294,3662,'_case_study_0_title','field_5c82d24ccbac6'),(126295,3662,'case_study_0_text',''),(126296,3662,'_case_study_0_text','field_5c82d258cbac7'),(126297,3662,'case_study_0_image',''),(126298,3662,'_case_study_0_image','field_5c82d266cbac8'),(126299,3662,'case_study_0_link',''),(126300,3662,'_case_study_0_link','field_5c82d275cbac9'),(126301,3662,'case_study_1_title',''),(126302,3662,'_case_study_1_title','field_5c82d24ccbac6'),(126303,3662,'case_study_1_text',''),(126304,3662,'_case_study_1_text','field_5c82d258cbac7'),(126305,3662,'case_study_1_image',''),(126306,3662,'_case_study_1_image','field_5c82d266cbac8'),(126307,3662,'case_study_1_link',''),(126308,3662,'_case_study_1_link','field_5c82d275cbac9'),(126309,3662,'case_study',''),(126310,3662,'_case_study','field_6059d436ba0ce'),(126311,3662,'banners',''),(126312,3662,'_banners','field_6059d073ba0ba'),(126313,3662,'blog_section_title',''),(126314,3662,'_blog_section_title','field_6059d32dba0c4'),(126315,3662,'inform_and_learn',''),(126316,3662,'_inform_and_learn','field_6059d34dba0c5'),(126317,3662,'inception_and_discovery',''),(126318,3662,'_inception_and_discovery','field_6059d361ba0c6'),(126319,3662,'digital_transformation',''),(126320,3662,'_digital_transformation','field_6059d375ba0c7'),(126321,3662,'services_microservices',''),(126322,3662,'_services_microservices','field_6059d397ba0c8'),(126323,3662,'services_microservices_image',''),(126324,3662,'_services_microservices_image','field_6059d3b9ba0c9'),(126325,3662,'services_machine',''),(126326,3662,'_services_machine','field_6059d3ccba0ca'),(126327,3662,'services_machine_image',''),(126328,3662,'_services_machine_image','field_6059d3e2ba0cb'),(126329,3662,'services_devops',''),(126330,3662,'_services_devops','field_6059d402ba0cc'),(126331,3662,'services_devops_image',''),(126332,3662,'_services_devops_image','field_6059d412ba0cd'),(126333,3662,'case_study_title','Sick Kids Hospital'),(126334,3662,'_case_study_title','field_6059d43fba0cf'),(126335,3662,'case_study_description','At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum'),(126336,3662,'_case_study_description','field_6059d44aba0d0'),(126337,3662,'case_study_image','2215'),(126338,3662,'_case_study_image','field_6059d459ba0d1'),(126339,3662,'case_study_link','#'),(126340,3662,'_case_study_link','field_6059d471ba0d2'),(126341,3662,'clients','10'),(126342,3662,'_clients','field_6059d489ba0d3'),(126343,3662,'case_study_2_title',''),(126344,3662,'_case_study_2_title','field_5c82d24ccbac6'),(126345,3662,'case_study_2_text',''),(126346,3662,'_case_study_2_text','field_5c82d258cbac7'),(126347,3662,'case_study_2_image',''),(126348,3662,'_case_study_2_image','field_5c82d266cbac8'),(126349,3662,'case_study_2_link',''),(126350,3662,'_case_study_2_link','field_5c82d275cbac9'),(126351,3662,'case_study_3_title',''),(126352,3662,'_case_study_3_title','field_5c82d24ccbac6'),(126353,3662,'case_study_3_text',''),(126354,3662,'_case_study_3_text','field_5c82d258cbac7'),(126355,3662,'case_study_3_image',''),(126356,3662,'_case_study_3_image','field_5c82d266cbac8'),(126357,3662,'case_study_3_link',''),(126358,3662,'_case_study_3_link','field_5c82d275cbac9'),(126359,3662,'clients_0_image','793'),(126360,3662,'_clients_0_image','field_6059d493ba0d4'),(126361,3662,'clients_1_image','794'),(126362,3662,'_clients_1_image','field_6059d493ba0d4'),(126363,3662,'clients_2_image','623'),(126364,3662,'_clients_2_image','field_6059d493ba0d4'),(126365,3662,'clients_3_image','796'),(126366,3662,'_clients_3_image','field_6059d493ba0d4'),(126367,3662,'clients_4_image','797'),(126368,3662,'_clients_4_image','field_6059d493ba0d4'),(126369,3662,'clients_5_image','798'),(126370,3662,'_clients_5_image','field_6059d493ba0d4'),(126371,3662,'clients_6_image','799'),(126372,3662,'_clients_6_image','field_6059d493ba0d4'),(126373,3662,'clients_7_image','800'),(126374,3662,'_clients_7_image','field_6059d493ba0d4'),(126375,3662,'clients_8_image','801'),(126377,3662,'_clients_8_image','field_6059d493ba0d4'),(126378,3662,'clients_9_image','802'),(126379,3662,'_clients_9_image','field_6059d493ba0d4'),(126380,3662,'case_title',''),(126382,3662,'_case_title','field_6059e3a6eec00'),(126384,3662,'case_description',''),(126385,3662,'_case_description','field_6059e3bdeec01'),(126386,3662,'case_image',''),(126387,3662,'_case_image','field_6059e3d7eec02'),(126388,3662,'case_link','#'),(126389,3662,'_case_link','field_6059e3e6eec03'),(126396,3663,'top-image','654'),(126397,3663,'_top-image','field_5c47486901570'),(126398,3663,'top-title','Data-Driven
Digital Transformation'),(126399,3663,'_top-title','field_5c47489001571'),(126400,3663,'top-text','We Partner with companies to build business value through software innovation.

Every company is now a technology company. How competitive are you in your industry? Let us help you.'),(126401,3663,'_top-text','field_5c47489e01572'),(126402,3663,'top-items_0_item','Cloud-Native'),(126403,3663,'_top-items_0_item','field_5c4748d001574'),(126404,3663,'top-items_1_item','Data Lake'),(126405,3663,'_top-items_1_item','field_5c4748d001574'),(126406,3663,'top-items_2_item','Kubernetes'),(126407,3663,'_top-items_2_item','field_5c4748d001574'),(126408,3663,'top-items_3_item','Scalable'),(126409,3663,'_top-items_3_item','field_5c4748d001574'),(126410,3663,'top-items_4_item','Secure'),(126411,3663,'_top-items_4_item','field_5c4748d001574'),(126412,3663,'top-items','5'),(126413,3663,'_top-items','field_5c4748c401573'),(126414,3663,'top-button','44'),(126415,3663,'_top-button','field_5c4748e601575'),(126416,3663,'services-presentation','Build cloud-native applications with Translucent\r\nCreate modern applications using state-of-the-art technology with TEKStack AI'),(126417,3663,'_services-presentation','field_5c474986bee5b'),(126418,3663,'call-title','Start a Conversation'),(126419,3663,'_call-title','field_5c4749bcbee5c'),(126420,3663,'call-text',''),(126421,3663,'_call-text','field_5c4749d7bee5d'),(126422,3663,'case-title','The Hospital for Sick Children'),(126423,3663,'_case-title','field_5c4749f4bee5e'),(126424,3663,'case-text',''),(126425,3663,'_case-text','field_5c474a4abee5f'),(126426,3663,'case-image','772'),(126427,3663,'_case-image','field_5c474a6dbee61'),(126428,3663,'case-link','38'),(126429,3663,'_case-link','field_5c476a3dac685'),(126430,3663,'case_study_0_title',''),(126431,3663,'_case_study_0_title','field_5c82d24ccbac6'),(126432,3663,'case_study_0_text',''),(126433,3663,'_case_study_0_text','field_5c82d258cbac7'),(126434,3663,'case_study_0_image',''),(126435,3663,'_case_study_0_image','field_5c82d266cbac8'),(126436,3663,'case_study_0_link',''),(126437,3663,'_case_study_0_link','field_5c82d275cbac9'),(126438,3663,'case_study_1_title',''),(126439,3663,'_case_study_1_title','field_5c82d24ccbac6'),(126440,3663,'case_study_1_text',''),(126441,3663,'_case_study_1_text','field_5c82d258cbac7'),(126442,3663,'case_study_1_image',''),(126443,3663,'_case_study_1_image','field_5c82d266cbac8'),(126444,3663,'case_study_1_link',''),(126445,3663,'_case_study_1_link','field_5c82d275cbac9'),(126446,3663,'case_study',''),(126447,3663,'_case_study','field_6059d436ba0ce'),(126448,3663,'banners',''),(126449,3663,'_banners','field_6059d073ba0ba'),(126450,3663,'blog_section_title',''),(126451,3663,'_blog_section_title','field_6059d32dba0c4'),(126452,3663,'inform_and_learn',''),(126453,3663,'_inform_and_learn','field_6059d34dba0c5'),(126454,3663,'inception_and_discovery',''),(126455,3663,'_inception_and_discovery','field_6059d361ba0c6'),(126456,3663,'digital_transformation',''),(126457,3663,'_digital_transformation','field_6059d375ba0c7'),(126458,3663,'services_microservices',''),(126459,3663,'_services_microservices','field_6059d397ba0c8'),(126460,3663,'services_microservices_image',''),(126461,3663,'_services_microservices_image','field_6059d3b9ba0c9'),(126462,3663,'services_machine',''),(126463,3663,'_services_machine','field_6059d3ccba0ca'),(126464,3663,'services_machine_image',''),(126465,3663,'_services_machine_image','field_6059d3e2ba0cb'),(126466,3663,'services_devops',''),(126467,3663,'_services_devops','field_6059d402ba0cc'),(126468,3663,'services_devops_image',''),(126469,3663,'_services_devops_image','field_6059d412ba0cd'),(126470,3663,'case_study_title','Sick Kids Hospital'),(126471,3663,'_case_study_title','field_6059d43fba0cf'),(126472,3663,'case_study_description','At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum'),(126473,3663,'_case_study_description','field_6059d44aba0d0'),(126474,3663,'case_study_image','2215'),(126475,3663,'_case_study_image','field_6059d459ba0d1'),(126476,3663,'case_study_link','#'),(126477,3663,'_case_study_link','field_6059d471ba0d2'),(126478,3663,'clients','10'),(126479,3663,'_clients','field_6059d489ba0d3'),(126480,3663,'case_study_2_title',''),(126481,3663,'_case_study_2_title','field_5c82d24ccbac6'),(126482,3663,'case_study_2_text',''),(126483,3663,'_case_study_2_text','field_5c82d258cbac7'),(126484,3663,'case_study_2_image',''),(126485,3663,'_case_study_2_image','field_5c82d266cbac8'),(126486,3663,'case_study_2_link',''),(126487,3663,'_case_study_2_link','field_5c82d275cbac9'),(126488,3663,'case_study_3_title',''),(126489,3663,'_case_study_3_title','field_5c82d24ccbac6'),(126490,3663,'case_study_3_text',''),(126491,3663,'_case_study_3_text','field_5c82d258cbac7'),(126492,3663,'case_study_3_image',''),(126493,3663,'_case_study_3_image','field_5c82d266cbac8'),(126494,3663,'case_study_3_link',''),(126495,3663,'_case_study_3_link','field_5c82d275cbac9'),(126496,3663,'clients_0_image','793'),(126497,3663,'_clients_0_image','field_6059d493ba0d4'),(126498,3663,'clients_1_image','794'),(126499,3663,'_clients_1_image','field_6059d493ba0d4'),(126500,3663,'clients_2_image','623'),(126501,3663,'_clients_2_image','field_6059d493ba0d4'),(126502,3663,'clients_3_image','796'),(126503,3663,'_clients_3_image','field_6059d493ba0d4'),(126504,3663,'clients_4_image','797'),(126505,3663,'_clients_4_image','field_6059d493ba0d4'),(126506,3663,'clients_5_image','798'),(126507,3663,'_clients_5_image','field_6059d493ba0d4'),(126508,3663,'clients_6_image','799'),(126509,3663,'_clients_6_image','field_6059d493ba0d4'),(126510,3663,'clients_7_image','800'),(126511,3663,'_clients_7_image','field_6059d493ba0d4'),(126512,3663,'clients_8_image','801'),(126513,3663,'_clients_8_image','field_6059d493ba0d4'),(126514,3663,'clients_9_image','802'),(126515,3663,'_clients_9_image','field_6059d493ba0d4'),(126516,3663,'case_title',''),(126517,3663,'_case_title','field_6059e3a6eec00'),(126518,3663,'case_description',''),(126519,3663,'_case_description','field_6059e3bdeec01'),(126520,3663,'case_image',''),(126521,3663,'_case_image','field_6059e3d7eec02'),(126522,3663,'case_link','#'),(126523,3663,'_case_link','field_6059e3e6eec03'),(126527,3664,'top-image','654'),(126528,3664,'_top-image','field_5c47486901570'),(126529,3664,'top-title','Data-Driven
Digital Transformation'),(126530,3664,'_top-title','field_5c47489001571'),(126531,3664,'top-text','We Partner with companies to build business value through software innovation.

Every company is now a technology company. How competitive are you in your industry? Let us help you.'),(126532,3664,'_top-text','field_5c47489e01572'),(126533,3664,'top-items_0_item','Cloud-Native'),(126534,3664,'_top-items_0_item','field_5c4748d001574'),(126535,3664,'top-items_1_item','Data Lake'),(126536,3664,'_top-items_1_item','field_5c4748d001574'),(126537,3664,'top-items_2_item','Kubernetes'),(126538,3664,'_top-items_2_item','field_5c4748d001574'),(126539,3664,'top-items_3_item','Scalable'),(126540,3664,'_top-items_3_item','field_5c4748d001574'),(126541,3664,'top-items_4_item','Secure'),(126542,3664,'_top-items_4_item','field_5c4748d001574'),(126543,3664,'top-items','5'),(126544,3664,'_top-items','field_5c4748c401573'),(126545,3664,'top-button','44'),(126546,3664,'_top-button','field_5c4748e601575'),(126547,3664,'services-presentation','Build cloud-native applications with Translucent\r\nCreate modern applications using state-of-the-art technology with TEKStack AI'),(126548,3664,'_services-presentation','field_5c474986bee5b'),(126549,3664,'call-title','Start a Conversation'),(126550,3664,'_call-title','field_5c4749bcbee5c'),(126551,3664,'call-text',''),(126552,3664,'_call-text','field_5c4749d7bee5d'),(126553,3664,'case-title','The Hospital for Sick Children'),(126554,3664,'_case-title','field_5c4749f4bee5e'),(126555,3664,'case-text',''),(126556,3664,'_case-text','field_5c474a4abee5f'),(126557,3664,'case-image','772'),(126558,3664,'_case-image','field_5c474a6dbee61'),(126559,3664,'case-link','38'),(126560,3664,'_case-link','field_5c476a3dac685'),(126561,3664,'case_study_0_title',''),(126562,3664,'_case_study_0_title','field_5c82d24ccbac6'),(126563,3664,'case_study_0_text',''),(126564,3664,'_case_study_0_text','field_5c82d258cbac7'),(126565,3664,'case_study_0_image',''),(126566,3664,'_case_study_0_image','field_5c82d266cbac8'),(126567,3664,'case_study_0_link',''),(126568,3664,'_case_study_0_link','field_5c82d275cbac9'),(126569,3664,'case_study_1_title',''),(126570,3664,'_case_study_1_title','field_5c82d24ccbac6'),(126571,3664,'case_study_1_text',''),(126572,3664,'_case_study_1_text','field_5c82d258cbac7'),(126573,3664,'case_study_1_image',''),(126574,3664,'_case_study_1_image','field_5c82d266cbac8'),(126575,3664,'case_study_1_link',''),(126576,3664,'_case_study_1_link','field_5c82d275cbac9'),(126577,3664,'case_study',''),(126578,3664,'_case_study','field_6059d436ba0ce'),(126579,3664,'banners',''),(126580,3664,'_banners','field_6059d073ba0ba'),(126581,3664,'blog_section_title',''),(126582,3664,'_blog_section_title','field_6059d32dba0c4'),(126583,3664,'inform_and_learn',''),(126584,3664,'_inform_and_learn','field_6059d34dba0c5'),(126585,3664,'inception_and_discovery',''),(126586,3664,'_inception_and_discovery','field_6059d361ba0c6'),(126587,3664,'digital_transformation',''),(126588,3664,'_digital_transformation','field_6059d375ba0c7'),(126589,3664,'services_microservices',''),(126590,3664,'_services_microservices','field_6059d397ba0c8'),(126591,3664,'services_microservices_image',''),(126592,3664,'_services_microservices_image','field_6059d3b9ba0c9'),(126593,3664,'services_machine',''),(126594,3664,'_services_machine','field_6059d3ccba0ca'),(126595,3664,'services_machine_image',''),(126596,3664,'_services_machine_image','field_6059d3e2ba0cb'),(126597,3664,'services_devops',''),(126598,3664,'_services_devops','field_6059d402ba0cc'),(126599,3664,'services_devops_image',''),(126600,3664,'_services_devops_image','field_6059d412ba0cd'),(126601,3664,'case_study_title','Sick Kids Hospital'),(126602,3664,'_case_study_title','field_6059d43fba0cf'),(126603,3664,'case_study_description','At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum'),(126604,3664,'_case_study_description','field_6059d44aba0d0'),(126605,3664,'case_study_image','2215'),(126606,3664,'_case_study_image','field_6059d459ba0d1'),(126607,3664,'case_study_link','#'),(126608,3664,'_case_study_link','field_6059d471ba0d2'),(126609,3664,'clients','10'),(126610,3664,'_clients','field_6059d489ba0d3'),(126611,3664,'case_study_2_title',''),(126612,3664,'_case_study_2_title','field_5c82d24ccbac6'),(126613,3664,'case_study_2_text',''),(126614,3664,'_case_study_2_text','field_5c82d258cbac7'),(126615,3664,'case_study_2_image',''),(126616,3664,'_case_study_2_image','field_5c82d266cbac8'),(126617,3664,'case_study_2_link',''),(126618,3664,'_case_study_2_link','field_5c82d275cbac9'),(126619,3664,'case_study_3_title',''),(126620,3664,'_case_study_3_title','field_5c82d24ccbac6'),(126621,3664,'case_study_3_text',''),(126622,3664,'_case_study_3_text','field_5c82d258cbac7'),(126623,3664,'case_study_3_image',''),(126624,3664,'_case_study_3_image','field_5c82d266cbac8'),(126625,3664,'case_study_3_link',''),(126626,3664,'_case_study_3_link','field_5c82d275cbac9'),(126627,3664,'clients_0_image','793'),(126628,3664,'_clients_0_image','field_6059d493ba0d4'),(126629,3664,'clients_1_image','794'),(126630,3664,'_clients_1_image','field_6059d493ba0d4'),(126631,3664,'clients_2_image','623'),(126632,3664,'_clients_2_image','field_6059d493ba0d4'),(126633,3664,'clients_3_image','796'),(126634,3664,'_clients_3_image','field_6059d493ba0d4'),(126635,3664,'clients_4_image','797'),(126636,3664,'_clients_4_image','field_6059d493ba0d4'),(126637,3664,'clients_5_image','798'),(126638,3664,'_clients_5_image','field_6059d493ba0d4'),(126639,3664,'clients_6_image','799'),(126640,3664,'_clients_6_image','field_6059d493ba0d4'),(126641,3664,'clients_7_image','800'),(126642,3664,'_clients_7_image','field_6059d493ba0d4'),(126643,3664,'clients_8_image','801'),(126644,3664,'_clients_8_image','field_6059d493ba0d4'),(126645,3664,'clients_9_image','802'),(126646,3664,'_clients_9_image','field_6059d493ba0d4'),(126647,3664,'case_title',''),(126648,3664,'_case_title','field_6059e3a6eec00'),(126649,3664,'case_description',''),(126650,3664,'_case_description','field_6059e3bdeec01'),(126651,3664,'case_image',''),(126652,3664,'_case_image','field_6059e3d7eec02'),(126653,3664,'case_link','#'),(126654,3664,'_case_link','field_6059e3e6eec03'),(126795,3666,'_edit_lock','1638463276:9'),(126796,3667,'_wp_attached_file','2021/12/provisioning-kubernetes-securing-virtual-machines.png'),(126797,3667,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:61:\"2021/12/provisioning-kubernetes-securing-virtual-machines.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:61:\"provisioning-kubernetes-securing-virtual-machines-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:62:\"provisioning-kubernetes-securing-virtual-machines-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:61:\"provisioning-kubernetes-securing-virtual-machines-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:61:\"provisioning-kubernetes-securing-virtual-machines-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:61:\"provisioning-kubernetes-securing-virtual-machines-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(126798,3667,'_wp_attachment_image_alt','provisioning kubernetes - securing virtual machines'),(126799,3667,'_imagify_optimization_level','0'),(126800,3667,'_imagify_status','success'),(126801,3667,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:394574;s:14:\"optimized_size\";i:344689;s:7:\"percent\";d:12.64;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:233651;s:14:\"optimized_size\";i:94332;s:7:\"percent\";d:59.63;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:228686;s:14:\"optimized_size\";i:108786;s:7:\"percent\";d:52.43;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26527;s:14:\"optimized_size\";i:14154;s:7:\"percent\";d:46.64;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:398670;s:14:\"optimized_size\";i:161934;s:7:\"percent\";d:59.38;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39625;s:14:\"optimized_size\";i:22958;s:7:\"percent\";d:42.06;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:394574;s:14:\"optimized_size\";i:204526;s:7:\"percent\";d:48.17;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39625;s:14:\"optimized_size\";i:34702;s:7:\"percent\";d:12.42;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:398670;s:14:\"optimized_size\";i:339728;s:7:\"percent\";d:14.78;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26527;s:14:\"optimized_size\";i:23067;s:7:\"percent\";d:13.04;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:228686;s:14:\"optimized_size\";i:197406;s:7:\"percent\";d:13.68;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:233651;s:14:\"optimized_size\";i:199401;s:7:\"percent\";d:14.66;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2643466;s:14:\"optimized_size\";i:1745683;s:7:\"percent\";d:33.96;}}'),(126802,3666,'_thumbnail_id','3667'),(126803,3666,'_edit_last','9'),(126804,3666,'hefo_before','0'),(126805,3666,'hefo_after','0'),(126806,3666,'ao_post_optimize','a:5:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";}'),(126807,3666,'_yoast_wpseo_primary_category','94'),(126808,3666,'_yoast_wpseo_content_score','90'),(126809,3666,'_yoast_wpseo_focuskeywords','[]'),(126810,3666,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(126811,3666,'_yoast_wpseo_estimated-reading-time-minutes','1'),(126882,3670,'_edit_lock','1653084820:4'),(126883,3671,'_wp_attached_file','2021/12/unnamed-4.png'),(126884,3671,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:823;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2021/12/unnamed-4.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"unnamed-4-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:21:\"unnamed-4-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:21:\"unnamed-4-768x280.png\";s:5:\"width\";i:768;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:21:\"unnamed-4-500x300.png\";s:5:\"width\";i:500;s:6:\"height\";i:300;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:{}}}'),(126885,3671,'_imagify_optimization_level','0'),(126886,3671,'_imagify_status','success'),(126887,3671,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:62735;s:14:\"optimized_size\";i:49254;s:7:\"percent\";d:21.49;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:50622;s:14:\"optimized_size\";i:41200;s:7:\"percent\";d:18.61;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:136649;s:14:\"optimized_size\";i:51026;s:7:\"percent\";d:62.66;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9987;s:14:\"optimized_size\";i:9586;s:7:\"percent\";d:4.02;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25499;s:14:\"optimized_size\";i:13972;s:7:\"percent\";d:45.21;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:62735;s:14:\"optimized_size\";i:54648;s:7:\"percent\";d:12.89;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25499;s:14:\"optimized_size\";i:17015;s:7:\"percent\";d:33.27;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9987;s:14:\"optimized_size\";i:6849;s:7:\"percent\";d:31.42;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:136649;s:14:\"optimized_size\";i:74883;s:7:\"percent\";d:45.2;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:50622;s:14:\"optimized_size\";i:34677;s:7:\"percent\";d:31.5;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:570984;s:14:\"optimized_size\";i:353110;s:7:\"percent\";d:38.16;}}'),(126888,3672,'_wp_attached_file','2021/12/unnamed-5.png'),(126889,3672,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:839;s:6:\"height\";i:207;s:4:\"file\";s:21:\"2021/12/unnamed-5.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"unnamed-5-300x74.png\";s:5:\"width\";i:300;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"unnamed-5-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:21:\"unnamed-5-768x189.png\";s:5:\"width\";i:768;s:6:\"height\";i:189;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:21:\"unnamed-5-500x207.png\";s:5:\"width\";i:500;s:6:\"height\";i:207;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:{}}}'),(126890,3672,'_imagify_optimization_level','0'),(126891,3672,'_imagify_status','success'),(126892,3672,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23955;s:14:\"optimized_size\";i:19520;s:7:\"percent\";d:18.51;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15186;s:14:\"optimized_size\";i:16902;s:7:\"percent\";d:-11.3;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:109826;s:14:\"optimized_size\";i:27248;s:7:\"percent\";d:75.19;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19215;s:14:\"optimized_size\";i:6362;s:7:\"percent\";d:66.89;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19813;s:14:\"optimized_size\";i:7826;s:7:\"percent\";d:60.5;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23955;s:14:\"optimized_size\";i:25258;s:7:\"percent\";d:-5.44;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19813;s:14:\"optimized_size\";i:14347;s:7:\"percent\";d:27.59;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19215;s:14:\"optimized_size\";i:13334;s:7:\"percent\";d:30.61;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:109826;s:14:\"optimized_size\";i:72615;s:7:\"percent\";d:33.88;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15186;s:14:\"optimized_size\";i:10827;s:7:\"percent\";d:28.7;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:375990;s:14:\"optimized_size\";i:214239;s:7:\"percent\";d:43.02;}}'),(126893,3673,'_wp_attached_file','2021/12/unnamed-4-1.png'),(126894,3673,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:807;s:6:\"height\";i:260;s:4:\"file\";s:23:\"2021/12/unnamed-4-1.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"unnamed-4-1-300x97.png\";s:5:\"width\";i:300;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"unnamed-4-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:23:\"unnamed-4-1-768x247.png\";s:5:\"width\";i:768;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:23:\"unnamed-4-1-500x260.png\";s:5:\"width\";i:500;s:6:\"height\";i:260;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:{}}}'),(126895,3673,'_imagify_optimization_level','0'),(126896,3673,'_imagify_status','success'),(126897,3673,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:38754;s:14:\"optimized_size\";i:31977;s:7:\"percent\";d:17.49;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23885;s:14:\"optimized_size\";i:21966;s:7:\"percent\";d:8.03;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:74797;s:14:\"optimized_size\";i:33406;s:7:\"percent\";d:55.34;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8770;s:14:\"optimized_size\";i:4400;s:7:\"percent\";d:49.83;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18581;s:14:\"optimized_size\";i:9352;s:7:\"percent\";d:49.67;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:38754;s:14:\"optimized_size\";i:33390;s:7:\"percent\";d:13.84;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18581;s:14:\"optimized_size\";i:12626;s:7:\"percent\";d:32.05;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8770;s:14:\"optimized_size\";i:5329;s:7:\"percent\";d:39.24;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:74797;s:14:\"optimized_size\";i:52148;s:7:\"percent\";d:30.28;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23885;s:14:\"optimized_size\";i:17527;s:7:\"percent\";d:26.62;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:329574;s:14:\"optimized_size\";i:222121;s:7:\"percent\";d:32.6;}}'),(126898,3674,'_wp_attached_file','2021/12/unnamed-5-1.png'),(126899,3674,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:807;s:6:\"height\";i:288;s:4:\"file\";s:23:\"2021/12/unnamed-5-1.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"unnamed-5-1-300x107.png\";s:5:\"width\";i:300;s:6:\"height\";i:107;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"unnamed-5-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:23:\"unnamed-5-1-768x274.png\";s:5:\"width\";i:768;s:6:\"height\";i:274;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:23:\"unnamed-5-1-500x288.png\";s:5:\"width\";i:500;s:6:\"height\";i:288;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:{}}}'),(126900,3674,'_imagify_optimization_level','0'),(126901,3674,'_imagify_status','success'),(126902,3674,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:53688;s:14:\"optimized_size\";i:42104;s:7:\"percent\";d:21.58;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40449;s:14:\"optimized_size\";i:34016;s:7:\"percent\";d:15.9;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:97226;s:14:\"optimized_size\";i:47466;s:7:\"percent\";d:51.18;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14440;s:14:\"optimized_size\";i:6896;s:7:\"percent\";d:52.24;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21793;s:14:\"optimized_size\";i:11802;s:7:\"percent\";d:45.84;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:53688;s:14:\"optimized_size\";i:46476;s:7:\"percent\";d:13.43;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21793;s:14:\"optimized_size\";i:14920;s:7:\"percent\";d:31.54;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14440;s:14:\"optimized_size\";i:9796;s:7:\"percent\";d:32.16;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:97226;s:14:\"optimized_size\";i:66880;s:7:\"percent\";d:31.21;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40449;s:14:\"optimized_size\";i:28028;s:7:\"percent\";d:30.71;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:455192;s:14:\"optimized_size\";i:308384;s:7:\"percent\";d:32.25;}}'),(126903,3675,'_wp_attached_file','2021/12/unnamed-4-2.png'),(126904,3675,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:744;s:6:\"height\";i:484;s:4:\"file\";s:23:\"2021/12/unnamed-4-2.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"unnamed-4-2-300x195.png\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"unnamed-4-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:23:\"unnamed-4-2-500x484.png\";s:5:\"width\";i:500;s:6:\"height\";i:484;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:{}}}'),(126905,3675,'_imagify_optimization_level','0'),(126906,3675,'_imagify_status','success'),(126907,3675,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16622;s:14:\"optimized_size\";i:7244;s:7:\"percent\";d:56.42;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14449;s:14:\"optimized_size\";i:23960;s:7:\"percent\";d:-65.82;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12139;s:14:\"optimized_size\";i:5934;s:7:\"percent\";d:51.12;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21983;s:14:\"optimized_size\";i:10624;s:7:\"percent\";d:51.67;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16622;s:14:\"optimized_size\";i:28978;s:7:\"percent\";d:-74.34;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21983;s:14:\"optimized_size\";i:10128;s:7:\"percent\";d:53.93;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12139;s:14:\"optimized_size\";i:5413;s:7:\"percent\";d:55.41;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14449;s:14:\"optimized_size\";i:5716;s:7:\"percent\";d:60.44;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:130386;s:14:\"optimized_size\";i:97997;s:7:\"percent\";d:24.84;}}'),(126908,3676,'_wp_attached_file','2021/12/unnamed-5-2.png'),(126909,3676,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:995;s:4:\"file\";s:23:\"2021/12/unnamed-5-2.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"unnamed-5-2-300x187.png\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"unnamed-5-2-1024x637.png\";s:5:\"width\";i:1024;s:6:\"height\";i:637;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"unnamed-5-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:23:\"unnamed-5-2-768x478.png\";s:5:\"width\";i:768;s:6:\"height\";i:478;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"unnamed-5-2-1536x955.png\";s:5:\"width\";i:1536;s:6:\"height\";i:955;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:23:\"unnamed-5-2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(126910,3676,'_imagify_optimization_level','0'),(126911,3676,'_imagify_status','success'),(126912,3676,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:125510;s:14:\"optimized_size\";i:118090;s:7:\"percent\";d:5.91;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:94698;s:14:\"optimized_size\";i:40936;s:7:\"percent\";d:56.77;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:291659;s:14:\"optimized_size\";i:184510;s:7:\"percent\";d:36.74;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:96223;s:14:\"optimized_size\";i:69746;s:7:\"percent\";d:27.52;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9734;s:14:\"optimized_size\";i:8714;s:7:\"percent\";d:10.48;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:118115;s:14:\"optimized_size\";i:90032;s:7:\"percent\";d:23.78;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19285;s:14:\"optimized_size\";i:19360;s:7:\"percent\";d:-0.39;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:125510;s:14:\"optimized_size\";i:141680;s:7:\"percent\";d:-12.88;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19285;s:14:\"optimized_size\";i:12933;s:7:\"percent\";d:32.94;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:118115;s:14:\"optimized_size\";i:95279;s:7:\"percent\";d:19.33;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9734;s:14:\"optimized_size\";i:7011;s:7:\"percent\";d:27.97;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:96223;s:14:\"optimized_size\";i:73701;s:7:\"percent\";d:23.41;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:291659;s:14:\"optimized_size\";i:229923;s:7:\"percent\";d:21.17;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:94698;s:14:\"optimized_size\";i:62952;s:7:\"percent\";d:33.52;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1510448;s:14:\"optimized_size\";i:1154867;s:7:\"percent\";d:23.54;}}'),(126913,3670,'_edit_last','4'),(126914,3670,'hefo_before','0'),(126915,3670,'hefo_after','0'),(126916,3670,'ao_post_optimize','a:5:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";}'),(126917,3670,'_yoast_wpseo_content_score','30'),(126918,3670,'_yoast_wpseo_focuskeywords','[]'),(126919,3670,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(126920,3670,'_yoast_wpseo_estimated-reading-time-minutes','3'),(126921,3678,'_wp_attached_file','2021/12/0011_new_jakub_blog_banners_46_apacheairflow_datapipeline.png'),(126922,3678,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:69:\"2021/12/0011_new_jakub_blog_banners_46_apacheairflow_datapipeline.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:69:\"0011_new_jakub_blog_banners_46_apacheairflow_datapipeline-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:70:\"0011_new_jakub_blog_banners_46_apacheairflow_datapipeline-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:69:\"0011_new_jakub_blog_banners_46_apacheairflow_datapipeline-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:69:\"0011_new_jakub_blog_banners_46_apacheairflow_datapipeline-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:69:\"0011_new_jakub_blog_banners_46_apacheairflow_datapipeline-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(126923,3670,'_thumbnail_id','3678'),(126924,3678,'_imagify_optimization_level','0'),(126925,3678,'_imagify_status','success'),(126926,3678,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:682636;s:14:\"optimized_size\";i:597074;s:7:\"percent\";d:12.53;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:305415;s:14:\"optimized_size\";i:124110;s:7:\"percent\";d:59.36;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:391264;s:14:\"optimized_size\";i:184958;s:7:\"percent\";d:52.73;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33892;s:14:\"optimized_size\";i:14628;s:7:\"percent\";d:56.84;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:669258;s:14:\"optimized_size\";i:277136;s:7:\"percent\";d:58.59;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:70953;s:14:\"optimized_size\";i:35608;s:7:\"percent\";d:49.81;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:682636;s:14:\"optimized_size\";i:360708;s:7:\"percent\";d:47.16;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:70953;s:14:\"optimized_size\";i:62200;s:7:\"percent\";d:12.34;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:669258;s:14:\"optimized_size\";i:569297;s:7:\"percent\";d:14.94;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33892;s:14:\"optimized_size\";i:29488;s:7:\"percent\";d:12.99;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:391264;s:14:\"optimized_size\";i:336741;s:7:\"percent\";d:13.94;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:305415;s:14:\"optimized_size\";i:258448;s:7:\"percent\";d:15.38;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:4306836;s:14:\"optimized_size\";i:2850396;s:7:\"percent\";d:33.82;}}'),(126927,3670,'_yoast_wpseo_primary_category','1027'),(126956,3670,'wpdiscuz_post_rating','5'),(126957,3670,'wpdiscuz_post_rating_count','1'),(126959,3679,'_wp_attached_file','2021/12/home11-crop-e1638547344827.png'),(126960,3679,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:328;s:4:\"file\";s:38:\"2021/12/home11-crop-e1638547344827.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"home11-crop-300x197.png\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"home11-crop-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:23:\"home11-crop-768x504.png\";s:5:\"width\";i:768;s:6:\"height\";i:504;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:23:\"home11-crop-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(126964,3679,'_imagify_optimization_level','2'),(126965,3679,'_imagify_status','already_optimized'),(126966,3679,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:173256;s:14:\"optimized_size\";i:60792;s:7:\"percent\";d:64.91;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:262258;s:14:\"optimized_size\";i:92068;s:7:\"percent\";d:64.89;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24300;s:14:\"optimized_size\";i:9668;s:7:\"percent\";d:60.21;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:57240;s:14:\"optimized_size\";i:22266;s:7:\"percent\";d:61.1;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:89526;s:14:\"optimized_size\";i:137770;s:7:\"percent\";d:-53.89;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:606580;s:14:\"optimized_size\";i:322564;s:7:\"percent\";d:46.82;}}'),(126967,3679,'_edit_lock','1638547222:4'),(126968,3679,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:989;s:6:\"height\";i:649;s:4:\"file\";s:15:\"home11-crop.png\";}}'),(126969,3647,'_edit_lock','1638551748:4'),(126970,3645,'_edit_lock','1638550465:4'),(126971,3680,'_wp_attached_file','2021/12/home3-crop.jpg'),(126972,3680,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:837;s:6:\"height\";i:591;s:4:\"file\";s:22:\"2021/12/home3-crop.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"home3-crop-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"home3-crop-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:\"home3-crop-768x542.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"home3-crop-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(126973,3680,'_imagify_optimization_level','0'),(126974,3680,'_imagify_status','success'),(126975,3680,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:87939;s:14:\"optimized_size\";i:77290;s:7:\"percent\";d:12.11;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31393;s:14:\"optimized_size\";i:80758;s:7:\"percent\";d:-157.25;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41480;s:14:\"optimized_size\";i:101224;s:7:\"percent\";d:-144.03;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5326;s:14:\"optimized_size\";i:13732;s:7:\"percent\";d:-157.83;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10236;s:14:\"optimized_size\";i:26812;s:7:\"percent\";d:-161.94;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:87939;s:14:\"optimized_size\";i:143746;s:7:\"percent\";d:-63.46;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10236;s:14:\"optimized_size\";i:9233;s:7:\"percent\";d:9.8;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5326;s:14:\"optimized_size\";i:4831;s:7:\"percent\";d:9.29;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41480;s:14:\"optimized_size\";i:37144;s:7:\"percent\";d:10.45;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31393;s:14:\"optimized_size\";i:28655;s:7:\"percent\";d:8.72;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:352748;s:14:\"optimized_size\";i:523425;s:7:\"percent\";d:-48.38;}}'),(126976,3680,'_edit_lock','1638550690:4'),(126977,3681,'_wp_attached_file','2021/12/home2-crop.png'),(126978,3681,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:896;s:6:\"height\";i:650;s:4:\"file\";s:22:\"2021/12/home2-crop.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"home2-crop-300x218.png\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"home2-crop-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:\"home2-crop-768x557.png\";s:5:\"width\";i:768;s:6:\"height\";i:557;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"home2-crop-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(126979,3682,'_wp_attached_file','2021/12/home4-crop.png'),(126980,3682,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:914;s:6:\"height\";i:649;s:4:\"file\";s:22:\"2021/12/home4-crop.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"home4-crop-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:22:\"home4-crop-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:\"home4-crop-768x545.png\";s:5:\"width\";i:768;s:6:\"height\";i:545;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"home4-crop-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(126981,3681,'_imagify_optimization_level','0'),(126982,3681,'_imagify_status','already_optimized'),(126983,3681,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:140231;s:14:\"optimized_size\";i:136218;s:7:\"percent\";d:2.86;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:227343;s:14:\"optimized_size\";i:211046;s:7:\"percent\";d:7.17;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20564;s:14:\"optimized_size\";i:22438;s:7:\"percent\";d:-9.11;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52132;s:14:\"optimized_size\";i:50918;s:7:\"percent\";d:2.33;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:67099;s:14:\"optimized_size\";i:271890;s:7:\"percent\";d:-305.21;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:507369;s:14:\"optimized_size\";i:692510;s:7:\"percent\";d:-36.49;}}'),(126984,3683,'_wp_attached_file','2021/12/hom3-crop.png'),(126985,3683,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:906;s:6:\"height\";i:641;s:4:\"file\";s:21:\"2021/12/hom3-crop.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"hom3-crop-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"hom3-crop-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:21:\"hom3-crop-768x543.png\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:21:\"hom3-crop-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(126986,3682,'_imagify_optimization_level','0'),(126987,3682,'_imagify_status','already_optimized'),(126988,3682,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:175827;s:14:\"optimized_size\";i:172628;s:7:\"percent\";d:1.82;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:285722;s:14:\"optimized_size\";i:251748;s:7:\"percent\";d:11.89;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27637;s:14:\"optimized_size\";i:25864;s:7:\"percent\";d:6.42;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:67429;s:14:\"optimized_size\";i:62448;s:7:\"percent\";d:7.39;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:89366;s:14:\"optimized_size\";i:324498;s:7:\"percent\";d:-263.11;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:645981;s:14:\"optimized_size\";i:837186;s:7:\"percent\";d:-29.6;}}'),(126989,3683,'_imagify_optimization_level','0'),(126990,3683,'_imagify_status','already_optimized'),(126991,3683,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:215013;s:14:\"optimized_size\";i:188794;s:7:\"percent\";d:12.19;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:302743;s:14:\"optimized_size\";i:274972;s:7:\"percent\";d:9.17;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33522;s:14:\"optimized_size\";i:28502;s:7:\"percent\";d:14.98;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:72545;s:14:\"optimized_size\";i:64390;s:7:\"percent\";d:11.24;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:90354;s:14:\"optimized_size\";i:344802;s:7:\"percent\";d:-281.61;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:714177;s:14:\"optimized_size\";i:901460;s:7:\"percent\";d:-26.22;}}'),(127005,3684,'main-title','Cloud Native Solutions Your Business Depends On'),(127006,3684,'_main-title','field_6176c354de231'),(127007,3684,'title-1','Digital Transformation What’s In It For Me?'),(127008,3684,'_title-1','field_6176c363de232'),(127009,3684,'phrase-1','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(127010,3684,'_phrase-1','field_6176c396de234'),(127011,3684,'button-cta-1','LEARN MORE'),(127012,3684,'_button-cta-1','field_6176c3c9de236'),(127013,3684,'title-2','Our Technology is Stacked'),(127014,3684,'_title-2','field_6176c388de233'),(127015,3684,'phrase-2','Data-Driven application tools and processes specialized in building cloud native applications. \r\nOptimize your development by 20% to 50%, by using production-ready open source tools.'),(127016,3684,'_phrase-2','field_6176c3adde235'),(127017,3684,'button-cta-2','LEARN MORE'),(127018,3684,'_button-cta-2','field_6176c3d7de237'),(127019,3684,'background','3525'),(127020,3684,'_background','field_6176cdd41416a'),(127021,3684,'link-cta-1','https://translucent.local/what-is-data-driven-digital-transformation/'),(127022,3684,'_link-cta-1','field_61781a892a517'),(127023,3684,'link-cta-2','https://translucent.local/tekstack-ai/'),(127024,3684,'_link-cta-2','field_61781a982a518'),(127029,3685,'main-title','Cloud Native Solutions Your Business Depends On'),(127030,3685,'_main-title','field_6176c354de231'),(127031,3685,'title-1','Digital Transformation What’s In It For Me?'),(127032,3685,'_title-1','field_6176c363de232'),(127033,3685,'phrase-1','You’re not Netflix. Or Facebook. Or Google. \r\nYour organization has its own unique identity, so you shouldn’t try to be like another organization.'),(127034,3685,'_phrase-1','field_6176c396de234'),(127035,3685,'button-cta-1','LEARN MORE'),(127036,3685,'_button-cta-1','field_6176c3c9de236'),(127037,3685,'title-2','Our Technology is Stacked'),(127038,3685,'_title-2','field_6176c388de233'),(127039,3685,'phrase-2','Data-Driven application tools and processes specialized in building cloud native applications. \r\nOptimize your development by 20% to 50%, by using production-ready open source tools.'),(127040,3685,'_phrase-2','field_6176c3adde235'),(127041,3685,'button-cta-2','LEARN MORE'),(127042,3685,'_button-cta-2','field_6176c3d7de237'),(127043,3685,'background',''),(127044,3685,'_background','field_6176cdd41416a'),(127045,3685,'link-cta-1','https://translucent.local/what-is-data-driven-digital-transformation/'),(127046,3685,'_link-cta-1','field_61781a892a517'),(127047,3685,'link-cta-2','https://translucent.local/tekstack-ai/'),(127048,3685,'_link-cta-2','field_61781a982a518'),(127301,3688,'_edit_lock','1653084603:4'),(127302,3689,'_wp_attached_file','2021/12/Screenshot-2021-12-10-at-16.28.49.png'),(127303,3689,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2283;s:6:\"height\";i:774;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-10-at-16.28.49.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.28.49-300x102.png\";s:5:\"width\";i:300;s:6:\"height\";i:102;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-12-10-at-16.28.49-1024x347.png\";s:5:\"width\";i:1024;s:6:\"height\";i:347;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.28.49-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:45:\"Screenshot-2021-12-10-at-16.28.49-768x260.png\";s:5:\"width\";i:768;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-12-10-at-16.28.49-1536x521.png\";s:5:\"width\";i:1536;s:6:\"height\";i:521;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-12-10-at-16.28.49-2048x694.png\";s:5:\"width\";i:2048;s:6:\"height\";i:694;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.28.49-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(127304,3689,'_imagify_optimization_level','0'),(127305,3689,'_imagify_status','success'),(127306,3689,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:152282;s:14:\"optimized_size\";i:97104;s:7:\"percent\";d:36.23;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:168076;s:14:\"optimized_size\";i:6254;s:7:\"percent\";d:96.28;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1011144;s:14:\"optimized_size\";i:90734;s:7:\"percent\";d:91.03;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:322728;s:14:\"optimized_size\";i:69896;s:7:\"percent\";d:78.34;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:85932;s:14:\"optimized_size\";i:30828;s:7:\"percent\";d:64.13;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7735;s:14:\"optimized_size\";i:542;s:7:\"percent\";d:92.99;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:273165;s:14:\"optimized_size\";i:42188;s:7:\"percent\";d:84.56;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20908;s:14:\"optimized_size\";i:7720;s:7:\"percent\";d:63.08;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:152282;s:14:\"optimized_size\";i:100196;s:7:\"percent\";d:34.2;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20908;s:14:\"optimized_size\";i:11335;s:7:\"percent\";d:45.79;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:273165;s:14:\"optimized_size\";i:177544;s:7:\"percent\";d:35;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7735;s:14:\"optimized_size\";i:4078;s:7:\"percent\";d:47.28;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:85932;s:14:\"optimized_size\";i:58791;s:7:\"percent\";d:31.58;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:322728;s:14:\"optimized_size\";i:215641;s:7:\"percent\";d:33.18;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1011144;s:14:\"optimized_size\";i:635642;s:7:\"percent\";d:37.14;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:168076;s:14:\"optimized_size\";i:74996;s:7:\"percent\";d:55.38;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:4083940;s:14:\"optimized_size\";i:1623489;s:7:\"percent\";d:60.25;}}'),(127307,3690,'_wp_attached_file','2021/12/Screenshot-2021-12-10-at-16.30.46.png'),(127308,3690,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2390;s:6:\"height\";i:682;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-10-at-16.30.46.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Screenshot-2021-12-10-at-16.30.46-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:46:\"Screenshot-2021-12-10-at-16.30.46-1024x292.png\";s:5:\"width\";i:1024;s:6:\"height\";i:292;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.30.46-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:45:\"Screenshot-2021-12-10-at-16.30.46-768x219.png\";s:5:\"width\";i:768;s:6:\"height\";i:219;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-12-10-at-16.30.46-1536x438.png\";s:5:\"width\";i:1536;s:6:\"height\";i:438;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-12-10-at-16.30.46-2048x584.png\";s:5:\"width\";i:2048;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.30.46-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(127309,3690,'_imagify_optimization_level','0'),(127310,3690,'_imagify_status','success'),(127311,3690,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:334941;s:14:\"optimized_size\";i:217151;s:7:\"percent\";d:35.17;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:247336;s:14:\"optimized_size\";i:81666;s:7:\"percent\";d:66.98;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:766727;s:14:\"optimized_size\";i:280458;s:7:\"percent\";d:63.42;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:641100;s:14:\"optimized_size\";i:208946;s:7:\"percent\";d:67.41;}s:25:\"medium_large@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:22:\"thumbnail@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:18:\"large@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:19:\"medium@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:17:\"full@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:6:\"medium\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:5:\"large\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:12:\"medium_large\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:9:\"1536x1536\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:9:\"2048x2048\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:7:\"feature\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1990104;s:14:\"optimized_size\";i:788221;s:7:\"percent\";d:60.39;}}'),(127312,3691,'_wp_attached_file','2021/12/Screenshot-2021-12-10-at-16.33.26.png'),(127313,3691,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1998;s:6:\"height\";i:1172;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-10-at-16.33.26.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.33.26-300x176.png\";s:5:\"width\";i:300;s:6:\"height\";i:176;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-12-10-at-16.33.26-1024x601.png\";s:5:\"width\";i:1024;s:6:\"height\";i:601;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.33.26-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:45:\"Screenshot-2021-12-10-at-16.33.26-768x450.png\";s:5:\"width\";i:768;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-12-10-at-16.33.26-1536x901.png\";s:5:\"width\";i:1536;s:6:\"height\";i:901;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.33.26-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(127314,3691,'_imagify_optimization_level','0'),(127315,3691,'_imagify_status','error'),(127316,3691,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(127317,3692,'_wp_attached_file','2021/12/Screenshot-2021-12-10-at-16.34.31.png'),(127318,3692,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1515;s:6:\"height\";i:596;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-10-at-16.34.31.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.34.31-300x118.png\";s:5:\"width\";i:300;s:6:\"height\";i:118;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-12-10-at-16.34.31-1024x403.png\";s:5:\"width\";i:1024;s:6:\"height\";i:403;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.34.31-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:45:\"Screenshot-2021-12-10-at-16.34.31-768x302.png\";s:5:\"width\";i:768;s:6:\"height\";i:302;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.34.31-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(127319,3692,'_imagify_optimization_level','0'),(127320,3692,'_imagify_status','error'),(127321,3692,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(127322,3693,'_wp_attached_file','2021/12/Screenshot-2021-12-10-at-16.35.15.png'),(127323,3693,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1505;s:6:\"height\";i:448;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-10-at-16.35.15.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Screenshot-2021-12-10-at-16.35.15-300x89.png\";s:5:\"width\";i:300;s:6:\"height\";i:89;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-12-10-at-16.35.15-1024x305.png\";s:5:\"width\";i:1024;s:6:\"height\";i:305;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.35.15-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:45:\"Screenshot-2021-12-10-at-16.35.15-768x229.png\";s:5:\"width\";i:768;s:6:\"height\";i:229;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.35.15-500x448.png\";s:5:\"width\";i:500;s:6:\"height\";i:448;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:{}}}'),(127324,3693,'_imagify_optimization_level','0'),(127325,3693,'_imagify_status','error'),(127326,3693,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(127327,3694,'_wp_attached_file','2021/12/Screenshot-2021-12-10-at-16.38.31.png'),(127328,3694,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1824;s:6:\"height\";i:346;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-10-at-16.38.31.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Screenshot-2021-12-10-at-16.38.31-300x57.png\";s:5:\"width\";i:300;s:6:\"height\";i:57;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-12-10-at-16.38.31-1024x194.png\";s:5:\"width\";i:1024;s:6:\"height\";i:194;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.38.31-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:45:\"Screenshot-2021-12-10-at-16.38.31-768x146.png\";s:5:\"width\";i:768;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-12-10-at-16.38.31-1536x291.png\";s:5:\"width\";i:1536;s:6:\"height\";i:291;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.38.31-500x346.png\";s:5:\"width\";i:500;s:6:\"height\";i:346;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:{}}}'),(127329,3694,'_imagify_optimization_level','0'),(127330,3694,'_imagify_status','error'),(127331,3694,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(127332,3695,'_wp_attached_file','2021/12/Screenshot-2021-12-10-at-16.41.44.png'),(127333,3695,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1495;s:6:\"height\";i:859;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-10-at-16.41.44.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.41.44-300x172.png\";s:5:\"width\";i:300;s:6:\"height\";i:172;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-12-10-at-16.41.44-1024x588.png\";s:5:\"width\";i:1024;s:6:\"height\";i:588;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.41.44-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:45:\"Screenshot-2021-12-10-at-16.41.44-768x441.png\";s:5:\"width\";i:768;s:6:\"height\";i:441;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.41.44-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(127334,3695,'_imagify_optimization_level','0'),(127335,3695,'_imagify_status','error'),(127336,3695,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(127337,3696,'_wp_attached_file','2021/12/Screenshot-2021-12-10-at-16.42.49.png'),(127338,3696,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1508;s:6:\"height\";i:628;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-10-at-16.42.49.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.42.49-300x125.png\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-12-10-at-16.42.49-1024x426.png\";s:5:\"width\";i:1024;s:6:\"height\";i:426;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.42.49-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:45:\"Screenshot-2021-12-10-at-16.42.49-768x320.png\";s:5:\"width\";i:768;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.42.49-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(127339,3696,'_imagify_optimization_level','0'),(127340,3696,'_imagify_status','error'),(127341,3696,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(127342,3697,'_wp_attached_file','2021/12/Screenshot-2021-12-10-at-16.44.15.png'),(127343,3697,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1499;s:6:\"height\";i:1108;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-10-at-16.44.15.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.44.15-300x222.png\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-12-10-at-16.44.15-1024x757.png\";s:5:\"width\";i:1024;s:6:\"height\";i:757;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.44.15-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:45:\"Screenshot-2021-12-10-at-16.44.15-768x568.png\";s:5:\"width\";i:768;s:6:\"height\";i:568;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.44.15-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(127344,3697,'_imagify_optimization_level','0'),(127345,3697,'_imagify_status','error'),(127346,3697,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(127347,3698,'_wp_attached_file','2021/12/Screenshot-2021-12-10-at-16.44.56.png'),(127348,3698,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1501;s:6:\"height\";i:824;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-10-at-16.44.56.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.44.56-300x165.png\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-12-10-at-16.44.56-1024x562.png\";s:5:\"width\";i:1024;s:6:\"height\";i:562;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.44.56-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:45:\"Screenshot-2021-12-10-at-16.44.56-768x422.png\";s:5:\"width\";i:768;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-16.44.56-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(127349,3698,'_imagify_optimization_level','0'),(127350,3698,'_imagify_status','error'),(127351,3698,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(127352,3699,'_wp_attached_file','2021/12/Screenshot-2021-12-10-at-16.44.56-1.png'),(127353,3699,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1501;s:6:\"height\";i:824;s:4:\"file\";s:47:\"2021/12/Screenshot-2021-12-10-at-16.44.56-1.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Screenshot-2021-12-10-at-16.44.56-1-300x165.png\";s:5:\"width\";i:300;s:6:\"height\";i:165;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Screenshot-2021-12-10-at-16.44.56-1-1024x562.png\";s:5:\"width\";i:1024;s:6:\"height\";i:562;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Screenshot-2021-12-10-at-16.44.56-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:47:\"Screenshot-2021-12-10-at-16.44.56-1-768x422.png\";s:5:\"width\";i:768;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:47:\"Screenshot-2021-12-10-at-16.44.56-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(127354,3699,'_imagify_optimization_level','0'),(127355,3699,'_imagify_status','error'),(127356,3699,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(127357,3700,'_wp_attached_file','2021/12/Screenshot-2021-12-10-at-17.44.06.png'),(127358,3700,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:537;s:6:\"height\";i:785;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-10-at-17.44.06.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-17.44.06-205x300.png\";s:5:\"width\";i:205;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-17.44.06-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-17.44.06-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(127359,3700,'_imagify_optimization_level','0'),(127360,3700,'_imagify_status','error'),(127361,3700,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(127362,3701,'_wp_attached_file','2021/12/Screenshot-2021-12-10-at-17.45.19.png'),(127363,3701,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1485;s:6:\"height\";i:930;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-10-at-17.45.19.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-17.45.19-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-12-10-at-17.45.19-1024x641.png\";s:5:\"width\";i:1024;s:6:\"height\";i:641;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-17.45.19-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:45:\"Screenshot-2021-12-10-at-17.45.19-768x481.png\";s:5:\"width\";i:768;s:6:\"height\";i:481;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-17.45.19-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(127364,3701,'_imagify_optimization_level','0'),(127365,3701,'_imagify_status','error'),(127366,3701,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(127367,3702,'_wp_attached_file','2021/12/Screenshot-2021-12-10-at-17.46.41.png'),(127368,3702,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1515;s:6:\"height\";i:104;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-10-at-17.46.41.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Screenshot-2021-12-10-at-17.46.41-300x21.png\";s:5:\"width\";i:300;s:6:\"height\";i:21;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-17.46.41-1024x70.png\";s:5:\"width\";i:1024;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-17.46.41-150x104.png\";s:5:\"width\";i:150;s:6:\"height\";i:104;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"Screenshot-2021-12-10-at-17.46.41-768x53.png\";s:5:\"width\";i:768;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-17.46.41-500x104.png\";s:5:\"width\";i:500;s:6:\"height\";i:104;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:{}}}'),(127369,3702,'_imagify_optimization_level','0'),(127370,3702,'_imagify_status','error'),(127371,3702,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(127372,3703,'_wp_attached_file','2021/12/Screenshot-2021-12-10-at-17.47.21.png'),(127373,3703,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1498;s:6:\"height\";i:495;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-10-at-17.47.21.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Screenshot-2021-12-10-at-17.47.21-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-12-10-at-17.47.21-1024x338.png\";s:5:\"width\";i:1024;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-17.47.21-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:45:\"Screenshot-2021-12-10-at-17.47.21-768x254.png\";s:5:\"width\";i:768;s:6:\"height\";i:254;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-17.47.21-500x495.png\";s:5:\"width\";i:500;s:6:\"height\";i:495;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:{}}}'),(127374,3703,'_imagify_optimization_level','0'),(127375,3703,'_imagify_status','error'),(127376,3703,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(127377,3704,'_wp_attached_file','2021/12/Screenshot-2021-12-10-at-17.48.15.png'),(127378,3704,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2359;s:6:\"height\";i:300;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-10-at-17.48.15.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"Screenshot-2021-12-10-at-17.48.15-300x38.png\";s:5:\"width\";i:300;s:6:\"height\";i:38;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-12-10-at-17.48.15-1024x130.png\";s:5:\"width\";i:1024;s:6:\"height\";i:130;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-17.48.15-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:44:\"Screenshot-2021-12-10-at-17.48.15-768x98.png\";s:5:\"width\";i:768;s:6:\"height\";i:98;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-12-10-at-17.48.15-1536x195.png\";s:5:\"width\";i:1536;s:6:\"height\";i:195;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:46:\"Screenshot-2021-12-10-at-17.48.15-2048x260.png\";s:5:\"width\";i:2048;s:6:\"height\";i:260;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-17.48.15-500x300.png\";s:5:\"width\";i:500;s:6:\"height\";i:300;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:{}}}'),(127379,3704,'_imagify_optimization_level','0'),(127380,3704,'_imagify_status','error'),(127381,3704,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(127382,3705,'_wp_attached_file','2021/12/Screenshot-2021-12-10-at-17.48.50.png'),(127383,3705,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1499;s:6:\"height\";i:776;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-10-at-17.48.50.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-17.48.50-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:46:\"Screenshot-2021-12-10-at-17.48.50-1024x530.png\";s:5:\"width\";i:1024;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-17.48.50-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:45:\"Screenshot-2021-12-10-at-17.48.50-768x398.png\";s:5:\"width\";i:768;s:6:\"height\";i:398;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:45:\"Screenshot-2021-12-10-at-17.48.50-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(127384,3705,'_imagify_optimization_level','0'),(127385,3705,'_imagify_status','error'),(127386,3705,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(127387,3706,'_wp_attached_file','2021/12/0011_new_jakub_blog_banners_50_terraformingdeployment.png'),(127388,3706,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:65:\"2021/12/0011_new_jakub_blog_banners_50_terraformingdeployment.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:65:\"0011_new_jakub_blog_banners_50_terraformingdeployment-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:66:\"0011_new_jakub_blog_banners_50_terraformingdeployment-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:65:\"0011_new_jakub_blog_banners_50_terraformingdeployment-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:65:\"0011_new_jakub_blog_banners_50_terraformingdeployment-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:65:\"0011_new_jakub_blog_banners_50_terraformingdeployment-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(127389,3706,'_imagify_optimization_level','0'),(127390,3706,'_imagify_status','error'),(127391,3706,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(127392,3688,'_thumbnail_id','3706'),(127393,3688,'_edit_last','4'),(127394,3688,'hefo_before','0'),(127395,3688,'hefo_after','0'),(127396,3688,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(127397,3688,'_yoast_wpseo_primary_category','875'),(127398,3688,'_yoast_wpseo_content_score','30'),(127399,3688,'_yoast_wpseo_focuskeywords','[]'),(127400,3688,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(127401,3688,'_yoast_wpseo_estimated-reading-time-minutes','6'),(127829,3016,'_pinterest_shares','0'),(127830,3016,'_total_shares','0'),(127831,3016,'swp_cache_timestamp','455658'),(127949,1213,'wpdiscuz_post_rating','5'),(127950,1213,'wpdiscuz_post_rating_count','1'),(128029,3018,'_pinterest_shares','0'),(128030,3018,'_total_shares','0'),(128031,3018,'swp_cache_timestamp','455891'),(128188,3043,'_pinterest_shares','0'),(128189,3043,'_total_shares','0'),(128190,3043,'swp_cache_timestamp','455992'),(128404,3012,'_pinterest_shares','0'),(128405,3012,'_total_shares','0'),(128406,3012,'swp_cache_timestamp','456145'),(128485,3051,'_pinterest_shares','0'),(128486,3051,'_total_shares','0'),(128487,3051,'swp_cache_timestamp','456238'),(128590,3711,'_wp_attached_file','2022/01/ScreenHunter-1244.png'),(128591,3711,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:652;s:6:\"height\";i:63;s:4:\"file\";s:29:\"2022/01/ScreenHunter-1244.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"ScreenHunter-1244-300x29.png\";s:5:\"width\";i:300;s:6:\"height\";i:29;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"ScreenHunter-1244-150x63.png\";s:5:\"width\";i:150;s:6:\"height\";i:63;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:28:\"ScreenHunter-1244-500x63.png\";s:5:\"width\";i:500;s:6:\"height\";i:63;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:{}}}'),(128592,3711,'_imagify_optimization_level','0'),(128593,3711,'_imagify_status','success'),(128594,3711,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14084;s:14:\"optimized_size\";i:9390;s:7:\"percent\";d:33.33;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10852;s:14:\"optimized_size\";i:8664;s:7:\"percent\";d:20.16;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3359;s:14:\"optimized_size\";i:2692;s:7:\"percent\";d:19.86;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10004;s:14:\"optimized_size\";i:5408;s:7:\"percent\";d:45.94;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14084;s:14:\"optimized_size\";i:11958;s:7:\"percent\";d:15.1;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10004;s:14:\"optimized_size\";i:8110;s:7:\"percent\";d:18.93;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3359;s:14:\"optimized_size\";i:1913;s:7:\"percent\";d:43.05;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10852;s:14:\"optimized_size\";i:5501;s:7:\"percent\";d:49.31;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:76598;s:14:\"optimized_size\";i:53636;s:7:\"percent\";d:29.98;}}'),(128598,3712,'top-image','790'),(128599,3712,'_top-image','field_6143a535dfc53'),(128600,3712,'top-mission','Translucent is your partner in data-driven cloud native solutions. We help companies assemble expert cloud native teams on-demand, tailored to project goals. We give companies a competitive edge by building platforms for the cloud, with over ten years of experience in successful large-scale complex project delivery while providing quality, ROI, and innovation in today\'s modern tech environment. Technology can be complex and confusing to navigate. We\'re not here to push complex flows on you. We\'re here to take complex processes and simplify them because we understand technology well. We know this because we\'ve done it before, many times over. At Translucent, we pride ourselves on our passion for technology, innovation, and change'),(128601,3712,'_top-mission','field_6143a535dfca2'),(128602,3712,'idea-text','Creating Digital Transformation technology solutions that work for real people.'),(128603,3712,'_idea-text','field_6143a535dfce9'),(128604,3712,'ready-text','People don’t need to know everything about how digital transformation works. They care that their systems are built for their needs and create consistent results.'),(128605,3712,'_ready-text','field_6143a535dfd67'),(128606,3712,'about-translucent','Translucent takes your technology problems and transforms them to measurable and manageable outcomes.'),(128607,3712,'_about-translucent','field_6143a535dfdb1'),(128608,3712,'phrase','“Customers’ expectations are on the rise. They’re accessing and using multiple data points in real time, and don’t expect to be kept waiting. This affects the performance of systems and software. Adapting means undergoing a complete restructuring of our processes.”'),(128609,3712,'_phrase','field_6143a535dfdfa'),(128610,3712,'author','EUROPEAN RAIL OPERATOR\r\nHEAD OF PLANNING AND PRODUCTION'),(128611,3712,'_author','field_6143a535dfe40'),(128612,3712,'quality-image','659'),(128613,3712,'_quality-image','field_6143a535dfe92'),(128614,3712,'quality-text','We strive to create solutions of the highest Quality while understanding real-world issues of time, budget, and results. We work with you to identify your \"A\" Priorities and give you solutions built for your exact needs.\r\n\r\nWe can build from a vision or start from your existing systems, evolving your company through the next industrial revolution, the Digital Transformation Evolution.'),(128615,3712,'_quality-text','field_6143a535dfed9'),(128616,3712,'inovation-image','660'),(128617,3712,'_inovation-image','field_6143a535dff2d'),(128618,3712,'inovation-text','We are here to serve our clients, understanding their needs and where we can provide insight based on the best, most stable, forward-moving technologies available. True Innovation.\r\n\r\nOnce we understand your vision and goals, we\'ll work with you to make you competitive now, and together we will build your future.'),(128619,3712,'_inovation-text','field_6143a535dff6f'),(128620,3712,'value-image','661'),(128621,3712,'_value-image','field_6143a535dffb1'),(128622,3712,'value-text','Translucent was built upon creating relationships that became trusted partnerships.\r\nIt starts with having a good conversation, seeing what Value we can provide.\r\n\r\nWe are your Digital\r\nTransformation Partner.'),(128623,3712,'_value-text','field_6143a535dfff1'),(128624,3712,'trusted_0_logo','793'),(128625,3712,'_trusted_0_logo','field_6143a538ef7d3'),(128626,3712,'trusted_1_logo','794'),(128627,3712,'_trusted_1_logo','field_6143a538ef7d3'),(128628,3712,'trusted_2_logo','795'),(128629,3712,'_trusted_2_logo','field_6143a538ef7d3'),(128630,3712,'trusted_3_logo','796'),(128631,3712,'_trusted_3_logo','field_6143a538ef7d3'),(128632,3712,'trusted_4_logo','797'),(128633,3712,'_trusted_4_logo','field_6143a538ef7d3'),(128634,3712,'trusted_5_logo','798'),(128635,3712,'_trusted_5_logo','field_6143a538ef7d3'),(128636,3712,'trusted_6_logo','799'),(128637,3712,'_trusted_6_logo','field_6143a538ef7d3'),(128638,3712,'trusted_7_logo','800'),(128639,3712,'_trusted_7_logo','field_6143a538ef7d3'),(128640,3712,'trusted_8_logo','801'),(128641,3712,'_trusted_8_logo','field_6143a538ef7d3'),(128642,3712,'trusted_9_logo','802'),(128643,3712,'_trusted_9_logo','field_6143a538ef7d3'),(128644,3712,'trusted','10'),(128645,3712,'_trusted','field_6143a535e0032'),(128646,3712,'title-about','About Us'),(128647,3712,'_title-about','field_6143a576598b8'),(128648,3712,'button-call','Our Mission'),(128649,3712,'_button-call','field_6143a7ff974b4'),(128650,3712,'circle-1','Quality'),(128651,3712,'_circle-1','field_6143aa38565c3'),(128652,3712,'circle-2','Innovation'),(128653,3712,'_circle-2','field_6143aa58565c4'),(128654,3712,'circle-3','Value'),(128655,3712,'_circle-3','field_6143aa67565c5'),(128656,3712,'button-call-2','Our Idea'),(128657,3712,'_button-call-2','field_6143a994eea5f'),(128658,3712,'section-text','

Ready to be
Transformed!

'),(128659,3712,'_section-text','field_6143b4a0dd081'),(128660,3712,'circle-4','Quality'),(128661,3712,'_circle-4','field_6143abcb19fdc'),(128662,3712,'circle-5','Innovation'),(128663,3712,'_circle-5','field_6143abdc19fdd'),(128664,3712,'circle-6','Value'),(128665,3712,'_circle-6','field_6143abea19fde'),(128666,3712,'phrase-1','The Digital Transformation
is the new Industrial Revolution.'),(128667,3712,'_phrase-1','field_6143b242ba7b9'),(128668,3712,'phrase-2','Is your company
still using hand tools?'),(128669,3712,'_phrase-2','field_6143b1974f197'),(128676,3713,'top-image','790'),(128677,3713,'_top-image','field_6143a535dfc53'),(128678,3713,'top-mission','Translucent is your partner in data-driven cloud native solutions. We help companies assemble expert cloud native teams on-demand, tailored to project goals. '),(128679,3713,'_top-mission','field_6143a535dfca2'),(128680,3713,'idea-text','Creating Digital Transformation technology solutions that work for real people.'),(128681,3713,'_idea-text','field_6143a535dfce9'),(128682,3713,'ready-text','People don’t need to know everything about how digital transformation works. They care that their systems are built for their needs and create consistent results.'),(128683,3713,'_ready-text','field_6143a535dfd67'),(128684,3713,'about-translucent','Translucent takes your technology problems and transforms them to measurable and manageable outcomes.'),(128685,3713,'_about-translucent','field_6143a535dfdb1'),(128686,3713,'phrase','“Customers’ expectations are on the rise. They’re accessing and using multiple data points in real time, and don’t expect to be kept waiting. This affects the performance of systems and software. Adapting means undergoing a complete restructuring of our processes.”'),(128687,3713,'_phrase','field_6143a535dfdfa'),(128688,3713,'author','EUROPEAN RAIL OPERATOR\r\nHEAD OF PLANNING AND PRODUCTION'),(128689,3713,'_author','field_6143a535dfe40'),(128690,3713,'quality-image','659'),(128691,3713,'_quality-image','field_6143a535dfe92'),(128692,3713,'quality-text','We strive to create solutions of the highest Quality while understanding real-world issues of time, budget, and results. We work with you to identify your \"A\" Priorities and give you solutions built for your exact needs.\r\n\r\nWe can build from a vision or start from your existing systems, evolving your company through the next industrial revolution, the Digital Transformation Evolution.'),(128693,3713,'_quality-text','field_6143a535dfed9'),(128694,3713,'inovation-image','660'),(128695,3713,'_inovation-image','field_6143a535dff2d'),(128696,3713,'inovation-text','We are here to serve our clients, understanding their needs and where we can provide insight based on the best, most stable, forward-moving technologies available. True Innovation.\r\n\r\nOnce we understand your vision and goals, we\'ll work with you to make you competitive now, and together we will build your future.'),(128697,3713,'_inovation-text','field_6143a535dff6f'),(128698,3713,'value-image','661'),(128699,3713,'_value-image','field_6143a535dffb1'),(128700,3713,'value-text','Translucent was built upon creating relationships that became trusted partnerships.\r\nIt starts with having a good conversation, seeing what Value we can provide.\r\n\r\nWe are your Digital\r\nTransformation Partner.'),(128701,3713,'_value-text','field_6143a535dfff1'),(128702,3713,'trusted_0_logo','793'),(128703,3713,'_trusted_0_logo','field_6143a538ef7d3'),(128704,3713,'trusted_1_logo','794'),(128705,3713,'_trusted_1_logo','field_6143a538ef7d3'),(128706,3713,'trusted_2_logo','795'),(128707,3713,'_trusted_2_logo','field_6143a538ef7d3'),(128708,3713,'trusted_3_logo','796'),(128709,3713,'_trusted_3_logo','field_6143a538ef7d3'),(128710,3713,'trusted_4_logo','797'),(128711,3713,'_trusted_4_logo','field_6143a538ef7d3'),(128712,3713,'trusted_5_logo','798'),(128713,3713,'_trusted_5_logo','field_6143a538ef7d3'),(128714,3713,'trusted_6_logo','799'),(128715,3713,'_trusted_6_logo','field_6143a538ef7d3'),(128716,3713,'trusted_7_logo','800'),(128717,3713,'_trusted_7_logo','field_6143a538ef7d3'),(128718,3713,'trusted_8_logo','801'),(128719,3713,'_trusted_8_logo','field_6143a538ef7d3'),(128720,3713,'trusted_9_logo','802'),(128721,3713,'_trusted_9_logo','field_6143a538ef7d3'),(128722,3713,'trusted','10'),(128723,3713,'_trusted','field_6143a535e0032'),(128724,3713,'title-about','About Us'),(128725,3713,'_title-about','field_6143a576598b8'),(128726,3713,'button-call','Our Mission'),(128727,3713,'_button-call','field_6143a7ff974b4'),(128728,3713,'circle-1','Quality'),(128729,3713,'_circle-1','field_6143aa38565c3'),(128730,3713,'circle-2','Innovation'),(128731,3713,'_circle-2','field_6143aa58565c4'),(128732,3713,'circle-3','Value'),(128733,3713,'_circle-3','field_6143aa67565c5'),(128734,3713,'button-call-2','Our Idea'),(128735,3713,'_button-call-2','field_6143a994eea5f'),(128736,3713,'section-text','

Ready to be
Transformed!

'),(128737,3713,'_section-text','field_6143b4a0dd081'),(128738,3713,'circle-4','Quality'),(128739,3713,'_circle-4','field_6143abcb19fdc'),(128740,3713,'circle-5','Innovation'),(128741,3713,'_circle-5','field_6143abdc19fdd'),(128742,3713,'circle-6','Value'),(128743,3713,'_circle-6','field_6143abea19fde'),(128744,3713,'phrase-1','The Digital Transformation
is the new Industrial Revolution.'),(128745,3713,'_phrase-1','field_6143b242ba7b9'),(128746,3713,'phrase-2','Is your company
still using hand tools?'),(128747,3713,'_phrase-2','field_6143b1974f197'),(128754,3714,'top-image','790'),(128755,3714,'_top-image','field_6143a535dfc53'),(128756,3714,'top-mission','Translucent is your partner in data-driven cloud native solutions. We help companies assemble expert cloud native teams on-demand, tailored to project goals. We give companies a competitive edge by building platforms for the cloud, with over ten years of experience in successful large-scale complex project delivery while providing quality, ROI, and innovation in today\'s modern tech environment. '),(128757,3714,'_top-mission','field_6143a535dfca2'),(128758,3714,'idea-text','Creating Digital Transformation technology solutions that work for real people.'),(128759,3714,'_idea-text','field_6143a535dfce9'),(128760,3714,'ready-text','People don’t need to know everything about how digital transformation works. They care that their systems are built for their needs and create consistent results.'),(128761,3714,'_ready-text','field_6143a535dfd67'),(128762,3714,'about-translucent','Translucent takes your technology problems and transforms them to measurable and manageable outcomes.'),(128763,3714,'_about-translucent','field_6143a535dfdb1'),(128764,3714,'phrase','“Customers’ expectations are on the rise. They’re accessing and using multiple data points in real time, and don’t expect to be kept waiting. This affects the performance of systems and software. Adapting means undergoing a complete restructuring of our processes.”'),(128765,3714,'_phrase','field_6143a535dfdfa'),(128766,3714,'author','EUROPEAN RAIL OPERATOR\r\nHEAD OF PLANNING AND PRODUCTION'),(128767,3714,'_author','field_6143a535dfe40'),(128768,3714,'quality-image','659'),(128769,3714,'_quality-image','field_6143a535dfe92'),(128770,3714,'quality-text','We strive to create solutions of the highest Quality while understanding real-world issues of time, budget, and results. We work with you to identify your \"A\" Priorities and give you solutions built for your exact needs.\r\n\r\nWe can build from a vision or start from your existing systems, evolving your company through the next industrial revolution, the Digital Transformation Evolution.'),(128771,3714,'_quality-text','field_6143a535dfed9'),(128772,3714,'inovation-image','660'),(128773,3714,'_inovation-image','field_6143a535dff2d'),(128774,3714,'inovation-text','We are here to serve our clients, understanding their needs and where we can provide insight based on the best, most stable, forward-moving technologies available. True Innovation.\r\n\r\nOnce we understand your vision and goals, we\'ll work with you to make you competitive now, and together we will build your future.'),(128775,3714,'_inovation-text','field_6143a535dff6f'),(128776,3714,'value-image','661'),(128777,3714,'_value-image','field_6143a535dffb1'),(128778,3714,'value-text','Translucent was built upon creating relationships that became trusted partnerships.\r\nIt starts with having a good conversation, seeing what Value we can provide.\r\n\r\nWe are your Digital\r\nTransformation Partner.'),(128779,3714,'_value-text','field_6143a535dfff1'),(128780,3714,'trusted_0_logo','793'),(128781,3714,'_trusted_0_logo','field_6143a538ef7d3'),(128782,3714,'trusted_1_logo','794'),(128783,3714,'_trusted_1_logo','field_6143a538ef7d3'),(128784,3714,'trusted_2_logo','795'),(128785,3714,'_trusted_2_logo','field_6143a538ef7d3'),(128786,3714,'trusted_3_logo','796'),(128787,3714,'_trusted_3_logo','field_6143a538ef7d3'),(128788,3714,'trusted_4_logo','797'),(128789,3714,'_trusted_4_logo','field_6143a538ef7d3'),(128790,3714,'trusted_5_logo','798'),(128791,3714,'_trusted_5_logo','field_6143a538ef7d3'),(128792,3714,'trusted_6_logo','799'),(128793,3714,'_trusted_6_logo','field_6143a538ef7d3'),(128794,3714,'trusted_7_logo','800'),(128795,3714,'_trusted_7_logo','field_6143a538ef7d3'),(128796,3714,'trusted_8_logo','801'),(128797,3714,'_trusted_8_logo','field_6143a538ef7d3'),(128798,3714,'trusted_9_logo','802'),(128799,3714,'_trusted_9_logo','field_6143a538ef7d3'),(128800,3714,'trusted','10'),(128801,3714,'_trusted','field_6143a535e0032'),(128802,3714,'title-about','About Us'),(128803,3714,'_title-about','field_6143a576598b8'),(128804,3714,'button-call','Our Mission'),(128805,3714,'_button-call','field_6143a7ff974b4'),(128806,3714,'circle-1','Quality'),(128807,3714,'_circle-1','field_6143aa38565c3'),(128808,3714,'circle-2','Innovation'),(128809,3714,'_circle-2','field_6143aa58565c4'),(128810,3714,'circle-3','Value'),(128811,3714,'_circle-3','field_6143aa67565c5'),(128812,3714,'button-call-2','Our Idea'),(128813,3714,'_button-call-2','field_6143a994eea5f'),(128814,3714,'section-text','

Ready to be
Transformed!

'),(128815,3714,'_section-text','field_6143b4a0dd081'),(128816,3714,'circle-4','Quality'),(128817,3714,'_circle-4','field_6143abcb19fdc'),(128818,3714,'circle-5','Innovation'),(128819,3714,'_circle-5','field_6143abdc19fdd'),(128820,3714,'circle-6','Value'),(128821,3714,'_circle-6','field_6143abea19fde'),(128822,3714,'phrase-1','The Digital Transformation
is the new Industrial Revolution.'),(128823,3714,'_phrase-1','field_6143b242ba7b9'),(128824,3714,'phrase-2','Is your company
still using hand tools?'),(128825,3714,'_phrase-2','field_6143b1974f197'),(128832,3715,'top-image','790'),(128833,3715,'_top-image','field_6143a535dfc53'),(128834,3715,'top-mission','Translucent is your partner in data-driven cloud native solutions. We help companies assemble expert cloud native teams on-demand, tailored to project goals. We give companies a competitive edge by building platforms for the cloud, with over ten years of experience in successful large-scale complex project delivery while providing quality, ROI, and innovation in today\'s modern tech environment. '),(128835,3715,'_top-mission','field_6143a535dfca2'),(128836,3715,'idea-text','Creating Digital Transformation technology solutions that work for real people.'),(128837,3715,'_idea-text','field_6143a535dfce9'),(128838,3715,'ready-text','People don’t need to know everything about how digital transformation works. They care that their systems are built for their needs and create consistent results.'),(128839,3715,'_ready-text','field_6143a535dfd67'),(128840,3715,'about-translucent','Translucent takes your technology problems and transforms them to measurable and manageable outcomes.'),(128841,3715,'_about-translucent','field_6143a535dfdb1'),(128842,3715,'phrase','“Customers’ expectations are on the rise. They’re accessing and using multiple data points in real time, and don’t expect to be kept waiting. This affects the performance of systems and software. Adapting means undergoing a complete restructuring of our processes.”'),(128843,3715,'_phrase','field_6143a535dfdfa'),(128844,3715,'author','EUROPEAN RAIL OPERATOR\r\nHEAD OF PLANNING AND PRODUCTION'),(128845,3715,'_author','field_6143a535dfe40'),(128846,3715,'quality-image','659'),(128847,3715,'_quality-image','field_6143a535dfe92'),(128848,3715,'quality-text','We strive to create solutions of the highest Quality while understanding real-world issues of time, budget, and results. We work with you to identify your \"A\" Priorities and give you solutions built for your exact needs.\r\n\r\nWe can build from a vision or start from your existing systems, evolving your company through the next industrial revolution, the Digital Transformation Evolution.'),(128849,3715,'_quality-text','field_6143a535dfed9'),(128850,3715,'inovation-image','660'),(128851,3715,'_inovation-image','field_6143a535dff2d'),(128852,3715,'inovation-text','We are here to serve our clients, understanding their needs and where we can provide insight based on the best, most stable, forward-moving technologies available. True Innovation.\r\n\r\nOnce we understand your vision and goals, we\'ll work with you to make you competitive now, and together we will build your future.'),(128853,3715,'_inovation-text','field_6143a535dff6f'),(128854,3715,'value-image','661'),(128855,3715,'_value-image','field_6143a535dffb1'),(128856,3715,'value-text','Translucent was built upon creating relationships that became trusted partnerships.\r\nIt starts with having a good conversation, seeing what Value we can provide.\r\n\r\nWe are your Digital\r\nTransformation Partner.'),(128857,3715,'_value-text','field_6143a535dfff1'),(128858,3715,'trusted_0_logo','793'),(128859,3715,'_trusted_0_logo','field_6143a538ef7d3'),(128860,3715,'trusted_1_logo','794'),(128861,3715,'_trusted_1_logo','field_6143a538ef7d3'),(128862,3715,'trusted_2_logo','795'),(128863,3715,'_trusted_2_logo','field_6143a538ef7d3'),(128864,3715,'trusted_3_logo','796'),(128865,3715,'_trusted_3_logo','field_6143a538ef7d3'),(128866,3715,'trusted_4_logo','797'),(128867,3715,'_trusted_4_logo','field_6143a538ef7d3'),(128868,3715,'trusted_5_logo','798'),(128869,3715,'_trusted_5_logo','field_6143a538ef7d3'),(128870,3715,'trusted_6_logo','799'),(128871,3715,'_trusted_6_logo','field_6143a538ef7d3'),(128872,3715,'trusted_7_logo','800'),(128873,3715,'_trusted_7_logo','field_6143a538ef7d3'),(128874,3715,'trusted_8_logo','801'),(128875,3715,'_trusted_8_logo','field_6143a538ef7d3'),(128876,3715,'trusted_9_logo','802'),(128877,3715,'_trusted_9_logo','field_6143a538ef7d3'),(128878,3715,'trusted','10'),(128879,3715,'_trusted','field_6143a535e0032'),(128880,3715,'title-about','About Us'),(128881,3715,'_title-about','field_6143a576598b8'),(128882,3715,'button-call',''),(128883,3715,'_button-call','field_6143a7ff974b4'),(128884,3715,'circle-1','Quality'),(128885,3715,'_circle-1','field_6143aa38565c3'),(128886,3715,'circle-2','Innovation'),(128887,3715,'_circle-2','field_6143aa58565c4'),(128888,3715,'circle-3','Value'),(128889,3715,'_circle-3','field_6143aa67565c5'),(128890,3715,'button-call-2','Our Idea'),(128891,3715,'_button-call-2','field_6143a994eea5f'),(128892,3715,'section-text','

Ready to be
Transformed!

'),(128893,3715,'_section-text','field_6143b4a0dd081'),(128894,3715,'circle-4','Quality'),(128895,3715,'_circle-4','field_6143abcb19fdc'),(128896,3715,'circle-5','Innovation'),(128897,3715,'_circle-5','field_6143abdc19fdd'),(128898,3715,'circle-6','Value'),(128899,3715,'_circle-6','field_6143abea19fde'),(128900,3715,'phrase-1','The Digital Transformation
is the new Industrial Revolution.'),(128901,3715,'_phrase-1','field_6143b242ba7b9'),(128902,3715,'phrase-2','Is your company
still using hand tools?'),(128903,3715,'_phrase-2','field_6143b1974f197'),(128910,3716,'top-image','790'),(128911,3716,'_top-image','field_6143a535dfc53'),(128912,3716,'top-mission','Translucent is your partner in data-driven cloud native solutions. We help companies assemble expert cloud native teams on-demand, tailored to project goals. We give companies a competitive edge by building platforms for the cloud, with over ten years of experience in successful large-scale complex project delivery while providing quality, ROI, and innovation in today\'s modern tech environment. '),(128913,3716,'_top-mission','field_6143a535dfca2'),(128914,3716,'idea-text','Creating Digital Transformation technology solutions that work for real people.'),(128915,3716,'_idea-text','field_6143a535dfce9'),(128916,3716,'ready-text','People don’t need to know everything about how digital transformation works. They care that their systems are built for their needs and create consistent results.'),(128917,3716,'_ready-text','field_6143a535dfd67'),(128918,3716,'about-translucent','Translucent takes your technology problems and transforms them to measurable and manageable outcomes.'),(128919,3716,'_about-translucent','field_6143a535dfdb1'),(128920,3716,'phrase','“Customers’ expectations are on the rise. They’re accessing and using multiple data points in real time, and don’t expect to be kept waiting. This affects the performance of systems and software. Adapting means undergoing a complete restructuring of our processes.”'),(128921,3716,'_phrase','field_6143a535dfdfa'),(128922,3716,'author','EUROPEAN RAIL OPERATOR\r\nHEAD OF PLANNING AND PRODUCTION'),(128923,3716,'_author','field_6143a535dfe40'),(128924,3716,'quality-image','659'),(128925,3716,'_quality-image','field_6143a535dfe92'),(128926,3716,'quality-text','We strive to create solutions of the highest Quality while understanding real-world issues of time, budget, and results. We work with you to identify your \"A\" Priorities and give you solutions built for your exact needs.\r\n\r\nWe can build from a vision or start from your existing systems, evolving your company through the next industrial revolution, the Digital Transformation Evolution.'),(128927,3716,'_quality-text','field_6143a535dfed9'),(128928,3716,'inovation-image','660'),(128929,3716,'_inovation-image','field_6143a535dff2d'),(128930,3716,'inovation-text','We are here to serve our clients, understanding their needs and where we can provide insight based on the best, most stable, forward-moving technologies available. True Innovation.\r\n\r\nOnce we understand your vision and goals, we\'ll work with you to make you competitive now, and together we will build your future.'),(128931,3716,'_inovation-text','field_6143a535dff6f'),(128932,3716,'value-image','661'),(128933,3716,'_value-image','field_6143a535dffb1'),(128934,3716,'value-text','Translucent was built upon creating relationships that became trusted partnerships.\r\nIt starts with having a good conversation, seeing what Value we can provide.\r\n\r\nWe are your Digital\r\nTransformation Partner.'),(128935,3716,'_value-text','field_6143a535dfff1'),(128936,3716,'trusted_0_logo','793'),(128937,3716,'_trusted_0_logo','field_6143a538ef7d3'),(128938,3716,'trusted_1_logo','794'),(128939,3716,'_trusted_1_logo','field_6143a538ef7d3'),(128940,3716,'trusted_2_logo','795'),(128941,3716,'_trusted_2_logo','field_6143a538ef7d3'),(128942,3716,'trusted_3_logo','796'),(128943,3716,'_trusted_3_logo','field_6143a538ef7d3'),(128944,3716,'trusted_4_logo','797'),(128945,3716,'_trusted_4_logo','field_6143a538ef7d3'),(128946,3716,'trusted_5_logo','798'),(128947,3716,'_trusted_5_logo','field_6143a538ef7d3'),(128948,3716,'trusted_6_logo','799'),(128949,3716,'_trusted_6_logo','field_6143a538ef7d3'),(128950,3716,'trusted_7_logo','800'),(128951,3716,'_trusted_7_logo','field_6143a538ef7d3'),(128952,3716,'trusted_8_logo','801'),(128953,3716,'_trusted_8_logo','field_6143a538ef7d3'),(128954,3716,'trusted_9_logo','802'),(128955,3716,'_trusted_9_logo','field_6143a538ef7d3'),(128956,3716,'trusted','10'),(128957,3716,'_trusted','field_6143a535e0032'),(128958,3716,'title-about','About Us'),(128959,3716,'_title-about','field_6143a576598b8'),(128960,3716,'button-call',''),(128961,3716,'_button-call','field_6143a7ff974b4'),(128962,3716,'circle-1','Quality'),(128963,3716,'_circle-1','field_6143aa38565c3'),(128964,3716,'circle-2','Innovation'),(128965,3716,'_circle-2','field_6143aa58565c4'),(128966,3716,'circle-3','Value'),(128967,3716,'_circle-3','field_6143aa67565c5'),(128968,3716,'button-call-2','Our Idea'),(128969,3716,'_button-call-2','field_6143a994eea5f'),(128970,3716,'section-text','

Ready to be
Transformed!

'),(128971,3716,'_section-text','field_6143b4a0dd081'),(128972,3716,'circle-4','Quality'),(128973,3716,'_circle-4','field_6143abcb19fdc'),(128974,3716,'circle-5','Innovation'),(128975,3716,'_circle-5','field_6143abdc19fdd'),(128976,3716,'circle-6','Value'),(128977,3716,'_circle-6','field_6143abea19fde'),(128978,3716,'phrase-1','The Digital Transformation
is the new Industrial Revolution.'),(128979,3716,'_phrase-1','field_6143b242ba7b9'),(128980,3716,'phrase-2','We Are Your Onshore Partner in Cloud Native Technology'),(128981,3716,'_phrase-2','field_6143b1974f197'),(128988,3717,'top-image','790'),(128989,3717,'_top-image','field_6143a535dfc53'),(128990,3717,'top-mission','Translucent is your partner in data-driven cloud native solutions. We help companies assemble expert cloud native teams on-demand, tailored to project goals. We give companies a competitive edge by building platforms for the cloud, with over ten years of experience in successful large-scale complex project delivery while providing quality, ROI, and innovation in today\'s modern tech environment. '),(128991,3717,'_top-mission','field_6143a535dfca2'),(128992,3717,'idea-text','Creating Digital Transformation technology solutions that work for real people.'),(128993,3717,'_idea-text','field_6143a535dfce9'),(128994,3717,'ready-text','People don’t need to know everything about how digital transformation works. They care that their systems are built for their needs and create consistent results.'),(128995,3717,'_ready-text','field_6143a535dfd67'),(128996,3717,'about-translucent','Translucent takes your technology problems and transforms them to measurable and manageable outcomes.'),(128997,3717,'_about-translucent','field_6143a535dfdb1'),(128998,3717,'phrase','“Customers’ expectations are on the rise. They’re accessing and using multiple data points in real time, and don’t expect to be kept waiting. This affects the performance of systems and software. Adapting means undergoing a complete restructuring of our processes.”'),(128999,3717,'_phrase','field_6143a535dfdfa'),(129000,3717,'author','EUROPEAN RAIL OPERATOR\r\nHEAD OF PLANNING AND PRODUCTION'),(129001,3717,'_author','field_6143a535dfe40'),(129002,3717,'quality-image','659'),(129003,3717,'_quality-image','field_6143a535dfe92'),(129004,3717,'quality-text','We strive to create solutions of the highest Quality while understanding real-world issues of time, budget, and results. We work with you to identify your \"A\" Priorities and give you solutions built for your exact needs.\r\n\r\nWe can build from a vision or start from your existing systems, evolving your company through the next industrial revolution, the Digital Transformation Evolution.'),(129005,3717,'_quality-text','field_6143a535dfed9'),(129006,3717,'inovation-image','660'),(129007,3717,'_inovation-image','field_6143a535dff2d'),(129008,3717,'inovation-text','We are here to serve our clients, understanding their needs and where we can provide insight based on the best, most stable, forward-moving technologies available. True Innovation.\r\n\r\nOnce we understand your vision and goals, we\'ll work with you to make you competitive now, and together we will build your future.'),(129009,3717,'_inovation-text','field_6143a535dff6f'),(129010,3717,'value-image','661'),(129011,3717,'_value-image','field_6143a535dffb1'),(129012,3717,'value-text','Translucent was built upon creating relationships that became trusted partnerships.\r\nIt starts with having a good conversation, seeing what Value we can provide.\r\n\r\nWe are your Digital\r\nTransformation Partner.'),(129013,3717,'_value-text','field_6143a535dfff1'),(129014,3717,'trusted_0_logo','793'),(129015,3717,'_trusted_0_logo','field_6143a538ef7d3'),(129016,3717,'trusted_1_logo','794'),(129017,3717,'_trusted_1_logo','field_6143a538ef7d3'),(129018,3717,'trusted_2_logo','795'),(129019,3717,'_trusted_2_logo','field_6143a538ef7d3'),(129020,3717,'trusted_3_logo','796'),(129021,3717,'_trusted_3_logo','field_6143a538ef7d3'),(129022,3717,'trusted_4_logo','797'),(129023,3717,'_trusted_4_logo','field_6143a538ef7d3'),(129024,3717,'trusted_5_logo','798'),(129025,3717,'_trusted_5_logo','field_6143a538ef7d3'),(129026,3717,'trusted_6_logo','799'),(129027,3717,'_trusted_6_logo','field_6143a538ef7d3'),(129028,3717,'trusted_7_logo','800'),(129029,3717,'_trusted_7_logo','field_6143a538ef7d3'),(129030,3717,'trusted_8_logo','801'),(129031,3717,'_trusted_8_logo','field_6143a538ef7d3'),(129032,3717,'trusted_9_logo','802'),(129033,3717,'_trusted_9_logo','field_6143a538ef7d3'),(129034,3717,'trusted','10'),(129035,3717,'_trusted','field_6143a535e0032'),(129036,3717,'title-about','About Us'),(129037,3717,'_title-about','field_6143a576598b8'),(129038,3717,'button-call',''),(129039,3717,'_button-call','field_6143a7ff974b4'),(129040,3717,'circle-1','Quality'),(129041,3717,'_circle-1','field_6143aa38565c3'),(129042,3717,'circle-2','Innovation'),(129043,3717,'_circle-2','field_6143aa58565c4'),(129044,3717,'circle-3','Value'),(129045,3717,'_circle-3','field_6143aa67565c5'),(129046,3717,'button-call-2','Our Idea'),(129047,3717,'_button-call-2','field_6143a994eea5f'),(129048,3717,'section-text','

Ready to be
Transformed!

'),(129049,3717,'_section-text','field_6143b4a0dd081'),(129050,3717,'circle-4','Quality'),(129051,3717,'_circle-4','field_6143abcb19fdc'),(129052,3717,'circle-5','Innovation'),(129053,3717,'_circle-5','field_6143abdc19fdd'),(129054,3717,'circle-6','Value'),(129055,3717,'_circle-6','field_6143abea19fde'),(129056,3717,'phrase-1','The Digital Transformation
is the new Industrial Revolution.'),(129057,3717,'_phrase-1','field_6143b242ba7b9'),(129058,3717,'phrase-2','We Are Your Onshore Partner
in Cloud Native Technology'),(129059,3717,'_phrase-2','field_6143b1974f197'),(129090,3047,'_pinterest_shares','0'),(129091,3047,'_total_shares','0'),(129092,3047,'swp_cache_timestamp','456335'),(129183,3728,'phone','1-888-828-0144'),(129184,3728,'_phone','field_5c488fee200b5'),(129185,3728,'address','18 King Street East, Suite 1400\r\nToronto, Ontario\r\nM5C 1C4'),(129186,3728,'_address','field_5c488ff4200b6'),(129187,3728,'email','results@translucentcomputing.com'),(129188,3728,'_email','field_5c489004200b7'),(129189,3728,'text-contact',''),(129190,3728,'_text-contact','field_5c489019200b8'),(129200,3729,'_edit_lock','1650413352:17'),(129222,3123,'_pinterest_shares','0'),(129223,3123,'_total_shares','0'),(129225,2214,'_pinterest_shares','0'),(129226,2214,'_total_shares','0'),(131938,3738,'_wp_attached_file','2022/05/mt-sample-background.jpg'),(131939,3738,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:32:\"2022/05/mt-sample-background.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"mt-sample-background-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:\"mt-sample-background-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:\"mt-sample-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:32:\"mt-sample-background-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"mt-sample-background-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:32:\"mt-sample-background-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(131940,3738,'_imagify_optimization_level','0'),(131941,3738,'_imagify_status','success'),(131942,3738,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:217593;s:14:\"optimized_size\";i:215260;s:7:\"percent\";d:1.07;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23845;s:14:\"optimized_size\";i:54360;s:7:\"percent\";d:-127.97;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:126688;s:14:\"optimized_size\";i:283256;s:7:\"percent\";d:-123.59;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34678;s:14:\"optimized_size\";i:79524;s:7:\"percent\";d:-129.32;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3130;s:14:\"optimized_size\";i:6012;s:7:\"percent\";d:-92.08;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:59620;s:14:\"optimized_size\";i:135208;s:7:\"percent\";d:-126.78;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6517;s:14:\"optimized_size\";i:13920;s:7:\"percent\";d:-113.6;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:217593;s:14:\"optimized_size\";i:498930;s:7:\"percent\";d:-129.3;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6517;s:14:\"optimized_size\";i:5884;s:7:\"percent\";d:9.71;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:59620;s:14:\"optimized_size\";i:54220;s:7:\"percent\";d:9.06;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3130;s:14:\"optimized_size\";i:2723;s:7:\"percent\";d:13;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34678;s:14:\"optimized_size\";i:31609;s:7:\"percent\";d:8.85;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:126688;s:14:\"optimized_size\";i:115205;s:7:\"percent\";d:9.06;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23845;s:14:\"optimized_size\";i:21718;s:7:\"percent\";d:8.92;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:944142;s:14:\"optimized_size\";i:1517829;s:7:\"percent\";d:-60.76;}}'),(131946,3741,'_pinterest_shares','0'),(131947,3741,'_total_shares','0'),(131949,3742,'_pinterest_shares','0'),(131950,3742,'_total_shares','0'),(131952,3743,'_pinterest_shares','0'),(131953,3743,'_total_shares','0'),(131955,3744,'_pinterest_shares','0'),(131956,3744,'_total_shares','0'),(131958,3745,'_pinterest_shares','0'),(131959,3745,'_total_shares','0'),(131961,3746,'_pinterest_shares','0'),(131962,3746,'_total_shares','0'),(131964,3747,'_pinterest_shares','0'),(131965,3747,'_total_shares','0'),(131967,3748,'_pinterest_shares','0'),(131968,3748,'_total_shares','0'),(131970,3749,'_pinterest_shares','0'),(131971,3749,'_total_shares','0'),(131973,3750,'_pinterest_shares','0'),(131974,3750,'_total_shares','0'),(131976,3751,'_pinterest_shares','0'),(131977,3751,'_total_shares','0'),(131979,3752,'_pinterest_shares','0'),(131980,3752,'_total_shares','0'),(131982,3753,'_pinterest_shares','0'),(131983,3753,'_total_shares','0'),(131985,3754,'_pinterest_shares','0'),(131986,3754,'_total_shares','0'),(131988,3755,'_pinterest_shares','0'),(131989,3755,'_total_shares','0'),(131991,3756,'_pinterest_shares','0'),(131992,3756,'_total_shares','0'),(131994,3757,'_pinterest_shares','0'),(131995,3757,'_total_shares','0'),(131997,3758,'_pinterest_shares','0'),(131998,3758,'_total_shares','0'),(132000,3759,'_pinterest_shares','0'),(132001,3759,'_total_shares','0'),(132003,3760,'_pinterest_shares','0'),(132004,3760,'_total_shares','0'),(132006,3761,'_pinterest_shares','0'),(132007,3761,'_total_shares','0'),(132009,3762,'_pinterest_shares','0'),(132010,3762,'_total_shares','0'),(132012,3763,'_pinterest_shares','0'),(132013,3763,'_total_shares','0'),(132015,3764,'_pinterest_shares','0'),(132016,3764,'_total_shares','0'),(132018,3765,'_pinterest_shares','0'),(132019,3765,'_total_shares','0'),(132021,3766,'_pinterest_shares','0'),(132022,3766,'_total_shares','0'),(132024,3767,'_pinterest_shares','0'),(132025,3767,'_total_shares','0'),(132027,3768,'_pinterest_shares','0'),(132028,3768,'_total_shares','0'),(132030,3769,'_pinterest_shares','0'),(132031,3769,'_total_shares','0'),(132033,3770,'_pinterest_shares','0'),(132034,3770,'_total_shares','0'),(132036,3771,'_pinterest_shares','0'),(132037,3771,'_total_shares','0'),(132039,3772,'_pinterest_shares','0'),(132040,3772,'_total_shares','0'),(132042,3773,'_pinterest_shares','0'),(132043,3773,'_total_shares','0'),(132045,3774,'_pinterest_shares','0'),(132046,3774,'_total_shares','0'),(132048,3775,'_pinterest_shares','0'),(132049,3775,'_total_shares','0'),(132051,3776,'_pinterest_shares','0'),(132052,3776,'_total_shares','0'),(132054,3777,'_pinterest_shares','0'),(132055,3777,'_total_shares','0'),(132057,3778,'_pinterest_shares','0'),(132058,3778,'_total_shares','0'),(132060,3779,'_pinterest_shares','0'),(132061,3779,'_total_shares','0'),(132063,3780,'_pinterest_shares','0'),(132064,3780,'_total_shares','0'),(132066,3781,'_pinterest_shares','0'),(132067,3781,'_total_shares','0'),(132069,3782,'_pinterest_shares','0'),(132070,3782,'_total_shares','0'),(132072,3783,'_pinterest_shares','0'),(132073,3783,'_total_shares','0'),(132075,3784,'_pinterest_shares','0'),(132076,3784,'_total_shares','0'),(132078,3785,'_pinterest_shares','0'),(132079,3785,'_total_shares','0'),(132081,3786,'_pinterest_shares','0'),(132082,3786,'_total_shares','0'),(132084,3787,'_pinterest_shares','0'),(132085,3787,'_total_shares','0'),(132087,3788,'_pinterest_shares','0'),(132088,3788,'_total_shares','0'),(132090,3789,'_pinterest_shares','0'),(132091,3789,'_total_shares','0'),(132093,3790,'_pinterest_shares','0'),(132094,3790,'_total_shares','0'),(132096,3791,'_pinterest_shares','0'),(132097,3791,'_total_shares','0'),(132099,3792,'_pinterest_shares','0'),(132100,3792,'_total_shares','0'),(132102,3793,'_pinterest_shares','0'),(132103,3793,'_total_shares','0'),(132105,3794,'_pinterest_shares','0'),(132106,3794,'_total_shares','0'),(132108,3795,'_pinterest_shares','0'),(132109,3795,'_total_shares','0'),(132111,3796,'_pinterest_shares','0'),(132112,3796,'_total_shares','0'),(132114,3797,'_pinterest_shares','0'),(132115,3797,'_total_shares','0'),(132117,3798,'_pinterest_shares','0'),(132118,3798,'_total_shares','0'),(132120,3799,'_pinterest_shares','0'),(132121,3799,'_total_shares','0'),(132123,3800,'_pinterest_shares','0'),(132124,3800,'_total_shares','0'),(132126,3801,'_pinterest_shares','0'),(132127,3801,'_total_shares','0'),(132129,3802,'_pinterest_shares','0'),(132130,3802,'_total_shares','0'),(132132,3803,'_pinterest_shares','0'),(132133,3803,'_total_shares','0'),(132135,3804,'_pinterest_shares','0'),(132136,3804,'_total_shares','0'),(132138,3805,'_pinterest_shares','0'),(132139,3805,'_total_shares','0'),(132141,3806,'_pinterest_shares','0'),(132142,3806,'_total_shares','0'),(132144,3807,'_pinterest_shares','0'),(132145,3807,'_total_shares','0'),(132147,3808,'_pinterest_shares','0'),(132148,3808,'_total_shares','0'),(132150,3809,'_pinterest_shares','0'),(132151,3809,'_total_shares','0'),(132153,3810,'_pinterest_shares','0'),(132154,3810,'_total_shares','0'),(132156,3811,'_pinterest_shares','0'),(132157,3811,'_total_shares','0'),(132159,3812,'_pinterest_shares','0'),(132160,3812,'_total_shares','0'),(132162,3813,'_pinterest_shares','0'),(132163,3813,'_total_shares','0'),(132165,3814,'_pinterest_shares','0'),(132166,3814,'_total_shares','0'),(132168,3815,'_pinterest_shares','0'),(132169,3815,'_total_shares','0'),(132171,3816,'_pinterest_shares','0'),(132172,3816,'_total_shares','0'),(132174,3817,'_pinterest_shares','0'),(132175,3817,'_total_shares','0'),(132177,3818,'_pinterest_shares','0'),(132178,3818,'_total_shares','0'),(132180,3819,'_pinterest_shares','0'),(132181,3819,'_total_shares','0'),(132183,3820,'_pinterest_shares','0'),(132184,3820,'_total_shares','0'),(132186,3821,'_pinterest_shares','0'),(132187,3821,'_total_shares','0'),(132189,3822,'_pinterest_shares','0'),(132190,3822,'_total_shares','0'),(132192,3823,'_pinterest_shares','0'),(132193,3823,'_total_shares','0'),(132195,3824,'_pinterest_shares','0'),(132196,3824,'_total_shares','0'),(132198,3825,'_pinterest_shares','0'),(132199,3825,'_total_shares','0'),(132201,3826,'_pinterest_shares','0'),(132202,3826,'_total_shares','0'),(132204,3827,'_pinterest_shares','0'),(132205,3827,'_total_shares','0'),(132207,3828,'_pinterest_shares','0'),(132208,3828,'_total_shares','0'),(132210,3829,'_pinterest_shares','0'),(132211,3829,'_total_shares','0'),(132213,3830,'_pinterest_shares','0'),(132214,3830,'_total_shares','0'),(132216,3831,'_pinterest_shares','0'),(132217,3831,'_total_shares','0'),(132219,3832,'_pinterest_shares','0'),(132220,3832,'_total_shares','0'),(132222,3833,'_pinterest_shares','0'),(132223,3833,'_total_shares','0'),(132225,3834,'_pinterest_shares','0'),(132226,3834,'_total_shares','0'),(132228,3835,'_pinterest_shares','0'),(132229,3835,'_total_shares','0'),(132231,3836,'_pinterest_shares','0'),(132232,3836,'_total_shares','0'),(132234,3837,'_pinterest_shares','0'),(132235,3837,'_total_shares','0'),(132237,3838,'_pinterest_shares','0'),(132238,3838,'_total_shares','0'),(132240,3839,'_pinterest_shares','0'),(132241,3839,'_total_shares','0'),(132243,3840,'_pinterest_shares','0'),(132244,3840,'_total_shares','0'),(132246,3841,'_pinterest_shares','0'),(132247,3841,'_total_shares','0'),(132249,3842,'_pinterest_shares','0'),(132250,3842,'_total_shares','0'),(132252,3843,'_pinterest_shares','0'),(132253,3843,'_total_shares','0'),(132255,3844,'_pinterest_shares','0'),(132256,3844,'_total_shares','0'),(132258,3845,'_pinterest_shares','0'),(132259,3845,'_total_shares','0'),(132261,3846,'_pinterest_shares','0'),(132262,3846,'_total_shares','0'),(132264,3847,'_pinterest_shares','0'),(132265,3847,'_total_shares','0'),(132267,3848,'_pinterest_shares','0'),(132268,3848,'_total_shares','0'),(132270,3849,'_pinterest_shares','0'),(132271,3849,'_total_shares','0'),(132273,3850,'_pinterest_shares','0'),(132274,3850,'_total_shares','0'),(132276,3851,'_pinterest_shares','0'),(132277,3851,'_total_shares','0'),(132279,3852,'_pinterest_shares','0'),(132280,3852,'_total_shares','0'),(132282,3853,'_pinterest_shares','0'),(132283,3853,'_total_shares','0'),(132285,3854,'_pinterest_shares','0'),(132286,3854,'_total_shares','0'),(132288,3855,'_pinterest_shares','0'),(132289,3855,'_total_shares','0'),(132291,3856,'_pinterest_shares','0'),(132292,3856,'_total_shares','0'),(132294,3857,'_pinterest_shares','0'),(132295,3857,'_total_shares','0'),(132297,3858,'_pinterest_shares','0'),(132298,3858,'_total_shares','0'),(132300,3859,'_pinterest_shares','0'),(132301,3859,'_total_shares','0'),(132303,3860,'_pinterest_shares','0'),(132304,3860,'_total_shares','0'),(132306,3861,'_pinterest_shares','0'),(132307,3861,'_total_shares','0'),(132309,3862,'_pinterest_shares','0'),(132310,3862,'_total_shares','0'),(132312,3863,'_pinterest_shares','0'),(132313,3863,'_total_shares','0'),(132315,3864,'_pinterest_shares','0'),(132316,3864,'_total_shares','0'),(132318,3865,'_pinterest_shares','0'),(132319,3865,'_total_shares','0'),(132321,3866,'_pinterest_shares','0'),(132322,3866,'_total_shares','0'),(132324,3867,'_pinterest_shares','0'),(132325,3867,'_total_shares','0'),(132327,3868,'_pinterest_shares','0'),(132328,3868,'_total_shares','0'),(132330,3869,'_pinterest_shares','0'),(132331,3869,'_total_shares','0'),(132333,3870,'_pinterest_shares','0'),(132334,3870,'_total_shares','0'),(132336,3871,'_pinterest_shares','0'),(132337,3871,'_total_shares','0'),(132339,3872,'_pinterest_shares','0'),(132340,3872,'_total_shares','0'),(132342,3873,'_pinterest_shares','0'),(132343,3873,'_total_shares','0'),(132345,3874,'_pinterest_shares','0'),(132346,3874,'_total_shares','0'),(132348,3875,'_pinterest_shares','0'),(132349,3875,'_total_shares','0'),(132351,3876,'_pinterest_shares','0'),(132352,3876,'_total_shares','0'),(132354,3877,'_pinterest_shares','0'),(132355,3877,'_total_shares','0'),(132357,3878,'_pinterest_shares','0'),(132358,3878,'_total_shares','0'),(132360,3879,'_pinterest_shares','0'),(132361,3879,'_total_shares','0'),(132363,3880,'_pinterest_shares','0'),(132364,3880,'_total_shares','0'),(132366,3881,'_pinterest_shares','0'),(132367,3881,'_total_shares','0'),(132369,3882,'_pinterest_shares','0'),(132370,3882,'_total_shares','0'),(132372,3883,'_pinterest_shares','0'),(132373,3883,'_total_shares','0'),(132375,3884,'_pinterest_shares','0'),(132376,3884,'_total_shares','0'),(132378,3885,'_pinterest_shares','0'),(132379,3885,'_total_shares','0'),(132381,3886,'_pinterest_shares','0'),(132382,3886,'_total_shares','0'),(132384,3887,'_pinterest_shares','0'),(132385,3887,'_total_shares','0'),(132387,3888,'_pinterest_shares','0'),(132388,3888,'_total_shares','0'),(132390,3889,'_pinterest_shares','0'),(132391,3889,'_total_shares','0'),(132393,3890,'_pinterest_shares','0'),(132394,3890,'_total_shares','0'),(132396,3891,'_pinterest_shares','0'),(132397,3891,'_total_shares','0'),(132399,3892,'_pinterest_shares','0'),(132400,3892,'_total_shares','0'),(132402,3893,'_pinterest_shares','0'),(132403,3893,'_total_shares','0'),(132405,3894,'_pinterest_shares','0'),(132406,3894,'_total_shares','0'),(132408,3895,'_pinterest_shares','0'),(132409,3895,'_total_shares','0'),(132411,3896,'_pinterest_shares','0'),(132412,3896,'_total_shares','0'),(132414,3897,'_pinterest_shares','0'),(132415,3897,'_total_shares','0'),(132417,3898,'_pinterest_shares','0'),(132418,3898,'_total_shares','0'),(132420,3899,'_pinterest_shares','0'),(132421,3899,'_total_shares','0'),(132423,3900,'_pinterest_shares','0'),(132424,3900,'_total_shares','0'),(132426,3901,'_pinterest_shares','0'),(132427,3901,'_total_shares','0'),(132429,3902,'_pinterest_shares','0'),(132430,3902,'_total_shares','0'),(132432,3903,'_pinterest_shares','0'),(132433,3903,'_total_shares','0'),(132438,3905,'_pinterest_shares','0'),(132439,3905,'_total_shares','0'),(132441,3906,'_pinterest_shares','0'),(132442,3906,'_total_shares','0'),(132444,3907,'_pinterest_shares','0'),(132445,3907,'_total_shares','0'),(132447,3908,'_pinterest_shares','0'),(132448,3908,'_total_shares','0'),(132450,3909,'_pinterest_shares','0'),(132451,3909,'_total_shares','0'),(132453,3910,'_pinterest_shares','0'),(132454,3910,'_total_shares','0'),(132456,3911,'_pinterest_shares','0'),(132457,3911,'_total_shares','0'),(132459,3912,'_pinterest_shares','0'),(132460,3912,'_total_shares','0'),(132462,3913,'_pinterest_shares','0'),(132463,3913,'_total_shares','0'),(132465,3914,'_pinterest_shares','0'),(132466,3914,'_total_shares','0'),(132468,3915,'_pinterest_shares','0'),(132469,3915,'_total_shares','0'),(132471,3916,'_pinterest_shares','0'),(132472,3916,'_total_shares','0'),(132474,3917,'_pinterest_shares','0'),(132475,3917,'_total_shares','0'),(132477,3918,'_pinterest_shares','0'),(132478,3918,'_total_shares','0'),(132480,3919,'_pinterest_shares','0'),(132481,3919,'_total_shares','0'),(132483,3920,'_pinterest_shares','0'),(132484,3920,'_total_shares','0'),(132486,3921,'_pinterest_shares','0'),(132487,3921,'_total_shares','0'),(132489,3922,'_pinterest_shares','0'),(132490,3922,'_total_shares','0'),(132492,3923,'_pinterest_shares','0'),(132493,3923,'_total_shares','0'),(132495,3924,'_pinterest_shares','0'),(132496,3924,'_total_shares','0'),(132498,3904,'_pinterest_shares','0'),(132499,3904,'_total_shares','0'),(132501,3926,'_pinterest_shares','0'),(132502,3926,'_total_shares','0'),(132504,3927,'_pinterest_shares','0'),(132505,3927,'_total_shares','0'),(132507,3925,'_pinterest_shares','0'),(132508,3925,'_total_shares','0'),(132510,3929,'_pinterest_shares','0'),(132511,3929,'_total_shares','0'),(132513,3930,'_pinterest_shares','0'),(132514,3930,'_total_shares','0'),(132516,3931,'_pinterest_shares','0'),(132517,3931,'_total_shares','0'),(132519,3932,'_pinterest_shares','0'),(132520,3932,'_total_shares','0'),(132522,3933,'_pinterest_shares','0'),(132523,3933,'_total_shares','0'),(132525,3934,'_pinterest_shares','0'),(132526,3934,'_total_shares','0'),(132528,3935,'_pinterest_shares','0'),(132529,3935,'_total_shares','0'),(132531,3936,'_pinterest_shares','0'),(132532,3936,'_total_shares','0'),(132534,3937,'_pinterest_shares','0'),(132535,3937,'_total_shares','0'),(132537,3938,'_pinterest_shares','0'),(132538,3938,'_total_shares','0'),(132540,3939,'_pinterest_shares','0'),(132541,3939,'_total_shares','0'),(132543,3940,'_pinterest_shares','0'),(132544,3940,'_total_shares','0'),(132546,3941,'_pinterest_shares','0'),(132547,3941,'_total_shares','0'),(132549,3942,'_pinterest_shares','0'),(132550,3942,'_total_shares','0'),(132552,3943,'_pinterest_shares','0'),(132553,3943,'_total_shares','0'),(132555,3944,'_pinterest_shares','0'),(132556,3944,'_total_shares','0'),(132558,3945,'_pinterest_shares','0'),(132559,3945,'_total_shares','0'),(132561,3946,'_pinterest_shares','0'),(132562,3946,'_total_shares','0'),(132567,3948,'_pinterest_shares','0'),(132568,3948,'_total_shares','0'),(132570,3949,'_pinterest_shares','0'),(132571,3949,'_total_shares','0'),(132573,3950,'_pinterest_shares','0'),(132574,3950,'_total_shares','0'),(132576,3951,'_pinterest_shares','0'),(132577,3951,'_total_shares','0'),(132579,3952,'_pinterest_shares','0'),(132580,3952,'_total_shares','0'),(132582,3953,'_pinterest_shares','0'),(132583,3953,'_total_shares','0'),(132585,3954,'_pinterest_shares','0'),(132586,3954,'_total_shares','0'),(132588,3955,'_pinterest_shares','0'),(132589,3955,'_total_shares','0'),(132594,3947,'_edit_lock','1657889125:20'),(132595,3928,'_edit_lock','1651704139:20'),(132596,3928,'_edit_last','20'),(132600,3928,'_pinterest_shares','0'),(132601,3928,'_total_shares','0'),(132603,3956,'_menu_item_type','custom'),(132604,3956,'_menu_item_menu_item_parent','0'),(132605,3956,'_menu_item_object_id','3956'),(132606,3956,'_menu_item_object','custom'),(132607,3956,'_menu_item_target',''),(132608,3956,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(132609,3956,'_menu_item_xfn',''),(132610,3956,'_menu_item_url',''),(132612,3956,'mega_menu','Yes'),(132613,3956,'_mega_menu','field_6243305d826ef'),(132614,3956,'section1_heading','Cloud native solutions'),(132615,3956,'_section1_heading','field_6243100030153'),(132616,3956,'section1_icon',''),(132617,3956,'_section1_icon','field_62440d59dd33e'),(132618,3956,'section1_short_text','Solve your digital transformation challenges.'),(132619,3956,'_section1_short_text','field_6243100830154'),(132620,3956,'section1_cta','a:3:{s:5:\"title\";s:10:\"Start here\";s:3:\"url\";s:57:\"https://translucent.mesoishop.com/cloud-native-solutions/\";s:6:\"target\";s:0:\"\";}'),(132621,3956,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(132622,3956,'section1',''),(132623,3956,'_section1','field_624303a62cd38'),(132624,3956,'section_2','3'),(132625,3956,'_section_2','field_6243113be9003'),(132626,3956,'section_3','3'),(132627,3956,'_section_3','field_6243123286169'),(132644,3956,'section_2_0_hide_it','0'),(132645,3956,'_section_2_0_hide_it','field_6269f278b9204'),(132646,3956,'section_2_0_menu_icon','3957'),(132647,3956,'_section_2_0_menu_icon','field_624311d4b5db7'),(132648,3956,'section_2_0_subheading',''),(132649,3956,'_section_2_0_subheading','field_6243118ce9006'),(132650,3956,'section_2_0_menu_short_content','Translucent cloud native data driven application development'),(132651,3956,'_section_2_0_menu_short_content','field_624311e1b5db8'),(132652,3956,'section_2_0_cta','a:3:{s:5:\"title\";s:23:\"Application Development\";s:3:\"url\";s:71:\"https://translucent.mesoishop.com/cloud-native-application-development/\";s:6:\"target\";s:0:\"\";}'),(132653,3956,'_section_2_0_cta','field_6269e4b076518_field_62551b3e101c4'),(132654,3956,'section_2_1_hide_it','0'),(132655,3956,'_section_2_1_hide_it','field_6269f278b9204'),(132656,3956,'section_2_1_menu_icon','3958'),(132657,3956,'_section_2_1_menu_icon','field_624311d4b5db7'),(132658,3956,'section_2_1_subheading',''),(132659,3956,'_section_2_1_subheading','field_6243118ce9006'),(132660,3956,'section_2_1_menu_short_content','Automation of your operations and infrastructure'),(132661,3956,'_section_2_1_menu_short_content','field_624311e1b5db8'),(132662,3956,'section_2_1_cta','a:3:{s:5:\"title\";s:17:\"DevOps Consulting\";s:3:\"url\";s:54:\"https://translucent.mesoishop.com/cloud-native-devops/\";s:6:\"target\";s:0:\"\";}'),(132663,3956,'_section_2_1_cta','field_6269e4b076518_field_62551b3e101c4'),(132664,3956,'section_2_2_hide_it','0'),(132665,3956,'_section_2_2_hide_it','field_6269f278b9204'),(132666,3956,'section_2_2_menu_icon','3959'),(132667,3956,'_section_2_2_menu_icon','field_624311d4b5db7'),(132668,3956,'section_2_2_subheading',''),(132669,3956,'_section_2_2_subheading','field_6243118ce9006'),(132670,3956,'section_2_2_menu_short_content','Driving digital transformation with containers and Kubernetes'),(132671,3956,'_section_2_2_menu_short_content','field_624311e1b5db8'),(132672,3956,'section_2_2_cta','a:3:{s:5:\"title\";s:32:\"Kubernetes Professional Services\";s:3:\"url\";s:71:\"https://translucent.mesoishop.com/kubernetes-professional-services-new/\";s:6:\"target\";s:0:\"\";}'),(132673,3956,'_section_2_2_cta','field_6269e4b076518_field_62551b3e101c4'),(132674,3956,'section_3_0_hide_it','0'),(132675,3956,'_section_3_0_hide_it','field_6269f8293d71b'),(132676,3956,'section_3_0_menu_icon','3960'),(132677,3956,'_section_3_0_menu_icon','field_624312328616c'),(132678,3956,'section_3_0_subheading',''),(132679,3956,'_section_3_0_subheading','field_624312328616a'),(132680,3956,'section_3_0_menu_short_content','Reduce deliberate and incidental security vulnerabilities'),(132681,3956,'_section_3_0_menu_short_content','field_624312328616d'),(132682,3956,'section_3_0_cta','a:3:{s:5:\"title\";s:10:\"Zero Trust\";s:3:\"url\";s:44:\"https://translucent.mesoishop.com/tek-world/\";s:6:\"target\";s:0:\"\";}'),(132683,3956,'_section_3_0_cta','field_6269e57776519_field_62551b3e101c4'),(132684,3956,'section_3_1_hide_it','0'),(132685,3956,'_section_3_1_hide_it','field_6269f8293d71b'),(132686,3956,'section_3_1_menu_icon','3961'),(132687,3956,'_section_3_1_menu_icon','field_624312328616c'),(132688,3956,'section_3_1_subheading',''),(132689,3956,'_section_3_1_subheading','field_624312328616a'),(132690,3956,'section_3_1_menu_short_content','Enable your data to create insights that provide ROI'),(132691,3956,'_section_3_1_menu_short_content','field_624312328616d'),(132692,3956,'section_3_1_cta','a:3:{s:5:\"title\";s:11:\"Data-Driven\";s:3:\"url\";s:57:\"https://translucent.mesoishop.com/cloud-native-solutions/\";s:6:\"target\";s:0:\"\";}'),(132693,3956,'_section_3_1_cta','field_6269e57776519_field_62551b3e101c4'),(132694,3956,'section_3_2_hide_it','0'),(132695,3956,'_section_3_2_hide_it','field_6269f8293d71b'),(132696,3956,'section_3_2_menu_icon','3962'),(132697,3956,'_section_3_2_menu_icon','field_624312328616c'),(132698,3956,'section_3_2_subheading',''),(132699,3956,'_section_3_2_subheading','field_624312328616a'),(132700,3956,'section_3_2_menu_short_content','Smart apps powered by A.I.'),(132701,3956,'_section_3_2_menu_short_content','field_624312328616d'),(132702,3956,'section_3_2_cta','a:3:{s:5:\"title\";s:16:\"Machine Learning\";s:3:\"url\";s:64:\"https://translucent.mesoishop.com/services/machine-learning-new/\";s:6:\"target\";s:0:\"\";}'),(132703,3956,'_section_3_2_cta','field_6269e57776519_field_62551b3e101c4'),(132708,3957,'_wp_attached_file','2022/05/Applications.svg'),(132709,3958,'_wp_attached_file','2022/05/DevOps.svg'),(132710,3959,'_wp_attached_file','2022/05/kubernates.svg'),(132711,3960,'_wp_attached_file','2022/05/zerotrust.svg'),(132712,3961,'_wp_attached_file','2022/05/datdriven.svg'),(132713,3962,'_wp_attached_file','2022/05/Machine-Learning.svg'),(132718,3963,'_wp_attached_file','2022/05/logo.svg'),(132719,3964,'_wp_attached_file','2022/05/Translucent-branco@2x.png'),(132720,3964,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:662;s:6:\"height\";i:84;s:4:\"file\";s:33:\"2022/05/Translucent-branco@2x.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Translucent-branco@2x-300x38.png\";s:5:\"width\";i:300;s:6:\"height\";i:38;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Translucent-branco@2x-150x84.png\";s:5:\"width\";i:150;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:32:\"Translucent-branco@2x-500x84.png\";s:5:\"width\";i:500;s:6:\"height\";i:84;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:{}}}'),(132721,3964,'_imagify_optimization_level','0'),(132722,3964,'_imagify_status','already_optimized'),(132723,3964,'_imagify_data','a:2:{s:5:\"sizes\";a:5:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9128;s:14:\"optimized_size\";i:15436;s:7:\"percent\";d:-69.11;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3167;s:14:\"optimized_size\";i:4850;s:7:\"percent\";d:-53.14;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8401;s:14:\"optimized_size\";i:8660;s:7:\"percent\";d:-3.08;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9573;s:14:\"optimized_size\";i:18442;s:7:\"percent\";d:-92.65;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:30269;s:14:\"optimized_size\";i:47388;s:7:\"percent\";d:-56.56;}}'),(132724,3965,'_wp_attached_file','2022/05/linux_foundation@2x.png'),(132725,3965,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:224;s:6:\"height\";i:108;s:4:\"file\";s:31:\"2022/05/linux_foundation@2x.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"linux_foundation@2x-150x108.png\";s:5:\"width\";i:150;s:6:\"height\";i:108;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:{}}}'),(132726,3965,'_imagify_optimization_level','0'),(132727,3965,'_imagify_status','already_optimized'),(132728,3965,'_imagify_data','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5049;s:14:\"optimized_size\";i:9952;s:7:\"percent\";d:-97.11;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4058;s:14:\"optimized_size\";i:14102;s:7:\"percent\";d:-247.51;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:9107;s:14:\"optimized_size\";i:24054;s:7:\"percent\";d:-164.13;}}'),(132729,3966,'_wp_attached_file','2022/05/kubernets_certified@2x.png'),(132730,3966,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:248;s:6:\"height\";i:240;s:4:\"file\";s:34:\"2022/05/kubernets_certified@2x.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"kubernets_certified@2x-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:{}}}'),(132731,3967,'_wp_attached_file','2022/05/cloud_native_computing_foundation@2x.png'),(132732,3967,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:386;s:6:\"height\";i:108;s:4:\"file\";s:48:\"2022/05/cloud_native_computing_foundation@2x.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"cloud_native_computing_foundation@2x-300x84.png\";s:5:\"width\";i:300;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"cloud_native_computing_foundation@2x-150x108.png\";s:5:\"width\";i:150;s:6:\"height\";i:108;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:{}}}'),(132733,3966,'_imagify_optimization_level','0'),(132734,3966,'_imagify_status','already_optimized'),(132735,3966,'_imagify_data','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20553;s:14:\"optimized_size\";i:21414;s:7:\"percent\";d:-4.19;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13350;s:14:\"optimized_size\";i:40942;s:7:\"percent\";d:-206.68;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:33903;s:14:\"optimized_size\";i:62356;s:7:\"percent\";d:-83.92;}}'),(132736,3967,'_imagify_optimization_level','0'),(132737,3967,'_imagify_status','already_optimized'),(132738,3967,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7447;s:14:\"optimized_size\";i:13608;s:7:\"percent\";d:-82.73;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22018;s:14:\"optimized_size\";i:21166;s:7:\"percent\";d:3.87;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8747;s:14:\"optimized_size\";i:27430;s:7:\"percent\";d:-213.59;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:38212;s:14:\"optimized_size\";i:62204;s:7:\"percent\";d:-62.79;}}'),(132739,3968,'_wp_attached_file','2022/05/facebook-icon.svg'),(132740,3969,'_wp_attached_file','2022/05/linkedin-icon.svg'),(132741,3970,'_wp_attached_file','2022/05/twitter-icon.svg'),(132742,3971,'_wp_attached_file','2022/05/instagram-icon.svg'),(132743,3972,'_menu_item_type','custom'),(132744,3972,'_menu_item_menu_item_parent','0'),(132745,3972,'_menu_item_object_id','3972'),(132746,3972,'_menu_item_object','custom'),(132747,3972,'_menu_item_target',''),(132748,3972,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(132749,3972,'_menu_item_xfn',''),(132750,3972,'_menu_item_url',''),(132758,3972,'mega_menu','Yes'),(132759,3972,'_mega_menu','field_6243305d826ef'),(132760,3972,'section1_heading','TEK™ World'),(132761,3972,'_section1_heading','field_6243100030153'),(132762,3972,'section1_icon',''),(132763,3972,'_section1_icon','field_62440d59dd33e'),(132764,3972,'section1_short_text','Translucent Expert Knowledge'),(132765,3972,'_section1_short_text','field_6243100830154'),(132766,3972,'section1_cta','a:3:{s:5:\"title\";s:10:\"Start here\";s:3:\"url\";s:43:\"https://translucent.mesoishop.com/tek-world\";s:6:\"target\";s:0:\"\";}'),(132767,3972,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(132768,3972,'section1',''),(132769,3972,'_section1','field_624303a62cd38'),(132770,3972,'section_2_0_hide_it','0'),(132771,3972,'_section_2_0_hide_it','field_6269f278b9204'),(132772,3972,'section_2_0_menu_icon','3974'),(132773,3972,'_section_2_0_menu_icon','field_624311d4b5db7'),(132774,3972,'section_2_0_subheading',''),(132775,3972,'_section_2_0_subheading','field_6243118ce9006'),(132776,3972,'section_2_0_menu_short_content','Open source, production-ready, cloud native, data-driven digital transformation platform'),(132777,3972,'_section_2_0_menu_short_content','field_624311e1b5db8'),(132778,3972,'section_2_0_cta','a:3:{s:5:\"title\";s:8:\"TEKStack\";s:3:\"url\";s:43:\"https://translucent.mesoishop.com/tekstack/\";s:6:\"target\";s:0:\"\";}'),(132779,3972,'_section_2_0_cta','field_6269e4b076518_field_62551b3e101c4'),(132780,3972,'section_2_1_hide_it','0'),(132781,3972,'_section_2_1_hide_it','field_6269f278b9204'),(132782,3972,'section_2_1_menu_icon','3975'),(132783,3972,'_section_2_1_menu_icon','field_624311d4b5db7'),(132784,3972,'section_2_1_subheading',''),(132785,3972,'_section_2_1_subheading','field_6243118ce9006'),(132786,3972,'section_2_1_menu_short_content','Combine process and cloud native development'),(132787,3972,'_section_2_1_menu_short_content','field_624311e1b5db8'),(132788,3972,'section_2_1_cta','a:3:{s:5:\"title\";s:10:\"TEKProcess\";s:3:\"url\";s:45:\"https://translucent.mesoishop.com/tekprocess/\";s:6:\"target\";s:0:\"\";}'),(132789,3972,'_section_2_1_cta','field_6269e4b076518_field_62551b3e101c4'),(132790,3972,'section_2','2'),(132791,3972,'_section_2','field_6243113be9003'),(132792,3972,'section_3_0_hide_it','0'),(132793,3972,'_section_3_0_hide_it','field_6269f8293d71b'),(132794,3972,'section_3_0_menu_icon','3976'),(132795,3972,'_section_3_0_menu_icon','field_624312328616c'),(132796,3972,'section_3_0_subheading',''),(132797,3972,'_section_3_0_subheading','field_624312328616a'),(132798,3972,'section_3_0_menu_short_content','Increase your workforce by partnering with teams tailored to your business needs'),(132799,3972,'_section_3_0_menu_short_content','field_624312328616d'),(132800,3972,'section_3_0_cta','a:3:{s:5:\"title\";s:101:\"TEK Teams\";s:3:\"url\";s:43:\"https://translucent.mesoishop.com/tekteams/\";s:6:\"target\";s:0:\"\";}'),(132801,3972,'_section_3_0_cta','field_6269e57776519_field_62551b3e101c4'),(132802,3972,'section_3','1'),(132803,3972,'_section_3','field_6243123286169'),(132820,3974,'_wp_attached_file','2022/05/tekstack.svg'),(132821,3975,'_wp_attached_file','2022/05/tekprocess.svg'),(132822,3976,'_wp_attached_file','2022/05/TEKTeams.svg'),(132823,3977,'_menu_item_type','custom'),(132824,3977,'_menu_item_menu_item_parent','0'),(132825,3977,'_menu_item_object_id','3977'),(132826,3977,'_menu_item_object','custom'),(132827,3977,'_menu_item_target',''),(132828,3977,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(132829,3977,'_menu_item_xfn',''),(132830,3977,'_menu_item_url',''),(132832,3978,'_wp_attached_file','2022/05/mrdata-svg.svg'),(132836,3979,'_wp_attached_file','2022/05/Cloud-Native-Application-1.svg'),(132837,3980,'_wp_attached_file','2022/05/Cloud-Native-DevOps-1.svg'),(132838,3981,'_wp_attached_file','2022/05/Cloud-Native-1.svg'),(132839,3982,'_wp_attached_file','2022/05/Data-Driven-Digital-Transformation-1.svg'),(132840,3977,'mega_menu','Yes'),(132841,3977,'_mega_menu','field_6243305d826ef'),(132842,3977,'section1_heading','Learn About Cloud Native'),(132843,3977,'_section1_heading','field_6243100030153'),(132844,3977,'section1_icon','3978'),(132845,3977,'_section1_icon','field_62440d59dd33e'),(132846,3977,'section1_short_text','We will answer all of your cloud native questions with MrData '),(132847,3977,'_section1_short_text','field_6243100830154'),(132848,3977,'section1_cta',''),(132849,3977,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(132850,3977,'section1',''),(132851,3977,'_section1','field_624303a62cd38'),(132852,3977,'section_2_0_hide_it','0'),(132853,3977,'_section_2_0_hide_it','field_6269f278b9204'),(132854,3977,'section_2_0_menu_icon','3982'),(132855,3977,'_section_2_0_menu_icon','field_624311d4b5db7'),(132856,3977,'section_2_0_subheading','What is'),(132857,3977,'_section_2_0_subheading','field_6243118ce9006'),(132858,3977,'section_2_0_menu_short_content','Digitization, digitalization, and data driven digital transformation'),(132859,3977,'_section_2_0_menu_short_content','field_624311e1b5db8'),(132860,3977,'section_2_0_cta','a:3:{s:5:\"title\";s:34:\"Data-Driven Digital Transformation\";s:3:\"url\";s:77:\"https://translucent.mesoishop.com/what-is-data-driven-digital-transformation/\";s:6:\"target\";s:0:\"\";}'),(132861,3977,'_section_2_0_cta','field_6269e4b076518_field_62551b3e101c4'),(132862,3977,'section_2_1_hide_it','1'),(132863,3977,'_section_2_1_hide_it','field_6269f278b9204'),(132864,3977,'section_2_1_menu_icon','3981'),(132865,3977,'_section_2_1_menu_icon','field_624311d4b5db7'),(132866,3977,'section_2_1_subheading','What is'),(132867,3977,'_section_2_1_subheading','field_6243118ce9006'),(132868,3977,'section_2_1_menu_short_content','Team Culture, flexible processes and scalable technologies'),(132869,3977,'_section_2_1_menu_short_content','field_624311e1b5db8'),(132870,3977,'section_2_1_cta','a:3:{s:5:\"title\";s:12:\"Cloud Native\";s:3:\"url\";s:57:\"https://translucent.mesoishop.com/cloud-native-solutions/\";s:6:\"target\";s:0:\"\";}'),(132871,3977,'_section_2_1_cta','field_6269e4b076518_field_62551b3e101c4'),(132872,3977,'section_2','2'),(132873,3977,'_section_2','field_6243113be9003'),(132874,3977,'section_3_0_hide_it','1'),(132875,3977,'_section_3_0_hide_it','field_6269f8293d71b'),(132876,3977,'section_3_0_menu_icon','3979'),(132877,3977,'_section_3_0_menu_icon','field_624312328616c'),(132878,3977,'section_3_0_subheading','What is'),(132879,3977,'_section_3_0_subheading','field_624312328616a'),(132880,3977,'section_3_0_menu_short_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do.'),(132881,3977,'_section_3_0_menu_short_content','field_624312328616d'),(132882,3977,'section_3_0_cta','a:3:{s:5:\"title\";s:24:\"Cloud Native Application\";s:3:\"url\";s:57:\"https://translucent.mesoishop.com/cloud-native-solutions/\";s:6:\"target\";s:0:\"\";}'),(132883,3977,'_section_3_0_cta','field_6269e57776519_field_62551b3e101c4'),(132884,3977,'section_3_1_hide_it','1'),(132885,3977,'_section_3_1_hide_it','field_6269f8293d71b'),(132886,3977,'section_3_1_menu_icon','3980'),(132887,3977,'_section_3_1_menu_icon','field_624312328616c'),(132888,3977,'section_3_1_subheading','What is'),(132889,3977,'_section_3_1_subheading','field_624312328616a'),(132890,3977,'section_3_1_menu_short_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do.'),(132891,3977,'_section_3_1_menu_short_content','field_624312328616d'),(132892,3977,'section_3_1_cta','a:3:{s:5:\"title\";s:19:\"Cloud Native DevOps\";s:3:\"url\";s:57:\"https://translucent.mesoishop.com/cloud-native-solutions/\";s:6:\"target\";s:0:\"\";}'),(132893,3977,'_section_3_1_cta','field_6269e57776519_field_62551b3e101c4'),(132894,3977,'section_3','2'),(132895,3977,'_section_3','field_6243123286169'),(132917,3984,'_menu_item_type','custom'),(132918,3984,'_menu_item_menu_item_parent','0'),(132919,3984,'_menu_item_object_id','3984'),(132920,3984,'_menu_item_object','custom'),(132921,3984,'_menu_item_target',''),(132922,3984,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(132923,3984,'_menu_item_xfn',''),(132924,3984,'_menu_item_url',''),(132926,3985,'_wp_attached_file','2022/05/Group-8513.svg'),(132927,3986,'_wp_attached_file','2022/05/Our-Team.svg'),(132928,3987,'_wp_attached_file','2022/05/aboutus.svg'),(132929,3984,'mega_menu','Yes'),(132930,3984,'_mega_menu','field_6243305d826ef'),(132931,3984,'section1_heading','We propel businesses into the future'),(132932,3984,'_section1_heading','field_6243100030153'),(132933,3984,'section1_icon',''),(132934,3984,'_section1_icon','field_62440d59dd33e'),(132935,3984,'section1_short_text','We are nothing but the people and culture that drives our company'),(132936,3984,'_section1_short_text','field_6243100830154'),(132937,3984,'section1_cta',''),(132938,3984,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(132939,3984,'section1',''),(132940,3984,'_section1','field_624303a62cd38'),(132941,3984,'section_2_0_hide_it','0'),(132942,3984,'_section_2_0_hide_it','field_6269f278b9204'),(132943,3984,'section_2_0_menu_icon','3987'),(132944,3984,'_section_2_0_menu_icon','field_624311d4b5db7'),(132945,3984,'section_2_0_subheading',''),(132946,3984,'_section_2_0_subheading','field_6243118ce9006'),(132947,3984,'section_2_0_menu_short_content','Translucent is your partner in data-driven cloud native solutions'),(132948,3984,'_section_2_0_menu_short_content','field_624311e1b5db8'),(132949,3984,'section_2_0_cta','a:3:{s:5:\"title\";s:8:\"About Us\";s:3:\"url\";s:43:\"https://translucent.mesoishop.com/about-us/\";s:6:\"target\";s:0:\"\";}'),(132950,3984,'_section_2_0_cta','field_6269e4b076518_field_62551b3e101c4'),(132951,3984,'section_2_1_hide_it','0'),(132952,3984,'_section_2_1_hide_it','field_6269f278b9204'),(132953,3984,'section_2_1_menu_icon','3986'),(132954,3984,'_section_2_1_menu_icon','field_624311d4b5db7'),(132955,3984,'section_2_1_subheading',''),(132956,3984,'_section_2_1_subheading','field_6243118ce9006'),(132957,3984,'section_2_1_menu_short_content','Coming Soon'),(132958,3984,'_section_2_1_menu_short_content','field_624311e1b5db8'),(132959,3984,'section_2_1_cta','a:3:{s:5:\"title\";s:8:\"Our Team\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(132960,3984,'_section_2_1_cta','field_6269e4b076518_field_62551b3e101c4'),(132961,3984,'section_2','2'),(132962,3984,'_section_2','field_6243113be9003'),(132963,3984,'section_3_0_hide_it','0'),(132964,3984,'_section_3_0_hide_it','field_6269f8293d71b'),(132965,3984,'section_3_0_menu_icon','3985'),(132966,3984,'_section_3_0_menu_icon','field_624312328616c'),(132967,3984,'section_3_0_subheading',''),(132968,3984,'_section_3_0_subheading','field_624312328616a'),(132969,3984,'section_3_0_menu_short_content','All your digital transformation and cloud native questions, sales, and support needs'),(132970,3984,'_section_3_0_menu_short_content','field_624312328616d'),(132971,3984,'section_3_0_cta','a:3:{s:5:\"title\";s:99:\"Contact\";s:3:\"url\";s:42:\"https://translucent.mesoishop.com/contact/\";s:6:\"target\";s:0:\"\";}'),(132972,3984,'_section_3_0_cta','field_6269e57776519_field_62551b3e101c4'),(132973,3984,'section_3','1'),(132974,3984,'_section_3','field_6243123286169'),(132994,3988,'_menu_item_type','custom'),(132995,3988,'_menu_item_menu_item_parent','0'),(132996,3988,'_menu_item_object_id','3988'),(132997,3988,'_menu_item_object','custom'),(132998,3988,'_menu_item_target',''),(132999,3988,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133000,3988,'_menu_item_xfn',''),(133001,3988,'_menu_item_url','https://translucent.mesoishop.com/case-studies/'),(133003,3989,'_menu_item_type','custom'),(133004,3989,'_menu_item_menu_item_parent','0'),(133005,3989,'_menu_item_object_id','3989'),(133006,3989,'_menu_item_object','custom'),(133007,3989,'_menu_item_target',''),(133008,3989,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133009,3989,'_menu_item_xfn',''),(133010,3989,'_menu_item_url','https://translucent.mesoishop.com/blog/'),(133012,3988,'mega_menu','No'),(133013,3988,'_mega_menu','field_6243305d826ef'),(133014,3988,'section1_heading',''),(133015,3988,'_section1_heading','field_6243100030153'),(133016,3988,'section1_icon',''),(133017,3988,'_section1_icon','field_62440d59dd33e'),(133018,3988,'section1_short_text',''),(133019,3988,'_section1_short_text','field_6243100830154'),(133020,3988,'section1_cta',''),(133021,3988,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(133022,3988,'section1',''),(133023,3988,'_section1','field_624303a62cd38'),(133024,3988,'section_2',''),(133025,3988,'_section_2','field_6243113be9003'),(133026,3988,'section_3',''),(133027,3988,'_section_3','field_6243123286169'),(133028,3989,'mega_menu','No'),(133029,3989,'_mega_menu','field_6243305d826ef'),(133030,3989,'section1_heading',''),(133031,3989,'_section1_heading','field_6243100030153'),(133032,3989,'section1_icon',''),(133033,3989,'_section1_icon','field_62440d59dd33e'),(133034,3989,'section1_short_text',''),(133035,3989,'_section1_short_text','field_6243100830154'),(133036,3989,'section1_cta',''),(133037,3989,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(133038,3989,'section1',''),(133039,3989,'_section1','field_624303a62cd38'),(133040,3989,'section_2',''),(133041,3989,'_section_2','field_6243113be9003'),(133042,3989,'section_3',''),(133043,3989,'_section_3','field_6243123286169'),(133098,3990,'_menu_item_type','post_type'),(133099,3990,'_menu_item_menu_item_parent','0'),(133100,3990,'_menu_item_object_id','3335'),(133101,3990,'_menu_item_object','page'),(133102,3990,'_menu_item_target',''),(133103,3990,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133104,3990,'_menu_item_xfn',''),(133105,3990,'_menu_item_url',''),(133107,3991,'_menu_item_type','post_type'),(133108,3991,'_menu_item_menu_item_parent','0'),(133109,3991,'_menu_item_object_id','57'),(133110,3991,'_menu_item_object','page'),(133111,3991,'_menu_item_target',''),(133112,3991,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133113,3991,'_menu_item_xfn',''),(133114,3991,'_menu_item_url',''),(133116,3992,'_menu_item_type','custom'),(133117,3992,'_menu_item_menu_item_parent','0'),(133118,3992,'_menu_item_object_id','3992'),(133119,3992,'_menu_item_object','custom'),(133120,3992,'_menu_item_target',''),(133121,3992,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133122,3992,'_menu_item_xfn',''),(133123,3992,'_menu_item_url','#'),(133125,3990,'mega_menu','No'),(133126,3990,'_mega_menu','field_6243305d826ef'),(133127,3990,'section1_heading',''),(133128,3990,'_section1_heading','field_6243100030153'),(133129,3990,'section1_icon',''),(133130,3990,'_section1_icon','field_62440d59dd33e'),(133131,3990,'section1_short_text',''),(133132,3990,'_section1_short_text','field_6243100830154'),(133133,3990,'section1_cta',''),(133134,3990,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(133135,3990,'section1',''),(133136,3990,'_section1','field_624303a62cd38'),(133137,3990,'section_2',''),(133138,3990,'_section_2','field_6243113be9003'),(133139,3990,'section_3',''),(133140,3990,'_section_3','field_6243123286169'),(133141,3991,'mega_menu','No'),(133142,3991,'_mega_menu','field_6243305d826ef'),(133143,3991,'section1_heading',''),(133144,3991,'_section1_heading','field_6243100030153'),(133145,3991,'section1_icon',''),(133146,3991,'_section1_icon','field_62440d59dd33e'),(133147,3991,'section1_short_text',''),(133148,3991,'_section1_short_text','field_6243100830154'),(133149,3991,'section1_cta',''),(133150,3991,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(133151,3991,'section1',''),(133152,3991,'_section1','field_624303a62cd38'),(133153,3991,'section_2',''),(133154,3991,'_section_2','field_6243113be9003'),(133155,3991,'section_3',''),(133156,3991,'_section_3','field_6243123286169'),(133157,3992,'mega_menu','No'),(133158,3992,'_mega_menu','field_6243305d826ef'),(133159,3992,'section1_heading',''),(133160,3992,'_section1_heading','field_6243100030153'),(133161,3992,'section1_icon',''),(133162,3992,'_section1_icon','field_62440d59dd33e'),(133163,3992,'section1_short_text',''),(133164,3992,'_section1_short_text','field_6243100830154'),(133165,3992,'section1_cta',''),(133166,3992,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(133167,3992,'section1',''),(133168,3992,'_section1','field_624303a62cd38'),(133169,3992,'section_2',''),(133170,3992,'_section_2','field_6243113be9003'),(133171,3992,'section_3',''),(133172,3992,'_section_3','field_6243123286169'),(133185,3993,'_menu_item_type','custom'),(133186,3993,'_menu_item_menu_item_parent','0'),(133187,3993,'_menu_item_object_id','3993'),(133188,3993,'_menu_item_object','custom'),(133189,3993,'_menu_item_target',''),(133190,3993,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133191,3993,'_menu_item_xfn',''),(133192,3993,'_menu_item_url',''),(133194,3994,'_menu_item_type','custom'),(133195,3994,'_menu_item_menu_item_parent','0'),(133196,3994,'_menu_item_object_id','3994'),(133197,3994,'_menu_item_object','custom'),(133198,3994,'_menu_item_target',''),(133199,3994,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133200,3994,'_menu_item_xfn',''),(133201,3994,'_menu_item_url','https://translucent.local/cloud-native-application-development/'),(133203,3995,'_menu_item_type','custom'),(133204,3995,'_menu_item_menu_item_parent','0'),(133205,3995,'_menu_item_object_id','3995'),(133206,3995,'_menu_item_object','custom'),(133207,3995,'_menu_item_target',''),(133208,3995,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133209,3995,'_menu_item_xfn',''),(133210,3995,'_menu_item_url','https://translucent.local/kubernetes-professional-services-new/'),(133212,3996,'_menu_item_type','custom'),(133213,3996,'_menu_item_menu_item_parent','0'),(133214,3996,'_menu_item_object_id','3996'),(133215,3996,'_menu_item_object','custom'),(133216,3996,'_menu_item_target',''),(133217,3996,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133218,3996,'_menu_item_xfn',''),(133219,3996,'_menu_item_url','https://translucent.local/cloud-native-solutions/'),(133221,3997,'_menu_item_type','custom'),(133222,3997,'_menu_item_menu_item_parent','0'),(133223,3997,'_menu_item_object_id','3997'),(133224,3997,'_menu_item_object','custom'),(133225,3997,'_menu_item_target',''),(133226,3997,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133227,3997,'_menu_item_xfn',''),(133228,3997,'_menu_item_url','https://translucent.local/cloud-native-devops/'),(133230,3998,'_menu_item_type','custom'),(133231,3998,'_menu_item_menu_item_parent','0'),(133232,3998,'_menu_item_object_id','3998'),(133233,3998,'_menu_item_object','custom'),(133234,3998,'_menu_item_target',''),(133235,3998,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133236,3998,'_menu_item_xfn',''),(133237,3998,'_menu_item_url','https://translucent.local/tek-world/'),(133239,3999,'_menu_item_type','custom'),(133240,3999,'_menu_item_menu_item_parent','0'),(133241,3999,'_menu_item_object_id','3999'),(133242,3999,'_menu_item_object','custom'),(133243,3999,'_menu_item_target',''),(133244,3999,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133245,3999,'_menu_item_xfn',''),(133246,3999,'_menu_item_url','https://translucent.local/services/machine-learning-new/'),(133248,3993,'mega_menu','No'),(133249,3993,'_mega_menu','field_6243305d826ef'),(133250,3993,'section1_heading',''),(133251,3993,'_section1_heading','field_6243100030153'),(133252,3993,'section1_icon',''),(133253,3993,'_section1_icon','field_62440d59dd33e'),(133254,3993,'section1_short_text',''),(133255,3993,'_section1_short_text','field_6243100830154'),(133256,3993,'section1_cta',''),(133257,3993,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(133258,3993,'section1',''),(133259,3993,'_section1','field_624303a62cd38'),(133260,3993,'section_2',''),(133261,3993,'_section_2','field_6243113be9003'),(133262,3993,'section_3',''),(133263,3993,'_section_3','field_6243123286169'),(133264,3994,'mega_menu','No'),(133265,3994,'_mega_menu','field_6243305d826ef'),(133266,3994,'section1_heading',''),(133267,3994,'_section1_heading','field_6243100030153'),(133268,3994,'section1_icon',''),(133269,3994,'_section1_icon','field_62440d59dd33e'),(133270,3994,'section1_short_text',''),(133271,3994,'_section1_short_text','field_6243100830154'),(133272,3994,'section1_cta',''),(133273,3994,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(133274,3994,'section1',''),(133275,3994,'_section1','field_624303a62cd38'),(133276,3994,'section_2',''),(133277,3994,'_section_2','field_6243113be9003'),(133278,3994,'section_3',''),(133279,3994,'_section_3','field_6243123286169'),(133280,3995,'mega_menu','No'),(133281,3995,'_mega_menu','field_6243305d826ef'),(133282,3995,'section1_heading',''),(133283,3995,'_section1_heading','field_6243100030153'),(133284,3995,'section1_icon',''),(133285,3995,'_section1_icon','field_62440d59dd33e'),(133286,3995,'section1_short_text',''),(133287,3995,'_section1_short_text','field_6243100830154'),(133288,3995,'section1_cta',''),(133289,3995,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(133290,3995,'section1',''),(133291,3995,'_section1','field_624303a62cd38'),(133292,3995,'section_2',''),(133293,3995,'_section_2','field_6243113be9003'),(133294,3995,'section_3',''),(133295,3995,'_section_3','field_6243123286169'),(133296,3996,'mega_menu','No'),(133297,3996,'_mega_menu','field_6243305d826ef'),(133298,3996,'section1_heading',''),(133299,3996,'_section1_heading','field_6243100030153'),(133300,3996,'section1_icon',''),(133301,3996,'_section1_icon','field_62440d59dd33e'),(133302,3996,'section1_short_text',''),(133303,3996,'_section1_short_text','field_6243100830154'),(133304,3996,'section1_cta',''),(133305,3996,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(133306,3996,'section1',''),(133307,3996,'_section1','field_624303a62cd38'),(133308,3996,'section_2',''),(133309,3996,'_section_2','field_6243113be9003'),(133310,3996,'section_3',''),(133311,3996,'_section_3','field_6243123286169'),(133312,3997,'mega_menu','No'),(133313,3997,'_mega_menu','field_6243305d826ef'),(133314,3997,'section1_heading',''),(133315,3997,'_section1_heading','field_6243100030153'),(133316,3997,'section1_icon',''),(133317,3997,'_section1_icon','field_62440d59dd33e'),(133318,3997,'section1_short_text',''),(133319,3997,'_section1_short_text','field_6243100830154'),(133320,3997,'section1_cta',''),(133321,3997,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(133322,3997,'section1',''),(133323,3997,'_section1','field_624303a62cd38'),(133324,3997,'section_2',''),(133325,3997,'_section_2','field_6243113be9003'),(133326,3997,'section_3',''),(133327,3997,'_section_3','field_6243123286169'),(133328,3998,'mega_menu','No'),(133329,3998,'_mega_menu','field_6243305d826ef'),(133330,3998,'section1_heading',''),(133331,3998,'_section1_heading','field_6243100030153'),(133332,3998,'section1_icon',''),(133333,3998,'_section1_icon','field_62440d59dd33e'),(133334,3998,'section1_short_text',''),(133335,3998,'_section1_short_text','field_6243100830154'),(133336,3998,'section1_cta',''),(133337,3998,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(133338,3998,'section1',''),(133339,3998,'_section1','field_624303a62cd38'),(133340,3998,'section_2',''),(133341,3998,'_section_2','field_6243113be9003'),(133342,3998,'section_3',''),(133343,3998,'_section_3','field_6243123286169'),(133344,3999,'mega_menu','No'),(133345,3999,'_mega_menu','field_6243305d826ef'),(133346,3999,'section1_heading',''),(133347,3999,'_section1_heading','field_6243100030153'),(133348,3999,'section1_icon',''),(133349,3999,'_section1_icon','field_62440d59dd33e'),(133350,3999,'section1_short_text',''),(133351,3999,'_section1_short_text','field_6243100830154'),(133352,3999,'section1_cta',''),(133353,3999,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(133354,3999,'section1',''),(133355,3999,'_section1','field_624303a62cd38'),(133356,3999,'section_2',''),(133357,3999,'_section_2','field_6243113be9003'),(133358,3999,'section_3',''),(133359,3999,'_section_3','field_6243123286169'),(133388,4000,'_menu_item_type','custom'),(133389,4000,'_menu_item_menu_item_parent','0'),(133390,4000,'_menu_item_object_id','4000'),(133391,4000,'_menu_item_object','custom'),(133392,4000,'_menu_item_target',''),(133393,4000,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133394,4000,'_menu_item_xfn',''),(133395,4000,'_menu_item_url','https://translucent.local/what-is-data-driven-digital-transformation/'),(133424,4000,'mega_menu','No'),(133425,4000,'_mega_menu','field_6243305d826ef'),(133426,4000,'section1_heading',''),(133427,4000,'_section1_heading','field_6243100030153'),(133428,4000,'section1_icon',''),(133429,4000,'_section1_icon','field_62440d59dd33e'),(133430,4000,'section1_short_text',''),(133431,4000,'_section1_short_text','field_6243100830154'),(133432,4000,'section1_cta',''),(133433,4000,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(133434,4000,'section1',''),(133435,4000,'_section1','field_624303a62cd38'),(133436,4000,'section_2',''),(133437,4000,'_section_2','field_6243113be9003'),(133438,4000,'section_3',''),(133439,4000,'_section_3','field_6243123286169'),(133504,4004,'_menu_item_type','custom'),(133505,4004,'_menu_item_menu_item_parent','0'),(133506,4004,'_menu_item_object_id','4004'),(133507,4004,'_menu_item_object','custom'),(133508,4004,'_menu_item_target',''),(133509,4004,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133510,4004,'_menu_item_xfn',''),(133511,4004,'_menu_item_url','#'),(133513,4005,'_menu_item_type','custom'),(133514,4005,'_menu_item_menu_item_parent','0'),(133515,4005,'_menu_item_object_id','4005'),(133516,4005,'_menu_item_object','custom'),(133517,4005,'_menu_item_target',''),(133518,4005,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133519,4005,'_menu_item_xfn',''),(133520,4005,'_menu_item_url','#'),(133522,4006,'_menu_item_type','custom'),(133523,4006,'_menu_item_menu_item_parent','0'),(133524,4006,'_menu_item_object_id','4006'),(133525,4006,'_menu_item_object','custom'),(133526,4006,'_menu_item_target',''),(133527,4006,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133528,4006,'_menu_item_xfn',''),(133529,4006,'_menu_item_url','#'),(133531,4004,'mega_menu','No'),(133532,4004,'_mega_menu','field_6243305d826ef'),(133533,4004,'section1_heading',''),(133534,4004,'_section1_heading','field_6243100030153'),(133535,4004,'section1_icon',''),(133536,4004,'_section1_icon','field_62440d59dd33e'),(133537,4004,'section1_short_text',''),(133538,4004,'_section1_short_text','field_6243100830154'),(133539,4004,'section1_cta',''),(133540,4004,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(133541,4004,'section1',''),(133542,4004,'_section1','field_624303a62cd38'),(133543,4004,'section_2',''),(133544,4004,'_section_2','field_6243113be9003'),(133545,4004,'section_3',''),(133546,4004,'_section_3','field_6243123286169'),(133547,4005,'mega_menu','No'),(133548,4005,'_mega_menu','field_6243305d826ef'),(133549,4005,'section1_heading',''),(133550,4005,'_section1_heading','field_6243100030153'),(133551,4005,'section1_icon',''),(133552,4005,'_section1_icon','field_62440d59dd33e'),(133553,4005,'section1_short_text',''),(133554,4005,'_section1_short_text','field_6243100830154'),(133555,4005,'section1_cta',''),(133556,4005,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(133557,4005,'section1',''),(133558,4005,'_section1','field_624303a62cd38'),(133559,4005,'section_2',''),(133560,4005,'_section_2','field_6243113be9003'),(133561,4005,'section_3',''),(133562,4005,'_section_3','field_6243123286169'),(133563,4006,'mega_menu','No'),(133564,4006,'_mega_menu','field_6243305d826ef'),(133565,4006,'section1_heading',''),(133566,4006,'_section1_heading','field_6243100030153'),(133567,4006,'section1_icon',''),(133568,4006,'_section1_icon','field_62440d59dd33e'),(133569,4006,'section1_short_text',''),(133570,4006,'_section1_short_text','field_6243100830154'),(133571,4006,'section1_cta',''),(133572,4006,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(133573,4006,'section1',''),(133574,4006,'_section1','field_624303a62cd38'),(133575,4006,'section_2',''),(133576,4006,'_section_2','field_6243113be9003'),(133577,4006,'section_3',''),(133578,4006,'_section_3','field_6243123286169'),(133591,4007,'_menu_item_type','custom'),(133592,4007,'_menu_item_menu_item_parent','0'),(133593,4007,'_menu_item_object_id','4007'),(133594,4007,'_menu_item_object','custom'),(133595,4007,'_menu_item_target',''),(133596,4007,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133597,4007,'_menu_item_xfn',''),(133598,4007,'_menu_item_url','https://translucent.local/tek-world/'),(133600,4008,'_menu_item_type','custom'),(133601,4008,'_menu_item_menu_item_parent','0'),(133602,4008,'_menu_item_object_id','4008'),(133603,4008,'_menu_item_object','custom'),(133604,4008,'_menu_item_target',''),(133605,4008,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133606,4008,'_menu_item_xfn',''),(133607,4008,'_menu_item_url','https://translucent.local/tekstack/'),(133609,4009,'_menu_item_type','custom'),(133610,4009,'_menu_item_menu_item_parent','0'),(133611,4009,'_menu_item_object_id','4009'),(133612,4009,'_menu_item_object','custom'),(133613,4009,'_menu_item_target',''),(133614,4009,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133615,4009,'_menu_item_xfn',''),(133616,4009,'_menu_item_url','https://translucent.local/tekteams/'),(133618,4010,'_menu_item_type','custom'),(133619,4010,'_menu_item_menu_item_parent','0'),(133620,4010,'_menu_item_object_id','4010'),(133621,4010,'_menu_item_object','custom'),(133622,4010,'_menu_item_target',''),(133623,4010,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133624,4010,'_menu_item_xfn',''),(133625,4010,'_menu_item_url','https://translucent.local/tekprocess/'),(133627,4007,'mega_menu','No'),(133628,4007,'_mega_menu','field_6243305d826ef'),(133629,4008,'mega_menu','No'),(133630,4008,'_mega_menu','field_6243305d826ef'),(133631,4008,'section1_heading',''),(133632,4008,'_section1_heading','field_6243100030153'),(133633,4008,'section1_icon',''),(133634,4008,'_section1_icon','field_62440d59dd33e'),(133635,4008,'section1_short_text',''),(133636,4008,'_section1_short_text','field_6243100830154'),(133637,4008,'section1_cta',''),(133638,4008,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(133639,4008,'section1',''),(133640,4008,'_section1','field_624303a62cd38'),(133641,4008,'section_2',''),(133642,4008,'_section_2','field_6243113be9003'),(133643,4008,'section_3',''),(133644,4008,'_section_3','field_6243123286169'),(133645,4009,'mega_menu','No'),(133646,4009,'_mega_menu','field_6243305d826ef'),(133647,4009,'section1_heading',''),(133648,4009,'_section1_heading','field_6243100030153'),(133649,4009,'section1_icon',''),(133650,4009,'_section1_icon','field_62440d59dd33e'),(133651,4009,'section1_short_text',''),(133652,4009,'_section1_short_text','field_6243100830154'),(133653,4009,'section1_cta',''),(133654,4009,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(133655,4009,'section1',''),(133656,4009,'_section1','field_624303a62cd38'),(133657,4009,'section_2',''),(133658,4009,'_section_2','field_6243113be9003'),(133659,4009,'section_3',''),(133660,4009,'_section_3','field_6243123286169'),(133661,4010,'mega_menu','No'),(133662,4010,'_mega_menu','field_6243305d826ef'),(133663,4010,'section1_heading',''),(133664,4010,'_section1_heading','field_6243100030153'),(133665,4010,'section1_icon',''),(133666,4010,'_section1_icon','field_62440d59dd33e'),(133667,4010,'section1_short_text',''),(133668,4010,'_section1_short_text','field_6243100830154'),(133669,4010,'section1_cta',''),(133670,4010,'_section1_cta','field_6269e3c4aaa41_field_62551b3e101c4'),(133671,4010,'section1',''),(133672,4010,'_section1','field_624303a62cd38'),(133673,4010,'section_2',''),(133674,4010,'_section_2','field_6243113be9003'),(133675,4010,'section_3',''),(133676,4010,'_section_3','field_6243123286169'),(133709,4004,'_pinterest_shares','0'),(133710,4004,'_total_shares','0'),(133712,4004,'_menu_sgpb_popup_id','0'),(133713,4005,'_pinterest_shares','0'),(133714,4005,'_total_shares','0'),(133716,4005,'_menu_sgpb_popup_id','0'),(133717,4006,'_pinterest_shares','0'),(133718,4006,'_total_shares','0'),(133720,4006,'_menu_sgpb_popup_id','0'),(133777,3739,'_edit_lock','1660638941:20'),(133778,3739,'_edit_last','20'),(133785,4011,'_edit_lock','1655734518:4'),(133786,4011,'_edit_last','4'),(133787,4011,'_wp_page_template','flexible-template.php'),(133788,4011,'hefo_before','0'),(133789,4011,'hefo_after','0'),(133790,4011,'_yoast_wpseo_focuskeywords','[]'),(133791,4011,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(133792,4011,'_yoast_wpseo_estimated-reading-time-minutes',''),(133793,4011,'flexible_templates','a:7:{i:0;s:16:\"tek_world_banner\";i:1;s:26:\"tek_world_scale_your_teams\";i:2;s:28:\"tek_world_stack_process_team\";i:3;s:20:\"tek_world_zero_trust\";i:4;s:21:\"tek_world_tek_success\";i:5;s:26:\"tek_world_translucent_blog\";i:6;s:17:\"lets_talk_section\";}'),(133794,4011,'_flexible_templates','field_6254f4d84ef9b'),(133795,4012,'flexible_templates',''),(133796,4012,'_flexible_templates','field_6254f4d84ef9b'),(133800,4013,'_wp_attached_file','2022/05/Group-102.svg'),(133801,4014,'_wp_attached_file','2022/05/Union-20@2x-2-scaled-1.jpg'),(133802,4014,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:771;s:4:\"file\";s:34:\"2022/05/Union-20@2x-2-scaled-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Union-20@2x-2-scaled-1-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Union-20@2x-2-scaled-1-1024x308.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:308;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Union-20@2x-2-scaled-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:34:\"Union-20@2x-2-scaled-1-768x231.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"Union-20@2x-2-scaled-1-1536x463.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:463;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:35:\"Union-20@2x-2-scaled-1-2048x617.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:617;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:34:\"Union-20@2x-2-scaled-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(133803,4014,'_imagify_optimization_level','0'),(133804,4014,'_imagify_status','success'),(133805,4014,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:87425;s:14:\"optimized_size\";i:70413;s:7:\"percent\";d:19.46;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20054;s:14:\"optimized_size\";i:34256;s:7:\"percent\";d:-70.82;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61917;s:14:\"optimized_size\";i:106572;s:7:\"percent\";d:-72.12;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39477;s:14:\"optimized_size\";i:70610;s:7:\"percent\";d:-78.86;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14651;s:14:\"optimized_size\";i:25796;s:7:\"percent\";d:-76.07;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3772;s:14:\"optimized_size\";i:5878;s:7:\"percent\";d:-55.83;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23079;s:14:\"optimized_size\";i:39588;s:7:\"percent\";d:-71.53;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4142;s:14:\"optimized_size\";i:6698;s:7:\"percent\";d:-61.71;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:87425;s:14:\"optimized_size\";i:142602;s:7:\"percent\";d:-63.11;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4142;s:14:\"optimized_size\";i:3568;s:7:\"percent\";d:13.86;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23079;s:14:\"optimized_size\";i:20373;s:7:\"percent\";d:11.72;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3772;s:14:\"optimized_size\";i:3268;s:7:\"percent\";d:13.36;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14651;s:14:\"optimized_size\";i:13086;s:7:\"percent\";d:10.68;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39477;s:14:\"optimized_size\";i:34290;s:7:\"percent\";d:13.14;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61917;s:14:\"optimized_size\";i:52304;s:7:\"percent\";d:15.53;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20054;s:14:\"optimized_size\";i:17813;s:7:\"percent\";d:11.17;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:509034;s:14:\"optimized_size\";i:647115;s:7:\"percent\";d:-27.13;}}'),(133806,4011,'flexible_templates_0_image','4014'),(133807,4011,'_flexible_templates_0_image','field_6257bb6127dce_field_6254fdc5efa2a'),(133808,4011,'flexible_templates_0_heading','Get award-winning results with our TEK Solutions '),(133809,4011,'_flexible_templates_0_heading','field_6257bb2027dcb_field_6254fdb2efa27'),(133810,4011,'flexible_templates_0_sub_heading','TEK™ WORLD'),(133811,4011,'_flexible_templates_0_sub_heading','field_6257bb3a27dcc_field_6254fdbaefa28'),(133812,4011,'flexible_templates_0_icon','4013'),(133813,4011,'_flexible_templates_0_icon','field_6257bb5127dcd_field_62550482480cb'),(133814,4011,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(133815,4011,'_flexible_templates_0_cta','field_6257bb7d27dcf_field_62551b3e101c4'),(133816,4015,'flexible_templates','a:1:{i:0;s:16:\"tek_world_banner\";}'),(133817,4015,'_flexible_templates','field_6254f4d84ef9b'),(133818,4015,'flexible_templates_0_image','4014'),(133819,4015,'_flexible_templates_0_image','field_6257bb6127dce_field_6254fdc5efa2a'),(133820,4015,'flexible_templates_0_heading','Get award-winning results with our TEK Solutions '),(133821,4015,'_flexible_templates_0_heading','field_6257bb2027dcb_field_6254fdb2efa27'),(133822,4015,'flexible_templates_0_sub_heading','TEK™ WORLD'),(133823,4015,'_flexible_templates_0_sub_heading','field_6257bb3a27dcc_field_6254fdbaefa28'),(133824,4015,'flexible_templates_0_icon','4013'),(133825,4015,'_flexible_templates_0_icon','field_6257bb5127dcd_field_62550482480cb'),(133826,4015,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(133827,4015,'_flexible_templates_0_cta','field_6257bb7d27dcf_field_62551b3e101c4'),(133834,4016,'_wp_attached_file','2022/05/Group-8207.png'),(133835,4016,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:286;s:6:\"height\";i:211;s:4:\"file\";s:22:\"2022/05/Group-8207.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Group-8207-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:{}}}'),(133836,4016,'_imagify_optimization_level','0'),(133837,4016,'_imagify_status','success'),(133838,4016,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33721;s:14:\"optimized_size\";i:24537;s:7:\"percent\";d:27.24;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28171;s:14:\"optimized_size\";i:17996;s:7:\"percent\";d:36.12;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33721;s:14:\"optimized_size\";i:36622;s:7:\"percent\";d:-8.6;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28171;s:14:\"optimized_size\";i:27480;s:7:\"percent\";d:2.45;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:123784;s:14:\"optimized_size\";i:106635;s:7:\"percent\";d:13.85;}}'),(133839,4011,'flexible_templates_1_heading',' Winning Results for Your Business. '),(133840,4011,'_flexible_templates_1_heading','field_6257bde945e43_field_6254fdb2efa27'),(133841,4011,'flexible_templates_1_sub_heading','Translucent Expert Knowledge:'),(133842,4011,'_flexible_templates_1_sub_heading','field_6257bdf945e44_field_6254fdbaefa28'),(133843,4011,'flexible_templates_1_copy','We provide industry-leading cloud native solutions that are backed by our award-winning process, teams, and production-ready data-driven platform. TEK World Solutions are our branded suite of cloud native products and services for all your business needs. Translucent Expert Knowledge will guide your project from ideation to steady state and beyond.'),(133844,4011,'_flexible_templates_1_copy','field_6257be1045e45_field_6254fdc0efa29'),(133845,4011,'flexible_templates_1_image','4016'),(133846,4011,'_flexible_templates_1_image','field_6257be2845e46_field_6254fdc5efa2a'),(133847,4017,'flexible_templates','a:2:{i:0;s:16:\"tek_world_banner\";i:1;s:26:\"tek_world_scale_your_teams\";}'),(133848,4017,'_flexible_templates','field_6254f4d84ef9b'),(133849,4017,'flexible_templates_0_image','4014'),(133850,4017,'_flexible_templates_0_image','field_6257bb6127dce_field_6254fdc5efa2a'),(133851,4017,'flexible_templates_0_heading','Get award-winning results with our TEK Solutions '),(133852,4017,'_flexible_templates_0_heading','field_6257bb2027dcb_field_6254fdb2efa27'),(133853,4017,'flexible_templates_0_sub_heading','TEK™ WORLD'),(133854,4017,'_flexible_templates_0_sub_heading','field_6257bb3a27dcc_field_6254fdbaefa28'),(133855,4017,'flexible_templates_0_icon','4013'),(133856,4017,'_flexible_templates_0_icon','field_6257bb5127dcd_field_62550482480cb'),(133857,4017,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(133858,4017,'_flexible_templates_0_cta','field_6257bb7d27dcf_field_62551b3e101c4'),(133859,4017,'flexible_templates_1_heading',' Winning Results for Your Business. '),(133860,4017,'_flexible_templates_1_heading','field_6257bde945e43_field_6254fdb2efa27'),(133861,4017,'flexible_templates_1_sub_heading','Translucent Expert Knowledge:'),(133862,4017,'_flexible_templates_1_sub_heading','field_6257bdf945e44_field_6254fdbaefa28'),(133863,4017,'flexible_templates_1_copy','We provide industry-leading cloud native solutions that are backed by our award-winning process, teams, and production-ready data-driven platform. TEK World Solutions are our branded suite of cloud native products and services for all your business needs. Our TEK solutions will guide your project from ideation to steady state and beyond.'),(133864,4017,'_flexible_templates_1_copy','field_6257be1045e45_field_6254fdc0efa29'),(133865,4017,'flexible_templates_1_image','4016'),(133866,4017,'_flexible_templates_1_image','field_6257be2845e46_field_6254fdc5efa2a'),(133870,4011,'flexible_templates_2_stack_process_team_0_icon','4019'),(133871,4011,'_flexible_templates_2_stack_process_team_0_icon','field_6257c3a4705fa_field_62550482480cb'),(133872,4011,'flexible_templates_2_stack_process_team_0_heading','TEKStack'),(133873,4011,'_flexible_templates_2_stack_process_team_0_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(133874,4011,'flexible_templates_2_stack_process_team_0_copy_wysiwyg','TEKStack is our open source, production-ready, cloud-native, data-driven digital transformation pipeline for your company to compete in the digital age. With this range of technologies we have perfected the process of working with production ready tools to save time and money on your cloud applications and platforms.'),(133875,4011,'_flexible_templates_2_stack_process_team_0_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(133876,4011,'flexible_templates_2_stack_process_team_0_cta','a:3:{s:5:\"title\";s:26:\"Compete in the Digital Age\";s:3:\"url\";s:35:\"https://translucent.local/tekstack/\";s:6:\"target\";s:0:\"\";}'),(133877,4011,'_flexible_templates_2_stack_process_team_0_cta','field_6257c421705fd_field_62551b3e101c4'),(133878,4011,'flexible_templates_2_stack_process_team_1_icon','4020'),(133879,4011,'_flexible_templates_2_stack_process_team_1_icon','field_6257c3a4705fa_field_62550482480cb'),(133880,4011,'flexible_templates_2_stack_process_team_1_heading','TEKProcess'),(133881,4011,'_flexible_templates_2_stack_process_team_1_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(133882,4011,'flexible_templates_2_stack_process_team_1_copy_wysiwyg','TEK Process makes it possible to easily organize the entire cloud native development process, from ideation and discovery, to production-ready solutions. We continuously invest in the R&D of our processes to help you stay ahead of the curve.  Improve ROI, grants, and investment opportunities with a process linked to user feedback.'),(133883,4011,'_flexible_templates_2_stack_process_team_1_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(133884,4011,'flexible_templates_2_stack_process_team_1_cta','a:3:{s:5:\"title\";s:25:\"Align your Business Goals\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(133885,4011,'_flexible_templates_2_stack_process_team_1_cta','field_6257c421705fd_field_62551b3e101c4'),(133886,4011,'flexible_templates_2_stack_process_team_2_icon','4021'),(133887,4011,'_flexible_templates_2_stack_process_team_2_icon','field_6257c3a4705fa_field_62550482480cb'),(133888,4011,'flexible_templates_2_stack_process_team_2_heading','TEKTeams'),(133889,4011,'_flexible_templates_2_stack_process_team_2_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(133890,4011,'flexible_templates_2_stack_process_team_2_copy_wysiwyg','Imagine your company without the burden of hiring developers, engineers, or keeping up with the latest technology. With TEK Teams, your organization will have the top 1% resources on demand, to scale as needed,  and in line with the growth of your cloud native application. You will finally be free to focus on what you do best—running your business. '),(133891,4011,'_flexible_templates_2_stack_process_team_2_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(133892,4011,'flexible_templates_2_stack_process_team_2_cta','a:3:{s:5:\"title\";s:16:\"Scale your Teams\";s:3:\"url\";s:35:\"https://translucent.local/tekteams/\";s:6:\"target\";s:0:\"\";}'),(133893,4011,'_flexible_templates_2_stack_process_team_2_cta','field_6257c421705fd_field_62551b3e101c4'),(133894,4011,'flexible_templates_2_stack_process_team','3'),(133895,4011,'_flexible_templates_2_stack_process_team','field_6257c35c705f9'),(133896,4018,'flexible_templates','a:3:{i:0;s:16:\"tek_world_banner\";i:1;s:26:\"tek_world_scale_your_teams\";i:2;s:28:\"tek_world_stack_process_team\";}'),(133897,4018,'_flexible_templates','field_6254f4d84ef9b'),(133898,4018,'flexible_templates_0_image','4014'),(133899,4018,'_flexible_templates_0_image','field_6257bb6127dce_field_6254fdc5efa2a'),(133900,4018,'flexible_templates_0_heading','Get award-winning results with our TEK Solutions '),(133901,4018,'_flexible_templates_0_heading','field_6257bb2027dcb_field_6254fdb2efa27'),(133902,4018,'flexible_templates_0_sub_heading','TEK™ WORLD'),(133903,4018,'_flexible_templates_0_sub_heading','field_6257bb3a27dcc_field_6254fdbaefa28'),(133904,4018,'flexible_templates_0_icon','4013'),(133905,4018,'_flexible_templates_0_icon','field_6257bb5127dcd_field_62550482480cb'),(133906,4018,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(133907,4018,'_flexible_templates_0_cta','field_6257bb7d27dcf_field_62551b3e101c4'),(133908,4018,'flexible_templates_1_heading',' Winning Results for Your Business. '),(133909,4018,'_flexible_templates_1_heading','field_6257bde945e43_field_6254fdb2efa27'),(133910,4018,'flexible_templates_1_sub_heading','Translucent Expert Knowledge:'),(133911,4018,'_flexible_templates_1_sub_heading','field_6257bdf945e44_field_6254fdbaefa28'),(133912,4018,'flexible_templates_1_copy','We provide industry-leading cloud native solutions that are backed by our award-winning process, teams, and production-ready data-driven platform. TEK World Solutions are our branded suite of cloud native products and services for all your business needs. Our TEK solutions will guide your project from ideation to steady state and beyond.'),(133913,4018,'_flexible_templates_1_copy','field_6257be1045e45_field_6254fdc0efa29'),(133914,4018,'flexible_templates_1_image','4016'),(133915,4018,'_flexible_templates_1_image','field_6257be2845e46_field_6254fdc5efa2a'),(133916,4018,'flexible_templates_2_stack_process_team_0_icon',''),(133917,4018,'_flexible_templates_2_stack_process_team_0_icon','field_6257c3a4705fa_field_62550482480cb'),(133918,4018,'flexible_templates_2_stack_process_team_0_heading','TEKStack'),(133919,4018,'_flexible_templates_2_stack_process_team_0_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(133920,4018,'flexible_templates_2_stack_process_team_0_copy_wysiwyg','TEKStack is our open source, production-ready, cloud-native, data-driven digital transformation pipeline for your company to compete in the digital age. With this range of technologies we have perfected the process of working with production ready tools to save time and money on your cloud applications and platforms.'),(133921,4018,'_flexible_templates_2_stack_process_team_0_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(133922,4018,'flexible_templates_2_stack_process_team_0_cta','a:3:{s:5:\"title\";s:26:\"Compete in the Digital Age\";s:3:\"url\";s:38:\"https://translucent.local/tekstack-ai/\";s:6:\"target\";s:0:\"\";}'),(133923,4018,'_flexible_templates_2_stack_process_team_0_cta','field_6257c421705fd_field_62551b3e101c4'),(133924,4018,'flexible_templates_2_stack_process_team_1_icon',''),(133925,4018,'_flexible_templates_2_stack_process_team_1_icon','field_6257c3a4705fa_field_62550482480cb'),(133926,4018,'flexible_templates_2_stack_process_team_1_heading','TEKProcess'),(133927,4018,'_flexible_templates_2_stack_process_team_1_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(133928,4018,'flexible_templates_2_stack_process_team_1_copy_wysiwyg','TEK Process makes it possible to easily organize the entire cloud native development process, from ideation and discovery, to production-ready solutions. We continuously invest in the R&D of our processes to help you stay ahead of the curve.  Improve ROI, grants, and investment opportunities with a process linked to user feedback.'),(133929,4018,'_flexible_templates_2_stack_process_team_1_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(133930,4018,'flexible_templates_2_stack_process_team_1_cta','a:3:{s:5:\"title\";s:25:\"Align your Business Goals\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(133931,4018,'_flexible_templates_2_stack_process_team_1_cta','field_6257c421705fd_field_62551b3e101c4'),(133932,4018,'flexible_templates_2_stack_process_team_2_icon',''),(133933,4018,'_flexible_templates_2_stack_process_team_2_icon','field_6257c3a4705fa_field_62550482480cb'),(133934,4018,'flexible_templates_2_stack_process_team_2_heading','TEKTeams'),(133935,4018,'_flexible_templates_2_stack_process_team_2_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(133936,4018,'flexible_templates_2_stack_process_team_2_copy_wysiwyg','Imagine your company without the burden of hiring developers, engineers, or keeping up with the latest technology. With TEK Teams, your organization will have the top 1% resources on demand, to scale as needed,  and in line with the growth of your cloud native application. You will finally be free to focus on what you do best—running your business. '),(133937,4018,'_flexible_templates_2_stack_process_team_2_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(133938,4018,'flexible_templates_2_stack_process_team_2_cta','a:3:{s:5:\"title\";s:16:\"Scale your Teams\";s:3:\"url\";s:35:\"https://translucent.local/tekteams/\";s:6:\"target\";s:0:\"\";}'),(133939,4018,'_flexible_templates_2_stack_process_team_2_cta','field_6257c421705fd_field_62551b3e101c4'),(133940,4018,'flexible_templates_2_stack_process_team','3'),(133941,4018,'_flexible_templates_2_stack_process_team','field_6257c35c705f9'),(133945,4019,'_wp_attached_file','2022/05/Group-8212.svg'),(133946,4020,'_wp_attached_file','2022/05/Group-8255.svg'),(133947,4021,'_wp_attached_file','2022/05/Group-7932.svg'),(133948,4022,'flexible_templates','a:3:{i:0;s:16:\"tek_world_banner\";i:1;s:26:\"tek_world_scale_your_teams\";i:2;s:28:\"tek_world_stack_process_team\";}'),(133949,4022,'_flexible_templates','field_6254f4d84ef9b'),(133950,4022,'flexible_templates_0_image','4014'),(133951,4022,'_flexible_templates_0_image','field_6257bb6127dce_field_6254fdc5efa2a'),(133952,4022,'flexible_templates_0_heading','Get award-winning results with our TEK Solutions '),(133953,4022,'_flexible_templates_0_heading','field_6257bb2027dcb_field_6254fdb2efa27'),(133954,4022,'flexible_templates_0_sub_heading','TEK™ WORLD'),(133955,4022,'_flexible_templates_0_sub_heading','field_6257bb3a27dcc_field_6254fdbaefa28'),(133956,4022,'flexible_templates_0_icon','4013'),(133957,4022,'_flexible_templates_0_icon','field_6257bb5127dcd_field_62550482480cb'),(133958,4022,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(133959,4022,'_flexible_templates_0_cta','field_6257bb7d27dcf_field_62551b3e101c4'),(133960,4022,'flexible_templates_1_heading',' Winning Results for Your Business. '),(133961,4022,'_flexible_templates_1_heading','field_6257bde945e43_field_6254fdb2efa27'),(133962,4022,'flexible_templates_1_sub_heading','Translucent Expert Knowledge:'),(133963,4022,'_flexible_templates_1_sub_heading','field_6257bdf945e44_field_6254fdbaefa28'),(133964,4022,'flexible_templates_1_copy','We provide industry-leading cloud native solutions that are backed by our award-winning process, teams, and production-ready data-driven platform. TEK World Solutions are our branded suite of cloud native products and services for all your business needs. Our TEK solutions will guide your project from ideation to steady state and beyond.'),(133965,4022,'_flexible_templates_1_copy','field_6257be1045e45_field_6254fdc0efa29'),(133966,4022,'flexible_templates_1_image','4016'),(133967,4022,'_flexible_templates_1_image','field_6257be2845e46_field_6254fdc5efa2a'),(133968,4022,'flexible_templates_2_stack_process_team_0_icon','4019'),(133969,4022,'_flexible_templates_2_stack_process_team_0_icon','field_6257c3a4705fa_field_62550482480cb'),(133970,4022,'flexible_templates_2_stack_process_team_0_heading','TEKStack'),(133971,4022,'_flexible_templates_2_stack_process_team_0_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(133972,4022,'flexible_templates_2_stack_process_team_0_copy_wysiwyg','TEKStack is our open source, production-ready, cloud-native, data-driven digital transformation pipeline for your company to compete in the digital age. With this range of technologies we have perfected the process of working with production ready tools to save time and money on your cloud applications and platforms.'),(133973,4022,'_flexible_templates_2_stack_process_team_0_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(133974,4022,'flexible_templates_2_stack_process_team_0_cta','a:3:{s:5:\"title\";s:26:\"Compete in the Digital Age\";s:3:\"url\";s:38:\"https://translucent.local/tekstack-ai/\";s:6:\"target\";s:0:\"\";}'),(133975,4022,'_flexible_templates_2_stack_process_team_0_cta','field_6257c421705fd_field_62551b3e101c4'),(133976,4022,'flexible_templates_2_stack_process_team_1_icon','4020'),(133977,4022,'_flexible_templates_2_stack_process_team_1_icon','field_6257c3a4705fa_field_62550482480cb'),(133978,4022,'flexible_templates_2_stack_process_team_1_heading','TEKProcess'),(133979,4022,'_flexible_templates_2_stack_process_team_1_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(133980,4022,'flexible_templates_2_stack_process_team_1_copy_wysiwyg','TEK Process makes it possible to easily organize the entire cloud native development process, from ideation and discovery, to production-ready solutions. We continuously invest in the R&D of our processes to help you stay ahead of the curve.  Improve ROI, grants, and investment opportunities with a process linked to user feedback.'),(133981,4022,'_flexible_templates_2_stack_process_team_1_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(133982,4022,'flexible_templates_2_stack_process_team_1_cta','a:3:{s:5:\"title\";s:25:\"Align your Business Goals\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(133983,4022,'_flexible_templates_2_stack_process_team_1_cta','field_6257c421705fd_field_62551b3e101c4'),(133984,4022,'flexible_templates_2_stack_process_team_2_icon','4021'),(133985,4022,'_flexible_templates_2_stack_process_team_2_icon','field_6257c3a4705fa_field_62550482480cb'),(133986,4022,'flexible_templates_2_stack_process_team_2_heading','TEKTeams'),(133987,4022,'_flexible_templates_2_stack_process_team_2_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(133988,4022,'flexible_templates_2_stack_process_team_2_copy_wysiwyg','Imagine your company without the burden of hiring developers, engineers, or keeping up with the latest technology. With TEK Teams, your organization will have the top 1% resources on demand, to scale as needed,  and in line with the growth of your cloud native application. You will finally be free to focus on what you do best—running your business. '),(133989,4022,'_flexible_templates_2_stack_process_team_2_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(133990,4022,'flexible_templates_2_stack_process_team_2_cta','a:3:{s:5:\"title\";s:16:\"Scale your Teams\";s:3:\"url\";s:35:\"https://translucent.local/tekteams/\";s:6:\"target\";s:0:\"\";}'),(133991,4022,'_flexible_templates_2_stack_process_team_2_cta','field_6257c421705fd_field_62551b3e101c4'),(133992,4022,'flexible_templates_2_stack_process_team','3'),(133993,4022,'_flexible_templates_2_stack_process_team','field_6257c35c705f9'),(133997,4023,'_wp_attached_file','2022/05/cadeado@2x.jpg'),(133998,4023,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:496;s:6:\"height\";i:838;s:4:\"file\";s:22:\"2022/05/cadeado@2x.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"cadeado@2x-178x300.jpg\";s:5:\"width\";i:178;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"cadeado@2x-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"cadeado@2x-496x500.jpg\";s:5:\"width\";i:496;s:6:\"height\";i:500;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:{}}}'),(133999,4023,'_imagify_optimization_level','0'),(134000,4023,'_imagify_status','success'),(134001,4023,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:84650;s:14:\"optimized_size\";i:79170;s:7:\"percent\";d:6.47;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14976;s:14:\"optimized_size\";i:29710;s:7:\"percent\";d:-98.38;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3348;s:14:\"optimized_size\";i:6146;s:7:\"percent\";d:-83.57;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5860;s:14:\"optimized_size\";i:11372;s:7:\"percent\";d:-94.06;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:84650;s:14:\"optimized_size\";i:46500;s:7:\"percent\";d:45.07;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5860;s:14:\"optimized_size\";i:5345;s:7:\"percent\";d:8.79;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3348;s:14:\"optimized_size\";i:2949;s:7:\"percent\";d:11.92;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14976;s:14:\"optimized_size\";i:13279;s:7:\"percent\";d:11.33;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:217668;s:14:\"optimized_size\";i:194471;s:7:\"percent\";d:10.66;}}'),(134002,4011,'flexible_templates_3_heading','Secure multiple distributed sources'),(134003,4011,'_flexible_templates_3_heading','field_6257cf9016730_field_6254fdb2efa27'),(134004,4011,'flexible_templates_3_sub_heading','ZERO TRUST'),(134005,4011,'_flexible_templates_3_sub_heading','field_6257cf9d16731_field_6254fdbaefa28'),(134006,4011,'flexible_templates_3_copy','The Cloud is complex. Every minute, multiple breaches occur due to actors , hackers, malpractice, ignorance, or human error. \r\nIt is more critical than ever to always know what is happening with your systems and apps. Zero Trust security will help you remain secure as possible, to prevent security breaches by safeguarding what matters most: the trust of your customers\' and company\'s information. Cybersecurity is critical to protect the assets of your business 24hrs/day, 7days/week with self healing systems.'),(134007,4011,'_flexible_templates_3_copy','field_6257cfab16732_field_6254fdc0efa29'),(134008,4011,'flexible_templates_3_cta',''),(134009,4011,'_flexible_templates_3_cta','field_6257cfc216733_field_62551b3e101c4'),(134010,4011,'flexible_templates_3_image','4023'),(134011,4011,'_flexible_templates_3_image','field_6257d00f54444_field_6254fdc5efa2a'),(134012,4024,'flexible_templates','a:4:{i:0;s:16:\"tek_world_banner\";i:1;s:26:\"tek_world_scale_your_teams\";i:2;s:28:\"tek_world_stack_process_team\";i:3;s:20:\"tek_world_zero_trust\";}'),(134013,4024,'_flexible_templates','field_6254f4d84ef9b'),(134014,4024,'flexible_templates_0_image','4014'),(134015,4024,'_flexible_templates_0_image','field_6257bb6127dce_field_6254fdc5efa2a'),(134016,4024,'flexible_templates_0_heading','Get award-winning results with our TEK Solutions '),(134017,4024,'_flexible_templates_0_heading','field_6257bb2027dcb_field_6254fdb2efa27'),(134018,4024,'flexible_templates_0_sub_heading','TEK™ WORLD'),(134019,4024,'_flexible_templates_0_sub_heading','field_6257bb3a27dcc_field_6254fdbaefa28'),(134020,4024,'flexible_templates_0_icon','4013'),(134021,4024,'_flexible_templates_0_icon','field_6257bb5127dcd_field_62550482480cb'),(134022,4024,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(134023,4024,'_flexible_templates_0_cta','field_6257bb7d27dcf_field_62551b3e101c4'),(134024,4024,'flexible_templates_1_heading',' Winning Results for Your Business. '),(134025,4024,'_flexible_templates_1_heading','field_6257bde945e43_field_6254fdb2efa27'),(134026,4024,'flexible_templates_1_sub_heading','Translucent Expert Knowledge:'),(134027,4024,'_flexible_templates_1_sub_heading','field_6257bdf945e44_field_6254fdbaefa28'),(134028,4024,'flexible_templates_1_copy','We provide industry-leading cloud native solutions that are backed by our award-winning process, teams, and production-ready data-driven platform. TEK World Solutions are our branded suite of cloud native products and services for all your business needs. Our TEK solutions will guide your project from ideation to steady state and beyond.'),(134029,4024,'_flexible_templates_1_copy','field_6257be1045e45_field_6254fdc0efa29'),(134030,4024,'flexible_templates_1_image','4016'),(134031,4024,'_flexible_templates_1_image','field_6257be2845e46_field_6254fdc5efa2a'),(134032,4024,'flexible_templates_2_stack_process_team_0_icon','4019'),(134033,4024,'_flexible_templates_2_stack_process_team_0_icon','field_6257c3a4705fa_field_62550482480cb'),(134034,4024,'flexible_templates_2_stack_process_team_0_heading','TEKStack'),(134035,4024,'_flexible_templates_2_stack_process_team_0_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(134036,4024,'flexible_templates_2_stack_process_team_0_copy_wysiwyg','TEKStack is our open source, production-ready, cloud-native, data-driven digital transformation pipeline for your company to compete in the digital age. With this range of technologies we have perfected the process of working with production ready tools to save time and money on your cloud applications and platforms.'),(134037,4024,'_flexible_templates_2_stack_process_team_0_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(134038,4024,'flexible_templates_2_stack_process_team_0_cta','a:3:{s:5:\"title\";s:26:\"Compete in the Digital Age\";s:3:\"url\";s:38:\"https://translucent.local/tekstack-ai/\";s:6:\"target\";s:0:\"\";}'),(134039,4024,'_flexible_templates_2_stack_process_team_0_cta','field_6257c421705fd_field_62551b3e101c4'),(134040,4024,'flexible_templates_2_stack_process_team_1_icon','4020'),(134041,4024,'_flexible_templates_2_stack_process_team_1_icon','field_6257c3a4705fa_field_62550482480cb'),(134042,4024,'flexible_templates_2_stack_process_team_1_heading','TEKProcess'),(134043,4024,'_flexible_templates_2_stack_process_team_1_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(134044,4024,'flexible_templates_2_stack_process_team_1_copy_wysiwyg','TEK Process makes it possible to easily organize the entire cloud native development process, from ideation and discovery, to production-ready solutions. We continuously invest in the R&D of our processes to help you stay ahead of the curve.  Improve ROI, grants, and investment opportunities with a process linked to user feedback.'),(134045,4024,'_flexible_templates_2_stack_process_team_1_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(134046,4024,'flexible_templates_2_stack_process_team_1_cta','a:3:{s:5:\"title\";s:25:\"Align your Business Goals\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(134047,4024,'_flexible_templates_2_stack_process_team_1_cta','field_6257c421705fd_field_62551b3e101c4'),(134048,4024,'flexible_templates_2_stack_process_team_2_icon','4021'),(134049,4024,'_flexible_templates_2_stack_process_team_2_icon','field_6257c3a4705fa_field_62550482480cb'),(134050,4024,'flexible_templates_2_stack_process_team_2_heading','TEKTeams'),(134051,4024,'_flexible_templates_2_stack_process_team_2_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(134052,4024,'flexible_templates_2_stack_process_team_2_copy_wysiwyg','Imagine your company without the burden of hiring developers, engineers, or keeping up with the latest technology. With TEK Teams, your organization will have the top 1% resources on demand, to scale as needed,  and in line with the growth of your cloud native application. You will finally be free to focus on what you do best—running your business. '),(134053,4024,'_flexible_templates_2_stack_process_team_2_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(134054,4024,'flexible_templates_2_stack_process_team_2_cta','a:3:{s:5:\"title\";s:16:\"Scale your Teams\";s:3:\"url\";s:35:\"https://translucent.local/tekteams/\";s:6:\"target\";s:0:\"\";}'),(134055,4024,'_flexible_templates_2_stack_process_team_2_cta','field_6257c421705fd_field_62551b3e101c4'),(134056,4024,'flexible_templates_2_stack_process_team','3'),(134057,4024,'_flexible_templates_2_stack_process_team','field_6257c35c705f9'),(134058,4024,'flexible_templates_3_heading','Secure multiple distributed sources'),(134059,4024,'_flexible_templates_3_heading','field_6257cf9016730_field_6254fdb2efa27'),(134060,4024,'flexible_templates_3_sub_heading','ZERO TRUST'),(134061,4024,'_flexible_templates_3_sub_heading','field_6257cf9d16731_field_6254fdbaefa28'),(134062,4024,'flexible_templates_3_copy','The Cloud is complex. Every minute, multiple breaches occur due to actors , hackers, malpractice, ignorance, or human error. \r\nIt is more critical than ever to always know what is happening with your systems and apps. Zero Trust security will help you remain secure as possible, to prevent security breaches by safeguarding what matters most: the trust of your customers\' and company\'s information. Cybersecurity is critical to protect the assets of your business 24hrs/day, 7days/week with self healing systems.'),(134063,4024,'_flexible_templates_3_copy','field_6257cfab16732_field_6254fdc0efa29'),(134064,4024,'flexible_templates_3_cta','a:3:{s:5:\"title\";s:11:\"Coming Soon\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(134065,4024,'_flexible_templates_3_cta','field_6257cfc216733_field_62551b3e101c4'),(134066,4024,'flexible_templates_3_image','4023'),(134067,4024,'_flexible_templates_3_image','field_6257d00f54444_field_6254fdc5efa2a'),(134068,4025,'_wp_attached_file','2022/05/case_tek@2x-1.jpg'),(134069,4025,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:780;s:6:\"height\";i:560;s:4:\"file\";s:25:\"2022/05/case_tek@2x-1.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"case_tek@2x-1-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"case_tek@2x-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:25:\"case_tek@2x-1-768x551.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:25:\"case_tek@2x-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(134070,4025,'_imagify_optimization_level','0'),(134071,4025,'_imagify_status','success'),(134072,4025,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:205970;s:14:\"optimized_size\";i:192492;s:7:\"percent\";d:6.54;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25249;s:14:\"optimized_size\";i:52210;s:7:\"percent\";d:-106.78;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36172;s:14:\"optimized_size\";i:74310;s:7:\"percent\";d:-105.44;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4493;s:14:\"optimized_size\";i:9144;s:7:\"percent\";d:-103.52;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9311;s:14:\"optimized_size\";i:19596;s:7:\"percent\";d:-110.46;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:205970;s:14:\"optimized_size\";i:110142;s:7:\"percent\";d:46.53;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9311;s:14:\"optimized_size\";i:8848;s:7:\"percent\";d:4.97;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4493;s:14:\"optimized_size\";i:4154;s:7:\"percent\";d:7.55;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36172;s:14:\"optimized_size\";i:34683;s:7:\"percent\";d:4.12;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25249;s:14:\"optimized_size\";i:24225;s:7:\"percent\";d:4.06;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:562390;s:14:\"optimized_size\";i:529804;s:7:\"percent\";d:5.79;}}'),(134073,4026,'_wp_attached_file','2022/05/case_tek@2x-scaled-1.jpg'),(134074,4026,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:821;s:4:\"file\";s:32:\"2022/05/case_tek@2x-scaled-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"case_tek@2x-scaled-1-300x96.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"case_tek@2x-scaled-1-1024x328.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"case_tek@2x-scaled-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:\"case_tek@2x-scaled-1-768x246.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"case_tek@2x-scaled-1-1536x493.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:493;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:33:\"case_tek@2x-scaled-1-2048x657.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:32:\"case_tek@2x-scaled-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(134075,4026,'_imagify_optimization_level','0'),(134076,4026,'_imagify_status','success'),(134077,4026,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:111274;s:14:\"optimized_size\";i:100265;s:7:\"percent\";d:9.89;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20605;s:14:\"optimized_size\";i:40330;s:7:\"percent\";d:-95.73;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:79155;s:14:\"optimized_size\";i:151738;s:7:\"percent\";d:-91.7;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:51636;s:14:\"optimized_size\";i:102346;s:7:\"percent\";d:-98.21;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18846;s:14:\"optimized_size\";i:38924;s:7:\"percent\";d:-106.54;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4090;s:14:\"optimized_size\";i:7832;s:7:\"percent\";d:-91.49;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28345;s:14:\"optimized_size\";i:58300;s:7:\"percent\";d:-105.68;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4907;s:14:\"optimized_size\";i:9832;s:7:\"percent\";d:-100.37;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:111274;s:14:\"optimized_size\";i:208710;s:7:\"percent\";d:-87.56;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4907;s:14:\"optimized_size\";i:4564;s:7:\"percent\";d:6.99;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28345;s:14:\"optimized_size\";i:27016;s:7:\"percent\";d:4.69;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4090;s:14:\"optimized_size\";i:3731;s:7:\"percent\";d:8.78;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18846;s:14:\"optimized_size\";i:17983;s:7:\"percent\";d:4.58;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:51636;s:14:\"optimized_size\";i:48565;s:7:\"percent\";d:5.95;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:79155;s:14:\"optimized_size\";i:73084;s:7:\"percent\";d:7.67;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20605;s:14:\"optimized_size\";i:19560;s:7:\"percent\";d:5.07;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:637716;s:14:\"optimized_size\";i:912780;s:7:\"percent\";d:-43.13;}}'),(134078,4011,'flexible_templates_4_heading','The Hospital for Sick Children Case Study'),(134079,4011,'_flexible_templates_4_heading','field_6257e09378148_field_6254fdb2efa27'),(134080,4011,'flexible_templates_4_sub_heading','TEK in ACTION'),(134081,4011,'_flexible_templates_4_sub_heading','field_6257e0a878149_field_6254fdbaefa28'),(134082,4011,'flexible_templates_4_copy','Translucent has indexed, analysed and transformed half a billion records of Neonatal Intensive Care Unit data.\r\nProject Areas:\r\n\r\n● Microservices\r\n● DevOps\r\n● Machine Learning'),(134083,4011,'_flexible_templates_4_copy','field_6257e55e006ca_field_6254fdc0efa29'),(134084,4011,'flexible_templates_4_image','4026'),(134085,4011,'_flexible_templates_4_image','field_6257e0e87814a_field_6254fdc5efa2a'),(134086,4011,'flexible_templates_4_mob_image','4025'),(134087,4011,'_flexible_templates_4_mob_image','field_6257e1057814b_field_6254fdcbefa2b'),(134088,4011,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:15:\"Read Case Study\";s:3:\"url\";s:70:\"https://translucent.local/case-studies/the-hospital-for-sick-children/\";s:6:\"target\";s:0:\"\";}'),(134089,4011,'_flexible_templates_4_cta','field_6257e1367814c_field_62551b3e101c4'),(134090,4011,'flexible_templates_5_heading','Translucent Blog'),(134091,4011,'_flexible_templates_5_heading','field_6257e9c8b4ea7_field_6254fdb2efa27'),(134092,4011,'flexible_templates_5_sub_heading','STAY TUNED'),(134093,4011,'_flexible_templates_5_sub_heading','field_6257e9d9b4ea8_field_6254fdbaefa28'),(134094,4011,'flexible_templates_6_heading','We treat your business like our own'),(134095,4011,'_flexible_templates_6_heading','field_625565e14146d_field_6254fdb2efa27'),(134096,4011,'flexible_templates_6_cta','a:3:{s:5:\"title\";s:10:\"Let\'s talk\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(134097,4011,'_flexible_templates_6_cta','field_625565fa4146e_field_62551b3e101c4'),(134098,4027,'flexible_templates','a:7:{i:0;s:16:\"tek_world_banner\";i:1;s:26:\"tek_world_scale_your_teams\";i:2;s:28:\"tek_world_stack_process_team\";i:3;s:20:\"tek_world_zero_trust\";i:4;s:21:\"tek_world_tek_success\";i:5;s:26:\"tek_world_translucent_blog\";i:6;s:17:\"lets_talk_section\";}'),(134099,4027,'_flexible_templates','field_6254f4d84ef9b'),(134100,4027,'flexible_templates_0_image','4014'),(134101,4027,'_flexible_templates_0_image','field_6257bb6127dce_field_6254fdc5efa2a'),(134102,4027,'flexible_templates_0_heading','Get award-winning results with our TEK Solutions '),(134103,4027,'_flexible_templates_0_heading','field_6257bb2027dcb_field_6254fdb2efa27'),(134104,4027,'flexible_templates_0_sub_heading','TEK™ WORLD'),(134105,4027,'_flexible_templates_0_sub_heading','field_6257bb3a27dcc_field_6254fdbaefa28'),(134106,4027,'flexible_templates_0_icon','4013'),(134107,4027,'_flexible_templates_0_icon','field_6257bb5127dcd_field_62550482480cb'),(134108,4027,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(134109,4027,'_flexible_templates_0_cta','field_6257bb7d27dcf_field_62551b3e101c4'),(134110,4027,'flexible_templates_1_heading',' Winning Results for Your Business. '),(134111,4027,'_flexible_templates_1_heading','field_6257bde945e43_field_6254fdb2efa27'),(134112,4027,'flexible_templates_1_sub_heading','Translucent Expert Knowledge:'),(134113,4027,'_flexible_templates_1_sub_heading','field_6257bdf945e44_field_6254fdbaefa28'),(134114,4027,'flexible_templates_1_copy','We provide industry-leading cloud native solutions that are backed by our award-winning process, teams, and production-ready data-driven platform. TEK World Solutions are our branded suite of cloud native products and services for all your business needs. Our TEK solutions will guide your project from ideation to steady state and beyond.'),(134115,4027,'_flexible_templates_1_copy','field_6257be1045e45_field_6254fdc0efa29'),(134116,4027,'flexible_templates_1_image','4016'),(134117,4027,'_flexible_templates_1_image','field_6257be2845e46_field_6254fdc5efa2a'),(134118,4027,'flexible_templates_2_stack_process_team_0_icon','4019'),(134119,4027,'_flexible_templates_2_stack_process_team_0_icon','field_6257c3a4705fa_field_62550482480cb'),(134120,4027,'flexible_templates_2_stack_process_team_0_heading','TEKStack'),(134121,4027,'_flexible_templates_2_stack_process_team_0_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(134122,4027,'flexible_templates_2_stack_process_team_0_copy_wysiwyg','TEKStack is our open source, production-ready, cloud-native, data-driven digital transformation pipeline for your company to compete in the digital age. With this range of technologies we have perfected the process of working with production ready tools to save time and money on your cloud applications and platforms.'),(134123,4027,'_flexible_templates_2_stack_process_team_0_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(134124,4027,'flexible_templates_2_stack_process_team_0_cta','a:3:{s:5:\"title\";s:26:\"Compete in the Digital Age\";s:3:\"url\";s:38:\"https://translucent.local/tekstack-ai/\";s:6:\"target\";s:0:\"\";}'),(134125,4027,'_flexible_templates_2_stack_process_team_0_cta','field_6257c421705fd_field_62551b3e101c4'),(134126,4027,'flexible_templates_2_stack_process_team_1_icon','4020'),(134127,4027,'_flexible_templates_2_stack_process_team_1_icon','field_6257c3a4705fa_field_62550482480cb'),(134128,4027,'flexible_templates_2_stack_process_team_1_heading','TEKProcess'),(134129,4027,'_flexible_templates_2_stack_process_team_1_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(134130,4027,'flexible_templates_2_stack_process_team_1_copy_wysiwyg','TEK Process makes it possible to easily organize the entire cloud native development process, from ideation and discovery, to production-ready solutions. We continuously invest in the R&D of our processes to help you stay ahead of the curve.  Improve ROI, grants, and investment opportunities with a process linked to user feedback.'),(134131,4027,'_flexible_templates_2_stack_process_team_1_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(134132,4027,'flexible_templates_2_stack_process_team_1_cta','a:3:{s:5:\"title\";s:25:\"Align your Business Goals\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(134133,4027,'_flexible_templates_2_stack_process_team_1_cta','field_6257c421705fd_field_62551b3e101c4'),(134134,4027,'flexible_templates_2_stack_process_team_2_icon','4021'),(134135,4027,'_flexible_templates_2_stack_process_team_2_icon','field_6257c3a4705fa_field_62550482480cb'),(134136,4027,'flexible_templates_2_stack_process_team_2_heading','TEKTeams'),(134137,4027,'_flexible_templates_2_stack_process_team_2_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(134138,4027,'flexible_templates_2_stack_process_team_2_copy_wysiwyg','Imagine your company without the burden of hiring developers, engineers, or keeping up with the latest technology. With TEK Teams, your organization will have the top 1% resources on demand, to scale as needed,  and in line with the growth of your cloud native application. You will finally be free to focus on what you do best—running your business. '),(134139,4027,'_flexible_templates_2_stack_process_team_2_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(134140,4027,'flexible_templates_2_stack_process_team_2_cta','a:3:{s:5:\"title\";s:16:\"Scale your Teams\";s:3:\"url\";s:35:\"https://translucent.local/tekteams/\";s:6:\"target\";s:0:\"\";}'),(134141,4027,'_flexible_templates_2_stack_process_team_2_cta','field_6257c421705fd_field_62551b3e101c4'),(134142,4027,'flexible_templates_2_stack_process_team','3'),(134143,4027,'_flexible_templates_2_stack_process_team','field_6257c35c705f9'),(134144,4027,'flexible_templates_3_heading','Secure multiple distributed sources'),(134145,4027,'_flexible_templates_3_heading','field_6257cf9016730_field_6254fdb2efa27'),(134146,4027,'flexible_templates_3_sub_heading','ZERO TRUST'),(134147,4027,'_flexible_templates_3_sub_heading','field_6257cf9d16731_field_6254fdbaefa28'),(134148,4027,'flexible_templates_3_copy','The Cloud is complex. Every minute, multiple breaches occur due to actors , hackers, malpractice, ignorance, or human error. \r\nIt is more critical than ever to always know what is happening with your systems and apps. Zero Trust security will help you remain secure as possible, to prevent security breaches by safeguarding what matters most: the trust of your customers\' and company\'s information. Cybersecurity is critical to protect the assets of your business 24hrs/day, 7days/week with self healing systems.'),(134149,4027,'_flexible_templates_3_copy','field_6257cfab16732_field_6254fdc0efa29'),(134150,4027,'flexible_templates_3_cta','a:3:{s:5:\"title\";s:11:\"Coming Soon\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(134151,4027,'_flexible_templates_3_cta','field_6257cfc216733_field_62551b3e101c4'),(134152,4027,'flexible_templates_3_image','4023'),(134153,4027,'_flexible_templates_3_image','field_6257d00f54444_field_6254fdc5efa2a'),(134154,4027,'flexible_templates_4_heading','The Hospital for Sick Children Case Study'),(134155,4027,'_flexible_templates_4_heading','field_6257e09378148_field_6254fdb2efa27'),(134156,4027,'flexible_templates_4_sub_heading','TEK in ACTION'),(134157,4027,'_flexible_templates_4_sub_heading','field_6257e0a878149_field_6254fdbaefa28'),(134158,4027,'flexible_templates_4_copy','Translucent has indexed, analysed and transformed half a billion records of Neonatal Intensive Care Unit data.\r\nProject Areas:\r\n\r\n● Microservices\r\n● DevOps\r\n● Machine Learning'),(134159,4027,'_flexible_templates_4_copy','field_6257e55e006ca_field_6254fdc0efa29'),(134160,4027,'flexible_templates_4_image','4026'),(134161,4027,'_flexible_templates_4_image','field_6257e0e87814a_field_6254fdc5efa2a'),(134162,4027,'flexible_templates_4_mob_image','4025'),(134163,4027,'_flexible_templates_4_mob_image','field_6257e1057814b_field_6254fdcbefa2b'),(134164,4027,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:15:\"Read Case Study\";s:3:\"url\";s:70:\"https://translucent.local/case-studies/the-hospital-for-sick-children/\";s:6:\"target\";s:0:\"\";}'),(134165,4027,'_flexible_templates_4_cta','field_6257e1367814c_field_62551b3e101c4'),(134166,4027,'flexible_templates_5_heading','Translucent Blog'),(134167,4027,'_flexible_templates_5_heading','field_6257e9c8b4ea7_field_6254fdb2efa27'),(134168,4027,'flexible_templates_5_sub_heading','STAY TUNED'),(134169,4027,'_flexible_templates_5_sub_heading','field_6257e9d9b4ea8_field_6254fdbaefa28'),(134170,4027,'flexible_templates_6_heading','We treat your business like our own'),(134171,4027,'_flexible_templates_6_heading','field_625565e14146d_field_6254fdb2efa27'),(134172,4027,'flexible_templates_6_cta','a:3:{s:5:\"title\";s:10:\"Let\'s talk\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(134173,4027,'_flexible_templates_6_cta','field_625565fa4146e_field_62551b3e101c4'),(134180,4028,'_edit_lock','1656446525:20'),(134181,4028,'_edit_last','4'),(134182,4028,'_wp_page_template','flexible-template.php'),(134183,4028,'hefo_before','0'),(134184,4028,'hefo_after','0'),(134185,4028,'_yoast_wpseo_focuskeywords','[]'),(134186,4028,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(134187,4028,'_yoast_wpseo_estimated-reading-time-minutes',''),(134188,4028,'flexible_templates','a:9:{i:0;s:19:\"cloud_native_banner\";i:1;s:35:\"cloud_native_expert_dedicated_teams\";i:2;s:39:\"cloud_native_solving_digital_challenges\";i:3;s:26:\"cloud_native_scale_demands\";i:4;s:22:\"cloud_native_ecosystem\";i:5;s:31:\"cloud_native_technology_partner\";i:6;s:37:\"cloud_native_translucent_differential\";i:7;s:26:\"cloud_nature_future_vision\";i:8;s:17:\"lets_talk_section\";}'),(134189,4028,'_flexible_templates','field_6254f4d84ef9b'),(134190,4029,'flexible_templates',''),(134191,4029,'_flexible_templates','field_6254f4d84ef9b'),(134198,4030,'_wp_attached_file','2022/05/Union-20@2x-1-scaled-1.jpg'),(134199,4030,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:771;s:4:\"file\";s:34:\"2022/05/Union-20@2x-1-scaled-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Union-20@2x-1-scaled-1-300x90.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"Union-20@2x-1-scaled-1-1024x308.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:308;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Union-20@2x-1-scaled-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:34:\"Union-20@2x-1-scaled-1-768x231.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:35:\"Union-20@2x-1-scaled-1-1536x463.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:463;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:35:\"Union-20@2x-1-scaled-1-2048x617.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:617;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:34:\"Union-20@2x-1-scaled-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(134200,4030,'_imagify_optimization_level','0'),(134201,4030,'_imagify_status','success'),(134202,4030,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:129921;s:14:\"optimized_size\";i:116254;s:7:\"percent\";d:10.52;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31276;s:14:\"optimized_size\";i:73730;s:7:\"percent\";d:-135.74;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:88152;s:14:\"optimized_size\";i:187782;s:7:\"percent\";d:-113.02;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:54593;s:14:\"optimized_size\";i:120718;s:7:\"percent\";d:-121.12;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17238;s:14:\"optimized_size\";i:37258;s:7:\"percent\";d:-116.14;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4241;s:14:\"optimized_size\";i:7818;s:7:\"percent\";d:-84.34;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29147;s:14:\"optimized_size\";i:62756;s:7:\"percent\";d:-115.31;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4342;s:14:\"optimized_size\";i:7164;s:7:\"percent\";d:-64.99;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:129921;s:14:\"optimized_size\";i:270334;s:7:\"percent\";d:-108.08;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4342;s:14:\"optimized_size\";i:3813;s:7:\"percent\";d:12.18;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29147;s:14:\"optimized_size\";i:26455;s:7:\"percent\";d:9.24;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4241;s:14:\"optimized_size\";i:3745;s:7:\"percent\";d:11.7;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17238;s:14:\"optimized_size\";i:15955;s:7:\"percent\";d:7.44;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:54593;s:14:\"optimized_size\";i:49746;s:7:\"percent\";d:8.88;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:88152;s:14:\"optimized_size\";i:79233;s:7:\"percent\";d:10.12;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31276;s:14:\"optimized_size\";i:29386;s:7:\"percent\";d:6.04;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:717820;s:14:\"optimized_size\";i:1092147;s:7:\"percent\";d:-52.15;}}'),(134203,4031,'_wp_attached_file','2022/05/Asset-1@4x@2x.jpg'),(134204,4031,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1340;s:6:\"height\";i:880;s:4:\"file\";s:25:\"2022/05/Asset-1@4x@2x.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Asset-1@4x@2x-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Asset-1@4x@2x-1024x672.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:672;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Asset-1@4x@2x-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:\"Asset-1@4x@2x-768x504.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:25:\"Asset-1@4x@2x-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(134205,4031,'_imagify_optimization_level','0'),(134206,4031,'_imagify_status','success'),(134207,4031,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:294657;s:14:\"optimized_size\";i:278686;s:7:\"percent\";d:5.42;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31538;s:14:\"optimized_size\";i:76678;s:7:\"percent\";d:-143.13;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36188;s:14:\"optimized_size\";i:83360;s:7:\"percent\";d:-130.35;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5945;s:14:\"optimized_size\";i:14252;s:7:\"percent\";d:-139.73;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:53984;s:14:\"optimized_size\";i:120410;s:7:\"percent\";d:-123.05;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9573;s:14:\"optimized_size\";i:24158;s:7:\"percent\";d:-152.36;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:294657;s:14:\"optimized_size\";i:225126;s:7:\"percent\";d:23.6;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9573;s:14:\"optimized_size\";i:8845;s:7:\"percent\";d:7.6;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:53984;s:14:\"optimized_size\";i:48245;s:7:\"percent\";d:10.63;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5945;s:14:\"optimized_size\";i:5428;s:7:\"percent\";d:8.7;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36188;s:14:\"optimized_size\";i:32765;s:7:\"percent\";d:9.46;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31538;s:14:\"optimized_size\";i:29490;s:7:\"percent\";d:6.49;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:863770;s:14:\"optimized_size\";i:947443;s:7:\"percent\";d:-9.69;}}'),(134208,4028,'flexible_templates_0_image','4030'),(134209,4028,'_flexible_templates_0_image','field_62569b35f7c63_field_6254fdc5efa2a'),(134210,4028,'flexible_templates_0_icon','4013'),(134211,4028,'_flexible_templates_0_icon','field_62569b69f7c64_field_62550482480cb'),(134212,4028,'flexible_templates_0_heading','Solve Digital Challenges with a Complete Cloud Native Solution'),(134213,4028,'_flexible_templates_0_heading','field_62569b87f7c65_field_6254fdb2efa27'),(134214,4028,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(134215,4028,'_flexible_templates_0_sub_heading','field_62569ba5f7c66_field_6254fdbaefa28'),(134216,4028,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:23:\"Transform Your Business\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(134217,4028,'_flexible_templates_0_cta','field_62569bcff7c67_field_62551b3e101c4'),(134218,4028,'flexible_templates_1_image','4031'),(134219,4028,'_flexible_templates_1_image','field_6256a05dda66c_field_6254fdc5efa2a'),(134220,4028,'flexible_templates_1_heading','Expert dedicated teams for your cloud native project.'),(134221,4028,'_flexible_templates_1_heading','field_62569f6d3c0ad_field_6254fdb2efa27'),(134222,4028,'flexible_templates_1_sub_heading','DATA-DRIVEN TRUSTED TECHNOLOGY PARTNER'),(134223,4028,'_flexible_templates_1_sub_heading','field_62569f7a3c0ae_field_6254fdbaefa28'),(134224,4028,'flexible_templates_1_copy','Our expert software engineering teams develop intelligent apps for fintech, healthcare, automotive, and any other data-driven journey, with over 10 years of experience in large scale complex project. Enable your business to reflect its operations through technology while helping it become more dynamic, secure, and easier to scale by increasing speed to market. As a pioneer in cloud native application development we have a proven track record of solving digital transformation challenges for enterprises.'),(134225,4028,'_flexible_templates_1_copy','field_6256a175dc200_field_6254fdc0efa29'),(134226,4028,'flexible_templates_1_copy_long',''),(134227,4028,'_flexible_templates_1_copy_long','field_6256a026da66a'),(134228,4028,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:12:\"How We Do It\";s:3:\"url\";s:36:\"https://translucent.local/tek-world/\";s:6:\"target\";s:0:\"\";}'),(134229,4028,'_flexible_templates_1_cta','field_6256a03ada66b_field_62551b3e101c4'),(134230,4032,'flexible_templates','a:2:{i:0;s:19:\"cloud_native_banner\";i:1;s:35:\"cloud_native_expert_dedicated_teams\";}'),(134231,4032,'_flexible_templates','field_6254f4d84ef9b'),(134232,4032,'flexible_templates_0_image','4030'),(134233,4032,'_flexible_templates_0_image','field_62569b35f7c63_field_6254fdc5efa2a'),(134234,4032,'flexible_templates_0_icon','4013'),(134235,4032,'_flexible_templates_0_icon','field_62569b69f7c64_field_62550482480cb'),(134236,4032,'flexible_templates_0_heading','Solve Digital Challenges with a Complete Cloud Native Solution'),(134237,4032,'_flexible_templates_0_heading','field_62569b87f7c65_field_6254fdb2efa27'),(134238,4032,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(134239,4032,'_flexible_templates_0_sub_heading','field_62569ba5f7c66_field_6254fdbaefa28'),(134240,4032,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:23:\"Transform Your Business\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(134241,4032,'_flexible_templates_0_cta','field_62569bcff7c67_field_62551b3e101c4'),(134242,4032,'flexible_templates_1_image','4031'),(134243,4032,'_flexible_templates_1_image','field_6256a05dda66c_field_6254fdc5efa2a'),(134244,4032,'flexible_templates_1_heading','Expert dedicated teams for your cloud native project.'),(134245,4032,'_flexible_templates_1_heading','field_62569f6d3c0ad_field_6254fdb2efa27'),(134246,4032,'flexible_templates_1_sub_heading','DATA-DRIVEN TRUSTED TECHNOLOGY PARTNER'),(134247,4032,'_flexible_templates_1_sub_heading','field_62569f7a3c0ae_field_6254fdbaefa28'),(134248,4032,'flexible_templates_1_copy','Our expert software engineering teams develop intelligent apps for fintech, healthcare, automotive, and any other data-driven journey, with over 10 years of experience in large scale complex project. Enable your business to reflect its operations through technology while helping it become more dynamic, secure, and easier to scale by increasing speed to market. As a pioneer in cloud native application development we have a proven track record of solving digital transformation challenges for enterprises.'),(134249,4032,'_flexible_templates_1_copy','field_6256a175dc200_field_6254fdc0efa29'),(134250,4032,'flexible_templates_1_copy_long',''),(134251,4032,'_flexible_templates_1_copy_long','field_6256a026da66a'),(134252,4032,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:12:\"How We Do It\";s:3:\"url\";s:36:\"https://translucent.local/tek-world/\";s:6:\"target\";s:0:\"\";}'),(134253,4032,'_flexible_templates_1_cta','field_6256a03ada66b_field_62551b3e101c4'),(134257,4033,'_wp_attached_file','2022/05/Group-8301@2x.jpg'),(134258,4033,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:794;s:6:\"height\";i:312;s:4:\"file\";s:25:\"2022/05/Group-8301@2x.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Group-8301@2x-300x118.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Group-8301@2x-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:\"Group-8301@2x-768x302.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:302;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:25:\"Group-8301@2x-500x312.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:312;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:{}}}'),(134259,4033,'_imagify_optimization_level','0'),(134260,4033,'_imagify_status','success'),(134261,4033,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:125069;s:14:\"optimized_size\";i:117674;s:7:\"percent\";d:5.91;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20954;s:14:\"optimized_size\";i:45508;s:7:\"percent\";d:-117.18;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26682;s:14:\"optimized_size\";i:55808;s:7:\"percent\";d:-109.16;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5134;s:14:\"optimized_size\";i:10998;s:7:\"percent\";d:-114.22;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8052;s:14:\"optimized_size\";i:18974;s:7:\"percent\";d:-135.64;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:125069;s:14:\"optimized_size\";i:72370;s:7:\"percent\";d:42.14;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8052;s:14:\"optimized_size\";i:7545;s:7:\"percent\";d:6.3;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5134;s:14:\"optimized_size\";i:4707;s:7:\"percent\";d:8.32;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26682;s:14:\"optimized_size\";i:25472;s:7:\"percent\";d:4.53;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20954;s:14:\"optimized_size\";i:19984;s:7:\"percent\";d:4.63;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:371782;s:14:\"optimized_size\";i:379040;s:7:\"percent\";d:-1.95;}}'),(134262,4034,'_wp_attached_file','2022/05/Group-8302@2x.jpg'),(134263,4034,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:794;s:6:\"height\";i:312;s:4:\"file\";s:25:\"2022/05/Group-8302@2x.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Group-8302@2x-300x118.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Group-8302@2x-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:\"Group-8302@2x-768x302.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:302;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:25:\"Group-8302@2x-500x312.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:312;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:{}}}'),(134264,4034,'_imagify_optimization_level','0'),(134265,4034,'_imagify_status','success'),(134266,4034,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:141028;s:14:\"optimized_size\";i:132108;s:7:\"percent\";d:6.32;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25358;s:14:\"optimized_size\";i:59092;s:7:\"percent\";d:-133.03;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28470;s:14:\"optimized_size\";i:64434;s:7:\"percent\";d:-126.32;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5732;s:14:\"optimized_size\";i:13084;s:7:\"percent\";d:-128.26;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8124;s:14:\"optimized_size\";i:19238;s:7:\"percent\";d:-136.8;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:141028;s:14:\"optimized_size\";i:88680;s:7:\"percent\";d:37.12;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8124;s:14:\"optimized_size\";i:7585;s:7:\"percent\";d:6.63;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5732;s:14:\"optimized_size\";i:5322;s:7:\"percent\";d:7.15;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28470;s:14:\"optimized_size\";i:27363;s:7:\"percent\";d:3.89;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25358;s:14:\"optimized_size\";i:24292;s:7:\"percent\";d:4.2;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:417424;s:14:\"optimized_size\";i:441198;s:7:\"percent\";d:-5.7;}}'),(134267,4035,'_wp_attached_file','2022/05/Group-8303@2x.jpg'),(134268,4035,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:792;s:6:\"height\";i:312;s:4:\"file\";s:25:\"2022/05/Group-8303@2x.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Group-8303@2x-300x118.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:118;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Group-8303@2x-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:\"Group-8303@2x-768x303.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:25:\"Group-8303@2x-500x312.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:312;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:{}}}'),(134269,4028,'flexible_templates_2_heading','Three paths to Cloud Native'),(134270,4028,'_flexible_templates_2_heading','field_6256a640dea7c_field_6254fdb2efa27'),(134271,4028,'flexible_templates_2_sub_heading','SOLVING DIGITAL CHALLENGES'),(134272,4028,'_flexible_templates_2_sub_heading','field_6256a66cdea7d_field_6254fdbaefa28'),(134273,4028,'flexible_templates_2_posts_grid_0_icon','4033'),(134274,4028,'_flexible_templates_2_posts_grid_0_icon','field_6256a6c0dea7f_field_62550482480cb'),(134275,4028,'flexible_templates_2_posts_grid_0_heading','Build'),(134276,4028,'_flexible_templates_2_posts_grid_0_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(134277,4028,'flexible_templates_2_posts_grid_0_copy','We\'re not just a software company. We\'re the people who help your business achieve its digital transformation vision. From strategy to implementation, we\'ll support you with our cloud native, data driven technology and digital transformation expertise. '),(134278,4028,'_flexible_templates_2_posts_grid_0_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(134279,4028,'flexible_templates_2_posts_grid_0_cta',''),(134280,4028,'_flexible_templates_2_posts_grid_0_cta','field_6256a6f8dea82_field_62551b3e101c4'),(134281,4028,'flexible_templates_2_posts_grid_1_icon','4034'),(134282,4028,'_flexible_templates_2_posts_grid_1_icon','field_6256a6c0dea7f_field_62550482480cb'),(134283,4028,'flexible_templates_2_posts_grid_1_heading','ReBuild'),(134284,4028,'_flexible_templates_2_posts_grid_1_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(134285,4028,'flexible_templates_2_posts_grid_1_copy','Break free from the limitations of your old legacy technology by rebuilding your business critical application components without affecting the original specifications, requirements, and business logic. This will improve scalability, maintainability, and reliability.\r\n'),(134286,4028,'_flexible_templates_2_posts_grid_1_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(134287,4028,'flexible_templates_2_posts_grid_1_cta',''),(134288,4028,'_flexible_templates_2_posts_grid_1_cta','field_6256a6f8dea82_field_62551b3e101c4'),(134289,4028,'flexible_templates_2_posts_grid_2_icon','4035'),(134290,4028,'_flexible_templates_2_posts_grid_2_icon','field_6256a6c0dea7f_field_62550482480cb'),(134291,4028,'flexible_templates_2_posts_grid_2_heading','RePlatform'),(134292,4028,'_flexible_templates_2_posts_grid_2_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(134293,4028,'flexible_templates_2_posts_grid_2_copy','Migrate your old application to a new runtime platform. When upgrading to a cloud native application platform, we repurpose the useable components from your legacy technology, and minimize changes to code and structure.'),(134294,4028,'_flexible_templates_2_posts_grid_2_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(134295,4028,'flexible_templates_2_posts_grid_2_cta',''),(134296,4028,'_flexible_templates_2_posts_grid_2_cta','field_6256a6f8dea82_field_62551b3e101c4'),(134297,4028,'flexible_templates_2_posts_grid','3'),(134298,4028,'_flexible_templates_2_posts_grid','field_6256a698dea7e'),(134299,4028,'flexible_templates_2_cta','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://translucent.local/cloud-native-application-development/\";s:6:\"target\";s:0:\"\";}'),(134300,4028,'_flexible_templates_2_cta','field_6256a725dea83_field_62551b3e101c4'),(134301,4036,'flexible_templates','a:3:{i:0;s:19:\"cloud_native_banner\";i:1;s:35:\"cloud_native_expert_dedicated_teams\";i:2;s:39:\"cloud_native_solving_digital_challenges\";}'),(134302,4036,'_flexible_templates','field_6254f4d84ef9b'),(134303,4036,'flexible_templates_0_image','4030'),(134304,4036,'_flexible_templates_0_image','field_62569b35f7c63_field_6254fdc5efa2a'),(134305,4036,'flexible_templates_0_icon','4013'),(134306,4036,'_flexible_templates_0_icon','field_62569b69f7c64_field_62550482480cb'),(134307,4036,'flexible_templates_0_heading','Solve Digital Challenges with a Complete Cloud Native Solution'),(134308,4036,'_flexible_templates_0_heading','field_62569b87f7c65_field_6254fdb2efa27'),(134309,4036,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(134310,4036,'_flexible_templates_0_sub_heading','field_62569ba5f7c66_field_6254fdbaefa28'),(134311,4036,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:23:\"Transform Your Business\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(134312,4036,'_flexible_templates_0_cta','field_62569bcff7c67_field_62551b3e101c4'),(134313,4036,'flexible_templates_1_image','4031'),(134314,4036,'_flexible_templates_1_image','field_6256a05dda66c_field_6254fdc5efa2a'),(134315,4036,'flexible_templates_1_heading','Expert dedicated teams for your cloud native project.'),(134316,4036,'_flexible_templates_1_heading','field_62569f6d3c0ad_field_6254fdb2efa27'),(134317,4036,'flexible_templates_1_sub_heading','DATA-DRIVEN TRUSTED TECHNOLOGY PARTNER'),(134318,4036,'_flexible_templates_1_sub_heading','field_62569f7a3c0ae_field_6254fdbaefa28'),(134319,4036,'flexible_templates_1_copy','Our expert software engineering teams develop intelligent apps for fintech, healthcare, automotive, and any other data-driven journey, with over 10 years of experience in large scale complex project. Enable your business to reflect its operations through technology while helping it become more dynamic, secure, and easier to scale by increasing speed to market. As a pioneer in cloud native application development we have a proven track record of solving digital transformation challenges for enterprises.'),(134320,4036,'_flexible_templates_1_copy','field_6256a175dc200_field_6254fdc0efa29'),(134321,4036,'flexible_templates_1_copy_long',''),(134322,4036,'_flexible_templates_1_copy_long','field_6256a026da66a'),(134323,4036,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:12:\"How We Do It\";s:3:\"url\";s:36:\"https://translucent.local/tek-world/\";s:6:\"target\";s:0:\"\";}'),(134324,4036,'_flexible_templates_1_cta','field_6256a03ada66b_field_62551b3e101c4'),(134325,4036,'flexible_templates_2_heading','Three paths to Cloud Native'),(134326,4036,'_flexible_templates_2_heading','field_6256a640dea7c_field_6254fdb2efa27'),(134327,4036,'flexible_templates_2_sub_heading','SOLVING DIGITAL CHALLENGES'),(134328,4036,'_flexible_templates_2_sub_heading','field_6256a66cdea7d_field_6254fdbaefa28'),(134329,4036,'flexible_templates_2_posts_grid_0_icon','4033'),(134330,4036,'_flexible_templates_2_posts_grid_0_icon','field_6256a6c0dea7f_field_62550482480cb'),(134331,4036,'flexible_templates_2_posts_grid_0_heading','Build'),(134332,4036,'_flexible_templates_2_posts_grid_0_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(134333,4036,'flexible_templates_2_posts_grid_0_copy','We\'re not just a software company. We\'re the people who help your business achieve its digital transformation vision. From strategy to implementation, we\'ll support you with our cloud native, data driven technology and digital transformation expertise. '),(134334,4036,'_flexible_templates_2_posts_grid_0_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(134335,4036,'flexible_templates_2_posts_grid_0_cta',''),(134336,4036,'_flexible_templates_2_posts_grid_0_cta','field_6256a6f8dea82_field_62551b3e101c4'),(134337,4036,'flexible_templates_2_posts_grid_1_icon','4034'),(134338,4036,'_flexible_templates_2_posts_grid_1_icon','field_6256a6c0dea7f_field_62550482480cb'),(134339,4036,'flexible_templates_2_posts_grid_1_heading','ReBuild'),(134340,4036,'_flexible_templates_2_posts_grid_1_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(134341,4036,'flexible_templates_2_posts_grid_1_copy','Break free from the limitations of your old legacy technology by rebuilding your business critical application components without affecting the original specifications, requirements, and business logic. This will improve scalability, maintainability, and reliability.\r\n'),(134342,4036,'_flexible_templates_2_posts_grid_1_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(134343,4036,'flexible_templates_2_posts_grid_1_cta',''),(134344,4036,'_flexible_templates_2_posts_grid_1_cta','field_6256a6f8dea82_field_62551b3e101c4'),(134345,4036,'flexible_templates_2_posts_grid_2_icon','4035'),(134346,4036,'_flexible_templates_2_posts_grid_2_icon','field_6256a6c0dea7f_field_62550482480cb'),(134347,4036,'flexible_templates_2_posts_grid_2_heading','RePlatform'),(134348,4036,'_flexible_templates_2_posts_grid_2_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(134349,4036,'flexible_templates_2_posts_grid_2_copy','Migrate your old application to a new runtime platform. When upgrading to a cloud native application platform, we repurpose the useable components from your legacy technology, and minimize changes to code and structure.'),(134350,4036,'_flexible_templates_2_posts_grid_2_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(134351,4036,'flexible_templates_2_posts_grid_2_cta',''),(134352,4036,'_flexible_templates_2_posts_grid_2_cta','field_6256a6f8dea82_field_62551b3e101c4'),(134353,4036,'flexible_templates_2_posts_grid','3'),(134354,4036,'_flexible_templates_2_posts_grid','field_6256a698dea7e'),(134355,4036,'flexible_templates_2_cta',''),(134356,4036,'_flexible_templates_2_cta','field_6256a725dea83_field_62551b3e101c4'),(134357,4035,'_imagify_optimization_level','0'),(134358,4035,'_imagify_status','success'),(134359,4035,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:171636;s:14:\"optimized_size\";i:161877;s:7:\"percent\";d:5.69;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28386;s:14:\"optimized_size\";i:72374;s:7:\"percent\";d:-154.96;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37337;s:14:\"optimized_size\";i:91500;s:7:\"percent\";d:-145.07;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5953;s:14:\"optimized_size\";i:14510;s:7:\"percent\";d:-143.74;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9708;s:14:\"optimized_size\";i:25786;s:7:\"percent\";d:-165.62;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:171636;s:14:\"optimized_size\";i:125698;s:7:\"percent\";d:26.76;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9708;s:14:\"optimized_size\";i:9097;s:7:\"percent\";d:6.29;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5953;s:14:\"optimized_size\";i:5489;s:7:\"percent\";d:7.79;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:37337;s:14:\"optimized_size\";i:35917;s:7:\"percent\";d:3.8;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28386;s:14:\"optimized_size\";i:27204;s:7:\"percent\";d:4.16;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:506040;s:14:\"optimized_size\";i:569452;s:7:\"percent\";d:-12.53;}}'),(134360,4028,'flexible_templates_3_heading','Scale According to your Demands'),(134361,4028,'_flexible_templates_3_heading','field_6256aa0c6187a_field_6254fdb2efa27'),(134362,4028,'flexible_templates_3_scale_demands_0_icon',''),(134363,4028,'_flexible_templates_3_scale_demands_0_icon','field_6256aa4e6187c_field_62550482480cb'),(134364,4028,'flexible_templates_3_scale_demands_0_heading','TEKTeams'),(134365,4028,'_flexible_templates_3_scale_demands_0_heading','field_6256aa866187d_field_6254fdb2efa27'),(134366,4028,'flexible_templates_3_scale_demands_0_copy','On-demand resources that may be used whenever and wherever you need them. Increase your workforce by partnering with teams tailored to your business needs.'),(134367,4028,'_flexible_templates_3_scale_demands_0_copy','field_6256aa986187e_field_6254fdc0efa29'),(134368,4028,'flexible_templates_3_scale_demands_0_cta','a:3:{s:5:\"title\";s:16:\"Scale Your Teams\";s:3:\"url\";s:34:\"https://translucent.local/tekteams\";s:6:\"target\";s:0:\"\";}'),(134369,4028,'_flexible_templates_3_scale_demands_0_cta','field_6256aab66187f_field_62551b3e101c4'),(134370,4028,'flexible_templates_3_scale_demands_1_icon',''),(134371,4028,'_flexible_templates_3_scale_demands_1_icon','field_6256aa4e6187c_field_62550482480cb'),(134372,4028,'flexible_templates_3_scale_demands_1_heading','TEKStack'),(134373,4028,'_flexible_templates_3_scale_demands_1_heading','field_6256aa866187d_field_6254fdb2efa27'),(134374,4028,'flexible_templates_3_scale_demands_1_copy','TEKStack has perfected the complex process of working with production-ready tools that have been shown to save time and money. Reduce your time to market by more than 20%.'),(134375,4028,'_flexible_templates_3_scale_demands_1_copy','field_6256aa986187e_field_6254fdc0efa29'),(134376,4028,'flexible_templates_3_scale_demands_1_cta','a:3:{s:5:\"title\";s:20:\"Speed Up Development\";s:3:\"url\";s:35:\"https://translucent.local/tekstack/\";s:6:\"target\";s:0:\"\";}'),(134377,4028,'_flexible_templates_3_scale_demands_1_cta','field_6256aab66187f_field_62551b3e101c4'),(134378,4028,'flexible_templates_3_scale_demands_2_icon',''),(134379,4028,'_flexible_templates_3_scale_demands_2_icon','field_6256aa4e6187c_field_62550482480cb'),(134380,4028,'flexible_templates_3_scale_demands_2_heading','TEKProcess'),(134381,4028,'_flexible_templates_3_scale_demands_2_heading','field_6256aa866187d_field_6254fdb2efa27'),(134382,4028,'flexible_templates_3_scale_demands_2_copy','Our approach to cloud native development will organize your entire cloud native development process ​from conception to steady state and support, known as TEKProcess.'),(134383,4028,'_flexible_templates_3_scale_demands_2_copy','field_6256aa986187e_field_6254fdc0efa29'),(134384,4028,'flexible_templates_3_scale_demands_2_cta','a:3:{s:5:\"title\";s:24:\"Optimize Your Operations\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(134385,4028,'_flexible_templates_3_scale_demands_2_cta','field_6256aab66187f_field_62551b3e101c4'),(134386,4028,'flexible_templates_3_scale_demands','3'),(134387,4028,'_flexible_templates_3_scale_demands','field_6256aa366187b'),(134388,4037,'flexible_templates','a:4:{i:0;s:19:\"cloud_native_banner\";i:1;s:35:\"cloud_native_expert_dedicated_teams\";i:2;s:39:\"cloud_native_solving_digital_challenges\";i:3;s:26:\"cloud_native_scale_demands\";}'),(134389,4037,'_flexible_templates','field_6254f4d84ef9b'),(134390,4037,'flexible_templates_0_image','4030'),(134391,4037,'_flexible_templates_0_image','field_62569b35f7c63_field_6254fdc5efa2a'),(134392,4037,'flexible_templates_0_icon','4013'),(134393,4037,'_flexible_templates_0_icon','field_62569b69f7c64_field_62550482480cb'),(134394,4037,'flexible_templates_0_heading','Solve Digital Challenges with a Complete Cloud Native Solution'),(134395,4037,'_flexible_templates_0_heading','field_62569b87f7c65_field_6254fdb2efa27'),(134396,4037,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(134397,4037,'_flexible_templates_0_sub_heading','field_62569ba5f7c66_field_6254fdbaefa28'),(134398,4037,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:23:\"Transform Your Business\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(134399,4037,'_flexible_templates_0_cta','field_62569bcff7c67_field_62551b3e101c4'),(134400,4037,'flexible_templates_1_image','4031'),(134401,4037,'_flexible_templates_1_image','field_6256a05dda66c_field_6254fdc5efa2a'),(134402,4037,'flexible_templates_1_heading','Expert dedicated teams for your cloud native project.'),(134403,4037,'_flexible_templates_1_heading','field_62569f6d3c0ad_field_6254fdb2efa27'),(134404,4037,'flexible_templates_1_sub_heading','DATA-DRIVEN TRUSTED TECHNOLOGY PARTNER'),(134405,4037,'_flexible_templates_1_sub_heading','field_62569f7a3c0ae_field_6254fdbaefa28'),(134406,4037,'flexible_templates_1_copy','Our expert software engineering teams develop intelligent apps for fintech, healthcare, automotive, and any other data-driven journey, with over 10 years of experience in large scale complex project. Enable your business to reflect its operations through technology while helping it become more dynamic, secure, and easier to scale by increasing speed to market. As a pioneer in cloud native application development we have a proven track record of solving digital transformation challenges for enterprises.'),(134407,4037,'_flexible_templates_1_copy','field_6256a175dc200_field_6254fdc0efa29'),(134408,4037,'flexible_templates_1_copy_long',''),(134409,4037,'_flexible_templates_1_copy_long','field_6256a026da66a'),(134410,4037,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:12:\"How We Do It\";s:3:\"url\";s:36:\"https://translucent.local/tek-world/\";s:6:\"target\";s:0:\"\";}'),(134411,4037,'_flexible_templates_1_cta','field_6256a03ada66b_field_62551b3e101c4'),(134412,4037,'flexible_templates_2_heading','Three paths to Cloud Native'),(134413,4037,'_flexible_templates_2_heading','field_6256a640dea7c_field_6254fdb2efa27'),(134414,4037,'flexible_templates_2_sub_heading','SOLVING DIGITAL CHALLENGES'),(134415,4037,'_flexible_templates_2_sub_heading','field_6256a66cdea7d_field_6254fdbaefa28'),(134416,4037,'flexible_templates_2_posts_grid_0_icon','4033'),(134417,4037,'_flexible_templates_2_posts_grid_0_icon','field_6256a6c0dea7f_field_62550482480cb'),(134418,4037,'flexible_templates_2_posts_grid_0_heading','Build'),(134419,4037,'_flexible_templates_2_posts_grid_0_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(134420,4037,'flexible_templates_2_posts_grid_0_copy','We\'re not just a software company. We\'re the people who help your business achieve its digital transformation vision. From strategy to implementation, we\'ll support you with our cloud native, data driven technology and digital transformation expertise. '),(134421,4037,'_flexible_templates_2_posts_grid_0_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(134422,4037,'flexible_templates_2_posts_grid_0_cta',''),(134423,4037,'_flexible_templates_2_posts_grid_0_cta','field_6256a6f8dea82_field_62551b3e101c4'),(134424,4037,'flexible_templates_2_posts_grid_1_icon','4034'),(134425,4037,'_flexible_templates_2_posts_grid_1_icon','field_6256a6c0dea7f_field_62550482480cb'),(134426,4037,'flexible_templates_2_posts_grid_1_heading','ReBuild'),(134427,4037,'_flexible_templates_2_posts_grid_1_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(134428,4037,'flexible_templates_2_posts_grid_1_copy','Break free from the limitations of your old legacy technology by rebuilding your business critical application components without affecting the original specifications, requirements, and business logic. This will improve scalability, maintainability, and reliability.\r\n'),(134429,4037,'_flexible_templates_2_posts_grid_1_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(134430,4037,'flexible_templates_2_posts_grid_1_cta',''),(134431,4037,'_flexible_templates_2_posts_grid_1_cta','field_6256a6f8dea82_field_62551b3e101c4'),(134432,4037,'flexible_templates_2_posts_grid_2_icon','4035'),(134433,4037,'_flexible_templates_2_posts_grid_2_icon','field_6256a6c0dea7f_field_62550482480cb'),(134434,4037,'flexible_templates_2_posts_grid_2_heading','RePlatform'),(134435,4037,'_flexible_templates_2_posts_grid_2_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(134436,4037,'flexible_templates_2_posts_grid_2_copy','Migrate your old application to a new runtime platform. When upgrading to a cloud native application platform, we repurpose the useable components from your legacy technology, and minimize changes to code and structure.'),(134437,4037,'_flexible_templates_2_posts_grid_2_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(134438,4037,'flexible_templates_2_posts_grid_2_cta',''),(134439,4037,'_flexible_templates_2_posts_grid_2_cta','field_6256a6f8dea82_field_62551b3e101c4'),(134440,4037,'flexible_templates_2_posts_grid','3'),(134441,4037,'_flexible_templates_2_posts_grid','field_6256a698dea7e'),(134442,4037,'flexible_templates_2_cta',''),(134443,4037,'_flexible_templates_2_cta','field_6256a725dea83_field_62551b3e101c4'),(134444,4037,'flexible_templates_3_heading','Scale According to your Demands'),(134445,4037,'_flexible_templates_3_heading','field_6256aa0c6187a_field_6254fdb2efa27'),(134446,4037,'flexible_templates_3_scale_demands_0_icon',''),(134447,4037,'_flexible_templates_3_scale_demands_0_icon','field_6256aa4e6187c_field_62550482480cb'),(134448,4037,'flexible_templates_3_scale_demands_0_heading','TEKTeams'),(134449,4037,'_flexible_templates_3_scale_demands_0_heading','field_6256aa866187d_field_6254fdb2efa27'),(134450,4037,'flexible_templates_3_scale_demands_0_copy','On-demand resources that may be used whenever and wherever you need them. Increase your workforce by partnering with teams tailored to your business needs.'),(134451,4037,'_flexible_templates_3_scale_demands_0_copy','field_6256aa986187e_field_6254fdc0efa29'),(134452,4037,'flexible_templates_3_scale_demands_0_cta','a:3:{s:5:\"title\";s:16:\"Scale Your Teams\";s:3:\"url\";s:34:\"https://translucent.local/tekteams\";s:6:\"target\";s:0:\"\";}'),(134453,4037,'_flexible_templates_3_scale_demands_0_cta','field_6256aab66187f_field_62551b3e101c4'),(134454,4037,'flexible_templates_3_scale_demands_1_icon',''),(134455,4037,'_flexible_templates_3_scale_demands_1_icon','field_6256aa4e6187c_field_62550482480cb'),(134456,4037,'flexible_templates_3_scale_demands_1_heading','TEKStack AI'),(134457,4037,'_flexible_templates_3_scale_demands_1_heading','field_6256aa866187d_field_6254fdb2efa27'),(134458,4037,'flexible_templates_3_scale_demands_1_copy','TEKStack AI has perfected the complex process of working with production ready tools that have been shown to save time and money. Reduce your time to market by more than 20%.'),(134459,4037,'_flexible_templates_3_scale_demands_1_copy','field_6256aa986187e_field_6254fdc0efa29'),(134460,4037,'flexible_templates_3_scale_demands_1_cta','a:3:{s:5:\"title\";s:20:\"Speed Up Development\";s:3:\"url\";s:38:\"https://translucent.local/tekstack-ai/\";s:6:\"target\";s:0:\"\";}'),(134461,4037,'_flexible_templates_3_scale_demands_1_cta','field_6256aab66187f_field_62551b3e101c4'),(134462,4037,'flexible_templates_3_scale_demands_2_icon',''),(134463,4037,'_flexible_templates_3_scale_demands_2_icon','field_6256aa4e6187c_field_62550482480cb'),(134464,4037,'flexible_templates_3_scale_demands_2_heading','TEKProcess'),(134465,4037,'_flexible_templates_3_scale_demands_2_heading','field_6256aa866187d_field_6254fdb2efa27'),(134466,4037,'flexible_templates_3_scale_demands_2_copy','Our approach to cloud native development will organize your entire cloud native development process ​from conception to steady state and support, known as TEKProcess.'),(134467,4037,'_flexible_templates_3_scale_demands_2_copy','field_6256aa986187e_field_6254fdc0efa29'),(134468,4037,'flexible_templates_3_scale_demands_2_cta','a:3:{s:5:\"title\";s:24:\"Optimize Your Operations\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(134469,4037,'_flexible_templates_3_scale_demands_2_cta','field_6256aab66187f_field_62551b3e101c4'),(134470,4037,'flexible_templates_3_scale_demands','3'),(134471,4037,'_flexible_templates_3_scale_demands','field_6256aa366187b'),(134475,4038,'_wp_attached_file','2022/05/Group-7869.svg'),(134476,4039,'_wp_attached_file','2022/05/kubernetes-kcsp-color.png'),(134477,4039,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:33:\"2022/05/kubernetes-kcsp-color.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"kubernetes-kcsp-color-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:{}}}'),(134478,4039,'_imagify_optimization_level','0'),(134479,4039,'_imagify_status','success'),(134480,4039,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9517;s:14:\"optimized_size\";i:9505;s:7:\"percent\";d:0.13;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24196;s:14:\"optimized_size\";i:23290;s:7:\"percent\";d:3.74;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9517;s:14:\"optimized_size\";i:36642;s:7:\"percent\";d:-285.02;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24196;s:14:\"optimized_size\";i:19145;s:7:\"percent\";d:20.88;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:67426;s:14:\"optimized_size\";i:88582;s:7:\"percent\";d:-31.38;}}'),(134481,4040,'_wp_attached_file','2022/05/kubernetes.svg'),(134482,4041,'_wp_attached_file','2022/05/cloudAsset-1@4x@2x.png'),(134483,4041,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:466;s:6:\"height\";i:410;s:4:\"file\";s:30:\"2022/05/cloudAsset-1@4x@2x.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"cloudAsset-1@4x@2x-300x264.png\";s:5:\"width\";i:300;s:6:\"height\";i:264;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"cloudAsset-1@4x@2x-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:{}}}'),(134484,4041,'_imagify_optimization_level','0'),(134485,4041,'_imagify_status','already_optimized'),(134486,4041,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21556;s:14:\"optimized_size\";i:12642;s:7:\"percent\";d:41.35;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61769;s:14:\"optimized_size\";i:28402;s:7:\"percent\";d:54.02;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:49750;s:14:\"optimized_size\";i:46504;s:7:\"percent\";d:6.52;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:133075;s:14:\"optimized_size\";i:87548;s:7:\"percent\";d:34.21;}}'),(134487,4042,'_wp_attached_file','2022/05/Devops.svg'),(134488,4043,'_wp_attached_file','2022/05/Group-7871.svg'),(134489,4028,'flexible_templates_4_heading','Reflect Your Operations Through Technology'),(134490,4028,'_flexible_templates_4_heading','field_6256acb5f89e4_field_6254fdb2efa27'),(134491,4028,'flexible_templates_4_sub_heading','CLOUD NATIVE ECOSYSTEM'),(134492,4028,'_flexible_templates_4_sub_heading','field_6256acc6f89e5_field_6254fdbaefa28'),(134493,4028,'flexible_templates_4_icon','4041'),(134494,4028,'_flexible_templates_4_icon','field_6256db0a20c28_field_62550482480cb'),(134495,4028,'flexible_templates_4_image',''),(134496,4028,'_flexible_templates_4_image','field_6257293fdf3c8_field_6254fdc5efa2a'),(134497,4028,'flexible_templates_4_technology_0_heading','Solve Problems Quick'),(134498,4028,'_flexible_templates_4_technology_0_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(134499,4028,'flexible_templates_4_technology_0_sub_heading','How?'),(134500,4028,'_flexible_templates_4_technology_0_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(134501,4028,'flexible_templates_4_technology_0_copy','Translucent is a data driven digital transformation company that uses technology to solve problems and modernize companies.'),(134502,4028,'_flexible_templates_4_technology_0_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(134503,4028,'flexible_templates_4_technology_0_back_heading','Data Driven'),(134504,4028,'_flexible_templates_4_technology_0_back_heading','field_6256b2b61a441'),(134505,4028,'flexible_templates_4_technology_0_icon','4038'),(134506,4028,'_flexible_templates_4_technology_0_icon','field_6256b2be1a442_field_62550482480cb'),(134507,4028,'flexible_templates_4_technology_0_back_copy','We work closely with companies to analyze their business and discover new opportunities they did not know existed.'),(134508,4028,'_flexible_templates_4_technology_0_back_copy','field_6256b2e31a443'),(134509,4028,'flexible_templates_4_technology_0_image',''),(134510,4028,'_flexible_templates_4_technology_0_image','field_6256b3011a444_field_6254fdc5efa2a'),(134511,4028,'flexible_templates_4_technology_0_cta','a:3:{s:5:\"title\";s:13:\"Start Solving\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(134512,4028,'_flexible_templates_4_technology_0_cta','field_6256ad66f89e9_field_62551b3e101c4'),(134513,4028,'flexible_templates_4_technology_1_heading','Automate Development Tasks'),(134514,4028,'_flexible_templates_4_technology_1_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(134515,4028,'flexible_templates_4_technology_1_sub_heading','How?'),(134516,4028,'_flexible_templates_4_technology_1_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(134517,4028,'flexible_templates_4_technology_1_copy','Simplify the intricacies of cloud applications by automating laborious tasks in the development process.'),(134518,4028,'_flexible_templates_4_technology_1_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(134519,4028,'flexible_templates_4_technology_1_back_heading',''),(134520,4028,'_flexible_templates_4_technology_1_back_heading','field_6256b2b61a441'),(134521,4028,'flexible_templates_4_technology_1_icon','4040'),(134522,4028,'_flexible_templates_4_technology_1_icon','field_6256b2be1a442_field_62550482480cb'),(134523,4028,'flexible_templates_4_technology_1_back_copy','Translucent is one of just four kubernetes certified partners in Canada!'),(134524,4028,'_flexible_templates_4_technology_1_back_copy','field_6256b2e31a443'),(134525,4028,'flexible_templates_4_technology_1_image','4039'),(134526,4028,'_flexible_templates_4_technology_1_image','field_6256b3011a444_field_6254fdc5efa2a'),(134527,4028,'flexible_templates_4_technology_1_cta','a:3:{s:5:\"title\";s:16:\"Start Automating\";s:3:\"url\";s:59:\"https://translucent.local/kubernetes-professional-services/\";s:6:\"target\";s:0:\"\";}'),(134528,4028,'_flexible_templates_4_technology_1_cta','field_6256ad66f89e9_field_62551b3e101c4'),(134529,4028,'flexible_templates_4_technology_2_heading','Build and Deploy Faster'),(134530,4028,'_flexible_templates_4_technology_2_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(134531,4028,'flexible_templates_4_technology_2_sub_heading','How?'),(134532,4028,'_flexible_templates_4_technology_2_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(134533,4028,'flexible_templates_4_technology_2_copy','Maximise earnings by building and deploying more features and faster.'),(134534,4028,'_flexible_templates_4_technology_2_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(134535,4028,'flexible_templates_4_technology_2_back_heading',''),(134536,4028,'_flexible_templates_4_technology_2_back_heading','field_6256b2b61a441'),(134537,4028,'flexible_templates_4_technology_2_icon','4042'),(134538,4028,'_flexible_templates_4_technology_2_icon','field_6256b2be1a442_field_62550482480cb'),(134539,4028,'flexible_templates_4_technology_2_back_copy','Devops is the heartbeat of all Translucent services, and Translucent IS Devops.'),(134540,4028,'_flexible_templates_4_technology_2_back_copy','field_6256b2e31a443'),(134541,4028,'flexible_templates_4_technology_2_image',''),(134542,4028,'_flexible_templates_4_technology_2_image','field_6256b3011a444_field_6254fdc5efa2a'),(134543,4028,'flexible_templates_4_technology_2_cta','a:3:{s:5:\"title\";s:17:\"Unlock Efficiency\";s:3:\"url\";s:46:\"https://translucent.local/cloud-native-devops/\";s:6:\"target\";s:0:\"\";}'),(134544,4028,'_flexible_templates_4_technology_2_cta','field_6256ad66f89e9_field_62551b3e101c4'),(134545,4028,'flexible_templates_4_technology_3_heading','Remain Secure as Possible'),(134546,4028,'_flexible_templates_4_technology_3_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(134547,4028,'flexible_templates_4_technology_3_sub_heading','How?'),(134548,4028,'_flexible_templates_4_technology_3_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(134549,4028,'flexible_templates_4_technology_3_copy','Reduce deliberate and incidental security vulnerabilities in your systems.'),(134550,4028,'_flexible_templates_4_technology_3_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(134551,4028,'flexible_templates_4_technology_3_back_heading','Zero Trust'),(134552,4028,'_flexible_templates_4_technology_3_back_heading','field_6256b2b61a441'),(134553,4028,'flexible_templates_4_technology_3_icon','4043'),(134554,4028,'_flexible_templates_4_technology_3_icon','field_6256b2be1a442_field_62550482480cb'),(134555,4028,'flexible_templates_4_technology_3_back_copy','We are partnered with the best security teams to offer full end to end services.'),(134556,4028,'_flexible_templates_4_technology_3_back_copy','field_6256b2e31a443'),(134557,4028,'flexible_templates_4_technology_3_image',''),(134558,4028,'_flexible_templates_4_technology_3_image','field_6256b3011a444_field_6254fdc5efa2a'),(134559,4028,'flexible_templates_4_technology_3_cta','a:3:{s:5:\"title\";s:20:\"Protect What Matters\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(134560,4028,'_flexible_templates_4_technology_3_cta','field_6256ad66f89e9_field_62551b3e101c4'),(134561,4028,'flexible_templates_4_technology','6'),(134562,4028,'_flexible_templates_4_technology','field_6256acf8f89e6'),(134563,4044,'flexible_templates','a:5:{i:0;s:19:\"cloud_native_banner\";i:1;s:35:\"cloud_native_expert_dedicated_teams\";i:2;s:39:\"cloud_native_solving_digital_challenges\";i:3;s:26:\"cloud_native_scale_demands\";i:4;s:22:\"cloud_native_ecosystem\";}'),(134564,4044,'_flexible_templates','field_6254f4d84ef9b'),(134565,4044,'flexible_templates_0_image','4030'),(134566,4044,'_flexible_templates_0_image','field_62569b35f7c63_field_6254fdc5efa2a'),(134567,4044,'flexible_templates_0_icon','4013'),(134568,4044,'_flexible_templates_0_icon','field_62569b69f7c64_field_62550482480cb'),(134569,4044,'flexible_templates_0_heading','Solve Digital Challenges with a Complete Cloud Native Solution'),(134570,4044,'_flexible_templates_0_heading','field_62569b87f7c65_field_6254fdb2efa27'),(134571,4044,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(134572,4044,'_flexible_templates_0_sub_heading','field_62569ba5f7c66_field_6254fdbaefa28'),(134573,4044,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:23:\"Transform Your Business\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(134574,4044,'_flexible_templates_0_cta','field_62569bcff7c67_field_62551b3e101c4'),(134575,4044,'flexible_templates_1_image','4031'),(134576,4044,'_flexible_templates_1_image','field_6256a05dda66c_field_6254fdc5efa2a'),(134577,4044,'flexible_templates_1_heading','Expert dedicated teams for your cloud native project.'),(134578,4044,'_flexible_templates_1_heading','field_62569f6d3c0ad_field_6254fdb2efa27'),(134579,4044,'flexible_templates_1_sub_heading','DATA-DRIVEN TRUSTED TECHNOLOGY PARTNER'),(134580,4044,'_flexible_templates_1_sub_heading','field_62569f7a3c0ae_field_6254fdbaefa28'),(134581,4044,'flexible_templates_1_copy','Our expert software engineering teams develop intelligent apps for fintech, healthcare, automotive, and any other data-driven journey, with over 10 years of experience in large scale complex project. Enable your business to reflect its operations through technology while helping it become more dynamic, secure, and easier to scale by increasing speed to market. As a pioneer in cloud native application development we have a proven track record of solving digital transformation challenges for enterprises.'),(134582,4044,'_flexible_templates_1_copy','field_6256a175dc200_field_6254fdc0efa29'),(134583,4044,'flexible_templates_1_copy_long',''),(134584,4044,'_flexible_templates_1_copy_long','field_6256a026da66a'),(134585,4044,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:12:\"How We Do It\";s:3:\"url\";s:36:\"https://translucent.local/tek-world/\";s:6:\"target\";s:0:\"\";}'),(134586,4044,'_flexible_templates_1_cta','field_6256a03ada66b_field_62551b3e101c4'),(134587,4044,'flexible_templates_2_heading','Three paths to Cloud Native'),(134588,4044,'_flexible_templates_2_heading','field_6256a640dea7c_field_6254fdb2efa27'),(134589,4044,'flexible_templates_2_sub_heading','SOLVING DIGITAL CHALLENGES'),(134590,4044,'_flexible_templates_2_sub_heading','field_6256a66cdea7d_field_6254fdbaefa28'),(134591,4044,'flexible_templates_2_posts_grid_0_icon','4033'),(134592,4044,'_flexible_templates_2_posts_grid_0_icon','field_6256a6c0dea7f_field_62550482480cb'),(134593,4044,'flexible_templates_2_posts_grid_0_heading','Build'),(134594,4044,'_flexible_templates_2_posts_grid_0_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(134595,4044,'flexible_templates_2_posts_grid_0_copy','We\'re not just a software company. We\'re the people who help your business achieve its digital transformation vision. From strategy to implementation, we\'ll support you with our cloud native, data driven technology and digital transformation expertise. '),(134596,4044,'_flexible_templates_2_posts_grid_0_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(134597,4044,'flexible_templates_2_posts_grid_0_cta',''),(134598,4044,'_flexible_templates_2_posts_grid_0_cta','field_6256a6f8dea82_field_62551b3e101c4'),(134599,4044,'flexible_templates_2_posts_grid_1_icon','4034'),(134600,4044,'_flexible_templates_2_posts_grid_1_icon','field_6256a6c0dea7f_field_62550482480cb'),(134601,4044,'flexible_templates_2_posts_grid_1_heading','ReBuild'),(134602,4044,'_flexible_templates_2_posts_grid_1_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(134603,4044,'flexible_templates_2_posts_grid_1_copy','Break free from the limitations of your old legacy technology by rebuilding your business critical application components without affecting the original specifications, requirements, and business logic. This will improve scalability, maintainability, and reliability.\r\n'),(134604,4044,'_flexible_templates_2_posts_grid_1_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(134605,4044,'flexible_templates_2_posts_grid_1_cta',''),(134606,4044,'_flexible_templates_2_posts_grid_1_cta','field_6256a6f8dea82_field_62551b3e101c4'),(134607,4044,'flexible_templates_2_posts_grid_2_icon','4035'),(134608,4044,'_flexible_templates_2_posts_grid_2_icon','field_6256a6c0dea7f_field_62550482480cb'),(134609,4044,'flexible_templates_2_posts_grid_2_heading','RePlatform'),(134610,4044,'_flexible_templates_2_posts_grid_2_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(134611,4044,'flexible_templates_2_posts_grid_2_copy','Migrate your old application to a new runtime platform. When upgrading to a cloud native application platform, we repurpose the useable components from your legacy technology, and minimize changes to code and structure.'),(134612,4044,'_flexible_templates_2_posts_grid_2_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(134613,4044,'flexible_templates_2_posts_grid_2_cta',''),(134614,4044,'_flexible_templates_2_posts_grid_2_cta','field_6256a6f8dea82_field_62551b3e101c4'),(134615,4044,'flexible_templates_2_posts_grid','3'),(134616,4044,'_flexible_templates_2_posts_grid','field_6256a698dea7e'),(134617,4044,'flexible_templates_2_cta',''),(134618,4044,'_flexible_templates_2_cta','field_6256a725dea83_field_62551b3e101c4'),(134619,4044,'flexible_templates_3_heading','Scale According to your Demands'),(134620,4044,'_flexible_templates_3_heading','field_6256aa0c6187a_field_6254fdb2efa27'),(134621,4044,'flexible_templates_3_scale_demands_0_icon',''),(134622,4044,'_flexible_templates_3_scale_demands_0_icon','field_6256aa4e6187c_field_62550482480cb'),(134623,4044,'flexible_templates_3_scale_demands_0_heading','TEKTeams'),(134624,4044,'_flexible_templates_3_scale_demands_0_heading','field_6256aa866187d_field_6254fdb2efa27'),(134625,4044,'flexible_templates_3_scale_demands_0_copy','On-demand resources that may be used whenever and wherever you need them. Increase your workforce by partnering with teams tailored to your business needs.'),(134626,4044,'_flexible_templates_3_scale_demands_0_copy','field_6256aa986187e_field_6254fdc0efa29'),(134627,4044,'flexible_templates_3_scale_demands_0_cta','a:3:{s:5:\"title\";s:16:\"Scale Your Teams\";s:3:\"url\";s:34:\"https://translucent.local/tekteams\";s:6:\"target\";s:0:\"\";}'),(134628,4044,'_flexible_templates_3_scale_demands_0_cta','field_6256aab66187f_field_62551b3e101c4'),(134629,4044,'flexible_templates_3_scale_demands_1_icon',''),(134630,4044,'_flexible_templates_3_scale_demands_1_icon','field_6256aa4e6187c_field_62550482480cb'),(134631,4044,'flexible_templates_3_scale_demands_1_heading','TEKStack AI'),(134632,4044,'_flexible_templates_3_scale_demands_1_heading','field_6256aa866187d_field_6254fdb2efa27'),(134633,4044,'flexible_templates_3_scale_demands_1_copy','TEKStack AI has perfected the complex process of working with production ready tools that have been shown to save time and money. Reduce your time to market by more than 20%.'),(134634,4044,'_flexible_templates_3_scale_demands_1_copy','field_6256aa986187e_field_6254fdc0efa29'),(134635,4044,'flexible_templates_3_scale_demands_1_cta','a:3:{s:5:\"title\";s:20:\"Speed Up Development\";s:3:\"url\";s:38:\"https://translucent.local/tekstack-ai/\";s:6:\"target\";s:0:\"\";}'),(134636,4044,'_flexible_templates_3_scale_demands_1_cta','field_6256aab66187f_field_62551b3e101c4'),(134637,4044,'flexible_templates_3_scale_demands_2_icon',''),(134638,4044,'_flexible_templates_3_scale_demands_2_icon','field_6256aa4e6187c_field_62550482480cb'),(134639,4044,'flexible_templates_3_scale_demands_2_heading','TEKProcess'),(134640,4044,'_flexible_templates_3_scale_demands_2_heading','field_6256aa866187d_field_6254fdb2efa27'),(134641,4044,'flexible_templates_3_scale_demands_2_copy','Our approach to cloud native development will organize your entire cloud native development process ​from conception to steady state and support, known as TEKProcess.'),(134642,4044,'_flexible_templates_3_scale_demands_2_copy','field_6256aa986187e_field_6254fdc0efa29'),(134643,4044,'flexible_templates_3_scale_demands_2_cta','a:3:{s:5:\"title\";s:24:\"Optimize Your Operations\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(134644,4044,'_flexible_templates_3_scale_demands_2_cta','field_6256aab66187f_field_62551b3e101c4'),(134645,4044,'flexible_templates_3_scale_demands','3'),(134646,4044,'_flexible_templates_3_scale_demands','field_6256aa366187b'),(134647,4044,'flexible_templates_4_heading','Reflect Your Operations Through Technology'),(134648,4044,'_flexible_templates_4_heading','field_6256acb5f89e4_field_6254fdb2efa27'),(134649,4044,'flexible_templates_4_sub_heading','CLOUD NATIVE ECOSYSTEM'),(134650,4044,'_flexible_templates_4_sub_heading','field_6256acc6f89e5_field_6254fdbaefa28'),(134651,4044,'flexible_templates_4_icon','4041'),(134652,4044,'_flexible_templates_4_icon','field_6256db0a20c28_field_62550482480cb'),(134653,4044,'flexible_templates_4_image',''),(134654,4044,'_flexible_templates_4_image','field_6257293fdf3c8_field_6254fdc5efa2a'),(134655,4044,'flexible_templates_4_technology_0_heading','Solve Problems Quick'),(134656,4044,'_flexible_templates_4_technology_0_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(134657,4044,'flexible_templates_4_technology_0_sub_heading','How?'),(134658,4044,'_flexible_templates_4_technology_0_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(134659,4044,'flexible_templates_4_technology_0_copy','Translucent is a data driven digital transformation company that uses technology to solve problems and modernize companies.'),(134660,4044,'_flexible_templates_4_technology_0_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(134661,4044,'flexible_templates_4_technology_0_back_heading','Data Driven'),(134662,4044,'_flexible_templates_4_technology_0_back_heading','field_6256b2b61a441'),(134663,4044,'flexible_templates_4_technology_0_icon','4038'),(134664,4044,'_flexible_templates_4_technology_0_icon','field_6256b2be1a442_field_62550482480cb'),(134665,4044,'flexible_templates_4_technology_0_back_copy','We work closely with companies to analyze their business and discover new opportunities they did not know existed.'),(134666,4044,'_flexible_templates_4_technology_0_back_copy','field_6256b2e31a443'),(134667,4044,'flexible_templates_4_technology_0_image',''),(134668,4044,'_flexible_templates_4_technology_0_image','field_6256b3011a444_field_6254fdc5efa2a'),(134669,4044,'flexible_templates_4_technology_0_cta','a:3:{s:5:\"title\";s:13:\"Start Solving\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(134670,4044,'_flexible_templates_4_technology_0_cta','field_6256ad66f89e9_field_62551b3e101c4'),(134671,4044,'flexible_templates_4_technology_1_heading','Automate Development Tasks'),(134672,4044,'_flexible_templates_4_technology_1_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(134673,4044,'flexible_templates_4_technology_1_sub_heading','How?'),(134674,4044,'_flexible_templates_4_technology_1_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(134675,4044,'flexible_templates_4_technology_1_copy','Simplify the intricacies of cloud applications by automating laborious tasks in the development process.'),(134676,4044,'_flexible_templates_4_technology_1_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(134677,4044,'flexible_templates_4_technology_1_back_heading',''),(134678,4044,'_flexible_templates_4_technology_1_back_heading','field_6256b2b61a441'),(134679,4044,'flexible_templates_4_technology_1_icon','4040'),(134680,4044,'_flexible_templates_4_technology_1_icon','field_6256b2be1a442_field_62550482480cb'),(134681,4044,'flexible_templates_4_technology_1_back_copy','Translucent is one of just four kubernetes certified partners in Canada!'),(134682,4044,'_flexible_templates_4_technology_1_back_copy','field_6256b2e31a443'),(134683,4044,'flexible_templates_4_technology_1_image','4039'),(134684,4044,'_flexible_templates_4_technology_1_image','field_6256b3011a444_field_6254fdc5efa2a'),(134685,4044,'flexible_templates_4_technology_1_cta','a:3:{s:5:\"title\";s:16:\"Start Automating\";s:3:\"url\";s:59:\"https://translucent.local/kubernetes-professional-services/\";s:6:\"target\";s:0:\"\";}'),(134686,4044,'_flexible_templates_4_technology_1_cta','field_6256ad66f89e9_field_62551b3e101c4'),(134687,4044,'flexible_templates_4_technology_2_heading','Build and Deploy Faster'),(134688,4044,'_flexible_templates_4_technology_2_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(134689,4044,'flexible_templates_4_technology_2_sub_heading','How?'),(134690,4044,'_flexible_templates_4_technology_2_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(134691,4044,'flexible_templates_4_technology_2_copy','Maximise earnings by building and deploying more features and faster.'),(134692,4044,'_flexible_templates_4_technology_2_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(134693,4044,'flexible_templates_4_technology_2_back_heading',''),(134694,4044,'_flexible_templates_4_technology_2_back_heading','field_6256b2b61a441'),(134695,4044,'flexible_templates_4_technology_2_icon','4042'),(134696,4044,'_flexible_templates_4_technology_2_icon','field_6256b2be1a442_field_62550482480cb'),(134697,4044,'flexible_templates_4_technology_2_back_copy','Devops is the heartbeat of all Translucent services, and Translucent IS Devops.'),(134698,4044,'_flexible_templates_4_technology_2_back_copy','field_6256b2e31a443'),(134699,4044,'flexible_templates_4_technology_2_image',''),(134700,4044,'_flexible_templates_4_technology_2_image','field_6256b3011a444_field_6254fdc5efa2a'),(134701,4044,'flexible_templates_4_technology_2_cta','a:3:{s:5:\"title\";s:17:\"Unlock Efficiency\";s:3:\"url\";s:46:\"https://translucent.local/cloud-native-devops/\";s:6:\"target\";s:0:\"\";}'),(134702,4044,'_flexible_templates_4_technology_2_cta','field_6256ad66f89e9_field_62551b3e101c4'),(134703,4044,'flexible_templates_4_technology_3_heading','Remain Secure as Possible'),(134704,4044,'_flexible_templates_4_technology_3_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(134705,4044,'flexible_templates_4_technology_3_sub_heading','How?'),(134706,4044,'_flexible_templates_4_technology_3_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(134707,4044,'flexible_templates_4_technology_3_copy','Reduce deliberate and incidental security vulnerabilities in your systems.'),(134708,4044,'_flexible_templates_4_technology_3_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(134709,4044,'flexible_templates_4_technology_3_back_heading','Zero Trust'),(134710,4044,'_flexible_templates_4_technology_3_back_heading','field_6256b2b61a441'),(134711,4044,'flexible_templates_4_technology_3_icon','4043'),(134712,4044,'_flexible_templates_4_technology_3_icon','field_6256b2be1a442_field_62550482480cb'),(134713,4044,'flexible_templates_4_technology_3_back_copy','We are partnered with the best security teams to offer full end to end services.'),(134714,4044,'_flexible_templates_4_technology_3_back_copy','field_6256b2e31a443'),(134715,4044,'flexible_templates_4_technology_3_image',''),(134716,4044,'_flexible_templates_4_technology_3_image','field_6256b3011a444_field_6254fdc5efa2a'),(134717,4044,'flexible_templates_4_technology_3_cta','a:3:{s:5:\"title\";s:20:\"Protect What Matters\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(134718,4044,'_flexible_templates_4_technology_3_cta','field_6256ad66f89e9_field_62551b3e101c4'),(134719,4044,'flexible_templates_4_technology','4'),(134720,4044,'_flexible_templates_4_technology','field_6256acf8f89e6'),(134724,4045,'_edit_last','4'),(134725,4045,'_edit_lock','1655734640:4'),(134726,4045,'_wp_page_template','flexible-template.php'),(134727,4045,'hefo_before','0'),(134728,4045,'hefo_after','0'),(134729,4045,'_yoast_wpseo_focuskeywords','[]'),(134730,4045,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(134731,4045,'_yoast_wpseo_estimated-reading-time-minutes',''),(134732,4045,'flexible_templates',''),(134733,4045,'_flexible_templates','field_6254f4d84ef9b'),(134734,4046,'flexible_templates',''),(134735,4046,'_flexible_templates','field_6254f4d84ef9b'),(134739,4047,'_wp_attached_file','2022/05/Group-8020.svg'),(134740,4048,'_wp_attached_file','2022/05/MachineLearning.svg'),(134741,4028,'flexible_templates_4_technology_4_heading','Propel Your Business into The Future'),(134742,4028,'_flexible_templates_4_technology_4_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(134743,4028,'flexible_templates_4_technology_4_sub_heading','How?'),(134744,4028,'_flexible_templates_4_technology_4_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(134745,4028,'flexible_templates_4_technology_4_copy','Build new systems in the cloud, or Modernize legacy data and applications by rebuilding or migrating to a value-driven platform. '),(134746,4028,'_flexible_templates_4_technology_4_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(134747,4028,'flexible_templates_4_technology_4_back_heading','Application Development'),(134748,4028,'_flexible_templates_4_technology_4_back_heading','field_6256b2b61a441'),(134749,4028,'flexible_templates_4_technology_4_icon','4047'),(134750,4028,'_flexible_templates_4_technology_4_icon','field_6256b2be1a442_field_62550482480cb'),(134751,4028,'flexible_templates_4_technology_4_back_copy','We develop intelligent apps for fintech, healthcare, and any other data-driven journey.'),(134752,4028,'_flexible_templates_4_technology_4_back_copy','field_6256b2e31a443'),(134753,4028,'flexible_templates_4_technology_4_image',''),(134754,4028,'_flexible_templates_4_technology_4_image','field_6256b3011a444_field_6254fdc5efa2a'),(134755,4028,'flexible_templates_4_technology_4_cta','a:3:{s:5:\"title\";s:14:\"Build It Right\";s:3:\"url\";s:63:\"https://translucent.local/cloud-native-application-development/\";s:6:\"target\";s:0:\"\";}'),(134756,4028,'_flexible_templates_4_technology_4_cta','field_6256ad66f89e9_field_62551b3e101c4'),(134757,4028,'flexible_templates_4_technology_5_heading','Make Decisions Faster'),(134758,4028,'_flexible_templates_4_technology_5_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(134759,4028,'flexible_templates_4_technology_5_sub_heading','How?'),(134760,4028,'_flexible_templates_4_technology_5_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(134761,4028,'flexible_templates_4_technology_5_copy','Discover anomalies and opportunities faster than human intelligence!'),(134762,4028,'_flexible_templates_4_technology_5_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(134763,4028,'flexible_templates_4_technology_5_back_heading',''),(134764,4028,'_flexible_templates_4_technology_5_back_heading','field_6256b2b61a441'),(134765,4028,'flexible_templates_4_technology_5_icon','4048'),(134766,4028,'_flexible_templates_4_technology_5_icon','field_6256b2be1a442_field_62550482480cb'),(134767,4028,'flexible_templates_4_technology_5_back_copy','Extend the boundaries of your business by solving problems faster.'),(134768,4028,'_flexible_templates_4_technology_5_back_copy','field_6256b2e31a443'),(134769,4028,'flexible_templates_4_technology_5_image',''),(134770,4028,'_flexible_templates_4_technology_5_image','field_6256b3011a444_field_6254fdc5efa2a'),(134771,4028,'flexible_templates_4_technology_5_cta','a:3:{s:5:\"title\";s:22:\"Solve Complex Problems\";s:3:\"url\";s:52:\"https://translucent.local/services/machine-learning/\";s:6:\"target\";s:6:\"_blank\";}'),(134772,4028,'_flexible_templates_4_technology_5_cta','field_6256ad66f89e9_field_62551b3e101c4'),(134773,4049,'flexible_templates','a:5:{i:0;s:19:\"cloud_native_banner\";i:1;s:35:\"cloud_native_expert_dedicated_teams\";i:2;s:39:\"cloud_native_solving_digital_challenges\";i:3;s:26:\"cloud_native_scale_demands\";i:4;s:22:\"cloud_native_ecosystem\";}'),(134774,4049,'_flexible_templates','field_6254f4d84ef9b'),(134775,4049,'flexible_templates_0_image','4030'),(134776,4049,'_flexible_templates_0_image','field_62569b35f7c63_field_6254fdc5efa2a'),(134777,4049,'flexible_templates_0_icon','4013'),(134778,4049,'_flexible_templates_0_icon','field_62569b69f7c64_field_62550482480cb'),(134779,4049,'flexible_templates_0_heading','Solve Digital Challenges with a Complete Cloud Native Solution'),(134780,4049,'_flexible_templates_0_heading','field_62569b87f7c65_field_6254fdb2efa27'),(134781,4049,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(134782,4049,'_flexible_templates_0_sub_heading','field_62569ba5f7c66_field_6254fdbaefa28'),(134783,4049,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:23:\"Transform Your Business\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(134784,4049,'_flexible_templates_0_cta','field_62569bcff7c67_field_62551b3e101c4'),(134785,4049,'flexible_templates_1_image','4031'),(134786,4049,'_flexible_templates_1_image','field_6256a05dda66c_field_6254fdc5efa2a'),(134787,4049,'flexible_templates_1_heading','Expert dedicated teams for your cloud native project.'),(134788,4049,'_flexible_templates_1_heading','field_62569f6d3c0ad_field_6254fdb2efa27'),(134789,4049,'flexible_templates_1_sub_heading','DATA-DRIVEN TRUSTED TECHNOLOGY PARTNER'),(134790,4049,'_flexible_templates_1_sub_heading','field_62569f7a3c0ae_field_6254fdbaefa28'),(134791,4049,'flexible_templates_1_copy','Our expert software engineering teams develop intelligent apps for fintech, healthcare, automotive, and any other data-driven journey, with over 10 years of experience in large scale complex project. Enable your business to reflect its operations through technology while helping it become more dynamic, secure, and easier to scale by increasing speed to market. As a pioneer in cloud native application development we have a proven track record of solving digital transformation challenges for enterprises.'),(134792,4049,'_flexible_templates_1_copy','field_6256a175dc200_field_6254fdc0efa29'),(134793,4049,'flexible_templates_1_copy_long',''),(134794,4049,'_flexible_templates_1_copy_long','field_6256a026da66a'),(134795,4049,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:12:\"How We Do It\";s:3:\"url\";s:36:\"https://translucent.local/tek-world/\";s:6:\"target\";s:0:\"\";}'),(134796,4049,'_flexible_templates_1_cta','field_6256a03ada66b_field_62551b3e101c4'),(134797,4049,'flexible_templates_2_heading','Three paths to Cloud Native'),(134798,4049,'_flexible_templates_2_heading','field_6256a640dea7c_field_6254fdb2efa27'),(134799,4049,'flexible_templates_2_sub_heading','SOLVING DIGITAL CHALLENGES'),(134800,4049,'_flexible_templates_2_sub_heading','field_6256a66cdea7d_field_6254fdbaefa28'),(134801,4049,'flexible_templates_2_posts_grid_0_icon','4033'),(134802,4049,'_flexible_templates_2_posts_grid_0_icon','field_6256a6c0dea7f_field_62550482480cb'),(134803,4049,'flexible_templates_2_posts_grid_0_heading','Build'),(134804,4049,'_flexible_templates_2_posts_grid_0_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(134805,4049,'flexible_templates_2_posts_grid_0_copy','We\'re not just a software company. We\'re the people who help your business achieve its digital transformation vision. From strategy to implementation, we\'ll support you with our cloud native, data driven technology and digital transformation expertise. '),(134806,4049,'_flexible_templates_2_posts_grid_0_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(134807,4049,'flexible_templates_2_posts_grid_0_cta',''),(134808,4049,'_flexible_templates_2_posts_grid_0_cta','field_6256a6f8dea82_field_62551b3e101c4'),(134809,4049,'flexible_templates_2_posts_grid_1_icon','4034'),(134810,4049,'_flexible_templates_2_posts_grid_1_icon','field_6256a6c0dea7f_field_62550482480cb'),(134811,4049,'flexible_templates_2_posts_grid_1_heading','ReBuild'),(134812,4049,'_flexible_templates_2_posts_grid_1_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(134813,4049,'flexible_templates_2_posts_grid_1_copy','Break free from the limitations of your old legacy technology by rebuilding your business critical application components without affecting the original specifications, requirements, and business logic. This will improve scalability, maintainability, and reliability.\r\n'),(134814,4049,'_flexible_templates_2_posts_grid_1_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(134815,4049,'flexible_templates_2_posts_grid_1_cta',''),(134816,4049,'_flexible_templates_2_posts_grid_1_cta','field_6256a6f8dea82_field_62551b3e101c4'),(134817,4049,'flexible_templates_2_posts_grid_2_icon','4035'),(134818,4049,'_flexible_templates_2_posts_grid_2_icon','field_6256a6c0dea7f_field_62550482480cb'),(134819,4049,'flexible_templates_2_posts_grid_2_heading','RePlatform'),(134820,4049,'_flexible_templates_2_posts_grid_2_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(134821,4049,'flexible_templates_2_posts_grid_2_copy','Migrate your old application to a new runtime platform. When upgrading to a cloud native application platform, we repurpose the useable components from your legacy technology, and minimize changes to code and structure.'),(134822,4049,'_flexible_templates_2_posts_grid_2_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(134823,4049,'flexible_templates_2_posts_grid_2_cta',''),(134824,4049,'_flexible_templates_2_posts_grid_2_cta','field_6256a6f8dea82_field_62551b3e101c4'),(134825,4049,'flexible_templates_2_posts_grid','3'),(134826,4049,'_flexible_templates_2_posts_grid','field_6256a698dea7e'),(134827,4049,'flexible_templates_2_cta',''),(134828,4049,'_flexible_templates_2_cta','field_6256a725dea83_field_62551b3e101c4'),(134829,4049,'flexible_templates_3_heading','Scale According to your Demands'),(134830,4049,'_flexible_templates_3_heading','field_6256aa0c6187a_field_6254fdb2efa27'),(134831,4049,'flexible_templates_3_scale_demands_0_icon',''),(134832,4049,'_flexible_templates_3_scale_demands_0_icon','field_6256aa4e6187c_field_62550482480cb'),(134833,4049,'flexible_templates_3_scale_demands_0_heading','TEKTeams'),(134834,4049,'_flexible_templates_3_scale_demands_0_heading','field_6256aa866187d_field_6254fdb2efa27'),(134835,4049,'flexible_templates_3_scale_demands_0_copy','On-demand resources that may be used whenever and wherever you need them. Increase your workforce by partnering with teams tailored to your business needs.'),(134836,4049,'_flexible_templates_3_scale_demands_0_copy','field_6256aa986187e_field_6254fdc0efa29'),(134837,4049,'flexible_templates_3_scale_demands_0_cta','a:3:{s:5:\"title\";s:16:\"Scale Your Teams\";s:3:\"url\";s:34:\"https://translucent.local/tekteams\";s:6:\"target\";s:0:\"\";}'),(134838,4049,'_flexible_templates_3_scale_demands_0_cta','field_6256aab66187f_field_62551b3e101c4'),(134839,4049,'flexible_templates_3_scale_demands_1_icon',''),(134840,4049,'_flexible_templates_3_scale_demands_1_icon','field_6256aa4e6187c_field_62550482480cb'),(134841,4049,'flexible_templates_3_scale_demands_1_heading','TEKStack AI'),(134842,4049,'_flexible_templates_3_scale_demands_1_heading','field_6256aa866187d_field_6254fdb2efa27'),(134843,4049,'flexible_templates_3_scale_demands_1_copy','TEKStack AI has perfected the complex process of working with production ready tools that have been shown to save time and money. Reduce your time to market by more than 20%.'),(134844,4049,'_flexible_templates_3_scale_demands_1_copy','field_6256aa986187e_field_6254fdc0efa29'),(134845,4049,'flexible_templates_3_scale_demands_1_cta','a:3:{s:5:\"title\";s:20:\"Speed Up Development\";s:3:\"url\";s:38:\"https://translucent.local/tekstack-ai/\";s:6:\"target\";s:0:\"\";}'),(134846,4049,'_flexible_templates_3_scale_demands_1_cta','field_6256aab66187f_field_62551b3e101c4'),(134847,4049,'flexible_templates_3_scale_demands_2_icon',''),(134848,4049,'_flexible_templates_3_scale_demands_2_icon','field_6256aa4e6187c_field_62550482480cb'),(134849,4049,'flexible_templates_3_scale_demands_2_heading','TEKProcess'),(134850,4049,'_flexible_templates_3_scale_demands_2_heading','field_6256aa866187d_field_6254fdb2efa27'),(134851,4049,'flexible_templates_3_scale_demands_2_copy','Our approach to cloud native development will organize your entire cloud native development process ​from conception to steady state and support, known as TEKProcess.'),(134852,4049,'_flexible_templates_3_scale_demands_2_copy','field_6256aa986187e_field_6254fdc0efa29'),(134853,4049,'flexible_templates_3_scale_demands_2_cta','a:3:{s:5:\"title\";s:24:\"Optimize Your Operations\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(134854,4049,'_flexible_templates_3_scale_demands_2_cta','field_6256aab66187f_field_62551b3e101c4'),(134855,4049,'flexible_templates_3_scale_demands','3'),(134856,4049,'_flexible_templates_3_scale_demands','field_6256aa366187b'),(134857,4049,'flexible_templates_4_heading','Reflect Your Operations Through Technology'),(134858,4049,'_flexible_templates_4_heading','field_6256acb5f89e4_field_6254fdb2efa27'),(134859,4049,'flexible_templates_4_sub_heading','CLOUD NATIVE ECOSYSTEM'),(134860,4049,'_flexible_templates_4_sub_heading','field_6256acc6f89e5_field_6254fdbaefa28'),(134861,4049,'flexible_templates_4_icon','4041'),(134862,4049,'_flexible_templates_4_icon','field_6256db0a20c28_field_62550482480cb'),(134863,4049,'flexible_templates_4_image',''),(134864,4049,'_flexible_templates_4_image','field_6257293fdf3c8_field_6254fdc5efa2a'),(134865,4049,'flexible_templates_4_technology_0_heading','Solve Problems Quick'),(134866,4049,'_flexible_templates_4_technology_0_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(134867,4049,'flexible_templates_4_technology_0_sub_heading','How?'),(134868,4049,'_flexible_templates_4_technology_0_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(134869,4049,'flexible_templates_4_technology_0_copy','Translucent is a data driven digital transformation company that uses technology to solve problems and modernize companies.'),(134870,4049,'_flexible_templates_4_technology_0_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(134871,4049,'flexible_templates_4_technology_0_back_heading','Data Driven'),(134872,4049,'_flexible_templates_4_technology_0_back_heading','field_6256b2b61a441'),(134873,4049,'flexible_templates_4_technology_0_icon','4038'),(134874,4049,'_flexible_templates_4_technology_0_icon','field_6256b2be1a442_field_62550482480cb'),(134875,4049,'flexible_templates_4_technology_0_back_copy','We work closely with companies to analyze their business and discover new opportunities they did not know existed.'),(134876,4049,'_flexible_templates_4_technology_0_back_copy','field_6256b2e31a443'),(134877,4049,'flexible_templates_4_technology_0_image',''),(134878,4049,'_flexible_templates_4_technology_0_image','field_6256b3011a444_field_6254fdc5efa2a'),(134879,4049,'flexible_templates_4_technology_0_cta','a:3:{s:5:\"title\";s:13:\"Start Solving\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(134880,4049,'_flexible_templates_4_technology_0_cta','field_6256ad66f89e9_field_62551b3e101c4'),(134881,4049,'flexible_templates_4_technology_1_heading','Automate Development Tasks'),(134882,4049,'_flexible_templates_4_technology_1_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(134883,4049,'flexible_templates_4_technology_1_sub_heading','How?'),(134884,4049,'_flexible_templates_4_technology_1_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(134885,4049,'flexible_templates_4_technology_1_copy','Simplify the intricacies of cloud applications by automating laborious tasks in the development process.'),(134886,4049,'_flexible_templates_4_technology_1_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(134887,4049,'flexible_templates_4_technology_1_back_heading',''),(134888,4049,'_flexible_templates_4_technology_1_back_heading','field_6256b2b61a441'),(134889,4049,'flexible_templates_4_technology_1_icon','4040'),(134890,4049,'_flexible_templates_4_technology_1_icon','field_6256b2be1a442_field_62550482480cb'),(134891,4049,'flexible_templates_4_technology_1_back_copy','Translucent is one of just four kubernetes certified partners in Canada!'),(134892,4049,'_flexible_templates_4_technology_1_back_copy','field_6256b2e31a443'),(134893,4049,'flexible_templates_4_technology_1_image','4039'),(134894,4049,'_flexible_templates_4_technology_1_image','field_6256b3011a444_field_6254fdc5efa2a'),(134895,4049,'flexible_templates_4_technology_1_cta','a:3:{s:5:\"title\";s:16:\"Start Automating\";s:3:\"url\";s:59:\"https://translucent.local/kubernetes-professional-services/\";s:6:\"target\";s:0:\"\";}'),(134896,4049,'_flexible_templates_4_technology_1_cta','field_6256ad66f89e9_field_62551b3e101c4'),(134897,4049,'flexible_templates_4_technology_2_heading','Build and Deploy Faster'),(134898,4049,'_flexible_templates_4_technology_2_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(134899,4049,'flexible_templates_4_technology_2_sub_heading','How?'),(134900,4049,'_flexible_templates_4_technology_2_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(134901,4049,'flexible_templates_4_technology_2_copy','Maximise earnings by building and deploying more features and faster.'),(134902,4049,'_flexible_templates_4_technology_2_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(134903,4049,'flexible_templates_4_technology_2_back_heading',''),(134904,4049,'_flexible_templates_4_technology_2_back_heading','field_6256b2b61a441'),(134905,4049,'flexible_templates_4_technology_2_icon','4042'),(134906,4049,'_flexible_templates_4_technology_2_icon','field_6256b2be1a442_field_62550482480cb'),(134907,4049,'flexible_templates_4_technology_2_back_copy','Devops is the heartbeat of all Translucent services, and Translucent IS Devops.'),(134908,4049,'_flexible_templates_4_technology_2_back_copy','field_6256b2e31a443'),(134909,4049,'flexible_templates_4_technology_2_image',''),(134910,4049,'_flexible_templates_4_technology_2_image','field_6256b3011a444_field_6254fdc5efa2a'),(134911,4049,'flexible_templates_4_technology_2_cta','a:3:{s:5:\"title\";s:17:\"Unlock Efficiency\";s:3:\"url\";s:46:\"https://translucent.local/cloud-native-devops/\";s:6:\"target\";s:0:\"\";}'),(134912,4049,'_flexible_templates_4_technology_2_cta','field_6256ad66f89e9_field_62551b3e101c4'),(134913,4049,'flexible_templates_4_technology_3_heading','Remain Secure as Possible'),(134914,4049,'_flexible_templates_4_technology_3_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(134915,4049,'flexible_templates_4_technology_3_sub_heading','How?'),(134916,4049,'_flexible_templates_4_technology_3_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(134917,4049,'flexible_templates_4_technology_3_copy','Reduce deliberate and incidental security vulnerabilities in your systems.'),(134918,4049,'_flexible_templates_4_technology_3_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(134919,4049,'flexible_templates_4_technology_3_back_heading','Zero Trust'),(134920,4049,'_flexible_templates_4_technology_3_back_heading','field_6256b2b61a441'),(134921,4049,'flexible_templates_4_technology_3_icon','4043'),(134922,4049,'_flexible_templates_4_technology_3_icon','field_6256b2be1a442_field_62550482480cb'),(134923,4049,'flexible_templates_4_technology_3_back_copy','We are partnered with the best security teams to offer full end to end services.'),(134924,4049,'_flexible_templates_4_technology_3_back_copy','field_6256b2e31a443'),(134925,4049,'flexible_templates_4_technology_3_image',''),(134926,4049,'_flexible_templates_4_technology_3_image','field_6256b3011a444_field_6254fdc5efa2a'),(134927,4049,'flexible_templates_4_technology_3_cta','a:3:{s:5:\"title\";s:20:\"Protect What Matters\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(134928,4049,'_flexible_templates_4_technology_3_cta','field_6256ad66f89e9_field_62551b3e101c4'),(134929,4049,'flexible_templates_4_technology','6'),(134930,4049,'_flexible_templates_4_technology','field_6256acf8f89e6'),(134931,4049,'flexible_templates_4_technology_4_heading','Propel Your Business into The Future'),(134932,4049,'_flexible_templates_4_technology_4_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(134933,4049,'flexible_templates_4_technology_4_sub_heading','How?'),(134934,4049,'_flexible_templates_4_technology_4_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(134935,4049,'flexible_templates_4_technology_4_copy','Build new systems in the cloud, or Modernize legacy data and applications by rebuilding or migrating to a value-driven platform. '),(134936,4049,'_flexible_templates_4_technology_4_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(134937,4049,'flexible_templates_4_technology_4_back_heading','Application Development'),(134938,4049,'_flexible_templates_4_technology_4_back_heading','field_6256b2b61a441'),(134939,4049,'flexible_templates_4_technology_4_icon','4047'),(134940,4049,'_flexible_templates_4_technology_4_icon','field_6256b2be1a442_field_62550482480cb'),(134941,4049,'flexible_templates_4_technology_4_back_copy','We develop intelligent apps for fintech, healthcare, and any other data-driven journey.'),(134942,4049,'_flexible_templates_4_technology_4_back_copy','field_6256b2e31a443'),(134943,4049,'flexible_templates_4_technology_4_image',''),(134944,4049,'_flexible_templates_4_technology_4_image','field_6256b3011a444_field_6254fdc5efa2a'),(134945,4049,'flexible_templates_4_technology_4_cta','a:3:{s:5:\"title\";s:14:\"Build It Right\";s:3:\"url\";s:63:\"https://translucent.local/cloud-native-application-development/\";s:6:\"target\";s:0:\"\";}'),(134946,4049,'_flexible_templates_4_technology_4_cta','field_6256ad66f89e9_field_62551b3e101c4'),(134947,4049,'flexible_templates_4_technology_5_heading','Make Decisions Faster'),(134948,4049,'_flexible_templates_4_technology_5_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(134949,4049,'flexible_templates_4_technology_5_sub_heading','How?'),(134950,4049,'_flexible_templates_4_technology_5_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(134951,4049,'flexible_templates_4_technology_5_copy','Discover anomalies and opportunities faster than human intelligence!'),(134952,4049,'_flexible_templates_4_technology_5_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(134953,4049,'flexible_templates_4_technology_5_back_heading',''),(134954,4049,'_flexible_templates_4_technology_5_back_heading','field_6256b2b61a441'),(134955,4049,'flexible_templates_4_technology_5_icon','4048'),(134956,4049,'_flexible_templates_4_technology_5_icon','field_6256b2be1a442_field_62550482480cb'),(134957,4049,'flexible_templates_4_technology_5_back_copy','Extend the boundaries of your business by solving problems faster.'),(134958,4049,'_flexible_templates_4_technology_5_back_copy','field_6256b2e31a443'),(134959,4049,'flexible_templates_4_technology_5_image',''),(134960,4049,'_flexible_templates_4_technology_5_image','field_6256b3011a444_field_6254fdc5efa2a'),(134961,4049,'flexible_templates_4_technology_5_cta','a:3:{s:5:\"title\";s:22:\"Solve Complex Problems\";s:3:\"url\";s:52:\"https://translucent.local/services/machine-learning/\";s:6:\"target\";s:6:\"_blank\";}'),(134962,4049,'_flexible_templates_4_technology_5_cta','field_6256ad66f89e9_field_62551b3e101c4'),(134966,4050,'_wp_attached_file','2022/05/blog_pic_1@2x-2.jpg'),(134967,4050,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:780;s:6:\"height\";i:560;s:4:\"file\";s:27:\"2022/05/blog_pic_1@2x-2.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"blog_pic_1@2x-2-300x215.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:215;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"blog_pic_1@2x-2-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:\"blog_pic_1@2x-2-768x551.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:27:\"blog_pic_1@2x-2-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(134968,4050,'_imagify_optimization_level','0'),(134969,4050,'_imagify_status','success'),(134970,4050,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:246089;s:14:\"optimized_size\";i:233429;s:7:\"percent\";d:5.14;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27143;s:14:\"optimized_size\";i:54316;s:7:\"percent\";d:-100.11;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:42362;s:14:\"optimized_size\";i:84822;s:7:\"percent\";d:-100.23;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4797;s:14:\"optimized_size\";i:9872;s:7:\"percent\";d:-105.8;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10530;s:14:\"optimized_size\";i:22086;s:7:\"percent\";d:-109.74;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:246089;s:14:\"optimized_size\";i:140476;s:7:\"percent\";d:42.92;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:10530;s:14:\"optimized_size\";i:9961;s:7:\"percent\";d:5.4;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4797;s:14:\"optimized_size\";i:4375;s:7:\"percent\";d:8.8;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:42362;s:14:\"optimized_size\";i:40817;s:7:\"percent\";d:3.65;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27143;s:14:\"optimized_size\";i:26096;s:7:\"percent\";d:3.86;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:661842;s:14:\"optimized_size\";i:626250;s:7:\"percent\";d:5.38;}}'),(134971,4051,'_wp_attached_file','2022/05/blog_pic_1@2x-1-scaled-1.jpg'),(134972,4051,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:821;s:4:\"file\";s:36:\"2022/05/blog_pic_1@2x-1-scaled-1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"blog_pic_1@2x-1-scaled-1-300x96.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"blog_pic_1@2x-1-scaled-1-1024x328.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"blog_pic_1@2x-1-scaled-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:36:\"blog_pic_1@2x-1-scaled-1-768x246.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"blog_pic_1@2x-1-scaled-1-1536x493.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:493;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:37:\"blog_pic_1@2x-1-scaled-1-2048x657.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:36:\"blog_pic_1@2x-1-scaled-1-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(134973,4051,'_imagify_optimization_level','0'),(134974,4051,'_imagify_status','success'),(134975,4051,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:139286;s:14:\"optimized_size\";i:132737;s:7:\"percent\";d:4.7;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22696;s:14:\"optimized_size\";i:44620;s:7:\"percent\";d:-96.6;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:97832;s:14:\"optimized_size\";i:187236;s:7:\"percent\";d:-91.39;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:63973;s:14:\"optimized_size\";i:124332;s:7:\"percent\";d:-94.35;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22832;s:14:\"optimized_size\";i:46726;s:7:\"percent\";d:-104.65;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4139;s:14:\"optimized_size\";i:7930;s:7:\"percent\";d:-91.59;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34703;s:14:\"optimized_size\";i:70120;s:7:\"percent\";d:-102.06;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5677;s:14:\"optimized_size\";i:11658;s:7:\"percent\";d:-105.35;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:139286;s:14:\"optimized_size\";i:261460;s:7:\"percent\";d:-87.71;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5677;s:14:\"optimized_size\";i:5250;s:7:\"percent\";d:7.52;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34703;s:14:\"optimized_size\";i:33487;s:7:\"percent\";d:3.5;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4139;s:14:\"optimized_size\";i:3775;s:7:\"percent\";d:8.79;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22832;s:14:\"optimized_size\";i:21981;s:7:\"percent\";d:3.73;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:63973;s:14:\"optimized_size\";i:61767;s:7:\"percent\";d:3.45;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:97832;s:14:\"optimized_size\";i:94114;s:7:\"percent\";d:3.8;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22696;s:14:\"optimized_size\";i:21702;s:7:\"percent\";d:4.38;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:782276;s:14:\"optimized_size\";i:1128895;s:7:\"percent\";d:-44.31;}}'),(134976,4052,'_wp_attached_file','2022/05/Group-8035-1.svg'),(134977,4053,'_wp_attached_file','2022/05/Group-8036.svg'),(134978,4054,'_wp_attached_file','2022/05/Group-8038.svg'),(134979,4028,'flexible_templates_5_image','4051'),(134980,4028,'_flexible_templates_5_image','field_6256dbdfc0c83_field_6254fdc5efa2a'),(134981,4028,'flexible_templates_5_mob_image','4050'),(134982,4028,'_flexible_templates_5_mob_image','field_6256dbeec0c84_field_6254fdcbefa2b'),(134983,4028,'flexible_templates_5_heading','Companies That We Work With'),(134984,4028,'_flexible_templates_5_heading','field_6256dc0cc0c85_field_6254fdb2efa27'),(134985,4028,'flexible_templates_5_technology_partner_0_heading','Teams looking for a trusted nearshore technology partner '),(134986,4028,'_flexible_templates_5_technology_partner_0_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(134987,4028,'flexible_templates_5_technology_partner_0_icon','4052'),(134988,4028,'_flexible_templates_5_technology_partner_0_icon','field_6256dc78c0c88_field_62550482480cb'),(134989,4028,'flexible_templates_5_technology_partner_0_copy','Your Dedicated Development Team. We bring the best people in the industry with various skills to develop and maintain the highest quality software.'),(134990,4028,'_flexible_templates_5_technology_partner_0_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(134991,4028,'flexible_templates_5_technology_partner_1_heading','Teams looking to a build state-of-the-art platform'),(134992,4028,'_flexible_templates_5_technology_partner_1_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(134993,4028,'flexible_templates_5_technology_partner_1_icon','4053'),(134994,4028,'_flexible_templates_5_technology_partner_1_icon','field_6256dc78c0c88_field_62550482480cb'),(134995,4028,'flexible_templates_5_technology_partner_1_copy','Industry-leading cloud native solutions that are backed by an award-winning process, teams, and production-ready data-driven platform.'),(134996,4028,'_flexible_templates_5_technology_partner_1_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(134997,4028,'flexible_templates_5_technology_partner_2_heading','Teams looking to outperform competition'),(134998,4028,'_flexible_templates_5_technology_partner_2_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(134999,4028,'flexible_templates_5_technology_partner_2_icon','4054'),(135000,4028,'_flexible_templates_5_technology_partner_2_icon','field_6256dc78c0c88_field_62550482480cb'),(135001,4028,'flexible_templates_5_technology_partner_2_copy','Gain a major competitive advantage by increasing speed to market by 20%, allowing you to make business moves more quickly.'),(135002,4028,'_flexible_templates_5_technology_partner_2_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(135003,4028,'flexible_templates_5_technology_partner','3'),(135004,4028,'_flexible_templates_5_technology_partner','field_6256dc3fc0c86'),(135005,4055,'flexible_templates','a:6:{i:0;s:19:\"cloud_native_banner\";i:1;s:35:\"cloud_native_expert_dedicated_teams\";i:2;s:39:\"cloud_native_solving_digital_challenges\";i:3;s:26:\"cloud_native_scale_demands\";i:4;s:22:\"cloud_native_ecosystem\";i:5;s:31:\"cloud_native_technology_partner\";}'),(135006,4055,'_flexible_templates','field_6254f4d84ef9b'),(135007,4055,'flexible_templates_0_image','4030'),(135008,4055,'_flexible_templates_0_image','field_62569b35f7c63_field_6254fdc5efa2a'),(135009,4055,'flexible_templates_0_icon','4013'),(135010,4055,'_flexible_templates_0_icon','field_62569b69f7c64_field_62550482480cb'),(135011,4055,'flexible_templates_0_heading','Solve Digital Challenges with a Complete Cloud Native Solution'),(135012,4055,'_flexible_templates_0_heading','field_62569b87f7c65_field_6254fdb2efa27'),(135013,4055,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(135014,4055,'_flexible_templates_0_sub_heading','field_62569ba5f7c66_field_6254fdbaefa28'),(135015,4055,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:23:\"Transform Your Business\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(135016,4055,'_flexible_templates_0_cta','field_62569bcff7c67_field_62551b3e101c4'),(135017,4055,'flexible_templates_1_image','4031'),(135018,4055,'_flexible_templates_1_image','field_6256a05dda66c_field_6254fdc5efa2a'),(135019,4055,'flexible_templates_1_heading','Expert dedicated teams for your cloud native project.'),(135020,4055,'_flexible_templates_1_heading','field_62569f6d3c0ad_field_6254fdb2efa27'),(135021,4055,'flexible_templates_1_sub_heading','DATA-DRIVEN TRUSTED TECHNOLOGY PARTNER'),(135022,4055,'_flexible_templates_1_sub_heading','field_62569f7a3c0ae_field_6254fdbaefa28'),(135023,4055,'flexible_templates_1_copy','Our expert software engineering teams develop intelligent apps for fintech, healthcare, automotive, and any other data-driven journey, with over 10 years of experience in large scale complex project. Enable your business to reflect its operations through technology while helping it become more dynamic, secure, and easier to scale by increasing speed to market. As a pioneer in cloud native application development we have a proven track record of solving digital transformation challenges for enterprises.'),(135024,4055,'_flexible_templates_1_copy','field_6256a175dc200_field_6254fdc0efa29'),(135025,4055,'flexible_templates_1_copy_long',''),(135026,4055,'_flexible_templates_1_copy_long','field_6256a026da66a'),(135027,4055,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:12:\"How We Do It\";s:3:\"url\";s:36:\"https://translucent.local/tek-world/\";s:6:\"target\";s:0:\"\";}'),(135028,4055,'_flexible_templates_1_cta','field_6256a03ada66b_field_62551b3e101c4'),(135029,4055,'flexible_templates_2_heading','Three paths to Cloud Native'),(135030,4055,'_flexible_templates_2_heading','field_6256a640dea7c_field_6254fdb2efa27'),(135031,4055,'flexible_templates_2_sub_heading','SOLVING DIGITAL CHALLENGES'),(135032,4055,'_flexible_templates_2_sub_heading','field_6256a66cdea7d_field_6254fdbaefa28'),(135033,4055,'flexible_templates_2_posts_grid_0_icon','4033'),(135034,4055,'_flexible_templates_2_posts_grid_0_icon','field_6256a6c0dea7f_field_62550482480cb'),(135035,4055,'flexible_templates_2_posts_grid_0_heading','Build'),(135036,4055,'_flexible_templates_2_posts_grid_0_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(135037,4055,'flexible_templates_2_posts_grid_0_copy','We\'re not just a software company. We\'re the people who help your business achieve its digital transformation vision. From strategy to implementation, we\'ll support you with our cloud native, data driven technology and digital transformation expertise. '),(135038,4055,'_flexible_templates_2_posts_grid_0_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(135039,4055,'flexible_templates_2_posts_grid_0_cta',''),(135040,4055,'_flexible_templates_2_posts_grid_0_cta','field_6256a6f8dea82_field_62551b3e101c4'),(135041,4055,'flexible_templates_2_posts_grid_1_icon','4034'),(135042,4055,'_flexible_templates_2_posts_grid_1_icon','field_6256a6c0dea7f_field_62550482480cb'),(135043,4055,'flexible_templates_2_posts_grid_1_heading','ReBuild'),(135044,4055,'_flexible_templates_2_posts_grid_1_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(135045,4055,'flexible_templates_2_posts_grid_1_copy','Break free from the limitations of your old legacy technology by rebuilding your business critical application components without affecting the original specifications, requirements, and business logic. This will improve scalability, maintainability, and reliability.\r\n'),(135046,4055,'_flexible_templates_2_posts_grid_1_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(135047,4055,'flexible_templates_2_posts_grid_1_cta',''),(135048,4055,'_flexible_templates_2_posts_grid_1_cta','field_6256a6f8dea82_field_62551b3e101c4'),(135049,4055,'flexible_templates_2_posts_grid_2_icon','4035'),(135050,4055,'_flexible_templates_2_posts_grid_2_icon','field_6256a6c0dea7f_field_62550482480cb'),(135051,4055,'flexible_templates_2_posts_grid_2_heading','RePlatform'),(135052,4055,'_flexible_templates_2_posts_grid_2_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(135053,4055,'flexible_templates_2_posts_grid_2_copy','Migrate your old application to a new runtime platform. When upgrading to a cloud native application platform, we repurpose the useable components from your legacy technology, and minimize changes to code and structure.'),(135054,4055,'_flexible_templates_2_posts_grid_2_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(135055,4055,'flexible_templates_2_posts_grid_2_cta',''),(135056,4055,'_flexible_templates_2_posts_grid_2_cta','field_6256a6f8dea82_field_62551b3e101c4'),(135057,4055,'flexible_templates_2_posts_grid','3'),(135058,4055,'_flexible_templates_2_posts_grid','field_6256a698dea7e'),(135059,4055,'flexible_templates_2_cta',''),(135060,4055,'_flexible_templates_2_cta','field_6256a725dea83_field_62551b3e101c4'),(135061,4055,'flexible_templates_3_heading','Scale According to your Demands'),(135062,4055,'_flexible_templates_3_heading','field_6256aa0c6187a_field_6254fdb2efa27'),(135063,4055,'flexible_templates_3_scale_demands_0_icon',''),(135064,4055,'_flexible_templates_3_scale_demands_0_icon','field_6256aa4e6187c_field_62550482480cb'),(135065,4055,'flexible_templates_3_scale_demands_0_heading','TEKTeams'),(135066,4055,'_flexible_templates_3_scale_demands_0_heading','field_6256aa866187d_field_6254fdb2efa27'),(135067,4055,'flexible_templates_3_scale_demands_0_copy','On-demand resources that may be used whenever and wherever you need them. Increase your workforce by partnering with teams tailored to your business needs.'),(135068,4055,'_flexible_templates_3_scale_demands_0_copy','field_6256aa986187e_field_6254fdc0efa29'),(135069,4055,'flexible_templates_3_scale_demands_0_cta','a:3:{s:5:\"title\";s:16:\"Scale Your Teams\";s:3:\"url\";s:34:\"https://translucent.local/tekteams\";s:6:\"target\";s:0:\"\";}'),(135070,4055,'_flexible_templates_3_scale_demands_0_cta','field_6256aab66187f_field_62551b3e101c4'),(135071,4055,'flexible_templates_3_scale_demands_1_icon',''),(135072,4055,'_flexible_templates_3_scale_demands_1_icon','field_6256aa4e6187c_field_62550482480cb'),(135073,4055,'flexible_templates_3_scale_demands_1_heading','TEKStack AI'),(135074,4055,'_flexible_templates_3_scale_demands_1_heading','field_6256aa866187d_field_6254fdb2efa27'),(135075,4055,'flexible_templates_3_scale_demands_1_copy','TEKStack AI has perfected the complex process of working with production ready tools that have been shown to save time and money. Reduce your time to market by more than 20%.'),(135076,4055,'_flexible_templates_3_scale_demands_1_copy','field_6256aa986187e_field_6254fdc0efa29'),(135077,4055,'flexible_templates_3_scale_demands_1_cta','a:3:{s:5:\"title\";s:20:\"Speed Up Development\";s:3:\"url\";s:38:\"https://translucent.local/tekstack-ai/\";s:6:\"target\";s:0:\"\";}'),(135078,4055,'_flexible_templates_3_scale_demands_1_cta','field_6256aab66187f_field_62551b3e101c4'),(135079,4055,'flexible_templates_3_scale_demands_2_icon',''),(135080,4055,'_flexible_templates_3_scale_demands_2_icon','field_6256aa4e6187c_field_62550482480cb'),(135081,4055,'flexible_templates_3_scale_demands_2_heading','TEKProcess'),(135082,4055,'_flexible_templates_3_scale_demands_2_heading','field_6256aa866187d_field_6254fdb2efa27'),(135083,4055,'flexible_templates_3_scale_demands_2_copy','Our approach to cloud native development will organize your entire cloud native development process ​from conception to steady state and support, known as TEKProcess.'),(135084,4055,'_flexible_templates_3_scale_demands_2_copy','field_6256aa986187e_field_6254fdc0efa29'),(135085,4055,'flexible_templates_3_scale_demands_2_cta','a:3:{s:5:\"title\";s:24:\"Optimize Your Operations\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(135086,4055,'_flexible_templates_3_scale_demands_2_cta','field_6256aab66187f_field_62551b3e101c4'),(135087,4055,'flexible_templates_3_scale_demands','3'),(135088,4055,'_flexible_templates_3_scale_demands','field_6256aa366187b'),(135089,4055,'flexible_templates_4_heading','Reflect Your Operations Through Technology'),(135090,4055,'_flexible_templates_4_heading','field_6256acb5f89e4_field_6254fdb2efa27'),(135091,4055,'flexible_templates_4_sub_heading','CLOUD NATIVE ECOSYSTEM'),(135092,4055,'_flexible_templates_4_sub_heading','field_6256acc6f89e5_field_6254fdbaefa28'),(135093,4055,'flexible_templates_4_icon','4041'),(135094,4055,'_flexible_templates_4_icon','field_6256db0a20c28_field_62550482480cb'),(135095,4055,'flexible_templates_4_image',''),(135096,4055,'_flexible_templates_4_image','field_6257293fdf3c8_field_6254fdc5efa2a'),(135097,4055,'flexible_templates_4_technology_0_heading','Solve Problems Quick'),(135098,4055,'_flexible_templates_4_technology_0_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135099,4055,'flexible_templates_4_technology_0_sub_heading','How?'),(135100,4055,'_flexible_templates_4_technology_0_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135101,4055,'flexible_templates_4_technology_0_copy','Translucent is a data driven digital transformation company that uses technology to solve problems and modernize companies.'),(135102,4055,'_flexible_templates_4_technology_0_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135103,4055,'flexible_templates_4_technology_0_back_heading','Data Driven'),(135104,4055,'_flexible_templates_4_technology_0_back_heading','field_6256b2b61a441'),(135105,4055,'flexible_templates_4_technology_0_icon','4038'),(135106,4055,'_flexible_templates_4_technology_0_icon','field_6256b2be1a442_field_62550482480cb'),(135107,4055,'flexible_templates_4_technology_0_back_copy','We work closely with companies to analyze their business and discover new opportunities they did not know existed.'),(135108,4055,'_flexible_templates_4_technology_0_back_copy','field_6256b2e31a443'),(135109,4055,'flexible_templates_4_technology_0_image',''),(135110,4055,'_flexible_templates_4_technology_0_image','field_6256b3011a444_field_6254fdc5efa2a'),(135111,4055,'flexible_templates_4_technology_0_cta','a:3:{s:5:\"title\";s:13:\"Start Solving\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(135112,4055,'_flexible_templates_4_technology_0_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135113,4055,'flexible_templates_4_technology_1_heading','Automate Development Tasks'),(135114,4055,'_flexible_templates_4_technology_1_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135115,4055,'flexible_templates_4_technology_1_sub_heading','How?'),(135116,4055,'_flexible_templates_4_technology_1_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135117,4055,'flexible_templates_4_technology_1_copy','Simplify the intricacies of cloud applications by automating laborious tasks in the development process.'),(135118,4055,'_flexible_templates_4_technology_1_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135119,4055,'flexible_templates_4_technology_1_back_heading',''),(135120,4055,'_flexible_templates_4_technology_1_back_heading','field_6256b2b61a441'),(135121,4055,'flexible_templates_4_technology_1_icon','4040'),(135122,4055,'_flexible_templates_4_technology_1_icon','field_6256b2be1a442_field_62550482480cb'),(135123,4055,'flexible_templates_4_technology_1_back_copy','Translucent is one of just four kubernetes certified partners in Canada!'),(135124,4055,'_flexible_templates_4_technology_1_back_copy','field_6256b2e31a443'),(135125,4055,'flexible_templates_4_technology_1_image','4039'),(135126,4055,'_flexible_templates_4_technology_1_image','field_6256b3011a444_field_6254fdc5efa2a'),(135127,4055,'flexible_templates_4_technology_1_cta','a:3:{s:5:\"title\";s:16:\"Start Automating\";s:3:\"url\";s:59:\"https://translucent.local/kubernetes-professional-services/\";s:6:\"target\";s:0:\"\";}'),(135128,4055,'_flexible_templates_4_technology_1_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135129,4055,'flexible_templates_4_technology_2_heading','Build and Deploy Faster'),(135130,4055,'_flexible_templates_4_technology_2_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135131,4055,'flexible_templates_4_technology_2_sub_heading','How?'),(135132,4055,'_flexible_templates_4_technology_2_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135133,4055,'flexible_templates_4_technology_2_copy','Maximise earnings by building and deploying more features and faster.'),(135134,4055,'_flexible_templates_4_technology_2_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135135,4055,'flexible_templates_4_technology_2_back_heading',''),(135136,4055,'_flexible_templates_4_technology_2_back_heading','field_6256b2b61a441'),(135137,4055,'flexible_templates_4_technology_2_icon','4042'),(135138,4055,'_flexible_templates_4_technology_2_icon','field_6256b2be1a442_field_62550482480cb'),(135139,4055,'flexible_templates_4_technology_2_back_copy','Devops is the heartbeat of all Translucent services, and Translucent IS Devops.'),(135140,4055,'_flexible_templates_4_technology_2_back_copy','field_6256b2e31a443'),(135141,4055,'flexible_templates_4_technology_2_image',''),(135142,4055,'_flexible_templates_4_technology_2_image','field_6256b3011a444_field_6254fdc5efa2a'),(135143,4055,'flexible_templates_4_technology_2_cta','a:3:{s:5:\"title\";s:17:\"Unlock Efficiency\";s:3:\"url\";s:46:\"https://translucent.local/cloud-native-devops/\";s:6:\"target\";s:0:\"\";}'),(135144,4055,'_flexible_templates_4_technology_2_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135145,4055,'flexible_templates_4_technology_3_heading','Remain Secure as Possible'),(135146,4055,'_flexible_templates_4_technology_3_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135147,4055,'flexible_templates_4_technology_3_sub_heading','How?'),(135148,4055,'_flexible_templates_4_technology_3_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135149,4055,'flexible_templates_4_technology_3_copy','Reduce deliberate and incidental security vulnerabilities in your systems.'),(135150,4055,'_flexible_templates_4_technology_3_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135151,4055,'flexible_templates_4_technology_3_back_heading','Zero Trust'),(135152,4055,'_flexible_templates_4_technology_3_back_heading','field_6256b2b61a441'),(135153,4055,'flexible_templates_4_technology_3_icon','4043'),(135154,4055,'_flexible_templates_4_technology_3_icon','field_6256b2be1a442_field_62550482480cb'),(135155,4055,'flexible_templates_4_technology_3_back_copy','We are partnered with the best security teams to offer full end to end services.'),(135156,4055,'_flexible_templates_4_technology_3_back_copy','field_6256b2e31a443'),(135157,4055,'flexible_templates_4_technology_3_image',''),(135158,4055,'_flexible_templates_4_technology_3_image','field_6256b3011a444_field_6254fdc5efa2a'),(135159,4055,'flexible_templates_4_technology_3_cta','a:3:{s:5:\"title\";s:20:\"Protect What Matters\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(135160,4055,'_flexible_templates_4_technology_3_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135161,4055,'flexible_templates_4_technology','6'),(135162,4055,'_flexible_templates_4_technology','field_6256acf8f89e6'),(135163,4055,'flexible_templates_4_technology_4_heading','Propel Your Business into The Future'),(135164,4055,'_flexible_templates_4_technology_4_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135165,4055,'flexible_templates_4_technology_4_sub_heading','How?'),(135166,4055,'_flexible_templates_4_technology_4_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135167,4055,'flexible_templates_4_technology_4_copy','Build new systems in the cloud, or Modernize legacy data and applications by rebuilding or migrating to a value-driven platform. '),(135168,4055,'_flexible_templates_4_technology_4_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135169,4055,'flexible_templates_4_technology_4_back_heading','Application Development'),(135170,4055,'_flexible_templates_4_technology_4_back_heading','field_6256b2b61a441'),(135171,4055,'flexible_templates_4_technology_4_icon','4047'),(135172,4055,'_flexible_templates_4_technology_4_icon','field_6256b2be1a442_field_62550482480cb'),(135173,4055,'flexible_templates_4_technology_4_back_copy','We develop intelligent apps for fintech, healthcare, and any other data-driven journey.'),(135174,4055,'_flexible_templates_4_technology_4_back_copy','field_6256b2e31a443'),(135175,4055,'flexible_templates_4_technology_4_image',''),(135176,4055,'_flexible_templates_4_technology_4_image','field_6256b3011a444_field_6254fdc5efa2a'),(135177,4055,'flexible_templates_4_technology_4_cta','a:3:{s:5:\"title\";s:14:\"Build It Right\";s:3:\"url\";s:63:\"https://translucent.local/cloud-native-application-development/\";s:6:\"target\";s:0:\"\";}'),(135178,4055,'_flexible_templates_4_technology_4_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135179,4055,'flexible_templates_4_technology_5_heading','Make Decisions Faster'),(135180,4055,'_flexible_templates_4_technology_5_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135181,4055,'flexible_templates_4_technology_5_sub_heading','How?'),(135182,4055,'_flexible_templates_4_technology_5_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135183,4055,'flexible_templates_4_technology_5_copy','Discover anomalies and opportunities faster than human intelligence!'),(135184,4055,'_flexible_templates_4_technology_5_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135185,4055,'flexible_templates_4_technology_5_back_heading',''),(135186,4055,'_flexible_templates_4_technology_5_back_heading','field_6256b2b61a441'),(135187,4055,'flexible_templates_4_technology_5_icon','4048'),(135188,4055,'_flexible_templates_4_technology_5_icon','field_6256b2be1a442_field_62550482480cb'),(135189,4055,'flexible_templates_4_technology_5_back_copy','Extend the boundaries of your business by solving problems faster.'),(135190,4055,'_flexible_templates_4_technology_5_back_copy','field_6256b2e31a443'),(135191,4055,'flexible_templates_4_technology_5_image',''),(135192,4055,'_flexible_templates_4_technology_5_image','field_6256b3011a444_field_6254fdc5efa2a'),(135193,4055,'flexible_templates_4_technology_5_cta','a:3:{s:5:\"title\";s:22:\"Solve Complex Problems\";s:3:\"url\";s:52:\"https://translucent.local/services/machine-learning/\";s:6:\"target\";s:6:\"_blank\";}'),(135194,4055,'_flexible_templates_4_technology_5_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135195,4055,'flexible_templates_5_image','4051'),(135196,4055,'_flexible_templates_5_image','field_6256dbdfc0c83_field_6254fdc5efa2a'),(135197,4055,'flexible_templates_5_mob_image','4050'),(135198,4055,'_flexible_templates_5_mob_image','field_6256dbeec0c84_field_6254fdcbefa2b'),(135199,4055,'flexible_templates_5_heading','Companies That We Work With'),(135200,4055,'_flexible_templates_5_heading','field_6256dc0cc0c85_field_6254fdb2efa27'),(135201,4055,'flexible_templates_5_technology_partner_0_heading','Teams looking for a trusted nearshore technology partner '),(135202,4055,'_flexible_templates_5_technology_partner_0_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(135203,4055,'flexible_templates_5_technology_partner_0_icon','4052'),(135204,4055,'_flexible_templates_5_technology_partner_0_icon','field_6256dc78c0c88_field_62550482480cb'),(135205,4055,'flexible_templates_5_technology_partner_0_copy','Your Dedicated Development Team. We bring the best people in the industry with various skills to develop and maintain the highest quality software.'),(135206,4055,'_flexible_templates_5_technology_partner_0_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(135207,4055,'flexible_templates_5_technology_partner_1_heading','Teams looking to a build state-of-the-art platform'),(135208,4055,'_flexible_templates_5_technology_partner_1_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(135209,4055,'flexible_templates_5_technology_partner_1_icon','4053'),(135210,4055,'_flexible_templates_5_technology_partner_1_icon','field_6256dc78c0c88_field_62550482480cb'),(135211,4055,'flexible_templates_5_technology_partner_1_copy','Industry-leading cloud native solutions that are backed by an award-winning process, teams, and production-ready data-driven platform.'),(135212,4055,'_flexible_templates_5_technology_partner_1_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(135213,4055,'flexible_templates_5_technology_partner_2_heading','Teams looking to outperform competition'),(135214,4055,'_flexible_templates_5_technology_partner_2_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(135215,4055,'flexible_templates_5_technology_partner_2_icon','4054'),(135216,4055,'_flexible_templates_5_technology_partner_2_icon','field_6256dc78c0c88_field_62550482480cb'),(135217,4055,'flexible_templates_5_technology_partner_2_copy','Gain a major competitive advantage by increasing speed to market by 20%, allowing you to make business moves more quickly.'),(135218,4055,'_flexible_templates_5_technology_partner_2_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(135219,4055,'flexible_templates_5_technology_partner','3'),(135220,4055,'_flexible_templates_5_technology_partner','field_6256dc3fc0c86'),(135224,4028,'flexible_templates_6_heading','WHY TRANSLUCENT'),(135225,4028,'_flexible_templates_6_heading','field_62590b7cdf000_field_6254fdb2efa27'),(135226,4028,'flexible_templates_6_sub_heading','How Translucent Powered by TEK Differs From Alternative Solutions'),(135227,4028,'_flexible_templates_6_sub_heading','field_62590b8bdf001_field_6254fdbaefa28'),(135228,4028,'flexible_templates_6_icon','4013'),(135229,4028,'_flexible_templates_6_icon','field_62590bc5df002_field_62550482480cb'),(135230,4028,'flexible_templates_6_differential_translucent_header_0_heading','Your needs'),(135231,4028,'_flexible_templates_6_differential_translucent_header_0_heading','field_62590c01df004_field_6254fdb2efa27'),(135232,4028,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(135233,4028,'_flexible_templates_6_differential_translucent_header_0_color','field_62590c11df005'),(135234,4028,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(135235,4028,'_flexible_templates_6_differential_translucent_header_1_heading','field_62590c01df004_field_6254fdb2efa27'),(135236,4028,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(135237,4028,'_flexible_templates_6_differential_translucent_header_1_color','field_62590c11df005'),(135238,4028,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore teams'),(135239,4028,'_flexible_templates_6_differential_translucent_header_2_heading','field_62590c01df004_field_6254fdb2efa27'),(135240,4028,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(135241,4028,'_flexible_templates_6_differential_translucent_header_2_color','field_62590c11df005'),(135242,4028,'flexible_templates_6_differential_translucent_header_3_heading','Hiring in-house developers'),(135243,4028,'_flexible_templates_6_differential_translucent_header_3_heading','field_62590c01df004_field_6254fdb2efa27'),(135244,4028,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(135245,4028,'_flexible_templates_6_differential_translucent_header_3_color','field_62590c11df005'),(135246,4028,'flexible_templates_6_differential_translucent_header','5'),(135247,4028,'_flexible_templates_6_differential_translucent_header','field_62590bf9df003'),(135248,4028,'flexible_templates_6_differential_translucent','15'),(135249,4028,'_flexible_templates_6_differential_translucent','field_62590c30df006'),(135250,4056,'flexible_templates','a:7:{i:0;s:19:\"cloud_native_banner\";i:1;s:35:\"cloud_native_expert_dedicated_teams\";i:2;s:39:\"cloud_native_solving_digital_challenges\";i:3;s:26:\"cloud_native_scale_demands\";i:4;s:22:\"cloud_native_ecosystem\";i:5;s:31:\"cloud_native_technology_partner\";i:6;s:37:\"cloud_native_translucent_differential\";}'),(135251,4056,'_flexible_templates','field_6254f4d84ef9b'),(135252,4056,'flexible_templates_0_image','4030'),(135253,4056,'_flexible_templates_0_image','field_62569b35f7c63_field_6254fdc5efa2a'),(135254,4056,'flexible_templates_0_icon','4013'),(135255,4056,'_flexible_templates_0_icon','field_62569b69f7c64_field_62550482480cb'),(135256,4056,'flexible_templates_0_heading','Solve Digital Challenges with a Complete Cloud Native Solution'),(135257,4056,'_flexible_templates_0_heading','field_62569b87f7c65_field_6254fdb2efa27'),(135258,4056,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(135259,4056,'_flexible_templates_0_sub_heading','field_62569ba5f7c66_field_6254fdbaefa28'),(135260,4056,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:23:\"Transform Your Business\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(135261,4056,'_flexible_templates_0_cta','field_62569bcff7c67_field_62551b3e101c4'),(135262,4056,'flexible_templates_1_image','4031'),(135263,4056,'_flexible_templates_1_image','field_6256a05dda66c_field_6254fdc5efa2a'),(135264,4056,'flexible_templates_1_heading','Expert dedicated teams for your cloud native project.'),(135265,4056,'_flexible_templates_1_heading','field_62569f6d3c0ad_field_6254fdb2efa27'),(135266,4056,'flexible_templates_1_sub_heading','DATA-DRIVEN TRUSTED TECHNOLOGY PARTNER'),(135267,4056,'_flexible_templates_1_sub_heading','field_62569f7a3c0ae_field_6254fdbaefa28'),(135268,4056,'flexible_templates_1_copy','Our expert software engineering teams develop intelligent apps for fintech, healthcare, automotive, and any other data-driven journey, with over 10 years of experience in large scale complex project. Enable your business to reflect its operations through technology while helping it become more dynamic, secure, and easier to scale by increasing speed to market. As a pioneer in cloud native application development we have a proven track record of solving digital transformation challenges for enterprises.'),(135269,4056,'_flexible_templates_1_copy','field_6256a175dc200_field_6254fdc0efa29'),(135270,4056,'flexible_templates_1_copy_long',''),(135271,4056,'_flexible_templates_1_copy_long','field_6256a026da66a'),(135272,4056,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:12:\"How We Do It\";s:3:\"url\";s:36:\"https://translucent.local/tek-world/\";s:6:\"target\";s:0:\"\";}'),(135273,4056,'_flexible_templates_1_cta','field_6256a03ada66b_field_62551b3e101c4'),(135274,4056,'flexible_templates_2_heading','Three paths to Cloud Native'),(135275,4056,'_flexible_templates_2_heading','field_6256a640dea7c_field_6254fdb2efa27'),(135276,4056,'flexible_templates_2_sub_heading','SOLVING DIGITAL CHALLENGES'),(135277,4056,'_flexible_templates_2_sub_heading','field_6256a66cdea7d_field_6254fdbaefa28'),(135278,4056,'flexible_templates_2_posts_grid_0_icon','4033'),(135279,4056,'_flexible_templates_2_posts_grid_0_icon','field_6256a6c0dea7f_field_62550482480cb'),(135280,4056,'flexible_templates_2_posts_grid_0_heading','Build'),(135281,4056,'_flexible_templates_2_posts_grid_0_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(135282,4056,'flexible_templates_2_posts_grid_0_copy','We\'re not just a software company. We\'re the people who help your business achieve its digital transformation vision. From strategy to implementation, we\'ll support you with our cloud native, data driven technology and digital transformation expertise. '),(135283,4056,'_flexible_templates_2_posts_grid_0_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(135284,4056,'flexible_templates_2_posts_grid_0_cta',''),(135285,4056,'_flexible_templates_2_posts_grid_0_cta','field_6256a6f8dea82_field_62551b3e101c4'),(135286,4056,'flexible_templates_2_posts_grid_1_icon','4034'),(135287,4056,'_flexible_templates_2_posts_grid_1_icon','field_6256a6c0dea7f_field_62550482480cb'),(135288,4056,'flexible_templates_2_posts_grid_1_heading','ReBuild'),(135289,4056,'_flexible_templates_2_posts_grid_1_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(135290,4056,'flexible_templates_2_posts_grid_1_copy','Break free from the limitations of your old legacy technology by rebuilding your business critical application components without affecting the original specifications, requirements, and business logic. This will improve scalability, maintainability, and reliability.\r\n'),(135291,4056,'_flexible_templates_2_posts_grid_1_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(135292,4056,'flexible_templates_2_posts_grid_1_cta',''),(135293,4056,'_flexible_templates_2_posts_grid_1_cta','field_6256a6f8dea82_field_62551b3e101c4'),(135294,4056,'flexible_templates_2_posts_grid_2_icon','4035'),(135295,4056,'_flexible_templates_2_posts_grid_2_icon','field_6256a6c0dea7f_field_62550482480cb'),(135296,4056,'flexible_templates_2_posts_grid_2_heading','RePlatform'),(135297,4056,'_flexible_templates_2_posts_grid_2_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(135298,4056,'flexible_templates_2_posts_grid_2_copy','Migrate your old application to a new runtime platform. When upgrading to a cloud native application platform, we repurpose the useable components from your legacy technology, and minimize changes to code and structure.'),(135299,4056,'_flexible_templates_2_posts_grid_2_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(135300,4056,'flexible_templates_2_posts_grid_2_cta',''),(135301,4056,'_flexible_templates_2_posts_grid_2_cta','field_6256a6f8dea82_field_62551b3e101c4'),(135302,4056,'flexible_templates_2_posts_grid','3'),(135303,4056,'_flexible_templates_2_posts_grid','field_6256a698dea7e'),(135304,4056,'flexible_templates_2_cta',''),(135305,4056,'_flexible_templates_2_cta','field_6256a725dea83_field_62551b3e101c4'),(135306,4056,'flexible_templates_3_heading','Scale According to your Demands'),(135307,4056,'_flexible_templates_3_heading','field_6256aa0c6187a_field_6254fdb2efa27'),(135308,4056,'flexible_templates_3_scale_demands_0_icon',''),(135309,4056,'_flexible_templates_3_scale_demands_0_icon','field_6256aa4e6187c_field_62550482480cb'),(135310,4056,'flexible_templates_3_scale_demands_0_heading','TEKTeams'),(135311,4056,'_flexible_templates_3_scale_demands_0_heading','field_6256aa866187d_field_6254fdb2efa27'),(135312,4056,'flexible_templates_3_scale_demands_0_copy','On-demand resources that may be used whenever and wherever you need them. Increase your workforce by partnering with teams tailored to your business needs.'),(135313,4056,'_flexible_templates_3_scale_demands_0_copy','field_6256aa986187e_field_6254fdc0efa29'),(135314,4056,'flexible_templates_3_scale_demands_0_cta','a:3:{s:5:\"title\";s:16:\"Scale Your Teams\";s:3:\"url\";s:34:\"https://translucent.local/tekteams\";s:6:\"target\";s:0:\"\";}'),(135315,4056,'_flexible_templates_3_scale_demands_0_cta','field_6256aab66187f_field_62551b3e101c4'),(135316,4056,'flexible_templates_3_scale_demands_1_icon',''),(135317,4056,'_flexible_templates_3_scale_demands_1_icon','field_6256aa4e6187c_field_62550482480cb'),(135318,4056,'flexible_templates_3_scale_demands_1_heading','TEKStack AI'),(135319,4056,'_flexible_templates_3_scale_demands_1_heading','field_6256aa866187d_field_6254fdb2efa27'),(135320,4056,'flexible_templates_3_scale_demands_1_copy','TEKStack AI has perfected the complex process of working with production ready tools that have been shown to save time and money. Reduce your time to market by more than 20%.'),(135321,4056,'_flexible_templates_3_scale_demands_1_copy','field_6256aa986187e_field_6254fdc0efa29'),(135322,4056,'flexible_templates_3_scale_demands_1_cta','a:3:{s:5:\"title\";s:20:\"Speed Up Development\";s:3:\"url\";s:38:\"https://translucent.local/tekstack-ai/\";s:6:\"target\";s:0:\"\";}'),(135323,4056,'_flexible_templates_3_scale_demands_1_cta','field_6256aab66187f_field_62551b3e101c4'),(135324,4056,'flexible_templates_3_scale_demands_2_icon',''),(135325,4056,'_flexible_templates_3_scale_demands_2_icon','field_6256aa4e6187c_field_62550482480cb'),(135326,4056,'flexible_templates_3_scale_demands_2_heading','TEKProcess'),(135327,4056,'_flexible_templates_3_scale_demands_2_heading','field_6256aa866187d_field_6254fdb2efa27'),(135328,4056,'flexible_templates_3_scale_demands_2_copy','Our approach to cloud native development will organize your entire cloud native development process ​from conception to steady state and support, known as TEKProcess.'),(135329,4056,'_flexible_templates_3_scale_demands_2_copy','field_6256aa986187e_field_6254fdc0efa29'),(135330,4056,'flexible_templates_3_scale_demands_2_cta','a:3:{s:5:\"title\";s:24:\"Optimize Your Operations\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(135331,4056,'_flexible_templates_3_scale_demands_2_cta','field_6256aab66187f_field_62551b3e101c4'),(135332,4056,'flexible_templates_3_scale_demands','3'),(135333,4056,'_flexible_templates_3_scale_demands','field_6256aa366187b'),(135334,4056,'flexible_templates_4_heading','Reflect Your Operations Through Technology'),(135335,4056,'_flexible_templates_4_heading','field_6256acb5f89e4_field_6254fdb2efa27'),(135336,4056,'flexible_templates_4_sub_heading','CLOUD NATIVE ECOSYSTEM'),(135337,4056,'_flexible_templates_4_sub_heading','field_6256acc6f89e5_field_6254fdbaefa28'),(135338,4056,'flexible_templates_4_icon','4041'),(135339,4056,'_flexible_templates_4_icon','field_6256db0a20c28_field_62550482480cb'),(135340,4056,'flexible_templates_4_image',''),(135341,4056,'_flexible_templates_4_image','field_6257293fdf3c8_field_6254fdc5efa2a'),(135342,4056,'flexible_templates_4_technology_0_heading','Solve Problems Quick'),(135343,4056,'_flexible_templates_4_technology_0_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135344,4056,'flexible_templates_4_technology_0_sub_heading','How?'),(135345,4056,'_flexible_templates_4_technology_0_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135346,4056,'flexible_templates_4_technology_0_copy','Translucent is a data driven digital transformation company that uses technology to solve problems and modernize companies.'),(135347,4056,'_flexible_templates_4_technology_0_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135348,4056,'flexible_templates_4_technology_0_back_heading','Data Driven'),(135349,4056,'_flexible_templates_4_technology_0_back_heading','field_6256b2b61a441'),(135350,4056,'flexible_templates_4_technology_0_icon','4038'),(135351,4056,'_flexible_templates_4_technology_0_icon','field_6256b2be1a442_field_62550482480cb'),(135352,4056,'flexible_templates_4_technology_0_back_copy','We work closely with companies to analyze their business and discover new opportunities they did not know existed.'),(135353,4056,'_flexible_templates_4_technology_0_back_copy','field_6256b2e31a443'),(135354,4056,'flexible_templates_4_technology_0_image',''),(135355,4056,'_flexible_templates_4_technology_0_image','field_6256b3011a444_field_6254fdc5efa2a'),(135356,4056,'flexible_templates_4_technology_0_cta','a:3:{s:5:\"title\";s:13:\"Start Solving\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(135357,4056,'_flexible_templates_4_technology_0_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135358,4056,'flexible_templates_4_technology_1_heading','Automate Development Tasks'),(135359,4056,'_flexible_templates_4_technology_1_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135360,4056,'flexible_templates_4_technology_1_sub_heading','How?'),(135361,4056,'_flexible_templates_4_technology_1_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135362,4056,'flexible_templates_4_technology_1_copy','Simplify the intricacies of cloud applications by automating laborious tasks in the development process.'),(135363,4056,'_flexible_templates_4_technology_1_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135364,4056,'flexible_templates_4_technology_1_back_heading',''),(135365,4056,'_flexible_templates_4_technology_1_back_heading','field_6256b2b61a441'),(135366,4056,'flexible_templates_4_technology_1_icon','4040'),(135367,4056,'_flexible_templates_4_technology_1_icon','field_6256b2be1a442_field_62550482480cb'),(135368,4056,'flexible_templates_4_technology_1_back_copy','Translucent is one of just four kubernetes certified partners in Canada!'),(135369,4056,'_flexible_templates_4_technology_1_back_copy','field_6256b2e31a443'),(135370,4056,'flexible_templates_4_technology_1_image','4039'),(135371,4056,'_flexible_templates_4_technology_1_image','field_6256b3011a444_field_6254fdc5efa2a'),(135372,4056,'flexible_templates_4_technology_1_cta','a:3:{s:5:\"title\";s:16:\"Start Automating\";s:3:\"url\";s:59:\"https://translucent.local/kubernetes-professional-services/\";s:6:\"target\";s:0:\"\";}'),(135373,4056,'_flexible_templates_4_technology_1_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135374,4056,'flexible_templates_4_technology_2_heading','Build and Deploy Faster'),(135375,4056,'_flexible_templates_4_technology_2_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135376,4056,'flexible_templates_4_technology_2_sub_heading','How?'),(135377,4056,'_flexible_templates_4_technology_2_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135378,4056,'flexible_templates_4_technology_2_copy','Maximise earnings by building and deploying more features and faster.'),(135379,4056,'_flexible_templates_4_technology_2_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135380,4056,'flexible_templates_4_technology_2_back_heading',''),(135381,4056,'_flexible_templates_4_technology_2_back_heading','field_6256b2b61a441'),(135382,4056,'flexible_templates_4_technology_2_icon','4042'),(135383,4056,'_flexible_templates_4_technology_2_icon','field_6256b2be1a442_field_62550482480cb'),(135384,4056,'flexible_templates_4_technology_2_back_copy','Devops is the heartbeat of all Translucent services, and Translucent IS Devops.'),(135385,4056,'_flexible_templates_4_technology_2_back_copy','field_6256b2e31a443'),(135386,4056,'flexible_templates_4_technology_2_image',''),(135387,4056,'_flexible_templates_4_technology_2_image','field_6256b3011a444_field_6254fdc5efa2a'),(135388,4056,'flexible_templates_4_technology_2_cta','a:3:{s:5:\"title\";s:17:\"Unlock Efficiency\";s:3:\"url\";s:46:\"https://translucent.local/cloud-native-devops/\";s:6:\"target\";s:0:\"\";}'),(135389,4056,'_flexible_templates_4_technology_2_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135390,4056,'flexible_templates_4_technology_3_heading','Remain Secure as Possible'),(135391,4056,'_flexible_templates_4_technology_3_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135392,4056,'flexible_templates_4_technology_3_sub_heading','How?'),(135393,4056,'_flexible_templates_4_technology_3_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135394,4056,'flexible_templates_4_technology_3_copy','Reduce deliberate and incidental security vulnerabilities in your systems.'),(135395,4056,'_flexible_templates_4_technology_3_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135396,4056,'flexible_templates_4_technology_3_back_heading','Zero Trust'),(135397,4056,'_flexible_templates_4_technology_3_back_heading','field_6256b2b61a441'),(135398,4056,'flexible_templates_4_technology_3_icon','4043'),(135399,4056,'_flexible_templates_4_technology_3_icon','field_6256b2be1a442_field_62550482480cb'),(135400,4056,'flexible_templates_4_technology_3_back_copy','We are partnered with the best security teams to offer full end to end services.'),(135401,4056,'_flexible_templates_4_technology_3_back_copy','field_6256b2e31a443'),(135402,4056,'flexible_templates_4_technology_3_image',''),(135403,4056,'_flexible_templates_4_technology_3_image','field_6256b3011a444_field_6254fdc5efa2a'),(135404,4056,'flexible_templates_4_technology_3_cta','a:3:{s:5:\"title\";s:20:\"Protect What Matters\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(135405,4056,'_flexible_templates_4_technology_3_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135406,4056,'flexible_templates_4_technology','6'),(135407,4056,'_flexible_templates_4_technology','field_6256acf8f89e6'),(135408,4056,'flexible_templates_4_technology_4_heading','Propel Your Business into The Future'),(135409,4056,'_flexible_templates_4_technology_4_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135410,4056,'flexible_templates_4_technology_4_sub_heading','How?'),(135411,4056,'_flexible_templates_4_technology_4_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135412,4056,'flexible_templates_4_technology_4_copy','Build new systems in the cloud, or Modernize legacy data and applications by rebuilding or migrating to a value-driven platform. '),(135413,4056,'_flexible_templates_4_technology_4_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135414,4056,'flexible_templates_4_technology_4_back_heading','Application Development'),(135415,4056,'_flexible_templates_4_technology_4_back_heading','field_6256b2b61a441'),(135416,4056,'flexible_templates_4_technology_4_icon','4047'),(135417,4056,'_flexible_templates_4_technology_4_icon','field_6256b2be1a442_field_62550482480cb'),(135418,4056,'flexible_templates_4_technology_4_back_copy','We develop intelligent apps for fintech, healthcare, and any other data-driven journey.'),(135419,4056,'_flexible_templates_4_technology_4_back_copy','field_6256b2e31a443'),(135420,4056,'flexible_templates_4_technology_4_image',''),(135421,4056,'_flexible_templates_4_technology_4_image','field_6256b3011a444_field_6254fdc5efa2a'),(135422,4056,'flexible_templates_4_technology_4_cta','a:3:{s:5:\"title\";s:14:\"Build It Right\";s:3:\"url\";s:63:\"https://translucent.local/cloud-native-application-development/\";s:6:\"target\";s:0:\"\";}'),(135423,4056,'_flexible_templates_4_technology_4_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135424,4056,'flexible_templates_4_technology_5_heading','Make Decisions Faster'),(135425,4056,'_flexible_templates_4_technology_5_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135426,4056,'flexible_templates_4_technology_5_sub_heading','How?'),(135427,4056,'_flexible_templates_4_technology_5_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135428,4056,'flexible_templates_4_technology_5_copy','Discover anomalies and opportunities faster than human intelligence!'),(135429,4056,'_flexible_templates_4_technology_5_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135430,4056,'flexible_templates_4_technology_5_back_heading',''),(135431,4056,'_flexible_templates_4_technology_5_back_heading','field_6256b2b61a441'),(135432,4056,'flexible_templates_4_technology_5_icon','4048'),(135433,4056,'_flexible_templates_4_technology_5_icon','field_6256b2be1a442_field_62550482480cb'),(135434,4056,'flexible_templates_4_technology_5_back_copy','Extend the boundaries of your business by solving problems faster.'),(135435,4056,'_flexible_templates_4_technology_5_back_copy','field_6256b2e31a443'),(135436,4056,'flexible_templates_4_technology_5_image',''),(135437,4056,'_flexible_templates_4_technology_5_image','field_6256b3011a444_field_6254fdc5efa2a'),(135438,4056,'flexible_templates_4_technology_5_cta','a:3:{s:5:\"title\";s:22:\"Solve Complex Problems\";s:3:\"url\";s:52:\"https://translucent.local/services/machine-learning/\";s:6:\"target\";s:6:\"_blank\";}'),(135439,4056,'_flexible_templates_4_technology_5_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135440,4056,'flexible_templates_5_image','4051'),(135441,4056,'_flexible_templates_5_image','field_6256dbdfc0c83_field_6254fdc5efa2a'),(135442,4056,'flexible_templates_5_mob_image','4050'),(135443,4056,'_flexible_templates_5_mob_image','field_6256dbeec0c84_field_6254fdcbefa2b'),(135444,4056,'flexible_templates_5_heading','Companies That We Work With'),(135445,4056,'_flexible_templates_5_heading','field_6256dc0cc0c85_field_6254fdb2efa27'),(135446,4056,'flexible_templates_5_technology_partner_0_heading','Teams looking for a trusted nearshore technology partner '),(135447,4056,'_flexible_templates_5_technology_partner_0_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(135448,4056,'flexible_templates_5_technology_partner_0_icon','4052'),(135449,4056,'_flexible_templates_5_technology_partner_0_icon','field_6256dc78c0c88_field_62550482480cb'),(135450,4056,'flexible_templates_5_technology_partner_0_copy','Your Dedicated Development Team. We bring the best people in the industry with various skills to develop and maintain the highest quality software.'),(135451,4056,'_flexible_templates_5_technology_partner_0_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(135452,4056,'flexible_templates_5_technology_partner_1_heading','Teams looking to a build state-of-the-art platform'),(135453,4056,'_flexible_templates_5_technology_partner_1_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(135454,4056,'flexible_templates_5_technology_partner_1_icon','4053'),(135455,4056,'_flexible_templates_5_technology_partner_1_icon','field_6256dc78c0c88_field_62550482480cb'),(135456,4056,'flexible_templates_5_technology_partner_1_copy','Industry-leading cloud native solutions that are backed by an award-winning process, teams, and production-ready data-driven platform.'),(135457,4056,'_flexible_templates_5_technology_partner_1_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(135458,4056,'flexible_templates_5_technology_partner_2_heading','Teams looking to outperform competition'),(135459,4056,'_flexible_templates_5_technology_partner_2_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(135460,4056,'flexible_templates_5_technology_partner_2_icon','4054'),(135461,4056,'_flexible_templates_5_technology_partner_2_icon','field_6256dc78c0c88_field_62550482480cb'),(135462,4056,'flexible_templates_5_technology_partner_2_copy','Gain a major competitive advantage by increasing speed to market by 20%, allowing you to make business moves more quickly.'),(135463,4056,'_flexible_templates_5_technology_partner_2_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(135464,4056,'flexible_templates_5_technology_partner','3'),(135465,4056,'_flexible_templates_5_technology_partner','field_6256dc3fc0c86'),(135466,4056,'flexible_templates_6_heading','WHY TRANSLUCENT'),(135467,4056,'_flexible_templates_6_heading','field_62590b7cdf000_field_6254fdb2efa27'),(135468,4056,'flexible_templates_6_sub_heading','How Translucent Powered by TEK Differs From Alternative Solutions'),(135469,4056,'_flexible_templates_6_sub_heading','field_62590b8bdf001_field_6254fdbaefa28'),(135470,4056,'flexible_templates_6_icon','4013'),(135471,4056,'_flexible_templates_6_icon','field_62590bc5df002_field_62550482480cb'),(135472,4056,'flexible_templates_6_differential_translucent_header_0_heading',''),(135473,4056,'_flexible_templates_6_differential_translucent_header_0_heading','field_62590c01df004_field_6254fdb2efa27'),(135474,4056,'flexible_templates_6_differential_translucent_header_0_color',''),(135475,4056,'_flexible_templates_6_differential_translucent_header_0_color','field_62590c11df005'),(135476,4056,'flexible_templates_6_differential_translucent_header_1_heading',''),(135477,4056,'_flexible_templates_6_differential_translucent_header_1_heading','field_62590c01df004_field_6254fdb2efa27'),(135478,4056,'flexible_templates_6_differential_translucent_header_1_color',''),(135479,4056,'_flexible_templates_6_differential_translucent_header_1_color','field_62590c11df005'),(135480,4056,'flexible_templates_6_differential_translucent_header_2_heading',''),(135481,4056,'_flexible_templates_6_differential_translucent_header_2_heading','field_62590c01df004_field_6254fdb2efa27'),(135482,4056,'flexible_templates_6_differential_translucent_header_2_color',''),(135483,4056,'_flexible_templates_6_differential_translucent_header_2_color','field_62590c11df005'),(135484,4056,'flexible_templates_6_differential_translucent_header_3_heading',''),(135485,4056,'_flexible_templates_6_differential_translucent_header_3_heading','field_62590c01df004_field_6254fdb2efa27'),(135486,4056,'flexible_templates_6_differential_translucent_header_3_color',''),(135487,4056,'_flexible_templates_6_differential_translucent_header_3_color','field_62590c11df005'),(135488,4056,'flexible_templates_6_differential_translucent_header','4'),(135489,4056,'_flexible_templates_6_differential_translucent_header','field_62590bf9df003'),(135490,4056,'flexible_templates_6_differential_translucent',''),(135491,4056,'_flexible_templates_6_differential_translucent','field_62590c30df006'),(135495,4057,'_wp_attached_file','2022/05/Image-1@2x.jpg'),(135496,4057,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:1592;s:4:\"file\";s:22:\"2022/05/Image-1@2x.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Image-1@2x-241x300.jpg\";s:5:\"width\";i:241;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Image-1@2x-823x1024.jpg\";s:5:\"width\";i:823;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Image-1@2x-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:\"Image-1@2x-768x955.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:955;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"Image-1@2x-1235x1536.jpg\";s:5:\"width\";i:1235;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"Image-1@2x-500x500.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(135497,4057,'_imagify_optimization_level','0'),(135498,4057,'_imagify_status','success'),(135499,4057,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:586551;s:14:\"optimized_size\";i:531460;s:7:\"percent\";d:9.39;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26832;s:14:\"optimized_size\";i:74422;s:7:\"percent\";d:-177.36;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:131103;s:14:\"optimized_size\";i:318202;s:7:\"percent\";d:-142.71;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:58585;s:14:\"optimized_size\";i:154036;s:7:\"percent\";d:-162.93;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3921;s:14:\"optimized_size\";i:8532;s:7:\"percent\";d:-117.6;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:66177;s:14:\"optimized_size\";i:171084;s:7:\"percent\";d:-158.52;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8284;s:14:\"optimized_size\";i:20744;s:7:\"percent\";d:-150.41;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:586551;s:14:\"optimized_size\";i:447440;s:7:\"percent\";d:23.72;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8284;s:14:\"optimized_size\";i:7497;s:7:\"percent\";d:9.5;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:66177;s:14:\"optimized_size\";i:58091;s:7:\"percent\";d:12.22;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3921;s:14:\"optimized_size\";i:3504;s:7:\"percent\";d:10.64;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:58585;s:14:\"optimized_size\";i:51769;s:7:\"percent\";d:11.63;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:131103;s:14:\"optimized_size\";i:112134;s:7:\"percent\";d:14.47;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26832;s:14:\"optimized_size\";i:24916;s:7:\"percent\";d:7.14;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1762906;s:14:\"optimized_size\";i:1983831;s:7:\"percent\";d:-12.53;}}'),(135500,4058,'_wp_attached_file','2022/05/SickKids-logo-1.png'),(135501,4058,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:620;s:6:\"height\";i:610;s:4:\"file\";s:27:\"2022/05/SickKids-logo-1.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"SickKids-logo-1-300x295.png\";s:5:\"width\";i:300;s:6:\"height\";i:295;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"SickKids-logo-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:27:\"SickKids-logo-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(135502,4058,'_imagify_optimization_level','0'),(135503,4058,'_imagify_status','already_optimized'),(135504,4058,'_imagify_data','a:2:{s:5:\"sizes\";a:5:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:380783;s:14:\"optimized_size\";i:141806;s:7:\"percent\";d:62.76;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:42323;s:14:\"optimized_size\";i:17012;s:7:\"percent\";d:59.8;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:149984;s:14:\"optimized_size\";i:59902;s:7:\"percent\";d:60.06;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:552309;s:14:\"optimized_size\";i:216796;s:7:\"percent\";d:60.75;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1125399;s:14:\"optimized_size\";i:435516;s:7:\"percent\";d:61.3;}}'),(135505,4028,'flexible_templates_6_differential_translucent_header_4_heading','Working with Translucent'),(135506,4028,'_flexible_templates_6_differential_translucent_header_4_heading','field_62590c01df004_field_6254fdb2efa27'),(135507,4028,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(135508,4028,'_flexible_templates_6_differential_translucent_header_4_color','field_62590c11df005'),(135509,4028,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(135510,4028,'_flexible_templates_6_differential_translucent_0_column_1','field_62590c30df008'),(135511,4028,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(135512,4028,'_flexible_templates_6_differential_translucent_0_column_2','field_62590c30df00a'),(135513,4028,'flexible_templates_6_differential_translucent_0_column_2_color','#7080a7'),(135514,4028,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62590c30df00b'),(135515,4028,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(135516,4028,'_flexible_templates_6_differential_translucent_0_column_3','field_62590c30df00d'),(135517,4028,'flexible_templates_6_differential_translucent_0_column_3_color','#ff555f'),(135518,4028,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62590c30df00e'),(135519,4028,'flexible_templates_6_differential_translucent_0_column_4','Always'),(135520,4028,'_flexible_templates_6_differential_translucent_0_column_4','field_62590c30df010'),(135521,4028,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(135522,4028,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62590c30df011'),(135523,4028,'flexible_templates_6_differential_translucent_0_column_5','Always'),(135524,4028,'_flexible_templates_6_differential_translucent_0_column_5','field_62590c30df013'),(135525,4028,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(135526,4028,'_flexible_templates_6_differential_translucent_0_column_5_color','field_62590c30df014'),(135527,4028,'flexible_templates_7_heading','We have a future vision that is in sync with the realities that our clients are currently facing'),(135528,4028,'_flexible_templates_7_heading','field_625733105d792_field_6254fdb2efa27'),(135529,4028,'flexible_templates_7_copy_wysiwyg','Translucent is a pioneer in cloud native application development. We created our own solutions, which we call TEK (Translucent Expert Knowledge). Our culture fosters innovation.'),(135530,4028,'_flexible_templates_7_copy_wysiwyg','field_625733205d793_field_6255310ecf4de'),(135531,4028,'flexible_templates_7_image','4057'),(135532,4028,'_flexible_templates_7_image','field_625733375d794_field_6254fdc5efa2a'),(135533,4028,'flexible_templates_7_icon','4058'),(135534,4028,'_flexible_templates_7_icon','field_625733495d795_field_62550482480cb'),(135535,4028,'flexible_templates_7_sick_kids_text',''),(135536,4028,'_flexible_templates_7_sick_kids_text','field_62573ad019bd0'),(135537,4028,'flexible_templates_7_tek_stack_case',''),(135538,4028,'_flexible_templates_7_tek_stack_case','field_625733b05d797'),(135539,4028,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:36:\"See How We Helped Sick Kids Hospital\";s:3:\"url\";s:70:\"https://translucent.local/case-studies/the-hospital-for-sick-children/\";s:6:\"target\";s:0:\"\";}'),(135540,4028,'_flexible_templates_7_cta','field_625733895d796_field_62551b3e101c4'),(135541,4028,'flexible_templates_8_heading','We treat your business like our own.'),(135542,4028,'_flexible_templates_8_heading','field_625565e14146d_field_6254fdb2efa27'),(135543,4028,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:10:\"Let\'s talk\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(135544,4028,'_flexible_templates_8_cta','field_625565fa4146e_field_62551b3e101c4'),(135545,4059,'flexible_templates','a:9:{i:0;s:19:\"cloud_native_banner\";i:1;s:35:\"cloud_native_expert_dedicated_teams\";i:2;s:39:\"cloud_native_solving_digital_challenges\";i:3;s:26:\"cloud_native_scale_demands\";i:4;s:22:\"cloud_native_ecosystem\";i:5;s:31:\"cloud_native_technology_partner\";i:6;s:37:\"cloud_native_translucent_differential\";i:7;s:26:\"cloud_nature_future_vision\";i:8;s:17:\"lets_talk_section\";}'),(135546,4059,'_flexible_templates','field_6254f4d84ef9b'),(135547,4059,'flexible_templates_0_image','4030'),(135548,4059,'_flexible_templates_0_image','field_62569b35f7c63_field_6254fdc5efa2a'),(135549,4059,'flexible_templates_0_icon','4013'),(135550,4059,'_flexible_templates_0_icon','field_62569b69f7c64_field_62550482480cb'),(135551,4059,'flexible_templates_0_heading','Solve Digital Challenges with a Complete Cloud Native Solution'),(135552,4059,'_flexible_templates_0_heading','field_62569b87f7c65_field_6254fdb2efa27'),(135553,4059,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(135554,4059,'_flexible_templates_0_sub_heading','field_62569ba5f7c66_field_6254fdbaefa28'),(135555,4059,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:23:\"Transform Your Business\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(135556,4059,'_flexible_templates_0_cta','field_62569bcff7c67_field_62551b3e101c4'),(135557,4059,'flexible_templates_1_image','4031'),(135558,4059,'_flexible_templates_1_image','field_6256a05dda66c_field_6254fdc5efa2a'),(135559,4059,'flexible_templates_1_heading','Expert dedicated teams for your cloud native project.'),(135560,4059,'_flexible_templates_1_heading','field_62569f6d3c0ad_field_6254fdb2efa27'),(135561,4059,'flexible_templates_1_sub_heading','DATA-DRIVEN TRUSTED TECHNOLOGY PARTNER'),(135562,4059,'_flexible_templates_1_sub_heading','field_62569f7a3c0ae_field_6254fdbaefa28'),(135563,4059,'flexible_templates_1_copy','Our expert software engineering teams develop intelligent apps for fintech, healthcare, automotive, and any other data-driven journey, with over 10 years of experience in large scale complex project. Enable your business to reflect its operations through technology while helping it become more dynamic, secure, and easier to scale by increasing speed to market. As a pioneer in cloud native application development we have a proven track record of solving digital transformation challenges for enterprises.'),(135564,4059,'_flexible_templates_1_copy','field_6256a175dc200_field_6254fdc0efa29'),(135565,4059,'flexible_templates_1_copy_long',''),(135566,4059,'_flexible_templates_1_copy_long','field_6256a026da66a'),(135567,4059,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:12:\"How We Do It\";s:3:\"url\";s:36:\"https://translucent.local/tek-world/\";s:6:\"target\";s:0:\"\";}'),(135568,4059,'_flexible_templates_1_cta','field_6256a03ada66b_field_62551b3e101c4'),(135569,4059,'flexible_templates_2_heading','Three paths to Cloud Native'),(135570,4059,'_flexible_templates_2_heading','field_6256a640dea7c_field_6254fdb2efa27'),(135571,4059,'flexible_templates_2_sub_heading','SOLVING DIGITAL CHALLENGES'),(135572,4059,'_flexible_templates_2_sub_heading','field_6256a66cdea7d_field_6254fdbaefa28'),(135573,4059,'flexible_templates_2_posts_grid_0_icon','4033'),(135574,4059,'_flexible_templates_2_posts_grid_0_icon','field_6256a6c0dea7f_field_62550482480cb'),(135575,4059,'flexible_templates_2_posts_grid_0_heading','Build'),(135576,4059,'_flexible_templates_2_posts_grid_0_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(135577,4059,'flexible_templates_2_posts_grid_0_copy','We\'re not just a software company. We\'re the people who help your business achieve its digital transformation vision. From strategy to implementation, we\'ll support you with our cloud native, data driven technology and digital transformation expertise. '),(135578,4059,'_flexible_templates_2_posts_grid_0_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(135579,4059,'flexible_templates_2_posts_grid_0_cta',''),(135580,4059,'_flexible_templates_2_posts_grid_0_cta','field_6256a6f8dea82_field_62551b3e101c4'),(135581,4059,'flexible_templates_2_posts_grid_1_icon','4034'),(135582,4059,'_flexible_templates_2_posts_grid_1_icon','field_6256a6c0dea7f_field_62550482480cb'),(135583,4059,'flexible_templates_2_posts_grid_1_heading','ReBuild'),(135584,4059,'_flexible_templates_2_posts_grid_1_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(135585,4059,'flexible_templates_2_posts_grid_1_copy','Break free from the limitations of your old legacy technology by rebuilding your business critical application components without affecting the original specifications, requirements, and business logic. This will improve scalability, maintainability, and reliability.\r\n'),(135586,4059,'_flexible_templates_2_posts_grid_1_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(135587,4059,'flexible_templates_2_posts_grid_1_cta',''),(135588,4059,'_flexible_templates_2_posts_grid_1_cta','field_6256a6f8dea82_field_62551b3e101c4'),(135589,4059,'flexible_templates_2_posts_grid_2_icon','4035'),(135590,4059,'_flexible_templates_2_posts_grid_2_icon','field_6256a6c0dea7f_field_62550482480cb'),(135591,4059,'flexible_templates_2_posts_grid_2_heading','RePlatform'),(135592,4059,'_flexible_templates_2_posts_grid_2_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(135593,4059,'flexible_templates_2_posts_grid_2_copy','Migrate your old application to a new runtime platform. When upgrading to a cloud native application platform, we repurpose the useable components from your legacy technology, and minimize changes to code and structure.'),(135594,4059,'_flexible_templates_2_posts_grid_2_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(135595,4059,'flexible_templates_2_posts_grid_2_cta',''),(135596,4059,'_flexible_templates_2_posts_grid_2_cta','field_6256a6f8dea82_field_62551b3e101c4'),(135597,4059,'flexible_templates_2_posts_grid','3'),(135598,4059,'_flexible_templates_2_posts_grid','field_6256a698dea7e'),(135599,4059,'flexible_templates_2_cta',''),(135600,4059,'_flexible_templates_2_cta','field_6256a725dea83_field_62551b3e101c4'),(135601,4059,'flexible_templates_3_heading','Scale According to your Demands'),(135602,4059,'_flexible_templates_3_heading','field_6256aa0c6187a_field_6254fdb2efa27'),(135603,4059,'flexible_templates_3_scale_demands_0_icon',''),(135604,4059,'_flexible_templates_3_scale_demands_0_icon','field_6256aa4e6187c_field_62550482480cb'),(135605,4059,'flexible_templates_3_scale_demands_0_heading','TEKTeams'),(135606,4059,'_flexible_templates_3_scale_demands_0_heading','field_6256aa866187d_field_6254fdb2efa27'),(135607,4059,'flexible_templates_3_scale_demands_0_copy','On-demand resources that may be used whenever and wherever you need them. Increase your workforce by partnering with teams tailored to your business needs.'),(135608,4059,'_flexible_templates_3_scale_demands_0_copy','field_6256aa986187e_field_6254fdc0efa29'),(135609,4059,'flexible_templates_3_scale_demands_0_cta','a:3:{s:5:\"title\";s:16:\"Scale Your Teams\";s:3:\"url\";s:34:\"https://translucent.local/tekteams\";s:6:\"target\";s:0:\"\";}'),(135610,4059,'_flexible_templates_3_scale_demands_0_cta','field_6256aab66187f_field_62551b3e101c4'),(135611,4059,'flexible_templates_3_scale_demands_1_icon',''),(135612,4059,'_flexible_templates_3_scale_demands_1_icon','field_6256aa4e6187c_field_62550482480cb'),(135613,4059,'flexible_templates_3_scale_demands_1_heading','TEKStack AI'),(135614,4059,'_flexible_templates_3_scale_demands_1_heading','field_6256aa866187d_field_6254fdb2efa27'),(135615,4059,'flexible_templates_3_scale_demands_1_copy','TEKStack AI has perfected the complex process of working with production ready tools that have been shown to save time and money. Reduce your time to market by more than 20%.'),(135616,4059,'_flexible_templates_3_scale_demands_1_copy','field_6256aa986187e_field_6254fdc0efa29'),(135617,4059,'flexible_templates_3_scale_demands_1_cta','a:3:{s:5:\"title\";s:20:\"Speed Up Development\";s:3:\"url\";s:38:\"https://translucent.local/tekstack-ai/\";s:6:\"target\";s:0:\"\";}'),(135618,4059,'_flexible_templates_3_scale_demands_1_cta','field_6256aab66187f_field_62551b3e101c4'),(135619,4059,'flexible_templates_3_scale_demands_2_icon',''),(135620,4059,'_flexible_templates_3_scale_demands_2_icon','field_6256aa4e6187c_field_62550482480cb'),(135621,4059,'flexible_templates_3_scale_demands_2_heading','TEKProcess'),(135622,4059,'_flexible_templates_3_scale_demands_2_heading','field_6256aa866187d_field_6254fdb2efa27'),(135623,4059,'flexible_templates_3_scale_demands_2_copy','Our approach to cloud native development will organize your entire cloud native development process ​from conception to steady state and support, known as TEKProcess.'),(135624,4059,'_flexible_templates_3_scale_demands_2_copy','field_6256aa986187e_field_6254fdc0efa29'),(135625,4059,'flexible_templates_3_scale_demands_2_cta','a:3:{s:5:\"title\";s:24:\"Optimize Your Operations\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(135626,4059,'_flexible_templates_3_scale_demands_2_cta','field_6256aab66187f_field_62551b3e101c4'),(135627,4059,'flexible_templates_3_scale_demands','3'),(135628,4059,'_flexible_templates_3_scale_demands','field_6256aa366187b'),(135629,4059,'flexible_templates_4_heading','Reflect Your Operations Through Technology'),(135630,4059,'_flexible_templates_4_heading','field_6256acb5f89e4_field_6254fdb2efa27'),(135631,4059,'flexible_templates_4_sub_heading','CLOUD NATIVE ECOSYSTEM'),(135632,4059,'_flexible_templates_4_sub_heading','field_6256acc6f89e5_field_6254fdbaefa28'),(135633,4059,'flexible_templates_4_icon','4041'),(135634,4059,'_flexible_templates_4_icon','field_6256db0a20c28_field_62550482480cb'),(135635,4059,'flexible_templates_4_image',''),(135636,4059,'_flexible_templates_4_image','field_6257293fdf3c8_field_6254fdc5efa2a'),(135637,4059,'flexible_templates_4_technology_0_heading','Solve Problems Quick'),(135638,4059,'_flexible_templates_4_technology_0_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135639,4059,'flexible_templates_4_technology_0_sub_heading','How?'),(135640,4059,'_flexible_templates_4_technology_0_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135641,4059,'flexible_templates_4_technology_0_copy','Translucent is a data driven digital transformation company that uses technology to solve problems and modernize companies.'),(135642,4059,'_flexible_templates_4_technology_0_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135643,4059,'flexible_templates_4_technology_0_back_heading','Data Driven'),(135644,4059,'_flexible_templates_4_technology_0_back_heading','field_6256b2b61a441'),(135645,4059,'flexible_templates_4_technology_0_icon','4038'),(135646,4059,'_flexible_templates_4_technology_0_icon','field_6256b2be1a442_field_62550482480cb'),(135647,4059,'flexible_templates_4_technology_0_back_copy','We work closely with companies to analyze their business and discover new opportunities they did not know existed.'),(135648,4059,'_flexible_templates_4_technology_0_back_copy','field_6256b2e31a443'),(135649,4059,'flexible_templates_4_technology_0_image',''),(135650,4059,'_flexible_templates_4_technology_0_image','field_6256b3011a444_field_6254fdc5efa2a'),(135651,4059,'flexible_templates_4_technology_0_cta','a:3:{s:5:\"title\";s:13:\"Start Solving\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(135652,4059,'_flexible_templates_4_technology_0_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135653,4059,'flexible_templates_4_technology_1_heading','Automate Development Tasks'),(135654,4059,'_flexible_templates_4_technology_1_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135655,4059,'flexible_templates_4_technology_1_sub_heading','How?'),(135656,4059,'_flexible_templates_4_technology_1_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135657,4059,'flexible_templates_4_technology_1_copy','Simplify the intricacies of cloud applications by automating laborious tasks in the development process.'),(135658,4059,'_flexible_templates_4_technology_1_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135659,4059,'flexible_templates_4_technology_1_back_heading',''),(135660,4059,'_flexible_templates_4_technology_1_back_heading','field_6256b2b61a441'),(135661,4059,'flexible_templates_4_technology_1_icon','4040'),(135662,4059,'_flexible_templates_4_technology_1_icon','field_6256b2be1a442_field_62550482480cb'),(135663,4059,'flexible_templates_4_technology_1_back_copy','Translucent is one of just four kubernetes certified partners in Canada!'),(135664,4059,'_flexible_templates_4_technology_1_back_copy','field_6256b2e31a443'),(135665,4059,'flexible_templates_4_technology_1_image','4039'),(135666,4059,'_flexible_templates_4_technology_1_image','field_6256b3011a444_field_6254fdc5efa2a'),(135667,4059,'flexible_templates_4_technology_1_cta','a:3:{s:5:\"title\";s:16:\"Start Automating\";s:3:\"url\";s:59:\"https://translucent.local/kubernetes-professional-services/\";s:6:\"target\";s:0:\"\";}'),(135668,4059,'_flexible_templates_4_technology_1_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135669,4059,'flexible_templates_4_technology_2_heading','Build and Deploy Faster'),(135670,4059,'_flexible_templates_4_technology_2_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135671,4059,'flexible_templates_4_technology_2_sub_heading','How?'),(135672,4059,'_flexible_templates_4_technology_2_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135673,4059,'flexible_templates_4_technology_2_copy','Maximise earnings by building and deploying more features and faster.'),(135674,4059,'_flexible_templates_4_technology_2_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135675,4059,'flexible_templates_4_technology_2_back_heading',''),(135676,4059,'_flexible_templates_4_technology_2_back_heading','field_6256b2b61a441'),(135677,4059,'flexible_templates_4_technology_2_icon','4042'),(135678,4059,'_flexible_templates_4_technology_2_icon','field_6256b2be1a442_field_62550482480cb'),(135679,4059,'flexible_templates_4_technology_2_back_copy','Devops is the heartbeat of all Translucent services, and Translucent IS Devops.'),(135680,4059,'_flexible_templates_4_technology_2_back_copy','field_6256b2e31a443'),(135681,4059,'flexible_templates_4_technology_2_image',''),(135682,4059,'_flexible_templates_4_technology_2_image','field_6256b3011a444_field_6254fdc5efa2a'),(135683,4059,'flexible_templates_4_technology_2_cta','a:3:{s:5:\"title\";s:17:\"Unlock Efficiency\";s:3:\"url\";s:46:\"https://translucent.local/cloud-native-devops/\";s:6:\"target\";s:0:\"\";}'),(135684,4059,'_flexible_templates_4_technology_2_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135685,4059,'flexible_templates_4_technology_3_heading','Remain Secure as Possible'),(135686,4059,'_flexible_templates_4_technology_3_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135687,4059,'flexible_templates_4_technology_3_sub_heading','How?'),(135688,4059,'_flexible_templates_4_technology_3_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135689,4059,'flexible_templates_4_technology_3_copy','Reduce deliberate and incidental security vulnerabilities in your systems.'),(135690,4059,'_flexible_templates_4_technology_3_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135691,4059,'flexible_templates_4_technology_3_back_heading','Zero Trust'),(135692,4059,'_flexible_templates_4_technology_3_back_heading','field_6256b2b61a441'),(135693,4059,'flexible_templates_4_technology_3_icon','4043'),(135694,4059,'_flexible_templates_4_technology_3_icon','field_6256b2be1a442_field_62550482480cb'),(135695,4059,'flexible_templates_4_technology_3_back_copy','We are partnered with the best security teams to offer full end to end services.'),(135696,4059,'_flexible_templates_4_technology_3_back_copy','field_6256b2e31a443'),(135697,4059,'flexible_templates_4_technology_3_image',''),(135698,4059,'_flexible_templates_4_technology_3_image','field_6256b3011a444_field_6254fdc5efa2a'),(135699,4059,'flexible_templates_4_technology_3_cta','a:3:{s:5:\"title\";s:20:\"Protect What Matters\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(135700,4059,'_flexible_templates_4_technology_3_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135701,4059,'flexible_templates_4_technology','6'),(135702,4059,'_flexible_templates_4_technology','field_6256acf8f89e6'),(135703,4059,'flexible_templates_4_technology_4_heading','Propel Your Business into The Future'),(135704,4059,'_flexible_templates_4_technology_4_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135705,4059,'flexible_templates_4_technology_4_sub_heading','How?'),(135706,4059,'_flexible_templates_4_technology_4_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135707,4059,'flexible_templates_4_technology_4_copy','Build new systems in the cloud, or Modernize legacy data and applications by rebuilding or migrating to a value-driven platform. '),(135708,4059,'_flexible_templates_4_technology_4_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135709,4059,'flexible_templates_4_technology_4_back_heading','Application Development'),(135710,4059,'_flexible_templates_4_technology_4_back_heading','field_6256b2b61a441'),(135711,4059,'flexible_templates_4_technology_4_icon','4047'),(135712,4059,'_flexible_templates_4_technology_4_icon','field_6256b2be1a442_field_62550482480cb'),(135713,4059,'flexible_templates_4_technology_4_back_copy','We develop intelligent apps for fintech, healthcare, and any other data-driven journey.'),(135714,4059,'_flexible_templates_4_technology_4_back_copy','field_6256b2e31a443'),(135715,4059,'flexible_templates_4_technology_4_image',''),(135716,4059,'_flexible_templates_4_technology_4_image','field_6256b3011a444_field_6254fdc5efa2a'),(135717,4059,'flexible_templates_4_technology_4_cta','a:3:{s:5:\"title\";s:14:\"Build It Right\";s:3:\"url\";s:63:\"https://translucent.local/cloud-native-application-development/\";s:6:\"target\";s:0:\"\";}'),(135718,4059,'_flexible_templates_4_technology_4_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135719,4059,'flexible_templates_4_technology_5_heading','Make Decisions Faster'),(135720,4059,'_flexible_templates_4_technology_5_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135721,4059,'flexible_templates_4_technology_5_sub_heading','How?'),(135722,4059,'_flexible_templates_4_technology_5_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135723,4059,'flexible_templates_4_technology_5_copy','Discover anomalies and opportunities faster than human intelligence!'),(135724,4059,'_flexible_templates_4_technology_5_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135725,4059,'flexible_templates_4_technology_5_back_heading',''),(135726,4059,'_flexible_templates_4_technology_5_back_heading','field_6256b2b61a441'),(135727,4059,'flexible_templates_4_technology_5_icon','4048'),(135728,4059,'_flexible_templates_4_technology_5_icon','field_6256b2be1a442_field_62550482480cb'),(135729,4059,'flexible_templates_4_technology_5_back_copy','Extend the boundaries of your business by solving problems faster.'),(135730,4059,'_flexible_templates_4_technology_5_back_copy','field_6256b2e31a443'),(135731,4059,'flexible_templates_4_technology_5_image',''),(135732,4059,'_flexible_templates_4_technology_5_image','field_6256b3011a444_field_6254fdc5efa2a'),(135733,4059,'flexible_templates_4_technology_5_cta','a:3:{s:5:\"title\";s:22:\"Solve Complex Problems\";s:3:\"url\";s:52:\"https://translucent.local/services/machine-learning/\";s:6:\"target\";s:6:\"_blank\";}'),(135734,4059,'_flexible_templates_4_technology_5_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135735,4059,'flexible_templates_5_image','4051'),(135736,4059,'_flexible_templates_5_image','field_6256dbdfc0c83_field_6254fdc5efa2a'),(135737,4059,'flexible_templates_5_mob_image','4050'),(135738,4059,'_flexible_templates_5_mob_image','field_6256dbeec0c84_field_6254fdcbefa2b'),(135739,4059,'flexible_templates_5_heading','Companies That We Work With'),(135740,4059,'_flexible_templates_5_heading','field_6256dc0cc0c85_field_6254fdb2efa27'),(135741,4059,'flexible_templates_5_technology_partner_0_heading','Teams looking for a trusted nearshore technology partner '),(135742,4059,'_flexible_templates_5_technology_partner_0_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(135743,4059,'flexible_templates_5_technology_partner_0_icon','4052'),(135744,4059,'_flexible_templates_5_technology_partner_0_icon','field_6256dc78c0c88_field_62550482480cb'),(135745,4059,'flexible_templates_5_technology_partner_0_copy','Your Dedicated Development Team. We bring the best people in the industry with various skills to develop and maintain the highest quality software.'),(135746,4059,'_flexible_templates_5_technology_partner_0_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(135747,4059,'flexible_templates_5_technology_partner_1_heading','Teams looking to a build state-of-the-art platform'),(135748,4059,'_flexible_templates_5_technology_partner_1_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(135749,4059,'flexible_templates_5_technology_partner_1_icon','4053'),(135750,4059,'_flexible_templates_5_technology_partner_1_icon','field_6256dc78c0c88_field_62550482480cb'),(135751,4059,'flexible_templates_5_technology_partner_1_copy','Industry-leading cloud native solutions that are backed by an award-winning process, teams, and production-ready data-driven platform.'),(135752,4059,'_flexible_templates_5_technology_partner_1_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(135753,4059,'flexible_templates_5_technology_partner_2_heading','Teams looking to outperform competition'),(135754,4059,'_flexible_templates_5_technology_partner_2_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(135755,4059,'flexible_templates_5_technology_partner_2_icon','4054'),(135756,4059,'_flexible_templates_5_technology_partner_2_icon','field_6256dc78c0c88_field_62550482480cb'),(135757,4059,'flexible_templates_5_technology_partner_2_copy','Gain a major competitive advantage by increasing speed to market by 20%, allowing you to make business moves more quickly.'),(135758,4059,'_flexible_templates_5_technology_partner_2_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(135759,4059,'flexible_templates_5_technology_partner','3'),(135760,4059,'_flexible_templates_5_technology_partner','field_6256dc3fc0c86'),(135761,4059,'flexible_templates_6_heading','WHY TRANSLUCENT'),(135762,4059,'_flexible_templates_6_heading','field_62590b7cdf000_field_6254fdb2efa27'),(135763,4059,'flexible_templates_6_sub_heading','How Translucent Powered by TEK Differs From Alternative Solutions'),(135764,4059,'_flexible_templates_6_sub_heading','field_62590b8bdf001_field_6254fdbaefa28'),(135765,4059,'flexible_templates_6_icon','4013'),(135766,4059,'_flexible_templates_6_icon','field_62590bc5df002_field_62550482480cb'),(135767,4059,'flexible_templates_6_differential_translucent_header_0_heading','Your needs'),(135768,4059,'_flexible_templates_6_differential_translucent_header_0_heading','field_62590c01df004_field_6254fdb2efa27'),(135769,4059,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(135770,4059,'_flexible_templates_6_differential_translucent_header_0_color','field_62590c11df005'),(135771,4059,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(135772,4059,'_flexible_templates_6_differential_translucent_header_1_heading','field_62590c01df004_field_6254fdb2efa27'),(135773,4059,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(135774,4059,'_flexible_templates_6_differential_translucent_header_1_color','field_62590c11df005'),(135775,4059,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore teams'),(135776,4059,'_flexible_templates_6_differential_translucent_header_2_heading','field_62590c01df004_field_6254fdb2efa27'),(135777,4059,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(135778,4059,'_flexible_templates_6_differential_translucent_header_2_color','field_62590c11df005'),(135779,4059,'flexible_templates_6_differential_translucent_header_3_heading','Hiring in-house developers'),(135780,4059,'_flexible_templates_6_differential_translucent_header_3_heading','field_62590c01df004_field_6254fdb2efa27'),(135781,4059,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(135782,4059,'_flexible_templates_6_differential_translucent_header_3_color','field_62590c11df005'),(135783,4059,'flexible_templates_6_differential_translucent_header','5'),(135784,4059,'_flexible_templates_6_differential_translucent_header','field_62590bf9df003'),(135785,4059,'flexible_templates_6_differential_translucent','1'),(135786,4059,'_flexible_templates_6_differential_translucent','field_62590c30df006'),(135787,4059,'flexible_templates_6_differential_translucent_header_4_heading','Working with Translucent'),(135788,4059,'_flexible_templates_6_differential_translucent_header_4_heading','field_62590c01df004_field_6254fdb2efa27'),(135789,4059,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(135790,4059,'_flexible_templates_6_differential_translucent_header_4_color','field_62590c11df005'),(135791,4059,'flexible_templates_6_differential_translucent_0_column_1',''),(135792,4059,'_flexible_templates_6_differential_translucent_0_column_1','field_62590c30df008'),(135793,4059,'flexible_templates_6_differential_translucent_0_column_2',''),(135794,4059,'_flexible_templates_6_differential_translucent_0_column_2','field_62590c30df00a'),(135795,4059,'flexible_templates_6_differential_translucent_0_column_2_color',''),(135796,4059,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62590c30df00b'),(135797,4059,'flexible_templates_6_differential_translucent_0_column_3',''),(135798,4059,'_flexible_templates_6_differential_translucent_0_column_3','field_62590c30df00d'),(135799,4059,'flexible_templates_6_differential_translucent_0_column_3_color',''),(135800,4059,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62590c30df00e'),(135801,4059,'flexible_templates_6_differential_translucent_0_column_4',''),(135802,4059,'_flexible_templates_6_differential_translucent_0_column_4','field_62590c30df010'),(135803,4059,'flexible_templates_6_differential_translucent_0_column_4_color',''),(135804,4059,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62590c30df011'),(135805,4059,'flexible_templates_6_differential_translucent_0_column_5',''),(135806,4059,'_flexible_templates_6_differential_translucent_0_column_5','field_62590c30df013'),(135807,4059,'flexible_templates_6_differential_translucent_0_column_5_color',''),(135808,4059,'_flexible_templates_6_differential_translucent_0_column_5_color','field_62590c30df014'),(135809,4059,'flexible_templates_7_heading','We have a future vision that is in sync with the realities that our clients are currently facing'),(135810,4059,'_flexible_templates_7_heading','field_625733105d792_field_6254fdb2efa27'),(135811,4059,'flexible_templates_7_copy_wysiwyg','Translucent is a pioneer in cloud native application development. We created our own solutions, which we call TEK : Translucent Expert Knowledge. Our culture fosters innovation.'),(135812,4059,'_flexible_templates_7_copy_wysiwyg','field_625733205d793_field_6255310ecf4de'),(135813,4059,'flexible_templates_7_image','4057'),(135814,4059,'_flexible_templates_7_image','field_625733375d794_field_6254fdc5efa2a'),(135815,4059,'flexible_templates_7_icon','4058'),(135816,4059,'_flexible_templates_7_icon','field_625733495d795_field_62550482480cb'),(135817,4059,'flexible_templates_7_sick_kids_text',''),(135818,4059,'_flexible_templates_7_sick_kids_text','field_62573ad019bd0'),(135819,4059,'flexible_templates_7_tek_stack_case','TEK in Action'),(135820,4059,'_flexible_templates_7_tek_stack_case','field_625733b05d797'),(135821,4059,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:36:\"See How We Helped Sick Kids Hospital\";s:3:\"url\";s:70:\"https://translucent.local/case-studies/the-hospital-for-sick-children/\";s:6:\"target\";s:0:\"\";}'),(135822,4059,'_flexible_templates_7_cta','field_625733895d796_field_62551b3e101c4'),(135823,4059,'flexible_templates_8_heading','We treat your business like our own.'),(135824,4059,'_flexible_templates_8_heading','field_625565e14146d_field_6254fdb2efa27'),(135825,4059,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:10:\"Let\'s talk\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(135826,4059,'_flexible_templates_8_cta','field_625565fa4146e_field_62551b3e101c4'),(135833,4060,'flexible_templates','a:9:{i:0;s:19:\"cloud_native_banner\";i:1;s:35:\"cloud_native_expert_dedicated_teams\";i:2;s:39:\"cloud_native_solving_digital_challenges\";i:3;s:26:\"cloud_native_scale_demands\";i:4;s:22:\"cloud_native_ecosystem\";i:5;s:31:\"cloud_native_technology_partner\";i:6;s:37:\"cloud_native_translucent_differential\";i:7;s:26:\"cloud_nature_future_vision\";i:8;s:17:\"lets_talk_section\";}'),(135834,4060,'_flexible_templates','field_6254f4d84ef9b'),(135835,4060,'flexible_templates_0_image','4030'),(135836,4060,'_flexible_templates_0_image','field_62569b35f7c63_field_6254fdc5efa2a'),(135837,4060,'flexible_templates_0_icon','4013'),(135838,4060,'_flexible_templates_0_icon','field_62569b69f7c64_field_62550482480cb'),(135839,4060,'flexible_templates_0_heading','Solve Digital Challenges with a Complete Cloud Native Solution'),(135840,4060,'_flexible_templates_0_heading','field_62569b87f7c65_field_6254fdb2efa27'),(135841,4060,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(135842,4060,'_flexible_templates_0_sub_heading','field_62569ba5f7c66_field_6254fdbaefa28'),(135843,4060,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:23:\"Transform Your Business\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(135844,4060,'_flexible_templates_0_cta','field_62569bcff7c67_field_62551b3e101c4'),(135845,4060,'flexible_templates_1_image','4031'),(135846,4060,'_flexible_templates_1_image','field_6256a05dda66c_field_6254fdc5efa2a'),(135847,4060,'flexible_templates_1_heading','Expert dedicated teams for your cloud native project.'),(135848,4060,'_flexible_templates_1_heading','field_62569f6d3c0ad_field_6254fdb2efa27'),(135849,4060,'flexible_templates_1_sub_heading','DATA-DRIVEN TRUSTED TECHNOLOGY PARTNER'),(135850,4060,'_flexible_templates_1_sub_heading','field_62569f7a3c0ae_field_6254fdbaefa28'),(135851,4060,'flexible_templates_1_copy','Our expert software engineering teams develop intelligent apps for fintech, healthcare, automotive, and any other data-driven journey, with over 10 years of experience in large scale complex project. Enable your business to reflect its operations through technology while helping it become more dynamic, secure, and easier to scale by increasing speed to market. As a pioneer in cloud native application development we have a proven track record of solving digital transformation challenges for enterprises.'),(135852,4060,'_flexible_templates_1_copy','field_6256a175dc200_field_6254fdc0efa29'),(135853,4060,'flexible_templates_1_copy_long',''),(135854,4060,'_flexible_templates_1_copy_long','field_6256a026da66a'),(135855,4060,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:12:\"How We Do It\";s:3:\"url\";s:36:\"https://translucent.local/tek-world/\";s:6:\"target\";s:0:\"\";}'),(135856,4060,'_flexible_templates_1_cta','field_6256a03ada66b_field_62551b3e101c4'),(135857,4060,'flexible_templates_2_heading','Three paths to Cloud Native'),(135858,4060,'_flexible_templates_2_heading','field_6256a640dea7c_field_6254fdb2efa27'),(135859,4060,'flexible_templates_2_sub_heading','SOLVING DIGITAL CHALLENGES'),(135860,4060,'_flexible_templates_2_sub_heading','field_6256a66cdea7d_field_6254fdbaefa28'),(135861,4060,'flexible_templates_2_posts_grid_0_icon','4033'),(135862,4060,'_flexible_templates_2_posts_grid_0_icon','field_6256a6c0dea7f_field_62550482480cb'),(135863,4060,'flexible_templates_2_posts_grid_0_heading','Build'),(135864,4060,'_flexible_templates_2_posts_grid_0_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(135865,4060,'flexible_templates_2_posts_grid_0_copy','We\'re not just a software company. We\'re the people who help your business achieve its digital transformation vision. From strategy to implementation, we\'ll support you with our cloud native, data driven technology and digital transformation expertise. '),(135866,4060,'_flexible_templates_2_posts_grid_0_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(135867,4060,'flexible_templates_2_posts_grid_0_cta',''),(135868,4060,'_flexible_templates_2_posts_grid_0_cta','field_6256a6f8dea82_field_62551b3e101c4'),(135869,4060,'flexible_templates_2_posts_grid_1_icon','4034'),(135870,4060,'_flexible_templates_2_posts_grid_1_icon','field_6256a6c0dea7f_field_62550482480cb'),(135871,4060,'flexible_templates_2_posts_grid_1_heading','ReBuild'),(135872,4060,'_flexible_templates_2_posts_grid_1_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(135873,4060,'flexible_templates_2_posts_grid_1_copy','Break free from the limitations of your old legacy technology by rebuilding your business critical application components without affecting the original specifications, requirements, and business logic. This will improve scalability, maintainability, and reliability.\r\n'),(135874,4060,'_flexible_templates_2_posts_grid_1_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(135875,4060,'flexible_templates_2_posts_grid_1_cta',''),(135876,4060,'_flexible_templates_2_posts_grid_1_cta','field_6256a6f8dea82_field_62551b3e101c4'),(135877,4060,'flexible_templates_2_posts_grid_2_icon','4035'),(135878,4060,'_flexible_templates_2_posts_grid_2_icon','field_6256a6c0dea7f_field_62550482480cb'),(135879,4060,'flexible_templates_2_posts_grid_2_heading','RePlatform'),(135880,4060,'_flexible_templates_2_posts_grid_2_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(135881,4060,'flexible_templates_2_posts_grid_2_copy','Migrate your old application to a new runtime platform. When upgrading to a cloud native application platform, we repurpose the useable components from your legacy technology, and minimize changes to code and structure.'),(135882,4060,'_flexible_templates_2_posts_grid_2_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(135883,4060,'flexible_templates_2_posts_grid_2_cta','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://translucent.local/cloud-native-application-development/\";s:6:\"target\";s:0:\"\";}'),(135884,4060,'_flexible_templates_2_posts_grid_2_cta','field_6256a6f8dea82_field_62551b3e101c4'),(135885,4060,'flexible_templates_2_posts_grid','3'),(135886,4060,'_flexible_templates_2_posts_grid','field_6256a698dea7e'),(135887,4060,'flexible_templates_2_cta',''),(135888,4060,'_flexible_templates_2_cta','field_6256a725dea83_field_62551b3e101c4'),(135889,4060,'flexible_templates_3_heading','Scale According to your Demands'),(135890,4060,'_flexible_templates_3_heading','field_6256aa0c6187a_field_6254fdb2efa27'),(135891,4060,'flexible_templates_3_scale_demands_0_icon',''),(135892,4060,'_flexible_templates_3_scale_demands_0_icon','field_6256aa4e6187c_field_62550482480cb'),(135893,4060,'flexible_templates_3_scale_demands_0_heading','TEKTeams'),(135894,4060,'_flexible_templates_3_scale_demands_0_heading','field_6256aa866187d_field_6254fdb2efa27'),(135895,4060,'flexible_templates_3_scale_demands_0_copy','On-demand resources that may be used whenever and wherever you need them. Increase your workforce by partnering with teams tailored to your business needs.'),(135896,4060,'_flexible_templates_3_scale_demands_0_copy','field_6256aa986187e_field_6254fdc0efa29'),(135897,4060,'flexible_templates_3_scale_demands_0_cta','a:3:{s:5:\"title\";s:16:\"Scale Your Teams\";s:3:\"url\";s:34:\"https://translucent.local/tekteams\";s:6:\"target\";s:0:\"\";}'),(135898,4060,'_flexible_templates_3_scale_demands_0_cta','field_6256aab66187f_field_62551b3e101c4'),(135899,4060,'flexible_templates_3_scale_demands_1_icon',''),(135900,4060,'_flexible_templates_3_scale_demands_1_icon','field_6256aa4e6187c_field_62550482480cb'),(135901,4060,'flexible_templates_3_scale_demands_1_heading','TEKStack AI'),(135902,4060,'_flexible_templates_3_scale_demands_1_heading','field_6256aa866187d_field_6254fdb2efa27'),(135903,4060,'flexible_templates_3_scale_demands_1_copy','TEKStack AI has perfected the complex process of working with production ready tools that have been shown to save time and money. Reduce your time to market by more than 20%.'),(135904,4060,'_flexible_templates_3_scale_demands_1_copy','field_6256aa986187e_field_6254fdc0efa29'),(135905,4060,'flexible_templates_3_scale_demands_1_cta','a:3:{s:5:\"title\";s:20:\"Speed Up Development\";s:3:\"url\";s:38:\"https://translucent.local/tekstack-ai/\";s:6:\"target\";s:0:\"\";}'),(135906,4060,'_flexible_templates_3_scale_demands_1_cta','field_6256aab66187f_field_62551b3e101c4'),(135907,4060,'flexible_templates_3_scale_demands_2_icon',''),(135908,4060,'_flexible_templates_3_scale_demands_2_icon','field_6256aa4e6187c_field_62550482480cb'),(135909,4060,'flexible_templates_3_scale_demands_2_heading','TEKProcess'),(135910,4060,'_flexible_templates_3_scale_demands_2_heading','field_6256aa866187d_field_6254fdb2efa27'),(135911,4060,'flexible_templates_3_scale_demands_2_copy','Our approach to cloud native development will organize your entire cloud native development process ​from conception to steady state and support, known as TEKProcess.'),(135912,4060,'_flexible_templates_3_scale_demands_2_copy','field_6256aa986187e_field_6254fdc0efa29'),(135913,4060,'flexible_templates_3_scale_demands_2_cta','a:3:{s:5:\"title\";s:24:\"Optimize Your Operations\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(135914,4060,'_flexible_templates_3_scale_demands_2_cta','field_6256aab66187f_field_62551b3e101c4'),(135915,4060,'flexible_templates_3_scale_demands','3'),(135916,4060,'_flexible_templates_3_scale_demands','field_6256aa366187b'),(135917,4060,'flexible_templates_4_heading','Reflect Your Operations Through Technology'),(135918,4060,'_flexible_templates_4_heading','field_6256acb5f89e4_field_6254fdb2efa27'),(135919,4060,'flexible_templates_4_sub_heading','CLOUD NATIVE ECOSYSTEM'),(135920,4060,'_flexible_templates_4_sub_heading','field_6256acc6f89e5_field_6254fdbaefa28'),(135921,4060,'flexible_templates_4_icon','4041'),(135922,4060,'_flexible_templates_4_icon','field_6256db0a20c28_field_62550482480cb'),(135923,4060,'flexible_templates_4_image',''),(135924,4060,'_flexible_templates_4_image','field_6257293fdf3c8_field_6254fdc5efa2a'),(135925,4060,'flexible_templates_4_technology_0_heading','Solve Problems Quick'),(135926,4060,'_flexible_templates_4_technology_0_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135927,4060,'flexible_templates_4_technology_0_sub_heading','How?'),(135928,4060,'_flexible_templates_4_technology_0_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135929,4060,'flexible_templates_4_technology_0_copy','Translucent is a data driven digital transformation company that uses technology to solve problems and modernize companies.'),(135930,4060,'_flexible_templates_4_technology_0_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135931,4060,'flexible_templates_4_technology_0_back_heading','Data Driven'),(135932,4060,'_flexible_templates_4_technology_0_back_heading','field_6256b2b61a441'),(135933,4060,'flexible_templates_4_technology_0_icon','4038'),(135934,4060,'_flexible_templates_4_technology_0_icon','field_6256b2be1a442_field_62550482480cb'),(135935,4060,'flexible_templates_4_technology_0_back_copy','We work closely with companies to analyze their business and discover new opportunities they did not know existed.'),(135936,4060,'_flexible_templates_4_technology_0_back_copy','field_6256b2e31a443'),(135937,4060,'flexible_templates_4_technology_0_image',''),(135938,4060,'_flexible_templates_4_technology_0_image','field_6256b3011a444_field_6254fdc5efa2a'),(135939,4060,'flexible_templates_4_technology_0_cta','a:3:{s:5:\"title\";s:13:\"Start Solving\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(135940,4060,'_flexible_templates_4_technology_0_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135941,4060,'flexible_templates_4_technology_1_heading','Automate Development Tasks'),(135942,4060,'_flexible_templates_4_technology_1_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135943,4060,'flexible_templates_4_technology_1_sub_heading','How?'),(135944,4060,'_flexible_templates_4_technology_1_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135945,4060,'flexible_templates_4_technology_1_copy','Simplify the intricacies of cloud applications by automating laborious tasks in the development process.'),(135946,4060,'_flexible_templates_4_technology_1_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135947,4060,'flexible_templates_4_technology_1_back_heading',''),(135948,4060,'_flexible_templates_4_technology_1_back_heading','field_6256b2b61a441'),(135949,4060,'flexible_templates_4_technology_1_icon','4040'),(135950,4060,'_flexible_templates_4_technology_1_icon','field_6256b2be1a442_field_62550482480cb'),(135951,4060,'flexible_templates_4_technology_1_back_copy','Translucent is one of just four kubernetes certified partners in Canada!'),(135952,4060,'_flexible_templates_4_technology_1_back_copy','field_6256b2e31a443'),(135953,4060,'flexible_templates_4_technology_1_image','4039'),(135954,4060,'_flexible_templates_4_technology_1_image','field_6256b3011a444_field_6254fdc5efa2a'),(135955,4060,'flexible_templates_4_technology_1_cta','a:3:{s:5:\"title\";s:16:\"Start Automating\";s:3:\"url\";s:59:\"https://translucent.local/kubernetes-professional-services/\";s:6:\"target\";s:0:\"\";}'),(135956,4060,'_flexible_templates_4_technology_1_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135957,4060,'flexible_templates_4_technology_2_heading','Build and Deploy Faster'),(135958,4060,'_flexible_templates_4_technology_2_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135959,4060,'flexible_templates_4_technology_2_sub_heading','How?'),(135960,4060,'_flexible_templates_4_technology_2_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135961,4060,'flexible_templates_4_technology_2_copy','Maximise earnings by building and deploying more features and faster.'),(135962,4060,'_flexible_templates_4_technology_2_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135963,4060,'flexible_templates_4_technology_2_back_heading',''),(135964,4060,'_flexible_templates_4_technology_2_back_heading','field_6256b2b61a441'),(135965,4060,'flexible_templates_4_technology_2_icon','4042'),(135966,4060,'_flexible_templates_4_technology_2_icon','field_6256b2be1a442_field_62550482480cb'),(135967,4060,'flexible_templates_4_technology_2_back_copy','Devops is the heartbeat of all Translucent services, and Translucent IS Devops.'),(135968,4060,'_flexible_templates_4_technology_2_back_copy','field_6256b2e31a443'),(135969,4060,'flexible_templates_4_technology_2_image',''),(135970,4060,'_flexible_templates_4_technology_2_image','field_6256b3011a444_field_6254fdc5efa2a'),(135971,4060,'flexible_templates_4_technology_2_cta','a:3:{s:5:\"title\";s:17:\"Unlock Efficiency\";s:3:\"url\";s:46:\"https://translucent.local/cloud-native-devops/\";s:6:\"target\";s:0:\"\";}'),(135972,4060,'_flexible_templates_4_technology_2_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135973,4060,'flexible_templates_4_technology_3_heading','Remain Secure as Possible'),(135974,4060,'_flexible_templates_4_technology_3_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135975,4060,'flexible_templates_4_technology_3_sub_heading','How?'),(135976,4060,'_flexible_templates_4_technology_3_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135977,4060,'flexible_templates_4_technology_3_copy','Reduce deliberate and incidental security vulnerabilities in your systems.'),(135978,4060,'_flexible_templates_4_technology_3_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135979,4060,'flexible_templates_4_technology_3_back_heading','Zero Trust'),(135980,4060,'_flexible_templates_4_technology_3_back_heading','field_6256b2b61a441'),(135981,4060,'flexible_templates_4_technology_3_icon','4043'),(135982,4060,'_flexible_templates_4_technology_3_icon','field_6256b2be1a442_field_62550482480cb'),(135983,4060,'flexible_templates_4_technology_3_back_copy','We are partnered with the best security teams to offer full end to end services.'),(135984,4060,'_flexible_templates_4_technology_3_back_copy','field_6256b2e31a443'),(135985,4060,'flexible_templates_4_technology_3_image',''),(135986,4060,'_flexible_templates_4_technology_3_image','field_6256b3011a444_field_6254fdc5efa2a'),(135987,4060,'flexible_templates_4_technology_3_cta','a:3:{s:5:\"title\";s:20:\"Protect What Matters\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(135988,4060,'_flexible_templates_4_technology_3_cta','field_6256ad66f89e9_field_62551b3e101c4'),(135989,4060,'flexible_templates_4_technology','6'),(135990,4060,'_flexible_templates_4_technology','field_6256acf8f89e6'),(135991,4060,'flexible_templates_4_technology_4_heading','Propel Your Business into The Future'),(135992,4060,'_flexible_templates_4_technology_4_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(135993,4060,'flexible_templates_4_technology_4_sub_heading','How?'),(135994,4060,'_flexible_templates_4_technology_4_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(135995,4060,'flexible_templates_4_technology_4_copy','Build new systems in the cloud, or Modernize legacy data and applications by rebuilding or migrating to a value-driven platform. '),(135996,4060,'_flexible_templates_4_technology_4_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(135997,4060,'flexible_templates_4_technology_4_back_heading','Application Development'),(135998,4060,'_flexible_templates_4_technology_4_back_heading','field_6256b2b61a441'),(135999,4060,'flexible_templates_4_technology_4_icon','4047'),(136000,4060,'_flexible_templates_4_technology_4_icon','field_6256b2be1a442_field_62550482480cb'),(136001,4060,'flexible_templates_4_technology_4_back_copy','We develop intelligent apps for fintech, healthcare, and any other data-driven journey.'),(136002,4060,'_flexible_templates_4_technology_4_back_copy','field_6256b2e31a443'),(136003,4060,'flexible_templates_4_technology_4_image',''),(136004,4060,'_flexible_templates_4_technology_4_image','field_6256b3011a444_field_6254fdc5efa2a'),(136005,4060,'flexible_templates_4_technology_4_cta','a:3:{s:5:\"title\";s:14:\"Build It Right\";s:3:\"url\";s:63:\"https://translucent.local/cloud-native-application-development/\";s:6:\"target\";s:0:\"\";}'),(136006,4060,'_flexible_templates_4_technology_4_cta','field_6256ad66f89e9_field_62551b3e101c4'),(136007,4060,'flexible_templates_4_technology_5_heading','Make Decisions Faster'),(136008,4060,'_flexible_templates_4_technology_5_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(136009,4060,'flexible_templates_4_technology_5_sub_heading','How?'),(136010,4060,'_flexible_templates_4_technology_5_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(136011,4060,'flexible_templates_4_technology_5_copy','Discover anomalies and opportunities faster than human intelligence!'),(136012,4060,'_flexible_templates_4_technology_5_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(136013,4060,'flexible_templates_4_technology_5_back_heading',''),(136014,4060,'_flexible_templates_4_technology_5_back_heading','field_6256b2b61a441'),(136015,4060,'flexible_templates_4_technology_5_icon','4048'),(136016,4060,'_flexible_templates_4_technology_5_icon','field_6256b2be1a442_field_62550482480cb'),(136017,4060,'flexible_templates_4_technology_5_back_copy','Extend the boundaries of your business by solving problems faster.'),(136018,4060,'_flexible_templates_4_technology_5_back_copy','field_6256b2e31a443'),(136019,4060,'flexible_templates_4_technology_5_image',''),(136020,4060,'_flexible_templates_4_technology_5_image','field_6256b3011a444_field_6254fdc5efa2a'),(136021,4060,'flexible_templates_4_technology_5_cta','a:3:{s:5:\"title\";s:22:\"Solve Complex Problems\";s:3:\"url\";s:52:\"https://translucent.local/services/machine-learning/\";s:6:\"target\";s:6:\"_blank\";}'),(136022,4060,'_flexible_templates_4_technology_5_cta','field_6256ad66f89e9_field_62551b3e101c4'),(136023,4060,'flexible_templates_5_image','4051'),(136024,4060,'_flexible_templates_5_image','field_6256dbdfc0c83_field_6254fdc5efa2a'),(136025,4060,'flexible_templates_5_mob_image','4050'),(136026,4060,'_flexible_templates_5_mob_image','field_6256dbeec0c84_field_6254fdcbefa2b'),(136027,4060,'flexible_templates_5_heading','Companies That We Work With'),(136028,4060,'_flexible_templates_5_heading','field_6256dc0cc0c85_field_6254fdb2efa27'),(136029,4060,'flexible_templates_5_technology_partner_0_heading','Teams looking for a trusted nearshore technology partner '),(136030,4060,'_flexible_templates_5_technology_partner_0_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(136031,4060,'flexible_templates_5_technology_partner_0_icon','4052'),(136032,4060,'_flexible_templates_5_technology_partner_0_icon','field_6256dc78c0c88_field_62550482480cb'),(136033,4060,'flexible_templates_5_technology_partner_0_copy','Your Dedicated Development Team. We bring the best people in the industry with various skills to develop and maintain the highest quality software.'),(136034,4060,'_flexible_templates_5_technology_partner_0_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(136035,4060,'flexible_templates_5_technology_partner_1_heading','Teams looking to a build state-of-the-art platform'),(136036,4060,'_flexible_templates_5_technology_partner_1_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(136037,4060,'flexible_templates_5_technology_partner_1_icon','4053'),(136038,4060,'_flexible_templates_5_technology_partner_1_icon','field_6256dc78c0c88_field_62550482480cb'),(136039,4060,'flexible_templates_5_technology_partner_1_copy','Industry-leading cloud native solutions that are backed by an award-winning process, teams, and production-ready data-driven platform.'),(136040,4060,'_flexible_templates_5_technology_partner_1_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(136041,4060,'flexible_templates_5_technology_partner_2_heading','Teams looking to outperform competition'),(136042,4060,'_flexible_templates_5_technology_partner_2_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(136043,4060,'flexible_templates_5_technology_partner_2_icon','4054'),(136044,4060,'_flexible_templates_5_technology_partner_2_icon','field_6256dc78c0c88_field_62550482480cb'),(136045,4060,'flexible_templates_5_technology_partner_2_copy','Gain a major competitive advantage by increasing speed to market by 20%, allowing you to make business moves more quickly.'),(136046,4060,'_flexible_templates_5_technology_partner_2_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(136047,4060,'flexible_templates_5_technology_partner','3'),(136048,4060,'_flexible_templates_5_technology_partner','field_6256dc3fc0c86'),(136049,4060,'flexible_templates_6_heading','WHY TRANSLUCENT'),(136050,4060,'_flexible_templates_6_heading','field_62590b7cdf000_field_6254fdb2efa27'),(136051,4060,'flexible_templates_6_sub_heading','How Translucent Powered by TEK Differs From Alternative Solutions'),(136052,4060,'_flexible_templates_6_sub_heading','field_62590b8bdf001_field_6254fdbaefa28'),(136053,4060,'flexible_templates_6_icon','4013'),(136054,4060,'_flexible_templates_6_icon','field_62590bc5df002_field_62550482480cb'),(136055,4060,'flexible_templates_6_differential_translucent_header_0_heading','Your needs'),(136056,4060,'_flexible_templates_6_differential_translucent_header_0_heading','field_62590c01df004_field_6254fdb2efa27'),(136057,4060,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(136058,4060,'_flexible_templates_6_differential_translucent_header_0_color','field_62590c11df005'),(136059,4060,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(136060,4060,'_flexible_templates_6_differential_translucent_header_1_heading','field_62590c01df004_field_6254fdb2efa27'),(136061,4060,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(136062,4060,'_flexible_templates_6_differential_translucent_header_1_color','field_62590c11df005'),(136063,4060,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore teams'),(136064,4060,'_flexible_templates_6_differential_translucent_header_2_heading','field_62590c01df004_field_6254fdb2efa27'),(136065,4060,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(136066,4060,'_flexible_templates_6_differential_translucent_header_2_color','field_62590c11df005'),(136067,4060,'flexible_templates_6_differential_translucent_header_3_heading','Hiring in-house developers'),(136068,4060,'_flexible_templates_6_differential_translucent_header_3_heading','field_62590c01df004_field_6254fdb2efa27'),(136069,4060,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(136070,4060,'_flexible_templates_6_differential_translucent_header_3_color','field_62590c11df005'),(136071,4060,'flexible_templates_6_differential_translucent_header','5'),(136072,4060,'_flexible_templates_6_differential_translucent_header','field_62590bf9df003'),(136073,4060,'flexible_templates_6_differential_translucent','1'),(136074,4060,'_flexible_templates_6_differential_translucent','field_62590c30df006'),(136075,4060,'flexible_templates_6_differential_translucent_header_4_heading','Working with Translucent'),(136076,4060,'_flexible_templates_6_differential_translucent_header_4_heading','field_62590c01df004_field_6254fdb2efa27'),(136077,4060,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(136078,4060,'_flexible_templates_6_differential_translucent_header_4_color','field_62590c11df005'),(136079,4060,'flexible_templates_6_differential_translucent_0_column_1',''),(136080,4060,'_flexible_templates_6_differential_translucent_0_column_1','field_62590c30df008'),(136081,4060,'flexible_templates_6_differential_translucent_0_column_2',''),(136082,4060,'_flexible_templates_6_differential_translucent_0_column_2','field_62590c30df00a'),(136083,4060,'flexible_templates_6_differential_translucent_0_column_2_color',''),(136084,4060,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62590c30df00b'),(136085,4060,'flexible_templates_6_differential_translucent_0_column_3',''),(136086,4060,'_flexible_templates_6_differential_translucent_0_column_3','field_62590c30df00d'),(136087,4060,'flexible_templates_6_differential_translucent_0_column_3_color',''),(136088,4060,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62590c30df00e'),(136089,4060,'flexible_templates_6_differential_translucent_0_column_4',''),(136090,4060,'_flexible_templates_6_differential_translucent_0_column_4','field_62590c30df010'),(136091,4060,'flexible_templates_6_differential_translucent_0_column_4_color',''),(136092,4060,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62590c30df011'),(136093,4060,'flexible_templates_6_differential_translucent_0_column_5',''),(136094,4060,'_flexible_templates_6_differential_translucent_0_column_5','field_62590c30df013'),(136095,4060,'flexible_templates_6_differential_translucent_0_column_5_color',''),(136096,4060,'_flexible_templates_6_differential_translucent_0_column_5_color','field_62590c30df014'),(136097,4060,'flexible_templates_7_heading','We have a future vision that is in sync with the realities that our clients are currently facing'),(136098,4060,'_flexible_templates_7_heading','field_625733105d792_field_6254fdb2efa27'),(136099,4060,'flexible_templates_7_copy_wysiwyg','Translucent is a pioneer in cloud native application development. We created our own solutions, which we call TEK : Translucent Expert Knowledge. Our culture fosters innovation.'),(136100,4060,'_flexible_templates_7_copy_wysiwyg','field_625733205d793_field_6255310ecf4de'),(136101,4060,'flexible_templates_7_image','4057'),(136102,4060,'_flexible_templates_7_image','field_625733375d794_field_6254fdc5efa2a'),(136103,4060,'flexible_templates_7_icon','4058'),(136104,4060,'_flexible_templates_7_icon','field_625733495d795_field_62550482480cb'),(136105,4060,'flexible_templates_7_sick_kids_text',''),(136106,4060,'_flexible_templates_7_sick_kids_text','field_62573ad019bd0'),(136107,4060,'flexible_templates_7_tek_stack_case','TEK in Action'),(136108,4060,'_flexible_templates_7_tek_stack_case','field_625733b05d797'),(136109,4060,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:36:\"See How We Helped Sick Kids Hospital\";s:3:\"url\";s:70:\"https://translucent.local/case-studies/the-hospital-for-sick-children/\";s:6:\"target\";s:0:\"\";}'),(136110,4060,'_flexible_templates_7_cta','field_625733895d796_field_62551b3e101c4'),(136111,4060,'flexible_templates_8_heading','We treat your business like our own.'),(136112,4060,'_flexible_templates_8_heading','field_625565e14146d_field_6254fdb2efa27'),(136113,4060,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:10:\"Let\'s talk\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(136114,4060,'_flexible_templates_8_cta','field_625565fa4146e_field_62551b3e101c4'),(136118,4061,'flexible_templates','a:9:{i:0;s:19:\"cloud_native_banner\";i:1;s:35:\"cloud_native_expert_dedicated_teams\";i:2;s:39:\"cloud_native_solving_digital_challenges\";i:3;s:26:\"cloud_native_scale_demands\";i:4;s:22:\"cloud_native_ecosystem\";i:5;s:31:\"cloud_native_technology_partner\";i:6;s:37:\"cloud_native_translucent_differential\";i:7;s:26:\"cloud_nature_future_vision\";i:8;s:17:\"lets_talk_section\";}'),(136119,4061,'_flexible_templates','field_6254f4d84ef9b'),(136120,4061,'flexible_templates_0_image','4030'),(136121,4061,'_flexible_templates_0_image','field_62569b35f7c63_field_6254fdc5efa2a'),(136122,4061,'flexible_templates_0_icon','4013'),(136123,4061,'_flexible_templates_0_icon','field_62569b69f7c64_field_62550482480cb'),(136124,4061,'flexible_templates_0_heading','Solve Digital Challenges with a Complete Cloud Native Solution'),(136125,4061,'_flexible_templates_0_heading','field_62569b87f7c65_field_6254fdb2efa27'),(136126,4061,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(136127,4061,'_flexible_templates_0_sub_heading','field_62569ba5f7c66_field_6254fdbaefa28'),(136128,4061,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:23:\"Transform Your Business\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(136129,4061,'_flexible_templates_0_cta','field_62569bcff7c67_field_62551b3e101c4'),(136130,4061,'flexible_templates_1_image','4031'),(136131,4061,'_flexible_templates_1_image','field_6256a05dda66c_field_6254fdc5efa2a'),(136132,4061,'flexible_templates_1_heading','Expert dedicated teams for your cloud native project.'),(136133,4061,'_flexible_templates_1_heading','field_62569f6d3c0ad_field_6254fdb2efa27'),(136134,4061,'flexible_templates_1_sub_heading','DATA-DRIVEN TRUSTED TECHNOLOGY PARTNER'),(136135,4061,'_flexible_templates_1_sub_heading','field_62569f7a3c0ae_field_6254fdbaefa28'),(136136,4061,'flexible_templates_1_copy','Our expert software engineering teams develop intelligent apps for fintech, healthcare, automotive, and any other data-driven journey, with over 10 years of experience in large scale complex project. Enable your business to reflect its operations through technology while helping it become more dynamic, secure, and easier to scale by increasing speed to market. As a pioneer in cloud native application development we have a proven track record of solving digital transformation challenges for enterprises.'),(136137,4061,'_flexible_templates_1_copy','field_6256a175dc200_field_6254fdc0efa29'),(136138,4061,'flexible_templates_1_copy_long',''),(136139,4061,'_flexible_templates_1_copy_long','field_6256a026da66a'),(136140,4061,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:12:\"How We Do It\";s:3:\"url\";s:36:\"https://translucent.local/tek-world/\";s:6:\"target\";s:0:\"\";}'),(136141,4061,'_flexible_templates_1_cta','field_6256a03ada66b_field_62551b3e101c4'),(136142,4061,'flexible_templates_2_heading','Three paths to Cloud Native'),(136143,4061,'_flexible_templates_2_heading','field_6256a640dea7c_field_6254fdb2efa27'),(136144,4061,'flexible_templates_2_sub_heading','SOLVING DIGITAL CHALLENGES'),(136145,4061,'_flexible_templates_2_sub_heading','field_6256a66cdea7d_field_6254fdbaefa28'),(136146,4061,'flexible_templates_2_posts_grid_0_icon','4033'),(136147,4061,'_flexible_templates_2_posts_grid_0_icon','field_6256a6c0dea7f_field_62550482480cb'),(136148,4061,'flexible_templates_2_posts_grid_0_heading','Build'),(136149,4061,'_flexible_templates_2_posts_grid_0_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(136150,4061,'flexible_templates_2_posts_grid_0_copy','We\'re not just a software company. We\'re the people who help your business achieve its digital transformation vision. From strategy to implementation, we\'ll support you with our cloud native, data driven technology and digital transformation expertise. '),(136151,4061,'_flexible_templates_2_posts_grid_0_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(136152,4061,'flexible_templates_2_posts_grid_0_cta',''),(136153,4061,'_flexible_templates_2_posts_grid_0_cta','field_6256a6f8dea82_field_62551b3e101c4'),(136154,4061,'flexible_templates_2_posts_grid_1_icon','4034'),(136155,4061,'_flexible_templates_2_posts_grid_1_icon','field_6256a6c0dea7f_field_62550482480cb'),(136156,4061,'flexible_templates_2_posts_grid_1_heading','ReBuild'),(136157,4061,'_flexible_templates_2_posts_grid_1_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(136158,4061,'flexible_templates_2_posts_grid_1_copy','Break free from the limitations of your old legacy technology by rebuilding your business critical application components without affecting the original specifications, requirements, and business logic. This will improve scalability, maintainability, and reliability.\r\n'),(136159,4061,'_flexible_templates_2_posts_grid_1_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(136160,4061,'flexible_templates_2_posts_grid_1_cta',''),(136161,4061,'_flexible_templates_2_posts_grid_1_cta','field_6256a6f8dea82_field_62551b3e101c4'),(136162,4061,'flexible_templates_2_posts_grid_2_icon','4035'),(136163,4061,'_flexible_templates_2_posts_grid_2_icon','field_6256a6c0dea7f_field_62550482480cb'),(136164,4061,'flexible_templates_2_posts_grid_2_heading','RePlatform'),(136165,4061,'_flexible_templates_2_posts_grid_2_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(136166,4061,'flexible_templates_2_posts_grid_2_copy','Migrate your old application to a new runtime platform. When upgrading to a cloud native application platform, we repurpose the useable components from your legacy technology, and minimize changes to code and structure.'),(136167,4061,'_flexible_templates_2_posts_grid_2_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(136168,4061,'flexible_templates_2_posts_grid_2_cta',''),(136169,4061,'_flexible_templates_2_posts_grid_2_cta','field_6256a6f8dea82_field_62551b3e101c4'),(136170,4061,'flexible_templates_2_posts_grid','3'),(136171,4061,'_flexible_templates_2_posts_grid','field_6256a698dea7e'),(136172,4061,'flexible_templates_2_cta','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://translucent.local/cloud-native-application-development/\";s:6:\"target\";s:0:\"\";}'),(136173,4061,'_flexible_templates_2_cta','field_6256a725dea83_field_62551b3e101c4'),(136174,4061,'flexible_templates_3_heading','Scale According to your Demands'),(136175,4061,'_flexible_templates_3_heading','field_6256aa0c6187a_field_6254fdb2efa27'),(136176,4061,'flexible_templates_3_scale_demands_0_icon',''),(136177,4061,'_flexible_templates_3_scale_demands_0_icon','field_6256aa4e6187c_field_62550482480cb'),(136178,4061,'flexible_templates_3_scale_demands_0_heading','TEKTeams'),(136179,4061,'_flexible_templates_3_scale_demands_0_heading','field_6256aa866187d_field_6254fdb2efa27'),(136180,4061,'flexible_templates_3_scale_demands_0_copy','On-demand resources that may be used whenever and wherever you need them. Increase your workforce by partnering with teams tailored to your business needs.'),(136181,4061,'_flexible_templates_3_scale_demands_0_copy','field_6256aa986187e_field_6254fdc0efa29'),(136182,4061,'flexible_templates_3_scale_demands_0_cta','a:3:{s:5:\"title\";s:16:\"Scale Your Teams\";s:3:\"url\";s:34:\"https://translucent.local/tekteams\";s:6:\"target\";s:0:\"\";}'),(136183,4061,'_flexible_templates_3_scale_demands_0_cta','field_6256aab66187f_field_62551b3e101c4'),(136184,4061,'flexible_templates_3_scale_demands_1_icon',''),(136185,4061,'_flexible_templates_3_scale_demands_1_icon','field_6256aa4e6187c_field_62550482480cb'),(136186,4061,'flexible_templates_3_scale_demands_1_heading','TEKStack AI'),(136187,4061,'_flexible_templates_3_scale_demands_1_heading','field_6256aa866187d_field_6254fdb2efa27'),(136188,4061,'flexible_templates_3_scale_demands_1_copy','TEKStack AI has perfected the complex process of working with production ready tools that have been shown to save time and money. Reduce your time to market by more than 20%.'),(136189,4061,'_flexible_templates_3_scale_demands_1_copy','field_6256aa986187e_field_6254fdc0efa29'),(136190,4061,'flexible_templates_3_scale_demands_1_cta','a:3:{s:5:\"title\";s:20:\"Speed Up Development\";s:3:\"url\";s:38:\"https://translucent.local/tekstack-ai/\";s:6:\"target\";s:0:\"\";}'),(136191,4061,'_flexible_templates_3_scale_demands_1_cta','field_6256aab66187f_field_62551b3e101c4'),(136192,4061,'flexible_templates_3_scale_demands_2_icon',''),(136193,4061,'_flexible_templates_3_scale_demands_2_icon','field_6256aa4e6187c_field_62550482480cb'),(136194,4061,'flexible_templates_3_scale_demands_2_heading','TEKProcess'),(136195,4061,'_flexible_templates_3_scale_demands_2_heading','field_6256aa866187d_field_6254fdb2efa27'),(136196,4061,'flexible_templates_3_scale_demands_2_copy','Our approach to cloud native development will organize your entire cloud native development process ​from conception to steady state and support, known as TEKProcess.'),(136197,4061,'_flexible_templates_3_scale_demands_2_copy','field_6256aa986187e_field_6254fdc0efa29'),(136198,4061,'flexible_templates_3_scale_demands_2_cta','a:3:{s:5:\"title\";s:24:\"Optimize Your Operations\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(136199,4061,'_flexible_templates_3_scale_demands_2_cta','field_6256aab66187f_field_62551b3e101c4'),(136200,4061,'flexible_templates_3_scale_demands','3'),(136201,4061,'_flexible_templates_3_scale_demands','field_6256aa366187b'),(136202,4061,'flexible_templates_4_heading','Reflect Your Operations Through Technology'),(136203,4061,'_flexible_templates_4_heading','field_6256acb5f89e4_field_6254fdb2efa27'),(136204,4061,'flexible_templates_4_sub_heading','CLOUD NATIVE ECOSYSTEM'),(136205,4061,'_flexible_templates_4_sub_heading','field_6256acc6f89e5_field_6254fdbaefa28'),(136206,4061,'flexible_templates_4_icon','4041'),(136207,4061,'_flexible_templates_4_icon','field_6256db0a20c28_field_62550482480cb'),(136208,4061,'flexible_templates_4_image',''),(136209,4061,'_flexible_templates_4_image','field_6257293fdf3c8_field_6254fdc5efa2a'),(136210,4061,'flexible_templates_4_technology_0_heading','Solve Problems Quick'),(136211,4061,'_flexible_templates_4_technology_0_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(136212,4061,'flexible_templates_4_technology_0_sub_heading','How?'),(136213,4061,'_flexible_templates_4_technology_0_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(136214,4061,'flexible_templates_4_technology_0_copy','Translucent is a data driven digital transformation company that uses technology to solve problems and modernize companies.'),(136215,4061,'_flexible_templates_4_technology_0_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(136216,4061,'flexible_templates_4_technology_0_back_heading','Data Driven'),(136217,4061,'_flexible_templates_4_technology_0_back_heading','field_6256b2b61a441'),(136218,4061,'flexible_templates_4_technology_0_icon','4038'),(136219,4061,'_flexible_templates_4_technology_0_icon','field_6256b2be1a442_field_62550482480cb'),(136220,4061,'flexible_templates_4_technology_0_back_copy','We work closely with companies to analyze their business and discover new opportunities they did not know existed.'),(136221,4061,'_flexible_templates_4_technology_0_back_copy','field_6256b2e31a443'),(136222,4061,'flexible_templates_4_technology_0_image',''),(136223,4061,'_flexible_templates_4_technology_0_image','field_6256b3011a444_field_6254fdc5efa2a'),(136224,4061,'flexible_templates_4_technology_0_cta','a:3:{s:5:\"title\";s:13:\"Start Solving\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(136225,4061,'_flexible_templates_4_technology_0_cta','field_6256ad66f89e9_field_62551b3e101c4'),(136226,4061,'flexible_templates_4_technology_1_heading','Automate Development Tasks'),(136227,4061,'_flexible_templates_4_technology_1_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(136228,4061,'flexible_templates_4_technology_1_sub_heading','How?'),(136229,4061,'_flexible_templates_4_technology_1_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(136230,4061,'flexible_templates_4_technology_1_copy','Simplify the intricacies of cloud applications by automating laborious tasks in the development process.'),(136231,4061,'_flexible_templates_4_technology_1_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(136232,4061,'flexible_templates_4_technology_1_back_heading',''),(136233,4061,'_flexible_templates_4_technology_1_back_heading','field_6256b2b61a441'),(136234,4061,'flexible_templates_4_technology_1_icon','4040'),(136235,4061,'_flexible_templates_4_technology_1_icon','field_6256b2be1a442_field_62550482480cb'),(136236,4061,'flexible_templates_4_technology_1_back_copy','Translucent is one of just four kubernetes certified partners in Canada!'),(136237,4061,'_flexible_templates_4_technology_1_back_copy','field_6256b2e31a443'),(136238,4061,'flexible_templates_4_technology_1_image','4039'),(136239,4061,'_flexible_templates_4_technology_1_image','field_6256b3011a444_field_6254fdc5efa2a'),(136240,4061,'flexible_templates_4_technology_1_cta','a:3:{s:5:\"title\";s:16:\"Start Automating\";s:3:\"url\";s:59:\"https://translucent.local/kubernetes-professional-services/\";s:6:\"target\";s:0:\"\";}'),(136241,4061,'_flexible_templates_4_technology_1_cta','field_6256ad66f89e9_field_62551b3e101c4'),(136242,4061,'flexible_templates_4_technology_2_heading','Build and Deploy Faster'),(136243,4061,'_flexible_templates_4_technology_2_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(136244,4061,'flexible_templates_4_technology_2_sub_heading','How?'),(136245,4061,'_flexible_templates_4_technology_2_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(136246,4061,'flexible_templates_4_technology_2_copy','Maximise earnings by building and deploying more features and faster.'),(136247,4061,'_flexible_templates_4_technology_2_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(136248,4061,'flexible_templates_4_technology_2_back_heading',''),(136249,4061,'_flexible_templates_4_technology_2_back_heading','field_6256b2b61a441'),(136250,4061,'flexible_templates_4_technology_2_icon','4042'),(136251,4061,'_flexible_templates_4_technology_2_icon','field_6256b2be1a442_field_62550482480cb'),(136252,4061,'flexible_templates_4_technology_2_back_copy','Devops is the heartbeat of all Translucent services, and Translucent IS Devops.'),(136253,4061,'_flexible_templates_4_technology_2_back_copy','field_6256b2e31a443'),(136254,4061,'flexible_templates_4_technology_2_image',''),(136255,4061,'_flexible_templates_4_technology_2_image','field_6256b3011a444_field_6254fdc5efa2a'),(136256,4061,'flexible_templates_4_technology_2_cta','a:3:{s:5:\"title\";s:17:\"Unlock Efficiency\";s:3:\"url\";s:46:\"https://translucent.local/cloud-native-devops/\";s:6:\"target\";s:0:\"\";}'),(136257,4061,'_flexible_templates_4_technology_2_cta','field_6256ad66f89e9_field_62551b3e101c4'),(136258,4061,'flexible_templates_4_technology_3_heading','Remain Secure as Possible'),(136259,4061,'_flexible_templates_4_technology_3_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(136260,4061,'flexible_templates_4_technology_3_sub_heading','How?'),(136261,4061,'_flexible_templates_4_technology_3_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(136262,4061,'flexible_templates_4_technology_3_copy','Reduce deliberate and incidental security vulnerabilities in your systems.'),(136263,4061,'_flexible_templates_4_technology_3_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(136264,4061,'flexible_templates_4_technology_3_back_heading','Zero Trust'),(136265,4061,'_flexible_templates_4_technology_3_back_heading','field_6256b2b61a441'),(136266,4061,'flexible_templates_4_technology_3_icon','4043'),(136267,4061,'_flexible_templates_4_technology_3_icon','field_6256b2be1a442_field_62550482480cb'),(136268,4061,'flexible_templates_4_technology_3_back_copy','We are partnered with the best security teams to offer full end to end services.'),(136269,4061,'_flexible_templates_4_technology_3_back_copy','field_6256b2e31a443'),(136270,4061,'flexible_templates_4_technology_3_image',''),(136271,4061,'_flexible_templates_4_technology_3_image','field_6256b3011a444_field_6254fdc5efa2a'),(136272,4061,'flexible_templates_4_technology_3_cta','a:3:{s:5:\"title\";s:20:\"Protect What Matters\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(136273,4061,'_flexible_templates_4_technology_3_cta','field_6256ad66f89e9_field_62551b3e101c4'),(136274,4061,'flexible_templates_4_technology','6'),(136275,4061,'_flexible_templates_4_technology','field_6256acf8f89e6'),(136276,4061,'flexible_templates_4_technology_4_heading','Propel Your Business into The Future'),(136277,4061,'_flexible_templates_4_technology_4_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(136278,4061,'flexible_templates_4_technology_4_sub_heading','How?'),(136279,4061,'_flexible_templates_4_technology_4_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(136280,4061,'flexible_templates_4_technology_4_copy','Build new systems in the cloud, or Modernize legacy data and applications by rebuilding or migrating to a value-driven platform. '),(136281,4061,'_flexible_templates_4_technology_4_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(136282,4061,'flexible_templates_4_technology_4_back_heading','Application Development'),(136283,4061,'_flexible_templates_4_technology_4_back_heading','field_6256b2b61a441'),(136284,4061,'flexible_templates_4_technology_4_icon','4047'),(136285,4061,'_flexible_templates_4_technology_4_icon','field_6256b2be1a442_field_62550482480cb'),(136286,4061,'flexible_templates_4_technology_4_back_copy','We develop intelligent apps for fintech, healthcare, and any other data-driven journey.'),(136287,4061,'_flexible_templates_4_technology_4_back_copy','field_6256b2e31a443'),(136288,4061,'flexible_templates_4_technology_4_image',''),(136289,4061,'_flexible_templates_4_technology_4_image','field_6256b3011a444_field_6254fdc5efa2a'),(136290,4061,'flexible_templates_4_technology_4_cta','a:3:{s:5:\"title\";s:14:\"Build It Right\";s:3:\"url\";s:63:\"https://translucent.local/cloud-native-application-development/\";s:6:\"target\";s:0:\"\";}'),(136291,4061,'_flexible_templates_4_technology_4_cta','field_6256ad66f89e9_field_62551b3e101c4'),(136292,4061,'flexible_templates_4_technology_5_heading','Make Decisions Faster'),(136293,4061,'_flexible_templates_4_technology_5_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(136294,4061,'flexible_templates_4_technology_5_sub_heading','How?'),(136295,4061,'_flexible_templates_4_technology_5_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(136296,4061,'flexible_templates_4_technology_5_copy','Discover anomalies and opportunities faster than human intelligence!'),(136297,4061,'_flexible_templates_4_technology_5_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(136298,4061,'flexible_templates_4_technology_5_back_heading',''),(136299,4061,'_flexible_templates_4_technology_5_back_heading','field_6256b2b61a441'),(136300,4061,'flexible_templates_4_technology_5_icon','4048'),(136301,4061,'_flexible_templates_4_technology_5_icon','field_6256b2be1a442_field_62550482480cb'),(136302,4061,'flexible_templates_4_technology_5_back_copy','Extend the boundaries of your business by solving problems faster.'),(136303,4061,'_flexible_templates_4_technology_5_back_copy','field_6256b2e31a443'),(136304,4061,'flexible_templates_4_technology_5_image',''),(136305,4061,'_flexible_templates_4_technology_5_image','field_6256b3011a444_field_6254fdc5efa2a'),(136306,4061,'flexible_templates_4_technology_5_cta','a:3:{s:5:\"title\";s:22:\"Solve Complex Problems\";s:3:\"url\";s:52:\"https://translucent.local/services/machine-learning/\";s:6:\"target\";s:6:\"_blank\";}'),(136307,4061,'_flexible_templates_4_technology_5_cta','field_6256ad66f89e9_field_62551b3e101c4'),(136308,4061,'flexible_templates_5_image','4051'),(136309,4061,'_flexible_templates_5_image','field_6256dbdfc0c83_field_6254fdc5efa2a'),(136310,4061,'flexible_templates_5_mob_image','4050'),(136311,4061,'_flexible_templates_5_mob_image','field_6256dbeec0c84_field_6254fdcbefa2b'),(136312,4061,'flexible_templates_5_heading','Companies That We Work With'),(136313,4061,'_flexible_templates_5_heading','field_6256dc0cc0c85_field_6254fdb2efa27'),(136314,4061,'flexible_templates_5_technology_partner_0_heading','Teams looking for a trusted nearshore technology partner '),(136315,4061,'_flexible_templates_5_technology_partner_0_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(136316,4061,'flexible_templates_5_technology_partner_0_icon','4052'),(136317,4061,'_flexible_templates_5_technology_partner_0_icon','field_6256dc78c0c88_field_62550482480cb'),(136318,4061,'flexible_templates_5_technology_partner_0_copy','Your Dedicated Development Team. We bring the best people in the industry with various skills to develop and maintain the highest quality software.'),(136319,4061,'_flexible_templates_5_technology_partner_0_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(136320,4061,'flexible_templates_5_technology_partner_1_heading','Teams looking to a build state-of-the-art platform'),(136321,4061,'_flexible_templates_5_technology_partner_1_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(136322,4061,'flexible_templates_5_technology_partner_1_icon','4053'),(136323,4061,'_flexible_templates_5_technology_partner_1_icon','field_6256dc78c0c88_field_62550482480cb'),(136324,4061,'flexible_templates_5_technology_partner_1_copy','Industry-leading cloud native solutions that are backed by an award-winning process, teams, and production-ready data-driven platform.'),(136325,4061,'_flexible_templates_5_technology_partner_1_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(136326,4061,'flexible_templates_5_technology_partner_2_heading','Teams looking to outperform competition'),(136327,4061,'_flexible_templates_5_technology_partner_2_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(136328,4061,'flexible_templates_5_technology_partner_2_icon','4054'),(136329,4061,'_flexible_templates_5_technology_partner_2_icon','field_6256dc78c0c88_field_62550482480cb'),(136330,4061,'flexible_templates_5_technology_partner_2_copy','Gain a major competitive advantage by increasing speed to market by 20%, allowing you to make business moves more quickly.'),(136331,4061,'_flexible_templates_5_technology_partner_2_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(136332,4061,'flexible_templates_5_technology_partner','3'),(136333,4061,'_flexible_templates_5_technology_partner','field_6256dc3fc0c86'),(136334,4061,'flexible_templates_6_heading','WHY TRANSLUCENT'),(136335,4061,'_flexible_templates_6_heading','field_62590b7cdf000_field_6254fdb2efa27'),(136336,4061,'flexible_templates_6_sub_heading','How Translucent Powered by TEK Differs From Alternative Solutions'),(136337,4061,'_flexible_templates_6_sub_heading','field_62590b8bdf001_field_6254fdbaefa28'),(136338,4061,'flexible_templates_6_icon','4013'),(136339,4061,'_flexible_templates_6_icon','field_62590bc5df002_field_62550482480cb'),(136340,4061,'flexible_templates_6_differential_translucent_header_0_heading','Your needs'),(136341,4061,'_flexible_templates_6_differential_translucent_header_0_heading','field_62590c01df004_field_6254fdb2efa27'),(136342,4061,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(136343,4061,'_flexible_templates_6_differential_translucent_header_0_color','field_62590c11df005'),(136344,4061,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(136345,4061,'_flexible_templates_6_differential_translucent_header_1_heading','field_62590c01df004_field_6254fdb2efa27'),(136346,4061,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(136347,4061,'_flexible_templates_6_differential_translucent_header_1_color','field_62590c11df005'),(136348,4061,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore teams'),(136349,4061,'_flexible_templates_6_differential_translucent_header_2_heading','field_62590c01df004_field_6254fdb2efa27'),(136350,4061,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(136351,4061,'_flexible_templates_6_differential_translucent_header_2_color','field_62590c11df005'),(136352,4061,'flexible_templates_6_differential_translucent_header_3_heading','Hiring in-house developers'),(136353,4061,'_flexible_templates_6_differential_translucent_header_3_heading','field_62590c01df004_field_6254fdb2efa27'),(136354,4061,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(136355,4061,'_flexible_templates_6_differential_translucent_header_3_color','field_62590c11df005'),(136356,4061,'flexible_templates_6_differential_translucent_header','5'),(136357,4061,'_flexible_templates_6_differential_translucent_header','field_62590bf9df003'),(136358,4061,'flexible_templates_6_differential_translucent','1'),(136359,4061,'_flexible_templates_6_differential_translucent','field_62590c30df006'),(136360,4061,'flexible_templates_6_differential_translucent_header_4_heading','Working with Translucent'),(136361,4061,'_flexible_templates_6_differential_translucent_header_4_heading','field_62590c01df004_field_6254fdb2efa27'),(136362,4061,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(136363,4061,'_flexible_templates_6_differential_translucent_header_4_color','field_62590c11df005'),(136364,4061,'flexible_templates_6_differential_translucent_0_column_1',''),(136365,4061,'_flexible_templates_6_differential_translucent_0_column_1','field_62590c30df008'),(136366,4061,'flexible_templates_6_differential_translucent_0_column_2',''),(136367,4061,'_flexible_templates_6_differential_translucent_0_column_2','field_62590c30df00a'),(136368,4061,'flexible_templates_6_differential_translucent_0_column_2_color',''),(136369,4061,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62590c30df00b'),(136370,4061,'flexible_templates_6_differential_translucent_0_column_3',''),(136371,4061,'_flexible_templates_6_differential_translucent_0_column_3','field_62590c30df00d'),(136372,4061,'flexible_templates_6_differential_translucent_0_column_3_color',''),(136373,4061,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62590c30df00e'),(136374,4061,'flexible_templates_6_differential_translucent_0_column_4',''),(136375,4061,'_flexible_templates_6_differential_translucent_0_column_4','field_62590c30df010'),(136376,4061,'flexible_templates_6_differential_translucent_0_column_4_color',''),(136377,4061,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62590c30df011'),(136378,4061,'flexible_templates_6_differential_translucent_0_column_5',''),(136379,4061,'_flexible_templates_6_differential_translucent_0_column_5','field_62590c30df013'),(136380,4061,'flexible_templates_6_differential_translucent_0_column_5_color',''),(136381,4061,'_flexible_templates_6_differential_translucent_0_column_5_color','field_62590c30df014'),(136382,4061,'flexible_templates_7_heading','We have a future vision that is in sync with the realities that our clients are currently facing'),(136383,4061,'_flexible_templates_7_heading','field_625733105d792_field_6254fdb2efa27'),(136384,4061,'flexible_templates_7_copy_wysiwyg','Translucent is a pioneer in cloud native application development. We created our own solutions, which we call TEK : Translucent Expert Knowledge. Our culture fosters innovation.'),(136385,4061,'_flexible_templates_7_copy_wysiwyg','field_625733205d793_field_6255310ecf4de'),(136386,4061,'flexible_templates_7_image','4057'),(136387,4061,'_flexible_templates_7_image','field_625733375d794_field_6254fdc5efa2a'),(136388,4061,'flexible_templates_7_icon','4058'),(136389,4061,'_flexible_templates_7_icon','field_625733495d795_field_62550482480cb'),(136390,4061,'flexible_templates_7_sick_kids_text',''),(136391,4061,'_flexible_templates_7_sick_kids_text','field_62573ad019bd0'),(136392,4061,'flexible_templates_7_tek_stack_case','TEK in Action'),(136393,4061,'_flexible_templates_7_tek_stack_case','field_625733b05d797'),(136394,4061,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:36:\"See How We Helped Sick Kids Hospital\";s:3:\"url\";s:70:\"https://translucent.local/case-studies/the-hospital-for-sick-children/\";s:6:\"target\";s:0:\"\";}'),(136395,4061,'_flexible_templates_7_cta','field_625733895d796_field_62551b3e101c4'),(136396,4061,'flexible_templates_8_heading','We treat your business like our own.'),(136397,4061,'_flexible_templates_8_heading','field_625565e14146d_field_6254fdb2efa27'),(136398,4061,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:10:\"Let\'s talk\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(136399,4061,'_flexible_templates_8_cta','field_625565fa4146e_field_62551b3e101c4'),(136403,4028,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (Speed to market)'),(136404,4028,'_flexible_templates_6_differential_translucent_1_column_1','field_62590c30df008'),(136405,4028,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(136406,4028,'_flexible_templates_6_differential_translucent_1_column_2','field_62590c30df00a'),(136407,4028,'flexible_templates_6_differential_translucent_1_column_2_color','#ff555f'),(136408,4028,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62590c30df00b'),(136409,4028,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(136410,4028,'_flexible_templates_6_differential_translucent_1_column_3','field_62590c30df00d'),(136411,4028,'flexible_templates_6_differential_translucent_1_column_3_color','#7080a7'),(136412,4028,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62590c30df00e'),(136413,4028,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(136414,4028,'_flexible_templates_6_differential_translucent_1_column_4','field_62590c30df010'),(136415,4028,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(136416,4028,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62590c30df011'),(136417,4028,'flexible_templates_6_differential_translucent_1_column_5','Always'),(136418,4028,'_flexible_templates_6_differential_translucent_1_column_5','field_62590c30df013'),(136419,4028,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(136420,4028,'_flexible_templates_6_differential_translucent_1_column_5_color','field_62590c30df014'),(136421,4028,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(136422,4028,'_flexible_templates_6_differential_translucent_2_column_1','field_62590c30df008'),(136423,4028,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(136424,4028,'_flexible_templates_6_differential_translucent_2_column_2','field_62590c30df00a'),(136425,4028,'flexible_templates_6_differential_translucent_2_column_2_color','#7080a7'),(136426,4028,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62590c30df00b'),(136427,4028,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(136428,4028,'_flexible_templates_6_differential_translucent_2_column_3','field_62590c30df00d'),(136429,4028,'flexible_templates_6_differential_translucent_2_column_3_color','#ff555f'),(136430,4028,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62590c30df00e'),(136431,4028,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(136432,4028,'_flexible_templates_6_differential_translucent_2_column_4','field_62590c30df010'),(136433,4028,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(136434,4028,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62590c30df011'),(136435,4028,'flexible_templates_6_differential_translucent_2_column_5','Always'),(136436,4028,'_flexible_templates_6_differential_translucent_2_column_5','field_62590c30df013'),(136437,4028,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(136438,4028,'_flexible_templates_6_differential_translucent_2_column_5_color','field_62590c30df014'),(136439,4028,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(136440,4028,'_flexible_templates_6_differential_translucent_3_column_1','field_62590c30df008'),(136441,4028,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(136442,4028,'_flexible_templates_6_differential_translucent_3_column_2','field_62590c30df00a'),(136443,4028,'flexible_templates_6_differential_translucent_3_column_2_color','#7080a7'),(136444,4028,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62590c30df00b'),(136445,4028,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(136446,4028,'_flexible_templates_6_differential_translucent_3_column_3','field_62590c30df00d'),(136447,4028,'flexible_templates_6_differential_translucent_3_column_3_color','#ff555f'),(136448,4028,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62590c30df00e'),(136449,4028,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(136450,4028,'_flexible_templates_6_differential_translucent_3_column_4','field_62590c30df010'),(136451,4028,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(136452,4028,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62590c30df011'),(136453,4028,'flexible_templates_6_differential_translucent_3_column_5','Always'),(136454,4028,'_flexible_templates_6_differential_translucent_3_column_5','field_62590c30df013'),(136455,4028,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(136456,4028,'_flexible_templates_6_differential_translucent_3_column_5_color','field_62590c30df014'),(136457,4028,'flexible_templates_6_differential_translucent_4_column_1','No Recruiting Fees '),(136458,4028,'_flexible_templates_6_differential_translucent_4_column_1','field_62590c30df008'),(136459,4028,'flexible_templates_6_differential_translucent_4_column_2','Always'),(136460,4028,'_flexible_templates_6_differential_translucent_4_column_2','field_62590c30df00a'),(136461,4028,'flexible_templates_6_differential_translucent_4_column_2_color','#28d9cb'),(136462,4028,'_flexible_templates_6_differential_translucent_4_column_2_color','field_62590c30df00b'),(136463,4028,'flexible_templates_6_differential_translucent_4_column_3','Sometimes '),(136464,4028,'_flexible_templates_6_differential_translucent_4_column_3','field_62590c30df00d'),(136465,4028,'flexible_templates_6_differential_translucent_4_column_3_color','#ff555f'),(136466,4028,'_flexible_templates_6_differential_translucent_4_column_3_color','field_62590c30df00e'),(136467,4028,'flexible_templates_6_differential_translucent_4_column_4','Rare'),(136468,4028,'_flexible_templates_6_differential_translucent_4_column_4','field_62590c30df010'),(136469,4028,'flexible_templates_6_differential_translucent_4_column_4_color','#ff555f'),(136470,4028,'_flexible_templates_6_differential_translucent_4_column_4_color','field_62590c30df011'),(136471,4028,'flexible_templates_6_differential_translucent_4_column_5','Always'),(136472,4028,'_flexible_templates_6_differential_translucent_4_column_5','field_62590c30df013'),(136473,4028,'flexible_templates_6_differential_translucent_4_column_5_color','#24c1ff'),(136474,4028,'_flexible_templates_6_differential_translucent_4_column_5_color','field_62590c30df014'),(136475,4028,'flexible_templates_6_differential_translucent_5_column_1','Price predictability and transparency'),(136476,4028,'_flexible_templates_6_differential_translucent_5_column_1','field_62590c30df008'),(136477,4028,'flexible_templates_6_differential_translucent_5_column_2','Rare'),(136478,4028,'_flexible_templates_6_differential_translucent_5_column_2','field_62590c30df00a'),(136479,4028,'flexible_templates_6_differential_translucent_5_column_2_color','#ff555f'),(136480,4028,'_flexible_templates_6_differential_translucent_5_column_2_color','field_62590c30df00b'),(136481,4028,'flexible_templates_6_differential_translucent_5_column_3','Sometimes'),(136482,4028,'_flexible_templates_6_differential_translucent_5_column_3','field_62590c30df00d'),(136483,4028,'flexible_templates_6_differential_translucent_5_column_3_color','#7080a7'),(136484,4028,'_flexible_templates_6_differential_translucent_5_column_3_color','field_62590c30df00e'),(136485,4028,'flexible_templates_6_differential_translucent_5_column_4','Always'),(136486,4028,'_flexible_templates_6_differential_translucent_5_column_4','field_62590c30df010'),(136487,4028,'flexible_templates_6_differential_translucent_5_column_4_color','#28d9cb'),(136488,4028,'_flexible_templates_6_differential_translucent_5_column_4_color','field_62590c30df011'),(136489,4028,'flexible_templates_6_differential_translucent_5_column_5','Always'),(136490,4028,'_flexible_templates_6_differential_translucent_5_column_5','field_62590c30df013'),(136491,4028,'flexible_templates_6_differential_translucent_5_column_5_color','#24c1ff'),(136492,4028,'_flexible_templates_6_differential_translucent_5_column_5_color','field_62590c30df014'),(136493,4028,'flexible_templates_6_differential_translucent_6_column_1','Affordability'),(136494,4028,'_flexible_templates_6_differential_translucent_6_column_1','field_62590c30df008'),(136495,4028,'flexible_templates_6_differential_translucent_6_column_2','Rare'),(136496,4028,'_flexible_templates_6_differential_translucent_6_column_2','field_62590c30df00a'),(136497,4028,'flexible_templates_6_differential_translucent_6_column_2_color','#ff555f'),(136498,4028,'_flexible_templates_6_differential_translucent_6_column_2_color','field_62590c30df00b'),(136499,4028,'flexible_templates_6_differential_translucent_6_column_3','Sometimes'),(136500,4028,'_flexible_templates_6_differential_translucent_6_column_3','field_62590c30df00d'),(136501,4028,'flexible_templates_6_differential_translucent_6_column_3_color','#7080a7'),(136502,4028,'_flexible_templates_6_differential_translucent_6_column_3_color','field_62590c30df00e'),(136503,4028,'flexible_templates_6_differential_translucent_6_column_4','Sometimes'),(136504,4028,'_flexible_templates_6_differential_translucent_6_column_4','field_62590c30df010'),(136505,4028,'flexible_templates_6_differential_translucent_6_column_4_color','#7080a7'),(136506,4028,'_flexible_templates_6_differential_translucent_6_column_4_color','field_62590c30df011'),(136507,4028,'flexible_templates_6_differential_translucent_6_column_5','Always'),(136508,4028,'_flexible_templates_6_differential_translucent_6_column_5','field_62590c30df013'),(136509,4028,'flexible_templates_6_differential_translucent_6_column_5_color','#24c1ff'),(136510,4028,'_flexible_templates_6_differential_translucent_6_column_5_color','field_62590c30df014'),(136511,4028,'flexible_templates_6_differential_translucent_7_column_1','Security and confidentiality'),(136512,4028,'_flexible_templates_6_differential_translucent_7_column_1','field_62590c30df008'),(136513,4028,'flexible_templates_6_differential_translucent_7_column_2','Sometimes'),(136514,4028,'_flexible_templates_6_differential_translucent_7_column_2','field_62590c30df00a'),(136515,4028,'flexible_templates_6_differential_translucent_7_column_2_color','#7080a7'),(136516,4028,'_flexible_templates_6_differential_translucent_7_column_2_color','field_62590c30df00b'),(136517,4028,'flexible_templates_6_differential_translucent_7_column_3','Rare'),(136518,4028,'_flexible_templates_6_differential_translucent_7_column_3','field_62590c30df00d'),(136519,4028,'flexible_templates_6_differential_translucent_7_column_3_color','#ff555f'),(136520,4028,'_flexible_templates_6_differential_translucent_7_column_3_color','field_62590c30df00e'),(136521,4028,'flexible_templates_6_differential_translucent_7_column_4','Always'),(136522,4028,'_flexible_templates_6_differential_translucent_7_column_4','field_62590c30df010'),(136523,4028,'flexible_templates_6_differential_translucent_7_column_4_color','#28d9cb'),(136524,4028,'_flexible_templates_6_differential_translucent_7_column_4_color','field_62590c30df011'),(136525,4028,'flexible_templates_6_differential_translucent_7_column_5','Always'),(136526,4028,'_flexible_templates_6_differential_translucent_7_column_5','field_62590c30df013'),(136527,4028,'flexible_templates_6_differential_translucent_7_column_5_color','#24c1ff'),(136528,4028,'_flexible_templates_6_differential_translucent_7_column_5_color','field_62590c30df014'),(136529,4028,'flexible_templates_6_differential_translucent_8_column_1','Top 1% engineering talent'),(136530,4028,'_flexible_templates_6_differential_translucent_8_column_1','field_62590c30df008'),(136531,4028,'flexible_templates_6_differential_translucent_8_column_2','Sometimes'),(136532,4028,'_flexible_templates_6_differential_translucent_8_column_2','field_62590c30df00a'),(136533,4028,'flexible_templates_6_differential_translucent_8_column_2_color','#7080a7'),(136534,4028,'_flexible_templates_6_differential_translucent_8_column_2_color','field_62590c30df00b'),(136535,4028,'flexible_templates_6_differential_translucent_8_column_3','Rare'),(136536,4028,'_flexible_templates_6_differential_translucent_8_column_3','field_62590c30df00d'),(136537,4028,'flexible_templates_6_differential_translucent_8_column_3_color','#ff555f'),(136538,4028,'_flexible_templates_6_differential_translucent_8_column_3_color','field_62590c30df00e'),(136539,4028,'flexible_templates_6_differential_translucent_8_column_4','Sometimes'),(136540,4028,'_flexible_templates_6_differential_translucent_8_column_4','field_62590c30df010'),(136541,4028,'flexible_templates_6_differential_translucent_8_column_4_color','#7080a7'),(136542,4028,'_flexible_templates_6_differential_translucent_8_column_4_color','field_62590c30df011'),(136543,4028,'flexible_templates_6_differential_translucent_8_column_5','Always'),(136544,4028,'_flexible_templates_6_differential_translucent_8_column_5','field_62590c30df013'),(136545,4028,'flexible_templates_6_differential_translucent_8_column_5_color','#24c1ff'),(136546,4028,'_flexible_templates_6_differential_translucent_8_column_5_color','field_62590c30df014'),(136547,4028,'flexible_templates_6_differential_translucent_9_column_1','Top project management talent'),(136548,4028,'_flexible_templates_6_differential_translucent_9_column_1','field_62590c30df008'),(136549,4028,'flexible_templates_6_differential_translucent_9_column_2','Sometimes'),(136550,4028,'_flexible_templates_6_differential_translucent_9_column_2','field_62590c30df00a'),(136551,4028,'flexible_templates_6_differential_translucent_9_column_2_color','#7080a7'),(136552,4028,'_flexible_templates_6_differential_translucent_9_column_2_color','field_62590c30df00b'),(136553,4028,'flexible_templates_6_differential_translucent_9_column_3','Rare'),(136554,4028,'_flexible_templates_6_differential_translucent_9_column_3','field_62590c30df00d'),(136555,4028,'flexible_templates_6_differential_translucent_9_column_3_color','#ff555f'),(136556,4028,'_flexible_templates_6_differential_translucent_9_column_3_color','field_62590c30df00e'),(136557,4028,'flexible_templates_6_differential_translucent_9_column_4','Rare'),(136558,4028,'_flexible_templates_6_differential_translucent_9_column_4','field_62590c30df010'),(136559,4028,'flexible_templates_6_differential_translucent_9_column_4_color','#ff555f'),(136560,4028,'_flexible_templates_6_differential_translucent_9_column_4_color','field_62590c30df011'),(136561,4028,'flexible_templates_6_differential_translucent_9_column_5','Always'),(136562,4028,'_flexible_templates_6_differential_translucent_9_column_5','field_62590c30df013'),(136563,4028,'flexible_templates_6_differential_translucent_9_column_5_color','#24c1ff'),(136564,4028,'_flexible_templates_6_differential_translucent_9_column_5_color','field_62590c30df014'),(136565,4028,'flexible_templates_6_differential_translucent_10_column_1','Dedicated Dev-ops Manager'),(136566,4028,'_flexible_templates_6_differential_translucent_10_column_1','field_62590c30df008'),(136567,4028,'flexible_templates_6_differential_translucent_10_column_2','Sometimes'),(136568,4028,'_flexible_templates_6_differential_translucent_10_column_2','field_62590c30df00a'),(136569,4028,'flexible_templates_6_differential_translucent_10_column_2_color','#7080a7'),(136570,4028,'_flexible_templates_6_differential_translucent_10_column_2_color','field_62590c30df00b'),(136571,4028,'flexible_templates_6_differential_translucent_10_column_3','Rare'),(136572,4028,'_flexible_templates_6_differential_translucent_10_column_3','field_62590c30df00d'),(136573,4028,'flexible_templates_6_differential_translucent_10_column_3_color','#ff555f'),(136574,4028,'_flexible_templates_6_differential_translucent_10_column_3_color','field_62590c30df00e'),(136575,4028,'flexible_templates_6_differential_translucent_10_column_4','Rare'),(136576,4028,'_flexible_templates_6_differential_translucent_10_column_4','field_62590c30df010'),(136577,4028,'flexible_templates_6_differential_translucent_10_column_4_color','#ff555f'),(136578,4028,'_flexible_templates_6_differential_translucent_10_column_4_color','field_62590c30df011'),(136579,4028,'flexible_templates_6_differential_translucent_10_column_5','Always'),(136580,4028,'_flexible_templates_6_differential_translucent_10_column_5','field_62590c30df013'),(136581,4028,'flexible_templates_6_differential_translucent_10_column_5_color','#24c1ff'),(136582,4028,'_flexible_templates_6_differential_translucent_10_column_5_color','field_62590c30df014'),(136583,4028,'flexible_templates_6_differential_translucent_11_column_1','Scalable solutions i.e. can easily grow as you do'),(136584,4028,'_flexible_templates_6_differential_translucent_11_column_1','field_62590c30df008'),(136585,4028,'flexible_templates_6_differential_translucent_11_column_2','Sometimes'),(136586,4028,'_flexible_templates_6_differential_translucent_11_column_2','field_62590c30df00a'),(136587,4028,'flexible_templates_6_differential_translucent_11_column_2_color','#7080a7'),(136588,4028,'_flexible_templates_6_differential_translucent_11_column_2_color','field_62590c30df00b'),(136589,4028,'flexible_templates_6_differential_translucent_11_column_3','Rare'),(136590,4028,'_flexible_templates_6_differential_translucent_11_column_3','field_62590c30df00d'),(136591,4028,'flexible_templates_6_differential_translucent_11_column_3_color','#ff555f'),(136592,4028,'_flexible_templates_6_differential_translucent_11_column_3_color','field_62590c30df00e'),(136593,4028,'flexible_templates_6_differential_translucent_11_column_4','Rare'),(136594,4028,'_flexible_templates_6_differential_translucent_11_column_4','field_62590c30df010'),(136595,4028,'flexible_templates_6_differential_translucent_11_column_4_color','#ff555f'),(136596,4028,'_flexible_templates_6_differential_translucent_11_column_4_color','field_62590c30df011'),(136597,4028,'flexible_templates_6_differential_translucent_11_column_5','Always'),(136598,4028,'_flexible_templates_6_differential_translucent_11_column_5','field_62590c30df013'),(136599,4028,'flexible_templates_6_differential_translucent_11_column_5_color','#24c1ff'),(136600,4028,'_flexible_templates_6_differential_translucent_11_column_5_color','field_62590c30df014'),(136601,4028,'flexible_templates_6_differential_translucent_12_column_1','Understand your business objectives and outcomes. You want to drive.'),(136602,4028,'_flexible_templates_6_differential_translucent_12_column_1','field_62590c30df008'),(136603,4028,'flexible_templates_6_differential_translucent_12_column_2','Sometimes'),(136604,4028,'_flexible_templates_6_differential_translucent_12_column_2','field_62590c30df00a'),(136605,4028,'flexible_templates_6_differential_translucent_12_column_2_color','#7080a7'),(136606,4028,'_flexible_templates_6_differential_translucent_12_column_2_color','field_62590c30df00b'),(136607,4028,'flexible_templates_6_differential_translucent_12_column_3','Sometimes'),(136608,4028,'_flexible_templates_6_differential_translucent_12_column_3','field_62590c30df00d'),(136609,4028,'flexible_templates_6_differential_translucent_12_column_3_color','#7080a7'),(136610,4028,'_flexible_templates_6_differential_translucent_12_column_3_color','field_62590c30df00e'),(136611,4028,'flexible_templates_6_differential_translucent_12_column_4','Always'),(136612,4028,'_flexible_templates_6_differential_translucent_12_column_4','field_62590c30df010'),(136613,4028,'flexible_templates_6_differential_translucent_12_column_4_color','#28d9cb'),(136614,4028,'_flexible_templates_6_differential_translucent_12_column_4_color','field_62590c30df011'),(136615,4028,'flexible_templates_6_differential_translucent_12_column_5','Always'),(136616,4028,'_flexible_templates_6_differential_translucent_12_column_5','field_62590c30df013'),(136617,4028,'flexible_templates_6_differential_translucent_12_column_5_color','#24c1ff'),(136618,4028,'_flexible_templates_6_differential_translucent_12_column_5_color','field_62590c30df014'),(136619,4028,'flexible_templates_6_differential_translucent_13_column_1','Amazing'),(136620,4028,'_flexible_templates_6_differential_translucent_13_column_1','field_62590c30df008'),(136621,4028,'flexible_templates_6_differential_translucent_13_column_2','Sometimes'),(136622,4028,'_flexible_templates_6_differential_translucent_13_column_2','field_62590c30df00a'),(136623,4028,'flexible_templates_6_differential_translucent_13_column_2_color','#7080a7'),(136624,4028,'_flexible_templates_6_differential_translucent_13_column_2_color','field_62590c30df00b'),(136625,4028,'flexible_templates_6_differential_translucent_13_column_3','Rare'),(136626,4028,'_flexible_templates_6_differential_translucent_13_column_3','field_62590c30df00d'),(136627,4028,'flexible_templates_6_differential_translucent_13_column_3_color','#ff555f'),(136628,4028,'_flexible_templates_6_differential_translucent_13_column_3_color','field_62590c30df00e'),(136629,4028,'flexible_templates_6_differential_translucent_13_column_4','Rare'),(136630,4028,'_flexible_templates_6_differential_translucent_13_column_4','field_62590c30df010'),(136631,4028,'flexible_templates_6_differential_translucent_13_column_4_color','#ff555f'),(136632,4028,'_flexible_templates_6_differential_translucent_13_column_4_color','field_62590c30df011'),(136633,4028,'flexible_templates_6_differential_translucent_13_column_5','Always'),(136634,4028,'_flexible_templates_6_differential_translucent_13_column_5','field_62590c30df013'),(136635,4028,'flexible_templates_6_differential_translucent_13_column_5_color','#24c1ff'),(136636,4028,'_flexible_templates_6_differential_translucent_13_column_5_color','field_62590c30df014'),(136637,4062,'flexible_templates','a:9:{i:0;s:19:\"cloud_native_banner\";i:1;s:35:\"cloud_native_expert_dedicated_teams\";i:2;s:39:\"cloud_native_solving_digital_challenges\";i:3;s:26:\"cloud_native_scale_demands\";i:4;s:22:\"cloud_native_ecosystem\";i:5;s:31:\"cloud_native_technology_partner\";i:6;s:37:\"cloud_native_translucent_differential\";i:7;s:26:\"cloud_nature_future_vision\";i:8;s:17:\"lets_talk_section\";}'),(136638,4062,'_flexible_templates','field_6254f4d84ef9b'),(136639,4062,'flexible_templates_0_image','4030'),(136640,4062,'_flexible_templates_0_image','field_62569b35f7c63_field_6254fdc5efa2a'),(136641,4062,'flexible_templates_0_icon','4013'),(136642,4062,'_flexible_templates_0_icon','field_62569b69f7c64_field_62550482480cb'),(136643,4062,'flexible_templates_0_heading','Solve Digital Challenges with a Complete Cloud Native Solution'),(136644,4062,'_flexible_templates_0_heading','field_62569b87f7c65_field_6254fdb2efa27'),(136645,4062,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(136646,4062,'_flexible_templates_0_sub_heading','field_62569ba5f7c66_field_6254fdbaefa28'),(136647,4062,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:23:\"Transform Your Business\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(136648,4062,'_flexible_templates_0_cta','field_62569bcff7c67_field_62551b3e101c4'),(136649,4062,'flexible_templates_1_image','4031'),(136650,4062,'_flexible_templates_1_image','field_6256a05dda66c_field_6254fdc5efa2a'),(136651,4062,'flexible_templates_1_heading','Expert dedicated teams for your cloud native project.'),(136652,4062,'_flexible_templates_1_heading','field_62569f6d3c0ad_field_6254fdb2efa27'),(136653,4062,'flexible_templates_1_sub_heading','DATA-DRIVEN TRUSTED TECHNOLOGY PARTNER'),(136654,4062,'_flexible_templates_1_sub_heading','field_62569f7a3c0ae_field_6254fdbaefa28'),(136655,4062,'flexible_templates_1_copy','Our expert software engineering teams develop intelligent apps for fintech, healthcare, automotive, and any other data-driven journey, with over 10 years of experience in large scale complex project. Enable your business to reflect its operations through technology while helping it become more dynamic, secure, and easier to scale by increasing speed to market. As a pioneer in cloud native application development we have a proven track record of solving digital transformation challenges for enterprises.'),(136656,4062,'_flexible_templates_1_copy','field_6256a175dc200_field_6254fdc0efa29'),(136657,4062,'flexible_templates_1_copy_long',''),(136658,4062,'_flexible_templates_1_copy_long','field_6256a026da66a'),(136659,4062,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:12:\"How We Do It\";s:3:\"url\";s:36:\"https://translucent.local/tek-world/\";s:6:\"target\";s:0:\"\";}'),(136660,4062,'_flexible_templates_1_cta','field_6256a03ada66b_field_62551b3e101c4'),(136661,4062,'flexible_templates_2_heading','Three paths to Cloud Native'),(136662,4062,'_flexible_templates_2_heading','field_6256a640dea7c_field_6254fdb2efa27'),(136663,4062,'flexible_templates_2_sub_heading','SOLVING DIGITAL CHALLENGES'),(136664,4062,'_flexible_templates_2_sub_heading','field_6256a66cdea7d_field_6254fdbaefa28'),(136665,4062,'flexible_templates_2_posts_grid_0_icon','4033'),(136666,4062,'_flexible_templates_2_posts_grid_0_icon','field_6256a6c0dea7f_field_62550482480cb'),(136667,4062,'flexible_templates_2_posts_grid_0_heading','Build'),(136668,4062,'_flexible_templates_2_posts_grid_0_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(136669,4062,'flexible_templates_2_posts_grid_0_copy','We\'re not just a software company. We\'re the people who help your business achieve its digital transformation vision. From strategy to implementation, we\'ll support you with our cloud native, data driven technology and digital transformation expertise. '),(136670,4062,'_flexible_templates_2_posts_grid_0_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(136671,4062,'flexible_templates_2_posts_grid_0_cta',''),(136672,4062,'_flexible_templates_2_posts_grid_0_cta','field_6256a6f8dea82_field_62551b3e101c4'),(136673,4062,'flexible_templates_2_posts_grid_1_icon','4034'),(136674,4062,'_flexible_templates_2_posts_grid_1_icon','field_6256a6c0dea7f_field_62550482480cb'),(136675,4062,'flexible_templates_2_posts_grid_1_heading','ReBuild'),(136676,4062,'_flexible_templates_2_posts_grid_1_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(136677,4062,'flexible_templates_2_posts_grid_1_copy','Break free from the limitations of your old legacy technology by rebuilding your business critical application components without affecting the original specifications, requirements, and business logic. This will improve scalability, maintainability, and reliability.\r\n'),(136678,4062,'_flexible_templates_2_posts_grid_1_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(136679,4062,'flexible_templates_2_posts_grid_1_cta',''),(136680,4062,'_flexible_templates_2_posts_grid_1_cta','field_6256a6f8dea82_field_62551b3e101c4'),(136681,4062,'flexible_templates_2_posts_grid_2_icon','4035'),(136682,4062,'_flexible_templates_2_posts_grid_2_icon','field_6256a6c0dea7f_field_62550482480cb'),(136683,4062,'flexible_templates_2_posts_grid_2_heading','RePlatform'),(136684,4062,'_flexible_templates_2_posts_grid_2_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(136685,4062,'flexible_templates_2_posts_grid_2_copy','Migrate your old application to a new runtime platform. When upgrading to a cloud native application platform, we repurpose the useable components from your legacy technology, and minimize changes to code and structure.'),(136686,4062,'_flexible_templates_2_posts_grid_2_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(136687,4062,'flexible_templates_2_posts_grid_2_cta',''),(136688,4062,'_flexible_templates_2_posts_grid_2_cta','field_6256a6f8dea82_field_62551b3e101c4'),(136689,4062,'flexible_templates_2_posts_grid','3'),(136690,4062,'_flexible_templates_2_posts_grid','field_6256a698dea7e'),(136691,4062,'flexible_templates_2_cta','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://translucent.local/cloud-native-application-development/\";s:6:\"target\";s:0:\"\";}'),(136692,4062,'_flexible_templates_2_cta','field_6256a725dea83_field_62551b3e101c4'),(136693,4062,'flexible_templates_3_heading','Scale According to your Demands'),(136694,4062,'_flexible_templates_3_heading','field_6256aa0c6187a_field_6254fdb2efa27'),(136695,4062,'flexible_templates_3_scale_demands_0_icon',''),(136696,4062,'_flexible_templates_3_scale_demands_0_icon','field_6256aa4e6187c_field_62550482480cb'),(136697,4062,'flexible_templates_3_scale_demands_0_heading','TEKTeams'),(136698,4062,'_flexible_templates_3_scale_demands_0_heading','field_6256aa866187d_field_6254fdb2efa27'),(136699,4062,'flexible_templates_3_scale_demands_0_copy','On-demand resources that may be used whenever and wherever you need them. Increase your workforce by partnering with teams tailored to your business needs.'),(136700,4062,'_flexible_templates_3_scale_demands_0_copy','field_6256aa986187e_field_6254fdc0efa29'),(136701,4062,'flexible_templates_3_scale_demands_0_cta','a:3:{s:5:\"title\";s:16:\"Scale Your Teams\";s:3:\"url\";s:34:\"https://translucent.local/tekteams\";s:6:\"target\";s:0:\"\";}'),(136702,4062,'_flexible_templates_3_scale_demands_0_cta','field_6256aab66187f_field_62551b3e101c4'),(136703,4062,'flexible_templates_3_scale_demands_1_icon',''),(136704,4062,'_flexible_templates_3_scale_demands_1_icon','field_6256aa4e6187c_field_62550482480cb'),(136705,4062,'flexible_templates_3_scale_demands_1_heading','TEKStack AI'),(136706,4062,'_flexible_templates_3_scale_demands_1_heading','field_6256aa866187d_field_6254fdb2efa27'),(136707,4062,'flexible_templates_3_scale_demands_1_copy','TEKStack AI has perfected the complex process of working with production ready tools that have been shown to save time and money. Reduce your time to market by more than 20%.'),(136708,4062,'_flexible_templates_3_scale_demands_1_copy','field_6256aa986187e_field_6254fdc0efa29'),(136709,4062,'flexible_templates_3_scale_demands_1_cta','a:3:{s:5:\"title\";s:20:\"Speed Up Development\";s:3:\"url\";s:38:\"https://translucent.local/tekstack-ai/\";s:6:\"target\";s:0:\"\";}'),(136710,4062,'_flexible_templates_3_scale_demands_1_cta','field_6256aab66187f_field_62551b3e101c4'),(136711,4062,'flexible_templates_3_scale_demands_2_icon',''),(136712,4062,'_flexible_templates_3_scale_demands_2_icon','field_6256aa4e6187c_field_62550482480cb'),(136713,4062,'flexible_templates_3_scale_demands_2_heading','TEKProcess'),(136714,4062,'_flexible_templates_3_scale_demands_2_heading','field_6256aa866187d_field_6254fdb2efa27'),(136715,4062,'flexible_templates_3_scale_demands_2_copy','Our approach to cloud native development will organize your entire cloud native development process ​from conception to steady state and support, known as TEKProcess.'),(136716,4062,'_flexible_templates_3_scale_demands_2_copy','field_6256aa986187e_field_6254fdc0efa29'),(136717,4062,'flexible_templates_3_scale_demands_2_cta','a:3:{s:5:\"title\";s:24:\"Optimize Your Operations\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(136718,4062,'_flexible_templates_3_scale_demands_2_cta','field_6256aab66187f_field_62551b3e101c4'),(136719,4062,'flexible_templates_3_scale_demands','3'),(136720,4062,'_flexible_templates_3_scale_demands','field_6256aa366187b'),(136721,4062,'flexible_templates_4_heading','Reflect Your Operations Through Technology'),(136722,4062,'_flexible_templates_4_heading','field_6256acb5f89e4_field_6254fdb2efa27'),(136723,4062,'flexible_templates_4_sub_heading','CLOUD NATIVE ECOSYSTEM'),(136724,4062,'_flexible_templates_4_sub_heading','field_6256acc6f89e5_field_6254fdbaefa28'),(136725,4062,'flexible_templates_4_icon','4041'),(136726,4062,'_flexible_templates_4_icon','field_6256db0a20c28_field_62550482480cb'),(136727,4062,'flexible_templates_4_image',''),(136728,4062,'_flexible_templates_4_image','field_6257293fdf3c8_field_6254fdc5efa2a'),(136729,4062,'flexible_templates_4_technology_0_heading','Solve Problems Quick'),(136730,4062,'_flexible_templates_4_technology_0_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(136731,4062,'flexible_templates_4_technology_0_sub_heading','How?'),(136732,4062,'_flexible_templates_4_technology_0_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(136733,4062,'flexible_templates_4_technology_0_copy','Translucent is a data driven digital transformation company that uses technology to solve problems and modernize companies.'),(136734,4062,'_flexible_templates_4_technology_0_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(136735,4062,'flexible_templates_4_technology_0_back_heading','Data Driven'),(136736,4062,'_flexible_templates_4_technology_0_back_heading','field_6256b2b61a441'),(136737,4062,'flexible_templates_4_technology_0_icon','4038'),(136738,4062,'_flexible_templates_4_technology_0_icon','field_6256b2be1a442_field_62550482480cb'),(136739,4062,'flexible_templates_4_technology_0_back_copy','We work closely with companies to analyze their business and discover new opportunities they did not know existed.'),(136740,4062,'_flexible_templates_4_technology_0_back_copy','field_6256b2e31a443'),(136741,4062,'flexible_templates_4_technology_0_image',''),(136742,4062,'_flexible_templates_4_technology_0_image','field_6256b3011a444_field_6254fdc5efa2a'),(136743,4062,'flexible_templates_4_technology_0_cta','a:3:{s:5:\"title\";s:13:\"Start Solving\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(136744,4062,'_flexible_templates_4_technology_0_cta','field_6256ad66f89e9_field_62551b3e101c4'),(136745,4062,'flexible_templates_4_technology_1_heading','Automate Development Tasks'),(136746,4062,'_flexible_templates_4_technology_1_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(136747,4062,'flexible_templates_4_technology_1_sub_heading','How?'),(136748,4062,'_flexible_templates_4_technology_1_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(136749,4062,'flexible_templates_4_technology_1_copy','Simplify the intricacies of cloud applications by automating laborious tasks in the development process.'),(136750,4062,'_flexible_templates_4_technology_1_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(136751,4062,'flexible_templates_4_technology_1_back_heading',''),(136752,4062,'_flexible_templates_4_technology_1_back_heading','field_6256b2b61a441'),(136753,4062,'flexible_templates_4_technology_1_icon','4040'),(136754,4062,'_flexible_templates_4_technology_1_icon','field_6256b2be1a442_field_62550482480cb'),(136755,4062,'flexible_templates_4_technology_1_back_copy','Translucent is one of just four kubernetes certified partners in Canada!'),(136756,4062,'_flexible_templates_4_technology_1_back_copy','field_6256b2e31a443'),(136757,4062,'flexible_templates_4_technology_1_image','4039'),(136758,4062,'_flexible_templates_4_technology_1_image','field_6256b3011a444_field_6254fdc5efa2a'),(136759,4062,'flexible_templates_4_technology_1_cta','a:3:{s:5:\"title\";s:16:\"Start Automating\";s:3:\"url\";s:59:\"https://translucent.local/kubernetes-professional-services/\";s:6:\"target\";s:0:\"\";}'),(136760,4062,'_flexible_templates_4_technology_1_cta','field_6256ad66f89e9_field_62551b3e101c4'),(136761,4062,'flexible_templates_4_technology_2_heading','Build and Deploy Faster'),(136762,4062,'_flexible_templates_4_technology_2_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(136763,4062,'flexible_templates_4_technology_2_sub_heading','How?'),(136764,4062,'_flexible_templates_4_technology_2_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(136765,4062,'flexible_templates_4_technology_2_copy','Maximise earnings by building and deploying more features and faster.'),(136766,4062,'_flexible_templates_4_technology_2_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(136767,4062,'flexible_templates_4_technology_2_back_heading',''),(136768,4062,'_flexible_templates_4_technology_2_back_heading','field_6256b2b61a441'),(136769,4062,'flexible_templates_4_technology_2_icon','4042'),(136770,4062,'_flexible_templates_4_technology_2_icon','field_6256b2be1a442_field_62550482480cb'),(136771,4062,'flexible_templates_4_technology_2_back_copy','Devops is the heartbeat of all Translucent services, and Translucent IS Devops.'),(136772,4062,'_flexible_templates_4_technology_2_back_copy','field_6256b2e31a443'),(136773,4062,'flexible_templates_4_technology_2_image',''),(136774,4062,'_flexible_templates_4_technology_2_image','field_6256b3011a444_field_6254fdc5efa2a'),(136775,4062,'flexible_templates_4_technology_2_cta','a:3:{s:5:\"title\";s:17:\"Unlock Efficiency\";s:3:\"url\";s:46:\"https://translucent.local/cloud-native-devops/\";s:6:\"target\";s:0:\"\";}'),(136776,4062,'_flexible_templates_4_technology_2_cta','field_6256ad66f89e9_field_62551b3e101c4'),(136777,4062,'flexible_templates_4_technology_3_heading','Remain Secure as Possible'),(136778,4062,'_flexible_templates_4_technology_3_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(136779,4062,'flexible_templates_4_technology_3_sub_heading','How?'),(136780,4062,'_flexible_templates_4_technology_3_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(136781,4062,'flexible_templates_4_technology_3_copy','Reduce deliberate and incidental security vulnerabilities in your systems.'),(136782,4062,'_flexible_templates_4_technology_3_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(136783,4062,'flexible_templates_4_technology_3_back_heading','Zero Trust'),(136784,4062,'_flexible_templates_4_technology_3_back_heading','field_6256b2b61a441'),(136785,4062,'flexible_templates_4_technology_3_icon','4043'),(136786,4062,'_flexible_templates_4_technology_3_icon','field_6256b2be1a442_field_62550482480cb'),(136787,4062,'flexible_templates_4_technology_3_back_copy','We are partnered with the best security teams to offer full end to end services.'),(136788,4062,'_flexible_templates_4_technology_3_back_copy','field_6256b2e31a443'),(136789,4062,'flexible_templates_4_technology_3_image',''),(136790,4062,'_flexible_templates_4_technology_3_image','field_6256b3011a444_field_6254fdc5efa2a'),(136791,4062,'flexible_templates_4_technology_3_cta','a:3:{s:5:\"title\";s:20:\"Protect What Matters\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(136792,4062,'_flexible_templates_4_technology_3_cta','field_6256ad66f89e9_field_62551b3e101c4'),(136793,4062,'flexible_templates_4_technology','6'),(136794,4062,'_flexible_templates_4_technology','field_6256acf8f89e6'),(136795,4062,'flexible_templates_4_technology_4_heading','Propel Your Business into The Future'),(136796,4062,'_flexible_templates_4_technology_4_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(136797,4062,'flexible_templates_4_technology_4_sub_heading','How?'),(136798,4062,'_flexible_templates_4_technology_4_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(136799,4062,'flexible_templates_4_technology_4_copy','Build new systems in the cloud, or Modernize legacy data and applications by rebuilding or migrating to a value-driven platform. '),(136800,4062,'_flexible_templates_4_technology_4_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(136801,4062,'flexible_templates_4_technology_4_back_heading','Application Development'),(136802,4062,'_flexible_templates_4_technology_4_back_heading','field_6256b2b61a441'),(136803,4062,'flexible_templates_4_technology_4_icon','4047'),(136804,4062,'_flexible_templates_4_technology_4_icon','field_6256b2be1a442_field_62550482480cb'),(136805,4062,'flexible_templates_4_technology_4_back_copy','We develop intelligent apps for fintech, healthcare, and any other data-driven journey.'),(136806,4062,'_flexible_templates_4_technology_4_back_copy','field_6256b2e31a443'),(136807,4062,'flexible_templates_4_technology_4_image',''),(136808,4062,'_flexible_templates_4_technology_4_image','field_6256b3011a444_field_6254fdc5efa2a'),(136809,4062,'flexible_templates_4_technology_4_cta','a:3:{s:5:\"title\";s:14:\"Build It Right\";s:3:\"url\";s:63:\"https://translucent.local/cloud-native-application-development/\";s:6:\"target\";s:0:\"\";}'),(136810,4062,'_flexible_templates_4_technology_4_cta','field_6256ad66f89e9_field_62551b3e101c4'),(136811,4062,'flexible_templates_4_technology_5_heading','Make Decisions Faster'),(136812,4062,'_flexible_templates_4_technology_5_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(136813,4062,'flexible_templates_4_technology_5_sub_heading','How?'),(136814,4062,'_flexible_templates_4_technology_5_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(136815,4062,'flexible_templates_4_technology_5_copy','Discover anomalies and opportunities faster than human intelligence!'),(136816,4062,'_flexible_templates_4_technology_5_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(136817,4062,'flexible_templates_4_technology_5_back_heading',''),(136818,4062,'_flexible_templates_4_technology_5_back_heading','field_6256b2b61a441'),(136819,4062,'flexible_templates_4_technology_5_icon','4048'),(136820,4062,'_flexible_templates_4_technology_5_icon','field_6256b2be1a442_field_62550482480cb'),(136821,4062,'flexible_templates_4_technology_5_back_copy','Extend the boundaries of your business by solving problems faster.'),(136822,4062,'_flexible_templates_4_technology_5_back_copy','field_6256b2e31a443'),(136823,4062,'flexible_templates_4_technology_5_image',''),(136824,4062,'_flexible_templates_4_technology_5_image','field_6256b3011a444_field_6254fdc5efa2a'),(136825,4062,'flexible_templates_4_technology_5_cta','a:3:{s:5:\"title\";s:22:\"Solve Complex Problems\";s:3:\"url\";s:52:\"https://translucent.local/services/machine-learning/\";s:6:\"target\";s:6:\"_blank\";}'),(136826,4062,'_flexible_templates_4_technology_5_cta','field_6256ad66f89e9_field_62551b3e101c4'),(136827,4062,'flexible_templates_5_image','4051'),(136828,4062,'_flexible_templates_5_image','field_6256dbdfc0c83_field_6254fdc5efa2a'),(136829,4062,'flexible_templates_5_mob_image','4050'),(136830,4062,'_flexible_templates_5_mob_image','field_6256dbeec0c84_field_6254fdcbefa2b'),(136831,4062,'flexible_templates_5_heading','Companies That We Work With'),(136832,4062,'_flexible_templates_5_heading','field_6256dc0cc0c85_field_6254fdb2efa27'),(136833,4062,'flexible_templates_5_technology_partner_0_heading','Teams looking for a trusted nearshore technology partner '),(136834,4062,'_flexible_templates_5_technology_partner_0_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(136835,4062,'flexible_templates_5_technology_partner_0_icon','4052'),(136836,4062,'_flexible_templates_5_technology_partner_0_icon','field_6256dc78c0c88_field_62550482480cb'),(136837,4062,'flexible_templates_5_technology_partner_0_copy','Your Dedicated Development Team. We bring the best people in the industry with various skills to develop and maintain the highest quality software.'),(136838,4062,'_flexible_templates_5_technology_partner_0_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(136839,4062,'flexible_templates_5_technology_partner_1_heading','Teams looking to a build state-of-the-art platform'),(136840,4062,'_flexible_templates_5_technology_partner_1_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(136841,4062,'flexible_templates_5_technology_partner_1_icon','4053'),(136842,4062,'_flexible_templates_5_technology_partner_1_icon','field_6256dc78c0c88_field_62550482480cb'),(136843,4062,'flexible_templates_5_technology_partner_1_copy','Industry-leading cloud native solutions that are backed by an award-winning process, teams, and production-ready data-driven platform.'),(136844,4062,'_flexible_templates_5_technology_partner_1_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(136845,4062,'flexible_templates_5_technology_partner_2_heading','Teams looking to outperform competition'),(136846,4062,'_flexible_templates_5_technology_partner_2_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(136847,4062,'flexible_templates_5_technology_partner_2_icon','4054'),(136848,4062,'_flexible_templates_5_technology_partner_2_icon','field_6256dc78c0c88_field_62550482480cb'),(136849,4062,'flexible_templates_5_technology_partner_2_copy','Gain a major competitive advantage by increasing speed to market by 20%, allowing you to make business moves more quickly.'),(136850,4062,'_flexible_templates_5_technology_partner_2_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(136851,4062,'flexible_templates_5_technology_partner','3'),(136852,4062,'_flexible_templates_5_technology_partner','field_6256dc3fc0c86'),(136853,4062,'flexible_templates_6_heading','WHY TRANSLUCENT'),(136854,4062,'_flexible_templates_6_heading','field_62590b7cdf000_field_6254fdb2efa27'),(136855,4062,'flexible_templates_6_sub_heading','How Translucent Powered by TEK Differs From Alternative Solutions'),(136856,4062,'_flexible_templates_6_sub_heading','field_62590b8bdf001_field_6254fdbaefa28'),(136857,4062,'flexible_templates_6_icon','4013'),(136858,4062,'_flexible_templates_6_icon','field_62590bc5df002_field_62550482480cb'),(136859,4062,'flexible_templates_6_differential_translucent_header_0_heading','Your needs'),(136860,4062,'_flexible_templates_6_differential_translucent_header_0_heading','field_62590c01df004_field_6254fdb2efa27'),(136861,4062,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(136862,4062,'_flexible_templates_6_differential_translucent_header_0_color','field_62590c11df005'),(136863,4062,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(136864,4062,'_flexible_templates_6_differential_translucent_header_1_heading','field_62590c01df004_field_6254fdb2efa27'),(136865,4062,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(136866,4062,'_flexible_templates_6_differential_translucent_header_1_color','field_62590c11df005'),(136867,4062,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore teams'),(136868,4062,'_flexible_templates_6_differential_translucent_header_2_heading','field_62590c01df004_field_6254fdb2efa27'),(136869,4062,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(136870,4062,'_flexible_templates_6_differential_translucent_header_2_color','field_62590c11df005'),(136871,4062,'flexible_templates_6_differential_translucent_header_3_heading','Hiring in-house developers'),(136872,4062,'_flexible_templates_6_differential_translucent_header_3_heading','field_62590c01df004_field_6254fdb2efa27'),(136873,4062,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(136874,4062,'_flexible_templates_6_differential_translucent_header_3_color','field_62590c11df005'),(136875,4062,'flexible_templates_6_differential_translucent_header','5'),(136876,4062,'_flexible_templates_6_differential_translucent_header','field_62590bf9df003'),(136877,4062,'flexible_templates_6_differential_translucent','14'),(136878,4062,'_flexible_templates_6_differential_translucent','field_62590c30df006'),(136879,4062,'flexible_templates_6_differential_translucent_header_4_heading','Working with Translucent'),(136880,4062,'_flexible_templates_6_differential_translucent_header_4_heading','field_62590c01df004_field_6254fdb2efa27'),(136881,4062,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(136882,4062,'_flexible_templates_6_differential_translucent_header_4_color','field_62590c11df005'),(136883,4062,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(136884,4062,'_flexible_templates_6_differential_translucent_0_column_1','field_62590c30df008'),(136885,4062,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(136886,4062,'_flexible_templates_6_differential_translucent_0_column_2','field_62590c30df00a'),(136887,4062,'flexible_templates_6_differential_translucent_0_column_2_color',''),(136888,4062,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62590c30df00b'),(136889,4062,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(136890,4062,'_flexible_templates_6_differential_translucent_0_column_3','field_62590c30df00d'),(136891,4062,'flexible_templates_6_differential_translucent_0_column_3_color',''),(136892,4062,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62590c30df00e'),(136893,4062,'flexible_templates_6_differential_translucent_0_column_4','Always'),(136894,4062,'_flexible_templates_6_differential_translucent_0_column_4','field_62590c30df010'),(136895,4062,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(136896,4062,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62590c30df011'),(136897,4062,'flexible_templates_6_differential_translucent_0_column_5','Always'),(136898,4062,'_flexible_templates_6_differential_translucent_0_column_5','field_62590c30df013'),(136899,4062,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(136900,4062,'_flexible_templates_6_differential_translucent_0_column_5_color','field_62590c30df014'),(136901,4062,'flexible_templates_7_heading','We have a future vision that is in sync with the realities that our clients are currently facing'),(136902,4062,'_flexible_templates_7_heading','field_625733105d792_field_6254fdb2efa27'),(136903,4062,'flexible_templates_7_copy_wysiwyg','Translucent is a pioneer in cloud native application development. We created our own solutions, which we call TEK : Translucent Expert Knowledge. Our culture fosters innovation.'),(136904,4062,'_flexible_templates_7_copy_wysiwyg','field_625733205d793_field_6255310ecf4de'),(136905,4062,'flexible_templates_7_image','4057'),(136906,4062,'_flexible_templates_7_image','field_625733375d794_field_6254fdc5efa2a'),(136907,4062,'flexible_templates_7_icon','4058'),(136908,4062,'_flexible_templates_7_icon','field_625733495d795_field_62550482480cb'),(136909,4062,'flexible_templates_7_sick_kids_text',''),(136910,4062,'_flexible_templates_7_sick_kids_text','field_62573ad019bd0'),(136911,4062,'flexible_templates_7_tek_stack_case','TEK in Action'),(136912,4062,'_flexible_templates_7_tek_stack_case','field_625733b05d797'),(136913,4062,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:36:\"See How We Helped Sick Kids Hospital\";s:3:\"url\";s:70:\"https://translucent.local/case-studies/the-hospital-for-sick-children/\";s:6:\"target\";s:0:\"\";}'),(136914,4062,'_flexible_templates_7_cta','field_625733895d796_field_62551b3e101c4'),(136915,4062,'flexible_templates_8_heading','We treat your business like our own.'),(136916,4062,'_flexible_templates_8_heading','field_625565e14146d_field_6254fdb2efa27'),(136917,4062,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:10:\"Let\'s talk\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(136918,4062,'_flexible_templates_8_cta','field_625565fa4146e_field_62551b3e101c4'),(136919,4062,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (Speed to market)'),(136920,4062,'_flexible_templates_6_differential_translucent_1_column_1','field_62590c30df008'),(136921,4062,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(136922,4062,'_flexible_templates_6_differential_translucent_1_column_2','field_62590c30df00a'),(136923,4062,'flexible_templates_6_differential_translucent_1_column_2_color',''),(136924,4062,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62590c30df00b'),(136925,4062,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(136926,4062,'_flexible_templates_6_differential_translucent_1_column_3','field_62590c30df00d'),(136927,4062,'flexible_templates_6_differential_translucent_1_column_3_color',''),(136928,4062,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62590c30df00e'),(136929,4062,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(136930,4062,'_flexible_templates_6_differential_translucent_1_column_4','field_62590c30df010'),(136931,4062,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(136932,4062,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62590c30df011'),(136933,4062,'flexible_templates_6_differential_translucent_1_column_5','Always'),(136934,4062,'_flexible_templates_6_differential_translucent_1_column_5','field_62590c30df013'),(136935,4062,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(136936,4062,'_flexible_templates_6_differential_translucent_1_column_5_color','field_62590c30df014'),(136937,4062,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(136938,4062,'_flexible_templates_6_differential_translucent_2_column_1','field_62590c30df008'),(136939,4062,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(136940,4062,'_flexible_templates_6_differential_translucent_2_column_2','field_62590c30df00a'),(136941,4062,'flexible_templates_6_differential_translucent_2_column_2_color',''),(136942,4062,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62590c30df00b'),(136943,4062,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(136944,4062,'_flexible_templates_6_differential_translucent_2_column_3','field_62590c30df00d'),(136945,4062,'flexible_templates_6_differential_translucent_2_column_3_color',''),(136946,4062,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62590c30df00e'),(136947,4062,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(136948,4062,'_flexible_templates_6_differential_translucent_2_column_4','field_62590c30df010'),(136949,4062,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(136950,4062,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62590c30df011'),(136951,4062,'flexible_templates_6_differential_translucent_2_column_5','Always'),(136952,4062,'_flexible_templates_6_differential_translucent_2_column_5','field_62590c30df013'),(136953,4062,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(136954,4062,'_flexible_templates_6_differential_translucent_2_column_5_color','field_62590c30df014'),(136955,4062,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(136956,4062,'_flexible_templates_6_differential_translucent_3_column_1','field_62590c30df008'),(136957,4062,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(136958,4062,'_flexible_templates_6_differential_translucent_3_column_2','field_62590c30df00a'),(136959,4062,'flexible_templates_6_differential_translucent_3_column_2_color',''),(136960,4062,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62590c30df00b'),(136961,4062,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(136962,4062,'_flexible_templates_6_differential_translucent_3_column_3','field_62590c30df00d'),(136963,4062,'flexible_templates_6_differential_translucent_3_column_3_color',''),(136964,4062,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62590c30df00e'),(136965,4062,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(136966,4062,'_flexible_templates_6_differential_translucent_3_column_4','field_62590c30df010'),(136967,4062,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(136968,4062,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62590c30df011'),(136969,4062,'flexible_templates_6_differential_translucent_3_column_5','Always'),(136970,4062,'_flexible_templates_6_differential_translucent_3_column_5','field_62590c30df013'),(136971,4062,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(136972,4062,'_flexible_templates_6_differential_translucent_3_column_5_color','field_62590c30df014'),(136973,4062,'flexible_templates_6_differential_translucent_4_column_1','Price predictability and transparency'),(136974,4062,'_flexible_templates_6_differential_translucent_4_column_1','field_62590c30df008'),(136975,4062,'flexible_templates_6_differential_translucent_4_column_2','Rare'),(136976,4062,'_flexible_templates_6_differential_translucent_4_column_2','field_62590c30df00a'),(136977,4062,'flexible_templates_6_differential_translucent_4_column_2_color',''),(136978,4062,'_flexible_templates_6_differential_translucent_4_column_2_color','field_62590c30df00b'),(136979,4062,'flexible_templates_6_differential_translucent_4_column_3','Sometimes'),(136980,4062,'_flexible_templates_6_differential_translucent_4_column_3','field_62590c30df00d'),(136981,4062,'flexible_templates_6_differential_translucent_4_column_3_color',''),(136982,4062,'_flexible_templates_6_differential_translucent_4_column_3_color','field_62590c30df00e'),(136983,4062,'flexible_templates_6_differential_translucent_4_column_4','Always'),(136984,4062,'_flexible_templates_6_differential_translucent_4_column_4','field_62590c30df010'),(136985,4062,'flexible_templates_6_differential_translucent_4_column_4_color','#28d9cb'),(136986,4062,'_flexible_templates_6_differential_translucent_4_column_4_color','field_62590c30df011'),(136987,4062,'flexible_templates_6_differential_translucent_4_column_5','Always'),(136988,4062,'_flexible_templates_6_differential_translucent_4_column_5','field_62590c30df013'),(136989,4062,'flexible_templates_6_differential_translucent_4_column_5_color','#24c1ff'),(136990,4062,'_flexible_templates_6_differential_translucent_4_column_5_color','field_62590c30df014'),(136991,4062,'flexible_templates_6_differential_translucent_5_column_1','Affordability'),(136992,4062,'_flexible_templates_6_differential_translucent_5_column_1','field_62590c30df008'),(136993,4062,'flexible_templates_6_differential_translucent_5_column_2','Rare'),(136994,4062,'_flexible_templates_6_differential_translucent_5_column_2','field_62590c30df00a'),(136995,4062,'flexible_templates_6_differential_translucent_5_column_2_color',''),(136996,4062,'_flexible_templates_6_differential_translucent_5_column_2_color','field_62590c30df00b'),(136997,4062,'flexible_templates_6_differential_translucent_5_column_3','Sometimes'),(136998,4062,'_flexible_templates_6_differential_translucent_5_column_3','field_62590c30df00d'),(136999,4062,'flexible_templates_6_differential_translucent_5_column_3_color',''),(137000,4062,'_flexible_templates_6_differential_translucent_5_column_3_color','field_62590c30df00e'),(137001,4062,'flexible_templates_6_differential_translucent_5_column_4','Sometimes'),(137002,4062,'_flexible_templates_6_differential_translucent_5_column_4','field_62590c30df010'),(137003,4062,'flexible_templates_6_differential_translucent_5_column_4_color','#7080a7'),(137004,4062,'_flexible_templates_6_differential_translucent_5_column_4_color','field_62590c30df011'),(137005,4062,'flexible_templates_6_differential_translucent_5_column_5','Always'),(137006,4062,'_flexible_templates_6_differential_translucent_5_column_5','field_62590c30df013'),(137007,4062,'flexible_templates_6_differential_translucent_5_column_5_color','#24c1ff'),(137008,4062,'_flexible_templates_6_differential_translucent_5_column_5_color','field_62590c30df014'),(137009,4062,'flexible_templates_6_differential_translucent_6_column_1','Security and confidentiality'),(137010,4062,'_flexible_templates_6_differential_translucent_6_column_1','field_62590c30df008'),(137011,4062,'flexible_templates_6_differential_translucent_6_column_2','Sometimes'),(137012,4062,'_flexible_templates_6_differential_translucent_6_column_2','field_62590c30df00a'),(137013,4062,'flexible_templates_6_differential_translucent_6_column_2_color',''),(137014,4062,'_flexible_templates_6_differential_translucent_6_column_2_color','field_62590c30df00b'),(137015,4062,'flexible_templates_6_differential_translucent_6_column_3','Rare'),(137016,4062,'_flexible_templates_6_differential_translucent_6_column_3','field_62590c30df00d'),(137017,4062,'flexible_templates_6_differential_translucent_6_column_3_color',''),(137018,4062,'_flexible_templates_6_differential_translucent_6_column_3_color','field_62590c30df00e'),(137019,4062,'flexible_templates_6_differential_translucent_6_column_4','Always'),(137020,4062,'_flexible_templates_6_differential_translucent_6_column_4','field_62590c30df010'),(137021,4062,'flexible_templates_6_differential_translucent_6_column_4_color','#28d9cb'),(137022,4062,'_flexible_templates_6_differential_translucent_6_column_4_color','field_62590c30df011'),(137023,4062,'flexible_templates_6_differential_translucent_6_column_5','Always'),(137024,4062,'_flexible_templates_6_differential_translucent_6_column_5','field_62590c30df013'),(137025,4062,'flexible_templates_6_differential_translucent_6_column_5_color','#24c1ff'),(137026,4062,'_flexible_templates_6_differential_translucent_6_column_5_color','field_62590c30df014'),(137027,4062,'flexible_templates_6_differential_translucent_7_column_1','Top 1% engineering talent'),(137028,4062,'_flexible_templates_6_differential_translucent_7_column_1','field_62590c30df008'),(137029,4062,'flexible_templates_6_differential_translucent_7_column_2','Sometimes'),(137030,4062,'_flexible_templates_6_differential_translucent_7_column_2','field_62590c30df00a'),(137031,4062,'flexible_templates_6_differential_translucent_7_column_2_color',''),(137032,4062,'_flexible_templates_6_differential_translucent_7_column_2_color','field_62590c30df00b'),(137033,4062,'flexible_templates_6_differential_translucent_7_column_3','Rare'),(137034,4062,'_flexible_templates_6_differential_translucent_7_column_3','field_62590c30df00d'),(137035,4062,'flexible_templates_6_differential_translucent_7_column_3_color',''),(137036,4062,'_flexible_templates_6_differential_translucent_7_column_3_color','field_62590c30df00e'),(137037,4062,'flexible_templates_6_differential_translucent_7_column_4','Sometimes'),(137038,4062,'_flexible_templates_6_differential_translucent_7_column_4','field_62590c30df010'),(137039,4062,'flexible_templates_6_differential_translucent_7_column_4_color','#7080a7'),(137040,4062,'_flexible_templates_6_differential_translucent_7_column_4_color','field_62590c30df011'),(137041,4062,'flexible_templates_6_differential_translucent_7_column_5','Always'),(137042,4062,'_flexible_templates_6_differential_translucent_7_column_5','field_62590c30df013'),(137043,4062,'flexible_templates_6_differential_translucent_7_column_5_color','#24c1ff'),(137044,4062,'_flexible_templates_6_differential_translucent_7_column_5_color','field_62590c30df014'),(137045,4062,'flexible_templates_6_differential_translucent_8_column_1','Top project management talent'),(137046,4062,'_flexible_templates_6_differential_translucent_8_column_1','field_62590c30df008'),(137047,4062,'flexible_templates_6_differential_translucent_8_column_2','Sometimes'),(137048,4062,'_flexible_templates_6_differential_translucent_8_column_2','field_62590c30df00a'),(137049,4062,'flexible_templates_6_differential_translucent_8_column_2_color',''),(137050,4062,'_flexible_templates_6_differential_translucent_8_column_2_color','field_62590c30df00b'),(137051,4062,'flexible_templates_6_differential_translucent_8_column_3','Rare'),(137052,4062,'_flexible_templates_6_differential_translucent_8_column_3','field_62590c30df00d'),(137053,4062,'flexible_templates_6_differential_translucent_8_column_3_color',''),(137054,4062,'_flexible_templates_6_differential_translucent_8_column_3_color','field_62590c30df00e'),(137055,4062,'flexible_templates_6_differential_translucent_8_column_4','Rare'),(137056,4062,'_flexible_templates_6_differential_translucent_8_column_4','field_62590c30df010'),(137057,4062,'flexible_templates_6_differential_translucent_8_column_4_color','#ff555f'),(137058,4062,'_flexible_templates_6_differential_translucent_8_column_4_color','field_62590c30df011'),(137059,4062,'flexible_templates_6_differential_translucent_8_column_5','Always'),(137060,4062,'_flexible_templates_6_differential_translucent_8_column_5','field_62590c30df013'),(137061,4062,'flexible_templates_6_differential_translucent_8_column_5_color','#24c1ff'),(137062,4062,'_flexible_templates_6_differential_translucent_8_column_5_color','field_62590c30df014'),(137063,4062,'flexible_templates_6_differential_translucent_9_column_1','Dedicated Dev-ops Manager'),(137064,4062,'_flexible_templates_6_differential_translucent_9_column_1','field_62590c30df008'),(137065,4062,'flexible_templates_6_differential_translucent_9_column_2','Sometimes'),(137066,4062,'_flexible_templates_6_differential_translucent_9_column_2','field_62590c30df00a'),(137067,4062,'flexible_templates_6_differential_translucent_9_column_2_color',''),(137068,4062,'_flexible_templates_6_differential_translucent_9_column_2_color','field_62590c30df00b'),(137069,4062,'flexible_templates_6_differential_translucent_9_column_3','Rare'),(137070,4062,'_flexible_templates_6_differential_translucent_9_column_3','field_62590c30df00d'),(137071,4062,'flexible_templates_6_differential_translucent_9_column_3_color',''),(137072,4062,'_flexible_templates_6_differential_translucent_9_column_3_color','field_62590c30df00e'),(137073,4062,'flexible_templates_6_differential_translucent_9_column_4','Rare'),(137074,4062,'_flexible_templates_6_differential_translucent_9_column_4','field_62590c30df010'),(137075,4062,'flexible_templates_6_differential_translucent_9_column_4_color','#ff555f'),(137076,4062,'_flexible_templates_6_differential_translucent_9_column_4_color','field_62590c30df011'),(137077,4062,'flexible_templates_6_differential_translucent_9_column_5','Always'),(137078,4062,'_flexible_templates_6_differential_translucent_9_column_5','field_62590c30df013'),(137079,4062,'flexible_templates_6_differential_translucent_9_column_5_color','#24c1ff'),(137080,4062,'_flexible_templates_6_differential_translucent_9_column_5_color','field_62590c30df014'),(137081,4062,'flexible_templates_6_differential_translucent_10_column_1','Scalable solutions i.e. can easily grow as you do'),(137082,4062,'_flexible_templates_6_differential_translucent_10_column_1','field_62590c30df008'),(137083,4062,'flexible_templates_6_differential_translucent_10_column_2','Sometimes'),(137084,4062,'_flexible_templates_6_differential_translucent_10_column_2','field_62590c30df00a'),(137085,4062,'flexible_templates_6_differential_translucent_10_column_2_color',''),(137086,4062,'_flexible_templates_6_differential_translucent_10_column_2_color','field_62590c30df00b'),(137087,4062,'flexible_templates_6_differential_translucent_10_column_3','Rare'),(137088,4062,'_flexible_templates_6_differential_translucent_10_column_3','field_62590c30df00d'),(137089,4062,'flexible_templates_6_differential_translucent_10_column_3_color',''),(137090,4062,'_flexible_templates_6_differential_translucent_10_column_3_color','field_62590c30df00e'),(137091,4062,'flexible_templates_6_differential_translucent_10_column_4','Rare'),(137092,4062,'_flexible_templates_6_differential_translucent_10_column_4','field_62590c30df010'),(137093,4062,'flexible_templates_6_differential_translucent_10_column_4_color','#ff555f'),(137094,4062,'_flexible_templates_6_differential_translucent_10_column_4_color','field_62590c30df011'),(137095,4062,'flexible_templates_6_differential_translucent_10_column_5','Always'),(137096,4062,'_flexible_templates_6_differential_translucent_10_column_5','field_62590c30df013'),(137097,4062,'flexible_templates_6_differential_translucent_10_column_5_color','#24c1ff'),(137098,4062,'_flexible_templates_6_differential_translucent_10_column_5_color','field_62590c30df014'),(137099,4062,'flexible_templates_6_differential_translucent_11_column_1','Understand your business objectives and outcomes. You want to drive.'),(137100,4062,'_flexible_templates_6_differential_translucent_11_column_1','field_62590c30df008'),(137101,4062,'flexible_templates_6_differential_translucent_11_column_2','Sometimes'),(137102,4062,'_flexible_templates_6_differential_translucent_11_column_2','field_62590c30df00a'),(137103,4062,'flexible_templates_6_differential_translucent_11_column_2_color',''),(137104,4062,'_flexible_templates_6_differential_translucent_11_column_2_color','field_62590c30df00b'),(137105,4062,'flexible_templates_6_differential_translucent_11_column_3','Sometimes'),(137106,4062,'_flexible_templates_6_differential_translucent_11_column_3','field_62590c30df00d'),(137107,4062,'flexible_templates_6_differential_translucent_11_column_3_color',''),(137108,4062,'_flexible_templates_6_differential_translucent_11_column_3_color','field_62590c30df00e'),(137109,4062,'flexible_templates_6_differential_translucent_11_column_4','Always'),(137110,4062,'_flexible_templates_6_differential_translucent_11_column_4','field_62590c30df010'),(137111,4062,'flexible_templates_6_differential_translucent_11_column_4_color','#28d9cb'),(137112,4062,'_flexible_templates_6_differential_translucent_11_column_4_color','field_62590c30df011'),(137113,4062,'flexible_templates_6_differential_translucent_11_column_5','Always'),(137114,4062,'_flexible_templates_6_differential_translucent_11_column_5','field_62590c30df013'),(137115,4062,'flexible_templates_6_differential_translucent_11_column_5_color','#24c1ff'),(137116,4062,'_flexible_templates_6_differential_translucent_11_column_5_color','field_62590c30df014'),(137117,4062,'flexible_templates_6_differential_translucent_12_column_1','Amazing'),(137118,4062,'_flexible_templates_6_differential_translucent_12_column_1','field_62590c30df008'),(137119,4062,'flexible_templates_6_differential_translucent_12_column_2','Sometimes'),(137120,4062,'_flexible_templates_6_differential_translucent_12_column_2','field_62590c30df00a'),(137121,4062,'flexible_templates_6_differential_translucent_12_column_2_color',''),(137122,4062,'_flexible_templates_6_differential_translucent_12_column_2_color','field_62590c30df00b'),(137123,4062,'flexible_templates_6_differential_translucent_12_column_3','Rare'),(137124,4062,'_flexible_templates_6_differential_translucent_12_column_3','field_62590c30df00d'),(137125,4062,'flexible_templates_6_differential_translucent_12_column_3_color',''),(137126,4062,'_flexible_templates_6_differential_translucent_12_column_3_color','field_62590c30df00e'),(137127,4062,'flexible_templates_6_differential_translucent_12_column_4','Rare'),(137128,4062,'_flexible_templates_6_differential_translucent_12_column_4','field_62590c30df010'),(137129,4062,'flexible_templates_6_differential_translucent_12_column_4_color','#ff555f'),(137130,4062,'_flexible_templates_6_differential_translucent_12_column_4_color','field_62590c30df011'),(137131,4062,'flexible_templates_6_differential_translucent_12_column_5','Always'),(137132,4062,'_flexible_templates_6_differential_translucent_12_column_5','field_62590c30df013'),(137133,4062,'flexible_templates_6_differential_translucent_12_column_5_color','#24c1ff'),(137134,4062,'_flexible_templates_6_differential_translucent_12_column_5_color','field_62590c30df014'),(137135,4062,'flexible_templates_6_differential_translucent_13_column_1','24 hour dedicated support'),(137136,4062,'_flexible_templates_6_differential_translucent_13_column_1','field_62590c30df008'),(137137,4062,'flexible_templates_6_differential_translucent_13_column_2','Rare'),(137138,4062,'_flexible_templates_6_differential_translucent_13_column_2','field_62590c30df00a'),(137139,4062,'flexible_templates_6_differential_translucent_13_column_2_color',''),(137140,4062,'_flexible_templates_6_differential_translucent_13_column_2_color','field_62590c30df00b'),(137141,4062,'flexible_templates_6_differential_translucent_13_column_3','Rare'),(137142,4062,'_flexible_templates_6_differential_translucent_13_column_3','field_62590c30df00d'),(137143,4062,'flexible_templates_6_differential_translucent_13_column_3_color',''),(137144,4062,'_flexible_templates_6_differential_translucent_13_column_3_color','field_62590c30df00e'),(137145,4062,'flexible_templates_6_differential_translucent_13_column_4','Rare'),(137146,4062,'_flexible_templates_6_differential_translucent_13_column_4','field_62590c30df010'),(137147,4062,'flexible_templates_6_differential_translucent_13_column_4_color','#ff555f'),(137148,4062,'_flexible_templates_6_differential_translucent_13_column_4_color','field_62590c30df011'),(137149,4062,'flexible_templates_6_differential_translucent_13_column_5','Always'),(137150,4062,'_flexible_templates_6_differential_translucent_13_column_5','field_62590c30df013'),(137151,4062,'flexible_templates_6_differential_translucent_13_column_5_color','#24c1ff'),(137152,4062,'_flexible_templates_6_differential_translucent_13_column_5_color','field_62590c30df014'),(137153,4063,'flexible_templates','a:9:{i:0;s:19:\"cloud_native_banner\";i:1;s:35:\"cloud_native_expert_dedicated_teams\";i:2;s:39:\"cloud_native_solving_digital_challenges\";i:3;s:26:\"cloud_native_scale_demands\";i:4;s:22:\"cloud_native_ecosystem\";i:5;s:31:\"cloud_native_technology_partner\";i:6;s:37:\"cloud_native_translucent_differential\";i:7;s:26:\"cloud_nature_future_vision\";i:8;s:17:\"lets_talk_section\";}'),(137154,4063,'_flexible_templates','field_6254f4d84ef9b'),(137155,4063,'flexible_templates_0_image','4030'),(137156,4063,'_flexible_templates_0_image','field_62569b35f7c63_field_6254fdc5efa2a'),(137157,4063,'flexible_templates_0_icon','4013'),(137158,4063,'_flexible_templates_0_icon','field_62569b69f7c64_field_62550482480cb'),(137159,4063,'flexible_templates_0_heading','Solve Digital Challenges with a Complete Cloud Native Solution'),(137160,4063,'_flexible_templates_0_heading','field_62569b87f7c65_field_6254fdb2efa27'),(137161,4063,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(137162,4063,'_flexible_templates_0_sub_heading','field_62569ba5f7c66_field_6254fdbaefa28'),(137163,4063,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:23:\"Transform Your Business\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(137164,4063,'_flexible_templates_0_cta','field_62569bcff7c67_field_62551b3e101c4'),(137165,4063,'flexible_templates_1_image','4031'),(137166,4063,'_flexible_templates_1_image','field_6256a05dda66c_field_6254fdc5efa2a'),(137167,4063,'flexible_templates_1_heading','Expert dedicated teams for your cloud native project.'),(137168,4063,'_flexible_templates_1_heading','field_62569f6d3c0ad_field_6254fdb2efa27'),(137169,4063,'flexible_templates_1_sub_heading','DATA-DRIVEN TRUSTED TECHNOLOGY PARTNER'),(137170,4063,'_flexible_templates_1_sub_heading','field_62569f7a3c0ae_field_6254fdbaefa28'),(137171,4063,'flexible_templates_1_copy','Our expert software engineering teams develop intelligent apps for fintech, healthcare, automotive, and any other data-driven journey, with over 10 years of experience in large scale complex project. Enable your business to reflect its operations through technology while helping it become more dynamic, secure, and easier to scale by increasing speed to market. As a pioneer in cloud native application development we have a proven track record of solving digital transformation challenges for enterprises.'),(137172,4063,'_flexible_templates_1_copy','field_6256a175dc200_field_6254fdc0efa29'),(137173,4063,'flexible_templates_1_copy_long',''),(137174,4063,'_flexible_templates_1_copy_long','field_6256a026da66a'),(137175,4063,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:12:\"How We Do It\";s:3:\"url\";s:36:\"https://translucent.local/tek-world/\";s:6:\"target\";s:0:\"\";}'),(137176,4063,'_flexible_templates_1_cta','field_6256a03ada66b_field_62551b3e101c4'),(137177,4063,'flexible_templates_2_heading','Three paths to Cloud Native'),(137178,4063,'_flexible_templates_2_heading','field_6256a640dea7c_field_6254fdb2efa27'),(137179,4063,'flexible_templates_2_sub_heading','SOLVING DIGITAL CHALLENGES'),(137180,4063,'_flexible_templates_2_sub_heading','field_6256a66cdea7d_field_6254fdbaefa28'),(137181,4063,'flexible_templates_2_posts_grid_0_icon','4033'),(137182,4063,'_flexible_templates_2_posts_grid_0_icon','field_6256a6c0dea7f_field_62550482480cb'),(137183,4063,'flexible_templates_2_posts_grid_0_heading','Build'),(137184,4063,'_flexible_templates_2_posts_grid_0_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(137185,4063,'flexible_templates_2_posts_grid_0_copy','We\'re not just a software company. We\'re the people who help your business achieve its digital transformation vision. From strategy to implementation, we\'ll support you with our cloud native, data driven technology and digital transformation expertise. '),(137186,4063,'_flexible_templates_2_posts_grid_0_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(137187,4063,'flexible_templates_2_posts_grid_0_cta',''),(137188,4063,'_flexible_templates_2_posts_grid_0_cta','field_6256a6f8dea82_field_62551b3e101c4'),(137189,4063,'flexible_templates_2_posts_grid_1_icon','4034'),(137190,4063,'_flexible_templates_2_posts_grid_1_icon','field_6256a6c0dea7f_field_62550482480cb'),(137191,4063,'flexible_templates_2_posts_grid_1_heading','ReBuild'),(137192,4063,'_flexible_templates_2_posts_grid_1_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(137193,4063,'flexible_templates_2_posts_grid_1_copy','Break free from the limitations of your old legacy technology by rebuilding your business critical application components without affecting the original specifications, requirements, and business logic. This will improve scalability, maintainability, and reliability.\r\n'),(137194,4063,'_flexible_templates_2_posts_grid_1_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(137195,4063,'flexible_templates_2_posts_grid_1_cta',''),(137196,4063,'_flexible_templates_2_posts_grid_1_cta','field_6256a6f8dea82_field_62551b3e101c4'),(137197,4063,'flexible_templates_2_posts_grid_2_icon','4035'),(137198,4063,'_flexible_templates_2_posts_grid_2_icon','field_6256a6c0dea7f_field_62550482480cb'),(137199,4063,'flexible_templates_2_posts_grid_2_heading','RePlatform'),(137200,4063,'_flexible_templates_2_posts_grid_2_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(137201,4063,'flexible_templates_2_posts_grid_2_copy','Migrate your old application to a new runtime platform. When upgrading to a cloud native application platform, we repurpose the useable components from your legacy technology, and minimize changes to code and structure.'),(137202,4063,'_flexible_templates_2_posts_grid_2_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(137203,4063,'flexible_templates_2_posts_grid_2_cta',''),(137204,4063,'_flexible_templates_2_posts_grid_2_cta','field_6256a6f8dea82_field_62551b3e101c4'),(137205,4063,'flexible_templates_2_posts_grid','3'),(137206,4063,'_flexible_templates_2_posts_grid','field_6256a698dea7e'),(137207,4063,'flexible_templates_2_cta','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://translucent.local/cloud-native-application-development/\";s:6:\"target\";s:0:\"\";}'),(137208,4063,'_flexible_templates_2_cta','field_6256a725dea83_field_62551b3e101c4'),(137209,4063,'flexible_templates_3_heading','Scale According to your Demands'),(137210,4063,'_flexible_templates_3_heading','field_6256aa0c6187a_field_6254fdb2efa27'),(137211,4063,'flexible_templates_3_scale_demands_0_icon',''),(137212,4063,'_flexible_templates_3_scale_demands_0_icon','field_6256aa4e6187c_field_62550482480cb'),(137213,4063,'flexible_templates_3_scale_demands_0_heading','TEKTeams'),(137214,4063,'_flexible_templates_3_scale_demands_0_heading','field_6256aa866187d_field_6254fdb2efa27'),(137215,4063,'flexible_templates_3_scale_demands_0_copy','On-demand resources that may be used whenever and wherever you need them. Increase your workforce by partnering with teams tailored to your business needs.'),(137216,4063,'_flexible_templates_3_scale_demands_0_copy','field_6256aa986187e_field_6254fdc0efa29'),(137217,4063,'flexible_templates_3_scale_demands_0_cta','a:3:{s:5:\"title\";s:16:\"Scale Your Teams\";s:3:\"url\";s:34:\"https://translucent.local/tekteams\";s:6:\"target\";s:0:\"\";}'),(137218,4063,'_flexible_templates_3_scale_demands_0_cta','field_6256aab66187f_field_62551b3e101c4'),(137219,4063,'flexible_templates_3_scale_demands_1_icon',''),(137220,4063,'_flexible_templates_3_scale_demands_1_icon','field_6256aa4e6187c_field_62550482480cb'),(137221,4063,'flexible_templates_3_scale_demands_1_heading','TEKStack AI'),(137222,4063,'_flexible_templates_3_scale_demands_1_heading','field_6256aa866187d_field_6254fdb2efa27'),(137223,4063,'flexible_templates_3_scale_demands_1_copy','TEKStack AI has perfected the complex process of working with production ready tools that have been shown to save time and money. Reduce your time to market by more than 20%.'),(137224,4063,'_flexible_templates_3_scale_demands_1_copy','field_6256aa986187e_field_6254fdc0efa29'),(137225,4063,'flexible_templates_3_scale_demands_1_cta','a:3:{s:5:\"title\";s:20:\"Speed Up Development\";s:3:\"url\";s:38:\"https://translucent.local/tekstack-ai/\";s:6:\"target\";s:0:\"\";}'),(137226,4063,'_flexible_templates_3_scale_demands_1_cta','field_6256aab66187f_field_62551b3e101c4'),(137227,4063,'flexible_templates_3_scale_demands_2_icon',''),(137228,4063,'_flexible_templates_3_scale_demands_2_icon','field_6256aa4e6187c_field_62550482480cb'),(137229,4063,'flexible_templates_3_scale_demands_2_heading','TEKProcess'),(137230,4063,'_flexible_templates_3_scale_demands_2_heading','field_6256aa866187d_field_6254fdb2efa27'),(137231,4063,'flexible_templates_3_scale_demands_2_copy','Our approach to cloud native development will organize your entire cloud native development process ​from conception to steady state and support, known as TEKProcess.'),(137232,4063,'_flexible_templates_3_scale_demands_2_copy','field_6256aa986187e_field_6254fdc0efa29'),(137233,4063,'flexible_templates_3_scale_demands_2_cta','a:3:{s:5:\"title\";s:24:\"Optimize Your Operations\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(137234,4063,'_flexible_templates_3_scale_demands_2_cta','field_6256aab66187f_field_62551b3e101c4'),(137235,4063,'flexible_templates_3_scale_demands','3'),(137236,4063,'_flexible_templates_3_scale_demands','field_6256aa366187b'),(137237,4063,'flexible_templates_4_heading','Reflect Your Operations Through Technology'),(137238,4063,'_flexible_templates_4_heading','field_6256acb5f89e4_field_6254fdb2efa27'),(137239,4063,'flexible_templates_4_sub_heading','CLOUD NATIVE ECOSYSTEM'),(137240,4063,'_flexible_templates_4_sub_heading','field_6256acc6f89e5_field_6254fdbaefa28'),(137241,4063,'flexible_templates_4_icon','4041'),(137242,4063,'_flexible_templates_4_icon','field_6256db0a20c28_field_62550482480cb'),(137243,4063,'flexible_templates_4_image',''),(137244,4063,'_flexible_templates_4_image','field_6257293fdf3c8_field_6254fdc5efa2a'),(137245,4063,'flexible_templates_4_technology_0_heading','Solve Problems Quick'),(137246,4063,'_flexible_templates_4_technology_0_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(137247,4063,'flexible_templates_4_technology_0_sub_heading','How?'),(137248,4063,'_flexible_templates_4_technology_0_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(137249,4063,'flexible_templates_4_technology_0_copy','Translucent is a data driven digital transformation company that uses technology to solve problems and modernize companies.'),(137250,4063,'_flexible_templates_4_technology_0_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(137251,4063,'flexible_templates_4_technology_0_back_heading','Data Driven'),(137252,4063,'_flexible_templates_4_technology_0_back_heading','field_6256b2b61a441'),(137253,4063,'flexible_templates_4_technology_0_icon','4038'),(137254,4063,'_flexible_templates_4_technology_0_icon','field_6256b2be1a442_field_62550482480cb'),(137255,4063,'flexible_templates_4_technology_0_back_copy','We work closely with companies to analyze their business and discover new opportunities they did not know existed.'),(137256,4063,'_flexible_templates_4_technology_0_back_copy','field_6256b2e31a443'),(137257,4063,'flexible_templates_4_technology_0_image',''),(137258,4063,'_flexible_templates_4_technology_0_image','field_6256b3011a444_field_6254fdc5efa2a'),(137259,4063,'flexible_templates_4_technology_0_cta','a:3:{s:5:\"title\";s:13:\"Start Solving\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(137260,4063,'_flexible_templates_4_technology_0_cta','field_6256ad66f89e9_field_62551b3e101c4'),(137261,4063,'flexible_templates_4_technology_1_heading','Automate Development Tasks'),(137262,4063,'_flexible_templates_4_technology_1_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(137263,4063,'flexible_templates_4_technology_1_sub_heading','How?'),(137264,4063,'_flexible_templates_4_technology_1_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(137265,4063,'flexible_templates_4_technology_1_copy','Simplify the intricacies of cloud applications by automating laborious tasks in the development process.'),(137266,4063,'_flexible_templates_4_technology_1_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(137267,4063,'flexible_templates_4_technology_1_back_heading',''),(137268,4063,'_flexible_templates_4_technology_1_back_heading','field_6256b2b61a441'),(137269,4063,'flexible_templates_4_technology_1_icon','4040'),(137270,4063,'_flexible_templates_4_technology_1_icon','field_6256b2be1a442_field_62550482480cb'),(137271,4063,'flexible_templates_4_technology_1_back_copy','Translucent is one of just four kubernetes certified partners in Canada!'),(137272,4063,'_flexible_templates_4_technology_1_back_copy','field_6256b2e31a443'),(137273,4063,'flexible_templates_4_technology_1_image','4039'),(137274,4063,'_flexible_templates_4_technology_1_image','field_6256b3011a444_field_6254fdc5efa2a'),(137275,4063,'flexible_templates_4_technology_1_cta','a:3:{s:5:\"title\";s:16:\"Start Automating\";s:3:\"url\";s:59:\"https://translucent.local/kubernetes-professional-services/\";s:6:\"target\";s:0:\"\";}'),(137276,4063,'_flexible_templates_4_technology_1_cta','field_6256ad66f89e9_field_62551b3e101c4'),(137277,4063,'flexible_templates_4_technology_2_heading','Build and Deploy Faster'),(137278,4063,'_flexible_templates_4_technology_2_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(137279,4063,'flexible_templates_4_technology_2_sub_heading','How?'),(137280,4063,'_flexible_templates_4_technology_2_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(137281,4063,'flexible_templates_4_technology_2_copy','Maximise earnings by building and deploying more features and faster.'),(137282,4063,'_flexible_templates_4_technology_2_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(137283,4063,'flexible_templates_4_technology_2_back_heading',''),(137284,4063,'_flexible_templates_4_technology_2_back_heading','field_6256b2b61a441'),(137285,4063,'flexible_templates_4_technology_2_icon','4042'),(137286,4063,'_flexible_templates_4_technology_2_icon','field_6256b2be1a442_field_62550482480cb'),(137287,4063,'flexible_templates_4_technology_2_back_copy','Devops is the heartbeat of all Translucent services, and Translucent IS Devops.'),(137288,4063,'_flexible_templates_4_technology_2_back_copy','field_6256b2e31a443'),(137289,4063,'flexible_templates_4_technology_2_image',''),(137290,4063,'_flexible_templates_4_technology_2_image','field_6256b3011a444_field_6254fdc5efa2a'),(137291,4063,'flexible_templates_4_technology_2_cta','a:3:{s:5:\"title\";s:17:\"Unlock Efficiency\";s:3:\"url\";s:46:\"https://translucent.local/cloud-native-devops/\";s:6:\"target\";s:0:\"\";}'),(137292,4063,'_flexible_templates_4_technology_2_cta','field_6256ad66f89e9_field_62551b3e101c4'),(137293,4063,'flexible_templates_4_technology_3_heading','Remain Secure as Possible'),(137294,4063,'_flexible_templates_4_technology_3_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(137295,4063,'flexible_templates_4_technology_3_sub_heading','How?'),(137296,4063,'_flexible_templates_4_technology_3_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(137297,4063,'flexible_templates_4_technology_3_copy','Reduce deliberate and incidental security vulnerabilities in your systems.'),(137298,4063,'_flexible_templates_4_technology_3_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(137299,4063,'flexible_templates_4_technology_3_back_heading','Zero Trust'),(137300,4063,'_flexible_templates_4_technology_3_back_heading','field_6256b2b61a441'),(137301,4063,'flexible_templates_4_technology_3_icon','4043'),(137302,4063,'_flexible_templates_4_technology_3_icon','field_6256b2be1a442_field_62550482480cb'),(137303,4063,'flexible_templates_4_technology_3_back_copy','We are partnered with the best security teams to offer full end to end services.'),(137304,4063,'_flexible_templates_4_technology_3_back_copy','field_6256b2e31a443'),(137305,4063,'flexible_templates_4_technology_3_image',''),(137306,4063,'_flexible_templates_4_technology_3_image','field_6256b3011a444_field_6254fdc5efa2a'),(137307,4063,'flexible_templates_4_technology_3_cta','a:3:{s:5:\"title\";s:20:\"Protect What Matters\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(137308,4063,'_flexible_templates_4_technology_3_cta','field_6256ad66f89e9_field_62551b3e101c4'),(137309,4063,'flexible_templates_4_technology','6'),(137310,4063,'_flexible_templates_4_technology','field_6256acf8f89e6'),(137311,4063,'flexible_templates_4_technology_4_heading','Propel Your Business into The Future'),(137312,4063,'_flexible_templates_4_technology_4_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(137313,4063,'flexible_templates_4_technology_4_sub_heading','How?'),(137314,4063,'_flexible_templates_4_technology_4_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(137315,4063,'flexible_templates_4_technology_4_copy','Build new systems in the cloud, or Modernize legacy data and applications by rebuilding or migrating to a value-driven platform. '),(137316,4063,'_flexible_templates_4_technology_4_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(137317,4063,'flexible_templates_4_technology_4_back_heading','Application Development'),(137318,4063,'_flexible_templates_4_technology_4_back_heading','field_6256b2b61a441'),(137319,4063,'flexible_templates_4_technology_4_icon','4047'),(137320,4063,'_flexible_templates_4_technology_4_icon','field_6256b2be1a442_field_62550482480cb'),(137321,4063,'flexible_templates_4_technology_4_back_copy','We develop intelligent apps for fintech, healthcare, and any other data-driven journey.'),(137322,4063,'_flexible_templates_4_technology_4_back_copy','field_6256b2e31a443'),(137323,4063,'flexible_templates_4_technology_4_image',''),(137324,4063,'_flexible_templates_4_technology_4_image','field_6256b3011a444_field_6254fdc5efa2a'),(137325,4063,'flexible_templates_4_technology_4_cta','a:3:{s:5:\"title\";s:14:\"Build It Right\";s:3:\"url\";s:63:\"https://translucent.local/cloud-native-application-development/\";s:6:\"target\";s:0:\"\";}'),(137326,4063,'_flexible_templates_4_technology_4_cta','field_6256ad66f89e9_field_62551b3e101c4'),(137327,4063,'flexible_templates_4_technology_5_heading','Make Decisions Faster'),(137328,4063,'_flexible_templates_4_technology_5_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(137329,4063,'flexible_templates_4_technology_5_sub_heading','How?'),(137330,4063,'_flexible_templates_4_technology_5_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(137331,4063,'flexible_templates_4_technology_5_copy','Discover anomalies and opportunities faster than human intelligence!'),(137332,4063,'_flexible_templates_4_technology_5_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(137333,4063,'flexible_templates_4_technology_5_back_heading',''),(137334,4063,'_flexible_templates_4_technology_5_back_heading','field_6256b2b61a441'),(137335,4063,'flexible_templates_4_technology_5_icon','4048'),(137336,4063,'_flexible_templates_4_technology_5_icon','field_6256b2be1a442_field_62550482480cb'),(137337,4063,'flexible_templates_4_technology_5_back_copy','Extend the boundaries of your business by solving problems faster.'),(137338,4063,'_flexible_templates_4_technology_5_back_copy','field_6256b2e31a443'),(137339,4063,'flexible_templates_4_technology_5_image',''),(137340,4063,'_flexible_templates_4_technology_5_image','field_6256b3011a444_field_6254fdc5efa2a'),(137341,4063,'flexible_templates_4_technology_5_cta','a:3:{s:5:\"title\";s:22:\"Solve Complex Problems\";s:3:\"url\";s:52:\"https://translucent.local/services/machine-learning/\";s:6:\"target\";s:6:\"_blank\";}'),(137342,4063,'_flexible_templates_4_technology_5_cta','field_6256ad66f89e9_field_62551b3e101c4'),(137343,4063,'flexible_templates_5_image','4051'),(137344,4063,'_flexible_templates_5_image','field_6256dbdfc0c83_field_6254fdc5efa2a'),(137345,4063,'flexible_templates_5_mob_image','4050'),(137346,4063,'_flexible_templates_5_mob_image','field_6256dbeec0c84_field_6254fdcbefa2b'),(137347,4063,'flexible_templates_5_heading','Companies That We Work With'),(137348,4063,'_flexible_templates_5_heading','field_6256dc0cc0c85_field_6254fdb2efa27'),(137349,4063,'flexible_templates_5_technology_partner_0_heading','Teams looking for a trusted nearshore technology partner '),(137350,4063,'_flexible_templates_5_technology_partner_0_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(137351,4063,'flexible_templates_5_technology_partner_0_icon','4052'),(137352,4063,'_flexible_templates_5_technology_partner_0_icon','field_6256dc78c0c88_field_62550482480cb'),(137353,4063,'flexible_templates_5_technology_partner_0_copy','Your Dedicated Development Team. We bring the best people in the industry with various skills to develop and maintain the highest quality software.'),(137354,4063,'_flexible_templates_5_technology_partner_0_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(137355,4063,'flexible_templates_5_technology_partner_1_heading','Teams looking to a build state-of-the-art platform'),(137356,4063,'_flexible_templates_5_technology_partner_1_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(137357,4063,'flexible_templates_5_technology_partner_1_icon','4053'),(137358,4063,'_flexible_templates_5_technology_partner_1_icon','field_6256dc78c0c88_field_62550482480cb'),(137359,4063,'flexible_templates_5_technology_partner_1_copy','Industry-leading cloud native solutions that are backed by an award-winning process, teams, and production-ready data-driven platform.'),(137360,4063,'_flexible_templates_5_technology_partner_1_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(137361,4063,'flexible_templates_5_technology_partner_2_heading','Teams looking to outperform competition'),(137362,4063,'_flexible_templates_5_technology_partner_2_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(137363,4063,'flexible_templates_5_technology_partner_2_icon','4054'),(137364,4063,'_flexible_templates_5_technology_partner_2_icon','field_6256dc78c0c88_field_62550482480cb'),(137365,4063,'flexible_templates_5_technology_partner_2_copy','Gain a major competitive advantage by increasing speed to market by 20%, allowing you to make business moves more quickly.'),(137366,4063,'_flexible_templates_5_technology_partner_2_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(137367,4063,'flexible_templates_5_technology_partner','3'),(137368,4063,'_flexible_templates_5_technology_partner','field_6256dc3fc0c86'),(137369,4063,'flexible_templates_6_heading','WHY TRANSLUCENT'),(137370,4063,'_flexible_templates_6_heading','field_62590b7cdf000_field_6254fdb2efa27'),(137371,4063,'flexible_templates_6_sub_heading','How Translucent Powered by TEK Differs From Alternative Solutions'),(137372,4063,'_flexible_templates_6_sub_heading','field_62590b8bdf001_field_6254fdbaefa28'),(137373,4063,'flexible_templates_6_icon','4013'),(137374,4063,'_flexible_templates_6_icon','field_62590bc5df002_field_62550482480cb'),(137375,4063,'flexible_templates_6_differential_translucent_header_0_heading','Your needs'),(137376,4063,'_flexible_templates_6_differential_translucent_header_0_heading','field_62590c01df004_field_6254fdb2efa27'),(137377,4063,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(137378,4063,'_flexible_templates_6_differential_translucent_header_0_color','field_62590c11df005'),(137379,4063,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(137380,4063,'_flexible_templates_6_differential_translucent_header_1_heading','field_62590c01df004_field_6254fdb2efa27'),(137381,4063,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(137382,4063,'_flexible_templates_6_differential_translucent_header_1_color','field_62590c11df005'),(137383,4063,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore teams'),(137384,4063,'_flexible_templates_6_differential_translucent_header_2_heading','field_62590c01df004_field_6254fdb2efa27'),(137385,4063,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(137386,4063,'_flexible_templates_6_differential_translucent_header_2_color','field_62590c11df005'),(137387,4063,'flexible_templates_6_differential_translucent_header_3_heading','Hiring in-house developers'),(137388,4063,'_flexible_templates_6_differential_translucent_header_3_heading','field_62590c01df004_field_6254fdb2efa27'),(137389,4063,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(137390,4063,'_flexible_templates_6_differential_translucent_header_3_color','field_62590c11df005'),(137391,4063,'flexible_templates_6_differential_translucent_header','5'),(137392,4063,'_flexible_templates_6_differential_translucent_header','field_62590bf9df003'),(137393,4063,'flexible_templates_6_differential_translucent','14'),(137394,4063,'_flexible_templates_6_differential_translucent','field_62590c30df006'),(137395,4063,'flexible_templates_6_differential_translucent_header_4_heading','Working with Translucent'),(137396,4063,'_flexible_templates_6_differential_translucent_header_4_heading','field_62590c01df004_field_6254fdb2efa27'),(137397,4063,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(137398,4063,'_flexible_templates_6_differential_translucent_header_4_color','field_62590c11df005'),(137399,4063,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(137400,4063,'_flexible_templates_6_differential_translucent_0_column_1','field_62590c30df008'),(137401,4063,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(137402,4063,'_flexible_templates_6_differential_translucent_0_column_2','field_62590c30df00a'),(137403,4063,'flexible_templates_6_differential_translucent_0_column_2_color','#7080a7'),(137404,4063,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62590c30df00b'),(137405,4063,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(137406,4063,'_flexible_templates_6_differential_translucent_0_column_3','field_62590c30df00d'),(137407,4063,'flexible_templates_6_differential_translucent_0_column_3_color','#ff555f'),(137408,4063,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62590c30df00e'),(137409,4063,'flexible_templates_6_differential_translucent_0_column_4','Always'),(137410,4063,'_flexible_templates_6_differential_translucent_0_column_4','field_62590c30df010'),(137411,4063,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(137412,4063,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62590c30df011'),(137413,4063,'flexible_templates_6_differential_translucent_0_column_5','Always'),(137414,4063,'_flexible_templates_6_differential_translucent_0_column_5','field_62590c30df013'),(137415,4063,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(137416,4063,'_flexible_templates_6_differential_translucent_0_column_5_color','field_62590c30df014'),(137417,4063,'flexible_templates_7_heading','We have a future vision that is in sync with the realities that our clients are currently facing'),(137418,4063,'_flexible_templates_7_heading','field_625733105d792_field_6254fdb2efa27'),(137419,4063,'flexible_templates_7_copy_wysiwyg','Translucent is a pioneer in cloud native application development. We created our own solutions, which we call TEK : Translucent Expert Knowledge. Our culture fosters innovation.'),(137420,4063,'_flexible_templates_7_copy_wysiwyg','field_625733205d793_field_6255310ecf4de'),(137421,4063,'flexible_templates_7_image','4057'),(137422,4063,'_flexible_templates_7_image','field_625733375d794_field_6254fdc5efa2a'),(137423,4063,'flexible_templates_7_icon','4058'),(137424,4063,'_flexible_templates_7_icon','field_625733495d795_field_62550482480cb'),(137425,4063,'flexible_templates_7_sick_kids_text',''),(137426,4063,'_flexible_templates_7_sick_kids_text','field_62573ad019bd0'),(137427,4063,'flexible_templates_7_tek_stack_case','TEK in Action'),(137428,4063,'_flexible_templates_7_tek_stack_case','field_625733b05d797'),(137429,4063,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:36:\"See How We Helped Sick Kids Hospital\";s:3:\"url\";s:70:\"https://translucent.local/case-studies/the-hospital-for-sick-children/\";s:6:\"target\";s:0:\"\";}'),(137430,4063,'_flexible_templates_7_cta','field_625733895d796_field_62551b3e101c4'),(137431,4063,'flexible_templates_8_heading','We treat your business like our own.'),(137432,4063,'_flexible_templates_8_heading','field_625565e14146d_field_6254fdb2efa27'),(137433,4063,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:10:\"Let\'s talk\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(137434,4063,'_flexible_templates_8_cta','field_625565fa4146e_field_62551b3e101c4'),(137435,4063,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (Speed to market)'),(137436,4063,'_flexible_templates_6_differential_translucent_1_column_1','field_62590c30df008'),(137437,4063,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(137438,4063,'_flexible_templates_6_differential_translucent_1_column_2','field_62590c30df00a'),(137439,4063,'flexible_templates_6_differential_translucent_1_column_2_color','#ff555f'),(137440,4063,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62590c30df00b'),(137441,4063,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(137442,4063,'_flexible_templates_6_differential_translucent_1_column_3','field_62590c30df00d'),(137443,4063,'flexible_templates_6_differential_translucent_1_column_3_color','#7080a7'),(137444,4063,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62590c30df00e'),(137445,4063,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(137446,4063,'_flexible_templates_6_differential_translucent_1_column_4','field_62590c30df010'),(137447,4063,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(137448,4063,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62590c30df011'),(137449,4063,'flexible_templates_6_differential_translucent_1_column_5','Always'),(137450,4063,'_flexible_templates_6_differential_translucent_1_column_5','field_62590c30df013'),(137451,4063,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(137452,4063,'_flexible_templates_6_differential_translucent_1_column_5_color','field_62590c30df014'),(137453,4063,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(137454,4063,'_flexible_templates_6_differential_translucent_2_column_1','field_62590c30df008'),(137455,4063,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(137456,4063,'_flexible_templates_6_differential_translucent_2_column_2','field_62590c30df00a'),(137457,4063,'flexible_templates_6_differential_translucent_2_column_2_color','#7080a7'),(137458,4063,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62590c30df00b'),(137459,4063,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(137460,4063,'_flexible_templates_6_differential_translucent_2_column_3','field_62590c30df00d'),(137461,4063,'flexible_templates_6_differential_translucent_2_column_3_color','#ff555f'),(137462,4063,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62590c30df00e'),(137463,4063,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(137464,4063,'_flexible_templates_6_differential_translucent_2_column_4','field_62590c30df010'),(137465,4063,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(137466,4063,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62590c30df011'),(137467,4063,'flexible_templates_6_differential_translucent_2_column_5','Always'),(137468,4063,'_flexible_templates_6_differential_translucent_2_column_5','field_62590c30df013'),(137469,4063,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(137470,4063,'_flexible_templates_6_differential_translucent_2_column_5_color','field_62590c30df014'),(137471,4063,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(137472,4063,'_flexible_templates_6_differential_translucent_3_column_1','field_62590c30df008'),(137473,4063,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(137474,4063,'_flexible_templates_6_differential_translucent_3_column_2','field_62590c30df00a'),(137475,4063,'flexible_templates_6_differential_translucent_3_column_2_color','#7080a7'),(137476,4063,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62590c30df00b'),(137477,4063,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(137478,4063,'_flexible_templates_6_differential_translucent_3_column_3','field_62590c30df00d'),(137479,4063,'flexible_templates_6_differential_translucent_3_column_3_color','#ff555f'),(137480,4063,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62590c30df00e'),(137481,4063,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(137482,4063,'_flexible_templates_6_differential_translucent_3_column_4','field_62590c30df010'),(137483,4063,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(137484,4063,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62590c30df011'),(137485,4063,'flexible_templates_6_differential_translucent_3_column_5','Always'),(137486,4063,'_flexible_templates_6_differential_translucent_3_column_5','field_62590c30df013'),(137487,4063,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(137488,4063,'_flexible_templates_6_differential_translucent_3_column_5_color','field_62590c30df014'),(137489,4063,'flexible_templates_6_differential_translucent_4_column_1','Price predictability and transparency'),(137490,4063,'_flexible_templates_6_differential_translucent_4_column_1','field_62590c30df008'),(137491,4063,'flexible_templates_6_differential_translucent_4_column_2','Rare'),(137492,4063,'_flexible_templates_6_differential_translucent_4_column_2','field_62590c30df00a'),(137493,4063,'flexible_templates_6_differential_translucent_4_column_2_color','#ff555f'),(137494,4063,'_flexible_templates_6_differential_translucent_4_column_2_color','field_62590c30df00b'),(137495,4063,'flexible_templates_6_differential_translucent_4_column_3','Sometimes'),(137496,4063,'_flexible_templates_6_differential_translucent_4_column_3','field_62590c30df00d'),(137497,4063,'flexible_templates_6_differential_translucent_4_column_3_color','#7080a7'),(137498,4063,'_flexible_templates_6_differential_translucent_4_column_3_color','field_62590c30df00e'),(137499,4063,'flexible_templates_6_differential_translucent_4_column_4','Always'),(137500,4063,'_flexible_templates_6_differential_translucent_4_column_4','field_62590c30df010'),(137501,4063,'flexible_templates_6_differential_translucent_4_column_4_color','#28d9cb'),(137502,4063,'_flexible_templates_6_differential_translucent_4_column_4_color','field_62590c30df011'),(137503,4063,'flexible_templates_6_differential_translucent_4_column_5','Always'),(137504,4063,'_flexible_templates_6_differential_translucent_4_column_5','field_62590c30df013'),(137505,4063,'flexible_templates_6_differential_translucent_4_column_5_color','#24c1ff'),(137506,4063,'_flexible_templates_6_differential_translucent_4_column_5_color','field_62590c30df014'),(137507,4063,'flexible_templates_6_differential_translucent_5_column_1','Affordability'),(137508,4063,'_flexible_templates_6_differential_translucent_5_column_1','field_62590c30df008'),(137509,4063,'flexible_templates_6_differential_translucent_5_column_2','Rare'),(137510,4063,'_flexible_templates_6_differential_translucent_5_column_2','field_62590c30df00a'),(137511,4063,'flexible_templates_6_differential_translucent_5_column_2_color','#ff555f'),(137512,4063,'_flexible_templates_6_differential_translucent_5_column_2_color','field_62590c30df00b'),(137513,4063,'flexible_templates_6_differential_translucent_5_column_3','Sometimes'),(137514,4063,'_flexible_templates_6_differential_translucent_5_column_3','field_62590c30df00d'),(137515,4063,'flexible_templates_6_differential_translucent_5_column_3_color','#7080a7'),(137516,4063,'_flexible_templates_6_differential_translucent_5_column_3_color','field_62590c30df00e'),(137517,4063,'flexible_templates_6_differential_translucent_5_column_4','Sometimes'),(137518,4063,'_flexible_templates_6_differential_translucent_5_column_4','field_62590c30df010'),(137519,4063,'flexible_templates_6_differential_translucent_5_column_4_color','#7080a7'),(137520,4063,'_flexible_templates_6_differential_translucent_5_column_4_color','field_62590c30df011'),(137521,4063,'flexible_templates_6_differential_translucent_5_column_5','Always'),(137522,4063,'_flexible_templates_6_differential_translucent_5_column_5','field_62590c30df013'),(137523,4063,'flexible_templates_6_differential_translucent_5_column_5_color','#24c1ff'),(137524,4063,'_flexible_templates_6_differential_translucent_5_column_5_color','field_62590c30df014'),(137525,4063,'flexible_templates_6_differential_translucent_6_column_1','Security and confidentiality'),(137526,4063,'_flexible_templates_6_differential_translucent_6_column_1','field_62590c30df008'),(137527,4063,'flexible_templates_6_differential_translucent_6_column_2','Sometimes'),(137528,4063,'_flexible_templates_6_differential_translucent_6_column_2','field_62590c30df00a'),(137529,4063,'flexible_templates_6_differential_translucent_6_column_2_color','#7080a7'),(137530,4063,'_flexible_templates_6_differential_translucent_6_column_2_color','field_62590c30df00b'),(137531,4063,'flexible_templates_6_differential_translucent_6_column_3','Rare'),(137532,4063,'_flexible_templates_6_differential_translucent_6_column_3','field_62590c30df00d'),(137533,4063,'flexible_templates_6_differential_translucent_6_column_3_color','#ff555f'),(137534,4063,'_flexible_templates_6_differential_translucent_6_column_3_color','field_62590c30df00e'),(137535,4063,'flexible_templates_6_differential_translucent_6_column_4','Always'),(137536,4063,'_flexible_templates_6_differential_translucent_6_column_4','field_62590c30df010'),(137537,4063,'flexible_templates_6_differential_translucent_6_column_4_color','#28d9cb'),(137538,4063,'_flexible_templates_6_differential_translucent_6_column_4_color','field_62590c30df011'),(137539,4063,'flexible_templates_6_differential_translucent_6_column_5','Always'),(137540,4063,'_flexible_templates_6_differential_translucent_6_column_5','field_62590c30df013'),(137541,4063,'flexible_templates_6_differential_translucent_6_column_5_color','#24c1ff'),(137542,4063,'_flexible_templates_6_differential_translucent_6_column_5_color','field_62590c30df014'),(137543,4063,'flexible_templates_6_differential_translucent_7_column_1','Top 1% engineering talent'),(137544,4063,'_flexible_templates_6_differential_translucent_7_column_1','field_62590c30df008'),(137545,4063,'flexible_templates_6_differential_translucent_7_column_2','Sometimes'),(137546,4063,'_flexible_templates_6_differential_translucent_7_column_2','field_62590c30df00a'),(137547,4063,'flexible_templates_6_differential_translucent_7_column_2_color','#7080a7'),(137548,4063,'_flexible_templates_6_differential_translucent_7_column_2_color','field_62590c30df00b'),(137549,4063,'flexible_templates_6_differential_translucent_7_column_3','Rare'),(137550,4063,'_flexible_templates_6_differential_translucent_7_column_3','field_62590c30df00d'),(137551,4063,'flexible_templates_6_differential_translucent_7_column_3_color','#ff555f'),(137552,4063,'_flexible_templates_6_differential_translucent_7_column_3_color','field_62590c30df00e'),(137553,4063,'flexible_templates_6_differential_translucent_7_column_4','Sometimes'),(137554,4063,'_flexible_templates_6_differential_translucent_7_column_4','field_62590c30df010'),(137555,4063,'flexible_templates_6_differential_translucent_7_column_4_color','#7080a7'),(137556,4063,'_flexible_templates_6_differential_translucent_7_column_4_color','field_62590c30df011'),(137557,4063,'flexible_templates_6_differential_translucent_7_column_5','Always'),(137558,4063,'_flexible_templates_6_differential_translucent_7_column_5','field_62590c30df013'),(137559,4063,'flexible_templates_6_differential_translucent_7_column_5_color','#24c1ff'),(137560,4063,'_flexible_templates_6_differential_translucent_7_column_5_color','field_62590c30df014'),(137561,4063,'flexible_templates_6_differential_translucent_8_column_1','Top project management talent'),(137562,4063,'_flexible_templates_6_differential_translucent_8_column_1','field_62590c30df008'),(137563,4063,'flexible_templates_6_differential_translucent_8_column_2','Sometimes'),(137564,4063,'_flexible_templates_6_differential_translucent_8_column_2','field_62590c30df00a'),(137565,4063,'flexible_templates_6_differential_translucent_8_column_2_color','#7080a7'),(137566,4063,'_flexible_templates_6_differential_translucent_8_column_2_color','field_62590c30df00b'),(137567,4063,'flexible_templates_6_differential_translucent_8_column_3','Rare'),(137568,4063,'_flexible_templates_6_differential_translucent_8_column_3','field_62590c30df00d'),(137569,4063,'flexible_templates_6_differential_translucent_8_column_3_color','#ff555f'),(137570,4063,'_flexible_templates_6_differential_translucent_8_column_3_color','field_62590c30df00e'),(137571,4063,'flexible_templates_6_differential_translucent_8_column_4','Rare'),(137572,4063,'_flexible_templates_6_differential_translucent_8_column_4','field_62590c30df010'),(137573,4063,'flexible_templates_6_differential_translucent_8_column_4_color','#ff555f'),(137574,4063,'_flexible_templates_6_differential_translucent_8_column_4_color','field_62590c30df011'),(137575,4063,'flexible_templates_6_differential_translucent_8_column_5','Always'),(137576,4063,'_flexible_templates_6_differential_translucent_8_column_5','field_62590c30df013'),(137577,4063,'flexible_templates_6_differential_translucent_8_column_5_color','#24c1ff'),(137578,4063,'_flexible_templates_6_differential_translucent_8_column_5_color','field_62590c30df014'),(137579,4063,'flexible_templates_6_differential_translucent_9_column_1','Dedicated Dev-ops Manager'),(137580,4063,'_flexible_templates_6_differential_translucent_9_column_1','field_62590c30df008'),(137581,4063,'flexible_templates_6_differential_translucent_9_column_2','Sometimes'),(137582,4063,'_flexible_templates_6_differential_translucent_9_column_2','field_62590c30df00a'),(137583,4063,'flexible_templates_6_differential_translucent_9_column_2_color','#7080a7'),(137584,4063,'_flexible_templates_6_differential_translucent_9_column_2_color','field_62590c30df00b'),(137585,4063,'flexible_templates_6_differential_translucent_9_column_3','Rare'),(137586,4063,'_flexible_templates_6_differential_translucent_9_column_3','field_62590c30df00d'),(137587,4063,'flexible_templates_6_differential_translucent_9_column_3_color','#ff555f'),(137588,4063,'_flexible_templates_6_differential_translucent_9_column_3_color','field_62590c30df00e'),(137589,4063,'flexible_templates_6_differential_translucent_9_column_4','Rare'),(137590,4063,'_flexible_templates_6_differential_translucent_9_column_4','field_62590c30df010'),(137591,4063,'flexible_templates_6_differential_translucent_9_column_4_color','#ff555f'),(137592,4063,'_flexible_templates_6_differential_translucent_9_column_4_color','field_62590c30df011'),(137593,4063,'flexible_templates_6_differential_translucent_9_column_5','Always'),(137594,4063,'_flexible_templates_6_differential_translucent_9_column_5','field_62590c30df013'),(137595,4063,'flexible_templates_6_differential_translucent_9_column_5_color','#24c1ff'),(137596,4063,'_flexible_templates_6_differential_translucent_9_column_5_color','field_62590c30df014'),(137597,4063,'flexible_templates_6_differential_translucent_10_column_1','Scalable solutions i.e. can easily grow as you do'),(137598,4063,'_flexible_templates_6_differential_translucent_10_column_1','field_62590c30df008'),(137599,4063,'flexible_templates_6_differential_translucent_10_column_2','Sometimes'),(137600,4063,'_flexible_templates_6_differential_translucent_10_column_2','field_62590c30df00a'),(137601,4063,'flexible_templates_6_differential_translucent_10_column_2_color','#7080a7'),(137602,4063,'_flexible_templates_6_differential_translucent_10_column_2_color','field_62590c30df00b'),(137603,4063,'flexible_templates_6_differential_translucent_10_column_3','Rare'),(137604,4063,'_flexible_templates_6_differential_translucent_10_column_3','field_62590c30df00d'),(137605,4063,'flexible_templates_6_differential_translucent_10_column_3_color','#ff555f'),(137606,4063,'_flexible_templates_6_differential_translucent_10_column_3_color','field_62590c30df00e'),(137607,4063,'flexible_templates_6_differential_translucent_10_column_4','Rare'),(137608,4063,'_flexible_templates_6_differential_translucent_10_column_4','field_62590c30df010'),(137609,4063,'flexible_templates_6_differential_translucent_10_column_4_color','#ff555f'),(137610,4063,'_flexible_templates_6_differential_translucent_10_column_4_color','field_62590c30df011'),(137611,4063,'flexible_templates_6_differential_translucent_10_column_5','Always'),(137612,4063,'_flexible_templates_6_differential_translucent_10_column_5','field_62590c30df013'),(137613,4063,'flexible_templates_6_differential_translucent_10_column_5_color','#24c1ff'),(137614,4063,'_flexible_templates_6_differential_translucent_10_column_5_color','field_62590c30df014'),(137615,4063,'flexible_templates_6_differential_translucent_11_column_1','Understand your business objectives and outcomes. You want to drive.'),(137616,4063,'_flexible_templates_6_differential_translucent_11_column_1','field_62590c30df008'),(137617,4063,'flexible_templates_6_differential_translucent_11_column_2','Sometimes'),(137618,4063,'_flexible_templates_6_differential_translucent_11_column_2','field_62590c30df00a'),(137619,4063,'flexible_templates_6_differential_translucent_11_column_2_color','#7080a7'),(137620,4063,'_flexible_templates_6_differential_translucent_11_column_2_color','field_62590c30df00b'),(137621,4063,'flexible_templates_6_differential_translucent_11_column_3','Sometimes'),(137622,4063,'_flexible_templates_6_differential_translucent_11_column_3','field_62590c30df00d'),(137623,4063,'flexible_templates_6_differential_translucent_11_column_3_color','#7080a7'),(137624,4063,'_flexible_templates_6_differential_translucent_11_column_3_color','field_62590c30df00e'),(137625,4063,'flexible_templates_6_differential_translucent_11_column_4','Always'),(137626,4063,'_flexible_templates_6_differential_translucent_11_column_4','field_62590c30df010'),(137627,4063,'flexible_templates_6_differential_translucent_11_column_4_color','#28d9cb'),(137628,4063,'_flexible_templates_6_differential_translucent_11_column_4_color','field_62590c30df011'),(137629,4063,'flexible_templates_6_differential_translucent_11_column_5','Always'),(137630,4063,'_flexible_templates_6_differential_translucent_11_column_5','field_62590c30df013'),(137631,4063,'flexible_templates_6_differential_translucent_11_column_5_color','#24c1ff'),(137632,4063,'_flexible_templates_6_differential_translucent_11_column_5_color','field_62590c30df014'),(137633,4063,'flexible_templates_6_differential_translucent_12_column_1','Amazing'),(137634,4063,'_flexible_templates_6_differential_translucent_12_column_1','field_62590c30df008'),(137635,4063,'flexible_templates_6_differential_translucent_12_column_2','Sometimes'),(137636,4063,'_flexible_templates_6_differential_translucent_12_column_2','field_62590c30df00a'),(137637,4063,'flexible_templates_6_differential_translucent_12_column_2_color','#7080a7'),(137638,4063,'_flexible_templates_6_differential_translucent_12_column_2_color','field_62590c30df00b'),(137639,4063,'flexible_templates_6_differential_translucent_12_column_3','Rare'),(137640,4063,'_flexible_templates_6_differential_translucent_12_column_3','field_62590c30df00d'),(137641,4063,'flexible_templates_6_differential_translucent_12_column_3_color','#ff555f'),(137642,4063,'_flexible_templates_6_differential_translucent_12_column_3_color','field_62590c30df00e'),(137643,4063,'flexible_templates_6_differential_translucent_12_column_4','Rare'),(137644,4063,'_flexible_templates_6_differential_translucent_12_column_4','field_62590c30df010'),(137645,4063,'flexible_templates_6_differential_translucent_12_column_4_color','#ff555f'),(137646,4063,'_flexible_templates_6_differential_translucent_12_column_4_color','field_62590c30df011'),(137647,4063,'flexible_templates_6_differential_translucent_12_column_5','Always'),(137648,4063,'_flexible_templates_6_differential_translucent_12_column_5','field_62590c30df013'),(137649,4063,'flexible_templates_6_differential_translucent_12_column_5_color','#24c1ff'),(137650,4063,'_flexible_templates_6_differential_translucent_12_column_5_color','field_62590c30df014'),(137651,4063,'flexible_templates_6_differential_translucent_13_column_1','24 hour dedicated support'),(137652,4063,'_flexible_templates_6_differential_translucent_13_column_1','field_62590c30df008'),(137653,4063,'flexible_templates_6_differential_translucent_13_column_2','Rare'),(137654,4063,'_flexible_templates_6_differential_translucent_13_column_2','field_62590c30df00a'),(137655,4063,'flexible_templates_6_differential_translucent_13_column_2_color','#ff555f'),(137656,4063,'_flexible_templates_6_differential_translucent_13_column_2_color','field_62590c30df00b'),(137657,4063,'flexible_templates_6_differential_translucent_13_column_3','Rare'),(137658,4063,'_flexible_templates_6_differential_translucent_13_column_3','field_62590c30df00d'),(137659,4063,'flexible_templates_6_differential_translucent_13_column_3_color','#ff555f'),(137660,4063,'_flexible_templates_6_differential_translucent_13_column_3_color','field_62590c30df00e'),(137661,4063,'flexible_templates_6_differential_translucent_13_column_4','Rare'),(137662,4063,'_flexible_templates_6_differential_translucent_13_column_4','field_62590c30df010'),(137663,4063,'flexible_templates_6_differential_translucent_13_column_4_color','#ff555f'),(137664,4063,'_flexible_templates_6_differential_translucent_13_column_4_color','field_62590c30df011'),(137665,4063,'flexible_templates_6_differential_translucent_13_column_5','Always'),(137666,4063,'_flexible_templates_6_differential_translucent_13_column_5','field_62590c30df013'),(137667,4063,'flexible_templates_6_differential_translucent_13_column_5_color','#24c1ff'),(137668,4063,'_flexible_templates_6_differential_translucent_13_column_5_color','field_62590c30df014'),(137687,4064,'_edit_lock','1658731956:20'),(137688,4064,'_edit_last','20'),(137689,4064,'_wp_page_template','flexible-template.php'),(137690,4064,'hefo_before','0'),(137691,4064,'hefo_after','0'),(137692,4064,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(137693,4064,'_yoast_wpseo_focuskeywords','[]'),(137694,4064,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(137695,4064,'_yoast_wpseo_estimated-reading-time-minutes',''),(137696,4064,'flexible_templates','a:8:{i:0;s:16:\"tek-teams-banner\";i:1;s:20:\"tek-teams-two-column\";i:2;s:14:\"tek-team-about\";i:3;s:21:\"tek-teams-development\";i:4;s:18:\"tek_teams_benifits\";i:5;s:17:\"tek-team-whats-is\";i:6;s:34:\"tek-teams-translucent-differential\";i:7;s:17:\"lets_talk_section\";}'),(137697,4064,'_flexible_templates','field_6254f4d84ef9b'),(137698,4065,'flexible_templates',''),(137699,4065,'_flexible_templates','field_6254f4d84ef9b'),(137710,3523,'_yoast_post_redirect_info','a:4:{s:6:\"origin\";s:22:\"cloud-native-solutions\";s:6:\"target\";s:24:\"cloud-native-solutions-1\";s:4:\"type\";i:301;s:6:\"format\";s:5:\"plain\";}'),(137711,3523,'rs_page_bg_color',''),(137712,3523,'_pinterest_shares','0'),(137713,3523,'_total_shares','0'),(137715,4066,'_wp_attached_file','2022/05/Union-20@2x-scaled1.jpg'),(137716,4066,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:385;s:4:\"file\";s:31:\"2022/05/Union-20@2x-scaled1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Union-20@2x-scaled1-300x45.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:45;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Union-20@2x-scaled1-1024x154.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Union-20@2x-scaled1-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:\"Union-20@2x-scaled1-768x116.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:116;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"Union-20@2x-scaled1-1536x231.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:32:\"Union-20@2x-scaled1-2048x308.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:308;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:31:\"Union-20@2x-scaled1-500x385.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:385;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:{}}}'),(137717,4066,'_imagify_optimization_level','0'),(137718,4066,'_imagify_status','success'),(137719,4066,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:48725;s:14:\"optimized_size\";i:38289;s:7:\"percent\";d:21.42;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16617;s:14:\"optimized_size\";i:32170;s:7:\"percent\";d:-93.6;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34535;s:14:\"optimized_size\";i:54446;s:7:\"percent\";d:-57.65;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23344;s:14:\"optimized_size\";i:37216;s:7:\"percent\";d:-59.42;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9115;s:14:\"optimized_size\";i:13818;s:7:\"percent\";d:-51.6;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3268;s:14:\"optimized_size\";i:5270;s:7:\"percent\";d:-61.26;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12557;s:14:\"optimized_size\";i:20104;s:7:\"percent\";d:-60.1;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2858;s:14:\"optimized_size\";i:3712;s:7:\"percent\";d:-29.88;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:48725;s:14:\"optimized_size\";i:74844;s:7:\"percent\";d:-53.6;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2858;s:14:\"optimized_size\";i:2300;s:7:\"percent\";d:19.52;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:12557;s:14:\"optimized_size\";i:10730;s:7:\"percent\";d:14.55;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3268;s:14:\"optimized_size\";i:2746;s:7:\"percent\";d:15.97;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9115;s:14:\"optimized_size\";i:7592;s:7:\"percent\";d:16.71;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23344;s:14:\"optimized_size\";i:19326;s:7:\"percent\";d:17.21;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34535;s:14:\"optimized_size\";i:28075;s:7:\"percent\";d:18.71;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16617;s:14:\"optimized_size\";i:14919;s:7:\"percent\";d:10.22;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:302038;s:14:\"optimized_size\";i:365557;s:7:\"percent\";d:-21.03;}}'),(137720,4028,'_yoast_post_redirect_info','a:4:{s:6:\"origin\";s:24:\"cloud-native-solutions-2\";s:6:\"target\";s:22:\"cloud-native-solutions\";s:4:\"type\";i:301;s:6:\"format\";s:5:\"plain\";}'),(137722,4067,'_wp_attached_file','2022/05/Union-21@2x1.png'),(137723,4067,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:780;s:6:\"height\";i:258;s:4:\"file\";s:24:\"2022/05/Union-21@2x1.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Union-21@2x1-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Union-21@2x1-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:24:\"Union-21@2x1-768x254.png\";s:5:\"width\";i:768;s:6:\"height\";i:254;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:24:\"Union-21@2x1-500x258.png\";s:5:\"width\";i:500;s:6:\"height\";i:258;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:{}}}'),(137724,4067,'_imagify_optimization_level','0'),(137725,4067,'_imagify_status','success'),(137726,4067,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:162176;s:14:\"optimized_size\";i:120060;s:7:\"percent\";d:25.97;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:93697;s:14:\"optimized_size\";i:24870;s:7:\"percent\";d:73.46;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:136818;s:14:\"optimized_size\";i:44968;s:7:\"percent\";d:67.13;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19917;s:14:\"optimized_size\";i:6604;s:7:\"percent\";d:66.84;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28564;s:14:\"optimized_size\";i:12156;s:7:\"percent\";d:57.44;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:162176;s:14:\"optimized_size\";i:44932;s:7:\"percent\";d:72.29;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28564;s:14:\"optimized_size\";i:27076;s:7:\"percent\";d:5.21;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19917;s:14:\"optimized_size\";i:18816;s:7:\"percent\";d:5.53;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:136818;s:14:\"optimized_size\";i:125449;s:7:\"percent\";d:8.31;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:93697;s:14:\"optimized_size\";i:82964;s:7:\"percent\";d:11.46;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:882344;s:14:\"optimized_size\";i:507895;s:7:\"percent\";d:42.44;}}'),(137727,4068,'_wp_attached_file','2022/05/Group-102@2x1.png'),(137728,4068,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:96;s:6:\"height\";i:56;s:4:\"file\";s:25:\"2022/05/Group-102@2x1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(137729,4068,'_imagify_optimization_level','0'),(137730,4068,'_imagify_status','already_optimized'),(137731,4068,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1455;s:14:\"optimized_size\";i:1776;s:7:\"percent\";d:-22.06;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1455;s:14:\"optimized_size\";i:1776;s:7:\"percent\";d:-22.06;}}'),(137732,4069,'_wp_attached_file','2022/05/blog_pic_1@2x-scaled1.jpg'),(137733,4069,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:320;s:4:\"file\";s:33:\"2022/05/blog_pic_1@2x-scaled1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"blog_pic_1@2x-scaled1-300x38.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:38;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"blog_pic_1@2x-scaled1-1024x128.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"blog_pic_1@2x-scaled1-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:\"blog_pic_1@2x-scaled1-768x96.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"blog_pic_1@2x-scaled1-1536x192.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:34:\"blog_pic_1@2x-scaled1-2048x256.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:33:\"blog_pic_1@2x-scaled1-500x320.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:320;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:{}}}'),(137734,4069,'_imagify_optimization_level','0'),(137735,4069,'_imagify_status','success'),(137736,4069,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:58944;s:14:\"optimized_size\";i:56453;s:7:\"percent\";d:4.23;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14208;s:14:\"optimized_size\";i:27686;s:7:\"percent\";d:-94.86;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41358;s:14:\"optimized_size\";i:80456;s:7:\"percent\";d:-94.54;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27270;s:14:\"optimized_size\";i:54210;s:7:\"percent\";d:-98.79;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9979;s:14:\"optimized_size\";i:20390;s:7:\"percent\";d:-104.33;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3365;s:14:\"optimized_size\";i:5950;s:7:\"percent\";d:-76.82;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15048;s:14:\"optimized_size\";i:30552;s:7:\"percent\";d:-103.03;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2957;s:14:\"optimized_size\";i:5596;s:7:\"percent\";d:-89.25;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:58944;s:14:\"optimized_size\";i:112528;s:7:\"percent\";d:-90.91;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2957;s:14:\"optimized_size\";i:2615;s:7:\"percent\";d:11.57;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15048;s:14:\"optimized_size\";i:14406;s:7:\"percent\";d:4.27;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3365;s:14:\"optimized_size\";i:3031;s:7:\"percent\";d:9.93;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9979;s:14:\"optimized_size\";i:9481;s:7:\"percent\";d:4.99;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27270;s:14:\"optimized_size\";i:26276;s:7:\"percent\";d:3.65;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41358;s:14:\"optimized_size\";i:39836;s:7:\"percent\";d:3.68;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14208;s:14:\"optimized_size\";i:13520;s:7:\"percent\";d:4.84;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:346258;s:14:\"optimized_size\";i:502986;s:7:\"percent\";d:-45.26;}}'),(137737,4070,'_wp_attached_file','2022/05/blog_pic_1@2x-11.png'),(137738,4070,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:780;s:6:\"height\";i:414;s:4:\"file\";s:28:\"2022/05/blog_pic_1@2x-11.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"blog_pic_1@2x-11-300x159.png\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"blog_pic_1@2x-11-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:28:\"blog_pic_1@2x-11-768x408.png\";s:5:\"width\";i:768;s:6:\"height\";i:408;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:28:\"blog_pic_1@2x-11-500x414.png\";s:5:\"width\";i:500;s:6:\"height\";i:414;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:{}}}'),(137739,4070,'_imagify_optimization_level','0'),(137740,4070,'_imagify_status','success'),(137741,4070,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:503054;s:14:\"optimized_size\";i:376514;s:7:\"percent\";d:25.15;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:290149;s:14:\"optimized_size\";i:73046;s:7:\"percent\";d:74.82;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:380159;s:14:\"optimized_size\";i:82382;s:7:\"percent\";d:78.33;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33680;s:14:\"optimized_size\";i:11510;s:7:\"percent\";d:65.83;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:69308;s:14:\"optimized_size\";i:21544;s:7:\"percent\";d:68.92;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:503054;s:14:\"optimized_size\";i:103664;s:7:\"percent\";d:79.39;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:69308;s:14:\"optimized_size\";i:61303;s:7:\"percent\";d:11.55;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33680;s:14:\"optimized_size\";i:30018;s:7:\"percent\";d:10.87;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:380159;s:14:\"optimized_size\";i:324646;s:7:\"percent\";d:14.6;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:290149;s:14:\"optimized_size\";i:252880;s:7:\"percent\";d:12.84;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2552700;s:14:\"optimized_size\";i:1337507;s:7:\"percent\";d:47.6;}}'),(137745,4071,'_wp_attached_file','2022/05/Group-80351.svg'),(137746,4072,'_wp_attached_file','2022/05/blog_pic_1-41.png'),(137747,4072,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:240;s:4:\"file\";s:25:\"2022/05/blog_pic_1-41.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"blog_pic_1-41-300x38.png\";s:5:\"width\";i:300;s:6:\"height\";i:38;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"blog_pic_1-41-1024x128.png\";s:5:\"width\";i:1024;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"blog_pic_1-41-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:24:\"blog_pic_1-41-768x96.png\";s:5:\"width\";i:768;s:6:\"height\";i:96;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"blog_pic_1-41-1536x192.png\";s:5:\"width\";i:1536;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:25:\"blog_pic_1-41-500x240.png\";s:5:\"width\";i:500;s:6:\"height\";i:240;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:{}}}'),(137748,4072,'_imagify_optimization_level','0'),(137749,4072,'_imagify_status','success'),(137750,4072,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:562420;s:14:\"optimized_size\";i:421124;s:7:\"percent\";d:25.12;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:127420;s:14:\"optimized_size\";i:28528;s:7:\"percent\";d:77.61;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:290928;s:14:\"optimized_size\";i:73308;s:7:\"percent\";d:74.8;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:84740;s:14:\"optimized_size\";i:28752;s:7:\"percent\";d:66.07;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28047;s:14:\"optimized_size\";i:6654;s:7:\"percent\";d:76.28;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:141575;s:14:\"optimized_size\";i:41728;s:7:\"percent\";d:70.53;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16431;s:14:\"optimized_size\";i:8022;s:7:\"percent\";d:51.18;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:562420;s:14:\"optimized_size\";i:113332;s:7:\"percent\";d:79.85;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16431;s:14:\"optimized_size\";i:14527;s:7:\"percent\";d:11.59;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:141575;s:14:\"optimized_size\";i:122745;s:7:\"percent\";d:13.3;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28047;s:14:\"optimized_size\";i:24281;s:7:\"percent\";d:13.43;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:84740;s:14:\"optimized_size\";i:74063;s:7:\"percent\";d:12.6;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:290928;s:14:\"optimized_size\";i:250028;s:7:\"percent\";d:14.06;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:127420;s:14:\"optimized_size\";i:110781;s:7:\"percent\";d:13.06;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2503122;s:14:\"optimized_size\";i:1317873;s:7:\"percent\";d:47.35;}}'),(137751,4000,'_pinterest_shares','0'),(137752,4000,'_total_shares','0'),(137754,4000,'_menu_sgpb_popup_id','0'),(137755,4073,'_wp_attached_file','2022/05/blog_pic_1@2x1.png'),(137756,4073,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:780;s:6:\"height\";i:414;s:4:\"file\";s:26:\"2022/05/blog_pic_1@2x1.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"blog_pic_1@2x1-300x159.png\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"blog_pic_1@2x1-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:\"blog_pic_1@2x1-768x408.png\";s:5:\"width\";i:768;s:6:\"height\";i:408;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:26:\"blog_pic_1@2x1-500x414.png\";s:5:\"width\";i:500;s:6:\"height\";i:414;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:{}}}'),(137757,4073,'_imagify_optimization_level','0'),(137758,4073,'_imagify_status','success'),(137759,4073,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:394565;s:14:\"optimized_size\";i:311569;s:7:\"percent\";d:21.03;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:214219;s:14:\"optimized_size\";i:51672;s:7:\"percent\";d:75.88;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:325418;s:14:\"optimized_size\";i:79112;s:7:\"percent\";d:75.69;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27503;s:14:\"optimized_size\";i:9678;s:7:\"percent\";d:64.81;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:59662;s:14:\"optimized_size\";i:20808;s:7:\"percent\";d:65.12;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:394565;s:14:\"optimized_size\";i:95044;s:7:\"percent\";d:75.91;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:59662;s:14:\"optimized_size\";i:52015;s:7:\"percent\";d:12.82;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27503;s:14:\"optimized_size\";i:24107;s:7:\"percent\";d:12.35;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:325418;s:14:\"optimized_size\";i:277586;s:7:\"percent\";d:14.7;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:214219;s:14:\"optimized_size\";i:186224;s:7:\"percent\";d:13.07;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2042734;s:14:\"optimized_size\";i:1107815;s:7:\"percent\";d:45.77;}}'),(137760,4074,'_wp_attached_file','2022/05/Group-83921.svg'),(137764,4075,'_wp_attached_file','2022/05/Group-83451.svg'),(137765,4076,'_wp_attached_file','2022/05/Group-83631.svg'),(137766,4077,'_wp_attached_file','2022/05/Group-83641.svg'),(137767,4078,'_wp_attached_file','2022/05/benefits_teams@2x-scaled1.jpg'),(137768,4078,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:320;s:4:\"file\";s:37:\"2022/05/benefits_teams@2x-scaled1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"benefits_teams@2x-scaled1-300x38.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:38;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"benefits_teams@2x-scaled1-1024x128.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"benefits_teams@2x-scaled1-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:\"benefits_teams@2x-scaled1-768x96.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:38:\"benefits_teams@2x-scaled1-1536x192.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:38:\"benefits_teams@2x-scaled1-2048x256.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:37:\"benefits_teams@2x-scaled1-500x320.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:320;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:{}}}'),(137769,4078,'_imagify_optimization_level','0'),(137770,4078,'_imagify_status','success'),(137771,4078,'_imagify_data','a:2:{s:5:\"sizes\";a:16:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41787;s:14:\"optimized_size\";i:36515;s:7:\"percent\";d:12.62;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14320;s:14:\"optimized_size\";i:28534;s:7:\"percent\";d:-99.26;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28904;s:14:\"optimized_size\";i:54302;s:7:\"percent\";d:-87.87;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18618;s:14:\"optimized_size\";i:36276;s:7:\"percent\";d:-94.84;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6528;s:14:\"optimized_size\";i:13034;s:7:\"percent\";d:-99.66;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3102;s:14:\"optimized_size\";i:5472;s:7:\"percent\";d:-76.4;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9905;s:14:\"optimized_size\";i:19592;s:7:\"percent\";d:-97.8;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2189;s:14:\"optimized_size\";i:3764;s:7:\"percent\";d:-71.95;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41787;s:14:\"optimized_size\";i:76938;s:7:\"percent\";d:-84.12;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2189;s:14:\"optimized_size\";i:1859;s:7:\"percent\";d:15.08;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9905;s:14:\"optimized_size\";i:9140;s:7:\"percent\";d:7.72;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3102;s:14:\"optimized_size\";i:2643;s:7:\"percent\";d:14.8;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6528;s:14:\"optimized_size\";i:6013;s:7:\"percent\";d:7.89;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18618;s:14:\"optimized_size\";i:16946;s:7:\"percent\";d:8.98;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28904;s:14:\"optimized_size\";i:25820;s:7:\"percent\";d:10.67;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14320;s:14:\"optimized_size\";i:13139;s:7:\"percent\";d:8.25;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:250706;s:14:\"optimized_size\";i:349987;s:7:\"percent\";d:-39.6;}}'),(137772,4079,'_wp_attached_file','2022/05/benefits_teams@2x1.png'),(137773,4079,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:780;s:6:\"height\";i:414;s:4:\"file\";s:30:\"2022/05/benefits_teams@2x1.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"benefits_teams@2x1-300x159.png\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"benefits_teams@2x1-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:\"benefits_teams@2x1-768x408.png\";s:5:\"width\";i:768;s:6:\"height\";i:408;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:30:\"benefits_teams@2x1-500x414.png\";s:5:\"width\";i:500;s:6:\"height\";i:414;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:{}}}'),(137777,4080,'_wp_attached_file','2022/05/Group-83961.svg'),(137778,4079,'_imagify_optimization_level','0'),(137779,4079,'_imagify_status','success'),(137780,4079,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:376080;s:14:\"optimized_size\";i:296886;s:7:\"percent\";d:21.06;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:244759;s:14:\"optimized_size\";i:52418;s:7:\"percent\";d:78.58;}s:25:\"medium_large@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:22:\"thumbnail@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:19:\"medium@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:17:\"full@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:6:\"medium\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:12:\"medium_large\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:7:\"feature\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:620839;s:14:\"optimized_size\";i:349304;s:7:\"percent\";d:43.74;}}'),(137805,4081,'_wp_attached_file','2022/05/startjourney1.svg'),(137806,4082,'_wp_attached_file','2022/05/teamscalability1.svg'),(137807,4083,'_wp_attached_file','2022/05/accestoptechtalent1.svg'),(137808,4084,'_wp_attached_file','2022/05/accetotrnlucent1.svg'),(137809,4085,'_wp_attached_file','2022/05/remote1.svg'),(137810,4086,'_wp_attached_file','2022/05/fullymanaged1.svg'),(137811,4087,'_wp_attached_file','2022/05/shutterstock_1257061039@2x-scaled1.jpg'),(137812,4087,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:320;s:4:\"file\";s:46:\"2022/05/shutterstock_1257061039@2x-scaled1.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"shutterstock_1257061039@2x-scaled1-300x38.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:38;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"shutterstock_1257061039@2x-scaled1-1024x128.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"shutterstock_1257061039@2x-scaled1-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:45:\"shutterstock_1257061039@2x-scaled1-768x96.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"shutterstock_1257061039@2x-scaled1-1536x192.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:47:\"shutterstock_1257061039@2x-scaled1-2048x256.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:46:\"shutterstock_1257061039@2x-scaled1-500x320.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:320;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:{}}}'),(137813,4087,'_imagify_optimization_level','0'),(137814,4087,'_imagify_status','error'),(137815,4087,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(137816,4088,'_wp_attached_file','2022/05/shutterstock_1257061039@2x1.png'),(137817,4088,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:780;s:6:\"height\";i:414;s:4:\"file\";s:39:\"2022/05/shutterstock_1257061039@2x1.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"shutterstock_1257061039@2x1-300x159.png\";s:5:\"width\";i:300;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"shutterstock_1257061039@2x1-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:\"shutterstock_1257061039@2x1-768x408.png\";s:5:\"width\";i:768;s:6:\"height\";i:408;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:39:\"shutterstock_1257061039@2x1-500x414.png\";s:5:\"width\";i:500;s:6:\"height\";i:414;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:{}}}'),(137818,4088,'_imagify_optimization_level','0'),(137819,4088,'_imagify_status','error'),(137820,4088,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(137821,4089,'_wp_attached_file','2022/05/tekteamwhatis1.svg'),(137822,4090,'_wp_attached_file','2022/05/fronendengineer1.svg'),(137823,4091,'_wp_attached_file','2022/05/qaenigineer1.svg'),(137824,4092,'_wp_attached_file','2022/05/businessanalysis1.svg'),(137825,4093,'_wp_attached_file','2022/05/backendengineer1.svg'),(137826,4094,'_wp_attached_file','2022/05/uiuzxengneer1.svg'),(137827,4095,'_wp_attached_file','2022/05/productowner1.svg'),(137828,4096,'_wp_attached_file','2022/05/dataml1.svg'),(137829,4097,'_wp_attached_file','2022/05/sre-devops1.svg'),(137830,4098,'_wp_attached_file','2022/05/scrummaster1.svg'),(137831,4099,'_wp_attached_file','2022/05/T1.svg'),(137832,4064,'flexible_templates_0_image','4066'),(137833,4064,'_flexible_templates_0_image','field_6255038c2e6ae_field_6254fdc5efa2a'),(137834,4064,'flexible_templates_0_mob_image','4067'),(137835,4064,'_flexible_templates_0_mob_image','field_625503db2e6af_field_6254fdcbefa2b'),(137836,4064,'flexible_templates_0_icon','4068'),(137837,4064,'_flexible_templates_0_icon','field_6255095042ef2_field_62550482480cb'),(137838,4064,'flexible_templates_0_heading','TEKTeams'),(137839,4064,'_flexible_templates_0_heading','field_6255096442ef3_field_6254fdb2efa27'),(137840,4064,'flexible_templates_0_sub_heading','TEK™ WORLD'),(137841,4064,'_flexible_templates_0_sub_heading','field_6255097642ef4_field_6254fdbaefa28'),(137842,4064,'flexible_templates_1_heading','Gain access to top 1% tech talent with a trusted partner that delivers cloud native solutions and value.'),(137843,4064,'_flexible_templates_1_heading','field_62551ac3a6f96_field_6254fdb2efa27'),(137844,4064,'flexible_templates_1_sub_heading','THE TEAM YOU NEED'),(137845,4064,'_flexible_templates_1_sub_heading','field_62551ae4a6f97_field_6254fdbaefa28'),(137846,4064,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(137847,4064,'_flexible_templates_1_cta','field_62551b56a6f98_field_62551b3e101c4'),(137848,4064,'flexible_templates_1_copy','The best technology. The best people. Access tailored software engineering teams with industry-specific experience without the hassle of hiring and maintaining internal teams. We understand how hard it is to acquire and retain top talent, and we take the pressure off HR. Focus on your business while we take lead for the delivery and execution of the project.'),(137849,4064,'_flexible_templates_1_copy','field_62551b74a6f99_field_6254fdc0efa29'),(137850,4064,'flexible_templates_2_image','4069'),(137851,4064,'_flexible_templates_2_image','field_625523de9609f_field_6254fdc5efa2a'),(137852,4064,'flexible_templates_2_mob_image','4070'),(137853,4064,'_flexible_templates_2_mob_image','field_625523f4960a0_field_6254fdcbefa2b'),(137854,4064,'flexible_templates_2_icon','4071'),(137855,4064,'_flexible_templates_2_icon','field_6255246d960a1_field_62550482480cb'),(137856,4064,'flexible_templates_2_heading','What are TEKTeams?'),(137857,4064,'_flexible_templates_2_heading','field_62552482960a2_field_6254fdb2efa27'),(137858,4064,'flexible_templates_2_copy','TEKTeams are your dedicated development teams built on Translucent principles that, as part of the TEK ecosystem, combine trust, processes, people, and technology to deliver value.\r\n\r\nTranslucent has created a process that brings together the best people in the industry with various skills to develop and maintain the highest quality software.\r\n\r\nA perfect combination of roles, talent, skillset, and the right work environment.TEKTeams provide the precise expertise your organization needs to execute a project successfully.\r\n
'),(137859,4064,'_flexible_templates_2_copy','field_625525b15629c'),(137860,4064,'flexible_templates_2_content_right','Our onshore/nearshore model combines resources across the Americas to overcome challenges your project might encounter; we work closely alongside your company staff to attain your business goals.\r\n\r\nIncrease the number of resources you have on hand to help you develop and manage intelligent applications and platforms. \r\n\r\nTEKTeams are the most cost-effective way to get the talent you need for your cloud native projects without taking up all of your time or budget.'),(137861,4064,'_flexible_templates_2_content_right','field_625525ba5629d'),(137862,4064,'flexible_templates_3_image','4072'),(137863,4064,'_flexible_templates_3_image','field_62552ada52711_field_6254fdc5efa2a'),(137864,4064,'flexible_templates_3_mob_image','4073'),(137865,4064,'_flexible_templates_3_mob_image','field_62552aed52712_field_6254fdcbefa2b'),(137866,4064,'flexible_templates_3_icon','4074'),(137867,4064,'_flexible_templates_3_icon','field_62552b7652713_field_62550482480cb'),(137868,4064,'flexible_templates_3_heading','Get started with the best resources for your project'),(137869,4064,'_flexible_templates_3_heading','field_62552baf52715_field_6254fdb2efa27'),(137870,4064,'flexible_templates_3_copy','Our tailored software engineering teams help your business develop and manage smarter apps. We match business goals to the right technology and teams to drive better results. With TEKTeams you get access to the best of the best resources for your cloud native projects at a price you can afford, with the capacity to scale as needed, according to your demands. Here is what to expect working with TEKTeams:'),(137871,4064,'_flexible_templates_3_copy','field_62552b8552714_field_6254fdc0efa29'),(137872,4064,'flexible_templates_3_development_team_steps_0_icon','4075'),(137873,4064,'_flexible_templates_3_development_team_steps_0_icon','field_62552cdb784a9_field_62550482480cb'),(137874,4064,'flexible_templates_3_development_team_steps_0_heading','A trusted tech partner'),(137875,4064,'_flexible_templates_3_development_team_steps_0_heading','field_62552ced784aa_field_6254fdb2efa27'),(137876,4064,'flexible_templates_3_development_team_steps_0_copy','

Increase your workforce by partnering with the top 1% teams tailored to your business needs

\r\n

We will explain and document the entire development process and make sure to meet business and project objectives

\r\n

Scale your teams as needed with a global network united as one

'),(137877,4064,'_flexible_templates_3_development_team_steps_0_copy','field_62552cfe784ab_field_6254fdc0efa29'),(137878,4064,'flexible_templates_3_development_team_steps_1_icon','4076'),(137879,4064,'_flexible_templates_3_development_team_steps_1_icon','field_62552cdb784a9_field_62550482480cb'),(137880,4064,'flexible_templates_3_development_team_steps_1_heading','Break down vision into requirements'),(137881,4064,'_flexible_templates_3_development_team_steps_1_heading','field_62552ced784aa_field_6254fdb2efa27'),(137882,4064,'flexible_templates_3_development_team_steps_1_copy','

We will validate your idea with a future vision that is in sync with the realities that your business is currently facing

\r\n

Cloud native solutions make it possible to work within clients\' budgets

\r\n

Planning, execution, support, best practices, and experience in breaking down the concept into a user stories tech road map

'),(137883,4064,'_flexible_templates_3_development_team_steps_1_copy','field_62552cfe784ab_field_6254fdc0efa29'),(137884,4064,'flexible_templates_3_development_team_steps_2_icon','4077'),(137885,4064,'_flexible_templates_3_development_team_steps_2_icon','field_62552cdb784a9_field_62550482480cb'),(137886,4064,'flexible_templates_3_development_team_steps_2_heading','Build your team and start innovating'),(137887,4064,'_flexible_templates_3_development_team_steps_2_heading','field_62552ced784aa_field_6254fdb2efa27'),(137888,4064,'flexible_templates_3_development_team_steps_2_copy',' The Team You Need For Your Cloud Native Project:\r\n

Expanding your workforce is easier than you think, with TEKTeams, you can quickly and affordably grow your company with teams to cover all of your business needs

\r\n

With the right team behind your project, you\'ll get better results, more quickly

\r\n\r\n'),(137889,4064,'_flexible_templates_3_development_team_steps_2_copy','field_62552cfe784ab_field_6254fdc0efa29'),(137890,4064,'flexible_templates_3_development_team_steps','3'),(137891,4064,'_flexible_templates_3_development_team_steps','field_62552cbb784a8'),(137892,4064,'flexible_templates_3_cta','a:3:{s:5:\"title\";s:11:\"Gain Access\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(137893,4064,'_flexible_templates_3_cta','field_62552c6a784a7_field_62551b3e101c4'),(137894,4064,'flexible_templates_4_image','4078'),(137895,4064,'_flexible_templates_4_image','field_625538ef16bb0_field_6254fdc5efa2a'),(137896,4064,'flexible_templates_4_mob_image','4079'),(137897,4064,'_flexible_templates_4_mob_image','field_6255391616bb1_field_6254fdcbefa2b'),(137898,4064,'flexible_templates_4_icon','4080'),(137899,4064,'_flexible_templates_4_icon','field_62553d28bca93_field_62550482480cb'),(137900,4064,'flexible_templates_4_heading','Benefits of TEKTeams'),(137901,4064,'_flexible_templates_4_heading','field_6255397e16bb2_field_6254fdb2efa27'),(137902,4064,'flexible_templates_4_development_team_steps_0_icon','4086'),(137903,4064,'_flexible_templates_4_development_team_steps_0_icon','field_625539a816bb4_field_62550482480cb'),(137904,4064,'flexible_templates_4_development_team_steps_0_heading','Fully Managed'),(137905,4064,'_flexible_templates_4_development_team_steps_0_heading','field_625539a816bb5_field_6254fdb2efa27'),(137906,4064,'flexible_templates_4_development_team_steps_0_copy','Translucent is responsible for hiring, managing, and delivering technical expertise from start to finish. Avoid hiring and team management issues.'),(137907,4064,'_flexible_templates_4_development_team_steps_0_copy','field_625539a816bb6_field_6254fdc0efa29'),(137908,4064,'flexible_templates_4_development_team_steps_1_icon','4085'),(137909,4064,'_flexible_templates_4_development_team_steps_1_icon','field_625539a816bb4_field_62550482480cb'),(137910,4064,'flexible_templates_4_development_team_steps_1_heading','Remote'),(137911,4064,'_flexible_templates_4_development_team_steps_1_heading','field_625539a816bb5_field_6254fdb2efa27'),(137912,4064,'flexible_templates_4_development_team_steps_1_copy','Completely remote. Save office space and gain more time for your employees. Over the last 12 years, we have perfected a remote software development system called TEKProcess.'),(137913,4064,'_flexible_templates_4_development_team_steps_1_copy','field_625539a816bb6_field_6254fdc0efa29'),(137914,4064,'flexible_templates_4_development_team_steps_2_icon','4084'),(137915,4064,'_flexible_templates_4_development_team_steps_2_icon','field_625539a816bb4_field_62550482480cb'),(137916,4064,'flexible_templates_4_development_team_steps_2_heading','Access to Translucent Experts'),(137917,4064,'_flexible_templates_4_development_team_steps_2_heading','field_625539a816bb5_field_6254fdb2efa27'),(137918,4064,'flexible_templates_4_development_team_steps_2_copy','Part of working with TEKTeams is access to our software architects and tech leads at no extra cost.'),(137919,4064,'_flexible_templates_4_development_team_steps_2_copy','field_625539a816bb6_field_6254fdc0efa29'),(137920,4064,'flexible_templates_4_development_team_steps_3_icon','4083'),(137921,4064,'_flexible_templates_4_development_team_steps_3_icon','field_625539a816bb4_field_62550482480cb'),(137922,4064,'flexible_templates_4_development_team_steps_3_heading','Access to Top Tech Talent'),(137923,4064,'_flexible_templates_4_development_team_steps_3_heading','field_625539a816bb5_field_6254fdb2efa27'),(137924,4064,'flexible_templates_4_development_team_steps_3_copy','Our proven hiring and continuous employee improvement processes ensure that only top talent works on each project.'),(137925,4064,'_flexible_templates_4_development_team_steps_3_copy','field_625539a816bb6_field_6254fdc0efa29'),(137926,4064,'flexible_templates_4_development_team_steps_4_icon','4082'),(137927,4064,'_flexible_templates_4_development_team_steps_4_icon','field_625539a816bb4_field_62550482480cb'),(137928,4064,'flexible_templates_4_development_team_steps_4_heading','Team Scalability'),(137929,4064,'_flexible_templates_4_development_team_steps_4_heading','field_625539a816bb5_field_6254fdb2efa27'),(137930,4064,'flexible_templates_4_development_team_steps_4_copy','On-demand resources are ready when you need to scale the team to meet business demands.'),(137931,4064,'_flexible_templates_4_development_team_steps_4_copy','field_625539a816bb6_field_6254fdc0efa29'),(137932,4064,'flexible_templates_4_development_team_steps_5_icon','4081'),(137933,4064,'_flexible_templates_4_development_team_steps_5_icon','field_625539a816bb4_field_62550482480cb'),(137934,4064,'flexible_templates_4_development_team_steps_5_heading','Start Your Journey Now'),(137935,4064,'_flexible_templates_4_development_team_steps_5_heading','field_625539a816bb5_field_6254fdb2efa27'),(137936,4064,'flexible_templates_4_development_team_steps_5_copy','Our TEKTeams are ready to help you now.'),(137937,4064,'_flexible_templates_4_development_team_steps_5_copy','field_625539a816bb6_field_6254fdc0efa29'),(137938,4064,'flexible_templates_4_development_team_steps','6'),(137939,4064,'_flexible_templates_4_development_team_steps','field_625539a816bb3'),(137940,4064,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:13:\"Start Scaling\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(137941,4064,'_flexible_templates_4_cta','field_625539ce16bb7_field_62551b3e101c4'),(137942,4064,'flexible_templates_5_image','4087'),(137943,4064,'_flexible_templates_5_image','field_62553e7d5dd54_field_6254fdc5efa2a'),(137944,4064,'flexible_templates_5_mob_image','4088'),(137945,4064,'_flexible_templates_5_mob_image','field_62553eab5dd55_field_6254fdcbefa2b'),(137946,4064,'flexible_templates_5_icon','4089'),(137947,4064,'_flexible_templates_5_icon','field_62553eee5dd56_field_62550482480cb'),(137948,4064,'flexible_templates_5_heading','The team you need for your cloud native project'),(137949,4064,'_flexible_templates_5_heading','field_62553f075dd57_field_6254fdb2efa27'),(137950,4064,'flexible_templates_5_heading_mobile','The team you need for your cloud native project'),(137951,4064,'_flexible_templates_5_heading_mobile','field_62553f185dd58'),(137952,4064,'flexible_templates_5_copy','We help companies build and scale smart applications, working together to achieve the best results by pairing them with our award-winning team of experts. That includes project managers, senior developers, and QA specialists who have been handpicked to execute on specific goals.'),(137953,4064,'_flexible_templates_5_copy','field_62553f315dd59_field_6254fdc0efa29'),(137954,4064,'flexible_templates_5_development_team_steps_0_icon','4090'),(137955,4064,'_flexible_templates_5_development_team_steps_0_icon','field_625540b262816_field_62550482480cb'),(137956,4064,'flexible_templates_5_development_team_steps_0_heading','Frontend Engineers'),(137957,4064,'_flexible_templates_5_development_team_steps_0_heading','field_625540b262817_field_6254fdb2efa27'),(137958,4064,'flexible_templates_5_development_team_steps_0_copy','Responsible for the development of the user interface of an application. They are always in demand, but with TEKTeams you get access on demand. '),(137959,4064,'_flexible_templates_5_development_team_steps_0_copy','field_625540b262818_field_6254fdc0efa29'),(137960,4064,'flexible_templates_5_development_team_steps_1_icon','4091'),(137961,4064,'_flexible_templates_5_development_team_steps_1_icon','field_625540b262816_field_62550482480cb'),(137962,4064,'flexible_templates_5_development_team_steps_1_heading','QA Engineers'),(137963,4064,'_flexible_templates_5_development_team_steps_1_heading','field_625540b262817_field_6254fdb2efa27'),(137964,4064,'flexible_templates_5_development_team_steps_1_copy','The quality of a product is vital to its success, and without a quality assurance engineer, that quality is compromised. Our QA engineers ensure each product is thoroughly tested to provide the best possible user experience.'),(137965,4064,'_flexible_templates_5_development_team_steps_1_copy','field_625540b262818_field_6254fdc0efa29'),(137966,4064,'flexible_templates_5_development_team_steps_2_icon','4092'),(137967,4064,'_flexible_templates_5_development_team_steps_2_icon','field_625540b262816_field_62550482480cb'),(137968,4064,'flexible_templates_5_development_team_steps_2_heading','Business Analysts'),(137969,4064,'_flexible_templates_5_development_team_steps_2_heading','field_625540b262817_field_6254fdb2efa27'),(137970,4064,'flexible_templates_5_development_team_steps_2_copy','These agile workers help bridge the gap between the IT team and the business, improving overall efficiency through data analysis of processes, products, services, and software.'),(137971,4064,'_flexible_templates_5_development_team_steps_2_copy','field_625540b262818_field_6254fdc0efa29'),(137972,4064,'flexible_templates_5_development_team_steps_3_icon','4093'),(137973,4064,'_flexible_templates_5_development_team_steps_3_icon','field_625540b262816_field_62550482480cb'),(137974,4064,'flexible_templates_5_development_team_steps_3_heading','Backend Engineers'),(137975,4064,'_flexible_templates_5_development_team_steps_3_heading','field_625540b262817_field_6254fdb2efa27'),(137976,4064,'flexible_templates_5_development_team_steps_3_copy','Backend engineers build the structure of a software application. They work on designing, building, and maintaining the server components of web applications. '),(137977,4064,'_flexible_templates_5_development_team_steps_3_copy','field_625540b262818_field_6254fdc0efa29'),(137978,4064,'flexible_templates_5_development_team_steps_4_icon','4094'),(137979,4064,'_flexible_templates_5_development_team_steps_4_icon','field_625540b262816_field_62550482480cb'),(137980,4064,'flexible_templates_5_development_team_steps_4_heading','UX/UI Designers'),(137981,4064,'_flexible_templates_5_development_team_steps_4_heading','field_625540b262817_field_6254fdb2efa27'),(137982,4064,'flexible_templates_5_development_team_steps_4_copy','Responsible for creating user-friendly interfaces making complex technical products intuitive, simple, and engaging. '),(137983,4064,'_flexible_templates_5_development_team_steps_4_copy','field_625540b262818_field_6254fdc0efa29'),(137984,4064,'flexible_templates_5_development_team_steps_5_icon','4095'),(137985,4064,'_flexible_templates_5_development_team_steps_5_icon','field_625540b262816_field_62550482480cb'),(137986,4064,'flexible_templates_5_development_team_steps_5_heading','Product Owners'),(137987,4064,'_flexible_templates_5_development_team_steps_5_heading','field_625540b262817_field_6254fdb2efa27'),(137988,4064,'flexible_templates_5_development_team_steps_5_copy','Agile leaders of the development team, at the center of every development cycle. They will define stories, organize and prioritize backlogs, and monitor the entire development process.\r\n'),(137989,4064,'_flexible_templates_5_development_team_steps_5_copy','field_625540b262818_field_6254fdc0efa29'),(137990,4064,'flexible_templates_5_development_team_steps_6_icon','4096'),(137991,4064,'_flexible_templates_5_development_team_steps_6_icon','field_625540b262816_field_62550482480cb'),(137992,4064,'flexible_templates_5_development_team_steps_6_heading','Data/ML Engineers'),(137993,4064,'_flexible_templates_5_development_team_steps_6_heading','field_625540b262817_field_6254fdb2efa27'),(137994,4064,'flexible_templates_5_development_team_steps_6_copy','Highly skilled software engineers and data scientists who develop AI systems that use large data sets to research, design, and develop self-running software to automate predictive models.\r\n'),(137995,4064,'_flexible_templates_5_development_team_steps_6_copy','field_625540b262818_field_6254fdc0efa29'),(137996,4064,'flexible_templates_5_development_team_steps_7_icon','4097'),(137997,4064,'_flexible_templates_5_development_team_steps_7_icon','field_625540b262816_field_62550482480cb'),(137998,4064,'flexible_templates_5_development_team_steps_7_heading','SRE/DevOps Engineers'),(137999,4064,'_flexible_templates_5_development_team_steps_7_heading','field_625540b262817_field_6254fdb2efa27'),(138000,4064,'flexible_templates_5_development_team_steps_7_copy','DevOps engineers ensure that all development is done in line with the company\'s needs and potential future needs by streamlining the software creation, updates, and deployment process. This can help prevent wasting time and resources on features that are not needed or used.\r\n'),(138001,4064,'_flexible_templates_5_development_team_steps_7_copy','field_625540b262818_field_6254fdc0efa29'),(138002,4064,'flexible_templates_5_development_team_steps_8_icon','4098'),(138003,4064,'_flexible_templates_5_development_team_steps_8_icon','field_625540b262816_field_62550482480cb'),(138004,4064,'flexible_templates_5_development_team_steps_8_heading','Scrum Masters'),(138005,4064,'_flexible_templates_5_development_team_steps_8_heading','field_625540b262817_field_6254fdb2efa27'),(138006,4064,'flexible_templates_5_development_team_steps_8_copy','These team leaders are are accountable for getting teams to perform at their highest levels by managing the process. They will facilitating meetings, improving workflow by removing any bottlenecks, and work with the product owner to ensure the product backlog is in good shape and ready for the next sprint.'),(138007,4064,'_flexible_templates_5_development_team_steps_8_copy','field_625540b262818_field_6254fdc0efa29'),(138008,4064,'flexible_templates_5_development_team_steps','9'),(138009,4064,'_flexible_templates_5_development_team_steps','field_625540b262815'),(138010,4064,'flexible_templates_5_cta','a:3:{s:5:\"title\";s:15:\"Build Your Team\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(138011,4064,'_flexible_templates_5_cta','field_6255410462819_field_62551b3e101c4'),(138012,4064,'flexible_templates_6_heading','A better chance at success with TEKTeams'),(138013,4064,'_flexible_templates_6_heading','field_62554b91172d7_field_6254fdb2efa27'),(138014,4064,'flexible_templates_6_sub_heading','Dev Shop vs Offshore vs In-house vs TEKTeams'),(138015,4064,'_flexible_templates_6_sub_heading','field_62554ba5172d8_field_6254fdbaefa28'),(138016,4064,'flexible_templates_6_icon','4099'),(138017,4064,'_flexible_templates_6_icon','field_62554d69172e1_field_62550482480cb'),(138018,4064,'flexible_templates_6_differential_translucent_header_0_heading','Your Needs'),(138019,4064,'_flexible_templates_6_differential_translucent_header_0_heading','field_625688668727a'),(138020,4064,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(138021,4064,'_flexible_templates_6_differential_translucent_header_0_color','field_62568e42de80b'),(138022,4064,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(138023,4064,'_flexible_templates_6_differential_translucent_header_1_heading','field_625688668727a'),(138024,4064,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(138025,4064,'_flexible_templates_6_differential_translucent_header_1_color','field_62568e42de80b'),(138026,4064,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore Teams'),(138027,4064,'_flexible_templates_6_differential_translucent_header_2_heading','field_625688668727a'),(138028,4064,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(138029,4064,'_flexible_templates_6_differential_translucent_header_2_color','field_62568e42de80b'),(138030,4064,'flexible_templates_6_differential_translucent_header_3_heading','Hiring In-house Developers'),(138031,4064,'_flexible_templates_6_differential_translucent_header_3_heading','field_625688668727a'),(138032,4064,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(138033,4064,'_flexible_templates_6_differential_translucent_header_3_color','field_62568e42de80b'),(138034,4064,'flexible_templates_6_differential_translucent_header_4_heading','TEKTeams'),(138035,4064,'_flexible_templates_6_differential_translucent_header_4_heading','field_625688668727a'),(138036,4064,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(138037,4064,'_flexible_templates_6_differential_translucent_header_4_color','field_62568e42de80b'),(138038,4064,'flexible_templates_6_differential_translucent_header','5'),(138039,4064,'_flexible_templates_6_differential_translucent_header','field_6256884687279'),(138040,4064,'flexible_templates_6_differential_translucent_0_heading_1','1'),(138041,4064,'_flexible_templates_6_differential_translucent_0_heading_1','field_625689c138821'),(138042,4064,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(138043,4064,'_flexible_templates_6_differential_translucent_0_column_1','field_62554d45172dc'),(138044,4064,'flexible_templates_6_differential_translucent_0_heading_2','Working with a Dev Shop'),(138045,4064,'_flexible_templates_6_differential_translucent_0_heading_2','field_62568a29727b5'),(138046,4064,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(138047,4064,'_flexible_templates_6_differential_translucent_0_column_2','field_62554d4a172dd'),(138048,4064,'flexible_templates_6_differential_translucent_0_column_2_color','#7080a7'),(138049,4064,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62554fcda0e79'),(138050,4064,'flexible_templates_6_differential_translucent_0_heading_3','3'),(138051,4064,'_flexible_templates_6_differential_translucent_0_heading_3','field_62568a30727b6'),(138052,4064,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(138053,4064,'_flexible_templates_6_differential_translucent_0_column_3','field_62554d4d172de'),(138054,4064,'flexible_templates_6_differential_translucent_0_column_3_color','#ff555f'),(138055,4064,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62554ff6a0e7a'),(138056,4064,'flexible_templates_6_differential_translucent_0_heading_4','4'),(138057,4064,'_flexible_templates_6_differential_translucent_0_heading_4','field_62568a37727b7'),(138058,4064,'flexible_templates_6_differential_translucent_0_column_4','Always'),(138059,4064,'_flexible_templates_6_differential_translucent_0_column_4','field_62554d4f172df'),(138060,4064,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(138061,4064,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62555028a0e7c'),(138062,4064,'flexible_templates_6_differential_translucent_0_heading_5','5'),(138063,4064,'_flexible_templates_6_differential_translucent_0_heading_5','field_62568a40727b8'),(138064,4064,'flexible_templates_6_differential_translucent_0_column_5','Always'),(138065,4064,'_flexible_templates_6_differential_translucent_0_column_5','field_62555011a0e7b'),(138066,4064,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(138067,4064,'_flexible_templates_6_differential_translucent_0_column_5_color','field_6255503aa0e7d'),(138068,4064,'flexible_templates_6_differential_translucent_1_heading_1','6'),(138069,4064,'_flexible_templates_6_differential_translucent_1_heading_1','field_625689c138821'),(138070,4064,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (speed to market)'),(138071,4064,'_flexible_templates_6_differential_translucent_1_column_1','field_62554d45172dc'),(138072,4064,'flexible_templates_6_differential_translucent_1_heading_2','7'),(138073,4064,'_flexible_templates_6_differential_translucent_1_heading_2','field_62568a29727b5'),(138074,4064,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(138075,4064,'_flexible_templates_6_differential_translucent_1_column_2','field_62554d4a172dd'),(138076,4064,'flexible_templates_6_differential_translucent_1_column_2_color','#ff555f'),(138077,4064,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62554fcda0e79'),(138078,4064,'flexible_templates_6_differential_translucent_1_heading_3','8'),(138079,4064,'_flexible_templates_6_differential_translucent_1_heading_3','field_62568a30727b6'),(138080,4064,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(138081,4064,'_flexible_templates_6_differential_translucent_1_column_3','field_62554d4d172de'),(138082,4064,'flexible_templates_6_differential_translucent_1_column_3_color','#7080a7'),(138083,4064,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62554ff6a0e7a'),(138084,4064,'flexible_templates_6_differential_translucent_1_heading_4','9'),(138085,4064,'_flexible_templates_6_differential_translucent_1_heading_4','field_62568a37727b7'),(138086,4064,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(138087,4064,'_flexible_templates_6_differential_translucent_1_column_4','field_62554d4f172df'),(138088,4064,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(138089,4064,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62555028a0e7c'),(138090,4064,'flexible_templates_6_differential_translucent_1_heading_5','10'),(138091,4064,'_flexible_templates_6_differential_translucent_1_heading_5','field_62568a40727b8'),(138092,4064,'flexible_templates_6_differential_translucent_1_column_5','Always'),(138093,4064,'_flexible_templates_6_differential_translucent_1_column_5','field_62555011a0e7b'),(138094,4064,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(138095,4064,'_flexible_templates_6_differential_translucent_1_column_5_color','field_6255503aa0e7d'),(138096,4064,'flexible_templates_6_differential_translucent_2_heading_1','11'),(138097,4064,'_flexible_templates_6_differential_translucent_2_heading_1','field_625689c138821'),(138098,4064,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(138099,4064,'_flexible_templates_6_differential_translucent_2_column_1','field_62554d45172dc'),(138100,4064,'flexible_templates_6_differential_translucent_2_heading_2','12'),(138101,4064,'_flexible_templates_6_differential_translucent_2_heading_2','field_62568a29727b5'),(138102,4064,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(138103,4064,'_flexible_templates_6_differential_translucent_2_column_2','field_62554d4a172dd'),(138104,4064,'flexible_templates_6_differential_translucent_2_column_2_color','#7080a7'),(138105,4064,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62554fcda0e79'),(138106,4064,'flexible_templates_6_differential_translucent_2_heading_3','13'),(138107,4064,'_flexible_templates_6_differential_translucent_2_heading_3','field_62568a30727b6'),(138108,4064,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(138109,4064,'_flexible_templates_6_differential_translucent_2_column_3','field_62554d4d172de'),(138110,4064,'flexible_templates_6_differential_translucent_2_column_3_color','#ff555f'),(138111,4064,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62554ff6a0e7a'),(138112,4064,'flexible_templates_6_differential_translucent_2_heading_4','14'),(138113,4064,'_flexible_templates_6_differential_translucent_2_heading_4','field_62568a37727b7'),(138114,4064,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(138115,4064,'_flexible_templates_6_differential_translucent_2_column_4','field_62554d4f172df'),(138116,4064,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(138117,4064,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62555028a0e7c'),(138118,4064,'flexible_templates_6_differential_translucent_2_heading_5','15'),(138119,4064,'_flexible_templates_6_differential_translucent_2_heading_5','field_62568a40727b8'),(138120,4064,'flexible_templates_6_differential_translucent_2_column_5','Always'),(138121,4064,'_flexible_templates_6_differential_translucent_2_column_5','field_62555011a0e7b'),(138122,4064,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(138123,4064,'_flexible_templates_6_differential_translucent_2_column_5_color','field_6255503aa0e7d'),(138124,4064,'flexible_templates_6_differential_translucent_3_heading_1','16'),(138125,4064,'_flexible_templates_6_differential_translucent_3_heading_1','field_625689c138821'),(138126,4064,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(138127,4064,'_flexible_templates_6_differential_translucent_3_column_1','field_62554d45172dc'),(138128,4064,'flexible_templates_6_differential_translucent_3_heading_2','17'),(138129,4064,'_flexible_templates_6_differential_translucent_3_heading_2','field_62568a29727b5'),(138130,4064,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(138131,4064,'_flexible_templates_6_differential_translucent_3_column_2','field_62554d4a172dd'),(138132,4064,'flexible_templates_6_differential_translucent_3_column_2_color','#7080a7'),(138133,4064,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62554fcda0e79'),(138134,4064,'flexible_templates_6_differential_translucent_3_heading_3','18'),(138135,4064,'_flexible_templates_6_differential_translucent_3_heading_3','field_62568a30727b6'),(138136,4064,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(138137,4064,'_flexible_templates_6_differential_translucent_3_column_3','field_62554d4d172de'),(138138,4064,'flexible_templates_6_differential_translucent_3_column_3_color','#ff555f'),(138139,4064,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62554ff6a0e7a'),(138140,4064,'flexible_templates_6_differential_translucent_3_heading_4','19'),(138141,4064,'_flexible_templates_6_differential_translucent_3_heading_4','field_62568a37727b7'),(138142,4064,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(138143,4064,'_flexible_templates_6_differential_translucent_3_column_4','field_62554d4f172df'),(138144,4064,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(138145,4064,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62555028a0e7c'),(138146,4064,'flexible_templates_6_differential_translucent_3_heading_5','Working with Translucent'),(138147,4064,'_flexible_templates_6_differential_translucent_3_heading_5','field_62568a40727b8'),(138148,4064,'flexible_templates_6_differential_translucent_3_column_5','Always'),(138149,4064,'_flexible_templates_6_differential_translucent_3_column_5','field_62555011a0e7b'),(138150,4064,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(138151,4064,'_flexible_templates_6_differential_translucent_3_column_5_color','field_6255503aa0e7d'),(138152,4064,'flexible_templates_6_differential_translucent','5'),(138153,4064,'_flexible_templates_6_differential_translucent','field_62554c30172da'),(138154,4064,'flexible_templates_7_heading','Be smart. Be efficient. Be agile.'),(138155,4064,'_flexible_templates_7_heading','field_625565e14146d_field_6254fdb2efa27'),(138156,4064,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(138157,4064,'_flexible_templates_7_cta','field_625565fa4146e_field_62551b3e101c4'),(138158,4100,'flexible_templates','a:8:{i:0;s:16:\"tek-teams-banner\";i:1;s:20:\"tek-teams-two-column\";i:2;s:14:\"tek-team-about\";i:3;s:21:\"tek-teams-development\";i:4;s:18:\"tek_teams_benifits\";i:5;s:17:\"tek-team-whats-is\";i:6;s:34:\"tek-teams-translucent-differential\";i:7;s:17:\"lets_talk_section\";}'),(138159,4100,'_flexible_templates','field_6254f4d84ef9b'),(138160,4100,'flexible_templates_0_image','4066'),(138161,4100,'_flexible_templates_0_image','field_6255038c2e6ae_field_6254fdc5efa2a'),(138162,4100,'flexible_templates_0_mob_image','4067'),(138163,4100,'_flexible_templates_0_mob_image','field_625503db2e6af_field_6254fdcbefa2b'),(138164,4100,'flexible_templates_0_icon','4068'),(138165,4100,'_flexible_templates_0_icon','field_6255095042ef2_field_62550482480cb'),(138166,4100,'flexible_templates_0_heading','TEKTeams'),(138167,4100,'_flexible_templates_0_heading','field_6255096442ef3_field_6254fdb2efa27'),(138168,4100,'flexible_templates_0_sub_heading','TEK™ WORLD'),(138169,4100,'_flexible_templates_0_sub_heading','field_6255097642ef4_field_6254fdbaefa28'),(138170,4100,'flexible_templates_1_heading','Gain access to top 1% tech talent with a trusted partner that delivers cloud native solutions and value.'),(138171,4100,'_flexible_templates_1_heading','field_62551ac3a6f96_field_6254fdb2efa27'),(138172,4100,'flexible_templates_1_sub_heading','THE TEAM YOU NEED'),(138173,4100,'_flexible_templates_1_sub_heading','field_62551ae4a6f97_field_6254fdbaefa28'),(138174,4100,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(138175,4100,'_flexible_templates_1_cta','field_62551b56a6f98_field_62551b3e101c4'),(138176,4100,'flexible_templates_1_copy','The best technology. The best people. Access tailored software engineering teams with industry-specific experience without the hassle of hiring and maintaining internal teams. We understand how hard it is to get and keep top talent. We take entire liability for delivery and execution of the project.'),(138177,4100,'_flexible_templates_1_copy','field_62551b74a6f99_field_6254fdc0efa29'),(138178,4100,'flexible_templates_2_image','4069'),(138179,4100,'_flexible_templates_2_image','field_625523de9609f_field_6254fdc5efa2a'),(138180,4100,'flexible_templates_2_mob_image','4070'),(138181,4100,'_flexible_templates_2_mob_image','field_625523f4960a0_field_6254fdcbefa2b'),(138182,4100,'flexible_templates_2_icon','4071'),(138183,4100,'_flexible_templates_2_icon','field_6255246d960a1_field_62550482480cb'),(138184,4100,'flexible_templates_2_heading','What are TEKTeams?'),(138185,4100,'_flexible_templates_2_heading','field_62552482960a2_field_6254fdb2efa27'),(138186,4100,'flexible_templates_2_copy','TEKTeams are Your Dedicated Development Team built on Translucent principals that, as part of the TEK ecosystem, combine trust, processes, people, and technology to deliver value.\r\n\r\nTranslucent has created a process that brings the best people in the industry with various skills to develop and maintain the highest quality software. A perfect combination of roles, talent, skillset, and the right work environment.\r\n\r\nTEKTeams provide the precise expertise your organization needs to execute a project successfully.'),(138187,4100,'_flexible_templates_2_copy','field_625525b15629c'),(138188,4100,'flexible_templates_2_content_right','Our onshore/nearshore model combines resources across the Americas to overcome challenges your project might encounter; we work closely alongside your company staff to attain your business goals. Increase the number of resources you have on hand to help you develop and manage intelligent applications and platforms.\r\n\r\nTEKTeams are the most cost-effective way to get the talent you need for your cloud native projects without taking up all of your time or budget.'),(138189,4100,'_flexible_templates_2_content_right','field_625525ba5629d'),(138190,4100,'flexible_templates_3_image','4072'),(138191,4100,'_flexible_templates_3_image','field_62552ada52711_field_6254fdc5efa2a'),(138192,4100,'flexible_templates_3_mob_image','4073'),(138193,4100,'_flexible_templates_3_mob_image','field_62552aed52712_field_6254fdcbefa2b'),(138194,4100,'flexible_templates_3_icon','4074'),(138195,4100,'_flexible_templates_3_icon','field_62552b7652713_field_62550482480cb'),(138196,4100,'flexible_templates_3_heading','Get started with the best resources for your project'),(138197,4100,'_flexible_templates_3_heading','field_62552baf52715_field_6254fdb2efa27'),(138198,4100,'flexible_templates_3_copy','TEK Teams are tailored software engineering teams to help your business develop and manage smarter apps. We match business goals to the right technology and teams to drive better results. With TEK Teams you get access to the best of the best resources for your cloud native projects at a price you can afford, with the capacity to scale as needed, according to your demands. Here is what to expect working with TEK Teams:'),(138199,4100,'_flexible_templates_3_copy','field_62552b8552714_field_6254fdc0efa29'),(138200,4100,'flexible_templates_3_development_team_steps_0_icon','4075'),(138201,4100,'_flexible_templates_3_development_team_steps_0_icon','field_62552cdb784a9_field_62550482480cb'),(138202,4100,'flexible_templates_3_development_team_steps_0_heading','A trusted tech partner'),(138203,4100,'_flexible_templates_3_development_team_steps_0_heading','field_62552ced784aa_field_6254fdb2efa27'),(138204,4100,'flexible_templates_3_development_team_steps_0_copy','

Increase your workforce by partnering with the top 1% teams tailored to your business needs

\r\n

We will explain and document the entire development process and make sure to meet business and project objectives

\r\n

Scale your teams as needed with a global network united as one

'),(138205,4100,'_flexible_templates_3_development_team_steps_0_copy','field_62552cfe784ab_field_6254fdc0efa29'),(138206,4100,'flexible_templates_3_development_team_steps_1_icon','4076'),(138207,4100,'_flexible_templates_3_development_team_steps_1_icon','field_62552cdb784a9_field_62550482480cb'),(138208,4100,'flexible_templates_3_development_team_steps_1_heading','Break down vision into requirements'),(138209,4100,'_flexible_templates_3_development_team_steps_1_heading','field_62552ced784aa_field_6254fdb2efa27'),(138210,4100,'flexible_templates_3_development_team_steps_1_copy','

We will validate your idea with a future vision that is in sync with the realities that your business is currently facing

\r\n

Cloud native solutions make it possible to work within clients\' budgets

\r\n

Planning, execution, support, best practices, and experience in breaking down the concept into a user stories tech road map

'),(138211,4100,'_flexible_templates_3_development_team_steps_1_copy','field_62552cfe784ab_field_6254fdc0efa29'),(138212,4100,'flexible_templates_3_development_team_steps_2_icon','4077'),(138213,4100,'_flexible_templates_3_development_team_steps_2_icon','field_62552cdb784a9_field_62550482480cb'),(138214,4100,'flexible_templates_3_development_team_steps_2_heading','Build your team and start innovating'),(138215,4100,'_flexible_templates_3_development_team_steps_2_heading','field_62552ced784aa_field_6254fdb2efa27'),(138216,4100,'flexible_templates_3_development_team_steps_2_copy',' The Team You Need For Your Cloud Native Project:\r\n

Expanding your workforce is easier than you think, with TEK Teams, you can quickly and affordably grow your company with teams to cover all of your business needs

\r\n

With the right team behind your project, you\'ll get better results, more quickly

\r\n\r\n'),(138217,4100,'_flexible_templates_3_development_team_steps_2_copy','field_62552cfe784ab_field_6254fdc0efa29'),(138218,4100,'flexible_templates_3_development_team_steps','3'),(138219,4100,'_flexible_templates_3_development_team_steps','field_62552cbb784a8'),(138220,4100,'flexible_templates_3_cta','a:3:{s:5:\"title\";s:11:\"Gain Access\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(138221,4100,'_flexible_templates_3_cta','field_62552c6a784a7_field_62551b3e101c4'),(138222,4100,'flexible_templates_4_image','4078'),(138223,4100,'_flexible_templates_4_image','field_625538ef16bb0_field_6254fdc5efa2a'),(138224,4100,'flexible_templates_4_mob_image','4079'),(138225,4100,'_flexible_templates_4_mob_image','field_6255391616bb1_field_6254fdcbefa2b'),(138226,4100,'flexible_templates_4_icon','4080'),(138227,4100,'_flexible_templates_4_icon','field_62553d28bca93_field_62550482480cb'),(138228,4100,'flexible_templates_4_heading','Benefits of TEKTeams'),(138229,4100,'_flexible_templates_4_heading','field_6255397e16bb2_field_6254fdb2efa27'),(138230,4100,'flexible_templates_4_development_team_steps_0_icon','4086'),(138231,4100,'_flexible_templates_4_development_team_steps_0_icon','field_625539a816bb4_field_62550482480cb'),(138232,4100,'flexible_templates_4_development_team_steps_0_heading','Fully Managed'),(138233,4100,'_flexible_templates_4_development_team_steps_0_heading','field_625539a816bb5_field_6254fdb2efa27'),(138234,4100,'flexible_templates_4_development_team_steps_0_copy','Translucent is responsible for hiring, managing, and delivering technical expertise from start to finish. Avoid hiring and team management issues.'),(138235,4100,'_flexible_templates_4_development_team_steps_0_copy','field_625539a816bb6_field_6254fdc0efa29'),(138236,4100,'flexible_templates_4_development_team_steps_1_icon','4085'),(138237,4100,'_flexible_templates_4_development_team_steps_1_icon','field_625539a816bb4_field_62550482480cb'),(138238,4100,'flexible_templates_4_development_team_steps_1_heading','Remote'),(138239,4100,'_flexible_templates_4_development_team_steps_1_heading','field_625539a816bb5_field_6254fdb2efa27'),(138240,4100,'flexible_templates_4_development_team_steps_1_copy','All Remote, save office space, and gain time for your employees. Over the last 12 years, we have perfected a remote software development system called TEKProcess.'),(138241,4100,'_flexible_templates_4_development_team_steps_1_copy','field_625539a816bb6_field_6254fdc0efa29'),(138242,4100,'flexible_templates_4_development_team_steps_2_icon','4084'),(138243,4100,'_flexible_templates_4_development_team_steps_2_icon','field_625539a816bb4_field_62550482480cb'),(138244,4100,'flexible_templates_4_development_team_steps_2_heading','Access To Translucent Experts'),(138245,4100,'_flexible_templates_4_development_team_steps_2_heading','field_625539a816bb5_field_6254fdb2efa27'),(138246,4100,'flexible_templates_4_development_team_steps_2_copy','Part of working with TEKTeams is access to our software architects and tech leads at no extra cost.'),(138247,4100,'_flexible_templates_4_development_team_steps_2_copy','field_625539a816bb6_field_6254fdc0efa29'),(138248,4100,'flexible_templates_4_development_team_steps_3_icon','4083'),(138249,4100,'_flexible_templates_4_development_team_steps_3_icon','field_625539a816bb4_field_62550482480cb'),(138250,4100,'flexible_templates_4_development_team_steps_3_heading','Access to Top Tech Talent'),(138251,4100,'_flexible_templates_4_development_team_steps_3_heading','field_625539a816bb5_field_6254fdb2efa27'),(138252,4100,'flexible_templates_4_development_team_steps_3_copy','Our proven hiring and continuous employee improvement processes ensure that only top talent works on each project.'),(138253,4100,'_flexible_templates_4_development_team_steps_3_copy','field_625539a816bb6_field_6254fdc0efa29'),(138254,4100,'flexible_templates_4_development_team_steps_4_icon','4082'),(138255,4100,'_flexible_templates_4_development_team_steps_4_icon','field_625539a816bb4_field_62550482480cb'),(138256,4100,'flexible_templates_4_development_team_steps_4_heading','Team Scalability'),(138257,4100,'_flexible_templates_4_development_team_steps_4_heading','field_625539a816bb5_field_6254fdb2efa27'),(138258,4100,'flexible_templates_4_development_team_steps_4_copy','On-demand resources are ready when you need to scale the team to meet business demands.'),(138259,4100,'_flexible_templates_4_development_team_steps_4_copy','field_625539a816bb6_field_6254fdc0efa29'),(138260,4100,'flexible_templates_4_development_team_steps_5_icon','4081'),(138261,4100,'_flexible_templates_4_development_team_steps_5_icon','field_625539a816bb4_field_62550482480cb'),(138262,4100,'flexible_templates_4_development_team_steps_5_heading','Start Your Journey Now'),(138263,4100,'_flexible_templates_4_development_team_steps_5_heading','field_625539a816bb5_field_6254fdb2efa27'),(138264,4100,'flexible_templates_4_development_team_steps_5_copy','Our TEKTeams are ready to help you now.'),(138265,4100,'_flexible_templates_4_development_team_steps_5_copy','field_625539a816bb6_field_6254fdc0efa29'),(138266,4100,'flexible_templates_4_development_team_steps','6'),(138267,4100,'_flexible_templates_4_development_team_steps','field_625539a816bb3'),(138268,4100,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:13:\"Start Scaling\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(138269,4100,'_flexible_templates_4_cta','field_625539ce16bb7_field_62551b3e101c4'),(138270,4100,'flexible_templates_5_image','4087'),(138271,4100,'_flexible_templates_5_image','field_62553e7d5dd54_field_6254fdc5efa2a'),(138272,4100,'flexible_templates_5_mob_image','4088'),(138273,4100,'_flexible_templates_5_mob_image','field_62553eab5dd55_field_6254fdcbefa2b'),(138274,4100,'flexible_templates_5_icon','4089'),(138275,4100,'_flexible_templates_5_icon','field_62553eee5dd56_field_62550482480cb'),(138276,4100,'flexible_templates_5_heading','The Team You Need For Your Cloud Native Project'),(138277,4100,'_flexible_templates_5_heading','field_62553f075dd57_field_6254fdb2efa27'),(138278,4100,'flexible_templates_5_heading_mobile','The Team You Need For Your Cloud Native Project'),(138279,4100,'_flexible_templates_5_heading_mobile','field_62553f185dd58'),(138280,4100,'flexible_templates_5_copy','We help companies build and scale smart applications, working together to achieve the best results by pairing them with our award-winning team of experts. That includes project managers, senior developers, and QA specialists who have been handpicked to execute on specific goals.'),(138281,4100,'_flexible_templates_5_copy','field_62553f315dd59_field_6254fdc0efa29'),(138282,4100,'flexible_templates_5_development_team_steps_0_icon','4090'),(138283,4100,'_flexible_templates_5_development_team_steps_0_icon','field_625540b262816_field_62550482480cb'),(138284,4100,'flexible_templates_5_development_team_steps_0_heading','Frontend engineers'),(138285,4100,'_flexible_templates_5_development_team_steps_0_heading','field_625540b262817_field_6254fdb2efa27'),(138286,4100,'flexible_templates_5_development_team_steps_0_copy','Responsible for developing the \"visible\" part of the project, these professionals are the ones who code and test user interface elements and functionality.'),(138287,4100,'_flexible_templates_5_development_team_steps_0_copy','field_625540b262818_field_6254fdc0efa29'),(138288,4100,'flexible_templates_5_development_team_steps_1_icon','4091'),(138289,4100,'_flexible_templates_5_development_team_steps_1_icon','field_625540b262816_field_62550482480cb'),(138290,4100,'flexible_templates_5_development_team_steps_1_heading','QA engineers'),(138291,4100,'_flexible_templates_5_development_team_steps_1_heading','field_625540b262817_field_6254fdb2efa27'),(138292,4100,'flexible_templates_5_development_team_steps_1_copy','These professionals are in charge of the quality of the entire development life cycle. They don\'t just ensure that the product is as bug-free as possible but also that the processes used to build it have optimal quality.'),(138293,4100,'_flexible_templates_5_development_team_steps_1_copy','field_625540b262818_field_6254fdc0efa29'),(138294,4100,'flexible_templates_5_development_team_steps_2_icon','4092'),(138295,4100,'_flexible_templates_5_development_team_steps_2_icon','field_625540b262816_field_62550482480cb'),(138296,4100,'flexible_templates_5_development_team_steps_2_heading','Business analysts'),(138297,4100,'_flexible_templates_5_development_team_steps_2_heading','field_625540b262817_field_6254fdb2efa27'),(138298,4100,'flexible_templates_5_development_team_steps_2_copy','They serve as bridges between the IT team and the business, evaluating processes, determining requirements, and offering suggestions and reports to executives.'),(138299,4100,'_flexible_templates_5_development_team_steps_2_copy','field_625540b262818_field_6254fdc0efa29'),(138300,4100,'flexible_templates_5_development_team_steps_3_icon','4093'),(138301,4100,'_flexible_templates_5_development_team_steps_3_icon','field_625540b262816_field_62550482480cb'),(138302,4100,'flexible_templates_5_development_team_steps_3_heading','Backend engineers'),(138303,4100,'_flexible_templates_5_development_team_steps_3_heading','field_625540b262817_field_6254fdb2efa27'),(138304,4100,'flexible_templates_5_development_team_steps_3_copy','They serve as bridges between the IT team and the business, evaluating processes, determining requirements, and offering suggestions and reports to executives.'),(138305,4100,'_flexible_templates_5_development_team_steps_3_copy','field_625540b262818_field_6254fdc0efa29'),(138306,4100,'flexible_templates_5_development_team_steps_4_icon','4094'),(138307,4100,'_flexible_templates_5_development_team_steps_4_icon','field_625540b262816_field_62550482480cb'),(138308,4100,'flexible_templates_5_development_team_steps_4_heading','UX/UI designers'),(138309,4100,'_flexible_templates_5_development_team_steps_4_heading','field_625540b262817_field_6254fdb2efa27'),(138310,4100,'flexible_templates_5_development_team_steps_4_copy','They are responsible for ensuring that the user experience is intuitive, simple, and engaging.'),(138311,4100,'_flexible_templates_5_development_team_steps_4_copy','field_625540b262818_field_6254fdc0efa29'),(138312,4100,'flexible_templates_5_development_team_steps_5_icon','4095'),(138313,4100,'_flexible_templates_5_development_team_steps_5_icon','field_625540b262816_field_62550482480cb'),(138314,4100,'flexible_templates_5_development_team_steps_5_heading','Product Owners'),(138315,4100,'_flexible_templates_5_development_team_steps_5_heading','field_625540b262817_field_6254fdb2efa27'),(138316,4100,'flexible_templates_5_development_team_steps_5_copy','The leaders of the development team, they initiate, plan, design, execute, and monitor the entire development process.'),(138317,4100,'_flexible_templates_5_development_team_steps_5_copy','field_625540b262818_field_6254fdc0efa29'),(138318,4100,'flexible_templates_5_development_team_steps_6_icon','4096'),(138319,4100,'_flexible_templates_5_development_team_steps_6_icon','field_625540b262816_field_62550482480cb'),(138320,4100,'flexible_templates_5_development_team_steps_6_heading','Data/ML engineers'),(138321,4100,'_flexible_templates_5_development_team_steps_6_heading','field_625540b262817_field_6254fdb2efa27'),(138322,4100,'flexible_templates_5_development_team_steps_6_copy','The leaders of the development team, they initiate, plan, design, execute, and monitor the entire development process.'),(138323,4100,'_flexible_templates_5_development_team_steps_6_copy','field_625540b262818_field_6254fdc0efa29'),(138324,4100,'flexible_templates_5_development_team_steps_7_icon','4097'),(138325,4100,'_flexible_templates_5_development_team_steps_7_icon','field_625540b262816_field_62550482480cb'),(138326,4100,'flexible_templates_5_development_team_steps_7_heading','SRE/DevOps engineers'),(138327,4100,'_flexible_templates_5_development_team_steps_7_heading','field_625540b262817_field_6254fdb2efa27'),(138328,4100,'flexible_templates_5_development_team_steps_7_copy','Professionals that work with the developers on the team to better coordinate development, operations, and testing efforts.'),(138329,4100,'_flexible_templates_5_development_team_steps_7_copy','field_625540b262818_field_6254fdc0efa29'),(138330,4100,'flexible_templates_5_development_team_steps_8_icon','4098'),(138331,4100,'_flexible_templates_5_development_team_steps_8_icon','field_625540b262816_field_62550482480cb'),(138332,4100,'flexible_templates_5_development_team_steps_8_heading','Scrum Masters'),(138333,4100,'_flexible_templates_5_development_team_steps_8_heading','field_625540b262817_field_6254fdb2efa27'),(138334,4100,'flexible_templates_5_development_team_steps_8_copy','The leaders of the development team, they initiate, plan, design, execute, and monitor the entire development process.'),(138335,4100,'_flexible_templates_5_development_team_steps_8_copy','field_625540b262818_field_6254fdc0efa29'),(138336,4100,'flexible_templates_5_development_team_steps','9'),(138337,4100,'_flexible_templates_5_development_team_steps','field_625540b262815'),(138338,4100,'flexible_templates_5_cta','a:3:{s:5:\"title\";s:15:\"Build Your Team\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(138339,4100,'_flexible_templates_5_cta','field_6255410462819_field_62551b3e101c4'),(138340,4100,'flexible_templates_6_heading','A better chance at success with TEK Teams'),(138341,4100,'_flexible_templates_6_heading','field_62554b91172d7_field_6254fdb2efa27'),(138342,4100,'flexible_templates_6_sub_heading','Dev Shop vs Offshore vs In-house vs TEKTeams'),(138343,4100,'_flexible_templates_6_sub_heading','field_62554ba5172d8_field_6254fdbaefa28'),(138344,4100,'flexible_templates_6_icon','4099'),(138345,4100,'_flexible_templates_6_icon','field_62554d69172e1_field_62550482480cb'),(138346,4100,'flexible_templates_6_differential_translucent_header_0_heading','Your needs'),(138347,4100,'_flexible_templates_6_differential_translucent_header_0_heading','field_625688668727a'),(138348,4100,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(138349,4100,'_flexible_templates_6_differential_translucent_header_0_color','field_62568e42de80b'),(138350,4100,'flexible_templates_6_differential_translucent_header_1_heading','Working with a dev shop'),(138351,4100,'_flexible_templates_6_differential_translucent_header_1_heading','field_625688668727a'),(138352,4100,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(138353,4100,'_flexible_templates_6_differential_translucent_header_1_color','field_62568e42de80b'),(138354,4100,'flexible_templates_6_differential_translucent_header_2_heading','Working with offshore teams'),(138355,4100,'_flexible_templates_6_differential_translucent_header_2_heading','field_625688668727a'),(138356,4100,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(138357,4100,'_flexible_templates_6_differential_translucent_header_2_color','field_62568e42de80b'),(138358,4100,'flexible_templates_6_differential_translucent_header_3_heading','Hiring in-house developers'),(138359,4100,'_flexible_templates_6_differential_translucent_header_3_heading','field_625688668727a'),(138360,4100,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(138361,4100,'_flexible_templates_6_differential_translucent_header_3_color','field_62568e42de80b'),(138362,4100,'flexible_templates_6_differential_translucent_header_4_heading','TEK TEAMS'),(138363,4100,'_flexible_templates_6_differential_translucent_header_4_heading','field_625688668727a'),(138364,4100,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(138365,4100,'_flexible_templates_6_differential_translucent_header_4_color','field_62568e42de80b'),(138366,4100,'flexible_templates_6_differential_translucent_header','5'),(138367,4100,'_flexible_templates_6_differential_translucent_header','field_6256884687279'),(138368,4100,'flexible_templates_6_differential_translucent_0_heading_1','1'),(138369,4100,'_flexible_templates_6_differential_translucent_0_heading_1','field_625689c138821'),(138370,4100,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(138371,4100,'_flexible_templates_6_differential_translucent_0_column_1','field_62554d45172dc'),(138372,4100,'flexible_templates_6_differential_translucent_0_heading_2','Working with a Dev Shop'),(138373,4100,'_flexible_templates_6_differential_translucent_0_heading_2','field_62568a29727b5'),(138374,4100,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(138375,4100,'_flexible_templates_6_differential_translucent_0_column_2','field_62554d4a172dd'),(138376,4100,'flexible_templates_6_differential_translucent_0_column_2_color','#7080a7'),(138377,4100,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62554fcda0e79'),(138378,4100,'flexible_templates_6_differential_translucent_0_heading_3','3'),(138379,4100,'_flexible_templates_6_differential_translucent_0_heading_3','field_62568a30727b6'),(138380,4100,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(138381,4100,'_flexible_templates_6_differential_translucent_0_column_3','field_62554d4d172de'),(138382,4100,'flexible_templates_6_differential_translucent_0_column_3_color','#ff555f'),(138383,4100,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62554ff6a0e7a'),(138384,4100,'flexible_templates_6_differential_translucent_0_heading_4','4'),(138385,4100,'_flexible_templates_6_differential_translucent_0_heading_4','field_62568a37727b7'),(138386,4100,'flexible_templates_6_differential_translucent_0_column_4','Always'),(138387,4100,'_flexible_templates_6_differential_translucent_0_column_4','field_62554d4f172df'),(138388,4100,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(138389,4100,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62555028a0e7c'),(138390,4100,'flexible_templates_6_differential_translucent_0_heading_5','5'),(138391,4100,'_flexible_templates_6_differential_translucent_0_heading_5','field_62568a40727b8'),(138392,4100,'flexible_templates_6_differential_translucent_0_column_5','Always'),(138393,4100,'_flexible_templates_6_differential_translucent_0_column_5','field_62555011a0e7b'),(138394,4100,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(138395,4100,'_flexible_templates_6_differential_translucent_0_column_5_color','field_6255503aa0e7d'),(138396,4100,'flexible_templates_6_differential_translucent_1_heading_1','6'),(138397,4100,'_flexible_templates_6_differential_translucent_1_heading_1','field_625689c138821'),(138398,4100,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (Speed to market)'),(138399,4100,'_flexible_templates_6_differential_translucent_1_column_1','field_62554d45172dc'),(138400,4100,'flexible_templates_6_differential_translucent_1_heading_2','7'),(138401,4100,'_flexible_templates_6_differential_translucent_1_heading_2','field_62568a29727b5'),(138402,4100,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(138403,4100,'_flexible_templates_6_differential_translucent_1_column_2','field_62554d4a172dd'),(138404,4100,'flexible_templates_6_differential_translucent_1_column_2_color','#ff555f'),(138405,4100,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62554fcda0e79'),(138406,4100,'flexible_templates_6_differential_translucent_1_heading_3','8'),(138407,4100,'_flexible_templates_6_differential_translucent_1_heading_3','field_62568a30727b6'),(138408,4100,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(138409,4100,'_flexible_templates_6_differential_translucent_1_column_3','field_62554d4d172de'),(138410,4100,'flexible_templates_6_differential_translucent_1_column_3_color','#7080a7'),(138411,4100,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62554ff6a0e7a'),(138412,4100,'flexible_templates_6_differential_translucent_1_heading_4','9'),(138413,4100,'_flexible_templates_6_differential_translucent_1_heading_4','field_62568a37727b7'),(138414,4100,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(138415,4100,'_flexible_templates_6_differential_translucent_1_column_4','field_62554d4f172df'),(138416,4100,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(138417,4100,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62555028a0e7c'),(138418,4100,'flexible_templates_6_differential_translucent_1_heading_5','10'),(138419,4100,'_flexible_templates_6_differential_translucent_1_heading_5','field_62568a40727b8'),(138420,4100,'flexible_templates_6_differential_translucent_1_column_5','Always'),(138421,4100,'_flexible_templates_6_differential_translucent_1_column_5','field_62555011a0e7b'),(138422,4100,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(138423,4100,'_flexible_templates_6_differential_translucent_1_column_5_color','field_6255503aa0e7d'),(138424,4100,'flexible_templates_6_differential_translucent_2_heading_1','11'),(138425,4100,'_flexible_templates_6_differential_translucent_2_heading_1','field_625689c138821'),(138426,4100,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(138427,4100,'_flexible_templates_6_differential_translucent_2_column_1','field_62554d45172dc'),(138428,4100,'flexible_templates_6_differential_translucent_2_heading_2','12'),(138429,4100,'_flexible_templates_6_differential_translucent_2_heading_2','field_62568a29727b5'),(138430,4100,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(138431,4100,'_flexible_templates_6_differential_translucent_2_column_2','field_62554d4a172dd'),(138432,4100,'flexible_templates_6_differential_translucent_2_column_2_color','#7080a7'),(138433,4100,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62554fcda0e79'),(138434,4100,'flexible_templates_6_differential_translucent_2_heading_3','13'),(138435,4100,'_flexible_templates_6_differential_translucent_2_heading_3','field_62568a30727b6'),(138436,4100,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(138437,4100,'_flexible_templates_6_differential_translucent_2_column_3','field_62554d4d172de'),(138438,4100,'flexible_templates_6_differential_translucent_2_column_3_color','#ff555f'),(138439,4100,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62554ff6a0e7a'),(138440,4100,'flexible_templates_6_differential_translucent_2_heading_4','14'),(138441,4100,'_flexible_templates_6_differential_translucent_2_heading_4','field_62568a37727b7'),(138442,4100,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(138443,4100,'_flexible_templates_6_differential_translucent_2_column_4','field_62554d4f172df'),(138444,4100,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(138445,4100,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62555028a0e7c'),(138446,4100,'flexible_templates_6_differential_translucent_2_heading_5','15'),(138447,4100,'_flexible_templates_6_differential_translucent_2_heading_5','field_62568a40727b8'),(138448,4100,'flexible_templates_6_differential_translucent_2_column_5','Always'),(138449,4100,'_flexible_templates_6_differential_translucent_2_column_5','field_62555011a0e7b'),(138450,4100,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(138451,4100,'_flexible_templates_6_differential_translucent_2_column_5_color','field_6255503aa0e7d'),(138452,4100,'flexible_templates_6_differential_translucent_3_heading_1','16'),(138453,4100,'_flexible_templates_6_differential_translucent_3_heading_1','field_625689c138821'),(138454,4100,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(138455,4100,'_flexible_templates_6_differential_translucent_3_column_1','field_62554d45172dc'),(138456,4100,'flexible_templates_6_differential_translucent_3_heading_2','17'),(138457,4100,'_flexible_templates_6_differential_translucent_3_heading_2','field_62568a29727b5'),(138458,4100,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(138459,4100,'_flexible_templates_6_differential_translucent_3_column_2','field_62554d4a172dd'),(138460,4100,'flexible_templates_6_differential_translucent_3_column_2_color','#7080a7'),(138461,4100,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62554fcda0e79'),(138462,4100,'flexible_templates_6_differential_translucent_3_heading_3','18'),(138463,4100,'_flexible_templates_6_differential_translucent_3_heading_3','field_62568a30727b6'),(138464,4100,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(138465,4100,'_flexible_templates_6_differential_translucent_3_column_3','field_62554d4d172de'),(138466,4100,'flexible_templates_6_differential_translucent_3_column_3_color','#ff555f'),(138467,4100,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62554ff6a0e7a'),(138468,4100,'flexible_templates_6_differential_translucent_3_heading_4','19'),(138469,4100,'_flexible_templates_6_differential_translucent_3_heading_4','field_62568a37727b7'),(138470,4100,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(138471,4100,'_flexible_templates_6_differential_translucent_3_column_4','field_62554d4f172df'),(138472,4100,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(138473,4100,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62555028a0e7c'),(138474,4100,'flexible_templates_6_differential_translucent_3_heading_5','Working with Translucent'),(138475,4100,'_flexible_templates_6_differential_translucent_3_heading_5','field_62568a40727b8'),(138476,4100,'flexible_templates_6_differential_translucent_3_column_5','Always'),(138477,4100,'_flexible_templates_6_differential_translucent_3_column_5','field_62555011a0e7b'),(138478,4100,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(138479,4100,'_flexible_templates_6_differential_translucent_3_column_5_color','field_6255503aa0e7d'),(138480,4100,'flexible_templates_6_differential_translucent','4'),(138481,4100,'_flexible_templates_6_differential_translucent','field_62554c30172da'),(138482,4100,'flexible_templates_7_heading','Be smart. Be efficient. Be agile.'),(138483,4100,'_flexible_templates_7_heading','field_625565e14146d_field_6254fdb2efa27'),(138484,4100,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(138485,4100,'_flexible_templates_7_cta','field_625565fa4146e_field_62551b3e101c4'),(138663,4028,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(138664,4028,'_yoast_wpseo_title','Award Winning Cloud Native Solutions | Translucent'),(138665,4028,'_yoast_wpseo_metadesc','Our expert software engineering teams develop intelligent apps for fintech, healthcare, automotive, and any other data-driven journey. Award winning cloud native solutions.'),(138817,3990,'_pinterest_shares','0'),(138818,3990,'_total_shares','0'),(138820,3990,'_menu_sgpb_popup_id','0'),(138821,3991,'_pinterest_shares','0'),(138822,3991,'_total_shares','0'),(138824,3991,'_menu_sgpb_popup_id','0'),(138825,3992,'_pinterest_shares','0'),(138826,3992,'_total_shares','0'),(138828,3992,'_menu_sgpb_popup_id','0'),(138865,4103,'background','2613'),(138866,4103,'_background','field_6083613c01a24'),(138867,4103,'title','Your\r\n#1 Partner\r\nin Cloud\r\nNative\r\nDevOps'),(138868,4103,'_title','field_6083614f01a25'),(138869,4103,'items_0_item','Simplify your Cloud'),(138870,4103,'_items_0_item','field_608361a401a28'),(138871,4103,'items_1_item','Make your Cloud computing worry-free'),(138872,4103,'_items_1_item','field_608361a401a28'),(138873,4103,'items','2'),(138874,4103,'_items','field_6083618a01a27'),(138875,4103,'image','2599'),(138876,4103,'_image','field_6083616401a26'),(138877,4103,'trusted_by_logos','5'),(138878,4103,'_trusted_by_logos','field_60d931a311b0f'),(138879,4103,'steps_image','2543'),(138880,4103,'_steps_image','field_608361e101a2b'),(138881,4103,'steps_title','Our approach to Your Successful DevOps Implementation'),(138882,4103,'_steps_title','field_608361ee01a2c'),(138883,4103,'steps_text','Plan we partner with your people and objectives in mind\r\nMigrate what adds business value first\r\nManage your cloud native DevOps Journey with you\r\nAutomate saving on your resource cost and making you money\r\nOptimize continuously improve and develop for your future'),(138884,4103,'_steps_text','field_6083620201a2d'),(138885,4103,'people_background','2621'),(138886,4103,'_people_background','field_6083621801a2e'),(138887,4103,'people_title',' We Listen. We Learn. We Inform.'),(138888,4103,'_people_title','field_6083622601a2f'),(138889,4103,'people_text','Digital Transformation is not just about cloud native DevOps technology. It’s about…\r\nPeople, Business, Operations and Results. Oh and People! Did I say people?'),(138890,4103,'_people_text','field_6083623101a30'),(138891,4103,'kubernetes_partnership_title','Benefits of the Translucent DevOps Kubernetes Partnership\r\nSAVE TIME and SAVE MONEY'),(138892,4103,'_kubernetes_partnership_title','field_6083624901a31'),(138893,4103,'kubernetes_partnership_image_desktop','2907'),(138894,4103,'_kubernetes_partnership_image_desktop','field_6083626601a33'),(138895,4103,'kubernetes_partnership_images_mobile_0_image','2911'),(138896,4103,'_kubernetes_partnership_images_mobile_0_image','field_6083628a01a35'),(138897,4103,'kubernetes_partnership_images_mobile_1_image','2912'),(138898,4103,'_kubernetes_partnership_images_mobile_1_image','field_6083628a01a35'),(138899,4103,'kubernetes_partnership_images_mobile','2'),(138900,4103,'_kubernetes_partnership_images_mobile','field_6083627c01a34'),(138901,4103,'kubernetes_partnership_text','Reduce costs and improve operational efficiency through enhanced collaboration between your teams, increased platform and automation.'),(138902,4103,'_kubernetes_partnership_text','field_6083625901a32'),(138903,4103,'kubernetes_seal_title','Why choose Cloud Native Kubernetes Certified DevOps?'),(138904,4103,'_kubernetes_seal_title','field_608362a801a36'),(138905,4103,'kubernetes_seal_subtitle','71% of Fortune 100 companies use Kubernetes'),(138906,4103,'_kubernetes_seal_subtitle','field_608362c501a37'),(138907,4103,'kubernetes_seal_items_0_item','25%+ Faster to Market'),(138908,4103,'_kubernetes_seal_items_0_item','field_608362e601a39'),(138909,4103,'kubernetes_seal_items_1_item','Reliable and Secure'),(138910,4103,'_kubernetes_seal_items_1_item','field_608362e601a39'),(138911,4103,'kubernetes_seal_items_2_item','Privacy by Design'),(138912,4103,'_kubernetes_seal_items_2_item','field_608362e601a39'),(138913,4103,'kubernetes_seal_items_3_item','Automated Reporting for Your Entire Company'),(138914,4103,'_kubernetes_seal_items_3_item','field_608362e601a39'),(138915,4103,'kubernetes_seal_items_4_item','Kubernetes Connects You to all Major Clouds'),(138916,4103,'_kubernetes_seal_items_4_item','field_608362e601a39'),(138917,4103,'kubernetes_seal_items_5_item','35%+ Increase in Operational Efficiency'),(138918,4103,'_kubernetes_seal_items_5_item','field_608362e601a39'),(138919,4103,'kubernetes_seal_items_6_item','More Done with Less Resources'),(138920,4103,'_kubernetes_seal_items_6_item','field_608362e601a39'),(138921,4103,'kubernetes_seal_items','7'),(138922,4103,'_kubernetes_seal_items','field_608362db01a38'),(138923,4103,'kubernetes_seal_message','As a Certified Provider Translucent gets the Job Done Right!'),(138924,4103,'_kubernetes_seal_message','field_6083630501a3a'),(138925,4103,'kubernetes_seal_image','2600'),(138926,4103,'_kubernetes_seal_image','field_6083632101a3b'),(138927,4103,'black_background_phrase','As Your Cloud Native Kubernetes DevOps Partner, We are with You All the Way!'),(138928,4103,'_black_background_phrase','field_6083633201a3c'),(138929,4103,'testimonials_0_text','“Fantastic cloud native infrastructure built on Kubernetes supporting a great user experience application. Integrating banking, automotive, loan, mechanic, and customer workflow data making the complex almost seems like magic.” '),(138930,4103,'_testimonials_0_text','field_60d931a81ba7d'),(138931,4103,'testimonials_0_picture','3195'),(138932,4103,'_testimonials_0_picture','field_60d931a81bb40'),(138933,4103,'testimonials_0_name','Eric Kaplan'),(138934,4103,'_testimonials_0_name','field_60d931a81bbf2'),(138935,4103,'testimonials_0_role','GoToLoans.com (We have you covered)'),(138936,4103,'_testimonials_0_role','field_60d931a81bc35'),(138937,4103,'testimonials','9'),(138938,4103,'_testimonials','field_60d931a312092'),(138939,4103,'ceo_picture','2904'),(138940,4103,'_ceo_picture','field_608363a901a42'),(138941,4103,'ceo_picture_mobile','2905'),(138942,4103,'_ceo_picture_mobile','field_608363b701a43'),(138943,4103,'ceo_name','Robert Golabeck'),(138944,4103,'_ceo_name','field_608363cd01a44'),(138945,4103,'ceo_email','results@translucentcomputing.com'),(138946,4103,'_ceo_email','field_60d931a3121f6'),(138947,4103,'ceo_phone','1-888-828-0144 x 105'),(138948,4103,'_ceo_phone','field_60d931a31223d'),(138949,4103,'ceo_address','1 Yonge Street, Suite 1801\r\nToronto, Ontario\r\nM5E 1W7'),(138950,4103,'_ceo_address','field_60d931a312283'),(138951,4103,'footer_kubernetes_image','2579'),(138952,4103,'_footer_kubernetes_image','field_60d931a3122c3'),(138953,4103,'trusted_by_logos_0_logo','2713'),(138954,4103,'_trusted_by_logos_0_logo','field_60d931a425c8c'),(138955,4103,'trusted_by_logos_1_logo','2711'),(138956,4103,'_trusted_by_logos_1_logo','field_60d931a425c8c'),(138957,4103,'trusted_by_logos_2_logo','2712'),(138958,4103,'_trusted_by_logos_2_logo','field_60d931a425c8c'),(138959,4103,'trusted_by_logos_3_logo','2716'),(138960,4103,'_trusted_by_logos_3_logo','field_60d931a425c8c'),(138961,4103,'trusted_by_logos_4_logo','2714'),(138962,4103,'_trusted_by_logos_4_logo','field_60d931a425c8c'),(138963,4103,'testimonials_0_phrase',' “Almost seems like magic”'),(138964,4103,'_testimonials_0_phrase','field_61897cf2a836b'),(138965,4103,'testimonials_1_text','A lot of technology vendors claim to have expertise with these technologies, but those boasts aren’t always a reality. You need to hire great engineers that work well with clients, and that, in a nutshell, is what Translucent Computing has brought to Canadian Black Book.”'),(138966,4103,'_testimonials_1_text','field_60d931a81ba7d'),(138967,4103,'testimonials_1_picture','2711'),(138968,4103,'_testimonials_1_picture','field_60d931a81bb40'),(138969,4103,'testimonials_1_name','Mike Compton'),(138970,4103,'_testimonials_1_name','field_60d931a81bbf2'),(138971,4103,'testimonials_1_role','CTO, Canadian Black Book | A division of the Hearst Business Media Corporation ($11.5 billion revenues USD - 2021)'),(138972,4103,'_testimonials_1_role','field_60d931a81bc35'),(138973,4103,'testimonials_1_phrase','“Fortunate to find a technology partner of their caliber” '),(138974,4103,'_testimonials_1_phrase','field_61897cf2a836b'),(138975,4103,'testimonials_2_text','“Translucent’s understanding of the cloud native DevOps space and expertise in Kubernetes, through to data-driven applications, has proven extremely valuable to Volentix’s growth of our multi-currency cross-blockchain solution.”'),(138976,4103,'_testimonials_2_text','field_60d931a81ba7d'),(138977,4103,'testimonials_2_picture','3597'),(138978,4103,'_testimonials_2_picture','field_60d931a81bb40'),(138979,4103,'testimonials_2_name','Rhys Parry'),(138980,4103,'_testimonials_2_name','field_60d931a81bbf2'),(138981,4103,'testimonials_2_role','Volentix CTO'),(138982,4103,'_testimonials_2_role','field_60d931a81bc35'),(138983,4103,'testimonials_2_phrase','“Fits the fintech and financial services space”'),(138984,4103,'_testimonials_2_phrase','field_61897cf2a836b'),(138985,4103,'testimonials_3_text','“Translucent Computing…has dedicated professionals that can provide economical solutions for web-based needs, for both the private and public sector. They have worked with us for some 5 years, and they have shown themselves to be both very professional and helpful in developing and supporting our database.”'),(138986,4103,'_testimonials_3_text','field_60d931a81ba7d'),(138987,4103,'testimonials_3_picture','2716'),(138988,4103,'_testimonials_3_picture','field_60d931a81bb40'),(138989,4103,'testimonials_3_name','James Loukides'),(138990,4103,'_testimonials_3_name','field_60d931a81bbf2'),(138991,4103,'testimonials_3_role','The Michael and Amira Dan Brain Tumor Bank Network Manager | University of Toronto'),(138992,4103,'_testimonials_3_role','field_60d931a81bc35'),(138993,4103,'testimonials_3_phrase','“Economical solutions…very professional'),(138994,4103,'_testimonials_3_phrase','field_61897cf2a836b'),(138995,4103,'testimonials_4_text','GoTo Loans (GTL) has been awarded by the Canadian Lenders Association as Auto Lending Platform of the Year category for the “Leaders in Lending 2020” awards.  Translucent has been our fintech, financial services technology partner from the inception of GTL’s journey.'),(138996,4103,'_testimonials_4_text','field_60d931a81ba7d'),(138997,4103,'testimonials_4_picture','3195'),(138998,4103,'_testimonials_4_picture','field_60d931a81bb40'),(138999,4103,'testimonials_4_name','Eric Kaplan'),(139000,4103,'_testimonials_4_name','field_60d931a81bbf2'),(139001,4103,'testimonials_4_role','GoToLoans.com (We have you covered)'),(139002,4103,'_testimonials_4_role','field_60d931a81bc35'),(139003,4103,'testimonials_4_phrase','“Award winning… Fintech, Financial technology partner”'),(139004,4103,'_testimonials_4_phrase','field_61897cf2a836b'),(139005,4103,'testimonials_5_text','“A strong foundation using AWS Cloud, Terraform for infrastructure deployment, Kubernetes for cluster monitoring and scaling, Docker for app containerization, and a strong dose of DevOps to ensure the pipeline was automated.”'),(139006,4103,'_testimonials_5_text','field_60d931a81ba7d'),(139007,4103,'testimonials_5_picture','2711'),(139008,4103,'_testimonials_5_picture','field_60d931a81bb40'),(139009,4103,'testimonials_5_name','Mike Compton'),(139010,4103,'_testimonials_5_name','field_60d931a81bbf2'),(139011,4103,'testimonials_5_role','CTO, Canadian Black Book | A division of the Hearst Business Media Corporation ($11.5 billion revenues USD - 2021)'),(139012,4103,'_testimonials_5_role','field_60d931a81bc35'),(139013,4103,'testimonials_5_phrase','“Redeveloping the core mobile and web-based products.”'),(139014,4103,'_testimonials_5_phrase','field_61897cf2a836b'),(139015,4103,'testimonials_6_text','“I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise, but also the technological resources that could assist SickKids as we deal with the current pandemic.”'),(139016,4103,'_testimonials_6_text','field_60d931a81ba7d'),(139017,4103,'testimonials_6_picture','801'),(139018,4103,'_testimonials_6_picture','field_60d931a81bb40'),(139019,4103,'testimonials_6_name','Dr. Andrew James'),(139020,4103,'_testimonials_6_name','field_60d931a81bbf2'),(139021,4103,'testimonials_6_role','The Hospital for Sick Children | Associate Professor, Department of Pediatrics, University of Toronto'),(139022,4103,'_testimonials_6_role','field_60d931a81bc35'),(139023,4103,'testimonials_6_phrase','“Highly reliable and extremely valuable” '),(139024,4103,'_testimonials_6_phrase','field_61897cf2a836b'),(139025,4103,'testimonials_7_text','“Translucent is a strategic partner in the design and development of our technology platform. Their expertise, commitment and flexibility during the engagement helped us to build a solution that will improve patient scheduling for healthcare providers.”'),(139026,4103,'_testimonials_7_text','field_60d931a81ba7d'),(139027,4103,'testimonials_7_picture','3598'),(139028,4103,'_testimonials_7_picture','field_60d931a81bb40'),(139029,4103,'testimonials_7_name','Wayne Li'),(139030,4103,'_testimonials_7_name','field_60d931a81bbf2'),(139031,4103,'testimonials_7_role','CEO NextUp Care'),(139032,4103,'_testimonials_7_role','field_60d931a81bc35'),(139033,4103,'testimonials_7_phrase','“Strategic partner…for healthcare providers”'),(139034,4103,'_testimonials_7_phrase','field_61897cf2a836b'),(139035,4103,'testimonials_8_text','“Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security as it fits the fintech and financial services space has been invaluable.  I would use them again if I could.  In fact, I would use their team for everything if I could!\"'),(139036,4103,'_testimonials_8_text','field_60d931a81ba7d'),(139037,4103,'testimonials_8_picture','3597'),(139038,4103,'_testimonials_8_picture','field_60d931a81bb40'),(139039,4103,'testimonials_8_name','Rhys Parry'),(139040,4103,'_testimonials_8_name','field_60d931a81bbf2'),(139041,4103,'testimonials_8_role','Volentix CTO'),(139042,4103,'_testimonials_8_role','field_60d931a81bc35'),(139043,4103,'testimonials_8_phrase','“Use their team for everything”'),(139044,4103,'_testimonials_8_phrase','field_61897cf2a836b'),(139045,2526,'_pinterest_shares','0'),(139046,2526,'_total_shares','0'),(139136,4011,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(139137,4104,'flexible_templates','a:7:{i:0;s:16:\"tek_world_banner\";i:1;s:26:\"tek_world_scale_your_teams\";i:2;s:28:\"tek_world_stack_process_team\";i:3;s:20:\"tek_world_zero_trust\";i:4;s:21:\"tek_world_tek_success\";i:5;s:26:\"tek_world_translucent_blog\";i:6;s:17:\"lets_talk_section\";}'),(139138,4104,'_flexible_templates','field_6254f4d84ef9b'),(139139,4104,'flexible_templates_0_image','4014'),(139140,4104,'_flexible_templates_0_image','field_6257bb6127dce_field_6254fdc5efa2a'),(139141,4104,'flexible_templates_0_heading','Get award-winning results with our TEK Solutions '),(139142,4104,'_flexible_templates_0_heading','field_6257bb2027dcb_field_6254fdb2efa27'),(139143,4104,'flexible_templates_0_sub_heading','TEK™ WORLD'),(139144,4104,'_flexible_templates_0_sub_heading','field_6257bb3a27dcc_field_6254fdbaefa28'),(139145,4104,'flexible_templates_0_icon','4013'),(139146,4104,'_flexible_templates_0_icon','field_6257bb5127dcd_field_62550482480cb'),(139147,4104,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(139148,4104,'_flexible_templates_0_cta','field_6257bb7d27dcf_field_62551b3e101c4'),(139149,4104,'flexible_templates_1_heading',' Winning Results for Your Business. '),(139150,4104,'_flexible_templates_1_heading','field_6257bde945e43_field_6254fdb2efa27'),(139151,4104,'flexible_templates_1_sub_heading','Translucent Expert Knowledge:'),(139152,4104,'_flexible_templates_1_sub_heading','field_6257bdf945e44_field_6254fdbaefa28'); INSERT INTO `wp_postmeta` VALUES (139153,4104,'flexible_templates_1_copy','We provide industry-leading cloud native solutions that are backed by our award-winning process, teams, and production-ready data-driven platform. TEK World Solutions are our branded suite of cloud native products and services for all your business needs. Our TEK solutions will guide your project from ideation to steady state and beyond.'),(139154,4104,'_flexible_templates_1_copy','field_6257be1045e45_field_6254fdc0efa29'),(139155,4104,'flexible_templates_1_image','4016'),(139156,4104,'_flexible_templates_1_image','field_6257be2845e46_field_6254fdc5efa2a'),(139157,4104,'flexible_templates_2_stack_process_team_0_icon','4019'),(139158,4104,'_flexible_templates_2_stack_process_team_0_icon','field_6257c3a4705fa_field_62550482480cb'),(139159,4104,'flexible_templates_2_stack_process_team_0_heading','TEKStack'),(139160,4104,'_flexible_templates_2_stack_process_team_0_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(139161,4104,'flexible_templates_2_stack_process_team_0_copy_wysiwyg','TEKStack is our open source, production-ready, cloud-native, data-driven digital transformation pipeline for your company to compete in the digital age. With this range of technologies we have perfected the process of working with production ready tools to save time and money on your cloud applications and platforms.'),(139162,4104,'_flexible_templates_2_stack_process_team_0_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(139163,4104,'flexible_templates_2_stack_process_team_0_cta','a:3:{s:5:\"title\";s:26:\"Compete in the Digital Age\";s:3:\"url\";s:38:\"https://translucent.local/tekstack-ai/\";s:6:\"target\";s:0:\"\";}'),(139164,4104,'_flexible_templates_2_stack_process_team_0_cta','field_6257c421705fd_field_62551b3e101c4'),(139165,4104,'flexible_templates_2_stack_process_team_1_icon','4020'),(139166,4104,'_flexible_templates_2_stack_process_team_1_icon','field_6257c3a4705fa_field_62550482480cb'),(139167,4104,'flexible_templates_2_stack_process_team_1_heading','TEKProcess'),(139168,4104,'_flexible_templates_2_stack_process_team_1_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(139169,4104,'flexible_templates_2_stack_process_team_1_copy_wysiwyg','TEK Process makes it possible to easily organize the entire cloud native development process, from ideation and discovery, to production-ready solutions. We continuously invest in the R&D of our processes to help you stay ahead of the curve.  Improve ROI, grants, and investment opportunities with a process linked to user feedback.'),(139170,4104,'_flexible_templates_2_stack_process_team_1_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(139171,4104,'flexible_templates_2_stack_process_team_1_cta','a:3:{s:5:\"title\";s:25:\"Align your Business Goals\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(139172,4104,'_flexible_templates_2_stack_process_team_1_cta','field_6257c421705fd_field_62551b3e101c4'),(139173,4104,'flexible_templates_2_stack_process_team_2_icon','4021'),(139174,4104,'_flexible_templates_2_stack_process_team_2_icon','field_6257c3a4705fa_field_62550482480cb'),(139175,4104,'flexible_templates_2_stack_process_team_2_heading','TEKTeams'),(139176,4104,'_flexible_templates_2_stack_process_team_2_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(139177,4104,'flexible_templates_2_stack_process_team_2_copy_wysiwyg','Imagine your company without the burden of hiring developers, engineers, or keeping up with the latest technology. With TEK Teams, your organization will have the top 1% resources on demand, to scale as needed,  and in line with the growth of your cloud native application. You will finally be free to focus on what you do best—running your business. '),(139178,4104,'_flexible_templates_2_stack_process_team_2_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(139179,4104,'flexible_templates_2_stack_process_team_2_cta','a:3:{s:5:\"title\";s:16:\"Scale your Teams\";s:3:\"url\";s:35:\"https://translucent.local/tekteams/\";s:6:\"target\";s:0:\"\";}'),(139180,4104,'_flexible_templates_2_stack_process_team_2_cta','field_6257c421705fd_field_62551b3e101c4'),(139181,4104,'flexible_templates_2_stack_process_team','3'),(139182,4104,'_flexible_templates_2_stack_process_team','field_6257c35c705f9'),(139183,4104,'flexible_templates_3_heading','Secure multiple distributed sources'),(139184,4104,'_flexible_templates_3_heading','field_6257cf9016730_field_6254fdb2efa27'),(139185,4104,'flexible_templates_3_sub_heading','ZERO TRUST'),(139186,4104,'_flexible_templates_3_sub_heading','field_6257cf9d16731_field_6254fdbaefa28'),(139187,4104,'flexible_templates_3_copy','The Cloud is complex. Every minute, multiple breaches occur due to actors , hackers, malpractice, ignorance, or human error. \r\nIt is more critical than ever to always know what is happening with your systems and apps. Zero Trust security will help you remain secure as possible, to prevent security breaches by safeguarding what matters most: the trust of your customers\' and company\'s information. Cybersecurity is critical to protect the assets of your business 24hrs/day, 7days/week with self healing systems.'),(139188,4104,'_flexible_templates_3_copy','field_6257cfab16732_field_6254fdc0efa29'),(139189,4104,'flexible_templates_3_cta',''),(139190,4104,'_flexible_templates_3_cta','field_6257cfc216733_field_62551b3e101c4'),(139191,4104,'flexible_templates_3_image','4023'),(139192,4104,'_flexible_templates_3_image','field_6257d00f54444_field_6254fdc5efa2a'),(139193,4104,'flexible_templates_4_heading','The Hospital for Sick Children Case Study'),(139194,4104,'_flexible_templates_4_heading','field_6257e09378148_field_6254fdb2efa27'),(139195,4104,'flexible_templates_4_sub_heading','TEK in ACTION'),(139196,4104,'_flexible_templates_4_sub_heading','field_6257e0a878149_field_6254fdbaefa28'),(139197,4104,'flexible_templates_4_copy','Translucent has indexed, analysed and transformed half a billion records of Neonatal Intensive Care Unit data.\r\nProject Areas:\r\n\r\n● Microservices\r\n● DevOps\r\n● Machine Learning'),(139198,4104,'_flexible_templates_4_copy','field_6257e55e006ca_field_6254fdc0efa29'),(139199,4104,'flexible_templates_4_image','4026'),(139200,4104,'_flexible_templates_4_image','field_6257e0e87814a_field_6254fdc5efa2a'),(139201,4104,'flexible_templates_4_mob_image','4025'),(139202,4104,'_flexible_templates_4_mob_image','field_6257e1057814b_field_6254fdcbefa2b'),(139203,4104,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:15:\"Read Case Study\";s:3:\"url\";s:70:\"https://translucent.local/case-studies/the-hospital-for-sick-children/\";s:6:\"target\";s:0:\"\";}'),(139204,4104,'_flexible_templates_4_cta','field_6257e1367814c_field_62551b3e101c4'),(139205,4104,'flexible_templates_5_heading','Translucent Blog'),(139206,4104,'_flexible_templates_5_heading','field_6257e9c8b4ea7_field_6254fdb2efa27'),(139207,4104,'flexible_templates_5_sub_heading','STAY TUNED'),(139208,4104,'_flexible_templates_5_sub_heading','field_6257e9d9b4ea8_field_6254fdbaefa28'),(139209,4104,'flexible_templates_6_heading','We treat your business like our own'),(139210,4104,'_flexible_templates_6_heading','field_625565e14146d_field_6254fdb2efa27'),(139211,4104,'flexible_templates_6_cta','a:3:{s:5:\"title\";s:10:\"Let\'s talk\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(139212,4104,'_flexible_templates_6_cta','field_625565fa4146e_field_62551b3e101c4'),(139222,4105,'flexible_templates','a:8:{i:0;s:16:\"tek-teams-banner\";i:1;s:20:\"tek-teams-two-column\";i:2;s:14:\"tek-team-about\";i:3;s:21:\"tek-teams-development\";i:4;s:18:\"tek_teams_benifits\";i:5;s:17:\"tek-team-whats-is\";i:6;s:34:\"tek-teams-translucent-differential\";i:7;s:17:\"lets_talk_section\";}'),(139223,4105,'_flexible_templates','field_6254f4d84ef9b'),(139224,4105,'flexible_templates_0_image','4066'),(139225,4105,'_flexible_templates_0_image','field_6255038c2e6ae_field_6254fdc5efa2a'),(139226,4105,'flexible_templates_0_mob_image','4067'),(139227,4105,'_flexible_templates_0_mob_image','field_625503db2e6af_field_6254fdcbefa2b'),(139228,4105,'flexible_templates_0_icon','4068'),(139229,4105,'_flexible_templates_0_icon','field_6255095042ef2_field_62550482480cb'),(139230,4105,'flexible_templates_0_heading','TEKTeams'),(139231,4105,'_flexible_templates_0_heading','field_6255096442ef3_field_6254fdb2efa27'),(139232,4105,'flexible_templates_0_sub_heading','TEK™ WORLD'),(139233,4105,'_flexible_templates_0_sub_heading','field_6255097642ef4_field_6254fdbaefa28'),(139234,4105,'flexible_templates_1_heading','Gain access to top 1% tech talent with a trusted partner that delivers cloud native solutions and value.'),(139235,4105,'_flexible_templates_1_heading','field_62551ac3a6f96_field_6254fdb2efa27'),(139236,4105,'flexible_templates_1_sub_heading','THE TEAM YOU NEED'),(139237,4105,'_flexible_templates_1_sub_heading','field_62551ae4a6f97_field_6254fdbaefa28'),(139238,4105,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(139239,4105,'_flexible_templates_1_cta','field_62551b56a6f98_field_62551b3e101c4'),(139240,4105,'flexible_templates_1_copy','The best technology. The best people. Access tailored software engineering teams with industry-specific experience without the hassle of hiring and maintaining internal teams. We understand how hard it is to get and keep top talent. We take entire liability for delivery and execution of the project.'),(139241,4105,'_flexible_templates_1_copy','field_62551b74a6f99_field_6254fdc0efa29'),(139242,4105,'flexible_templates_2_image','4069'),(139243,4105,'_flexible_templates_2_image','field_625523de9609f_field_6254fdc5efa2a'),(139244,4105,'flexible_templates_2_mob_image','4070'),(139245,4105,'_flexible_templates_2_mob_image','field_625523f4960a0_field_6254fdcbefa2b'),(139246,4105,'flexible_templates_2_icon','4071'),(139247,4105,'_flexible_templates_2_icon','field_6255246d960a1_field_62550482480cb'),(139248,4105,'flexible_templates_2_heading','What are TEKTeams?'),(139249,4105,'_flexible_templates_2_heading','field_62552482960a2_field_6254fdb2efa27'),(139250,4105,'flexible_templates_2_copy','TEKTeams are Your Dedicated Development Team built on Translucent principals that, as part of the TEK ecosystem, combine trust, processes, people, and technology to deliver value.\r\n\r\nTranslucent has created a process that brings the best people in the industry with various skills to develop and maintain the highest quality software. A perfect combination of roles, talent, skillset, and the right work environment.\r\n\r\nTEKTeams provide the precise expertise your organization needs to execute a project successfully.'),(139251,4105,'_flexible_templates_2_copy','field_625525b15629c'),(139252,4105,'flexible_templates_2_content_right','Our onshore/nearshore model combines resources across the Americas to overcome challenges your project might encounter; we work closely alongside your company staff to attain your business goals. Increase the number of resources you have on hand to help you develop and manage intelligent applications and platforms.\r\n\r\nTEKTeams are the most cost-effective way to get the talent you need for your cloud native projects without taking up all of your time or budget.'),(139253,4105,'_flexible_templates_2_content_right','field_625525ba5629d'),(139254,4105,'flexible_templates_3_image','4072'),(139255,4105,'_flexible_templates_3_image','field_62552ada52711_field_6254fdc5efa2a'),(139256,4105,'flexible_templates_3_mob_image','4073'),(139257,4105,'_flexible_templates_3_mob_image','field_62552aed52712_field_6254fdcbefa2b'),(139258,4105,'flexible_templates_3_icon','4074'),(139259,4105,'_flexible_templates_3_icon','field_62552b7652713_field_62550482480cb'),(139260,4105,'flexible_templates_3_heading','Get started with the best resources for your project'),(139261,4105,'_flexible_templates_3_heading','field_62552baf52715_field_6254fdb2efa27'),(139262,4105,'flexible_templates_3_copy','TEKTeams are tailored software engineering teams to help your business develop and manage smarter apps. We match business goals to the right technology and teams to drive better results. With TEKTeams you get access to the best of the best resources for your cloud native projects at a price you can afford, with the capacity to scale as needed, according to your demands. Here is what to expect working with TEKTeams:'),(139263,4105,'_flexible_templates_3_copy','field_62552b8552714_field_6254fdc0efa29'),(139264,4105,'flexible_templates_3_development_team_steps_0_icon','4075'),(139265,4105,'_flexible_templates_3_development_team_steps_0_icon','field_62552cdb784a9_field_62550482480cb'),(139266,4105,'flexible_templates_3_development_team_steps_0_heading','A trusted tech partner'),(139267,4105,'_flexible_templates_3_development_team_steps_0_heading','field_62552ced784aa_field_6254fdb2efa27'),(139268,4105,'flexible_templates_3_development_team_steps_0_copy','

Increase your workforce by partnering with the top 1% teams tailored to your business needs

\r\n

We will explain and document the entire development process and make sure to meet business and project objectives

\r\n

Scale your teams as needed with a global network united as one

'),(139269,4105,'_flexible_templates_3_development_team_steps_0_copy','field_62552cfe784ab_field_6254fdc0efa29'),(139270,4105,'flexible_templates_3_development_team_steps_1_icon','4076'),(139271,4105,'_flexible_templates_3_development_team_steps_1_icon','field_62552cdb784a9_field_62550482480cb'),(139272,4105,'flexible_templates_3_development_team_steps_1_heading','Break down vision into requirements'),(139273,4105,'_flexible_templates_3_development_team_steps_1_heading','field_62552ced784aa_field_6254fdb2efa27'),(139274,4105,'flexible_templates_3_development_team_steps_1_copy','

We will validate your idea with a future vision that is in sync with the realities that your business is currently facing

\r\n

Cloud native solutions make it possible to work within clients\' budgets

\r\n

Planning, execution, support, best practices, and experience in breaking down the concept into a user stories tech road map

'),(139275,4105,'_flexible_templates_3_development_team_steps_1_copy','field_62552cfe784ab_field_6254fdc0efa29'),(139276,4105,'flexible_templates_3_development_team_steps_2_icon','4077'),(139277,4105,'_flexible_templates_3_development_team_steps_2_icon','field_62552cdb784a9_field_62550482480cb'),(139278,4105,'flexible_templates_3_development_team_steps_2_heading','Build your team and start innovating'),(139279,4105,'_flexible_templates_3_development_team_steps_2_heading','field_62552ced784aa_field_6254fdb2efa27'),(139280,4105,'flexible_templates_3_development_team_steps_2_copy',' The Team You Need For Your Cloud Native Project:\r\n

Expanding your workforce is easier than you think, with TEKTeams, you can quickly and affordably grow your company with teams to cover all of your business needs

\r\n

With the right team behind your project, you\'ll get better results, more quickly

\r\n\r\n'),(139281,4105,'_flexible_templates_3_development_team_steps_2_copy','field_62552cfe784ab_field_6254fdc0efa29'),(139282,4105,'flexible_templates_3_development_team_steps','3'),(139283,4105,'_flexible_templates_3_development_team_steps','field_62552cbb784a8'),(139284,4105,'flexible_templates_3_cta','a:3:{s:5:\"title\";s:11:\"Gain Access\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(139285,4105,'_flexible_templates_3_cta','field_62552c6a784a7_field_62551b3e101c4'),(139286,4105,'flexible_templates_4_image','4078'),(139287,4105,'_flexible_templates_4_image','field_625538ef16bb0_field_6254fdc5efa2a'),(139288,4105,'flexible_templates_4_mob_image','4079'),(139289,4105,'_flexible_templates_4_mob_image','field_6255391616bb1_field_6254fdcbefa2b'),(139290,4105,'flexible_templates_4_icon','4080'),(139291,4105,'_flexible_templates_4_icon','field_62553d28bca93_field_62550482480cb'),(139292,4105,'flexible_templates_4_heading','Benefits of TEKTeams'),(139293,4105,'_flexible_templates_4_heading','field_6255397e16bb2_field_6254fdb2efa27'),(139294,4105,'flexible_templates_4_development_team_steps_0_icon','4086'),(139295,4105,'_flexible_templates_4_development_team_steps_0_icon','field_625539a816bb4_field_62550482480cb'),(139296,4105,'flexible_templates_4_development_team_steps_0_heading','Fully Managed'),(139297,4105,'_flexible_templates_4_development_team_steps_0_heading','field_625539a816bb5_field_6254fdb2efa27'),(139298,4105,'flexible_templates_4_development_team_steps_0_copy','Translucent is responsible for hiring, managing, and delivering technical expertise from start to finish. Avoid hiring and team management issues.'),(139299,4105,'_flexible_templates_4_development_team_steps_0_copy','field_625539a816bb6_field_6254fdc0efa29'),(139300,4105,'flexible_templates_4_development_team_steps_1_icon','4085'),(139301,4105,'_flexible_templates_4_development_team_steps_1_icon','field_625539a816bb4_field_62550482480cb'),(139302,4105,'flexible_templates_4_development_team_steps_1_heading','Remote'),(139303,4105,'_flexible_templates_4_development_team_steps_1_heading','field_625539a816bb5_field_6254fdb2efa27'),(139304,4105,'flexible_templates_4_development_team_steps_1_copy','All Remote, save office space, and gain time for your employees. Over the last 12 years, we have perfected a remote software development system called TEKProcess.'),(139305,4105,'_flexible_templates_4_development_team_steps_1_copy','field_625539a816bb6_field_6254fdc0efa29'),(139306,4105,'flexible_templates_4_development_team_steps_2_icon','4084'),(139307,4105,'_flexible_templates_4_development_team_steps_2_icon','field_625539a816bb4_field_62550482480cb'),(139308,4105,'flexible_templates_4_development_team_steps_2_heading','Access To Translucent Experts'),(139309,4105,'_flexible_templates_4_development_team_steps_2_heading','field_625539a816bb5_field_6254fdb2efa27'),(139310,4105,'flexible_templates_4_development_team_steps_2_copy','Part of working with TEKTeams is access to our software architects and tech leads at no extra cost.'),(139311,4105,'_flexible_templates_4_development_team_steps_2_copy','field_625539a816bb6_field_6254fdc0efa29'),(139312,4105,'flexible_templates_4_development_team_steps_3_icon','4083'),(139313,4105,'_flexible_templates_4_development_team_steps_3_icon','field_625539a816bb4_field_62550482480cb'),(139314,4105,'flexible_templates_4_development_team_steps_3_heading','Access to Top Tech Talent'),(139315,4105,'_flexible_templates_4_development_team_steps_3_heading','field_625539a816bb5_field_6254fdb2efa27'),(139316,4105,'flexible_templates_4_development_team_steps_3_copy','Our proven hiring and continuous employee improvement processes ensure that only top talent works on each project.'),(139317,4105,'_flexible_templates_4_development_team_steps_3_copy','field_625539a816bb6_field_6254fdc0efa29'),(139318,4105,'flexible_templates_4_development_team_steps_4_icon','4082'),(139319,4105,'_flexible_templates_4_development_team_steps_4_icon','field_625539a816bb4_field_62550482480cb'),(139320,4105,'flexible_templates_4_development_team_steps_4_heading','Team Scalability'),(139321,4105,'_flexible_templates_4_development_team_steps_4_heading','field_625539a816bb5_field_6254fdb2efa27'),(139322,4105,'flexible_templates_4_development_team_steps_4_copy','On-demand resources are ready when you need to scale the team to meet business demands.'),(139323,4105,'_flexible_templates_4_development_team_steps_4_copy','field_625539a816bb6_field_6254fdc0efa29'),(139324,4105,'flexible_templates_4_development_team_steps_5_icon','4081'),(139325,4105,'_flexible_templates_4_development_team_steps_5_icon','field_625539a816bb4_field_62550482480cb'),(139326,4105,'flexible_templates_4_development_team_steps_5_heading','Start Your Journey Now'),(139327,4105,'_flexible_templates_4_development_team_steps_5_heading','field_625539a816bb5_field_6254fdb2efa27'),(139328,4105,'flexible_templates_4_development_team_steps_5_copy','Our TEKTeams are ready to help you now.'),(139329,4105,'_flexible_templates_4_development_team_steps_5_copy','field_625539a816bb6_field_6254fdc0efa29'),(139330,4105,'flexible_templates_4_development_team_steps','6'),(139331,4105,'_flexible_templates_4_development_team_steps','field_625539a816bb3'),(139332,4105,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:13:\"Start Scaling\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(139333,4105,'_flexible_templates_4_cta','field_625539ce16bb7_field_62551b3e101c4'),(139334,4105,'flexible_templates_5_image','4087'),(139335,4105,'_flexible_templates_5_image','field_62553e7d5dd54_field_6254fdc5efa2a'),(139336,4105,'flexible_templates_5_mob_image','4088'),(139337,4105,'_flexible_templates_5_mob_image','field_62553eab5dd55_field_6254fdcbefa2b'),(139338,4105,'flexible_templates_5_icon','4089'),(139339,4105,'_flexible_templates_5_icon','field_62553eee5dd56_field_62550482480cb'),(139340,4105,'flexible_templates_5_heading','The Team You Need For Your Cloud Native Project'),(139341,4105,'_flexible_templates_5_heading','field_62553f075dd57_field_6254fdb2efa27'),(139342,4105,'flexible_templates_5_heading_mobile','The Team You Need For Your Cloud Native Project'),(139343,4105,'_flexible_templates_5_heading_mobile','field_62553f185dd58'),(139344,4105,'flexible_templates_5_copy','We help companies build and scale smart applications, working together to achieve the best results by pairing them with our award-winning team of experts. That includes project managers, senior developers, and QA specialists who have been handpicked to execute on specific goals.'),(139345,4105,'_flexible_templates_5_copy','field_62553f315dd59_field_6254fdc0efa29'),(139346,4105,'flexible_templates_5_development_team_steps_0_icon','4090'),(139347,4105,'_flexible_templates_5_development_team_steps_0_icon','field_625540b262816_field_62550482480cb'),(139348,4105,'flexible_templates_5_development_team_steps_0_heading','Frontend engineers'),(139349,4105,'_flexible_templates_5_development_team_steps_0_heading','field_625540b262817_field_6254fdb2efa27'),(139350,4105,'flexible_templates_5_development_team_steps_0_copy','Responsible for developing the \"visible\" part of the project, these professionals are the ones who code and test user interface elements and functionality.'),(139351,4105,'_flexible_templates_5_development_team_steps_0_copy','field_625540b262818_field_6254fdc0efa29'),(139352,4105,'flexible_templates_5_development_team_steps_1_icon','4091'),(139353,4105,'_flexible_templates_5_development_team_steps_1_icon','field_625540b262816_field_62550482480cb'),(139354,4105,'flexible_templates_5_development_team_steps_1_heading','QA engineers'),(139355,4105,'_flexible_templates_5_development_team_steps_1_heading','field_625540b262817_field_6254fdb2efa27'),(139356,4105,'flexible_templates_5_development_team_steps_1_copy','These professionals are in charge of the quality of the entire development life cycle. They don\'t just ensure that the product is as bug-free as possible but also that the processes used to build it have optimal quality.'),(139357,4105,'_flexible_templates_5_development_team_steps_1_copy','field_625540b262818_field_6254fdc0efa29'),(139358,4105,'flexible_templates_5_development_team_steps_2_icon','4092'),(139359,4105,'_flexible_templates_5_development_team_steps_2_icon','field_625540b262816_field_62550482480cb'),(139360,4105,'flexible_templates_5_development_team_steps_2_heading','Business analysts'),(139361,4105,'_flexible_templates_5_development_team_steps_2_heading','field_625540b262817_field_6254fdb2efa27'),(139362,4105,'flexible_templates_5_development_team_steps_2_copy','They serve as bridges between the IT team and the business, evaluating processes, determining requirements, and offering suggestions and reports to executives.'),(139363,4105,'_flexible_templates_5_development_team_steps_2_copy','field_625540b262818_field_6254fdc0efa29'),(139364,4105,'flexible_templates_5_development_team_steps_3_icon','4093'),(139365,4105,'_flexible_templates_5_development_team_steps_3_icon','field_625540b262816_field_62550482480cb'),(139366,4105,'flexible_templates_5_development_team_steps_3_heading','Backend engineers'),(139367,4105,'_flexible_templates_5_development_team_steps_3_heading','field_625540b262817_field_6254fdb2efa27'),(139368,4105,'flexible_templates_5_development_team_steps_3_copy','They serve as bridges between the IT team and the business, evaluating processes, determining requirements, and offering suggestions and reports to executives.'),(139369,4105,'_flexible_templates_5_development_team_steps_3_copy','field_625540b262818_field_6254fdc0efa29'),(139370,4105,'flexible_templates_5_development_team_steps_4_icon','4094'),(139371,4105,'_flexible_templates_5_development_team_steps_4_icon','field_625540b262816_field_62550482480cb'),(139372,4105,'flexible_templates_5_development_team_steps_4_heading','UX/UI designers'),(139373,4105,'_flexible_templates_5_development_team_steps_4_heading','field_625540b262817_field_6254fdb2efa27'),(139374,4105,'flexible_templates_5_development_team_steps_4_copy','They are responsible for ensuring that the user experience is intuitive, simple, and engaging.'),(139375,4105,'_flexible_templates_5_development_team_steps_4_copy','field_625540b262818_field_6254fdc0efa29'),(139376,4105,'flexible_templates_5_development_team_steps_5_icon','4095'),(139377,4105,'_flexible_templates_5_development_team_steps_5_icon','field_625540b262816_field_62550482480cb'),(139378,4105,'flexible_templates_5_development_team_steps_5_heading','Product Owners'),(139379,4105,'_flexible_templates_5_development_team_steps_5_heading','field_625540b262817_field_6254fdb2efa27'),(139380,4105,'flexible_templates_5_development_team_steps_5_copy','The leaders of the development team, they initiate, plan, design, execute, and monitor the entire development process.'),(139381,4105,'_flexible_templates_5_development_team_steps_5_copy','field_625540b262818_field_6254fdc0efa29'),(139382,4105,'flexible_templates_5_development_team_steps_6_icon','4096'),(139383,4105,'_flexible_templates_5_development_team_steps_6_icon','field_625540b262816_field_62550482480cb'),(139384,4105,'flexible_templates_5_development_team_steps_6_heading','Data/ML engineers'),(139385,4105,'_flexible_templates_5_development_team_steps_6_heading','field_625540b262817_field_6254fdb2efa27'),(139386,4105,'flexible_templates_5_development_team_steps_6_copy','The leaders of the development team, they initiate, plan, design, execute, and monitor the entire development process.'),(139387,4105,'_flexible_templates_5_development_team_steps_6_copy','field_625540b262818_field_6254fdc0efa29'),(139388,4105,'flexible_templates_5_development_team_steps_7_icon','4097'),(139389,4105,'_flexible_templates_5_development_team_steps_7_icon','field_625540b262816_field_62550482480cb'),(139390,4105,'flexible_templates_5_development_team_steps_7_heading','SRE/DevOps engineers'),(139391,4105,'_flexible_templates_5_development_team_steps_7_heading','field_625540b262817_field_6254fdb2efa27'),(139392,4105,'flexible_templates_5_development_team_steps_7_copy','Professionals that work with the developers on the team to better coordinate development, operations, and testing efforts.'),(139393,4105,'_flexible_templates_5_development_team_steps_7_copy','field_625540b262818_field_6254fdc0efa29'),(139394,4105,'flexible_templates_5_development_team_steps_8_icon','4098'),(139395,4105,'_flexible_templates_5_development_team_steps_8_icon','field_625540b262816_field_62550482480cb'),(139396,4105,'flexible_templates_5_development_team_steps_8_heading','Scrum Masters'),(139397,4105,'_flexible_templates_5_development_team_steps_8_heading','field_625540b262817_field_6254fdb2efa27'),(139398,4105,'flexible_templates_5_development_team_steps_8_copy','The leaders of the development team, they initiate, plan, design, execute, and monitor the entire development process.'),(139399,4105,'_flexible_templates_5_development_team_steps_8_copy','field_625540b262818_field_6254fdc0efa29'),(139400,4105,'flexible_templates_5_development_team_steps','9'),(139401,4105,'_flexible_templates_5_development_team_steps','field_625540b262815'),(139402,4105,'flexible_templates_5_cta','a:3:{s:5:\"title\";s:15:\"Build Your Team\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(139403,4105,'_flexible_templates_5_cta','field_6255410462819_field_62551b3e101c4'),(139404,4105,'flexible_templates_6_heading','A better chance at success with TEKTeams'),(139405,4105,'_flexible_templates_6_heading','field_62554b91172d7_field_6254fdb2efa27'),(139406,4105,'flexible_templates_6_sub_heading','Dev Shop vs Offshore vs In-house vs TEKTeams'),(139407,4105,'_flexible_templates_6_sub_heading','field_62554ba5172d8_field_6254fdbaefa28'),(139408,4105,'flexible_templates_6_icon','4099'),(139409,4105,'_flexible_templates_6_icon','field_62554d69172e1_field_62550482480cb'),(139410,4105,'flexible_templates_6_differential_translucent_header_0_heading','Your needs'),(139411,4105,'_flexible_templates_6_differential_translucent_header_0_heading','field_625688668727a'),(139412,4105,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(139413,4105,'_flexible_templates_6_differential_translucent_header_0_color','field_62568e42de80b'),(139414,4105,'flexible_templates_6_differential_translucent_header_1_heading','Working with a dev shop'),(139415,4105,'_flexible_templates_6_differential_translucent_header_1_heading','field_625688668727a'),(139416,4105,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(139417,4105,'_flexible_templates_6_differential_translucent_header_1_color','field_62568e42de80b'),(139418,4105,'flexible_templates_6_differential_translucent_header_2_heading','Working with offshore teams'),(139419,4105,'_flexible_templates_6_differential_translucent_header_2_heading','field_625688668727a'),(139420,4105,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(139421,4105,'_flexible_templates_6_differential_translucent_header_2_color','field_62568e42de80b'),(139422,4105,'flexible_templates_6_differential_translucent_header_3_heading','Hiring in-house developers'),(139423,4105,'_flexible_templates_6_differential_translucent_header_3_heading','field_625688668727a'),(139424,4105,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(139425,4105,'_flexible_templates_6_differential_translucent_header_3_color','field_62568e42de80b'),(139426,4105,'flexible_templates_6_differential_translucent_header_4_heading','TEKTEAMS'),(139427,4105,'_flexible_templates_6_differential_translucent_header_4_heading','field_625688668727a'),(139428,4105,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(139429,4105,'_flexible_templates_6_differential_translucent_header_4_color','field_62568e42de80b'),(139430,4105,'flexible_templates_6_differential_translucent_header','5'),(139431,4105,'_flexible_templates_6_differential_translucent_header','field_6256884687279'),(139432,4105,'flexible_templates_6_differential_translucent_0_heading_1','1'),(139433,4105,'_flexible_templates_6_differential_translucent_0_heading_1','field_625689c138821'),(139434,4105,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(139435,4105,'_flexible_templates_6_differential_translucent_0_column_1','field_62554d45172dc'),(139436,4105,'flexible_templates_6_differential_translucent_0_heading_2','Working with a Dev Shop'),(139437,4105,'_flexible_templates_6_differential_translucent_0_heading_2','field_62568a29727b5'),(139438,4105,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(139439,4105,'_flexible_templates_6_differential_translucent_0_column_2','field_62554d4a172dd'),(139440,4105,'flexible_templates_6_differential_translucent_0_column_2_color','#7080a7'),(139441,4105,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62554fcda0e79'),(139442,4105,'flexible_templates_6_differential_translucent_0_heading_3','3'),(139443,4105,'_flexible_templates_6_differential_translucent_0_heading_3','field_62568a30727b6'),(139444,4105,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(139445,4105,'_flexible_templates_6_differential_translucent_0_column_3','field_62554d4d172de'),(139446,4105,'flexible_templates_6_differential_translucent_0_column_3_color','#ff555f'),(139447,4105,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62554ff6a0e7a'),(139448,4105,'flexible_templates_6_differential_translucent_0_heading_4','4'),(139449,4105,'_flexible_templates_6_differential_translucent_0_heading_4','field_62568a37727b7'),(139450,4105,'flexible_templates_6_differential_translucent_0_column_4','Always'),(139451,4105,'_flexible_templates_6_differential_translucent_0_column_4','field_62554d4f172df'),(139452,4105,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(139453,4105,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62555028a0e7c'),(139454,4105,'flexible_templates_6_differential_translucent_0_heading_5','5'),(139455,4105,'_flexible_templates_6_differential_translucent_0_heading_5','field_62568a40727b8'),(139456,4105,'flexible_templates_6_differential_translucent_0_column_5','Always'),(139457,4105,'_flexible_templates_6_differential_translucent_0_column_5','field_62555011a0e7b'),(139458,4105,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(139459,4105,'_flexible_templates_6_differential_translucent_0_column_5_color','field_6255503aa0e7d'),(139460,4105,'flexible_templates_6_differential_translucent_1_heading_1','6'),(139461,4105,'_flexible_templates_6_differential_translucent_1_heading_1','field_625689c138821'),(139462,4105,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (Speed to market)'),(139463,4105,'_flexible_templates_6_differential_translucent_1_column_1','field_62554d45172dc'),(139464,4105,'flexible_templates_6_differential_translucent_1_heading_2','7'),(139465,4105,'_flexible_templates_6_differential_translucent_1_heading_2','field_62568a29727b5'),(139466,4105,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(139467,4105,'_flexible_templates_6_differential_translucent_1_column_2','field_62554d4a172dd'),(139468,4105,'flexible_templates_6_differential_translucent_1_column_2_color','#ff555f'),(139469,4105,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62554fcda0e79'),(139470,4105,'flexible_templates_6_differential_translucent_1_heading_3','8'),(139471,4105,'_flexible_templates_6_differential_translucent_1_heading_3','field_62568a30727b6'),(139472,4105,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(139473,4105,'_flexible_templates_6_differential_translucent_1_column_3','field_62554d4d172de'),(139474,4105,'flexible_templates_6_differential_translucent_1_column_3_color','#7080a7'),(139475,4105,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62554ff6a0e7a'),(139476,4105,'flexible_templates_6_differential_translucent_1_heading_4','9'),(139477,4105,'_flexible_templates_6_differential_translucent_1_heading_4','field_62568a37727b7'),(139478,4105,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(139479,4105,'_flexible_templates_6_differential_translucent_1_column_4','field_62554d4f172df'),(139480,4105,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(139481,4105,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62555028a0e7c'),(139482,4105,'flexible_templates_6_differential_translucent_1_heading_5','10'),(139483,4105,'_flexible_templates_6_differential_translucent_1_heading_5','field_62568a40727b8'),(139484,4105,'flexible_templates_6_differential_translucent_1_column_5','Always'),(139485,4105,'_flexible_templates_6_differential_translucent_1_column_5','field_62555011a0e7b'),(139486,4105,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(139487,4105,'_flexible_templates_6_differential_translucent_1_column_5_color','field_6255503aa0e7d'),(139488,4105,'flexible_templates_6_differential_translucent_2_heading_1','11'),(139489,4105,'_flexible_templates_6_differential_translucent_2_heading_1','field_625689c138821'),(139490,4105,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(139491,4105,'_flexible_templates_6_differential_translucent_2_column_1','field_62554d45172dc'),(139492,4105,'flexible_templates_6_differential_translucent_2_heading_2','12'),(139493,4105,'_flexible_templates_6_differential_translucent_2_heading_2','field_62568a29727b5'),(139494,4105,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(139495,4105,'_flexible_templates_6_differential_translucent_2_column_2','field_62554d4a172dd'),(139496,4105,'flexible_templates_6_differential_translucent_2_column_2_color','#7080a7'),(139497,4105,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62554fcda0e79'),(139498,4105,'flexible_templates_6_differential_translucent_2_heading_3','13'),(139499,4105,'_flexible_templates_6_differential_translucent_2_heading_3','field_62568a30727b6'),(139500,4105,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(139501,4105,'_flexible_templates_6_differential_translucent_2_column_3','field_62554d4d172de'),(139502,4105,'flexible_templates_6_differential_translucent_2_column_3_color','#ff555f'),(139503,4105,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62554ff6a0e7a'),(139504,4105,'flexible_templates_6_differential_translucent_2_heading_4','14'),(139505,4105,'_flexible_templates_6_differential_translucent_2_heading_4','field_62568a37727b7'),(139506,4105,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(139507,4105,'_flexible_templates_6_differential_translucent_2_column_4','field_62554d4f172df'),(139508,4105,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(139509,4105,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62555028a0e7c'),(139510,4105,'flexible_templates_6_differential_translucent_2_heading_5','15'),(139511,4105,'_flexible_templates_6_differential_translucent_2_heading_5','field_62568a40727b8'),(139512,4105,'flexible_templates_6_differential_translucent_2_column_5','Always'),(139513,4105,'_flexible_templates_6_differential_translucent_2_column_5','field_62555011a0e7b'),(139514,4105,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(139515,4105,'_flexible_templates_6_differential_translucent_2_column_5_color','field_6255503aa0e7d'),(139516,4105,'flexible_templates_6_differential_translucent_3_heading_1','16'),(139517,4105,'_flexible_templates_6_differential_translucent_3_heading_1','field_625689c138821'),(139518,4105,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(139519,4105,'_flexible_templates_6_differential_translucent_3_column_1','field_62554d45172dc'),(139520,4105,'flexible_templates_6_differential_translucent_3_heading_2','17'),(139521,4105,'_flexible_templates_6_differential_translucent_3_heading_2','field_62568a29727b5'),(139522,4105,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(139523,4105,'_flexible_templates_6_differential_translucent_3_column_2','field_62554d4a172dd'),(139524,4105,'flexible_templates_6_differential_translucent_3_column_2_color','#7080a7'),(139525,4105,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62554fcda0e79'),(139526,4105,'flexible_templates_6_differential_translucent_3_heading_3','18'),(139527,4105,'_flexible_templates_6_differential_translucent_3_heading_3','field_62568a30727b6'),(139528,4105,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(139529,4105,'_flexible_templates_6_differential_translucent_3_column_3','field_62554d4d172de'),(139530,4105,'flexible_templates_6_differential_translucent_3_column_3_color','#ff555f'),(139531,4105,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62554ff6a0e7a'),(139532,4105,'flexible_templates_6_differential_translucent_3_heading_4','19'),(139533,4105,'_flexible_templates_6_differential_translucent_3_heading_4','field_62568a37727b7'),(139534,4105,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(139535,4105,'_flexible_templates_6_differential_translucent_3_column_4','field_62554d4f172df'),(139536,4105,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(139537,4105,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62555028a0e7c'),(139538,4105,'flexible_templates_6_differential_translucent_3_heading_5','Working with Translucent'),(139539,4105,'_flexible_templates_6_differential_translucent_3_heading_5','field_62568a40727b8'),(139540,4105,'flexible_templates_6_differential_translucent_3_column_5','Always'),(139541,4105,'_flexible_templates_6_differential_translucent_3_column_5','field_62555011a0e7b'),(139542,4105,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(139543,4105,'_flexible_templates_6_differential_translucent_3_column_5_color','field_6255503aa0e7d'),(139544,4105,'flexible_templates_6_differential_translucent','4'),(139545,4105,'_flexible_templates_6_differential_translucent','field_62554c30172da'),(139546,4105,'flexible_templates_7_heading','Be smart. Be efficient. Be agile.'),(139547,4105,'_flexible_templates_7_heading','field_625565e14146d_field_6254fdb2efa27'),(139548,4105,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(139549,4105,'_flexible_templates_7_cta','field_625565fa4146e_field_62551b3e101c4'),(139562,4106,'flexible_templates_0_image','4014'),(139563,4106,'_flexible_templates_0_image','field_6257bb6127dce_field_6254fdc5efa2a'),(139564,4106,'flexible_templates_0_heading','Get award-winning results with our TEK Solutions '),(139565,4106,'_flexible_templates_0_heading','field_6257bb2027dcb_field_6254fdb2efa27'),(139566,4106,'flexible_templates_0_sub_heading','TEK™ WORLD'),(139567,4106,'_flexible_templates_0_sub_heading','field_6257bb3a27dcc_field_6254fdbaefa28'),(139568,4106,'flexible_templates_0_icon','4013'),(139569,4106,'_flexible_templates_0_icon','field_6257bb5127dcd_field_62550482480cb'),(139570,4106,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(139571,4106,'_flexible_templates_0_cta','field_6257bb7d27dcf_field_62551b3e101c4'),(139572,4106,'flexible_templates_1_heading',' Winning Results for Your Business. '),(139573,4106,'_flexible_templates_1_heading','field_6257bde945e43_field_6254fdb2efa27'),(139574,4106,'flexible_templates_1_sub_heading','Translucent Expert Knowledge:'),(139575,4106,'_flexible_templates_1_sub_heading','field_6257bdf945e44_field_6254fdbaefa28'),(139576,4106,'flexible_templates_1_copy','We provide industry-leading cloud native solutions that are backed by our award-winning process, teams, and production-ready data-driven platform. TEK World Solutions are our branded suite of cloud native products and services for all your business needs. Translucent Expert Knowledge will guide your project from ideation to steady state and beyond.'),(139577,4106,'_flexible_templates_1_copy','field_6257be1045e45_field_6254fdc0efa29'),(139578,4106,'flexible_templates_1_image','4016'),(139579,4106,'_flexible_templates_1_image','field_6257be2845e46_field_6254fdc5efa2a'),(139580,4106,'flexible_templates_2_stack_process_team_0_icon','4019'),(139581,4106,'_flexible_templates_2_stack_process_team_0_icon','field_6257c3a4705fa_field_62550482480cb'),(139582,4106,'flexible_templates_2_stack_process_team_0_heading','TEKStack'),(139583,4106,'_flexible_templates_2_stack_process_team_0_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(139584,4106,'flexible_templates_2_stack_process_team_0_copy_wysiwyg','TEKStack is our open source, production-ready, cloud-native, data-driven digital transformation pipeline for your company to compete in the digital age. With this range of technologies we have perfected the process of working with production ready tools to save time and money on your cloud applications and platforms.'),(139585,4106,'_flexible_templates_2_stack_process_team_0_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(139586,4106,'flexible_templates_2_stack_process_team_0_cta','a:3:{s:5:\"title\";s:26:\"Compete in the Digital Age\";s:3:\"url\";s:38:\"https://translucent.local/tekstack-ai/\";s:6:\"target\";s:0:\"\";}'),(139587,4106,'_flexible_templates_2_stack_process_team_0_cta','field_6257c421705fd_field_62551b3e101c4'),(139588,4106,'flexible_templates_2_stack_process_team_1_icon','4020'),(139589,4106,'_flexible_templates_2_stack_process_team_1_icon','field_6257c3a4705fa_field_62550482480cb'),(139590,4106,'flexible_templates_2_stack_process_team_1_heading','TEKProcess'),(139591,4106,'_flexible_templates_2_stack_process_team_1_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(139592,4106,'flexible_templates_2_stack_process_team_1_copy_wysiwyg','TEK Process makes it possible to easily organize the entire cloud native development process, from ideation and discovery, to production-ready solutions. We continuously invest in the R&D of our processes to help you stay ahead of the curve.  Improve ROI, grants, and investment opportunities with a process linked to user feedback.'),(139593,4106,'_flexible_templates_2_stack_process_team_1_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(139594,4106,'flexible_templates_2_stack_process_team_1_cta','a:3:{s:5:\"title\";s:25:\"Align your Business Goals\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(139595,4106,'_flexible_templates_2_stack_process_team_1_cta','field_6257c421705fd_field_62551b3e101c4'),(139596,4106,'flexible_templates_2_stack_process_team_2_icon','4021'),(139597,4106,'_flexible_templates_2_stack_process_team_2_icon','field_6257c3a4705fa_field_62550482480cb'),(139598,4106,'flexible_templates_2_stack_process_team_2_heading','TEKTeams'),(139599,4106,'_flexible_templates_2_stack_process_team_2_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(139600,4106,'flexible_templates_2_stack_process_team_2_copy_wysiwyg','Imagine your company without the burden of hiring developers, engineers, or keeping up with the latest technology. With TEK Teams, your organization will have the top 1% resources on demand, to scale as needed,  and in line with the growth of your cloud native application. You will finally be free to focus on what you do best—running your business. '),(139601,4106,'_flexible_templates_2_stack_process_team_2_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(139602,4106,'flexible_templates_2_stack_process_team_2_cta','a:3:{s:5:\"title\";s:16:\"Scale your Teams\";s:3:\"url\";s:35:\"https://translucent.local/tekteams/\";s:6:\"target\";s:0:\"\";}'),(139603,4106,'_flexible_templates_2_stack_process_team_2_cta','field_6257c421705fd_field_62551b3e101c4'),(139604,4106,'flexible_templates_2_stack_process_team','3'),(139605,4106,'_flexible_templates_2_stack_process_team','field_6257c35c705f9'),(139606,4106,'flexible_templates_3_heading','Secure multiple distributed sources'),(139607,4106,'_flexible_templates_3_heading','field_6257cf9016730_field_6254fdb2efa27'),(139608,4106,'flexible_templates_3_sub_heading','ZERO TRUST'),(139609,4106,'_flexible_templates_3_sub_heading','field_6257cf9d16731_field_6254fdbaefa28'),(139610,4106,'flexible_templates_3_copy','The Cloud is complex. Every minute, multiple breaches occur due to actors , hackers, malpractice, ignorance, or human error. \r\nIt is more critical than ever to always know what is happening with your systems and apps. Zero Trust security will help you remain secure as possible, to prevent security breaches by safeguarding what matters most: the trust of your customers\' and company\'s information. Cybersecurity is critical to protect the assets of your business 24hrs/day, 7days/week with self healing systems.'),(139611,4106,'_flexible_templates_3_copy','field_6257cfab16732_field_6254fdc0efa29'),(139612,4106,'flexible_templates_3_cta',''),(139613,4106,'_flexible_templates_3_cta','field_6257cfc216733_field_62551b3e101c4'),(139614,4106,'flexible_templates_3_image','4023'),(139615,4106,'_flexible_templates_3_image','field_6257d00f54444_field_6254fdc5efa2a'),(139616,4106,'flexible_templates_4_heading','The Hospital for Sick Children Case Study'),(139617,4106,'_flexible_templates_4_heading','field_6257e09378148_field_6254fdb2efa27'),(139618,4106,'flexible_templates_4_sub_heading','TEK in ACTION'),(139619,4106,'_flexible_templates_4_sub_heading','field_6257e0a878149_field_6254fdbaefa28'),(139620,4106,'flexible_templates_4_copy','Translucent has indexed, analysed and transformed half a billion records of Neonatal Intensive Care Unit data.\r\nProject Areas:\r\n\r\n● Microservices\r\n● DevOps\r\n● Machine Learning'),(139621,4106,'_flexible_templates_4_copy','field_6257e55e006ca_field_6254fdc0efa29'),(139622,4106,'flexible_templates_4_image','4026'),(139623,4106,'_flexible_templates_4_image','field_6257e0e87814a_field_6254fdc5efa2a'),(139624,4106,'flexible_templates_4_mob_image','4025'),(139625,4106,'_flexible_templates_4_mob_image','field_6257e1057814b_field_6254fdcbefa2b'),(139626,4106,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:15:\"Read Case Study\";s:3:\"url\";s:70:\"https://translucent.local/case-studies/the-hospital-for-sick-children/\";s:6:\"target\";s:0:\"\";}'),(139627,4106,'_flexible_templates_4_cta','field_6257e1367814c_field_62551b3e101c4'),(139628,4106,'flexible_templates_5_heading','Translucent Blog'),(139629,4106,'_flexible_templates_5_heading','field_6257e9c8b4ea7_field_6254fdb2efa27'),(139630,4106,'flexible_templates_5_sub_heading','STAY TUNED'),(139631,4106,'_flexible_templates_5_sub_heading','field_6257e9d9b4ea8_field_6254fdbaefa28'),(139632,4106,'flexible_templates_6_heading','We treat your business like our own'),(139633,4106,'_flexible_templates_6_heading','field_625565e14146d_field_6254fdb2efa27'),(139634,4106,'flexible_templates_6_cta','a:3:{s:5:\"title\";s:10:\"Let\'s talk\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(139635,4106,'_flexible_templates_6_cta','field_625565fa4146e_field_62551b3e101c4'),(139636,4106,'flexible_templates','a:7:{i:0;s:16:\"tek_world_banner\";i:1;s:26:\"tek_world_scale_your_teams\";i:2;s:28:\"tek_world_stack_process_team\";i:3;s:20:\"tek_world_zero_trust\";i:4;s:21:\"tek_world_tek_success\";i:5;s:26:\"tek_world_translucent_blog\";i:6;s:17:\"lets_talk_section\";}'),(139637,4106,'_flexible_templates','field_6254f4d84ef9b'),(139638,4107,'flexible_templates','a:7:{i:0;s:16:\"tek_world_banner\";i:1;s:26:\"tek_world_scale_your_teams\";i:2;s:28:\"tek_world_stack_process_team\";i:3;s:20:\"tek_world_zero_trust\";i:4;s:21:\"tek_world_tek_success\";i:5;s:26:\"tek_world_translucent_blog\";i:6;s:17:\"lets_talk_section\";}'),(139639,4107,'_flexible_templates','field_6254f4d84ef9b'),(139640,4107,'flexible_templates_0_image','4014'),(139641,4107,'_flexible_templates_0_image','field_6257bb6127dce_field_6254fdc5efa2a'),(139642,4107,'flexible_templates_0_heading','Get award-winning results with our TEK Solutions '),(139643,4107,'_flexible_templates_0_heading','field_6257bb2027dcb_field_6254fdb2efa27'),(139644,4107,'flexible_templates_0_sub_heading','TEK™ WORLD'),(139645,4107,'_flexible_templates_0_sub_heading','field_6257bb3a27dcc_field_6254fdbaefa28'),(139646,4107,'flexible_templates_0_icon','4013'),(139647,4107,'_flexible_templates_0_icon','field_6257bb5127dcd_field_62550482480cb'),(139648,4107,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(139649,4107,'_flexible_templates_0_cta','field_6257bb7d27dcf_field_62551b3e101c4'),(139650,4107,'flexible_templates_1_heading',' Winning Results for Your Business. '),(139651,4107,'_flexible_templates_1_heading','field_6257bde945e43_field_6254fdb2efa27'),(139652,4107,'flexible_templates_1_sub_heading','Translucent Expert Knowledge:'),(139653,4107,'_flexible_templates_1_sub_heading','field_6257bdf945e44_field_6254fdbaefa28'),(139654,4107,'flexible_templates_1_copy','We provide industry-leading cloud native solutions that are backed by our award-winning process, teams, and production-ready data-driven platform. TEK World Solutions are our branded suite of cloud native products and services for all your business needs.Translucent Expert Knowledge will guide your project from ideation to steady state and beyond.'),(139655,4107,'_flexible_templates_1_copy','field_6257be1045e45_field_6254fdc0efa29'),(139656,4107,'flexible_templates_1_image','4016'),(139657,4107,'_flexible_templates_1_image','field_6257be2845e46_field_6254fdc5efa2a'),(139658,4107,'flexible_templates_2_stack_process_team_0_icon','4019'),(139659,4107,'_flexible_templates_2_stack_process_team_0_icon','field_6257c3a4705fa_field_62550482480cb'),(139660,4107,'flexible_templates_2_stack_process_team_0_heading','TEKStack'),(139661,4107,'_flexible_templates_2_stack_process_team_0_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(139662,4107,'flexible_templates_2_stack_process_team_0_copy_wysiwyg','TEKStack is our open source, production-ready, cloud-native, data-driven digital transformation pipeline for your company to compete in the digital age. With this range of technologies we have perfected the process of working with production ready tools to save time and money on your cloud applications and platforms.'),(139663,4107,'_flexible_templates_2_stack_process_team_0_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(139664,4107,'flexible_templates_2_stack_process_team_0_cta','a:3:{s:5:\"title\";s:26:\"Compete in the Digital Age\";s:3:\"url\";s:38:\"https://translucent.local/tekstack-ai/\";s:6:\"target\";s:0:\"\";}'),(139665,4107,'_flexible_templates_2_stack_process_team_0_cta','field_6257c421705fd_field_62551b3e101c4'),(139666,4107,'flexible_templates_2_stack_process_team_1_icon','4020'),(139667,4107,'_flexible_templates_2_stack_process_team_1_icon','field_6257c3a4705fa_field_62550482480cb'),(139668,4107,'flexible_templates_2_stack_process_team_1_heading','TEKProcess'),(139669,4107,'_flexible_templates_2_stack_process_team_1_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(139670,4107,'flexible_templates_2_stack_process_team_1_copy_wysiwyg','TEK Process makes it possible to easily organize the entire cloud native development process, from ideation and discovery, to production-ready solutions. We continuously invest in the R&D of our processes to help you stay ahead of the curve.  Improve ROI, grants, and investment opportunities with a process linked to user feedback.'),(139671,4107,'_flexible_templates_2_stack_process_team_1_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(139672,4107,'flexible_templates_2_stack_process_team_1_cta','a:3:{s:5:\"title\";s:25:\"Align your Business Goals\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(139673,4107,'_flexible_templates_2_stack_process_team_1_cta','field_6257c421705fd_field_62551b3e101c4'),(139674,4107,'flexible_templates_2_stack_process_team_2_icon','4021'),(139675,4107,'_flexible_templates_2_stack_process_team_2_icon','field_6257c3a4705fa_field_62550482480cb'),(139676,4107,'flexible_templates_2_stack_process_team_2_heading','TEKTeams'),(139677,4107,'_flexible_templates_2_stack_process_team_2_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(139678,4107,'flexible_templates_2_stack_process_team_2_copy_wysiwyg','Imagine your company without the burden of hiring developers, engineers, or keeping up with the latest technology. With TEK Teams, your organization will have the top 1% resources on demand, to scale as needed,  and in line with the growth of your cloud native application. You will finally be free to focus on what you do best—running your business. '),(139679,4107,'_flexible_templates_2_stack_process_team_2_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(139680,4107,'flexible_templates_2_stack_process_team_2_cta','a:3:{s:5:\"title\";s:16:\"Scale your Teams\";s:3:\"url\";s:35:\"https://translucent.local/tekteams/\";s:6:\"target\";s:0:\"\";}'),(139681,4107,'_flexible_templates_2_stack_process_team_2_cta','field_6257c421705fd_field_62551b3e101c4'),(139682,4107,'flexible_templates_2_stack_process_team','3'),(139683,4107,'_flexible_templates_2_stack_process_team','field_6257c35c705f9'),(139684,4107,'flexible_templates_3_heading','Secure multiple distributed sources'),(139685,4107,'_flexible_templates_3_heading','field_6257cf9016730_field_6254fdb2efa27'),(139686,4107,'flexible_templates_3_sub_heading','ZERO TRUST'),(139687,4107,'_flexible_templates_3_sub_heading','field_6257cf9d16731_field_6254fdbaefa28'),(139688,4107,'flexible_templates_3_copy','The Cloud is complex. Every minute, multiple breaches occur due to actors , hackers, malpractice, ignorance, or human error. \r\nIt is more critical than ever to always know what is happening with your systems and apps. Zero Trust security will help you remain secure as possible, to prevent security breaches by safeguarding what matters most: the trust of your customers\' and company\'s information. Cybersecurity is critical to protect the assets of your business 24hrs/day, 7days/week with self healing systems.'),(139689,4107,'_flexible_templates_3_copy','field_6257cfab16732_field_6254fdc0efa29'),(139690,4107,'flexible_templates_3_cta',''),(139691,4107,'_flexible_templates_3_cta','field_6257cfc216733_field_62551b3e101c4'),(139692,4107,'flexible_templates_3_image','4023'),(139693,4107,'_flexible_templates_3_image','field_6257d00f54444_field_6254fdc5efa2a'),(139694,4107,'flexible_templates_4_heading','The Hospital for Sick Children Case Study'),(139695,4107,'_flexible_templates_4_heading','field_6257e09378148_field_6254fdb2efa27'),(139696,4107,'flexible_templates_4_sub_heading','TEK in ACTION'),(139697,4107,'_flexible_templates_4_sub_heading','field_6257e0a878149_field_6254fdbaefa28'),(139698,4107,'flexible_templates_4_copy','Translucent has indexed, analysed and transformed half a billion records of Neonatal Intensive Care Unit data.\r\nProject Areas:\r\n\r\n● Microservices\r\n● DevOps\r\n● Machine Learning'),(139699,4107,'_flexible_templates_4_copy','field_6257e55e006ca_field_6254fdc0efa29'),(139700,4107,'flexible_templates_4_image','4026'),(139701,4107,'_flexible_templates_4_image','field_6257e0e87814a_field_6254fdc5efa2a'),(139702,4107,'flexible_templates_4_mob_image','4025'),(139703,4107,'_flexible_templates_4_mob_image','field_6257e1057814b_field_6254fdcbefa2b'),(139704,4107,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:15:\"Read Case Study\";s:3:\"url\";s:70:\"https://translucent.local/case-studies/the-hospital-for-sick-children/\";s:6:\"target\";s:0:\"\";}'),(139705,4107,'_flexible_templates_4_cta','field_6257e1367814c_field_62551b3e101c4'),(139706,4107,'flexible_templates_5_heading','Translucent Blog'),(139707,4107,'_flexible_templates_5_heading','field_6257e9c8b4ea7_field_6254fdb2efa27'),(139708,4107,'flexible_templates_5_sub_heading','STAY TUNED'),(139709,4107,'_flexible_templates_5_sub_heading','field_6257e9d9b4ea8_field_6254fdbaefa28'),(139710,4107,'flexible_templates_6_heading','We treat your business like our own'),(139711,4107,'_flexible_templates_6_heading','field_625565e14146d_field_6254fdb2efa27'),(139712,4107,'flexible_templates_6_cta','a:3:{s:5:\"title\";s:10:\"Let\'s talk\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(139713,4107,'_flexible_templates_6_cta','field_625565fa4146e_field_62551b3e101c4'),(139717,4108,'flexible_templates','a:7:{i:0;s:16:\"tek_world_banner\";i:1;s:26:\"tek_world_scale_your_teams\";i:2;s:28:\"tek_world_stack_process_team\";i:3;s:20:\"tek_world_zero_trust\";i:4;s:21:\"tek_world_tek_success\";i:5;s:26:\"tek_world_translucent_blog\";i:6;s:17:\"lets_talk_section\";}'),(139718,4108,'_flexible_templates','field_6254f4d84ef9b'),(139719,4108,'flexible_templates_0_image','4014'),(139720,4108,'_flexible_templates_0_image','field_6257bb6127dce_field_6254fdc5efa2a'),(139721,4108,'flexible_templates_0_heading','Get award-winning results with our TEK Solutions '),(139722,4108,'_flexible_templates_0_heading','field_6257bb2027dcb_field_6254fdb2efa27'),(139723,4108,'flexible_templates_0_sub_heading','TEK™ WORLD'),(139724,4108,'_flexible_templates_0_sub_heading','field_6257bb3a27dcc_field_6254fdbaefa28'),(139725,4108,'flexible_templates_0_icon','4013'),(139726,4108,'_flexible_templates_0_icon','field_6257bb5127dcd_field_62550482480cb'),(139727,4108,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(139728,4108,'_flexible_templates_0_cta','field_6257bb7d27dcf_field_62551b3e101c4'),(139729,4108,'flexible_templates_1_heading',' Winning Results for Your Business. '),(139730,4108,'_flexible_templates_1_heading','field_6257bde945e43_field_6254fdb2efa27'),(139731,4108,'flexible_templates_1_sub_heading','Translucent Expert Knowledge:'),(139732,4108,'_flexible_templates_1_sub_heading','field_6257bdf945e44_field_6254fdbaefa28'),(139733,4108,'flexible_templates_1_copy','We provide industry-leading cloud native solutions that are backed by our award-winning process, teams, and production-ready data-driven platform. TEK World Solutions are our branded suite of cloud native products and services for all your business needs. Translucent Expert Knowledge will guide your project from ideation to steady state and beyond.'),(139734,4108,'_flexible_templates_1_copy','field_6257be1045e45_field_6254fdc0efa29'),(139735,4108,'flexible_templates_1_image','4016'),(139736,4108,'_flexible_templates_1_image','field_6257be2845e46_field_6254fdc5efa2a'),(139737,4108,'flexible_templates_2_stack_process_team_0_icon','4019'),(139738,4108,'_flexible_templates_2_stack_process_team_0_icon','field_6257c3a4705fa_field_62550482480cb'),(139739,4108,'flexible_templates_2_stack_process_team_0_heading','TEKStack'),(139740,4108,'_flexible_templates_2_stack_process_team_0_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(139741,4108,'flexible_templates_2_stack_process_team_0_copy_wysiwyg','TEKStack is our open source, production-ready, cloud-native, data-driven digital transformation pipeline for your company to compete in the digital age. With this range of technologies we have perfected the process of working with production ready tools to save time and money on your cloud applications and platforms.'),(139742,4108,'_flexible_templates_2_stack_process_team_0_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(139743,4108,'flexible_templates_2_stack_process_team_0_cta','a:3:{s:5:\"title\";s:26:\"Compete in the Digital Age\";s:3:\"url\";s:38:\"https://translucent.local/tekstack-ai/\";s:6:\"target\";s:0:\"\";}'),(139744,4108,'_flexible_templates_2_stack_process_team_0_cta','field_6257c421705fd_field_62551b3e101c4'),(139745,4108,'flexible_templates_2_stack_process_team_1_icon','4020'),(139746,4108,'_flexible_templates_2_stack_process_team_1_icon','field_6257c3a4705fa_field_62550482480cb'),(139747,4108,'flexible_templates_2_stack_process_team_1_heading','TEKProcess'),(139748,4108,'_flexible_templates_2_stack_process_team_1_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(139749,4108,'flexible_templates_2_stack_process_team_1_copy_wysiwyg','TEK Process makes it possible to easily organize the entire cloud native development process, from ideation and discovery, to production-ready solutions. We continuously invest in the R&D of our processes to help you stay ahead of the curve.  Improve ROI, grants, and investment opportunities with a process linked to user feedback.'),(139750,4108,'_flexible_templates_2_stack_process_team_1_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(139751,4108,'flexible_templates_2_stack_process_team_1_cta','a:3:{s:5:\"title\";s:25:\"Align your Business Goals\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(139752,4108,'_flexible_templates_2_stack_process_team_1_cta','field_6257c421705fd_field_62551b3e101c4'),(139753,4108,'flexible_templates_2_stack_process_team_2_icon','4021'),(139754,4108,'_flexible_templates_2_stack_process_team_2_icon','field_6257c3a4705fa_field_62550482480cb'),(139755,4108,'flexible_templates_2_stack_process_team_2_heading','TEKTeams'),(139756,4108,'_flexible_templates_2_stack_process_team_2_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(139757,4108,'flexible_templates_2_stack_process_team_2_copy_wysiwyg','Imagine your company without the burden of hiring developers, engineers, or keeping up with the latest technology. With TEK Teams, your organization will have the top 1% resources on demand, to scale as needed,  and in line with the growth of your cloud native application. You will finally be free to focus on what you do best—running your business. '),(139758,4108,'_flexible_templates_2_stack_process_team_2_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(139759,4108,'flexible_templates_2_stack_process_team_2_cta','a:3:{s:5:\"title\";s:16:\"Scale your Teams\";s:3:\"url\";s:35:\"https://translucent.local/tekteams/\";s:6:\"target\";s:0:\"\";}'),(139760,4108,'_flexible_templates_2_stack_process_team_2_cta','field_6257c421705fd_field_62551b3e101c4'),(139761,4108,'flexible_templates_2_stack_process_team','3'),(139762,4108,'_flexible_templates_2_stack_process_team','field_6257c35c705f9'),(139763,4108,'flexible_templates_3_heading','Secure multiple distributed sources'),(139764,4108,'_flexible_templates_3_heading','field_6257cf9016730_field_6254fdb2efa27'),(139765,4108,'flexible_templates_3_sub_heading','ZERO TRUST'),(139766,4108,'_flexible_templates_3_sub_heading','field_6257cf9d16731_field_6254fdbaefa28'),(139767,4108,'flexible_templates_3_copy','The Cloud is complex. Every minute, multiple breaches occur due to actors , hackers, malpractice, ignorance, or human error. \r\nIt is more critical than ever to always know what is happening with your systems and apps. Zero Trust security will help you remain secure as possible, to prevent security breaches by safeguarding what matters most: the trust of your customers\' and company\'s information. Cybersecurity is critical to protect the assets of your business 24hrs/day, 7days/week with self healing systems.'),(139768,4108,'_flexible_templates_3_copy','field_6257cfab16732_field_6254fdc0efa29'),(139769,4108,'flexible_templates_3_cta',''),(139770,4108,'_flexible_templates_3_cta','field_6257cfc216733_field_62551b3e101c4'),(139771,4108,'flexible_templates_3_image','4023'),(139772,4108,'_flexible_templates_3_image','field_6257d00f54444_field_6254fdc5efa2a'),(139773,4108,'flexible_templates_4_heading','The Hospital for Sick Children Case Study'),(139774,4108,'_flexible_templates_4_heading','field_6257e09378148_field_6254fdb2efa27'),(139775,4108,'flexible_templates_4_sub_heading','TEK in ACTION'),(139776,4108,'_flexible_templates_4_sub_heading','field_6257e0a878149_field_6254fdbaefa28'),(139777,4108,'flexible_templates_4_copy','Translucent has indexed, analysed and transformed half a billion records of Neonatal Intensive Care Unit data.\r\nProject Areas:\r\n\r\n● Microservices\r\n● DevOps\r\n● Machine Learning'),(139778,4108,'_flexible_templates_4_copy','field_6257e55e006ca_field_6254fdc0efa29'),(139779,4108,'flexible_templates_4_image','4026'),(139780,4108,'_flexible_templates_4_image','field_6257e0e87814a_field_6254fdc5efa2a'),(139781,4108,'flexible_templates_4_mob_image','4025'),(139782,4108,'_flexible_templates_4_mob_image','field_6257e1057814b_field_6254fdcbefa2b'),(139783,4108,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:15:\"Read Case Study\";s:3:\"url\";s:70:\"https://translucent.local/case-studies/the-hospital-for-sick-children/\";s:6:\"target\";s:0:\"\";}'),(139784,4108,'_flexible_templates_4_cta','field_6257e1367814c_field_62551b3e101c4'),(139785,4108,'flexible_templates_5_heading','Translucent Blog'),(139786,4108,'_flexible_templates_5_heading','field_6257e9c8b4ea7_field_6254fdb2efa27'),(139787,4108,'flexible_templates_5_sub_heading','STAY TUNED'),(139788,4108,'_flexible_templates_5_sub_heading','field_6257e9d9b4ea8_field_6254fdbaefa28'),(139789,4108,'flexible_templates_6_heading','We treat your business like our own'),(139790,4108,'_flexible_templates_6_heading','field_625565e14146d_field_6254fdb2efa27'),(139791,4108,'flexible_templates_6_cta','a:3:{s:5:\"title\";s:10:\"Let\'s talk\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(139792,4108,'_flexible_templates_6_cta','field_625565fa4146e_field_62551b3e101c4'),(139811,4109,'flexible_templates','a:9:{i:0;s:19:\"cloud_native_banner\";i:1;s:35:\"cloud_native_expert_dedicated_teams\";i:2;s:39:\"cloud_native_solving_digital_challenges\";i:3;s:26:\"cloud_native_scale_demands\";i:4;s:22:\"cloud_native_ecosystem\";i:5;s:31:\"cloud_native_technology_partner\";i:6;s:37:\"cloud_native_translucent_differential\";i:7;s:26:\"cloud_nature_future_vision\";i:8;s:17:\"lets_talk_section\";}'),(139812,4109,'_flexible_templates','field_6254f4d84ef9b'),(139813,4109,'flexible_templates_0_image','4030'),(139814,4109,'_flexible_templates_0_image','field_62569b35f7c63_field_6254fdc5efa2a'),(139815,4109,'flexible_templates_0_icon','4013'),(139816,4109,'_flexible_templates_0_icon','field_62569b69f7c64_field_62550482480cb'),(139817,4109,'flexible_templates_0_heading','Solve Digital Challenges with a Complete Cloud Native Solution'),(139818,4109,'_flexible_templates_0_heading','field_62569b87f7c65_field_6254fdb2efa27'),(139819,4109,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(139820,4109,'_flexible_templates_0_sub_heading','field_62569ba5f7c66_field_6254fdbaefa28'),(139821,4109,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:23:\"Transform Your Business\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(139822,4109,'_flexible_templates_0_cta','field_62569bcff7c67_field_62551b3e101c4'),(139823,4109,'flexible_templates_1_image','4031'),(139824,4109,'_flexible_templates_1_image','field_6256a05dda66c_field_6254fdc5efa2a'),(139825,4109,'flexible_templates_1_heading','Expert dedicated teams for your cloud native project.'),(139826,4109,'_flexible_templates_1_heading','field_62569f6d3c0ad_field_6254fdb2efa27'),(139827,4109,'flexible_templates_1_sub_heading','DATA-DRIVEN TRUSTED TECHNOLOGY PARTNER'),(139828,4109,'_flexible_templates_1_sub_heading','field_62569f7a3c0ae_field_6254fdbaefa28'),(139829,4109,'flexible_templates_1_copy','Our expert software engineering teams develop intelligent apps for fintech, healthcare, automotive, and any other data-driven journey, with over 10 years of experience in large scale complex project. Enable your business to reflect its operations through technology while helping it become more dynamic, secure, and easier to scale by increasing speed to market. As a pioneer in cloud native application development we have a proven track record of solving digital transformation challenges for enterprises.'),(139830,4109,'_flexible_templates_1_copy','field_6256a175dc200_field_6254fdc0efa29'),(139831,4109,'flexible_templates_1_copy_long',''),(139832,4109,'_flexible_templates_1_copy_long','field_6256a026da66a'),(139833,4109,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:12:\"How We Do It\";s:3:\"url\";s:36:\"https://translucent.local/tek-world/\";s:6:\"target\";s:0:\"\";}'),(139834,4109,'_flexible_templates_1_cta','field_6256a03ada66b_field_62551b3e101c4'),(139835,4109,'flexible_templates_2_heading','Three paths to Cloud Native'),(139836,4109,'_flexible_templates_2_heading','field_6256a640dea7c_field_6254fdb2efa27'),(139837,4109,'flexible_templates_2_sub_heading','SOLVING DIGITAL CHALLENGES'),(139838,4109,'_flexible_templates_2_sub_heading','field_6256a66cdea7d_field_6254fdbaefa28'),(139839,4109,'flexible_templates_2_posts_grid_0_icon','4033'),(139840,4109,'_flexible_templates_2_posts_grid_0_icon','field_6256a6c0dea7f_field_62550482480cb'),(139841,4109,'flexible_templates_2_posts_grid_0_heading','Build'),(139842,4109,'_flexible_templates_2_posts_grid_0_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(139843,4109,'flexible_templates_2_posts_grid_0_copy','We\'re not just a software company. We\'re the people who help your business achieve its digital transformation vision. From strategy to implementation, we\'ll support you with our cloud native, data driven technology and digital transformation expertise. '),(139844,4109,'_flexible_templates_2_posts_grid_0_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(139845,4109,'flexible_templates_2_posts_grid_0_cta',''),(139846,4109,'_flexible_templates_2_posts_grid_0_cta','field_6256a6f8dea82_field_62551b3e101c4'),(139847,4109,'flexible_templates_2_posts_grid_1_icon','4034'),(139848,4109,'_flexible_templates_2_posts_grid_1_icon','field_6256a6c0dea7f_field_62550482480cb'),(139849,4109,'flexible_templates_2_posts_grid_1_heading','ReBuild'),(139850,4109,'_flexible_templates_2_posts_grid_1_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(139851,4109,'flexible_templates_2_posts_grid_1_copy','Break free from the limitations of your old legacy technology by rebuilding your business critical application components without affecting the original specifications, requirements, and business logic. This will improve scalability, maintainability, and reliability.\r\n'),(139852,4109,'_flexible_templates_2_posts_grid_1_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(139853,4109,'flexible_templates_2_posts_grid_1_cta',''),(139854,4109,'_flexible_templates_2_posts_grid_1_cta','field_6256a6f8dea82_field_62551b3e101c4'),(139855,4109,'flexible_templates_2_posts_grid_2_icon','4035'),(139856,4109,'_flexible_templates_2_posts_grid_2_icon','field_6256a6c0dea7f_field_62550482480cb'),(139857,4109,'flexible_templates_2_posts_grid_2_heading','RePlatform'),(139858,4109,'_flexible_templates_2_posts_grid_2_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(139859,4109,'flexible_templates_2_posts_grid_2_copy','Migrate your old application to a new runtime platform. When upgrading to a cloud native application platform, we repurpose the useable components from your legacy technology, and minimize changes to code and structure.'),(139860,4109,'_flexible_templates_2_posts_grid_2_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(139861,4109,'flexible_templates_2_posts_grid_2_cta',''),(139862,4109,'_flexible_templates_2_posts_grid_2_cta','field_6256a6f8dea82_field_62551b3e101c4'),(139863,4109,'flexible_templates_2_posts_grid','3'),(139864,4109,'_flexible_templates_2_posts_grid','field_6256a698dea7e'),(139865,4109,'flexible_templates_2_cta','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://translucent.local/cloud-native-application-development/\";s:6:\"target\";s:0:\"\";}'),(139866,4109,'_flexible_templates_2_cta','field_6256a725dea83_field_62551b3e101c4'),(139867,4109,'flexible_templates_3_heading','Scale According to your Demands'),(139868,4109,'_flexible_templates_3_heading','field_6256aa0c6187a_field_6254fdb2efa27'),(139869,4109,'flexible_templates_3_scale_demands_0_icon',''),(139870,4109,'_flexible_templates_3_scale_demands_0_icon','field_6256aa4e6187c_field_62550482480cb'),(139871,4109,'flexible_templates_3_scale_demands_0_heading','TEKTeams'),(139872,4109,'_flexible_templates_3_scale_demands_0_heading','field_6256aa866187d_field_6254fdb2efa27'),(139873,4109,'flexible_templates_3_scale_demands_0_copy','On-demand resources that may be used whenever and wherever you need them. Increase your workforce by partnering with teams tailored to your business needs.'),(139874,4109,'_flexible_templates_3_scale_demands_0_copy','field_6256aa986187e_field_6254fdc0efa29'),(139875,4109,'flexible_templates_3_scale_demands_0_cta','a:3:{s:5:\"title\";s:16:\"Scale Your Teams\";s:3:\"url\";s:34:\"https://translucent.local/tekteams\";s:6:\"target\";s:0:\"\";}'),(139876,4109,'_flexible_templates_3_scale_demands_0_cta','field_6256aab66187f_field_62551b3e101c4'),(139877,4109,'flexible_templates_3_scale_demands_1_icon',''),(139878,4109,'_flexible_templates_3_scale_demands_1_icon','field_6256aa4e6187c_field_62550482480cb'),(139879,4109,'flexible_templates_3_scale_demands_1_heading','TEKStack AI'),(139880,4109,'_flexible_templates_3_scale_demands_1_heading','field_6256aa866187d_field_6254fdb2efa27'),(139881,4109,'flexible_templates_3_scale_demands_1_copy','TEKStack AI has perfected the complex process of working with production ready tools that have been shown to save time and money. Reduce your time to market by more than 20%.'),(139882,4109,'_flexible_templates_3_scale_demands_1_copy','field_6256aa986187e_field_6254fdc0efa29'),(139883,4109,'flexible_templates_3_scale_demands_1_cta','a:3:{s:5:\"title\";s:20:\"Speed Up Development\";s:3:\"url\";s:38:\"https://translucent.local/tekstack-ai/\";s:6:\"target\";s:0:\"\";}'),(139884,4109,'_flexible_templates_3_scale_demands_1_cta','field_6256aab66187f_field_62551b3e101c4'),(139885,4109,'flexible_templates_3_scale_demands_2_icon',''),(139886,4109,'_flexible_templates_3_scale_demands_2_icon','field_6256aa4e6187c_field_62550482480cb'),(139887,4109,'flexible_templates_3_scale_demands_2_heading','TEKProcess'),(139888,4109,'_flexible_templates_3_scale_demands_2_heading','field_6256aa866187d_field_6254fdb2efa27'),(139889,4109,'flexible_templates_3_scale_demands_2_copy','Our approach to cloud native development will organize your entire cloud native development process ​from conception to steady state and support, known as TEKProcess.'),(139890,4109,'_flexible_templates_3_scale_demands_2_copy','field_6256aa986187e_field_6254fdc0efa29'),(139891,4109,'flexible_templates_3_scale_demands_2_cta','a:3:{s:5:\"title\";s:24:\"Optimize Your Operations\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(139892,4109,'_flexible_templates_3_scale_demands_2_cta','field_6256aab66187f_field_62551b3e101c4'),(139893,4109,'flexible_templates_3_scale_demands','3'),(139894,4109,'_flexible_templates_3_scale_demands','field_6256aa366187b'),(139895,4109,'flexible_templates_4_heading','Reflect Your Operations Through Technology'),(139896,4109,'_flexible_templates_4_heading','field_6256acb5f89e4_field_6254fdb2efa27'),(139897,4109,'flexible_templates_4_sub_heading','CLOUD NATIVE ECOSYSTEM'),(139898,4109,'_flexible_templates_4_sub_heading','field_6256acc6f89e5_field_6254fdbaefa28'),(139899,4109,'flexible_templates_4_icon','4041'),(139900,4109,'_flexible_templates_4_icon','field_6256db0a20c28_field_62550482480cb'),(139901,4109,'flexible_templates_4_image',''),(139902,4109,'_flexible_templates_4_image','field_6257293fdf3c8_field_6254fdc5efa2a'),(139903,4109,'flexible_templates_4_technology_0_heading','Solve Problems Quick'),(139904,4109,'_flexible_templates_4_technology_0_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(139905,4109,'flexible_templates_4_technology_0_sub_heading','How?'),(139906,4109,'_flexible_templates_4_technology_0_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(139907,4109,'flexible_templates_4_technology_0_copy','Translucent is a data driven digital transformation company that uses technology to solve problems and modernize companies.'),(139908,4109,'_flexible_templates_4_technology_0_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(139909,4109,'flexible_templates_4_technology_0_back_heading','Data Driven'),(139910,4109,'_flexible_templates_4_technology_0_back_heading','field_6256b2b61a441'),(139911,4109,'flexible_templates_4_technology_0_icon','4038'),(139912,4109,'_flexible_templates_4_technology_0_icon','field_6256b2be1a442_field_62550482480cb'),(139913,4109,'flexible_templates_4_technology_0_back_copy','We work closely with companies to analyze their business and discover new opportunities they did not know existed.'),(139914,4109,'_flexible_templates_4_technology_0_back_copy','field_6256b2e31a443'),(139915,4109,'flexible_templates_4_technology_0_image',''),(139916,4109,'_flexible_templates_4_technology_0_image','field_6256b3011a444_field_6254fdc5efa2a'),(139917,4109,'flexible_templates_4_technology_0_cta','a:3:{s:5:\"title\";s:13:\"Start Solving\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(139918,4109,'_flexible_templates_4_technology_0_cta','field_6256ad66f89e9_field_62551b3e101c4'),(139919,4109,'flexible_templates_4_technology_1_heading','Automate Development Tasks'),(139920,4109,'_flexible_templates_4_technology_1_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(139921,4109,'flexible_templates_4_technology_1_sub_heading','How?'),(139922,4109,'_flexible_templates_4_technology_1_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(139923,4109,'flexible_templates_4_technology_1_copy','Simplify the intricacies of cloud applications by automating laborious tasks in the development process.'),(139924,4109,'_flexible_templates_4_technology_1_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(139925,4109,'flexible_templates_4_technology_1_back_heading',''),(139926,4109,'_flexible_templates_4_technology_1_back_heading','field_6256b2b61a441'),(139927,4109,'flexible_templates_4_technology_1_icon','4040'),(139928,4109,'_flexible_templates_4_technology_1_icon','field_6256b2be1a442_field_62550482480cb'),(139929,4109,'flexible_templates_4_technology_1_back_copy','Translucent is one of just four kubernetes certified partners in Canada!'),(139930,4109,'_flexible_templates_4_technology_1_back_copy','field_6256b2e31a443'),(139931,4109,'flexible_templates_4_technology_1_image','4039'),(139932,4109,'_flexible_templates_4_technology_1_image','field_6256b3011a444_field_6254fdc5efa2a'),(139933,4109,'flexible_templates_4_technology_1_cta','a:3:{s:5:\"title\";s:16:\"Start Automating\";s:3:\"url\";s:59:\"https://translucent.local/kubernetes-professional-services/\";s:6:\"target\";s:0:\"\";}'),(139934,4109,'_flexible_templates_4_technology_1_cta','field_6256ad66f89e9_field_62551b3e101c4'),(139935,4109,'flexible_templates_4_technology_2_heading','Build and Deploy Faster'),(139936,4109,'_flexible_templates_4_technology_2_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(139937,4109,'flexible_templates_4_technology_2_sub_heading','How?'),(139938,4109,'_flexible_templates_4_technology_2_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(139939,4109,'flexible_templates_4_technology_2_copy','Maximise earnings by building and deploying more features and faster.'),(139940,4109,'_flexible_templates_4_technology_2_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(139941,4109,'flexible_templates_4_technology_2_back_heading',''),(139942,4109,'_flexible_templates_4_technology_2_back_heading','field_6256b2b61a441'),(139943,4109,'flexible_templates_4_technology_2_icon','4042'),(139944,4109,'_flexible_templates_4_technology_2_icon','field_6256b2be1a442_field_62550482480cb'),(139945,4109,'flexible_templates_4_technology_2_back_copy','Devops is the heartbeat of all Translucent services, and Translucent IS Devops.'),(139946,4109,'_flexible_templates_4_technology_2_back_copy','field_6256b2e31a443'),(139947,4109,'flexible_templates_4_technology_2_image',''),(139948,4109,'_flexible_templates_4_technology_2_image','field_6256b3011a444_field_6254fdc5efa2a'),(139949,4109,'flexible_templates_4_technology_2_cta','a:3:{s:5:\"title\";s:17:\"Unlock Efficiency\";s:3:\"url\";s:46:\"https://translucent.local/cloud-native-devops/\";s:6:\"target\";s:0:\"\";}'),(139950,4109,'_flexible_templates_4_technology_2_cta','field_6256ad66f89e9_field_62551b3e101c4'),(139951,4109,'flexible_templates_4_technology_3_heading','Remain Secure as Possible'),(139952,4109,'_flexible_templates_4_technology_3_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(139953,4109,'flexible_templates_4_technology_3_sub_heading','How?'),(139954,4109,'_flexible_templates_4_technology_3_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(139955,4109,'flexible_templates_4_technology_3_copy','Reduce deliberate and incidental security vulnerabilities in your systems.'),(139956,4109,'_flexible_templates_4_technology_3_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(139957,4109,'flexible_templates_4_technology_3_back_heading','Zero Trust'),(139958,4109,'_flexible_templates_4_technology_3_back_heading','field_6256b2b61a441'),(139959,4109,'flexible_templates_4_technology_3_icon','4043'),(139960,4109,'_flexible_templates_4_technology_3_icon','field_6256b2be1a442_field_62550482480cb'),(139961,4109,'flexible_templates_4_technology_3_back_copy','We are partnered with the best security teams to offer full end to end services.'),(139962,4109,'_flexible_templates_4_technology_3_back_copy','field_6256b2e31a443'),(139963,4109,'flexible_templates_4_technology_3_image',''),(139964,4109,'_flexible_templates_4_technology_3_image','field_6256b3011a444_field_6254fdc5efa2a'),(139965,4109,'flexible_templates_4_technology_3_cta','a:3:{s:5:\"title\";s:20:\"Protect What Matters\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(139966,4109,'_flexible_templates_4_technology_3_cta','field_6256ad66f89e9_field_62551b3e101c4'),(139967,4109,'flexible_templates_4_technology','6'),(139968,4109,'_flexible_templates_4_technology','field_6256acf8f89e6'),(139969,4109,'flexible_templates_4_technology_4_heading','Propel Your Business into The Future'),(139970,4109,'_flexible_templates_4_technology_4_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(139971,4109,'flexible_templates_4_technology_4_sub_heading','How?'),(139972,4109,'_flexible_templates_4_technology_4_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(139973,4109,'flexible_templates_4_technology_4_copy','Build new systems in the cloud, or Modernize legacy data and applications by rebuilding or migrating to a value-driven platform. '),(139974,4109,'_flexible_templates_4_technology_4_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(139975,4109,'flexible_templates_4_technology_4_back_heading','Application Development'),(139976,4109,'_flexible_templates_4_technology_4_back_heading','field_6256b2b61a441'),(139977,4109,'flexible_templates_4_technology_4_icon','4047'),(139978,4109,'_flexible_templates_4_technology_4_icon','field_6256b2be1a442_field_62550482480cb'),(139979,4109,'flexible_templates_4_technology_4_back_copy','We develop intelligent apps for fintech, healthcare, and any other data-driven journey.'),(139980,4109,'_flexible_templates_4_technology_4_back_copy','field_6256b2e31a443'),(139981,4109,'flexible_templates_4_technology_4_image',''),(139982,4109,'_flexible_templates_4_technology_4_image','field_6256b3011a444_field_6254fdc5efa2a'),(139983,4109,'flexible_templates_4_technology_4_cta','a:3:{s:5:\"title\";s:14:\"Build It Right\";s:3:\"url\";s:63:\"https://translucent.local/cloud-native-application-development/\";s:6:\"target\";s:0:\"\";}'),(139984,4109,'_flexible_templates_4_technology_4_cta','field_6256ad66f89e9_field_62551b3e101c4'),(139985,4109,'flexible_templates_4_technology_5_heading','Make Decisions Faster'),(139986,4109,'_flexible_templates_4_technology_5_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(139987,4109,'flexible_templates_4_technology_5_sub_heading','How?'),(139988,4109,'_flexible_templates_4_technology_5_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(139989,4109,'flexible_templates_4_technology_5_copy','Discover anomalies and opportunities faster than human intelligence!'),(139990,4109,'_flexible_templates_4_technology_5_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(139991,4109,'flexible_templates_4_technology_5_back_heading',''),(139992,4109,'_flexible_templates_4_technology_5_back_heading','field_6256b2b61a441'),(139993,4109,'flexible_templates_4_technology_5_icon','4048'),(139994,4109,'_flexible_templates_4_technology_5_icon','field_6256b2be1a442_field_62550482480cb'),(139995,4109,'flexible_templates_4_technology_5_back_copy','Extend the boundaries of your business by solving problems faster.'),(139996,4109,'_flexible_templates_4_technology_5_back_copy','field_6256b2e31a443'),(139997,4109,'flexible_templates_4_technology_5_image',''),(139998,4109,'_flexible_templates_4_technology_5_image','field_6256b3011a444_field_6254fdc5efa2a'),(139999,4109,'flexible_templates_4_technology_5_cta','a:3:{s:5:\"title\";s:22:\"Solve Complex Problems\";s:3:\"url\";s:52:\"https://translucent.local/services/machine-learning/\";s:6:\"target\";s:6:\"_blank\";}'),(140000,4109,'_flexible_templates_4_technology_5_cta','field_6256ad66f89e9_field_62551b3e101c4'),(140001,4109,'flexible_templates_5_image','4051'),(140002,4109,'_flexible_templates_5_image','field_6256dbdfc0c83_field_6254fdc5efa2a'),(140003,4109,'flexible_templates_5_mob_image','4050'),(140004,4109,'_flexible_templates_5_mob_image','field_6256dbeec0c84_field_6254fdcbefa2b'),(140005,4109,'flexible_templates_5_heading','Companies That We Work With'),(140006,4109,'_flexible_templates_5_heading','field_6256dc0cc0c85_field_6254fdb2efa27'),(140007,4109,'flexible_templates_5_technology_partner_0_heading','Teams looking for a trusted nearshore technology partner '),(140008,4109,'_flexible_templates_5_technology_partner_0_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(140009,4109,'flexible_templates_5_technology_partner_0_icon','4052'),(140010,4109,'_flexible_templates_5_technology_partner_0_icon','field_6256dc78c0c88_field_62550482480cb'),(140011,4109,'flexible_templates_5_technology_partner_0_copy','Your Dedicated Development Team. We bring the best people in the industry with various skills to develop and maintain the highest quality software.'),(140012,4109,'_flexible_templates_5_technology_partner_0_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(140013,4109,'flexible_templates_5_technology_partner_1_heading','Teams looking to a build state-of-the-art platform'),(140014,4109,'_flexible_templates_5_technology_partner_1_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(140015,4109,'flexible_templates_5_technology_partner_1_icon','4053'),(140016,4109,'_flexible_templates_5_technology_partner_1_icon','field_6256dc78c0c88_field_62550482480cb'),(140017,4109,'flexible_templates_5_technology_partner_1_copy','Industry-leading cloud native solutions that are backed by an award-winning process, teams, and production-ready data-driven platform.'),(140018,4109,'_flexible_templates_5_technology_partner_1_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(140019,4109,'flexible_templates_5_technology_partner_2_heading','Teams looking to outperform competition'),(140020,4109,'_flexible_templates_5_technology_partner_2_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(140021,4109,'flexible_templates_5_technology_partner_2_icon','4054'),(140022,4109,'_flexible_templates_5_technology_partner_2_icon','field_6256dc78c0c88_field_62550482480cb'),(140023,4109,'flexible_templates_5_technology_partner_2_copy','Gain a major competitive advantage by increasing speed to market by 20%, allowing you to make business moves more quickly.'),(140024,4109,'_flexible_templates_5_technology_partner_2_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(140025,4109,'flexible_templates_5_technology_partner','3'),(140026,4109,'_flexible_templates_5_technology_partner','field_6256dc3fc0c86'),(140027,4109,'flexible_templates_6_heading','WHY TRANSLUCENT'),(140028,4109,'_flexible_templates_6_heading','field_62590b7cdf000_field_6254fdb2efa27'),(140029,4109,'flexible_templates_6_sub_heading','How Translucent Powered by TEK Differs From Alternative Solutions'),(140030,4109,'_flexible_templates_6_sub_heading','field_62590b8bdf001_field_6254fdbaefa28'),(140031,4109,'flexible_templates_6_icon','4013'),(140032,4109,'_flexible_templates_6_icon','field_62590bc5df002_field_62550482480cb'),(140033,4109,'flexible_templates_6_differential_translucent_header_0_heading','Your needs'),(140034,4109,'_flexible_templates_6_differential_translucent_header_0_heading','field_62590c01df004_field_6254fdb2efa27'),(140035,4109,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(140036,4109,'_flexible_templates_6_differential_translucent_header_0_color','field_62590c11df005'),(140037,4109,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(140038,4109,'_flexible_templates_6_differential_translucent_header_1_heading','field_62590c01df004_field_6254fdb2efa27'),(140039,4109,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(140040,4109,'_flexible_templates_6_differential_translucent_header_1_color','field_62590c11df005'),(140041,4109,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore teams'),(140042,4109,'_flexible_templates_6_differential_translucent_header_2_heading','field_62590c01df004_field_6254fdb2efa27'),(140043,4109,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(140044,4109,'_flexible_templates_6_differential_translucent_header_2_color','field_62590c11df005'),(140045,4109,'flexible_templates_6_differential_translucent_header_3_heading','Hiring in-house developers'),(140046,4109,'_flexible_templates_6_differential_translucent_header_3_heading','field_62590c01df004_field_6254fdb2efa27'),(140047,4109,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(140048,4109,'_flexible_templates_6_differential_translucent_header_3_color','field_62590c11df005'),(140049,4109,'flexible_templates_6_differential_translucent_header','5'),(140050,4109,'_flexible_templates_6_differential_translucent_header','field_62590bf9df003'),(140051,4109,'flexible_templates_6_differential_translucent','14'),(140052,4109,'_flexible_templates_6_differential_translucent','field_62590c30df006'),(140053,4109,'flexible_templates_6_differential_translucent_header_4_heading','Working with Translucent'),(140054,4109,'_flexible_templates_6_differential_translucent_header_4_heading','field_62590c01df004_field_6254fdb2efa27'),(140055,4109,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(140056,4109,'_flexible_templates_6_differential_translucent_header_4_color','field_62590c11df005'),(140057,4109,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(140058,4109,'_flexible_templates_6_differential_translucent_0_column_1','field_62590c30df008'),(140059,4109,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(140060,4109,'_flexible_templates_6_differential_translucent_0_column_2','field_62590c30df00a'),(140061,4109,'flexible_templates_6_differential_translucent_0_column_2_color','#7080a7'),(140062,4109,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62590c30df00b'),(140063,4109,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(140064,4109,'_flexible_templates_6_differential_translucent_0_column_3','field_62590c30df00d'),(140065,4109,'flexible_templates_6_differential_translucent_0_column_3_color','#ff555f'),(140066,4109,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62590c30df00e'),(140067,4109,'flexible_templates_6_differential_translucent_0_column_4','Always'),(140068,4109,'_flexible_templates_6_differential_translucent_0_column_4','field_62590c30df010'),(140069,4109,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(140070,4109,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62590c30df011'),(140071,4109,'flexible_templates_6_differential_translucent_0_column_5','Always'),(140072,4109,'_flexible_templates_6_differential_translucent_0_column_5','field_62590c30df013'),(140073,4109,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(140074,4109,'_flexible_templates_6_differential_translucent_0_column_5_color','field_62590c30df014'),(140075,4109,'flexible_templates_7_heading','We have a future vision that is in sync with the realities that our clients are currently facing'),(140076,4109,'_flexible_templates_7_heading','field_625733105d792_field_6254fdb2efa27'),(140077,4109,'flexible_templates_7_copy_wysiwyg','Translucent is a pioneer in cloud native application development. We created our own solutions, which we call TEK (Translucent Expert Knowledge). Our culture fosters innovation.'),(140078,4109,'_flexible_templates_7_copy_wysiwyg','field_625733205d793_field_6255310ecf4de'),(140079,4109,'flexible_templates_7_image','4057'),(140080,4109,'_flexible_templates_7_image','field_625733375d794_field_6254fdc5efa2a'),(140081,4109,'flexible_templates_7_icon','4058'),(140082,4109,'_flexible_templates_7_icon','field_625733495d795_field_62550482480cb'),(140083,4109,'flexible_templates_7_sick_kids_text',''),(140084,4109,'_flexible_templates_7_sick_kids_text','field_62573ad019bd0'),(140085,4109,'flexible_templates_7_tek_stack_case',''),(140086,4109,'_flexible_templates_7_tek_stack_case','field_625733b05d797'),(140087,4109,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:36:\"See How We Helped Sick Kids Hospital\";s:3:\"url\";s:70:\"https://translucent.local/case-studies/the-hospital-for-sick-children/\";s:6:\"target\";s:0:\"\";}'),(140088,4109,'_flexible_templates_7_cta','field_625733895d796_field_62551b3e101c4'),(140089,4109,'flexible_templates_8_heading','We treat your business like our own.'),(140090,4109,'_flexible_templates_8_heading','field_625565e14146d_field_6254fdb2efa27'),(140091,4109,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:10:\"Let\'s talk\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(140092,4109,'_flexible_templates_8_cta','field_625565fa4146e_field_62551b3e101c4'),(140093,4109,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (Speed to market)'),(140094,4109,'_flexible_templates_6_differential_translucent_1_column_1','field_62590c30df008'),(140095,4109,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(140096,4109,'_flexible_templates_6_differential_translucent_1_column_2','field_62590c30df00a'),(140097,4109,'flexible_templates_6_differential_translucent_1_column_2_color','#ff555f'),(140098,4109,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62590c30df00b'),(140099,4109,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(140100,4109,'_flexible_templates_6_differential_translucent_1_column_3','field_62590c30df00d'),(140101,4109,'flexible_templates_6_differential_translucent_1_column_3_color','#7080a7'),(140102,4109,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62590c30df00e'),(140103,4109,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(140104,4109,'_flexible_templates_6_differential_translucent_1_column_4','field_62590c30df010'),(140105,4109,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(140106,4109,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62590c30df011'),(140107,4109,'flexible_templates_6_differential_translucent_1_column_5','Always'),(140108,4109,'_flexible_templates_6_differential_translucent_1_column_5','field_62590c30df013'),(140109,4109,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(140110,4109,'_flexible_templates_6_differential_translucent_1_column_5_color','field_62590c30df014'),(140111,4109,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(140112,4109,'_flexible_templates_6_differential_translucent_2_column_1','field_62590c30df008'),(140113,4109,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(140114,4109,'_flexible_templates_6_differential_translucent_2_column_2','field_62590c30df00a'),(140115,4109,'flexible_templates_6_differential_translucent_2_column_2_color','#7080a7'),(140116,4109,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62590c30df00b'),(140117,4109,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(140118,4109,'_flexible_templates_6_differential_translucent_2_column_3','field_62590c30df00d'),(140119,4109,'flexible_templates_6_differential_translucent_2_column_3_color','#ff555f'),(140120,4109,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62590c30df00e'),(140121,4109,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(140122,4109,'_flexible_templates_6_differential_translucent_2_column_4','field_62590c30df010'),(140123,4109,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(140124,4109,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62590c30df011'),(140125,4109,'flexible_templates_6_differential_translucent_2_column_5','Always'),(140126,4109,'_flexible_templates_6_differential_translucent_2_column_5','field_62590c30df013'),(140127,4109,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(140128,4109,'_flexible_templates_6_differential_translucent_2_column_5_color','field_62590c30df014'),(140129,4109,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(140130,4109,'_flexible_templates_6_differential_translucent_3_column_1','field_62590c30df008'),(140131,4109,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(140132,4109,'_flexible_templates_6_differential_translucent_3_column_2','field_62590c30df00a'),(140133,4109,'flexible_templates_6_differential_translucent_3_column_2_color','#7080a7'),(140134,4109,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62590c30df00b'),(140135,4109,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(140136,4109,'_flexible_templates_6_differential_translucent_3_column_3','field_62590c30df00d'),(140137,4109,'flexible_templates_6_differential_translucent_3_column_3_color','#ff555f'),(140138,4109,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62590c30df00e'),(140139,4109,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(140140,4109,'_flexible_templates_6_differential_translucent_3_column_4','field_62590c30df010'),(140141,4109,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(140142,4109,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62590c30df011'),(140143,4109,'flexible_templates_6_differential_translucent_3_column_5','Always'),(140144,4109,'_flexible_templates_6_differential_translucent_3_column_5','field_62590c30df013'),(140145,4109,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(140146,4109,'_flexible_templates_6_differential_translucent_3_column_5_color','field_62590c30df014'),(140147,4109,'flexible_templates_6_differential_translucent_4_column_1','Price predictability and transparency'),(140148,4109,'_flexible_templates_6_differential_translucent_4_column_1','field_62590c30df008'),(140149,4109,'flexible_templates_6_differential_translucent_4_column_2','Rare'),(140150,4109,'_flexible_templates_6_differential_translucent_4_column_2','field_62590c30df00a'),(140151,4109,'flexible_templates_6_differential_translucent_4_column_2_color','#ff555f'),(140152,4109,'_flexible_templates_6_differential_translucent_4_column_2_color','field_62590c30df00b'),(140153,4109,'flexible_templates_6_differential_translucent_4_column_3','Sometimes'),(140154,4109,'_flexible_templates_6_differential_translucent_4_column_3','field_62590c30df00d'),(140155,4109,'flexible_templates_6_differential_translucent_4_column_3_color','#7080a7'),(140156,4109,'_flexible_templates_6_differential_translucent_4_column_3_color','field_62590c30df00e'),(140157,4109,'flexible_templates_6_differential_translucent_4_column_4','Always'),(140158,4109,'_flexible_templates_6_differential_translucent_4_column_4','field_62590c30df010'),(140159,4109,'flexible_templates_6_differential_translucent_4_column_4_color','#28d9cb'),(140160,4109,'_flexible_templates_6_differential_translucent_4_column_4_color','field_62590c30df011'),(140161,4109,'flexible_templates_6_differential_translucent_4_column_5','Always'),(140162,4109,'_flexible_templates_6_differential_translucent_4_column_5','field_62590c30df013'),(140163,4109,'flexible_templates_6_differential_translucent_4_column_5_color','#24c1ff'),(140164,4109,'_flexible_templates_6_differential_translucent_4_column_5_color','field_62590c30df014'),(140165,4109,'flexible_templates_6_differential_translucent_5_column_1','Affordability'),(140166,4109,'_flexible_templates_6_differential_translucent_5_column_1','field_62590c30df008'),(140167,4109,'flexible_templates_6_differential_translucent_5_column_2','Rare'),(140168,4109,'_flexible_templates_6_differential_translucent_5_column_2','field_62590c30df00a'),(140169,4109,'flexible_templates_6_differential_translucent_5_column_2_color','#ff555f'),(140170,4109,'_flexible_templates_6_differential_translucent_5_column_2_color','field_62590c30df00b'),(140171,4109,'flexible_templates_6_differential_translucent_5_column_3','Sometimes'),(140172,4109,'_flexible_templates_6_differential_translucent_5_column_3','field_62590c30df00d'),(140173,4109,'flexible_templates_6_differential_translucent_5_column_3_color','#7080a7'),(140174,4109,'_flexible_templates_6_differential_translucent_5_column_3_color','field_62590c30df00e'),(140175,4109,'flexible_templates_6_differential_translucent_5_column_4','Sometimes'),(140176,4109,'_flexible_templates_6_differential_translucent_5_column_4','field_62590c30df010'),(140177,4109,'flexible_templates_6_differential_translucent_5_column_4_color','#7080a7'),(140178,4109,'_flexible_templates_6_differential_translucent_5_column_4_color','field_62590c30df011'),(140179,4109,'flexible_templates_6_differential_translucent_5_column_5','Always'),(140180,4109,'_flexible_templates_6_differential_translucent_5_column_5','field_62590c30df013'),(140181,4109,'flexible_templates_6_differential_translucent_5_column_5_color','#24c1ff'),(140182,4109,'_flexible_templates_6_differential_translucent_5_column_5_color','field_62590c30df014'),(140183,4109,'flexible_templates_6_differential_translucent_6_column_1','Security and confidentiality'),(140184,4109,'_flexible_templates_6_differential_translucent_6_column_1','field_62590c30df008'),(140185,4109,'flexible_templates_6_differential_translucent_6_column_2','Sometimes'),(140186,4109,'_flexible_templates_6_differential_translucent_6_column_2','field_62590c30df00a'),(140187,4109,'flexible_templates_6_differential_translucent_6_column_2_color','#7080a7'),(140188,4109,'_flexible_templates_6_differential_translucent_6_column_2_color','field_62590c30df00b'),(140189,4109,'flexible_templates_6_differential_translucent_6_column_3','Rare'),(140190,4109,'_flexible_templates_6_differential_translucent_6_column_3','field_62590c30df00d'),(140191,4109,'flexible_templates_6_differential_translucent_6_column_3_color','#ff555f'),(140192,4109,'_flexible_templates_6_differential_translucent_6_column_3_color','field_62590c30df00e'),(140193,4109,'flexible_templates_6_differential_translucent_6_column_4','Always'),(140194,4109,'_flexible_templates_6_differential_translucent_6_column_4','field_62590c30df010'),(140195,4109,'flexible_templates_6_differential_translucent_6_column_4_color','#28d9cb'),(140196,4109,'_flexible_templates_6_differential_translucent_6_column_4_color','field_62590c30df011'),(140197,4109,'flexible_templates_6_differential_translucent_6_column_5','Always'),(140198,4109,'_flexible_templates_6_differential_translucent_6_column_5','field_62590c30df013'),(140199,4109,'flexible_templates_6_differential_translucent_6_column_5_color','#24c1ff'),(140200,4109,'_flexible_templates_6_differential_translucent_6_column_5_color','field_62590c30df014'),(140201,4109,'flexible_templates_6_differential_translucent_7_column_1','Top 1% engineering talent'),(140202,4109,'_flexible_templates_6_differential_translucent_7_column_1','field_62590c30df008'),(140203,4109,'flexible_templates_6_differential_translucent_7_column_2','Sometimes'),(140204,4109,'_flexible_templates_6_differential_translucent_7_column_2','field_62590c30df00a'),(140205,4109,'flexible_templates_6_differential_translucent_7_column_2_color','#7080a7'),(140206,4109,'_flexible_templates_6_differential_translucent_7_column_2_color','field_62590c30df00b'),(140207,4109,'flexible_templates_6_differential_translucent_7_column_3','Rare'),(140208,4109,'_flexible_templates_6_differential_translucent_7_column_3','field_62590c30df00d'),(140209,4109,'flexible_templates_6_differential_translucent_7_column_3_color','#ff555f'),(140210,4109,'_flexible_templates_6_differential_translucent_7_column_3_color','field_62590c30df00e'),(140211,4109,'flexible_templates_6_differential_translucent_7_column_4','Sometimes'),(140212,4109,'_flexible_templates_6_differential_translucent_7_column_4','field_62590c30df010'),(140213,4109,'flexible_templates_6_differential_translucent_7_column_4_color','#7080a7'),(140214,4109,'_flexible_templates_6_differential_translucent_7_column_4_color','field_62590c30df011'),(140215,4109,'flexible_templates_6_differential_translucent_7_column_5','Always'),(140216,4109,'_flexible_templates_6_differential_translucent_7_column_5','field_62590c30df013'),(140217,4109,'flexible_templates_6_differential_translucent_7_column_5_color','#24c1ff'),(140218,4109,'_flexible_templates_6_differential_translucent_7_column_5_color','field_62590c30df014'),(140219,4109,'flexible_templates_6_differential_translucent_8_column_1','Top project management talent'),(140220,4109,'_flexible_templates_6_differential_translucent_8_column_1','field_62590c30df008'),(140221,4109,'flexible_templates_6_differential_translucent_8_column_2','Sometimes'),(140222,4109,'_flexible_templates_6_differential_translucent_8_column_2','field_62590c30df00a'),(140223,4109,'flexible_templates_6_differential_translucent_8_column_2_color','#7080a7'),(140224,4109,'_flexible_templates_6_differential_translucent_8_column_2_color','field_62590c30df00b'),(140225,4109,'flexible_templates_6_differential_translucent_8_column_3','Rare'),(140226,4109,'_flexible_templates_6_differential_translucent_8_column_3','field_62590c30df00d'),(140227,4109,'flexible_templates_6_differential_translucent_8_column_3_color','#ff555f'),(140228,4109,'_flexible_templates_6_differential_translucent_8_column_3_color','field_62590c30df00e'),(140229,4109,'flexible_templates_6_differential_translucent_8_column_4','Rare'),(140230,4109,'_flexible_templates_6_differential_translucent_8_column_4','field_62590c30df010'),(140231,4109,'flexible_templates_6_differential_translucent_8_column_4_color','#ff555f'),(140232,4109,'_flexible_templates_6_differential_translucent_8_column_4_color','field_62590c30df011'),(140233,4109,'flexible_templates_6_differential_translucent_8_column_5','Always'),(140234,4109,'_flexible_templates_6_differential_translucent_8_column_5','field_62590c30df013'),(140235,4109,'flexible_templates_6_differential_translucent_8_column_5_color','#24c1ff'),(140236,4109,'_flexible_templates_6_differential_translucent_8_column_5_color','field_62590c30df014'),(140237,4109,'flexible_templates_6_differential_translucent_9_column_1','Dedicated Dev-ops Manager'),(140238,4109,'_flexible_templates_6_differential_translucent_9_column_1','field_62590c30df008'),(140239,4109,'flexible_templates_6_differential_translucent_9_column_2','Sometimes'),(140240,4109,'_flexible_templates_6_differential_translucent_9_column_2','field_62590c30df00a'),(140241,4109,'flexible_templates_6_differential_translucent_9_column_2_color','#7080a7'),(140242,4109,'_flexible_templates_6_differential_translucent_9_column_2_color','field_62590c30df00b'),(140243,4109,'flexible_templates_6_differential_translucent_9_column_3','Rare'),(140244,4109,'_flexible_templates_6_differential_translucent_9_column_3','field_62590c30df00d'),(140245,4109,'flexible_templates_6_differential_translucent_9_column_3_color','#ff555f'),(140246,4109,'_flexible_templates_6_differential_translucent_9_column_3_color','field_62590c30df00e'),(140247,4109,'flexible_templates_6_differential_translucent_9_column_4','Rare'),(140248,4109,'_flexible_templates_6_differential_translucent_9_column_4','field_62590c30df010'),(140249,4109,'flexible_templates_6_differential_translucent_9_column_4_color','#ff555f'),(140250,4109,'_flexible_templates_6_differential_translucent_9_column_4_color','field_62590c30df011'),(140251,4109,'flexible_templates_6_differential_translucent_9_column_5','Always'),(140252,4109,'_flexible_templates_6_differential_translucent_9_column_5','field_62590c30df013'),(140253,4109,'flexible_templates_6_differential_translucent_9_column_5_color','#24c1ff'),(140254,4109,'_flexible_templates_6_differential_translucent_9_column_5_color','field_62590c30df014'),(140255,4109,'flexible_templates_6_differential_translucent_10_column_1','Scalable solutions i.e. can easily grow as you do'),(140256,4109,'_flexible_templates_6_differential_translucent_10_column_1','field_62590c30df008'),(140257,4109,'flexible_templates_6_differential_translucent_10_column_2','Sometimes'),(140258,4109,'_flexible_templates_6_differential_translucent_10_column_2','field_62590c30df00a'),(140259,4109,'flexible_templates_6_differential_translucent_10_column_2_color','#7080a7'),(140260,4109,'_flexible_templates_6_differential_translucent_10_column_2_color','field_62590c30df00b'),(140261,4109,'flexible_templates_6_differential_translucent_10_column_3','Rare'),(140262,4109,'_flexible_templates_6_differential_translucent_10_column_3','field_62590c30df00d'),(140263,4109,'flexible_templates_6_differential_translucent_10_column_3_color','#ff555f'),(140264,4109,'_flexible_templates_6_differential_translucent_10_column_3_color','field_62590c30df00e'),(140265,4109,'flexible_templates_6_differential_translucent_10_column_4','Rare'),(140266,4109,'_flexible_templates_6_differential_translucent_10_column_4','field_62590c30df010'),(140267,4109,'flexible_templates_6_differential_translucent_10_column_4_color','#ff555f'),(140268,4109,'_flexible_templates_6_differential_translucent_10_column_4_color','field_62590c30df011'),(140269,4109,'flexible_templates_6_differential_translucent_10_column_5','Always'),(140270,4109,'_flexible_templates_6_differential_translucent_10_column_5','field_62590c30df013'),(140271,4109,'flexible_templates_6_differential_translucent_10_column_5_color','#24c1ff'),(140272,4109,'_flexible_templates_6_differential_translucent_10_column_5_color','field_62590c30df014'),(140273,4109,'flexible_templates_6_differential_translucent_11_column_1','Understand your business objectives and outcomes. You want to drive.'),(140274,4109,'_flexible_templates_6_differential_translucent_11_column_1','field_62590c30df008'),(140275,4109,'flexible_templates_6_differential_translucent_11_column_2','Sometimes'),(140276,4109,'_flexible_templates_6_differential_translucent_11_column_2','field_62590c30df00a'),(140277,4109,'flexible_templates_6_differential_translucent_11_column_2_color','#7080a7'),(140278,4109,'_flexible_templates_6_differential_translucent_11_column_2_color','field_62590c30df00b'),(140279,4109,'flexible_templates_6_differential_translucent_11_column_3','Sometimes'),(140280,4109,'_flexible_templates_6_differential_translucent_11_column_3','field_62590c30df00d'),(140281,4109,'flexible_templates_6_differential_translucent_11_column_3_color','#7080a7'),(140282,4109,'_flexible_templates_6_differential_translucent_11_column_3_color','field_62590c30df00e'),(140283,4109,'flexible_templates_6_differential_translucent_11_column_4','Always'),(140284,4109,'_flexible_templates_6_differential_translucent_11_column_4','field_62590c30df010'),(140285,4109,'flexible_templates_6_differential_translucent_11_column_4_color','#28d9cb'),(140286,4109,'_flexible_templates_6_differential_translucent_11_column_4_color','field_62590c30df011'),(140287,4109,'flexible_templates_6_differential_translucent_11_column_5','Always'),(140288,4109,'_flexible_templates_6_differential_translucent_11_column_5','field_62590c30df013'),(140289,4109,'flexible_templates_6_differential_translucent_11_column_5_color','#24c1ff'),(140290,4109,'_flexible_templates_6_differential_translucent_11_column_5_color','field_62590c30df014'),(140291,4109,'flexible_templates_6_differential_translucent_12_column_1','Amazing'),(140292,4109,'_flexible_templates_6_differential_translucent_12_column_1','field_62590c30df008'),(140293,4109,'flexible_templates_6_differential_translucent_12_column_2','Sometimes'),(140294,4109,'_flexible_templates_6_differential_translucent_12_column_2','field_62590c30df00a'),(140295,4109,'flexible_templates_6_differential_translucent_12_column_2_color','#7080a7'),(140296,4109,'_flexible_templates_6_differential_translucent_12_column_2_color','field_62590c30df00b'),(140297,4109,'flexible_templates_6_differential_translucent_12_column_3','Rare'),(140298,4109,'_flexible_templates_6_differential_translucent_12_column_3','field_62590c30df00d'),(140299,4109,'flexible_templates_6_differential_translucent_12_column_3_color','#ff555f'),(140300,4109,'_flexible_templates_6_differential_translucent_12_column_3_color','field_62590c30df00e'),(140301,4109,'flexible_templates_6_differential_translucent_12_column_4','Rare'),(140302,4109,'_flexible_templates_6_differential_translucent_12_column_4','field_62590c30df010'),(140303,4109,'flexible_templates_6_differential_translucent_12_column_4_color','#ff555f'),(140304,4109,'_flexible_templates_6_differential_translucent_12_column_4_color','field_62590c30df011'),(140305,4109,'flexible_templates_6_differential_translucent_12_column_5','Always'),(140306,4109,'_flexible_templates_6_differential_translucent_12_column_5','field_62590c30df013'),(140307,4109,'flexible_templates_6_differential_translucent_12_column_5_color','#24c1ff'),(140308,4109,'_flexible_templates_6_differential_translucent_12_column_5_color','field_62590c30df014'),(140309,4109,'flexible_templates_6_differential_translucent_13_column_1','24 hour dedicated support'),(140310,4109,'_flexible_templates_6_differential_translucent_13_column_1','field_62590c30df008'),(140311,4109,'flexible_templates_6_differential_translucent_13_column_2','Rare'),(140312,4109,'_flexible_templates_6_differential_translucent_13_column_2','field_62590c30df00a'),(140313,4109,'flexible_templates_6_differential_translucent_13_column_2_color','#ff555f'),(140314,4109,'_flexible_templates_6_differential_translucent_13_column_2_color','field_62590c30df00b'),(140315,4109,'flexible_templates_6_differential_translucent_13_column_3','Rare'),(140316,4109,'_flexible_templates_6_differential_translucent_13_column_3','field_62590c30df00d'),(140317,4109,'flexible_templates_6_differential_translucent_13_column_3_color','#ff555f'),(140318,4109,'_flexible_templates_6_differential_translucent_13_column_3_color','field_62590c30df00e'),(140319,4109,'flexible_templates_6_differential_translucent_13_column_4','Rare'),(140320,4109,'_flexible_templates_6_differential_translucent_13_column_4','field_62590c30df010'),(140321,4109,'flexible_templates_6_differential_translucent_13_column_4_color','#ff555f'),(140322,4109,'_flexible_templates_6_differential_translucent_13_column_4_color','field_62590c30df011'),(140323,4109,'flexible_templates_6_differential_translucent_13_column_5','Always'),(140324,4109,'_flexible_templates_6_differential_translucent_13_column_5','field_62590c30df013'),(140325,4109,'flexible_templates_6_differential_translucent_13_column_5_color','#24c1ff'),(140326,4109,'_flexible_templates_6_differential_translucent_13_column_5_color','field_62590c30df014'),(140336,4064,'_yoast_wpseo_focuskw','software teams'),(140337,4064,'_yoast_wpseo_title','TEKTeams: On Demand Software Engineering Teams | Translucent'),(140338,4064,'_yoast_wpseo_metadesc','Tailored top 1 % software engineering teams designed to fit your business needs. Build your software the right way, with the right people.'),(140339,4064,'_yoast_wpseo_linkdex','46'),(140340,4111,'flexible_templates','a:8:{i:0;s:16:\"tek-teams-banner\";i:1;s:20:\"tek-teams-two-column\";i:2;s:14:\"tek-team-about\";i:3;s:21:\"tek-teams-development\";i:4;s:18:\"tek_teams_benifits\";i:5;s:17:\"tek-team-whats-is\";i:6;s:34:\"tek-teams-translucent-differential\";i:7;s:17:\"lets_talk_section\";}'),(140341,4111,'_flexible_templates','field_6254f4d84ef9b'),(140342,4111,'flexible_templates_0_image','4066'),(140343,4111,'_flexible_templates_0_image','field_6255038c2e6ae_field_6254fdc5efa2a'),(140344,4111,'flexible_templates_0_mob_image','4067'),(140345,4111,'_flexible_templates_0_mob_image','field_625503db2e6af_field_6254fdcbefa2b'),(140346,4111,'flexible_templates_0_icon','4068'),(140347,4111,'_flexible_templates_0_icon','field_6255095042ef2_field_62550482480cb'),(140348,4111,'flexible_templates_0_heading','TEKTeams'),(140349,4111,'_flexible_templates_0_heading','field_6255096442ef3_field_6254fdb2efa27'),(140350,4111,'flexible_templates_0_sub_heading','TEK™ WORLD'),(140351,4111,'_flexible_templates_0_sub_heading','field_6255097642ef4_field_6254fdbaefa28'),(140352,4111,'flexible_templates_1_heading','Gain access to top 1% tech talent with a trusted partner that delivers cloud native solutions and value.'),(140353,4111,'_flexible_templates_1_heading','field_62551ac3a6f96_field_6254fdb2efa27'),(140354,4111,'flexible_templates_1_sub_heading','THE TEAM YOU NEED'),(140355,4111,'_flexible_templates_1_sub_heading','field_62551ae4a6f97_field_6254fdbaefa28'),(140356,4111,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(140357,4111,'_flexible_templates_1_cta','field_62551b56a6f98_field_62551b3e101c4'),(140358,4111,'flexible_templates_1_copy','The best technology. The best people. Access tailored software engineering teams with industry-specific experience without the hassle of hiring and maintaining internal teams. We understand how hard it is to get and keep top talent. We take entire liability for delivery and execution of the project.'),(140359,4111,'_flexible_templates_1_copy','field_62551b74a6f99_field_6254fdc0efa29'),(140360,4111,'flexible_templates_2_image','4069'),(140361,4111,'_flexible_templates_2_image','field_625523de9609f_field_6254fdc5efa2a'),(140362,4111,'flexible_templates_2_mob_image','4070'),(140363,4111,'_flexible_templates_2_mob_image','field_625523f4960a0_field_6254fdcbefa2b'),(140364,4111,'flexible_templates_2_icon','4071'),(140365,4111,'_flexible_templates_2_icon','field_6255246d960a1_field_62550482480cb'),(140366,4111,'flexible_templates_2_heading','What are TEKTeams?'),(140367,4111,'_flexible_templates_2_heading','field_62552482960a2_field_6254fdb2efa27'),(140368,4111,'flexible_templates_2_copy','TEKTeams are your dedicated development teams built on Translucent principals that, as part of the TEK ecosystem, combine trust, processes, people, and technology to deliver value.\r\n\r\nTranslucent has created a process that brings together the best people in the industry with various skills to develop and maintain the highest quality software. A perfect combination of roles, talent, skillset, and the right work environment.\r\n\r\nTEKTeams provide the precise expertise your organization needs to execute a project successfully.'),(140369,4111,'_flexible_templates_2_copy','field_625525b15629c'),(140370,4111,'flexible_templates_2_content_right','Our onshore/nearshore model combines resources across the Americas to overcome challenges your project might encounter; we work closely alongside your company staff to attain your business goals. Increase the number of resources you have on hand to help you develop and manage intelligent applications and platforms.\r\n\r\nTEKTeams are the most cost-effective way to get the talent you need for your cloud native projects without taking up all of your time or budget.'),(140371,4111,'_flexible_templates_2_content_right','field_625525ba5629d'),(140372,4111,'flexible_templates_3_image','4072'),(140373,4111,'_flexible_templates_3_image','field_62552ada52711_field_6254fdc5efa2a'),(140374,4111,'flexible_templates_3_mob_image','4073'),(140375,4111,'_flexible_templates_3_mob_image','field_62552aed52712_field_6254fdcbefa2b'),(140376,4111,'flexible_templates_3_icon','4074'),(140377,4111,'_flexible_templates_3_icon','field_62552b7652713_field_62550482480cb'),(140378,4111,'flexible_templates_3_heading','Get started with the best resources for your project'),(140379,4111,'_flexible_templates_3_heading','field_62552baf52715_field_6254fdb2efa27'),(140380,4111,'flexible_templates_3_copy','TEKTeams are tailored software engineering teams to help your business develop and manage smarter apps. We match business goals to the right technology and teams to drive better results. With TEKTeams you get access to the best of the best resources for your cloud native projects at a price you can afford, with the capacity to scale as needed, according to your demands. Here is what to expect working with TEKTeams:'),(140381,4111,'_flexible_templates_3_copy','field_62552b8552714_field_6254fdc0efa29'),(140382,4111,'flexible_templates_3_development_team_steps_0_icon','4075'),(140383,4111,'_flexible_templates_3_development_team_steps_0_icon','field_62552cdb784a9_field_62550482480cb'),(140384,4111,'flexible_templates_3_development_team_steps_0_heading','A trusted tech partner'),(140385,4111,'_flexible_templates_3_development_team_steps_0_heading','field_62552ced784aa_field_6254fdb2efa27'),(140386,4111,'flexible_templates_3_development_team_steps_0_copy','

Increase your workforce by partnering with the top 1% teams tailored to your business needs

\r\n

We will explain and document the entire development process and make sure to meet business and project objectives

\r\n

Scale your teams as needed with a global network united as one

'),(140387,4111,'_flexible_templates_3_development_team_steps_0_copy','field_62552cfe784ab_field_6254fdc0efa29'),(140388,4111,'flexible_templates_3_development_team_steps_1_icon','4076'),(140389,4111,'_flexible_templates_3_development_team_steps_1_icon','field_62552cdb784a9_field_62550482480cb'),(140390,4111,'flexible_templates_3_development_team_steps_1_heading','Break down vision into requirements'),(140391,4111,'_flexible_templates_3_development_team_steps_1_heading','field_62552ced784aa_field_6254fdb2efa27'),(140392,4111,'flexible_templates_3_development_team_steps_1_copy','

We will validate your idea with a future vision that is in sync with the realities that your business is currently facing

\r\n

Cloud native solutions make it possible to work within clients\' budgets

\r\n

Planning, execution, support, best practices, and experience in breaking down the concept into a user stories tech road map

'),(140393,4111,'_flexible_templates_3_development_team_steps_1_copy','field_62552cfe784ab_field_6254fdc0efa29'),(140394,4111,'flexible_templates_3_development_team_steps_2_icon','4077'),(140395,4111,'_flexible_templates_3_development_team_steps_2_icon','field_62552cdb784a9_field_62550482480cb'),(140396,4111,'flexible_templates_3_development_team_steps_2_heading','Build your team and start innovating'),(140397,4111,'_flexible_templates_3_development_team_steps_2_heading','field_62552ced784aa_field_6254fdb2efa27'),(140398,4111,'flexible_templates_3_development_team_steps_2_copy',' The Team You Need For Your Cloud Native Project:\r\n

Expanding your workforce is easier than you think, with TEKTeams, you can quickly and affordably grow your company with teams to cover all of your business needs

\r\n

With the right team behind your project, you\'ll get better results, more quickly

\r\n\r\n'),(140399,4111,'_flexible_templates_3_development_team_steps_2_copy','field_62552cfe784ab_field_6254fdc0efa29'),(140400,4111,'flexible_templates_3_development_team_steps','3'),(140401,4111,'_flexible_templates_3_development_team_steps','field_62552cbb784a8'),(140402,4111,'flexible_templates_3_cta','a:3:{s:5:\"title\";s:11:\"Gain Access\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(140403,4111,'_flexible_templates_3_cta','field_62552c6a784a7_field_62551b3e101c4'),(140404,4111,'flexible_templates_4_image','4078'),(140405,4111,'_flexible_templates_4_image','field_625538ef16bb0_field_6254fdc5efa2a'),(140406,4111,'flexible_templates_4_mob_image','4079'),(140407,4111,'_flexible_templates_4_mob_image','field_6255391616bb1_field_6254fdcbefa2b'),(140408,4111,'flexible_templates_4_icon','4080'),(140409,4111,'_flexible_templates_4_icon','field_62553d28bca93_field_62550482480cb'),(140410,4111,'flexible_templates_4_heading','Benefits of TEKTeams'),(140411,4111,'_flexible_templates_4_heading','field_6255397e16bb2_field_6254fdb2efa27'),(140412,4111,'flexible_templates_4_development_team_steps_0_icon','4086'),(140413,4111,'_flexible_templates_4_development_team_steps_0_icon','field_625539a816bb4_field_62550482480cb'),(140414,4111,'flexible_templates_4_development_team_steps_0_heading','Fully Managed'),(140415,4111,'_flexible_templates_4_development_team_steps_0_heading','field_625539a816bb5_field_6254fdb2efa27'),(140416,4111,'flexible_templates_4_development_team_steps_0_copy','Translucent is responsible for hiring, managing, and delivering technical expertise from start to finish. Avoid hiring and team management issues.'),(140417,4111,'_flexible_templates_4_development_team_steps_0_copy','field_625539a816bb6_field_6254fdc0efa29'),(140418,4111,'flexible_templates_4_development_team_steps_1_icon','4085'),(140419,4111,'_flexible_templates_4_development_team_steps_1_icon','field_625539a816bb4_field_62550482480cb'),(140420,4111,'flexible_templates_4_development_team_steps_1_heading','Remote'),(140421,4111,'_flexible_templates_4_development_team_steps_1_heading','field_625539a816bb5_field_6254fdb2efa27'),(140422,4111,'flexible_templates_4_development_team_steps_1_copy','Completely remote. Save office space and gain more time for your employees. Over the last 12 years, we have perfected a remote software development system called TEKProcess.'),(140423,4111,'_flexible_templates_4_development_team_steps_1_copy','field_625539a816bb6_field_6254fdc0efa29'),(140424,4111,'flexible_templates_4_development_team_steps_2_icon','4084'),(140425,4111,'_flexible_templates_4_development_team_steps_2_icon','field_625539a816bb4_field_62550482480cb'),(140426,4111,'flexible_templates_4_development_team_steps_2_heading','Access to Translucent Experts'),(140427,4111,'_flexible_templates_4_development_team_steps_2_heading','field_625539a816bb5_field_6254fdb2efa27'),(140428,4111,'flexible_templates_4_development_team_steps_2_copy','Part of working with TEKTeams is access to our software architects and tech leads at no extra cost.'),(140429,4111,'_flexible_templates_4_development_team_steps_2_copy','field_625539a816bb6_field_6254fdc0efa29'),(140430,4111,'flexible_templates_4_development_team_steps_3_icon','4083'),(140431,4111,'_flexible_templates_4_development_team_steps_3_icon','field_625539a816bb4_field_62550482480cb'),(140432,4111,'flexible_templates_4_development_team_steps_3_heading','Access to Top Tech Talent'),(140433,4111,'_flexible_templates_4_development_team_steps_3_heading','field_625539a816bb5_field_6254fdb2efa27'),(140434,4111,'flexible_templates_4_development_team_steps_3_copy','Our proven hiring and continuous employee improvement processes ensure that only top talent works on each project.'),(140435,4111,'_flexible_templates_4_development_team_steps_3_copy','field_625539a816bb6_field_6254fdc0efa29'),(140436,4111,'flexible_templates_4_development_team_steps_4_icon','4082'),(140437,4111,'_flexible_templates_4_development_team_steps_4_icon','field_625539a816bb4_field_62550482480cb'),(140438,4111,'flexible_templates_4_development_team_steps_4_heading','Team Scalability'),(140439,4111,'_flexible_templates_4_development_team_steps_4_heading','field_625539a816bb5_field_6254fdb2efa27'),(140440,4111,'flexible_templates_4_development_team_steps_4_copy','On-demand resources are ready when you need to scale the team to meet business demands.'),(140441,4111,'_flexible_templates_4_development_team_steps_4_copy','field_625539a816bb6_field_6254fdc0efa29'),(140442,4111,'flexible_templates_4_development_team_steps_5_icon','4081'),(140443,4111,'_flexible_templates_4_development_team_steps_5_icon','field_625539a816bb4_field_62550482480cb'),(140444,4111,'flexible_templates_4_development_team_steps_5_heading','Start Your Journey Now'),(140445,4111,'_flexible_templates_4_development_team_steps_5_heading','field_625539a816bb5_field_6254fdb2efa27'),(140446,4111,'flexible_templates_4_development_team_steps_5_copy','Our TEKTeams are ready to help you now.'),(140447,4111,'_flexible_templates_4_development_team_steps_5_copy','field_625539a816bb6_field_6254fdc0efa29'),(140448,4111,'flexible_templates_4_development_team_steps','6'),(140449,4111,'_flexible_templates_4_development_team_steps','field_625539a816bb3'),(140450,4111,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:13:\"Start Scaling\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(140451,4111,'_flexible_templates_4_cta','field_625539ce16bb7_field_62551b3e101c4'),(140452,4111,'flexible_templates_5_image','4087'),(140453,4111,'_flexible_templates_5_image','field_62553e7d5dd54_field_6254fdc5efa2a'),(140454,4111,'flexible_templates_5_mob_image','4088'),(140455,4111,'_flexible_templates_5_mob_image','field_62553eab5dd55_field_6254fdcbefa2b'),(140456,4111,'flexible_templates_5_icon','4089'),(140457,4111,'_flexible_templates_5_icon','field_62553eee5dd56_field_62550482480cb'),(140458,4111,'flexible_templates_5_heading','The team you need for your cloud native project'),(140459,4111,'_flexible_templates_5_heading','field_62553f075dd57_field_6254fdb2efa27'),(140460,4111,'flexible_templates_5_heading_mobile','The team you need for your cloud native project'),(140461,4111,'_flexible_templates_5_heading_mobile','field_62553f185dd58'),(140462,4111,'flexible_templates_5_copy','We help companies build and scale smart applications, working together to achieve the best results by pairing them with our award-winning team of experts. That includes project managers, senior developers, and QA specialists who have been handpicked to execute on specific goals.'),(140463,4111,'_flexible_templates_5_copy','field_62553f315dd59_field_6254fdc0efa29'),(140464,4111,'flexible_templates_5_development_team_steps_0_icon','4090'),(140465,4111,'_flexible_templates_5_development_team_steps_0_icon','field_625540b262816_field_62550482480cb'),(140466,4111,'flexible_templates_5_development_team_steps_0_heading','Frontend Engineers'),(140467,4111,'_flexible_templates_5_development_team_steps_0_heading','field_625540b262817_field_6254fdb2efa27'),(140468,4111,'flexible_templates_5_development_team_steps_0_copy','Responsible for developing the \"visible\" part of the project, these professionals are the ones who code and test user interface elements and functionality.'),(140469,4111,'_flexible_templates_5_development_team_steps_0_copy','field_625540b262818_field_6254fdc0efa29'),(140470,4111,'flexible_templates_5_development_team_steps_1_icon','4091'),(140471,4111,'_flexible_templates_5_development_team_steps_1_icon','field_625540b262816_field_62550482480cb'),(140472,4111,'flexible_templates_5_development_team_steps_1_heading','QA Engineers'),(140473,4111,'_flexible_templates_5_development_team_steps_1_heading','field_625540b262817_field_6254fdb2efa27'),(140474,4111,'flexible_templates_5_development_team_steps_1_copy','These professionals are in charge of the quality of the entire development life cycle. They don\'t just ensure that the product is as bug-free as possible but also that the processes used to build it have optimal quality.'),(140475,4111,'_flexible_templates_5_development_team_steps_1_copy','field_625540b262818_field_6254fdc0efa29'),(140476,4111,'flexible_templates_5_development_team_steps_2_icon','4092'),(140477,4111,'_flexible_templates_5_development_team_steps_2_icon','field_625540b262816_field_62550482480cb'),(140478,4111,'flexible_templates_5_development_team_steps_2_heading','Business Analysts'),(140479,4111,'_flexible_templates_5_development_team_steps_2_heading','field_625540b262817_field_6254fdb2efa27'),(140480,4111,'flexible_templates_5_development_team_steps_2_copy','They serve as bridges between the IT team and the business, evaluating processes, determining requirements, and offering suggestions and reports to executives.'),(140481,4111,'_flexible_templates_5_development_team_steps_2_copy','field_625540b262818_field_6254fdc0efa29'),(140482,4111,'flexible_templates_5_development_team_steps_3_icon','4093'),(140483,4111,'_flexible_templates_5_development_team_steps_3_icon','field_625540b262816_field_62550482480cb'),(140484,4111,'flexible_templates_5_development_team_steps_3_heading','Backend Engineers'),(140485,4111,'_flexible_templates_5_development_team_steps_3_heading','field_625540b262817_field_6254fdb2efa27'),(140486,4111,'flexible_templates_5_development_team_steps_3_copy','They serve as bridges between the IT team and the business, evaluating processes, determining requirements, and offering suggestions and reports to executives.'),(140487,4111,'_flexible_templates_5_development_team_steps_3_copy','field_625540b262818_field_6254fdc0efa29'),(140488,4111,'flexible_templates_5_development_team_steps_4_icon','4094'),(140489,4111,'_flexible_templates_5_development_team_steps_4_icon','field_625540b262816_field_62550482480cb'),(140490,4111,'flexible_templates_5_development_team_steps_4_heading','UX/UI Designers'),(140491,4111,'_flexible_templates_5_development_team_steps_4_heading','field_625540b262817_field_6254fdb2efa27'),(140492,4111,'flexible_templates_5_development_team_steps_4_copy','They are responsible for ensuring that the user experience is intuitive, simple, and engaging.'),(140493,4111,'_flexible_templates_5_development_team_steps_4_copy','field_625540b262818_field_6254fdc0efa29'),(140494,4111,'flexible_templates_5_development_team_steps_5_icon','4095'),(140495,4111,'_flexible_templates_5_development_team_steps_5_icon','field_625540b262816_field_62550482480cb'),(140496,4111,'flexible_templates_5_development_team_steps_5_heading','Product Owners'),(140497,4111,'_flexible_templates_5_development_team_steps_5_heading','field_625540b262817_field_6254fdb2efa27'),(140498,4111,'flexible_templates_5_development_team_steps_5_copy','The leaders of the development team, they initiate, plan, design, execute, and monitor the entire development process.'),(140499,4111,'_flexible_templates_5_development_team_steps_5_copy','field_625540b262818_field_6254fdc0efa29'),(140500,4111,'flexible_templates_5_development_team_steps_6_icon','4096'),(140501,4111,'_flexible_templates_5_development_team_steps_6_icon','field_625540b262816_field_62550482480cb'),(140502,4111,'flexible_templates_5_development_team_steps_6_heading','Data/ML Engineers'),(140503,4111,'_flexible_templates_5_development_team_steps_6_heading','field_625540b262817_field_6254fdb2efa27'),(140504,4111,'flexible_templates_5_development_team_steps_6_copy','The leaders of the development team, they initiate, plan, design, execute, and monitor the entire development process.'),(140505,4111,'_flexible_templates_5_development_team_steps_6_copy','field_625540b262818_field_6254fdc0efa29'),(140506,4111,'flexible_templates_5_development_team_steps_7_icon','4097'),(140507,4111,'_flexible_templates_5_development_team_steps_7_icon','field_625540b262816_field_62550482480cb'),(140508,4111,'flexible_templates_5_development_team_steps_7_heading','SRE/DevOps Engineers'),(140509,4111,'_flexible_templates_5_development_team_steps_7_heading','field_625540b262817_field_6254fdb2efa27'),(140510,4111,'flexible_templates_5_development_team_steps_7_copy','Professionals that work with the developers on the team to better coordinate development, operations, and testing efforts.'),(140511,4111,'_flexible_templates_5_development_team_steps_7_copy','field_625540b262818_field_6254fdc0efa29'),(140512,4111,'flexible_templates_5_development_team_steps_8_icon','4098'),(140513,4111,'_flexible_templates_5_development_team_steps_8_icon','field_625540b262816_field_62550482480cb'),(140514,4111,'flexible_templates_5_development_team_steps_8_heading','Scrum Masters'),(140515,4111,'_flexible_templates_5_development_team_steps_8_heading','field_625540b262817_field_6254fdb2efa27'),(140516,4111,'flexible_templates_5_development_team_steps_8_copy','The leaders of the development team, they initiate, plan, design, execute, and monitor the entire development process.'),(140517,4111,'_flexible_templates_5_development_team_steps_8_copy','field_625540b262818_field_6254fdc0efa29'),(140518,4111,'flexible_templates_5_development_team_steps','9'),(140519,4111,'_flexible_templates_5_development_team_steps','field_625540b262815'),(140520,4111,'flexible_templates_5_cta','a:3:{s:5:\"title\";s:15:\"Build Your Team\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(140521,4111,'_flexible_templates_5_cta','field_6255410462819_field_62551b3e101c4'),(140522,4111,'flexible_templates_6_heading','A better chance at success with TEKTeams'),(140523,4111,'_flexible_templates_6_heading','field_62554b91172d7_field_6254fdb2efa27'),(140524,4111,'flexible_templates_6_sub_heading','Dev Shop vs Offshore vs In-house vs TEKTeams'),(140525,4111,'_flexible_templates_6_sub_heading','field_62554ba5172d8_field_6254fdbaefa28'),(140526,4111,'flexible_templates_6_icon','4099'),(140527,4111,'_flexible_templates_6_icon','field_62554d69172e1_field_62550482480cb'),(140528,4111,'flexible_templates_6_differential_translucent_header_0_heading','Your Needs'),(140529,4111,'_flexible_templates_6_differential_translucent_header_0_heading','field_625688668727a'),(140530,4111,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(140531,4111,'_flexible_templates_6_differential_translucent_header_0_color','field_62568e42de80b'),(140532,4111,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(140533,4111,'_flexible_templates_6_differential_translucent_header_1_heading','field_625688668727a'),(140534,4111,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(140535,4111,'_flexible_templates_6_differential_translucent_header_1_color','field_62568e42de80b'),(140536,4111,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore Teams'),(140537,4111,'_flexible_templates_6_differential_translucent_header_2_heading','field_625688668727a'),(140538,4111,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(140539,4111,'_flexible_templates_6_differential_translucent_header_2_color','field_62568e42de80b'),(140540,4111,'flexible_templates_6_differential_translucent_header_3_heading','Hiring In-house Developers'),(140541,4111,'_flexible_templates_6_differential_translucent_header_3_heading','field_625688668727a'),(140542,4111,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(140543,4111,'_flexible_templates_6_differential_translucent_header_3_color','field_62568e42de80b'),(140544,4111,'flexible_templates_6_differential_translucent_header_4_heading','TEKTeams'),(140545,4111,'_flexible_templates_6_differential_translucent_header_4_heading','field_625688668727a'),(140546,4111,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(140547,4111,'_flexible_templates_6_differential_translucent_header_4_color','field_62568e42de80b'),(140548,4111,'flexible_templates_6_differential_translucent_header','5'),(140549,4111,'_flexible_templates_6_differential_translucent_header','field_6256884687279'),(140550,4111,'flexible_templates_6_differential_translucent_0_heading_1','1'),(140551,4111,'_flexible_templates_6_differential_translucent_0_heading_1','field_625689c138821'),(140552,4111,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(140553,4111,'_flexible_templates_6_differential_translucent_0_column_1','field_62554d45172dc'),(140554,4111,'flexible_templates_6_differential_translucent_0_heading_2','Working with a Dev Shop'),(140555,4111,'_flexible_templates_6_differential_translucent_0_heading_2','field_62568a29727b5'),(140556,4111,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(140557,4111,'_flexible_templates_6_differential_translucent_0_column_2','field_62554d4a172dd'),(140558,4111,'flexible_templates_6_differential_translucent_0_column_2_color','#7080a7'),(140559,4111,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62554fcda0e79'),(140560,4111,'flexible_templates_6_differential_translucent_0_heading_3','3'),(140561,4111,'_flexible_templates_6_differential_translucent_0_heading_3','field_62568a30727b6'),(140562,4111,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(140563,4111,'_flexible_templates_6_differential_translucent_0_column_3','field_62554d4d172de'),(140564,4111,'flexible_templates_6_differential_translucent_0_column_3_color','#ff555f'),(140565,4111,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62554ff6a0e7a'),(140566,4111,'flexible_templates_6_differential_translucent_0_heading_4','4'),(140567,4111,'_flexible_templates_6_differential_translucent_0_heading_4','field_62568a37727b7'),(140568,4111,'flexible_templates_6_differential_translucent_0_column_4','Always'),(140569,4111,'_flexible_templates_6_differential_translucent_0_column_4','field_62554d4f172df'),(140570,4111,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(140571,4111,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62555028a0e7c'),(140572,4111,'flexible_templates_6_differential_translucent_0_heading_5','5'),(140573,4111,'_flexible_templates_6_differential_translucent_0_heading_5','field_62568a40727b8'),(140574,4111,'flexible_templates_6_differential_translucent_0_column_5','Always'),(140575,4111,'_flexible_templates_6_differential_translucent_0_column_5','field_62555011a0e7b'),(140576,4111,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(140577,4111,'_flexible_templates_6_differential_translucent_0_column_5_color','field_6255503aa0e7d'),(140578,4111,'flexible_templates_6_differential_translucent_1_heading_1','6'),(140579,4111,'_flexible_templates_6_differential_translucent_1_heading_1','field_625689c138821'),(140580,4111,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (speed to market)'),(140581,4111,'_flexible_templates_6_differential_translucent_1_column_1','field_62554d45172dc'),(140582,4111,'flexible_templates_6_differential_translucent_1_heading_2','7'),(140583,4111,'_flexible_templates_6_differential_translucent_1_heading_2','field_62568a29727b5'),(140584,4111,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(140585,4111,'_flexible_templates_6_differential_translucent_1_column_2','field_62554d4a172dd'),(140586,4111,'flexible_templates_6_differential_translucent_1_column_2_color','#ff555f'),(140587,4111,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62554fcda0e79'),(140588,4111,'flexible_templates_6_differential_translucent_1_heading_3','8'),(140589,4111,'_flexible_templates_6_differential_translucent_1_heading_3','field_62568a30727b6'),(140590,4111,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(140591,4111,'_flexible_templates_6_differential_translucent_1_column_3','field_62554d4d172de'),(140592,4111,'flexible_templates_6_differential_translucent_1_column_3_color','#7080a7'),(140593,4111,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62554ff6a0e7a'),(140594,4111,'flexible_templates_6_differential_translucent_1_heading_4','9'),(140595,4111,'_flexible_templates_6_differential_translucent_1_heading_4','field_62568a37727b7'),(140596,4111,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(140597,4111,'_flexible_templates_6_differential_translucent_1_column_4','field_62554d4f172df'),(140598,4111,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(140599,4111,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62555028a0e7c'),(140600,4111,'flexible_templates_6_differential_translucent_1_heading_5','10'),(140601,4111,'_flexible_templates_6_differential_translucent_1_heading_5','field_62568a40727b8'),(140602,4111,'flexible_templates_6_differential_translucent_1_column_5','Always'),(140603,4111,'_flexible_templates_6_differential_translucent_1_column_5','field_62555011a0e7b'),(140604,4111,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(140605,4111,'_flexible_templates_6_differential_translucent_1_column_5_color','field_6255503aa0e7d'),(140606,4111,'flexible_templates_6_differential_translucent_2_heading_1','11'),(140607,4111,'_flexible_templates_6_differential_translucent_2_heading_1','field_625689c138821'),(140608,4111,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(140609,4111,'_flexible_templates_6_differential_translucent_2_column_1','field_62554d45172dc'),(140610,4111,'flexible_templates_6_differential_translucent_2_heading_2','12'),(140611,4111,'_flexible_templates_6_differential_translucent_2_heading_2','field_62568a29727b5'),(140612,4111,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(140613,4111,'_flexible_templates_6_differential_translucent_2_column_2','field_62554d4a172dd'),(140614,4111,'flexible_templates_6_differential_translucent_2_column_2_color','#7080a7'),(140615,4111,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62554fcda0e79'),(140616,4111,'flexible_templates_6_differential_translucent_2_heading_3','13'),(140617,4111,'_flexible_templates_6_differential_translucent_2_heading_3','field_62568a30727b6'),(140618,4111,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(140619,4111,'_flexible_templates_6_differential_translucent_2_column_3','field_62554d4d172de'),(140620,4111,'flexible_templates_6_differential_translucent_2_column_3_color','#ff555f'),(140621,4111,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62554ff6a0e7a'),(140622,4111,'flexible_templates_6_differential_translucent_2_heading_4','14'),(140623,4111,'_flexible_templates_6_differential_translucent_2_heading_4','field_62568a37727b7'),(140624,4111,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(140625,4111,'_flexible_templates_6_differential_translucent_2_column_4','field_62554d4f172df'),(140626,4111,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(140627,4111,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62555028a0e7c'),(140628,4111,'flexible_templates_6_differential_translucent_2_heading_5','15'),(140629,4111,'_flexible_templates_6_differential_translucent_2_heading_5','field_62568a40727b8'),(140630,4111,'flexible_templates_6_differential_translucent_2_column_5','Always'),(140631,4111,'_flexible_templates_6_differential_translucent_2_column_5','field_62555011a0e7b'),(140632,4111,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(140633,4111,'_flexible_templates_6_differential_translucent_2_column_5_color','field_6255503aa0e7d'),(140634,4111,'flexible_templates_6_differential_translucent_3_heading_1','16'),(140635,4111,'_flexible_templates_6_differential_translucent_3_heading_1','field_625689c138821'),(140636,4111,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(140637,4111,'_flexible_templates_6_differential_translucent_3_column_1','field_62554d45172dc'),(140638,4111,'flexible_templates_6_differential_translucent_3_heading_2','17'),(140639,4111,'_flexible_templates_6_differential_translucent_3_heading_2','field_62568a29727b5'),(140640,4111,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(140641,4111,'_flexible_templates_6_differential_translucent_3_column_2','field_62554d4a172dd'),(140642,4111,'flexible_templates_6_differential_translucent_3_column_2_color','#7080a7'),(140643,4111,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62554fcda0e79'),(140644,4111,'flexible_templates_6_differential_translucent_3_heading_3','18'),(140645,4111,'_flexible_templates_6_differential_translucent_3_heading_3','field_62568a30727b6'),(140646,4111,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(140647,4111,'_flexible_templates_6_differential_translucent_3_column_3','field_62554d4d172de'),(140648,4111,'flexible_templates_6_differential_translucent_3_column_3_color','#ff555f'),(140649,4111,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62554ff6a0e7a'),(140650,4111,'flexible_templates_6_differential_translucent_3_heading_4','19'),(140651,4111,'_flexible_templates_6_differential_translucent_3_heading_4','field_62568a37727b7'),(140652,4111,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(140653,4111,'_flexible_templates_6_differential_translucent_3_column_4','field_62554d4f172df'),(140654,4111,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(140655,4111,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62555028a0e7c'),(140656,4111,'flexible_templates_6_differential_translucent_3_heading_5','Working with Translucent'),(140657,4111,'_flexible_templates_6_differential_translucent_3_heading_5','field_62568a40727b8'),(140658,4111,'flexible_templates_6_differential_translucent_3_column_5','Always'),(140659,4111,'_flexible_templates_6_differential_translucent_3_column_5','field_62555011a0e7b'),(140660,4111,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(140661,4111,'_flexible_templates_6_differential_translucent_3_column_5_color','field_6255503aa0e7d'),(140662,4111,'flexible_templates_6_differential_translucent','4'),(140663,4111,'_flexible_templates_6_differential_translucent','field_62554c30172da'),(140664,4111,'flexible_templates_7_heading','Be smart. Be efficient. Be agile.'),(140665,4111,'_flexible_templates_7_heading','field_625565e14146d_field_6254fdb2efa27'),(140666,4111,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(140667,4111,'_flexible_templates_7_cta','field_625565fa4146e_field_62551b3e101c4'),(140671,4028,'_yoast_wpseo_focuskw','cloud native solutions'),(140672,4028,'_yoast_wpseo_linkdex','28'),(140673,4011,'_yoast_wpseo_focuskw','Cloud native solutions'),(140674,4011,'_yoast_wpseo_title','TEKWorld: Translucent Expert Knowledge | Translucent'),(140675,4011,'_yoast_wpseo_metadesc','Our branded suite of cloud native products and services for all your business needs. We provide industry-leading cloud native solutions backed by our award-winning process, teams, and production-ready data-driven platform.'),(140676,4011,'_yoast_wpseo_linkdex','22'),(140683,4112,'flexible_templates','a:8:{i:0;s:16:\"tek-teams-banner\";i:1;s:20:\"tek-teams-two-column\";i:2;s:14:\"tek-team-about\";i:3;s:21:\"tek-teams-development\";i:4;s:18:\"tek_teams_benifits\";i:5;s:17:\"tek-team-whats-is\";i:6;s:34:\"tek-teams-translucent-differential\";i:7;s:17:\"lets_talk_section\";}'),(140684,4112,'_flexible_templates','field_6254f4d84ef9b'),(140685,4112,'flexible_templates_0_image','4066'),(140686,4112,'_flexible_templates_0_image','field_6255038c2e6ae_field_6254fdc5efa2a'),(140687,4112,'flexible_templates_0_mob_image','4067'),(140688,4112,'_flexible_templates_0_mob_image','field_625503db2e6af_field_6254fdcbefa2b'),(140689,4112,'flexible_templates_0_icon','4068'),(140690,4112,'_flexible_templates_0_icon','field_6255095042ef2_field_62550482480cb'),(140691,4112,'flexible_templates_0_heading','TEKTeams'),(140692,4112,'_flexible_templates_0_heading','field_6255096442ef3_field_6254fdb2efa27'),(140693,4112,'flexible_templates_0_sub_heading','TEK™ WORLD'),(140694,4112,'_flexible_templates_0_sub_heading','field_6255097642ef4_field_6254fdbaefa28'),(140695,4112,'flexible_templates_1_heading','Gain access to top 1% tech talent with a trusted partner that delivers cloud native solutions and value.'),(140696,4112,'_flexible_templates_1_heading','field_62551ac3a6f96_field_6254fdb2efa27'),(140697,4112,'flexible_templates_1_sub_heading','THE TEAM YOU NEED'),(140698,4112,'_flexible_templates_1_sub_heading','field_62551ae4a6f97_field_6254fdbaefa28'),(140699,4112,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(140700,4112,'_flexible_templates_1_cta','field_62551b56a6f98_field_62551b3e101c4'),(140701,4112,'flexible_templates_1_copy','The best technology. The best people. Access tailored software engineering teams with industry-specific experience without the hassle of hiring and maintaining internal teams. We understand how hard it is to get and keep top talent. We take entire liability for delivery and execution of the project.'),(140702,4112,'_flexible_templates_1_copy','field_62551b74a6f99_field_6254fdc0efa29'),(140703,4112,'flexible_templates_2_image','4069'),(140704,4112,'_flexible_templates_2_image','field_625523de9609f_field_6254fdc5efa2a'),(140705,4112,'flexible_templates_2_mob_image','4070'),(140706,4112,'_flexible_templates_2_mob_image','field_625523f4960a0_field_6254fdcbefa2b'),(140707,4112,'flexible_templates_2_icon','4071'),(140708,4112,'_flexible_templates_2_icon','field_6255246d960a1_field_62550482480cb'),(140709,4112,'flexible_templates_2_heading','What are TEKTeams?'),(140710,4112,'_flexible_templates_2_heading','field_62552482960a2_field_6254fdb2efa27'),(140711,4112,'flexible_templates_2_copy','TEKTeams are your dedicated development teams built on Translucent principals that, as part of the TEK ecosystem, combine trust, processes, people, and technology to deliver value.\r\n\r\nTranslucent has created a process that brings together the best people in the industry with various skills to develop and maintain the highest quality software. A perfect combination of roles, talent, skillset, and the right work environment.\r\n\r\nTEKTeams provide the precise expertise your organization needs to execute a project successfully.'),(140712,4112,'_flexible_templates_2_copy','field_625525b15629c'),(140713,4112,'flexible_templates_2_content_right','Our onshore/nearshore model combines resources across the Americas to overcome challenges your project might encounter; we work closely alongside your company staff to attain your business goals. Increase the number of resources you have on hand to help you develop and manage intelligent applications and platforms.\r\n\r\nTEKTeams are the most cost-effective way to get the talent you need for your cloud native projects without taking up all of your time or budget.'),(140714,4112,'_flexible_templates_2_content_right','field_625525ba5629d'),(140715,4112,'flexible_templates_3_image','4072'),(140716,4112,'_flexible_templates_3_image','field_62552ada52711_field_6254fdc5efa2a'),(140717,4112,'flexible_templates_3_mob_image','4073'),(140718,4112,'_flexible_templates_3_mob_image','field_62552aed52712_field_6254fdcbefa2b'),(140719,4112,'flexible_templates_3_icon','4074'),(140720,4112,'_flexible_templates_3_icon','field_62552b7652713_field_62550482480cb'),(140721,4112,'flexible_templates_3_heading','Get started with the best resources for your project'),(140722,4112,'_flexible_templates_3_heading','field_62552baf52715_field_6254fdb2efa27'),(140723,4112,'flexible_templates_3_copy','TEKTeams are tailored software engineering teams to help your business develop and manage smarter apps. We match business goals to the right technology and teams to drive better results. With TEKTeams you get access to the best of the best resources for your cloud native projects at a price you can afford, with the capacity to scale as needed, according to your demands. Here is what to expect working with TEKTeams:'),(140724,4112,'_flexible_templates_3_copy','field_62552b8552714_field_6254fdc0efa29'),(140725,4112,'flexible_templates_3_development_team_steps_0_icon','4075'),(140726,4112,'_flexible_templates_3_development_team_steps_0_icon','field_62552cdb784a9_field_62550482480cb'),(140727,4112,'flexible_templates_3_development_team_steps_0_heading','A trusted tech partner'),(140728,4112,'_flexible_templates_3_development_team_steps_0_heading','field_62552ced784aa_field_6254fdb2efa27'),(140729,4112,'flexible_templates_3_development_team_steps_0_copy','

Increase your workforce by partnering with the top 1% teams tailored to your business needs

\r\n

We will explain and document the entire development process and make sure to meet business and project objectives

\r\n

Scale your teams as needed with a global network united as one

'),(140730,4112,'_flexible_templates_3_development_team_steps_0_copy','field_62552cfe784ab_field_6254fdc0efa29'),(140731,4112,'flexible_templates_3_development_team_steps_1_icon','4076'),(140732,4112,'_flexible_templates_3_development_team_steps_1_icon','field_62552cdb784a9_field_62550482480cb'),(140733,4112,'flexible_templates_3_development_team_steps_1_heading','Break down vision into requirements'),(140734,4112,'_flexible_templates_3_development_team_steps_1_heading','field_62552ced784aa_field_6254fdb2efa27'),(140735,4112,'flexible_templates_3_development_team_steps_1_copy','

We will validate your idea with a future vision that is in sync with the realities that your business is currently facing

\r\n

Cloud native solutions make it possible to work within clients\' budgets

\r\n

Planning, execution, support, best practices, and experience in breaking down the concept into a user stories tech road map

'),(140736,4112,'_flexible_templates_3_development_team_steps_1_copy','field_62552cfe784ab_field_6254fdc0efa29'),(140737,4112,'flexible_templates_3_development_team_steps_2_icon','4077'),(140738,4112,'_flexible_templates_3_development_team_steps_2_icon','field_62552cdb784a9_field_62550482480cb'),(140739,4112,'flexible_templates_3_development_team_steps_2_heading','Build your team and start innovating'),(140740,4112,'_flexible_templates_3_development_team_steps_2_heading','field_62552ced784aa_field_6254fdb2efa27'),(140741,4112,'flexible_templates_3_development_team_steps_2_copy',' The Team You Need For Your Cloud Native Project:\r\n

Expanding your workforce is easier than you think, with TEKTeams, you can quickly and affordably grow your company with teams to cover all of your business needs

\r\n

With the right team behind your project, you\'ll get better results, more quickly

\r\n\r\n'),(140742,4112,'_flexible_templates_3_development_team_steps_2_copy','field_62552cfe784ab_field_6254fdc0efa29'),(140743,4112,'flexible_templates_3_development_team_steps','3'),(140744,4112,'_flexible_templates_3_development_team_steps','field_62552cbb784a8'),(140745,4112,'flexible_templates_3_cta','a:3:{s:5:\"title\";s:11:\"Gain Access\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(140746,4112,'_flexible_templates_3_cta','field_62552c6a784a7_field_62551b3e101c4'),(140747,4112,'flexible_templates_4_image','4078'),(140748,4112,'_flexible_templates_4_image','field_625538ef16bb0_field_6254fdc5efa2a'),(140749,4112,'flexible_templates_4_mob_image','4079'),(140750,4112,'_flexible_templates_4_mob_image','field_6255391616bb1_field_6254fdcbefa2b'),(140751,4112,'flexible_templates_4_icon','4080'),(140752,4112,'_flexible_templates_4_icon','field_62553d28bca93_field_62550482480cb'),(140753,4112,'flexible_templates_4_heading','Benefits of TEKTeams'),(140754,4112,'_flexible_templates_4_heading','field_6255397e16bb2_field_6254fdb2efa27'),(140755,4112,'flexible_templates_4_development_team_steps_0_icon','4086'),(140756,4112,'_flexible_templates_4_development_team_steps_0_icon','field_625539a816bb4_field_62550482480cb'),(140757,4112,'flexible_templates_4_development_team_steps_0_heading','Fully Managed'),(140758,4112,'_flexible_templates_4_development_team_steps_0_heading','field_625539a816bb5_field_6254fdb2efa27'),(140759,4112,'flexible_templates_4_development_team_steps_0_copy','Translucent is responsible for hiring, managing, and delivering technical expertise from start to finish. Avoid hiring and team management issues.'),(140760,4112,'_flexible_templates_4_development_team_steps_0_copy','field_625539a816bb6_field_6254fdc0efa29'),(140761,4112,'flexible_templates_4_development_team_steps_1_icon','4085'),(140762,4112,'_flexible_templates_4_development_team_steps_1_icon','field_625539a816bb4_field_62550482480cb'),(140763,4112,'flexible_templates_4_development_team_steps_1_heading','Remote'),(140764,4112,'_flexible_templates_4_development_team_steps_1_heading','field_625539a816bb5_field_6254fdb2efa27'),(140765,4112,'flexible_templates_4_development_team_steps_1_copy','Completely remote. Save office space and gain more time for your employees. Over the last 12 years, we have perfected a remote software development system called TEKProcess.'),(140766,4112,'_flexible_templates_4_development_team_steps_1_copy','field_625539a816bb6_field_6254fdc0efa29'),(140767,4112,'flexible_templates_4_development_team_steps_2_icon','4084'),(140768,4112,'_flexible_templates_4_development_team_steps_2_icon','field_625539a816bb4_field_62550482480cb'),(140769,4112,'flexible_templates_4_development_team_steps_2_heading','Access to Translucent Experts'),(140770,4112,'_flexible_templates_4_development_team_steps_2_heading','field_625539a816bb5_field_6254fdb2efa27'),(140771,4112,'flexible_templates_4_development_team_steps_2_copy','Part of working with TEKTeams is access to our software architects and tech leads at no extra cost.'),(140772,4112,'_flexible_templates_4_development_team_steps_2_copy','field_625539a816bb6_field_6254fdc0efa29'),(140773,4112,'flexible_templates_4_development_team_steps_3_icon','4083'),(140774,4112,'_flexible_templates_4_development_team_steps_3_icon','field_625539a816bb4_field_62550482480cb'),(140775,4112,'flexible_templates_4_development_team_steps_3_heading','Access to Top Tech Talent'),(140776,4112,'_flexible_templates_4_development_team_steps_3_heading','field_625539a816bb5_field_6254fdb2efa27'),(140777,4112,'flexible_templates_4_development_team_steps_3_copy','Our proven hiring and continuous employee improvement processes ensure that only top talent works on each project.'),(140778,4112,'_flexible_templates_4_development_team_steps_3_copy','field_625539a816bb6_field_6254fdc0efa29'),(140779,4112,'flexible_templates_4_development_team_steps_4_icon','4082'),(140780,4112,'_flexible_templates_4_development_team_steps_4_icon','field_625539a816bb4_field_62550482480cb'),(140781,4112,'flexible_templates_4_development_team_steps_4_heading','Team Scalability'),(140782,4112,'_flexible_templates_4_development_team_steps_4_heading','field_625539a816bb5_field_6254fdb2efa27'),(140783,4112,'flexible_templates_4_development_team_steps_4_copy','On-demand resources are ready when you need to scale the team to meet business demands.'),(140784,4112,'_flexible_templates_4_development_team_steps_4_copy','field_625539a816bb6_field_6254fdc0efa29'),(140785,4112,'flexible_templates_4_development_team_steps_5_icon','4081'),(140786,4112,'_flexible_templates_4_development_team_steps_5_icon','field_625539a816bb4_field_62550482480cb'),(140787,4112,'flexible_templates_4_development_team_steps_5_heading','Start Your Journey Now'),(140788,4112,'_flexible_templates_4_development_team_steps_5_heading','field_625539a816bb5_field_6254fdb2efa27'),(140789,4112,'flexible_templates_4_development_team_steps_5_copy','Our TEKTeams are ready to help you now.'),(140790,4112,'_flexible_templates_4_development_team_steps_5_copy','field_625539a816bb6_field_6254fdc0efa29'),(140791,4112,'flexible_templates_4_development_team_steps','6'),(140792,4112,'_flexible_templates_4_development_team_steps','field_625539a816bb3'),(140793,4112,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:13:\"Start Scaling\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(140794,4112,'_flexible_templates_4_cta','field_625539ce16bb7_field_62551b3e101c4'),(140795,4112,'flexible_templates_5_image','4087'),(140796,4112,'_flexible_templates_5_image','field_62553e7d5dd54_field_6254fdc5efa2a'),(140797,4112,'flexible_templates_5_mob_image','4088'),(140798,4112,'_flexible_templates_5_mob_image','field_62553eab5dd55_field_6254fdcbefa2b'),(140799,4112,'flexible_templates_5_icon','4089'),(140800,4112,'_flexible_templates_5_icon','field_62553eee5dd56_field_62550482480cb'),(140801,4112,'flexible_templates_5_heading','The team you need for your cloud native project'),(140802,4112,'_flexible_templates_5_heading','field_62553f075dd57_field_6254fdb2efa27'),(140803,4112,'flexible_templates_5_heading_mobile','The team you need for your cloud native project'),(140804,4112,'_flexible_templates_5_heading_mobile','field_62553f185dd58'),(140805,4112,'flexible_templates_5_copy','We help companies build and scale smart applications, working together to achieve the best results by pairing them with our award-winning team of experts. That includes project managers, senior developers, and QA specialists who have been handpicked to execute on specific goals.'),(140806,4112,'_flexible_templates_5_copy','field_62553f315dd59_field_6254fdc0efa29'),(140807,4112,'flexible_templates_5_development_team_steps_0_icon','4090'),(140808,4112,'_flexible_templates_5_development_team_steps_0_icon','field_625540b262816_field_62550482480cb'),(140809,4112,'flexible_templates_5_development_team_steps_0_heading','Frontend Engineers'),(140810,4112,'_flexible_templates_5_development_team_steps_0_heading','field_625540b262817_field_6254fdb2efa27'),(140811,4112,'flexible_templates_5_development_team_steps_0_copy','Responsible for the development of the user interface of an application. They are always in demand, but with TEKTeams you get access on demand. '),(140812,4112,'_flexible_templates_5_development_team_steps_0_copy','field_625540b262818_field_6254fdc0efa29'),(140813,4112,'flexible_templates_5_development_team_steps_1_icon','4091'),(140814,4112,'_flexible_templates_5_development_team_steps_1_icon','field_625540b262816_field_62550482480cb'),(140815,4112,'flexible_templates_5_development_team_steps_1_heading','QA Engineers'),(140816,4112,'_flexible_templates_5_development_team_steps_1_heading','field_625540b262817_field_6254fdb2efa27'),(140817,4112,'flexible_templates_5_development_team_steps_1_copy','These professionals are in charge of the quality of the entire development life cycle. They don\'t just ensure that the product is as bug-free as possible but also that the processes used to build it have optimal quality.'),(140818,4112,'_flexible_templates_5_development_team_steps_1_copy','field_625540b262818_field_6254fdc0efa29'),(140819,4112,'flexible_templates_5_development_team_steps_2_icon','4092'),(140820,4112,'_flexible_templates_5_development_team_steps_2_icon','field_625540b262816_field_62550482480cb'),(140821,4112,'flexible_templates_5_development_team_steps_2_heading','Business Analysts'),(140822,4112,'_flexible_templates_5_development_team_steps_2_heading','field_625540b262817_field_6254fdb2efa27'),(140823,4112,'flexible_templates_5_development_team_steps_2_copy','They serve as bridges between the IT team and the business, evaluating processes, determining requirements, and offering suggestions and reports to executives.'),(140824,4112,'_flexible_templates_5_development_team_steps_2_copy','field_625540b262818_field_6254fdc0efa29'),(140825,4112,'flexible_templates_5_development_team_steps_3_icon','4093'),(140826,4112,'_flexible_templates_5_development_team_steps_3_icon','field_625540b262816_field_62550482480cb'),(140827,4112,'flexible_templates_5_development_team_steps_3_heading','Backend Engineers'),(140828,4112,'_flexible_templates_5_development_team_steps_3_heading','field_625540b262817_field_6254fdb2efa27'),(140829,4112,'flexible_templates_5_development_team_steps_3_copy','They serve as bridges between the IT team and the business, evaluating processes, determining requirements, and offering suggestions and reports to executives.'),(140830,4112,'_flexible_templates_5_development_team_steps_3_copy','field_625540b262818_field_6254fdc0efa29'),(140831,4112,'flexible_templates_5_development_team_steps_4_icon','4094'),(140832,4112,'_flexible_templates_5_development_team_steps_4_icon','field_625540b262816_field_62550482480cb'),(140833,4112,'flexible_templates_5_development_team_steps_4_heading','UX/UI Designers'),(140834,4112,'_flexible_templates_5_development_team_steps_4_heading','field_625540b262817_field_6254fdb2efa27'),(140835,4112,'flexible_templates_5_development_team_steps_4_copy','They are responsible for ensuring that the user experience is intuitive, simple, and engaging.'),(140836,4112,'_flexible_templates_5_development_team_steps_4_copy','field_625540b262818_field_6254fdc0efa29'),(140837,4112,'flexible_templates_5_development_team_steps_5_icon','4095'),(140838,4112,'_flexible_templates_5_development_team_steps_5_icon','field_625540b262816_field_62550482480cb'),(140839,4112,'flexible_templates_5_development_team_steps_5_heading','Product Owners'),(140840,4112,'_flexible_templates_5_development_team_steps_5_heading','field_625540b262817_field_6254fdb2efa27'),(140841,4112,'flexible_templates_5_development_team_steps_5_copy','The leaders of the development team, they initiate, plan, design, execute, and monitor the entire development process.'),(140842,4112,'_flexible_templates_5_development_team_steps_5_copy','field_625540b262818_field_6254fdc0efa29'),(140843,4112,'flexible_templates_5_development_team_steps_6_icon','4096'),(140844,4112,'_flexible_templates_5_development_team_steps_6_icon','field_625540b262816_field_62550482480cb'),(140845,4112,'flexible_templates_5_development_team_steps_6_heading','Data/ML Engineers'),(140846,4112,'_flexible_templates_5_development_team_steps_6_heading','field_625540b262817_field_6254fdb2efa27'),(140847,4112,'flexible_templates_5_development_team_steps_6_copy','The leaders of the development team, they initiate, plan, design, execute, and monitor the entire development process.'),(140848,4112,'_flexible_templates_5_development_team_steps_6_copy','field_625540b262818_field_6254fdc0efa29'),(140849,4112,'flexible_templates_5_development_team_steps_7_icon','4097'),(140850,4112,'_flexible_templates_5_development_team_steps_7_icon','field_625540b262816_field_62550482480cb'),(140851,4112,'flexible_templates_5_development_team_steps_7_heading','SRE/DevOps Engineers'),(140852,4112,'_flexible_templates_5_development_team_steps_7_heading','field_625540b262817_field_6254fdb2efa27'),(140853,4112,'flexible_templates_5_development_team_steps_7_copy','Professionals that work with the developers on the team to better coordinate development, operations, and testing efforts.'),(140854,4112,'_flexible_templates_5_development_team_steps_7_copy','field_625540b262818_field_6254fdc0efa29'),(140855,4112,'flexible_templates_5_development_team_steps_8_icon','4098'),(140856,4112,'_flexible_templates_5_development_team_steps_8_icon','field_625540b262816_field_62550482480cb'),(140857,4112,'flexible_templates_5_development_team_steps_8_heading','Scrum Masters'),(140858,4112,'_flexible_templates_5_development_team_steps_8_heading','field_625540b262817_field_6254fdb2efa27'),(140859,4112,'flexible_templates_5_development_team_steps_8_copy','The leaders of the development team, they initiate, plan, design, execute, and monitor the entire development process.'),(140860,4112,'_flexible_templates_5_development_team_steps_8_copy','field_625540b262818_field_6254fdc0efa29'),(140861,4112,'flexible_templates_5_development_team_steps','9'),(140862,4112,'_flexible_templates_5_development_team_steps','field_625540b262815'),(140863,4112,'flexible_templates_5_cta','a:3:{s:5:\"title\";s:15:\"Build Your Team\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(140864,4112,'_flexible_templates_5_cta','field_6255410462819_field_62551b3e101c4'),(140865,4112,'flexible_templates_6_heading','A better chance at success with TEKTeams'),(140866,4112,'_flexible_templates_6_heading','field_62554b91172d7_field_6254fdb2efa27'),(140867,4112,'flexible_templates_6_sub_heading','Dev Shop vs Offshore vs In-house vs TEKTeams'),(140868,4112,'_flexible_templates_6_sub_heading','field_62554ba5172d8_field_6254fdbaefa28'),(140869,4112,'flexible_templates_6_icon','4099'),(140870,4112,'_flexible_templates_6_icon','field_62554d69172e1_field_62550482480cb'),(140871,4112,'flexible_templates_6_differential_translucent_header_0_heading','Your Needs'),(140872,4112,'_flexible_templates_6_differential_translucent_header_0_heading','field_625688668727a'),(140873,4112,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(140874,4112,'_flexible_templates_6_differential_translucent_header_0_color','field_62568e42de80b'),(140875,4112,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(140876,4112,'_flexible_templates_6_differential_translucent_header_1_heading','field_625688668727a'),(140877,4112,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(140878,4112,'_flexible_templates_6_differential_translucent_header_1_color','field_62568e42de80b'),(140879,4112,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore Teams'),(140880,4112,'_flexible_templates_6_differential_translucent_header_2_heading','field_625688668727a'),(140881,4112,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(140882,4112,'_flexible_templates_6_differential_translucent_header_2_color','field_62568e42de80b'),(140883,4112,'flexible_templates_6_differential_translucent_header_3_heading','Hiring In-house Developers'),(140884,4112,'_flexible_templates_6_differential_translucent_header_3_heading','field_625688668727a'),(140885,4112,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(140886,4112,'_flexible_templates_6_differential_translucent_header_3_color','field_62568e42de80b'),(140887,4112,'flexible_templates_6_differential_translucent_header_4_heading','TEKTeams'),(140888,4112,'_flexible_templates_6_differential_translucent_header_4_heading','field_625688668727a'),(140889,4112,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(140890,4112,'_flexible_templates_6_differential_translucent_header_4_color','field_62568e42de80b'),(140891,4112,'flexible_templates_6_differential_translucent_header','5'),(140892,4112,'_flexible_templates_6_differential_translucent_header','field_6256884687279'),(140893,4112,'flexible_templates_6_differential_translucent_0_heading_1','1'),(140894,4112,'_flexible_templates_6_differential_translucent_0_heading_1','field_625689c138821'),(140895,4112,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(140896,4112,'_flexible_templates_6_differential_translucent_0_column_1','field_62554d45172dc'),(140897,4112,'flexible_templates_6_differential_translucent_0_heading_2','Working with a Dev Shop'),(140898,4112,'_flexible_templates_6_differential_translucent_0_heading_2','field_62568a29727b5'),(140899,4112,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(140900,4112,'_flexible_templates_6_differential_translucent_0_column_2','field_62554d4a172dd'),(140901,4112,'flexible_templates_6_differential_translucent_0_column_2_color','#7080a7'),(140902,4112,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62554fcda0e79'),(140903,4112,'flexible_templates_6_differential_translucent_0_heading_3','3'),(140904,4112,'_flexible_templates_6_differential_translucent_0_heading_3','field_62568a30727b6'),(140905,4112,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(140906,4112,'_flexible_templates_6_differential_translucent_0_column_3','field_62554d4d172de'),(140907,4112,'flexible_templates_6_differential_translucent_0_column_3_color','#ff555f'),(140908,4112,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62554ff6a0e7a'),(140909,4112,'flexible_templates_6_differential_translucent_0_heading_4','4'),(140910,4112,'_flexible_templates_6_differential_translucent_0_heading_4','field_62568a37727b7'),(140911,4112,'flexible_templates_6_differential_translucent_0_column_4','Always'),(140912,4112,'_flexible_templates_6_differential_translucent_0_column_4','field_62554d4f172df'),(140913,4112,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(140914,4112,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62555028a0e7c'),(140915,4112,'flexible_templates_6_differential_translucent_0_heading_5','5'),(140916,4112,'_flexible_templates_6_differential_translucent_0_heading_5','field_62568a40727b8'),(140917,4112,'flexible_templates_6_differential_translucent_0_column_5','Always'),(140918,4112,'_flexible_templates_6_differential_translucent_0_column_5','field_62555011a0e7b'),(140919,4112,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(140920,4112,'_flexible_templates_6_differential_translucent_0_column_5_color','field_6255503aa0e7d'),(140921,4112,'flexible_templates_6_differential_translucent_1_heading_1','6'),(140922,4112,'_flexible_templates_6_differential_translucent_1_heading_1','field_625689c138821'),(140923,4112,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (speed to market)'),(140924,4112,'_flexible_templates_6_differential_translucent_1_column_1','field_62554d45172dc'),(140925,4112,'flexible_templates_6_differential_translucent_1_heading_2','7'),(140926,4112,'_flexible_templates_6_differential_translucent_1_heading_2','field_62568a29727b5'),(140927,4112,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(140928,4112,'_flexible_templates_6_differential_translucent_1_column_2','field_62554d4a172dd'),(140929,4112,'flexible_templates_6_differential_translucent_1_column_2_color','#ff555f'),(140930,4112,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62554fcda0e79'),(140931,4112,'flexible_templates_6_differential_translucent_1_heading_3','8'),(140932,4112,'_flexible_templates_6_differential_translucent_1_heading_3','field_62568a30727b6'),(140933,4112,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(140934,4112,'_flexible_templates_6_differential_translucent_1_column_3','field_62554d4d172de'),(140935,4112,'flexible_templates_6_differential_translucent_1_column_3_color','#7080a7'),(140936,4112,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62554ff6a0e7a'),(140937,4112,'flexible_templates_6_differential_translucent_1_heading_4','9'),(140938,4112,'_flexible_templates_6_differential_translucent_1_heading_4','field_62568a37727b7'),(140939,4112,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(140940,4112,'_flexible_templates_6_differential_translucent_1_column_4','field_62554d4f172df'),(140941,4112,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(140942,4112,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62555028a0e7c'),(140943,4112,'flexible_templates_6_differential_translucent_1_heading_5','10'),(140944,4112,'_flexible_templates_6_differential_translucent_1_heading_5','field_62568a40727b8'),(140945,4112,'flexible_templates_6_differential_translucent_1_column_5','Always'),(140946,4112,'_flexible_templates_6_differential_translucent_1_column_5','field_62555011a0e7b'),(140947,4112,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(140948,4112,'_flexible_templates_6_differential_translucent_1_column_5_color','field_6255503aa0e7d'),(140949,4112,'flexible_templates_6_differential_translucent_2_heading_1','11'),(140950,4112,'_flexible_templates_6_differential_translucent_2_heading_1','field_625689c138821'),(140951,4112,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(140952,4112,'_flexible_templates_6_differential_translucent_2_column_1','field_62554d45172dc'),(140953,4112,'flexible_templates_6_differential_translucent_2_heading_2','12'),(140954,4112,'_flexible_templates_6_differential_translucent_2_heading_2','field_62568a29727b5'),(140955,4112,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(140956,4112,'_flexible_templates_6_differential_translucent_2_column_2','field_62554d4a172dd'),(140957,4112,'flexible_templates_6_differential_translucent_2_column_2_color','#7080a7'),(140958,4112,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62554fcda0e79'),(140959,4112,'flexible_templates_6_differential_translucent_2_heading_3','13'),(140960,4112,'_flexible_templates_6_differential_translucent_2_heading_3','field_62568a30727b6'),(140961,4112,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(140962,4112,'_flexible_templates_6_differential_translucent_2_column_3','field_62554d4d172de'),(140963,4112,'flexible_templates_6_differential_translucent_2_column_3_color','#ff555f'),(140964,4112,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62554ff6a0e7a'),(140965,4112,'flexible_templates_6_differential_translucent_2_heading_4','14'),(140966,4112,'_flexible_templates_6_differential_translucent_2_heading_4','field_62568a37727b7'),(140967,4112,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(140968,4112,'_flexible_templates_6_differential_translucent_2_column_4','field_62554d4f172df'),(140969,4112,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(140970,4112,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62555028a0e7c'),(140971,4112,'flexible_templates_6_differential_translucent_2_heading_5','15'),(140972,4112,'_flexible_templates_6_differential_translucent_2_heading_5','field_62568a40727b8'),(140973,4112,'flexible_templates_6_differential_translucent_2_column_5','Always'),(140974,4112,'_flexible_templates_6_differential_translucent_2_column_5','field_62555011a0e7b'),(140975,4112,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(140976,4112,'_flexible_templates_6_differential_translucent_2_column_5_color','field_6255503aa0e7d'),(140977,4112,'flexible_templates_6_differential_translucent_3_heading_1','16'),(140978,4112,'_flexible_templates_6_differential_translucent_3_heading_1','field_625689c138821'),(140979,4112,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(140980,4112,'_flexible_templates_6_differential_translucent_3_column_1','field_62554d45172dc'),(140981,4112,'flexible_templates_6_differential_translucent_3_heading_2','17'),(140982,4112,'_flexible_templates_6_differential_translucent_3_heading_2','field_62568a29727b5'),(140983,4112,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(140984,4112,'_flexible_templates_6_differential_translucent_3_column_2','field_62554d4a172dd'),(140985,4112,'flexible_templates_6_differential_translucent_3_column_2_color','#7080a7'),(140986,4112,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62554fcda0e79'),(140987,4112,'flexible_templates_6_differential_translucent_3_heading_3','18'),(140988,4112,'_flexible_templates_6_differential_translucent_3_heading_3','field_62568a30727b6'),(140989,4112,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(140990,4112,'_flexible_templates_6_differential_translucent_3_column_3','field_62554d4d172de'),(140991,4112,'flexible_templates_6_differential_translucent_3_column_3_color','#ff555f'),(140992,4112,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62554ff6a0e7a'),(140993,4112,'flexible_templates_6_differential_translucent_3_heading_4','19'),(140994,4112,'_flexible_templates_6_differential_translucent_3_heading_4','field_62568a37727b7'),(140995,4112,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(140996,4112,'_flexible_templates_6_differential_translucent_3_column_4','field_62554d4f172df'),(140997,4112,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(140998,4112,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62555028a0e7c'),(140999,4112,'flexible_templates_6_differential_translucent_3_heading_5','Working with Translucent'),(141000,4112,'_flexible_templates_6_differential_translucent_3_heading_5','field_62568a40727b8'),(141001,4112,'flexible_templates_6_differential_translucent_3_column_5','Always'),(141002,4112,'_flexible_templates_6_differential_translucent_3_column_5','field_62555011a0e7b'),(141003,4112,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(141004,4112,'_flexible_templates_6_differential_translucent_3_column_5_color','field_6255503aa0e7d'),(141005,4112,'flexible_templates_6_differential_translucent','4'),(141006,4112,'_flexible_templates_6_differential_translucent','field_62554c30172da'),(141007,4112,'flexible_templates_7_heading','Be smart. Be efficient. Be agile.'),(141008,4112,'_flexible_templates_7_heading','field_625565e14146d_field_6254fdb2efa27'),(141009,4112,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(141010,4112,'_flexible_templates_7_cta','field_625565fa4146e_field_62551b3e101c4'),(141014,4113,'flexible_templates','a:8:{i:0;s:16:\"tek-teams-banner\";i:1;s:20:\"tek-teams-two-column\";i:2;s:14:\"tek-team-about\";i:3;s:21:\"tek-teams-development\";i:4;s:18:\"tek_teams_benifits\";i:5;s:17:\"tek-team-whats-is\";i:6;s:34:\"tek-teams-translucent-differential\";i:7;s:17:\"lets_talk_section\";}'),(141015,4113,'_flexible_templates','field_6254f4d84ef9b'),(141016,4113,'flexible_templates_0_image','4066'),(141017,4113,'_flexible_templates_0_image','field_6255038c2e6ae_field_6254fdc5efa2a'),(141018,4113,'flexible_templates_0_mob_image','4067'),(141019,4113,'_flexible_templates_0_mob_image','field_625503db2e6af_field_6254fdcbefa2b'),(141020,4113,'flexible_templates_0_icon','4068'),(141021,4113,'_flexible_templates_0_icon','field_6255095042ef2_field_62550482480cb'),(141022,4113,'flexible_templates_0_heading','TEKTeams'),(141023,4113,'_flexible_templates_0_heading','field_6255096442ef3_field_6254fdb2efa27'),(141024,4113,'flexible_templates_0_sub_heading','TEK™ WORLD'),(141025,4113,'_flexible_templates_0_sub_heading','field_6255097642ef4_field_6254fdbaefa28'),(141026,4113,'flexible_templates_1_heading','Gain access to top 1% tech talent with a trusted partner that delivers cloud native solutions and value.'),(141027,4113,'_flexible_templates_1_heading','field_62551ac3a6f96_field_6254fdb2efa27'),(141028,4113,'flexible_templates_1_sub_heading','THE TEAM YOU NEED'),(141029,4113,'_flexible_templates_1_sub_heading','field_62551ae4a6f97_field_6254fdbaefa28'),(141030,4113,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(141031,4113,'_flexible_templates_1_cta','field_62551b56a6f98_field_62551b3e101c4'),(141032,4113,'flexible_templates_1_copy','The best technology. The best people. Access tailored software engineering teams with industry-specific experience without the hassle of hiring and maintaining internal teams. We understand how hard it is to get and keep top talent. We take entire liability for delivery and execution of the project.'),(141033,4113,'_flexible_templates_1_copy','field_62551b74a6f99_field_6254fdc0efa29'),(141034,4113,'flexible_templates_2_image','4069'),(141035,4113,'_flexible_templates_2_image','field_625523de9609f_field_6254fdc5efa2a'),(141036,4113,'flexible_templates_2_mob_image','4070'),(141037,4113,'_flexible_templates_2_mob_image','field_625523f4960a0_field_6254fdcbefa2b'),(141038,4113,'flexible_templates_2_icon','4071'),(141039,4113,'_flexible_templates_2_icon','field_6255246d960a1_field_62550482480cb'),(141040,4113,'flexible_templates_2_heading','What are TEKTeams?'),(141041,4113,'_flexible_templates_2_heading','field_62552482960a2_field_6254fdb2efa27'),(141042,4113,'flexible_templates_2_copy','TEKTeams are your dedicated development teams built on Translucent principals that, as part of the TEK ecosystem, combine trust, processes, people, and technology to deliver value.\r\n\r\nTranslucent has created a process that brings together the best people in the industry with various skills to develop and maintain the highest quality software. A perfect combination of roles, talent, skillset, and the right work environment.\r\n\r\nTEKTeams provide the precise expertise your organization needs to execute a project successfully.'),(141043,4113,'_flexible_templates_2_copy','field_625525b15629c'),(141044,4113,'flexible_templates_2_content_right','Our onshore/nearshore model combines resources across the Americas to overcome challenges your project might encounter; we work closely alongside your company staff to attain your business goals. Increase the number of resources you have on hand to help you develop and manage intelligent applications and platforms.\r\n\r\nTEKTeams are the most cost-effective way to get the talent you need for your cloud native projects without taking up all of your time or budget.'),(141045,4113,'_flexible_templates_2_content_right','field_625525ba5629d'),(141046,4113,'flexible_templates_3_image','4072'),(141047,4113,'_flexible_templates_3_image','field_62552ada52711_field_6254fdc5efa2a'),(141048,4113,'flexible_templates_3_mob_image','4073'),(141049,4113,'_flexible_templates_3_mob_image','field_62552aed52712_field_6254fdcbefa2b'),(141050,4113,'flexible_templates_3_icon','4074'),(141051,4113,'_flexible_templates_3_icon','field_62552b7652713_field_62550482480cb'),(141052,4113,'flexible_templates_3_heading','Get started with the best resources for your project'),(141053,4113,'_flexible_templates_3_heading','field_62552baf52715_field_6254fdb2efa27'),(141054,4113,'flexible_templates_3_copy','TEKTeams are tailored software engineering teams to help your business develop and manage smarter apps. We match business goals to the right technology and teams to drive better results. With TEKTeams you get access to the best of the best resources for your cloud native projects at a price you can afford, with the capacity to scale as needed, according to your demands. Here is what to expect working with TEKTeams:'),(141055,4113,'_flexible_templates_3_copy','field_62552b8552714_field_6254fdc0efa29'),(141056,4113,'flexible_templates_3_development_team_steps_0_icon','4075'),(141057,4113,'_flexible_templates_3_development_team_steps_0_icon','field_62552cdb784a9_field_62550482480cb'),(141058,4113,'flexible_templates_3_development_team_steps_0_heading','A trusted tech partner'),(141059,4113,'_flexible_templates_3_development_team_steps_0_heading','field_62552ced784aa_field_6254fdb2efa27'),(141060,4113,'flexible_templates_3_development_team_steps_0_copy','

Increase your workforce by partnering with the top 1% teams tailored to your business needs

\r\n

We will explain and document the entire development process and make sure to meet business and project objectives

\r\n

Scale your teams as needed with a global network united as one

'),(141061,4113,'_flexible_templates_3_development_team_steps_0_copy','field_62552cfe784ab_field_6254fdc0efa29'),(141062,4113,'flexible_templates_3_development_team_steps_1_icon','4076'),(141063,4113,'_flexible_templates_3_development_team_steps_1_icon','field_62552cdb784a9_field_62550482480cb'),(141064,4113,'flexible_templates_3_development_team_steps_1_heading','Break down vision into requirements'),(141065,4113,'_flexible_templates_3_development_team_steps_1_heading','field_62552ced784aa_field_6254fdb2efa27'),(141066,4113,'flexible_templates_3_development_team_steps_1_copy','

We will validate your idea with a future vision that is in sync with the realities that your business is currently facing

\r\n

Cloud native solutions make it possible to work within clients\' budgets

\r\n

Planning, execution, support, best practices, and experience in breaking down the concept into a user stories tech road map

'),(141067,4113,'_flexible_templates_3_development_team_steps_1_copy','field_62552cfe784ab_field_6254fdc0efa29'),(141068,4113,'flexible_templates_3_development_team_steps_2_icon','4077'),(141069,4113,'_flexible_templates_3_development_team_steps_2_icon','field_62552cdb784a9_field_62550482480cb'),(141070,4113,'flexible_templates_3_development_team_steps_2_heading','Build your team and start innovating'),(141071,4113,'_flexible_templates_3_development_team_steps_2_heading','field_62552ced784aa_field_6254fdb2efa27'),(141072,4113,'flexible_templates_3_development_team_steps_2_copy',' The Team You Need For Your Cloud Native Project:\r\n

Expanding your workforce is easier than you think, with TEKTeams, you can quickly and affordably grow your company with teams to cover all of your business needs

\r\n

With the right team behind your project, you\'ll get better results, more quickly

\r\n\r\n'),(141073,4113,'_flexible_templates_3_development_team_steps_2_copy','field_62552cfe784ab_field_6254fdc0efa29'),(141074,4113,'flexible_templates_3_development_team_steps','3'),(141075,4113,'_flexible_templates_3_development_team_steps','field_62552cbb784a8'),(141076,4113,'flexible_templates_3_cta','a:3:{s:5:\"title\";s:11:\"Gain Access\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(141077,4113,'_flexible_templates_3_cta','field_62552c6a784a7_field_62551b3e101c4'),(141078,4113,'flexible_templates_4_image','4078'),(141079,4113,'_flexible_templates_4_image','field_625538ef16bb0_field_6254fdc5efa2a'),(141080,4113,'flexible_templates_4_mob_image','4079'),(141081,4113,'_flexible_templates_4_mob_image','field_6255391616bb1_field_6254fdcbefa2b'),(141082,4113,'flexible_templates_4_icon','4080'),(141083,4113,'_flexible_templates_4_icon','field_62553d28bca93_field_62550482480cb'),(141084,4113,'flexible_templates_4_heading','Benefits of TEKTeams'),(141085,4113,'_flexible_templates_4_heading','field_6255397e16bb2_field_6254fdb2efa27'),(141086,4113,'flexible_templates_4_development_team_steps_0_icon','4086'),(141087,4113,'_flexible_templates_4_development_team_steps_0_icon','field_625539a816bb4_field_62550482480cb'),(141088,4113,'flexible_templates_4_development_team_steps_0_heading','Fully Managed'),(141089,4113,'_flexible_templates_4_development_team_steps_0_heading','field_625539a816bb5_field_6254fdb2efa27'),(141090,4113,'flexible_templates_4_development_team_steps_0_copy','Translucent is responsible for hiring, managing, and delivering technical expertise from start to finish. Avoid hiring and team management issues.'),(141091,4113,'_flexible_templates_4_development_team_steps_0_copy','field_625539a816bb6_field_6254fdc0efa29'),(141092,4113,'flexible_templates_4_development_team_steps_1_icon','4085'),(141093,4113,'_flexible_templates_4_development_team_steps_1_icon','field_625539a816bb4_field_62550482480cb'),(141094,4113,'flexible_templates_4_development_team_steps_1_heading','Remote'),(141095,4113,'_flexible_templates_4_development_team_steps_1_heading','field_625539a816bb5_field_6254fdb2efa27'),(141096,4113,'flexible_templates_4_development_team_steps_1_copy','Completely remote. Save office space and gain more time for your employees. Over the last 12 years, we have perfected a remote software development system called TEKProcess.'),(141097,4113,'_flexible_templates_4_development_team_steps_1_copy','field_625539a816bb6_field_6254fdc0efa29'),(141098,4113,'flexible_templates_4_development_team_steps_2_icon','4084'),(141099,4113,'_flexible_templates_4_development_team_steps_2_icon','field_625539a816bb4_field_62550482480cb'),(141100,4113,'flexible_templates_4_development_team_steps_2_heading','Access to Translucent Experts'),(141101,4113,'_flexible_templates_4_development_team_steps_2_heading','field_625539a816bb5_field_6254fdb2efa27'),(141102,4113,'flexible_templates_4_development_team_steps_2_copy','Part of working with TEKTeams is access to our software architects and tech leads at no extra cost.'),(141103,4113,'_flexible_templates_4_development_team_steps_2_copy','field_625539a816bb6_field_6254fdc0efa29'),(141104,4113,'flexible_templates_4_development_team_steps_3_icon','4083'),(141105,4113,'_flexible_templates_4_development_team_steps_3_icon','field_625539a816bb4_field_62550482480cb'),(141106,4113,'flexible_templates_4_development_team_steps_3_heading','Access to Top Tech Talent'),(141107,4113,'_flexible_templates_4_development_team_steps_3_heading','field_625539a816bb5_field_6254fdb2efa27'),(141108,4113,'flexible_templates_4_development_team_steps_3_copy','Our proven hiring and continuous employee improvement processes ensure that only top talent works on each project.'),(141109,4113,'_flexible_templates_4_development_team_steps_3_copy','field_625539a816bb6_field_6254fdc0efa29'),(141110,4113,'flexible_templates_4_development_team_steps_4_icon','4082'),(141111,4113,'_flexible_templates_4_development_team_steps_4_icon','field_625539a816bb4_field_62550482480cb'),(141112,4113,'flexible_templates_4_development_team_steps_4_heading','Team Scalability'),(141113,4113,'_flexible_templates_4_development_team_steps_4_heading','field_625539a816bb5_field_6254fdb2efa27'),(141114,4113,'flexible_templates_4_development_team_steps_4_copy','On-demand resources are ready when you need to scale the team to meet business demands.'),(141115,4113,'_flexible_templates_4_development_team_steps_4_copy','field_625539a816bb6_field_6254fdc0efa29'),(141116,4113,'flexible_templates_4_development_team_steps_5_icon','4081'),(141117,4113,'_flexible_templates_4_development_team_steps_5_icon','field_625539a816bb4_field_62550482480cb'),(141118,4113,'flexible_templates_4_development_team_steps_5_heading','Start Your Journey Now'),(141119,4113,'_flexible_templates_4_development_team_steps_5_heading','field_625539a816bb5_field_6254fdb2efa27'),(141120,4113,'flexible_templates_4_development_team_steps_5_copy','Our TEKTeams are ready to help you now.'),(141121,4113,'_flexible_templates_4_development_team_steps_5_copy','field_625539a816bb6_field_6254fdc0efa29'),(141122,4113,'flexible_templates_4_development_team_steps','6'),(141123,4113,'_flexible_templates_4_development_team_steps','field_625539a816bb3'),(141124,4113,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:13:\"Start Scaling\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(141125,4113,'_flexible_templates_4_cta','field_625539ce16bb7_field_62551b3e101c4'),(141126,4113,'flexible_templates_5_image','4087'),(141127,4113,'_flexible_templates_5_image','field_62553e7d5dd54_field_6254fdc5efa2a'),(141128,4113,'flexible_templates_5_mob_image','4088'),(141129,4113,'_flexible_templates_5_mob_image','field_62553eab5dd55_field_6254fdcbefa2b'),(141130,4113,'flexible_templates_5_icon','4089'),(141131,4113,'_flexible_templates_5_icon','field_62553eee5dd56_field_62550482480cb'),(141132,4113,'flexible_templates_5_heading','The team you need for your cloud native project'),(141133,4113,'_flexible_templates_5_heading','field_62553f075dd57_field_6254fdb2efa27'),(141134,4113,'flexible_templates_5_heading_mobile','The team you need for your cloud native project'),(141135,4113,'_flexible_templates_5_heading_mobile','field_62553f185dd58'),(141136,4113,'flexible_templates_5_copy','We help companies build and scale smart applications, working together to achieve the best results by pairing them with our award-winning team of experts. That includes project managers, senior developers, and QA specialists who have been handpicked to execute on specific goals.'),(141137,4113,'_flexible_templates_5_copy','field_62553f315dd59_field_6254fdc0efa29'),(141138,4113,'flexible_templates_5_development_team_steps_0_icon','4090'),(141139,4113,'_flexible_templates_5_development_team_steps_0_icon','field_625540b262816_field_62550482480cb'),(141140,4113,'flexible_templates_5_development_team_steps_0_heading','Frontend Engineers'),(141141,4113,'_flexible_templates_5_development_team_steps_0_heading','field_625540b262817_field_6254fdb2efa27'),(141142,4113,'flexible_templates_5_development_team_steps_0_copy','Responsible for the development of the user interface of an application. They are always in demand, but with TEKTeams you get access on demand. '),(141143,4113,'_flexible_templates_5_development_team_steps_0_copy','field_625540b262818_field_6254fdc0efa29'),(141144,4113,'flexible_templates_5_development_team_steps_1_icon','4091'),(141145,4113,'_flexible_templates_5_development_team_steps_1_icon','field_625540b262816_field_62550482480cb'),(141146,4113,'flexible_templates_5_development_team_steps_1_heading','QA Engineers'),(141147,4113,'_flexible_templates_5_development_team_steps_1_heading','field_625540b262817_field_6254fdb2efa27'),(141148,4113,'flexible_templates_5_development_team_steps_1_copy','The quality of a product is vital to its success, and without a quality assurance engineer, that quality is compromised. Our QA engineers ensure each product is thoroughly tested and has no bugs, providing the best possible customer experience.'),(141149,4113,'_flexible_templates_5_development_team_steps_1_copy','field_625540b262818_field_6254fdc0efa29'),(141150,4113,'flexible_templates_5_development_team_steps_2_icon','4092'),(141151,4113,'_flexible_templates_5_development_team_steps_2_icon','field_625540b262816_field_62550482480cb'),(141152,4113,'flexible_templates_5_development_team_steps_2_heading','Business Analysts'),(141153,4113,'_flexible_templates_5_development_team_steps_2_heading','field_625540b262817_field_6254fdb2efa27'),(141154,4113,'flexible_templates_5_development_team_steps_2_copy','They serve as bridges between the IT team and the business, evaluating processes, determining requirements, and offering suggestions and reports to executives.'),(141155,4113,'_flexible_templates_5_development_team_steps_2_copy','field_625540b262818_field_6254fdc0efa29'),(141156,4113,'flexible_templates_5_development_team_steps_3_icon','4093'),(141157,4113,'_flexible_templates_5_development_team_steps_3_icon','field_625540b262816_field_62550482480cb'),(141158,4113,'flexible_templates_5_development_team_steps_3_heading','Backend Engineers'),(141159,4113,'_flexible_templates_5_development_team_steps_3_heading','field_625540b262817_field_6254fdb2efa27'),(141160,4113,'flexible_templates_5_development_team_steps_3_copy','They serve as bridges between the IT team and the business, evaluating processes, determining requirements, and offering suggestions and reports to executives.'),(141161,4113,'_flexible_templates_5_development_team_steps_3_copy','field_625540b262818_field_6254fdc0efa29'),(141162,4113,'flexible_templates_5_development_team_steps_4_icon','4094'),(141163,4113,'_flexible_templates_5_development_team_steps_4_icon','field_625540b262816_field_62550482480cb'),(141164,4113,'flexible_templates_5_development_team_steps_4_heading','UX/UI Designers'),(141165,4113,'_flexible_templates_5_development_team_steps_4_heading','field_625540b262817_field_6254fdb2efa27'),(141166,4113,'flexible_templates_5_development_team_steps_4_copy','They are responsible for ensuring that the user experience is intuitive, simple, and engaging.'),(141167,4113,'_flexible_templates_5_development_team_steps_4_copy','field_625540b262818_field_6254fdc0efa29'),(141168,4113,'flexible_templates_5_development_team_steps_5_icon','4095'),(141169,4113,'_flexible_templates_5_development_team_steps_5_icon','field_625540b262816_field_62550482480cb'),(141170,4113,'flexible_templates_5_development_team_steps_5_heading','Product Owners'),(141171,4113,'_flexible_templates_5_development_team_steps_5_heading','field_625540b262817_field_6254fdb2efa27'),(141172,4113,'flexible_templates_5_development_team_steps_5_copy','The leaders of the development team, they initiate, plan, design, execute, and monitor the entire development process.'),(141173,4113,'_flexible_templates_5_development_team_steps_5_copy','field_625540b262818_field_6254fdc0efa29'),(141174,4113,'flexible_templates_5_development_team_steps_6_icon','4096'),(141175,4113,'_flexible_templates_5_development_team_steps_6_icon','field_625540b262816_field_62550482480cb'),(141176,4113,'flexible_templates_5_development_team_steps_6_heading','Data/ML Engineers'),(141177,4113,'_flexible_templates_5_development_team_steps_6_heading','field_625540b262817_field_6254fdb2efa27'),(141178,4113,'flexible_templates_5_development_team_steps_6_copy','The leaders of the development team, they initiate, plan, design, execute, and monitor the entire development process.'),(141179,4113,'_flexible_templates_5_development_team_steps_6_copy','field_625540b262818_field_6254fdc0efa29'),(141180,4113,'flexible_templates_5_development_team_steps_7_icon','4097'),(141181,4113,'_flexible_templates_5_development_team_steps_7_icon','field_625540b262816_field_62550482480cb'),(141182,4113,'flexible_templates_5_development_team_steps_7_heading','SRE/DevOps Engineers'),(141183,4113,'_flexible_templates_5_development_team_steps_7_heading','field_625540b262817_field_6254fdb2efa27'),(141184,4113,'flexible_templates_5_development_team_steps_7_copy','Professionals that work with the developers on the team to better coordinate development, operations, and testing efforts.'),(141185,4113,'_flexible_templates_5_development_team_steps_7_copy','field_625540b262818_field_6254fdc0efa29'),(141186,4113,'flexible_templates_5_development_team_steps_8_icon','4098'),(141187,4113,'_flexible_templates_5_development_team_steps_8_icon','field_625540b262816_field_62550482480cb'),(141188,4113,'flexible_templates_5_development_team_steps_8_heading','Scrum Masters'),(141189,4113,'_flexible_templates_5_development_team_steps_8_heading','field_625540b262817_field_6254fdb2efa27'),(141190,4113,'flexible_templates_5_development_team_steps_8_copy','The leaders of the development team, they initiate, plan, design, execute, and monitor the entire development process.'),(141191,4113,'_flexible_templates_5_development_team_steps_8_copy','field_625540b262818_field_6254fdc0efa29'),(141192,4113,'flexible_templates_5_development_team_steps','9'),(141193,4113,'_flexible_templates_5_development_team_steps','field_625540b262815'),(141194,4113,'flexible_templates_5_cta','a:3:{s:5:\"title\";s:15:\"Build Your Team\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(141195,4113,'_flexible_templates_5_cta','field_6255410462819_field_62551b3e101c4'),(141196,4113,'flexible_templates_6_heading','A better chance at success with TEKTeams'),(141197,4113,'_flexible_templates_6_heading','field_62554b91172d7_field_6254fdb2efa27'),(141198,4113,'flexible_templates_6_sub_heading','Dev Shop vs Offshore vs In-house vs TEKTeams'),(141199,4113,'_flexible_templates_6_sub_heading','field_62554ba5172d8_field_6254fdbaefa28'),(141200,4113,'flexible_templates_6_icon','4099'),(141201,4113,'_flexible_templates_6_icon','field_62554d69172e1_field_62550482480cb'),(141202,4113,'flexible_templates_6_differential_translucent_header_0_heading','Your Needs'),(141203,4113,'_flexible_templates_6_differential_translucent_header_0_heading','field_625688668727a'),(141204,4113,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(141205,4113,'_flexible_templates_6_differential_translucent_header_0_color','field_62568e42de80b'),(141206,4113,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(141207,4113,'_flexible_templates_6_differential_translucent_header_1_heading','field_625688668727a'),(141208,4113,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(141209,4113,'_flexible_templates_6_differential_translucent_header_1_color','field_62568e42de80b'),(141210,4113,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore Teams'),(141211,4113,'_flexible_templates_6_differential_translucent_header_2_heading','field_625688668727a'),(141212,4113,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(141213,4113,'_flexible_templates_6_differential_translucent_header_2_color','field_62568e42de80b'),(141214,4113,'flexible_templates_6_differential_translucent_header_3_heading','Hiring In-house Developers'),(141215,4113,'_flexible_templates_6_differential_translucent_header_3_heading','field_625688668727a'),(141216,4113,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(141217,4113,'_flexible_templates_6_differential_translucent_header_3_color','field_62568e42de80b'),(141218,4113,'flexible_templates_6_differential_translucent_header_4_heading','TEKTeams'),(141219,4113,'_flexible_templates_6_differential_translucent_header_4_heading','field_625688668727a'),(141220,4113,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(141221,4113,'_flexible_templates_6_differential_translucent_header_4_color','field_62568e42de80b'),(141222,4113,'flexible_templates_6_differential_translucent_header','5'),(141223,4113,'_flexible_templates_6_differential_translucent_header','field_6256884687279'),(141224,4113,'flexible_templates_6_differential_translucent_0_heading_1','1'),(141225,4113,'_flexible_templates_6_differential_translucent_0_heading_1','field_625689c138821'),(141226,4113,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(141227,4113,'_flexible_templates_6_differential_translucent_0_column_1','field_62554d45172dc'),(141228,4113,'flexible_templates_6_differential_translucent_0_heading_2','Working with a Dev Shop'),(141229,4113,'_flexible_templates_6_differential_translucent_0_heading_2','field_62568a29727b5'),(141230,4113,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(141231,4113,'_flexible_templates_6_differential_translucent_0_column_2','field_62554d4a172dd'),(141232,4113,'flexible_templates_6_differential_translucent_0_column_2_color','#7080a7'),(141233,4113,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62554fcda0e79'),(141234,4113,'flexible_templates_6_differential_translucent_0_heading_3','3'),(141235,4113,'_flexible_templates_6_differential_translucent_0_heading_3','field_62568a30727b6'),(141236,4113,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(141237,4113,'_flexible_templates_6_differential_translucent_0_column_3','field_62554d4d172de'),(141238,4113,'flexible_templates_6_differential_translucent_0_column_3_color','#ff555f'),(141239,4113,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62554ff6a0e7a'),(141240,4113,'flexible_templates_6_differential_translucent_0_heading_4','4'),(141241,4113,'_flexible_templates_6_differential_translucent_0_heading_4','field_62568a37727b7'),(141242,4113,'flexible_templates_6_differential_translucent_0_column_4','Always'),(141243,4113,'_flexible_templates_6_differential_translucent_0_column_4','field_62554d4f172df'),(141244,4113,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(141245,4113,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62555028a0e7c'),(141246,4113,'flexible_templates_6_differential_translucent_0_heading_5','5'),(141247,4113,'_flexible_templates_6_differential_translucent_0_heading_5','field_62568a40727b8'),(141248,4113,'flexible_templates_6_differential_translucent_0_column_5','Always'),(141249,4113,'_flexible_templates_6_differential_translucent_0_column_5','field_62555011a0e7b'),(141250,4113,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(141251,4113,'_flexible_templates_6_differential_translucent_0_column_5_color','field_6255503aa0e7d'),(141252,4113,'flexible_templates_6_differential_translucent_1_heading_1','6'),(141253,4113,'_flexible_templates_6_differential_translucent_1_heading_1','field_625689c138821'),(141254,4113,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (speed to market)'),(141255,4113,'_flexible_templates_6_differential_translucent_1_column_1','field_62554d45172dc'),(141256,4113,'flexible_templates_6_differential_translucent_1_heading_2','7'),(141257,4113,'_flexible_templates_6_differential_translucent_1_heading_2','field_62568a29727b5'),(141258,4113,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(141259,4113,'_flexible_templates_6_differential_translucent_1_column_2','field_62554d4a172dd'),(141260,4113,'flexible_templates_6_differential_translucent_1_column_2_color','#ff555f'),(141261,4113,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62554fcda0e79'),(141262,4113,'flexible_templates_6_differential_translucent_1_heading_3','8'),(141263,4113,'_flexible_templates_6_differential_translucent_1_heading_3','field_62568a30727b6'),(141264,4113,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(141265,4113,'_flexible_templates_6_differential_translucent_1_column_3','field_62554d4d172de'),(141266,4113,'flexible_templates_6_differential_translucent_1_column_3_color','#7080a7'),(141267,4113,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62554ff6a0e7a'),(141268,4113,'flexible_templates_6_differential_translucent_1_heading_4','9'),(141269,4113,'_flexible_templates_6_differential_translucent_1_heading_4','field_62568a37727b7'),(141270,4113,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(141271,4113,'_flexible_templates_6_differential_translucent_1_column_4','field_62554d4f172df'),(141272,4113,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(141273,4113,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62555028a0e7c'),(141274,4113,'flexible_templates_6_differential_translucent_1_heading_5','10'),(141275,4113,'_flexible_templates_6_differential_translucent_1_heading_5','field_62568a40727b8'),(141276,4113,'flexible_templates_6_differential_translucent_1_column_5','Always'),(141277,4113,'_flexible_templates_6_differential_translucent_1_column_5','field_62555011a0e7b'),(141278,4113,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(141279,4113,'_flexible_templates_6_differential_translucent_1_column_5_color','field_6255503aa0e7d'),(141280,4113,'flexible_templates_6_differential_translucent_2_heading_1','11'),(141281,4113,'_flexible_templates_6_differential_translucent_2_heading_1','field_625689c138821'),(141282,4113,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(141283,4113,'_flexible_templates_6_differential_translucent_2_column_1','field_62554d45172dc'),(141284,4113,'flexible_templates_6_differential_translucent_2_heading_2','12'),(141285,4113,'_flexible_templates_6_differential_translucent_2_heading_2','field_62568a29727b5'),(141286,4113,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(141287,4113,'_flexible_templates_6_differential_translucent_2_column_2','field_62554d4a172dd'),(141288,4113,'flexible_templates_6_differential_translucent_2_column_2_color','#7080a7'),(141289,4113,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62554fcda0e79'),(141290,4113,'flexible_templates_6_differential_translucent_2_heading_3','13'),(141291,4113,'_flexible_templates_6_differential_translucent_2_heading_3','field_62568a30727b6'),(141292,4113,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(141293,4113,'_flexible_templates_6_differential_translucent_2_column_3','field_62554d4d172de'),(141294,4113,'flexible_templates_6_differential_translucent_2_column_3_color','#ff555f'),(141295,4113,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62554ff6a0e7a'),(141296,4113,'flexible_templates_6_differential_translucent_2_heading_4','14'),(141297,4113,'_flexible_templates_6_differential_translucent_2_heading_4','field_62568a37727b7'),(141298,4113,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(141299,4113,'_flexible_templates_6_differential_translucent_2_column_4','field_62554d4f172df'),(141300,4113,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(141301,4113,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62555028a0e7c'),(141302,4113,'flexible_templates_6_differential_translucent_2_heading_5','15'),(141303,4113,'_flexible_templates_6_differential_translucent_2_heading_5','field_62568a40727b8'),(141304,4113,'flexible_templates_6_differential_translucent_2_column_5','Always'),(141305,4113,'_flexible_templates_6_differential_translucent_2_column_5','field_62555011a0e7b'),(141306,4113,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(141307,4113,'_flexible_templates_6_differential_translucent_2_column_5_color','field_6255503aa0e7d'),(141308,4113,'flexible_templates_6_differential_translucent_3_heading_1','16'),(141309,4113,'_flexible_templates_6_differential_translucent_3_heading_1','field_625689c138821'),(141310,4113,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(141311,4113,'_flexible_templates_6_differential_translucent_3_column_1','field_62554d45172dc'),(141312,4113,'flexible_templates_6_differential_translucent_3_heading_2','17'),(141313,4113,'_flexible_templates_6_differential_translucent_3_heading_2','field_62568a29727b5'),(141314,4113,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(141315,4113,'_flexible_templates_6_differential_translucent_3_column_2','field_62554d4a172dd'),(141316,4113,'flexible_templates_6_differential_translucent_3_column_2_color','#7080a7'),(141317,4113,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62554fcda0e79'),(141318,4113,'flexible_templates_6_differential_translucent_3_heading_3','18'),(141319,4113,'_flexible_templates_6_differential_translucent_3_heading_3','field_62568a30727b6'),(141320,4113,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(141321,4113,'_flexible_templates_6_differential_translucent_3_column_3','field_62554d4d172de'),(141322,4113,'flexible_templates_6_differential_translucent_3_column_3_color','#ff555f'),(141323,4113,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62554ff6a0e7a'),(141324,4113,'flexible_templates_6_differential_translucent_3_heading_4','19'),(141325,4113,'_flexible_templates_6_differential_translucent_3_heading_4','field_62568a37727b7'),(141326,4113,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(141327,4113,'_flexible_templates_6_differential_translucent_3_column_4','field_62554d4f172df'),(141328,4113,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(141329,4113,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62555028a0e7c'),(141330,4113,'flexible_templates_6_differential_translucent_3_heading_5','Working with Translucent'),(141331,4113,'_flexible_templates_6_differential_translucent_3_heading_5','field_62568a40727b8'),(141332,4113,'flexible_templates_6_differential_translucent_3_column_5','Always'),(141333,4113,'_flexible_templates_6_differential_translucent_3_column_5','field_62555011a0e7b'),(141334,4113,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(141335,4113,'_flexible_templates_6_differential_translucent_3_column_5_color','field_6255503aa0e7d'),(141336,4113,'flexible_templates_6_differential_translucent','4'),(141337,4113,'_flexible_templates_6_differential_translucent','field_62554c30172da'),(141338,4113,'flexible_templates_7_heading','Be smart. Be efficient. Be agile.'),(141339,4113,'_flexible_templates_7_heading','field_625565e14146d_field_6254fdb2efa27'),(141340,4113,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(141341,4113,'_flexible_templates_7_cta','field_625565fa4146e_field_62551b3e101c4'),(141354,4114,'background-image','531'),(141355,4114,'_background-image','field_5c488b8869ce6'),(141356,4114,'about','Every company is now a technology company, whether you are in plumbing, manufacturing, investment banking, or corporate services.\r\n\r\nThe evolution of technology has created complex communication at light speed, code that understands behavior, and data stored in the cloud.\r\n\r\nMuch like your car, you do not have to understand precisely how it works to reap the benefits of using it!\r\n\r\nTranslucent takes your business from wherever it is and roadmaps from point A to point B.\r\n\r\nImplementing the technology your business needs to stay competitive, at a pace you can handle.\r\n\r\nUsing Calculated measurable manageable actions, focused on Return on Investment.'),(141357,4114,'_about','field_5c488b9a69ce7'),(141358,4114,'1home','We work with you, informing and educating you about what it takes to be digitally competitive in the current market.\r\nWe learn your business and business needs.'),(141359,4114,'_1home','field_5c48ade7a3abb'),(141360,4114,'1about','Translucent is your technology partner! \r\nBuilding very close relationships with our clients, we take the time and effort to lay the foundations needed to create the future together.'),(141361,4114,'_1about','field_5c488c0c69ce8'),(141362,4114,'1text',' \r\n

Requirements Gathering

\r\nWhen gathering requirements, it is a growing conversation with all influencers and decision makers within the business. It is very important to break down specific business function so that your company’s technology wraps around your operations like the perfect pair of gloves.\r\n

Stakeholder Ownership

\r\nThe information gathered must speak to all the needs and asks of all stakeholders, allowing more effective and efficient architecting and implementation to steady state. Create a system that connects your people, your clients and the world to you as an extension of how your business operations actually work.\r\n

Starting S.M.A.R.T.

\r\nOnce we have learned the specifics of your business, we inform and get signed stakeholder buy-in. From there we set Specific, Measurable, Agreed upon, Realistic, Time-bound (S.M.A.R.T.) goals based on what is the highest priority for your business needs. By removing the back and forth both internally and externally we create a workflow that increases return on investment and speed to market.'),(141363,4114,'_1text','field_5c488c3969ce9'),(141364,4114,'2home','During the discovery phase we uncover all business processes and requirements and understand your current state.\r\nDuring the inception phase we conceive and plan your solution.'),(141365,4114,'_2home','field_5c48adffa3abc'),(141366,4114,'2about','

Priority A:

\r\nOnce we understand how your business works and uncover Priority A based on company goals, immediate needs, and ROI we start to scope out Phase 1 of your digital transformation.'),(141367,4114,'_2about','field_5c48adcda3aba'),(141368,4114,'2text','

Proposal:

\r\nOnce scoped and approved by all stakeholders based on exact function and outcome, we put together a detailed proposal for your review and confirmation.'),(141369,4114,'_2text','field_5c488c8d69ceb'),(141370,4114,'2list_0_item','Work to be accomplished'),(141371,4114,'_2list_0_item','field_5c488ccc69ced'),(141372,4114,'2list_1_item','Resources'),(141373,4114,'_2list_1_item','field_5c488ccc69ced'),(141374,4114,'2list_2_item','Task and timelines'),(141375,4114,'_2list_2_item','field_5c488ccc69ced'),(141376,4114,'2list_3_item','Cost'),(141377,4114,'_2list_3_item','field_5c488ccc69ced'),(141378,4114,'2list_4_item','Deliverables'),(141379,4114,'_2list_4_item','field_5c488ccc69ced'),(141380,4114,'2list','5'),(141381,4114,'_2list','field_5c488cb869cec'),(141382,4114,'3home','We implement your digital strategy with ongoing support, leveraging proven development methodologies.'),(141383,4114,'_3home','field_5c48ae0ca3abd'),(141384,4114,'3about','Translucent as your Digital Transformation technology partner, we focus on Priority A approved deliverables:'),(141385,4114,'_3about','field_5c488c7469cea'),(141386,4114,'3list_0_item','Use Microservices to create a more fluid connection to the cloud with your legacy systems.'),(141387,4114,'_3list_0_item','field_5c488cf969cef'),(141388,4114,'3list_1_item','Use DevOps to ensure production automation workflow and security.'),(141389,4114,'_3list_1_item','field_5c488cf969cef'),(141390,4114,'3list_2_item','Create algorithms to understand complex business issues, discovering your clients’ buying patterns, or finding cross-market revenue opportunities using Machine Learning (AI).'),(141391,4114,'_3list_2_item','field_5c488cf969cef'),(141392,4114,'3list_3_item','Use Microservices, Machine Learning, and DevOps together to fully transform your business competing on the new digital landscape.'),(141393,4114,'_3list_3_item','field_5c488cf969cef'),(141394,4114,'3list','4'),(141395,4114,'_3list','field_5c488cf969cee'),(141399,60,'_yoast_post_redirect_info','a:4:{s:6:\"origin\";s:7:\"process\";s:6:\"target\";s:10:\"tekprocess\";s:4:\"type\";i:301;s:6:\"format\";s:5:\"plain\";}'),(141403,1822,'_yoast_post_redirect_info','a:4:{s:6:\"origin\";s:11:\"tekstack-ai\";s:6:\"target\";s:8:\"tekstack\";s:4:\"type\";i:301;s:6:\"format\";s:5:\"plain\";}'),(141404,4116,'background-image','1865'),(141405,4116,'_background-image','field_5f49717494f58'),(141406,4116,'about','TEKStack AI'),(141407,4116,'_about','field_5f49717495002'),(141408,4116,'1home',''),(141409,4116,'_1home','field_5c48ade7a3abb'),(141410,4116,'1about',''),(141411,4116,'_1about','field_5c488c0c69ce8'),(141412,4116,'1text',''),(141413,4116,'_1text','field_5c488c3969ce9'),(141414,4116,'2home',''),(141415,4116,'_2home','field_5c48adffa3abc'),(141416,4116,'2about',''),(141417,4116,'_2about','field_5c48adcda3aba'),(141418,4116,'2text',''),(141419,4116,'_2text','field_5c488c8d69ceb'),(141420,4116,'2list',''),(141421,4116,'_2list','field_5c488cb869cec'),(141422,4116,'3home',''),(141423,4116,'_3home','field_5c48ae0ca3abd'),(141424,4116,'3about',''),(141425,4116,'_3about','field_5c488c7469cea'),(141426,4116,'3list',''),(141427,4116,'_3list','field_5c488cf969cee'),(141428,4116,'section_1_image','1931'),(141429,4116,'_section_1_image','field_605942092a128'),(141430,4116,'section_1_title','TEKStack - Kubernetes Technology Stack'),(141431,4116,'_section_1_title','field_605942092a176'),(141432,4116,'section_1_subheading','Data-Driven application platform tools and processes, specialized in building cloud native applications.'),(141433,4116,'_section_1_subheading','field_605942092a1c3'),(141434,4116,'section_1_text','Our team of Kubernetes Certified (KCSP) engineers has worked on all the major cloud platforms on projects ranging from cloud native applications, DevOps, data engineering, chatbots, natural language processing, machine learning all built on top of Kubernetes with a focus on data.\r\n\r\nTEKStack Kubernetes Technology Stack is a collection of Kubernetes platform tools, best practices and processes driven by clients\' needs and requirements.\r\n\r\nSupported by open source and production-ready.'),(141435,4116,'_section_1_text','field_605942092a206'),(141436,4116,'section_1_keywords_0_keyword','Replatforming'),(141437,4116,'_section_1_keywords_0_keyword','field_60594209f3e6d'),(141438,4116,'section_1_keywords_1_keyword','Modern Applications'),(141439,4116,'_section_1_keywords_1_keyword','field_60594209f3e6d'),(141440,4116,'section_1_keywords_2_keyword','Kubernetes DevOps'),(141441,4116,'_section_1_keywords_2_keyword','field_60594209f3e6d'),(141442,4116,'section_1_keywords_3_keyword','Enterprise Search'),(141443,4116,'_section_1_keywords_3_keyword','field_60594209f3e6d'),(141444,4116,'section_1_keywords_4_keyword','Smart Data Lake'),(141445,4116,'_section_1_keywords_4_keyword','field_60594209f3e6d'),(141446,4116,'section_1_keywords_5_keyword','End-to-End Machine Learning'),(141447,4116,'_section_1_keywords_5_keyword','field_60594209f3e6d'),(141448,4116,'section_1_keywords','6'),(141449,4116,'_section_1_keywords','field_605942092a274'),(141450,4116,'section_1',''),(141451,4116,'_section_1','field_60594208ec82e'),(141452,4116,'services',''),(141453,4116,'_services','field_60594208ec880'),(141454,4116,'section_2_image','1933'),(141455,4116,'_section_2_image','field_6059420b73dfe'),(141456,4116,'section_2_title','Cloud Native Kubernetes Tools'),(141457,4116,'_section_2_title','field_6059420b73e74'),(141458,4116,'section_2_subheading','Technology can make everyone’s job easier – when you take a holistic and human-centric approach.'),(141459,4116,'_section_2_subheading','field_6059420b73ee3'),(141460,4116,'section_2_text','TEKStack platform tools are built from the ground up to support your enterprise data-driven applications. Save time and money by using TEKStack tools for your next project. TEKStack can be used for your new project or expand your current offerings; support your entire data journey, from inception to insights to successful customer engagements.'),(141461,4116,'_section_2_text','field_6059420b73f3c'),(141462,4116,'section_2_keywords_0_keyword','Kubernetes'),(141463,4116,'_section_2_keywords_0_keyword','field_6059420c41697'),(141464,4116,'section_2_keywords_1_keyword','Helm'),(141465,4116,'_section_2_keywords_1_keyword','field_6059420c41697'),(141466,4116,'section_2_keywords_2_keyword','Prometheus'),(141467,4116,'_section_2_keywords_2_keyword','field_6059420c41697'),(141468,4116,'section_2_keywords_3_keyword','Terraform'),(141469,4116,'_section_2_keywords_3_keyword','field_6059420c41697'),(141470,4116,'section_2_keywords_4_keyword','Spinnaker'),(141471,4116,'_section_2_keywords_4_keyword','field_6059420c41697'),(141472,4116,'section_2_keywords','7'),(141473,4116,'_section_2_keywords','field_6059420b73f90'),(141474,4116,'section_2',''),(141475,4116,'_section_2','field_60594208ec8c9'),(141476,4116,'section_3_image','1932'),(141477,4116,'_section_3_image','field_6059420ce2747'),(141478,4116,'section_3_title','Delivering Amazing Kubernetes Solutions'),(141479,4116,'_section_3_title','field_6059420ce279c'),(141480,4116,'section_3_subheading','Expand your limits and enhance your productivity – so you can be more agile with evolving customer needs and market shifts.'),(141481,4116,'_section_3_subheading','field_6059420ce27ef'),(141482,4116,'section_3_text','TEKStack tools are built on the foundation of Kubernetes to make your business in the cloud faster, more secure, and scalable. TEKStack saves you money by delivering your application to the end user more quickly. Our DevOps features support your enterprise applications by monitoring and reacting to your application\'s needs in real-time. With TEKStack, continuous integration and continuous delivery, we can integrate and automate pipelines.'),(141483,4116,'_section_3_text','field_6059420ce2832'),(141484,4116,'section_3_keywords_0_keyword','100% GitOps Based'),(141485,4116,'_section_3_keywords_0_keyword','field_6059420db2a80'),(141486,4116,'section_3_keywords_1_keyword','Configuration as Code'),(141487,4116,'_section_3_keywords_1_keyword','field_6059420db2a80'),(141488,4116,'section_3_keywords_2_keyword','Declarative Pipelines'),(141489,4116,'_section_3_keywords_2_keyword','field_6059420db2a80'),(141490,4116,'section_3_keywords_3_keyword','Observability'),(141491,4116,'_section_3_keywords_3_keyword','field_6059420db2a80'),(141492,4116,'section_3_keywords_4_keyword','Cloud Agnostic (AWS | GCP | Azure)'),(141493,4116,'_section_3_keywords_4_keyword','field_6059420db2a80'),(141494,4116,'section_3_keywords_5_keyword','High Dev-Prod Parity'),(141495,4116,'_section_3_keywords_5_keyword','field_6059420db2a80'),(141496,4116,'section_3_keywords','6'),(141497,4116,'_section_3_keywords','field_6059420ce2874'),(141498,4116,'section_3',''),(141499,4116,'_section_3','field_60594208ec909'),(141500,4116,'section_4_image','1928'),(141501,4116,'_section_4_image','field_6059420ec7401'),(141502,4116,'section_4_title','Data Experts Alongside Our Tools'),(141503,4116,'_section_4_title','field_6059420ec7454'),(141504,4116,'section_4_subheading','Technology is only as powerful and effective as its users.'),(141505,4116,'_section_4_subheading','field_6059420ec74a0'),(141506,4116,'section_4_text','Our TEKStack platform tools draw their strength from the people that support them. Our human expertise creates applications that best leverage your data while drawing on ML technologies – this approach puts your applications ahead of what the very best have to offer. The platform tools accommodate an end-to-end ML lifecycle, with a particular focus on data engineering, data ingestion and pre-processing smart data lake design, and lightweight ML pipelines. Our data journey expertise allows us to automate elements of the ML pipeline in ways that make it easier to create assets, which in turn allows us to address a greater range of customer challenges.'),(141507,4116,'_section_4_text','field_6059420ec74ee'),(141508,4116,'section_4_keywords_0_keyword','Enable Machine Learning'),(141509,4116,'_section_4_keywords_0_keyword','field_6059420fa2108'),(141510,4116,'section_4_keywords_1_keyword','Supported by Open Source'),(141511,4116,'_section_4_keywords_1_keyword','field_6059420fa2108'),(141512,4116,'section_4_keywords_2_keyword','Easy to Use'),(141513,4116,'_section_4_keywords_2_keyword','field_6059420fa2108'),(141514,4116,'section_4_keywords_3_keyword','Empowered Decisions'),(141515,4116,'_section_4_keywords_3_keyword','field_6059420fa2108'),(141516,4116,'section_4_keywords_4_keyword','Managed Kubeflow'),(141517,4116,'_section_4_keywords_4_keyword','field_6059420fa2108'),(141518,4116,'section_4_keywords_5_keyword','User Authentication and Authorization'),(141519,4116,'_section_4_keywords_5_keyword','field_6059420fa2108'),(141520,4116,'section_4_keywords','6'),(141521,4116,'_section_4_keywords','field_6059420ec752d'),(141522,4116,'section_4',''),(141523,4116,'_section_4','field_60594208ec95c'),(141524,4116,'section_5_image','1930'),(141525,4116,'_section_5_image','field_60594243d91f0'),(141526,4116,'section_5_title','Enterprise Search'),(141527,4116,'_section_5_title','field_60594243d91f1'),(141528,4116,'section_5_subheading','Search your data faster than you can think – and make data-informed insights and decisions.'),(141529,4116,'_section_5_subheading','field_60594243d91f2'),(141530,4116,'section_5_text','TEKStack applies natural language processing (NLP) technologies to our enterprise search solutions, with the goal of creating faster and improved database search. This allows for context-dependent search results, more informed insights, and faster business decision-making. We first process information from the databases we ingest into our platform, then tag information based on their type (name entity recognition). We then leverage this information to produce enterprise search solutions that are easier to use, and more informative than traditional full-text search options.'),(141531,4116,'_section_5_text','field_60594243d91f3'),(141532,4116,'section_5_keywords_0_keyword','Knowledge Graph'),(141533,4116,'_section_5_keywords_0_keyword','field_60594243d91f5'),(141534,4116,'section_5_keywords_1_keyword','TensorFlow'),(141535,4116,'_section_5_keywords_1_keyword','field_60594243d91f5'),(141536,4116,'section_5_keywords_2_keyword','KubeFlow'),(141537,4116,'_section_5_keywords_2_keyword','field_60594243d91f5'),(141538,4116,'section_5_keywords_3_keyword','Airflow'),(141539,4116,'_section_5_keywords_3_keyword','field_60594243d91f5'),(141540,4116,'section_5_keywords_4_keyword','Kafka'),(141541,4116,'_section_5_keywords_4_keyword','field_60594243d91f5'),(141542,4116,'section_5_keywords','5'),(141543,4116,'_section_5_keywords','field_60594243d91f4'),(141544,4116,'section_5',''),(141545,4116,'_section_5','field_60594243d91ef'),(141546,4116,'section_6_image','1929'),(141547,4116,'_section_6_image','field_60594249d91f7'),(141548,4116,'section_6_title','Derive Greater from Multi-Model Data Lake'),(141549,4116,'_section_6_title','field_60594249d91f8'),(141550,4116,'section_6_subheading','The right data at the right time has value greater than the sum of its parts.'),(141551,4116,'_section_6_subheading','field_60594249d91f9'),(141552,4116,'section_6_text','TEKStack platform tools include a scalable, multi-model data lake that supports any and every database best suited for the data type ingested into our platform. These databases are consolidated in a way that centralizes and simplifies data security and governance, and defines the source of truth for the datasets. The data lake is “smart”, in that it contains metadata that describes itself, which can be efficiently queried using a built-in data catalog. The data catalog allows users a greater ability to identify their data of interest across a number of different databases quickly, without the need to enlist help from a database expert.'),(141553,4116,'_section_6_text','field_60594249d91fa'),(141554,4116,'section_6_keywords_0_keyword','Multi-model Data Lake'),(141555,4116,'_section_6_keywords_0_keyword','field_60594249d91fc'),(141556,4116,'section_6_keywords_1_keyword','Data Governance'),(141557,4116,'_section_6_keywords_1_keyword','field_60594249d91fc'),(141558,4116,'section_6_keywords_2_keyword','Elasticsearch'),(141559,4116,'_section_6_keywords_2_keyword','field_60594249d91fc'),(141560,4116,'section_6_keywords_3_keyword','Blockchain- Immudb'),(141561,4116,'_section_6_keywords_3_keyword','field_60594249d91fc'),(141562,4116,'section_6_keywords_4_keyword','Neo4j'),(141563,4116,'_section_6_keywords_4_keyword','field_60594249d91fc'),(141564,4116,'section_6_keywords','7'),(141565,4116,'_section_6_keywords','field_60594249d91fb'),(141566,4116,'section_6',''),(141567,4116,'_section_6','field_60594249d91f6'),(141568,4116,'section_2_keywords_5_keyword','Vault'),(141569,4116,'_section_2_keywords_5_keyword','field_6059420c41697'),(141570,4116,'section_2_keywords_6_keyword','Jenkins'),(141571,4116,'_section_2_keywords_6_keyword','field_6059420c41697'),(141572,4116,'section_6_keywords_5_keyword','MinIO'),(141573,4116,'_section_6_keywords_5_keyword','field_60594249d91fc'),(141574,4116,'section_6_keywords_6_keyword','Amundsen '),(141575,4116,'_section_6_keywords_6_keyword','field_60594249d91fc'),(141582,4117,'top-color',''),(141583,4117,'_top-color','field_5c4888dec7760'),(141584,4117,'success-color',''),(141585,4117,'_success-color','field_5c48895cc7762'),(141586,4117,'top-text-color',''),(141587,4117,'_top-text-color','field_5c48897ec7763'),(141588,4117,'top-image','820'),(141589,4117,'_top-image','field_5c48893dc7761'),(141590,4117,'top-text','Backend, middle tier, front end, mobile (iOS & Android), security and monitoring from architecture throughout implementation.'),(141591,4117,'_top-text','field_5c4889acc7764'),(141592,4117,'costumer','Canadian Black Book (CBB) \r\nA Subsidiary of Hearst Business Media Corporation\r\n'),(141593,4117,'_costumer','field_5c4889e3c7765'),(141594,4117,'industry','Automotive Industry'),(141595,4117,'_industry','field_5c488a0bc7766'),(141596,4117,'company-size','50 to 500'),(141597,4117,'_company-size','field_5c488a0cc7767'),(141598,4117,'location','Toronto, Ontario'),(141599,4117,'_location','field_5c488a10c7768'),(141600,4117,'project-areas','Full Digital Transformation\r\n• Microservices\r\n• DevOps\r\n• Machine Learning'),(141601,4117,'_project-areas','field_5c488a13c7769'),(141602,4117,'key-stats','• CBB Connect: 219,000 users yearly\r\n• CBB Connect: 30,000 Vehicle searches a day\r\n• CBB Connect: 10,950,000 Vehicle searches yearly'),(141603,4117,'_key-stats','field_5c488a14c776a'),(141604,4117,'about','The auto industry is evolving. How vehicles are bought, sold and financed is also changing. One constant: the industry and its various markets continue to trust Canadian Black Book insight and its innovative delivery systems to make the right business decisions faster.\r\n\r\nToday, Canadian Black Book is a division of the Hearst Business Media Corporation who boast 360 corporations under their wing. Their line-up of innovative products and services includes new and used vehicle value services, custom data licensing solutions, as well as lender origination and risk analysis.'),(141605,4117,'_about','field_5c488a7dc776b'),(141606,4117,'the-challenge','CBB had outdate software & hardware solution that was not compatible to cloud native digitally transformed evolution of technology in the current world.\r\n\r\nAs a leader in the automotive data collection and distribution industry it was crucial that they were able to internally and externally communicate at the current pace of business. As every company is now a technology company.\r\n\r\nTranslucent through our partnership model has been able to work with the various moving parts of the complex CBB applications; backend, middle tier, front end, mobile (iOS & Android), security and monitoring to be a major partner from architecture throughout implementation.\r\n\r\nCBB Connect:\r\nWeb Application & CBB mobile application – IOS & Android:\r\n\r\nWhat is CBB Connect?\r\n\r\nBar Code Scanner of the V.I.N. # of vehicles.\r\n\r\nThe application allows the user to search the vehicles by scanning a VIN or enter it manually.\r\n\r\nThree ways to enter V.I.N.:\r\n• Specialized keyboard\r\n• Scanner\r\n• Drop down menu\r\nCBB Evaluation based on parameters such as mileage, year, model, make, and other key indicators.\r\n\r\nCBB Estimator:\r\nWeb Application – responsive design\r\n\r\nCBB Estimator allows consumers to enter their current vehicle year, make, model, mileage and the new car they would want from the dealer in order to get a trade in value when they purchase their new car.\r\n\r\nThis is a good tool for the consumer and an excellent tool for the company to drive business and close on very qualified leads.'),(141607,4117,'_the-challenge','field_5c488a8fc776c'),(141608,4117,'the-solution','Technologies used to create a Total Digital Transformation:\r\n\r\nMicroservices:\r\nBuilt distributed systems tailored to CBB’s operations and product offerings to transform their old legacy applications.\r\n\r\nMicroservices allows for pivot and scalability while minimally affecting day to day operations. Consistently upgrading based on user feedback to keep CBB an industry leader in today’s competitive landscape of a digitally transformed world.\r\n\r\nDevOps:\r\nTEKStack™:\r\nTranslucent has a years of experience in the build pipeline and has created multiple tools under the TEKStackTM umbrella for CI / CD that maximizes effectiveness and efficiency to help your technology mimic your business operations.\r\n\r\nKubernetes cluster (EKS -AWS) running Dockerized containers designed in multiple languages and tools: Java, Spring, Angular, Node JS, databases MySql & ElasticSearch, HazelCast (cache solution), RabbitMQ (messaging bus), Nginx (API Gateway & reverse Proxy)\r\n\r\nMonitoring:\r\nPrometheus is used to collect metrics data from the Kubernetes cluster and the Microservices, as well as APM Application Performance Metrics.\r\n\r\nElasticSearch: To aggregate the logs from the cluster and the Microservices\r\n\r\nGrafana: To create dashboards to visualize and display from Prometheus\r\n\r\nKabana: To create dashboards and visualizations for ElasticSearch\r\n\r\nSentry: Error tracking software to find exceptions in Microservices and Alert\r\n\r\nMachine Learning: The applications and systems have been Optimized for machine learning. The ability to implement automated DevOps pipeline, Security, Monitoring and Alerts to true AIOps is available.'),(141609,4117,'_the-solution','field_5c488a9cc776d'),(141610,4117,'the-results','Letter of Reference | Mike Compton CTO, Canadian Black Book\r\nWhen I arrived at Canadian Black Book as the new CTO one of my priorities was to come up-to-speed on all the projects that were underway and learn more about the third-party technology companies being leveraged. On the product development front, I learned that a company named Translucent Computing was under contract to provide their software development services in redeveloping the core mobile and web-based products.\r\n\r\nThe more I learned the more I realized that we had been fortunate to find a technology of their caliber. The architectures and technologies that I was brought in to implement were already being integrated and deployed by Translucent. Specifically, all the new products were built on a strong foundation using the AWS cloud, terraform for infrastructure deployment, Kubernetes for cluster monitoring and scaling, app containerization using Docker, and a strong dose of DevOps to ensure the pipeline was automated.\r\n\r\nA lot of technology vendors claim to have expertise with these technologies, but those boasts aren’t always a reality. You need to hire great engineers that work well with clients and that, in a nutshell, is what Translucent Computing has brought to Canadian Black Book.\r\n\r\nMike Compton, CTO, Canadian Black Book\r\nA division of the Hearst Business Media Corporation'),(141611,4117,'_the-results','field_5c488ad1c776e'),(141612,4117,'logo','606'),(141613,4117,'_logo','field_5c488af6c776f'),(141614,4117,'gallery','1'),(141615,4117,'_gallery','field_5c488b02c7770'),(141616,4117,'gallery_0_image','655'),(141617,4117,'_gallery_0_image','field_5c488b0fc7771'),(141621,4118,'case_study_0_title','Canadian Black Book'),(141622,4118,'_case_study_0_title','field_610b429bb78f0'),(141623,4118,'case_study_0_text',''),(141624,4118,'_case_study_0_text','field_610b42a3b78f1'),(141625,4118,'case_study_0_image','655'),(141626,4118,'_case_study_0_image','field_610b42b3b78f2'),(141627,4118,'case_study_0_link','804'),(141628,4118,'_case_study_0_link','field_610b42c7b78f3'),(141629,4118,'case_study_1_title','The Hospital for Sick Children'),(141630,4118,'_case_study_1_title','field_610b429bb78f0'),(141631,4118,'case_study_1_text',''),(141632,4118,'_case_study_1_text','field_610b42a3b78f1'),(141633,4118,'case_study_1_image','772'),(141634,4118,'_case_study_1_image','field_610b42b3b78f2'),(141635,4118,'case_study_1_link','38'),(141636,4118,'_case_study_1_link','field_610b42c7b78f3'),(141637,4118,'case_study','2'),(141638,4118,'_case_study','field_610b428cb78ef'),(141660,4120,'top-image','528'),(141661,4120,'_top-image','field_5c488d805f5d4'),(141662,4120,'top_title','Cloud Native DevOps'),(141663,4120,'_top_title','field_5edfac92f4226'),(141664,4120,'top-text','Keeping communication between your business operations, your technology, and the online world, in sync.'),(141665,4120,'_top-text','field_5c488e575f5d5'),(141666,4120,'features_0_feature','Constant Communication'),(141667,4120,'_features_0_feature','field_5c4890c93ae20'),(141668,4120,'features_1_feature','Speed to Market'),(141669,4120,'_features_1_feature','field_5c4890c93ae20'),(141670,4120,'features_2_feature','Secure Self-Healing Systems'),(141671,4120,'_features_2_feature','field_5c4890c93ae20'),(141672,4120,'features_3_feature','Automation'),(141673,4120,'_features_3_feature','field_5c4890c93ae20'),(141674,4120,'features_4_feature','CI'),(141675,4120,'_features_4_feature','field_5c4890c93ae20'),(141676,4120,'features_5_feature','CD'),(141677,4120,'_features_5_feature','field_5c4890c93ae20'),(141678,4120,'features_6_feature','Bimodal'),(141679,4120,'_features_6_feature','field_5c4890c93ae20'),(141680,4120,'features','7'),(141681,4120,'_features','field_5c4890bc3ae1f'),(141682,4120,'about-title','It’s 3 AM in the morning,
is your business still working for you?'),(141683,4120,'_about-title','field_5c488e7a5f5d6'),(141684,4120,'about-text','Translucent DevOps understands the ever-changing landscape of your operations, systems, and software and creates solutions. Automate your processes and increase effectiveness & collaboration company-wide.\r\nWe architect solutions based on how your business actually works!'),(141685,4120,'_about-text','field_5c488e945f5d7'),(141686,4120,'problems','How long before your competition’s technology puts you out of business?\r\n\r\nHow long does it take to go from concept to production?\r\n\r\nHow secure is your company’s Intellectual property & confidential information?\r\n\r\nAre you competitive? Are your automated processes ahead of industry standard?'),(141687,4120,'_problems','field_5c488ec75f5d8'),(141688,4120,'solutions','

Translucent Devops Strategy

\r\n
\r\n
    \r\n
  • End-to-End Monitoring and Automation.\r\nSee things in real time and solve them
  • \r\n
  • Translucent taking technical debt and turning it into techniques and dollars
  • \r\n
  • Continuous Integration & Continuous Deployment - Faster delivery of operational changes into your technology.\r\nFeatures delivered to market more rapidly.\r\nWithout business interruption.
  • \r\n
  • Secure your company’s information while staying completely connected online
  • \r\n
  • DevOps + AIOps: Self learning, self-healing systems that prioritizes, communicates to needed resources and resolves issues automatically
  • \r\n
'),(141689,4120,'_solutions','field_5c488ed95f5d9'),(141690,4120,'difference','

Are your systems working while you are sleeping?

\r\n \r\n\r\nImagine your business and your systems automatically working around the clock to improve your operations.\r\n\r\nWe will learn about your business, your operations, your customers, your employees and create solutions that work for you and them.\r\n
\r\nSeamless integration is possible!'),(141691,4120,'_difference','field_5c488eed5f5da'),(141692,4120,'panel_0_background','780'),(141693,4120,'_panel_0_background','field_5c488f425f5dc'),(141694,4120,'panel_0_title','Constant Comunication'),(141695,4120,'_panel_0_title','field_5c488f525f5dd'),(141696,4120,'panel_0_text',''),(141697,4120,'_panel_0_text','field_5c488f5b5f5de'),(141698,4120,'panel_1_background','775'),(141699,4120,'_panel_1_background','field_5c488f425f5dc'),(141700,4120,'panel_1_title','Bimodal'),(141701,4120,'_panel_1_title','field_5c488f525f5dd'),(141702,4120,'panel_1_text',''),(141703,4120,'_panel_1_text','field_5c488f5b5f5de'),(141704,4120,'panel_2_background','776'),(141705,4120,'_panel_2_background','field_5c488f425f5dc'),(141706,4120,'panel_2_title','Secure Self-Healing Systems'),(141707,4120,'_panel_2_title','field_5c488f525f5dd'),(141708,4120,'panel_2_text',''),(141709,4120,'_panel_2_text','field_5c488f5b5f5de'),(141710,4120,'panel_3_background','787'),(141711,4120,'_panel_3_background','field_5c488f425f5dc'),(141712,4120,'panel_3_title','Automation'),(141713,4120,'_panel_3_title','field_5c488f525f5dd'),(141714,4120,'panel_3_text',''),(141715,4120,'_panel_3_text','field_5c488f5b5f5de'),(141716,4120,'panel_4_background','779'),(141717,4120,'_panel_4_background','field_5c488f425f5dc'),(141718,4120,'panel_4_title','IT & Business Harmony'),(141719,4120,'_panel_4_title','field_5c488f525f5dd'),(141720,4120,'panel_4_text',''),(141721,4120,'_panel_4_text','field_5c488f5b5f5de'),(141722,4120,'panel_5_background','777'),(141723,4120,'_panel_5_background','field_5c488f425f5dc'),(141724,4120,'panel_5_title','Profitability in Productivity'),(141725,4120,'_panel_5_title','field_5c488f525f5dd'),(141726,4120,'panel_5_text',''),(141727,4120,'_panel_5_text','field_5c488f5b5f5de'),(141728,4120,'panel_6_background','778'),(141729,4120,'_panel_6_background','field_5c488f425f5dc'),(141730,4120,'panel_6_title','Kubernetes'),(141731,4120,'_panel_6_title','field_5c488f525f5dd'),(141732,4120,'panel_6_text',''),(141733,4120,'_panel_6_text','field_5c488f5b5f5de'),(141734,4120,'panel_7_background','781'),(141735,4120,'_panel_7_background','field_5c488f425f5dc'),(141736,4120,'panel_7_title','Blockchain'),(141737,4120,'_panel_7_title','field_5c488f525f5dd'),(141738,4120,'panel_7_text',''),(141739,4120,'_panel_7_text','field_5c488f5b5f5de'),(141740,4120,'panel','8'),(141741,4120,'_panel','field_5c488f195f5db'),(141742,4120,'more-text','The largest enterprise and fastest growing companies have converted to DevOps from Google, JP, Morgan, Walmart, Bank of America, Netflix, Airbnb, Motorola, to Nordstrom.'),(141743,4120,'_more-text','field_5c488f8f5f5df'),(141744,4120,'phrase','“The transition to agile DevOps is saving millions.”'),(141745,4120,'_phrase','field_5c488faf5f5e0'),(141746,4120,'author','JOHN JENKINS'),(141747,4120,'_author','field_5c488fba5f5e1'),(141748,18,'_pinterest_shares','0'),(141749,18,'_total_shares','0'),(141750,18,'swp_cache_timestamp','459005'),(141763,4122,'flexible_templates','a:8:{i:0;s:16:\"tek-teams-banner\";i:1;s:20:\"tek-teams-two-column\";i:2;s:14:\"tek-team-about\";i:3;s:21:\"tek-teams-development\";i:4;s:18:\"tek_teams_benifits\";i:5;s:17:\"tek-team-whats-is\";i:6;s:34:\"tek-teams-translucent-differential\";i:7;s:17:\"lets_talk_section\";}'),(141764,4122,'_flexible_templates','field_6254f4d84ef9b'),(141765,4122,'flexible_templates_0_image','4066'),(141766,4122,'_flexible_templates_0_image','field_6255038c2e6ae_field_6254fdc5efa2a'),(141767,4122,'flexible_templates_0_mob_image','4067'),(141768,4122,'_flexible_templates_0_mob_image','field_625503db2e6af_field_6254fdcbefa2b'),(141769,4122,'flexible_templates_0_icon','4068'),(141770,4122,'_flexible_templates_0_icon','field_6255095042ef2_field_62550482480cb'),(141771,4122,'flexible_templates_0_heading','TEKTeams'),(141772,4122,'_flexible_templates_0_heading','field_6255096442ef3_field_6254fdb2efa27'),(141773,4122,'flexible_templates_0_sub_heading','TEK™ WORLD'),(141774,4122,'_flexible_templates_0_sub_heading','field_6255097642ef4_field_6254fdbaefa28'),(141775,4122,'flexible_templates_1_heading','Gain access to top 1% tech talent with a trusted partner that delivers cloud native solutions and value.'),(141776,4122,'_flexible_templates_1_heading','field_62551ac3a6f96_field_6254fdb2efa27'),(141777,4122,'flexible_templates_1_sub_heading','THE TEAM YOU NEED'),(141778,4122,'_flexible_templates_1_sub_heading','field_62551ae4a6f97_field_6254fdbaefa28'),(141779,4122,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(141780,4122,'_flexible_templates_1_cta','field_62551b56a6f98_field_62551b3e101c4'),(141781,4122,'flexible_templates_1_copy','The best technology. The best people. Access tailored software engineering teams with industry-specific experience without the hassle of hiring and maintaining internal teams. We understand how hard it is to get and keep top talent. We take entire liability for delivery and execution of the project.'),(141782,4122,'_flexible_templates_1_copy','field_62551b74a6f99_field_6254fdc0efa29'),(141783,4122,'flexible_templates_2_image','4069'),(141784,4122,'_flexible_templates_2_image','field_625523de9609f_field_6254fdc5efa2a'),(141785,4122,'flexible_templates_2_mob_image','4070'),(141786,4122,'_flexible_templates_2_mob_image','field_625523f4960a0_field_6254fdcbefa2b'),(141787,4122,'flexible_templates_2_icon','4071'),(141788,4122,'_flexible_templates_2_icon','field_6255246d960a1_field_62550482480cb'),(141789,4122,'flexible_templates_2_heading','What are TEKTeams?'),(141790,4122,'_flexible_templates_2_heading','field_62552482960a2_field_6254fdb2efa27'),(141791,4122,'flexible_templates_2_copy','TEKTeams are your dedicated development teams built on Translucent principals that, as part of the TEK ecosystem, combine trust, processes, people, and technology to deliver value.\r\n\r\nTranslucent has created a process that brings together the best people in the industry with various skills to develop and maintain the highest quality software. A perfect combination of roles, talent, skillset, and the right work environment.\r\n\r\nTEKTeams provide the precise expertise your organization needs to execute a project successfully.'),(141792,4122,'_flexible_templates_2_copy','field_625525b15629c'),(141793,4122,'flexible_templates_2_content_right','Our onshore/nearshore model combines resources across the Americas to overcome challenges your project might encounter; we work closely alongside your company staff to attain your business goals. Increase the number of resources you have on hand to help you develop and manage intelligent applications and platforms.\r\n\r\nTEKTeams are the most cost-effective way to get the talent you need for your cloud native projects without taking up all of your time or budget.'),(141794,4122,'_flexible_templates_2_content_right','field_625525ba5629d'),(141795,4122,'flexible_templates_3_image','4072'),(141796,4122,'_flexible_templates_3_image','field_62552ada52711_field_6254fdc5efa2a'),(141797,4122,'flexible_templates_3_mob_image','4073'),(141798,4122,'_flexible_templates_3_mob_image','field_62552aed52712_field_6254fdcbefa2b'),(141799,4122,'flexible_templates_3_icon','4074'),(141800,4122,'_flexible_templates_3_icon','field_62552b7652713_field_62550482480cb'),(141801,4122,'flexible_templates_3_heading','Get started with the best resources for your project'),(141802,4122,'_flexible_templates_3_heading','field_62552baf52715_field_6254fdb2efa27'),(141803,4122,'flexible_templates_3_copy','TEKTeams are tailored software engineering teams to help your business develop and manage smarter apps. We match business goals to the right technology and teams to drive better results. With TEKTeams you get access to the best of the best resources for your cloud native projects at a price you can afford, with the capacity to scale as needed, according to your demands. Here is what to expect working with TEKTeams:'),(141804,4122,'_flexible_templates_3_copy','field_62552b8552714_field_6254fdc0efa29'),(141805,4122,'flexible_templates_3_development_team_steps_0_icon','4075'),(141806,4122,'_flexible_templates_3_development_team_steps_0_icon','field_62552cdb784a9_field_62550482480cb'),(141807,4122,'flexible_templates_3_development_team_steps_0_heading','A trusted tech partner'),(141808,4122,'_flexible_templates_3_development_team_steps_0_heading','field_62552ced784aa_field_6254fdb2efa27'),(141809,4122,'flexible_templates_3_development_team_steps_0_copy','

Increase your workforce by partnering with the top 1% teams tailored to your business needs

\r\n

We will explain and document the entire development process and make sure to meet business and project objectives

\r\n

Scale your teams as needed with a global network united as one

'),(141810,4122,'_flexible_templates_3_development_team_steps_0_copy','field_62552cfe784ab_field_6254fdc0efa29'),(141811,4122,'flexible_templates_3_development_team_steps_1_icon','4076'),(141812,4122,'_flexible_templates_3_development_team_steps_1_icon','field_62552cdb784a9_field_62550482480cb'),(141813,4122,'flexible_templates_3_development_team_steps_1_heading','Break down vision into requirements'),(141814,4122,'_flexible_templates_3_development_team_steps_1_heading','field_62552ced784aa_field_6254fdb2efa27'),(141815,4122,'flexible_templates_3_development_team_steps_1_copy','

We will validate your idea with a future vision that is in sync with the realities that your business is currently facing

\r\n

Cloud native solutions make it possible to work within clients\' budgets

\r\n

Planning, execution, support, best practices, and experience in breaking down the concept into a user stories tech road map

'),(141816,4122,'_flexible_templates_3_development_team_steps_1_copy','field_62552cfe784ab_field_6254fdc0efa29'),(141817,4122,'flexible_templates_3_development_team_steps_2_icon','4077'),(141818,4122,'_flexible_templates_3_development_team_steps_2_icon','field_62552cdb784a9_field_62550482480cb'),(141819,4122,'flexible_templates_3_development_team_steps_2_heading','Build your team and start innovating'),(141820,4122,'_flexible_templates_3_development_team_steps_2_heading','field_62552ced784aa_field_6254fdb2efa27'),(141821,4122,'flexible_templates_3_development_team_steps_2_copy',' The Team You Need For Your Cloud Native Project:\r\n

Expanding your workforce is easier than you think, with TEKTeams, you can quickly and affordably grow your company with teams to cover all of your business needs

\r\n

With the right team behind your project, you\'ll get better results, more quickly

\r\n\r\n'),(141822,4122,'_flexible_templates_3_development_team_steps_2_copy','field_62552cfe784ab_field_6254fdc0efa29'),(141823,4122,'flexible_templates_3_development_team_steps','3'),(141824,4122,'_flexible_templates_3_development_team_steps','field_62552cbb784a8'),(141825,4122,'flexible_templates_3_cta','a:3:{s:5:\"title\";s:11:\"Gain Access\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(141826,4122,'_flexible_templates_3_cta','field_62552c6a784a7_field_62551b3e101c4'),(141827,4122,'flexible_templates_4_image','4078'),(141828,4122,'_flexible_templates_4_image','field_625538ef16bb0_field_6254fdc5efa2a'),(141829,4122,'flexible_templates_4_mob_image','4079'),(141830,4122,'_flexible_templates_4_mob_image','field_6255391616bb1_field_6254fdcbefa2b'),(141831,4122,'flexible_templates_4_icon','4080'),(141832,4122,'_flexible_templates_4_icon','field_62553d28bca93_field_62550482480cb'),(141833,4122,'flexible_templates_4_heading','Benefits of TEKTeams'),(141834,4122,'_flexible_templates_4_heading','field_6255397e16bb2_field_6254fdb2efa27'),(141835,4122,'flexible_templates_4_development_team_steps_0_icon','4086'),(141836,4122,'_flexible_templates_4_development_team_steps_0_icon','field_625539a816bb4_field_62550482480cb'),(141837,4122,'flexible_templates_4_development_team_steps_0_heading','Fully Managed'),(141838,4122,'_flexible_templates_4_development_team_steps_0_heading','field_625539a816bb5_field_6254fdb2efa27'),(141839,4122,'flexible_templates_4_development_team_steps_0_copy','Translucent is responsible for hiring, managing, and delivering technical expertise from start to finish. Avoid hiring and team management issues.'),(141840,4122,'_flexible_templates_4_development_team_steps_0_copy','field_625539a816bb6_field_6254fdc0efa29'),(141841,4122,'flexible_templates_4_development_team_steps_1_icon','4085'),(141842,4122,'_flexible_templates_4_development_team_steps_1_icon','field_625539a816bb4_field_62550482480cb'),(141843,4122,'flexible_templates_4_development_team_steps_1_heading','Remote'),(141844,4122,'_flexible_templates_4_development_team_steps_1_heading','field_625539a816bb5_field_6254fdb2efa27'),(141845,4122,'flexible_templates_4_development_team_steps_1_copy','Completely remote. Save office space and gain more time for your employees. Over the last 12 years, we have perfected a remote software development system called TEKProcess.'),(141846,4122,'_flexible_templates_4_development_team_steps_1_copy','field_625539a816bb6_field_6254fdc0efa29'),(141847,4122,'flexible_templates_4_development_team_steps_2_icon','4084'),(141848,4122,'_flexible_templates_4_development_team_steps_2_icon','field_625539a816bb4_field_62550482480cb'),(141849,4122,'flexible_templates_4_development_team_steps_2_heading','Access to Translucent Experts'),(141850,4122,'_flexible_templates_4_development_team_steps_2_heading','field_625539a816bb5_field_6254fdb2efa27'),(141851,4122,'flexible_templates_4_development_team_steps_2_copy','Part of working with TEKTeams is access to our software architects and tech leads at no extra cost.'),(141852,4122,'_flexible_templates_4_development_team_steps_2_copy','field_625539a816bb6_field_6254fdc0efa29'),(141853,4122,'flexible_templates_4_development_team_steps_3_icon','4083'),(141854,4122,'_flexible_templates_4_development_team_steps_3_icon','field_625539a816bb4_field_62550482480cb'),(141855,4122,'flexible_templates_4_development_team_steps_3_heading','Access to Top Tech Talent'),(141856,4122,'_flexible_templates_4_development_team_steps_3_heading','field_625539a816bb5_field_6254fdb2efa27'),(141857,4122,'flexible_templates_4_development_team_steps_3_copy','Our proven hiring and continuous employee improvement processes ensure that only top talent works on each project.'),(141858,4122,'_flexible_templates_4_development_team_steps_3_copy','field_625539a816bb6_field_6254fdc0efa29'),(141859,4122,'flexible_templates_4_development_team_steps_4_icon','4082'),(141860,4122,'_flexible_templates_4_development_team_steps_4_icon','field_625539a816bb4_field_62550482480cb'),(141861,4122,'flexible_templates_4_development_team_steps_4_heading','Team Scalability'),(141862,4122,'_flexible_templates_4_development_team_steps_4_heading','field_625539a816bb5_field_6254fdb2efa27'),(141863,4122,'flexible_templates_4_development_team_steps_4_copy','On-demand resources are ready when you need to scale the team to meet business demands.'),(141864,4122,'_flexible_templates_4_development_team_steps_4_copy','field_625539a816bb6_field_6254fdc0efa29'),(141865,4122,'flexible_templates_4_development_team_steps_5_icon','4081'),(141866,4122,'_flexible_templates_4_development_team_steps_5_icon','field_625539a816bb4_field_62550482480cb'),(141867,4122,'flexible_templates_4_development_team_steps_5_heading','Start Your Journey Now'),(141868,4122,'_flexible_templates_4_development_team_steps_5_heading','field_625539a816bb5_field_6254fdb2efa27'),(141869,4122,'flexible_templates_4_development_team_steps_5_copy','Our TEKTeams are ready to help you now.'),(141870,4122,'_flexible_templates_4_development_team_steps_5_copy','field_625539a816bb6_field_6254fdc0efa29'),(141871,4122,'flexible_templates_4_development_team_steps','6'),(141872,4122,'_flexible_templates_4_development_team_steps','field_625539a816bb3'),(141873,4122,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:13:\"Start Scaling\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(141874,4122,'_flexible_templates_4_cta','field_625539ce16bb7_field_62551b3e101c4'),(141875,4122,'flexible_templates_5_image','4087'),(141876,4122,'_flexible_templates_5_image','field_62553e7d5dd54_field_6254fdc5efa2a'),(141877,4122,'flexible_templates_5_mob_image','4088'),(141878,4122,'_flexible_templates_5_mob_image','field_62553eab5dd55_field_6254fdcbefa2b'),(141879,4122,'flexible_templates_5_icon','4089'),(141880,4122,'_flexible_templates_5_icon','field_62553eee5dd56_field_62550482480cb'),(141881,4122,'flexible_templates_5_heading','The team you need for your cloud native project'),(141882,4122,'_flexible_templates_5_heading','field_62553f075dd57_field_6254fdb2efa27'),(141883,4122,'flexible_templates_5_heading_mobile','The team you need for your cloud native project'),(141884,4122,'_flexible_templates_5_heading_mobile','field_62553f185dd58'),(141885,4122,'flexible_templates_5_copy','We help companies build and scale smart applications, working together to achieve the best results by pairing them with our award-winning team of experts. That includes project managers, senior developers, and QA specialists who have been handpicked to execute on specific goals.'),(141886,4122,'_flexible_templates_5_copy','field_62553f315dd59_field_6254fdc0efa29'),(141887,4122,'flexible_templates_5_development_team_steps_0_icon','4090'),(141888,4122,'_flexible_templates_5_development_team_steps_0_icon','field_625540b262816_field_62550482480cb'),(141889,4122,'flexible_templates_5_development_team_steps_0_heading','Frontend Engineers'),(141890,4122,'_flexible_templates_5_development_team_steps_0_heading','field_625540b262817_field_6254fdb2efa27'),(141891,4122,'flexible_templates_5_development_team_steps_0_copy','Responsible for the development of the user interface of an application. They are always in demand, but with TEKTeams you get access on demand. '),(141892,4122,'_flexible_templates_5_development_team_steps_0_copy','field_625540b262818_field_6254fdc0efa29'),(141893,4122,'flexible_templates_5_development_team_steps_1_icon','4091'),(141894,4122,'_flexible_templates_5_development_team_steps_1_icon','field_625540b262816_field_62550482480cb'),(141895,4122,'flexible_templates_5_development_team_steps_1_heading','QA Engineers'),(141896,4122,'_flexible_templates_5_development_team_steps_1_heading','field_625540b262817_field_6254fdb2efa27'),(141897,4122,'flexible_templates_5_development_team_steps_1_copy','The quality of a product is vital to its success, and without a quality assurance engineer, that quality is compromised. Our QA engineers ensure each product is thoroughly tested and has no bugs, providing the best possible customer experience.'),(141898,4122,'_flexible_templates_5_development_team_steps_1_copy','field_625540b262818_field_6254fdc0efa29'),(141899,4122,'flexible_templates_5_development_team_steps_2_icon','4092'),(141900,4122,'_flexible_templates_5_development_team_steps_2_icon','field_625540b262816_field_62550482480cb'),(141901,4122,'flexible_templates_5_development_team_steps_2_heading','Business Analysts'),(141902,4122,'_flexible_templates_5_development_team_steps_2_heading','field_625540b262817_field_6254fdb2efa27'),(141903,4122,'flexible_templates_5_development_team_steps_2_copy','These agile workers help bridge the gap between the IT team and the business, improving overall efficiency through data analysis of processes, products, services, and software.'),(141904,4122,'_flexible_templates_5_development_team_steps_2_copy','field_625540b262818_field_6254fdc0efa29'),(141905,4122,'flexible_templates_5_development_team_steps_3_icon','4093'),(141906,4122,'_flexible_templates_5_development_team_steps_3_icon','field_625540b262816_field_62550482480cb'),(141907,4122,'flexible_templates_5_development_team_steps_3_heading','Backend Engineers'),(141908,4122,'_flexible_templates_5_development_team_steps_3_heading','field_625540b262817_field_6254fdb2efa27'),(141909,4122,'flexible_templates_5_development_team_steps_3_copy','Backend engineers build the structure of a software application. They work on designing, building, and maintaining the server components of web applications. '),(141910,4122,'_flexible_templates_5_development_team_steps_3_copy','field_625540b262818_field_6254fdc0efa29'),(141911,4122,'flexible_templates_5_development_team_steps_4_icon','4094'),(141912,4122,'_flexible_templates_5_development_team_steps_4_icon','field_625540b262816_field_62550482480cb'),(141913,4122,'flexible_templates_5_development_team_steps_4_heading','UX/UI Designers'),(141914,4122,'_flexible_templates_5_development_team_steps_4_heading','field_625540b262817_field_6254fdb2efa27'),(141915,4122,'flexible_templates_5_development_team_steps_4_copy','Responsible for creating user-friendly interfaces making complex technical products intuitive, simple, and engaging. '),(141916,4122,'_flexible_templates_5_development_team_steps_4_copy','field_625540b262818_field_6254fdc0efa29'),(141917,4122,'flexible_templates_5_development_team_steps_5_icon','4095'),(141918,4122,'_flexible_templates_5_development_team_steps_5_icon','field_625540b262816_field_62550482480cb'),(141919,4122,'flexible_templates_5_development_team_steps_5_heading','Product Owners'),(141920,4122,'_flexible_templates_5_development_team_steps_5_heading','field_625540b262817_field_6254fdb2efa27'),(141921,4122,'flexible_templates_5_development_team_steps_5_copy','The leaders of the development team, they initiate, plan, design, execute, and monitor the entire development process.'),(141922,4122,'_flexible_templates_5_development_team_steps_5_copy','field_625540b262818_field_6254fdc0efa29'),(141923,4122,'flexible_templates_5_development_team_steps_6_icon','4096'),(141924,4122,'_flexible_templates_5_development_team_steps_6_icon','field_625540b262816_field_62550482480cb'),(141925,4122,'flexible_templates_5_development_team_steps_6_heading','Data/ML Engineers'),(141926,4122,'_flexible_templates_5_development_team_steps_6_heading','field_625540b262817_field_6254fdb2efa27'),(141927,4122,'flexible_templates_5_development_team_steps_6_copy','The leaders of the development team, they initiate, plan, design, execute, and monitor the entire development process.'),(141928,4122,'_flexible_templates_5_development_team_steps_6_copy','field_625540b262818_field_6254fdc0efa29'),(141929,4122,'flexible_templates_5_development_team_steps_7_icon','4097'),(141930,4122,'_flexible_templates_5_development_team_steps_7_icon','field_625540b262816_field_62550482480cb'),(141931,4122,'flexible_templates_5_development_team_steps_7_heading','SRE/DevOps Engineers'),(141932,4122,'_flexible_templates_5_development_team_steps_7_heading','field_625540b262817_field_6254fdb2efa27'),(141933,4122,'flexible_templates_5_development_team_steps_7_copy','Professionals that work with the developers on the team to better coordinate development, operations, and testing efforts.'),(141934,4122,'_flexible_templates_5_development_team_steps_7_copy','field_625540b262818_field_6254fdc0efa29'),(141935,4122,'flexible_templates_5_development_team_steps_8_icon','4098'),(141936,4122,'_flexible_templates_5_development_team_steps_8_icon','field_625540b262816_field_62550482480cb'),(141937,4122,'flexible_templates_5_development_team_steps_8_heading','Scrum Masters'),(141938,4122,'_flexible_templates_5_development_team_steps_8_heading','field_625540b262817_field_6254fdb2efa27'),(141939,4122,'flexible_templates_5_development_team_steps_8_copy','The leaders of the development team, they initiate, plan, design, execute, and monitor the entire development process.'),(141940,4122,'_flexible_templates_5_development_team_steps_8_copy','field_625540b262818_field_6254fdc0efa29'),(141941,4122,'flexible_templates_5_development_team_steps','9'),(141942,4122,'_flexible_templates_5_development_team_steps','field_625540b262815'),(141943,4122,'flexible_templates_5_cta','a:3:{s:5:\"title\";s:15:\"Build Your Team\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(141944,4122,'_flexible_templates_5_cta','field_6255410462819_field_62551b3e101c4'),(141945,4122,'flexible_templates_6_heading','A better chance at success with TEKTeams'),(141946,4122,'_flexible_templates_6_heading','field_62554b91172d7_field_6254fdb2efa27'),(141947,4122,'flexible_templates_6_sub_heading','Dev Shop vs Offshore vs In-house vs TEKTeams'),(141948,4122,'_flexible_templates_6_sub_heading','field_62554ba5172d8_field_6254fdbaefa28'),(141949,4122,'flexible_templates_6_icon','4099'),(141950,4122,'_flexible_templates_6_icon','field_62554d69172e1_field_62550482480cb'),(141951,4122,'flexible_templates_6_differential_translucent_header_0_heading','Your Needs'),(141952,4122,'_flexible_templates_6_differential_translucent_header_0_heading','field_625688668727a'),(141953,4122,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(141954,4122,'_flexible_templates_6_differential_translucent_header_0_color','field_62568e42de80b'),(141955,4122,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(141956,4122,'_flexible_templates_6_differential_translucent_header_1_heading','field_625688668727a'),(141957,4122,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(141958,4122,'_flexible_templates_6_differential_translucent_header_1_color','field_62568e42de80b'),(141959,4122,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore Teams'),(141960,4122,'_flexible_templates_6_differential_translucent_header_2_heading','field_625688668727a'),(141961,4122,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(141962,4122,'_flexible_templates_6_differential_translucent_header_2_color','field_62568e42de80b'),(141963,4122,'flexible_templates_6_differential_translucent_header_3_heading','Hiring In-house Developers'),(141964,4122,'_flexible_templates_6_differential_translucent_header_3_heading','field_625688668727a'),(141965,4122,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(141966,4122,'_flexible_templates_6_differential_translucent_header_3_color','field_62568e42de80b'),(141967,4122,'flexible_templates_6_differential_translucent_header_4_heading','TEKTeams'),(141968,4122,'_flexible_templates_6_differential_translucent_header_4_heading','field_625688668727a'),(141969,4122,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(141970,4122,'_flexible_templates_6_differential_translucent_header_4_color','field_62568e42de80b'),(141971,4122,'flexible_templates_6_differential_translucent_header','5'),(141972,4122,'_flexible_templates_6_differential_translucent_header','field_6256884687279'),(141973,4122,'flexible_templates_6_differential_translucent_0_heading_1','1'),(141974,4122,'_flexible_templates_6_differential_translucent_0_heading_1','field_625689c138821'),(141975,4122,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(141976,4122,'_flexible_templates_6_differential_translucent_0_column_1','field_62554d45172dc'),(141977,4122,'flexible_templates_6_differential_translucent_0_heading_2','Working with a Dev Shop'),(141978,4122,'_flexible_templates_6_differential_translucent_0_heading_2','field_62568a29727b5'),(141979,4122,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(141980,4122,'_flexible_templates_6_differential_translucent_0_column_2','field_62554d4a172dd'),(141981,4122,'flexible_templates_6_differential_translucent_0_column_2_color','#7080a7'),(141982,4122,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62554fcda0e79'),(141983,4122,'flexible_templates_6_differential_translucent_0_heading_3','3'),(141984,4122,'_flexible_templates_6_differential_translucent_0_heading_3','field_62568a30727b6'),(141985,4122,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(141986,4122,'_flexible_templates_6_differential_translucent_0_column_3','field_62554d4d172de'),(141987,4122,'flexible_templates_6_differential_translucent_0_column_3_color','#ff555f'),(141988,4122,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62554ff6a0e7a'),(141989,4122,'flexible_templates_6_differential_translucent_0_heading_4','4'),(141990,4122,'_flexible_templates_6_differential_translucent_0_heading_4','field_62568a37727b7'),(141991,4122,'flexible_templates_6_differential_translucent_0_column_4','Always'),(141992,4122,'_flexible_templates_6_differential_translucent_0_column_4','field_62554d4f172df'),(141993,4122,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(141994,4122,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62555028a0e7c'),(141995,4122,'flexible_templates_6_differential_translucent_0_heading_5','5'),(141996,4122,'_flexible_templates_6_differential_translucent_0_heading_5','field_62568a40727b8'),(141997,4122,'flexible_templates_6_differential_translucent_0_column_5','Always'),(141998,4122,'_flexible_templates_6_differential_translucent_0_column_5','field_62555011a0e7b'),(141999,4122,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(142000,4122,'_flexible_templates_6_differential_translucent_0_column_5_color','field_6255503aa0e7d'),(142001,4122,'flexible_templates_6_differential_translucent_1_heading_1','6'),(142002,4122,'_flexible_templates_6_differential_translucent_1_heading_1','field_625689c138821'),(142003,4122,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (speed to market)'),(142004,4122,'_flexible_templates_6_differential_translucent_1_column_1','field_62554d45172dc'),(142005,4122,'flexible_templates_6_differential_translucent_1_heading_2','7'),(142006,4122,'_flexible_templates_6_differential_translucent_1_heading_2','field_62568a29727b5'),(142007,4122,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(142008,4122,'_flexible_templates_6_differential_translucent_1_column_2','field_62554d4a172dd'),(142009,4122,'flexible_templates_6_differential_translucent_1_column_2_color','#ff555f'),(142010,4122,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62554fcda0e79'),(142011,4122,'flexible_templates_6_differential_translucent_1_heading_3','8'),(142012,4122,'_flexible_templates_6_differential_translucent_1_heading_3','field_62568a30727b6'),(142013,4122,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(142014,4122,'_flexible_templates_6_differential_translucent_1_column_3','field_62554d4d172de'),(142015,4122,'flexible_templates_6_differential_translucent_1_column_3_color','#7080a7'),(142016,4122,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62554ff6a0e7a'),(142017,4122,'flexible_templates_6_differential_translucent_1_heading_4','9'),(142018,4122,'_flexible_templates_6_differential_translucent_1_heading_4','field_62568a37727b7'),(142019,4122,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(142020,4122,'_flexible_templates_6_differential_translucent_1_column_4','field_62554d4f172df'),(142021,4122,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(142022,4122,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62555028a0e7c'),(142023,4122,'flexible_templates_6_differential_translucent_1_heading_5','10'),(142024,4122,'_flexible_templates_6_differential_translucent_1_heading_5','field_62568a40727b8'),(142025,4122,'flexible_templates_6_differential_translucent_1_column_5','Always'),(142026,4122,'_flexible_templates_6_differential_translucent_1_column_5','field_62555011a0e7b'),(142027,4122,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(142028,4122,'_flexible_templates_6_differential_translucent_1_column_5_color','field_6255503aa0e7d'),(142029,4122,'flexible_templates_6_differential_translucent_2_heading_1','11'),(142030,4122,'_flexible_templates_6_differential_translucent_2_heading_1','field_625689c138821'),(142031,4122,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(142032,4122,'_flexible_templates_6_differential_translucent_2_column_1','field_62554d45172dc'),(142033,4122,'flexible_templates_6_differential_translucent_2_heading_2','12'),(142034,4122,'_flexible_templates_6_differential_translucent_2_heading_2','field_62568a29727b5'),(142035,4122,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(142036,4122,'_flexible_templates_6_differential_translucent_2_column_2','field_62554d4a172dd'),(142037,4122,'flexible_templates_6_differential_translucent_2_column_2_color','#7080a7'),(142038,4122,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62554fcda0e79'),(142039,4122,'flexible_templates_6_differential_translucent_2_heading_3','13'),(142040,4122,'_flexible_templates_6_differential_translucent_2_heading_3','field_62568a30727b6'),(142041,4122,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(142042,4122,'_flexible_templates_6_differential_translucent_2_column_3','field_62554d4d172de'),(142043,4122,'flexible_templates_6_differential_translucent_2_column_3_color','#ff555f'),(142044,4122,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62554ff6a0e7a'),(142045,4122,'flexible_templates_6_differential_translucent_2_heading_4','14'),(142046,4122,'_flexible_templates_6_differential_translucent_2_heading_4','field_62568a37727b7'),(142047,4122,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(142048,4122,'_flexible_templates_6_differential_translucent_2_column_4','field_62554d4f172df'),(142049,4122,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(142050,4122,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62555028a0e7c'),(142051,4122,'flexible_templates_6_differential_translucent_2_heading_5','15'),(142052,4122,'_flexible_templates_6_differential_translucent_2_heading_5','field_62568a40727b8'),(142053,4122,'flexible_templates_6_differential_translucent_2_column_5','Always'),(142054,4122,'_flexible_templates_6_differential_translucent_2_column_5','field_62555011a0e7b'),(142055,4122,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(142056,4122,'_flexible_templates_6_differential_translucent_2_column_5_color','field_6255503aa0e7d'),(142057,4122,'flexible_templates_6_differential_translucent_3_heading_1','16'),(142058,4122,'_flexible_templates_6_differential_translucent_3_heading_1','field_625689c138821'),(142059,4122,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(142060,4122,'_flexible_templates_6_differential_translucent_3_column_1','field_62554d45172dc'),(142061,4122,'flexible_templates_6_differential_translucent_3_heading_2','17'),(142062,4122,'_flexible_templates_6_differential_translucent_3_heading_2','field_62568a29727b5'),(142063,4122,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(142064,4122,'_flexible_templates_6_differential_translucent_3_column_2','field_62554d4a172dd'),(142065,4122,'flexible_templates_6_differential_translucent_3_column_2_color','#7080a7'),(142066,4122,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62554fcda0e79'),(142067,4122,'flexible_templates_6_differential_translucent_3_heading_3','18'),(142068,4122,'_flexible_templates_6_differential_translucent_3_heading_3','field_62568a30727b6'),(142069,4122,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(142070,4122,'_flexible_templates_6_differential_translucent_3_column_3','field_62554d4d172de'),(142071,4122,'flexible_templates_6_differential_translucent_3_column_3_color','#ff555f'),(142072,4122,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62554ff6a0e7a'),(142073,4122,'flexible_templates_6_differential_translucent_3_heading_4','19'),(142074,4122,'_flexible_templates_6_differential_translucent_3_heading_4','field_62568a37727b7'),(142075,4122,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(142076,4122,'_flexible_templates_6_differential_translucent_3_column_4','field_62554d4f172df'),(142077,4122,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(142078,4122,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62555028a0e7c'),(142079,4122,'flexible_templates_6_differential_translucent_3_heading_5','Working with Translucent'),(142080,4122,'_flexible_templates_6_differential_translucent_3_heading_5','field_62568a40727b8'),(142081,4122,'flexible_templates_6_differential_translucent_3_column_5','Always'),(142082,4122,'_flexible_templates_6_differential_translucent_3_column_5','field_62555011a0e7b'),(142083,4122,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(142084,4122,'_flexible_templates_6_differential_translucent_3_column_5_color','field_6255503aa0e7d'),(142085,4122,'flexible_templates_6_differential_translucent','4'),(142086,4122,'_flexible_templates_6_differential_translucent','field_62554c30172da'),(142087,4122,'flexible_templates_7_heading','Be smart. Be efficient. Be agile.'),(142088,4122,'_flexible_templates_7_heading','field_625565e14146d_field_6254fdb2efa27'),(142089,4122,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(142090,4122,'_flexible_templates_7_cta','field_625565fa4146e_field_62551b3e101c4'),(142097,4123,'flexible_templates','a:8:{i:0;s:16:\"tek-teams-banner\";i:1;s:20:\"tek-teams-two-column\";i:2;s:14:\"tek-team-about\";i:3;s:21:\"tek-teams-development\";i:4;s:18:\"tek_teams_benifits\";i:5;s:17:\"tek-team-whats-is\";i:6;s:34:\"tek-teams-translucent-differential\";i:7;s:17:\"lets_talk_section\";}'),(142098,4123,'_flexible_templates','field_6254f4d84ef9b'),(142099,4123,'flexible_templates_0_image','4066'),(142100,4123,'_flexible_templates_0_image','field_6255038c2e6ae_field_6254fdc5efa2a'),(142101,4123,'flexible_templates_0_mob_image','4067'),(142102,4123,'_flexible_templates_0_mob_image','field_625503db2e6af_field_6254fdcbefa2b'),(142103,4123,'flexible_templates_0_icon','4068'),(142104,4123,'_flexible_templates_0_icon','field_6255095042ef2_field_62550482480cb'),(142105,4123,'flexible_templates_0_heading','TEKTeams'),(142106,4123,'_flexible_templates_0_heading','field_6255096442ef3_field_6254fdb2efa27'),(142107,4123,'flexible_templates_0_sub_heading','TEK™ WORLD'),(142108,4123,'_flexible_templates_0_sub_heading','field_6255097642ef4_field_6254fdbaefa28'),(142109,4123,'flexible_templates_1_heading','Gain access to top 1% tech talent with a trusted partner that delivers cloud native solutions and value.'),(142110,4123,'_flexible_templates_1_heading','field_62551ac3a6f96_field_6254fdb2efa27'),(142111,4123,'flexible_templates_1_sub_heading','THE TEAM YOU NEED'),(142112,4123,'_flexible_templates_1_sub_heading','field_62551ae4a6f97_field_6254fdbaefa28'),(142113,4123,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(142114,4123,'_flexible_templates_1_cta','field_62551b56a6f98_field_62551b3e101c4'),(142115,4123,'flexible_templates_1_copy','The best technology. The best people. Access tailored software engineering teams with industry-specific experience without the hassle of hiring and maintaining internal teams. We understand how hard it is to get and keep top talent. We take entire liability for delivery and execution of the project.'),(142116,4123,'_flexible_templates_1_copy','field_62551b74a6f99_field_6254fdc0efa29'),(142117,4123,'flexible_templates_2_image','4069'),(142118,4123,'_flexible_templates_2_image','field_625523de9609f_field_6254fdc5efa2a'),(142119,4123,'flexible_templates_2_mob_image','4070'),(142120,4123,'_flexible_templates_2_mob_image','field_625523f4960a0_field_6254fdcbefa2b'),(142121,4123,'flexible_templates_2_icon','4071'),(142122,4123,'_flexible_templates_2_icon','field_6255246d960a1_field_62550482480cb'),(142123,4123,'flexible_templates_2_heading','What are TEKTeams?'),(142124,4123,'_flexible_templates_2_heading','field_62552482960a2_field_6254fdb2efa27'),(142125,4123,'flexible_templates_2_copy','TEKTeams are your dedicated development teams built on Translucent principals that, as part of the TEK ecosystem, combine trust, processes, people, and technology to deliver value.\r\n\r\nTranslucent has created a process that brings together the best people in the industry with various skills to develop and maintain the highest quality software. A perfect combination of roles, talent, skillset, and the right work environment.\r\n\r\nTEKTeams provide the precise expertise your organization needs to execute a project successfully.'),(142126,4123,'_flexible_templates_2_copy','field_625525b15629c'),(142127,4123,'flexible_templates_2_content_right','Our onshore/nearshore model combines resources across the Americas to overcome challenges your project might encounter; we work closely alongside your company staff to attain your business goals. Increase the number of resources you have on hand to help you develop and manage intelligent applications and platforms.\r\n\r\nTEKTeams are the most cost-effective way to get the talent you need for your cloud native projects without taking up all of your time or budget.'),(142128,4123,'_flexible_templates_2_content_right','field_625525ba5629d'),(142129,4123,'flexible_templates_3_image','4072'),(142130,4123,'_flexible_templates_3_image','field_62552ada52711_field_6254fdc5efa2a'),(142131,4123,'flexible_templates_3_mob_image','4073'),(142132,4123,'_flexible_templates_3_mob_image','field_62552aed52712_field_6254fdcbefa2b'),(142133,4123,'flexible_templates_3_icon','4074'),(142134,4123,'_flexible_templates_3_icon','field_62552b7652713_field_62550482480cb'),(142135,4123,'flexible_templates_3_heading','Get started with the best resources for your project'),(142136,4123,'_flexible_templates_3_heading','field_62552baf52715_field_6254fdb2efa27'),(142137,4123,'flexible_templates_3_copy','TEKTeams are tailored software engineering teams to help your business develop and manage smarter apps. We match business goals to the right technology and teams to drive better results. With TEKTeams you get access to the best of the best resources for your cloud native projects at a price you can afford, with the capacity to scale as needed, according to your demands. Here is what to expect working with TEKTeams:'),(142138,4123,'_flexible_templates_3_copy','field_62552b8552714_field_6254fdc0efa29'),(142139,4123,'flexible_templates_3_development_team_steps_0_icon','4075'),(142140,4123,'_flexible_templates_3_development_team_steps_0_icon','field_62552cdb784a9_field_62550482480cb'),(142141,4123,'flexible_templates_3_development_team_steps_0_heading','A trusted tech partner'),(142142,4123,'_flexible_templates_3_development_team_steps_0_heading','field_62552ced784aa_field_6254fdb2efa27'),(142143,4123,'flexible_templates_3_development_team_steps_0_copy','

Increase your workforce by partnering with the top 1% teams tailored to your business needs

\r\n

We will explain and document the entire development process and make sure to meet business and project objectives

\r\n

Scale your teams as needed with a global network united as one

'),(142144,4123,'_flexible_templates_3_development_team_steps_0_copy','field_62552cfe784ab_field_6254fdc0efa29'),(142145,4123,'flexible_templates_3_development_team_steps_1_icon','4076'),(142146,4123,'_flexible_templates_3_development_team_steps_1_icon','field_62552cdb784a9_field_62550482480cb'),(142147,4123,'flexible_templates_3_development_team_steps_1_heading','Break down vision into requirements'),(142148,4123,'_flexible_templates_3_development_team_steps_1_heading','field_62552ced784aa_field_6254fdb2efa27'),(142149,4123,'flexible_templates_3_development_team_steps_1_copy','

We will validate your idea with a future vision that is in sync with the realities that your business is currently facing

\r\n

Cloud native solutions make it possible to work within clients\' budgets

\r\n

Planning, execution, support, best practices, and experience in breaking down the concept into a user stories tech road map

'),(142150,4123,'_flexible_templates_3_development_team_steps_1_copy','field_62552cfe784ab_field_6254fdc0efa29'),(142151,4123,'flexible_templates_3_development_team_steps_2_icon','4077'),(142152,4123,'_flexible_templates_3_development_team_steps_2_icon','field_62552cdb784a9_field_62550482480cb'),(142153,4123,'flexible_templates_3_development_team_steps_2_heading','Build your team and start innovating'),(142154,4123,'_flexible_templates_3_development_team_steps_2_heading','field_62552ced784aa_field_6254fdb2efa27'),(142155,4123,'flexible_templates_3_development_team_steps_2_copy',' The Team You Need For Your Cloud Native Project:\r\n

Expanding your workforce is easier than you think, with TEKTeams, you can quickly and affordably grow your company with teams to cover all of your business needs

\r\n

With the right team behind your project, you\'ll get better results, more quickly

\r\n\r\n'),(142156,4123,'_flexible_templates_3_development_team_steps_2_copy','field_62552cfe784ab_field_6254fdc0efa29'),(142157,4123,'flexible_templates_3_development_team_steps','3'),(142158,4123,'_flexible_templates_3_development_team_steps','field_62552cbb784a8'),(142159,4123,'flexible_templates_3_cta','a:3:{s:5:\"title\";s:11:\"Gain Access\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(142160,4123,'_flexible_templates_3_cta','field_62552c6a784a7_field_62551b3e101c4'),(142161,4123,'flexible_templates_4_image','4078'),(142162,4123,'_flexible_templates_4_image','field_625538ef16bb0_field_6254fdc5efa2a'),(142163,4123,'flexible_templates_4_mob_image','4079'),(142164,4123,'_flexible_templates_4_mob_image','field_6255391616bb1_field_6254fdcbefa2b'),(142165,4123,'flexible_templates_4_icon','4080'),(142166,4123,'_flexible_templates_4_icon','field_62553d28bca93_field_62550482480cb'),(142167,4123,'flexible_templates_4_heading','Benefits of TEKTeams'),(142168,4123,'_flexible_templates_4_heading','field_6255397e16bb2_field_6254fdb2efa27'),(142169,4123,'flexible_templates_4_development_team_steps_0_icon','4086'),(142170,4123,'_flexible_templates_4_development_team_steps_0_icon','field_625539a816bb4_field_62550482480cb'),(142171,4123,'flexible_templates_4_development_team_steps_0_heading','Fully Managed'),(142172,4123,'_flexible_templates_4_development_team_steps_0_heading','field_625539a816bb5_field_6254fdb2efa27'),(142173,4123,'flexible_templates_4_development_team_steps_0_copy','Translucent is responsible for hiring, managing, and delivering technical expertise from start to finish. Avoid hiring and team management issues.'),(142174,4123,'_flexible_templates_4_development_team_steps_0_copy','field_625539a816bb6_field_6254fdc0efa29'),(142175,4123,'flexible_templates_4_development_team_steps_1_icon','4085'),(142176,4123,'_flexible_templates_4_development_team_steps_1_icon','field_625539a816bb4_field_62550482480cb'),(142177,4123,'flexible_templates_4_development_team_steps_1_heading','Remote'),(142178,4123,'_flexible_templates_4_development_team_steps_1_heading','field_625539a816bb5_field_6254fdb2efa27'),(142179,4123,'flexible_templates_4_development_team_steps_1_copy','Completely remote. Save office space and gain more time for your employees. Over the last 12 years, we have perfected a remote software development system called TEKProcess.'),(142180,4123,'_flexible_templates_4_development_team_steps_1_copy','field_625539a816bb6_field_6254fdc0efa29'),(142181,4123,'flexible_templates_4_development_team_steps_2_icon','4084'),(142182,4123,'_flexible_templates_4_development_team_steps_2_icon','field_625539a816bb4_field_62550482480cb'),(142183,4123,'flexible_templates_4_development_team_steps_2_heading','Access to Translucent Experts'),(142184,4123,'_flexible_templates_4_development_team_steps_2_heading','field_625539a816bb5_field_6254fdb2efa27'),(142185,4123,'flexible_templates_4_development_team_steps_2_copy','Part of working with TEKTeams is access to our software architects and tech leads at no extra cost.'),(142186,4123,'_flexible_templates_4_development_team_steps_2_copy','field_625539a816bb6_field_6254fdc0efa29'),(142187,4123,'flexible_templates_4_development_team_steps_3_icon','4083'),(142188,4123,'_flexible_templates_4_development_team_steps_3_icon','field_625539a816bb4_field_62550482480cb'),(142189,4123,'flexible_templates_4_development_team_steps_3_heading','Access to Top Tech Talent'),(142190,4123,'_flexible_templates_4_development_team_steps_3_heading','field_625539a816bb5_field_6254fdb2efa27'),(142191,4123,'flexible_templates_4_development_team_steps_3_copy','Our proven hiring and continuous employee improvement processes ensure that only top talent works on each project.'),(142192,4123,'_flexible_templates_4_development_team_steps_3_copy','field_625539a816bb6_field_6254fdc0efa29'),(142193,4123,'flexible_templates_4_development_team_steps_4_icon','4082'),(142194,4123,'_flexible_templates_4_development_team_steps_4_icon','field_625539a816bb4_field_62550482480cb'),(142195,4123,'flexible_templates_4_development_team_steps_4_heading','Team Scalability'),(142196,4123,'_flexible_templates_4_development_team_steps_4_heading','field_625539a816bb5_field_6254fdb2efa27'),(142197,4123,'flexible_templates_4_development_team_steps_4_copy','On-demand resources are ready when you need to scale the team to meet business demands.'),(142198,4123,'_flexible_templates_4_development_team_steps_4_copy','field_625539a816bb6_field_6254fdc0efa29'),(142199,4123,'flexible_templates_4_development_team_steps_5_icon','4081'),(142200,4123,'_flexible_templates_4_development_team_steps_5_icon','field_625539a816bb4_field_62550482480cb'),(142201,4123,'flexible_templates_4_development_team_steps_5_heading','Start Your Journey Now'),(142202,4123,'_flexible_templates_4_development_team_steps_5_heading','field_625539a816bb5_field_6254fdb2efa27'),(142203,4123,'flexible_templates_4_development_team_steps_5_copy','Our TEKTeams are ready to help you now.'),(142204,4123,'_flexible_templates_4_development_team_steps_5_copy','field_625539a816bb6_field_6254fdc0efa29'),(142205,4123,'flexible_templates_4_development_team_steps','6'),(142206,4123,'_flexible_templates_4_development_team_steps','field_625539a816bb3'),(142207,4123,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:13:\"Start Scaling\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(142208,4123,'_flexible_templates_4_cta','field_625539ce16bb7_field_62551b3e101c4'),(142209,4123,'flexible_templates_5_image','4087'),(142210,4123,'_flexible_templates_5_image','field_62553e7d5dd54_field_6254fdc5efa2a'),(142211,4123,'flexible_templates_5_mob_image','4088'),(142212,4123,'_flexible_templates_5_mob_image','field_62553eab5dd55_field_6254fdcbefa2b'),(142213,4123,'flexible_templates_5_icon','4089'),(142214,4123,'_flexible_templates_5_icon','field_62553eee5dd56_field_62550482480cb'),(142215,4123,'flexible_templates_5_heading','The team you need for your cloud native project'),(142216,4123,'_flexible_templates_5_heading','field_62553f075dd57_field_6254fdb2efa27'),(142217,4123,'flexible_templates_5_heading_mobile','The team you need for your cloud native project'),(142218,4123,'_flexible_templates_5_heading_mobile','field_62553f185dd58'),(142219,4123,'flexible_templates_5_copy','We help companies build and scale smart applications, working together to achieve the best results by pairing them with our award-winning team of experts. That includes project managers, senior developers, and QA specialists who have been handpicked to execute on specific goals.'),(142220,4123,'_flexible_templates_5_copy','field_62553f315dd59_field_6254fdc0efa29'),(142221,4123,'flexible_templates_5_development_team_steps_0_icon','4090'),(142222,4123,'_flexible_templates_5_development_team_steps_0_icon','field_625540b262816_field_62550482480cb'),(142223,4123,'flexible_templates_5_development_team_steps_0_heading','Frontend Engineers'),(142224,4123,'_flexible_templates_5_development_team_steps_0_heading','field_625540b262817_field_6254fdb2efa27'),(142225,4123,'flexible_templates_5_development_team_steps_0_copy','Responsible for the development of the user interface of an application. They are always in demand, but with TEKTeams you get access on demand. '),(142226,4123,'_flexible_templates_5_development_team_steps_0_copy','field_625540b262818_field_6254fdc0efa29'),(142227,4123,'flexible_templates_5_development_team_steps_1_icon','4091'),(142228,4123,'_flexible_templates_5_development_team_steps_1_icon','field_625540b262816_field_62550482480cb'),(142229,4123,'flexible_templates_5_development_team_steps_1_heading','QA Engineers'),(142230,4123,'_flexible_templates_5_development_team_steps_1_heading','field_625540b262817_field_6254fdb2efa27'),(142231,4123,'flexible_templates_5_development_team_steps_1_copy','The quality of a product is vital to its success, and without a quality assurance engineer, that quality is compromised. Our QA engineers ensure each product is thoroughly tested to provide the best possible user experience.'),(142232,4123,'_flexible_templates_5_development_team_steps_1_copy','field_625540b262818_field_6254fdc0efa29'),(142233,4123,'flexible_templates_5_development_team_steps_2_icon','4092'),(142234,4123,'_flexible_templates_5_development_team_steps_2_icon','field_625540b262816_field_62550482480cb'),(142235,4123,'flexible_templates_5_development_team_steps_2_heading','Business Analysts'),(142236,4123,'_flexible_templates_5_development_team_steps_2_heading','field_625540b262817_field_6254fdb2efa27'),(142237,4123,'flexible_templates_5_development_team_steps_2_copy','These agile workers help bridge the gap between the IT team and the business, improving overall efficiency through data analysis of processes, products, services, and software.'),(142238,4123,'_flexible_templates_5_development_team_steps_2_copy','field_625540b262818_field_6254fdc0efa29'),(142239,4123,'flexible_templates_5_development_team_steps_3_icon','4093'),(142240,4123,'_flexible_templates_5_development_team_steps_3_icon','field_625540b262816_field_62550482480cb'),(142241,4123,'flexible_templates_5_development_team_steps_3_heading','Backend Engineers'),(142242,4123,'_flexible_templates_5_development_team_steps_3_heading','field_625540b262817_field_6254fdb2efa27'),(142243,4123,'flexible_templates_5_development_team_steps_3_copy','Backend engineers build the structure of a software application. They work on designing, building, and maintaining the server components of web applications. '),(142244,4123,'_flexible_templates_5_development_team_steps_3_copy','field_625540b262818_field_6254fdc0efa29'),(142245,4123,'flexible_templates_5_development_team_steps_4_icon','4094'),(142246,4123,'_flexible_templates_5_development_team_steps_4_icon','field_625540b262816_field_62550482480cb'),(142247,4123,'flexible_templates_5_development_team_steps_4_heading','UX/UI Designers'),(142248,4123,'_flexible_templates_5_development_team_steps_4_heading','field_625540b262817_field_6254fdb2efa27'),(142249,4123,'flexible_templates_5_development_team_steps_4_copy','Responsible for creating user-friendly interfaces making complex technical products intuitive, simple, and engaging. '),(142250,4123,'_flexible_templates_5_development_team_steps_4_copy','field_625540b262818_field_6254fdc0efa29'),(142251,4123,'flexible_templates_5_development_team_steps_5_icon','4095'),(142252,4123,'_flexible_templates_5_development_team_steps_5_icon','field_625540b262816_field_62550482480cb'),(142253,4123,'flexible_templates_5_development_team_steps_5_heading','Product Owners'),(142254,4123,'_flexible_templates_5_development_team_steps_5_heading','field_625540b262817_field_6254fdb2efa27'),(142255,4123,'flexible_templates_5_development_team_steps_5_copy','Agile leaders of the development team, at the center of every development cycle. They will define stories, organize and prioritize backlogs, and monitor the entire development process.\r\n'),(142256,4123,'_flexible_templates_5_development_team_steps_5_copy','field_625540b262818_field_6254fdc0efa29'),(142257,4123,'flexible_templates_5_development_team_steps_6_icon','4096'),(142258,4123,'_flexible_templates_5_development_team_steps_6_icon','field_625540b262816_field_62550482480cb'),(142259,4123,'flexible_templates_5_development_team_steps_6_heading','Data/ML Engineers'),(142260,4123,'_flexible_templates_5_development_team_steps_6_heading','field_625540b262817_field_6254fdb2efa27'),(142261,4123,'flexible_templates_5_development_team_steps_6_copy','Highly skilled software engineers and data scientists who develop AI systems that use large data sets to research, design, and develop self-running software to automate predictive models.\r\n'),(142262,4123,'_flexible_templates_5_development_team_steps_6_copy','field_625540b262818_field_6254fdc0efa29'),(142263,4123,'flexible_templates_5_development_team_steps_7_icon','4097'),(142264,4123,'_flexible_templates_5_development_team_steps_7_icon','field_625540b262816_field_62550482480cb'),(142265,4123,'flexible_templates_5_development_team_steps_7_heading','SRE/DevOps Engineers'),(142266,4123,'_flexible_templates_5_development_team_steps_7_heading','field_625540b262817_field_6254fdb2efa27'),(142267,4123,'flexible_templates_5_development_team_steps_7_copy','DevOps engineers ensure that all development is done in line with the company\'s needs and potential future needs by streamlining the software creation, updates, and deployment process. This can help prevent wasting time and resources on features that are not needed or used.\r\n'),(142268,4123,'_flexible_templates_5_development_team_steps_7_copy','field_625540b262818_field_6254fdc0efa29'),(142269,4123,'flexible_templates_5_development_team_steps_8_icon','4098'),(142270,4123,'_flexible_templates_5_development_team_steps_8_icon','field_625540b262816_field_62550482480cb'),(142271,4123,'flexible_templates_5_development_team_steps_8_heading','Scrum Masters'),(142272,4123,'_flexible_templates_5_development_team_steps_8_heading','field_625540b262817_field_6254fdb2efa27'),(142273,4123,'flexible_templates_5_development_team_steps_8_copy','These team leaders are are accountable for getting teams to perform at their highest levels by managing the process. They will facilitating meetings, improving workflow by removing any bottlenecks, and work with the product owner to ensure the product backlog is in good shape and ready for the next sprint.'),(142274,4123,'_flexible_templates_5_development_team_steps_8_copy','field_625540b262818_field_6254fdc0efa29'),(142275,4123,'flexible_templates_5_development_team_steps','9'),(142276,4123,'_flexible_templates_5_development_team_steps','field_625540b262815'),(142277,4123,'flexible_templates_5_cta','a:3:{s:5:\"title\";s:15:\"Build Your Team\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(142278,4123,'_flexible_templates_5_cta','field_6255410462819_field_62551b3e101c4'),(142279,4123,'flexible_templates_6_heading','A better chance at success with TEKTeams'),(142280,4123,'_flexible_templates_6_heading','field_62554b91172d7_field_6254fdb2efa27'),(142281,4123,'flexible_templates_6_sub_heading','Dev Shop vs Offshore vs In-house vs TEKTeams'),(142282,4123,'_flexible_templates_6_sub_heading','field_62554ba5172d8_field_6254fdbaefa28'),(142283,4123,'flexible_templates_6_icon','4099'),(142284,4123,'_flexible_templates_6_icon','field_62554d69172e1_field_62550482480cb'),(142285,4123,'flexible_templates_6_differential_translucent_header_0_heading','Your Needs'),(142286,4123,'_flexible_templates_6_differential_translucent_header_0_heading','field_625688668727a'),(142287,4123,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(142288,4123,'_flexible_templates_6_differential_translucent_header_0_color','field_62568e42de80b'),(142289,4123,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(142290,4123,'_flexible_templates_6_differential_translucent_header_1_heading','field_625688668727a'),(142291,4123,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(142292,4123,'_flexible_templates_6_differential_translucent_header_1_color','field_62568e42de80b'),(142293,4123,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore Teams'),(142294,4123,'_flexible_templates_6_differential_translucent_header_2_heading','field_625688668727a'),(142295,4123,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(142296,4123,'_flexible_templates_6_differential_translucent_header_2_color','field_62568e42de80b'),(142297,4123,'flexible_templates_6_differential_translucent_header_3_heading','Hiring In-house Developers'),(142298,4123,'_flexible_templates_6_differential_translucent_header_3_heading','field_625688668727a'),(142299,4123,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(142300,4123,'_flexible_templates_6_differential_translucent_header_3_color','field_62568e42de80b'),(142301,4123,'flexible_templates_6_differential_translucent_header_4_heading','TEKTeams'),(142302,4123,'_flexible_templates_6_differential_translucent_header_4_heading','field_625688668727a'),(142303,4123,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(142304,4123,'_flexible_templates_6_differential_translucent_header_4_color','field_62568e42de80b'),(142305,4123,'flexible_templates_6_differential_translucent_header','5'),(142306,4123,'_flexible_templates_6_differential_translucent_header','field_6256884687279'),(142307,4123,'flexible_templates_6_differential_translucent_0_heading_1','1'),(142308,4123,'_flexible_templates_6_differential_translucent_0_heading_1','field_625689c138821'),(142309,4123,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(142310,4123,'_flexible_templates_6_differential_translucent_0_column_1','field_62554d45172dc'),(142311,4123,'flexible_templates_6_differential_translucent_0_heading_2','Working with a Dev Shop'),(142312,4123,'_flexible_templates_6_differential_translucent_0_heading_2','field_62568a29727b5'),(142313,4123,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(142314,4123,'_flexible_templates_6_differential_translucent_0_column_2','field_62554d4a172dd'),(142315,4123,'flexible_templates_6_differential_translucent_0_column_2_color','#7080a7'),(142316,4123,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62554fcda0e79'),(142317,4123,'flexible_templates_6_differential_translucent_0_heading_3','3'),(142318,4123,'_flexible_templates_6_differential_translucent_0_heading_3','field_62568a30727b6'),(142319,4123,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(142320,4123,'_flexible_templates_6_differential_translucent_0_column_3','field_62554d4d172de'),(142321,4123,'flexible_templates_6_differential_translucent_0_column_3_color','#ff555f'),(142322,4123,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62554ff6a0e7a'),(142323,4123,'flexible_templates_6_differential_translucent_0_heading_4','4'),(142324,4123,'_flexible_templates_6_differential_translucent_0_heading_4','field_62568a37727b7'),(142325,4123,'flexible_templates_6_differential_translucent_0_column_4','Always'),(142326,4123,'_flexible_templates_6_differential_translucent_0_column_4','field_62554d4f172df'),(142327,4123,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(142328,4123,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62555028a0e7c'),(142329,4123,'flexible_templates_6_differential_translucent_0_heading_5','5'),(142330,4123,'_flexible_templates_6_differential_translucent_0_heading_5','field_62568a40727b8'),(142331,4123,'flexible_templates_6_differential_translucent_0_column_5','Always'),(142332,4123,'_flexible_templates_6_differential_translucent_0_column_5','field_62555011a0e7b'),(142333,4123,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(142334,4123,'_flexible_templates_6_differential_translucent_0_column_5_color','field_6255503aa0e7d'),(142335,4123,'flexible_templates_6_differential_translucent_1_heading_1','6'),(142336,4123,'_flexible_templates_6_differential_translucent_1_heading_1','field_625689c138821'),(142337,4123,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (speed to market)'),(142338,4123,'_flexible_templates_6_differential_translucent_1_column_1','field_62554d45172dc'),(142339,4123,'flexible_templates_6_differential_translucent_1_heading_2','7'),(142340,4123,'_flexible_templates_6_differential_translucent_1_heading_2','field_62568a29727b5'),(142341,4123,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(142342,4123,'_flexible_templates_6_differential_translucent_1_column_2','field_62554d4a172dd'),(142343,4123,'flexible_templates_6_differential_translucent_1_column_2_color','#ff555f'),(142344,4123,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62554fcda0e79'),(142345,4123,'flexible_templates_6_differential_translucent_1_heading_3','8'),(142346,4123,'_flexible_templates_6_differential_translucent_1_heading_3','field_62568a30727b6'),(142347,4123,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(142348,4123,'_flexible_templates_6_differential_translucent_1_column_3','field_62554d4d172de'),(142349,4123,'flexible_templates_6_differential_translucent_1_column_3_color','#7080a7'),(142350,4123,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62554ff6a0e7a'),(142351,4123,'flexible_templates_6_differential_translucent_1_heading_4','9'),(142352,4123,'_flexible_templates_6_differential_translucent_1_heading_4','field_62568a37727b7'),(142353,4123,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(142354,4123,'_flexible_templates_6_differential_translucent_1_column_4','field_62554d4f172df'),(142355,4123,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(142356,4123,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62555028a0e7c'),(142357,4123,'flexible_templates_6_differential_translucent_1_heading_5','10'),(142358,4123,'_flexible_templates_6_differential_translucent_1_heading_5','field_62568a40727b8'),(142359,4123,'flexible_templates_6_differential_translucent_1_column_5','Always'),(142360,4123,'_flexible_templates_6_differential_translucent_1_column_5','field_62555011a0e7b'),(142361,4123,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(142362,4123,'_flexible_templates_6_differential_translucent_1_column_5_color','field_6255503aa0e7d'),(142363,4123,'flexible_templates_6_differential_translucent_2_heading_1','11'),(142364,4123,'_flexible_templates_6_differential_translucent_2_heading_1','field_625689c138821'),(142365,4123,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(142366,4123,'_flexible_templates_6_differential_translucent_2_column_1','field_62554d45172dc'),(142367,4123,'flexible_templates_6_differential_translucent_2_heading_2','12'),(142368,4123,'_flexible_templates_6_differential_translucent_2_heading_2','field_62568a29727b5'),(142369,4123,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(142370,4123,'_flexible_templates_6_differential_translucent_2_column_2','field_62554d4a172dd'),(142371,4123,'flexible_templates_6_differential_translucent_2_column_2_color','#7080a7'),(142372,4123,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62554fcda0e79'),(142373,4123,'flexible_templates_6_differential_translucent_2_heading_3','13'),(142374,4123,'_flexible_templates_6_differential_translucent_2_heading_3','field_62568a30727b6'),(142375,4123,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(142376,4123,'_flexible_templates_6_differential_translucent_2_column_3','field_62554d4d172de'),(142377,4123,'flexible_templates_6_differential_translucent_2_column_3_color','#ff555f'),(142378,4123,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62554ff6a0e7a'),(142379,4123,'flexible_templates_6_differential_translucent_2_heading_4','14'),(142380,4123,'_flexible_templates_6_differential_translucent_2_heading_4','field_62568a37727b7'),(142381,4123,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(142382,4123,'_flexible_templates_6_differential_translucent_2_column_4','field_62554d4f172df'),(142383,4123,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(142384,4123,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62555028a0e7c'),(142385,4123,'flexible_templates_6_differential_translucent_2_heading_5','15'),(142386,4123,'_flexible_templates_6_differential_translucent_2_heading_5','field_62568a40727b8'),(142387,4123,'flexible_templates_6_differential_translucent_2_column_5','Always'),(142388,4123,'_flexible_templates_6_differential_translucent_2_column_5','field_62555011a0e7b'),(142389,4123,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(142390,4123,'_flexible_templates_6_differential_translucent_2_column_5_color','field_6255503aa0e7d'),(142391,4123,'flexible_templates_6_differential_translucent_3_heading_1','16'),(142392,4123,'_flexible_templates_6_differential_translucent_3_heading_1','field_625689c138821'),(142393,4123,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(142394,4123,'_flexible_templates_6_differential_translucent_3_column_1','field_62554d45172dc'),(142395,4123,'flexible_templates_6_differential_translucent_3_heading_2','17'),(142396,4123,'_flexible_templates_6_differential_translucent_3_heading_2','field_62568a29727b5'),(142397,4123,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(142398,4123,'_flexible_templates_6_differential_translucent_3_column_2','field_62554d4a172dd'),(142399,4123,'flexible_templates_6_differential_translucent_3_column_2_color','#7080a7'),(142400,4123,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62554fcda0e79'),(142401,4123,'flexible_templates_6_differential_translucent_3_heading_3','18'),(142402,4123,'_flexible_templates_6_differential_translucent_3_heading_3','field_62568a30727b6'),(142403,4123,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(142404,4123,'_flexible_templates_6_differential_translucent_3_column_3','field_62554d4d172de'),(142405,4123,'flexible_templates_6_differential_translucent_3_column_3_color','#ff555f'),(142406,4123,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62554ff6a0e7a'),(142407,4123,'flexible_templates_6_differential_translucent_3_heading_4','19'),(142408,4123,'_flexible_templates_6_differential_translucent_3_heading_4','field_62568a37727b7'),(142409,4123,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(142410,4123,'_flexible_templates_6_differential_translucent_3_column_4','field_62554d4f172df'),(142411,4123,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(142412,4123,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62555028a0e7c'),(142413,4123,'flexible_templates_6_differential_translucent_3_heading_5','Working with Translucent'),(142414,4123,'_flexible_templates_6_differential_translucent_3_heading_5','field_62568a40727b8'),(142415,4123,'flexible_templates_6_differential_translucent_3_column_5','Always'),(142416,4123,'_flexible_templates_6_differential_translucent_3_column_5','field_62555011a0e7b'),(142417,4123,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(142418,4123,'_flexible_templates_6_differential_translucent_3_column_5_color','field_6255503aa0e7d'),(142419,4123,'flexible_templates_6_differential_translucent','4'),(142420,4123,'_flexible_templates_6_differential_translucent','field_62554c30172da'),(142421,4123,'flexible_templates_7_heading','Be smart. Be efficient. Be agile.'),(142422,4123,'_flexible_templates_7_heading','field_625565e14146d_field_6254fdb2efa27'),(142423,4123,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(142424,4123,'_flexible_templates_7_cta','field_625565fa4146e_field_62551b3e101c4'),(142464,4124,'flexible_templates','a:8:{i:0;s:16:\"tek-teams-banner\";i:1;s:20:\"tek-teams-two-column\";i:2;s:14:\"tek-team-about\";i:3;s:21:\"tek-teams-development\";i:4;s:18:\"tek_teams_benifits\";i:5;s:17:\"tek-team-whats-is\";i:6;s:34:\"tek-teams-translucent-differential\";i:7;s:17:\"lets_talk_section\";}'),(142465,4124,'_flexible_templates','field_6254f4d84ef9b'),(142466,4124,'flexible_templates_0_image','4066'),(142467,4124,'_flexible_templates_0_image','field_6255038c2e6ae_field_6254fdc5efa2a'),(142468,4124,'flexible_templates_0_mob_image','4067'),(142469,4124,'_flexible_templates_0_mob_image','field_625503db2e6af_field_6254fdcbefa2b'),(142470,4124,'flexible_templates_0_icon','4068'),(142471,4124,'_flexible_templates_0_icon','field_6255095042ef2_field_62550482480cb'),(142472,4124,'flexible_templates_0_heading','TEKTeams'),(142473,4124,'_flexible_templates_0_heading','field_6255096442ef3_field_6254fdb2efa27'),(142474,4124,'flexible_templates_0_sub_heading','TEK™ WORLD'),(142475,4124,'_flexible_templates_0_sub_heading','field_6255097642ef4_field_6254fdbaefa28'),(142476,4124,'flexible_templates_1_heading','Gain access to top 1% tech talent with a trusted partner that delivers cloud native solutions and value.'),(142477,4124,'_flexible_templates_1_heading','field_62551ac3a6f96_field_6254fdb2efa27'),(142478,4124,'flexible_templates_1_sub_heading','THE TEAM YOU NEED'),(142479,4124,'_flexible_templates_1_sub_heading','field_62551ae4a6f97_field_6254fdbaefa28'),(142480,4124,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(142481,4124,'_flexible_templates_1_cta','field_62551b56a6f98_field_62551b3e101c4'),(142482,4124,'flexible_templates_1_copy','The best technology. The best people. Access tailored software engineering teams with industry-specific experience without the hassle of hiring and maintaining internal teams. We understand how hard it is to acquire and retain top talent, and we take the pressure off HR. Focus on your business while we take lead for the delivery and execution of the project.'),(142483,4124,'_flexible_templates_1_copy','field_62551b74a6f99_field_6254fdc0efa29'),(142484,4124,'flexible_templates_2_image','4069'),(142485,4124,'_flexible_templates_2_image','field_625523de9609f_field_6254fdc5efa2a'),(142486,4124,'flexible_templates_2_mob_image','4070'),(142487,4124,'_flexible_templates_2_mob_image','field_625523f4960a0_field_6254fdcbefa2b'),(142488,4124,'flexible_templates_2_icon','4071'),(142489,4124,'_flexible_templates_2_icon','field_6255246d960a1_field_62550482480cb'),(142490,4124,'flexible_templates_2_heading','What are TEKTeams?'),(142491,4124,'_flexible_templates_2_heading','field_62552482960a2_field_6254fdb2efa27'),(142492,4124,'flexible_templates_2_copy','TEKTeams are your dedicated development teams built on Translucent principals that, as part of the TEK ecosystem, combine trust, processes, people, and technology to deliver value.\r\n\r\nTranslucent has created a process that brings together the best people in the industry with various skills to develop and maintain the highest quality software. A perfect combination of roles, talent, skillset, and the right work environment.\r\n\r\nTEKTeams provide the precise expertise your organization needs to execute a project successfully.'),(142493,4124,'_flexible_templates_2_copy','field_625525b15629c'),(142494,4124,'flexible_templates_2_content_right','Our onshore/nearshore model combines resources across the Americas to overcome challenges your project might encounter; we work closely alongside your company staff to attain your business goals. Increase the number of resources you have on hand to help you develop and manage intelligent applications and platforms.\r\n\r\nTEKTeams are the most cost-effective way to get the talent you need for your cloud native projects without taking up all of your time or budget.'),(142495,4124,'_flexible_templates_2_content_right','field_625525ba5629d'),(142496,4124,'flexible_templates_3_image','4072'),(142497,4124,'_flexible_templates_3_image','field_62552ada52711_field_6254fdc5efa2a'),(142498,4124,'flexible_templates_3_mob_image','4073'),(142499,4124,'_flexible_templates_3_mob_image','field_62552aed52712_field_6254fdcbefa2b'),(142500,4124,'flexible_templates_3_icon','4074'),(142501,4124,'_flexible_templates_3_icon','field_62552b7652713_field_62550482480cb'),(142502,4124,'flexible_templates_3_heading','Get started with the best resources for your project'),(142503,4124,'_flexible_templates_3_heading','field_62552baf52715_field_6254fdb2efa27'),(142504,4124,'flexible_templates_3_copy','TEKTeams are tailored software engineering teams to help your business develop and manage smarter apps. We match business goals to the right technology and teams to drive better results. With TEKTeams you get access to the best of the best resources for your cloud native projects at a price you can afford, with the capacity to scale as needed, according to your demands. Here is what to expect working with TEKTeams:'),(142505,4124,'_flexible_templates_3_copy','field_62552b8552714_field_6254fdc0efa29'),(142506,4124,'flexible_templates_3_development_team_steps_0_icon','4075'),(142507,4124,'_flexible_templates_3_development_team_steps_0_icon','field_62552cdb784a9_field_62550482480cb'),(142508,4124,'flexible_templates_3_development_team_steps_0_heading','A trusted tech partner'),(142509,4124,'_flexible_templates_3_development_team_steps_0_heading','field_62552ced784aa_field_6254fdb2efa27'),(142510,4124,'flexible_templates_3_development_team_steps_0_copy','

Increase your workforce by partnering with the top 1% teams tailored to your business needs

\r\n

We will explain and document the entire development process and make sure to meet business and project objectives

\r\n

Scale your teams as needed with a global network united as one

'),(142511,4124,'_flexible_templates_3_development_team_steps_0_copy','field_62552cfe784ab_field_6254fdc0efa29'),(142512,4124,'flexible_templates_3_development_team_steps_1_icon','4076'),(142513,4124,'_flexible_templates_3_development_team_steps_1_icon','field_62552cdb784a9_field_62550482480cb'),(142514,4124,'flexible_templates_3_development_team_steps_1_heading','Break down vision into requirements'),(142515,4124,'_flexible_templates_3_development_team_steps_1_heading','field_62552ced784aa_field_6254fdb2efa27'),(142516,4124,'flexible_templates_3_development_team_steps_1_copy','

We will validate your idea with a future vision that is in sync with the realities that your business is currently facing

\r\n

Cloud native solutions make it possible to work within clients\' budgets

\r\n

Planning, execution, support, best practices, and experience in breaking down the concept into a user stories tech road map

'),(142517,4124,'_flexible_templates_3_development_team_steps_1_copy','field_62552cfe784ab_field_6254fdc0efa29'),(142518,4124,'flexible_templates_3_development_team_steps_2_icon','4077'),(142519,4124,'_flexible_templates_3_development_team_steps_2_icon','field_62552cdb784a9_field_62550482480cb'),(142520,4124,'flexible_templates_3_development_team_steps_2_heading','Build your team and start innovating'),(142521,4124,'_flexible_templates_3_development_team_steps_2_heading','field_62552ced784aa_field_6254fdb2efa27'),(142522,4124,'flexible_templates_3_development_team_steps_2_copy',' The Team You Need For Your Cloud Native Project:\r\n

Expanding your workforce is easier than you think, with TEKTeams, you can quickly and affordably grow your company with teams to cover all of your business needs

\r\n

With the right team behind your project, you\'ll get better results, more quickly

\r\n\r\n'),(142523,4124,'_flexible_templates_3_development_team_steps_2_copy','field_62552cfe784ab_field_6254fdc0efa29'),(142524,4124,'flexible_templates_3_development_team_steps','3'),(142525,4124,'_flexible_templates_3_development_team_steps','field_62552cbb784a8'),(142526,4124,'flexible_templates_3_cta','a:3:{s:5:\"title\";s:11:\"Gain Access\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(142527,4124,'_flexible_templates_3_cta','field_62552c6a784a7_field_62551b3e101c4'),(142528,4124,'flexible_templates_4_image','4078'),(142529,4124,'_flexible_templates_4_image','field_625538ef16bb0_field_6254fdc5efa2a'),(142530,4124,'flexible_templates_4_mob_image','4079'),(142531,4124,'_flexible_templates_4_mob_image','field_6255391616bb1_field_6254fdcbefa2b'),(142532,4124,'flexible_templates_4_icon','4080'),(142533,4124,'_flexible_templates_4_icon','field_62553d28bca93_field_62550482480cb'),(142534,4124,'flexible_templates_4_heading','Benefits of TEKTeams'),(142535,4124,'_flexible_templates_4_heading','field_6255397e16bb2_field_6254fdb2efa27'),(142536,4124,'flexible_templates_4_development_team_steps_0_icon','4086'),(142537,4124,'_flexible_templates_4_development_team_steps_0_icon','field_625539a816bb4_field_62550482480cb'),(142538,4124,'flexible_templates_4_development_team_steps_0_heading','Fully Managed'),(142539,4124,'_flexible_templates_4_development_team_steps_0_heading','field_625539a816bb5_field_6254fdb2efa27'),(142540,4124,'flexible_templates_4_development_team_steps_0_copy','Translucent is responsible for hiring, managing, and delivering technical expertise from start to finish. Avoid hiring and team management issues.'),(142541,4124,'_flexible_templates_4_development_team_steps_0_copy','field_625539a816bb6_field_6254fdc0efa29'),(142542,4124,'flexible_templates_4_development_team_steps_1_icon','4085'),(142543,4124,'_flexible_templates_4_development_team_steps_1_icon','field_625539a816bb4_field_62550482480cb'),(142544,4124,'flexible_templates_4_development_team_steps_1_heading','Remote'),(142545,4124,'_flexible_templates_4_development_team_steps_1_heading','field_625539a816bb5_field_6254fdb2efa27'),(142546,4124,'flexible_templates_4_development_team_steps_1_copy','Completely remote. Save office space and gain more time for your employees. Over the last 12 years, we have perfected a remote software development system called TEKProcess.'),(142547,4124,'_flexible_templates_4_development_team_steps_1_copy','field_625539a816bb6_field_6254fdc0efa29'),(142548,4124,'flexible_templates_4_development_team_steps_2_icon','4084'),(142549,4124,'_flexible_templates_4_development_team_steps_2_icon','field_625539a816bb4_field_62550482480cb'),(142550,4124,'flexible_templates_4_development_team_steps_2_heading','Access to Translucent Experts'),(142551,4124,'_flexible_templates_4_development_team_steps_2_heading','field_625539a816bb5_field_6254fdb2efa27'),(142552,4124,'flexible_templates_4_development_team_steps_2_copy','Part of working with TEKTeams is access to our software architects and tech leads at no extra cost.'),(142553,4124,'_flexible_templates_4_development_team_steps_2_copy','field_625539a816bb6_field_6254fdc0efa29'),(142554,4124,'flexible_templates_4_development_team_steps_3_icon','4083'),(142555,4124,'_flexible_templates_4_development_team_steps_3_icon','field_625539a816bb4_field_62550482480cb'),(142556,4124,'flexible_templates_4_development_team_steps_3_heading','Access to Top Tech Talent'),(142557,4124,'_flexible_templates_4_development_team_steps_3_heading','field_625539a816bb5_field_6254fdb2efa27'),(142558,4124,'flexible_templates_4_development_team_steps_3_copy','Our proven hiring and continuous employee improvement processes ensure that only top talent works on each project.'),(142559,4124,'_flexible_templates_4_development_team_steps_3_copy','field_625539a816bb6_field_6254fdc0efa29'),(142560,4124,'flexible_templates_4_development_team_steps_4_icon','4082'),(142561,4124,'_flexible_templates_4_development_team_steps_4_icon','field_625539a816bb4_field_62550482480cb'),(142562,4124,'flexible_templates_4_development_team_steps_4_heading','Team Scalability'),(142563,4124,'_flexible_templates_4_development_team_steps_4_heading','field_625539a816bb5_field_6254fdb2efa27'),(142564,4124,'flexible_templates_4_development_team_steps_4_copy','On-demand resources are ready when you need to scale the team to meet business demands.'),(142565,4124,'_flexible_templates_4_development_team_steps_4_copy','field_625539a816bb6_field_6254fdc0efa29'),(142566,4124,'flexible_templates_4_development_team_steps_5_icon','4081'),(142567,4124,'_flexible_templates_4_development_team_steps_5_icon','field_625539a816bb4_field_62550482480cb'),(142568,4124,'flexible_templates_4_development_team_steps_5_heading','Start Your Journey Now'),(142569,4124,'_flexible_templates_4_development_team_steps_5_heading','field_625539a816bb5_field_6254fdb2efa27'),(142570,4124,'flexible_templates_4_development_team_steps_5_copy','Our TEKTeams are ready to help you now.'),(142571,4124,'_flexible_templates_4_development_team_steps_5_copy','field_625539a816bb6_field_6254fdc0efa29'),(142572,4124,'flexible_templates_4_development_team_steps','6'),(142573,4124,'_flexible_templates_4_development_team_steps','field_625539a816bb3'),(142574,4124,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:13:\"Start Scaling\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(142575,4124,'_flexible_templates_4_cta','field_625539ce16bb7_field_62551b3e101c4'),(142576,4124,'flexible_templates_5_image','4087'),(142577,4124,'_flexible_templates_5_image','field_62553e7d5dd54_field_6254fdc5efa2a'),(142578,4124,'flexible_templates_5_mob_image','4088'),(142579,4124,'_flexible_templates_5_mob_image','field_62553eab5dd55_field_6254fdcbefa2b'),(142580,4124,'flexible_templates_5_icon','4089'),(142581,4124,'_flexible_templates_5_icon','field_62553eee5dd56_field_62550482480cb'),(142582,4124,'flexible_templates_5_heading','The team you need for your cloud native project'),(142583,4124,'_flexible_templates_5_heading','field_62553f075dd57_field_6254fdb2efa27'),(142584,4124,'flexible_templates_5_heading_mobile','The team you need for your cloud native project'),(142585,4124,'_flexible_templates_5_heading_mobile','field_62553f185dd58'),(142586,4124,'flexible_templates_5_copy','We help companies build and scale smart applications, working together to achieve the best results by pairing them with our award-winning team of experts. That includes project managers, senior developers, and QA specialists who have been handpicked to execute on specific goals.'),(142587,4124,'_flexible_templates_5_copy','field_62553f315dd59_field_6254fdc0efa29'),(142588,4124,'flexible_templates_5_development_team_steps_0_icon','4090'),(142589,4124,'_flexible_templates_5_development_team_steps_0_icon','field_625540b262816_field_62550482480cb'),(142590,4124,'flexible_templates_5_development_team_steps_0_heading','Frontend Engineers'),(142591,4124,'_flexible_templates_5_development_team_steps_0_heading','field_625540b262817_field_6254fdb2efa27'),(142592,4124,'flexible_templates_5_development_team_steps_0_copy','Responsible for the development of the user interface of an application. They are always in demand, but with TEKTeams you get access on demand. '),(142593,4124,'_flexible_templates_5_development_team_steps_0_copy','field_625540b262818_field_6254fdc0efa29'),(142594,4124,'flexible_templates_5_development_team_steps_1_icon','4091'),(142595,4124,'_flexible_templates_5_development_team_steps_1_icon','field_625540b262816_field_62550482480cb'),(142596,4124,'flexible_templates_5_development_team_steps_1_heading','QA Engineers'),(142597,4124,'_flexible_templates_5_development_team_steps_1_heading','field_625540b262817_field_6254fdb2efa27'),(142598,4124,'flexible_templates_5_development_team_steps_1_copy','The quality of a product is vital to its success, and without a quality assurance engineer, that quality is compromised. Our QA engineers ensure each product is thoroughly tested to provide the best possible user experience.'),(142599,4124,'_flexible_templates_5_development_team_steps_1_copy','field_625540b262818_field_6254fdc0efa29'),(142600,4124,'flexible_templates_5_development_team_steps_2_icon','4092'),(142601,4124,'_flexible_templates_5_development_team_steps_2_icon','field_625540b262816_field_62550482480cb'),(142602,4124,'flexible_templates_5_development_team_steps_2_heading','Business Analysts'),(142603,4124,'_flexible_templates_5_development_team_steps_2_heading','field_625540b262817_field_6254fdb2efa27'),(142604,4124,'flexible_templates_5_development_team_steps_2_copy','These agile workers help bridge the gap between the IT team and the business, improving overall efficiency through data analysis of processes, products, services, and software.'),(142605,4124,'_flexible_templates_5_development_team_steps_2_copy','field_625540b262818_field_6254fdc0efa29'),(142606,4124,'flexible_templates_5_development_team_steps_3_icon','4093'),(142607,4124,'_flexible_templates_5_development_team_steps_3_icon','field_625540b262816_field_62550482480cb'),(142608,4124,'flexible_templates_5_development_team_steps_3_heading','Backend Engineers'),(142609,4124,'_flexible_templates_5_development_team_steps_3_heading','field_625540b262817_field_6254fdb2efa27'),(142610,4124,'flexible_templates_5_development_team_steps_3_copy','Backend engineers build the structure of a software application. They work on designing, building, and maintaining the server components of web applications. '),(142611,4124,'_flexible_templates_5_development_team_steps_3_copy','field_625540b262818_field_6254fdc0efa29'),(142612,4124,'flexible_templates_5_development_team_steps_4_icon','4094'),(142613,4124,'_flexible_templates_5_development_team_steps_4_icon','field_625540b262816_field_62550482480cb'),(142614,4124,'flexible_templates_5_development_team_steps_4_heading','UX/UI Designers'),(142615,4124,'_flexible_templates_5_development_team_steps_4_heading','field_625540b262817_field_6254fdb2efa27'),(142616,4124,'flexible_templates_5_development_team_steps_4_copy','Responsible for creating user-friendly interfaces making complex technical products intuitive, simple, and engaging. '),(142617,4124,'_flexible_templates_5_development_team_steps_4_copy','field_625540b262818_field_6254fdc0efa29'),(142618,4124,'flexible_templates_5_development_team_steps_5_icon','4095'),(142619,4124,'_flexible_templates_5_development_team_steps_5_icon','field_625540b262816_field_62550482480cb'),(142620,4124,'flexible_templates_5_development_team_steps_5_heading','Product Owners'),(142621,4124,'_flexible_templates_5_development_team_steps_5_heading','field_625540b262817_field_6254fdb2efa27'),(142622,4124,'flexible_templates_5_development_team_steps_5_copy','Agile leaders of the development team, at the center of every development cycle. They will define stories, organize and prioritize backlogs, and monitor the entire development process.\r\n'),(142623,4124,'_flexible_templates_5_development_team_steps_5_copy','field_625540b262818_field_6254fdc0efa29'),(142624,4124,'flexible_templates_5_development_team_steps_6_icon','4096'),(142625,4124,'_flexible_templates_5_development_team_steps_6_icon','field_625540b262816_field_62550482480cb'),(142626,4124,'flexible_templates_5_development_team_steps_6_heading','Data/ML Engineers'),(142627,4124,'_flexible_templates_5_development_team_steps_6_heading','field_625540b262817_field_6254fdb2efa27'),(142628,4124,'flexible_templates_5_development_team_steps_6_copy','Highly skilled software engineers and data scientists who develop AI systems that use large data sets to research, design, and develop self-running software to automate predictive models.\r\n'),(142629,4124,'_flexible_templates_5_development_team_steps_6_copy','field_625540b262818_field_6254fdc0efa29'),(142630,4124,'flexible_templates_5_development_team_steps_7_icon','4097'),(142631,4124,'_flexible_templates_5_development_team_steps_7_icon','field_625540b262816_field_62550482480cb'),(142632,4124,'flexible_templates_5_development_team_steps_7_heading','SRE/DevOps Engineers'),(142633,4124,'_flexible_templates_5_development_team_steps_7_heading','field_625540b262817_field_6254fdb2efa27'),(142634,4124,'flexible_templates_5_development_team_steps_7_copy','DevOps engineers ensure that all development is done in line with the company\'s needs and potential future needs by streamlining the software creation, updates, and deployment process. This can help prevent wasting time and resources on features that are not needed or used.\r\n'),(142635,4124,'_flexible_templates_5_development_team_steps_7_copy','field_625540b262818_field_6254fdc0efa29'),(142636,4124,'flexible_templates_5_development_team_steps_8_icon','4098'),(142637,4124,'_flexible_templates_5_development_team_steps_8_icon','field_625540b262816_field_62550482480cb'),(142638,4124,'flexible_templates_5_development_team_steps_8_heading','Scrum Masters'),(142639,4124,'_flexible_templates_5_development_team_steps_8_heading','field_625540b262817_field_6254fdb2efa27'),(142640,4124,'flexible_templates_5_development_team_steps_8_copy','These team leaders are are accountable for getting teams to perform at their highest levels by managing the process. They will facilitating meetings, improving workflow by removing any bottlenecks, and work with the product owner to ensure the product backlog is in good shape and ready for the next sprint.'),(142641,4124,'_flexible_templates_5_development_team_steps_8_copy','field_625540b262818_field_6254fdc0efa29'),(142642,4124,'flexible_templates_5_development_team_steps','9'),(142643,4124,'_flexible_templates_5_development_team_steps','field_625540b262815'),(142644,4124,'flexible_templates_5_cta','a:3:{s:5:\"title\";s:15:\"Build Your Team\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(142645,4124,'_flexible_templates_5_cta','field_6255410462819_field_62551b3e101c4'),(142646,4124,'flexible_templates_6_heading','A better chance at success with TEKTeams'),(142647,4124,'_flexible_templates_6_heading','field_62554b91172d7_field_6254fdb2efa27'),(142648,4124,'flexible_templates_6_sub_heading','Dev Shop vs Offshore vs In-house vs TEKTeams'),(142649,4124,'_flexible_templates_6_sub_heading','field_62554ba5172d8_field_6254fdbaefa28'),(142650,4124,'flexible_templates_6_icon','4099'),(142651,4124,'_flexible_templates_6_icon','field_62554d69172e1_field_62550482480cb'),(142652,4124,'flexible_templates_6_differential_translucent_header_0_heading','Your Needs'),(142653,4124,'_flexible_templates_6_differential_translucent_header_0_heading','field_625688668727a'),(142654,4124,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(142655,4124,'_flexible_templates_6_differential_translucent_header_0_color','field_62568e42de80b'),(142656,4124,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(142657,4124,'_flexible_templates_6_differential_translucent_header_1_heading','field_625688668727a'),(142658,4124,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(142659,4124,'_flexible_templates_6_differential_translucent_header_1_color','field_62568e42de80b'),(142660,4124,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore Teams'),(142661,4124,'_flexible_templates_6_differential_translucent_header_2_heading','field_625688668727a'),(142662,4124,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(142663,4124,'_flexible_templates_6_differential_translucent_header_2_color','field_62568e42de80b'),(142664,4124,'flexible_templates_6_differential_translucent_header_3_heading','Hiring In-house Developers'),(142665,4124,'_flexible_templates_6_differential_translucent_header_3_heading','field_625688668727a'),(142666,4124,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(142667,4124,'_flexible_templates_6_differential_translucent_header_3_color','field_62568e42de80b'),(142668,4124,'flexible_templates_6_differential_translucent_header_4_heading','TEKTeams'),(142669,4124,'_flexible_templates_6_differential_translucent_header_4_heading','field_625688668727a'),(142670,4124,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(142671,4124,'_flexible_templates_6_differential_translucent_header_4_color','field_62568e42de80b'),(142672,4124,'flexible_templates_6_differential_translucent_header','5'),(142673,4124,'_flexible_templates_6_differential_translucent_header','field_6256884687279'),(142674,4124,'flexible_templates_6_differential_translucent_0_heading_1','1'),(142675,4124,'_flexible_templates_6_differential_translucent_0_heading_1','field_625689c138821'),(142676,4124,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(142677,4124,'_flexible_templates_6_differential_translucent_0_column_1','field_62554d45172dc'),(142678,4124,'flexible_templates_6_differential_translucent_0_heading_2','Working with a Dev Shop'),(142679,4124,'_flexible_templates_6_differential_translucent_0_heading_2','field_62568a29727b5'),(142680,4124,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(142681,4124,'_flexible_templates_6_differential_translucent_0_column_2','field_62554d4a172dd'),(142682,4124,'flexible_templates_6_differential_translucent_0_column_2_color','#7080a7'),(142683,4124,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62554fcda0e79'),(142684,4124,'flexible_templates_6_differential_translucent_0_heading_3','3'),(142685,4124,'_flexible_templates_6_differential_translucent_0_heading_3','field_62568a30727b6'),(142686,4124,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(142687,4124,'_flexible_templates_6_differential_translucent_0_column_3','field_62554d4d172de'),(142688,4124,'flexible_templates_6_differential_translucent_0_column_3_color','#ff555f'),(142689,4124,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62554ff6a0e7a'),(142690,4124,'flexible_templates_6_differential_translucent_0_heading_4','4'),(142691,4124,'_flexible_templates_6_differential_translucent_0_heading_4','field_62568a37727b7'),(142692,4124,'flexible_templates_6_differential_translucent_0_column_4','Always'),(142693,4124,'_flexible_templates_6_differential_translucent_0_column_4','field_62554d4f172df'),(142694,4124,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(142695,4124,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62555028a0e7c'),(142696,4124,'flexible_templates_6_differential_translucent_0_heading_5','5'),(142697,4124,'_flexible_templates_6_differential_translucent_0_heading_5','field_62568a40727b8'),(142698,4124,'flexible_templates_6_differential_translucent_0_column_5','Always'),(142699,4124,'_flexible_templates_6_differential_translucent_0_column_5','field_62555011a0e7b'),(142700,4124,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(142701,4124,'_flexible_templates_6_differential_translucent_0_column_5_color','field_6255503aa0e7d'),(142702,4124,'flexible_templates_6_differential_translucent_1_heading_1','6'),(142703,4124,'_flexible_templates_6_differential_translucent_1_heading_1','field_625689c138821'),(142704,4124,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (speed to market)'),(142705,4124,'_flexible_templates_6_differential_translucent_1_column_1','field_62554d45172dc'),(142706,4124,'flexible_templates_6_differential_translucent_1_heading_2','7'),(142707,4124,'_flexible_templates_6_differential_translucent_1_heading_2','field_62568a29727b5'),(142708,4124,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(142709,4124,'_flexible_templates_6_differential_translucent_1_column_2','field_62554d4a172dd'),(142710,4124,'flexible_templates_6_differential_translucent_1_column_2_color','#ff555f'),(142711,4124,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62554fcda0e79'),(142712,4124,'flexible_templates_6_differential_translucent_1_heading_3','8'),(142713,4124,'_flexible_templates_6_differential_translucent_1_heading_3','field_62568a30727b6'),(142714,4124,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(142715,4124,'_flexible_templates_6_differential_translucent_1_column_3','field_62554d4d172de'),(142716,4124,'flexible_templates_6_differential_translucent_1_column_3_color','#7080a7'),(142717,4124,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62554ff6a0e7a'),(142718,4124,'flexible_templates_6_differential_translucent_1_heading_4','9'),(142719,4124,'_flexible_templates_6_differential_translucent_1_heading_4','field_62568a37727b7'),(142720,4124,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(142721,4124,'_flexible_templates_6_differential_translucent_1_column_4','field_62554d4f172df'),(142722,4124,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(142723,4124,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62555028a0e7c'),(142724,4124,'flexible_templates_6_differential_translucent_1_heading_5','10'),(142725,4124,'_flexible_templates_6_differential_translucent_1_heading_5','field_62568a40727b8'),(142726,4124,'flexible_templates_6_differential_translucent_1_column_5','Always'),(142727,4124,'_flexible_templates_6_differential_translucent_1_column_5','field_62555011a0e7b'),(142728,4124,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(142729,4124,'_flexible_templates_6_differential_translucent_1_column_5_color','field_6255503aa0e7d'),(142730,4124,'flexible_templates_6_differential_translucent_2_heading_1','11'),(142731,4124,'_flexible_templates_6_differential_translucent_2_heading_1','field_625689c138821'),(142732,4124,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(142733,4124,'_flexible_templates_6_differential_translucent_2_column_1','field_62554d45172dc'),(142734,4124,'flexible_templates_6_differential_translucent_2_heading_2','12'),(142735,4124,'_flexible_templates_6_differential_translucent_2_heading_2','field_62568a29727b5'),(142736,4124,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(142737,4124,'_flexible_templates_6_differential_translucent_2_column_2','field_62554d4a172dd'),(142738,4124,'flexible_templates_6_differential_translucent_2_column_2_color','#7080a7'),(142739,4124,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62554fcda0e79'),(142740,4124,'flexible_templates_6_differential_translucent_2_heading_3','13'),(142741,4124,'_flexible_templates_6_differential_translucent_2_heading_3','field_62568a30727b6'),(142742,4124,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(142743,4124,'_flexible_templates_6_differential_translucent_2_column_3','field_62554d4d172de'),(142744,4124,'flexible_templates_6_differential_translucent_2_column_3_color','#ff555f'),(142745,4124,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62554ff6a0e7a'),(142746,4124,'flexible_templates_6_differential_translucent_2_heading_4','14'),(142747,4124,'_flexible_templates_6_differential_translucent_2_heading_4','field_62568a37727b7'),(142748,4124,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(142749,4124,'_flexible_templates_6_differential_translucent_2_column_4','field_62554d4f172df'),(142750,4124,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(142751,4124,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62555028a0e7c'),(142752,4124,'flexible_templates_6_differential_translucent_2_heading_5','15'),(142753,4124,'_flexible_templates_6_differential_translucent_2_heading_5','field_62568a40727b8'),(142754,4124,'flexible_templates_6_differential_translucent_2_column_5','Always'),(142755,4124,'_flexible_templates_6_differential_translucent_2_column_5','field_62555011a0e7b'),(142756,4124,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(142757,4124,'_flexible_templates_6_differential_translucent_2_column_5_color','field_6255503aa0e7d'),(142758,4124,'flexible_templates_6_differential_translucent_3_heading_1','16'),(142759,4124,'_flexible_templates_6_differential_translucent_3_heading_1','field_625689c138821'),(142760,4124,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(142761,4124,'_flexible_templates_6_differential_translucent_3_column_1','field_62554d45172dc'),(142762,4124,'flexible_templates_6_differential_translucent_3_heading_2','17'),(142763,4124,'_flexible_templates_6_differential_translucent_3_heading_2','field_62568a29727b5'),(142764,4124,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(142765,4124,'_flexible_templates_6_differential_translucent_3_column_2','field_62554d4a172dd'),(142766,4124,'flexible_templates_6_differential_translucent_3_column_2_color','#7080a7'),(142767,4124,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62554fcda0e79'),(142768,4124,'flexible_templates_6_differential_translucent_3_heading_3','18'),(142769,4124,'_flexible_templates_6_differential_translucent_3_heading_3','field_62568a30727b6'),(142770,4124,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(142771,4124,'_flexible_templates_6_differential_translucent_3_column_3','field_62554d4d172de'),(142772,4124,'flexible_templates_6_differential_translucent_3_column_3_color','#ff555f'),(142773,4124,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62554ff6a0e7a'),(142774,4124,'flexible_templates_6_differential_translucent_3_heading_4','19'),(142775,4124,'_flexible_templates_6_differential_translucent_3_heading_4','field_62568a37727b7'),(142776,4124,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(142777,4124,'_flexible_templates_6_differential_translucent_3_column_4','field_62554d4f172df'),(142778,4124,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(142779,4124,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62555028a0e7c'),(142780,4124,'flexible_templates_6_differential_translucent_3_heading_5','Working with Translucent'),(142781,4124,'_flexible_templates_6_differential_translucent_3_heading_5','field_62568a40727b8'),(142782,4124,'flexible_templates_6_differential_translucent_3_column_5','Always'),(142783,4124,'_flexible_templates_6_differential_translucent_3_column_5','field_62555011a0e7b'),(142784,4124,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(142785,4124,'_flexible_templates_6_differential_translucent_3_column_5_color','field_6255503aa0e7d'),(142786,4124,'flexible_templates_6_differential_translucent','4'),(142787,4124,'_flexible_templates_6_differential_translucent','field_62554c30172da'),(142788,4124,'flexible_templates_7_heading','Be smart. Be efficient. Be agile.'),(142789,4124,'_flexible_templates_7_heading','field_625565e14146d_field_6254fdb2efa27'),(142790,4124,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(142791,4124,'_flexible_templates_7_cta','field_625565fa4146e_field_62551b3e101c4'),(142795,4125,'flexible_templates','a:8:{i:0;s:16:\"tek-teams-banner\";i:1;s:20:\"tek-teams-two-column\";i:2;s:14:\"tek-team-about\";i:3;s:21:\"tek-teams-development\";i:4;s:18:\"tek_teams_benifits\";i:5;s:17:\"tek-team-whats-is\";i:6;s:34:\"tek-teams-translucent-differential\";i:7;s:17:\"lets_talk_section\";}'),(142796,4125,'_flexible_templates','field_6254f4d84ef9b'),(142797,4125,'flexible_templates_0_image','4066'),(142798,4125,'_flexible_templates_0_image','field_6255038c2e6ae_field_6254fdc5efa2a'),(142799,4125,'flexible_templates_0_mob_image','4067'),(142800,4125,'_flexible_templates_0_mob_image','field_625503db2e6af_field_6254fdcbefa2b'),(142801,4125,'flexible_templates_0_icon','4068'),(142802,4125,'_flexible_templates_0_icon','field_6255095042ef2_field_62550482480cb'),(142803,4125,'flexible_templates_0_heading','TEKTeams'),(142804,4125,'_flexible_templates_0_heading','field_6255096442ef3_field_6254fdb2efa27'),(142805,4125,'flexible_templates_0_sub_heading','TEK™ WORLD'),(142806,4125,'_flexible_templates_0_sub_heading','field_6255097642ef4_field_6254fdbaefa28'),(142807,4125,'flexible_templates_1_heading','Gain access to top 1% tech talent with a trusted partner that delivers cloud native solutions and value.'),(142808,4125,'_flexible_templates_1_heading','field_62551ac3a6f96_field_6254fdb2efa27'),(142809,4125,'flexible_templates_1_sub_heading','THE TEAM YOU NEED'),(142810,4125,'_flexible_templates_1_sub_heading','field_62551ae4a6f97_field_6254fdbaefa28'),(142811,4125,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(142812,4125,'_flexible_templates_1_cta','field_62551b56a6f98_field_62551b3e101c4'),(142813,4125,'flexible_templates_1_copy','The best technology. The best people. Access tailored software engineering teams with industry-specific experience without the hassle of hiring and maintaining internal teams. We understand how hard it is to acquire and retain top talent, and we take the pressure off HR. Focus on your business while we take lead for the delivery and execution of the project.'),(142814,4125,'_flexible_templates_1_copy','field_62551b74a6f99_field_6254fdc0efa29'),(142815,4125,'flexible_templates_2_image','4069'),(142816,4125,'_flexible_templates_2_image','field_625523de9609f_field_6254fdc5efa2a'),(142817,4125,'flexible_templates_2_mob_image','4070'),(142818,4125,'_flexible_templates_2_mob_image','field_625523f4960a0_field_6254fdcbefa2b'),(142819,4125,'flexible_templates_2_icon','4071'),(142820,4125,'_flexible_templates_2_icon','field_6255246d960a1_field_62550482480cb'),(142821,4125,'flexible_templates_2_heading','What are TEKTeams?'),(142822,4125,'_flexible_templates_2_heading','field_62552482960a2_field_6254fdb2efa27'),(142823,4125,'flexible_templates_2_copy','TEKTeams are your dedicated development teams built on Translucent principals that, as part of the TEK ecosystem, combine trust, processes, people, and technology to deliver value.\r\n\r\nTranslucent has created a process that brings together the best people in the industry with various skills to develop and maintain the highest quality software. A perfect combination of roles, talent, skillset, and the right work environment.\r\n\r\nTEKTeams provide the precise expertise your organization needs to execute a project successfully.'),(142824,4125,'_flexible_templates_2_copy','field_625525b15629c'),(142825,4125,'flexible_templates_2_content_right','Our onshore/nearshore model combines resources across the Americas to overcome challenges your project might encounter; we work closely alongside your company staff to attain your business goals. Increase the number of resources you have on hand to help you develop and manage intelligent applications and platforms.\r\n\r\nTEKTeams are the most cost-effective way to get the talent you need for your cloud native projects without taking up all of your time or budget.'),(142826,4125,'_flexible_templates_2_content_right','field_625525ba5629d'),(142827,4125,'flexible_templates_3_image','4072'),(142828,4125,'_flexible_templates_3_image','field_62552ada52711_field_6254fdc5efa2a'),(142829,4125,'flexible_templates_3_mob_image','4073'),(142830,4125,'_flexible_templates_3_mob_image','field_62552aed52712_field_6254fdcbefa2b'),(142831,4125,'flexible_templates_3_icon','4074'),(142832,4125,'_flexible_templates_3_icon','field_62552b7652713_field_62550482480cb'),(142833,4125,'flexible_templates_3_heading','Get started with the best resources for your project'),(142834,4125,'_flexible_templates_3_heading','field_62552baf52715_field_6254fdb2efa27'),(142835,4125,'flexible_templates_3_copy','Our tailored software engineering teams help your business develop and manage smarter apps. We match business goals to the right technology and teams to drive better results. With TEKTeams you get access to the best of the best resources for your cloud native projects at a price you can afford, with the capacity to scale as needed, according to your demands. Here is what to expect working with TEKTeams:'),(142836,4125,'_flexible_templates_3_copy','field_62552b8552714_field_6254fdc0efa29'),(142837,4125,'flexible_templates_3_development_team_steps_0_icon','4075'),(142838,4125,'_flexible_templates_3_development_team_steps_0_icon','field_62552cdb784a9_field_62550482480cb'),(142839,4125,'flexible_templates_3_development_team_steps_0_heading','A trusted tech partner'),(142840,4125,'_flexible_templates_3_development_team_steps_0_heading','field_62552ced784aa_field_6254fdb2efa27'),(142841,4125,'flexible_templates_3_development_team_steps_0_copy','

Increase your workforce by partnering with the top 1% teams tailored to your business needs

\r\n

We will explain and document the entire development process and make sure to meet business and project objectives

\r\n

Scale your teams as needed with a global network united as one

'),(142842,4125,'_flexible_templates_3_development_team_steps_0_copy','field_62552cfe784ab_field_6254fdc0efa29'),(142843,4125,'flexible_templates_3_development_team_steps_1_icon','4076'),(142844,4125,'_flexible_templates_3_development_team_steps_1_icon','field_62552cdb784a9_field_62550482480cb'),(142845,4125,'flexible_templates_3_development_team_steps_1_heading','Break down vision into requirements'),(142846,4125,'_flexible_templates_3_development_team_steps_1_heading','field_62552ced784aa_field_6254fdb2efa27'),(142847,4125,'flexible_templates_3_development_team_steps_1_copy','

We will validate your idea with a future vision that is in sync with the realities that your business is currently facing

\r\n

Cloud native solutions make it possible to work within clients\' budgets

\r\n

Planning, execution, support, best practices, and experience in breaking down the concept into a user stories tech road map

'),(142848,4125,'_flexible_templates_3_development_team_steps_1_copy','field_62552cfe784ab_field_6254fdc0efa29'),(142849,4125,'flexible_templates_3_development_team_steps_2_icon','4077'),(142850,4125,'_flexible_templates_3_development_team_steps_2_icon','field_62552cdb784a9_field_62550482480cb'),(142851,4125,'flexible_templates_3_development_team_steps_2_heading','Build your team and start innovating'),(142852,4125,'_flexible_templates_3_development_team_steps_2_heading','field_62552ced784aa_field_6254fdb2efa27'),(142853,4125,'flexible_templates_3_development_team_steps_2_copy',' The Team You Need For Your Cloud Native Project:\r\n

Expanding your workforce is easier than you think, with TEKTeams, you can quickly and affordably grow your company with teams to cover all of your business needs

\r\n

With the right team behind your project, you\'ll get better results, more quickly

\r\n\r\n'),(142854,4125,'_flexible_templates_3_development_team_steps_2_copy','field_62552cfe784ab_field_6254fdc0efa29'),(142855,4125,'flexible_templates_3_development_team_steps','3'),(142856,4125,'_flexible_templates_3_development_team_steps','field_62552cbb784a8'),(142857,4125,'flexible_templates_3_cta','a:3:{s:5:\"title\";s:11:\"Gain Access\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(142858,4125,'_flexible_templates_3_cta','field_62552c6a784a7_field_62551b3e101c4'),(142859,4125,'flexible_templates_4_image','4078'),(142860,4125,'_flexible_templates_4_image','field_625538ef16bb0_field_6254fdc5efa2a'),(142861,4125,'flexible_templates_4_mob_image','4079'),(142862,4125,'_flexible_templates_4_mob_image','field_6255391616bb1_field_6254fdcbefa2b'),(142863,4125,'flexible_templates_4_icon','4080'),(142864,4125,'_flexible_templates_4_icon','field_62553d28bca93_field_62550482480cb'),(142865,4125,'flexible_templates_4_heading','Benefits of TEKTeams'),(142866,4125,'_flexible_templates_4_heading','field_6255397e16bb2_field_6254fdb2efa27'),(142867,4125,'flexible_templates_4_development_team_steps_0_icon','4086'),(142868,4125,'_flexible_templates_4_development_team_steps_0_icon','field_625539a816bb4_field_62550482480cb'),(142869,4125,'flexible_templates_4_development_team_steps_0_heading','Fully Managed'),(142870,4125,'_flexible_templates_4_development_team_steps_0_heading','field_625539a816bb5_field_6254fdb2efa27'),(142871,4125,'flexible_templates_4_development_team_steps_0_copy','Translucent is responsible for hiring, managing, and delivering technical expertise from start to finish. Avoid hiring and team management issues.'),(142872,4125,'_flexible_templates_4_development_team_steps_0_copy','field_625539a816bb6_field_6254fdc0efa29'),(142873,4125,'flexible_templates_4_development_team_steps_1_icon','4085'),(142874,4125,'_flexible_templates_4_development_team_steps_1_icon','field_625539a816bb4_field_62550482480cb'),(142875,4125,'flexible_templates_4_development_team_steps_1_heading','Remote'),(142876,4125,'_flexible_templates_4_development_team_steps_1_heading','field_625539a816bb5_field_6254fdb2efa27'),(142877,4125,'flexible_templates_4_development_team_steps_1_copy','Completely remote. Save office space and gain more time for your employees. Over the last 12 years, we have perfected a remote software development system called TEKProcess.'),(142878,4125,'_flexible_templates_4_development_team_steps_1_copy','field_625539a816bb6_field_6254fdc0efa29'),(142879,4125,'flexible_templates_4_development_team_steps_2_icon','4084'),(142880,4125,'_flexible_templates_4_development_team_steps_2_icon','field_625539a816bb4_field_62550482480cb'),(142881,4125,'flexible_templates_4_development_team_steps_2_heading','Access to Translucent Experts'),(142882,4125,'_flexible_templates_4_development_team_steps_2_heading','field_625539a816bb5_field_6254fdb2efa27'),(142883,4125,'flexible_templates_4_development_team_steps_2_copy','Part of working with TEKTeams is access to our software architects and tech leads at no extra cost.'),(142884,4125,'_flexible_templates_4_development_team_steps_2_copy','field_625539a816bb6_field_6254fdc0efa29'),(142885,4125,'flexible_templates_4_development_team_steps_3_icon','4083'),(142886,4125,'_flexible_templates_4_development_team_steps_3_icon','field_625539a816bb4_field_62550482480cb'),(142887,4125,'flexible_templates_4_development_team_steps_3_heading','Access to Top Tech Talent'),(142888,4125,'_flexible_templates_4_development_team_steps_3_heading','field_625539a816bb5_field_6254fdb2efa27'),(142889,4125,'flexible_templates_4_development_team_steps_3_copy','Our proven hiring and continuous employee improvement processes ensure that only top talent works on each project.'),(142890,4125,'_flexible_templates_4_development_team_steps_3_copy','field_625539a816bb6_field_6254fdc0efa29'),(142891,4125,'flexible_templates_4_development_team_steps_4_icon','4082'),(142892,4125,'_flexible_templates_4_development_team_steps_4_icon','field_625539a816bb4_field_62550482480cb'),(142893,4125,'flexible_templates_4_development_team_steps_4_heading','Team Scalability'),(142894,4125,'_flexible_templates_4_development_team_steps_4_heading','field_625539a816bb5_field_6254fdb2efa27'),(142895,4125,'flexible_templates_4_development_team_steps_4_copy','On-demand resources are ready when you need to scale the team to meet business demands.'),(142896,4125,'_flexible_templates_4_development_team_steps_4_copy','field_625539a816bb6_field_6254fdc0efa29'),(142897,4125,'flexible_templates_4_development_team_steps_5_icon','4081'),(142898,4125,'_flexible_templates_4_development_team_steps_5_icon','field_625539a816bb4_field_62550482480cb'),(142899,4125,'flexible_templates_4_development_team_steps_5_heading','Start Your Journey Now'),(142900,4125,'_flexible_templates_4_development_team_steps_5_heading','field_625539a816bb5_field_6254fdb2efa27'),(142901,4125,'flexible_templates_4_development_team_steps_5_copy','Our TEKTeams are ready to help you now.'),(142902,4125,'_flexible_templates_4_development_team_steps_5_copy','field_625539a816bb6_field_6254fdc0efa29'),(142903,4125,'flexible_templates_4_development_team_steps','6'),(142904,4125,'_flexible_templates_4_development_team_steps','field_625539a816bb3'),(142905,4125,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:13:\"Start Scaling\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(142906,4125,'_flexible_templates_4_cta','field_625539ce16bb7_field_62551b3e101c4'),(142907,4125,'flexible_templates_5_image','4087'),(142908,4125,'_flexible_templates_5_image','field_62553e7d5dd54_field_6254fdc5efa2a'),(142909,4125,'flexible_templates_5_mob_image','4088'),(142910,4125,'_flexible_templates_5_mob_image','field_62553eab5dd55_field_6254fdcbefa2b'),(142911,4125,'flexible_templates_5_icon','4089'),(142912,4125,'_flexible_templates_5_icon','field_62553eee5dd56_field_62550482480cb'),(142913,4125,'flexible_templates_5_heading','The team you need for your cloud native project'),(142914,4125,'_flexible_templates_5_heading','field_62553f075dd57_field_6254fdb2efa27'),(142915,4125,'flexible_templates_5_heading_mobile','The team you need for your cloud native project'),(142916,4125,'_flexible_templates_5_heading_mobile','field_62553f185dd58'),(142917,4125,'flexible_templates_5_copy','We help companies build and scale smart applications, working together to achieve the best results by pairing them with our award-winning team of experts. That includes project managers, senior developers, and QA specialists who have been handpicked to execute on specific goals.'),(142918,4125,'_flexible_templates_5_copy','field_62553f315dd59_field_6254fdc0efa29'),(142919,4125,'flexible_templates_5_development_team_steps_0_icon','4090'),(142920,4125,'_flexible_templates_5_development_team_steps_0_icon','field_625540b262816_field_62550482480cb'),(142921,4125,'flexible_templates_5_development_team_steps_0_heading','Frontend Engineers'),(142922,4125,'_flexible_templates_5_development_team_steps_0_heading','field_625540b262817_field_6254fdb2efa27'),(142923,4125,'flexible_templates_5_development_team_steps_0_copy','Responsible for the development of the user interface of an application. They are always in demand, but with TEKTeams you get access on demand. '),(142924,4125,'_flexible_templates_5_development_team_steps_0_copy','field_625540b262818_field_6254fdc0efa29'),(142925,4125,'flexible_templates_5_development_team_steps_1_icon','4091'),(142926,4125,'_flexible_templates_5_development_team_steps_1_icon','field_625540b262816_field_62550482480cb'),(142927,4125,'flexible_templates_5_development_team_steps_1_heading','QA Engineers'),(142928,4125,'_flexible_templates_5_development_team_steps_1_heading','field_625540b262817_field_6254fdb2efa27'),(142929,4125,'flexible_templates_5_development_team_steps_1_copy','The quality of a product is vital to its success, and without a quality assurance engineer, that quality is compromised. Our QA engineers ensure each product is thoroughly tested to provide the best possible user experience.'),(142930,4125,'_flexible_templates_5_development_team_steps_1_copy','field_625540b262818_field_6254fdc0efa29'),(142931,4125,'flexible_templates_5_development_team_steps_2_icon','4092'),(142932,4125,'_flexible_templates_5_development_team_steps_2_icon','field_625540b262816_field_62550482480cb'),(142933,4125,'flexible_templates_5_development_team_steps_2_heading','Business Analysts'),(142934,4125,'_flexible_templates_5_development_team_steps_2_heading','field_625540b262817_field_6254fdb2efa27'),(142935,4125,'flexible_templates_5_development_team_steps_2_copy','These agile workers help bridge the gap between the IT team and the business, improving overall efficiency through data analysis of processes, products, services, and software.'),(142936,4125,'_flexible_templates_5_development_team_steps_2_copy','field_625540b262818_field_6254fdc0efa29'),(142937,4125,'flexible_templates_5_development_team_steps_3_icon','4093'),(142938,4125,'_flexible_templates_5_development_team_steps_3_icon','field_625540b262816_field_62550482480cb'),(142939,4125,'flexible_templates_5_development_team_steps_3_heading','Backend Engineers'),(142940,4125,'_flexible_templates_5_development_team_steps_3_heading','field_625540b262817_field_6254fdb2efa27'),(142941,4125,'flexible_templates_5_development_team_steps_3_copy','Backend engineers build the structure of a software application. They work on designing, building, and maintaining the server components of web applications. '),(142942,4125,'_flexible_templates_5_development_team_steps_3_copy','field_625540b262818_field_6254fdc0efa29'),(142943,4125,'flexible_templates_5_development_team_steps_4_icon','4094'),(142944,4125,'_flexible_templates_5_development_team_steps_4_icon','field_625540b262816_field_62550482480cb'),(142945,4125,'flexible_templates_5_development_team_steps_4_heading','UX/UI Designers'),(142946,4125,'_flexible_templates_5_development_team_steps_4_heading','field_625540b262817_field_6254fdb2efa27'),(142947,4125,'flexible_templates_5_development_team_steps_4_copy','Responsible for creating user-friendly interfaces making complex technical products intuitive, simple, and engaging. '),(142948,4125,'_flexible_templates_5_development_team_steps_4_copy','field_625540b262818_field_6254fdc0efa29'),(142949,4125,'flexible_templates_5_development_team_steps_5_icon','4095'),(142950,4125,'_flexible_templates_5_development_team_steps_5_icon','field_625540b262816_field_62550482480cb'),(142951,4125,'flexible_templates_5_development_team_steps_5_heading','Product Owners'),(142952,4125,'_flexible_templates_5_development_team_steps_5_heading','field_625540b262817_field_6254fdb2efa27'),(142953,4125,'flexible_templates_5_development_team_steps_5_copy','Agile leaders of the development team, at the center of every development cycle. They will define stories, organize and prioritize backlogs, and monitor the entire development process.\r\n'),(142954,4125,'_flexible_templates_5_development_team_steps_5_copy','field_625540b262818_field_6254fdc0efa29'),(142955,4125,'flexible_templates_5_development_team_steps_6_icon','4096'),(142956,4125,'_flexible_templates_5_development_team_steps_6_icon','field_625540b262816_field_62550482480cb'),(142957,4125,'flexible_templates_5_development_team_steps_6_heading','Data/ML Engineers'),(142958,4125,'_flexible_templates_5_development_team_steps_6_heading','field_625540b262817_field_6254fdb2efa27'),(142959,4125,'flexible_templates_5_development_team_steps_6_copy','Highly skilled software engineers and data scientists who develop AI systems that use large data sets to research, design, and develop self-running software to automate predictive models.\r\n'),(142960,4125,'_flexible_templates_5_development_team_steps_6_copy','field_625540b262818_field_6254fdc0efa29'),(142961,4125,'flexible_templates_5_development_team_steps_7_icon','4097'),(142962,4125,'_flexible_templates_5_development_team_steps_7_icon','field_625540b262816_field_62550482480cb'),(142963,4125,'flexible_templates_5_development_team_steps_7_heading','SRE/DevOps Engineers'),(142964,4125,'_flexible_templates_5_development_team_steps_7_heading','field_625540b262817_field_6254fdb2efa27'),(142965,4125,'flexible_templates_5_development_team_steps_7_copy','DevOps engineers ensure that all development is done in line with the company\'s needs and potential future needs by streamlining the software creation, updates, and deployment process. This can help prevent wasting time and resources on features that are not needed or used.\r\n'),(142966,4125,'_flexible_templates_5_development_team_steps_7_copy','field_625540b262818_field_6254fdc0efa29'),(142967,4125,'flexible_templates_5_development_team_steps_8_icon','4098'),(142968,4125,'_flexible_templates_5_development_team_steps_8_icon','field_625540b262816_field_62550482480cb'),(142969,4125,'flexible_templates_5_development_team_steps_8_heading','Scrum Masters'),(142970,4125,'_flexible_templates_5_development_team_steps_8_heading','field_625540b262817_field_6254fdb2efa27'),(142971,4125,'flexible_templates_5_development_team_steps_8_copy','These team leaders are are accountable for getting teams to perform at their highest levels by managing the process. They will facilitating meetings, improving workflow by removing any bottlenecks, and work with the product owner to ensure the product backlog is in good shape and ready for the next sprint.'),(142972,4125,'_flexible_templates_5_development_team_steps_8_copy','field_625540b262818_field_6254fdc0efa29'),(142973,4125,'flexible_templates_5_development_team_steps','9'),(142974,4125,'_flexible_templates_5_development_team_steps','field_625540b262815'),(142975,4125,'flexible_templates_5_cta','a:3:{s:5:\"title\";s:15:\"Build Your Team\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(142976,4125,'_flexible_templates_5_cta','field_6255410462819_field_62551b3e101c4'),(142977,4125,'flexible_templates_6_heading','A better chance at success with TEKTeams'),(142978,4125,'_flexible_templates_6_heading','field_62554b91172d7_field_6254fdb2efa27'),(142979,4125,'flexible_templates_6_sub_heading','Dev Shop vs Offshore vs In-house vs TEKTeams'),(142980,4125,'_flexible_templates_6_sub_heading','field_62554ba5172d8_field_6254fdbaefa28'),(142981,4125,'flexible_templates_6_icon','4099'),(142982,4125,'_flexible_templates_6_icon','field_62554d69172e1_field_62550482480cb'),(142983,4125,'flexible_templates_6_differential_translucent_header_0_heading','Your Needs'),(142984,4125,'_flexible_templates_6_differential_translucent_header_0_heading','field_625688668727a'),(142985,4125,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(142986,4125,'_flexible_templates_6_differential_translucent_header_0_color','field_62568e42de80b'),(142987,4125,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(142988,4125,'_flexible_templates_6_differential_translucent_header_1_heading','field_625688668727a'),(142989,4125,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(142990,4125,'_flexible_templates_6_differential_translucent_header_1_color','field_62568e42de80b'),(142991,4125,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore Teams'),(142992,4125,'_flexible_templates_6_differential_translucent_header_2_heading','field_625688668727a'),(142993,4125,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(142994,4125,'_flexible_templates_6_differential_translucent_header_2_color','field_62568e42de80b'),(142995,4125,'flexible_templates_6_differential_translucent_header_3_heading','Hiring In-house Developers'),(142996,4125,'_flexible_templates_6_differential_translucent_header_3_heading','field_625688668727a'),(142997,4125,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(142998,4125,'_flexible_templates_6_differential_translucent_header_3_color','field_62568e42de80b'),(142999,4125,'flexible_templates_6_differential_translucent_header_4_heading','TEKTeams'),(143000,4125,'_flexible_templates_6_differential_translucent_header_4_heading','field_625688668727a'),(143001,4125,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(143002,4125,'_flexible_templates_6_differential_translucent_header_4_color','field_62568e42de80b'),(143003,4125,'flexible_templates_6_differential_translucent_header','5'),(143004,4125,'_flexible_templates_6_differential_translucent_header','field_6256884687279'),(143005,4125,'flexible_templates_6_differential_translucent_0_heading_1','1'),(143006,4125,'_flexible_templates_6_differential_translucent_0_heading_1','field_625689c138821'),(143007,4125,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(143008,4125,'_flexible_templates_6_differential_translucent_0_column_1','field_62554d45172dc'),(143009,4125,'flexible_templates_6_differential_translucent_0_heading_2','Working with a Dev Shop'),(143010,4125,'_flexible_templates_6_differential_translucent_0_heading_2','field_62568a29727b5'),(143011,4125,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(143012,4125,'_flexible_templates_6_differential_translucent_0_column_2','field_62554d4a172dd'),(143013,4125,'flexible_templates_6_differential_translucent_0_column_2_color','#7080a7'),(143014,4125,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62554fcda0e79'),(143015,4125,'flexible_templates_6_differential_translucent_0_heading_3','3'),(143016,4125,'_flexible_templates_6_differential_translucent_0_heading_3','field_62568a30727b6'),(143017,4125,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(143018,4125,'_flexible_templates_6_differential_translucent_0_column_3','field_62554d4d172de'),(143019,4125,'flexible_templates_6_differential_translucent_0_column_3_color','#ff555f'),(143020,4125,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62554ff6a0e7a'),(143021,4125,'flexible_templates_6_differential_translucent_0_heading_4','4'),(143022,4125,'_flexible_templates_6_differential_translucent_0_heading_4','field_62568a37727b7'),(143023,4125,'flexible_templates_6_differential_translucent_0_column_4','Always'),(143024,4125,'_flexible_templates_6_differential_translucent_0_column_4','field_62554d4f172df'),(143025,4125,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(143026,4125,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62555028a0e7c'),(143027,4125,'flexible_templates_6_differential_translucent_0_heading_5','5'),(143028,4125,'_flexible_templates_6_differential_translucent_0_heading_5','field_62568a40727b8'),(143029,4125,'flexible_templates_6_differential_translucent_0_column_5','Always'),(143030,4125,'_flexible_templates_6_differential_translucent_0_column_5','field_62555011a0e7b'),(143031,4125,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(143032,4125,'_flexible_templates_6_differential_translucent_0_column_5_color','field_6255503aa0e7d'),(143033,4125,'flexible_templates_6_differential_translucent_1_heading_1','6'),(143034,4125,'_flexible_templates_6_differential_translucent_1_heading_1','field_625689c138821'),(143035,4125,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (speed to market)'),(143036,4125,'_flexible_templates_6_differential_translucent_1_column_1','field_62554d45172dc'),(143037,4125,'flexible_templates_6_differential_translucent_1_heading_2','7'),(143038,4125,'_flexible_templates_6_differential_translucent_1_heading_2','field_62568a29727b5'),(143039,4125,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(143040,4125,'_flexible_templates_6_differential_translucent_1_column_2','field_62554d4a172dd'),(143041,4125,'flexible_templates_6_differential_translucent_1_column_2_color','#ff555f'),(143042,4125,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62554fcda0e79'),(143043,4125,'flexible_templates_6_differential_translucent_1_heading_3','8'),(143044,4125,'_flexible_templates_6_differential_translucent_1_heading_3','field_62568a30727b6'),(143045,4125,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(143046,4125,'_flexible_templates_6_differential_translucent_1_column_3','field_62554d4d172de'),(143047,4125,'flexible_templates_6_differential_translucent_1_column_3_color','#7080a7'),(143048,4125,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62554ff6a0e7a'),(143049,4125,'flexible_templates_6_differential_translucent_1_heading_4','9'),(143050,4125,'_flexible_templates_6_differential_translucent_1_heading_4','field_62568a37727b7'),(143051,4125,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(143052,4125,'_flexible_templates_6_differential_translucent_1_column_4','field_62554d4f172df'),(143053,4125,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(143054,4125,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62555028a0e7c'),(143055,4125,'flexible_templates_6_differential_translucent_1_heading_5','10'),(143056,4125,'_flexible_templates_6_differential_translucent_1_heading_5','field_62568a40727b8'),(143057,4125,'flexible_templates_6_differential_translucent_1_column_5','Always'),(143058,4125,'_flexible_templates_6_differential_translucent_1_column_5','field_62555011a0e7b'),(143059,4125,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(143060,4125,'_flexible_templates_6_differential_translucent_1_column_5_color','field_6255503aa0e7d'),(143061,4125,'flexible_templates_6_differential_translucent_2_heading_1','11'),(143062,4125,'_flexible_templates_6_differential_translucent_2_heading_1','field_625689c138821'),(143063,4125,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(143064,4125,'_flexible_templates_6_differential_translucent_2_column_1','field_62554d45172dc'),(143065,4125,'flexible_templates_6_differential_translucent_2_heading_2','12'),(143066,4125,'_flexible_templates_6_differential_translucent_2_heading_2','field_62568a29727b5'),(143067,4125,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(143068,4125,'_flexible_templates_6_differential_translucent_2_column_2','field_62554d4a172dd'),(143069,4125,'flexible_templates_6_differential_translucent_2_column_2_color','#7080a7'),(143070,4125,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62554fcda0e79'),(143071,4125,'flexible_templates_6_differential_translucent_2_heading_3','13'),(143072,4125,'_flexible_templates_6_differential_translucent_2_heading_3','field_62568a30727b6'),(143073,4125,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(143074,4125,'_flexible_templates_6_differential_translucent_2_column_3','field_62554d4d172de'),(143075,4125,'flexible_templates_6_differential_translucent_2_column_3_color','#ff555f'),(143076,4125,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62554ff6a0e7a'),(143077,4125,'flexible_templates_6_differential_translucent_2_heading_4','14'),(143078,4125,'_flexible_templates_6_differential_translucent_2_heading_4','field_62568a37727b7'),(143079,4125,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(143080,4125,'_flexible_templates_6_differential_translucent_2_column_4','field_62554d4f172df'),(143081,4125,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(143082,4125,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62555028a0e7c'),(143083,4125,'flexible_templates_6_differential_translucent_2_heading_5','15'),(143084,4125,'_flexible_templates_6_differential_translucent_2_heading_5','field_62568a40727b8'),(143085,4125,'flexible_templates_6_differential_translucent_2_column_5','Always'),(143086,4125,'_flexible_templates_6_differential_translucent_2_column_5','field_62555011a0e7b'),(143087,4125,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(143088,4125,'_flexible_templates_6_differential_translucent_2_column_5_color','field_6255503aa0e7d'),(143089,4125,'flexible_templates_6_differential_translucent_3_heading_1','16'),(143090,4125,'_flexible_templates_6_differential_translucent_3_heading_1','field_625689c138821'),(143091,4125,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(143092,4125,'_flexible_templates_6_differential_translucent_3_column_1','field_62554d45172dc'),(143093,4125,'flexible_templates_6_differential_translucent_3_heading_2','17'),(143094,4125,'_flexible_templates_6_differential_translucent_3_heading_2','field_62568a29727b5'),(143095,4125,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(143096,4125,'_flexible_templates_6_differential_translucent_3_column_2','field_62554d4a172dd'),(143097,4125,'flexible_templates_6_differential_translucent_3_column_2_color','#7080a7'),(143098,4125,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62554fcda0e79'),(143099,4125,'flexible_templates_6_differential_translucent_3_heading_3','18'),(143100,4125,'_flexible_templates_6_differential_translucent_3_heading_3','field_62568a30727b6'),(143101,4125,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(143102,4125,'_flexible_templates_6_differential_translucent_3_column_3','field_62554d4d172de'),(143103,4125,'flexible_templates_6_differential_translucent_3_column_3_color','#ff555f'),(143104,4125,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62554ff6a0e7a'),(143105,4125,'flexible_templates_6_differential_translucent_3_heading_4','19'),(143106,4125,'_flexible_templates_6_differential_translucent_3_heading_4','field_62568a37727b7'),(143107,4125,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(143108,4125,'_flexible_templates_6_differential_translucent_3_column_4','field_62554d4f172df'),(143109,4125,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(143110,4125,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62555028a0e7c'),(143111,4125,'flexible_templates_6_differential_translucent_3_heading_5','Working with Translucent'),(143112,4125,'_flexible_templates_6_differential_translucent_3_heading_5','field_62568a40727b8'),(143113,4125,'flexible_templates_6_differential_translucent_3_column_5','Always'),(143114,4125,'_flexible_templates_6_differential_translucent_3_column_5','field_62555011a0e7b'),(143115,4125,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(143116,4125,'_flexible_templates_6_differential_translucent_3_column_5_color','field_6255503aa0e7d'),(143117,4125,'flexible_templates_6_differential_translucent','4'),(143118,4125,'_flexible_templates_6_differential_translucent','field_62554c30172da'),(143119,4125,'flexible_templates_7_heading','Be smart. Be efficient. Be agile.'),(143120,4125,'_flexible_templates_7_heading','field_625565e14146d_field_6254fdb2efa27'),(143121,4125,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(143122,4125,'_flexible_templates_7_cta','field_625565fa4146e_field_62551b3e101c4'),(143138,4126,'flexible_templates_0_image','4066'),(143139,4126,'_flexible_templates_0_image','field_6255038c2e6ae_field_6254fdc5efa2a'),(143140,4126,'flexible_templates_0_mob_image','4067'),(143141,4126,'_flexible_templates_0_mob_image','field_625503db2e6af_field_6254fdcbefa2b'),(143142,4126,'flexible_templates_0_icon','4068'),(143143,4126,'_flexible_templates_0_icon','field_6255095042ef2_field_62550482480cb'),(143144,4126,'flexible_templates_0_heading','TEKTeams'),(143145,4126,'_flexible_templates_0_heading','field_6255096442ef3_field_6254fdb2efa27'),(143146,4126,'flexible_templates_0_sub_heading','TEK™ WORLD'),(143147,4126,'_flexible_templates_0_sub_heading','field_6255097642ef4_field_6254fdbaefa28'),(143148,4126,'flexible_templates_1_heading','Gain access to top 1% tech talent with a trusted partner that delivers cloud native solutions and value.'),(143149,4126,'_flexible_templates_1_heading','field_62551ac3a6f96_field_6254fdb2efa27'),(143150,4126,'flexible_templates_1_sub_heading','THE TEAM YOU NEED'),(143151,4126,'_flexible_templates_1_sub_heading','field_62551ae4a6f97_field_6254fdbaefa28'),(143152,4126,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(143153,4126,'_flexible_templates_1_cta','field_62551b56a6f98_field_62551b3e101c4'),(143154,4126,'flexible_templates_1_copy','The best technology. The best people. Access tailored software engineering teams with industry-specific experience without the hassle of hiring and maintaining internal teams. We understand how hard it is to acquire and retain top talent, and we take the pressure off HR. Focus on your business while we take lead for the delivery and execution of the project.'),(143155,4126,'_flexible_templates_1_copy','field_62551b74a6f99_field_6254fdc0efa29'),(143156,4126,'flexible_templates_2_image','4069'),(143157,4126,'_flexible_templates_2_image','field_625523de9609f_field_6254fdc5efa2a'),(143158,4126,'flexible_templates_2_mob_image','4070'),(143159,4126,'_flexible_templates_2_mob_image','field_625523f4960a0_field_6254fdcbefa2b'),(143160,4126,'flexible_templates_2_icon','4071'),(143161,4126,'_flexible_templates_2_icon','field_6255246d960a1_field_62550482480cb'),(143162,4126,'flexible_templates_2_heading','What are TEKTeams?'),(143163,4126,'_flexible_templates_2_heading','field_62552482960a2_field_6254fdb2efa27'),(143164,4126,'flexible_templates_2_copy','TEKTeams are your dedicated development teams built on Translucent principals that, as part of the TEK ecosystem, combine trust, processes, people, and technology to deliver value.\r\n
\r\nTranslucent has created a process that brings together the best people in the industry with various skills to develop and maintain the highest quality software. \r\n
\r\nA perfect combination of roles, talent, skillset, and the right work environment.TEKTeams provide the precise expertise your organization needs to execute a project successfully.\r\n
\r\n'),(143165,4126,'_flexible_templates_2_copy','field_625525b15629c'),(143166,4126,'flexible_templates_2_content_right','Our onshore/nearshore model combines resources across the Americas to overcome challenges your project might encounter; we work closely alongside your company staff to attain your business goals. \r\n
\r\nIncrease the number of resources you have on hand to help you develop and manage intelligent applications and platforms. \r\n
\r\nTEKTeams are the most cost-effective way to get the talent you need for your cloud native projects without taking up all of your time or budget.'),(143167,4126,'_flexible_templates_2_content_right','field_625525ba5629d'),(143168,4126,'flexible_templates_3_image','4072'),(143169,4126,'_flexible_templates_3_image','field_62552ada52711_field_6254fdc5efa2a'),(143170,4126,'flexible_templates_3_mob_image','4073'),(143171,4126,'_flexible_templates_3_mob_image','field_62552aed52712_field_6254fdcbefa2b'),(143172,4126,'flexible_templates_3_icon','4074'),(143173,4126,'_flexible_templates_3_icon','field_62552b7652713_field_62550482480cb'),(143174,4126,'flexible_templates_3_heading','Get started with the best resources for your project'),(143175,4126,'_flexible_templates_3_heading','field_62552baf52715_field_6254fdb2efa27'),(143176,4126,'flexible_templates_3_copy','Our tailored software engineering teams help your business develop and manage smarter apps. We match business goals to the right technology and teams to drive better results. With TEKTeams you get access to the best of the best resources for your cloud native projects at a price you can afford, with the capacity to scale as needed, according to your demands. Here is what to expect working with TEKTeams:'),(143177,4126,'_flexible_templates_3_copy','field_62552b8552714_field_6254fdc0efa29'),(143178,4126,'flexible_templates_3_development_team_steps_0_icon','4075'),(143179,4126,'_flexible_templates_3_development_team_steps_0_icon','field_62552cdb784a9_field_62550482480cb'),(143180,4126,'flexible_templates_3_development_team_steps_0_heading','A trusted tech partner'),(143181,4126,'_flexible_templates_3_development_team_steps_0_heading','field_62552ced784aa_field_6254fdb2efa27'),(143182,4126,'flexible_templates_3_development_team_steps_0_copy','

Increase your workforce by partnering with the top 1% teams tailored to your business needs

\r\n

We will explain and document the entire development process and make sure to meet business and project objectives

\r\n

Scale your teams as needed with a global network united as one

'),(143183,4126,'_flexible_templates_3_development_team_steps_0_copy','field_62552cfe784ab_field_6254fdc0efa29'),(143184,4126,'flexible_templates_3_development_team_steps_1_icon','4076'),(143185,4126,'_flexible_templates_3_development_team_steps_1_icon','field_62552cdb784a9_field_62550482480cb'),(143186,4126,'flexible_templates_3_development_team_steps_1_heading','Break down vision into requirements'),(143187,4126,'_flexible_templates_3_development_team_steps_1_heading','field_62552ced784aa_field_6254fdb2efa27'),(143188,4126,'flexible_templates_3_development_team_steps_1_copy','

We will validate your idea with a future vision that is in sync with the realities that your business is currently facing

\r\n

Cloud native solutions make it possible to work within clients\' budgets

\r\n

Planning, execution, support, best practices, and experience in breaking down the concept into a user stories tech road map

'),(143189,4126,'_flexible_templates_3_development_team_steps_1_copy','field_62552cfe784ab_field_6254fdc0efa29'),(143190,4126,'flexible_templates_3_development_team_steps_2_icon','4077'),(143191,4126,'_flexible_templates_3_development_team_steps_2_icon','field_62552cdb784a9_field_62550482480cb'),(143192,4126,'flexible_templates_3_development_team_steps_2_heading','Build your team and start innovating'),(143193,4126,'_flexible_templates_3_development_team_steps_2_heading','field_62552ced784aa_field_6254fdb2efa27'),(143194,4126,'flexible_templates_3_development_team_steps_2_copy',' The Team You Need For Your Cloud Native Project:\r\n

Expanding your workforce is easier than you think, with TEKTeams, you can quickly and affordably grow your company with teams to cover all of your business needs

\r\n

With the right team behind your project, you\'ll get better results, more quickly

\r\n\r\n'),(143195,4126,'_flexible_templates_3_development_team_steps_2_copy','field_62552cfe784ab_field_6254fdc0efa29'),(143196,4126,'flexible_templates_3_development_team_steps','3'),(143197,4126,'_flexible_templates_3_development_team_steps','field_62552cbb784a8'),(143198,4126,'flexible_templates_3_cta','a:3:{s:5:\"title\";s:11:\"Gain Access\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(143199,4126,'_flexible_templates_3_cta','field_62552c6a784a7_field_62551b3e101c4'),(143200,4126,'flexible_templates_4_image','4078'),(143201,4126,'_flexible_templates_4_image','field_625538ef16bb0_field_6254fdc5efa2a'),(143202,4126,'flexible_templates_4_mob_image','4079'),(143203,4126,'_flexible_templates_4_mob_image','field_6255391616bb1_field_6254fdcbefa2b'),(143204,4126,'flexible_templates_4_icon','4080'),(143205,4126,'_flexible_templates_4_icon','field_62553d28bca93_field_62550482480cb'),(143206,4126,'flexible_templates_4_heading','Benefits of TEKTeams'),(143207,4126,'_flexible_templates_4_heading','field_6255397e16bb2_field_6254fdb2efa27'),(143208,4126,'flexible_templates_4_development_team_steps_0_icon','4086'),(143209,4126,'_flexible_templates_4_development_team_steps_0_icon','field_625539a816bb4_field_62550482480cb'),(143210,4126,'flexible_templates_4_development_team_steps_0_heading','Fully Managed'),(143211,4126,'_flexible_templates_4_development_team_steps_0_heading','field_625539a816bb5_field_6254fdb2efa27'),(143212,4126,'flexible_templates_4_development_team_steps_0_copy','Translucent is responsible for hiring, managing, and delivering technical expertise from start to finish. Avoid hiring and team management issues.'),(143213,4126,'_flexible_templates_4_development_team_steps_0_copy','field_625539a816bb6_field_6254fdc0efa29'),(143214,4126,'flexible_templates_4_development_team_steps_1_icon','4085'),(143215,4126,'_flexible_templates_4_development_team_steps_1_icon','field_625539a816bb4_field_62550482480cb'),(143216,4126,'flexible_templates_4_development_team_steps_1_heading','Remote'),(143217,4126,'_flexible_templates_4_development_team_steps_1_heading','field_625539a816bb5_field_6254fdb2efa27'),(143218,4126,'flexible_templates_4_development_team_steps_1_copy','Completely remote. Save office space and gain more time for your employees. Over the last 12 years, we have perfected a remote software development system called TEKProcess.'),(143219,4126,'_flexible_templates_4_development_team_steps_1_copy','field_625539a816bb6_field_6254fdc0efa29'),(143220,4126,'flexible_templates_4_development_team_steps_2_icon','4084'),(143221,4126,'_flexible_templates_4_development_team_steps_2_icon','field_625539a816bb4_field_62550482480cb'),(143222,4126,'flexible_templates_4_development_team_steps_2_heading','Access to Translucent Experts'),(143223,4126,'_flexible_templates_4_development_team_steps_2_heading','field_625539a816bb5_field_6254fdb2efa27'),(143224,4126,'flexible_templates_4_development_team_steps_2_copy','Part of working with TEKTeams is access to our software architects and tech leads at no extra cost.'),(143225,4126,'_flexible_templates_4_development_team_steps_2_copy','field_625539a816bb6_field_6254fdc0efa29'),(143226,4126,'flexible_templates_4_development_team_steps_3_icon','4083'),(143227,4126,'_flexible_templates_4_development_team_steps_3_icon','field_625539a816bb4_field_62550482480cb'),(143228,4126,'flexible_templates_4_development_team_steps_3_heading','Access to Top Tech Talent'),(143229,4126,'_flexible_templates_4_development_team_steps_3_heading','field_625539a816bb5_field_6254fdb2efa27'),(143230,4126,'flexible_templates_4_development_team_steps_3_copy','Our proven hiring and continuous employee improvement processes ensure that only top talent works on each project.'),(143231,4126,'_flexible_templates_4_development_team_steps_3_copy','field_625539a816bb6_field_6254fdc0efa29'),(143232,4126,'flexible_templates_4_development_team_steps_4_icon','4082'),(143233,4126,'_flexible_templates_4_development_team_steps_4_icon','field_625539a816bb4_field_62550482480cb'),(143234,4126,'flexible_templates_4_development_team_steps_4_heading','Team Scalability'),(143235,4126,'_flexible_templates_4_development_team_steps_4_heading','field_625539a816bb5_field_6254fdb2efa27'),(143236,4126,'flexible_templates_4_development_team_steps_4_copy','On-demand resources are ready when you need to scale the team to meet business demands.'),(143237,4126,'_flexible_templates_4_development_team_steps_4_copy','field_625539a816bb6_field_6254fdc0efa29'),(143238,4126,'flexible_templates_4_development_team_steps_5_icon','4081'),(143239,4126,'_flexible_templates_4_development_team_steps_5_icon','field_625539a816bb4_field_62550482480cb'),(143240,4126,'flexible_templates_4_development_team_steps_5_heading','Start Your Journey Now'),(143241,4126,'_flexible_templates_4_development_team_steps_5_heading','field_625539a816bb5_field_6254fdb2efa27'),(143242,4126,'flexible_templates_4_development_team_steps_5_copy','Our TEKTeams are ready to help you now.'),(143243,4126,'_flexible_templates_4_development_team_steps_5_copy','field_625539a816bb6_field_6254fdc0efa29'),(143244,4126,'flexible_templates_4_development_team_steps','6'),(143245,4126,'_flexible_templates_4_development_team_steps','field_625539a816bb3'),(143246,4126,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:13:\"Start Scaling\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(143247,4126,'_flexible_templates_4_cta','field_625539ce16bb7_field_62551b3e101c4'),(143248,4126,'flexible_templates_5_image','4087'),(143249,4126,'_flexible_templates_5_image','field_62553e7d5dd54_field_6254fdc5efa2a'),(143250,4126,'flexible_templates_5_mob_image','4088'),(143251,4126,'_flexible_templates_5_mob_image','field_62553eab5dd55_field_6254fdcbefa2b'),(143252,4126,'flexible_templates_5_icon','4089'),(143253,4126,'_flexible_templates_5_icon','field_62553eee5dd56_field_62550482480cb'),(143254,4126,'flexible_templates_5_heading','The team you need for your cloud native project'),(143255,4126,'_flexible_templates_5_heading','field_62553f075dd57_field_6254fdb2efa27'),(143256,4126,'flexible_templates_5_heading_mobile','The team you need for your cloud native project'),(143257,4126,'_flexible_templates_5_heading_mobile','field_62553f185dd58'),(143258,4126,'flexible_templates_5_copy','We help companies build and scale smart applications, working together to achieve the best results by pairing them with our award-winning team of experts. That includes project managers, senior developers, and QA specialists who have been handpicked to execute on specific goals.'),(143259,4126,'_flexible_templates_5_copy','field_62553f315dd59_field_6254fdc0efa29'),(143260,4126,'flexible_templates_5_development_team_steps_0_icon','4090'),(143261,4126,'_flexible_templates_5_development_team_steps_0_icon','field_625540b262816_field_62550482480cb'),(143262,4126,'flexible_templates_5_development_team_steps_0_heading','Frontend Engineers'),(143263,4126,'_flexible_templates_5_development_team_steps_0_heading','field_625540b262817_field_6254fdb2efa27'),(143264,4126,'flexible_templates_5_development_team_steps_0_copy','Responsible for the development of the user interface of an application. They are always in demand, but with TEKTeams you get access on demand. '),(143265,4126,'_flexible_templates_5_development_team_steps_0_copy','field_625540b262818_field_6254fdc0efa29'),(143266,4126,'flexible_templates_5_development_team_steps_1_icon','4091'),(143267,4126,'_flexible_templates_5_development_team_steps_1_icon','field_625540b262816_field_62550482480cb'),(143268,4126,'flexible_templates_5_development_team_steps_1_heading','QA Engineers'),(143269,4126,'_flexible_templates_5_development_team_steps_1_heading','field_625540b262817_field_6254fdb2efa27'),(143270,4126,'flexible_templates_5_development_team_steps_1_copy','The quality of a product is vital to its success, and without a quality assurance engineer, that quality is compromised. Our QA engineers ensure each product is thoroughly tested to provide the best possible user experience.'),(143271,4126,'_flexible_templates_5_development_team_steps_1_copy','field_625540b262818_field_6254fdc0efa29'),(143272,4126,'flexible_templates_5_development_team_steps_2_icon','4092'),(143273,4126,'_flexible_templates_5_development_team_steps_2_icon','field_625540b262816_field_62550482480cb'),(143274,4126,'flexible_templates_5_development_team_steps_2_heading','Business Analysts'),(143275,4126,'_flexible_templates_5_development_team_steps_2_heading','field_625540b262817_field_6254fdb2efa27'),(143276,4126,'flexible_templates_5_development_team_steps_2_copy','These agile workers help bridge the gap between the IT team and the business, improving overall efficiency through data analysis of processes, products, services, and software.'),(143277,4126,'_flexible_templates_5_development_team_steps_2_copy','field_625540b262818_field_6254fdc0efa29'),(143278,4126,'flexible_templates_5_development_team_steps_3_icon','4093'),(143279,4126,'_flexible_templates_5_development_team_steps_3_icon','field_625540b262816_field_62550482480cb'),(143280,4126,'flexible_templates_5_development_team_steps_3_heading','Backend Engineers'),(143281,4126,'_flexible_templates_5_development_team_steps_3_heading','field_625540b262817_field_6254fdb2efa27'),(143282,4126,'flexible_templates_5_development_team_steps_3_copy','Backend engineers build the structure of a software application. They work on designing, building, and maintaining the server components of web applications. '),(143283,4126,'_flexible_templates_5_development_team_steps_3_copy','field_625540b262818_field_6254fdc0efa29'),(143284,4126,'flexible_templates_5_development_team_steps_4_icon','4094'),(143285,4126,'_flexible_templates_5_development_team_steps_4_icon','field_625540b262816_field_62550482480cb'),(143286,4126,'flexible_templates_5_development_team_steps_4_heading','UX/UI Designers'),(143287,4126,'_flexible_templates_5_development_team_steps_4_heading','field_625540b262817_field_6254fdb2efa27'),(143288,4126,'flexible_templates_5_development_team_steps_4_copy','Responsible for creating user-friendly interfaces making complex technical products intuitive, simple, and engaging. '),(143289,4126,'_flexible_templates_5_development_team_steps_4_copy','field_625540b262818_field_6254fdc0efa29'),(143290,4126,'flexible_templates_5_development_team_steps_5_icon','4095'),(143291,4126,'_flexible_templates_5_development_team_steps_5_icon','field_625540b262816_field_62550482480cb'),(143292,4126,'flexible_templates_5_development_team_steps_5_heading','Product Owners'),(143293,4126,'_flexible_templates_5_development_team_steps_5_heading','field_625540b262817_field_6254fdb2efa27'),(143294,4126,'flexible_templates_5_development_team_steps_5_copy','Agile leaders of the development team, at the center of every development cycle. They will define stories, organize and prioritize backlogs, and monitor the entire development process.\r\n'),(143295,4126,'_flexible_templates_5_development_team_steps_5_copy','field_625540b262818_field_6254fdc0efa29'),(143296,4126,'flexible_templates_5_development_team_steps_6_icon','4096'),(143297,4126,'_flexible_templates_5_development_team_steps_6_icon','field_625540b262816_field_62550482480cb'),(143298,4126,'flexible_templates_5_development_team_steps_6_heading','Data/ML Engineers'),(143299,4126,'_flexible_templates_5_development_team_steps_6_heading','field_625540b262817_field_6254fdb2efa27'),(143300,4126,'flexible_templates_5_development_team_steps_6_copy','Highly skilled software engineers and data scientists who develop AI systems that use large data sets to research, design, and develop self-running software to automate predictive models.\r\n'),(143301,4126,'_flexible_templates_5_development_team_steps_6_copy','field_625540b262818_field_6254fdc0efa29'),(143302,4126,'flexible_templates_5_development_team_steps_7_icon','4097'),(143303,4126,'_flexible_templates_5_development_team_steps_7_icon','field_625540b262816_field_62550482480cb'),(143304,4126,'flexible_templates_5_development_team_steps_7_heading','SRE/DevOps Engineers'),(143305,4126,'_flexible_templates_5_development_team_steps_7_heading','field_625540b262817_field_6254fdb2efa27'),(143306,4126,'flexible_templates_5_development_team_steps_7_copy','DevOps engineers ensure that all development is done in line with the company\'s needs and potential future needs by streamlining the software creation, updates, and deployment process. This can help prevent wasting time and resources on features that are not needed or used.\r\n'),(143307,4126,'_flexible_templates_5_development_team_steps_7_copy','field_625540b262818_field_6254fdc0efa29'),(143308,4126,'flexible_templates_5_development_team_steps_8_icon','4098'),(143309,4126,'_flexible_templates_5_development_team_steps_8_icon','field_625540b262816_field_62550482480cb'),(143310,4126,'flexible_templates_5_development_team_steps_8_heading','Scrum Masters'),(143311,4126,'_flexible_templates_5_development_team_steps_8_heading','field_625540b262817_field_6254fdb2efa27'),(143312,4126,'flexible_templates_5_development_team_steps_8_copy','These team leaders are are accountable for getting teams to perform at their highest levels by managing the process. They will facilitating meetings, improving workflow by removing any bottlenecks, and work with the product owner to ensure the product backlog is in good shape and ready for the next sprint.'),(143313,4126,'_flexible_templates_5_development_team_steps_8_copy','field_625540b262818_field_6254fdc0efa29'),(143314,4126,'flexible_templates_5_development_team_steps','9'),(143315,4126,'_flexible_templates_5_development_team_steps','field_625540b262815'),(143316,4126,'flexible_templates_5_cta','a:3:{s:5:\"title\";s:15:\"Build Your Team\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(143317,4126,'_flexible_templates_5_cta','field_6255410462819_field_62551b3e101c4'),(143318,4126,'flexible_templates_6_heading','A better chance at success with TEKTeams'),(143319,4126,'_flexible_templates_6_heading','field_62554b91172d7_field_6254fdb2efa27'),(143320,4126,'flexible_templates_6_sub_heading','Dev Shop vs Offshore vs In-house vs TEKTeams'),(143321,4126,'_flexible_templates_6_sub_heading','field_62554ba5172d8_field_6254fdbaefa28'),(143322,4126,'flexible_templates_6_icon','4099'),(143323,4126,'_flexible_templates_6_icon','field_62554d69172e1_field_62550482480cb'),(143324,4126,'flexible_templates_6_differential_translucent_header_0_heading','Your Needs'),(143325,4126,'_flexible_templates_6_differential_translucent_header_0_heading','field_625688668727a'),(143326,4126,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(143327,4126,'_flexible_templates_6_differential_translucent_header_0_color','field_62568e42de80b'),(143328,4126,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(143329,4126,'_flexible_templates_6_differential_translucent_header_1_heading','field_625688668727a'),(143330,4126,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(143331,4126,'_flexible_templates_6_differential_translucent_header_1_color','field_62568e42de80b'),(143332,4126,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore Teams'),(143333,4126,'_flexible_templates_6_differential_translucent_header_2_heading','field_625688668727a'),(143334,4126,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(143335,4126,'_flexible_templates_6_differential_translucent_header_2_color','field_62568e42de80b'),(143336,4126,'flexible_templates_6_differential_translucent_header_3_heading','Hiring In-house Developers'),(143337,4126,'_flexible_templates_6_differential_translucent_header_3_heading','field_625688668727a'),(143338,4126,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(143339,4126,'_flexible_templates_6_differential_translucent_header_3_color','field_62568e42de80b'),(143340,4126,'flexible_templates_6_differential_translucent_header_4_heading','TEKTeams'),(143341,4126,'_flexible_templates_6_differential_translucent_header_4_heading','field_625688668727a'),(143342,4126,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(143343,4126,'_flexible_templates_6_differential_translucent_header_4_color','field_62568e42de80b'),(143344,4126,'flexible_templates_6_differential_translucent_header','5'),(143345,4126,'_flexible_templates_6_differential_translucent_header','field_6256884687279'),(143346,4126,'flexible_templates_6_differential_translucent_0_heading_1','1'),(143347,4126,'_flexible_templates_6_differential_translucent_0_heading_1','field_625689c138821'),(143348,4126,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(143349,4126,'_flexible_templates_6_differential_translucent_0_column_1','field_62554d45172dc'),(143350,4126,'flexible_templates_6_differential_translucent_0_heading_2','Working with a Dev Shop'),(143351,4126,'_flexible_templates_6_differential_translucent_0_heading_2','field_62568a29727b5'),(143352,4126,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(143353,4126,'_flexible_templates_6_differential_translucent_0_column_2','field_62554d4a172dd'),(143354,4126,'flexible_templates_6_differential_translucent_0_column_2_color','#7080a7'),(143355,4126,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62554fcda0e79'),(143356,4126,'flexible_templates_6_differential_translucent_0_heading_3','3'),(143357,4126,'_flexible_templates_6_differential_translucent_0_heading_3','field_62568a30727b6'),(143358,4126,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(143359,4126,'_flexible_templates_6_differential_translucent_0_column_3','field_62554d4d172de'),(143360,4126,'flexible_templates_6_differential_translucent_0_column_3_color','#ff555f'),(143361,4126,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62554ff6a0e7a'),(143362,4126,'flexible_templates_6_differential_translucent_0_heading_4','4'),(143363,4126,'_flexible_templates_6_differential_translucent_0_heading_4','field_62568a37727b7'),(143364,4126,'flexible_templates_6_differential_translucent_0_column_4','Always'),(143365,4126,'_flexible_templates_6_differential_translucent_0_column_4','field_62554d4f172df'),(143366,4126,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(143367,4126,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62555028a0e7c'),(143368,4126,'flexible_templates_6_differential_translucent_0_heading_5','5'),(143369,4126,'_flexible_templates_6_differential_translucent_0_heading_5','field_62568a40727b8'),(143370,4126,'flexible_templates_6_differential_translucent_0_column_5','Always'),(143371,4126,'_flexible_templates_6_differential_translucent_0_column_5','field_62555011a0e7b'),(143372,4126,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(143373,4126,'_flexible_templates_6_differential_translucent_0_column_5_color','field_6255503aa0e7d'),(143374,4126,'flexible_templates_6_differential_translucent_1_heading_1','6'),(143375,4126,'_flexible_templates_6_differential_translucent_1_heading_1','field_625689c138821'),(143376,4126,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (speed to market)'),(143377,4126,'_flexible_templates_6_differential_translucent_1_column_1','field_62554d45172dc'),(143378,4126,'flexible_templates_6_differential_translucent_1_heading_2','7'),(143379,4126,'_flexible_templates_6_differential_translucent_1_heading_2','field_62568a29727b5'),(143380,4126,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(143381,4126,'_flexible_templates_6_differential_translucent_1_column_2','field_62554d4a172dd'),(143382,4126,'flexible_templates_6_differential_translucent_1_column_2_color','#ff555f'),(143383,4126,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62554fcda0e79'),(143384,4126,'flexible_templates_6_differential_translucent_1_heading_3','8'),(143385,4126,'_flexible_templates_6_differential_translucent_1_heading_3','field_62568a30727b6'),(143386,4126,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(143387,4126,'_flexible_templates_6_differential_translucent_1_column_3','field_62554d4d172de'),(143388,4126,'flexible_templates_6_differential_translucent_1_column_3_color','#7080a7'),(143389,4126,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62554ff6a0e7a'),(143390,4126,'flexible_templates_6_differential_translucent_1_heading_4','9'),(143391,4126,'_flexible_templates_6_differential_translucent_1_heading_4','field_62568a37727b7'),(143392,4126,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(143393,4126,'_flexible_templates_6_differential_translucent_1_column_4','field_62554d4f172df'),(143394,4126,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(143395,4126,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62555028a0e7c'),(143396,4126,'flexible_templates_6_differential_translucent_1_heading_5','10'),(143397,4126,'_flexible_templates_6_differential_translucent_1_heading_5','field_62568a40727b8'),(143398,4126,'flexible_templates_6_differential_translucent_1_column_5','Always'),(143399,4126,'_flexible_templates_6_differential_translucent_1_column_5','field_62555011a0e7b'),(143400,4126,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(143401,4126,'_flexible_templates_6_differential_translucent_1_column_5_color','field_6255503aa0e7d'),(143402,4126,'flexible_templates_6_differential_translucent_2_heading_1','11'),(143403,4126,'_flexible_templates_6_differential_translucent_2_heading_1','field_625689c138821'),(143404,4126,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(143405,4126,'_flexible_templates_6_differential_translucent_2_column_1','field_62554d45172dc'),(143406,4126,'flexible_templates_6_differential_translucent_2_heading_2','12'),(143407,4126,'_flexible_templates_6_differential_translucent_2_heading_2','field_62568a29727b5'),(143408,4126,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(143409,4126,'_flexible_templates_6_differential_translucent_2_column_2','field_62554d4a172dd'),(143410,4126,'flexible_templates_6_differential_translucent_2_column_2_color','#7080a7'),(143411,4126,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62554fcda0e79'),(143412,4126,'flexible_templates_6_differential_translucent_2_heading_3','13'),(143413,4126,'_flexible_templates_6_differential_translucent_2_heading_3','field_62568a30727b6'),(143414,4126,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(143415,4126,'_flexible_templates_6_differential_translucent_2_column_3','field_62554d4d172de'),(143416,4126,'flexible_templates_6_differential_translucent_2_column_3_color','#ff555f'),(143417,4126,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62554ff6a0e7a'),(143418,4126,'flexible_templates_6_differential_translucent_2_heading_4','14'),(143419,4126,'_flexible_templates_6_differential_translucent_2_heading_4','field_62568a37727b7'),(143420,4126,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(143421,4126,'_flexible_templates_6_differential_translucent_2_column_4','field_62554d4f172df'),(143422,4126,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(143423,4126,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62555028a0e7c'),(143424,4126,'flexible_templates_6_differential_translucent_2_heading_5','15'),(143425,4126,'_flexible_templates_6_differential_translucent_2_heading_5','field_62568a40727b8'),(143426,4126,'flexible_templates_6_differential_translucent_2_column_5','Always'),(143427,4126,'_flexible_templates_6_differential_translucent_2_column_5','field_62555011a0e7b'),(143428,4126,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(143429,4126,'_flexible_templates_6_differential_translucent_2_column_5_color','field_6255503aa0e7d'),(143430,4126,'flexible_templates_6_differential_translucent_3_heading_1','16'),(143431,4126,'_flexible_templates_6_differential_translucent_3_heading_1','field_625689c138821'),(143432,4126,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(143433,4126,'_flexible_templates_6_differential_translucent_3_column_1','field_62554d45172dc'),(143434,4126,'flexible_templates_6_differential_translucent_3_heading_2','17'),(143435,4126,'_flexible_templates_6_differential_translucent_3_heading_2','field_62568a29727b5'),(143436,4126,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(143437,4126,'_flexible_templates_6_differential_translucent_3_column_2','field_62554d4a172dd'),(143438,4126,'flexible_templates_6_differential_translucent_3_column_2_color','#7080a7'),(143439,4126,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62554fcda0e79'),(143440,4126,'flexible_templates_6_differential_translucent_3_heading_3','18'),(143441,4126,'_flexible_templates_6_differential_translucent_3_heading_3','field_62568a30727b6'),(143442,4126,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(143443,4126,'_flexible_templates_6_differential_translucent_3_column_3','field_62554d4d172de'),(143444,4126,'flexible_templates_6_differential_translucent_3_column_3_color','#ff555f'),(143445,4126,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62554ff6a0e7a'),(143446,4126,'flexible_templates_6_differential_translucent_3_heading_4','19'),(143447,4126,'_flexible_templates_6_differential_translucent_3_heading_4','field_62568a37727b7'),(143448,4126,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(143449,4126,'_flexible_templates_6_differential_translucent_3_column_4','field_62554d4f172df'),(143450,4126,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(143451,4126,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62555028a0e7c'),(143452,4126,'flexible_templates_6_differential_translucent_3_heading_5','Working with Translucent'),(143453,4126,'_flexible_templates_6_differential_translucent_3_heading_5','field_62568a40727b8'),(143454,4126,'flexible_templates_6_differential_translucent_3_column_5','Always'),(143455,4126,'_flexible_templates_6_differential_translucent_3_column_5','field_62555011a0e7b'),(143456,4126,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(143457,4126,'_flexible_templates_6_differential_translucent_3_column_5_color','field_6255503aa0e7d'),(143458,4126,'flexible_templates_6_differential_translucent_4_heading_1','20'),(143459,4126,'_flexible_templates_6_differential_translucent_4_heading_1','field_625689c138821'),(143460,4126,'flexible_templates_6_differential_translucent_4_column_1','No Recruiting Fees'),(143461,4126,'_flexible_templates_6_differential_translucent_4_column_1','field_62554d45172dc'),(143462,4126,'flexible_templates_6_differential_translucent_4_heading_2','21'),(143463,4126,'_flexible_templates_6_differential_translucent_4_heading_2','field_62568a29727b5'),(143464,4126,'flexible_templates_6_differential_translucent_4_column_2','Always'),(143465,4126,'_flexible_templates_6_differential_translucent_4_column_2','field_62554d4a172dd'),(143466,4126,'flexible_templates_6_differential_translucent_4_column_2_color','#28d9cb'),(143467,4126,'_flexible_templates_6_differential_translucent_4_column_2_color','field_62554fcda0e79'),(143468,4126,'flexible_templates_6_differential_translucent_4_heading_3','22'),(143469,4126,'_flexible_templates_6_differential_translucent_4_heading_3','field_62568a30727b6'),(143470,4126,'flexible_templates_6_differential_translucent_4_column_3','Sometimes'),(143471,4126,'_flexible_templates_6_differential_translucent_4_column_3','field_62554d4d172de'),(143472,4126,'flexible_templates_6_differential_translucent_4_column_3_color','#7080a7'),(143473,4126,'_flexible_templates_6_differential_translucent_4_column_3_color','field_62554ff6a0e7a'),(143474,4126,'flexible_templates_6_differential_translucent_4_heading_4','23'),(143475,4126,'_flexible_templates_6_differential_translucent_4_heading_4','field_62568a37727b7'),(143476,4126,'flexible_templates_6_differential_translucent_4_column_4','Rare'),(143477,4126,'_flexible_templates_6_differential_translucent_4_column_4','field_62554d4f172df'),(143478,4126,'flexible_templates_6_differential_translucent_4_column_4_color','#ff555f'),(143479,4126,'_flexible_templates_6_differential_translucent_4_column_4_color','field_62555028a0e7c'),(143480,4126,'flexible_templates_6_differential_translucent_4_heading_5','24'),(143481,4126,'_flexible_templates_6_differential_translucent_4_heading_5','field_62568a40727b8'),(143482,4126,'flexible_templates_6_differential_translucent_4_column_5','Always'),(143483,4126,'_flexible_templates_6_differential_translucent_4_column_5','field_62555011a0e7b'),(143484,4126,'flexible_templates_6_differential_translucent_4_column_5_color','#24c1ff'),(143485,4126,'_flexible_templates_6_differential_translucent_4_column_5_color','field_6255503aa0e7d'),(143486,4126,'flexible_templates_6_differential_translucent','5'),(143487,4126,'_flexible_templates_6_differential_translucent','field_62554c30172da'),(143488,4126,'flexible_templates_7_heading','Be smart. Be efficient. Be agile.'),(143489,4126,'_flexible_templates_7_heading','field_625565e14146d_field_6254fdb2efa27'),(143490,4126,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(143491,4126,'_flexible_templates_7_cta','field_625565fa4146e_field_62551b3e101c4'),(143492,4126,'flexible_templates','a:8:{i:0;s:16:\"tek-teams-banner\";i:1;s:20:\"tek-teams-two-column\";i:2;s:14:\"tek-team-about\";i:3;s:21:\"tek-teams-development\";i:4;s:18:\"tek_teams_benifits\";i:5;s:17:\"tek-team-whats-is\";i:6;s:34:\"tek-teams-translucent-differential\";i:7;s:17:\"lets_talk_section\";}'),(143493,4126,'_flexible_templates','field_6254f4d84ef9b'),(143494,4064,'flexible_templates_6_differential_translucent_4_heading_1','20'),(143495,4064,'_flexible_templates_6_differential_translucent_4_heading_1','field_625689c138821'),(143496,4064,'flexible_templates_6_differential_translucent_4_column_1','No Recruiting Fees'),(143497,4064,'_flexible_templates_6_differential_translucent_4_column_1','field_62554d45172dc'),(143498,4064,'flexible_templates_6_differential_translucent_4_heading_2','21'),(143499,4064,'_flexible_templates_6_differential_translucent_4_heading_2','field_62568a29727b5'),(143500,4064,'flexible_templates_6_differential_translucent_4_column_2','Always'),(143501,4064,'_flexible_templates_6_differential_translucent_4_column_2','field_62554d4a172dd'),(143502,4064,'flexible_templates_6_differential_translucent_4_column_2_color','#28d9cb'),(143503,4064,'_flexible_templates_6_differential_translucent_4_column_2_color','field_62554fcda0e79'),(143504,4064,'flexible_templates_6_differential_translucent_4_heading_3','22'),(143505,4064,'_flexible_templates_6_differential_translucent_4_heading_3','field_62568a30727b6'),(143506,4064,'flexible_templates_6_differential_translucent_4_column_3','Sometimes'),(143507,4064,'_flexible_templates_6_differential_translucent_4_column_3','field_62554d4d172de'),(143508,4064,'flexible_templates_6_differential_translucent_4_column_3_color','#7080a7'),(143509,4064,'_flexible_templates_6_differential_translucent_4_column_3_color','field_62554ff6a0e7a'),(143510,4064,'flexible_templates_6_differential_translucent_4_heading_4','23'),(143511,4064,'_flexible_templates_6_differential_translucent_4_heading_4','field_62568a37727b7'),(143512,4064,'flexible_templates_6_differential_translucent_4_column_4','Rare'),(143513,4064,'_flexible_templates_6_differential_translucent_4_column_4','field_62554d4f172df'),(143514,4064,'flexible_templates_6_differential_translucent_4_column_4_color','#ff555f'),(143515,4064,'_flexible_templates_6_differential_translucent_4_column_4_color','field_62555028a0e7c'),(143516,4064,'flexible_templates_6_differential_translucent_4_heading_5','24'),(143517,4064,'_flexible_templates_6_differential_translucent_4_heading_5','field_62568a40727b8'),(143518,4064,'flexible_templates_6_differential_translucent_4_column_5','Always'),(143519,4064,'_flexible_templates_6_differential_translucent_4_column_5','field_62555011a0e7b'),(143520,4064,'flexible_templates_6_differential_translucent_4_column_5_color','#24c1ff'),(143521,4064,'_flexible_templates_6_differential_translucent_4_column_5_color','field_6255503aa0e7d'),(143522,4127,'flexible_templates','a:8:{i:0;s:16:\"tek-teams-banner\";i:1;s:20:\"tek-teams-two-column\";i:2;s:14:\"tek-team-about\";i:3;s:21:\"tek-teams-development\";i:4;s:18:\"tek_teams_benifits\";i:5;s:17:\"tek-team-whats-is\";i:6;s:34:\"tek-teams-translucent-differential\";i:7;s:17:\"lets_talk_section\";}'),(143523,4127,'_flexible_templates','field_6254f4d84ef9b'),(143524,4127,'flexible_templates_0_image','4066'),(143525,4127,'_flexible_templates_0_image','field_6255038c2e6ae_field_6254fdc5efa2a'),(143526,4127,'flexible_templates_0_mob_image','4067'),(143527,4127,'_flexible_templates_0_mob_image','field_625503db2e6af_field_6254fdcbefa2b'),(143528,4127,'flexible_templates_0_icon','4068'),(143529,4127,'_flexible_templates_0_icon','field_6255095042ef2_field_62550482480cb'),(143530,4127,'flexible_templates_0_heading','TEKTeams'),(143531,4127,'_flexible_templates_0_heading','field_6255096442ef3_field_6254fdb2efa27'),(143532,4127,'flexible_templates_0_sub_heading','TEK™ WORLD'),(143533,4127,'_flexible_templates_0_sub_heading','field_6255097642ef4_field_6254fdbaefa28'),(143534,4127,'flexible_templates_1_heading','Gain access to top 1% tech talent with a trusted partner that delivers cloud native solutions and value.'),(143535,4127,'_flexible_templates_1_heading','field_62551ac3a6f96_field_6254fdb2efa27'),(143536,4127,'flexible_templates_1_sub_heading','THE TEAM YOU NEED'),(143537,4127,'_flexible_templates_1_sub_heading','field_62551ae4a6f97_field_6254fdbaefa28'),(143538,4127,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(143539,4127,'_flexible_templates_1_cta','field_62551b56a6f98_field_62551b3e101c4'),(143540,4127,'flexible_templates_1_copy','The best technology. The best people. Access tailored software engineering teams with industry-specific experience without the hassle of hiring and maintaining internal teams. We understand how hard it is to acquire and retain top talent, and we take the pressure off HR. Focus on your business while we take lead for the delivery and execution of the project.'),(143541,4127,'_flexible_templates_1_copy','field_62551b74a6f99_field_6254fdc0efa29'),(143542,4127,'flexible_templates_2_image','4069'),(143543,4127,'_flexible_templates_2_image','field_625523de9609f_field_6254fdc5efa2a'),(143544,4127,'flexible_templates_2_mob_image','4070'),(143545,4127,'_flexible_templates_2_mob_image','field_625523f4960a0_field_6254fdcbefa2b'),(143546,4127,'flexible_templates_2_icon','4071'),(143547,4127,'_flexible_templates_2_icon','field_6255246d960a1_field_62550482480cb'),(143548,4127,'flexible_templates_2_heading','What are TEKTeams?'),(143549,4127,'_flexible_templates_2_heading','field_62552482960a2_field_6254fdb2efa27'),(143550,4127,'flexible_templates_2_copy','TEKTeams are your dedicated development teams built on Translucent principals that, as part of the TEK ecosystem, combine trust, processes, people, and technology to deliver value.\r\n\r\nTranslucent has created a process that brings together the best people in the industry with various skills to develop and maintain the highest quality software. A perfect combination of roles, talent, skillset, and the right work environment.\r\n\r\nTEKTeams provide the precise expertise your organization needs to execute a project successfully.'),(143551,4127,'_flexible_templates_2_copy','field_625525b15629c'),(143552,4127,'flexible_templates_2_content_right','Our onshore/nearshore model combines resources across the Americas to overcome challenges your project might encounter; we work closely alongside your company staff to attain your business goals. Increase the number of resources you have on hand to help you develop and manage intelligent applications and platforms.\r\n\r\nTEKTeams are the most cost-effective way to get the talent you need for your cloud native projects without taking up all of your time or budget.'),(143553,4127,'_flexible_templates_2_content_right','field_625525ba5629d'),(143554,4127,'flexible_templates_3_image','4072'),(143555,4127,'_flexible_templates_3_image','field_62552ada52711_field_6254fdc5efa2a'),(143556,4127,'flexible_templates_3_mob_image','4073'),(143557,4127,'_flexible_templates_3_mob_image','field_62552aed52712_field_6254fdcbefa2b'),(143558,4127,'flexible_templates_3_icon','4074'),(143559,4127,'_flexible_templates_3_icon','field_62552b7652713_field_62550482480cb'),(143560,4127,'flexible_templates_3_heading','Get started with the best resources for your project'),(143561,4127,'_flexible_templates_3_heading','field_62552baf52715_field_6254fdb2efa27'),(143562,4127,'flexible_templates_3_copy','Our tailored software engineering teams help your business develop and manage smarter apps. We match business goals to the right technology and teams to drive better results. With TEKTeams you get access to the best of the best resources for your cloud native projects at a price you can afford, with the capacity to scale as needed, according to your demands. Here is what to expect working with TEKTeams:'),(143563,4127,'_flexible_templates_3_copy','field_62552b8552714_field_6254fdc0efa29'),(143564,4127,'flexible_templates_3_development_team_steps_0_icon','4075'),(143565,4127,'_flexible_templates_3_development_team_steps_0_icon','field_62552cdb784a9_field_62550482480cb'),(143566,4127,'flexible_templates_3_development_team_steps_0_heading','A trusted tech partner'),(143567,4127,'_flexible_templates_3_development_team_steps_0_heading','field_62552ced784aa_field_6254fdb2efa27'),(143568,4127,'flexible_templates_3_development_team_steps_0_copy','

Increase your workforce by partnering with the top 1% teams tailored to your business needs

\r\n

We will explain and document the entire development process and make sure to meet business and project objectives

\r\n

Scale your teams as needed with a global network united as one

'),(143569,4127,'_flexible_templates_3_development_team_steps_0_copy','field_62552cfe784ab_field_6254fdc0efa29'),(143570,4127,'flexible_templates_3_development_team_steps_1_icon','4076'),(143571,4127,'_flexible_templates_3_development_team_steps_1_icon','field_62552cdb784a9_field_62550482480cb'),(143572,4127,'flexible_templates_3_development_team_steps_1_heading','Break down vision into requirements'),(143573,4127,'_flexible_templates_3_development_team_steps_1_heading','field_62552ced784aa_field_6254fdb2efa27'),(143574,4127,'flexible_templates_3_development_team_steps_1_copy','

We will validate your idea with a future vision that is in sync with the realities that your business is currently facing

\r\n

Cloud native solutions make it possible to work within clients\' budgets

\r\n

Planning, execution, support, best practices, and experience in breaking down the concept into a user stories tech road map

'),(143575,4127,'_flexible_templates_3_development_team_steps_1_copy','field_62552cfe784ab_field_6254fdc0efa29'),(143576,4127,'flexible_templates_3_development_team_steps_2_icon','4077'),(143577,4127,'_flexible_templates_3_development_team_steps_2_icon','field_62552cdb784a9_field_62550482480cb'),(143578,4127,'flexible_templates_3_development_team_steps_2_heading','Build your team and start innovating'),(143579,4127,'_flexible_templates_3_development_team_steps_2_heading','field_62552ced784aa_field_6254fdb2efa27'),(143580,4127,'flexible_templates_3_development_team_steps_2_copy',' The Team You Need For Your Cloud Native Project:\r\n

Expanding your workforce is easier than you think, with TEKTeams, you can quickly and affordably grow your company with teams to cover all of your business needs

\r\n

With the right team behind your project, you\'ll get better results, more quickly

\r\n\r\n'),(143581,4127,'_flexible_templates_3_development_team_steps_2_copy','field_62552cfe784ab_field_6254fdc0efa29'),(143582,4127,'flexible_templates_3_development_team_steps','3'),(143583,4127,'_flexible_templates_3_development_team_steps','field_62552cbb784a8'),(143584,4127,'flexible_templates_3_cta','a:3:{s:5:\"title\";s:11:\"Gain Access\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(143585,4127,'_flexible_templates_3_cta','field_62552c6a784a7_field_62551b3e101c4'),(143586,4127,'flexible_templates_4_image','4078'),(143587,4127,'_flexible_templates_4_image','field_625538ef16bb0_field_6254fdc5efa2a'),(143588,4127,'flexible_templates_4_mob_image','4079'),(143589,4127,'_flexible_templates_4_mob_image','field_6255391616bb1_field_6254fdcbefa2b'),(143590,4127,'flexible_templates_4_icon','4080'),(143591,4127,'_flexible_templates_4_icon','field_62553d28bca93_field_62550482480cb'),(143592,4127,'flexible_templates_4_heading','Benefits of TEKTeams'),(143593,4127,'_flexible_templates_4_heading','field_6255397e16bb2_field_6254fdb2efa27'),(143594,4127,'flexible_templates_4_development_team_steps_0_icon','4086'),(143595,4127,'_flexible_templates_4_development_team_steps_0_icon','field_625539a816bb4_field_62550482480cb'),(143596,4127,'flexible_templates_4_development_team_steps_0_heading','Fully Managed'),(143597,4127,'_flexible_templates_4_development_team_steps_0_heading','field_625539a816bb5_field_6254fdb2efa27'),(143598,4127,'flexible_templates_4_development_team_steps_0_copy','Translucent is responsible for hiring, managing, and delivering technical expertise from start to finish. Avoid hiring and team management issues.'),(143599,4127,'_flexible_templates_4_development_team_steps_0_copy','field_625539a816bb6_field_6254fdc0efa29'),(143600,4127,'flexible_templates_4_development_team_steps_1_icon','4085'),(143601,4127,'_flexible_templates_4_development_team_steps_1_icon','field_625539a816bb4_field_62550482480cb'),(143602,4127,'flexible_templates_4_development_team_steps_1_heading','Remote'),(143603,4127,'_flexible_templates_4_development_team_steps_1_heading','field_625539a816bb5_field_6254fdb2efa27'),(143604,4127,'flexible_templates_4_development_team_steps_1_copy','Completely remote. Save office space and gain more time for your employees. Over the last 12 years, we have perfected a remote software development system called TEKProcess.'),(143605,4127,'_flexible_templates_4_development_team_steps_1_copy','field_625539a816bb6_field_6254fdc0efa29'),(143606,4127,'flexible_templates_4_development_team_steps_2_icon','4084'),(143607,4127,'_flexible_templates_4_development_team_steps_2_icon','field_625539a816bb4_field_62550482480cb'),(143608,4127,'flexible_templates_4_development_team_steps_2_heading','Access to Translucent Experts'),(143609,4127,'_flexible_templates_4_development_team_steps_2_heading','field_625539a816bb5_field_6254fdb2efa27'),(143610,4127,'flexible_templates_4_development_team_steps_2_copy','Part of working with TEKTeams is access to our software architects and tech leads at no extra cost.'),(143611,4127,'_flexible_templates_4_development_team_steps_2_copy','field_625539a816bb6_field_6254fdc0efa29'),(143612,4127,'flexible_templates_4_development_team_steps_3_icon','4083'),(143613,4127,'_flexible_templates_4_development_team_steps_3_icon','field_625539a816bb4_field_62550482480cb'),(143614,4127,'flexible_templates_4_development_team_steps_3_heading','Access to Top Tech Talent'),(143615,4127,'_flexible_templates_4_development_team_steps_3_heading','field_625539a816bb5_field_6254fdb2efa27'),(143616,4127,'flexible_templates_4_development_team_steps_3_copy','Our proven hiring and continuous employee improvement processes ensure that only top talent works on each project.'),(143617,4127,'_flexible_templates_4_development_team_steps_3_copy','field_625539a816bb6_field_6254fdc0efa29'),(143618,4127,'flexible_templates_4_development_team_steps_4_icon','4082'),(143619,4127,'_flexible_templates_4_development_team_steps_4_icon','field_625539a816bb4_field_62550482480cb'),(143620,4127,'flexible_templates_4_development_team_steps_4_heading','Team Scalability'),(143621,4127,'_flexible_templates_4_development_team_steps_4_heading','field_625539a816bb5_field_6254fdb2efa27'),(143622,4127,'flexible_templates_4_development_team_steps_4_copy','On-demand resources are ready when you need to scale the team to meet business demands.'),(143623,4127,'_flexible_templates_4_development_team_steps_4_copy','field_625539a816bb6_field_6254fdc0efa29'),(143624,4127,'flexible_templates_4_development_team_steps_5_icon','4081'),(143625,4127,'_flexible_templates_4_development_team_steps_5_icon','field_625539a816bb4_field_62550482480cb'),(143626,4127,'flexible_templates_4_development_team_steps_5_heading','Start Your Journey Now'),(143627,4127,'_flexible_templates_4_development_team_steps_5_heading','field_625539a816bb5_field_6254fdb2efa27'),(143628,4127,'flexible_templates_4_development_team_steps_5_copy','Our TEKTeams are ready to help you now.'),(143629,4127,'_flexible_templates_4_development_team_steps_5_copy','field_625539a816bb6_field_6254fdc0efa29'),(143630,4127,'flexible_templates_4_development_team_steps','6'),(143631,4127,'_flexible_templates_4_development_team_steps','field_625539a816bb3'),(143632,4127,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:13:\"Start Scaling\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(143633,4127,'_flexible_templates_4_cta','field_625539ce16bb7_field_62551b3e101c4'),(143634,4127,'flexible_templates_5_image','4087'),(143635,4127,'_flexible_templates_5_image','field_62553e7d5dd54_field_6254fdc5efa2a'),(143636,4127,'flexible_templates_5_mob_image','4088'),(143637,4127,'_flexible_templates_5_mob_image','field_62553eab5dd55_field_6254fdcbefa2b'),(143638,4127,'flexible_templates_5_icon','4089'),(143639,4127,'_flexible_templates_5_icon','field_62553eee5dd56_field_62550482480cb'),(143640,4127,'flexible_templates_5_heading','The team you need for your cloud native project'),(143641,4127,'_flexible_templates_5_heading','field_62553f075dd57_field_6254fdb2efa27'),(143642,4127,'flexible_templates_5_heading_mobile','The team you need for your cloud native project'),(143643,4127,'_flexible_templates_5_heading_mobile','field_62553f185dd58'),(143644,4127,'flexible_templates_5_copy','We help companies build and scale smart applications, working together to achieve the best results by pairing them with our award-winning team of experts. That includes project managers, senior developers, and QA specialists who have been handpicked to execute on specific goals.'),(143645,4127,'_flexible_templates_5_copy','field_62553f315dd59_field_6254fdc0efa29'),(143646,4127,'flexible_templates_5_development_team_steps_0_icon','4090'),(143647,4127,'_flexible_templates_5_development_team_steps_0_icon','field_625540b262816_field_62550482480cb'),(143648,4127,'flexible_templates_5_development_team_steps_0_heading','Frontend Engineers'),(143649,4127,'_flexible_templates_5_development_team_steps_0_heading','field_625540b262817_field_6254fdb2efa27'),(143650,4127,'flexible_templates_5_development_team_steps_0_copy','Responsible for the development of the user interface of an application. They are always in demand, but with TEKTeams you get access on demand. '),(143651,4127,'_flexible_templates_5_development_team_steps_0_copy','field_625540b262818_field_6254fdc0efa29'),(143652,4127,'flexible_templates_5_development_team_steps_1_icon','4091'),(143653,4127,'_flexible_templates_5_development_team_steps_1_icon','field_625540b262816_field_62550482480cb'),(143654,4127,'flexible_templates_5_development_team_steps_1_heading','QA Engineers'),(143655,4127,'_flexible_templates_5_development_team_steps_1_heading','field_625540b262817_field_6254fdb2efa27'),(143656,4127,'flexible_templates_5_development_team_steps_1_copy','The quality of a product is vital to its success, and without a quality assurance engineer, that quality is compromised. Our QA engineers ensure each product is thoroughly tested to provide the best possible user experience.'),(143657,4127,'_flexible_templates_5_development_team_steps_1_copy','field_625540b262818_field_6254fdc0efa29'),(143658,4127,'flexible_templates_5_development_team_steps_2_icon','4092'),(143659,4127,'_flexible_templates_5_development_team_steps_2_icon','field_625540b262816_field_62550482480cb'),(143660,4127,'flexible_templates_5_development_team_steps_2_heading','Business Analysts'),(143661,4127,'_flexible_templates_5_development_team_steps_2_heading','field_625540b262817_field_6254fdb2efa27'),(143662,4127,'flexible_templates_5_development_team_steps_2_copy','These agile workers help bridge the gap between the IT team and the business, improving overall efficiency through data analysis of processes, products, services, and software.'),(143663,4127,'_flexible_templates_5_development_team_steps_2_copy','field_625540b262818_field_6254fdc0efa29'),(143664,4127,'flexible_templates_5_development_team_steps_3_icon','4093'),(143665,4127,'_flexible_templates_5_development_team_steps_3_icon','field_625540b262816_field_62550482480cb'),(143666,4127,'flexible_templates_5_development_team_steps_3_heading','Backend Engineers'),(143667,4127,'_flexible_templates_5_development_team_steps_3_heading','field_625540b262817_field_6254fdb2efa27'),(143668,4127,'flexible_templates_5_development_team_steps_3_copy','Backend engineers build the structure of a software application. They work on designing, building, and maintaining the server components of web applications. '),(143669,4127,'_flexible_templates_5_development_team_steps_3_copy','field_625540b262818_field_6254fdc0efa29'),(143670,4127,'flexible_templates_5_development_team_steps_4_icon','4094'),(143671,4127,'_flexible_templates_5_development_team_steps_4_icon','field_625540b262816_field_62550482480cb'),(143672,4127,'flexible_templates_5_development_team_steps_4_heading','UX/UI Designers'),(143673,4127,'_flexible_templates_5_development_team_steps_4_heading','field_625540b262817_field_6254fdb2efa27'),(143674,4127,'flexible_templates_5_development_team_steps_4_copy','Responsible for creating user-friendly interfaces making complex technical products intuitive, simple, and engaging. '),(143675,4127,'_flexible_templates_5_development_team_steps_4_copy','field_625540b262818_field_6254fdc0efa29'),(143676,4127,'flexible_templates_5_development_team_steps_5_icon','4095'),(143677,4127,'_flexible_templates_5_development_team_steps_5_icon','field_625540b262816_field_62550482480cb'),(143678,4127,'flexible_templates_5_development_team_steps_5_heading','Product Owners'),(143679,4127,'_flexible_templates_5_development_team_steps_5_heading','field_625540b262817_field_6254fdb2efa27'),(143680,4127,'flexible_templates_5_development_team_steps_5_copy','Agile leaders of the development team, at the center of every development cycle. They will define stories, organize and prioritize backlogs, and monitor the entire development process.\r\n'),(143681,4127,'_flexible_templates_5_development_team_steps_5_copy','field_625540b262818_field_6254fdc0efa29'),(143682,4127,'flexible_templates_5_development_team_steps_6_icon','4096'),(143683,4127,'_flexible_templates_5_development_team_steps_6_icon','field_625540b262816_field_62550482480cb'),(143684,4127,'flexible_templates_5_development_team_steps_6_heading','Data/ML Engineers'),(143685,4127,'_flexible_templates_5_development_team_steps_6_heading','field_625540b262817_field_6254fdb2efa27'),(143686,4127,'flexible_templates_5_development_team_steps_6_copy','Highly skilled software engineers and data scientists who develop AI systems that use large data sets to research, design, and develop self-running software to automate predictive models.\r\n'),(143687,4127,'_flexible_templates_5_development_team_steps_6_copy','field_625540b262818_field_6254fdc0efa29'),(143688,4127,'flexible_templates_5_development_team_steps_7_icon','4097'),(143689,4127,'_flexible_templates_5_development_team_steps_7_icon','field_625540b262816_field_62550482480cb'),(143690,4127,'flexible_templates_5_development_team_steps_7_heading','SRE/DevOps Engineers'),(143691,4127,'_flexible_templates_5_development_team_steps_7_heading','field_625540b262817_field_6254fdb2efa27'),(143692,4127,'flexible_templates_5_development_team_steps_7_copy','DevOps engineers ensure that all development is done in line with the company\'s needs and potential future needs by streamlining the software creation, updates, and deployment process. This can help prevent wasting time and resources on features that are not needed or used.\r\n'),(143693,4127,'_flexible_templates_5_development_team_steps_7_copy','field_625540b262818_field_6254fdc0efa29'),(143694,4127,'flexible_templates_5_development_team_steps_8_icon','4098'),(143695,4127,'_flexible_templates_5_development_team_steps_8_icon','field_625540b262816_field_62550482480cb'),(143696,4127,'flexible_templates_5_development_team_steps_8_heading','Scrum Masters'),(143697,4127,'_flexible_templates_5_development_team_steps_8_heading','field_625540b262817_field_6254fdb2efa27'),(143698,4127,'flexible_templates_5_development_team_steps_8_copy','These team leaders are are accountable for getting teams to perform at their highest levels by managing the process. They will facilitating meetings, improving workflow by removing any bottlenecks, and work with the product owner to ensure the product backlog is in good shape and ready for the next sprint.'),(143699,4127,'_flexible_templates_5_development_team_steps_8_copy','field_625540b262818_field_6254fdc0efa29'),(143700,4127,'flexible_templates_5_development_team_steps','9'),(143701,4127,'_flexible_templates_5_development_team_steps','field_625540b262815'),(143702,4127,'flexible_templates_5_cta','a:3:{s:5:\"title\";s:15:\"Build Your Team\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(143703,4127,'_flexible_templates_5_cta','field_6255410462819_field_62551b3e101c4'),(143704,4127,'flexible_templates_6_heading','A better chance at success with TEKTeams'),(143705,4127,'_flexible_templates_6_heading','field_62554b91172d7_field_6254fdb2efa27'),(143706,4127,'flexible_templates_6_sub_heading','Dev Shop vs Offshore vs In-house vs TEKTeams'),(143707,4127,'_flexible_templates_6_sub_heading','field_62554ba5172d8_field_6254fdbaefa28'),(143708,4127,'flexible_templates_6_icon','4099'),(143709,4127,'_flexible_templates_6_icon','field_62554d69172e1_field_62550482480cb'),(143710,4127,'flexible_templates_6_differential_translucent_header_0_heading','Your Needs'),(143711,4127,'_flexible_templates_6_differential_translucent_header_0_heading','field_625688668727a'),(143712,4127,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(143713,4127,'_flexible_templates_6_differential_translucent_header_0_color','field_62568e42de80b'),(143714,4127,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(143715,4127,'_flexible_templates_6_differential_translucent_header_1_heading','field_625688668727a'),(143716,4127,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(143717,4127,'_flexible_templates_6_differential_translucent_header_1_color','field_62568e42de80b'),(143718,4127,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore Teams'),(143719,4127,'_flexible_templates_6_differential_translucent_header_2_heading','field_625688668727a'),(143720,4127,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(143721,4127,'_flexible_templates_6_differential_translucent_header_2_color','field_62568e42de80b'),(143722,4127,'flexible_templates_6_differential_translucent_header_3_heading','Hiring In-house Developers'),(143723,4127,'_flexible_templates_6_differential_translucent_header_3_heading','field_625688668727a'),(143724,4127,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(143725,4127,'_flexible_templates_6_differential_translucent_header_3_color','field_62568e42de80b'),(143726,4127,'flexible_templates_6_differential_translucent_header_4_heading','TEKTeams'),(143727,4127,'_flexible_templates_6_differential_translucent_header_4_heading','field_625688668727a'),(143728,4127,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(143729,4127,'_flexible_templates_6_differential_translucent_header_4_color','field_62568e42de80b'),(143730,4127,'flexible_templates_6_differential_translucent_header','5'),(143731,4127,'_flexible_templates_6_differential_translucent_header','field_6256884687279'),(143732,4127,'flexible_templates_6_differential_translucent_0_heading_1','1'),(143733,4127,'_flexible_templates_6_differential_translucent_0_heading_1','field_625689c138821'),(143734,4127,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(143735,4127,'_flexible_templates_6_differential_translucent_0_column_1','field_62554d45172dc'),(143736,4127,'flexible_templates_6_differential_translucent_0_heading_2','Working with a Dev Shop'),(143737,4127,'_flexible_templates_6_differential_translucent_0_heading_2','field_62568a29727b5'),(143738,4127,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(143739,4127,'_flexible_templates_6_differential_translucent_0_column_2','field_62554d4a172dd'),(143740,4127,'flexible_templates_6_differential_translucent_0_column_2_color','#7080a7'),(143741,4127,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62554fcda0e79'),(143742,4127,'flexible_templates_6_differential_translucent_0_heading_3','3'),(143743,4127,'_flexible_templates_6_differential_translucent_0_heading_3','field_62568a30727b6'),(143744,4127,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(143745,4127,'_flexible_templates_6_differential_translucent_0_column_3','field_62554d4d172de'),(143746,4127,'flexible_templates_6_differential_translucent_0_column_3_color','#ff555f'),(143747,4127,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62554ff6a0e7a'),(143748,4127,'flexible_templates_6_differential_translucent_0_heading_4','4'),(143749,4127,'_flexible_templates_6_differential_translucent_0_heading_4','field_62568a37727b7'),(143750,4127,'flexible_templates_6_differential_translucent_0_column_4','Always'),(143751,4127,'_flexible_templates_6_differential_translucent_0_column_4','field_62554d4f172df'),(143752,4127,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(143753,4127,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62555028a0e7c'),(143754,4127,'flexible_templates_6_differential_translucent_0_heading_5','5'),(143755,4127,'_flexible_templates_6_differential_translucent_0_heading_5','field_62568a40727b8'),(143756,4127,'flexible_templates_6_differential_translucent_0_column_5','Always'),(143757,4127,'_flexible_templates_6_differential_translucent_0_column_5','field_62555011a0e7b'),(143758,4127,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(143759,4127,'_flexible_templates_6_differential_translucent_0_column_5_color','field_6255503aa0e7d'),(143760,4127,'flexible_templates_6_differential_translucent_1_heading_1','6'),(143761,4127,'_flexible_templates_6_differential_translucent_1_heading_1','field_625689c138821'),(143762,4127,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (speed to market)'),(143763,4127,'_flexible_templates_6_differential_translucent_1_column_1','field_62554d45172dc'),(143764,4127,'flexible_templates_6_differential_translucent_1_heading_2','7'),(143765,4127,'_flexible_templates_6_differential_translucent_1_heading_2','field_62568a29727b5'),(143766,4127,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(143767,4127,'_flexible_templates_6_differential_translucent_1_column_2','field_62554d4a172dd'),(143768,4127,'flexible_templates_6_differential_translucent_1_column_2_color','#ff555f'),(143769,4127,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62554fcda0e79'),(143770,4127,'flexible_templates_6_differential_translucent_1_heading_3','8'),(143771,4127,'_flexible_templates_6_differential_translucent_1_heading_3','field_62568a30727b6'),(143772,4127,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(143773,4127,'_flexible_templates_6_differential_translucent_1_column_3','field_62554d4d172de'),(143774,4127,'flexible_templates_6_differential_translucent_1_column_3_color','#7080a7'),(143775,4127,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62554ff6a0e7a'),(143776,4127,'flexible_templates_6_differential_translucent_1_heading_4','9'),(143777,4127,'_flexible_templates_6_differential_translucent_1_heading_4','field_62568a37727b7'),(143778,4127,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(143779,4127,'_flexible_templates_6_differential_translucent_1_column_4','field_62554d4f172df'),(143780,4127,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(143781,4127,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62555028a0e7c'),(143782,4127,'flexible_templates_6_differential_translucent_1_heading_5','10'),(143783,4127,'_flexible_templates_6_differential_translucent_1_heading_5','field_62568a40727b8'),(143784,4127,'flexible_templates_6_differential_translucent_1_column_5','Always'),(143785,4127,'_flexible_templates_6_differential_translucent_1_column_5','field_62555011a0e7b'),(143786,4127,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(143787,4127,'_flexible_templates_6_differential_translucent_1_column_5_color','field_6255503aa0e7d'),(143788,4127,'flexible_templates_6_differential_translucent_2_heading_1','11'),(143789,4127,'_flexible_templates_6_differential_translucent_2_heading_1','field_625689c138821'),(143790,4127,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(143791,4127,'_flexible_templates_6_differential_translucent_2_column_1','field_62554d45172dc'),(143792,4127,'flexible_templates_6_differential_translucent_2_heading_2','12'),(143793,4127,'_flexible_templates_6_differential_translucent_2_heading_2','field_62568a29727b5'),(143794,4127,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(143795,4127,'_flexible_templates_6_differential_translucent_2_column_2','field_62554d4a172dd'),(143796,4127,'flexible_templates_6_differential_translucent_2_column_2_color','#7080a7'),(143797,4127,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62554fcda0e79'),(143798,4127,'flexible_templates_6_differential_translucent_2_heading_3','13'),(143799,4127,'_flexible_templates_6_differential_translucent_2_heading_3','field_62568a30727b6'),(143800,4127,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(143801,4127,'_flexible_templates_6_differential_translucent_2_column_3','field_62554d4d172de'),(143802,4127,'flexible_templates_6_differential_translucent_2_column_3_color','#ff555f'),(143803,4127,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62554ff6a0e7a'),(143804,4127,'flexible_templates_6_differential_translucent_2_heading_4','14'),(143805,4127,'_flexible_templates_6_differential_translucent_2_heading_4','field_62568a37727b7'),(143806,4127,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(143807,4127,'_flexible_templates_6_differential_translucent_2_column_4','field_62554d4f172df'),(143808,4127,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(143809,4127,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62555028a0e7c'),(143810,4127,'flexible_templates_6_differential_translucent_2_heading_5','15'),(143811,4127,'_flexible_templates_6_differential_translucent_2_heading_5','field_62568a40727b8'),(143812,4127,'flexible_templates_6_differential_translucent_2_column_5','Always'),(143813,4127,'_flexible_templates_6_differential_translucent_2_column_5','field_62555011a0e7b'),(143814,4127,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(143815,4127,'_flexible_templates_6_differential_translucent_2_column_5_color','field_6255503aa0e7d'),(143816,4127,'flexible_templates_6_differential_translucent_3_heading_1','16'),(143817,4127,'_flexible_templates_6_differential_translucent_3_heading_1','field_625689c138821'),(143818,4127,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(143819,4127,'_flexible_templates_6_differential_translucent_3_column_1','field_62554d45172dc'),(143820,4127,'flexible_templates_6_differential_translucent_3_heading_2','17'),(143821,4127,'_flexible_templates_6_differential_translucent_3_heading_2','field_62568a29727b5'),(143822,4127,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(143823,4127,'_flexible_templates_6_differential_translucent_3_column_2','field_62554d4a172dd'),(143824,4127,'flexible_templates_6_differential_translucent_3_column_2_color','#7080a7'),(143825,4127,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62554fcda0e79'),(143826,4127,'flexible_templates_6_differential_translucent_3_heading_3','18'),(143827,4127,'_flexible_templates_6_differential_translucent_3_heading_3','field_62568a30727b6'),(143828,4127,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(143829,4127,'_flexible_templates_6_differential_translucent_3_column_3','field_62554d4d172de'),(143830,4127,'flexible_templates_6_differential_translucent_3_column_3_color','#ff555f'),(143831,4127,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62554ff6a0e7a'),(143832,4127,'flexible_templates_6_differential_translucent_3_heading_4','19'),(143833,4127,'_flexible_templates_6_differential_translucent_3_heading_4','field_62568a37727b7'),(143834,4127,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(143835,4127,'_flexible_templates_6_differential_translucent_3_column_4','field_62554d4f172df'),(143836,4127,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(143837,4127,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62555028a0e7c'),(143838,4127,'flexible_templates_6_differential_translucent_3_heading_5','Working with Translucent'),(143839,4127,'_flexible_templates_6_differential_translucent_3_heading_5','field_62568a40727b8'),(143840,4127,'flexible_templates_6_differential_translucent_3_column_5','Always'),(143841,4127,'_flexible_templates_6_differential_translucent_3_column_5','field_62555011a0e7b'),(143842,4127,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(143843,4127,'_flexible_templates_6_differential_translucent_3_column_5_color','field_6255503aa0e7d'),(143844,4127,'flexible_templates_6_differential_translucent','5'),(143845,4127,'_flexible_templates_6_differential_translucent','field_62554c30172da'),(143846,4127,'flexible_templates_7_heading','Be smart. Be efficient. Be agile.'),(143847,4127,'_flexible_templates_7_heading','field_625565e14146d_field_6254fdb2efa27'),(143848,4127,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(143849,4127,'_flexible_templates_7_cta','field_625565fa4146e_field_62551b3e101c4'),(143850,4127,'flexible_templates_6_differential_translucent_4_heading_1','20'),(143851,4127,'_flexible_templates_6_differential_translucent_4_heading_1','field_625689c138821'),(143852,4127,'flexible_templates_6_differential_translucent_4_column_1','No Recruiting Fees'),(143853,4127,'_flexible_templates_6_differential_translucent_4_column_1','field_62554d45172dc'),(143854,4127,'flexible_templates_6_differential_translucent_4_heading_2','21'),(143855,4127,'_flexible_templates_6_differential_translucent_4_heading_2','field_62568a29727b5'),(143856,4127,'flexible_templates_6_differential_translucent_4_column_2','Always'),(143857,4127,'_flexible_templates_6_differential_translucent_4_column_2','field_62554d4a172dd'),(143858,4127,'flexible_templates_6_differential_translucent_4_column_2_color','#28d9cb'),(143859,4127,'_flexible_templates_6_differential_translucent_4_column_2_color','field_62554fcda0e79'),(143860,4127,'flexible_templates_6_differential_translucent_4_heading_3','22'),(143861,4127,'_flexible_templates_6_differential_translucent_4_heading_3','field_62568a30727b6'),(143862,4127,'flexible_templates_6_differential_translucent_4_column_3','Sometimes'),(143863,4127,'_flexible_templates_6_differential_translucent_4_column_3','field_62554d4d172de'),(143864,4127,'flexible_templates_6_differential_translucent_4_column_3_color','#7080a7'),(143865,4127,'_flexible_templates_6_differential_translucent_4_column_3_color','field_62554ff6a0e7a'),(143866,4127,'flexible_templates_6_differential_translucent_4_heading_4','23'),(143867,4127,'_flexible_templates_6_differential_translucent_4_heading_4','field_62568a37727b7'),(143868,4127,'flexible_templates_6_differential_translucent_4_column_4','Rare'),(143869,4127,'_flexible_templates_6_differential_translucent_4_column_4','field_62554d4f172df'),(143870,4127,'flexible_templates_6_differential_translucent_4_column_4_color','#ff555f'),(143871,4127,'_flexible_templates_6_differential_translucent_4_column_4_color','field_62555028a0e7c'),(143872,4127,'flexible_templates_6_differential_translucent_4_heading_5','24'),(143873,4127,'_flexible_templates_6_differential_translucent_4_heading_5','field_62568a40727b8'),(143874,4127,'flexible_templates_6_differential_translucent_4_column_5','Always'),(143875,4127,'_flexible_templates_6_differential_translucent_4_column_5','field_62555011a0e7b'),(143876,4127,'flexible_templates_6_differential_translucent_4_column_5_color','#24c1ff'),(143877,4127,'_flexible_templates_6_differential_translucent_4_column_5_color','field_6255503aa0e7d'),(143881,4028,'flexible_templates_6_differential_translucent_14_column_1','24 hour dedicated support'),(143882,4028,'_flexible_templates_6_differential_translucent_14_column_1','field_62590c30df008'),(143883,4028,'flexible_templates_6_differential_translucent_14_column_2','Rare'),(143884,4028,'_flexible_templates_6_differential_translucent_14_column_2','field_62590c30df00a'),(143885,4028,'flexible_templates_6_differential_translucent_14_column_2_color','#ff555f'),(143886,4028,'_flexible_templates_6_differential_translucent_14_column_2_color','field_62590c30df00b'),(143887,4028,'flexible_templates_6_differential_translucent_14_column_3','Rare'),(143888,4028,'_flexible_templates_6_differential_translucent_14_column_3','field_62590c30df00d'),(143889,4028,'flexible_templates_6_differential_translucent_14_column_3_color','#ff555f'),(143890,4028,'_flexible_templates_6_differential_translucent_14_column_3_color','field_62590c30df00e'),(143891,4028,'flexible_templates_6_differential_translucent_14_column_4','Rare'),(143892,4028,'_flexible_templates_6_differential_translucent_14_column_4','field_62590c30df010'),(143893,4028,'flexible_templates_6_differential_translucent_14_column_4_color','#ff555f'),(143894,4028,'_flexible_templates_6_differential_translucent_14_column_4_color','field_62590c30df011'),(143895,4028,'flexible_templates_6_differential_translucent_14_column_5','Always'),(143896,4028,'_flexible_templates_6_differential_translucent_14_column_5','field_62590c30df013'),(143897,4028,'flexible_templates_6_differential_translucent_14_column_5_color','#24c1ff'),(143898,4028,'_flexible_templates_6_differential_translucent_14_column_5_color','field_62590c30df014'),(143899,4128,'flexible_templates','a:9:{i:0;s:19:\"cloud_native_banner\";i:1;s:35:\"cloud_native_expert_dedicated_teams\";i:2;s:39:\"cloud_native_solving_digital_challenges\";i:3;s:26:\"cloud_native_scale_demands\";i:4;s:22:\"cloud_native_ecosystem\";i:5;s:31:\"cloud_native_technology_partner\";i:6;s:37:\"cloud_native_translucent_differential\";i:7;s:26:\"cloud_nature_future_vision\";i:8;s:17:\"lets_talk_section\";}'),(143900,4128,'_flexible_templates','field_6254f4d84ef9b'),(143901,4128,'flexible_templates_0_image','4030'),(143902,4128,'_flexible_templates_0_image','field_62569b35f7c63_field_6254fdc5efa2a'),(143903,4128,'flexible_templates_0_icon','4013'),(143904,4128,'_flexible_templates_0_icon','field_62569b69f7c64_field_62550482480cb'),(143905,4128,'flexible_templates_0_heading','Solve Digital Challenges with a Complete Cloud Native Solution'),(143906,4128,'_flexible_templates_0_heading','field_62569b87f7c65_field_6254fdb2efa27'),(143907,4128,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(143908,4128,'_flexible_templates_0_sub_heading','field_62569ba5f7c66_field_6254fdbaefa28'),(143909,4128,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:23:\"Transform Your Business\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(143910,4128,'_flexible_templates_0_cta','field_62569bcff7c67_field_62551b3e101c4'),(143911,4128,'flexible_templates_1_image','4031'),(143912,4128,'_flexible_templates_1_image','field_6256a05dda66c_field_6254fdc5efa2a'),(143913,4128,'flexible_templates_1_heading','Expert dedicated teams for your cloud native project.'),(143914,4128,'_flexible_templates_1_heading','field_62569f6d3c0ad_field_6254fdb2efa27'),(143915,4128,'flexible_templates_1_sub_heading','DATA-DRIVEN TRUSTED TECHNOLOGY PARTNER'),(143916,4128,'_flexible_templates_1_sub_heading','field_62569f7a3c0ae_field_6254fdbaefa28'),(143917,4128,'flexible_templates_1_copy','Our expert software engineering teams develop intelligent apps for fintech, healthcare, automotive, and any other data-driven journey, with over 10 years of experience in large scale complex project. Enable your business to reflect its operations through technology while helping it become more dynamic, secure, and easier to scale by increasing speed to market. As a pioneer in cloud native application development we have a proven track record of solving digital transformation challenges for enterprises.'),(143918,4128,'_flexible_templates_1_copy','field_6256a175dc200_field_6254fdc0efa29'),(143919,4128,'flexible_templates_1_copy_long',''),(143920,4128,'_flexible_templates_1_copy_long','field_6256a026da66a'),(143921,4128,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:12:\"How We Do It\";s:3:\"url\";s:36:\"https://translucent.local/tek-world/\";s:6:\"target\";s:0:\"\";}'),(143922,4128,'_flexible_templates_1_cta','field_6256a03ada66b_field_62551b3e101c4'),(143923,4128,'flexible_templates_2_heading','Three paths to Cloud Native'),(143924,4128,'_flexible_templates_2_heading','field_6256a640dea7c_field_6254fdb2efa27'),(143925,4128,'flexible_templates_2_sub_heading','SOLVING DIGITAL CHALLENGES'),(143926,4128,'_flexible_templates_2_sub_heading','field_6256a66cdea7d_field_6254fdbaefa28'),(143927,4128,'flexible_templates_2_posts_grid_0_icon','4033'),(143928,4128,'_flexible_templates_2_posts_grid_0_icon','field_6256a6c0dea7f_field_62550482480cb'),(143929,4128,'flexible_templates_2_posts_grid_0_heading','Build'),(143930,4128,'_flexible_templates_2_posts_grid_0_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(143931,4128,'flexible_templates_2_posts_grid_0_copy','We\'re not just a software company. We\'re the people who help your business achieve its digital transformation vision. From strategy to implementation, we\'ll support you with our cloud native, data driven technology and digital transformation expertise. '),(143932,4128,'_flexible_templates_2_posts_grid_0_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(143933,4128,'flexible_templates_2_posts_grid_0_cta',''),(143934,4128,'_flexible_templates_2_posts_grid_0_cta','field_6256a6f8dea82_field_62551b3e101c4'),(143935,4128,'flexible_templates_2_posts_grid_1_icon','4034'),(143936,4128,'_flexible_templates_2_posts_grid_1_icon','field_6256a6c0dea7f_field_62550482480cb'),(143937,4128,'flexible_templates_2_posts_grid_1_heading','ReBuild'),(143938,4128,'_flexible_templates_2_posts_grid_1_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(143939,4128,'flexible_templates_2_posts_grid_1_copy','Break free from the limitations of your old legacy technology by rebuilding your business critical application components without affecting the original specifications, requirements, and business logic. This will improve scalability, maintainability, and reliability.\r\n'),(143940,4128,'_flexible_templates_2_posts_grid_1_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(143941,4128,'flexible_templates_2_posts_grid_1_cta',''),(143942,4128,'_flexible_templates_2_posts_grid_1_cta','field_6256a6f8dea82_field_62551b3e101c4'),(143943,4128,'flexible_templates_2_posts_grid_2_icon','4035'),(143944,4128,'_flexible_templates_2_posts_grid_2_icon','field_6256a6c0dea7f_field_62550482480cb'),(143945,4128,'flexible_templates_2_posts_grid_2_heading','RePlatform'),(143946,4128,'_flexible_templates_2_posts_grid_2_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(143947,4128,'flexible_templates_2_posts_grid_2_copy','Migrate your old application to a new runtime platform. When upgrading to a cloud native application platform, we repurpose the useable components from your legacy technology, and minimize changes to code and structure.'),(143948,4128,'_flexible_templates_2_posts_grid_2_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(143949,4128,'flexible_templates_2_posts_grid_2_cta',''),(143950,4128,'_flexible_templates_2_posts_grid_2_cta','field_6256a6f8dea82_field_62551b3e101c4'),(143951,4128,'flexible_templates_2_posts_grid','3'),(143952,4128,'_flexible_templates_2_posts_grid','field_6256a698dea7e'),(143953,4128,'flexible_templates_2_cta','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://translucent.local/cloud-native-application-development/\";s:6:\"target\";s:0:\"\";}'),(143954,4128,'_flexible_templates_2_cta','field_6256a725dea83_field_62551b3e101c4'),(143955,4128,'flexible_templates_3_heading','Scale According to your Demands'),(143956,4128,'_flexible_templates_3_heading','field_6256aa0c6187a_field_6254fdb2efa27'),(143957,4128,'flexible_templates_3_scale_demands_0_icon',''),(143958,4128,'_flexible_templates_3_scale_demands_0_icon','field_6256aa4e6187c_field_62550482480cb'),(143959,4128,'flexible_templates_3_scale_demands_0_heading','TEKTeams'),(143960,4128,'_flexible_templates_3_scale_demands_0_heading','field_6256aa866187d_field_6254fdb2efa27'),(143961,4128,'flexible_templates_3_scale_demands_0_copy','On-demand resources that may be used whenever and wherever you need them. Increase your workforce by partnering with teams tailored to your business needs.'),(143962,4128,'_flexible_templates_3_scale_demands_0_copy','field_6256aa986187e_field_6254fdc0efa29'),(143963,4128,'flexible_templates_3_scale_demands_0_cta','a:3:{s:5:\"title\";s:16:\"Scale Your Teams\";s:3:\"url\";s:34:\"https://translucent.local/tekteams\";s:6:\"target\";s:0:\"\";}'),(143964,4128,'_flexible_templates_3_scale_demands_0_cta','field_6256aab66187f_field_62551b3e101c4'),(143965,4128,'flexible_templates_3_scale_demands_1_icon',''),(143966,4128,'_flexible_templates_3_scale_demands_1_icon','field_6256aa4e6187c_field_62550482480cb'),(143967,4128,'flexible_templates_3_scale_demands_1_heading','TEKStack AI'),(143968,4128,'_flexible_templates_3_scale_demands_1_heading','field_6256aa866187d_field_6254fdb2efa27'),(143969,4128,'flexible_templates_3_scale_demands_1_copy','TEKStack AI has perfected the complex process of working with production ready tools that have been shown to save time and money. Reduce your time to market by more than 20%.'),(143970,4128,'_flexible_templates_3_scale_demands_1_copy','field_6256aa986187e_field_6254fdc0efa29'),(143971,4128,'flexible_templates_3_scale_demands_1_cta','a:3:{s:5:\"title\";s:20:\"Speed Up Development\";s:3:\"url\";s:38:\"https://translucent.local/tekstack-ai/\";s:6:\"target\";s:0:\"\";}'),(143972,4128,'_flexible_templates_3_scale_demands_1_cta','field_6256aab66187f_field_62551b3e101c4'),(143973,4128,'flexible_templates_3_scale_demands_2_icon',''),(143974,4128,'_flexible_templates_3_scale_demands_2_icon','field_6256aa4e6187c_field_62550482480cb'),(143975,4128,'flexible_templates_3_scale_demands_2_heading','TEKProcess'),(143976,4128,'_flexible_templates_3_scale_demands_2_heading','field_6256aa866187d_field_6254fdb2efa27'),(143977,4128,'flexible_templates_3_scale_demands_2_copy','Our approach to cloud native development will organize your entire cloud native development process ​from conception to steady state and support, known as TEKProcess.'),(143978,4128,'_flexible_templates_3_scale_demands_2_copy','field_6256aa986187e_field_6254fdc0efa29'),(143979,4128,'flexible_templates_3_scale_demands_2_cta','a:3:{s:5:\"title\";s:24:\"Optimize Your Operations\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(143980,4128,'_flexible_templates_3_scale_demands_2_cta','field_6256aab66187f_field_62551b3e101c4'),(143981,4128,'flexible_templates_3_scale_demands','3'),(143982,4128,'_flexible_templates_3_scale_demands','field_6256aa366187b'),(143983,4128,'flexible_templates_4_heading','Reflect Your Operations Through Technology'),(143984,4128,'_flexible_templates_4_heading','field_6256acb5f89e4_field_6254fdb2efa27'),(143985,4128,'flexible_templates_4_sub_heading','CLOUD NATIVE ECOSYSTEM'),(143986,4128,'_flexible_templates_4_sub_heading','field_6256acc6f89e5_field_6254fdbaefa28'),(143987,4128,'flexible_templates_4_icon','4041'),(143988,4128,'_flexible_templates_4_icon','field_6256db0a20c28_field_62550482480cb'),(143989,4128,'flexible_templates_4_image',''),(143990,4128,'_flexible_templates_4_image','field_6257293fdf3c8_field_6254fdc5efa2a'),(143991,4128,'flexible_templates_4_technology_0_heading','Solve Problems Quick'),(143992,4128,'_flexible_templates_4_technology_0_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(143993,4128,'flexible_templates_4_technology_0_sub_heading','How?'),(143994,4128,'_flexible_templates_4_technology_0_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(143995,4128,'flexible_templates_4_technology_0_copy','Translucent is a data driven digital transformation company that uses technology to solve problems and modernize companies.'),(143996,4128,'_flexible_templates_4_technology_0_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(143997,4128,'flexible_templates_4_technology_0_back_heading','Data Driven'),(143998,4128,'_flexible_templates_4_technology_0_back_heading','field_6256b2b61a441'),(143999,4128,'flexible_templates_4_technology_0_icon','4038'),(144000,4128,'_flexible_templates_4_technology_0_icon','field_6256b2be1a442_field_62550482480cb'),(144001,4128,'flexible_templates_4_technology_0_back_copy','We work closely with companies to analyze their business and discover new opportunities they did not know existed.'),(144002,4128,'_flexible_templates_4_technology_0_back_copy','field_6256b2e31a443'),(144003,4128,'flexible_templates_4_technology_0_image',''),(144004,4128,'_flexible_templates_4_technology_0_image','field_6256b3011a444_field_6254fdc5efa2a'),(144005,4128,'flexible_templates_4_technology_0_cta','a:3:{s:5:\"title\";s:13:\"Start Solving\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(144006,4128,'_flexible_templates_4_technology_0_cta','field_6256ad66f89e9_field_62551b3e101c4'),(144007,4128,'flexible_templates_4_technology_1_heading','Automate Development Tasks'),(144008,4128,'_flexible_templates_4_technology_1_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(144009,4128,'flexible_templates_4_technology_1_sub_heading','How?'),(144010,4128,'_flexible_templates_4_technology_1_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(144011,4128,'flexible_templates_4_technology_1_copy','Simplify the intricacies of cloud applications by automating laborious tasks in the development process.'),(144012,4128,'_flexible_templates_4_technology_1_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(144013,4128,'flexible_templates_4_technology_1_back_heading',''),(144014,4128,'_flexible_templates_4_technology_1_back_heading','field_6256b2b61a441'),(144015,4128,'flexible_templates_4_technology_1_icon','4040'),(144016,4128,'_flexible_templates_4_technology_1_icon','field_6256b2be1a442_field_62550482480cb'),(144017,4128,'flexible_templates_4_technology_1_back_copy','Translucent is one of just four kubernetes certified partners in Canada!'),(144018,4128,'_flexible_templates_4_technology_1_back_copy','field_6256b2e31a443'),(144019,4128,'flexible_templates_4_technology_1_image','4039'),(144020,4128,'_flexible_templates_4_technology_1_image','field_6256b3011a444_field_6254fdc5efa2a'),(144021,4128,'flexible_templates_4_technology_1_cta','a:3:{s:5:\"title\";s:16:\"Start Automating\";s:3:\"url\";s:59:\"https://translucent.local/kubernetes-professional-services/\";s:6:\"target\";s:0:\"\";}'),(144022,4128,'_flexible_templates_4_technology_1_cta','field_6256ad66f89e9_field_62551b3e101c4'),(144023,4128,'flexible_templates_4_technology_2_heading','Build and Deploy Faster'),(144024,4128,'_flexible_templates_4_technology_2_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(144025,4128,'flexible_templates_4_technology_2_sub_heading','How?'),(144026,4128,'_flexible_templates_4_technology_2_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(144027,4128,'flexible_templates_4_technology_2_copy','Maximise earnings by building and deploying more features and faster.'),(144028,4128,'_flexible_templates_4_technology_2_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(144029,4128,'flexible_templates_4_technology_2_back_heading',''),(144030,4128,'_flexible_templates_4_technology_2_back_heading','field_6256b2b61a441'),(144031,4128,'flexible_templates_4_technology_2_icon','4042'),(144032,4128,'_flexible_templates_4_technology_2_icon','field_6256b2be1a442_field_62550482480cb'),(144033,4128,'flexible_templates_4_technology_2_back_copy','Devops is the heartbeat of all Translucent services, and Translucent IS Devops.'),(144034,4128,'_flexible_templates_4_technology_2_back_copy','field_6256b2e31a443'),(144035,4128,'flexible_templates_4_technology_2_image',''),(144036,4128,'_flexible_templates_4_technology_2_image','field_6256b3011a444_field_6254fdc5efa2a'),(144037,4128,'flexible_templates_4_technology_2_cta','a:3:{s:5:\"title\";s:17:\"Unlock Efficiency\";s:3:\"url\";s:46:\"https://translucent.local/cloud-native-devops/\";s:6:\"target\";s:0:\"\";}'),(144038,4128,'_flexible_templates_4_technology_2_cta','field_6256ad66f89e9_field_62551b3e101c4'),(144039,4128,'flexible_templates_4_technology_3_heading','Remain Secure as Possible'),(144040,4128,'_flexible_templates_4_technology_3_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(144041,4128,'flexible_templates_4_technology_3_sub_heading','How?'),(144042,4128,'_flexible_templates_4_technology_3_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(144043,4128,'flexible_templates_4_technology_3_copy','Reduce deliberate and incidental security vulnerabilities in your systems.'),(144044,4128,'_flexible_templates_4_technology_3_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(144045,4128,'flexible_templates_4_technology_3_back_heading','Zero Trust'),(144046,4128,'_flexible_templates_4_technology_3_back_heading','field_6256b2b61a441'),(144047,4128,'flexible_templates_4_technology_3_icon','4043'),(144048,4128,'_flexible_templates_4_technology_3_icon','field_6256b2be1a442_field_62550482480cb'),(144049,4128,'flexible_templates_4_technology_3_back_copy','We are partnered with the best security teams to offer full end to end services.'),(144050,4128,'_flexible_templates_4_technology_3_back_copy','field_6256b2e31a443'),(144051,4128,'flexible_templates_4_technology_3_image',''),(144052,4128,'_flexible_templates_4_technology_3_image','field_6256b3011a444_field_6254fdc5efa2a'),(144053,4128,'flexible_templates_4_technology_3_cta','a:3:{s:5:\"title\";s:20:\"Protect What Matters\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(144054,4128,'_flexible_templates_4_technology_3_cta','field_6256ad66f89e9_field_62551b3e101c4'),(144055,4128,'flexible_templates_4_technology','6'),(144056,4128,'_flexible_templates_4_technology','field_6256acf8f89e6'),(144057,4128,'flexible_templates_4_technology_4_heading','Propel Your Business into The Future'),(144058,4128,'_flexible_templates_4_technology_4_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(144059,4128,'flexible_templates_4_technology_4_sub_heading','How?'),(144060,4128,'_flexible_templates_4_technology_4_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(144061,4128,'flexible_templates_4_technology_4_copy','Build new systems in the cloud, or Modernize legacy data and applications by rebuilding or migrating to a value-driven platform. '),(144062,4128,'_flexible_templates_4_technology_4_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(144063,4128,'flexible_templates_4_technology_4_back_heading','Application Development'),(144064,4128,'_flexible_templates_4_technology_4_back_heading','field_6256b2b61a441'),(144065,4128,'flexible_templates_4_technology_4_icon','4047'),(144066,4128,'_flexible_templates_4_technology_4_icon','field_6256b2be1a442_field_62550482480cb'),(144067,4128,'flexible_templates_4_technology_4_back_copy','We develop intelligent apps for fintech, healthcare, and any other data-driven journey.'),(144068,4128,'_flexible_templates_4_technology_4_back_copy','field_6256b2e31a443'),(144069,4128,'flexible_templates_4_technology_4_image',''),(144070,4128,'_flexible_templates_4_technology_4_image','field_6256b3011a444_field_6254fdc5efa2a'),(144071,4128,'flexible_templates_4_technology_4_cta','a:3:{s:5:\"title\";s:14:\"Build It Right\";s:3:\"url\";s:63:\"https://translucent.local/cloud-native-application-development/\";s:6:\"target\";s:0:\"\";}'),(144072,4128,'_flexible_templates_4_technology_4_cta','field_6256ad66f89e9_field_62551b3e101c4'),(144073,4128,'flexible_templates_4_technology_5_heading','Make Decisions Faster'),(144074,4128,'_flexible_templates_4_technology_5_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(144075,4128,'flexible_templates_4_technology_5_sub_heading','How?'),(144076,4128,'_flexible_templates_4_technology_5_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(144077,4128,'flexible_templates_4_technology_5_copy','Discover anomalies and opportunities faster than human intelligence!'),(144078,4128,'_flexible_templates_4_technology_5_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(144079,4128,'flexible_templates_4_technology_5_back_heading',''),(144080,4128,'_flexible_templates_4_technology_5_back_heading','field_6256b2b61a441'),(144081,4128,'flexible_templates_4_technology_5_icon','4048'),(144082,4128,'_flexible_templates_4_technology_5_icon','field_6256b2be1a442_field_62550482480cb'),(144083,4128,'flexible_templates_4_technology_5_back_copy','Extend the boundaries of your business by solving problems faster.'),(144084,4128,'_flexible_templates_4_technology_5_back_copy','field_6256b2e31a443'),(144085,4128,'flexible_templates_4_technology_5_image',''),(144086,4128,'_flexible_templates_4_technology_5_image','field_6256b3011a444_field_6254fdc5efa2a'),(144087,4128,'flexible_templates_4_technology_5_cta','a:3:{s:5:\"title\";s:22:\"Solve Complex Problems\";s:3:\"url\";s:52:\"https://translucent.local/services/machine-learning/\";s:6:\"target\";s:6:\"_blank\";}'),(144088,4128,'_flexible_templates_4_technology_5_cta','field_6256ad66f89e9_field_62551b3e101c4'),(144089,4128,'flexible_templates_5_image','4051'),(144090,4128,'_flexible_templates_5_image','field_6256dbdfc0c83_field_6254fdc5efa2a'),(144091,4128,'flexible_templates_5_mob_image','4050'),(144092,4128,'_flexible_templates_5_mob_image','field_6256dbeec0c84_field_6254fdcbefa2b'),(144093,4128,'flexible_templates_5_heading','Companies That We Work With'),(144094,4128,'_flexible_templates_5_heading','field_6256dc0cc0c85_field_6254fdb2efa27'),(144095,4128,'flexible_templates_5_technology_partner_0_heading','Teams looking for a trusted nearshore technology partner '),(144096,4128,'_flexible_templates_5_technology_partner_0_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(144097,4128,'flexible_templates_5_technology_partner_0_icon','4052'),(144098,4128,'_flexible_templates_5_technology_partner_0_icon','field_6256dc78c0c88_field_62550482480cb'),(144099,4128,'flexible_templates_5_technology_partner_0_copy','Your Dedicated Development Team. We bring the best people in the industry with various skills to develop and maintain the highest quality software.'),(144100,4128,'_flexible_templates_5_technology_partner_0_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(144101,4128,'flexible_templates_5_technology_partner_1_heading','Teams looking to a build state-of-the-art platform'),(144102,4128,'_flexible_templates_5_technology_partner_1_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(144103,4128,'flexible_templates_5_technology_partner_1_icon','4053'),(144104,4128,'_flexible_templates_5_technology_partner_1_icon','field_6256dc78c0c88_field_62550482480cb'),(144105,4128,'flexible_templates_5_technology_partner_1_copy','Industry-leading cloud native solutions that are backed by an award-winning process, teams, and production-ready data-driven platform.'),(144106,4128,'_flexible_templates_5_technology_partner_1_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(144107,4128,'flexible_templates_5_technology_partner_2_heading','Teams looking to outperform competition'),(144108,4128,'_flexible_templates_5_technology_partner_2_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(144109,4128,'flexible_templates_5_technology_partner_2_icon','4054'),(144110,4128,'_flexible_templates_5_technology_partner_2_icon','field_6256dc78c0c88_field_62550482480cb'),(144111,4128,'flexible_templates_5_technology_partner_2_copy','Gain a major competitive advantage by increasing speed to market by 20%, allowing you to make business moves more quickly.'),(144112,4128,'_flexible_templates_5_technology_partner_2_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(144113,4128,'flexible_templates_5_technology_partner','3'),(144114,4128,'_flexible_templates_5_technology_partner','field_6256dc3fc0c86'),(144115,4128,'flexible_templates_6_heading','WHY TRANSLUCENT'),(144116,4128,'_flexible_templates_6_heading','field_62590b7cdf000_field_6254fdb2efa27'),(144117,4128,'flexible_templates_6_sub_heading','How Translucent Powered by TEK Differs From Alternative Solutions'),(144118,4128,'_flexible_templates_6_sub_heading','field_62590b8bdf001_field_6254fdbaefa28'),(144119,4128,'flexible_templates_6_icon','4013'),(144120,4128,'_flexible_templates_6_icon','field_62590bc5df002_field_62550482480cb'),(144121,4128,'flexible_templates_6_differential_translucent_header_0_heading','Your needs'),(144122,4128,'_flexible_templates_6_differential_translucent_header_0_heading','field_62590c01df004_field_6254fdb2efa27'),(144123,4128,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(144124,4128,'_flexible_templates_6_differential_translucent_header_0_color','field_62590c11df005'),(144125,4128,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(144126,4128,'_flexible_templates_6_differential_translucent_header_1_heading','field_62590c01df004_field_6254fdb2efa27'),(144127,4128,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(144128,4128,'_flexible_templates_6_differential_translucent_header_1_color','field_62590c11df005'),(144129,4128,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore teams'),(144130,4128,'_flexible_templates_6_differential_translucent_header_2_heading','field_62590c01df004_field_6254fdb2efa27'),(144131,4128,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(144132,4128,'_flexible_templates_6_differential_translucent_header_2_color','field_62590c11df005'),(144133,4128,'flexible_templates_6_differential_translucent_header_3_heading','Hiring in-house developers'),(144134,4128,'_flexible_templates_6_differential_translucent_header_3_heading','field_62590c01df004_field_6254fdb2efa27'),(144135,4128,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(144136,4128,'_flexible_templates_6_differential_translucent_header_3_color','field_62590c11df005'),(144137,4128,'flexible_templates_6_differential_translucent_header','5'),(144138,4128,'_flexible_templates_6_differential_translucent_header','field_62590bf9df003'),(144139,4128,'flexible_templates_6_differential_translucent','15'),(144140,4128,'_flexible_templates_6_differential_translucent','field_62590c30df006'),(144141,4128,'flexible_templates_6_differential_translucent_header_4_heading','Working with Translucent'),(144142,4128,'_flexible_templates_6_differential_translucent_header_4_heading','field_62590c01df004_field_6254fdb2efa27'),(144143,4128,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(144144,4128,'_flexible_templates_6_differential_translucent_header_4_color','field_62590c11df005'),(144145,4128,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(144146,4128,'_flexible_templates_6_differential_translucent_0_column_1','field_62590c30df008'),(144147,4128,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(144148,4128,'_flexible_templates_6_differential_translucent_0_column_2','field_62590c30df00a'),(144149,4128,'flexible_templates_6_differential_translucent_0_column_2_color','#7080a7'),(144150,4128,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62590c30df00b'),(144151,4128,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(144152,4128,'_flexible_templates_6_differential_translucent_0_column_3','field_62590c30df00d'),(144153,4128,'flexible_templates_6_differential_translucent_0_column_3_color','#ff555f'),(144154,4128,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62590c30df00e'),(144155,4128,'flexible_templates_6_differential_translucent_0_column_4','Always'),(144156,4128,'_flexible_templates_6_differential_translucent_0_column_4','field_62590c30df010'),(144157,4128,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(144158,4128,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62590c30df011'),(144159,4128,'flexible_templates_6_differential_translucent_0_column_5','Always'),(144160,4128,'_flexible_templates_6_differential_translucent_0_column_5','field_62590c30df013'),(144161,4128,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(144162,4128,'_flexible_templates_6_differential_translucent_0_column_5_color','field_62590c30df014'),(144163,4128,'flexible_templates_7_heading','We have a future vision that is in sync with the realities that our clients are currently facing'),(144164,4128,'_flexible_templates_7_heading','field_625733105d792_field_6254fdb2efa27'),(144165,4128,'flexible_templates_7_copy_wysiwyg','Translucent is a pioneer in cloud native application development. We created our own solutions, which we call TEK (Translucent Expert Knowledge). Our culture fosters innovation.'),(144166,4128,'_flexible_templates_7_copy_wysiwyg','field_625733205d793_field_6255310ecf4de'),(144167,4128,'flexible_templates_7_image','4057'),(144168,4128,'_flexible_templates_7_image','field_625733375d794_field_6254fdc5efa2a'),(144169,4128,'flexible_templates_7_icon','4058'),(144170,4128,'_flexible_templates_7_icon','field_625733495d795_field_62550482480cb'),(144171,4128,'flexible_templates_7_sick_kids_text',''),(144172,4128,'_flexible_templates_7_sick_kids_text','field_62573ad019bd0'),(144173,4128,'flexible_templates_7_tek_stack_case',''),(144174,4128,'_flexible_templates_7_tek_stack_case','field_625733b05d797'),(144175,4128,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:36:\"See How We Helped Sick Kids Hospital\";s:3:\"url\";s:70:\"https://translucent.local/case-studies/the-hospital-for-sick-children/\";s:6:\"target\";s:0:\"\";}'),(144176,4128,'_flexible_templates_7_cta','field_625733895d796_field_62551b3e101c4'),(144177,4128,'flexible_templates_8_heading','We treat your business like our own.'),(144178,4128,'_flexible_templates_8_heading','field_625565e14146d_field_6254fdb2efa27'),(144179,4128,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:10:\"Let\'s talk\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(144180,4128,'_flexible_templates_8_cta','field_625565fa4146e_field_62551b3e101c4'),(144181,4128,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (Speed to market)'),(144182,4128,'_flexible_templates_6_differential_translucent_1_column_1','field_62590c30df008'),(144183,4128,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(144184,4128,'_flexible_templates_6_differential_translucent_1_column_2','field_62590c30df00a'),(144185,4128,'flexible_templates_6_differential_translucent_1_column_2_color','#ff555f'),(144186,4128,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62590c30df00b'),(144187,4128,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(144188,4128,'_flexible_templates_6_differential_translucent_1_column_3','field_62590c30df00d'),(144189,4128,'flexible_templates_6_differential_translucent_1_column_3_color','#7080a7'),(144190,4128,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62590c30df00e'),(144191,4128,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(144192,4128,'_flexible_templates_6_differential_translucent_1_column_4','field_62590c30df010'),(144193,4128,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(144194,4128,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62590c30df011'),(144195,4128,'flexible_templates_6_differential_translucent_1_column_5','Always'),(144196,4128,'_flexible_templates_6_differential_translucent_1_column_5','field_62590c30df013'),(144197,4128,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(144198,4128,'_flexible_templates_6_differential_translucent_1_column_5_color','field_62590c30df014'),(144199,4128,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(144200,4128,'_flexible_templates_6_differential_translucent_2_column_1','field_62590c30df008'),(144201,4128,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(144202,4128,'_flexible_templates_6_differential_translucent_2_column_2','field_62590c30df00a'),(144203,4128,'flexible_templates_6_differential_translucent_2_column_2_color','#7080a7'),(144204,4128,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62590c30df00b'),(144205,4128,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(144206,4128,'_flexible_templates_6_differential_translucent_2_column_3','field_62590c30df00d'),(144207,4128,'flexible_templates_6_differential_translucent_2_column_3_color','#ff555f'),(144208,4128,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62590c30df00e'),(144209,4128,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(144210,4128,'_flexible_templates_6_differential_translucent_2_column_4','field_62590c30df010'),(144211,4128,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(144212,4128,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62590c30df011'),(144213,4128,'flexible_templates_6_differential_translucent_2_column_5','Always'),(144214,4128,'_flexible_templates_6_differential_translucent_2_column_5','field_62590c30df013'),(144215,4128,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(144216,4128,'_flexible_templates_6_differential_translucent_2_column_5_color','field_62590c30df014'),(144217,4128,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(144218,4128,'_flexible_templates_6_differential_translucent_3_column_1','field_62590c30df008'),(144219,4128,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(144220,4128,'_flexible_templates_6_differential_translucent_3_column_2','field_62590c30df00a'),(144221,4128,'flexible_templates_6_differential_translucent_3_column_2_color','#7080a7'),(144222,4128,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62590c30df00b'),(144223,4128,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(144224,4128,'_flexible_templates_6_differential_translucent_3_column_3','field_62590c30df00d'),(144225,4128,'flexible_templates_6_differential_translucent_3_column_3_color','#ff555f'),(144226,4128,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62590c30df00e'),(144227,4128,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(144228,4128,'_flexible_templates_6_differential_translucent_3_column_4','field_62590c30df010'),(144229,4128,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(144230,4128,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62590c30df011'),(144231,4128,'flexible_templates_6_differential_translucent_3_column_5','Always'),(144232,4128,'_flexible_templates_6_differential_translucent_3_column_5','field_62590c30df013'),(144233,4128,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(144234,4128,'_flexible_templates_6_differential_translucent_3_column_5_color','field_62590c30df014'),(144235,4128,'flexible_templates_6_differential_translucent_4_column_1','No Recruiting Fees '),(144236,4128,'_flexible_templates_6_differential_translucent_4_column_1','field_62590c30df008'),(144237,4128,'flexible_templates_6_differential_translucent_4_column_2','Always'),(144238,4128,'_flexible_templates_6_differential_translucent_4_column_2','field_62590c30df00a'),(144239,4128,'flexible_templates_6_differential_translucent_4_column_2_color','#28d9cb'),(144240,4128,'_flexible_templates_6_differential_translucent_4_column_2_color','field_62590c30df00b'),(144241,4128,'flexible_templates_6_differential_translucent_4_column_3','Sometimes '),(144242,4128,'_flexible_templates_6_differential_translucent_4_column_3','field_62590c30df00d'),(144243,4128,'flexible_templates_6_differential_translucent_4_column_3_color','#ff555f'),(144244,4128,'_flexible_templates_6_differential_translucent_4_column_3_color','field_62590c30df00e'),(144245,4128,'flexible_templates_6_differential_translucent_4_column_4','Rare'),(144246,4128,'_flexible_templates_6_differential_translucent_4_column_4','field_62590c30df010'),(144247,4128,'flexible_templates_6_differential_translucent_4_column_4_color','#ff555f'),(144248,4128,'_flexible_templates_6_differential_translucent_4_column_4_color','field_62590c30df011'),(144249,4128,'flexible_templates_6_differential_translucent_4_column_5','Always'),(144250,4128,'_flexible_templates_6_differential_translucent_4_column_5','field_62590c30df013'),(144251,4128,'flexible_templates_6_differential_translucent_4_column_5_color','#24c1ff'),(144252,4128,'_flexible_templates_6_differential_translucent_4_column_5_color','field_62590c30df014'),(144253,4128,'flexible_templates_6_differential_translucent_5_column_1','Price predictability and transparency'),(144254,4128,'_flexible_templates_6_differential_translucent_5_column_1','field_62590c30df008'),(144255,4128,'flexible_templates_6_differential_translucent_5_column_2','Rare'),(144256,4128,'_flexible_templates_6_differential_translucent_5_column_2','field_62590c30df00a'),(144257,4128,'flexible_templates_6_differential_translucent_5_column_2_color','#ff555f'),(144258,4128,'_flexible_templates_6_differential_translucent_5_column_2_color','field_62590c30df00b'),(144259,4128,'flexible_templates_6_differential_translucent_5_column_3','Sometimes'),(144260,4128,'_flexible_templates_6_differential_translucent_5_column_3','field_62590c30df00d'),(144261,4128,'flexible_templates_6_differential_translucent_5_column_3_color','#7080a7'),(144262,4128,'_flexible_templates_6_differential_translucent_5_column_3_color','field_62590c30df00e'),(144263,4128,'flexible_templates_6_differential_translucent_5_column_4','Always'),(144264,4128,'_flexible_templates_6_differential_translucent_5_column_4','field_62590c30df010'),(144265,4128,'flexible_templates_6_differential_translucent_5_column_4_color','#28d9cb'),(144266,4128,'_flexible_templates_6_differential_translucent_5_column_4_color','field_62590c30df011'),(144267,4128,'flexible_templates_6_differential_translucent_5_column_5','Always'),(144268,4128,'_flexible_templates_6_differential_translucent_5_column_5','field_62590c30df013'),(144269,4128,'flexible_templates_6_differential_translucent_5_column_5_color','#24c1ff'),(144270,4128,'_flexible_templates_6_differential_translucent_5_column_5_color','field_62590c30df014'),(144271,4128,'flexible_templates_6_differential_translucent_6_column_1','Affordability'),(144272,4128,'_flexible_templates_6_differential_translucent_6_column_1','field_62590c30df008'),(144273,4128,'flexible_templates_6_differential_translucent_6_column_2','Rare'),(144274,4128,'_flexible_templates_6_differential_translucent_6_column_2','field_62590c30df00a'),(144275,4128,'flexible_templates_6_differential_translucent_6_column_2_color','#ff555f'),(144276,4128,'_flexible_templates_6_differential_translucent_6_column_2_color','field_62590c30df00b'),(144277,4128,'flexible_templates_6_differential_translucent_6_column_3','Sometimes'),(144278,4128,'_flexible_templates_6_differential_translucent_6_column_3','field_62590c30df00d'),(144279,4128,'flexible_templates_6_differential_translucent_6_column_3_color','#7080a7'),(144280,4128,'_flexible_templates_6_differential_translucent_6_column_3_color','field_62590c30df00e'),(144281,4128,'flexible_templates_6_differential_translucent_6_column_4','Sometimes'),(144282,4128,'_flexible_templates_6_differential_translucent_6_column_4','field_62590c30df010'),(144283,4128,'flexible_templates_6_differential_translucent_6_column_4_color','#7080a7'),(144284,4128,'_flexible_templates_6_differential_translucent_6_column_4_color','field_62590c30df011'),(144285,4128,'flexible_templates_6_differential_translucent_6_column_5','Always'),(144286,4128,'_flexible_templates_6_differential_translucent_6_column_5','field_62590c30df013'),(144287,4128,'flexible_templates_6_differential_translucent_6_column_5_color','#24c1ff'),(144288,4128,'_flexible_templates_6_differential_translucent_6_column_5_color','field_62590c30df014'),(144289,4128,'flexible_templates_6_differential_translucent_7_column_1','Security and confidentiality'),(144290,4128,'_flexible_templates_6_differential_translucent_7_column_1','field_62590c30df008'),(144291,4128,'flexible_templates_6_differential_translucent_7_column_2','Sometimes'),(144292,4128,'_flexible_templates_6_differential_translucent_7_column_2','field_62590c30df00a'),(144293,4128,'flexible_templates_6_differential_translucent_7_column_2_color','#7080a7'),(144294,4128,'_flexible_templates_6_differential_translucent_7_column_2_color','field_62590c30df00b'),(144295,4128,'flexible_templates_6_differential_translucent_7_column_3','Rare'),(144296,4128,'_flexible_templates_6_differential_translucent_7_column_3','field_62590c30df00d'),(144297,4128,'flexible_templates_6_differential_translucent_7_column_3_color','#ff555f'),(144298,4128,'_flexible_templates_6_differential_translucent_7_column_3_color','field_62590c30df00e'),(144299,4128,'flexible_templates_6_differential_translucent_7_column_4','Always'),(144300,4128,'_flexible_templates_6_differential_translucent_7_column_4','field_62590c30df010'),(144301,4128,'flexible_templates_6_differential_translucent_7_column_4_color','#28d9cb'),(144302,4128,'_flexible_templates_6_differential_translucent_7_column_4_color','field_62590c30df011'),(144303,4128,'flexible_templates_6_differential_translucent_7_column_5','Always'),(144304,4128,'_flexible_templates_6_differential_translucent_7_column_5','field_62590c30df013'),(144305,4128,'flexible_templates_6_differential_translucent_7_column_5_color','#24c1ff'),(144306,4128,'_flexible_templates_6_differential_translucent_7_column_5_color','field_62590c30df014'),(144307,4128,'flexible_templates_6_differential_translucent_8_column_1','Top 1% engineering talent'),(144308,4128,'_flexible_templates_6_differential_translucent_8_column_1','field_62590c30df008'),(144309,4128,'flexible_templates_6_differential_translucent_8_column_2','Sometimes'),(144310,4128,'_flexible_templates_6_differential_translucent_8_column_2','field_62590c30df00a'),(144311,4128,'flexible_templates_6_differential_translucent_8_column_2_color','#7080a7'),(144312,4128,'_flexible_templates_6_differential_translucent_8_column_2_color','field_62590c30df00b'),(144313,4128,'flexible_templates_6_differential_translucent_8_column_3','Rare'),(144314,4128,'_flexible_templates_6_differential_translucent_8_column_3','field_62590c30df00d'),(144315,4128,'flexible_templates_6_differential_translucent_8_column_3_color','#ff555f'),(144316,4128,'_flexible_templates_6_differential_translucent_8_column_3_color','field_62590c30df00e'),(144317,4128,'flexible_templates_6_differential_translucent_8_column_4','Sometimes'),(144318,4128,'_flexible_templates_6_differential_translucent_8_column_4','field_62590c30df010'),(144319,4128,'flexible_templates_6_differential_translucent_8_column_4_color','#7080a7'),(144320,4128,'_flexible_templates_6_differential_translucent_8_column_4_color','field_62590c30df011'),(144321,4128,'flexible_templates_6_differential_translucent_8_column_5','Always'),(144322,4128,'_flexible_templates_6_differential_translucent_8_column_5','field_62590c30df013'),(144323,4128,'flexible_templates_6_differential_translucent_8_column_5_color','#24c1ff'),(144324,4128,'_flexible_templates_6_differential_translucent_8_column_5_color','field_62590c30df014'),(144325,4128,'flexible_templates_6_differential_translucent_9_column_1','Top project management talent'),(144326,4128,'_flexible_templates_6_differential_translucent_9_column_1','field_62590c30df008'),(144327,4128,'flexible_templates_6_differential_translucent_9_column_2','Sometimes'),(144328,4128,'_flexible_templates_6_differential_translucent_9_column_2','field_62590c30df00a'),(144329,4128,'flexible_templates_6_differential_translucent_9_column_2_color','#7080a7'),(144330,4128,'_flexible_templates_6_differential_translucent_9_column_2_color','field_62590c30df00b'),(144331,4128,'flexible_templates_6_differential_translucent_9_column_3','Rare'),(144332,4128,'_flexible_templates_6_differential_translucent_9_column_3','field_62590c30df00d'),(144333,4128,'flexible_templates_6_differential_translucent_9_column_3_color','#ff555f'),(144334,4128,'_flexible_templates_6_differential_translucent_9_column_3_color','field_62590c30df00e'),(144335,4128,'flexible_templates_6_differential_translucent_9_column_4','Rare'),(144336,4128,'_flexible_templates_6_differential_translucent_9_column_4','field_62590c30df010'),(144337,4128,'flexible_templates_6_differential_translucent_9_column_4_color','#ff555f'),(144338,4128,'_flexible_templates_6_differential_translucent_9_column_4_color','field_62590c30df011'),(144339,4128,'flexible_templates_6_differential_translucent_9_column_5','Always'),(144340,4128,'_flexible_templates_6_differential_translucent_9_column_5','field_62590c30df013'),(144341,4128,'flexible_templates_6_differential_translucent_9_column_5_color','#24c1ff'),(144342,4128,'_flexible_templates_6_differential_translucent_9_column_5_color','field_62590c30df014'),(144343,4128,'flexible_templates_6_differential_translucent_10_column_1','Dedicated Dev-ops Manager'),(144344,4128,'_flexible_templates_6_differential_translucent_10_column_1','field_62590c30df008'),(144345,4128,'flexible_templates_6_differential_translucent_10_column_2','Sometimes'),(144346,4128,'_flexible_templates_6_differential_translucent_10_column_2','field_62590c30df00a'),(144347,4128,'flexible_templates_6_differential_translucent_10_column_2_color','#7080a7'),(144348,4128,'_flexible_templates_6_differential_translucent_10_column_2_color','field_62590c30df00b'),(144349,4128,'flexible_templates_6_differential_translucent_10_column_3','Rare'),(144350,4128,'_flexible_templates_6_differential_translucent_10_column_3','field_62590c30df00d'),(144351,4128,'flexible_templates_6_differential_translucent_10_column_3_color','#ff555f'),(144352,4128,'_flexible_templates_6_differential_translucent_10_column_3_color','field_62590c30df00e'),(144353,4128,'flexible_templates_6_differential_translucent_10_column_4','Rare'),(144354,4128,'_flexible_templates_6_differential_translucent_10_column_4','field_62590c30df010'),(144355,4128,'flexible_templates_6_differential_translucent_10_column_4_color','#ff555f'),(144356,4128,'_flexible_templates_6_differential_translucent_10_column_4_color','field_62590c30df011'),(144357,4128,'flexible_templates_6_differential_translucent_10_column_5','Always'),(144358,4128,'_flexible_templates_6_differential_translucent_10_column_5','field_62590c30df013'),(144359,4128,'flexible_templates_6_differential_translucent_10_column_5_color','#24c1ff'),(144360,4128,'_flexible_templates_6_differential_translucent_10_column_5_color','field_62590c30df014'),(144361,4128,'flexible_templates_6_differential_translucent_11_column_1','Scalable solutions i.e. can easily grow as you do'),(144362,4128,'_flexible_templates_6_differential_translucent_11_column_1','field_62590c30df008'),(144363,4128,'flexible_templates_6_differential_translucent_11_column_2','Sometimes'),(144364,4128,'_flexible_templates_6_differential_translucent_11_column_2','field_62590c30df00a'),(144365,4128,'flexible_templates_6_differential_translucent_11_column_2_color','#7080a7'),(144366,4128,'_flexible_templates_6_differential_translucent_11_column_2_color','field_62590c30df00b'),(144367,4128,'flexible_templates_6_differential_translucent_11_column_3','Rare'),(144368,4128,'_flexible_templates_6_differential_translucent_11_column_3','field_62590c30df00d'),(144369,4128,'flexible_templates_6_differential_translucent_11_column_3_color','#ff555f'),(144370,4128,'_flexible_templates_6_differential_translucent_11_column_3_color','field_62590c30df00e'),(144371,4128,'flexible_templates_6_differential_translucent_11_column_4','Rare'),(144372,4128,'_flexible_templates_6_differential_translucent_11_column_4','field_62590c30df010'),(144373,4128,'flexible_templates_6_differential_translucent_11_column_4_color','#ff555f'),(144374,4128,'_flexible_templates_6_differential_translucent_11_column_4_color','field_62590c30df011'),(144375,4128,'flexible_templates_6_differential_translucent_11_column_5','Always'),(144376,4128,'_flexible_templates_6_differential_translucent_11_column_5','field_62590c30df013'),(144377,4128,'flexible_templates_6_differential_translucent_11_column_5_color','#24c1ff'),(144378,4128,'_flexible_templates_6_differential_translucent_11_column_5_color','field_62590c30df014'),(144379,4128,'flexible_templates_6_differential_translucent_12_column_1','Understand your business objectives and outcomes. You want to drive.'),(144380,4128,'_flexible_templates_6_differential_translucent_12_column_1','field_62590c30df008'),(144381,4128,'flexible_templates_6_differential_translucent_12_column_2','Sometimes'),(144382,4128,'_flexible_templates_6_differential_translucent_12_column_2','field_62590c30df00a'),(144383,4128,'flexible_templates_6_differential_translucent_12_column_2_color','#7080a7'),(144384,4128,'_flexible_templates_6_differential_translucent_12_column_2_color','field_62590c30df00b'),(144385,4128,'flexible_templates_6_differential_translucent_12_column_3','Sometimes'),(144386,4128,'_flexible_templates_6_differential_translucent_12_column_3','field_62590c30df00d'),(144387,4128,'flexible_templates_6_differential_translucent_12_column_3_color','#7080a7'),(144388,4128,'_flexible_templates_6_differential_translucent_12_column_3_color','field_62590c30df00e'),(144389,4128,'flexible_templates_6_differential_translucent_12_column_4','Always'),(144390,4128,'_flexible_templates_6_differential_translucent_12_column_4','field_62590c30df010'),(144391,4128,'flexible_templates_6_differential_translucent_12_column_4_color','#28d9cb'),(144392,4128,'_flexible_templates_6_differential_translucent_12_column_4_color','field_62590c30df011'),(144393,4128,'flexible_templates_6_differential_translucent_12_column_5','Always'),(144394,4128,'_flexible_templates_6_differential_translucent_12_column_5','field_62590c30df013'),(144395,4128,'flexible_templates_6_differential_translucent_12_column_5_color','#24c1ff'),(144396,4128,'_flexible_templates_6_differential_translucent_12_column_5_color','field_62590c30df014'),(144397,4128,'flexible_templates_6_differential_translucent_13_column_1','Amazing'),(144398,4128,'_flexible_templates_6_differential_translucent_13_column_1','field_62590c30df008'),(144399,4128,'flexible_templates_6_differential_translucent_13_column_2','Sometimes'),(144400,4128,'_flexible_templates_6_differential_translucent_13_column_2','field_62590c30df00a'),(144401,4128,'flexible_templates_6_differential_translucent_13_column_2_color','#7080a7'),(144402,4128,'_flexible_templates_6_differential_translucent_13_column_2_color','field_62590c30df00b'),(144403,4128,'flexible_templates_6_differential_translucent_13_column_3','Rare'),(144404,4128,'_flexible_templates_6_differential_translucent_13_column_3','field_62590c30df00d'),(144405,4128,'flexible_templates_6_differential_translucent_13_column_3_color','#ff555f'),(144406,4128,'_flexible_templates_6_differential_translucent_13_column_3_color','field_62590c30df00e'),(144407,4128,'flexible_templates_6_differential_translucent_13_column_4','Rare'),(144408,4128,'_flexible_templates_6_differential_translucent_13_column_4','field_62590c30df010'),(144409,4128,'flexible_templates_6_differential_translucent_13_column_4_color','#ff555f'),(144410,4128,'_flexible_templates_6_differential_translucent_13_column_4_color','field_62590c30df011'),(144411,4128,'flexible_templates_6_differential_translucent_13_column_5','Always'),(144412,4128,'_flexible_templates_6_differential_translucent_13_column_5','field_62590c30df013'),(144413,4128,'flexible_templates_6_differential_translucent_13_column_5_color','#24c1ff'),(144414,4128,'_flexible_templates_6_differential_translucent_13_column_5_color','field_62590c30df014'),(144415,4128,'flexible_templates_6_differential_translucent_14_column_1','24 hour dedicated support'),(144416,4128,'_flexible_templates_6_differential_translucent_14_column_1','field_62590c30df008'),(144417,4128,'flexible_templates_6_differential_translucent_14_column_2','Rare'),(144418,4128,'_flexible_templates_6_differential_translucent_14_column_2','field_62590c30df00a'),(144419,4128,'flexible_templates_6_differential_translucent_14_column_2_color','#ff555f'),(144420,4128,'_flexible_templates_6_differential_translucent_14_column_2_color','field_62590c30df00b'),(144421,4128,'flexible_templates_6_differential_translucent_14_column_3','Rare'),(144422,4128,'_flexible_templates_6_differential_translucent_14_column_3','field_62590c30df00d'),(144423,4128,'flexible_templates_6_differential_translucent_14_column_3_color','#ff555f'),(144424,4128,'_flexible_templates_6_differential_translucent_14_column_3_color','field_62590c30df00e'),(144425,4128,'flexible_templates_6_differential_translucent_14_column_4','Rare'),(144426,4128,'_flexible_templates_6_differential_translucent_14_column_4','field_62590c30df010'),(144427,4128,'flexible_templates_6_differential_translucent_14_column_4_color','#ff555f'),(144428,4128,'_flexible_templates_6_differential_translucent_14_column_4_color','field_62590c30df011'),(144429,4128,'flexible_templates_6_differential_translucent_14_column_5','Always'),(144430,4128,'_flexible_templates_6_differential_translucent_14_column_5','field_62590c30df013'),(144431,4128,'flexible_templates_6_differential_translucent_14_column_5_color','#24c1ff'),(144432,4128,'_flexible_templates_6_differential_translucent_14_column_5_color','field_62590c30df014'),(144454,4129,'flexible_templates','a:8:{i:0;s:16:\"tek-teams-banner\";i:1;s:20:\"tek-teams-two-column\";i:2;s:14:\"tek-team-about\";i:3;s:21:\"tek-teams-development\";i:4;s:18:\"tek_teams_benifits\";i:5;s:17:\"tek-team-whats-is\";i:6;s:34:\"tek-teams-translucent-differential\";i:7;s:17:\"lets_talk_section\";}'),(144455,4129,'_flexible_templates','field_6254f4d84ef9b'),(144456,4129,'flexible_templates_0_image','4066'),(144457,4129,'_flexible_templates_0_image','field_6255038c2e6ae_field_6254fdc5efa2a'),(144458,4129,'flexible_templates_0_mob_image','4067'),(144459,4129,'_flexible_templates_0_mob_image','field_625503db2e6af_field_6254fdcbefa2b'),(144460,4129,'flexible_templates_0_icon','4068'),(144461,4129,'_flexible_templates_0_icon','field_6255095042ef2_field_62550482480cb'),(144462,4129,'flexible_templates_0_heading','TEKTeams'),(144463,4129,'_flexible_templates_0_heading','field_6255096442ef3_field_6254fdb2efa27'),(144464,4129,'flexible_templates_0_sub_heading','TEK™ WORLD'),(144465,4129,'_flexible_templates_0_sub_heading','field_6255097642ef4_field_6254fdbaefa28'),(144466,4129,'flexible_templates_1_heading','Gain access to top 1% tech talent with a trusted partner that delivers cloud native solutions and value.'),(144467,4129,'_flexible_templates_1_heading','field_62551ac3a6f96_field_6254fdb2efa27'),(144468,4129,'flexible_templates_1_sub_heading','THE TEAM YOU NEED'),(144469,4129,'_flexible_templates_1_sub_heading','field_62551ae4a6f97_field_6254fdbaefa28'),(144470,4129,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(144471,4129,'_flexible_templates_1_cta','field_62551b56a6f98_field_62551b3e101c4'),(144472,4129,'flexible_templates_1_copy','The best technology. The best people. Access tailored software engineering teams with industry-specific experience without the hassle of hiring and maintaining internal teams. We understand how hard it is to acquire and retain top talent, and we take the pressure off HR. Focus on your business while we take lead for the delivery and execution of the project.'),(144473,4129,'_flexible_templates_1_copy','field_62551b74a6f99_field_6254fdc0efa29'),(144474,4129,'flexible_templates_2_image','4069'),(144475,4129,'_flexible_templates_2_image','field_625523de9609f_field_6254fdc5efa2a'),(144476,4129,'flexible_templates_2_mob_image','4070'),(144477,4129,'_flexible_templates_2_mob_image','field_625523f4960a0_field_6254fdcbefa2b'),(144478,4129,'flexible_templates_2_icon','4071'),(144479,4129,'_flexible_templates_2_icon','field_6255246d960a1_field_62550482480cb'),(144480,4129,'flexible_templates_2_heading','What are TEKTeams?'),(144481,4129,'_flexible_templates_2_heading','field_62552482960a2_field_6254fdb2efa27'),(144482,4129,'flexible_templates_2_copy','TEKTeams are your dedicated development teams built on Translucent principals that, as part of the TEK ecosystem, combine trust, processes, people, and technology to deliver value.\r\n
\r\nTranslucent has created a process that brings together the best people in the industry with various skills to develop and maintain the highest quality software. \r\n
\r\nA perfect combination of roles, talent, skillset, and the right work environment.TEKTeams provide the precise expertise your organization needs to execute a project successfully.\r\n
\r\n'),(144483,4129,'_flexible_templates_2_copy','field_625525b15629c'),(144484,4129,'flexible_templates_2_content_right','Our onshore/nearshore model combines resources across the Americas to overcome challenges your project might encounter; we work closely alongside your company staff to attain your business goals. \r\n
\r\nIncrease the number of resources you have on hand to help you develop and manage intelligent applications and platforms. \r\n
\r\nTEKTeams are the most cost-effective way to get the talent you need for your cloud native projects without taking up all of your time or budget.'),(144485,4129,'_flexible_templates_2_content_right','field_625525ba5629d'),(144486,4129,'flexible_templates_3_image','4072'),(144487,4129,'_flexible_templates_3_image','field_62552ada52711_field_6254fdc5efa2a'),(144488,4129,'flexible_templates_3_mob_image','4073'),(144489,4129,'_flexible_templates_3_mob_image','field_62552aed52712_field_6254fdcbefa2b'),(144490,4129,'flexible_templates_3_icon','4074'),(144491,4129,'_flexible_templates_3_icon','field_62552b7652713_field_62550482480cb'),(144492,4129,'flexible_templates_3_heading','Get started with the best resources for your project'),(144493,4129,'_flexible_templates_3_heading','field_62552baf52715_field_6254fdb2efa27'),(144494,4129,'flexible_templates_3_copy','Our tailored software engineering teams help your business develop and manage smarter apps. We match business goals to the right technology and teams to drive better results. With TEKTeams you get access to the best of the best resources for your cloud native projects at a price you can afford, with the capacity to scale as needed, according to your demands. Here is what to expect working with TEKTeams:'),(144495,4129,'_flexible_templates_3_copy','field_62552b8552714_field_6254fdc0efa29'),(144496,4129,'flexible_templates_3_development_team_steps_0_icon','4075'),(144497,4129,'_flexible_templates_3_development_team_steps_0_icon','field_62552cdb784a9_field_62550482480cb'),(144498,4129,'flexible_templates_3_development_team_steps_0_heading','A trusted tech partner'),(144499,4129,'_flexible_templates_3_development_team_steps_0_heading','field_62552ced784aa_field_6254fdb2efa27'),(144500,4129,'flexible_templates_3_development_team_steps_0_copy','

Increase your workforce by partnering with the top 1% teams tailored to your business needs

\r\n

We will explain and document the entire development process and make sure to meet business and project objectives

\r\n

Scale your teams as needed with a global network united as one

'),(144501,4129,'_flexible_templates_3_development_team_steps_0_copy','field_62552cfe784ab_field_6254fdc0efa29'),(144502,4129,'flexible_templates_3_development_team_steps_1_icon','4076'),(144503,4129,'_flexible_templates_3_development_team_steps_1_icon','field_62552cdb784a9_field_62550482480cb'),(144504,4129,'flexible_templates_3_development_team_steps_1_heading','Break down vision into requirements'),(144505,4129,'_flexible_templates_3_development_team_steps_1_heading','field_62552ced784aa_field_6254fdb2efa27'),(144506,4129,'flexible_templates_3_development_team_steps_1_copy','

We will validate your idea with a future vision that is in sync with the realities that your business is currently facing

\r\n

Cloud native solutions make it possible to work within clients\' budgets

\r\n

Planning, execution, support, best practices, and experience in breaking down the concept into a user stories tech road map

'),(144507,4129,'_flexible_templates_3_development_team_steps_1_copy','field_62552cfe784ab_field_6254fdc0efa29'),(144508,4129,'flexible_templates_3_development_team_steps_2_icon','4077'),(144509,4129,'_flexible_templates_3_development_team_steps_2_icon','field_62552cdb784a9_field_62550482480cb'),(144510,4129,'flexible_templates_3_development_team_steps_2_heading','Build your team and start innovating'),(144511,4129,'_flexible_templates_3_development_team_steps_2_heading','field_62552ced784aa_field_6254fdb2efa27'),(144512,4129,'flexible_templates_3_development_team_steps_2_copy',' The Team You Need For Your Cloud Native Project:\r\n

Expanding your workforce is easier than you think, with TEKTeams, you can quickly and affordably grow your company with teams to cover all of your business needs

\r\n

With the right team behind your project, you\'ll get better results, more quickly

\r\n\r\n'),(144513,4129,'_flexible_templates_3_development_team_steps_2_copy','field_62552cfe784ab_field_6254fdc0efa29'),(144514,4129,'flexible_templates_3_development_team_steps','3'),(144515,4129,'_flexible_templates_3_development_team_steps','field_62552cbb784a8'),(144516,4129,'flexible_templates_3_cta','a:3:{s:5:\"title\";s:11:\"Gain Access\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(144517,4129,'_flexible_templates_3_cta','field_62552c6a784a7_field_62551b3e101c4'),(144518,4129,'flexible_templates_4_image','4078'),(144519,4129,'_flexible_templates_4_image','field_625538ef16bb0_field_6254fdc5efa2a'),(144520,4129,'flexible_templates_4_mob_image','4079'),(144521,4129,'_flexible_templates_4_mob_image','field_6255391616bb1_field_6254fdcbefa2b'),(144522,4129,'flexible_templates_4_icon','4080'),(144523,4129,'_flexible_templates_4_icon','field_62553d28bca93_field_62550482480cb'),(144524,4129,'flexible_templates_4_heading','Benefits of TEKTeams'),(144525,4129,'_flexible_templates_4_heading','field_6255397e16bb2_field_6254fdb2efa27'),(144526,4129,'flexible_templates_4_development_team_steps_0_icon','4086'),(144527,4129,'_flexible_templates_4_development_team_steps_0_icon','field_625539a816bb4_field_62550482480cb'),(144528,4129,'flexible_templates_4_development_team_steps_0_heading','Fully Managed'),(144529,4129,'_flexible_templates_4_development_team_steps_0_heading','field_625539a816bb5_field_6254fdb2efa27'),(144530,4129,'flexible_templates_4_development_team_steps_0_copy','Translucent is responsible for hiring, managing, and delivering technical expertise from start to finish. Avoid hiring and team management issues.'),(144531,4129,'_flexible_templates_4_development_team_steps_0_copy','field_625539a816bb6_field_6254fdc0efa29'),(144532,4129,'flexible_templates_4_development_team_steps_1_icon','4085'),(144533,4129,'_flexible_templates_4_development_team_steps_1_icon','field_625539a816bb4_field_62550482480cb'),(144534,4129,'flexible_templates_4_development_team_steps_1_heading','Remote'),(144535,4129,'_flexible_templates_4_development_team_steps_1_heading','field_625539a816bb5_field_6254fdb2efa27'),(144536,4129,'flexible_templates_4_development_team_steps_1_copy','Completely remote. Save office space and gain more time for your employees. Over the last 12 years, we have perfected a remote software development system called TEKProcess.'),(144537,4129,'_flexible_templates_4_development_team_steps_1_copy','field_625539a816bb6_field_6254fdc0efa29'),(144538,4129,'flexible_templates_4_development_team_steps_2_icon','4084'),(144539,4129,'_flexible_templates_4_development_team_steps_2_icon','field_625539a816bb4_field_62550482480cb'),(144540,4129,'flexible_templates_4_development_team_steps_2_heading','Access to Translucent Experts'),(144541,4129,'_flexible_templates_4_development_team_steps_2_heading','field_625539a816bb5_field_6254fdb2efa27'),(144542,4129,'flexible_templates_4_development_team_steps_2_copy','Part of working with TEKTeams is access to our software architects and tech leads at no extra cost.'),(144543,4129,'_flexible_templates_4_development_team_steps_2_copy','field_625539a816bb6_field_6254fdc0efa29'),(144544,4129,'flexible_templates_4_development_team_steps_3_icon','4083'),(144545,4129,'_flexible_templates_4_development_team_steps_3_icon','field_625539a816bb4_field_62550482480cb'),(144546,4129,'flexible_templates_4_development_team_steps_3_heading','Access to Top Tech Talent'),(144547,4129,'_flexible_templates_4_development_team_steps_3_heading','field_625539a816bb5_field_6254fdb2efa27'),(144548,4129,'flexible_templates_4_development_team_steps_3_copy','Our proven hiring and continuous employee improvement processes ensure that only top talent works on each project.'),(144549,4129,'_flexible_templates_4_development_team_steps_3_copy','field_625539a816bb6_field_6254fdc0efa29'),(144550,4129,'flexible_templates_4_development_team_steps_4_icon','4082'),(144551,4129,'_flexible_templates_4_development_team_steps_4_icon','field_625539a816bb4_field_62550482480cb'),(144552,4129,'flexible_templates_4_development_team_steps_4_heading','Team Scalability'),(144553,4129,'_flexible_templates_4_development_team_steps_4_heading','field_625539a816bb5_field_6254fdb2efa27'),(144554,4129,'flexible_templates_4_development_team_steps_4_copy','On-demand resources are ready when you need to scale the team to meet business demands.'),(144555,4129,'_flexible_templates_4_development_team_steps_4_copy','field_625539a816bb6_field_6254fdc0efa29'),(144556,4129,'flexible_templates_4_development_team_steps_5_icon','4081'),(144557,4129,'_flexible_templates_4_development_team_steps_5_icon','field_625539a816bb4_field_62550482480cb'),(144558,4129,'flexible_templates_4_development_team_steps_5_heading','Start Your Journey Now'),(144559,4129,'_flexible_templates_4_development_team_steps_5_heading','field_625539a816bb5_field_6254fdb2efa27'),(144560,4129,'flexible_templates_4_development_team_steps_5_copy','Our TEKTeams are ready to help you now.'),(144561,4129,'_flexible_templates_4_development_team_steps_5_copy','field_625539a816bb6_field_6254fdc0efa29'),(144562,4129,'flexible_templates_4_development_team_steps','6'),(144563,4129,'_flexible_templates_4_development_team_steps','field_625539a816bb3'),(144564,4129,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:13:\"Start Scaling\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(144565,4129,'_flexible_templates_4_cta','field_625539ce16bb7_field_62551b3e101c4'),(144566,4129,'flexible_templates_5_image','4087'),(144567,4129,'_flexible_templates_5_image','field_62553e7d5dd54_field_6254fdc5efa2a'),(144568,4129,'flexible_templates_5_mob_image','4088'),(144569,4129,'_flexible_templates_5_mob_image','field_62553eab5dd55_field_6254fdcbefa2b'),(144570,4129,'flexible_templates_5_icon','4089'),(144571,4129,'_flexible_templates_5_icon','field_62553eee5dd56_field_62550482480cb'),(144572,4129,'flexible_templates_5_heading','The team you need for your cloud native project'),(144573,4129,'_flexible_templates_5_heading','field_62553f075dd57_field_6254fdb2efa27'),(144574,4129,'flexible_templates_5_heading_mobile','The team you need for your cloud native project'),(144575,4129,'_flexible_templates_5_heading_mobile','field_62553f185dd58'),(144576,4129,'flexible_templates_5_copy','We help companies build and scale smart applications, working together to achieve the best results by pairing them with our award-winning team of experts. That includes project managers, senior developers, and QA specialists who have been handpicked to execute on specific goals.'),(144577,4129,'_flexible_templates_5_copy','field_62553f315dd59_field_6254fdc0efa29'),(144578,4129,'flexible_templates_5_development_team_steps_0_icon','4090'),(144579,4129,'_flexible_templates_5_development_team_steps_0_icon','field_625540b262816_field_62550482480cb'),(144580,4129,'flexible_templates_5_development_team_steps_0_heading','Frontend Engineers'),(144581,4129,'_flexible_templates_5_development_team_steps_0_heading','field_625540b262817_field_6254fdb2efa27'),(144582,4129,'flexible_templates_5_development_team_steps_0_copy','Responsible for the development of the user interface of an application. They are always in demand, but with TEKTeams you get access on demand. '),(144583,4129,'_flexible_templates_5_development_team_steps_0_copy','field_625540b262818_field_6254fdc0efa29'),(144584,4129,'flexible_templates_5_development_team_steps_1_icon','4091'),(144585,4129,'_flexible_templates_5_development_team_steps_1_icon','field_625540b262816_field_62550482480cb'),(144586,4129,'flexible_templates_5_development_team_steps_1_heading','QA Engineers'),(144587,4129,'_flexible_templates_5_development_team_steps_1_heading','field_625540b262817_field_6254fdb2efa27'),(144588,4129,'flexible_templates_5_development_team_steps_1_copy','The quality of a product is vital to its success, and without a quality assurance engineer, that quality is compromised. Our QA engineers ensure each product is thoroughly tested to provide the best possible user experience.'),(144589,4129,'_flexible_templates_5_development_team_steps_1_copy','field_625540b262818_field_6254fdc0efa29'),(144590,4129,'flexible_templates_5_development_team_steps_2_icon','4092'),(144591,4129,'_flexible_templates_5_development_team_steps_2_icon','field_625540b262816_field_62550482480cb'),(144592,4129,'flexible_templates_5_development_team_steps_2_heading','Business Analysts'),(144593,4129,'_flexible_templates_5_development_team_steps_2_heading','field_625540b262817_field_6254fdb2efa27'),(144594,4129,'flexible_templates_5_development_team_steps_2_copy','These agile workers help bridge the gap between the IT team and the business, improving overall efficiency through data analysis of processes, products, services, and software.'),(144595,4129,'_flexible_templates_5_development_team_steps_2_copy','field_625540b262818_field_6254fdc0efa29'),(144596,4129,'flexible_templates_5_development_team_steps_3_icon','4093'),(144597,4129,'_flexible_templates_5_development_team_steps_3_icon','field_625540b262816_field_62550482480cb'),(144598,4129,'flexible_templates_5_development_team_steps_3_heading','Backend Engineers'),(144599,4129,'_flexible_templates_5_development_team_steps_3_heading','field_625540b262817_field_6254fdb2efa27'),(144600,4129,'flexible_templates_5_development_team_steps_3_copy','Backend engineers build the structure of a software application. They work on designing, building, and maintaining the server components of web applications. '),(144601,4129,'_flexible_templates_5_development_team_steps_3_copy','field_625540b262818_field_6254fdc0efa29'),(144602,4129,'flexible_templates_5_development_team_steps_4_icon','4094'),(144603,4129,'_flexible_templates_5_development_team_steps_4_icon','field_625540b262816_field_62550482480cb'),(144604,4129,'flexible_templates_5_development_team_steps_4_heading','UX/UI Designers'),(144605,4129,'_flexible_templates_5_development_team_steps_4_heading','field_625540b262817_field_6254fdb2efa27'),(144606,4129,'flexible_templates_5_development_team_steps_4_copy','Responsible for creating user-friendly interfaces making complex technical products intuitive, simple, and engaging. '),(144607,4129,'_flexible_templates_5_development_team_steps_4_copy','field_625540b262818_field_6254fdc0efa29'),(144608,4129,'flexible_templates_5_development_team_steps_5_icon','4095'),(144609,4129,'_flexible_templates_5_development_team_steps_5_icon','field_625540b262816_field_62550482480cb'),(144610,4129,'flexible_templates_5_development_team_steps_5_heading','Product Owners'),(144611,4129,'_flexible_templates_5_development_team_steps_5_heading','field_625540b262817_field_6254fdb2efa27'),(144612,4129,'flexible_templates_5_development_team_steps_5_copy','Agile leaders of the development team, at the center of every development cycle. They will define stories, organize and prioritize backlogs, and monitor the entire development process.\r\n'),(144613,4129,'_flexible_templates_5_development_team_steps_5_copy','field_625540b262818_field_6254fdc0efa29'),(144614,4129,'flexible_templates_5_development_team_steps_6_icon','4096'),(144615,4129,'_flexible_templates_5_development_team_steps_6_icon','field_625540b262816_field_62550482480cb'),(144616,4129,'flexible_templates_5_development_team_steps_6_heading','Data/ML Engineers'),(144617,4129,'_flexible_templates_5_development_team_steps_6_heading','field_625540b262817_field_6254fdb2efa27'),(144618,4129,'flexible_templates_5_development_team_steps_6_copy','Highly skilled software engineers and data scientists who develop AI systems that use large data sets to research, design, and develop self-running software to automate predictive models.\r\n'),(144619,4129,'_flexible_templates_5_development_team_steps_6_copy','field_625540b262818_field_6254fdc0efa29'),(144620,4129,'flexible_templates_5_development_team_steps_7_icon','4097'),(144621,4129,'_flexible_templates_5_development_team_steps_7_icon','field_625540b262816_field_62550482480cb'),(144622,4129,'flexible_templates_5_development_team_steps_7_heading','SRE/DevOps Engineers'),(144623,4129,'_flexible_templates_5_development_team_steps_7_heading','field_625540b262817_field_6254fdb2efa27'),(144624,4129,'flexible_templates_5_development_team_steps_7_copy','DevOps engineers ensure that all development is done in line with the company\'s needs and potential future needs by streamlining the software creation, updates, and deployment process. This can help prevent wasting time and resources on features that are not needed or used.\r\n'),(144625,4129,'_flexible_templates_5_development_team_steps_7_copy','field_625540b262818_field_6254fdc0efa29'),(144626,4129,'flexible_templates_5_development_team_steps_8_icon','4098'),(144627,4129,'_flexible_templates_5_development_team_steps_8_icon','field_625540b262816_field_62550482480cb'),(144628,4129,'flexible_templates_5_development_team_steps_8_heading','Scrum Masters'),(144629,4129,'_flexible_templates_5_development_team_steps_8_heading','field_625540b262817_field_6254fdb2efa27'),(144630,4129,'flexible_templates_5_development_team_steps_8_copy','These team leaders are are accountable for getting teams to perform at their highest levels by managing the process. They will facilitating meetings, improving workflow by removing any bottlenecks, and work with the product owner to ensure the product backlog is in good shape and ready for the next sprint.'),(144631,4129,'_flexible_templates_5_development_team_steps_8_copy','field_625540b262818_field_6254fdc0efa29'),(144632,4129,'flexible_templates_5_development_team_steps','9'),(144633,4129,'_flexible_templates_5_development_team_steps','field_625540b262815'),(144634,4129,'flexible_templates_5_cta','a:3:{s:5:\"title\";s:15:\"Build Your Team\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(144635,4129,'_flexible_templates_5_cta','field_6255410462819_field_62551b3e101c4'),(144636,4129,'flexible_templates_6_heading','A better chance at success with TEKTeams'),(144637,4129,'_flexible_templates_6_heading','field_62554b91172d7_field_6254fdb2efa27'),(144638,4129,'flexible_templates_6_sub_heading','Dev Shop vs Offshore vs In-house vs TEKTeams'),(144639,4129,'_flexible_templates_6_sub_heading','field_62554ba5172d8_field_6254fdbaefa28'),(144640,4129,'flexible_templates_6_icon','4099'),(144641,4129,'_flexible_templates_6_icon','field_62554d69172e1_field_62550482480cb'),(144642,4129,'flexible_templates_6_differential_translucent_header_0_heading','Your Needs'),(144643,4129,'_flexible_templates_6_differential_translucent_header_0_heading','field_625688668727a'),(144644,4129,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(144645,4129,'_flexible_templates_6_differential_translucent_header_0_color','field_62568e42de80b'),(144646,4129,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(144647,4129,'_flexible_templates_6_differential_translucent_header_1_heading','field_625688668727a'),(144648,4129,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(144649,4129,'_flexible_templates_6_differential_translucent_header_1_color','field_62568e42de80b'),(144650,4129,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore Teams'),(144651,4129,'_flexible_templates_6_differential_translucent_header_2_heading','field_625688668727a'),(144652,4129,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(144653,4129,'_flexible_templates_6_differential_translucent_header_2_color','field_62568e42de80b'),(144654,4129,'flexible_templates_6_differential_translucent_header_3_heading','Hiring In-house Developers'),(144655,4129,'_flexible_templates_6_differential_translucent_header_3_heading','field_625688668727a'),(144656,4129,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(144657,4129,'_flexible_templates_6_differential_translucent_header_3_color','field_62568e42de80b'),(144658,4129,'flexible_templates_6_differential_translucent_header_4_heading','TEKTeams'),(144659,4129,'_flexible_templates_6_differential_translucent_header_4_heading','field_625688668727a'),(144660,4129,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(144661,4129,'_flexible_templates_6_differential_translucent_header_4_color','field_62568e42de80b'),(144662,4129,'flexible_templates_6_differential_translucent_header','5'),(144663,4129,'_flexible_templates_6_differential_translucent_header','field_6256884687279'),(144664,4129,'flexible_templates_6_differential_translucent_0_heading_1','1'),(144665,4129,'_flexible_templates_6_differential_translucent_0_heading_1','field_625689c138821'),(144666,4129,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(144667,4129,'_flexible_templates_6_differential_translucent_0_column_1','field_62554d45172dc'),(144668,4129,'flexible_templates_6_differential_translucent_0_heading_2','Working with a Dev Shop'),(144669,4129,'_flexible_templates_6_differential_translucent_0_heading_2','field_62568a29727b5'),(144670,4129,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(144671,4129,'_flexible_templates_6_differential_translucent_0_column_2','field_62554d4a172dd'),(144672,4129,'flexible_templates_6_differential_translucent_0_column_2_color','#7080a7'),(144673,4129,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62554fcda0e79'),(144674,4129,'flexible_templates_6_differential_translucent_0_heading_3','3'),(144675,4129,'_flexible_templates_6_differential_translucent_0_heading_3','field_62568a30727b6'),(144676,4129,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(144677,4129,'_flexible_templates_6_differential_translucent_0_column_3','field_62554d4d172de'),(144678,4129,'flexible_templates_6_differential_translucent_0_column_3_color','#ff555f'),(144679,4129,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62554ff6a0e7a'),(144680,4129,'flexible_templates_6_differential_translucent_0_heading_4','4'),(144681,4129,'_flexible_templates_6_differential_translucent_0_heading_4','field_62568a37727b7'),(144682,4129,'flexible_templates_6_differential_translucent_0_column_4','Always'),(144683,4129,'_flexible_templates_6_differential_translucent_0_column_4','field_62554d4f172df'),(144684,4129,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(144685,4129,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62555028a0e7c'),(144686,4129,'flexible_templates_6_differential_translucent_0_heading_5','5'),(144687,4129,'_flexible_templates_6_differential_translucent_0_heading_5','field_62568a40727b8'),(144688,4129,'flexible_templates_6_differential_translucent_0_column_5','Always'),(144689,4129,'_flexible_templates_6_differential_translucent_0_column_5','field_62555011a0e7b'),(144690,4129,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(144691,4129,'_flexible_templates_6_differential_translucent_0_column_5_color','field_6255503aa0e7d'),(144692,4129,'flexible_templates_6_differential_translucent_1_heading_1','6'),(144693,4129,'_flexible_templates_6_differential_translucent_1_heading_1','field_625689c138821'),(144694,4129,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (speed to market)'),(144695,4129,'_flexible_templates_6_differential_translucent_1_column_1','field_62554d45172dc'),(144696,4129,'flexible_templates_6_differential_translucent_1_heading_2','7'),(144697,4129,'_flexible_templates_6_differential_translucent_1_heading_2','field_62568a29727b5'),(144698,4129,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(144699,4129,'_flexible_templates_6_differential_translucent_1_column_2','field_62554d4a172dd'),(144700,4129,'flexible_templates_6_differential_translucent_1_column_2_color','#ff555f'),(144701,4129,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62554fcda0e79'),(144702,4129,'flexible_templates_6_differential_translucent_1_heading_3','8'),(144703,4129,'_flexible_templates_6_differential_translucent_1_heading_3','field_62568a30727b6'),(144704,4129,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(144705,4129,'_flexible_templates_6_differential_translucent_1_column_3','field_62554d4d172de'),(144706,4129,'flexible_templates_6_differential_translucent_1_column_3_color','#7080a7'),(144707,4129,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62554ff6a0e7a'),(144708,4129,'flexible_templates_6_differential_translucent_1_heading_4','9'),(144709,4129,'_flexible_templates_6_differential_translucent_1_heading_4','field_62568a37727b7'),(144710,4129,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(144711,4129,'_flexible_templates_6_differential_translucent_1_column_4','field_62554d4f172df'),(144712,4129,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(144713,4129,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62555028a0e7c'),(144714,4129,'flexible_templates_6_differential_translucent_1_heading_5','10'),(144715,4129,'_flexible_templates_6_differential_translucent_1_heading_5','field_62568a40727b8'),(144716,4129,'flexible_templates_6_differential_translucent_1_column_5','Always'),(144717,4129,'_flexible_templates_6_differential_translucent_1_column_5','field_62555011a0e7b'),(144718,4129,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(144719,4129,'_flexible_templates_6_differential_translucent_1_column_5_color','field_6255503aa0e7d'),(144720,4129,'flexible_templates_6_differential_translucent_2_heading_1','11'),(144721,4129,'_flexible_templates_6_differential_translucent_2_heading_1','field_625689c138821'),(144722,4129,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(144723,4129,'_flexible_templates_6_differential_translucent_2_column_1','field_62554d45172dc'),(144724,4129,'flexible_templates_6_differential_translucent_2_heading_2','12'),(144725,4129,'_flexible_templates_6_differential_translucent_2_heading_2','field_62568a29727b5'),(144726,4129,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(144727,4129,'_flexible_templates_6_differential_translucent_2_column_2','field_62554d4a172dd'),(144728,4129,'flexible_templates_6_differential_translucent_2_column_2_color','#7080a7'),(144729,4129,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62554fcda0e79'),(144730,4129,'flexible_templates_6_differential_translucent_2_heading_3','13'),(144731,4129,'_flexible_templates_6_differential_translucent_2_heading_3','field_62568a30727b6'),(144732,4129,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(144733,4129,'_flexible_templates_6_differential_translucent_2_column_3','field_62554d4d172de'),(144734,4129,'flexible_templates_6_differential_translucent_2_column_3_color','#ff555f'),(144735,4129,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62554ff6a0e7a'),(144736,4129,'flexible_templates_6_differential_translucent_2_heading_4','14'),(144737,4129,'_flexible_templates_6_differential_translucent_2_heading_4','field_62568a37727b7'),(144738,4129,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(144739,4129,'_flexible_templates_6_differential_translucent_2_column_4','field_62554d4f172df'),(144740,4129,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(144741,4129,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62555028a0e7c'),(144742,4129,'flexible_templates_6_differential_translucent_2_heading_5','15'),(144743,4129,'_flexible_templates_6_differential_translucent_2_heading_5','field_62568a40727b8'),(144744,4129,'flexible_templates_6_differential_translucent_2_column_5','Always'),(144745,4129,'_flexible_templates_6_differential_translucent_2_column_5','field_62555011a0e7b'),(144746,4129,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(144747,4129,'_flexible_templates_6_differential_translucent_2_column_5_color','field_6255503aa0e7d'),(144748,4129,'flexible_templates_6_differential_translucent_3_heading_1','16'),(144749,4129,'_flexible_templates_6_differential_translucent_3_heading_1','field_625689c138821'),(144750,4129,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(144751,4129,'_flexible_templates_6_differential_translucent_3_column_1','field_62554d45172dc'),(144752,4129,'flexible_templates_6_differential_translucent_3_heading_2','17'),(144753,4129,'_flexible_templates_6_differential_translucent_3_heading_2','field_62568a29727b5'),(144754,4129,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(144755,4129,'_flexible_templates_6_differential_translucent_3_column_2','field_62554d4a172dd'),(144756,4129,'flexible_templates_6_differential_translucent_3_column_2_color','#7080a7'),(144757,4129,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62554fcda0e79'),(144758,4129,'flexible_templates_6_differential_translucent_3_heading_3','18'),(144759,4129,'_flexible_templates_6_differential_translucent_3_heading_3','field_62568a30727b6'),(144760,4129,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(144761,4129,'_flexible_templates_6_differential_translucent_3_column_3','field_62554d4d172de'),(144762,4129,'flexible_templates_6_differential_translucent_3_column_3_color','#ff555f'),(144763,4129,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62554ff6a0e7a'),(144764,4129,'flexible_templates_6_differential_translucent_3_heading_4','19'),(144765,4129,'_flexible_templates_6_differential_translucent_3_heading_4','field_62568a37727b7'),(144766,4129,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(144767,4129,'_flexible_templates_6_differential_translucent_3_column_4','field_62554d4f172df'),(144768,4129,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(144769,4129,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62555028a0e7c'),(144770,4129,'flexible_templates_6_differential_translucent_3_heading_5','Working with Translucent'),(144771,4129,'_flexible_templates_6_differential_translucent_3_heading_5','field_62568a40727b8'),(144772,4129,'flexible_templates_6_differential_translucent_3_column_5','Always'),(144773,4129,'_flexible_templates_6_differential_translucent_3_column_5','field_62555011a0e7b'),(144774,4129,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(144775,4129,'_flexible_templates_6_differential_translucent_3_column_5_color','field_6255503aa0e7d'),(144776,4129,'flexible_templates_6_differential_translucent','5'),(144777,4129,'_flexible_templates_6_differential_translucent','field_62554c30172da'),(144778,4129,'flexible_templates_7_heading','Be smart. Be efficient. Be agile.'),(144779,4129,'_flexible_templates_7_heading','field_625565e14146d_field_6254fdb2efa27'),(144780,4129,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(144781,4129,'_flexible_templates_7_cta','field_625565fa4146e_field_62551b3e101c4'),(144782,4129,'flexible_templates_6_differential_translucent_4_heading_1','20'),(144783,4129,'_flexible_templates_6_differential_translucent_4_heading_1','field_625689c138821'),(144784,4129,'flexible_templates_6_differential_translucent_4_column_1','No Recruiting Fees'),(144785,4129,'_flexible_templates_6_differential_translucent_4_column_1','field_62554d45172dc'),(144786,4129,'flexible_templates_6_differential_translucent_4_heading_2','21'),(144787,4129,'_flexible_templates_6_differential_translucent_4_heading_2','field_62568a29727b5'),(144788,4129,'flexible_templates_6_differential_translucent_4_column_2','Always'),(144789,4129,'_flexible_templates_6_differential_translucent_4_column_2','field_62554d4a172dd'),(144790,4129,'flexible_templates_6_differential_translucent_4_column_2_color','#28d9cb'),(144791,4129,'_flexible_templates_6_differential_translucent_4_column_2_color','field_62554fcda0e79'),(144792,4129,'flexible_templates_6_differential_translucent_4_heading_3','22'),(144793,4129,'_flexible_templates_6_differential_translucent_4_heading_3','field_62568a30727b6'),(144794,4129,'flexible_templates_6_differential_translucent_4_column_3','Sometimes'),(144795,4129,'_flexible_templates_6_differential_translucent_4_column_3','field_62554d4d172de'),(144796,4129,'flexible_templates_6_differential_translucent_4_column_3_color','#7080a7'),(144797,4129,'_flexible_templates_6_differential_translucent_4_column_3_color','field_62554ff6a0e7a'),(144798,4129,'flexible_templates_6_differential_translucent_4_heading_4','23'),(144799,4129,'_flexible_templates_6_differential_translucent_4_heading_4','field_62568a37727b7'),(144800,4129,'flexible_templates_6_differential_translucent_4_column_4','Rare'),(144801,4129,'_flexible_templates_6_differential_translucent_4_column_4','field_62554d4f172df'),(144802,4129,'flexible_templates_6_differential_translucent_4_column_4_color','#ff555f'),(144803,4129,'_flexible_templates_6_differential_translucent_4_column_4_color','field_62555028a0e7c'),(144804,4129,'flexible_templates_6_differential_translucent_4_heading_5','24'),(144805,4129,'_flexible_templates_6_differential_translucent_4_heading_5','field_62568a40727b8'),(144806,4129,'flexible_templates_6_differential_translucent_4_column_5','Always'),(144807,4129,'_flexible_templates_6_differential_translucent_4_column_5','field_62555011a0e7b'),(144808,4129,'flexible_templates_6_differential_translucent_4_column_5_color','#24c1ff'),(144809,4129,'_flexible_templates_6_differential_translucent_4_column_5_color','field_6255503aa0e7d'),(144900,4131,'_wp_attached_file','2022/05/fundopattern.png'),(144901,4131,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:845;s:4:\"file\";s:24:\"2022/05/fundopattern.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"fundopattern-300x132.png\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"fundopattern-1024x451.png\";s:5:\"width\";i:1024;s:6:\"height\";i:451;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"fundopattern-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:24:\"fundopattern-768x338.png\";s:5:\"width\";i:768;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"fundopattern-1536x676.png\";s:5:\"width\";i:1536;s:6:\"height\";i:676;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:24:\"fundopattern-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(144902,4131,'_imagify_optimization_level','0'),(144903,4131,'_imagify_status','error'),(144904,4131,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(144911,4132,'_wp_attached_file','2022/05/fundopattern-services.png'),(144912,4132,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:845;s:4:\"file\";s:33:\"2022/05/fundopattern-services.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"fundopattern-services-300x132.png\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"fundopattern-services-1024x451.png\";s:5:\"width\";i:1024;s:6:\"height\";i:451;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"fundopattern-services-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:\"fundopattern-services-768x338.png\";s:5:\"width\";i:768;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"fundopattern-services-1536x676.png\";s:5:\"width\";i:1536;s:6:\"height\";i:676;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:33:\"fundopattern-services-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(144913,4132,'_imagify_optimization_level','0'),(144914,4132,'_imagify_status','error'),(144915,4132,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(144916,4133,'_wp_attached_file','revslider/slider-02-01-2022/banner1.png'),(144917,4133,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:980;s:4:\"file\";s:39:\"revslider/slider-02-01-2022/banner1.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"banner1-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:20:\"banner1-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:19:\"banner1-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:19:\"banner1-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:20:\"banner1-1536x784.png\";s:5:\"width\";i:1536;s:6:\"height\";i:784;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:19:\"banner1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(144918,4134,'_wp_attached_file','revslider/slider-02-01-2022/Group-102@3x.png'),(144919,4134,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:78;s:6:\"height\";i:46;s:4:\"file\";s:44:\"revslider/slider-02-01-2022/Group-102@3x.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(144920,4135,'_wp_attached_file','revslider/slider-02-01-2022/banner2.png'),(144921,4135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:980;s:4:\"file\";s:39:\"revslider/slider-02-01-2022/banner2.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"banner2-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:20:\"banner2-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:19:\"banner2-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:19:\"banner2-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:20:\"banner2-1536x784.png\";s:5:\"width\";i:1536;s:6:\"height\";i:784;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:19:\"banner2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(144922,4136,'_wp_attached_file','revslider/slider-02-01-2022/home31.png'),(144923,4136,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:980;s:4:\"file\";s:38:\"revslider/slider-02-01-2022/home31.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"home31-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:19:\"home31-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:18:\"home31-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:18:\"home31-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:19:\"home31-1536x784.png\";s:5:\"width\";i:1536;s:6:\"height\";i:784;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:18:\"home31-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(144924,4137,'_wp_attached_file','revslider/slider-02-01-2022/home4.png'),(144925,4137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:980;s:4:\"file\";s:37:\"revslider/slider-02-01-2022/home4.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"home4-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:18:\"home4-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:17:\"home4-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:\"home4-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:18:\"home4-1536x784.png\";s:5:\"width\";i:1536;s:6:\"height\";i:784;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:17:\"home4-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(144989,4133,'_imagify_optimization_level','0'),(144990,4133,'_imagify_status','error'),(144991,4133,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(144992,4134,'_imagify_optimization_level','0'),(144993,4134,'_imagify_status','error'),(144994,4134,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(144995,4135,'_imagify_optimization_level','0'),(144996,4135,'_imagify_status','error'),(144997,4135,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(144998,4136,'_imagify_optimization_level','0'),(144999,4136,'_imagify_status','error'),(145000,4136,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(145001,4137,'_imagify_optimization_level','0'),(145002,4137,'_imagify_status','error'),(145003,4137,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(145037,4140,'flexible_templates','a:9:{i:0;s:19:\"cloud_native_banner\";i:1;s:35:\"cloud_native_expert_dedicated_teams\";i:2;s:39:\"cloud_native_solving_digital_challenges\";i:3;s:26:\"cloud_native_scale_demands\";i:4;s:22:\"cloud_native_ecosystem\";i:5;s:31:\"cloud_native_technology_partner\";i:6;s:37:\"cloud_native_translucent_differential\";i:7;s:26:\"cloud_nature_future_vision\";i:8;s:17:\"lets_talk_section\";}'),(145038,4140,'_flexible_templates','field_6254f4d84ef9b'),(145039,4140,'flexible_templates_0_image','4030'),(145040,4140,'_flexible_templates_0_image','field_62569b35f7c63_field_6254fdc5efa2a'),(145041,4140,'flexible_templates_0_icon','4013'),(145042,4140,'_flexible_templates_0_icon','field_62569b69f7c64_field_62550482480cb'),(145043,4140,'flexible_templates_0_heading','Solve Digital Challenges with a Complete Cloud Native Solution'),(145044,4140,'_flexible_templates_0_heading','field_62569b87f7c65_field_6254fdb2efa27'),(145045,4140,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(145046,4140,'_flexible_templates_0_sub_heading','field_62569ba5f7c66_field_6254fdbaefa28'),(145047,4140,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:23:\"Transform Your Business\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(145048,4140,'_flexible_templates_0_cta','field_62569bcff7c67_field_62551b3e101c4'),(145049,4140,'flexible_templates_1_image','4031'),(145050,4140,'_flexible_templates_1_image','field_6256a05dda66c_field_6254fdc5efa2a'),(145051,4140,'flexible_templates_1_heading','Expert dedicated teams for your cloud native project.'),(145052,4140,'_flexible_templates_1_heading','field_62569f6d3c0ad_field_6254fdb2efa27'),(145053,4140,'flexible_templates_1_sub_heading','DATA-DRIVEN TRUSTED TECHNOLOGY PARTNER'),(145054,4140,'_flexible_templates_1_sub_heading','field_62569f7a3c0ae_field_6254fdbaefa28'),(145055,4140,'flexible_templates_1_copy','Our expert software engineering teams develop intelligent apps for fintech, healthcare, automotive, and any other data-driven journey, with over 10 years of experience in large scale complex project. Enable your business to reflect its operations through technology while helping it become more dynamic, secure, and easier to scale by increasing speed to market. As a pioneer in cloud native application development we have a proven track record of solving digital transformation challenges for enterprises.'),(145056,4140,'_flexible_templates_1_copy','field_6256a175dc200_field_6254fdc0efa29'),(145057,4140,'flexible_templates_1_copy_long',''),(145058,4140,'_flexible_templates_1_copy_long','field_6256a026da66a'),(145059,4140,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:12:\"How We Do It\";s:3:\"url\";s:36:\"https://translucent.local/tek-world/\";s:6:\"target\";s:0:\"\";}'),(145060,4140,'_flexible_templates_1_cta','field_6256a03ada66b_field_62551b3e101c4'),(145061,4140,'flexible_templates_2_heading','Three paths to Cloud Native'),(145062,4140,'_flexible_templates_2_heading','field_6256a640dea7c_field_6254fdb2efa27'),(145063,4140,'flexible_templates_2_sub_heading','SOLVING DIGITAL CHALLENGES'),(145064,4140,'_flexible_templates_2_sub_heading','field_6256a66cdea7d_field_6254fdbaefa28'),(145065,4140,'flexible_templates_2_posts_grid_0_icon','4033'),(145066,4140,'_flexible_templates_2_posts_grid_0_icon','field_6256a6c0dea7f_field_62550482480cb'),(145067,4140,'flexible_templates_2_posts_grid_0_heading','Build'),(145068,4140,'_flexible_templates_2_posts_grid_0_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(145069,4140,'flexible_templates_2_posts_grid_0_copy','We\'re not just a software company. We\'re the people who help your business achieve its digital transformation vision. From strategy to implementation, we\'ll support you with our cloud native, data driven technology and digital transformation expertise. '),(145070,4140,'_flexible_templates_2_posts_grid_0_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(145071,4140,'flexible_templates_2_posts_grid_0_cta',''),(145072,4140,'_flexible_templates_2_posts_grid_0_cta','field_6256a6f8dea82_field_62551b3e101c4'),(145073,4140,'flexible_templates_2_posts_grid_1_icon','4034'),(145074,4140,'_flexible_templates_2_posts_grid_1_icon','field_6256a6c0dea7f_field_62550482480cb'),(145075,4140,'flexible_templates_2_posts_grid_1_heading','ReBuild'),(145076,4140,'_flexible_templates_2_posts_grid_1_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(145077,4140,'flexible_templates_2_posts_grid_1_copy','Break free from the limitations of your old legacy technology by rebuilding your business critical application components without affecting the original specifications, requirements, and business logic. This will improve scalability, maintainability, and reliability.\r\n'),(145078,4140,'_flexible_templates_2_posts_grid_1_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(145079,4140,'flexible_templates_2_posts_grid_1_cta',''),(145080,4140,'_flexible_templates_2_posts_grid_1_cta','field_6256a6f8dea82_field_62551b3e101c4'),(145081,4140,'flexible_templates_2_posts_grid_2_icon','4035'),(145082,4140,'_flexible_templates_2_posts_grid_2_icon','field_6256a6c0dea7f_field_62550482480cb'),(145083,4140,'flexible_templates_2_posts_grid_2_heading','RePlatform'),(145084,4140,'_flexible_templates_2_posts_grid_2_heading','field_6256a6d9dea80_field_6254fdb2efa27'),(145085,4140,'flexible_templates_2_posts_grid_2_copy','Migrate your old application to a new runtime platform. When upgrading to a cloud native application platform, we repurpose the useable components from your legacy technology, and minimize changes to code and structure.'),(145086,4140,'_flexible_templates_2_posts_grid_2_copy','field_6256a6ebdea81_field_6254fdc0efa29'),(145087,4140,'flexible_templates_2_posts_grid_2_cta',''),(145088,4140,'_flexible_templates_2_posts_grid_2_cta','field_6256a6f8dea82_field_62551b3e101c4'),(145089,4140,'flexible_templates_2_posts_grid','3'),(145090,4140,'_flexible_templates_2_posts_grid','field_6256a698dea7e'),(145091,4140,'flexible_templates_2_cta','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://translucent.local/cloud-native-application-development/\";s:6:\"target\";s:0:\"\";}'),(145092,4140,'_flexible_templates_2_cta','field_6256a725dea83_field_62551b3e101c4'),(145093,4140,'flexible_templates_3_heading','Scale According to your Demands'),(145094,4140,'_flexible_templates_3_heading','field_6256aa0c6187a_field_6254fdb2efa27'),(145095,4140,'flexible_templates_3_scale_demands_0_icon',''),(145096,4140,'_flexible_templates_3_scale_demands_0_icon','field_6256aa4e6187c_field_62550482480cb'),(145097,4140,'flexible_templates_3_scale_demands_0_heading','TEKTeams'),(145098,4140,'_flexible_templates_3_scale_demands_0_heading','field_6256aa866187d_field_6254fdb2efa27'),(145099,4140,'flexible_templates_3_scale_demands_0_copy','On-demand resources that may be used whenever and wherever you need them. Increase your workforce by partnering with teams tailored to your business needs.'),(145100,4140,'_flexible_templates_3_scale_demands_0_copy','field_6256aa986187e_field_6254fdc0efa29'),(145101,4140,'flexible_templates_3_scale_demands_0_cta','a:3:{s:5:\"title\";s:16:\"Scale Your Teams\";s:3:\"url\";s:34:\"https://translucent.local/tekteams\";s:6:\"target\";s:0:\"\";}'),(145102,4140,'_flexible_templates_3_scale_demands_0_cta','field_6256aab66187f_field_62551b3e101c4'),(145103,4140,'flexible_templates_3_scale_demands_1_icon',''),(145104,4140,'_flexible_templates_3_scale_demands_1_icon','field_6256aa4e6187c_field_62550482480cb'),(145105,4140,'flexible_templates_3_scale_demands_1_heading','TEKStack'),(145106,4140,'_flexible_templates_3_scale_demands_1_heading','field_6256aa866187d_field_6254fdb2efa27'),(145107,4140,'flexible_templates_3_scale_demands_1_copy','TEKStack has perfected the complex process of working with production-ready tools that have been shown to save time and money. Reduce your time to market by more than 20%.'),(145108,4140,'_flexible_templates_3_scale_demands_1_copy','field_6256aa986187e_field_6254fdc0efa29'),(145109,4140,'flexible_templates_3_scale_demands_1_cta','a:3:{s:5:\"title\";s:20:\"Speed Up Development\";s:3:\"url\";s:35:\"https://translucent.local/tekstack/\";s:6:\"target\";s:0:\"\";}'),(145110,4140,'_flexible_templates_3_scale_demands_1_cta','field_6256aab66187f_field_62551b3e101c4'),(145111,4140,'flexible_templates_3_scale_demands_2_icon',''),(145112,4140,'_flexible_templates_3_scale_demands_2_icon','field_6256aa4e6187c_field_62550482480cb'),(145113,4140,'flexible_templates_3_scale_demands_2_heading','TEKProcess'),(145114,4140,'_flexible_templates_3_scale_demands_2_heading','field_6256aa866187d_field_6254fdb2efa27'),(145115,4140,'flexible_templates_3_scale_demands_2_copy','Our approach to cloud native development will organize your entire cloud native development process ​from conception to steady state and support, known as TEKProcess.'),(145116,4140,'_flexible_templates_3_scale_demands_2_copy','field_6256aa986187e_field_6254fdc0efa29'),(145117,4140,'flexible_templates_3_scale_demands_2_cta','a:3:{s:5:\"title\";s:24:\"Optimize Your Operations\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(145118,4140,'_flexible_templates_3_scale_demands_2_cta','field_6256aab66187f_field_62551b3e101c4'),(145119,4140,'flexible_templates_3_scale_demands','3'),(145120,4140,'_flexible_templates_3_scale_demands','field_6256aa366187b'),(145121,4140,'flexible_templates_4_heading','Reflect Your Operations Through Technology'),(145122,4140,'_flexible_templates_4_heading','field_6256acb5f89e4_field_6254fdb2efa27'),(145123,4140,'flexible_templates_4_sub_heading','CLOUD NATIVE ECOSYSTEM'),(145124,4140,'_flexible_templates_4_sub_heading','field_6256acc6f89e5_field_6254fdbaefa28'),(145125,4140,'flexible_templates_4_icon','4041'),(145126,4140,'_flexible_templates_4_icon','field_6256db0a20c28_field_62550482480cb'),(145127,4140,'flexible_templates_4_image',''),(145128,4140,'_flexible_templates_4_image','field_6257293fdf3c8_field_6254fdc5efa2a'),(145129,4140,'flexible_templates_4_technology_0_heading','Solve Problems Quick'),(145130,4140,'_flexible_templates_4_technology_0_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(145131,4140,'flexible_templates_4_technology_0_sub_heading','How?'),(145132,4140,'_flexible_templates_4_technology_0_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(145133,4140,'flexible_templates_4_technology_0_copy','Translucent is a data driven digital transformation company that uses technology to solve problems and modernize companies.'),(145134,4140,'_flexible_templates_4_technology_0_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(145135,4140,'flexible_templates_4_technology_0_back_heading','Data Driven'),(145136,4140,'_flexible_templates_4_technology_0_back_heading','field_6256b2b61a441'),(145137,4140,'flexible_templates_4_technology_0_icon','4038'),(145138,4140,'_flexible_templates_4_technology_0_icon','field_6256b2be1a442_field_62550482480cb'),(145139,4140,'flexible_templates_4_technology_0_back_copy','We work closely with companies to analyze their business and discover new opportunities they did not know existed.'),(145140,4140,'_flexible_templates_4_technology_0_back_copy','field_6256b2e31a443'),(145141,4140,'flexible_templates_4_technology_0_image',''),(145142,4140,'_flexible_templates_4_technology_0_image','field_6256b3011a444_field_6254fdc5efa2a'),(145143,4140,'flexible_templates_4_technology_0_cta','a:3:{s:5:\"title\";s:13:\"Start Solving\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(145144,4140,'_flexible_templates_4_technology_0_cta','field_6256ad66f89e9_field_62551b3e101c4'),(145145,4140,'flexible_templates_4_technology_1_heading','Automate Development Tasks'),(145146,4140,'_flexible_templates_4_technology_1_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(145147,4140,'flexible_templates_4_technology_1_sub_heading','How?'),(145148,4140,'_flexible_templates_4_technology_1_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(145149,4140,'flexible_templates_4_technology_1_copy','Simplify the intricacies of cloud applications by automating laborious tasks in the development process.'),(145150,4140,'_flexible_templates_4_technology_1_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(145151,4140,'flexible_templates_4_technology_1_back_heading',''),(145152,4140,'_flexible_templates_4_technology_1_back_heading','field_6256b2b61a441'),(145153,4140,'flexible_templates_4_technology_1_icon','4040'),(145154,4140,'_flexible_templates_4_technology_1_icon','field_6256b2be1a442_field_62550482480cb'),(145155,4140,'flexible_templates_4_technology_1_back_copy','Translucent is one of just four kubernetes certified partners in Canada!'),(145156,4140,'_flexible_templates_4_technology_1_back_copy','field_6256b2e31a443'),(145157,4140,'flexible_templates_4_technology_1_image','4039'),(145158,4140,'_flexible_templates_4_technology_1_image','field_6256b3011a444_field_6254fdc5efa2a'),(145159,4140,'flexible_templates_4_technology_1_cta','a:3:{s:5:\"title\";s:16:\"Start Automating\";s:3:\"url\";s:59:\"https://translucent.local/kubernetes-professional-services/\";s:6:\"target\";s:0:\"\";}'),(145160,4140,'_flexible_templates_4_technology_1_cta','field_6256ad66f89e9_field_62551b3e101c4'),(145161,4140,'flexible_templates_4_technology_2_heading','Build and Deploy Faster'),(145162,4140,'_flexible_templates_4_technology_2_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(145163,4140,'flexible_templates_4_technology_2_sub_heading','How?'),(145164,4140,'_flexible_templates_4_technology_2_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(145165,4140,'flexible_templates_4_technology_2_copy','Maximise earnings by building and deploying more features and faster.'),(145166,4140,'_flexible_templates_4_technology_2_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(145167,4140,'flexible_templates_4_technology_2_back_heading',''),(145168,4140,'_flexible_templates_4_technology_2_back_heading','field_6256b2b61a441'),(145169,4140,'flexible_templates_4_technology_2_icon','4042'),(145170,4140,'_flexible_templates_4_technology_2_icon','field_6256b2be1a442_field_62550482480cb'),(145171,4140,'flexible_templates_4_technology_2_back_copy','Devops is the heartbeat of all Translucent services, and Translucent IS Devops.'),(145172,4140,'_flexible_templates_4_technology_2_back_copy','field_6256b2e31a443'),(145173,4140,'flexible_templates_4_technology_2_image',''),(145174,4140,'_flexible_templates_4_technology_2_image','field_6256b3011a444_field_6254fdc5efa2a'),(145175,4140,'flexible_templates_4_technology_2_cta','a:3:{s:5:\"title\";s:17:\"Unlock Efficiency\";s:3:\"url\";s:46:\"https://translucent.local/cloud-native-devops/\";s:6:\"target\";s:0:\"\";}'),(145176,4140,'_flexible_templates_4_technology_2_cta','field_6256ad66f89e9_field_62551b3e101c4'),(145177,4140,'flexible_templates_4_technology_3_heading','Remain Secure as Possible'),(145178,4140,'_flexible_templates_4_technology_3_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(145179,4140,'flexible_templates_4_technology_3_sub_heading','How?'),(145180,4140,'_flexible_templates_4_technology_3_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(145181,4140,'flexible_templates_4_technology_3_copy','Reduce deliberate and incidental security vulnerabilities in your systems.'),(145182,4140,'_flexible_templates_4_technology_3_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(145183,4140,'flexible_templates_4_technology_3_back_heading','Zero Trust'),(145184,4140,'_flexible_templates_4_technology_3_back_heading','field_6256b2b61a441'),(145185,4140,'flexible_templates_4_technology_3_icon','4043'),(145186,4140,'_flexible_templates_4_technology_3_icon','field_6256b2be1a442_field_62550482480cb'),(145187,4140,'flexible_templates_4_technology_3_back_copy','We are partnered with the best security teams to offer full end to end services.'),(145188,4140,'_flexible_templates_4_technology_3_back_copy','field_6256b2e31a443'),(145189,4140,'flexible_templates_4_technology_3_image',''),(145190,4140,'_flexible_templates_4_technology_3_image','field_6256b3011a444_field_6254fdc5efa2a'),(145191,4140,'flexible_templates_4_technology_3_cta','a:3:{s:5:\"title\";s:20:\"Protect What Matters\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(145192,4140,'_flexible_templates_4_technology_3_cta','field_6256ad66f89e9_field_62551b3e101c4'),(145193,4140,'flexible_templates_4_technology','6'),(145194,4140,'_flexible_templates_4_technology','field_6256acf8f89e6'),(145195,4140,'flexible_templates_4_technology_4_heading','Propel Your Business into The Future'),(145196,4140,'_flexible_templates_4_technology_4_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(145197,4140,'flexible_templates_4_technology_4_sub_heading','How?'),(145198,4140,'_flexible_templates_4_technology_4_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(145199,4140,'flexible_templates_4_technology_4_copy','Build new systems in the cloud, or Modernize legacy data and applications by rebuilding or migrating to a value-driven platform. '),(145200,4140,'_flexible_templates_4_technology_4_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(145201,4140,'flexible_templates_4_technology_4_back_heading','Application Development'),(145202,4140,'_flexible_templates_4_technology_4_back_heading','field_6256b2b61a441'),(145203,4140,'flexible_templates_4_technology_4_icon','4047'),(145204,4140,'_flexible_templates_4_technology_4_icon','field_6256b2be1a442_field_62550482480cb'),(145205,4140,'flexible_templates_4_technology_4_back_copy','We develop intelligent apps for fintech, healthcare, and any other data-driven journey.'),(145206,4140,'_flexible_templates_4_technology_4_back_copy','field_6256b2e31a443'),(145207,4140,'flexible_templates_4_technology_4_image',''),(145208,4140,'_flexible_templates_4_technology_4_image','field_6256b3011a444_field_6254fdc5efa2a'),(145209,4140,'flexible_templates_4_technology_4_cta','a:3:{s:5:\"title\";s:14:\"Build It Right\";s:3:\"url\";s:63:\"https://translucent.local/cloud-native-application-development/\";s:6:\"target\";s:0:\"\";}'),(145210,4140,'_flexible_templates_4_technology_4_cta','field_6256ad66f89e9_field_62551b3e101c4'),(145211,4140,'flexible_templates_4_technology_5_heading','Make Decisions Faster'),(145212,4140,'_flexible_templates_4_technology_5_heading','field_6256ad09f89e7_field_6254fdb2efa27'),(145213,4140,'flexible_templates_4_technology_5_sub_heading','How?'),(145214,4140,'_flexible_templates_4_technology_5_sub_heading','field_6256ad33f89e8_field_6254fdbaefa28'),(145215,4140,'flexible_templates_4_technology_5_copy','Discover anomalies and opportunities faster than human intelligence!'),(145216,4140,'_flexible_templates_4_technology_5_copy','field_6256ada6f89ea_field_6254fdc0efa29'),(145217,4140,'flexible_templates_4_technology_5_back_heading',''),(145218,4140,'_flexible_templates_4_technology_5_back_heading','field_6256b2b61a441'),(145219,4140,'flexible_templates_4_technology_5_icon','4048'),(145220,4140,'_flexible_templates_4_technology_5_icon','field_6256b2be1a442_field_62550482480cb'),(145221,4140,'flexible_templates_4_technology_5_back_copy','Extend the boundaries of your business by solving problems faster.'),(145222,4140,'_flexible_templates_4_technology_5_back_copy','field_6256b2e31a443'),(145223,4140,'flexible_templates_4_technology_5_image',''),(145224,4140,'_flexible_templates_4_technology_5_image','field_6256b3011a444_field_6254fdc5efa2a'),(145225,4140,'flexible_templates_4_technology_5_cta','a:3:{s:5:\"title\";s:22:\"Solve Complex Problems\";s:3:\"url\";s:52:\"https://translucent.local/services/machine-learning/\";s:6:\"target\";s:6:\"_blank\";}'),(145226,4140,'_flexible_templates_4_technology_5_cta','field_6256ad66f89e9_field_62551b3e101c4'),(145227,4140,'flexible_templates_5_image','4051'),(145228,4140,'_flexible_templates_5_image','field_6256dbdfc0c83_field_6254fdc5efa2a'),(145229,4140,'flexible_templates_5_mob_image','4050'),(145230,4140,'_flexible_templates_5_mob_image','field_6256dbeec0c84_field_6254fdcbefa2b'),(145231,4140,'flexible_templates_5_heading','Companies That We Work With'),(145232,4140,'_flexible_templates_5_heading','field_6256dc0cc0c85_field_6254fdb2efa27'),(145233,4140,'flexible_templates_5_technology_partner_0_heading','Teams looking for a trusted nearshore technology partner '),(145234,4140,'_flexible_templates_5_technology_partner_0_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(145235,4140,'flexible_templates_5_technology_partner_0_icon','4052'),(145236,4140,'_flexible_templates_5_technology_partner_0_icon','field_6256dc78c0c88_field_62550482480cb'),(145237,4140,'flexible_templates_5_technology_partner_0_copy','Your Dedicated Development Team. We bring the best people in the industry with various skills to develop and maintain the highest quality software.'),(145238,4140,'_flexible_templates_5_technology_partner_0_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(145239,4140,'flexible_templates_5_technology_partner_1_heading','Teams looking to a build state-of-the-art platform'),(145240,4140,'_flexible_templates_5_technology_partner_1_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(145241,4140,'flexible_templates_5_technology_partner_1_icon','4053'),(145242,4140,'_flexible_templates_5_technology_partner_1_icon','field_6256dc78c0c88_field_62550482480cb'),(145243,4140,'flexible_templates_5_technology_partner_1_copy','Industry-leading cloud native solutions that are backed by an award-winning process, teams, and production-ready data-driven platform.'),(145244,4140,'_flexible_templates_5_technology_partner_1_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(145245,4140,'flexible_templates_5_technology_partner_2_heading','Teams looking to outperform competition'),(145246,4140,'_flexible_templates_5_technology_partner_2_heading','field_6256dc62c0c87_field_6254fdb2efa27'),(145247,4140,'flexible_templates_5_technology_partner_2_icon','4054'),(145248,4140,'_flexible_templates_5_technology_partner_2_icon','field_6256dc78c0c88_field_62550482480cb'),(145249,4140,'flexible_templates_5_technology_partner_2_copy','Gain a major competitive advantage by increasing speed to market by 20%, allowing you to make business moves more quickly.'),(145250,4140,'_flexible_templates_5_technology_partner_2_copy','field_6256dc8bc0c89_field_6254fdc0efa29'),(145251,4140,'flexible_templates_5_technology_partner','3'),(145252,4140,'_flexible_templates_5_technology_partner','field_6256dc3fc0c86'),(145253,4140,'flexible_templates_6_heading','WHY TRANSLUCENT'),(145254,4140,'_flexible_templates_6_heading','field_62590b7cdf000_field_6254fdb2efa27'),(145255,4140,'flexible_templates_6_sub_heading','How Translucent Powered by TEK Differs From Alternative Solutions'),(145256,4140,'_flexible_templates_6_sub_heading','field_62590b8bdf001_field_6254fdbaefa28'),(145257,4140,'flexible_templates_6_icon','4013'),(145258,4140,'_flexible_templates_6_icon','field_62590bc5df002_field_62550482480cb'),(145259,4140,'flexible_templates_6_differential_translucent_header_0_heading','Your needs'),(145260,4140,'_flexible_templates_6_differential_translucent_header_0_heading','field_62590c01df004_field_6254fdb2efa27'),(145261,4140,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(145262,4140,'_flexible_templates_6_differential_translucent_header_0_color','field_62590c11df005'),(145263,4140,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(145264,4140,'_flexible_templates_6_differential_translucent_header_1_heading','field_62590c01df004_field_6254fdb2efa27'),(145265,4140,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(145266,4140,'_flexible_templates_6_differential_translucent_header_1_color','field_62590c11df005'),(145267,4140,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore teams'),(145268,4140,'_flexible_templates_6_differential_translucent_header_2_heading','field_62590c01df004_field_6254fdb2efa27'),(145269,4140,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(145270,4140,'_flexible_templates_6_differential_translucent_header_2_color','field_62590c11df005'),(145271,4140,'flexible_templates_6_differential_translucent_header_3_heading','Hiring in-house developers'),(145272,4140,'_flexible_templates_6_differential_translucent_header_3_heading','field_62590c01df004_field_6254fdb2efa27'),(145273,4140,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(145274,4140,'_flexible_templates_6_differential_translucent_header_3_color','field_62590c11df005'),(145275,4140,'flexible_templates_6_differential_translucent_header','5'),(145276,4140,'_flexible_templates_6_differential_translucent_header','field_62590bf9df003'),(145277,4140,'flexible_templates_6_differential_translucent','15'),(145278,4140,'_flexible_templates_6_differential_translucent','field_62590c30df006'),(145279,4140,'flexible_templates_6_differential_translucent_header_4_heading','Working with Translucent'),(145280,4140,'_flexible_templates_6_differential_translucent_header_4_heading','field_62590c01df004_field_6254fdb2efa27'),(145281,4140,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(145282,4140,'_flexible_templates_6_differential_translucent_header_4_color','field_62590c11df005'),(145283,4140,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(145284,4140,'_flexible_templates_6_differential_translucent_0_column_1','field_62590c30df008'),(145285,4140,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(145286,4140,'_flexible_templates_6_differential_translucent_0_column_2','field_62590c30df00a'),(145287,4140,'flexible_templates_6_differential_translucent_0_column_2_color','#7080a7'),(145288,4140,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62590c30df00b'),(145289,4140,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(145290,4140,'_flexible_templates_6_differential_translucent_0_column_3','field_62590c30df00d'),(145291,4140,'flexible_templates_6_differential_translucent_0_column_3_color','#ff555f'),(145292,4140,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62590c30df00e'),(145293,4140,'flexible_templates_6_differential_translucent_0_column_4','Always'),(145294,4140,'_flexible_templates_6_differential_translucent_0_column_4','field_62590c30df010'),(145295,4140,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(145296,4140,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62590c30df011'),(145297,4140,'flexible_templates_6_differential_translucent_0_column_5','Always'),(145298,4140,'_flexible_templates_6_differential_translucent_0_column_5','field_62590c30df013'),(145299,4140,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(145300,4140,'_flexible_templates_6_differential_translucent_0_column_5_color','field_62590c30df014'),(145301,4140,'flexible_templates_7_heading','We have a future vision that is in sync with the realities that our clients are currently facing'),(145302,4140,'_flexible_templates_7_heading','field_625733105d792_field_6254fdb2efa27'),(145303,4140,'flexible_templates_7_copy_wysiwyg','Translucent is a pioneer in cloud native application development. We created our own solutions, which we call TEK (Translucent Expert Knowledge). Our culture fosters innovation.'),(145304,4140,'_flexible_templates_7_copy_wysiwyg','field_625733205d793_field_6255310ecf4de'),(145305,4140,'flexible_templates_7_image','4057'),(145306,4140,'_flexible_templates_7_image','field_625733375d794_field_6254fdc5efa2a'),(145307,4140,'flexible_templates_7_icon','4058'),(145308,4140,'_flexible_templates_7_icon','field_625733495d795_field_62550482480cb'),(145309,4140,'flexible_templates_7_sick_kids_text',''),(145310,4140,'_flexible_templates_7_sick_kids_text','field_62573ad019bd0'),(145311,4140,'flexible_templates_7_tek_stack_case',''),(145312,4140,'_flexible_templates_7_tek_stack_case','field_625733b05d797'),(145313,4140,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:36:\"See How We Helped Sick Kids Hospital\";s:3:\"url\";s:70:\"https://translucent.local/case-studies/the-hospital-for-sick-children/\";s:6:\"target\";s:0:\"\";}'),(145314,4140,'_flexible_templates_7_cta','field_625733895d796_field_62551b3e101c4'),(145315,4140,'flexible_templates_8_heading','We treat your business like our own.'),(145316,4140,'_flexible_templates_8_heading','field_625565e14146d_field_6254fdb2efa27'),(145317,4140,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:10:\"Let\'s talk\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(145318,4140,'_flexible_templates_8_cta','field_625565fa4146e_field_62551b3e101c4'),(145319,4140,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (Speed to market)'),(145320,4140,'_flexible_templates_6_differential_translucent_1_column_1','field_62590c30df008'),(145321,4140,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(145322,4140,'_flexible_templates_6_differential_translucent_1_column_2','field_62590c30df00a'),(145323,4140,'flexible_templates_6_differential_translucent_1_column_2_color','#ff555f'),(145324,4140,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62590c30df00b'),(145325,4140,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(145326,4140,'_flexible_templates_6_differential_translucent_1_column_3','field_62590c30df00d'),(145327,4140,'flexible_templates_6_differential_translucent_1_column_3_color','#7080a7'),(145328,4140,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62590c30df00e'),(145329,4140,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(145330,4140,'_flexible_templates_6_differential_translucent_1_column_4','field_62590c30df010'),(145331,4140,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(145332,4140,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62590c30df011'),(145333,4140,'flexible_templates_6_differential_translucent_1_column_5','Always'),(145334,4140,'_flexible_templates_6_differential_translucent_1_column_5','field_62590c30df013'),(145335,4140,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(145336,4140,'_flexible_templates_6_differential_translucent_1_column_5_color','field_62590c30df014'),(145337,4140,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(145338,4140,'_flexible_templates_6_differential_translucent_2_column_1','field_62590c30df008'),(145339,4140,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(145340,4140,'_flexible_templates_6_differential_translucent_2_column_2','field_62590c30df00a'),(145341,4140,'flexible_templates_6_differential_translucent_2_column_2_color','#7080a7'),(145342,4140,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62590c30df00b'),(145343,4140,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(145344,4140,'_flexible_templates_6_differential_translucent_2_column_3','field_62590c30df00d'),(145345,4140,'flexible_templates_6_differential_translucent_2_column_3_color','#ff555f'),(145346,4140,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62590c30df00e'),(145347,4140,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(145348,4140,'_flexible_templates_6_differential_translucent_2_column_4','field_62590c30df010'),(145349,4140,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(145350,4140,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62590c30df011'),(145351,4140,'flexible_templates_6_differential_translucent_2_column_5','Always'),(145352,4140,'_flexible_templates_6_differential_translucent_2_column_5','field_62590c30df013'),(145353,4140,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(145354,4140,'_flexible_templates_6_differential_translucent_2_column_5_color','field_62590c30df014'),(145355,4140,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(145356,4140,'_flexible_templates_6_differential_translucent_3_column_1','field_62590c30df008'),(145357,4140,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(145358,4140,'_flexible_templates_6_differential_translucent_3_column_2','field_62590c30df00a'),(145359,4140,'flexible_templates_6_differential_translucent_3_column_2_color','#7080a7'),(145360,4140,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62590c30df00b'),(145361,4140,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(145362,4140,'_flexible_templates_6_differential_translucent_3_column_3','field_62590c30df00d'),(145363,4140,'flexible_templates_6_differential_translucent_3_column_3_color','#ff555f'),(145364,4140,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62590c30df00e'),(145365,4140,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(145366,4140,'_flexible_templates_6_differential_translucent_3_column_4','field_62590c30df010'),(145367,4140,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(145368,4140,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62590c30df011'),(145369,4140,'flexible_templates_6_differential_translucent_3_column_5','Always'),(145370,4140,'_flexible_templates_6_differential_translucent_3_column_5','field_62590c30df013'),(145371,4140,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(145372,4140,'_flexible_templates_6_differential_translucent_3_column_5_color','field_62590c30df014'),(145373,4140,'flexible_templates_6_differential_translucent_4_column_1','No Recruiting Fees '),(145374,4140,'_flexible_templates_6_differential_translucent_4_column_1','field_62590c30df008'),(145375,4140,'flexible_templates_6_differential_translucent_4_column_2','Always'),(145376,4140,'_flexible_templates_6_differential_translucent_4_column_2','field_62590c30df00a'),(145377,4140,'flexible_templates_6_differential_translucent_4_column_2_color','#28d9cb'),(145378,4140,'_flexible_templates_6_differential_translucent_4_column_2_color','field_62590c30df00b'),(145379,4140,'flexible_templates_6_differential_translucent_4_column_3','Sometimes '),(145380,4140,'_flexible_templates_6_differential_translucent_4_column_3','field_62590c30df00d'),(145381,4140,'flexible_templates_6_differential_translucent_4_column_3_color','#ff555f'),(145382,4140,'_flexible_templates_6_differential_translucent_4_column_3_color','field_62590c30df00e'),(145383,4140,'flexible_templates_6_differential_translucent_4_column_4','Rare'),(145384,4140,'_flexible_templates_6_differential_translucent_4_column_4','field_62590c30df010'),(145385,4140,'flexible_templates_6_differential_translucent_4_column_4_color','#ff555f'),(145386,4140,'_flexible_templates_6_differential_translucent_4_column_4_color','field_62590c30df011'),(145387,4140,'flexible_templates_6_differential_translucent_4_column_5','Always'),(145388,4140,'_flexible_templates_6_differential_translucent_4_column_5','field_62590c30df013'),(145389,4140,'flexible_templates_6_differential_translucent_4_column_5_color','#24c1ff'),(145390,4140,'_flexible_templates_6_differential_translucent_4_column_5_color','field_62590c30df014'),(145391,4140,'flexible_templates_6_differential_translucent_5_column_1','Price predictability and transparency'),(145392,4140,'_flexible_templates_6_differential_translucent_5_column_1','field_62590c30df008'),(145393,4140,'flexible_templates_6_differential_translucent_5_column_2','Rare'),(145394,4140,'_flexible_templates_6_differential_translucent_5_column_2','field_62590c30df00a'),(145395,4140,'flexible_templates_6_differential_translucent_5_column_2_color','#ff555f'),(145396,4140,'_flexible_templates_6_differential_translucent_5_column_2_color','field_62590c30df00b'),(145397,4140,'flexible_templates_6_differential_translucent_5_column_3','Sometimes'),(145398,4140,'_flexible_templates_6_differential_translucent_5_column_3','field_62590c30df00d'),(145399,4140,'flexible_templates_6_differential_translucent_5_column_3_color','#7080a7'),(145400,4140,'_flexible_templates_6_differential_translucent_5_column_3_color','field_62590c30df00e'),(145401,4140,'flexible_templates_6_differential_translucent_5_column_4','Always'),(145402,4140,'_flexible_templates_6_differential_translucent_5_column_4','field_62590c30df010'),(145403,4140,'flexible_templates_6_differential_translucent_5_column_4_color','#28d9cb'),(145404,4140,'_flexible_templates_6_differential_translucent_5_column_4_color','field_62590c30df011'),(145405,4140,'flexible_templates_6_differential_translucent_5_column_5','Always'),(145406,4140,'_flexible_templates_6_differential_translucent_5_column_5','field_62590c30df013'),(145407,4140,'flexible_templates_6_differential_translucent_5_column_5_color','#24c1ff'),(145408,4140,'_flexible_templates_6_differential_translucent_5_column_5_color','field_62590c30df014'),(145409,4140,'flexible_templates_6_differential_translucent_6_column_1','Affordability'),(145410,4140,'_flexible_templates_6_differential_translucent_6_column_1','field_62590c30df008'),(145411,4140,'flexible_templates_6_differential_translucent_6_column_2','Rare'),(145412,4140,'_flexible_templates_6_differential_translucent_6_column_2','field_62590c30df00a'),(145413,4140,'flexible_templates_6_differential_translucent_6_column_2_color','#ff555f'),(145414,4140,'_flexible_templates_6_differential_translucent_6_column_2_color','field_62590c30df00b'),(145415,4140,'flexible_templates_6_differential_translucent_6_column_3','Sometimes'),(145416,4140,'_flexible_templates_6_differential_translucent_6_column_3','field_62590c30df00d'),(145417,4140,'flexible_templates_6_differential_translucent_6_column_3_color','#7080a7'),(145418,4140,'_flexible_templates_6_differential_translucent_6_column_3_color','field_62590c30df00e'),(145419,4140,'flexible_templates_6_differential_translucent_6_column_4','Sometimes'),(145420,4140,'_flexible_templates_6_differential_translucent_6_column_4','field_62590c30df010'),(145421,4140,'flexible_templates_6_differential_translucent_6_column_4_color','#7080a7'),(145422,4140,'_flexible_templates_6_differential_translucent_6_column_4_color','field_62590c30df011'),(145423,4140,'flexible_templates_6_differential_translucent_6_column_5','Always'),(145424,4140,'_flexible_templates_6_differential_translucent_6_column_5','field_62590c30df013'),(145425,4140,'flexible_templates_6_differential_translucent_6_column_5_color','#24c1ff'),(145426,4140,'_flexible_templates_6_differential_translucent_6_column_5_color','field_62590c30df014'),(145427,4140,'flexible_templates_6_differential_translucent_7_column_1','Security and confidentiality'),(145428,4140,'_flexible_templates_6_differential_translucent_7_column_1','field_62590c30df008'),(145429,4140,'flexible_templates_6_differential_translucent_7_column_2','Sometimes'),(145430,4140,'_flexible_templates_6_differential_translucent_7_column_2','field_62590c30df00a'),(145431,4140,'flexible_templates_6_differential_translucent_7_column_2_color','#7080a7'),(145432,4140,'_flexible_templates_6_differential_translucent_7_column_2_color','field_62590c30df00b'),(145433,4140,'flexible_templates_6_differential_translucent_7_column_3','Rare'),(145434,4140,'_flexible_templates_6_differential_translucent_7_column_3','field_62590c30df00d'),(145435,4140,'flexible_templates_6_differential_translucent_7_column_3_color','#ff555f'),(145436,4140,'_flexible_templates_6_differential_translucent_7_column_3_color','field_62590c30df00e'),(145437,4140,'flexible_templates_6_differential_translucent_7_column_4','Always'),(145438,4140,'_flexible_templates_6_differential_translucent_7_column_4','field_62590c30df010'),(145439,4140,'flexible_templates_6_differential_translucent_7_column_4_color','#28d9cb'),(145440,4140,'_flexible_templates_6_differential_translucent_7_column_4_color','field_62590c30df011'),(145441,4140,'flexible_templates_6_differential_translucent_7_column_5','Always'),(145442,4140,'_flexible_templates_6_differential_translucent_7_column_5','field_62590c30df013'),(145443,4140,'flexible_templates_6_differential_translucent_7_column_5_color','#24c1ff'),(145444,4140,'_flexible_templates_6_differential_translucent_7_column_5_color','field_62590c30df014'),(145445,4140,'flexible_templates_6_differential_translucent_8_column_1','Top 1% engineering talent'),(145446,4140,'_flexible_templates_6_differential_translucent_8_column_1','field_62590c30df008'),(145447,4140,'flexible_templates_6_differential_translucent_8_column_2','Sometimes'),(145448,4140,'_flexible_templates_6_differential_translucent_8_column_2','field_62590c30df00a'),(145449,4140,'flexible_templates_6_differential_translucent_8_column_2_color','#7080a7'),(145450,4140,'_flexible_templates_6_differential_translucent_8_column_2_color','field_62590c30df00b'),(145451,4140,'flexible_templates_6_differential_translucent_8_column_3','Rare'),(145452,4140,'_flexible_templates_6_differential_translucent_8_column_3','field_62590c30df00d'),(145453,4140,'flexible_templates_6_differential_translucent_8_column_3_color','#ff555f'),(145454,4140,'_flexible_templates_6_differential_translucent_8_column_3_color','field_62590c30df00e'),(145455,4140,'flexible_templates_6_differential_translucent_8_column_4','Sometimes'),(145456,4140,'_flexible_templates_6_differential_translucent_8_column_4','field_62590c30df010'),(145457,4140,'flexible_templates_6_differential_translucent_8_column_4_color','#7080a7'),(145458,4140,'_flexible_templates_6_differential_translucent_8_column_4_color','field_62590c30df011'),(145459,4140,'flexible_templates_6_differential_translucent_8_column_5','Always'),(145460,4140,'_flexible_templates_6_differential_translucent_8_column_5','field_62590c30df013'),(145461,4140,'flexible_templates_6_differential_translucent_8_column_5_color','#24c1ff'),(145462,4140,'_flexible_templates_6_differential_translucent_8_column_5_color','field_62590c30df014'),(145463,4140,'flexible_templates_6_differential_translucent_9_column_1','Top project management talent'),(145464,4140,'_flexible_templates_6_differential_translucent_9_column_1','field_62590c30df008'),(145465,4140,'flexible_templates_6_differential_translucent_9_column_2','Sometimes'),(145466,4140,'_flexible_templates_6_differential_translucent_9_column_2','field_62590c30df00a'),(145467,4140,'flexible_templates_6_differential_translucent_9_column_2_color','#7080a7'),(145468,4140,'_flexible_templates_6_differential_translucent_9_column_2_color','field_62590c30df00b'),(145469,4140,'flexible_templates_6_differential_translucent_9_column_3','Rare'),(145470,4140,'_flexible_templates_6_differential_translucent_9_column_3','field_62590c30df00d'),(145471,4140,'flexible_templates_6_differential_translucent_9_column_3_color','#ff555f'),(145472,4140,'_flexible_templates_6_differential_translucent_9_column_3_color','field_62590c30df00e'),(145473,4140,'flexible_templates_6_differential_translucent_9_column_4','Rare'),(145474,4140,'_flexible_templates_6_differential_translucent_9_column_4','field_62590c30df010'),(145475,4140,'flexible_templates_6_differential_translucent_9_column_4_color','#ff555f'),(145476,4140,'_flexible_templates_6_differential_translucent_9_column_4_color','field_62590c30df011'),(145477,4140,'flexible_templates_6_differential_translucent_9_column_5','Always'),(145478,4140,'_flexible_templates_6_differential_translucent_9_column_5','field_62590c30df013'),(145479,4140,'flexible_templates_6_differential_translucent_9_column_5_color','#24c1ff'),(145480,4140,'_flexible_templates_6_differential_translucent_9_column_5_color','field_62590c30df014'),(145481,4140,'flexible_templates_6_differential_translucent_10_column_1','Dedicated Dev-ops Manager'),(145482,4140,'_flexible_templates_6_differential_translucent_10_column_1','field_62590c30df008'),(145483,4140,'flexible_templates_6_differential_translucent_10_column_2','Sometimes'),(145484,4140,'_flexible_templates_6_differential_translucent_10_column_2','field_62590c30df00a'),(145485,4140,'flexible_templates_6_differential_translucent_10_column_2_color','#7080a7'),(145486,4140,'_flexible_templates_6_differential_translucent_10_column_2_color','field_62590c30df00b'),(145487,4140,'flexible_templates_6_differential_translucent_10_column_3','Rare'),(145488,4140,'_flexible_templates_6_differential_translucent_10_column_3','field_62590c30df00d'),(145489,4140,'flexible_templates_6_differential_translucent_10_column_3_color','#ff555f'),(145490,4140,'_flexible_templates_6_differential_translucent_10_column_3_color','field_62590c30df00e'),(145491,4140,'flexible_templates_6_differential_translucent_10_column_4','Rare'),(145492,4140,'_flexible_templates_6_differential_translucent_10_column_4','field_62590c30df010'),(145493,4140,'flexible_templates_6_differential_translucent_10_column_4_color','#ff555f'),(145494,4140,'_flexible_templates_6_differential_translucent_10_column_4_color','field_62590c30df011'),(145495,4140,'flexible_templates_6_differential_translucent_10_column_5','Always'),(145496,4140,'_flexible_templates_6_differential_translucent_10_column_5','field_62590c30df013'),(145497,4140,'flexible_templates_6_differential_translucent_10_column_5_color','#24c1ff'),(145498,4140,'_flexible_templates_6_differential_translucent_10_column_5_color','field_62590c30df014'),(145499,4140,'flexible_templates_6_differential_translucent_11_column_1','Scalable solutions i.e. can easily grow as you do'),(145500,4140,'_flexible_templates_6_differential_translucent_11_column_1','field_62590c30df008'),(145501,4140,'flexible_templates_6_differential_translucent_11_column_2','Sometimes'),(145502,4140,'_flexible_templates_6_differential_translucent_11_column_2','field_62590c30df00a'),(145503,4140,'flexible_templates_6_differential_translucent_11_column_2_color','#7080a7'),(145504,4140,'_flexible_templates_6_differential_translucent_11_column_2_color','field_62590c30df00b'),(145505,4140,'flexible_templates_6_differential_translucent_11_column_3','Rare'),(145506,4140,'_flexible_templates_6_differential_translucent_11_column_3','field_62590c30df00d'),(145507,4140,'flexible_templates_6_differential_translucent_11_column_3_color','#ff555f'),(145508,4140,'_flexible_templates_6_differential_translucent_11_column_3_color','field_62590c30df00e'),(145509,4140,'flexible_templates_6_differential_translucent_11_column_4','Rare'),(145510,4140,'_flexible_templates_6_differential_translucent_11_column_4','field_62590c30df010'),(145511,4140,'flexible_templates_6_differential_translucent_11_column_4_color','#ff555f'),(145512,4140,'_flexible_templates_6_differential_translucent_11_column_4_color','field_62590c30df011'),(145513,4140,'flexible_templates_6_differential_translucent_11_column_5','Always'),(145514,4140,'_flexible_templates_6_differential_translucent_11_column_5','field_62590c30df013'),(145515,4140,'flexible_templates_6_differential_translucent_11_column_5_color','#24c1ff'),(145516,4140,'_flexible_templates_6_differential_translucent_11_column_5_color','field_62590c30df014'),(145517,4140,'flexible_templates_6_differential_translucent_12_column_1','Understand your business objectives and outcomes. You want to drive.'),(145518,4140,'_flexible_templates_6_differential_translucent_12_column_1','field_62590c30df008'),(145519,4140,'flexible_templates_6_differential_translucent_12_column_2','Sometimes'),(145520,4140,'_flexible_templates_6_differential_translucent_12_column_2','field_62590c30df00a'),(145521,4140,'flexible_templates_6_differential_translucent_12_column_2_color','#7080a7'),(145522,4140,'_flexible_templates_6_differential_translucent_12_column_2_color','field_62590c30df00b'),(145523,4140,'flexible_templates_6_differential_translucent_12_column_3','Sometimes'),(145524,4140,'_flexible_templates_6_differential_translucent_12_column_3','field_62590c30df00d'),(145525,4140,'flexible_templates_6_differential_translucent_12_column_3_color','#7080a7'),(145526,4140,'_flexible_templates_6_differential_translucent_12_column_3_color','field_62590c30df00e'),(145527,4140,'flexible_templates_6_differential_translucent_12_column_4','Always'),(145528,4140,'_flexible_templates_6_differential_translucent_12_column_4','field_62590c30df010'),(145529,4140,'flexible_templates_6_differential_translucent_12_column_4_color','#28d9cb'),(145530,4140,'_flexible_templates_6_differential_translucent_12_column_4_color','field_62590c30df011'),(145531,4140,'flexible_templates_6_differential_translucent_12_column_5','Always'),(145532,4140,'_flexible_templates_6_differential_translucent_12_column_5','field_62590c30df013'),(145533,4140,'flexible_templates_6_differential_translucent_12_column_5_color','#24c1ff'),(145534,4140,'_flexible_templates_6_differential_translucent_12_column_5_color','field_62590c30df014'),(145535,4140,'flexible_templates_6_differential_translucent_13_column_1','Amazing'),(145536,4140,'_flexible_templates_6_differential_translucent_13_column_1','field_62590c30df008'),(145537,4140,'flexible_templates_6_differential_translucent_13_column_2','Sometimes'),(145538,4140,'_flexible_templates_6_differential_translucent_13_column_2','field_62590c30df00a'),(145539,4140,'flexible_templates_6_differential_translucent_13_column_2_color','#7080a7'),(145540,4140,'_flexible_templates_6_differential_translucent_13_column_2_color','field_62590c30df00b'),(145541,4140,'flexible_templates_6_differential_translucent_13_column_3','Rare'),(145542,4140,'_flexible_templates_6_differential_translucent_13_column_3','field_62590c30df00d'),(145543,4140,'flexible_templates_6_differential_translucent_13_column_3_color','#ff555f'),(145544,4140,'_flexible_templates_6_differential_translucent_13_column_3_color','field_62590c30df00e'),(145545,4140,'flexible_templates_6_differential_translucent_13_column_4','Rare'),(145546,4140,'_flexible_templates_6_differential_translucent_13_column_4','field_62590c30df010'),(145547,4140,'flexible_templates_6_differential_translucent_13_column_4_color','#ff555f'),(145548,4140,'_flexible_templates_6_differential_translucent_13_column_4_color','field_62590c30df011'),(145549,4140,'flexible_templates_6_differential_translucent_13_column_5','Always'),(145550,4140,'_flexible_templates_6_differential_translucent_13_column_5','field_62590c30df013'),(145551,4140,'flexible_templates_6_differential_translucent_13_column_5_color','#24c1ff'),(145552,4140,'_flexible_templates_6_differential_translucent_13_column_5_color','field_62590c30df014'),(145553,4140,'flexible_templates_6_differential_translucent_14_column_1','24 hour dedicated support'),(145554,4140,'_flexible_templates_6_differential_translucent_14_column_1','field_62590c30df008'),(145555,4140,'flexible_templates_6_differential_translucent_14_column_2','Rare'),(145556,4140,'_flexible_templates_6_differential_translucent_14_column_2','field_62590c30df00a'),(145557,4140,'flexible_templates_6_differential_translucent_14_column_2_color','#ff555f'),(145558,4140,'_flexible_templates_6_differential_translucent_14_column_2_color','field_62590c30df00b'),(145559,4140,'flexible_templates_6_differential_translucent_14_column_3','Rare'),(145560,4140,'_flexible_templates_6_differential_translucent_14_column_3','field_62590c30df00d'),(145561,4140,'flexible_templates_6_differential_translucent_14_column_3_color','#ff555f'),(145562,4140,'_flexible_templates_6_differential_translucent_14_column_3_color','field_62590c30df00e'),(145563,4140,'flexible_templates_6_differential_translucent_14_column_4','Rare'),(145564,4140,'_flexible_templates_6_differential_translucent_14_column_4','field_62590c30df010'),(145565,4140,'flexible_templates_6_differential_translucent_14_column_4_color','#ff555f'),(145566,4140,'_flexible_templates_6_differential_translucent_14_column_4_color','field_62590c30df011'),(145567,4140,'flexible_templates_6_differential_translucent_14_column_5','Always'),(145568,4140,'_flexible_templates_6_differential_translucent_14_column_5','field_62590c30df013'),(145569,4140,'flexible_templates_6_differential_translucent_14_column_5_color','#24c1ff'),(145570,4140,'_flexible_templates_6_differential_translucent_14_column_5_color','field_62590c30df014'),(145580,4141,'flexible_templates','a:7:{i:0;s:16:\"tek_world_banner\";i:1;s:26:\"tek_world_scale_your_teams\";i:2;s:28:\"tek_world_stack_process_team\";i:3;s:20:\"tek_world_zero_trust\";i:4;s:21:\"tek_world_tek_success\";i:5;s:26:\"tek_world_translucent_blog\";i:6;s:17:\"lets_talk_section\";}'),(145581,4141,'_flexible_templates','field_6254f4d84ef9b'),(145582,4141,'flexible_templates_0_image','4014'),(145583,4141,'_flexible_templates_0_image','field_6257bb6127dce_field_6254fdc5efa2a'),(145584,4141,'flexible_templates_0_heading','Get award-winning results with our TEK Solutions '),(145585,4141,'_flexible_templates_0_heading','field_6257bb2027dcb_field_6254fdb2efa27'),(145586,4141,'flexible_templates_0_sub_heading','TEK™ WORLD'),(145587,4141,'_flexible_templates_0_sub_heading','field_6257bb3a27dcc_field_6254fdbaefa28'),(145588,4141,'flexible_templates_0_icon','4013'),(145589,4141,'_flexible_templates_0_icon','field_6257bb5127dcd_field_62550482480cb'),(145590,4141,'flexible_templates_0_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(145591,4141,'_flexible_templates_0_cta','field_6257bb7d27dcf_field_62551b3e101c4'),(145592,4141,'flexible_templates_1_heading',' Winning Results for Your Business. '),(145593,4141,'_flexible_templates_1_heading','field_6257bde945e43_field_6254fdb2efa27'),(145594,4141,'flexible_templates_1_sub_heading','Translucent Expert Knowledge:'),(145595,4141,'_flexible_templates_1_sub_heading','field_6257bdf945e44_field_6254fdbaefa28'),(145596,4141,'flexible_templates_1_copy','We provide industry-leading cloud native solutions that are backed by our award-winning process, teams, and production-ready data-driven platform. TEK World Solutions are our branded suite of cloud native products and services for all your business needs. Translucent Expert Knowledge will guide your project from ideation to steady state and beyond.'),(145597,4141,'_flexible_templates_1_copy','field_6257be1045e45_field_6254fdc0efa29'),(145598,4141,'flexible_templates_1_image','4016'),(145599,4141,'_flexible_templates_1_image','field_6257be2845e46_field_6254fdc5efa2a'),(145600,4141,'flexible_templates_2_stack_process_team_0_icon','4019'),(145601,4141,'_flexible_templates_2_stack_process_team_0_icon','field_6257c3a4705fa_field_62550482480cb'),(145602,4141,'flexible_templates_2_stack_process_team_0_heading','TEKStack'),(145603,4141,'_flexible_templates_2_stack_process_team_0_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(145604,4141,'flexible_templates_2_stack_process_team_0_copy_wysiwyg','TEKStack is our open source, production-ready, cloud-native, data-driven digital transformation pipeline for your company to compete in the digital age. With this range of technologies we have perfected the process of working with production ready tools to save time and money on your cloud applications and platforms.'),(145605,4141,'_flexible_templates_2_stack_process_team_0_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(145606,4141,'flexible_templates_2_stack_process_team_0_cta','a:3:{s:5:\"title\";s:26:\"Compete in the Digital Age\";s:3:\"url\";s:35:\"https://translucent.local/tekstack/\";s:6:\"target\";s:0:\"\";}'),(145607,4141,'_flexible_templates_2_stack_process_team_0_cta','field_6257c421705fd_field_62551b3e101c4'),(145608,4141,'flexible_templates_2_stack_process_team_1_icon','4020'),(145609,4141,'_flexible_templates_2_stack_process_team_1_icon','field_6257c3a4705fa_field_62550482480cb'),(145610,4141,'flexible_templates_2_stack_process_team_1_heading','TEKProcess'),(145611,4141,'_flexible_templates_2_stack_process_team_1_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(145612,4141,'flexible_templates_2_stack_process_team_1_copy_wysiwyg','TEK Process makes it possible to easily organize the entire cloud native development process, from ideation and discovery, to production-ready solutions. We continuously invest in the R&D of our processes to help you stay ahead of the curve.  Improve ROI, grants, and investment opportunities with a process linked to user feedback.'),(145613,4141,'_flexible_templates_2_stack_process_team_1_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(145614,4141,'flexible_templates_2_stack_process_team_1_cta','a:3:{s:5:\"title\";s:25:\"Align your Business Goals\";s:3:\"url\";s:34:\"https://translucent.local/process/\";s:6:\"target\";s:0:\"\";}'),(145615,4141,'_flexible_templates_2_stack_process_team_1_cta','field_6257c421705fd_field_62551b3e101c4'),(145616,4141,'flexible_templates_2_stack_process_team_2_icon','4021'),(145617,4141,'_flexible_templates_2_stack_process_team_2_icon','field_6257c3a4705fa_field_62550482480cb'),(145618,4141,'flexible_templates_2_stack_process_team_2_heading','TEKTeams'),(145619,4141,'_flexible_templates_2_stack_process_team_2_heading','field_6257c3e8705fb_field_6254fdb2efa27'),(145620,4141,'flexible_templates_2_stack_process_team_2_copy_wysiwyg','Imagine your company without the burden of hiring developers, engineers, or keeping up with the latest technology. With TEK Teams, your organization will have the top 1% resources on demand, to scale as needed,  and in line with the growth of your cloud native application. You will finally be free to focus on what you do best—running your business. '),(145621,4141,'_flexible_templates_2_stack_process_team_2_copy_wysiwyg','field_6257c3fb705fc_field_6255310ecf4de'),(145622,4141,'flexible_templates_2_stack_process_team_2_cta','a:3:{s:5:\"title\";s:16:\"Scale your Teams\";s:3:\"url\";s:35:\"https://translucent.local/tekteams/\";s:6:\"target\";s:0:\"\";}'),(145623,4141,'_flexible_templates_2_stack_process_team_2_cta','field_6257c421705fd_field_62551b3e101c4'),(145624,4141,'flexible_templates_2_stack_process_team','3'),(145625,4141,'_flexible_templates_2_stack_process_team','field_6257c35c705f9'),(145626,4141,'flexible_templates_3_heading','Secure multiple distributed sources'),(145627,4141,'_flexible_templates_3_heading','field_6257cf9016730_field_6254fdb2efa27'),(145628,4141,'flexible_templates_3_sub_heading','ZERO TRUST'),(145629,4141,'_flexible_templates_3_sub_heading','field_6257cf9d16731_field_6254fdbaefa28'),(145630,4141,'flexible_templates_3_copy','The Cloud is complex. Every minute, multiple breaches occur due to actors , hackers, malpractice, ignorance, or human error. \r\nIt is more critical than ever to always know what is happening with your systems and apps. Zero Trust security will help you remain secure as possible, to prevent security breaches by safeguarding what matters most: the trust of your customers\' and company\'s information. Cybersecurity is critical to protect the assets of your business 24hrs/day, 7days/week with self healing systems.'),(145631,4141,'_flexible_templates_3_copy','field_6257cfab16732_field_6254fdc0efa29'),(145632,4141,'flexible_templates_3_cta',''),(145633,4141,'_flexible_templates_3_cta','field_6257cfc216733_field_62551b3e101c4'),(145634,4141,'flexible_templates_3_image','4023'),(145635,4141,'_flexible_templates_3_image','field_6257d00f54444_field_6254fdc5efa2a'),(145636,4141,'flexible_templates_4_heading','The Hospital for Sick Children Case Study'),(145637,4141,'_flexible_templates_4_heading','field_6257e09378148_field_6254fdb2efa27'),(145638,4141,'flexible_templates_4_sub_heading','TEK in ACTION'),(145639,4141,'_flexible_templates_4_sub_heading','field_6257e0a878149_field_6254fdbaefa28'),(145640,4141,'flexible_templates_4_copy','Translucent has indexed, analysed and transformed half a billion records of Neonatal Intensive Care Unit data.\r\nProject Areas:\r\n\r\n● Microservices\r\n● DevOps\r\n● Machine Learning'),(145641,4141,'_flexible_templates_4_copy','field_6257e55e006ca_field_6254fdc0efa29'),(145642,4141,'flexible_templates_4_image','4026'),(145643,4141,'_flexible_templates_4_image','field_6257e0e87814a_field_6254fdc5efa2a'),(145644,4141,'flexible_templates_4_mob_image','4025'),(145645,4141,'_flexible_templates_4_mob_image','field_6257e1057814b_field_6254fdcbefa2b'),(145646,4141,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:15:\"Read Case Study\";s:3:\"url\";s:70:\"https://translucent.local/case-studies/the-hospital-for-sick-children/\";s:6:\"target\";s:0:\"\";}'),(145647,4141,'_flexible_templates_4_cta','field_6257e1367814c_field_62551b3e101c4'),(145648,4141,'flexible_templates_5_heading','Translucent Blog'),(145649,4141,'_flexible_templates_5_heading','field_6257e9c8b4ea7_field_6254fdb2efa27'),(145650,4141,'flexible_templates_5_sub_heading','STAY TUNED'),(145651,4141,'_flexible_templates_5_sub_heading','field_6257e9d9b4ea8_field_6254fdbaefa28'),(145652,4141,'flexible_templates_6_heading','We treat your business like our own'),(145653,4141,'_flexible_templates_6_heading','field_625565e14146d_field_6254fdb2efa27'),(145654,4141,'flexible_templates_6_cta','a:3:{s:5:\"title\";s:10:\"Let\'s talk\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(145655,4141,'_flexible_templates_6_cta','field_625565fa4146e_field_62551b3e101c4'),(145713,4143,'_edit_lock','1653385106:9'),(145714,4143,'_edit_last','9'),(145715,4143,'_wp_page_template','default'),(145716,4144,'heading',''),(145717,4144,'_heading','field_6254fdb2efa27'),(145718,4144,'sub_heading',''),(145719,4144,'_sub_heading','field_6254fdbaefa28'),(145720,4144,'copy',''),(145721,4144,'_copy','field_6254fdc0efa29'),(145722,4144,'copy_wysiwyg',''),(145723,4144,'_copy_wysiwyg','field_6255310ecf4de'),(145724,4144,'icon',''),(145725,4144,'_icon','field_62550482480cb'),(145726,4144,'image',''),(145727,4144,'_image','field_6254fdc5efa2a'),(145728,4144,'mob_image',''),(145729,4144,'_mob_image','field_6254fdcbefa2b'),(145730,4144,'cta',''),(145731,4144,'_cta','field_62551b3e101c4'),(145732,4143,'hefo_before','0'),(145733,4143,'hefo_after','0'),(145734,4143,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(145735,4143,'_yoast_wpseo_content_score','60'),(145736,4143,'_yoast_wpseo_focuskeywords','[]'),(145737,4143,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(145738,4143,'_yoast_wpseo_estimated-reading-time-minutes','1'),(145739,4145,'heading','5 Ways To Increase Software Innovation'),(145740,4145,'_heading','field_6254fdb2efa27'),(145741,4145,'sub_heading',''),(145742,4145,'_sub_heading','field_6254fdbaefa28'),(145743,4145,'copy',''),(145744,4145,'_copy','field_6254fdc0efa29'),(145745,4145,'copy_wysiwyg',''),(145746,4145,'_copy_wysiwyg','field_6255310ecf4de'),(145747,4145,'icon',''),(145748,4145,'_icon','field_62550482480cb'),(145749,4145,'image',''),(145750,4145,'_image','field_6254fdc5efa2a'),(145751,4145,'mob_image',''),(145752,4145,'_mob_image','field_6254fdcbefa2b'),(145753,4145,'cta',''),(145754,4145,'_cta','field_62551b3e101c4'),(145755,4146,'heading','5 Ways To Increase Software Innovation'),(145756,4146,'_heading','field_6254fdb2efa27'),(145757,4146,'sub_heading',''),(145758,4146,'_sub_heading','field_6254fdbaefa28'),(145759,4146,'copy',''),(145760,4146,'_copy','field_6254fdc0efa29'),(145761,4146,'copy_wysiwyg',''),(145762,4146,'_copy_wysiwyg','field_6255310ecf4de'),(145763,4146,'icon',''),(145764,4146,'_icon','field_62550482480cb'),(145765,4146,'image',''),(145766,4146,'_image','field_6254fdc5efa2a'),(145767,4146,'mob_image',''),(145768,4146,'_mob_image','field_6254fdcbefa2b'),(145769,4146,'cta',''),(145770,4146,'_cta','field_62551b3e101c4'),(145771,4147,'heading',''),(145772,4147,'_heading','field_6254fdb2efa27'),(145773,4147,'sub_heading',''),(145774,4147,'_sub_heading','field_6254fdbaefa28'),(145775,4147,'copy',''),(145776,4147,'_copy','field_6254fdc0efa29'),(145777,4147,'copy_wysiwyg',''),(145778,4147,'_copy_wysiwyg','field_6255310ecf4de'),(145779,4147,'icon',''),(145780,4147,'_icon','field_62550482480cb'),(145781,4147,'image',''),(145782,4147,'_image','field_6254fdc5efa2a'),(145783,4147,'mob_image',''),(145784,4147,'_mob_image','field_6254fdcbefa2b'),(145785,4147,'cta',''),(145786,4147,'_cta','field_62551b3e101c4'),(145787,4143,'heading',''),(145788,4143,'_heading','field_6254fdb2efa27'),(145789,4143,'sub_heading',''),(145790,4143,'_sub_heading','field_6254fdbaefa28'),(145791,4143,'copy',''),(145792,4143,'_copy','field_6254fdc0efa29'),(145793,4143,'copy_wysiwyg',''),(145794,4143,'_copy_wysiwyg','field_6255310ecf4de'),(145795,4143,'icon',''),(145796,4143,'_icon','field_62550482480cb'),(145797,4143,'image',''),(145798,4143,'_image','field_6254fdc5efa2a'),(145799,4143,'mob_image',''),(145800,4143,'_mob_image','field_6254fdcbefa2b'),(145801,4143,'cta',''),(145802,4143,'_cta','field_62551b3e101c4'),(145803,4148,'heading',''),(145804,4148,'_heading','field_6254fdb2efa27'),(145805,4148,'sub_heading',''),(145806,4148,'_sub_heading','field_6254fdbaefa28'),(145807,4148,'copy',''),(145808,4148,'_copy','field_6254fdc0efa29'),(145809,4148,'copy_wysiwyg',''),(145810,4148,'_copy_wysiwyg','field_6255310ecf4de'),(145811,4148,'icon',''),(145812,4148,'_icon','field_62550482480cb'),(145813,4148,'image',''),(145814,4148,'_image','field_6254fdc5efa2a'),(145815,4148,'mob_image',''),(145816,4148,'_mob_image','field_6254fdcbefa2b'),(145817,4148,'cta',''),(145818,4148,'_cta','field_62551b3e101c4'),(145819,4143,'_yoast_wpseo_primary_category','1027'),(145820,4149,'heading',''),(145821,4149,'_heading','field_6254fdb2efa27'),(145822,4149,'sub_heading',''),(145823,4149,'_sub_heading','field_6254fdbaefa28'),(145824,4149,'copy',''),(145825,4149,'_copy','field_6254fdc0efa29'),(145826,4149,'copy_wysiwyg',''),(145827,4149,'_copy_wysiwyg','field_6255310ecf4de'),(145828,4149,'icon',''),(145829,4149,'_icon','field_62550482480cb'),(145830,4149,'image',''),(145831,4149,'_image','field_6254fdc5efa2a'),(145832,4149,'mob_image',''),(145833,4149,'_mob_image','field_6254fdcbefa2b'),(145834,4149,'cta',''),(145835,4149,'_cta','field_62551b3e101c4'),(145842,4151,'heading',''),(145843,4151,'_heading','field_6254fdb2efa27'),(145844,4151,'sub_heading',''),(145845,4151,'_sub_heading','field_6254fdbaefa28'),(145846,4151,'copy',''),(145847,4151,'_copy','field_6254fdc0efa29'),(145848,4151,'copy_wysiwyg',''),(145849,4151,'_copy_wysiwyg','field_6255310ecf4de'),(145850,4151,'icon',''),(145851,4151,'_icon','field_62550482480cb'),(145852,4151,'image',''),(145853,4151,'_image','field_6254fdc5efa2a'),(145854,4151,'mob_image',''),(145855,4151,'_mob_image','field_6254fdcbefa2b'),(145856,4151,'cta',''),(145857,4151,'_cta','field_62551b3e101c4'),(145864,4153,'heading',''),(145865,4153,'_heading','field_6254fdb2efa27'),(145866,4153,'sub_heading',''),(145867,4153,'_sub_heading','field_6254fdbaefa28'),(145868,4153,'copy',''),(145869,4153,'_copy','field_6254fdc0efa29'),(145870,4153,'copy_wysiwyg',''),(145871,4153,'_copy_wysiwyg','field_6255310ecf4de'),(145872,4153,'icon',''),(145873,4153,'_icon','field_62550482480cb'),(145874,4153,'image',''),(145875,4153,'_image','field_6254fdc5efa2a'),(145876,4153,'mob_image',''),(145877,4153,'_mob_image','field_6254fdcbefa2b'),(145878,4153,'cta',''),(145879,4153,'_cta','field_62551b3e101c4'),(145880,4154,'heading',''),(145881,4154,'_heading','field_6254fdb2efa27'),(145882,4154,'sub_heading',''),(145883,4154,'_sub_heading','field_6254fdbaefa28'),(145884,4154,'copy',''),(145885,4154,'_copy','field_6254fdc0efa29'),(145886,4154,'copy_wysiwyg',''),(145887,4154,'_copy_wysiwyg','field_6255310ecf4de'),(145888,4154,'icon',''),(145889,4154,'_icon','field_62550482480cb'),(145890,4154,'image',''),(145891,4154,'_image','field_6254fdc5efa2a'),(145892,4154,'mob_image',''),(145893,4154,'_mob_image','field_6254fdcbefa2b'),(145894,4154,'cta',''),(145895,4154,'_cta','field_62551b3e101c4'),(145896,4155,'heading',''),(145897,4155,'_heading','field_6254fdb2efa27'),(145898,4155,'sub_heading',''),(145899,4155,'_sub_heading','field_6254fdbaefa28'),(145900,4155,'copy',''),(145901,4155,'_copy','field_6254fdc0efa29'),(145902,4155,'copy_wysiwyg',''),(145903,4155,'_copy_wysiwyg','field_6255310ecf4de'),(145904,4155,'icon',''),(145905,4155,'_icon','field_62550482480cb'),(145906,4155,'image',''),(145907,4155,'_image','field_6254fdc5efa2a'),(145908,4155,'mob_image',''),(145909,4155,'_mob_image','field_6254fdcbefa2b'),(145910,4155,'cta',''),(145911,4155,'_cta','field_62551b3e101c4'),(145912,4156,'heading',''),(145913,4156,'_heading','field_6254fdb2efa27'),(145914,4156,'sub_heading',''),(145915,4156,'_sub_heading','field_6254fdbaefa28'),(145916,4156,'copy',''),(145917,4156,'_copy','field_6254fdc0efa29'),(145918,4156,'copy_wysiwyg',''),(145919,4156,'_copy_wysiwyg','field_6255310ecf4de'),(145920,4156,'icon',''),(145921,4156,'_icon','field_62550482480cb'),(145922,4156,'image',''),(145923,4156,'_image','field_6254fdc5efa2a'),(145924,4156,'mob_image',''),(145925,4156,'_mob_image','field_6254fdcbefa2b'),(145926,4156,'cta',''),(145927,4156,'_cta','field_62551b3e101c4'),(145928,4157,'heading',''),(145929,4157,'_heading','field_6254fdb2efa27'),(145930,4157,'sub_heading',''),(145931,4157,'_sub_heading','field_6254fdbaefa28'),(145932,4157,'copy',''),(145933,4157,'_copy','field_6254fdc0efa29'),(145934,4157,'copy_wysiwyg',''),(145935,4157,'_copy_wysiwyg','field_6255310ecf4de'),(145936,4157,'icon',''),(145937,4157,'_icon','field_62550482480cb'),(145938,4157,'image',''),(145939,4157,'_image','field_6254fdc5efa2a'),(145940,4157,'mob_image',''),(145941,4157,'_mob_image','field_6254fdcbefa2b'),(145942,4157,'cta',''),(145943,4157,'_cta','field_62551b3e101c4'),(145955,4158,'_wp_attached_file','2022/05/IH-Linkedin-04-4.png'),(145956,4158,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:627;s:4:\"file\";s:28:\"2022/05/IH-Linkedin-04-4.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"IH-Linkedin-04-4-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"IH-Linkedin-04-4-1024x535.png\";s:5:\"width\";i:1024;s:6:\"height\";i:535;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"IH-Linkedin-04-4-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:28:\"IH-Linkedin-04-4-768x401.png\";s:5:\"width\";i:768;s:6:\"height\";i:401;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:28:\"IH-Linkedin-04-4-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(145957,4158,'_imagify_optimization_level','0'),(145958,4158,'_imagify_status','error'),(145959,4158,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(145960,4143,'_thumbnail_id','4158'),(146022,3688,'_wp_page_template','default'),(146025,3688,'heading',''),(146026,3688,'_heading','field_6254fdb2efa27'),(146027,3688,'sub_heading',''),(146028,3688,'_sub_heading','field_6254fdbaefa28'),(146029,3688,'copy',''),(146030,3688,'_copy','field_6254fdc0efa29'),(146031,3688,'copy_wysiwyg',''),(146032,3688,'_copy_wysiwyg','field_6255310ecf4de'),(146033,3688,'icon',''),(146034,3688,'_icon','field_62550482480cb'),(146035,3688,'image',''),(146036,3688,'_image','field_6254fdc5efa2a'),(146037,3688,'mob_image',''),(146038,3688,'_mob_image','field_6254fdcbefa2b'),(146039,3688,'cta',''),(146040,3688,'_cta','field_62551b3e101c4'),(146041,4159,'heading',''),(146042,4159,'_heading','field_6254fdb2efa27'),(146043,4159,'sub_heading',''),(146044,4159,'_sub_heading','field_6254fdbaefa28'),(146045,4159,'copy',''),(146046,4159,'_copy','field_6254fdc0efa29'),(146047,4159,'copy_wysiwyg',''),(146048,4159,'_copy_wysiwyg','field_6255310ecf4de'),(146049,4159,'icon',''),(146050,4159,'_icon','field_62550482480cb'),(146051,4159,'image',''),(146052,4159,'_image','field_6254fdc5efa2a'),(146053,4159,'mob_image',''),(146054,4159,'_mob_image','field_6254fdcbefa2b'),(146055,4159,'cta',''),(146056,4159,'_cta','field_62551b3e101c4'),(146060,3652,'_wp_page_template','default'),(146066,3652,'rs_page_bg_color',''),(146070,3608,'_wp_page_template','default'),(146073,3608,'rs_page_bg_color',''),(146077,3670,'_wp_page_template','default'),(146080,3670,'rs_page_bg_color',''),(146162,4160,'_edit_lock','1654273909:9'),(146163,4160,'_edit_last','9'),(146164,4161,'_wp_attached_file','2022/05/DTI_-_Linkedin_02.png'),(146165,4161,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:627;s:4:\"file\";s:29:\"2022/05/DTI_-_Linkedin_02.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"DTI_-_Linkedin_02-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"DTI_-_Linkedin_02-1024x535.png\";s:5:\"width\";i:1024;s:6:\"height\";i:535;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"DTI_-_Linkedin_02-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:\"DTI_-_Linkedin_02-768x401.png\";s:5:\"width\";i:768;s:6:\"height\";i:401;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:29:\"DTI_-_Linkedin_02-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(146166,4161,'_imagify_optimization_level','0'),(146167,4161,'_imagify_status','error'),(146168,4161,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(146169,4161,'_wp_attachment_image_alt','5 ways you can scale your business'),(146170,4160,'_thumbnail_id','4161'),(146171,4160,'_wp_page_template','default'),(146172,4160,'hefo_before','0'),(146173,4160,'hefo_after','0'),(146174,4160,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(146175,4160,'_yoast_wpseo_metadesc','A great way to scale is by adding other functional aspects to your business that can alleviate time-consuming tasks.'),(146176,4160,'_yoast_wpseo_content_score','60'),(146177,4160,'_yoast_wpseo_focuskeywords','[]'),(146178,4160,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(146179,4160,'_yoast_wpseo_estimated-reading-time-minutes','2'),(146180,4160,'heading',''),(146181,4160,'_heading','field_6254fdb2efa27'),(146182,4160,'sub_heading',''),(146183,4160,'_sub_heading','field_6254fdbaefa28'),(146184,4160,'copy',''),(146185,4160,'_copy','field_6254fdc0efa29'),(146186,4160,'copy_wysiwyg',''),(146187,4160,'_copy_wysiwyg','field_6255310ecf4de'),(146188,4160,'icon',''),(146189,4160,'_icon','field_62550482480cb'),(146190,4160,'image',''),(146191,4160,'_image','field_6254fdc5efa2a'),(146192,4160,'mob_image',''),(146193,4160,'_mob_image','field_6254fdcbefa2b'),(146194,4160,'cta',''),(146195,4160,'_cta','field_62551b3e101c4'),(146196,4162,'heading',''),(146197,4162,'_heading','field_6254fdb2efa27'),(146198,4162,'sub_heading',''),(146199,4162,'_sub_heading','field_6254fdbaefa28'),(146200,4162,'copy',''),(146201,4162,'_copy','field_6254fdc0efa29'),(146202,4162,'copy_wysiwyg',''),(146203,4162,'_copy_wysiwyg','field_6255310ecf4de'),(146204,4162,'icon',''),(146205,4162,'_icon','field_62550482480cb'),(146206,4162,'image',''),(146207,4162,'_image','field_6254fdc5efa2a'),(146208,4162,'mob_image',''),(146209,4162,'_mob_image','field_6254fdcbefa2b'),(146210,4162,'cta',''),(146211,4162,'_cta','field_62551b3e101c4'),(146212,4160,'_yoast_wpseo_primary_category','1027'),(146213,4163,'heading',''),(146214,4163,'_heading','field_6254fdb2efa27'),(146215,4163,'sub_heading',''),(146216,4163,'_sub_heading','field_6254fdbaefa28'),(146217,4163,'copy',''),(146218,4163,'_copy','field_6254fdc0efa29'),(146219,4163,'copy_wysiwyg',''),(146220,4163,'_copy_wysiwyg','field_6255310ecf4de'),(146221,4163,'icon',''),(146222,4163,'_icon','field_62550482480cb'),(146223,4163,'image',''),(146224,4163,'_image','field_6254fdc5efa2a'),(146225,4163,'mob_image',''),(146226,4163,'_mob_image','field_6254fdcbefa2b'),(146227,4163,'cta',''),(146228,4163,'_cta','field_62551b3e101c4'),(146688,4166,'_edit_lock','1654274024:9'),(146689,4166,'_edit_last','9'),(146690,4167,'_wp_attached_file','2022/06/IH-Linkedin-05.png'),(146691,4167,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:627;s:4:\"file\";s:26:\"2022/06/IH-Linkedin-05.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"IH-Linkedin-05-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"IH-Linkedin-05-1024x535.png\";s:5:\"width\";i:1024;s:6:\"height\";i:535;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"IH-Linkedin-05-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:\"IH-Linkedin-05-768x401.png\";s:5:\"width\";i:768;s:6:\"height\";i:401;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:26:\"IH-Linkedin-05-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(146692,4167,'_imagify_optimization_level','0'),(146693,4167,'_imagify_status','success'),(146694,4167,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:320686;s:14:\"optimized_size\";i:276689;s:7:\"percent\";d:13.72;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:180545;s:14:\"optimized_size\";i:60968;s:7:\"percent\";d:66.23;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:204181;s:14:\"optimized_size\";i:84454;s:7:\"percent\";d:58.64;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21934;s:14:\"optimized_size\";i:12770;s:7:\"percent\";d:41.78;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:368670;s:14:\"optimized_size\";i:117968;s:7:\"percent\";d:68;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41177;s:14:\"optimized_size\";i:24210;s:7:\"percent\";d:41.21;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:320686;s:14:\"optimized_size\";i:147270;s:7:\"percent\";d:54.08;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41177;s:14:\"optimized_size\";i:35994;s:7:\"percent\";d:12.59;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:368670;s:14:\"optimized_size\";i:315925;s:7:\"percent\";d:14.31;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21934;s:14:\"optimized_size\";i:19321;s:7:\"percent\";d:11.91;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:204181;s:14:\"optimized_size\";i:176261;s:7:\"percent\";d:13.67;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:180545;s:14:\"optimized_size\";i:153614;s:7:\"percent\";d:14.92;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2274386;s:14:\"optimized_size\";i:1425444;s:7:\"percent\";d:37.33;}}'),(146695,4166,'_thumbnail_id','4167'),(146696,4166,'_wp_page_template','default'),(146697,4166,'hefo_before','0'),(146698,4166,'hefo_after','0'),(146699,4166,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(146700,4166,'_yoast_wpseo_content_score','30'),(146701,4166,'_yoast_wpseo_focuskeywords','[]'),(146702,4166,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(146703,4166,'_yoast_wpseo_estimated-reading-time-minutes','2'),(146704,4166,'heading',''),(146705,4166,'_heading','field_6254fdb2efa27'),(146706,4166,'sub_heading',''),(146707,4166,'_sub_heading','field_6254fdbaefa28'),(146708,4166,'copy',''),(146709,4166,'_copy','field_6254fdc0efa29'),(146710,4166,'copy_wysiwyg',''),(146711,4166,'_copy_wysiwyg','field_6255310ecf4de'),(146712,4166,'icon',''),(146713,4166,'_icon','field_62550482480cb'),(146714,4166,'image',''),(146715,4166,'_image','field_6254fdc5efa2a'),(146716,4166,'mob_image',''),(146717,4166,'_mob_image','field_6254fdcbefa2b'),(146718,4166,'cta',''),(146719,4166,'_cta','field_62551b3e101c4'),(146720,4168,'heading',''),(146721,4168,'_heading','field_6254fdb2efa27'),(146722,4168,'sub_heading',''),(146723,4168,'_sub_heading','field_6254fdbaefa28'),(146724,4168,'copy',''),(146725,4168,'_copy','field_6254fdc0efa29'),(146726,4168,'copy_wysiwyg',''),(146727,4168,'_copy_wysiwyg','field_6255310ecf4de'),(146728,4168,'icon',''),(146729,4168,'_icon','field_62550482480cb'),(146730,4168,'image',''),(146731,4168,'_image','field_6254fdc5efa2a'),(146732,4168,'mob_image',''),(146733,4168,'_mob_image','field_6254fdcbefa2b'),(146734,4168,'cta',''),(146735,4168,'_cta','field_62551b3e101c4'),(146736,4166,'_yoast_wpseo_primary_category','1027'),(146737,4170,'heading',''),(146738,4170,'_heading','field_6254fdb2efa27'),(146739,4170,'sub_heading',''),(146740,4170,'_sub_heading','field_6254fdbaefa28'),(146741,4170,'copy',''),(146742,4170,'_copy','field_6254fdc0efa29'),(146743,4170,'copy_wysiwyg',''),(146744,4170,'_copy_wysiwyg','field_6255310ecf4de'),(146745,4170,'icon',''),(146746,4170,'_icon','field_62550482480cb'),(146747,4170,'image',''),(146748,4170,'_image','field_6254fdc5efa2a'),(146749,4170,'mob_image',''),(146750,4170,'_mob_image','field_6254fdcbefa2b'),(146751,4170,'cta',''),(146752,4170,'_cta','field_62551b3e101c4'),(146753,4169,'heading',''),(146754,4169,'_heading','field_6254fdb2efa27'),(146755,4169,'sub_heading',''),(146756,4169,'_sub_heading','field_6254fdbaefa28'),(146757,4169,'copy',''),(146758,4169,'_copy','field_6254fdc0efa29'),(146759,4169,'copy_wysiwyg',''),(146760,4169,'_copy_wysiwyg','field_6255310ecf4de'),(146761,4169,'icon',''),(146762,4169,'_icon','field_62550482480cb'),(146763,4169,'image',''),(146764,4169,'_image','field_6254fdc5efa2a'),(146765,4169,'mob_image',''),(146766,4169,'_mob_image','field_6254fdcbefa2b'),(146767,4169,'cta',''),(146768,4169,'_cta','field_62551b3e101c4'),(146769,4171,'heading',''),(146770,4171,'_heading','field_6254fdb2efa27'),(146771,4171,'sub_heading',''),(146772,4171,'_sub_heading','field_6254fdbaefa28'),(146773,4171,'copy',''),(146774,4171,'_copy','field_6254fdc0efa29'),(146775,4171,'copy_wysiwyg',''),(146776,4171,'_copy_wysiwyg','field_6255310ecf4de'),(146777,4171,'icon',''),(146778,4171,'_icon','field_62550482480cb'),(146779,4171,'image',''),(146780,4171,'_image','field_6254fdc5efa2a'),(146781,4171,'mob_image',''),(146782,4171,'_mob_image','field_6254fdcbefa2b'),(146783,4171,'cta',''),(146784,4171,'_cta','field_62551b3e101c4'),(146998,4175,'_edit_lock','1654547910:9'),(146999,4175,'_edit_last','9'),(147000,4176,'_wp_attached_file','2022/06/DTI-Linkedin-04.png'),(147001,4176,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:627;s:4:\"file\";s:27:\"2022/06/DTI-Linkedin-04.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"DTI-Linkedin-04-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"DTI-Linkedin-04-1024x535.png\";s:5:\"width\";i:1024;s:6:\"height\";i:535;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"DTI-Linkedin-04-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:27:\"DTI-Linkedin-04-768x401.png\";s:5:\"width\";i:768;s:6:\"height\";i:401;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:27:\"DTI-Linkedin-04-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(147002,4176,'_imagify_optimization_level','0'),(147003,4176,'_imagify_status','success'),(147004,4176,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:409475;s:14:\"optimized_size\";i:349906;s:7:\"percent\";d:14.55;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:241648;s:14:\"optimized_size\";i:73672;s:7:\"percent\";d:69.51;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:269305;s:14:\"optimized_size\";i:87478;s:7:\"percent\";d:67.52;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29121;s:14:\"optimized_size\";i:14774;s:7:\"percent\";d:49.27;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:478893;s:14:\"optimized_size\";i:127208;s:7:\"percent\";d:73.44;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52579;s:14:\"optimized_size\";i:23278;s:7:\"percent\";d:55.73;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:409475;s:14:\"optimized_size\";i:162178;s:7:\"percent\";d:60.39;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52579;s:14:\"optimized_size\";i:45152;s:7:\"percent\";d:14.13;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:478893;s:14:\"optimized_size\";i:406140;s:7:\"percent\";d:15.19;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29121;s:14:\"optimized_size\";i:25167;s:7:\"percent\";d:13.58;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:269305;s:14:\"optimized_size\";i:229786;s:7:\"percent\";d:14.67;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:241648;s:14:\"optimized_size\";i:204947;s:7:\"percent\";d:15.19;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2962042;s:14:\"optimized_size\";i:1749686;s:7:\"percent\";d:40.93;}}'),(147005,4176,'_wp_attachment_image_alt','why is zero trust important?'),(147006,4175,'_thumbnail_id','4176'),(147007,4175,'_wp_page_template','default'),(147008,4175,'hefo_before','0'),(147009,4175,'hefo_after','0'),(147010,4175,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(147011,4175,'_yoast_wpseo_content_score','30'),(147012,4175,'_yoast_wpseo_focuskeywords','[]'),(147013,4175,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(147014,4175,'_yoast_wpseo_estimated-reading-time-minutes','2'),(147015,4175,'heading',''),(147016,4175,'_heading','field_6254fdb2efa27'),(147017,4175,'sub_heading',''),(147018,4175,'_sub_heading','field_6254fdbaefa28'),(147019,4175,'copy',''),(147020,4175,'_copy','field_6254fdc0efa29'),(147021,4175,'copy_wysiwyg',''),(147022,4175,'_copy_wysiwyg','field_6255310ecf4de'),(147023,4175,'icon',''),(147024,4175,'_icon','field_62550482480cb'),(147025,4175,'image',''),(147026,4175,'_image','field_6254fdc5efa2a'),(147027,4175,'mob_image',''),(147028,4175,'_mob_image','field_6254fdcbefa2b'),(147029,4175,'cta',''),(147030,4175,'_cta','field_62551b3e101c4'),(147031,4177,'heading',''),(147032,4177,'_heading','field_6254fdb2efa27'),(147033,4177,'sub_heading',''),(147034,4177,'_sub_heading','field_6254fdbaefa28'),(147035,4177,'copy',''),(147036,4177,'_copy','field_6254fdc0efa29'),(147037,4177,'copy_wysiwyg',''),(147038,4177,'_copy_wysiwyg','field_6255310ecf4de'),(147039,4177,'icon',''),(147040,4177,'_icon','field_62550482480cb'),(147041,4177,'image',''),(147042,4177,'_image','field_6254fdc5efa2a'),(147043,4177,'mob_image',''),(147044,4177,'_mob_image','field_6254fdcbefa2b'),(147045,4177,'cta',''),(147046,4177,'_cta','field_62551b3e101c4'),(147047,4175,'_yoast_wpseo_primary_category','1027'),(147048,4178,'heading',''),(147049,4178,'_heading','field_6254fdb2efa27'),(147050,4178,'sub_heading',''),(147051,4178,'_sub_heading','field_6254fdbaefa28'),(147052,4178,'copy',''),(147053,4178,'_copy','field_6254fdc0efa29'),(147054,4178,'copy_wysiwyg',''),(147055,4178,'_copy_wysiwyg','field_6255310ecf4de'),(147056,4178,'icon',''),(147057,4178,'_icon','field_62550482480cb'),(147058,4178,'image',''),(147059,4178,'_image','field_6254fdc5efa2a'),(147060,4178,'mob_image',''),(147061,4178,'_mob_image','field_6254fdcbefa2b'),(147062,4178,'cta',''),(147063,4178,'_cta','field_62551b3e101c4'),(147069,4179,'heading',''),(147070,4179,'_heading','field_6254fdb2efa27'),(147071,4179,'sub_heading',''),(147072,4179,'_sub_heading','field_6254fdbaefa28'),(147073,4179,'copy',''),(147074,4179,'_copy','field_6254fdc0efa29'),(147075,4179,'copy_wysiwyg',''),(147076,4179,'_copy_wysiwyg','field_6255310ecf4de'),(147077,4179,'icon',''),(147078,4179,'_icon','field_62550482480cb'),(147079,4179,'image',''),(147080,4179,'_image','field_6254fdc5efa2a'),(147081,4179,'mob_image',''),(147082,4179,'_mob_image','field_6254fdcbefa2b'),(147083,4179,'cta',''),(147084,4179,'_cta','field_62551b3e101c4'),(147184,4180,'_edit_lock','1654713984:9'),(147185,4180,'_edit_last','9'),(147186,4181,'_wp_attached_file','2022/06/WHAT-Linkedin-04.png'),(147187,4181,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:627;s:4:\"file\";s:28:\"2022/06/WHAT-Linkedin-04.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"WHAT-Linkedin-04-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"WHAT-Linkedin-04-1024x535.png\";s:5:\"width\";i:1024;s:6:\"height\";i:535;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"WHAT-Linkedin-04-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:28:\"WHAT-Linkedin-04-768x401.png\";s:5:\"width\";i:768;s:6:\"height\";i:401;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:28:\"WHAT-Linkedin-04-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(147188,4181,'_imagify_optimization_level','0'),(147189,4181,'_imagify_status','success'),(147190,4181,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:453709;s:14:\"optimized_size\";i:386446;s:7:\"percent\";d:14.83;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:241810;s:14:\"optimized_size\";i:59778;s:7:\"percent\";d:75.28;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:265598;s:14:\"optimized_size\";i:77386;s:7:\"percent\";d:70.86;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23559;s:14:\"optimized_size\";i:9832;s:7:\"percent\";d:58.27;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:503066;s:14:\"optimized_size\";i:121980;s:7:\"percent\";d:75.75;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:42587;s:14:\"optimized_size\";i:19528;s:7:\"percent\";d:54.15;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:453709;s:14:\"optimized_size\";i:178066;s:7:\"percent\";d:60.75;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:42587;s:14:\"optimized_size\";i:36944;s:7:\"percent\";d:13.25;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:503066;s:14:\"optimized_size\";i:429014;s:7:\"percent\";d:14.72;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23559;s:14:\"optimized_size\";i:20536;s:7:\"percent\";d:12.83;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:265598;s:14:\"optimized_size\";i:231171;s:7:\"percent\";d:12.96;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:241810;s:14:\"optimized_size\";i:203999;s:7:\"percent\";d:15.64;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3060658;s:14:\"optimized_size\";i:1774680;s:7:\"percent\";d:42.02;}}'),(147191,4180,'_thumbnail_id','4181'),(147192,4180,'_wp_page_template','default'),(147193,4180,'hefo_before','0'),(147194,4180,'hefo_after','0'),(147195,4180,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(147196,4180,'_yoast_wpseo_content_score','30'),(147197,4180,'_yoast_wpseo_focuskeywords','[]'),(147198,4180,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(147199,4180,'_yoast_wpseo_estimated-reading-time-minutes','2'),(147200,4180,'heading',''),(147201,4180,'_heading','field_6254fdb2efa27'),(147202,4180,'sub_heading',''),(147203,4180,'_sub_heading','field_6254fdbaefa28'),(147204,4180,'copy',''),(147205,4180,'_copy','field_6254fdc0efa29'),(147206,4180,'copy_wysiwyg',''),(147207,4180,'_copy_wysiwyg','field_6255310ecf4de'),(147208,4180,'icon',''),(147209,4180,'_icon','field_62550482480cb'),(147210,4180,'image',''),(147211,4180,'_image','field_6254fdc5efa2a'),(147212,4180,'mob_image',''),(147213,4180,'_mob_image','field_6254fdcbefa2b'),(147214,4180,'cta',''),(147215,4180,'_cta','field_62551b3e101c4'),(147216,4182,'heading',''),(147217,4182,'_heading','field_6254fdb2efa27'),(147218,4182,'sub_heading',''),(147219,4182,'_sub_heading','field_6254fdbaefa28'),(147220,4182,'copy',''),(147221,4182,'_copy','field_6254fdc0efa29'),(147222,4182,'copy_wysiwyg',''),(147223,4182,'_copy_wysiwyg','field_6255310ecf4de'),(147224,4182,'icon',''),(147225,4182,'_icon','field_62550482480cb'),(147226,4182,'image',''),(147227,4182,'_image','field_6254fdc5efa2a'),(147228,4182,'mob_image',''),(147229,4182,'_mob_image','field_6254fdcbefa2b'),(147230,4182,'cta',''),(147231,4182,'_cta','field_62551b3e101c4'),(147232,4180,'_yoast_wpseo_primary_category','1027'),(147233,4183,'heading',''),(147234,4183,'_heading','field_6254fdb2efa27'),(147235,4183,'sub_heading',''),(147236,4183,'_sub_heading','field_6254fdbaefa28'),(147237,4183,'copy',''),(147238,4183,'_copy','field_6254fdc0efa29'),(147239,4183,'copy_wysiwyg',''),(147240,4183,'_copy_wysiwyg','field_6255310ecf4de'),(147241,4183,'icon',''),(147242,4183,'_icon','field_62550482480cb'),(147243,4183,'image',''),(147244,4183,'_image','field_6254fdc5efa2a'),(147245,4183,'mob_image',''),(147246,4183,'_mob_image','field_6254fdcbefa2b'),(147247,4183,'cta',''),(147248,4183,'_cta','field_62551b3e101c4'),(147249,4184,'heading',''),(147250,4184,'_heading','field_6254fdb2efa27'),(147251,4184,'sub_heading',''),(147252,4184,'_sub_heading','field_6254fdbaefa28'),(147253,4184,'copy',''),(147254,4184,'_copy','field_6254fdc0efa29'),(147255,4184,'copy_wysiwyg',''),(147256,4184,'_copy_wysiwyg','field_6255310ecf4de'),(147257,4184,'icon',''),(147258,4184,'_icon','field_62550482480cb'),(147259,4184,'image',''),(147260,4184,'_image','field_6254fdc5efa2a'),(147261,4184,'mob_image',''),(147262,4184,'_mob_image','field_6254fdcbefa2b'),(147263,4184,'cta',''),(147264,4184,'_cta','field_62551b3e101c4'),(147336,4185,'_edit_lock','1661522431:21'),(147337,4185,'_edit_last','9'),(147338,4185,'_wp_page_template','default'),(147339,4185,'hefo_before','0'),(147340,4185,'hefo_after','0'),(147341,4185,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(147342,4185,'_yoast_wpseo_content_score','60'),(147343,4185,'_yoast_wpseo_focuskeywords','[]'),(147344,4185,'_yoast_wpseo_keywordsynonyms','[\"\"]'),(147345,4185,'_yoast_wpseo_estimated-reading-time-minutes','1'),(147346,4185,'heading',''),(147347,4185,'_heading','field_6254fdb2efa27'),(147348,4185,'sub_heading',''),(147349,4185,'_sub_heading','field_6254fdbaefa28'),(147350,4185,'copy',''),(147351,4185,'_copy','field_6254fdc0efa29'),(147352,4185,'copy_wysiwyg',''),(147353,4185,'_copy_wysiwyg','field_6255310ecf4de'),(147354,4185,'icon',''),(147355,4185,'_icon','field_62550482480cb'),(147356,4185,'image',''),(147357,4185,'_image','field_6254fdc5efa2a'),(147358,4185,'mob_image',''),(147359,4185,'_mob_image','field_6254fdcbefa2b'),(147360,4185,'cta',''),(147361,4185,'_cta','field_62551b3e101c4'),(147362,4186,'heading',''),(147363,4186,'_heading','field_6254fdb2efa27'),(147364,4186,'sub_heading',''),(147365,4186,'_sub_heading','field_6254fdbaefa28'),(147366,4186,'copy',''),(147367,4186,'_copy','field_6254fdc0efa29'),(147368,4186,'copy_wysiwyg',''),(147369,4186,'_copy_wysiwyg','field_6255310ecf4de'),(147370,4186,'icon',''),(147371,4186,'_icon','field_62550482480cb'),(147372,4186,'image',''),(147373,4186,'_image','field_6254fdc5efa2a'),(147374,4186,'mob_image',''),(147375,4186,'_mob_image','field_6254fdcbefa2b'),(147376,4186,'cta',''),(147377,4186,'_cta','field_62551b3e101c4'),(147378,4185,'_yoast_wpseo_primary_category','1027'),(147379,4187,'_wp_attached_file','2022/06/How-Translucent-is-changing-the-Cloud-Native-industry.png'),(147380,4187,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:627;s:4:\"file\";s:65:\"2022/06/How-Translucent-is-changing-the-Cloud-Native-industry.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:65:\"How-Translucent-is-changing-the-Cloud-Native-industry-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:66:\"How-Translucent-is-changing-the-Cloud-Native-industry-1024x535.png\";s:5:\"width\";i:1024;s:6:\"height\";i:535;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:65:\"How-Translucent-is-changing-the-Cloud-Native-industry-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:65:\"How-Translucent-is-changing-the-Cloud-Native-industry-768x401.png\";s:5:\"width\";i:768;s:6:\"height\";i:401;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:65:\"How-Translucent-is-changing-the-Cloud-Native-industry-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(147381,4187,'_wp_attachment_image_alt','How Translucent is changing the Cloud Native industry'),(147382,4187,'_imagify_optimization_level','0'),(147383,4187,'_imagify_status','success'),(147384,4187,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:460623;s:14:\"optimized_size\";i:379528;s:7:\"percent\";d:17.61;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:207462;s:14:\"optimized_size\";i:62656;s:7:\"percent\";d:69.8;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:209689;s:14:\"optimized_size\";i:78824;s:7:\"percent\";d:62.41;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22591;s:14:\"optimized_size\";i:13950;s:7:\"percent\";d:38.25;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:391631;s:14:\"optimized_size\";i:107304;s:7:\"percent\";d:72.6;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34168;s:14:\"optimized_size\";i:21750;s:7:\"percent\";d:36.34;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:460623;s:14:\"optimized_size\";i:136566;s:7:\"percent\";d:70.35;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34168;s:14:\"optimized_size\";i:27870;s:7:\"percent\";d:18.43;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:391631;s:14:\"optimized_size\";i:329400;s:7:\"percent\";d:15.89;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22591;s:14:\"optimized_size\";i:19010;s:7:\"percent\";d:15.85;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:209689;s:14:\"optimized_size\";i:179171;s:7:\"percent\";d:14.55;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:207462;s:14:\"optimized_size\";i:170043;s:7:\"percent\";d:18.04;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2652328;s:14:\"optimized_size\";i:1526072;s:7:\"percent\";d:42.46;}}'),(147385,4185,'_thumbnail_id','4187'),(147386,4188,'heading',''),(147387,4188,'_heading','field_6254fdb2efa27'),(147388,4188,'sub_heading',''),(147389,4188,'_sub_heading','field_6254fdbaefa28'),(147390,4188,'copy',''),(147391,4188,'_copy','field_6254fdc0efa29'),(147392,4188,'copy_wysiwyg',''),(147393,4188,'_copy_wysiwyg','field_6255310ecf4de'),(147394,4188,'icon',''),(147395,4188,'_icon','field_62550482480cb'),(147396,4188,'image',''),(147397,4188,'_image','field_6254fdc5efa2a'),(147398,4188,'mob_image',''),(147399,4188,'_mob_image','field_6254fdcbefa2b'),(147400,4188,'cta',''),(147401,4188,'_cta','field_62551b3e101c4'),(147415,4189,'heading',''),(147416,4189,'_heading','field_6254fdb2efa27'),(147417,4189,'sub_heading',''),(147418,4189,'_sub_heading','field_6254fdbaefa28'),(147419,4189,'copy',''),(147420,4189,'_copy','field_6254fdc0efa29'),(147421,4189,'copy_wysiwyg',''),(147422,4189,'_copy_wysiwyg','field_6255310ecf4de'),(147423,4189,'icon',''),(147424,4189,'_icon','field_62550482480cb'),(147425,4189,'image',''),(147426,4189,'_image','field_6254fdc5efa2a'),(147427,4189,'mob_image',''),(147428,4189,'_mob_image','field_6254fdcbefa2b'),(147429,4189,'cta',''),(147430,4189,'_cta','field_62551b3e101c4'),(147448,1915,'_pinterest_shares','0'),(147449,1915,'_total_shares','0'),(147450,1915,'swp_cache_timestamp','459667'),(147466,1,'_pinterest_shares','0'),(147467,1,'_total_shares','0'),(147468,1,'swp_cache_timestamp','459673'),(147737,4194,'flexible_templates','a:8:{i:0;s:16:\"tek-teams-banner\";i:1;s:20:\"tek-teams-two-column\";i:2;s:14:\"tek-team-about\";i:3;s:21:\"tek-teams-development\";i:4;s:18:\"tek_teams_benifits\";i:5;s:17:\"tek-team-whats-is\";i:6;s:34:\"tek-teams-translucent-differential\";i:7;s:17:\"lets_talk_section\";}'),(147738,4194,'_flexible_templates','field_6254f4d84ef9b'),(147739,4194,'flexible_templates_0_image','4066'),(147740,4194,'_flexible_templates_0_image','field_6255038c2e6ae_field_6254fdc5efa2a'),(147741,4194,'flexible_templates_0_mob_image','4067'),(147742,4194,'_flexible_templates_0_mob_image','field_625503db2e6af_field_6254fdcbefa2b'),(147743,4194,'flexible_templates_0_icon','4068'),(147744,4194,'_flexible_templates_0_icon','field_6255095042ef2_field_62550482480cb'),(147745,4194,'flexible_templates_0_heading','TEKTeams'),(147746,4194,'_flexible_templates_0_heading','field_6255096442ef3_field_6254fdb2efa27'),(147747,4194,'flexible_templates_0_sub_heading','TEK™ WORLD'),(147748,4194,'_flexible_templates_0_sub_heading','field_6255097642ef4_field_6254fdbaefa28'),(147749,4194,'flexible_templates_1_heading','Gain access to top 1% tech talent with a trusted partner that delivers cloud native solutions and value.'),(147750,4194,'_flexible_templates_1_heading','field_62551ac3a6f96_field_6254fdb2efa27'),(147751,4194,'flexible_templates_1_sub_heading','THE TEAM YOU NEED'),(147752,4194,'_flexible_templates_1_sub_heading','field_62551ae4a6f97_field_6254fdbaefa28'),(147753,4194,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(147754,4194,'_flexible_templates_1_cta','field_62551b56a6f98_field_62551b3e101c4'),(147755,4194,'flexible_templates_1_copy','The best technology. The best people. Access tailored software engineering teams with industry-specific experience without the hassle of hiring and maintaining internal teams. We understand how hard it is to acquire and retain top talent, and we take the pressure off HR. Focus on your business while we take lead for the delivery and execution of the project.'),(147756,4194,'_flexible_templates_1_copy','field_62551b74a6f99_field_6254fdc0efa29'),(147757,4194,'flexible_templates_2_image','4069'),(147758,4194,'_flexible_templates_2_image','field_625523de9609f_field_6254fdc5efa2a'),(147759,4194,'flexible_templates_2_mob_image','4070'),(147760,4194,'_flexible_templates_2_mob_image','field_625523f4960a0_field_6254fdcbefa2b'),(147761,4194,'flexible_templates_2_icon','4071'),(147762,4194,'_flexible_templates_2_icon','field_6255246d960a1_field_62550482480cb'),(147763,4194,'flexible_templates_2_heading','What are TEKTeams?'),(147764,4194,'_flexible_templates_2_heading','field_62552482960a2_field_6254fdb2efa27'),(147765,4194,'flexible_templates_2_copy','TEKTeams are your dedicated development teams built on Translucent principles that, as part of the TEK ecosystem, combine trust, processes, people, and technology to deliver value.\r\n
\r\nTranslucent has created a process that brings together the best people in the industry with various skills to develop and maintain the highest quality software. \r\n
\r\nA perfect combination of roles, talent, skillset, and the right work environment.TEKTeams provide the precise expertise your organization needs to execute a project successfully.\r\n
\r\n'),(147766,4194,'_flexible_templates_2_copy','field_625525b15629c'),(147767,4194,'flexible_templates_2_content_right','Our onshore/nearshore model combines resources across the Americas to overcome challenges your project might encounter; we work closely alongside your company staff to attain your business goals. \r\n
\r\nIncrease the number of resources you have on hand to help you develop and manage intelligent applications and platforms. \r\n
\r\nTEKTeams are the most cost-effective way to get the talent you need for your cloud native projects without taking up all of your time or budget.'),(147768,4194,'_flexible_templates_2_content_right','field_625525ba5629d'),(147769,4194,'flexible_templates_3_image','4072'),(147770,4194,'_flexible_templates_3_image','field_62552ada52711_field_6254fdc5efa2a'),(147771,4194,'flexible_templates_3_mob_image','4073'),(147772,4194,'_flexible_templates_3_mob_image','field_62552aed52712_field_6254fdcbefa2b'),(147773,4194,'flexible_templates_3_icon','4074'),(147774,4194,'_flexible_templates_3_icon','field_62552b7652713_field_62550482480cb'),(147775,4194,'flexible_templates_3_heading','Get started with the best resources for your project'),(147776,4194,'_flexible_templates_3_heading','field_62552baf52715_field_6254fdb2efa27'),(147777,4194,'flexible_templates_3_copy','Our tailored software engineering teams help your business develop and manage smarter apps. We match business goals to the right technology and teams to drive better results. With TEKTeams you get access to the best of the best resources for your cloud native projects at a price you can afford, with the capacity to scale as needed, according to your demands. Here is what to expect working with TEKTeams:'),(147778,4194,'_flexible_templates_3_copy','field_62552b8552714_field_6254fdc0efa29'),(147779,4194,'flexible_templates_3_development_team_steps_0_icon','4075'),(147780,4194,'_flexible_templates_3_development_team_steps_0_icon','field_62552cdb784a9_field_62550482480cb'),(147781,4194,'flexible_templates_3_development_team_steps_0_heading','A trusted tech partner'),(147782,4194,'_flexible_templates_3_development_team_steps_0_heading','field_62552ced784aa_field_6254fdb2efa27'),(147783,4194,'flexible_templates_3_development_team_steps_0_copy','

Increase your workforce by partnering with the top 1% teams tailored to your business needs

\r\n

We will explain and document the entire development process and make sure to meet business and project objectives

\r\n

Scale your teams as needed with a global network united as one

'),(147784,4194,'_flexible_templates_3_development_team_steps_0_copy','field_62552cfe784ab_field_6254fdc0efa29'),(147785,4194,'flexible_templates_3_development_team_steps_1_icon','4076'),(147786,4194,'_flexible_templates_3_development_team_steps_1_icon','field_62552cdb784a9_field_62550482480cb'),(147787,4194,'flexible_templates_3_development_team_steps_1_heading','Break down vision into requirements'),(147788,4194,'_flexible_templates_3_development_team_steps_1_heading','field_62552ced784aa_field_6254fdb2efa27'),(147789,4194,'flexible_templates_3_development_team_steps_1_copy','

We will validate your idea with a future vision that is in sync with the realities that your business is currently facing

\r\n

Cloud native solutions make it possible to work within clients\' budgets

\r\n

Planning, execution, support, best practices, and experience in breaking down the concept into a user stories tech road map

'),(147790,4194,'_flexible_templates_3_development_team_steps_1_copy','field_62552cfe784ab_field_6254fdc0efa29'),(147791,4194,'flexible_templates_3_development_team_steps_2_icon','4077'),(147792,4194,'_flexible_templates_3_development_team_steps_2_icon','field_62552cdb784a9_field_62550482480cb'),(147793,4194,'flexible_templates_3_development_team_steps_2_heading','Build your team and start innovating'),(147794,4194,'_flexible_templates_3_development_team_steps_2_heading','field_62552ced784aa_field_6254fdb2efa27'),(147795,4194,'flexible_templates_3_development_team_steps_2_copy',' The Team You Need For Your Cloud Native Project:\r\n

Expanding your workforce is easier than you think, with TEKTeams, you can quickly and affordably grow your company with teams to cover all of your business needs

\r\n

With the right team behind your project, you\'ll get better results, more quickly

\r\n\r\n'),(147796,4194,'_flexible_templates_3_development_team_steps_2_copy','field_62552cfe784ab_field_6254fdc0efa29'),(147797,4194,'flexible_templates_3_development_team_steps','3'),(147798,4194,'_flexible_templates_3_development_team_steps','field_62552cbb784a8'),(147799,4194,'flexible_templates_3_cta','a:3:{s:5:\"title\";s:11:\"Gain Access\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(147800,4194,'_flexible_templates_3_cta','field_62552c6a784a7_field_62551b3e101c4'),(147801,4194,'flexible_templates_4_image','4078'),(147802,4194,'_flexible_templates_4_image','field_625538ef16bb0_field_6254fdc5efa2a'),(147803,4194,'flexible_templates_4_mob_image','4079'),(147804,4194,'_flexible_templates_4_mob_image','field_6255391616bb1_field_6254fdcbefa2b'),(147805,4194,'flexible_templates_4_icon','4080'),(147806,4194,'_flexible_templates_4_icon','field_62553d28bca93_field_62550482480cb'),(147807,4194,'flexible_templates_4_heading','Benefits of TEKTeams'),(147808,4194,'_flexible_templates_4_heading','field_6255397e16bb2_field_6254fdb2efa27'),(147809,4194,'flexible_templates_4_development_team_steps_0_icon','4086'),(147810,4194,'_flexible_templates_4_development_team_steps_0_icon','field_625539a816bb4_field_62550482480cb'),(147811,4194,'flexible_templates_4_development_team_steps_0_heading','Fully Managed'),(147812,4194,'_flexible_templates_4_development_team_steps_0_heading','field_625539a816bb5_field_6254fdb2efa27'),(147813,4194,'flexible_templates_4_development_team_steps_0_copy','Translucent is responsible for hiring, managing, and delivering technical expertise from start to finish. Avoid hiring and team management issues.'),(147814,4194,'_flexible_templates_4_development_team_steps_0_copy','field_625539a816bb6_field_6254fdc0efa29'),(147815,4194,'flexible_templates_4_development_team_steps_1_icon','4085'),(147816,4194,'_flexible_templates_4_development_team_steps_1_icon','field_625539a816bb4_field_62550482480cb'),(147817,4194,'flexible_templates_4_development_team_steps_1_heading','Remote'),(147818,4194,'_flexible_templates_4_development_team_steps_1_heading','field_625539a816bb5_field_6254fdb2efa27'),(147819,4194,'flexible_templates_4_development_team_steps_1_copy','Completely remote. Save office space and gain more time for your employees. Over the last 12 years, we have perfected a remote software development system called TEKProcess.'),(147820,4194,'_flexible_templates_4_development_team_steps_1_copy','field_625539a816bb6_field_6254fdc0efa29'),(147821,4194,'flexible_templates_4_development_team_steps_2_icon','4084'),(147822,4194,'_flexible_templates_4_development_team_steps_2_icon','field_625539a816bb4_field_62550482480cb'),(147823,4194,'flexible_templates_4_development_team_steps_2_heading','Access to Translucent Experts'),(147824,4194,'_flexible_templates_4_development_team_steps_2_heading','field_625539a816bb5_field_6254fdb2efa27'),(147825,4194,'flexible_templates_4_development_team_steps_2_copy','Part of working with TEKTeams is access to our software architects and tech leads at no extra cost.'),(147826,4194,'_flexible_templates_4_development_team_steps_2_copy','field_625539a816bb6_field_6254fdc0efa29'),(147827,4194,'flexible_templates_4_development_team_steps_3_icon','4083'),(147828,4194,'_flexible_templates_4_development_team_steps_3_icon','field_625539a816bb4_field_62550482480cb'),(147829,4194,'flexible_templates_4_development_team_steps_3_heading','Access to Top Tech Talent'),(147830,4194,'_flexible_templates_4_development_team_steps_3_heading','field_625539a816bb5_field_6254fdb2efa27'),(147831,4194,'flexible_templates_4_development_team_steps_3_copy','Our proven hiring and continuous employee improvement processes ensure that only top talent works on each project.'),(147832,4194,'_flexible_templates_4_development_team_steps_3_copy','field_625539a816bb6_field_6254fdc0efa29'),(147833,4194,'flexible_templates_4_development_team_steps_4_icon','4082'),(147834,4194,'_flexible_templates_4_development_team_steps_4_icon','field_625539a816bb4_field_62550482480cb'),(147835,4194,'flexible_templates_4_development_team_steps_4_heading','Team Scalability'),(147836,4194,'_flexible_templates_4_development_team_steps_4_heading','field_625539a816bb5_field_6254fdb2efa27'),(147837,4194,'flexible_templates_4_development_team_steps_4_copy','On-demand resources are ready when you need to scale the team to meet business demands.'),(147838,4194,'_flexible_templates_4_development_team_steps_4_copy','field_625539a816bb6_field_6254fdc0efa29'),(147839,4194,'flexible_templates_4_development_team_steps_5_icon','4081'),(147840,4194,'_flexible_templates_4_development_team_steps_5_icon','field_625539a816bb4_field_62550482480cb'),(147841,4194,'flexible_templates_4_development_team_steps_5_heading','Start Your Journey Now'),(147842,4194,'_flexible_templates_4_development_team_steps_5_heading','field_625539a816bb5_field_6254fdb2efa27'),(147843,4194,'flexible_templates_4_development_team_steps_5_copy','Our TEKTeams are ready to help you now.'),(147844,4194,'_flexible_templates_4_development_team_steps_5_copy','field_625539a816bb6_field_6254fdc0efa29'),(147845,4194,'flexible_templates_4_development_team_steps','6'),(147846,4194,'_flexible_templates_4_development_team_steps','field_625539a816bb3'),(147847,4194,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:13:\"Start Scaling\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(147848,4194,'_flexible_templates_4_cta','field_625539ce16bb7_field_62551b3e101c4'),(147849,4194,'flexible_templates_5_image','4087'),(147850,4194,'_flexible_templates_5_image','field_62553e7d5dd54_field_6254fdc5efa2a'),(147851,4194,'flexible_templates_5_mob_image','4088'),(147852,4194,'_flexible_templates_5_mob_image','field_62553eab5dd55_field_6254fdcbefa2b'),(147853,4194,'flexible_templates_5_icon','4089'),(147854,4194,'_flexible_templates_5_icon','field_62553eee5dd56_field_62550482480cb'),(147855,4194,'flexible_templates_5_heading','The team you need for your cloud native project'),(147856,4194,'_flexible_templates_5_heading','field_62553f075dd57_field_6254fdb2efa27'),(147857,4194,'flexible_templates_5_heading_mobile','The team you need for your cloud native project'),(147858,4194,'_flexible_templates_5_heading_mobile','field_62553f185dd58'),(147859,4194,'flexible_templates_5_copy','We help companies build and scale smart applications, working together to achieve the best results by pairing them with our award-winning team of experts. That includes project managers, senior developers, and QA specialists who have been handpicked to execute on specific goals.'),(147860,4194,'_flexible_templates_5_copy','field_62553f315dd59_field_6254fdc0efa29'),(147861,4194,'flexible_templates_5_development_team_steps_0_icon','4090'),(147862,4194,'_flexible_templates_5_development_team_steps_0_icon','field_625540b262816_field_62550482480cb'),(147863,4194,'flexible_templates_5_development_team_steps_0_heading','Frontend Engineers'),(147864,4194,'_flexible_templates_5_development_team_steps_0_heading','field_625540b262817_field_6254fdb2efa27'),(147865,4194,'flexible_templates_5_development_team_steps_0_copy','Responsible for the development of the user interface of an application. They are always in demand, but with TEKTeams you get access on demand. '),(147866,4194,'_flexible_templates_5_development_team_steps_0_copy','field_625540b262818_field_6254fdc0efa29'),(147867,4194,'flexible_templates_5_development_team_steps_1_icon','4091'),(147868,4194,'_flexible_templates_5_development_team_steps_1_icon','field_625540b262816_field_62550482480cb'),(147869,4194,'flexible_templates_5_development_team_steps_1_heading','QA Engineers'),(147870,4194,'_flexible_templates_5_development_team_steps_1_heading','field_625540b262817_field_6254fdb2efa27'),(147871,4194,'flexible_templates_5_development_team_steps_1_copy','The quality of a product is vital to its success, and without a quality assurance engineer, that quality is compromised. Our QA engineers ensure each product is thoroughly tested to provide the best possible user experience.'),(147872,4194,'_flexible_templates_5_development_team_steps_1_copy','field_625540b262818_field_6254fdc0efa29'),(147873,4194,'flexible_templates_5_development_team_steps_2_icon','4092'),(147874,4194,'_flexible_templates_5_development_team_steps_2_icon','field_625540b262816_field_62550482480cb'),(147875,4194,'flexible_templates_5_development_team_steps_2_heading','Business Analysts'),(147876,4194,'_flexible_templates_5_development_team_steps_2_heading','field_625540b262817_field_6254fdb2efa27'),(147877,4194,'flexible_templates_5_development_team_steps_2_copy','These agile workers help bridge the gap between the IT team and the business, improving overall efficiency through data analysis of processes, products, services, and software.'),(147878,4194,'_flexible_templates_5_development_team_steps_2_copy','field_625540b262818_field_6254fdc0efa29'),(147879,4194,'flexible_templates_5_development_team_steps_3_icon','4093'),(147880,4194,'_flexible_templates_5_development_team_steps_3_icon','field_625540b262816_field_62550482480cb'),(147881,4194,'flexible_templates_5_development_team_steps_3_heading','Backend Engineers'),(147882,4194,'_flexible_templates_5_development_team_steps_3_heading','field_625540b262817_field_6254fdb2efa27'),(147883,4194,'flexible_templates_5_development_team_steps_3_copy','Backend engineers build the structure of a software application. They work on designing, building, and maintaining the server components of web applications. '),(147884,4194,'_flexible_templates_5_development_team_steps_3_copy','field_625540b262818_field_6254fdc0efa29'),(147885,4194,'flexible_templates_5_development_team_steps_4_icon','4094'),(147886,4194,'_flexible_templates_5_development_team_steps_4_icon','field_625540b262816_field_62550482480cb'),(147887,4194,'flexible_templates_5_development_team_steps_4_heading','UX/UI Designers'),(147888,4194,'_flexible_templates_5_development_team_steps_4_heading','field_625540b262817_field_6254fdb2efa27'),(147889,4194,'flexible_templates_5_development_team_steps_4_copy','Responsible for creating user-friendly interfaces making complex technical products intuitive, simple, and engaging. '),(147890,4194,'_flexible_templates_5_development_team_steps_4_copy','field_625540b262818_field_6254fdc0efa29'),(147891,4194,'flexible_templates_5_development_team_steps_5_icon','4095'),(147892,4194,'_flexible_templates_5_development_team_steps_5_icon','field_625540b262816_field_62550482480cb'),(147893,4194,'flexible_templates_5_development_team_steps_5_heading','Product Owners'),(147894,4194,'_flexible_templates_5_development_team_steps_5_heading','field_625540b262817_field_6254fdb2efa27'),(147895,4194,'flexible_templates_5_development_team_steps_5_copy','Agile leaders of the development team, at the center of every development cycle. They will define stories, organize and prioritize backlogs, and monitor the entire development process.\r\n'),(147896,4194,'_flexible_templates_5_development_team_steps_5_copy','field_625540b262818_field_6254fdc0efa29'),(147897,4194,'flexible_templates_5_development_team_steps_6_icon','4096'),(147898,4194,'_flexible_templates_5_development_team_steps_6_icon','field_625540b262816_field_62550482480cb'),(147899,4194,'flexible_templates_5_development_team_steps_6_heading','Data/ML Engineers'),(147900,4194,'_flexible_templates_5_development_team_steps_6_heading','field_625540b262817_field_6254fdb2efa27'),(147901,4194,'flexible_templates_5_development_team_steps_6_copy','Highly skilled software engineers and data scientists who develop AI systems that use large data sets to research, design, and develop self-running software to automate predictive models.\r\n'),(147902,4194,'_flexible_templates_5_development_team_steps_6_copy','field_625540b262818_field_6254fdc0efa29'),(147903,4194,'flexible_templates_5_development_team_steps_7_icon','4097'),(147904,4194,'_flexible_templates_5_development_team_steps_7_icon','field_625540b262816_field_62550482480cb'),(147905,4194,'flexible_templates_5_development_team_steps_7_heading','SRE/DevOps Engineers'),(147906,4194,'_flexible_templates_5_development_team_steps_7_heading','field_625540b262817_field_6254fdb2efa27'),(147907,4194,'flexible_templates_5_development_team_steps_7_copy','DevOps engineers ensure that all development is done in line with the company\'s needs and potential future needs by streamlining the software creation, updates, and deployment process. This can help prevent wasting time and resources on features that are not needed or used.\r\n'),(147908,4194,'_flexible_templates_5_development_team_steps_7_copy','field_625540b262818_field_6254fdc0efa29'),(147909,4194,'flexible_templates_5_development_team_steps_8_icon','4098'),(147910,4194,'_flexible_templates_5_development_team_steps_8_icon','field_625540b262816_field_62550482480cb'),(147911,4194,'flexible_templates_5_development_team_steps_8_heading','Scrum Masters'),(147912,4194,'_flexible_templates_5_development_team_steps_8_heading','field_625540b262817_field_6254fdb2efa27'),(147913,4194,'flexible_templates_5_development_team_steps_8_copy','These team leaders are are accountable for getting teams to perform at their highest levels by managing the process. They will facilitating meetings, improving workflow by removing any bottlenecks, and work with the product owner to ensure the product backlog is in good shape and ready for the next sprint.'),(147914,4194,'_flexible_templates_5_development_team_steps_8_copy','field_625540b262818_field_6254fdc0efa29'),(147915,4194,'flexible_templates_5_development_team_steps','9'),(147916,4194,'_flexible_templates_5_development_team_steps','field_625540b262815'),(147917,4194,'flexible_templates_5_cta','a:3:{s:5:\"title\";s:15:\"Build Your Team\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(147918,4194,'_flexible_templates_5_cta','field_6255410462819_field_62551b3e101c4'),(147919,4194,'flexible_templates_6_heading','A better chance at success with TEKTeams'),(147920,4194,'_flexible_templates_6_heading','field_62554b91172d7_field_6254fdb2efa27'),(147921,4194,'flexible_templates_6_sub_heading','Dev Shop vs Offshore vs In-house vs TEKTeams'),(147922,4194,'_flexible_templates_6_sub_heading','field_62554ba5172d8_field_6254fdbaefa28'),(147923,4194,'flexible_templates_6_icon','4099'),(147924,4194,'_flexible_templates_6_icon','field_62554d69172e1_field_62550482480cb'),(147925,4194,'flexible_templates_6_differential_translucent_header_0_heading','Your Needs'),(147926,4194,'_flexible_templates_6_differential_translucent_header_0_heading','field_625688668727a'),(147927,4194,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(147928,4194,'_flexible_templates_6_differential_translucent_header_0_color','field_62568e42de80b'),(147929,4194,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(147930,4194,'_flexible_templates_6_differential_translucent_header_1_heading','field_625688668727a'),(147931,4194,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(147932,4194,'_flexible_templates_6_differential_translucent_header_1_color','field_62568e42de80b'),(147933,4194,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore Teams'),(147934,4194,'_flexible_templates_6_differential_translucent_header_2_heading','field_625688668727a'),(147935,4194,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(147936,4194,'_flexible_templates_6_differential_translucent_header_2_color','field_62568e42de80b'),(147937,4194,'flexible_templates_6_differential_translucent_header_3_heading','Hiring In-house Developers'),(147938,4194,'_flexible_templates_6_differential_translucent_header_3_heading','field_625688668727a'),(147939,4194,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(147940,4194,'_flexible_templates_6_differential_translucent_header_3_color','field_62568e42de80b'),(147941,4194,'flexible_templates_6_differential_translucent_header_4_heading','TEKTeams'),(147942,4194,'_flexible_templates_6_differential_translucent_header_4_heading','field_625688668727a'),(147943,4194,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(147944,4194,'_flexible_templates_6_differential_translucent_header_4_color','field_62568e42de80b'),(147945,4194,'flexible_templates_6_differential_translucent_header','5'),(147946,4194,'_flexible_templates_6_differential_translucent_header','field_6256884687279'),(147947,4194,'flexible_templates_6_differential_translucent_0_heading_1','1'),(147948,4194,'_flexible_templates_6_differential_translucent_0_heading_1','field_625689c138821'),(147949,4194,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(147950,4194,'_flexible_templates_6_differential_translucent_0_column_1','field_62554d45172dc'),(147951,4194,'flexible_templates_6_differential_translucent_0_heading_2','Working with a Dev Shop'),(147952,4194,'_flexible_templates_6_differential_translucent_0_heading_2','field_62568a29727b5'),(147953,4194,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(147954,4194,'_flexible_templates_6_differential_translucent_0_column_2','field_62554d4a172dd'),(147955,4194,'flexible_templates_6_differential_translucent_0_column_2_color','#7080a7'),(147956,4194,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62554fcda0e79'),(147957,4194,'flexible_templates_6_differential_translucent_0_heading_3','3'),(147958,4194,'_flexible_templates_6_differential_translucent_0_heading_3','field_62568a30727b6'),(147959,4194,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(147960,4194,'_flexible_templates_6_differential_translucent_0_column_3','field_62554d4d172de'),(147961,4194,'flexible_templates_6_differential_translucent_0_column_3_color','#ff555f'),(147962,4194,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62554ff6a0e7a'),(147963,4194,'flexible_templates_6_differential_translucent_0_heading_4','4'),(147964,4194,'_flexible_templates_6_differential_translucent_0_heading_4','field_62568a37727b7'),(147965,4194,'flexible_templates_6_differential_translucent_0_column_4','Always'),(147966,4194,'_flexible_templates_6_differential_translucent_0_column_4','field_62554d4f172df'),(147967,4194,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(147968,4194,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62555028a0e7c'),(147969,4194,'flexible_templates_6_differential_translucent_0_heading_5','5'),(147970,4194,'_flexible_templates_6_differential_translucent_0_heading_5','field_62568a40727b8'),(147971,4194,'flexible_templates_6_differential_translucent_0_column_5','Always'),(147972,4194,'_flexible_templates_6_differential_translucent_0_column_5','field_62555011a0e7b'),(147973,4194,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(147974,4194,'_flexible_templates_6_differential_translucent_0_column_5_color','field_6255503aa0e7d'),(147975,4194,'flexible_templates_6_differential_translucent_1_heading_1','6'),(147976,4194,'_flexible_templates_6_differential_translucent_1_heading_1','field_625689c138821'),(147977,4194,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (speed to market)'),(147978,4194,'_flexible_templates_6_differential_translucent_1_column_1','field_62554d45172dc'),(147979,4194,'flexible_templates_6_differential_translucent_1_heading_2','7'),(147980,4194,'_flexible_templates_6_differential_translucent_1_heading_2','field_62568a29727b5'),(147981,4194,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(147982,4194,'_flexible_templates_6_differential_translucent_1_column_2','field_62554d4a172dd'),(147983,4194,'flexible_templates_6_differential_translucent_1_column_2_color','#ff555f'),(147984,4194,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62554fcda0e79'),(147985,4194,'flexible_templates_6_differential_translucent_1_heading_3','8'),(147986,4194,'_flexible_templates_6_differential_translucent_1_heading_3','field_62568a30727b6'),(147987,4194,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(147988,4194,'_flexible_templates_6_differential_translucent_1_column_3','field_62554d4d172de'),(147989,4194,'flexible_templates_6_differential_translucent_1_column_3_color','#7080a7'),(147990,4194,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62554ff6a0e7a'),(147991,4194,'flexible_templates_6_differential_translucent_1_heading_4','9'),(147992,4194,'_flexible_templates_6_differential_translucent_1_heading_4','field_62568a37727b7'),(147993,4194,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(147994,4194,'_flexible_templates_6_differential_translucent_1_column_4','field_62554d4f172df'),(147995,4194,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(147996,4194,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62555028a0e7c'),(147997,4194,'flexible_templates_6_differential_translucent_1_heading_5','10'),(147998,4194,'_flexible_templates_6_differential_translucent_1_heading_5','field_62568a40727b8'),(147999,4194,'flexible_templates_6_differential_translucent_1_column_5','Always'),(148000,4194,'_flexible_templates_6_differential_translucent_1_column_5','field_62555011a0e7b'),(148001,4194,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(148002,4194,'_flexible_templates_6_differential_translucent_1_column_5_color','field_6255503aa0e7d'),(148003,4194,'flexible_templates_6_differential_translucent_2_heading_1','11'),(148004,4194,'_flexible_templates_6_differential_translucent_2_heading_1','field_625689c138821'),(148005,4194,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(148006,4194,'_flexible_templates_6_differential_translucent_2_column_1','field_62554d45172dc'),(148007,4194,'flexible_templates_6_differential_translucent_2_heading_2','12'),(148008,4194,'_flexible_templates_6_differential_translucent_2_heading_2','field_62568a29727b5'),(148009,4194,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(148010,4194,'_flexible_templates_6_differential_translucent_2_column_2','field_62554d4a172dd'),(148011,4194,'flexible_templates_6_differential_translucent_2_column_2_color','#7080a7'),(148012,4194,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62554fcda0e79'),(148013,4194,'flexible_templates_6_differential_translucent_2_heading_3','13'),(148014,4194,'_flexible_templates_6_differential_translucent_2_heading_3','field_62568a30727b6'),(148015,4194,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(148016,4194,'_flexible_templates_6_differential_translucent_2_column_3','field_62554d4d172de'),(148017,4194,'flexible_templates_6_differential_translucent_2_column_3_color','#ff555f'),(148018,4194,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62554ff6a0e7a'),(148019,4194,'flexible_templates_6_differential_translucent_2_heading_4','14'),(148020,4194,'_flexible_templates_6_differential_translucent_2_heading_4','field_62568a37727b7'),(148021,4194,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(148022,4194,'_flexible_templates_6_differential_translucent_2_column_4','field_62554d4f172df'),(148023,4194,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(148024,4194,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62555028a0e7c'),(148025,4194,'flexible_templates_6_differential_translucent_2_heading_5','15'),(148026,4194,'_flexible_templates_6_differential_translucent_2_heading_5','field_62568a40727b8'),(148027,4194,'flexible_templates_6_differential_translucent_2_column_5','Always'),(148028,4194,'_flexible_templates_6_differential_translucent_2_column_5','field_62555011a0e7b'),(148029,4194,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(148030,4194,'_flexible_templates_6_differential_translucent_2_column_5_color','field_6255503aa0e7d'),(148031,4194,'flexible_templates_6_differential_translucent_3_heading_1','16'),(148032,4194,'_flexible_templates_6_differential_translucent_3_heading_1','field_625689c138821'),(148033,4194,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(148034,4194,'_flexible_templates_6_differential_translucent_3_column_1','field_62554d45172dc'),(148035,4194,'flexible_templates_6_differential_translucent_3_heading_2','17'),(148036,4194,'_flexible_templates_6_differential_translucent_3_heading_2','field_62568a29727b5'),(148037,4194,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(148038,4194,'_flexible_templates_6_differential_translucent_3_column_2','field_62554d4a172dd'),(148039,4194,'flexible_templates_6_differential_translucent_3_column_2_color','#7080a7'),(148040,4194,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62554fcda0e79'),(148041,4194,'flexible_templates_6_differential_translucent_3_heading_3','18'),(148042,4194,'_flexible_templates_6_differential_translucent_3_heading_3','field_62568a30727b6'),(148043,4194,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(148044,4194,'_flexible_templates_6_differential_translucent_3_column_3','field_62554d4d172de'),(148045,4194,'flexible_templates_6_differential_translucent_3_column_3_color','#ff555f'),(148046,4194,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62554ff6a0e7a'),(148047,4194,'flexible_templates_6_differential_translucent_3_heading_4','19'),(148048,4194,'_flexible_templates_6_differential_translucent_3_heading_4','field_62568a37727b7'),(148049,4194,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(148050,4194,'_flexible_templates_6_differential_translucent_3_column_4','field_62554d4f172df'),(148051,4194,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(148052,4194,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62555028a0e7c'),(148053,4194,'flexible_templates_6_differential_translucent_3_heading_5','Working with Translucent'),(148054,4194,'_flexible_templates_6_differential_translucent_3_heading_5','field_62568a40727b8'),(148055,4194,'flexible_templates_6_differential_translucent_3_column_5','Always'),(148056,4194,'_flexible_templates_6_differential_translucent_3_column_5','field_62555011a0e7b'),(148057,4194,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(148058,4194,'_flexible_templates_6_differential_translucent_3_column_5_color','field_6255503aa0e7d'),(148059,4194,'flexible_templates_6_differential_translucent','5'),(148060,4194,'_flexible_templates_6_differential_translucent','field_62554c30172da'),(148061,4194,'flexible_templates_7_heading','Be smart. Be efficient. Be agile.'),(148062,4194,'_flexible_templates_7_heading','field_625565e14146d_field_6254fdb2efa27'),(148063,4194,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(148064,4194,'_flexible_templates_7_cta','field_625565fa4146e_field_62551b3e101c4'),(148065,4194,'flexible_templates_6_differential_translucent_4_heading_1','20'),(148066,4194,'_flexible_templates_6_differential_translucent_4_heading_1','field_625689c138821'),(148067,4194,'flexible_templates_6_differential_translucent_4_column_1','No Recruiting Fees'),(148068,4194,'_flexible_templates_6_differential_translucent_4_column_1','field_62554d45172dc'),(148069,4194,'flexible_templates_6_differential_translucent_4_heading_2','21'),(148070,4194,'_flexible_templates_6_differential_translucent_4_heading_2','field_62568a29727b5'),(148071,4194,'flexible_templates_6_differential_translucent_4_column_2','Always'),(148072,4194,'_flexible_templates_6_differential_translucent_4_column_2','field_62554d4a172dd'),(148073,4194,'flexible_templates_6_differential_translucent_4_column_2_color','#28d9cb'),(148074,4194,'_flexible_templates_6_differential_translucent_4_column_2_color','field_62554fcda0e79'),(148075,4194,'flexible_templates_6_differential_translucent_4_heading_3','22'),(148076,4194,'_flexible_templates_6_differential_translucent_4_heading_3','field_62568a30727b6'),(148077,4194,'flexible_templates_6_differential_translucent_4_column_3','Sometimes'),(148078,4194,'_flexible_templates_6_differential_translucent_4_column_3','field_62554d4d172de'),(148079,4194,'flexible_templates_6_differential_translucent_4_column_3_color','#7080a7'),(148080,4194,'_flexible_templates_6_differential_translucent_4_column_3_color','field_62554ff6a0e7a'),(148081,4194,'flexible_templates_6_differential_translucent_4_heading_4','23'),(148082,4194,'_flexible_templates_6_differential_translucent_4_heading_4','field_62568a37727b7'),(148083,4194,'flexible_templates_6_differential_translucent_4_column_4','Rare'),(148084,4194,'_flexible_templates_6_differential_translucent_4_column_4','field_62554d4f172df'),(148085,4194,'flexible_templates_6_differential_translucent_4_column_4_color','#ff555f'),(148086,4194,'_flexible_templates_6_differential_translucent_4_column_4_color','field_62555028a0e7c'),(148087,4194,'flexible_templates_6_differential_translucent_4_heading_5','24'),(148088,4194,'_flexible_templates_6_differential_translucent_4_heading_5','field_62568a40727b8'),(148089,4194,'flexible_templates_6_differential_translucent_4_column_5','Always'),(148090,4194,'_flexible_templates_6_differential_translucent_4_column_5','field_62555011a0e7b'),(148091,4194,'flexible_templates_6_differential_translucent_4_column_5_color','#24c1ff'),(148092,4194,'_flexible_templates_6_differential_translucent_4_column_5_color','field_6255503aa0e7d'),(148174,4196,'flexible_templates',''),(148175,4196,'_flexible_templates','field_6254f4d84ef9b'),(148176,4045,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(148608,4045,'_pinterest_shares','0'),(148609,4045,'_total_shares','0'),(148610,4045,'swp_cache_timestamp','459926'),(148616,4199,'flexible_templates_0_image','4066'),(148617,4199,'_flexible_templates_0_image','field_6255038c2e6ae_field_6254fdc5efa2a'),(148618,4199,'flexible_templates_0_mob_image','4067'),(148619,4199,'_flexible_templates_0_mob_image','field_625503db2e6af_field_6254fdcbefa2b'),(148620,4199,'flexible_templates_0_icon','4068'),(148621,4199,'_flexible_templates_0_icon','field_6255095042ef2_field_62550482480cb'),(148622,4199,'flexible_templates_0_heading','TEKTeams'),(148623,4199,'_flexible_templates_0_heading','field_6255096442ef3_field_6254fdb2efa27'),(148624,4199,'flexible_templates_0_sub_heading','TEK™ WORLD'),(148625,4199,'_flexible_templates_0_sub_heading','field_6255097642ef4_field_6254fdbaefa28'),(148626,4199,'flexible_templates_1_heading','Gain access to top 1% tech talent with a trusted partner that delivers cloud native solutions and value.'),(148627,4199,'_flexible_templates_1_heading','field_62551ac3a6f96_field_6254fdb2efa27'),(148628,4199,'flexible_templates_1_sub_heading','THE TEAM YOU NEED'),(148629,4199,'_flexible_templates_1_sub_heading','field_62551ae4a6f97_field_6254fdbaefa28'),(148630,4199,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(148631,4199,'_flexible_templates_1_cta','field_62551b56a6f98_field_62551b3e101c4'),(148632,4199,'flexible_templates_1_copy','The best technology. The best people. Access tailored software engineering teams with industry-specific experience without the hassle of hiring and maintaining internal teams. We understand how hard it is to acquire and retain top talent, and we take the pressure off HR. Focus on your business while we take lead for the delivery and execution of the project.'),(148633,4199,'_flexible_templates_1_copy','field_62551b74a6f99_field_6254fdc0efa29'),(148634,4199,'flexible_templates_2_image','4069'),(148635,4199,'_flexible_templates_2_image','field_625523de9609f_field_6254fdc5efa2a'),(148636,4199,'flexible_templates_2_mob_image','4070'),(148637,4199,'_flexible_templates_2_mob_image','field_625523f4960a0_field_6254fdcbefa2b'),(148638,4199,'flexible_templates_2_icon','4071'),(148639,4199,'_flexible_templates_2_icon','field_6255246d960a1_field_62550482480cb'),(148640,4199,'flexible_templates_2_heading','What are TEKTeams?'),(148641,4199,'_flexible_templates_2_heading','field_62552482960a2_field_6254fdb2efa27'),(148642,4199,'flexible_templates_2_copy','TEKTeams are your dedicated development teams built on Translucent principles that, as part of the TEK ecosystem, combine trust, processes, people, and technology to deliver value.\r\n\r\nTranslucent has created a process that brings together the best people in the industry with various skills to develop and maintain the highest quality software.\r\n\r\nA perfect combination of roles, talent, skillset, and the right work environment.TEKTeams provide the precise expertise your organization needs to execute a project successfully.\r\n
'),(148643,4199,'_flexible_templates_2_copy','field_625525b15629c'),(148644,4199,'flexible_templates_2_content_right','Our onshore/nearshore model combines resources across the Americas to overcome challenges your project might encounter; we work closely alongside your company staff to attain your business goals.\r\n\r\nIncrease the number of resources you have on hand to help you develop and manage intelligent applications and platforms. \r\n\r\nTEKTeams are the most cost-effective way to get the talent you need for your cloud native projects without taking up all of your time or budget.'),(148645,4199,'_flexible_templates_2_content_right','field_625525ba5629d'),(148646,4199,'flexible_templates_3_image','4072'),(148647,4199,'_flexible_templates_3_image','field_62552ada52711_field_6254fdc5efa2a'),(148648,4199,'flexible_templates_3_mob_image','4073'),(148649,4199,'_flexible_templates_3_mob_image','field_62552aed52712_field_6254fdcbefa2b'),(148650,4199,'flexible_templates_3_icon','4074'),(148651,4199,'_flexible_templates_3_icon','field_62552b7652713_field_62550482480cb'),(148652,4199,'flexible_templates_3_heading','Get started with the best resources for your project'),(148653,4199,'_flexible_templates_3_heading','field_62552baf52715_field_6254fdb2efa27'),(148654,4199,'flexible_templates_3_copy','Our tailored software engineering teams help your business develop and manage smarter apps. We match business goals to the right technology and teams to drive better results. With TEKTeams you get access to the best of the best resources for your cloud native projects at a price you can afford, with the capacity to scale as needed, according to your demands. Here is what to expect working with TEKTeams:'),(148655,4199,'_flexible_templates_3_copy','field_62552b8552714_field_6254fdc0efa29'),(148656,4199,'flexible_templates_3_development_team_steps_0_icon','4075'),(148657,4199,'_flexible_templates_3_development_team_steps_0_icon','field_62552cdb784a9_field_62550482480cb'),(148658,4199,'flexible_templates_3_development_team_steps_0_heading','A trusted tech partner'),(148659,4199,'_flexible_templates_3_development_team_steps_0_heading','field_62552ced784aa_field_6254fdb2efa27'),(148660,4199,'flexible_templates_3_development_team_steps_0_copy','

Increase your workforce by partnering with the top 1% teams tailored to your business needs

\r\n

We will explain and document the entire development process and make sure to meet business and project objectives

\r\n

Scale your teams as needed with a global network united as one

'),(148661,4199,'_flexible_templates_3_development_team_steps_0_copy','field_62552cfe784ab_field_6254fdc0efa29'),(148662,4199,'flexible_templates_3_development_team_steps_1_icon','4076'),(148663,4199,'_flexible_templates_3_development_team_steps_1_icon','field_62552cdb784a9_field_62550482480cb'),(148664,4199,'flexible_templates_3_development_team_steps_1_heading','Break down vision into requirements'),(148665,4199,'_flexible_templates_3_development_team_steps_1_heading','field_62552ced784aa_field_6254fdb2efa27'),(148666,4199,'flexible_templates_3_development_team_steps_1_copy','

We will validate your idea with a future vision that is in sync with the realities that your business is currently facing

\r\n

Cloud native solutions make it possible to work within clients\' budgets

\r\n

Planning, execution, support, best practices, and experience in breaking down the concept into a user stories tech road map

'),(148667,4199,'_flexible_templates_3_development_team_steps_1_copy','field_62552cfe784ab_field_6254fdc0efa29'),(148668,4199,'flexible_templates_3_development_team_steps_2_icon','4077'),(148669,4199,'_flexible_templates_3_development_team_steps_2_icon','field_62552cdb784a9_field_62550482480cb'),(148670,4199,'flexible_templates_3_development_team_steps_2_heading','Build your team and start innovating'),(148671,4199,'_flexible_templates_3_development_team_steps_2_heading','field_62552ced784aa_field_6254fdb2efa27'),(148672,4199,'flexible_templates_3_development_team_steps_2_copy',' The Team You Need For Your Cloud Native Project:\r\n

Expanding your workforce is easier than you think, with TEKTeams, you can quickly and affordably grow your company with teams to cover all of your business needs

\r\n

With the right team behind your project, you\'ll get better results, more quickly

\r\n\r\n'),(148673,4199,'_flexible_templates_3_development_team_steps_2_copy','field_62552cfe784ab_field_6254fdc0efa29'),(148674,4199,'flexible_templates_3_development_team_steps','3'),(148675,4199,'_flexible_templates_3_development_team_steps','field_62552cbb784a8'),(148676,4199,'flexible_templates_3_cta','a:3:{s:5:\"title\";s:11:\"Gain Access\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(148677,4199,'_flexible_templates_3_cta','field_62552c6a784a7_field_62551b3e101c4'),(148678,4199,'flexible_templates_4_image','4078'),(148679,4199,'_flexible_templates_4_image','field_625538ef16bb0_field_6254fdc5efa2a'),(148680,4199,'flexible_templates_4_mob_image','4079'),(148681,4199,'_flexible_templates_4_mob_image','field_6255391616bb1_field_6254fdcbefa2b'),(148682,4199,'flexible_templates_4_icon','4080'),(148683,4199,'_flexible_templates_4_icon','field_62553d28bca93_field_62550482480cb'),(148684,4199,'flexible_templates_4_heading','Benefits of TEKTeams'),(148685,4199,'_flexible_templates_4_heading','field_6255397e16bb2_field_6254fdb2efa27'),(148686,4199,'flexible_templates_4_development_team_steps_0_icon','4086'),(148687,4199,'_flexible_templates_4_development_team_steps_0_icon','field_625539a816bb4_field_62550482480cb'),(148688,4199,'flexible_templates_4_development_team_steps_0_heading','Fully Managed'),(148689,4199,'_flexible_templates_4_development_team_steps_0_heading','field_625539a816bb5_field_6254fdb2efa27'),(148690,4199,'flexible_templates_4_development_team_steps_0_copy','Translucent is responsible for hiring, managing, and delivering technical expertise from start to finish. Avoid hiring and team management issues.'),(148691,4199,'_flexible_templates_4_development_team_steps_0_copy','field_625539a816bb6_field_6254fdc0efa29'),(148692,4199,'flexible_templates_4_development_team_steps_1_icon','4085'),(148693,4199,'_flexible_templates_4_development_team_steps_1_icon','field_625539a816bb4_field_62550482480cb'),(148694,4199,'flexible_templates_4_development_team_steps_1_heading','Remote'),(148695,4199,'_flexible_templates_4_development_team_steps_1_heading','field_625539a816bb5_field_6254fdb2efa27'),(148696,4199,'flexible_templates_4_development_team_steps_1_copy','Completely remote. Save office space and gain more time for your employees. Over the last 12 years, we have perfected a remote software development system called TEKProcess.'),(148697,4199,'_flexible_templates_4_development_team_steps_1_copy','field_625539a816bb6_field_6254fdc0efa29'),(148698,4199,'flexible_templates_4_development_team_steps_2_icon','4084'),(148699,4199,'_flexible_templates_4_development_team_steps_2_icon','field_625539a816bb4_field_62550482480cb'),(148700,4199,'flexible_templates_4_development_team_steps_2_heading','Access to Translucent Experts'),(148701,4199,'_flexible_templates_4_development_team_steps_2_heading','field_625539a816bb5_field_6254fdb2efa27'),(148702,4199,'flexible_templates_4_development_team_steps_2_copy','Part of working with TEKTeams is access to our software architects and tech leads at no extra cost.'),(148703,4199,'_flexible_templates_4_development_team_steps_2_copy','field_625539a816bb6_field_6254fdc0efa29'),(148704,4199,'flexible_templates_4_development_team_steps_3_icon','4083'),(148705,4199,'_flexible_templates_4_development_team_steps_3_icon','field_625539a816bb4_field_62550482480cb'),(148706,4199,'flexible_templates_4_development_team_steps_3_heading','Access to Top Tech Talent'),(148707,4199,'_flexible_templates_4_development_team_steps_3_heading','field_625539a816bb5_field_6254fdb2efa27'),(148708,4199,'flexible_templates_4_development_team_steps_3_copy','Our proven hiring and continuous employee improvement processes ensure that only top talent works on each project.'),(148709,4199,'_flexible_templates_4_development_team_steps_3_copy','field_625539a816bb6_field_6254fdc0efa29'),(148710,4199,'flexible_templates_4_development_team_steps_4_icon','4082'),(148711,4199,'_flexible_templates_4_development_team_steps_4_icon','field_625539a816bb4_field_62550482480cb'),(148712,4199,'flexible_templates_4_development_team_steps_4_heading','Team Scalability'),(148713,4199,'_flexible_templates_4_development_team_steps_4_heading','field_625539a816bb5_field_6254fdb2efa27'),(148714,4199,'flexible_templates_4_development_team_steps_4_copy','On-demand resources are ready when you need to scale the team to meet business demands.'),(148715,4199,'_flexible_templates_4_development_team_steps_4_copy','field_625539a816bb6_field_6254fdc0efa29'),(148716,4199,'flexible_templates_4_development_team_steps_5_icon','4081'),(148717,4199,'_flexible_templates_4_development_team_steps_5_icon','field_625539a816bb4_field_62550482480cb'),(148718,4199,'flexible_templates_4_development_team_steps_5_heading','Start Your Journey Now'),(148719,4199,'_flexible_templates_4_development_team_steps_5_heading','field_625539a816bb5_field_6254fdb2efa27'),(148720,4199,'flexible_templates_4_development_team_steps_5_copy','Our TEKTeams are ready to help you now.'),(148721,4199,'_flexible_templates_4_development_team_steps_5_copy','field_625539a816bb6_field_6254fdc0efa29'),(148722,4199,'flexible_templates_4_development_team_steps','6'),(148723,4199,'_flexible_templates_4_development_team_steps','field_625539a816bb3'),(148724,4199,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:13:\"Start Scaling\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(148725,4199,'_flexible_templates_4_cta','field_625539ce16bb7_field_62551b3e101c4'),(148726,4199,'flexible_templates_5_image','4087'),(148727,4199,'_flexible_templates_5_image','field_62553e7d5dd54_field_6254fdc5efa2a'),(148728,4199,'flexible_templates_5_mob_image','4088'),(148729,4199,'_flexible_templates_5_mob_image','field_62553eab5dd55_field_6254fdcbefa2b'),(148730,4199,'flexible_templates_5_icon','4089'),(148731,4199,'_flexible_templates_5_icon','field_62553eee5dd56_field_62550482480cb'),(148732,4199,'flexible_templates_5_heading','The team you need for your cloud native project'),(148733,4199,'_flexible_templates_5_heading','field_62553f075dd57_field_6254fdb2efa27'),(148734,4199,'flexible_templates_5_heading_mobile','The team you need for your cloud native project'),(148735,4199,'_flexible_templates_5_heading_mobile','field_62553f185dd58'),(148736,4199,'flexible_templates_5_copy','We help companies build and scale smart applications, working together to achieve the best results by pairing them with our award-winning team of experts. That includes project managers, senior developers, and QA specialists who have been handpicked to execute on specific goals.'),(148737,4199,'_flexible_templates_5_copy','field_62553f315dd59_field_6254fdc0efa29'),(148738,4199,'flexible_templates_5_development_team_steps_0_icon','4090'),(148739,4199,'_flexible_templates_5_development_team_steps_0_icon','field_625540b262816_field_62550482480cb'),(148740,4199,'flexible_templates_5_development_team_steps_0_heading','Frontend Engineers'),(148741,4199,'_flexible_templates_5_development_team_steps_0_heading','field_625540b262817_field_6254fdb2efa27'),(148742,4199,'flexible_templates_5_development_team_steps_0_copy','Responsible for the development of the user interface of an application. They are always in demand, but with TEKTeams you get access on demand. '),(148743,4199,'_flexible_templates_5_development_team_steps_0_copy','field_625540b262818_field_6254fdc0efa29'),(148744,4199,'flexible_templates_5_development_team_steps_1_icon','4091'),(148745,4199,'_flexible_templates_5_development_team_steps_1_icon','field_625540b262816_field_62550482480cb'),(148746,4199,'flexible_templates_5_development_team_steps_1_heading','QA Engineers'),(148747,4199,'_flexible_templates_5_development_team_steps_1_heading','field_625540b262817_field_6254fdb2efa27'),(148748,4199,'flexible_templates_5_development_team_steps_1_copy','The quality of a product is vital to its success, and without a quality assurance engineer, that quality is compromised. Our QA engineers ensure each product is thoroughly tested to provide the best possible user experience.'),(148749,4199,'_flexible_templates_5_development_team_steps_1_copy','field_625540b262818_field_6254fdc0efa29'),(148750,4199,'flexible_templates_5_development_team_steps_2_icon','4092'),(148751,4199,'_flexible_templates_5_development_team_steps_2_icon','field_625540b262816_field_62550482480cb'),(148752,4199,'flexible_templates_5_development_team_steps_2_heading','Business Analysts'),(148753,4199,'_flexible_templates_5_development_team_steps_2_heading','field_625540b262817_field_6254fdb2efa27'),(148754,4199,'flexible_templates_5_development_team_steps_2_copy','These agile workers help bridge the gap between the IT team and the business, improving overall efficiency through data analysis of processes, products, services, and software.'),(148755,4199,'_flexible_templates_5_development_team_steps_2_copy','field_625540b262818_field_6254fdc0efa29'),(148756,4199,'flexible_templates_5_development_team_steps_3_icon','4093'),(148757,4199,'_flexible_templates_5_development_team_steps_3_icon','field_625540b262816_field_62550482480cb'),(148758,4199,'flexible_templates_5_development_team_steps_3_heading','Backend Engineers'),(148759,4199,'_flexible_templates_5_development_team_steps_3_heading','field_625540b262817_field_6254fdb2efa27'),(148760,4199,'flexible_templates_5_development_team_steps_3_copy','Backend engineers build the structure of a software application. They work on designing, building, and maintaining the server components of web applications. '),(148761,4199,'_flexible_templates_5_development_team_steps_3_copy','field_625540b262818_field_6254fdc0efa29'),(148762,4199,'flexible_templates_5_development_team_steps_4_icon','4094'),(148763,4199,'_flexible_templates_5_development_team_steps_4_icon','field_625540b262816_field_62550482480cb'),(148764,4199,'flexible_templates_5_development_team_steps_4_heading','UX/UI Designers'),(148765,4199,'_flexible_templates_5_development_team_steps_4_heading','field_625540b262817_field_6254fdb2efa27'),(148766,4199,'flexible_templates_5_development_team_steps_4_copy','Responsible for creating user-friendly interfaces making complex technical products intuitive, simple, and engaging. '),(148767,4199,'_flexible_templates_5_development_team_steps_4_copy','field_625540b262818_field_6254fdc0efa29'),(148768,4199,'flexible_templates_5_development_team_steps_5_icon','4095'),(148769,4199,'_flexible_templates_5_development_team_steps_5_icon','field_625540b262816_field_62550482480cb'),(148770,4199,'flexible_templates_5_development_team_steps_5_heading','Product Owners'),(148771,4199,'_flexible_templates_5_development_team_steps_5_heading','field_625540b262817_field_6254fdb2efa27'),(148772,4199,'flexible_templates_5_development_team_steps_5_copy','Agile leaders of the development team, at the center of every development cycle. They will define stories, organize and prioritize backlogs, and monitor the entire development process.\r\n'),(148773,4199,'_flexible_templates_5_development_team_steps_5_copy','field_625540b262818_field_6254fdc0efa29'),(148774,4199,'flexible_templates_5_development_team_steps_6_icon','4096'),(148775,4199,'_flexible_templates_5_development_team_steps_6_icon','field_625540b262816_field_62550482480cb'),(148776,4199,'flexible_templates_5_development_team_steps_6_heading','Data/ML Engineers'),(148777,4199,'_flexible_templates_5_development_team_steps_6_heading','field_625540b262817_field_6254fdb2efa27'),(148778,4199,'flexible_templates_5_development_team_steps_6_copy','Highly skilled software engineers and data scientists who develop AI systems that use large data sets to research, design, and develop self-running software to automate predictive models.\r\n'),(148779,4199,'_flexible_templates_5_development_team_steps_6_copy','field_625540b262818_field_6254fdc0efa29'),(148780,4199,'flexible_templates_5_development_team_steps_7_icon','4097'),(148781,4199,'_flexible_templates_5_development_team_steps_7_icon','field_625540b262816_field_62550482480cb'),(148782,4199,'flexible_templates_5_development_team_steps_7_heading','SRE/DevOps Engineers'),(148783,4199,'_flexible_templates_5_development_team_steps_7_heading','field_625540b262817_field_6254fdb2efa27'),(148784,4199,'flexible_templates_5_development_team_steps_7_copy','DevOps engineers ensure that all development is done in line with the company\'s needs and potential future needs by streamlining the software creation, updates, and deployment process. This can help prevent wasting time and resources on features that are not needed or used.\r\n'),(148785,4199,'_flexible_templates_5_development_team_steps_7_copy','field_625540b262818_field_6254fdc0efa29'),(148786,4199,'flexible_templates_5_development_team_steps_8_icon','4098'),(148787,4199,'_flexible_templates_5_development_team_steps_8_icon','field_625540b262816_field_62550482480cb'),(148788,4199,'flexible_templates_5_development_team_steps_8_heading','Scrum Masters'),(148789,4199,'_flexible_templates_5_development_team_steps_8_heading','field_625540b262817_field_6254fdb2efa27'),(148790,4199,'flexible_templates_5_development_team_steps_8_copy','These team leaders are are accountable for getting teams to perform at their highest levels by managing the process. They will facilitating meetings, improving workflow by removing any bottlenecks, and work with the product owner to ensure the product backlog is in good shape and ready for the next sprint.'),(148791,4199,'_flexible_templates_5_development_team_steps_8_copy','field_625540b262818_field_6254fdc0efa29'),(148792,4199,'flexible_templates_5_development_team_steps','9'),(148793,4199,'_flexible_templates_5_development_team_steps','field_625540b262815'),(148794,4199,'flexible_templates_5_cta','a:3:{s:5:\"title\";s:15:\"Build Your Team\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(148795,4199,'_flexible_templates_5_cta','field_6255410462819_field_62551b3e101c4'),(148796,4199,'flexible_templates_6_heading','A better chance at success with TEKTeams'),(148797,4199,'_flexible_templates_6_heading','field_62554b91172d7_field_6254fdb2efa27'),(148798,4199,'flexible_templates_6_sub_heading','Dev Shop vs Offshore vs In-house vs TEKTeams'),(148799,4199,'_flexible_templates_6_sub_heading','field_62554ba5172d8_field_6254fdbaefa28'),(148800,4199,'flexible_templates_6_icon','4099'),(148801,4199,'_flexible_templates_6_icon','field_62554d69172e1_field_62550482480cb'),(148802,4199,'flexible_templates_6_differential_translucent_header_0_heading','Your Needs'),(148803,4199,'_flexible_templates_6_differential_translucent_header_0_heading','field_625688668727a'),(148804,4199,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(148805,4199,'_flexible_templates_6_differential_translucent_header_0_color','field_62568e42de80b'),(148806,4199,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(148807,4199,'_flexible_templates_6_differential_translucent_header_1_heading','field_625688668727a'),(148808,4199,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(148809,4199,'_flexible_templates_6_differential_translucent_header_1_color','field_62568e42de80b'),(148810,4199,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore Teams'),(148811,4199,'_flexible_templates_6_differential_translucent_header_2_heading','field_625688668727a'),(148812,4199,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(148813,4199,'_flexible_templates_6_differential_translucent_header_2_color','field_62568e42de80b'),(148814,4199,'flexible_templates_6_differential_translucent_header_3_heading','Hiring In-house Developers'),(148815,4199,'_flexible_templates_6_differential_translucent_header_3_heading','field_625688668727a'),(148816,4199,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(148817,4199,'_flexible_templates_6_differential_translucent_header_3_color','field_62568e42de80b'),(148818,4199,'flexible_templates_6_differential_translucent_header_4_heading','TEKTeams'),(148819,4199,'_flexible_templates_6_differential_translucent_header_4_heading','field_625688668727a'),(148820,4199,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(148821,4199,'_flexible_templates_6_differential_translucent_header_4_color','field_62568e42de80b'),(148822,4199,'flexible_templates_6_differential_translucent_header','5'),(148823,4199,'_flexible_templates_6_differential_translucent_header','field_6256884687279'),(148824,4199,'flexible_templates_6_differential_translucent_0_heading_1','1'),(148825,4199,'_flexible_templates_6_differential_translucent_0_heading_1','field_625689c138821'),(148826,4199,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(148827,4199,'_flexible_templates_6_differential_translucent_0_column_1','field_62554d45172dc'),(148828,4199,'flexible_templates_6_differential_translucent_0_heading_2','Working with a Dev Shop'),(148829,4199,'_flexible_templates_6_differential_translucent_0_heading_2','field_62568a29727b5'),(148830,4199,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(148831,4199,'_flexible_templates_6_differential_translucent_0_column_2','field_62554d4a172dd'),(148832,4199,'flexible_templates_6_differential_translucent_0_column_2_color','#7080a7'),(148833,4199,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62554fcda0e79'),(148834,4199,'flexible_templates_6_differential_translucent_0_heading_3','3'),(148835,4199,'_flexible_templates_6_differential_translucent_0_heading_3','field_62568a30727b6'),(148836,4199,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(148837,4199,'_flexible_templates_6_differential_translucent_0_column_3','field_62554d4d172de'),(148838,4199,'flexible_templates_6_differential_translucent_0_column_3_color','#ff555f'),(148839,4199,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62554ff6a0e7a'),(148840,4199,'flexible_templates_6_differential_translucent_0_heading_4','4'),(148841,4199,'_flexible_templates_6_differential_translucent_0_heading_4','field_62568a37727b7'),(148842,4199,'flexible_templates_6_differential_translucent_0_column_4','Always'),(148843,4199,'_flexible_templates_6_differential_translucent_0_column_4','field_62554d4f172df'),(148844,4199,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(148845,4199,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62555028a0e7c'),(148846,4199,'flexible_templates_6_differential_translucent_0_heading_5','5'),(148847,4199,'_flexible_templates_6_differential_translucent_0_heading_5','field_62568a40727b8'),(148848,4199,'flexible_templates_6_differential_translucent_0_column_5','Always'),(148849,4199,'_flexible_templates_6_differential_translucent_0_column_5','field_62555011a0e7b'),(148850,4199,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(148851,4199,'_flexible_templates_6_differential_translucent_0_column_5_color','field_6255503aa0e7d'),(148852,4199,'flexible_templates_6_differential_translucent_1_heading_1','6'),(148853,4199,'_flexible_templates_6_differential_translucent_1_heading_1','field_625689c138821'),(148854,4199,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (speed to market)'),(148855,4199,'_flexible_templates_6_differential_translucent_1_column_1','field_62554d45172dc'),(148856,4199,'flexible_templates_6_differential_translucent_1_heading_2','7'),(148857,4199,'_flexible_templates_6_differential_translucent_1_heading_2','field_62568a29727b5'),(148858,4199,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(148859,4199,'_flexible_templates_6_differential_translucent_1_column_2','field_62554d4a172dd'),(148860,4199,'flexible_templates_6_differential_translucent_1_column_2_color','#ff555f'),(148861,4199,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62554fcda0e79'),(148862,4199,'flexible_templates_6_differential_translucent_1_heading_3','8'),(148863,4199,'_flexible_templates_6_differential_translucent_1_heading_3','field_62568a30727b6'),(148864,4199,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(148865,4199,'_flexible_templates_6_differential_translucent_1_column_3','field_62554d4d172de'),(148866,4199,'flexible_templates_6_differential_translucent_1_column_3_color','#7080a7'),(148867,4199,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62554ff6a0e7a'),(148868,4199,'flexible_templates_6_differential_translucent_1_heading_4','9'),(148869,4199,'_flexible_templates_6_differential_translucent_1_heading_4','field_62568a37727b7'),(148870,4199,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(148871,4199,'_flexible_templates_6_differential_translucent_1_column_4','field_62554d4f172df'),(148872,4199,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(148873,4199,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62555028a0e7c'),(148874,4199,'flexible_templates_6_differential_translucent_1_heading_5','10'),(148875,4199,'_flexible_templates_6_differential_translucent_1_heading_5','field_62568a40727b8'),(148876,4199,'flexible_templates_6_differential_translucent_1_column_5','Always'),(148877,4199,'_flexible_templates_6_differential_translucent_1_column_5','field_62555011a0e7b'),(148878,4199,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(148879,4199,'_flexible_templates_6_differential_translucent_1_column_5_color','field_6255503aa0e7d'),(148880,4199,'flexible_templates_6_differential_translucent_2_heading_1','11'),(148881,4199,'_flexible_templates_6_differential_translucent_2_heading_1','field_625689c138821'),(148882,4199,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(148883,4199,'_flexible_templates_6_differential_translucent_2_column_1','field_62554d45172dc'),(148884,4199,'flexible_templates_6_differential_translucent_2_heading_2','12'),(148885,4199,'_flexible_templates_6_differential_translucent_2_heading_2','field_62568a29727b5'),(148886,4199,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(148887,4199,'_flexible_templates_6_differential_translucent_2_column_2','field_62554d4a172dd'),(148888,4199,'flexible_templates_6_differential_translucent_2_column_2_color','#7080a7'),(148889,4199,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62554fcda0e79'),(148890,4199,'flexible_templates_6_differential_translucent_2_heading_3','13'),(148891,4199,'_flexible_templates_6_differential_translucent_2_heading_3','field_62568a30727b6'),(148892,4199,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(148893,4199,'_flexible_templates_6_differential_translucent_2_column_3','field_62554d4d172de'),(148894,4199,'flexible_templates_6_differential_translucent_2_column_3_color','#ff555f'),(148895,4199,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62554ff6a0e7a'),(148896,4199,'flexible_templates_6_differential_translucent_2_heading_4','14'),(148897,4199,'_flexible_templates_6_differential_translucent_2_heading_4','field_62568a37727b7'),(148898,4199,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(148899,4199,'_flexible_templates_6_differential_translucent_2_column_4','field_62554d4f172df'),(148900,4199,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(148901,4199,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62555028a0e7c'),(148902,4199,'flexible_templates_6_differential_translucent_2_heading_5','15'),(148903,4199,'_flexible_templates_6_differential_translucent_2_heading_5','field_62568a40727b8'),(148904,4199,'flexible_templates_6_differential_translucent_2_column_5','Always'),(148905,4199,'_flexible_templates_6_differential_translucent_2_column_5','field_62555011a0e7b'),(148906,4199,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(148907,4199,'_flexible_templates_6_differential_translucent_2_column_5_color','field_6255503aa0e7d'),(148908,4199,'flexible_templates_6_differential_translucent_3_heading_1','16'),(148909,4199,'_flexible_templates_6_differential_translucent_3_heading_1','field_625689c138821'),(148910,4199,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(148911,4199,'_flexible_templates_6_differential_translucent_3_column_1','field_62554d45172dc'),(148912,4199,'flexible_templates_6_differential_translucent_3_heading_2','17'),(148913,4199,'_flexible_templates_6_differential_translucent_3_heading_2','field_62568a29727b5'),(148914,4199,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(148915,4199,'_flexible_templates_6_differential_translucent_3_column_2','field_62554d4a172dd'),(148916,4199,'flexible_templates_6_differential_translucent_3_column_2_color','#7080a7'),(148917,4199,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62554fcda0e79'),(148918,4199,'flexible_templates_6_differential_translucent_3_heading_3','18'),(148919,4199,'_flexible_templates_6_differential_translucent_3_heading_3','field_62568a30727b6'),(148920,4199,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(148921,4199,'_flexible_templates_6_differential_translucent_3_column_3','field_62554d4d172de'),(148922,4199,'flexible_templates_6_differential_translucent_3_column_3_color','#ff555f'),(148923,4199,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62554ff6a0e7a'),(148924,4199,'flexible_templates_6_differential_translucent_3_heading_4','19'),(148925,4199,'_flexible_templates_6_differential_translucent_3_heading_4','field_62568a37727b7'),(148926,4199,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(148927,4199,'_flexible_templates_6_differential_translucent_3_column_4','field_62554d4f172df'),(148928,4199,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(148929,4199,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62555028a0e7c'),(148930,4199,'flexible_templates_6_differential_translucent_3_heading_5','Working with Translucent'),(148931,4199,'_flexible_templates_6_differential_translucent_3_heading_5','field_62568a40727b8'),(148932,4199,'flexible_templates_6_differential_translucent_3_column_5','Always'),(148933,4199,'_flexible_templates_6_differential_translucent_3_column_5','field_62555011a0e7b'),(148934,4199,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(148935,4199,'_flexible_templates_6_differential_translucent_3_column_5_color','field_6255503aa0e7d'),(148936,4199,'flexible_templates_6_differential_translucent_4_heading_1','20'),(148937,4199,'_flexible_templates_6_differential_translucent_4_heading_1','field_625689c138821'),(148938,4199,'flexible_templates_6_differential_translucent_4_column_1','No Recruiting Fees'),(148939,4199,'_flexible_templates_6_differential_translucent_4_column_1','field_62554d45172dc'),(148940,4199,'flexible_templates_6_differential_translucent_4_heading_2','21'),(148941,4199,'_flexible_templates_6_differential_translucent_4_heading_2','field_62568a29727b5'),(148942,4199,'flexible_templates_6_differential_translucent_4_column_2','Always'),(148943,4199,'_flexible_templates_6_differential_translucent_4_column_2','field_62554d4a172dd'),(148944,4199,'flexible_templates_6_differential_translucent_4_column_2_color','#28d9cb'),(148945,4199,'_flexible_templates_6_differential_translucent_4_column_2_color','field_62554fcda0e79'),(148946,4199,'flexible_templates_6_differential_translucent_4_heading_3','22'),(148947,4199,'_flexible_templates_6_differential_translucent_4_heading_3','field_62568a30727b6'),(148948,4199,'flexible_templates_6_differential_translucent_4_column_3','Sometimes'),(148949,4199,'_flexible_templates_6_differential_translucent_4_column_3','field_62554d4d172de'),(148950,4199,'flexible_templates_6_differential_translucent_4_column_3_color','#7080a7'),(148951,4199,'_flexible_templates_6_differential_translucent_4_column_3_color','field_62554ff6a0e7a'),(148952,4199,'flexible_templates_6_differential_translucent_4_heading_4','23'),(148953,4199,'_flexible_templates_6_differential_translucent_4_heading_4','field_62568a37727b7'),(148954,4199,'flexible_templates_6_differential_translucent_4_column_4','Rare'),(148955,4199,'_flexible_templates_6_differential_translucent_4_column_4','field_62554d4f172df'),(148956,4199,'flexible_templates_6_differential_translucent_4_column_4_color','#ff555f'),(148957,4199,'_flexible_templates_6_differential_translucent_4_column_4_color','field_62555028a0e7c'),(148958,4199,'flexible_templates_6_differential_translucent_4_heading_5','24'),(148959,4199,'_flexible_templates_6_differential_translucent_4_heading_5','field_62568a40727b8'),(148960,4199,'flexible_templates_6_differential_translucent_4_column_5','Always'),(148961,4199,'_flexible_templates_6_differential_translucent_4_column_5','field_62555011a0e7b'),(148962,4199,'flexible_templates_6_differential_translucent_4_column_5_color','#24c1ff'),(148963,4199,'_flexible_templates_6_differential_translucent_4_column_5_color','field_6255503aa0e7d'),(148964,4199,'flexible_templates_6_differential_translucent','5'),(148965,4199,'_flexible_templates_6_differential_translucent','field_62554c30172da'),(148966,4199,'flexible_templates_7_heading','Be smart. Be efficient. Be agile.'),(148967,4199,'_flexible_templates_7_heading','field_625565e14146d_field_6254fdb2efa27'),(148968,4199,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(148969,4199,'_flexible_templates_7_cta','field_625565fa4146e_field_62551b3e101c4'),(148970,4199,'flexible_templates','a:8:{i:0;s:16:\"tek-teams-banner\";i:1;s:20:\"tek-teams-two-column\";i:2;s:14:\"tek-team-about\";i:3;s:21:\"tek-teams-development\";i:4;s:18:\"tek_teams_benifits\";i:5;s:17:\"tek-team-whats-is\";i:6;s:34:\"tek-teams-translucent-differential\";i:7;s:17:\"lets_talk_section\";}'),(148971,4199,'_flexible_templates','field_6254f4d84ef9b'),(148996,3956,'_wp_old_date','2022-05-04'),(149001,3972,'_wp_old_date','2022-05-04'),(149006,3977,'_wp_old_date','2022-05-05'),(149011,3984,'_wp_old_date','2022-05-05'),(149016,3988,'_wp_old_date','2022-05-05'),(149021,3989,'_wp_old_date','2022-05-05'),(149026,4007,'_wp_old_date','2022-05-05'),(149027,4007,'_pinterest_shares','0'),(149028,4007,'_total_shares','0'),(149030,4007,'_menu_sgpb_popup_id','0'),(149031,4008,'_wp_old_date','2022-05-05'),(149032,4008,'_pinterest_shares','0'),(149033,4008,'_total_shares','0'),(149035,4008,'_menu_sgpb_popup_id','0'),(149036,4009,'_wp_old_date','2022-05-05'),(149037,4009,'_pinterest_shares','0'),(149038,4009,'_total_shares','0'),(149040,4009,'_menu_sgpb_popup_id','0'),(149041,4010,'_wp_old_date','2022-05-05'),(149042,4010,'_pinterest_shares','0'),(149043,4010,'_total_shares','0'),(149045,4010,'_menu_sgpb_popup_id','0'),(149049,1885,'_pinterest_shares','0'),(149050,1885,'_total_shares','0'),(149081,8,'_pinterest_shares','0'),(149082,8,'_total_shares','0'),(149084,2555,'_pinterest_shares','0'),(149085,2555,'_total_shares','0'),(149087,2556,'_pinterest_shares','0'),(149088,2556,'_total_shares','0'),(149090,3586,'_pinterest_shares','0'),(149091,3586,'_total_shares','0'),(149171,4203,'_edit_lock','1661515767:21'),(149172,4203,'_edit_last','20'),(149173,4203,'_wp_page_template','page-cloud-native-application.php'),(149174,4203,'hefo_before','0'),(149175,4203,'hefo_after','0'),(149176,4203,'_yoast_wpseo_focuskeywords',''),(149177,4203,'_yoast_wpseo_keywordsynonyms',''),(149178,4203,'_yoast_wpseo_estimated-reading-time-minutes',''),(149185,4205,'_wp_attached_file','2022/06/Asset-1.jpg'),(149186,4205,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:531;s:6:\"height\";i:474;s:4:\"file\";s:19:\"2022/06/Asset-1.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Asset-1-300x268.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Asset-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:19:\"Asset-1-500x474.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:474;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:{}}}'),(149187,4205,'_imagify_optimization_level','0'),(149188,4205,'_imagify_status','success'),(149189,4205,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:94469;s:14:\"optimized_size\";i:90505;s:7:\"percent\";d:4.2;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26594;s:14:\"optimized_size\";i:72936;s:7:\"percent\";d:-174.26;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3893;s:14:\"optimized_size\";i:10476;s:7:\"percent\";d:-169.1;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9449;s:14:\"optimized_size\";i:25144;s:7:\"percent\";d:-166.1;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:94469;s:14:\"optimized_size\";i:76936;s:7:\"percent\";d:18.56;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9449;s:14:\"optimized_size\";i:9339;s:7:\"percent\";d:1.16;}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26594;s:14:\"optimized_size\";i:25406;s:7:\"percent\";d:4.47;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:264917;s:14:\"optimized_size\";i:310742;s:7:\"percent\";d:-17.3;}}'),(149190,4206,'_wp_attached_file','2022/06/Group-8578.png'),(149191,4206,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:40;s:6:\"height\";i:40;s:4:\"file\";s:22:\"2022/06/Group-8578.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(149192,4206,'_imagify_optimization_level','0'),(149193,4206,'_imagify_status','success'),(149194,4206,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:715;s:14:\"optimized_size\";i:404;s:7:\"percent\";d:43.5;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:715;s:14:\"optimized_size\";i:1390;s:7:\"percent\";d:-94.41;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1430;s:14:\"optimized_size\";i:1794;s:7:\"percent\";d:-25.45;}}'),(149207,4207,'_wp_attached_file','2022/06/Group-8578.jpg'),(149208,4207,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:40;s:6:\"height\";i:40;s:4:\"file\";s:22:\"2022/06/Group-8578.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(149209,4207,'_imagify_optimization_level','0'),(149210,4207,'_imagify_status','already_optimized'),(149211,4207,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2135;s:14:\"optimized_size\";i:1316;s:7:\"percent\";d:38.36;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2135;s:14:\"optimized_size\";i:1316;s:7:\"percent\";d:38.36;}}'),(149212,4208,'_wp_attached_file','2022/06/replatform.jpg'),(149213,4208,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:174;s:6:\"height\";i:122;s:4:\"file\";s:22:\"2022/06/replatform.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"replatform-150x122.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:122;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:{}}}'),(149214,4208,'_imagify_optimization_level','0'),(149215,4208,'_imagify_status','success'),(149216,4208,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17990;s:14:\"optimized_size\";i:17967;s:7:\"percent\";d:0.13;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5311;s:14:\"optimized_size\";i:13064;s:7:\"percent\";d:-145.98;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17990;s:14:\"optimized_size\";i:13136;s:7:\"percent\";d:26.98;}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:41291;s:14:\"optimized_size\";i:44167;s:7:\"percent\";d:-6.97;}}'),(149217,4209,'_wp_attached_file','2022/06/rebuild_1.jpg'),(149218,4209,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:196;s:6:\"height\";i:122;s:4:\"file\";s:21:\"2022/06/rebuild_1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"rebuild_1-150x122.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:122;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:{}}}'),(149219,4209,'_imagify_optimization_level','0'),(149220,4209,'_imagify_status','already_optimized'),(149221,4209,'_imagify_data','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4521;s:14:\"optimized_size\";i:12490;s:7:\"percent\";d:-176.27;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15992;s:14:\"optimized_size\";i:14764;s:7:\"percent\";d:7.68;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:20513;s:14:\"optimized_size\";i:27254;s:7:\"percent\";d:-32.86;}}'),(149231,4213,'_wp_attached_file','2022/06/Group-8625.png'),(149232,4213,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:545;s:4:\"file\";s:22:\"2022/06/Group-8625.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Group-8625-300x85.png\";s:5:\"width\";i:300;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Group-8625-1024x291.png\";s:5:\"width\";i:1024;s:6:\"height\";i:291;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Group-8625-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:\"Group-8625-768x218.png\";s:5:\"width\";i:768;s:6:\"height\";i:218;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"Group-8625-1536x436.png\";s:5:\"width\";i:1536;s:6:\"height\";i:436;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"Group-8625-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(149233,4213,'_imagify_optimization_level','0'),(149234,4213,'_imagify_status','success'),(149235,4213,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:404425;s:14:\"optimized_size\";i:300805;s:7:\"percent\";d:25.62;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:137315;s:14:\"optimized_size\";i:60342;s:7:\"percent\";d:56.06;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:271011;s:14:\"optimized_size\";i:118206;s:7:\"percent\";d:56.38;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:87931;s:14:\"optimized_size\";i:37070;s:7:\"percent\";d:57.84;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19867;s:14:\"optimized_size\";i:9442;s:7:\"percent\";d:52.47;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:141547;s:14:\"optimized_size\";i:62928;s:7:\"percent\";d:55.54;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16683;s:14:\"optimized_size\";i:6532;s:7:\"percent\";d:60.85;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:404425;s:14:\"optimized_size\";i:189782;s:7:\"percent\";d:53.07;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:16683;s:14:\"optimized_size\";i:13909;s:7:\"percent\";d:16.63;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:141547;s:14:\"optimized_size\";i:113166;s:7:\"percent\";d:20.05;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19867;s:14:\"optimized_size\";i:16760;s:7:\"percent\";d:15.64;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:87931;s:14:\"optimized_size\";i:69710;s:7:\"percent\";d:20.72;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:271011;s:14:\"optimized_size\";i:227278;s:7:\"percent\";d:16.14;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:137315;s:14:\"optimized_size\";i:123394;s:7:\"percent\";d:10.14;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2157558;s:14:\"optimized_size\";i:1349324;s:7:\"percent\";d:37.46;}}'),(149242,4214,'_wp_attached_file','2022/06/Group-8594.png'),(149243,4214,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:152;s:6:\"height\";i:147;s:4:\"file\";s:22:\"2022/06/Group-8594.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Group-8594-150x147.png\";s:5:\"width\";i:150;s:6:\"height\";i:147;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:{}}}'),(149244,4214,'_imagify_optimization_level','0'),(149245,4214,'_imagify_status','success'),(149246,4214,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6605;s:14:\"optimized_size\";i:3084;s:7:\"percent\";d:53.31;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7006;s:14:\"optimized_size\";i:11056;s:7:\"percent\";d:-57.81;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6605;s:14:\"optimized_size\";i:11036;s:7:\"percent\";d:-67.09;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7006;s:14:\"optimized_size\";i:3437;s:7:\"percent\";d:50.94;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:27222;s:14:\"optimized_size\";i:28613;s:7:\"percent\";d:-5.11;}}'),(149255,4216,'_wp_attached_file','2022/06/Group-8544.png'),(149256,4216,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:24;s:6:\"height\";i:24;s:4:\"file\";s:22:\"2022/06/Group-8544.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(149257,4216,'_imagify_optimization_level','0'),(149258,4216,'_imagify_status','success'),(149259,4216,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:574;s:14:\"optimized_size\";i:337;s:7:\"percent\";d:41.29;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:574;s:14:\"optimized_size\";i:644;s:7:\"percent\";d:-12.2;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1148;s:14:\"optimized_size\";i:981;s:7:\"percent\";d:14.55;}}'),(149276,4219,'_wp_attached_file','2022/06/Group-8624-2.png'),(149277,4219,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:448;s:4:\"file\";s:24:\"2022/06/Group-8624-2.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Group-8624-2-300x70.png\";s:5:\"width\";i:300;s:6:\"height\";i:70;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Group-8624-2-1024x239.png\";s:5:\"width\";i:1024;s:6:\"height\";i:239;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Group-8624-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:24:\"Group-8624-2-768x179.png\";s:5:\"width\";i:768;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"Group-8624-2-1536x358.png\";s:5:\"width\";i:1536;s:6:\"height\";i:358;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:24:\"Group-8624-2-500x448.png\";s:5:\"width\";i:500;s:6:\"height\";i:448;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:{}}}'),(149281,4219,'_imagify_optimization_level','0'),(149282,4219,'_imagify_status','success'),(149283,4219,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:176373;s:14:\"optimized_size\";i:122736;s:7:\"percent\";d:30.41;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:114724;s:14:\"optimized_size\";i:107268;s:7:\"percent\";d:6.5;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:98247;s:14:\"optimized_size\";i:75610;s:7:\"percent\";d:23.04;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28981;s:14:\"optimized_size\";i:22314;s:7:\"percent\";d:23;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14849;s:14:\"optimized_size\";i:11188;s:7:\"percent\";d:24.65;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:48857;s:14:\"optimized_size\";i:36326;s:7:\"percent\";d:25.65;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6162;s:14:\"optimized_size\";i:5054;s:7:\"percent\";d:17.98;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:176373;s:14:\"optimized_size\";i:128926;s:7:\"percent\";d:26.9;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6162;s:14:\"optimized_size\";i:5460;s:7:\"percent\";d:11.39;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:48857;s:14:\"optimized_size\";i:43462;s:7:\"percent\";d:11.04;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14849;s:14:\"optimized_size\";i:13164;s:7:\"percent\";d:11.35;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28981;s:14:\"optimized_size\";i:25701;s:7:\"percent\";d:11.32;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:98247;s:14:\"optimized_size\";i:87257;s:7:\"percent\";d:11.19;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:114724;s:14:\"optimized_size\";i:103399;s:7:\"percent\";d:9.87;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:976386;s:14:\"optimized_size\";i:787865;s:7:\"percent\";d:19.31;}}'),(149293,4220,'_wp_attached_file','2022/06/Group-8556.png'),(149294,4220,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:24;s:6:\"height\";i:24;s:4:\"file\";s:22:\"2022/06/Group-8556.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(149295,4220,'_imagify_optimization_level','0'),(149296,4220,'_imagify_status','success'),(149297,4220,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:546;s:14:\"optimized_size\";i:335;s:7:\"percent\";d:38.64;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:546;s:14:\"optimized_size\";i:822;s:7:\"percent\";d:-50.55;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1092;s:14:\"optimized_size\";i:1157;s:7:\"percent\";d:-5.95;}}'),(149301,4221,'_wp_attached_file','2022/06/Group-8550.png'),(149302,4221,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:24;s:6:\"height\";i:24;s:4:\"file\";s:22:\"2022/06/Group-8550.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(149303,4221,'_imagify_optimization_level','0'),(149304,4221,'_imagify_status','success'),(149305,4221,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:296;s:14:\"optimized_size\";i:204;s:7:\"percent\";d:31.08;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:296;s:14:\"optimized_size\";i:618;s:7:\"percent\";d:-108.78;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:592;s:14:\"optimized_size\";i:822;s:7:\"percent\";d:-38.85;}}'),(149306,4222,'_wp_attached_file','2022/06/Group-8554.png'),(149307,4222,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:24;s:6:\"height\";i:24;s:4:\"file\";s:22:\"2022/06/Group-8554.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(149308,4222,'_imagify_optimization_level','0'),(149309,4222,'_imagify_status','success'),(149310,4222,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:358;s:14:\"optimized_size\";i:233;s:7:\"percent\";d:34.92;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:358;s:14:\"optimized_size\";i:584;s:7:\"percent\";d:-63.13;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:716;s:14:\"optimized_size\";i:817;s:7:\"percent\";d:-14.11;}}'),(149311,4223,'_wp_attached_file','2022/06/Group-8548.png'),(149312,4223,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:24;s:6:\"height\";i:24;s:4:\"file\";s:22:\"2022/06/Group-8548.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(149313,4223,'_imagify_optimization_level','0'),(149314,4223,'_imagify_status','success'),(149315,4223,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:722;s:14:\"optimized_size\";i:430;s:7:\"percent\";d:40.44;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:722;s:14:\"optimized_size\";i:854;s:7:\"percent\";d:-18.28;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1444;s:14:\"optimized_size\";i:1284;s:7:\"percent\";d:11.08;}}'),(149316,4224,'_wp_attached_file','2022/06/Group-8551.png'),(149317,4224,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:24;s:6:\"height\";i:24;s:4:\"file\";s:22:\"2022/06/Group-8551.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(149318,4224,'_imagify_optimization_level','0'),(149319,4224,'_imagify_status','success'),(149320,4224,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:502;s:14:\"optimized_size\";i:304;s:7:\"percent\";d:39.44;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:502;s:14:\"optimized_size\";i:728;s:7:\"percent\";d:-45.02;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1004;s:14:\"optimized_size\";i:1032;s:7:\"percent\";d:-2.79;}}'),(149324,4225,'_wp_attached_file','2022/06/Group-8555.png'),(149325,4225,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:24;s:6:\"height\";i:24;s:4:\"file\";s:22:\"2022/06/Group-8555.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(149326,4225,'_imagify_optimization_level','0'),(149327,4225,'_imagify_status','success'),(149328,4225,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:314;s:14:\"optimized_size\";i:228;s:7:\"percent\";d:27.39;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:314;s:14:\"optimized_size\";i:664;s:7:\"percent\";d:-111.46;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:628;s:14:\"optimized_size\";i:892;s:7:\"percent\";d:-42.04;}}'),(149332,4226,'_wp_attached_file','2022/06/Group-8549.png'),(149333,4226,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:24;s:6:\"height\";i:24;s:4:\"file\";s:22:\"2022/06/Group-8549.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(149334,4226,'_imagify_optimization_level','0'),(149335,4226,'_imagify_status','success'),(149336,4226,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:661;s:14:\"optimized_size\";i:392;s:7:\"percent\";d:40.7;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:661;s:14:\"optimized_size\";i:904;s:7:\"percent\";d:-36.76;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1322;s:14:\"optimized_size\";i:1296;s:7:\"percent\";d:1.97;}}'),(149337,4227,'_wp_attached_file','2022/06/Group-8552.png'),(149338,4227,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:24;s:6:\"height\";i:24;s:4:\"file\";s:22:\"2022/06/Group-8552.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(149339,4227,'_imagify_optimization_level','0'),(149340,4227,'_imagify_status','success'),(149341,4227,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:599;s:14:\"optimized_size\";i:345;s:7:\"percent\";d:42.4;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:599;s:14:\"optimized_size\";i:804;s:7:\"percent\";d:-34.22;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1198;s:14:\"optimized_size\";i:1149;s:7:\"percent\";d:4.09;}}'),(149342,4228,'_wp_attached_file','2022/06/Group-8553.png'),(149343,4228,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:24;s:6:\"height\";i:24;s:4:\"file\";s:22:\"2022/06/Group-8553.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(149344,4228,'_imagify_optimization_level','0'),(149345,4228,'_imagify_status','success'),(149346,4228,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:506;s:14:\"optimized_size\";i:308;s:7:\"percent\";d:39.13;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:506;s:14:\"optimized_size\";i:840;s:7:\"percent\";d:-66.01;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1012;s:14:\"optimized_size\";i:1148;s:7:\"percent\";d:-13.44;}}'),(149381,4231,'_wp_attached_file','2022/06/right-arrow.png'),(149382,4231,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:24;s:6:\"height\";i:24;s:4:\"file\";s:23:\"2022/06/right-arrow.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(149383,4231,'_imagify_optimization_level','0'),(149384,4231,'_imagify_status','success'),(149385,4231,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:256;s:14:\"optimized_size\";i:197;s:7:\"percent\";d:23.05;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:256;s:14:\"optimized_size\";i:472;s:7:\"percent\";d:-84.38;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:512;s:14:\"optimized_size\";i:669;s:7:\"percent\";d:-30.66;}}'),(149402,4236,'_wp_attached_file','2022/06/left-arrow.png'),(149403,4236,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:24;s:6:\"height\";i:24;s:4:\"file\";s:22:\"2022/06/left-arrow.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(149404,4236,'_imagify_optimization_level','0'),(149405,4236,'_imagify_status','success'),(149406,4236,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:267;s:14:\"optimized_size\";i:198;s:7:\"percent\";d:25.84;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:267;s:14:\"optimized_size\";i:472;s:7:\"percent\";d:-76.78;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:534;s:14:\"optimized_size\";i:670;s:7:\"percent\";d:-25.47;}}'),(149449,4238,'_wp_attached_file','2022/06/app-banner.png'),(149450,4238,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:338;s:4:\"file\";s:22:\"2022/06/app-banner.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"app-banner-300x53.png\";s:5:\"width\";i:300;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"app-banner-1024x180.png\";s:5:\"width\";i:1024;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"app-banner-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:\"app-banner-768x135.png\";s:5:\"width\";i:768;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"app-banner-1536x270.png\";s:5:\"width\";i:1536;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"app-banner-500x338.png\";s:5:\"width\";i:500;s:6:\"height\";i:338;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:{}}}'),(149451,4238,'_imagify_optimization_level','0'),(149452,4238,'_imagify_status','success'),(149453,4238,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:579372;s:14:\"optimized_size\";i:434643;s:7:\"percent\";d:24.98;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:165679;s:14:\"optimized_size\";i:40244;s:7:\"percent\";d:75.71;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:256007;s:14:\"optimized_size\";i:56912;s:7:\"percent\";d:77.77;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:55100;s:14:\"optimized_size\";i:19918;s:7:\"percent\";d:63.85;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19329;s:14:\"optimized_size\";i:4846;s:7:\"percent\";d:74.93;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:104452;s:14:\"optimized_size\";i:30674;s:7:\"percent\";d:70.63;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:7923;s:14:\"optimized_size\";i:4406;s:7:\"percent\";d:44.39;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:579372;s:14:\"optimized_size\";i:106598;s:7:\"percent\";d:81.6;}s:6:\"medium\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:5:\"large\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:12:\"medium_large\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:9:\"1536x1536\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:7:\"feature\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1767234;s:14:\"optimized_size\";i:698241;s:7:\"percent\";d:60.49;}}'),(149481,4239,'_wp_attached_file','2022/06/left-arrow-1.png'),(149482,4239,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:24;s:6:\"height\";i:24;s:4:\"file\";s:24:\"2022/06/left-arrow-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(149483,4239,'_imagify_optimization_level','0'),(149484,4239,'_imagify_status','error'),(149485,4239,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(149570,4241,'_wp_attached_file','2022/06/mobil-baner-app.png'),(149571,4241,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:390;s:6:\"height\";i:294;s:4:\"file\";s:27:\"2022/06/mobil-baner-app.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"mobil-baner-app-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"mobil-baner-app-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:{}}}'),(149572,4241,'_imagify_optimization_level','0'),(149573,4241,'_imagify_status','error'),(149574,4241,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(149575,4242,'_wp_page_template','flexible-template.php'),(149576,4242,'hefo_before','0'),(149577,4242,'hefo_after','0'),(149578,4242,'_yoast_wpseo_focuskeywords',''),(149579,4242,'_yoast_wpseo_keywordsynonyms',''),(149580,4242,'_yoast_wpseo_estimated-reading-time-minutes',''),(149584,4242,'_dp_original','4203'),(149585,4242,'_edit_lock','1658731955:20'),(149607,4242,'_edit_last','20'),(149608,4242,'flexible_templates','a:9:{i:0;s:31:\"cloud_native_application_banner\";i:1;s:50:\"cloud_native_application_building_new_applications\";i:2;s:47:\"cloud_native_application_rebuild_and_replatform\";i:3;s:40:\"cloud_native_application_fullwidth_image\";i:4;s:49:\"cloud_native_application_build_rebuild_replatform\";i:5;s:35:\"cloud_native_applications_solutions\";i:6;s:40:\"cloud_native_application_fullwidth_image\";i:7;s:47:\"cloud_native_applications_the_translucent_value\";i:8;s:40:\"cloud_native_application_copy_and_button\";}'),(149609,4242,'_flexible_templates','field_6254f4d84ef9b'),(149610,4247,'flexible_templates',''),(149611,4247,'_flexible_templates','field_6254f4d84ef9b'),(149612,4242,'flexible_templates_0_image','4238'),(149613,4242,'_flexible_templates_0_image','field_62bb17034467a_field_62552ada52711_field_6254fdc5efa2a'),(149614,4242,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(149615,4242,'_flexible_templates_0_sub_heading','field_62bb173b4467b_field_6255097642ef4_field_6254fdbaefa28'),(149616,4242,'flexible_templates_0_heading','Cloud Native Application Development'),(149617,4242,'_flexible_templates_0_heading','field_62bb17614467c_field_62551ac3a6f96_field_6254fdb2efa27'),(149618,4242,'flexible_templates_0_copy','In modern application development you have three choices: Build | Rebuild | Replatform'),(149619,4242,'_flexible_templates_0_copy','field_62bb17874467d_field_62551b74a6f99_field_6254fdc0efa29'),(149620,4248,'flexible_templates','a:1:{i:0;s:31:\"cloud_native_application_banner\";}'),(149621,4248,'_flexible_templates','field_6254f4d84ef9b'),(149622,4248,'flexible_templates_0_image','4238'),(149623,4248,'_flexible_templates_0_image','field_62bb17034467a_field_62552ada52711_field_6254fdc5efa2a'),(149624,4248,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(149625,4248,'_flexible_templates_0_sub_heading','field_62bb173b4467b_field_6255097642ef4_field_6254fdbaefa28'),(149626,4248,'flexible_templates_0_heading','Cloud Native Application Development'),(149627,4248,'_flexible_templates_0_heading','field_62bb17614467c_field_62551ac3a6f96_field_6254fdb2efa27'),(149628,4248,'flexible_templates_0_copy','In modern application development you have three choices: Build | Rebuild | Replatform'),(149629,4248,'_flexible_templates_0_copy','field_62bb17874467d_field_62551b74a6f99_field_6254fdc0efa29'),(149636,4243,'_pinterest_shares','0'),(149637,4243,'_total_shares','0'),(149651,3947,'_edit_last','20'),(149652,4249,'_pinterest_shares','0'),(149653,4249,'_total_shares','0'),(149655,4250,'_pinterest_shares','0'),(149656,4250,'_total_shares','0'),(149658,4251,'_pinterest_shares','0'),(149659,4251,'_total_shares','0'),(149661,4252,'_pinterest_shares','0'),(149662,4252,'_total_shares','0'),(149670,4253,'_pinterest_shares','0'),(149671,4253,'_total_shares','0'),(149673,4254,'_pinterest_shares','0'),(149674,4254,'_total_shares','0'),(149685,3947,'_pinterest_shares','0'),(149686,3947,'_total_shares','0'),(149715,4263,'_pinterest_shares','0'),(149716,4263,'_total_shares','0'),(149718,4264,'_pinterest_shares','0'),(149719,4264,'_total_shares','0'),(149739,4271,'_pinterest_shares','0'),(149740,4271,'_total_shares','0'),(149742,4272,'_pinterest_shares','0'),(149743,4272,'_total_shares','0'),(149748,4274,'_pinterest_shares','0'),(149749,4274,'_total_shares','0'),(149751,4275,'_pinterest_shares','0'),(149752,4275,'_total_shares','0'),(149763,4279,'_pinterest_shares','0'),(149764,4279,'_total_shares','0'),(149766,4280,'_pinterest_shares','0'),(149767,4280,'_total_shares','0'),(149769,4281,'_pinterest_shares','0'),(149770,4281,'_total_shares','0'),(149772,4282,'_pinterest_shares','0'),(149773,4282,'_total_shares','0'),(149781,4285,'_pinterest_shares','0'),(149782,4285,'_total_shares','0'),(149784,4286,'_pinterest_shares','0'),(149785,4286,'_total_shares','0'),(149787,4287,'_pinterest_shares','0'),(149788,4287,'_total_shares','0'),(149802,4255,'_pinterest_shares','0'),(149803,4255,'_total_shares','0'),(149805,4256,'_pinterest_shares','0'),(149806,4256,'_total_shares','0'),(149808,4257,'_pinterest_shares','0'),(149809,4257,'_total_shares','0'),(149811,4258,'_pinterest_shares','0'),(149812,4258,'_total_shares','0'),(149814,4259,'_pinterest_shares','0'),(149815,4259,'_total_shares','0'),(149817,4260,'_pinterest_shares','0'),(149818,4260,'_total_shares','0'),(149820,4261,'_pinterest_shares','0'),(149821,4261,'_total_shares','0'),(149826,4267,'_pinterest_shares','0'),(149827,4267,'_total_shares','0'),(149829,4268,'_pinterest_shares','0'),(149830,4268,'_total_shares','0'),(149832,4269,'_pinterest_shares','0'),(149833,4269,'_total_shares','0'),(149835,4270,'_pinterest_shares','0'),(149836,4270,'_total_shares','0'),(149838,4273,'_pinterest_shares','0'),(149839,4273,'_total_shares','0'),(149841,4276,'_pinterest_shares','0'),(149842,4276,'_total_shares','0'),(149844,4277,'_pinterest_shares','0'),(149845,4277,'_total_shares','0'),(149847,4278,'_pinterest_shares','0'),(149848,4278,'_total_shares','0'),(149850,4283,'_pinterest_shares','0'),(149851,4283,'_total_shares','0'),(149853,4284,'_pinterest_shares','0'),(149854,4284,'_total_shares','0'),(149856,4288,'_pinterest_shares','0'),(149857,4288,'_total_shares','0'),(149859,4289,'_pinterest_shares','0'),(149860,4289,'_total_shares','0'),(149868,4290,'_pinterest_shares','0'),(149869,4290,'_total_shares','0'),(149871,4262,'_pinterest_shares','0'),(149872,4262,'_total_shares','0'),(149874,4265,'_pinterest_shares','0'),(149875,4265,'_total_shares','0'),(149877,4266,'_pinterest_shares','0'),(149878,4266,'_total_shares','0'),(149886,4291,'_wp_attached_file','2022/06/Asset-1-1.jpg'),(149887,4291,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:531;s:6:\"height\";i:474;s:4:\"file\";s:21:\"2022/06/Asset-1-1.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Asset-1-1-300x268.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Asset-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"feature\";a:4:{s:4:\"file\";s:21:\"Asset-1-1-500x474.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:474;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:{}}}'),(149888,4291,'_imagify_optimization_level','0'),(149889,4291,'_imagify_status','error'),(149890,4291,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(149891,4242,'flexible_templates_1_sub_heading','BUILDING NEW APPLICATIONS'),(149892,4242,'_flexible_templates_1_sub_heading','field_62bb1c9962e8a_field_6254fdbaefa28'),(149893,4242,'flexible_templates_1_heading','What is Building?'),(149894,4242,'_flexible_templates_1_heading','field_62bb1c9f62e8b_field_6254fdb2efa27'),(149895,4242,'flexible_templates_1_copy_wysiwyg','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.\r\n\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.\r\nUnleashing the true power of your organization in the 4th industrial revolution.'),(149896,4242,'_flexible_templates_1_copy_wysiwyg','field_62bb1cb462e8c_field_6255310ecf4de'),(149897,4242,'flexible_templates_1_image','4291'),(149898,4242,'_flexible_templates_1_image','field_62bb1cf662e8d_field_6254fdc5efa2a'),(149899,4242,'flexible_templates_1_testimonial_section_0_icon',''),(149900,4242,'_flexible_templates_1_testimonial_section_0_icon','field_62bb25696c318'),(149901,4242,'flexible_templates_1_testimonial_section_0_heading','Building GoTo Loans Platform from a Vision:'),(149902,4242,'_flexible_templates_1_testimonial_section_0_heading','field_62bb25736c319'),(149903,4242,'flexible_templates_1_testimonial_section_0_copy','Integrating banking, automotive, loan, mechanic and customer workflow data making the complex almost seem like magic. Keep up the great work!'),(149904,4242,'_flexible_templates_1_testimonial_section_0_copy','field_62bb25786c31a'),(149905,4242,'flexible_templates_1_testimonial_section_0_name','Eric Kaplan'),(149906,4242,'_flexible_templates_1_testimonial_section_0_name','field_62bb260117e59'),(149907,4242,'flexible_templates_1_testimonial_section_0_designation','COO - GoTo Loans'),(149908,4242,'_flexible_templates_1_testimonial_section_0_designation','field_62bb260c17e5a'),(149909,4242,'flexible_templates_1_testimonial_section','1'),(149910,4242,'_flexible_templates_1_testimonial_section','field_62bb1d7162e8f_field_62bb251c6c317'),(149911,4292,'flexible_templates','a:2:{i:0;s:31:\"cloud_native_application_banner\";i:1;s:50:\"cloud_native_application_building_new_applications\";}'),(149912,4292,'_flexible_templates','field_6254f4d84ef9b'),(149913,4292,'flexible_templates_0_image','4238'),(149914,4292,'_flexible_templates_0_image','field_62bb17034467a_field_62552ada52711_field_6254fdc5efa2a'),(149915,4292,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(149916,4292,'_flexible_templates_0_sub_heading','field_62bb173b4467b_field_6255097642ef4_field_6254fdbaefa28'),(149917,4292,'flexible_templates_0_heading','Cloud Native Application Development'),(149918,4292,'_flexible_templates_0_heading','field_62bb17614467c_field_62551ac3a6f96_field_6254fdb2efa27'),(149919,4292,'flexible_templates_0_copy','In modern application development you have three choices: Build | Rebuild | Replatform'),(149920,4292,'_flexible_templates_0_copy','field_62bb17874467d_field_62551b74a6f99_field_6254fdc0efa29'),(149921,4292,'flexible_templates_1_sub_heading','BUILDING NEW APPLICATIONS'),(149922,4292,'_flexible_templates_1_sub_heading','field_62bb1c9962e8a_field_6254fdbaefa28'),(149923,4292,'flexible_templates_1_heading','What is Building?'),(149924,4292,'_flexible_templates_1_heading','field_62bb1c9f62e8b_field_6254fdb2efa27'),(149925,4292,'flexible_templates_1_copy_wysiwyg','

Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.

\r\n

The foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.
Unleashing the true power of your organization in the 4th industrial revolution.

'),(149926,4292,'_flexible_templates_1_copy_wysiwyg','field_62bb1cb462e8c_field_6255310ecf4de'),(149927,4292,'flexible_templates_1_image','4291'),(149928,4292,'_flexible_templates_1_image','field_62bb1cf662e8d_field_6254fdc5efa2a'),(149929,4292,'flexible_templates_1_testimonial_section_0_icon',''),(149930,4292,'_flexible_templates_1_testimonial_section_0_icon','field_62bb25696c318'),(149931,4292,'flexible_templates_1_testimonial_section_0_heading','Building GoTo Loans Platform from a Vision:'),(149932,4292,'_flexible_templates_1_testimonial_section_0_heading','field_62bb25736c319'),(149933,4292,'flexible_templates_1_testimonial_section_0_copy','Integrating banking, automotive, loan, mechanic and customer workflow data making the complex almost seem like magic. Keep up the great work!'),(149934,4292,'_flexible_templates_1_testimonial_section_0_copy','field_62bb25786c31a'),(149935,4292,'flexible_templates_1_testimonial_section_0_name','Eric Kaplan'),(149936,4292,'_flexible_templates_1_testimonial_section_0_name','field_62bb260117e59'),(149937,4292,'flexible_templates_1_testimonial_section_0_designation','COO - GoTo Loans'),(149938,4292,'_flexible_templates_1_testimonial_section_0_designation','field_62bb260c17e5a'),(149939,4292,'flexible_templates_1_testimonial_section','1'),(149940,4292,'_flexible_templates_1_testimonial_section','field_62bb1d7162e8f_field_62bb251c6c317'),(149947,4293,'_wp_attached_file','2022/06/rebuild_1-1.jpg'),(149948,4293,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:196;s:6:\"height\";i:122;s:4:\"file\";s:23:\"2022/06/rebuild_1-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"rebuild_1-1-150x122.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:122;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:{}}}'),(149949,4293,'_imagify_optimization_level','0'),(149950,4293,'_imagify_status','error'),(149951,4293,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(149952,4294,'_wp_attached_file','2022/06/replatform-1.jpg'),(149953,4294,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:174;s:6:\"height\";i:122;s:4:\"file\";s:24:\"2022/06/replatform-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"replatform-1-150x122.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:122;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:{}}}'),(149954,4294,'_imagify_optimization_level','0'),(149955,4294,'_imagify_status','error'),(149956,4294,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(149957,4295,'_wp_attached_file','2022/06/Group-8578-1.jpg'),(149958,4295,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:40;s:6:\"height\";i:40;s:4:\"file\";s:24:\"2022/06/Group-8578-1.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(149959,4295,'_imagify_optimization_level','0'),(149960,4295,'_imagify_status','error'),(149961,4295,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(149962,4242,'flexible_templates_2_sub_heading','REBUILD & REPLATFORM'),(149963,4242,'_flexible_templates_2_sub_heading','field_62bb1e2962e94_field_6254fdbaefa28'),(149964,4242,'flexible_templates_2_heading','What is the best application modernization
choice for my company?'),(149965,4242,'_flexible_templates_2_heading','field_62bb1e3b62e95_field_6254fdb2efa27'),(149966,4242,'flexible_templates_2_copy_wysiwyg','Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.\r\nYou have two application modernization choices when upgrading: Rebuilding or Replatforming'),(149967,4242,'_flexible_templates_2_copy_wysiwyg','field_62bb44696be57_field_6255310ecf4de'),(149968,4242,'flexible_templates_2_build_and_platform_section_0_heading','What is Rebuild'),(149969,4242,'_flexible_templates_2_build_and_platform_section_0_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(149970,4242,'flexible_templates_2_build_and_platform_section_0_image','4293'),(149971,4242,'_flexible_templates_2_build_and_platform_section_0_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(149972,4242,'flexible_templates_2_build_and_platform_section_0_copy','You can rebuild your application components while preserving your original specifications, requirements, and business logic - this will help you shake off the confines of old legacy technology. While using what is still of value.'),(149973,4242,'_flexible_templates_2_build_and_platform_section_0_copy','field_62bb1f8662e99_field_625525b15629c'),(149974,4242,'flexible_templates_2_build_and_platform_section_1_heading','What is Replatform'),(149975,4242,'_flexible_templates_2_build_and_platform_section_1_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(149976,4242,'flexible_templates_2_build_and_platform_section_1_image','4294'),(149977,4242,'_flexible_templates_2_build_and_platform_section_1_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(149978,4242,'flexible_templates_2_build_and_platform_section_1_copy','Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(149979,4242,'_flexible_templates_2_build_and_platform_section_1_copy','field_62bb1f8662e99_field_625525b15629c'),(149980,4242,'flexible_templates_2_build_and_platform_section','2'),(149981,4242,'_flexible_templates_2_build_and_platform_section','field_62bb1eeb62e96'),(149982,4242,'flexible_templates_2_testimonial_section_0_icon','4295'),(149983,4242,'_flexible_templates_2_testimonial_section_0_icon','field_62bb25696c318'),(149984,4242,'flexible_templates_2_testimonial_section_0_heading','Rebuilding CIMS Platform at SickKids Hospital:'),(149985,4242,'_flexible_templates_2_testimonial_section_0_heading','field_62bb25736c319'),(149986,4242,'flexible_templates_2_testimonial_section_0_copy','I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.'),(149987,4242,'_flexible_templates_2_testimonial_section_0_copy','field_62bb25786c31a'),(149988,4242,'flexible_templates_2_testimonial_section_0_name','Andrew James'),(149989,4242,'_flexible_templates_2_testimonial_section_0_name','field_62bb260117e59'),(149990,4242,'flexible_templates_2_testimonial_section_0_designation','The Hospital for Sick Children'),(149991,4242,'_flexible_templates_2_testimonial_section_0_designation','field_62bb260c17e5a'),(149992,4242,'flexible_templates_2_testimonial_section','1'),(149993,4242,'_flexible_templates_2_testimonial_section','field_62bb1fc662e9a_field_62bb251c6c317'),(149994,4296,'flexible_templates','a:3:{i:0;s:31:\"cloud_native_application_banner\";i:1;s:50:\"cloud_native_application_building_new_applications\";i:2;s:47:\"cloud_native_application_rebuild_and_replatform\";}'),(149995,4296,'_flexible_templates','field_6254f4d84ef9b'),(149996,4296,'flexible_templates_0_image','4238'),(149997,4296,'_flexible_templates_0_image','field_62bb17034467a_field_62552ada52711_field_6254fdc5efa2a'),(149998,4296,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(149999,4296,'_flexible_templates_0_sub_heading','field_62bb173b4467b_field_6255097642ef4_field_6254fdbaefa28'),(150000,4296,'flexible_templates_0_heading','Cloud Native Application Development'),(150001,4296,'_flexible_templates_0_heading','field_62bb17614467c_field_62551ac3a6f96_field_6254fdb2efa27'),(150002,4296,'flexible_templates_0_copy','In modern application development you have three choices: Build | Rebuild | Replatform'),(150003,4296,'_flexible_templates_0_copy','field_62bb17874467d_field_62551b74a6f99_field_6254fdc0efa29'),(150004,4296,'flexible_templates_1_sub_heading','BUILDING NEW APPLICATIONS'),(150005,4296,'_flexible_templates_1_sub_heading','field_62bb1c9962e8a_field_6254fdbaefa28'),(150006,4296,'flexible_templates_1_heading','What is Building?'),(150007,4296,'_flexible_templates_1_heading','field_62bb1c9f62e8b_field_6254fdb2efa27'),(150008,4296,'flexible_templates_1_copy_wysiwyg','

Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.

\r\n

The foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.
Unleashing the true power of your organization in the 4th industrial revolution.

'),(150009,4296,'_flexible_templates_1_copy_wysiwyg','field_62bb1cb462e8c_field_6255310ecf4de'),(150010,4296,'flexible_templates_1_image','4291'),(150011,4296,'_flexible_templates_1_image','field_62bb1cf662e8d_field_6254fdc5efa2a'),(150012,4296,'flexible_templates_1_testimonial_section_0_icon',''),(150013,4296,'_flexible_templates_1_testimonial_section_0_icon','field_62bb25696c318'),(150014,4296,'flexible_templates_1_testimonial_section_0_heading','Building GoTo Loans Platform from a Vision:'),(150015,4296,'_flexible_templates_1_testimonial_section_0_heading','field_62bb25736c319'),(150016,4296,'flexible_templates_1_testimonial_section_0_copy','Integrating banking, automotive, loan, mechanic and customer workflow data making the complex almost seem like magic. Keep up the great work!'),(150017,4296,'_flexible_templates_1_testimonial_section_0_copy','field_62bb25786c31a'),(150018,4296,'flexible_templates_1_testimonial_section_0_name','Eric Kaplan'),(150019,4296,'_flexible_templates_1_testimonial_section_0_name','field_62bb260117e59'),(150020,4296,'flexible_templates_1_testimonial_section_0_designation','COO - GoTo Loans'),(150021,4296,'_flexible_templates_1_testimonial_section_0_designation','field_62bb260c17e5a'),(150022,4296,'flexible_templates_1_testimonial_section','1'),(150023,4296,'_flexible_templates_1_testimonial_section','field_62bb1d7162e8f_field_62bb251c6c317'),(150024,4296,'flexible_templates_2_sub_heading','REBUILD & REPLATAFORM'),(150025,4296,'_flexible_templates_2_sub_heading','field_62bb1e2962e94_field_6254fdbaefa28'),(150026,4296,'flexible_templates_2_heading','What is the best application modernization
choice for my company?'),(150027,4296,'_flexible_templates_2_heading','field_62bb1e3b62e95_field_6254fdb2efa27'),(150028,4296,'flexible_templates_2_copy_wysiwyg','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming

'),(150029,4296,'_flexible_templates_2_copy_wysiwyg','field_62bb44696be57_field_6255310ecf4de'),(150030,4296,'flexible_templates_2_build_and_platform_section_0_heading','What is Rebuild'),(150031,4296,'_flexible_templates_2_build_and_platform_section_0_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(150032,4296,'flexible_templates_2_build_and_platform_section_0_image','4293'),(150033,4296,'_flexible_templates_2_build_and_platform_section_0_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(150034,4296,'flexible_templates_2_build_and_platform_section_0_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(150035,4296,'_flexible_templates_2_build_and_platform_section_0_copy','field_62bb1f8662e99_field_625525b15629c'),(150036,4296,'flexible_templates_2_build_and_platform_section_1_heading','What is Replatform'),(150037,4296,'_flexible_templates_2_build_and_platform_section_1_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(150038,4296,'flexible_templates_2_build_and_platform_section_1_image','4294'),(150039,4296,'_flexible_templates_2_build_and_platform_section_1_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(150040,4296,'flexible_templates_2_build_and_platform_section_1_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(150041,4296,'_flexible_templates_2_build_and_platform_section_1_copy','field_62bb1f8662e99_field_625525b15629c'),(150042,4296,'flexible_templates_2_build_and_platform_section','2'),(150043,4296,'_flexible_templates_2_build_and_platform_section','field_62bb1eeb62e96'),(150044,4296,'flexible_templates_2_testimonial_section_0_icon','4295'),(150045,4296,'_flexible_templates_2_testimonial_section_0_icon','field_62bb25696c318'),(150046,4296,'flexible_templates_2_testimonial_section_0_heading','Rebuilding CIMS Platform at SickKids Hospital:'),(150047,4296,'_flexible_templates_2_testimonial_section_0_heading','field_62bb25736c319'),(150048,4296,'flexible_templates_2_testimonial_section_0_copy','I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.'),(150049,4296,'_flexible_templates_2_testimonial_section_0_copy','field_62bb25786c31a'),(150050,4296,'flexible_templates_2_testimonial_section_0_name','Andrew James'),(150051,4296,'_flexible_templates_2_testimonial_section_0_name','field_62bb260117e59'),(150052,4296,'flexible_templates_2_testimonial_section_0_designation','The Hospital for Sick Children'),(150053,4296,'_flexible_templates_2_testimonial_section_0_designation','field_62bb260c17e5a'),(150054,4296,'flexible_templates_2_testimonial_section','1'),(150055,4296,'_flexible_templates_2_testimonial_section','field_62bb1fc662e9a_field_62bb251c6c317'),(150068,4297,'flexible_templates','a:3:{i:0;s:31:\"cloud_native_application_banner\";i:1;s:50:\"cloud_native_application_building_new_applications\";i:2;s:47:\"cloud_native_application_rebuild_and_replatform\";}'),(150069,4297,'_flexible_templates','field_6254f4d84ef9b'),(150070,4297,'flexible_templates_0_image','4238'),(150071,4297,'_flexible_templates_0_image','field_62bb17034467a_field_62552ada52711_field_6254fdc5efa2a'),(150072,4297,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(150073,4297,'_flexible_templates_0_sub_heading','field_62bb173b4467b_field_6255097642ef4_field_6254fdbaefa28'),(150074,4297,'flexible_templates_0_heading','Cloud Native Application Development'),(150075,4297,'_flexible_templates_0_heading','field_62bb17614467c_field_62551ac3a6f96_field_6254fdb2efa27'),(150076,4297,'flexible_templates_0_copy','In modern application development you have three choices: Build | Rebuild | Replatform'),(150077,4297,'_flexible_templates_0_copy','field_62bb17874467d_field_62551b74a6f99_field_6254fdc0efa29'),(150078,4297,'flexible_templates_1_sub_heading','BUILDING NEW APPLICATIONS'),(150079,4297,'_flexible_templates_1_sub_heading','field_62bb1c9962e8a_field_6254fdbaefa28'),(150080,4297,'flexible_templates_1_heading','What is Building?'),(150081,4297,'_flexible_templates_1_heading','field_62bb1c9f62e8b_field_6254fdb2efa27'),(150082,4297,'flexible_templates_1_copy_wysiwyg','

Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.

\r\n

The foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.
Unleashing the true power of your organization in the 4th industrial revolution.

'),(150083,4297,'_flexible_templates_1_copy_wysiwyg','field_62bb1cb462e8c_field_6255310ecf4de'),(150084,4297,'flexible_templates_1_image','4291'),(150085,4297,'_flexible_templates_1_image','field_62bb1cf662e8d_field_6254fdc5efa2a'),(150086,4297,'flexible_templates_1_testimonial_section_0_icon',''),(150087,4297,'_flexible_templates_1_testimonial_section_0_icon','field_62bb25696c318'),(150088,4297,'flexible_templates_1_testimonial_section_0_heading','Building GoTo Loans Platform from a Vision:'),(150089,4297,'_flexible_templates_1_testimonial_section_0_heading','field_62bb25736c319'),(150090,4297,'flexible_templates_1_testimonial_section_0_copy','Integrating banking, automotive, loan, mechanic and customer workflow data making the complex almost seem like magic. Keep up the great work!'),(150091,4297,'_flexible_templates_1_testimonial_section_0_copy','field_62bb25786c31a'),(150092,4297,'flexible_templates_1_testimonial_section_0_name','Eric Kaplan'),(150093,4297,'_flexible_templates_1_testimonial_section_0_name','field_62bb260117e59'),(150094,4297,'flexible_templates_1_testimonial_section_0_designation','COO - GoTo Loans'),(150095,4297,'_flexible_templates_1_testimonial_section_0_designation','field_62bb260c17e5a'),(150096,4297,'flexible_templates_1_testimonial_section','1'),(150097,4297,'_flexible_templates_1_testimonial_section','field_62bb1d7162e8f_field_62bb251c6c317'),(150098,4297,'flexible_templates_2_sub_heading','REBUILD & REPLATAFORM'),(150099,4297,'_flexible_templates_2_sub_heading','field_62bb1e2962e94_field_6254fdbaefa28'),(150100,4297,'flexible_templates_2_heading','What is the best application modernization
choice for my company?'),(150101,4297,'_flexible_templates_2_heading','field_62bb1e3b62e95_field_6254fdb2efa27'),(150102,4297,'flexible_templates_2_copy_wysiwyg','

Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.

\r\n

You have two application modernization choices when upgrading: Rebuilding or Replatforming

'),(150103,4297,'_flexible_templates_2_copy_wysiwyg','field_62bb44696be57_field_6255310ecf4de'),(150104,4297,'flexible_templates_2_build_and_platform_section_0_heading','What is Rebuild'),(150105,4297,'_flexible_templates_2_build_and_platform_section_0_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(150106,4297,'flexible_templates_2_build_and_platform_section_0_image','4293'),(150107,4297,'_flexible_templates_2_build_and_platform_section_0_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(150108,4297,'flexible_templates_2_build_and_platform_section_0_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(150109,4297,'_flexible_templates_2_build_and_platform_section_0_copy','field_62bb1f8662e99_field_625525b15629c'),(150110,4297,'flexible_templates_2_build_and_platform_section_1_heading','What is Replatform'),(150111,4297,'_flexible_templates_2_build_and_platform_section_1_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(150112,4297,'flexible_templates_2_build_and_platform_section_1_image','4294'),(150113,4297,'_flexible_templates_2_build_and_platform_section_1_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(150114,4297,'flexible_templates_2_build_and_platform_section_1_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(150115,4297,'_flexible_templates_2_build_and_platform_section_1_copy','field_62bb1f8662e99_field_625525b15629c'),(150116,4297,'flexible_templates_2_build_and_platform_section','2'),(150117,4297,'_flexible_templates_2_build_and_platform_section','field_62bb1eeb62e96'),(150118,4297,'flexible_templates_2_testimonial_section_0_icon','4295'),(150119,4297,'_flexible_templates_2_testimonial_section_0_icon','field_62bb25696c318'),(150120,4297,'flexible_templates_2_testimonial_section_0_heading','Rebuilding CIMS Platform at SickKids Hospital:'),(150121,4297,'_flexible_templates_2_testimonial_section_0_heading','field_62bb25736c319'),(150122,4297,'flexible_templates_2_testimonial_section_0_copy','I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.'),(150123,4297,'_flexible_templates_2_testimonial_section_0_copy','field_62bb25786c31a'),(150124,4297,'flexible_templates_2_testimonial_section_0_name','Andrew James'),(150125,4297,'_flexible_templates_2_testimonial_section_0_name','field_62bb260117e59'),(150126,4297,'flexible_templates_2_testimonial_section_0_designation','The Hospital for Sick Children'),(150127,4297,'_flexible_templates_2_testimonial_section_0_designation','field_62bb260c17e5a'),(150128,4297,'flexible_templates_2_testimonial_section','1'),(150129,4297,'_flexible_templates_2_testimonial_section','field_62bb1fc662e9a_field_62bb251c6c317'),(150136,4298,'flexible_templates','a:3:{i:0;s:31:\"cloud_native_application_banner\";i:1;s:50:\"cloud_native_application_building_new_applications\";i:2;s:47:\"cloud_native_application_rebuild_and_replatform\";}'),(150137,4298,'_flexible_templates','field_6254f4d84ef9b'),(150138,4298,'flexible_templates_0_image','4238'),(150139,4298,'_flexible_templates_0_image','field_62bb17034467a_field_62552ada52711_field_6254fdc5efa2a'),(150140,4298,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(150141,4298,'_flexible_templates_0_sub_heading','field_62bb173b4467b_field_6255097642ef4_field_6254fdbaefa28'),(150142,4298,'flexible_templates_0_heading','Cloud Native Application Development'),(150143,4298,'_flexible_templates_0_heading','field_62bb17614467c_field_62551ac3a6f96_field_6254fdb2efa27'),(150144,4298,'flexible_templates_0_copy','In modern application development you have three choices: Build | Rebuild | Replatform'),(150145,4298,'_flexible_templates_0_copy','field_62bb17874467d_field_62551b74a6f99_field_6254fdc0efa29'),(150146,4298,'flexible_templates_1_sub_heading','BUILDING NEW APPLICATIONS'),(150147,4298,'_flexible_templates_1_sub_heading','field_62bb1c9962e8a_field_6254fdbaefa28'),(150148,4298,'flexible_templates_1_heading','What is Building?'),(150149,4298,'_flexible_templates_1_heading','field_62bb1c9f62e8b_field_6254fdb2efa27'),(150150,4298,'flexible_templates_1_copy_wysiwyg','

Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.

\r\n

The foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.
Unleashing the true power of your organization in the 4th industrial revolution.

'),(150151,4298,'_flexible_templates_1_copy_wysiwyg','field_62bb1cb462e8c_field_6255310ecf4de'),(150152,4298,'flexible_templates_1_image','4291'),(150153,4298,'_flexible_templates_1_image','field_62bb1cf662e8d_field_6254fdc5efa2a'),(150154,4298,'flexible_templates_1_testimonial_section_0_icon',''),(150155,4298,'_flexible_templates_1_testimonial_section_0_icon','field_62bb25696c318'),(150156,4298,'flexible_templates_1_testimonial_section_0_heading','Building GoTo Loans Platform from a Vision:'),(150157,4298,'_flexible_templates_1_testimonial_section_0_heading','field_62bb25736c319'),(150158,4298,'flexible_templates_1_testimonial_section_0_copy','Integrating banking, automotive, loan, mechanic and customer workflow data making the complex almost seem like magic. Keep up the great work!'),(150159,4298,'_flexible_templates_1_testimonial_section_0_copy','field_62bb25786c31a'),(150160,4298,'flexible_templates_1_testimonial_section_0_name','Eric Kaplan'),(150161,4298,'_flexible_templates_1_testimonial_section_0_name','field_62bb260117e59'),(150162,4298,'flexible_templates_1_testimonial_section_0_designation','COO - GoTo Loans'),(150163,4298,'_flexible_templates_1_testimonial_section_0_designation','field_62bb260c17e5a'),(150164,4298,'flexible_templates_1_testimonial_section','1'),(150165,4298,'_flexible_templates_1_testimonial_section','field_62bb1d7162e8f_field_62bb251c6c317'),(150166,4298,'flexible_templates_2_sub_heading','REBUILD & REPLATAFORM'),(150167,4298,'_flexible_templates_2_sub_heading','field_62bb1e2962e94_field_6254fdbaefa28'),(150168,4298,'flexible_templates_2_heading','What is the best application modernization
choice for my company?'),(150169,4298,'_flexible_templates_2_heading','field_62bb1e3b62e95_field_6254fdb2efa27'),(150170,4298,'flexible_templates_2_copy_wysiwyg','Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.\r\nYou have two application modernization choices when upgrading: Rebuilding or Replatforming'),(150171,4298,'_flexible_templates_2_copy_wysiwyg','field_62bb44696be57_field_6255310ecf4de'),(150172,4298,'flexible_templates_2_build_and_platform_section_0_heading','What is Rebuild'),(150173,4298,'_flexible_templates_2_build_and_platform_section_0_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(150174,4298,'flexible_templates_2_build_and_platform_section_0_image','4293'),(150175,4298,'_flexible_templates_2_build_and_platform_section_0_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(150176,4298,'flexible_templates_2_build_and_platform_section_0_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(150177,4298,'_flexible_templates_2_build_and_platform_section_0_copy','field_62bb1f8662e99_field_625525b15629c'),(150178,4298,'flexible_templates_2_build_and_platform_section_1_heading','What is Replatform'),(150179,4298,'_flexible_templates_2_build_and_platform_section_1_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(150180,4298,'flexible_templates_2_build_and_platform_section_1_image','4294'),(150181,4298,'_flexible_templates_2_build_and_platform_section_1_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(150182,4298,'flexible_templates_2_build_and_platform_section_1_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(150183,4298,'_flexible_templates_2_build_and_platform_section_1_copy','field_62bb1f8662e99_field_625525b15629c'),(150184,4298,'flexible_templates_2_build_and_platform_section','2'),(150185,4298,'_flexible_templates_2_build_and_platform_section','field_62bb1eeb62e96'),(150186,4298,'flexible_templates_2_testimonial_section_0_icon','4295'),(150187,4298,'_flexible_templates_2_testimonial_section_0_icon','field_62bb25696c318'),(150188,4298,'flexible_templates_2_testimonial_section_0_heading','Rebuilding CIMS Platform at SickKids Hospital:'),(150189,4298,'_flexible_templates_2_testimonial_section_0_heading','field_62bb25736c319'),(150190,4298,'flexible_templates_2_testimonial_section_0_copy','I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.'),(150191,4298,'_flexible_templates_2_testimonial_section_0_copy','field_62bb25786c31a'),(150192,4298,'flexible_templates_2_testimonial_section_0_name','Andrew James'),(150193,4298,'_flexible_templates_2_testimonial_section_0_name','field_62bb260117e59'),(150194,4298,'flexible_templates_2_testimonial_section_0_designation','The Hospital for Sick Children'),(150195,4298,'_flexible_templates_2_testimonial_section_0_designation','field_62bb260c17e5a'),(150196,4298,'flexible_templates_2_testimonial_section','1'),(150197,4298,'_flexible_templates_2_testimonial_section','field_62bb1fc662e9a_field_62bb251c6c317'),(150201,4299,'flexible_templates','a:3:{i:0;s:31:\"cloud_native_application_banner\";i:1;s:50:\"cloud_native_application_building_new_applications\";i:2;s:47:\"cloud_native_application_rebuild_and_replatform\";}'),(150202,4299,'_flexible_templates','field_6254f4d84ef9b'),(150203,4299,'flexible_templates_0_image','4238'),(150204,4299,'_flexible_templates_0_image','field_62bb17034467a_field_62552ada52711_field_6254fdc5efa2a'),(150205,4299,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(150206,4299,'_flexible_templates_0_sub_heading','field_62bb173b4467b_field_6255097642ef4_field_6254fdbaefa28'),(150207,4299,'flexible_templates_0_heading','Cloud Native Application Development'),(150208,4299,'_flexible_templates_0_heading','field_62bb17614467c_field_62551ac3a6f96_field_6254fdb2efa27'),(150209,4299,'flexible_templates_0_copy','In modern application development you have three choices: Build | Rebuild | Replatform'),(150210,4299,'_flexible_templates_0_copy','field_62bb17874467d_field_62551b74a6f99_field_6254fdc0efa29'),(150211,4299,'flexible_templates_1_sub_heading','BUILDING NEW APPLICATIONS'),(150212,4299,'_flexible_templates_1_sub_heading','field_62bb1c9962e8a_field_6254fdbaefa28'),(150213,4299,'flexible_templates_1_heading','What is Building?'),(150214,4299,'_flexible_templates_1_heading','field_62bb1c9f62e8b_field_6254fdb2efa27'),(150215,4299,'flexible_templates_1_copy_wysiwyg','

Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.

\r\n

The foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.
Unleashing the true power of your organization in the 4th industrial revolution.

'),(150216,4299,'_flexible_templates_1_copy_wysiwyg','field_62bb1cb462e8c_field_6255310ecf4de'),(150217,4299,'flexible_templates_1_image','4291'),(150218,4299,'_flexible_templates_1_image','field_62bb1cf662e8d_field_6254fdc5efa2a'),(150219,4299,'flexible_templates_1_testimonial_section_0_icon',''),(150220,4299,'_flexible_templates_1_testimonial_section_0_icon','field_62bb25696c318'),(150221,4299,'flexible_templates_1_testimonial_section_0_heading','Building GoTo Loans Platform from a Vision:'),(150222,4299,'_flexible_templates_1_testimonial_section_0_heading','field_62bb25736c319'),(150223,4299,'flexible_templates_1_testimonial_section_0_copy','Integrating banking, automotive, loan, mechanic and customer workflow data making the complex almost seem like magic. Keep up the great work!'),(150224,4299,'_flexible_templates_1_testimonial_section_0_copy','field_62bb25786c31a'),(150225,4299,'flexible_templates_1_testimonial_section_0_name','Eric Kaplan'),(150226,4299,'_flexible_templates_1_testimonial_section_0_name','field_62bb260117e59'),(150227,4299,'flexible_templates_1_testimonial_section_0_designation','COO - GoTo Loans'),(150228,4299,'_flexible_templates_1_testimonial_section_0_designation','field_62bb260c17e5a'),(150229,4299,'flexible_templates_1_testimonial_section','1'),(150230,4299,'_flexible_templates_1_testimonial_section','field_62bb1d7162e8f_field_62bb251c6c317'),(150231,4299,'flexible_templates_2_sub_heading','REBUILD & REPLATAFORM'),(150232,4299,'_flexible_templates_2_sub_heading','field_62bb1e2962e94_field_6254fdbaefa28'),(150233,4299,'flexible_templates_2_heading','What is the best application modernization
choice for my company?'),(150234,4299,'_flexible_templates_2_heading','field_62bb1e3b62e95_field_6254fdb2efa27'),(150235,4299,'flexible_templates_2_copy_wysiwyg','Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.\r\nYou have two application modernization choices when upgrading: Rebuilding or Replatforming'),(150236,4299,'_flexible_templates_2_copy_wysiwyg','field_62bb44696be57_field_6255310ecf4de'),(150237,4299,'flexible_templates_2_build_and_platform_section_0_heading','What is Rebuild'),(150238,4299,'_flexible_templates_2_build_and_platform_section_0_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(150239,4299,'flexible_templates_2_build_and_platform_section_0_image','4293'),(150240,4299,'_flexible_templates_2_build_and_platform_section_0_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(150241,4299,'flexible_templates_2_build_and_platform_section_0_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(150242,4299,'_flexible_templates_2_build_and_platform_section_0_copy','field_62bb1f8662e99_field_625525b15629c'),(150243,4299,'flexible_templates_2_build_and_platform_section_1_heading','What is Replatform'),(150244,4299,'_flexible_templates_2_build_and_platform_section_1_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(150245,4299,'flexible_templates_2_build_and_platform_section_1_image','4294'),(150246,4299,'_flexible_templates_2_build_and_platform_section_1_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(150247,4299,'flexible_templates_2_build_and_platform_section_1_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(150248,4299,'_flexible_templates_2_build_and_platform_section_1_copy','field_62bb1f8662e99_field_625525b15629c'),(150249,4299,'flexible_templates_2_build_and_platform_section','2'),(150250,4299,'_flexible_templates_2_build_and_platform_section','field_62bb1eeb62e96'),(150251,4299,'flexible_templates_2_testimonial_section_0_icon','4295'),(150252,4299,'_flexible_templates_2_testimonial_section_0_icon','field_62bb25696c318'),(150253,4299,'flexible_templates_2_testimonial_section_0_heading','Rebuilding CIMS Platform at SickKids Hospital:'),(150254,4299,'_flexible_templates_2_testimonial_section_0_heading','field_62bb25736c319'),(150255,4299,'flexible_templates_2_testimonial_section_0_copy','I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.'),(150256,4299,'_flexible_templates_2_testimonial_section_0_copy','field_62bb25786c31a'),(150257,4299,'flexible_templates_2_testimonial_section_0_name','Andrew James'),(150258,4299,'_flexible_templates_2_testimonial_section_0_name','field_62bb260117e59'),(150259,4299,'flexible_templates_2_testimonial_section_0_designation','The Hospital for Sick Children'),(150260,4299,'_flexible_templates_2_testimonial_section_0_designation','field_62bb260c17e5a'),(150261,4299,'flexible_templates_2_testimonial_section','1'),(150262,4299,'_flexible_templates_2_testimonial_section','field_62bb1fc662e9a_field_62bb251c6c317'),(150269,4300,'flexible_templates','a:3:{i:0;s:31:\"cloud_native_application_banner\";i:1;s:50:\"cloud_native_application_building_new_applications\";i:2;s:47:\"cloud_native_application_rebuild_and_replatform\";}'),(150270,4300,'_flexible_templates','field_6254f4d84ef9b'),(150271,4300,'flexible_templates_0_image','4238'),(150272,4300,'_flexible_templates_0_image','field_62bb17034467a_field_62552ada52711_field_6254fdc5efa2a'),(150273,4300,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(150274,4300,'_flexible_templates_0_sub_heading','field_62bb173b4467b_field_6255097642ef4_field_6254fdbaefa28'),(150275,4300,'flexible_templates_0_heading','Cloud Native Application Development'),(150276,4300,'_flexible_templates_0_heading','field_62bb17614467c_field_62551ac3a6f96_field_6254fdb2efa27'),(150277,4300,'flexible_templates_0_copy','In modern application development you have three choices: Build | Rebuild | Replatform'),(150278,4300,'_flexible_templates_0_copy','field_62bb17874467d_field_62551b74a6f99_field_6254fdc0efa29'),(150279,4300,'flexible_templates_1_sub_heading','BUILDING NEW APPLICATIONS'),(150280,4300,'_flexible_templates_1_sub_heading','field_62bb1c9962e8a_field_6254fdbaefa28'),(150281,4300,'flexible_templates_1_heading','What is Building?'),(150282,4300,'_flexible_templates_1_heading','field_62bb1c9f62e8b_field_6254fdb2efa27'),(150283,4300,'flexible_templates_1_copy_wysiwyg','

Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.

\r\n

The foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.
Unleashing the true power of your organization in the 4th industrial revolution.

'),(150284,4300,'_flexible_templates_1_copy_wysiwyg','field_62bb1cb462e8c_field_6255310ecf4de'),(150285,4300,'flexible_templates_1_image','4291'),(150286,4300,'_flexible_templates_1_image','field_62bb1cf662e8d_field_6254fdc5efa2a'),(150287,4300,'flexible_templates_1_testimonial_section_0_icon',''),(150288,4300,'_flexible_templates_1_testimonial_section_0_icon','field_62bb25696c318'),(150289,4300,'flexible_templates_1_testimonial_section_0_heading','Building GoTo Loans Platform from a Vision:'),(150290,4300,'_flexible_templates_1_testimonial_section_0_heading','field_62bb25736c319'),(150291,4300,'flexible_templates_1_testimonial_section_0_copy','Integrating banking, automotive, loan, mechanic and customer workflow data making the complex almost seem like magic. Keep up the great work!'),(150292,4300,'_flexible_templates_1_testimonial_section_0_copy','field_62bb25786c31a'),(150293,4300,'flexible_templates_1_testimonial_section_0_name','Eric Kaplan'),(150294,4300,'_flexible_templates_1_testimonial_section_0_name','field_62bb260117e59'),(150295,4300,'flexible_templates_1_testimonial_section_0_designation','COO - GoTo Loans'),(150296,4300,'_flexible_templates_1_testimonial_section_0_designation','field_62bb260c17e5a'),(150297,4300,'flexible_templates_1_testimonial_section','1'),(150298,4300,'_flexible_templates_1_testimonial_section','field_62bb1d7162e8f_field_62bb251c6c317'),(150299,4300,'flexible_templates_2_sub_heading','REBUILD & REPLATAFORM'),(150300,4300,'_flexible_templates_2_sub_heading','field_62bb1e2962e94_field_6254fdbaefa28'),(150301,4300,'flexible_templates_2_heading','What is the best application modernization
choice for my company?'),(150302,4300,'_flexible_templates_2_heading','field_62bb1e3b62e95_field_6254fdb2efa27'),(150303,4300,'flexible_templates_2_copy_wysiwyg','Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.\r\nYou have two application modernization choices when upgrading: Rebuilding or Replatforming'),(150304,4300,'_flexible_templates_2_copy_wysiwyg','field_62bb44696be57_field_6255310ecf4de'),(150305,4300,'flexible_templates_2_build_and_platform_section_0_heading','What is Rebuild'),(150306,4300,'_flexible_templates_2_build_and_platform_section_0_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(150307,4300,'flexible_templates_2_build_and_platform_section_0_image','4293'),(150308,4300,'_flexible_templates_2_build_and_platform_section_0_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(150309,4300,'flexible_templates_2_build_and_platform_section_0_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(150310,4300,'_flexible_templates_2_build_and_platform_section_0_copy','field_62bb1f8662e99_field_625525b15629c'),(150311,4300,'flexible_templates_2_build_and_platform_section_1_heading','What is Replatform'),(150312,4300,'_flexible_templates_2_build_and_platform_section_1_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(150313,4300,'flexible_templates_2_build_and_platform_section_1_image','4294'),(150314,4300,'_flexible_templates_2_build_and_platform_section_1_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(150315,4300,'flexible_templates_2_build_and_platform_section_1_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(150316,4300,'_flexible_templates_2_build_and_platform_section_1_copy','field_62bb1f8662e99_field_625525b15629c'),(150317,4300,'flexible_templates_2_build_and_platform_section','2'),(150318,4300,'_flexible_templates_2_build_and_platform_section','field_62bb1eeb62e96'),(150319,4300,'flexible_templates_2_testimonial_section_0_icon','4295'),(150320,4300,'_flexible_templates_2_testimonial_section_0_icon','field_62bb25696c318'),(150321,4300,'flexible_templates_2_testimonial_section_0_heading','Rebuilding CIMS Platform at SickKids Hospital:'),(150322,4300,'_flexible_templates_2_testimonial_section_0_heading','field_62bb25736c319'),(150323,4300,'flexible_templates_2_testimonial_section_0_copy','I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.'),(150324,4300,'_flexible_templates_2_testimonial_section_0_copy','field_62bb25786c31a'),(150325,4300,'flexible_templates_2_testimonial_section_0_name','Andrew James'),(150326,4300,'_flexible_templates_2_testimonial_section_0_name','field_62bb260117e59'),(150327,4300,'flexible_templates_2_testimonial_section_0_designation','The Hospital for Sick Children'),(150328,4300,'_flexible_templates_2_testimonial_section_0_designation','field_62bb260c17e5a'),(150329,4300,'flexible_templates_2_testimonial_section','1'),(150330,4300,'_flexible_templates_2_testimonial_section','field_62bb1fc662e9a_field_62bb251c6c317'),(150331,4301,'_wp_attached_file','2022/06/Group-8625-1.png'),(150332,4301,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:545;s:4:\"file\";s:24:\"2022/06/Group-8625-1.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Group-8625-1-300x85.png\";s:5:\"width\";i:300;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Group-8625-1-1024x291.png\";s:5:\"width\";i:1024;s:6:\"height\";i:291;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Group-8625-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:24:\"Group-8625-1-768x218.png\";s:5:\"width\";i:768;s:6:\"height\";i:218;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"Group-8625-1-1536x436.png\";s:5:\"width\";i:1536;s:6:\"height\";i:436;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:24:\"Group-8625-1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(150333,4301,'_imagify_optimization_level','0'),(150334,4301,'_imagify_status','error'),(150335,4301,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(150336,4242,'flexible_templates_3_image','4301'),(150337,4242,'_flexible_templates_3_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(150338,4302,'flexible_templates','a:4:{i:0;s:31:\"cloud_native_application_banner\";i:1;s:50:\"cloud_native_application_building_new_applications\";i:2;s:47:\"cloud_native_application_rebuild_and_replatform\";i:3;s:40:\"cloud_native_application_fullwidth_image\";}'),(150339,4302,'_flexible_templates','field_6254f4d84ef9b'),(150340,4302,'flexible_templates_0_image','4238'),(150341,4302,'_flexible_templates_0_image','field_62bb17034467a_field_62552ada52711_field_6254fdc5efa2a'),(150342,4302,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(150343,4302,'_flexible_templates_0_sub_heading','field_62bb173b4467b_field_6255097642ef4_field_6254fdbaefa28'),(150344,4302,'flexible_templates_0_heading','Cloud Native Application Development'),(150345,4302,'_flexible_templates_0_heading','field_62bb17614467c_field_62551ac3a6f96_field_6254fdb2efa27'),(150346,4302,'flexible_templates_0_copy','In modern application development you have three choices: Build | Rebuild | Replatform'),(150347,4302,'_flexible_templates_0_copy','field_62bb17874467d_field_62551b74a6f99_field_6254fdc0efa29'),(150348,4302,'flexible_templates_1_sub_heading','BUILDING NEW APPLICATIONS'),(150349,4302,'_flexible_templates_1_sub_heading','field_62bb1c9962e8a_field_6254fdbaefa28'),(150350,4302,'flexible_templates_1_heading','What is Building?'),(150351,4302,'_flexible_templates_1_heading','field_62bb1c9f62e8b_field_6254fdb2efa27'),(150352,4302,'flexible_templates_1_copy_wysiwyg','

Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.

\r\n

The foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.
Unleashing the true power of your organization in the 4th industrial revolution.

'),(150353,4302,'_flexible_templates_1_copy_wysiwyg','field_62bb1cb462e8c_field_6255310ecf4de'),(150354,4302,'flexible_templates_1_image','4291'),(150355,4302,'_flexible_templates_1_image','field_62bb1cf662e8d_field_6254fdc5efa2a'),(150356,4302,'flexible_templates_1_testimonial_section_0_icon',''),(150357,4302,'_flexible_templates_1_testimonial_section_0_icon','field_62bb25696c318'),(150358,4302,'flexible_templates_1_testimonial_section_0_heading','Building GoTo Loans Platform from a Vision:'),(150359,4302,'_flexible_templates_1_testimonial_section_0_heading','field_62bb25736c319'),(150360,4302,'flexible_templates_1_testimonial_section_0_copy','Integrating banking, automotive, loan, mechanic and customer workflow data making the complex almost seem like magic. Keep up the great work!'),(150361,4302,'_flexible_templates_1_testimonial_section_0_copy','field_62bb25786c31a'),(150362,4302,'flexible_templates_1_testimonial_section_0_name','Eric Kaplan'),(150363,4302,'_flexible_templates_1_testimonial_section_0_name','field_62bb260117e59'),(150364,4302,'flexible_templates_1_testimonial_section_0_designation','COO - GoTo Loans'),(150365,4302,'_flexible_templates_1_testimonial_section_0_designation','field_62bb260c17e5a'),(150366,4302,'flexible_templates_1_testimonial_section','1'),(150367,4302,'_flexible_templates_1_testimonial_section','field_62bb1d7162e8f_field_62bb251c6c317'),(150368,4302,'flexible_templates_2_sub_heading','REBUILD & REPLATAFORM'),(150369,4302,'_flexible_templates_2_sub_heading','field_62bb1e2962e94_field_6254fdbaefa28'),(150370,4302,'flexible_templates_2_heading','What is the best application modernization
choice for my company?'),(150371,4302,'_flexible_templates_2_heading','field_62bb1e3b62e95_field_6254fdb2efa27'),(150372,4302,'flexible_templates_2_copy_wysiwyg','Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.\r\nYou have two application modernization choices when upgrading: Rebuilding or Replatforming'),(150373,4302,'_flexible_templates_2_copy_wysiwyg','field_62bb44696be57_field_6255310ecf4de'),(150374,4302,'flexible_templates_2_build_and_platform_section_0_heading','What is Rebuild'),(150375,4302,'_flexible_templates_2_build_and_platform_section_0_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(150376,4302,'flexible_templates_2_build_and_platform_section_0_image','4293'),(150377,4302,'_flexible_templates_2_build_and_platform_section_0_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(150378,4302,'flexible_templates_2_build_and_platform_section_0_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(150379,4302,'_flexible_templates_2_build_and_platform_section_0_copy','field_62bb1f8662e99_field_625525b15629c'),(150380,4302,'flexible_templates_2_build_and_platform_section_1_heading','What is Replatform'),(150381,4302,'_flexible_templates_2_build_and_platform_section_1_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(150382,4302,'flexible_templates_2_build_and_platform_section_1_image','4294'),(150383,4302,'_flexible_templates_2_build_and_platform_section_1_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(150384,4302,'flexible_templates_2_build_and_platform_section_1_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(150385,4302,'_flexible_templates_2_build_and_platform_section_1_copy','field_62bb1f8662e99_field_625525b15629c'),(150386,4302,'flexible_templates_2_build_and_platform_section','2'),(150387,4302,'_flexible_templates_2_build_and_platform_section','field_62bb1eeb62e96'),(150388,4302,'flexible_templates_2_testimonial_section_0_icon','4295'),(150389,4302,'_flexible_templates_2_testimonial_section_0_icon','field_62bb25696c318'),(150390,4302,'flexible_templates_2_testimonial_section_0_heading','Rebuilding CIMS Platform at SickKids Hospital:'),(150391,4302,'_flexible_templates_2_testimonial_section_0_heading','field_62bb25736c319'),(150392,4302,'flexible_templates_2_testimonial_section_0_copy','I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.'),(150393,4302,'_flexible_templates_2_testimonial_section_0_copy','field_62bb25786c31a'),(150394,4302,'flexible_templates_2_testimonial_section_0_name','Andrew James'),(150395,4302,'_flexible_templates_2_testimonial_section_0_name','field_62bb260117e59'),(150396,4302,'flexible_templates_2_testimonial_section_0_designation','The Hospital for Sick Children'),(150397,4302,'_flexible_templates_2_testimonial_section_0_designation','field_62bb260c17e5a'),(150398,4302,'flexible_templates_2_testimonial_section','1'),(150399,4302,'_flexible_templates_2_testimonial_section','field_62bb1fc662e9a_field_62bb251c6c317'),(150400,4302,'flexible_templates_3_image','4301'),(150401,4302,'_flexible_templates_3_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(150408,4303,'_wp_attached_file','2022/06/Group-8594-1.png'),(150409,4303,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:152;s:6:\"height\";i:147;s:4:\"file\";s:24:\"2022/06/Group-8594-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Group-8594-1-150x147.png\";s:5:\"width\";i:150;s:6:\"height\";i:147;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:{}}}'),(150410,4303,'_imagify_optimization_level','0'),(150411,4303,'_imagify_status','error'),(150412,4303,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(150413,4304,'_wp_attached_file','2022/06/Group-8625-2.png'),(150414,4304,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:545;s:4:\"file\";s:24:\"2022/06/Group-8625-2.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Group-8625-2-300x85.png\";s:5:\"width\";i:300;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Group-8625-2-1024x291.png\";s:5:\"width\";i:1024;s:6:\"height\";i:291;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Group-8625-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:24:\"Group-8625-2-768x218.png\";s:5:\"width\";i:768;s:6:\"height\";i:218;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"Group-8625-2-1536x436.png\";s:5:\"width\";i:1536;s:6:\"height\";i:436;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:24:\"Group-8625-2-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(150415,4304,'_imagify_optimization_level','0'),(150416,4304,'_imagify_status','error'),(150417,4304,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(150418,4242,'flexible_templates_4_sub_heading','BUILD - REBUILD - REPLATFORM'),(150419,4242,'_flexible_templates_4_sub_heading','field_62bb20b262ea1_field_6254fdbaefa28'),(150420,4242,'flexible_templates_4_heading','Keeping you competitive now and built for the
future.'),(150421,4242,'_flexible_templates_4_heading','field_62bb20b862ea2_field_6254fdb2efa27'),(150422,4242,'flexible_templates_4_copy','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world. Making you very competitive, especially in the current market conditions.'),(150423,4242,'_flexible_templates_4_copy','field_62bb20bd62ea3_field_6254fdc0efa29'),(150424,4242,'flexible_templates_4_table_0_text','Strategy'),(150425,4242,'_flexible_templates_4_table_0_text','field_62bb212762ea5'),(150426,4242,'flexible_templates_4_table_1_text','Automated Customer Experience'),(150427,4242,'_flexible_templates_4_table_1_text','field_62bb212762ea5'),(150428,4242,'flexible_templates_4_table_2_text','Critical System 1st Approach'),(150429,4242,'_flexible_templates_4_table_2_text','field_62bb212762ea5'),(150430,4242,'flexible_templates_4_table_3_text','Scalability'),(150431,4242,'_flexible_templates_4_table_3_text','field_62bb212762ea5'),(150432,4242,'flexible_templates_4_table_4_text','API 1st Design'),(150433,4242,'_flexible_templates_4_table_4_text','field_62bb212762ea5'),(150434,4242,'flexible_templates_4_table_5_text','Secure Transactions'),(150435,4242,'_flexible_templates_4_table_5_text','field_62bb212762ea5'),(150436,4242,'flexible_templates_4_table_6_text','Revenue Driving Data Insights'),(150437,4242,'_flexible_templates_4_table_6_text','field_62bb212762ea5'),(150438,4242,'flexible_templates_4_table_7_text','Faster to Market'),(150439,4242,'_flexible_templates_4_table_7_text','field_62bb212762ea5'),(150440,4242,'flexible_templates_4_table_8_text','APM'),(150441,4242,'_flexible_templates_4_table_8_text','field_62bb212762ea5'),(150442,4242,'flexible_templates_4_table_9_text','Responsive Design'),(150443,4242,'_flexible_templates_4_table_9_text','field_62bb212762ea5'),(150444,4242,'flexible_templates_4_table_10_text','Open for Business 24/7'),(150445,4242,'_flexible_templates_4_table_10_text','field_62bb212762ea5'),(150446,4242,'flexible_templates_4_table','11'),(150447,4242,'_flexible_templates_4_table','field_62bb211762ea4'),(150448,4242,'flexible_templates_4_testimonial_section_0_icon',''),(150449,4242,'_flexible_templates_4_testimonial_section_0_icon','field_62bb25696c318'),(150450,4242,'flexible_templates_4_testimonial_section_0_heading',''),(150451,4242,'_flexible_templates_4_testimonial_section_0_heading','field_62bb25736c319'),(150452,4242,'flexible_templates_4_testimonial_section_0_copy','Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.'),(150453,4242,'_flexible_templates_4_testimonial_section_0_copy','field_62bb25786c31a'),(150454,4242,'flexible_templates_4_testimonial_section_0_name','Bradford A. M. Sankar'),(150455,4242,'_flexible_templates_4_testimonial_section_0_name','field_62bb260117e59'),(150456,4242,'flexible_templates_4_testimonial_section_0_designation','COO - Translucent Computing'),(150457,4242,'_flexible_templates_4_testimonial_section_0_designation','field_62bb260c17e5a'),(150458,4242,'flexible_templates_4_testimonial_section','1'),(150459,4242,'_flexible_templates_4_testimonial_section','field_62bb214c62ea6_field_62bb251c6c317'),(150460,4242,'flexible_templates_4_left_image','4303'),(150461,4242,'_flexible_templates_4_left_image','field_62bb21e962eaa'),(150462,4242,'flexible_templates_4_middle_copy','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(150463,4242,'_flexible_templates_4_middle_copy','field_62bb21f462eab'),(150464,4242,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:23:\"Book a consultation now\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(150465,4242,'_flexible_templates_4_cta','field_62bb220b62eac_field_62551b3e101c4'),(150466,4305,'flexible_templates','a:5:{i:0;s:31:\"cloud_native_application_banner\";i:1;s:50:\"cloud_native_application_building_new_applications\";i:2;s:47:\"cloud_native_application_rebuild_and_replatform\";i:3;s:40:\"cloud_native_application_fullwidth_image\";i:4;s:49:\"cloud_native_application_build_rebuild_replatform\";}'),(150467,4305,'_flexible_templates','field_6254f4d84ef9b'),(150468,4305,'flexible_templates_0_image','4238'),(150469,4305,'_flexible_templates_0_image','field_62bb17034467a_field_62552ada52711_field_6254fdc5efa2a'),(150470,4305,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(150471,4305,'_flexible_templates_0_sub_heading','field_62bb173b4467b_field_6255097642ef4_field_6254fdbaefa28'),(150472,4305,'flexible_templates_0_heading','Cloud Native Application Development'),(150473,4305,'_flexible_templates_0_heading','field_62bb17614467c_field_62551ac3a6f96_field_6254fdb2efa27'),(150474,4305,'flexible_templates_0_copy','In modern application development you have three choices: Build | Rebuild | Replatform'),(150475,4305,'_flexible_templates_0_copy','field_62bb17874467d_field_62551b74a6f99_field_6254fdc0efa29'),(150476,4305,'flexible_templates_1_sub_heading','BUILDING NEW APPLICATIONS'),(150477,4305,'_flexible_templates_1_sub_heading','field_62bb1c9962e8a_field_6254fdbaefa28'),(150478,4305,'flexible_templates_1_heading','What is Building?'),(150479,4305,'_flexible_templates_1_heading','field_62bb1c9f62e8b_field_6254fdb2efa27'),(150480,4305,'flexible_templates_1_copy_wysiwyg','

Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.

\r\n

The foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.
Unleashing the true power of your organization in the 4th industrial revolution.

'),(150481,4305,'_flexible_templates_1_copy_wysiwyg','field_62bb1cb462e8c_field_6255310ecf4de'),(150482,4305,'flexible_templates_1_image','4291'),(150483,4305,'_flexible_templates_1_image','field_62bb1cf662e8d_field_6254fdc5efa2a'),(150484,4305,'flexible_templates_1_testimonial_section_0_icon',''),(150485,4305,'_flexible_templates_1_testimonial_section_0_icon','field_62bb25696c318'),(150486,4305,'flexible_templates_1_testimonial_section_0_heading','Building GoTo Loans Platform from a Vision:'),(150487,4305,'_flexible_templates_1_testimonial_section_0_heading','field_62bb25736c319'),(150488,4305,'flexible_templates_1_testimonial_section_0_copy','Integrating banking, automotive, loan, mechanic and customer workflow data making the complex almost seem like magic. Keep up the great work!'),(150489,4305,'_flexible_templates_1_testimonial_section_0_copy','field_62bb25786c31a'),(150490,4305,'flexible_templates_1_testimonial_section_0_name','Eric Kaplan'),(150491,4305,'_flexible_templates_1_testimonial_section_0_name','field_62bb260117e59'),(150492,4305,'flexible_templates_1_testimonial_section_0_designation','COO - GoTo Loans'),(150493,4305,'_flexible_templates_1_testimonial_section_0_designation','field_62bb260c17e5a'),(150494,4305,'flexible_templates_1_testimonial_section','1'),(150495,4305,'_flexible_templates_1_testimonial_section','field_62bb1d7162e8f_field_62bb251c6c317'),(150496,4305,'flexible_templates_2_sub_heading','REBUILD & REPLATAFORM'),(150497,4305,'_flexible_templates_2_sub_heading','field_62bb1e2962e94_field_6254fdbaefa28'),(150498,4305,'flexible_templates_2_heading','What is the best application modernization
choice for my company?'),(150499,4305,'_flexible_templates_2_heading','field_62bb1e3b62e95_field_6254fdb2efa27'),(150500,4305,'flexible_templates_2_copy_wysiwyg','Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.\r\nYou have two application modernization choices when upgrading: Rebuilding or Replatforming'),(150501,4305,'_flexible_templates_2_copy_wysiwyg','field_62bb44696be57_field_6255310ecf4de'),(150502,4305,'flexible_templates_2_build_and_platform_section_0_heading','What is Rebuild'),(150503,4305,'_flexible_templates_2_build_and_platform_section_0_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(150504,4305,'flexible_templates_2_build_and_platform_section_0_image','4293'),(150505,4305,'_flexible_templates_2_build_and_platform_section_0_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(150506,4305,'flexible_templates_2_build_and_platform_section_0_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(150507,4305,'_flexible_templates_2_build_and_platform_section_0_copy','field_62bb1f8662e99_field_625525b15629c'),(150508,4305,'flexible_templates_2_build_and_platform_section_1_heading','What is Replatform'),(150509,4305,'_flexible_templates_2_build_and_platform_section_1_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(150510,4305,'flexible_templates_2_build_and_platform_section_1_image','4294'),(150511,4305,'_flexible_templates_2_build_and_platform_section_1_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(150512,4305,'flexible_templates_2_build_and_platform_section_1_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(150513,4305,'_flexible_templates_2_build_and_platform_section_1_copy','field_62bb1f8662e99_field_625525b15629c'),(150514,4305,'flexible_templates_2_build_and_platform_section','2'),(150515,4305,'_flexible_templates_2_build_and_platform_section','field_62bb1eeb62e96'),(150516,4305,'flexible_templates_2_testimonial_section_0_icon','4295'),(150517,4305,'_flexible_templates_2_testimonial_section_0_icon','field_62bb25696c318'),(150518,4305,'flexible_templates_2_testimonial_section_0_heading','Rebuilding CIMS Platform at SickKids Hospital:'),(150519,4305,'_flexible_templates_2_testimonial_section_0_heading','field_62bb25736c319'),(150520,4305,'flexible_templates_2_testimonial_section_0_copy','I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.'),(150521,4305,'_flexible_templates_2_testimonial_section_0_copy','field_62bb25786c31a'),(150522,4305,'flexible_templates_2_testimonial_section_0_name','Andrew James'),(150523,4305,'_flexible_templates_2_testimonial_section_0_name','field_62bb260117e59'),(150524,4305,'flexible_templates_2_testimonial_section_0_designation','The Hospital for Sick Children'),(150525,4305,'_flexible_templates_2_testimonial_section_0_designation','field_62bb260c17e5a'),(150526,4305,'flexible_templates_2_testimonial_section','1'),(150527,4305,'_flexible_templates_2_testimonial_section','field_62bb1fc662e9a_field_62bb251c6c317'),(150528,4305,'flexible_templates_3_image','4301'),(150529,4305,'_flexible_templates_3_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(150530,4305,'flexible_templates_4_sub_heading','BUILD - REBUILD - REPLATAFORM'),(150531,4305,'_flexible_templates_4_sub_heading','field_62bb20b262ea1_field_6254fdbaefa28'),(150532,4305,'flexible_templates_4_heading','Keeping you competitive now and built for the
future.'),(150533,4305,'_flexible_templates_4_heading','field_62bb20b862ea2_field_6254fdb2efa27'),(150534,4305,'flexible_templates_4_copy','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world. Making you very competitive, especially in the current market conditions.'),(150535,4305,'_flexible_templates_4_copy','field_62bb20bd62ea3_field_6254fdc0efa29'),(150536,4305,'flexible_templates_4_table_0_text','Strategy'),(150537,4305,'_flexible_templates_4_table_0_text','field_62bb212762ea5'),(150538,4305,'flexible_templates_4_table_1_text','Automated Customer Experience'),(150539,4305,'_flexible_templates_4_table_1_text','field_62bb212762ea5'),(150540,4305,'flexible_templates_4_table_2_text','Critical System 1st Approach'),(150541,4305,'_flexible_templates_4_table_2_text','field_62bb212762ea5'),(150542,4305,'flexible_templates_4_table_3_text','Scalability'),(150543,4305,'_flexible_templates_4_table_3_text','field_62bb212762ea5'),(150544,4305,'flexible_templates_4_table_4_text','API 1st Design'),(150545,4305,'_flexible_templates_4_table_4_text','field_62bb212762ea5'),(150546,4305,'flexible_templates_4_table_5_text','Secure Transactions'),(150547,4305,'_flexible_templates_4_table_5_text','field_62bb212762ea5'),(150548,4305,'flexible_templates_4_table_6_text','Revenue Driving Data Insights'),(150549,4305,'_flexible_templates_4_table_6_text','field_62bb212762ea5'),(150550,4305,'flexible_templates_4_table_7_text','Faster to Market'),(150551,4305,'_flexible_templates_4_table_7_text','field_62bb212762ea5'),(150552,4305,'flexible_templates_4_table_8_text','APM'),(150553,4305,'_flexible_templates_4_table_8_text','field_62bb212762ea5'),(150554,4305,'flexible_templates_4_table_9_text','Responsive Design'),(150555,4305,'_flexible_templates_4_table_9_text','field_62bb212762ea5'),(150556,4305,'flexible_templates_4_table_10_text','Open for Business 24/7'),(150557,4305,'_flexible_templates_4_table_10_text','field_62bb212762ea5'),(150558,4305,'flexible_templates_4_table','11'),(150559,4305,'_flexible_templates_4_table','field_62bb211762ea4'),(150560,4305,'flexible_templates_4_testimonial_section_0_icon',''),(150561,4305,'_flexible_templates_4_testimonial_section_0_icon','field_62bb25696c318'),(150562,4305,'flexible_templates_4_testimonial_section_0_heading',''),(150563,4305,'_flexible_templates_4_testimonial_section_0_heading','field_62bb25736c319'),(150564,4305,'flexible_templates_4_testimonial_section_0_copy','Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.'),(150565,4305,'_flexible_templates_4_testimonial_section_0_copy','field_62bb25786c31a'),(150566,4305,'flexible_templates_4_testimonial_section_0_name','Bradford A. M. Sankar'),(150567,4305,'_flexible_templates_4_testimonial_section_0_name','field_62bb260117e59'),(150568,4305,'flexible_templates_4_testimonial_section_0_designation','COO - Translucent Computing'),(150569,4305,'_flexible_templates_4_testimonial_section_0_designation','field_62bb260c17e5a'),(150570,4305,'flexible_templates_4_testimonial_section','1'),(150571,4305,'_flexible_templates_4_testimonial_section','field_62bb214c62ea6_field_62bb251c6c317'),(150572,4305,'flexible_templates_4_left_image','4303'),(150573,4305,'_flexible_templates_4_left_image','field_62bb21e962eaa'),(150574,4305,'flexible_templates_4_middle_copy','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(150575,4305,'_flexible_templates_4_middle_copy','field_62bb21f462eab'),(150576,4305,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:23:\"Book a consultation now\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(150577,4305,'_flexible_templates_4_cta','field_62bb220b62eac_field_62551b3e101c4'),(150578,4306,'_wp_attached_file','2022/06/Group-8594-2.png'),(150579,4306,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:152;s:6:\"height\";i:147;s:4:\"file\";s:24:\"2022/06/Group-8594-2.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Group-8594-2-150x147.png\";s:5:\"width\";i:150;s:6:\"height\";i:147;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:{}}}'),(150580,4306,'_imagify_optimization_level','0'),(150581,4306,'_imagify_status','error'),(150582,4306,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(150592,4242,'flexible_templates_5_sub_heading','CLOUD NATIVE APPLICATIONS SOLUTIONS:'),(150593,4242,'_flexible_templates_5_sub_heading','field_62bb224b62eae_field_6254fdbaefa28'),(150594,4242,'flexible_templates_5_heading','Is your company competitive in today’s landscape?'),(150595,4242,'_flexible_templates_5_heading','field_62bb226062eaf_field_6254fdb2efa27'),(150596,4242,'flexible_templates_5_left_section_0_text','Application Development Build | Rebuild | Replatform'),(150597,4242,'_flexible_templates_5_left_section_0_text','field_62bb28b062eb1'),(150598,4242,'flexible_templates_5_left_section_1_text','Customer experience workflow automation'),(150599,4242,'_flexible_templates_5_left_section_1_text','field_62bb28b062eb1'),(150600,4242,'flexible_templates_5_left_section_2_text','Application Performance Metrics (APM)'),(150601,4242,'_flexible_templates_5_left_section_2_text','field_62bb28b062eb1'),(150602,4242,'flexible_templates_5_left_section_3_text','API 1st Design'),(150603,4242,'_flexible_templates_5_left_section_3_text','field_62bb28b062eb1'),(150604,4242,'flexible_templates_5_left_section_4_text','Mobile 1st design'),(150605,4242,'_flexible_templates_5_left_section_4_text','field_62bb28b062eb1'),(150606,4242,'flexible_templates_5_left_section_5_text','Responsive Design All Devices'),(150607,4242,'_flexible_templates_5_left_section_5_text','field_62bb28b062eb1'),(150608,4242,'flexible_templates_5_left_section_6_text','Open for business 24/7'),(150609,4242,'_flexible_templates_5_left_section_6_text','field_62bb28b062eb1'),(150610,4242,'flexible_templates_5_left_section','7'),(150611,4242,'_flexible_templates_5_left_section','field_62bb28a762eb0'),(150612,4242,'flexible_templates_5_right_section_0_text','Microservices – Distributed Architecture'),(150613,4242,'_flexible_templates_5_right_section_0_text','field_62bb28be62eb3'),(150614,4242,'flexible_templates_5_right_section_1_text','Secure Transactions – DevSecOps'),(150615,4242,'_flexible_templates_5_right_section_1_text','field_62bb28be62eb3'),(150616,4242,'flexible_templates_5_right_section_2_text','Kubernetes Certified Service Provider'),(150617,4242,'_flexible_templates_5_right_section_2_text','field_62bb28be62eb3'),(150618,4242,'flexible_templates_5_right_section_3_text','Multi-cloud Solutions – GCP – AWS – Azure'),(150619,4242,'_flexible_templates_5_right_section_3_text','field_62bb28be62eb3'),(150620,4242,'flexible_templates_5_right_section_4_text','Critical System 1st Approach'),(150621,4242,'_flexible_templates_5_right_section_4_text','field_62bb28be62eb3'),(150622,4242,'flexible_templates_5_right_section_5_text','API Economy – 3rd Party partnerships'),(150623,4242,'_flexible_templates_5_right_section_5_text','field_62bb28be62eb3'),(150624,4242,'flexible_templates_5_right_section_6_text','Return on Investment 1st driven planning'),(150625,4242,'_flexible_templates_5_right_section_6_text','field_62bb28be62eb3'),(150626,4242,'flexible_templates_5_right_section','7'),(150627,4242,'_flexible_templates_5_right_section','field_62bb28be62eb2'),(150628,4307,'flexible_templates','a:6:{i:0;s:31:\"cloud_native_application_banner\";i:1;s:50:\"cloud_native_application_building_new_applications\";i:2;s:47:\"cloud_native_application_rebuild_and_replatform\";i:3;s:40:\"cloud_native_application_fullwidth_image\";i:4;s:49:\"cloud_native_application_build_rebuild_replatform\";i:5;s:35:\"cloud_native_applications_solutions\";}'),(150629,4307,'_flexible_templates','field_6254f4d84ef9b'),(150630,4307,'flexible_templates_0_image','4238'),(150631,4307,'_flexible_templates_0_image','field_62bb17034467a_field_62552ada52711_field_6254fdc5efa2a'),(150632,4307,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(150633,4307,'_flexible_templates_0_sub_heading','field_62bb173b4467b_field_6255097642ef4_field_6254fdbaefa28'),(150634,4307,'flexible_templates_0_heading','Cloud Native Application Development'),(150635,4307,'_flexible_templates_0_heading','field_62bb17614467c_field_62551ac3a6f96_field_6254fdb2efa27'),(150636,4307,'flexible_templates_0_copy','In modern application development you have three choices: Build | Rebuild | Replatform'),(150637,4307,'_flexible_templates_0_copy','field_62bb17874467d_field_62551b74a6f99_field_6254fdc0efa29'),(150638,4307,'flexible_templates_1_sub_heading','BUILDING NEW APPLICATIONS'),(150639,4307,'_flexible_templates_1_sub_heading','field_62bb1c9962e8a_field_6254fdbaefa28'),(150640,4307,'flexible_templates_1_heading','What is Building?'),(150641,4307,'_flexible_templates_1_heading','field_62bb1c9f62e8b_field_6254fdb2efa27'),(150642,4307,'flexible_templates_1_copy_wysiwyg','

Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.

\r\n

The foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.
Unleashing the true power of your organization in the 4th industrial revolution.

'),(150643,4307,'_flexible_templates_1_copy_wysiwyg','field_62bb1cb462e8c_field_6255310ecf4de'),(150644,4307,'flexible_templates_1_image','4291'),(150645,4307,'_flexible_templates_1_image','field_62bb1cf662e8d_field_6254fdc5efa2a'),(150646,4307,'flexible_templates_1_testimonial_section_0_icon',''),(150647,4307,'_flexible_templates_1_testimonial_section_0_icon','field_62bb25696c318'),(150648,4307,'flexible_templates_1_testimonial_section_0_heading','Building GoTo Loans Platform from a Vision:'),(150649,4307,'_flexible_templates_1_testimonial_section_0_heading','field_62bb25736c319'),(150650,4307,'flexible_templates_1_testimonial_section_0_copy','Integrating banking, automotive, loan, mechanic and customer workflow data making the complex almost seem like magic. Keep up the great work!'),(150651,4307,'_flexible_templates_1_testimonial_section_0_copy','field_62bb25786c31a'),(150652,4307,'flexible_templates_1_testimonial_section_0_name','Eric Kaplan'),(150653,4307,'_flexible_templates_1_testimonial_section_0_name','field_62bb260117e59'),(150654,4307,'flexible_templates_1_testimonial_section_0_designation','COO - GoTo Loans'),(150655,4307,'_flexible_templates_1_testimonial_section_0_designation','field_62bb260c17e5a'),(150656,4307,'flexible_templates_1_testimonial_section','1'),(150657,4307,'_flexible_templates_1_testimonial_section','field_62bb1d7162e8f_field_62bb251c6c317'),(150658,4307,'flexible_templates_2_sub_heading','REBUILD & REPLATAFORM'),(150659,4307,'_flexible_templates_2_sub_heading','field_62bb1e2962e94_field_6254fdbaefa28'),(150660,4307,'flexible_templates_2_heading','What is the best application modernization
choice for my company?'),(150661,4307,'_flexible_templates_2_heading','field_62bb1e3b62e95_field_6254fdb2efa27'),(150662,4307,'flexible_templates_2_copy_wysiwyg','Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.\r\nYou have two application modernization choices when upgrading: Rebuilding or Replatforming'),(150663,4307,'_flexible_templates_2_copy_wysiwyg','field_62bb44696be57_field_6255310ecf4de'),(150664,4307,'flexible_templates_2_build_and_platform_section_0_heading','What is Rebuild'),(150665,4307,'_flexible_templates_2_build_and_platform_section_0_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(150666,4307,'flexible_templates_2_build_and_platform_section_0_image','4293'),(150667,4307,'_flexible_templates_2_build_and_platform_section_0_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(150668,4307,'flexible_templates_2_build_and_platform_section_0_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(150669,4307,'_flexible_templates_2_build_and_platform_section_0_copy','field_62bb1f8662e99_field_625525b15629c'),(150670,4307,'flexible_templates_2_build_and_platform_section_1_heading','What is Replatform'),(150671,4307,'_flexible_templates_2_build_and_platform_section_1_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(150672,4307,'flexible_templates_2_build_and_platform_section_1_image','4294'),(150673,4307,'_flexible_templates_2_build_and_platform_section_1_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(150674,4307,'flexible_templates_2_build_and_platform_section_1_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(150675,4307,'_flexible_templates_2_build_and_platform_section_1_copy','field_62bb1f8662e99_field_625525b15629c'),(150676,4307,'flexible_templates_2_build_and_platform_section','2'),(150677,4307,'_flexible_templates_2_build_and_platform_section','field_62bb1eeb62e96'),(150678,4307,'flexible_templates_2_testimonial_section_0_icon','4295'),(150679,4307,'_flexible_templates_2_testimonial_section_0_icon','field_62bb25696c318'),(150680,4307,'flexible_templates_2_testimonial_section_0_heading','Rebuilding CIMS Platform at SickKids Hospital:'),(150681,4307,'_flexible_templates_2_testimonial_section_0_heading','field_62bb25736c319'),(150682,4307,'flexible_templates_2_testimonial_section_0_copy','I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.'),(150683,4307,'_flexible_templates_2_testimonial_section_0_copy','field_62bb25786c31a'),(150684,4307,'flexible_templates_2_testimonial_section_0_name','Andrew James'),(150685,4307,'_flexible_templates_2_testimonial_section_0_name','field_62bb260117e59'),(150686,4307,'flexible_templates_2_testimonial_section_0_designation','The Hospital for Sick Children'),(150687,4307,'_flexible_templates_2_testimonial_section_0_designation','field_62bb260c17e5a'),(150688,4307,'flexible_templates_2_testimonial_section','1'),(150689,4307,'_flexible_templates_2_testimonial_section','field_62bb1fc662e9a_field_62bb251c6c317'),(150690,4307,'flexible_templates_3_image','4301'),(150691,4307,'_flexible_templates_3_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(150692,4307,'flexible_templates_4_sub_heading','BUILD - REBUILD - REPLATAFORM'),(150693,4307,'_flexible_templates_4_sub_heading','field_62bb20b262ea1_field_6254fdbaefa28'),(150694,4307,'flexible_templates_4_heading','Keeping you competitive now and built for the
future.'),(150695,4307,'_flexible_templates_4_heading','field_62bb20b862ea2_field_6254fdb2efa27'),(150696,4307,'flexible_templates_4_copy','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world. Making you very competitive, especially in the current market conditions.'),(150697,4307,'_flexible_templates_4_copy','field_62bb20bd62ea3_field_6254fdc0efa29'),(150698,4307,'flexible_templates_4_table_0_text','Strategy'),(150699,4307,'_flexible_templates_4_table_0_text','field_62bb212762ea5'),(150700,4307,'flexible_templates_4_table_1_text','Automated Customer Experience'),(150701,4307,'_flexible_templates_4_table_1_text','field_62bb212762ea5'),(150702,4307,'flexible_templates_4_table_2_text','Critical System 1st Approach'),(150703,4307,'_flexible_templates_4_table_2_text','field_62bb212762ea5'),(150704,4307,'flexible_templates_4_table_3_text','Scalability'),(150705,4307,'_flexible_templates_4_table_3_text','field_62bb212762ea5'),(150706,4307,'flexible_templates_4_table_4_text','API 1st Design'),(150707,4307,'_flexible_templates_4_table_4_text','field_62bb212762ea5'),(150708,4307,'flexible_templates_4_table_5_text','Secure Transactions'),(150709,4307,'_flexible_templates_4_table_5_text','field_62bb212762ea5'),(150710,4307,'flexible_templates_4_table_6_text','Revenue Driving Data Insights'),(150711,4307,'_flexible_templates_4_table_6_text','field_62bb212762ea5'),(150712,4307,'flexible_templates_4_table_7_text','Faster to Market'),(150713,4307,'_flexible_templates_4_table_7_text','field_62bb212762ea5'),(150714,4307,'flexible_templates_4_table_8_text','APM'),(150715,4307,'_flexible_templates_4_table_8_text','field_62bb212762ea5'),(150716,4307,'flexible_templates_4_table_9_text','Responsive Design'),(150717,4307,'_flexible_templates_4_table_9_text','field_62bb212762ea5'),(150718,4307,'flexible_templates_4_table_10_text','Open for Business 24/7'),(150719,4307,'_flexible_templates_4_table_10_text','field_62bb212762ea5'),(150720,4307,'flexible_templates_4_table','11'),(150721,4307,'_flexible_templates_4_table','field_62bb211762ea4'),(150722,4307,'flexible_templates_4_testimonial_section_0_icon',''),(150723,4307,'_flexible_templates_4_testimonial_section_0_icon','field_62bb25696c318'),(150724,4307,'flexible_templates_4_testimonial_section_0_heading',''),(150725,4307,'_flexible_templates_4_testimonial_section_0_heading','field_62bb25736c319'),(150726,4307,'flexible_templates_4_testimonial_section_0_copy','Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.'),(150727,4307,'_flexible_templates_4_testimonial_section_0_copy','field_62bb25786c31a'),(150728,4307,'flexible_templates_4_testimonial_section_0_name','Bradford A. M. Sankar'),(150729,4307,'_flexible_templates_4_testimonial_section_0_name','field_62bb260117e59'),(150730,4307,'flexible_templates_4_testimonial_section_0_designation','COO - Translucent Computing'),(150731,4307,'_flexible_templates_4_testimonial_section_0_designation','field_62bb260c17e5a'),(150732,4307,'flexible_templates_4_testimonial_section','1'),(150733,4307,'_flexible_templates_4_testimonial_section','field_62bb214c62ea6_field_62bb251c6c317'),(150734,4307,'flexible_templates_4_left_image','4303'),(150735,4307,'_flexible_templates_4_left_image','field_62bb21e962eaa'),(150736,4307,'flexible_templates_4_middle_copy','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(150737,4307,'_flexible_templates_4_middle_copy','field_62bb21f462eab'),(150738,4307,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:23:\"Book a consultation now\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(150739,4307,'_flexible_templates_4_cta','field_62bb220b62eac_field_62551b3e101c4'),(150740,4307,'flexible_templates_5_sub_heading','CLOUD NATIVE APPLICATIONS SOLUTIONS:'),(150741,4307,'_flexible_templates_5_sub_heading','field_62bb224b62eae_field_6254fdbaefa28'),(150742,4307,'flexible_templates_5_heading','Is your company competitive in today’s landscape?'),(150743,4307,'_flexible_templates_5_heading','field_62bb226062eaf_field_6254fdb2efa27'),(150744,4307,'flexible_templates_5_left_section_0_text','Application Development Build | Rebuild | Replatform'),(150745,4307,'_flexible_templates_5_left_section_0_text','field_62bb28b062eb1'),(150746,4307,'flexible_templates_5_left_section_1_text','Customer experience workflow automation'),(150747,4307,'_flexible_templates_5_left_section_1_text','field_62bb28b062eb1'),(150748,4307,'flexible_templates_5_left_section_2_text','Application Performance Metrics (APM)'),(150749,4307,'_flexible_templates_5_left_section_2_text','field_62bb28b062eb1'),(150750,4307,'flexible_templates_5_left_section_3_text','API 1st Design'),(150751,4307,'_flexible_templates_5_left_section_3_text','field_62bb28b062eb1'),(150752,4307,'flexible_templates_5_left_section_4_text','Mobile 1st design'),(150753,4307,'_flexible_templates_5_left_section_4_text','field_62bb28b062eb1'),(150754,4307,'flexible_templates_5_left_section_5_text','Responsive Design All Devices'),(150755,4307,'_flexible_templates_5_left_section_5_text','field_62bb28b062eb1'),(150756,4307,'flexible_templates_5_left_section_6_text','Open for business 24/7'),(150757,4307,'_flexible_templates_5_left_section_6_text','field_62bb28b062eb1'),(150758,4307,'flexible_templates_5_left_section','7'),(150759,4307,'_flexible_templates_5_left_section','field_62bb28a762eb0'),(150760,4307,'flexible_templates_5_right_section_0_text','Microservices – Distributed Architecture'),(150761,4307,'_flexible_templates_5_right_section_0_text','field_62bb28be62eb3'),(150762,4307,'flexible_templates_5_right_section_1_text','Secure Transactions – DevSecOps'),(150763,4307,'_flexible_templates_5_right_section_1_text','field_62bb28be62eb3'),(150764,4307,'flexible_templates_5_right_section_2_text','Kubernetes Certified Service Provider'),(150765,4307,'_flexible_templates_5_right_section_2_text','field_62bb28be62eb3'),(150766,4307,'flexible_templates_5_right_section_3_text','Multi-cloud Solutions – GCP – AWS – Azure'),(150767,4307,'_flexible_templates_5_right_section_3_text','field_62bb28be62eb3'),(150768,4307,'flexible_templates_5_right_section_4_text','Critical System 1st Approach'),(150769,4307,'_flexible_templates_5_right_section_4_text','field_62bb28be62eb3'),(150770,4307,'flexible_templates_5_right_section_5_text','API Economy – 3rd Party partnerships'),(150771,4307,'_flexible_templates_5_right_section_5_text','field_62bb28be62eb3'),(150772,4307,'flexible_templates_5_right_section_6_text','Return on Investment 1st driven planning'),(150773,4307,'_flexible_templates_5_right_section_6_text','field_62bb28be62eb3'),(150774,4307,'flexible_templates_5_right_section','7'),(150775,4307,'_flexible_templates_5_right_section','field_62bb28be62eb2'),(150784,4242,'flexible_templates_6_image','4219'),(150785,4242,'_flexible_templates_6_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(150786,4309,'flexible_templates','a:7:{i:0;s:31:\"cloud_native_application_banner\";i:1;s:50:\"cloud_native_application_building_new_applications\";i:2;s:47:\"cloud_native_application_rebuild_and_replatform\";i:3;s:40:\"cloud_native_application_fullwidth_image\";i:4;s:49:\"cloud_native_application_build_rebuild_replatform\";i:5;s:35:\"cloud_native_applications_solutions\";i:6;s:40:\"cloud_native_application_fullwidth_image\";}'),(150787,4309,'_flexible_templates','field_6254f4d84ef9b'),(150788,4309,'flexible_templates_0_image','4238'),(150789,4309,'_flexible_templates_0_image','field_62bb17034467a_field_62552ada52711_field_6254fdc5efa2a'),(150790,4309,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(150791,4309,'_flexible_templates_0_sub_heading','field_62bb173b4467b_field_6255097642ef4_field_6254fdbaefa28'),(150792,4309,'flexible_templates_0_heading','Cloud Native Application Development'),(150793,4309,'_flexible_templates_0_heading','field_62bb17614467c_field_62551ac3a6f96_field_6254fdb2efa27'),(150794,4309,'flexible_templates_0_copy','In modern application development you have three choices: Build | Rebuild | Replatform'),(150795,4309,'_flexible_templates_0_copy','field_62bb17874467d_field_62551b74a6f99_field_6254fdc0efa29'),(150796,4309,'flexible_templates_1_sub_heading','BUILDING NEW APPLICATIONS'),(150797,4309,'_flexible_templates_1_sub_heading','field_62bb1c9962e8a_field_6254fdbaefa28'),(150798,4309,'flexible_templates_1_heading','What is Building?'),(150799,4309,'_flexible_templates_1_heading','field_62bb1c9f62e8b_field_6254fdb2efa27'),(150800,4309,'flexible_templates_1_copy_wysiwyg','

Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.

\r\n

The foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.
Unleashing the true power of your organization in the 4th industrial revolution.

'),(150801,4309,'_flexible_templates_1_copy_wysiwyg','field_62bb1cb462e8c_field_6255310ecf4de'),(150802,4309,'flexible_templates_1_image','4291'),(150803,4309,'_flexible_templates_1_image','field_62bb1cf662e8d_field_6254fdc5efa2a'),(150804,4309,'flexible_templates_1_testimonial_section_0_icon',''),(150805,4309,'_flexible_templates_1_testimonial_section_0_icon','field_62bb25696c318'),(150806,4309,'flexible_templates_1_testimonial_section_0_heading','Building GoTo Loans Platform from a Vision:'),(150807,4309,'_flexible_templates_1_testimonial_section_0_heading','field_62bb25736c319'),(150808,4309,'flexible_templates_1_testimonial_section_0_copy','Integrating banking, automotive, loan, mechanic and customer workflow data making the complex almost seem like magic. Keep up the great work!'),(150809,4309,'_flexible_templates_1_testimonial_section_0_copy','field_62bb25786c31a'),(150810,4309,'flexible_templates_1_testimonial_section_0_name','Eric Kaplan'),(150811,4309,'_flexible_templates_1_testimonial_section_0_name','field_62bb260117e59'),(150812,4309,'flexible_templates_1_testimonial_section_0_designation','COO - GoTo Loans'),(150813,4309,'_flexible_templates_1_testimonial_section_0_designation','field_62bb260c17e5a'),(150814,4309,'flexible_templates_1_testimonial_section','1'),(150815,4309,'_flexible_templates_1_testimonial_section','field_62bb1d7162e8f_field_62bb251c6c317'),(150816,4309,'flexible_templates_2_sub_heading','REBUILD & REPLATAFORM'),(150817,4309,'_flexible_templates_2_sub_heading','field_62bb1e2962e94_field_6254fdbaefa28'),(150818,4309,'flexible_templates_2_heading','What is the best application modernization
choice for my company?'),(150819,4309,'_flexible_templates_2_heading','field_62bb1e3b62e95_field_6254fdb2efa27'),(150820,4309,'flexible_templates_2_copy_wysiwyg','Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.\r\nYou have two application modernization choices when upgrading: Rebuilding or Replatforming'),(150821,4309,'_flexible_templates_2_copy_wysiwyg','field_62bb44696be57_field_6255310ecf4de'),(150822,4309,'flexible_templates_2_build_and_platform_section_0_heading','What is Rebuild'),(150823,4309,'_flexible_templates_2_build_and_platform_section_0_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(150824,4309,'flexible_templates_2_build_and_platform_section_0_image','4293'),(150825,4309,'_flexible_templates_2_build_and_platform_section_0_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(150826,4309,'flexible_templates_2_build_and_platform_section_0_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(150827,4309,'_flexible_templates_2_build_and_platform_section_0_copy','field_62bb1f8662e99_field_625525b15629c'),(150828,4309,'flexible_templates_2_build_and_platform_section_1_heading','What is Replatform'),(150829,4309,'_flexible_templates_2_build_and_platform_section_1_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(150830,4309,'flexible_templates_2_build_and_platform_section_1_image','4294'),(150831,4309,'_flexible_templates_2_build_and_platform_section_1_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(150832,4309,'flexible_templates_2_build_and_platform_section_1_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(150833,4309,'_flexible_templates_2_build_and_platform_section_1_copy','field_62bb1f8662e99_field_625525b15629c'),(150834,4309,'flexible_templates_2_build_and_platform_section','2'),(150835,4309,'_flexible_templates_2_build_and_platform_section','field_62bb1eeb62e96'),(150836,4309,'flexible_templates_2_testimonial_section_0_icon','4295'),(150837,4309,'_flexible_templates_2_testimonial_section_0_icon','field_62bb25696c318'),(150838,4309,'flexible_templates_2_testimonial_section_0_heading','Rebuilding CIMS Platform at SickKids Hospital:'),(150839,4309,'_flexible_templates_2_testimonial_section_0_heading','field_62bb25736c319'),(150840,4309,'flexible_templates_2_testimonial_section_0_copy','I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.'),(150841,4309,'_flexible_templates_2_testimonial_section_0_copy','field_62bb25786c31a'),(150842,4309,'flexible_templates_2_testimonial_section_0_name','Andrew James'),(150843,4309,'_flexible_templates_2_testimonial_section_0_name','field_62bb260117e59'),(150844,4309,'flexible_templates_2_testimonial_section_0_designation','The Hospital for Sick Children'),(150845,4309,'_flexible_templates_2_testimonial_section_0_designation','field_62bb260c17e5a'),(150846,4309,'flexible_templates_2_testimonial_section','1'),(150847,4309,'_flexible_templates_2_testimonial_section','field_62bb1fc662e9a_field_62bb251c6c317'),(150848,4309,'flexible_templates_3_image','4301'),(150849,4309,'_flexible_templates_3_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(150850,4309,'flexible_templates_4_sub_heading','BUILD - REBUILD - REPLATAFORM'),(150851,4309,'_flexible_templates_4_sub_heading','field_62bb20b262ea1_field_6254fdbaefa28'),(150852,4309,'flexible_templates_4_heading','Keeping you competitive now and built for the
future.'),(150853,4309,'_flexible_templates_4_heading','field_62bb20b862ea2_field_6254fdb2efa27'),(150854,4309,'flexible_templates_4_copy','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world. Making you very competitive, especially in the current market conditions.'),(150855,4309,'_flexible_templates_4_copy','field_62bb20bd62ea3_field_6254fdc0efa29'),(150856,4309,'flexible_templates_4_table_0_text','Strategy'),(150857,4309,'_flexible_templates_4_table_0_text','field_62bb212762ea5'),(150858,4309,'flexible_templates_4_table_1_text','Automated Customer Experience'),(150859,4309,'_flexible_templates_4_table_1_text','field_62bb212762ea5'),(150860,4309,'flexible_templates_4_table_2_text','Critical System 1st Approach'),(150861,4309,'_flexible_templates_4_table_2_text','field_62bb212762ea5'),(150862,4309,'flexible_templates_4_table_3_text','Scalability'),(150863,4309,'_flexible_templates_4_table_3_text','field_62bb212762ea5'),(150864,4309,'flexible_templates_4_table_4_text','API 1st Design'),(150865,4309,'_flexible_templates_4_table_4_text','field_62bb212762ea5'),(150866,4309,'flexible_templates_4_table_5_text','Secure Transactions'),(150867,4309,'_flexible_templates_4_table_5_text','field_62bb212762ea5'),(150868,4309,'flexible_templates_4_table_6_text','Revenue Driving Data Insights'),(150869,4309,'_flexible_templates_4_table_6_text','field_62bb212762ea5'),(150870,4309,'flexible_templates_4_table_7_text','Faster to Market'),(150871,4309,'_flexible_templates_4_table_7_text','field_62bb212762ea5'),(150872,4309,'flexible_templates_4_table_8_text','APM'),(150873,4309,'_flexible_templates_4_table_8_text','field_62bb212762ea5'),(150874,4309,'flexible_templates_4_table_9_text','Responsive Design'),(150875,4309,'_flexible_templates_4_table_9_text','field_62bb212762ea5'),(150876,4309,'flexible_templates_4_table_10_text','Open for Business 24/7'),(150877,4309,'_flexible_templates_4_table_10_text','field_62bb212762ea5'),(150878,4309,'flexible_templates_4_table','11'),(150879,4309,'_flexible_templates_4_table','field_62bb211762ea4'),(150880,4309,'flexible_templates_4_testimonial_section_0_icon',''),(150881,4309,'_flexible_templates_4_testimonial_section_0_icon','field_62bb25696c318'),(150882,4309,'flexible_templates_4_testimonial_section_0_heading',''),(150883,4309,'_flexible_templates_4_testimonial_section_0_heading','field_62bb25736c319'),(150884,4309,'flexible_templates_4_testimonial_section_0_copy','Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.'),(150885,4309,'_flexible_templates_4_testimonial_section_0_copy','field_62bb25786c31a'),(150886,4309,'flexible_templates_4_testimonial_section_0_name','Bradford A. M. Sankar'),(150887,4309,'_flexible_templates_4_testimonial_section_0_name','field_62bb260117e59'),(150888,4309,'flexible_templates_4_testimonial_section_0_designation','COO - Translucent Computing'),(150889,4309,'_flexible_templates_4_testimonial_section_0_designation','field_62bb260c17e5a'),(150890,4309,'flexible_templates_4_testimonial_section','1'),(150891,4309,'_flexible_templates_4_testimonial_section','field_62bb214c62ea6_field_62bb251c6c317'),(150892,4309,'flexible_templates_4_left_image','4303'),(150893,4309,'_flexible_templates_4_left_image','field_62bb21e962eaa'),(150894,4309,'flexible_templates_4_middle_copy','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(150895,4309,'_flexible_templates_4_middle_copy','field_62bb21f462eab'),(150896,4309,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:23:\"Book a consultation now\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(150897,4309,'_flexible_templates_4_cta','field_62bb220b62eac_field_62551b3e101c4'),(150898,4309,'flexible_templates_5_sub_heading','CLOUD NATIVE APPLICATIONS SOLUTIONS:'),(150899,4309,'_flexible_templates_5_sub_heading','field_62bb224b62eae_field_6254fdbaefa28'),(150900,4309,'flexible_templates_5_heading','Is your company competitive in today’s landscape?'),(150901,4309,'_flexible_templates_5_heading','field_62bb226062eaf_field_6254fdb2efa27'),(150902,4309,'flexible_templates_5_left_section_0_text','Application Development Build | Rebuild | Replatform'),(150903,4309,'_flexible_templates_5_left_section_0_text','field_62bb28b062eb1'),(150904,4309,'flexible_templates_5_left_section_1_text','Customer experience workflow automation'),(150905,4309,'_flexible_templates_5_left_section_1_text','field_62bb28b062eb1'),(150906,4309,'flexible_templates_5_left_section_2_text','Application Performance Metrics (APM)'),(150907,4309,'_flexible_templates_5_left_section_2_text','field_62bb28b062eb1'),(150908,4309,'flexible_templates_5_left_section_3_text','API 1st Design'),(150909,4309,'_flexible_templates_5_left_section_3_text','field_62bb28b062eb1'),(150910,4309,'flexible_templates_5_left_section_4_text','Mobile 1st design'),(150911,4309,'_flexible_templates_5_left_section_4_text','field_62bb28b062eb1'),(150912,4309,'flexible_templates_5_left_section_5_text','Responsive Design All Devices'),(150913,4309,'_flexible_templates_5_left_section_5_text','field_62bb28b062eb1'),(150914,4309,'flexible_templates_5_left_section_6_text','Open for business 24/7'),(150915,4309,'_flexible_templates_5_left_section_6_text','field_62bb28b062eb1'),(150916,4309,'flexible_templates_5_left_section','7'),(150917,4309,'_flexible_templates_5_left_section','field_62bb28a762eb0'),(150918,4309,'flexible_templates_5_right_section_0_text','Microservices – Distributed Architecture'),(150919,4309,'_flexible_templates_5_right_section_0_text','field_62bb28be62eb3'),(150920,4309,'flexible_templates_5_right_section_1_text','Secure Transactions – DevSecOps'),(150921,4309,'_flexible_templates_5_right_section_1_text','field_62bb28be62eb3'),(150922,4309,'flexible_templates_5_right_section_2_text','Kubernetes Certified Service Provider'),(150923,4309,'_flexible_templates_5_right_section_2_text','field_62bb28be62eb3'),(150924,4309,'flexible_templates_5_right_section_3_text','Multi-cloud Solutions – GCP – AWS – Azure'),(150925,4309,'_flexible_templates_5_right_section_3_text','field_62bb28be62eb3'),(150926,4309,'flexible_templates_5_right_section_4_text','Critical System 1st Approach'),(150927,4309,'_flexible_templates_5_right_section_4_text','field_62bb28be62eb3'),(150928,4309,'flexible_templates_5_right_section_5_text','API Economy – 3rd Party partnerships'),(150929,4309,'_flexible_templates_5_right_section_5_text','field_62bb28be62eb3'),(150930,4309,'flexible_templates_5_right_section_6_text','Return on Investment 1st driven planning'),(150931,4309,'_flexible_templates_5_right_section_6_text','field_62bb28be62eb3'),(150932,4309,'flexible_templates_5_right_section','7'),(150933,4309,'_flexible_templates_5_right_section','field_62bb28be62eb2'),(150934,4309,'flexible_templates_6_image','4219'),(150935,4309,'_flexible_templates_6_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(150939,4242,'flexible_templates_7_sub_heading','THE TRANSLUCENT VALUE'),(150940,4242,'_flexible_templates_7_sub_heading','field_62bb293062eb5_field_6254fdbaefa28'),(150941,4242,'flexible_templates_7_heading','What does cloud native data driven application
modernization
mean for your business?'),(150942,4242,'_flexible_templates_7_heading','field_62bb295b62eb6_field_6254fdb2efa27'),(150943,4242,'flexible_templates_7_list_section_0_list_0_copy','We learn about what makes your business and physical operations valuable to your clients and modernize that.'),(150944,4242,'_flexible_templates_7_list_section_0_list_0_copy','field_62bb2a0462eb9'),(150945,4242,'flexible_templates_7_list_section_0_list_1_copy','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions.'),(150946,4242,'_flexible_templates_7_list_section_0_list_1_copy','field_62bb2a0462eb9'),(150947,4242,'flexible_templates_7_list_section_0_list_2_copy','Data Driven Decisions give you the ability to fine-tune your products and services based on historical patterns providing the best ROI.'),(150948,4242,'_flexible_templates_7_list_section_0_list_2_copy','field_62bb2a0462eb9'),(150949,4242,'flexible_templates_7_list_section_0_list','3'),(150950,4242,'_flexible_templates_7_list_section_0_list','field_62bb29bd62eb8'),(150951,4242,'flexible_templates_7_list_section_1_list_0_copy','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(150952,4242,'_flexible_templates_7_list_section_1_list_0_copy','field_62bb2a0462eb9'),(150953,4242,'flexible_templates_7_list_section_1_list_1_copy','We go above and beyond to deliver and treat your solution like our own'),(150954,4242,'_flexible_templates_7_list_section_1_list_1_copy','field_62bb2a0462eb9'),(150955,4242,'flexible_templates_7_list_section_1_list_2_copy','Translucent application development and application modernization reduces cost'),(150956,4242,'_flexible_templates_7_list_section_1_list_2_copy','field_62bb2a0462eb9'),(150957,4242,'flexible_templates_7_list_section_1_list_3_copy','Automation of the employee and customer experience saves money and makes money'),(150958,4242,'_flexible_templates_7_list_section_1_list_3_copy','field_62bb2a0462eb9'),(150959,4242,'flexible_templates_7_list_section_1_list','4'),(150960,4242,'_flexible_templates_7_list_section_1_list','field_62bb29bd62eb8'),(150961,4242,'flexible_templates_7_list_section_2_list_0_copy','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(150962,4242,'_flexible_templates_7_list_section_2_list_0_copy','field_62bb2a0462eb9'),(150963,4242,'flexible_templates_7_list_section_2_list_1_copy','Increase profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(150964,4242,'_flexible_templates_7_list_section_2_list_1_copy','field_62bb2a0462eb9'),(150965,4242,'flexible_templates_7_list_section_2_list','2'),(150966,4242,'_flexible_templates_7_list_section_2_list','field_62bb29bd62eb8'),(150967,4242,'flexible_templates_7_list_section','3'),(150968,4242,'_flexible_templates_7_list_section','field_62bb29b362eb7'),(150969,4310,'flexible_templates','a:8:{i:0;s:31:\"cloud_native_application_banner\";i:1;s:50:\"cloud_native_application_building_new_applications\";i:2;s:47:\"cloud_native_application_rebuild_and_replatform\";i:3;s:40:\"cloud_native_application_fullwidth_image\";i:4;s:49:\"cloud_native_application_build_rebuild_replatform\";i:5;s:35:\"cloud_native_applications_solutions\";i:6;s:40:\"cloud_native_application_fullwidth_image\";i:7;s:47:\"cloud_native_applications_the_translucent_value\";}'),(150970,4310,'_flexible_templates','field_6254f4d84ef9b'),(150971,4310,'flexible_templates_0_image','4238'),(150972,4310,'_flexible_templates_0_image','field_62bb17034467a_field_62552ada52711_field_6254fdc5efa2a'),(150973,4310,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(150974,4310,'_flexible_templates_0_sub_heading','field_62bb173b4467b_field_6255097642ef4_field_6254fdbaefa28'),(150975,4310,'flexible_templates_0_heading','Cloud Native Application Development'),(150976,4310,'_flexible_templates_0_heading','field_62bb17614467c_field_62551ac3a6f96_field_6254fdb2efa27'),(150977,4310,'flexible_templates_0_copy','In modern application development you have three choices: Build | Rebuild | Replatform'),(150978,4310,'_flexible_templates_0_copy','field_62bb17874467d_field_62551b74a6f99_field_6254fdc0efa29'),(150979,4310,'flexible_templates_1_sub_heading','BUILDING NEW APPLICATIONS'),(150980,4310,'_flexible_templates_1_sub_heading','field_62bb1c9962e8a_field_6254fdbaefa28'),(150981,4310,'flexible_templates_1_heading','What is Building?'),(150982,4310,'_flexible_templates_1_heading','field_62bb1c9f62e8b_field_6254fdb2efa27'),(150983,4310,'flexible_templates_1_copy_wysiwyg','

Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.

\r\n

The foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.
Unleashing the true power of your organization in the 4th industrial revolution.

'),(150984,4310,'_flexible_templates_1_copy_wysiwyg','field_62bb1cb462e8c_field_6255310ecf4de'),(150985,4310,'flexible_templates_1_image','4291'),(150986,4310,'_flexible_templates_1_image','field_62bb1cf662e8d_field_6254fdc5efa2a'),(150987,4310,'flexible_templates_1_testimonial_section_0_icon',''),(150988,4310,'_flexible_templates_1_testimonial_section_0_icon','field_62bb25696c318'),(150989,4310,'flexible_templates_1_testimonial_section_0_heading','Building GoTo Loans Platform from a Vision:'),(150990,4310,'_flexible_templates_1_testimonial_section_0_heading','field_62bb25736c319'),(150991,4310,'flexible_templates_1_testimonial_section_0_copy','Integrating banking, automotive, loan, mechanic and customer workflow data making the complex almost seem like magic. Keep up the great work!'),(150992,4310,'_flexible_templates_1_testimonial_section_0_copy','field_62bb25786c31a'),(150993,4310,'flexible_templates_1_testimonial_section_0_name','Eric Kaplan'),(150994,4310,'_flexible_templates_1_testimonial_section_0_name','field_62bb260117e59'),(150995,4310,'flexible_templates_1_testimonial_section_0_designation','COO - GoTo Loans'),(150996,4310,'_flexible_templates_1_testimonial_section_0_designation','field_62bb260c17e5a'),(150997,4310,'flexible_templates_1_testimonial_section','1'),(150998,4310,'_flexible_templates_1_testimonial_section','field_62bb1d7162e8f_field_62bb251c6c317'),(150999,4310,'flexible_templates_2_sub_heading','REBUILD & REPLATAFORM'),(151000,4310,'_flexible_templates_2_sub_heading','field_62bb1e2962e94_field_6254fdbaefa28'),(151001,4310,'flexible_templates_2_heading','What is the best application modernization
choice for my company?'),(151002,4310,'_flexible_templates_2_heading','field_62bb1e3b62e95_field_6254fdb2efa27'),(151003,4310,'flexible_templates_2_copy_wysiwyg','Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.\r\nYou have two application modernization choices when upgrading: Rebuilding or Replatforming'),(151004,4310,'_flexible_templates_2_copy_wysiwyg','field_62bb44696be57_field_6255310ecf4de'),(151005,4310,'flexible_templates_2_build_and_platform_section_0_heading','What is Rebuild'),(151006,4310,'_flexible_templates_2_build_and_platform_section_0_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(151007,4310,'flexible_templates_2_build_and_platform_section_0_image','4293'),(151008,4310,'_flexible_templates_2_build_and_platform_section_0_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(151009,4310,'flexible_templates_2_build_and_platform_section_0_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(151010,4310,'_flexible_templates_2_build_and_platform_section_0_copy','field_62bb1f8662e99_field_625525b15629c'),(151011,4310,'flexible_templates_2_build_and_platform_section_1_heading','What is Replatform'),(151012,4310,'_flexible_templates_2_build_and_platform_section_1_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(151013,4310,'flexible_templates_2_build_and_platform_section_1_image','4294'),(151014,4310,'_flexible_templates_2_build_and_platform_section_1_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(151015,4310,'flexible_templates_2_build_and_platform_section_1_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(151016,4310,'_flexible_templates_2_build_and_platform_section_1_copy','field_62bb1f8662e99_field_625525b15629c'),(151017,4310,'flexible_templates_2_build_and_platform_section','2'),(151018,4310,'_flexible_templates_2_build_and_platform_section','field_62bb1eeb62e96'),(151019,4310,'flexible_templates_2_testimonial_section_0_icon','4295'),(151020,4310,'_flexible_templates_2_testimonial_section_0_icon','field_62bb25696c318'),(151021,4310,'flexible_templates_2_testimonial_section_0_heading','Rebuilding CIMS Platform at SickKids Hospital:'),(151022,4310,'_flexible_templates_2_testimonial_section_0_heading','field_62bb25736c319'),(151023,4310,'flexible_templates_2_testimonial_section_0_copy','I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.'),(151024,4310,'_flexible_templates_2_testimonial_section_0_copy','field_62bb25786c31a'),(151025,4310,'flexible_templates_2_testimonial_section_0_name','Andrew James'),(151026,4310,'_flexible_templates_2_testimonial_section_0_name','field_62bb260117e59'),(151027,4310,'flexible_templates_2_testimonial_section_0_designation','The Hospital for Sick Children'),(151028,4310,'_flexible_templates_2_testimonial_section_0_designation','field_62bb260c17e5a'),(151029,4310,'flexible_templates_2_testimonial_section','1'),(151030,4310,'_flexible_templates_2_testimonial_section','field_62bb1fc662e9a_field_62bb251c6c317'),(151031,4310,'flexible_templates_3_image','4301'),(151032,4310,'_flexible_templates_3_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(151033,4310,'flexible_templates_4_sub_heading','BUILD - REBUILD - REPLATAFORM'),(151034,4310,'_flexible_templates_4_sub_heading','field_62bb20b262ea1_field_6254fdbaefa28'),(151035,4310,'flexible_templates_4_heading','Keeping you competitive now and built for the
future.'),(151036,4310,'_flexible_templates_4_heading','field_62bb20b862ea2_field_6254fdb2efa27'),(151037,4310,'flexible_templates_4_copy','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world. Making you very competitive, especially in the current market conditions.'),(151038,4310,'_flexible_templates_4_copy','field_62bb20bd62ea3_field_6254fdc0efa29'),(151039,4310,'flexible_templates_4_table_0_text','Strategy'),(151040,4310,'_flexible_templates_4_table_0_text','field_62bb212762ea5'),(151041,4310,'flexible_templates_4_table_1_text','Automated Customer Experience'),(151042,4310,'_flexible_templates_4_table_1_text','field_62bb212762ea5'),(151043,4310,'flexible_templates_4_table_2_text','Critical System 1st Approach'),(151044,4310,'_flexible_templates_4_table_2_text','field_62bb212762ea5'),(151045,4310,'flexible_templates_4_table_3_text','Scalability'),(151046,4310,'_flexible_templates_4_table_3_text','field_62bb212762ea5'),(151047,4310,'flexible_templates_4_table_4_text','API 1st Design'),(151048,4310,'_flexible_templates_4_table_4_text','field_62bb212762ea5'),(151049,4310,'flexible_templates_4_table_5_text','Secure Transactions'),(151050,4310,'_flexible_templates_4_table_5_text','field_62bb212762ea5'),(151051,4310,'flexible_templates_4_table_6_text','Revenue Driving Data Insights'),(151052,4310,'_flexible_templates_4_table_6_text','field_62bb212762ea5'),(151053,4310,'flexible_templates_4_table_7_text','Faster to Market'),(151054,4310,'_flexible_templates_4_table_7_text','field_62bb212762ea5'),(151055,4310,'flexible_templates_4_table_8_text','APM'),(151056,4310,'_flexible_templates_4_table_8_text','field_62bb212762ea5'),(151057,4310,'flexible_templates_4_table_9_text','Responsive Design'),(151058,4310,'_flexible_templates_4_table_9_text','field_62bb212762ea5'),(151059,4310,'flexible_templates_4_table_10_text','Open for Business 24/7'),(151060,4310,'_flexible_templates_4_table_10_text','field_62bb212762ea5'),(151061,4310,'flexible_templates_4_table','11'),(151062,4310,'_flexible_templates_4_table','field_62bb211762ea4'),(151063,4310,'flexible_templates_4_testimonial_section_0_icon',''),(151064,4310,'_flexible_templates_4_testimonial_section_0_icon','field_62bb25696c318'),(151065,4310,'flexible_templates_4_testimonial_section_0_heading',''),(151066,4310,'_flexible_templates_4_testimonial_section_0_heading','field_62bb25736c319'),(151067,4310,'flexible_templates_4_testimonial_section_0_copy','Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.'),(151068,4310,'_flexible_templates_4_testimonial_section_0_copy','field_62bb25786c31a'),(151069,4310,'flexible_templates_4_testimonial_section_0_name','Bradford A. M. Sankar'),(151070,4310,'_flexible_templates_4_testimonial_section_0_name','field_62bb260117e59'),(151071,4310,'flexible_templates_4_testimonial_section_0_designation','COO - Translucent Computing'),(151072,4310,'_flexible_templates_4_testimonial_section_0_designation','field_62bb260c17e5a'),(151073,4310,'flexible_templates_4_testimonial_section','1'),(151074,4310,'_flexible_templates_4_testimonial_section','field_62bb214c62ea6_field_62bb251c6c317'),(151075,4310,'flexible_templates_4_left_image','4303'),(151076,4310,'_flexible_templates_4_left_image','field_62bb21e962eaa'),(151077,4310,'flexible_templates_4_middle_copy','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(151078,4310,'_flexible_templates_4_middle_copy','field_62bb21f462eab'),(151079,4310,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:23:\"Book a consultation now\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(151080,4310,'_flexible_templates_4_cta','field_62bb220b62eac_field_62551b3e101c4'),(151081,4310,'flexible_templates_5_sub_heading','CLOUD NATIVE APPLICATIONS SOLUTIONS:'),(151082,4310,'_flexible_templates_5_sub_heading','field_62bb224b62eae_field_6254fdbaefa28'),(151083,4310,'flexible_templates_5_heading','Is your company competitive in today’s landscape?'),(151084,4310,'_flexible_templates_5_heading','field_62bb226062eaf_field_6254fdb2efa27'),(151085,4310,'flexible_templates_5_left_section_0_text','Application Development Build | Rebuild | Replatform'),(151086,4310,'_flexible_templates_5_left_section_0_text','field_62bb28b062eb1'),(151087,4310,'flexible_templates_5_left_section_1_text','Customer experience workflow automation'),(151088,4310,'_flexible_templates_5_left_section_1_text','field_62bb28b062eb1'),(151089,4310,'flexible_templates_5_left_section_2_text','Application Performance Metrics (APM)'),(151090,4310,'_flexible_templates_5_left_section_2_text','field_62bb28b062eb1'),(151091,4310,'flexible_templates_5_left_section_3_text','API 1st Design'),(151092,4310,'_flexible_templates_5_left_section_3_text','field_62bb28b062eb1'),(151093,4310,'flexible_templates_5_left_section_4_text','Mobile 1st design'),(151094,4310,'_flexible_templates_5_left_section_4_text','field_62bb28b062eb1'),(151095,4310,'flexible_templates_5_left_section_5_text','Responsive Design All Devices'),(151096,4310,'_flexible_templates_5_left_section_5_text','field_62bb28b062eb1'),(151097,4310,'flexible_templates_5_left_section_6_text','Open for business 24/7'),(151098,4310,'_flexible_templates_5_left_section_6_text','field_62bb28b062eb1'),(151099,4310,'flexible_templates_5_left_section','7'),(151100,4310,'_flexible_templates_5_left_section','field_62bb28a762eb0'),(151101,4310,'flexible_templates_5_right_section_0_text','Microservices – Distributed Architecture'),(151102,4310,'_flexible_templates_5_right_section_0_text','field_62bb28be62eb3'),(151103,4310,'flexible_templates_5_right_section_1_text','Secure Transactions – DevSecOps'),(151104,4310,'_flexible_templates_5_right_section_1_text','field_62bb28be62eb3'),(151105,4310,'flexible_templates_5_right_section_2_text','Kubernetes Certified Service Provider'),(151106,4310,'_flexible_templates_5_right_section_2_text','field_62bb28be62eb3'),(151107,4310,'flexible_templates_5_right_section_3_text','Multi-cloud Solutions – GCP – AWS – Azure'),(151108,4310,'_flexible_templates_5_right_section_3_text','field_62bb28be62eb3'),(151109,4310,'flexible_templates_5_right_section_4_text','Critical System 1st Approach'),(151110,4310,'_flexible_templates_5_right_section_4_text','field_62bb28be62eb3'),(151111,4310,'flexible_templates_5_right_section_5_text','API Economy – 3rd Party partnerships'),(151112,4310,'_flexible_templates_5_right_section_5_text','field_62bb28be62eb3'),(151113,4310,'flexible_templates_5_right_section_6_text','Return on Investment 1st driven planning'),(151114,4310,'_flexible_templates_5_right_section_6_text','field_62bb28be62eb3'),(151115,4310,'flexible_templates_5_right_section','7'),(151116,4310,'_flexible_templates_5_right_section','field_62bb28be62eb2'),(151117,4310,'flexible_templates_6_image','4219'),(151118,4310,'_flexible_templates_6_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(151119,4310,'flexible_templates_7_sub_heading','THE TRANSLUCENT VALUE'),(151120,4310,'_flexible_templates_7_sub_heading','field_62bb293062eb5_field_6254fdbaefa28'),(151121,4310,'flexible_templates_7_heading','What does cloud native data driven application
modernization
mean for your business?'),(151122,4310,'_flexible_templates_7_heading','field_62bb295b62eb6_field_6254fdb2efa27'),(151123,4310,'flexible_templates_7_list_section_0_list_0_copy','We learn about what makes your business and physical operations valuable to your clients and modernize that.'),(151124,4310,'_flexible_templates_7_list_section_0_list_0_copy','field_62bb2a0462eb9'),(151125,4310,'flexible_templates_7_list_section_0_list_1_copy','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions.'),(151126,4310,'_flexible_templates_7_list_section_0_list_1_copy','field_62bb2a0462eb9'),(151127,4310,'flexible_templates_7_list_section_0_list_2_copy','Data Driven Decisions give you the ability to fine-tune your products and services based on historical patterns providing the best ROI.'),(151128,4310,'_flexible_templates_7_list_section_0_list_2_copy','field_62bb2a0462eb9'),(151129,4310,'flexible_templates_7_list_section_0_list','3'),(151130,4310,'_flexible_templates_7_list_section_0_list','field_62bb29bd62eb8'),(151131,4310,'flexible_templates_7_list_section_1_list_0_copy','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(151132,4310,'_flexible_templates_7_list_section_1_list_0_copy','field_62bb2a0462eb9'),(151133,4310,'flexible_templates_7_list_section_1_list_1_copy','We go above and beyond to deliver and treat your solution like our own'),(151134,4310,'_flexible_templates_7_list_section_1_list_1_copy','field_62bb2a0462eb9'),(151135,4310,'flexible_templates_7_list_section_1_list_2_copy','Translucent application development and application modernization reduces cost'),(151136,4310,'_flexible_templates_7_list_section_1_list_2_copy','field_62bb2a0462eb9'),(151137,4310,'flexible_templates_7_list_section_1_list_3_copy','Automation of the employee and customer experience saves money and makes money'),(151138,4310,'_flexible_templates_7_list_section_1_list_3_copy','field_62bb2a0462eb9'),(151139,4310,'flexible_templates_7_list_section_1_list','4'),(151140,4310,'_flexible_templates_7_list_section_1_list','field_62bb29bd62eb8'),(151141,4310,'flexible_templates_7_list_section_2_list_0_copy','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(151142,4310,'_flexible_templates_7_list_section_2_list_0_copy','field_62bb2a0462eb9'),(151143,4310,'flexible_templates_7_list_section_2_list_1_copy','Increase profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(151144,4310,'_flexible_templates_7_list_section_2_list_1_copy','field_62bb2a0462eb9'),(151145,4310,'flexible_templates_7_list_section_2_list','2'),(151146,4310,'_flexible_templates_7_list_section_2_list','field_62bb29bd62eb8'),(151147,4310,'flexible_templates_7_list_section','3'),(151148,4310,'_flexible_templates_7_list_section','field_62bb29b362eb7'),(151152,4242,'flexible_templates_8_copy','Translucent cloud native data driven application development.
It’s how your client’s do business!'),(151153,4242,'_flexible_templates_8_copy','field_62bb2a7262ebb_field_6254fdc0efa29'),(151154,4242,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:11:\"Let\'s talk!\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(151155,4242,'_flexible_templates_8_cta','field_62bb2a8962ebc_field_62551b3e101c4'),(151156,4311,'flexible_templates','a:9:{i:0;s:31:\"cloud_native_application_banner\";i:1;s:50:\"cloud_native_application_building_new_applications\";i:2;s:47:\"cloud_native_application_rebuild_and_replatform\";i:3;s:40:\"cloud_native_application_fullwidth_image\";i:4;s:49:\"cloud_native_application_build_rebuild_replatform\";i:5;s:35:\"cloud_native_applications_solutions\";i:6;s:40:\"cloud_native_application_fullwidth_image\";i:7;s:47:\"cloud_native_applications_the_translucent_value\";i:8;s:40:\"cloud_native_application_copy_and_button\";}'),(151157,4311,'_flexible_templates','field_6254f4d84ef9b'),(151158,4311,'flexible_templates_0_image','4238'),(151159,4311,'_flexible_templates_0_image','field_62bb17034467a_field_62552ada52711_field_6254fdc5efa2a'),(151160,4311,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(151161,4311,'_flexible_templates_0_sub_heading','field_62bb173b4467b_field_6255097642ef4_field_6254fdbaefa28'),(151162,4311,'flexible_templates_0_heading','Cloud Native Application Development'),(151163,4311,'_flexible_templates_0_heading','field_62bb17614467c_field_62551ac3a6f96_field_6254fdb2efa27'),(151164,4311,'flexible_templates_0_copy','In modern application development you have three choices: Build | Rebuild | Replatform'),(151165,4311,'_flexible_templates_0_copy','field_62bb17874467d_field_62551b74a6f99_field_6254fdc0efa29'),(151166,4311,'flexible_templates_1_sub_heading','BUILDING NEW APPLICATIONS'),(151167,4311,'_flexible_templates_1_sub_heading','field_62bb1c9962e8a_field_6254fdbaefa28'),(151168,4311,'flexible_templates_1_heading','What is Building?'),(151169,4311,'_flexible_templates_1_heading','field_62bb1c9f62e8b_field_6254fdb2efa27'),(151170,4311,'flexible_templates_1_copy_wysiwyg','

Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.

\r\n

The foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.
Unleashing the true power of your organization in the 4th industrial revolution.

'),(151171,4311,'_flexible_templates_1_copy_wysiwyg','field_62bb1cb462e8c_field_6255310ecf4de'),(151172,4311,'flexible_templates_1_image','4291'),(151173,4311,'_flexible_templates_1_image','field_62bb1cf662e8d_field_6254fdc5efa2a'),(151174,4311,'flexible_templates_1_testimonial_section_0_icon',''),(151175,4311,'_flexible_templates_1_testimonial_section_0_icon','field_62bb25696c318'),(151176,4311,'flexible_templates_1_testimonial_section_0_heading','Building GoTo Loans Platform from a Vision:'),(151177,4311,'_flexible_templates_1_testimonial_section_0_heading','field_62bb25736c319'),(151178,4311,'flexible_templates_1_testimonial_section_0_copy','Integrating banking, automotive, loan, mechanic and customer workflow data making the complex almost seem like magic. Keep up the great work!'),(151179,4311,'_flexible_templates_1_testimonial_section_0_copy','field_62bb25786c31a'),(151180,4311,'flexible_templates_1_testimonial_section_0_name','Eric Kaplan'),(151181,4311,'_flexible_templates_1_testimonial_section_0_name','field_62bb260117e59'),(151182,4311,'flexible_templates_1_testimonial_section_0_designation','COO - GoTo Loans'),(151183,4311,'_flexible_templates_1_testimonial_section_0_designation','field_62bb260c17e5a'),(151184,4311,'flexible_templates_1_testimonial_section','1'),(151185,4311,'_flexible_templates_1_testimonial_section','field_62bb1d7162e8f_field_62bb251c6c317'),(151186,4311,'flexible_templates_2_sub_heading','REBUILD & REPLATAFORM'),(151187,4311,'_flexible_templates_2_sub_heading','field_62bb1e2962e94_field_6254fdbaefa28'),(151188,4311,'flexible_templates_2_heading','What is the best application modernization
choice for my company?'),(151189,4311,'_flexible_templates_2_heading','field_62bb1e3b62e95_field_6254fdb2efa27'),(151190,4311,'flexible_templates_2_copy_wysiwyg','Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.\r\nYou have two application modernization choices when upgrading: Rebuilding or Replatforming'),(151191,4311,'_flexible_templates_2_copy_wysiwyg','field_62bb44696be57_field_6255310ecf4de'),(151192,4311,'flexible_templates_2_build_and_platform_section_0_heading','What is Rebuild'),(151193,4311,'_flexible_templates_2_build_and_platform_section_0_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(151194,4311,'flexible_templates_2_build_and_platform_section_0_image','4293'),(151195,4311,'_flexible_templates_2_build_and_platform_section_0_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(151196,4311,'flexible_templates_2_build_and_platform_section_0_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(151197,4311,'_flexible_templates_2_build_and_platform_section_0_copy','field_62bb1f8662e99_field_625525b15629c'),(151198,4311,'flexible_templates_2_build_and_platform_section_1_heading','What is Replatform'),(151199,4311,'_flexible_templates_2_build_and_platform_section_1_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(151200,4311,'flexible_templates_2_build_and_platform_section_1_image','4294'),(151201,4311,'_flexible_templates_2_build_and_platform_section_1_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(151202,4311,'flexible_templates_2_build_and_platform_section_1_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(151203,4311,'_flexible_templates_2_build_and_platform_section_1_copy','field_62bb1f8662e99_field_625525b15629c'),(151204,4311,'flexible_templates_2_build_and_platform_section','2'),(151205,4311,'_flexible_templates_2_build_and_platform_section','field_62bb1eeb62e96'),(151206,4311,'flexible_templates_2_testimonial_section_0_icon','4295'),(151207,4311,'_flexible_templates_2_testimonial_section_0_icon','field_62bb25696c318'),(151208,4311,'flexible_templates_2_testimonial_section_0_heading','Rebuilding CIMS Platform at SickKids Hospital:'),(151209,4311,'_flexible_templates_2_testimonial_section_0_heading','field_62bb25736c319'),(151210,4311,'flexible_templates_2_testimonial_section_0_copy','I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.'),(151211,4311,'_flexible_templates_2_testimonial_section_0_copy','field_62bb25786c31a'),(151212,4311,'flexible_templates_2_testimonial_section_0_name','Andrew James'),(151213,4311,'_flexible_templates_2_testimonial_section_0_name','field_62bb260117e59'),(151214,4311,'flexible_templates_2_testimonial_section_0_designation','The Hospital for Sick Children'),(151215,4311,'_flexible_templates_2_testimonial_section_0_designation','field_62bb260c17e5a'),(151216,4311,'flexible_templates_2_testimonial_section','1'),(151217,4311,'_flexible_templates_2_testimonial_section','field_62bb1fc662e9a_field_62bb251c6c317'),(151218,4311,'flexible_templates_3_image','4301'),(151219,4311,'_flexible_templates_3_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(151220,4311,'flexible_templates_4_sub_heading','BUILD - REBUILD - REPLATAFORM'),(151221,4311,'_flexible_templates_4_sub_heading','field_62bb20b262ea1_field_6254fdbaefa28'),(151222,4311,'flexible_templates_4_heading','Keeping you competitive now and built for the
future.'),(151223,4311,'_flexible_templates_4_heading','field_62bb20b862ea2_field_6254fdb2efa27'),(151224,4311,'flexible_templates_4_copy','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world. Making you very competitive, especially in the current market conditions.'),(151225,4311,'_flexible_templates_4_copy','field_62bb20bd62ea3_field_6254fdc0efa29'),(151226,4311,'flexible_templates_4_table_0_text','Strategy'),(151227,4311,'_flexible_templates_4_table_0_text','field_62bb212762ea5'),(151228,4311,'flexible_templates_4_table_1_text','Automated Customer Experience'),(151229,4311,'_flexible_templates_4_table_1_text','field_62bb212762ea5'),(151230,4311,'flexible_templates_4_table_2_text','Critical System 1st Approach'),(151231,4311,'_flexible_templates_4_table_2_text','field_62bb212762ea5'),(151232,4311,'flexible_templates_4_table_3_text','Scalability'),(151233,4311,'_flexible_templates_4_table_3_text','field_62bb212762ea5'),(151234,4311,'flexible_templates_4_table_4_text','API 1st Design'),(151235,4311,'_flexible_templates_4_table_4_text','field_62bb212762ea5'),(151236,4311,'flexible_templates_4_table_5_text','Secure Transactions'),(151237,4311,'_flexible_templates_4_table_5_text','field_62bb212762ea5'),(151238,4311,'flexible_templates_4_table_6_text','Revenue Driving Data Insights'),(151239,4311,'_flexible_templates_4_table_6_text','field_62bb212762ea5'),(151240,4311,'flexible_templates_4_table_7_text','Faster to Market'),(151241,4311,'_flexible_templates_4_table_7_text','field_62bb212762ea5'),(151242,4311,'flexible_templates_4_table_8_text','APM'),(151243,4311,'_flexible_templates_4_table_8_text','field_62bb212762ea5'),(151244,4311,'flexible_templates_4_table_9_text','Responsive Design'),(151245,4311,'_flexible_templates_4_table_9_text','field_62bb212762ea5'),(151246,4311,'flexible_templates_4_table_10_text','Open for Business 24/7'),(151247,4311,'_flexible_templates_4_table_10_text','field_62bb212762ea5'),(151248,4311,'flexible_templates_4_table','11'),(151249,4311,'_flexible_templates_4_table','field_62bb211762ea4'),(151250,4311,'flexible_templates_4_testimonial_section_0_icon',''),(151251,4311,'_flexible_templates_4_testimonial_section_0_icon','field_62bb25696c318'),(151252,4311,'flexible_templates_4_testimonial_section_0_heading',''),(151253,4311,'_flexible_templates_4_testimonial_section_0_heading','field_62bb25736c319'),(151254,4311,'flexible_templates_4_testimonial_section_0_copy','Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.'),(151255,4311,'_flexible_templates_4_testimonial_section_0_copy','field_62bb25786c31a'),(151256,4311,'flexible_templates_4_testimonial_section_0_name','Bradford A. M. Sankar'),(151257,4311,'_flexible_templates_4_testimonial_section_0_name','field_62bb260117e59'),(151258,4311,'flexible_templates_4_testimonial_section_0_designation','COO - Translucent Computing'),(151259,4311,'_flexible_templates_4_testimonial_section_0_designation','field_62bb260c17e5a'),(151260,4311,'flexible_templates_4_testimonial_section','1'),(151261,4311,'_flexible_templates_4_testimonial_section','field_62bb214c62ea6_field_62bb251c6c317'),(151262,4311,'flexible_templates_4_left_image','4303'),(151263,4311,'_flexible_templates_4_left_image','field_62bb21e962eaa'),(151264,4311,'flexible_templates_4_middle_copy','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(151265,4311,'_flexible_templates_4_middle_copy','field_62bb21f462eab'),(151266,4311,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:23:\"Book a consultation now\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(151267,4311,'_flexible_templates_4_cta','field_62bb220b62eac_field_62551b3e101c4'),(151268,4311,'flexible_templates_5_sub_heading','CLOUD NATIVE APPLICATIONS SOLUTIONS:'),(151269,4311,'_flexible_templates_5_sub_heading','field_62bb224b62eae_field_6254fdbaefa28'),(151270,4311,'flexible_templates_5_heading','Is your company competitive in today’s landscape?'),(151271,4311,'_flexible_templates_5_heading','field_62bb226062eaf_field_6254fdb2efa27'),(151272,4311,'flexible_templates_5_left_section_0_text','Application Development Build | Rebuild | Replatform'),(151273,4311,'_flexible_templates_5_left_section_0_text','field_62bb28b062eb1'),(151274,4311,'flexible_templates_5_left_section_1_text','Customer experience workflow automation'),(151275,4311,'_flexible_templates_5_left_section_1_text','field_62bb28b062eb1'),(151276,4311,'flexible_templates_5_left_section_2_text','Application Performance Metrics (APM)'),(151277,4311,'_flexible_templates_5_left_section_2_text','field_62bb28b062eb1'),(151278,4311,'flexible_templates_5_left_section_3_text','API 1st Design'),(151279,4311,'_flexible_templates_5_left_section_3_text','field_62bb28b062eb1'),(151280,4311,'flexible_templates_5_left_section_4_text','Mobile 1st design'),(151281,4311,'_flexible_templates_5_left_section_4_text','field_62bb28b062eb1'),(151282,4311,'flexible_templates_5_left_section_5_text','Responsive Design All Devices'),(151283,4311,'_flexible_templates_5_left_section_5_text','field_62bb28b062eb1'),(151284,4311,'flexible_templates_5_left_section_6_text','Open for business 24/7'),(151285,4311,'_flexible_templates_5_left_section_6_text','field_62bb28b062eb1'),(151286,4311,'flexible_templates_5_left_section','7'),(151287,4311,'_flexible_templates_5_left_section','field_62bb28a762eb0'),(151288,4311,'flexible_templates_5_right_section_0_text','Microservices – Distributed Architecture'),(151289,4311,'_flexible_templates_5_right_section_0_text','field_62bb28be62eb3'),(151290,4311,'flexible_templates_5_right_section_1_text','Secure Transactions – DevSecOps'),(151291,4311,'_flexible_templates_5_right_section_1_text','field_62bb28be62eb3'),(151292,4311,'flexible_templates_5_right_section_2_text','Kubernetes Certified Service Provider'),(151293,4311,'_flexible_templates_5_right_section_2_text','field_62bb28be62eb3'),(151294,4311,'flexible_templates_5_right_section_3_text','Multi-cloud Solutions – GCP – AWS – Azure'),(151295,4311,'_flexible_templates_5_right_section_3_text','field_62bb28be62eb3'),(151296,4311,'flexible_templates_5_right_section_4_text','Critical System 1st Approach'),(151297,4311,'_flexible_templates_5_right_section_4_text','field_62bb28be62eb3'),(151298,4311,'flexible_templates_5_right_section_5_text','API Economy – 3rd Party partnerships'),(151299,4311,'_flexible_templates_5_right_section_5_text','field_62bb28be62eb3'),(151300,4311,'flexible_templates_5_right_section_6_text','Return on Investment 1st driven planning'),(151301,4311,'_flexible_templates_5_right_section_6_text','field_62bb28be62eb3'),(151302,4311,'flexible_templates_5_right_section','7'),(151303,4311,'_flexible_templates_5_right_section','field_62bb28be62eb2'),(151304,4311,'flexible_templates_6_image','4219'),(151305,4311,'_flexible_templates_6_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(151306,4311,'flexible_templates_7_sub_heading','THE TRANSLUCENT VALUE'),(151307,4311,'_flexible_templates_7_sub_heading','field_62bb293062eb5_field_6254fdbaefa28'),(151308,4311,'flexible_templates_7_heading','What does cloud native data driven application
modernization
mean for your business?'),(151309,4311,'_flexible_templates_7_heading','field_62bb295b62eb6_field_6254fdb2efa27'),(151310,4311,'flexible_templates_7_list_section_0_list_0_copy','We learn about what makes your business and physical operations valuable to your clients and modernize that.'),(151311,4311,'_flexible_templates_7_list_section_0_list_0_copy','field_62bb2a0462eb9'),(151312,4311,'flexible_templates_7_list_section_0_list_1_copy','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions.'),(151313,4311,'_flexible_templates_7_list_section_0_list_1_copy','field_62bb2a0462eb9'),(151314,4311,'flexible_templates_7_list_section_0_list_2_copy','Data Driven Decisions give you the ability to fine-tune your products and services based on historical patterns providing the best ROI.'),(151315,4311,'_flexible_templates_7_list_section_0_list_2_copy','field_62bb2a0462eb9'),(151316,4311,'flexible_templates_7_list_section_0_list','3'),(151317,4311,'_flexible_templates_7_list_section_0_list','field_62bb29bd62eb8'),(151318,4311,'flexible_templates_7_list_section_1_list_0_copy','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(151319,4311,'_flexible_templates_7_list_section_1_list_0_copy','field_62bb2a0462eb9'),(151320,4311,'flexible_templates_7_list_section_1_list_1_copy','We go above and beyond to deliver and treat your solution like our own'),(151321,4311,'_flexible_templates_7_list_section_1_list_1_copy','field_62bb2a0462eb9'),(151322,4311,'flexible_templates_7_list_section_1_list_2_copy','Translucent application development and application modernization reduces cost'),(151323,4311,'_flexible_templates_7_list_section_1_list_2_copy','field_62bb2a0462eb9'),(151324,4311,'flexible_templates_7_list_section_1_list_3_copy','Automation of the employee and customer experience saves money and makes money'),(151325,4311,'_flexible_templates_7_list_section_1_list_3_copy','field_62bb2a0462eb9'),(151326,4311,'flexible_templates_7_list_section_1_list','4'),(151327,4311,'_flexible_templates_7_list_section_1_list','field_62bb29bd62eb8'),(151328,4311,'flexible_templates_7_list_section_2_list_0_copy','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(151329,4311,'_flexible_templates_7_list_section_2_list_0_copy','field_62bb2a0462eb9'),(151330,4311,'flexible_templates_7_list_section_2_list_1_copy','Increase profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(151331,4311,'_flexible_templates_7_list_section_2_list_1_copy','field_62bb2a0462eb9'),(151332,4311,'flexible_templates_7_list_section_2_list','2'),(151333,4311,'_flexible_templates_7_list_section_2_list','field_62bb29bd62eb8'),(151334,4311,'flexible_templates_7_list_section','3'),(151335,4311,'_flexible_templates_7_list_section','field_62bb29b362eb7'),(151336,4311,'flexible_templates_8_copy','Translucent cloud native data driven application development.
It’s how your client’s do business!'),(151337,4311,'_flexible_templates_8_copy','field_62bb2a7262ebb_field_6254fdc0efa29'),(151338,4311,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:11:\"Let\'s talk!\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(151339,4311,'_flexible_templates_8_cta','field_62bb2a8962ebc_field_62551b3e101c4'),(151343,4312,'_wp_attached_file','2022/06/mobile-scroll.png'),(151344,4312,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1236;s:6:\"height\";i:545;s:4:\"file\";s:25:\"2022/06/mobile-scroll.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"mobile-scroll-300x132.png\";s:5:\"width\";i:300;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"mobile-scroll-1024x452.png\";s:5:\"width\";i:1024;s:6:\"height\";i:452;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"mobile-scroll-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:25:\"mobile-scroll-768x339.png\";s:5:\"width\";i:768;s:6:\"height\";i:339;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:25:\"mobile-scroll-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(151345,4312,'_imagify_optimization_level','0'),(151346,4312,'_imagify_status','error'),(151347,4312,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(151358,4315,'_wp_attached_file','2022/06/sroll-l.png'),(151359,4315,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:19:\"2022/06/sroll-l.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(151360,4315,'_imagify_optimization_level','0'),(151361,4315,'_imagify_status','error'),(151362,4315,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(151363,4316,'_wp_attached_file','2022/06/scroll-right.png'),(151364,4316,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:24:\"2022/06/scroll-right.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(151365,4316,'_imagify_optimization_level','0'),(151366,4316,'_imagify_status','error'),(151367,4316,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(151374,4319,'_pinterest_shares','0'),(151375,4319,'_total_shares','0'),(151377,4244,'_pinterest_shares','0'),(151378,4244,'_total_shares','0'),(151380,4245,'_pinterest_shares','0'),(151381,4245,'_total_shares','0'),(151383,4246,'_pinterest_shares','0'),(151384,4246,'_total_shares','0'),(151392,4320,'_wp_attached_file','2022/06/mobil-baner-app-1.png'),(151393,4320,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:390;s:6:\"height\";i:294;s:4:\"file\";s:29:\"2022/06/mobil-baner-app-1.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"mobil-baner-app-1-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"mobil-baner-app-1-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:{}}}'),(151394,4320,'_imagify_optimization_level','0'),(151395,4320,'_imagify_status','error'),(151396,4320,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(151397,4242,'flexible_templates_0_mob_image','4320'),(151398,4242,'_flexible_templates_0_mob_image','field_62bc5c91b8f13_field_6254fdcbefa2b'),(151399,4321,'flexible_templates','a:9:{i:0;s:31:\"cloud_native_application_banner\";i:1;s:50:\"cloud_native_application_building_new_applications\";i:2;s:47:\"cloud_native_application_rebuild_and_replatform\";i:3;s:40:\"cloud_native_application_fullwidth_image\";i:4;s:49:\"cloud_native_application_build_rebuild_replatform\";i:5;s:35:\"cloud_native_applications_solutions\";i:6;s:40:\"cloud_native_application_fullwidth_image\";i:7;s:47:\"cloud_native_applications_the_translucent_value\";i:8;s:40:\"cloud_native_application_copy_and_button\";}'),(151400,4321,'_flexible_templates','field_6254f4d84ef9b'),(151401,4321,'flexible_templates_0_image','4238'),(151402,4321,'_flexible_templates_0_image','field_62bb17034467a_field_62552ada52711_field_6254fdc5efa2a'),(151403,4321,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(151404,4321,'_flexible_templates_0_sub_heading','field_62bb173b4467b_field_6255097642ef4_field_6254fdbaefa28'),(151405,4321,'flexible_templates_0_heading','Cloud Native Application Development'),(151406,4321,'_flexible_templates_0_heading','field_62bb17614467c_field_62551ac3a6f96_field_6254fdb2efa27'),(151407,4321,'flexible_templates_0_copy','In modern application development you have three choices: Build | Rebuild | Replatform'),(151408,4321,'_flexible_templates_0_copy','field_62bb17874467d_field_62551b74a6f99_field_6254fdc0efa29'),(151409,4321,'flexible_templates_1_sub_heading','BUILDING NEW APPLICATIONS'),(151410,4321,'_flexible_templates_1_sub_heading','field_62bb1c9962e8a_field_6254fdbaefa28'),(151411,4321,'flexible_templates_1_heading','What is Building?'),(151412,4321,'_flexible_templates_1_heading','field_62bb1c9f62e8b_field_6254fdb2efa27'),(151413,4321,'flexible_templates_1_copy_wysiwyg','

Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.

\r\n

The foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.
Unleashing the true power of your organization in the 4th industrial revolution.

'),(151414,4321,'_flexible_templates_1_copy_wysiwyg','field_62bb1cb462e8c_field_6255310ecf4de'),(151415,4321,'flexible_templates_1_image','4291'),(151416,4321,'_flexible_templates_1_image','field_62bb1cf662e8d_field_6254fdc5efa2a'),(151417,4321,'flexible_templates_1_testimonial_section_0_icon',''),(151418,4321,'_flexible_templates_1_testimonial_section_0_icon','field_62bb25696c318'),(151419,4321,'flexible_templates_1_testimonial_section_0_heading','Building GoTo Loans Platform from a Vision:'),(151420,4321,'_flexible_templates_1_testimonial_section_0_heading','field_62bb25736c319'),(151421,4321,'flexible_templates_1_testimonial_section_0_copy','Integrating banking, automotive, loan, mechanic and customer workflow data making the complex almost seem like magic. Keep up the great work!'),(151422,4321,'_flexible_templates_1_testimonial_section_0_copy','field_62bb25786c31a'),(151423,4321,'flexible_templates_1_testimonial_section_0_name','Eric Kaplan'),(151424,4321,'_flexible_templates_1_testimonial_section_0_name','field_62bb260117e59'),(151425,4321,'flexible_templates_1_testimonial_section_0_designation','COO - GoTo Loans'),(151426,4321,'_flexible_templates_1_testimonial_section_0_designation','field_62bb260c17e5a'),(151427,4321,'flexible_templates_1_testimonial_section','1'),(151428,4321,'_flexible_templates_1_testimonial_section','field_62bb1d7162e8f_field_62bb251c6c317'),(151429,4321,'flexible_templates_2_sub_heading','REBUILD & REPLATAFORM'),(151430,4321,'_flexible_templates_2_sub_heading','field_62bb1e2962e94_field_6254fdbaefa28'),(151431,4321,'flexible_templates_2_heading','What is the best application modernization
choice for my company?'),(151432,4321,'_flexible_templates_2_heading','field_62bb1e3b62e95_field_6254fdb2efa27'),(151433,4321,'flexible_templates_2_copy_wysiwyg','Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.\r\nYou have two application modernization choices when upgrading: Rebuilding or Replatforming'),(151434,4321,'_flexible_templates_2_copy_wysiwyg','field_62bb44696be57_field_6255310ecf4de'),(151435,4321,'flexible_templates_2_build_and_platform_section_0_heading','What is Rebuild'),(151436,4321,'_flexible_templates_2_build_and_platform_section_0_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(151437,4321,'flexible_templates_2_build_and_platform_section_0_image','4293'),(151438,4321,'_flexible_templates_2_build_and_platform_section_0_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(151439,4321,'flexible_templates_2_build_and_platform_section_0_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(151440,4321,'_flexible_templates_2_build_and_platform_section_0_copy','field_62bb1f8662e99_field_625525b15629c'),(151441,4321,'flexible_templates_2_build_and_platform_section_1_heading','What is Replatform'),(151442,4321,'_flexible_templates_2_build_and_platform_section_1_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(151443,4321,'flexible_templates_2_build_and_platform_section_1_image','4294'),(151444,4321,'_flexible_templates_2_build_and_platform_section_1_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(151445,4321,'flexible_templates_2_build_and_platform_section_1_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(151446,4321,'_flexible_templates_2_build_and_platform_section_1_copy','field_62bb1f8662e99_field_625525b15629c'),(151447,4321,'flexible_templates_2_build_and_platform_section','2'),(151448,4321,'_flexible_templates_2_build_and_platform_section','field_62bb1eeb62e96'),(151449,4321,'flexible_templates_2_testimonial_section_0_icon','4295'),(151450,4321,'_flexible_templates_2_testimonial_section_0_icon','field_62bb25696c318'),(151451,4321,'flexible_templates_2_testimonial_section_0_heading','Rebuilding CIMS Platform at SickKids Hospital:'),(151452,4321,'_flexible_templates_2_testimonial_section_0_heading','field_62bb25736c319'),(151453,4321,'flexible_templates_2_testimonial_section_0_copy','I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.'),(151454,4321,'_flexible_templates_2_testimonial_section_0_copy','field_62bb25786c31a'),(151455,4321,'flexible_templates_2_testimonial_section_0_name','Andrew James'),(151456,4321,'_flexible_templates_2_testimonial_section_0_name','field_62bb260117e59'),(151457,4321,'flexible_templates_2_testimonial_section_0_designation','The Hospital for Sick Children'),(151458,4321,'_flexible_templates_2_testimonial_section_0_designation','field_62bb260c17e5a'),(151459,4321,'flexible_templates_2_testimonial_section','1'),(151460,4321,'_flexible_templates_2_testimonial_section','field_62bb1fc662e9a_field_62bb251c6c317'),(151461,4321,'flexible_templates_3_image','4301'),(151462,4321,'_flexible_templates_3_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(151463,4321,'flexible_templates_4_sub_heading','BUILD - REBUILD - REPLATAFORM'),(151464,4321,'_flexible_templates_4_sub_heading','field_62bb20b262ea1_field_6254fdbaefa28'),(151465,4321,'flexible_templates_4_heading','Keeping you competitive now and built for the
future.'),(151466,4321,'_flexible_templates_4_heading','field_62bb20b862ea2_field_6254fdb2efa27'),(151467,4321,'flexible_templates_4_copy','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world. Making you very competitive, especially in the current market conditions.'),(151468,4321,'_flexible_templates_4_copy','field_62bb20bd62ea3_field_6254fdc0efa29'),(151469,4321,'flexible_templates_4_table_0_text','Strategy'),(151470,4321,'_flexible_templates_4_table_0_text','field_62bb212762ea5'),(151471,4321,'flexible_templates_4_table_1_text','Automated Customer Experience'),(151472,4321,'_flexible_templates_4_table_1_text','field_62bb212762ea5'),(151473,4321,'flexible_templates_4_table_2_text','Critical System 1st Approach'),(151474,4321,'_flexible_templates_4_table_2_text','field_62bb212762ea5'),(151475,4321,'flexible_templates_4_table_3_text','Scalability'),(151476,4321,'_flexible_templates_4_table_3_text','field_62bb212762ea5'),(151477,4321,'flexible_templates_4_table_4_text','API 1st Design'),(151478,4321,'_flexible_templates_4_table_4_text','field_62bb212762ea5'),(151479,4321,'flexible_templates_4_table_5_text','Secure Transactions'),(151480,4321,'_flexible_templates_4_table_5_text','field_62bb212762ea5'),(151481,4321,'flexible_templates_4_table_6_text','Revenue Driving Data Insights'),(151482,4321,'_flexible_templates_4_table_6_text','field_62bb212762ea5'),(151483,4321,'flexible_templates_4_table_7_text','Faster to Market'),(151484,4321,'_flexible_templates_4_table_7_text','field_62bb212762ea5'),(151485,4321,'flexible_templates_4_table_8_text','APM'),(151486,4321,'_flexible_templates_4_table_8_text','field_62bb212762ea5'),(151487,4321,'flexible_templates_4_table_9_text','Responsive Design'),(151488,4321,'_flexible_templates_4_table_9_text','field_62bb212762ea5'),(151489,4321,'flexible_templates_4_table_10_text','Open for Business 24/7'),(151490,4321,'_flexible_templates_4_table_10_text','field_62bb212762ea5'),(151491,4321,'flexible_templates_4_table','11'),(151492,4321,'_flexible_templates_4_table','field_62bb211762ea4'),(151493,4321,'flexible_templates_4_testimonial_section_0_icon',''),(151494,4321,'_flexible_templates_4_testimonial_section_0_icon','field_62bb25696c318'),(151495,4321,'flexible_templates_4_testimonial_section_0_heading',''),(151496,4321,'_flexible_templates_4_testimonial_section_0_heading','field_62bb25736c319'),(151497,4321,'flexible_templates_4_testimonial_section_0_copy','Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.'),(151498,4321,'_flexible_templates_4_testimonial_section_0_copy','field_62bb25786c31a'),(151499,4321,'flexible_templates_4_testimonial_section_0_name','Bradford A. M. Sankar'),(151500,4321,'_flexible_templates_4_testimonial_section_0_name','field_62bb260117e59'),(151501,4321,'flexible_templates_4_testimonial_section_0_designation','COO - Translucent Computing'),(151502,4321,'_flexible_templates_4_testimonial_section_0_designation','field_62bb260c17e5a'),(151503,4321,'flexible_templates_4_testimonial_section','1'),(151504,4321,'_flexible_templates_4_testimonial_section','field_62bb214c62ea6_field_62bb251c6c317'),(151505,4321,'flexible_templates_4_left_image','4303'),(151506,4321,'_flexible_templates_4_left_image','field_62bb21e962eaa'),(151507,4321,'flexible_templates_4_middle_copy','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(151508,4321,'_flexible_templates_4_middle_copy','field_62bb21f462eab'),(151509,4321,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:23:\"Book a consultation now\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(151510,4321,'_flexible_templates_4_cta','field_62bb220b62eac_field_62551b3e101c4'),(151511,4321,'flexible_templates_5_sub_heading','CLOUD NATIVE APPLICATIONS SOLUTIONS:'),(151512,4321,'_flexible_templates_5_sub_heading','field_62bb224b62eae_field_6254fdbaefa28'),(151513,4321,'flexible_templates_5_heading','Is your company competitive in today’s landscape?'),(151514,4321,'_flexible_templates_5_heading','field_62bb226062eaf_field_6254fdb2efa27'),(151515,4321,'flexible_templates_5_left_section_0_text','Application Development Build | Rebuild | Replatform'),(151516,4321,'_flexible_templates_5_left_section_0_text','field_62bb28b062eb1'),(151517,4321,'flexible_templates_5_left_section_1_text','Customer experience workflow automation'),(151518,4321,'_flexible_templates_5_left_section_1_text','field_62bb28b062eb1'),(151519,4321,'flexible_templates_5_left_section_2_text','Application Performance Metrics (APM)'),(151520,4321,'_flexible_templates_5_left_section_2_text','field_62bb28b062eb1'),(151521,4321,'flexible_templates_5_left_section_3_text','API 1st Design'),(151522,4321,'_flexible_templates_5_left_section_3_text','field_62bb28b062eb1'),(151523,4321,'flexible_templates_5_left_section_4_text','Mobile 1st design'),(151524,4321,'_flexible_templates_5_left_section_4_text','field_62bb28b062eb1'),(151525,4321,'flexible_templates_5_left_section_5_text','Responsive Design All Devices'),(151526,4321,'_flexible_templates_5_left_section_5_text','field_62bb28b062eb1'),(151527,4321,'flexible_templates_5_left_section_6_text','Open for business 24/7'),(151528,4321,'_flexible_templates_5_left_section_6_text','field_62bb28b062eb1'),(151529,4321,'flexible_templates_5_left_section','7'),(151530,4321,'_flexible_templates_5_left_section','field_62bb28a762eb0'),(151531,4321,'flexible_templates_5_right_section_0_text','Microservices – Distributed Architecture'),(151532,4321,'_flexible_templates_5_right_section_0_text','field_62bb28be62eb3'),(151533,4321,'flexible_templates_5_right_section_1_text','Secure Transactions – DevSecOps'),(151534,4321,'_flexible_templates_5_right_section_1_text','field_62bb28be62eb3'),(151535,4321,'flexible_templates_5_right_section_2_text','Kubernetes Certified Service Provider'),(151536,4321,'_flexible_templates_5_right_section_2_text','field_62bb28be62eb3'),(151537,4321,'flexible_templates_5_right_section_3_text','Multi-cloud Solutions – GCP – AWS – Azure'),(151538,4321,'_flexible_templates_5_right_section_3_text','field_62bb28be62eb3'),(151539,4321,'flexible_templates_5_right_section_4_text','Critical System 1st Approach'),(151540,4321,'_flexible_templates_5_right_section_4_text','field_62bb28be62eb3'),(151541,4321,'flexible_templates_5_right_section_5_text','API Economy – 3rd Party partnerships'),(151542,4321,'_flexible_templates_5_right_section_5_text','field_62bb28be62eb3'),(151543,4321,'flexible_templates_5_right_section_6_text','Return on Investment 1st driven planning'),(151544,4321,'_flexible_templates_5_right_section_6_text','field_62bb28be62eb3'),(151545,4321,'flexible_templates_5_right_section','7'),(151546,4321,'_flexible_templates_5_right_section','field_62bb28be62eb2'),(151547,4321,'flexible_templates_6_image','4219'),(151548,4321,'_flexible_templates_6_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(151549,4321,'flexible_templates_7_sub_heading','THE TRANSLUCENT VALUE'),(151550,4321,'_flexible_templates_7_sub_heading','field_62bb293062eb5_field_6254fdbaefa28'),(151551,4321,'flexible_templates_7_heading','What does cloud native data driven application
modernization
mean for your business?'),(151552,4321,'_flexible_templates_7_heading','field_62bb295b62eb6_field_6254fdb2efa27'),(151553,4321,'flexible_templates_7_list_section_0_list_0_copy','We learn about what makes your business and physical operations valuable to your clients and modernize that.'),(151554,4321,'_flexible_templates_7_list_section_0_list_0_copy','field_62bb2a0462eb9'),(151555,4321,'flexible_templates_7_list_section_0_list_1_copy','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions.'),(151556,4321,'_flexible_templates_7_list_section_0_list_1_copy','field_62bb2a0462eb9'),(151557,4321,'flexible_templates_7_list_section_0_list_2_copy','Data Driven Decisions give you the ability to fine-tune your products and services based on historical patterns providing the best ROI.'),(151558,4321,'_flexible_templates_7_list_section_0_list_2_copy','field_62bb2a0462eb9'),(151559,4321,'flexible_templates_7_list_section_0_list','3'),(151560,4321,'_flexible_templates_7_list_section_0_list','field_62bb29bd62eb8'),(151561,4321,'flexible_templates_7_list_section_1_list_0_copy','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(151562,4321,'_flexible_templates_7_list_section_1_list_0_copy','field_62bb2a0462eb9'),(151563,4321,'flexible_templates_7_list_section_1_list_1_copy','We go above and beyond to deliver and treat your solution like our own'),(151564,4321,'_flexible_templates_7_list_section_1_list_1_copy','field_62bb2a0462eb9'),(151565,4321,'flexible_templates_7_list_section_1_list_2_copy','Translucent application development and application modernization reduces cost'),(151566,4321,'_flexible_templates_7_list_section_1_list_2_copy','field_62bb2a0462eb9'),(151567,4321,'flexible_templates_7_list_section_1_list_3_copy','Automation of the employee and customer experience saves money and makes money'),(151568,4321,'_flexible_templates_7_list_section_1_list_3_copy','field_62bb2a0462eb9'),(151569,4321,'flexible_templates_7_list_section_1_list','4'),(151570,4321,'_flexible_templates_7_list_section_1_list','field_62bb29bd62eb8'),(151571,4321,'flexible_templates_7_list_section_2_list_0_copy','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(151572,4321,'_flexible_templates_7_list_section_2_list_0_copy','field_62bb2a0462eb9'),(151573,4321,'flexible_templates_7_list_section_2_list_1_copy','Increase profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(151574,4321,'_flexible_templates_7_list_section_2_list_1_copy','field_62bb2a0462eb9'),(151575,4321,'flexible_templates_7_list_section_2_list','2'),(151576,4321,'_flexible_templates_7_list_section_2_list','field_62bb29bd62eb8'),(151577,4321,'flexible_templates_7_list_section','3'),(151578,4321,'_flexible_templates_7_list_section','field_62bb29b362eb7'),(151579,4321,'flexible_templates_8_copy','Translucent cloud native data driven application development.
It’s how your client’s do business!'),(151580,4321,'_flexible_templates_8_copy','field_62bb2a7262ebb_field_6254fdc0efa29'),(151581,4321,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:11:\"Let\'s talk!\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(151582,4321,'_flexible_templates_8_cta','field_62bb2a8962ebc_field_62551b3e101c4'),(151583,4321,'flexible_templates_0_mob_image','4320'),(151584,4321,'_flexible_templates_0_mob_image','field_62bc5c91b8f13_field_6254fdcbefa2b'),(151588,4322,'_pinterest_shares','0'),(151589,4322,'_total_shares','0'),(151597,4242,'flexible_templates_3_mob_image','4312'),(151598,4242,'_flexible_templates_3_mob_image','field_62bc5fba29a08_field_6254fdcbefa2b'),(151599,4242,'flexible_templates_6_mob_image',''),(151600,4242,'_flexible_templates_6_mob_image','field_62bc5fba29a08_field_6254fdcbefa2b'),(151601,4323,'flexible_templates','a:9:{i:0;s:31:\"cloud_native_application_banner\";i:1;s:50:\"cloud_native_application_building_new_applications\";i:2;s:47:\"cloud_native_application_rebuild_and_replatform\";i:3;s:40:\"cloud_native_application_fullwidth_image\";i:4;s:49:\"cloud_native_application_build_rebuild_replatform\";i:5;s:35:\"cloud_native_applications_solutions\";i:6;s:40:\"cloud_native_application_fullwidth_image\";i:7;s:47:\"cloud_native_applications_the_translucent_value\";i:8;s:40:\"cloud_native_application_copy_and_button\";}'),(151602,4323,'_flexible_templates','field_6254f4d84ef9b'),(151603,4323,'flexible_templates_0_image','4238'),(151604,4323,'_flexible_templates_0_image','field_62bb17034467a_field_62552ada52711_field_6254fdc5efa2a'),(151605,4323,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(151606,4323,'_flexible_templates_0_sub_heading','field_62bb173b4467b_field_6255097642ef4_field_6254fdbaefa28'),(151607,4323,'flexible_templates_0_heading','Cloud Native Application Development'),(151608,4323,'_flexible_templates_0_heading','field_62bb17614467c_field_62551ac3a6f96_field_6254fdb2efa27'),(151609,4323,'flexible_templates_0_copy','In modern application development you have three choices: Build | Rebuild | Replatform'),(151610,4323,'_flexible_templates_0_copy','field_62bb17874467d_field_62551b74a6f99_field_6254fdc0efa29'),(151611,4323,'flexible_templates_1_sub_heading','BUILDING NEW APPLICATIONS'),(151612,4323,'_flexible_templates_1_sub_heading','field_62bb1c9962e8a_field_6254fdbaefa28'),(151613,4323,'flexible_templates_1_heading','What is Building?'),(151614,4323,'_flexible_templates_1_heading','field_62bb1c9f62e8b_field_6254fdb2efa27'),(151615,4323,'flexible_templates_1_copy_wysiwyg','

Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.

\r\n

The foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.
Unleashing the true power of your organization in the 4th industrial revolution.

'),(151616,4323,'_flexible_templates_1_copy_wysiwyg','field_62bb1cb462e8c_field_6255310ecf4de'),(151617,4323,'flexible_templates_1_image','4291'),(151618,4323,'_flexible_templates_1_image','field_62bb1cf662e8d_field_6254fdc5efa2a'),(151619,4323,'flexible_templates_1_testimonial_section_0_icon',''),(151620,4323,'_flexible_templates_1_testimonial_section_0_icon','field_62bb25696c318'),(151621,4323,'flexible_templates_1_testimonial_section_0_heading','Building GoTo Loans Platform from a Vision:'),(151622,4323,'_flexible_templates_1_testimonial_section_0_heading','field_62bb25736c319'),(151623,4323,'flexible_templates_1_testimonial_section_0_copy','Integrating banking, automotive, loan, mechanic and customer workflow data making the complex almost seem like magic. Keep up the great work!'),(151624,4323,'_flexible_templates_1_testimonial_section_0_copy','field_62bb25786c31a'),(151625,4323,'flexible_templates_1_testimonial_section_0_name','Eric Kaplan'),(151626,4323,'_flexible_templates_1_testimonial_section_0_name','field_62bb260117e59'),(151627,4323,'flexible_templates_1_testimonial_section_0_designation','COO - GoTo Loans'),(151628,4323,'_flexible_templates_1_testimonial_section_0_designation','field_62bb260c17e5a'),(151629,4323,'flexible_templates_1_testimonial_section','1'),(151630,4323,'_flexible_templates_1_testimonial_section','field_62bb1d7162e8f_field_62bb251c6c317'),(151631,4323,'flexible_templates_2_sub_heading','REBUILD & REPLATAFORM'),(151632,4323,'_flexible_templates_2_sub_heading','field_62bb1e2962e94_field_6254fdbaefa28'),(151633,4323,'flexible_templates_2_heading','What is the best application modernization
choice for my company?'),(151634,4323,'_flexible_templates_2_heading','field_62bb1e3b62e95_field_6254fdb2efa27'),(151635,4323,'flexible_templates_2_copy_wysiwyg','Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.\r\nYou have two application modernization choices when upgrading: Rebuilding or Replatforming'),(151636,4323,'_flexible_templates_2_copy_wysiwyg','field_62bb44696be57_field_6255310ecf4de'),(151637,4323,'flexible_templates_2_build_and_platform_section_0_heading','What is Rebuild'),(151638,4323,'_flexible_templates_2_build_and_platform_section_0_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(151639,4323,'flexible_templates_2_build_and_platform_section_0_image','4293'),(151640,4323,'_flexible_templates_2_build_and_platform_section_0_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(151641,4323,'flexible_templates_2_build_and_platform_section_0_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(151642,4323,'_flexible_templates_2_build_and_platform_section_0_copy','field_62bb1f8662e99_field_625525b15629c'),(151643,4323,'flexible_templates_2_build_and_platform_section_1_heading','What is Replatform'),(151644,4323,'_flexible_templates_2_build_and_platform_section_1_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(151645,4323,'flexible_templates_2_build_and_platform_section_1_image','4294'),(151646,4323,'_flexible_templates_2_build_and_platform_section_1_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(151647,4323,'flexible_templates_2_build_and_platform_section_1_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(151648,4323,'_flexible_templates_2_build_and_platform_section_1_copy','field_62bb1f8662e99_field_625525b15629c'),(151649,4323,'flexible_templates_2_build_and_platform_section','2'),(151650,4323,'_flexible_templates_2_build_and_platform_section','field_62bb1eeb62e96'),(151651,4323,'flexible_templates_2_testimonial_section_0_icon','4295'),(151652,4323,'_flexible_templates_2_testimonial_section_0_icon','field_62bb25696c318'),(151653,4323,'flexible_templates_2_testimonial_section_0_heading','Rebuilding CIMS Platform at SickKids Hospital:'),(151654,4323,'_flexible_templates_2_testimonial_section_0_heading','field_62bb25736c319'),(151655,4323,'flexible_templates_2_testimonial_section_0_copy','I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.'),(151656,4323,'_flexible_templates_2_testimonial_section_0_copy','field_62bb25786c31a'),(151657,4323,'flexible_templates_2_testimonial_section_0_name','Andrew James'),(151658,4323,'_flexible_templates_2_testimonial_section_0_name','field_62bb260117e59'),(151659,4323,'flexible_templates_2_testimonial_section_0_designation','The Hospital for Sick Children'),(151660,4323,'_flexible_templates_2_testimonial_section_0_designation','field_62bb260c17e5a'),(151661,4323,'flexible_templates_2_testimonial_section','1'),(151662,4323,'_flexible_templates_2_testimonial_section','field_62bb1fc662e9a_field_62bb251c6c317'),(151663,4323,'flexible_templates_3_image','4301'),(151664,4323,'_flexible_templates_3_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(151665,4323,'flexible_templates_4_sub_heading','BUILD - REBUILD - REPLATAFORM'),(151666,4323,'_flexible_templates_4_sub_heading','field_62bb20b262ea1_field_6254fdbaefa28'),(151667,4323,'flexible_templates_4_heading','Keeping you competitive now and built for the
future.'),(151668,4323,'_flexible_templates_4_heading','field_62bb20b862ea2_field_6254fdb2efa27'),(151669,4323,'flexible_templates_4_copy','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world. Making you very competitive, especially in the current market conditions.'),(151670,4323,'_flexible_templates_4_copy','field_62bb20bd62ea3_field_6254fdc0efa29'),(151671,4323,'flexible_templates_4_table_0_text','Strategy'),(151672,4323,'_flexible_templates_4_table_0_text','field_62bb212762ea5'),(151673,4323,'flexible_templates_4_table_1_text','Automated Customer Experience'),(151674,4323,'_flexible_templates_4_table_1_text','field_62bb212762ea5'),(151675,4323,'flexible_templates_4_table_2_text','Critical System 1st Approach'),(151676,4323,'_flexible_templates_4_table_2_text','field_62bb212762ea5'),(151677,4323,'flexible_templates_4_table_3_text','Scalability'),(151678,4323,'_flexible_templates_4_table_3_text','field_62bb212762ea5'),(151679,4323,'flexible_templates_4_table_4_text','API 1st Design'),(151680,4323,'_flexible_templates_4_table_4_text','field_62bb212762ea5'),(151681,4323,'flexible_templates_4_table_5_text','Secure Transactions'),(151682,4323,'_flexible_templates_4_table_5_text','field_62bb212762ea5'),(151683,4323,'flexible_templates_4_table_6_text','Revenue Driving Data Insights'),(151684,4323,'_flexible_templates_4_table_6_text','field_62bb212762ea5'),(151685,4323,'flexible_templates_4_table_7_text','Faster to Market'),(151686,4323,'_flexible_templates_4_table_7_text','field_62bb212762ea5'),(151687,4323,'flexible_templates_4_table_8_text','APM'),(151688,4323,'_flexible_templates_4_table_8_text','field_62bb212762ea5'),(151689,4323,'flexible_templates_4_table_9_text','Responsive Design'),(151690,4323,'_flexible_templates_4_table_9_text','field_62bb212762ea5'),(151691,4323,'flexible_templates_4_table_10_text','Open for Business 24/7'),(151692,4323,'_flexible_templates_4_table_10_text','field_62bb212762ea5'),(151693,4323,'flexible_templates_4_table','11'),(151694,4323,'_flexible_templates_4_table','field_62bb211762ea4'),(151695,4323,'flexible_templates_4_testimonial_section_0_icon',''),(151696,4323,'_flexible_templates_4_testimonial_section_0_icon','field_62bb25696c318'),(151697,4323,'flexible_templates_4_testimonial_section_0_heading',''),(151698,4323,'_flexible_templates_4_testimonial_section_0_heading','field_62bb25736c319'),(151699,4323,'flexible_templates_4_testimonial_section_0_copy','Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.'),(151700,4323,'_flexible_templates_4_testimonial_section_0_copy','field_62bb25786c31a'),(151701,4323,'flexible_templates_4_testimonial_section_0_name','Bradford A. M. Sankar'),(151702,4323,'_flexible_templates_4_testimonial_section_0_name','field_62bb260117e59'),(151703,4323,'flexible_templates_4_testimonial_section_0_designation','COO - Translucent Computing'),(151704,4323,'_flexible_templates_4_testimonial_section_0_designation','field_62bb260c17e5a'),(151705,4323,'flexible_templates_4_testimonial_section','1'),(151706,4323,'_flexible_templates_4_testimonial_section','field_62bb214c62ea6_field_62bb251c6c317'),(151707,4323,'flexible_templates_4_left_image','4303'),(151708,4323,'_flexible_templates_4_left_image','field_62bb21e962eaa'),(151709,4323,'flexible_templates_4_middle_copy','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(151710,4323,'_flexible_templates_4_middle_copy','field_62bb21f462eab'),(151711,4323,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:23:\"Book a consultation now\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(151712,4323,'_flexible_templates_4_cta','field_62bb220b62eac_field_62551b3e101c4'),(151713,4323,'flexible_templates_5_sub_heading','CLOUD NATIVE APPLICATIONS SOLUTIONS:'),(151714,4323,'_flexible_templates_5_sub_heading','field_62bb224b62eae_field_6254fdbaefa28'),(151715,4323,'flexible_templates_5_heading','Is your company competitive in today’s landscape?'),(151716,4323,'_flexible_templates_5_heading','field_62bb226062eaf_field_6254fdb2efa27'),(151717,4323,'flexible_templates_5_left_section_0_text','Application Development Build | Rebuild | Replatform'),(151718,4323,'_flexible_templates_5_left_section_0_text','field_62bb28b062eb1'),(151719,4323,'flexible_templates_5_left_section_1_text','Customer experience workflow automation'),(151720,4323,'_flexible_templates_5_left_section_1_text','field_62bb28b062eb1'),(151721,4323,'flexible_templates_5_left_section_2_text','Application Performance Metrics (APM)'),(151722,4323,'_flexible_templates_5_left_section_2_text','field_62bb28b062eb1'),(151723,4323,'flexible_templates_5_left_section_3_text','API 1st Design'),(151724,4323,'_flexible_templates_5_left_section_3_text','field_62bb28b062eb1'),(151725,4323,'flexible_templates_5_left_section_4_text','Mobile 1st design'),(151726,4323,'_flexible_templates_5_left_section_4_text','field_62bb28b062eb1'),(151727,4323,'flexible_templates_5_left_section_5_text','Responsive Design All Devices'),(151728,4323,'_flexible_templates_5_left_section_5_text','field_62bb28b062eb1'),(151729,4323,'flexible_templates_5_left_section_6_text','Open for business 24/7'),(151730,4323,'_flexible_templates_5_left_section_6_text','field_62bb28b062eb1'),(151731,4323,'flexible_templates_5_left_section','7'),(151732,4323,'_flexible_templates_5_left_section','field_62bb28a762eb0'),(151733,4323,'flexible_templates_5_right_section_0_text','Microservices – Distributed Architecture'),(151734,4323,'_flexible_templates_5_right_section_0_text','field_62bb28be62eb3'),(151735,4323,'flexible_templates_5_right_section_1_text','Secure Transactions – DevSecOps'),(151736,4323,'_flexible_templates_5_right_section_1_text','field_62bb28be62eb3'),(151737,4323,'flexible_templates_5_right_section_2_text','Kubernetes Certified Service Provider'),(151738,4323,'_flexible_templates_5_right_section_2_text','field_62bb28be62eb3'),(151739,4323,'flexible_templates_5_right_section_3_text','Multi-cloud Solutions – GCP – AWS – Azure'),(151740,4323,'_flexible_templates_5_right_section_3_text','field_62bb28be62eb3'),(151741,4323,'flexible_templates_5_right_section_4_text','Critical System 1st Approach'),(151742,4323,'_flexible_templates_5_right_section_4_text','field_62bb28be62eb3'),(151743,4323,'flexible_templates_5_right_section_5_text','API Economy – 3rd Party partnerships'),(151744,4323,'_flexible_templates_5_right_section_5_text','field_62bb28be62eb3'),(151745,4323,'flexible_templates_5_right_section_6_text','Return on Investment 1st driven planning'),(151746,4323,'_flexible_templates_5_right_section_6_text','field_62bb28be62eb3'),(151747,4323,'flexible_templates_5_right_section','7'),(151748,4323,'_flexible_templates_5_right_section','field_62bb28be62eb2'),(151749,4323,'flexible_templates_6_image','4219'),(151750,4323,'_flexible_templates_6_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(151751,4323,'flexible_templates_7_sub_heading','THE TRANSLUCENT VALUE'),(151752,4323,'_flexible_templates_7_sub_heading','field_62bb293062eb5_field_6254fdbaefa28'),(151753,4323,'flexible_templates_7_heading','What does cloud native data driven application
modernization
mean for your business?'),(151754,4323,'_flexible_templates_7_heading','field_62bb295b62eb6_field_6254fdb2efa27'),(151755,4323,'flexible_templates_7_list_section_0_list_0_copy','We learn about what makes your business and physical operations valuable to your clients and modernize that.'),(151756,4323,'_flexible_templates_7_list_section_0_list_0_copy','field_62bb2a0462eb9'),(151757,4323,'flexible_templates_7_list_section_0_list_1_copy','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions.'),(151758,4323,'_flexible_templates_7_list_section_0_list_1_copy','field_62bb2a0462eb9'),(151759,4323,'flexible_templates_7_list_section_0_list_2_copy','Data Driven Decisions give you the ability to fine-tune your products and services based on historical patterns providing the best ROI.'),(151760,4323,'_flexible_templates_7_list_section_0_list_2_copy','field_62bb2a0462eb9'),(151761,4323,'flexible_templates_7_list_section_0_list','3'),(151762,4323,'_flexible_templates_7_list_section_0_list','field_62bb29bd62eb8'),(151763,4323,'flexible_templates_7_list_section_1_list_0_copy','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(151764,4323,'_flexible_templates_7_list_section_1_list_0_copy','field_62bb2a0462eb9'),(151765,4323,'flexible_templates_7_list_section_1_list_1_copy','We go above and beyond to deliver and treat your solution like our own'),(151766,4323,'_flexible_templates_7_list_section_1_list_1_copy','field_62bb2a0462eb9'),(151767,4323,'flexible_templates_7_list_section_1_list_2_copy','Translucent application development and application modernization reduces cost'),(151768,4323,'_flexible_templates_7_list_section_1_list_2_copy','field_62bb2a0462eb9'),(151769,4323,'flexible_templates_7_list_section_1_list_3_copy','Automation of the employee and customer experience saves money and makes money'),(151770,4323,'_flexible_templates_7_list_section_1_list_3_copy','field_62bb2a0462eb9'),(151771,4323,'flexible_templates_7_list_section_1_list','4'),(151772,4323,'_flexible_templates_7_list_section_1_list','field_62bb29bd62eb8'),(151773,4323,'flexible_templates_7_list_section_2_list_0_copy','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(151774,4323,'_flexible_templates_7_list_section_2_list_0_copy','field_62bb2a0462eb9'),(151775,4323,'flexible_templates_7_list_section_2_list_1_copy','Increase profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(151776,4323,'_flexible_templates_7_list_section_2_list_1_copy','field_62bb2a0462eb9'),(151777,4323,'flexible_templates_7_list_section_2_list','2'),(151778,4323,'_flexible_templates_7_list_section_2_list','field_62bb29bd62eb8'),(151779,4323,'flexible_templates_7_list_section','3'),(151780,4323,'_flexible_templates_7_list_section','field_62bb29b362eb7'),(151781,4323,'flexible_templates_8_copy','Translucent cloud native data driven application development.
It’s how your client’s do business!'),(151782,4323,'_flexible_templates_8_copy','field_62bb2a7262ebb_field_6254fdc0efa29'),(151783,4323,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:11:\"Let\'s talk!\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(151784,4323,'_flexible_templates_8_cta','field_62bb2a8962ebc_field_62551b3e101c4'),(151785,4323,'flexible_templates_0_mob_image','4320'),(151786,4323,'_flexible_templates_0_mob_image','field_62bc5c91b8f13_field_6254fdcbefa2b'),(151787,4323,'flexible_templates_3_mob_image','4312'),(151788,4323,'_flexible_templates_3_mob_image','field_62bc5fba29a08_field_6254fdcbefa2b'),(151789,4323,'flexible_templates_6_mob_image',''),(151790,4323,'_flexible_templates_6_mob_image','field_62bc5fba29a08_field_6254fdcbefa2b'),(151794,4324,'_wp_attached_file','2022/06/devops_coonsulting.png'),(151795,4324,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:485;s:6:\"height\";i:474;s:4:\"file\";s:30:\"2022/06/devops_coonsulting.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"devops_coonsulting-300x293.png\";s:5:\"width\";i:300;s:6:\"height\";i:293;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"devops_coonsulting-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:{}}}'),(151796,4324,'_imagify_optimization_level','0'),(151797,4324,'_imagify_status','error'),(151798,4324,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(151820,4327,'_wp_attached_file','2022/06/Group-8578-1.png'),(151821,4327,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:40;s:6:\"height\";i:40;s:4:\"file\";s:24:\"2022/06/Group-8578-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(151822,4327,'_imagify_optimization_level','0'),(151823,4327,'_imagify_status','error'),(151824,4327,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(151825,4328,'_wp_attached_file','2022/06/devops_roadmap.png'),(151826,4328,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1232;s:6:\"height\";i:353;s:4:\"file\";s:26:\"2022/06/devops_roadmap.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"devops_roadmap-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:27:\"devops_roadmap-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:26:\"devops_roadmap-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:\"devops_roadmap-768x220.png\";s:5:\"width\";i:768;s:6:\"height\";i:220;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:26:\"devops_roadmap-500x353.png\";s:5:\"width\";i:500;s:6:\"height\";i:353;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:{}}}'),(151827,4328,'_imagify_optimization_level','0'),(151828,4328,'_imagify_status','error'),(151829,4328,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(151830,4329,'_wp_attached_file','2022/06/kubernetes-w.svg'),(151831,4330,'_wp_attached_file','2022/06/kubernets_graph.png'),(151832,4330,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:920;s:6:\"height\";i:692;s:4:\"file\";s:27:\"2022/06/kubernets_graph.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"kubernets_graph-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"kubernets_graph-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:27:\"kubernets_graph-768x578.png\";s:5:\"width\";i:768;s:6:\"height\";i:578;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:27:\"kubernets_graph-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(151833,4330,'_imagify_optimization_level','0'),(151834,4330,'_imagify_status','error'),(151835,4330,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(151841,4332,'_wp_attached_file','2022/06/mrdata2.png'),(151842,4332,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:19:\"2022/06/mrdata2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(151843,4332,'_imagify_optimization_level','0'),(151844,4332,'_imagify_status','error'),(151845,4332,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(151849,4333,'_wp_attached_file','2022/06/bg-people-tc1.png'),(151850,4333,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:702;s:4:\"file\";s:25:\"2022/06/bg-people-tc1.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"bg-people-tc1-300x110.png\";s:5:\"width\";i:300;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"bg-people-tc1-1024x374.png\";s:5:\"width\";i:1024;s:6:\"height\";i:374;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"bg-people-tc1-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:25:\"bg-people-tc1-768x281.png\";s:5:\"width\";i:768;s:6:\"height\";i:281;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"bg-people-tc1-1536x562.png\";s:5:\"width\";i:1536;s:6:\"height\";i:562;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:25:\"bg-people-tc1-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(151851,4333,'_imagify_optimization_level','0'),(151852,4333,'_imagify_status','error'),(151853,4333,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(151854,4334,'_wp_attached_file','2022/06/Union-21.png'),(151855,4334,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:390;s:6:\"height\";i:164;s:4:\"file\";s:20:\"2022/06/Union-21.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"Union-21-300x126.png\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"Union-21-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:{}}}'),(151856,4334,'_imagify_optimization_level','0'),(151857,4334,'_imagify_status','error'),(151858,4334,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(151877,4335,'flexible_templates','a:9:{i:0;s:31:\"cloud_native_application_banner\";i:1;s:50:\"cloud_native_application_building_new_applications\";i:2;s:47:\"cloud_native_application_rebuild_and_replatform\";i:3;s:40:\"cloud_native_application_fullwidth_image\";i:4;s:49:\"cloud_native_application_build_rebuild_replatform\";i:5;s:35:\"cloud_native_applications_solutions\";i:6;s:40:\"cloud_native_application_fullwidth_image\";i:7;s:47:\"cloud_native_applications_the_translucent_value\";i:8;s:40:\"cloud_native_application_copy_and_button\";}'),(151878,4335,'_flexible_templates','field_6254f4d84ef9b'),(151879,4335,'flexible_templates_0_image','4238'),(151880,4335,'_flexible_templates_0_image','field_62bb17034467a_field_62552ada52711_field_6254fdc5efa2a'),(151881,4335,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(151882,4335,'_flexible_templates_0_sub_heading','field_62bb173b4467b_field_6255097642ef4_field_6254fdbaefa28'),(151883,4335,'flexible_templates_0_heading','Cloud Native Application Development'),(151884,4335,'_flexible_templates_0_heading','field_62bb17614467c_field_62551ac3a6f96_field_6254fdb2efa27'),(151885,4335,'flexible_templates_0_copy','In modern application development you have three choices: Build | Rebuild | Replatform'),(151886,4335,'_flexible_templates_0_copy','field_62bb17874467d_field_62551b74a6f99_field_6254fdc0efa29'),(151887,4335,'flexible_templates_1_sub_heading','BUILDING NEW APPLICATIONS'),(151888,4335,'_flexible_templates_1_sub_heading','field_62bb1c9962e8a_field_6254fdbaefa28'),(151889,4335,'flexible_templates_1_heading','What is Building?'),(151890,4335,'_flexible_templates_1_heading','field_62bb1c9f62e8b_field_6254fdb2efa27'),(151891,4335,'flexible_templates_1_copy_wysiwyg','

Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.

\r\n

The foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.
Unleashing the true power of your organization in the 4th industrial revolution.

'),(151892,4335,'_flexible_templates_1_copy_wysiwyg','field_62bb1cb462e8c_field_6255310ecf4de'),(151893,4335,'flexible_templates_1_image','4291'),(151894,4335,'_flexible_templates_1_image','field_62bb1cf662e8d_field_6254fdc5efa2a'),(151895,4335,'flexible_templates_1_testimonial_section_0_icon',''),(151896,4335,'_flexible_templates_1_testimonial_section_0_icon','field_62bb25696c318'),(151897,4335,'flexible_templates_1_testimonial_section_0_heading','Building GoTo Loans Platform from a Vision:'),(151898,4335,'_flexible_templates_1_testimonial_section_0_heading','field_62bb25736c319'),(151899,4335,'flexible_templates_1_testimonial_section_0_copy','Integrating banking, automotive, loan, mechanic and customer workflow data making the complex almost seem like magic. Keep up the great work!'),(151900,4335,'_flexible_templates_1_testimonial_section_0_copy','field_62bb25786c31a'),(151901,4335,'flexible_templates_1_testimonial_section_0_name','Eric Kaplan'),(151902,4335,'_flexible_templates_1_testimonial_section_0_name','field_62bb260117e59'),(151903,4335,'flexible_templates_1_testimonial_section_0_designation','COO - GoTo Loans'),(151904,4335,'_flexible_templates_1_testimonial_section_0_designation','field_62bb260c17e5a'),(151905,4335,'flexible_templates_1_testimonial_section','1'),(151906,4335,'_flexible_templates_1_testimonial_section','field_62bb1d7162e8f_field_62bb251c6c317'),(151907,4335,'flexible_templates_2_sub_heading','REBUILD & REPLATAFORM'),(151908,4335,'_flexible_templates_2_sub_heading','field_62bb1e2962e94_field_6254fdbaefa28'),(151909,4335,'flexible_templates_2_heading','What is the best application modernization
choice for my company?'),(151910,4335,'_flexible_templates_2_heading','field_62bb1e3b62e95_field_6254fdb2efa27'),(151911,4335,'flexible_templates_2_copy_wysiwyg','Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.\r\nYou have two application modernization choices when upgrading: Rebuilding or Replatforming'),(151912,4335,'_flexible_templates_2_copy_wysiwyg','field_62bb44696be57_field_6255310ecf4de'),(151913,4335,'flexible_templates_2_build_and_platform_section_0_heading','What is Rebuild'),(151914,4335,'_flexible_templates_2_build_and_platform_section_0_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(151915,4335,'flexible_templates_2_build_and_platform_section_0_image','4293'),(151916,4335,'_flexible_templates_2_build_and_platform_section_0_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(151917,4335,'flexible_templates_2_build_and_platform_section_0_copy','

You can rebuild your application components while preserving your original specifications, requirements, and business logic - this will help you shake off the confines of old legacy technology. While using what is still of value.

'),(151918,4335,'_flexible_templates_2_build_and_platform_section_0_copy','field_62bb1f8662e99_field_625525b15629c'),(151919,4335,'flexible_templates_2_build_and_platform_section_1_heading','What is Replatform'),(151920,4335,'_flexible_templates_2_build_and_platform_section_1_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(151921,4335,'flexible_templates_2_build_and_platform_section_1_image','4294'),(151922,4335,'_flexible_templates_2_build_and_platform_section_1_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(151923,4335,'flexible_templates_2_build_and_platform_section_1_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(151924,4335,'_flexible_templates_2_build_and_platform_section_1_copy','field_62bb1f8662e99_field_625525b15629c'),(151925,4335,'flexible_templates_2_build_and_platform_section','2'),(151926,4335,'_flexible_templates_2_build_and_platform_section','field_62bb1eeb62e96'),(151927,4335,'flexible_templates_2_testimonial_section_0_icon','4295'),(151928,4335,'_flexible_templates_2_testimonial_section_0_icon','field_62bb25696c318'),(151929,4335,'flexible_templates_2_testimonial_section_0_heading','Rebuilding CIMS Platform at SickKids Hospital:'),(151930,4335,'_flexible_templates_2_testimonial_section_0_heading','field_62bb25736c319'),(151931,4335,'flexible_templates_2_testimonial_section_0_copy','I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.'),(151932,4335,'_flexible_templates_2_testimonial_section_0_copy','field_62bb25786c31a'),(151933,4335,'flexible_templates_2_testimonial_section_0_name','Andrew James'),(151934,4335,'_flexible_templates_2_testimonial_section_0_name','field_62bb260117e59'),(151935,4335,'flexible_templates_2_testimonial_section_0_designation','The Hospital for Sick Children'),(151936,4335,'_flexible_templates_2_testimonial_section_0_designation','field_62bb260c17e5a'),(151937,4335,'flexible_templates_2_testimonial_section','1'),(151938,4335,'_flexible_templates_2_testimonial_section','field_62bb1fc662e9a_field_62bb251c6c317'),(151939,4335,'flexible_templates_3_image','4301'),(151940,4335,'_flexible_templates_3_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(151941,4335,'flexible_templates_4_sub_heading','BUILD - REBUILD - REPLATAFORM'),(151942,4335,'_flexible_templates_4_sub_heading','field_62bb20b262ea1_field_6254fdbaefa28'),(151943,4335,'flexible_templates_4_heading','Keeping you competitive now and built for the
future.'),(151944,4335,'_flexible_templates_4_heading','field_62bb20b862ea2_field_6254fdb2efa27'),(151945,4335,'flexible_templates_4_copy','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world. Making you very competitive, especially in the current market conditions.'),(151946,4335,'_flexible_templates_4_copy','field_62bb20bd62ea3_field_6254fdc0efa29'),(151947,4335,'flexible_templates_4_table_0_text','Strategy'),(151948,4335,'_flexible_templates_4_table_0_text','field_62bb212762ea5'),(151949,4335,'flexible_templates_4_table_1_text','Automated Customer Experience'),(151950,4335,'_flexible_templates_4_table_1_text','field_62bb212762ea5'),(151951,4335,'flexible_templates_4_table_2_text','Critical System 1st Approach'),(151952,4335,'_flexible_templates_4_table_2_text','field_62bb212762ea5'),(151953,4335,'flexible_templates_4_table_3_text','Scalability'),(151954,4335,'_flexible_templates_4_table_3_text','field_62bb212762ea5'),(151955,4335,'flexible_templates_4_table_4_text','API 1st Design'),(151956,4335,'_flexible_templates_4_table_4_text','field_62bb212762ea5'),(151957,4335,'flexible_templates_4_table_5_text','Secure Transactions'),(151958,4335,'_flexible_templates_4_table_5_text','field_62bb212762ea5'),(151959,4335,'flexible_templates_4_table_6_text','Revenue Driving Data Insights'),(151960,4335,'_flexible_templates_4_table_6_text','field_62bb212762ea5'),(151961,4335,'flexible_templates_4_table_7_text','Faster to Market'),(151962,4335,'_flexible_templates_4_table_7_text','field_62bb212762ea5'),(151963,4335,'flexible_templates_4_table_8_text','APM'),(151964,4335,'_flexible_templates_4_table_8_text','field_62bb212762ea5'),(151965,4335,'flexible_templates_4_table_9_text','Responsive Design'),(151966,4335,'_flexible_templates_4_table_9_text','field_62bb212762ea5'),(151967,4335,'flexible_templates_4_table_10_text','Open for Business 24/7'),(151968,4335,'_flexible_templates_4_table_10_text','field_62bb212762ea5'),(151969,4335,'flexible_templates_4_table','11'),(151970,4335,'_flexible_templates_4_table','field_62bb211762ea4'),(151971,4335,'flexible_templates_4_testimonial_section_0_icon',''),(151972,4335,'_flexible_templates_4_testimonial_section_0_icon','field_62bb25696c318'),(151973,4335,'flexible_templates_4_testimonial_section_0_heading',''),(151974,4335,'_flexible_templates_4_testimonial_section_0_heading','field_62bb25736c319'),(151975,4335,'flexible_templates_4_testimonial_section_0_copy','Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.'),(151976,4335,'_flexible_templates_4_testimonial_section_0_copy','field_62bb25786c31a'),(151977,4335,'flexible_templates_4_testimonial_section_0_name','Bradford A. M. Sankar'),(151978,4335,'_flexible_templates_4_testimonial_section_0_name','field_62bb260117e59'),(151979,4335,'flexible_templates_4_testimonial_section_0_designation','COO - Translucent Computing'),(151980,4335,'_flexible_templates_4_testimonial_section_0_designation','field_62bb260c17e5a'),(151981,4335,'flexible_templates_4_testimonial_section','1'),(151982,4335,'_flexible_templates_4_testimonial_section','field_62bb214c62ea6_field_62bb251c6c317'),(151983,4335,'flexible_templates_4_left_image','4303'),(151984,4335,'_flexible_templates_4_left_image','field_62bb21e962eaa'),(151985,4335,'flexible_templates_4_middle_copy','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(151986,4335,'_flexible_templates_4_middle_copy','field_62bb21f462eab'),(151987,4335,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:23:\"Book a consultation now\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(151988,4335,'_flexible_templates_4_cta','field_62bb220b62eac_field_62551b3e101c4'),(151989,4335,'flexible_templates_5_sub_heading','CLOUD NATIVE APPLICATIONS SOLUTIONS:'),(151990,4335,'_flexible_templates_5_sub_heading','field_62bb224b62eae_field_6254fdbaefa28'),(151991,4335,'flexible_templates_5_heading','Is your company competitive in today’s landscape?'),(151992,4335,'_flexible_templates_5_heading','field_62bb226062eaf_field_6254fdb2efa27'),(151993,4335,'flexible_templates_5_left_section_0_text','Application Development Build | Rebuild | Replatform'),(151994,4335,'_flexible_templates_5_left_section_0_text','field_62bb28b062eb1'),(151995,4335,'flexible_templates_5_left_section_1_text','Customer experience workflow automation'),(151996,4335,'_flexible_templates_5_left_section_1_text','field_62bb28b062eb1'),(151997,4335,'flexible_templates_5_left_section_2_text','Application Performance Metrics (APM)'),(151998,4335,'_flexible_templates_5_left_section_2_text','field_62bb28b062eb1'),(151999,4335,'flexible_templates_5_left_section_3_text','API 1st Design'),(152000,4335,'_flexible_templates_5_left_section_3_text','field_62bb28b062eb1'),(152001,4335,'flexible_templates_5_left_section_4_text','Mobile 1st design'),(152002,4335,'_flexible_templates_5_left_section_4_text','field_62bb28b062eb1'),(152003,4335,'flexible_templates_5_left_section_5_text','Responsive Design All Devices'),(152004,4335,'_flexible_templates_5_left_section_5_text','field_62bb28b062eb1'),(152005,4335,'flexible_templates_5_left_section_6_text','Open for business 24/7'),(152006,4335,'_flexible_templates_5_left_section_6_text','field_62bb28b062eb1'),(152007,4335,'flexible_templates_5_left_section','7'),(152008,4335,'_flexible_templates_5_left_section','field_62bb28a762eb0'); INSERT INTO `wp_postmeta` VALUES (152009,4335,'flexible_templates_5_right_section_0_text','Microservices – Distributed Architecture'),(152010,4335,'_flexible_templates_5_right_section_0_text','field_62bb28be62eb3'),(152011,4335,'flexible_templates_5_right_section_1_text','Secure Transactions – DevSecOps'),(152012,4335,'_flexible_templates_5_right_section_1_text','field_62bb28be62eb3'),(152013,4335,'flexible_templates_5_right_section_2_text','Kubernetes Certified Service Provider'),(152014,4335,'_flexible_templates_5_right_section_2_text','field_62bb28be62eb3'),(152015,4335,'flexible_templates_5_right_section_3_text','Multi-cloud Solutions – GCP – AWS – Azure'),(152016,4335,'_flexible_templates_5_right_section_3_text','field_62bb28be62eb3'),(152017,4335,'flexible_templates_5_right_section_4_text','Critical System 1st Approach'),(152018,4335,'_flexible_templates_5_right_section_4_text','field_62bb28be62eb3'),(152019,4335,'flexible_templates_5_right_section_5_text','API Economy – 3rd Party partnerships'),(152020,4335,'_flexible_templates_5_right_section_5_text','field_62bb28be62eb3'),(152021,4335,'flexible_templates_5_right_section_6_text','Return on Investment 1st driven planning'),(152022,4335,'_flexible_templates_5_right_section_6_text','field_62bb28be62eb3'),(152023,4335,'flexible_templates_5_right_section','7'),(152024,4335,'_flexible_templates_5_right_section','field_62bb28be62eb2'),(152025,4335,'flexible_templates_6_image','4219'),(152026,4335,'_flexible_templates_6_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(152027,4335,'flexible_templates_7_sub_heading','THE TRANSLUCENT VALUE'),(152028,4335,'_flexible_templates_7_sub_heading','field_62bb293062eb5_field_6254fdbaefa28'),(152029,4335,'flexible_templates_7_heading','What does cloud native data driven application
modernization
mean for your business?'),(152030,4335,'_flexible_templates_7_heading','field_62bb295b62eb6_field_6254fdb2efa27'),(152031,4335,'flexible_templates_7_list_section_0_list_0_copy','We learn about what makes your business and physical operations valuable to your clients and modernize that.'),(152032,4335,'_flexible_templates_7_list_section_0_list_0_copy','field_62bb2a0462eb9'),(152033,4335,'flexible_templates_7_list_section_0_list_1_copy','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions.'),(152034,4335,'_flexible_templates_7_list_section_0_list_1_copy','field_62bb2a0462eb9'),(152035,4335,'flexible_templates_7_list_section_0_list_2_copy','Data Driven Decisions give you the ability to fine-tune your products and services based on historical patterns providing the best ROI.'),(152036,4335,'_flexible_templates_7_list_section_0_list_2_copy','field_62bb2a0462eb9'),(152037,4335,'flexible_templates_7_list_section_0_list','3'),(152038,4335,'_flexible_templates_7_list_section_0_list','field_62bb29bd62eb8'),(152039,4335,'flexible_templates_7_list_section_1_list_0_copy','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(152040,4335,'_flexible_templates_7_list_section_1_list_0_copy','field_62bb2a0462eb9'),(152041,4335,'flexible_templates_7_list_section_1_list_1_copy','We go above and beyond to deliver and treat your solution like our own'),(152042,4335,'_flexible_templates_7_list_section_1_list_1_copy','field_62bb2a0462eb9'),(152043,4335,'flexible_templates_7_list_section_1_list_2_copy','Translucent application development and application modernization reduces cost'),(152044,4335,'_flexible_templates_7_list_section_1_list_2_copy','field_62bb2a0462eb9'),(152045,4335,'flexible_templates_7_list_section_1_list_3_copy','Automation of the employee and customer experience saves money and makes money'),(152046,4335,'_flexible_templates_7_list_section_1_list_3_copy','field_62bb2a0462eb9'),(152047,4335,'flexible_templates_7_list_section_1_list','4'),(152048,4335,'_flexible_templates_7_list_section_1_list','field_62bb29bd62eb8'),(152049,4335,'flexible_templates_7_list_section_2_list_0_copy','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(152050,4335,'_flexible_templates_7_list_section_2_list_0_copy','field_62bb2a0462eb9'),(152051,4335,'flexible_templates_7_list_section_2_list_1_copy','Increase profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(152052,4335,'_flexible_templates_7_list_section_2_list_1_copy','field_62bb2a0462eb9'),(152053,4335,'flexible_templates_7_list_section_2_list','2'),(152054,4335,'_flexible_templates_7_list_section_2_list','field_62bb29bd62eb8'),(152055,4335,'flexible_templates_7_list_section','3'),(152056,4335,'_flexible_templates_7_list_section','field_62bb29b362eb7'),(152057,4335,'flexible_templates_8_copy','Translucent cloud native data driven application development.
It’s how your client’s do business!'),(152058,4335,'_flexible_templates_8_copy','field_62bb2a7262ebb_field_6254fdc0efa29'),(152059,4335,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:11:\"Let\'s talk!\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(152060,4335,'_flexible_templates_8_cta','field_62bb2a8962ebc_field_62551b3e101c4'),(152061,4335,'flexible_templates_0_mob_image','4320'),(152062,4335,'_flexible_templates_0_mob_image','field_62bc5c91b8f13_field_6254fdcbefa2b'),(152063,4335,'flexible_templates_3_mob_image','4312'),(152064,4335,'_flexible_templates_3_mob_image','field_62bc5fba29a08_field_6254fdcbefa2b'),(152065,4335,'flexible_templates_6_mob_image',''),(152066,4335,'_flexible_templates_6_mob_image','field_62bc5fba29a08_field_6254fdcbefa2b'),(152070,4336,'flexible_templates','a:9:{i:0;s:31:\"cloud_native_application_banner\";i:1;s:50:\"cloud_native_application_building_new_applications\";i:2;s:47:\"cloud_native_application_rebuild_and_replatform\";i:3;s:40:\"cloud_native_application_fullwidth_image\";i:4;s:49:\"cloud_native_application_build_rebuild_replatform\";i:5;s:35:\"cloud_native_applications_solutions\";i:6;s:40:\"cloud_native_application_fullwidth_image\";i:7;s:47:\"cloud_native_applications_the_translucent_value\";i:8;s:40:\"cloud_native_application_copy_and_button\";}'),(152071,4336,'_flexible_templates','field_6254f4d84ef9b'),(152072,4336,'flexible_templates_0_image','4238'),(152073,4336,'_flexible_templates_0_image','field_62bb17034467a_field_62552ada52711_field_6254fdc5efa2a'),(152074,4336,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(152075,4336,'_flexible_templates_0_sub_heading','field_62bb173b4467b_field_6255097642ef4_field_6254fdbaefa28'),(152076,4336,'flexible_templates_0_heading','Cloud Native Application Development'),(152077,4336,'_flexible_templates_0_heading','field_62bb17614467c_field_62551ac3a6f96_field_6254fdb2efa27'),(152078,4336,'flexible_templates_0_copy','In modern application development you have three choices: Build | Rebuild | Replatform'),(152079,4336,'_flexible_templates_0_copy','field_62bb17874467d_field_62551b74a6f99_field_6254fdc0efa29'),(152080,4336,'flexible_templates_1_sub_heading','BUILDING NEW APPLICATIONS'),(152081,4336,'_flexible_templates_1_sub_heading','field_62bb1c9962e8a_field_6254fdbaefa28'),(152082,4336,'flexible_templates_1_heading','What is Building?'),(152083,4336,'_flexible_templates_1_heading','field_62bb1c9f62e8b_field_6254fdb2efa27'),(152084,4336,'flexible_templates_1_copy_wysiwyg','

Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.

\r\n

The foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.
Unleashing the true power of your organization in the 4th industrial revolution.

'),(152085,4336,'_flexible_templates_1_copy_wysiwyg','field_62bb1cb462e8c_field_6255310ecf4de'),(152086,4336,'flexible_templates_1_image','4291'),(152087,4336,'_flexible_templates_1_image','field_62bb1cf662e8d_field_6254fdc5efa2a'),(152088,4336,'flexible_templates_1_testimonial_section_0_icon',''),(152089,4336,'_flexible_templates_1_testimonial_section_0_icon','field_62bb25696c318'),(152090,4336,'flexible_templates_1_testimonial_section_0_heading','Building GoTo Loans Platform from a Vision:'),(152091,4336,'_flexible_templates_1_testimonial_section_0_heading','field_62bb25736c319'),(152092,4336,'flexible_templates_1_testimonial_section_0_copy','Integrating banking, automotive, loan, mechanic and customer workflow data making the complex almost seem like magic. Keep up the great work!'),(152093,4336,'_flexible_templates_1_testimonial_section_0_copy','field_62bb25786c31a'),(152094,4336,'flexible_templates_1_testimonial_section_0_name','Eric Kaplan'),(152095,4336,'_flexible_templates_1_testimonial_section_0_name','field_62bb260117e59'),(152096,4336,'flexible_templates_1_testimonial_section_0_designation','COO - GoTo Loans'),(152097,4336,'_flexible_templates_1_testimonial_section_0_designation','field_62bb260c17e5a'),(152098,4336,'flexible_templates_1_testimonial_section','1'),(152099,4336,'_flexible_templates_1_testimonial_section','field_62bb1d7162e8f_field_62bb251c6c317'),(152100,4336,'flexible_templates_2_sub_heading','REBUILD & REPLATAFORM'),(152101,4336,'_flexible_templates_2_sub_heading','field_62bb1e2962e94_field_6254fdbaefa28'),(152102,4336,'flexible_templates_2_heading','What is the best application modernization
choice for my company?'),(152103,4336,'_flexible_templates_2_heading','field_62bb1e3b62e95_field_6254fdb2efa27'),(152104,4336,'flexible_templates_2_copy_wysiwyg','Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.\r\nYou have two application modernization choices when upgrading: Rebuilding or Replatforming'),(152105,4336,'_flexible_templates_2_copy_wysiwyg','field_62bb44696be57_field_6255310ecf4de'),(152106,4336,'flexible_templates_2_build_and_platform_section_0_heading','What is Rebuild'),(152107,4336,'_flexible_templates_2_build_and_platform_section_0_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(152108,4336,'flexible_templates_2_build_and_platform_section_0_image','4293'),(152109,4336,'_flexible_templates_2_build_and_platform_section_0_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(152110,4336,'flexible_templates_2_build_and_platform_section_0_copy','

You can rebuild your application components while preserving your original specifications, requirements, and business logic - this will help you shake off the confines of old legacy technology. While using what is still of value.

'),(152111,4336,'_flexible_templates_2_build_and_platform_section_0_copy','field_62bb1f8662e99_field_625525b15629c'),(152112,4336,'flexible_templates_2_build_and_platform_section_1_heading','What is Replatform'),(152113,4336,'_flexible_templates_2_build_and_platform_section_1_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(152114,4336,'flexible_templates_2_build_and_platform_section_1_image','4294'),(152115,4336,'_flexible_templates_2_build_and_platform_section_1_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(152116,4336,'flexible_templates_2_build_and_platform_section_1_copy','

Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.

'),(152117,4336,'_flexible_templates_2_build_and_platform_section_1_copy','field_62bb1f8662e99_field_625525b15629c'),(152118,4336,'flexible_templates_2_build_and_platform_section','2'),(152119,4336,'_flexible_templates_2_build_and_platform_section','field_62bb1eeb62e96'),(152120,4336,'flexible_templates_2_testimonial_section_0_icon','4295'),(152121,4336,'_flexible_templates_2_testimonial_section_0_icon','field_62bb25696c318'),(152122,4336,'flexible_templates_2_testimonial_section_0_heading','Rebuilding CIMS Platform at SickKids Hospital:'),(152123,4336,'_flexible_templates_2_testimonial_section_0_heading','field_62bb25736c319'),(152124,4336,'flexible_templates_2_testimonial_section_0_copy','I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.'),(152125,4336,'_flexible_templates_2_testimonial_section_0_copy','field_62bb25786c31a'),(152126,4336,'flexible_templates_2_testimonial_section_0_name','Andrew James'),(152127,4336,'_flexible_templates_2_testimonial_section_0_name','field_62bb260117e59'),(152128,4336,'flexible_templates_2_testimonial_section_0_designation','The Hospital for Sick Children'),(152129,4336,'_flexible_templates_2_testimonial_section_0_designation','field_62bb260c17e5a'),(152130,4336,'flexible_templates_2_testimonial_section','1'),(152131,4336,'_flexible_templates_2_testimonial_section','field_62bb1fc662e9a_field_62bb251c6c317'),(152132,4336,'flexible_templates_3_image','4301'),(152133,4336,'_flexible_templates_3_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(152134,4336,'flexible_templates_4_sub_heading','BUILD - REBUILD - REPLATAFORM'),(152135,4336,'_flexible_templates_4_sub_heading','field_62bb20b262ea1_field_6254fdbaefa28'),(152136,4336,'flexible_templates_4_heading','Keeping you competitive now and built for the
future.'),(152137,4336,'_flexible_templates_4_heading','field_62bb20b862ea2_field_6254fdb2efa27'),(152138,4336,'flexible_templates_4_copy','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world. Making you very competitive, especially in the current market conditions.'),(152139,4336,'_flexible_templates_4_copy','field_62bb20bd62ea3_field_6254fdc0efa29'),(152140,4336,'flexible_templates_4_table_0_text','Strategy'),(152141,4336,'_flexible_templates_4_table_0_text','field_62bb212762ea5'),(152142,4336,'flexible_templates_4_table_1_text','Automated Customer Experience'),(152143,4336,'_flexible_templates_4_table_1_text','field_62bb212762ea5'),(152144,4336,'flexible_templates_4_table_2_text','Critical System 1st Approach'),(152145,4336,'_flexible_templates_4_table_2_text','field_62bb212762ea5'),(152146,4336,'flexible_templates_4_table_3_text','Scalability'),(152147,4336,'_flexible_templates_4_table_3_text','field_62bb212762ea5'),(152148,4336,'flexible_templates_4_table_4_text','API 1st Design'),(152149,4336,'_flexible_templates_4_table_4_text','field_62bb212762ea5'),(152150,4336,'flexible_templates_4_table_5_text','Secure Transactions'),(152151,4336,'_flexible_templates_4_table_5_text','field_62bb212762ea5'),(152152,4336,'flexible_templates_4_table_6_text','Revenue Driving Data Insights'),(152153,4336,'_flexible_templates_4_table_6_text','field_62bb212762ea5'),(152154,4336,'flexible_templates_4_table_7_text','Faster to Market'),(152155,4336,'_flexible_templates_4_table_7_text','field_62bb212762ea5'),(152156,4336,'flexible_templates_4_table_8_text','APM'),(152157,4336,'_flexible_templates_4_table_8_text','field_62bb212762ea5'),(152158,4336,'flexible_templates_4_table_9_text','Responsive Design'),(152159,4336,'_flexible_templates_4_table_9_text','field_62bb212762ea5'),(152160,4336,'flexible_templates_4_table_10_text','Open for Business 24/7'),(152161,4336,'_flexible_templates_4_table_10_text','field_62bb212762ea5'),(152162,4336,'flexible_templates_4_table','11'),(152163,4336,'_flexible_templates_4_table','field_62bb211762ea4'),(152164,4336,'flexible_templates_4_testimonial_section_0_icon',''),(152165,4336,'_flexible_templates_4_testimonial_section_0_icon','field_62bb25696c318'),(152166,4336,'flexible_templates_4_testimonial_section_0_heading',''),(152167,4336,'_flexible_templates_4_testimonial_section_0_heading','field_62bb25736c319'),(152168,4336,'flexible_templates_4_testimonial_section_0_copy','Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.'),(152169,4336,'_flexible_templates_4_testimonial_section_0_copy','field_62bb25786c31a'),(152170,4336,'flexible_templates_4_testimonial_section_0_name','Bradford A. M. Sankar'),(152171,4336,'_flexible_templates_4_testimonial_section_0_name','field_62bb260117e59'),(152172,4336,'flexible_templates_4_testimonial_section_0_designation','COO - Translucent Computing'),(152173,4336,'_flexible_templates_4_testimonial_section_0_designation','field_62bb260c17e5a'),(152174,4336,'flexible_templates_4_testimonial_section','1'),(152175,4336,'_flexible_templates_4_testimonial_section','field_62bb214c62ea6_field_62bb251c6c317'),(152176,4336,'flexible_templates_4_left_image','4303'),(152177,4336,'_flexible_templates_4_left_image','field_62bb21e962eaa'),(152178,4336,'flexible_templates_4_middle_copy','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(152179,4336,'_flexible_templates_4_middle_copy','field_62bb21f462eab'),(152180,4336,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:23:\"Book a consultation now\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(152181,4336,'_flexible_templates_4_cta','field_62bb220b62eac_field_62551b3e101c4'),(152182,4336,'flexible_templates_5_sub_heading','CLOUD NATIVE APPLICATIONS SOLUTIONS:'),(152183,4336,'_flexible_templates_5_sub_heading','field_62bb224b62eae_field_6254fdbaefa28'),(152184,4336,'flexible_templates_5_heading','Is your company competitive in today’s landscape?'),(152185,4336,'_flexible_templates_5_heading','field_62bb226062eaf_field_6254fdb2efa27'),(152186,4336,'flexible_templates_5_left_section_0_text','Application Development Build | Rebuild | Replatform'),(152187,4336,'_flexible_templates_5_left_section_0_text','field_62bb28b062eb1'),(152188,4336,'flexible_templates_5_left_section_1_text','Customer experience workflow automation'),(152189,4336,'_flexible_templates_5_left_section_1_text','field_62bb28b062eb1'),(152190,4336,'flexible_templates_5_left_section_2_text','Application Performance Metrics (APM)'),(152191,4336,'_flexible_templates_5_left_section_2_text','field_62bb28b062eb1'),(152192,4336,'flexible_templates_5_left_section_3_text','API 1st Design'),(152193,4336,'_flexible_templates_5_left_section_3_text','field_62bb28b062eb1'),(152194,4336,'flexible_templates_5_left_section_4_text','Mobile 1st design'),(152195,4336,'_flexible_templates_5_left_section_4_text','field_62bb28b062eb1'),(152196,4336,'flexible_templates_5_left_section_5_text','Responsive Design All Devices'),(152197,4336,'_flexible_templates_5_left_section_5_text','field_62bb28b062eb1'),(152198,4336,'flexible_templates_5_left_section_6_text','Open for business 24/7'),(152199,4336,'_flexible_templates_5_left_section_6_text','field_62bb28b062eb1'),(152200,4336,'flexible_templates_5_left_section','7'),(152201,4336,'_flexible_templates_5_left_section','field_62bb28a762eb0'),(152202,4336,'flexible_templates_5_right_section_0_text','Microservices – Distributed Architecture'),(152203,4336,'_flexible_templates_5_right_section_0_text','field_62bb28be62eb3'),(152204,4336,'flexible_templates_5_right_section_1_text','Secure Transactions – DevSecOps'),(152205,4336,'_flexible_templates_5_right_section_1_text','field_62bb28be62eb3'),(152206,4336,'flexible_templates_5_right_section_2_text','Kubernetes Certified Service Provider'),(152207,4336,'_flexible_templates_5_right_section_2_text','field_62bb28be62eb3'),(152208,4336,'flexible_templates_5_right_section_3_text','Multi-cloud Solutions – GCP – AWS – Azure'),(152209,4336,'_flexible_templates_5_right_section_3_text','field_62bb28be62eb3'),(152210,4336,'flexible_templates_5_right_section_4_text','Critical System 1st Approach'),(152211,4336,'_flexible_templates_5_right_section_4_text','field_62bb28be62eb3'),(152212,4336,'flexible_templates_5_right_section_5_text','API Economy – 3rd Party partnerships'),(152213,4336,'_flexible_templates_5_right_section_5_text','field_62bb28be62eb3'),(152214,4336,'flexible_templates_5_right_section_6_text','Return on Investment 1st driven planning'),(152215,4336,'_flexible_templates_5_right_section_6_text','field_62bb28be62eb3'),(152216,4336,'flexible_templates_5_right_section','7'),(152217,4336,'_flexible_templates_5_right_section','field_62bb28be62eb2'),(152218,4336,'flexible_templates_6_image','4219'),(152219,4336,'_flexible_templates_6_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(152220,4336,'flexible_templates_7_sub_heading','THE TRANSLUCENT VALUE'),(152221,4336,'_flexible_templates_7_sub_heading','field_62bb293062eb5_field_6254fdbaefa28'),(152222,4336,'flexible_templates_7_heading','What does cloud native data driven application
modernization
mean for your business?'),(152223,4336,'_flexible_templates_7_heading','field_62bb295b62eb6_field_6254fdb2efa27'),(152224,4336,'flexible_templates_7_list_section_0_list_0_copy','We learn about what makes your business and physical operations valuable to your clients and modernize that.'),(152225,4336,'_flexible_templates_7_list_section_0_list_0_copy','field_62bb2a0462eb9'),(152226,4336,'flexible_templates_7_list_section_0_list_1_copy','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions.'),(152227,4336,'_flexible_templates_7_list_section_0_list_1_copy','field_62bb2a0462eb9'),(152228,4336,'flexible_templates_7_list_section_0_list_2_copy','Data Driven Decisions give you the ability to fine-tune your products and services based on historical patterns providing the best ROI.'),(152229,4336,'_flexible_templates_7_list_section_0_list_2_copy','field_62bb2a0462eb9'),(152230,4336,'flexible_templates_7_list_section_0_list','3'),(152231,4336,'_flexible_templates_7_list_section_0_list','field_62bb29bd62eb8'),(152232,4336,'flexible_templates_7_list_section_1_list_0_copy','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(152233,4336,'_flexible_templates_7_list_section_1_list_0_copy','field_62bb2a0462eb9'),(152234,4336,'flexible_templates_7_list_section_1_list_1_copy','We go above and beyond to deliver and treat your solution like our own'),(152235,4336,'_flexible_templates_7_list_section_1_list_1_copy','field_62bb2a0462eb9'),(152236,4336,'flexible_templates_7_list_section_1_list_2_copy','Translucent application development and application modernization reduces cost'),(152237,4336,'_flexible_templates_7_list_section_1_list_2_copy','field_62bb2a0462eb9'),(152238,4336,'flexible_templates_7_list_section_1_list_3_copy','Automation of the employee and customer experience saves money and makes money'),(152239,4336,'_flexible_templates_7_list_section_1_list_3_copy','field_62bb2a0462eb9'),(152240,4336,'flexible_templates_7_list_section_1_list','4'),(152241,4336,'_flexible_templates_7_list_section_1_list','field_62bb29bd62eb8'),(152242,4336,'flexible_templates_7_list_section_2_list_0_copy','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(152243,4336,'_flexible_templates_7_list_section_2_list_0_copy','field_62bb2a0462eb9'),(152244,4336,'flexible_templates_7_list_section_2_list_1_copy','Increase profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(152245,4336,'_flexible_templates_7_list_section_2_list_1_copy','field_62bb2a0462eb9'),(152246,4336,'flexible_templates_7_list_section_2_list','2'),(152247,4336,'_flexible_templates_7_list_section_2_list','field_62bb29bd62eb8'),(152248,4336,'flexible_templates_7_list_section','3'),(152249,4336,'_flexible_templates_7_list_section','field_62bb29b362eb7'),(152250,4336,'flexible_templates_8_copy','Translucent cloud native data driven application development.
It’s how your client’s do business!'),(152251,4336,'_flexible_templates_8_copy','field_62bb2a7262ebb_field_6254fdc0efa29'),(152252,4336,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:11:\"Let\'s talk!\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(152253,4336,'_flexible_templates_8_cta','field_62bb2a8962ebc_field_62551b3e101c4'),(152254,4336,'flexible_templates_0_mob_image','4320'),(152255,4336,'_flexible_templates_0_mob_image','field_62bc5c91b8f13_field_6254fdcbefa2b'),(152256,4336,'flexible_templates_3_mob_image','4312'),(152257,4336,'_flexible_templates_3_mob_image','field_62bc5fba29a08_field_6254fdcbefa2b'),(152258,4336,'flexible_templates_6_mob_image',''),(152259,4336,'_flexible_templates_6_mob_image','field_62bc5fba29a08_field_6254fdcbefa2b'),(152266,4337,'_edit_lock','1656671559:20'),(152267,4337,'_edit_last','20'),(152268,4338,'_edit_lock','1658737986:20'),(152269,4338,'_edit_last','20'),(152270,4338,'_wp_page_template','flexible-template.php'),(152271,4338,'hefo_before','0'),(152272,4338,'hefo_after','0'),(152273,4338,'_yoast_wpseo_focuskeywords',''),(152274,4338,'_yoast_wpseo_keywordsynonyms',''),(152275,4338,'_yoast_wpseo_estimated-reading-time-minutes',''),(152290,4342,'_wp_attached_file','2022/07/dlr.png'),(152291,4342,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:15:\"2022/07/dlr.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(152292,4342,'_imagify_optimization_level','0'),(152293,4342,'_imagify_status','error'),(152294,4342,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(152295,4343,'_wp_attached_file','2022/07/drive.png'),(152296,4343,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:17:\"2022/07/drive.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(152297,4343,'_imagify_optimization_level','0'),(152298,4343,'_imagify_status','error'),(152299,4343,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(152300,4344,'_wp_attached_file','2022/07/auto.png'),(152301,4344,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:16:\"2022/07/auto.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(152302,4344,'_imagify_optimization_level','0'),(152303,4344,'_imagify_status','error'),(152304,4344,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(152305,4345,'_wp_attached_file','2022/07/wrld.png'),(152306,4345,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:16:\"2022/07/wrld.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(152307,4345,'_imagify_optimization_level','0'),(152308,4345,'_imagify_status','error'),(152309,4345,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(152310,4346,'_wp_attached_file','2022/07/cstmr.png'),(152311,4346,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:17:\"2022/07/cstmr.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(152312,4346,'_imagify_optimization_level','0'),(152313,4346,'_imagify_status','error'),(152314,4346,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(152315,4347,'_wp_attached_file','2022/07/clck.png'),(152316,4347,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:16:\"2022/07/clck.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(152317,4347,'_imagify_optimization_level','0'),(152318,4347,'_imagify_status','error'),(152319,4347,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(152320,4348,'_wp_attached_file','2022/07/ppl.png'),(152321,4348,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:15:\"2022/07/ppl.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(152322,4348,'_imagify_optimization_level','0'),(152323,4348,'_imagify_status','error'),(152324,4348,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(152325,4349,'_wp_attached_file','2022/07/icon.png'),(152326,4349,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:16:\"2022/07/icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(152327,4349,'_imagify_optimization_level','0'),(152328,4349,'_imagify_status','error'),(152329,4349,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(152330,4350,'_wp_attached_file','2022/07/loaction.png'),(152331,4350,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:20:\"2022/07/loaction.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(152332,4350,'_imagify_optimization_level','0'),(152333,4350,'_imagify_status','error'),(152334,4350,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(152335,4351,'_wp_attached_file','2022/07/icon2.png'),(152336,4351,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:17:\"2022/07/icon2.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(152337,4351,'_imagify_optimization_level','0'),(152338,4351,'_imagify_status','error'),(152339,4351,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(152340,4352,'_wp_attached_file','2022/07/icon3.png'),(152341,4352,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:17:\"2022/07/icon3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(152342,4352,'_imagify_optimization_level','0'),(152343,4352,'_imagify_status','error'),(152344,4352,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(152345,4353,'_wp_attached_file','2022/07/bg-people-tc1-mo.png'),(152346,4353,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:616;s:6:\"height\";i:503;s:4:\"file\";s:28:\"2022/07/bg-people-tc1-mo.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"bg-people-tc1-mo-300x245.png\";s:5:\"width\";i:300;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"bg-people-tc1-mo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:28:\"bg-people-tc1-mo-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(152347,4353,'_imagify_optimization_level','0'),(152348,4353,'_imagify_status','error'),(152349,4353,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(152401,4354,'_wp_attached_file','2022/07/Group-8711.png'),(152402,4354,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:22:\"2022/07/Group-8711.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(152403,4354,'_imagify_optimization_level','0'),(152404,4354,'_imagify_status','success'),(152405,4354,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:447;s:14:\"optimized_size\";i:296;s:7:\"percent\";d:33.78;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:447;s:14:\"optimized_size\";i:744;s:7:\"percent\";d:-66.44;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:894;s:14:\"optimized_size\";i:1040;s:7:\"percent\";d:-16.33;}}'),(152406,4355,'_wp_attached_file','2022/07/Group-8713.png'),(152407,4355,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:22:\"2022/07/Group-8713.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(152408,4355,'_imagify_optimization_level','0'),(152409,4355,'_imagify_status','success'),(152410,4355,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:793;s:14:\"optimized_size\";i:418;s:7:\"percent\";d:47.29;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:793;s:14:\"optimized_size\";i:1470;s:7:\"percent\";d:-85.37;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1586;s:14:\"optimized_size\";i:1888;s:7:\"percent\";d:-19.04;}}'),(152411,4356,'_wp_attached_file','2022/07/Group-8712.png'),(152412,4356,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:22:\"2022/07/Group-8712.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(152413,4356,'_imagify_optimization_level','0'),(152414,4356,'_imagify_status','success'),(152415,4356,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:501;s:14:\"optimized_size\";i:304;s:7:\"percent\";d:39.32;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:501;s:14:\"optimized_size\";i:774;s:7:\"percent\";d:-54.49;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1002;s:14:\"optimized_size\";i:1078;s:7:\"percent\";d:-7.58;}}'),(152416,4357,'_wp_attached_file','2022/07/Group-8710.png'),(152417,4357,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:22:\"2022/07/Group-8710.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(152418,4357,'_imagify_optimization_level','0'),(152419,4357,'_imagify_status','success'),(152420,4357,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:656;s:14:\"optimized_size\";i:382;s:7:\"percent\";d:41.77;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:656;s:14:\"optimized_size\";i:896;s:7:\"percent\";d:-36.59;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1312;s:14:\"optimized_size\";i:1278;s:7:\"percent\";d:2.59;}}'),(152421,4358,'_wp_attached_file','2022/07/Group-8556.png'),(152422,4358,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:22:\"2022/07/Group-8556.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(152423,4358,'_imagify_optimization_level','0'),(152424,4358,'_imagify_status','success'),(152425,4358,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:712;s:14:\"optimized_size\";i:385;s:7:\"percent\";d:45.93;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:712;s:14:\"optimized_size\";i:978;s:7:\"percent\";d:-37.36;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1424;s:14:\"optimized_size\";i:1363;s:7:\"percent\";d:4.28;}}'),(152435,4360,'flexible_templates','a:8:{i:0;s:16:\"tek-teams-banner\";i:1;s:20:\"tek-teams-two-column\";i:2;s:14:\"tek-team-about\";i:3;s:21:\"tek-teams-development\";i:4;s:18:\"tek_teams_benifits\";i:5;s:17:\"tek-team-whats-is\";i:6;s:34:\"tek-teams-translucent-differential\";i:7;s:17:\"lets_talk_section\";}'),(152436,4360,'_flexible_templates','field_6254f4d84ef9b'),(152437,4360,'flexible_templates_0_image','4066'),(152438,4360,'_flexible_templates_0_image','field_6255038c2e6ae_field_6254fdc5efa2a'),(152439,4360,'flexible_templates_0_mob_image','4067'),(152440,4360,'_flexible_templates_0_mob_image','field_625503db2e6af_field_6254fdcbefa2b'),(152441,4360,'flexible_templates_0_icon','4068'),(152442,4360,'_flexible_templates_0_icon','field_6255095042ef2_field_62550482480cb'),(152443,4360,'flexible_templates_0_heading','TEKTeams'),(152444,4360,'_flexible_templates_0_heading','field_6255096442ef3_field_6254fdb2efa27'),(152445,4360,'flexible_templates_0_sub_heading','TEK™ WORLD'),(152446,4360,'_flexible_templates_0_sub_heading','field_6255097642ef4_field_6254fdbaefa28'),(152447,4360,'flexible_templates_1_heading','Gain access to top 1% tech talent with a trusted partner that delivers cloud native solutions and value.'),(152448,4360,'_flexible_templates_1_heading','field_62551ac3a6f96_field_6254fdb2efa27'),(152449,4360,'flexible_templates_1_sub_heading','THE TEAM YOU NEED'),(152450,4360,'_flexible_templates_1_sub_heading','field_62551ae4a6f97_field_6254fdbaefa28'),(152451,4360,'flexible_templates_1_cta','a:3:{s:5:\"title\";s:16:\"Start Innovating\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(152452,4360,'_flexible_templates_1_cta','field_62551b56a6f98_field_62551b3e101c4'),(152453,4360,'flexible_templates_1_copy','The best technology. The best people. Access tailored software engineering teams with industry-specific experience without the hassle of hiring and maintaining internal teams. We understand how hard it is to acquire and retain top talent, and we take the pressure off HR. Focus on your business while we take lead for the delivery and execution of the project.'),(152454,4360,'_flexible_templates_1_copy','field_62551b74a6f99_field_6254fdc0efa29'),(152455,4360,'flexible_templates_2_image','4069'),(152456,4360,'_flexible_templates_2_image','field_625523de9609f_field_6254fdc5efa2a'),(152457,4360,'flexible_templates_2_mob_image','4070'),(152458,4360,'_flexible_templates_2_mob_image','field_625523f4960a0_field_6254fdcbefa2b'),(152459,4360,'flexible_templates_2_icon','4071'),(152460,4360,'_flexible_templates_2_icon','field_6255246d960a1_field_62550482480cb'),(152461,4360,'flexible_templates_2_heading','What are TEKTeams?'),(152462,4360,'_flexible_templates_2_heading','field_62552482960a2_field_6254fdb2efa27'),(152463,4360,'flexible_templates_2_copy','TEKTeams are your dedicated development teams built on Translucent principles that, as part of the TEK ecosystem, combine trust, processes, people, and technology to deliver value.\r\n\r\nTranslucent has created a process that brings together the best people in the industry with various skills to develop and maintain the highest quality software.\r\n\r\nA perfect combination of roles, talent, skillset, and the right work environment.TEKTeams provide the precise expertise your organization needs to execute a project successfully.\r\n
'),(152464,4360,'_flexible_templates_2_copy','field_625525b15629c'),(152465,4360,'flexible_templates_2_content_right','Our onshore/nearshore model combines resources across the Americas to overcome challenges your project might encounter; we work closely alongside your company staff to attain your business goals.\r\n\r\nIncrease the number of resources you have on hand to help you develop and manage intelligent applications and platforms. \r\n\r\nTEKTeams are the most cost-effective way to get the talent you need for your cloud native projects without taking up all of your time or budget.'),(152466,4360,'_flexible_templates_2_content_right','field_625525ba5629d'),(152467,4360,'flexible_templates_3_image','4072'),(152468,4360,'_flexible_templates_3_image','field_62552ada52711_field_6254fdc5efa2a'),(152469,4360,'flexible_templates_3_mob_image','4073'),(152470,4360,'_flexible_templates_3_mob_image','field_62552aed52712_field_6254fdcbefa2b'),(152471,4360,'flexible_templates_3_icon','4074'),(152472,4360,'_flexible_templates_3_icon','field_62552b7652713_field_62550482480cb'),(152473,4360,'flexible_templates_3_heading','Get started with the best resources for your project'),(152474,4360,'_flexible_templates_3_heading','field_62552baf52715_field_6254fdb2efa27'),(152475,4360,'flexible_templates_3_copy','Our tailored software engineering teams help your business develop and manage smarter apps. We match business goals to the right technology and teams to drive better results. With TEKTeams you get access to the best of the best resources for your cloud native projects at a price you can afford, with the capacity to scale as needed, according to your demands. Here is what to expect working with TEKTeams:'),(152476,4360,'_flexible_templates_3_copy','field_62552b8552714_field_6254fdc0efa29'),(152477,4360,'flexible_templates_3_development_team_steps_0_icon','4075'),(152478,4360,'_flexible_templates_3_development_team_steps_0_icon','field_62552cdb784a9_field_62550482480cb'),(152479,4360,'flexible_templates_3_development_team_steps_0_heading','A trusted tech partner'),(152480,4360,'_flexible_templates_3_development_team_steps_0_heading','field_62552ced784aa_field_6254fdb2efa27'),(152481,4360,'flexible_templates_3_development_team_steps_0_copy','

Increase your workforce by partnering with the top 1% teams tailored to your business needs

\r\n

We will explain and document the entire development process and make sure to meet business and project objectives

\r\n

Scale your teams as needed with a global network united as one

'),(152482,4360,'_flexible_templates_3_development_team_steps_0_copy','field_62552cfe784ab_field_6254fdc0efa29'),(152483,4360,'flexible_templates_3_development_team_steps_1_icon','4076'),(152484,4360,'_flexible_templates_3_development_team_steps_1_icon','field_62552cdb784a9_field_62550482480cb'),(152485,4360,'flexible_templates_3_development_team_steps_1_heading','Break down vision into requirements'),(152486,4360,'_flexible_templates_3_development_team_steps_1_heading','field_62552ced784aa_field_6254fdb2efa27'),(152487,4360,'flexible_templates_3_development_team_steps_1_copy','

We will validate your idea with a future vision that is in sync with the realities that your business is currently facing

\r\n

Cloud native solutions make it possible to work within clients\' budgets

\r\n

Planning, execution, support, best practices, and experience in breaking down the concept into a user stories tech road map

'),(152488,4360,'_flexible_templates_3_development_team_steps_1_copy','field_62552cfe784ab_field_6254fdc0efa29'),(152489,4360,'flexible_templates_3_development_team_steps_2_icon','4077'),(152490,4360,'_flexible_templates_3_development_team_steps_2_icon','field_62552cdb784a9_field_62550482480cb'),(152491,4360,'flexible_templates_3_development_team_steps_2_heading','Build your team and start innovating'),(152492,4360,'_flexible_templates_3_development_team_steps_2_heading','field_62552ced784aa_field_6254fdb2efa27'),(152493,4360,'flexible_templates_3_development_team_steps_2_copy',' The Team You Need For Your Cloud Native Project:\r\n

Expanding your workforce is easier than you think, with TEKTeams, you can quickly and affordably grow your company with teams to cover all of your business needs

\r\n

With the right team behind your project, you\'ll get better results, more quickly

\r\n\r\n'),(152494,4360,'_flexible_templates_3_development_team_steps_2_copy','field_62552cfe784ab_field_6254fdc0efa29'),(152495,4360,'flexible_templates_3_development_team_steps','3'),(152496,4360,'_flexible_templates_3_development_team_steps','field_62552cbb784a8'),(152497,4360,'flexible_templates_3_cta','a:3:{s:5:\"title\";s:11:\"Gain Access\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(152498,4360,'_flexible_templates_3_cta','field_62552c6a784a7_field_62551b3e101c4'),(152499,4360,'flexible_templates_4_image','4078'),(152500,4360,'_flexible_templates_4_image','field_625538ef16bb0_field_6254fdc5efa2a'),(152501,4360,'flexible_templates_4_mob_image','4079'),(152502,4360,'_flexible_templates_4_mob_image','field_6255391616bb1_field_6254fdcbefa2b'),(152503,4360,'flexible_templates_4_icon','4080'),(152504,4360,'_flexible_templates_4_icon','field_62553d28bca93_field_62550482480cb'),(152505,4360,'flexible_templates_4_heading','Benefits of TEKTeams'),(152506,4360,'_flexible_templates_4_heading','field_6255397e16bb2_field_6254fdb2efa27'),(152507,4360,'flexible_templates_4_development_team_steps_0_icon','4086'),(152508,4360,'_flexible_templates_4_development_team_steps_0_icon','field_625539a816bb4_field_62550482480cb'),(152509,4360,'flexible_templates_4_development_team_steps_0_heading','Fully Managed'),(152510,4360,'_flexible_templates_4_development_team_steps_0_heading','field_625539a816bb5_field_6254fdb2efa27'),(152511,4360,'flexible_templates_4_development_team_steps_0_copy','Translucent is responsible for hiring, managing, and delivering technical expertise from start to finish. Avoid hiring and team management issues.'),(152512,4360,'_flexible_templates_4_development_team_steps_0_copy','field_625539a816bb6_field_6254fdc0efa29'),(152513,4360,'flexible_templates_4_development_team_steps_1_icon','4085'),(152514,4360,'_flexible_templates_4_development_team_steps_1_icon','field_625539a816bb4_field_62550482480cb'),(152515,4360,'flexible_templates_4_development_team_steps_1_heading','Remote'),(152516,4360,'_flexible_templates_4_development_team_steps_1_heading','field_625539a816bb5_field_6254fdb2efa27'),(152517,4360,'flexible_templates_4_development_team_steps_1_copy','Completely remote. Save office space and gain more time for your employees. Over the last 12 years, we have perfected a remote software development system called TEKProcess.'),(152518,4360,'_flexible_templates_4_development_team_steps_1_copy','field_625539a816bb6_field_6254fdc0efa29'),(152519,4360,'flexible_templates_4_development_team_steps_2_icon','4084'),(152520,4360,'_flexible_templates_4_development_team_steps_2_icon','field_625539a816bb4_field_62550482480cb'),(152521,4360,'flexible_templates_4_development_team_steps_2_heading','Access to Translucent Experts'),(152522,4360,'_flexible_templates_4_development_team_steps_2_heading','field_625539a816bb5_field_6254fdb2efa27'),(152523,4360,'flexible_templates_4_development_team_steps_2_copy','Part of working with TEKTeams is access to our software architects and tech leads at no extra cost.'),(152524,4360,'_flexible_templates_4_development_team_steps_2_copy','field_625539a816bb6_field_6254fdc0efa29'),(152525,4360,'flexible_templates_4_development_team_steps_3_icon','4083'),(152526,4360,'_flexible_templates_4_development_team_steps_3_icon','field_625539a816bb4_field_62550482480cb'),(152527,4360,'flexible_templates_4_development_team_steps_3_heading','Access to Top Tech Talent'),(152528,4360,'_flexible_templates_4_development_team_steps_3_heading','field_625539a816bb5_field_6254fdb2efa27'),(152529,4360,'flexible_templates_4_development_team_steps_3_copy','Our proven hiring and continuous employee improvement processes ensure that only top talent works on each project.'),(152530,4360,'_flexible_templates_4_development_team_steps_3_copy','field_625539a816bb6_field_6254fdc0efa29'),(152531,4360,'flexible_templates_4_development_team_steps_4_icon','4082'),(152532,4360,'_flexible_templates_4_development_team_steps_4_icon','field_625539a816bb4_field_62550482480cb'),(152533,4360,'flexible_templates_4_development_team_steps_4_heading','Team Scalability'),(152534,4360,'_flexible_templates_4_development_team_steps_4_heading','field_625539a816bb5_field_6254fdb2efa27'),(152535,4360,'flexible_templates_4_development_team_steps_4_copy','On-demand resources are ready when you need to scale the team to meet business demands.'),(152536,4360,'_flexible_templates_4_development_team_steps_4_copy','field_625539a816bb6_field_6254fdc0efa29'),(152537,4360,'flexible_templates_4_development_team_steps_5_icon','4081'),(152538,4360,'_flexible_templates_4_development_team_steps_5_icon','field_625539a816bb4_field_62550482480cb'),(152539,4360,'flexible_templates_4_development_team_steps_5_heading','Start Your Journey Now'),(152540,4360,'_flexible_templates_4_development_team_steps_5_heading','field_625539a816bb5_field_6254fdb2efa27'),(152541,4360,'flexible_templates_4_development_team_steps_5_copy','Our TEKTeams are ready to help you now.'),(152542,4360,'_flexible_templates_4_development_team_steps_5_copy','field_625539a816bb6_field_6254fdc0efa29'),(152543,4360,'flexible_templates_4_development_team_steps','6'),(152544,4360,'_flexible_templates_4_development_team_steps','field_625539a816bb3'),(152545,4360,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:13:\"Start Scaling\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(152546,4360,'_flexible_templates_4_cta','field_625539ce16bb7_field_62551b3e101c4'),(152547,4360,'flexible_templates_5_image','4087'),(152548,4360,'_flexible_templates_5_image','field_62553e7d5dd54_field_6254fdc5efa2a'),(152549,4360,'flexible_templates_5_mob_image','4088'),(152550,4360,'_flexible_templates_5_mob_image','field_62553eab5dd55_field_6254fdcbefa2b'),(152551,4360,'flexible_templates_5_icon','4089'),(152552,4360,'_flexible_templates_5_icon','field_62553eee5dd56_field_62550482480cb'),(152553,4360,'flexible_templates_5_heading','The team you need for your cloud native project'),(152554,4360,'_flexible_templates_5_heading','field_62553f075dd57_field_6254fdb2efa27'),(152555,4360,'flexible_templates_5_heading_mobile','The team you need for your cloud native project'),(152556,4360,'_flexible_templates_5_heading_mobile','field_62553f185dd58'),(152557,4360,'flexible_templates_5_copy','We help companies build and scale smart applications, working together to achieve the best results by pairing them with our award-winning team of experts. That includes project managers, senior developers, and QA specialists who have been handpicked to execute on specific goals.'),(152558,4360,'_flexible_templates_5_copy','field_62553f315dd59_field_6254fdc0efa29'),(152559,4360,'flexible_templates_5_development_team_steps_0_icon','4090'),(152560,4360,'_flexible_templates_5_development_team_steps_0_icon','field_625540b262816_field_62550482480cb'),(152561,4360,'flexible_templates_5_development_team_steps_0_heading','Frontend Engineers'),(152562,4360,'_flexible_templates_5_development_team_steps_0_heading','field_625540b262817_field_6254fdb2efa27'),(152563,4360,'flexible_templates_5_development_team_steps_0_copy','Responsible for the development of the user interface of an application. They are always in demand, but with TEKTeams you get access on demand. '),(152564,4360,'_flexible_templates_5_development_team_steps_0_copy','field_625540b262818_field_6254fdc0efa29'),(152565,4360,'flexible_templates_5_development_team_steps_1_icon','4091'),(152566,4360,'_flexible_templates_5_development_team_steps_1_icon','field_625540b262816_field_62550482480cb'),(152567,4360,'flexible_templates_5_development_team_steps_1_heading','QA Engineers'),(152568,4360,'_flexible_templates_5_development_team_steps_1_heading','field_625540b262817_field_6254fdb2efa27'),(152569,4360,'flexible_templates_5_development_team_steps_1_copy','The quality of a product is vital to its success, and without a quality assurance engineer, that quality is compromised. Our QA engineers ensure each product is thoroughly tested to provide the best possible user experience.'),(152570,4360,'_flexible_templates_5_development_team_steps_1_copy','field_625540b262818_field_6254fdc0efa29'),(152571,4360,'flexible_templates_5_development_team_steps_2_icon','4092'),(152572,4360,'_flexible_templates_5_development_team_steps_2_icon','field_625540b262816_field_62550482480cb'),(152573,4360,'flexible_templates_5_development_team_steps_2_heading','Business Analysts'),(152574,4360,'_flexible_templates_5_development_team_steps_2_heading','field_625540b262817_field_6254fdb2efa27'),(152575,4360,'flexible_templates_5_development_team_steps_2_copy','These agile workers help bridge the gap between the IT team and the business, improving overall efficiency through data analysis of processes, products, services, and software.'),(152576,4360,'_flexible_templates_5_development_team_steps_2_copy','field_625540b262818_field_6254fdc0efa29'),(152577,4360,'flexible_templates_5_development_team_steps_3_icon','4093'),(152578,4360,'_flexible_templates_5_development_team_steps_3_icon','field_625540b262816_field_62550482480cb'),(152579,4360,'flexible_templates_5_development_team_steps_3_heading','Backend Engineers'),(152580,4360,'_flexible_templates_5_development_team_steps_3_heading','field_625540b262817_field_6254fdb2efa27'),(152581,4360,'flexible_templates_5_development_team_steps_3_copy','Backend engineers build the structure of a software application. They work on designing, building, and maintaining the server components of web applications. '),(152582,4360,'_flexible_templates_5_development_team_steps_3_copy','field_625540b262818_field_6254fdc0efa29'),(152583,4360,'flexible_templates_5_development_team_steps_4_icon','4094'),(152584,4360,'_flexible_templates_5_development_team_steps_4_icon','field_625540b262816_field_62550482480cb'),(152585,4360,'flexible_templates_5_development_team_steps_4_heading','UX/UI Designers'),(152586,4360,'_flexible_templates_5_development_team_steps_4_heading','field_625540b262817_field_6254fdb2efa27'),(152587,4360,'flexible_templates_5_development_team_steps_4_copy','Responsible for creating user-friendly interfaces making complex technical products intuitive, simple, and engaging. '),(152588,4360,'_flexible_templates_5_development_team_steps_4_copy','field_625540b262818_field_6254fdc0efa29'),(152589,4360,'flexible_templates_5_development_team_steps_5_icon','4095'),(152590,4360,'_flexible_templates_5_development_team_steps_5_icon','field_625540b262816_field_62550482480cb'),(152591,4360,'flexible_templates_5_development_team_steps_5_heading','Product Owners'),(152592,4360,'_flexible_templates_5_development_team_steps_5_heading','field_625540b262817_field_6254fdb2efa27'),(152593,4360,'flexible_templates_5_development_team_steps_5_copy','Agile leaders of the development team, at the center of every development cycle. They will define stories, organize and prioritize backlogs, and monitor the entire development process.\r\n'),(152594,4360,'_flexible_templates_5_development_team_steps_5_copy','field_625540b262818_field_6254fdc0efa29'),(152595,4360,'flexible_templates_5_development_team_steps_6_icon','4096'),(152596,4360,'_flexible_templates_5_development_team_steps_6_icon','field_625540b262816_field_62550482480cb'),(152597,4360,'flexible_templates_5_development_team_steps_6_heading','Data/ML Engineers'),(152598,4360,'_flexible_templates_5_development_team_steps_6_heading','field_625540b262817_field_6254fdb2efa27'),(152599,4360,'flexible_templates_5_development_team_steps_6_copy','Highly skilled software engineers and data scientists who develop AI systems that use large data sets to research, design, and develop self-running software to automate predictive models.\r\n'),(152600,4360,'_flexible_templates_5_development_team_steps_6_copy','field_625540b262818_field_6254fdc0efa29'),(152601,4360,'flexible_templates_5_development_team_steps_7_icon','4097'),(152602,4360,'_flexible_templates_5_development_team_steps_7_icon','field_625540b262816_field_62550482480cb'),(152603,4360,'flexible_templates_5_development_team_steps_7_heading','SRE/DevOps Engineers'),(152604,4360,'_flexible_templates_5_development_team_steps_7_heading','field_625540b262817_field_6254fdb2efa27'),(152605,4360,'flexible_templates_5_development_team_steps_7_copy','DevOps engineers ensure that all development is done in line with the company\'s needs and potential future needs by streamlining the software creation, updates, and deployment process. This can help prevent wasting time and resources on features that are not needed or used.\r\n'),(152606,4360,'_flexible_templates_5_development_team_steps_7_copy','field_625540b262818_field_6254fdc0efa29'),(152607,4360,'flexible_templates_5_development_team_steps_8_icon','4098'),(152608,4360,'_flexible_templates_5_development_team_steps_8_icon','field_625540b262816_field_62550482480cb'),(152609,4360,'flexible_templates_5_development_team_steps_8_heading','Scrum Masters'),(152610,4360,'_flexible_templates_5_development_team_steps_8_heading','field_625540b262817_field_6254fdb2efa27'),(152611,4360,'flexible_templates_5_development_team_steps_8_copy','These team leaders are are accountable for getting teams to perform at their highest levels by managing the process. They will facilitating meetings, improving workflow by removing any bottlenecks, and work with the product owner to ensure the product backlog is in good shape and ready for the next sprint.'),(152612,4360,'_flexible_templates_5_development_team_steps_8_copy','field_625540b262818_field_6254fdc0efa29'),(152613,4360,'flexible_templates_5_development_team_steps','9'),(152614,4360,'_flexible_templates_5_development_team_steps','field_625540b262815'),(152615,4360,'flexible_templates_5_cta','a:3:{s:5:\"title\";s:15:\"Build Your Team\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(152616,4360,'_flexible_templates_5_cta','field_6255410462819_field_62551b3e101c4'),(152617,4360,'flexible_templates_6_heading','A better chance at success with TEKTeams'),(152618,4360,'_flexible_templates_6_heading','field_62554b91172d7_field_6254fdb2efa27'),(152619,4360,'flexible_templates_6_sub_heading','Dev Shop vs Offshore vs In-house vs TEKTeams'),(152620,4360,'_flexible_templates_6_sub_heading','field_62554ba5172d8_field_6254fdbaefa28'),(152621,4360,'flexible_templates_6_icon','4099'),(152622,4360,'_flexible_templates_6_icon','field_62554d69172e1_field_62550482480cb'),(152623,4360,'flexible_templates_6_differential_translucent_header_0_heading','Your Needs'),(152624,4360,'_flexible_templates_6_differential_translucent_header_0_heading','field_625688668727a'),(152625,4360,'flexible_templates_6_differential_translucent_header_0_color','#152649'),(152626,4360,'_flexible_templates_6_differential_translucent_header_0_color','field_62568e42de80b'),(152627,4360,'flexible_templates_6_differential_translucent_header_1_heading','Working with a Dev Shop'),(152628,4360,'_flexible_templates_6_differential_translucent_header_1_heading','field_625688668727a'),(152629,4360,'flexible_templates_6_differential_translucent_header_1_color','#152649'),(152630,4360,'_flexible_templates_6_differential_translucent_header_1_color','field_62568e42de80b'),(152631,4360,'flexible_templates_6_differential_translucent_header_2_heading','Working with Offshore Teams'),(152632,4360,'_flexible_templates_6_differential_translucent_header_2_heading','field_625688668727a'),(152633,4360,'flexible_templates_6_differential_translucent_header_2_color','#152649'),(152634,4360,'_flexible_templates_6_differential_translucent_header_2_color','field_62568e42de80b'),(152635,4360,'flexible_templates_6_differential_translucent_header_3_heading','Hiring In-house Developers'),(152636,4360,'_flexible_templates_6_differential_translucent_header_3_heading','field_625688668727a'),(152637,4360,'flexible_templates_6_differential_translucent_header_3_color','#152649'),(152638,4360,'_flexible_templates_6_differential_translucent_header_3_color','field_62568e42de80b'),(152639,4360,'flexible_templates_6_differential_translucent_header_4_heading','TEKTeams'),(152640,4360,'_flexible_templates_6_differential_translucent_header_4_heading','field_625688668727a'),(152641,4360,'flexible_templates_6_differential_translucent_header_4_color','#24c1ff'),(152642,4360,'_flexible_templates_6_differential_translucent_header_4_color','field_62568e42de80b'),(152643,4360,'flexible_templates_6_differential_translucent_header','5'),(152644,4360,'_flexible_templates_6_differential_translucent_header','field_6256884687279'),(152645,4360,'flexible_templates_6_differential_translucent_0_heading_1','1'),(152646,4360,'_flexible_templates_6_differential_translucent_0_heading_1','field_625689c138821'),(152647,4360,'flexible_templates_6_differential_translucent_0_column_1','Dedicated, custom-built teams'),(152648,4360,'_flexible_templates_6_differential_translucent_0_column_1','field_62554d45172dc'),(152649,4360,'flexible_templates_6_differential_translucent_0_heading_2','Working with a Dev Shop'),(152650,4360,'_flexible_templates_6_differential_translucent_0_heading_2','field_62568a29727b5'),(152651,4360,'flexible_templates_6_differential_translucent_0_column_2','Sometimes'),(152652,4360,'_flexible_templates_6_differential_translucent_0_column_2','field_62554d4a172dd'),(152653,4360,'flexible_templates_6_differential_translucent_0_column_2_color','#7080a7'),(152654,4360,'_flexible_templates_6_differential_translucent_0_column_2_color','field_62554fcda0e79'),(152655,4360,'flexible_templates_6_differential_translucent_0_heading_3','3'),(152656,4360,'_flexible_templates_6_differential_translucent_0_heading_3','field_62568a30727b6'),(152657,4360,'flexible_templates_6_differential_translucent_0_column_3','Rare'),(152658,4360,'_flexible_templates_6_differential_translucent_0_column_3','field_62554d4d172de'),(152659,4360,'flexible_templates_6_differential_translucent_0_column_3_color','#ff555f'),(152660,4360,'_flexible_templates_6_differential_translucent_0_column_3_color','field_62554ff6a0e7a'),(152661,4360,'flexible_templates_6_differential_translucent_0_heading_4','4'),(152662,4360,'_flexible_templates_6_differential_translucent_0_heading_4','field_62568a37727b7'),(152663,4360,'flexible_templates_6_differential_translucent_0_column_4','Always'),(152664,4360,'_flexible_templates_6_differential_translucent_0_column_4','field_62554d4f172df'),(152665,4360,'flexible_templates_6_differential_translucent_0_column_4_color','#28d9cb'),(152666,4360,'_flexible_templates_6_differential_translucent_0_column_4_color','field_62555028a0e7c'),(152667,4360,'flexible_templates_6_differential_translucent_0_heading_5','5'),(152668,4360,'_flexible_templates_6_differential_translucent_0_heading_5','field_62568a40727b8'),(152669,4360,'flexible_templates_6_differential_translucent_0_column_5','Always'),(152670,4360,'_flexible_templates_6_differential_translucent_0_column_5','field_62555011a0e7b'),(152671,4360,'flexible_templates_6_differential_translucent_0_column_5_color','#24c1ff'),(152672,4360,'_flexible_templates_6_differential_translucent_0_column_5_color','field_6255503aa0e7d'),(152673,4360,'flexible_templates_6_differential_translucent_1_heading_1','6'),(152674,4360,'_flexible_templates_6_differential_translucent_1_heading_1','field_625689c138821'),(152675,4360,'flexible_templates_6_differential_translucent_1_column_1','Fast turnarounds (speed to market)'),(152676,4360,'_flexible_templates_6_differential_translucent_1_column_1','field_62554d45172dc'),(152677,4360,'flexible_templates_6_differential_translucent_1_heading_2','7'),(152678,4360,'_flexible_templates_6_differential_translucent_1_heading_2','field_62568a29727b5'),(152679,4360,'flexible_templates_6_differential_translucent_1_column_2','Rare'),(152680,4360,'_flexible_templates_6_differential_translucent_1_column_2','field_62554d4a172dd'),(152681,4360,'flexible_templates_6_differential_translucent_1_column_2_color','#ff555f'),(152682,4360,'_flexible_templates_6_differential_translucent_1_column_2_color','field_62554fcda0e79'),(152683,4360,'flexible_templates_6_differential_translucent_1_heading_3','8'),(152684,4360,'_flexible_templates_6_differential_translucent_1_heading_3','field_62568a30727b6'),(152685,4360,'flexible_templates_6_differential_translucent_1_column_3','Sometimes'),(152686,4360,'_flexible_templates_6_differential_translucent_1_column_3','field_62554d4d172de'),(152687,4360,'flexible_templates_6_differential_translucent_1_column_3_color','#7080a7'),(152688,4360,'_flexible_templates_6_differential_translucent_1_column_3_color','field_62554ff6a0e7a'),(152689,4360,'flexible_templates_6_differential_translucent_1_heading_4','9'),(152690,4360,'_flexible_templates_6_differential_translucent_1_heading_4','field_62568a37727b7'),(152691,4360,'flexible_templates_6_differential_translucent_1_column_4','Sometimes'),(152692,4360,'_flexible_templates_6_differential_translucent_1_column_4','field_62554d4f172df'),(152693,4360,'flexible_templates_6_differential_translucent_1_column_4_color','#7080a7'),(152694,4360,'_flexible_templates_6_differential_translucent_1_column_4_color','field_62555028a0e7c'),(152695,4360,'flexible_templates_6_differential_translucent_1_heading_5','10'),(152696,4360,'_flexible_templates_6_differential_translucent_1_heading_5','field_62568a40727b8'),(152697,4360,'flexible_templates_6_differential_translucent_1_column_5','Always'),(152698,4360,'_flexible_templates_6_differential_translucent_1_column_5','field_62555011a0e7b'),(152699,4360,'flexible_templates_6_differential_translucent_1_column_5_color','#24c1ff'),(152700,4360,'_flexible_templates_6_differential_translucent_1_column_5_color','field_6255503aa0e7d'),(152701,4360,'flexible_templates_6_differential_translucent_2_heading_1','11'),(152702,4360,'_flexible_templates_6_differential_translucent_2_heading_1','field_625689c138821'),(152703,4360,'flexible_templates_6_differential_translucent_2_column_1','Full-stack engineers'),(152704,4360,'_flexible_templates_6_differential_translucent_2_column_1','field_62554d45172dc'),(152705,4360,'flexible_templates_6_differential_translucent_2_heading_2','12'),(152706,4360,'_flexible_templates_6_differential_translucent_2_heading_2','field_62568a29727b5'),(152707,4360,'flexible_templates_6_differential_translucent_2_column_2','Sometimes'),(152708,4360,'_flexible_templates_6_differential_translucent_2_column_2','field_62554d4a172dd'),(152709,4360,'flexible_templates_6_differential_translucent_2_column_2_color','#7080a7'),(152710,4360,'_flexible_templates_6_differential_translucent_2_column_2_color','field_62554fcda0e79'),(152711,4360,'flexible_templates_6_differential_translucent_2_heading_3','13'),(152712,4360,'_flexible_templates_6_differential_translucent_2_heading_3','field_62568a30727b6'),(152713,4360,'flexible_templates_6_differential_translucent_2_column_3','Rare'),(152714,4360,'_flexible_templates_6_differential_translucent_2_column_3','field_62554d4d172de'),(152715,4360,'flexible_templates_6_differential_translucent_2_column_3_color','#ff555f'),(152716,4360,'_flexible_templates_6_differential_translucent_2_column_3_color','field_62554ff6a0e7a'),(152717,4360,'flexible_templates_6_differential_translucent_2_heading_4','14'),(152718,4360,'_flexible_templates_6_differential_translucent_2_heading_4','field_62568a37727b7'),(152719,4360,'flexible_templates_6_differential_translucent_2_column_4','Rare'),(152720,4360,'_flexible_templates_6_differential_translucent_2_column_4','field_62554d4f172df'),(152721,4360,'flexible_templates_6_differential_translucent_2_column_4_color','#ff555f'),(152722,4360,'_flexible_templates_6_differential_translucent_2_column_4_color','field_62555028a0e7c'),(152723,4360,'flexible_templates_6_differential_translucent_2_heading_5','15'),(152724,4360,'_flexible_templates_6_differential_translucent_2_heading_5','field_62568a40727b8'),(152725,4360,'flexible_templates_6_differential_translucent_2_column_5','Always'),(152726,4360,'_flexible_templates_6_differential_translucent_2_column_5','field_62555011a0e7b'),(152727,4360,'flexible_templates_6_differential_translucent_2_column_5_color','#24c1ff'),(152728,4360,'_flexible_templates_6_differential_translucent_2_column_5_color','field_6255503aa0e7d'),(152729,4360,'flexible_templates_6_differential_translucent_3_heading_1','16'),(152730,4360,'_flexible_templates_6_differential_translucent_3_heading_1','field_625689c138821'),(152731,4360,'flexible_templates_6_differential_translucent_3_column_1','Reliable, battle-tested process'),(152732,4360,'_flexible_templates_6_differential_translucent_3_column_1','field_62554d45172dc'),(152733,4360,'flexible_templates_6_differential_translucent_3_heading_2','17'),(152734,4360,'_flexible_templates_6_differential_translucent_3_heading_2','field_62568a29727b5'),(152735,4360,'flexible_templates_6_differential_translucent_3_column_2','Sometimes'),(152736,4360,'_flexible_templates_6_differential_translucent_3_column_2','field_62554d4a172dd'),(152737,4360,'flexible_templates_6_differential_translucent_3_column_2_color','#7080a7'),(152738,4360,'_flexible_templates_6_differential_translucent_3_column_2_color','field_62554fcda0e79'),(152739,4360,'flexible_templates_6_differential_translucent_3_heading_3','18'),(152740,4360,'_flexible_templates_6_differential_translucent_3_heading_3','field_62568a30727b6'),(152741,4360,'flexible_templates_6_differential_translucent_3_column_3','Rare'),(152742,4360,'_flexible_templates_6_differential_translucent_3_column_3','field_62554d4d172de'),(152743,4360,'flexible_templates_6_differential_translucent_3_column_3_color','#ff555f'),(152744,4360,'_flexible_templates_6_differential_translucent_3_column_3_color','field_62554ff6a0e7a'),(152745,4360,'flexible_templates_6_differential_translucent_3_heading_4','19'),(152746,4360,'_flexible_templates_6_differential_translucent_3_heading_4','field_62568a37727b7'),(152747,4360,'flexible_templates_6_differential_translucent_3_column_4','Rare'),(152748,4360,'_flexible_templates_6_differential_translucent_3_column_4','field_62554d4f172df'),(152749,4360,'flexible_templates_6_differential_translucent_3_column_4_color','#ff555f'),(152750,4360,'_flexible_templates_6_differential_translucent_3_column_4_color','field_62555028a0e7c'),(152751,4360,'flexible_templates_6_differential_translucent_3_heading_5','Working with Translucent'),(152752,4360,'_flexible_templates_6_differential_translucent_3_heading_5','field_62568a40727b8'),(152753,4360,'flexible_templates_6_differential_translucent_3_column_5','Always'),(152754,4360,'_flexible_templates_6_differential_translucent_3_column_5','field_62555011a0e7b'),(152755,4360,'flexible_templates_6_differential_translucent_3_column_5_color','#24c1ff'),(152756,4360,'_flexible_templates_6_differential_translucent_3_column_5_color','field_6255503aa0e7d'),(152757,4360,'flexible_templates_6_differential_translucent','5'),(152758,4360,'_flexible_templates_6_differential_translucent','field_62554c30172da'),(152759,4360,'flexible_templates_7_heading','Be smart. Be efficient. Be agile.'),(152760,4360,'_flexible_templates_7_heading','field_625565e14146d_field_6254fdb2efa27'),(152761,4360,'flexible_templates_7_cta','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(152762,4360,'_flexible_templates_7_cta','field_625565fa4146e_field_62551b3e101c4'),(152763,4360,'flexible_templates_6_differential_translucent_4_heading_1','20'),(152764,4360,'_flexible_templates_6_differential_translucent_4_heading_1','field_625689c138821'),(152765,4360,'flexible_templates_6_differential_translucent_4_column_1','No Recruiting Fees'),(152766,4360,'_flexible_templates_6_differential_translucent_4_column_1','field_62554d45172dc'),(152767,4360,'flexible_templates_6_differential_translucent_4_heading_2','21'),(152768,4360,'_flexible_templates_6_differential_translucent_4_heading_2','field_62568a29727b5'),(152769,4360,'flexible_templates_6_differential_translucent_4_column_2','Always'),(152770,4360,'_flexible_templates_6_differential_translucent_4_column_2','field_62554d4a172dd'),(152771,4360,'flexible_templates_6_differential_translucent_4_column_2_color','#28d9cb'),(152772,4360,'_flexible_templates_6_differential_translucent_4_column_2_color','field_62554fcda0e79'),(152773,4360,'flexible_templates_6_differential_translucent_4_heading_3','22'),(152774,4360,'_flexible_templates_6_differential_translucent_4_heading_3','field_62568a30727b6'),(152775,4360,'flexible_templates_6_differential_translucent_4_column_3','Sometimes'),(152776,4360,'_flexible_templates_6_differential_translucent_4_column_3','field_62554d4d172de'),(152777,4360,'flexible_templates_6_differential_translucent_4_column_3_color','#7080a7'),(152778,4360,'_flexible_templates_6_differential_translucent_4_column_3_color','field_62554ff6a0e7a'),(152779,4360,'flexible_templates_6_differential_translucent_4_heading_4','23'),(152780,4360,'_flexible_templates_6_differential_translucent_4_heading_4','field_62568a37727b7'),(152781,4360,'flexible_templates_6_differential_translucent_4_column_4','Rare'),(152782,4360,'_flexible_templates_6_differential_translucent_4_column_4','field_62554d4f172df'),(152783,4360,'flexible_templates_6_differential_translucent_4_column_4_color','#ff555f'),(152784,4360,'_flexible_templates_6_differential_translucent_4_column_4_color','field_62555028a0e7c'),(152785,4360,'flexible_templates_6_differential_translucent_4_heading_5','24'),(152786,4360,'_flexible_templates_6_differential_translucent_4_heading_5','field_62568a40727b8'),(152787,4360,'flexible_templates_6_differential_translucent_4_column_5','Always'),(152788,4360,'_flexible_templates_6_differential_translucent_4_column_5','field_62555011a0e7b'),(152789,4360,'flexible_templates_6_differential_translucent_4_column_5_color','#24c1ff'),(152790,4360,'_flexible_templates_6_differential_translucent_4_column_5_color','field_6255503aa0e7d'),(152800,4361,'_pinterest_shares','0'),(152801,4361,'_total_shares','0'),(152803,4362,'_pinterest_shares','0'),(152804,4362,'_total_shares','0'),(152806,4363,'_pinterest_shares','0'),(152807,4363,'_total_shares','0'),(152809,4364,'_pinterest_shares','0'),(152810,4364,'_total_shares','0'),(152818,4365,'_wp_attached_file','2022/07/Union-21-min.png'),(152819,4365,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:390;s:6:\"height\";i:164;s:4:\"file\";s:24:\"2022/07/Union-21-min.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Union-21-min-300x126.png\";s:5:\"width\";i:300;s:6:\"height\";i:126;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Union-21-min-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:{}}}'),(152820,4365,'_imagify_optimization_level','0'),(152821,4365,'_imagify_status','success'),(152822,4365,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23413;s:14:\"optimized_size\";i:23398;s:7:\"percent\";d:0.06;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13772;s:14:\"optimized_size\";i:3148;s:7:\"percent\";d:77.14;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22651;s:14:\"optimized_size\";i:9332;s:7:\"percent\";d:58.8;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:23413;s:14:\"optimized_size\";i:12516;s:7:\"percent\";d:46.54;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22651;s:14:\"optimized_size\";i:14835;s:7:\"percent\";d:34.51;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13772;s:14:\"optimized_size\";i:8871;s:7:\"percent\";d:35.59;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:119672;s:14:\"optimized_size\";i:72100;s:7:\"percent\";d:39.75;}}'),(152823,4366,'_wp_attached_file','2022/07/app-banner-min.png'),(152824,4366,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:338;s:4:\"file\";s:26:\"2022/07/app-banner-min.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"app-banner-min-300x53.png\";s:5:\"width\";i:300;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"app-banner-min-1024x180.png\";s:5:\"width\";i:1024;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"app-banner-min-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:\"app-banner-min-768x135.png\";s:5:\"width\";i:768;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"app-banner-min-1536x270.png\";s:5:\"width\";i:1536;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:26:\"app-banner-min-500x338.png\";s:5:\"width\";i:500;s:6:\"height\";i:338;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:{}}}'),(152825,4366,'_imagify_optimization_level','0'),(152826,4366,'_imagify_status','already_optimized'),(152827,4366,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:163518;s:14:\"optimized_size\";i:40812;s:7:\"percent\";d:75.04;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:249247;s:14:\"optimized_size\";i:56598;s:7:\"percent\";d:77.29;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:54390;s:14:\"optimized_size\";i:19706;s:7:\"percent\";d:63.77;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19810;s:14:\"optimized_size\";i:4830;s:7:\"percent\";d:75.62;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:102322;s:14:\"optimized_size\";i:30376;s:7:\"percent\";d:70.31;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8103;s:14:\"optimized_size\";i:4378;s:7:\"percent\";d:45.97;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:229893;s:14:\"optimized_size\";i:107510;s:7:\"percent\";d:53.23;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:827283;s:14:\"optimized_size\";i:264210;s:7:\"percent\";d:68.06;}}'),(152828,4338,'flexible_templates_0_mobile_image','4365'),(152829,4338,'_flexible_templates_0_mobile_image','field_62c409bd624b6'),(152830,4338,'flexible_templates_0_image','4366'),(152831,4338,'_flexible_templates_0_image','field_62c409cf624b7'),(152832,4338,'flexible_templates_0_heading','CLOUD NATIVE SOLUTIONS'),(152833,4338,'_flexible_templates_0_heading','field_62c409db624b8'),(152834,4338,'flexible_templates_0_sub_heading','Cloud Native DevOps Consulting'),(152835,4338,'_flexible_templates_0_sub_heading','field_62c409e8624b9'),(152836,4338,'flexible_templates','a:9:{i:0;s:28:\"cloud_native_solution_banner\";i:1;s:36:\"cloud_native_solution_drive_business\";i:2;s:29:\"cloud_native_solution_journey\";i:3;s:29:\"cloud_native_solution_service\";i:4;s:27:\"cloud_native_solution_build\";i:5;s:42:\"cloud_native_solution_book_consulation_now\";i:6;s:33:\"cloud_native_solution_data_driven\";i:7;s:36:\"cloud_native_solution_infrastructure\";i:8;s:17:\"lets_talk_section\";}'),(152837,4338,'_flexible_templates','field_6254f4d84ef9b'),(152838,4367,'flexible_templates_0_mobile_image','4365'),(152839,4367,'_flexible_templates_0_mobile_image','field_62c409bd624b6'),(152840,4367,'flexible_templates_0_image','4366'),(152841,4367,'_flexible_templates_0_image','field_62c409cf624b7'),(152842,4367,'flexible_templates_0_heading','CLOUD NATIVE SOLUTIONS'),(152843,4367,'_flexible_templates_0_heading','field_62c409db624b8'),(152844,4367,'flexible_templates_0_sub_heading','Cloud Native DevOps Consulting'),(152845,4367,'_flexible_templates_0_sub_heading','field_62c409e8624b9'),(152846,4367,'flexible_templates','a:1:{i:0;s:28:\"cloud_native_solution_banner\";}'),(152847,4367,'_flexible_templates','field_6254f4d84ef9b'),(152854,4369,'_pinterest_shares','0'),(152855,4369,'_total_shares','0'),(152857,4370,'_pinterest_shares','0'),(152858,4370,'_total_shares','0'),(152860,4371,'_pinterest_shares','0'),(152861,4371,'_total_shares','0'),(152863,4372,'_pinterest_shares','0'),(152864,4372,'_total_shares','0'),(152866,4373,'_pinterest_shares','0'),(152867,4373,'_total_shares','0'),(152869,4374,'_pinterest_shares','0'),(152870,4374,'_total_shares','0'),(152872,4375,'_pinterest_shares','0'),(152873,4375,'_total_shares','0'),(152875,4376,'_pinterest_shares','0'),(152876,4376,'_total_shares','0'),(152878,4377,'_pinterest_shares','0'),(152879,4377,'_total_shares','0'),(152881,4378,'_pinterest_shares','0'),(152882,4378,'_total_shares','0'),(152884,4379,'_pinterest_shares','0'),(152885,4379,'_total_shares','0'),(152887,4380,'_pinterest_shares','0'),(152888,4380,'_total_shares','0'),(152890,4381,'_pinterest_shares','0'),(152891,4381,'_total_shares','0'),(152896,4383,'_pinterest_shares','0'),(152897,4383,'_total_shares','0'),(152899,4384,'_pinterest_shares','0'),(152900,4384,'_total_shares','0'),(152902,4385,'_pinterest_shares','0'),(152903,4385,'_total_shares','0'),(152905,4386,'_pinterest_shares','0'),(152906,4386,'_total_shares','0'),(152911,4388,'_pinterest_shares','0'),(152912,4388,'_total_shares','0'),(152914,4389,'_pinterest_shares','0'),(152915,4389,'_total_shares','0'),(152917,4390,'_pinterest_shares','0'),(152918,4390,'_total_shares','0'),(152923,4392,'_pinterest_shares','0'),(152924,4392,'_total_shares','0'),(152926,4393,'_pinterest_shares','0'),(152927,4393,'_total_shares','0'),(152929,4394,'_pinterest_shares','0'),(152930,4394,'_total_shares','0'),(152932,4395,'_pinterest_shares','0'),(152933,4395,'_total_shares','0'),(152935,4396,'_pinterest_shares','0'),(152936,4396,'_total_shares','0'),(152938,4397,'_pinterest_shares','0'),(152939,4397,'_total_shares','0'),(152941,4398,'_pinterest_shares','0'),(152942,4398,'_total_shares','0'),(152944,4399,'_pinterest_shares','0'),(152945,4399,'_total_shares','0'),(152947,4400,'_pinterest_shares','0'),(152948,4400,'_total_shares','0'),(152950,4401,'_pinterest_shares','0'),(152951,4401,'_total_shares','0'),(152953,4402,'_pinterest_shares','0'),(152954,4402,'_total_shares','0'),(152956,4403,'_pinterest_shares','0'),(152957,4403,'_total_shares','0'),(152980,4382,'_pinterest_shares','0'),(152981,4382,'_total_shares','0'),(152983,4387,'_pinterest_shares','0'),(152984,4387,'_total_shares','0'),(152986,4391,'_pinterest_shares','0'),(152987,4391,'_total_shares','0'),(152995,4338,'flexible_templates_1_left_arrow_show_hide','1'),(152996,4338,'_flexible_templates_1_left_arrow_show_hide','field_62c40bccf22ef'),(152997,4338,'flexible_templates_1_label_text','COST-EFFECTIVE AUTOMATION'),(152998,4338,'_flexible_templates_1_label_text','field_62c40b9bf22ee'),(152999,4338,'flexible_templates_1_heading','Focused On What Drives Business Value'),(153000,4338,'_flexible_templates_1_heading','field_62c40be6f22f0'),(153001,4338,'flexible_templates_1_content','Our solution increases your team collaboration and system automation. Our continuous technology improvements drive business value and cross-collaboration between teams.'),(153002,4338,'_flexible_templates_1_content','field_62c40c05f22f1'),(153003,4338,'flexible_templates_1_grey_box_content','We help improve the experience of your clients, customers, staff, and third parties without the need for the added cost of people resources.'),(153004,4338,'_flexible_templates_1_grey_box_content','field_62c40c1ef22f2'),(153005,4338,'flexible_templates_1_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(153006,4338,'_flexible_templates_1_button','field_62c40c38f22f3'),(153007,4338,'flexible_templates_1_image','4405'),(153008,4338,'_flexible_templates_1_image','field_62c40c4cf22f4'),(153009,4338,'flexible_templates_1_review_content','Translucent’s understanding of the cloud native DevOps space and expertise in Kubernetes through to data driven applications has proven extremely valuable… Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security…has been invaluable. I would use them again if I could. In fact, I would use their team for everything if I could!'),(153010,4338,'_flexible_templates_1_review_content','field_62c40c97f22f5'),(153011,4338,'flexible_templates_1_review_title','Rhys Parry - CTO - Volentix'),(153012,4338,'_flexible_templates_1_review_title','field_62c40cb4f22f6'),(153013,4338,'flexible_templates_2_journey_logo_map_image','4406'),(153014,4338,'_flexible_templates_2_journey_logo_map_image','field_62c40d24f22f8'),(153015,4338,'flexible_templates_2_heading','Your DevOps Journey Roadmap'),(153016,4338,'_flexible_templates_2_heading','field_62c40d46f22f9'),(153017,4338,'flexible_templates_2_scroll_image','4407'),(153018,4338,'_flexible_templates_2_scroll_image','field_62c40d60f22fa'),(153019,4338,'flexible_templates_3_heading','Services'),(153020,4338,'_flexible_templates_3_heading','field_62c40db8f22fc'),(153021,4338,'flexible_templates_3_application_column_heading','Develop and release better software faster using Kubernetes and DevOps practices'),(153022,4338,'_flexible_templates_3_application_column_heading','field_62c40e07f22fd'),(153023,4338,'flexible_templates_3_application_text_repeater','7'),(153024,4338,'_flexible_templates_3_application_text_repeater','field_62c40e34f22fe'),(153025,4338,'flexible_templates_3_application_sub_text','Deliver DevOps culture and best practices to clients'),(153026,4338,'_flexible_templates_3_application_sub_text','field_62c40e52f2300'),(153027,4338,'flexible_templates_3_application_column_second_slide_repeater','3'),(153028,4338,'_flexible_templates_3_application_column_second_slide_repeater','field_62c40ee2f2301'),(153029,4338,'flexible_templates_3_reliability_engineers_bottom','4408'),(153030,4338,'_flexible_templates_3_reliability_engineers_bottom','field_62c40f50f2304'),(153031,4338,'flexible_templates_3_reliability_engineers_content','Translucent’s Site Reliability Engineers (SRE) experts in DevOps are Kubernetes Certified Providers.'),(153032,4338,'_flexible_templates_3_reliability_engineers_content','field_62c40f64f2305'),(153033,4338,'flexible_templates_3_text_box','\"71% of Fortune 100 companies use Kubernetes.'),(153034,4338,'_flexible_templates_3_text_box','field_62c40f79f2306'),(153035,4338,'flexible_templates_3_right_short_text','(source: CNCF.IO)'),(153036,4338,'_flexible_templates_3_right_short_text','field_62c40f93f2307'),(153037,4338,'flexible_templates_4_image','4409'),(153038,4338,'_flexible_templates_4_image','field_62c41066f230c'),(153039,4338,'flexible_templates_4_arrow_show_hide_build','1'),(153040,4338,'_flexible_templates_4_arrow_show_hide_build','field_62c41086f230e'),(153041,4338,'flexible_templates_4_label_text','BUILD - REBUILD - REPLATFORM'),(153042,4338,'_flexible_templates_4_label_text','field_62c41075f230d'),(153043,4338,'flexible_templates_4_heading','Is your company ready to compete?'),(153044,4338,'_flexible_templates_4_heading','field_62c410a3f230f'),(153045,4338,'flexible_templates_4_content','No matter how simple or complex, Translucent’s cloud native data driven Devops solutions can be tailored to your exact needs to\r\nsave your company money, keep clients happier, and close new customers.'),(153046,4338,'_flexible_templates_4_content','field_62c410bef2310'),(153047,4338,'flexible_templates_5_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(153048,4338,'_flexible_templates_5_button','field_62c4110df2312'),(153049,4338,'flexible_templates_5_book_now_text','6'),(153050,4338,'_flexible_templates_5_book_now_text','field_62c4112df2313'),(153055,4404,'flexible_templates_0_mobile_image','4365'),(153056,4404,'_flexible_templates_0_mobile_image','field_62c409bd624b6'),(153057,4404,'flexible_templates_0_image','4366'),(153058,4404,'_flexible_templates_0_image','field_62c409cf624b7'),(153059,4404,'flexible_templates_0_heading','CLOUD NATIVE SOLUTIONS'),(153060,4404,'_flexible_templates_0_heading','field_62c409db624b8'),(153061,4404,'flexible_templates_0_sub_heading','Cloud Native DevOps Consulting'),(153062,4404,'_flexible_templates_0_sub_heading','field_62c409e8624b9'),(153063,4404,'flexible_templates','a:7:{i:0;s:28:\"cloud_native_solution_banner\";i:1;s:36:\"cloud_native_solution_drive_business\";i:2;s:29:\"cloud_native_solution_journey\";i:3;s:29:\"cloud_native_solution_service\";i:4;s:27:\"cloud_native_solution_build\";i:5;s:42:\"cloud_native_solution_book_consulation_now\";i:6;s:17:\"lets_talk_section\";}'),(153064,4404,'_flexible_templates','field_6254f4d84ef9b'),(153065,4404,'flexible_templates_1_left_arrow_show_hide','1'),(153066,4404,'_flexible_templates_1_left_arrow_show_hide','field_62c40bccf22ef'),(153067,4404,'flexible_templates_1_label_text','COST-EFFECTIVE AUTOMATION'),(153068,4404,'_flexible_templates_1_label_text','field_62c40b9bf22ee'),(153069,4404,'flexible_templates_1_heading','Focused On What Drives Business Value'),(153070,4404,'_flexible_templates_1_heading','field_62c40be6f22f0'),(153071,4404,'flexible_templates_1_content','

Our solution increases your team collaboration and system automation. Our continuous technology improvements drive business value and cross-collaboration between teams.

'),(153072,4404,'_flexible_templates_1_content','field_62c40c05f22f1'),(153073,4404,'flexible_templates_1_grey_box_content','

We help improve the experience of your clients, customers, staff, and third parties without the need for the added cost of people resources.

'),(153074,4404,'_flexible_templates_1_grey_box_content','field_62c40c1ef22f2'),(153075,4404,'flexible_templates_1_button',''),(153076,4404,'_flexible_templates_1_button','field_62c40c38f22f3'),(153077,4404,'flexible_templates_1_image',''),(153078,4404,'_flexible_templates_1_image','field_62c40c4cf22f4'),(153079,4404,'flexible_templates_1_review_content','Translucent’s understanding of the cloud native DevOps space and expertise in Kubernetes through to data driven applications has proven extremely valuable… Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security…has been invaluable. I would use them again if I could. In fact, I would use their team for everything if I could!'),(153080,4404,'_flexible_templates_1_review_content','field_62c40c97f22f5'),(153081,4404,'flexible_templates_1_review_title','Rhys Parry - CTO - Volentix'),(153082,4404,'_flexible_templates_1_review_title','field_62c40cb4f22f6'),(153083,4404,'flexible_templates_2_journey_logo_map_image',''),(153084,4404,'_flexible_templates_2_journey_logo_map_image','field_62c40d24f22f8'),(153085,4404,'flexible_templates_2_heading','Your DevOps Journey Roadmap'),(153086,4404,'_flexible_templates_2_heading','field_62c40d46f22f9'),(153087,4404,'flexible_templates_2_scroll_image',''),(153088,4404,'_flexible_templates_2_scroll_image','field_62c40d60f22fa'),(153089,4404,'flexible_templates_3_heading','Services'),(153090,4404,'_flexible_templates_3_heading','field_62c40db8f22fc'),(153091,4404,'flexible_templates_3_application_column_heading',''),(153092,4404,'_flexible_templates_3_application_column_heading','field_62c40e07f22fd'),(153093,4404,'flexible_templates_3_application_text_repeater',''),(153094,4404,'_flexible_templates_3_application_text_repeater','field_62c40e34f22fe'),(153095,4404,'flexible_templates_3_application_sub_text','Deliver DevOps culture and best practices to clients'),(153096,4404,'_flexible_templates_3_application_sub_text','field_62c40e52f2300'),(153097,4404,'flexible_templates_3_application_column_second_slide_repeater',''),(153098,4404,'_flexible_templates_3_application_column_second_slide_repeater','field_62c40ee2f2301'),(153099,4404,'flexible_templates_3_reliability_engineers_bottom',''),(153100,4404,'_flexible_templates_3_reliability_engineers_bottom','field_62c40f50f2304'),(153101,4404,'flexible_templates_3_reliability_engineers_content','Translucent’s Site Reliability Engineers (SRE) experts in DevOps are Kubernetes Certified Providers.'),(153102,4404,'_flexible_templates_3_reliability_engineers_content','field_62c40f64f2305'),(153103,4404,'flexible_templates_3_text_box','\"71% of Fortune 100 companies use Kubernetes.'),(153104,4404,'_flexible_templates_3_text_box','field_62c40f79f2306'),(153105,4404,'flexible_templates_3_right_short_text','(source: CNCF.IO)'),(153106,4404,'_flexible_templates_3_right_short_text','field_62c40f93f2307'),(153107,4404,'flexible_templates_4_image',''),(153108,4404,'_flexible_templates_4_image','field_62c41066f230c'),(153109,4404,'flexible_templates_4_arrow_show_hide_build','1'),(153110,4404,'_flexible_templates_4_arrow_show_hide_build','field_62c41086f230e'),(153111,4404,'flexible_templates_4_label_text','BUILD - REBUILD - REPLATAFORM'),(153112,4404,'_flexible_templates_4_label_text','field_62c41075f230d'),(153113,4404,'flexible_templates_4_heading','Is your company ready to compete?'),(153114,4404,'_flexible_templates_4_heading','field_62c410a3f230f'),(153115,4404,'flexible_templates_4_content','

No matter how simple or complex, Translucent’s cloud native data driven Devops solutions can be tailored to your exact needs to
save your company money, keep clients happier, and close new customers.

'),(153116,4404,'_flexible_templates_4_content','field_62c410bef2310'),(153117,4404,'flexible_templates_5_button',''),(153118,4404,'_flexible_templates_5_button','field_62c4110df2312'),(153119,4404,'flexible_templates_5_book_now_text',''),(153120,4404,'_flexible_templates_5_book_now_text','field_62c4112df2313'),(153121,4404,'flexible_templates_6_heading',''),(153122,4404,'_flexible_templates_6_heading','field_625565e14146d_field_6254fdb2efa27'),(153123,4404,'flexible_templates_6_cta',''),(153124,4404,'_flexible_templates_6_cta','field_625565fa4146e_field_62551b3e101c4'),(153125,4405,'_wp_attached_file','2022/07/devops_coonsulting-min.png'),(153126,4405,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:485;s:6:\"height\";i:474;s:4:\"file\";s:34:\"2022/07/devops_coonsulting-min.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"devops_coonsulting-min-300x293.png\";s:5:\"width\";i:300;s:6:\"height\";i:293;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"devops_coonsulting-min-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:{}}}'),(153130,4406,'_wp_attached_file','2022/07/kubernetes-w-min.png'),(153131,4406,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1180;s:6:\"height\";i:257;s:4:\"file\";s:28:\"2022/07/kubernetes-w-min.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"kubernetes-w-min-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"kubernetes-w-min-1024x223.png\";s:5:\"width\";i:1024;s:6:\"height\";i:223;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"kubernetes-w-min-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:28:\"kubernetes-w-min-768x167.png\";s:5:\"width\";i:768;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:28:\"kubernetes-w-min-500x257.png\";s:5:\"width\";i:500;s:6:\"height\";i:257;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:{}}}'),(153132,4406,'_imagify_optimization_level','0'),(153133,4406,'_imagify_status','success'),(153134,4406,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14072;s:14:\"optimized_size\";i:14068;s:7:\"percent\";d:0.03;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5499;s:14:\"optimized_size\";i:16132;s:7:\"percent\";d:-193.36;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25111;s:14:\"optimized_size\";i:24082;s:7:\"percent\";d:4.1;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2436;s:14:\"optimized_size\";i:3744;s:7:\"percent\";d:-53.69;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34651;s:14:\"optimized_size\";i:32228;s:7:\"percent\";d:6.99;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8991;s:14:\"optimized_size\";i:8076;s:7:\"percent\";d:10.18;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14072;s:14:\"optimized_size\";i:45972;s:7:\"percent\";d:-226.69;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:8991;s:14:\"optimized_size\";i:7154;s:7:\"percent\";d:20.43;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:34651;s:14:\"optimized_size\";i:30713;s:7:\"percent\";d:11.36;}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25111;s:14:\"optimized_size\";i:21611;s:7:\"percent\";d:13.94;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5499;s:14:\"optimized_size\";i:4523;s:7:\"percent\";d:17.75;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:179084;s:14:\"optimized_size\";i:208303;s:7:\"percent\";d:-16.32;}}'),(153135,4407,'_wp_attached_file','2022/07/devops_roadmap-min.png'),(153136,4407,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1232;s:6:\"height\";i:353;s:4:\"file\";s:30:\"2022/07/devops_roadmap-min.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"devops_roadmap-min-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:31:\"devops_roadmap-min-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:30:\"devops_roadmap-min-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:\"devops_roadmap-min-768x220.png\";s:5:\"width\";i:768;s:6:\"height\";i:220;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:30:\"devops_roadmap-min-500x353.png\";s:5:\"width\";i:500;s:6:\"height\";i:353;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:{}}}'),(153137,4407,'_imagify_optimization_level','0'),(153138,4407,'_imagify_status','already_optimized'),(153139,4407,'_imagify_data','a:2:{s:5:\"sizes\";a:7:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27883;s:14:\"optimized_size\";i:57180;s:7:\"percent\";d:-105.07;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:99730;s:14:\"optimized_size\";i:72990;s:7:\"percent\";d:26.81;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13667;s:14:\"optimized_size\";i:12734;s:7:\"percent\";d:6.83;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:162982;s:14:\"optimized_size\";i:114490;s:7:\"percent\";d:29.75;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21427;s:14:\"optimized_size\";i:17622;s:7:\"percent\";d:17.76;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:84029;s:14:\"optimized_size\";i:164136;s:7:\"percent\";d:-95.33;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:409718;s:14:\"optimized_size\";i:439152;s:7:\"percent\";d:-7.18;}}'),(153140,4408,'_wp_attached_file','2022/07/mrdata2-min.png'),(153141,4408,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:23:\"2022/07/mrdata2-min.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(153142,4408,'_imagify_optimization_level','0'),(153143,4408,'_imagify_status','already_optimized'),(153144,4408,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:4083;s:14:\"optimized_size\";i:12928;s:7:\"percent\";d:-216.63;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:4083;s:14:\"optimized_size\";i:12928;s:7:\"percent\";d:-216.63;}}'),(153145,4409,'_wp_attached_file','2022/07/kubernets_graph-min.png'),(153146,4409,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:920;s:6:\"height\";i:692;s:4:\"file\";s:31:\"2022/07/kubernets_graph-min.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"kubernets_graph-min-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"kubernets_graph-min-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:\"kubernets_graph-min-768x578.png\";s:5:\"width\";i:768;s:6:\"height\";i:578;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:31:\"kubernets_graph-min-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(153147,4409,'_imagify_optimization_level','0'),(153148,4409,'_imagify_status','already_optimized'),(153149,4409,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:191387;s:14:\"optimized_size\";i:168860;s:7:\"percent\";d:11.77;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:301242;s:14:\"optimized_size\";i:254682;s:7:\"percent\";d:15.46;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27324;s:14:\"optimized_size\";i:25340;s:7:\"percent\";d:7.26;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:65776;s:14:\"optimized_size\";i:59008;s:7:\"percent\";d:10.29;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:91209;s:14:\"optimized_size\";i:361310;s:7:\"percent\";d:-296.13;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:676938;s:14:\"optimized_size\";i:869200;s:7:\"percent\";d:-28.4;}}'),(153153,4410,'_pinterest_shares','0'),(153154,4410,'_total_shares','0'),(153156,4411,'_pinterest_shares','0'),(153157,4411,'_total_shares','0'),(153159,4412,'_pinterest_shares','0'),(153160,4412,'_total_shares','0'),(153171,4416,'_pinterest_shares','0'),(153172,4416,'_total_shares','0'),(153177,4418,'_pinterest_shares','0'),(153178,4418,'_total_shares','0'),(153195,4338,'flexible_templates_3_application_text_repeater_0_text','- 100% GitOps Based'),(153196,4338,'_flexible_templates_3_application_text_repeater_0_text','field_62c40e41f22ff'),(153197,4338,'flexible_templates_3_application_text_repeater_1_text','- Configuration as Code'),(153198,4338,'_flexible_templates_3_application_text_repeater_1_text','field_62c40e41f22ff'),(153199,4338,'flexible_templates_3_application_text_repeater_2_text','- Infrastructure as Code (IaC)'),(153200,4338,'_flexible_templates_3_application_text_repeater_2_text','field_62c40e41f22ff'),(153201,4338,'flexible_templates_3_application_text_repeater_3_text','- Declarative Pipelines'),(153202,4338,'_flexible_templates_3_application_text_repeater_3_text','field_62c40e41f22ff'),(153203,4338,'flexible_templates_3_application_text_repeater_4_text','- Monitoring | Observability'),(153204,4338,'_flexible_templates_3_application_text_repeater_4_text','field_62c40e41f22ff'),(153205,4338,'flexible_templates_3_application_text_repeater_5_text','- Cloud-Agnostic (AWS | GCP | Azure)'),(153206,4338,'_flexible_templates_3_application_text_repeater_5_text','field_62c40e41f22ff'),(153207,4338,'flexible_templates_3_application_text_repeater_6_text','- High Dev-Prod Parity'),(153208,4338,'_flexible_templates_3_application_text_repeater_6_text','field_62c40e41f22ff'),(153209,4338,'flexible_templates_3_application_column_second_slide_repeater_0_heading',''),(153210,4338,'_flexible_templates_3_application_column_second_slide_repeater_0_heading','field_62c40efaf2302'),(153211,4338,'flexible_templates_3_application_column_second_slide_repeater_0_paragraph','Managed Kubernetes Services on Hybrid and Multi-Cloud Strategy for Platform Development, using Azure, Google Cloud, AWS, VMWare and Private Cloud.'),(153212,4338,'_flexible_templates_3_application_column_second_slide_repeater_0_paragraph','field_62c40f05f2303'),(153213,4338,'flexible_templates_3_application_column_second_slide_repeater_1_heading','Deliver DevOps culture and best practices to clients'),(153214,4338,'_flexible_templates_3_application_column_second_slide_repeater_1_heading','field_62c40efaf2302'),(153215,4338,'flexible_templates_3_application_column_second_slide_repeater_1_paragraph','- Plan, migrate, manage, automate, and optimize your Kubernetes cloud infrastructure'),(153216,4338,'_flexible_templates_3_application_column_second_slide_repeater_1_paragraph','field_62c40f05f2303'),(153217,4338,'flexible_templates_3_application_column_second_slide_repeater_2_heading','Site Reliability Engineering - what can be measured can be managed'),(153218,4338,'_flexible_templates_3_application_column_second_slide_repeater_2_heading','field_62c40efaf2302'),(153219,4338,'flexible_templates_3_application_column_second_slide_repeater_2_paragraph',''),(153220,4338,'_flexible_templates_3_application_column_second_slide_repeater_2_paragraph','field_62c40f05f2303'),(153221,4338,'flexible_templates_5_book_now_text_0_text','Open for business 24/7'),(153222,4338,'_flexible_templates_5_book_now_text_0_text','field_62c4113df2314'),(153223,4338,'flexible_templates_5_book_now_text_1_text','Greater customer insights'),(153224,4338,'_flexible_templates_5_book_now_text_1_text','field_62c4113df2314'),(153225,4338,'flexible_templates_5_book_now_text_2_text','Global expansion'),(153226,4338,'_flexible_templates_5_book_now_text_2_text','field_62c4113df2314'),(153227,4338,'flexible_templates_5_book_now_text_3_text','Automated operational infrastructure'),(153228,4338,'_flexible_templates_5_book_now_text_3_text','field_62c4113df2314'),(153229,4338,'flexible_templates_5_book_now_text_4_text','Drive more revenue'),(153230,4338,'_flexible_templates_5_book_now_text_4_text','field_62c4113df2314'),(153231,4338,'flexible_templates_5_book_now_text_5_text','Automation saves money'),(153232,4338,'_flexible_templates_5_book_now_text_5_text','field_62c4113df2314'),(153233,4422,'flexible_templates_0_mobile_image','4365'),(153234,4422,'_flexible_templates_0_mobile_image','field_62c409bd624b6'),(153235,4422,'flexible_templates_0_image','4366'),(153236,4422,'_flexible_templates_0_image','field_62c409cf624b7'),(153237,4422,'flexible_templates_0_heading','CLOUD NATIVE SOLUTIONS'),(153238,4422,'_flexible_templates_0_heading','field_62c409db624b8'),(153239,4422,'flexible_templates_0_sub_heading','Cloud Native DevOps Consulting'),(153240,4422,'_flexible_templates_0_sub_heading','field_62c409e8624b9'),(153241,4422,'flexible_templates','a:7:{i:0;s:28:\"cloud_native_solution_banner\";i:1;s:36:\"cloud_native_solution_drive_business\";i:2;s:29:\"cloud_native_solution_journey\";i:3;s:29:\"cloud_native_solution_service\";i:4;s:27:\"cloud_native_solution_build\";i:5;s:42:\"cloud_native_solution_book_consulation_now\";i:6;s:17:\"lets_talk_section\";}'),(153242,4422,'_flexible_templates','field_6254f4d84ef9b'),(153243,4422,'flexible_templates_1_left_arrow_show_hide','1'),(153244,4422,'_flexible_templates_1_left_arrow_show_hide','field_62c40bccf22ef'),(153245,4422,'flexible_templates_1_label_text','COST-EFFECTIVE AUTOMATION'),(153246,4422,'_flexible_templates_1_label_text','field_62c40b9bf22ee'),(153247,4422,'flexible_templates_1_heading','Focused On What Drives Business Value'),(153248,4422,'_flexible_templates_1_heading','field_62c40be6f22f0'),(153249,4422,'flexible_templates_1_content','

Our solution increases your team collaboration and system automation. Our continuous technology improvements drive business value and cross-collaboration between teams.

'),(153250,4422,'_flexible_templates_1_content','field_62c40c05f22f1'),(153251,4422,'flexible_templates_1_grey_box_content','

We help improve the experience of your clients, customers, staff, and third parties without the need for the added cost of people resources.

'),(153252,4422,'_flexible_templates_1_grey_box_content','field_62c40c1ef22f2'),(153253,4422,'flexible_templates_1_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(153254,4422,'_flexible_templates_1_button','field_62c40c38f22f3'),(153255,4422,'flexible_templates_1_image','4405'),(153256,4422,'_flexible_templates_1_image','field_62c40c4cf22f4'),(153257,4422,'flexible_templates_1_review_content','Translucent’s understanding of the cloud native DevOps space and expertise in Kubernetes through to data driven applications has proven extremely valuable… Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security…has been invaluable. I would use them again if I could. In fact, I would use their team for everything if I could!'),(153258,4422,'_flexible_templates_1_review_content','field_62c40c97f22f5'),(153259,4422,'flexible_templates_1_review_title','Rhys Parry - CTO - Volentix'),(153260,4422,'_flexible_templates_1_review_title','field_62c40cb4f22f6'),(153261,4422,'flexible_templates_2_journey_logo_map_image','4406'),(153262,4422,'_flexible_templates_2_journey_logo_map_image','field_62c40d24f22f8'),(153263,4422,'flexible_templates_2_heading','Your DevOps Journey Roadmap'),(153264,4422,'_flexible_templates_2_heading','field_62c40d46f22f9'),(153265,4422,'flexible_templates_2_scroll_image','4407'),(153266,4422,'_flexible_templates_2_scroll_image','field_62c40d60f22fa'),(153267,4422,'flexible_templates_3_heading','Services'),(153268,4422,'_flexible_templates_3_heading','field_62c40db8f22fc'),(153269,4422,'flexible_templates_3_application_column_heading','Develop and release better software faster using Kubernetes and DevOps practices'),(153270,4422,'_flexible_templates_3_application_column_heading','field_62c40e07f22fd'),(153271,4422,'flexible_templates_3_application_text_repeater','7'),(153272,4422,'_flexible_templates_3_application_text_repeater','field_62c40e34f22fe'),(153273,4422,'flexible_templates_3_application_sub_text','Deliver DevOps culture and best practices to clients'),(153274,4422,'_flexible_templates_3_application_sub_text','field_62c40e52f2300'),(153275,4422,'flexible_templates_3_application_column_second_slide_repeater','3'),(153276,4422,'_flexible_templates_3_application_column_second_slide_repeater','field_62c40ee2f2301'),(153277,4422,'flexible_templates_3_reliability_engineers_bottom','4408'),(153278,4422,'_flexible_templates_3_reliability_engineers_bottom','field_62c40f50f2304'),(153279,4422,'flexible_templates_3_reliability_engineers_content','Translucent’s Site Reliability Engineers (SRE) experts in DevOps are Kubernetes Certified Providers.'),(153280,4422,'_flexible_templates_3_reliability_engineers_content','field_62c40f64f2305'),(153281,4422,'flexible_templates_3_text_box','\"71% of Fortune 100 companies use Kubernetes.'),(153282,4422,'_flexible_templates_3_text_box','field_62c40f79f2306'),(153283,4422,'flexible_templates_3_right_short_text','(source: CNCF.IO)'),(153284,4422,'_flexible_templates_3_right_short_text','field_62c40f93f2307'),(153285,4422,'flexible_templates_4_image','4409'),(153286,4422,'_flexible_templates_4_image','field_62c41066f230c'),(153287,4422,'flexible_templates_4_arrow_show_hide_build','1'),(153288,4422,'_flexible_templates_4_arrow_show_hide_build','field_62c41086f230e'),(153289,4422,'flexible_templates_4_label_text','BUILD - REBUILD - REPLATAFORM'),(153290,4422,'_flexible_templates_4_label_text','field_62c41075f230d'),(153291,4422,'flexible_templates_4_heading','Is your company ready to compete?'),(153292,4422,'_flexible_templates_4_heading','field_62c410a3f230f'),(153293,4422,'flexible_templates_4_content','

No matter how simple or complex, Translucent’s cloud native data driven Devops solutions can be tailored to your exact needs to
save your company money, keep clients happier, and close new customers.

'),(153294,4422,'_flexible_templates_4_content','field_62c410bef2310'),(153295,4422,'flexible_templates_5_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(153296,4422,'_flexible_templates_5_button','field_62c4110df2312'),(153297,4422,'flexible_templates_5_book_now_text','6'),(153298,4422,'_flexible_templates_5_book_now_text','field_62c4112df2313'),(153299,4422,'flexible_templates_6_heading','We treat your business like our own.'),(153300,4422,'_flexible_templates_6_heading','field_625565e14146d_field_6254fdb2efa27'),(153301,4422,'flexible_templates_6_cta','a:3:{s:5:\"title\";s:10:\"Lets talk!\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(153302,4422,'_flexible_templates_6_cta','field_625565fa4146e_field_62551b3e101c4'),(153303,4422,'flexible_templates_3_application_text_repeater_0_text','- 100% GitOps Based'),(153304,4422,'_flexible_templates_3_application_text_repeater_0_text','field_62c40e41f22ff'),(153305,4422,'flexible_templates_3_application_text_repeater_1_text','- Configuration as Code'),(153306,4422,'_flexible_templates_3_application_text_repeater_1_text','field_62c40e41f22ff'),(153307,4422,'flexible_templates_3_application_text_repeater_2_text','- Infrastructure as Code (IaC)'),(153308,4422,'_flexible_templates_3_application_text_repeater_2_text','field_62c40e41f22ff'),(153309,4422,'flexible_templates_3_application_text_repeater_3_text','- Declarative Pipelines'),(153310,4422,'_flexible_templates_3_application_text_repeater_3_text','field_62c40e41f22ff'),(153311,4422,'flexible_templates_3_application_text_repeater_4_text','- Monitoring | Observability'),(153312,4422,'_flexible_templates_3_application_text_repeater_4_text','field_62c40e41f22ff'),(153313,4422,'flexible_templates_3_application_text_repeater_5_text','- Cloud-Agnostic (AWS | GCP | Azure)'),(153314,4422,'_flexible_templates_3_application_text_repeater_5_text','field_62c40e41f22ff'),(153315,4422,'flexible_templates_3_application_text_repeater_6_text','- High Dev-Prod Parity'),(153316,4422,'_flexible_templates_3_application_text_repeater_6_text','field_62c40e41f22ff'),(153317,4422,'flexible_templates_3_application_column_second_slide_repeater_0_heading',''),(153318,4422,'_flexible_templates_3_application_column_second_slide_repeater_0_heading','field_62c40efaf2302'),(153319,4422,'flexible_templates_3_application_column_second_slide_repeater_0_paragraph','Managed Kubernetes Services on Hybrid and Multi-Cloud Strategy for Platform Development, using Azure, Google Cloud, AWS, VMWare and Private Cloud.'),(153320,4422,'_flexible_templates_3_application_column_second_slide_repeater_0_paragraph','field_62c40f05f2303'),(153321,4422,'flexible_templates_3_application_column_second_slide_repeater_1_heading','Deliver DevOps culture and best practices to clients'),(153322,4422,'_flexible_templates_3_application_column_second_slide_repeater_1_heading','field_62c40efaf2302'),(153323,4422,'flexible_templates_3_application_column_second_slide_repeater_1_paragraph','- Plan, migrate, manage, automate, and optimize your Kubernetes cloud infrastructure'),(153324,4422,'_flexible_templates_3_application_column_second_slide_repeater_1_paragraph','field_62c40f05f2303'),(153325,4422,'flexible_templates_3_application_column_second_slide_repeater_2_heading','Site Reliability Engineering - what can be measured can be managed'),(153326,4422,'_flexible_templates_3_application_column_second_slide_repeater_2_heading','field_62c40efaf2302'),(153327,4422,'flexible_templates_3_application_column_second_slide_repeater_2_paragraph',''),(153328,4422,'_flexible_templates_3_application_column_second_slide_repeater_2_paragraph','field_62c40f05f2303'),(153329,4422,'flexible_templates_5_book_now_text_0_text','Open for business 24/7'),(153330,4422,'_flexible_templates_5_book_now_text_0_text','field_62c4113df2314'),(153331,4422,'flexible_templates_5_book_now_text_1_text','Greater customer insights'),(153332,4422,'_flexible_templates_5_book_now_text_1_text','field_62c4113df2314'),(153333,4422,'flexible_templates_5_book_now_text_2_text','Global expansion'),(153334,4422,'_flexible_templates_5_book_now_text_2_text','field_62c4113df2314'),(153335,4422,'flexible_templates_5_book_now_text_3_text','Automated operational infrastructure'),(153336,4422,'_flexible_templates_5_book_now_text_3_text','field_62c4113df2314'),(153337,4422,'flexible_templates_5_book_now_text_4_text','Drive more revenue'),(153338,4422,'_flexible_templates_5_book_now_text_4_text','field_62c4113df2314'),(153339,4422,'flexible_templates_5_book_now_text_5_text','Automation saves money'),(153340,4422,'_flexible_templates_5_book_now_text_5_text','field_62c4113df2314'),(153368,4423,'flexible_templates_0_mobile_image','4365'),(153369,4423,'_flexible_templates_0_mobile_image','field_62c409bd624b6'),(153370,4423,'flexible_templates_0_image','4366'),(153371,4423,'_flexible_templates_0_image','field_62c409cf624b7'),(153372,4423,'flexible_templates_0_heading','CLOUD NATIVE SOLUTIONS'),(153373,4423,'_flexible_templates_0_heading','field_62c409db624b8'),(153374,4423,'flexible_templates_0_sub_heading','Cloud Native DevOps Consulting'),(153375,4423,'_flexible_templates_0_sub_heading','field_62c409e8624b9'),(153376,4423,'flexible_templates','a:8:{i:0;s:28:\"cloud_native_solution_banner\";i:1;s:36:\"cloud_native_solution_drive_business\";i:2;s:29:\"cloud_native_solution_journey\";i:3;s:29:\"cloud_native_solution_service\";i:4;s:27:\"cloud_native_solution_build\";i:5;s:42:\"cloud_native_solution_book_consulation_now\";i:6;s:17:\"lets_talk_section\";i:7;s:33:\"cloud_native_solution_data_driven\";}'),(153377,4423,'_flexible_templates','field_6254f4d84ef9b'),(153378,4423,'flexible_templates_1_left_arrow_show_hide','1'),(153379,4423,'_flexible_templates_1_left_arrow_show_hide','field_62c40bccf22ef'),(153380,4423,'flexible_templates_1_label_text','COST-EFFECTIVE AUTOMATION'),(153381,4423,'_flexible_templates_1_label_text','field_62c40b9bf22ee'),(153382,4423,'flexible_templates_1_heading','Focused On What Drives Business Value'),(153383,4423,'_flexible_templates_1_heading','field_62c40be6f22f0'),(153384,4423,'flexible_templates_1_content','Our solution increases your team collaboration and system automation. Our continuous technology improvements drive business value and cross-collaboration between teams.'),(153385,4423,'_flexible_templates_1_content','field_62c40c05f22f1'),(153386,4423,'flexible_templates_1_grey_box_content','We help improve the experience of your clients, customers, staff, and third parties without the need for the added cost of people resources.'),(153387,4423,'_flexible_templates_1_grey_box_content','field_62c40c1ef22f2'),(153388,4423,'flexible_templates_1_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(153389,4423,'_flexible_templates_1_button','field_62c40c38f22f3'),(153390,4423,'flexible_templates_1_image','4405'),(153391,4423,'_flexible_templates_1_image','field_62c40c4cf22f4'),(153392,4423,'flexible_templates_1_review_content','Translucent’s understanding of the cloud native DevOps space and expertise in Kubernetes through to data driven applications has proven extremely valuable… Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security…has been invaluable. I would use them again if I could. In fact, I would use their team for everything if I could!'),(153393,4423,'_flexible_templates_1_review_content','field_62c40c97f22f5'),(153394,4423,'flexible_templates_1_review_title','Rhys Parry - CTO - Volentix'),(153395,4423,'_flexible_templates_1_review_title','field_62c40cb4f22f6'),(153396,4423,'flexible_templates_2_journey_logo_map_image','4406'),(153397,4423,'_flexible_templates_2_journey_logo_map_image','field_62c40d24f22f8'),(153398,4423,'flexible_templates_2_heading','Your DevOps Journey Roadmap'),(153399,4423,'_flexible_templates_2_heading','field_62c40d46f22f9'),(153400,4423,'flexible_templates_2_scroll_image','4407'),(153401,4423,'_flexible_templates_2_scroll_image','field_62c40d60f22fa'),(153402,4423,'flexible_templates_3_heading','Services'),(153403,4423,'_flexible_templates_3_heading','field_62c40db8f22fc'),(153404,4423,'flexible_templates_3_application_column_heading','Develop and release better software faster using Kubernetes and DevOps practices'),(153405,4423,'_flexible_templates_3_application_column_heading','field_62c40e07f22fd'),(153406,4423,'flexible_templates_3_application_text_repeater','7'),(153407,4423,'_flexible_templates_3_application_text_repeater','field_62c40e34f22fe'),(153408,4423,'flexible_templates_3_application_sub_text','Deliver DevOps culture and best practices to clients'),(153409,4423,'_flexible_templates_3_application_sub_text','field_62c40e52f2300'),(153410,4423,'flexible_templates_3_application_column_second_slide_repeater','3'),(153411,4423,'_flexible_templates_3_application_column_second_slide_repeater','field_62c40ee2f2301'),(153412,4423,'flexible_templates_3_reliability_engineers_bottom','4408'),(153413,4423,'_flexible_templates_3_reliability_engineers_bottom','field_62c40f50f2304'),(153414,4423,'flexible_templates_3_reliability_engineers_content','Translucent’s Site Reliability Engineers (SRE) experts in DevOps are Kubernetes Certified Providers.'),(153415,4423,'_flexible_templates_3_reliability_engineers_content','field_62c40f64f2305'),(153416,4423,'flexible_templates_3_text_box','\"71% of Fortune 100 companies use Kubernetes.'),(153417,4423,'_flexible_templates_3_text_box','field_62c40f79f2306'),(153418,4423,'flexible_templates_3_right_short_text','(source: CNCF.IO)'),(153419,4423,'_flexible_templates_3_right_short_text','field_62c40f93f2307'),(153420,4423,'flexible_templates_4_image','4409'),(153421,4423,'_flexible_templates_4_image','field_62c41066f230c'),(153422,4423,'flexible_templates_4_arrow_show_hide_build','1'),(153423,4423,'_flexible_templates_4_arrow_show_hide_build','field_62c41086f230e'),(153424,4423,'flexible_templates_4_label_text','BUILD - REBUILD - REPLATAFORM'),(153425,4423,'_flexible_templates_4_label_text','field_62c41075f230d'),(153426,4423,'flexible_templates_4_heading','Is your company ready to compete?'),(153427,4423,'_flexible_templates_4_heading','field_62c410a3f230f'),(153428,4423,'flexible_templates_4_content','No matter how simple or complex, Translucent’s cloud native data driven Devops solutions can be tailored to your exact needs to\r\nsave your company money, keep clients happier, and close new customers.'),(153429,4423,'_flexible_templates_4_content','field_62c410bef2310'),(153430,4423,'flexible_templates_5_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(153431,4423,'_flexible_templates_5_button','field_62c4110df2312'),(153432,4423,'flexible_templates_5_book_now_text','6'),(153433,4423,'_flexible_templates_5_book_now_text','field_62c4112df2313'),(153434,4423,'flexible_templates_6_heading','We treat your business like our own.'),(153435,4423,'_flexible_templates_6_heading','field_625565e14146d_field_6254fdb2efa27'),(153436,4423,'flexible_templates_6_cta','a:3:{s:5:\"title\";s:10:\"Lets talk!\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(153437,4423,'_flexible_templates_6_cta','field_625565fa4146e_field_62551b3e101c4'),(153438,4423,'flexible_templates_3_application_text_repeater_0_text','- 100% GitOps Based'),(153439,4423,'_flexible_templates_3_application_text_repeater_0_text','field_62c40e41f22ff'),(153440,4423,'flexible_templates_3_application_text_repeater_1_text','- Configuration as Code'),(153441,4423,'_flexible_templates_3_application_text_repeater_1_text','field_62c40e41f22ff'),(153442,4423,'flexible_templates_3_application_text_repeater_2_text','- Infrastructure as Code (IaC)'),(153443,4423,'_flexible_templates_3_application_text_repeater_2_text','field_62c40e41f22ff'),(153444,4423,'flexible_templates_3_application_text_repeater_3_text','- Declarative Pipelines'),(153445,4423,'_flexible_templates_3_application_text_repeater_3_text','field_62c40e41f22ff'),(153446,4423,'flexible_templates_3_application_text_repeater_4_text','- Monitoring | Observability'),(153447,4423,'_flexible_templates_3_application_text_repeater_4_text','field_62c40e41f22ff'),(153448,4423,'flexible_templates_3_application_text_repeater_5_text','- Cloud-Agnostic (AWS | GCP | Azure)'),(153449,4423,'_flexible_templates_3_application_text_repeater_5_text','field_62c40e41f22ff'),(153450,4423,'flexible_templates_3_application_text_repeater_6_text','- High Dev-Prod Parity'),(153451,4423,'_flexible_templates_3_application_text_repeater_6_text','field_62c40e41f22ff'),(153452,4423,'flexible_templates_3_application_column_second_slide_repeater_0_heading',''),(153453,4423,'_flexible_templates_3_application_column_second_slide_repeater_0_heading','field_62c40efaf2302'),(153454,4423,'flexible_templates_3_application_column_second_slide_repeater_0_paragraph','Managed Kubernetes Services on Hybrid and Multi-Cloud Strategy for Platform Development, using Azure, Google Cloud, AWS, VMWare and Private Cloud.'),(153455,4423,'_flexible_templates_3_application_column_second_slide_repeater_0_paragraph','field_62c40f05f2303'),(153456,4423,'flexible_templates_3_application_column_second_slide_repeater_1_heading','Deliver DevOps culture and best practices to clients'),(153457,4423,'_flexible_templates_3_application_column_second_slide_repeater_1_heading','field_62c40efaf2302'),(153458,4423,'flexible_templates_3_application_column_second_slide_repeater_1_paragraph','- Plan, migrate, manage, automate, and optimize your Kubernetes cloud infrastructure'),(153459,4423,'_flexible_templates_3_application_column_second_slide_repeater_1_paragraph','field_62c40f05f2303'),(153460,4423,'flexible_templates_3_application_column_second_slide_repeater_2_heading','Site Reliability Engineering - what can be measured can be managed'),(153461,4423,'_flexible_templates_3_application_column_second_slide_repeater_2_heading','field_62c40efaf2302'),(153462,4423,'flexible_templates_3_application_column_second_slide_repeater_2_paragraph',''),(153463,4423,'_flexible_templates_3_application_column_second_slide_repeater_2_paragraph','field_62c40f05f2303'),(153464,4423,'flexible_templates_5_book_now_text_0_text','Open for business 24/7'),(153465,4423,'_flexible_templates_5_book_now_text_0_text','field_62c4113df2314'),(153466,4423,'flexible_templates_5_book_now_text_1_text','Greater customer insights'),(153467,4423,'_flexible_templates_5_book_now_text_1_text','field_62c4113df2314'),(153468,4423,'flexible_templates_5_book_now_text_2_text','Global expansion'),(153469,4423,'_flexible_templates_5_book_now_text_2_text','field_62c4113df2314'),(153470,4423,'flexible_templates_5_book_now_text_3_text','Automated operational infrastructure'),(153471,4423,'_flexible_templates_5_book_now_text_3_text','field_62c4113df2314'),(153472,4423,'flexible_templates_5_book_now_text_4_text','Drive more revenue'),(153473,4423,'_flexible_templates_5_book_now_text_4_text','field_62c4113df2314'),(153474,4423,'flexible_templates_5_book_now_text_5_text','Automation saves money'),(153475,4423,'_flexible_templates_5_book_now_text_5_text','field_62c4113df2314'),(153476,4423,'flexible_templates_7_arrow_hide_and_show_data_driven','1'),(153477,4423,'_flexible_templates_7_arrow_hide_and_show_data_driven','field_62c41be01348d'),(153478,4423,'flexible_templates_7_label_text','COST-EFFECTIVE AUTOMATION'),(153479,4423,'_flexible_templates_7_label_text','field_62c41c061348e'),(153480,4423,'flexible_templates_7_left_text','Translucent takes the best functions in your operational workflow and wraps data-driven digital DevOps technology around them, which:'),(153481,4423,'_flexible_templates_7_left_text','field_62c41c1b1348f'),(153482,4423,'flexible_templates_7_application_col_first_0_text','Creates a better customer and internal employee experience'),(153483,4423,'_flexible_templates_7_application_col_first_0_text','field_62c41c7a13493'),(153484,4423,'flexible_templates_7_application_col_first_1_text','Automates your processes and self-healing systems'),(153485,4423,'_flexible_templates_7_application_col_first_1_text','field_62c41c7a13493'),(153486,4423,'flexible_templates_7_application_col_first_2_text','Saves you money in resources through automated processes'),(153487,4423,'_flexible_templates_7_application_col_first_2_text','field_62c41c7a13493'),(153488,4423,'flexible_templates_7_application_col_first','3'),(153489,4423,'_flexible_templates_7_application_col_first','field_62c41c6813492'),(153490,4423,'flexible_templates_7_application_col_second_0_text','Allows your business to be more effective and efficient in delivering your business value to your clients, in the current market conditions and into the future.'),(153491,4423,'_flexible_templates_7_application_col_second_0_text','field_62c41c9413495'),(153492,4423,'flexible_templates_7_application_col_second_1_text','Makes you money through a full digital transformation of your infrastructure.'),(153493,4423,'_flexible_templates_7_application_col_second_1_text','field_62c41c9413495'),(153494,4423,'flexible_templates_7_application_col_second','2'),(153495,4423,'_flexible_templates_7_application_col_second','field_62c41c8413494'),(153496,4423,'flexible_templates_7_swiper_content','This is not just about cloud native DevOps technology. It’s about… People, Business, Operations, and Results. Oh, and People! Did I say People?'),(153497,4423,'_flexible_templates_7_swiper_content','field_62c41caf13497'),(153498,4423,'flexible_templates_7_swiper_text','Bradford A. M. Sankar COO - Translucent Computing'),(153499,4423,'_flexible_templates_7_swiper_text','field_62c41ccd13498'),(153506,4424,'_pinterest_shares','0'),(153507,4424,'_total_shares','0'),(153509,4425,'_pinterest_shares','0'),(153510,4425,'_total_shares','0'),(153512,4426,'_pinterest_shares','0'),(153513,4426,'_total_shares','0'),(153521,4427,'_wp_attached_file','2022/07/bg-people-tc1-mo-min.png'),(153522,4427,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:616;s:6:\"height\";i:503;s:4:\"file\";s:32:\"2022/07/bg-people-tc1-mo-min.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"bg-people-tc1-mo-min-300x245.png\";s:5:\"width\";i:300;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"bg-people-tc1-mo-min-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:32:\"bg-people-tc1-mo-min-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(153523,4427,'_imagify_optimization_level','0'),(153524,4427,'_imagify_status','already_optimized'),(153525,4427,'_imagify_data','a:2:{s:5:\"sizes\";a:5:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:131969;s:14:\"optimized_size\";i:32836;s:7:\"percent\";d:75.12;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14761;s:14:\"optimized_size\";i:4656;s:7:\"percent\";d:68.46;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:41805;s:14:\"optimized_size\";i:11398;s:7:\"percent\";d:72.74;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:123220;s:14:\"optimized_size\";i:52538;s:7:\"percent\";d:57.36;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:311755;s:14:\"optimized_size\";i:101428;s:7:\"percent\";d:67.47;}}'),(153526,4428,'_wp_attached_file','2022/07/bg-people-tc1-min.png'),(153527,4428,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:702;s:4:\"file\";s:29:\"2022/07/bg-people-tc1-min.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"bg-people-tc1-min-300x110.png\";s:5:\"width\";i:300;s:6:\"height\";i:110;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"bg-people-tc1-min-1024x374.png\";s:5:\"width\";i:1024;s:6:\"height\";i:374;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"bg-people-tc1-min-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:\"bg-people-tc1-min-768x281.png\";s:5:\"width\";i:768;s:6:\"height\";i:281;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:30:\"bg-people-tc1-min-1536x562.png\";s:5:\"width\";i:1536;s:6:\"height\";i:562;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:29:\"bg-people-tc1-min-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(153528,4428,'_imagify_optimization_level','0'),(153529,4428,'_imagify_status','already_optimized'),(153530,4428,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:167161;s:14:\"optimized_size\";i:40424;s:7:\"percent\";d:75.82;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:522444;s:14:\"optimized_size\";i:116570;s:7:\"percent\";d:77.69;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:131607;s:14:\"optimized_size\";i:32256;s:7:\"percent\";d:75.49;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:15437;s:14:\"optimized_size\";i:5506;s:7:\"percent\";d:64.33;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:231307;s:14:\"optimized_size\";i:52680;s:7:\"percent\";d:77.23;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25597;s:14:\"optimized_size\";i:7798;s:7:\"percent\";d:69.54;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:264341;s:14:\"optimized_size\";i:257254;s:7:\"percent\";d:2.68;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1357894;s:14:\"optimized_size\";i:512488;s:7:\"percent\";d:62.26;}}'),(153531,4338,'flexible_templates_6_arrow_hide_and_show_data_driven','1'),(153532,4338,'_flexible_templates_6_arrow_hide_and_show_data_driven','field_62c41be01348d'),(153533,4338,'flexible_templates_6_label_text','COST-EFFECTIVE AUTOMATION'),(153534,4338,'_flexible_templates_6_label_text','field_62c41c061348e'),(153535,4338,'flexible_templates_6_left_text','Translucent takes the best functions in your operational workflow and wraps data-driven digital DevOps technology around them, which:'),(153536,4338,'_flexible_templates_6_left_text','field_62c41c1b1348f'),(153537,4338,'flexible_templates_6_application_col_first_0_text','Creates a better customer and internal employee experience'),(153538,4338,'_flexible_templates_6_application_col_first_0_text','field_62c41c7a13493'),(153539,4338,'flexible_templates_6_application_col_first_1_text','Automates your processes and self-healing systems'),(153540,4338,'_flexible_templates_6_application_col_first_1_text','field_62c41c7a13493'),(153541,4338,'flexible_templates_6_application_col_first_2_text','Saves you money in resources through automated processes'),(153542,4338,'_flexible_templates_6_application_col_first_2_text','field_62c41c7a13493'),(153543,4338,'flexible_templates_6_application_col_first','3'),(153544,4338,'_flexible_templates_6_application_col_first','field_62c41c6813492'),(153545,4338,'flexible_templates_6_application_col_second_0_text','Allows your business to be more effective and efficient in delivering your business value to your clients, in the current market conditions and into the future.'),(153546,4338,'_flexible_templates_6_application_col_second_0_text','field_62c41c9413495'),(153547,4338,'flexible_templates_6_application_col_second_1_text','Makes you money through a full digital transformation of your infrastructure.'),(153548,4338,'_flexible_templates_6_application_col_second_1_text','field_62c41c9413495'),(153549,4338,'flexible_templates_6_application_col_second','2'),(153550,4338,'_flexible_templates_6_application_col_second','field_62c41c8413494'),(153551,4338,'flexible_templates_6_swiper_content','This is not just about cloud native DevOps technology. It’s about… People, Business, Operations, and Results. Oh, and People! Did I say People?'),(153552,4338,'_flexible_templates_6_swiper_content','field_62c41caf13497'),(153553,4338,'flexible_templates_6_swiper_text','Bradford A. M. Sankar COO - Translucent Computing'),(153554,4338,'_flexible_templates_6_swiper_text','field_62c41ccd13498'),(153555,4338,'flexible_templates_7_mobile_image','4427'),(153556,4338,'_flexible_templates_7_mobile_image','field_62c41d81525e5'),(153557,4338,'flexible_templates_7_image','4428'),(153558,4338,'_flexible_templates_7_image','field_62c41d91525e6'),(153559,4338,'flexible_templates_7_heading','Cost-effective automation of your operations and infrastructure, with a focus on what drives business value'),(153560,4338,'_flexible_templates_7_heading','field_62c41da0525e7'),(153561,4338,'flexible_templates_8_heading','We treat your business like our own.'),(153562,4338,'_flexible_templates_8_heading','field_625565e14146d_field_6254fdb2efa27'),(153563,4338,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:10:\"Lets talk!\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(153564,4338,'_flexible_templates_8_cta','field_625565fa4146e_field_62551b3e101c4'),(153565,4429,'flexible_templates_0_mobile_image','4365'),(153566,4429,'_flexible_templates_0_mobile_image','field_62c409bd624b6'),(153567,4429,'flexible_templates_0_image','4366'),(153568,4429,'_flexible_templates_0_image','field_62c409cf624b7'),(153569,4429,'flexible_templates_0_heading','CLOUD NATIVE SOLUTIONS'),(153570,4429,'_flexible_templates_0_heading','field_62c409db624b8'),(153571,4429,'flexible_templates_0_sub_heading','Cloud Native DevOps Consulting'),(153572,4429,'_flexible_templates_0_sub_heading','field_62c409e8624b9'),(153573,4429,'flexible_templates','a:9:{i:0;s:28:\"cloud_native_solution_banner\";i:1;s:36:\"cloud_native_solution_drive_business\";i:2;s:29:\"cloud_native_solution_journey\";i:3;s:29:\"cloud_native_solution_service\";i:4;s:27:\"cloud_native_solution_build\";i:5;s:42:\"cloud_native_solution_book_consulation_now\";i:6;s:33:\"cloud_native_solution_data_driven\";i:7;s:36:\"cloud_native_solution_infrastructure\";i:8;s:17:\"lets_talk_section\";}'),(153574,4429,'_flexible_templates','field_6254f4d84ef9b'),(153575,4429,'flexible_templates_1_left_arrow_show_hide','1'),(153576,4429,'_flexible_templates_1_left_arrow_show_hide','field_62c40bccf22ef'),(153577,4429,'flexible_templates_1_label_text','COST-EFFECTIVE AUTOMATION'),(153578,4429,'_flexible_templates_1_label_text','field_62c40b9bf22ee'),(153579,4429,'flexible_templates_1_heading','Focused On What Drives Business Value'),(153580,4429,'_flexible_templates_1_heading','field_62c40be6f22f0'),(153581,4429,'flexible_templates_1_content','Our solution increases your team collaboration and system automation. Our continuous technology improvements drive business value and cross-collaboration between teams.'),(153582,4429,'_flexible_templates_1_content','field_62c40c05f22f1'),(153583,4429,'flexible_templates_1_grey_box_content','We help improve the experience of your clients, customers, staff, and third parties without the need for the added cost of people resources.'),(153584,4429,'_flexible_templates_1_grey_box_content','field_62c40c1ef22f2'),(153585,4429,'flexible_templates_1_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(153586,4429,'_flexible_templates_1_button','field_62c40c38f22f3'),(153587,4429,'flexible_templates_1_image','4405'),(153588,4429,'_flexible_templates_1_image','field_62c40c4cf22f4'),(153589,4429,'flexible_templates_1_review_content','Translucent’s understanding of the cloud native DevOps space and expertise in Kubernetes through to data driven applications has proven extremely valuable… Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security…has been invaluable. I would use them again if I could. In fact, I would use their team for everything if I could!'),(153590,4429,'_flexible_templates_1_review_content','field_62c40c97f22f5'),(153591,4429,'flexible_templates_1_review_title','Rhys Parry - CTO - Volentix'),(153592,4429,'_flexible_templates_1_review_title','field_62c40cb4f22f6'),(153593,4429,'flexible_templates_2_journey_logo_map_image','4406'),(153594,4429,'_flexible_templates_2_journey_logo_map_image','field_62c40d24f22f8'),(153595,4429,'flexible_templates_2_heading','Your DevOps Journey Roadmap'),(153596,4429,'_flexible_templates_2_heading','field_62c40d46f22f9'),(153597,4429,'flexible_templates_2_scroll_image','4407'),(153598,4429,'_flexible_templates_2_scroll_image','field_62c40d60f22fa'),(153599,4429,'flexible_templates_3_heading','Services'),(153600,4429,'_flexible_templates_3_heading','field_62c40db8f22fc'),(153601,4429,'flexible_templates_3_application_column_heading','Develop and release better software faster using Kubernetes and DevOps practices'),(153602,4429,'_flexible_templates_3_application_column_heading','field_62c40e07f22fd'),(153603,4429,'flexible_templates_3_application_text_repeater','7'),(153604,4429,'_flexible_templates_3_application_text_repeater','field_62c40e34f22fe'),(153605,4429,'flexible_templates_3_application_sub_text','Deliver DevOps culture and best practices to clients'),(153606,4429,'_flexible_templates_3_application_sub_text','field_62c40e52f2300'),(153607,4429,'flexible_templates_3_application_column_second_slide_repeater','3'),(153608,4429,'_flexible_templates_3_application_column_second_slide_repeater','field_62c40ee2f2301'),(153609,4429,'flexible_templates_3_reliability_engineers_bottom','4408'),(153610,4429,'_flexible_templates_3_reliability_engineers_bottom','field_62c40f50f2304'),(153611,4429,'flexible_templates_3_reliability_engineers_content','Translucent’s Site Reliability Engineers (SRE) experts in DevOps are Kubernetes Certified Providers.'),(153612,4429,'_flexible_templates_3_reliability_engineers_content','field_62c40f64f2305'),(153613,4429,'flexible_templates_3_text_box','\"71% of Fortune 100 companies use Kubernetes.'),(153614,4429,'_flexible_templates_3_text_box','field_62c40f79f2306'),(153615,4429,'flexible_templates_3_right_short_text','(source: CNCF.IO)'),(153616,4429,'_flexible_templates_3_right_short_text','field_62c40f93f2307'),(153617,4429,'flexible_templates_4_image','4409'),(153618,4429,'_flexible_templates_4_image','field_62c41066f230c'),(153619,4429,'flexible_templates_4_arrow_show_hide_build','1'),(153620,4429,'_flexible_templates_4_arrow_show_hide_build','field_62c41086f230e'),(153621,4429,'flexible_templates_4_label_text','BUILD - REBUILD - REPLATAFORM'),(153622,4429,'_flexible_templates_4_label_text','field_62c41075f230d'),(153623,4429,'flexible_templates_4_heading','Is your company ready to compete?'),(153624,4429,'_flexible_templates_4_heading','field_62c410a3f230f'),(153625,4429,'flexible_templates_4_content','No matter how simple or complex, Translucent’s cloud native data driven Devops solutions can be tailored to your exact needs to\r\nsave your company money, keep clients happier, and close new customers.'),(153626,4429,'_flexible_templates_4_content','field_62c410bef2310'),(153627,4429,'flexible_templates_5_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(153628,4429,'_flexible_templates_5_button','field_62c4110df2312'),(153629,4429,'flexible_templates_5_book_now_text','6'),(153630,4429,'_flexible_templates_5_book_now_text','field_62c4112df2313'),(153631,4429,'flexible_templates_3_application_text_repeater_0_text','- 100% GitOps Based'),(153632,4429,'_flexible_templates_3_application_text_repeater_0_text','field_62c40e41f22ff'),(153633,4429,'flexible_templates_3_application_text_repeater_1_text','- Configuration as Code'),(153634,4429,'_flexible_templates_3_application_text_repeater_1_text','field_62c40e41f22ff'),(153635,4429,'flexible_templates_3_application_text_repeater_2_text','- Infrastructure as Code (IaC)'),(153636,4429,'_flexible_templates_3_application_text_repeater_2_text','field_62c40e41f22ff'),(153637,4429,'flexible_templates_3_application_text_repeater_3_text','- Declarative Pipelines'),(153638,4429,'_flexible_templates_3_application_text_repeater_3_text','field_62c40e41f22ff'),(153639,4429,'flexible_templates_3_application_text_repeater_4_text','- Monitoring | Observability'),(153640,4429,'_flexible_templates_3_application_text_repeater_4_text','field_62c40e41f22ff'),(153641,4429,'flexible_templates_3_application_text_repeater_5_text','- Cloud-Agnostic (AWS | GCP | Azure)'),(153642,4429,'_flexible_templates_3_application_text_repeater_5_text','field_62c40e41f22ff'),(153643,4429,'flexible_templates_3_application_text_repeater_6_text','- High Dev-Prod Parity'),(153644,4429,'_flexible_templates_3_application_text_repeater_6_text','field_62c40e41f22ff'),(153645,4429,'flexible_templates_3_application_column_second_slide_repeater_0_heading',''),(153646,4429,'_flexible_templates_3_application_column_second_slide_repeater_0_heading','field_62c40efaf2302'),(153647,4429,'flexible_templates_3_application_column_second_slide_repeater_0_paragraph','Managed Kubernetes Services on Hybrid and Multi-Cloud Strategy for Platform Development, using Azure, Google Cloud, AWS, VMWare and Private Cloud.'),(153648,4429,'_flexible_templates_3_application_column_second_slide_repeater_0_paragraph','field_62c40f05f2303'),(153649,4429,'flexible_templates_3_application_column_second_slide_repeater_1_heading','Deliver DevOps culture and best practices to clients'),(153650,4429,'_flexible_templates_3_application_column_second_slide_repeater_1_heading','field_62c40efaf2302'),(153651,4429,'flexible_templates_3_application_column_second_slide_repeater_1_paragraph','- Plan, migrate, manage, automate, and optimize your Kubernetes cloud infrastructure'),(153652,4429,'_flexible_templates_3_application_column_second_slide_repeater_1_paragraph','field_62c40f05f2303'),(153653,4429,'flexible_templates_3_application_column_second_slide_repeater_2_heading','Site Reliability Engineering - what can be measured can be managed'),(153654,4429,'_flexible_templates_3_application_column_second_slide_repeater_2_heading','field_62c40efaf2302'),(153655,4429,'flexible_templates_3_application_column_second_slide_repeater_2_paragraph',''),(153656,4429,'_flexible_templates_3_application_column_second_slide_repeater_2_paragraph','field_62c40f05f2303'),(153657,4429,'flexible_templates_5_book_now_text_0_text','Open for business 24/7'),(153658,4429,'_flexible_templates_5_book_now_text_0_text','field_62c4113df2314'),(153659,4429,'flexible_templates_5_book_now_text_1_text','Greater customer insights'),(153660,4429,'_flexible_templates_5_book_now_text_1_text','field_62c4113df2314'),(153661,4429,'flexible_templates_5_book_now_text_2_text','Global expansion'),(153662,4429,'_flexible_templates_5_book_now_text_2_text','field_62c4113df2314'),(153663,4429,'flexible_templates_5_book_now_text_3_text','Automated operational infrastructure'),(153664,4429,'_flexible_templates_5_book_now_text_3_text','field_62c4113df2314'),(153665,4429,'flexible_templates_5_book_now_text_4_text','Drive more revenue'),(153666,4429,'_flexible_templates_5_book_now_text_4_text','field_62c4113df2314'),(153667,4429,'flexible_templates_5_book_now_text_5_text','Automation saves money'),(153668,4429,'_flexible_templates_5_book_now_text_5_text','field_62c4113df2314'),(153669,4429,'flexible_templates_6_arrow_hide_and_show_data_driven','1'),(153670,4429,'_flexible_templates_6_arrow_hide_and_show_data_driven','field_62c41be01348d'),(153671,4429,'flexible_templates_6_label_text','COST-EFFECTIVE AUTOMATION'),(153672,4429,'_flexible_templates_6_label_text','field_62c41c061348e'),(153673,4429,'flexible_templates_6_left_text','Translucent takes the best functions in your operational workflow and wraps data-driven digital DevOps technology around them, which:'),(153674,4429,'_flexible_templates_6_left_text','field_62c41c1b1348f'),(153675,4429,'flexible_templates_6_application_col_first_0_text','Creates a better customer and internal employee experience'),(153676,4429,'_flexible_templates_6_application_col_first_0_text','field_62c41c7a13493'),(153677,4429,'flexible_templates_6_application_col_first_1_text','Automates your processes and self-healing systems'),(153678,4429,'_flexible_templates_6_application_col_first_1_text','field_62c41c7a13493'),(153679,4429,'flexible_templates_6_application_col_first_2_text','Saves you money in resources through automated processes'),(153680,4429,'_flexible_templates_6_application_col_first_2_text','field_62c41c7a13493'),(153681,4429,'flexible_templates_6_application_col_first','3'),(153682,4429,'_flexible_templates_6_application_col_first','field_62c41c6813492'),(153683,4429,'flexible_templates_6_application_col_second_0_text','Allows your business to be more effective and efficient in delivering your business value to your clients, in the current market conditions and into the future.'),(153684,4429,'_flexible_templates_6_application_col_second_0_text','field_62c41c9413495'),(153685,4429,'flexible_templates_6_application_col_second_1_text','Makes you money through a full digital transformation of your infrastructure.'),(153686,4429,'_flexible_templates_6_application_col_second_1_text','field_62c41c9413495'),(153687,4429,'flexible_templates_6_application_col_second','2'),(153688,4429,'_flexible_templates_6_application_col_second','field_62c41c8413494'),(153689,4429,'flexible_templates_6_swiper_content','This is not just about cloud native DevOps technology. It’s about… People, Business, Operations, and Results. Oh, and People! Did I say People?'),(153690,4429,'_flexible_templates_6_swiper_content','field_62c41caf13497'),(153691,4429,'flexible_templates_6_swiper_text','Bradford A. M. Sankar COO - Translucent Computing'),(153692,4429,'_flexible_templates_6_swiper_text','field_62c41ccd13498'),(153693,4429,'flexible_templates_7_mobile_image','4427'),(153694,4429,'_flexible_templates_7_mobile_image','field_62c41d81525e5'),(153695,4429,'flexible_templates_7_image','4428'),(153696,4429,'_flexible_templates_7_image','field_62c41d91525e6'),(153697,4429,'flexible_templates_7_heading','Cost-effective automation of your operations and infrastructure, with a focus on what drives business value'),(153698,4429,'_flexible_templates_7_heading','field_62c41da0525e7'),(153699,4429,'flexible_templates_8_heading','We treat your business like our own.'),(153700,4429,'_flexible_templates_8_heading','field_625565e14146d_field_6254fdb2efa27'),(153701,4429,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:10:\"Lets talk!\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(153702,4429,'_flexible_templates_8_cta','field_625565fa4146e_field_62551b3e101c4'),(153718,4431,'flexible_templates_0_mobile_image','4365'),(153719,4431,'_flexible_templates_0_mobile_image','field_62c409bd624b6'),(153720,4431,'flexible_templates_0_image','4366'),(153721,4431,'_flexible_templates_0_image','field_62c409cf624b7'),(153722,4431,'flexible_templates_0_heading','CLOUD NATIVE SOLUTIONS'),(153723,4431,'_flexible_templates_0_heading','field_62c409db624b8'),(153724,4431,'flexible_templates_0_sub_heading','Cloud Native DevOps Consulting'),(153725,4431,'_flexible_templates_0_sub_heading','field_62c409e8624b9'),(153726,4431,'flexible_templates','a:9:{i:0;s:28:\"cloud_native_solution_banner\";i:1;s:36:\"cloud_native_solution_drive_business\";i:2;s:29:\"cloud_native_solution_journey\";i:3;s:29:\"cloud_native_solution_service\";i:4;s:27:\"cloud_native_solution_build\";i:5;s:42:\"cloud_native_solution_book_consulation_now\";i:6;s:33:\"cloud_native_solution_data_driven\";i:7;s:36:\"cloud_native_solution_infrastructure\";i:8;s:17:\"lets_talk_section\";}'),(153727,4431,'_flexible_templates','field_6254f4d84ef9b'),(153728,4431,'flexible_templates_1_left_arrow_show_hide','0'),(153729,4431,'_flexible_templates_1_left_arrow_show_hide','field_62c40bccf22ef'),(153730,4431,'flexible_templates_1_label_text','COST-EFFECTIVE AUTOMATION'),(153731,4431,'_flexible_templates_1_label_text','field_62c40b9bf22ee'),(153732,4431,'flexible_templates_1_heading','Focused On What Drives Business Value'),(153733,4431,'_flexible_templates_1_heading','field_62c40be6f22f0'),(153734,4431,'flexible_templates_1_content','Our solution increases your team collaboration and system automation. Our continuous technology improvements drive business value and cross-collaboration between teams.'),(153735,4431,'_flexible_templates_1_content','field_62c40c05f22f1'),(153736,4431,'flexible_templates_1_grey_box_content','We help improve the experience of your clients, customers, staff, and third parties without the need for the added cost of people resources.'),(153737,4431,'_flexible_templates_1_grey_box_content','field_62c40c1ef22f2'),(153738,4431,'flexible_templates_1_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(153739,4431,'_flexible_templates_1_button','field_62c40c38f22f3'),(153740,4431,'flexible_templates_1_image','4405'),(153741,4431,'_flexible_templates_1_image','field_62c40c4cf22f4'),(153742,4431,'flexible_templates_1_review_content','Translucent’s understanding of the cloud native DevOps space and expertise in Kubernetes through to data driven applications has proven extremely valuable… Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security…has been invaluable. I would use them again if I could. In fact, I would use their team for everything if I could!'),(153743,4431,'_flexible_templates_1_review_content','field_62c40c97f22f5'),(153744,4431,'flexible_templates_1_review_title','Rhys Parry - CTO - Volentix'),(153745,4431,'_flexible_templates_1_review_title','field_62c40cb4f22f6'),(153746,4431,'flexible_templates_2_journey_logo_map_image','4406'),(153747,4431,'_flexible_templates_2_journey_logo_map_image','field_62c40d24f22f8'),(153748,4431,'flexible_templates_2_heading','Your DevOps Journey Roadmap'),(153749,4431,'_flexible_templates_2_heading','field_62c40d46f22f9'),(153750,4431,'flexible_templates_2_scroll_image','4407'),(153751,4431,'_flexible_templates_2_scroll_image','field_62c40d60f22fa'),(153752,4431,'flexible_templates_3_heading','Services'),(153753,4431,'_flexible_templates_3_heading','field_62c40db8f22fc'),(153754,4431,'flexible_templates_3_application_column_heading','Develop and release better software faster using Kubernetes and DevOps practices'),(153755,4431,'_flexible_templates_3_application_column_heading','field_62c40e07f22fd'),(153756,4431,'flexible_templates_3_application_text_repeater','7'),(153757,4431,'_flexible_templates_3_application_text_repeater','field_62c40e34f22fe'),(153758,4431,'flexible_templates_3_application_sub_text','Deliver DevOps culture and best practices to clients'),(153759,4431,'_flexible_templates_3_application_sub_text','field_62c40e52f2300'),(153760,4431,'flexible_templates_3_application_column_second_slide_repeater','3'),(153761,4431,'_flexible_templates_3_application_column_second_slide_repeater','field_62c40ee2f2301'),(153762,4431,'flexible_templates_3_reliability_engineers_bottom','4408'),(153763,4431,'_flexible_templates_3_reliability_engineers_bottom','field_62c40f50f2304'),(153764,4431,'flexible_templates_3_reliability_engineers_content','Translucent’s Site Reliability Engineers (SRE) experts in DevOps are Kubernetes Certified Providers.'),(153765,4431,'_flexible_templates_3_reliability_engineers_content','field_62c40f64f2305'),(153766,4431,'flexible_templates_3_text_box','\"71% of Fortune 100 companies use Kubernetes.'),(153767,4431,'_flexible_templates_3_text_box','field_62c40f79f2306'),(153768,4431,'flexible_templates_3_right_short_text','(source: CNCF.IO)'),(153769,4431,'_flexible_templates_3_right_short_text','field_62c40f93f2307'),(153770,4431,'flexible_templates_4_image','4409'),(153771,4431,'_flexible_templates_4_image','field_62c41066f230c'),(153772,4431,'flexible_templates_4_arrow_show_hide_build','1'),(153773,4431,'_flexible_templates_4_arrow_show_hide_build','field_62c41086f230e'),(153774,4431,'flexible_templates_4_label_text','BUILD - REBUILD - REPLATAFORM'),(153775,4431,'_flexible_templates_4_label_text','field_62c41075f230d'),(153776,4431,'flexible_templates_4_heading','Is your company ready to compete?'),(153777,4431,'_flexible_templates_4_heading','field_62c410a3f230f'),(153778,4431,'flexible_templates_4_content','No matter how simple or complex, Translucent’s cloud native data driven Devops solutions can be tailored to your exact needs to\r\nsave your company money, keep clients happier, and close new customers.'),(153779,4431,'_flexible_templates_4_content','field_62c410bef2310'),(153780,4431,'flexible_templates_5_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(153781,4431,'_flexible_templates_5_button','field_62c4110df2312'),(153782,4431,'flexible_templates_5_book_now_text','6'),(153783,4431,'_flexible_templates_5_book_now_text','field_62c4112df2313'),(153784,4431,'flexible_templates_3_application_text_repeater_0_text','- 100% GitOps Based'),(153785,4431,'_flexible_templates_3_application_text_repeater_0_text','field_62c40e41f22ff'),(153786,4431,'flexible_templates_3_application_text_repeater_1_text','- Configuration as Code'),(153787,4431,'_flexible_templates_3_application_text_repeater_1_text','field_62c40e41f22ff'),(153788,4431,'flexible_templates_3_application_text_repeater_2_text','- Infrastructure as Code (IaC)'),(153789,4431,'_flexible_templates_3_application_text_repeater_2_text','field_62c40e41f22ff'),(153790,4431,'flexible_templates_3_application_text_repeater_3_text','- Declarative Pipelines'),(153791,4431,'_flexible_templates_3_application_text_repeater_3_text','field_62c40e41f22ff'),(153792,4431,'flexible_templates_3_application_text_repeater_4_text','- Monitoring | Observability'),(153793,4431,'_flexible_templates_3_application_text_repeater_4_text','field_62c40e41f22ff'),(153794,4431,'flexible_templates_3_application_text_repeater_5_text','- Cloud-Agnostic (AWS | GCP | Azure)'),(153795,4431,'_flexible_templates_3_application_text_repeater_5_text','field_62c40e41f22ff'),(153796,4431,'flexible_templates_3_application_text_repeater_6_text','- High Dev-Prod Parity'),(153797,4431,'_flexible_templates_3_application_text_repeater_6_text','field_62c40e41f22ff'),(153798,4431,'flexible_templates_3_application_column_second_slide_repeater_0_heading',''),(153799,4431,'_flexible_templates_3_application_column_second_slide_repeater_0_heading','field_62c40efaf2302'),(153800,4431,'flexible_templates_3_application_column_second_slide_repeater_0_paragraph','Managed Kubernetes Services on Hybrid and Multi-Cloud Strategy for Platform Development, using Azure, Google Cloud, AWS, VMWare and Private Cloud.'),(153801,4431,'_flexible_templates_3_application_column_second_slide_repeater_0_paragraph','field_62c40f05f2303'),(153802,4431,'flexible_templates_3_application_column_second_slide_repeater_1_heading','Deliver DevOps culture and best practices to clients'),(153803,4431,'_flexible_templates_3_application_column_second_slide_repeater_1_heading','field_62c40efaf2302'),(153804,4431,'flexible_templates_3_application_column_second_slide_repeater_1_paragraph','- Plan, migrate, manage, automate, and optimize your Kubernetes cloud infrastructure'),(153805,4431,'_flexible_templates_3_application_column_second_slide_repeater_1_paragraph','field_62c40f05f2303'),(153806,4431,'flexible_templates_3_application_column_second_slide_repeater_2_heading','Site Reliability Engineering - what can be measured can be managed'),(153807,4431,'_flexible_templates_3_application_column_second_slide_repeater_2_heading','field_62c40efaf2302'),(153808,4431,'flexible_templates_3_application_column_second_slide_repeater_2_paragraph',''),(153809,4431,'_flexible_templates_3_application_column_second_slide_repeater_2_paragraph','field_62c40f05f2303'),(153810,4431,'flexible_templates_5_book_now_text_0_text','Open for business 24/7'),(153811,4431,'_flexible_templates_5_book_now_text_0_text','field_62c4113df2314'),(153812,4431,'flexible_templates_5_book_now_text_1_text','Greater customer insights'),(153813,4431,'_flexible_templates_5_book_now_text_1_text','field_62c4113df2314'),(153814,4431,'flexible_templates_5_book_now_text_2_text','Global expansion'),(153815,4431,'_flexible_templates_5_book_now_text_2_text','field_62c4113df2314'),(153816,4431,'flexible_templates_5_book_now_text_3_text','Automated operational infrastructure'),(153817,4431,'_flexible_templates_5_book_now_text_3_text','field_62c4113df2314'),(153818,4431,'flexible_templates_5_book_now_text_4_text','Drive more revenue'),(153819,4431,'_flexible_templates_5_book_now_text_4_text','field_62c4113df2314'),(153820,4431,'flexible_templates_5_book_now_text_5_text','Automation saves money'),(153821,4431,'_flexible_templates_5_book_now_text_5_text','field_62c4113df2314'),(153822,4431,'flexible_templates_6_arrow_hide_and_show_data_driven','1'),(153823,4431,'_flexible_templates_6_arrow_hide_and_show_data_driven','field_62c41be01348d'),(153824,4431,'flexible_templates_6_label_text','COST-EFFECTIVE AUTOMATION'),(153825,4431,'_flexible_templates_6_label_text','field_62c41c061348e'),(153826,4431,'flexible_templates_6_left_text','Translucent takes the best functions in your operational workflow and wraps data-driven digital DevOps technology around them, which:'),(153827,4431,'_flexible_templates_6_left_text','field_62c41c1b1348f'),(153828,4431,'flexible_templates_6_application_col_first_0_text','Creates a better customer and internal employee experience'),(153829,4431,'_flexible_templates_6_application_col_first_0_text','field_62c41c7a13493'),(153830,4431,'flexible_templates_6_application_col_first_1_text','Automates your processes and self-healing systems'),(153831,4431,'_flexible_templates_6_application_col_first_1_text','field_62c41c7a13493'),(153832,4431,'flexible_templates_6_application_col_first_2_text','Saves you money in resources through automated processes'),(153833,4431,'_flexible_templates_6_application_col_first_2_text','field_62c41c7a13493'),(153834,4431,'flexible_templates_6_application_col_first','3'),(153835,4431,'_flexible_templates_6_application_col_first','field_62c41c6813492'),(153836,4431,'flexible_templates_6_application_col_second_0_text','Allows your business to be more effective and efficient in delivering your business value to your clients, in the current market conditions and into the future.'),(153837,4431,'_flexible_templates_6_application_col_second_0_text','field_62c41c9413495'),(153838,4431,'flexible_templates_6_application_col_second_1_text','Makes you money through a full digital transformation of your infrastructure.'),(153839,4431,'_flexible_templates_6_application_col_second_1_text','field_62c41c9413495'),(153840,4431,'flexible_templates_6_application_col_second','2'),(153841,4431,'_flexible_templates_6_application_col_second','field_62c41c8413494'),(153842,4431,'flexible_templates_6_swiper_content','This is not just about cloud native DevOps technology. It’s about… People, Business, Operations, and Results. Oh, and People! Did I say People?'),(153843,4431,'_flexible_templates_6_swiper_content','field_62c41caf13497'),(153844,4431,'flexible_templates_6_swiper_text','Bradford A. M. Sankar COO - Translucent Computing'),(153845,4431,'_flexible_templates_6_swiper_text','field_62c41ccd13498'),(153846,4431,'flexible_templates_7_mobile_image','4427'),(153847,4431,'_flexible_templates_7_mobile_image','field_62c41d81525e5'),(153848,4431,'flexible_templates_7_image','4428'),(153849,4431,'_flexible_templates_7_image','field_62c41d91525e6'),(153850,4431,'flexible_templates_7_heading','Cost-effective automation of your operations and infrastructure, with a focus on what drives business value'),(153851,4431,'_flexible_templates_7_heading','field_62c41da0525e7'),(153852,4431,'flexible_templates_8_heading','We treat your business like our own.'),(153853,4431,'_flexible_templates_8_heading','field_625565e14146d_field_6254fdb2efa27'),(153854,4431,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:10:\"Lets talk!\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(153855,4431,'_flexible_templates_8_cta','field_625565fa4146e_field_62551b3e101c4'),(153859,4432,'flexible_templates_0_mobile_image','4365'),(153860,4432,'_flexible_templates_0_mobile_image','field_62c409bd624b6'),(153861,4432,'flexible_templates_0_image','4366'),(153862,4432,'_flexible_templates_0_image','field_62c409cf624b7'),(153863,4432,'flexible_templates_0_heading','CLOUD NATIVE SOLUTIONS'),(153864,4432,'_flexible_templates_0_heading','field_62c409db624b8'),(153865,4432,'flexible_templates_0_sub_heading','Cloud Native DevOps Consulting'),(153866,4432,'_flexible_templates_0_sub_heading','field_62c409e8624b9'),(153867,4432,'flexible_templates','a:9:{i:0;s:28:\"cloud_native_solution_banner\";i:1;s:36:\"cloud_native_solution_drive_business\";i:2;s:29:\"cloud_native_solution_journey\";i:3;s:29:\"cloud_native_solution_service\";i:4;s:27:\"cloud_native_solution_build\";i:5;s:42:\"cloud_native_solution_book_consulation_now\";i:6;s:33:\"cloud_native_solution_data_driven\";i:7;s:36:\"cloud_native_solution_infrastructure\";i:8;s:17:\"lets_talk_section\";}'),(153868,4432,'_flexible_templates','field_6254f4d84ef9b'),(153869,4432,'flexible_templates_1_left_arrow_show_hide','1'),(153870,4432,'_flexible_templates_1_left_arrow_show_hide','field_62c40bccf22ef'),(153871,4432,'flexible_templates_1_label_text','COST-EFFECTIVE AUTOMATION'),(153872,4432,'_flexible_templates_1_label_text','field_62c40b9bf22ee'),(153873,4432,'flexible_templates_1_heading','Focused On What Drives Business Value'),(153874,4432,'_flexible_templates_1_heading','field_62c40be6f22f0'),(153875,4432,'flexible_templates_1_content','Our solution increases your team collaboration and system automation. Our continuous technology improvements drive business value and cross-collaboration between teams.'),(153876,4432,'_flexible_templates_1_content','field_62c40c05f22f1'),(153877,4432,'flexible_templates_1_grey_box_content','We help improve the experience of your clients, customers, staff, and third parties without the need for the added cost of people resources.'),(153878,4432,'_flexible_templates_1_grey_box_content','field_62c40c1ef22f2'),(153879,4432,'flexible_templates_1_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(153880,4432,'_flexible_templates_1_button','field_62c40c38f22f3'),(153881,4432,'flexible_templates_1_image','4405'),(153882,4432,'_flexible_templates_1_image','field_62c40c4cf22f4'),(153883,4432,'flexible_templates_1_review_content','Translucent’s understanding of the cloud native DevOps space and expertise in Kubernetes through to data driven applications has proven extremely valuable… Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security…has been invaluable. I would use them again if I could. In fact, I would use their team for everything if I could!'),(153884,4432,'_flexible_templates_1_review_content','field_62c40c97f22f5'),(153885,4432,'flexible_templates_1_review_title','Rhys Parry - CTO - Volentix'),(153886,4432,'_flexible_templates_1_review_title','field_62c40cb4f22f6'),(153887,4432,'flexible_templates_2_journey_logo_map_image','4406'),(153888,4432,'_flexible_templates_2_journey_logo_map_image','field_62c40d24f22f8'),(153889,4432,'flexible_templates_2_heading','Your DevOps Journey Roadmap'),(153890,4432,'_flexible_templates_2_heading','field_62c40d46f22f9'),(153891,4432,'flexible_templates_2_scroll_image','4407'),(153892,4432,'_flexible_templates_2_scroll_image','field_62c40d60f22fa'),(153893,4432,'flexible_templates_3_heading','Services'),(153894,4432,'_flexible_templates_3_heading','field_62c40db8f22fc'),(153895,4432,'flexible_templates_3_application_column_heading','Develop and release better software faster using Kubernetes and DevOps practices'),(153896,4432,'_flexible_templates_3_application_column_heading','field_62c40e07f22fd'),(153897,4432,'flexible_templates_3_application_text_repeater','7'),(153898,4432,'_flexible_templates_3_application_text_repeater','field_62c40e34f22fe'),(153899,4432,'flexible_templates_3_application_sub_text','Deliver DevOps culture and best practices to clients'),(153900,4432,'_flexible_templates_3_application_sub_text','field_62c40e52f2300'),(153901,4432,'flexible_templates_3_application_column_second_slide_repeater','3'),(153902,4432,'_flexible_templates_3_application_column_second_slide_repeater','field_62c40ee2f2301'),(153903,4432,'flexible_templates_3_reliability_engineers_bottom','4408'),(153904,4432,'_flexible_templates_3_reliability_engineers_bottom','field_62c40f50f2304'),(153905,4432,'flexible_templates_3_reliability_engineers_content','Translucent’s Site Reliability Engineers (SRE) experts in DevOps are Kubernetes Certified Providers.'),(153906,4432,'_flexible_templates_3_reliability_engineers_content','field_62c40f64f2305'),(153907,4432,'flexible_templates_3_text_box','\"71% of Fortune 100 companies use Kubernetes.'),(153908,4432,'_flexible_templates_3_text_box','field_62c40f79f2306'),(153909,4432,'flexible_templates_3_right_short_text','(source: CNCF.IO)'),(153910,4432,'_flexible_templates_3_right_short_text','field_62c40f93f2307'),(153911,4432,'flexible_templates_4_image','4409'),(153912,4432,'_flexible_templates_4_image','field_62c41066f230c'),(153913,4432,'flexible_templates_4_arrow_show_hide_build','1'),(153914,4432,'_flexible_templates_4_arrow_show_hide_build','field_62c41086f230e'),(153915,4432,'flexible_templates_4_label_text','BUILD - REBUILD - REPLATAFORM'),(153916,4432,'_flexible_templates_4_label_text','field_62c41075f230d'),(153917,4432,'flexible_templates_4_heading','Is your company ready to compete?'),(153918,4432,'_flexible_templates_4_heading','field_62c410a3f230f'),(153919,4432,'flexible_templates_4_content','No matter how simple or complex, Translucent’s cloud native data driven Devops solutions can be tailored to your exact needs to\r\nsave your company money, keep clients happier, and close new customers.'),(153920,4432,'_flexible_templates_4_content','field_62c410bef2310'),(153921,4432,'flexible_templates_5_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(153922,4432,'_flexible_templates_5_button','field_62c4110df2312'),(153923,4432,'flexible_templates_5_book_now_text','6'),(153924,4432,'_flexible_templates_5_book_now_text','field_62c4112df2313'),(153925,4432,'flexible_templates_3_application_text_repeater_0_text','- 100% GitOps Based'),(153926,4432,'_flexible_templates_3_application_text_repeater_0_text','field_62c40e41f22ff'),(153927,4432,'flexible_templates_3_application_text_repeater_1_text','- Configuration as Code'),(153928,4432,'_flexible_templates_3_application_text_repeater_1_text','field_62c40e41f22ff'),(153929,4432,'flexible_templates_3_application_text_repeater_2_text','- Infrastructure as Code (IaC)'),(153930,4432,'_flexible_templates_3_application_text_repeater_2_text','field_62c40e41f22ff'),(153931,4432,'flexible_templates_3_application_text_repeater_3_text','- Declarative Pipelines'),(153932,4432,'_flexible_templates_3_application_text_repeater_3_text','field_62c40e41f22ff'),(153933,4432,'flexible_templates_3_application_text_repeater_4_text','- Monitoring | Observability'),(153934,4432,'_flexible_templates_3_application_text_repeater_4_text','field_62c40e41f22ff'),(153935,4432,'flexible_templates_3_application_text_repeater_5_text','- Cloud-Agnostic (AWS | GCP | Azure)'),(153936,4432,'_flexible_templates_3_application_text_repeater_5_text','field_62c40e41f22ff'),(153937,4432,'flexible_templates_3_application_text_repeater_6_text','- High Dev-Prod Parity'),(153938,4432,'_flexible_templates_3_application_text_repeater_6_text','field_62c40e41f22ff'),(153939,4432,'flexible_templates_3_application_column_second_slide_repeater_0_heading',''),(153940,4432,'_flexible_templates_3_application_column_second_slide_repeater_0_heading','field_62c40efaf2302'),(153941,4432,'flexible_templates_3_application_column_second_slide_repeater_0_paragraph','Managed Kubernetes Services on Hybrid and Multi-Cloud Strategy for Platform Development, using Azure, Google Cloud, AWS, VMWare and Private Cloud.'),(153942,4432,'_flexible_templates_3_application_column_second_slide_repeater_0_paragraph','field_62c40f05f2303'),(153943,4432,'flexible_templates_3_application_column_second_slide_repeater_1_heading','Deliver DevOps culture and best practices to clients'),(153944,4432,'_flexible_templates_3_application_column_second_slide_repeater_1_heading','field_62c40efaf2302'),(153945,4432,'flexible_templates_3_application_column_second_slide_repeater_1_paragraph','- Plan, migrate, manage, automate, and optimize your Kubernetes cloud infrastructure'),(153946,4432,'_flexible_templates_3_application_column_second_slide_repeater_1_paragraph','field_62c40f05f2303'),(153947,4432,'flexible_templates_3_application_column_second_slide_repeater_2_heading','Site Reliability Engineering - what can be measured can be managed'),(153948,4432,'_flexible_templates_3_application_column_second_slide_repeater_2_heading','field_62c40efaf2302'),(153949,4432,'flexible_templates_3_application_column_second_slide_repeater_2_paragraph',''),(153950,4432,'_flexible_templates_3_application_column_second_slide_repeater_2_paragraph','field_62c40f05f2303'),(153951,4432,'flexible_templates_5_book_now_text_0_text','Open for business 24/7'),(153952,4432,'_flexible_templates_5_book_now_text_0_text','field_62c4113df2314'),(153953,4432,'flexible_templates_5_book_now_text_1_text','Greater customer insights'),(153954,4432,'_flexible_templates_5_book_now_text_1_text','field_62c4113df2314'),(153955,4432,'flexible_templates_5_book_now_text_2_text','Global expansion'),(153956,4432,'_flexible_templates_5_book_now_text_2_text','field_62c4113df2314'),(153957,4432,'flexible_templates_5_book_now_text_3_text','Automated operational infrastructure'),(153958,4432,'_flexible_templates_5_book_now_text_3_text','field_62c4113df2314'),(153959,4432,'flexible_templates_5_book_now_text_4_text','Drive more revenue'),(153960,4432,'_flexible_templates_5_book_now_text_4_text','field_62c4113df2314'),(153961,4432,'flexible_templates_5_book_now_text_5_text','Automation saves money'),(153962,4432,'_flexible_templates_5_book_now_text_5_text','field_62c4113df2314'),(153963,4432,'flexible_templates_6_arrow_hide_and_show_data_driven','1'),(153964,4432,'_flexible_templates_6_arrow_hide_and_show_data_driven','field_62c41be01348d'),(153965,4432,'flexible_templates_6_label_text','COST-EFFECTIVE AUTOMATION'),(153966,4432,'_flexible_templates_6_label_text','field_62c41c061348e'),(153967,4432,'flexible_templates_6_left_text','Translucent takes the best functions in your operational workflow and wraps data-driven digital DevOps technology around them, which:'),(153968,4432,'_flexible_templates_6_left_text','field_62c41c1b1348f'),(153969,4432,'flexible_templates_6_application_col_first_0_text','Creates a better customer and internal employee experience'),(153970,4432,'_flexible_templates_6_application_col_first_0_text','field_62c41c7a13493'),(153971,4432,'flexible_templates_6_application_col_first_1_text','Automates your processes and self-healing systems'),(153972,4432,'_flexible_templates_6_application_col_first_1_text','field_62c41c7a13493'),(153973,4432,'flexible_templates_6_application_col_first_2_text','Saves you money in resources through automated processes'),(153974,4432,'_flexible_templates_6_application_col_first_2_text','field_62c41c7a13493'),(153975,4432,'flexible_templates_6_application_col_first','3'),(153976,4432,'_flexible_templates_6_application_col_first','field_62c41c6813492'),(153977,4432,'flexible_templates_6_application_col_second_0_text','Allows your business to be more effective and efficient in delivering your business value to your clients, in the current market conditions and into the future.'),(153978,4432,'_flexible_templates_6_application_col_second_0_text','field_62c41c9413495'),(153979,4432,'flexible_templates_6_application_col_second_1_text','Makes you money through a full digital transformation of your infrastructure.'),(153980,4432,'_flexible_templates_6_application_col_second_1_text','field_62c41c9413495'),(153981,4432,'flexible_templates_6_application_col_second','2'),(153982,4432,'_flexible_templates_6_application_col_second','field_62c41c8413494'),(153983,4432,'flexible_templates_6_swiper_content','This is not just about cloud native DevOps technology. It’s about… People, Business, Operations, and Results. Oh, and People! Did I say People?'),(153984,4432,'_flexible_templates_6_swiper_content','field_62c41caf13497'),(153985,4432,'flexible_templates_6_swiper_text','Bradford A. M. Sankar COO - Translucent Computing'),(153986,4432,'_flexible_templates_6_swiper_text','field_62c41ccd13498'),(153987,4432,'flexible_templates_7_mobile_image','4427'),(153988,4432,'_flexible_templates_7_mobile_image','field_62c41d81525e5'),(153989,4432,'flexible_templates_7_image','4428'),(153990,4432,'_flexible_templates_7_image','field_62c41d91525e6'),(153991,4432,'flexible_templates_7_heading','Cost-effective automation of your operations and infrastructure, with a focus on what drives business value'),(153992,4432,'_flexible_templates_7_heading','field_62c41da0525e7'),(153993,4432,'flexible_templates_8_heading','We treat your business like our own.'),(153994,4432,'_flexible_templates_8_heading','field_625565e14146d_field_6254fdb2efa27'),(153995,4432,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:10:\"Lets talk!\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(153996,4432,'_flexible_templates_8_cta','field_625565fa4146e_field_62551b3e101c4'),(154000,4433,'flexible_templates_0_mobile_image','4365'),(154001,4433,'_flexible_templates_0_mobile_image','field_62c409bd624b6'),(154002,4433,'flexible_templates_0_image','4366'),(154003,4433,'_flexible_templates_0_image','field_62c409cf624b7'),(154004,4433,'flexible_templates_0_heading','CLOUD NATIVE SOLUTIONS'),(154005,4433,'_flexible_templates_0_heading','field_62c409db624b8'),(154006,4433,'flexible_templates_0_sub_heading','Cloud Native DevOps Consulting'),(154007,4433,'_flexible_templates_0_sub_heading','field_62c409e8624b9'),(154008,4433,'flexible_templates','a:9:{i:0;s:28:\"cloud_native_solution_banner\";i:1;s:36:\"cloud_native_solution_drive_business\";i:2;s:29:\"cloud_native_solution_journey\";i:3;s:29:\"cloud_native_solution_service\";i:4;s:27:\"cloud_native_solution_build\";i:5;s:42:\"cloud_native_solution_book_consulation_now\";i:6;s:33:\"cloud_native_solution_data_driven\";i:7;s:36:\"cloud_native_solution_infrastructure\";i:8;s:17:\"lets_talk_section\";}'),(154009,4433,'_flexible_templates','field_6254f4d84ef9b'),(154010,4433,'flexible_templates_1_left_arrow_show_hide','1'),(154011,4433,'_flexible_templates_1_left_arrow_show_hide','field_62c40bccf22ef'),(154012,4433,'flexible_templates_1_label_text','COST-EFFECTIVE AUTOMATION'),(154013,4433,'_flexible_templates_1_label_text','field_62c40b9bf22ee'),(154014,4433,'flexible_templates_1_heading','Focused On What Drives Business Value'),(154015,4433,'_flexible_templates_1_heading','field_62c40be6f22f0'),(154016,4433,'flexible_templates_1_content','Our solution increases your team collaboration and system automation. Our continuous technology improvements drive business value and cross-collaboration between teams.'),(154017,4433,'_flexible_templates_1_content','field_62c40c05f22f1'),(154018,4433,'flexible_templates_1_grey_box_content','We help improve the experience of your clients, customers, staff, and third parties without the need for the added cost of people resources.'),(154019,4433,'_flexible_templates_1_grey_box_content','field_62c40c1ef22f2'),(154020,4433,'flexible_templates_1_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(154021,4433,'_flexible_templates_1_button','field_62c40c38f22f3'),(154022,4433,'flexible_templates_1_image','4405'),(154023,4433,'_flexible_templates_1_image','field_62c40c4cf22f4'),(154024,4433,'flexible_templates_1_review_content','Translucent’s understanding of the cloud native DevOps space and expertise in Kubernetes through to data driven applications has proven extremely valuable… Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security…has been invaluable. I would use them again if I could. In fact, I would use their team for everything if I could!'),(154025,4433,'_flexible_templates_1_review_content','field_62c40c97f22f5'),(154026,4433,'flexible_templates_1_review_title','Rhys Parry - CTO - Volentix'),(154027,4433,'_flexible_templates_1_review_title','field_62c40cb4f22f6'),(154028,4433,'flexible_templates_2_journey_logo_map_image','4406'),(154029,4433,'_flexible_templates_2_journey_logo_map_image','field_62c40d24f22f8'),(154030,4433,'flexible_templates_2_heading','Your DevOps Journey Roadmap'),(154031,4433,'_flexible_templates_2_heading','field_62c40d46f22f9'),(154032,4433,'flexible_templates_2_scroll_image','4407'),(154033,4433,'_flexible_templates_2_scroll_image','field_62c40d60f22fa'),(154034,4433,'flexible_templates_3_heading','Services'),(154035,4433,'_flexible_templates_3_heading','field_62c40db8f22fc'),(154036,4433,'flexible_templates_3_application_column_heading','Develop and release better software faster using Kubernetes and DevOps practices'),(154037,4433,'_flexible_templates_3_application_column_heading','field_62c40e07f22fd'),(154038,4433,'flexible_templates_3_application_text_repeater','7'),(154039,4433,'_flexible_templates_3_application_text_repeater','field_62c40e34f22fe'),(154040,4433,'flexible_templates_3_application_sub_text','Deliver DevOps culture and best practices to clients'),(154041,4433,'_flexible_templates_3_application_sub_text','field_62c40e52f2300'),(154042,4433,'flexible_templates_3_application_column_second_slide_repeater','3'),(154043,4433,'_flexible_templates_3_application_column_second_slide_repeater','field_62c40ee2f2301'),(154044,4433,'flexible_templates_3_reliability_engineers_bottom','4408'),(154045,4433,'_flexible_templates_3_reliability_engineers_bottom','field_62c40f50f2304'),(154046,4433,'flexible_templates_3_reliability_engineers_content','Translucent’s Site Reliability Engineers (SRE) experts in DevOps are Kubernetes Certified Providers.'),(154047,4433,'_flexible_templates_3_reliability_engineers_content','field_62c40f64f2305'),(154048,4433,'flexible_templates_3_text_box','\"71% of Fortune 100 companies use Kubernetes.'),(154049,4433,'_flexible_templates_3_text_box','field_62c40f79f2306'),(154050,4433,'flexible_templates_3_right_short_text','(source: CNCF.IO)'),(154051,4433,'_flexible_templates_3_right_short_text','field_62c40f93f2307'),(154052,4433,'flexible_templates_4_image','4409'),(154053,4433,'_flexible_templates_4_image','field_62c41066f230c'),(154054,4433,'flexible_templates_4_arrow_show_hide_build','0'),(154055,4433,'_flexible_templates_4_arrow_show_hide_build','field_62c41086f230e'),(154056,4433,'flexible_templates_4_label_text','BUILD - REBUILD - REPLATAFORM'),(154057,4433,'_flexible_templates_4_label_text','field_62c41075f230d'),(154058,4433,'flexible_templates_4_heading','Is your company ready to compete?'),(154059,4433,'_flexible_templates_4_heading','field_62c410a3f230f'),(154060,4433,'flexible_templates_4_content','No matter how simple or complex, Translucent’s cloud native data driven Devops solutions can be tailored to your exact needs to\r\nsave your company money, keep clients happier, and close new customers.'),(154061,4433,'_flexible_templates_4_content','field_62c410bef2310'),(154062,4433,'flexible_templates_5_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(154063,4433,'_flexible_templates_5_button','field_62c4110df2312'),(154064,4433,'flexible_templates_5_book_now_text','6'),(154065,4433,'_flexible_templates_5_book_now_text','field_62c4112df2313'),(154066,4433,'flexible_templates_3_application_text_repeater_0_text','- 100% GitOps Based'),(154067,4433,'_flexible_templates_3_application_text_repeater_0_text','field_62c40e41f22ff'),(154068,4433,'flexible_templates_3_application_text_repeater_1_text','- Configuration as Code'),(154069,4433,'_flexible_templates_3_application_text_repeater_1_text','field_62c40e41f22ff'),(154070,4433,'flexible_templates_3_application_text_repeater_2_text','- Infrastructure as Code (IaC)'),(154071,4433,'_flexible_templates_3_application_text_repeater_2_text','field_62c40e41f22ff'),(154072,4433,'flexible_templates_3_application_text_repeater_3_text','- Declarative Pipelines'),(154073,4433,'_flexible_templates_3_application_text_repeater_3_text','field_62c40e41f22ff'),(154074,4433,'flexible_templates_3_application_text_repeater_4_text','- Monitoring | Observability'),(154075,4433,'_flexible_templates_3_application_text_repeater_4_text','field_62c40e41f22ff'),(154076,4433,'flexible_templates_3_application_text_repeater_5_text','- Cloud-Agnostic (AWS | GCP | Azure)'),(154077,4433,'_flexible_templates_3_application_text_repeater_5_text','field_62c40e41f22ff'),(154078,4433,'flexible_templates_3_application_text_repeater_6_text','- High Dev-Prod Parity'),(154079,4433,'_flexible_templates_3_application_text_repeater_6_text','field_62c40e41f22ff'),(154080,4433,'flexible_templates_3_application_column_second_slide_repeater_0_heading',''),(154081,4433,'_flexible_templates_3_application_column_second_slide_repeater_0_heading','field_62c40efaf2302'),(154082,4433,'flexible_templates_3_application_column_second_slide_repeater_0_paragraph','Managed Kubernetes Services on Hybrid and Multi-Cloud Strategy for Platform Development, using Azure, Google Cloud, AWS, VMWare and Private Cloud.'),(154083,4433,'_flexible_templates_3_application_column_second_slide_repeater_0_paragraph','field_62c40f05f2303'),(154084,4433,'flexible_templates_3_application_column_second_slide_repeater_1_heading','Deliver DevOps culture and best practices to clients'),(154085,4433,'_flexible_templates_3_application_column_second_slide_repeater_1_heading','field_62c40efaf2302'),(154086,4433,'flexible_templates_3_application_column_second_slide_repeater_1_paragraph','- Plan, migrate, manage, automate, and optimize your Kubernetes cloud infrastructure'),(154087,4433,'_flexible_templates_3_application_column_second_slide_repeater_1_paragraph','field_62c40f05f2303'),(154088,4433,'flexible_templates_3_application_column_second_slide_repeater_2_heading','Site Reliability Engineering - what can be measured can be managed'),(154089,4433,'_flexible_templates_3_application_column_second_slide_repeater_2_heading','field_62c40efaf2302'),(154090,4433,'flexible_templates_3_application_column_second_slide_repeater_2_paragraph',''),(154091,4433,'_flexible_templates_3_application_column_second_slide_repeater_2_paragraph','field_62c40f05f2303'),(154092,4433,'flexible_templates_5_book_now_text_0_text','Open for business 24/7'),(154093,4433,'_flexible_templates_5_book_now_text_0_text','field_62c4113df2314'),(154094,4433,'flexible_templates_5_book_now_text_1_text','Greater customer insights'),(154095,4433,'_flexible_templates_5_book_now_text_1_text','field_62c4113df2314'),(154096,4433,'flexible_templates_5_book_now_text_2_text','Global expansion'),(154097,4433,'_flexible_templates_5_book_now_text_2_text','field_62c4113df2314'),(154098,4433,'flexible_templates_5_book_now_text_3_text','Automated operational infrastructure'),(154099,4433,'_flexible_templates_5_book_now_text_3_text','field_62c4113df2314'),(154100,4433,'flexible_templates_5_book_now_text_4_text','Drive more revenue'),(154101,4433,'_flexible_templates_5_book_now_text_4_text','field_62c4113df2314'),(154102,4433,'flexible_templates_5_book_now_text_5_text','Automation saves money'),(154103,4433,'_flexible_templates_5_book_now_text_5_text','field_62c4113df2314'),(154104,4433,'flexible_templates_6_arrow_hide_and_show_data_driven','1'),(154105,4433,'_flexible_templates_6_arrow_hide_and_show_data_driven','field_62c41be01348d'),(154106,4433,'flexible_templates_6_label_text','COST-EFFECTIVE AUTOMATION'),(154107,4433,'_flexible_templates_6_label_text','field_62c41c061348e'),(154108,4433,'flexible_templates_6_left_text','Translucent takes the best functions in your operational workflow and wraps data-driven digital DevOps technology around them, which:'),(154109,4433,'_flexible_templates_6_left_text','field_62c41c1b1348f'),(154110,4433,'flexible_templates_6_application_col_first_0_text','Creates a better customer and internal employee experience'),(154111,4433,'_flexible_templates_6_application_col_first_0_text','field_62c41c7a13493'),(154112,4433,'flexible_templates_6_application_col_first_1_text','Automates your processes and self-healing systems'),(154113,4433,'_flexible_templates_6_application_col_first_1_text','field_62c41c7a13493'),(154114,4433,'flexible_templates_6_application_col_first_2_text','Saves you money in resources through automated processes'),(154115,4433,'_flexible_templates_6_application_col_first_2_text','field_62c41c7a13493'),(154116,4433,'flexible_templates_6_application_col_first','3'),(154117,4433,'_flexible_templates_6_application_col_first','field_62c41c6813492'),(154118,4433,'flexible_templates_6_application_col_second_0_text','Allows your business to be more effective and efficient in delivering your business value to your clients, in the current market conditions and into the future.'),(154119,4433,'_flexible_templates_6_application_col_second_0_text','field_62c41c9413495'),(154120,4433,'flexible_templates_6_application_col_second_1_text','Makes you money through a full digital transformation of your infrastructure.'),(154121,4433,'_flexible_templates_6_application_col_second_1_text','field_62c41c9413495'),(154122,4433,'flexible_templates_6_application_col_second','2'),(154123,4433,'_flexible_templates_6_application_col_second','field_62c41c8413494'),(154124,4433,'flexible_templates_6_swiper_content','This is not just about cloud native DevOps technology. It’s about… People, Business, Operations, and Results. Oh, and People! Did I say People?'),(154125,4433,'_flexible_templates_6_swiper_content','field_62c41caf13497'),(154126,4433,'flexible_templates_6_swiper_text','Bradford A. M. Sankar COO - Translucent Computing'),(154127,4433,'_flexible_templates_6_swiper_text','field_62c41ccd13498'),(154128,4433,'flexible_templates_7_mobile_image','4427'),(154129,4433,'_flexible_templates_7_mobile_image','field_62c41d81525e5'),(154130,4433,'flexible_templates_7_image','4428'),(154131,4433,'_flexible_templates_7_image','field_62c41d91525e6'),(154132,4433,'flexible_templates_7_heading','Cost-effective automation of your operations and infrastructure, with a focus on what drives business value'),(154133,4433,'_flexible_templates_7_heading','field_62c41da0525e7'),(154134,4433,'flexible_templates_8_heading','We treat your business like our own.'),(154135,4433,'_flexible_templates_8_heading','field_625565e14146d_field_6254fdb2efa27'),(154136,4433,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:10:\"Lets talk!\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(154137,4433,'_flexible_templates_8_cta','field_625565fa4146e_field_62551b3e101c4'),(154141,4434,'flexible_templates_0_mobile_image','4365'),(154142,4434,'_flexible_templates_0_mobile_image','field_62c409bd624b6'),(154143,4434,'flexible_templates_0_image','4366'),(154144,4434,'_flexible_templates_0_image','field_62c409cf624b7'),(154145,4434,'flexible_templates_0_heading','CLOUD NATIVE SOLUTIONS'),(154146,4434,'_flexible_templates_0_heading','field_62c409db624b8'),(154147,4434,'flexible_templates_0_sub_heading','Cloud Native DevOps Consulting'),(154148,4434,'_flexible_templates_0_sub_heading','field_62c409e8624b9'),(154149,4434,'flexible_templates','a:9:{i:0;s:28:\"cloud_native_solution_banner\";i:1;s:36:\"cloud_native_solution_drive_business\";i:2;s:29:\"cloud_native_solution_journey\";i:3;s:29:\"cloud_native_solution_service\";i:4;s:27:\"cloud_native_solution_build\";i:5;s:42:\"cloud_native_solution_book_consulation_now\";i:6;s:33:\"cloud_native_solution_data_driven\";i:7;s:36:\"cloud_native_solution_infrastructure\";i:8;s:17:\"lets_talk_section\";}'),(154150,4434,'_flexible_templates','field_6254f4d84ef9b'),(154151,4434,'flexible_templates_1_left_arrow_show_hide','1'),(154152,4434,'_flexible_templates_1_left_arrow_show_hide','field_62c40bccf22ef'),(154153,4434,'flexible_templates_1_label_text','COST-EFFECTIVE AUTOMATION'),(154154,4434,'_flexible_templates_1_label_text','field_62c40b9bf22ee'),(154155,4434,'flexible_templates_1_heading','Focused On What Drives Business Value'),(154156,4434,'_flexible_templates_1_heading','field_62c40be6f22f0'),(154157,4434,'flexible_templates_1_content','Our solution increases your team collaboration and system automation. Our continuous technology improvements drive business value and cross-collaboration between teams.'),(154158,4434,'_flexible_templates_1_content','field_62c40c05f22f1'),(154159,4434,'flexible_templates_1_grey_box_content','We help improve the experience of your clients, customers, staff, and third parties without the need for the added cost of people resources.'),(154160,4434,'_flexible_templates_1_grey_box_content','field_62c40c1ef22f2'),(154161,4434,'flexible_templates_1_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(154162,4434,'_flexible_templates_1_button','field_62c40c38f22f3'),(154163,4434,'flexible_templates_1_image','4405'),(154164,4434,'_flexible_templates_1_image','field_62c40c4cf22f4'),(154165,4434,'flexible_templates_1_review_content','Translucent’s understanding of the cloud native DevOps space and expertise in Kubernetes through to data driven applications has proven extremely valuable… Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security…has been invaluable. I would use them again if I could. In fact, I would use their team for everything if I could!'),(154166,4434,'_flexible_templates_1_review_content','field_62c40c97f22f5'),(154167,4434,'flexible_templates_1_review_title','Rhys Parry - CTO - Volentix'),(154168,4434,'_flexible_templates_1_review_title','field_62c40cb4f22f6'),(154169,4434,'flexible_templates_2_journey_logo_map_image','4406'),(154170,4434,'_flexible_templates_2_journey_logo_map_image','field_62c40d24f22f8'),(154171,4434,'flexible_templates_2_heading','Your DevOps Journey Roadmap'),(154172,4434,'_flexible_templates_2_heading','field_62c40d46f22f9'),(154173,4434,'flexible_templates_2_scroll_image','4407'),(154174,4434,'_flexible_templates_2_scroll_image','field_62c40d60f22fa'),(154175,4434,'flexible_templates_3_heading','Services'),(154176,4434,'_flexible_templates_3_heading','field_62c40db8f22fc'),(154177,4434,'flexible_templates_3_application_column_heading','Develop and release better software faster using Kubernetes and DevOps practices'),(154178,4434,'_flexible_templates_3_application_column_heading','field_62c40e07f22fd'),(154179,4434,'flexible_templates_3_application_text_repeater','7'),(154180,4434,'_flexible_templates_3_application_text_repeater','field_62c40e34f22fe'),(154181,4434,'flexible_templates_3_application_sub_text','Deliver DevOps culture and best practices to clients'),(154182,4434,'_flexible_templates_3_application_sub_text','field_62c40e52f2300'),(154183,4434,'flexible_templates_3_application_column_second_slide_repeater','3'),(154184,4434,'_flexible_templates_3_application_column_second_slide_repeater','field_62c40ee2f2301'),(154185,4434,'flexible_templates_3_reliability_engineers_bottom','4408'),(154186,4434,'_flexible_templates_3_reliability_engineers_bottom','field_62c40f50f2304'),(154187,4434,'flexible_templates_3_reliability_engineers_content','Translucent’s Site Reliability Engineers (SRE) experts in DevOps are Kubernetes Certified Providers.'),(154188,4434,'_flexible_templates_3_reliability_engineers_content','field_62c40f64f2305'),(154189,4434,'flexible_templates_3_text_box','\"71% of Fortune 100 companies use Kubernetes.'),(154190,4434,'_flexible_templates_3_text_box','field_62c40f79f2306'),(154191,4434,'flexible_templates_3_right_short_text','(source: CNCF.IO)'),(154192,4434,'_flexible_templates_3_right_short_text','field_62c40f93f2307'),(154193,4434,'flexible_templates_4_image','4409'),(154194,4434,'_flexible_templates_4_image','field_62c41066f230c'),(154195,4434,'flexible_templates_4_arrow_show_hide_build','1'),(154196,4434,'_flexible_templates_4_arrow_show_hide_build','field_62c41086f230e'),(154197,4434,'flexible_templates_4_label_text','BUILD - REBUILD - REPLATAFORM'),(154198,4434,'_flexible_templates_4_label_text','field_62c41075f230d'),(154199,4434,'flexible_templates_4_heading','Is your company ready to compete?'),(154200,4434,'_flexible_templates_4_heading','field_62c410a3f230f'),(154201,4434,'flexible_templates_4_content','No matter how simple or complex, Translucent’s cloud native data driven Devops solutions can be tailored to your exact needs to\r\nsave your company money, keep clients happier, and close new customers.'),(154202,4434,'_flexible_templates_4_content','field_62c410bef2310'),(154203,4434,'flexible_templates_5_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(154204,4434,'_flexible_templates_5_button','field_62c4110df2312'),(154205,4434,'flexible_templates_5_book_now_text','6'),(154206,4434,'_flexible_templates_5_book_now_text','field_62c4112df2313'),(154207,4434,'flexible_templates_3_application_text_repeater_0_text','- 100% GitOps Based'),(154208,4434,'_flexible_templates_3_application_text_repeater_0_text','field_62c40e41f22ff'),(154209,4434,'flexible_templates_3_application_text_repeater_1_text','- Configuration as Code'),(154210,4434,'_flexible_templates_3_application_text_repeater_1_text','field_62c40e41f22ff'),(154211,4434,'flexible_templates_3_application_text_repeater_2_text','- Infrastructure as Code (IaC)'),(154212,4434,'_flexible_templates_3_application_text_repeater_2_text','field_62c40e41f22ff'),(154213,4434,'flexible_templates_3_application_text_repeater_3_text','- Declarative Pipelines'),(154214,4434,'_flexible_templates_3_application_text_repeater_3_text','field_62c40e41f22ff'),(154215,4434,'flexible_templates_3_application_text_repeater_4_text','- Monitoring | Observability'),(154216,4434,'_flexible_templates_3_application_text_repeater_4_text','field_62c40e41f22ff'),(154217,4434,'flexible_templates_3_application_text_repeater_5_text','- Cloud-Agnostic (AWS | GCP | Azure)'),(154218,4434,'_flexible_templates_3_application_text_repeater_5_text','field_62c40e41f22ff'),(154219,4434,'flexible_templates_3_application_text_repeater_6_text','- High Dev-Prod Parity'),(154220,4434,'_flexible_templates_3_application_text_repeater_6_text','field_62c40e41f22ff'),(154221,4434,'flexible_templates_3_application_column_second_slide_repeater_0_heading',''),(154222,4434,'_flexible_templates_3_application_column_second_slide_repeater_0_heading','field_62c40efaf2302'),(154223,4434,'flexible_templates_3_application_column_second_slide_repeater_0_paragraph','Managed Kubernetes Services on Hybrid and Multi-Cloud Strategy for Platform Development, using Azure, Google Cloud, AWS, VMWare and Private Cloud.'),(154224,4434,'_flexible_templates_3_application_column_second_slide_repeater_0_paragraph','field_62c40f05f2303'),(154225,4434,'flexible_templates_3_application_column_second_slide_repeater_1_heading','Deliver DevOps culture and best practices to clients'),(154226,4434,'_flexible_templates_3_application_column_second_slide_repeater_1_heading','field_62c40efaf2302'),(154227,4434,'flexible_templates_3_application_column_second_slide_repeater_1_paragraph','- Plan, migrate, manage, automate, and optimize your Kubernetes cloud infrastructure'),(154228,4434,'_flexible_templates_3_application_column_second_slide_repeater_1_paragraph','field_62c40f05f2303'),(154229,4434,'flexible_templates_3_application_column_second_slide_repeater_2_heading','Site Reliability Engineering - what can be measured can be managed'),(154230,4434,'_flexible_templates_3_application_column_second_slide_repeater_2_heading','field_62c40efaf2302'),(154231,4434,'flexible_templates_3_application_column_second_slide_repeater_2_paragraph',''),(154232,4434,'_flexible_templates_3_application_column_second_slide_repeater_2_paragraph','field_62c40f05f2303'),(154233,4434,'flexible_templates_5_book_now_text_0_text','Open for business 24/7'),(154234,4434,'_flexible_templates_5_book_now_text_0_text','field_62c4113df2314'),(154235,4434,'flexible_templates_5_book_now_text_1_text','Greater customer insights'),(154236,4434,'_flexible_templates_5_book_now_text_1_text','field_62c4113df2314'),(154237,4434,'flexible_templates_5_book_now_text_2_text','Global expansion'),(154238,4434,'_flexible_templates_5_book_now_text_2_text','field_62c4113df2314'),(154239,4434,'flexible_templates_5_book_now_text_3_text','Automated operational infrastructure'),(154240,4434,'_flexible_templates_5_book_now_text_3_text','field_62c4113df2314'),(154241,4434,'flexible_templates_5_book_now_text_4_text','Drive more revenue'),(154242,4434,'_flexible_templates_5_book_now_text_4_text','field_62c4113df2314'),(154243,4434,'flexible_templates_5_book_now_text_5_text','Automation saves money'),(154244,4434,'_flexible_templates_5_book_now_text_5_text','field_62c4113df2314'),(154245,4434,'flexible_templates_6_arrow_hide_and_show_data_driven','1'),(154246,4434,'_flexible_templates_6_arrow_hide_and_show_data_driven','field_62c41be01348d'),(154247,4434,'flexible_templates_6_label_text','COST-EFFECTIVE AUTOMATION'),(154248,4434,'_flexible_templates_6_label_text','field_62c41c061348e'),(154249,4434,'flexible_templates_6_left_text','Translucent takes the best functions in your operational workflow and wraps data-driven digital DevOps technology around them, which:'),(154250,4434,'_flexible_templates_6_left_text','field_62c41c1b1348f'),(154251,4434,'flexible_templates_6_application_col_first_0_text','Creates a better customer and internal employee experience'),(154252,4434,'_flexible_templates_6_application_col_first_0_text','field_62c41c7a13493'),(154253,4434,'flexible_templates_6_application_col_first_1_text','Automates your processes and self-healing systems'),(154254,4434,'_flexible_templates_6_application_col_first_1_text','field_62c41c7a13493'),(154255,4434,'flexible_templates_6_application_col_first_2_text','Saves you money in resources through automated processes'),(154256,4434,'_flexible_templates_6_application_col_first_2_text','field_62c41c7a13493'),(154257,4434,'flexible_templates_6_application_col_first','3'),(154258,4434,'_flexible_templates_6_application_col_first','field_62c41c6813492'),(154259,4434,'flexible_templates_6_application_col_second_0_text','Allows your business to be more effective and efficient in delivering your business value to your clients, in the current market conditions and into the future.'),(154260,4434,'_flexible_templates_6_application_col_second_0_text','field_62c41c9413495'),(154261,4434,'flexible_templates_6_application_col_second_1_text','Makes you money through a full digital transformation of your infrastructure.'),(154262,4434,'_flexible_templates_6_application_col_second_1_text','field_62c41c9413495'),(154263,4434,'flexible_templates_6_application_col_second','2'),(154264,4434,'_flexible_templates_6_application_col_second','field_62c41c8413494'),(154265,4434,'flexible_templates_6_swiper_content','This is not just about cloud native DevOps technology. It’s about… People, Business, Operations, and Results. Oh, and People! Did I say People?'),(154266,4434,'_flexible_templates_6_swiper_content','field_62c41caf13497'),(154267,4434,'flexible_templates_6_swiper_text','Bradford A. M. Sankar COO - Translucent Computing'),(154268,4434,'_flexible_templates_6_swiper_text','field_62c41ccd13498'),(154269,4434,'flexible_templates_7_mobile_image','4427'),(154270,4434,'_flexible_templates_7_mobile_image','field_62c41d81525e5'),(154271,4434,'flexible_templates_7_image','4428'),(154272,4434,'_flexible_templates_7_image','field_62c41d91525e6'),(154273,4434,'flexible_templates_7_heading','Cost-effective automation of your operations and infrastructure, with a focus on what drives business value'),(154274,4434,'_flexible_templates_7_heading','field_62c41da0525e7'),(154275,4434,'flexible_templates_8_heading','We treat your business like our own.'),(154276,4434,'_flexible_templates_8_heading','field_625565e14146d_field_6254fdb2efa27'),(154277,4434,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:10:\"Lets talk!\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(154278,4434,'_flexible_templates_8_cta','field_625565fa4146e_field_62551b3e101c4'),(154282,4435,'_pinterest_shares','0'),(154283,4435,'_total_shares','0'),(154285,4413,'_pinterest_shares','0'),(154286,4413,'_total_shares','0'),(154288,4414,'_pinterest_shares','0'),(154289,4414,'_total_shares','0'),(154291,4415,'_pinterest_shares','0'),(154292,4415,'_total_shares','0'),(154294,4417,'_pinterest_shares','0'),(154295,4417,'_total_shares','0'),(154297,4419,'_pinterest_shares','0'),(154298,4419,'_total_shares','0'),(154300,4420,'_pinterest_shares','0'),(154301,4420,'_total_shares','0'),(154303,4421,'_pinterest_shares','0'),(154304,4421,'_total_shares','0'),(154312,4338,'flexible_templates_6_heading','What does Cloud-Native Data-Driven DevOps mean for your business?'),(154313,4338,'_flexible_templates_6_heading','field_62c430cf84dde'),(154314,4436,'flexible_templates_0_mobile_image','4365'),(154315,4436,'_flexible_templates_0_mobile_image','field_62c409bd624b6'),(154316,4436,'flexible_templates_0_image','4366'),(154317,4436,'_flexible_templates_0_image','field_62c409cf624b7'),(154318,4436,'flexible_templates_0_heading','CLOUD NATIVE SOLUTIONS'),(154319,4436,'_flexible_templates_0_heading','field_62c409db624b8'),(154320,4436,'flexible_templates_0_sub_heading','Cloud Native DevOps Consulting'),(154321,4436,'_flexible_templates_0_sub_heading','field_62c409e8624b9'),(154322,4436,'flexible_templates','a:9:{i:0;s:28:\"cloud_native_solution_banner\";i:1;s:36:\"cloud_native_solution_drive_business\";i:2;s:29:\"cloud_native_solution_journey\";i:3;s:29:\"cloud_native_solution_service\";i:4;s:27:\"cloud_native_solution_build\";i:5;s:42:\"cloud_native_solution_book_consulation_now\";i:6;s:33:\"cloud_native_solution_data_driven\";i:7;s:36:\"cloud_native_solution_infrastructure\";i:8;s:17:\"lets_talk_section\";}'),(154323,4436,'_flexible_templates','field_6254f4d84ef9b'),(154324,4436,'flexible_templates_1_left_arrow_show_hide','1'),(154325,4436,'_flexible_templates_1_left_arrow_show_hide','field_62c40bccf22ef'),(154326,4436,'flexible_templates_1_label_text','COST-EFFECTIVE AUTOMATION'),(154327,4436,'_flexible_templates_1_label_text','field_62c40b9bf22ee'),(154328,4436,'flexible_templates_1_heading','Focused On What Drives Business Value'),(154329,4436,'_flexible_templates_1_heading','field_62c40be6f22f0'),(154330,4436,'flexible_templates_1_content','Our solution increases your team collaboration and system automation. Our continuous technology improvements drive business value and cross-collaboration between teams.'),(154331,4436,'_flexible_templates_1_content','field_62c40c05f22f1'),(154332,4436,'flexible_templates_1_grey_box_content','We help improve the experience of your clients, customers, staff, and third parties without the need for the added cost of people resources.'),(154333,4436,'_flexible_templates_1_grey_box_content','field_62c40c1ef22f2'),(154334,4436,'flexible_templates_1_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(154335,4436,'_flexible_templates_1_button','field_62c40c38f22f3'),(154336,4436,'flexible_templates_1_image','4405'),(154337,4436,'_flexible_templates_1_image','field_62c40c4cf22f4'),(154338,4436,'flexible_templates_1_review_content','Translucent’s understanding of the cloud native DevOps space and expertise in Kubernetes through to data driven applications has proven extremely valuable… Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security…has been invaluable. I would use them again if I could. In fact, I would use their team for everything if I could!'),(154339,4436,'_flexible_templates_1_review_content','field_62c40c97f22f5'),(154340,4436,'flexible_templates_1_review_title','Rhys Parry - CTO - Volentix'),(154341,4436,'_flexible_templates_1_review_title','field_62c40cb4f22f6'),(154342,4436,'flexible_templates_2_journey_logo_map_image','4406'),(154343,4436,'_flexible_templates_2_journey_logo_map_image','field_62c40d24f22f8'),(154344,4436,'flexible_templates_2_heading','Your DevOps Journey Roadmap'),(154345,4436,'_flexible_templates_2_heading','field_62c40d46f22f9'),(154346,4436,'flexible_templates_2_scroll_image','4407'),(154347,4436,'_flexible_templates_2_scroll_image','field_62c40d60f22fa'),(154348,4436,'flexible_templates_3_heading','Services'),(154349,4436,'_flexible_templates_3_heading','field_62c40db8f22fc'),(154350,4436,'flexible_templates_3_application_column_heading','Develop and release better software faster using Kubernetes and DevOps practices'),(154351,4436,'_flexible_templates_3_application_column_heading','field_62c40e07f22fd'),(154352,4436,'flexible_templates_3_application_text_repeater','7'),(154353,4436,'_flexible_templates_3_application_text_repeater','field_62c40e34f22fe'),(154354,4436,'flexible_templates_3_application_sub_text','Deliver DevOps culture and best practices to clients'),(154355,4436,'_flexible_templates_3_application_sub_text','field_62c40e52f2300'),(154356,4436,'flexible_templates_3_application_column_second_slide_repeater','3'),(154357,4436,'_flexible_templates_3_application_column_second_slide_repeater','field_62c40ee2f2301'),(154358,4436,'flexible_templates_3_reliability_engineers_bottom','4408'),(154359,4436,'_flexible_templates_3_reliability_engineers_bottom','field_62c40f50f2304'),(154360,4436,'flexible_templates_3_reliability_engineers_content','Translucent’s Site Reliability Engineers (SRE) experts in DevOps are Kubernetes Certified Providers.'),(154361,4436,'_flexible_templates_3_reliability_engineers_content','field_62c40f64f2305'),(154362,4436,'flexible_templates_3_text_box','\"71% of Fortune 100 companies use Kubernetes.'),(154363,4436,'_flexible_templates_3_text_box','field_62c40f79f2306'),(154364,4436,'flexible_templates_3_right_short_text','(source: CNCF.IO)'),(154365,4436,'_flexible_templates_3_right_short_text','field_62c40f93f2307'),(154366,4436,'flexible_templates_4_image','4409'),(154367,4436,'_flexible_templates_4_image','field_62c41066f230c'),(154368,4436,'flexible_templates_4_arrow_show_hide_build','1'),(154369,4436,'_flexible_templates_4_arrow_show_hide_build','field_62c41086f230e'),(154370,4436,'flexible_templates_4_label_text','BUILD - REBUILD - REPLATAFORM'),(154371,4436,'_flexible_templates_4_label_text','field_62c41075f230d'),(154372,4436,'flexible_templates_4_heading','Is your company ready to compete?'),(154373,4436,'_flexible_templates_4_heading','field_62c410a3f230f'),(154374,4436,'flexible_templates_4_content','No matter how simple or complex, Translucent’s cloud native data driven Devops solutions can be tailored to your exact needs to\r\nsave your company money, keep clients happier, and close new customers.'),(154375,4436,'_flexible_templates_4_content','field_62c410bef2310'),(154376,4436,'flexible_templates_5_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(154377,4436,'_flexible_templates_5_button','field_62c4110df2312'),(154378,4436,'flexible_templates_5_book_now_text','6'),(154379,4436,'_flexible_templates_5_book_now_text','field_62c4112df2313'),(154380,4436,'flexible_templates_3_application_text_repeater_0_text','- 100% GitOps Based'),(154381,4436,'_flexible_templates_3_application_text_repeater_0_text','field_62c40e41f22ff'),(154382,4436,'flexible_templates_3_application_text_repeater_1_text','- Configuration as Code'),(154383,4436,'_flexible_templates_3_application_text_repeater_1_text','field_62c40e41f22ff'),(154384,4436,'flexible_templates_3_application_text_repeater_2_text','- Infrastructure as Code (IaC)'),(154385,4436,'_flexible_templates_3_application_text_repeater_2_text','field_62c40e41f22ff'),(154386,4436,'flexible_templates_3_application_text_repeater_3_text','- Declarative Pipelines'),(154387,4436,'_flexible_templates_3_application_text_repeater_3_text','field_62c40e41f22ff'),(154388,4436,'flexible_templates_3_application_text_repeater_4_text','- Monitoring | Observability'),(154389,4436,'_flexible_templates_3_application_text_repeater_4_text','field_62c40e41f22ff'),(154390,4436,'flexible_templates_3_application_text_repeater_5_text','- Cloud-Agnostic (AWS | GCP | Azure)'),(154391,4436,'_flexible_templates_3_application_text_repeater_5_text','field_62c40e41f22ff'),(154392,4436,'flexible_templates_3_application_text_repeater_6_text','- High Dev-Prod Parity'),(154393,4436,'_flexible_templates_3_application_text_repeater_6_text','field_62c40e41f22ff'),(154394,4436,'flexible_templates_3_application_column_second_slide_repeater_0_heading',''),(154395,4436,'_flexible_templates_3_application_column_second_slide_repeater_0_heading','field_62c40efaf2302'),(154396,4436,'flexible_templates_3_application_column_second_slide_repeater_0_paragraph','Managed Kubernetes Services on Hybrid and Multi-Cloud Strategy for Platform Development, using Azure, Google Cloud, AWS, VMWare and Private Cloud.'),(154397,4436,'_flexible_templates_3_application_column_second_slide_repeater_0_paragraph','field_62c40f05f2303'),(154398,4436,'flexible_templates_3_application_column_second_slide_repeater_1_heading','Deliver DevOps culture and best practices to clients'),(154399,4436,'_flexible_templates_3_application_column_second_slide_repeater_1_heading','field_62c40efaf2302'),(154400,4436,'flexible_templates_3_application_column_second_slide_repeater_1_paragraph','- Plan, migrate, manage, automate, and optimize your Kubernetes cloud infrastructure'),(154401,4436,'_flexible_templates_3_application_column_second_slide_repeater_1_paragraph','field_62c40f05f2303'),(154402,4436,'flexible_templates_3_application_column_second_slide_repeater_2_heading','Site Reliability Engineering - what can be measured can be managed'),(154403,4436,'_flexible_templates_3_application_column_second_slide_repeater_2_heading','field_62c40efaf2302'),(154404,4436,'flexible_templates_3_application_column_second_slide_repeater_2_paragraph',''),(154405,4436,'_flexible_templates_3_application_column_second_slide_repeater_2_paragraph','field_62c40f05f2303'),(154406,4436,'flexible_templates_5_book_now_text_0_text','Open for business 24/7'),(154407,4436,'_flexible_templates_5_book_now_text_0_text','field_62c4113df2314'),(154408,4436,'flexible_templates_5_book_now_text_1_text','Greater customer insights'),(154409,4436,'_flexible_templates_5_book_now_text_1_text','field_62c4113df2314'),(154410,4436,'flexible_templates_5_book_now_text_2_text','Global expansion'),(154411,4436,'_flexible_templates_5_book_now_text_2_text','field_62c4113df2314'),(154412,4436,'flexible_templates_5_book_now_text_3_text','Automated operational infrastructure'),(154413,4436,'_flexible_templates_5_book_now_text_3_text','field_62c4113df2314'),(154414,4436,'flexible_templates_5_book_now_text_4_text','Drive more revenue'),(154415,4436,'_flexible_templates_5_book_now_text_4_text','field_62c4113df2314'),(154416,4436,'flexible_templates_5_book_now_text_5_text','Automation saves money'),(154417,4436,'_flexible_templates_5_book_now_text_5_text','field_62c4113df2314'),(154418,4436,'flexible_templates_6_arrow_hide_and_show_data_driven','1'),(154419,4436,'_flexible_templates_6_arrow_hide_and_show_data_driven','field_62c41be01348d'),(154420,4436,'flexible_templates_6_label_text','COST-EFFECTIVE AUTOMATION'),(154421,4436,'_flexible_templates_6_label_text','field_62c41c061348e'),(154422,4436,'flexible_templates_6_left_text','Translucent takes the best functions in your operational workflow and wraps data-driven digital DevOps technology around them, which:'),(154423,4436,'_flexible_templates_6_left_text','field_62c41c1b1348f'),(154424,4436,'flexible_templates_6_application_col_first_0_text','Creates a better customer and internal employee experience'),(154425,4436,'_flexible_templates_6_application_col_first_0_text','field_62c41c7a13493'),(154426,4436,'flexible_templates_6_application_col_first_1_text','Automates your processes and self-healing systems'),(154427,4436,'_flexible_templates_6_application_col_first_1_text','field_62c41c7a13493'),(154428,4436,'flexible_templates_6_application_col_first_2_text','Saves you money in resources through automated processes'),(154429,4436,'_flexible_templates_6_application_col_first_2_text','field_62c41c7a13493'),(154430,4436,'flexible_templates_6_application_col_first','3'),(154431,4436,'_flexible_templates_6_application_col_first','field_62c41c6813492'),(154432,4436,'flexible_templates_6_application_col_second_0_text','Allows your business to be more effective and efficient in delivering your business value to your clients, in the current market conditions and into the future.'),(154433,4436,'_flexible_templates_6_application_col_second_0_text','field_62c41c9413495'),(154434,4436,'flexible_templates_6_application_col_second_1_text','Makes you money through a full digital transformation of your infrastructure.'),(154435,4436,'_flexible_templates_6_application_col_second_1_text','field_62c41c9413495'),(154436,4436,'flexible_templates_6_application_col_second','2'),(154437,4436,'_flexible_templates_6_application_col_second','field_62c41c8413494'),(154438,4436,'flexible_templates_6_swiper_content','This is not just about cloud native DevOps technology. It’s about… People, Business, Operations, and Results. Oh, and People! Did I say People?'),(154439,4436,'_flexible_templates_6_swiper_content','field_62c41caf13497'),(154440,4436,'flexible_templates_6_swiper_text','Bradford A. M. Sankar COO - Translucent Computing'),(154441,4436,'_flexible_templates_6_swiper_text','field_62c41ccd13498'),(154442,4436,'flexible_templates_7_mobile_image','4427'),(154443,4436,'_flexible_templates_7_mobile_image','field_62c41d81525e5'),(154444,4436,'flexible_templates_7_image','4428'),(154445,4436,'_flexible_templates_7_image','field_62c41d91525e6'),(154446,4436,'flexible_templates_7_heading','Cost-effective automation of your operations and infrastructure, with a focus on what drives business value'),(154447,4436,'_flexible_templates_7_heading','field_62c41da0525e7'),(154448,4436,'flexible_templates_8_heading','We treat your business like our own.'),(154449,4436,'_flexible_templates_8_heading','field_625565e14146d_field_6254fdb2efa27'),(154450,4436,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:10:\"Lets talk!\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(154451,4436,'_flexible_templates_8_cta','field_625565fa4146e_field_62551b3e101c4'),(154452,4436,'flexible_templates_6_heading','What does Cloud-Native Data-Driven DevOps mean for your business?'),(154453,4436,'_flexible_templates_6_heading','field_62c430cf84dde'),(154457,4437,'flexible_templates_0_mobile_image','4365'),(154458,4437,'_flexible_templates_0_mobile_image','field_62c409bd624b6'),(154459,4437,'flexible_templates_0_image','4366'),(154460,4437,'_flexible_templates_0_image','field_62c409cf624b7'),(154461,4437,'flexible_templates_0_heading','CLOUD NATIVE SOLUTIONS'),(154462,4437,'_flexible_templates_0_heading','field_62c409db624b8'),(154463,4437,'flexible_templates_0_sub_heading','Cloud Native DevOps Consulting'),(154464,4437,'_flexible_templates_0_sub_heading','field_62c409e8624b9'),(154465,4437,'flexible_templates','a:9:{i:0;s:28:\"cloud_native_solution_banner\";i:1;s:36:\"cloud_native_solution_drive_business\";i:2;s:29:\"cloud_native_solution_journey\";i:3;s:29:\"cloud_native_solution_service\";i:4;s:27:\"cloud_native_solution_build\";i:5;s:42:\"cloud_native_solution_book_consulation_now\";i:6;s:33:\"cloud_native_solution_data_driven\";i:7;s:36:\"cloud_native_solution_infrastructure\";i:8;s:17:\"lets_talk_section\";}'),(154466,4437,'_flexible_templates','field_6254f4d84ef9b'),(154467,4437,'flexible_templates_1_left_arrow_show_hide','1'),(154468,4437,'_flexible_templates_1_left_arrow_show_hide','field_62c40bccf22ef'),(154469,4437,'flexible_templates_1_label_text','COST-EFFECTIVE AUTOMATION'),(154470,4437,'_flexible_templates_1_label_text','field_62c40b9bf22ee'),(154471,4437,'flexible_templates_1_heading','Focused On What Drives Business Value'),(154472,4437,'_flexible_templates_1_heading','field_62c40be6f22f0'),(154473,4437,'flexible_templates_1_content','Our solution increases your team collaboration and system automation. Our continuous technology improvements drive business value and cross-collaboration between teams.'),(154474,4437,'_flexible_templates_1_content','field_62c40c05f22f1'),(154475,4437,'flexible_templates_1_grey_box_content','We help improve the experience of your clients, customers, staff, and third parties without the need for the added cost of people resources.'),(154476,4437,'_flexible_templates_1_grey_box_content','field_62c40c1ef22f2'),(154477,4437,'flexible_templates_1_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(154478,4437,'_flexible_templates_1_button','field_62c40c38f22f3'),(154479,4437,'flexible_templates_1_image','4405'),(154480,4437,'_flexible_templates_1_image','field_62c40c4cf22f4'),(154481,4437,'flexible_templates_1_review_content','Translucent’s understanding of the cloud native DevOps space and expertise in Kubernetes through to data driven applications has proven extremely valuable… Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security…has been invaluable. I would use them again if I could. In fact, I would use their team for everything if I could!'),(154482,4437,'_flexible_templates_1_review_content','field_62c40c97f22f5'),(154483,4437,'flexible_templates_1_review_title','Rhys Parry - CTO - Volentix'),(154484,4437,'_flexible_templates_1_review_title','field_62c40cb4f22f6'),(154485,4437,'flexible_templates_2_journey_logo_map_image','4406'),(154486,4437,'_flexible_templates_2_journey_logo_map_image','field_62c40d24f22f8'),(154487,4437,'flexible_templates_2_heading','Your DevOps Journey Roadmap'),(154488,4437,'_flexible_templates_2_heading','field_62c40d46f22f9'),(154489,4437,'flexible_templates_2_scroll_image','4407'),(154490,4437,'_flexible_templates_2_scroll_image','field_62c40d60f22fa'),(154491,4437,'flexible_templates_3_heading','Services'),(154492,4437,'_flexible_templates_3_heading','field_62c40db8f22fc'),(154493,4437,'flexible_templates_3_application_column_heading','Develop and release better software faster using Kubernetes and DevOps practices'),(154494,4437,'_flexible_templates_3_application_column_heading','field_62c40e07f22fd'),(154495,4437,'flexible_templates_3_application_text_repeater','7'),(154496,4437,'_flexible_templates_3_application_text_repeater','field_62c40e34f22fe'),(154497,4437,'flexible_templates_3_application_sub_text','Deliver DevOps culture and best practices to clients'),(154498,4437,'_flexible_templates_3_application_sub_text','field_62c40e52f2300'),(154499,4437,'flexible_templates_3_application_column_second_slide_repeater','3'),(154500,4437,'_flexible_templates_3_application_column_second_slide_repeater','field_62c40ee2f2301'),(154501,4437,'flexible_templates_3_reliability_engineers_bottom','4408'),(154502,4437,'_flexible_templates_3_reliability_engineers_bottom','field_62c40f50f2304'),(154503,4437,'flexible_templates_3_reliability_engineers_content','Translucent’s Site Reliability Engineers (SRE) experts in DevOps are Kubernetes Certified Providers.'),(154504,4437,'_flexible_templates_3_reliability_engineers_content','field_62c40f64f2305'),(154505,4437,'flexible_templates_3_text_box','\"71% of Fortune 100 companies use Kubernetes.'),(154506,4437,'_flexible_templates_3_text_box','field_62c40f79f2306'),(154507,4437,'flexible_templates_3_right_short_text','(source: CNCF.IO)'),(154508,4437,'_flexible_templates_3_right_short_text','field_62c40f93f2307'),(154509,4437,'flexible_templates_4_image','4409'),(154510,4437,'_flexible_templates_4_image','field_62c41066f230c'),(154511,4437,'flexible_templates_4_arrow_show_hide_build','1'),(154512,4437,'_flexible_templates_4_arrow_show_hide_build','field_62c41086f230e'),(154513,4437,'flexible_templates_4_label_text','BUILD - REBUILD - REPLATAFORM'),(154514,4437,'_flexible_templates_4_label_text','field_62c41075f230d'),(154515,4437,'flexible_templates_4_heading','Is your company ready to compete?'),(154516,4437,'_flexible_templates_4_heading','field_62c410a3f230f'),(154517,4437,'flexible_templates_4_content','No matter how simple or complex, Translucent’s cloud native data driven Devops solutions can be tailored to your exact needs to\r\nsave your company money, keep clients happier, and close new customers.'),(154518,4437,'_flexible_templates_4_content','field_62c410bef2310'),(154519,4437,'flexible_templates_5_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(154520,4437,'_flexible_templates_5_button','field_62c4110df2312'),(154521,4437,'flexible_templates_5_book_now_text','6'),(154522,4437,'_flexible_templates_5_book_now_text','field_62c4112df2313'),(154523,4437,'flexible_templates_3_application_text_repeater_0_text','- 100% GitOps Based'),(154524,4437,'_flexible_templates_3_application_text_repeater_0_text','field_62c40e41f22ff'),(154525,4437,'flexible_templates_3_application_text_repeater_1_text','- Configuration as Code'),(154526,4437,'_flexible_templates_3_application_text_repeater_1_text','field_62c40e41f22ff'),(154527,4437,'flexible_templates_3_application_text_repeater_2_text','- Infrastructure as Code (IaC)'),(154528,4437,'_flexible_templates_3_application_text_repeater_2_text','field_62c40e41f22ff'),(154529,4437,'flexible_templates_3_application_text_repeater_3_text','- Declarative Pipelines'),(154530,4437,'_flexible_templates_3_application_text_repeater_3_text','field_62c40e41f22ff'),(154531,4437,'flexible_templates_3_application_text_repeater_4_text','- Monitoring | Observability'),(154532,4437,'_flexible_templates_3_application_text_repeater_4_text','field_62c40e41f22ff'),(154533,4437,'flexible_templates_3_application_text_repeater_5_text','- Cloud-Agnostic (AWS | GCP | Azure)'),(154534,4437,'_flexible_templates_3_application_text_repeater_5_text','field_62c40e41f22ff'),(154535,4437,'flexible_templates_3_application_text_repeater_6_text','- High Dev-Prod Parity'),(154536,4437,'_flexible_templates_3_application_text_repeater_6_text','field_62c40e41f22ff'),(154537,4437,'flexible_templates_3_application_column_second_slide_repeater_0_heading',''),(154538,4437,'_flexible_templates_3_application_column_second_slide_repeater_0_heading','field_62c40efaf2302'),(154539,4437,'flexible_templates_3_application_column_second_slide_repeater_0_paragraph','Managed Kubernetes Services on Hybrid and Multi-Cloud Strategy for Platform Development, using Azure, Google Cloud, AWS, VMWare and Private Cloud.'),(154540,4437,'_flexible_templates_3_application_column_second_slide_repeater_0_paragraph','field_62c40f05f2303'),(154541,4437,'flexible_templates_3_application_column_second_slide_repeater_1_heading','Deliver DevOps culture and best practices to clients'),(154542,4437,'_flexible_templates_3_application_column_second_slide_repeater_1_heading','field_62c40efaf2302'),(154543,4437,'flexible_templates_3_application_column_second_slide_repeater_1_paragraph','- Plan, migrate, manage, automate, and optimize your Kubernetes cloud infrastructure'),(154544,4437,'_flexible_templates_3_application_column_second_slide_repeater_1_paragraph','field_62c40f05f2303'),(154545,4437,'flexible_templates_3_application_column_second_slide_repeater_2_heading','Site Reliability Engineering - what can be measured can be managed'),(154546,4437,'_flexible_templates_3_application_column_second_slide_repeater_2_heading','field_62c40efaf2302'),(154547,4437,'flexible_templates_3_application_column_second_slide_repeater_2_paragraph',''),(154548,4437,'_flexible_templates_3_application_column_second_slide_repeater_2_paragraph','field_62c40f05f2303'),(154549,4437,'flexible_templates_5_book_now_text_0_text','Open for business 24/7'),(154550,4437,'_flexible_templates_5_book_now_text_0_text','field_62c4113df2314'),(154551,4437,'flexible_templates_5_book_now_text_1_text','Greater customer insights'),(154552,4437,'_flexible_templates_5_book_now_text_1_text','field_62c4113df2314'),(154553,4437,'flexible_templates_5_book_now_text_2_text','Global expansion'),(154554,4437,'_flexible_templates_5_book_now_text_2_text','field_62c4113df2314'),(154555,4437,'flexible_templates_5_book_now_text_3_text','Automated operational infrastructure'),(154556,4437,'_flexible_templates_5_book_now_text_3_text','field_62c4113df2314'),(154557,4437,'flexible_templates_5_book_now_text_4_text','Drive more revenue'),(154558,4437,'_flexible_templates_5_book_now_text_4_text','field_62c4113df2314'),(154559,4437,'flexible_templates_5_book_now_text_5_text','Automation saves money'),(154560,4437,'_flexible_templates_5_book_now_text_5_text','field_62c4113df2314'),(154561,4437,'flexible_templates_6_arrow_hide_and_show_data_driven','1'),(154562,4437,'_flexible_templates_6_arrow_hide_and_show_data_driven','field_62c41be01348d'),(154563,4437,'flexible_templates_6_label_text','COST-EFFECTIVE AUTOMATION'),(154564,4437,'_flexible_templates_6_label_text','field_62c41c061348e'),(154565,4437,'flexible_templates_6_left_text','Translucent takes the best functions in your operational workflow and wraps data-driven digital DevOps technology around them, which:'),(154566,4437,'_flexible_templates_6_left_text','field_62c41c1b1348f'),(154567,4437,'flexible_templates_6_application_col_first_0_text','Creates a better customer and internal employee experience'),(154568,4437,'_flexible_templates_6_application_col_first_0_text','field_62c41c7a13493'),(154569,4437,'flexible_templates_6_application_col_first_1_text','Automates your processes and self-healing systems'),(154570,4437,'_flexible_templates_6_application_col_first_1_text','field_62c41c7a13493'),(154571,4437,'flexible_templates_6_application_col_first_2_text','Saves you money in resources through automated processes'),(154572,4437,'_flexible_templates_6_application_col_first_2_text','field_62c41c7a13493'),(154573,4437,'flexible_templates_6_application_col_first','3'),(154574,4437,'_flexible_templates_6_application_col_first','field_62c41c6813492'),(154575,4437,'flexible_templates_6_application_col_second_0_text','Allows your business to be more effective and efficient in delivering your business value to your clients, in the current market conditions and into the future.'),(154576,4437,'_flexible_templates_6_application_col_second_0_text','field_62c41c9413495'),(154577,4437,'flexible_templates_6_application_col_second_1_text','Makes you money through a full digital transformation of your infrastructure.'),(154578,4437,'_flexible_templates_6_application_col_second_1_text','field_62c41c9413495'),(154579,4437,'flexible_templates_6_application_col_second','2'),(154580,4437,'_flexible_templates_6_application_col_second','field_62c41c8413494'),(154581,4437,'flexible_templates_6_swiper_content','This is not just about cloud native DevOps technology. It’s about… People, Business, Operations, and Results. Oh, and People! Did I say People?'),(154582,4437,'_flexible_templates_6_swiper_content','field_62c41caf13497'),(154583,4437,'flexible_templates_6_swiper_text','Bradford A. M. Sankar COO - Translucent Computing'),(154584,4437,'_flexible_templates_6_swiper_text','field_62c41ccd13498'),(154585,4437,'flexible_templates_7_mobile_image','4427'),(154586,4437,'_flexible_templates_7_mobile_image','field_62c41d81525e5'),(154587,4437,'flexible_templates_7_image','4428'),(154588,4437,'_flexible_templates_7_image','field_62c41d91525e6'),(154589,4437,'flexible_templates_7_heading','Cost-effective automation of your operations and infrastructure, with a focus on what drives business value'),(154590,4437,'_flexible_templates_7_heading','field_62c41da0525e7'),(154591,4437,'flexible_templates_8_heading','We treat your business like our own.'),(154592,4437,'_flexible_templates_8_heading','field_625565e14146d_field_6254fdb2efa27'),(154593,4437,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:10:\"Lets talk!\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(154594,4437,'_flexible_templates_8_cta','field_625565fa4146e_field_62551b3e101c4'),(154595,4437,'flexible_templates_6_heading','What does Cloud-Native Data-Driven DevOps mean for your business?'),(154596,4437,'_flexible_templates_6_heading','field_62c430cf84dde'),(154600,4438,'flexible_templates_0_mobile_image','4365'),(154601,4438,'_flexible_templates_0_mobile_image','field_62c409bd624b6'),(154602,4438,'flexible_templates_0_image','4366'),(154603,4438,'_flexible_templates_0_image','field_62c409cf624b7'),(154604,4438,'flexible_templates_0_heading','CLOUD NATIVE SOLUTIONS'),(154605,4438,'_flexible_templates_0_heading','field_62c409db624b8'),(154606,4438,'flexible_templates_0_sub_heading','Cloud Native DevOps Consulting'),(154607,4438,'_flexible_templates_0_sub_heading','field_62c409e8624b9'),(154608,4438,'flexible_templates','a:9:{i:0;s:28:\"cloud_native_solution_banner\";i:1;s:36:\"cloud_native_solution_drive_business\";i:2;s:29:\"cloud_native_solution_journey\";i:3;s:29:\"cloud_native_solution_service\";i:4;s:27:\"cloud_native_solution_build\";i:5;s:42:\"cloud_native_solution_book_consulation_now\";i:6;s:33:\"cloud_native_solution_data_driven\";i:7;s:36:\"cloud_native_solution_infrastructure\";i:8;s:17:\"lets_talk_section\";}'),(154609,4438,'_flexible_templates','field_6254f4d84ef9b'),(154610,4438,'flexible_templates_1_left_arrow_show_hide','1'),(154611,4438,'_flexible_templates_1_left_arrow_show_hide','field_62c40bccf22ef'),(154612,4438,'flexible_templates_1_label_text','COST-EFFECTIVE AUTOMATION'),(154613,4438,'_flexible_templates_1_label_text','field_62c40b9bf22ee'),(154614,4438,'flexible_templates_1_heading','Focused On What Drives Business Value'),(154615,4438,'_flexible_templates_1_heading','field_62c40be6f22f0'),(154616,4438,'flexible_templates_1_content','Our solution increases your team collaboration and system automation. Our continuous technology improvements drive business value and cross-collaboration between teams.'),(154617,4438,'_flexible_templates_1_content','field_62c40c05f22f1'),(154618,4438,'flexible_templates_1_grey_box_content','We help improve the experience of your clients, customers, staff, and third parties without the need for the added cost of people resources.'),(154619,4438,'_flexible_templates_1_grey_box_content','field_62c40c1ef22f2'),(154620,4438,'flexible_templates_1_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(154621,4438,'_flexible_templates_1_button','field_62c40c38f22f3'),(154622,4438,'flexible_templates_1_image','4405'),(154623,4438,'_flexible_templates_1_image','field_62c40c4cf22f4'),(154624,4438,'flexible_templates_1_review_content','Translucent’s understanding of the cloud native DevOps space and expertise in Kubernetes through to data driven applications has proven extremely valuable… Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security…has been invaluable. I would use them again if I could. In fact, I would use their team for everything if I could!'),(154625,4438,'_flexible_templates_1_review_content','field_62c40c97f22f5'),(154626,4438,'flexible_templates_1_review_title','Rhys Parry - CTO - Volentix'),(154627,4438,'_flexible_templates_1_review_title','field_62c40cb4f22f6'),(154628,4438,'flexible_templates_2_journey_logo_map_image','4406'),(154629,4438,'_flexible_templates_2_journey_logo_map_image','field_62c40d24f22f8'),(154630,4438,'flexible_templates_2_heading','Your DevOps Journey Roadmap'),(154631,4438,'_flexible_templates_2_heading','field_62c40d46f22f9'),(154632,4438,'flexible_templates_2_scroll_image','4407'),(154633,4438,'_flexible_templates_2_scroll_image','field_62c40d60f22fa'),(154634,4438,'flexible_templates_3_heading','Services'),(154635,4438,'_flexible_templates_3_heading','field_62c40db8f22fc'),(154636,4438,'flexible_templates_3_application_column_heading','Develop and release better software faster using Kubernetes and DevOps practices'),(154637,4438,'_flexible_templates_3_application_column_heading','field_62c40e07f22fd'),(154638,4438,'flexible_templates_3_application_text_repeater','7'),(154639,4438,'_flexible_templates_3_application_text_repeater','field_62c40e34f22fe'),(154640,4438,'flexible_templates_3_application_sub_text','Deliver DevOps culture and best practices to clients'),(154641,4438,'_flexible_templates_3_application_sub_text','field_62c40e52f2300'),(154642,4438,'flexible_templates_3_application_column_second_slide_repeater','3'),(154643,4438,'_flexible_templates_3_application_column_second_slide_repeater','field_62c40ee2f2301'),(154644,4438,'flexible_templates_3_reliability_engineers_bottom','4408'),(154645,4438,'_flexible_templates_3_reliability_engineers_bottom','field_62c40f50f2304'),(154646,4438,'flexible_templates_3_reliability_engineers_content','Translucent’s Site Reliability Engineers (SRE) experts in DevOps are Kubernetes Certified Providers.'),(154647,4438,'_flexible_templates_3_reliability_engineers_content','field_62c40f64f2305'),(154648,4438,'flexible_templates_3_text_box','\"71% of Fortune 100 companies use Kubernetes.'),(154649,4438,'_flexible_templates_3_text_box','field_62c40f79f2306'),(154650,4438,'flexible_templates_3_right_short_text','(source: CNCF.IO)'),(154651,4438,'_flexible_templates_3_right_short_text','field_62c40f93f2307'),(154652,4438,'flexible_templates_4_image','4409'),(154653,4438,'_flexible_templates_4_image','field_62c41066f230c'),(154654,4438,'flexible_templates_4_arrow_show_hide_build','1'),(154655,4438,'_flexible_templates_4_arrow_show_hide_build','field_62c41086f230e'),(154656,4438,'flexible_templates_4_label_text','BUILD - REBUILD - REPLATAFORM'),(154657,4438,'_flexible_templates_4_label_text','field_62c41075f230d'),(154658,4438,'flexible_templates_4_heading','Is your company ready to compete?'),(154659,4438,'_flexible_templates_4_heading','field_62c410a3f230f'),(154660,4438,'flexible_templates_4_content','No matter how simple or complex, Translucent’s cloud native data driven Devops solutions can be tailored to your exact needs to\r\nsave your company money, keep clients happier, and close new customers.'),(154661,4438,'_flexible_templates_4_content','field_62c410bef2310'),(154662,4438,'flexible_templates_5_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(154663,4438,'_flexible_templates_5_button','field_62c4110df2312'),(154664,4438,'flexible_templates_5_book_now_text','6'),(154665,4438,'_flexible_templates_5_book_now_text','field_62c4112df2313'),(154666,4438,'flexible_templates_3_application_text_repeater_0_text','- 100% GitOps Based'),(154667,4438,'_flexible_templates_3_application_text_repeater_0_text','field_62c40e41f22ff'),(154668,4438,'flexible_templates_3_application_text_repeater_1_text','- Configuration as Code'),(154669,4438,'_flexible_templates_3_application_text_repeater_1_text','field_62c40e41f22ff'),(154670,4438,'flexible_templates_3_application_text_repeater_2_text','- Infrastructure as Code (IaC)'),(154671,4438,'_flexible_templates_3_application_text_repeater_2_text','field_62c40e41f22ff'),(154672,4438,'flexible_templates_3_application_text_repeater_3_text','- Declarative Pipelines'),(154673,4438,'_flexible_templates_3_application_text_repeater_3_text','field_62c40e41f22ff'),(154674,4438,'flexible_templates_3_application_text_repeater_4_text','- Monitoring | Observability'),(154675,4438,'_flexible_templates_3_application_text_repeater_4_text','field_62c40e41f22ff'),(154676,4438,'flexible_templates_3_application_text_repeater_5_text','- Cloud-Agnostic (AWS | GCP | Azure)'),(154677,4438,'_flexible_templates_3_application_text_repeater_5_text','field_62c40e41f22ff'),(154678,4438,'flexible_templates_3_application_text_repeater_6_text','- High Dev-Prod Parity'),(154679,4438,'_flexible_templates_3_application_text_repeater_6_text','field_62c40e41f22ff'),(154680,4438,'flexible_templates_3_application_column_second_slide_repeater_0_heading',''),(154681,4438,'_flexible_templates_3_application_column_second_slide_repeater_0_heading','field_62c40efaf2302'),(154682,4438,'flexible_templates_3_application_column_second_slide_repeater_0_paragraph','Managed Kubernetes Services on Hybrid and Multi-Cloud Strategy for Platform Development, using Azure, Google Cloud, AWS, VMWare and Private Cloud.'),(154683,4438,'_flexible_templates_3_application_column_second_slide_repeater_0_paragraph','field_62c40f05f2303'),(154684,4438,'flexible_templates_3_application_column_second_slide_repeater_1_heading','Deliver DevOps culture and best practices to clients'),(154685,4438,'_flexible_templates_3_application_column_second_slide_repeater_1_heading','field_62c40efaf2302'),(154686,4438,'flexible_templates_3_application_column_second_slide_repeater_1_paragraph','- Plan, migrate, manage, automate, and optimize your Kubernetes cloud infrastructure'),(154687,4438,'_flexible_templates_3_application_column_second_slide_repeater_1_paragraph','field_62c40f05f2303'),(154688,4438,'flexible_templates_3_application_column_second_slide_repeater_2_heading','Site Reliability Engineering - what can be measured can be managed'),(154689,4438,'_flexible_templates_3_application_column_second_slide_repeater_2_heading','field_62c40efaf2302'),(154690,4438,'flexible_templates_3_application_column_second_slide_repeater_2_paragraph',''),(154691,4438,'_flexible_templates_3_application_column_second_slide_repeater_2_paragraph','field_62c40f05f2303'),(154692,4438,'flexible_templates_5_book_now_text_0_text','Open for business 24/7'),(154693,4438,'_flexible_templates_5_book_now_text_0_text','field_62c4113df2314'),(154694,4438,'flexible_templates_5_book_now_text_1_text','Greater customer insights'),(154695,4438,'_flexible_templates_5_book_now_text_1_text','field_62c4113df2314'),(154696,4438,'flexible_templates_5_book_now_text_2_text','Global expansion'),(154697,4438,'_flexible_templates_5_book_now_text_2_text','field_62c4113df2314'),(154698,4438,'flexible_templates_5_book_now_text_3_text','Automated operational infrastructure'),(154699,4438,'_flexible_templates_5_book_now_text_3_text','field_62c4113df2314'),(154700,4438,'flexible_templates_5_book_now_text_4_text','Drive more revenue'),(154701,4438,'_flexible_templates_5_book_now_text_4_text','field_62c4113df2314'),(154702,4438,'flexible_templates_5_book_now_text_5_text','Automation saves money'),(154703,4438,'_flexible_templates_5_book_now_text_5_text','field_62c4113df2314'),(154704,4438,'flexible_templates_6_arrow_hide_and_show_data_driven','0'),(154705,4438,'_flexible_templates_6_arrow_hide_and_show_data_driven','field_62c41be01348d'),(154706,4438,'flexible_templates_6_label_text','COST-EFFECTIVE AUTOMATION'),(154707,4438,'_flexible_templates_6_label_text','field_62c41c061348e'),(154708,4438,'flexible_templates_6_left_text','Translucent takes the best functions in your operational workflow and wraps data-driven digital DevOps technology around them, which:'),(154709,4438,'_flexible_templates_6_left_text','field_62c41c1b1348f'),(154710,4438,'flexible_templates_6_application_col_first_0_text','Creates a better customer and internal employee experience'),(154711,4438,'_flexible_templates_6_application_col_first_0_text','field_62c41c7a13493'),(154712,4438,'flexible_templates_6_application_col_first_1_text','Automates your processes and self-healing systems'),(154713,4438,'_flexible_templates_6_application_col_first_1_text','field_62c41c7a13493'),(154714,4438,'flexible_templates_6_application_col_first_2_text','Saves you money in resources through automated processes'),(154715,4438,'_flexible_templates_6_application_col_first_2_text','field_62c41c7a13493'),(154716,4438,'flexible_templates_6_application_col_first','3'),(154717,4438,'_flexible_templates_6_application_col_first','field_62c41c6813492'),(154718,4438,'flexible_templates_6_application_col_second_0_text','Allows your business to be more effective and efficient in delivering your business value to your clients, in the current market conditions and into the future.'),(154719,4438,'_flexible_templates_6_application_col_second_0_text','field_62c41c9413495'),(154720,4438,'flexible_templates_6_application_col_second_1_text','Makes you money through a full digital transformation of your infrastructure.'),(154721,4438,'_flexible_templates_6_application_col_second_1_text','field_62c41c9413495'),(154722,4438,'flexible_templates_6_application_col_second','2'),(154723,4438,'_flexible_templates_6_application_col_second','field_62c41c8413494'),(154724,4438,'flexible_templates_6_swiper_content','This is not just about cloud native DevOps technology. It’s about… People, Business, Operations, and Results. Oh, and People! Did I say People?'),(154725,4438,'_flexible_templates_6_swiper_content','field_62c41caf13497'),(154726,4438,'flexible_templates_6_swiper_text','Bradford A. M. Sankar COO - Translucent Computing'),(154727,4438,'_flexible_templates_6_swiper_text','field_62c41ccd13498'),(154728,4438,'flexible_templates_7_mobile_image','4427'),(154729,4438,'_flexible_templates_7_mobile_image','field_62c41d81525e5'),(154730,4438,'flexible_templates_7_image','4428'),(154731,4438,'_flexible_templates_7_image','field_62c41d91525e6'),(154732,4438,'flexible_templates_7_heading','Cost-effective automation of your operations and infrastructure, with a focus on what drives business value'),(154733,4438,'_flexible_templates_7_heading','field_62c41da0525e7'),(154734,4438,'flexible_templates_8_heading','We treat your business like our own.'),(154735,4438,'_flexible_templates_8_heading','field_625565e14146d_field_6254fdb2efa27'),(154736,4438,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:10:\"Lets talk!\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(154737,4438,'_flexible_templates_8_cta','field_625565fa4146e_field_62551b3e101c4'),(154738,4438,'flexible_templates_6_heading','What does Cloud-Native Data-Driven DevOps mean for your business?'),(154739,4438,'_flexible_templates_6_heading','field_62c430cf84dde'),(154743,4439,'flexible_templates_0_mobile_image','4365'),(154744,4439,'_flexible_templates_0_mobile_image','field_62c409bd624b6'),(154745,4439,'flexible_templates_0_image','4366'),(154746,4439,'_flexible_templates_0_image','field_62c409cf624b7'),(154747,4439,'flexible_templates_0_heading','CLOUD NATIVE SOLUTIONS'),(154748,4439,'_flexible_templates_0_heading','field_62c409db624b8'),(154749,4439,'flexible_templates_0_sub_heading','Cloud Native DevOps Consulting'),(154750,4439,'_flexible_templates_0_sub_heading','field_62c409e8624b9'),(154751,4439,'flexible_templates','a:9:{i:0;s:28:\"cloud_native_solution_banner\";i:1;s:36:\"cloud_native_solution_drive_business\";i:2;s:29:\"cloud_native_solution_journey\";i:3;s:29:\"cloud_native_solution_service\";i:4;s:27:\"cloud_native_solution_build\";i:5;s:42:\"cloud_native_solution_book_consulation_now\";i:6;s:33:\"cloud_native_solution_data_driven\";i:7;s:36:\"cloud_native_solution_infrastructure\";i:8;s:17:\"lets_talk_section\";}'),(154752,4439,'_flexible_templates','field_6254f4d84ef9b'),(154753,4439,'flexible_templates_1_left_arrow_show_hide','1'),(154754,4439,'_flexible_templates_1_left_arrow_show_hide','field_62c40bccf22ef'),(154755,4439,'flexible_templates_1_label_text','COST-EFFECTIVE AUTOMATION'),(154756,4439,'_flexible_templates_1_label_text','field_62c40b9bf22ee'),(154757,4439,'flexible_templates_1_heading','Focused On What Drives Business Value'),(154758,4439,'_flexible_templates_1_heading','field_62c40be6f22f0'),(154759,4439,'flexible_templates_1_content','Our solution increases your team collaboration and system automation. Our continuous technology improvements drive business value and cross-collaboration between teams.'),(154760,4439,'_flexible_templates_1_content','field_62c40c05f22f1'),(154761,4439,'flexible_templates_1_grey_box_content','We help improve the experience of your clients, customers, staff, and third parties without the need for the added cost of people resources.'),(154762,4439,'_flexible_templates_1_grey_box_content','field_62c40c1ef22f2'),(154763,4439,'flexible_templates_1_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(154764,4439,'_flexible_templates_1_button','field_62c40c38f22f3'),(154765,4439,'flexible_templates_1_image','4405'),(154766,4439,'_flexible_templates_1_image','field_62c40c4cf22f4'),(154767,4439,'flexible_templates_1_review_content','Translucent’s understanding of the cloud native DevOps space and expertise in Kubernetes through to data driven applications has proven extremely valuable… Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security…has been invaluable. I would use them again if I could. In fact, I would use their team for everything if I could!'),(154768,4439,'_flexible_templates_1_review_content','field_62c40c97f22f5'),(154769,4439,'flexible_templates_1_review_title','Rhys Parry - CTO - Volentix'),(154770,4439,'_flexible_templates_1_review_title','field_62c40cb4f22f6'),(154771,4439,'flexible_templates_2_journey_logo_map_image','4406'),(154772,4439,'_flexible_templates_2_journey_logo_map_image','field_62c40d24f22f8'),(154773,4439,'flexible_templates_2_heading','Your DevOps Journey Roadmap'),(154774,4439,'_flexible_templates_2_heading','field_62c40d46f22f9'),(154775,4439,'flexible_templates_2_scroll_image','4407'),(154776,4439,'_flexible_templates_2_scroll_image','field_62c40d60f22fa'),(154777,4439,'flexible_templates_3_heading','Services'),(154778,4439,'_flexible_templates_3_heading','field_62c40db8f22fc'),(154779,4439,'flexible_templates_3_application_column_heading','Develop and release better software faster using Kubernetes and DevOps practices'),(154780,4439,'_flexible_templates_3_application_column_heading','field_62c40e07f22fd'),(154781,4439,'flexible_templates_3_application_text_repeater','7'),(154782,4439,'_flexible_templates_3_application_text_repeater','field_62c40e34f22fe'),(154783,4439,'flexible_templates_3_application_sub_text','Deliver DevOps culture and best practices to clients'),(154784,4439,'_flexible_templates_3_application_sub_text','field_62c40e52f2300'),(154785,4439,'flexible_templates_3_application_column_second_slide_repeater','3'),(154786,4439,'_flexible_templates_3_application_column_second_slide_repeater','field_62c40ee2f2301'),(154787,4439,'flexible_templates_3_reliability_engineers_bottom','4408'),(154788,4439,'_flexible_templates_3_reliability_engineers_bottom','field_62c40f50f2304'),(154789,4439,'flexible_templates_3_reliability_engineers_content','Translucent’s Site Reliability Engineers (SRE) experts in DevOps are Kubernetes Certified Providers.'),(154790,4439,'_flexible_templates_3_reliability_engineers_content','field_62c40f64f2305'),(154791,4439,'flexible_templates_3_text_box','\"71% of Fortune 100 companies use Kubernetes.'),(154792,4439,'_flexible_templates_3_text_box','field_62c40f79f2306'),(154793,4439,'flexible_templates_3_right_short_text','(source: CNCF.IO)'),(154794,4439,'_flexible_templates_3_right_short_text','field_62c40f93f2307'),(154795,4439,'flexible_templates_4_image','4409'),(154796,4439,'_flexible_templates_4_image','field_62c41066f230c'),(154797,4439,'flexible_templates_4_arrow_show_hide_build','1'),(154798,4439,'_flexible_templates_4_arrow_show_hide_build','field_62c41086f230e'),(154799,4439,'flexible_templates_4_label_text','BUILD - REBUILD - REPLATAFORM'),(154800,4439,'_flexible_templates_4_label_text','field_62c41075f230d'),(154801,4439,'flexible_templates_4_heading','Is your company ready to compete?'),(154802,4439,'_flexible_templates_4_heading','field_62c410a3f230f'),(154803,4439,'flexible_templates_4_content','No matter how simple or complex, Translucent’s cloud native data driven Devops solutions can be tailored to your exact needs to\r\nsave your company money, keep clients happier, and close new customers.'),(154804,4439,'_flexible_templates_4_content','field_62c410bef2310'),(154805,4439,'flexible_templates_5_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(154806,4439,'_flexible_templates_5_button','field_62c4110df2312'),(154807,4439,'flexible_templates_5_book_now_text','6'),(154808,4439,'_flexible_templates_5_book_now_text','field_62c4112df2313'),(154809,4439,'flexible_templates_3_application_text_repeater_0_text','- 100% GitOps Based'),(154810,4439,'_flexible_templates_3_application_text_repeater_0_text','field_62c40e41f22ff'),(154811,4439,'flexible_templates_3_application_text_repeater_1_text','- Configuration as Code'),(154812,4439,'_flexible_templates_3_application_text_repeater_1_text','field_62c40e41f22ff'),(154813,4439,'flexible_templates_3_application_text_repeater_2_text','- Infrastructure as Code (IaC)'),(154814,4439,'_flexible_templates_3_application_text_repeater_2_text','field_62c40e41f22ff'),(154815,4439,'flexible_templates_3_application_text_repeater_3_text','- Declarative Pipelines'),(154816,4439,'_flexible_templates_3_application_text_repeater_3_text','field_62c40e41f22ff'),(154817,4439,'flexible_templates_3_application_text_repeater_4_text','- Monitoring | Observability'),(154818,4439,'_flexible_templates_3_application_text_repeater_4_text','field_62c40e41f22ff'),(154819,4439,'flexible_templates_3_application_text_repeater_5_text','- Cloud-Agnostic (AWS | GCP | Azure)'),(154820,4439,'_flexible_templates_3_application_text_repeater_5_text','field_62c40e41f22ff'),(154821,4439,'flexible_templates_3_application_text_repeater_6_text','- High Dev-Prod Parity'),(154822,4439,'_flexible_templates_3_application_text_repeater_6_text','field_62c40e41f22ff'),(154823,4439,'flexible_templates_3_application_column_second_slide_repeater_0_heading',''),(154824,4439,'_flexible_templates_3_application_column_second_slide_repeater_0_heading','field_62c40efaf2302'),(154825,4439,'flexible_templates_3_application_column_second_slide_repeater_0_paragraph','Managed Kubernetes Services on Hybrid and Multi-Cloud Strategy for Platform Development, using Azure, Google Cloud, AWS, VMWare and Private Cloud.'),(154826,4439,'_flexible_templates_3_application_column_second_slide_repeater_0_paragraph','field_62c40f05f2303'),(154827,4439,'flexible_templates_3_application_column_second_slide_repeater_1_heading','Deliver DevOps culture and best practices to clients'),(154828,4439,'_flexible_templates_3_application_column_second_slide_repeater_1_heading','field_62c40efaf2302'),(154829,4439,'flexible_templates_3_application_column_second_slide_repeater_1_paragraph','- Plan, migrate, manage, automate, and optimize your Kubernetes cloud infrastructure'),(154830,4439,'_flexible_templates_3_application_column_second_slide_repeater_1_paragraph','field_62c40f05f2303'),(154831,4439,'flexible_templates_3_application_column_second_slide_repeater_2_heading','Site Reliability Engineering - what can be measured can be managed'),(154832,4439,'_flexible_templates_3_application_column_second_slide_repeater_2_heading','field_62c40efaf2302'),(154833,4439,'flexible_templates_3_application_column_second_slide_repeater_2_paragraph',''),(154834,4439,'_flexible_templates_3_application_column_second_slide_repeater_2_paragraph','field_62c40f05f2303'),(154835,4439,'flexible_templates_5_book_now_text_0_text','Open for business 24/7'),(154836,4439,'_flexible_templates_5_book_now_text_0_text','field_62c4113df2314'),(154837,4439,'flexible_templates_5_book_now_text_1_text','Greater customer insights'),(154838,4439,'_flexible_templates_5_book_now_text_1_text','field_62c4113df2314'),(154839,4439,'flexible_templates_5_book_now_text_2_text','Global expansion'),(154840,4439,'_flexible_templates_5_book_now_text_2_text','field_62c4113df2314'),(154841,4439,'flexible_templates_5_book_now_text_3_text','Automated operational infrastructure'),(154842,4439,'_flexible_templates_5_book_now_text_3_text','field_62c4113df2314'),(154843,4439,'flexible_templates_5_book_now_text_4_text','Drive more revenue'),(154844,4439,'_flexible_templates_5_book_now_text_4_text','field_62c4113df2314'),(154845,4439,'flexible_templates_5_book_now_text_5_text','Automation saves money'),(154846,4439,'_flexible_templates_5_book_now_text_5_text','field_62c4113df2314'),(154847,4439,'flexible_templates_6_arrow_hide_and_show_data_driven','1'),(154848,4439,'_flexible_templates_6_arrow_hide_and_show_data_driven','field_62c41be01348d'),(154849,4439,'flexible_templates_6_label_text','COST-EFFECTIVE AUTOMATION'),(154850,4439,'_flexible_templates_6_label_text','field_62c41c061348e'),(154851,4439,'flexible_templates_6_left_text','Translucent takes the best functions in your operational workflow and wraps data-driven digital DevOps technology around them, which:'),(154852,4439,'_flexible_templates_6_left_text','field_62c41c1b1348f'),(154853,4439,'flexible_templates_6_application_col_first_0_text','Creates a better customer and internal employee experience'),(154854,4439,'_flexible_templates_6_application_col_first_0_text','field_62c41c7a13493'),(154855,4439,'flexible_templates_6_application_col_first_1_text','Automates your processes and self-healing systems'),(154856,4439,'_flexible_templates_6_application_col_first_1_text','field_62c41c7a13493'),(154857,4439,'flexible_templates_6_application_col_first_2_text','Saves you money in resources through automated processes'),(154858,4439,'_flexible_templates_6_application_col_first_2_text','field_62c41c7a13493'),(154859,4439,'flexible_templates_6_application_col_first','3'),(154860,4439,'_flexible_templates_6_application_col_first','field_62c41c6813492'),(154861,4439,'flexible_templates_6_application_col_second_0_text','Allows your business to be more effective and efficient in delivering your business value to your clients, in the current market conditions and into the future.'),(154862,4439,'_flexible_templates_6_application_col_second_0_text','field_62c41c9413495'),(154863,4439,'flexible_templates_6_application_col_second_1_text','Makes you money through a full digital transformation of your infrastructure.'),(154864,4439,'_flexible_templates_6_application_col_second_1_text','field_62c41c9413495'),(154865,4439,'flexible_templates_6_application_col_second','2'),(154866,4439,'_flexible_templates_6_application_col_second','field_62c41c8413494'),(154867,4439,'flexible_templates_6_swiper_content','This is not just about cloud native DevOps technology. It’s about… People, Business, Operations, and Results. Oh, and People! Did I say People?'),(154868,4439,'_flexible_templates_6_swiper_content','field_62c41caf13497'),(154869,4439,'flexible_templates_6_swiper_text','Bradford A. M. Sankar COO - Translucent Computing'),(154870,4439,'_flexible_templates_6_swiper_text','field_62c41ccd13498'),(154871,4439,'flexible_templates_7_mobile_image','4427'),(154872,4439,'_flexible_templates_7_mobile_image','field_62c41d81525e5'),(154873,4439,'flexible_templates_7_image','4428'),(154874,4439,'_flexible_templates_7_image','field_62c41d91525e6'),(154875,4439,'flexible_templates_7_heading','Cost-effective automation of your operations and infrastructure, with a focus on what drives business value'),(154876,4439,'_flexible_templates_7_heading','field_62c41da0525e7'),(154877,4439,'flexible_templates_8_heading','We treat your business like our own.'),(154878,4439,'_flexible_templates_8_heading','field_625565e14146d_field_6254fdb2efa27'),(154879,4439,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:10:\"Lets talk!\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(154880,4439,'_flexible_templates_8_cta','field_625565fa4146e_field_62551b3e101c4'),(154881,4439,'flexible_templates_6_heading','What does Cloud-Native Data-Driven DevOps mean for your business?'),(154882,4439,'_flexible_templates_6_heading','field_62c430cf84dde'),(155115,4444,'flexible_templates','a:9:{i:0;s:31:\"cloud_native_application_banner\";i:1;s:50:\"cloud_native_application_building_new_applications\";i:2;s:47:\"cloud_native_application_rebuild_and_replatform\";i:3;s:40:\"cloud_native_application_fullwidth_image\";i:4;s:49:\"cloud_native_application_build_rebuild_replatform\";i:5;s:35:\"cloud_native_applications_solutions\";i:6;s:40:\"cloud_native_application_fullwidth_image\";i:7;s:47:\"cloud_native_applications_the_translucent_value\";i:8;s:40:\"cloud_native_application_copy_and_button\";}'),(155116,4444,'_flexible_templates','field_6254f4d84ef9b'),(155117,4444,'flexible_templates_0_image','4238'),(155118,4444,'_flexible_templates_0_image','field_62bb17034467a_field_62552ada52711_field_6254fdc5efa2a'),(155119,4444,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(155120,4444,'_flexible_templates_0_sub_heading','field_62bb173b4467b_field_6255097642ef4_field_6254fdbaefa28'),(155121,4444,'flexible_templates_0_heading','Cloud Native Application Development'),(155122,4444,'_flexible_templates_0_heading','field_62bb17614467c_field_62551ac3a6f96_field_6254fdb2efa27'),(155123,4444,'flexible_templates_0_copy','In modern application development you have three choices: Build | Rebuild | Replatform'),(155124,4444,'_flexible_templates_0_copy','field_62bb17874467d_field_62551b74a6f99_field_6254fdc0efa29'),(155125,4444,'flexible_templates_1_sub_heading','BUILDING NEW APPLICATIONS'),(155126,4444,'_flexible_templates_1_sub_heading','field_62bb1c9962e8a_field_6254fdbaefa28'),(155127,4444,'flexible_templates_1_heading','What is Building?'),(155128,4444,'_flexible_templates_1_heading','field_62bb1c9f62e8b_field_6254fdb2efa27'),(155129,4444,'flexible_templates_1_copy_wysiwyg','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.\r\n\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.\r\nUnleashing the true power of your organization in the 4th industrial revolution.'),(155130,4444,'_flexible_templates_1_copy_wysiwyg','field_62bb1cb462e8c_field_6255310ecf4de'),(155131,4444,'flexible_templates_1_image','4291'),(155132,4444,'_flexible_templates_1_image','field_62bb1cf662e8d_field_6254fdc5efa2a'),(155133,4444,'flexible_templates_1_testimonial_section_0_icon',''),(155134,4444,'_flexible_templates_1_testimonial_section_0_icon','field_62bb25696c318'),(155135,4444,'flexible_templates_1_testimonial_section_0_heading','Building GoTo Loans Platform from a Vision:'),(155136,4444,'_flexible_templates_1_testimonial_section_0_heading','field_62bb25736c319'),(155137,4444,'flexible_templates_1_testimonial_section_0_copy','Integrating banking, automotive, loan, mechanic and customer workflow data making the complex almost seem like magic. Keep up the great work!'),(155138,4444,'_flexible_templates_1_testimonial_section_0_copy','field_62bb25786c31a'),(155139,4444,'flexible_templates_1_testimonial_section_0_name','Eric Kaplan'),(155140,4444,'_flexible_templates_1_testimonial_section_0_name','field_62bb260117e59'),(155141,4444,'flexible_templates_1_testimonial_section_0_designation','COO - GoTo Loans'),(155142,4444,'_flexible_templates_1_testimonial_section_0_designation','field_62bb260c17e5a'),(155143,4444,'flexible_templates_1_testimonial_section','1'),(155144,4444,'_flexible_templates_1_testimonial_section','field_62bb1d7162e8f_field_62bb251c6c317'),(155145,4444,'flexible_templates_2_sub_heading','REBUILD & REPLATFORM'),(155146,4444,'_flexible_templates_2_sub_heading','field_62bb1e2962e94_field_6254fdbaefa28'),(155147,4444,'flexible_templates_2_heading','What is the best application modernization
choice for my company?'),(155148,4444,'_flexible_templates_2_heading','field_62bb1e3b62e95_field_6254fdb2efa27'),(155149,4444,'flexible_templates_2_copy_wysiwyg','Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.\r\nYou have two application modernization choices when upgrading: Rebuilding or Replatforming'),(155150,4444,'_flexible_templates_2_copy_wysiwyg','field_62bb44696be57_field_6255310ecf4de'),(155151,4444,'flexible_templates_2_build_and_platform_section_0_heading','What is Rebuild'),(155152,4444,'_flexible_templates_2_build_and_platform_section_0_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(155153,4444,'flexible_templates_2_build_and_platform_section_0_image','4293'),(155154,4444,'_flexible_templates_2_build_and_platform_section_0_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(155155,4444,'flexible_templates_2_build_and_platform_section_0_copy','You can rebuild your application components while preserving your original specifications, requirements, and business logic - this will help you shake off the confines of old legacy technology. While using what is still of value.'),(155156,4444,'_flexible_templates_2_build_and_platform_section_0_copy','field_62bb1f8662e99_field_625525b15629c'),(155157,4444,'flexible_templates_2_build_and_platform_section_1_heading','What is Replatform'),(155158,4444,'_flexible_templates_2_build_and_platform_section_1_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(155159,4444,'flexible_templates_2_build_and_platform_section_1_image','4294'),(155160,4444,'_flexible_templates_2_build_and_platform_section_1_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(155161,4444,'flexible_templates_2_build_and_platform_section_1_copy','Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(155162,4444,'_flexible_templates_2_build_and_platform_section_1_copy','field_62bb1f8662e99_field_625525b15629c'),(155163,4444,'flexible_templates_2_build_and_platform_section','2'),(155164,4444,'_flexible_templates_2_build_and_platform_section','field_62bb1eeb62e96'),(155165,4444,'flexible_templates_2_testimonial_section_0_icon','4295'),(155166,4444,'_flexible_templates_2_testimonial_section_0_icon','field_62bb25696c318'),(155167,4444,'flexible_templates_2_testimonial_section_0_heading','Rebuilding CIMS Platform at SickKids Hospital:'),(155168,4444,'_flexible_templates_2_testimonial_section_0_heading','field_62bb25736c319'),(155169,4444,'flexible_templates_2_testimonial_section_0_copy','I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.'),(155170,4444,'_flexible_templates_2_testimonial_section_0_copy','field_62bb25786c31a'),(155171,4444,'flexible_templates_2_testimonial_section_0_name','Andrew James'),(155172,4444,'_flexible_templates_2_testimonial_section_0_name','field_62bb260117e59'),(155173,4444,'flexible_templates_2_testimonial_section_0_designation','The Hospital for Sick Children'),(155174,4444,'_flexible_templates_2_testimonial_section_0_designation','field_62bb260c17e5a'),(155175,4444,'flexible_templates_2_testimonial_section','1'),(155176,4444,'_flexible_templates_2_testimonial_section','field_62bb1fc662e9a_field_62bb251c6c317'),(155177,4444,'flexible_templates_3_image','4301'),(155178,4444,'_flexible_templates_3_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(155179,4444,'flexible_templates_4_sub_heading','BUILD - REBUILD - REPLATFORM'),(155180,4444,'_flexible_templates_4_sub_heading','field_62bb20b262ea1_field_6254fdbaefa28'),(155181,4444,'flexible_templates_4_heading','Keeping you competitive now and built for the
future.'),(155182,4444,'_flexible_templates_4_heading','field_62bb20b862ea2_field_6254fdb2efa27'),(155183,4444,'flexible_templates_4_copy','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world. Making you very competitive, especially in the current market conditions.'),(155184,4444,'_flexible_templates_4_copy','field_62bb20bd62ea3_field_6254fdc0efa29'),(155185,4444,'flexible_templates_4_table_0_text','Strategy'),(155186,4444,'_flexible_templates_4_table_0_text','field_62bb212762ea5'),(155187,4444,'flexible_templates_4_table_1_text','Automated Customer Experience'),(155188,4444,'_flexible_templates_4_table_1_text','field_62bb212762ea5'),(155189,4444,'flexible_templates_4_table_2_text','Critical System 1st Approach'),(155190,4444,'_flexible_templates_4_table_2_text','field_62bb212762ea5'),(155191,4444,'flexible_templates_4_table_3_text','Scalability'),(155192,4444,'_flexible_templates_4_table_3_text','field_62bb212762ea5'),(155193,4444,'flexible_templates_4_table_4_text','API 1st Design'),(155194,4444,'_flexible_templates_4_table_4_text','field_62bb212762ea5'),(155195,4444,'flexible_templates_4_table_5_text','Secure Transactions'),(155196,4444,'_flexible_templates_4_table_5_text','field_62bb212762ea5'),(155197,4444,'flexible_templates_4_table_6_text','Revenue Driving Data Insights'),(155198,4444,'_flexible_templates_4_table_6_text','field_62bb212762ea5'),(155199,4444,'flexible_templates_4_table_7_text','Faster to Market'),(155200,4444,'_flexible_templates_4_table_7_text','field_62bb212762ea5'),(155201,4444,'flexible_templates_4_table_8_text','APM'),(155202,4444,'_flexible_templates_4_table_8_text','field_62bb212762ea5'),(155203,4444,'flexible_templates_4_table_9_text','Responsive Design'),(155204,4444,'_flexible_templates_4_table_9_text','field_62bb212762ea5'),(155205,4444,'flexible_templates_4_table_10_text','Open for Business 24/7'),(155206,4444,'_flexible_templates_4_table_10_text','field_62bb212762ea5'),(155207,4444,'flexible_templates_4_table','11'),(155208,4444,'_flexible_templates_4_table','field_62bb211762ea4'),(155209,4444,'flexible_templates_4_testimonial_section_0_icon',''),(155210,4444,'_flexible_templates_4_testimonial_section_0_icon','field_62bb25696c318'),(155211,4444,'flexible_templates_4_testimonial_section_0_heading',''),(155212,4444,'_flexible_templates_4_testimonial_section_0_heading','field_62bb25736c319'),(155213,4444,'flexible_templates_4_testimonial_section_0_copy','Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.'),(155214,4444,'_flexible_templates_4_testimonial_section_0_copy','field_62bb25786c31a'),(155215,4444,'flexible_templates_4_testimonial_section_0_name','Bradford A. M. Sankar'),(155216,4444,'_flexible_templates_4_testimonial_section_0_name','field_62bb260117e59'),(155217,4444,'flexible_templates_4_testimonial_section_0_designation','COO - Translucent Computing'),(155218,4444,'_flexible_templates_4_testimonial_section_0_designation','field_62bb260c17e5a'),(155219,4444,'flexible_templates_4_testimonial_section','1'),(155220,4444,'_flexible_templates_4_testimonial_section','field_62bb214c62ea6_field_62bb251c6c317'),(155221,4444,'flexible_templates_4_left_image','4303'),(155222,4444,'_flexible_templates_4_left_image','field_62bb21e962eaa'),(155223,4444,'flexible_templates_4_middle_copy','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(155224,4444,'_flexible_templates_4_middle_copy','field_62bb21f462eab'),(155225,4444,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:23:\"Book a consultation now\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(155226,4444,'_flexible_templates_4_cta','field_62bb220b62eac_field_62551b3e101c4'),(155227,4444,'flexible_templates_5_sub_heading','CLOUD NATIVE APPLICATIONS SOLUTIONS:'),(155228,4444,'_flexible_templates_5_sub_heading','field_62bb224b62eae_field_6254fdbaefa28'),(155229,4444,'flexible_templates_5_heading','Is your company competitive in today’s landscape?'),(155230,4444,'_flexible_templates_5_heading','field_62bb226062eaf_field_6254fdb2efa27'),(155231,4444,'flexible_templates_5_left_section_0_text','Application Development Build | Rebuild | Replatform'),(155232,4444,'_flexible_templates_5_left_section_0_text','field_62bb28b062eb1'),(155233,4444,'flexible_templates_5_left_section_1_text','Customer experience workflow automation'),(155234,4444,'_flexible_templates_5_left_section_1_text','field_62bb28b062eb1'),(155235,4444,'flexible_templates_5_left_section_2_text','Application Performance Metrics (APM)'),(155236,4444,'_flexible_templates_5_left_section_2_text','field_62bb28b062eb1'),(155237,4444,'flexible_templates_5_left_section_3_text','API 1st Design'),(155238,4444,'_flexible_templates_5_left_section_3_text','field_62bb28b062eb1'),(155239,4444,'flexible_templates_5_left_section_4_text','Mobile 1st design'),(155240,4444,'_flexible_templates_5_left_section_4_text','field_62bb28b062eb1'),(155241,4444,'flexible_templates_5_left_section_5_text','Responsive Design All Devices'),(155242,4444,'_flexible_templates_5_left_section_5_text','field_62bb28b062eb1'),(155243,4444,'flexible_templates_5_left_section_6_text','Open for business 24/7'),(155244,4444,'_flexible_templates_5_left_section_6_text','field_62bb28b062eb1'),(155245,4444,'flexible_templates_5_left_section','7'),(155246,4444,'_flexible_templates_5_left_section','field_62bb28a762eb0'),(155247,4444,'flexible_templates_5_right_section_0_text','Microservices – Distributed Architecture'),(155248,4444,'_flexible_templates_5_right_section_0_text','field_62bb28be62eb3'),(155249,4444,'flexible_templates_5_right_section_1_text','Secure Transactions – DevSecOps'),(155250,4444,'_flexible_templates_5_right_section_1_text','field_62bb28be62eb3'),(155251,4444,'flexible_templates_5_right_section_2_text','Kubernetes Certified Service Provider'),(155252,4444,'_flexible_templates_5_right_section_2_text','field_62bb28be62eb3'),(155253,4444,'flexible_templates_5_right_section_3_text','Multi-cloud Solutions – GCP – AWS – Azure'),(155254,4444,'_flexible_templates_5_right_section_3_text','field_62bb28be62eb3'),(155255,4444,'flexible_templates_5_right_section_4_text','Critical System 1st Approach'),(155256,4444,'_flexible_templates_5_right_section_4_text','field_62bb28be62eb3'),(155257,4444,'flexible_templates_5_right_section_5_text','API Economy – 3rd Party partnerships'),(155258,4444,'_flexible_templates_5_right_section_5_text','field_62bb28be62eb3'),(155259,4444,'flexible_templates_5_right_section_6_text','Return on Investment 1st driven planning'),(155260,4444,'_flexible_templates_5_right_section_6_text','field_62bb28be62eb3'),(155261,4444,'flexible_templates_5_right_section','7'),(155262,4444,'_flexible_templates_5_right_section','field_62bb28be62eb2'),(155263,4444,'flexible_templates_6_image','4219'),(155264,4444,'_flexible_templates_6_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(155265,4444,'flexible_templates_7_sub_heading','THE TRANSLUCENT VALUE'),(155266,4444,'_flexible_templates_7_sub_heading','field_62bb293062eb5_field_6254fdbaefa28'),(155267,4444,'flexible_templates_7_heading','What does cloud native data driven application
modernization
mean for your business?'),(155268,4444,'_flexible_templates_7_heading','field_62bb295b62eb6_field_6254fdb2efa27'),(155269,4444,'flexible_templates_7_list_section_0_list_0_copy','We learn about what makes your business and physical operations valuable to your clients and modernize that.'),(155270,4444,'_flexible_templates_7_list_section_0_list_0_copy','field_62bb2a0462eb9'),(155271,4444,'flexible_templates_7_list_section_0_list_1_copy','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions.'),(155272,4444,'_flexible_templates_7_list_section_0_list_1_copy','field_62bb2a0462eb9'),(155273,4444,'flexible_templates_7_list_section_0_list_2_copy','Data Driven Decisions give you the ability to fine-tune your products and services based on historical patterns providing the best ROI.'),(155274,4444,'_flexible_templates_7_list_section_0_list_2_copy','field_62bb2a0462eb9'),(155275,4444,'flexible_templates_7_list_section_0_list','3'),(155276,4444,'_flexible_templates_7_list_section_0_list','field_62bb29bd62eb8'),(155277,4444,'flexible_templates_7_list_section_1_list_0_copy','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(155278,4444,'_flexible_templates_7_list_section_1_list_0_copy','field_62bb2a0462eb9'),(155279,4444,'flexible_templates_7_list_section_1_list_1_copy','We go above and beyond to deliver and treat your solution like our own'),(155280,4444,'_flexible_templates_7_list_section_1_list_1_copy','field_62bb2a0462eb9'),(155281,4444,'flexible_templates_7_list_section_1_list_2_copy','Translucent application development and application modernization reduces cost'),(155282,4444,'_flexible_templates_7_list_section_1_list_2_copy','field_62bb2a0462eb9'),(155283,4444,'flexible_templates_7_list_section_1_list_3_copy','Automation of the employee and customer experience saves money and makes money'),(155284,4444,'_flexible_templates_7_list_section_1_list_3_copy','field_62bb2a0462eb9'),(155285,4444,'flexible_templates_7_list_section_1_list','4'),(155286,4444,'_flexible_templates_7_list_section_1_list','field_62bb29bd62eb8'),(155287,4444,'flexible_templates_7_list_section_2_list_0_copy','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(155288,4444,'_flexible_templates_7_list_section_2_list_0_copy','field_62bb2a0462eb9'),(155289,4444,'flexible_templates_7_list_section_2_list_1_copy','Increase profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(155290,4444,'_flexible_templates_7_list_section_2_list_1_copy','field_62bb2a0462eb9'),(155291,4444,'flexible_templates_7_list_section_2_list','2'),(155292,4444,'_flexible_templates_7_list_section_2_list','field_62bb29bd62eb8'),(155293,4444,'flexible_templates_7_list_section','3'),(155294,4444,'_flexible_templates_7_list_section','field_62bb29b362eb7'),(155295,4444,'flexible_templates_8_copy','Translucent cloud native data driven application development.
It’s how your client’s do business!'),(155296,4444,'_flexible_templates_8_copy','field_62bb2a7262ebb_field_6254fdc0efa29'),(155297,4444,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:11:\"Let\'s talk!\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(155298,4444,'_flexible_templates_8_cta','field_62bb2a8962ebc_field_62551b3e101c4'),(155299,4444,'flexible_templates_0_mob_image','4320'),(155300,4444,'_flexible_templates_0_mob_image','field_62bc5c91b8f13_field_6254fdcbefa2b'),(155301,4444,'flexible_templates_3_mob_image','4312'),(155302,4444,'_flexible_templates_3_mob_image','field_62bc5fba29a08_field_6254fdcbefa2b'),(155303,4444,'flexible_templates_6_mob_image',''),(155304,4444,'_flexible_templates_6_mob_image','field_62bc5fba29a08_field_6254fdcbefa2b'),(155341,4446,'_edit_lock','1660643527:20'),(155342,4446,'_edit_last','4'),(155343,4446,'_wp_page_template','flexible-template.php'),(155344,4446,'hefo_before','0'),(155345,4446,'hefo_after','0'),(155346,4446,'_yoast_wpseo_focuskeywords',''),(155347,4446,'_yoast_wpseo_keywordsynonyms',''),(155348,4446,'_yoast_wpseo_estimated-reading-time-minutes',''),(155412,4448,'_wp_page_template','flexible-template.php'),(155413,4448,'hefo_before','0'),(155414,4448,'hefo_after','0'),(155415,4448,'_yoast_wpseo_focuskeywords',''),(155416,4448,'_yoast_wpseo_keywordsynonyms',''),(155417,4448,'_yoast_wpseo_estimated-reading-time-minutes',''),(155418,4448,'_dp_original','4203'),(155419,4448,'_edit_lock','1657561532:4'),(155420,4448,'_edit_last','20'),(155421,4448,'flexible_templates','a:9:{i:0;s:31:\"cloud_native_application_banner\";i:1;s:50:\"cloud_native_application_building_new_applications\";i:2;s:47:\"cloud_native_application_rebuild_and_replatform\";i:3;s:40:\"cloud_native_application_fullwidth_image\";i:4;s:49:\"cloud_native_application_build_rebuild_replatform\";i:5;s:35:\"cloud_native_applications_solutions\";i:6;s:40:\"cloud_native_application_fullwidth_image\";i:7;s:47:\"cloud_native_applications_the_translucent_value\";i:8;s:40:\"cloud_native_application_copy_and_button\";}'),(155422,4448,'_flexible_templates','field_6254f4d84ef9b'),(155423,4448,'flexible_templates_0_image','4238'),(155424,4448,'_flexible_templates_0_image','field_62bb17034467a_field_62552ada52711_field_6254fdc5efa2a'),(155425,4448,'flexible_templates_0_sub_heading','CLOUD NATIVE SOLUTIONS'),(155426,4448,'_flexible_templates_0_sub_heading','field_62bb173b4467b_field_6255097642ef4_field_6254fdbaefa28'),(155427,4448,'flexible_templates_0_heading','Cloud Native Application Development'),(155428,4448,'_flexible_templates_0_heading','field_62bb17614467c_field_62551ac3a6f96_field_6254fdb2efa27'),(155429,4448,'flexible_templates_0_copy','In modern application development you have three choices: Build | Rebuild | Replatform'),(155430,4448,'_flexible_templates_0_copy','field_62bb17874467d_field_62551b74a6f99_field_6254fdc0efa29'),(155431,4448,'flexible_templates_1_sub_heading','BUILDING NEW APPLICATIONS'),(155432,4448,'_flexible_templates_1_sub_heading','field_62bb1c9962e8a_field_6254fdbaefa28'),(155433,4448,'flexible_templates_1_heading','What is Building?'),(155434,4448,'_flexible_templates_1_heading','field_62bb1c9f62e8b_field_6254fdb2efa27'),(155435,4448,'flexible_templates_1_copy_wysiwyg','Creating your cloud native data driven digital transformation business strategy from a vision through to a full solution.\r\n\r\nThe foundation of what makes your business physically successful is mapped with your best people and our subject matter experts then tied to Translucent’s cloud native data driven application proven process.\r\nUnleashing the true power of your organization in the 4th industrial revolution.'),(155436,4448,'_flexible_templates_1_copy_wysiwyg','field_62bb1cb462e8c_field_6255310ecf4de'),(155437,4448,'flexible_templates_1_image','4291'),(155438,4448,'_flexible_templates_1_image','field_62bb1cf662e8d_field_6254fdc5efa2a'),(155439,4448,'flexible_templates_1_testimonial_section_0_icon',''),(155440,4448,'_flexible_templates_1_testimonial_section_0_icon','field_62bb25696c318'),(155441,4448,'flexible_templates_1_testimonial_section_0_heading','Building GoTo Loans Platform from a Vision:'),(155442,4448,'_flexible_templates_1_testimonial_section_0_heading','field_62bb25736c319'),(155443,4448,'flexible_templates_1_testimonial_section_0_copy','Integrating banking, automotive, loan, mechanic and customer workflow data making the complex almost seem like magic. Keep up the great work!'),(155444,4448,'_flexible_templates_1_testimonial_section_0_copy','field_62bb25786c31a'),(155445,4448,'flexible_templates_1_testimonial_section_0_name','Eric Kaplan'),(155446,4448,'_flexible_templates_1_testimonial_section_0_name','field_62bb260117e59'),(155447,4448,'flexible_templates_1_testimonial_section_0_designation','COO - GoTo Loans'),(155448,4448,'_flexible_templates_1_testimonial_section_0_designation','field_62bb260c17e5a'),(155449,4448,'flexible_templates_1_testimonial_section','1'),(155450,4448,'_flexible_templates_1_testimonial_section','field_62bb1d7162e8f_field_62bb251c6c317'),(155451,4448,'flexible_templates_2_sub_heading','REBUILD & REPLATFORM'),(155452,4448,'_flexible_templates_2_sub_heading','field_62bb1e2962e94_field_6254fdbaefa28'),(155453,4448,'flexible_templates_2_heading','What is the best application modernization
choice for my company?'),(155454,4448,'_flexible_templates_2_heading','field_62bb1e3b62e95_field_6254fdb2efa27'),(155455,4448,'flexible_templates_2_copy_wysiwyg','Application modernization refers to using what you can from your old legacy systems. Be that requirements, specification, or technology to create cloud native digitally transformed applications. This process saves your company money and time while making you extremely competitive. Especially in today’s economic landscape.\r\nYou have two application modernization choices when upgrading: Rebuilding or Replatforming'),(155456,4448,'_flexible_templates_2_copy_wysiwyg','field_62bb44696be57_field_6255310ecf4de'),(155457,4448,'flexible_templates_2_build_and_platform_section_0_heading','What is Rebuild'),(155458,4448,'_flexible_templates_2_build_and_platform_section_0_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(155459,4448,'flexible_templates_2_build_and_platform_section_0_image','4293'),(155460,4448,'_flexible_templates_2_build_and_platform_section_0_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(155461,4448,'flexible_templates_2_build_and_platform_section_0_copy','You can rebuild your application components while preserving your original specifications, requirements, and business logic - this will help you shake off the confines of old legacy technology. While using what is still of value.'),(155462,4448,'_flexible_templates_2_build_and_platform_section_0_copy','field_62bb1f8662e99_field_625525b15629c'),(155463,4448,'flexible_templates_2_build_and_platform_section_1_heading','What is Replatform'),(155464,4448,'_flexible_templates_2_build_and_platform_section_1_heading','field_62bb1f1262e97_field_6255096442ef3_field_6254fdb2efa27'),(155465,4448,'flexible_templates_2_build_and_platform_section_1_image','4294'),(155466,4448,'_flexible_templates_2_build_and_platform_section_1_image','field_62bb1f7662e98_field_625523de9609f_field_6254fdc5efa2a'),(155467,4448,'flexible_templates_2_build_and_platform_section_1_copy','Replatforming is migrating an old application to a new runtime platform. Simply put, when you upgrade to a cloud native applications platform, replatforming will repurpose the usable parts from your legacy technology, with minimal changes to code and structure.'),(155468,4448,'_flexible_templates_2_build_and_platform_section_1_copy','field_62bb1f8662e99_field_625525b15629c'),(155469,4448,'flexible_templates_2_build_and_platform_section','2'),(155470,4448,'_flexible_templates_2_build_and_platform_section','field_62bb1eeb62e96'),(155471,4448,'flexible_templates_2_testimonial_section_0_icon','4295'),(155472,4448,'_flexible_templates_2_testimonial_section_0_icon','field_62bb25696c318'),(155473,4448,'flexible_templates_2_testimonial_section_0_heading','Rebuilding CIMS Platform at SickKids Hospital:'),(155474,4448,'_flexible_templates_2_testimonial_section_0_heading','field_62bb25736c319'),(155475,4448,'flexible_templates_2_testimonial_section_0_copy','I have no hesitation in recommending Translucent as a highly reliable and extremely valuable resource that has not only the expertise but also the technological resources that could assist SickKids as we deal with the current pandemic.'),(155476,4448,'_flexible_templates_2_testimonial_section_0_copy','field_62bb25786c31a'),(155477,4448,'flexible_templates_2_testimonial_section_0_name','Andrew James'),(155478,4448,'_flexible_templates_2_testimonial_section_0_name','field_62bb260117e59'),(155479,4448,'flexible_templates_2_testimonial_section_0_designation','The Hospital for Sick Children'),(155480,4448,'_flexible_templates_2_testimonial_section_0_designation','field_62bb260c17e5a'),(155481,4448,'flexible_templates_2_testimonial_section','1'),(155482,4448,'_flexible_templates_2_testimonial_section','field_62bb1fc662e9a_field_62bb251c6c317'),(155483,4448,'flexible_templates_3_image','4301'),(155484,4448,'_flexible_templates_3_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(155485,4448,'flexible_templates_4_sub_heading','BUILD - REBUILD - REPLATFORM'),(155486,4448,'_flexible_templates_4_sub_heading','field_62bb20b262ea1_field_6254fdbaefa28'),(155487,4448,'flexible_templates_4_heading','Keeping you competitive now and built for the
future.'),(155488,4448,'_flexible_templates_4_heading','field_62bb20b862ea2_field_6254fdb2efa27'),(155489,4448,'flexible_templates_4_copy','Our subject matter experts work with your best of breed leaders in your organization to understand why your customers buy from you. Then we put that into custom award-winning applications. Creating a cloud native client experience that mirrors what makes you successful in the physical world. Making you very competitive, especially in the current market conditions.'),(155490,4448,'_flexible_templates_4_copy','field_62bb20bd62ea3_field_6254fdc0efa29'),(155491,4448,'flexible_templates_4_table_0_text','Strategy'),(155492,4448,'_flexible_templates_4_table_0_text','field_62bb212762ea5'),(155493,4448,'flexible_templates_4_table_1_text','Automated Customer Experience'),(155494,4448,'_flexible_templates_4_table_1_text','field_62bb212762ea5'),(155495,4448,'flexible_templates_4_table_2_text','Critical System 1st Approach'),(155496,4448,'_flexible_templates_4_table_2_text','field_62bb212762ea5'),(155497,4448,'flexible_templates_4_table_3_text','Scalability'),(155498,4448,'_flexible_templates_4_table_3_text','field_62bb212762ea5'),(155499,4448,'flexible_templates_4_table_4_text','API 1st Design'),(155500,4448,'_flexible_templates_4_table_4_text','field_62bb212762ea5'),(155501,4448,'flexible_templates_4_table_5_text','Secure Transactions'),(155502,4448,'_flexible_templates_4_table_5_text','field_62bb212762ea5'),(155503,4448,'flexible_templates_4_table_6_text','Revenue Driving Data Insights'),(155504,4448,'_flexible_templates_4_table_6_text','field_62bb212762ea5'),(155505,4448,'flexible_templates_4_table_7_text','Faster to Market'),(155506,4448,'_flexible_templates_4_table_7_text','field_62bb212762ea5'),(155507,4448,'flexible_templates_4_table_8_text','APM'),(155508,4448,'_flexible_templates_4_table_8_text','field_62bb212762ea5'),(155509,4448,'flexible_templates_4_table_9_text','Responsive Design'),(155510,4448,'_flexible_templates_4_table_9_text','field_62bb212762ea5'),(155511,4448,'flexible_templates_4_table_10_text','Open for Business 24/7'),(155512,4448,'_flexible_templates_4_table_10_text','field_62bb212762ea5'),(155513,4448,'flexible_templates_4_table','11'),(155514,4448,'_flexible_templates_4_table','field_62bb211762ea4'),(155515,4448,'flexible_templates_4_testimonial_section_0_icon',''),(155516,4448,'_flexible_templates_4_testimonial_section_0_icon','field_62bb25696c318'),(155517,4448,'flexible_templates_4_testimonial_section_0_heading',''),(155518,4448,'_flexible_templates_4_testimonial_section_0_heading','field_62bb25736c319'),(155519,4448,'flexible_templates_4_testimonial_section_0_copy','Where old legacy technology moves like a 2-lane highway. Cloud native data driven modernization of applications allows your business to move like an 8-lane super highway, or 1000-lane ultra-highway, depending on your needs.'),(155520,4448,'_flexible_templates_4_testimonial_section_0_copy','field_62bb25786c31a'),(155521,4448,'flexible_templates_4_testimonial_section_0_name','Bradford A. M. Sankar'),(155522,4448,'_flexible_templates_4_testimonial_section_0_name','field_62bb260117e59'),(155523,4448,'flexible_templates_4_testimonial_section_0_designation','COO - Translucent Computing'),(155524,4448,'_flexible_templates_4_testimonial_section_0_designation','field_62bb260c17e5a'),(155525,4448,'flexible_templates_4_testimonial_section','1'),(155526,4448,'_flexible_templates_4_testimonial_section','field_62bb214c62ea6_field_62bb251c6c317'),(155527,4448,'flexible_templates_4_left_image','4303'),(155528,4448,'_flexible_templates_4_left_image','field_62bb21e962eaa'),(155529,4448,'flexible_templates_4_middle_copy','Depending on where you are in your journey Translucent will help you make the best application modernization choice and Sheppard you to where you need to be.'),(155530,4448,'_flexible_templates_4_middle_copy','field_62bb21f462eab'),(155531,4448,'flexible_templates_4_cta','a:3:{s:5:\"title\";s:23:\"Book a consultation now\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(155532,4448,'_flexible_templates_4_cta','field_62bb220b62eac_field_62551b3e101c4'),(155533,4448,'flexible_templates_5_sub_heading','CLOUD NATIVE APPLICATIONS SOLUTIONS:'),(155534,4448,'_flexible_templates_5_sub_heading','field_62bb224b62eae_field_6254fdbaefa28'),(155535,4448,'flexible_templates_5_heading','Is your company competitive in today’s landscape?'),(155536,4448,'_flexible_templates_5_heading','field_62bb226062eaf_field_6254fdb2efa27'),(155537,4448,'flexible_templates_5_left_section_0_text','Application Development Build | Rebuild | Replatform'),(155538,4448,'_flexible_templates_5_left_section_0_text','field_62bb28b062eb1'),(155539,4448,'flexible_templates_5_left_section_1_text','Customer experience workflow automation'),(155540,4448,'_flexible_templates_5_left_section_1_text','field_62bb28b062eb1'),(155541,4448,'flexible_templates_5_left_section_2_text','Application Performance Metrics (APM)'),(155542,4448,'_flexible_templates_5_left_section_2_text','field_62bb28b062eb1'),(155543,4448,'flexible_templates_5_left_section_3_text','API 1st Design'),(155544,4448,'_flexible_templates_5_left_section_3_text','field_62bb28b062eb1'),(155545,4448,'flexible_templates_5_left_section_4_text','Mobile 1st design'),(155546,4448,'_flexible_templates_5_left_section_4_text','field_62bb28b062eb1'),(155547,4448,'flexible_templates_5_left_section_5_text','Responsive Design All Devices'),(155548,4448,'_flexible_templates_5_left_section_5_text','field_62bb28b062eb1'),(155549,4448,'flexible_templates_5_left_section_6_text','Open for business 24/7'),(155550,4448,'_flexible_templates_5_left_section_6_text','field_62bb28b062eb1'),(155551,4448,'flexible_templates_5_left_section','7'),(155552,4448,'_flexible_templates_5_left_section','field_62bb28a762eb0'),(155553,4448,'flexible_templates_5_right_section_0_text','Microservices – Distributed Architecture'),(155554,4448,'_flexible_templates_5_right_section_0_text','field_62bb28be62eb3'),(155555,4448,'flexible_templates_5_right_section_1_text','Secure Transactions – DevSecOps'),(155556,4448,'_flexible_templates_5_right_section_1_text','field_62bb28be62eb3'),(155557,4448,'flexible_templates_5_right_section_2_text','Kubernetes Certified Service Provider'),(155558,4448,'_flexible_templates_5_right_section_2_text','field_62bb28be62eb3'),(155559,4448,'flexible_templates_5_right_section_3_text','Multi-cloud Solutions – GCP – AWS – Azure'),(155560,4448,'_flexible_templates_5_right_section_3_text','field_62bb28be62eb3'),(155561,4448,'flexible_templates_5_right_section_4_text','Critical System 1st Approach'),(155562,4448,'_flexible_templates_5_right_section_4_text','field_62bb28be62eb3'),(155563,4448,'flexible_templates_5_right_section_5_text','API Economy – 3rd Party partnerships'),(155564,4448,'_flexible_templates_5_right_section_5_text','field_62bb28be62eb3'),(155565,4448,'flexible_templates_5_right_section_6_text','Return on Investment 1st driven planning'),(155566,4448,'_flexible_templates_5_right_section_6_text','field_62bb28be62eb3'),(155567,4448,'flexible_templates_5_right_section','7'),(155568,4448,'_flexible_templates_5_right_section','field_62bb28be62eb2'),(155569,4448,'flexible_templates_6_image','4219'),(155570,4448,'_flexible_templates_6_image','field_62bb205e62e9f_field_6254fdc5efa2a'),(155571,4448,'flexible_templates_7_sub_heading','THE TRANSLUCENT VALUE'),(155572,4448,'_flexible_templates_7_sub_heading','field_62bb293062eb5_field_6254fdbaefa28'),(155573,4448,'flexible_templates_7_heading','What does cloud native data driven application
modernization
mean for your business?'),(155574,4448,'_flexible_templates_7_heading','field_62bb295b62eb6_field_6254fdb2efa27'),(155575,4448,'flexible_templates_7_list_section_0_list_0_copy','We learn about what makes your business and physical operations valuable to your clients and modernize that.'),(155576,4448,'_flexible_templates_7_list_section_0_list_0_copy','field_62bb2a0462eb9'),(155577,4448,'flexible_templates_7_list_section_0_list_1_copy','Onshore nearshore North American Awarded enterprise experienced expert Translucent employee teams create cost-effective solutions.'),(155578,4448,'_flexible_templates_7_list_section_0_list_1_copy','field_62bb2a0462eb9'),(155579,4448,'flexible_templates_7_list_section_0_list_2_copy','Data Driven Decisions give you the ability to fine-tune your products and services based on historical patterns providing the best ROI.'),(155580,4448,'_flexible_templates_7_list_section_0_list_2_copy','field_62bb2a0462eb9'),(155581,4448,'flexible_templates_7_list_section_0_list','3'),(155582,4448,'_flexible_templates_7_list_section_0_list','field_62bb29bd62eb8'),(155583,4448,'flexible_templates_7_list_section_1_list_0_copy','Responsive design makes your applications available across desktop, mobile, tablets and laptops 24/7'),(155584,4448,'_flexible_templates_7_list_section_1_list_0_copy','field_62bb2a0462eb9'),(155585,4448,'flexible_templates_7_list_section_1_list_1_copy','We go above and beyond to deliver and treat your solution like our own'),(155586,4448,'_flexible_templates_7_list_section_1_list_1_copy','field_62bb2a0462eb9'),(155587,4448,'flexible_templates_7_list_section_1_list_2_copy','Translucent application development and application modernization reduces cost'),(155588,4448,'_flexible_templates_7_list_section_1_list_2_copy','field_62bb2a0462eb9'),(155589,4448,'flexible_templates_7_list_section_1_list_3_copy','Automation of the employee and customer experience saves money and makes money'),(155590,4448,'_flexible_templates_7_list_section_1_list_3_copy','field_62bb2a0462eb9'),(155591,4448,'flexible_templates_7_list_section_1_list','4'),(155592,4448,'_flexible_templates_7_list_section_1_list','field_62bb29bd62eb8'),(155593,4448,'flexible_templates_7_list_section_2_list_0_copy','Constant proactive communication. Adjusting project milestones and communicating the outcomes'),(155594,4448,'_flexible_templates_7_list_section_2_list_0_copy','field_62bb2a0462eb9'),(155595,4448,'flexible_templates_7_list_section_2_list_1_copy','Increase profit and capture more market share in the API Economy Translucent connects the customer workflow of your business and your third parties for seamless automated client experiences. Our client GTL has seen year over year growth though out the current market conditions'),(155596,4448,'_flexible_templates_7_list_section_2_list_1_copy','field_62bb2a0462eb9'),(155597,4448,'flexible_templates_7_list_section_2_list','2'),(155598,4448,'_flexible_templates_7_list_section_2_list','field_62bb29bd62eb8'),(155599,4448,'flexible_templates_7_list_section','3'),(155600,4448,'_flexible_templates_7_list_section','field_62bb29b362eb7'),(155601,4448,'flexible_templates_8_copy','Translucent cloud native data driven application development.
It’s how your client’s do business!'),(155602,4448,'_flexible_templates_8_copy','field_62bb2a7262ebb_field_6254fdc0efa29'),(155603,4448,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:11:\"Let\'s talk!\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(155604,4448,'_flexible_templates_8_cta','field_62bb2a8962ebc_field_62551b3e101c4'),(155605,4448,'flexible_templates_0_mob_image','4320'),(155606,4448,'_flexible_templates_0_mob_image','field_62bc5c91b8f13_field_6254fdcbefa2b'),(155607,4448,'flexible_templates_3_mob_image','4312'),(155608,4448,'_flexible_templates_3_mob_image','field_62bc5fba29a08_field_6254fdcbefa2b'),(155609,4448,'flexible_templates_6_mob_image',''),(155610,4448,'_flexible_templates_6_mob_image','field_62bc5fba29a08_field_6254fdcbefa2b'),(155611,4448,'_pinterest_shares','0'),(155612,4448,'_total_shares','0'),(155613,4448,'swp_cache_timestamp','460424'),(155614,4448,'_post_revision_of','4242'),(155615,4242,'_post_original','1'),(155711,4456,'_edit_lock','1657562009:4'),(155712,4456,'_edit_last','4'),(155713,4456,'_wp_page_template','default'),(155714,4456,'hefo_before','0'),(155715,4456,'hefo_after','0'),(155716,4456,'_yoast_wpseo_focuskeywords',''),(155717,4456,'_yoast_wpseo_keywordsynonyms',''),(155718,4456,'_yoast_wpseo_estimated-reading-time-minutes',''),(155719,4456,'_pinterest_shares','0'),(155720,4456,'_total_shares','0'),(155721,4456,'_post_original','1'),(155766,4462,'_edit_lock','1657562148:4'),(155767,4462,'_edit_last','4'),(155768,4462,'_wp_page_template','default'),(155769,4462,'hefo_before','0'),(155770,4462,'hefo_after','0'),(155771,4462,'_yoast_wpseo_focuskeywords',''),(155772,4462,'_yoast_wpseo_keywordsynonyms',''),(155773,4462,'_yoast_wpseo_estimated-reading-time-minutes',''),(155774,4462,'_pinterest_shares','0'),(155775,4462,'_total_shares','0'),(155776,4462,'_post_original','1'),(155777,4462,'_post_revision_of','4449'),(155781,4463,'_edit_lock','1657562153:4'),(155782,4463,'_edit_last','4'),(155783,4463,'_wp_page_template','default'),(155784,4463,'hefo_before','0'),(155785,4463,'hefo_after','0'),(155786,4463,'_yoast_wpseo_focuskeywords',''),(155787,4463,'_yoast_wpseo_keywordsynonyms',''),(155788,4463,'_yoast_wpseo_estimated-reading-time-minutes','1'),(155789,4463,'_pinterest_shares','0'),(155790,4463,'_total_shares','0'),(155791,4463,'_yoast_wpseo_content_score','90'),(155792,4449,'_edit_lock','1657562363:4'),(155793,4449,'_edit_last','4'),(155794,4449,'_wp_page_template','default'),(155795,4449,'hefo_before','0'),(155796,4449,'hefo_after','0'),(155797,4449,'_yoast_wpseo_focuskeywords',''),(155798,4449,'_yoast_wpseo_keywordsynonyms',''),(155799,4449,'_yoast_wpseo_estimated-reading-time-minutes','1'),(155802,4449,'_yoast_wpseo_content_score','90'),(155869,3740,'_pinterest_shares','0'),(155870,3740,'_total_shares','0'),(155872,4467,'_pinterest_shares','0'),(155873,4467,'_total_shares','0'),(155875,4468,'_pinterest_shares','0'),(155876,4468,'_total_shares','0'),(155878,4469,'_pinterest_shares','0'),(155879,4469,'_total_shares','0'),(155881,4470,'_pinterest_shares','0'),(155882,4470,'_total_shares','0'),(155917,4471,'_pinterest_shares','0'),(155918,4471,'_total_shares','0'),(155920,4472,'_pinterest_shares','0'),(155921,4472,'_total_shares','0'),(155923,4481,'_pinterest_shares','0'),(155924,4481,'_total_shares','0'),(155926,4482,'_pinterest_shares','0'),(155927,4482,'_total_shares','0'),(155956,4446,'flexible_templates_0_heading','Let\'s talk!'),(155957,4446,'_flexible_templates_0_heading','field_62d180e40fdfa'),(155958,4446,'flexible_templates_0_sub_heading','Get in touch'),(155959,4446,'_flexible_templates_0_sub_heading','field_62d180e90fdfb'),(155960,4446,'flexible_templates_0_image','4496'),(155961,4446,'_flexible_templates_0_image','field_62d180f20fdfc'),(155962,4446,'flexible_templates_1_message_heading','Send us a Message'),(155963,4446,'_flexible_templates_1_message_heading','field_62d1814b0fdff'),(155964,4446,'flexible_templates_1_consultant_heading','Schedule a Consultation'),(155965,4446,'_flexible_templates_1_consultant_heading','field_62d1815d0fe00'),(155966,4446,'flexible_templates_1_form_shortcode','[contact-form-7 id=\"8\" title=\"DEV SERVER - TC Contact Page Form\"]'),(155967,4446,'_flexible_templates_1_form_shortcode','field_62d181750fe01'),(155968,4446,'flexible_templates_1_main_heading','Contact Info'),(155969,4446,'_flexible_templates_1_main_heading','field_62d181990fe03'),(155970,4446,'flexible_templates_1_contact_number','1-888-828-0144'),(155971,4446,'_flexible_templates_1_contact_number','field_62d181be0fe04'),(155972,4446,'flexible_templates_1_contact_number_link','(888) 828-0144'),(155973,4446,'_flexible_templates_1_contact_number_link','field_62d184e00fe07'),(155974,4446,'flexible_templates_1_address','18 King Street East, Suite 1400 - Toronto, Ontario - M5C 1C4 Get Directions'),(155975,4446,'_flexible_templates_1_address','field_62d181c90fe05'),(155976,4446,'flexible_templates_1_email_id','results@translucentcomputing.com'),(155977,4446,'_flexible_templates_1_email_id','field_62d181e90fe06'),(155978,4446,'flexible_templates','a:2:{i:0;s:14:\"contact_banner\";i:1;s:19:\"contact_main_layout\";}'),(155979,4446,'_flexible_templates','field_6254f4d84ef9b'),(155980,4483,'flexible_templates_0_heading','Let\'s talk!'),(155981,4483,'_flexible_templates_0_heading','field_62d180e40fdfa'),(155982,4483,'flexible_templates_0_sub_heading','Any question? Wanna talk? Just write us a message!'),(155983,4483,'_flexible_templates_0_sub_heading','field_62d180e90fdfb'),(155984,4483,'flexible_templates_0_image',''),(155985,4483,'_flexible_templates_0_image','field_62d180f20fdfc'),(155986,4483,'flexible_templates_1_message_heading','Send us a Message'),(155987,4483,'_flexible_templates_1_message_heading','field_62d1814b0fdff'),(155988,4483,'flexible_templates_1_consultant_heading','Schedule a Consultation'),(155989,4483,'_flexible_templates_1_consultant_heading','field_62d1815d0fe00'),(155990,4483,'flexible_templates_1_form_shortcode',''),(155991,4483,'_flexible_templates_1_form_shortcode','field_62d181750fe01'),(155992,4483,'flexible_templates_1_main_heading',''),(155993,4483,'_flexible_templates_1_main_heading','field_62d181990fe03'),(155994,4483,'flexible_templates_1_contact_number',''),(155995,4483,'_flexible_templates_1_contact_number','field_62d181be0fe04'),(155996,4483,'flexible_templates_1_contact_number_link',''),(155997,4483,'_flexible_templates_1_contact_number_link','field_62d184e00fe07'),(155998,4483,'flexible_templates_1_address',''),(155999,4483,'_flexible_templates_1_address','field_62d181c90fe05'),(156000,4483,'flexible_templates_1_email_id',''),(156001,4483,'_flexible_templates_1_email_id','field_62d181e90fe06'),(156002,4483,'flexible_templates','a:2:{i:0;s:14:\"contact_banner\";i:1;s:19:\"contact_main_layout\";}'),(156003,4483,'_flexible_templates','field_6254f4d84ef9b'),(156004,4446,'flexible_templates_1_message_heading_mob','Send Message'),(156005,4446,'_flexible_templates_1_message_heading_mob','field_62d1877178584'),(156006,4446,'flexible_templates_1_consultant_heading_mob','Book Consultation'),(156007,4446,'_flexible_templates_1_consultant_heading_mob','field_62d1879178585'),(156008,4484,'flexible_templates_0_heading','Let\'s talk!'),(156009,4484,'_flexible_templates_0_heading','field_62d180e40fdfa'),(156010,4484,'flexible_templates_0_sub_heading','Any question? Wanna talk? Just write us a message!'),(156011,4484,'_flexible_templates_0_sub_heading','field_62d180e90fdfb'),(156012,4484,'flexible_templates_0_image',''),(156013,4484,'_flexible_templates_0_image','field_62d180f20fdfc'),(156014,4484,'flexible_templates_1_message_heading','Send us a Message'),(156015,4484,'_flexible_templates_1_message_heading','field_62d1814b0fdff'),(156016,4484,'flexible_templates_1_consultant_heading','Schedule a Consultation'),(156017,4484,'_flexible_templates_1_consultant_heading','field_62d1815d0fe00'),(156018,4484,'flexible_templates_1_form_shortcode',''),(156019,4484,'_flexible_templates_1_form_shortcode','field_62d181750fe01'),(156020,4484,'flexible_templates_1_main_heading',''),(156021,4484,'_flexible_templates_1_main_heading','field_62d181990fe03'),(156022,4484,'flexible_templates_1_contact_number',''),(156023,4484,'_flexible_templates_1_contact_number','field_62d181be0fe04'),(156024,4484,'flexible_templates_1_contact_number_link',''),(156025,4484,'_flexible_templates_1_contact_number_link','field_62d184e00fe07'),(156026,4484,'flexible_templates_1_address',''),(156027,4484,'_flexible_templates_1_address','field_62d181c90fe05'),(156028,4484,'flexible_templates_1_email_id',''),(156029,4484,'_flexible_templates_1_email_id','field_62d181e90fe06'),(156030,4484,'flexible_templates','a:2:{i:0;s:14:\"contact_banner\";i:1;s:19:\"contact_main_layout\";}'),(156031,4484,'_flexible_templates','field_6254f4d84ef9b'),(156032,4484,'flexible_templates_1_message_heading_mob','Send Message'),(156033,4484,'_flexible_templates_1_message_heading_mob','field_62d1877178584'),(156034,4484,'flexible_templates_1_consultant_heading_mob','Book Consultation'),(156035,4484,'_flexible_templates_1_consultant_heading_mob','field_62d1879178585'),(156039,4485,'flexible_templates_0_heading','Let\'s talk!'),(156040,4485,'_flexible_templates_0_heading','field_62d180e40fdfa'),(156041,4485,'flexible_templates_0_sub_heading','Any question? Wanna talk? Just write us a message!'),(156042,4485,'_flexible_templates_0_sub_heading','field_62d180e90fdfb'),(156043,4485,'flexible_templates_0_image',''),(156044,4485,'_flexible_templates_0_image','field_62d180f20fdfc'),(156045,4485,'flexible_templates_1_message_heading','Send us a Message'),(156046,4485,'_flexible_templates_1_message_heading','field_62d1814b0fdff'),(156047,4485,'flexible_templates_1_consultant_heading','Schedule a Consultation'),(156048,4485,'_flexible_templates_1_consultant_heading','field_62d1815d0fe00'),(156049,4485,'flexible_templates_1_form_shortcode',''),(156050,4485,'_flexible_templates_1_form_shortcode','field_62d181750fe01'),(156051,4485,'flexible_templates_1_main_heading','Contact Info'),(156052,4485,'_flexible_templates_1_main_heading','field_62d181990fe03'),(156053,4485,'flexible_templates_1_contact_number','1-888-828-0144'),(156054,4485,'_flexible_templates_1_contact_number','field_62d181be0fe04'),(156055,4485,'flexible_templates_1_contact_number_link','(888) 828-0144'),(156056,4485,'_flexible_templates_1_contact_number_link','field_62d184e00fe07'),(156057,4485,'flexible_templates_1_address','18 King Street East, Suite 1400 - Toronto, Ontario - M5C 1C4 Get Directions'),(156058,4485,'_flexible_templates_1_address','field_62d181c90fe05'),(156059,4485,'flexible_templates_1_email_id','results@translucentcomputing.com'),(156060,4485,'_flexible_templates_1_email_id','field_62d181e90fe06'),(156061,4485,'flexible_templates','a:2:{i:0;s:14:\"contact_banner\";i:1;s:19:\"contact_main_layout\";}'),(156062,4485,'_flexible_templates','field_6254f4d84ef9b'),(156063,4485,'flexible_templates_1_message_heading_mob','Send Message'),(156064,4485,'_flexible_templates_1_message_heading_mob','field_62d1877178584'),(156065,4485,'flexible_templates_1_consultant_heading_mob','Book Consultation'),(156066,4485,'_flexible_templates_1_consultant_heading_mob','field_62d1879178585'),(156122,4487,'flexible_templates_0_heading','Let\'s talk!'),(156123,4487,'_flexible_templates_0_heading','field_62d180e40fdfa'),(156124,4487,'flexible_templates_0_sub_heading','Any question? Wanna talk? Just write us a message!'),(156125,4487,'_flexible_templates_0_sub_heading','field_62d180e90fdfb'),(156126,4487,'flexible_templates_0_image',''),(156127,4487,'_flexible_templates_0_image','field_62d180f20fdfc'),(156128,4487,'flexible_templates_1_message_heading','Send us a Message'),(156129,4487,'_flexible_templates_1_message_heading','field_62d1814b0fdff'),(156130,4487,'flexible_templates_1_consultant_heading','Schedule a Consultation'),(156131,4487,'_flexible_templates_1_consultant_heading','field_62d1815d0fe00'),(156132,4487,'flexible_templates_1_form_shortcode','
\r\n'),(156133,4487,'_flexible_templates_1_form_shortcode','field_62d181750fe01'),(156134,4487,'flexible_templates_1_main_heading','Contact Info'),(156135,4487,'_flexible_templates_1_main_heading','field_62d181990fe03'),(156136,4487,'flexible_templates_1_contact_number','1-888-828-0144'),(156137,4487,'_flexible_templates_1_contact_number','field_62d181be0fe04'),(156138,4487,'flexible_templates_1_contact_number_link','(888) 828-0144'),(156139,4487,'_flexible_templates_1_contact_number_link','field_62d184e00fe07'),(156140,4487,'flexible_templates_1_address','18 King Street East, Suite 1400 - Toronto, Ontario - M5C 1C4 Get Directions'),(156141,4487,'_flexible_templates_1_address','field_62d181c90fe05'),(156142,4487,'flexible_templates_1_email_id','results@translucentcomputing.com'),(156143,4487,'_flexible_templates_1_email_id','field_62d181e90fe06'),(156144,4487,'flexible_templates','a:2:{i:0;s:14:\"contact_banner\";i:1;s:19:\"contact_main_layout\";}'),(156145,4487,'_flexible_templates','field_6254f4d84ef9b'),(156146,4487,'flexible_templates_1_message_heading_mob','Send Message'),(156147,4487,'_flexible_templates_1_message_heading_mob','field_62d1877178584'),(156148,4487,'flexible_templates_1_consultant_heading_mob','Book Consultation'),(156149,4487,'_flexible_templates_1_consultant_heading_mob','field_62d1879178585'),(156156,4473,'_pinterest_shares','0'),(156157,4473,'_total_shares','0'),(156159,4488,'_pinterest_shares','0'),(156160,4488,'_total_shares','0'),(156162,4489,'_pinterest_shares','0'),(156163,4489,'_total_shares','0'),(156165,4474,'_pinterest_shares','0'),(156166,4474,'_total_shares','0'),(156168,4475,'_pinterest_shares','0'),(156169,4475,'_total_shares','0'),(156171,4476,'_pinterest_shares','0'),(156172,4476,'_total_shares','0'),(156174,4477,'_pinterest_shares','0'),(156175,4477,'_total_shares','0'),(156177,4478,'_pinterest_shares','0'),(156178,4478,'_total_shares','0'),(156180,4479,'_pinterest_shares','0'),(156181,4479,'_total_shares','0'),(156186,3739,'_pinterest_shares','0'),(156187,3739,'_total_shares','0'),(156189,4446,'flexible_templates_1_calendar_main_heading','Calander'),(156190,4446,'_flexible_templates_1_calendar_main_heading','field_62d18eac83874'),(156191,4446,'flexible_templates_1_calendar_shortcode','[calendly url=\"https://calendly.com/tc-results/60\" type=\"1\" form_height=\"600\" form_width=\"700\" hide_cookie_banner=\"0\"]'),(156192,4446,'_flexible_templates_1_calendar_shortcode','field_62d18e5483873'),(156193,4490,'flexible_templates_0_heading','Let\'s talk!'),(156194,4490,'_flexible_templates_0_heading','field_62d180e40fdfa'),(156195,4490,'flexible_templates_0_sub_heading','Any question? Wanna talk? Just write us a message!'),(156196,4490,'_flexible_templates_0_sub_heading','field_62d180e90fdfb'),(156197,4490,'flexible_templates_0_image',''),(156198,4490,'_flexible_templates_0_image','field_62d180f20fdfc'),(156199,4490,'flexible_templates_1_message_heading','Send us a Message'),(156200,4490,'_flexible_templates_1_message_heading','field_62d1814b0fdff'),(156201,4490,'flexible_templates_1_consultant_heading','Schedule a Consultation'),(156202,4490,'_flexible_templates_1_consultant_heading','field_62d1815d0fe00'),(156203,4490,'flexible_templates_1_form_shortcode','
'),(156204,4490,'_flexible_templates_1_form_shortcode','field_62d181750fe01'),(156205,4490,'flexible_templates_1_main_heading','Contact Info'),(156206,4490,'_flexible_templates_1_main_heading','field_62d181990fe03'),(156207,4490,'flexible_templates_1_contact_number','1-888-828-0144'),(156208,4490,'_flexible_templates_1_contact_number','field_62d181be0fe04'),(156209,4490,'flexible_templates_1_contact_number_link','(888) 828-0144'),(156210,4490,'_flexible_templates_1_contact_number_link','field_62d184e00fe07'),(156211,4490,'flexible_templates_1_address','18 King Street East, Suite 1400 - Toronto, Ontario - M5C 1C4 Get Directions'),(156212,4490,'_flexible_templates_1_address','field_62d181c90fe05'),(156213,4490,'flexible_templates_1_email_id','results@translucentcomputing.com'),(156214,4490,'_flexible_templates_1_email_id','field_62d181e90fe06'),(156215,4490,'flexible_templates','a:2:{i:0;s:14:\"contact_banner\";i:1;s:19:\"contact_main_layout\";}'),(156216,4490,'_flexible_templates','field_6254f4d84ef9b'),(156217,4490,'flexible_templates_1_message_heading_mob','Send Message'),(156218,4490,'_flexible_templates_1_message_heading_mob','field_62d1877178584'),(156219,4490,'flexible_templates_1_consultant_heading_mob','Book Consultation'),(156220,4490,'_flexible_templates_1_consultant_heading_mob','field_62d1879178585'),(156221,4490,'flexible_templates_1_calendar_main_heading','Calander'),(156222,4490,'_flexible_templates_1_calendar_main_heading','field_62d18eac83874'),(156223,4490,'flexible_templates_1_calendar_shortcode',''),(156224,4490,'_flexible_templates_1_calendar_shortcode','field_62d18e5483873'),(156231,4491,'flexible_templates_0_heading','Let\'s talk!'),(156232,4491,'_flexible_templates_0_heading','field_62d180e40fdfa'),(156233,4491,'flexible_templates_0_sub_heading','Any question? Wanna talk? Just write us a message!'),(156234,4491,'_flexible_templates_0_sub_heading','field_62d180e90fdfb'),(156235,4491,'flexible_templates_0_image',''),(156236,4491,'_flexible_templates_0_image','field_62d180f20fdfc'),(156237,4491,'flexible_templates_1_message_heading','Send us a Message'),(156238,4491,'_flexible_templates_1_message_heading','field_62d1814b0fdff'),(156239,4491,'flexible_templates_1_consultant_heading','Schedule a Consultation'),(156240,4491,'_flexible_templates_1_consultant_heading','field_62d1815d0fe00'),(156241,4491,'flexible_templates_1_form_shortcode','
'),(156242,4491,'_flexible_templates_1_form_shortcode','field_62d181750fe01'),(156243,4491,'flexible_templates_1_main_heading','Contact Info'),(156244,4491,'_flexible_templates_1_main_heading','field_62d181990fe03'),(156245,4491,'flexible_templates_1_contact_number','1-888-828-0144'),(156246,4491,'_flexible_templates_1_contact_number','field_62d181be0fe04'),(156247,4491,'flexible_templates_1_contact_number_link','(888) 828-0144'),(156248,4491,'_flexible_templates_1_contact_number_link','field_62d184e00fe07'),(156249,4491,'flexible_templates_1_address','18 King Street East, Suite 1400 - Toronto, Ontario - M5C 1C4 Get Directions'),(156250,4491,'_flexible_templates_1_address','field_62d181c90fe05'),(156251,4491,'flexible_templates_1_email_id','results@translucentcomputing.com'),(156252,4491,'_flexible_templates_1_email_id','field_62d181e90fe06'),(156253,4491,'flexible_templates','a:2:{i:0;s:14:\"contact_banner\";i:1;s:19:\"contact_main_layout\";}'),(156254,4491,'_flexible_templates','field_6254f4d84ef9b'),(156255,4491,'flexible_templates_1_message_heading_mob','Send Message'),(156256,4491,'_flexible_templates_1_message_heading_mob','field_62d1877178584'),(156257,4491,'flexible_templates_1_consultant_heading_mob','Book Consultation'),(156258,4491,'_flexible_templates_1_consultant_heading_mob','field_62d1879178585'),(156259,4491,'flexible_templates_1_calendar_main_heading','Calander'),(156260,4491,'_flexible_templates_1_calendar_main_heading','field_62d18eac83874'),(156261,4491,'flexible_templates_1_calendar_shortcode','
'),(156262,4491,'_flexible_templates_1_calendar_shortcode','field_62d18e5483873'),(156269,4492,'flexible_templates_0_heading','Let\'s talk!'),(156270,4492,'_flexible_templates_0_heading','field_62d180e40fdfa'),(156271,4492,'flexible_templates_0_sub_heading','Any question? Wanna talk? Just write us a message!'),(156272,4492,'_flexible_templates_0_sub_heading','field_62d180e90fdfb'),(156273,4492,'flexible_templates_0_image',''),(156274,4492,'_flexible_templates_0_image','field_62d180f20fdfc'),(156275,4492,'flexible_templates_1_message_heading','Send us a Message'),(156276,4492,'_flexible_templates_1_message_heading','field_62d1814b0fdff'),(156277,4492,'flexible_templates_1_consultant_heading','Schedule a Consultation'),(156278,4492,'_flexible_templates_1_consultant_heading','field_62d1815d0fe00'),(156279,4492,'flexible_templates_1_form_shortcode','
'),(156280,4492,'_flexible_templates_1_form_shortcode','field_62d181750fe01'),(156281,4492,'flexible_templates_1_main_heading','Contact Info'),(156282,4492,'_flexible_templates_1_main_heading','field_62d181990fe03'),(156283,4492,'flexible_templates_1_contact_number','1-888-828-0144'),(156284,4492,'_flexible_templates_1_contact_number','field_62d181be0fe04'),(156285,4492,'flexible_templates_1_contact_number_link','(888) 828-0144'),(156286,4492,'_flexible_templates_1_contact_number_link','field_62d184e00fe07'),(156287,4492,'flexible_templates_1_address','18 King Street East, Suite 1400 - Toronto, Ontario - M5C 1C4 Get Directions'),(156288,4492,'_flexible_templates_1_address','field_62d181c90fe05'),(156289,4492,'flexible_templates_1_email_id','results@translucentcomputing.com'),(156290,4492,'_flexible_templates_1_email_id','field_62d181e90fe06'),(156291,4492,'flexible_templates','a:2:{i:0;s:14:\"contact_banner\";i:1;s:19:\"contact_main_layout\";}'),(156292,4492,'_flexible_templates','field_6254f4d84ef9b'),(156293,4492,'flexible_templates_1_message_heading_mob','Send Message'),(156294,4492,'_flexible_templates_1_message_heading_mob','field_62d1877178584'),(156295,4492,'flexible_templates_1_consultant_heading_mob','Book Consultation'),(156296,4492,'_flexible_templates_1_consultant_heading_mob','field_62d1879178585'),(156297,4492,'flexible_templates_1_calendar_main_heading','Calander'),(156298,4492,'_flexible_templates_1_calendar_main_heading','field_62d18eac83874'),(156299,4492,'flexible_templates_1_calendar_shortcode','
\r\n'),(156300,4492,'_flexible_templates_1_calendar_shortcode','field_62d18e5483873'),(156304,4493,'flexible_templates_0_heading','Let\'s talk!'),(156305,4493,'_flexible_templates_0_heading','field_62d180e40fdfa'),(156306,4493,'flexible_templates_0_sub_heading','Any question? Wanna talk? Just write us a message!'),(156307,4493,'_flexible_templates_0_sub_heading','field_62d180e90fdfb'),(156308,4493,'flexible_templates_0_image',''),(156309,4493,'_flexible_templates_0_image','field_62d180f20fdfc'),(156310,4493,'flexible_templates_1_message_heading','Send us a Message'),(156311,4493,'_flexible_templates_1_message_heading','field_62d1814b0fdff'),(156312,4493,'flexible_templates_1_consultant_heading','Schedule a Consultation'),(156313,4493,'_flexible_templates_1_consultant_heading','field_62d1815d0fe00'),(156314,4493,'flexible_templates_1_form_shortcode','[contact-form-7 id=\"2555\" title=\"DEV SERVER - Landing Page Bottom Contact Form\"]'),(156315,4493,'_flexible_templates_1_form_shortcode','field_62d181750fe01'),(156316,4493,'flexible_templates_1_main_heading','Contact Info'),(156317,4493,'_flexible_templates_1_main_heading','field_62d181990fe03'),(156318,4493,'flexible_templates_1_contact_number','1-888-828-0144'),(156319,4493,'_flexible_templates_1_contact_number','field_62d181be0fe04'),(156320,4493,'flexible_templates_1_contact_number_link','(888) 828-0144'),(156321,4493,'_flexible_templates_1_contact_number_link','field_62d184e00fe07'),(156322,4493,'flexible_templates_1_address','18 King Street East, Suite 1400 - Toronto, Ontario - M5C 1C4 Get Directions'),(156323,4493,'_flexible_templates_1_address','field_62d181c90fe05'),(156324,4493,'flexible_templates_1_email_id','results@translucentcomputing.com'),(156325,4493,'_flexible_templates_1_email_id','field_62d181e90fe06'),(156326,4493,'flexible_templates','a:2:{i:0;s:14:\"contact_banner\";i:1;s:19:\"contact_main_layout\";}'),(156327,4493,'_flexible_templates','field_6254f4d84ef9b'),(156328,4493,'flexible_templates_1_message_heading_mob','Send Message'),(156329,4493,'_flexible_templates_1_message_heading_mob','field_62d1877178584'),(156330,4493,'flexible_templates_1_consultant_heading_mob','Book Consultation'),(156331,4493,'_flexible_templates_1_consultant_heading_mob','field_62d1879178585'),(156332,4493,'flexible_templates_1_calendar_main_heading','Calander'),(156333,4493,'_flexible_templates_1_calendar_main_heading','field_62d18eac83874'),(156334,4493,'flexible_templates_1_calendar_shortcode','
\r\n'),(156335,4493,'_flexible_templates_1_calendar_shortcode','field_62d18e5483873'),(156339,4494,'flexible_templates_0_heading','Let\'s talk!'),(156340,4494,'_flexible_templates_0_heading','field_62d180e40fdfa'),(156341,4494,'flexible_templates_0_sub_heading','Any question? Wanna talk? Just write us a message!'),(156342,4494,'_flexible_templates_0_sub_heading','field_62d180e90fdfb'),(156343,4494,'flexible_templates_0_image',''),(156344,4494,'_flexible_templates_0_image','field_62d180f20fdfc'),(156345,4494,'flexible_templates_1_message_heading','Send us a Message'),(156346,4494,'_flexible_templates_1_message_heading','field_62d1814b0fdff'),(156347,4494,'flexible_templates_1_consultant_heading','Schedule a Consultation'),(156348,4494,'_flexible_templates_1_consultant_heading','field_62d1815d0fe00'),(156349,4494,'flexible_templates_1_form_shortcode','[contact-form-7 id=\"3586\" title=\"DEV SERVER - Main Website Bottom Contact Form v2\"]'),(156350,4494,'_flexible_templates_1_form_shortcode','field_62d181750fe01'),(156351,4494,'flexible_templates_1_main_heading','Contact Info'),(156352,4494,'_flexible_templates_1_main_heading','field_62d181990fe03'),(156353,4494,'flexible_templates_1_contact_number','1-888-828-0144'),(156354,4494,'_flexible_templates_1_contact_number','field_62d181be0fe04'),(156355,4494,'flexible_templates_1_contact_number_link','(888) 828-0144'),(156356,4494,'_flexible_templates_1_contact_number_link','field_62d184e00fe07'),(156357,4494,'flexible_templates_1_address','18 King Street East, Suite 1400 - Toronto, Ontario - M5C 1C4 Get Directions'),(156358,4494,'_flexible_templates_1_address','field_62d181c90fe05'),(156359,4494,'flexible_templates_1_email_id','results@translucentcomputing.com'),(156360,4494,'_flexible_templates_1_email_id','field_62d181e90fe06'),(156361,4494,'flexible_templates','a:2:{i:0;s:14:\"contact_banner\";i:1;s:19:\"contact_main_layout\";}'),(156362,4494,'_flexible_templates','field_6254f4d84ef9b'),(156363,4494,'flexible_templates_1_message_heading_mob','Send Message'),(156364,4494,'_flexible_templates_1_message_heading_mob','field_62d1877178584'),(156365,4494,'flexible_templates_1_consultant_heading_mob','Book Consultation'),(156366,4494,'_flexible_templates_1_consultant_heading_mob','field_62d1879178585'),(156367,4494,'flexible_templates_1_calendar_main_heading','Calander'),(156368,4494,'_flexible_templates_1_calendar_main_heading','field_62d18eac83874'),(156369,4494,'flexible_templates_1_calendar_shortcode','
\r\n'),(156370,4494,'_flexible_templates_1_calendar_shortcode','field_62d18e5483873'),(156377,4495,'flexible_templates_0_heading','Let\'s talk!'),(156378,4495,'_flexible_templates_0_heading','field_62d180e40fdfa'),(156379,4495,'flexible_templates_0_sub_heading','Any question? Wanna talk? Just write us a message!'),(156380,4495,'_flexible_templates_0_sub_heading','field_62d180e90fdfb'),(156381,4495,'flexible_templates_0_image',''),(156382,4495,'_flexible_templates_0_image','field_62d180f20fdfc'),(156383,4495,'flexible_templates_1_message_heading','Send us a Message'),(156384,4495,'_flexible_templates_1_message_heading','field_62d1814b0fdff'),(156385,4495,'flexible_templates_1_consultant_heading','Schedule a Consultation'),(156386,4495,'_flexible_templates_1_consultant_heading','field_62d1815d0fe00'),(156387,4495,'flexible_templates_1_form_shortcode','[contact-form-7 id=\"8\" title=\"DEV SERVER - TC Contact Page Form\"]'),(156388,4495,'_flexible_templates_1_form_shortcode','field_62d181750fe01'),(156389,4495,'flexible_templates_1_main_heading','Contact Info'),(156390,4495,'_flexible_templates_1_main_heading','field_62d181990fe03'),(156391,4495,'flexible_templates_1_contact_number','1-888-828-0144'),(156392,4495,'_flexible_templates_1_contact_number','field_62d181be0fe04'),(156393,4495,'flexible_templates_1_contact_number_link','(888) 828-0144'),(156394,4495,'_flexible_templates_1_contact_number_link','field_62d184e00fe07'),(156395,4495,'flexible_templates_1_address','18 King Street East, Suite 1400 - Toronto, Ontario - M5C 1C4 Get Directions'),(156396,4495,'_flexible_templates_1_address','field_62d181c90fe05'),(156397,4495,'flexible_templates_1_email_id','results@translucentcomputing.com'),(156398,4495,'_flexible_templates_1_email_id','field_62d181e90fe06'),(156399,4495,'flexible_templates','a:2:{i:0;s:14:\"contact_banner\";i:1;s:19:\"contact_main_layout\";}'),(156400,4495,'_flexible_templates','field_6254f4d84ef9b'),(156401,4495,'flexible_templates_1_message_heading_mob','Send Message'),(156402,4495,'_flexible_templates_1_message_heading_mob','field_62d1877178584'),(156403,4495,'flexible_templates_1_consultant_heading_mob','Book Consultation'),(156404,4495,'_flexible_templates_1_consultant_heading_mob','field_62d1879178585'),(156405,4495,'flexible_templates_1_calendar_main_heading','Calander'),(156406,4495,'_flexible_templates_1_calendar_main_heading','field_62d18eac83874'),(156407,4495,'flexible_templates_1_calendar_shortcode','
\r\n'),(156408,4495,'_flexible_templates_1_calendar_shortcode','field_62d18e5483873'),(156412,4496,'_wp_attached_file','2022/07/shutterstock_1874749972.png'),(156413,4496,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:318;s:4:\"file\";s:35:\"2022/07/shutterstock_1874749972.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"shutterstock_1874749972-300x50.png\";s:5:\"width\";i:300;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"shutterstock_1874749972-1024x170.png\";s:5:\"width\";i:1024;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"shutterstock_1874749972-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:\"shutterstock_1874749972-768x127.png\";s:5:\"width\";i:768;s:6:\"height\";i:127;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"shutterstock_1874749972-1536x254.png\";s:5:\"width\";i:1536;s:6:\"height\";i:254;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:35:\"shutterstock_1874749972-500x318.png\";s:5:\"width\";i:500;s:6:\"height\";i:318;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:{}}}'),(156414,4496,'_imagify_optimization_level','0'),(156415,4496,'_imagify_status','error'),(156416,4496,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(156417,4497,'flexible_templates_0_heading','Let\'s talk!'),(156418,4497,'_flexible_templates_0_heading','field_62d180e40fdfa'),(156419,4497,'flexible_templates_0_sub_heading','Any question? Wanna talk? Just write us a message!'),(156420,4497,'_flexible_templates_0_sub_heading','field_62d180e90fdfb'),(156421,4497,'flexible_templates_0_image','4496'),(156422,4497,'_flexible_templates_0_image','field_62d180f20fdfc'),(156423,4497,'flexible_templates_1_message_heading','Send us a Message'),(156424,4497,'_flexible_templates_1_message_heading','field_62d1814b0fdff'),(156425,4497,'flexible_templates_1_consultant_heading','Schedule a Consultation'),(156426,4497,'_flexible_templates_1_consultant_heading','field_62d1815d0fe00'),(156427,4497,'flexible_templates_1_form_shortcode','[contact-form-7 id=\"8\" title=\"DEV SERVER - TC Contact Page Form\"]'),(156428,4497,'_flexible_templates_1_form_shortcode','field_62d181750fe01'),(156429,4497,'flexible_templates_1_main_heading','Contact Info'),(156430,4497,'_flexible_templates_1_main_heading','field_62d181990fe03'),(156431,4497,'flexible_templates_1_contact_number','1-888-828-0144'),(156432,4497,'_flexible_templates_1_contact_number','field_62d181be0fe04'),(156433,4497,'flexible_templates_1_contact_number_link','(888) 828-0144'),(156434,4497,'_flexible_templates_1_contact_number_link','field_62d184e00fe07'),(156435,4497,'flexible_templates_1_address','18 King Street East, Suite 1400 - Toronto, Ontario - M5C 1C4 Get Directions'),(156436,4497,'_flexible_templates_1_address','field_62d181c90fe05'),(156437,4497,'flexible_templates_1_email_id','results@translucentcomputing.com'),(156438,4497,'_flexible_templates_1_email_id','field_62d181e90fe06'),(156439,4497,'flexible_templates','a:2:{i:0;s:14:\"contact_banner\";i:1;s:19:\"contact_main_layout\";}'),(156440,4497,'_flexible_templates','field_6254f4d84ef9b'),(156441,4497,'flexible_templates_1_message_heading_mob','Send Message'),(156442,4497,'_flexible_templates_1_message_heading_mob','field_62d1877178584'),(156443,4497,'flexible_templates_1_consultant_heading_mob','Book Consultation'),(156444,4497,'_flexible_templates_1_consultant_heading_mob','field_62d1879178585'),(156445,4497,'flexible_templates_1_calendar_main_heading','Calander'),(156446,4497,'_flexible_templates_1_calendar_main_heading','field_62d18eac83874'),(156447,4497,'flexible_templates_1_calendar_shortcode','
\r\n'),(156448,4497,'_flexible_templates_1_calendar_shortcode','field_62d18e5483873'),(156598,4500,'flexible_templates_0_mobile_image','4365'),(156599,4500,'_flexible_templates_0_mobile_image','field_62c409bd624b6'),(156600,4500,'flexible_templates_0_image','4366'),(156601,4500,'_flexible_templates_0_image','field_62c409cf624b7'),(156602,4500,'flexible_templates_0_heading','CLOUD NATIVE SOLUTIONS'),(156603,4500,'_flexible_templates_0_heading','field_62c409db624b8'),(156604,4500,'flexible_templates_0_sub_heading','Cloud Native DevOps Consulting'),(156605,4500,'_flexible_templates_0_sub_heading','field_62c409e8624b9'),(156606,4500,'flexible_templates','a:9:{i:0;s:28:\"cloud_native_solution_banner\";i:1;s:36:\"cloud_native_solution_drive_business\";i:2;s:29:\"cloud_native_solution_journey\";i:3;s:29:\"cloud_native_solution_service\";i:4;s:27:\"cloud_native_solution_build\";i:5;s:42:\"cloud_native_solution_book_consulation_now\";i:6;s:33:\"cloud_native_solution_data_driven\";i:7;s:36:\"cloud_native_solution_infrastructure\";i:8;s:17:\"lets_talk_section\";}'),(156607,4500,'_flexible_templates','field_6254f4d84ef9b'),(156608,4500,'flexible_templates_1_left_arrow_show_hide','1'),(156609,4500,'_flexible_templates_1_left_arrow_show_hide','field_62c40bccf22ef'),(156610,4500,'flexible_templates_1_label_text','COST-EFFECTIVE AUTOMATION'),(156611,4500,'_flexible_templates_1_label_text','field_62c40b9bf22ee'),(156612,4500,'flexible_templates_1_heading','Focused On What Drives Business Value'),(156613,4500,'_flexible_templates_1_heading','field_62c40be6f22f0'),(156614,4500,'flexible_templates_1_content','Our solution increases your team collaboration and system automation. Our continuous technology improvements drive business value and cross-collaboration between teams.'),(156615,4500,'_flexible_templates_1_content','field_62c40c05f22f1'),(156616,4500,'flexible_templates_1_grey_box_content','We help improve the experience of your clients, customers, staff, and third parties without the need for the added cost of people resources.'),(156617,4500,'_flexible_templates_1_grey_box_content','field_62c40c1ef22f2'),(156618,4500,'flexible_templates_1_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(156619,4500,'_flexible_templates_1_button','field_62c40c38f22f3'),(156620,4500,'flexible_templates_1_image','4405'),(156621,4500,'_flexible_templates_1_image','field_62c40c4cf22f4'),(156622,4500,'flexible_templates_1_review_content','Translucent’s understanding of the cloud native DevOps space and expertise in Kubernetes through to data driven applications has proven extremely valuable… Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security…has been invaluable. I would use them again if I could. In fact, I would use their team for everything if I could!'),(156623,4500,'_flexible_templates_1_review_content','field_62c40c97f22f5'),(156624,4500,'flexible_templates_1_review_title','Rhys Parry - CTO - Volentix'),(156625,4500,'_flexible_templates_1_review_title','field_62c40cb4f22f6'),(156626,4500,'flexible_templates_2_journey_logo_map_image','4406'),(156627,4500,'_flexible_templates_2_journey_logo_map_image','field_62c40d24f22f8'),(156628,4500,'flexible_templates_2_heading','Your DevOps Journey Roadmap'),(156629,4500,'_flexible_templates_2_heading','field_62c40d46f22f9'),(156630,4500,'flexible_templates_2_scroll_image','4407'),(156631,4500,'_flexible_templates_2_scroll_image','field_62c40d60f22fa'),(156632,4500,'flexible_templates_3_heading','Services'),(156633,4500,'_flexible_templates_3_heading','field_62c40db8f22fc'),(156634,4500,'flexible_templates_3_application_column_heading','Develop and release better software faster using Kubernetes and DevOps practices'),(156635,4500,'_flexible_templates_3_application_column_heading','field_62c40e07f22fd'),(156636,4500,'flexible_templates_3_application_text_repeater','7'),(156637,4500,'_flexible_templates_3_application_text_repeater','field_62c40e34f22fe'),(156638,4500,'flexible_templates_3_application_sub_text','Deliver DevOps culture and best practices to clients'),(156639,4500,'_flexible_templates_3_application_sub_text','field_62c40e52f2300'),(156640,4500,'flexible_templates_3_application_column_second_slide_repeater','3'),(156641,4500,'_flexible_templates_3_application_column_second_slide_repeater','field_62c40ee2f2301'),(156642,4500,'flexible_templates_3_reliability_engineers_bottom','4408'),(156643,4500,'_flexible_templates_3_reliability_engineers_bottom','field_62c40f50f2304'),(156644,4500,'flexible_templates_3_reliability_engineers_content','Translucent’s Site Reliability Engineers (SRE) experts in DevOps are Kubernetes Certified Providers.'),(156645,4500,'_flexible_templates_3_reliability_engineers_content','field_62c40f64f2305'),(156646,4500,'flexible_templates_3_text_box','\"71% of Fortune 100 companies use Kubernetes.'),(156647,4500,'_flexible_templates_3_text_box','field_62c40f79f2306'),(156648,4500,'flexible_templates_3_right_short_text','(source: CNCF.IO)'),(156649,4500,'_flexible_templates_3_right_short_text','field_62c40f93f2307'),(156650,4500,'flexible_templates_4_image','4409'),(156651,4500,'_flexible_templates_4_image','field_62c41066f230c'),(156652,4500,'flexible_templates_4_arrow_show_hide_build','1'),(156653,4500,'_flexible_templates_4_arrow_show_hide_build','field_62c41086f230e'),(156654,4500,'flexible_templates_4_label_text','BUILD - REBUILD - REPLATFORM'),(156655,4500,'_flexible_templates_4_label_text','field_62c41075f230d'),(156656,4500,'flexible_templates_4_heading','Is your company ready to compete?'),(156657,4500,'_flexible_templates_4_heading','field_62c410a3f230f'),(156658,4500,'flexible_templates_4_content','No matter how simple or complex, Translucent’s cloud native data driven Devops solutions can be tailored to your exact needs to\r\nsave your company money, keep clients happier, and close new customers.'),(156659,4500,'_flexible_templates_4_content','field_62c410bef2310'),(156660,4500,'flexible_templates_5_button','a:3:{s:5:\"title\";s:22:\"Book a consultaion now\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(156661,4500,'_flexible_templates_5_button','field_62c4110df2312'),(156662,4500,'flexible_templates_5_book_now_text','6'),(156663,4500,'_flexible_templates_5_book_now_text','field_62c4112df2313'),(156664,4500,'flexible_templates_3_application_text_repeater_0_text','- 100% GitOps Based'),(156665,4500,'_flexible_templates_3_application_text_repeater_0_text','field_62c40e41f22ff'),(156666,4500,'flexible_templates_3_application_text_repeater_1_text','- Configuration as Code'),(156667,4500,'_flexible_templates_3_application_text_repeater_1_text','field_62c40e41f22ff'),(156668,4500,'flexible_templates_3_application_text_repeater_2_text','- Infrastructure as Code (IaC)'),(156669,4500,'_flexible_templates_3_application_text_repeater_2_text','field_62c40e41f22ff'),(156670,4500,'flexible_templates_3_application_text_repeater_3_text','- Declarative Pipelines'),(156671,4500,'_flexible_templates_3_application_text_repeater_3_text','field_62c40e41f22ff'),(156672,4500,'flexible_templates_3_application_text_repeater_4_text','- Monitoring | Observability'),(156673,4500,'_flexible_templates_3_application_text_repeater_4_text','field_62c40e41f22ff'),(156674,4500,'flexible_templates_3_application_text_repeater_5_text','- Cloud-Agnostic (AWS | GCP | Azure)'),(156675,4500,'_flexible_templates_3_application_text_repeater_5_text','field_62c40e41f22ff'),(156676,4500,'flexible_templates_3_application_text_repeater_6_text','- High Dev-Prod Parity'),(156677,4500,'_flexible_templates_3_application_text_repeater_6_text','field_62c40e41f22ff'),(156678,4500,'flexible_templates_3_application_column_second_slide_repeater_0_heading',''),(156679,4500,'_flexible_templates_3_application_column_second_slide_repeater_0_heading','field_62c40efaf2302'),(156680,4500,'flexible_templates_3_application_column_second_slide_repeater_0_paragraph','Managed Kubernetes Services on Hybrid and Multi-Cloud Strategy for Platform Development, using Azure, Google Cloud, AWS, VMWare and Private Cloud.'),(156681,4500,'_flexible_templates_3_application_column_second_slide_repeater_0_paragraph','field_62c40f05f2303'),(156682,4500,'flexible_templates_3_application_column_second_slide_repeater_1_heading','Deliver DevOps culture and best practices to clients'),(156683,4500,'_flexible_templates_3_application_column_second_slide_repeater_1_heading','field_62c40efaf2302'),(156684,4500,'flexible_templates_3_application_column_second_slide_repeater_1_paragraph','- Plan, migrate, manage, automate, and optimize your Kubernetes cloud infrastructure'),(156685,4500,'_flexible_templates_3_application_column_second_slide_repeater_1_paragraph','field_62c40f05f2303'),(156686,4500,'flexible_templates_3_application_column_second_slide_repeater_2_heading','Site Reliability Engineering - what can be measured can be managed'),(156687,4500,'_flexible_templates_3_application_column_second_slide_repeater_2_heading','field_62c40efaf2302'),(156688,4500,'flexible_templates_3_application_column_second_slide_repeater_2_paragraph',''),(156689,4500,'_flexible_templates_3_application_column_second_slide_repeater_2_paragraph','field_62c40f05f2303'),(156690,4500,'flexible_templates_5_book_now_text_0_text','Open for business 24/7'),(156691,4500,'_flexible_templates_5_book_now_text_0_text','field_62c4113df2314'),(156692,4500,'flexible_templates_5_book_now_text_1_text','Greater customer insights'),(156693,4500,'_flexible_templates_5_book_now_text_1_text','field_62c4113df2314'),(156694,4500,'flexible_templates_5_book_now_text_2_text','Global expansion'),(156695,4500,'_flexible_templates_5_book_now_text_2_text','field_62c4113df2314'),(156696,4500,'flexible_templates_5_book_now_text_3_text','Automated operational infrastructure'),(156697,4500,'_flexible_templates_5_book_now_text_3_text','field_62c4113df2314'),(156698,4500,'flexible_templates_5_book_now_text_4_text','Drive more revenue'),(156699,4500,'_flexible_templates_5_book_now_text_4_text','field_62c4113df2314'),(156700,4500,'flexible_templates_5_book_now_text_5_text','Automation saves money'),(156701,4500,'_flexible_templates_5_book_now_text_5_text','field_62c4113df2314'),(156702,4500,'flexible_templates_6_arrow_hide_and_show_data_driven','1'),(156703,4500,'_flexible_templates_6_arrow_hide_and_show_data_driven','field_62c41be01348d'),(156704,4500,'flexible_templates_6_label_text','COST-EFFECTIVE AUTOMATION'),(156705,4500,'_flexible_templates_6_label_text','field_62c41c061348e'),(156706,4500,'flexible_templates_6_left_text','Translucent takes the best functions in your operational workflow and wraps data-driven digital DevOps technology around them, which:'),(156707,4500,'_flexible_templates_6_left_text','field_62c41c1b1348f'),(156708,4500,'flexible_templates_6_application_col_first_0_text','Creates a better customer and internal employee experience'),(156709,4500,'_flexible_templates_6_application_col_first_0_text','field_62c41c7a13493'),(156710,4500,'flexible_templates_6_application_col_first_1_text','Automates your processes and self-healing systems'),(156711,4500,'_flexible_templates_6_application_col_first_1_text','field_62c41c7a13493'),(156712,4500,'flexible_templates_6_application_col_first_2_text','Saves you money in resources through automated processes'),(156713,4500,'_flexible_templates_6_application_col_first_2_text','field_62c41c7a13493'),(156714,4500,'flexible_templates_6_application_col_first','3'),(156715,4500,'_flexible_templates_6_application_col_first','field_62c41c6813492'),(156716,4500,'flexible_templates_6_application_col_second_0_text','Allows your business to be more effective and efficient in delivering your business value to your clients, in the current market conditions and into the future.'),(156717,4500,'_flexible_templates_6_application_col_second_0_text','field_62c41c9413495'),(156718,4500,'flexible_templates_6_application_col_second_1_text','Makes you money through a full digital transformation of your infrastructure.'),(156719,4500,'_flexible_templates_6_application_col_second_1_text','field_62c41c9413495'),(156720,4500,'flexible_templates_6_application_col_second','2'),(156721,4500,'_flexible_templates_6_application_col_second','field_62c41c8413494'),(156722,4500,'flexible_templates_6_swiper_content','This is not just about cloud native DevOps technology. It’s about… People, Business, Operations, and Results. Oh, and People! Did I say People?'),(156723,4500,'_flexible_templates_6_swiper_content','field_62c41caf13497'),(156724,4500,'flexible_templates_6_swiper_text','Bradford A. M. Sankar COO - Translucent Computing'),(156725,4500,'_flexible_templates_6_swiper_text','field_62c41ccd13498'),(156726,4500,'flexible_templates_7_mobile_image','4427'),(156727,4500,'_flexible_templates_7_mobile_image','field_62c41d81525e5'),(156728,4500,'flexible_templates_7_image','4428'),(156729,4500,'_flexible_templates_7_image','field_62c41d91525e6'),(156730,4500,'flexible_templates_7_heading','Cost-effective automation of your operations and infrastructure, with a focus on what drives business value'),(156731,4500,'_flexible_templates_7_heading','field_62c41da0525e7'),(156732,4500,'flexible_templates_8_heading','We treat your business like our own.'),(156733,4500,'_flexible_templates_8_heading','field_625565e14146d_field_6254fdb2efa27'),(156734,4500,'flexible_templates_8_cta','a:3:{s:5:\"title\";s:10:\"Lets talk!\";s:3:\"url\";s:34:\"https://translucent.local/contact/\";s:6:\"target\";s:0:\"\";}'),(156735,4500,'_flexible_templates_8_cta','field_625565fa4146e_field_62551b3e101c4'),(156736,4500,'flexible_templates_6_heading','What does Cloud-Native Data-Driven DevOps mean for your business?'),(156737,4500,'_flexible_templates_6_heading','field_62c430cf84dde'),(156849,1220,'_pinterest_shares','0'),(156850,1220,'_total_shares','0'),(156851,1220,'swp_cache_timestamp','460589'),(156858,2231,'_pinterest_shares','0'),(156859,2231,'_total_shares','0'),(156860,2231,'swp_cache_timestamp','460589'),(156867,916,'_pinterest_shares','0'),(156868,916,'_total_shares','0'),(156869,916,'swp_cache_timestamp','460589'),(156870,1555,'_pinterest_shares','0'),(156871,1555,'_total_shares','0'),(156872,1555,'swp_cache_timestamp','460589'),(156891,894,'_pinterest_shares','0'),(156892,894,'_total_shares','0'),(156893,894,'swp_cache_timestamp','460591'),(156915,1109,'_pinterest_shares','0'),(156916,1109,'_total_shares','0'),(156917,1109,'swp_cache_timestamp','460593'),(156918,1186,'_pinterest_shares','0'),(156919,1186,'_total_shares','0'),(156920,1186,'swp_cache_timestamp','460593'),(156942,887,'_pinterest_shares','0'),(156943,887,'_total_shares','0'),(156944,887,'swp_cache_timestamp','460594'),(156972,920,'_pinterest_shares','0'),(156973,920,'_total_shares','0'),(156974,920,'swp_cache_timestamp','460599'),(157195,4506,'flexible_templates_0_heading','Let\'s talk!'),(157196,4506,'_flexible_templates_0_heading','field_62d180e40fdfa'),(157197,4506,'flexible_templates_0_sub_heading','Get in touch'),(157198,4506,'_flexible_templates_0_sub_heading','field_62d180e90fdfb'),(157199,4506,'flexible_templates_0_image','4496'),(157200,4506,'_flexible_templates_0_image','field_62d180f20fdfc'),(157201,4506,'flexible_templates_1_message_heading','Send us a Message'),(157202,4506,'_flexible_templates_1_message_heading','field_62d1814b0fdff'),(157203,4506,'flexible_templates_1_consultant_heading','Schedule a Consultation'),(157204,4506,'_flexible_templates_1_consultant_heading','field_62d1815d0fe00'),(157205,4506,'flexible_templates_1_form_shortcode','[contact-form-7 id=\"8\" title=\"DEV SERVER - TC Contact Page Form\"]'),(157206,4506,'_flexible_templates_1_form_shortcode','field_62d181750fe01'),(157207,4506,'flexible_templates_1_main_heading','Contact Info'),(157208,4506,'_flexible_templates_1_main_heading','field_62d181990fe03'),(157209,4506,'flexible_templates_1_contact_number','1-888-828-0144'),(157210,4506,'_flexible_templates_1_contact_number','field_62d181be0fe04'),(157211,4506,'flexible_templates_1_contact_number_link','(888) 828-0144'),(157212,4506,'_flexible_templates_1_contact_number_link','field_62d184e00fe07'),(157213,4506,'flexible_templates_1_address','18 King Street East, Suite 1400 - Toronto, Ontario - M5C 1C4 Get Directions'),(157214,4506,'_flexible_templates_1_address','field_62d181c90fe05'),(157215,4506,'flexible_templates_1_email_id','results@translucentcomputing.com'),(157216,4506,'_flexible_templates_1_email_id','field_62d181e90fe06'),(157217,4506,'flexible_templates','a:2:{i:0;s:14:\"contact_banner\";i:1;s:19:\"contact_main_layout\";}'),(157218,4506,'_flexible_templates','field_6254f4d84ef9b'),(157219,4506,'flexible_templates_1_message_heading_mob','Send Message'),(157220,4506,'_flexible_templates_1_message_heading_mob','field_62d1877178584'),(157221,4506,'flexible_templates_1_consultant_heading_mob','Book Consultation'),(157222,4506,'_flexible_templates_1_consultant_heading_mob','field_62d1879178585'),(157223,4506,'flexible_templates_1_calendar_main_heading','Calander'),(157224,4506,'_flexible_templates_1_calendar_main_heading','field_62d18eac83874'),(157225,4506,'flexible_templates_1_calendar_shortcode','
\r\n'),(157226,4506,'_flexible_templates_1_calendar_shortcode','field_62d18e5483873'),(157331,883,'_pinterest_shares','0'),(157332,883,'_total_shares','0'),(157333,883,'swp_cache_timestamp','460921'),(157382,4242,'_pinterest_shares','0'),(157383,4242,'_total_shares','0'),(157384,4242,'swp_cache_timestamp','461048'),(157563,4513,'flexible_templates_0_heading','Let\'s talk!'),(157564,4513,'_flexible_templates_0_heading','field_62d180e40fdfa'),(157565,4513,'flexible_templates_0_sub_heading','Get in touch'),(157566,4513,'_flexible_templates_0_sub_heading','field_62d180e90fdfb'),(157567,4513,'flexible_templates_0_image','4496'),(157568,4513,'_flexible_templates_0_image','field_62d180f20fdfc'),(157569,4513,'flexible_templates_1_message_heading','Send us a Message'),(157570,4513,'_flexible_templates_1_message_heading','field_62d1814b0fdff'),(157571,4513,'flexible_templates_1_consultant_heading','Schedule a Consultation'),(157572,4513,'_flexible_templates_1_consultant_heading','field_62d1815d0fe00'),(157573,4513,'flexible_templates_1_form_shortcode','[contact-form-7 id=\"8\" title=\"DEV SERVER - TC Contact Page Form\"]'),(157574,4513,'_flexible_templates_1_form_shortcode','field_62d181750fe01'),(157575,4513,'flexible_templates_1_main_heading','Contact Info'),(157576,4513,'_flexible_templates_1_main_heading','field_62d181990fe03'),(157577,4513,'flexible_templates_1_contact_number','1-888-828-0144'),(157578,4513,'_flexible_templates_1_contact_number','field_62d181be0fe04'),(157579,4513,'flexible_templates_1_contact_number_link','(888) 828-0144'),(157580,4513,'_flexible_templates_1_contact_number_link','field_62d184e00fe07'),(157581,4513,'flexible_templates_1_address','18 King Street East, Suite 1400 - Toronto, Ontario - M5C 1C4 Get Directions'),(157582,4513,'_flexible_templates_1_address','field_62d181c90fe05'),(157583,4513,'flexible_templates_1_email_id','results@translucentcomputing.com'),(157584,4513,'_flexible_templates_1_email_id','field_62d181e90fe06'),(157585,4513,'flexible_templates','a:2:{i:0;s:14:\"contact_banner\";i:1;s:19:\"contact_main_layout\";}'),(157586,4513,'_flexible_templates','field_6254f4d84ef9b'),(157587,4513,'flexible_templates_1_message_heading_mob','Send Message'),(157588,4513,'_flexible_templates_1_message_heading_mob','field_62d1877178584'),(157589,4513,'flexible_templates_1_consultant_heading_mob','Book Consultation'),(157590,4513,'_flexible_templates_1_consultant_heading_mob','field_62d1879178585'),(157591,4513,'flexible_templates_1_calendar_main_heading','Calander'),(157592,4513,'_flexible_templates_1_calendar_main_heading','field_62d18eac83874'),(157593,4513,'flexible_templates_1_calendar_shortcode','[calendly url=\"https://calendly.com/tc-results/60\" type=\"1\"]'),(157594,4513,'_flexible_templates_1_calendar_shortcode','field_62d18e5483873'),(157598,4514,'flexible_templates_0_heading','Let\'s talk!'),(157599,4514,'_flexible_templates_0_heading','field_62d180e40fdfa'),(157600,4514,'flexible_templates_0_sub_heading','Get in touch'),(157601,4514,'_flexible_templates_0_sub_heading','field_62d180e90fdfb'),(157602,4514,'flexible_templates_0_image','4496'),(157603,4514,'_flexible_templates_0_image','field_62d180f20fdfc'),(157604,4514,'flexible_templates_1_message_heading','Send us a Message'),(157605,4514,'_flexible_templates_1_message_heading','field_62d1814b0fdff'),(157606,4514,'flexible_templates_1_consultant_heading','Schedule a Consultation'),(157607,4514,'_flexible_templates_1_consultant_heading','field_62d1815d0fe00'),(157608,4514,'flexible_templates_1_form_shortcode','[contact-form-7 id=\"8\" title=\"DEV SERVER - TC Contact Page Form\"]'),(157609,4514,'_flexible_templates_1_form_shortcode','field_62d181750fe01'),(157610,4514,'flexible_templates_1_main_heading','Contact Info'),(157611,4514,'_flexible_templates_1_main_heading','field_62d181990fe03'),(157612,4514,'flexible_templates_1_contact_number','1-888-828-0144'),(157613,4514,'_flexible_templates_1_contact_number','field_62d181be0fe04'),(157614,4514,'flexible_templates_1_contact_number_link','(888) 828-0144'),(157615,4514,'_flexible_templates_1_contact_number_link','field_62d184e00fe07'),(157616,4514,'flexible_templates_1_address','18 King Street East, Suite 1400 - Toronto, Ontario - M5C 1C4 Get Directions'),(157617,4514,'_flexible_templates_1_address','field_62d181c90fe05'),(157618,4514,'flexible_templates_1_email_id','results@translucentcomputing.com'),(157619,4514,'_flexible_templates_1_email_id','field_62d181e90fe06'),(157620,4514,'flexible_templates','a:2:{i:0;s:14:\"contact_banner\";i:1;s:19:\"contact_main_layout\";}'),(157621,4514,'_flexible_templates','field_6254f4d84ef9b'),(157622,4514,'flexible_templates_1_message_heading_mob','Send Message'),(157623,4514,'_flexible_templates_1_message_heading_mob','field_62d1877178584'),(157624,4514,'flexible_templates_1_consultant_heading_mob','Book Consultation'),(157625,4514,'_flexible_templates_1_consultant_heading_mob','field_62d1879178585'),(157626,4514,'flexible_templates_1_calendar_main_heading','Calander'),(157627,4514,'_flexible_templates_1_calendar_main_heading','field_62d18eac83874'),(157628,4514,'flexible_templates_1_calendar_shortcode','[calendly url=\"https://calendly.com/tc-results/60\" type=\"1\" form_height=\"600\" form_width=\"700\" hide_cookie_banner=\"0\"]'),(157629,4514,'_flexible_templates_1_calendar_shortcode','field_62d18e5483873'),(157687,4175,'_pinterest_shares','0'),(157688,4175,'_total_shares','0'),(157689,4175,'swp_cache_timestamp','461134'),(157711,4143,'_pinterest_shares','0'),(157712,4143,'_total_shares','0'),(157713,4143,'swp_cache_timestamp','461134'),(157776,3474,'_edit_lock','1660255352:20'),(157789,708,'_pinterest_shares','0'),(157790,708,'_total_shares','0'),(157839,903,'_pinterest_shares','0'),(157840,903,'_total_shares','0'),(157841,903,'swp_cache_timestamp','461216'),(157851,1636,'_pinterest_shares','0'),(157852,1636,'_total_shares','0'),(157853,1636,'swp_cache_timestamp','461216'),(157860,899,'_pinterest_shares','0'),(157861,899,'_total_shares','0'),(157862,899,'swp_cache_timestamp','461216'),(157863,2804,'_pinterest_shares','0'),(157864,2804,'_total_shares','0'),(157865,2804,'swp_cache_timestamp','461216'),(157869,38,'_pinterest_shares','0'),(157870,38,'_total_shares','0'),(157871,38,'swp_cache_timestamp','461216'),(157896,1405,'_pinterest_shares','0'),(157897,1405,'_total_shares','0'),(157898,1405,'swp_cache_timestamp','461216'),(157899,2107,'_pinterest_shares','0'),(157900,2107,'_total_shares','0'),(157901,2107,'swp_cache_timestamp','461216'),(157908,3652,'_pinterest_shares','0'),(157909,3652,'_total_shares','0'),(157910,3652,'swp_cache_timestamp','461216'),(157911,3666,'_pinterest_shares','0'),(157912,3666,'_total_shares','0'),(157913,3666,'swp_cache_timestamp','461216'),(157923,4160,'_pinterest_shares','0'),(157924,4160,'_total_shares','0'),(157925,4160,'swp_cache_timestamp','461216'),(157926,4180,'_pinterest_shares','0'),(157927,4180,'_total_shares','0'),(157928,4180,'swp_cache_timestamp','461216'),(157941,2009,'_pinterest_shares','0'),(157942,2009,'_total_shares','0'),(157943,2009,'swp_cache_timestamp','461216'),(157944,1628,'_pinterest_shares','0'),(157945,1628,'_total_shares','0'),(157946,1628,'swp_cache_timestamp','461216'),(157947,1324,'_pinterest_shares','0'),(157948,1324,'_total_shares','0'),(157949,1324,'swp_cache_timestamp','461216'),(157950,1231,'_pinterest_shares','0'),(157951,1231,'_total_shares','0'),(157952,1231,'swp_cache_timestamp','461216'),(157953,1144,'_pinterest_shares','0'),(157954,1144,'_total_shares','2'),(157955,1144,'swp_cache_timestamp','461216'),(157956,1000,'_pinterest_shares','0'),(157957,1000,'_total_shares','0'),(157958,1000,'swp_cache_timestamp','461216'),(157959,1004,'_pinterest_shares','0'),(157960,1004,'_total_shares','2'),(157961,1004,'swp_cache_timestamp','461216'),(157968,918,'_pinterest_shares','0'),(157969,918,'_total_shares','0'),(157970,918,'swp_cache_timestamp','461216'),(157974,1213,'_pinterest_shares','0'),(157975,1213,'_total_shares','2'),(157976,1213,'swp_cache_timestamp','461216'),(157977,3608,'_pinterest_shares','0'),(157978,3608,'_total_shares','0'),(157979,3608,'swp_cache_timestamp','461216'),(157980,901,'_pinterest_shares','0'),(157981,901,'_total_shares','0'),(157982,901,'swp_cache_timestamp','461216'),(157983,885,'_pinterest_shares','0'),(157984,885,'_total_shares','0'),(157985,885,'swp_cache_timestamp','461216'),(157986,910,'_pinterest_shares','0'),(157987,910,'_total_shares','0'),(157988,910,'swp_cache_timestamp','461216'),(157989,912,'_pinterest_shares','0'),(157990,912,'_total_shares','0'),(157991,912,'swp_cache_timestamp','461216'),(157995,907,'_pinterest_shares','0'),(157996,907,'_total_shares','0'),(157997,907,'swp_cache_timestamp','461216'),(157998,892,'_pinterest_shares','0'),(157999,892,'_total_shares','0'),(158000,892,'swp_cache_timestamp','461216'),(158004,879,'_pinterest_shares','0'),(158005,879,'_total_shares','0'),(158006,879,'swp_cache_timestamp','461216'),(158007,877,'_pinterest_shares','0'),(158008,877,'_total_shares','0'),(158009,877,'swp_cache_timestamp','461216'),(158037,4446,'_pinterest_shares','0'),(158038,4446,'_total_shares','0'),(158039,4446,'swp_cache_timestamp','461286'),(158058,1058,'_pinterest_shares','0'),(158059,1058,'_total_shares','1'),(158060,1058,'swp_cache_timestamp','461344'),(158079,4166,'_pinterest_shares','0'),(158080,4166,'_total_shares','0'),(158081,4166,'swp_cache_timestamp','461376'),(158082,2563,'_pinterest_shares','0'),(158083,2563,'_total_shares','0'),(158084,2563,'swp_cache_timestamp','461379'),(158088,871,'_pinterest_shares','0'),(158089,871,'_total_shares','0'),(158090,871,'swp_cache_timestamp','461382'),(158091,3729,'_pinterest_shares','0'),(158092,3729,'_total_shares','0'),(158093,3729,'swp_cache_timestamp','461383'),(158112,929,'_pinterest_shares','0'),(158113,929,'_total_shares','0'),(158114,929,'swp_cache_timestamp','461421'),(158115,2126,'_pinterest_shares','0'),(158116,2126,'_total_shares','0'),(158117,2126,'swp_cache_timestamp','461422'),(158118,3670,'_pinterest_shares','0'),(158119,3670,'_total_shares','0'),(158120,3670,'swp_cache_timestamp','461422'),(158121,914,'_pinterest_shares','0'),(158122,914,'_total_shares','0'),(158123,914,'swp_cache_timestamp','461423'),(158127,4338,'_pinterest_shares','0'),(158128,4338,'_total_shares','0'),(158129,4338,'swp_cache_timestamp','461437'),(158178,804,'_pinterest_shares','0'),(158179,804,'_total_shares','0'),(158180,804,'swp_cache_timestamp','461531'),(158181,4203,'_pinterest_shares','0'),(158182,4203,'_total_shares','0'),(158183,4203,'swp_cache_timestamp','461532'),(158199,1699,'_pinterest_shares','0'),(158200,1699,'_total_shares','0'),(158201,1699,'swp_cache_timestamp','461572'),(158220,890,'_pinterest_shares','0'),(158221,890,'_total_shares','0'),(158222,890,'swp_cache_timestamp','461611'),(158229,3372,'_pinterest_shares','0'),(158230,3372,'_total_shares','0'),(158231,3372,'swp_cache_timestamp','461637'),(158232,2851,'_pinterest_shares','0'),(158233,2851,'_total_shares','0'),(158234,2851,'swp_cache_timestamp','461637'),(158235,3294,'_pinterest_shares','0'),(158236,3294,'_total_shares','0'),(158237,3294,'swp_cache_timestamp','461637'),(158241,3335,'_pinterest_shares','0'),(158242,3335,'_total_shares','0'),(158243,3335,'swp_cache_timestamp','461637'),(158244,2249,'_pinterest_shares','0'),(158245,2249,'_total_shares','0'),(158246,2249,'swp_cache_timestamp','461637'),(158247,60,'_pinterest_shares','0'),(158248,60,'_total_shares','0'),(158249,60,'swp_cache_timestamp','461637'),(158250,4011,'_pinterest_shares','0'),(158251,4011,'_total_shares','0'),(158252,4011,'swp_cache_timestamp','461637'),(158256,3292,'_pinterest_shares','0'),(158257,3292,'_total_shares','0'),(158258,3292,'swp_cache_timestamp','461637'),(158259,4064,'_pinterest_shares','0'),(158260,4064,'_total_shares','0'),(158261,4064,'swp_cache_timestamp','461637'),(158262,1822,'_pinterest_shares','0'),(158263,1822,'_total_shares','0'),(158264,1822,'swp_cache_timestamp','461637'),(158265,4028,'_pinterest_shares','0'),(158266,4028,'_total_shares','0'),(158267,4028,'swp_cache_timestamp','461637'),(158271,57,'_pinterest_shares','0'),(158272,57,'_total_shares','0'),(158273,57,'swp_cache_timestamp','461637'),(158274,44,'_pinterest_shares','0'),(158275,44,'_total_shares','0'),(158276,44,'swp_cache_timestamp','461643'),(158277,1692,'_pinterest_shares','0'),(158278,1692,'_total_shares','0'),(158279,1692,'swp_cache_timestamp','461650'),(158283,873,'_pinterest_shares','0'),(158284,873,'_total_shares','0'),(158285,873,'swp_cache_timestamp','461652'),(158286,2463,'_pinterest_shares','0'),(158287,2463,'_total_shares','0'),(158288,2463,'swp_cache_timestamp','461652'),(158292,3688,'_pinterest_shares','0'),(158293,3688,'_total_shares','0'),(158294,3688,'swp_cache_timestamp','461670'),(158298,2470,'_pinterest_shares','0'),(158299,2470,'_total_shares','0'),(158300,2470,'swp_cache_timestamp','461678'),(158307,881,'_pinterest_shares','0'),(158308,881,'_total_shares','0'),(158309,881,'swp_cache_timestamp','461695'),(158349,875,'_pinterest_shares','0'),(158350,875,'_total_shares','0'),(158351,875,'swp_cache_timestamp','461763'),(158352,897,'_pinterest_shares','0'),(158353,897,'_total_shares','0'),(158354,897,'swp_cache_timestamp','461763'),(158355,2177,'_pinterest_shares','0'),(158356,2177,'_total_shares','0'),(158357,2177,'swp_cache_timestamp','461765'),(158361,905,'_pinterest_shares','0'),(158362,905,'_total_shares','0'),(158363,905,'swp_cache_timestamp','461766'),(158364,4524,'top-image','534'),(158365,4524,'_top-image','field_5c488d805f5d4'),(158366,4524,'top-text','Insights to improve quality of life, provide clarity in decision making and increase profits.'),(158367,4524,'_top-text','field_5c488e575f5d5'),(158368,4524,'features_0_feature','Analytics'),(158369,4524,'_features_0_feature','field_5c4890c93ae20'),(158370,4524,'features_1_feature','Fraud Detection'),(158371,4524,'_features_1_feature','field_5c4890c93ae20'),(158372,4524,'features_2_feature','Recommendations'),(158373,4524,'_features_2_feature','field_5c4890c93ae20'),(158374,4524,'features_3_feature','Predictions'),(158375,4524,'_features_3_feature','field_5c4890c93ae20'),(158376,4524,'features_4_feature','Image Recognition'),(158377,4524,'_features_4_feature','field_5c4890c93ae20'),(158378,4524,'features_5_feature','Data Lake'),(158379,4524,'_features_5_feature','field_5c4890c93ae20'),(158380,4524,'features_6_feature','Deep Learning'),(158381,4524,'_features_6_feature','field_5c4890c93ae20'),(158382,4524,'features','7'),(158383,4524,'_features','field_5c4890bc3ae1f'),(158384,4524,'about-title','How intelligent is your business?'),(158385,4524,'_about-title','field_5c488e7a5f5d6'),(158386,4524,'about-text','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(158387,4524,'_about-text','field_5c488e945f5d7'),(158388,4524,'problems','Are you learning from your data and market conditions?\r\n\r\nDo you know where your business is making and losing money?\r\n\r\nHow well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(158389,4524,'_problems','field_5c488ec75f5d8'),(158390,4524,'solutions','

Translucent Machine Learning Strategy

\r\n
\r\nUnderstanding the patterns of organizational success & giving you control over the numbers.\r\n
\r\n
    \r\n
  • Learning from Data - understanding past & current experiences, to model your company’s future
  • \r\n
  • Predictive Services – using key performance indicators to road map future possibilities
  • \r\n
  • Intelligent automation - enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient
  • \r\n
  • Analytics: Use your data to increase your revenues & purchasing power – in depth reporting
  • \r\n
'),(158391,4524,'_solutions','field_5c488ed95f5d9'),(158392,4524,'difference','

Is Your Data Working for You?

\r\nPattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour.\r\n\r\nWe will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.\r\n
\r\nWeave machine learning into your business systems meeting and exceeding industry standards and best practices.\r\nThe ability to automate intelligence by department, exact need, and function in real time.'),(158393,4524,'_difference','field_5c488eed5f5da'),(158394,4524,'panel_0_background','554'),(158395,4524,'_panel_0_background','field_5c488f425f5dc'),(158396,4524,'panel_0_title','Data Entry Automation'),(158397,4524,'_panel_0_title','field_5c488f525f5dd'),(158398,4524,'panel_0_text',''),(158399,4524,'_panel_0_text','field_5c488f5b5f5de'),(158400,4524,'panel_1_background','561'),(158401,4524,'_panel_1_background','field_5c488f425f5dc'),(158402,4524,'panel_1_title','Product Recommendation'),(158403,4524,'_panel_1_title','field_5c488f525f5dd'),(158404,4524,'panel_1_text',''),(158405,4524,'_panel_1_text','field_5c488f5b5f5de'),(158406,4524,'panel_2_background','560'),(158407,4524,'_panel_2_background','field_5c488f425f5dc'),(158408,4524,'panel_2_title','Medical Diagnosis'),(158409,4524,'_panel_2_title','field_5c488f525f5dd'),(158410,4524,'panel_2_text',''),(158411,4524,'_panel_2_text','field_5c488f5b5f5de'),(158412,4524,'panel_3_background','559'),(158413,4524,'_panel_3_background','field_5c488f425f5dc'),(158414,4524,'panel_3_title','Clients: Who is buying what'),(158415,4524,'_panel_3_title','field_5c488f525f5dd'),(158416,4524,'panel_3_text',''),(158417,4524,'_panel_3_text','field_5c488f5b5f5de'),(158418,4524,'panel_4_background','557'),(158419,4524,'_panel_4_background','field_5c488f425f5dc'),(158420,4524,'panel_4_title','User Behavior'),(158421,4524,'_panel_4_title','field_5c488f525f5dd'),(158422,4524,'panel_4_text',''),(158423,4524,'_panel_4_text','field_5c488f5b5f5de'),(158424,4524,'panel_5_background','558'),(158425,4524,'_panel_5_background','field_5c488f425f5dc'),(158426,4524,'panel_5_title','BI: Automated Reporting'),(158427,4524,'_panel_5_title','field_5c488f525f5dd'),(158428,4524,'panel_5_text',''),(158429,4524,'_panel_5_text','field_5c488f5b5f5de'),(158430,4524,'panel_6_background','556'),(158431,4524,'_panel_6_background','field_5c488f425f5dc'),(158432,4524,'panel_6_title','Detecting Spam in Emails'),(158433,4524,'_panel_6_title','field_5c488f525f5dd'),(158434,4524,'panel_6_text',''),(158435,4524,'_panel_6_text','field_5c488f5b5f5de'),(158436,4524,'panel_7_background','555'),(158437,4524,'_panel_7_background','field_5c488f425f5dc'),(158438,4524,'panel_7_title','Analytics'),(158439,4524,'_panel_7_title','field_5c488f525f5dd'),(158440,4524,'panel_7_text',''),(158441,4524,'_panel_7_text','field_5c488f5b5f5de'),(158442,4524,'panel','8'),(158443,4524,'_panel','field_5c488f195f5db'),(158444,4524,'more-text','The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.'),(158445,4524,'_more-text','field_5c488f8f5f5df'),(158446,4524,'phrase','“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”'),(158447,4524,'_phrase','field_5c488faf5f5e0'),(158448,4524,'author','FORBES.COM'),(158449,4524,'_author','field_5c488fba5f5e1'),(158450,4524,'top_title','Machine Learningcac'),(158451,4524,'_top_title','field_5edfac92f4226'),(158468,829,'_pinterest_shares','0'),(158469,829,'_total_shares','0'),(158470,829,'swp_cache_timestamp','461771'),(158480,4541,'_edit_lock','1663173952:21'),(158481,4541,'_edit_last','21'),(158593,4563,'_edit_lock','1663320671:21'),(158594,4563,'_edit_last','21'),(158595,4563,'_wp_page_template','machine-learning-new.php'),(158596,4563,'hefo_before','0'),(158597,4563,'hefo_after','0'),(158598,4563,'_yoast_wpseo_focuskeywords',''),(158599,4563,'_yoast_wpseo_keywordsynonyms',''),(158600,4563,'_yoast_wpseo_estimated-reading-time-minutes',''),(158601,4563,'top-image',''),(158602,4563,'_top-image','field_5c488d805f5d4'),(158603,4563,'top_title',''),(158604,4563,'_top_title','field_5edfac92f4226'),(158605,4563,'top-text',''),(158606,4563,'_top-text','field_5c488e575f5d5'),(158607,4563,'features',''),(158608,4563,'_features','field_5c4890bc3ae1f'),(158609,4563,'about-title',''),(158610,4563,'_about-title','field_5c488e7a5f5d6'),(158611,4563,'about-text',''),(158612,4563,'_about-text','field_5c488e945f5d7'),(158613,4563,'problems',''),(158614,4563,'_problems','field_5c488ec75f5d8'),(158615,4563,'solutions',''),(158616,4563,'_solutions','field_5c488ed95f5d9'),(158617,4563,'difference',''),(158618,4563,'_difference','field_5c488eed5f5da'),(158619,4563,'panel',''),(158620,4563,'_panel','field_5c488f195f5db'),(158621,4563,'more-text',''),(158622,4563,'_more-text','field_5c488f8f5f5df'),(158623,4563,'phrase',''),(158624,4563,'_phrase','field_5c488faf5f5e0'),(158625,4563,'author',''),(158626,4563,'_author','field_5c488fba5f5e1'),(158627,4564,'top-image',''),(158628,4564,'_top-image','field_5c488d805f5d4'),(158629,4564,'top_title',''),(158630,4564,'_top_title','field_5edfac92f4226'),(158631,4564,'top-text',''),(158632,4564,'_top-text','field_5c488e575f5d5'),(158633,4564,'features',''),(158634,4564,'_features','field_5c4890bc3ae1f'),(158635,4564,'about-title',''),(158636,4564,'_about-title','field_5c488e7a5f5d6'),(158637,4564,'about-text',''),(158638,4564,'_about-text','field_5c488e945f5d7'),(158639,4564,'problems',''),(158640,4564,'_problems','field_5c488ec75f5d8'),(158641,4564,'solutions',''),(158642,4564,'_solutions','field_5c488ed95f5d9'),(158643,4564,'difference',''),(158644,4564,'_difference','field_5c488eed5f5da'),(158645,4564,'panel',''),(158646,4564,'_panel','field_5c488f195f5db'),(158647,4564,'more-text',''),(158648,4564,'_more-text','field_5c488f8f5f5df'),(158649,4564,'phrase',''),(158650,4564,'_phrase','field_5c488faf5f5e0'),(158651,4564,'author',''),(158652,4564,'_author','field_5c488fba5f5e1'),(158954,4567,'_pinterest_shares','0'),(158955,4567,'_total_shares','0'),(158957,4569,'_pinterest_shares','0'),(158958,4569,'_total_shares','0'),(158960,4568,'_pinterest_shares','0'),(158961,4568,'_total_shares','0'),(159128,4575,'_pinterest_shares','0'),(159129,4575,'_total_shares','0'),(159131,4570,'_pinterest_shares','0'),(159132,4570,'_total_shares','0'),(159134,4542,'_pinterest_shares','0'),(159135,4542,'_total_shares','0'),(159137,4543,'_pinterest_shares','0'),(159138,4543,'_total_shares','0'),(159140,4544,'_pinterest_shares','0'),(159141,4544,'_total_shares','0'),(159143,4545,'_pinterest_shares','0'),(159144,4545,'_total_shares','0'),(159146,4546,'_pinterest_shares','0'),(159147,4546,'_total_shares','0'),(159149,4547,'_pinterest_shares','0'),(159150,4547,'_total_shares','0'),(159158,4549,'_pinterest_shares','0'),(159159,4549,'_total_shares','0'),(159161,4550,'_pinterest_shares','0'),(159162,4550,'_total_shares','0'),(159164,4551,'_pinterest_shares','0'),(159165,4551,'_total_shares','0'),(159167,4552,'_pinterest_shares','0'),(159168,4552,'_total_shares','0'),(159170,4553,'_pinterest_shares','0'),(159171,4553,'_total_shares','0'),(159173,4554,'_pinterest_shares','0'),(159174,4554,'_total_shares','0'),(159176,4555,'_pinterest_shares','0'),(159177,4555,'_total_shares','0'),(159179,4556,'_pinterest_shares','0'),(159180,4556,'_total_shares','0'),(159182,4557,'_pinterest_shares','0'),(159183,4557,'_total_shares','0'),(159185,4558,'_pinterest_shares','0'),(159186,4558,'_total_shares','0'),(159188,4571,'_pinterest_shares','0'),(159189,4571,'_total_shares','0'),(159191,4559,'_pinterest_shares','0'),(159192,4559,'_total_shares','0'),(159194,4560,'_pinterest_shares','0'),(159195,4560,'_total_shares','0'),(159200,4561,'_pinterest_shares','0'),(159201,4561,'_total_shares','0'),(159206,4577,'_pinterest_shares','0'),(159207,4577,'_total_shares','0'),(159209,4578,'_pinterest_shares','0'),(159210,4578,'_total_shares','0'),(159212,4579,'_pinterest_shares','0'),(159213,4579,'_total_shares','0'),(159215,4580,'_pinterest_shares','0'),(159216,4580,'_total_shares','0'),(159218,4581,'_pinterest_shares','0'),(159219,4581,'_total_shares','0'),(159221,4582,'_pinterest_shares','0'),(159222,4582,'_total_shares','0'),(159224,4583,'_pinterest_shares','0'),(159225,4583,'_total_shares','0'),(159227,4584,'_pinterest_shares','0'),(159228,4584,'_total_shares','0'),(159230,4585,'_pinterest_shares','0'),(159231,4585,'_total_shares','0'),(159233,4586,'_pinterest_shares','0'),(159234,4586,'_total_shares','0'),(159251,4587,'_pinterest_shares','0'),(159252,4587,'_total_shares','0'),(159254,4588,'_pinterest_shares','0'),(159255,4588,'_total_shares','0'),(159257,4589,'_pinterest_shares','0'),(159258,4589,'_total_shares','0'),(159260,4590,'_pinterest_shares','0'),(159261,4590,'_total_shares','0'),(159263,4591,'_pinterest_shares','0'),(159264,4591,'_total_shares','0'),(159266,4592,'_pinterest_shares','0'),(159267,4592,'_total_shares','0'),(159269,4593,'_pinterest_shares','0'),(159270,4593,'_total_shares','0'),(159272,4594,'_pinterest_shares','0'),(159273,4594,'_total_shares','0'),(159275,4595,'_pinterest_shares','0'),(159276,4595,'_total_shares','0'),(159278,4596,'_pinterest_shares','0'),(159279,4596,'_total_shares','0'),(159281,4597,'_pinterest_shares','0'),(159282,4597,'_total_shares','0'),(159284,4598,'_pinterest_shares','0'),(159285,4598,'_total_shares','0'),(159287,4599,'_pinterest_shares','0'),(159288,4599,'_total_shares','0'),(159290,4600,'_pinterest_shares','0'),(159291,4600,'_total_shares','0'),(159293,4601,'_pinterest_shares','0'),(159294,4601,'_total_shares','0'),(159296,4602,'_pinterest_shares','0'),(159297,4602,'_total_shares','0'),(159299,4603,'_pinterest_shares','0'),(159300,4603,'_total_shares','0'),(159302,4604,'_pinterest_shares','0'),(159303,4604,'_total_shares','0'),(159305,4605,'_pinterest_shares','0'),(159306,4605,'_total_shares','0'),(159308,4606,'_pinterest_shares','0'),(159309,4606,'_total_shares','0'),(159311,4607,'_pinterest_shares','0'),(159312,4607,'_total_shares','0'),(159314,4608,'_pinterest_shares','0'),(159315,4608,'_total_shares','0'),(159317,4609,'_pinterest_shares','0'),(159318,4609,'_total_shares','0'),(159329,4611,'_pinterest_shares','0'),(159330,4611,'_total_shares','0'),(159332,4612,'_pinterest_shares','0'),(159333,4612,'_total_shares','0'),(159344,4614,'_pinterest_shares','0'),(159345,4614,'_total_shares','0'),(159420,4622,'_edit_lock','1663302415:21'),(159421,4622,'_edit_last','21'),(159428,4623,'_pinterest_shares','0'),(159429,4623,'_total_shares','0'),(159431,4624,'_pinterest_shares','0'),(159432,4624,'_total_shares','0'),(159434,4625,'_pinterest_shares','0'),(159435,4625,'_total_shares','0'),(159437,4626,'_pinterest_shares','0'),(159438,4626,'_total_shares','0'),(159443,4628,'_pinterest_shares','0'),(159444,4628,'_total_shares','0'),(159446,4629,'_pinterest_shares','0'),(159447,4629,'_total_shares','0'),(159458,4633,'_pinterest_shares','0'),(159459,4633,'_total_shares','0'),(159467,4634,'_pinterest_shares','0'),(159468,4634,'_total_shares','0'),(159470,4635,'_pinterest_shares','0'),(159471,4635,'_total_shares','0'),(159473,4636,'_pinterest_shares','0'),(159474,4636,'_total_shares','0'),(159476,4637,'_pinterest_shares','0'),(159477,4637,'_total_shares','0'),(159479,4638,'_pinterest_shares','0'),(159480,4638,'_total_shares','0'),(159482,4639,'_pinterest_shares','0'),(159483,4639,'_total_shares','0'),(159485,4640,'_pinterest_shares','0'),(159486,4640,'_total_shares','0'),(159488,4641,'_pinterest_shares','0'),(159489,4641,'_total_shares','0'),(159491,4642,'_pinterest_shares','0'),(159492,4642,'_total_shares','0'),(159494,4643,'_pinterest_shares','0'),(159495,4643,'_total_shares','0'),(159497,4644,'_pinterest_shares','0'),(159498,4644,'_total_shares','0'),(159500,4645,'_pinterest_shares','0'),(159501,4645,'_total_shares','0'),(159503,4646,'_pinterest_shares','0'),(159504,4646,'_total_shares','0'),(159506,4647,'_pinterest_shares','0'),(159507,4647,'_total_shares','0'),(159509,4648,'_pinterest_shares','0'),(159510,4648,'_total_shares','0'),(159512,4649,'_pinterest_shares','0'),(159513,4649,'_total_shares','0'),(159515,4650,'_pinterest_shares','0'),(159516,4650,'_total_shares','0'),(159518,4651,'_pinterest_shares','0'),(159519,4651,'_total_shares','0'),(159530,4627,'_pinterest_shares','0'),(159531,4627,'_total_shares','0'),(159533,4653,'_pinterest_shares','0'),(159534,4653,'_total_shares','0'),(159536,4654,'_pinterest_shares','0'),(159537,4654,'_total_shares','0'),(159539,4655,'_pinterest_shares','0'),(159540,4655,'_total_shares','0'),(159542,4656,'_pinterest_shares','0'),(159543,4656,'_total_shares','0'),(159545,4657,'_pinterest_shares','0'),(159546,4657,'_total_shares','0'),(159548,4658,'_pinterest_shares','0'),(159549,4658,'_total_shares','0'),(159551,4659,'_pinterest_shares','0'),(159552,4659,'_total_shares','0'),(159560,4660,'_pinterest_shares','0'),(159561,4660,'_total_shares','0'),(159563,4661,'_pinterest_shares','0'),(159564,4661,'_total_shares','0'),(159566,4662,'_pinterest_shares','0'),(159567,4662,'_total_shares','0'),(159569,4663,'_pinterest_shares','0'),(159570,4663,'_total_shares','0'),(159572,4664,'_pinterest_shares','0'),(159573,4664,'_total_shares','0'),(159575,4665,'_pinterest_shares','0'),(159576,4665,'_total_shares','0'),(159584,4666,'_pinterest_shares','0'),(159585,4666,'_total_shares','0'),(159587,4667,'_pinterest_shares','0'),(159588,4667,'_total_shares','0'),(159590,4668,'_pinterest_shares','0'),(159591,4668,'_total_shares','0'),(159593,4669,'_pinterest_shares','0'),(159594,4669,'_total_shares','0'),(159596,4670,'_pinterest_shares','0'),(159597,4670,'_total_shares','0'),(159608,4672,'_pinterest_shares','0'),(159609,4672,'_total_shares','0'),(159611,4673,'_pinterest_shares','0'),(159612,4673,'_total_shares','0'),(159632,16,'_pinterest_shares','0'),(159633,16,'_total_shares','0'),(159634,16,'swp_cache_timestamp','461931'),(159706,4566,'_pinterest_shares','0'),(159707,4566,'_total_shares','0'),(159709,4565,'_pinterest_shares','0'),(159710,4565,'_total_shares','0'),(159718,4563,'top_description','Machine Learning'),(159719,4563,'_top_description','field_63170e008cc99'),(159720,4563,'top_background_desktop','4873'),(159721,4563,'_top_background_desktop','field_631eb1728b709'),(159722,4563,'top_background_mobile','4879'),(159723,4563,'_top_background_mobile','field_631eb1988b70a'),(159724,4563,'section_one_section_one_breadcrumb','THE FUTURE'),(159725,4563,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(159726,4563,'section_one_section_one_title','

How intelligent is your
\r\nbusiness?

'),(159727,4563,'_section_one_section_one_title','field_6316f2764091e'),(159728,4563,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(159729,4563,'_section_one_section_one_content','field_6316f2934091f'),(159730,4563,'section_one_section_one_image','4679'),(159731,4563,'_section_one_section_one_image','field_6316f2ab40920'),(159732,4563,'section_one_section_one_button_text','Book a consultation now'),(159733,4563,'_section_one_section_one_button_text','field_6316f2ca40921'),(159734,4563,'section_one',''),(159735,4563,'_section_one','field_6316f7ba1cd27'),(159736,4563,'section_two_section_two_button_text','Book a consultation now'),(159737,4563,'_section_two_section_two_button_text','field_6316fe1ff751b'),(159738,4563,'section_two_section_two_tab_one_header_title','Problems'),(159739,4563,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(159740,4563,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(159741,4563,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(159742,4563,'section_two_section_two_tab_one_image','4680'),(159743,4563,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(159744,4563,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(159745,4563,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(159746,4563,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money?

\r\n

How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(159747,4563,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(159748,4563,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(159749,4563,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(159750,4563,'section_two_section_two_tab_two_header_title','Solutions'),(159751,4563,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(159752,4563,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(159753,4563,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(159754,4563,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(159755,4563,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(159756,4563,'section_two_section_two_tab_two_content_icon_1','4683'),(159757,4563,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(159758,4563,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(159759,4563,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(159760,4563,'section_two_section_two_tab_two_content_icon_2','4684'),(159761,4563,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(159762,4563,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(159763,4563,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(159764,4563,'section_two_section_two_tab_two_content_icon_3','4685'),(159765,4563,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(159766,4563,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(159767,4563,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(159768,4563,'section_two_section_two_tab_two_content_icon_4','4686'),(159769,4563,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(159770,4563,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(159771,4563,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(159772,4563,'section_two_section_two_tab_three_header_title','Difference'),(159773,4563,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(159774,4563,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(159775,4563,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(159776,4563,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

 

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(159777,4563,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(159778,4563,'section_two_section_two_tab_three_image','4705'),(159779,4563,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(159780,4563,'section_two',''),(159781,4563,'_section_two','field_6316fa2531589'),(159782,4563,'section_three_section_three_title','Trusted Relationships'),(159783,4563,'_section_three_section_three_title','field_6316febdf751c'),(159784,4563,'section_three_section_three_one_icon','4687'),(159785,4563,'_section_three_section_three_one_icon','field_6316fefff751e'),(159786,4563,'section_three_section_three_one_title','Data Entry Automation'),(159787,4563,'_section_three_section_three_one_title','field_6316ff1cf751f'),(159788,4563,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(159789,4563,'_section_three_section_three_one_content','field_6316ff29f7520'),(159790,4563,'section_three_section_three_two_icon','4688'),(159791,4563,'_section_three_section_three_two_icon','field_6316ff77f7523'),(159792,4563,'section_three_section_three_two_title','Product Recommendation'),(159793,4563,'_section_three_section_three_two_title','field_6316ff90f7524'),(159794,4563,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(159795,4563,'_section_three_section_three_two_content','field_6316ff5df7522'),(159796,4563,'section_three_section_three_three_icon','4689'),(159797,4563,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(159798,4563,'section_three_section_three_three_title','Medical Diagnosis'),(159799,4563,'_section_three_section_three_three_title','field_6316fff5f7527'),(159800,4563,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(159801,4563,'_section_three_section_three_three_content','field_63170010f7528'),(159802,4563,'section_three_section_three_four_icon','4690'),(159803,4563,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(159804,4563,'section_three_section_three_four_title','Clients: Who is buying what'),(159805,4563,'_section_three_section_three_four_title','field_631707992b1ca'),(159806,4563,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(159807,4563,'_section_three_section_three_four_content','field_631707b42b1cb'),(159808,4563,'section_three_section_three_five_icon','4691'),(159809,4563,'_section_three_section_three_five_icon','field_631707e52b1cd'),(159810,4563,'section_three_section_three_five_title','User Behavior'),(159811,4563,'_section_three_section_three_five_title','field_631708002b1ce'),(159812,4563,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(159813,4563,'_section_three_section_three_five_content','field_6317081c2b1cf'),(159814,4563,'section_three_section_three_six_icon','4692'),(159815,4563,'_section_three_section_three_six_icon','field_631708572b1d1'),(159816,4563,'section_three_section_three_six_title','BI: Automated Reporting'),(159817,4563,'_section_three_section_three_six_title','field_631708712b1d2'),(159818,4563,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(159819,4563,'_section_three_section_three_six_content','field_6317088d2b1d3'),(159820,4563,'section_three_section_three_seven_icon','4693'),(159821,4563,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(159822,4563,'section_three_section_three_seven_title','Detecting Spam in Emails'),(159823,4563,'_section_three_section_three_seven_title','field_631708da2b1d6'),(159824,4563,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(159825,4563,'_section_three_section_three_seven_content','field_631708f62b1d7'),(159826,4563,'section_three_section_three_eight_icon','4694'),(159827,4563,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(159828,4563,'section_three_section_three_eight_title','Analytics'),(159829,4563,'_section_three_section_three_eight_title','field_631709462b1da'),(159830,4563,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(159831,4563,'_section_three_section_three_eight_content','field_6317095e2b1db'),(159832,4563,'section_three',''),(159833,4563,'_section_three','field_6316fcf4f751a'),(159834,4563,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(159835,4563,'_section_four_section_four_content','field_63170ac9aa9a2'),(159836,4563,'section_four_section_four_button_text','Book a consultation now'),(159837,4563,'_section_four_section_four_button_text','field_63170b08aa9a3'),(159838,4563,'section_four',''),(159839,4563,'_section_four','field_63170a81aa9a1'),(159840,4563,'section_five_section_five_title','We listen. We learn. We inform.'),(159841,4563,'_section_five_section_five_title','field_63170b8564fc2'),(159842,4563,'section_five_section_five_quote','

“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”

'),(159843,4563,'_section_five_section_five_quote','field_632013fd76a3e'),(159844,4563,'section_five_section_five_footer','forbes.com'),(159845,4563,'_section_five_section_five_footer','field_63170bad64fc4'),(159846,4563,'section_five',''),(159847,4563,'_section_five','field_63170b5f64fc1'),(159848,4563,'footer_title','We treat your business like our own.'),(159849,4563,'_footer_title','field_63170f4c8cc9a'),(159850,4563,'footer_button_text','Let\'s talk!'),(159851,4563,'_footer_button_text','field_63170f6f8cc9b'),(159852,4678,'top-image',''),(159853,4678,'_top-image','field_5c488d805f5d4'),(159854,4678,'top_title',''),(159855,4678,'_top_title','field_5edfac92f4226'),(159856,4678,'top-text',''),(159857,4678,'_top-text','field_5c488e575f5d5'),(159858,4678,'features',''),(159859,4678,'_features','field_5c4890bc3ae1f'),(159860,4678,'about-title',''),(159861,4678,'_about-title','field_5c488e7a5f5d6'),(159862,4678,'about-text',''),(159863,4678,'_about-text','field_5c488e945f5d7'),(159864,4678,'problems',''),(159865,4678,'_problems','field_5c488ec75f5d8'),(159866,4678,'solutions',''),(159867,4678,'_solutions','field_5c488ed95f5d9'),(159868,4678,'difference',''),(159869,4678,'_difference','field_5c488eed5f5da'),(159870,4678,'panel',''),(159871,4678,'_panel','field_5c488f195f5db'),(159872,4678,'more-text',''),(159873,4678,'_more-text','field_5c488f8f5f5df'),(159874,4678,'phrase',''),(159875,4678,'_phrase','field_5c488faf5f5e0'),(159876,4678,'author',''),(159877,4678,'_author','field_5c488fba5f5e1'),(159878,4678,'top_description','Machine Learning'),(159879,4678,'_top_description','field_63170e008cc99'),(159880,4678,'top_background_desktop','4677'),(159881,4678,'_top_background_desktop','field_631eb1728b709'),(159882,4678,'top_background_mobile','4677'),(159883,4678,'_top_background_mobile','field_631eb1988b70a'),(159884,4678,'section_one_section_one_breadcrumb','THE FUTURE'),(159885,4678,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(159886,4678,'section_one_section_one_title',''),(159887,4678,'_section_one_section_one_title','field_6316f2764091e'),(159888,4678,'section_one_section_one_content',''),(159889,4678,'_section_one_section_one_content','field_6316f2934091f'),(159890,4678,'section_one_section_one_image',''),(159891,4678,'_section_one_section_one_image','field_6316f2ab40920'),(159892,4678,'section_one_section_one_button_text',''),(159893,4678,'_section_one_section_one_button_text','field_6316f2ca40921'),(159894,4678,'section_one',''),(159895,4678,'_section_one','field_6316f7ba1cd27'),(159896,4678,'section_two_section_two_button_text',''),(159897,4678,'_section_two_section_two_button_text','field_6316fe1ff751b'),(159898,4678,'section_two_section_two_tab_one_header_title','11'),(159899,4678,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(159900,4678,'section_two_section_two_tab_one_title',''),(159901,4678,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(159902,4678,'section_two_section_two_tab_one_image',''),(159903,4678,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(159904,4678,'section_two_section_two_tab_one_description',''),(159905,4678,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(159906,4678,'section_two_section_two_tab_one_content',''),(159907,4678,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(159908,4678,'section_two_section_two_tab_one_footer',''),(159909,4678,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(159910,4678,'section_two_section_two_tab_two_header_title','11'),(159911,4678,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(159912,4678,'section_two_section_two_tab_two_title',''),(159913,4678,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(159914,4678,'section_two_section_two_tab_two_description',''),(159915,4678,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(159916,4678,'section_two_section_two_tab_two_content_icon_1',''),(159917,4678,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(159918,4678,'section_two_section_two_tab_two_content_1',''),(159919,4678,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(159920,4678,'section_two_section_two_tab_two_content_icon_2',''),(159921,4678,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(159922,4678,'section_two_section_two_tab_two_content_2',''),(159923,4678,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(159924,4678,'section_two_section_two_tab_two_content_icon_3',''),(159925,4678,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(159926,4678,'section_two_section_two_tab_two_content_3',''),(159927,4678,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(159928,4678,'section_two_section_two_tab_two_content_icon_4',''),(159929,4678,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(159930,4678,'section_two_section_two_tab_two_content_4',''),(159931,4678,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(159932,4678,'section_two_section_two_tab_three_header_title','11'),(159933,4678,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(159934,4678,'section_two_section_two_tab_three_title',''),(159935,4678,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(159936,4678,'section_two_section_two_tab_three_content',''),(159937,4678,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(159938,4678,'section_two_section_two_tab_three_image',''),(159939,4678,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(159940,4678,'section_two',''),(159941,4678,'_section_two','field_6316fa2531589'),(159942,4678,'section_three_section_three_title',''),(159943,4678,'_section_three_section_three_title','field_6316febdf751c'),(159944,4678,'section_three_section_three_one_icon',''),(159945,4678,'_section_three_section_three_one_icon','field_6316fefff751e'),(159946,4678,'section_three_section_three_one_title',''),(159947,4678,'_section_three_section_three_one_title','field_6316ff1cf751f'),(159948,4678,'section_three_section_three_one_content',''),(159949,4678,'_section_three_section_three_one_content','field_6316ff29f7520'),(159950,4678,'section_three_section_three_two_icon',''),(159951,4678,'_section_three_section_three_two_icon','field_6316ff77f7523'),(159952,4678,'section_three_section_three_two_title',''),(159953,4678,'_section_three_section_three_two_title','field_6316ff90f7524'),(159954,4678,'section_three_section_three_two_content',''),(159955,4678,'_section_three_section_three_two_content','field_6316ff5df7522'),(159956,4678,'section_three_section_three_three_icon',''),(159957,4678,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(159958,4678,'section_three_section_three_three_title',''),(159959,4678,'_section_three_section_three_three_title','field_6316fff5f7527'),(159960,4678,'section_three_section_three_three_content',''),(159961,4678,'_section_three_section_three_three_content','field_63170010f7528'),(159962,4678,'section_three_section_three_four_icon',''),(159963,4678,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(159964,4678,'section_three_section_three_four_title',''),(159965,4678,'_section_three_section_three_four_title','field_631707992b1ca'),(159966,4678,'section_three_section_three_four_content',''),(159967,4678,'_section_three_section_three_four_content','field_631707b42b1cb'),(159968,4678,'section_three_section_three_five_icon',''),(159969,4678,'_section_three_section_three_five_icon','field_631707e52b1cd'),(159970,4678,'section_three_section_three_five_title',''),(159971,4678,'_section_three_section_three_five_title','field_631708002b1ce'),(159972,4678,'section_three_section_three_five_content',''),(159973,4678,'_section_three_section_three_five_content','field_6317081c2b1cf'),(159974,4678,'section_three_section_three_six_icon',''),(159975,4678,'_section_three_section_three_six_icon','field_631708572b1d1'),(159976,4678,'section_three_section_three_six_title',''),(159977,4678,'_section_three_section_three_six_title','field_631708712b1d2'),(159978,4678,'section_three_section_three_six_content',''),(159979,4678,'_section_three_section_three_six_content','field_6317088d2b1d3'),(159980,4678,'section_three_section_three_seven_icon',''),(159981,4678,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(159982,4678,'section_three_section_three_seven_title',''),(159983,4678,'_section_three_section_three_seven_title','field_631708da2b1d6'),(159984,4678,'section_three_section_three_seven_content',''),(159985,4678,'_section_three_section_three_seven_content','field_631708f62b1d7'),(159986,4678,'section_three_section_three_eight_icon',''),(159987,4678,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(159988,4678,'section_three_section_three_eight_title',''),(159989,4678,'_section_three_section_three_eight_title','field_631709462b1da'),(159990,4678,'section_three_section_three_eight_content',''),(159991,4678,'_section_three_section_three_eight_content','field_6317095e2b1db'),(159992,4678,'section_three',''),(159993,4678,'_section_three','field_6316fcf4f751a'),(159994,4678,'section_four_section_four_content',''),(159995,4678,'_section_four_section_four_content','field_63170ac9aa9a2'),(159996,4678,'section_four_section_four_button_text',''),(159997,4678,'_section_four_section_four_button_text','field_63170b08aa9a3'),(159998,4678,'section_four',''),(159999,4678,'_section_four','field_63170a81aa9a1'),(160000,4678,'section_five_section_five_title',''),(160001,4678,'_section_five_section_five_title','field_63170b8564fc2'),(160002,4678,'section_five_section_five_quote',''),(160003,4678,'_section_five_section_five_quote','field_63170b9a64fc3'),(160004,4678,'section_five_section_five_footer',''),(160005,4678,'_section_five_section_five_footer','field_63170bad64fc4'),(160006,4678,'section_five',''),(160007,4678,'_section_five','field_63170b5f64fc1'),(160008,4678,'footer_title',''),(160009,4678,'_footer_title','field_63170f4c8cc9a'),(160010,4678,'footer_button_text',''),(160011,4678,'_footer_button_text','field_63170f6f8cc9b'),(160012,4679,'_wp_attached_file','2022/09/machine_learning_banner.png'),(160013,4679,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1596;s:6:\"height\";i:1332;s:4:\"file\";s:35:\"2022/09/machine_learning_banner.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"machine_learning_banner-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"machine_learning_banner-1024x855.png\";s:5:\"width\";i:1024;s:6:\"height\";i:855;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"machine_learning_banner-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:\"machine_learning_banner-768x641.png\";s:5:\"width\";i:768;s:6:\"height\";i:641;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"machine_learning_banner-1536x1282.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1282;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:35:\"machine_learning_banner-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(160014,4679,'_imagify_optimization_level','2'),(160015,4679,'_imagify_status','success'),(160016,4679,'_imagify_data','a:2:{s:5:\"sizes\";a:14:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1073557;s:14:\"optimized_size\";i:225832;s:7:\"percent\";d:78.96;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:258251;s:14:\"optimized_size\";i:97236;s:7:\"percent\";d:62.35;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1124289;s:14:\"optimized_size\";i:460106;s:7:\"percent\";d:59.08;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:396044;s:14:\"optimized_size\";i:150480;s:7:\"percent\";d:62;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31435;s:14:\"optimized_size\";i:11646;s:7:\"percent\";d:62.95;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:620854;s:14:\"optimized_size\";i:241446;s:7:\"percent\";d:61.11;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:79455;s:14:\"optimized_size\";i:29496;s:7:\"percent\";d:62.88;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1073557;s:14:\"optimized_size\";i:411478;s:7:\"percent\";d:61.67;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:79455;s:14:\"optimized_size\";i:22648;s:7:\"percent\";d:71.5;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:620854;s:14:\"optimized_size\";i:168356;s:7:\"percent\";d:72.88;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31435;s:14:\"optimized_size\";i:6308;s:7:\"percent\";d:79.93;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:396044;s:14:\"optimized_size\";i:104761;s:7:\"percent\";d:73.55;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1124289;s:14:\"optimized_size\";i:245610;s:7:\"percent\";d:78.15;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:258251;s:14:\"optimized_size\";i:67729;s:7:\"percent\";d:73.77;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:7167770;s:14:\"optimized_size\";i:2243132;s:7:\"percent\";d:68.71;}}'),(160017,4680,'_wp_attached_file','2022/09/hand_tool.png'),(160018,4680,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:672;s:4:\"file\";s:21:\"2022/09/hand_tool.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"hand_tool-300x187.png\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"hand_tool-1024x637.png\";s:5:\"width\";i:1024;s:6:\"height\";i:637;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"hand_tool-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:21:\"hand_tool-768x478.png\";s:5:\"width\";i:768;s:6:\"height\";i:478;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:21:\"hand_tool-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(160019,4680,'_imagify_optimization_level','2'),(160020,4680,'_imagify_status','success'),(160021,4680,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:149824;s:14:\"optimized_size\";i:49339;s:7:\"percent\";d:67.07;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:83111;s:14:\"optimized_size\";i:31156;s:7:\"percent\";d:62.51;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:103379;s:14:\"optimized_size\";i:37994;s:7:\"percent\";d:63.25;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18233;s:14:\"optimized_size\";i:7694;s:7:\"percent\";d:57.8;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:144902;s:14:\"optimized_size\";i:53176;s:7:\"percent\";d:63.3;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31252;s:14:\"optimized_size\";i:12770;s:7:\"percent\";d:59.14;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:149824;s:14:\"optimized_size\";i:42694;s:7:\"percent\";d:71.5;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31252;s:14:\"optimized_size\";i:12518;s:7:\"percent\";d:59.94;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:144902;s:14:\"optimized_size\";i:63031;s:7:\"percent\";d:56.5;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18233;s:14:\"optimized_size\";i:4967;s:7:\"percent\";d:72.76;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:103379;s:14:\"optimized_size\";i:41989;s:7:\"percent\";d:59.38;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:83111;s:14:\"optimized_size\";i:33691;s:7:\"percent\";d:59.46;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1061402;s:14:\"optimized_size\";i:391019;s:7:\"percent\";d:63.16;}}'),(160022,4681,'top-image',''),(160023,4681,'_top-image','field_5c488d805f5d4'),(160024,4681,'top_title',''),(160025,4681,'_top_title','field_5edfac92f4226'),(160026,4681,'top-text',''),(160027,4681,'_top-text','field_5c488e575f5d5'),(160028,4681,'features',''),(160029,4681,'_features','field_5c4890bc3ae1f'),(160030,4681,'about-title',''),(160031,4681,'_about-title','field_5c488e7a5f5d6'),(160032,4681,'about-text',''),(160033,4681,'_about-text','field_5c488e945f5d7'),(160034,4681,'problems',''),(160035,4681,'_problems','field_5c488ec75f5d8'),(160036,4681,'solutions',''),(160037,4681,'_solutions','field_5c488ed95f5d9'),(160038,4681,'difference',''),(160039,4681,'_difference','field_5c488eed5f5da'),(160040,4681,'panel',''),(160041,4681,'_panel','field_5c488f195f5db'),(160042,4681,'more-text',''),(160043,4681,'_more-text','field_5c488f8f5f5df'),(160044,4681,'phrase',''),(160045,4681,'_phrase','field_5c488faf5f5e0'),(160046,4681,'author',''),(160047,4681,'_author','field_5c488fba5f5e1'),(160048,4681,'top_description','Machine Learning'),(160049,4681,'_top_description','field_63170e008cc99'),(160050,4681,'top_background_desktop','4677'),(160051,4681,'_top_background_desktop','field_631eb1728b709'),(160052,4681,'top_background_mobile','4677'),(160053,4681,'_top_background_mobile','field_631eb1988b70a'),(160054,4681,'section_one_section_one_breadcrumb','THE FUTURE'),(160055,4681,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(160056,4681,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(160057,4681,'_section_one_section_one_title','field_6316f2764091e'),(160058,4681,'section_one_section_one_content','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(160059,4681,'_section_one_section_one_content','field_6316f2934091f'),(160060,4681,'section_one_section_one_image','4679'),(160061,4681,'_section_one_section_one_image','field_6316f2ab40920'),(160062,4681,'section_one_section_one_button_text','Book a consultation now'),(160063,4681,'_section_one_section_one_button_text','field_6316f2ca40921'),(160064,4681,'section_one',''),(160065,4681,'_section_one','field_6316f7ba1cd27'),(160066,4681,'section_two_section_two_button_text','Book a consultation now'),(160067,4681,'_section_two_section_two_button_text','field_6316fe1ff751b'),(160068,4681,'section_two_section_two_tab_one_header_title','Problems'),(160069,4681,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(160070,4681,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(160071,4681,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(160072,4681,'section_two_section_two_tab_one_image','4680'),(160073,4681,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(160074,4681,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(160075,4681,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(160076,4681,'section_two_section_two_tab_one_content','Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(160077,4681,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(160078,4681,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(160079,4681,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(160080,4681,'section_two_section_two_tab_two_header_title','11'),(160081,4681,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(160082,4681,'section_two_section_two_tab_two_title','Solutions'),(160083,4681,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(160084,4681,'section_two_section_two_tab_two_description',''),(160085,4681,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(160086,4681,'section_two_section_two_tab_two_content_icon_1',''),(160087,4681,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(160088,4681,'section_two_section_two_tab_two_content_1',''),(160089,4681,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(160090,4681,'section_two_section_two_tab_two_content_icon_2',''),(160091,4681,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(160092,4681,'section_two_section_two_tab_two_content_2',''),(160093,4681,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(160094,4681,'section_two_section_two_tab_two_content_icon_3',''),(160095,4681,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(160096,4681,'section_two_section_two_tab_two_content_3',''),(160097,4681,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(160098,4681,'section_two_section_two_tab_two_content_icon_4',''),(160099,4681,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(160100,4681,'section_two_section_two_tab_two_content_4',''),(160101,4681,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(160102,4681,'section_two_section_two_tab_three_header_title','Difference'),(160103,4681,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(160104,4681,'section_two_section_two_tab_three_title',''),(160105,4681,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(160106,4681,'section_two_section_two_tab_three_content',''),(160107,4681,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(160108,4681,'section_two_section_two_tab_three_image',''),(160109,4681,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(160110,4681,'section_two',''),(160111,4681,'_section_two','field_6316fa2531589'),(160112,4681,'section_three_section_three_title',''),(160113,4681,'_section_three_section_three_title','field_6316febdf751c'),(160114,4681,'section_three_section_three_one_icon',''),(160115,4681,'_section_three_section_three_one_icon','field_6316fefff751e'),(160116,4681,'section_three_section_three_one_title',''),(160117,4681,'_section_three_section_three_one_title','field_6316ff1cf751f'),(160118,4681,'section_three_section_three_one_content',''),(160119,4681,'_section_three_section_three_one_content','field_6316ff29f7520'),(160120,4681,'section_three_section_three_two_icon',''),(160121,4681,'_section_three_section_three_two_icon','field_6316ff77f7523'),(160122,4681,'section_three_section_three_two_title',''),(160123,4681,'_section_three_section_three_two_title','field_6316ff90f7524'),(160124,4681,'section_three_section_three_two_content',''),(160125,4681,'_section_three_section_three_two_content','field_6316ff5df7522'),(160126,4681,'section_three_section_three_three_icon',''),(160127,4681,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(160128,4681,'section_three_section_three_three_title',''),(160129,4681,'_section_three_section_three_three_title','field_6316fff5f7527'),(160130,4681,'section_three_section_three_three_content',''),(160131,4681,'_section_three_section_three_three_content','field_63170010f7528'),(160132,4681,'section_three_section_three_four_icon',''),(160133,4681,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(160134,4681,'section_three_section_three_four_title',''),(160135,4681,'_section_three_section_three_four_title','field_631707992b1ca'),(160136,4681,'section_three_section_three_four_content',''),(160137,4681,'_section_three_section_three_four_content','field_631707b42b1cb'),(160138,4681,'section_three_section_three_five_icon',''),(160139,4681,'_section_three_section_three_five_icon','field_631707e52b1cd'),(160140,4681,'section_three_section_three_five_title',''),(160141,4681,'_section_three_section_three_five_title','field_631708002b1ce'),(160142,4681,'section_three_section_three_five_content',''),(160143,4681,'_section_three_section_three_five_content','field_6317081c2b1cf'),(160144,4681,'section_three_section_three_six_icon',''),(160145,4681,'_section_three_section_three_six_icon','field_631708572b1d1'),(160146,4681,'section_three_section_three_six_title',''),(160147,4681,'_section_three_section_three_six_title','field_631708712b1d2'),(160148,4681,'section_three_section_three_six_content',''),(160149,4681,'_section_three_section_three_six_content','field_6317088d2b1d3'),(160150,4681,'section_three_section_three_seven_icon',''),(160151,4681,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(160152,4681,'section_three_section_three_seven_title',''),(160153,4681,'_section_three_section_three_seven_title','field_631708da2b1d6'),(160154,4681,'section_three_section_three_seven_content',''),(160155,4681,'_section_three_section_three_seven_content','field_631708f62b1d7'),(160156,4681,'section_three_section_three_eight_icon',''),(160157,4681,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(160158,4681,'section_three_section_three_eight_title',''),(160159,4681,'_section_three_section_three_eight_title','field_631709462b1da'),(160160,4681,'section_three_section_three_eight_content',''),(160161,4681,'_section_three_section_three_eight_content','field_6317095e2b1db'),(160162,4681,'section_three',''),(160163,4681,'_section_three','field_6316fcf4f751a'),(160164,4681,'section_four_section_four_content',''),(160165,4681,'_section_four_section_four_content','field_63170ac9aa9a2'),(160166,4681,'section_four_section_four_button_text',''),(160167,4681,'_section_four_section_four_button_text','field_63170b08aa9a3'),(160168,4681,'section_four',''),(160169,4681,'_section_four','field_63170a81aa9a1'),(160170,4681,'section_five_section_five_title',''),(160171,4681,'_section_five_section_five_title','field_63170b8564fc2'),(160172,4681,'section_five_section_five_quote',''),(160173,4681,'_section_five_section_five_quote','field_63170b9a64fc3'),(160174,4681,'section_five_section_five_footer',''),(160175,4681,'_section_five_section_five_footer','field_63170bad64fc4'),(160176,4681,'section_five',''),(160177,4681,'_section_five','field_63170b5f64fc1'),(160178,4681,'footer_title',''),(160179,4681,'_footer_title','field_63170f4c8cc9a'),(160180,4681,'footer_button_text',''),(160181,4681,'_footer_button_text','field_63170f6f8cc9b'),(160185,4572,'_pinterest_shares','0'),(160186,4572,'_total_shares','0'),(160188,4548,'_pinterest_shares','0'),(160189,4548,'_total_shares','0'),(160197,4682,'top-image',''),(160198,4682,'_top-image','field_5c488d805f5d4'),(160199,4682,'top_title',''),(160200,4682,'_top_title','field_5edfac92f4226'),(160201,4682,'top-text',''),(160202,4682,'_top-text','field_5c488e575f5d5'),(160203,4682,'features',''),(160204,4682,'_features','field_5c4890bc3ae1f'),(160205,4682,'about-title',''),(160206,4682,'_about-title','field_5c488e7a5f5d6'),(160207,4682,'about-text',''),(160208,4682,'_about-text','field_5c488e945f5d7'),(160209,4682,'problems',''),(160210,4682,'_problems','field_5c488ec75f5d8'),(160211,4682,'solutions',''),(160212,4682,'_solutions','field_5c488ed95f5d9'),(160213,4682,'difference',''),(160214,4682,'_difference','field_5c488eed5f5da'),(160215,4682,'panel',''),(160216,4682,'_panel','field_5c488f195f5db'),(160217,4682,'more-text',''),(160218,4682,'_more-text','field_5c488f8f5f5df'),(160219,4682,'phrase',''),(160220,4682,'_phrase','field_5c488faf5f5e0'),(160221,4682,'author',''),(160222,4682,'_author','field_5c488fba5f5e1'),(160223,4682,'top_description','Machine Learning'),(160224,4682,'_top_description','field_63170e008cc99'),(160225,4682,'top_background_desktop','4677'),(160226,4682,'_top_background_desktop','field_631eb1728b709'),(160227,4682,'top_background_mobile','4677'),(160228,4682,'_top_background_mobile','field_631eb1988b70a'),(160229,4682,'section_one_section_one_breadcrumb','THE FUTURE'),(160230,4682,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(160231,4682,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(160232,4682,'_section_one_section_one_title','field_6316f2764091e'),(160233,4682,'section_one_section_one_content','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(160234,4682,'_section_one_section_one_content','field_6316f2934091f'),(160235,4682,'section_one_section_one_image','4679'),(160236,4682,'_section_one_section_one_image','field_6316f2ab40920'),(160237,4682,'section_one_section_one_button_text','Book a consultation now'),(160238,4682,'_section_one_section_one_button_text','field_6316f2ca40921'),(160239,4682,'section_one',''),(160240,4682,'_section_one','field_6316f7ba1cd27'),(160241,4682,'section_two_section_two_button_text','Book a consultation now'),(160242,4682,'_section_two_section_two_button_text','field_6316fe1ff751b'),(160243,4682,'section_two_section_two_tab_one_header_title','Problems'),(160244,4682,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(160245,4682,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(160246,4682,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(160247,4682,'section_two_section_two_tab_one_image','4680'),(160248,4682,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(160249,4682,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(160250,4682,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(160251,4682,'section_two_section_two_tab_one_content','Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(160252,4682,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(160253,4682,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(160254,4682,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(160255,4682,'section_two_section_two_tab_two_header_title','11'),(160256,4682,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(160257,4682,'section_two_section_two_tab_two_title','Solutions'),(160258,4682,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(160259,4682,'section_two_section_two_tab_two_description','Translucent Machine Learning Strategy'),(160260,4682,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(160261,4682,'section_two_section_two_tab_two_content_icon_1',''),(160262,4682,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(160263,4682,'section_two_section_two_tab_two_content_1',''),(160264,4682,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(160265,4682,'section_two_section_two_tab_two_content_icon_2',''),(160266,4682,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(160267,4682,'section_two_section_two_tab_two_content_2',''),(160268,4682,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(160269,4682,'section_two_section_two_tab_two_content_icon_3',''),(160270,4682,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(160271,4682,'section_two_section_two_tab_two_content_3',''),(160272,4682,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(160273,4682,'section_two_section_two_tab_two_content_icon_4',''),(160274,4682,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(160275,4682,'section_two_section_two_tab_two_content_4',''),(160276,4682,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(160277,4682,'section_two_section_two_tab_three_header_title','Difference'),(160278,4682,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(160279,4682,'section_two_section_two_tab_three_title',''),(160280,4682,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(160281,4682,'section_two_section_two_tab_three_content',''),(160282,4682,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(160283,4682,'section_two_section_two_tab_three_image',''),(160284,4682,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(160285,4682,'section_two',''),(160286,4682,'_section_two','field_6316fa2531589'),(160287,4682,'section_three_section_three_title',''),(160288,4682,'_section_three_section_three_title','field_6316febdf751c'),(160289,4682,'section_three_section_three_one_icon',''),(160290,4682,'_section_three_section_three_one_icon','field_6316fefff751e'),(160291,4682,'section_three_section_three_one_title',''),(160292,4682,'_section_three_section_three_one_title','field_6316ff1cf751f'),(160293,4682,'section_three_section_three_one_content',''),(160294,4682,'_section_three_section_three_one_content','field_6316ff29f7520'),(160295,4682,'section_three_section_three_two_icon',''),(160296,4682,'_section_three_section_three_two_icon','field_6316ff77f7523'),(160297,4682,'section_three_section_three_two_title',''),(160298,4682,'_section_three_section_three_two_title','field_6316ff90f7524'),(160299,4682,'section_three_section_three_two_content',''),(160300,4682,'_section_three_section_three_two_content','field_6316ff5df7522'),(160301,4682,'section_three_section_three_three_icon',''),(160302,4682,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(160303,4682,'section_three_section_three_three_title',''),(160304,4682,'_section_three_section_three_three_title','field_6316fff5f7527'),(160305,4682,'section_three_section_three_three_content',''),(160306,4682,'_section_three_section_three_three_content','field_63170010f7528'),(160307,4682,'section_three_section_three_four_icon',''),(160308,4682,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(160309,4682,'section_three_section_three_four_title',''),(160310,4682,'_section_three_section_three_four_title','field_631707992b1ca'),(160311,4682,'section_three_section_three_four_content',''),(160312,4682,'_section_three_section_three_four_content','field_631707b42b1cb'),(160313,4682,'section_three_section_three_five_icon',''),(160314,4682,'_section_three_section_three_five_icon','field_631707e52b1cd'),(160315,4682,'section_three_section_three_five_title',''),(160316,4682,'_section_three_section_three_five_title','field_631708002b1ce'),(160317,4682,'section_three_section_three_five_content',''),(160318,4682,'_section_three_section_three_five_content','field_6317081c2b1cf'),(160319,4682,'section_three_section_three_six_icon',''),(160320,4682,'_section_three_section_three_six_icon','field_631708572b1d1'),(160321,4682,'section_three_section_three_six_title',''),(160322,4682,'_section_three_section_three_six_title','field_631708712b1d2'),(160323,4682,'section_three_section_three_six_content',''),(160324,4682,'_section_three_section_three_six_content','field_6317088d2b1d3'),(160325,4682,'section_three_section_three_seven_icon',''),(160326,4682,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(160327,4682,'section_three_section_three_seven_title',''),(160328,4682,'_section_three_section_three_seven_title','field_631708da2b1d6'),(160329,4682,'section_three_section_three_seven_content',''),(160330,4682,'_section_three_section_three_seven_content','field_631708f62b1d7'),(160331,4682,'section_three_section_three_eight_icon',''),(160332,4682,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(160333,4682,'section_three_section_three_eight_title',''),(160334,4682,'_section_three_section_three_eight_title','field_631709462b1da'),(160335,4682,'section_three_section_three_eight_content',''),(160336,4682,'_section_three_section_three_eight_content','field_6317095e2b1db'),(160337,4682,'section_three',''),(160338,4682,'_section_three','field_6316fcf4f751a'),(160339,4682,'section_four_section_four_content',''),(160340,4682,'_section_four_section_four_content','field_63170ac9aa9a2'),(160341,4682,'section_four_section_four_button_text',''),(160342,4682,'_section_four_section_four_button_text','field_63170b08aa9a3'),(160343,4682,'section_four',''),(160344,4682,'_section_four','field_63170a81aa9a1'),(160345,4682,'section_five_section_five_title',''),(160346,4682,'_section_five_section_five_title','field_63170b8564fc2'),(160347,4682,'section_five_section_five_quote',''),(160348,4682,'_section_five_section_five_quote','field_63170b9a64fc3'),(160349,4682,'section_five_section_five_footer',''),(160350,4682,'_section_five_section_five_footer','field_63170bad64fc4'),(160351,4682,'section_five',''),(160352,4682,'_section_five','field_63170b5f64fc1'),(160353,4682,'footer_title',''),(160354,4682,'_footer_title','field_63170f4c8cc9a'),(160355,4682,'footer_button_text',''),(160356,4682,'_footer_button_text','field_63170f6f8cc9b'),(160360,4683,'_wp_attached_file','2022/09/Group-8783@3x.png'),(160361,4683,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:25:\"2022/09/Group-8783@3x.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(160362,4683,'_imagify_optimization_level','2'),(160363,4683,'_imagify_status','success'),(160364,4683,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1020;s:14:\"optimized_size\";i:410;s:7:\"percent\";d:59.8;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1020;s:14:\"optimized_size\";i:1314;s:7:\"percent\";d:-28.82;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2040;s:14:\"optimized_size\";i:1724;s:7:\"percent\";d:15.49;}}'),(160365,4684,'_wp_attached_file','2022/09/Group-8784@3x.png'),(160366,4684,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:25:\"2022/09/Group-8784@3x.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(160367,4684,'_imagify_optimization_level','2'),(160368,4684,'_imagify_status','success'),(160369,4684,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1245;s:14:\"optimized_size\";i:471;s:7:\"percent\";d:62.17;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1245;s:14:\"optimized_size\";i:1280;s:7:\"percent\";d:-2.81;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2490;s:14:\"optimized_size\";i:1751;s:7:\"percent\";d:29.68;}}'),(160370,4685,'_wp_attached_file','2022/09/Group-8785@3x.png'),(160371,4685,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:25:\"2022/09/Group-8785@3x.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(160372,4685,'_imagify_optimization_level','2'),(160373,4685,'_imagify_status','success'),(160374,4685,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:863;s:14:\"optimized_size\";i:337;s:7:\"percent\";d:60.95;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:863;s:14:\"optimized_size\";i:1044;s:7:\"percent\";d:-20.97;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1726;s:14:\"optimized_size\";i:1381;s:7:\"percent\";d:19.99;}}'),(160375,4686,'_wp_attached_file','2022/09/Group-8786@3x.png'),(160376,4686,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:25:\"2022/09/Group-8786@3x.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(160377,4686,'_imagify_optimization_level','2'),(160378,4686,'_imagify_status','success'),(160379,4686,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2045;s:14:\"optimized_size\";i:601;s:7:\"percent\";d:70.61;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2045;s:14:\"optimized_size\";i:1860;s:7:\"percent\";d:9.05;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:4090;s:14:\"optimized_size\";i:2461;s:7:\"percent\";d:39.83;}}'),(160380,4687,'_wp_attached_file','2022/09/data_entry.png'),(160381,4687,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:22:\"2022/09/data_entry.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(160382,4687,'_imagify_optimization_level','2'),(160383,4687,'_imagify_status','success'),(160384,4687,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1860;s:14:\"optimized_size\";i:769;s:7:\"percent\";d:58.66;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1860;s:14:\"optimized_size\";i:1982;s:7:\"percent\";d:-6.56;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3720;s:14:\"optimized_size\";i:2751;s:7:\"percent\";d:26.05;}}'),(160385,4688,'_wp_attached_file','2022/09/product-recommendation.png'),(160386,4688,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:34:\"2022/09/product-recommendation.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(160387,4688,'_imagify_optimization_level','2'),(160388,4688,'_imagify_status','success'),(160389,4688,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:849;s:14:\"optimized_size\";i:341;s:7:\"percent\";d:59.84;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:849;s:14:\"optimized_size\";i:1380;s:7:\"percent\";d:-62.54;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1698;s:14:\"optimized_size\";i:1721;s:7:\"percent\";d:-1.35;}}'),(160390,4689,'_wp_attached_file','2022/09/medical-diagnosis.png'),(160391,4689,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:29:\"2022/09/medical-diagnosis.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(160392,4689,'_imagify_optimization_level','2'),(160393,4689,'_imagify_status','success'),(160394,4689,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1094;s:14:\"optimized_size\";i:402;s:7:\"percent\";d:63.25;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1094;s:14:\"optimized_size\";i:1320;s:7:\"percent\";d:-20.66;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2188;s:14:\"optimized_size\";i:1722;s:7:\"percent\";d:21.3;}}'),(160395,4690,'_wp_attached_file','2022/09/who_is_buying.png'),(160396,4690,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:25:\"2022/09/who_is_buying.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(160397,4690,'_imagify_optimization_level','2'),(160398,4690,'_imagify_status','success'),(160399,4690,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2177;s:14:\"optimized_size\";i:784;s:7:\"percent\";d:63.99;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2177;s:14:\"optimized_size\";i:2420;s:7:\"percent\";d:-11.16;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:4354;s:14:\"optimized_size\";i:3204;s:7:\"percent\";d:26.41;}}'),(160400,4691,'_wp_attached_file','2022/09/user_behavior.png'),(160401,4691,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:25:\"2022/09/user_behavior.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(160402,4691,'_imagify_optimization_level','2'),(160403,4691,'_imagify_status','success'),(160404,4691,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1324;s:14:\"optimized_size\";i:528;s:7:\"percent\";d:60.12;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1324;s:14:\"optimized_size\";i:1560;s:7:\"percent\";d:-17.82;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2648;s:14:\"optimized_size\";i:2088;s:7:\"percent\";d:21.15;}}'),(160405,4692,'_wp_attached_file','2022/09/automated_reporting.png'),(160406,4692,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:31:\"2022/09/automated_reporting.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(160407,4692,'_imagify_optimization_level','2'),(160408,4692,'_imagify_status','success'),(160409,4692,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1693;s:14:\"optimized_size\";i:647;s:7:\"percent\";d:61.78;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1693;s:14:\"optimized_size\";i:1964;s:7:\"percent\";d:-16.01;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3386;s:14:\"optimized_size\";i:2611;s:7:\"percent\";d:22.89;}}'),(160410,4693,'_wp_attached_file','2022/09/detecting_spam.png'),(160411,4693,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:26:\"2022/09/detecting_spam.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(160412,4693,'_imagify_optimization_level','2'),(160413,4693,'_imagify_status','success'),(160414,4693,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:956;s:14:\"optimized_size\";i:361;s:7:\"percent\";d:62.24;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:956;s:14:\"optimized_size\";i:1340;s:7:\"percent\";d:-40.17;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1912;s:14:\"optimized_size\";i:1701;s:7:\"percent\";d:11.04;}}'),(160415,4694,'_wp_attached_file','2022/09/analytics.png'),(160416,4694,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:72;s:6:\"height\";i:72;s:4:\"file\";s:21:\"2022/09/analytics.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(160417,4694,'_imagify_optimization_level','2'),(160418,4694,'_imagify_status','success'),(160419,4694,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1198;s:14:\"optimized_size\";i:473;s:7:\"percent\";d:60.52;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1198;s:14:\"optimized_size\";i:1364;s:7:\"percent\";d:-13.86;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2396;s:14:\"optimized_size\";i:1837;s:7:\"percent\";d:23.33;}}'),(160420,4695,'top-image',''),(160421,4695,'_top-image','field_5c488d805f5d4'),(160422,4695,'top_title',''),(160423,4695,'_top_title','field_5edfac92f4226'),(160424,4695,'top-text',''),(160425,4695,'_top-text','field_5c488e575f5d5'),(160426,4695,'features',''),(160427,4695,'_features','field_5c4890bc3ae1f'),(160428,4695,'about-title',''),(160429,4695,'_about-title','field_5c488e7a5f5d6'),(160430,4695,'about-text',''),(160431,4695,'_about-text','field_5c488e945f5d7'),(160432,4695,'problems',''),(160433,4695,'_problems','field_5c488ec75f5d8'),(160434,4695,'solutions',''),(160435,4695,'_solutions','field_5c488ed95f5d9'),(160436,4695,'difference',''),(160437,4695,'_difference','field_5c488eed5f5da'),(160438,4695,'panel',''),(160439,4695,'_panel','field_5c488f195f5db'),(160440,4695,'more-text',''),(160441,4695,'_more-text','field_5c488f8f5f5df'),(160442,4695,'phrase',''),(160443,4695,'_phrase','field_5c488faf5f5e0'),(160444,4695,'author',''),(160445,4695,'_author','field_5c488fba5f5e1'),(160446,4695,'top_description','Machine Learning'),(160447,4695,'_top_description','field_63170e008cc99'),(160448,4695,'top_background_desktop','4677'),(160449,4695,'_top_background_desktop','field_631eb1728b709'),(160450,4695,'top_background_mobile','4677'),(160451,4695,'_top_background_mobile','field_631eb1988b70a'),(160452,4695,'section_one_section_one_breadcrumb','THE FUTURE'),(160453,4695,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(160454,4695,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(160455,4695,'_section_one_section_one_title','field_6316f2764091e'),(160456,4695,'section_one_section_one_content','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(160457,4695,'_section_one_section_one_content','field_6316f2934091f'),(160458,4695,'section_one_section_one_image','4679'),(160459,4695,'_section_one_section_one_image','field_6316f2ab40920'),(160460,4695,'section_one_section_one_button_text','Book a consultation now'),(160461,4695,'_section_one_section_one_button_text','field_6316f2ca40921'),(160462,4695,'section_one',''),(160463,4695,'_section_one','field_6316f7ba1cd27'),(160464,4695,'section_two_section_two_button_text','Book a consultation now'),(160465,4695,'_section_two_section_two_button_text','field_6316fe1ff751b'),(160466,4695,'section_two_section_two_tab_one_header_title','Problems'),(160467,4695,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(160468,4695,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(160469,4695,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(160470,4695,'section_two_section_two_tab_one_image','4680'),(160471,4695,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(160472,4695,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(160473,4695,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(160474,4695,'section_two_section_two_tab_one_content','Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(160475,4695,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(160476,4695,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(160477,4695,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(160478,4695,'section_two_section_two_tab_two_header_title','Solutions'),(160479,4695,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(160480,4695,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(160481,4695,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(160482,4695,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(160483,4695,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(160484,4695,'section_two_section_two_tab_two_content_icon_1','4683'),(160485,4695,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(160486,4695,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(160487,4695,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(160488,4695,'section_two_section_two_tab_two_content_icon_2','4684'),(160489,4695,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(160490,4695,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(160491,4695,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(160492,4695,'section_two_section_two_tab_two_content_icon_3','4685'),(160493,4695,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(160494,4695,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(160495,4695,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(160496,4695,'section_two_section_two_tab_two_content_icon_4','4686'),(160497,4695,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(160498,4695,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(160499,4695,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(160500,4695,'section_two_section_two_tab_three_header_title','Difference'),(160501,4695,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(160502,4695,'section_two_section_two_tab_three_title',''),(160503,4695,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(160504,4695,'section_two_section_two_tab_three_content',''),(160505,4695,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(160506,4695,'section_two_section_two_tab_three_image',''),(160507,4695,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(160508,4695,'section_two',''),(160509,4695,'_section_two','field_6316fa2531589'),(160510,4695,'section_three_section_three_title','Trusted Relationships'),(160511,4695,'_section_three_section_three_title','field_6316febdf751c'),(160512,4695,'section_three_section_three_one_icon','4687'),(160513,4695,'_section_three_section_three_one_icon','field_6316fefff751e'),(160514,4695,'section_three_section_three_one_title','Data Entry Automation'),(160515,4695,'_section_three_section_three_one_title','field_6316ff1cf751f'),(160516,4695,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160517,4695,'_section_three_section_three_one_content','field_6316ff29f7520'),(160518,4695,'section_three_section_three_two_icon','4688'),(160519,4695,'_section_three_section_three_two_icon','field_6316ff77f7523'),(160520,4695,'section_three_section_three_two_title','Product Recommendation'),(160521,4695,'_section_three_section_three_two_title','field_6316ff90f7524'),(160522,4695,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160523,4695,'_section_three_section_three_two_content','field_6316ff5df7522'),(160524,4695,'section_three_section_three_three_icon','4689'),(160525,4695,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(160526,4695,'section_three_section_three_three_title','Medical Diagnosis'),(160527,4695,'_section_three_section_three_three_title','field_6316fff5f7527'),(160528,4695,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160529,4695,'_section_three_section_three_three_content','field_63170010f7528'),(160530,4695,'section_three_section_three_four_icon','4690'),(160531,4695,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(160532,4695,'section_three_section_three_four_title','Clients: Who is buying what'),(160533,4695,'_section_three_section_three_four_title','field_631707992b1ca'),(160534,4695,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160535,4695,'_section_three_section_three_four_content','field_631707b42b1cb'),(160536,4695,'section_three_section_three_five_icon','4691'),(160537,4695,'_section_three_section_three_five_icon','field_631707e52b1cd'),(160538,4695,'section_three_section_three_five_title','User Behavior'),(160539,4695,'_section_three_section_three_five_title','field_631708002b1ce'),(160540,4695,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160541,4695,'_section_three_section_three_five_content','field_6317081c2b1cf'),(160542,4695,'section_three_section_three_six_icon','4692'),(160543,4695,'_section_three_section_three_six_icon','field_631708572b1d1'),(160544,4695,'section_three_section_three_six_title','BI: Automated Reporting'),(160545,4695,'_section_three_section_three_six_title','field_631708712b1d2'),(160546,4695,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160547,4695,'_section_three_section_three_six_content','field_6317088d2b1d3'),(160548,4695,'section_three_section_three_seven_icon','4693'),(160549,4695,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(160550,4695,'section_three_section_three_seven_title','Detecting Spam in Emails'),(160551,4695,'_section_three_section_three_seven_title','field_631708da2b1d6'),(160552,4695,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160553,4695,'_section_three_section_three_seven_content','field_631708f62b1d7'),(160554,4695,'section_three_section_three_eight_icon','4694'),(160555,4695,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(160556,4695,'section_three_section_three_eight_title','Analytics'),(160557,4695,'_section_three_section_three_eight_title','field_631709462b1da'),(160558,4695,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160559,4695,'_section_three_section_three_eight_content','field_6317095e2b1db'),(160560,4695,'section_three',''),(160561,4695,'_section_three','field_6316fcf4f751a'),(160562,4695,'section_four_section_four_content',''),(160563,4695,'_section_four_section_four_content','field_63170ac9aa9a2'),(160564,4695,'section_four_section_four_button_text',''),(160565,4695,'_section_four_section_four_button_text','field_63170b08aa9a3'),(160566,4695,'section_four',''),(160567,4695,'_section_four','field_63170a81aa9a1'),(160568,4695,'section_five_section_five_title',''),(160569,4695,'_section_five_section_five_title','field_63170b8564fc2'),(160570,4695,'section_five_section_five_quote',''),(160571,4695,'_section_five_section_five_quote','field_63170b9a64fc3'),(160572,4695,'section_five_section_five_footer',''),(160573,4695,'_section_five_section_five_footer','field_63170bad64fc4'),(160574,4695,'section_five',''),(160575,4695,'_section_five','field_63170b5f64fc1'),(160576,4695,'footer_title',''),(160577,4695,'_footer_title','field_63170f4c8cc9a'),(160578,4695,'footer_button_text',''),(160579,4695,'_footer_button_text','field_63170f6f8cc9b'),(160583,4696,'top-image',''),(160584,4696,'_top-image','field_5c488d805f5d4'),(160585,4696,'top_title',''),(160586,4696,'_top_title','field_5edfac92f4226'),(160587,4696,'top-text',''),(160588,4696,'_top-text','field_5c488e575f5d5'),(160589,4696,'features',''),(160590,4696,'_features','field_5c4890bc3ae1f'),(160591,4696,'about-title',''),(160592,4696,'_about-title','field_5c488e7a5f5d6'),(160593,4696,'about-text',''),(160594,4696,'_about-text','field_5c488e945f5d7'),(160595,4696,'problems',''),(160596,4696,'_problems','field_5c488ec75f5d8'),(160597,4696,'solutions',''),(160598,4696,'_solutions','field_5c488ed95f5d9'),(160599,4696,'difference',''),(160600,4696,'_difference','field_5c488eed5f5da'),(160601,4696,'panel',''),(160602,4696,'_panel','field_5c488f195f5db'),(160603,4696,'more-text',''),(160604,4696,'_more-text','field_5c488f8f5f5df'),(160605,4696,'phrase',''),(160606,4696,'_phrase','field_5c488faf5f5e0'),(160607,4696,'author',''),(160608,4696,'_author','field_5c488fba5f5e1'),(160609,4696,'top_description','Machine Learning'),(160610,4696,'_top_description','field_63170e008cc99'),(160611,4696,'top_background_desktop','4677'),(160612,4696,'_top_background_desktop','field_631eb1728b709'),(160613,4696,'top_background_mobile','4677'),(160614,4696,'_top_background_mobile','field_631eb1988b70a'),(160615,4696,'section_one_section_one_breadcrumb','THE FUTURE'),(160616,4696,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(160617,4696,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(160618,4696,'_section_one_section_one_title','field_6316f2764091e'),(160619,4696,'section_one_section_one_content','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(160620,4696,'_section_one_section_one_content','field_6316f2934091f'),(160621,4696,'section_one_section_one_image','4679'),(160622,4696,'_section_one_section_one_image','field_6316f2ab40920'),(160623,4696,'section_one_section_one_button_text','Book a consultation now'),(160624,4696,'_section_one_section_one_button_text','field_6316f2ca40921'),(160625,4696,'section_one',''),(160626,4696,'_section_one','field_6316f7ba1cd27'),(160627,4696,'section_two_section_two_button_text','Book a consultation now'),(160628,4696,'_section_two_section_two_button_text','field_6316fe1ff751b'),(160629,4696,'section_two_section_two_tab_one_header_title','Problems'),(160630,4696,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(160631,4696,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(160632,4696,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(160633,4696,'section_two_section_two_tab_one_image','4680'),(160634,4696,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(160635,4696,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(160636,4696,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(160637,4696,'section_two_section_two_tab_one_content','Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(160638,4696,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(160639,4696,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(160640,4696,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(160641,4696,'section_two_section_two_tab_two_header_title','Solutions'),(160642,4696,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(160643,4696,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(160644,4696,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(160645,4696,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(160646,4696,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(160647,4696,'section_two_section_two_tab_two_content_icon_1','4683'),(160648,4696,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(160649,4696,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(160650,4696,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(160651,4696,'section_two_section_two_tab_two_content_icon_2','4684'),(160652,4696,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(160653,4696,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(160654,4696,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(160655,4696,'section_two_section_two_tab_two_content_icon_3','4685'),(160656,4696,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(160657,4696,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(160658,4696,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(160659,4696,'section_two_section_two_tab_two_content_icon_4','4686'),(160660,4696,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(160661,4696,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(160662,4696,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(160663,4696,'section_two_section_two_tab_three_header_title','Difference'),(160664,4696,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(160665,4696,'section_two_section_two_tab_three_title',''),(160666,4696,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(160667,4696,'section_two_section_two_tab_three_content',''),(160668,4696,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(160669,4696,'section_two_section_two_tab_three_image',''),(160670,4696,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(160671,4696,'section_two',''),(160672,4696,'_section_two','field_6316fa2531589'),(160673,4696,'section_three_section_three_title','Trusted Relationships'),(160674,4696,'_section_three_section_three_title','field_6316febdf751c'),(160675,4696,'section_three_section_three_one_icon','4687'),(160676,4696,'_section_three_section_three_one_icon','field_6316fefff751e'),(160677,4696,'section_three_section_three_one_title','Data Entry Automation'),(160678,4696,'_section_three_section_three_one_title','field_6316ff1cf751f'),(160679,4696,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160680,4696,'_section_three_section_three_one_content','field_6316ff29f7520'),(160681,4696,'section_three_section_three_two_icon','4688'),(160682,4696,'_section_three_section_three_two_icon','field_6316ff77f7523'),(160683,4696,'section_three_section_three_two_title','Product Recommendation'),(160684,4696,'_section_three_section_three_two_title','field_6316ff90f7524'),(160685,4696,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160686,4696,'_section_three_section_three_two_content','field_6316ff5df7522'),(160687,4696,'section_three_section_three_three_icon','4689'),(160688,4696,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(160689,4696,'section_three_section_three_three_title','Medical Diagnosis'),(160690,4696,'_section_three_section_three_three_title','field_6316fff5f7527'),(160691,4696,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160692,4696,'_section_three_section_three_three_content','field_63170010f7528'),(160693,4696,'section_three_section_three_four_icon','4690'),(160694,4696,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(160695,4696,'section_three_section_three_four_title','Clients: Who is buying what'),(160696,4696,'_section_three_section_three_four_title','field_631707992b1ca'),(160697,4696,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160698,4696,'_section_three_section_three_four_content','field_631707b42b1cb'),(160699,4696,'section_three_section_three_five_icon','4691'),(160700,4696,'_section_three_section_three_five_icon','field_631707e52b1cd'),(160701,4696,'section_three_section_three_five_title','User Behavior'),(160702,4696,'_section_three_section_three_five_title','field_631708002b1ce'),(160703,4696,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160704,4696,'_section_three_section_three_five_content','field_6317081c2b1cf'),(160705,4696,'section_three_section_three_six_icon','4692'),(160706,4696,'_section_three_section_three_six_icon','field_631708572b1d1'),(160707,4696,'section_three_section_three_six_title','BI: Automated Reporting'),(160708,4696,'_section_three_section_three_six_title','field_631708712b1d2'),(160709,4696,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160710,4696,'_section_three_section_three_six_content','field_6317088d2b1d3'),(160711,4696,'section_three_section_three_seven_icon','4693'),(160712,4696,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(160713,4696,'section_three_section_three_seven_title','Detecting Spam in Emails'),(160714,4696,'_section_three_section_three_seven_title','field_631708da2b1d6'),(160715,4696,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160716,4696,'_section_three_section_three_seven_content','field_631708f62b1d7'),(160717,4696,'section_three_section_three_eight_icon','4694'),(160718,4696,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(160719,4696,'section_three_section_three_eight_title','Analytics'),(160720,4696,'_section_three_section_three_eight_title','field_631709462b1da'),(160721,4696,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160722,4696,'_section_three_section_three_eight_content','field_6317095e2b1db'),(160723,4696,'section_three',''),(160724,4696,'_section_three','field_6316fcf4f751a'),(160725,4696,'section_four_section_four_content','The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford. '),(160726,4696,'_section_four_section_four_content','field_63170ac9aa9a2'),(160727,4696,'section_four_section_four_button_text','Book a consultation now'),(160728,4696,'_section_four_section_four_button_text','field_63170b08aa9a3'),(160729,4696,'section_four',''),(160730,4696,'_section_four','field_63170a81aa9a1'),(160731,4696,'section_five_section_five_title','We listen. We learn. We inform.'),(160732,4696,'_section_five_section_five_title','field_63170b8564fc2'),(160733,4696,'section_five_section_five_quote','

\r\n “76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”\r\n

\r\n

forbes.com

'),(160734,4696,'_section_five_section_five_quote','field_63170b9a64fc3'),(160735,4696,'section_five_section_five_footer',''),(160736,4696,'_section_five_section_five_footer','field_63170bad64fc4'),(160737,4696,'section_five',''),(160738,4696,'_section_five','field_63170b5f64fc1'),(160739,4696,'footer_title',''),(160740,4696,'_footer_title','field_63170f4c8cc9a'),(160741,4696,'footer_button_text',''),(160742,4696,'_footer_button_text','field_63170f6f8cc9b'),(160755,4697,'top-image',''),(160756,4697,'_top-image','field_5c488d805f5d4'),(160757,4697,'top_title',''),(160758,4697,'_top_title','field_5edfac92f4226'),(160759,4697,'top-text',''),(160760,4697,'_top-text','field_5c488e575f5d5'),(160761,4697,'features',''),(160762,4697,'_features','field_5c4890bc3ae1f'),(160763,4697,'about-title',''),(160764,4697,'_about-title','field_5c488e7a5f5d6'),(160765,4697,'about-text',''),(160766,4697,'_about-text','field_5c488e945f5d7'),(160767,4697,'problems',''),(160768,4697,'_problems','field_5c488ec75f5d8'),(160769,4697,'solutions',''),(160770,4697,'_solutions','field_5c488ed95f5d9'),(160771,4697,'difference',''),(160772,4697,'_difference','field_5c488eed5f5da'),(160773,4697,'panel',''),(160774,4697,'_panel','field_5c488f195f5db'),(160775,4697,'more-text',''),(160776,4697,'_more-text','field_5c488f8f5f5df'),(160777,4697,'phrase',''),(160778,4697,'_phrase','field_5c488faf5f5e0'),(160779,4697,'author',''),(160780,4697,'_author','field_5c488fba5f5e1'),(160781,4697,'top_description','Machine Learning'),(160782,4697,'_top_description','field_63170e008cc99'),(160783,4697,'top_background_desktop','4677'),(160784,4697,'_top_background_desktop','field_631eb1728b709'),(160785,4697,'top_background_mobile','4677'),(160786,4697,'_top_background_mobile','field_631eb1988b70a'),(160787,4697,'section_one_section_one_breadcrumb','THE FUTURE'),(160788,4697,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(160789,4697,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(160790,4697,'_section_one_section_one_title','field_6316f2764091e'),(160791,4697,'section_one_section_one_content','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(160792,4697,'_section_one_section_one_content','field_6316f2934091f'),(160793,4697,'section_one_section_one_image','4679'),(160794,4697,'_section_one_section_one_image','field_6316f2ab40920'),(160795,4697,'section_one_section_one_button_text','Book a consultation now'),(160796,4697,'_section_one_section_one_button_text','field_6316f2ca40921'),(160797,4697,'section_one',''),(160798,4697,'_section_one','field_6316f7ba1cd27'),(160799,4697,'section_two_section_two_button_text','Book a consultation now'),(160800,4697,'_section_two_section_two_button_text','field_6316fe1ff751b'),(160801,4697,'section_two_section_two_tab_one_header_title','Problems'),(160802,4697,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(160803,4697,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(160804,4697,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(160805,4697,'section_two_section_two_tab_one_image','4680'),(160806,4697,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(160807,4697,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(160808,4697,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(160809,4697,'section_two_section_two_tab_one_content','Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(160810,4697,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(160811,4697,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(160812,4697,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(160813,4697,'section_two_section_two_tab_two_header_title','Solutions'),(160814,4697,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(160815,4697,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(160816,4697,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(160817,4697,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(160818,4697,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(160819,4697,'section_two_section_two_tab_two_content_icon_1','4683'),(160820,4697,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(160821,4697,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(160822,4697,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(160823,4697,'section_two_section_two_tab_two_content_icon_2','4684'),(160824,4697,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(160825,4697,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(160826,4697,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(160827,4697,'section_two_section_two_tab_two_content_icon_3','4685'),(160828,4697,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(160829,4697,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(160830,4697,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(160831,4697,'section_two_section_two_tab_two_content_icon_4','4686'),(160832,4697,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(160833,4697,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(160834,4697,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(160835,4697,'section_two_section_two_tab_three_header_title','Difference'),(160836,4697,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(160837,4697,'section_two_section_two_tab_three_title',''),(160838,4697,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(160839,4697,'section_two_section_two_tab_three_content',''),(160840,4697,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(160841,4697,'section_two_section_two_tab_three_image',''),(160842,4697,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(160843,4697,'section_two',''),(160844,4697,'_section_two','field_6316fa2531589'),(160845,4697,'section_three_section_three_title','Trusted Relationships'),(160846,4697,'_section_three_section_three_title','field_6316febdf751c'),(160847,4697,'section_three_section_three_one_icon','4687'),(160848,4697,'_section_three_section_three_one_icon','field_6316fefff751e'),(160849,4697,'section_three_section_three_one_title','Data Entry Automation'),(160850,4697,'_section_three_section_three_one_title','field_6316ff1cf751f'),(160851,4697,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160852,4697,'_section_three_section_three_one_content','field_6316ff29f7520'),(160853,4697,'section_three_section_three_two_icon','4688'),(160854,4697,'_section_three_section_three_two_icon','field_6316ff77f7523'),(160855,4697,'section_three_section_three_two_title','Product Recommendation'),(160856,4697,'_section_three_section_three_two_title','field_6316ff90f7524'),(160857,4697,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160858,4697,'_section_three_section_three_two_content','field_6316ff5df7522'),(160859,4697,'section_three_section_three_three_icon','4689'),(160860,4697,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(160861,4697,'section_three_section_three_three_title','Medical Diagnosis'),(160862,4697,'_section_three_section_three_three_title','field_6316fff5f7527'),(160863,4697,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160864,4697,'_section_three_section_three_three_content','field_63170010f7528'),(160865,4697,'section_three_section_three_four_icon','4690'),(160866,4697,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(160867,4697,'section_three_section_three_four_title','Clients: Who is buying what'),(160868,4697,'_section_three_section_three_four_title','field_631707992b1ca'),(160869,4697,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160870,4697,'_section_three_section_three_four_content','field_631707b42b1cb'),(160871,4697,'section_three_section_three_five_icon','4691'),(160872,4697,'_section_three_section_three_five_icon','field_631707e52b1cd'),(160873,4697,'section_three_section_three_five_title','User Behavior'),(160874,4697,'_section_three_section_three_five_title','field_631708002b1ce'),(160875,4697,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160876,4697,'_section_three_section_three_five_content','field_6317081c2b1cf'),(160877,4697,'section_three_section_three_six_icon','4692'),(160878,4697,'_section_three_section_three_six_icon','field_631708572b1d1'),(160879,4697,'section_three_section_three_six_title','BI: Automated Reporting'),(160880,4697,'_section_three_section_three_six_title','field_631708712b1d2'),(160881,4697,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160882,4697,'_section_three_section_three_six_content','field_6317088d2b1d3'),(160883,4697,'section_three_section_three_seven_icon','4693'),(160884,4697,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(160885,4697,'section_three_section_three_seven_title','Detecting Spam in Emails'),(160886,4697,'_section_three_section_three_seven_title','field_631708da2b1d6'),(160887,4697,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160888,4697,'_section_three_section_three_seven_content','field_631708f62b1d7'),(160889,4697,'section_three_section_three_eight_icon','4694'),(160890,4697,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(160891,4697,'section_three_section_three_eight_title','Analytics'),(160892,4697,'_section_three_section_three_eight_title','field_631709462b1da'),(160893,4697,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(160894,4697,'_section_three_section_three_eight_content','field_6317095e2b1db'),(160895,4697,'section_three',''),(160896,4697,'_section_three','field_6316fcf4f751a'),(160897,4697,'section_four_section_four_content','The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford. '),(160898,4697,'_section_four_section_four_content','field_63170ac9aa9a2'),(160899,4697,'section_four_section_four_button_text','Book a consultation now'),(160900,4697,'_section_four_section_four_button_text','field_63170b08aa9a3'),(160901,4697,'section_four',''),(160902,4697,'_section_four','field_63170a81aa9a1'),(160903,4697,'section_five_section_five_title','We listen. We learn. We inform.'),(160904,4697,'_section_five_section_five_title','field_63170b8564fc2'),(160905,4697,'section_five_section_five_quote','“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”'),(160906,4697,'_section_five_section_five_quote','field_63170b9a64fc3'),(160907,4697,'section_five_section_five_footer','forbes.com'),(160908,4697,'_section_five_section_five_footer','field_63170bad64fc4'),(160909,4697,'section_five',''),(160910,4697,'_section_five','field_63170b5f64fc1'),(160911,4697,'footer_title','We treat your business like our own.'),(160912,4697,'_footer_title','field_63170f4c8cc9a'),(160913,4697,'footer_button_text',''),(160914,4697,'_footer_button_text','field_63170f6f8cc9b'),(160927,694,'_pinterest_shares','0'),(160928,694,'_total_shares','0'),(160933,693,'_pinterest_shares','0'),(160934,693,'_total_shares','0'),(160939,4698,'top-image',''),(160940,4698,'_top-image','field_5c488d805f5d4'),(160941,4698,'top_title',''),(160942,4698,'_top_title','field_5edfac92f4226'),(160943,4698,'top-text',''),(160944,4698,'_top-text','field_5c488e575f5d5'),(160945,4698,'features',''),(160946,4698,'_features','field_5c4890bc3ae1f'),(160947,4698,'about-title',''),(160948,4698,'_about-title','field_5c488e7a5f5d6'),(160949,4698,'about-text',''),(160950,4698,'_about-text','field_5c488e945f5d7'),(160951,4698,'problems',''),(160952,4698,'_problems','field_5c488ec75f5d8'),(160953,4698,'solutions',''),(160954,4698,'_solutions','field_5c488ed95f5d9'),(160955,4698,'difference',''),(160956,4698,'_difference','field_5c488eed5f5da'),(160957,4698,'panel',''),(160958,4698,'_panel','field_5c488f195f5db'),(160959,4698,'more-text',''),(160960,4698,'_more-text','field_5c488f8f5f5df'),(160961,4698,'phrase',''),(160962,4698,'_phrase','field_5c488faf5f5e0'),(160963,4698,'author',''),(160964,4698,'_author','field_5c488fba5f5e1'),(160965,4698,'top_description','Machine Learning'),(160966,4698,'_top_description','field_63170e008cc99'),(160967,4698,'top_background_desktop','4677'),(160968,4698,'_top_background_desktop','field_631eb1728b709'),(160969,4698,'top_background_mobile','4677'),(160970,4698,'_top_background_mobile','field_631eb1988b70a'),(160971,4698,'section_one_section_one_breadcrumb','THE FUTURE'),(160972,4698,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(160973,4698,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(160974,4698,'_section_one_section_one_title','field_6316f2764091e'),(160975,4698,'section_one_section_one_content','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(160976,4698,'_section_one_section_one_content','field_6316f2934091f'),(160977,4698,'section_one_section_one_image','4679'),(160978,4698,'_section_one_section_one_image','field_6316f2ab40920'),(160979,4698,'section_one_section_one_button_text','Book a consultation now'),(160980,4698,'_section_one_section_one_button_text','field_6316f2ca40921'),(160981,4698,'section_one',''),(160982,4698,'_section_one','field_6316f7ba1cd27'),(160983,4698,'section_two_section_two_button_text','Book a consultation now'),(160984,4698,'_section_two_section_two_button_text','field_6316fe1ff751b'),(160985,4698,'section_two_section_two_tab_one_header_title','Problems'),(160986,4698,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(160987,4698,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(160988,4698,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(160989,4698,'section_two_section_two_tab_one_image','4680'),(160990,4698,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(160991,4698,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(160992,4698,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(160993,4698,'section_two_section_two_tab_one_content','Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(160994,4698,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(160995,4698,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(160996,4698,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(160997,4698,'section_two_section_two_tab_two_header_title','Solutions'),(160998,4698,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(160999,4698,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(161000,4698,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(161001,4698,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(161002,4698,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(161003,4698,'section_two_section_two_tab_two_content_icon_1','4683'),(161004,4698,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(161005,4698,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(161006,4698,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(161007,4698,'section_two_section_two_tab_two_content_icon_2','4684'),(161008,4698,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(161009,4698,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(161010,4698,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(161011,4698,'section_two_section_two_tab_two_content_icon_3','4685'),(161012,4698,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(161013,4698,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(161014,4698,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(161015,4698,'section_two_section_two_tab_two_content_icon_4','4686'),(161016,4698,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(161017,4698,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(161018,4698,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(161019,4698,'section_two_section_two_tab_three_header_title','Difference'),(161020,4698,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(161021,4698,'section_two_section_two_tab_three_title',''),(161022,4698,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(161023,4698,'section_two_section_two_tab_three_content',''),(161024,4698,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(161025,4698,'section_two_section_two_tab_three_image',''),(161026,4698,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(161027,4698,'section_two',''),(161028,4698,'_section_two','field_6316fa2531589'),(161029,4698,'section_three_section_three_title','Trusted Relationships'),(161030,4698,'_section_three_section_three_title','field_6316febdf751c'),(161031,4698,'section_three_section_three_one_icon','4687'),(161032,4698,'_section_three_section_three_one_icon','field_6316fefff751e'),(161033,4698,'section_three_section_three_one_title','Data Entry Automation'),(161034,4698,'_section_three_section_three_one_title','field_6316ff1cf751f'),(161035,4698,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161036,4698,'_section_three_section_three_one_content','field_6316ff29f7520'),(161037,4698,'section_three_section_three_two_icon','4688'),(161038,4698,'_section_three_section_three_two_icon','field_6316ff77f7523'),(161039,4698,'section_three_section_three_two_title','Product Recommendation'),(161040,4698,'_section_three_section_three_two_title','field_6316ff90f7524'),(161041,4698,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161042,4698,'_section_three_section_three_two_content','field_6316ff5df7522'),(161043,4698,'section_three_section_three_three_icon','4689'),(161044,4698,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(161045,4698,'section_three_section_three_three_title','Medical Diagnosis'),(161046,4698,'_section_three_section_three_three_title','field_6316fff5f7527'),(161047,4698,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161048,4698,'_section_three_section_three_three_content','field_63170010f7528'),(161049,4698,'section_three_section_three_four_icon','4690'),(161050,4698,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(161051,4698,'section_three_section_three_four_title','Clients: Who is buying what'),(161052,4698,'_section_three_section_three_four_title','field_631707992b1ca'),(161053,4698,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161054,4698,'_section_three_section_three_four_content','field_631707b42b1cb'),(161055,4698,'section_three_section_three_five_icon','4691'),(161056,4698,'_section_three_section_three_five_icon','field_631707e52b1cd'),(161057,4698,'section_three_section_three_five_title','User Behavior'),(161058,4698,'_section_three_section_three_five_title','field_631708002b1ce'),(161059,4698,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161060,4698,'_section_three_section_three_five_content','field_6317081c2b1cf'),(161061,4698,'section_three_section_three_six_icon','4692'),(161062,4698,'_section_three_section_three_six_icon','field_631708572b1d1'),(161063,4698,'section_three_section_three_six_title','BI: Automated Reporting'),(161064,4698,'_section_three_section_three_six_title','field_631708712b1d2'),(161065,4698,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161066,4698,'_section_three_section_three_six_content','field_6317088d2b1d3'),(161067,4698,'section_three_section_three_seven_icon','4693'),(161068,4698,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(161069,4698,'section_three_section_three_seven_title','Detecting Spam in Emails'),(161070,4698,'_section_three_section_three_seven_title','field_631708da2b1d6'),(161071,4698,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161072,4698,'_section_three_section_three_seven_content','field_631708f62b1d7'),(161073,4698,'section_three_section_three_eight_icon','4694'),(161074,4698,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(161075,4698,'section_three_section_three_eight_title','Analytics'),(161076,4698,'_section_three_section_three_eight_title','field_631709462b1da'),(161077,4698,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161078,4698,'_section_three_section_three_eight_content','field_6317095e2b1db'),(161079,4698,'section_three',''),(161080,4698,'_section_three','field_6316fcf4f751a'),(161081,4698,'section_four_section_four_content','The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford. '),(161082,4698,'_section_four_section_four_content','field_63170ac9aa9a2'),(161083,4698,'section_four_section_four_button_text','Book a consultation now'),(161084,4698,'_section_four_section_four_button_text','field_63170b08aa9a3'),(161085,4698,'section_four',''),(161086,4698,'_section_four','field_63170a81aa9a1'),(161087,4698,'section_five_section_five_title','We listen. We learn. We inform.'),(161088,4698,'_section_five_section_five_title','field_63170b8564fc2'),(161089,4698,'section_five_section_five_quote','“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”'),(161090,4698,'_section_five_section_five_quote','field_63170b9a64fc3'),(161091,4698,'section_five_section_five_footer','forbes.com'),(161092,4698,'_section_five_section_five_footer','field_63170bad64fc4'),(161093,4698,'section_five',''),(161094,4698,'_section_five','field_63170b5f64fc1'),(161095,4698,'footer_title','We treat your business like our own.'),(161096,4698,'_footer_title','field_63170f4c8cc9a'),(161097,4698,'footer_button_text',''),(161098,4698,'_footer_button_text','field_63170f6f8cc9b'),(161099,4699,'top-image',''),(161100,4699,'_top-image','field_5c488d805f5d4'),(161101,4699,'top_title',''),(161102,4699,'_top_title','field_5edfac92f4226'),(161103,4699,'top-text',''),(161104,4699,'_top-text','field_5c488e575f5d5'),(161105,4699,'features',''),(161106,4699,'_features','field_5c4890bc3ae1f'),(161107,4699,'about-title',''),(161108,4699,'_about-title','field_5c488e7a5f5d6'),(161109,4699,'about-text',''),(161110,4699,'_about-text','field_5c488e945f5d7'),(161111,4699,'problems',''),(161112,4699,'_problems','field_5c488ec75f5d8'),(161113,4699,'solutions',''),(161114,4699,'_solutions','field_5c488ed95f5d9'),(161115,4699,'difference',''),(161116,4699,'_difference','field_5c488eed5f5da'),(161117,4699,'panel',''),(161118,4699,'_panel','field_5c488f195f5db'),(161119,4699,'more-text',''),(161120,4699,'_more-text','field_5c488f8f5f5df'),(161121,4699,'phrase',''),(161122,4699,'_phrase','field_5c488faf5f5e0'),(161123,4699,'author',''),(161124,4699,'_author','field_5c488fba5f5e1'),(161125,4699,'top_description','Machine Learning'),(161126,4699,'_top_description','field_63170e008cc99'),(161127,4699,'top_background_desktop','4677'),(161128,4699,'_top_background_desktop','field_631eb1728b709'),(161129,4699,'top_background_mobile','4677'),(161130,4699,'_top_background_mobile','field_631eb1988b70a'),(161131,4699,'section_one_section_one_breadcrumb','THE FUTURE'),(161132,4699,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(161133,4699,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(161134,4699,'_section_one_section_one_title','field_6316f2764091e'),(161135,4699,'section_one_section_one_content','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(161136,4699,'_section_one_section_one_content','field_6316f2934091f'),(161137,4699,'section_one_section_one_image','4679'),(161138,4699,'_section_one_section_one_image','field_6316f2ab40920'),(161139,4699,'section_one_section_one_button_text','Book a consultation now'),(161140,4699,'_section_one_section_one_button_text','field_6316f2ca40921'),(161141,4699,'section_one',''),(161142,4699,'_section_one','field_6316f7ba1cd27'),(161143,4699,'section_two_section_two_button_text','Book a consultation now'),(161144,4699,'_section_two_section_two_button_text','field_6316fe1ff751b'),(161145,4699,'section_two_section_two_tab_one_header_title','Problems'),(161146,4699,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(161147,4699,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(161148,4699,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(161149,4699,'section_two_section_two_tab_one_image','4680'),(161150,4699,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(161151,4699,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(161152,4699,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(161153,4699,'section_two_section_two_tab_one_content','Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(161154,4699,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(161155,4699,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(161156,4699,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(161157,4699,'section_two_section_two_tab_two_header_title','Solutions'),(161158,4699,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(161159,4699,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(161160,4699,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(161161,4699,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(161162,4699,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(161163,4699,'section_two_section_two_tab_two_content_icon_1','4683'),(161164,4699,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(161165,4699,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(161166,4699,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(161167,4699,'section_two_section_two_tab_two_content_icon_2','4684'),(161168,4699,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(161169,4699,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(161170,4699,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(161171,4699,'section_two_section_two_tab_two_content_icon_3','4685'),(161172,4699,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(161173,4699,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(161174,4699,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(161175,4699,'section_two_section_two_tab_two_content_icon_4','4686'),(161176,4699,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(161177,4699,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(161178,4699,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(161179,4699,'section_two_section_two_tab_three_header_title','Difference'),(161180,4699,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(161181,4699,'section_two_section_two_tab_three_title',''),(161182,4699,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(161183,4699,'section_two_section_two_tab_three_content',''),(161184,4699,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(161185,4699,'section_two_section_two_tab_three_image',''),(161186,4699,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(161187,4699,'section_two',''),(161188,4699,'_section_two','field_6316fa2531589'),(161189,4699,'section_three_section_three_title','Trusted Relationships'),(161190,4699,'_section_three_section_three_title','field_6316febdf751c'),(161191,4699,'section_three_section_three_one_icon','4687'),(161192,4699,'_section_three_section_three_one_icon','field_6316fefff751e'),(161193,4699,'section_three_section_three_one_title','Data Entry Automation'),(161194,4699,'_section_three_section_three_one_title','field_6316ff1cf751f'),(161195,4699,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161196,4699,'_section_three_section_three_one_content','field_6316ff29f7520'),(161197,4699,'section_three_section_three_two_icon','4688'),(161198,4699,'_section_three_section_three_two_icon','field_6316ff77f7523'),(161199,4699,'section_three_section_three_two_title','Product Recommendation'),(161200,4699,'_section_three_section_three_two_title','field_6316ff90f7524'),(161201,4699,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161202,4699,'_section_three_section_three_two_content','field_6316ff5df7522'),(161203,4699,'section_three_section_three_three_icon','4689'),(161204,4699,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(161205,4699,'section_three_section_three_three_title','Medical Diagnosis'),(161206,4699,'_section_three_section_three_three_title','field_6316fff5f7527'),(161207,4699,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161208,4699,'_section_three_section_three_three_content','field_63170010f7528'),(161209,4699,'section_three_section_three_four_icon','4690'),(161210,4699,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(161211,4699,'section_three_section_three_four_title','Clients: Who is buying what'),(161212,4699,'_section_three_section_three_four_title','field_631707992b1ca'),(161213,4699,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161214,4699,'_section_three_section_three_four_content','field_631707b42b1cb'),(161215,4699,'section_three_section_three_five_icon','4691'),(161216,4699,'_section_three_section_three_five_icon','field_631707e52b1cd'),(161217,4699,'section_three_section_three_five_title','User Behavior'),(161218,4699,'_section_three_section_three_five_title','field_631708002b1ce'),(161219,4699,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161220,4699,'_section_three_section_three_five_content','field_6317081c2b1cf'),(161221,4699,'section_three_section_three_six_icon','4692'),(161222,4699,'_section_three_section_three_six_icon','field_631708572b1d1'),(161223,4699,'section_three_section_three_six_title','BI: Automated Reporting'),(161224,4699,'_section_three_section_three_six_title','field_631708712b1d2'),(161225,4699,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161226,4699,'_section_three_section_three_six_content','field_6317088d2b1d3'),(161227,4699,'section_three_section_three_seven_icon','4693'),(161228,4699,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(161229,4699,'section_three_section_three_seven_title','Detecting Spam in Emails'),(161230,4699,'_section_three_section_three_seven_title','field_631708da2b1d6'),(161231,4699,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161232,4699,'_section_three_section_three_seven_content','field_631708f62b1d7'),(161233,4699,'section_three_section_three_eight_icon','4694'),(161234,4699,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(161235,4699,'section_three_section_three_eight_title','Analytics'),(161236,4699,'_section_three_section_three_eight_title','field_631709462b1da'),(161237,4699,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161238,4699,'_section_three_section_three_eight_content','field_6317095e2b1db'),(161239,4699,'section_three',''),(161240,4699,'_section_three','field_6316fcf4f751a'),(161241,4699,'section_four_section_four_content','The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford. '),(161242,4699,'_section_four_section_four_content','field_63170ac9aa9a2'),(161243,4699,'section_four_section_four_button_text','Book a consultation now'),(161244,4699,'_section_four_section_four_button_text','field_63170b08aa9a3'),(161245,4699,'section_four',''),(161246,4699,'_section_four','field_63170a81aa9a1'),(161247,4699,'section_five_section_five_title','We listen. We learn. We inform.'),(161248,4699,'_section_five_section_five_title','field_63170b8564fc2'),(161249,4699,'section_five_section_five_quote','“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”'),(161250,4699,'_section_five_section_five_quote','field_63170b9a64fc3'),(161251,4699,'section_five_section_five_footer','forbes.com'),(161252,4699,'_section_five_section_five_footer','field_63170bad64fc4'),(161253,4699,'section_five',''),(161254,4699,'_section_five','field_63170b5f64fc1'),(161255,4699,'footer_title','We treat your business like our own.'),(161256,4699,'_footer_title','field_63170f4c8cc9a'),(161257,4699,'footer_button_text',''),(161258,4699,'_footer_button_text','field_63170f6f8cc9b'),(161301,4563,'top_title_1','CLOUD NATIVE SOLUTIONS'),(161302,4563,'_top_title_1','field_631ed55492adc'),(161303,4701,'top-image',''),(161304,4701,'_top-image','field_5c488d805f5d4'),(161305,4701,'top_title',''),(161306,4701,'_top_title','field_5edfac92f4226'),(161307,4701,'top-text',''),(161308,4701,'_top-text','field_5c488e575f5d5'),(161309,4701,'features',''),(161310,4701,'_features','field_5c4890bc3ae1f'),(161311,4701,'about-title',''),(161312,4701,'_about-title','field_5c488e7a5f5d6'),(161313,4701,'about-text',''),(161314,4701,'_about-text','field_5c488e945f5d7'),(161315,4701,'problems',''),(161316,4701,'_problems','field_5c488ec75f5d8'),(161317,4701,'solutions',''),(161318,4701,'_solutions','field_5c488ed95f5d9'),(161319,4701,'difference',''),(161320,4701,'_difference','field_5c488eed5f5da'),(161321,4701,'panel',''),(161322,4701,'_panel','field_5c488f195f5db'),(161323,4701,'more-text',''),(161324,4701,'_more-text','field_5c488f8f5f5df'),(161325,4701,'phrase',''),(161326,4701,'_phrase','field_5c488faf5f5e0'),(161327,4701,'author',''),(161328,4701,'_author','field_5c488fba5f5e1'),(161329,4701,'top_description','Machine Learning'),(161330,4701,'_top_description','field_63170e008cc99'),(161331,4701,'top_background_desktop','4677'),(161332,4701,'_top_background_desktop','field_631eb1728b709'),(161333,4701,'top_background_mobile','4677'),(161334,4701,'_top_background_mobile','field_631eb1988b70a'),(161335,4701,'section_one_section_one_breadcrumb','THE FUTURE'),(161336,4701,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(161337,4701,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(161338,4701,'_section_one_section_one_title','field_6316f2764091e'),(161339,4701,'section_one_section_one_content','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(161340,4701,'_section_one_section_one_content','field_6316f2934091f'),(161341,4701,'section_one_section_one_image','4679'),(161342,4701,'_section_one_section_one_image','field_6316f2ab40920'),(161343,4701,'section_one_section_one_button_text','Book a consultation now'),(161344,4701,'_section_one_section_one_button_text','field_6316f2ca40921'),(161345,4701,'section_one',''),(161346,4701,'_section_one','field_6316f7ba1cd27'),(161347,4701,'section_two_section_two_button_text','Book a consultation now'),(161348,4701,'_section_two_section_two_button_text','field_6316fe1ff751b'),(161349,4701,'section_two_section_two_tab_one_header_title','Problems'),(161350,4701,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(161351,4701,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(161352,4701,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(161353,4701,'section_two_section_two_tab_one_image','4680'),(161354,4701,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(161355,4701,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(161356,4701,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(161357,4701,'section_two_section_two_tab_one_content','Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(161358,4701,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(161359,4701,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(161360,4701,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(161361,4701,'section_two_section_two_tab_two_header_title','Solutions'),(161362,4701,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(161363,4701,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(161364,4701,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(161365,4701,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(161366,4701,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(161367,4701,'section_two_section_two_tab_two_content_icon_1','4683'),(161368,4701,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(161369,4701,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(161370,4701,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(161371,4701,'section_two_section_two_tab_two_content_icon_2','4684'),(161372,4701,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(161373,4701,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(161374,4701,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(161375,4701,'section_two_section_two_tab_two_content_icon_3','4685'),(161376,4701,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(161377,4701,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(161378,4701,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(161379,4701,'section_two_section_two_tab_two_content_icon_4','4686'),(161380,4701,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(161381,4701,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(161382,4701,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(161383,4701,'section_two_section_two_tab_three_header_title','Difference'),(161384,4701,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(161385,4701,'section_two_section_two_tab_three_title',''),(161386,4701,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(161387,4701,'section_two_section_two_tab_three_content',''),(161388,4701,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(161389,4701,'section_two_section_two_tab_three_image',''),(161390,4701,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(161391,4701,'section_two',''),(161392,4701,'_section_two','field_6316fa2531589'),(161393,4701,'section_three_section_three_title','Trusted Relationships'),(161394,4701,'_section_three_section_three_title','field_6316febdf751c'),(161395,4701,'section_three_section_three_one_icon','4687'),(161396,4701,'_section_three_section_three_one_icon','field_6316fefff751e'),(161397,4701,'section_three_section_three_one_title','Data Entry Automation'),(161398,4701,'_section_three_section_three_one_title','field_6316ff1cf751f'),(161399,4701,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161400,4701,'_section_three_section_three_one_content','field_6316ff29f7520'),(161401,4701,'section_three_section_three_two_icon','4688'),(161402,4701,'_section_three_section_three_two_icon','field_6316ff77f7523'),(161403,4701,'section_three_section_three_two_title','Product Recommendation'),(161404,4701,'_section_three_section_three_two_title','field_6316ff90f7524'),(161405,4701,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161406,4701,'_section_three_section_three_two_content','field_6316ff5df7522'),(161407,4701,'section_three_section_three_three_icon','4689'),(161408,4701,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(161409,4701,'section_three_section_three_three_title','Medical Diagnosis'),(161410,4701,'_section_three_section_three_three_title','field_6316fff5f7527'),(161411,4701,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161412,4701,'_section_three_section_three_three_content','field_63170010f7528'),(161413,4701,'section_three_section_three_four_icon','4690'),(161414,4701,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(161415,4701,'section_three_section_three_four_title','Clients: Who is buying what'),(161416,4701,'_section_three_section_three_four_title','field_631707992b1ca'),(161417,4701,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161418,4701,'_section_three_section_three_four_content','field_631707b42b1cb'),(161419,4701,'section_three_section_three_five_icon','4691'),(161420,4701,'_section_three_section_three_five_icon','field_631707e52b1cd'),(161421,4701,'section_three_section_three_five_title','User Behavior'),(161422,4701,'_section_three_section_three_five_title','field_631708002b1ce'),(161423,4701,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161424,4701,'_section_three_section_three_five_content','field_6317081c2b1cf'),(161425,4701,'section_three_section_three_six_icon','4692'),(161426,4701,'_section_three_section_three_six_icon','field_631708572b1d1'),(161427,4701,'section_three_section_three_six_title','BI: Automated Reporting'),(161428,4701,'_section_three_section_three_six_title','field_631708712b1d2'),(161429,4701,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161430,4701,'_section_three_section_three_six_content','field_6317088d2b1d3'),(161431,4701,'section_three_section_three_seven_icon','4693'),(161432,4701,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(161433,4701,'section_three_section_three_seven_title','Detecting Spam in Emails'),(161434,4701,'_section_three_section_three_seven_title','field_631708da2b1d6'),(161435,4701,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161436,4701,'_section_three_section_three_seven_content','field_631708f62b1d7'),(161437,4701,'section_three_section_three_eight_icon','4694'),(161438,4701,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(161439,4701,'section_three_section_three_eight_title','Analytics'),(161440,4701,'_section_three_section_three_eight_title','field_631709462b1da'),(161441,4701,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161442,4701,'_section_three_section_three_eight_content','field_6317095e2b1db'),(161443,4701,'section_three',''),(161444,4701,'_section_three','field_6316fcf4f751a'),(161445,4701,'section_four_section_four_content','The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford. '),(161446,4701,'_section_four_section_four_content','field_63170ac9aa9a2'),(161447,4701,'section_four_section_four_button_text','Book a consultation now'),(161448,4701,'_section_four_section_four_button_text','field_63170b08aa9a3'),(161449,4701,'section_four',''),(161450,4701,'_section_four','field_63170a81aa9a1'),(161451,4701,'section_five_section_five_title','We listen. We learn. We inform.'),(161452,4701,'_section_five_section_five_title','field_63170b8564fc2'),(161453,4701,'section_five_section_five_quote','“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”'),(161454,4701,'_section_five_section_five_quote','field_63170b9a64fc3'),(161455,4701,'section_five_section_five_footer','forbes.com'),(161456,4701,'_section_five_section_five_footer','field_63170bad64fc4'),(161457,4701,'section_five',''),(161458,4701,'_section_five','field_63170b5f64fc1'),(161459,4701,'footer_title','We treat your business like our own.'),(161460,4701,'_footer_title','field_63170f4c8cc9a'),(161461,4701,'footer_button_text',''),(161462,4701,'_footer_button_text','field_63170f6f8cc9b'),(161463,4701,'top_title_1','CLOUD NATIVE SOLUTIONS'),(161464,4701,'_top_title_1','field_631ed55492adc'),(161471,4618,'_pinterest_shares','0'),(161472,4618,'_total_shares','0'),(161474,4674,'_pinterest_shares','0'),(161475,4674,'_total_shares','0'),(161477,4675,'_pinterest_shares','0'),(161478,4675,'_total_shares','0'),(161480,4573,'_pinterest_shares','0'),(161481,4573,'_total_shares','0'),(161483,4574,'_pinterest_shares','0'),(161484,4574,'_total_shares','0'),(161486,4576,'_pinterest_shares','0'),(161487,4576,'_total_shares','0'),(161489,4610,'_pinterest_shares','0'),(161490,4610,'_total_shares','0'),(161495,4619,'_pinterest_shares','0'),(161496,4619,'_total_shares','0'),(161498,4620,'_pinterest_shares','0'),(161499,4620,'_total_shares','0'),(161507,4700,'_pinterest_shares','0'),(161508,4700,'_total_shares','0'),(161519,4563,'top_title_page','CLOUD NATIVE SOLUTIONS'),(161520,4563,'_top_title_page','field_631ed55492adc'),(161521,4702,'top-image',''),(161522,4702,'_top-image','field_5c488d805f5d4'),(161523,4702,'top_title',''),(161524,4702,'_top_title','field_5edfac92f4226'),(161525,4702,'top-text',''),(161526,4702,'_top-text','field_5c488e575f5d5'),(161527,4702,'features',''),(161528,4702,'_features','field_5c4890bc3ae1f'),(161529,4702,'about-title',''),(161530,4702,'_about-title','field_5c488e7a5f5d6'),(161531,4702,'about-text',''),(161532,4702,'_about-text','field_5c488e945f5d7'),(161533,4702,'problems',''),(161534,4702,'_problems','field_5c488ec75f5d8'),(161535,4702,'solutions',''),(161536,4702,'_solutions','field_5c488ed95f5d9'),(161537,4702,'difference',''),(161538,4702,'_difference','field_5c488eed5f5da'),(161539,4702,'panel',''),(161540,4702,'_panel','field_5c488f195f5db'),(161541,4702,'more-text',''),(161542,4702,'_more-text','field_5c488f8f5f5df'),(161543,4702,'phrase',''),(161544,4702,'_phrase','field_5c488faf5f5e0'),(161545,4702,'author',''),(161546,4702,'_author','field_5c488fba5f5e1'),(161547,4702,'top_description','Machine Learning'),(161548,4702,'_top_description','field_63170e008cc99'),(161549,4702,'top_background_desktop','4677'),(161550,4702,'_top_background_desktop','field_631eb1728b709'),(161551,4702,'top_background_mobile','4677'),(161552,4702,'_top_background_mobile','field_631eb1988b70a'),(161553,4702,'section_one_section_one_breadcrumb','THE FUTURE'),(161554,4702,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(161555,4702,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(161556,4702,'_section_one_section_one_title','field_6316f2764091e'),(161557,4702,'section_one_section_one_content','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(161558,4702,'_section_one_section_one_content','field_6316f2934091f'),(161559,4702,'section_one_section_one_image','4679'),(161560,4702,'_section_one_section_one_image','field_6316f2ab40920'),(161561,4702,'section_one_section_one_button_text','Book a consultation now'),(161562,4702,'_section_one_section_one_button_text','field_6316f2ca40921'),(161563,4702,'section_one',''),(161564,4702,'_section_one','field_6316f7ba1cd27'),(161565,4702,'section_two_section_two_button_text','Book a consultation now'),(161566,4702,'_section_two_section_two_button_text','field_6316fe1ff751b'),(161567,4702,'section_two_section_two_tab_one_header_title','Problems'),(161568,4702,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(161569,4702,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(161570,4702,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(161571,4702,'section_two_section_two_tab_one_image','4680'),(161572,4702,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(161573,4702,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(161574,4702,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(161575,4702,'section_two_section_two_tab_one_content','Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(161576,4702,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(161577,4702,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(161578,4702,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(161579,4702,'section_two_section_two_tab_two_header_title','Solutions'),(161580,4702,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(161581,4702,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(161582,4702,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(161583,4702,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(161584,4702,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(161585,4702,'section_two_section_two_tab_two_content_icon_1','4683'),(161586,4702,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(161587,4702,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(161588,4702,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(161589,4702,'section_two_section_two_tab_two_content_icon_2','4684'),(161590,4702,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(161591,4702,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(161592,4702,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(161593,4702,'section_two_section_two_tab_two_content_icon_3','4685'),(161594,4702,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(161595,4702,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(161596,4702,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(161597,4702,'section_two_section_two_tab_two_content_icon_4','4686'),(161598,4702,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(161599,4702,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(161600,4702,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(161601,4702,'section_two_section_two_tab_three_header_title','Difference'),(161602,4702,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(161603,4702,'section_two_section_two_tab_three_title',''),(161604,4702,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(161605,4702,'section_two_section_two_tab_three_content',''),(161606,4702,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(161607,4702,'section_two_section_two_tab_three_image',''),(161608,4702,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(161609,4702,'section_two',''),(161610,4702,'_section_two','field_6316fa2531589'),(161611,4702,'section_three_section_three_title','Trusted Relationships'),(161612,4702,'_section_three_section_three_title','field_6316febdf751c'),(161613,4702,'section_three_section_three_one_icon','4687'),(161614,4702,'_section_three_section_three_one_icon','field_6316fefff751e'),(161615,4702,'section_three_section_three_one_title','Data Entry Automation'),(161616,4702,'_section_three_section_three_one_title','field_6316ff1cf751f'),(161617,4702,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161618,4702,'_section_three_section_three_one_content','field_6316ff29f7520'),(161619,4702,'section_three_section_three_two_icon','4688'),(161620,4702,'_section_three_section_three_two_icon','field_6316ff77f7523'),(161621,4702,'section_three_section_three_two_title','Product Recommendation'),(161622,4702,'_section_three_section_three_two_title','field_6316ff90f7524'),(161623,4702,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161624,4702,'_section_three_section_three_two_content','field_6316ff5df7522'),(161625,4702,'section_three_section_three_three_icon','4689'),(161626,4702,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(161627,4702,'section_three_section_three_three_title','Medical Diagnosis'),(161628,4702,'_section_three_section_three_three_title','field_6316fff5f7527'),(161629,4702,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161630,4702,'_section_three_section_three_three_content','field_63170010f7528'),(161631,4702,'section_three_section_three_four_icon','4690'),(161632,4702,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(161633,4702,'section_three_section_three_four_title','Clients: Who is buying what'),(161634,4702,'_section_three_section_three_four_title','field_631707992b1ca'),(161635,4702,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161636,4702,'_section_three_section_three_four_content','field_631707b42b1cb'),(161637,4702,'section_three_section_three_five_icon','4691'),(161638,4702,'_section_three_section_three_five_icon','field_631707e52b1cd'),(161639,4702,'section_three_section_three_five_title','User Behavior'),(161640,4702,'_section_three_section_three_five_title','field_631708002b1ce'),(161641,4702,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161642,4702,'_section_three_section_three_five_content','field_6317081c2b1cf'),(161643,4702,'section_three_section_three_six_icon','4692'),(161644,4702,'_section_three_section_three_six_icon','field_631708572b1d1'),(161645,4702,'section_three_section_three_six_title','BI: Automated Reporting'),(161646,4702,'_section_three_section_three_six_title','field_631708712b1d2'),(161647,4702,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161648,4702,'_section_three_section_three_six_content','field_6317088d2b1d3'),(161649,4702,'section_three_section_three_seven_icon','4693'),(161650,4702,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(161651,4702,'section_three_section_three_seven_title','Detecting Spam in Emails'),(161652,4702,'_section_three_section_three_seven_title','field_631708da2b1d6'),(161653,4702,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161654,4702,'_section_three_section_three_seven_content','field_631708f62b1d7'),(161655,4702,'section_three_section_three_eight_icon','4694'),(161656,4702,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(161657,4702,'section_three_section_three_eight_title','Analytics'),(161658,4702,'_section_three_section_three_eight_title','field_631709462b1da'),(161659,4702,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161660,4702,'_section_three_section_three_eight_content','field_6317095e2b1db'),(161661,4702,'section_three',''),(161662,4702,'_section_three','field_6316fcf4f751a'),(161663,4702,'section_four_section_four_content','The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford. '),(161664,4702,'_section_four_section_four_content','field_63170ac9aa9a2'),(161665,4702,'section_four_section_four_button_text','Book a consultation now'),(161666,4702,'_section_four_section_four_button_text','field_63170b08aa9a3'),(161667,4702,'section_four',''),(161668,4702,'_section_four','field_63170a81aa9a1'),(161669,4702,'section_five_section_five_title','We listen. We learn. We inform.'),(161670,4702,'_section_five_section_five_title','field_63170b8564fc2'),(161671,4702,'section_five_section_five_quote','“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”'),(161672,4702,'_section_five_section_five_quote','field_63170b9a64fc3'),(161673,4702,'section_five_section_five_footer','forbes.com'),(161674,4702,'_section_five_section_five_footer','field_63170bad64fc4'),(161675,4702,'section_five',''),(161676,4702,'_section_five','field_63170b5f64fc1'),(161677,4702,'footer_title','We treat your business like our own.'),(161678,4702,'_footer_title','field_63170f4c8cc9a'),(161679,4702,'footer_button_text',''),(161680,4702,'_footer_button_text','field_63170f6f8cc9b'),(161681,4702,'top_title_1','CLOUD NATIVE SOLUTIONS'),(161682,4702,'_top_title_1','field_631ed55492adc'),(161683,4702,'top_title_page','CLOUD NATIVE SOLUTIONS'),(161684,4702,'_top_title_page','field_631ed55492adc'),(161688,4703,'top-image',''),(161689,4703,'_top-image','field_5c488d805f5d4'),(161690,4703,'top_title',''),(161691,4703,'_top_title','field_5edfac92f4226'),(161692,4703,'top-text',''),(161693,4703,'_top-text','field_5c488e575f5d5'),(161694,4703,'features',''),(161695,4703,'_features','field_5c4890bc3ae1f'),(161696,4703,'about-title',''),(161697,4703,'_about-title','field_5c488e7a5f5d6'),(161698,4703,'about-text',''),(161699,4703,'_about-text','field_5c488e945f5d7'),(161700,4703,'problems',''),(161701,4703,'_problems','field_5c488ec75f5d8'),(161702,4703,'solutions',''),(161703,4703,'_solutions','field_5c488ed95f5d9'),(161704,4703,'difference',''),(161705,4703,'_difference','field_5c488eed5f5da'),(161706,4703,'panel',''),(161707,4703,'_panel','field_5c488f195f5db'),(161708,4703,'more-text',''),(161709,4703,'_more-text','field_5c488f8f5f5df'),(161710,4703,'phrase',''),(161711,4703,'_phrase','field_5c488faf5f5e0'),(161712,4703,'author',''),(161713,4703,'_author','field_5c488fba5f5e1'),(161714,4703,'top_description','Machine Learning'),(161715,4703,'_top_description','field_63170e008cc99'),(161716,4703,'top_background_desktop','4677'),(161717,4703,'_top_background_desktop','field_631eb1728b709'),(161718,4703,'top_background_mobile','4677'),(161719,4703,'_top_background_mobile','field_631eb1988b70a'),(161720,4703,'section_one_section_one_breadcrumb','THE FUTURE'),(161721,4703,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(161722,4703,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(161723,4703,'_section_one_section_one_title','field_6316f2764091e'),(161724,4703,'section_one_section_one_content','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(161725,4703,'_section_one_section_one_content','field_6316f2934091f'),(161726,4703,'section_one_section_one_image','4679'),(161727,4703,'_section_one_section_one_image','field_6316f2ab40920'),(161728,4703,'section_one_section_one_button_text','Book a consultation now'),(161729,4703,'_section_one_section_one_button_text','field_6316f2ca40921'),(161730,4703,'section_one',''),(161731,4703,'_section_one','field_6316f7ba1cd27'),(161732,4703,'section_two_section_two_button_text','Book a consultation now'),(161733,4703,'_section_two_section_two_button_text','field_6316fe1ff751b'),(161734,4703,'section_two_section_two_tab_one_header_title','Problems'),(161735,4703,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(161736,4703,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(161737,4703,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(161738,4703,'section_two_section_two_tab_one_image','4680'),(161739,4703,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(161740,4703,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(161741,4703,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(161742,4703,'section_two_section_two_tab_one_content','Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(161743,4703,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(161744,4703,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(161745,4703,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(161746,4703,'section_two_section_two_tab_two_header_title','Solutions'),(161747,4703,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(161748,4703,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(161749,4703,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(161750,4703,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(161751,4703,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(161752,4703,'section_two_section_two_tab_two_content_icon_1','4683'),(161753,4703,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(161754,4703,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(161755,4703,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(161756,4703,'section_two_section_two_tab_two_content_icon_2','4684'),(161757,4703,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(161758,4703,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(161759,4703,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(161760,4703,'section_two_section_two_tab_two_content_icon_3','4685'),(161761,4703,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(161762,4703,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(161763,4703,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(161764,4703,'section_two_section_two_tab_two_content_icon_4','4686'),(161765,4703,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(161766,4703,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(161767,4703,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(161768,4703,'section_two_section_two_tab_three_header_title','Difference'),(161769,4703,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(161770,4703,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(161771,4703,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(161772,4703,'section_two_section_two_tab_three_content',''),(161773,4703,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(161774,4703,'section_two_section_two_tab_three_image',''),(161775,4703,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(161776,4703,'section_two',''),(161777,4703,'_section_two','field_6316fa2531589'),(161778,4703,'section_three_section_three_title','Trusted Relationships'),(161779,4703,'_section_three_section_three_title','field_6316febdf751c'),(161780,4703,'section_three_section_three_one_icon','4687'),(161781,4703,'_section_three_section_three_one_icon','field_6316fefff751e'),(161782,4703,'section_three_section_three_one_title','Data Entry Automation'),(161783,4703,'_section_three_section_three_one_title','field_6316ff1cf751f'),(161784,4703,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161785,4703,'_section_three_section_three_one_content','field_6316ff29f7520'),(161786,4703,'section_three_section_three_two_icon','4688'),(161787,4703,'_section_three_section_three_two_icon','field_6316ff77f7523'),(161788,4703,'section_three_section_three_two_title','Product Recommendation'),(161789,4703,'_section_three_section_three_two_title','field_6316ff90f7524'),(161790,4703,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161791,4703,'_section_three_section_three_two_content','field_6316ff5df7522'),(161792,4703,'section_three_section_three_three_icon','4689'),(161793,4703,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(161794,4703,'section_three_section_three_three_title','Medical Diagnosis'),(161795,4703,'_section_three_section_three_three_title','field_6316fff5f7527'),(161796,4703,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161797,4703,'_section_three_section_three_three_content','field_63170010f7528'),(161798,4703,'section_three_section_three_four_icon','4690'),(161799,4703,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(161800,4703,'section_three_section_three_four_title','Clients: Who is buying what'),(161801,4703,'_section_three_section_three_four_title','field_631707992b1ca'),(161802,4703,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161803,4703,'_section_three_section_three_four_content','field_631707b42b1cb'),(161804,4703,'section_three_section_three_five_icon','4691'),(161805,4703,'_section_three_section_three_five_icon','field_631707e52b1cd'),(161806,4703,'section_three_section_three_five_title','User Behavior'),(161807,4703,'_section_three_section_three_five_title','field_631708002b1ce'),(161808,4703,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161809,4703,'_section_three_section_three_five_content','field_6317081c2b1cf'),(161810,4703,'section_three_section_three_six_icon','4692'),(161811,4703,'_section_three_section_three_six_icon','field_631708572b1d1'),(161812,4703,'section_three_section_three_six_title','BI: Automated Reporting'),(161813,4703,'_section_three_section_three_six_title','field_631708712b1d2'),(161814,4703,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161815,4703,'_section_three_section_three_six_content','field_6317088d2b1d3'),(161816,4703,'section_three_section_three_seven_icon','4693'),(161817,4703,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(161818,4703,'section_three_section_three_seven_title','Detecting Spam in Emails'),(161819,4703,'_section_three_section_three_seven_title','field_631708da2b1d6'),(161820,4703,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161821,4703,'_section_three_section_three_seven_content','field_631708f62b1d7'),(161822,4703,'section_three_section_three_eight_icon','4694'),(161823,4703,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(161824,4703,'section_three_section_three_eight_title','Analytics'),(161825,4703,'_section_three_section_three_eight_title','field_631709462b1da'),(161826,4703,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161827,4703,'_section_three_section_three_eight_content','field_6317095e2b1db'),(161828,4703,'section_three',''),(161829,4703,'_section_three','field_6316fcf4f751a'),(161830,4703,'section_four_section_four_content','The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford. '),(161831,4703,'_section_four_section_four_content','field_63170ac9aa9a2'),(161832,4703,'section_four_section_four_button_text','Book a consultation now'),(161833,4703,'_section_four_section_four_button_text','field_63170b08aa9a3'),(161834,4703,'section_four',''),(161835,4703,'_section_four','field_63170a81aa9a1'),(161836,4703,'section_five_section_five_title','We listen. We learn. We inform.'),(161837,4703,'_section_five_section_five_title','field_63170b8564fc2'),(161838,4703,'section_five_section_five_quote','“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”'),(161839,4703,'_section_five_section_five_quote','field_63170b9a64fc3'),(161840,4703,'section_five_section_five_footer','forbes.com'),(161841,4703,'_section_five_section_five_footer','field_63170bad64fc4'),(161842,4703,'section_five',''),(161843,4703,'_section_five','field_63170b5f64fc1'),(161844,4703,'footer_title','We treat your business like our own.'),(161845,4703,'_footer_title','field_63170f4c8cc9a'),(161846,4703,'footer_button_text',''),(161847,4703,'_footer_button_text','field_63170f6f8cc9b'),(161848,4703,'top_title_1','CLOUD NATIVE SOLUTIONS'),(161849,4703,'_top_title_1','field_631ed55492adc'),(161850,4703,'top_title_page','CLOUD NATIVE SOLUTIONS'),(161851,4703,'_top_title_page','field_631ed55492adc'),(161852,4704,'top-image',''),(161853,4704,'_top-image','field_5c488d805f5d4'),(161854,4704,'top_title',''),(161855,4704,'_top_title','field_5edfac92f4226'),(161856,4704,'top-text',''),(161857,4704,'_top-text','field_5c488e575f5d5'),(161858,4704,'features',''),(161859,4704,'_features','field_5c4890bc3ae1f'),(161860,4704,'about-title',''),(161861,4704,'_about-title','field_5c488e7a5f5d6'),(161862,4704,'about-text',''),(161863,4704,'_about-text','field_5c488e945f5d7'),(161864,4704,'problems',''),(161865,4704,'_problems','field_5c488ec75f5d8'),(161866,4704,'solutions',''),(161867,4704,'_solutions','field_5c488ed95f5d9'),(161868,4704,'difference',''),(161869,4704,'_difference','field_5c488eed5f5da'),(161870,4704,'panel',''),(161871,4704,'_panel','field_5c488f195f5db'),(161872,4704,'more-text',''),(161873,4704,'_more-text','field_5c488f8f5f5df'),(161874,4704,'phrase',''),(161875,4704,'_phrase','field_5c488faf5f5e0'),(161876,4704,'author',''),(161877,4704,'_author','field_5c488fba5f5e1'),(161878,4704,'top_description','Machine Learning'),(161879,4704,'_top_description','field_63170e008cc99'),(161880,4704,'top_background_desktop','4677'),(161881,4704,'_top_background_desktop','field_631eb1728b709'),(161882,4704,'top_background_mobile','4677'),(161883,4704,'_top_background_mobile','field_631eb1988b70a'),(161884,4704,'section_one_section_one_breadcrumb','THE FUTURE'),(161885,4704,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(161886,4704,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(161887,4704,'_section_one_section_one_title','field_6316f2764091e'),(161888,4704,'section_one_section_one_content','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(161889,4704,'_section_one_section_one_content','field_6316f2934091f'),(161890,4704,'section_one_section_one_image','4679'),(161891,4704,'_section_one_section_one_image','field_6316f2ab40920'),(161892,4704,'section_one_section_one_button_text','Book a consultation now'),(161893,4704,'_section_one_section_one_button_text','field_6316f2ca40921'),(161894,4704,'section_one',''),(161895,4704,'_section_one','field_6316f7ba1cd27'),(161896,4704,'section_two_section_two_button_text','Book a consultation now'),(161897,4704,'_section_two_section_two_button_text','field_6316fe1ff751b'),(161898,4704,'section_two_section_two_tab_one_header_title','Problems'),(161899,4704,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(161900,4704,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(161901,4704,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(161902,4704,'section_two_section_two_tab_one_image','4680'),(161903,4704,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(161904,4704,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(161905,4704,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(161906,4704,'section_two_section_two_tab_one_content','Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(161907,4704,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(161908,4704,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(161909,4704,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(161910,4704,'section_two_section_two_tab_two_header_title','Solutions'),(161911,4704,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(161912,4704,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(161913,4704,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(161914,4704,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(161915,4704,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(161916,4704,'section_two_section_two_tab_two_content_icon_1','4683'),(161917,4704,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(161918,4704,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(161919,4704,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(161920,4704,'section_two_section_two_tab_two_content_icon_2','4684'),(161921,4704,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(161922,4704,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(161923,4704,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(161924,4704,'section_two_section_two_tab_two_content_icon_3','4685'),(161925,4704,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(161926,4704,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(161927,4704,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(161928,4704,'section_two_section_two_tab_two_content_icon_4','4686'),(161929,4704,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(161930,4704,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(161931,4704,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(161932,4704,'section_two_section_two_tab_three_header_title','Difference'),(161933,4704,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(161934,4704,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(161935,4704,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(161936,4704,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(161937,4704,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(161938,4704,'section_two_section_two_tab_three_image',''),(161939,4704,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(161940,4704,'section_two',''),(161941,4704,'_section_two','field_6316fa2531589'),(161942,4704,'section_three_section_three_title','Trusted Relationships'),(161943,4704,'_section_three_section_three_title','field_6316febdf751c'),(161944,4704,'section_three_section_three_one_icon','4687'),(161945,4704,'_section_three_section_three_one_icon','field_6316fefff751e'),(161946,4704,'section_three_section_three_one_title','Data Entry Automation'),(161947,4704,'_section_three_section_three_one_title','field_6316ff1cf751f'),(161948,4704,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161949,4704,'_section_three_section_three_one_content','field_6316ff29f7520'),(161950,4704,'section_three_section_three_two_icon','4688'),(161951,4704,'_section_three_section_three_two_icon','field_6316ff77f7523'),(161952,4704,'section_three_section_three_two_title','Product Recommendation'),(161953,4704,'_section_three_section_three_two_title','field_6316ff90f7524'),(161954,4704,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161955,4704,'_section_three_section_three_two_content','field_6316ff5df7522'),(161956,4704,'section_three_section_three_three_icon','4689'),(161957,4704,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(161958,4704,'section_three_section_three_three_title','Medical Diagnosis'),(161959,4704,'_section_three_section_three_three_title','field_6316fff5f7527'),(161960,4704,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161961,4704,'_section_three_section_three_three_content','field_63170010f7528'),(161962,4704,'section_three_section_three_four_icon','4690'),(161963,4704,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(161964,4704,'section_three_section_three_four_title','Clients: Who is buying what'),(161965,4704,'_section_three_section_three_four_title','field_631707992b1ca'),(161966,4704,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161967,4704,'_section_three_section_three_four_content','field_631707b42b1cb'),(161968,4704,'section_three_section_three_five_icon','4691'),(161969,4704,'_section_three_section_three_five_icon','field_631707e52b1cd'),(161970,4704,'section_three_section_three_five_title','User Behavior'),(161971,4704,'_section_three_section_three_five_title','field_631708002b1ce'),(161972,4704,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161973,4704,'_section_three_section_three_five_content','field_6317081c2b1cf'),(161974,4704,'section_three_section_three_six_icon','4692'),(161975,4704,'_section_three_section_three_six_icon','field_631708572b1d1'),(161976,4704,'section_three_section_three_six_title','BI: Automated Reporting'),(161977,4704,'_section_three_section_three_six_title','field_631708712b1d2'),(161978,4704,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161979,4704,'_section_three_section_three_six_content','field_6317088d2b1d3'),(161980,4704,'section_three_section_three_seven_icon','4693'),(161981,4704,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(161982,4704,'section_three_section_three_seven_title','Detecting Spam in Emails'),(161983,4704,'_section_three_section_three_seven_title','field_631708da2b1d6'),(161984,4704,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161985,4704,'_section_three_section_three_seven_content','field_631708f62b1d7'),(161986,4704,'section_three_section_three_eight_icon','4694'),(161987,4704,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(161988,4704,'section_three_section_three_eight_title','Analytics'),(161989,4704,'_section_three_section_three_eight_title','field_631709462b1da'),(161990,4704,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(161991,4704,'_section_three_section_three_eight_content','field_6317095e2b1db'),(161992,4704,'section_three',''),(161993,4704,'_section_three','field_6316fcf4f751a'),(161994,4704,'section_four_section_four_content','The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford. '),(161995,4704,'_section_four_section_four_content','field_63170ac9aa9a2'),(161996,4704,'section_four_section_four_button_text','Book a consultation now'),(161997,4704,'_section_four_section_four_button_text','field_63170b08aa9a3'),(161998,4704,'section_four',''),(161999,4704,'_section_four','field_63170a81aa9a1'),(162000,4704,'section_five_section_five_title','We listen. We learn. We inform.'),(162001,4704,'_section_five_section_five_title','field_63170b8564fc2'),(162002,4704,'section_five_section_five_quote','“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”'),(162003,4704,'_section_five_section_five_quote','field_63170b9a64fc3'),(162004,4704,'section_five_section_five_footer','forbes.com'),(162005,4704,'_section_five_section_five_footer','field_63170bad64fc4'),(162006,4704,'section_five',''),(162007,4704,'_section_five','field_63170b5f64fc1'),(162008,4704,'footer_title','We treat your business like our own.'),(162009,4704,'_footer_title','field_63170f4c8cc9a'),(162010,4704,'footer_button_text',''),(162011,4704,'_footer_button_text','field_63170f6f8cc9b'),(162012,4704,'top_title_1','CLOUD NATIVE SOLUTIONS'),(162013,4704,'_top_title_1','field_631ed55492adc'),(162014,4704,'top_title_page','CLOUD NATIVE SOLUTIONS'),(162015,4704,'_top_title_page','field_631ed55492adc'),(162022,4705,'_wp_attached_file','2022/09/difference.png'),(162023,4705,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:942;s:6:\"height\";i:246;s:4:\"file\";s:22:\"2022/09/difference.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"difference-300x78.png\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"difference-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:\"difference-768x201.png\";s:5:\"width\";i:768;s:6:\"height\";i:201;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"difference-500x246.png\";s:5:\"width\";i:500;s:6:\"height\";i:246;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:{}}}'),(162024,4705,'_imagify_optimization_level','2'),(162025,4705,'_imagify_status','success'),(162026,4705,'_imagify_data','a:2:{s:5:\"sizes\";a:10:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:63931;s:14:\"optimized_size\";i:21156;s:7:\"percent\";d:66.91;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18501;s:14:\"optimized_size\";i:8776;s:7:\"percent\";d:52.56;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:55665;s:14:\"optimized_size\";i:18438;s:7:\"percent\";d:66.88;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1727;s:14:\"optimized_size\";i:2778;s:7:\"percent\";d:-60.86;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17111;s:14:\"optimized_size\";i:5954;s:7:\"percent\";d:65.2;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:63931;s:14:\"optimized_size\";i:20116;s:7:\"percent\";d:68.53;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:17111;s:14:\"optimized_size\";i:7134;s:7:\"percent\";d:58.31;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1727;s:14:\"optimized_size\";i:524;s:7:\"percent\";d:69.66;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:55665;s:14:\"optimized_size\";i:22443;s:7:\"percent\";d:59.68;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18501;s:14:\"optimized_size\";i:7052;s:7:\"percent\";d:61.88;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:313870;s:14:\"optimized_size\";i:114371;s:7:\"percent\";d:63.56;}}'),(162027,4706,'top-image',''),(162028,4706,'_top-image','field_5c488d805f5d4'),(162029,4706,'top_title',''),(162030,4706,'_top_title','field_5edfac92f4226'),(162031,4706,'top-text',''),(162032,4706,'_top-text','field_5c488e575f5d5'),(162033,4706,'features',''),(162034,4706,'_features','field_5c4890bc3ae1f'),(162035,4706,'about-title',''),(162036,4706,'_about-title','field_5c488e7a5f5d6'),(162037,4706,'about-text',''),(162038,4706,'_about-text','field_5c488e945f5d7'),(162039,4706,'problems',''),(162040,4706,'_problems','field_5c488ec75f5d8'),(162041,4706,'solutions',''),(162042,4706,'_solutions','field_5c488ed95f5d9'),(162043,4706,'difference',''),(162044,4706,'_difference','field_5c488eed5f5da'),(162045,4706,'panel',''),(162046,4706,'_panel','field_5c488f195f5db'),(162047,4706,'more-text',''),(162048,4706,'_more-text','field_5c488f8f5f5df'),(162049,4706,'phrase',''),(162050,4706,'_phrase','field_5c488faf5f5e0'),(162051,4706,'author',''),(162052,4706,'_author','field_5c488fba5f5e1'),(162053,4706,'top_description','Machine Learning'),(162054,4706,'_top_description','field_63170e008cc99'),(162055,4706,'top_background_desktop','4677'),(162056,4706,'_top_background_desktop','field_631eb1728b709'),(162057,4706,'top_background_mobile','4677'),(162058,4706,'_top_background_mobile','field_631eb1988b70a'),(162059,4706,'section_one_section_one_breadcrumb','THE FUTURE'),(162060,4706,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(162061,4706,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(162062,4706,'_section_one_section_one_title','field_6316f2764091e'),(162063,4706,'section_one_section_one_content','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(162064,4706,'_section_one_section_one_content','field_6316f2934091f'),(162065,4706,'section_one_section_one_image','4679'),(162066,4706,'_section_one_section_one_image','field_6316f2ab40920'),(162067,4706,'section_one_section_one_button_text','Book a consultation now'),(162068,4706,'_section_one_section_one_button_text','field_6316f2ca40921'),(162069,4706,'section_one',''),(162070,4706,'_section_one','field_6316f7ba1cd27'),(162071,4706,'section_two_section_two_button_text','Book a consultation now'),(162072,4706,'_section_two_section_two_button_text','field_6316fe1ff751b'),(162073,4706,'section_two_section_two_tab_one_header_title','Problems'),(162074,4706,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(162075,4706,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(162076,4706,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(162077,4706,'section_two_section_two_tab_one_image','4680'),(162078,4706,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(162079,4706,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(162080,4706,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(162081,4706,'section_two_section_two_tab_one_content','Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(162082,4706,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(162083,4706,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(162084,4706,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(162085,4706,'section_two_section_two_tab_two_header_title','Solutions'),(162086,4706,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(162087,4706,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(162088,4706,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(162089,4706,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(162090,4706,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(162091,4706,'section_two_section_two_tab_two_content_icon_1','4683'),(162092,4706,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(162093,4706,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(162094,4706,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(162095,4706,'section_two_section_two_tab_two_content_icon_2','4684'),(162096,4706,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(162097,4706,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(162098,4706,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(162099,4706,'section_two_section_two_tab_two_content_icon_3','4685'),(162100,4706,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(162101,4706,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(162102,4706,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(162103,4706,'section_two_section_two_tab_two_content_icon_4','4686'),(162104,4706,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(162105,4706,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(162106,4706,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(162107,4706,'section_two_section_two_tab_three_header_title','Difference'),(162108,4706,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(162109,4706,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(162110,4706,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(162111,4706,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(162112,4706,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(162113,4706,'section_two_section_two_tab_three_image','4705'),(162114,4706,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(162115,4706,'section_two',''),(162116,4706,'_section_two','field_6316fa2531589'),(162117,4706,'section_three_section_three_title','Trusted Relationships'),(162118,4706,'_section_three_section_three_title','field_6316febdf751c'),(162119,4706,'section_three_section_three_one_icon','4687'),(162120,4706,'_section_three_section_three_one_icon','field_6316fefff751e'),(162121,4706,'section_three_section_three_one_title','Data Entry Automation'),(162122,4706,'_section_three_section_three_one_title','field_6316ff1cf751f'),(162123,4706,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(162124,4706,'_section_three_section_three_one_content','field_6316ff29f7520'),(162125,4706,'section_three_section_three_two_icon','4688'),(162126,4706,'_section_three_section_three_two_icon','field_6316ff77f7523'),(162127,4706,'section_three_section_three_two_title','Product Recommendation'),(162128,4706,'_section_three_section_three_two_title','field_6316ff90f7524'),(162129,4706,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(162130,4706,'_section_three_section_three_two_content','field_6316ff5df7522'),(162131,4706,'section_three_section_three_three_icon','4689'),(162132,4706,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(162133,4706,'section_three_section_three_three_title','Medical Diagnosis'),(162134,4706,'_section_three_section_three_three_title','field_6316fff5f7527'),(162135,4706,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(162136,4706,'_section_three_section_three_three_content','field_63170010f7528'),(162137,4706,'section_three_section_three_four_icon','4690'),(162138,4706,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(162139,4706,'section_three_section_three_four_title','Clients: Who is buying what'),(162140,4706,'_section_three_section_three_four_title','field_631707992b1ca'),(162141,4706,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(162142,4706,'_section_three_section_three_four_content','field_631707b42b1cb'),(162143,4706,'section_three_section_three_five_icon','4691'),(162144,4706,'_section_three_section_three_five_icon','field_631707e52b1cd'),(162145,4706,'section_three_section_three_five_title','User Behavior'),(162146,4706,'_section_three_section_three_five_title','field_631708002b1ce'),(162147,4706,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(162148,4706,'_section_three_section_three_five_content','field_6317081c2b1cf'),(162149,4706,'section_three_section_three_six_icon','4692'),(162150,4706,'_section_three_section_three_six_icon','field_631708572b1d1'),(162151,4706,'section_three_section_three_six_title','BI: Automated Reporting'),(162152,4706,'_section_three_section_three_six_title','field_631708712b1d2'),(162153,4706,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(162154,4706,'_section_three_section_three_six_content','field_6317088d2b1d3'),(162155,4706,'section_three_section_three_seven_icon','4693'),(162156,4706,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(162157,4706,'section_three_section_three_seven_title','Detecting Spam in Emails'),(162158,4706,'_section_three_section_three_seven_title','field_631708da2b1d6'),(162159,4706,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(162160,4706,'_section_three_section_three_seven_content','field_631708f62b1d7'),(162161,4706,'section_three_section_three_eight_icon','4694'),(162162,4706,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(162163,4706,'section_three_section_three_eight_title','Analytics'),(162164,4706,'_section_three_section_three_eight_title','field_631709462b1da'),(162165,4706,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(162166,4706,'_section_three_section_three_eight_content','field_6317095e2b1db'),(162167,4706,'section_three',''),(162168,4706,'_section_three','field_6316fcf4f751a'),(162169,4706,'section_four_section_four_content','The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford. '),(162170,4706,'_section_four_section_four_content','field_63170ac9aa9a2'),(162171,4706,'section_four_section_four_button_text','Book a consultation now'),(162172,4706,'_section_four_section_four_button_text','field_63170b08aa9a3'),(162173,4706,'section_four',''),(162174,4706,'_section_four','field_63170a81aa9a1'),(162175,4706,'section_five_section_five_title','We listen. We learn. We inform.'),(162176,4706,'_section_five_section_five_title','field_63170b8564fc2'),(162177,4706,'section_five_section_five_quote','“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”'),(162178,4706,'_section_five_section_five_quote','field_63170b9a64fc3'),(162179,4706,'section_five_section_five_footer','forbes.com'),(162180,4706,'_section_five_section_five_footer','field_63170bad64fc4'),(162181,4706,'section_five',''),(162182,4706,'_section_five','field_63170b5f64fc1'),(162183,4706,'footer_title','We treat your business like our own.'),(162184,4706,'_footer_title','field_63170f4c8cc9a'),(162185,4706,'footer_button_text',''),(162186,4706,'_footer_button_text','field_63170f6f8cc9b'),(162187,4706,'top_title_1','CLOUD NATIVE SOLUTIONS'),(162188,4706,'_top_title_1','field_631ed55492adc'),(162189,4706,'top_title_page','CLOUD NATIVE SOLUTIONS'),(162190,4706,'_top_title_page','field_631ed55492adc'),(162194,4707,'top-image',''),(162195,4707,'_top-image','field_5c488d805f5d4'),(162196,4707,'top_title',''),(162197,4707,'_top_title','field_5edfac92f4226'),(162198,4707,'top-text',''),(162199,4707,'_top-text','field_5c488e575f5d5'),(162200,4707,'features',''),(162201,4707,'_features','field_5c4890bc3ae1f'),(162202,4707,'about-title',''),(162203,4707,'_about-title','field_5c488e7a5f5d6'),(162204,4707,'about-text',''),(162205,4707,'_about-text','field_5c488e945f5d7'),(162206,4707,'problems',''),(162207,4707,'_problems','field_5c488ec75f5d8'),(162208,4707,'solutions',''),(162209,4707,'_solutions','field_5c488ed95f5d9'),(162210,4707,'difference',''),(162211,4707,'_difference','field_5c488eed5f5da'),(162212,4707,'panel',''),(162213,4707,'_panel','field_5c488f195f5db'),(162214,4707,'more-text',''),(162215,4707,'_more-text','field_5c488f8f5f5df'),(162216,4707,'phrase',''),(162217,4707,'_phrase','field_5c488faf5f5e0'),(162218,4707,'author',''),(162219,4707,'_author','field_5c488fba5f5e1'),(162220,4707,'top_description','Machine Learning'),(162221,4707,'_top_description','field_63170e008cc99'),(162222,4707,'top_background_desktop','4677'),(162223,4707,'_top_background_desktop','field_631eb1728b709'),(162224,4707,'top_background_mobile','4677'),(162225,4707,'_top_background_mobile','field_631eb1988b70a'),(162226,4707,'section_one_section_one_breadcrumb','THE FUTURE'),(162227,4707,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(162228,4707,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(162229,4707,'_section_one_section_one_title','field_6316f2764091e'),(162230,4707,'section_one_section_one_content','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(162231,4707,'_section_one_section_one_content','field_6316f2934091f'),(162232,4707,'section_one_section_one_image','4679'),(162233,4707,'_section_one_section_one_image','field_6316f2ab40920'),(162234,4707,'section_one_section_one_button_text','Book a consultation now'),(162235,4707,'_section_one_section_one_button_text','field_6316f2ca40921'),(162236,4707,'section_one',''),(162237,4707,'_section_one','field_6316f7ba1cd27'),(162238,4707,'section_two_section_two_button_text','Book a consultation now'),(162239,4707,'_section_two_section_two_button_text','field_6316fe1ff751b'),(162240,4707,'section_two_section_two_tab_one_header_title','Problems'),(162241,4707,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(162242,4707,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(162243,4707,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(162244,4707,'section_two_section_two_tab_one_image','4680'),(162245,4707,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(162246,4707,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(162247,4707,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(162248,4707,'section_two_section_two_tab_one_content','Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(162249,4707,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(162250,4707,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(162251,4707,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(162252,4707,'section_two_section_two_tab_two_header_title','Solutions'),(162253,4707,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(162254,4707,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(162255,4707,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(162256,4707,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(162257,4707,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(162258,4707,'section_two_section_two_tab_two_content_icon_1','4683'),(162259,4707,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(162260,4707,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(162261,4707,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(162262,4707,'section_two_section_two_tab_two_content_icon_2','4684'),(162263,4707,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(162264,4707,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(162265,4707,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(162266,4707,'section_two_section_two_tab_two_content_icon_3','4685'),(162267,4707,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(162268,4707,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(162269,4707,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(162270,4707,'section_two_section_two_tab_two_content_icon_4','4686'),(162271,4707,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(162272,4707,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(162273,4707,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(162274,4707,'section_two_section_two_tab_three_header_title','Difference'),(162275,4707,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(162276,4707,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(162277,4707,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(162278,4707,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(162279,4707,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(162280,4707,'section_two_section_two_tab_three_image','4705'),(162281,4707,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(162282,4707,'section_two',''),(162283,4707,'_section_two','field_6316fa2531589'),(162284,4707,'section_three_section_three_title','Trusted Relationships'),(162285,4707,'_section_three_section_three_title','field_6316febdf751c'),(162286,4707,'section_three_section_three_one_icon','4687'),(162287,4707,'_section_three_section_three_one_icon','field_6316fefff751e'),(162288,4707,'section_three_section_three_one_title','Data Entry Automation'),(162289,4707,'_section_three_section_three_one_title','field_6316ff1cf751f'),(162290,4707,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(162291,4707,'_section_three_section_three_one_content','field_6316ff29f7520'),(162292,4707,'section_three_section_three_two_icon','4688'),(162293,4707,'_section_three_section_three_two_icon','field_6316ff77f7523'),(162294,4707,'section_three_section_three_two_title','Product Recommendation'),(162295,4707,'_section_three_section_three_two_title','field_6316ff90f7524'),(162296,4707,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(162297,4707,'_section_three_section_three_two_content','field_6316ff5df7522'),(162298,4707,'section_three_section_three_three_icon','4689'),(162299,4707,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(162300,4707,'section_three_section_three_three_title','Medical Diagnosis'),(162301,4707,'_section_three_section_three_three_title','field_6316fff5f7527'),(162302,4707,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(162303,4707,'_section_three_section_three_three_content','field_63170010f7528'),(162304,4707,'section_three_section_three_four_icon','4690'),(162305,4707,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(162306,4707,'section_three_section_three_four_title','Clients: Who is buying what'),(162307,4707,'_section_three_section_three_four_title','field_631707992b1ca'),(162308,4707,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(162309,4707,'_section_three_section_three_four_content','field_631707b42b1cb'),(162310,4707,'section_three_section_three_five_icon','4691'),(162311,4707,'_section_three_section_three_five_icon','field_631707e52b1cd'),(162312,4707,'section_three_section_three_five_title','User Behavior'),(162313,4707,'_section_three_section_three_five_title','field_631708002b1ce'),(162314,4707,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(162315,4707,'_section_three_section_three_five_content','field_6317081c2b1cf'),(162316,4707,'section_three_section_three_six_icon','4692'),(162317,4707,'_section_three_section_three_six_icon','field_631708572b1d1'),(162318,4707,'section_three_section_three_six_title','BI: Automated Reporting'),(162319,4707,'_section_three_section_three_six_title','field_631708712b1d2'),(162320,4707,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(162321,4707,'_section_three_section_three_six_content','field_6317088d2b1d3'),(162322,4707,'section_three_section_three_seven_icon','4693'),(162323,4707,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(162324,4707,'section_three_section_three_seven_title','Detecting Spam in Emails'),(162325,4707,'_section_three_section_three_seven_title','field_631708da2b1d6'),(162326,4707,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(162327,4707,'_section_three_section_three_seven_content','field_631708f62b1d7'),(162328,4707,'section_three_section_three_eight_icon','4694'),(162329,4707,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(162330,4707,'section_three_section_three_eight_title','Analytics'),(162331,4707,'_section_three_section_three_eight_title','field_631709462b1da'),(162332,4707,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(162333,4707,'_section_three_section_three_eight_content','field_6317095e2b1db'),(162334,4707,'section_three',''),(162335,4707,'_section_three','field_6316fcf4f751a'),(162336,4707,'section_four_section_four_content','The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford. '),(162337,4707,'_section_four_section_four_content','field_63170ac9aa9a2'),(162338,4707,'section_four_section_four_button_text','Book a consultation now'),(162339,4707,'_section_four_section_four_button_text','field_63170b08aa9a3'),(162340,4707,'section_four',''),(162341,4707,'_section_four','field_63170a81aa9a1'),(162342,4707,'section_five_section_five_title','We listen. We learn. We inform.'),(162343,4707,'_section_five_section_five_title','field_63170b8564fc2'),(162344,4707,'section_five_section_five_quote','76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.'),(162345,4707,'_section_five_section_five_quote','field_63170b9a64fc3'),(162346,4707,'section_five_section_five_footer','forbes.com'),(162347,4707,'_section_five_section_five_footer','field_63170bad64fc4'),(162348,4707,'section_five',''),(162349,4707,'_section_five','field_63170b5f64fc1'),(162350,4707,'footer_title','We treat your business like our own.'),(162351,4707,'_footer_title','field_63170f4c8cc9a'),(162352,4707,'footer_button_text',''),(162353,4707,'_footer_button_text','field_63170f6f8cc9b'),(162354,4707,'top_title_1','CLOUD NATIVE SOLUTIONS'),(162355,4707,'_top_title_1','field_631ed55492adc'),(162356,4707,'top_title_page','CLOUD NATIVE SOLUTIONS'),(162357,4707,'_top_title_page','field_631ed55492adc'),(162370,2196,'_pinterest_shares','0'),(162371,2196,'_total_shares','0'),(162372,2196,'swp_cache_timestamp','461935'),(162373,4708,'_edit_lock','1663321503:21'),(162374,4708,'_edit_last','21'),(162375,4708,'_wp_page_template','kubernetes-professional-services-new.php'),(162376,4708,'hefo_before','0'),(162377,4708,'hefo_after','0'),(162378,4708,'_yoast_wpseo_focuskeywords',''),(162379,4708,'_yoast_wpseo_keywordsynonyms',''),(162380,4708,'_yoast_wpseo_estimated-reading-time-minutes',''),(162381,4708,'top_title','Kubernetes Professional Services'),(162382,4708,'_top_title','field_6317168918e96'),(162383,4708,'top_description','CLOUD NATIVE SOLUTIONS'),(162384,4708,'_top_description','field_6317169e18e97'),(162385,4708,'section_one_section_one_breadcrumb','KCSP'),(162386,4708,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(162387,4708,'section_one_section_one_title','Kubernetes Certified Service Provider'),(162388,4708,'_section_one_section_one_title','field_6317172018e9a'),(162389,4708,'section_one_section_one_image','4775'),(162390,4708,'_section_one_section_one_image','field_63171ca018e9c'),(162391,4708,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.'),(162392,4708,'_section_one_section_one_content','field_6317174118e9b'),(162393,4708,'section_one_section_one_navigation_one','Cloud Native Applications'),(162394,4708,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(162395,4708,'section_one_section_one_navigation_two','Cloud Native DevOps'),(162396,4708,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(162397,4708,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(162398,4708,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(162399,4708,'section_one_section_one_button_text','Book a consultation now'),(162400,4708,'_section_one_section_one_button_text','field_63171dc918ea0'),(162401,4708,'section_one',''),(162402,4708,'_section_one','field_631716de18e98'),(162403,4708,'section_two_section_two_title','Our Services'),(162404,4708,'_section_two_section_two_title','field_63171e1457be9'),(162405,4708,'section_two_section_two_icon_one','4734'),(162406,4708,'_section_two_section_two_icon_one','field_63171e2c57bea'),(162407,4708,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(162408,4708,'_section_two_section_two_title_one','field_63171e5f57beb'),(162409,4708,'section_two_section_two_icon_two','4741'),(162410,4708,'_section_two_section_two_icon_two','field_63171e7357bec'),(162411,4708,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(162412,4708,'_section_two_section_two_title_two','field_63171ea157bee'),(162413,4708,'section_two_section_two_icon_three','4736'),(162414,4708,'_section_two_section_two_icon_three','field_63171e8557bed'),(162415,4708,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(162416,4708,'_section_two_section_two_title_three','field_63171ec257bef'),(162417,4708,'section_two_section_two_icon_four','4738'),(162418,4708,'_section_two_section_two_icon_four','field_63171ee257bf0'),(162419,4708,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(162420,4708,'_section_two_section_two_title_four','field_63171ef757bf1'),(162421,4708,'section_two_section_two_icon_five','4744'),(162422,4708,'_section_two_section_two_icon_five','field_63171f2857bf3'),(162423,4708,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(162424,4708,'_section_two_section_two_title_five','field_63171f3957bf4'),(162425,4708,'section_two_section_two_icon_six','4746'),(162426,4708,'_section_two_section_two_icon_six','field_63171f5057bf5'),(162427,4708,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(162428,4708,'_section_two_section_two_title_six','field_63171f6657bf6'),(162429,4708,'section_two_section_two_icon_seven','4748'),(162430,4708,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(162431,4708,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(162432,4708,'_section_two_section_two_title_seven','field_63171f9757bf8'),(162433,4708,'section_two_section_two_icon_eight','4750'),(162434,4708,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(162435,4708,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(162436,4708,'_section_two_section_two_title_eight','field_63171fc057bfa'),(162437,4708,'section_two',''),(162438,4708,'_section_two','field_63171dfb57be8'),(162439,4708,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(162440,4708,'_section_three_section_three_breadcrumb','field_631723036988b'),(162441,4708,'section_three_section_three_title','Plan Your Next Kubernetes Project with Translucent'),(162442,4708,'_section_three_section_three_title','field_631723176988c'),(162443,4708,'section_three_section_three_image','4779'),(162444,4708,'_section_three_section_three_image','field_631723ac6988e'),(162445,4708,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(162446,4708,'_section_three_section_three_content','field_631723906988d'),(162447,4708,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(162448,4708,'_section_three_section_three_footer','field_631723c36988f'),(162449,4708,'section_three_section_three_button_text','Book a consultation now'),(162450,4708,'_section_three_section_three_button_text','field_631723d769890'),(162451,4708,'section_three',''),(162452,4708,'_section_three','field_631722b96988a'),(162453,4708,'section_four_section_four_breadcrumb','KUBERNETES CONSULTING'),(162454,4708,'_section_four_section_four_breadcrumb','field_6317271523757'),(162455,4708,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(162456,4708,'_section_four_section_four_title','field_6317271523758'),(162457,4708,'section_four_section_four_image','4776'),(162458,4708,'_section_four_section_four_image','field_6317271523759'),(162459,4708,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(162460,4708,'_section_four_section_four_content','field_631727152375a'),(162461,4708,'section_four_section_four_footer','Build - Rebuild - Replatform'),(162462,4708,'_section_four_section_four_footer','field_631727152375b'),(162463,4708,'section_four',''),(162464,4708,'_section_four','field_6317271523756'),(162465,4708,'section_five_section_five_breadcrumb','SUPPORT AND MAINTENANCE'),(162466,4708,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(162467,4708,'section_five_section_five_title','24/7 support and maintenancewith our site reliability engineering services'),(162468,4708,'_section_five_section_five_title','field_631727bbd69dd'),(162469,4708,'section_five_section_five_image','4777'),(162470,4708,'_section_five_section_five_image','field_631727bbd69de'),(162471,4708,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(162472,4708,'_section_five_section_five_content','field_631727bbd69df'),(162473,4708,'section_five_section_five_footer',''),(162474,4708,'_section_five_section_five_footer','field_631727bbd69e0'),(162475,4708,'section_five',''),(162476,4708,'_section_five','field_631727bbd69db'),(162477,4708,'footer_title','We treat your business like our own.'),(162478,4708,'_footer_title','field_631729e2753c6'),(162479,4708,'footer_button_text','Let\'s talk!'),(162480,4708,'_footer_button_text','field_63172a06753c7'),(162481,4709,'top_title',''),(162482,4709,'_top_title','field_6317168918e96'),(162483,4709,'top_description',''),(162484,4709,'_top_description','field_6317169e18e97'),(162485,4709,'section_one_section_one_breadcrumb',''),(162486,4709,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(162487,4709,'section_one_section_one_title',''),(162488,4709,'_section_one_section_one_title','field_6317172018e9a'),(162489,4709,'section_one_section_one_image',''),(162490,4709,'_section_one_section_one_image','field_63171ca018e9c'),(162491,4709,'section_one_section_one_content',''),(162492,4709,'_section_one_section_one_content','field_6317174118e9b'),(162493,4709,'section_one_section_one_navigation_one',''),(162494,4709,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(162495,4709,'section_one_section_one_navigation_two',''),(162496,4709,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(162497,4709,'section_one_section_one_navigation_three',''),(162498,4709,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(162499,4709,'section_one_section_one_button_text',''),(162500,4709,'_section_one_section_one_button_text','field_63171dc918ea0'),(162501,4709,'section_one',''),(162502,4709,'_section_one','field_631716de18e98'),(162503,4709,'section_two_section_two_title',''),(162504,4709,'_section_two_section_two_title','field_63171e1457be9'),(162505,4709,'section_two_section_two_icon_one',''),(162506,4709,'_section_two_section_two_icon_one','field_63171e2c57bea'),(162507,4709,'section_two_section_two_title_one',''),(162508,4709,'_section_two_section_two_title_one','field_63171e5f57beb'),(162509,4709,'section_two_section_two_icon_two',''),(162510,4709,'_section_two_section_two_icon_two','field_63171e7357bec'),(162511,4709,'section_two_section_two_title_two',''),(162512,4709,'_section_two_section_two_title_two','field_63171ea157bee'),(162513,4709,'section_two_section_two_icon_three',''),(162514,4709,'_section_two_section_two_icon_three','field_63171e8557bed'),(162515,4709,'section_two_section_two_title_three',''),(162516,4709,'_section_two_section_two_title_three','field_63171ec257bef'),(162517,4709,'section_two_section_two_icon_four',''),(162518,4709,'_section_two_section_two_icon_four','field_63171ee257bf0'),(162519,4709,'section_two_section_two_title_four',''),(162520,4709,'_section_two_section_two_title_four','field_63171ef757bf1'),(162521,4709,'section_two_section_two_icon_five',''),(162522,4709,'_section_two_section_two_icon_five','field_63171f2857bf3'),(162523,4709,'section_two_section_two_title_five',''),(162524,4709,'_section_two_section_two_title_five','field_63171f3957bf4'),(162525,4709,'section_two_section_two_icon_six',''),(162526,4709,'_section_two_section_two_icon_six','field_63171f5057bf5'),(162527,4709,'section_two_section_two_title_six',''),(162528,4709,'_section_two_section_two_title_six','field_63171f6657bf6'),(162529,4709,'section_two_section_two_icon_seven',''),(162530,4709,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(162531,4709,'section_two_section_two_title_seven',''),(162532,4709,'_section_two_section_two_title_seven','field_63171f9757bf8'),(162533,4709,'section_two_section_two_icon_eight',''),(162534,4709,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(162535,4709,'section_two_section_two_title_eight',''),(162536,4709,'_section_two_section_two_title_eight','field_63171fc057bfa'),(162537,4709,'section_two',''),(162538,4709,'_section_two','field_63171dfb57be8'),(162539,4709,'section_three_section_three_breadcrumb',''),(162540,4709,'_section_three_section_three_breadcrumb','field_631723036988b'),(162541,4709,'section_three_section_three_title',''),(162542,4709,'_section_three_section_three_title','field_631723176988c'),(162543,4709,'section_three_section_three_image',''),(162544,4709,'_section_three_section_three_image','field_631723ac6988e'),(162545,4709,'section_three_section_three_content',''),(162546,4709,'_section_three_section_three_content','field_631723906988d'),(162547,4709,'section_three_section_three_footer',''),(162548,4709,'_section_three_section_three_footer','field_631723c36988f'),(162549,4709,'section_three_section_three_button_text',''),(162550,4709,'_section_three_section_three_button_text','field_631723d769890'),(162551,4709,'section_three',''),(162552,4709,'_section_three','field_631722b96988a'),(162553,4709,'section_four_section_four_breadcrumb',''),(162554,4709,'_section_four_section_four_breadcrumb','field_6317271523757'),(162555,4709,'section_four_section_four_title',''),(162556,4709,'_section_four_section_four_title','field_6317271523758'),(162557,4709,'section_four_section_four_image',''),(162558,4709,'_section_four_section_four_image','field_6317271523759'),(162559,4709,'section_four_section_four_content',''),(162560,4709,'_section_four_section_four_content','field_631727152375a'),(162561,4709,'section_four_section_four_footer',''),(162562,4709,'_section_four_section_four_footer','field_631727152375b'),(162563,4709,'section_four',''),(162564,4709,'_section_four','field_6317271523756'),(162565,4709,'section_five_section_five_breadcrumb',''),(162566,4709,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(162567,4709,'section_five_section_five_title',''),(162568,4709,'_section_five_section_five_title','field_631727bbd69dd'),(162569,4709,'section_five_section_five_image',''),(162570,4709,'_section_five_section_five_image','field_631727bbd69de'),(162571,4709,'section_five_section_five_content',''),(162572,4709,'_section_five_section_five_content','field_631727bbd69df'),(162573,4709,'section_five_section_five_footer',''),(162574,4709,'_section_five_section_five_footer','field_631727bbd69e0'),(162575,4709,'section_five',''),(162576,4709,'_section_five','field_631727bbd69db'),(162577,4709,'footer_title',''),(162578,4709,'_footer_title','field_631729e2753c6'),(162579,4709,'footer_button_text',''),(162580,4709,'_footer_button_text','field_63172a06753c7'),(162587,4710,'_wp_attached_file','2022/09/1160358.png'),(162588,4710,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:19:\"2022/09/1160358.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"1160358-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:19:\"1160358-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:19:\"1160358-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(162592,4711,'top_title','Kubernetes Professional Services'),(162593,4711,'_top_title','field_6317168918e96'),(162594,4711,'top_description','CLOUD NATIVE SOLUTIONS'),(162595,4711,'_top_description','field_6317169e18e97'),(162596,4711,'section_one_section_one_breadcrumb','KCSP'),(162597,4711,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(162598,4711,'section_one_section_one_title','Kubernetes Certified Service Provider'),(162599,4711,'_section_one_section_one_title','field_6317172018e9a'),(162600,4711,'section_one_section_one_image','4405'),(162601,4711,'_section_one_section_one_image','field_63171ca018e9c'),(162602,4711,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(162603,4711,'_section_one_section_one_content','field_6317174118e9b'),(162604,4711,'section_one_section_one_navigation_one','Cloud Native Applications'),(162605,4711,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(162606,4711,'section_one_section_one_navigation_two','Cloud Native DevOps'),(162607,4711,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(162608,4711,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(162609,4711,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(162610,4711,'section_one_section_one_button_text','Book Consultation Now'),(162611,4711,'_section_one_section_one_button_text','field_63171dc918ea0'),(162612,4711,'section_one',''),(162613,4711,'_section_one','field_631716de18e98'),(162614,4711,'section_two_section_two_title','Our Services'),(162615,4711,'_section_two_section_two_title','field_63171e1457be9'),(162616,4711,'section_two_section_two_icon_one','4710'),(162617,4711,'_section_two_section_two_icon_one','field_63171e2c57bea'),(162618,4711,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(162619,4711,'_section_two_section_two_title_one','field_63171e5f57beb'),(162620,4711,'section_two_section_two_icon_two','4710'),(162621,4711,'_section_two_section_two_icon_two','field_63171e7357bec'),(162622,4711,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(162623,4711,'_section_two_section_two_title_two','field_63171ea157bee'),(162624,4711,'section_two_section_two_icon_three','4710'),(162625,4711,'_section_two_section_two_icon_three','field_63171e8557bed'),(162626,4711,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(162627,4711,'_section_two_section_two_title_three','field_63171ec257bef'),(162628,4711,'section_two_section_two_icon_four','4710'),(162629,4711,'_section_two_section_two_icon_four','field_63171ee257bf0'),(162630,4711,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(162631,4711,'_section_two_section_two_title_four','field_63171ef757bf1'),(162632,4711,'section_two_section_two_icon_five','4710'),(162633,4711,'_section_two_section_two_icon_five','field_63171f2857bf3'),(162634,4711,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(162635,4711,'_section_two_section_two_title_five','field_63171f3957bf4'),(162636,4711,'section_two_section_two_icon_six','4710'),(162637,4711,'_section_two_section_two_icon_six','field_63171f5057bf5'),(162638,4711,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(162639,4711,'_section_two_section_two_title_six','field_63171f6657bf6'),(162640,4711,'section_two_section_two_icon_seven','4710'),(162641,4711,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(162642,4711,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(162643,4711,'_section_two_section_two_title_seven','field_63171f9757bf8'),(162644,4711,'section_two_section_two_icon_eight','4710'),(162645,4711,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(162646,4711,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(162647,4711,'_section_two_section_two_title_eight','field_63171fc057bfa'),(162648,4711,'section_two',''),(162649,4711,'_section_two','field_63171dfb57be8'),(162650,4711,'section_three_section_three_breadcrumb',''),(162651,4711,'_section_three_section_three_breadcrumb','field_631723036988b'),(162652,4711,'section_three_section_three_title',''),(162653,4711,'_section_three_section_three_title','field_631723176988c'),(162654,4711,'section_three_section_three_image',''),(162655,4711,'_section_three_section_three_image','field_631723ac6988e'),(162656,4711,'section_three_section_three_content',''),(162657,4711,'_section_three_section_three_content','field_631723906988d'),(162658,4711,'section_three_section_three_footer',''),(162659,4711,'_section_three_section_three_footer','field_631723c36988f'),(162660,4711,'section_three_section_three_button_text',''),(162661,4711,'_section_three_section_three_button_text','field_631723d769890'),(162662,4711,'section_three',''),(162663,4711,'_section_three','field_631722b96988a'),(162664,4711,'section_four_section_four_breadcrumb',''),(162665,4711,'_section_four_section_four_breadcrumb','field_6317271523757'),(162666,4711,'section_four_section_four_title',''),(162667,4711,'_section_four_section_four_title','field_6317271523758'),(162668,4711,'section_four_section_four_image',''),(162669,4711,'_section_four_section_four_image','field_6317271523759'),(162670,4711,'section_four_section_four_content',''),(162671,4711,'_section_four_section_four_content','field_631727152375a'),(162672,4711,'section_four_section_four_footer',''),(162673,4711,'_section_four_section_four_footer','field_631727152375b'),(162674,4711,'section_four',''),(162675,4711,'_section_four','field_6317271523756'),(162676,4711,'section_five_section_five_breadcrumb',''),(162677,4711,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(162678,4711,'section_five_section_five_title',''),(162679,4711,'_section_five_section_five_title','field_631727bbd69dd'),(162680,4711,'section_five_section_five_image',''),(162681,4711,'_section_five_section_five_image','field_631727bbd69de'),(162682,4711,'section_five_section_five_content',''),(162683,4711,'_section_five_section_five_content','field_631727bbd69df'),(162684,4711,'section_five_section_five_footer',''),(162685,4711,'_section_five_section_five_footer','field_631727bbd69e0'),(162686,4711,'section_five',''),(162687,4711,'_section_five','field_631727bbd69db'),(162688,4711,'footer_title',''),(162689,4711,'_footer_title','field_631729e2753c6'),(162690,4711,'footer_button_text',''),(162691,4711,'_footer_button_text','field_63172a06753c7'),(162692,4712,'top_title','Kubernetes Professional Services'),(162693,4712,'_top_title','field_6317168918e96'),(162694,4712,'top_description','CLOUD NATIVE SOLUTIONS'),(162695,4712,'_top_description','field_6317169e18e97'),(162696,4712,'section_one_section_one_breadcrumb','KCSP'),(162697,4712,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(162698,4712,'section_one_section_one_title','Kubernetes Certified Service Provider'),(162699,4712,'_section_one_section_one_title','field_6317172018e9a'),(162700,4712,'section_one_section_one_image','4405'),(162701,4712,'_section_one_section_one_image','field_63171ca018e9c'),(162702,4712,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(162703,4712,'_section_one_section_one_content','field_6317174118e9b'),(162704,4712,'section_one_section_one_navigation_one','Cloud Native Applications'),(162705,4712,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(162706,4712,'section_one_section_one_navigation_two','Cloud Native DevOps'),(162707,4712,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(162708,4712,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(162709,4712,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(162710,4712,'section_one_section_one_button_text','Book Consultation Now'),(162711,4712,'_section_one_section_one_button_text','field_63171dc918ea0'),(162712,4712,'section_one',''),(162713,4712,'_section_one','field_631716de18e98'),(162714,4712,'section_two_section_two_title','Our Services'),(162715,4712,'_section_two_section_two_title','field_63171e1457be9'),(162716,4712,'section_two_section_two_icon_one','4710'),(162717,4712,'_section_two_section_two_icon_one','field_63171e2c57bea'),(162718,4712,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(162719,4712,'_section_two_section_two_title_one','field_63171e5f57beb'),(162720,4712,'section_two_section_two_icon_two','4710'),(162721,4712,'_section_two_section_two_icon_two','field_63171e7357bec'),(162722,4712,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(162723,4712,'_section_two_section_two_title_two','field_63171ea157bee'),(162724,4712,'section_two_section_two_icon_three','4710'),(162725,4712,'_section_two_section_two_icon_three','field_63171e8557bed'),(162726,4712,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(162727,4712,'_section_two_section_two_title_three','field_63171ec257bef'),(162728,4712,'section_two_section_two_icon_four','4710'),(162729,4712,'_section_two_section_two_icon_four','field_63171ee257bf0'),(162730,4712,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(162731,4712,'_section_two_section_two_title_four','field_63171ef757bf1'),(162732,4712,'section_two_section_two_icon_five','4710'),(162733,4712,'_section_two_section_two_icon_five','field_63171f2857bf3'),(162734,4712,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(162735,4712,'_section_two_section_two_title_five','field_63171f3957bf4'),(162736,4712,'section_two_section_two_icon_six','4710'),(162737,4712,'_section_two_section_two_icon_six','field_63171f5057bf5'),(162738,4712,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(162739,4712,'_section_two_section_two_title_six','field_63171f6657bf6'),(162740,4712,'section_two_section_two_icon_seven','4710'),(162741,4712,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(162742,4712,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(162743,4712,'_section_two_section_two_title_seven','field_63171f9757bf8'),(162744,4712,'section_two_section_two_icon_eight','4710'),(162745,4712,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(162746,4712,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(162747,4712,'_section_two_section_two_title_eight','field_63171fc057bfa'),(162748,4712,'section_two',''),(162749,4712,'_section_two','field_63171dfb57be8'),(162750,4712,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(162751,4712,'_section_three_section_three_breadcrumb','field_631723036988b'),(162752,4712,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(162753,4712,'_section_three_section_three_title','field_631723176988c'),(162754,4712,'section_three_section_three_image','4405'),(162755,4712,'_section_three_section_three_image','field_631723ac6988e'),(162756,4712,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(162757,4712,'_section_three_section_three_content','field_631723906988d'),(162758,4712,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(162759,4712,'_section_three_section_three_footer','field_631723c36988f'),(162760,4712,'section_three_section_three_button_text','Book Consultation Now'),(162761,4712,'_section_three_section_three_button_text','field_631723d769890'),(162762,4712,'section_three',''),(162763,4712,'_section_three','field_631722b96988a'),(162764,4712,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(162765,4712,'_section_four_section_four_breadcrumb','field_6317271523757'),(162766,4712,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(162767,4712,'_section_four_section_four_title','field_6317271523758'),(162768,4712,'section_four_section_four_image','4405'),(162769,4712,'_section_four_section_four_image','field_6317271523759'),(162770,4712,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(162771,4712,'_section_four_section_four_content','field_631727152375a'),(162772,4712,'section_four_section_four_footer','Build - Rebuild - Replatform'),(162773,4712,'_section_four_section_four_footer','field_631727152375b'),(162774,4712,'section_four',''),(162775,4712,'_section_four','field_6317271523756'),(162776,4712,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(162777,4712,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(162778,4712,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(162779,4712,'_section_five_section_five_title','field_631727bbd69dd'),(162780,4712,'section_five_section_five_image',''),(162781,4712,'_section_five_section_five_image','field_631727bbd69de'),(162782,4712,'section_five_section_five_content',''),(162783,4712,'_section_five_section_five_content','field_631727bbd69df'),(162784,4712,'section_five_section_five_footer',''),(162785,4712,'_section_five_section_five_footer','field_631727bbd69e0'),(162786,4712,'section_five',''),(162787,4712,'_section_five','field_631727bbd69db'),(162788,4712,'footer_title',''),(162789,4712,'_footer_title','field_631729e2753c6'),(162790,4712,'footer_button_text',''),(162791,4712,'_footer_button_text','field_63172a06753c7'),(162795,4671,'_pinterest_shares','0'),(162796,4671,'_total_shares','0'),(162801,4714,'_pinterest_shares','0'),(162802,4714,'_total_shares','0'),(162807,4716,'_pinterest_shares','0'),(162808,4716,'_total_shares','0'),(162813,4718,'_pinterest_shares','0'),(162814,4718,'_total_shares','0'),(162825,4708,'section_five_section_five_icon_one','4752'),(162826,4708,'_section_five_section_five_icon_one','field_631727bbd69e0'),(162827,4708,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(162828,4708,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(162829,4708,'section_five_section_five_icon_two','4754'),(162830,4708,'_section_five_section_five_icon_two','field_631ef504912c5'),(162831,4708,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(162832,4708,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(162833,4708,'section_five_section_five_icon_three','4756'),(162834,4708,'_section_five_section_five_icon_three','field_631ef510912c6'),(162835,4708,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(162836,4708,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(162837,4708,'section_five_section_five_icon_four','4758'),(162838,4708,'_section_five_section_five_icon_four','field_631ef51c912c7'),(162839,4708,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(162840,4708,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(162841,4720,'top_title','Kubernetes Professional Services'),(162842,4720,'_top_title','field_6317168918e96'),(162843,4720,'top_description','CLOUD NATIVE SOLUTIONS'),(162844,4720,'_top_description','field_6317169e18e97'),(162845,4720,'section_one_section_one_breadcrumb','KCSP'),(162846,4720,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(162847,4720,'section_one_section_one_title','Kubernetes Certified Service Provider'),(162848,4720,'_section_one_section_one_title','field_6317172018e9a'),(162849,4720,'section_one_section_one_image','4405'),(162850,4720,'_section_one_section_one_image','field_63171ca018e9c'),(162851,4720,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(162852,4720,'_section_one_section_one_content','field_6317174118e9b'),(162853,4720,'section_one_section_one_navigation_one','Cloud Native Applications'),(162854,4720,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(162855,4720,'section_one_section_one_navigation_two','Cloud Native DevOps'),(162856,4720,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(162857,4720,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(162858,4720,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(162859,4720,'section_one_section_one_button_text','Book Consultation Now'),(162860,4720,'_section_one_section_one_button_text','field_63171dc918ea0'),(162861,4720,'section_one',''),(162862,4720,'_section_one','field_631716de18e98'),(162863,4720,'section_two_section_two_title','Our Services'),(162864,4720,'_section_two_section_two_title','field_63171e1457be9'),(162865,4720,'section_two_section_two_icon_one','4710'),(162866,4720,'_section_two_section_two_icon_one','field_63171e2c57bea'),(162867,4720,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(162868,4720,'_section_two_section_two_title_one','field_63171e5f57beb'),(162869,4720,'section_two_section_two_icon_two','4710'),(162870,4720,'_section_two_section_two_icon_two','field_63171e7357bec'),(162871,4720,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(162872,4720,'_section_two_section_two_title_two','field_63171ea157bee'),(162873,4720,'section_two_section_two_icon_three','4710'),(162874,4720,'_section_two_section_two_icon_three','field_63171e8557bed'),(162875,4720,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(162876,4720,'_section_two_section_two_title_three','field_63171ec257bef'),(162877,4720,'section_two_section_two_icon_four','4710'),(162878,4720,'_section_two_section_two_icon_four','field_63171ee257bf0'),(162879,4720,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(162880,4720,'_section_two_section_two_title_four','field_63171ef757bf1'),(162881,4720,'section_two_section_two_icon_five','4710'),(162882,4720,'_section_two_section_two_icon_five','field_63171f2857bf3'),(162883,4720,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(162884,4720,'_section_two_section_two_title_five','field_63171f3957bf4'),(162885,4720,'section_two_section_two_icon_six','4710'),(162886,4720,'_section_two_section_two_icon_six','field_63171f5057bf5'),(162887,4720,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(162888,4720,'_section_two_section_two_title_six','field_63171f6657bf6'),(162889,4720,'section_two_section_two_icon_seven','4710'),(162890,4720,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(162891,4720,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(162892,4720,'_section_two_section_two_title_seven','field_63171f9757bf8'),(162893,4720,'section_two_section_two_icon_eight','4710'),(162894,4720,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(162895,4720,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(162896,4720,'_section_two_section_two_title_eight','field_63171fc057bfa'),(162897,4720,'section_two',''),(162898,4720,'_section_two','field_63171dfb57be8'),(162899,4720,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(162900,4720,'_section_three_section_three_breadcrumb','field_631723036988b'),(162901,4720,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(162902,4720,'_section_three_section_three_title','field_631723176988c'),(162903,4720,'section_three_section_three_image','4405'),(162904,4720,'_section_three_section_three_image','field_631723ac6988e'),(162905,4720,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(162906,4720,'_section_three_section_three_content','field_631723906988d'),(162907,4720,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(162908,4720,'_section_three_section_three_footer','field_631723c36988f'),(162909,4720,'section_three_section_three_button_text','Book Consultation Now'),(162910,4720,'_section_three_section_three_button_text','field_631723d769890'),(162911,4720,'section_three',''),(162912,4720,'_section_three','field_631722b96988a'),(162913,4720,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(162914,4720,'_section_four_section_four_breadcrumb','field_6317271523757'),(162915,4720,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(162916,4720,'_section_four_section_four_title','field_6317271523758'),(162917,4720,'section_four_section_four_image','4405'),(162918,4720,'_section_four_section_four_image','field_6317271523759'),(162919,4720,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(162920,4720,'_section_four_section_four_content','field_631727152375a'),(162921,4720,'section_four_section_four_footer','Build - Rebuild - Replatform'),(162922,4720,'_section_four_section_four_footer','field_631727152375b'),(162923,4720,'section_four',''),(162924,4720,'_section_four','field_6317271523756'),(162925,4720,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(162926,4720,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(162927,4720,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(162928,4720,'_section_five_section_five_title','field_631727bbd69dd'),(162929,4720,'section_five_section_five_image','4405'),(162930,4720,'_section_five_section_five_image','field_631727bbd69de'),(162931,4720,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(162932,4720,'_section_five_section_five_content','field_631727bbd69df'),(162933,4720,'section_five_section_five_footer',''),(162934,4720,'_section_five_section_five_footer','field_631727bbd69e0'),(162935,4720,'section_five',''),(162936,4720,'_section_five','field_631727bbd69db'),(162937,4720,'footer_title','We treat your business like our own.'),(162938,4720,'_footer_title','field_631729e2753c6'),(162939,4720,'footer_button_text','Let\'s talk!'),(162940,4720,'_footer_button_text','field_63172a06753c7'),(162941,4720,'section_five_section_five_icon_one','4710'),(162942,4720,'_section_five_section_five_icon_one','field_631727bbd69e0'),(162943,4720,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(162944,4720,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(162945,4720,'section_five_section_five_icon_two','4710'),(162946,4720,'_section_five_section_five_icon_two','field_631ef504912c5'),(162947,4720,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(162948,4720,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(162949,4720,'section_five_section_five_icon_three','4710'),(162950,4720,'_section_five_section_five_icon_three','field_631ef510912c6'),(162951,4720,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(162952,4720,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(162953,4720,'section_five_section_five_icon_four','4710'),(162954,4720,'_section_five_section_five_icon_four','field_631ef51c912c7'),(162955,4720,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(162956,4720,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(162963,4721,'top_title','Kubernetes Professional Services'),(162964,4721,'_top_title','field_6317168918e96'),(162965,4721,'top_description','CLOUD NATIVE SOLUTIONS'),(162966,4721,'_top_description','field_6317169e18e97'),(162967,4721,'section_one_section_one_breadcrumb','KCSP'),(162968,4721,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(162969,4721,'section_one_section_one_title','Kubernetes Certified Service Provider'),(162970,4721,'_section_one_section_one_title','field_6317172018e9a'),(162971,4721,'section_one_section_one_image','4405'),(162972,4721,'_section_one_section_one_image','field_63171ca018e9c'),(162973,4721,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(162974,4721,'_section_one_section_one_content','field_6317174118e9b'),(162975,4721,'section_one_section_one_navigation_one','Cloud Native Applications'),(162976,4721,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(162977,4721,'section_one_section_one_navigation_two','Cloud Native DevOps'),(162978,4721,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(162979,4721,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(162980,4721,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(162981,4721,'section_one_section_one_button_text','Book Consultation Now'),(162982,4721,'_section_one_section_one_button_text','field_63171dc918ea0'),(162983,4721,'section_one',''),(162984,4721,'_section_one','field_631716de18e98'),(162985,4721,'section_two_section_two_title','Our Services'),(162986,4721,'_section_two_section_two_title','field_63171e1457be9'),(162987,4721,'section_two_section_two_icon_one','4710'),(162988,4721,'_section_two_section_two_icon_one','field_63171e2c57bea'),(162989,4721,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(162990,4721,'_section_two_section_two_title_one','field_63171e5f57beb'),(162991,4721,'section_two_section_two_icon_two','4710'),(162992,4721,'_section_two_section_two_icon_two','field_63171e7357bec'),(162993,4721,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(162994,4721,'_section_two_section_two_title_two','field_63171ea157bee'),(162995,4721,'section_two_section_two_icon_three','4710'),(162996,4721,'_section_two_section_two_icon_three','field_63171e8557bed'),(162997,4721,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(162998,4721,'_section_two_section_two_title_three','field_63171ec257bef'),(162999,4721,'section_two_section_two_icon_four','4710'),(163000,4721,'_section_two_section_two_icon_four','field_63171ee257bf0'),(163001,4721,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(163002,4721,'_section_two_section_two_title_four','field_63171ef757bf1'),(163003,4721,'section_two_section_two_icon_five','4710'),(163004,4721,'_section_two_section_two_icon_five','field_63171f2857bf3'),(163005,4721,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(163006,4721,'_section_two_section_two_title_five','field_63171f3957bf4'),(163007,4721,'section_two_section_two_icon_six','4710'),(163008,4721,'_section_two_section_two_icon_six','field_63171f5057bf5'),(163009,4721,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(163010,4721,'_section_two_section_two_title_six','field_63171f6657bf6'),(163011,4721,'section_two_section_two_icon_seven','4710'),(163012,4721,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(163013,4721,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(163014,4721,'_section_two_section_two_title_seven','field_63171f9757bf8'),(163015,4721,'section_two_section_two_icon_eight','4710'),(163016,4721,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(163017,4721,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(163018,4721,'_section_two_section_two_title_eight','field_63171fc057bfa'),(163019,4721,'section_two',''),(163020,4721,'_section_two','field_63171dfb57be8'),(163021,4721,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(163022,4721,'_section_three_section_three_breadcrumb','field_631723036988b'),(163023,4721,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(163024,4721,'_section_three_section_three_title','field_631723176988c'),(163025,4721,'section_three_section_three_image','4405'),(163026,4721,'_section_three_section_three_image','field_631723ac6988e'),(163027,4721,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(163028,4721,'_section_three_section_three_content','field_631723906988d'),(163029,4721,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(163030,4721,'_section_three_section_three_footer','field_631723c36988f'),(163031,4721,'section_three_section_three_button_text','Book Consultation Now'),(163032,4721,'_section_three_section_three_button_text','field_631723d769890'),(163033,4721,'section_three',''),(163034,4721,'_section_three','field_631722b96988a'),(163035,4721,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(163036,4721,'_section_four_section_four_breadcrumb','field_6317271523757'),(163037,4721,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(163038,4721,'_section_four_section_four_title','field_6317271523758'),(163039,4721,'section_four_section_four_image','4405'),(163040,4721,'_section_four_section_four_image','field_6317271523759'),(163041,4721,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(163042,4721,'_section_four_section_four_content','field_631727152375a'),(163043,4721,'section_four_section_four_footer','Build - Rebuild - Replatform'),(163044,4721,'_section_four_section_four_footer','field_631727152375b'),(163045,4721,'section_four',''),(163046,4721,'_section_four','field_6317271523756'),(163047,4721,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(163048,4721,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(163049,4721,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(163050,4721,'_section_five_section_five_title','field_631727bbd69dd'),(163051,4721,'section_five_section_five_image','4405'),(163052,4721,'_section_five_section_five_image','field_631727bbd69de'),(163053,4721,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(163054,4721,'_section_five_section_five_content','field_631727bbd69df'),(163055,4721,'section_five_section_five_footer',''),(163056,4721,'_section_five_section_five_footer','field_631727bbd69e0'),(163057,4721,'section_five',''),(163058,4721,'_section_five','field_631727bbd69db'),(163059,4721,'footer_title','We treat your business like our own.'),(163060,4721,'_footer_title','field_631729e2753c6'),(163061,4721,'footer_button_text','Let\'s talk!'),(163062,4721,'_footer_button_text','field_63172a06753c7'),(163063,4721,'section_five_section_five_icon_one','4710'),(163064,4721,'_section_five_section_five_icon_one','field_631727bbd69e0'),(163065,4721,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(163066,4721,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(163067,4721,'section_five_section_five_icon_two','4710'),(163068,4721,'_section_five_section_five_icon_two','field_631ef504912c5'),(163069,4721,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(163070,4721,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(163071,4721,'section_five_section_five_icon_three','4710'),(163072,4721,'_section_five_section_five_icon_three','field_631ef510912c6'),(163073,4721,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(163074,4721,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(163075,4721,'section_five_section_five_icon_four','4710'),(163076,4721,'_section_five_section_five_icon_four','field_631ef51c912c7'),(163077,4721,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(163078,4721,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(163082,4722,'top_title','Kubernetes Professional Services'),(163083,4722,'_top_title','field_6317168918e96'),(163084,4722,'top_description','CLOUD NATIVE SOLUTIONS'),(163085,4722,'_top_description','field_6317169e18e97'),(163086,4722,'section_one_section_one_breadcrumb','KCSP'),(163087,4722,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(163088,4722,'section_one_section_one_title','Kubernetes Certified Service Provider'),(163089,4722,'_section_one_section_one_title','field_6317172018e9a'),(163090,4722,'section_one_section_one_image','4405'),(163091,4722,'_section_one_section_one_image','field_63171ca018e9c'),(163092,4722,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(163093,4722,'_section_one_section_one_content','field_6317174118e9b'),(163094,4722,'section_one_section_one_navigation_one','Cloud Native Applications'),(163095,4722,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(163096,4722,'section_one_section_one_navigation_two','Cloud Native DevOps'),(163097,4722,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(163098,4722,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(163099,4722,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(163100,4722,'section_one_section_one_button_text','Book Consultation Now'),(163101,4722,'_section_one_section_one_button_text','field_63171dc918ea0'),(163102,4722,'section_one',''),(163103,4722,'_section_one','field_631716de18e98'),(163104,4722,'section_two_section_two_title','Our Services'),(163105,4722,'_section_two_section_two_title','field_63171e1457be9'),(163106,4722,'section_two_section_two_icon_one','4710'),(163107,4722,'_section_two_section_two_icon_one','field_63171e2c57bea'),(163108,4722,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(163109,4722,'_section_two_section_two_title_one','field_63171e5f57beb'),(163110,4722,'section_two_section_two_icon_two','4710'),(163111,4722,'_section_two_section_two_icon_two','field_63171e7357bec'),(163112,4722,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(163113,4722,'_section_two_section_two_title_two','field_63171ea157bee'),(163114,4722,'section_two_section_two_icon_three','4710'),(163115,4722,'_section_two_section_two_icon_three','field_63171e8557bed'),(163116,4722,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(163117,4722,'_section_two_section_two_title_three','field_63171ec257bef'),(163118,4722,'section_two_section_two_icon_four','4710'),(163119,4722,'_section_two_section_two_icon_four','field_63171ee257bf0'),(163120,4722,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(163121,4722,'_section_two_section_two_title_four','field_63171ef757bf1'),(163122,4722,'section_two_section_two_icon_five','4710'),(163123,4722,'_section_two_section_two_icon_five','field_63171f2857bf3'),(163124,4722,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(163125,4722,'_section_two_section_two_title_five','field_63171f3957bf4'),(163126,4722,'section_two_section_two_icon_six','4710'),(163127,4722,'_section_two_section_two_icon_six','field_63171f5057bf5'),(163128,4722,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(163129,4722,'_section_two_section_two_title_six','field_63171f6657bf6'),(163130,4722,'section_two_section_two_icon_seven','4710'),(163131,4722,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(163132,4722,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(163133,4722,'_section_two_section_two_title_seven','field_63171f9757bf8'),(163134,4722,'section_two_section_two_icon_eight','4710'),(163135,4722,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(163136,4722,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(163137,4722,'_section_two_section_two_title_eight','field_63171fc057bfa'),(163138,4722,'section_two',''),(163139,4722,'_section_two','field_63171dfb57be8'),(163140,4722,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(163141,4722,'_section_three_section_three_breadcrumb','field_631723036988b'),(163142,4722,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(163143,4722,'_section_three_section_three_title','field_631723176988c'),(163144,4722,'section_three_section_three_image','4405'),(163145,4722,'_section_three_section_three_image','field_631723ac6988e'),(163146,4722,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(163147,4722,'_section_three_section_three_content','field_631723906988d'),(163148,4722,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(163149,4722,'_section_three_section_three_footer','field_631723c36988f'),(163150,4722,'section_three_section_three_button_text','Book Consultation Now'),(163151,4722,'_section_three_section_three_button_text','field_631723d769890'),(163152,4722,'section_three',''),(163153,4722,'_section_three','field_631722b96988a'),(163154,4722,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(163155,4722,'_section_four_section_four_breadcrumb','field_6317271523757'),(163156,4722,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(163157,4722,'_section_four_section_four_title','field_6317271523758'),(163158,4722,'section_four_section_four_image','4405'),(163159,4722,'_section_four_section_four_image','field_6317271523759'),(163160,4722,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(163161,4722,'_section_four_section_four_content','field_631727152375a'),(163162,4722,'section_four_section_four_footer','Build - Rebuild - Replatform'),(163163,4722,'_section_four_section_four_footer','field_631727152375b'),(163164,4722,'section_four',''),(163165,4722,'_section_four','field_6317271523756'),(163166,4722,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(163167,4722,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(163168,4722,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(163169,4722,'_section_five_section_five_title','field_631727bbd69dd'),(163170,4722,'section_five_section_five_image','4405'),(163171,4722,'_section_five_section_five_image','field_631727bbd69de'),(163172,4722,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(163173,4722,'_section_five_section_five_content','field_631727bbd69df'),(163174,4722,'section_five_section_five_footer',''),(163175,4722,'_section_five_section_five_footer','field_631727bbd69e0'),(163176,4722,'section_five',''),(163177,4722,'_section_five','field_631727bbd69db'),(163178,4722,'footer_title','We treat your business like our own.'),(163179,4722,'_footer_title','field_631729e2753c6'),(163180,4722,'footer_button_text','Let\'s talk!'),(163181,4722,'_footer_button_text','field_63172a06753c7'),(163182,4722,'section_five_section_five_icon_one','4710'),(163183,4722,'_section_five_section_five_icon_one','field_631727bbd69e0'),(163184,4722,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(163185,4722,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(163186,4722,'section_five_section_five_icon_two','4710'),(163187,4722,'_section_five_section_five_icon_two','field_631ef504912c5'),(163188,4722,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(163189,4722,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(163190,4722,'section_five_section_five_icon_three','4710'),(163191,4722,'_section_five_section_five_icon_three','field_631ef510912c6'),(163192,4722,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(163193,4722,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(163194,4722,'section_five_section_five_icon_four','4710'),(163195,4722,'_section_five_section_five_icon_four','field_631ef51c912c7'),(163196,4722,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(163197,4722,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(163204,3993,'_wp_old_date','2022-05-05'),(163209,3994,'_wp_old_date','2022-05-05'),(163214,3995,'_wp_old_date','2022-05-05'),(163219,3996,'_wp_old_date','2022-05-05'),(163224,3997,'_wp_old_date','2022-05-05'),(163229,3998,'_wp_old_date','2022-05-05'),(163234,3999,'_wp_old_date','2022-05-05'),(163267,3993,'_pinterest_shares','0'),(163268,3993,'_total_shares','0'),(163270,3993,'_menu_sgpb_popup_id','0'),(163271,3994,'_pinterest_shares','0'),(163272,3994,'_total_shares','0'),(163274,3994,'_menu_sgpb_popup_id','0'),(163275,3995,'_pinterest_shares','0'),(163276,3995,'_total_shares','0'),(163278,3995,'_menu_sgpb_popup_id','0'),(163279,3996,'_pinterest_shares','0'),(163280,3996,'_total_shares','0'),(163282,3996,'_menu_sgpb_popup_id','0'),(163283,3997,'_pinterest_shares','0'),(163284,3997,'_total_shares','0'),(163286,3997,'_menu_sgpb_popup_id','0'),(163287,3998,'_pinterest_shares','0'),(163288,3998,'_total_shares','0'),(163290,3998,'_menu_sgpb_popup_id','0'),(163291,3999,'_pinterest_shares','0'),(163292,3999,'_total_shares','0'),(163294,3999,'_menu_sgpb_popup_id','0'),(163295,3956,'_wp_old_date','2022-06-20'),(163300,3972,'_wp_old_date','2022-06-20'),(163305,3977,'_wp_old_date','2022-06-20'),(163310,3984,'_wp_old_date','2022-06-20'),(163315,3988,'_wp_old_date','2022-06-20'),(163320,3989,'_wp_old_date','2022-06-20'),(163325,3956,'_pinterest_shares','0'),(163326,3956,'_total_shares','0'),(163329,3972,'_pinterest_shares','0'),(163330,3972,'_total_shares','0'),(163333,3977,'_pinterest_shares','0'),(163334,3977,'_total_shares','0'),(163337,3984,'_pinterest_shares','0'),(163338,3984,'_total_shares','0'),(163341,3988,'_pinterest_shares','0'),(163342,3988,'_total_shares','0'),(163345,3989,'_pinterest_shares','0'),(163346,3989,'_total_shares','0'),(163349,4723,'top-image',''),(163350,4723,'_top-image','field_5c488d805f5d4'),(163351,4723,'top_title',''),(163352,4723,'_top_title','field_5edfac92f4226'),(163353,4723,'top-text',''),(163354,4723,'_top-text','field_5c488e575f5d5'),(163355,4723,'features',''),(163356,4723,'_features','field_5c4890bc3ae1f'),(163357,4723,'about-title',''),(163358,4723,'_about-title','field_5c488e7a5f5d6'),(163359,4723,'about-text',''),(163360,4723,'_about-text','field_5c488e945f5d7'),(163361,4723,'problems',''),(163362,4723,'_problems','field_5c488ec75f5d8'),(163363,4723,'solutions',''),(163364,4723,'_solutions','field_5c488ed95f5d9'),(163365,4723,'difference',''),(163366,4723,'_difference','field_5c488eed5f5da'),(163367,4723,'panel',''),(163368,4723,'_panel','field_5c488f195f5db'),(163369,4723,'more-text',''),(163370,4723,'_more-text','field_5c488f8f5f5df'),(163371,4723,'phrase',''),(163372,4723,'_phrase','field_5c488faf5f5e0'),(163373,4723,'author',''),(163374,4723,'_author','field_5c488fba5f5e1'),(163375,4723,'top_description','Machine Learning'),(163376,4723,'_top_description','field_63170e008cc99'),(163377,4723,'top_background_desktop','4677'),(163378,4723,'_top_background_desktop','field_631eb1728b709'),(163379,4723,'top_background_mobile','4677'),(163380,4723,'_top_background_mobile','field_631eb1988b70a'),(163381,4723,'section_one_section_one_breadcrumb','THE FUTURE'),(163382,4723,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(163383,4723,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(163384,4723,'_section_one_section_one_title','field_6316f2764091e'),(163385,4723,'section_one_section_one_content','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(163386,4723,'_section_one_section_one_content','field_6316f2934091f'),(163387,4723,'section_one_section_one_image','4679'),(163388,4723,'_section_one_section_one_image','field_6316f2ab40920'),(163389,4723,'section_one_section_one_button_text','Book a consultation now'),(163390,4723,'_section_one_section_one_button_text','field_6316f2ca40921'),(163391,4723,'section_one',''),(163392,4723,'_section_one','field_6316f7ba1cd27'),(163393,4723,'section_two_section_two_button_text','Book a consultation now'),(163394,4723,'_section_two_section_two_button_text','field_6316fe1ff751b'),(163395,4723,'section_two_section_two_tab_one_header_title','Problems'),(163396,4723,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(163397,4723,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(163398,4723,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(163399,4723,'section_two_section_two_tab_one_image','4680'),(163400,4723,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(163401,4723,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(163402,4723,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(163403,4723,'section_two_section_two_tab_one_content','Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(163404,4723,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(163405,4723,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(163406,4723,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(163407,4723,'section_two_section_two_tab_two_header_title','Solutions'),(163408,4723,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(163409,4723,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(163410,4723,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(163411,4723,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(163412,4723,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(163413,4723,'section_two_section_two_tab_two_content_icon_1','4683'),(163414,4723,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(163415,4723,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(163416,4723,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(163417,4723,'section_two_section_two_tab_two_content_icon_2','4684'),(163418,4723,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(163419,4723,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(163420,4723,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(163421,4723,'section_two_section_two_tab_two_content_icon_3','4685'),(163422,4723,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(163423,4723,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(163424,4723,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(163425,4723,'section_two_section_two_tab_two_content_icon_4','4686'),(163426,4723,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(163427,4723,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(163428,4723,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(163429,4723,'section_two_section_two_tab_three_header_title','Difference'),(163430,4723,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(163431,4723,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(163432,4723,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(163433,4723,'section_two_section_two_tab_three_content','Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.\r\n\r\nWeave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.'),(163434,4723,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(163435,4723,'section_two_section_two_tab_three_image','4705'),(163436,4723,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(163437,4723,'section_two',''),(163438,4723,'_section_two','field_6316fa2531589'),(163439,4723,'section_three_section_three_title','Trusted Relationships'),(163440,4723,'_section_three_section_three_title','field_6316febdf751c'),(163441,4723,'section_three_section_three_one_icon','4687'),(163442,4723,'_section_three_section_three_one_icon','field_6316fefff751e'),(163443,4723,'section_three_section_three_one_title','Data Entry Automation'),(163444,4723,'_section_three_section_three_one_title','field_6316ff1cf751f'),(163445,4723,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(163446,4723,'_section_three_section_three_one_content','field_6316ff29f7520'),(163447,4723,'section_three_section_three_two_icon','4688'),(163448,4723,'_section_three_section_three_two_icon','field_6316ff77f7523'),(163449,4723,'section_three_section_three_two_title','Product Recommendation'),(163450,4723,'_section_three_section_three_two_title','field_6316ff90f7524'),(163451,4723,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(163452,4723,'_section_three_section_three_two_content','field_6316ff5df7522'),(163453,4723,'section_three_section_three_three_icon','4689'),(163454,4723,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(163455,4723,'section_three_section_three_three_title','Medical Diagnosis'),(163456,4723,'_section_three_section_three_three_title','field_6316fff5f7527'),(163457,4723,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(163458,4723,'_section_three_section_three_three_content','field_63170010f7528'),(163459,4723,'section_three_section_three_four_icon','4690'),(163460,4723,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(163461,4723,'section_three_section_three_four_title','Clients: Who is buying what'),(163462,4723,'_section_three_section_three_four_title','field_631707992b1ca'),(163463,4723,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(163464,4723,'_section_three_section_three_four_content','field_631707b42b1cb'),(163465,4723,'section_three_section_three_five_icon','4691'),(163466,4723,'_section_three_section_three_five_icon','field_631707e52b1cd'),(163467,4723,'section_three_section_three_five_title','User Behavior'),(163468,4723,'_section_three_section_three_five_title','field_631708002b1ce'),(163469,4723,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(163470,4723,'_section_three_section_three_five_content','field_6317081c2b1cf'),(163471,4723,'section_three_section_three_six_icon','4692'),(163472,4723,'_section_three_section_three_six_icon','field_631708572b1d1'),(163473,4723,'section_three_section_three_six_title','BI: Automated Reporting'),(163474,4723,'_section_three_section_three_six_title','field_631708712b1d2'),(163475,4723,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(163476,4723,'_section_three_section_three_six_content','field_6317088d2b1d3'),(163477,4723,'section_three_section_three_seven_icon','4693'),(163478,4723,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(163479,4723,'section_three_section_three_seven_title','Detecting Spam in Emails'),(163480,4723,'_section_three_section_three_seven_title','field_631708da2b1d6'),(163481,4723,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(163482,4723,'_section_three_section_three_seven_content','field_631708f62b1d7'),(163483,4723,'section_three_section_three_eight_icon','4694'),(163484,4723,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(163485,4723,'section_three_section_three_eight_title','Analytics'),(163486,4723,'_section_three_section_three_eight_title','field_631709462b1da'),(163487,4723,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(163488,4723,'_section_three_section_three_eight_content','field_6317095e2b1db'),(163489,4723,'section_three',''),(163490,4723,'_section_three','field_6316fcf4f751a'),(163491,4723,'section_four_section_four_content','The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford. '),(163492,4723,'_section_four_section_four_content','field_63170ac9aa9a2'),(163493,4723,'section_four_section_four_button_text','Book a consultation now'),(163494,4723,'_section_four_section_four_button_text','field_63170b08aa9a3'),(163495,4723,'section_four',''),(163496,4723,'_section_four','field_63170a81aa9a1'),(163497,4723,'section_five_section_five_title','We listen. We learn. We inform.'),(163498,4723,'_section_five_section_five_title','field_63170b8564fc2'),(163499,4723,'section_five_section_five_quote','76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.'),(163500,4723,'_section_five_section_five_quote','field_63170b9a64fc3'),(163501,4723,'section_five_section_five_footer','forbes.com'),(163502,4723,'_section_five_section_five_footer','field_63170bad64fc4'),(163503,4723,'section_five',''),(163504,4723,'_section_five','field_63170b5f64fc1'),(163505,4723,'footer_title','We treat your business like our own.'),(163506,4723,'_footer_title','field_63170f4c8cc9a'),(163507,4723,'footer_button_text','Let\'s talk!'),(163508,4723,'_footer_button_text','field_63170f6f8cc9b'),(163509,4723,'top_title_1','CLOUD NATIVE SOLUTIONS'),(163510,4723,'_top_title_1','field_631ed55492adc'),(163511,4723,'top_title_page','CLOUD NATIVE SOLUTIONS'),(163512,4723,'_top_title_page','field_631ed55492adc'),(163521,4405,'_imagify_optimization_level','2'),(163522,4405,'_imagify_status','already_optimized'),(163523,4405,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:19885;s:14:\"optimized_size\";i:6056;s:7:\"percent\";d:69.54;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52318;s:14:\"optimized_size\";i:14508;s:7:\"percent\";d:72.27;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29361;s:14:\"optimized_size\";i:24604;s:7:\"percent\";d:16.2;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:101564;s:14:\"optimized_size\";i:45168;s:7:\"percent\";d:55.53;}}'),(163524,4726,'top_title','Kubernetes Professional Services'),(163525,4726,'_top_title','field_6317168918e96'),(163526,4726,'top_description','CLOUD NATIVE SOLUTIONS'),(163527,4726,'_top_description','field_6317169e18e97'),(163528,4726,'section_one_section_one_breadcrumb','KCSP'),(163529,4726,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(163530,4726,'section_one_section_one_title','Kubernetes Certified Service Provider'),(163531,4726,'_section_one_section_one_title','field_6317172018e9a'),(163532,4726,'section_one_section_one_image','4725'),(163533,4726,'_section_one_section_one_image','field_63171ca018e9c'),(163534,4726,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(163535,4726,'_section_one_section_one_content','field_6317174118e9b'),(163536,4726,'section_one_section_one_navigation_one','Cloud Native Applications'),(163537,4726,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(163538,4726,'section_one_section_one_navigation_two','Cloud Native DevOps'),(163539,4726,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(163540,4726,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(163541,4726,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(163542,4726,'section_one_section_one_button_text','Book Consultation Now'),(163543,4726,'_section_one_section_one_button_text','field_63171dc918ea0'),(163544,4726,'section_one',''),(163545,4726,'_section_one','field_631716de18e98'),(163546,4726,'section_two_section_two_title','Our Services'),(163547,4726,'_section_two_section_two_title','field_63171e1457be9'),(163548,4726,'section_two_section_two_icon_one','4710'),(163549,4726,'_section_two_section_two_icon_one','field_63171e2c57bea'),(163550,4726,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(163551,4726,'_section_two_section_two_title_one','field_63171e5f57beb'),(163552,4726,'section_two_section_two_icon_two','4710'),(163553,4726,'_section_two_section_two_icon_two','field_63171e7357bec'),(163554,4726,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(163555,4726,'_section_two_section_two_title_two','field_63171ea157bee'),(163556,4726,'section_two_section_two_icon_three','4710'),(163557,4726,'_section_two_section_two_icon_three','field_63171e8557bed'),(163558,4726,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(163559,4726,'_section_two_section_two_title_three','field_63171ec257bef'),(163560,4726,'section_two_section_two_icon_four','4710'),(163561,4726,'_section_two_section_two_icon_four','field_63171ee257bf0'),(163562,4726,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(163563,4726,'_section_two_section_two_title_four','field_63171ef757bf1'),(163564,4726,'section_two_section_two_icon_five','4710'),(163565,4726,'_section_two_section_two_icon_five','field_63171f2857bf3'),(163566,4726,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(163567,4726,'_section_two_section_two_title_five','field_63171f3957bf4'),(163568,4726,'section_two_section_two_icon_six','4710'),(163569,4726,'_section_two_section_two_icon_six','field_63171f5057bf5'),(163570,4726,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(163571,4726,'_section_two_section_two_title_six','field_63171f6657bf6'),(163572,4726,'section_two_section_two_icon_seven','4710'),(163573,4726,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(163574,4726,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(163575,4726,'_section_two_section_two_title_seven','field_63171f9757bf8'),(163576,4726,'section_two_section_two_icon_eight','4710'),(163577,4726,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(163578,4726,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(163579,4726,'_section_two_section_two_title_eight','field_63171fc057bfa'),(163580,4726,'section_two',''),(163581,4726,'_section_two','field_63171dfb57be8'),(163582,4726,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(163583,4726,'_section_three_section_three_breadcrumb','field_631723036988b'),(163584,4726,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(163585,4726,'_section_three_section_three_title','field_631723176988c'),(163586,4726,'section_three_section_three_image','4405'),(163587,4726,'_section_three_section_three_image','field_631723ac6988e'),(163588,4726,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(163589,4726,'_section_three_section_three_content','field_631723906988d'),(163590,4726,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(163591,4726,'_section_three_section_three_footer','field_631723c36988f'),(163592,4726,'section_three_section_three_button_text','Book Consultation Now'),(163593,4726,'_section_three_section_three_button_text','field_631723d769890'),(163594,4726,'section_three',''),(163595,4726,'_section_three','field_631722b96988a'),(163596,4726,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(163597,4726,'_section_four_section_four_breadcrumb','field_6317271523757'),(163598,4726,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(163599,4726,'_section_four_section_four_title','field_6317271523758'),(163600,4726,'section_four_section_four_image','4405'),(163601,4726,'_section_four_section_four_image','field_6317271523759'),(163602,4726,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(163603,4726,'_section_four_section_four_content','field_631727152375a'),(163604,4726,'section_four_section_four_footer','Build - Rebuild - Replatform'),(163605,4726,'_section_four_section_four_footer','field_631727152375b'),(163606,4726,'section_four',''),(163607,4726,'_section_four','field_6317271523756'),(163608,4726,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(163609,4726,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(163610,4726,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(163611,4726,'_section_five_section_five_title','field_631727bbd69dd'),(163612,4726,'section_five_section_five_image','4405'),(163613,4726,'_section_five_section_five_image','field_631727bbd69de'),(163614,4726,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(163615,4726,'_section_five_section_five_content','field_631727bbd69df'),(163616,4726,'section_five_section_five_footer',''),(163617,4726,'_section_five_section_five_footer','field_631727bbd69e0'),(163618,4726,'section_five',''),(163619,4726,'_section_five','field_631727bbd69db'),(163620,4726,'footer_title','We treat your business like our own.'),(163621,4726,'_footer_title','field_631729e2753c6'),(163622,4726,'footer_button_text','Let\'s talk!'),(163623,4726,'_footer_button_text','field_63172a06753c7'),(163624,4726,'section_five_section_five_icon_one','4710'),(163625,4726,'_section_five_section_five_icon_one','field_631727bbd69e0'),(163626,4726,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(163627,4726,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(163628,4726,'section_five_section_five_icon_two','4710'),(163629,4726,'_section_five_section_five_icon_two','field_631ef504912c5'),(163630,4726,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(163631,4726,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(163632,4726,'section_five_section_five_icon_three','4710'),(163633,4726,'_section_five_section_five_icon_three','field_631ef510912c6'),(163634,4726,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(163635,4726,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(163636,4726,'section_five_section_five_icon_four','4710'),(163637,4726,'_section_five_section_five_icon_four','field_631ef51c912c7'),(163638,4726,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(163639,4726,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(163648,4728,'top_title','Kubernetes Professional Services'),(163649,4728,'_top_title','field_6317168918e96'),(163650,4728,'top_description','CLOUD NATIVE SOLUTIONS'),(163651,4728,'_top_description','field_6317169e18e97'),(163652,4728,'section_one_section_one_breadcrumb','KCSP'),(163653,4728,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(163654,4728,'section_one_section_one_title','Kubernetes Certified Service Provider'),(163655,4728,'_section_one_section_one_title','field_6317172018e9a'),(163656,4728,'section_one_section_one_image','4725'),(163657,4728,'_section_one_section_one_image','field_63171ca018e9c'),(163658,4728,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(163659,4728,'_section_one_section_one_content','field_6317174118e9b'),(163660,4728,'section_one_section_one_navigation_one','Cloud Native Applications'),(163661,4728,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(163662,4728,'section_one_section_one_navigation_two','Cloud Native DevOps'),(163663,4728,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(163664,4728,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(163665,4728,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(163666,4728,'section_one_section_one_button_text','Book Consultation Now'),(163667,4728,'_section_one_section_one_button_text','field_63171dc918ea0'),(163668,4728,'section_one',''),(163669,4728,'_section_one','field_631716de18e98'),(163670,4728,'section_two_section_two_title','Our Services'),(163671,4728,'_section_two_section_two_title','field_63171e1457be9'),(163672,4728,'section_two_section_two_icon_one','4710'),(163673,4728,'_section_two_section_two_icon_one','field_63171e2c57bea'),(163674,4728,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(163675,4728,'_section_two_section_two_title_one','field_63171e5f57beb'),(163676,4728,'section_two_section_two_icon_two','4710'),(163677,4728,'_section_two_section_two_icon_two','field_63171e7357bec'),(163678,4728,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(163679,4728,'_section_two_section_two_title_two','field_63171ea157bee'),(163680,4728,'section_two_section_two_icon_three','4710'),(163681,4728,'_section_two_section_two_icon_three','field_63171e8557bed'),(163682,4728,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(163683,4728,'_section_two_section_two_title_three','field_63171ec257bef'),(163684,4728,'section_two_section_two_icon_four','4710'),(163685,4728,'_section_two_section_two_icon_four','field_63171ee257bf0'),(163686,4728,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(163687,4728,'_section_two_section_two_title_four','field_63171ef757bf1'),(163688,4728,'section_two_section_two_icon_five','4710'),(163689,4728,'_section_two_section_two_icon_five','field_63171f2857bf3'),(163690,4728,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(163691,4728,'_section_two_section_two_title_five','field_63171f3957bf4'),(163692,4728,'section_two_section_two_icon_six','4710'),(163693,4728,'_section_two_section_two_icon_six','field_63171f5057bf5'),(163694,4728,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(163695,4728,'_section_two_section_two_title_six','field_63171f6657bf6'),(163696,4728,'section_two_section_two_icon_seven','4710'),(163697,4728,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(163698,4728,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(163699,4728,'_section_two_section_two_title_seven','field_63171f9757bf8'),(163700,4728,'section_two_section_two_icon_eight','4710'),(163701,4728,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(163702,4728,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(163703,4728,'_section_two_section_two_title_eight','field_63171fc057bfa'),(163704,4728,'section_two',''),(163705,4728,'_section_two','field_63171dfb57be8'),(163706,4728,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(163707,4728,'_section_three_section_three_breadcrumb','field_631723036988b'),(163708,4728,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(163709,4728,'_section_three_section_three_title','field_631723176988c'),(163710,4728,'section_three_section_three_image','4727'),(163711,4728,'_section_three_section_three_image','field_631723ac6988e'),(163712,4728,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(163713,4728,'_section_three_section_three_content','field_631723906988d'),(163714,4728,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(163715,4728,'_section_three_section_three_footer','field_631723c36988f'),(163716,4728,'section_three_section_three_button_text','Book Consultation Now'),(163717,4728,'_section_three_section_three_button_text','field_631723d769890'),(163718,4728,'section_three',''),(163719,4728,'_section_three','field_631722b96988a'),(163720,4728,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(163721,4728,'_section_four_section_four_breadcrumb','field_6317271523757'),(163722,4728,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(163723,4728,'_section_four_section_four_title','field_6317271523758'),(163724,4728,'section_four_section_four_image','4405'),(163725,4728,'_section_four_section_four_image','field_6317271523759'),(163726,4728,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(163727,4728,'_section_four_section_four_content','field_631727152375a'),(163728,4728,'section_four_section_four_footer','Build - Rebuild - Replatform'),(163729,4728,'_section_four_section_four_footer','field_631727152375b'),(163730,4728,'section_four',''),(163731,4728,'_section_four','field_6317271523756'),(163732,4728,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(163733,4728,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(163734,4728,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(163735,4728,'_section_five_section_five_title','field_631727bbd69dd'),(163736,4728,'section_five_section_five_image','4405'),(163737,4728,'_section_five_section_five_image','field_631727bbd69de'),(163738,4728,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(163739,4728,'_section_five_section_five_content','field_631727bbd69df'),(163740,4728,'section_five_section_five_footer',''),(163741,4728,'_section_five_section_five_footer','field_631727bbd69e0'),(163742,4728,'section_five',''),(163743,4728,'_section_five','field_631727bbd69db'),(163744,4728,'footer_title','We treat your business like our own.'),(163745,4728,'_footer_title','field_631729e2753c6'),(163746,4728,'footer_button_text','Let\'s talk!'),(163747,4728,'_footer_button_text','field_63172a06753c7'),(163748,4728,'section_five_section_five_icon_one','4710'),(163749,4728,'_section_five_section_five_icon_one','field_631727bbd69e0'),(163750,4728,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(163751,4728,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(163752,4728,'section_five_section_five_icon_two','4710'),(163753,4728,'_section_five_section_five_icon_two','field_631ef504912c5'),(163754,4728,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(163755,4728,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(163756,4728,'section_five_section_five_icon_three','4710'),(163757,4728,'_section_five_section_five_icon_three','field_631ef510912c6'),(163758,4728,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(163759,4728,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(163760,4728,'section_five_section_five_icon_four','4710'),(163761,4728,'_section_five_section_five_icon_four','field_631ef51c912c7'),(163762,4728,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(163763,4728,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(163886,4731,'top_title','Kubernetes Professional Services'),(163887,4731,'_top_title','field_6317168918e96'),(163888,4731,'top_description','CLOUD NATIVE SOLUTIONS'),(163889,4731,'_top_description','field_6317169e18e97'),(163890,4731,'section_one_section_one_breadcrumb','KCSP'),(163891,4731,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(163892,4731,'section_one_section_one_title','Kubernetes Certified Service Provider'),(163893,4731,'_section_one_section_one_title','field_6317172018e9a'),(163894,4731,'section_one_section_one_image','4725'),(163895,4731,'_section_one_section_one_image','field_63171ca018e9c'),(163896,4731,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(163897,4731,'_section_one_section_one_content','field_6317174118e9b'),(163898,4731,'section_one_section_one_navigation_one','Cloud Native Applications'),(163899,4731,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(163900,4731,'section_one_section_one_navigation_two','Cloud Native DevOps'),(163901,4731,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(163902,4731,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(163903,4731,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(163904,4731,'section_one_section_one_button_text','Book Consultation Now'),(163905,4731,'_section_one_section_one_button_text','field_63171dc918ea0'),(163906,4731,'section_one',''),(163907,4731,'_section_one','field_631716de18e98'),(163908,4731,'section_two_section_two_title','Our Services'),(163909,4731,'_section_two_section_two_title','field_63171e1457be9'),(163910,4731,'section_two_section_two_icon_one','4710'),(163911,4731,'_section_two_section_two_icon_one','field_63171e2c57bea'),(163912,4731,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(163913,4731,'_section_two_section_two_title_one','field_63171e5f57beb'),(163914,4731,'section_two_section_two_icon_two','4710'),(163915,4731,'_section_two_section_two_icon_two','field_63171e7357bec'),(163916,4731,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(163917,4731,'_section_two_section_two_title_two','field_63171ea157bee'),(163918,4731,'section_two_section_two_icon_three','4710'),(163919,4731,'_section_two_section_two_icon_three','field_63171e8557bed'),(163920,4731,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(163921,4731,'_section_two_section_two_title_three','field_63171ec257bef'),(163922,4731,'section_two_section_two_icon_four','4710'),(163923,4731,'_section_two_section_two_icon_four','field_63171ee257bf0'),(163924,4731,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(163925,4731,'_section_two_section_two_title_four','field_63171ef757bf1'),(163926,4731,'section_two_section_two_icon_five','4710'),(163927,4731,'_section_two_section_two_icon_five','field_63171f2857bf3'),(163928,4731,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(163929,4731,'_section_two_section_two_title_five','field_63171f3957bf4'),(163930,4731,'section_two_section_two_icon_six','4710'),(163931,4731,'_section_two_section_two_icon_six','field_63171f5057bf5'),(163932,4731,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(163933,4731,'_section_two_section_two_title_six','field_63171f6657bf6'),(163934,4731,'section_two_section_two_icon_seven','4710'),(163935,4731,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(163936,4731,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(163937,4731,'_section_two_section_two_title_seven','field_63171f9757bf8'),(163938,4731,'section_two_section_two_icon_eight','4710'),(163939,4731,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(163940,4731,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(163941,4731,'_section_two_section_two_title_eight','field_63171fc057bfa'),(163942,4731,'section_two',''),(163943,4731,'_section_two','field_63171dfb57be8'),(163944,4731,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(163945,4731,'_section_three_section_three_breadcrumb','field_631723036988b'),(163946,4731,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(163947,4731,'_section_three_section_three_title','field_631723176988c'),(163948,4731,'section_three_section_three_image','4727'),(163949,4731,'_section_three_section_three_image','field_631723ac6988e'),(163950,4731,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(163951,4731,'_section_three_section_three_content','field_631723906988d'),(163952,4731,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(163953,4731,'_section_three_section_three_footer','field_631723c36988f'),(163954,4731,'section_three_section_three_button_text','Book Consultation Now'),(163955,4731,'_section_three_section_three_button_text','field_631723d769890'),(163956,4731,'section_three',''),(163957,4731,'_section_three','field_631722b96988a'),(163958,4731,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(163959,4731,'_section_four_section_four_breadcrumb','field_6317271523757'),(163960,4731,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(163961,4731,'_section_four_section_four_title','field_6317271523758'),(163962,4731,'section_four_section_four_image','4730'),(163963,4731,'_section_four_section_four_image','field_6317271523759'),(163964,4731,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(163965,4731,'_section_four_section_four_content','field_631727152375a'),(163966,4731,'section_four_section_four_footer','Build - Rebuild - Replatform'),(163967,4731,'_section_four_section_four_footer','field_631727152375b'),(163968,4731,'section_four',''),(163969,4731,'_section_four','field_6317271523756'),(163970,4731,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(163971,4731,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(163972,4731,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(163973,4731,'_section_five_section_five_title','field_631727bbd69dd'),(163974,4731,'section_five_section_five_image','4405'),(163975,4731,'_section_five_section_five_image','field_631727bbd69de'),(163976,4731,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(163977,4731,'_section_five_section_five_content','field_631727bbd69df'),(163978,4731,'section_five_section_five_footer',''),(163979,4731,'_section_five_section_five_footer','field_631727bbd69e0'),(163980,4731,'section_five',''),(163981,4731,'_section_five','field_631727bbd69db'),(163982,4731,'footer_title','We treat your business like our own.'),(163983,4731,'_footer_title','field_631729e2753c6'),(163984,4731,'footer_button_text','Let\'s talk!'),(163985,4731,'_footer_button_text','field_63172a06753c7'),(163986,4731,'section_five_section_five_icon_one','4710'),(163987,4731,'_section_five_section_five_icon_one','field_631727bbd69e0'),(163988,4731,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(163989,4731,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(163990,4731,'section_five_section_five_icon_two','4710'),(163991,4731,'_section_five_section_five_icon_two','field_631ef504912c5'),(163992,4731,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(163993,4731,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(163994,4731,'section_five_section_five_icon_three','4710'),(163995,4731,'_section_five_section_five_icon_three','field_631ef510912c6'),(163996,4731,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(163997,4731,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(163998,4731,'section_five_section_five_icon_four','4710'),(163999,4731,'_section_five_section_five_icon_four','field_631ef51c912c7'),(164000,4731,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(164001,4731,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(164010,4733,'top_title','Kubernetes Professional Services'),(164011,4733,'_top_title','field_6317168918e96'),(164012,4733,'top_description','CLOUD NATIVE SOLUTIONS'),(164013,4733,'_top_description','field_6317169e18e97'),(164014,4733,'section_one_section_one_breadcrumb','KCSP'),(164015,4733,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(164016,4733,'section_one_section_one_title','Kubernetes Certified Service Provider'),(164017,4733,'_section_one_section_one_title','field_6317172018e9a'),(164018,4733,'section_one_section_one_image','4725'),(164019,4733,'_section_one_section_one_image','field_63171ca018e9c'),(164020,4733,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(164021,4733,'_section_one_section_one_content','field_6317174118e9b'),(164022,4733,'section_one_section_one_navigation_one','Cloud Native Applications'),(164023,4733,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(164024,4733,'section_one_section_one_navigation_two','Cloud Native DevOps'),(164025,4733,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(164026,4733,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(164027,4733,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(164028,4733,'section_one_section_one_button_text','Book Consultation Now'),(164029,4733,'_section_one_section_one_button_text','field_63171dc918ea0'),(164030,4733,'section_one',''),(164031,4733,'_section_one','field_631716de18e98'),(164032,4733,'section_two_section_two_title','Our Services'),(164033,4733,'_section_two_section_two_title','field_63171e1457be9'),(164034,4733,'section_two_section_two_icon_one','4710'),(164035,4733,'_section_two_section_two_icon_one','field_63171e2c57bea'),(164036,4733,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(164037,4733,'_section_two_section_two_title_one','field_63171e5f57beb'),(164038,4733,'section_two_section_two_icon_two','4710'),(164039,4733,'_section_two_section_two_icon_two','field_63171e7357bec'),(164040,4733,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(164041,4733,'_section_two_section_two_title_two','field_63171ea157bee'),(164042,4733,'section_two_section_two_icon_three','4710'),(164043,4733,'_section_two_section_two_icon_three','field_63171e8557bed'),(164044,4733,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(164045,4733,'_section_two_section_two_title_three','field_63171ec257bef'),(164046,4733,'section_two_section_two_icon_four','4710'),(164047,4733,'_section_two_section_two_icon_four','field_63171ee257bf0'),(164048,4733,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(164049,4733,'_section_two_section_two_title_four','field_63171ef757bf1'),(164050,4733,'section_two_section_two_icon_five','4710'),(164051,4733,'_section_two_section_two_icon_five','field_63171f2857bf3'),(164052,4733,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(164053,4733,'_section_two_section_two_title_five','field_63171f3957bf4'),(164054,4733,'section_two_section_two_icon_six','4710'),(164055,4733,'_section_two_section_two_icon_six','field_63171f5057bf5'),(164056,4733,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(164057,4733,'_section_two_section_two_title_six','field_63171f6657bf6'),(164058,4733,'section_two_section_two_icon_seven','4710'),(164059,4733,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(164060,4733,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(164061,4733,'_section_two_section_two_title_seven','field_63171f9757bf8'),(164062,4733,'section_two_section_two_icon_eight','4710'),(164063,4733,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(164064,4733,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(164065,4733,'_section_two_section_two_title_eight','field_63171fc057bfa'),(164066,4733,'section_two',''),(164067,4733,'_section_two','field_63171dfb57be8'),(164068,4733,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(164069,4733,'_section_three_section_three_breadcrumb','field_631723036988b'),(164070,4733,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(164071,4733,'_section_three_section_three_title','field_631723176988c'),(164072,4733,'section_three_section_three_image','4727'),(164073,4733,'_section_three_section_three_image','field_631723ac6988e'),(164074,4733,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(164075,4733,'_section_three_section_three_content','field_631723906988d'),(164076,4733,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(164077,4733,'_section_three_section_three_footer','field_631723c36988f'),(164078,4733,'section_three_section_three_button_text','Book Consultation Now'),(164079,4733,'_section_three_section_three_button_text','field_631723d769890'),(164080,4733,'section_three',''),(164081,4733,'_section_three','field_631722b96988a'),(164082,4733,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(164083,4733,'_section_four_section_four_breadcrumb','field_6317271523757'),(164084,4733,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(164085,4733,'_section_four_section_four_title','field_6317271523758'),(164086,4733,'section_four_section_four_image','4730'),(164087,4733,'_section_four_section_four_image','field_6317271523759'),(164088,4733,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(164089,4733,'_section_four_section_four_content','field_631727152375a'),(164090,4733,'section_four_section_four_footer','Build - Rebuild - Replatform'),(164091,4733,'_section_four_section_four_footer','field_631727152375b'),(164092,4733,'section_four',''),(164093,4733,'_section_four','field_6317271523756'),(164094,4733,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(164095,4733,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(164096,4733,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(164097,4733,'_section_five_section_five_title','field_631727bbd69dd'),(164098,4733,'section_five_section_five_image','4732'),(164099,4733,'_section_five_section_five_image','field_631727bbd69de'),(164100,4733,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(164101,4733,'_section_five_section_five_content','field_631727bbd69df'),(164102,4733,'section_five_section_five_footer',''),(164103,4733,'_section_five_section_five_footer','field_631727bbd69e0'),(164104,4733,'section_five',''),(164105,4733,'_section_five','field_631727bbd69db'),(164106,4733,'footer_title','We treat your business like our own.'),(164107,4733,'_footer_title','field_631729e2753c6'),(164108,4733,'footer_button_text','Let\'s talk!'),(164109,4733,'_footer_button_text','field_63172a06753c7'),(164110,4733,'section_five_section_five_icon_one','4710'),(164111,4733,'_section_five_section_five_icon_one','field_631727bbd69e0'),(164112,4733,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(164113,4733,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(164114,4733,'section_five_section_five_icon_two','4710'),(164115,4733,'_section_five_section_five_icon_two','field_631ef504912c5'),(164116,4733,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(164117,4733,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(164118,4733,'section_five_section_five_icon_three','4710'),(164119,4733,'_section_five_section_five_icon_three','field_631ef510912c6'),(164120,4733,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(164121,4733,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(164122,4733,'section_five_section_five_icon_four','4710'),(164123,4733,'_section_five_section_five_icon_four','field_631ef51c912c7'),(164124,4733,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(164125,4733,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(164129,4734,'_wp_attached_file','2022/09/cloud-native.png'),(164130,4734,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:65;s:6:\"height\";i:65;s:4:\"file\";s:24:\"2022/09/cloud-native.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(164131,4734,'_imagify_optimization_level','2'),(164132,4734,'_imagify_status','success'),(164133,4734,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3372;s:14:\"optimized_size\";i:710;s:7:\"percent\";d:78.94;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3372;s:14:\"optimized_size\";i:2404;s:7:\"percent\";d:28.71;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:6744;s:14:\"optimized_size\";i:3114;s:7:\"percent\";d:53.83;}}'),(164134,4735,'top_title','Kubernetes Professional Services'),(164135,4735,'_top_title','field_6317168918e96'),(164136,4735,'top_description','CLOUD NATIVE SOLUTIONS'),(164137,4735,'_top_description','field_6317169e18e97'),(164138,4735,'section_one_section_one_breadcrumb','KCSP'),(164139,4735,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(164140,4735,'section_one_section_one_title','Kubernetes Certified Service Provider'),(164141,4735,'_section_one_section_one_title','field_6317172018e9a'),(164142,4735,'section_one_section_one_image','4725'),(164143,4735,'_section_one_section_one_image','field_63171ca018e9c'),(164144,4735,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(164145,4735,'_section_one_section_one_content','field_6317174118e9b'),(164146,4735,'section_one_section_one_navigation_one','Cloud Native Applications'),(164147,4735,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(164148,4735,'section_one_section_one_navigation_two','Cloud Native DevOps'),(164149,4735,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(164150,4735,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(164151,4735,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(164152,4735,'section_one_section_one_button_text','Book Consultation Now'),(164153,4735,'_section_one_section_one_button_text','field_63171dc918ea0'),(164154,4735,'section_one',''),(164155,4735,'_section_one','field_631716de18e98'),(164156,4735,'section_two_section_two_title','Our Services'),(164157,4735,'_section_two_section_two_title','field_63171e1457be9'),(164158,4735,'section_two_section_two_icon_one','4734'),(164159,4735,'_section_two_section_two_icon_one','field_63171e2c57bea'),(164160,4735,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(164161,4735,'_section_two_section_two_title_one','field_63171e5f57beb'),(164162,4735,'section_two_section_two_icon_two','4710'),(164163,4735,'_section_two_section_two_icon_two','field_63171e7357bec'),(164164,4735,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(164165,4735,'_section_two_section_two_title_two','field_63171ea157bee'),(164166,4735,'section_two_section_two_icon_three','4710'),(164167,4735,'_section_two_section_two_icon_three','field_63171e8557bed'),(164168,4735,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(164169,4735,'_section_two_section_two_title_three','field_63171ec257bef'),(164170,4735,'section_two_section_two_icon_four','4710'),(164171,4735,'_section_two_section_two_icon_four','field_63171ee257bf0'),(164172,4735,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(164173,4735,'_section_two_section_two_title_four','field_63171ef757bf1'),(164174,4735,'section_two_section_two_icon_five','4710'),(164175,4735,'_section_two_section_two_icon_five','field_63171f2857bf3'),(164176,4735,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(164177,4735,'_section_two_section_two_title_five','field_63171f3957bf4'),(164178,4735,'section_two_section_two_icon_six','4710'),(164179,4735,'_section_two_section_two_icon_six','field_63171f5057bf5'),(164180,4735,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(164181,4735,'_section_two_section_two_title_six','field_63171f6657bf6'),(164182,4735,'section_two_section_two_icon_seven','4710'),(164183,4735,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(164184,4735,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(164185,4735,'_section_two_section_two_title_seven','field_63171f9757bf8'),(164186,4735,'section_two_section_two_icon_eight','4710'),(164187,4735,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(164188,4735,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(164189,4735,'_section_two_section_two_title_eight','field_63171fc057bfa'),(164190,4735,'section_two',''),(164191,4735,'_section_two','field_63171dfb57be8'),(164192,4735,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(164193,4735,'_section_three_section_three_breadcrumb','field_631723036988b'),(164194,4735,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(164195,4735,'_section_three_section_three_title','field_631723176988c'),(164196,4735,'section_three_section_three_image','4727'),(164197,4735,'_section_three_section_three_image','field_631723ac6988e'),(164198,4735,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(164199,4735,'_section_three_section_three_content','field_631723906988d'),(164200,4735,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(164201,4735,'_section_three_section_three_footer','field_631723c36988f'),(164202,4735,'section_three_section_three_button_text','Book Consultation Now'),(164203,4735,'_section_three_section_three_button_text','field_631723d769890'),(164204,4735,'section_three',''),(164205,4735,'_section_three','field_631722b96988a'),(164206,4735,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(164207,4735,'_section_four_section_four_breadcrumb','field_6317271523757'),(164208,4735,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(164209,4735,'_section_four_section_four_title','field_6317271523758'),(164210,4735,'section_four_section_four_image','4730'),(164211,4735,'_section_four_section_four_image','field_6317271523759'),(164212,4735,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(164213,4735,'_section_four_section_four_content','field_631727152375a'),(164214,4735,'section_four_section_four_footer','Build - Rebuild - Replatform'),(164215,4735,'_section_four_section_four_footer','field_631727152375b'),(164216,4735,'section_four',''),(164217,4735,'_section_four','field_6317271523756'),(164218,4735,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(164219,4735,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(164220,4735,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(164221,4735,'_section_five_section_five_title','field_631727bbd69dd'),(164222,4735,'section_five_section_five_image','4732'),(164223,4735,'_section_five_section_five_image','field_631727bbd69de'),(164224,4735,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(164225,4735,'_section_five_section_five_content','field_631727bbd69df'),(164226,4735,'section_five_section_five_footer',''),(164227,4735,'_section_five_section_five_footer','field_631727bbd69e0'),(164228,4735,'section_five',''),(164229,4735,'_section_five','field_631727bbd69db'),(164230,4735,'footer_title','We treat your business like our own.'),(164231,4735,'_footer_title','field_631729e2753c6'),(164232,4735,'footer_button_text','Let\'s talk!'),(164233,4735,'_footer_button_text','field_63172a06753c7'),(164234,4735,'section_five_section_five_icon_one','4710'),(164235,4735,'_section_five_section_five_icon_one','field_631727bbd69e0'),(164236,4735,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(164237,4735,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(164238,4735,'section_five_section_five_icon_two','4710'),(164239,4735,'_section_five_section_five_icon_two','field_631ef504912c5'),(164240,4735,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(164241,4735,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(164242,4735,'section_five_section_five_icon_three','4710'),(164243,4735,'_section_five_section_five_icon_three','field_631ef510912c6'),(164244,4735,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(164245,4735,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(164246,4735,'section_five_section_five_icon_four','4710'),(164247,4735,'_section_five_section_five_icon_four','field_631ef51c912c7'),(164248,4735,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(164249,4735,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(164253,4736,'_wp_attached_file','2022/09/continuous.png'),(164254,4736,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:65;s:6:\"height\";i:65;s:4:\"file\";s:22:\"2022/09/continuous.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(164255,4736,'_imagify_optimization_level','2'),(164256,4736,'_imagify_status','success'),(164257,4736,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1465;s:14:\"optimized_size\";i:394;s:7:\"percent\";d:73.11;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1465;s:14:\"optimized_size\";i:786;s:7:\"percent\";d:46.35;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2930;s:14:\"optimized_size\";i:1180;s:7:\"percent\";d:59.73;}}'),(164258,4737,'top_title','Kubernetes Professional Services'),(164259,4737,'_top_title','field_6317168918e96'),(164260,4737,'top_description','CLOUD NATIVE SOLUTIONS'),(164261,4737,'_top_description','field_6317169e18e97'),(164262,4737,'section_one_section_one_breadcrumb','KCSP'),(164263,4737,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(164264,4737,'section_one_section_one_title','Kubernetes Certified Service Provider'),(164265,4737,'_section_one_section_one_title','field_6317172018e9a'),(164266,4737,'section_one_section_one_image','4725'),(164267,4737,'_section_one_section_one_image','field_63171ca018e9c'),(164268,4737,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(164269,4737,'_section_one_section_one_content','field_6317174118e9b'),(164270,4737,'section_one_section_one_navigation_one','Cloud Native Applications'),(164271,4737,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(164272,4737,'section_one_section_one_navigation_two','Cloud Native DevOps'),(164273,4737,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(164274,4737,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(164275,4737,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(164276,4737,'section_one_section_one_button_text','Book Consultation Now'),(164277,4737,'_section_one_section_one_button_text','field_63171dc918ea0'),(164278,4737,'section_one',''),(164279,4737,'_section_one','field_631716de18e98'),(164280,4737,'section_two_section_two_title','Our Services'),(164281,4737,'_section_two_section_two_title','field_63171e1457be9'),(164282,4737,'section_two_section_two_icon_one','4734'),(164283,4737,'_section_two_section_two_icon_one','field_63171e2c57bea'),(164284,4737,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(164285,4737,'_section_two_section_two_title_one','field_63171e5f57beb'),(164286,4737,'section_two_section_two_icon_two','4736'),(164287,4737,'_section_two_section_two_icon_two','field_63171e7357bec'),(164288,4737,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(164289,4737,'_section_two_section_two_title_two','field_63171ea157bee'),(164290,4737,'section_two_section_two_icon_three','4710'),(164291,4737,'_section_two_section_two_icon_three','field_63171e8557bed'),(164292,4737,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(164293,4737,'_section_two_section_two_title_three','field_63171ec257bef'),(164294,4737,'section_two_section_two_icon_four','4710'),(164295,4737,'_section_two_section_two_icon_four','field_63171ee257bf0'),(164296,4737,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(164297,4737,'_section_two_section_two_title_four','field_63171ef757bf1'),(164298,4737,'section_two_section_two_icon_five','4710'),(164299,4737,'_section_two_section_two_icon_five','field_63171f2857bf3'),(164300,4737,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(164301,4737,'_section_two_section_two_title_five','field_63171f3957bf4'),(164302,4737,'section_two_section_two_icon_six','4710'),(164303,4737,'_section_two_section_two_icon_six','field_63171f5057bf5'),(164304,4737,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(164305,4737,'_section_two_section_two_title_six','field_63171f6657bf6'),(164306,4737,'section_two_section_two_icon_seven','4710'),(164307,4737,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(164308,4737,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(164309,4737,'_section_two_section_two_title_seven','field_63171f9757bf8'),(164310,4737,'section_two_section_two_icon_eight','4710'),(164311,4737,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(164312,4737,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(164313,4737,'_section_two_section_two_title_eight','field_63171fc057bfa'),(164314,4737,'section_two',''),(164315,4737,'_section_two','field_63171dfb57be8'),(164316,4737,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(164317,4737,'_section_three_section_three_breadcrumb','field_631723036988b'),(164318,4737,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(164319,4737,'_section_three_section_three_title','field_631723176988c'),(164320,4737,'section_three_section_three_image','4727'),(164321,4737,'_section_three_section_three_image','field_631723ac6988e'),(164322,4737,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(164323,4737,'_section_three_section_three_content','field_631723906988d'),(164324,4737,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(164325,4737,'_section_three_section_three_footer','field_631723c36988f'),(164326,4737,'section_three_section_three_button_text','Book Consultation Now'),(164327,4737,'_section_three_section_three_button_text','field_631723d769890'),(164328,4737,'section_three',''),(164329,4737,'_section_three','field_631722b96988a'),(164330,4737,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(164331,4737,'_section_four_section_four_breadcrumb','field_6317271523757'),(164332,4737,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(164333,4737,'_section_four_section_four_title','field_6317271523758'),(164334,4737,'section_four_section_four_image','4730'),(164335,4737,'_section_four_section_four_image','field_6317271523759'),(164336,4737,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(164337,4737,'_section_four_section_four_content','field_631727152375a'),(164338,4737,'section_four_section_four_footer','Build - Rebuild - Replatform'),(164339,4737,'_section_four_section_four_footer','field_631727152375b'),(164340,4737,'section_four',''),(164341,4737,'_section_four','field_6317271523756'),(164342,4737,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(164343,4737,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(164344,4737,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(164345,4737,'_section_five_section_five_title','field_631727bbd69dd'),(164346,4737,'section_five_section_five_image','4732'),(164347,4737,'_section_five_section_five_image','field_631727bbd69de'),(164348,4737,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(164349,4737,'_section_five_section_five_content','field_631727bbd69df'),(164350,4737,'section_five_section_five_footer',''),(164351,4737,'_section_five_section_five_footer','field_631727bbd69e0'),(164352,4737,'section_five',''),(164353,4737,'_section_five','field_631727bbd69db'),(164354,4737,'footer_title','We treat your business like our own.'),(164355,4737,'_footer_title','field_631729e2753c6'),(164356,4737,'footer_button_text','Let\'s talk!'),(164357,4737,'_footer_button_text','field_63172a06753c7'),(164358,4737,'section_five_section_five_icon_one','4710'),(164359,4737,'_section_five_section_five_icon_one','field_631727bbd69e0'),(164360,4737,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(164361,4737,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(164362,4737,'section_five_section_five_icon_two','4710'),(164363,4737,'_section_five_section_five_icon_two','field_631ef504912c5'),(164364,4737,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(164365,4737,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(164366,4737,'section_five_section_five_icon_three','4710'),(164367,4737,'_section_five_section_five_icon_three','field_631ef510912c6'),(164368,4737,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(164369,4737,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(164370,4737,'section_five_section_five_icon_four','4710'),(164371,4737,'_section_five_section_five_icon_four','field_631ef51c912c7'),(164372,4737,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(164373,4737,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(164377,4738,'_wp_attached_file','2022/09/cloud-native-tranformation.png'),(164378,4738,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:71;s:6:\"height\";i:65;s:4:\"file\";s:38:\"2022/09/cloud-native-tranformation.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(164379,4738,'_imagify_optimization_level','2'),(164380,4738,'_imagify_status','success'),(164381,4738,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2477;s:14:\"optimized_size\";i:573;s:7:\"percent\";d:76.87;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2477;s:14:\"optimized_size\";i:1998;s:7:\"percent\";d:19.34;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:4954;s:14:\"optimized_size\";i:2571;s:7:\"percent\";d:48.1;}}'),(164382,4739,'top_title','Kubernetes Professional Services'),(164383,4739,'_top_title','field_6317168918e96'),(164384,4739,'top_description','CLOUD NATIVE SOLUTIONS'),(164385,4739,'_top_description','field_6317169e18e97'),(164386,4739,'section_one_section_one_breadcrumb','KCSP'),(164387,4739,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(164388,4739,'section_one_section_one_title','Kubernetes Certified Service Provider'),(164389,4739,'_section_one_section_one_title','field_6317172018e9a'),(164390,4739,'section_one_section_one_image','4725'),(164391,4739,'_section_one_section_one_image','field_63171ca018e9c'),(164392,4739,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(164393,4739,'_section_one_section_one_content','field_6317174118e9b'),(164394,4739,'section_one_section_one_navigation_one','Cloud Native Applications'),(164395,4739,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(164396,4739,'section_one_section_one_navigation_two','Cloud Native DevOps'),(164397,4739,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(164398,4739,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(164399,4739,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(164400,4739,'section_one_section_one_button_text','Book Consultation Now'),(164401,4739,'_section_one_section_one_button_text','field_63171dc918ea0'),(164402,4739,'section_one',''),(164403,4739,'_section_one','field_631716de18e98'),(164404,4739,'section_two_section_two_title','Our Services'),(164405,4739,'_section_two_section_two_title','field_63171e1457be9'),(164406,4739,'section_two_section_two_icon_one','4734'),(164407,4739,'_section_two_section_two_icon_one','field_63171e2c57bea'),(164408,4739,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(164409,4739,'_section_two_section_two_title_one','field_63171e5f57beb'),(164410,4739,'section_two_section_two_icon_two','4738'),(164411,4739,'_section_two_section_two_icon_two','field_63171e7357bec'),(164412,4739,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(164413,4739,'_section_two_section_two_title_two','field_63171ea157bee'),(164414,4739,'section_two_section_two_icon_three','4710'),(164415,4739,'_section_two_section_two_icon_three','field_63171e8557bed'),(164416,4739,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(164417,4739,'_section_two_section_two_title_three','field_63171ec257bef'),(164418,4739,'section_two_section_two_icon_four','4710'),(164419,4739,'_section_two_section_two_icon_four','field_63171ee257bf0'),(164420,4739,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(164421,4739,'_section_two_section_two_title_four','field_63171ef757bf1'),(164422,4739,'section_two_section_two_icon_five','4710'),(164423,4739,'_section_two_section_two_icon_five','field_63171f2857bf3'),(164424,4739,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(164425,4739,'_section_two_section_two_title_five','field_63171f3957bf4'),(164426,4739,'section_two_section_two_icon_six','4710'),(164427,4739,'_section_two_section_two_icon_six','field_63171f5057bf5'),(164428,4739,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(164429,4739,'_section_two_section_two_title_six','field_63171f6657bf6'),(164430,4739,'section_two_section_two_icon_seven','4710'),(164431,4739,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(164432,4739,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(164433,4739,'_section_two_section_two_title_seven','field_63171f9757bf8'),(164434,4739,'section_two_section_two_icon_eight','4710'),(164435,4739,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(164436,4739,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(164437,4739,'_section_two_section_two_title_eight','field_63171fc057bfa'),(164438,4739,'section_two',''),(164439,4739,'_section_two','field_63171dfb57be8'),(164440,4739,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(164441,4739,'_section_three_section_three_breadcrumb','field_631723036988b'),(164442,4739,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(164443,4739,'_section_three_section_three_title','field_631723176988c'),(164444,4739,'section_three_section_three_image','4727'),(164445,4739,'_section_three_section_three_image','field_631723ac6988e'),(164446,4739,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(164447,4739,'_section_three_section_three_content','field_631723906988d'),(164448,4739,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(164449,4739,'_section_three_section_three_footer','field_631723c36988f'),(164450,4739,'section_three_section_three_button_text','Book Consultation Now'),(164451,4739,'_section_three_section_three_button_text','field_631723d769890'),(164452,4739,'section_three',''),(164453,4739,'_section_three','field_631722b96988a'),(164454,4739,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(164455,4739,'_section_four_section_four_breadcrumb','field_6317271523757'),(164456,4739,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(164457,4739,'_section_four_section_four_title','field_6317271523758'),(164458,4739,'section_four_section_four_image','4730'),(164459,4739,'_section_four_section_four_image','field_6317271523759'),(164460,4739,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(164461,4739,'_section_four_section_four_content','field_631727152375a'),(164462,4739,'section_four_section_four_footer','Build - Rebuild - Replatform'),(164463,4739,'_section_four_section_four_footer','field_631727152375b'),(164464,4739,'section_four',''),(164465,4739,'_section_four','field_6317271523756'),(164466,4739,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(164467,4739,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(164468,4739,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(164469,4739,'_section_five_section_five_title','field_631727bbd69dd'),(164470,4739,'section_five_section_five_image','4732'),(164471,4739,'_section_five_section_five_image','field_631727bbd69de'),(164472,4739,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(164473,4739,'_section_five_section_five_content','field_631727bbd69df'),(164474,4739,'section_five_section_five_footer',''),(164475,4739,'_section_five_section_five_footer','field_631727bbd69e0'),(164476,4739,'section_five',''),(164477,4739,'_section_five','field_631727bbd69db'),(164478,4739,'footer_title','We treat your business like our own.'),(164479,4739,'_footer_title','field_631729e2753c6'),(164480,4739,'footer_button_text','Let\'s talk!'),(164481,4739,'_footer_button_text','field_63172a06753c7'),(164482,4739,'section_five_section_five_icon_one','4710'),(164483,4739,'_section_five_section_five_icon_one','field_631727bbd69e0'),(164484,4739,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(164485,4739,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(164486,4739,'section_five_section_five_icon_two','4710'),(164487,4739,'_section_five_section_five_icon_two','field_631ef504912c5'),(164488,4739,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(164489,4739,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(164490,4739,'section_five_section_five_icon_three','4710'),(164491,4739,'_section_five_section_five_icon_three','field_631ef510912c6'),(164492,4739,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(164493,4739,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(164494,4739,'section_five_section_five_icon_four','4710'),(164495,4739,'_section_five_section_five_icon_four','field_631ef51c912c7'),(164496,4739,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(164497,4739,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(164501,4740,'top_title','Kubernetes Professional Services'),(164502,4740,'_top_title','field_6317168918e96'),(164503,4740,'top_description','CLOUD NATIVE SOLUTIONS'),(164504,4740,'_top_description','field_6317169e18e97'),(164505,4740,'section_one_section_one_breadcrumb','KCSP'),(164506,4740,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(164507,4740,'section_one_section_one_title','Kubernetes Certified Service Provider'),(164508,4740,'_section_one_section_one_title','field_6317172018e9a'),(164509,4740,'section_one_section_one_image','4725'),(164510,4740,'_section_one_section_one_image','field_63171ca018e9c'),(164511,4740,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(164512,4740,'_section_one_section_one_content','field_6317174118e9b'),(164513,4740,'section_one_section_one_navigation_one','Cloud Native Applications'),(164514,4740,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(164515,4740,'section_one_section_one_navigation_two','Cloud Native DevOps'),(164516,4740,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(164517,4740,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(164518,4740,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(164519,4740,'section_one_section_one_button_text','Book Consultation Now'),(164520,4740,'_section_one_section_one_button_text','field_63171dc918ea0'),(164521,4740,'section_one',''),(164522,4740,'_section_one','field_631716de18e98'),(164523,4740,'section_two_section_two_title','Our Services'),(164524,4740,'_section_two_section_two_title','field_63171e1457be9'),(164525,4740,'section_two_section_two_icon_one','4734'),(164526,4740,'_section_two_section_two_icon_one','field_63171e2c57bea'),(164527,4740,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(164528,4740,'_section_two_section_two_title_one','field_63171e5f57beb'),(164529,4740,'section_two_section_two_icon_two','4738'),(164530,4740,'_section_two_section_two_icon_two','field_63171e7357bec'),(164531,4740,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(164532,4740,'_section_two_section_two_title_two','field_63171ea157bee'),(164533,4740,'section_two_section_two_icon_three','4736'),(164534,4740,'_section_two_section_two_icon_three','field_63171e8557bed'),(164535,4740,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(164536,4740,'_section_two_section_two_title_three','field_63171ec257bef'),(164537,4740,'section_two_section_two_icon_four','4710'),(164538,4740,'_section_two_section_two_icon_four','field_63171ee257bf0'),(164539,4740,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(164540,4740,'_section_two_section_two_title_four','field_63171ef757bf1'),(164541,4740,'section_two_section_two_icon_five','4710'),(164542,4740,'_section_two_section_two_icon_five','field_63171f2857bf3'),(164543,4740,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(164544,4740,'_section_two_section_two_title_five','field_63171f3957bf4'),(164545,4740,'section_two_section_two_icon_six','4710'),(164546,4740,'_section_two_section_two_icon_six','field_63171f5057bf5'),(164547,4740,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(164548,4740,'_section_two_section_two_title_six','field_63171f6657bf6'),(164549,4740,'section_two_section_two_icon_seven','4710'),(164550,4740,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(164551,4740,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(164552,4740,'_section_two_section_two_title_seven','field_63171f9757bf8'),(164553,4740,'section_two_section_two_icon_eight','4710'),(164554,4740,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(164555,4740,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(164556,4740,'_section_two_section_two_title_eight','field_63171fc057bfa'),(164557,4740,'section_two',''),(164558,4740,'_section_two','field_63171dfb57be8'),(164559,4740,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(164560,4740,'_section_three_section_three_breadcrumb','field_631723036988b'),(164561,4740,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(164562,4740,'_section_three_section_three_title','field_631723176988c'),(164563,4740,'section_three_section_three_image','4727'),(164564,4740,'_section_three_section_three_image','field_631723ac6988e'),(164565,4740,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(164566,4740,'_section_three_section_three_content','field_631723906988d'),(164567,4740,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(164568,4740,'_section_three_section_three_footer','field_631723c36988f'),(164569,4740,'section_three_section_three_button_text','Book Consultation Now'),(164570,4740,'_section_three_section_three_button_text','field_631723d769890'),(164571,4740,'section_three',''),(164572,4740,'_section_three','field_631722b96988a'),(164573,4740,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(164574,4740,'_section_four_section_four_breadcrumb','field_6317271523757'),(164575,4740,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(164576,4740,'_section_four_section_four_title','field_6317271523758'),(164577,4740,'section_four_section_four_image','4730'),(164578,4740,'_section_four_section_four_image','field_6317271523759'),(164579,4740,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(164580,4740,'_section_four_section_four_content','field_631727152375a'),(164581,4740,'section_four_section_four_footer','Build - Rebuild - Replatform'),(164582,4740,'_section_four_section_four_footer','field_631727152375b'),(164583,4740,'section_four',''),(164584,4740,'_section_four','field_6317271523756'),(164585,4740,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(164586,4740,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(164587,4740,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(164588,4740,'_section_five_section_five_title','field_631727bbd69dd'),(164589,4740,'section_five_section_five_image','4732'),(164590,4740,'_section_five_section_five_image','field_631727bbd69de'),(164591,4740,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(164592,4740,'_section_five_section_five_content','field_631727bbd69df'),(164593,4740,'section_five_section_five_footer',''),(164594,4740,'_section_five_section_five_footer','field_631727bbd69e0'),(164595,4740,'section_five',''),(164596,4740,'_section_five','field_631727bbd69db'),(164597,4740,'footer_title','We treat your business like our own.'),(164598,4740,'_footer_title','field_631729e2753c6'),(164599,4740,'footer_button_text','Let\'s talk!'),(164600,4740,'_footer_button_text','field_63172a06753c7'),(164601,4740,'section_five_section_five_icon_one','4710'),(164602,4740,'_section_five_section_five_icon_one','field_631727bbd69e0'),(164603,4740,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(164604,4740,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(164605,4740,'section_five_section_five_icon_two','4710'),(164606,4740,'_section_five_section_five_icon_two','field_631ef504912c5'),(164607,4740,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(164608,4740,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(164609,4740,'section_five_section_five_icon_three','4710'),(164610,4740,'_section_five_section_five_icon_three','field_631ef510912c6'),(164611,4740,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(164612,4740,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(164613,4740,'section_five_section_five_icon_four','4710'),(164614,4740,'_section_five_section_five_icon_four','field_631ef51c912c7'),(164615,4740,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(164616,4740,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(164620,4741,'_wp_attached_file','2022/09/cloud-native-transformation.png'),(164621,4741,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:65;s:6:\"height\";i:65;s:4:\"file\";s:39:\"2022/09/cloud-native-transformation.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(164622,4741,'_imagify_optimization_level','2'),(164623,4741,'_imagify_status','success'),(164624,4741,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2244;s:14:\"optimized_size\";i:550;s:7:\"percent\";d:75.49;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2244;s:14:\"optimized_size\";i:1828;s:7:\"percent\";d:18.54;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:4488;s:14:\"optimized_size\";i:2378;s:7:\"percent\";d:47.01;}}'),(164625,4742,'top_title','Kubernetes Professional Services'),(164626,4742,'_top_title','field_6317168918e96'),(164627,4742,'top_description','CLOUD NATIVE SOLUTIONS'),(164628,4742,'_top_description','field_6317169e18e97'),(164629,4742,'section_one_section_one_breadcrumb','KCSP'),(164630,4742,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(164631,4742,'section_one_section_one_title','Kubernetes Certified Service Provider'),(164632,4742,'_section_one_section_one_title','field_6317172018e9a'),(164633,4742,'section_one_section_one_image','4725'),(164634,4742,'_section_one_section_one_image','field_63171ca018e9c'),(164635,4742,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(164636,4742,'_section_one_section_one_content','field_6317174118e9b'),(164637,4742,'section_one_section_one_navigation_one','Cloud Native Applications'),(164638,4742,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(164639,4742,'section_one_section_one_navigation_two','Cloud Native DevOps'),(164640,4742,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(164641,4742,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(164642,4742,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(164643,4742,'section_one_section_one_button_text','Book Consultation Now'),(164644,4742,'_section_one_section_one_button_text','field_63171dc918ea0'),(164645,4742,'section_one',''),(164646,4742,'_section_one','field_631716de18e98'),(164647,4742,'section_two_section_two_title','Our Services'),(164648,4742,'_section_two_section_two_title','field_63171e1457be9'),(164649,4742,'section_two_section_two_icon_one','4734'),(164650,4742,'_section_two_section_two_icon_one','field_63171e2c57bea'),(164651,4742,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(164652,4742,'_section_two_section_two_title_one','field_63171e5f57beb'),(164653,4742,'section_two_section_two_icon_two','4741'),(164654,4742,'_section_two_section_two_icon_two','field_63171e7357bec'),(164655,4742,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(164656,4742,'_section_two_section_two_title_two','field_63171ea157bee'),(164657,4742,'section_two_section_two_icon_three','4736'),(164658,4742,'_section_two_section_two_icon_three','field_63171e8557bed'),(164659,4742,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(164660,4742,'_section_two_section_two_title_three','field_63171ec257bef'),(164661,4742,'section_two_section_two_icon_four','4710'),(164662,4742,'_section_two_section_two_icon_four','field_63171ee257bf0'),(164663,4742,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(164664,4742,'_section_two_section_two_title_four','field_63171ef757bf1'),(164665,4742,'section_two_section_two_icon_five','4710'),(164666,4742,'_section_two_section_two_icon_five','field_63171f2857bf3'),(164667,4742,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(164668,4742,'_section_two_section_two_title_five','field_63171f3957bf4'),(164669,4742,'section_two_section_two_icon_six','4710'),(164670,4742,'_section_two_section_two_icon_six','field_63171f5057bf5'),(164671,4742,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(164672,4742,'_section_two_section_two_title_six','field_63171f6657bf6'),(164673,4742,'section_two_section_two_icon_seven','4710'),(164674,4742,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(164675,4742,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(164676,4742,'_section_two_section_two_title_seven','field_63171f9757bf8'),(164677,4742,'section_two_section_two_icon_eight','4710'),(164678,4742,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(164679,4742,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(164680,4742,'_section_two_section_two_title_eight','field_63171fc057bfa'),(164681,4742,'section_two',''),(164682,4742,'_section_two','field_63171dfb57be8'),(164683,4742,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(164684,4742,'_section_three_section_three_breadcrumb','field_631723036988b'),(164685,4742,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(164686,4742,'_section_three_section_three_title','field_631723176988c'),(164687,4742,'section_three_section_three_image','4727'),(164688,4742,'_section_three_section_three_image','field_631723ac6988e'),(164689,4742,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(164690,4742,'_section_three_section_three_content','field_631723906988d'),(164691,4742,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(164692,4742,'_section_three_section_three_footer','field_631723c36988f'),(164693,4742,'section_three_section_three_button_text','Book Consultation Now'),(164694,4742,'_section_three_section_three_button_text','field_631723d769890'),(164695,4742,'section_three',''),(164696,4742,'_section_three','field_631722b96988a'),(164697,4742,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(164698,4742,'_section_four_section_four_breadcrumb','field_6317271523757'),(164699,4742,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(164700,4742,'_section_four_section_four_title','field_6317271523758'),(164701,4742,'section_four_section_four_image','4730'),(164702,4742,'_section_four_section_four_image','field_6317271523759'),(164703,4742,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(164704,4742,'_section_four_section_four_content','field_631727152375a'),(164705,4742,'section_four_section_four_footer','Build - Rebuild - Replatform'),(164706,4742,'_section_four_section_four_footer','field_631727152375b'),(164707,4742,'section_four',''),(164708,4742,'_section_four','field_6317271523756'),(164709,4742,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(164710,4742,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(164711,4742,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(164712,4742,'_section_five_section_five_title','field_631727bbd69dd'),(164713,4742,'section_five_section_five_image','4732'),(164714,4742,'_section_five_section_five_image','field_631727bbd69de'),(164715,4742,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(164716,4742,'_section_five_section_five_content','field_631727bbd69df'),(164717,4742,'section_five_section_five_footer',''),(164718,4742,'_section_five_section_five_footer','field_631727bbd69e0'),(164719,4742,'section_five',''),(164720,4742,'_section_five','field_631727bbd69db'),(164721,4742,'footer_title','We treat your business like our own.'),(164722,4742,'_footer_title','field_631729e2753c6'),(164723,4742,'footer_button_text','Let\'s talk!'),(164724,4742,'_footer_button_text','field_63172a06753c7'),(164725,4742,'section_five_section_five_icon_one','4710'),(164726,4742,'_section_five_section_five_icon_one','field_631727bbd69e0'),(164727,4742,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(164728,4742,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(164729,4742,'section_five_section_five_icon_two','4710'),(164730,4742,'_section_five_section_five_icon_two','field_631ef504912c5'),(164731,4742,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(164732,4742,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(164733,4742,'section_five_section_five_icon_three','4710'),(164734,4742,'_section_five_section_five_icon_three','field_631ef510912c6'),(164735,4742,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(164736,4742,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(164737,4742,'section_five_section_five_icon_four','4710'),(164738,4742,'_section_five_section_five_icon_four','field_631ef51c912c7'),(164739,4742,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(164740,4742,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(164744,4743,'top_title','Kubernetes Professional Services'),(164745,4743,'_top_title','field_6317168918e96'),(164746,4743,'top_description','CLOUD NATIVE SOLUTIONS'),(164747,4743,'_top_description','field_6317169e18e97'),(164748,4743,'section_one_section_one_breadcrumb','KCSP'),(164749,4743,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(164750,4743,'section_one_section_one_title','Kubernetes Certified Service Provider'),(164751,4743,'_section_one_section_one_title','field_6317172018e9a'),(164752,4743,'section_one_section_one_image','4725'),(164753,4743,'_section_one_section_one_image','field_63171ca018e9c'),(164754,4743,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(164755,4743,'_section_one_section_one_content','field_6317174118e9b'),(164756,4743,'section_one_section_one_navigation_one','Cloud Native Applications'),(164757,4743,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(164758,4743,'section_one_section_one_navigation_two','Cloud Native DevOps'),(164759,4743,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(164760,4743,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(164761,4743,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(164762,4743,'section_one_section_one_button_text','Book Consultation Now'),(164763,4743,'_section_one_section_one_button_text','field_63171dc918ea0'),(164764,4743,'section_one',''),(164765,4743,'_section_one','field_631716de18e98'),(164766,4743,'section_two_section_two_title','Our Services'),(164767,4743,'_section_two_section_two_title','field_63171e1457be9'),(164768,4743,'section_two_section_two_icon_one','4734'),(164769,4743,'_section_two_section_two_icon_one','field_63171e2c57bea'),(164770,4743,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(164771,4743,'_section_two_section_two_title_one','field_63171e5f57beb'),(164772,4743,'section_two_section_two_icon_two','4741'),(164773,4743,'_section_two_section_two_icon_two','field_63171e7357bec'),(164774,4743,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(164775,4743,'_section_two_section_two_title_two','field_63171ea157bee'),(164776,4743,'section_two_section_two_icon_three','4736'),(164777,4743,'_section_two_section_two_icon_three','field_63171e8557bed'),(164778,4743,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(164779,4743,'_section_two_section_two_title_three','field_63171ec257bef'),(164780,4743,'section_two_section_two_icon_four','4738'),(164781,4743,'_section_two_section_two_icon_four','field_63171ee257bf0'),(164782,4743,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(164783,4743,'_section_two_section_two_title_four','field_63171ef757bf1'),(164784,4743,'section_two_section_two_icon_five','4710'),(164785,4743,'_section_two_section_two_icon_five','field_63171f2857bf3'),(164786,4743,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(164787,4743,'_section_two_section_two_title_five','field_63171f3957bf4'),(164788,4743,'section_two_section_two_icon_six','4710'),(164789,4743,'_section_two_section_two_icon_six','field_63171f5057bf5'),(164790,4743,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(164791,4743,'_section_two_section_two_title_six','field_63171f6657bf6'),(164792,4743,'section_two_section_two_icon_seven','4710'),(164793,4743,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(164794,4743,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(164795,4743,'_section_two_section_two_title_seven','field_63171f9757bf8'),(164796,4743,'section_two_section_two_icon_eight','4710'),(164797,4743,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(164798,4743,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(164799,4743,'_section_two_section_two_title_eight','field_63171fc057bfa'),(164800,4743,'section_two',''),(164801,4743,'_section_two','field_63171dfb57be8'),(164802,4743,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(164803,4743,'_section_three_section_three_breadcrumb','field_631723036988b'),(164804,4743,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(164805,4743,'_section_three_section_three_title','field_631723176988c'),(164806,4743,'section_three_section_three_image','4727'),(164807,4743,'_section_three_section_three_image','field_631723ac6988e'),(164808,4743,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(164809,4743,'_section_three_section_three_content','field_631723906988d'),(164810,4743,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(164811,4743,'_section_three_section_three_footer','field_631723c36988f'),(164812,4743,'section_three_section_three_button_text','Book Consultation Now'),(164813,4743,'_section_three_section_three_button_text','field_631723d769890'),(164814,4743,'section_three',''),(164815,4743,'_section_three','field_631722b96988a'),(164816,4743,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(164817,4743,'_section_four_section_four_breadcrumb','field_6317271523757'),(164818,4743,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(164819,4743,'_section_four_section_four_title','field_6317271523758'),(164820,4743,'section_four_section_four_image','4730'),(164821,4743,'_section_four_section_four_image','field_6317271523759'),(164822,4743,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(164823,4743,'_section_four_section_four_content','field_631727152375a'),(164824,4743,'section_four_section_four_footer','Build - Rebuild - Replatform'),(164825,4743,'_section_four_section_four_footer','field_631727152375b'),(164826,4743,'section_four',''),(164827,4743,'_section_four','field_6317271523756'),(164828,4743,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(164829,4743,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(164830,4743,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(164831,4743,'_section_five_section_five_title','field_631727bbd69dd'),(164832,4743,'section_five_section_five_image','4732'),(164833,4743,'_section_five_section_five_image','field_631727bbd69de'),(164834,4743,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(164835,4743,'_section_five_section_five_content','field_631727bbd69df'),(164836,4743,'section_five_section_five_footer',''),(164837,4743,'_section_five_section_five_footer','field_631727bbd69e0'),(164838,4743,'section_five',''),(164839,4743,'_section_five','field_631727bbd69db'),(164840,4743,'footer_title','We treat your business like our own.'),(164841,4743,'_footer_title','field_631729e2753c6'),(164842,4743,'footer_button_text','Let\'s talk!'),(164843,4743,'_footer_button_text','field_63172a06753c7'),(164844,4743,'section_five_section_five_icon_one','4710'),(164845,4743,'_section_five_section_five_icon_one','field_631727bbd69e0'),(164846,4743,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(164847,4743,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(164848,4743,'section_five_section_five_icon_two','4710'),(164849,4743,'_section_five_section_five_icon_two','field_631ef504912c5'),(164850,4743,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(164851,4743,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(164852,4743,'section_five_section_five_icon_three','4710'),(164853,4743,'_section_five_section_five_icon_three','field_631ef510912c6'),(164854,4743,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(164855,4743,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(164856,4743,'section_five_section_five_icon_four','4710'),(164857,4743,'_section_five_section_five_icon_four','field_631ef51c912c7'),(164858,4743,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(164859,4743,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(164863,4744,'_wp_attached_file','2022/09/design-buid-and-monitor.png'),(164864,4744,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:65;s:6:\"height\";i:65;s:4:\"file\";s:35:\"2022/09/design-buid-and-monitor.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(164865,4744,'_imagify_optimization_level','2'),(164866,4744,'_imagify_status','success'),(164867,4744,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2915;s:14:\"optimized_size\";i:677;s:7:\"percent\";d:76.78;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2915;s:14:\"optimized_size\";i:2190;s:7:\"percent\";d:24.87;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:5830;s:14:\"optimized_size\";i:2867;s:7:\"percent\";d:50.82;}}'),(164868,4745,'top_title','Kubernetes Professional Services'),(164869,4745,'_top_title','field_6317168918e96'),(164870,4745,'top_description','CLOUD NATIVE SOLUTIONS'),(164871,4745,'_top_description','field_6317169e18e97'),(164872,4745,'section_one_section_one_breadcrumb','KCSP'),(164873,4745,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(164874,4745,'section_one_section_one_title','Kubernetes Certified Service Provider'),(164875,4745,'_section_one_section_one_title','field_6317172018e9a'),(164876,4745,'section_one_section_one_image','4725'),(164877,4745,'_section_one_section_one_image','field_63171ca018e9c'),(164878,4745,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(164879,4745,'_section_one_section_one_content','field_6317174118e9b'),(164880,4745,'section_one_section_one_navigation_one','Cloud Native Applications'),(164881,4745,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(164882,4745,'section_one_section_one_navigation_two','Cloud Native DevOps'),(164883,4745,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(164884,4745,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(164885,4745,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(164886,4745,'section_one_section_one_button_text','Book Consultation Now'),(164887,4745,'_section_one_section_one_button_text','field_63171dc918ea0'),(164888,4745,'section_one',''),(164889,4745,'_section_one','field_631716de18e98'),(164890,4745,'section_two_section_two_title','Our Services'),(164891,4745,'_section_two_section_two_title','field_63171e1457be9'),(164892,4745,'section_two_section_two_icon_one','4734'),(164893,4745,'_section_two_section_two_icon_one','field_63171e2c57bea'),(164894,4745,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(164895,4745,'_section_two_section_two_title_one','field_63171e5f57beb'),(164896,4745,'section_two_section_two_icon_two','4741'),(164897,4745,'_section_two_section_two_icon_two','field_63171e7357bec'),(164898,4745,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(164899,4745,'_section_two_section_two_title_two','field_63171ea157bee'),(164900,4745,'section_two_section_two_icon_three','4736'),(164901,4745,'_section_two_section_two_icon_three','field_63171e8557bed'),(164902,4745,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(164903,4745,'_section_two_section_two_title_three','field_63171ec257bef'),(164904,4745,'section_two_section_two_icon_four','4738'),(164905,4745,'_section_two_section_two_icon_four','field_63171ee257bf0'),(164906,4745,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(164907,4745,'_section_two_section_two_title_four','field_63171ef757bf1'),(164908,4745,'section_two_section_two_icon_five','4744'),(164909,4745,'_section_two_section_two_icon_five','field_63171f2857bf3'),(164910,4745,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(164911,4745,'_section_two_section_two_title_five','field_63171f3957bf4'),(164912,4745,'section_two_section_two_icon_six','4710'),(164913,4745,'_section_two_section_two_icon_six','field_63171f5057bf5'),(164914,4745,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(164915,4745,'_section_two_section_two_title_six','field_63171f6657bf6'),(164916,4745,'section_two_section_two_icon_seven','4710'),(164917,4745,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(164918,4745,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(164919,4745,'_section_two_section_two_title_seven','field_63171f9757bf8'),(164920,4745,'section_two_section_two_icon_eight','4710'),(164921,4745,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(164922,4745,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(164923,4745,'_section_two_section_two_title_eight','field_63171fc057bfa'),(164924,4745,'section_two',''),(164925,4745,'_section_two','field_63171dfb57be8'),(164926,4745,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(164927,4745,'_section_three_section_three_breadcrumb','field_631723036988b'),(164928,4745,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(164929,4745,'_section_three_section_three_title','field_631723176988c'),(164930,4745,'section_three_section_three_image','4727'),(164931,4745,'_section_three_section_three_image','field_631723ac6988e'),(164932,4745,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(164933,4745,'_section_three_section_three_content','field_631723906988d'),(164934,4745,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(164935,4745,'_section_three_section_three_footer','field_631723c36988f'),(164936,4745,'section_three_section_three_button_text','Book Consultation Now'),(164937,4745,'_section_three_section_three_button_text','field_631723d769890'),(164938,4745,'section_three',''),(164939,4745,'_section_three','field_631722b96988a'),(164940,4745,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(164941,4745,'_section_four_section_four_breadcrumb','field_6317271523757'),(164942,4745,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(164943,4745,'_section_four_section_four_title','field_6317271523758'),(164944,4745,'section_four_section_four_image','4730'),(164945,4745,'_section_four_section_four_image','field_6317271523759'),(164946,4745,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(164947,4745,'_section_four_section_four_content','field_631727152375a'),(164948,4745,'section_four_section_four_footer','Build - Rebuild - Replatform'),(164949,4745,'_section_four_section_four_footer','field_631727152375b'),(164950,4745,'section_four',''),(164951,4745,'_section_four','field_6317271523756'),(164952,4745,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(164953,4745,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(164954,4745,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(164955,4745,'_section_five_section_five_title','field_631727bbd69dd'),(164956,4745,'section_five_section_five_image','4732'),(164957,4745,'_section_five_section_five_image','field_631727bbd69de'),(164958,4745,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(164959,4745,'_section_five_section_five_content','field_631727bbd69df'),(164960,4745,'section_five_section_five_footer',''),(164961,4745,'_section_five_section_five_footer','field_631727bbd69e0'),(164962,4745,'section_five',''),(164963,4745,'_section_five','field_631727bbd69db'),(164964,4745,'footer_title','We treat your business like our own.'),(164965,4745,'_footer_title','field_631729e2753c6'),(164966,4745,'footer_button_text','Let\'s talk!'),(164967,4745,'_footer_button_text','field_63172a06753c7'),(164968,4745,'section_five_section_five_icon_one','4710'),(164969,4745,'_section_five_section_five_icon_one','field_631727bbd69e0'),(164970,4745,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(164971,4745,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(164972,4745,'section_five_section_five_icon_two','4710'),(164973,4745,'_section_five_section_five_icon_two','field_631ef504912c5'),(164974,4745,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(164975,4745,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(164976,4745,'section_five_section_five_icon_three','4710'),(164977,4745,'_section_five_section_five_icon_three','field_631ef510912c6'),(164978,4745,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(164979,4745,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(164980,4745,'section_five_section_five_icon_four','4710'),(164981,4745,'_section_five_section_five_icon_four','field_631ef51c912c7'),(164982,4745,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(164983,4745,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(164987,4746,'_wp_attached_file','2022/09/application-modernization.png'),(164988,4746,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:65;s:6:\"height\";i:65;s:4:\"file\";s:37:\"2022/09/application-modernization.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(164989,4746,'_imagify_optimization_level','2'),(164990,4746,'_imagify_status','success'),(164991,4746,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2711;s:14:\"optimized_size\";i:641;s:7:\"percent\";d:76.36;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2711;s:14:\"optimized_size\";i:1864;s:7:\"percent\";d:31.24;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:5422;s:14:\"optimized_size\";i:2505;s:7:\"percent\";d:53.8;}}'),(164992,4747,'top_title','Kubernetes Professional Services'),(164993,4747,'_top_title','field_6317168918e96'),(164994,4747,'top_description','CLOUD NATIVE SOLUTIONS'),(164995,4747,'_top_description','field_6317169e18e97'),(164996,4747,'section_one_section_one_breadcrumb','KCSP'),(164997,4747,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(164998,4747,'section_one_section_one_title','Kubernetes Certified Service Provider'),(164999,4747,'_section_one_section_one_title','field_6317172018e9a'),(165000,4747,'section_one_section_one_image','4725'),(165001,4747,'_section_one_section_one_image','field_63171ca018e9c'),(165002,4747,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(165003,4747,'_section_one_section_one_content','field_6317174118e9b'),(165004,4747,'section_one_section_one_navigation_one','Cloud Native Applications'),(165005,4747,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(165006,4747,'section_one_section_one_navigation_two','Cloud Native DevOps'),(165007,4747,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(165008,4747,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(165009,4747,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(165010,4747,'section_one_section_one_button_text','Book Consultation Now'),(165011,4747,'_section_one_section_one_button_text','field_63171dc918ea0'),(165012,4747,'section_one',''),(165013,4747,'_section_one','field_631716de18e98'),(165014,4747,'section_two_section_two_title','Our Services'),(165015,4747,'_section_two_section_two_title','field_63171e1457be9'),(165016,4747,'section_two_section_two_icon_one','4734'),(165017,4747,'_section_two_section_two_icon_one','field_63171e2c57bea'),(165018,4747,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(165019,4747,'_section_two_section_two_title_one','field_63171e5f57beb'),(165020,4747,'section_two_section_two_icon_two','4741'),(165021,4747,'_section_two_section_two_icon_two','field_63171e7357bec'),(165022,4747,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(165023,4747,'_section_two_section_two_title_two','field_63171ea157bee'),(165024,4747,'section_two_section_two_icon_three','4736'),(165025,4747,'_section_two_section_two_icon_three','field_63171e8557bed'),(165026,4747,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(165027,4747,'_section_two_section_two_title_three','field_63171ec257bef'),(165028,4747,'section_two_section_two_icon_four','4738'),(165029,4747,'_section_two_section_two_icon_four','field_63171ee257bf0'),(165030,4747,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(165031,4747,'_section_two_section_two_title_four','field_63171ef757bf1'),(165032,4747,'section_two_section_two_icon_five','4744'),(165033,4747,'_section_two_section_two_icon_five','field_63171f2857bf3'),(165034,4747,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(165035,4747,'_section_two_section_two_title_five','field_63171f3957bf4'),(165036,4747,'section_two_section_two_icon_six','4746'),(165037,4747,'_section_two_section_two_icon_six','field_63171f5057bf5'),(165038,4747,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(165039,4747,'_section_two_section_two_title_six','field_63171f6657bf6'),(165040,4747,'section_two_section_two_icon_seven','4710'),(165041,4747,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(165042,4747,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(165043,4747,'_section_two_section_two_title_seven','field_63171f9757bf8'),(165044,4747,'section_two_section_two_icon_eight','4710'),(165045,4747,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(165046,4747,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(165047,4747,'_section_two_section_two_title_eight','field_63171fc057bfa'),(165048,4747,'section_two',''),(165049,4747,'_section_two','field_63171dfb57be8'),(165050,4747,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(165051,4747,'_section_three_section_three_breadcrumb','field_631723036988b'),(165052,4747,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(165053,4747,'_section_three_section_three_title','field_631723176988c'),(165054,4747,'section_three_section_three_image','4727'),(165055,4747,'_section_three_section_three_image','field_631723ac6988e'),(165056,4747,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(165057,4747,'_section_three_section_three_content','field_631723906988d'),(165058,4747,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(165059,4747,'_section_three_section_three_footer','field_631723c36988f'),(165060,4747,'section_three_section_three_button_text','Book Consultation Now'),(165061,4747,'_section_three_section_three_button_text','field_631723d769890'),(165062,4747,'section_three',''),(165063,4747,'_section_three','field_631722b96988a'),(165064,4747,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(165065,4747,'_section_four_section_four_breadcrumb','field_6317271523757'),(165066,4747,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(165067,4747,'_section_four_section_four_title','field_6317271523758'),(165068,4747,'section_four_section_four_image','4730'),(165069,4747,'_section_four_section_four_image','field_6317271523759'),(165070,4747,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(165071,4747,'_section_four_section_four_content','field_631727152375a'),(165072,4747,'section_four_section_four_footer','Build - Rebuild - Replatform'),(165073,4747,'_section_four_section_four_footer','field_631727152375b'),(165074,4747,'section_four',''),(165075,4747,'_section_four','field_6317271523756'),(165076,4747,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(165077,4747,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(165078,4747,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(165079,4747,'_section_five_section_five_title','field_631727bbd69dd'),(165080,4747,'section_five_section_five_image','4732'),(165081,4747,'_section_five_section_five_image','field_631727bbd69de'),(165082,4747,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(165083,4747,'_section_five_section_five_content','field_631727bbd69df'),(165084,4747,'section_five_section_five_footer',''),(165085,4747,'_section_five_section_five_footer','field_631727bbd69e0'),(165086,4747,'section_five',''),(165087,4747,'_section_five','field_631727bbd69db'),(165088,4747,'footer_title','We treat your business like our own.'),(165089,4747,'_footer_title','field_631729e2753c6'),(165090,4747,'footer_button_text','Let\'s talk!'),(165091,4747,'_footer_button_text','field_63172a06753c7'),(165092,4747,'section_five_section_five_icon_one','4710'),(165093,4747,'_section_five_section_five_icon_one','field_631727bbd69e0'),(165094,4747,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(165095,4747,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(165096,4747,'section_five_section_five_icon_two','4710'),(165097,4747,'_section_five_section_five_icon_two','field_631ef504912c5'),(165098,4747,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(165099,4747,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(165100,4747,'section_five_section_five_icon_three','4710'),(165101,4747,'_section_five_section_five_icon_three','field_631ef510912c6'),(165102,4747,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(165103,4747,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(165104,4747,'section_five_section_five_icon_four','4710'),(165105,4747,'_section_five_section_five_icon_four','field_631ef51c912c7'),(165106,4747,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(165107,4747,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(165111,4748,'_wp_attached_file','2022/09/continuous-delivery.png'),(165112,4748,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:65;s:6:\"height\";i:65;s:4:\"file\";s:31:\"2022/09/continuous-delivery.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(165113,4748,'_imagify_optimization_level','2'),(165114,4748,'_imagify_status','success'),(165115,4748,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2243;s:14:\"optimized_size\";i:534;s:7:\"percent\";d:76.19;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2243;s:14:\"optimized_size\";i:1896;s:7:\"percent\";d:15.47;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:4486;s:14:\"optimized_size\";i:2430;s:7:\"percent\";d:45.83;}}'),(165116,4749,'top_title','Kubernetes Professional Services'),(165117,4749,'_top_title','field_6317168918e96'),(165118,4749,'top_description','CLOUD NATIVE SOLUTIONS'),(165119,4749,'_top_description','field_6317169e18e97'),(165120,4749,'section_one_section_one_breadcrumb','KCSP'),(165121,4749,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(165122,4749,'section_one_section_one_title','Kubernetes Certified Service Provider'),(165123,4749,'_section_one_section_one_title','field_6317172018e9a'),(165124,4749,'section_one_section_one_image','4725'),(165125,4749,'_section_one_section_one_image','field_63171ca018e9c'),(165126,4749,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(165127,4749,'_section_one_section_one_content','field_6317174118e9b'),(165128,4749,'section_one_section_one_navigation_one','Cloud Native Applications'),(165129,4749,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(165130,4749,'section_one_section_one_navigation_two','Cloud Native DevOps'),(165131,4749,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(165132,4749,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(165133,4749,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(165134,4749,'section_one_section_one_button_text','Book Consultation Now'),(165135,4749,'_section_one_section_one_button_text','field_63171dc918ea0'),(165136,4749,'section_one',''),(165137,4749,'_section_one','field_631716de18e98'),(165138,4749,'section_two_section_two_title','Our Services'),(165139,4749,'_section_two_section_two_title','field_63171e1457be9'),(165140,4749,'section_two_section_two_icon_one','4734'),(165141,4749,'_section_two_section_two_icon_one','field_63171e2c57bea'),(165142,4749,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(165143,4749,'_section_two_section_two_title_one','field_63171e5f57beb'),(165144,4749,'section_two_section_two_icon_two','4741'),(165145,4749,'_section_two_section_two_icon_two','field_63171e7357bec'),(165146,4749,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(165147,4749,'_section_two_section_two_title_two','field_63171ea157bee'),(165148,4749,'section_two_section_two_icon_three','4736'),(165149,4749,'_section_two_section_two_icon_three','field_63171e8557bed'),(165150,4749,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(165151,4749,'_section_two_section_two_title_three','field_63171ec257bef'),(165152,4749,'section_two_section_two_icon_four','4738'),(165153,4749,'_section_two_section_two_icon_four','field_63171ee257bf0'),(165154,4749,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(165155,4749,'_section_two_section_two_title_four','field_63171ef757bf1'),(165156,4749,'section_two_section_two_icon_five','4744'),(165157,4749,'_section_two_section_two_icon_five','field_63171f2857bf3'),(165158,4749,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(165159,4749,'_section_two_section_two_title_five','field_63171f3957bf4'),(165160,4749,'section_two_section_two_icon_six','4746'),(165161,4749,'_section_two_section_two_icon_six','field_63171f5057bf5'),(165162,4749,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(165163,4749,'_section_two_section_two_title_six','field_63171f6657bf6'),(165164,4749,'section_two_section_two_icon_seven','4748'),(165165,4749,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(165166,4749,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(165167,4749,'_section_two_section_two_title_seven','field_63171f9757bf8'),(165168,4749,'section_two_section_two_icon_eight','4710'),(165169,4749,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(165170,4749,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(165171,4749,'_section_two_section_two_title_eight','field_63171fc057bfa'),(165172,4749,'section_two',''),(165173,4749,'_section_two','field_63171dfb57be8'),(165174,4749,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(165175,4749,'_section_three_section_three_breadcrumb','field_631723036988b'),(165176,4749,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(165177,4749,'_section_three_section_three_title','field_631723176988c'),(165178,4749,'section_three_section_three_image','4727'),(165179,4749,'_section_three_section_three_image','field_631723ac6988e'),(165180,4749,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(165181,4749,'_section_three_section_three_content','field_631723906988d'),(165182,4749,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(165183,4749,'_section_three_section_three_footer','field_631723c36988f'),(165184,4749,'section_three_section_three_button_text','Book Consultation Now'),(165185,4749,'_section_three_section_three_button_text','field_631723d769890'),(165186,4749,'section_three',''),(165187,4749,'_section_three','field_631722b96988a'),(165188,4749,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(165189,4749,'_section_four_section_four_breadcrumb','field_6317271523757'),(165190,4749,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(165191,4749,'_section_four_section_four_title','field_6317271523758'),(165192,4749,'section_four_section_four_image','4730'),(165193,4749,'_section_four_section_four_image','field_6317271523759'),(165194,4749,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(165195,4749,'_section_four_section_four_content','field_631727152375a'),(165196,4749,'section_four_section_four_footer','Build - Rebuild - Replatform'),(165197,4749,'_section_four_section_four_footer','field_631727152375b'),(165198,4749,'section_four',''),(165199,4749,'_section_four','field_6317271523756'),(165200,4749,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(165201,4749,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(165202,4749,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(165203,4749,'_section_five_section_five_title','field_631727bbd69dd'),(165204,4749,'section_five_section_five_image','4732'),(165205,4749,'_section_five_section_five_image','field_631727bbd69de'),(165206,4749,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(165207,4749,'_section_five_section_five_content','field_631727bbd69df'),(165208,4749,'section_five_section_five_footer',''),(165209,4749,'_section_five_section_five_footer','field_631727bbd69e0'),(165210,4749,'section_five',''),(165211,4749,'_section_five','field_631727bbd69db'),(165212,4749,'footer_title','We treat your business like our own.'),(165213,4749,'_footer_title','field_631729e2753c6'),(165214,4749,'footer_button_text','Let\'s talk!'),(165215,4749,'_footer_button_text','field_63172a06753c7'),(165216,4749,'section_five_section_five_icon_one','4710'),(165217,4749,'_section_five_section_five_icon_one','field_631727bbd69e0'),(165218,4749,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(165219,4749,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(165220,4749,'section_five_section_five_icon_two','4710'),(165221,4749,'_section_five_section_five_icon_two','field_631ef504912c5'),(165222,4749,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(165223,4749,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(165224,4749,'section_five_section_five_icon_three','4710'),(165225,4749,'_section_five_section_five_icon_three','field_631ef510912c6'),(165226,4749,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(165227,4749,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(165228,4749,'section_five_section_five_icon_four','4710'),(165229,4749,'_section_five_section_five_icon_four','field_631ef51c912c7'),(165230,4749,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(165231,4749,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(165235,4750,'_wp_attached_file','2022/09/production-grade-kubernets.png'),(165236,4750,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:65;s:6:\"height\";i:65;s:4:\"file\";s:38:\"2022/09/production-grade-kubernets.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(165237,4750,'_imagify_optimization_level','2'),(165238,4750,'_imagify_status','success'),(165239,4750,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1443;s:14:\"optimized_size\";i:375;s:7:\"percent\";d:74.01;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1443;s:14:\"optimized_size\";i:854;s:7:\"percent\";d:40.82;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2886;s:14:\"optimized_size\";i:1229;s:7:\"percent\";d:57.42;}}'),(165240,4751,'top_title','Kubernetes Professional Services'),(165241,4751,'_top_title','field_6317168918e96'),(165242,4751,'top_description','CLOUD NATIVE SOLUTIONS'),(165243,4751,'_top_description','field_6317169e18e97'),(165244,4751,'section_one_section_one_breadcrumb','KCSP'),(165245,4751,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(165246,4751,'section_one_section_one_title','Kubernetes Certified Service Provider'),(165247,4751,'_section_one_section_one_title','field_6317172018e9a'),(165248,4751,'section_one_section_one_image','4725'),(165249,4751,'_section_one_section_one_image','field_63171ca018e9c'),(165250,4751,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(165251,4751,'_section_one_section_one_content','field_6317174118e9b'),(165252,4751,'section_one_section_one_navigation_one','Cloud Native Applications'),(165253,4751,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(165254,4751,'section_one_section_one_navigation_two','Cloud Native DevOps'),(165255,4751,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(165256,4751,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(165257,4751,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(165258,4751,'section_one_section_one_button_text','Book Consultation Now'),(165259,4751,'_section_one_section_one_button_text','field_63171dc918ea0'),(165260,4751,'section_one',''),(165261,4751,'_section_one','field_631716de18e98'),(165262,4751,'section_two_section_two_title','Our Services'),(165263,4751,'_section_two_section_two_title','field_63171e1457be9'),(165264,4751,'section_two_section_two_icon_one','4734'),(165265,4751,'_section_two_section_two_icon_one','field_63171e2c57bea'),(165266,4751,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(165267,4751,'_section_two_section_two_title_one','field_63171e5f57beb'),(165268,4751,'section_two_section_two_icon_two','4741'),(165269,4751,'_section_two_section_two_icon_two','field_63171e7357bec'),(165270,4751,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(165271,4751,'_section_two_section_two_title_two','field_63171ea157bee'),(165272,4751,'section_two_section_two_icon_three','4736'),(165273,4751,'_section_two_section_two_icon_three','field_63171e8557bed'),(165274,4751,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(165275,4751,'_section_two_section_two_title_three','field_63171ec257bef'),(165276,4751,'section_two_section_two_icon_four','4738'),(165277,4751,'_section_two_section_two_icon_four','field_63171ee257bf0'),(165278,4751,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(165279,4751,'_section_two_section_two_title_four','field_63171ef757bf1'),(165280,4751,'section_two_section_two_icon_five','4744'),(165281,4751,'_section_two_section_two_icon_five','field_63171f2857bf3'),(165282,4751,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(165283,4751,'_section_two_section_two_title_five','field_63171f3957bf4'),(165284,4751,'section_two_section_two_icon_six','4746'),(165285,4751,'_section_two_section_two_icon_six','field_63171f5057bf5'),(165286,4751,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(165287,4751,'_section_two_section_two_title_six','field_63171f6657bf6'),(165288,4751,'section_two_section_two_icon_seven','4748'),(165289,4751,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(165290,4751,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(165291,4751,'_section_two_section_two_title_seven','field_63171f9757bf8'),(165292,4751,'section_two_section_two_icon_eight','4750'),(165293,4751,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(165294,4751,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(165295,4751,'_section_two_section_two_title_eight','field_63171fc057bfa'),(165296,4751,'section_two',''),(165297,4751,'_section_two','field_63171dfb57be8'),(165298,4751,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(165299,4751,'_section_three_section_three_breadcrumb','field_631723036988b'),(165300,4751,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(165301,4751,'_section_three_section_three_title','field_631723176988c'),(165302,4751,'section_three_section_three_image','4727'),(165303,4751,'_section_three_section_three_image','field_631723ac6988e'),(165304,4751,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(165305,4751,'_section_three_section_three_content','field_631723906988d'),(165306,4751,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(165307,4751,'_section_three_section_three_footer','field_631723c36988f'),(165308,4751,'section_three_section_three_button_text','Book Consultation Now'),(165309,4751,'_section_three_section_three_button_text','field_631723d769890'),(165310,4751,'section_three',''),(165311,4751,'_section_three','field_631722b96988a'),(165312,4751,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(165313,4751,'_section_four_section_four_breadcrumb','field_6317271523757'),(165314,4751,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(165315,4751,'_section_four_section_four_title','field_6317271523758'),(165316,4751,'section_four_section_four_image','4730'),(165317,4751,'_section_four_section_four_image','field_6317271523759'),(165318,4751,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(165319,4751,'_section_four_section_four_content','field_631727152375a'),(165320,4751,'section_four_section_four_footer','Build - Rebuild - Replatform'),(165321,4751,'_section_four_section_four_footer','field_631727152375b'),(165322,4751,'section_four',''),(165323,4751,'_section_four','field_6317271523756'),(165324,4751,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(165325,4751,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(165326,4751,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(165327,4751,'_section_five_section_five_title','field_631727bbd69dd'),(165328,4751,'section_five_section_five_image','4732'),(165329,4751,'_section_five_section_five_image','field_631727bbd69de'),(165330,4751,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(165331,4751,'_section_five_section_five_content','field_631727bbd69df'),(165332,4751,'section_five_section_five_footer',''),(165333,4751,'_section_five_section_five_footer','field_631727bbd69e0'),(165334,4751,'section_five',''),(165335,4751,'_section_five','field_631727bbd69db'),(165336,4751,'footer_title','We treat your business like our own.'),(165337,4751,'_footer_title','field_631729e2753c6'),(165338,4751,'footer_button_text','Let\'s talk!'),(165339,4751,'_footer_button_text','field_63172a06753c7'),(165340,4751,'section_five_section_five_icon_one','4710'),(165341,4751,'_section_five_section_five_icon_one','field_631727bbd69e0'),(165342,4751,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(165343,4751,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(165344,4751,'section_five_section_five_icon_two','4710'),(165345,4751,'_section_five_section_five_icon_two','field_631ef504912c5'),(165346,4751,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(165347,4751,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(165348,4751,'section_five_section_five_icon_three','4710'),(165349,4751,'_section_five_section_five_icon_three','field_631ef510912c6'),(165350,4751,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(165351,4751,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(165352,4751,'section_five_section_five_icon_four','4710'),(165353,4751,'_section_five_section_five_icon_four','field_631ef51c912c7'),(165354,4751,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(165355,4751,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(165359,4752,'_wp_attached_file','2022/09/site-relicability.png'),(165360,4752,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:29:\"2022/09/site-relicability.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(165361,4752,'_imagify_optimization_level','2'),(165362,4752,'_imagify_status','success'),(165363,4752,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1439;s:14:\"optimized_size\";i:561;s:7:\"percent\";d:61.01;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1439;s:14:\"optimized_size\";i:1432;s:7:\"percent\";d:0.49;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2878;s:14:\"optimized_size\";i:1993;s:7:\"percent\";d:30.75;}}'),(165364,4753,'top_title','Kubernetes Professional Services'),(165365,4753,'_top_title','field_6317168918e96'),(165366,4753,'top_description','CLOUD NATIVE SOLUTIONS'),(165367,4753,'_top_description','field_6317169e18e97'),(165368,4753,'section_one_section_one_breadcrumb','KCSP'),(165369,4753,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(165370,4753,'section_one_section_one_title','Kubernetes Certified Service Provider'),(165371,4753,'_section_one_section_one_title','field_6317172018e9a'),(165372,4753,'section_one_section_one_image','4725'),(165373,4753,'_section_one_section_one_image','field_63171ca018e9c'),(165374,4753,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(165375,4753,'_section_one_section_one_content','field_6317174118e9b'),(165376,4753,'section_one_section_one_navigation_one','Cloud Native Applications'),(165377,4753,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(165378,4753,'section_one_section_one_navigation_two','Cloud Native DevOps'),(165379,4753,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(165380,4753,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(165381,4753,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(165382,4753,'section_one_section_one_button_text','Book Consultation Now'),(165383,4753,'_section_one_section_one_button_text','field_63171dc918ea0'),(165384,4753,'section_one',''),(165385,4753,'_section_one','field_631716de18e98'),(165386,4753,'section_two_section_two_title','Our Services'),(165387,4753,'_section_two_section_two_title','field_63171e1457be9'),(165388,4753,'section_two_section_two_icon_one','4734'),(165389,4753,'_section_two_section_two_icon_one','field_63171e2c57bea'),(165390,4753,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(165391,4753,'_section_two_section_two_title_one','field_63171e5f57beb'),(165392,4753,'section_two_section_two_icon_two','4741'),(165393,4753,'_section_two_section_two_icon_two','field_63171e7357bec'),(165394,4753,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(165395,4753,'_section_two_section_two_title_two','field_63171ea157bee'),(165396,4753,'section_two_section_two_icon_three','4736'),(165397,4753,'_section_two_section_two_icon_three','field_63171e8557bed'),(165398,4753,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(165399,4753,'_section_two_section_two_title_three','field_63171ec257bef'),(165400,4753,'section_two_section_two_icon_four','4738'),(165401,4753,'_section_two_section_two_icon_four','field_63171ee257bf0'),(165402,4753,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(165403,4753,'_section_two_section_two_title_four','field_63171ef757bf1'),(165404,4753,'section_two_section_two_icon_five','4744'),(165405,4753,'_section_two_section_two_icon_five','field_63171f2857bf3'),(165406,4753,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(165407,4753,'_section_two_section_two_title_five','field_63171f3957bf4'),(165408,4753,'section_two_section_two_icon_six','4746'),(165409,4753,'_section_two_section_two_icon_six','field_63171f5057bf5'),(165410,4753,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(165411,4753,'_section_two_section_two_title_six','field_63171f6657bf6'),(165412,4753,'section_two_section_two_icon_seven','4748'),(165413,4753,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(165414,4753,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(165415,4753,'_section_two_section_two_title_seven','field_63171f9757bf8'),(165416,4753,'section_two_section_two_icon_eight','4750'),(165417,4753,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(165418,4753,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(165419,4753,'_section_two_section_two_title_eight','field_63171fc057bfa'),(165420,4753,'section_two',''),(165421,4753,'_section_two','field_63171dfb57be8'),(165422,4753,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(165423,4753,'_section_three_section_three_breadcrumb','field_631723036988b'),(165424,4753,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(165425,4753,'_section_three_section_three_title','field_631723176988c'),(165426,4753,'section_three_section_three_image','4727'),(165427,4753,'_section_three_section_three_image','field_631723ac6988e'),(165428,4753,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(165429,4753,'_section_three_section_three_content','field_631723906988d'),(165430,4753,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(165431,4753,'_section_three_section_three_footer','field_631723c36988f'),(165432,4753,'section_three_section_three_button_text','Book Consultation Now'),(165433,4753,'_section_three_section_three_button_text','field_631723d769890'),(165434,4753,'section_three',''),(165435,4753,'_section_three','field_631722b96988a'),(165436,4753,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(165437,4753,'_section_four_section_four_breadcrumb','field_6317271523757'),(165438,4753,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(165439,4753,'_section_four_section_four_title','field_6317271523758'),(165440,4753,'section_four_section_four_image','4730'),(165441,4753,'_section_four_section_four_image','field_6317271523759'),(165442,4753,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(165443,4753,'_section_four_section_four_content','field_631727152375a'),(165444,4753,'section_four_section_four_footer','Build - Rebuild - Replatform'),(165445,4753,'_section_four_section_four_footer','field_631727152375b'),(165446,4753,'section_four',''),(165447,4753,'_section_four','field_6317271523756'),(165448,4753,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(165449,4753,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(165450,4753,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(165451,4753,'_section_five_section_five_title','field_631727bbd69dd'),(165452,4753,'section_five_section_five_image','4732'),(165453,4753,'_section_five_section_five_image','field_631727bbd69de'),(165454,4753,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(165455,4753,'_section_five_section_five_content','field_631727bbd69df'),(165456,4753,'section_five_section_five_footer',''),(165457,4753,'_section_five_section_five_footer','field_631727bbd69e0'),(165458,4753,'section_five',''),(165459,4753,'_section_five','field_631727bbd69db'),(165460,4753,'footer_title','We treat your business like our own.'),(165461,4753,'_footer_title','field_631729e2753c6'),(165462,4753,'footer_button_text','Let\'s talk!'),(165463,4753,'_footer_button_text','field_63172a06753c7'),(165464,4753,'section_five_section_five_icon_one','4752'),(165465,4753,'_section_five_section_five_icon_one','field_631727bbd69e0'),(165466,4753,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(165467,4753,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(165468,4753,'section_five_section_five_icon_two','4710'),(165469,4753,'_section_five_section_five_icon_two','field_631ef504912c5'),(165470,4753,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(165471,4753,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(165472,4753,'section_five_section_five_icon_three','4710'),(165473,4753,'_section_five_section_five_icon_three','field_631ef510912c6'),(165474,4753,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(165475,4753,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(165476,4753,'section_five_section_five_icon_four','4710'),(165477,4753,'_section_five_section_five_icon_four','field_631ef51c912c7'),(165478,4753,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(165479,4753,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(165483,4754,'_wp_attached_file','2022/09/service-level-agreeents.png'),(165484,4754,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:35:\"2022/09/service-level-agreeents.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(165485,4754,'_imagify_optimization_level','2'),(165486,4754,'_imagify_status','success'),(165487,4754,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1926;s:14:\"optimized_size\";i:741;s:7:\"percent\";d:61.53;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1926;s:14:\"optimized_size\";i:1676;s:7:\"percent\";d:12.98;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3852;s:14:\"optimized_size\";i:2417;s:7:\"percent\";d:37.25;}}'),(165488,4755,'top_title','Kubernetes Professional Services'),(165489,4755,'_top_title','field_6317168918e96'),(165490,4755,'top_description','CLOUD NATIVE SOLUTIONS'),(165491,4755,'_top_description','field_6317169e18e97'),(165492,4755,'section_one_section_one_breadcrumb','KCSP'),(165493,4755,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(165494,4755,'section_one_section_one_title','Kubernetes Certified Service Provider'),(165495,4755,'_section_one_section_one_title','field_6317172018e9a'),(165496,4755,'section_one_section_one_image','4725'),(165497,4755,'_section_one_section_one_image','field_63171ca018e9c'),(165498,4755,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(165499,4755,'_section_one_section_one_content','field_6317174118e9b'),(165500,4755,'section_one_section_one_navigation_one','Cloud Native Applications'),(165501,4755,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(165502,4755,'section_one_section_one_navigation_two','Cloud Native DevOps'),(165503,4755,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(165504,4755,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(165505,4755,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(165506,4755,'section_one_section_one_button_text','Book Consultation Now'),(165507,4755,'_section_one_section_one_button_text','field_63171dc918ea0'),(165508,4755,'section_one',''),(165509,4755,'_section_one','field_631716de18e98'),(165510,4755,'section_two_section_two_title','Our Services'),(165511,4755,'_section_two_section_two_title','field_63171e1457be9'),(165512,4755,'section_two_section_two_icon_one','4734'),(165513,4755,'_section_two_section_two_icon_one','field_63171e2c57bea'),(165514,4755,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(165515,4755,'_section_two_section_two_title_one','field_63171e5f57beb'),(165516,4755,'section_two_section_two_icon_two','4741'),(165517,4755,'_section_two_section_two_icon_two','field_63171e7357bec'),(165518,4755,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(165519,4755,'_section_two_section_two_title_two','field_63171ea157bee'),(165520,4755,'section_two_section_two_icon_three','4736'),(165521,4755,'_section_two_section_two_icon_three','field_63171e8557bed'),(165522,4755,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(165523,4755,'_section_two_section_two_title_three','field_63171ec257bef'),(165524,4755,'section_two_section_two_icon_four','4738'),(165525,4755,'_section_two_section_two_icon_four','field_63171ee257bf0'),(165526,4755,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(165527,4755,'_section_two_section_two_title_four','field_63171ef757bf1'),(165528,4755,'section_two_section_two_icon_five','4744'),(165529,4755,'_section_two_section_two_icon_five','field_63171f2857bf3'),(165530,4755,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(165531,4755,'_section_two_section_two_title_five','field_63171f3957bf4'),(165532,4755,'section_two_section_two_icon_six','4746'),(165533,4755,'_section_two_section_two_icon_six','field_63171f5057bf5'),(165534,4755,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(165535,4755,'_section_two_section_two_title_six','field_63171f6657bf6'),(165536,4755,'section_two_section_two_icon_seven','4748'),(165537,4755,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(165538,4755,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(165539,4755,'_section_two_section_two_title_seven','field_63171f9757bf8'),(165540,4755,'section_two_section_two_icon_eight','4750'),(165541,4755,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(165542,4755,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(165543,4755,'_section_two_section_two_title_eight','field_63171fc057bfa'),(165544,4755,'section_two',''),(165545,4755,'_section_two','field_63171dfb57be8'),(165546,4755,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(165547,4755,'_section_three_section_three_breadcrumb','field_631723036988b'),(165548,4755,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(165549,4755,'_section_three_section_three_title','field_631723176988c'),(165550,4755,'section_three_section_three_image','4727'),(165551,4755,'_section_three_section_three_image','field_631723ac6988e'),(165552,4755,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(165553,4755,'_section_three_section_three_content','field_631723906988d'),(165554,4755,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(165555,4755,'_section_three_section_three_footer','field_631723c36988f'),(165556,4755,'section_three_section_three_button_text','Book Consultation Now'),(165557,4755,'_section_three_section_three_button_text','field_631723d769890'),(165558,4755,'section_three',''),(165559,4755,'_section_three','field_631722b96988a'),(165560,4755,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(165561,4755,'_section_four_section_four_breadcrumb','field_6317271523757'),(165562,4755,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(165563,4755,'_section_four_section_four_title','field_6317271523758'),(165564,4755,'section_four_section_four_image','4730'),(165565,4755,'_section_four_section_four_image','field_6317271523759'),(165566,4755,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(165567,4755,'_section_four_section_four_content','field_631727152375a'),(165568,4755,'section_four_section_four_footer','Build - Rebuild - Replatform'),(165569,4755,'_section_four_section_four_footer','field_631727152375b'),(165570,4755,'section_four',''),(165571,4755,'_section_four','field_6317271523756'),(165572,4755,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(165573,4755,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(165574,4755,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(165575,4755,'_section_five_section_five_title','field_631727bbd69dd'),(165576,4755,'section_five_section_five_image','4732'),(165577,4755,'_section_five_section_five_image','field_631727bbd69de'),(165578,4755,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(165579,4755,'_section_five_section_five_content','field_631727bbd69df'),(165580,4755,'section_five_section_five_footer',''),(165581,4755,'_section_five_section_five_footer','field_631727bbd69e0'),(165582,4755,'section_five',''),(165583,4755,'_section_five','field_631727bbd69db'),(165584,4755,'footer_title','We treat your business like our own.'),(165585,4755,'_footer_title','field_631729e2753c6'),(165586,4755,'footer_button_text','Let\'s talk!'),(165587,4755,'_footer_button_text','field_63172a06753c7'),(165588,4755,'section_five_section_five_icon_one','4752'),(165589,4755,'_section_five_section_five_icon_one','field_631727bbd69e0'),(165590,4755,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(165591,4755,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(165592,4755,'section_five_section_five_icon_two','4754'),(165593,4755,'_section_five_section_five_icon_two','field_631ef504912c5'),(165594,4755,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(165595,4755,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(165596,4755,'section_five_section_five_icon_three','4710'),(165597,4755,'_section_five_section_five_icon_three','field_631ef510912c6'),(165598,4755,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(165599,4755,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(165600,4755,'section_five_section_five_icon_four','4710'),(165601,4755,'_section_five_section_five_icon_four','field_631ef51c912c7'),(165602,4755,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(165603,4755,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(165607,4756,'_wp_attached_file','2022/09/service-level-objectives.png'),(165608,4756,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:36:\"2022/09/service-level-objectives.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(165609,4756,'_imagify_optimization_level','2'),(165610,4756,'_imagify_status','success'),(165611,4756,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2545;s:14:\"optimized_size\";i:711;s:7:\"percent\";d:72.06;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:2545;s:14:\"optimized_size\";i:1836;s:7:\"percent\";d:27.86;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:5090;s:14:\"optimized_size\";i:2547;s:7:\"percent\";d:49.96;}}'),(165612,4757,'top_title','Kubernetes Professional Services'),(165613,4757,'_top_title','field_6317168918e96'),(165614,4757,'top_description','CLOUD NATIVE SOLUTIONS'),(165615,4757,'_top_description','field_6317169e18e97'),(165616,4757,'section_one_section_one_breadcrumb','KCSP'),(165617,4757,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(165618,4757,'section_one_section_one_title','Kubernetes Certified Service Provider'),(165619,4757,'_section_one_section_one_title','field_6317172018e9a'),(165620,4757,'section_one_section_one_image','4725'),(165621,4757,'_section_one_section_one_image','field_63171ca018e9c'),(165622,4757,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(165623,4757,'_section_one_section_one_content','field_6317174118e9b'),(165624,4757,'section_one_section_one_navigation_one','Cloud Native Applications'),(165625,4757,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(165626,4757,'section_one_section_one_navigation_two','Cloud Native DevOps'),(165627,4757,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(165628,4757,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(165629,4757,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(165630,4757,'section_one_section_one_button_text','Book Consultation Now'),(165631,4757,'_section_one_section_one_button_text','field_63171dc918ea0'),(165632,4757,'section_one',''),(165633,4757,'_section_one','field_631716de18e98'),(165634,4757,'section_two_section_two_title','Our Services'),(165635,4757,'_section_two_section_two_title','field_63171e1457be9'),(165636,4757,'section_two_section_two_icon_one','4734'),(165637,4757,'_section_two_section_two_icon_one','field_63171e2c57bea'),(165638,4757,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(165639,4757,'_section_two_section_two_title_one','field_63171e5f57beb'),(165640,4757,'section_two_section_two_icon_two','4741'),(165641,4757,'_section_two_section_two_icon_two','field_63171e7357bec'),(165642,4757,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(165643,4757,'_section_two_section_two_title_two','field_63171ea157bee'),(165644,4757,'section_two_section_two_icon_three','4736'),(165645,4757,'_section_two_section_two_icon_three','field_63171e8557bed'),(165646,4757,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(165647,4757,'_section_two_section_two_title_three','field_63171ec257bef'),(165648,4757,'section_two_section_two_icon_four','4738'),(165649,4757,'_section_two_section_two_icon_four','field_63171ee257bf0'),(165650,4757,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(165651,4757,'_section_two_section_two_title_four','field_63171ef757bf1'),(165652,4757,'section_two_section_two_icon_five','4744'),(165653,4757,'_section_two_section_two_icon_five','field_63171f2857bf3'),(165654,4757,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(165655,4757,'_section_two_section_two_title_five','field_63171f3957bf4'),(165656,4757,'section_two_section_two_icon_six','4746'),(165657,4757,'_section_two_section_two_icon_six','field_63171f5057bf5'),(165658,4757,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(165659,4757,'_section_two_section_two_title_six','field_63171f6657bf6'),(165660,4757,'section_two_section_two_icon_seven','4748'),(165661,4757,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(165662,4757,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(165663,4757,'_section_two_section_two_title_seven','field_63171f9757bf8'),(165664,4757,'section_two_section_two_icon_eight','4750'),(165665,4757,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(165666,4757,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(165667,4757,'_section_two_section_two_title_eight','field_63171fc057bfa'),(165668,4757,'section_two',''),(165669,4757,'_section_two','field_63171dfb57be8'),(165670,4757,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(165671,4757,'_section_three_section_three_breadcrumb','field_631723036988b'),(165672,4757,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(165673,4757,'_section_three_section_three_title','field_631723176988c'),(165674,4757,'section_three_section_three_image','4727'),(165675,4757,'_section_three_section_three_image','field_631723ac6988e'),(165676,4757,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(165677,4757,'_section_three_section_three_content','field_631723906988d'),(165678,4757,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(165679,4757,'_section_three_section_three_footer','field_631723c36988f'),(165680,4757,'section_three_section_three_button_text','Book Consultation Now'),(165681,4757,'_section_three_section_three_button_text','field_631723d769890'),(165682,4757,'section_three',''),(165683,4757,'_section_three','field_631722b96988a'),(165684,4757,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(165685,4757,'_section_four_section_four_breadcrumb','field_6317271523757'),(165686,4757,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(165687,4757,'_section_four_section_four_title','field_6317271523758'),(165688,4757,'section_four_section_four_image','4730'),(165689,4757,'_section_four_section_four_image','field_6317271523759'),(165690,4757,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(165691,4757,'_section_four_section_four_content','field_631727152375a'),(165692,4757,'section_four_section_four_footer','Build - Rebuild - Replatform'),(165693,4757,'_section_four_section_four_footer','field_631727152375b'),(165694,4757,'section_four',''),(165695,4757,'_section_four','field_6317271523756'),(165696,4757,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(165697,4757,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(165698,4757,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(165699,4757,'_section_five_section_five_title','field_631727bbd69dd'),(165700,4757,'section_five_section_five_image','4732'),(165701,4757,'_section_five_section_five_image','field_631727bbd69de'),(165702,4757,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(165703,4757,'_section_five_section_five_content','field_631727bbd69df'),(165704,4757,'section_five_section_five_footer',''),(165705,4757,'_section_five_section_five_footer','field_631727bbd69e0'),(165706,4757,'section_five',''),(165707,4757,'_section_five','field_631727bbd69db'),(165708,4757,'footer_title','We treat your business like our own.'),(165709,4757,'_footer_title','field_631729e2753c6'),(165710,4757,'footer_button_text','Let\'s talk!'),(165711,4757,'_footer_button_text','field_63172a06753c7'),(165712,4757,'section_five_section_five_icon_one','4752'),(165713,4757,'_section_five_section_five_icon_one','field_631727bbd69e0'),(165714,4757,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(165715,4757,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(165716,4757,'section_five_section_five_icon_two','4754'),(165717,4757,'_section_five_section_five_icon_two','field_631ef504912c5'),(165718,4757,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(165719,4757,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(165720,4757,'section_five_section_five_icon_three','4756'),(165721,4757,'_section_five_section_five_icon_three','field_631ef510912c6'),(165722,4757,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(165723,4757,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(165724,4757,'section_five_section_five_icon_four','4710'),(165725,4757,'_section_five_section_five_icon_four','field_631ef51c912c7'),(165726,4757,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(165727,4757,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(165731,4758,'_wp_attached_file','2022/09/service-level-indicator.png'),(165732,4758,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:35:\"2022/09/service-level-indicator.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(165733,4758,'_imagify_optimization_level','2'),(165734,4758,'_imagify_status','success'),(165735,4758,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1364;s:14:\"optimized_size\";i:478;s:7:\"percent\";d:64.96;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:1364;s:14:\"optimized_size\";i:1310;s:7:\"percent\";d:3.96;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2728;s:14:\"optimized_size\";i:1788;s:7:\"percent\";d:34.46;}}'),(165736,4759,'top_title','Kubernetes Professional Services'),(165737,4759,'_top_title','field_6317168918e96'),(165738,4759,'top_description','CLOUD NATIVE SOLUTIONS'),(165739,4759,'_top_description','field_6317169e18e97'),(165740,4759,'section_one_section_one_breadcrumb','KCSP'),(165741,4759,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(165742,4759,'section_one_section_one_title','Kubernetes Certified Service Provider'),(165743,4759,'_section_one_section_one_title','field_6317172018e9a'),(165744,4759,'section_one_section_one_image','4725'),(165745,4759,'_section_one_section_one_image','field_63171ca018e9c'),(165746,4759,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(165747,4759,'_section_one_section_one_content','field_6317174118e9b'),(165748,4759,'section_one_section_one_navigation_one','Cloud Native Applications'),(165749,4759,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(165750,4759,'section_one_section_one_navigation_two','Cloud Native DevOps'),(165751,4759,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(165752,4759,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(165753,4759,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(165754,4759,'section_one_section_one_button_text','Book Consultation Now'),(165755,4759,'_section_one_section_one_button_text','field_63171dc918ea0'),(165756,4759,'section_one',''),(165757,4759,'_section_one','field_631716de18e98'),(165758,4759,'section_two_section_two_title','Our Services'),(165759,4759,'_section_two_section_two_title','field_63171e1457be9'),(165760,4759,'section_two_section_two_icon_one','4734'),(165761,4759,'_section_two_section_two_icon_one','field_63171e2c57bea'),(165762,4759,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(165763,4759,'_section_two_section_two_title_one','field_63171e5f57beb'),(165764,4759,'section_two_section_two_icon_two','4741'),(165765,4759,'_section_two_section_two_icon_two','field_63171e7357bec'),(165766,4759,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(165767,4759,'_section_two_section_two_title_two','field_63171ea157bee'),(165768,4759,'section_two_section_two_icon_three','4736'),(165769,4759,'_section_two_section_two_icon_three','field_63171e8557bed'),(165770,4759,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(165771,4759,'_section_two_section_two_title_three','field_63171ec257bef'),(165772,4759,'section_two_section_two_icon_four','4738'),(165773,4759,'_section_two_section_two_icon_four','field_63171ee257bf0'),(165774,4759,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(165775,4759,'_section_two_section_two_title_four','field_63171ef757bf1'),(165776,4759,'section_two_section_two_icon_five','4744'),(165777,4759,'_section_two_section_two_icon_five','field_63171f2857bf3'),(165778,4759,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(165779,4759,'_section_two_section_two_title_five','field_63171f3957bf4'),(165780,4759,'section_two_section_two_icon_six','4746'),(165781,4759,'_section_two_section_two_icon_six','field_63171f5057bf5'),(165782,4759,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(165783,4759,'_section_two_section_two_title_six','field_63171f6657bf6'),(165784,4759,'section_two_section_two_icon_seven','4748'),(165785,4759,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(165786,4759,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(165787,4759,'_section_two_section_two_title_seven','field_63171f9757bf8'),(165788,4759,'section_two_section_two_icon_eight','4750'),(165789,4759,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(165790,4759,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(165791,4759,'_section_two_section_two_title_eight','field_63171fc057bfa'),(165792,4759,'section_two',''),(165793,4759,'_section_two','field_63171dfb57be8'),(165794,4759,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(165795,4759,'_section_three_section_three_breadcrumb','field_631723036988b'),(165796,4759,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(165797,4759,'_section_three_section_three_title','field_631723176988c'),(165798,4759,'section_three_section_three_image','4727'),(165799,4759,'_section_three_section_three_image','field_631723ac6988e'),(165800,4759,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(165801,4759,'_section_three_section_three_content','field_631723906988d'),(165802,4759,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(165803,4759,'_section_three_section_three_footer','field_631723c36988f'),(165804,4759,'section_three_section_three_button_text','Book Consultation Now'),(165805,4759,'_section_three_section_three_button_text','field_631723d769890'),(165806,4759,'section_three',''),(165807,4759,'_section_three','field_631722b96988a'),(165808,4759,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(165809,4759,'_section_four_section_four_breadcrumb','field_6317271523757'),(165810,4759,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(165811,4759,'_section_four_section_four_title','field_6317271523758'),(165812,4759,'section_four_section_four_image','4730'),(165813,4759,'_section_four_section_four_image','field_6317271523759'),(165814,4759,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(165815,4759,'_section_four_section_four_content','field_631727152375a'),(165816,4759,'section_four_section_four_footer','Build - Rebuild - Replatform'),(165817,4759,'_section_four_section_four_footer','field_631727152375b'),(165818,4759,'section_four',''),(165819,4759,'_section_four','field_6317271523756'),(165820,4759,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(165821,4759,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(165822,4759,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(165823,4759,'_section_five_section_five_title','field_631727bbd69dd'),(165824,4759,'section_five_section_five_image','4732'),(165825,4759,'_section_five_section_five_image','field_631727bbd69de'),(165826,4759,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(165827,4759,'_section_five_section_five_content','field_631727bbd69df'),(165828,4759,'section_five_section_five_footer',''),(165829,4759,'_section_five_section_five_footer','field_631727bbd69e0'),(165830,4759,'section_five',''),(165831,4759,'_section_five','field_631727bbd69db'),(165832,4759,'footer_title','We treat your business like our own.'),(165833,4759,'_footer_title','field_631729e2753c6'),(165834,4759,'footer_button_text','Let\'s talk!'),(165835,4759,'_footer_button_text','field_63172a06753c7'),(165836,4759,'section_five_section_five_icon_one','4752'),(165837,4759,'_section_five_section_five_icon_one','field_631727bbd69e0'),(165838,4759,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(165839,4759,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(165840,4759,'section_five_section_five_icon_two','4754'),(165841,4759,'_section_five_section_five_icon_two','field_631ef504912c5'),(165842,4759,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(165843,4759,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(165844,4759,'section_five_section_five_icon_three','4756'),(165845,4759,'_section_five_section_five_icon_three','field_631ef510912c6'),(165846,4759,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(165847,4759,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(165848,4759,'section_five_section_five_icon_four','4758'),(165849,4759,'_section_five_section_five_icon_four','field_631ef51c912c7'),(165850,4759,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(165851,4759,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(165855,4760,'top_title','Kubernetes Professional Services'),(165856,4760,'_top_title','field_6317168918e96'),(165857,4760,'top_description','CLOUD NATIVE SOLUTIONS'),(165858,4760,'_top_description','field_6317169e18e97'),(165859,4760,'section_one_section_one_breadcrumb','KCSP'),(165860,4760,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(165861,4760,'section_one_section_one_title','Kubernetes Certified Service Provider'),(165862,4760,'_section_one_section_one_title','field_6317172018e9a'),(165863,4760,'section_one_section_one_image','4725'),(165864,4760,'_section_one_section_one_image','field_63171ca018e9c'),(165865,4760,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(165866,4760,'_section_one_section_one_content','field_6317174118e9b'),(165867,4760,'section_one_section_one_navigation_one','Cloud Native Applications'),(165868,4760,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(165869,4760,'section_one_section_one_navigation_two','Cloud Native DevOps'),(165870,4760,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(165871,4760,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(165872,4760,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(165873,4760,'section_one_section_one_button_text','Book Consultation Now'),(165874,4760,'_section_one_section_one_button_text','field_63171dc918ea0'),(165875,4760,'section_one',''),(165876,4760,'_section_one','field_631716de18e98'),(165877,4760,'section_two_section_two_title','Our Services'),(165878,4760,'_section_two_section_two_title','field_63171e1457be9'),(165879,4760,'section_two_section_two_icon_one','4734'),(165880,4760,'_section_two_section_two_icon_one','field_63171e2c57bea'),(165881,4760,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(165882,4760,'_section_two_section_two_title_one','field_63171e5f57beb'),(165883,4760,'section_two_section_two_icon_two','4741'),(165884,4760,'_section_two_section_two_icon_two','field_63171e7357bec'),(165885,4760,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(165886,4760,'_section_two_section_two_title_two','field_63171ea157bee'),(165887,4760,'section_two_section_two_icon_three','4736'),(165888,4760,'_section_two_section_two_icon_three','field_63171e8557bed'),(165889,4760,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(165890,4760,'_section_two_section_two_title_three','field_63171ec257bef'),(165891,4760,'section_two_section_two_icon_four','4738'),(165892,4760,'_section_two_section_two_icon_four','field_63171ee257bf0'),(165893,4760,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(165894,4760,'_section_two_section_two_title_four','field_63171ef757bf1'),(165895,4760,'section_two_section_two_icon_five','4744'),(165896,4760,'_section_two_section_two_icon_five','field_63171f2857bf3'),(165897,4760,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(165898,4760,'_section_two_section_two_title_five','field_63171f3957bf4'),(165899,4760,'section_two_section_two_icon_six','4746'),(165900,4760,'_section_two_section_two_icon_six','field_63171f5057bf5'),(165901,4760,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(165902,4760,'_section_two_section_two_title_six','field_63171f6657bf6'),(165903,4760,'section_two_section_two_icon_seven','4748'),(165904,4760,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(165905,4760,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(165906,4760,'_section_two_section_two_title_seven','field_63171f9757bf8'),(165907,4760,'section_two_section_two_icon_eight','4750'),(165908,4760,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(165909,4760,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(165910,4760,'_section_two_section_two_title_eight','field_63171fc057bfa'),(165911,4760,'section_two',''),(165912,4760,'_section_two','field_63171dfb57be8'),(165913,4760,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(165914,4760,'_section_three_section_three_breadcrumb','field_631723036988b'),(165915,4760,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(165916,4760,'_section_three_section_three_title','field_631723176988c'),(165917,4760,'section_three_section_three_image','4727'),(165918,4760,'_section_three_section_three_image','field_631723ac6988e'),(165919,4760,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(165920,4760,'_section_three_section_three_content','field_631723906988d'),(165921,4760,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(165922,4760,'_section_three_section_three_footer','field_631723c36988f'),(165923,4760,'section_three_section_three_button_text','Book Consultation Now'),(165924,4760,'_section_three_section_three_button_text','field_631723d769890'),(165925,4760,'section_three',''),(165926,4760,'_section_three','field_631722b96988a'),(165927,4760,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(165928,4760,'_section_four_section_four_breadcrumb','field_6317271523757'),(165929,4760,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(165930,4760,'_section_four_section_four_title','field_6317271523758'),(165931,4760,'section_four_section_four_image','4730'),(165932,4760,'_section_four_section_four_image','field_6317271523759'),(165933,4760,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(165934,4760,'_section_four_section_four_content','field_631727152375a'),(165935,4760,'section_four_section_four_footer','Build - Rebuild - Replatform'),(165936,4760,'_section_four_section_four_footer','field_631727152375b'),(165937,4760,'section_four',''),(165938,4760,'_section_four','field_6317271523756'),(165939,4760,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(165940,4760,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(165941,4760,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(165942,4760,'_section_five_section_five_title','field_631727bbd69dd'),(165943,4760,'section_five_section_five_image','4732'),(165944,4760,'_section_five_section_five_image','field_631727bbd69de'),(165945,4760,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(165946,4760,'_section_five_section_five_content','field_631727bbd69df'),(165947,4760,'section_five_section_five_footer',''),(165948,4760,'_section_five_section_five_footer','field_631727bbd69e0'),(165949,4760,'section_five',''),(165950,4760,'_section_five','field_631727bbd69db'),(165951,4760,'footer_title','We treat your business like our own.'),(165952,4760,'_footer_title','field_631729e2753c6'),(165953,4760,'footer_button_text','Let\'s talk!'),(165954,4760,'_footer_button_text','field_63172a06753c7'),(165955,4760,'section_five_section_five_icon_one','4752'),(165956,4760,'_section_five_section_five_icon_one','field_631727bbd69e0'),(165957,4760,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(165958,4760,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(165959,4760,'section_five_section_five_icon_two','4754'),(165960,4760,'_section_five_section_five_icon_two','field_631ef504912c5'),(165961,4760,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(165962,4760,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(165963,4760,'section_five_section_five_icon_three','4756'),(165964,4760,'_section_five_section_five_icon_three','field_631ef510912c6'),(165965,4760,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(165966,4760,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(165967,4760,'section_five_section_five_icon_four','4758'),(165968,4760,'_section_five_section_five_icon_four','field_631ef51c912c7'),(165969,4760,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(165970,4760,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(165974,4761,'top_title','Kubernetes Professional Services'),(165975,4761,'_top_title','field_6317168918e96'),(165976,4761,'top_description','CLOUD NATIVE SOLUTIONS'),(165977,4761,'_top_description','field_6317169e18e97'),(165978,4761,'section_one_section_one_breadcrumb','KCSP'),(165979,4761,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(165980,4761,'section_one_section_one_title','Kubernetes Certified Service Provider'),(165981,4761,'_section_one_section_one_title','field_6317172018e9a'),(165982,4761,'section_one_section_one_image','4725'),(165983,4761,'_section_one_section_one_image','field_63171ca018e9c'),(165984,4761,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.\r\nWe offer cost-effective consulting and implementation focused on your ROI.'),(165985,4761,'_section_one_section_one_content','field_6317174118e9b'),(165986,4761,'section_one_section_one_navigation_one','Cloud Native Applications'),(165987,4761,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(165988,4761,'section_one_section_one_navigation_two','Cloud Native DevOps'),(165989,4761,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(165990,4761,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(165991,4761,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(165992,4761,'section_one_section_one_button_text','Book Consultation Now'),(165993,4761,'_section_one_section_one_button_text','field_63171dc918ea0'),(165994,4761,'section_one',''),(165995,4761,'_section_one','field_631716de18e98'),(165996,4761,'section_two_section_two_title','Our Services'),(165997,4761,'_section_two_section_two_title','field_63171e1457be9'),(165998,4761,'section_two_section_two_icon_one','4734'),(165999,4761,'_section_two_section_two_icon_one','field_63171e2c57bea'),(166000,4761,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(166001,4761,'_section_two_section_two_title_one','field_63171e5f57beb'),(166002,4761,'section_two_section_two_icon_two','4741'),(166003,4761,'_section_two_section_two_icon_two','field_63171e7357bec'),(166004,4761,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(166005,4761,'_section_two_section_two_title_two','field_63171ea157bee'),(166006,4761,'section_two_section_two_icon_three','4736'),(166007,4761,'_section_two_section_two_icon_three','field_63171e8557bed'),(166008,4761,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(166009,4761,'_section_two_section_two_title_three','field_63171ec257bef'),(166010,4761,'section_two_section_two_icon_four','4738'),(166011,4761,'_section_two_section_two_icon_four','field_63171ee257bf0'),(166012,4761,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(166013,4761,'_section_two_section_two_title_four','field_63171ef757bf1'),(166014,4761,'section_two_section_two_icon_five','4744'),(166015,4761,'_section_two_section_two_icon_five','field_63171f2857bf3'),(166016,4761,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(166017,4761,'_section_two_section_two_title_five','field_63171f3957bf4'),(166018,4761,'section_two_section_two_icon_six','4746'),(166019,4761,'_section_two_section_two_icon_six','field_63171f5057bf5'),(166020,4761,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(166021,4761,'_section_two_section_two_title_six','field_63171f6657bf6'),(166022,4761,'section_two_section_two_icon_seven','4748'),(166023,4761,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(166024,4761,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(166025,4761,'_section_two_section_two_title_seven','field_63171f9757bf8'),(166026,4761,'section_two_section_two_icon_eight','4750'),(166027,4761,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(166028,4761,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(166029,4761,'_section_two_section_two_title_eight','field_63171fc057bfa'),(166030,4761,'section_two',''),(166031,4761,'_section_two','field_63171dfb57be8'),(166032,4761,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(166033,4761,'_section_three_section_three_breadcrumb','field_631723036988b'),(166034,4761,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(166035,4761,'_section_three_section_three_title','field_631723176988c'),(166036,4761,'section_three_section_three_image','4727'),(166037,4761,'_section_three_section_three_image','field_631723ac6988e'),(166038,4761,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(166039,4761,'_section_three_section_three_content','field_631723906988d'),(166040,4761,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(166041,4761,'_section_three_section_three_footer','field_631723c36988f'),(166042,4761,'section_three_section_three_button_text','Book Consultation Now'),(166043,4761,'_section_three_section_three_button_text','field_631723d769890'),(166044,4761,'section_three',''),(166045,4761,'_section_three','field_631722b96988a'),(166046,4761,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(166047,4761,'_section_four_section_four_breadcrumb','field_6317271523757'),(166048,4761,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(166049,4761,'_section_four_section_four_title','field_6317271523758'),(166050,4761,'section_four_section_four_image','4730'),(166051,4761,'_section_four_section_four_image','field_6317271523759'),(166052,4761,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(166053,4761,'_section_four_section_four_content','field_631727152375a'),(166054,4761,'section_four_section_four_footer','Build - Rebuild - Replatform'),(166055,4761,'_section_four_section_four_footer','field_631727152375b'),(166056,4761,'section_four',''),(166057,4761,'_section_four','field_6317271523756'),(166058,4761,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(166059,4761,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(166060,4761,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(166061,4761,'_section_five_section_five_title','field_631727bbd69dd'),(166062,4761,'section_five_section_five_image','4732'),(166063,4761,'_section_five_section_five_image','field_631727bbd69de'),(166064,4761,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way.\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(166065,4761,'_section_five_section_five_content','field_631727bbd69df'),(166066,4761,'section_five_section_five_footer',''),(166067,4761,'_section_five_section_five_footer','field_631727bbd69e0'),(166068,4761,'section_five',''),(166069,4761,'_section_five','field_631727bbd69db'),(166070,4761,'footer_title','We treat your business like our own.'),(166071,4761,'_footer_title','field_631729e2753c6'),(166072,4761,'footer_button_text','Let\'s talk!'),(166073,4761,'_footer_button_text','field_63172a06753c7'),(166074,4761,'section_five_section_five_icon_one','4752'),(166075,4761,'_section_five_section_five_icon_one','field_631727bbd69e0'),(166076,4761,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(166077,4761,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(166078,4761,'section_five_section_five_icon_two','4754'),(166079,4761,'_section_five_section_five_icon_two','field_631ef504912c5'),(166080,4761,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(166081,4761,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(166082,4761,'section_five_section_five_icon_three','4756'),(166083,4761,'_section_five_section_five_icon_three','field_631ef510912c6'),(166084,4761,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(166085,4761,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(166086,4761,'section_five_section_five_icon_four','4758'),(166087,4761,'_section_five_section_five_icon_four','field_631ef51c912c7'),(166088,4761,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(166089,4761,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(166096,4563,'_rawhtml_settings','1,1,1,1'),(166097,4762,'top-image',''),(166098,4762,'_top-image','field_5c488d805f5d4'),(166099,4762,'top_title',''),(166100,4762,'_top_title','field_5edfac92f4226'),(166101,4762,'top-text',''),(166102,4762,'_top-text','field_5c488e575f5d5'),(166103,4762,'features',''),(166104,4762,'_features','field_5c4890bc3ae1f'),(166105,4762,'about-title',''),(166106,4762,'_about-title','field_5c488e7a5f5d6'),(166107,4762,'about-text',''),(166108,4762,'_about-text','field_5c488e945f5d7'),(166109,4762,'problems',''),(166110,4762,'_problems','field_5c488ec75f5d8'),(166111,4762,'solutions',''),(166112,4762,'_solutions','field_5c488ed95f5d9'),(166113,4762,'difference',''),(166114,4762,'_difference','field_5c488eed5f5da'),(166115,4762,'panel',''),(166116,4762,'_panel','field_5c488f195f5db'),(166117,4762,'more-text',''),(166118,4762,'_more-text','field_5c488f8f5f5df'),(166119,4762,'phrase',''),(166120,4762,'_phrase','field_5c488faf5f5e0'),(166121,4762,'author',''),(166122,4762,'_author','field_5c488fba5f5e1'),(166123,4762,'top_description','Machine Learning'),(166124,4762,'_top_description','field_63170e008cc99'),(166125,4762,'top_background_desktop','4677'),(166126,4762,'_top_background_desktop','field_631eb1728b709'),(166127,4762,'top_background_mobile','4677'),(166128,4762,'_top_background_mobile','field_631eb1988b70a'),(166129,4762,'section_one_section_one_breadcrumb','THE FUTURE'),(166130,4762,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(166131,4762,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(166132,4762,'_section_one_section_one_title','field_6316f2764091e'),(166133,4762,'section_one_section_one_content','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(166134,4762,'_section_one_section_one_content','field_6316f2934091f'),(166135,4762,'section_one_section_one_image','4679'),(166136,4762,'_section_one_section_one_image','field_6316f2ab40920'),(166137,4762,'section_one_section_one_button_text','Book a consultation now'),(166138,4762,'_section_one_section_one_button_text','field_6316f2ca40921'),(166139,4762,'section_one',''),(166140,4762,'_section_one','field_6316f7ba1cd27'),(166141,4762,'section_two_section_two_button_text','Book a consultation now'),(166142,4762,'_section_two_section_two_button_text','field_6316fe1ff751b'),(166143,4762,'section_two_section_two_tab_one_header_title','Problems'),(166144,4762,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(166145,4762,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(166146,4762,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(166147,4762,'section_two_section_two_tab_one_image','4680'),(166148,4762,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(166149,4762,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(166150,4762,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(166151,4762,'section_two_section_two_tab_one_content','Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(166152,4762,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(166153,4762,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(166154,4762,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(166155,4762,'section_two_section_two_tab_two_header_title','Solutions'),(166156,4762,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(166157,4762,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(166158,4762,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(166159,4762,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(166160,4762,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(166161,4762,'section_two_section_two_tab_two_content_icon_1','4683'),(166162,4762,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(166163,4762,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(166164,4762,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(166165,4762,'section_two_section_two_tab_two_content_icon_2','4684'),(166166,4762,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(166167,4762,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(166168,4762,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(166169,4762,'section_two_section_two_tab_two_content_icon_3','4685'),(166170,4762,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(166171,4762,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(166172,4762,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(166173,4762,'section_two_section_two_tab_two_content_icon_4','4686'),(166174,4762,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(166175,4762,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(166176,4762,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(166177,4762,'section_two_section_two_tab_three_header_title','Difference'),(166178,4762,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(166179,4762,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(166180,4762,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(166181,4762,'section_two_section_two_tab_three_content','Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.\r\n\r\nWeave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.'),(166182,4762,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(166183,4762,'section_two_section_two_tab_three_image','4705'),(166184,4762,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(166185,4762,'section_two',''),(166186,4762,'_section_two','field_6316fa2531589'),(166187,4762,'section_three_section_three_title','Trusted Relationships'),(166188,4762,'_section_three_section_three_title','field_6316febdf751c'),(166189,4762,'section_three_section_three_one_icon','4687'),(166190,4762,'_section_three_section_three_one_icon','field_6316fefff751e'),(166191,4762,'section_three_section_three_one_title','Data Entry Automation'),(166192,4762,'_section_three_section_three_one_title','field_6316ff1cf751f'),(166193,4762,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166194,4762,'_section_three_section_three_one_content','field_6316ff29f7520'),(166195,4762,'section_three_section_three_two_icon','4688'),(166196,4762,'_section_three_section_three_two_icon','field_6316ff77f7523'),(166197,4762,'section_three_section_three_two_title','Product Recommendation'),(166198,4762,'_section_three_section_three_two_title','field_6316ff90f7524'),(166199,4762,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166200,4762,'_section_three_section_three_two_content','field_6316ff5df7522'),(166201,4762,'section_three_section_three_three_icon','4689'),(166202,4762,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(166203,4762,'section_three_section_three_three_title','Medical Diagnosis'),(166204,4762,'_section_three_section_three_three_title','field_6316fff5f7527'),(166205,4762,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166206,4762,'_section_three_section_three_three_content','field_63170010f7528'),(166207,4762,'section_three_section_three_four_icon','4690'),(166208,4762,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(166209,4762,'section_three_section_three_four_title','Clients: Who is buying what'),(166210,4762,'_section_three_section_three_four_title','field_631707992b1ca'),(166211,4762,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166212,4762,'_section_three_section_three_four_content','field_631707b42b1cb'),(166213,4762,'section_three_section_three_five_icon','4691'),(166214,4762,'_section_three_section_three_five_icon','field_631707e52b1cd'),(166215,4762,'section_three_section_three_five_title','User Behavior'),(166216,4762,'_section_three_section_three_five_title','field_631708002b1ce'),(166217,4762,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166218,4762,'_section_three_section_three_five_content','field_6317081c2b1cf'),(166219,4762,'section_three_section_three_six_icon','4692'),(166220,4762,'_section_three_section_three_six_icon','field_631708572b1d1'),(166221,4762,'section_three_section_three_six_title','BI: Automated Reporting'),(166222,4762,'_section_three_section_three_six_title','field_631708712b1d2'),(166223,4762,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166224,4762,'_section_three_section_three_six_content','field_6317088d2b1d3'),(166225,4762,'section_three_section_three_seven_icon','4693'),(166226,4762,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(166227,4762,'section_three_section_three_seven_title','Detecting Spam in Emails'),(166228,4762,'_section_three_section_three_seven_title','field_631708da2b1d6'),(166229,4762,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166230,4762,'_section_three_section_three_seven_content','field_631708f62b1d7'),(166231,4762,'section_three_section_three_eight_icon','4694'),(166232,4762,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(166233,4762,'section_three_section_three_eight_title','Analytics'),(166234,4762,'_section_three_section_three_eight_title','field_631709462b1da'),(166235,4762,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166236,4762,'_section_three_section_three_eight_content','field_6317095e2b1db'),(166237,4762,'section_three',''),(166238,4762,'_section_three','field_6316fcf4f751a'),(166239,4762,'section_four_section_four_content','The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford. '),(166240,4762,'_section_four_section_four_content','field_63170ac9aa9a2'),(166241,4762,'section_four_section_four_button_text','Book a consultation now'),(166242,4762,'_section_four_section_four_button_text','field_63170b08aa9a3'),(166243,4762,'section_four',''),(166244,4762,'_section_four','field_63170a81aa9a1'),(166245,4762,'section_five_section_five_title','We listen. We learn. We inform.'),(166246,4762,'_section_five_section_five_title','field_63170b8564fc2'),(166247,4762,'section_five_section_five_quote','76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.'),(166248,4762,'_section_five_section_five_quote','field_63170b9a64fc3'),(166249,4762,'section_five_section_five_footer','forbes.com'),(166250,4762,'_section_five_section_five_footer','field_63170bad64fc4'),(166251,4762,'section_five',''),(166252,4762,'_section_five','field_63170b5f64fc1'),(166253,4762,'footer_title','We treat your business like our own.'),(166254,4762,'_footer_title','field_63170f4c8cc9a'),(166255,4762,'footer_button_text','Let\'s talk!'),(166256,4762,'_footer_button_text','field_63170f6f8cc9b'),(166257,4762,'top_title_1','CLOUD NATIVE SOLUTIONS'),(166258,4762,'_top_title_1','field_631ed55492adc'),(166259,4762,'top_title_page','CLOUD NATIVE SOLUTIONS'),(166260,4762,'_top_title_page','field_631ed55492adc'),(166264,4763,'top-image',''),(166265,4763,'_top-image','field_5c488d805f5d4'),(166266,4763,'top_title',''),(166267,4763,'_top_title','field_5edfac92f4226'),(166268,4763,'top-text',''),(166269,4763,'_top-text','field_5c488e575f5d5'),(166270,4763,'features',''),(166271,4763,'_features','field_5c4890bc3ae1f'),(166272,4763,'about-title',''),(166273,4763,'_about-title','field_5c488e7a5f5d6'),(166274,4763,'about-text',''),(166275,4763,'_about-text','field_5c488e945f5d7'),(166276,4763,'problems',''),(166277,4763,'_problems','field_5c488ec75f5d8'),(166278,4763,'solutions',''),(166279,4763,'_solutions','field_5c488ed95f5d9'),(166280,4763,'difference',''),(166281,4763,'_difference','field_5c488eed5f5da'),(166282,4763,'panel',''),(166283,4763,'_panel','field_5c488f195f5db'),(166284,4763,'more-text',''),(166285,4763,'_more-text','field_5c488f8f5f5df'),(166286,4763,'phrase',''),(166287,4763,'_phrase','field_5c488faf5f5e0'),(166288,4763,'author',''),(166289,4763,'_author','field_5c488fba5f5e1'),(166290,4763,'top_description','Machine Learning'),(166291,4763,'_top_description','field_63170e008cc99'),(166292,4763,'top_background_desktop','4677'),(166293,4763,'_top_background_desktop','field_631eb1728b709'),(166294,4763,'top_background_mobile','4677'),(166295,4763,'_top_background_mobile','field_631eb1988b70a'),(166296,4763,'section_one_section_one_breadcrumb','THE FUTURE'),(166297,4763,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(166298,4763,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(166299,4763,'_section_one_section_one_title','field_6316f2764091e'),(166300,4763,'section_one_section_one_content','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(166301,4763,'_section_one_section_one_content','field_6316f2934091f'),(166302,4763,'section_one_section_one_image','4679'),(166303,4763,'_section_one_section_one_image','field_6316f2ab40920'),(166304,4763,'section_one_section_one_button_text','Book a consultation now'),(166305,4763,'_section_one_section_one_button_text','field_6316f2ca40921'),(166306,4763,'section_one',''),(166307,4763,'_section_one','field_6316f7ba1cd27'),(166308,4763,'section_two_section_two_button_text','Book a consultation now'),(166309,4763,'_section_two_section_two_button_text','field_6316fe1ff751b'),(166310,4763,'section_two_section_two_tab_one_header_title','Problems'),(166311,4763,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(166312,4763,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(166313,4763,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(166314,4763,'section_two_section_two_tab_one_image','4680'),(166315,4763,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(166316,4763,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(166317,4763,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(166318,4763,'section_two_section_two_tab_one_content','Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(166319,4763,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(166320,4763,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(166321,4763,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(166322,4763,'section_two_section_two_tab_two_header_title','Solutions'),(166323,4763,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(166324,4763,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(166325,4763,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(166326,4763,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(166327,4763,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(166328,4763,'section_two_section_two_tab_two_content_icon_1','4683'),(166329,4763,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(166330,4763,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(166331,4763,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(166332,4763,'section_two_section_two_tab_two_content_icon_2','4684'),(166333,4763,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(166334,4763,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(166335,4763,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(166336,4763,'section_two_section_two_tab_two_content_icon_3','4685'),(166337,4763,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(166338,4763,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(166339,4763,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(166340,4763,'section_two_section_two_tab_two_content_icon_4','4686'),(166341,4763,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(166342,4763,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(166343,4763,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(166344,4763,'section_two_section_two_tab_three_header_title','Difference'),(166345,4763,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(166346,4763,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(166347,4763,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(166348,4763,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(166349,4763,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(166350,4763,'section_two_section_two_tab_three_image','4705'),(166351,4763,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(166352,4763,'section_two',''),(166353,4763,'_section_two','field_6316fa2531589'),(166354,4763,'section_three_section_three_title','Trusted Relationships'),(166355,4763,'_section_three_section_three_title','field_6316febdf751c'),(166356,4763,'section_three_section_three_one_icon','4687'),(166357,4763,'_section_three_section_three_one_icon','field_6316fefff751e'),(166358,4763,'section_three_section_three_one_title','Data Entry Automation'),(166359,4763,'_section_three_section_three_one_title','field_6316ff1cf751f'),(166360,4763,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166361,4763,'_section_three_section_three_one_content','field_6316ff29f7520'),(166362,4763,'section_three_section_three_two_icon','4688'),(166363,4763,'_section_three_section_three_two_icon','field_6316ff77f7523'),(166364,4763,'section_three_section_three_two_title','Product Recommendation'),(166365,4763,'_section_three_section_three_two_title','field_6316ff90f7524'),(166366,4763,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166367,4763,'_section_three_section_three_two_content','field_6316ff5df7522'),(166368,4763,'section_three_section_three_three_icon','4689'),(166369,4763,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(166370,4763,'section_three_section_three_three_title','Medical Diagnosis'),(166371,4763,'_section_three_section_three_three_title','field_6316fff5f7527'),(166372,4763,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166373,4763,'_section_three_section_three_three_content','field_63170010f7528'),(166374,4763,'section_three_section_three_four_icon','4690'),(166375,4763,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(166376,4763,'section_three_section_three_four_title','Clients: Who is buying what'),(166377,4763,'_section_three_section_three_four_title','field_631707992b1ca'),(166378,4763,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166379,4763,'_section_three_section_three_four_content','field_631707b42b1cb'),(166380,4763,'section_three_section_three_five_icon','4691'),(166381,4763,'_section_three_section_three_five_icon','field_631707e52b1cd'),(166382,4763,'section_three_section_three_five_title','User Behavior'),(166383,4763,'_section_three_section_three_five_title','field_631708002b1ce'),(166384,4763,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166385,4763,'_section_three_section_three_five_content','field_6317081c2b1cf'),(166386,4763,'section_three_section_three_six_icon','4692'),(166387,4763,'_section_three_section_three_six_icon','field_631708572b1d1'),(166388,4763,'section_three_section_three_six_title','BI: Automated Reporting'),(166389,4763,'_section_three_section_three_six_title','field_631708712b1d2'),(166390,4763,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166391,4763,'_section_three_section_three_six_content','field_6317088d2b1d3'),(166392,4763,'section_three_section_three_seven_icon','4693'),(166393,4763,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(166394,4763,'section_three_section_three_seven_title','Detecting Spam in Emails'),(166395,4763,'_section_three_section_three_seven_title','field_631708da2b1d6'),(166396,4763,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166397,4763,'_section_three_section_three_seven_content','field_631708f62b1d7'),(166398,4763,'section_three_section_three_eight_icon','4694'),(166399,4763,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(166400,4763,'section_three_section_three_eight_title','Analytics'),(166401,4763,'_section_three_section_three_eight_title','field_631709462b1da'),(166402,4763,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166403,4763,'_section_three_section_three_eight_content','field_6317095e2b1db'),(166404,4763,'section_three',''),(166405,4763,'_section_three','field_6316fcf4f751a'),(166406,4763,'section_four_section_four_content','The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford. '),(166407,4763,'_section_four_section_four_content','field_63170ac9aa9a2'),(166408,4763,'section_four_section_four_button_text','Book a consultation now'),(166409,4763,'_section_four_section_four_button_text','field_63170b08aa9a3'),(166410,4763,'section_four',''),(166411,4763,'_section_four','field_63170a81aa9a1'),(166412,4763,'section_five_section_five_title','We listen. We learn. We inform.'),(166413,4763,'_section_five_section_five_title','field_63170b8564fc2'),(166414,4763,'section_five_section_five_quote','76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.'),(166415,4763,'_section_five_section_five_quote','field_63170b9a64fc3'),(166416,4763,'section_five_section_five_footer','forbes.com'),(166417,4763,'_section_five_section_five_footer','field_63170bad64fc4'),(166418,4763,'section_five',''),(166419,4763,'_section_five','field_63170b5f64fc1'),(166420,4763,'footer_title','We treat your business like our own.'),(166421,4763,'_footer_title','field_63170f4c8cc9a'),(166422,4763,'footer_button_text','Let\'s talk!'),(166423,4763,'_footer_button_text','field_63170f6f8cc9b'),(166424,4763,'top_title_1','CLOUD NATIVE SOLUTIONS'),(166425,4763,'_top_title_1','field_631ed55492adc'),(166426,4763,'top_title_page','CLOUD NATIVE SOLUTIONS'),(166427,4763,'_top_title_page','field_631ed55492adc'),(166440,4764,'top-image',''),(166441,4764,'_top-image','field_5c488d805f5d4'),(166442,4764,'top_title',''),(166443,4764,'_top_title','field_5edfac92f4226'),(166444,4764,'top-text',''),(166445,4764,'_top-text','field_5c488e575f5d5'),(166446,4764,'features',''),(166447,4764,'_features','field_5c4890bc3ae1f'),(166448,4764,'about-title',''),(166449,4764,'_about-title','field_5c488e7a5f5d6'),(166450,4764,'about-text',''),(166451,4764,'_about-text','field_5c488e945f5d7'),(166452,4764,'problems',''),(166453,4764,'_problems','field_5c488ec75f5d8'),(166454,4764,'solutions',''),(166455,4764,'_solutions','field_5c488ed95f5d9'),(166456,4764,'difference',''),(166457,4764,'_difference','field_5c488eed5f5da'),(166458,4764,'panel',''),(166459,4764,'_panel','field_5c488f195f5db'),(166460,4764,'more-text',''),(166461,4764,'_more-text','field_5c488f8f5f5df'),(166462,4764,'phrase',''),(166463,4764,'_phrase','field_5c488faf5f5e0'),(166464,4764,'author',''),(166465,4764,'_author','field_5c488fba5f5e1'),(166466,4764,'top_description','Machine Learning'),(166467,4764,'_top_description','field_63170e008cc99'),(166468,4764,'top_background_desktop','4677'),(166469,4764,'_top_background_desktop','field_631eb1728b709'),(166470,4764,'top_background_mobile','4677'),(166471,4764,'_top_background_mobile','field_631eb1988b70a'),(166472,4764,'section_one_section_one_breadcrumb','THE FUTURE'),(166473,4764,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(166474,4764,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(166475,4764,'_section_one_section_one_title','field_6316f2764091e'),(166476,4764,'section_one_section_one_content','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(166477,4764,'_section_one_section_one_content','field_6316f2934091f'),(166478,4764,'section_one_section_one_image','4679'),(166479,4764,'_section_one_section_one_image','field_6316f2ab40920'),(166480,4764,'section_one_section_one_button_text','Book a consultation now'),(166481,4764,'_section_one_section_one_button_text','field_6316f2ca40921'),(166482,4764,'section_one',''),(166483,4764,'_section_one','field_6316f7ba1cd27'),(166484,4764,'section_two_section_two_button_text','Book a consultation now'),(166485,4764,'_section_two_section_two_button_text','field_6316fe1ff751b'),(166486,4764,'section_two_section_two_tab_one_header_title','Problems'),(166487,4764,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(166488,4764,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(166489,4764,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(166490,4764,'section_two_section_two_tab_one_image','4680'),(166491,4764,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(166492,4764,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(166493,4764,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(166494,4764,'section_two_section_two_tab_one_content','Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(166495,4764,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(166496,4764,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(166497,4764,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(166498,4764,'section_two_section_two_tab_two_header_title','Solutions'),(166499,4764,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(166500,4764,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(166501,4764,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(166502,4764,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(166503,4764,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(166504,4764,'section_two_section_two_tab_two_content_icon_1','4683'),(166505,4764,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(166506,4764,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(166507,4764,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(166508,4764,'section_two_section_two_tab_two_content_icon_2','4684'),(166509,4764,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(166510,4764,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(166511,4764,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(166512,4764,'section_two_section_two_tab_two_content_icon_3','4685'),(166513,4764,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(166514,4764,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(166515,4764,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(166516,4764,'section_two_section_two_tab_two_content_icon_4','4686'),(166517,4764,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(166518,4764,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(166519,4764,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(166520,4764,'section_two_section_two_tab_three_header_title','Difference'),(166521,4764,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(166522,4764,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(166523,4764,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(166524,4764,'section_two_section_two_tab_three_content','Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.\r\n\r\nWeave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.'),(166525,4764,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(166526,4764,'section_two_section_two_tab_three_image','4705'),(166527,4764,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(166528,4764,'section_two',''),(166529,4764,'_section_two','field_6316fa2531589'),(166530,4764,'section_three_section_three_title','Trusted Relationships'),(166531,4764,'_section_three_section_three_title','field_6316febdf751c'),(166532,4764,'section_three_section_three_one_icon','4687'),(166533,4764,'_section_three_section_three_one_icon','field_6316fefff751e'),(166534,4764,'section_three_section_three_one_title','Data Entry Automation'),(166535,4764,'_section_three_section_three_one_title','field_6316ff1cf751f'),(166536,4764,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166537,4764,'_section_three_section_three_one_content','field_6316ff29f7520'),(166538,4764,'section_three_section_three_two_icon','4688'),(166539,4764,'_section_three_section_three_two_icon','field_6316ff77f7523'),(166540,4764,'section_three_section_three_two_title','Product Recommendation'),(166541,4764,'_section_three_section_three_two_title','field_6316ff90f7524'),(166542,4764,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166543,4764,'_section_three_section_three_two_content','field_6316ff5df7522'),(166544,4764,'section_three_section_three_three_icon','4689'),(166545,4764,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(166546,4764,'section_three_section_three_three_title','Medical Diagnosis'),(166547,4764,'_section_three_section_three_three_title','field_6316fff5f7527'),(166548,4764,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166549,4764,'_section_three_section_three_three_content','field_63170010f7528'),(166550,4764,'section_three_section_three_four_icon','4690'),(166551,4764,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(166552,4764,'section_three_section_three_four_title','Clients: Who is buying what'),(166553,4764,'_section_three_section_three_four_title','field_631707992b1ca'),(166554,4764,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166555,4764,'_section_three_section_three_four_content','field_631707b42b1cb'),(166556,4764,'section_three_section_three_five_icon','4691'),(166557,4764,'_section_three_section_three_five_icon','field_631707e52b1cd'),(166558,4764,'section_three_section_three_five_title','User Behavior'),(166559,4764,'_section_three_section_three_five_title','field_631708002b1ce'),(166560,4764,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166561,4764,'_section_three_section_three_five_content','field_6317081c2b1cf'),(166562,4764,'section_three_section_three_six_icon','4692'),(166563,4764,'_section_three_section_three_six_icon','field_631708572b1d1'),(166564,4764,'section_three_section_three_six_title','BI: Automated Reporting'),(166565,4764,'_section_three_section_three_six_title','field_631708712b1d2'),(166566,4764,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166567,4764,'_section_three_section_three_six_content','field_6317088d2b1d3'),(166568,4764,'section_three_section_three_seven_icon','4693'),(166569,4764,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(166570,4764,'section_three_section_three_seven_title','Detecting Spam in Emails'),(166571,4764,'_section_three_section_three_seven_title','field_631708da2b1d6'),(166572,4764,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166573,4764,'_section_three_section_three_seven_content','field_631708f62b1d7'),(166574,4764,'section_three_section_three_eight_icon','4694'),(166575,4764,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(166576,4764,'section_three_section_three_eight_title','Analytics'),(166577,4764,'_section_three_section_three_eight_title','field_631709462b1da'),(166578,4764,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166579,4764,'_section_three_section_three_eight_content','field_6317095e2b1db'),(166580,4764,'section_three',''),(166581,4764,'_section_three','field_6316fcf4f751a'),(166582,4764,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(166583,4764,'_section_four_section_four_content','field_63170ac9aa9a2'),(166584,4764,'section_four_section_four_button_text','Book a consultation now'),(166585,4764,'_section_four_section_four_button_text','field_63170b08aa9a3'),(166586,4764,'section_four',''),(166587,4764,'_section_four','field_63170a81aa9a1'),(166588,4764,'section_five_section_five_title','We listen. We learn. We inform.'),(166589,4764,'_section_five_section_five_title','field_63170b8564fc2'),(166590,4764,'section_five_section_five_quote','76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.'),(166591,4764,'_section_five_section_five_quote','field_63170b9a64fc3'),(166592,4764,'section_five_section_five_footer','forbes.com'),(166593,4764,'_section_five_section_five_footer','field_63170bad64fc4'),(166594,4764,'section_five',''),(166595,4764,'_section_five','field_63170b5f64fc1'),(166596,4764,'footer_title','We treat your business like our own.'),(166597,4764,'_footer_title','field_63170f4c8cc9a'),(166598,4764,'footer_button_text','Let\'s talk!'),(166599,4764,'_footer_button_text','field_63170f6f8cc9b'),(166600,4764,'top_title_1','CLOUD NATIVE SOLUTIONS'),(166601,4764,'_top_title_1','field_631ed55492adc'),(166602,4764,'top_title_page','CLOUD NATIVE SOLUTIONS'),(166603,4764,'_top_title_page','field_631ed55492adc'),(166613,4765,'top-image',''),(166614,4765,'_top-image','field_5c488d805f5d4'),(166615,4765,'top_title',''),(166616,4765,'_top_title','field_5edfac92f4226'),(166617,4765,'top-text',''),(166618,4765,'_top-text','field_5c488e575f5d5'),(166619,4765,'features',''),(166620,4765,'_features','field_5c4890bc3ae1f'),(166621,4765,'about-title',''),(166622,4765,'_about-title','field_5c488e7a5f5d6'),(166623,4765,'about-text',''),(166624,4765,'_about-text','field_5c488e945f5d7'),(166625,4765,'problems',''),(166626,4765,'_problems','field_5c488ec75f5d8'),(166627,4765,'solutions',''),(166628,4765,'_solutions','field_5c488ed95f5d9'),(166629,4765,'difference',''),(166630,4765,'_difference','field_5c488eed5f5da'),(166631,4765,'panel',''),(166632,4765,'_panel','field_5c488f195f5db'),(166633,4765,'more-text',''),(166634,4765,'_more-text','field_5c488f8f5f5df'),(166635,4765,'phrase',''),(166636,4765,'_phrase','field_5c488faf5f5e0'),(166637,4765,'author',''),(166638,4765,'_author','field_5c488fba5f5e1'),(166639,4765,'top_description','Machine Learning'),(166640,4765,'_top_description','field_63170e008cc99'),(166641,4765,'top_background_desktop','4677'),(166642,4765,'_top_background_desktop','field_631eb1728b709'),(166643,4765,'top_background_mobile','4677'),(166644,4765,'_top_background_mobile','field_631eb1988b70a'),(166645,4765,'section_one_section_one_breadcrumb','THE FUTURE'),(166646,4765,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(166647,4765,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(166648,4765,'_section_one_section_one_title','field_6316f2764091e'),(166649,4765,'section_one_section_one_content','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(166650,4765,'_section_one_section_one_content','field_6316f2934091f'),(166651,4765,'section_one_section_one_image','4679'),(166652,4765,'_section_one_section_one_image','field_6316f2ab40920'),(166653,4765,'section_one_section_one_button_text','Book a consultation now'),(166654,4765,'_section_one_section_one_button_text','field_6316f2ca40921'),(166655,4765,'section_one',''),(166656,4765,'_section_one','field_6316f7ba1cd27'),(166657,4765,'section_two_section_two_button_text','Book a consultation now'),(166658,4765,'_section_two_section_two_button_text','field_6316fe1ff751b'),(166659,4765,'section_two_section_two_tab_one_header_title','Problems'),(166660,4765,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(166661,4765,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(166662,4765,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(166663,4765,'section_two_section_two_tab_one_image','4680'),(166664,4765,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(166665,4765,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(166666,4765,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(166667,4765,'section_two_section_two_tab_one_content','Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(166668,4765,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(166669,4765,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(166670,4765,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(166671,4765,'section_two_section_two_tab_two_header_title','Solutions'),(166672,4765,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(166673,4765,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(166674,4765,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(166675,4765,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(166676,4765,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(166677,4765,'section_two_section_two_tab_two_content_icon_1','4683'),(166678,4765,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(166679,4765,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(166680,4765,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(166681,4765,'section_two_section_two_tab_two_content_icon_2','4684'),(166682,4765,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(166683,4765,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(166684,4765,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(166685,4765,'section_two_section_two_tab_two_content_icon_3','4685'),(166686,4765,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(166687,4765,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(166688,4765,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(166689,4765,'section_two_section_two_tab_two_content_icon_4','4686'),(166690,4765,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(166691,4765,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(166692,4765,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(166693,4765,'section_two_section_two_tab_three_header_title','Difference'),(166694,4765,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(166695,4765,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(166696,4765,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(166697,4765,'section_two_section_two_tab_three_content','Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.\r\n\r\nWeave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.'),(166698,4765,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(166699,4765,'section_two_section_two_tab_three_image','4705'),(166700,4765,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(166701,4765,'section_two',''),(166702,4765,'_section_two','field_6316fa2531589'),(166703,4765,'section_three_section_three_title','Trusted Relationships'),(166704,4765,'_section_three_section_three_title','field_6316febdf751c'),(166705,4765,'section_three_section_three_one_icon','4687'),(166706,4765,'_section_three_section_three_one_icon','field_6316fefff751e'),(166707,4765,'section_three_section_three_one_title','Data Entry Automation'),(166708,4765,'_section_three_section_three_one_title','field_6316ff1cf751f'),(166709,4765,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166710,4765,'_section_three_section_three_one_content','field_6316ff29f7520'),(166711,4765,'section_three_section_three_two_icon','4688'),(166712,4765,'_section_three_section_three_two_icon','field_6316ff77f7523'),(166713,4765,'section_three_section_three_two_title','Product Recommendation'),(166714,4765,'_section_three_section_three_two_title','field_6316ff90f7524'),(166715,4765,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166716,4765,'_section_three_section_three_two_content','field_6316ff5df7522'),(166717,4765,'section_three_section_three_three_icon','4689'),(166718,4765,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(166719,4765,'section_three_section_three_three_title','Medical Diagnosis'),(166720,4765,'_section_three_section_three_three_title','field_6316fff5f7527'),(166721,4765,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166722,4765,'_section_three_section_three_three_content','field_63170010f7528'),(166723,4765,'section_three_section_three_four_icon','4690'),(166724,4765,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(166725,4765,'section_three_section_three_four_title','Clients: Who is buying what'),(166726,4765,'_section_three_section_three_four_title','field_631707992b1ca'),(166727,4765,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166728,4765,'_section_three_section_three_four_content','field_631707b42b1cb'),(166729,4765,'section_three_section_three_five_icon','4691'),(166730,4765,'_section_three_section_three_five_icon','field_631707e52b1cd'),(166731,4765,'section_three_section_three_five_title','User Behavior'),(166732,4765,'_section_three_section_three_five_title','field_631708002b1ce'),(166733,4765,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166734,4765,'_section_three_section_three_five_content','field_6317081c2b1cf'),(166735,4765,'section_three_section_three_six_icon','4692'),(166736,4765,'_section_three_section_three_six_icon','field_631708572b1d1'),(166737,4765,'section_three_section_three_six_title','BI: Automated Reporting'),(166738,4765,'_section_three_section_three_six_title','field_631708712b1d2'),(166739,4765,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166740,4765,'_section_three_section_three_six_content','field_6317088d2b1d3'),(166741,4765,'section_three_section_three_seven_icon','4693'),(166742,4765,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(166743,4765,'section_three_section_three_seven_title','Detecting Spam in Emails'),(166744,4765,'_section_three_section_three_seven_title','field_631708da2b1d6'),(166745,4765,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166746,4765,'_section_three_section_three_seven_content','field_631708f62b1d7'),(166747,4765,'section_three_section_three_eight_icon','4694'),(166748,4765,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(166749,4765,'section_three_section_three_eight_title','Analytics'),(166750,4765,'_section_three_section_three_eight_title','field_631709462b1da'),(166751,4765,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166752,4765,'_section_three_section_three_eight_content','field_6317095e2b1db'),(166753,4765,'section_three',''),(166754,4765,'_section_three','field_6316fcf4f751a'),(166755,4765,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(166756,4765,'_section_four_section_four_content','field_63170ac9aa9a2'),(166757,4765,'section_four_section_four_button_text','Book a consultation now'),(166758,4765,'_section_four_section_four_button_text','field_63170b08aa9a3'),(166759,4765,'section_four',''),(166760,4765,'_section_four','field_63170a81aa9a1'),(166761,4765,'section_five_section_five_title','We listen. We learn. We inform.'),(166762,4765,'_section_five_section_five_title','field_63170b8564fc2'),(166763,4765,'section_five_section_five_quote','76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.'),(166764,4765,'_section_five_section_five_quote','field_63170b9a64fc3'),(166765,4765,'section_five_section_five_footer','forbes.com'),(166766,4765,'_section_five_section_five_footer','field_63170bad64fc4'),(166767,4765,'section_five',''),(166768,4765,'_section_five','field_63170b5f64fc1'),(166769,4765,'footer_title','We treat your business like our own.'),(166770,4765,'_footer_title','field_63170f4c8cc9a'),(166771,4765,'footer_button_text','Let\'s talk!'),(166772,4765,'_footer_button_text','field_63170f6f8cc9b'),(166773,4765,'top_title_1','CLOUD NATIVE SOLUTIONS'),(166774,4765,'_top_title_1','field_631ed55492adc'),(166775,4765,'top_title_page','CLOUD NATIVE SOLUTIONS'),(166776,4765,'_top_title_page','field_631ed55492adc'),(166783,4766,'top-image',''),(166784,4766,'_top-image','field_5c488d805f5d4'),(166785,4766,'top_title',''),(166786,4766,'_top_title','field_5edfac92f4226'),(166787,4766,'top-text',''),(166788,4766,'_top-text','field_5c488e575f5d5'),(166789,4766,'features',''),(166790,4766,'_features','field_5c4890bc3ae1f'),(166791,4766,'about-title',''),(166792,4766,'_about-title','field_5c488e7a5f5d6'),(166793,4766,'about-text',''),(166794,4766,'_about-text','field_5c488e945f5d7'),(166795,4766,'problems',''),(166796,4766,'_problems','field_5c488ec75f5d8'),(166797,4766,'solutions',''),(166798,4766,'_solutions','field_5c488ed95f5d9'),(166799,4766,'difference',''),(166800,4766,'_difference','field_5c488eed5f5da'),(166801,4766,'panel',''),(166802,4766,'_panel','field_5c488f195f5db'),(166803,4766,'more-text',''),(166804,4766,'_more-text','field_5c488f8f5f5df'),(166805,4766,'phrase',''),(166806,4766,'_phrase','field_5c488faf5f5e0'),(166807,4766,'author',''),(166808,4766,'_author','field_5c488fba5f5e1'),(166809,4766,'top_description','Machine Learning'),(166810,4766,'_top_description','field_63170e008cc99'),(166811,4766,'top_background_desktop','4677'),(166812,4766,'_top_background_desktop','field_631eb1728b709'),(166813,4766,'top_background_mobile','4677'),(166814,4766,'_top_background_mobile','field_631eb1988b70a'),(166815,4766,'section_one_section_one_breadcrumb','THE FUTURE'),(166816,4766,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(166817,4766,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(166818,4766,'_section_one_section_one_title','field_6316f2764091e'),(166819,4766,'section_one_section_one_content','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(166820,4766,'_section_one_section_one_content','field_6316f2934091f'),(166821,4766,'section_one_section_one_image','4679'),(166822,4766,'_section_one_section_one_image','field_6316f2ab40920'),(166823,4766,'section_one_section_one_button_text','Book a consultation now'),(166824,4766,'_section_one_section_one_button_text','field_6316f2ca40921'),(166825,4766,'section_one',''),(166826,4766,'_section_one','field_6316f7ba1cd27'),(166827,4766,'section_two_section_two_button_text','Book a consultation now'),(166828,4766,'_section_two_section_two_button_text','field_6316fe1ff751b'),(166829,4766,'section_two_section_two_tab_one_header_title','Problems'),(166830,4766,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(166831,4766,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(166832,4766,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(166833,4766,'section_two_section_two_tab_one_image','4680'),(166834,4766,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(166835,4766,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(166836,4766,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(166837,4766,'section_two_section_two_tab_one_content','Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(166838,4766,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(166839,4766,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(166840,4766,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(166841,4766,'section_two_section_two_tab_two_header_title','Solutions'),(166842,4766,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(166843,4766,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(166844,4766,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(166845,4766,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(166846,4766,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(166847,4766,'section_two_section_two_tab_two_content_icon_1','4683'),(166848,4766,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(166849,4766,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(166850,4766,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(166851,4766,'section_two_section_two_tab_two_content_icon_2','4684'),(166852,4766,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(166853,4766,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(166854,4766,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(166855,4766,'section_two_section_two_tab_two_content_icon_3','4685'),(166856,4766,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(166857,4766,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(166858,4766,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(166859,4766,'section_two_section_two_tab_two_content_icon_4','4686'),(166860,4766,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(166861,4766,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(166862,4766,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(166863,4766,'section_two_section_two_tab_three_header_title','Difference'),(166864,4766,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(166865,4766,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(166866,4766,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(166867,4766,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(166868,4766,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(166869,4766,'section_two_section_two_tab_three_image','4705'),(166870,4766,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(166871,4766,'section_two',''),(166872,4766,'_section_two','field_6316fa2531589'),(166873,4766,'section_three_section_three_title','Trusted Relationships'),(166874,4766,'_section_three_section_three_title','field_6316febdf751c'),(166875,4766,'section_three_section_three_one_icon','4687'),(166876,4766,'_section_three_section_three_one_icon','field_6316fefff751e'),(166877,4766,'section_three_section_three_one_title','Data Entry Automation'),(166878,4766,'_section_three_section_three_one_title','field_6316ff1cf751f'),(166879,4766,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166880,4766,'_section_three_section_three_one_content','field_6316ff29f7520'),(166881,4766,'section_three_section_three_two_icon','4688'),(166882,4766,'_section_three_section_three_two_icon','field_6316ff77f7523'),(166883,4766,'section_three_section_three_two_title','Product Recommendation'),(166884,4766,'_section_three_section_three_two_title','field_6316ff90f7524'),(166885,4766,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166886,4766,'_section_three_section_three_two_content','field_6316ff5df7522'),(166887,4766,'section_three_section_three_three_icon','4689'),(166888,4766,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(166889,4766,'section_three_section_three_three_title','Medical Diagnosis'),(166890,4766,'_section_three_section_three_three_title','field_6316fff5f7527'),(166891,4766,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166892,4766,'_section_three_section_three_three_content','field_63170010f7528'),(166893,4766,'section_three_section_three_four_icon','4690'),(166894,4766,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(166895,4766,'section_three_section_three_four_title','Clients: Who is buying what'),(166896,4766,'_section_three_section_three_four_title','field_631707992b1ca'),(166897,4766,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166898,4766,'_section_three_section_three_four_content','field_631707b42b1cb'),(166899,4766,'section_three_section_three_five_icon','4691'),(166900,4766,'_section_three_section_three_five_icon','field_631707e52b1cd'),(166901,4766,'section_three_section_three_five_title','User Behavior'),(166902,4766,'_section_three_section_three_five_title','field_631708002b1ce'),(166903,4766,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166904,4766,'_section_three_section_three_five_content','field_6317081c2b1cf'),(166905,4766,'section_three_section_three_six_icon','4692'),(166906,4766,'_section_three_section_three_six_icon','field_631708572b1d1'),(166907,4766,'section_three_section_three_six_title','BI: Automated Reporting'),(166908,4766,'_section_three_section_three_six_title','field_631708712b1d2'),(166909,4766,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166910,4766,'_section_three_section_three_six_content','field_6317088d2b1d3'),(166911,4766,'section_three_section_three_seven_icon','4693'),(166912,4766,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(166913,4766,'section_three_section_three_seven_title','Detecting Spam in Emails'),(166914,4766,'_section_three_section_three_seven_title','field_631708da2b1d6'),(166915,4766,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166916,4766,'_section_three_section_three_seven_content','field_631708f62b1d7'),(166917,4766,'section_three_section_three_eight_icon','4694'),(166918,4766,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(166919,4766,'section_three_section_three_eight_title','Analytics'),(166920,4766,'_section_three_section_three_eight_title','field_631709462b1da'),(166921,4766,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(166922,4766,'_section_three_section_three_eight_content','field_6317095e2b1db'),(166923,4766,'section_three',''),(166924,4766,'_section_three','field_6316fcf4f751a'),(166925,4766,'section_four_section_four_content','The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford. '),(166926,4766,'_section_four_section_four_content','field_63170ac9aa9a2'),(166927,4766,'section_four_section_four_button_text','Book a consultation now'),(166928,4766,'_section_four_section_four_button_text','field_63170b08aa9a3'),(166929,4766,'section_four',''),(166930,4766,'_section_four','field_63170a81aa9a1'),(166931,4766,'section_five_section_five_title','We listen. We learn. We inform.'),(166932,4766,'_section_five_section_five_title','field_63170b8564fc2'),(166933,4766,'section_five_section_five_quote','76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.'),(166934,4766,'_section_five_section_five_quote','field_63170b9a64fc3'),(166935,4766,'section_five_section_five_footer','forbes.com'),(166936,4766,'_section_five_section_five_footer','field_63170bad64fc4'),(166937,4766,'section_five',''),(166938,4766,'_section_five','field_63170b5f64fc1'),(166939,4766,'footer_title','We treat your business like our own.'),(166940,4766,'_footer_title','field_63170f4c8cc9a'),(166941,4766,'footer_button_text','Let\'s talk!'),(166942,4766,'_footer_button_text','field_63170f6f8cc9b'),(166943,4766,'top_title_1','CLOUD NATIVE SOLUTIONS'),(166944,4766,'_top_title_1','field_631ed55492adc'),(166945,4766,'top_title_page','CLOUD NATIVE SOLUTIONS'),(166946,4766,'_top_title_page','field_631ed55492adc'),(166953,4562,'_pinterest_shares','0'),(166954,4562,'_total_shares','0'),(166965,4713,'_pinterest_shares','0'),(166966,4713,'_total_shares','0'),(166968,4715,'_pinterest_shares','0'),(166969,4715,'_total_shares','0'),(166971,4717,'_pinterest_shares','0'),(166972,4717,'_total_shares','0'),(166974,4719,'_pinterest_shares','0'),(166975,4719,'_total_shares','0'),(166983,4708,'_rawhtml_settings','0,0,0,0'),(166984,4767,'top_title','Kubernetes Professional Services'),(166985,4767,'_top_title','field_6317168918e96'),(166986,4767,'top_description','CLOUD NATIVE SOLUTIONS'),(166987,4767,'_top_description','field_6317169e18e97'),(166988,4767,'section_one_section_one_breadcrumb','KCSP'),(166989,4767,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(166990,4767,'section_one_section_one_title','

Kubernetes Certified Service Provider

'),(166991,4767,'_section_one_section_one_title','field_6317172018e9a'),(166992,4767,'section_one_section_one_image','4725'),(166993,4767,'_section_one_section_one_image','field_63171ca018e9c'),(166994,4767,'section_one_section_one_content','

Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.
\r\nWe offer cost-effective consulting and implementation focused on your ROI.

'),(166995,4767,'_section_one_section_one_content','field_6317174118e9b'),(166996,4767,'section_one_section_one_navigation_one','Cloud Native Applications'),(166997,4767,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(166998,4767,'section_one_section_one_navigation_two','Cloud Native DevOps'),(166999,4767,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(167000,4767,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(167001,4767,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(167002,4767,'section_one_section_one_button_text','Book Consultation Now'),(167003,4767,'_section_one_section_one_button_text','field_63171dc918ea0'),(167004,4767,'section_one',''),(167005,4767,'_section_one','field_631716de18e98'),(167006,4767,'section_two_section_two_title','Our Services'),(167007,4767,'_section_two_section_two_title','field_63171e1457be9'),(167008,4767,'section_two_section_two_icon_one','4734'),(167009,4767,'_section_two_section_two_icon_one','field_63171e2c57bea'),(167010,4767,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(167011,4767,'_section_two_section_two_title_one','field_63171e5f57beb'),(167012,4767,'section_two_section_two_icon_two','4741'),(167013,4767,'_section_two_section_two_icon_two','field_63171e7357bec'),(167014,4767,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(167015,4767,'_section_two_section_two_title_two','field_63171ea157bee'),(167016,4767,'section_two_section_two_icon_three','4736'),(167017,4767,'_section_two_section_two_icon_three','field_63171e8557bed'),(167018,4767,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(167019,4767,'_section_two_section_two_title_three','field_63171ec257bef'),(167020,4767,'section_two_section_two_icon_four','4738'),(167021,4767,'_section_two_section_two_icon_four','field_63171ee257bf0'),(167022,4767,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(167023,4767,'_section_two_section_two_title_four','field_63171ef757bf1'),(167024,4767,'section_two_section_two_icon_five','4744'),(167025,4767,'_section_two_section_two_icon_five','field_63171f2857bf3'),(167026,4767,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(167027,4767,'_section_two_section_two_title_five','field_63171f3957bf4'),(167028,4767,'section_two_section_two_icon_six','4746'),(167029,4767,'_section_two_section_two_icon_six','field_63171f5057bf5'),(167030,4767,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(167031,4767,'_section_two_section_two_title_six','field_63171f6657bf6'),(167032,4767,'section_two_section_two_icon_seven','4748'),(167033,4767,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(167034,4767,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(167035,4767,'_section_two_section_two_title_seven','field_63171f9757bf8'),(167036,4767,'section_two_section_two_icon_eight','4750'),(167037,4767,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(167038,4767,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(167039,4767,'_section_two_section_two_title_eight','field_63171fc057bfa'),(167040,4767,'section_two',''),(167041,4767,'_section_two','field_63171dfb57be8'),(167042,4767,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(167043,4767,'_section_three_section_three_breadcrumb','field_631723036988b'),(167044,4767,'section_three_section_three_title','

Plan Your Next Kubernetes Project
\r\nwith Translucent

'),(167045,4767,'_section_three_section_three_title','field_631723176988c'),(167046,4767,'section_three_section_three_image','4727'),(167047,4767,'_section_three_section_three_image','field_631723ac6988e'),(167048,4767,'section_three_section_three_content','

Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.
\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.

'),(167049,4767,'_section_three_section_three_content','field_631723906988d'),(167050,4767,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(167051,4767,'_section_three_section_three_footer','field_631723c36988f'),(167052,4767,'section_three_section_three_button_text','Book Consultation Now'),(167053,4767,'_section_three_section_three_button_text','field_631723d769890'),(167054,4767,'section_three',''),(167055,4767,'_section_three','field_631722b96988a'),(167056,4767,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(167057,4767,'_section_four_section_four_breadcrumb','field_6317271523757'),(167058,4767,'section_four_section_four_title','

Driving Digital Transformation with Containers and Kubernetes

'),(167059,4767,'_section_four_section_four_title','field_6317271523758'),(167060,4767,'section_four_section_four_image','4730'),(167061,4767,'_section_four_section_four_image','field_6317271523759'),(167062,4767,'section_four_section_four_content','

Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.

'),(167063,4767,'_section_four_section_four_content','field_631727152375a'),(167064,4767,'section_four_section_four_footer','Build - Rebuild - Replatform'),(167065,4767,'_section_four_section_four_footer','field_631727152375b'),(167066,4767,'section_four',''),(167067,4767,'_section_four','field_6317271523756'),(167068,4767,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(167069,4767,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(167070,4767,'section_five_section_five_title','

24/7 support and maintenance
\r\nwith our site reliability engineering services

'),(167071,4767,'_section_five_section_five_title','field_631727bbd69dd'),(167072,4767,'section_five_section_five_image','4732'),(167073,4767,'_section_five_section_five_image','field_631727bbd69de'),(167074,4767,'section_five_section_five_content','

From knowledge transfer to support, the Translucent team is here with you every step of the way.
\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.

'),(167075,4767,'_section_five_section_five_content','field_631727bbd69df'),(167076,4767,'section_five_section_five_footer',''),(167077,4767,'_section_five_section_five_footer','field_631727bbd69e0'),(167078,4767,'section_five',''),(167079,4767,'_section_five','field_631727bbd69db'),(167080,4767,'footer_title','We treat your business like our own.'),(167081,4767,'_footer_title','field_631729e2753c6'),(167082,4767,'footer_button_text','Let\'s talk!'),(167083,4767,'_footer_button_text','field_63172a06753c7'),(167084,4767,'section_five_section_five_icon_one','4752'),(167085,4767,'_section_five_section_five_icon_one','field_631727bbd69e0'),(167086,4767,'section_five_section_five_icon_text_one','

SRE - Site Reliability Engineering

'),(167087,4767,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(167088,4767,'section_five_section_five_icon_two','4754'),(167089,4767,'_section_five_section_five_icon_two','field_631ef504912c5'),(167090,4767,'section_five_section_five_icon_text_two','

SLA - Service Level Agreements

'),(167091,4767,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(167092,4767,'section_five_section_five_icon_three','4756'),(167093,4767,'_section_five_section_five_icon_three','field_631ef510912c6'),(167094,4767,'section_five_section_five_icon_text_three','

SLO - Service Level Objectives

'),(167095,4767,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(167096,4767,'section_five_section_five_icon_four','4758'),(167097,4767,'_section_five_section_five_icon_four','field_631ef51c912c7'),(167098,4767,'section_five_section_five_icon_text_four','

SLI - Service Level Indicator

'),(167099,4767,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(167103,4768,'top_title','Kubernetes Professional Services'),(167104,4768,'_top_title','field_6317168918e96'),(167105,4768,'top_description','CLOUD NATIVE SOLUTIONS'),(167106,4768,'_top_description','field_6317169e18e97'),(167107,4768,'section_one_section_one_breadcrumb','KCSP'),(167108,4768,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(167109,4768,'section_one_section_one_title','

Kubernetes Certified Service Provider

'),(167110,4768,'_section_one_section_one_title','field_6317172018e9a'),(167111,4768,'section_one_section_one_image','4725'),(167112,4768,'_section_one_section_one_image','field_63171ca018e9c'),(167113,4768,'section_one_section_one_content','

Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.
\r\nWe offer cost-effective consulting and implementation focused on your ROI.

'),(167114,4768,'_section_one_section_one_content','field_6317174118e9b'),(167115,4768,'section_one_section_one_navigation_one','Cloud Native Applications'),(167116,4768,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(167117,4768,'section_one_section_one_navigation_two','Cloud Native DevOps'),(167118,4768,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(167119,4768,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(167120,4768,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(167121,4768,'section_one_section_one_button_text','Book Consultation Now'),(167122,4768,'_section_one_section_one_button_text','field_63171dc918ea0'),(167123,4768,'section_one',''),(167124,4768,'_section_one','field_631716de18e98'),(167125,4768,'section_two_section_two_title','Our Services'),(167126,4768,'_section_two_section_two_title','field_63171e1457be9'),(167127,4768,'section_two_section_two_icon_one','4734'),(167128,4768,'_section_two_section_two_icon_one','field_63171e2c57bea'),(167129,4768,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(167130,4768,'_section_two_section_two_title_one','field_63171e5f57beb'),(167131,4768,'section_two_section_two_icon_two','4741'),(167132,4768,'_section_two_section_two_icon_two','field_63171e7357bec'),(167133,4768,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(167134,4768,'_section_two_section_two_title_two','field_63171ea157bee'),(167135,4768,'section_two_section_two_icon_three','4736'),(167136,4768,'_section_two_section_two_icon_three','field_63171e8557bed'),(167137,4768,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(167138,4768,'_section_two_section_two_title_three','field_63171ec257bef'),(167139,4768,'section_two_section_two_icon_four','4738'),(167140,4768,'_section_two_section_two_icon_four','field_63171ee257bf0'),(167141,4768,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(167142,4768,'_section_two_section_two_title_four','field_63171ef757bf1'),(167143,4768,'section_two_section_two_icon_five','4744'),(167144,4768,'_section_two_section_two_icon_five','field_63171f2857bf3'),(167145,4768,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(167146,4768,'_section_two_section_two_title_five','field_63171f3957bf4'),(167147,4768,'section_two_section_two_icon_six','4746'),(167148,4768,'_section_two_section_two_icon_six','field_63171f5057bf5'),(167149,4768,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(167150,4768,'_section_two_section_two_title_six','field_63171f6657bf6'),(167151,4768,'section_two_section_two_icon_seven','4748'),(167152,4768,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(167153,4768,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(167154,4768,'_section_two_section_two_title_seven','field_63171f9757bf8'),(167155,4768,'section_two_section_two_icon_eight','4750'),(167156,4768,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(167157,4768,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(167158,4768,'_section_two_section_two_title_eight','field_63171fc057bfa'),(167159,4768,'section_two',''),(167160,4768,'_section_two','field_63171dfb57be8'),(167161,4768,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(167162,4768,'_section_three_section_three_breadcrumb','field_631723036988b'),(167163,4768,'section_three_section_three_title','

Plan Your Next Kubernetes Project
\r\nwith Translucent

'),(167164,4768,'_section_three_section_three_title','field_631723176988c'),(167165,4768,'section_three_section_three_image','4727'),(167166,4768,'_section_three_section_three_image','field_631723ac6988e'),(167167,4768,'section_three_section_three_content','

Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.
\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.

'),(167168,4768,'_section_three_section_three_content','field_631723906988d'),(167169,4768,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(167170,4768,'_section_three_section_three_footer','field_631723c36988f'),(167171,4768,'section_three_section_three_button_text','Book Consultation Now'),(167172,4768,'_section_three_section_three_button_text','field_631723d769890'),(167173,4768,'section_three',''),(167174,4768,'_section_three','field_631722b96988a'),(167175,4768,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(167176,4768,'_section_four_section_four_breadcrumb','field_6317271523757'),(167177,4768,'section_four_section_four_title','

Driving Digital Transformation with Containers and Kubernetes

'),(167178,4768,'_section_four_section_four_title','field_6317271523758'),(167179,4768,'section_four_section_four_image','4730'),(167180,4768,'_section_four_section_four_image','field_6317271523759'),(167181,4768,'section_four_section_four_content','

Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.

'),(167182,4768,'_section_four_section_four_content','field_631727152375a'),(167183,4768,'section_four_section_four_footer','Build - Rebuild - Replatform'),(167184,4768,'_section_four_section_four_footer','field_631727152375b'),(167185,4768,'section_four',''),(167186,4768,'_section_four','field_6317271523756'),(167187,4768,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(167188,4768,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(167189,4768,'section_five_section_five_title','

24/7 support and maintenance
\r\nwith our site reliability engineering services

'),(167190,4768,'_section_five_section_five_title','field_631727bbd69dd'),(167191,4768,'section_five_section_five_image','4732'),(167192,4768,'_section_five_section_five_image','field_631727bbd69de'),(167193,4768,'section_five_section_five_content','

From knowledge transfer to support, the Translucent team is here with you every step of the way.
\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.

'),(167194,4768,'_section_five_section_five_content','field_631727bbd69df'),(167195,4768,'section_five_section_five_footer',''),(167196,4768,'_section_five_section_five_footer','field_631727bbd69e0'),(167197,4768,'section_five',''),(167198,4768,'_section_five','field_631727bbd69db'),(167199,4768,'footer_title','We treat your business like our own.'),(167200,4768,'_footer_title','field_631729e2753c6'),(167201,4768,'footer_button_text','Let\'s talk!'),(167202,4768,'_footer_button_text','field_63172a06753c7'),(167203,4768,'section_five_section_five_icon_one','4752'),(167204,4768,'_section_five_section_five_icon_one','field_631727bbd69e0'),(167205,4768,'section_five_section_five_icon_text_one','

SRE - Site Reliability Engineering

'),(167206,4768,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(167207,4768,'section_five_section_five_icon_two','4754'),(167208,4768,'_section_five_section_five_icon_two','field_631ef504912c5'),(167209,4768,'section_five_section_five_icon_text_two','

SLA - Service Level Agreements

'),(167210,4768,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(167211,4768,'section_five_section_five_icon_three','4756'),(167212,4768,'_section_five_section_five_icon_three','field_631ef510912c6'),(167213,4768,'section_five_section_five_icon_text_three','

SLO - Service Level Objectives

'),(167214,4768,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(167215,4768,'section_five_section_five_icon_four','4758'),(167216,4768,'_section_five_section_five_icon_four','field_631ef51c912c7'),(167217,4768,'section_five_section_five_icon_text_four','

SLI - Service Level Indicator

'),(167218,4768,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(167222,4769,'top-image',''),(167223,4769,'_top-image','field_5c488d805f5d4'),(167224,4769,'top_title',''),(167225,4769,'_top_title','field_5edfac92f4226'),(167226,4769,'top-text',''),(167227,4769,'_top-text','field_5c488e575f5d5'),(167228,4769,'features',''),(167229,4769,'_features','field_5c4890bc3ae1f'),(167230,4769,'about-title',''),(167231,4769,'_about-title','field_5c488e7a5f5d6'),(167232,4769,'about-text',''),(167233,4769,'_about-text','field_5c488e945f5d7'),(167234,4769,'problems',''),(167235,4769,'_problems','field_5c488ec75f5d8'),(167236,4769,'solutions',''),(167237,4769,'_solutions','field_5c488ed95f5d9'),(167238,4769,'difference',''),(167239,4769,'_difference','field_5c488eed5f5da'),(167240,4769,'panel',''),(167241,4769,'_panel','field_5c488f195f5db'),(167242,4769,'more-text',''),(167243,4769,'_more-text','field_5c488f8f5f5df'),(167244,4769,'phrase',''),(167245,4769,'_phrase','field_5c488faf5f5e0'),(167246,4769,'author',''),(167247,4769,'_author','field_5c488fba5f5e1'),(167248,4769,'top_description','Machine Learning'),(167249,4769,'_top_description','field_63170e008cc99'),(167250,4769,'top_background_desktop','4677'),(167251,4769,'_top_background_desktop','field_631eb1728b709'),(167252,4769,'top_background_mobile','4677'),(167253,4769,'_top_background_mobile','field_631eb1988b70a'),(167254,4769,'section_one_section_one_breadcrumb','THE FUTURE'),(167255,4769,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(167256,4769,'section_one_section_one_title','

How intelligent is your
\r\nbusiness?

'),(167257,4769,'_section_one_section_one_title','field_6316f2764091e'),(167258,4769,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(167259,4769,'_section_one_section_one_content','field_6316f2934091f'),(167260,4769,'section_one_section_one_image','4679'),(167261,4769,'_section_one_section_one_image','field_6316f2ab40920'),(167262,4769,'section_one_section_one_button_text','Book a consultation now'),(167263,4769,'_section_one_section_one_button_text','field_6316f2ca40921'),(167264,4769,'section_one',''),(167265,4769,'_section_one','field_6316f7ba1cd27'),(167266,4769,'section_two_section_two_button_text','Book a consultation now'),(167267,4769,'_section_two_section_two_button_text','field_6316fe1ff751b'),(167268,4769,'section_two_section_two_tab_one_header_title','Problems'),(167269,4769,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(167270,4769,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(167271,4769,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(167272,4769,'section_two_section_two_tab_one_image','4680'),(167273,4769,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(167274,4769,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(167275,4769,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(167276,4769,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(167277,4769,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(167278,4769,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(167279,4769,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(167280,4769,'section_two_section_two_tab_two_header_title','Solutions'),(167281,4769,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(167282,4769,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(167283,4769,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(167284,4769,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(167285,4769,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(167286,4769,'section_two_section_two_tab_two_content_icon_1','4683'),(167287,4769,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(167288,4769,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(167289,4769,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(167290,4769,'section_two_section_two_tab_two_content_icon_2','4684'),(167291,4769,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(167292,4769,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(167293,4769,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(167294,4769,'section_two_section_two_tab_two_content_icon_3','4685'),(167295,4769,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(167296,4769,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(167297,4769,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(167298,4769,'section_two_section_two_tab_two_content_icon_4','4686'),(167299,4769,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(167300,4769,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(167301,4769,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(167302,4769,'section_two_section_two_tab_three_header_title','Difference'),(167303,4769,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(167304,4769,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(167305,4769,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(167306,4769,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(167307,4769,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(167308,4769,'section_two_section_two_tab_three_image','4705'),(167309,4769,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(167310,4769,'section_two',''),(167311,4769,'_section_two','field_6316fa2531589'),(167312,4769,'section_three_section_three_title','Trusted Relationships'),(167313,4769,'_section_three_section_three_title','field_6316febdf751c'),(167314,4769,'section_three_section_three_one_icon','4687'),(167315,4769,'_section_three_section_three_one_icon','field_6316fefff751e'),(167316,4769,'section_three_section_three_one_title','Data Entry Automation'),(167317,4769,'_section_three_section_three_one_title','field_6316ff1cf751f'),(167318,4769,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(167319,4769,'_section_three_section_three_one_content','field_6316ff29f7520'),(167320,4769,'section_three_section_three_two_icon','4688'),(167321,4769,'_section_three_section_three_two_icon','field_6316ff77f7523'),(167322,4769,'section_three_section_three_two_title','Product Recommendation'),(167323,4769,'_section_three_section_three_two_title','field_6316ff90f7524'),(167324,4769,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(167325,4769,'_section_three_section_three_two_content','field_6316ff5df7522'),(167326,4769,'section_three_section_three_three_icon','4689'),(167327,4769,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(167328,4769,'section_three_section_three_three_title','Medical Diagnosis'),(167329,4769,'_section_three_section_three_three_title','field_6316fff5f7527'),(167330,4769,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(167331,4769,'_section_three_section_three_three_content','field_63170010f7528'),(167332,4769,'section_three_section_three_four_icon','4690'),(167333,4769,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(167334,4769,'section_three_section_three_four_title','Clients: Who is buying what'),(167335,4769,'_section_three_section_three_four_title','field_631707992b1ca'),(167336,4769,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(167337,4769,'_section_three_section_three_four_content','field_631707b42b1cb'),(167338,4769,'section_three_section_three_five_icon','4691'),(167339,4769,'_section_three_section_three_five_icon','field_631707e52b1cd'),(167340,4769,'section_three_section_three_five_title','User Behavior'),(167341,4769,'_section_three_section_three_five_title','field_631708002b1ce'),(167342,4769,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(167343,4769,'_section_three_section_three_five_content','field_6317081c2b1cf'),(167344,4769,'section_three_section_three_six_icon','4692'),(167345,4769,'_section_three_section_three_six_icon','field_631708572b1d1'),(167346,4769,'section_three_section_three_six_title','BI: Automated Reporting'),(167347,4769,'_section_three_section_three_six_title','field_631708712b1d2'),(167348,4769,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(167349,4769,'_section_three_section_three_six_content','field_6317088d2b1d3'),(167350,4769,'section_three_section_three_seven_icon','4693'),(167351,4769,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(167352,4769,'section_three_section_three_seven_title','Detecting Spam in Emails'),(167353,4769,'_section_three_section_three_seven_title','field_631708da2b1d6'),(167354,4769,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(167355,4769,'_section_three_section_three_seven_content','field_631708f62b1d7'),(167356,4769,'section_three_section_three_eight_icon','4694'),(167357,4769,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(167358,4769,'section_three_section_three_eight_title','Analytics'),(167359,4769,'_section_three_section_three_eight_title','field_631709462b1da'),(167360,4769,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(167361,4769,'_section_three_section_three_eight_content','field_6317095e2b1db'),(167362,4769,'section_three',''),(167363,4769,'_section_three','field_6316fcf4f751a'),(167364,4769,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(167365,4769,'_section_four_section_four_content','field_63170ac9aa9a2'),(167366,4769,'section_four_section_four_button_text','Book a consultation now'),(167367,4769,'_section_four_section_four_button_text','field_63170b08aa9a3'),(167368,4769,'section_four',''),(167369,4769,'_section_four','field_63170a81aa9a1'),(167370,4769,'section_five_section_five_title','We listen. We learn. We inform.'),(167371,4769,'_section_five_section_five_title','field_63170b8564fc2'),(167372,4769,'section_five_section_five_quote','76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.'),(167373,4769,'_section_five_section_five_quote','field_63170b9a64fc3'),(167374,4769,'section_five_section_five_footer','forbes.com'),(167375,4769,'_section_five_section_five_footer','field_63170bad64fc4'),(167376,4769,'section_five',''),(167377,4769,'_section_five','field_63170b5f64fc1'),(167378,4769,'footer_title','We treat your business like our own.'),(167379,4769,'_footer_title','field_63170f4c8cc9a'),(167380,4769,'footer_button_text','Let\'s talk!'),(167381,4769,'_footer_button_text','field_63170f6f8cc9b'),(167382,4769,'top_title_1','CLOUD NATIVE SOLUTIONS'),(167383,4769,'_top_title_1','field_631ed55492adc'),(167384,4769,'top_title_page','CLOUD NATIVE SOLUTIONS'),(167385,4769,'_top_title_page','field_631ed55492adc'),(167389,4770,'top-image',''),(167390,4770,'_top-image','field_5c488d805f5d4'),(167391,4770,'top_title',''),(167392,4770,'_top_title','field_5edfac92f4226'),(167393,4770,'top-text',''),(167394,4770,'_top-text','field_5c488e575f5d5'),(167395,4770,'features',''),(167396,4770,'_features','field_5c4890bc3ae1f'),(167397,4770,'about-title',''),(167398,4770,'_about-title','field_5c488e7a5f5d6'),(167399,4770,'about-text',''),(167400,4770,'_about-text','field_5c488e945f5d7'),(167401,4770,'problems',''),(167402,4770,'_problems','field_5c488ec75f5d8'),(167403,4770,'solutions',''),(167404,4770,'_solutions','field_5c488ed95f5d9'),(167405,4770,'difference',''),(167406,4770,'_difference','field_5c488eed5f5da'),(167407,4770,'panel',''),(167408,4770,'_panel','field_5c488f195f5db'),(167409,4770,'more-text',''),(167410,4770,'_more-text','field_5c488f8f5f5df'),(167411,4770,'phrase',''),(167412,4770,'_phrase','field_5c488faf5f5e0'),(167413,4770,'author',''),(167414,4770,'_author','field_5c488fba5f5e1'),(167415,4770,'top_description','Machine Learning'),(167416,4770,'_top_description','field_63170e008cc99'),(167417,4770,'top_background_desktop','4677'),(167418,4770,'_top_background_desktop','field_631eb1728b709'),(167419,4770,'top_background_mobile','4677'),(167420,4770,'_top_background_mobile','field_631eb1988b70a'),(167421,4770,'section_one_section_one_breadcrumb','THE FUTURE'),(167422,4770,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(167423,4770,'section_one_section_one_title','

How intelligent is your
\r\nbusiness?

'),(167424,4770,'_section_one_section_one_title','field_6316f2764091e'),(167425,4770,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(167426,4770,'_section_one_section_one_content','field_6316f2934091f'),(167427,4770,'section_one_section_one_image','4679'),(167428,4770,'_section_one_section_one_image','field_6316f2ab40920'),(167429,4770,'section_one_section_one_button_text','Book a consultation now'),(167430,4770,'_section_one_section_one_button_text','field_6316f2ca40921'),(167431,4770,'section_one',''),(167432,4770,'_section_one','field_6316f7ba1cd27'),(167433,4770,'section_two_section_two_button_text','Book a consultation now'),(167434,4770,'_section_two_section_two_button_text','field_6316fe1ff751b'),(167435,4770,'section_two_section_two_tab_one_header_title','Problems'),(167436,4770,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(167437,4770,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(167438,4770,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(167439,4770,'section_two_section_two_tab_one_image','4680'),(167440,4770,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(167441,4770,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(167442,4770,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(167443,4770,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(167444,4770,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(167445,4770,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(167446,4770,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(167447,4770,'section_two_section_two_tab_two_header_title','Solutions'),(167448,4770,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(167449,4770,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(167450,4770,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(167451,4770,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(167452,4770,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(167453,4770,'section_two_section_two_tab_two_content_icon_1','4683'),(167454,4770,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(167455,4770,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(167456,4770,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(167457,4770,'section_two_section_two_tab_two_content_icon_2','4684'),(167458,4770,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(167459,4770,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(167460,4770,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(167461,4770,'section_two_section_two_tab_two_content_icon_3','4685'),(167462,4770,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(167463,4770,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(167464,4770,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(167465,4770,'section_two_section_two_tab_two_content_icon_4','4686'),(167466,4770,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(167467,4770,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(167468,4770,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(167469,4770,'section_two_section_two_tab_three_header_title','Difference'),(167470,4770,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(167471,4770,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(167472,4770,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(167473,4770,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(167474,4770,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(167475,4770,'section_two_section_two_tab_three_image','4705'),(167476,4770,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(167477,4770,'section_two',''),(167478,4770,'_section_two','field_6316fa2531589'),(167479,4770,'section_three_section_three_title','Trusted Relationships'),(167480,4770,'_section_three_section_three_title','field_6316febdf751c'),(167481,4770,'section_three_section_three_one_icon','4687'),(167482,4770,'_section_three_section_three_one_icon','field_6316fefff751e'),(167483,4770,'section_three_section_three_one_title','Data Entry Automation'),(167484,4770,'_section_three_section_three_one_title','field_6316ff1cf751f'),(167485,4770,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(167486,4770,'_section_three_section_three_one_content','field_6316ff29f7520'),(167487,4770,'section_three_section_three_two_icon','4688'),(167488,4770,'_section_three_section_three_two_icon','field_6316ff77f7523'),(167489,4770,'section_three_section_three_two_title','Product Recommendation'),(167490,4770,'_section_three_section_three_two_title','field_6316ff90f7524'),(167491,4770,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(167492,4770,'_section_three_section_three_two_content','field_6316ff5df7522'),(167493,4770,'section_three_section_three_three_icon','4689'),(167494,4770,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(167495,4770,'section_three_section_three_three_title','Medical Diagnosis'),(167496,4770,'_section_three_section_three_three_title','field_6316fff5f7527'),(167497,4770,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(167498,4770,'_section_three_section_three_three_content','field_63170010f7528'),(167499,4770,'section_three_section_three_four_icon','4690'),(167500,4770,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(167501,4770,'section_three_section_three_four_title','Clients: Who is buying what'),(167502,4770,'_section_three_section_three_four_title','field_631707992b1ca'),(167503,4770,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(167504,4770,'_section_three_section_three_four_content','field_631707b42b1cb'),(167505,4770,'section_three_section_three_five_icon','4691'),(167506,4770,'_section_three_section_three_five_icon','field_631707e52b1cd'),(167507,4770,'section_three_section_three_five_title','User Behavior'),(167508,4770,'_section_three_section_three_five_title','field_631708002b1ce'),(167509,4770,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(167510,4770,'_section_three_section_three_five_content','field_6317081c2b1cf'),(167511,4770,'section_three_section_three_six_icon','4692'),(167512,4770,'_section_three_section_three_six_icon','field_631708572b1d1'),(167513,4770,'section_three_section_three_six_title','BI: Automated Reporting'),(167514,4770,'_section_three_section_three_six_title','field_631708712b1d2'),(167515,4770,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(167516,4770,'_section_three_section_three_six_content','field_6317088d2b1d3'),(167517,4770,'section_three_section_three_seven_icon','4693'),(167518,4770,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(167519,4770,'section_three_section_three_seven_title','Detecting Spam in Emails'),(167520,4770,'_section_three_section_three_seven_title','field_631708da2b1d6'),(167521,4770,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(167522,4770,'_section_three_section_three_seven_content','field_631708f62b1d7'),(167523,4770,'section_three_section_three_eight_icon','4694'),(167524,4770,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(167525,4770,'section_three_section_three_eight_title','Analytics'),(167526,4770,'_section_three_section_three_eight_title','field_631709462b1da'),(167527,4770,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(167528,4770,'_section_three_section_three_eight_content','field_6317095e2b1db'),(167529,4770,'section_three',''),(167530,4770,'_section_three','field_6316fcf4f751a'),(167531,4770,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(167532,4770,'_section_four_section_four_content','field_63170ac9aa9a2'),(167533,4770,'section_four_section_four_button_text','Book a consultation now'),(167534,4770,'_section_four_section_four_button_text','field_63170b08aa9a3'),(167535,4770,'section_four',''),(167536,4770,'_section_four','field_63170a81aa9a1'),(167537,4770,'section_five_section_five_title','We listen. We learn. We inform.'),(167538,4770,'_section_five_section_five_title','field_63170b8564fc2'),(167539,4770,'section_five_section_five_quote','76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.'),(167540,4770,'_section_five_section_five_quote','field_63170b9a64fc3'),(167541,4770,'section_five_section_five_footer','forbes.com'),(167542,4770,'_section_five_section_five_footer','field_63170bad64fc4'),(167543,4770,'section_five',''),(167544,4770,'_section_five','field_63170b5f64fc1'),(167545,4770,'footer_title','We treat your business like our own.'),(167546,4770,'_footer_title','field_63170f4c8cc9a'),(167547,4770,'footer_button_text','Let\'s talk!'),(167548,4770,'_footer_button_text','field_63170f6f8cc9b'),(167549,4770,'top_title_1','CLOUD NATIVE SOLUTIONS'),(167550,4770,'_top_title_1','field_631ed55492adc'),(167551,4770,'top_title_page','CLOUD NATIVE SOLUTIONS'),(167552,4770,'_top_title_page','field_631ed55492adc'),(167556,4771,'top_title','Kubernetes Professional Services'),(167557,4771,'_top_title','field_6317168918e96'),(167558,4771,'top_description','CLOUD NATIVE SOLUTIONS'),(167559,4771,'_top_description','field_6317169e18e97'),(167560,4771,'section_one_section_one_breadcrumb','KCSP'),(167561,4771,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(167562,4771,'section_one_section_one_title','

Kubernetes Certified Service Provider

'),(167563,4771,'_section_one_section_one_title','field_6317172018e9a'),(167564,4771,'section_one_section_one_image','4725'),(167565,4771,'_section_one_section_one_image','field_63171ca018e9c'),(167566,4771,'section_one_section_one_content','

Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud.
\r\nWe offer cost-effective consulting and implementation focused on your ROI.

'),(167567,4771,'_section_one_section_one_content','field_6317174118e9b'),(167568,4771,'section_one_section_one_navigation_one','Cloud Native Applications'),(167569,4771,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(167570,4771,'section_one_section_one_navigation_two','Cloud Native DevOps'),(167571,4771,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(167572,4771,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(167573,4771,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(167574,4771,'section_one_section_one_button_text','Book Consultation Now'),(167575,4771,'_section_one_section_one_button_text','field_63171dc918ea0'),(167576,4771,'section_one',''),(167577,4771,'_section_one','field_631716de18e98'),(167578,4771,'section_two_section_two_title','Our Services'),(167579,4771,'_section_two_section_two_title','field_63171e1457be9'),(167580,4771,'section_two_section_two_icon_one','4734'),(167581,4771,'_section_two_section_two_icon_one','field_63171e2c57bea'),(167582,4771,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(167583,4771,'_section_two_section_two_title_one','field_63171e5f57beb'),(167584,4771,'section_two_section_two_icon_two','4741'),(167585,4771,'_section_two_section_two_icon_two','field_63171e7357bec'),(167586,4771,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(167587,4771,'_section_two_section_two_title_two','field_63171ea157bee'),(167588,4771,'section_two_section_two_icon_three','4736'),(167589,4771,'_section_two_section_two_icon_three','field_63171e8557bed'),(167590,4771,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(167591,4771,'_section_two_section_two_title_three','field_63171ec257bef'),(167592,4771,'section_two_section_two_icon_four','4738'),(167593,4771,'_section_two_section_two_icon_four','field_63171ee257bf0'),(167594,4771,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(167595,4771,'_section_two_section_two_title_four','field_63171ef757bf1'),(167596,4771,'section_two_section_two_icon_five','4744'),(167597,4771,'_section_two_section_two_icon_five','field_63171f2857bf3'),(167598,4771,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(167599,4771,'_section_two_section_two_title_five','field_63171f3957bf4'),(167600,4771,'section_two_section_two_icon_six','4746'),(167601,4771,'_section_two_section_two_icon_six','field_63171f5057bf5'),(167602,4771,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(167603,4771,'_section_two_section_two_title_six','field_63171f6657bf6'),(167604,4771,'section_two_section_two_icon_seven','4748'),(167605,4771,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(167606,4771,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(167607,4771,'_section_two_section_two_title_seven','field_63171f9757bf8'),(167608,4771,'section_two_section_two_icon_eight','4750'),(167609,4771,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(167610,4771,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(167611,4771,'_section_two_section_two_title_eight','field_63171fc057bfa'),(167612,4771,'section_two',''),(167613,4771,'_section_two','field_63171dfb57be8'),(167614,4771,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(167615,4771,'_section_three_section_three_breadcrumb','field_631723036988b'),(167616,4771,'section_three_section_three_title','

Plan Your Next Kubernetes Project
\r\nwith Translucent

'),(167617,4771,'_section_three_section_three_title','field_631723176988c'),(167618,4771,'section_three_section_three_image','4727'),(167619,4771,'_section_three_section_three_image','field_631723ac6988e'),(167620,4771,'section_three_section_three_content','

Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.
\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.

'),(167621,4771,'_section_three_section_three_content','field_631723906988d'),(167622,4771,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(167623,4771,'_section_three_section_three_footer','field_631723c36988f'),(167624,4771,'section_three_section_three_button_text','Book Consultation Now'),(167625,4771,'_section_three_section_three_button_text','field_631723d769890'),(167626,4771,'section_three',''),(167627,4771,'_section_three','field_631722b96988a'),(167628,4771,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(167629,4771,'_section_four_section_four_breadcrumb','field_6317271523757'),(167630,4771,'section_four_section_four_title','

Driving Digital Transformation with Containers and Kubernetes

'),(167631,4771,'_section_four_section_four_title','field_6317271523758'),(167632,4771,'section_four_section_four_image','4730'),(167633,4771,'_section_four_section_four_image','field_6317271523759'),(167634,4771,'section_four_section_four_content','

Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.

'),(167635,4771,'_section_four_section_four_content','field_631727152375a'),(167636,4771,'section_four_section_four_footer','Build - Rebuild - Replatform'),(167637,4771,'_section_four_section_four_footer','field_631727152375b'),(167638,4771,'section_four',''),(167639,4771,'_section_four','field_6317271523756'),(167640,4771,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(167641,4771,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(167642,4771,'section_five_section_five_title','

24/7 support and maintenance
\r\nwith our site reliability engineering services

'),(167643,4771,'_section_five_section_five_title','field_631727bbd69dd'),(167644,4771,'section_five_section_five_image','4732'),(167645,4771,'_section_five_section_five_image','field_631727bbd69de'),(167646,4771,'section_five_section_five_content','

From knowledge transfer to support, the Translucent team is here with you every step of the way.
\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.

'),(167647,4771,'_section_five_section_five_content','field_631727bbd69df'),(167648,4771,'section_five_section_five_footer',''),(167649,4771,'_section_five_section_five_footer','field_631727bbd69e0'),(167650,4771,'section_five',''),(167651,4771,'_section_five','field_631727bbd69db'),(167652,4771,'footer_title','We treat your business like our own.'),(167653,4771,'_footer_title','field_631729e2753c6'),(167654,4771,'footer_button_text','Let\'s talk!'),(167655,4771,'_footer_button_text','field_63172a06753c7'),(167656,4771,'section_five_section_five_icon_one','4752'),(167657,4771,'_section_five_section_five_icon_one','field_631727bbd69e0'),(167658,4771,'section_five_section_five_icon_text_one','

SRE - Site Reliability Engineering

'),(167659,4771,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(167660,4771,'section_five_section_five_icon_two','4754'),(167661,4771,'_section_five_section_five_icon_two','field_631ef504912c5'),(167662,4771,'section_five_section_five_icon_text_two','

SLA - Service Level Agreements

'),(167663,4771,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(167664,4771,'section_five_section_five_icon_three','4756'),(167665,4771,'_section_five_section_five_icon_three','field_631ef510912c6'); INSERT INTO `wp_postmeta` VALUES (167666,4771,'section_five_section_five_icon_text_three','

SLO - Service Level Objectives

'),(167667,4771,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(167668,4771,'section_five_section_five_icon_four','4758'),(167669,4771,'_section_five_section_five_icon_four','field_631ef51c912c7'),(167670,4771,'section_five_section_five_icon_text_four','

SLI - Service Level Indicator

'),(167671,4771,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(167675,4772,'top_title','Kubernetes Professional Services'),(167676,4772,'_top_title','field_6317168918e96'),(167677,4772,'top_description','CLOUD NATIVE SOLUTIONS'),(167678,4772,'_top_description','field_6317169e18e97'),(167679,4772,'section_one_section_one_breadcrumb','KCSP'),(167680,4772,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(167681,4772,'section_one_section_one_title','

Kubernetes Certified Service Provider

'),(167682,4772,'_section_one_section_one_title','field_6317172018e9a'),(167683,4772,'section_one_section_one_image','4725'),(167684,4772,'_section_one_section_one_image','field_63171ca018e9c'),(167685,4772,'section_one_section_one_content','

Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.

'),(167686,4772,'_section_one_section_one_content','field_6317174118e9b'),(167687,4772,'section_one_section_one_navigation_one','Cloud Native Applications'),(167688,4772,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(167689,4772,'section_one_section_one_navigation_two','Cloud Native DevOps'),(167690,4772,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(167691,4772,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(167692,4772,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(167693,4772,'section_one_section_one_button_text','Book Consultation Now'),(167694,4772,'_section_one_section_one_button_text','field_63171dc918ea0'),(167695,4772,'section_one',''),(167696,4772,'_section_one','field_631716de18e98'),(167697,4772,'section_two_section_two_title','Our Services'),(167698,4772,'_section_two_section_two_title','field_63171e1457be9'),(167699,4772,'section_two_section_two_icon_one','4734'),(167700,4772,'_section_two_section_two_icon_one','field_63171e2c57bea'),(167701,4772,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(167702,4772,'_section_two_section_two_title_one','field_63171e5f57beb'),(167703,4772,'section_two_section_two_icon_two','4741'),(167704,4772,'_section_two_section_two_icon_two','field_63171e7357bec'),(167705,4772,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(167706,4772,'_section_two_section_two_title_two','field_63171ea157bee'),(167707,4772,'section_two_section_two_icon_three','4736'),(167708,4772,'_section_two_section_two_icon_three','field_63171e8557bed'),(167709,4772,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(167710,4772,'_section_two_section_two_title_three','field_63171ec257bef'),(167711,4772,'section_two_section_two_icon_four','4738'),(167712,4772,'_section_two_section_two_icon_four','field_63171ee257bf0'),(167713,4772,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(167714,4772,'_section_two_section_two_title_four','field_63171ef757bf1'),(167715,4772,'section_two_section_two_icon_five','4744'),(167716,4772,'_section_two_section_two_icon_five','field_63171f2857bf3'),(167717,4772,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(167718,4772,'_section_two_section_two_title_five','field_63171f3957bf4'),(167719,4772,'section_two_section_two_icon_six','4746'),(167720,4772,'_section_two_section_two_icon_six','field_63171f5057bf5'),(167721,4772,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(167722,4772,'_section_two_section_two_title_six','field_63171f6657bf6'),(167723,4772,'section_two_section_two_icon_seven','4748'),(167724,4772,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(167725,4772,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(167726,4772,'_section_two_section_two_title_seven','field_63171f9757bf8'),(167727,4772,'section_two_section_two_icon_eight','4750'),(167728,4772,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(167729,4772,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(167730,4772,'_section_two_section_two_title_eight','field_63171fc057bfa'),(167731,4772,'section_two',''),(167732,4772,'_section_two','field_63171dfb57be8'),(167733,4772,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(167734,4772,'_section_three_section_three_breadcrumb','field_631723036988b'),(167735,4772,'section_three_section_three_title','

Plan Your Next Kubernetes Project
\r\nwith Translucent

'),(167736,4772,'_section_three_section_three_title','field_631723176988c'),(167737,4772,'section_three_section_three_image','4727'),(167738,4772,'_section_three_section_three_image','field_631723ac6988e'),(167739,4772,'section_three_section_three_content','

Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements.
\r\nThere are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.

'),(167740,4772,'_section_three_section_three_content','field_631723906988d'),(167741,4772,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(167742,4772,'_section_three_section_three_footer','field_631723c36988f'),(167743,4772,'section_three_section_three_button_text','Book Consultation Now'),(167744,4772,'_section_three_section_three_button_text','field_631723d769890'),(167745,4772,'section_three',''),(167746,4772,'_section_three','field_631722b96988a'),(167747,4772,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(167748,4772,'_section_four_section_four_breadcrumb','field_6317271523757'),(167749,4772,'section_four_section_four_title','

Driving Digital Transformation with Containers and Kubernetes

'),(167750,4772,'_section_four_section_four_title','field_6317271523758'),(167751,4772,'section_four_section_four_image','4730'),(167752,4772,'_section_four_section_four_image','field_6317271523759'),(167753,4772,'section_four_section_four_content','

Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.

'),(167754,4772,'_section_four_section_four_content','field_631727152375a'),(167755,4772,'section_four_section_four_footer','Build - Rebuild - Replatform'),(167756,4772,'_section_four_section_four_footer','field_631727152375b'),(167757,4772,'section_four',''),(167758,4772,'_section_four','field_6317271523756'),(167759,4772,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(167760,4772,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(167761,4772,'section_five_section_five_title','

24/7 support and maintenance
\r\nwith our site reliability engineering services

'),(167762,4772,'_section_five_section_five_title','field_631727bbd69dd'),(167763,4772,'section_five_section_five_image','4732'),(167764,4772,'_section_five_section_five_image','field_631727bbd69de'),(167765,4772,'section_five_section_five_content','

From knowledge transfer to support, the Translucent team is here with you every step of the way.
\r\nWe use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.

'),(167766,4772,'_section_five_section_five_content','field_631727bbd69df'),(167767,4772,'section_five_section_five_footer',''),(167768,4772,'_section_five_section_five_footer','field_631727bbd69e0'),(167769,4772,'section_five',''),(167770,4772,'_section_five','field_631727bbd69db'),(167771,4772,'footer_title','We treat your business like our own.'),(167772,4772,'_footer_title','field_631729e2753c6'),(167773,4772,'footer_button_text','Let\'s talk!'),(167774,4772,'_footer_button_text','field_63172a06753c7'),(167775,4772,'section_five_section_five_icon_one','4752'),(167776,4772,'_section_five_section_five_icon_one','field_631727bbd69e0'),(167777,4772,'section_five_section_five_icon_text_one','

SRE - Site Reliability Engineering

'),(167778,4772,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(167779,4772,'section_five_section_five_icon_two','4754'),(167780,4772,'_section_five_section_five_icon_two','field_631ef504912c5'),(167781,4772,'section_five_section_five_icon_text_two','

SLA - Service Level Agreements

'),(167782,4772,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(167783,4772,'section_five_section_five_icon_three','4756'),(167784,4772,'_section_five_section_five_icon_three','field_631ef510912c6'),(167785,4772,'section_five_section_five_icon_text_three','

SLO - Service Level Objectives

'),(167786,4772,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(167787,4772,'section_five_section_five_icon_four','4758'),(167788,4772,'_section_five_section_five_icon_four','field_631ef51c912c7'),(167789,4772,'section_five_section_five_icon_text_four','

SLI - Service Level Indicator

'),(167790,4772,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(167794,4773,'top_title','Kubernetes Professional Services'),(167795,4773,'_top_title','field_6317168918e96'),(167796,4773,'top_description','CLOUD NATIVE SOLUTIONS'),(167797,4773,'_top_description','field_6317169e18e97'),(167798,4773,'section_one_section_one_breadcrumb','KCSP'),(167799,4773,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(167800,4773,'section_one_section_one_title','

Kubernetes Certified Service Provider

'),(167801,4773,'_section_one_section_one_title','field_6317172018e9a'),(167802,4773,'section_one_section_one_image','4725'),(167803,4773,'_section_one_section_one_image','field_63171ca018e9c'),(167804,4773,'section_one_section_one_content','

Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.

'),(167805,4773,'_section_one_section_one_content','field_6317174118e9b'),(167806,4773,'section_one_section_one_navigation_one','Cloud Native Applications'),(167807,4773,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(167808,4773,'section_one_section_one_navigation_two','Cloud Native DevOps'),(167809,4773,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(167810,4773,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(167811,4773,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(167812,4773,'section_one_section_one_button_text','Book Consultation Now'),(167813,4773,'_section_one_section_one_button_text','field_63171dc918ea0'),(167814,4773,'section_one',''),(167815,4773,'_section_one','field_631716de18e98'),(167816,4773,'section_two_section_two_title','Our Services'),(167817,4773,'_section_two_section_two_title','field_63171e1457be9'),(167818,4773,'section_two_section_two_icon_one','4734'),(167819,4773,'_section_two_section_two_icon_one','field_63171e2c57bea'),(167820,4773,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(167821,4773,'_section_two_section_two_title_one','field_63171e5f57beb'),(167822,4773,'section_two_section_two_icon_two','4741'),(167823,4773,'_section_two_section_two_icon_two','field_63171e7357bec'),(167824,4773,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(167825,4773,'_section_two_section_two_title_two','field_63171ea157bee'),(167826,4773,'section_two_section_two_icon_three','4736'),(167827,4773,'_section_two_section_two_icon_three','field_63171e8557bed'),(167828,4773,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(167829,4773,'_section_two_section_two_title_three','field_63171ec257bef'),(167830,4773,'section_two_section_two_icon_four','4738'),(167831,4773,'_section_two_section_two_icon_four','field_63171ee257bf0'),(167832,4773,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(167833,4773,'_section_two_section_two_title_four','field_63171ef757bf1'),(167834,4773,'section_two_section_two_icon_five','4744'),(167835,4773,'_section_two_section_two_icon_five','field_63171f2857bf3'),(167836,4773,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(167837,4773,'_section_two_section_two_title_five','field_63171f3957bf4'),(167838,4773,'section_two_section_two_icon_six','4746'),(167839,4773,'_section_two_section_two_icon_six','field_63171f5057bf5'),(167840,4773,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(167841,4773,'_section_two_section_two_title_six','field_63171f6657bf6'),(167842,4773,'section_two_section_two_icon_seven','4748'),(167843,4773,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(167844,4773,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(167845,4773,'_section_two_section_two_title_seven','field_63171f9757bf8'),(167846,4773,'section_two_section_two_icon_eight','4750'),(167847,4773,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(167848,4773,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(167849,4773,'_section_two_section_two_title_eight','field_63171fc057bfa'),(167850,4773,'section_two',''),(167851,4773,'_section_two','field_63171dfb57be8'),(167852,4773,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(167853,4773,'_section_three_section_three_breadcrumb','field_631723036988b'),(167854,4773,'section_three_section_three_title','

Plan Your Next Kubernetes Project
\r\nwith Translucent

'),(167855,4773,'_section_three_section_three_title','field_631723176988c'),(167856,4773,'section_three_section_three_image','4727'),(167857,4773,'_section_three_section_three_image','field_631723ac6988e'),(167858,4773,'section_three_section_three_content','

Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.

'),(167859,4773,'_section_three_section_three_content','field_631723906988d'),(167860,4773,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(167861,4773,'_section_three_section_three_footer','field_631723c36988f'),(167862,4773,'section_three_section_three_button_text','Book Consultation Now'),(167863,4773,'_section_three_section_three_button_text','field_631723d769890'),(167864,4773,'section_three',''),(167865,4773,'_section_three','field_631722b96988a'),(167866,4773,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(167867,4773,'_section_four_section_four_breadcrumb','field_6317271523757'),(167868,4773,'section_four_section_four_title','

Driving Digital Transformation with Containers and Kubernetes

'),(167869,4773,'_section_four_section_four_title','field_6317271523758'),(167870,4773,'section_four_section_four_image','4730'),(167871,4773,'_section_four_section_four_image','field_6317271523759'),(167872,4773,'section_four_section_four_content','

Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.

'),(167873,4773,'_section_four_section_four_content','field_631727152375a'),(167874,4773,'section_four_section_four_footer','Build - Rebuild - Replatform'),(167875,4773,'_section_four_section_four_footer','field_631727152375b'),(167876,4773,'section_four',''),(167877,4773,'_section_four','field_6317271523756'),(167878,4773,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(167879,4773,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(167880,4773,'section_five_section_five_title','

24/7 support and maintenance
\r\nwith our site reliability engineering services

'),(167881,4773,'_section_five_section_five_title','field_631727bbd69dd'),(167882,4773,'section_five_section_five_image','4732'),(167883,4773,'_section_five_section_five_image','field_631727bbd69de'),(167884,4773,'section_five_section_five_content','

From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.

'),(167885,4773,'_section_five_section_five_content','field_631727bbd69df'),(167886,4773,'section_five_section_five_footer',''),(167887,4773,'_section_five_section_five_footer','field_631727bbd69e0'),(167888,4773,'section_five',''),(167889,4773,'_section_five','field_631727bbd69db'),(167890,4773,'footer_title','We treat your business like our own.'),(167891,4773,'_footer_title','field_631729e2753c6'),(167892,4773,'footer_button_text','Let\'s talk!'),(167893,4773,'_footer_button_text','field_63172a06753c7'),(167894,4773,'section_five_section_five_icon_one','4752'),(167895,4773,'_section_five_section_five_icon_one','field_631727bbd69e0'),(167896,4773,'section_five_section_five_icon_text_one','

SRE - Site Reliability Engineering

'),(167897,4773,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(167898,4773,'section_five_section_five_icon_two','4754'),(167899,4773,'_section_five_section_five_icon_two','field_631ef504912c5'),(167900,4773,'section_five_section_five_icon_text_two','

SLA - Service Level Agreements

'),(167901,4773,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(167902,4773,'section_five_section_five_icon_three','4756'),(167903,4773,'_section_five_section_five_icon_three','field_631ef510912c6'),(167904,4773,'section_five_section_five_icon_text_three','

SLO - Service Level Objectives

'),(167905,4773,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(167906,4773,'section_five_section_five_icon_four','4758'),(167907,4773,'_section_five_section_five_icon_four','field_631ef51c912c7'),(167908,4773,'section_five_section_five_icon_text_four','

SLI - Service Level Indicator

'),(167909,4773,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(167913,4774,'top_title','Kubernetes Professional Services'),(167914,4774,'_top_title','field_6317168918e96'),(167915,4774,'top_description','CLOUD NATIVE SOLUTIONS'),(167916,4774,'_top_description','field_6317169e18e97'),(167917,4774,'section_one_section_one_breadcrumb','KCSP'),(167918,4774,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(167919,4774,'section_one_section_one_title','

Kubernetes Certified Service Provider

'),(167920,4774,'_section_one_section_one_title','field_6317172018e9a'),(167921,4774,'section_one_section_one_image','4725'),(167922,4774,'_section_one_section_one_image','field_63171ca018e9c'),(167923,4774,'section_one_section_one_content','

Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.

\r\n
\r\n
 
\r\n
'),(167924,4774,'_section_one_section_one_content','field_6317174118e9b'),(167925,4774,'section_one_section_one_navigation_one','Cloud Native Applications'),(167926,4774,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(167927,4774,'section_one_section_one_navigation_two','Cloud Native DevOps'),(167928,4774,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(167929,4774,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(167930,4774,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(167931,4774,'section_one_section_one_button_text','Book Consultation Now'),(167932,4774,'_section_one_section_one_button_text','field_63171dc918ea0'),(167933,4774,'section_one',''),(167934,4774,'_section_one','field_631716de18e98'),(167935,4774,'section_two_section_two_title','Our Services'),(167936,4774,'_section_two_section_two_title','field_63171e1457be9'),(167937,4774,'section_two_section_two_icon_one','4734'),(167938,4774,'_section_two_section_two_icon_one','field_63171e2c57bea'),(167939,4774,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(167940,4774,'_section_two_section_two_title_one','field_63171e5f57beb'),(167941,4774,'section_two_section_two_icon_two','4741'),(167942,4774,'_section_two_section_two_icon_two','field_63171e7357bec'),(167943,4774,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(167944,4774,'_section_two_section_two_title_two','field_63171ea157bee'),(167945,4774,'section_two_section_two_icon_three','4736'),(167946,4774,'_section_two_section_two_icon_three','field_63171e8557bed'),(167947,4774,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(167948,4774,'_section_two_section_two_title_three','field_63171ec257bef'),(167949,4774,'section_two_section_two_icon_four','4738'),(167950,4774,'_section_two_section_two_icon_four','field_63171ee257bf0'),(167951,4774,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(167952,4774,'_section_two_section_two_title_four','field_63171ef757bf1'),(167953,4774,'section_two_section_two_icon_five','4744'),(167954,4774,'_section_two_section_two_icon_five','field_63171f2857bf3'),(167955,4774,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(167956,4774,'_section_two_section_two_title_five','field_63171f3957bf4'),(167957,4774,'section_two_section_two_icon_six','4746'),(167958,4774,'_section_two_section_two_icon_six','field_63171f5057bf5'),(167959,4774,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(167960,4774,'_section_two_section_two_title_six','field_63171f6657bf6'),(167961,4774,'section_two_section_two_icon_seven','4748'),(167962,4774,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(167963,4774,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(167964,4774,'_section_two_section_two_title_seven','field_63171f9757bf8'),(167965,4774,'section_two_section_two_icon_eight','4750'),(167966,4774,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(167967,4774,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(167968,4774,'_section_two_section_two_title_eight','field_63171fc057bfa'),(167969,4774,'section_two',''),(167970,4774,'_section_two','field_63171dfb57be8'),(167971,4774,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(167972,4774,'_section_three_section_three_breadcrumb','field_631723036988b'),(167973,4774,'section_three_section_three_title','

Plan Your Next Kubernetes Project
\r\nwith Translucent

'),(167974,4774,'_section_three_section_three_title','field_631723176988c'),(167975,4774,'section_three_section_three_image','4727'),(167976,4774,'_section_three_section_three_image','field_631723ac6988e'),(167977,4774,'section_three_section_three_content','

Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.

\r\n
\r\n
 
\r\n
'),(167978,4774,'_section_three_section_three_content','field_631723906988d'),(167979,4774,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(167980,4774,'_section_three_section_three_footer','field_631723c36988f'),(167981,4774,'section_three_section_three_button_text','Book Consultation Now'),(167982,4774,'_section_three_section_three_button_text','field_631723d769890'),(167983,4774,'section_three',''),(167984,4774,'_section_three','field_631722b96988a'),(167985,4774,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(167986,4774,'_section_four_section_four_breadcrumb','field_6317271523757'),(167987,4774,'section_four_section_four_title','

Driving Digital Transformation with Containers and Kubernetes

'),(167988,4774,'_section_four_section_four_title','field_6317271523758'),(167989,4774,'section_four_section_four_image','4730'),(167990,4774,'_section_four_section_four_image','field_6317271523759'),(167991,4774,'section_four_section_four_content','

Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.

\r\n
\r\n
 
\r\n
'),(167992,4774,'_section_four_section_four_content','field_631727152375a'),(167993,4774,'section_four_section_four_footer','Build - Rebuild - Replatform'),(167994,4774,'_section_four_section_four_footer','field_631727152375b'),(167995,4774,'section_four',''),(167996,4774,'_section_four','field_6317271523756'),(167997,4774,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(167998,4774,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(167999,4774,'section_five_section_five_title','

24/7 support and maintenance
\r\nwith our site reliability engineering services

'),(168000,4774,'_section_five_section_five_title','field_631727bbd69dd'),(168001,4774,'section_five_section_five_image','4732'),(168002,4774,'_section_five_section_five_image','field_631727bbd69de'),(168003,4774,'section_five_section_five_content','

From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.

'),(168004,4774,'_section_five_section_five_content','field_631727bbd69df'),(168005,4774,'section_five_section_five_footer',''),(168006,4774,'_section_five_section_five_footer','field_631727bbd69e0'),(168007,4774,'section_five',''),(168008,4774,'_section_five','field_631727bbd69db'),(168009,4774,'footer_title','We treat your business like our own.'),(168010,4774,'_footer_title','field_631729e2753c6'),(168011,4774,'footer_button_text','Let\'s talk!'),(168012,4774,'_footer_button_text','field_63172a06753c7'),(168013,4774,'section_five_section_five_icon_one','4752'),(168014,4774,'_section_five_section_five_icon_one','field_631727bbd69e0'),(168015,4774,'section_five_section_five_icon_text_one','

SRE - Site Reliability Engineering

'),(168016,4774,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(168017,4774,'section_five_section_five_icon_two','4754'),(168018,4774,'_section_five_section_five_icon_two','field_631ef504912c5'),(168019,4774,'section_five_section_five_icon_text_two','

SLA - Service Level Agreements

'),(168020,4774,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(168021,4774,'section_five_section_five_icon_three','4756'),(168022,4774,'_section_five_section_five_icon_three','field_631ef510912c6'),(168023,4774,'section_five_section_five_icon_text_three','

SLO - Service Level Objectives

'),(168024,4774,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(168025,4774,'section_five_section_five_icon_four','4758'),(168026,4774,'_section_five_section_five_icon_four','field_631ef51c912c7'),(168027,4774,'section_five_section_five_icon_text_four','

SLI - Service Level Indicator

'),(168028,4774,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(168032,4775,'_wp_attached_file','2022/09/kubernetes_certified_icon.png'),(168033,4775,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:387;s:6:\"height\";i:423;s:4:\"file\";s:37:\"2022/09/kubernetes_certified_icon.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"kubernetes_certified_icon-274x300.png\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"kubernetes_certified_icon-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:{}}}'),(168034,4775,'_imagify_optimization_level','2'),(168035,4775,'_imagify_status','success'),(168036,4775,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:95096;s:14:\"optimized_size\";i:27669;s:7:\"percent\";d:70.9;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21379;s:14:\"optimized_size\";i:8342;s:7:\"percent\";d:60.98;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52587;s:14:\"optimized_size\";i:19022;s:7:\"percent\";d:63.83;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:95096;s:14:\"optimized_size\";i:27888;s:7:\"percent\";d:70.67;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52587;s:14:\"optimized_size\";i:19468;s:7:\"percent\";d:62.98;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21379;s:14:\"optimized_size\";i:5137;s:7:\"percent\";d:75.97;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:338124;s:14:\"optimized_size\";i:107526;s:7:\"percent\";d:68.2;}}'),(168037,4776,'_wp_attached_file','2022/09/kubernetes_and_conteiners_2.png'),(168038,4776,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:505;s:6:\"height\";i:407;s:4:\"file\";s:39:\"2022/09/kubernetes_and_conteiners_2.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"kubernetes_and_conteiners_2-300x242.png\";s:5:\"width\";i:300;s:6:\"height\";i:242;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"kubernetes_and_conteiners_2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:39:\"kubernetes_and_conteiners_2-500x407.png\";s:5:\"width\";i:500;s:6:\"height\";i:407;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:{}}}'),(168039,4776,'_imagify_optimization_level','2'),(168040,4776,'_imagify_status','success'),(168041,4776,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:219323;s:14:\"optimized_size\";i:56476;s:7:\"percent\";d:74.25;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:172205;s:14:\"optimized_size\";i:51780;s:7:\"percent\";d:69.93;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31714;s:14:\"optimized_size\";i:10268;s:7:\"percent\";d:67.62;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:74298;s:14:\"optimized_size\";i:23332;s:7:\"percent\";d:68.6;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:219323;s:14:\"optimized_size\";i:56012;s:7:\"percent\";d:74.46;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:74298;s:14:\"optimized_size\";i:24336;s:7:\"percent\";d:67.25;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31714;s:14:\"optimized_size\";i:10366;s:7:\"percent\";d:67.31;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:172205;s:14:\"optimized_size\";i:55603;s:7:\"percent\";d:67.71;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:995080;s:14:\"optimized_size\";i:288173;s:7:\"percent\";d:71.04;}}'),(168042,4777,'_wp_attached_file','2022/09/24-7_2.png'),(168043,4777,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:424;s:6:\"height\";i:369;s:4:\"file\";s:18:\"2022/09/24-7_2.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"24-7_2-300x261.png\";s:5:\"width\";i:300;s:6:\"height\";i:261;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"24-7_2-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:{}}}'),(168044,4778,'top_title','Kubernetes Professional Services'),(168045,4778,'_top_title','field_6317168918e96'),(168046,4778,'top_description','CLOUD NATIVE SOLUTIONS'),(168047,4778,'_top_description','field_6317169e18e97'),(168048,4778,'section_one_section_one_breadcrumb','KCSP'),(168049,4778,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(168050,4778,'section_one_section_one_title','

Kubernetes Certified Service Provider

'),(168051,4778,'_section_one_section_one_title','field_6317172018e9a'),(168052,4778,'section_one_section_one_image','4775'),(168053,4778,'_section_one_section_one_image','field_63171ca018e9c'),(168054,4778,'section_one_section_one_content','

Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.

\r\n
\r\n
 
\r\n
'),(168055,4778,'_section_one_section_one_content','field_6317174118e9b'),(168056,4778,'section_one_section_one_navigation_one','Cloud Native Applications'),(168057,4778,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(168058,4778,'section_one_section_one_navigation_two','Cloud Native DevOps'),(168059,4778,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(168060,4778,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(168061,4778,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(168062,4778,'section_one_section_one_button_text','Book Consultation Now'),(168063,4778,'_section_one_section_one_button_text','field_63171dc918ea0'),(168064,4778,'section_one',''),(168065,4778,'_section_one','field_631716de18e98'),(168066,4778,'section_two_section_two_title','Our Services'),(168067,4778,'_section_two_section_two_title','field_63171e1457be9'),(168068,4778,'section_two_section_two_icon_one','4734'),(168069,4778,'_section_two_section_two_icon_one','field_63171e2c57bea'),(168070,4778,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(168071,4778,'_section_two_section_two_title_one','field_63171e5f57beb'),(168072,4778,'section_two_section_two_icon_two','4741'),(168073,4778,'_section_two_section_two_icon_two','field_63171e7357bec'),(168074,4778,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(168075,4778,'_section_two_section_two_title_two','field_63171ea157bee'),(168076,4778,'section_two_section_two_icon_three','4736'),(168077,4778,'_section_two_section_two_icon_three','field_63171e8557bed'),(168078,4778,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(168079,4778,'_section_two_section_two_title_three','field_63171ec257bef'),(168080,4778,'section_two_section_two_icon_four','4738'),(168081,4778,'_section_two_section_two_icon_four','field_63171ee257bf0'),(168082,4778,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(168083,4778,'_section_two_section_two_title_four','field_63171ef757bf1'),(168084,4778,'section_two_section_two_icon_five','4744'),(168085,4778,'_section_two_section_two_icon_five','field_63171f2857bf3'),(168086,4778,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(168087,4778,'_section_two_section_two_title_five','field_63171f3957bf4'),(168088,4778,'section_two_section_two_icon_six','4746'),(168089,4778,'_section_two_section_two_icon_six','field_63171f5057bf5'),(168090,4778,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(168091,4778,'_section_two_section_two_title_six','field_63171f6657bf6'),(168092,4778,'section_two_section_two_icon_seven','4748'),(168093,4778,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(168094,4778,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(168095,4778,'_section_two_section_two_title_seven','field_63171f9757bf8'),(168096,4778,'section_two_section_two_icon_eight','4750'),(168097,4778,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(168098,4778,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(168099,4778,'_section_two_section_two_title_eight','field_63171fc057bfa'),(168100,4778,'section_two',''),(168101,4778,'_section_two','field_63171dfb57be8'),(168102,4778,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(168103,4778,'_section_three_section_three_breadcrumb','field_631723036988b'),(168104,4778,'section_three_section_three_title','

Plan Your Next Kubernetes Project
\r\nwith Translucent

'),(168105,4778,'_section_three_section_three_title','field_631723176988c'),(168106,4778,'section_three_section_three_image','4727'),(168107,4778,'_section_three_section_three_image','field_631723ac6988e'),(168108,4778,'section_three_section_three_content','

Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.

\r\n
\r\n
 
\r\n
'),(168109,4778,'_section_three_section_three_content','field_631723906988d'),(168110,4778,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(168111,4778,'_section_three_section_three_footer','field_631723c36988f'),(168112,4778,'section_three_section_three_button_text','Book Consultation Now'),(168113,4778,'_section_three_section_three_button_text','field_631723d769890'),(168114,4778,'section_three',''),(168115,4778,'_section_three','field_631722b96988a'),(168116,4778,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(168117,4778,'_section_four_section_four_breadcrumb','field_6317271523757'),(168118,4778,'section_four_section_four_title','

Driving Digital Transformation with Containers and Kubernetes

'),(168119,4778,'_section_four_section_four_title','field_6317271523758'),(168120,4778,'section_four_section_four_image','4776'),(168121,4778,'_section_four_section_four_image','field_6317271523759'),(168122,4778,'section_four_section_four_content','

Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.

\r\n
\r\n
 
\r\n
'),(168123,4778,'_section_four_section_four_content','field_631727152375a'),(168124,4778,'section_four_section_four_footer','Build - Rebuild - Replatform'),(168125,4778,'_section_four_section_four_footer','field_631727152375b'),(168126,4778,'section_four',''),(168127,4778,'_section_four','field_6317271523756'),(168128,4778,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(168129,4778,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(168130,4778,'section_five_section_five_title','

24/7 support and maintenance
\r\nwith our site reliability engineering services

'),(168131,4778,'_section_five_section_five_title','field_631727bbd69dd'),(168132,4778,'section_five_section_five_image','4777'),(168133,4778,'_section_five_section_five_image','field_631727bbd69de'),(168134,4778,'section_five_section_five_content','

From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.

'),(168135,4778,'_section_five_section_five_content','field_631727bbd69df'),(168136,4778,'section_five_section_five_footer',''),(168137,4778,'_section_five_section_five_footer','field_631727bbd69e0'),(168138,4778,'section_five',''),(168139,4778,'_section_five','field_631727bbd69db'),(168140,4778,'footer_title','We treat your business like our own.'),(168141,4778,'_footer_title','field_631729e2753c6'),(168142,4778,'footer_button_text','Let\'s talk!'),(168143,4778,'_footer_button_text','field_63172a06753c7'),(168144,4778,'section_five_section_five_icon_one','4752'),(168145,4778,'_section_five_section_five_icon_one','field_631727bbd69e0'),(168146,4778,'section_five_section_five_icon_text_one','

SRE - Site Reliability Engineering

'),(168147,4778,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(168148,4778,'section_five_section_five_icon_two','4754'),(168149,4778,'_section_five_section_five_icon_two','field_631ef504912c5'),(168150,4778,'section_five_section_five_icon_text_two','

SLA - Service Level Agreements

'),(168151,4778,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(168152,4778,'section_five_section_five_icon_three','4756'),(168153,4778,'_section_five_section_five_icon_three','field_631ef510912c6'),(168154,4778,'section_five_section_five_icon_text_three','

SLO - Service Level Objectives

'),(168155,4778,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(168156,4778,'section_five_section_five_icon_four','4758'),(168157,4778,'_section_five_section_five_icon_four','field_631ef51c912c7'),(168158,4778,'section_five_section_five_icon_text_four','

SLI - Service Level Indicator

'),(168159,4778,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(168160,4777,'_imagify_optimization_level','2'),(168161,4777,'_imagify_status','success'),(168162,4777,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:101786;s:14:\"optimized_size\";i:30608;s:7:\"percent\";d:69.93;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22804;s:14:\"optimized_size\";i:6960;s:7:\"percent\";d:69.48;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:55117;s:14:\"optimized_size\";i:15678;s:7:\"percent\";d:71.56;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:101786;s:14:\"optimized_size\";i:27456;s:7:\"percent\";d:73.03;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:55117;s:14:\"optimized_size\";i:17248;s:7:\"percent\";d:68.71;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22804;s:14:\"optimized_size\";i:4447;s:7:\"percent\";d:80.5;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:359414;s:14:\"optimized_size\";i:102397;s:7:\"percent\";d:71.51;}}'),(168166,4779,'_wp_attached_file','2022/09/learn_informa_plan.png'),(168167,4779,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:565;s:6:\"height\";i:159;s:4:\"file\";s:30:\"2022/09/learn_informa_plan.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"learn_informa_plan-300x84.png\";s:5:\"width\";i:300;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"learn_informa_plan-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:30:\"learn_informa_plan-500x159.png\";s:5:\"width\";i:500;s:6:\"height\";i:159;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:{}}}'),(168168,4779,'_imagify_optimization_level','2'),(168169,4779,'_imagify_status','success'),(168170,4779,'_imagify_data','a:2:{s:5:\"sizes\";a:8:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25108;s:14:\"optimized_size\";i:6828;s:7:\"percent\";d:72.81;}s:20:\"feature@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18534;s:14:\"optimized_size\";i:6744;s:7:\"percent\";d:63.61;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6933;s:14:\"optimized_size\";i:2270;s:7:\"percent\";d:67.26;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9545;s:14:\"optimized_size\";i:3250;s:7:\"percent\";d:65.95;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25108;s:14:\"optimized_size\";i:7186;s:7:\"percent\";d:71.38;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:9545;s:14:\"optimized_size\";i:3437;s:7:\"percent\";d:63.99;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6933;s:14:\"optimized_size\";i:1473;s:7:\"percent\";d:78.75;}s:7:\"feature\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:18534;s:14:\"optimized_size\";i:6535;s:7:\"percent\";d:64.74;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:120240;s:14:\"optimized_size\";i:37723;s:7:\"percent\";d:68.63;}}'),(168171,4780,'top_title','Kubernetes Professional Services'),(168172,4780,'_top_title','field_6317168918e96'),(168173,4780,'top_description','CLOUD NATIVE SOLUTIONS'),(168174,4780,'_top_description','field_6317169e18e97'),(168175,4780,'section_one_section_one_breadcrumb','KCSP'),(168176,4780,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(168177,4780,'section_one_section_one_title','

Kubernetes Certified Service Provider

'),(168178,4780,'_section_one_section_one_title','field_6317172018e9a'),(168179,4780,'section_one_section_one_image','4775'),(168180,4780,'_section_one_section_one_image','field_63171ca018e9c'),(168181,4780,'section_one_section_one_content','

Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.

\r\n
\r\n
 
\r\n
'),(168182,4780,'_section_one_section_one_content','field_6317174118e9b'),(168183,4780,'section_one_section_one_navigation_one','Cloud Native Applications'),(168184,4780,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(168185,4780,'section_one_section_one_navigation_two','Cloud Native DevOps'),(168186,4780,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(168187,4780,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(168188,4780,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(168189,4780,'section_one_section_one_button_text','Book Consultation Now'),(168190,4780,'_section_one_section_one_button_text','field_63171dc918ea0'),(168191,4780,'section_one',''),(168192,4780,'_section_one','field_631716de18e98'),(168193,4780,'section_two_section_two_title','Our Services'),(168194,4780,'_section_two_section_two_title','field_63171e1457be9'),(168195,4780,'section_two_section_two_icon_one','4734'),(168196,4780,'_section_two_section_two_icon_one','field_63171e2c57bea'),(168197,4780,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(168198,4780,'_section_two_section_two_title_one','field_63171e5f57beb'),(168199,4780,'section_two_section_two_icon_two','4741'),(168200,4780,'_section_two_section_two_icon_two','field_63171e7357bec'),(168201,4780,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(168202,4780,'_section_two_section_two_title_two','field_63171ea157bee'),(168203,4780,'section_two_section_two_icon_three','4736'),(168204,4780,'_section_two_section_two_icon_three','field_63171e8557bed'),(168205,4780,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(168206,4780,'_section_two_section_two_title_three','field_63171ec257bef'),(168207,4780,'section_two_section_two_icon_four','4738'),(168208,4780,'_section_two_section_two_icon_four','field_63171ee257bf0'),(168209,4780,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(168210,4780,'_section_two_section_two_title_four','field_63171ef757bf1'),(168211,4780,'section_two_section_two_icon_five','4744'),(168212,4780,'_section_two_section_two_icon_five','field_63171f2857bf3'),(168213,4780,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(168214,4780,'_section_two_section_two_title_five','field_63171f3957bf4'),(168215,4780,'section_two_section_two_icon_six','4746'),(168216,4780,'_section_two_section_two_icon_six','field_63171f5057bf5'),(168217,4780,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(168218,4780,'_section_two_section_two_title_six','field_63171f6657bf6'),(168219,4780,'section_two_section_two_icon_seven','4748'),(168220,4780,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(168221,4780,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(168222,4780,'_section_two_section_two_title_seven','field_63171f9757bf8'),(168223,4780,'section_two_section_two_icon_eight','4750'),(168224,4780,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(168225,4780,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(168226,4780,'_section_two_section_two_title_eight','field_63171fc057bfa'),(168227,4780,'section_two',''),(168228,4780,'_section_two','field_63171dfb57be8'),(168229,4780,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(168230,4780,'_section_three_section_three_breadcrumb','field_631723036988b'),(168231,4780,'section_three_section_three_title','

Plan Your Next Kubernetes Project
\r\nwith Translucent

'),(168232,4780,'_section_three_section_three_title','field_631723176988c'),(168233,4780,'section_three_section_three_image','4779'),(168234,4780,'_section_three_section_three_image','field_631723ac6988e'),(168235,4780,'section_three_section_three_content','

Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.

\r\n
\r\n
 
\r\n
'),(168236,4780,'_section_three_section_three_content','field_631723906988d'),(168237,4780,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(168238,4780,'_section_three_section_three_footer','field_631723c36988f'),(168239,4780,'section_three_section_three_button_text','Book Consultation Now'),(168240,4780,'_section_three_section_three_button_text','field_631723d769890'),(168241,4780,'section_three',''),(168242,4780,'_section_three','field_631722b96988a'),(168243,4780,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(168244,4780,'_section_four_section_four_breadcrumb','field_6317271523757'),(168245,4780,'section_four_section_four_title','

Driving Digital Transformation with Containers and Kubernetes

'),(168246,4780,'_section_four_section_four_title','field_6317271523758'),(168247,4780,'section_four_section_four_image','4776'),(168248,4780,'_section_four_section_four_image','field_6317271523759'),(168249,4780,'section_four_section_four_content','

Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.

\r\n
\r\n
 
\r\n
'),(168250,4780,'_section_four_section_four_content','field_631727152375a'),(168251,4780,'section_four_section_four_footer','Build - Rebuild - Replatform'),(168252,4780,'_section_four_section_four_footer','field_631727152375b'),(168253,4780,'section_four',''),(168254,4780,'_section_four','field_6317271523756'),(168255,4780,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(168256,4780,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(168257,4780,'section_five_section_five_title','

24/7 support and maintenance
\r\nwith our site reliability engineering services

'),(168258,4780,'_section_five_section_five_title','field_631727bbd69dd'),(168259,4780,'section_five_section_five_image','4777'),(168260,4780,'_section_five_section_five_image','field_631727bbd69de'),(168261,4780,'section_five_section_five_content','

From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.

'),(168262,4780,'_section_five_section_five_content','field_631727bbd69df'),(168263,4780,'section_five_section_five_footer',''),(168264,4780,'_section_five_section_five_footer','field_631727bbd69e0'),(168265,4780,'section_five',''),(168266,4780,'_section_five','field_631727bbd69db'),(168267,4780,'footer_title','We treat your business like our own.'),(168268,4780,'_footer_title','field_631729e2753c6'),(168269,4780,'footer_button_text','Let\'s talk!'),(168270,4780,'_footer_button_text','field_63172a06753c7'),(168271,4780,'section_five_section_five_icon_one','4752'),(168272,4780,'_section_five_section_five_icon_one','field_631727bbd69e0'),(168273,4780,'section_five_section_five_icon_text_one','

SRE - Site Reliability Engineering

'),(168274,4780,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(168275,4780,'section_five_section_five_icon_two','4754'),(168276,4780,'_section_five_section_five_icon_two','field_631ef504912c5'),(168277,4780,'section_five_section_five_icon_text_two','

SLA - Service Level Agreements

'),(168278,4780,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(168279,4780,'section_five_section_five_icon_three','4756'),(168280,4780,'_section_five_section_five_icon_three','field_631ef510912c6'),(168281,4780,'section_five_section_five_icon_text_three','

SLO - Service Level Objectives

'),(168282,4780,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(168283,4780,'section_five_section_five_icon_four','4758'),(168284,4780,'_section_five_section_five_icon_four','field_631ef51c912c7'),(168285,4780,'section_five_section_five_icon_text_four','

SLI - Service Level Indicator

'),(168286,4780,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(168287,1924,'_pinterest_shares','3'),(168288,1924,'_total_shares','5'),(168289,1924,'swp_cache_timestamp','461957'),(168302,4613,'_pinterest_shares','0'),(168303,4613,'_total_shares','0'),(168320,4782,'_pinterest_shares','0'),(168321,4782,'_total_shares','0'),(168323,4616,'_pinterest_shares','0'),(168324,4616,'_total_shares','0'),(168329,4541,'_pinterest_shares','0'),(168330,4541,'_total_shares','0'),(168332,4784,'top-image',''),(168333,4784,'_top-image','field_5c488d805f5d4'),(168334,4784,'top_title',''),(168335,4784,'_top_title','field_5edfac92f4226'),(168336,4784,'top-text',''),(168337,4784,'_top-text','field_5c488e575f5d5'),(168338,4784,'features',''),(168339,4784,'_features','field_5c4890bc3ae1f'),(168340,4784,'about-title',''),(168341,4784,'_about-title','field_5c488e7a5f5d6'),(168342,4784,'about-text',''),(168343,4784,'_about-text','field_5c488e945f5d7'),(168344,4784,'problems',''),(168345,4784,'_problems','field_5c488ec75f5d8'),(168346,4784,'solutions',''),(168347,4784,'_solutions','field_5c488ed95f5d9'),(168348,4784,'difference',''),(168349,4784,'_difference','field_5c488eed5f5da'),(168350,4784,'panel',''),(168351,4784,'_panel','field_5c488f195f5db'),(168352,4784,'more-text',''),(168353,4784,'_more-text','field_5c488f8f5f5df'),(168354,4784,'phrase',''),(168355,4784,'_phrase','field_5c488faf5f5e0'),(168356,4784,'author',''),(168357,4784,'_author','field_5c488fba5f5e1'),(168358,4784,'top_description','Machine Learning'),(168359,4784,'_top_description','field_63170e008cc99'),(168360,4784,'top_background_desktop','4677'),(168361,4784,'_top_background_desktop','field_631eb1728b709'),(168362,4784,'top_background_mobile','4677'),(168363,4784,'_top_background_mobile','field_631eb1988b70a'),(168364,4784,'section_one_section_one_breadcrumb','THE FUTURE'),(168365,4784,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(168366,4784,'section_one_section_one_title','

How intelligent is your
\r\nbusiness?

'),(168367,4784,'_section_one_section_one_title','field_6316f2764091e'),(168368,4784,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(168369,4784,'_section_one_section_one_content','field_6316f2934091f'),(168370,4784,'section_one_section_one_image','4679'),(168371,4784,'_section_one_section_one_image','field_6316f2ab40920'),(168372,4784,'section_one_section_one_button_text','Book a consultation now'),(168373,4784,'_section_one_section_one_button_text','field_6316f2ca40921'),(168374,4784,'section_one',''),(168375,4784,'_section_one','field_6316f7ba1cd27'),(168376,4784,'section_two_section_two_button_text','Book a consultation now'),(168377,4784,'_section_two_section_two_button_text','field_6316fe1ff751b'),(168378,4784,'section_two_section_two_tab_one_header_title','Problems'),(168379,4784,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(168380,4784,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(168381,4784,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(168382,4784,'section_two_section_two_tab_one_image','4680'),(168383,4784,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(168384,4784,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(168385,4784,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(168386,4784,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(168387,4784,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(168388,4784,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(168389,4784,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(168390,4784,'section_two_section_two_tab_two_header_title','Solutions'),(168391,4784,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(168392,4784,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(168393,4784,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(168394,4784,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(168395,4784,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(168396,4784,'section_two_section_two_tab_two_content_icon_1','4683'),(168397,4784,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(168398,4784,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(168399,4784,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(168400,4784,'section_two_section_two_tab_two_content_icon_2','4684'),(168401,4784,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(168402,4784,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(168403,4784,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(168404,4784,'section_two_section_two_tab_two_content_icon_3','4685'),(168405,4784,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(168406,4784,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(168407,4784,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(168408,4784,'section_two_section_two_tab_two_content_icon_4','4686'),(168409,4784,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(168410,4784,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(168411,4784,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(168412,4784,'section_two_section_two_tab_three_header_title','Difference'),(168413,4784,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(168414,4784,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(168415,4784,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(168416,4784,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(168417,4784,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(168418,4784,'section_two_section_two_tab_three_image','4705'),(168419,4784,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(168420,4784,'section_two',''),(168421,4784,'_section_two','field_6316fa2531589'),(168422,4784,'section_three_section_three_title','Trusted Relationships'),(168423,4784,'_section_three_section_three_title','field_6316febdf751c'),(168424,4784,'section_three_section_three_one_icon','4687'),(168425,4784,'_section_three_section_three_one_icon','field_6316fefff751e'),(168426,4784,'section_three_section_three_one_title','Data Entry Automation'),(168427,4784,'_section_three_section_three_one_title','field_6316ff1cf751f'),(168428,4784,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168429,4784,'_section_three_section_three_one_content','field_6316ff29f7520'),(168430,4784,'section_three_section_three_two_icon','4688'),(168431,4784,'_section_three_section_three_two_icon','field_6316ff77f7523'),(168432,4784,'section_three_section_three_two_title','Product Recommendation'),(168433,4784,'_section_three_section_three_two_title','field_6316ff90f7524'),(168434,4784,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168435,4784,'_section_three_section_three_two_content','field_6316ff5df7522'),(168436,4784,'section_three_section_three_three_icon','4689'),(168437,4784,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(168438,4784,'section_three_section_three_three_title','Medical Diagnosis'),(168439,4784,'_section_three_section_three_three_title','field_6316fff5f7527'),(168440,4784,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168441,4784,'_section_three_section_three_three_content','field_63170010f7528'),(168442,4784,'section_three_section_three_four_icon','4690'),(168443,4784,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(168444,4784,'section_three_section_three_four_title','Clients: Who is buying what'),(168445,4784,'_section_three_section_three_four_title','field_631707992b1ca'),(168446,4784,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168447,4784,'_section_three_section_three_four_content','field_631707b42b1cb'),(168448,4784,'section_three_section_three_five_icon','4691'),(168449,4784,'_section_three_section_three_five_icon','field_631707e52b1cd'),(168450,4784,'section_three_section_three_five_title','User Behavior'),(168451,4784,'_section_three_section_three_five_title','field_631708002b1ce'),(168452,4784,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168453,4784,'_section_three_section_three_five_content','field_6317081c2b1cf'),(168454,4784,'section_three_section_three_six_icon','4692'),(168455,4784,'_section_three_section_three_six_icon','field_631708572b1d1'),(168456,4784,'section_three_section_three_six_title','BI: Automated Reporting'),(168457,4784,'_section_three_section_three_six_title','field_631708712b1d2'),(168458,4784,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168459,4784,'_section_three_section_three_six_content','field_6317088d2b1d3'),(168460,4784,'section_three_section_three_seven_icon','4693'),(168461,4784,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(168462,4784,'section_three_section_three_seven_title','Detecting Spam in Emails'),(168463,4784,'_section_three_section_three_seven_title','field_631708da2b1d6'),(168464,4784,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168465,4784,'_section_three_section_three_seven_content','field_631708f62b1d7'),(168466,4784,'section_three_section_three_eight_icon','4694'),(168467,4784,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(168468,4784,'section_three_section_three_eight_title','Analytics'),(168469,4784,'_section_three_section_three_eight_title','field_631709462b1da'),(168470,4784,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168471,4784,'_section_three_section_three_eight_content','field_6317095e2b1db'),(168472,4784,'section_three',''),(168473,4784,'_section_three','field_6316fcf4f751a'),(168474,4784,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(168475,4784,'_section_four_section_four_content','field_63170ac9aa9a2'),(168476,4784,'section_four_section_four_button_text','Book a consultation now'),(168477,4784,'_section_four_section_four_button_text','field_63170b08aa9a3'),(168478,4784,'section_four',''),(168479,4784,'_section_four','field_63170a81aa9a1'),(168480,4784,'section_five_section_five_title','We listen. We learn. We inform.'),(168481,4784,'_section_five_section_five_title','field_63170b8564fc2'),(168482,4784,'section_five_section_five_quote','

\r\n “76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”\r\n

'),(168483,4784,'_section_five_section_five_quote','field_632013fd76a3e'),(168484,4784,'section_five_section_five_footer','forbes.com'),(168485,4784,'_section_five_section_five_footer','field_63170bad64fc4'),(168486,4784,'section_five',''),(168487,4784,'_section_five','field_63170b5f64fc1'),(168488,4784,'footer_title','We treat your business like our own.'),(168489,4784,'_footer_title','field_63170f4c8cc9a'),(168490,4784,'footer_button_text','Let\'s talk!'),(168491,4784,'_footer_button_text','field_63170f6f8cc9b'),(168492,4784,'top_title_1','CLOUD NATIVE SOLUTIONS'),(168493,4784,'_top_title_1','field_631ed55492adc'),(168494,4784,'top_title_page','CLOUD NATIVE SOLUTIONS'),(168495,4784,'_top_title_page','field_631ed55492adc'),(168499,4785,'top-image',''),(168500,4785,'_top-image','field_5c488d805f5d4'),(168501,4785,'top_title',''),(168502,4785,'_top_title','field_5edfac92f4226'),(168503,4785,'top-text',''),(168504,4785,'_top-text','field_5c488e575f5d5'),(168505,4785,'features',''),(168506,4785,'_features','field_5c4890bc3ae1f'),(168507,4785,'about-title',''),(168508,4785,'_about-title','field_5c488e7a5f5d6'),(168509,4785,'about-text',''),(168510,4785,'_about-text','field_5c488e945f5d7'),(168511,4785,'problems',''),(168512,4785,'_problems','field_5c488ec75f5d8'),(168513,4785,'solutions',''),(168514,4785,'_solutions','field_5c488ed95f5d9'),(168515,4785,'difference',''),(168516,4785,'_difference','field_5c488eed5f5da'),(168517,4785,'panel',''),(168518,4785,'_panel','field_5c488f195f5db'),(168519,4785,'more-text',''),(168520,4785,'_more-text','field_5c488f8f5f5df'),(168521,4785,'phrase',''),(168522,4785,'_phrase','field_5c488faf5f5e0'),(168523,4785,'author',''),(168524,4785,'_author','field_5c488fba5f5e1'),(168525,4785,'top_description','Machine Learning'),(168526,4785,'_top_description','field_63170e008cc99'),(168527,4785,'top_background_desktop','4677'),(168528,4785,'_top_background_desktop','field_631eb1728b709'),(168529,4785,'top_background_mobile','4677'),(168530,4785,'_top_background_mobile','field_631eb1988b70a'),(168531,4785,'section_one_section_one_breadcrumb','THE FUTURE'),(168532,4785,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(168533,4785,'section_one_section_one_title','

How intelligent is your
\r\nbusiness?

'),(168534,4785,'_section_one_section_one_title','field_6316f2764091e'),(168535,4785,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(168536,4785,'_section_one_section_one_content','field_6316f2934091f'),(168537,4785,'section_one_section_one_image','4679'),(168538,4785,'_section_one_section_one_image','field_6316f2ab40920'),(168539,4785,'section_one_section_one_button_text','Book a consultation now'),(168540,4785,'_section_one_section_one_button_text','field_6316f2ca40921'),(168541,4785,'section_one',''),(168542,4785,'_section_one','field_6316f7ba1cd27'),(168543,4785,'section_two_section_two_button_text','Book a consultation now'),(168544,4785,'_section_two_section_two_button_text','field_6316fe1ff751b'),(168545,4785,'section_two_section_two_tab_one_header_title','Problems'),(168546,4785,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(168547,4785,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(168548,4785,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(168549,4785,'section_two_section_two_tab_one_image','4680'),(168550,4785,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(168551,4785,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(168552,4785,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(168553,4785,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(168554,4785,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(168555,4785,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(168556,4785,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(168557,4785,'section_two_section_two_tab_two_header_title','Solutions'),(168558,4785,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(168559,4785,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(168560,4785,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(168561,4785,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(168562,4785,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(168563,4785,'section_two_section_two_tab_two_content_icon_1','4683'),(168564,4785,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(168565,4785,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(168566,4785,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(168567,4785,'section_two_section_two_tab_two_content_icon_2','4684'),(168568,4785,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(168569,4785,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(168570,4785,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(168571,4785,'section_two_section_two_tab_two_content_icon_3','4685'),(168572,4785,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(168573,4785,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(168574,4785,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(168575,4785,'section_two_section_two_tab_two_content_icon_4','4686'),(168576,4785,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(168577,4785,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(168578,4785,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(168579,4785,'section_two_section_two_tab_three_header_title','Difference'),(168580,4785,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(168581,4785,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(168582,4785,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(168583,4785,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(168584,4785,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(168585,4785,'section_two_section_two_tab_three_image','4705'),(168586,4785,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(168587,4785,'section_two',''),(168588,4785,'_section_two','field_6316fa2531589'),(168589,4785,'section_three_section_three_title','Trusted Relationships'),(168590,4785,'_section_three_section_three_title','field_6316febdf751c'),(168591,4785,'section_three_section_three_one_icon','4687'),(168592,4785,'_section_three_section_three_one_icon','field_6316fefff751e'),(168593,4785,'section_three_section_three_one_title','Data Entry Automation'),(168594,4785,'_section_three_section_three_one_title','field_6316ff1cf751f'),(168595,4785,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168596,4785,'_section_three_section_three_one_content','field_6316ff29f7520'),(168597,4785,'section_three_section_three_two_icon','4688'),(168598,4785,'_section_three_section_three_two_icon','field_6316ff77f7523'),(168599,4785,'section_three_section_three_two_title','Product Recommendation'),(168600,4785,'_section_three_section_three_two_title','field_6316ff90f7524'),(168601,4785,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168602,4785,'_section_three_section_three_two_content','field_6316ff5df7522'),(168603,4785,'section_three_section_three_three_icon','4689'),(168604,4785,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(168605,4785,'section_three_section_three_three_title','Medical Diagnosis'),(168606,4785,'_section_three_section_three_three_title','field_6316fff5f7527'),(168607,4785,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168608,4785,'_section_three_section_three_three_content','field_63170010f7528'),(168609,4785,'section_three_section_three_four_icon','4690'),(168610,4785,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(168611,4785,'section_three_section_three_four_title','Clients: Who is buying what'),(168612,4785,'_section_three_section_three_four_title','field_631707992b1ca'),(168613,4785,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168614,4785,'_section_three_section_three_four_content','field_631707b42b1cb'),(168615,4785,'section_three_section_three_five_icon','4691'),(168616,4785,'_section_three_section_three_five_icon','field_631707e52b1cd'),(168617,4785,'section_three_section_three_five_title','User Behavior'),(168618,4785,'_section_three_section_three_five_title','field_631708002b1ce'),(168619,4785,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168620,4785,'_section_three_section_three_five_content','field_6317081c2b1cf'),(168621,4785,'section_three_section_three_six_icon','4692'),(168622,4785,'_section_three_section_three_six_icon','field_631708572b1d1'),(168623,4785,'section_three_section_three_six_title','BI: Automated Reporting'),(168624,4785,'_section_three_section_three_six_title','field_631708712b1d2'),(168625,4785,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168626,4785,'_section_three_section_three_six_content','field_6317088d2b1d3'),(168627,4785,'section_three_section_three_seven_icon','4693'),(168628,4785,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(168629,4785,'section_three_section_three_seven_title','Detecting Spam in Emails'),(168630,4785,'_section_three_section_three_seven_title','field_631708da2b1d6'),(168631,4785,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168632,4785,'_section_three_section_three_seven_content','field_631708f62b1d7'),(168633,4785,'section_three_section_three_eight_icon','4694'),(168634,4785,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(168635,4785,'section_three_section_three_eight_title','Analytics'),(168636,4785,'_section_three_section_three_eight_title','field_631709462b1da'),(168637,4785,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168638,4785,'_section_three_section_three_eight_content','field_6317095e2b1db'),(168639,4785,'section_three',''),(168640,4785,'_section_three','field_6316fcf4f751a'),(168641,4785,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(168642,4785,'_section_four_section_four_content','field_63170ac9aa9a2'),(168643,4785,'section_four_section_four_button_text','Book a consultation now'),(168644,4785,'_section_four_section_four_button_text','field_63170b08aa9a3'),(168645,4785,'section_four',''),(168646,4785,'_section_four','field_63170a81aa9a1'),(168647,4785,'section_five_section_five_title','We listen. We learn. We inform.'),(168648,4785,'_section_five_section_five_title','field_63170b8564fc2'),(168649,4785,'section_five_section_five_quote','

“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”

'),(168650,4785,'_section_five_section_five_quote','field_632013fd76a3e'),(168651,4785,'section_five_section_five_footer','forbes.com'),(168652,4785,'_section_five_section_five_footer','field_63170bad64fc4'),(168653,4785,'section_five',''),(168654,4785,'_section_five','field_63170b5f64fc1'),(168655,4785,'footer_title','We treat your business like our own.'),(168656,4785,'_footer_title','field_63170f4c8cc9a'),(168657,4785,'footer_button_text','Let\'s talk!'),(168658,4785,'_footer_button_text','field_63170f6f8cc9b'),(168659,4785,'top_title_1','CLOUD NATIVE SOLUTIONS'),(168660,4785,'_top_title_1','field_631ed55492adc'),(168661,4785,'top_title_page','CLOUD NATIVE SOLUTIONS'),(168662,4785,'_top_title_page','field_631ed55492adc'),(168666,4786,'top-image',''),(168667,4786,'_top-image','field_5c488d805f5d4'),(168668,4786,'top_title',''),(168669,4786,'_top_title','field_5edfac92f4226'),(168670,4786,'top-text',''),(168671,4786,'_top-text','field_5c488e575f5d5'),(168672,4786,'features',''),(168673,4786,'_features','field_5c4890bc3ae1f'),(168674,4786,'about-title',''),(168675,4786,'_about-title','field_5c488e7a5f5d6'),(168676,4786,'about-text',''),(168677,4786,'_about-text','field_5c488e945f5d7'),(168678,4786,'problems',''),(168679,4786,'_problems','field_5c488ec75f5d8'),(168680,4786,'solutions',''),(168681,4786,'_solutions','field_5c488ed95f5d9'),(168682,4786,'difference',''),(168683,4786,'_difference','field_5c488eed5f5da'),(168684,4786,'panel',''),(168685,4786,'_panel','field_5c488f195f5db'),(168686,4786,'more-text',''),(168687,4786,'_more-text','field_5c488f8f5f5df'),(168688,4786,'phrase',''),(168689,4786,'_phrase','field_5c488faf5f5e0'),(168690,4786,'author',''),(168691,4786,'_author','field_5c488fba5f5e1'),(168692,4786,'top_description','Machine Learning'),(168693,4786,'_top_description','field_63170e008cc99'),(168694,4786,'top_background_desktop','4677'),(168695,4786,'_top_background_desktop','field_631eb1728b709'),(168696,4786,'top_background_mobile','4677'),(168697,4786,'_top_background_mobile','field_631eb1988b70a'),(168698,4786,'section_one_section_one_breadcrumb','THE FUTURE'),(168699,4786,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(168700,4786,'section_one_section_one_title','

How intelligent is your
\r\nbusiness?

'),(168701,4786,'_section_one_section_one_title','field_6316f2764091e'),(168702,4786,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(168703,4786,'_section_one_section_one_content','field_6316f2934091f'),(168704,4786,'section_one_section_one_image','4679'),(168705,4786,'_section_one_section_one_image','field_6316f2ab40920'),(168706,4786,'section_one_section_one_button_text','Book a consultation now'),(168707,4786,'_section_one_section_one_button_text','field_6316f2ca40921'),(168708,4786,'section_one',''),(168709,4786,'_section_one','field_6316f7ba1cd27'),(168710,4786,'section_two_section_two_button_text','Book a consultation now'),(168711,4786,'_section_two_section_two_button_text','field_6316fe1ff751b'),(168712,4786,'section_two_section_two_tab_one_header_title','Problems'),(168713,4786,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(168714,4786,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(168715,4786,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(168716,4786,'section_two_section_two_tab_one_image','4680'),(168717,4786,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(168718,4786,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(168719,4786,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(168720,4786,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(168721,4786,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(168722,4786,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(168723,4786,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(168724,4786,'section_two_section_two_tab_two_header_title','Solutions'),(168725,4786,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(168726,4786,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(168727,4786,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(168728,4786,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(168729,4786,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(168730,4786,'section_two_section_two_tab_two_content_icon_1','4683'),(168731,4786,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(168732,4786,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(168733,4786,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(168734,4786,'section_two_section_two_tab_two_content_icon_2','4684'),(168735,4786,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(168736,4786,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(168737,4786,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(168738,4786,'section_two_section_two_tab_two_content_icon_3','4685'),(168739,4786,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(168740,4786,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(168741,4786,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(168742,4786,'section_two_section_two_tab_two_content_icon_4','4686'),(168743,4786,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(168744,4786,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(168745,4786,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(168746,4786,'section_two_section_two_tab_three_header_title','Difference'),(168747,4786,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(168748,4786,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(168749,4786,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(168750,4786,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(168751,4786,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(168752,4786,'section_two_section_two_tab_three_image','4705'),(168753,4786,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(168754,4786,'section_two',''),(168755,4786,'_section_two','field_6316fa2531589'),(168756,4786,'section_three_section_three_title','Trusted Relationships'),(168757,4786,'_section_three_section_three_title','field_6316febdf751c'),(168758,4786,'section_three_section_three_one_icon','4687'),(168759,4786,'_section_three_section_three_one_icon','field_6316fefff751e'),(168760,4786,'section_three_section_three_one_title','Data Entry Automation'),(168761,4786,'_section_three_section_three_one_title','field_6316ff1cf751f'),(168762,4786,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168763,4786,'_section_three_section_three_one_content','field_6316ff29f7520'),(168764,4786,'section_three_section_three_two_icon','4688'),(168765,4786,'_section_three_section_three_two_icon','field_6316ff77f7523'),(168766,4786,'section_three_section_three_two_title','Product Recommendation'),(168767,4786,'_section_three_section_three_two_title','field_6316ff90f7524'),(168768,4786,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168769,4786,'_section_three_section_three_two_content','field_6316ff5df7522'),(168770,4786,'section_three_section_three_three_icon','4689'),(168771,4786,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(168772,4786,'section_three_section_three_three_title','Medical Diagnosis'),(168773,4786,'_section_three_section_three_three_title','field_6316fff5f7527'),(168774,4786,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168775,4786,'_section_three_section_three_three_content','field_63170010f7528'),(168776,4786,'section_three_section_three_four_icon','4690'),(168777,4786,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(168778,4786,'section_three_section_three_four_title','Clients: Who is buying what'),(168779,4786,'_section_three_section_three_four_title','field_631707992b1ca'),(168780,4786,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168781,4786,'_section_three_section_three_four_content','field_631707b42b1cb'),(168782,4786,'section_three_section_three_five_icon','4691'),(168783,4786,'_section_three_section_three_five_icon','field_631707e52b1cd'),(168784,4786,'section_three_section_three_five_title','User Behavior'),(168785,4786,'_section_three_section_three_five_title','field_631708002b1ce'),(168786,4786,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168787,4786,'_section_three_section_three_five_content','field_6317081c2b1cf'),(168788,4786,'section_three_section_three_six_icon','4692'),(168789,4786,'_section_three_section_three_six_icon','field_631708572b1d1'),(168790,4786,'section_three_section_three_six_title','BI: Automated Reporting'),(168791,4786,'_section_three_section_three_six_title','field_631708712b1d2'),(168792,4786,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168793,4786,'_section_three_section_three_six_content','field_6317088d2b1d3'),(168794,4786,'section_three_section_three_seven_icon','4693'),(168795,4786,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(168796,4786,'section_three_section_three_seven_title','Detecting Spam in Emails'),(168797,4786,'_section_three_section_three_seven_title','field_631708da2b1d6'),(168798,4786,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168799,4786,'_section_three_section_three_seven_content','field_631708f62b1d7'),(168800,4786,'section_three_section_three_eight_icon','4694'),(168801,4786,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(168802,4786,'section_three_section_three_eight_title','Analytics'),(168803,4786,'_section_three_section_three_eight_title','field_631709462b1da'),(168804,4786,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168805,4786,'_section_three_section_three_eight_content','field_6317095e2b1db'),(168806,4786,'section_three',''),(168807,4786,'_section_three','field_6316fcf4f751a'),(168808,4786,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(168809,4786,'_section_four_section_four_content','field_63170ac9aa9a2'),(168810,4786,'section_four_section_four_button_text','Book a consultation now'),(168811,4786,'_section_four_section_four_button_text','field_63170b08aa9a3'),(168812,4786,'section_four',''),(168813,4786,'_section_four','field_63170a81aa9a1'),(168814,4786,'section_five_section_five_title','We listen. We learn. We inform.'),(168815,4786,'_section_five_section_five_title','field_63170b8564fc2'),(168816,4786,'section_five_section_five_quote',''),(168817,4786,'_section_five_section_five_quote','field_632013fd76a3e'),(168818,4786,'section_five_section_five_footer','forbes.com'),(168819,4786,'_section_five_section_five_footer','field_63170bad64fc4'),(168820,4786,'section_five',''),(168821,4786,'_section_five','field_63170b5f64fc1'),(168822,4786,'footer_title','We treat your business like our own.'),(168823,4786,'_footer_title','field_63170f4c8cc9a'),(168824,4786,'footer_button_text','Let\'s talk!'),(168825,4786,'_footer_button_text','field_63170f6f8cc9b'),(168826,4786,'top_title_1','CLOUD NATIVE SOLUTIONS'),(168827,4786,'_top_title_1','field_631ed55492adc'),(168828,4786,'top_title_page','CLOUD NATIVE SOLUTIONS'),(168829,4786,'_top_title_page','field_631ed55492adc'),(168833,4787,'top-image',''),(168834,4787,'_top-image','field_5c488d805f5d4'),(168835,4787,'top_title',''),(168836,4787,'_top_title','field_5edfac92f4226'),(168837,4787,'top-text',''),(168838,4787,'_top-text','field_5c488e575f5d5'),(168839,4787,'features',''),(168840,4787,'_features','field_5c4890bc3ae1f'),(168841,4787,'about-title',''),(168842,4787,'_about-title','field_5c488e7a5f5d6'),(168843,4787,'about-text',''),(168844,4787,'_about-text','field_5c488e945f5d7'),(168845,4787,'problems',''),(168846,4787,'_problems','field_5c488ec75f5d8'),(168847,4787,'solutions',''),(168848,4787,'_solutions','field_5c488ed95f5d9'),(168849,4787,'difference',''),(168850,4787,'_difference','field_5c488eed5f5da'),(168851,4787,'panel',''),(168852,4787,'_panel','field_5c488f195f5db'),(168853,4787,'more-text',''),(168854,4787,'_more-text','field_5c488f8f5f5df'),(168855,4787,'phrase',''),(168856,4787,'_phrase','field_5c488faf5f5e0'),(168857,4787,'author',''),(168858,4787,'_author','field_5c488fba5f5e1'),(168859,4787,'top_description','Machine Learning'),(168860,4787,'_top_description','field_63170e008cc99'),(168861,4787,'top_background_desktop','4677'),(168862,4787,'_top_background_desktop','field_631eb1728b709'),(168863,4787,'top_background_mobile','4677'),(168864,4787,'_top_background_mobile','field_631eb1988b70a'),(168865,4787,'section_one_section_one_breadcrumb','THE FUTURE'),(168866,4787,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(168867,4787,'section_one_section_one_title','

How intelligent is your
\r\nbusiness?

'),(168868,4787,'_section_one_section_one_title','field_6316f2764091e'),(168869,4787,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(168870,4787,'_section_one_section_one_content','field_6316f2934091f'),(168871,4787,'section_one_section_one_image','4679'),(168872,4787,'_section_one_section_one_image','field_6316f2ab40920'),(168873,4787,'section_one_section_one_button_text','Book a consultation now'),(168874,4787,'_section_one_section_one_button_text','field_6316f2ca40921'),(168875,4787,'section_one',''),(168876,4787,'_section_one','field_6316f7ba1cd27'),(168877,4787,'section_two_section_two_button_text','Book a consultation now'),(168878,4787,'_section_two_section_two_button_text','field_6316fe1ff751b'),(168879,4787,'section_two_section_two_tab_one_header_title','Problems'),(168880,4787,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(168881,4787,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(168882,4787,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(168883,4787,'section_two_section_two_tab_one_image','4680'),(168884,4787,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(168885,4787,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(168886,4787,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(168887,4787,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(168888,4787,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(168889,4787,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(168890,4787,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(168891,4787,'section_two_section_two_tab_two_header_title','Solutions'),(168892,4787,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(168893,4787,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(168894,4787,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(168895,4787,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(168896,4787,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(168897,4787,'section_two_section_two_tab_two_content_icon_1','4683'),(168898,4787,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(168899,4787,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(168900,4787,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(168901,4787,'section_two_section_two_tab_two_content_icon_2','4684'),(168902,4787,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(168903,4787,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(168904,4787,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(168905,4787,'section_two_section_two_tab_two_content_icon_3','4685'),(168906,4787,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(168907,4787,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(168908,4787,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(168909,4787,'section_two_section_two_tab_two_content_icon_4','4686'),(168910,4787,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(168911,4787,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(168912,4787,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(168913,4787,'section_two_section_two_tab_three_header_title','Difference'),(168914,4787,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(168915,4787,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(168916,4787,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(168917,4787,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(168918,4787,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(168919,4787,'section_two_section_two_tab_three_image','4705'),(168920,4787,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(168921,4787,'section_two',''),(168922,4787,'_section_two','field_6316fa2531589'),(168923,4787,'section_three_section_three_title','Trusted Relationships'),(168924,4787,'_section_three_section_three_title','field_6316febdf751c'),(168925,4787,'section_three_section_three_one_icon','4687'),(168926,4787,'_section_three_section_three_one_icon','field_6316fefff751e'),(168927,4787,'section_three_section_three_one_title','Data Entry Automation'),(168928,4787,'_section_three_section_three_one_title','field_6316ff1cf751f'),(168929,4787,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168930,4787,'_section_three_section_three_one_content','field_6316ff29f7520'),(168931,4787,'section_three_section_three_two_icon','4688'),(168932,4787,'_section_three_section_three_two_icon','field_6316ff77f7523'),(168933,4787,'section_three_section_three_two_title','Product Recommendation'),(168934,4787,'_section_three_section_three_two_title','field_6316ff90f7524'),(168935,4787,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168936,4787,'_section_three_section_three_two_content','field_6316ff5df7522'),(168937,4787,'section_three_section_three_three_icon','4689'),(168938,4787,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(168939,4787,'section_three_section_three_three_title','Medical Diagnosis'),(168940,4787,'_section_three_section_three_three_title','field_6316fff5f7527'),(168941,4787,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168942,4787,'_section_three_section_three_three_content','field_63170010f7528'),(168943,4787,'section_three_section_three_four_icon','4690'),(168944,4787,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(168945,4787,'section_three_section_three_four_title','Clients: Who is buying what'),(168946,4787,'_section_three_section_three_four_title','field_631707992b1ca'),(168947,4787,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168948,4787,'_section_three_section_three_four_content','field_631707b42b1cb'),(168949,4787,'section_three_section_three_five_icon','4691'),(168950,4787,'_section_three_section_three_five_icon','field_631707e52b1cd'),(168951,4787,'section_three_section_three_five_title','User Behavior'),(168952,4787,'_section_three_section_three_five_title','field_631708002b1ce'),(168953,4787,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168954,4787,'_section_three_section_three_five_content','field_6317081c2b1cf'),(168955,4787,'section_three_section_three_six_icon','4692'),(168956,4787,'_section_three_section_three_six_icon','field_631708572b1d1'),(168957,4787,'section_three_section_three_six_title','BI: Automated Reporting'),(168958,4787,'_section_three_section_three_six_title','field_631708712b1d2'),(168959,4787,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168960,4787,'_section_three_section_three_six_content','field_6317088d2b1d3'),(168961,4787,'section_three_section_three_seven_icon','4693'),(168962,4787,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(168963,4787,'section_three_section_three_seven_title','Detecting Spam in Emails'),(168964,4787,'_section_three_section_three_seven_title','field_631708da2b1d6'),(168965,4787,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168966,4787,'_section_three_section_three_seven_content','field_631708f62b1d7'),(168967,4787,'section_three_section_three_eight_icon','4694'),(168968,4787,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(168969,4787,'section_three_section_three_eight_title','Analytics'),(168970,4787,'_section_three_section_three_eight_title','field_631709462b1da'),(168971,4787,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(168972,4787,'_section_three_section_three_eight_content','field_6317095e2b1db'),(168973,4787,'section_three',''),(168974,4787,'_section_three','field_6316fcf4f751a'),(168975,4787,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(168976,4787,'_section_four_section_four_content','field_63170ac9aa9a2'),(168977,4787,'section_four_section_four_button_text','Book a consultation now'),(168978,4787,'_section_four_section_four_button_text','field_63170b08aa9a3'),(168979,4787,'section_four',''),(168980,4787,'_section_four','field_63170a81aa9a1'),(168981,4787,'section_five_section_five_title','We listen. We learn. We inform.'),(168982,4787,'_section_five_section_five_title','field_63170b8564fc2'),(168983,4787,'section_five_section_five_quote','

76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.

'),(168984,4787,'_section_five_section_five_quote','field_632013fd76a3e'),(168985,4787,'section_five_section_five_footer','forbes.com'),(168986,4787,'_section_five_section_five_footer','field_63170bad64fc4'),(168987,4787,'section_five',''),(168988,4787,'_section_five','field_63170b5f64fc1'),(168989,4787,'footer_title','We treat your business like our own.'),(168990,4787,'_footer_title','field_63170f4c8cc9a'),(168991,4787,'footer_button_text','Let\'s talk!'),(168992,4787,'_footer_button_text','field_63170f6f8cc9b'),(168993,4787,'top_title_1','CLOUD NATIVE SOLUTIONS'),(168994,4787,'_top_title_1','field_631ed55492adc'),(168995,4787,'top_title_page','CLOUD NATIVE SOLUTIONS'),(168996,4787,'_top_title_page','field_631ed55492adc'),(169003,4788,'top-image',''),(169004,4788,'_top-image','field_5c488d805f5d4'),(169005,4788,'top_title',''),(169006,4788,'_top_title','field_5edfac92f4226'),(169007,4788,'top-text',''),(169008,4788,'_top-text','field_5c488e575f5d5'),(169009,4788,'features',''),(169010,4788,'_features','field_5c4890bc3ae1f'),(169011,4788,'about-title',''),(169012,4788,'_about-title','field_5c488e7a5f5d6'),(169013,4788,'about-text',''),(169014,4788,'_about-text','field_5c488e945f5d7'),(169015,4788,'problems',''),(169016,4788,'_problems','field_5c488ec75f5d8'),(169017,4788,'solutions',''),(169018,4788,'_solutions','field_5c488ed95f5d9'),(169019,4788,'difference',''),(169020,4788,'_difference','field_5c488eed5f5da'),(169021,4788,'panel',''),(169022,4788,'_panel','field_5c488f195f5db'),(169023,4788,'more-text',''),(169024,4788,'_more-text','field_5c488f8f5f5df'),(169025,4788,'phrase',''),(169026,4788,'_phrase','field_5c488faf5f5e0'),(169027,4788,'author',''),(169028,4788,'_author','field_5c488fba5f5e1'),(169029,4788,'top_description','Machine Learning'),(169030,4788,'_top_description','field_63170e008cc99'),(169031,4788,'top_background_desktop','4677'),(169032,4788,'_top_background_desktop','field_631eb1728b709'),(169033,4788,'top_background_mobile','4677'),(169034,4788,'_top_background_mobile','field_631eb1988b70a'),(169035,4788,'section_one_section_one_breadcrumb','THE FUTURE'),(169036,4788,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(169037,4788,'section_one_section_one_title','

How intelligent is your
\r\nbusiness?

'),(169038,4788,'_section_one_section_one_title','field_6316f2764091e'),(169039,4788,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(169040,4788,'_section_one_section_one_content','field_6316f2934091f'),(169041,4788,'section_one_section_one_image','4679'),(169042,4788,'_section_one_section_one_image','field_6316f2ab40920'),(169043,4788,'section_one_section_one_button_text','Book a consultation now'),(169044,4788,'_section_one_section_one_button_text','field_6316f2ca40921'),(169045,4788,'section_one',''),(169046,4788,'_section_one','field_6316f7ba1cd27'),(169047,4788,'section_two_section_two_button_text','Book a consultation now'),(169048,4788,'_section_two_section_two_button_text','field_6316fe1ff751b'),(169049,4788,'section_two_section_two_tab_one_header_title','Problems'),(169050,4788,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(169051,4788,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(169052,4788,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(169053,4788,'section_two_section_two_tab_one_image','4680'),(169054,4788,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(169055,4788,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(169056,4788,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(169057,4788,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(169058,4788,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(169059,4788,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(169060,4788,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(169061,4788,'section_two_section_two_tab_two_header_title','Solutions'),(169062,4788,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(169063,4788,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(169064,4788,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(169065,4788,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(169066,4788,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(169067,4788,'section_two_section_two_tab_two_content_icon_1','4683'),(169068,4788,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(169069,4788,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(169070,4788,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(169071,4788,'section_two_section_two_tab_two_content_icon_2','4684'),(169072,4788,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(169073,4788,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(169074,4788,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(169075,4788,'section_two_section_two_tab_two_content_icon_3','4685'),(169076,4788,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(169077,4788,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(169078,4788,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(169079,4788,'section_two_section_two_tab_two_content_icon_4','4686'),(169080,4788,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(169081,4788,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(169082,4788,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(169083,4788,'section_two_section_two_tab_three_header_title','Difference'),(169084,4788,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(169085,4788,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(169086,4788,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(169087,4788,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(169088,4788,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(169089,4788,'section_two_section_two_tab_three_image','4705'),(169090,4788,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(169091,4788,'section_two',''),(169092,4788,'_section_two','field_6316fa2531589'),(169093,4788,'section_three_section_three_title','Trusted Relationships'),(169094,4788,'_section_three_section_three_title','field_6316febdf751c'),(169095,4788,'section_three_section_three_one_icon','4687'),(169096,4788,'_section_three_section_three_one_icon','field_6316fefff751e'),(169097,4788,'section_three_section_three_one_title','Data Entry Automation'),(169098,4788,'_section_three_section_three_one_title','field_6316ff1cf751f'),(169099,4788,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169100,4788,'_section_three_section_three_one_content','field_6316ff29f7520'),(169101,4788,'section_three_section_three_two_icon','4688'),(169102,4788,'_section_three_section_three_two_icon','field_6316ff77f7523'),(169103,4788,'section_three_section_three_two_title','Product Recommendation'),(169104,4788,'_section_three_section_three_two_title','field_6316ff90f7524'),(169105,4788,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169106,4788,'_section_three_section_three_two_content','field_6316ff5df7522'),(169107,4788,'section_three_section_three_three_icon','4689'),(169108,4788,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(169109,4788,'section_three_section_three_three_title','Medical Diagnosis'),(169110,4788,'_section_three_section_three_three_title','field_6316fff5f7527'),(169111,4788,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169112,4788,'_section_three_section_three_three_content','field_63170010f7528'),(169113,4788,'section_three_section_three_four_icon','4690'),(169114,4788,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(169115,4788,'section_three_section_three_four_title','Clients: Who is buying what'),(169116,4788,'_section_three_section_three_four_title','field_631707992b1ca'),(169117,4788,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169118,4788,'_section_three_section_three_four_content','field_631707b42b1cb'),(169119,4788,'section_three_section_three_five_icon','4691'),(169120,4788,'_section_three_section_three_five_icon','field_631707e52b1cd'),(169121,4788,'section_three_section_three_five_title','User Behavior'),(169122,4788,'_section_three_section_three_five_title','field_631708002b1ce'),(169123,4788,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169124,4788,'_section_three_section_three_five_content','field_6317081c2b1cf'),(169125,4788,'section_three_section_three_six_icon','4692'),(169126,4788,'_section_three_section_three_six_icon','field_631708572b1d1'),(169127,4788,'section_three_section_three_six_title','BI: Automated Reporting'),(169128,4788,'_section_three_section_three_six_title','field_631708712b1d2'),(169129,4788,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169130,4788,'_section_three_section_three_six_content','field_6317088d2b1d3'),(169131,4788,'section_three_section_three_seven_icon','4693'),(169132,4788,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(169133,4788,'section_three_section_three_seven_title','Detecting Spam in Emails'),(169134,4788,'_section_three_section_three_seven_title','field_631708da2b1d6'),(169135,4788,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169136,4788,'_section_three_section_three_seven_content','field_631708f62b1d7'),(169137,4788,'section_three_section_three_eight_icon','4694'),(169138,4788,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(169139,4788,'section_three_section_three_eight_title','Analytics'),(169140,4788,'_section_three_section_three_eight_title','field_631709462b1da'),(169141,4788,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169142,4788,'_section_three_section_three_eight_content','field_6317095e2b1db'),(169143,4788,'section_three',''),(169144,4788,'_section_three','field_6316fcf4f751a'),(169145,4788,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(169146,4788,'_section_four_section_four_content','field_63170ac9aa9a2'),(169147,4788,'section_four_section_four_button_text','Book a consultation now'),(169148,4788,'_section_four_section_four_button_text','field_63170b08aa9a3'),(169149,4788,'section_four',''),(169150,4788,'_section_four','field_63170a81aa9a1'),(169151,4788,'section_five_section_five_title','We listen. We learn. We inform.'),(169152,4788,'_section_five_section_five_title','field_63170b8564fc2'),(169153,4788,'section_five_section_five_quote','

“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”

'),(169154,4788,'_section_five_section_five_quote','field_632013fd76a3e'),(169155,4788,'section_five_section_five_footer','forbes.com'),(169156,4788,'_section_five_section_five_footer','field_63170bad64fc4'),(169157,4788,'section_five',''),(169158,4788,'_section_five','field_63170b5f64fc1'),(169159,4788,'footer_title','We treat your business like our own.'),(169160,4788,'_footer_title','field_63170f4c8cc9a'),(169161,4788,'footer_button_text','Let\'s talk!'),(169162,4788,'_footer_button_text','field_63170f6f8cc9b'),(169163,4788,'top_title_1','CLOUD NATIVE SOLUTIONS'),(169164,4788,'_top_title_1','field_631ed55492adc'),(169165,4788,'top_title_page','CLOUD NATIVE SOLUTIONS'),(169166,4788,'_top_title_page','field_631ed55492adc'),(169170,4630,'_pinterest_shares','0'),(169171,4630,'_total_shares','0'),(169173,4631,'_pinterest_shares','0'),(169174,4631,'_total_shares','0'),(169176,4632,'_pinterest_shares','0'),(169177,4632,'_total_shares','0'),(169182,4622,'_pinterest_shares','0'),(169183,4622,'_total_shares','0'),(169185,4789,'top_title','Kubernetes Professional Services'),(169186,4789,'_top_title','field_6317168918e96'),(169187,4789,'top_description','CLOUD NATIVE SOLUTIONS'),(169188,4789,'_top_description','field_6317169e18e97'),(169189,4789,'section_one_section_one_breadcrumb','KCSP'),(169190,4789,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(169191,4789,'section_one_section_one_title','

Kubernetes Certified Service Provider

'),(169192,4789,'_section_one_section_one_title','field_6317172018e9a'),(169193,4789,'section_one_section_one_image','4775'),(169194,4789,'_section_one_section_one_image','field_63171ca018e9c'),(169195,4789,'section_one_section_one_content','

Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.

\r\n
\r\n
 
\r\n
'),(169196,4789,'_section_one_section_one_content','field_6317174118e9b'),(169197,4789,'section_one_section_one_navigation_one','

Cloud Native Applications

\r\n
\r\n
 
\r\n
'),(169198,4789,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(169199,4789,'section_one_section_one_navigation_two','

Cloud Native DevOps

\r\n
\r\n
 
\r\n
'),(169200,4789,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(169201,4789,'section_one_section_one_navigation_three','

Cloud Native Machine Learning

\r\n
\r\n
 
\r\n
'),(169202,4789,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(169203,4789,'section_one_section_one_button_text','Book Consultation Now'),(169204,4789,'_section_one_section_one_button_text','field_63171dc918ea0'),(169205,4789,'section_one',''),(169206,4789,'_section_one','field_631716de18e98'),(169207,4789,'section_two_section_two_title','Our Services'),(169208,4789,'_section_two_section_two_title','field_63171e1457be9'),(169209,4789,'section_two_section_two_icon_one','4734'),(169210,4789,'_section_two_section_two_icon_one','field_63171e2c57bea'),(169211,4789,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(169212,4789,'_section_two_section_two_title_one','field_63171e5f57beb'),(169213,4789,'section_two_section_two_icon_two','4741'),(169214,4789,'_section_two_section_two_icon_two','field_63171e7357bec'),(169215,4789,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(169216,4789,'_section_two_section_two_title_two','field_63171ea157bee'),(169217,4789,'section_two_section_two_icon_three','4736'),(169218,4789,'_section_two_section_two_icon_three','field_63171e8557bed'),(169219,4789,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(169220,4789,'_section_two_section_two_title_three','field_63171ec257bef'),(169221,4789,'section_two_section_two_icon_four','4738'),(169222,4789,'_section_two_section_two_icon_four','field_63171ee257bf0'),(169223,4789,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(169224,4789,'_section_two_section_two_title_four','field_63171ef757bf1'),(169225,4789,'section_two_section_two_icon_five','4744'),(169226,4789,'_section_two_section_two_icon_five','field_63171f2857bf3'),(169227,4789,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(169228,4789,'_section_two_section_two_title_five','field_63171f3957bf4'),(169229,4789,'section_two_section_two_icon_six','4746'),(169230,4789,'_section_two_section_two_icon_six','field_63171f5057bf5'),(169231,4789,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(169232,4789,'_section_two_section_two_title_six','field_63171f6657bf6'),(169233,4789,'section_two_section_two_icon_seven','4748'),(169234,4789,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(169235,4789,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(169236,4789,'_section_two_section_two_title_seven','field_63171f9757bf8'),(169237,4789,'section_two_section_two_icon_eight','4750'),(169238,4789,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(169239,4789,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(169240,4789,'_section_two_section_two_title_eight','field_63171fc057bfa'),(169241,4789,'section_two',''),(169242,4789,'_section_two','field_63171dfb57be8'),(169243,4789,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(169244,4789,'_section_three_section_three_breadcrumb','field_631723036988b'),(169245,4789,'section_three_section_three_title','

Plan Your Next Kubernetes Project
\r\nwith Translucent

'),(169246,4789,'_section_three_section_three_title','field_631723176988c'),(169247,4789,'section_three_section_three_image','4779'),(169248,4789,'_section_three_section_three_image','field_631723ac6988e'),(169249,4789,'section_three_section_three_content','

Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.

\r\n
\r\n
 
\r\n
'),(169250,4789,'_section_three_section_three_content','field_631723906988d'),(169251,4789,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(169252,4789,'_section_three_section_three_footer','field_631723c36988f'),(169253,4789,'section_three_section_three_button_text','Book Consultation Now'),(169254,4789,'_section_three_section_three_button_text','field_631723d769890'),(169255,4789,'section_three',''),(169256,4789,'_section_three','field_631722b96988a'),(169257,4789,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(169258,4789,'_section_four_section_four_breadcrumb','field_6317271523757'),(169259,4789,'section_four_section_four_title','

Driving Digital Transformation with Containers and Kubernetes

'),(169260,4789,'_section_four_section_four_title','field_6317271523758'),(169261,4789,'section_four_section_four_image','4776'),(169262,4789,'_section_four_section_four_image','field_6317271523759'),(169263,4789,'section_four_section_four_content','

Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.

\r\n
\r\n
 
\r\n
'),(169264,4789,'_section_four_section_four_content','field_631727152375a'),(169265,4789,'section_four_section_four_footer','Build - Rebuild - Replatform'),(169266,4789,'_section_four_section_four_footer','field_631727152375b'),(169267,4789,'section_four',''),(169268,4789,'_section_four','field_6317271523756'),(169269,4789,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(169270,4789,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(169271,4789,'section_five_section_five_title','

24/7 support and maintenance
\r\nwith our site reliability engineering services

'),(169272,4789,'_section_five_section_five_title','field_631727bbd69dd'),(169273,4789,'section_five_section_five_image','4777'),(169274,4789,'_section_five_section_five_image','field_631727bbd69de'),(169275,4789,'section_five_section_five_content','

From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.

'),(169276,4789,'_section_five_section_five_content','field_631727bbd69df'),(169277,4789,'section_five_section_five_footer',''),(169278,4789,'_section_five_section_five_footer','field_631727bbd69e0'),(169279,4789,'section_five',''),(169280,4789,'_section_five','field_631727bbd69db'),(169281,4789,'footer_title','We treat your business like our own.'),(169282,4789,'_footer_title','field_631729e2753c6'),(169283,4789,'footer_button_text','Let\'s talk!'),(169284,4789,'_footer_button_text','field_63172a06753c7'),(169285,4789,'section_five_section_five_icon_one','4752'),(169286,4789,'_section_five_section_five_icon_one','field_631727bbd69e0'),(169287,4789,'section_five_section_five_icon_text_one','

SRE - Site Reliability Engineering

'),(169288,4789,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(169289,4789,'section_five_section_five_icon_two','4754'),(169290,4789,'_section_five_section_five_icon_two','field_631ef504912c5'),(169291,4789,'section_five_section_five_icon_text_two','

SLA - Service Level Agreements

'),(169292,4789,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(169293,4789,'section_five_section_five_icon_three','4756'),(169294,4789,'_section_five_section_five_icon_three','field_631ef510912c6'),(169295,4789,'section_five_section_five_icon_text_three','

SLO - Service Level Objectives

'),(169296,4789,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(169297,4789,'section_five_section_five_icon_four','4758'),(169298,4789,'_section_five_section_five_icon_four','field_631ef51c912c7'),(169299,4789,'section_five_section_five_icon_text_four','

SLI - Service Level Indicator

'),(169300,4789,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(169304,4790,'top_title','Kubernetes Professional Services'),(169305,4790,'_top_title','field_6317168918e96'),(169306,4790,'top_description','CLOUD NATIVE SOLUTIONS'),(169307,4790,'_top_description','field_6317169e18e97'),(169308,4790,'section_one_section_one_breadcrumb','KCSP'),(169309,4790,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(169310,4790,'section_one_section_one_title','

Kubernetes Certified Service Provider

'),(169311,4790,'_section_one_section_one_title','field_6317172018e9a'),(169312,4790,'section_one_section_one_image','4775'),(169313,4790,'_section_one_section_one_image','field_63171ca018e9c'),(169314,4790,'section_one_section_one_content','

Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.

\r\n
\r\n
 
\r\n
'),(169315,4790,'_section_one_section_one_content','field_6317174118e9b'),(169316,4790,'section_one_section_one_navigation_one','
Cloud Native Applications
'),(169317,4790,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(169318,4790,'section_one_section_one_navigation_two','
Cloud Native DevOps
'),(169319,4790,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(169320,4790,'section_one_section_one_navigation_three','
Cloud Native Machine Learning
'),(169321,4790,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(169322,4790,'section_one_section_one_button_text','Book Consultation Now'),(169323,4790,'_section_one_section_one_button_text','field_63171dc918ea0'),(169324,4790,'section_one',''),(169325,4790,'_section_one','field_631716de18e98'),(169326,4790,'section_two_section_two_title','Our Services'),(169327,4790,'_section_two_section_two_title','field_63171e1457be9'),(169328,4790,'section_two_section_two_icon_one','4734'),(169329,4790,'_section_two_section_two_icon_one','field_63171e2c57bea'),(169330,4790,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(169331,4790,'_section_two_section_two_title_one','field_63171e5f57beb'),(169332,4790,'section_two_section_two_icon_two','4741'),(169333,4790,'_section_two_section_two_icon_two','field_63171e7357bec'),(169334,4790,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(169335,4790,'_section_two_section_two_title_two','field_63171ea157bee'),(169336,4790,'section_two_section_two_icon_three','4736'),(169337,4790,'_section_two_section_two_icon_three','field_63171e8557bed'),(169338,4790,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(169339,4790,'_section_two_section_two_title_three','field_63171ec257bef'),(169340,4790,'section_two_section_two_icon_four','4738'),(169341,4790,'_section_two_section_two_icon_four','field_63171ee257bf0'),(169342,4790,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(169343,4790,'_section_two_section_two_title_four','field_63171ef757bf1'),(169344,4790,'section_two_section_two_icon_five','4744'),(169345,4790,'_section_two_section_two_icon_five','field_63171f2857bf3'),(169346,4790,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(169347,4790,'_section_two_section_two_title_five','field_63171f3957bf4'),(169348,4790,'section_two_section_two_icon_six','4746'),(169349,4790,'_section_two_section_two_icon_six','field_63171f5057bf5'),(169350,4790,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(169351,4790,'_section_two_section_two_title_six','field_63171f6657bf6'),(169352,4790,'section_two_section_two_icon_seven','4748'),(169353,4790,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(169354,4790,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(169355,4790,'_section_two_section_two_title_seven','field_63171f9757bf8'),(169356,4790,'section_two_section_two_icon_eight','4750'),(169357,4790,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(169358,4790,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(169359,4790,'_section_two_section_two_title_eight','field_63171fc057bfa'),(169360,4790,'section_two',''),(169361,4790,'_section_two','field_63171dfb57be8'),(169362,4790,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(169363,4790,'_section_three_section_three_breadcrumb','field_631723036988b'),(169364,4790,'section_three_section_three_title','

Plan Your Next Kubernetes Project
\r\nwith Translucent

'),(169365,4790,'_section_three_section_three_title','field_631723176988c'),(169366,4790,'section_three_section_three_image','4779'),(169367,4790,'_section_three_section_three_image','field_631723ac6988e'),(169368,4790,'section_three_section_three_content','

Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.

\r\n
\r\n
 
\r\n
'),(169369,4790,'_section_three_section_three_content','field_631723906988d'),(169370,4790,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(169371,4790,'_section_three_section_three_footer','field_631723c36988f'),(169372,4790,'section_three_section_three_button_text','Book Consultation Now'),(169373,4790,'_section_three_section_three_button_text','field_631723d769890'),(169374,4790,'section_three',''),(169375,4790,'_section_three','field_631722b96988a'),(169376,4790,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(169377,4790,'_section_four_section_four_breadcrumb','field_6317271523757'),(169378,4790,'section_four_section_four_title','

Driving Digital Transformation with Containers and Kubernetes

'),(169379,4790,'_section_four_section_four_title','field_6317271523758'),(169380,4790,'section_four_section_four_image','4776'),(169381,4790,'_section_four_section_four_image','field_6317271523759'),(169382,4790,'section_four_section_four_content','

Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.

\r\n
\r\n
 
\r\n
'),(169383,4790,'_section_four_section_four_content','field_631727152375a'),(169384,4790,'section_four_section_four_footer','Build - Rebuild - Replatform'),(169385,4790,'_section_four_section_four_footer','field_631727152375b'),(169386,4790,'section_four',''),(169387,4790,'_section_four','field_6317271523756'),(169388,4790,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(169389,4790,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(169390,4790,'section_five_section_five_title','

24/7 support and maintenance
\r\nwith our site reliability engineering services

'),(169391,4790,'_section_five_section_five_title','field_631727bbd69dd'),(169392,4790,'section_five_section_five_image','4777'),(169393,4790,'_section_five_section_five_image','field_631727bbd69de'),(169394,4790,'section_five_section_five_content','

From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.

'),(169395,4790,'_section_five_section_five_content','field_631727bbd69df'),(169396,4790,'section_five_section_five_footer',''),(169397,4790,'_section_five_section_five_footer','field_631727bbd69e0'),(169398,4790,'section_five',''),(169399,4790,'_section_five','field_631727bbd69db'),(169400,4790,'footer_title','We treat your business like our own.'),(169401,4790,'_footer_title','field_631729e2753c6'),(169402,4790,'footer_button_text','Let\'s talk!'),(169403,4790,'_footer_button_text','field_63172a06753c7'),(169404,4790,'section_five_section_five_icon_one','4752'),(169405,4790,'_section_five_section_five_icon_one','field_631727bbd69e0'),(169406,4790,'section_five_section_five_icon_text_one','

SRE - Site Reliability Engineering

'),(169407,4790,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(169408,4790,'section_five_section_five_icon_two','4754'),(169409,4790,'_section_five_section_five_icon_two','field_631ef504912c5'),(169410,4790,'section_five_section_five_icon_text_two','

SLA - Service Level Agreements

'),(169411,4790,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(169412,4790,'section_five_section_five_icon_three','4756'),(169413,4790,'_section_five_section_five_icon_three','field_631ef510912c6'),(169414,4790,'section_five_section_five_icon_text_three','

SLO - Service Level Objectives

'),(169415,4790,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(169416,4790,'section_five_section_five_icon_four','4758'),(169417,4790,'_section_five_section_five_icon_four','field_631ef51c912c7'),(169418,4790,'section_five_section_five_icon_text_four','

SLI - Service Level Indicator

'),(169419,4790,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(169420,4708,'_pinterest_shares','0'),(169421,4708,'_total_shares','0'),(169422,4708,'swp_cache_timestamp','461958'),(169428,4792,'top-image',''),(169429,4792,'_top-image','field_5c488d805f5d4'),(169430,4792,'top_title',''),(169431,4792,'_top_title','field_5edfac92f4226'),(169432,4792,'top-text',''),(169433,4792,'_top-text','field_5c488e575f5d5'),(169434,4792,'features',''),(169435,4792,'_features','field_5c4890bc3ae1f'),(169436,4792,'about-title',''),(169437,4792,'_about-title','field_5c488e7a5f5d6'),(169438,4792,'about-text',''),(169439,4792,'_about-text','field_5c488e945f5d7'),(169440,4792,'problems',''),(169441,4792,'_problems','field_5c488ec75f5d8'),(169442,4792,'solutions',''),(169443,4792,'_solutions','field_5c488ed95f5d9'),(169444,4792,'difference',''),(169445,4792,'_difference','field_5c488eed5f5da'),(169446,4792,'panel',''),(169447,4792,'_panel','field_5c488f195f5db'),(169448,4792,'more-text',''),(169449,4792,'_more-text','field_5c488f8f5f5df'),(169450,4792,'phrase',''),(169451,4792,'_phrase','field_5c488faf5f5e0'),(169452,4792,'author',''),(169453,4792,'_author','field_5c488fba5f5e1'),(169454,4792,'top_description','Machine Learning'),(169455,4792,'_top_description','field_63170e008cc99'),(169456,4792,'top_background_desktop','4791'),(169457,4792,'_top_background_desktop','field_631eb1728b709'),(169458,4792,'top_background_mobile','4677'),(169459,4792,'_top_background_mobile','field_631eb1988b70a'),(169460,4792,'section_one_section_one_breadcrumb','THE FUTURE'),(169461,4792,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(169462,4792,'section_one_section_one_title','

How intelligent is your
\r\nbusiness?

'),(169463,4792,'_section_one_section_one_title','field_6316f2764091e'),(169464,4792,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(169465,4792,'_section_one_section_one_content','field_6316f2934091f'),(169466,4792,'section_one_section_one_image','4679'),(169467,4792,'_section_one_section_one_image','field_6316f2ab40920'),(169468,4792,'section_one_section_one_button_text','Book a consultation now'),(169469,4792,'_section_one_section_one_button_text','field_6316f2ca40921'),(169470,4792,'section_one',''),(169471,4792,'_section_one','field_6316f7ba1cd27'),(169472,4792,'section_two_section_two_button_text','Book a consultation now'),(169473,4792,'_section_two_section_two_button_text','field_6316fe1ff751b'),(169474,4792,'section_two_section_two_tab_one_header_title','Problems'),(169475,4792,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(169476,4792,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(169477,4792,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(169478,4792,'section_two_section_two_tab_one_image','4680'),(169479,4792,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(169480,4792,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(169481,4792,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(169482,4792,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(169483,4792,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(169484,4792,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(169485,4792,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(169486,4792,'section_two_section_two_tab_two_header_title','Solutions'),(169487,4792,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(169488,4792,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(169489,4792,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(169490,4792,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(169491,4792,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(169492,4792,'section_two_section_two_tab_two_content_icon_1','4683'),(169493,4792,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(169494,4792,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(169495,4792,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(169496,4792,'section_two_section_two_tab_two_content_icon_2','4684'),(169497,4792,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(169498,4792,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(169499,4792,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(169500,4792,'section_two_section_two_tab_two_content_icon_3','4685'),(169501,4792,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(169502,4792,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(169503,4792,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(169504,4792,'section_two_section_two_tab_two_content_icon_4','4686'),(169505,4792,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(169506,4792,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(169507,4792,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(169508,4792,'section_two_section_two_tab_three_header_title','Difference'),(169509,4792,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(169510,4792,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(169511,4792,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(169512,4792,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(169513,4792,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(169514,4792,'section_two_section_two_tab_three_image','4705'),(169515,4792,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(169516,4792,'section_two',''),(169517,4792,'_section_two','field_6316fa2531589'),(169518,4792,'section_three_section_three_title','Trusted Relationships'),(169519,4792,'_section_three_section_three_title','field_6316febdf751c'),(169520,4792,'section_three_section_three_one_icon','4687'),(169521,4792,'_section_three_section_three_one_icon','field_6316fefff751e'),(169522,4792,'section_three_section_three_one_title','Data Entry Automation'),(169523,4792,'_section_three_section_three_one_title','field_6316ff1cf751f'),(169524,4792,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169525,4792,'_section_three_section_three_one_content','field_6316ff29f7520'),(169526,4792,'section_three_section_three_two_icon','4688'),(169527,4792,'_section_three_section_three_two_icon','field_6316ff77f7523'),(169528,4792,'section_three_section_three_two_title','Product Recommendation'),(169529,4792,'_section_three_section_three_two_title','field_6316ff90f7524'),(169530,4792,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169531,4792,'_section_three_section_three_two_content','field_6316ff5df7522'),(169532,4792,'section_three_section_three_three_icon','4689'),(169533,4792,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(169534,4792,'section_three_section_three_three_title','Medical Diagnosis'),(169535,4792,'_section_three_section_three_three_title','field_6316fff5f7527'),(169536,4792,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169537,4792,'_section_three_section_three_three_content','field_63170010f7528'),(169538,4792,'section_three_section_three_four_icon','4690'),(169539,4792,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(169540,4792,'section_three_section_three_four_title','Clients: Who is buying what'),(169541,4792,'_section_three_section_three_four_title','field_631707992b1ca'),(169542,4792,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169543,4792,'_section_three_section_three_four_content','field_631707b42b1cb'),(169544,4792,'section_three_section_three_five_icon','4691'),(169545,4792,'_section_three_section_three_five_icon','field_631707e52b1cd'),(169546,4792,'section_three_section_three_five_title','User Behavior'),(169547,4792,'_section_three_section_three_five_title','field_631708002b1ce'),(169548,4792,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169549,4792,'_section_three_section_three_five_content','field_6317081c2b1cf'),(169550,4792,'section_three_section_three_six_icon','4692'),(169551,4792,'_section_three_section_three_six_icon','field_631708572b1d1'),(169552,4792,'section_three_section_three_six_title','BI: Automated Reporting'),(169553,4792,'_section_three_section_three_six_title','field_631708712b1d2'),(169554,4792,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169555,4792,'_section_three_section_three_six_content','field_6317088d2b1d3'),(169556,4792,'section_three_section_three_seven_icon','4693'),(169557,4792,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(169558,4792,'section_three_section_three_seven_title','Detecting Spam in Emails'),(169559,4792,'_section_three_section_three_seven_title','field_631708da2b1d6'),(169560,4792,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169561,4792,'_section_three_section_three_seven_content','field_631708f62b1d7'),(169562,4792,'section_three_section_three_eight_icon','4694'),(169563,4792,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(169564,4792,'section_three_section_three_eight_title','Analytics'),(169565,4792,'_section_three_section_three_eight_title','field_631709462b1da'),(169566,4792,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169567,4792,'_section_three_section_three_eight_content','field_6317095e2b1db'),(169568,4792,'section_three',''),(169569,4792,'_section_three','field_6316fcf4f751a'),(169570,4792,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(169571,4792,'_section_four_section_four_content','field_63170ac9aa9a2'),(169572,4792,'section_four_section_four_button_text','Book a consultation now'),(169573,4792,'_section_four_section_four_button_text','field_63170b08aa9a3'),(169574,4792,'section_four',''),(169575,4792,'_section_four','field_63170a81aa9a1'),(169576,4792,'section_five_section_five_title','We listen. We learn. We inform.'),(169577,4792,'_section_five_section_five_title','field_63170b8564fc2'),(169578,4792,'section_five_section_five_quote','

“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”

'),(169579,4792,'_section_five_section_five_quote','field_632013fd76a3e'),(169580,4792,'section_five_section_five_footer','forbes.com'),(169581,4792,'_section_five_section_five_footer','field_63170bad64fc4'),(169582,4792,'section_five',''),(169583,4792,'_section_five','field_63170b5f64fc1'),(169584,4792,'footer_title','We treat your business like our own.'),(169585,4792,'_footer_title','field_63170f4c8cc9a'),(169586,4792,'footer_button_text','Let\'s talk!'),(169587,4792,'_footer_button_text','field_63170f6f8cc9b'),(169588,4792,'top_title_1','CLOUD NATIVE SOLUTIONS'),(169589,4792,'_top_title_1','field_631ed55492adc'),(169590,4792,'top_title_page','CLOUD NATIVE SOLUTIONS'),(169591,4792,'_top_title_page','field_631ed55492adc'),(169595,4793,'top-image',''),(169596,4793,'_top-image','field_5c488d805f5d4'),(169597,4793,'top_title',''),(169598,4793,'_top_title','field_5edfac92f4226'),(169599,4793,'top-text',''),(169600,4793,'_top-text','field_5c488e575f5d5'),(169601,4793,'features',''),(169602,4793,'_features','field_5c4890bc3ae1f'),(169603,4793,'about-title',''),(169604,4793,'_about-title','field_5c488e7a5f5d6'),(169605,4793,'about-text',''),(169606,4793,'_about-text','field_5c488e945f5d7'),(169607,4793,'problems',''),(169608,4793,'_problems','field_5c488ec75f5d8'),(169609,4793,'solutions',''),(169610,4793,'_solutions','field_5c488ed95f5d9'),(169611,4793,'difference',''),(169612,4793,'_difference','field_5c488eed5f5da'),(169613,4793,'panel',''),(169614,4793,'_panel','field_5c488f195f5db'),(169615,4793,'more-text',''),(169616,4793,'_more-text','field_5c488f8f5f5df'),(169617,4793,'phrase',''),(169618,4793,'_phrase','field_5c488faf5f5e0'),(169619,4793,'author',''),(169620,4793,'_author','field_5c488fba5f5e1'),(169621,4793,'top_description','Machine Learning'),(169622,4793,'_top_description','field_63170e008cc99'),(169623,4793,'top_background_desktop','4791'),(169624,4793,'_top_background_desktop','field_631eb1728b709'),(169625,4793,'top_background_mobile','4791'),(169626,4793,'_top_background_mobile','field_631eb1988b70a'),(169627,4793,'section_one_section_one_breadcrumb','THE FUTURE'),(169628,4793,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(169629,4793,'section_one_section_one_title','

How intelligent is your
\r\nbusiness?

'),(169630,4793,'_section_one_section_one_title','field_6316f2764091e'),(169631,4793,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(169632,4793,'_section_one_section_one_content','field_6316f2934091f'),(169633,4793,'section_one_section_one_image','4679'),(169634,4793,'_section_one_section_one_image','field_6316f2ab40920'),(169635,4793,'section_one_section_one_button_text','Book a consultation now'),(169636,4793,'_section_one_section_one_button_text','field_6316f2ca40921'),(169637,4793,'section_one',''),(169638,4793,'_section_one','field_6316f7ba1cd27'),(169639,4793,'section_two_section_two_button_text','Book a consultation now'),(169640,4793,'_section_two_section_two_button_text','field_6316fe1ff751b'),(169641,4793,'section_two_section_two_tab_one_header_title','Problems'),(169642,4793,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(169643,4793,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(169644,4793,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(169645,4793,'section_two_section_two_tab_one_image','4680'),(169646,4793,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(169647,4793,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(169648,4793,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(169649,4793,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(169650,4793,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(169651,4793,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(169652,4793,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(169653,4793,'section_two_section_two_tab_two_header_title','Solutions'),(169654,4793,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(169655,4793,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(169656,4793,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(169657,4793,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(169658,4793,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(169659,4793,'section_two_section_two_tab_two_content_icon_1','4683'),(169660,4793,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(169661,4793,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(169662,4793,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(169663,4793,'section_two_section_two_tab_two_content_icon_2','4684'),(169664,4793,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(169665,4793,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(169666,4793,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(169667,4793,'section_two_section_two_tab_two_content_icon_3','4685'),(169668,4793,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(169669,4793,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(169670,4793,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(169671,4793,'section_two_section_two_tab_two_content_icon_4','4686'),(169672,4793,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(169673,4793,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(169674,4793,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(169675,4793,'section_two_section_two_tab_three_header_title','Difference'),(169676,4793,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(169677,4793,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(169678,4793,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(169679,4793,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(169680,4793,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(169681,4793,'section_two_section_two_tab_three_image','4705'),(169682,4793,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(169683,4793,'section_two',''),(169684,4793,'_section_two','field_6316fa2531589'),(169685,4793,'section_three_section_three_title','Trusted Relationships'),(169686,4793,'_section_three_section_three_title','field_6316febdf751c'),(169687,4793,'section_three_section_three_one_icon','4687'),(169688,4793,'_section_three_section_three_one_icon','field_6316fefff751e'),(169689,4793,'section_three_section_three_one_title','Data Entry Automation'),(169690,4793,'_section_three_section_three_one_title','field_6316ff1cf751f'),(169691,4793,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169692,4793,'_section_three_section_three_one_content','field_6316ff29f7520'),(169693,4793,'section_three_section_three_two_icon','4688'),(169694,4793,'_section_three_section_three_two_icon','field_6316ff77f7523'),(169695,4793,'section_three_section_three_two_title','Product Recommendation'),(169696,4793,'_section_three_section_three_two_title','field_6316ff90f7524'),(169697,4793,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169698,4793,'_section_three_section_three_two_content','field_6316ff5df7522'),(169699,4793,'section_three_section_three_three_icon','4689'),(169700,4793,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(169701,4793,'section_three_section_three_three_title','Medical Diagnosis'),(169702,4793,'_section_three_section_three_three_title','field_6316fff5f7527'),(169703,4793,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169704,4793,'_section_three_section_three_three_content','field_63170010f7528'),(169705,4793,'section_three_section_three_four_icon','4690'),(169706,4793,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(169707,4793,'section_three_section_three_four_title','Clients: Who is buying what'),(169708,4793,'_section_three_section_three_four_title','field_631707992b1ca'),(169709,4793,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169710,4793,'_section_three_section_three_four_content','field_631707b42b1cb'),(169711,4793,'section_three_section_three_five_icon','4691'),(169712,4793,'_section_three_section_three_five_icon','field_631707e52b1cd'),(169713,4793,'section_three_section_three_five_title','User Behavior'),(169714,4793,'_section_three_section_three_five_title','field_631708002b1ce'),(169715,4793,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169716,4793,'_section_three_section_three_five_content','field_6317081c2b1cf'),(169717,4793,'section_three_section_three_six_icon','4692'),(169718,4793,'_section_three_section_three_six_icon','field_631708572b1d1'),(169719,4793,'section_three_section_three_six_title','BI: Automated Reporting'),(169720,4793,'_section_three_section_three_six_title','field_631708712b1d2'),(169721,4793,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169722,4793,'_section_three_section_three_six_content','field_6317088d2b1d3'),(169723,4793,'section_three_section_three_seven_icon','4693'),(169724,4793,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(169725,4793,'section_three_section_three_seven_title','Detecting Spam in Emails'),(169726,4793,'_section_three_section_three_seven_title','field_631708da2b1d6'),(169727,4793,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169728,4793,'_section_three_section_three_seven_content','field_631708f62b1d7'),(169729,4793,'section_three_section_three_eight_icon','4694'),(169730,4793,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(169731,4793,'section_three_section_three_eight_title','Analytics'),(169732,4793,'_section_three_section_three_eight_title','field_631709462b1da'),(169733,4793,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169734,4793,'_section_three_section_three_eight_content','field_6317095e2b1db'),(169735,4793,'section_three',''),(169736,4793,'_section_three','field_6316fcf4f751a'),(169737,4793,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(169738,4793,'_section_four_section_four_content','field_63170ac9aa9a2'),(169739,4793,'section_four_section_four_button_text','Book a consultation now'),(169740,4793,'_section_four_section_four_button_text','field_63170b08aa9a3'),(169741,4793,'section_four',''),(169742,4793,'_section_four','field_63170a81aa9a1'),(169743,4793,'section_five_section_five_title','We listen. We learn. We inform.'),(169744,4793,'_section_five_section_five_title','field_63170b8564fc2'),(169745,4793,'section_five_section_five_quote','

“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”

'),(169746,4793,'_section_five_section_five_quote','field_632013fd76a3e'),(169747,4793,'section_five_section_five_footer','forbes.com'),(169748,4793,'_section_five_section_five_footer','field_63170bad64fc4'),(169749,4793,'section_five',''),(169750,4793,'_section_five','field_63170b5f64fc1'),(169751,4793,'footer_title','We treat your business like our own.'),(169752,4793,'_footer_title','field_63170f4c8cc9a'),(169753,4793,'footer_button_text','Let\'s talk!'),(169754,4793,'_footer_button_text','field_63170f6f8cc9b'),(169755,4793,'top_title_1','CLOUD NATIVE SOLUTIONS'),(169756,4793,'_top_title_1','field_631ed55492adc'),(169757,4793,'top_title_page','CLOUD NATIVE SOLUTIONS'),(169758,4793,'_top_title_page','field_631ed55492adc'),(169762,4449,'_pinterest_shares','0'),(169763,4449,'_total_shares','0'),(169764,4449,'swp_cache_timestamp','461960'),(169765,4185,'_pinterest_shares','0'),(169766,4185,'_total_shares','0'),(169767,4185,'swp_cache_timestamp','461960'),(169768,4795,'_amp_validated_environment','a:3:{s:5:\"theme\";a:1:{s:11:\"translucent\";s:3:\"1.0\";}s:7:\"plugins\";a:32:{s:7:\"404page\";s:6:\"11.3.1\";s:26:\"advanced-custom-fields-pro\";s:6:\"5.12.2\";s:16:\"tinymce-advanced\";s:5:\"5.6.0\";s:3:\"amp\";s:5:\"2.3.0\";s:17:\"code-syntax-block\";s:5:\"3.1.1\";s:14:\"contact-form-7\";s:5:\"5.5.3\";s:10:\"duplicator\";s:5:\"1.5.0\";s:25:\"embed-calendly-scheduling\";s:3:\"3.0\";s:18:\"youtube-embed-plus\";s:6:\"14.1.2\";s:13:\"header-footer\";s:5:\"3.2.5\";s:6:\"iframe\";s:3:\"4.5\";s:7:\"imagify\";s:3:\"2.0\";s:15:\"cf7-hubspot-pro\";s:5:\"1.2.1\";s:13:\"popup-builder\";s:6:\"4.1.13\";s:34:\"post-tags-and-categories-for-pages\";s:5:\"1.4.1\";s:8:\"raw-html\";s:5:\"1.6.3\";s:11:\"redirection\";s:5:\"5.3.2\";s:11:\"redis-cache\";s:5:\"2.2.0\";s:26:\"reveal-ids-for-wp-admin-25\";s:5:\"1.5.4\";s:34:\"sendgrid-email-delivery-simplified\";s:6:\"1.11.8\";s:9:\"revslider\";s:6:\"6.5.23\";s:14:\"social-warfare\";s:5:\"4.3.0\";s:26:\"ssl-insecure-content-fixer\";s:5:\"2.7.2\";s:11:\"updraftplus\";s:7:\"1.22.19\";s:8:\"wpdiscuz\";s:5:\"7.4.2\";s:15:\"wp-file-manager\";s:5:\"7.1.6\";s:14:\"wp-google-maps\";s:6:\"9.0.10\";s:5:\"wpide\";s:5:\"3.4.1\";s:23:\"wp-phpmyadmin-extension\";s:7:\"5.2.0.7\";s:14:\"duplicate-post\";s:3:\"4.4\";s:13:\"wordpress-seo\";s:4:\"19.1\";s:21:\"wordpress-seo-premium\";s:4:\"17.7\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:6:\"reader\";}}'),(169769,4795,'_amp_queried_object','a:2:{s:2:\"id\";i:4185;s:4:\"type\";s:4:\"post\";}'),(169770,4795,'_amp_stylesheets','[{\"group\":\"amp-custom\",\"original_size\":506,\"final_size\":506,\"element\":{\"name\":\"style\",\"attributes\":[]},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"src\\/MobileRedirection.php\",\"line\":522,\"function\":\"AmpProject\\\\AmpWP\\\\MobileRedirection::add_mobile_version_switcher_styles\",\"hook\":\"amp_post_template_head\",\"priority\":10}],\"priority\":70,\"hash\":\"17b598bde842aecbed799589222fd5f8\",\"parse_time\":0.007145881652832031,\"shake_time\":0.00019884109497070312,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"#amp-mobile-version-switcher\":true},[\"left:0\",\"position:absolute\",\"width:100%\",\"z-index:100\"]],[true,{\"#amp-mobile-version-switcher>a\":true},[\"background-color:#444\",\"border:0\",\"color:#eaeaea\",\"display:block\",\"font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif\",\"font-size:16px\",\"font-weight:600\",\"padding:15px 0\",\"text-align:center\",\"text-decoration:none\"]],[true,{\"#amp-mobile-version-switcher>a:active\":true,\"#amp-mobile-version-switcher>a:focus\":true,\"#amp-mobile-version-switcher>a:hover\":true},[\"text-decoration:underline\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2209,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"social-warfare-block-css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/js\\/post-editor\\/dist\\/blocks.style.build.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"assets\\/js\\/post-editor\\/blocks.php\",\"line\":20,\"function\":\"register_gutenberg_blocks\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social-warfare-block-css\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-post-template-functions.php\",\"line\":84,\"function\":\"amp_post_template_add_block_styles\",\"hook\":\"amp_post_template_head\",\"priority\":10}],\"priority\":30,\"hash\":\"c542eecf74fba8e6b26c437634e5223e\",\"parse_time\":0.010244131088256836,\"shake_time\":0.0001399517059326172,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".social-warfare-admin-block\":false},[\"font-family:\\\"SF Pro Text\\\",\\\"Helvetica\\\",sans-serif\",\"font-size:13px\"]],[false,{\".social-warfare-admin-block .head\":false},[\"width:100%\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".social-warfare-admin-block .head p\":false},[\"font-weight:bold\"]],[false,{\".social-warfare-admin-block .swp-block-icon\":false},[\"margin:0 28px 0 14px\",\"font-size:18px\",\"width:32px\",\"height:32px\"]],[false,{\".social-warfare-block-wrap input\":false,\".social-warfare-block-wrap select\":false},[\"width:100%\"]],[false,{\".swp-active-block\":false},[\"height:100%\"]],[false,{\".swp-active-block input\":false,\".swp-active-block select\":false,\".swp-active-block textarea\":false},[\"display:block\",\"width:100%\",\"padding:5px\",\"height:42px\",\"border:1px solid #e2e4e7\"]],[false,{\".swp-active-block textarea\":false},[\"height:64px\"]],[false,{\".swp-active-block .swp-inner-block-50\":false},[\"width:50%\",\"display:inline-block\",\"padding:0 1px\"]],[false,{\".swp-active-block .head>div\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row no-wrap\",\"flex-flow:row no-wrap\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".swp-active-block .head .swp-block-icon\":false,\".swp-active-block .head .swp-block-title\":false},[\"display:inline-block\"]],[false,{\".swp-active-block p\":false},[\"margin:25px 0 5px 0\"]],[false,{\".swp-active-block .head p\":false},[\"margin:initial\"]],[false,{\".swp-inactive-block\":false},[\"min-height:50px\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".swp-inactive-block code\":false},[\"display:block\",\"width:100%\",\"padding:5px\",\"height:42px\"]],[false,{\".swp-inactive-block .swp-preview\":false},[\"background:#f5f5f5\",\"width:100%\",\"display:block\",\"font-family:\\\"SF Pro Text\\\",\\\"Helvetica\\\",sans-sans-serif\",\"font-size:13px\",\"padding:15px\",\"border-radius:4px\"]],[false,{\".swp-inactive-block .swp-dashicon\":false},[\"margin:0 14px\"]],[false,{\".click-to-tweet-block-wrap textarea[name=\\\"tweetText\\\"]\":false},[\"border-top-right-radius:0px\"]],[false,{\".click-to-tweet-block-wrap .block-characters-remaining\":false},[\"font-size:16px\",\"font-size:13px\",\"font-weight:normal\",\"color:white\",\"padding:5px\",\"padding:5px 15px\",\"border-top-right-radius:4px\",\"border-top-left-radius:4px\",\"background:#30394f\",\"margin:0\",\"float:right\",\"max-width:200px\",\"position:relative\",\"-webkit-transition:all 300ms\",\"-o-transition:all 300ms\",\"transition:all 300ms\"]],[false,{\".click-to-tweet-block-wrap .block-characters-remaining.over-limit\":false},[\"background:#ee464f\",\"color:#fff\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":80574,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"wp-block-library-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/css\\/dist\\/block-library\\/style.min.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":1381,\"function\":\"wp_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-post-template-functions.php\",\"line\":84,\"function\":\"amp_post_template_add_block_styles\",\"hook\":\"amp_post_template_head\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-post-template-functions.php\",\"line\":84,\"function\":\"amp_post_template_add_block_styles\",\"hook\":\"amp_post_template_head\",\"priority\":10}],\"priority\":20,\"hash\":\"db08bb47cd026dcad266bd62ddc38fd8\",\"parse_time\":1.007054090499878,\"shake_time\":0.0007250308990478516,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\"#start-resizable-editor-section\":false},[\"display:none\"]],[false,{\".wp-block-audio\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-audio figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-audio amp-audio\":false},[\"width:100%\",\"min-width:300px\"]],[false,{\".wp-block-button__link\":false},[\"color:#fff\",\"background-color:#32373c\",\"border-radius:9999px\",\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"font-size:1.125em\",\"padding:calc(.667em + 2px) calc(1.333em + 2px)\",\"text-align:center\",\"text-decoration:none\",\"overflow-wrap:break-word\",\"box-sizing:border-box\"]],[false,{\".wp-block-button__link:active\":false,\".wp-block-button__link:focus\":false,\".wp-block-button__link:hover\":false,\".wp-block-button__link:visited\":false},[\"color:#fff\"]],[false,{\".wp-block-button__link.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-button__link.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width\":false},[\"max-width:none\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"width:calc(100% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100:only-child\":false},[\"margin-right:0\",\"width:100%\"]],[false,\"@supports (column-gap:0.5em){\"],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button.wp-block-button\":false,\".wp-block-buttons>.wp-block-button.wp-block-button\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - .375em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - .25em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - .125em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"width:auto\",\"flex-basis:100%\"]],[false,\"}\"],[false,{\".wp-block-button.is-style-squared\":false,\".wp-block-button__link.wp-block-button.is-style-squared\":false},[\"border-radius:0\"]],[false,{\".wp-block-button.no-border-radius:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button__link.no-border-radius:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[false,{\".is-style-outline>.wp-block-button__link\":false,\".wp-block-button__link.is-style-outline\":false},[\"border:2px solid\",\"padding:.667em 1.333em\"]],[false,{\".is-style-outline>.wp-block-button__link:not(.has-text-color)\":false,\".wp-block-button__link.is-style-outline:not(.has-text-color)\":false},[\"color:currentColor\"]],[false,{\".is-style-outline>.wp-block-button__link:not(.has-background)\":false,\".wp-block-button__link.is-style-outline:not(.has-background)\":false},[\"background-color:transparent\"]],[false,{\".wp-block-buttons\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\",\"column-gap:.5em\"]],[false,{\".wp-block-buttons.is-vertical\":false},[\"flex-direction:column\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-buttons>.wp-block-button\":false},[\"display:inline-block\",\"margin-left:0\",\"margin-right:.5em\",\"margin-bottom:.5em\"]],[false,{\".wp-block-buttons>.wp-block-button:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.is-content-justification-left\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-left.is-vertical\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-center\":false},[\"justify-content:center\"]],[false,{\".wp-block-buttons.is-content-justification-center.is-vertical\":false},[\"align-items:center\"]],[false,{\".wp-block-buttons.is-content-justification-right\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button\":false},[\"margin-left:.5em\",\"margin-right:0\"]],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-buttons.is-content-justification-right.is-vertical\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-space-between\":false},[\"justify-content:space-between\"]],[false,{\".wp-block-buttons.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-buttons.alignleft .wp-block-button\":false},[\"margin-left:0\",\"margin-right:.5em\"]],[false,{\".wp-block-buttons.alignleft .wp-block-button:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.alignright .wp-block-button\":false},[\"margin-right:0\",\"margin-left:.5em\"]],[false,{\".wp-block-buttons.alignright .wp-block-button:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-button.aligncenter\":false,\".wp-block-calendar\":false},[\"text-align:center\"]],[false,{\".wp-block-calendar tbody td\":false,\".wp-block-calendar th\":false},[\"padding:.25em\",\"border:1px solid #ddd\"]],[false,{\".wp-block-calendar tfoot td\":false},[\"border:none\"]],[false,{\".wp-block-calendar table\":false},[\"width:100%\",\"border-collapse:collapse\"]],[false,{\".wp-block-calendar table th\":false},[\"font-weight:400\",\"background:#ddd\"]],[false,{\".wp-block-calendar a\":false},[\"text-decoration:underline\"]],[false,{\".wp-block-calendar table caption\":false,\".wp-block-calendar table tbody\":false},[\"color:#40464d\"]],[false,{\".wp-block-categories.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-categories.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-code code\":false},[\"display:block\",\"white-space:pre-wrap\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-columns\":false},[\"display:flex\",\"margin-bottom:1.75em\",\"box-sizing:border-box\",\"flex-wrap:wrap\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns\":false},[\"flex-wrap:nowrap\"]],[false,\"}\"],[false,{\".wp-block-columns.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-columns.are-vertically-aligned-top\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-columns.are-vertically-aligned-center\":false},[\"align-items:center\"]],[false,{\".wp-block-columns.are-vertically-aligned-bottom\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-column\":false},[\"flex-grow:1\",\"min-width:0\",\"word-break:break-word\",\"overflow-wrap:break-word\"]],[false,\"@media (max-width:599px){\"],[false,{\".wp-block-column:not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:100%\"]],[false,\"}\"],[false,\"@media (min-width:600px) and (max-width:781px){\"],[false,{\".wp-block-column:not(:only-child)\":false},[\"flex-grow:0\"]],[false,{\".wp-block-column:not(:only-child):not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:calc(50% - 1em)\"]],[false,{\".wp-block-column:nth-child(2n)\":false},[\"margin-left:2em\"]],[false,\"}\"],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[false,{\".wp-block-column:not(:first-child)\":false},[\"margin-left:2em\"]],[false,\"}\"],[false,{\".wp-block-column.is-vertically-aligned-top\":false},[\"align-self:flex-start\"]],[false,{\".wp-block-column.is-vertically-aligned-center\":false},[\"align-self:center\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false},[\"align-self:flex-end\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false,\".wp-block-column.is-vertically-aligned-center\":false,\".wp-block-column.is-vertically-aligned-top\":false},[\"width:100%\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"position:relative\",\"background-size:cover\",\"background-position:50%\",\"min-height:430px\",\"width:100%\",\"display:flex\",\"justify-content:center\",\"align-items:center\",\"padding:1em\",\"box-sizing:border-box\"]],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:fixed\"]],[false,\"@supports (-webkit-overflow-scrolling:touch){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,{\".wp-block-cover-image.is-repeated\":false,\".wp-block-cover.is-repeated\":false},[\"background-repeat:repeat\",\"background-size:auto\"]],[false,{\".wp-block-cover-image.has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover.has-background-dim:not([class*=-background-color])\":false},[\"background-color:#000\"]],[false,{\".wp-block-cover-image.has-background-dim:before\":false,\".wp-block-cover.has-background-dim:before\":false},[\"content:\\\"\\\"\",\"background-color:inherit\"]],[false,{\".wp-block-cover-image.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover-image .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover .wp-block-cover__gradient-background\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"bottom:0\",\"right:0\",\"z-index:1\",\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false},[\"opacity:1\"]],[false,{\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-cover-image:after\":false,\".wp-block-cover:after\":false},[\"display:block\",\"content:\\\"\\\"\",\"font-size:0\",\"min-height:inherit\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-cover-image:after\":false,\".wp-block-cover:after\":false},[\"content:none\"]],[false,\"}\"],[false,{\".wp-block-cover-image.aligncenter\":false,\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.aligncenter\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"display:flex\"]],[false,{\".wp-block-cover-image .wp-block-cover__inner-container\":false,\".wp-block-cover .wp-block-cover__inner-container\":false},[\"width:100%\",\"z-index:1\",\"color:#fff\"]],[false,{\".wp-block-cover-image h1:not(.has-text-color)\":false,\".wp-block-cover-image h2:not(.has-text-color)\":false,\".wp-block-cover-image h3:not(.has-text-color)\":false,\".wp-block-cover-image h4:not(.has-text-color)\":false,\".wp-block-cover-image h5:not(.has-text-color)\":false,\".wp-block-cover-image h6:not(.has-text-color)\":false,\".wp-block-cover-image p:not(.has-text-color)\":false,\".wp-block-cover h1:not(.has-text-color)\":false,\".wp-block-cover h2:not(.has-text-color)\":false,\".wp-block-cover h3:not(.has-text-color)\":false,\".wp-block-cover h4:not(.has-text-color)\":false,\".wp-block-cover h5:not(.has-text-color)\":false,\".wp-block-cover h6:not(.has-text-color)\":false,\".wp-block-cover p:not(.has-text-color)\":false},[\"color:inherit\"]],[false,{\".wp-block-cover-image.is-position-top-left\":false,\".wp-block-cover.is-position-top-left\":false},[\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-top-center\":false,\".wp-block-cover.is-position-top-center\":false},[\"align-items:flex-start\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-top-right\":false,\".wp-block-cover.is-position-top-right\":false},[\"align-items:flex-start\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-center-left\":false,\".wp-block-cover.is-position-center-left\":false},[\"align-items:center\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-center-center\":false,\".wp-block-cover.is-position-center-center\":false},[\"align-items:center\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-center-right\":false,\".wp-block-cover.is-position-center-right\":false},[\"align-items:center\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-bottom-left\":false,\".wp-block-cover.is-position-bottom-left\":false},[\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-bottom-center\":false,\".wp-block-cover.is-position-bottom-center\":false},[\"align-items:flex-end\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-bottom-right\":false,\".wp-block-cover.is-position-bottom-right\":false},[\"align-items:flex-end\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false},[\"margin:0\",\"width:auto\"]],[false,{\".wp-block-cover-image amp-img.wp-block-cover__image-background\":false,\".wp-block-cover-image amp-anim.wp-block-cover__image-background\":false,\".wp-block-cover-image amp-video.wp-block-cover__video-background\":false,\".wp-block-cover-image amp-youtube.wp-block-cover__video-background\":false,\".wp-block-cover amp-img.wp-block-cover__image-background\":false,\".wp-block-cover amp-anim.wp-block-cover__image-background\":false,\".wp-block-cover amp-video.wp-block-cover__video-background\":false,\".wp-block-cover amp-youtube.wp-block-cover__video-background\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"margin:0\",\"padding:0\",\"width:100%\",\"height:100%\",\"max-width:none\",\"max-height:none\",\"-o-object-fit:cover\",\"object-fit:cover\",\"outline:none\",\"border:none\",\"box-shadow:none\"]],[false,{\".wp-block-cover__image-background\":false,\".wp-block-cover__video-background\":false},[\"z-index:0\"]],[false,{\".wp-block-cover-image-text\":false,\".wp-block-cover-image-text a\":false,\".wp-block-cover-image-text a:active\":false,\".wp-block-cover-image-text a:focus\":false,\".wp-block-cover-image-text a:hover\":false,\".wp-block-cover-text\":false,\".wp-block-cover-text a\":false,\".wp-block-cover-text a:active\":false,\".wp-block-cover-text a:focus\":false,\".wp-block-cover-text a:hover\":false,\"section.wp-block-cover-image h2\":false,\"section.wp-block-cover-image h2 a\":false,\"section.wp-block-cover-image h2 a:active\":false,\"section.wp-block-cover-image h2 a:focus\":false,\"section.wp-block-cover-image h2 a:hover\":false},[\"color:#fff\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-left-content\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-right-content\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-left-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-left-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-left-content>h2\":false},[\"margin-left:0\",\"text-align:left\"]],[false,{\".wp-block-cover-image.has-right-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-right-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-right-content>h2\":false},[\"margin-right:0\",\"text-align:right\"]],[false,{\".wp-block-cover-image .wp-block-cover-image-text\":false,\".wp-block-cover .wp-block-cover-text\":false,\"section.wp-block-cover-image>h2\":false},[\"font-size:2em\",\"line-height:1.25\",\"z-index:1\",\"margin-bottom:0\",\"max-width:840px\",\"padding:.44em\",\"text-align:center\"]],[false,{\".wp-block-embed.alignleft\":false,\".wp-block-embed.alignright\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"]\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"]\":false},[\"max-width:360px\",\"width:100%\"]],[false,{\".wp-block-embed.alignleft .wp-block-embed__wrapper\":false,\".wp-block-embed.alignright .wp-block-embed__wrapper\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false},[\"min-width:280px\"]],[false,{\".wp-block-cover .wp-block-embed\":false},[\"min-width:320px\",\"min-height:240px\"]],[false,{\".wp-block-embed\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-embed figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-embed amp-iframe\":false},[\"max-width:100%\"]],[false,{\".wp-block-embed__wrapper\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio amp-iframe\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"height:100%\",\"width:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:42.85%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:56.25%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before\":false},[\"padding-top:75%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before\":false},[\"padding-top:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before\":false},[\"padding-top:177.77%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before\":false},[\"padding-top:200%\"]],[false,{\".wp-block-file\":false},[\"margin-bottom:1.5em\"]],[false,{\".wp-block-file.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-file.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-file .wp-block-file__embed\":false},[\"margin-bottom:1em\"]],[false,{\".wp-block-file .wp-block-file__button\":false},[\"background:#32373c\",\"border-radius:2em\",\"color:#fff\",\"font-size:.8em\",\"padding:.5em 1em\"]],[false,{\".wp-block-file a.wp-block-file__button\":false},[\"text-decoration:none\"]],[false,{\".wp-block-file a.wp-block-file__button:active\":false,\".wp-block-file a.wp-block-file__button:focus\":false,\".wp-block-file a.wp-block-file__button:hover\":false,\".wp-block-file a.wp-block-file__button:visited\":false},[\"box-shadow:none\",\"color:#fff\",\"opacity:.85\",\"text-decoration:none\"]],[false,{\".wp-block-file *+.wp-block-file__button\":false},[\"margin-left:.75em\"]],[false,{\".blocks-gallery-grid\":false,\".wp-block-gallery\":false},[\"display:flex\",\"flex-wrap:wrap\",\"list-style-type:none\",\"padding:0\",\"margin:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image\":false,\".blocks-gallery-grid .blocks-gallery-item\":false,\".wp-block-gallery .blocks-gallery-image\":false,\".wp-block-gallery .blocks-gallery-item\":false},[\"margin:0 1em 1em 0\",\"display:flex\",\"flex-grow:1\",\"flex-direction:column\",\"justify-content:center\",\"position:relative\",\"align-self:flex-start\",\"width:calc(50% - 1em)\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery .blocks-gallery-item:nth-of-type(2n)\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image figure\":false,\".blocks-gallery-grid .blocks-gallery-item figure\":false,\".wp-block-gallery .blocks-gallery-image figure\":false,\".wp-block-gallery .blocks-gallery-item figure\":false},[\"margin:0\",\"height:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid .blocks-gallery-image figure\":false,\".blocks-gallery-grid .blocks-gallery-item figure\":false,\".wp-block-gallery .blocks-gallery-image figure\":false,\".wp-block-gallery .blocks-gallery-item figure\":false},[\"display:flex\",\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item amp-anim\":false,\".wp-block-gallery .blocks-gallery-image amp-img\":false,\".wp-block-gallery .blocks-gallery-image amp-anim\":false,\".wp-block-gallery .blocks-gallery-item amp-img\":false,\".wp-block-gallery .blocks-gallery-item amp-anim\":false},[\"display:block\",\"max-width:100%\",\"height:auto\",\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item amp-anim\":false,\".wp-block-gallery .blocks-gallery-image amp-img\":false,\".wp-block-gallery .blocks-gallery-image amp-anim\":false,\".wp-block-gallery .blocks-gallery-item amp-img\":false,\".wp-block-gallery .blocks-gallery-item amp-anim\":false},[\"width:auto\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image figcaption\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption\":false,\".wp-block-gallery .blocks-gallery-image figcaption\":false,\".wp-block-gallery .blocks-gallery-item figcaption\":false},[\"position:absolute\",\"bottom:0\",\"width:100%\",\"max-height:100%\",\"overflow:auto\",\"padding:3em .77em .7em\",\"color:#fff\",\"text-align:center\",\"font-size:.8em\",\"background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent)\",\"box-sizing:border-box\",\"margin:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image figcaption amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image figcaption amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption amp-anim\":false,\".wp-block-gallery .blocks-gallery-image figcaption amp-img\":false,\".wp-block-gallery .blocks-gallery-image figcaption amp-anim\":false,\".wp-block-gallery .blocks-gallery-item figcaption amp-img\":false,\".wp-block-gallery .blocks-gallery-item figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".blocks-gallery-grid figcaption\":false,\".wp-block-gallery figcaption\":false},[\"flex-grow:1\"]],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item\":false},[\"align-self:inherit\"]],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-anim\":false},[\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-anim\":false},[\"height:100%\",\"flex:1\",\"-o-object-fit:cover\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".blocks-gallery-grid.columns-1 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-1 .blocks-gallery-item\":false,\".wp-block-gallery.columns-1 .blocks-gallery-image\":false,\".wp-block-gallery.columns-1 .blocks-gallery-item\":false},[\"width:100%\",\"margin-right:0\"]],[false,\"@media (min-width:600px){\"],[false,{\".blocks-gallery-grid.columns-3 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-item\":false,\".wp-block-gallery.columns-3 .blocks-gallery-image\":false,\".wp-block-gallery.columns-3 .blocks-gallery-item\":false},[\"width:calc(33.33333% - .66667em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-4 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-item\":false,\".wp-block-gallery.columns-4 .blocks-gallery-image\":false,\".wp-block-gallery.columns-4 .blocks-gallery-item\":false},[\"width:calc(25% - .75em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-5 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-item\":false,\".wp-block-gallery.columns-5 .blocks-gallery-image\":false,\".wp-block-gallery.columns-5 .blocks-gallery-item\":false},[\"width:calc(20% - .8em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-6 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-item\":false,\".wp-block-gallery.columns-6 .blocks-gallery-image\":false,\".wp-block-gallery.columns-6 .blocks-gallery-item\":false},[\"width:calc(16.66667% - .83333em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-7 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-item\":false,\".wp-block-gallery.columns-7 .blocks-gallery-image\":false,\".wp-block-gallery.columns-7 .blocks-gallery-item\":false},[\"width:calc(14.28571% - .85714em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-8 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-item\":false,\".wp-block-gallery.columns-8 .blocks-gallery-image\":false,\".wp-block-gallery.columns-8 .blocks-gallery-item\":false},[\"width:calc(12.5% - .875em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n)\":false,\".wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image:last-child\":false,\".blocks-gallery-grid .blocks-gallery-item:last-child\":false,\".wp-block-gallery .blocks-gallery-image:last-child\":false,\".wp-block-gallery .blocks-gallery-item:last-child\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid.alignleft\":false,\".blocks-gallery-grid.alignright\":false,\".wp-block-gallery.alignleft\":false,\".wp-block-gallery.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".blocks-gallery-grid.aligncenter .blocks-gallery-item figure\":false,\".wp-block-gallery.aligncenter .blocks-gallery-item figure\":false},[\"justify-content:center\"]],[false,{\".wp-block-group\":false},[\"box-sizing:border-box\"]],[false,{\"h1.has-background\":false,\"h2.has-background\":false,\"h3.has-background\":false,\"h4.has-background\":false,\"h5.has-background\":false,\"h6.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-image\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-image amp-img\":false,\".wp-block-image amp-anim\":false},[\"max-width:100%\"]],[false,{\".wp-block-image:not(.is-style-rounded) amp-img\":false,\".wp-block-image:not(.is-style-rounded) amp-anim\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-image.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-image.alignfull amp-img\":false,\".wp-block-image.alignfull amp-anim\":false,\".wp-block-image.alignwide amp-img\":false,\".wp-block-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\".wp-block-image .aligncenter\":false,\".wp-block-image .alignleft\":false,\".wp-block-image .alignright\":false},[\"display:table\"]],[false,{\".wp-block-image .aligncenter>figcaption\":false,\".wp-block-image .alignleft>figcaption\":false,\".wp-block-image .alignright>figcaption\":false},[\"display:table-caption\",\"caption-side:bottom\"]],[false,{\".wp-block-image .alignleft\":false},[\"float:left\",\"margin:.5em 1em .5em 0\"]],[false,{\".wp-block-image .alignright\":false},[\"float:right\",\"margin:.5em 0 .5em 1em\"]],[false,{\".wp-block-image .aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-block-image figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false,\".wp-block-image.is-style-rounded amp-img\":false,\".wp-block-image.is-style-rounded amp-anim\":false},[\"border-radius:9999px\"]],[false,\"@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){\"],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"-webkit-mask-image:url(\\\"data:image\\/svg+xml;utf8,<\\/svg>\\\")\",\"mask-image:url(\\\"data:image\\/svg+xml;utf8,<\\/svg>\\\")\",\"mask-mode:alpha\",\"-webkit-mask-repeat:no-repeat\",\"mask-repeat:no-repeat\",\"-webkit-mask-size:contain\",\"mask-size:contain\",\"-webkit-mask-position:center\",\"mask-position:center\",\"border-radius:0\"]],[false,\"}\"],[false,{\".wp-block-image figure\":false},[\"margin:0\"]],[false,{\"ol.wp-block-latest-comments\":false},[\"margin-left:0\"]],[false,{\".wp-block-latest-comments .wp-block-latest-comments\":false},[\"padding-left:0\"]],[false,{\".wp-block-latest-comments__comment\":false},[\"line-height:1.1\",\"list-style:none\",\"margin-bottom:1em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment\":false},[\"min-height:2.25em\",\"list-style:none\"]],[false,{\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt\":false,\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta\":false},[\"margin-left:3.25em\"]],[false,{\".has-dates .wp-block-latest-comments__comment\":false,\".has-excerpts .wp-block-latest-comments__comment\":false},[\"line-height:1.5\"]],[false,{\".wp-block-latest-comments__comment-excerpt p\":false},[\"font-size:.875em\",\"line-height:1.8\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-latest-comments__comment-date\":false},[\"display:block\",\"font-size:.75em\"]],[false,{\".wp-block-latest-comments .avatar\":false,\".wp-block-latest-comments__comment-avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-latest-posts.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-latest-posts.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list\":false},[\"list-style:none\",\"padding-left:0\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list li\":false},[\"clear:both\"]],[false,{\".wp-block-latest-posts.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\"]],[false,{\".wp-block-latest-posts.is-grid li\":false},[\"margin:0 1.25em 1.25em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-latest-posts.columns-2 li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-latest-posts.columns-2 li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-3 li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-latest-posts.columns-3 li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-4 li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-latest-posts.columns-4 li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-latest-posts.columns-5 li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-6 li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-latest-posts.columns-6 li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".wp-block-latest-posts__post-author\":false,\".wp-block-latest-posts__post-date\":false},[\"display:block\",\"color:#555\",\"font-size:.8125em\"]],[false,{\".wp-block-latest-posts__post-excerpt\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-latest-posts__featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-latest-posts__featured-image amp-img\":false,\".wp-block-latest-posts__featured-image amp-anim\":false},[\"height:auto\",\"width:auto\",\"max-width:100%\"]],[false,{\".wp-block-latest-posts__featured-image.alignleft\":false},[\"margin-right:1em\"]],[false,{\".wp-block-latest-posts__featured-image.alignright\":false},[\"margin-left:1em\"]],[false,{\".wp-block-latest-posts__featured-image.aligncenter\":false},[\"margin-bottom:1em\",\"text-align:center\"]],[false,{\".block-editor-image-alignment-control__row .components-base-control__field\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\"]],[false,{\".block-editor-image-alignment-control__row .components-base-control__field .components-base-control__label\":false},[\"margin-bottom:0\"]],[false,{\"ol.has-background\":false,\"ul.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-media-text\":false},[\"direction:ltr\",\"display:grid\",\"grid-template-columns:50% 1fr\",\"grid-template-rows:auto\"]],[false,{\".wp-block-media-text.has-media-on-the-right\":false},[\"grid-template-columns:1fr 50%\"]],[false,{\".wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media\":false},[\"align-self:start\"]],[false,{\".wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media\":false,\".wp-block-media-text .wp-block-media-text__content\":false,\".wp-block-media-text .wp-block-media-text__media\":false},[\"align-self:center\"]],[false,{\".wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media\":false},[\"align-self:end\"]],[false,{\".wp-block-media-text .wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\",\"margin:0\"]],[false,{\".wp-block-media-text .wp-block-media-text__content\":false},[\"direction:ltr\",\"grid-column:2\",\"grid-row:1\",\"padding:0 8%\",\"word-break:break-word\"]],[false,{\".wp-block-media-text.has-media-on-the-right .wp-block-media-text__media\":false},[\"grid-column:2\",\"grid-row:1\"]],[false,{\".wp-block-media-text.has-media-on-the-right .wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"max-width:unset\",\"width:100%\",\"vertical-align:middle\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media\":false},[\"height:100%\",\"min-height:250px\",\"background-size:cover\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill .wp-block-media-text__media amp-anim\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-media-text.is-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"grid-template-columns:100%\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:2\"]],[false,\"}\"],[false,{\".wp-block-navigation\":false},[\"position:relative\"]],[false,{\".wp-block-navigation ul\":false,\".wp-block-navigation ul li\":false},[\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-navigation-link\":false,\".wp-block-navigation .wp-block-pages-list__item\":false},[\"display:flex\",\"align-items:center\",\"position:relative\"]],[false,{\".wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__container:empty\":false,\".wp-block-navigation .wp-block-pages-list__item .wp-block-navigation-link__container:empty\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__content\":false,\".wp-block-navigation .wp-block-pages-list__item__link\":false},[\"color:inherit\",\"display:block\"]],[false,{\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__container\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content:focus\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link:focus\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content:focus\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link:focus\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .wp-block-page-list__submenu-icon\":false},[\"height:inherit\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .wp-block-page-list__submenu-icon svg\":false},[\"stroke:currentColor\"]],[false,{\".wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__content.wp-block-navigation-link__content.wp-block-navigation-link__content\":false,\".wp-block-navigation .wp-block-pages-list__item .wp-block-pages-list__item__link\":false},[\"padding:0\"]],[false,{\".wp-block-navigation .has-child>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child>.wp-block-pages-list__item__link\":false},[\"margin-right:.5em\"]],[false,{\".wp-block-navigation .has-child .submenu-container\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container\":false},[\"background-color:inherit\",\"color:inherit\",\"position:absolute\",\"z-index:2\",\"flex-direction:column\",\"align-items:normal\",\"min-width:200px\",\"display:none\",\"opacity:0\",\"transition:opacity .1s linear\",\"visibility:hidden\"]],[false,{\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-pages-list__item__link\":false},[\"flex-grow:1\"]],[false,{\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-page-list__submenu-icon\":false},[\"padding-right:.5em\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation .has-child .submenu-container .submenu-container:before\":false,\".wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container:before\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container:before\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"right:100%\",\"height:100%\",\"display:block\",\"width:.5em\",\"background:transparent\"]],[false,{\".wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .has-child .submenu-container .wp-block-page-list__submenu-icon svg\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-page-list__submenu-icon svg\":false},[\"transform:rotate(-90deg)\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child:hover>.wp-block-navigation-link__container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:focus-within>.wp-block-navigation-link__container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:hover\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation .has-child:hover>.submenu-container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:focus-within\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation .has-child:focus-within>.submenu-container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container\":false},[\"left:auto\",\"right:0\"]],[false,{\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:auto\",\"right:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation .wp-block-navigation__container>.wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list>.wp-block-pages-list__item\":false},[\"margin:0 2em 0 0\"]],[false,{\".wp-block-navigation.wp-block-navigation .wp-block-navigation__container>.wp-block-navigation-link:last-child\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list:last-child\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list>.wp-block-pages-list__item:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .wp-block-navigation__container>.wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list>.wp-block-pages-list__item\":false},[\"margin:0 .5em 0 0\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .wp-block-navigation__container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list .wp-block-pages-list__item__link\":false},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container\":false},[\"left:-1em\",\"top:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-pages-list__item\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-pages-list__item\":false},[\"margin:0\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-pages-list__item__link\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-pages-list__item__link\":false},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:-1px\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:100%\",\"top:-1px\"]],[false,\"}\"],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container\":false},[\"left:0\",\"top:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:0\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:100%\",\"top:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .submenu-container\":false,\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-navigation-link__container\":false},[\"background-color:#fff\",\"color:#000\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation__container\":false},[\"align-items:center\",\"list-style:none\",\"margin:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation__container .is-responsive\":false},[\"display:none\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__container\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".is-vertical .wp-block-navigation__container\":false},[\"display:block\",\"flex-direction:column\",\"align-items:flex-start\"]],[false,\"}\"],[false,{\".items-justified-center .wp-block-navigation__container\":false},[\"justify-content:center\"]],[false,{\".items-justified-right .wp-block-navigation__container\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between .wp-block-navigation__container\":false},[\"justify-content:space-between\"]],[false,{\".is-vertical.items-justified-center>ul\":false},[\"align-items:center\"]],[false,{\".is-vertical.items-justified-right>ul\":false},[\"align-items:flex-end\"]],[false,{\".is-vertical.items-justified-right>ul .wp-block-navigation-link\":false,\".is-vertical.items-justified-right>ul .wp-block-pages-list__item\":false},[\"margin-right:0\",\"justify-content:flex-end\"]],[false,{\".wp-block-navigation__responsive-container\":false},[\"display:none\",\"position:fixed\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"z-index:1\",\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"display:flex\",\"flex-direction:column\",\"overflow:auto\",\"z-index:100000\",\"padding:24px\",\"background-color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container\":false},[\"display:flex\",\"flex-direction:column\",\"margin-left:auto\",\"margin-right:auto\",\"align-items:flex-start\",\"line-height:48px\",\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container .wp-block-page-list\":false},[\"flex-direction:column\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link .wp-block-navigation-link__container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item .submenu-container:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open)\":false},[\"display:flex\",\"flex-direction:row\",\"position:relative\",\"background-color:inherit\"]],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__responsive-container-close\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .submenu-container.submenu-container.submenu-container.submenu-container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link__container.wp-block-navigation-link__container.wp-block-navigation-link__container.wp-block-navigation-link__container\":false},[\"left:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:#fff\",\"color:#000\"]],[false,{\".wp-block-navigation__responsive-container-close\":false,\".wp-block-navigation__responsive-container-open\":false},[\"vertical-align:middle\",\"cursor:pointer\",\"color:currentColor\",\"background:transparent\",\"border:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container-close svg\":false,\".wp-block-navigation__responsive-container-open svg\":false},[\"fill:currentColor\",\"pointer-events:none\",\"display:block\",\"width:24px\",\"height:24px\"]],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:flex\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:none\"]],[false,\"}\"],[false,{\".items-justified-left .wp-block-navigation__responsive-container-open\":false},[\"margin-left:0\",\"margin-right:auto\"]],[false,{\".items-justified-center .wp-block-navigation__responsive-container-open\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".items-justified-right .wp-block-navigation__responsive-container-open\":false},[\"margin-left:auto\",\"margin-right:0\"]],[false,{\".wp-block-navigation__responsive-container-close\":false},[\"position:absolute\",\"top:24px\",\"right:24px\",\"z-index:2\"]],[false,{\".wp-block-navigation__responsive-close\":false},[\"width:100%\"]],[false,{\".is-menu-open .wp-block-navigation__responsive-close\":false,\".is-menu-open .wp-block-navigation__responsive-container-content\":false,\".is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"width:100%\",\"height:100%\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list__submenu-icon\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .has-child .submenu-container\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .has-child .wp-block-navigation-link__container\":false},[\"position:relative\",\"opacity:1\",\"visibility:visible\",\"padding:0 0 0 32px\",\"border:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item\":false},[\"flex-direction:column\",\"align-items:flex-start\"]],[false,{\"html.has-modal-open\":false},[\"overflow:hidden\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__label\":false},[\"word-break:normal\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-navigation .wp-block-home-link__content\":false},[\"color:inherit\",\"display:block\",\"padding:.5em 1em\"]],[false,{\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content:focus\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content:focus\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-home-link__container\":false},[\"background-color:#fff\",\"color:#000\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-home-link__container .wp-block-home-link__container\":false},[\"top:-1px\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false},[\"display:flex\",\"flex-wrap:wrap\",\"background-color:inherit\"]],[false,{\".wp-block-navigation .wp-block-pages-list__item\":false},[\"background-color:inherit\"]],[false,{\".wp-block-navigation .wp-block-page-list__submenu-icon\":false},[\"display:none\"]],[false,{\".is-open .wp-block-navigation__container .wp-block-page-list\":false,\".is-vertical .wp-block-navigation__container .wp-block-page-list\":false,\".wp-block-navigation .show-submenu-icons .wp-block-page-list__submenu-icon\":false},[\"display:block\"]],[false,\"@media (min-width:480px){\"],[false,{\".is-open .wp-block-navigation__container .wp-block-page-list\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".items-justified-space-between .wp-block-page-list\":false},[\"display:contents\"]],[false,{\".is-small-text\":false},[\"font-size:.875em\"]],[false,{\".is-regular-text\":false},[\"font-size:1em\"]],[false,{\".is-large-text\":false},[\"font-size:2.25em\"]],[false,{\".is-larger-text\":false},[\"font-size:3em\"]],[false,{\".has-drop-cap:not(:focus):first-letter\":false},[\"float:left\",\"font-size:8.4em\",\"line-height:.68\",\"font-weight:100\",\"margin:.05em .1em 0 0\",\"text-transform:uppercase\",\"font-style:normal\"]],[false,{\"p.has-drop-cap.has-background\":false},[\"overflow:hidden\"]],[false,{\"p.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\"p.has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-post-author\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-author__byline\":false},[\"width:100%\",\"margin-top:0\",\"margin-bottom:0\",\"font-size:.5em\"]],[false,{\".wp-block-post-author__avatar\":false},[\"margin-right:1em\"]],[false,{\".wp-block-post-author__bio\":false},[\"margin-bottom:.7em\",\"font-size:.7em\"]],[false,{\".wp-block-post-author__content\":false},[\"flex-grow:1\",\"flex-basis:0\"]],[false,{\".wp-block-post-author__name\":false},[\"font-weight:700\",\"margin:0\"]],[false,{\".wp-block-post-comments .commentlist\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .commentlist .comment\":false},[\"min-height:2.25em\",\"padding-left:3.25em\"]],[false,{\".wp-block-post-comments .commentlist .comment p\":false},[\"font-size:.875em\",\"line-height:1.8\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-post-comments .commentlist .children\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .comment-author\":false},[\"line-height:1.5\",\"margin-left:-3.25em\"]],[false,{\".wp-block-post-comments .comment-author .avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-post-comments .comment-author cite\":false},[\"font-style:normal\"]],[false,{\".wp-block-post-comments .comment-meta\":false},[\"line-height:1.5\",\"margin-left:-3.25em\"]],[false,{\".wp-block-post-comments .comment-body .commentmetadata\":false},[\"font-size:.75em\"]],[false,{\".wp-block-post-comments .comment-form-author label\":false,\".wp-block-post-comments .comment-form-comment label\":false,\".wp-block-post-comments .comment-form-email label\":false,\".wp-block-post-comments .comment-form-url label\":false},[\"display:block\"]],[false,{\".wp-block-post-comments .comment-form-comment textarea\":false},[\"box-sizing:border-box\",\"width:100%\"]],[false,{\".wp-block-post-comments .reply\":false},[\"font-size:.75em\",\"margin-bottom:1.4em\"]],[false,{\".wp-block-post-comments input\":false,\".wp-block-post-comments textarea\":false},[\"border:1px solid #949494\"]],[false,{\".wp-block-post-comments-form input[type=submit]\":false},[\"border:none\",\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"text-align:center\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-post-excerpt__more-link\":false,\".wp-block-post-title a\":false},[\"display:inline-block\"]],[false,{\".wp-block-preformatted\":false},[\"white-space:pre-wrap\"]],[false,{\".wp-block-preformatted.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-pullquote\":false},[\"margin:0 0 1em\",\"padding:3em 0\",\"text-align:center\"]],[false,{\".wp-block-pullquote.alignleft\":false,\".wp-block-pullquote.alignright\":false},[\"max-width:420px\"]],[false,{\".wp-block-pullquote.alignleft p\":false,\".wp-block-pullquote.alignright p\":false},[\"font-size:1.25em\"]],[false,{\".wp-block-pullquote p\":false},[\"font-size:1.75em\",\"line-height:1.6\"]],[false,{\".wp-block-pullquote cite\":false,\".wp-block-pullquote footer\":false},[\"position:relative\"]],[false,{\".wp-block-pullquote .has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote:not(.is-style-solid-color)\":false},[\"background:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color\":false},[\"border:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote\":false},[\"margin-left:auto\",\"margin-right:auto\",\"text-align:left\",\"max-width:60%\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote p\":false},[\"margin-top:0\",\"margin-bottom:0\",\"font-size:2em\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote cite\":false},[\"text-transform:none\",\"font-style:normal\"]],[false,{\".wp-block-pullquote cite\":false},[\"color:inherit\"]],[false,{\".wp-block-post-template\":false,\".wp-block-query-loop\":false},[\"max-width:100%\",\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-post-template li\":false,\".wp-block-query-loop li\":false},[\"clear:both\"]],[false,{\".wp-block-post-template.is-flex-container\":false,\".wp-block-query-loop.is-flex-container\":false},[\"flex-direction:row\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-template.is-flex-container li\":false,\".wp-block-query-loop.is-flex-container li\":false},[\"margin:0 0 1.25em\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-post-template.is-flex-container li\":false,\".wp-block-query-loop.is-flex-container li\":false},[\"margin-right:1.25em\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li:nth-child(2n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li:nth-child(3n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li:nth-child(4n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li:nth-child(5n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li:nth-child(6n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".wp-block-query-pagination\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\"]],[false,{\".wp-block-query-pagination>.wp-block-query-pagination-next\":false,\".wp-block-query-pagination>.wp-block-query-pagination-numbers\":false,\".wp-block-query-pagination>.wp-block-query-pagination-previous\":false},[\"display:inline-block\",\"margin-right:.5em\",\"margin-bottom:.5em\"]],[false,{\".wp-block-query-pagination>.wp-block-query-pagination-next:last-child\":false,\".wp-block-query-pagination>.wp-block-query-pagination-numbers:last-child\":false,\".wp-block-query-pagination>.wp-block-query-pagination-previous:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-quote.is-large\":false,\".wp-block-quote.is-style-large\":false},[\"margin-bottom:1em\",\"padding:0 1em\"]],[false,{\".wp-block-quote.is-large p\":false,\".wp-block-quote.is-style-large p\":false},[\"font-size:1.5em\",\"font-style:italic\",\"line-height:1.6\"]],[false,{\".wp-block-quote.is-large cite\":false,\".wp-block-quote.is-large footer\":false,\".wp-block-quote.is-style-large cite\":false,\".wp-block-quote.is-style-large footer\":false},[\"font-size:1.125em\",\"text-align:right\"]],[false,{\".wp-block-rss.wp-block-rss\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-rss.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-rss.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-rss.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\",\"list-style:none\"]],[false,{\".wp-block-rss.is-grid li\":false},[\"margin:0 1em 1em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-rss.columns-2 li\":false},[\"width:calc(50% - 1em)\"]],[false,{\".wp-block-rss.columns-3 li\":false},[\"width:calc(33.33333% - 1em)\"]],[false,{\".wp-block-rss.columns-4 li\":false},[\"width:calc(25% - 1em)\"]],[false,{\".wp-block-rss.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-rss.columns-6 li\":false},[\"width:calc(16.66667% - 1em)\"]],[false,\"}\"],[false,{\".wp-block-rss__item-author\":false,\".wp-block-rss__item-publish-date\":false},[\"display:block\",\"color:#555\",\"font-size:.8125em\"]],[false,{\".wp-block-search .wp-block-search__button\":false},[\"background:#f7f7f7\",\"border:1px solid #ccc\",\"padding:.375em .625em\",\"color:#32373c\",\"margin-left:.625em\",\"word-break:normal\"]],[false,{\".wp-block-search .wp-block-search__button.has-icon\":false},[\"line-height:0\"]],[false,{\".wp-block-search .wp-block-search__button svg\":false},[\"min-width:1.5em\",\"min-height:1.5em\"]],[false,{\".wp-block-search .wp-block-search__inside-wrapper\":false},[\"display:flex\",\"flex:auto\",\"flex-wrap:nowrap\",\"max-width:100%\"]],[false,{\".wp-block-search .wp-block-search__label\":false},[\"width:100%\"]],[false,{\".wp-block-search .wp-block-search__input\":false},[\"flex-grow:1\",\"min-width:3em\",\"border:1px solid #949494\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__button\":false},[\"margin-left:0\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper\":false},[\"padding:4px\",\"border:1px solid #949494\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input\":false},[\"border-radius:0\",\"border:none\",\"padding:0 0 0 .25em\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus\":false},[\"outline:none\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button\":false},[\"padding:.125em .5em\"]],[false,{\".wp-block-search.aligncenter .wp-block-search__inside-wrapper\":false},[\"margin:auto\"]],[false,{\".wp-block-separator\":false},[\"border-top:1px solid\",\"border-bottom:1px solid\"]],[false,{\".wp-block-separator.is-style-wide\":false},[\"border-bottom-width:1px\"]],[false,{\".wp-block-separator.is-style-dots\":false},[\"border:none\",\"text-align:center\",\"width:none\",\"line-height:1\",\"height:auto\"]],[false,{\".wp-block-separator.is-style-dots:not(#_#_#_#_#_#_#_)\":false},[\"background:none\"]],[false,{\".wp-block-separator.is-style-dots:before\":false},[\"content:\\\"\\u00b7\\u00b7\\u00b7\\\"\",\"color:currentColor\",\"font-size:1.5em\",\"letter-spacing:2em\",\"padding-left:2em\",\"font-family:serif\"]],[false,{\".wp-block-site-logo\":false},[\"line-height:0\"]],[false,{\".wp-block-site-logo a\":false},[\"display:inline-block\"]],[false,{\".wp-block-site-logo.is-default-size amp-img\":false,\".wp-block-site-logo.is-default-size amp-anim\":false},[\"width:120px\",\"height:auto\"]],[false,{\".wp-block-site-logo .aligncenter\":false},[\"display:table\"]],[false,{\".wp-block-site-logo.is-style-rounded amp-img\":false,\".wp-block-site-logo.is-style-rounded amp-anim\":false},[\"border-radius:9999px\"]],[false,{\".wp-block-social-links\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding-left:0\",\"padding-right:0\",\"text-indent:0\",\"margin-left:0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false,\".wp-block-social-links .wp-social-link a:hover\":false},[\"text-decoration:none\",\"border-bottom:0\",\"box-shadow:none\"]],[false,{\".wp-block-social-links .wp-social-link.wp-social-link.wp-social-link\":false},[\"margin:4px 8px 4px 0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false},[\"padding:.25em\"]],[false,{\".wp-block-social-links .wp-social-link svg\":false},[\"width:1em\",\"height:1em\"]],[false,{\".wp-block-social-links.has-small-icon-size\":false},[\"font-size:16px\"]],[false,{\".wp-block-social-links\":false,\".wp-block-social-links.has-normal-icon-size\":false},[\"font-size:24px\"]],[false,{\".wp-block-social-links.has-large-icon-size\":false},[\"font-size:36px\"]],[false,{\".wp-block-social-links.has-huge-icon-size\":false},[\"font-size:48px\"]],[false,{\".wp-block-social-links.aligncenter\":false},[\"justify-content:center\",\"display:flex\"]],[false,{\".wp-block-social-links.alignright\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-social-link\":false},[\"display:block\",\"border-radius:9999px\",\"transition:transform .1s ease\",\"height:auto\"]],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-social-link\":false},[\"transition-duration:0s\",\"transition-delay:0s\"]],[false,\"}\"],[false,{\".wp-block-social-link a\":false},[\"display:block\",\"line-height:0\",\"transition:transform .1s ease\"]],[false,{\".wp-block-social-link:hover\":false},[\"transform:scale(1.1)\"]],[false,{\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:active\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:hover\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:visited\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg\":false},[\"color:currentColor\",\"fill:currentColor\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link\":false},[\"background-color:#f0f0f0\",\"color:#444\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon\":false},[\"background-color:#f90\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp\":false},[\"background-color:#1ea0c3\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance\":false},[\"background-color:#0757fe\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen\":false},[\"background-color:#1e1f26\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart\":false},[\"background-color:#02e49b\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble\":false},[\"background-color:#e94c89\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox\":false},[\"background-color:#4280ff\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy\":false},[\"background-color:#f45800\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook\":false},[\"background-color:#1778f2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr\":false},[\"background-color:#0461dd\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare\":false},[\"background-color:#e65678\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github\":false},[\"background-color:#24292d\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads\":false},[\"background-color:#eceadd\",\"color:#382110\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google\":false},[\"background-color:#ea4434\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram\":false},[\"background-color:#f00075\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm\":false},[\"background-color:#e21b24\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin\":false},[\"background-color:#0d66c2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon\":false},[\"background-color:#3288d4\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium\":false},[\"background-color:#02ab6c\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup\":false},[\"background-color:#f6405f\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon\":false},[\"background-color:#ff424d\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest\":false},[\"background-color:#e60122\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket\":false},[\"background-color:#ef4155\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit\":false},[\"background-color:#fe4500\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype\":false},[\"background-color:#0478d7\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat\":false},[\"background-color:#fefc00\",\"color:#fff\",\"stroke:#000\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud\":false},[\"background-color:#ff5600\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify\":false},[\"background-color:#1bd760\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram\":false},[\"background-color:#2aabee\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr\":false},[\"background-color:#011835\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch\":false},[\"background-color:#6440a4\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter\":false},[\"background-color:#1da1f2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo\":false},[\"background-color:#1eb7ea\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk\":false},[\"background-color:#4680c2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress\":false},[\"background-color:#3499cd\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp\":false},[\"background-color:#d32422\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube\":false},[\"background-color:red\",\"color:#fff\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link\":false},[\"background:none\",\"padding:4px\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-amazon\":false},[\"color:#f90\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp\":false},[\"color:#1ea0c3\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-behance\":false},[\"color:#0757fe\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-codepen\":false},[\"color:#1e1f26\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-deviantart\":false},[\"color:#02e49b\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-dribbble\":false},[\"color:#e94c89\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-dropbox\":false},[\"color:#4280ff\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-etsy\":false},[\"color:#f45800\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-facebook\":false},[\"color:#1778f2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx\":false},[\"color:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-flickr\":false},[\"color:#0461dd\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-foursquare\":false},[\"color:#e65678\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-github\":false},[\"color:#24292d\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-goodreads\":false},[\"color:#382110\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-google\":false},[\"color:#ea4434\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-instagram\":false},[\"color:#f00075\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-lastfm\":false},[\"color:#e21b24\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-linkedin\":false},[\"color:#0d66c2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-mastodon\":false},[\"color:#3288d4\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-medium\":false},[\"color:#02ab6c\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-meetup\":false},[\"color:#f6405f\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-patreon\":false},[\"color:#ff424d\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-pinterest\":false},[\"color:#e60122\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-pocket\":false},[\"color:#ef4155\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-reddit\":false},[\"color:#fe4500\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-skype\":false},[\"color:#0478d7\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-snapchat\":false},[\"color:#fff\",\"stroke:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud\":false},[\"color:#ff5600\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-spotify\":false},[\"color:#1bd760\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-telegram\":false},[\"color:#2aabee\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-tiktok\":false},[\"color:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-tumblr\":false},[\"color:#011835\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-twitch\":false},[\"color:#6440a4\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-twitter\":false},[\"color:#1da1f2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-vimeo\":false},[\"color:#1eb7ea\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-vk\":false},[\"color:#4680c2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-wordpress\":false},[\"color:#3499cd\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-yelp\":false},[\"color:#d32422\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-youtube\":false},[\"color:red\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link\":false},[\"width:auto\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link a\":false},[\"padding-left:.66667em\",\"padding-right:.66667em\"]],[false,{\".wp-block-spacer\":false},[\"clear:both\"]],[false,{\".wp-block-tag-cloud.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-tag-cloud.alignfull\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".wp-block-table\":false},[\"margin:0 0 1em\",\"overflow-x:auto\"]],[false,{\".wp-block-table table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout\":false},[\"table-layout:fixed\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout td\":false,\".wp-block-table .has-fixed-layout th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table.aligncenter\":false,\".wp-block-table.alignleft\":false,\".wp-block-table.alignright\":false},[\"display:table\",\"width:auto\"]],[false,{\".wp-block-table.aligncenter td\":false,\".wp-block-table.aligncenter th\":false,\".wp-block-table.alignleft td\":false,\".wp-block-table.alignleft th\":false,\".wp-block-table.alignright td\":false,\".wp-block-table.alignright th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table .has-subtle-light-gray-background-color\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table .has-subtle-pale-green-background-color\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table .has-subtle-pale-blue-background-color\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table .has-subtle-pale-pink-background-color\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes\":false},[\"border-spacing:0\",\"border-collapse:inherit\",\"background-color:transparent\",\"border-bottom:1px solid #f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes tbody tr:nth-child(odd)\":false},[\"background-color:#f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes td\":false,\".wp-block-table.is-style-stripes th\":false},[\"border-color:transparent\"]],[false,{\".wp-block-table .has-border-color>*\":false,\".wp-block-table .has-border-color td\":false,\".wp-block-table .has-border-color th\":false,\".wp-block-table .has-border-color tr\":false},[\"border-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-style]>*\":false,\".wp-block-table table[data-amp-original-style*=border-style] td\":false,\".wp-block-table table[data-amp-original-style*=border-style] th\":false,\".wp-block-table table[data-amp-original-style*=border-style] tr\":false},[\"border-style:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-width]>*\":false,\".wp-block-table table[data-amp-original-style*=border-width] td\":false,\".wp-block-table table[data-amp-original-style*=border-width] th\":false,\".wp-block-table table[data-amp-original-style*=border-width] tr\":false},[\"border-width:inherit\"]],[false,{\".wp-block-text-columns\":false,\".wp-block-text-columns.aligncenter\":false},[\"display:flex\"]],[false,{\".wp-block-text-columns .wp-block-column\":false},[\"margin:0 1em\",\"padding:0\"]],[false,{\".wp-block-text-columns .wp-block-column:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-text-columns .wp-block-column:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-text-columns.columns-2 .wp-block-column\":false},[\"width:50%\"]],[false,{\".wp-block-text-columns.columns-3 .wp-block-column\":false},[\"width:33.33333%\"]],[false,{\".wp-block-text-columns.columns-4 .wp-block-column\":false},[\"width:25%\"]],[false,{\"pre.wp-block-verse\":false},[\"font-family:inherit\",\"overflow:auto\",\"white-space:pre-wrap\"]],[false,{\".wp-block-video\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-video [poster]\":false},[\"-o-object-fit:cover\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".wp-block-video.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-video figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-post-featured-image\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".wp-block-post-featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-post-featured-image amp-img\":false,\".wp-block-post-featured-image amp-anim\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".wp-block-post-featured-image.alignfull amp-img\":false,\".wp-block-post-featured-image.alignfull amp-anim\":false,\".wp-block-post-featured-image.alignwide amp-img\":false,\".wp-block-post-featured-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\":root .has-pale-pink-background-color\":false},[\"background-color:#f78da7\"]],[false,{\":root .has-vivid-red-background-color\":false},[\"background-color:#cf2e2e\"]],[false,{\":root .has-luminous-vivid-orange-background-color\":false},[\"background-color:#ff6900\"]],[false,{\":root .has-luminous-vivid-amber-background-color\":false},[\"background-color:#fcb900\"]],[false,{\":root .has-light-green-cyan-background-color\":false},[\"background-color:#7bdcb5\"]],[false,{\":root .has-vivid-green-cyan-background-color\":false},[\"background-color:#00d084\"]],[false,{\":root .has-pale-cyan-blue-background-color\":false},[\"background-color:#8ed1fc\"]],[false,{\":root .has-vivid-cyan-blue-background-color\":false},[\"background-color:#0693e3\"]],[false,{\":root .has-vivid-purple-background-color\":false},[\"background-color:#9b51e0\"]],[false,{\":root .has-white-background-color\":false},[\"background-color:#fff\"]],[false,{\":root .has-very-light-gray-background-color\":false},[\"background-color:#eee\"]],[false,{\":root .has-cyan-bluish-gray-background-color\":false},[\"background-color:#abb8c3\"]],[false,{\":root .has-very-dark-gray-background-color\":false},[\"background-color:#313131\"]],[false,{\":root .has-black-background-color\":false},[\"background-color:#000\"]],[false,{\":root .has-pale-pink-color\":false},[\"color:#f78da7\"]],[false,{\":root .has-vivid-red-color\":false},[\"color:#cf2e2e\"]],[false,{\":root .has-luminous-vivid-orange-color\":false},[\"color:#ff6900\"]],[false,{\":root .has-luminous-vivid-amber-color\":false},[\"color:#fcb900\"]],[false,{\":root .has-light-green-cyan-color\":false},[\"color:#7bdcb5\"]],[false,{\":root .has-vivid-green-cyan-color\":false},[\"color:#00d084\"]],[false,{\":root .has-pale-cyan-blue-color\":false},[\"color:#8ed1fc\"]],[false,{\":root .has-vivid-cyan-blue-color\":false},[\"color:#0693e3\"]],[false,{\":root .has-vivid-purple-color\":false},[\"color:#9b51e0\"]],[false,{\":root .has-white-color\":false},[\"color:#fff\"]],[false,{\":root .has-very-light-gray-color\":false},[\"color:#eee\"]],[false,{\":root .has-cyan-bluish-gray-color\":false},[\"color:#abb8c3\"]],[false,{\":root .has-very-dark-gray-color\":false},[\"color:#313131\"]],[false,{\":root .has-black-color\":false},[\"color:#000\"]],[false,{\":root .has-vivid-cyan-blue-to-vivid-purple-gradient-background\":false},[\"background:linear-gradient(135deg,#0693e3,#9b51e0)\"]],[false,{\":root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background\":false},[\"background:linear-gradient(135deg,#00d084,#0693e3)\"]],[false,{\":root .has-light-green-cyan-to-vivid-green-cyan-gradient-background\":false},[\"background:linear-gradient(135deg,#7adcb4,#00d082)\"]],[false,{\":root .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background\":false},[\"background:linear-gradient(135deg,#fcb900,#ff6900)\"]],[false,{\":root .has-luminous-vivid-orange-to-vivid-red-gradient-background\":false},[\"background:linear-gradient(135deg,#ff6900,#cf2e2e)\"]],[false,{\":root .has-very-light-gray-to-cyan-bluish-gray-gradient-background\":false},[\"background:linear-gradient(135deg,#eee,#a9b8c3)\"]],[false,{\":root .has-cool-to-warm-spectrum-gradient-background\":false},[\"background:linear-gradient(135deg,#4aeadc,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c)\"]],[false,{\":root .has-blush-light-purple-gradient-background\":false},[\"background:linear-gradient(135deg,#ffceec,#9896f0)\"]],[false,{\":root .has-blush-bordeaux-gradient-background\":false},[\"background:linear-gradient(135deg,#fecda5,#fe2d2d 50%,#6b003e)\"]],[false,{\":root .has-purple-crush-gradient-background\":false},[\"background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)\"]],[false,{\":root .has-luminous-dusk-gradient-background\":false},[\"background:linear-gradient(135deg,#ffcb70,#c751c0 50%,#4158d0)\"]],[false,{\":root .has-hazy-dawn-gradient-background\":false},[\"background:linear-gradient(135deg,#faaca8,#dad0ec)\"]],[false,{\":root .has-pale-ocean-gradient-background\":false},[\"background:linear-gradient(135deg,#fff5cb,#b6e3d4 50%,#33a7b5)\"]],[false,{\":root .has-electric-grass-gradient-background\":false},[\"background:linear-gradient(135deg,#caf880,#71ce7e)\"]],[false,{\":root .has-subdued-olive-gradient-background\":false},[\"background:linear-gradient(135deg,#fafae1,#67a671)\"]],[false,{\":root .has-atomic-cream-gradient-background\":false},[\"background:linear-gradient(135deg,#fdd79a,#004a59)\"]],[false,{\":root .has-nightshade-gradient-background\":false},[\"background:linear-gradient(135deg,#330968,#31cdcf)\"]],[false,{\":root .has-midnight-gradient-background\":false},[\"background:linear-gradient(135deg,#020381,#2874fc)\"]],[false,{\".has-small-font-size\":false},[\"font-size:.8125em\"]],[false,{\".has-normal-font-size\":false,\".has-regular-font-size\":false},[\"font-size:1em\"]],[false,{\".has-medium-font-size\":false},[\"font-size:1.25em\"]],[false,{\".has-large-font-size\":false},[\"font-size:2.25em\"]],[false,{\".has-huge-font-size\":false,\".has-larger-font-size\":false},[\"font-size:2.625em\"]],[false,{\".has-text-align-center\":false},[\"text-align:center\"]],[false,{\".has-text-align-left\":false},[\"text-align:left\"]],[false,{\".has-text-align-right\":false},[\"text-align:right\"]],[false,{\"#end-resizable-editor-section\":false},[\"display:none\"]],[false,{\".aligncenter\":false},[\"clear:both\"]],[false,{\".items-justified-left\":false},[\"justify-content:flex-start\"]],[false,{\".items-justified-center\":false},[\"justify-content:center\"]],[false,{\".items-justified-right\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between\":false},[\"justify-content:space-between\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip:rect(1px,1px,1px,1px)\",\"-webkit-clip-path:inset(50%)\",\"clip-path:inset(50%)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#ddd\",\"-webkit-clip-path:none\",\"clip-path:none\",\"color:#444\",\"display:block\",\"font-size:1em\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[false,{\".screen-reader-text:focus:not(#_#_#_#_#_#_#_)\":false},[\"clip:auto\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2501,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"wp-block-library-theme-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/css\\/dist\\/block-library\\/theme.min.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":1381,\"function\":\"wp_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library-theme\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library-theme\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-post-template-functions.php\",\"line\":84,\"function\":\"amp_post_template_add_block_styles\",\"hook\":\"amp_post_template_head\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library-theme\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-post-template-functions.php\",\"line\":84,\"function\":\"amp_post_template_add_block_styles\",\"hook\":\"amp_post_template_head\",\"priority\":10}],\"priority\":20,\"hash\":\"15c379a4f236ed3e1b442f93baa908d0\",\"parse_time\":0.025738954544067383,\"shake_time\":2.9087066650390625e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\"#start-resizable-editor-section\":false},[\"display:none\"]],[false,{\".wp-block-audio figcaption\":false},[\"color:#555\",\"font-size:13px\",\"text-align:center\"]],[false,{\".is-dark-theme .wp-block-audio figcaption\":false},[\"color:hsla(0,0%,100%,.65)\"]],[false,{\".wp-block-code\":false},[\"font-family:Menlo,Consolas,monaco,monospace\",\"color:#1e1e1e\",\"padding:.8em 1em\",\"border:1px solid #ddd\",\"border-radius:4px\"]],[false,{\".wp-block-embed figcaption\":false},[\"color:#555\",\"font-size:13px\",\"text-align:center\"]],[false,{\".is-dark-theme .wp-block-embed figcaption\":false},[\"color:hsla(0,0%,100%,.65)\"]],[false,{\".blocks-gallery-caption\":false},[\"color:#555\",\"font-size:13px\",\"text-align:center\"]],[false,{\".is-dark-theme .blocks-gallery-caption\":false},[\"color:hsla(0,0%,100%,.65)\"]],[false,{\".wp-block-image figcaption\":false},[\"color:#555\",\"font-size:13px\",\"text-align:center\"]],[false,{\".is-dark-theme .wp-block-image figcaption\":false},[\"color:hsla(0,0%,100%,.65)\"]],[false,{\".wp-block-pullquote\":false},[\"border-top:4px solid\",\"border-bottom:4px solid\",\"margin-bottom:1.75em\",\"color:currentColor\"]],[false,{\".wp-block-pullquote__citation\":false,\".wp-block-pullquote cite\":false,\".wp-block-pullquote footer\":false},[\"color:currentColor\",\"text-transform:uppercase\",\"font-size:.8125em\",\"font-style:normal\"]],[false,{\".wp-block-quote\":false},[\"border-left:.25em solid\",\"margin:0 0 1.75em\",\"padding-left:1em\"]],[false,{\".wp-block-quote cite\":false,\".wp-block-quote footer\":false},[\"color:currentColor\",\"font-size:.8125em\",\"position:relative\",\"font-style:normal\"]],[false,{\".wp-block-quote.has-text-align-right\":false},[\"border-left:none\",\"border-right:.25em solid\",\"padding-left:0\",\"padding-right:1em\"]],[false,{\".wp-block-quote.has-text-align-center\":false},[\"border:none\",\"padding-left:0\"]],[false,{\".wp-block-quote.is-large\":false,\".wp-block-quote.is-style-large\":false},[\"border:none\"]],[false,{\".wp-block-search .wp-block-search__label\":false},[\"font-weight:700\"]],[false,{\".wp-block-group.has-background\":false},[\"padding:1.25em 2.375em\",\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".wp-block-separator\":false},[\"border:none\",\"border-bottom:2px solid\",\"margin-left:auto\",\"margin-right:auto\",\"opacity:.4\"]],[false,{\".wp-block-separator:not(.is-style-wide):not(.is-style-dots)\":false},[\"width:100px\"]],[false,{\".wp-block-separator.has-background:not(.is-style-dots)\":false},[\"border-bottom:none\",\"height:1px\"]],[false,{\".wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots)\":false},[\"height:2px\"]],[false,{\".wp-block-table thead\":false},[\"border-bottom:3px solid\"]],[false,{\".wp-block-table tfoot\":false},[\"border-top:3px solid\"]],[false,{\".wp-block-table td\":false,\".wp-block-table th\":false},[\"padding:.5em\",\"border:1px solid\",\"word-break:normal\"]],[false,{\".wp-block-table figcaption\":false},[\"color:#555\",\"font-size:13px\",\"text-align:center\"]],[false,{\".is-dark-theme .wp-block-table figcaption\":false},[\"color:hsla(0,0%,100%,.65)\"]],[false,{\".wp-block-video figcaption\":false},[\"color:#555\",\"font-size:13px\",\"text-align:center\"]],[false,{\".is-dark-theme .wp-block-video figcaption\":false},[\"color:hsla(0,0%,100%,.65)\"]],[false,{\".wp-block-template-part.has-background\":false},[\"padding:1.25em 2.375em\",\"margin-top:0\",\"margin-bottom:0\"]],[false,{\"#end-resizable-editor-section\":false},[\"display:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1388,\"final_size\":216,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=2.3.0\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1020,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-post-template-functions.php\",\"line\":100,\"function\":\"amp_post_template_add_default_styles\",\"hook\":\"amp_post_template_head\",\"priority\":10}],\"priority\":30,\"hash\":\"82cd798ece835d3c574519b60ef930fe\",\"parse_time\":0.0071032047271728516,\"shake_time\":2.6941299438476562e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-unknown-size\":false,\"amp-anim.amp-wp-enforced-sizes\":false,\"amp-img.amp-wp-enforced-sizes\":true},[\"-o-object-fit:contain\",\"object-fit:contain\"]],[false,{\"body amp-audio:not([controls])\":false},[\"display:inline-block\",\"height:auto\"]],[false,{\".amp-wp-default-form-message>p\":false},[\"margin:1em 0\",\"padding:.5em\"]],[false,{\".amp-wp-default-form-message[submit-success]>p.amp-wp-form-redirecting\":false,\".amp-wp-default-form-message[submitting]>p\":false},[\"font-style:italic\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:not(.amp-wp-form-redirecting)\":false},[\"background-color:#90ee90\",\"border:1px solid green\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-error]>p\":false},[\"background-color:#ffb6c1\",\"border:1px solid red\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:empty\":false},[\"display:none\"]],[false,{\"amp-carousel .amp-wp-gallery-caption\":false},[\"background-color:rgba(0,0,0,.5)\",\"bottom:0\",\"color:#fff\",\"left:0\",\"margin-bottom:0\",\"padding:1rem\",\"position:absolute\",\"right:0\",\"text-align:center\"]],[false,{\"amp-carousel .amp-wp-gallery-caption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery[data-amp-carousel=true]\":false,\".wp-block-gallery[data-amp-carousel=true].has-nested-images\":false},[\"display:block\",\"flex-wrap:unset\"]],[false,{\".wp-video\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"height:auto\"]],[false,{\"button[overflow]\":false},[\"bottom:0\"]],[true,{\"amp-anim img\":false,\"amp-anim noscript\":false,\"amp-iframe iframe\":false,\"amp-iframe noscript\":false,\"amp-img img\":true,\"amp-img noscript\":true,\"amp-video noscript\":false,\"amp-video video\":false},[\"image-rendering:inherit\",\"-o-object-fit:inherit\",\"object-fit:inherit\",\"-o-object-position:inherit\",\"object-position:inherit\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":6522,\"final_size\":3025,\"element\":{\"name\":\"style\",\"attributes\":{\"class\":\"style-template-part\"}},\"origin\":\"style_element\",\"sources\":[],\"priority\":70,\"hash\":\"47c45a1806701f31ef8e0fedd61b61f4\",\"parse_time\":0.07496309280395508,\"shake_time\":8.296966552734375e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".alignnone\":false,\".aligncenter\":false,\".alignleft\":false,\".alignright\":false,\".alignwide\":false},[\"margin-top:1em\",\"margin-right:auto\",\"margin-bottom:1em\",\"margin-left:auto\"]],[false,{\".alignright\":false},[\"float:right\"]],[false,{\".alignleft\":false},[\"float:left\"]],[false,{\".aligncenter\":false},[\"display:block\",\"text-align:center\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".alignwide\":false},[\"width:100%\"]],[false,\"@media (min-width: 792px){\"],[false,{\".alignwide\":false},[\"width:calc(100vw - 48px)\",\"max-width:calc(100vw - 48px)\",\"margin-left:calc(50% - 50vw + 24px)\",\"margin-right:calc(50% - 50vw + 24px)\"]],[false,\"}\"],[false,\"@media (min-width: 1200px){\"],[false,{\".alignwide\":false},[\"width:calc(1200px - 48px)\",\"max-width:calc(1200px - 48px)\",\"margin-left:calc(calc(50% - 1200px \\/ 2) + 24px)\",\"margin-right:calc(calc(50% - 1200px \\/ 2) + 24px)\"]],[false,\"}\"],[false,{\".alignfull\":false},[\"width:100vw\",\"max-width:100vw\",\"margin-left:calc(50% - 50vw)\",\"margin-right:calc(50% - 50vw)\"]],[true,{\".amp-wp-enforced-sizes\":true},[\"max-width:100%\",\"margin:0 auto\"]],[false,{\".amp-wp-content\":false,\".amp-wp-title-bar div\":false},[\"margin:0 auto\",\"max-width:600px\"]],[true,{\"html\":true},[\"background:#0a89c0\"]],[true,{\"body\":true},[\"background:#fff\",\"color:#353535\",\"font-family:Georgia,\\\"Times New Roman\\\",Times,Serif\",\"font-weight:300\",\"line-height:1.75em\"]],[true,{\"p\":true,\"ol\":false,\"ul\":false,\"figure\":true},[\"margin:0 0 1em\",\"padding:0\"]],[true,{\"a\":true,\"a:visited\":true},[\"color:#0a89c0\"]],[true,{\"a:hover\":true,\"a:active\":true,\"a:focus\":true},[\"color:#353535\"]],[false,{\"blockquote\":false},[\"color:#353535\",\"background:rgba(127,127,127,.125)\",\"border-left:2px solid #0a89c0\",\"margin:8px 0 24px 0\",\"padding:16px\"]],[false,{\"blockquote p:last-child\":false},[\"margin-bottom:0\"]],[true,{\".amp-wp-meta\":true,\".amp-wp-header div\":true,\".amp-wp-title\":true,\".wp-caption-text\":false,\".amp-wp-tax-category\":true,\".amp-wp-tax-tag\":true,\".amp-wp-comments-link\":true,\".amp-wp-footer p\":true,\".back-to-top\":true},[\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",\\\"Roboto\\\",\\\"Oxygen-Sans\\\",\\\"Ubuntu\\\",\\\"Cantarell\\\",\\\"Helvetica Neue\\\",sans-serif\"]],[true,{\".amp-wp-header\":true},[\"background-color:#0a89c0\"]],[true,{\".amp-wp-header div\":true},[\"color:#fff\",\"font-size:1em\",\"font-weight:400\",\"margin:0 auto\",\"max-width:calc(840px - 32px)\",\"padding:.875em 16px\",\"position:relative\"]],[true,{\".amp-wp-header a\":true},[\"color:#fff\",\"text-decoration:none\"]],[false,{\".amp-wp-header .amp-wp-site-icon\":false},[\"background-color:#fff\",\"border:1px solid #fff\",\"border-radius:50%\",\"position:absolute\",\"right:18px\",\"top:10px\"]],[true,{\".amp-wp-article\":true},[\"color:#353535\",\"font-weight:400\",\"margin:1.5em auto\",\"max-width:840px\",\"overflow-wrap:break-word\",\"word-wrap:break-word\"]],[true,{\".amp-wp-article-header\":true},[\"align-items:center\",\"align-content:stretch\",\"display:flex\",\"flex-wrap:wrap\",\"justify-content:space-between\",\"margin:1.5em 16px 0\"]],[true,{\".amp-wp-title\":true},[\"color:#353535\",\"display:block\",\"flex:1 0 100%\",\"font-weight:900\",\"margin:0 0 .625em\",\"width:100%\"]],[true,{\".amp-wp-meta\":true},[\"color:#696969\",\"display:inline-block\",\"flex:2 1 50%\",\"font-size:.875em\",\"line-height:1.5em\",\"margin:0 0 1.5em\",\"padding:0\"]],[true,{\".amp-wp-article-header .amp-wp-meta:last-of-type\":true},[\"text-align:right\"]],[true,{\".amp-wp-article-header .amp-wp-meta:first-of-type\":true},[\"text-align:left\"]],[true,{\".amp-wp-byline amp-img\":true,\".amp-wp-byline .amp-wp-author\":true},[\"display:inline-block\",\"vertical-align:middle\"]],[true,{\".amp-wp-byline amp-img\":true},[\"border:1px solid #0a89c0\",\"border-radius:50%\",\"position:relative\",\"margin-right:6px\"]],[true,{\".amp-wp-posted-on\":true},[\"text-align:right\"]],[true,{\".amp-wp-article-featured-image\":true},[\"margin:0 0 1em\"]],[true,{\".amp-wp-article-featured-image amp-img\":true},[\"margin:0 auto\"]],[false,{\".amp-wp-article-featured-image.wp-caption .wp-caption-text\":false},[\"margin:0 18px\"]],[true,{\".amp-wp-article-content\":true},[\"margin:0 16px\"]],[false,{\".amp-wp-article-content ul\":false,\".amp-wp-article-content ol\":false},[\"margin-left:1em\"]],[true,{\".amp-wp-article-content .wp-caption\":true},[\"max-width:100%\"]],[true,{\".amp-wp-article-content amp-img\":true},[\"margin:0 auto\"]],[false,{\".amp-wp-article-content amp-img.alignright\":false,\".amp-wp-article-content .wp-block-cover.alignright\":false},[\"margin:0 0 1em 16px\"]],[false,{\".amp-wp-article-content amp-img.alignleft\":false,\".amp-wp-article-content .wp-block-cover.alignleft\":false},[\"margin:0 16px 1em 0\"]],[true,{\".wp-caption\":true},[\"padding:0\"]],[false,{\".wp-caption.alignleft\":false},[\"margin-right:16px\"]],[false,{\".wp-caption.alignright\":false},[\"margin-left:16px\"]],[false,{\".wp-caption .wp-caption-text\":false},[\"border-bottom:1px solid #c2c2c2\",\"color:#696969\",\"font-size:.875em\",\"line-height:1.5em\",\"margin:0\",\"padding:.66em 10px .75em\"]],[false,{\".alignwide\":false,\".alignfull\":false},[\"clear:both\"]],[false,{\"amp-carousel\":false},[\"background:#c2c2c2\",\"margin:0 -16px 1.5em\"]],[false,{\"amp-iframe\":false,\"amp-youtube\":false,\"amp-instagram\":false,\"amp-vine\":false},[\"background:#c2c2c2\",\"margin:0 -16px 1.5em\"]],[false,{\".amp-wp-article-content amp-carousel amp-img\":false},[\"border:none\"]],[false,{\"amp-carousel > amp-img > img\":false},[\"object-fit:contain\"]],[false,{\".amp-wp-iframe-placeholder\":false},[\"background:#c2c2c2 url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/amp\\/assets\\/images\\/placeholder-icon.png\\\") no-repeat center 40%\",\"background-size:48px 48px\",\"min-height:48px\"]],[true,{\".amp-wp-article-footer .amp-wp-meta\":true},[\"display:block\"]],[true,{\".amp-wp-tax-category\":true,\".amp-wp-tax-tag\":true},[\"color:#696969\",\"font-size:.875em\",\"line-height:1.5em\",\"margin:1.5em 16px\"]],[true,{\".amp-wp-comments-link\":true},[\"color:#696969\",\"font-size:.875em\",\"line-height:1.5em\",\"text-align:center\",\"margin:2.25em 0 1.5em\"]],[true,{\".amp-wp-comments-link a\":true},[\"border-style:solid\",\"border-color:#c2c2c2\",\"border-width:1px 1px 2px\",\"border-radius:4px\",\"background-color:transparent\",\"color:#0a89c0\",\"cursor:pointer\",\"display:block\",\"font-size:14px\",\"font-weight:600\",\"line-height:18px\",\"margin:0 auto\",\"max-width:200px\",\"padding:11px 16px\",\"text-decoration:none\",\"width:50%\",\"-webkit-transition:background-color .2s ease\",\"transition:background-color .2s ease\"]],[true,{\".amp-wp-footer\":true},[\"border-top:1px solid #c2c2c2\",\"margin:calc(1.5em - 1px) 0 0\"]],[true,{\".amp-wp-footer div\":true},[\"margin:0 auto\",\"max-width:calc(840px - 32px)\",\"padding:1.25em 16px 1.25em\",\"position:relative\"]],[true,{\".amp-wp-footer h2\":true},[\"font-size:1em\",\"line-height:1.375em\",\"margin:0 0 .5em\"]],[true,{\".amp-wp-footer p\":true},[\"color:#696969\",\"font-size:.8em\",\"line-height:1.5em\",\"margin:0 85px 0 0\"]],[true,{\".amp-wp-footer a\":true},[\"text-decoration:none\"]],[true,{\".back-to-top\":true},[\"bottom:1.275em\",\"font-size:.8em\",\"font-weight:600\",\"line-height:2em\",\"position:absolute\",\"right:16px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":0,\"final_size\":0,\"element\":{\"name\":\"style\",\"attributes\":{\"class\":\"amp-post-template-css-action\"}},\"origin\":\"style_element\",\"sources\":[],\"priority\":70,\"hash\":\"d751713988987e9331980363e24189ce\",\"parse_time\":7.104873657226562e-5,\"shake_time\":1.1920928955078125e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"hook\":\"the_content\",\"filter\":true,\"post_id\":4185,\"post_type\":\"post\",\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":2308,\"function\":\"YouTubePrefs::apply_prefs_content\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":20,\"function\":\"wsh_extract_exclusions\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":61,\"function\":\"WP_Embed::run_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":439,\"function\":\"WP_Embed::autoembed\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":901,\"function\":\"do_blocks\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/formatting-override.php\",\"line\":139,\"function\":\"wsRawHtmlFilterInterceptor::wrap_filters\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":37,\"function\":\"wptexturize\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":442,\"function\":\"wpautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":820,\"function\":\"shortcode_unautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"post-template.php\",\"line\":1668,\"function\":\"prepend_attachment\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":1771,\"function\":\"wp_filter_content_tags\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"https-migration.php\",\"line\":51,\"function\":\"wp_replace_insecure_home_url\"},{\"type\":\"plugin\",\"name\":\"header-footer\",\"file\":\"plugin.php\",\"line\":198,\"function\":\"hefo_the_content\"},{\"type\":\"plugin\",\"name\":\"popup-builder\",\"file\":\"com\\/classes\\/Filters.php\",\"line\":733,\"function\":\"sgpb\\\\Filters::clearContentPreviewMode\"},{\"type\":\"plugin\",\"name\":\"wpdiscuz\",\"file\":\"forms\\/wpdFormAttr\\/Form.php\",\"line\":360,\"function\":\"wpdFormAttr\\\\Form::displayRatingMeta\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/utilities\\/SWP_Compatibility.php\",\"line\":110,\"function\":\"SWP_Compatibility::clean_out_pin_buttons\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":5446,\"function\":\"capital_P_dangit\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"shortcodes.php\",\"line\":206,\"function\":\"do_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":3355,\"function\":\"convert_smilies\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":230,\"function\":\"SWP_Buttons_panel_Loader::add_static_panel_fallback_content\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":175,\"function\":\"SWP_Buttons_panel_Loader::social_warfare_wrapper\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":154,\"function\":\"SWP_Buttons_panel_Loader::add_content_locator\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":95,\"function\":\"wsh_insert_exclusions\"},{\"type\":\"plugin\",\"name\":\"ssl-insecure-content-fixer\",\"file\":\"includes\\/class.SSLInsecureContentFixer.php\",\"line\":315,\"function\":\"SSLInsecureContentFixer::fixContent\"}]}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":2.86102294921875e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"hook\":\"the_content\",\"filter\":true,\"post_id\":4185,\"post_type\":\"post\",\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":2308,\"function\":\"YouTubePrefs::apply_prefs_content\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":20,\"function\":\"wsh_extract_exclusions\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":61,\"function\":\"WP_Embed::run_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":439,\"function\":\"WP_Embed::autoembed\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":901,\"function\":\"do_blocks\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/formatting-override.php\",\"line\":139,\"function\":\"wsRawHtmlFilterInterceptor::wrap_filters\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":37,\"function\":\"wptexturize\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":442,\"function\":\"wpautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":820,\"function\":\"shortcode_unautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"post-template.php\",\"line\":1668,\"function\":\"prepend_attachment\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":1771,\"function\":\"wp_filter_content_tags\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"https-migration.php\",\"line\":51,\"function\":\"wp_replace_insecure_home_url\"},{\"type\":\"plugin\",\"name\":\"header-footer\",\"file\":\"plugin.php\",\"line\":198,\"function\":\"hefo_the_content\"},{\"type\":\"plugin\",\"name\":\"popup-builder\",\"file\":\"com\\/classes\\/Filters.php\",\"line\":733,\"function\":\"sgpb\\\\Filters::clearContentPreviewMode\"},{\"type\":\"plugin\",\"name\":\"wpdiscuz\",\"file\":\"forms\\/wpdFormAttr\\/Form.php\",\"line\":360,\"function\":\"wpdFormAttr\\\\Form::displayRatingMeta\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/utilities\\/SWP_Compatibility.php\",\"line\":110,\"function\":\"SWP_Compatibility::clean_out_pin_buttons\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":5446,\"function\":\"capital_P_dangit\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"shortcodes.php\",\"line\":206,\"function\":\"do_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":3355,\"function\":\"convert_smilies\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":230,\"function\":\"SWP_Buttons_panel_Loader::add_static_panel_fallback_content\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":175,\"function\":\"SWP_Buttons_panel_Loader::social_warfare_wrapper\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":154,\"function\":\"SWP_Buttons_panel_Loader::add_content_locator\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":95,\"function\":\"wsh_insert_exclusions\"},{\"type\":\"plugin\",\"name\":\"ssl-insecure-content-fixer\",\"file\":\"includes\\/class.SSLInsecureContentFixer.php\",\"line\":315,\"function\":\"SSLInsecureContentFixer::fixContent\"}]}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"hook\":\"the_content\",\"filter\":true,\"post_id\":4185,\"post_type\":\"post\",\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":2308,\"function\":\"YouTubePrefs::apply_prefs_content\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":20,\"function\":\"wsh_extract_exclusions\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":61,\"function\":\"WP_Embed::run_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":439,\"function\":\"WP_Embed::autoembed\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":901,\"function\":\"do_blocks\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/formatting-override.php\",\"line\":139,\"function\":\"wsRawHtmlFilterInterceptor::wrap_filters\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":37,\"function\":\"wptexturize\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":442,\"function\":\"wpautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":820,\"function\":\"shortcode_unautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"post-template.php\",\"line\":1668,\"function\":\"prepend_attachment\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":1771,\"function\":\"wp_filter_content_tags\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"https-migration.php\",\"line\":51,\"function\":\"wp_replace_insecure_home_url\"},{\"type\":\"plugin\",\"name\":\"header-footer\",\"file\":\"plugin.php\",\"line\":198,\"function\":\"hefo_the_content\"},{\"type\":\"plugin\",\"name\":\"popup-builder\",\"file\":\"com\\/classes\\/Filters.php\",\"line\":733,\"function\":\"sgpb\\\\Filters::clearContentPreviewMode\"},{\"type\":\"plugin\",\"name\":\"wpdiscuz\",\"file\":\"forms\\/wpdFormAttr\\/Form.php\",\"line\":360,\"function\":\"wpdFormAttr\\\\Form::displayRatingMeta\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/utilities\\/SWP_Compatibility.php\",\"line\":110,\"function\":\"SWP_Compatibility::clean_out_pin_buttons\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":5446,\"function\":\"capital_P_dangit\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"shortcodes.php\",\"line\":206,\"function\":\"do_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":3355,\"function\":\"convert_smilies\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":230,\"function\":\"SWP_Buttons_panel_Loader::add_static_panel_fallback_content\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":175,\"function\":\"SWP_Buttons_panel_Loader::social_warfare_wrapper\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":154,\"function\":\"SWP_Buttons_panel_Loader::add_content_locator\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":95,\"function\":\"wsh_insert_exclusions\"},{\"type\":\"plugin\",\"name\":\"ssl-insecure-content-fixer\",\"file\":\"includes\\/class.SSLInsecureContentFixer.php\",\"line\":315,\"function\":\"SSLInsecureContentFixer::fixContent\"}]}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"hook\":\"the_content\",\"filter\":true,\"post_id\":4185,\"post_type\":\"post\",\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":2308,\"function\":\"YouTubePrefs::apply_prefs_content\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":20,\"function\":\"wsh_extract_exclusions\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":61,\"function\":\"WP_Embed::run_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":439,\"function\":\"WP_Embed::autoembed\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":901,\"function\":\"do_blocks\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/formatting-override.php\",\"line\":139,\"function\":\"wsRawHtmlFilterInterceptor::wrap_filters\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":37,\"function\":\"wptexturize\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":442,\"function\":\"wpautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":820,\"function\":\"shortcode_unautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"post-template.php\",\"line\":1668,\"function\":\"prepend_attachment\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":1771,\"function\":\"wp_filter_content_tags\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"https-migration.php\",\"line\":51,\"function\":\"wp_replace_insecure_home_url\"},{\"type\":\"plugin\",\"name\":\"header-footer\",\"file\":\"plugin.php\",\"line\":198,\"function\":\"hefo_the_content\"},{\"type\":\"plugin\",\"name\":\"popup-builder\",\"file\":\"com\\/classes\\/Filters.php\",\"line\":733,\"function\":\"sgpb\\\\Filters::clearContentPreviewMode\"},{\"type\":\"plugin\",\"name\":\"wpdiscuz\",\"file\":\"forms\\/wpdFormAttr\\/Form.php\",\"line\":360,\"function\":\"wpdFormAttr\\\\Form::displayRatingMeta\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/utilities\\/SWP_Compatibility.php\",\"line\":110,\"function\":\"SWP_Compatibility::clean_out_pin_buttons\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":5446,\"function\":\"capital_P_dangit\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"shortcodes.php\",\"line\":206,\"function\":\"do_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":3355,\"function\":\"convert_smilies\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":230,\"function\":\"SWP_Buttons_panel_Loader::add_static_panel_fallback_content\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":175,\"function\":\"SWP_Buttons_panel_Loader::social_warfare_wrapper\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":154,\"function\":\"SWP_Buttons_panel_Loader::add_content_locator\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":95,\"function\":\"wsh_insert_exclusions\"},{\"type\":\"plugin\",\"name\":\"ssl-insecure-content-fixer\",\"file\":\"includes\\/class.SSLInsecureContentFixer.php\",\"line\":315,\"function\":\"SSLInsecureContentFixer::fixContent\"}]}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"hook\":\"the_content\",\"filter\":true,\"post_id\":4185,\"post_type\":\"post\",\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":2308,\"function\":\"YouTubePrefs::apply_prefs_content\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":20,\"function\":\"wsh_extract_exclusions\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":61,\"function\":\"WP_Embed::run_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":439,\"function\":\"WP_Embed::autoembed\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":901,\"function\":\"do_blocks\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/formatting-override.php\",\"line\":139,\"function\":\"wsRawHtmlFilterInterceptor::wrap_filters\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":37,\"function\":\"wptexturize\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":442,\"function\":\"wpautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":820,\"function\":\"shortcode_unautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"post-template.php\",\"line\":1668,\"function\":\"prepend_attachment\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":1771,\"function\":\"wp_filter_content_tags\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"https-migration.php\",\"line\":51,\"function\":\"wp_replace_insecure_home_url\"},{\"type\":\"plugin\",\"name\":\"header-footer\",\"file\":\"plugin.php\",\"line\":198,\"function\":\"hefo_the_content\"},{\"type\":\"plugin\",\"name\":\"popup-builder\",\"file\":\"com\\/classes\\/Filters.php\",\"line\":733,\"function\":\"sgpb\\\\Filters::clearContentPreviewMode\"},{\"type\":\"plugin\",\"name\":\"wpdiscuz\",\"file\":\"forms\\/wpdFormAttr\\/Form.php\",\"line\":360,\"function\":\"wpdFormAttr\\\\Form::displayRatingMeta\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/utilities\\/SWP_Compatibility.php\",\"line\":110,\"function\":\"SWP_Compatibility::clean_out_pin_buttons\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":5446,\"function\":\"capital_P_dangit\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"shortcodes.php\",\"line\":206,\"function\":\"do_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":3355,\"function\":\"convert_smilies\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":230,\"function\":\"SWP_Buttons_panel_Loader::add_static_panel_fallback_content\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":175,\"function\":\"SWP_Buttons_panel_Loader::social_warfare_wrapper\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":154,\"function\":\"SWP_Buttons_panel_Loader::add_content_locator\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":95,\"function\":\"wsh_insert_exclusions\"},{\"type\":\"plugin\",\"name\":\"ssl-insecure-content-fixer\",\"file\":\"includes\\/class.SSLInsecureContentFixer.php\",\"line\":315,\"function\":\"SSLInsecureContentFixer::fixContent\"}]}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"hook\":\"the_content\",\"filter\":true,\"post_id\":4185,\"post_type\":\"post\",\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":2308,\"function\":\"YouTubePrefs::apply_prefs_content\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":20,\"function\":\"wsh_extract_exclusions\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":61,\"function\":\"WP_Embed::run_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":439,\"function\":\"WP_Embed::autoembed\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":901,\"function\":\"do_blocks\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/formatting-override.php\",\"line\":139,\"function\":\"wsRawHtmlFilterInterceptor::wrap_filters\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":37,\"function\":\"wptexturize\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":442,\"function\":\"wpautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":820,\"function\":\"shortcode_unautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"post-template.php\",\"line\":1668,\"function\":\"prepend_attachment\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":1771,\"function\":\"wp_filter_content_tags\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"https-migration.php\",\"line\":51,\"function\":\"wp_replace_insecure_home_url\"},{\"type\":\"plugin\",\"name\":\"header-footer\",\"file\":\"plugin.php\",\"line\":198,\"function\":\"hefo_the_content\"},{\"type\":\"plugin\",\"name\":\"popup-builder\",\"file\":\"com\\/classes\\/Filters.php\",\"line\":733,\"function\":\"sgpb\\\\Filters::clearContentPreviewMode\"},{\"type\":\"plugin\",\"name\":\"wpdiscuz\",\"file\":\"forms\\/wpdFormAttr\\/Form.php\",\"line\":360,\"function\":\"wpdFormAttr\\\\Form::displayRatingMeta\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/utilities\\/SWP_Compatibility.php\",\"line\":110,\"function\":\"SWP_Compatibility::clean_out_pin_buttons\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":5446,\"function\":\"capital_P_dangit\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"shortcodes.php\",\"line\":206,\"function\":\"do_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":3355,\"function\":\"convert_smilies\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":230,\"function\":\"SWP_Buttons_panel_Loader::add_static_panel_fallback_content\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":175,\"function\":\"SWP_Buttons_panel_Loader::social_warfare_wrapper\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":154,\"function\":\"SWP_Buttons_panel_Loader::add_content_locator\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":95,\"function\":\"wsh_insert_exclusions\"},{\"type\":\"plugin\",\"name\":\"ssl-insecure-content-fixer\",\"file\":\"includes\\/class.SSLInsecureContentFixer.php\",\"line\":315,\"function\":\"SSLInsecureContentFixer::fixContent\"}]}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"hook\":\"the_content\",\"filter\":true,\"post_id\":4185,\"post_type\":\"post\",\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":2308,\"function\":\"YouTubePrefs::apply_prefs_content\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":20,\"function\":\"wsh_extract_exclusions\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":61,\"function\":\"WP_Embed::run_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":439,\"function\":\"WP_Embed::autoembed\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":901,\"function\":\"do_blocks\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/formatting-override.php\",\"line\":139,\"function\":\"wsRawHtmlFilterInterceptor::wrap_filters\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":37,\"function\":\"wptexturize\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":442,\"function\":\"wpautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":820,\"function\":\"shortcode_unautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"post-template.php\",\"line\":1668,\"function\":\"prepend_attachment\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":1771,\"function\":\"wp_filter_content_tags\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"https-migration.php\",\"line\":51,\"function\":\"wp_replace_insecure_home_url\"},{\"type\":\"plugin\",\"name\":\"header-footer\",\"file\":\"plugin.php\",\"line\":198,\"function\":\"hefo_the_content\"},{\"type\":\"plugin\",\"name\":\"popup-builder\",\"file\":\"com\\/classes\\/Filters.php\",\"line\":733,\"function\":\"sgpb\\\\Filters::clearContentPreviewMode\"},{\"type\":\"plugin\",\"name\":\"wpdiscuz\",\"file\":\"forms\\/wpdFormAttr\\/Form.php\",\"line\":360,\"function\":\"wpdFormAttr\\\\Form::displayRatingMeta\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/utilities\\/SWP_Compatibility.php\",\"line\":110,\"function\":\"SWP_Compatibility::clean_out_pin_buttons\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":5446,\"function\":\"capital_P_dangit\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"shortcodes.php\",\"line\":206,\"function\":\"do_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":3355,\"function\":\"convert_smilies\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":230,\"function\":\"SWP_Buttons_panel_Loader::add_static_panel_fallback_content\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":175,\"function\":\"SWP_Buttons_panel_Loader::social_warfare_wrapper\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":154,\"function\":\"SWP_Buttons_panel_Loader::add_content_locator\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":95,\"function\":\"wsh_insert_exclusions\"},{\"type\":\"plugin\",\"name\":\"ssl-insecure-content-fixer\",\"file\":\"includes\\/class.SSLInsecureContentFixer.php\",\"line\":315,\"function\":\"SSLInsecureContentFixer::fixContent\"}]}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":1.0967254638671875e-5,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"hook\":\"the_content\",\"filter\":true,\"post_id\":4185,\"post_type\":\"post\",\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":2308,\"function\":\"YouTubePrefs::apply_prefs_content\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":20,\"function\":\"wsh_extract_exclusions\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":61,\"function\":\"WP_Embed::run_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":439,\"function\":\"WP_Embed::autoembed\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":901,\"function\":\"do_blocks\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/formatting-override.php\",\"line\":139,\"function\":\"wsRawHtmlFilterInterceptor::wrap_filters\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":37,\"function\":\"wptexturize\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":442,\"function\":\"wpautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":820,\"function\":\"shortcode_unautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"post-template.php\",\"line\":1668,\"function\":\"prepend_attachment\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":1771,\"function\":\"wp_filter_content_tags\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"https-migration.php\",\"line\":51,\"function\":\"wp_replace_insecure_home_url\"},{\"type\":\"plugin\",\"name\":\"header-footer\",\"file\":\"plugin.php\",\"line\":198,\"function\":\"hefo_the_content\"},{\"type\":\"plugin\",\"name\":\"popup-builder\",\"file\":\"com\\/classes\\/Filters.php\",\"line\":733,\"function\":\"sgpb\\\\Filters::clearContentPreviewMode\"},{\"type\":\"plugin\",\"name\":\"wpdiscuz\",\"file\":\"forms\\/wpdFormAttr\\/Form.php\",\"line\":360,\"function\":\"wpdFormAttr\\\\Form::displayRatingMeta\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/utilities\\/SWP_Compatibility.php\",\"line\":110,\"function\":\"SWP_Compatibility::clean_out_pin_buttons\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":5446,\"function\":\"capital_P_dangit\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"shortcodes.php\",\"line\":206,\"function\":\"do_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":3355,\"function\":\"convert_smilies\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":230,\"function\":\"SWP_Buttons_panel_Loader::add_static_panel_fallback_content\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":175,\"function\":\"SWP_Buttons_panel_Loader::social_warfare_wrapper\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":154,\"function\":\"SWP_Buttons_panel_Loader::add_content_locator\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":95,\"function\":\"wsh_insert_exclusions\"},{\"type\":\"plugin\",\"name\":\"ssl-insecure-content-fixer\",\"file\":\"includes\\/class.SSLInsecureContentFixer.php\",\"line\":315,\"function\":\"SSLInsecureContentFixer::fixContent\"}]}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"hook\":\"the_content\",\"filter\":true,\"post_id\":4185,\"post_type\":\"post\",\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":2308,\"function\":\"YouTubePrefs::apply_prefs_content\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":20,\"function\":\"wsh_extract_exclusions\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":61,\"function\":\"WP_Embed::run_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":439,\"function\":\"WP_Embed::autoembed\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":901,\"function\":\"do_blocks\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/formatting-override.php\",\"line\":139,\"function\":\"wsRawHtmlFilterInterceptor::wrap_filters\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":37,\"function\":\"wptexturize\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":442,\"function\":\"wpautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":820,\"function\":\"shortcode_unautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"post-template.php\",\"line\":1668,\"function\":\"prepend_attachment\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":1771,\"function\":\"wp_filter_content_tags\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"https-migration.php\",\"line\":51,\"function\":\"wp_replace_insecure_home_url\"},{\"type\":\"plugin\",\"name\":\"header-footer\",\"file\":\"plugin.php\",\"line\":198,\"function\":\"hefo_the_content\"},{\"type\":\"plugin\",\"name\":\"popup-builder\",\"file\":\"com\\/classes\\/Filters.php\",\"line\":733,\"function\":\"sgpb\\\\Filters::clearContentPreviewMode\"},{\"type\":\"plugin\",\"name\":\"wpdiscuz\",\"file\":\"forms\\/wpdFormAttr\\/Form.php\",\"line\":360,\"function\":\"wpdFormAttr\\\\Form::displayRatingMeta\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/utilities\\/SWP_Compatibility.php\",\"line\":110,\"function\":\"SWP_Compatibility::clean_out_pin_buttons\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":5446,\"function\":\"capital_P_dangit\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"shortcodes.php\",\"line\":206,\"function\":\"do_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":3355,\"function\":\"convert_smilies\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":230,\"function\":\"SWP_Buttons_panel_Loader::add_static_panel_fallback_content\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":175,\"function\":\"SWP_Buttons_panel_Loader::social_warfare_wrapper\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":154,\"function\":\"SWP_Buttons_panel_Loader::add_content_locator\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":95,\"function\":\"wsh_insert_exclusions\"},{\"type\":\"plugin\",\"name\":\"ssl-insecure-content-fixer\",\"file\":\"includes\\/class.SSLInsecureContentFixer.php\",\"line\":315,\"function\":\"SSLInsecureContentFixer::fixContent\"}]}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"hook\":\"the_content\",\"filter\":true,\"post_id\":4185,\"post_type\":\"post\",\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":2308,\"function\":\"YouTubePrefs::apply_prefs_content\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":20,\"function\":\"wsh_extract_exclusions\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":61,\"function\":\"WP_Embed::run_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":439,\"function\":\"WP_Embed::autoembed\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":901,\"function\":\"do_blocks\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/formatting-override.php\",\"line\":139,\"function\":\"wsRawHtmlFilterInterceptor::wrap_filters\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":37,\"function\":\"wptexturize\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":442,\"function\":\"wpautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":820,\"function\":\"shortcode_unautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"post-template.php\",\"line\":1668,\"function\":\"prepend_attachment\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":1771,\"function\":\"wp_filter_content_tags\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"https-migration.php\",\"line\":51,\"function\":\"wp_replace_insecure_home_url\"},{\"type\":\"plugin\",\"name\":\"header-footer\",\"file\":\"plugin.php\",\"line\":198,\"function\":\"hefo_the_content\"},{\"type\":\"plugin\",\"name\":\"popup-builder\",\"file\":\"com\\/classes\\/Filters.php\",\"line\":733,\"function\":\"sgpb\\\\Filters::clearContentPreviewMode\"},{\"type\":\"plugin\",\"name\":\"wpdiscuz\",\"file\":\"forms\\/wpdFormAttr\\/Form.php\",\"line\":360,\"function\":\"wpdFormAttr\\\\Form::displayRatingMeta\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/utilities\\/SWP_Compatibility.php\",\"line\":110,\"function\":\"SWP_Compatibility::clean_out_pin_buttons\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":5446,\"function\":\"capital_P_dangit\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"shortcodes.php\",\"line\":206,\"function\":\"do_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":3355,\"function\":\"convert_smilies\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":230,\"function\":\"SWP_Buttons_panel_Loader::add_static_panel_fallback_content\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":175,\"function\":\"SWP_Buttons_panel_Loader::social_warfare_wrapper\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":154,\"function\":\"SWP_Buttons_panel_Loader::add_content_locator\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":95,\"function\":\"wsh_insert_exclusions\"},{\"type\":\"plugin\",\"name\":\"ssl-insecure-content-fixer\",\"file\":\"includes\\/class.SSLInsecureContentFixer.php\",\"line\":315,\"function\":\"SSLInsecureContentFixer::fixContent\"}]}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"hook\":\"the_content\",\"filter\":true,\"post_id\":4185,\"post_type\":\"post\",\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":2308,\"function\":\"YouTubePrefs::apply_prefs_content\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":20,\"function\":\"wsh_extract_exclusions\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":61,\"function\":\"WP_Embed::run_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":439,\"function\":\"WP_Embed::autoembed\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":901,\"function\":\"do_blocks\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/formatting-override.php\",\"line\":139,\"function\":\"wsRawHtmlFilterInterceptor::wrap_filters\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":37,\"function\":\"wptexturize\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":442,\"function\":\"wpautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":820,\"function\":\"shortcode_unautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"post-template.php\",\"line\":1668,\"function\":\"prepend_attachment\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":1771,\"function\":\"wp_filter_content_tags\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"https-migration.php\",\"line\":51,\"function\":\"wp_replace_insecure_home_url\"},{\"type\":\"plugin\",\"name\":\"header-footer\",\"file\":\"plugin.php\",\"line\":198,\"function\":\"hefo_the_content\"},{\"type\":\"plugin\",\"name\":\"popup-builder\",\"file\":\"com\\/classes\\/Filters.php\",\"line\":733,\"function\":\"sgpb\\\\Filters::clearContentPreviewMode\"},{\"type\":\"plugin\",\"name\":\"wpdiscuz\",\"file\":\"forms\\/wpdFormAttr\\/Form.php\",\"line\":360,\"function\":\"wpdFormAttr\\\\Form::displayRatingMeta\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/utilities\\/SWP_Compatibility.php\",\"line\":110,\"function\":\"SWP_Compatibility::clean_out_pin_buttons\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":5446,\"function\":\"capital_P_dangit\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"shortcodes.php\",\"line\":206,\"function\":\"do_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":3355,\"function\":\"convert_smilies\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":230,\"function\":\"SWP_Buttons_panel_Loader::add_static_panel_fallback_content\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":175,\"function\":\"SWP_Buttons_panel_Loader::social_warfare_wrapper\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":154,\"function\":\"SWP_Buttons_panel_Loader::add_content_locator\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":95,\"function\":\"wsh_insert_exclusions\"},{\"type\":\"plugin\",\"name\":\"ssl-insecure-content-fixer\",\"file\":\"includes\\/class.SSLInsecureContentFixer.php\",\"line\":315,\"function\":\"SSLInsecureContentFixer::fixContent\"}]}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"hook\":\"the_content\",\"filter\":true,\"post_id\":4185,\"post_type\":\"post\",\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":2308,\"function\":\"YouTubePrefs::apply_prefs_content\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":20,\"function\":\"wsh_extract_exclusions\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":61,\"function\":\"WP_Embed::run_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":439,\"function\":\"WP_Embed::autoembed\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":901,\"function\":\"do_blocks\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/formatting-override.php\",\"line\":139,\"function\":\"wsRawHtmlFilterInterceptor::wrap_filters\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":37,\"function\":\"wptexturize\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":442,\"function\":\"wpautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":820,\"function\":\"shortcode_unautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"post-template.php\",\"line\":1668,\"function\":\"prepend_attachment\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":1771,\"function\":\"wp_filter_content_tags\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"https-migration.php\",\"line\":51,\"function\":\"wp_replace_insecure_home_url\"},{\"type\":\"plugin\",\"name\":\"header-footer\",\"file\":\"plugin.php\",\"line\":198,\"function\":\"hefo_the_content\"},{\"type\":\"plugin\",\"name\":\"popup-builder\",\"file\":\"com\\/classes\\/Filters.php\",\"line\":733,\"function\":\"sgpb\\\\Filters::clearContentPreviewMode\"},{\"type\":\"plugin\",\"name\":\"wpdiscuz\",\"file\":\"forms\\/wpdFormAttr\\/Form.php\",\"line\":360,\"function\":\"wpdFormAttr\\\\Form::displayRatingMeta\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/utilities\\/SWP_Compatibility.php\",\"line\":110,\"function\":\"SWP_Compatibility::clean_out_pin_buttons\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":5446,\"function\":\"capital_P_dangit\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"shortcodes.php\",\"line\":206,\"function\":\"do_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":3355,\"function\":\"convert_smilies\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":230,\"function\":\"SWP_Buttons_panel_Loader::add_static_panel_fallback_content\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":175,\"function\":\"SWP_Buttons_panel_Loader::social_warfare_wrapper\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":154,\"function\":\"SWP_Buttons_panel_Loader::add_content_locator\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":95,\"function\":\"wsh_insert_exclusions\"},{\"type\":\"plugin\",\"name\":\"ssl-insecure-content-fixer\",\"file\":\"includes\\/class.SSLInsecureContentFixer.php\",\"line\":315,\"function\":\"SSLInsecureContentFixer::fixContent\"}]}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"hook\":\"the_content\",\"filter\":true,\"post_id\":4185,\"post_type\":\"post\",\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":2308,\"function\":\"YouTubePrefs::apply_prefs_content\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":20,\"function\":\"wsh_extract_exclusions\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":61,\"function\":\"WP_Embed::run_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":439,\"function\":\"WP_Embed::autoembed\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":901,\"function\":\"do_blocks\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/formatting-override.php\",\"line\":139,\"function\":\"wsRawHtmlFilterInterceptor::wrap_filters\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":37,\"function\":\"wptexturize\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":442,\"function\":\"wpautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":820,\"function\":\"shortcode_unautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"post-template.php\",\"line\":1668,\"function\":\"prepend_attachment\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":1771,\"function\":\"wp_filter_content_tags\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"https-migration.php\",\"line\":51,\"function\":\"wp_replace_insecure_home_url\"},{\"type\":\"plugin\",\"name\":\"header-footer\",\"file\":\"plugin.php\",\"line\":198,\"function\":\"hefo_the_content\"},{\"type\":\"plugin\",\"name\":\"popup-builder\",\"file\":\"com\\/classes\\/Filters.php\",\"line\":733,\"function\":\"sgpb\\\\Filters::clearContentPreviewMode\"},{\"type\":\"plugin\",\"name\":\"wpdiscuz\",\"file\":\"forms\\/wpdFormAttr\\/Form.php\",\"line\":360,\"function\":\"wpdFormAttr\\\\Form::displayRatingMeta\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/utilities\\/SWP_Compatibility.php\",\"line\":110,\"function\":\"SWP_Compatibility::clean_out_pin_buttons\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":5446,\"function\":\"capital_P_dangit\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"shortcodes.php\",\"line\":206,\"function\":\"do_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":3355,\"function\":\"convert_smilies\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":230,\"function\":\"SWP_Buttons_panel_Loader::add_static_panel_fallback_content\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":175,\"function\":\"SWP_Buttons_panel_Loader::social_warfare_wrapper\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":154,\"function\":\"SWP_Buttons_panel_Loader::add_content_locator\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":95,\"function\":\"wsh_insert_exclusions\"},{\"type\":\"plugin\",\"name\":\"ssl-insecure-content-fixer\",\"file\":\"includes\\/class.SSLInsecureContentFixer.php\",\"line\":315,\"function\":\"SSLInsecureContentFixer::fixContent\"}]}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":true}]'),(169774,4794,'_amp_validated_environment','a:3:{s:5:\"theme\";a:1:{s:11:\"translucent\";s:3:\"1.0\";}s:7:\"plugins\";a:32:{s:7:\"404page\";s:6:\"11.3.1\";s:26:\"advanced-custom-fields-pro\";s:6:\"5.12.2\";s:16:\"tinymce-advanced\";s:5:\"5.6.0\";s:3:\"amp\";s:5:\"2.3.0\";s:17:\"code-syntax-block\";s:5:\"3.1.1\";s:14:\"contact-form-7\";s:5:\"5.5.3\";s:10:\"duplicator\";s:5:\"1.5.0\";s:25:\"embed-calendly-scheduling\";s:3:\"3.0\";s:18:\"youtube-embed-plus\";s:6:\"14.1.2\";s:13:\"header-footer\";s:5:\"3.2.5\";s:6:\"iframe\";s:3:\"4.5\";s:7:\"imagify\";s:3:\"2.0\";s:15:\"cf7-hubspot-pro\";s:5:\"1.2.1\";s:13:\"popup-builder\";s:6:\"4.1.13\";s:34:\"post-tags-and-categories-for-pages\";s:5:\"1.4.1\";s:8:\"raw-html\";s:5:\"1.6.3\";s:11:\"redirection\";s:5:\"5.3.2\";s:11:\"redis-cache\";s:5:\"2.2.0\";s:26:\"reveal-ids-for-wp-admin-25\";s:5:\"1.5.4\";s:34:\"sendgrid-email-delivery-simplified\";s:6:\"1.11.8\";s:9:\"revslider\";s:6:\"6.5.23\";s:14:\"social-warfare\";s:5:\"4.3.0\";s:26:\"ssl-insecure-content-fixer\";s:5:\"2.7.2\";s:11:\"updraftplus\";s:7:\"1.22.19\";s:8:\"wpdiscuz\";s:5:\"7.4.2\";s:15:\"wp-file-manager\";s:5:\"7.1.6\";s:14:\"wp-google-maps\";s:6:\"9.0.10\";s:5:\"wpide\";s:5:\"3.4.1\";s:23:\"wp-phpmyadmin-extension\";s:7:\"5.2.0.7\";s:14:\"duplicate-post\";s:3:\"4.4\";s:13:\"wordpress-seo\";s:4:\"19.1\";s:21:\"wordpress-seo-premium\";s:4:\"17.7\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:6:\"reader\";}}'),(169775,4794,'_amp_queried_object','a:2:{s:2:\"id\";i:4449;s:4:\"type\";s:4:\"post\";}'),(169776,4794,'_amp_stylesheets','[{\"group\":\"amp-custom\",\"original_size\":506,\"final_size\":506,\"element\":{\"name\":\"style\",\"attributes\":[]},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"src\\/MobileRedirection.php\",\"line\":522,\"function\":\"AmpProject\\\\AmpWP\\\\MobileRedirection::add_mobile_version_switcher_styles\",\"hook\":\"amp_post_template_head\",\"priority\":10}],\"priority\":70,\"hash\":\"17b598bde842aecbed799589222fd5f8\",\"parse_time\":0.007145881652832031,\"shake_time\":7.915496826171875e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"#amp-mobile-version-switcher\":true},[\"left:0\",\"position:absolute\",\"width:100%\",\"z-index:100\"]],[true,{\"#amp-mobile-version-switcher>a\":true},[\"background-color:#444\",\"border:0\",\"color:#eaeaea\",\"display:block\",\"font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif\",\"font-size:16px\",\"font-weight:600\",\"padding:15px 0\",\"text-align:center\",\"text-decoration:none\"]],[true,{\"#amp-mobile-version-switcher>a:active\":true,\"#amp-mobile-version-switcher>a:focus\":true,\"#amp-mobile-version-switcher>a:hover\":true},[\"text-decoration:underline\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2209,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"social-warfare-block-css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/js\\/post-editor\\/dist\\/blocks.style.build.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"assets\\/js\\/post-editor\\/blocks.php\",\"line\":20,\"function\":\"register_gutenberg_blocks\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social-warfare-block-css\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-post-template-functions.php\",\"line\":84,\"function\":\"amp_post_template_add_block_styles\",\"hook\":\"amp_post_template_head\",\"priority\":10}],\"priority\":30,\"hash\":\"c542eecf74fba8e6b26c437634e5223e\",\"parse_time\":0.010244131088256836,\"shake_time\":0.00010991096496582031,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".social-warfare-admin-block\":false},[\"font-family:\\\"SF Pro Text\\\",\\\"Helvetica\\\",sans-serif\",\"font-size:13px\"]],[false,{\".social-warfare-admin-block .head\":false},[\"width:100%\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".social-warfare-admin-block .head p\":false},[\"font-weight:bold\"]],[false,{\".social-warfare-admin-block .swp-block-icon\":false},[\"margin:0 28px 0 14px\",\"font-size:18px\",\"width:32px\",\"height:32px\"]],[false,{\".social-warfare-block-wrap input\":false,\".social-warfare-block-wrap select\":false},[\"width:100%\"]],[false,{\".swp-active-block\":false},[\"height:100%\"]],[false,{\".swp-active-block input\":false,\".swp-active-block select\":false,\".swp-active-block textarea\":false},[\"display:block\",\"width:100%\",\"padding:5px\",\"height:42px\",\"border:1px solid #e2e4e7\"]],[false,{\".swp-active-block textarea\":false},[\"height:64px\"]],[false,{\".swp-active-block .swp-inner-block-50\":false},[\"width:50%\",\"display:inline-block\",\"padding:0 1px\"]],[false,{\".swp-active-block .head>div\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row no-wrap\",\"flex-flow:row no-wrap\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".swp-active-block .head .swp-block-icon\":false,\".swp-active-block .head .swp-block-title\":false},[\"display:inline-block\"]],[false,{\".swp-active-block p\":false},[\"margin:25px 0 5px 0\"]],[false,{\".swp-active-block .head p\":false},[\"margin:initial\"]],[false,{\".swp-inactive-block\":false},[\"min-height:50px\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".swp-inactive-block code\":false},[\"display:block\",\"width:100%\",\"padding:5px\",\"height:42px\"]],[false,{\".swp-inactive-block .swp-preview\":false},[\"background:#f5f5f5\",\"width:100%\",\"display:block\",\"font-family:\\\"SF Pro Text\\\",\\\"Helvetica\\\",sans-sans-serif\",\"font-size:13px\",\"padding:15px\",\"border-radius:4px\"]],[false,{\".swp-inactive-block .swp-dashicon\":false},[\"margin:0 14px\"]],[false,{\".click-to-tweet-block-wrap textarea[name=\\\"tweetText\\\"]\":false},[\"border-top-right-radius:0px\"]],[false,{\".click-to-tweet-block-wrap .block-characters-remaining\":false},[\"font-size:16px\",\"font-size:13px\",\"font-weight:normal\",\"color:white\",\"padding:5px\",\"padding:5px 15px\",\"border-top-right-radius:4px\",\"border-top-left-radius:4px\",\"background:#30394f\",\"margin:0\",\"float:right\",\"max-width:200px\",\"position:relative\",\"-webkit-transition:all 300ms\",\"-o-transition:all 300ms\",\"transition:all 300ms\"]],[false,{\".click-to-tweet-block-wrap .block-characters-remaining.over-limit\":false},[\"background:#ee464f\",\"color:#fff\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":80574,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"wp-block-library-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/css\\/dist\\/block-library\\/style.min.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":1381,\"function\":\"wp_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-post-template-functions.php\",\"line\":84,\"function\":\"amp_post_template_add_block_styles\",\"hook\":\"amp_post_template_head\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-post-template-functions.php\",\"line\":84,\"function\":\"amp_post_template_add_block_styles\",\"hook\":\"amp_post_template_head\",\"priority\":10}],\"priority\":20,\"hash\":\"db08bb47cd026dcad266bd62ddc38fd8\",\"parse_time\":1.007054090499878,\"shake_time\":0.000782012939453125,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\"#start-resizable-editor-section\":false},[\"display:none\"]],[false,{\".wp-block-audio\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-audio figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-audio amp-audio\":false},[\"width:100%\",\"min-width:300px\"]],[false,{\".wp-block-button__link\":false},[\"color:#fff\",\"background-color:#32373c\",\"border-radius:9999px\",\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"font-size:1.125em\",\"padding:calc(.667em + 2px) calc(1.333em + 2px)\",\"text-align:center\",\"text-decoration:none\",\"overflow-wrap:break-word\",\"box-sizing:border-box\"]],[false,{\".wp-block-button__link:active\":false,\".wp-block-button__link:focus\":false,\".wp-block-button__link:hover\":false,\".wp-block-button__link:visited\":false},[\"color:#fff\"]],[false,{\".wp-block-button__link.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-button__link.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width\":false},[\"max-width:none\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"width:calc(100% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100:only-child\":false},[\"margin-right:0\",\"width:100%\"]],[false,\"@supports (column-gap:0.5em){\"],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button.wp-block-button\":false,\".wp-block-buttons>.wp-block-button.wp-block-button\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - .375em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - .25em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - .125em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"width:auto\",\"flex-basis:100%\"]],[false,\"}\"],[false,{\".wp-block-button.is-style-squared\":false,\".wp-block-button__link.wp-block-button.is-style-squared\":false},[\"border-radius:0\"]],[false,{\".wp-block-button.no-border-radius:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button__link.no-border-radius:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[false,{\".is-style-outline>.wp-block-button__link\":false,\".wp-block-button__link.is-style-outline\":false},[\"border:2px solid\",\"padding:.667em 1.333em\"]],[false,{\".is-style-outline>.wp-block-button__link:not(.has-text-color)\":false,\".wp-block-button__link.is-style-outline:not(.has-text-color)\":false},[\"color:currentColor\"]],[false,{\".is-style-outline>.wp-block-button__link:not(.has-background)\":false,\".wp-block-button__link.is-style-outline:not(.has-background)\":false},[\"background-color:transparent\"]],[false,{\".wp-block-buttons\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\",\"column-gap:.5em\"]],[false,{\".wp-block-buttons.is-vertical\":false},[\"flex-direction:column\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-buttons>.wp-block-button\":false},[\"display:inline-block\",\"margin-left:0\",\"margin-right:.5em\",\"margin-bottom:.5em\"]],[false,{\".wp-block-buttons>.wp-block-button:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.is-content-justification-left\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-left.is-vertical\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-center\":false},[\"justify-content:center\"]],[false,{\".wp-block-buttons.is-content-justification-center.is-vertical\":false},[\"align-items:center\"]],[false,{\".wp-block-buttons.is-content-justification-right\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button\":false},[\"margin-left:.5em\",\"margin-right:0\"]],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-buttons.is-content-justification-right.is-vertical\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-space-between\":false},[\"justify-content:space-between\"]],[false,{\".wp-block-buttons.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-buttons.alignleft .wp-block-button\":false},[\"margin-left:0\",\"margin-right:.5em\"]],[false,{\".wp-block-buttons.alignleft .wp-block-button:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.alignright .wp-block-button\":false},[\"margin-right:0\",\"margin-left:.5em\"]],[false,{\".wp-block-buttons.alignright .wp-block-button:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-button.aligncenter\":false,\".wp-block-calendar\":false},[\"text-align:center\"]],[false,{\".wp-block-calendar tbody td\":false,\".wp-block-calendar th\":false},[\"padding:.25em\",\"border:1px solid #ddd\"]],[false,{\".wp-block-calendar tfoot td\":false},[\"border:none\"]],[false,{\".wp-block-calendar table\":false},[\"width:100%\",\"border-collapse:collapse\"]],[false,{\".wp-block-calendar table th\":false},[\"font-weight:400\",\"background:#ddd\"]],[false,{\".wp-block-calendar a\":false},[\"text-decoration:underline\"]],[false,{\".wp-block-calendar table caption\":false,\".wp-block-calendar table tbody\":false},[\"color:#40464d\"]],[false,{\".wp-block-categories.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-categories.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-code code\":false},[\"display:block\",\"white-space:pre-wrap\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-columns\":false},[\"display:flex\",\"margin-bottom:1.75em\",\"box-sizing:border-box\",\"flex-wrap:wrap\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns\":false},[\"flex-wrap:nowrap\"]],[false,\"}\"],[false,{\".wp-block-columns.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-columns.are-vertically-aligned-top\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-columns.are-vertically-aligned-center\":false},[\"align-items:center\"]],[false,{\".wp-block-columns.are-vertically-aligned-bottom\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-column\":false},[\"flex-grow:1\",\"min-width:0\",\"word-break:break-word\",\"overflow-wrap:break-word\"]],[false,\"@media (max-width:599px){\"],[false,{\".wp-block-column:not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:100%\"]],[false,\"}\"],[false,\"@media (min-width:600px) and (max-width:781px){\"],[false,{\".wp-block-column:not(:only-child)\":false},[\"flex-grow:0\"]],[false,{\".wp-block-column:not(:only-child):not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:calc(50% - 1em)\"]],[false,{\".wp-block-column:nth-child(2n)\":false},[\"margin-left:2em\"]],[false,\"}\"],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[false,{\".wp-block-column:not(:first-child)\":false},[\"margin-left:2em\"]],[false,\"}\"],[false,{\".wp-block-column.is-vertically-aligned-top\":false},[\"align-self:flex-start\"]],[false,{\".wp-block-column.is-vertically-aligned-center\":false},[\"align-self:center\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false},[\"align-self:flex-end\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false,\".wp-block-column.is-vertically-aligned-center\":false,\".wp-block-column.is-vertically-aligned-top\":false},[\"width:100%\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"position:relative\",\"background-size:cover\",\"background-position:50%\",\"min-height:430px\",\"width:100%\",\"display:flex\",\"justify-content:center\",\"align-items:center\",\"padding:1em\",\"box-sizing:border-box\"]],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:fixed\"]],[false,\"@supports (-webkit-overflow-scrolling:touch){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,{\".wp-block-cover-image.is-repeated\":false,\".wp-block-cover.is-repeated\":false},[\"background-repeat:repeat\",\"background-size:auto\"]],[false,{\".wp-block-cover-image.has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover.has-background-dim:not([class*=-background-color])\":false},[\"background-color:#000\"]],[false,{\".wp-block-cover-image.has-background-dim:before\":false,\".wp-block-cover.has-background-dim:before\":false},[\"content:\\\"\\\"\",\"background-color:inherit\"]],[false,{\".wp-block-cover-image.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover-image .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover .wp-block-cover__gradient-background\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"bottom:0\",\"right:0\",\"z-index:1\",\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false},[\"opacity:1\"]],[false,{\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-cover-image:after\":false,\".wp-block-cover:after\":false},[\"display:block\",\"content:\\\"\\\"\",\"font-size:0\",\"min-height:inherit\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-cover-image:after\":false,\".wp-block-cover:after\":false},[\"content:none\"]],[false,\"}\"],[false,{\".wp-block-cover-image.aligncenter\":false,\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.aligncenter\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"display:flex\"]],[false,{\".wp-block-cover-image .wp-block-cover__inner-container\":false,\".wp-block-cover .wp-block-cover__inner-container\":false},[\"width:100%\",\"z-index:1\",\"color:#fff\"]],[false,{\".wp-block-cover-image h1:not(.has-text-color)\":false,\".wp-block-cover-image h2:not(.has-text-color)\":false,\".wp-block-cover-image h3:not(.has-text-color)\":false,\".wp-block-cover-image h4:not(.has-text-color)\":false,\".wp-block-cover-image h5:not(.has-text-color)\":false,\".wp-block-cover-image h6:not(.has-text-color)\":false,\".wp-block-cover-image p:not(.has-text-color)\":false,\".wp-block-cover h1:not(.has-text-color)\":false,\".wp-block-cover h2:not(.has-text-color)\":false,\".wp-block-cover h3:not(.has-text-color)\":false,\".wp-block-cover h4:not(.has-text-color)\":false,\".wp-block-cover h5:not(.has-text-color)\":false,\".wp-block-cover h6:not(.has-text-color)\":false,\".wp-block-cover p:not(.has-text-color)\":false},[\"color:inherit\"]],[false,{\".wp-block-cover-image.is-position-top-left\":false,\".wp-block-cover.is-position-top-left\":false},[\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-top-center\":false,\".wp-block-cover.is-position-top-center\":false},[\"align-items:flex-start\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-top-right\":false,\".wp-block-cover.is-position-top-right\":false},[\"align-items:flex-start\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-center-left\":false,\".wp-block-cover.is-position-center-left\":false},[\"align-items:center\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-center-center\":false,\".wp-block-cover.is-position-center-center\":false},[\"align-items:center\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-center-right\":false,\".wp-block-cover.is-position-center-right\":false},[\"align-items:center\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-bottom-left\":false,\".wp-block-cover.is-position-bottom-left\":false},[\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-bottom-center\":false,\".wp-block-cover.is-position-bottom-center\":false},[\"align-items:flex-end\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-bottom-right\":false,\".wp-block-cover.is-position-bottom-right\":false},[\"align-items:flex-end\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false},[\"margin:0\",\"width:auto\"]],[false,{\".wp-block-cover-image amp-img.wp-block-cover__image-background\":false,\".wp-block-cover-image amp-anim.wp-block-cover__image-background\":false,\".wp-block-cover-image amp-video.wp-block-cover__video-background\":false,\".wp-block-cover-image amp-youtube.wp-block-cover__video-background\":false,\".wp-block-cover amp-img.wp-block-cover__image-background\":false,\".wp-block-cover amp-anim.wp-block-cover__image-background\":false,\".wp-block-cover amp-video.wp-block-cover__video-background\":false,\".wp-block-cover amp-youtube.wp-block-cover__video-background\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"margin:0\",\"padding:0\",\"width:100%\",\"height:100%\",\"max-width:none\",\"max-height:none\",\"-o-object-fit:cover\",\"object-fit:cover\",\"outline:none\",\"border:none\",\"box-shadow:none\"]],[false,{\".wp-block-cover__image-background\":false,\".wp-block-cover__video-background\":false},[\"z-index:0\"]],[false,{\".wp-block-cover-image-text\":false,\".wp-block-cover-image-text a\":false,\".wp-block-cover-image-text a:active\":false,\".wp-block-cover-image-text a:focus\":false,\".wp-block-cover-image-text a:hover\":false,\".wp-block-cover-text\":false,\".wp-block-cover-text a\":false,\".wp-block-cover-text a:active\":false,\".wp-block-cover-text a:focus\":false,\".wp-block-cover-text a:hover\":false,\"section.wp-block-cover-image h2\":false,\"section.wp-block-cover-image h2 a\":false,\"section.wp-block-cover-image h2 a:active\":false,\"section.wp-block-cover-image h2 a:focus\":false,\"section.wp-block-cover-image h2 a:hover\":false},[\"color:#fff\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-left-content\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-right-content\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-left-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-left-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-left-content>h2\":false},[\"margin-left:0\",\"text-align:left\"]],[false,{\".wp-block-cover-image.has-right-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-right-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-right-content>h2\":false},[\"margin-right:0\",\"text-align:right\"]],[false,{\".wp-block-cover-image .wp-block-cover-image-text\":false,\".wp-block-cover .wp-block-cover-text\":false,\"section.wp-block-cover-image>h2\":false},[\"font-size:2em\",\"line-height:1.25\",\"z-index:1\",\"margin-bottom:0\",\"max-width:840px\",\"padding:.44em\",\"text-align:center\"]],[false,{\".wp-block-embed.alignleft\":false,\".wp-block-embed.alignright\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"]\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"]\":false},[\"max-width:360px\",\"width:100%\"]],[false,{\".wp-block-embed.alignleft .wp-block-embed__wrapper\":false,\".wp-block-embed.alignright .wp-block-embed__wrapper\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false},[\"min-width:280px\"]],[false,{\".wp-block-cover .wp-block-embed\":false},[\"min-width:320px\",\"min-height:240px\"]],[false,{\".wp-block-embed\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-embed figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-embed amp-iframe\":false},[\"max-width:100%\"]],[false,{\".wp-block-embed__wrapper\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio amp-iframe\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"height:100%\",\"width:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:42.85%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:56.25%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before\":false},[\"padding-top:75%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before\":false},[\"padding-top:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before\":false},[\"padding-top:177.77%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before\":false},[\"padding-top:200%\"]],[false,{\".wp-block-file\":false},[\"margin-bottom:1.5em\"]],[false,{\".wp-block-file.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-file.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-file .wp-block-file__embed\":false},[\"margin-bottom:1em\"]],[false,{\".wp-block-file .wp-block-file__button\":false},[\"background:#32373c\",\"border-radius:2em\",\"color:#fff\",\"font-size:.8em\",\"padding:.5em 1em\"]],[false,{\".wp-block-file a.wp-block-file__button\":false},[\"text-decoration:none\"]],[false,{\".wp-block-file a.wp-block-file__button:active\":false,\".wp-block-file a.wp-block-file__button:focus\":false,\".wp-block-file a.wp-block-file__button:hover\":false,\".wp-block-file a.wp-block-file__button:visited\":false},[\"box-shadow:none\",\"color:#fff\",\"opacity:.85\",\"text-decoration:none\"]],[false,{\".wp-block-file *+.wp-block-file__button\":false},[\"margin-left:.75em\"]],[false,{\".blocks-gallery-grid\":false,\".wp-block-gallery\":false},[\"display:flex\",\"flex-wrap:wrap\",\"list-style-type:none\",\"padding:0\",\"margin:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image\":false,\".blocks-gallery-grid .blocks-gallery-item\":false,\".wp-block-gallery .blocks-gallery-image\":false,\".wp-block-gallery .blocks-gallery-item\":false},[\"margin:0 1em 1em 0\",\"display:flex\",\"flex-grow:1\",\"flex-direction:column\",\"justify-content:center\",\"position:relative\",\"align-self:flex-start\",\"width:calc(50% - 1em)\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery .blocks-gallery-item:nth-of-type(2n)\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image figure\":false,\".blocks-gallery-grid .blocks-gallery-item figure\":false,\".wp-block-gallery .blocks-gallery-image figure\":false,\".wp-block-gallery .blocks-gallery-item figure\":false},[\"margin:0\",\"height:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid .blocks-gallery-image figure\":false,\".blocks-gallery-grid .blocks-gallery-item figure\":false,\".wp-block-gallery .blocks-gallery-image figure\":false,\".wp-block-gallery .blocks-gallery-item figure\":false},[\"display:flex\",\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item amp-anim\":false,\".wp-block-gallery .blocks-gallery-image amp-img\":false,\".wp-block-gallery .blocks-gallery-image amp-anim\":false,\".wp-block-gallery .blocks-gallery-item amp-img\":false,\".wp-block-gallery .blocks-gallery-item amp-anim\":false},[\"display:block\",\"max-width:100%\",\"height:auto\",\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item amp-anim\":false,\".wp-block-gallery .blocks-gallery-image amp-img\":false,\".wp-block-gallery .blocks-gallery-image amp-anim\":false,\".wp-block-gallery .blocks-gallery-item amp-img\":false,\".wp-block-gallery .blocks-gallery-item amp-anim\":false},[\"width:auto\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image figcaption\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption\":false,\".wp-block-gallery .blocks-gallery-image figcaption\":false,\".wp-block-gallery .blocks-gallery-item figcaption\":false},[\"position:absolute\",\"bottom:0\",\"width:100%\",\"max-height:100%\",\"overflow:auto\",\"padding:3em .77em .7em\",\"color:#fff\",\"text-align:center\",\"font-size:.8em\",\"background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent)\",\"box-sizing:border-box\",\"margin:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image figcaption amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image figcaption amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption amp-anim\":false,\".wp-block-gallery .blocks-gallery-image figcaption amp-img\":false,\".wp-block-gallery .blocks-gallery-image figcaption amp-anim\":false,\".wp-block-gallery .blocks-gallery-item figcaption amp-img\":false,\".wp-block-gallery .blocks-gallery-item figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".blocks-gallery-grid figcaption\":false,\".wp-block-gallery figcaption\":false},[\"flex-grow:1\"]],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item\":false},[\"align-self:inherit\"]],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-anim\":false},[\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-anim\":false},[\"height:100%\",\"flex:1\",\"-o-object-fit:cover\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".blocks-gallery-grid.columns-1 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-1 .blocks-gallery-item\":false,\".wp-block-gallery.columns-1 .blocks-gallery-image\":false,\".wp-block-gallery.columns-1 .blocks-gallery-item\":false},[\"width:100%\",\"margin-right:0\"]],[false,\"@media (min-width:600px){\"],[false,{\".blocks-gallery-grid.columns-3 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-item\":false,\".wp-block-gallery.columns-3 .blocks-gallery-image\":false,\".wp-block-gallery.columns-3 .blocks-gallery-item\":false},[\"width:calc(33.33333% - .66667em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-4 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-item\":false,\".wp-block-gallery.columns-4 .blocks-gallery-image\":false,\".wp-block-gallery.columns-4 .blocks-gallery-item\":false},[\"width:calc(25% - .75em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-5 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-item\":false,\".wp-block-gallery.columns-5 .blocks-gallery-image\":false,\".wp-block-gallery.columns-5 .blocks-gallery-item\":false},[\"width:calc(20% - .8em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-6 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-item\":false,\".wp-block-gallery.columns-6 .blocks-gallery-image\":false,\".wp-block-gallery.columns-6 .blocks-gallery-item\":false},[\"width:calc(16.66667% - .83333em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-7 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-item\":false,\".wp-block-gallery.columns-7 .blocks-gallery-image\":false,\".wp-block-gallery.columns-7 .blocks-gallery-item\":false},[\"width:calc(14.28571% - .85714em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-8 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-item\":false,\".wp-block-gallery.columns-8 .blocks-gallery-image\":false,\".wp-block-gallery.columns-8 .blocks-gallery-item\":false},[\"width:calc(12.5% - .875em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n)\":false,\".wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image:last-child\":false,\".blocks-gallery-grid .blocks-gallery-item:last-child\":false,\".wp-block-gallery .blocks-gallery-image:last-child\":false,\".wp-block-gallery .blocks-gallery-item:last-child\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid.alignleft\":false,\".blocks-gallery-grid.alignright\":false,\".wp-block-gallery.alignleft\":false,\".wp-block-gallery.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".blocks-gallery-grid.aligncenter .blocks-gallery-item figure\":false,\".wp-block-gallery.aligncenter .blocks-gallery-item figure\":false},[\"justify-content:center\"]],[false,{\".wp-block-group\":false},[\"box-sizing:border-box\"]],[false,{\"h1.has-background\":false,\"h2.has-background\":false,\"h3.has-background\":false,\"h4.has-background\":false,\"h5.has-background\":false,\"h6.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-image\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-image amp-img\":false,\".wp-block-image amp-anim\":false},[\"max-width:100%\"]],[false,{\".wp-block-image:not(.is-style-rounded) amp-img\":false,\".wp-block-image:not(.is-style-rounded) amp-anim\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-image.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-image.alignfull amp-img\":false,\".wp-block-image.alignfull amp-anim\":false,\".wp-block-image.alignwide amp-img\":false,\".wp-block-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\".wp-block-image .aligncenter\":false,\".wp-block-image .alignleft\":false,\".wp-block-image .alignright\":false},[\"display:table\"]],[false,{\".wp-block-image .aligncenter>figcaption\":false,\".wp-block-image .alignleft>figcaption\":false,\".wp-block-image .alignright>figcaption\":false},[\"display:table-caption\",\"caption-side:bottom\"]],[false,{\".wp-block-image .alignleft\":false},[\"float:left\",\"margin:.5em 1em .5em 0\"]],[false,{\".wp-block-image .alignright\":false},[\"float:right\",\"margin:.5em 0 .5em 1em\"]],[false,{\".wp-block-image .aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-block-image figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false,\".wp-block-image.is-style-rounded amp-img\":false,\".wp-block-image.is-style-rounded amp-anim\":false},[\"border-radius:9999px\"]],[false,\"@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){\"],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"-webkit-mask-image:url(\\\"data:image\\/svg+xml;utf8,<\\/svg>\\\")\",\"mask-image:url(\\\"data:image\\/svg+xml;utf8,<\\/svg>\\\")\",\"mask-mode:alpha\",\"-webkit-mask-repeat:no-repeat\",\"mask-repeat:no-repeat\",\"-webkit-mask-size:contain\",\"mask-size:contain\",\"-webkit-mask-position:center\",\"mask-position:center\",\"border-radius:0\"]],[false,\"}\"],[false,{\".wp-block-image figure\":false},[\"margin:0\"]],[false,{\"ol.wp-block-latest-comments\":false},[\"margin-left:0\"]],[false,{\".wp-block-latest-comments .wp-block-latest-comments\":false},[\"padding-left:0\"]],[false,{\".wp-block-latest-comments__comment\":false},[\"line-height:1.1\",\"list-style:none\",\"margin-bottom:1em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment\":false},[\"min-height:2.25em\",\"list-style:none\"]],[false,{\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt\":false,\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta\":false},[\"margin-left:3.25em\"]],[false,{\".has-dates .wp-block-latest-comments__comment\":false,\".has-excerpts .wp-block-latest-comments__comment\":false},[\"line-height:1.5\"]],[false,{\".wp-block-latest-comments__comment-excerpt p\":false},[\"font-size:.875em\",\"line-height:1.8\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-latest-comments__comment-date\":false},[\"display:block\",\"font-size:.75em\"]],[false,{\".wp-block-latest-comments .avatar\":false,\".wp-block-latest-comments__comment-avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-latest-posts.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-latest-posts.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list\":false},[\"list-style:none\",\"padding-left:0\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list li\":false},[\"clear:both\"]],[false,{\".wp-block-latest-posts.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\"]],[false,{\".wp-block-latest-posts.is-grid li\":false},[\"margin:0 1.25em 1.25em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-latest-posts.columns-2 li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-latest-posts.columns-2 li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-3 li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-latest-posts.columns-3 li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-4 li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-latest-posts.columns-4 li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-latest-posts.columns-5 li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-6 li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-latest-posts.columns-6 li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".wp-block-latest-posts__post-author\":false,\".wp-block-latest-posts__post-date\":false},[\"display:block\",\"color:#555\",\"font-size:.8125em\"]],[false,{\".wp-block-latest-posts__post-excerpt\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-latest-posts__featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-latest-posts__featured-image amp-img\":false,\".wp-block-latest-posts__featured-image amp-anim\":false},[\"height:auto\",\"width:auto\",\"max-width:100%\"]],[false,{\".wp-block-latest-posts__featured-image.alignleft\":false},[\"margin-right:1em\"]],[false,{\".wp-block-latest-posts__featured-image.alignright\":false},[\"margin-left:1em\"]],[false,{\".wp-block-latest-posts__featured-image.aligncenter\":false},[\"margin-bottom:1em\",\"text-align:center\"]],[false,{\".block-editor-image-alignment-control__row .components-base-control__field\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\"]],[false,{\".block-editor-image-alignment-control__row .components-base-control__field .components-base-control__label\":false},[\"margin-bottom:0\"]],[false,{\"ol.has-background\":false,\"ul.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-media-text\":false},[\"direction:ltr\",\"display:grid\",\"grid-template-columns:50% 1fr\",\"grid-template-rows:auto\"]],[false,{\".wp-block-media-text.has-media-on-the-right\":false},[\"grid-template-columns:1fr 50%\"]],[false,{\".wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media\":false},[\"align-self:start\"]],[false,{\".wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media\":false,\".wp-block-media-text .wp-block-media-text__content\":false,\".wp-block-media-text .wp-block-media-text__media\":false},[\"align-self:center\"]],[false,{\".wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media\":false},[\"align-self:end\"]],[false,{\".wp-block-media-text .wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\",\"margin:0\"]],[false,{\".wp-block-media-text .wp-block-media-text__content\":false},[\"direction:ltr\",\"grid-column:2\",\"grid-row:1\",\"padding:0 8%\",\"word-break:break-word\"]],[false,{\".wp-block-media-text.has-media-on-the-right .wp-block-media-text__media\":false},[\"grid-column:2\",\"grid-row:1\"]],[false,{\".wp-block-media-text.has-media-on-the-right .wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"max-width:unset\",\"width:100%\",\"vertical-align:middle\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media\":false},[\"height:100%\",\"min-height:250px\",\"background-size:cover\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill .wp-block-media-text__media amp-anim\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-media-text.is-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"grid-template-columns:100%\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:2\"]],[false,\"}\"],[false,{\".wp-block-navigation\":false},[\"position:relative\"]],[false,{\".wp-block-navigation ul\":false,\".wp-block-navigation ul li\":false},[\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-navigation-link\":false,\".wp-block-navigation .wp-block-pages-list__item\":false},[\"display:flex\",\"align-items:center\",\"position:relative\"]],[false,{\".wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__container:empty\":false,\".wp-block-navigation .wp-block-pages-list__item .wp-block-navigation-link__container:empty\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__content\":false,\".wp-block-navigation .wp-block-pages-list__item__link\":false},[\"color:inherit\",\"display:block\"]],[false,{\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__container\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content:focus\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link:focus\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content:focus\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link:focus\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .wp-block-page-list__submenu-icon\":false},[\"height:inherit\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .wp-block-page-list__submenu-icon svg\":false},[\"stroke:currentColor\"]],[false,{\".wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__content.wp-block-navigation-link__content.wp-block-navigation-link__content\":false,\".wp-block-navigation .wp-block-pages-list__item .wp-block-pages-list__item__link\":false},[\"padding:0\"]],[false,{\".wp-block-navigation .has-child>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child>.wp-block-pages-list__item__link\":false},[\"margin-right:.5em\"]],[false,{\".wp-block-navigation .has-child .submenu-container\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container\":false},[\"background-color:inherit\",\"color:inherit\",\"position:absolute\",\"z-index:2\",\"flex-direction:column\",\"align-items:normal\",\"min-width:200px\",\"display:none\",\"opacity:0\",\"transition:opacity .1s linear\",\"visibility:hidden\"]],[false,{\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-pages-list__item__link\":false},[\"flex-grow:1\"]],[false,{\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-page-list__submenu-icon\":false},[\"padding-right:.5em\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation .has-child .submenu-container .submenu-container:before\":false,\".wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container:before\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container:before\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"right:100%\",\"height:100%\",\"display:block\",\"width:.5em\",\"background:transparent\"]],[false,{\".wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .has-child .submenu-container .wp-block-page-list__submenu-icon svg\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-page-list__submenu-icon svg\":false},[\"transform:rotate(-90deg)\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child:hover>.wp-block-navigation-link__container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:focus-within>.wp-block-navigation-link__container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:hover\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation .has-child:hover>.submenu-container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:focus-within\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation .has-child:focus-within>.submenu-container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container\":false},[\"left:auto\",\"right:0\"]],[false,{\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:auto\",\"right:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation .wp-block-navigation__container>.wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list>.wp-block-pages-list__item\":false},[\"margin:0 2em 0 0\"]],[false,{\".wp-block-navigation.wp-block-navigation .wp-block-navigation__container>.wp-block-navigation-link:last-child\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list:last-child\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list>.wp-block-pages-list__item:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .wp-block-navigation__container>.wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list>.wp-block-pages-list__item\":false},[\"margin:0 .5em 0 0\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .wp-block-navigation__container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list .wp-block-pages-list__item__link\":false},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container\":false},[\"left:-1em\",\"top:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-pages-list__item\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-pages-list__item\":false},[\"margin:0\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-pages-list__item__link\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-pages-list__item__link\":false},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:-1px\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:100%\",\"top:-1px\"]],[false,\"}\"],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container\":false},[\"left:0\",\"top:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:0\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:100%\",\"top:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .submenu-container\":false,\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-navigation-link__container\":false},[\"background-color:#fff\",\"color:#000\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation__container\":false},[\"align-items:center\",\"list-style:none\",\"margin:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation__container .is-responsive\":false},[\"display:none\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__container\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".is-vertical .wp-block-navigation__container\":false},[\"display:block\",\"flex-direction:column\",\"align-items:flex-start\"]],[false,\"}\"],[false,{\".items-justified-center .wp-block-navigation__container\":false},[\"justify-content:center\"]],[false,{\".items-justified-right .wp-block-navigation__container\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between .wp-block-navigation__container\":false},[\"justify-content:space-between\"]],[false,{\".is-vertical.items-justified-center>ul\":false},[\"align-items:center\"]],[false,{\".is-vertical.items-justified-right>ul\":false},[\"align-items:flex-end\"]],[false,{\".is-vertical.items-justified-right>ul .wp-block-navigation-link\":false,\".is-vertical.items-justified-right>ul .wp-block-pages-list__item\":false},[\"margin-right:0\",\"justify-content:flex-end\"]],[false,{\".wp-block-navigation__responsive-container\":false},[\"display:none\",\"position:fixed\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"z-index:1\",\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"display:flex\",\"flex-direction:column\",\"overflow:auto\",\"z-index:100000\",\"padding:24px\",\"background-color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container\":false},[\"display:flex\",\"flex-direction:column\",\"margin-left:auto\",\"margin-right:auto\",\"align-items:flex-start\",\"line-height:48px\",\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container .wp-block-page-list\":false},[\"flex-direction:column\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link .wp-block-navigation-link__container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item .submenu-container:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open)\":false},[\"display:flex\",\"flex-direction:row\",\"position:relative\",\"background-color:inherit\"]],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__responsive-container-close\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .submenu-container.submenu-container.submenu-container.submenu-container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link__container.wp-block-navigation-link__container.wp-block-navigation-link__container.wp-block-navigation-link__container\":false},[\"left:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:#fff\",\"color:#000\"]],[false,{\".wp-block-navigation__responsive-container-close\":false,\".wp-block-navigation__responsive-container-open\":false},[\"vertical-align:middle\",\"cursor:pointer\",\"color:currentColor\",\"background:transparent\",\"border:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container-close svg\":false,\".wp-block-navigation__responsive-container-open svg\":false},[\"fill:currentColor\",\"pointer-events:none\",\"display:block\",\"width:24px\",\"height:24px\"]],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:flex\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:none\"]],[false,\"}\"],[false,{\".items-justified-left .wp-block-navigation__responsive-container-open\":false},[\"margin-left:0\",\"margin-right:auto\"]],[false,{\".items-justified-center .wp-block-navigation__responsive-container-open\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".items-justified-right .wp-block-navigation__responsive-container-open\":false},[\"margin-left:auto\",\"margin-right:0\"]],[false,{\".wp-block-navigation__responsive-container-close\":false},[\"position:absolute\",\"top:24px\",\"right:24px\",\"z-index:2\"]],[false,{\".wp-block-navigation__responsive-close\":false},[\"width:100%\"]],[false,{\".is-menu-open .wp-block-navigation__responsive-close\":false,\".is-menu-open .wp-block-navigation__responsive-container-content\":false,\".is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"width:100%\",\"height:100%\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list__submenu-icon\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .has-child .submenu-container\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .has-child .wp-block-navigation-link__container\":false},[\"position:relative\",\"opacity:1\",\"visibility:visible\",\"padding:0 0 0 32px\",\"border:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item\":false},[\"flex-direction:column\",\"align-items:flex-start\"]],[false,{\"html.has-modal-open\":false},[\"overflow:hidden\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__label\":false},[\"word-break:normal\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-navigation .wp-block-home-link__content\":false},[\"color:inherit\",\"display:block\",\"padding:.5em 1em\"]],[false,{\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content:focus\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content:focus\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-home-link__container\":false},[\"background-color:#fff\",\"color:#000\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-home-link__container .wp-block-home-link__container\":false},[\"top:-1px\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false},[\"display:flex\",\"flex-wrap:wrap\",\"background-color:inherit\"]],[false,{\".wp-block-navigation .wp-block-pages-list__item\":false},[\"background-color:inherit\"]],[false,{\".wp-block-navigation .wp-block-page-list__submenu-icon\":false},[\"display:none\"]],[false,{\".is-open .wp-block-navigation__container .wp-block-page-list\":false,\".is-vertical .wp-block-navigation__container .wp-block-page-list\":false,\".wp-block-navigation .show-submenu-icons .wp-block-page-list__submenu-icon\":false},[\"display:block\"]],[false,\"@media (min-width:480px){\"],[false,{\".is-open .wp-block-navigation__container .wp-block-page-list\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".items-justified-space-between .wp-block-page-list\":false},[\"display:contents\"]],[false,{\".is-small-text\":false},[\"font-size:.875em\"]],[false,{\".is-regular-text\":false},[\"font-size:1em\"]],[false,{\".is-large-text\":false},[\"font-size:2.25em\"]],[false,{\".is-larger-text\":false},[\"font-size:3em\"]],[false,{\".has-drop-cap:not(:focus):first-letter\":false},[\"float:left\",\"font-size:8.4em\",\"line-height:.68\",\"font-weight:100\",\"margin:.05em .1em 0 0\",\"text-transform:uppercase\",\"font-style:normal\"]],[false,{\"p.has-drop-cap.has-background\":false},[\"overflow:hidden\"]],[false,{\"p.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\"p.has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-post-author\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-author__byline\":false},[\"width:100%\",\"margin-top:0\",\"margin-bottom:0\",\"font-size:.5em\"]],[false,{\".wp-block-post-author__avatar\":false},[\"margin-right:1em\"]],[false,{\".wp-block-post-author__bio\":false},[\"margin-bottom:.7em\",\"font-size:.7em\"]],[false,{\".wp-block-post-author__content\":false},[\"flex-grow:1\",\"flex-basis:0\"]],[false,{\".wp-block-post-author__name\":false},[\"font-weight:700\",\"margin:0\"]],[false,{\".wp-block-post-comments .commentlist\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .commentlist .comment\":false},[\"min-height:2.25em\",\"padding-left:3.25em\"]],[false,{\".wp-block-post-comments .commentlist .comment p\":false},[\"font-size:.875em\",\"line-height:1.8\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-post-comments .commentlist .children\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .comment-author\":false},[\"line-height:1.5\",\"margin-left:-3.25em\"]],[false,{\".wp-block-post-comments .comment-author .avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-post-comments .comment-author cite\":false},[\"font-style:normal\"]],[false,{\".wp-block-post-comments .comment-meta\":false},[\"line-height:1.5\",\"margin-left:-3.25em\"]],[false,{\".wp-block-post-comments .comment-body .commentmetadata\":false},[\"font-size:.75em\"]],[false,{\".wp-block-post-comments .comment-form-author label\":false,\".wp-block-post-comments .comment-form-comment label\":false,\".wp-block-post-comments .comment-form-email label\":false,\".wp-block-post-comments .comment-form-url label\":false},[\"display:block\"]],[false,{\".wp-block-post-comments .comment-form-comment textarea\":false},[\"box-sizing:border-box\",\"width:100%\"]],[false,{\".wp-block-post-comments .reply\":false},[\"font-size:.75em\",\"margin-bottom:1.4em\"]],[false,{\".wp-block-post-comments input\":false,\".wp-block-post-comments textarea\":false},[\"border:1px solid #949494\"]],[false,{\".wp-block-post-comments-form input[type=submit]\":false},[\"border:none\",\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"text-align:center\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-post-excerpt__more-link\":false,\".wp-block-post-title a\":false},[\"display:inline-block\"]],[false,{\".wp-block-preformatted\":false},[\"white-space:pre-wrap\"]],[false,{\".wp-block-preformatted.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-pullquote\":false},[\"margin:0 0 1em\",\"padding:3em 0\",\"text-align:center\"]],[false,{\".wp-block-pullquote.alignleft\":false,\".wp-block-pullquote.alignright\":false},[\"max-width:420px\"]],[false,{\".wp-block-pullquote.alignleft p\":false,\".wp-block-pullquote.alignright p\":false},[\"font-size:1.25em\"]],[false,{\".wp-block-pullquote p\":false},[\"font-size:1.75em\",\"line-height:1.6\"]],[false,{\".wp-block-pullquote cite\":false,\".wp-block-pullquote footer\":false},[\"position:relative\"]],[false,{\".wp-block-pullquote .has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote:not(.is-style-solid-color)\":false},[\"background:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color\":false},[\"border:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote\":false},[\"margin-left:auto\",\"margin-right:auto\",\"text-align:left\",\"max-width:60%\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote p\":false},[\"margin-top:0\",\"margin-bottom:0\",\"font-size:2em\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote cite\":false},[\"text-transform:none\",\"font-style:normal\"]],[false,{\".wp-block-pullquote cite\":false},[\"color:inherit\"]],[false,{\".wp-block-post-template\":false,\".wp-block-query-loop\":false},[\"max-width:100%\",\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-post-template li\":false,\".wp-block-query-loop li\":false},[\"clear:both\"]],[false,{\".wp-block-post-template.is-flex-container\":false,\".wp-block-query-loop.is-flex-container\":false},[\"flex-direction:row\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-template.is-flex-container li\":false,\".wp-block-query-loop.is-flex-container li\":false},[\"margin:0 0 1.25em\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-post-template.is-flex-container li\":false,\".wp-block-query-loop.is-flex-container li\":false},[\"margin-right:1.25em\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li:nth-child(2n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li:nth-child(3n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li:nth-child(4n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li:nth-child(5n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li:nth-child(6n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".wp-block-query-pagination\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\"]],[false,{\".wp-block-query-pagination>.wp-block-query-pagination-next\":false,\".wp-block-query-pagination>.wp-block-query-pagination-numbers\":false,\".wp-block-query-pagination>.wp-block-query-pagination-previous\":false},[\"display:inline-block\",\"margin-right:.5em\",\"margin-bottom:.5em\"]],[false,{\".wp-block-query-pagination>.wp-block-query-pagination-next:last-child\":false,\".wp-block-query-pagination>.wp-block-query-pagination-numbers:last-child\":false,\".wp-block-query-pagination>.wp-block-query-pagination-previous:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-quote.is-large\":false,\".wp-block-quote.is-style-large\":false},[\"margin-bottom:1em\",\"padding:0 1em\"]],[false,{\".wp-block-quote.is-large p\":false,\".wp-block-quote.is-style-large p\":false},[\"font-size:1.5em\",\"font-style:italic\",\"line-height:1.6\"]],[false,{\".wp-block-quote.is-large cite\":false,\".wp-block-quote.is-large footer\":false,\".wp-block-quote.is-style-large cite\":false,\".wp-block-quote.is-style-large footer\":false},[\"font-size:1.125em\",\"text-align:right\"]],[false,{\".wp-block-rss.wp-block-rss\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-rss.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-rss.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-rss.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\",\"list-style:none\"]],[false,{\".wp-block-rss.is-grid li\":false},[\"margin:0 1em 1em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-rss.columns-2 li\":false},[\"width:calc(50% - 1em)\"]],[false,{\".wp-block-rss.columns-3 li\":false},[\"width:calc(33.33333% - 1em)\"]],[false,{\".wp-block-rss.columns-4 li\":false},[\"width:calc(25% - 1em)\"]],[false,{\".wp-block-rss.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-rss.columns-6 li\":false},[\"width:calc(16.66667% - 1em)\"]],[false,\"}\"],[false,{\".wp-block-rss__item-author\":false,\".wp-block-rss__item-publish-date\":false},[\"display:block\",\"color:#555\",\"font-size:.8125em\"]],[false,{\".wp-block-search .wp-block-search__button\":false},[\"background:#f7f7f7\",\"border:1px solid #ccc\",\"padding:.375em .625em\",\"color:#32373c\",\"margin-left:.625em\",\"word-break:normal\"]],[false,{\".wp-block-search .wp-block-search__button.has-icon\":false},[\"line-height:0\"]],[false,{\".wp-block-search .wp-block-search__button svg\":false},[\"min-width:1.5em\",\"min-height:1.5em\"]],[false,{\".wp-block-search .wp-block-search__inside-wrapper\":false},[\"display:flex\",\"flex:auto\",\"flex-wrap:nowrap\",\"max-width:100%\"]],[false,{\".wp-block-search .wp-block-search__label\":false},[\"width:100%\"]],[false,{\".wp-block-search .wp-block-search__input\":false},[\"flex-grow:1\",\"min-width:3em\",\"border:1px solid #949494\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__button\":false},[\"margin-left:0\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper\":false},[\"padding:4px\",\"border:1px solid #949494\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input\":false},[\"border-radius:0\",\"border:none\",\"padding:0 0 0 .25em\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus\":false},[\"outline:none\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button\":false},[\"padding:.125em .5em\"]],[false,{\".wp-block-search.aligncenter .wp-block-search__inside-wrapper\":false},[\"margin:auto\"]],[false,{\".wp-block-separator\":false},[\"border-top:1px solid\",\"border-bottom:1px solid\"]],[false,{\".wp-block-separator.is-style-wide\":false},[\"border-bottom-width:1px\"]],[false,{\".wp-block-separator.is-style-dots\":false},[\"border:none\",\"text-align:center\",\"width:none\",\"line-height:1\",\"height:auto\"]],[false,{\".wp-block-separator.is-style-dots:not(#_#_#_#_#_#_#_)\":false},[\"background:none\"]],[false,{\".wp-block-separator.is-style-dots:before\":false},[\"content:\\\"\\u00b7\\u00b7\\u00b7\\\"\",\"color:currentColor\",\"font-size:1.5em\",\"letter-spacing:2em\",\"padding-left:2em\",\"font-family:serif\"]],[false,{\".wp-block-site-logo\":false},[\"line-height:0\"]],[false,{\".wp-block-site-logo a\":false},[\"display:inline-block\"]],[false,{\".wp-block-site-logo.is-default-size amp-img\":false,\".wp-block-site-logo.is-default-size amp-anim\":false},[\"width:120px\",\"height:auto\"]],[false,{\".wp-block-site-logo .aligncenter\":false},[\"display:table\"]],[false,{\".wp-block-site-logo.is-style-rounded amp-img\":false,\".wp-block-site-logo.is-style-rounded amp-anim\":false},[\"border-radius:9999px\"]],[false,{\".wp-block-social-links\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding-left:0\",\"padding-right:0\",\"text-indent:0\",\"margin-left:0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false,\".wp-block-social-links .wp-social-link a:hover\":false},[\"text-decoration:none\",\"border-bottom:0\",\"box-shadow:none\"]],[false,{\".wp-block-social-links .wp-social-link.wp-social-link.wp-social-link\":false},[\"margin:4px 8px 4px 0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false},[\"padding:.25em\"]],[false,{\".wp-block-social-links .wp-social-link svg\":false},[\"width:1em\",\"height:1em\"]],[false,{\".wp-block-social-links.has-small-icon-size\":false},[\"font-size:16px\"]],[false,{\".wp-block-social-links\":false,\".wp-block-social-links.has-normal-icon-size\":false},[\"font-size:24px\"]],[false,{\".wp-block-social-links.has-large-icon-size\":false},[\"font-size:36px\"]],[false,{\".wp-block-social-links.has-huge-icon-size\":false},[\"font-size:48px\"]],[false,{\".wp-block-social-links.aligncenter\":false},[\"justify-content:center\",\"display:flex\"]],[false,{\".wp-block-social-links.alignright\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-social-link\":false},[\"display:block\",\"border-radius:9999px\",\"transition:transform .1s ease\",\"height:auto\"]],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-social-link\":false},[\"transition-duration:0s\",\"transition-delay:0s\"]],[false,\"}\"],[false,{\".wp-block-social-link a\":false},[\"display:block\",\"line-height:0\",\"transition:transform .1s ease\"]],[false,{\".wp-block-social-link:hover\":false},[\"transform:scale(1.1)\"]],[false,{\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:active\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:hover\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:visited\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg\":false},[\"color:currentColor\",\"fill:currentColor\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link\":false},[\"background-color:#f0f0f0\",\"color:#444\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon\":false},[\"background-color:#f90\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp\":false},[\"background-color:#1ea0c3\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance\":false},[\"background-color:#0757fe\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen\":false},[\"background-color:#1e1f26\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart\":false},[\"background-color:#02e49b\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble\":false},[\"background-color:#e94c89\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox\":false},[\"background-color:#4280ff\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy\":false},[\"background-color:#f45800\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook\":false},[\"background-color:#1778f2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr\":false},[\"background-color:#0461dd\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare\":false},[\"background-color:#e65678\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github\":false},[\"background-color:#24292d\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads\":false},[\"background-color:#eceadd\",\"color:#382110\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google\":false},[\"background-color:#ea4434\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram\":false},[\"background-color:#f00075\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm\":false},[\"background-color:#e21b24\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin\":false},[\"background-color:#0d66c2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon\":false},[\"background-color:#3288d4\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium\":false},[\"background-color:#02ab6c\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup\":false},[\"background-color:#f6405f\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon\":false},[\"background-color:#ff424d\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest\":false},[\"background-color:#e60122\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket\":false},[\"background-color:#ef4155\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit\":false},[\"background-color:#fe4500\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype\":false},[\"background-color:#0478d7\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat\":false},[\"background-color:#fefc00\",\"color:#fff\",\"stroke:#000\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud\":false},[\"background-color:#ff5600\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify\":false},[\"background-color:#1bd760\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram\":false},[\"background-color:#2aabee\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr\":false},[\"background-color:#011835\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch\":false},[\"background-color:#6440a4\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter\":false},[\"background-color:#1da1f2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo\":false},[\"background-color:#1eb7ea\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk\":false},[\"background-color:#4680c2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress\":false},[\"background-color:#3499cd\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp\":false},[\"background-color:#d32422\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube\":false},[\"background-color:red\",\"color:#fff\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link\":false},[\"background:none\",\"padding:4px\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-amazon\":false},[\"color:#f90\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp\":false},[\"color:#1ea0c3\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-behance\":false},[\"color:#0757fe\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-codepen\":false},[\"color:#1e1f26\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-deviantart\":false},[\"color:#02e49b\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-dribbble\":false},[\"color:#e94c89\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-dropbox\":false},[\"color:#4280ff\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-etsy\":false},[\"color:#f45800\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-facebook\":false},[\"color:#1778f2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx\":false},[\"color:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-flickr\":false},[\"color:#0461dd\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-foursquare\":false},[\"color:#e65678\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-github\":false},[\"color:#24292d\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-goodreads\":false},[\"color:#382110\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-google\":false},[\"color:#ea4434\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-instagram\":false},[\"color:#f00075\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-lastfm\":false},[\"color:#e21b24\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-linkedin\":false},[\"color:#0d66c2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-mastodon\":false},[\"color:#3288d4\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-medium\":false},[\"color:#02ab6c\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-meetup\":false},[\"color:#f6405f\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-patreon\":false},[\"color:#ff424d\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-pinterest\":false},[\"color:#e60122\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-pocket\":false},[\"color:#ef4155\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-reddit\":false},[\"color:#fe4500\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-skype\":false},[\"color:#0478d7\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-snapchat\":false},[\"color:#fff\",\"stroke:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud\":false},[\"color:#ff5600\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-spotify\":false},[\"color:#1bd760\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-telegram\":false},[\"color:#2aabee\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-tiktok\":false},[\"color:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-tumblr\":false},[\"color:#011835\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-twitch\":false},[\"color:#6440a4\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-twitter\":false},[\"color:#1da1f2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-vimeo\":false},[\"color:#1eb7ea\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-vk\":false},[\"color:#4680c2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-wordpress\":false},[\"color:#3499cd\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-yelp\":false},[\"color:#d32422\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-youtube\":false},[\"color:red\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link\":false},[\"width:auto\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link a\":false},[\"padding-left:.66667em\",\"padding-right:.66667em\"]],[false,{\".wp-block-spacer\":false},[\"clear:both\"]],[false,{\".wp-block-tag-cloud.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-tag-cloud.alignfull\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".wp-block-table\":false},[\"margin:0 0 1em\",\"overflow-x:auto\"]],[false,{\".wp-block-table table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout\":false},[\"table-layout:fixed\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout td\":false,\".wp-block-table .has-fixed-layout th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table.aligncenter\":false,\".wp-block-table.alignleft\":false,\".wp-block-table.alignright\":false},[\"display:table\",\"width:auto\"]],[false,{\".wp-block-table.aligncenter td\":false,\".wp-block-table.aligncenter th\":false,\".wp-block-table.alignleft td\":false,\".wp-block-table.alignleft th\":false,\".wp-block-table.alignright td\":false,\".wp-block-table.alignright th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table .has-subtle-light-gray-background-color\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table .has-subtle-pale-green-background-color\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table .has-subtle-pale-blue-background-color\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table .has-subtle-pale-pink-background-color\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes\":false},[\"border-spacing:0\",\"border-collapse:inherit\",\"background-color:transparent\",\"border-bottom:1px solid #f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes tbody tr:nth-child(odd)\":false},[\"background-color:#f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes td\":false,\".wp-block-table.is-style-stripes th\":false},[\"border-color:transparent\"]],[false,{\".wp-block-table .has-border-color>*\":false,\".wp-block-table .has-border-color td\":false,\".wp-block-table .has-border-color th\":false,\".wp-block-table .has-border-color tr\":false},[\"border-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-style]>*\":false,\".wp-block-table table[data-amp-original-style*=border-style] td\":false,\".wp-block-table table[data-amp-original-style*=border-style] th\":false,\".wp-block-table table[data-amp-original-style*=border-style] tr\":false},[\"border-style:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-width]>*\":false,\".wp-block-table table[data-amp-original-style*=border-width] td\":false,\".wp-block-table table[data-amp-original-style*=border-width] th\":false,\".wp-block-table table[data-amp-original-style*=border-width] tr\":false},[\"border-width:inherit\"]],[false,{\".wp-block-text-columns\":false,\".wp-block-text-columns.aligncenter\":false},[\"display:flex\"]],[false,{\".wp-block-text-columns .wp-block-column\":false},[\"margin:0 1em\",\"padding:0\"]],[false,{\".wp-block-text-columns .wp-block-column:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-text-columns .wp-block-column:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-text-columns.columns-2 .wp-block-column\":false},[\"width:50%\"]],[false,{\".wp-block-text-columns.columns-3 .wp-block-column\":false},[\"width:33.33333%\"]],[false,{\".wp-block-text-columns.columns-4 .wp-block-column\":false},[\"width:25%\"]],[false,{\"pre.wp-block-verse\":false},[\"font-family:inherit\",\"overflow:auto\",\"white-space:pre-wrap\"]],[false,{\".wp-block-video\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-video [poster]\":false},[\"-o-object-fit:cover\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".wp-block-video.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-video figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-post-featured-image\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".wp-block-post-featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-post-featured-image amp-img\":false,\".wp-block-post-featured-image amp-anim\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".wp-block-post-featured-image.alignfull amp-img\":false,\".wp-block-post-featured-image.alignfull amp-anim\":false,\".wp-block-post-featured-image.alignwide amp-img\":false,\".wp-block-post-featured-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\":root .has-pale-pink-background-color\":false},[\"background-color:#f78da7\"]],[false,{\":root .has-vivid-red-background-color\":false},[\"background-color:#cf2e2e\"]],[false,{\":root .has-luminous-vivid-orange-background-color\":false},[\"background-color:#ff6900\"]],[false,{\":root .has-luminous-vivid-amber-background-color\":false},[\"background-color:#fcb900\"]],[false,{\":root .has-light-green-cyan-background-color\":false},[\"background-color:#7bdcb5\"]],[false,{\":root .has-vivid-green-cyan-background-color\":false},[\"background-color:#00d084\"]],[false,{\":root .has-pale-cyan-blue-background-color\":false},[\"background-color:#8ed1fc\"]],[false,{\":root .has-vivid-cyan-blue-background-color\":false},[\"background-color:#0693e3\"]],[false,{\":root .has-vivid-purple-background-color\":false},[\"background-color:#9b51e0\"]],[false,{\":root .has-white-background-color\":false},[\"background-color:#fff\"]],[false,{\":root .has-very-light-gray-background-color\":false},[\"background-color:#eee\"]],[false,{\":root .has-cyan-bluish-gray-background-color\":false},[\"background-color:#abb8c3\"]],[false,{\":root .has-very-dark-gray-background-color\":false},[\"background-color:#313131\"]],[false,{\":root .has-black-background-color\":false},[\"background-color:#000\"]],[false,{\":root .has-pale-pink-color\":false},[\"color:#f78da7\"]],[false,{\":root .has-vivid-red-color\":false},[\"color:#cf2e2e\"]],[false,{\":root .has-luminous-vivid-orange-color\":false},[\"color:#ff6900\"]],[false,{\":root .has-luminous-vivid-amber-color\":false},[\"color:#fcb900\"]],[false,{\":root .has-light-green-cyan-color\":false},[\"color:#7bdcb5\"]],[false,{\":root .has-vivid-green-cyan-color\":false},[\"color:#00d084\"]],[false,{\":root .has-pale-cyan-blue-color\":false},[\"color:#8ed1fc\"]],[false,{\":root .has-vivid-cyan-blue-color\":false},[\"color:#0693e3\"]],[false,{\":root .has-vivid-purple-color\":false},[\"color:#9b51e0\"]],[false,{\":root .has-white-color\":false},[\"color:#fff\"]],[false,{\":root .has-very-light-gray-color\":false},[\"color:#eee\"]],[false,{\":root .has-cyan-bluish-gray-color\":false},[\"color:#abb8c3\"]],[false,{\":root .has-very-dark-gray-color\":false},[\"color:#313131\"]],[false,{\":root .has-black-color\":false},[\"color:#000\"]],[false,{\":root .has-vivid-cyan-blue-to-vivid-purple-gradient-background\":false},[\"background:linear-gradient(135deg,#0693e3,#9b51e0)\"]],[false,{\":root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background\":false},[\"background:linear-gradient(135deg,#00d084,#0693e3)\"]],[false,{\":root .has-light-green-cyan-to-vivid-green-cyan-gradient-background\":false},[\"background:linear-gradient(135deg,#7adcb4,#00d082)\"]],[false,{\":root .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background\":false},[\"background:linear-gradient(135deg,#fcb900,#ff6900)\"]],[false,{\":root .has-luminous-vivid-orange-to-vivid-red-gradient-background\":false},[\"background:linear-gradient(135deg,#ff6900,#cf2e2e)\"]],[false,{\":root .has-very-light-gray-to-cyan-bluish-gray-gradient-background\":false},[\"background:linear-gradient(135deg,#eee,#a9b8c3)\"]],[false,{\":root .has-cool-to-warm-spectrum-gradient-background\":false},[\"background:linear-gradient(135deg,#4aeadc,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c)\"]],[false,{\":root .has-blush-light-purple-gradient-background\":false},[\"background:linear-gradient(135deg,#ffceec,#9896f0)\"]],[false,{\":root .has-blush-bordeaux-gradient-background\":false},[\"background:linear-gradient(135deg,#fecda5,#fe2d2d 50%,#6b003e)\"]],[false,{\":root .has-purple-crush-gradient-background\":false},[\"background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)\"]],[false,{\":root .has-luminous-dusk-gradient-background\":false},[\"background:linear-gradient(135deg,#ffcb70,#c751c0 50%,#4158d0)\"]],[false,{\":root .has-hazy-dawn-gradient-background\":false},[\"background:linear-gradient(135deg,#faaca8,#dad0ec)\"]],[false,{\":root .has-pale-ocean-gradient-background\":false},[\"background:linear-gradient(135deg,#fff5cb,#b6e3d4 50%,#33a7b5)\"]],[false,{\":root .has-electric-grass-gradient-background\":false},[\"background:linear-gradient(135deg,#caf880,#71ce7e)\"]],[false,{\":root .has-subdued-olive-gradient-background\":false},[\"background:linear-gradient(135deg,#fafae1,#67a671)\"]],[false,{\":root .has-atomic-cream-gradient-background\":false},[\"background:linear-gradient(135deg,#fdd79a,#004a59)\"]],[false,{\":root .has-nightshade-gradient-background\":false},[\"background:linear-gradient(135deg,#330968,#31cdcf)\"]],[false,{\":root .has-midnight-gradient-background\":false},[\"background:linear-gradient(135deg,#020381,#2874fc)\"]],[false,{\".has-small-font-size\":false},[\"font-size:.8125em\"]],[false,{\".has-normal-font-size\":false,\".has-regular-font-size\":false},[\"font-size:1em\"]],[false,{\".has-medium-font-size\":false},[\"font-size:1.25em\"]],[false,{\".has-large-font-size\":false},[\"font-size:2.25em\"]],[false,{\".has-huge-font-size\":false,\".has-larger-font-size\":false},[\"font-size:2.625em\"]],[false,{\".has-text-align-center\":false},[\"text-align:center\"]],[false,{\".has-text-align-left\":false},[\"text-align:left\"]],[false,{\".has-text-align-right\":false},[\"text-align:right\"]],[false,{\"#end-resizable-editor-section\":false},[\"display:none\"]],[false,{\".aligncenter\":false},[\"clear:both\"]],[false,{\".items-justified-left\":false},[\"justify-content:flex-start\"]],[false,{\".items-justified-center\":false},[\"justify-content:center\"]],[false,{\".items-justified-right\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between\":false},[\"justify-content:space-between\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip:rect(1px,1px,1px,1px)\",\"-webkit-clip-path:inset(50%)\",\"clip-path:inset(50%)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#ddd\",\"-webkit-clip-path:none\",\"clip-path:none\",\"color:#444\",\"display:block\",\"font-size:1em\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[false,{\".screen-reader-text:focus:not(#_#_#_#_#_#_#_)\":false},[\"clip:auto\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2501,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"wp-block-library-theme-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/css\\/dist\\/block-library\\/theme.min.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":1381,\"function\":\"wp_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library-theme\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library-theme\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-post-template-functions.php\",\"line\":84,\"function\":\"amp_post_template_add_block_styles\",\"hook\":\"amp_post_template_head\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library-theme\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-post-template-functions.php\",\"line\":84,\"function\":\"amp_post_template_add_block_styles\",\"hook\":\"amp_post_template_head\",\"priority\":10}],\"priority\":20,\"hash\":\"15c379a4f236ed3e1b442f93baa908d0\",\"parse_time\":0.025738954544067383,\"shake_time\":3.600120544433594e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\"#start-resizable-editor-section\":false},[\"display:none\"]],[false,{\".wp-block-audio figcaption\":false},[\"color:#555\",\"font-size:13px\",\"text-align:center\"]],[false,{\".is-dark-theme .wp-block-audio figcaption\":false},[\"color:hsla(0,0%,100%,.65)\"]],[false,{\".wp-block-code\":false},[\"font-family:Menlo,Consolas,monaco,monospace\",\"color:#1e1e1e\",\"padding:.8em 1em\",\"border:1px solid #ddd\",\"border-radius:4px\"]],[false,{\".wp-block-embed figcaption\":false},[\"color:#555\",\"font-size:13px\",\"text-align:center\"]],[false,{\".is-dark-theme .wp-block-embed figcaption\":false},[\"color:hsla(0,0%,100%,.65)\"]],[false,{\".blocks-gallery-caption\":false},[\"color:#555\",\"font-size:13px\",\"text-align:center\"]],[false,{\".is-dark-theme .blocks-gallery-caption\":false},[\"color:hsla(0,0%,100%,.65)\"]],[false,{\".wp-block-image figcaption\":false},[\"color:#555\",\"font-size:13px\",\"text-align:center\"]],[false,{\".is-dark-theme .wp-block-image figcaption\":false},[\"color:hsla(0,0%,100%,.65)\"]],[false,{\".wp-block-pullquote\":false},[\"border-top:4px solid\",\"border-bottom:4px solid\",\"margin-bottom:1.75em\",\"color:currentColor\"]],[false,{\".wp-block-pullquote__citation\":false,\".wp-block-pullquote cite\":false,\".wp-block-pullquote footer\":false},[\"color:currentColor\",\"text-transform:uppercase\",\"font-size:.8125em\",\"font-style:normal\"]],[false,{\".wp-block-quote\":false},[\"border-left:.25em solid\",\"margin:0 0 1.75em\",\"padding-left:1em\"]],[false,{\".wp-block-quote cite\":false,\".wp-block-quote footer\":false},[\"color:currentColor\",\"font-size:.8125em\",\"position:relative\",\"font-style:normal\"]],[false,{\".wp-block-quote.has-text-align-right\":false},[\"border-left:none\",\"border-right:.25em solid\",\"padding-left:0\",\"padding-right:1em\"]],[false,{\".wp-block-quote.has-text-align-center\":false},[\"border:none\",\"padding-left:0\"]],[false,{\".wp-block-quote.is-large\":false,\".wp-block-quote.is-style-large\":false},[\"border:none\"]],[false,{\".wp-block-search .wp-block-search__label\":false},[\"font-weight:700\"]],[false,{\".wp-block-group.has-background\":false},[\"padding:1.25em 2.375em\",\"margin-top:0\",\"margin-bottom:0\"]],[false,{\".wp-block-separator\":false},[\"border:none\",\"border-bottom:2px solid\",\"margin-left:auto\",\"margin-right:auto\",\"opacity:.4\"]],[false,{\".wp-block-separator:not(.is-style-wide):not(.is-style-dots)\":false},[\"width:100px\"]],[false,{\".wp-block-separator.has-background:not(.is-style-dots)\":false},[\"border-bottom:none\",\"height:1px\"]],[false,{\".wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots)\":false},[\"height:2px\"]],[false,{\".wp-block-table thead\":false},[\"border-bottom:3px solid\"]],[false,{\".wp-block-table tfoot\":false},[\"border-top:3px solid\"]],[false,{\".wp-block-table td\":false,\".wp-block-table th\":false},[\"padding:.5em\",\"border:1px solid\",\"word-break:normal\"]],[false,{\".wp-block-table figcaption\":false},[\"color:#555\",\"font-size:13px\",\"text-align:center\"]],[false,{\".is-dark-theme .wp-block-table figcaption\":false},[\"color:hsla(0,0%,100%,.65)\"]],[false,{\".wp-block-video figcaption\":false},[\"color:#555\",\"font-size:13px\",\"text-align:center\"]],[false,{\".is-dark-theme .wp-block-video figcaption\":false},[\"color:hsla(0,0%,100%,.65)\"]],[false,{\".wp-block-template-part.has-background\":false},[\"padding:1.25em 2.375em\",\"margin-top:0\",\"margin-bottom:0\"]],[false,{\"#end-resizable-editor-section\":false},[\"display:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1388,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=2.3.0\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1020,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-post-template-functions.php\",\"line\":100,\"function\":\"amp_post_template_add_default_styles\",\"hook\":\"amp_post_template_head\",\"priority\":10}],\"priority\":30,\"hash\":\"82cd798ece835d3c574519b60ef930fe\",\"parse_time\":0.0071032047271728516,\"shake_time\":3.3855438232421875e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".amp-wp-unknown-size\":false,\"amp-anim.amp-wp-enforced-sizes\":false,\"amp-img.amp-wp-enforced-sizes\":false},[\"-o-object-fit:contain\",\"object-fit:contain\"]],[false,{\"body amp-audio:not([controls])\":false},[\"display:inline-block\",\"height:auto\"]],[false,{\".amp-wp-default-form-message>p\":false},[\"margin:1em 0\",\"padding:.5em\"]],[false,{\".amp-wp-default-form-message[submit-success]>p.amp-wp-form-redirecting\":false,\".amp-wp-default-form-message[submitting]>p\":false},[\"font-style:italic\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:not(.amp-wp-form-redirecting)\":false},[\"background-color:#90ee90\",\"border:1px solid green\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-error]>p\":false},[\"background-color:#ffb6c1\",\"border:1px solid red\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:empty\":false},[\"display:none\"]],[false,{\"amp-carousel .amp-wp-gallery-caption\":false},[\"background-color:rgba(0,0,0,.5)\",\"bottom:0\",\"color:#fff\",\"left:0\",\"margin-bottom:0\",\"padding:1rem\",\"position:absolute\",\"right:0\",\"text-align:center\"]],[false,{\"amp-carousel .amp-wp-gallery-caption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery[data-amp-carousel=true]\":false,\".wp-block-gallery[data-amp-carousel=true].has-nested-images\":false},[\"display:block\",\"flex-wrap:unset\"]],[false,{\".wp-video\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"height:auto\"]],[false,{\"button[overflow]\":false},[\"bottom:0\"]],[false,{\"amp-anim img\":false,\"amp-anim noscript\":false,\"amp-iframe iframe\":false,\"amp-iframe noscript\":false,\"amp-img img\":false,\"amp-img noscript\":false,\"amp-video noscript\":false,\"amp-video video\":false},[\"image-rendering:inherit\",\"-o-object-fit:inherit\",\"object-fit:inherit\",\"-o-object-position:inherit\",\"object-position:inherit\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":6522,\"final_size\":1536,\"element\":{\"name\":\"style\",\"attributes\":{\"class\":\"style-template-part\"}},\"origin\":\"style_element\",\"sources\":[],\"priority\":70,\"hash\":\"47c45a1806701f31ef8e0fedd61b61f4\",\"parse_time\":0.07496309280395508,\"shake_time\":9.894371032714844e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".alignnone\":false,\".aligncenter\":false,\".alignleft\":false,\".alignright\":false,\".alignwide\":false},[\"margin-top:1em\",\"margin-right:auto\",\"margin-bottom:1em\",\"margin-left:auto\"]],[false,{\".alignright\":false},[\"float:right\"]],[false,{\".alignleft\":false},[\"float:left\"]],[false,{\".aligncenter\":false},[\"display:block\",\"text-align:center\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".alignwide\":false},[\"width:100%\"]],[false,\"@media (min-width: 792px){\"],[false,{\".alignwide\":false},[\"width:calc(100vw - 48px)\",\"max-width:calc(100vw - 48px)\",\"margin-left:calc(50% - 50vw + 24px)\",\"margin-right:calc(50% - 50vw + 24px)\"]],[false,\"}\"],[false,\"@media (min-width: 1200px){\"],[false,{\".alignwide\":false},[\"width:calc(1200px - 48px)\",\"max-width:calc(1200px - 48px)\",\"margin-left:calc(calc(50% - 1200px \\/ 2) + 24px)\",\"margin-right:calc(calc(50% - 1200px \\/ 2) + 24px)\"]],[false,\"}\"],[false,{\".alignfull\":false},[\"width:100vw\",\"max-width:100vw\",\"margin-left:calc(50% - 50vw)\",\"margin-right:calc(50% - 50vw)\"]],[false,{\".amp-wp-enforced-sizes\":false},[\"max-width:100%\",\"margin:0 auto\"]],[false,{\".amp-wp-content\":false,\".amp-wp-title-bar div\":false},[\"margin:0 auto\",\"max-width:600px\"]],[true,{\"html\":true},[\"background:#0a89c0\"]],[true,{\"body\":true},[\"background:#fff\",\"color:#353535\",\"font-family:Georgia,\\\"Times New Roman\\\",Times,Serif\",\"font-weight:300\",\"line-height:1.75em\"]],[true,{\"p\":true,\"ol\":false,\"ul\":false,\"figure\":false},[\"margin:0 0 1em\",\"padding:0\"]],[true,{\"a\":true,\"a:visited\":true},[\"color:#0a89c0\"]],[true,{\"a:hover\":true,\"a:active\":true,\"a:focus\":true},[\"color:#353535\"]],[false,{\"blockquote\":false},[\"color:#353535\",\"background:rgba(127,127,127,.125)\",\"border-left:2px solid #0a89c0\",\"margin:8px 0 24px 0\",\"padding:16px\"]],[false,{\"blockquote p:last-child\":false},[\"margin-bottom:0\"]],[true,{\".amp-wp-meta\":false,\".amp-wp-header div\":true,\".amp-wp-title\":true,\".wp-caption-text\":false,\".amp-wp-tax-category\":false,\".amp-wp-tax-tag\":false,\".amp-wp-comments-link\":false,\".amp-wp-footer p\":true,\".back-to-top\":true},[\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",\\\"Roboto\\\",\\\"Oxygen-Sans\\\",\\\"Ubuntu\\\",\\\"Cantarell\\\",\\\"Helvetica Neue\\\",sans-serif\"]],[true,{\".amp-wp-header\":true},[\"background-color:#0a89c0\"]],[true,{\".amp-wp-header div\":true},[\"color:#fff\",\"font-size:1em\",\"font-weight:400\",\"margin:0 auto\",\"max-width:calc(840px - 32px)\",\"padding:.875em 16px\",\"position:relative\"]],[true,{\".amp-wp-header a\":true},[\"color:#fff\",\"text-decoration:none\"]],[false,{\".amp-wp-header .amp-wp-site-icon\":false},[\"background-color:#fff\",\"border:1px solid #fff\",\"border-radius:50%\",\"position:absolute\",\"right:18px\",\"top:10px\"]],[true,{\".amp-wp-article\":true},[\"color:#353535\",\"font-weight:400\",\"margin:1.5em auto\",\"max-width:840px\",\"overflow-wrap:break-word\",\"word-wrap:break-word\"]],[true,{\".amp-wp-article-header\":true},[\"align-items:center\",\"align-content:stretch\",\"display:flex\",\"flex-wrap:wrap\",\"justify-content:space-between\",\"margin:1.5em 16px 0\"]],[true,{\".amp-wp-title\":true},[\"color:#353535\",\"display:block\",\"flex:1 0 100%\",\"font-weight:900\",\"margin:0 0 .625em\",\"width:100%\"]],[false,{\".amp-wp-meta\":false},[\"color:#696969\",\"display:inline-block\",\"flex:2 1 50%\",\"font-size:.875em\",\"line-height:1.5em\",\"margin:0 0 1.5em\",\"padding:0\"]],[false,{\".amp-wp-article-header .amp-wp-meta:last-of-type\":false},[\"text-align:right\"]],[false,{\".amp-wp-article-header .amp-wp-meta:first-of-type\":false},[\"text-align:left\"]],[false,{\".amp-wp-byline amp-img\":false,\".amp-wp-byline .amp-wp-author\":false},[\"display:inline-block\",\"vertical-align:middle\"]],[false,{\".amp-wp-byline amp-img\":false},[\"border:1px solid #0a89c0\",\"border-radius:50%\",\"position:relative\",\"margin-right:6px\"]],[false,{\".amp-wp-posted-on\":false},[\"text-align:right\"]],[false,{\".amp-wp-article-featured-image\":false},[\"margin:0 0 1em\"]],[false,{\".amp-wp-article-featured-image amp-img\":false},[\"margin:0 auto\"]],[false,{\".amp-wp-article-featured-image.wp-caption .wp-caption-text\":false},[\"margin:0 18px\"]],[true,{\".amp-wp-article-content\":true},[\"margin:0 16px\"]],[false,{\".amp-wp-article-content ul\":false,\".amp-wp-article-content ol\":false},[\"margin-left:1em\"]],[false,{\".amp-wp-article-content .wp-caption\":false},[\"max-width:100%\"]],[false,{\".amp-wp-article-content amp-img\":false},[\"margin:0 auto\"]],[false,{\".amp-wp-article-content amp-img.alignright\":false,\".amp-wp-article-content .wp-block-cover.alignright\":false},[\"margin:0 0 1em 16px\"]],[false,{\".amp-wp-article-content amp-img.alignleft\":false,\".amp-wp-article-content .wp-block-cover.alignleft\":false},[\"margin:0 16px 1em 0\"]],[false,{\".wp-caption\":false},[\"padding:0\"]],[false,{\".wp-caption.alignleft\":false},[\"margin-right:16px\"]],[false,{\".wp-caption.alignright\":false},[\"margin-left:16px\"]],[false,{\".wp-caption .wp-caption-text\":false},[\"border-bottom:1px solid #c2c2c2\",\"color:#696969\",\"font-size:.875em\",\"line-height:1.5em\",\"margin:0\",\"padding:.66em 10px .75em\"]],[false,{\".alignwide\":false,\".alignfull\":false},[\"clear:both\"]],[false,{\"amp-carousel\":false},[\"background:#c2c2c2\",\"margin:0 -16px 1.5em\"]],[false,{\"amp-iframe\":false,\"amp-youtube\":false,\"amp-instagram\":false,\"amp-vine\":false},[\"background:#c2c2c2\",\"margin:0 -16px 1.5em\"]],[false,{\".amp-wp-article-content amp-carousel amp-img\":false},[\"border:none\"]],[false,{\"amp-carousel > amp-img > img\":false},[\"object-fit:contain\"]],[false,{\".amp-wp-iframe-placeholder\":false},[\"background:#c2c2c2 url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/amp\\/assets\\/images\\/placeholder-icon.png\\\") no-repeat center 40%\",\"background-size:48px 48px\",\"min-height:48px\"]],[false,{\".amp-wp-article-footer .amp-wp-meta\":false},[\"display:block\"]],[false,{\".amp-wp-tax-category\":false,\".amp-wp-tax-tag\":false},[\"color:#696969\",\"font-size:.875em\",\"line-height:1.5em\",\"margin:1.5em 16px\"]],[false,{\".amp-wp-comments-link\":false},[\"color:#696969\",\"font-size:.875em\",\"line-height:1.5em\",\"text-align:center\",\"margin:2.25em 0 1.5em\"]],[false,{\".amp-wp-comments-link a\":false},[\"border-style:solid\",\"border-color:#c2c2c2\",\"border-width:1px 1px 2px\",\"border-radius:4px\",\"background-color:transparent\",\"color:#0a89c0\",\"cursor:pointer\",\"display:block\",\"font-size:14px\",\"font-weight:600\",\"line-height:18px\",\"margin:0 auto\",\"max-width:200px\",\"padding:11px 16px\",\"text-decoration:none\",\"width:50%\",\"-webkit-transition:background-color .2s ease\",\"transition:background-color .2s ease\"]],[true,{\".amp-wp-footer\":true},[\"border-top:1px solid #c2c2c2\",\"margin:calc(1.5em - 1px) 0 0\"]],[true,{\".amp-wp-footer div\":true},[\"margin:0 auto\",\"max-width:calc(840px - 32px)\",\"padding:1.25em 16px 1.25em\",\"position:relative\"]],[true,{\".amp-wp-footer h2\":true},[\"font-size:1em\",\"line-height:1.375em\",\"margin:0 0 .5em\"]],[true,{\".amp-wp-footer p\":true},[\"color:#696969\",\"font-size:.8em\",\"line-height:1.5em\",\"margin:0 85px 0 0\"]],[true,{\".amp-wp-footer a\":true},[\"text-decoration:none\"]],[true,{\".back-to-top\":true},[\"bottom:1.275em\",\"font-size:.8em\",\"font-weight:600\",\"line-height:2em\",\"position:absolute\",\"right:16px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":0,\"final_size\":0,\"element\":{\"name\":\"style\",\"attributes\":{\"class\":\"amp-post-template-css-action\"}},\"origin\":\"style_element\",\"sources\":[],\"priority\":70,\"hash\":\"d751713988987e9331980363e24189ce\",\"parse_time\":7.104873657226562e-5,\"shake_time\":1.1920928955078125e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":80,\"final_size\":75,\"element\":{\"name\":\"div\",\"attributes\":{\"class\":\"swp-hidden-panel-wrap amp-wp-041e5bc\",\"data-amp-original-style\":\"display: none; visibility: collapse; opacity: 0\"}},\"origin\":\"style_attribute\",\"sources\":[{\"hook\":\"the_content\",\"filter\":true,\"post_id\":4449,\"post_type\":\"page\",\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":2308,\"function\":\"YouTubePrefs::apply_prefs_content\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":20,\"function\":\"wsh_extract_exclusions\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":61,\"function\":\"WP_Embed::run_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-embed.php\",\"line\":439,\"function\":\"WP_Embed::autoembed\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"blocks.php\",\"line\":901,\"function\":\"do_blocks\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/formatting-override.php\",\"line\":139,\"function\":\"wsRawHtmlFilterInterceptor::wrap_filters\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":37,\"function\":\"wptexturize\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":442,\"function\":\"wpautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":820,\"function\":\"shortcode_unautop\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"post-template.php\",\"line\":1668,\"function\":\"prepend_attachment\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"media.php\",\"line\":1771,\"function\":\"wp_filter_content_tags\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"https-migration.php\",\"line\":51,\"function\":\"wp_replace_insecure_home_url\"},{\"type\":\"plugin\",\"name\":\"header-footer\",\"file\":\"plugin.php\",\"line\":198,\"function\":\"hefo_the_content\"},{\"type\":\"plugin\",\"name\":\"popup-builder\",\"file\":\"com\\/classes\\/Filters.php\",\"line\":733,\"function\":\"sgpb\\\\Filters::clearContentPreviewMode\"},{\"type\":\"plugin\",\"name\":\"wpdiscuz\",\"file\":\"forms\\/wpdFormAttr\\/Form.php\",\"line\":360,\"function\":\"wpdFormAttr\\\\Form::displayRatingMeta\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/utilities\\/SWP_Compatibility.php\",\"line\":110,\"function\":\"SWP_Compatibility::clean_out_pin_buttons\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":5446,\"function\":\"capital_P_dangit\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"shortcodes.php\",\"line\":206,\"function\":\"do_shortcode\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"formatting.php\",\"line\":3355,\"function\":\"convert_smilies\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":230,\"function\":\"SWP_Buttons_panel_Loader::add_static_panel_fallback_content\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":175,\"function\":\"SWP_Buttons_panel_Loader::social_warfare_wrapper\"},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":154,\"function\":\"SWP_Buttons_panel_Loader::add_content_locator\"},{\"type\":\"plugin\",\"name\":\"raw-html\",\"file\":\"include\\/tag-handler.php\",\"line\":95,\"function\":\"wsh_insert_exclusions\"},{\"type\":\"plugin\",\"name\":\"ssl-insecure-content-fixer\",\"file\":\"includes\\/class.SSLInsecureContentFixer.php\",\"line\":315,\"function\":\"SSLInsecureContentFixer::fixContent\"}]}],\"priority\":70,\"hash\":\"576b83c347727d51f3e6a84af74e369e\",\"parse_time\":0.0005772113800048828,\"shake_time\":2.86102294921875e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-041e5bc:not(#_#_#_#_#_)\":true},[\"display:none\",\"visibility:collapse\",\"opacity:0\"]]],\"included\":true}]'),(169780,4796,'_amp_validated_environment','a:3:{s:5:\"theme\";a:1:{s:11:\"translucent\";s:3:\"1.0\";}s:7:\"plugins\";a:32:{s:7:\"404page\";s:6:\"11.3.1\";s:26:\"advanced-custom-fields-pro\";s:6:\"5.12.2\";s:16:\"tinymce-advanced\";s:5:\"5.6.0\";s:3:\"amp\";s:5:\"2.3.0\";s:17:\"code-syntax-block\";s:5:\"3.1.1\";s:14:\"contact-form-7\";s:5:\"5.5.3\";s:10:\"duplicator\";s:5:\"1.5.0\";s:25:\"embed-calendly-scheduling\";s:3:\"3.0\";s:18:\"youtube-embed-plus\";s:6:\"14.1.2\";s:13:\"header-footer\";s:5:\"3.2.5\";s:6:\"iframe\";s:3:\"4.5\";s:7:\"imagify\";s:3:\"2.0\";s:15:\"cf7-hubspot-pro\";s:5:\"1.2.1\";s:13:\"popup-builder\";s:6:\"4.1.13\";s:34:\"post-tags-and-categories-for-pages\";s:5:\"1.4.1\";s:8:\"raw-html\";s:5:\"1.6.3\";s:11:\"redirection\";s:5:\"5.3.2\";s:11:\"redis-cache\";s:5:\"2.2.0\";s:26:\"reveal-ids-for-wp-admin-25\";s:5:\"1.5.4\";s:34:\"sendgrid-email-delivery-simplified\";s:6:\"1.11.8\";s:9:\"revslider\";s:6:\"6.5.23\";s:14:\"social-warfare\";s:5:\"4.3.0\";s:26:\"ssl-insecure-content-fixer\";s:5:\"2.7.2\";s:11:\"updraftplus\";s:7:\"1.22.19\";s:8:\"wpdiscuz\";s:5:\"7.4.2\";s:15:\"wp-file-manager\";s:5:\"7.1.6\";s:14:\"wp-google-maps\";s:6:\"9.0.10\";s:5:\"wpide\";s:5:\"3.4.1\";s:23:\"wp-phpmyadmin-extension\";s:7:\"5.2.0.7\";s:14:\"duplicate-post\";s:3:\"4.4\";s:13:\"wordpress-seo\";s:4:\"19.1\";s:21:\"wordpress-seo-premium\";s:4:\"17.7\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:8:\"standard\";}}'),(169781,4796,'_amp_queried_object','a:2:{s:2:\"id\";i:922;s:4:\"type\";s:4:\"post\";}'); INSERT INTO `wp_postmeta` VALUES (169782,4796,'_amp_stylesheets','[{\"group\":\"amp-custom\",\"original_size\":140936,\"final_size\":9105,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/bootstrap.min.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"834eec339f2b2b8368c90e8ee4e0c6d0\",\"parse_time\":1.5320749282836914,\"shake_time\":0.0875849723815918,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\":root\":true},[\"--blue:#007bff\",\"--indigo:#6610f2\",\"--purple:#6f42c1\",\"--pink:#e83e8c\",\"--red:#dc3545\",\"--orange:#fd7e14\",\"--yellow:#ffc107\",\"--green:#28a745\",\"--teal:#20c997\",\"--cyan:#17a2b8\",\"--white:#fff\",\"--gray:#6c757d\",\"--gray-dark:#343a40\",\"--primary:#007bff\",\"--secondary:#6c757d\",\"--success:#28a745\",\"--info:#17a2b8\",\"--warning:#ffc107\",\"--danger:#dc3545\",\"--light:#f8f9fa\",\"--dark:#343a40\",\"--breakpoint-xs:0\",\"--breakpoint-sm:576px\",\"--breakpoint-md:768px\",\"--breakpoint-lg:992px\",\"--breakpoint-xl:1200px\",\"--font-family-sans-serif:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,\\\"Liberation Mono\\\",\\\"Courier New\\\",monospace\"]],[true,{\"*\":true,\"::after\":true,\"::before\":true},[\"box-sizing:border-box\"]],[true,{\"html\":true},[\"font-family:sans-serif\",\"line-height:1.15\",\"-webkit-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\",\"-ms-overflow-style:scrollbar\",\"-webkit-tap-highlight-color:transparent\"]],[true,{\"article\":false,\"aside\":false,\"figcaption\":false,\"figure\":false,\"footer\":true,\"header\":true,\"hgroup\":false,\"main\":false,\"nav\":true,\"section\":true},[\"display:block\"]],[true,{\"body\":true},[\"margin:0\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"font-size:1rem\",\"font-weight:400\",\"line-height:1.5\",\"color:#212529\",\"text-align:left\",\"background-color:#fff\"]],[false,{\"[tabindex=\\\"-1\\\"]:focus:not(#_#_#_#_#_#_#_)\":false},[\"outline:0\"]],[false,{\"hr\":false},[\"box-sizing:content-box\",\"height:0\",\"overflow:visible\"]],[true,{\"h1\":true,\"h2\":false,\"h3\":false,\"h4\":false,\"h5\":true,\"h6\":true},[\"margin-top:0\",\"margin-bottom:.5rem\"]],[true,{\"p\":true},[\"margin-top:0\",\"margin-bottom:1rem\"]],[false,{\"abbr[data-original-title]\":false,\"abbr[title]\":false},[\"text-decoration:underline\",\"text-decoration:underline dotted\",\"-webkit-text-decoration:underline dotted\",\"cursor:help\",\"border-bottom:0\"]],[false,{\"address\":false},[\"margin-bottom:1rem\",\"font-style:normal\",\"line-height:inherit\"]],[true,{\"dl\":false,\"ol\":false,\"ul\":true},[\"margin-top:0\",\"margin-bottom:1rem\"]],[true,{\"ol ol\":false,\"ol ul\":false,\"ul ol\":false,\"ul ul\":true},[\"margin-bottom:0\"]],[false,{\"dt\":false},[\"font-weight:700\"]],[false,{\"dd\":false},[\"margin-bottom:.5rem\",\"margin-left:0\"]],[false,{\"blockquote\":false},[\"margin:0 0 1rem\"]],[false,{\"dfn\":false},[\"font-style:italic\"]],[true,{\"b\":false,\"strong\":true},[\"font-weight:bolder\"]],[false,{\"small\":false},[\"font-size:80%\"]],[false,{\"sub\":false,\"sup\":false},[\"position:relative\",\"font-size:75%\",\"line-height:0\",\"vertical-align:baseline\"]],[false,{\"sub\":false},[\"bottom:-.25em\"]],[false,{\"sup\":false},[\"top:-.5em\"]],[true,{\"a\":true},[\"color:#007bff\",\"text-decoration:none\",\"background-color:transparent\",\"-webkit-text-decoration-skip:objects\"]],[true,{\"a:hover\":true},[\"color:#0056b3\",\"text-decoration:underline\"]],[true,{\"a:not([href]):not([tabindex])\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"a:not([href]):not([tabindex]):focus\":true,\"a:not([href]):not([tabindex]):hover\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"a:not([href]):not([tabindex]):focus\":true},[\"outline:0\"]],[false,{\"code\":false,\"kbd\":false,\"pre\":false,\"samp\":false},[\"font-family:SFMono-Regular,Menlo,Monaco,Consolas,\\\"Liberation Mono\\\",\\\"Courier New\\\",monospace\",\"font-size:1em\"]],[false,{\"pre\":false},[\"margin-top:0\",\"margin-bottom:1rem\",\"overflow:auto\",\"-ms-overflow-style:scrollbar\"]],[false,{\"figure\":false},[\"margin:0 0 1rem\"]],[true,{\"amp-img\":true,\"amp-anim\":false},[\"vertical-align:middle\",\"border-style:none\"]],[false,{\"svg\":false},[\"overflow:hidden\",\"vertical-align:middle\"]],[false,{\"table\":false},[\"border-collapse:collapse\"]],[false,{\"caption\":false},[\"padding-top:.75rem\",\"padding-bottom:.75rem\",\"color:#6c757d\",\"text-align:left\",\"caption-side:bottom\"]],[false,{\"th\":false},[\"text-align:inherit\"]],[false,{\"label\":false},[\"display:inline-block\",\"margin-bottom:.5rem\"]],[true,{\"button\":true},[\"border-radius:0\"]],[true,{\"button:focus\":true},[\"outline:1px dotted\",\"outline:5px auto -webkit-focus-ring-color\"]],[true,{\"button\":true,\"input\":false,\"optgroup\":false,\"select\":false,\"textarea\":false},[\"margin:0\",\"font-family:inherit\",\"font-size:inherit\",\"line-height:inherit\"]],[true,{\"button\":true,\"input\":false},[\"overflow:visible\"]],[true,{\"button\":true,\"select\":false},[\"text-transform:none\"]],[true,{\"[type=reset]\":true,\"[type=submit]\":true,\"button\":true,\"html [type=button]\":true},[\"-webkit-appearance:button\"]],[true,{\"[type=button]::-moz-focus-inner\":true,\"[type=reset]::-moz-focus-inner\":true,\"[type=submit]::-moz-focus-inner\":true,\"button::-moz-focus-inner\":true},[\"padding:0\",\"border-style:none\"]],[false,{\"input[type=checkbox]\":false,\"input[type=radio]\":false},[\"box-sizing:border-box\",\"padding:0\"]],[false,{\"input[type=date]\":false,\"input[type=datetime-local]\":false,\"input[type=month]\":false,\"input[type=time]\":false},[\"-webkit-appearance:listbox\"]],[false,{\"textarea\":false},[\"overflow:auto\",\"resize:vertical\"]],[false,{\"fieldset\":false},[\"min-width:0\",\"padding:0\",\"margin:0\",\"border:0\"]],[false,{\"legend\":false},[\"display:block\",\"width:100%\",\"max-width:100%\",\"padding:0\",\"margin-bottom:.5rem\",\"font-size:1.5rem\",\"line-height:inherit\",\"color:inherit\",\"white-space:normal\"]],[false,{\"progress\":false},[\"vertical-align:baseline\"]],[true,{\"[type=number]::-webkit-inner-spin-button\":true,\"[type=number]::-webkit-outer-spin-button\":true},[\"height:auto\"]],[true,{\"[type=search]\":true},[\"outline-offset:-2px\",\"-webkit-appearance:none\"]],[true,{\"[type=search]::-webkit-search-cancel-button\":true,\"[type=search]::-webkit-search-decoration\":true},[\"-webkit-appearance:none\"]],[true,{\"::-webkit-file-upload-button\":true},[\"font:inherit\",\"-webkit-appearance:button\"]],[false,{\"output\":false},[\"display:inline-block\"]],[false,{\"summary\":false},[\"display:list-item\",\"cursor:pointer\"]],[false,{\"template\":false},[\"display:none\"]],[true,{\"[hidden]:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".h1\":false,\".h2\":false,\".h3\":false,\".h4\":false,\".h5\":false,\".h6\":false,\"h1\":true,\"h2\":false,\"h3\":false,\"h4\":false,\"h5\":true,\"h6\":true},[\"margin-bottom:.5rem\",\"font-family:inherit\",\"font-weight:500\",\"line-height:1.2\",\"color:inherit\"]],[true,{\".h1\":false,\"h1\":true},[\"font-size:2.5rem\"]],[false,{\".h2\":false,\"h2\":false},[\"font-size:2rem\"]],[false,{\".h3\":false,\"h3\":false},[\"font-size:1.75rem\"]],[false,{\".h4\":false,\"h4\":false},[\"font-size:1.5rem\"]],[true,{\".h5\":false,\"h5\":true},[\"font-size:1.25rem\"]],[true,{\".h6\":false,\"h6\":true},[\"font-size:1rem\"]],[false,{\".lead\":false},[\"font-size:1.25rem\",\"font-weight:300\"]],[false,{\".display-1\":false},[\"font-size:6rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\".display-2\":false},[\"font-size:5.5rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\".display-3\":false},[\"font-size:4.5rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\".display-4\":false},[\"font-size:3.5rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\"hr\":false},[\"margin-top:1rem\",\"margin-bottom:1rem\",\"border:0\",\"border-top:1px solid rgba(0,0,0,.1)\"]],[false,{\".small\":false,\"small\":false},[\"font-size:80%\",\"font-weight:400\"]],[false,{\".mark\":false,\"mark\":false},[\"padding:.2em\",\"background-color:#fcf8e3\"]],[false,{\".list-unstyled\":false},[\"padding-left:0\",\"list-style:none\"]],[false,{\".list-inline\":false},[\"padding-left:0\",\"list-style:none\"]],[false,{\".list-inline-item\":false},[\"display:inline-block\"]],[false,{\".list-inline-item:not(:last-child)\":false},[\"margin-right:.5rem\"]],[false,{\".initialism\":false},[\"font-size:90%\",\"text-transform:uppercase\"]],[false,{\".blockquote\":false},[\"margin-bottom:1rem\",\"font-size:1.25rem\"]],[false,{\".blockquote-footer\":false},[\"display:block\",\"font-size:80%\",\"color:#6c757d\"]],[false,{\".blockquote-footer::before\":false},[\"content:\\\"\\u2014\\u00a0\\\"\"]],[false,{\".img-fluid\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".img-thumbnail\":false},[\"padding:.25rem\",\"background-color:#fff\",\"border:1px solid #dee2e6\",\"border-radius:.25rem\",\"max-width:100%\",\"height:auto\"]],[false,{\".figure\":false},[\"display:inline-block\"]],[false,{\".figure-img\":false},[\"margin-bottom:.5rem\",\"line-height:1\"]],[false,{\".figure-caption\":false},[\"font-size:90%\",\"color:#6c757d\"]],[false,{\"code\":false},[\"font-size:87.5%\",\"color:#e83e8c\",\"word-break:break-word\"]],[false,{\"a>code\":false},[\"color:inherit\"]],[false,{\"kbd\":false},[\"padding:.2rem .4rem\",\"font-size:87.5%\",\"color:#fff\",\"background-color:#212529\",\"border-radius:.2rem\"]],[false,{\"kbd kbd\":false},[\"padding:0\",\"font-size:100%\",\"font-weight:700\"]],[false,{\"pre\":false},[\"display:block\",\"font-size:87.5%\",\"color:#212529\"]],[false,{\"pre code\":false},[\"font-size:inherit\",\"color:inherit\",\"word-break:normal\"]],[false,{\".pre-scrollable\":false},[\"max-height:340px\",\"overflow-y:scroll\"]],[true,{\".container\":true},[\"width:100%\",\"padding-right:15px\",\"padding-left:15px\",\"margin-right:auto\",\"margin-left:auto\"]],[true,\"@media (min-width:576px){\"],[true,{\".container\":true},[\"max-width:540px\"]],[true,\"}\"],[true,\"@media (min-width:768px){\"],[true,{\".container\":true},[\"max-width:720px\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[true,{\".container\":true},[\"max-width:960px\"]],[true,\"}\"],[true,\"@media (min-width:1200px){\"],[true,{\".container\":true},[\"max-width:1140px\"]],[true,\"}\"],[true,{\".container-fluid\":true},[\"width:100%\",\"padding-right:15px\",\"padding-left:15px\",\"margin-right:auto\",\"margin-left:auto\"]],[true,{\".row\":true},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"margin-right:-15px\",\"margin-left:-15px\"]],[false,{\".no-gutters\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".no-gutters>.col\":false,\".no-gutters>[class*=col-]\":false},[\"padding-right:0\",\"padding-left:0\"]],[true,{\".col\":false,\".col-1\":false,\".col-10\":true,\".col-11\":false,\".col-12\":true,\".col-2\":true,\".col-3\":false,\".col-4\":false,\".col-5\":false,\".col-6\":false,\".col-7\":false,\".col-8\":false,\".col-9\":false,\".col-auto\":false,\".col-lg\":false,\".col-lg-1\":false,\".col-lg-10\":false,\".col-lg-11\":false,\".col-lg-12\":true,\".col-lg-2\":true,\".col-lg-3\":true,\".col-lg-4\":true,\".col-lg-5\":false,\".col-lg-6\":true,\".col-lg-7\":false,\".col-lg-8\":true,\".col-lg-9\":true,\".col-lg-auto\":false,\".col-md\":false,\".col-md-1\":false,\".col-md-10\":true,\".col-md-11\":false,\".col-md-12\":true,\".col-md-2\":true,\".col-md-3\":false,\".col-md-4\":true,\".col-md-5\":false,\".col-md-6\":true,\".col-md-7\":false,\".col-md-8\":true,\".col-md-9\":false,\".col-md-auto\":false,\".col-sm\":false,\".col-sm-1\":false,\".col-sm-10\":false,\".col-sm-11\":false,\".col-sm-12\":true,\".col-sm-2\":false,\".col-sm-3\":false,\".col-sm-4\":false,\".col-sm-5\":false,\".col-sm-6\":false,\".col-sm-7\":false,\".col-sm-8\":false,\".col-sm-9\":false,\".col-sm-auto\":false,\".col-xl\":false,\".col-xl-1\":false,\".col-xl-10\":true,\".col-xl-11\":false,\".col-xl-12\":false,\".col-xl-2\":true,\".col-xl-3\":false,\".col-xl-4\":false,\".col-xl-5\":false,\".col-xl-6\":false,\".col-xl-7\":false,\".col-xl-8\":false,\".col-xl-9\":false,\".col-xl-auto\":false},[\"position:relative\",\"width:100%\",\"min-height:1px\",\"padding-right:15px\",\"padding-left:15px\"]],[false,{\".col\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[false,{\".col-4\":false},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[false,{\".col-6\":false},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[true,{\".col-10\":true},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-3\":false},[\"margin-left:25%\"]],[false,{\".offset-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-6\":false},[\"margin-left:50%\"]],[false,{\".offset-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-9\":false},[\"margin-left:75%\"]],[false,{\".offset-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-11\":false},[\"margin-left:91.666667%\"]],[true,\"@media (min-width:576px){\"],[false,{\".col-sm\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-sm-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-sm-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[false,{\".col-sm-2\":false},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-sm-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[false,{\".col-sm-4\":false},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-sm-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[false,{\".col-sm-6\":false},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-sm-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-sm-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-sm-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[false,{\".col-sm-10\":false},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-sm-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-sm-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-sm-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-sm-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-sm-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-sm-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-sm-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-sm-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-sm-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-sm-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-sm-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-sm-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-sm-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-sm-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-sm-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-sm-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-sm-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-sm-0\":false},[\"margin-left:0\"]],[false,{\".offset-sm-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-sm-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-sm-3\":false},[\"margin-left:25%\"]],[false,{\".offset-sm-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-sm-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-sm-6\":false},[\"margin-left:50%\"]],[false,{\".offset-sm-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-sm-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-sm-9\":false},[\"margin-left:75%\"]],[false,{\".offset-sm-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-sm-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[true,\"@media (min-width:768px){\"],[false,{\".col-md\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-md-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-md-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-md-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-md-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[true,{\".col-md-4\":true},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-md-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[true,{\".col-md-6\":true},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-md-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[true,{\".col-md-8\":true},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-md-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[true,{\".col-md-10\":true},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-md-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-md-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-md-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-md-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-md-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-md-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-md-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-md-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-md-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-md-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-md-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-md-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-md-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-md-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-md-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-md-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-md-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-md-0\":false},[\"margin-left:0\"]],[false,{\".offset-md-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-md-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-md-3\":false},[\"margin-left:25%\"]],[false,{\".offset-md-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-md-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-md-6\":false},[\"margin-left:50%\"]],[false,{\".offset-md-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-md-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-md-9\":false},[\"margin-left:75%\"]],[false,{\".offset-md-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-md-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[false,{\".col-lg\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-lg-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-lg-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-lg-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[true,{\".col-lg-3\":true},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[true,{\".col-lg-4\":true},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-lg-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[true,{\".col-lg-6\":true},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-lg-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[true,{\".col-lg-8\":true},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[true,{\".col-lg-9\":true},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[false,{\".col-lg-10\":false},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-lg-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-lg-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-lg-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-lg-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-lg-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-lg-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-lg-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-lg-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-lg-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-lg-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-lg-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-lg-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-lg-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-lg-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-lg-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-lg-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-lg-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-lg-0\":false},[\"margin-left:0\"]],[false,{\".offset-lg-1\":false},[\"margin-left:8.333333%\"]],[true,{\".offset-lg-2\":true},[\"margin-left:16.666667%\"]],[false,{\".offset-lg-3\":false},[\"margin-left:25%\"]],[false,{\".offset-lg-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-lg-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-lg-6\":false},[\"margin-left:50%\"]],[false,{\".offset-lg-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-lg-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-lg-9\":false},[\"margin-left:75%\"]],[false,{\".offset-lg-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-lg-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[true,\"@media (min-width:1200px){\"],[false,{\".col-xl\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-xl-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-xl-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-xl-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-xl-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[false,{\".col-xl-4\":false},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-xl-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[false,{\".col-xl-6\":false},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-xl-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-xl-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-xl-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[true,{\".col-xl-10\":true},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-xl-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[false,{\".col-xl-12\":false},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-xl-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-xl-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-xl-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-xl-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-xl-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-xl-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-xl-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-xl-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-xl-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-xl-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-xl-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-xl-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-xl-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-xl-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-xl-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-xl-0\":false},[\"margin-left:0\"]],[false,{\".offset-xl-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-xl-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-xl-3\":false},[\"margin-left:25%\"]],[false,{\".offset-xl-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-xl-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-xl-6\":false},[\"margin-left:50%\"]],[false,{\".offset-xl-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-xl-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-xl-9\":false},[\"margin-left:75%\"]],[false,{\".offset-xl-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-xl-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[false,{\".table\":false},[\"width:100%\",\"margin-bottom:1rem\",\"background-color:transparent\"]],[false,{\".table td\":false,\".table th\":false},[\"padding:.75rem\",\"vertical-align:top\",\"border-top:1px solid #dee2e6\"]],[false,{\".table thead th\":false},[\"vertical-align:bottom\",\"border-bottom:2px solid #dee2e6\"]],[false,{\".table tbody+tbody\":false},[\"border-top:2px solid #dee2e6\"]],[false,{\".table .table\":false},[\"background-color:#fff\"]],[false,{\".table-sm td\":false,\".table-sm th\":false},[\"padding:.3rem\"]],[false,{\".table-bordered\":false},[\"border:1px solid #dee2e6\"]],[false,{\".table-bordered td\":false,\".table-bordered th\":false},[\"border:1px solid #dee2e6\"]],[false,{\".table-bordered thead td\":false,\".table-bordered thead th\":false},[\"border-bottom-width:2px\"]],[false,{\".table-borderless tbody+tbody\":false,\".table-borderless td\":false,\".table-borderless th\":false,\".table-borderless thead th\":false},[\"border:0\"]],[false,{\".table-striped tbody tr:nth-of-type(odd)\":false},[\"background-color:rgba(0,0,0,.05)\"]],[false,{\".table-hover tbody tr:hover\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table-primary\":false,\".table-primary>td\":false,\".table-primary>th\":false},[\"background-color:#b8daff\"]],[false,{\".table-hover .table-primary:hover\":false},[\"background-color:#9fcdff\"]],[false,{\".table-hover .table-primary:hover>td\":false,\".table-hover .table-primary:hover>th\":false},[\"background-color:#9fcdff\"]],[false,{\".table-secondary\":false,\".table-secondary>td\":false,\".table-secondary>th\":false},[\"background-color:#d6d8db\"]],[false,{\".table-hover .table-secondary:hover\":false},[\"background-color:#c8cbcf\"]],[false,{\".table-hover .table-secondary:hover>td\":false,\".table-hover .table-secondary:hover>th\":false},[\"background-color:#c8cbcf\"]],[false,{\".table-success\":false,\".table-success>td\":false,\".table-success>th\":false},[\"background-color:#c3e6cb\"]],[false,{\".table-hover .table-success:hover\":false},[\"background-color:#b1dfbb\"]],[false,{\".table-hover .table-success:hover>td\":false,\".table-hover .table-success:hover>th\":false},[\"background-color:#b1dfbb\"]],[false,{\".table-info\":false,\".table-info>td\":false,\".table-info>th\":false},[\"background-color:#bee5eb\"]],[false,{\".table-hover .table-info:hover\":false},[\"background-color:#abdde5\"]],[false,{\".table-hover .table-info:hover>td\":false,\".table-hover .table-info:hover>th\":false},[\"background-color:#abdde5\"]],[false,{\".table-warning\":false,\".table-warning>td\":false,\".table-warning>th\":false},[\"background-color:#ffeeba\"]],[false,{\".table-hover .table-warning:hover\":false},[\"background-color:#ffe8a1\"]],[false,{\".table-hover .table-warning:hover>td\":false,\".table-hover .table-warning:hover>th\":false},[\"background-color:#ffe8a1\"]],[false,{\".table-danger\":false,\".table-danger>td\":false,\".table-danger>th\":false},[\"background-color:#f5c6cb\"]],[false,{\".table-hover .table-danger:hover\":false},[\"background-color:#f1b0b7\"]],[false,{\".table-hover .table-danger:hover>td\":false,\".table-hover .table-danger:hover>th\":false},[\"background-color:#f1b0b7\"]],[false,{\".table-light\":false,\".table-light>td\":false,\".table-light>th\":false},[\"background-color:#fdfdfe\"]],[false,{\".table-hover .table-light:hover\":false},[\"background-color:#ececf6\"]],[false,{\".table-hover .table-light:hover>td\":false,\".table-hover .table-light:hover>th\":false},[\"background-color:#ececf6\"]],[false,{\".table-dark\":false,\".table-dark>td\":false,\".table-dark>th\":false},[\"background-color:#c6c8ca\"]],[false,{\".table-hover .table-dark:hover\":false},[\"background-color:#b9bbbe\"]],[false,{\".table-hover .table-dark:hover>td\":false,\".table-hover .table-dark:hover>th\":false},[\"background-color:#b9bbbe\"]],[false,{\".table-active\":false,\".table-active>td\":false,\".table-active>th\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table-hover .table-active:hover\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table-hover .table-active:hover>td\":false,\".table-hover .table-active:hover>th\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table .thead-dark th\":false},[\"color:#fff\",\"background-color:#212529\",\"border-color:#32383e\"]],[false,{\".table .thead-light th\":false},[\"color:#495057\",\"background-color:#e9ecef\",\"border-color:#dee2e6\"]],[false,{\".table-dark\":false},[\"color:#fff\",\"background-color:#212529\"]],[false,{\".table-dark td\":false,\".table-dark th\":false,\".table-dark thead th\":false},[\"border-color:#32383e\"]],[false,{\".table-dark.table-bordered\":false},[\"border:0\"]],[false,{\".table-dark.table-striped tbody tr:nth-of-type(odd)\":false},[\"background-color:rgba(255,255,255,.05)\"]],[false,{\".table-dark.table-hover tbody tr:hover\":false},[\"background-color:rgba(255,255,255,.075)\"]],[false,\"@media (max-width:575.98px){\"],[false,{\".table-responsive-sm\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-sm>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:767.98px){\"],[false,{\".table-responsive-md\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-md>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:991.98px){\"],[false,{\".table-responsive-lg\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-lg>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:1199.98px){\"],[false,{\".table-responsive-xl\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-xl>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,{\".table-responsive\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive>.table-bordered\":false},[\"border:0\"]],[false,{\".form-control\":false},[\"display:block\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"padding:.375rem .75rem\",\"font-size:1rem\",\"line-height:1.5\",\"color:#495057\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid #ced4da\",\"border-radius:.25rem\",\"transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".form-control\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".form-control::-ms-expand\":false},[\"background-color:transparent\",\"border:0\"]],[false,{\".form-control:focus\":false},[\"color:#495057\",\"background-color:#fff\",\"border-color:#80bdff\",\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".form-control::-webkit-input-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control::-moz-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control:-ms-input-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control::-ms-input-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control::placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control:disabled\":false,\".form-control[readonly]\":false},[\"background-color:#e9ecef\",\"opacity:1\"]],[false,{\"select.form-control:focus::-ms-value\":false},[\"color:#495057\",\"background-color:#fff\"]],[false,{\".form-control-file\":false,\".form-control-range\":false},[\"display:block\",\"width:100%\"]],[false,{\".col-form-label\":false},[\"padding-top:calc(.375rem + 1px)\",\"padding-bottom:calc(.375rem + 1px)\",\"margin-bottom:0\",\"font-size:inherit\",\"line-height:1.5\"]],[false,{\".col-form-label-lg\":false},[\"padding-top:calc(.5rem + 1px)\",\"padding-bottom:calc(.5rem + 1px)\",\"font-size:1.25rem\",\"line-height:1.5\"]],[false,{\".col-form-label-sm\":false},[\"padding-top:calc(.25rem + 1px)\",\"padding-bottom:calc(.25rem + 1px)\",\"font-size:.875rem\",\"line-height:1.5\"]],[false,{\".form-control-plaintext\":false},[\"display:block\",\"width:100%\",\"padding-top:.375rem\",\"padding-bottom:.375rem\",\"margin-bottom:0\",\"line-height:1.5\",\"color:#212529\",\"background-color:transparent\",\"border:solid transparent\",\"border-width:1px 0\"]],[false,{\".form-control-plaintext.form-control-lg\":false,\".form-control-plaintext.form-control-sm\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,{\".form-control-sm\":false},[\"height:calc(1.8125rem + 2px)\",\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\",\"border-radius:.2rem\"]],[false,{\".form-control-lg\":false},[\"height:calc(2.875rem + 2px)\",\"padding:.5rem 1rem\",\"font-size:1.25rem\",\"line-height:1.5\",\"border-radius:.3rem\"]],[false,{\"select.form-control[multiple]\":false,\"select.form-control[size]\":false},[\"height:auto\"]],[false,{\"textarea.form-control\":false},[\"height:auto\"]],[false,{\".form-group\":false},[\"margin-bottom:1rem\"]],[false,{\".form-text\":false},[\"display:block\",\"margin-top:.25rem\"]],[false,{\".form-row\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"margin-right:-5px\",\"margin-left:-5px\"]],[false,{\".form-row>.col\":false,\".form-row>[class*=col-]\":false},[\"padding-right:5px\",\"padding-left:5px\"]],[false,{\".form-check\":false},[\"position:relative\",\"display:block\",\"padding-left:1.25rem\"]],[false,{\".form-check-input\":false},[\"position:absolute\",\"margin-top:.3rem\",\"margin-left:-1.25rem\"]],[false,{\".form-check-input:disabled~.form-check-label\":false},[\"color:#6c757d\"]],[false,{\".form-check-label\":false},[\"margin-bottom:0\"]],[false,{\".form-check-inline\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"-ms-flex-align:center\",\"align-items:center\",\"padding-left:0\",\"margin-right:.75rem\"]],[false,{\".form-check-inline .form-check-input\":false},[\"position:static\",\"margin-top:0\",\"margin-right:.3125rem\",\"margin-left:0\"]],[false,{\".valid-feedback\":false},[\"display:none\",\"width:100%\",\"margin-top:.25rem\",\"font-size:80%\",\"color:#28a745\"]],[false,{\".valid-tooltip\":false},[\"position:absolute\",\"top:100%\",\"z-index:5\",\"display:none\",\"max-width:100%\",\"padding:.25rem .5rem\",\"margin-top:.1rem\",\"font-size:.875rem\",\"line-height:1.5\",\"color:#fff\",\"background-color:rgba(40,167,69,.9)\",\"border-radius:.25rem\"]],[false,{\".custom-select.is-valid\":false,\".form-control.is-valid\":false,\".was-validated .custom-select:valid\":false,\".was-validated .form-control:valid\":false},[\"border-color:#28a745\"]],[false,{\".custom-select.is-valid:focus\":false,\".form-control.is-valid:focus\":false,\".was-validated .custom-select:valid:focus\":false,\".was-validated .form-control:valid:focus\":false},[\"border-color:#28a745\",\"box-shadow:0 0 0 .2rem rgba(40,167,69,.25)\"]],[false,{\".custom-select.is-valid~.valid-feedback\":false,\".custom-select.is-valid~.valid-tooltip\":false,\".form-control.is-valid~.valid-feedback\":false,\".form-control.is-valid~.valid-tooltip\":false,\".was-validated .custom-select:valid~.valid-feedback\":false,\".was-validated .custom-select:valid~.valid-tooltip\":false,\".was-validated .form-control:valid~.valid-feedback\":false,\".was-validated .form-control:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".form-control-file.is-valid~.valid-feedback\":false,\".form-control-file.is-valid~.valid-tooltip\":false,\".was-validated .form-control-file:valid~.valid-feedback\":false,\".was-validated .form-control-file:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".form-check-input.is-valid~.form-check-label\":false,\".was-validated .form-check-input:valid~.form-check-label\":false},[\"color:#28a745\"]],[false,{\".form-check-input.is-valid~.valid-feedback\":false,\".form-check-input.is-valid~.valid-tooltip\":false,\".was-validated .form-check-input:valid~.valid-feedback\":false,\".was-validated .form-check-input:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-valid~.custom-control-label\":false,\".was-validated .custom-control-input:valid~.custom-control-label\":false},[\"color:#28a745\"]],[false,{\".custom-control-input.is-valid~.custom-control-label::before\":false,\".was-validated .custom-control-input:valid~.custom-control-label::before\":false},[\"background-color:#71dd8a\"]],[false,{\".custom-control-input.is-valid~.valid-feedback\":false,\".custom-control-input.is-valid~.valid-tooltip\":false,\".was-validated .custom-control-input:valid~.valid-feedback\":false,\".was-validated .custom-control-input:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-valid:checked~.custom-control-label::before\":false,\".was-validated .custom-control-input:valid:checked~.custom-control-label::before\":false},[\"background-color:#34ce57\"]],[false,{\".custom-control-input.is-valid:focus~.custom-control-label::before\":false,\".was-validated .custom-control-input:valid:focus~.custom-control-label::before\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(40,167,69,.25)\"]],[false,{\".custom-file-input.is-valid~.custom-file-label\":false,\".was-validated .custom-file-input:valid~.custom-file-label\":false},[\"border-color:#28a745\"]],[false,{\".custom-file-input.is-valid~.custom-file-label::after\":false,\".was-validated .custom-file-input:valid~.custom-file-label::after\":false},[\"border-color:inherit\"]],[false,{\".custom-file-input.is-valid~.valid-feedback\":false,\".custom-file-input.is-valid~.valid-tooltip\":false,\".was-validated .custom-file-input:valid~.valid-feedback\":false,\".was-validated .custom-file-input:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".custom-file-input.is-valid:focus~.custom-file-label\":false,\".was-validated .custom-file-input:valid:focus~.custom-file-label\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.25)\"]],[false,{\".invalid-feedback\":false},[\"display:none\",\"width:100%\",\"margin-top:.25rem\",\"font-size:80%\",\"color:#dc3545\"]],[false,{\".invalid-tooltip\":false},[\"position:absolute\",\"top:100%\",\"z-index:5\",\"display:none\",\"max-width:100%\",\"padding:.25rem .5rem\",\"margin-top:.1rem\",\"font-size:.875rem\",\"line-height:1.5\",\"color:#fff\",\"background-color:rgba(220,53,69,.9)\",\"border-radius:.25rem\"]],[false,{\".custom-select.is-invalid\":false,\".form-control.is-invalid\":false,\".was-validated .custom-select:invalid\":false,\".was-validated .form-control:invalid\":false},[\"border-color:#dc3545\"]],[false,{\".custom-select.is-invalid:focus\":false,\".form-control.is-invalid:focus\":false,\".was-validated .custom-select:invalid:focus\":false,\".was-validated .form-control:invalid:focus\":false},[\"border-color:#dc3545\",\"box-shadow:0 0 0 .2rem rgba(220,53,69,.25)\"]],[false,{\".custom-select.is-invalid~.invalid-feedback\":false,\".custom-select.is-invalid~.invalid-tooltip\":false,\".form-control.is-invalid~.invalid-feedback\":false,\".form-control.is-invalid~.invalid-tooltip\":false,\".was-validated .custom-select:invalid~.invalid-feedback\":false,\".was-validated .custom-select:invalid~.invalid-tooltip\":false,\".was-validated .form-control:invalid~.invalid-feedback\":false,\".was-validated .form-control:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".form-control-file.is-invalid~.invalid-feedback\":false,\".form-control-file.is-invalid~.invalid-tooltip\":false,\".was-validated .form-control-file:invalid~.invalid-feedback\":false,\".was-validated .form-control-file:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".form-check-input.is-invalid~.form-check-label\":false,\".was-validated .form-check-input:invalid~.form-check-label\":false},[\"color:#dc3545\"]],[false,{\".form-check-input.is-invalid~.invalid-feedback\":false,\".form-check-input.is-invalid~.invalid-tooltip\":false,\".was-validated .form-check-input:invalid~.invalid-feedback\":false,\".was-validated .form-check-input:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-invalid~.custom-control-label\":false,\".was-validated .custom-control-input:invalid~.custom-control-label\":false},[\"color:#dc3545\"]],[false,{\".custom-control-input.is-invalid~.custom-control-label::before\":false,\".was-validated .custom-control-input:invalid~.custom-control-label::before\":false},[\"background-color:#efa2a9\"]],[false,{\".custom-control-input.is-invalid~.invalid-feedback\":false,\".custom-control-input.is-invalid~.invalid-tooltip\":false,\".was-validated .custom-control-input:invalid~.invalid-feedback\":false,\".was-validated .custom-control-input:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-invalid:checked~.custom-control-label::before\":false,\".was-validated .custom-control-input:invalid:checked~.custom-control-label::before\":false},[\"background-color:#e4606d\"]],[false,{\".custom-control-input.is-invalid:focus~.custom-control-label::before\":false,\".was-validated .custom-control-input:invalid:focus~.custom-control-label::before\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(220,53,69,.25)\"]],[false,{\".custom-file-input.is-invalid~.custom-file-label\":false,\".was-validated .custom-file-input:invalid~.custom-file-label\":false},[\"border-color:#dc3545\"]],[false,{\".custom-file-input.is-invalid~.custom-file-label::after\":false,\".was-validated .custom-file-input:invalid~.custom-file-label::after\":false},[\"border-color:inherit\"]],[false,{\".custom-file-input.is-invalid~.invalid-feedback\":false,\".custom-file-input.is-invalid~.invalid-tooltip\":false,\".was-validated .custom-file-input:invalid~.invalid-feedback\":false,\".was-validated .custom-file-input:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".custom-file-input.is-invalid:focus~.custom-file-label\":false,\".was-validated .custom-file-input:invalid:focus~.custom-file-label\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.25)\"]],[false,{\".form-inline\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".form-inline .form-check\":false},[\"width:100%\"]],[false,\"@media (min-width:576px){\"],[false,{\".form-inline label\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"margin-bottom:0\"]],[false,{\".form-inline .form-group\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\",\"-ms-flex-align:center\",\"align-items:center\",\"margin-bottom:0\"]],[false,{\".form-inline .form-control\":false},[\"display:inline-block\",\"width:auto\",\"vertical-align:middle\"]],[false,{\".form-inline .form-control-plaintext\":false},[\"display:inline-block\"]],[false,{\".form-inline .custom-select\":false,\".form-inline .input-group\":false},[\"width:auto\"]],[false,{\".form-inline .form-check\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"width:auto\",\"padding-left:0\"]],[false,{\".form-inline .form-check-input\":false},[\"position:relative\",\"margin-top:0\",\"margin-right:.25rem\",\"margin-left:0\"]],[false,{\".form-inline .custom-control\":false},[\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".form-inline .custom-control-label\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".btn\":false},[\"display:inline-block\",\"font-weight:400\",\"text-align:center\",\"white-space:nowrap\",\"vertical-align:middle\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\",\"border:1px solid transparent\",\"padding:.375rem .75rem\",\"font-size:1rem\",\"line-height:1.5\",\"border-radius:.25rem\",\"transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".btn\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".btn:focus\":false,\".btn:hover\":false},[\"text-decoration:none\"]],[false,{\".btn:focus-within\":false,\".btn:focus\":false},[\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".btn.disabled\":false,\".btn:disabled\":false},[\"opacity:.65\"]],[false,{\".btn:not(:disabled):not(.disabled)\":false},[\"cursor:pointer\"]],[false,{\"a.btn.disabled\":false,\"fieldset:disabled a.btn\":false},[\"pointer-events:none\"]],[false,{\".btn-primary\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-primary:hover\":false},[\"color:#fff\",\"background-color:#0069d9\",\"border-color:#0062cc\"]],[false,{\".btn-primary:focus-within\":false,\".btn-primary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-primary.disabled\":false,\".btn-primary:disabled\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-primary:not(:disabled):not(.disabled).active\":false,\".btn-primary:not(:disabled):not(.disabled):active\":false,\".show>.btn-primary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#0062cc\",\"border-color:#005cbf\"]],[false,{\".btn-primary:not(:disabled):not(.disabled).active:focus\":false,\".btn-primary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-primary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-secondary\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-secondary:hover\":false},[\"color:#fff\",\"background-color:#5a6268\",\"border-color:#545b62\"]],[false,{\".btn-secondary:focus-within\":false,\".btn-secondary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-secondary.disabled\":false,\".btn-secondary:disabled\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-secondary:not(:disabled):not(.disabled).active\":false,\".btn-secondary:not(:disabled):not(.disabled):active\":false,\".show>.btn-secondary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#545b62\",\"border-color:#4e555b\"]],[false,{\".btn-secondary:not(:disabled):not(.disabled).active:focus\":false,\".btn-secondary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-secondary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-success\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-success:hover\":false},[\"color:#fff\",\"background-color:#218838\",\"border-color:#1e7e34\"]],[false,{\".btn-success:focus-within\":false,\".btn-success:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-success.disabled\":false,\".btn-success:disabled\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-success:not(:disabled):not(.disabled).active\":false,\".btn-success:not(:disabled):not(.disabled):active\":false,\".show>.btn-success.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#1e7e34\",\"border-color:#1c7430\"]],[false,{\".btn-success:not(:disabled):not(.disabled).active:focus\":false,\".btn-success:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-success.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-info\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-info:hover\":false},[\"color:#fff\",\"background-color:#138496\",\"border-color:#117a8b\"]],[false,{\".btn-info:focus-within\":false,\".btn-info:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-info.disabled\":false,\".btn-info:disabled\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-info:not(:disabled):not(.disabled).active\":false,\".btn-info:not(:disabled):not(.disabled):active\":false,\".show>.btn-info.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#117a8b\",\"border-color:#10707f\"]],[false,{\".btn-info:not(:disabled):not(.disabled).active:focus\":false,\".btn-info:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-info.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-warning\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-warning:hover\":false},[\"color:#212529\",\"background-color:#e0a800\",\"border-color:#d39e00\"]],[false,{\".btn-warning:focus-within\":false,\".btn-warning:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-warning.disabled\":false,\".btn-warning:disabled\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-warning:not(:disabled):not(.disabled).active\":false,\".btn-warning:not(:disabled):not(.disabled):active\":false,\".show>.btn-warning.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#d39e00\",\"border-color:#c69500\"]],[false,{\".btn-warning:not(:disabled):not(.disabled).active:focus\":false,\".btn-warning:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-warning.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-danger\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-danger:hover\":false},[\"color:#fff\",\"background-color:#c82333\",\"border-color:#bd2130\"]],[false,{\".btn-danger:focus-within\":false,\".btn-danger:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-danger.disabled\":false,\".btn-danger:disabled\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-danger:not(:disabled):not(.disabled).active\":false,\".btn-danger:not(:disabled):not(.disabled):active\":false,\".show>.btn-danger.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#bd2130\",\"border-color:#b21f2d\"]],[false,{\".btn-danger:not(:disabled):not(.disabled).active:focus\":false,\".btn-danger:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-danger.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-light\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-light:hover\":false},[\"color:#212529\",\"background-color:#e2e6ea\",\"border-color:#dae0e5\"]],[false,{\".btn-light:focus-within\":false,\".btn-light:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-light.disabled\":false,\".btn-light:disabled\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-light:not(:disabled):not(.disabled).active\":false,\".btn-light:not(:disabled):not(.disabled):active\":false,\".show>.btn-light.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#dae0e5\",\"border-color:#d3d9df\"]],[false,{\".btn-light:not(:disabled):not(.disabled).active:focus\":false,\".btn-light:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-light.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-dark\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-dark:hover\":false},[\"color:#fff\",\"background-color:#23272b\",\"border-color:#1d2124\"]],[false,{\".btn-dark:focus-within\":false,\".btn-dark:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-dark.disabled\":false,\".btn-dark:disabled\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-dark:not(:disabled):not(.disabled).active\":false,\".btn-dark:not(:disabled):not(.disabled):active\":false,\".show>.btn-dark.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#1d2124\",\"border-color:#171a1d\"]],[false,{\".btn-dark:not(:disabled):not(.disabled).active:focus\":false,\".btn-dark:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-dark.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-outline-primary\":false},[\"color:#007bff\",\"background-color:transparent\",\"background-image:none\",\"border-color:#007bff\"]],[false,{\".btn-outline-primary:hover\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-outline-primary:focus-within\":false,\".btn-outline-primary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-outline-primary.disabled\":false,\".btn-outline-primary:disabled\":false},[\"color:#007bff\",\"background-color:transparent\"]],[false,{\".btn-outline-primary:not(:disabled):not(.disabled).active\":false,\".btn-outline-primary:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-primary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-outline-primary:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-primary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-primary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-outline-secondary\":false},[\"color:#6c757d\",\"background-color:transparent\",\"background-image:none\",\"border-color:#6c757d\"]],[false,{\".btn-outline-secondary:hover\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-outline-secondary:focus-within\":false,\".btn-outline-secondary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-outline-secondary.disabled\":false,\".btn-outline-secondary:disabled\":false},[\"color:#6c757d\",\"background-color:transparent\"]],[false,{\".btn-outline-secondary:not(:disabled):not(.disabled).active\":false,\".btn-outline-secondary:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-secondary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-outline-secondary:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-secondary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-secondary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-outline-success\":false},[\"color:#28a745\",\"background-color:transparent\",\"background-image:none\",\"border-color:#28a745\"]],[false,{\".btn-outline-success:hover\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-outline-success:focus-within\":false,\".btn-outline-success:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-outline-success.disabled\":false,\".btn-outline-success:disabled\":false},[\"color:#28a745\",\"background-color:transparent\"]],[false,{\".btn-outline-success:not(:disabled):not(.disabled).active\":false,\".btn-outline-success:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-success.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-outline-success:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-success:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-success.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-outline-info\":false},[\"color:#17a2b8\",\"background-color:transparent\",\"background-image:none\",\"border-color:#17a2b8\"]],[false,{\".btn-outline-info:hover\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-outline-info:focus-within\":false,\".btn-outline-info:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-outline-info.disabled\":false,\".btn-outline-info:disabled\":false},[\"color:#17a2b8\",\"background-color:transparent\"]],[false,{\".btn-outline-info:not(:disabled):not(.disabled).active\":false,\".btn-outline-info:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-info.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-outline-info:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-info:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-info.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-outline-warning\":false},[\"color:#ffc107\",\"background-color:transparent\",\"background-image:none\",\"border-color:#ffc107\"]],[false,{\".btn-outline-warning:hover\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-outline-warning:focus-within\":false,\".btn-outline-warning:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-outline-warning.disabled\":false,\".btn-outline-warning:disabled\":false},[\"color:#ffc107\",\"background-color:transparent\"]],[false,{\".btn-outline-warning:not(:disabled):not(.disabled).active\":false,\".btn-outline-warning:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-warning.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-outline-warning:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-warning:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-warning.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-outline-danger\":false},[\"color:#dc3545\",\"background-color:transparent\",\"background-image:none\",\"border-color:#dc3545\"]],[false,{\".btn-outline-danger:hover\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-outline-danger:focus-within\":false,\".btn-outline-danger:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-outline-danger.disabled\":false,\".btn-outline-danger:disabled\":false},[\"color:#dc3545\",\"background-color:transparent\"]],[false,{\".btn-outline-danger:not(:disabled):not(.disabled).active\":false,\".btn-outline-danger:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-danger.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-outline-danger:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-danger:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-danger.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-outline-light\":false},[\"color:#f8f9fa\",\"background-color:transparent\",\"background-image:none\",\"border-color:#f8f9fa\"]],[false,{\".btn-outline-light:hover\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-outline-light:focus-within\":false,\".btn-outline-light:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-outline-light.disabled\":false,\".btn-outline-light:disabled\":false},[\"color:#f8f9fa\",\"background-color:transparent\"]],[false,{\".btn-outline-light:not(:disabled):not(.disabled).active\":false,\".btn-outline-light:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-light.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-outline-light:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-light:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-light.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-outline-dark\":false},[\"color:#343a40\",\"background-color:transparent\",\"background-image:none\",\"border-color:#343a40\"]],[false,{\".btn-outline-dark:hover\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-outline-dark:focus-within\":false,\".btn-outline-dark:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-outline-dark.disabled\":false,\".btn-outline-dark:disabled\":false},[\"color:#343a40\",\"background-color:transparent\"]],[false,{\".btn-outline-dark:not(:disabled):not(.disabled).active\":false,\".btn-outline-dark:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-dark.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-outline-dark:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-dark:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-dark.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-link\":false},[\"font-weight:400\",\"color:#007bff\",\"background-color:transparent\"]],[false,{\".btn-link:hover\":false},[\"color:#0056b3\",\"text-decoration:underline\",\"background-color:transparent\",\"border-color:transparent\"]],[false,{\".btn-link:focus-within\":false,\".btn-link:focus\":false},[\"text-decoration:underline\",\"border-color:transparent\",\"box-shadow:none\"]],[false,{\".btn-link.disabled\":false,\".btn-link:disabled\":false},[\"color:#6c757d\",\"pointer-events:none\"]],[false,{\".btn-group-lg>.btn\":false,\".btn-lg\":false},[\"padding:.5rem 1rem\",\"font-size:1.25rem\",\"line-height:1.5\",\"border-radius:.3rem\"]],[false,{\".btn-group-sm>.btn\":false,\".btn-sm\":false},[\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\",\"border-radius:.2rem\"]],[false,{\".btn-block\":false},[\"display:block\",\"width:100%\"]],[false,{\".btn-block+.btn-block\":false},[\"margin-top:.5rem\"]],[false,{\"input[type=button].btn-block\":false,\"input[type=reset].btn-block\":false,\"input[type=submit].btn-block\":false},[\"width:100%\"]],[false,{\".fade\":false},[\"transition:opacity .15s linear\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".fade\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".fade:not(.show)\":false},[\"opacity:0\"]],[true,{\".collapse:not(.show)\":true},[\"display:none\"]],[false,{\".collapsing\":false},[\"position:relative\",\"height:0\",\"overflow:hidden\",\"transition:height .35s ease\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".collapsing\":false},[\"transition:none\"]],[false,\"}\"],[true,{\".dropdown\":true,\".dropleft\":false,\".dropright\":false,\".dropup\":false},[\"position:relative\"]],[true,{\".dropdown-toggle::after\":true},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:.3em solid\",\"border-right:.3em solid transparent\",\"border-bottom:0\",\"border-left:.3em solid transparent\"]],[true,{\".dropdown-toggle:empty::after\":true},[\"margin-left:0\"]],[true,{\".dropdown-menu\":true},[\"position:absolute\",\"top:100%\",\"left:0\",\"z-index:1000\",\"display:none\",\"float:left\",\"min-width:10rem\",\"padding:.5rem 0\",\"margin:.125rem 0 0\",\"font-size:1rem\",\"color:#212529\",\"text-align:left\",\"list-style:none\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid rgba(0,0,0,.15)\",\"border-radius:.25rem\"]],[false,{\".dropdown-menu-right\":false},[\"right:0\",\"left:auto\"]],[false,{\".dropup .dropdown-menu\":false},[\"top:auto\",\"bottom:100%\",\"margin-top:0\",\"margin-bottom:.125rem\"]],[false,{\".dropup .dropdown-toggle::after\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:0\",\"border-right:.3em solid transparent\",\"border-bottom:.3em solid\",\"border-left:.3em solid transparent\"]],[false,{\".dropup .dropdown-toggle:empty::after\":false},[\"margin-left:0\"]],[false,{\".dropright .dropdown-menu\":false},[\"top:0\",\"right:auto\",\"left:100%\",\"margin-top:0\",\"margin-left:.125rem\"]],[false,{\".dropright .dropdown-toggle::after\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:.3em solid transparent\",\"border-right:0\",\"border-bottom:.3em solid transparent\",\"border-left:.3em solid\"]],[false,{\".dropright .dropdown-toggle:empty::after\":false},[\"margin-left:0\"]],[false,{\".dropright .dropdown-toggle::after\":false},[\"vertical-align:0\"]],[false,{\".dropleft .dropdown-menu\":false},[\"top:0\",\"right:100%\",\"left:auto\",\"margin-top:0\",\"margin-right:.125rem\"]],[false,{\".dropleft .dropdown-toggle::after\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\"]],[false,{\".dropleft .dropdown-toggle::after\":false},[\"display:none\"]],[false,{\".dropleft .dropdown-toggle::before\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-right:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:.3em solid transparent\",\"border-right:.3em solid\",\"border-bottom:.3em solid transparent\"]],[false,{\".dropleft .dropdown-toggle:empty::after\":false},[\"margin-left:0\"]],[false,{\".dropleft .dropdown-toggle::before\":false},[\"vertical-align:0\"]],[false,{\".dropdown-menu[x-placement^=bottom]\":false,\".dropdown-menu[x-placement^=left]\":false,\".dropdown-menu[x-placement^=right]\":false,\".dropdown-menu[x-placement^=top]\":false},[\"right:auto\",\"bottom:auto\"]],[false,{\".dropdown-divider\":false},[\"height:0\",\"margin:.5rem 0\",\"overflow:hidden\",\"border-top:1px solid #e9ecef\"]],[false,{\".dropdown-item\":false},[\"display:block\",\"width:100%\",\"padding:.25rem 1.5rem\",\"clear:both\",\"font-weight:400\",\"color:#212529\",\"text-align:inherit\",\"white-space:nowrap\",\"background-color:transparent\",\"border:0\"]],[false,{\".dropdown-item:focus\":false,\".dropdown-item:hover\":false},[\"color:#16181b\",\"text-decoration:none\",\"background-color:#f8f9fa\"]],[false,{\".dropdown-item.active\":false,\".dropdown-item:active\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#007bff\"]],[false,{\".dropdown-item.disabled\":false,\".dropdown-item:disabled\":false},[\"color:#6c757d\",\"background-color:transparent\"]],[false,{\".dropdown-menu.show\":false},[\"display:block\"]],[false,{\".dropdown-header\":false},[\"display:block\",\"padding:.5rem 1.5rem\",\"margin-bottom:0\",\"font-size:.875rem\",\"color:#6c757d\",\"white-space:nowrap\"]],[false,{\".dropdown-item-text\":false},[\"display:block\",\"padding:.25rem 1.5rem\",\"color:#212529\"]],[false,{\".btn-group\":false,\".btn-group-vertical\":false},[\"position:relative\",\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"vertical-align:middle\"]],[false,{\".btn-group-vertical>.btn\":false,\".btn-group>.btn\":false},[\"position:relative\",\"-ms-flex:0 1 auto\",\"flex:0 1 auto\"]],[false,{\".btn-group-vertical>.btn:hover\":false,\".btn-group>.btn:hover\":false},[\"z-index:1\"]],[false,{\".btn-group-vertical>.btn.active\":false,\".btn-group-vertical>.btn:active\":false,\".btn-group-vertical>.btn:focus\":false,\".btn-group>.btn.active\":false,\".btn-group>.btn:active\":false,\".btn-group>.btn:focus\":false},[\"z-index:1\"]],[false,{\".btn-group .btn+.btn\":false,\".btn-group .btn+.btn-group\":false,\".btn-group .btn-group+.btn\":false,\".btn-group .btn-group+.btn-group\":false,\".btn-group-vertical .btn+.btn\":false,\".btn-group-vertical .btn+.btn-group\":false,\".btn-group-vertical .btn-group+.btn\":false,\".btn-group-vertical .btn-group+.btn-group\":false},[\"margin-left:-1px\"]],[false,{\".btn-toolbar\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".btn-toolbar .input-group\":false},[\"width:auto\"]],[false,{\".btn-group>.btn:first-child\":false},[\"margin-left:0\"]],[false,{\".btn-group>.btn-group:not(:last-child)>.btn\":false,\".btn-group>.btn:not(:last-child):not(.dropdown-toggle)\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".btn-group>.btn-group:not(:first-child)>.btn\":false,\".btn-group>.btn:not(:first-child)\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".dropdown-toggle-split\":false},[\"padding-right:.5625rem\",\"padding-left:.5625rem\"]],[false,{\".dropdown-toggle-split::after\":false,\".dropright .dropdown-toggle-split::after\":false,\".dropup .dropdown-toggle-split::after\":false},[\"margin-left:0\"]],[false,{\".dropleft .dropdown-toggle-split::before\":false},[\"margin-right:0\"]],[false,{\".btn-group-sm>.btn+.dropdown-toggle-split\":false,\".btn-sm+.dropdown-toggle-split\":false},[\"padding-right:.375rem\",\"padding-left:.375rem\"]],[false,{\".btn-group-lg>.btn+.dropdown-toggle-split\":false,\".btn-lg+.dropdown-toggle-split\":false},[\"padding-right:.75rem\",\"padding-left:.75rem\"]],[false,{\".btn-group-vertical\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\",\"-ms-flex-align:start\",\"align-items:flex-start\",\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".btn-group-vertical .btn\":false,\".btn-group-vertical .btn-group\":false},[\"width:100%\"]],[false,{\".btn-group-vertical>.btn+.btn\":false,\".btn-group-vertical>.btn+.btn-group\":false,\".btn-group-vertical>.btn-group+.btn\":false,\".btn-group-vertical>.btn-group+.btn-group\":false},[\"margin-top:-1px\",\"margin-left:0\"]],[false,{\".btn-group-vertical>.btn-group:not(:last-child)>.btn\":false,\".btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle)\":false},[\"border-bottom-right-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".btn-group-vertical>.btn-group:not(:first-child)>.btn\":false,\".btn-group-vertical>.btn:not(:first-child)\":false},[\"border-top-left-radius:0\",\"border-top-right-radius:0\"]],[false,{\".btn-group-toggle>.btn\":false,\".btn-group-toggle>.btn-group>.btn\":false},[\"margin-bottom:0\"]],[false,{\".btn-group-toggle>.btn input[type=checkbox]\":false,\".btn-group-toggle>.btn input[type=radio]\":false,\".btn-group-toggle>.btn-group>.btn input[type=checkbox]\":false,\".btn-group-toggle>.btn-group>.btn input[type=radio]\":false},[\"position:absolute\",\"clip:rect(0,0,0,0)\",\"pointer-events:none\"]],[false,{\".input-group\":false},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-align:stretch\",\"align-items:stretch\",\"width:100%\"]],[false,{\".input-group>.custom-file\":false,\".input-group>.custom-select\":false,\".input-group>.form-control\":false},[\"position:relative\",\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"width:1%\",\"margin-bottom:0\"]],[false,{\".input-group>.custom-file+.custom-file\":false,\".input-group>.custom-file+.custom-select\":false,\".input-group>.custom-file+.form-control\":false,\".input-group>.custom-select+.custom-file\":false,\".input-group>.custom-select+.custom-select\":false,\".input-group>.custom-select+.form-control\":false,\".input-group>.form-control+.custom-file\":false,\".input-group>.form-control+.custom-select\":false,\".input-group>.form-control+.form-control\":false},[\"margin-left:-1px\"]],[false,{\".input-group>.custom-file .custom-file-input:focus~.custom-file-label\":false,\".input-group>.custom-select:focus\":false,\".input-group>.form-control:focus\":false},[\"z-index:3\"]],[false,{\".input-group>.custom-file .custom-file-input:focus\":false},[\"z-index:4\"]],[false,{\".input-group>.custom-select:not(:last-child)\":false,\".input-group>.form-control:not(:last-child)\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".input-group>.custom-select:not(:first-child)\":false,\".input-group>.form-control:not(:first-child)\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".input-group>.custom-file\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".input-group>.custom-file:not(:last-child) .custom-file-label\":false,\".input-group>.custom-file:not(:last-child) .custom-file-label::after\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".input-group>.custom-file:not(:first-child) .custom-file-label\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".input-group-append\":false,\".input-group-prepend\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".input-group-append .btn\":false,\".input-group-prepend .btn\":false},[\"position:relative\",\"z-index:2\"]],[false,{\".input-group-append .btn+.btn\":false,\".input-group-append .btn+.input-group-text\":false,\".input-group-append .input-group-text+.btn\":false,\".input-group-append .input-group-text+.input-group-text\":false,\".input-group-prepend .btn+.btn\":false,\".input-group-prepend .btn+.input-group-text\":false,\".input-group-prepend .input-group-text+.btn\":false,\".input-group-prepend .input-group-text+.input-group-text\":false},[\"margin-left:-1px\"]],[false,{\".input-group-prepend\":false},[\"margin-right:-1px\"]],[false,{\".input-group-append\":false},[\"margin-left:-1px\"]],[false,{\".input-group-text\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"padding:.375rem .75rem\",\"margin-bottom:0\",\"font-size:1rem\",\"font-weight:400\",\"line-height:1.5\",\"color:#495057\",\"text-align:center\",\"white-space:nowrap\",\"background-color:#e9ecef\",\"border:1px solid #ced4da\",\"border-radius:.25rem\"]],[false,{\".input-group-text input[type=checkbox]\":false,\".input-group-text input[type=radio]\":false},[\"margin-top:0\"]],[false,{\".input-group-lg>.form-control\":false,\".input-group-lg>.input-group-append>.btn\":false,\".input-group-lg>.input-group-append>.input-group-text\":false,\".input-group-lg>.input-group-prepend>.btn\":false,\".input-group-lg>.input-group-prepend>.input-group-text\":false},[\"height:calc(2.875rem + 2px)\",\"padding:.5rem 1rem\",\"font-size:1.25rem\",\"line-height:1.5\",\"border-radius:.3rem\"]],[false,{\".input-group-sm>.form-control\":false,\".input-group-sm>.input-group-append>.btn\":false,\".input-group-sm>.input-group-append>.input-group-text\":false,\".input-group-sm>.input-group-prepend>.btn\":false,\".input-group-sm>.input-group-prepend>.input-group-text\":false},[\"height:calc(1.8125rem + 2px)\",\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\",\"border-radius:.2rem\"]],[false,{\".input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle)\":false,\".input-group>.input-group-append:last-child>.input-group-text:not(:last-child)\":false,\".input-group>.input-group-append:not(:last-child)>.btn\":false,\".input-group>.input-group-append:not(:last-child)>.input-group-text\":false,\".input-group>.input-group-prepend>.btn\":false,\".input-group>.input-group-prepend>.input-group-text\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".input-group>.input-group-append>.btn\":false,\".input-group>.input-group-append>.input-group-text\":false,\".input-group>.input-group-prepend:first-child>.btn:not(:first-child)\":false,\".input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child)\":false,\".input-group>.input-group-prepend:not(:first-child)>.btn\":false,\".input-group>.input-group-prepend:not(:first-child)>.input-group-text\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".custom-control\":false},[\"position:relative\",\"display:block\",\"min-height:1.5rem\",\"padding-left:1.5rem\"]],[false,{\".custom-control-inline\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"margin-right:1rem\"]],[false,{\".custom-control-input\":false},[\"position:absolute\",\"z-index:-1\",\"opacity:0\"]],[false,{\".custom-control-input:checked~.custom-control-label::before\":false},[\"color:#fff\",\"background-color:#007bff\"]],[false,{\".custom-control-input:focus~.custom-control-label::before\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-control-input:active~.custom-control-label::before\":false},[\"color:#fff\",\"background-color:#b3d7ff\"]],[false,{\".custom-control-input:disabled~.custom-control-label\":false},[\"color:#6c757d\"]],[false,{\".custom-control-input:disabled~.custom-control-label::before\":false},[\"background-color:#e9ecef\"]],[false,{\".custom-control-label\":false},[\"position:relative\",\"margin-bottom:0\"]],[false,{\".custom-control-label::before\":false},[\"position:absolute\",\"top:.25rem\",\"left:-1.5rem\",\"display:block\",\"width:1rem\",\"height:1rem\",\"pointer-events:none\",\"content:\\\"\\\"\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\",\"background-color:#dee2e6\"]],[false,{\".custom-control-label::after\":false},[\"position:absolute\",\"top:.25rem\",\"left:-1.5rem\",\"display:block\",\"width:1rem\",\"height:1rem\",\"content:\\\"\\\"\",\"background-repeat:no-repeat\",\"background-position:center center\",\"background-size:50% 50%\"]],[false,{\".custom-checkbox .custom-control-label::before\":false},[\"border-radius:.25rem\"]],[false,{\".custom-checkbox .custom-control-input:checked~.custom-control-label::before\":false},[\"background-color:#007bff\"]],[false,{\".custom-checkbox .custom-control-input:checked~.custom-control-label::after\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'0 0 8 8\\\\\'%3E%3Cpath fill=\\\\\'%23fff\\\\\' d=\\\\\'M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before\":false},[\"background-color:#007bff\"]],[false,{\".custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'0 0 4 4\\\\\'%3E%3Cpath stroke=\\\\\'%23fff\\\\\' d=\\\\\'M0 2h4\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before\":false},[\"background-color:rgba(0,123,255,.5)\"]],[false,{\".custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before\":false},[\"background-color:rgba(0,123,255,.5)\"]],[false,{\".custom-radio .custom-control-label::before\":false},[\"border-radius:50%\"]],[false,{\".custom-radio .custom-control-input:checked~.custom-control-label::before\":false},[\"background-color:#007bff\"]],[false,{\".custom-radio .custom-control-input:checked~.custom-control-label::after\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'-4 -4 8 8\\\\\'%3E%3Ccircle r=\\\\\'3\\\\\' fill=\\\\\'%23fff\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".custom-radio .custom-control-input:disabled:checked~.custom-control-label::before\":false},[\"background-color:rgba(0,123,255,.5)\"]],[false,{\".custom-select\":false},[\"display:inline-block\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"padding:.375rem 1.75rem .375rem .75rem\",\"line-height:1.5\",\"color:#495057\",\"vertical-align:middle\",\"background:#fff url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'0 0 4 5\\\\\'%3E%3Cpath fill=\\\\\'%23343a40\\\\\' d=\\\\\'M2 0L0 2h4zm0 5L0 3h4z\\\\\'\\/%3E%3C\\/svg%3E\\\") no-repeat right .75rem center\",\"background-size:8px 10px\",\"border:1px solid #ced4da\",\"border-radius:.25rem\",\"-webkit-appearance:none\",\"-moz-appearance:none\",\"appearance:none\"]],[false,{\".custom-select:focus\":false},[\"border-color:#80bdff\",\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(128,189,255,.5)\"]],[false,{\".custom-select:focus::-ms-value\":false},[\"color:#495057\",\"background-color:#fff\"]],[false,{\".custom-select[multiple]\":false,\".custom-select[size]:not([size=\\\"1\\\"])\":false},[\"height:auto\",\"padding-right:.75rem\",\"background-image:none\"]],[false,{\".custom-select:disabled\":false},[\"color:#6c757d\",\"background-color:#e9ecef\"]],[false,{\".custom-select::-ms-expand\":false},[\"opacity:0\"]],[false,{\".custom-select-sm\":false},[\"height:calc(1.8125rem + 2px)\",\"padding-top:.375rem\",\"padding-bottom:.375rem\",\"font-size:75%\"]],[false,{\".custom-select-lg\":false},[\"height:calc(2.875rem + 2px)\",\"padding-top:.375rem\",\"padding-bottom:.375rem\",\"font-size:125%\"]],[false,{\".custom-file\":false},[\"position:relative\",\"display:inline-block\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"margin-bottom:0\"]],[false,{\".custom-file-input\":false},[\"position:relative\",\"z-index:2\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"margin:0\",\"opacity:0\"]],[false,{\".custom-file-input:focus~.custom-file-label\":false},[\"border-color:#80bdff\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-file-input:focus~.custom-file-label::after\":false},[\"border-color:#80bdff\"]],[false,{\".custom-file-input:disabled~.custom-file-label\":false},[\"background-color:#e9ecef\"]],[false,{\".custom-file-input:lang(en)~.custom-file-label::after\":false},[\"content:\\\"Browse\\\"\"]],[false,{\".custom-file-label\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"left:0\",\"z-index:1\",\"height:calc(2.25rem + 2px)\",\"padding:.375rem .75rem\",\"line-height:1.5\",\"color:#495057\",\"background-color:#fff\",\"border:1px solid #ced4da\",\"border-radius:.25rem\"]],[false,{\".custom-file-label::after\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"z-index:3\",\"display:block\",\"height:2.25rem\",\"padding:.375rem .75rem\",\"line-height:1.5\",\"color:#495057\",\"content:\\\"Browse\\\"\",\"background-color:#e9ecef\",\"border-left:1px solid #ced4da\",\"border-radius:0 .25rem .25rem 0\"]],[false,{\".custom-range\":false},[\"width:100%\",\"padding-left:0\",\"background-color:transparent\",\"-webkit-appearance:none\",\"-moz-appearance:none\",\"appearance:none\"]],[false,{\".custom-range:focus\":false},[\"outline:0\"]],[false,{\".custom-range:focus::-webkit-slider-thumb\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-range:focus::-moz-range-thumb\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-range:focus::-ms-thumb\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-range::-moz-focus-outer\":false},[\"border:0\"]],[false,{\".custom-range::-webkit-slider-thumb\":false},[\"width:1rem\",\"height:1rem\",\"margin-top:-.25rem\",\"background-color:#007bff\",\"border:0\",\"border-radius:1rem\",\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\",\"-webkit-appearance:none\",\"appearance:none\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-range::-webkit-slider-thumb\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".custom-range::-webkit-slider-thumb:active\":false},[\"background-color:#b3d7ff\"]],[false,{\".custom-range::-webkit-slider-runnable-track\":false},[\"width:100%\",\"height:.5rem\",\"color:transparent\",\"cursor:pointer\",\"background-color:#dee2e6\",\"border-color:transparent\",\"border-radius:1rem\"]],[false,{\".custom-range::-moz-range-thumb\":false},[\"width:1rem\",\"height:1rem\",\"background-color:#007bff\",\"border:0\",\"border-radius:1rem\",\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\",\"-moz-appearance:none\",\"appearance:none\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-range::-moz-range-thumb\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".custom-range::-moz-range-thumb:active\":false},[\"background-color:#b3d7ff\"]],[false,{\".custom-range::-moz-range-track\":false},[\"width:100%\",\"height:.5rem\",\"color:transparent\",\"cursor:pointer\",\"background-color:#dee2e6\",\"border-color:transparent\",\"border-radius:1rem\"]],[false,{\".custom-range::-ms-thumb\":false},[\"width:1rem\",\"height:1rem\",\"margin-top:0\",\"margin-right:.2rem\",\"margin-left:.2rem\",\"background-color:#007bff\",\"border:0\",\"border-radius:1rem\",\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\",\"appearance:none\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-range::-ms-thumb\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".custom-range::-ms-thumb:active\":false},[\"background-color:#b3d7ff\"]],[false,{\".custom-range::-ms-track\":false},[\"width:100%\",\"height:.5rem\",\"color:transparent\",\"cursor:pointer\",\"background-color:transparent\",\"border-color:transparent\",\"border-width:.5rem\"]],[false,{\".custom-range::-ms-fill-lower\":false},[\"background-color:#dee2e6\",\"border-radius:1rem\"]],[false,{\".custom-range::-ms-fill-upper\":false},[\"margin-right:15px\",\"background-color:#dee2e6\",\"border-radius:1rem\"]],[false,{\".custom-control-label::before\":false,\".custom-file-label\":false,\".custom-select\":false},[\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-control-label::before\":false,\".custom-file-label\":false,\".custom-select\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".nav\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"padding-left:0\",\"margin-bottom:0\",\"list-style:none\"]],[true,{\".nav-link\":true},[\"display:block\",\"padding:.5rem 1rem\"]],[true,{\".nav-link:focus\":true,\".nav-link:hover\":true},[\"text-decoration:none\"]],[false,{\".nav-link.disabled\":false},[\"color:#6c757d\"]],[false,{\".nav-tabs\":false},[\"border-bottom:1px solid #dee2e6\"]],[false,{\".nav-tabs .nav-item\":false},[\"margin-bottom:-1px\"]],[false,{\".nav-tabs .nav-link\":false},[\"border:1px solid transparent\",\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".nav-tabs .nav-link:focus\":false,\".nav-tabs .nav-link:hover\":false},[\"border-color:#e9ecef #e9ecef #dee2e6\"]],[false,{\".nav-tabs .nav-link.disabled\":false},[\"color:#6c757d\",\"background-color:transparent\",\"border-color:transparent\"]],[false,{\".nav-tabs .nav-item.show .nav-link\":false,\".nav-tabs .nav-link.active\":false},[\"color:#495057\",\"background-color:#fff\",\"border-color:#dee2e6 #dee2e6 #fff\"]],[false,{\".nav-tabs .dropdown-menu\":false},[\"margin-top:-1px\",\"border-top-left-radius:0\",\"border-top-right-radius:0\"]],[false,{\".nav-pills .nav-link\":false},[\"border-radius:.25rem\"]],[false,{\".nav-pills .nav-link.active\":false,\".nav-pills .show>.nav-link\":false},[\"color:#fff\",\"background-color:#007bff\"]],[false,{\".nav-fill .nav-item\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"text-align:center\"]],[false,{\".nav-justified .nav-item\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"text-align:center\"]],[false,{\".tab-content>.tab-pane\":false},[\"display:none\"]],[false,{\".tab-content>.active\":false},[\"display:block\"]],[true,{\".navbar\":true},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"padding:.5rem 1rem\"]],[true,{\".navbar>.container\":true,\".navbar>.container-fluid\":true},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".navbar-brand\":false},[\"display:inline-block\",\"padding-top:.3125rem\",\"padding-bottom:.3125rem\",\"margin-right:1rem\",\"font-size:1.25rem\",\"line-height:inherit\",\"white-space:nowrap\"]],[false,{\".navbar-brand:focus\":false,\".navbar-brand:hover\":false},[\"text-decoration:none\"]],[true,{\".navbar-nav\":true},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"padding-left:0\",\"margin-bottom:0\",\"list-style:none\"]],[true,{\".navbar-nav .nav-link\":true},[\"padding-right:0\",\"padding-left:0\"]],[true,{\".navbar-nav .dropdown-menu\":true},[\"position:static\",\"float:none\"]],[false,{\".navbar-text\":false},[\"display:inline-block\",\"padding-top:.5rem\",\"padding-bottom:.5rem\"]],[true,{\".navbar-collapse\":true},[\"-ms-flex-preferred-size:100%\",\"flex-basis:100%\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"-ms-flex-align:center\",\"align-items:center\"]],[true,{\".navbar-toggler\":true},[\"padding:.25rem .75rem\",\"font-size:1.25rem\",\"line-height:1\",\"background-color:transparent\",\"border:1px solid transparent\",\"border-radius:.25rem\"]],[true,{\".navbar-toggler:focus\":true,\".navbar-toggler:hover\":true},[\"text-decoration:none\"]],[true,{\".navbar-toggler:not(:disabled):not(.disabled)\":true},[\"cursor:pointer\"]],[false,{\".navbar-toggler-icon\":false},[\"display:inline-block\",\"width:1.5em\",\"height:1.5em\",\"vertical-align:middle\",\"content:\\\"\\\"\",\"background:no-repeat center center\",\"background-size:100% 100%\"]],[false,\"@media (max-width:575.98px){\"],[false,{\".navbar-expand-sm>.container\":false,\".navbar-expand-sm>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,\"}\"],[false,\"@media (min-width:576px){\"],[false,{\".navbar-expand-sm\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand-sm .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand-sm .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand-sm .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand-sm>.container\":false,\".navbar-expand-sm>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand-sm .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand-sm .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand-sm .navbar-toggler\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (max-width:767.98px){\"],[false,{\".navbar-expand-md>.container\":false,\".navbar-expand-md>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".navbar-expand-md\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand-md .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand-md .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand-md .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand-md>.container\":false,\".navbar-expand-md>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand-md .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand-md .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand-md .navbar-toggler\":false},[\"display:none\"]],[false,\"}\"],[true,\"@media (max-width:991.98px){\"],[true,{\".navbar-expand-lg>.container\":true,\".navbar-expand-lg>.container-fluid\":true},[\"padding-right:0\",\"padding-left:0\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[true,{\".navbar-expand-lg\":true},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[true,{\".navbar-expand-lg .navbar-nav\":true},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[true,{\".navbar-expand-lg .navbar-nav .dropdown-menu\":true},[\"position:absolute\"]],[true,{\".navbar-expand-lg .navbar-nav .nav-link\":true},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[true,{\".navbar-expand-lg>.container\":true,\".navbar-expand-lg>.container-fluid\":true},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[true,{\".navbar-expand-lg .navbar-collapse\":true},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[true,{\".navbar-expand-lg .navbar-collapse:not(#_#_#_#_#_#_#_)\":true},[\"display:-ms-flexbox\",\"display:flex\"]],[true,{\".navbar-expand-lg .navbar-toggler\":true},[\"display:none\"]],[true,\"}\"],[false,\"@media (max-width:1199.98px){\"],[false,{\".navbar-expand-xl>.container\":false,\".navbar-expand-xl>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".navbar-expand-xl\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand-xl .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand-xl .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand-xl .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand-xl>.container\":false,\".navbar-expand-xl>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand-xl .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand-xl .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand-xl .navbar-toggler\":false},[\"display:none\"]],[false,\"}\"],[false,{\".navbar-expand\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand>.container\":false,\".navbar-expand>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,{\".navbar-expand .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand>.container\":false,\".navbar-expand>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand .navbar-toggler\":false},[\"display:none\"]],[false,{\".navbar-light .navbar-brand\":false},[\"color:rgba(0,0,0,.9)\"]],[false,{\".navbar-light .navbar-brand:focus\":false,\".navbar-light .navbar-brand:hover\":false},[\"color:rgba(0,0,0,.9)\"]],[true,{\".navbar-light .navbar-nav .nav-link\":true},[\"color:rgba(0,0,0,.5)\"]],[true,{\".navbar-light .navbar-nav .nav-link:focus\":true,\".navbar-light .navbar-nav .nav-link:hover\":true},[\"color:rgba(0,0,0,.7)\"]],[false,{\".navbar-light .navbar-nav .nav-link.disabled\":false},[\"color:rgba(0,0,0,.3)\"]],[false,{\".navbar-light .navbar-nav .active>.nav-link\":false,\".navbar-light .navbar-nav .nav-link.active\":false,\".navbar-light .navbar-nav .nav-link.show\":false,\".navbar-light .navbar-nav .show>.nav-link\":false},[\"color:rgba(0,0,0,.9)\"]],[true,{\".navbar-light .navbar-toggler\":true},[\"color:rgba(0,0,0,.5)\",\"border-color:rgba(0,0,0,.1)\"]],[false,{\".navbar-light .navbar-toggler-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg viewBox=\\\\\'0 0 30 30\\\\\' xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\'%3E%3Cpath stroke=\\\\\'rgba(0, 0, 0, 0.5)\\\\\' stroke-width=\\\\\'2\\\\\' stroke-linecap=\\\\\'round\\\\\' stroke-miterlimit=\\\\\'10\\\\\' d=\\\\\'M4 7h22M4 15h22M4 23h22\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".navbar-light .navbar-text\":false},[\"color:rgba(0,0,0,.5)\"]],[false,{\".navbar-light .navbar-text a\":false},[\"color:rgba(0,0,0,.9)\"]],[false,{\".navbar-light .navbar-text a:focus\":false,\".navbar-light .navbar-text a:hover\":false},[\"color:rgba(0,0,0,.9)\"]],[false,{\".navbar-dark .navbar-brand\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-brand:focus\":false,\".navbar-dark .navbar-brand:hover\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-nav .nav-link\":false},[\"color:rgba(255,255,255,.5)\"]],[false,{\".navbar-dark .navbar-nav .nav-link:focus\":false,\".navbar-dark .navbar-nav .nav-link:hover\":false},[\"color:rgba(255,255,255,.75)\"]],[false,{\".navbar-dark .navbar-nav .nav-link.disabled\":false},[\"color:rgba(255,255,255,.25)\"]],[false,{\".navbar-dark .navbar-nav .active>.nav-link\":false,\".navbar-dark .navbar-nav .nav-link.active\":false,\".navbar-dark .navbar-nav .nav-link.show\":false,\".navbar-dark .navbar-nav .show>.nav-link\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-toggler\":false},[\"color:rgba(255,255,255,.5)\",\"border-color:rgba(255,255,255,.1)\"]],[false,{\".navbar-dark .navbar-toggler-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg viewBox=\\\\\'0 0 30 30\\\\\' xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\'%3E%3Cpath stroke=\\\\\'rgba(255, 255, 255, 0.5)\\\\\' stroke-width=\\\\\'2\\\\\' stroke-linecap=\\\\\'round\\\\\' stroke-miterlimit=\\\\\'10\\\\\' d=\\\\\'M4 7h22M4 15h22M4 23h22\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".navbar-dark .navbar-text\":false},[\"color:rgba(255,255,255,.5)\"]],[false,{\".navbar-dark .navbar-text a\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-text a:focus\":false,\".navbar-dark .navbar-text a:hover\":false},[\"color:#fff\"]],[false,{\".card\":false},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"min-width:0\",\"word-wrap:break-word\",\"background-color:#fff\",\"background-clip:border-box\",\"border:1px solid rgba(0,0,0,.125)\",\"border-radius:.25rem\"]],[false,{\".card>hr\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".card>.list-group:first-child .list-group-item:first-child\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".card>.list-group:last-child .list-group-item:last-child\":false},[\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".card-body\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"padding:1.25rem\"]],[false,{\".card-title\":false},[\"margin-bottom:.75rem\"]],[false,{\".card-subtitle\":false},[\"margin-top:-.375rem\",\"margin-bottom:0\"]],[false,{\".card-text:last-child\":false},[\"margin-bottom:0\"]],[false,{\".card-link:hover\":false},[\"text-decoration:none\"]],[false,{\".card-link+.card-link\":false},[\"margin-left:1.25rem\"]],[false,{\".card-header\":false},[\"padding:.75rem 1.25rem\",\"margin-bottom:0\",\"background-color:rgba(0,0,0,.03)\",\"border-bottom:1px solid rgba(0,0,0,.125)\"]],[false,{\".card-header:first-child\":false},[\"border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0\"]],[false,{\".card-header+.list-group .list-group-item:first-child\":false},[\"border-top:0\"]],[false,{\".card-footer\":false},[\"padding:.75rem 1.25rem\",\"background-color:rgba(0,0,0,.03)\",\"border-top:1px solid rgba(0,0,0,.125)\"]],[false,{\".card-footer:last-child\":false},[\"border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)\"]],[false,{\".card-header-tabs\":false},[\"margin-right:-.625rem\",\"margin-bottom:-.75rem\",\"margin-left:-.625rem\",\"border-bottom:0\"]],[false,{\".card-header-pills\":false},[\"margin-right:-.625rem\",\"margin-left:-.625rem\"]],[false,{\".card-img-overlay\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"padding:1.25rem\"]],[false,{\".card-img\":false},[\"width:100%\",\"border-radius:calc(.25rem - 1px)\"]],[false,{\".card-img-top\":false},[\"width:100%\",\"border-top-left-radius:calc(.25rem - 1px)\",\"border-top-right-radius:calc(.25rem - 1px)\"]],[false,{\".card-img-bottom\":false},[\"width:100%\",\"border-bottom-right-radius:calc(.25rem - 1px)\",\"border-bottom-left-radius:calc(.25rem - 1px)\"]],[false,{\".card-deck\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".card-deck .card\":false},[\"margin-bottom:15px\"]],[false,\"@media (min-width:576px){\"],[false,{\".card-deck\":false},[\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\",\"margin-right:-15px\",\"margin-left:-15px\"]],[false,{\".card-deck .card\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex:1 0 0%\",\"flex:1 0 0%\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"margin-right:15px\",\"margin-bottom:0\",\"margin-left:15px\"]],[false,\"}\"],[false,{\".card-group\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".card-group>.card\":false},[\"margin-bottom:15px\"]],[false,\"@media (min-width:576px){\"],[false,{\".card-group\":false},[\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\"]],[false,{\".card-group>.card\":false},[\"-ms-flex:1 0 0%\",\"flex:1 0 0%\",\"margin-bottom:0\"]],[false,{\".card-group>.card+.card\":false},[\"margin-left:0\",\"border-left:0\"]],[false,{\".card-group>.card:first-child\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".card-group>.card:first-child .card-header\":false,\".card-group>.card:first-child .card-img-top\":false},[\"border-top-right-radius:0\"]],[false,{\".card-group>.card:first-child .card-footer\":false,\".card-group>.card:first-child .card-img-bottom\":false},[\"border-bottom-right-radius:0\"]],[false,{\".card-group>.card:last-child\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".card-group>.card:last-child .card-header\":false,\".card-group>.card:last-child .card-img-top\":false},[\"border-top-left-radius:0\"]],[false,{\".card-group>.card:last-child .card-footer\":false,\".card-group>.card:last-child .card-img-bottom\":false},[\"border-bottom-left-radius:0\"]],[false,{\".card-group>.card:only-child\":false},[\"border-radius:.25rem\"]],[false,{\".card-group>.card:only-child .card-header\":false,\".card-group>.card:only-child .card-img-top\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".card-group>.card:only-child .card-footer\":false,\".card-group>.card:only-child .card-img-bottom\":false},[\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".card-group>.card:not(:first-child):not(:last-child):not(:only-child)\":false},[\"border-radius:0\"]],[false,{\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer\":false,\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header\":false,\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom\":false,\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top\":false},[\"border-radius:0\"]],[false,\"}\"],[false,{\".card-columns .card\":false},[\"margin-bottom:.75rem\"]],[false,\"@media (min-width:576px){\"],[false,{\".card-columns\":false},[\"-webkit-column-count:3\",\"-moz-column-count:3\",\"column-count:3\",\"-webkit-column-gap:1.25rem\",\"-moz-column-gap:1.25rem\",\"column-gap:1.25rem\",\"orphans:1\",\"widows:1\"]],[false,{\".card-columns .card\":false},[\"display:inline-block\",\"width:100%\"]],[false,\"}\"],[false,{\".accordion .card:not(:first-of-type):not(:last-of-type)\":false},[\"border-bottom:0\",\"border-radius:0\"]],[false,{\".accordion .card:not(:first-of-type) .card-header:first-child\":false},[\"border-radius:0\"]],[false,{\".accordion .card:first-of-type\":false},[\"border-bottom:0\",\"border-bottom-right-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".accordion .card:last-of-type\":false},[\"border-top-left-radius:0\",\"border-top-right-radius:0\"]],[false,{\".breadcrumb\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"padding:.75rem 1rem\",\"margin-bottom:1rem\",\"list-style:none\",\"background-color:#e9ecef\",\"border-radius:.25rem\"]],[false,{\".breadcrumb-item+.breadcrumb-item\":false},[\"padding-left:.5rem\"]],[false,{\".breadcrumb-item+.breadcrumb-item::before\":false},[\"display:inline-block\",\"padding-right:.5rem\",\"color:#6c757d\",\"content:\\\"\\/\\\"\"]],[false,{\".breadcrumb-item+.breadcrumb-item:hover::before\":false},[\"text-decoration:underline\"]],[false,{\".breadcrumb-item+.breadcrumb-item:hover::before\":false},[\"text-decoration:none\"]],[false,{\".breadcrumb-item.active\":false},[\"color:#6c757d\"]],[true,{\".pagination\":true},[\"display:-ms-flexbox\",\"display:flex\",\"padding-left:0\",\"list-style:none\",\"border-radius:.25rem\"]],[false,{\".page-link\":false},[\"position:relative\",\"display:block\",\"padding:.5rem .75rem\",\"margin-left:-1px\",\"line-height:1.25\",\"color:#007bff\",\"background-color:#fff\",\"border:1px solid #dee2e6\"]],[false,{\".page-link:hover\":false},[\"z-index:2\",\"color:#0056b3\",\"text-decoration:none\",\"background-color:#e9ecef\",\"border-color:#dee2e6\"]],[false,{\".page-link:focus\":false},[\"z-index:2\",\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".page-link:not(:disabled):not(.disabled)\":false},[\"cursor:pointer\"]],[false,{\".page-item:first-child .page-link\":false},[\"margin-left:0\",\"border-top-left-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".page-item:last-child .page-link\":false},[\"border-top-right-radius:.25rem\",\"border-bottom-right-radius:.25rem\"]],[false,{\".page-item.active .page-link\":false},[\"z-index:1\",\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".page-item.disabled .page-link\":false},[\"color:#6c757d\",\"pointer-events:none\",\"cursor:auto\",\"background-color:#fff\",\"border-color:#dee2e6\"]],[false,{\".pagination-lg .page-link\":false},[\"padding:.75rem 1.5rem\",\"font-size:1.25rem\",\"line-height:1.5\"]],[false,{\".pagination-lg .page-item:first-child .page-link\":false},[\"border-top-left-radius:.3rem\",\"border-bottom-left-radius:.3rem\"]],[false,{\".pagination-lg .page-item:last-child .page-link\":false},[\"border-top-right-radius:.3rem\",\"border-bottom-right-radius:.3rem\"]],[false,{\".pagination-sm .page-link\":false},[\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\"]],[false,{\".pagination-sm .page-item:first-child .page-link\":false},[\"border-top-left-radius:.2rem\",\"border-bottom-left-radius:.2rem\"]],[false,{\".pagination-sm .page-item:last-child .page-link\":false},[\"border-top-right-radius:.2rem\",\"border-bottom-right-radius:.2rem\"]],[false,{\".badge\":false},[\"display:inline-block\",\"padding:.25em .4em\",\"font-size:75%\",\"font-weight:700\",\"line-height:1\",\"text-align:center\",\"white-space:nowrap\",\"vertical-align:baseline\",\"border-radius:.25rem\"]],[false,{\".badge:empty\":false},[\"display:none\"]],[false,{\".btn .badge\":false},[\"position:relative\",\"top:-1px\"]],[false,{\".badge-pill\":false},[\"padding-right:.6em\",\"padding-left:.6em\",\"border-radius:10rem\"]],[false,{\".badge-primary\":false},[\"color:#fff\",\"background-color:#007bff\"]],[false,{\".badge-primary[href]:focus\":false,\".badge-primary[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#0062cc\"]],[false,{\".badge-secondary\":false},[\"color:#fff\",\"background-color:#6c757d\"]],[false,{\".badge-secondary[href]:focus\":false,\".badge-secondary[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#545b62\"]],[false,{\".badge-success\":false},[\"color:#fff\",\"background-color:#28a745\"]],[false,{\".badge-success[href]:focus\":false,\".badge-success[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#1e7e34\"]],[false,{\".badge-info\":false},[\"color:#fff\",\"background-color:#17a2b8\"]],[false,{\".badge-info[href]:focus\":false,\".badge-info[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#117a8b\"]],[false,{\".badge-warning\":false},[\"color:#212529\",\"background-color:#ffc107\"]],[false,{\".badge-warning[href]:focus\":false,\".badge-warning[href]:hover\":false},[\"color:#212529\",\"text-decoration:none\",\"background-color:#d39e00\"]],[false,{\".badge-danger\":false},[\"color:#fff\",\"background-color:#dc3545\"]],[false,{\".badge-danger[href]:focus\":false,\".badge-danger[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#bd2130\"]],[false,{\".badge-light\":false},[\"color:#212529\",\"background-color:#f8f9fa\"]],[false,{\".badge-light[href]:focus\":false,\".badge-light[href]:hover\":false},[\"color:#212529\",\"text-decoration:none\",\"background-color:#dae0e5\"]],[false,{\".badge-dark\":false},[\"color:#fff\",\"background-color:#343a40\"]],[false,{\".badge-dark[href]:focus\":false,\".badge-dark[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#1d2124\"]],[false,{\".jumbotron\":false},[\"padding:2rem 1rem\",\"margin-bottom:2rem\",\"background-color:#e9ecef\",\"border-radius:.3rem\"]],[false,\"@media (min-width:576px){\"],[false,{\".jumbotron\":false},[\"padding:4rem 2rem\"]],[false,\"}\"],[false,{\".jumbotron-fluid\":false},[\"padding-right:0\",\"padding-left:0\",\"border-radius:0\"]],[false,{\".alert\":false},[\"position:relative\",\"padding:.75rem 1.25rem\",\"margin-bottom:1rem\",\"border:1px solid transparent\",\"border-radius:.25rem\"]],[false,{\".alert-heading\":false},[\"color:inherit\"]],[false,{\".alert-link\":false},[\"font-weight:700\"]],[false,{\".alert-dismissible\":false},[\"padding-right:4rem\"]],[false,{\".alert-dismissible .close\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"padding:.75rem 1.25rem\",\"color:inherit\"]],[false,{\".alert-primary\":false},[\"color:#004085\",\"background-color:#cce5ff\",\"border-color:#b8daff\"]],[false,{\".alert-primary hr\":false},[\"border-top-color:#9fcdff\"]],[false,{\".alert-primary .alert-link\":false},[\"color:#002752\"]],[false,{\".alert-secondary\":false},[\"color:#383d41\",\"background-color:#e2e3e5\",\"border-color:#d6d8db\"]],[false,{\".alert-secondary hr\":false},[\"border-top-color:#c8cbcf\"]],[false,{\".alert-secondary .alert-link\":false},[\"color:#202326\"]],[false,{\".alert-success\":false},[\"color:#155724\",\"background-color:#d4edda\",\"border-color:#c3e6cb\"]],[false,{\".alert-success hr\":false},[\"border-top-color:#b1dfbb\"]],[false,{\".alert-success .alert-link\":false},[\"color:#0b2e13\"]],[false,{\".alert-info\":false},[\"color:#0c5460\",\"background-color:#d1ecf1\",\"border-color:#bee5eb\"]],[false,{\".alert-info hr\":false},[\"border-top-color:#abdde5\"]],[false,{\".alert-info .alert-link\":false},[\"color:#062c33\"]],[false,{\".alert-warning\":false},[\"color:#856404\",\"background-color:#fff3cd\",\"border-color:#ffeeba\"]],[false,{\".alert-warning hr\":false},[\"border-top-color:#ffe8a1\"]],[false,{\".alert-warning .alert-link\":false},[\"color:#533f03\"]],[false,{\".alert-danger\":false},[\"color:#721c24\",\"background-color:#f8d7da\",\"border-color:#f5c6cb\"]],[false,{\".alert-danger hr\":false},[\"border-top-color:#f1b0b7\"]],[false,{\".alert-danger .alert-link\":false},[\"color:#491217\"]],[false,{\".alert-light\":false},[\"color:#818182\",\"background-color:#fefefe\",\"border-color:#fdfdfe\"]],[false,{\".alert-light hr\":false},[\"border-top-color:#ececf6\"]],[false,{\".alert-light .alert-link\":false},[\"color:#686868\"]],[false,{\".alert-dark\":false},[\"color:#1b1e21\",\"background-color:#d6d8d9\",\"border-color:#c6c8ca\"]],[false,{\".alert-dark hr\":false},[\"border-top-color:#b9bbbe\"]],[false,{\".alert-dark .alert-link\":false},[\"color:#040505\"]],[true,\"@-webkit-keyframes progress-bar-stripes{\"],[true,\"from{background-position:1rem 0}\"],[true,\"to{background-position:0 0}\"],[true,\"}@keyframes progress-bar-stripes{\"],[true,\"from{background-position:1rem 0}\"],[true,\"to{background-position:0 0}\"],[true,\"}\"],[false,{\".progress\":false},[\"display:-ms-flexbox\",\"display:flex\",\"height:1rem\",\"overflow:hidden\",\"font-size:.75rem\",\"background-color:#e9ecef\",\"border-radius:.25rem\"]],[false,{\".progress-bar\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"-ms-flex-pack:center\",\"justify-content:center\",\"color:#fff\",\"text-align:center\",\"white-space:nowrap\",\"background-color:#007bff\",\"transition:width .6s ease\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".progress-bar\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".progress-bar-striped\":false},[\"background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)\",\"background-size:1rem 1rem\"]],[false,{\".progress-bar-animated\":false},[\"-webkit-animation:progress-bar-stripes 1s linear infinite\",\"animation:progress-bar-stripes 1s linear infinite\"]],[false,{\".media\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".media-body\":false},[\"-ms-flex:1\",\"flex:1\"]],[false,{\".list-group\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"padding-left:0\",\"margin-bottom:0\"]],[false,{\".list-group-item-action\":false},[\"width:100%\",\"color:#495057\",\"text-align:inherit\"]],[false,{\".list-group-item-action:focus\":false,\".list-group-item-action:hover\":false},[\"color:#495057\",\"text-decoration:none\",\"background-color:#f8f9fa\"]],[false,{\".list-group-item-action:active\":false},[\"color:#212529\",\"background-color:#e9ecef\"]],[false,{\".list-group-item\":false},[\"position:relative\",\"display:block\",\"padding:.75rem 1.25rem\",\"margin-bottom:-1px\",\"background-color:#fff\",\"border:1px solid rgba(0,0,0,.125)\"]],[false,{\".list-group-item:first-child\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".list-group-item:last-child\":false},[\"margin-bottom:0\",\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".list-group-item:focus\":false,\".list-group-item:hover\":false},[\"z-index:1\",\"text-decoration:none\"]],[false,{\".list-group-item.disabled\":false,\".list-group-item:disabled\":false},[\"color:#6c757d\",\"background-color:#fff\"]],[false,{\".list-group-item.active\":false},[\"z-index:2\",\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".list-group-flush .list-group-item\":false},[\"border-right:0\",\"border-left:0\",\"border-radius:0\"]],[false,{\".list-group-flush:first-child .list-group-item:first-child\":false},[\"border-top:0\"]],[false,{\".list-group-flush:last-child .list-group-item:last-child\":false},[\"border-bottom:0\"]],[false,{\".list-group-item-primary\":false},[\"color:#004085\",\"background-color:#b8daff\"]],[false,{\".list-group-item-primary.list-group-item-action:focus\":false,\".list-group-item-primary.list-group-item-action:hover\":false},[\"color:#004085\",\"background-color:#9fcdff\"]],[false,{\".list-group-item-primary.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#004085\",\"border-color:#004085\"]],[false,{\".list-group-item-secondary\":false},[\"color:#383d41\",\"background-color:#d6d8db\"]],[false,{\".list-group-item-secondary.list-group-item-action:focus\":false,\".list-group-item-secondary.list-group-item-action:hover\":false},[\"color:#383d41\",\"background-color:#c8cbcf\"]],[false,{\".list-group-item-secondary.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#383d41\",\"border-color:#383d41\"]],[false,{\".list-group-item-success\":false},[\"color:#155724\",\"background-color:#c3e6cb\"]],[false,{\".list-group-item-success.list-group-item-action:focus\":false,\".list-group-item-success.list-group-item-action:hover\":false},[\"color:#155724\",\"background-color:#b1dfbb\"]],[false,{\".list-group-item-success.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#155724\",\"border-color:#155724\"]],[false,{\".list-group-item-info\":false},[\"color:#0c5460\",\"background-color:#bee5eb\"]],[false,{\".list-group-item-info.list-group-item-action:focus\":false,\".list-group-item-info.list-group-item-action:hover\":false},[\"color:#0c5460\",\"background-color:#abdde5\"]],[false,{\".list-group-item-info.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#0c5460\",\"border-color:#0c5460\"]],[false,{\".list-group-item-warning\":false},[\"color:#856404\",\"background-color:#ffeeba\"]],[false,{\".list-group-item-warning.list-group-item-action:focus\":false,\".list-group-item-warning.list-group-item-action:hover\":false},[\"color:#856404\",\"background-color:#ffe8a1\"]],[false,{\".list-group-item-warning.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#856404\",\"border-color:#856404\"]],[false,{\".list-group-item-danger\":false},[\"color:#721c24\",\"background-color:#f5c6cb\"]],[false,{\".list-group-item-danger.list-group-item-action:focus\":false,\".list-group-item-danger.list-group-item-action:hover\":false},[\"color:#721c24\",\"background-color:#f1b0b7\"]],[false,{\".list-group-item-danger.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#721c24\",\"border-color:#721c24\"]],[false,{\".list-group-item-light\":false},[\"color:#818182\",\"background-color:#fdfdfe\"]],[false,{\".list-group-item-light.list-group-item-action:focus\":false,\".list-group-item-light.list-group-item-action:hover\":false},[\"color:#818182\",\"background-color:#ececf6\"]],[false,{\".list-group-item-light.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#818182\",\"border-color:#818182\"]],[false,{\".list-group-item-dark\":false},[\"color:#1b1e21\",\"background-color:#c6c8ca\"]],[false,{\".list-group-item-dark.list-group-item-action:focus\":false,\".list-group-item-dark.list-group-item-action:hover\":false},[\"color:#1b1e21\",\"background-color:#b9bbbe\"]],[false,{\".list-group-item-dark.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#1b1e21\",\"border-color:#1b1e21\"]],[false,{\".close\":false},[\"float:right\",\"font-size:1.5rem\",\"font-weight:700\",\"line-height:1\",\"color:#000\",\"text-shadow:0 1px 0 #fff\",\"opacity:.5\"]],[false,{\".close:not(:disabled):not(.disabled)\":false},[\"cursor:pointer\"]],[false,{\".close:not(:disabled):not(.disabled):focus\":false,\".close:not(:disabled):not(.disabled):hover\":false},[\"color:#000\",\"text-decoration:none\",\"opacity:.75\"]],[false,{\"button.close\":false},[\"padding:0\",\"background-color:transparent\",\"border:0\",\"-webkit-appearance:none\"]],[false,{\".modal-open\":false},[\"overflow:hidden\"]],[false,{\".modal-open .modal\":false},[\"overflow-x:hidden\",\"overflow-y:auto\"]],[false,{\".modal\":false},[\"position:fixed\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"z-index:1050\",\"display:none\",\"overflow:hidden\",\"outline:0\"]],[false,{\".modal-dialog\":false},[\"position:relative\",\"width:auto\",\"margin:.5rem\",\"pointer-events:none\"]],[false,{\".modal.fade .modal-dialog\":false},[\"transition:-webkit-transform .3s ease-out\",\"transition:transform .3s ease-out\",\"transition:transform .3s ease-out,-webkit-transform .3s ease-out\",\"-webkit-transform:translate(0,-25%)\",\"transform:translate(0,-25%)\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".modal.fade .modal-dialog\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".modal.show .modal-dialog\":false},[\"-webkit-transform:translate(0,0)\",\"transform:translate(0,0)\"]],[false,{\".modal-dialog-centered\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"min-height:calc(100% - ( .5rem * 2 ))\"]],[false,{\".modal-dialog-centered::before\":false},[\"display:block\",\"height:calc(100vh - ( .5rem * 2 ))\",\"content:\\\"\\\"\"]],[false,{\".modal-content\":false},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"width:100%\",\"pointer-events:auto\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid rgba(0,0,0,.2)\",\"border-radius:.3rem\",\"outline:0\"]],[false,{\".modal-backdrop\":false},[\"position:fixed\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"z-index:1040\",\"background-color:#000\"]],[false,{\".modal-backdrop.fade\":false},[\"opacity:0\"]],[false,{\".modal-backdrop.show\":false},[\"opacity:.5\"]],[false,{\".modal-header\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:start\",\"align-items:flex-start\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"padding:1rem\",\"border-bottom:1px solid #e9ecef\",\"border-top-left-radius:.3rem\",\"border-top-right-radius:.3rem\"]],[false,{\".modal-header .close\":false},[\"padding:1rem\",\"margin:-1rem -1rem -1rem auto\"]],[false,{\".modal-title\":false},[\"margin-bottom:0\",\"line-height:1.5\"]],[false,{\".modal-body\":false},[\"position:relative\",\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"padding:1rem\"]],[false,{\".modal-footer\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:end\",\"justify-content:flex-end\",\"padding:1rem\",\"border-top:1px solid #e9ecef\"]],[false,{\".modal-footer>:not(:first-child)\":false},[\"margin-left:.25rem\"]],[false,{\".modal-footer>:not(:last-child)\":false},[\"margin-right:.25rem\"]],[false,{\".modal-scrollbar-measure\":false},[\"position:absolute\",\"top:-9999px\",\"width:50px\",\"height:50px\",\"overflow:scroll\"]],[false,\"@media (min-width:576px){\"],[false,{\".modal-dialog\":false},[\"max-width:500px\",\"margin:1.75rem auto\"]],[false,{\".modal-dialog-centered\":false},[\"min-height:calc(100% - ( 1.75rem * 2 ))\"]],[false,{\".modal-dialog-centered::before\":false},[\"height:calc(100vh - ( 1.75rem * 2 ))\"]],[false,{\".modal-sm\":false},[\"max-width:300px\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".modal-lg\":false},[\"max-width:800px\"]],[false,\"}\"],[false,{\".tooltip\":false},[\"position:absolute\",\"z-index:1070\",\"display:block\",\"margin:0\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"font-style:normal\",\"font-weight:400\",\"line-height:1.5\",\"text-align:left\",\"text-align:start\",\"text-decoration:none\",\"text-shadow:none\",\"text-transform:none\",\"letter-spacing:normal\",\"word-break:normal\",\"word-spacing:normal\",\"white-space:normal\",\"line-break:auto\",\"font-size:.875rem\",\"word-wrap:break-word\",\"opacity:0\"]],[false,{\".tooltip.show\":false},[\"opacity:.9\"]],[false,{\".tooltip .arrow\":false},[\"position:absolute\",\"display:block\",\"width:.8rem\",\"height:.4rem\"]],[false,{\".tooltip .arrow::before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"border-color:transparent\",\"border-style:solid\"]],[false,{\".bs-tooltip-auto[x-placement^=top]\":false,\".bs-tooltip-top\":false},[\"padding:.4rem 0\"]],[false,{\".bs-tooltip-auto[x-placement^=top] .arrow\":false,\".bs-tooltip-top .arrow\":false},[\"bottom:0\"]],[false,{\".bs-tooltip-auto[x-placement^=top] .arrow::before\":false,\".bs-tooltip-top .arrow::before\":false},[\"top:0\",\"border-width:.4rem .4rem 0\",\"border-top-color:#000\"]],[false,{\".bs-tooltip-auto[x-placement^=right]\":false,\".bs-tooltip-right\":false},[\"padding:0 .4rem\"]],[false,{\".bs-tooltip-auto[x-placement^=right] .arrow\":false,\".bs-tooltip-right .arrow\":false},[\"left:0\",\"width:.4rem\",\"height:.8rem\"]],[false,{\".bs-tooltip-auto[x-placement^=right] .arrow::before\":false,\".bs-tooltip-right .arrow::before\":false},[\"right:0\",\"border-width:.4rem .4rem .4rem 0\",\"border-right-color:#000\"]],[false,{\".bs-tooltip-auto[x-placement^=bottom]\":false,\".bs-tooltip-bottom\":false},[\"padding:.4rem 0\"]],[false,{\".bs-tooltip-auto[x-placement^=bottom] .arrow\":false,\".bs-tooltip-bottom .arrow\":false},[\"top:0\"]],[false,{\".bs-tooltip-auto[x-placement^=bottom] .arrow::before\":false,\".bs-tooltip-bottom .arrow::before\":false},[\"bottom:0\",\"border-width:0 .4rem .4rem\",\"border-bottom-color:#000\"]],[false,{\".bs-tooltip-auto[x-placement^=left]\":false,\".bs-tooltip-left\":false},[\"padding:0 .4rem\"]],[false,{\".bs-tooltip-auto[x-placement^=left] .arrow\":false,\".bs-tooltip-left .arrow\":false},[\"right:0\",\"width:.4rem\",\"height:.8rem\"]],[false,{\".bs-tooltip-auto[x-placement^=left] .arrow::before\":false,\".bs-tooltip-left .arrow::before\":false},[\"left:0\",\"border-width:.4rem 0 .4rem .4rem\",\"border-left-color:#000\"]],[false,{\".tooltip-inner\":false},[\"max-width:200px\",\"padding:.25rem .5rem\",\"color:#fff\",\"text-align:center\",\"background-color:#000\",\"border-radius:.25rem\"]],[false,{\".popover\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"z-index:1060\",\"display:block\",\"max-width:276px\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"font-style:normal\",\"font-weight:400\",\"line-height:1.5\",\"text-align:left\",\"text-align:start\",\"text-decoration:none\",\"text-shadow:none\",\"text-transform:none\",\"letter-spacing:normal\",\"word-break:normal\",\"word-spacing:normal\",\"white-space:normal\",\"line-break:auto\",\"font-size:.875rem\",\"word-wrap:break-word\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid rgba(0,0,0,.2)\",\"border-radius:.3rem\"]],[false,{\".popover .arrow\":false},[\"position:absolute\",\"display:block\",\"width:1rem\",\"height:.5rem\",\"margin:0 .3rem\"]],[false,{\".popover .arrow::after\":false,\".popover .arrow::before\":false},[\"position:absolute\",\"display:block\",\"content:\\\"\\\"\",\"border-color:transparent\",\"border-style:solid\"]],[false,{\".bs-popover-auto[x-placement^=top]\":false,\".bs-popover-top\":false},[\"margin-bottom:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow\":false,\".bs-popover-top .arrow\":false},[\"bottom:calc(( .5rem + 1px ) * -1)\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow::after\":false,\".bs-popover-auto[x-placement^=top] .arrow::before\":false,\".bs-popover-top .arrow::after\":false,\".bs-popover-top .arrow::before\":false},[\"border-width:.5rem .5rem 0\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow::before\":false,\".bs-popover-top .arrow::before\":false},[\"bottom:0\",\"border-top-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow::after\":false,\".bs-popover-top .arrow::after\":false},[\"bottom:1px\",\"border-top-color:#fff\"]],[false,{\".bs-popover-auto[x-placement^=right]\":false,\".bs-popover-right\":false},[\"margin-left:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow\":false,\".bs-popover-right .arrow\":false},[\"left:calc(( .5rem + 1px ) * -1)\",\"width:.5rem\",\"height:1rem\",\"margin:.3rem 0\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow::after\":false,\".bs-popover-auto[x-placement^=right] .arrow::before\":false,\".bs-popover-right .arrow::after\":false,\".bs-popover-right .arrow::before\":false},[\"border-width:.5rem .5rem .5rem 0\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow::before\":false,\".bs-popover-right .arrow::before\":false},[\"left:0\",\"border-right-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow::after\":false,\".bs-popover-right .arrow::after\":false},[\"left:1px\",\"border-right-color:#fff\"]],[false,{\".bs-popover-auto[x-placement^=bottom]\":false,\".bs-popover-bottom\":false},[\"margin-top:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow\":false,\".bs-popover-bottom .arrow\":false},[\"top:calc(( .5rem + 1px ) * -1)\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow::after\":false,\".bs-popover-auto[x-placement^=bottom] .arrow::before\":false,\".bs-popover-bottom .arrow::after\":false,\".bs-popover-bottom .arrow::before\":false},[\"border-width:0 .5rem .5rem .5rem\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow::before\":false,\".bs-popover-bottom .arrow::before\":false},[\"top:0\",\"border-bottom-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow::after\":false,\".bs-popover-bottom .arrow::after\":false},[\"top:1px\",\"border-bottom-color:#fff\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .popover-header::before\":false,\".bs-popover-bottom .popover-header::before\":false},[\"position:absolute\",\"top:0\",\"left:50%\",\"display:block\",\"width:1rem\",\"margin-left:-.5rem\",\"content:\\\"\\\"\",\"border-bottom:1px solid #f7f7f7\"]],[false,{\".bs-popover-auto[x-placement^=left]\":false,\".bs-popover-left\":false},[\"margin-right:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow\":false,\".bs-popover-left .arrow\":false},[\"right:calc(( .5rem + 1px ) * -1)\",\"width:.5rem\",\"height:1rem\",\"margin:.3rem 0\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow::after\":false,\".bs-popover-auto[x-placement^=left] .arrow::before\":false,\".bs-popover-left .arrow::after\":false,\".bs-popover-left .arrow::before\":false},[\"border-width:.5rem 0 .5rem .5rem\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow::before\":false,\".bs-popover-left .arrow::before\":false},[\"right:0\",\"border-left-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow::after\":false,\".bs-popover-left .arrow::after\":false},[\"right:1px\",\"border-left-color:#fff\"]],[false,{\".popover-header\":false},[\"padding:.5rem .75rem\",\"margin-bottom:0\",\"font-size:1rem\",\"color:inherit\",\"background-color:#f7f7f7\",\"border-bottom:1px solid #ebebeb\",\"border-top-left-radius:calc(.3rem - 1px)\",\"border-top-right-radius:calc(.3rem - 1px)\"]],[false,{\".popover-header:empty\":false},[\"display:none\"]],[false,{\".popover-body\":false},[\"padding:.5rem .75rem\",\"color:#212529\"]],[false,{\".carousel\":false},[\"position:relative\"]],[false,{\".carousel-inner\":false},[\"position:relative\",\"width:100%\",\"overflow:hidden\"]],[false,{\".carousel-item\":false},[\"position:relative\",\"display:none\",\"-ms-flex-align:center\",\"align-items:center\",\"width:100%\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"-webkit-perspective:1000px\",\"perspective:1000px\"]],[false,{\".carousel-item-next\":false,\".carousel-item-prev\":false,\".carousel-item.active\":false},[\"display:block\",\"transition:-webkit-transform .6s ease\",\"transition:transform .6s ease\",\"transition:transform .6s ease,-webkit-transform .6s ease\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".carousel-item-next\":false,\".carousel-item-prev\":false,\".carousel-item.active\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".carousel-item-next\":false,\".carousel-item-prev\":false},[\"position:absolute\",\"top:0\"]],[false,{\".carousel-item-next.carousel-item-left\":false,\".carousel-item-prev.carousel-item-right\":false},[\"-webkit-transform:translateX(0)\",\"transform:translateX(0)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".carousel-item-next.carousel-item-left\":false,\".carousel-item-prev.carousel-item-right\":false},[\"-webkit-transform:translate3d(0,0,0)\",\"transform:translate3d(0,0,0)\"]],[false,\"}\"],[false,{\".active.carousel-item-right\":false,\".carousel-item-next\":false},[\"-webkit-transform:translateX(100%)\",\"transform:translateX(100%)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".active.carousel-item-right\":false,\".carousel-item-next\":false},[\"-webkit-transform:translate3d(100%,0,0)\",\"transform:translate3d(100%,0,0)\"]],[false,\"}\"],[false,{\".active.carousel-item-left\":false,\".carousel-item-prev\":false},[\"-webkit-transform:translateX(-100%)\",\"transform:translateX(-100%)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".active.carousel-item-left\":false,\".carousel-item-prev\":false},[\"-webkit-transform:translate3d(-100%,0,0)\",\"transform:translate3d(-100%,0,0)\"]],[false,\"}\"],[false,{\".carousel-fade .carousel-item\":false},[\"opacity:0\",\"transition-duration:.6s\",\"transition-property:opacity\"]],[false,{\".carousel-fade .carousel-item-next.carousel-item-left\":false,\".carousel-fade .carousel-item-prev.carousel-item-right\":false,\".carousel-fade .carousel-item.active\":false},[\"opacity:1\"]],[false,{\".carousel-fade .active.carousel-item-left\":false,\".carousel-fade .active.carousel-item-right\":false},[\"opacity:0\"]],[false,{\".carousel-fade .active.carousel-item-left\":false,\".carousel-fade .active.carousel-item-prev\":false,\".carousel-fade .carousel-item-next\":false,\".carousel-fade .carousel-item-prev\":false,\".carousel-fade .carousel-item.active\":false},[\"-webkit-transform:translateX(0)\",\"transform:translateX(0)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".carousel-fade .active.carousel-item-left\":false,\".carousel-fade .active.carousel-item-prev\":false,\".carousel-fade .carousel-item-next\":false,\".carousel-fade .carousel-item-prev\":false,\".carousel-fade .carousel-item.active\":false},[\"-webkit-transform:translate3d(0,0,0)\",\"transform:translate3d(0,0,0)\"]],[false,\"}\"],[false,{\".carousel-control-next\":false,\".carousel-control-prev\":false},[\"position:absolute\",\"top:0\",\"bottom:0\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"width:15%\",\"color:#fff\",\"text-align:center\",\"opacity:.5\"]],[false,{\".carousel-control-next:focus\":false,\".carousel-control-next:hover\":false,\".carousel-control-prev:focus\":false,\".carousel-control-prev:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"outline:0\",\"opacity:.9\"]],[false,{\".carousel-control-prev\":false},[\"left:0\"]],[false,{\".carousel-control-next\":false},[\"right:0\"]],[false,{\".carousel-control-next-icon\":false,\".carousel-control-prev-icon\":false},[\"display:inline-block\",\"width:20px\",\"height:20px\",\"background:transparent no-repeat center center\",\"background-size:100% 100%\"]],[false,{\".carousel-control-prev-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' fill=\\\\\'%23fff\\\\\' viewBox=\\\\\'0 0 8 8\\\\\'%3E%3Cpath d=\\\\\'M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".carousel-control-next-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' fill=\\\\\'%23fff\\\\\' viewBox=\\\\\'0 0 8 8\\\\\'%3E%3Cpath d=\\\\\'M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".carousel-indicators\":false},[\"position:absolute\",\"right:0\",\"bottom:10px\",\"left:0\",\"z-index:15\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-pack:center\",\"justify-content:center\",\"padding-left:0\",\"margin-right:15%\",\"margin-left:15%\",\"list-style:none\"]],[false,{\".carousel-indicators li\":false},[\"position:relative\",\"-ms-flex:0 1 auto\",\"flex:0 1 auto\",\"width:30px\",\"height:3px\",\"margin-right:3px\",\"margin-left:3px\",\"text-indent:-999px\",\"cursor:pointer\",\"background-color:rgba(255,255,255,.5)\"]],[false,{\".carousel-indicators li::before\":false},[\"position:absolute\",\"top:-10px\",\"left:0\",\"display:inline-block\",\"width:100%\",\"height:10px\",\"content:\\\"\\\"\"]],[false,{\".carousel-indicators li::after\":false},[\"position:absolute\",\"bottom:-10px\",\"left:0\",\"display:inline-block\",\"width:100%\",\"height:10px\",\"content:\\\"\\\"\"]],[false,{\".carousel-indicators .active\":false},[\"background-color:#fff\"]],[false,{\".carousel-caption\":false},[\"position:absolute\",\"right:15%\",\"bottom:20px\",\"left:15%\",\"z-index:10\",\"padding-top:20px\",\"padding-bottom:20px\",\"color:#fff\",\"text-align:center\"]],[false,{\".align-baseline:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:baseline\"]],[false,{\".align-top:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:top\"]],[false,{\".align-middle:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:middle\"]],[false,{\".align-bottom:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:bottom\"]],[false,{\".align-text-bottom:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:text-bottom\"]],[false,{\".align-text-top:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:text-top\"]],[false,{\".bg-primary:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#007bff\"]],[false,{\"a.bg-primary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-primary:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-primary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-primary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#0062cc\"]],[false,{\".bg-secondary:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#6c757d\"]],[false,{\"a.bg-secondary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-secondary:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-secondary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-secondary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#545b62\"]],[false,{\".bg-success:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#28a745\"]],[false,{\"a.bg-success:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-success:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-success:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-success:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#1e7e34\"]],[false,{\".bg-info:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#17a2b8\"]],[false,{\"a.bg-info:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-info:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-info:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-info:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#117a8b\"]],[false,{\".bg-warning:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#ffc107\"]],[false,{\"a.bg-warning:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-warning:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-warning:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-warning:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#d39e00\"]],[false,{\".bg-danger:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#dc3545\"]],[false,{\"a.bg-danger:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-danger:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-danger:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-danger:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#bd2130\"]],[true,{\".bg-light:not(#_#_#_#_#_#_#_)\":true},[\"background-color:#f8f9fa\"]],[true,{\"a.bg-light:focus:not(#_#_#_#_#_#_#_#_)\":true,\"a.bg-light:hover:not(#_#_#_#_#_#_#_#_)\":true,\"button.bg-light:focus:not(#_#_#_#_#_#_#_#_)\":true,\"button.bg-light:hover:not(#_#_#_#_#_#_#_#_)\":true},[\"background-color:#dae0e5\"]],[false,{\".bg-dark:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#343a40\"]],[false,{\"a.bg-dark:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-dark:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-dark:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-dark:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#1d2124\"]],[false,{\".bg-white:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#fff\"]],[false,{\".bg-transparent:not(#_#_#_#_#_#_#_)\":false},[\"background-color:transparent\"]],[false,{\".border:not(#_#_#_#_#_#_#_)\":false},[\"border:1px solid #dee2e6\"]],[false,{\".border-top:not(#_#_#_#_#_#_#_)\":false},[\"border-top:1px solid #dee2e6\"]],[false,{\".border-right:not(#_#_#_#_#_#_#_)\":false},[\"border-right:1px solid #dee2e6\"]],[false,{\".border-bottom:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom:1px solid #dee2e6\"]],[false,{\".border-left:not(#_#_#_#_#_#_#_)\":false},[\"border-left:1px solid #dee2e6\"]],[false,{\".border-0:not(#_#_#_#_#_#_#_)\":false},[\"border:0\"]],[false,{\".border-top-0:not(#_#_#_#_#_#_#_)\":false},[\"border-top:0\"]],[false,{\".border-right-0:not(#_#_#_#_#_#_#_)\":false},[\"border-right:0\"]],[false,{\".border-bottom-0:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom:0\"]],[false,{\".border-left-0:not(#_#_#_#_#_#_#_)\":false},[\"border-left:0\"]],[false,{\".border-primary:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#007bff\"]],[false,{\".border-secondary:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#6c757d\"]],[false,{\".border-success:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#28a745\"]],[false,{\".border-info:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#17a2b8\"]],[false,{\".border-warning:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#ffc107\"]],[false,{\".border-danger:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#dc3545\"]],[false,{\".border-light:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#f8f9fa\"]],[false,{\".border-dark:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#343a40\"]],[false,{\".border-white:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#fff\"]],[false,{\".rounded:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:.25rem\"]],[false,{\".rounded-top:not(#_#_#_#_#_#_#_)\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".rounded-right:not(#_#_#_#_#_#_#_)\":false},[\"border-top-right-radius:.25rem\",\"border-bottom-right-radius:.25rem\"]],[false,{\".rounded-bottom:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".rounded-left:not(#_#_#_#_#_#_#_)\":false},[\"border-top-left-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".rounded-circle:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:50%\"]],[false,{\".rounded-0:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[false,{\".clearfix::after\":false},[\"display:block\",\"clear:both\",\"content:\\\"\\\"\"]],[false,{\".d-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"@media (min-width:576px){\"],[false,{\".d-sm-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-sm-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-sm-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-sm-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-sm-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-sm-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-sm-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-sm-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-sm-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".d-md-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-md-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-md-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-md-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-md-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-md-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-md-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-md-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-md-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".d-lg-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-lg-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-lg-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-lg-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-lg-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-lg-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-lg-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-lg-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-lg-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".d-xl-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-xl-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-xl-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-xl-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-xl-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-xl-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-xl-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-xl-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-xl-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media print{\"],[false,{\".d-print-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-print-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-print-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-print-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-print-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-print-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-print-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-print-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-print-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,{\".embed-responsive\":false},[\"position:relative\",\"display:block\",\"width:100%\",\"padding:0\",\"overflow:hidden\"]],[false,{\".embed-responsive::before\":false},[\"display:block\",\"content:\\\"\\\"\"]],[false,{\".embed-responsive .embed-responsive-item\":false,\".embed-responsive embed\":false,\".embed-responsive amp-iframe\":false,\".embed-responsive amp-google-document-embed\":false,\".embed-responsive amp-video\":false,\".embed-responsive amp-youtube\":false},[\"position:absolute\",\"top:0\",\"bottom:0\",\"left:0\",\"width:100%\",\"height:100%\",\"border:0\"]],[false,{\".embed-responsive-21by9::before\":false},[\"padding-top:42.857143%\"]],[false,{\".embed-responsive-16by9::before\":false},[\"padding-top:56.25%\"]],[false,{\".embed-responsive-4by3::before\":false},[\"padding-top:75%\"]],[false,{\".embed-responsive-1by1::before\":false},[\"padding-top:100%\"]],[false,{\".flex-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[true,{\".flex-column-reverse:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[true,{\".align-items-center:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"@media (min-width:576px){\"],[false,{\".flex-sm-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-sm-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-sm-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-sm-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-sm-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-sm-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-sm-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-sm-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-sm-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-sm-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-sm-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-sm-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-sm-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-sm-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-sm-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-sm-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-sm-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-sm-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-sm-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-sm-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-sm-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".flex-md-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-md-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-md-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-md-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-md-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-md-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-md-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-md-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-md-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-md-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-md-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-md-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-md-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-md-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-md-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-md-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-md-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-md-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-md-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-md-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-md-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[true,\"@media (min-width:992px){\"],[true,{\".flex-lg-row:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-lg-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-lg-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-lg-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-lg-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-lg-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-lg-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-lg-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-lg-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-lg-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-lg-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-lg-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-lg-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-lg-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-lg-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-lg-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-lg-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-lg-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-lg-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-lg-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-lg-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[true,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".flex-xl-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-xl-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-xl-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-xl-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-xl-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-xl-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-xl-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-xl-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-xl-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-xl-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-xl-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-xl-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-xl-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-xl-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-xl-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-xl-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-xl-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-xl-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-xl-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-xl-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-xl-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[false,{\".float-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"@media (min-width:576px){\"],[false,{\".float-sm-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-sm-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-sm-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".float-md-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-md-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-md-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".float-lg-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-lg-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-lg-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".float-xl-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-xl-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-xl-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,{\".position-static:not(#_#_#_#_#_#_#_)\":false},[\"position:static\"]],[false,{\".position-relative:not(#_#_#_#_#_#_#_)\":false},[\"position:relative\"]],[false,{\".position-absolute:not(#_#_#_#_#_#_#_)\":false},[\"position:absolute\"]],[false,{\".position-fixed:not(#_#_#_#_#_#_#_)\":false},[\"position:fixed\"]],[false,{\".position-sticky:not(#_#_#_#_#_#_#_)\":false},[\"position:-webkit-sticky\",\"position:sticky\"]],[false,{\".fixed-top\":false},[\"position:fixed\",\"top:0\",\"right:0\",\"left:0\",\"z-index:1030\"]],[false,{\".fixed-bottom\":false},[\"position:fixed\",\"right:0\",\"bottom:0\",\"left:0\",\"z-index:1030\"]],[false,\"@supports ((position:-webkit-sticky) or (position:sticky)){\"],[false,{\".sticky-top\":false},[\"position:-webkit-sticky\",\"position:sticky\",\"top:0\",\"z-index:1020\"]],[false,\"}\"],[false,{\".sr-only\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"white-space:nowrap\",\"border:0\"]],[false,{\".sr-only-focusable:active\":false,\".sr-only-focusable:focus\":false},[\"position:static\",\"width:auto\",\"height:auto\",\"overflow:visible\",\"clip:auto\",\"white-space:normal\"]],[false,{\".shadow-sm:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:0 .125rem .25rem rgba(0,0,0,.075)\"]],[false,{\".shadow:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:0 .5rem 1rem rgba(0,0,0,.15)\"]],[false,{\".shadow-lg:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:0 1rem 3rem rgba(0,0,0,.175)\"]],[false,{\".shadow-none:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:none\"]],[false,{\".w-25:not(#_#_#_#_#_#_#_)\":false},[\"width:25%\"]],[false,{\".w-50:not(#_#_#_#_#_#_#_)\":false},[\"width:50%\"]],[false,{\".w-75:not(#_#_#_#_#_#_#_)\":false},[\"width:75%\"]],[false,{\".w-100:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".w-auto:not(#_#_#_#_#_#_#_)\":false},[\"width:auto\"]],[false,{\".h-25:not(#_#_#_#_#_#_#_)\":false},[\"height:25%\"]],[false,{\".h-50:not(#_#_#_#_#_#_#_)\":false},[\"height:50%\"]],[false,{\".h-75:not(#_#_#_#_#_#_#_)\":false},[\"height:75%\"]],[false,{\".h-100:not(#_#_#_#_#_#_#_)\":false},[\"height:100%\"]],[false,{\".h-auto:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[false,{\".mw-100:not(#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".mh-100:not(#_#_#_#_#_#_#_)\":false},[\"max-height:100%\"]],[false,{\".m-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-0:not(#_#_#_#_#_#_#_)\":false,\".my-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-0:not(#_#_#_#_#_#_#_)\":false,\".mx-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-0:not(#_#_#_#_#_#_#_)\":false,\".my-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-0:not(#_#_#_#_#_#_#_)\":false,\".mx-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-1:not(#_#_#_#_#_#_#_)\":false,\".my-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-1:not(#_#_#_#_#_#_#_)\":false,\".mx-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-1:not(#_#_#_#_#_#_#_)\":false,\".my-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-1:not(#_#_#_#_#_#_#_)\":false,\".mx-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-2:not(#_#_#_#_#_#_#_)\":false,\".my-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-2:not(#_#_#_#_#_#_#_)\":false,\".mx-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-2:not(#_#_#_#_#_#_#_)\":false,\".my-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[true,{\".ml-2:not(#_#_#_#_#_#_#_)\":true,\".mx-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-3:not(#_#_#_#_#_#_#_)\":false,\".my-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-3:not(#_#_#_#_#_#_#_)\":false,\".mx-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-3:not(#_#_#_#_#_#_#_)\":false,\".my-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-3:not(#_#_#_#_#_#_#_)\":false,\".mx-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-4:not(#_#_#_#_#_#_#_)\":false,\".my-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-4:not(#_#_#_#_#_#_#_)\":false,\".mx-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-4:not(#_#_#_#_#_#_#_)\":false,\".my-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-4:not(#_#_#_#_#_#_#_)\":false,\".mx-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-5:not(#_#_#_#_#_#_#_)\":false,\".my-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-5:not(#_#_#_#_#_#_#_)\":false,\".mx-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-5:not(#_#_#_#_#_#_#_)\":false,\".my-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-5:not(#_#_#_#_#_#_#_)\":false,\".mx-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-0:not(#_#_#_#_#_#_#_)\":false,\".py-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-0:not(#_#_#_#_#_#_#_)\":false,\".px-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-0:not(#_#_#_#_#_#_#_)\":false,\".py-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-0:not(#_#_#_#_#_#_#_)\":false,\".px-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-1:not(#_#_#_#_#_#_#_)\":false,\".py-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-1:not(#_#_#_#_#_#_#_)\":false,\".px-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-1:not(#_#_#_#_#_#_#_)\":false,\".py-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-1:not(#_#_#_#_#_#_#_)\":false,\".px-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-2:not(#_#_#_#_#_#_#_)\":false,\".py-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-2:not(#_#_#_#_#_#_#_)\":false,\".px-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-2:not(#_#_#_#_#_#_#_)\":false,\".py-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-2:not(#_#_#_#_#_#_#_)\":false,\".px-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-3:not(#_#_#_#_#_#_#_)\":false,\".py-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-3:not(#_#_#_#_#_#_#_)\":false,\".px-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-3:not(#_#_#_#_#_#_#_)\":false,\".py-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-3:not(#_#_#_#_#_#_#_)\":false,\".px-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-4:not(#_#_#_#_#_#_#_)\":false,\".py-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-4:not(#_#_#_#_#_#_#_)\":false,\".px-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-4:not(#_#_#_#_#_#_#_)\":false,\".py-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-4:not(#_#_#_#_#_#_#_)\":false,\".px-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-5:not(#_#_#_#_#_#_#_)\":false,\".py-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-5:not(#_#_#_#_#_#_#_)\":false,\".px-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-5:not(#_#_#_#_#_#_#_)\":false,\".py-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-5:not(#_#_#_#_#_#_#_)\":false,\".px-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-auto:not(#_#_#_#_#_#_#_)\":false,\".my-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[true,{\".mr-auto:not(#_#_#_#_#_#_#_)\":true,\".mx-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-auto:not(#_#_#_#_#_#_#_)\":false,\".my-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"@media (min-width:576px){\"],[false,{\".m-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-sm-0:not(#_#_#_#_#_#_#_)\":false,\".my-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-sm-0:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-sm-0:not(#_#_#_#_#_#_#_)\":false,\".my-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-sm-0:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-sm-1:not(#_#_#_#_#_#_#_)\":false,\".my-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-sm-1:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-sm-1:not(#_#_#_#_#_#_#_)\":false,\".my-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-sm-1:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-sm-2:not(#_#_#_#_#_#_#_)\":false,\".my-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-sm-2:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-sm-2:not(#_#_#_#_#_#_#_)\":false,\".my-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-sm-2:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-sm-3:not(#_#_#_#_#_#_#_)\":false,\".my-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-sm-3:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-sm-3:not(#_#_#_#_#_#_#_)\":false,\".my-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-sm-3:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-sm-4:not(#_#_#_#_#_#_#_)\":false,\".my-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-sm-4:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-sm-4:not(#_#_#_#_#_#_#_)\":false,\".my-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-sm-4:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-sm-5:not(#_#_#_#_#_#_#_)\":false,\".my-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-sm-5:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-sm-5:not(#_#_#_#_#_#_#_)\":false,\".my-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-sm-5:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-sm-0:not(#_#_#_#_#_#_#_)\":false,\".py-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-sm-0:not(#_#_#_#_#_#_#_)\":false,\".px-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-sm-0:not(#_#_#_#_#_#_#_)\":false,\".py-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-sm-0:not(#_#_#_#_#_#_#_)\":false,\".px-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-sm-1:not(#_#_#_#_#_#_#_)\":false,\".py-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-sm-1:not(#_#_#_#_#_#_#_)\":false,\".px-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-sm-1:not(#_#_#_#_#_#_#_)\":false,\".py-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-sm-1:not(#_#_#_#_#_#_#_)\":false,\".px-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-sm-2:not(#_#_#_#_#_#_#_)\":false,\".py-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-sm-2:not(#_#_#_#_#_#_#_)\":false,\".px-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-sm-2:not(#_#_#_#_#_#_#_)\":false,\".py-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-sm-2:not(#_#_#_#_#_#_#_)\":false,\".px-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-sm-3:not(#_#_#_#_#_#_#_)\":false,\".py-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-sm-3:not(#_#_#_#_#_#_#_)\":false,\".px-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-sm-3:not(#_#_#_#_#_#_#_)\":false,\".py-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-sm-3:not(#_#_#_#_#_#_#_)\":false,\".px-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-sm-4:not(#_#_#_#_#_#_#_)\":false,\".py-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-sm-4:not(#_#_#_#_#_#_#_)\":false,\".px-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-sm-4:not(#_#_#_#_#_#_#_)\":false,\".py-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-sm-4:not(#_#_#_#_#_#_#_)\":false,\".px-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-sm-5:not(#_#_#_#_#_#_#_)\":false,\".py-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-sm-5:not(#_#_#_#_#_#_#_)\":false,\".px-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-sm-5:not(#_#_#_#_#_#_#_)\":false,\".py-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-sm-5:not(#_#_#_#_#_#_#_)\":false,\".px-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".my-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".my-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".m-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-md-0:not(#_#_#_#_#_#_#_)\":false,\".my-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-md-0:not(#_#_#_#_#_#_#_)\":false,\".mx-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-md-0:not(#_#_#_#_#_#_#_)\":false,\".my-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-md-0:not(#_#_#_#_#_#_#_)\":false,\".mx-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-md-1:not(#_#_#_#_#_#_#_)\":false,\".my-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-md-1:not(#_#_#_#_#_#_#_)\":false,\".mx-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-md-1:not(#_#_#_#_#_#_#_)\":false,\".my-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-md-1:not(#_#_#_#_#_#_#_)\":false,\".mx-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-md-2:not(#_#_#_#_#_#_#_)\":false,\".my-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-md-2:not(#_#_#_#_#_#_#_)\":false,\".mx-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-md-2:not(#_#_#_#_#_#_#_)\":false,\".my-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-md-2:not(#_#_#_#_#_#_#_)\":false,\".mx-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-md-3:not(#_#_#_#_#_#_#_)\":false,\".my-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-md-3:not(#_#_#_#_#_#_#_)\":false,\".mx-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-md-3:not(#_#_#_#_#_#_#_)\":false,\".my-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-md-3:not(#_#_#_#_#_#_#_)\":false,\".mx-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-md-4:not(#_#_#_#_#_#_#_)\":false,\".my-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-md-4:not(#_#_#_#_#_#_#_)\":false,\".mx-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-md-4:not(#_#_#_#_#_#_#_)\":false,\".my-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-md-4:not(#_#_#_#_#_#_#_)\":false,\".mx-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-md-5:not(#_#_#_#_#_#_#_)\":false,\".my-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-md-5:not(#_#_#_#_#_#_#_)\":false,\".mx-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-md-5:not(#_#_#_#_#_#_#_)\":false,\".my-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-md-5:not(#_#_#_#_#_#_#_)\":false,\".mx-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-md-0:not(#_#_#_#_#_#_#_)\":false,\".py-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-md-0:not(#_#_#_#_#_#_#_)\":false,\".px-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-md-0:not(#_#_#_#_#_#_#_)\":false,\".py-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-md-0:not(#_#_#_#_#_#_#_)\":false,\".px-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-md-1:not(#_#_#_#_#_#_#_)\":false,\".py-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-md-1:not(#_#_#_#_#_#_#_)\":false,\".px-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-md-1:not(#_#_#_#_#_#_#_)\":false,\".py-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-md-1:not(#_#_#_#_#_#_#_)\":false,\".px-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-md-2:not(#_#_#_#_#_#_#_)\":false,\".py-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-md-2:not(#_#_#_#_#_#_#_)\":false,\".px-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-md-2:not(#_#_#_#_#_#_#_)\":false,\".py-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-md-2:not(#_#_#_#_#_#_#_)\":false,\".px-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-md-3:not(#_#_#_#_#_#_#_)\":false,\".py-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-md-3:not(#_#_#_#_#_#_#_)\":false,\".px-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-md-3:not(#_#_#_#_#_#_#_)\":false,\".py-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-md-3:not(#_#_#_#_#_#_#_)\":false,\".px-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-md-4:not(#_#_#_#_#_#_#_)\":false,\".py-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-md-4:not(#_#_#_#_#_#_#_)\":false,\".px-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-md-4:not(#_#_#_#_#_#_#_)\":false,\".py-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-md-4:not(#_#_#_#_#_#_#_)\":false,\".px-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-md-5:not(#_#_#_#_#_#_#_)\":false,\".py-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-md-5:not(#_#_#_#_#_#_#_)\":false,\".px-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-md-5:not(#_#_#_#_#_#_#_)\":false,\".py-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-md-5:not(#_#_#_#_#_#_#_)\":false,\".px-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-md-auto:not(#_#_#_#_#_#_#_)\":false,\".my-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-md-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-md-auto:not(#_#_#_#_#_#_#_)\":false,\".my-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-md-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".m-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-lg-0:not(#_#_#_#_#_#_#_)\":false,\".my-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-lg-0:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-lg-0:not(#_#_#_#_#_#_#_)\":false,\".my-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-lg-0:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-lg-1:not(#_#_#_#_#_#_#_)\":false,\".my-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-lg-1:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-lg-1:not(#_#_#_#_#_#_#_)\":false,\".my-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-lg-1:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-lg-2:not(#_#_#_#_#_#_#_)\":false,\".my-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-lg-2:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-lg-2:not(#_#_#_#_#_#_#_)\":false,\".my-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-lg-2:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-lg-3:not(#_#_#_#_#_#_#_)\":false,\".my-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-lg-3:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-lg-3:not(#_#_#_#_#_#_#_)\":false,\".my-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-lg-3:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-lg-4:not(#_#_#_#_#_#_#_)\":false,\".my-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-lg-4:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-lg-4:not(#_#_#_#_#_#_#_)\":false,\".my-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-lg-4:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-lg-5:not(#_#_#_#_#_#_#_)\":false,\".my-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-lg-5:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-lg-5:not(#_#_#_#_#_#_#_)\":false,\".my-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-lg-5:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-lg-0:not(#_#_#_#_#_#_#_)\":false,\".py-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-lg-0:not(#_#_#_#_#_#_#_)\":false,\".px-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-lg-0:not(#_#_#_#_#_#_#_)\":false,\".py-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-lg-0:not(#_#_#_#_#_#_#_)\":false,\".px-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-lg-1:not(#_#_#_#_#_#_#_)\":false,\".py-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-lg-1:not(#_#_#_#_#_#_#_)\":false,\".px-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-lg-1:not(#_#_#_#_#_#_#_)\":false,\".py-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-lg-1:not(#_#_#_#_#_#_#_)\":false,\".px-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-lg-2:not(#_#_#_#_#_#_#_)\":false,\".py-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-lg-2:not(#_#_#_#_#_#_#_)\":false,\".px-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-lg-2:not(#_#_#_#_#_#_#_)\":false,\".py-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-lg-2:not(#_#_#_#_#_#_#_)\":false,\".px-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-lg-3:not(#_#_#_#_#_#_#_)\":false,\".py-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-lg-3:not(#_#_#_#_#_#_#_)\":false,\".px-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-lg-3:not(#_#_#_#_#_#_#_)\":false,\".py-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-lg-3:not(#_#_#_#_#_#_#_)\":false,\".px-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-lg-4:not(#_#_#_#_#_#_#_)\":false,\".py-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-lg-4:not(#_#_#_#_#_#_#_)\":false,\".px-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-lg-4:not(#_#_#_#_#_#_#_)\":false,\".py-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-lg-4:not(#_#_#_#_#_#_#_)\":false,\".px-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-lg-5:not(#_#_#_#_#_#_#_)\":false,\".py-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-lg-5:not(#_#_#_#_#_#_#_)\":false,\".px-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-lg-5:not(#_#_#_#_#_#_#_)\":false,\".py-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-lg-5:not(#_#_#_#_#_#_#_)\":false,\".px-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".my-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".my-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".m-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-xl-0:not(#_#_#_#_#_#_#_)\":false,\".my-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-xl-0:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-xl-0:not(#_#_#_#_#_#_#_)\":false,\".my-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-xl-0:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-xl-1:not(#_#_#_#_#_#_#_)\":false,\".my-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-xl-1:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-xl-1:not(#_#_#_#_#_#_#_)\":false,\".my-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-xl-1:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-xl-2:not(#_#_#_#_#_#_#_)\":false,\".my-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-xl-2:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-xl-2:not(#_#_#_#_#_#_#_)\":false,\".my-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-xl-2:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-xl-3:not(#_#_#_#_#_#_#_)\":false,\".my-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-xl-3:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-xl-3:not(#_#_#_#_#_#_#_)\":false,\".my-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-xl-3:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-xl-4:not(#_#_#_#_#_#_#_)\":false,\".my-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-xl-4:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-xl-4:not(#_#_#_#_#_#_#_)\":false,\".my-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-xl-4:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-xl-5:not(#_#_#_#_#_#_#_)\":false,\".my-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-xl-5:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-xl-5:not(#_#_#_#_#_#_#_)\":false,\".my-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-xl-5:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-xl-0:not(#_#_#_#_#_#_#_)\":false,\".py-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-xl-0:not(#_#_#_#_#_#_#_)\":false,\".px-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-xl-0:not(#_#_#_#_#_#_#_)\":false,\".py-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-xl-0:not(#_#_#_#_#_#_#_)\":false,\".px-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-xl-1:not(#_#_#_#_#_#_#_)\":false,\".py-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-xl-1:not(#_#_#_#_#_#_#_)\":false,\".px-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-xl-1:not(#_#_#_#_#_#_#_)\":false,\".py-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-xl-1:not(#_#_#_#_#_#_#_)\":false,\".px-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-xl-2:not(#_#_#_#_#_#_#_)\":false,\".py-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-xl-2:not(#_#_#_#_#_#_#_)\":false,\".px-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-xl-2:not(#_#_#_#_#_#_#_)\":false,\".py-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-xl-2:not(#_#_#_#_#_#_#_)\":false,\".px-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-xl-3:not(#_#_#_#_#_#_#_)\":false,\".py-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-xl-3:not(#_#_#_#_#_#_#_)\":false,\".px-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-xl-3:not(#_#_#_#_#_#_#_)\":false,\".py-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-xl-3:not(#_#_#_#_#_#_#_)\":false,\".px-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-xl-4:not(#_#_#_#_#_#_#_)\":false,\".py-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-xl-4:not(#_#_#_#_#_#_#_)\":false,\".px-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-xl-4:not(#_#_#_#_#_#_#_)\":false,\".py-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-xl-4:not(#_#_#_#_#_#_#_)\":false,\".px-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-xl-5:not(#_#_#_#_#_#_#_)\":false,\".py-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-xl-5:not(#_#_#_#_#_#_#_)\":false,\".px-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-xl-5:not(#_#_#_#_#_#_#_)\":false,\".py-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-xl-5:not(#_#_#_#_#_#_#_)\":false,\".px-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".my-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".my-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,{\".text-monospace\":false},[\"font-family:SFMono-Regular,Menlo,Monaco,Consolas,\\\"Liberation Mono\\\",\\\"Courier New\\\",monospace\"]],[false,{\".text-justify:not(#_#_#_#_#_#_#_)\":false},[\"text-align:justify\"]],[false,{\".text-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"white-space:nowrap\"]],[false,{\".text-truncate\":false},[\"overflow:hidden\",\"text-overflow:ellipsis\",\"white-space:nowrap\"]],[false,{\".text-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"@media (min-width:576px){\"],[false,{\".text-sm-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-sm-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".text-md-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-md-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-md-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".text-lg-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-lg-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".text-xl-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-xl-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".text-lowercase:not(#_#_#_#_#_#_#_)\":false},[\"text-transform:lowercase\"]],[false,{\".text-uppercase:not(#_#_#_#_#_#_#_)\":false},[\"text-transform:uppercase\"]],[false,{\".text-capitalize:not(#_#_#_#_#_#_#_)\":false},[\"text-transform:capitalize\"]],[false,{\".font-weight-light:not(#_#_#_#_#_#_#_)\":false},[\"font-weight:300\"]],[false,{\".font-weight-normal:not(#_#_#_#_#_#_#_)\":false},[\"font-weight:400\"]],[false,{\".font-weight-bold:not(#_#_#_#_#_#_#_)\":false},[\"font-weight:700\"]],[false,{\".font-italic:not(#_#_#_#_#_#_#_)\":false},[\"font-style:italic\"]],[false,{\".text-white:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".text-primary:not(#_#_#_#_#_#_#_)\":false},[\"color:#007bff\"]],[false,{\"a.text-primary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-primary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#0062cc\"]],[false,{\".text-secondary:not(#_#_#_#_#_#_#_)\":false},[\"color:#6c757d\"]],[false,{\"a.text-secondary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-secondary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#545b62\"]],[false,{\".text-success:not(#_#_#_#_#_#_#_)\":false},[\"color:#28a745\"]],[false,{\"a.text-success:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-success:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#1e7e34\"]],[false,{\".text-info:not(#_#_#_#_#_#_#_)\":false},[\"color:#17a2b8\"]],[false,{\"a.text-info:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-info:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#117a8b\"]],[false,{\".text-warning:not(#_#_#_#_#_#_#_)\":false},[\"color:#ffc107\"]],[false,{\"a.text-warning:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-warning:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#d39e00\"]],[false,{\".text-danger:not(#_#_#_#_#_#_#_)\":false},[\"color:#dc3545\"]],[false,{\"a.text-danger:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-danger:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#bd2130\"]],[false,{\".text-light:not(#_#_#_#_#_#_#_)\":false},[\"color:#f8f9fa\"]],[false,{\"a.text-light:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-light:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#dae0e5\"]],[false,{\".text-dark:not(#_#_#_#_#_#_#_)\":false},[\"color:#343a40\"]],[false,{\"a.text-dark:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-dark:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#1d2124\"]],[false,{\".text-body:not(#_#_#_#_#_#_#_)\":false},[\"color:#212529\"]],[false,{\".text-muted:not(#_#_#_#_#_#_#_)\":false},[\"color:#6c757d\"]],[false,{\".text-black-50:not(#_#_#_#_#_#_#_)\":false},[\"color:rgba(0,0,0,.5)\"]],[false,{\".text-white-50:not(#_#_#_#_#_#_#_)\":false},[\"color:rgba(255,255,255,.5)\"]],[false,{\".text-hide\":false},[\"font:0\\/0 a\",\"color:transparent\",\"text-shadow:none\",\"background-color:transparent\",\"border:0\"]],[false,{\".visible:not(#_#_#_#_#_#_#_)\":false},[\"visibility:visible\"]],[false,{\".invisible:not(#_#_#_#_#_#_#_)\":false},[\"visibility:hidden\"]],[true,\"@media print{\"],[true,{\"*:not(#_#_#_#_#_#_)\":true,\"::after:not(#_#_#_#_#_#_#_#_)\":true,\"::before:not(#_#_#_#_#_#_#_#_)\":true},[\"text-shadow:none\",\"box-shadow:none\"]],[true,{\"a:not(.btn)\":true},[\"text-decoration:underline\"]],[false,{\"abbr[title]::after\":false},[\"content:\\\" (\\\" attr(title) \\\")\\\"\"]],[false,{\"pre:not(#_#_#_#_#_#_#_#_)\":false},[\"white-space:pre-wrap\"]],[false,{\"blockquote\":false,\"pre\":false},[\"border:1px solid #adb5bd\",\"page-break-inside:avoid\"]],[false,{\"thead\":false},[\"display:table-header-group\"]],[true,{\"amp-img\":true,\"amp-anim\":false,\"tr\":false},[\"page-break-inside:avoid\"]],[true,{\"h2\":false,\"h3\":false,\"p\":true},[\"orphans:3\",\"widows:3\"]],[false,{\"h2\":false,\"h3\":false},[\"page-break-after:avoid\"]],[true,\"@page{size:a3}\"],[true,{\"body:not(#_#_#_#_#_#_#_#_)\":true},[\"min-width:992px\"]],[true,{\".container:not(#_#_#_#_#_#_#_)\":true},[\"min-width:992px\"]],[true,{\".navbar\":true},[\"display:none\"]],[false,{\".badge\":false},[\"border:1px solid #000\"]],[false,{\".table:not(#_#_#_#_#_#_#_)\":false},[\"border-collapse:collapse\"]],[false,{\".table td:not(#_#_#_#_#_#_#_#_)\":false,\".table th:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#fff\"]],[false,{\".table-bordered td:not(#_#_#_#_#_#_#_#_)\":false,\".table-bordered th:not(#_#_#_#_#_#_#_#_)\":false},[\"border:1px solid #dee2e6\"]],[false,{\".table-dark\":false},[\"color:inherit\"]],[false,{\".table-dark tbody+tbody\":false,\".table-dark td\":false,\".table-dark th\":false,\".table-dark thead th\":false},[\"border-color:#dee2e6\"]],[false,{\".table .thead-dark th\":false},[\"color:inherit\",\"border-color:#dee2e6\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":68760,\"final_size\":48135,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/animate.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"a2e2915566ab9cb1c9ab842793acd3f3\",\"parse_time\":0.38850998878479004,\"shake_time\":0.00041484832763671875,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".animated\":false},[\"-webkit-animation-duration:1s\",\"animation-duration:1s\",\"-webkit-animation-fill-mode:both\",\"animation-fill-mode:both\"]],[false,{\".animated.infinite\":false},[\"-webkit-animation-iteration-count:infinite\",\"animation-iteration-count:infinite\"]],[false,{\".animated.hinge\":false},[\"-webkit-animation-duration:2s\",\"animation-duration:2s\"]],[true,\"@-webkit-keyframes bounce{\"],[true,\"0%,20%,50%,80%,100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}\"],[true,\"}@keyframes bounce{\"],[true,\"0%,20%,50%,80%,100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"40%{-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"60%{-webkit-transform:translateY(-15px);-ms-transform:translateY(-15px);transform:translateY(-15px)}\"],[true,\"}\"],[false,{\".bounce\":false},[\"-webkit-animation-name:bounce\",\"animation-name:bounce\"]],[true,\"@-webkit-keyframes flash{\"],[true,\"0%,50%,100%{opacity:1}\"],[true,\"25%,75%{opacity:0}\"],[true,\"}@keyframes flash{\"],[true,\"0%,50%,100%{opacity:1}\"],[true,\"25%,75%{opacity:0}\"],[true,\"}\"],[false,{\".flash\":false},[\"-webkit-animation-name:flash\",\"animation-name:flash\"]],[true,\"@-webkit-keyframes pulse{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{-webkit-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes pulse{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"50%{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,{\".pulse\":false},[\"-webkit-animation-name:pulse\",\"animation-name:pulse\"]],[true,\"@-webkit-keyframes rubberBand{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"30%{-webkit-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}\"],[true,\"40%{-webkit-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}\"],[true,\"60%{-webkit-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}\"],[true,\"100%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes rubberBand{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"30%{-webkit-transform:scaleX(1.25) scaleY(.75);-ms-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}\"],[true,\"40%{-webkit-transform:scaleX(.75) scaleY(1.25);-ms-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}\"],[true,\"60%{-webkit-transform:scaleX(1.15) scaleY(.85);-ms-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}\"],[true,\"100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,{\".rubberBand\":false},[\"-webkit-animation-name:rubberBand\",\"animation-name:rubberBand\"]],[true,\"@-webkit-keyframes shake{\"],[true,\"0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"}@keyframes shake{\"],[true,\"0%,100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"20%,40%,60%,80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"}\"],[false,{\".shake\":false},[\"-webkit-animation-name:shake\",\"animation-name:shake\"]],[true,\"@-webkit-keyframes swing{\"],[true,\"20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}\"],[true,\"60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}\"],[true,\"80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}\"],[true,\"100%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}@keyframes swing{\"],[true,\"20%{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"40%{-webkit-transform:rotate(-10deg);-ms-transform:rotate(-10deg);transform:rotate(-10deg)}\"],[true,\"60%{-webkit-transform:rotate(5deg);-ms-transform:rotate(5deg);transform:rotate(5deg)}\"],[true,\"80%{-webkit-transform:rotate(-5deg);-ms-transform:rotate(-5deg);transform:rotate(-5deg)}\"],[true,\"100%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}\"],[false,{\".swing\":false},[\"-webkit-transform-origin:top center\",\"-ms-transform-origin:top center\",\"transform-origin:top center\",\"-webkit-animation-name:swing\",\"animation-name:swing\"]],[true,\"@-webkit-keyframes tada{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}\"],[true,\"30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}\"],[true,\"40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}\"],[true,\"100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}\"],[true,\"}@keyframes tada{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"10%,20%{-webkit-transform:scale(.9) rotate(-3deg);-ms-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}\"],[true,\"30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);-ms-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}\"],[true,\"40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);-ms-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}\"],[true,\"100%{-webkit-transform:scale(1) rotate(0);-ms-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}\"],[true,\"}\"],[false,{\".tada\":false},[\"-webkit-animation-name:tada\",\"animation-name:tada\"]],[true,\"@-webkit-keyframes wobble{\"],[true,\"0%{-webkit-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"15%{-webkit-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}\"],[true,\"30%{-webkit-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}\"],[true,\"45%{-webkit-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}\"],[true,\"60%{-webkit-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}\"],[true,\"75%{-webkit-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}\"],[true,\"100%{-webkit-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"}@keyframes wobble{\"],[true,\"0%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"15%{-webkit-transform:translateX(-25%) rotate(-5deg);-ms-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}\"],[true,\"30%{-webkit-transform:translateX(20%) rotate(3deg);-ms-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}\"],[true,\"45%{-webkit-transform:translateX(-15%) rotate(-3deg);-ms-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}\"],[true,\"60%{-webkit-transform:translateX(10%) rotate(2deg);-ms-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}\"],[true,\"75%{-webkit-transform:translateX(-5%) rotate(-1deg);-ms-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}\"],[true,\"100%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"}\"],[false,{\".wobble\":false},[\"-webkit-animation-name:wobble\",\"animation-name:wobble\"]],[true,\"@-webkit-keyframes bounceIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}\"],[true,\"70%{-webkit-transform:scale(.9);transform:scale(.9)}\"],[true,\"100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes bounceIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}\"],[true,\"70%{-webkit-transform:scale(.9);-ms-transform:scale(.9);transform:scale(.9)}\"],[true,\"100%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,{\".bounceIn\":false},[\"-webkit-animation-name:bounceIn\",\"animation-name:bounceIn\"]],[true,\"@-webkit-keyframes bounceInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}\"],[true,\"80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}\"],[true,\"100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes bounceInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px)}\"],[true,\"80%{-webkit-transform:translateY(-10px);-ms-transform:translateY(-10px);transform:translateY(-10px)}\"],[true,\"100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".bounceInDown\":false},[\"-webkit-animation-name:bounceInDown\",\"animation-name:bounceInDown\"]],[true,\"@-webkit-keyframes bounceInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(30px);transform:translateX(30px)}\"],[true,\"80%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes bounceInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(30px);-ms-transform:translateX(30px);transform:translateX(30px)}\"],[true,\"80%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".bounceInLeft\":false},[\"-webkit-animation-name:bounceInLeft\",\"animation-name:bounceInLeft\"]],[true,\"@-webkit-keyframes bounceInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(-30px);transform:translateX(-30px)}\"],[true,\"80%{-webkit-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes bounceInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(-30px);-ms-transform:translateX(-30px);transform:translateX(-30px)}\"],[true,\"80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".bounceInRight\":false},[\"-webkit-animation-name:bounceInRight\",\"animation-name:bounceInRight\"]],[true,\"@-webkit-keyframes bounceInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"80%{-webkit-transform:translateY(10px);transform:translateY(10px)}\"],[true,\"100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes bounceInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"80%{-webkit-transform:translateY(10px);-ms-transform:translateY(10px);transform:translateY(10px)}\"],[true,\"100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".bounceInUp\":false},[\"-webkit-animation-name:bounceInUp\",\"animation-name:bounceInUp\"]],[true,\"@-webkit-keyframes bounceOut{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"25%{-webkit-transform:scale(.95);transform:scale(.95)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"}@keyframes bounceOut{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"25%{-webkit-transform:scale(.95);-ms-transform:scale(.95);transform:scale(.95)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"}\"],[false,{\".bounceOut\":false},[\"-webkit-animation-name:bounceOut\",\"animation-name:bounceOut\"]],[true,\"@-webkit-keyframes bounceOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}@keyframes bounceOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}\"],[false,{\".bounceOutDown\":false},[\"-webkit-animation-name:bounceOutDown\",\"animation-name:bounceOutDown\"]],[true,\"@-webkit-keyframes bounceOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}@keyframes bounceOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}\"],[false,{\".bounceOutLeft\":false},[\"-webkit-animation-name:bounceOutLeft\",\"animation-name:bounceOutLeft\"]],[true,\"@-webkit-keyframes bounceOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}@keyframes bounceOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}\"],[false,{\".bounceOutRight\":false},[\"-webkit-animation-name:bounceOutRight\",\"animation-name:bounceOutRight\"]],[true,\"@-webkit-keyframes bounceOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}@keyframes bounceOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}\"],[false,{\".bounceOutUp\":false},[\"-webkit-animation-name:bounceOutUp\",\"animation-name:bounceOutUp\"]],[true,\"@-webkit-keyframes fadeIn{\"],[true,\"0%{opacity:0}\"],[true,\"100%{opacity:1}\"],[true,\"}@keyframes fadeIn{\"],[true,\"0%{opacity:0}\"],[true,\"100%{opacity:1}\"],[true,\"}\"],[false,{\".fadeIn\":false},[\"-webkit-animation-name:fadeIn\",\"animation-name:fadeIn\"]],[true,\"@-webkit-keyframes fadeInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInDown\":false},[\"-webkit-animation-name:fadeInDown\",\"animation-name:fadeInDown\"]],[true,\"@-webkit-keyframes fadeInDownBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInDownBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInDownBig\":false},[\"-webkit-animation-name:fadeInDownBig\",\"animation-name:fadeInDownBig\"]],[true,\"@-webkit-keyframes fadeInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInLeft\":false},[\"-webkit-animation-name:fadeInLeft\",\"animation-name:fadeInLeft\"]],[true,\"@-webkit-keyframes fadeInLeftBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInLeftBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInLeftBig\":false},[\"-webkit-animation-name:fadeInLeftBig\",\"animation-name:fadeInLeftBig\"]],[true,\"@-webkit-keyframes fadeInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInRight\":false},[\"-webkit-animation-name:fadeInRight\",\"animation-name:fadeInRight\"]],[true,\"@-webkit-keyframes fadeInRightBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInRightBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInRightBig\":false},[\"-webkit-animation-name:fadeInRightBig\",\"animation-name:fadeInRightBig\"]],[true,\"@-webkit-keyframes fadeInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInUp\":false},[\"-webkit-animation-name:fadeInUp\",\"animation-name:fadeInUp\"]],[true,\"@-webkit-keyframes fadeInUpBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInUpBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInUpBig\":false},[\"-webkit-animation-name:fadeInUpBig\",\"animation-name:fadeInUpBig\"]],[true,\"@-webkit-keyframes fadeOut{\"],[true,\"0%{opacity:1}\"],[true,\"100%{opacity:0}\"],[true,\"}@keyframes fadeOut{\"],[true,\"0%{opacity:1}\"],[true,\"100%{opacity:0}\"],[true,\"}\"],[false,{\".fadeOut\":false},[\"-webkit-animation-name:fadeOut\",\"animation-name:fadeOut\"]],[true,\"@-webkit-keyframes fadeOutDown{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"}@keyframes fadeOutDown{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"}\"],[false,{\".fadeOutDown\":false},[\"-webkit-animation-name:fadeOutDown\",\"animation-name:fadeOutDown\"]],[true,\"@-webkit-keyframes fadeOutDownBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}@keyframes fadeOutDownBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}\"],[false,{\".fadeOutDownBig\":false},[\"-webkit-animation-name:fadeOutDownBig\",\"animation-name:fadeOutDownBig\"]],[true,\"@-webkit-keyframes fadeOutLeft{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"}@keyframes fadeOutLeft{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"}\"],[false,{\".fadeOutLeft\":false},[\"-webkit-animation-name:fadeOutLeft\",\"animation-name:fadeOutLeft\"]],[true,\"@-webkit-keyframes fadeOutLeftBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}@keyframes fadeOutLeftBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}\"],[false,{\".fadeOutLeftBig\":false},[\"-webkit-animation-name:fadeOutLeftBig\",\"animation-name:fadeOutLeftBig\"]],[true,\"@-webkit-keyframes fadeOutRight{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"}@keyframes fadeOutRight{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"}\"],[false,{\".fadeOutRight\":false},[\"-webkit-animation-name:fadeOutRight\",\"animation-name:fadeOutRight\"]],[true,\"@-webkit-keyframes fadeOutRightBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}@keyframes fadeOutRightBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}\"],[false,{\".fadeOutRightBig\":false},[\"-webkit-animation-name:fadeOutRightBig\",\"animation-name:fadeOutRightBig\"]],[true,\"@-webkit-keyframes fadeOutUp{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"}@keyframes fadeOutUp{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"}\"],[false,{\".fadeOutUp\":false},[\"-webkit-animation-name:fadeOutUp\",\"animation-name:fadeOutUp\"]],[true,\"@-webkit-keyframes fadeOutUpBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}@keyframes fadeOutUpBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}\"],[false,{\".fadeOutUpBig\":false},[\"-webkit-animation-name:fadeOutUpBig\",\"animation-name:fadeOutUpBig\"]],[true,\"@-webkit-keyframes flip{\"],[true,\"0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"}@keyframes flip{\"],[true,\"0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);-ms-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"}\"],[false,{\".animated.flip\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\",\"-webkit-animation-name:flip\",\"animation-name:flip\"]],[true,\"@-webkit-keyframes flipInX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"}@keyframes flipInX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateX(-10deg);-ms-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateX(10deg);-ms-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"}\"],[false,{\".flipInX\":false},[\"-webkit-animation-name:flipInX\",\"animation-name:flipInX\"]],[false,{\".flipInX:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes flipInY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"}@keyframes flipInY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateY(-10deg);-ms-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateY(10deg);-ms-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"}\"],[false,{\".flipInY\":false},[\"-webkit-animation-name:flipInY\",\"animation-name:flipInY\"]],[false,{\".flipInY:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes flipOutX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"}@keyframes flipOutX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"}\"],[false,{\".flipOutX\":false},[\"-webkit-animation-name:flipOutX\",\"animation-name:flipOutX\"]],[false,{\".flipOutX:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes flipOutY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"}@keyframes flipOutY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"}\"],[false,{\".flipOutY\":false},[\"-webkit-animation-name:flipOutY\",\"animation-name:flipOutY\"]],[false,{\".flipOutY:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes lightSpeedIn{\"],[true,\"0%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"60%{-webkit-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}\"],[true,\"80%{-webkit-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"}@keyframes lightSpeedIn{\"],[true,\"0%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"60%{-webkit-transform:translateX(-20%) skewX(30deg);-ms-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}\"],[true,\"80%{-webkit-transform:translateX(0%) skewX(-15deg);-ms-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"}\"],[false,{\".lightSpeedIn\":false},[\"-webkit-animation-name:lightSpeedIn\",\"animation-name:lightSpeedIn\",\"-webkit-animation-timing-function:ease-out\",\"animation-timing-function:ease-out\"]],[true,\"@-webkit-keyframes lightSpeedOut{\"],[true,\"0%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"}@keyframes lightSpeedOut{\"],[true,\"0%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"}\"],[false,{\".lightSpeedOut\":false},[\"-webkit-animation-name:lightSpeedOut\",\"animation-name:lightSpeedOut\",\"-webkit-animation-timing-function:ease-in\",\"animation-timing-function:ease-in\"]],[true,\"@-webkit-keyframes rotateIn{\"],[true,\"0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateIn{\"],[true,\"0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);-ms-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateIn\":false},[\"-webkit-animation-name:rotateIn\",\"animation-name:rotateIn\"]],[true,\"@-webkit-keyframes rotateInDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInDownLeft\":false},[\"-webkit-animation-name:rotateInDownLeft\",\"animation-name:rotateInDownLeft\"]],[true,\"@-webkit-keyframes rotateInDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInDownRight\":false},[\"-webkit-animation-name:rotateInDownRight\",\"animation-name:rotateInDownRight\"]],[true,\"@-webkit-keyframes rotateInUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInUpLeft\":false},[\"-webkit-animation-name:rotateInUpLeft\",\"animation-name:rotateInUpLeft\"]],[true,\"@-webkit-keyframes rotateInUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInUpRight\":false},[\"-webkit-animation-name:rotateInUpRight\",\"animation-name:rotateInUpRight\"]],[true,\"@-webkit-keyframes rotateOut{\"],[true,\"0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}\"],[true,\"}@keyframes rotateOut{\"],[true,\"0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);-ms-transform:rotate(200deg);transform:rotate(200deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOut\":false},[\"-webkit-animation-name:rotateOut\",\"animation-name:rotateOut\"]],[true,\"@-webkit-keyframes rotateOutDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}@keyframes rotateOutDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutDownLeft\":false},[\"-webkit-animation-name:rotateOutDownLeft\",\"animation-name:rotateOutDownLeft\"]],[true,\"@-webkit-keyframes rotateOutDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}@keyframes rotateOutDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutDownRight\":false},[\"-webkit-animation-name:rotateOutDownRight\",\"animation-name:rotateOutDownRight\"]],[true,\"@-webkit-keyframes rotateOutUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}@keyframes rotateOutUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutUpLeft\":false},[\"-webkit-animation-name:rotateOutUpLeft\",\"animation-name:rotateOutUpLeft\"]],[true,\"@-webkit-keyframes rotateOutUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}@keyframes rotateOutUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutUpRight\":false},[\"-webkit-animation-name:rotateOutUpRight\",\"animation-name:rotateOutUpRight\"]],[true,\"@-webkit-keyframes slideInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes slideInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".slideInDown\":false},[\"-webkit-animation-name:slideInDown\",\"animation-name:slideInDown\"]],[true,\"@-webkit-keyframes slideInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes slideInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".slideInLeft\":false},[\"-webkit-animation-name:slideInLeft\",\"animation-name:slideInLeft\"]],[true,\"@-webkit-keyframes slideInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes slideInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".slideInRight\":false},[\"-webkit-animation-name:slideInRight\",\"animation-name:slideInRight\"]],[true,\"@-webkit-keyframes slideOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}@keyframes slideOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}\"],[false,{\".slideOutLeft\":false},[\"-webkit-animation-name:slideOutLeft\",\"animation-name:slideOutLeft\"]],[true,\"@-webkit-keyframes slideOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}@keyframes slideOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}\"],[false,{\".slideOutRight\":false},[\"-webkit-animation-name:slideOutRight\",\"animation-name:slideOutRight\"]],[true,\"@-webkit-keyframes slideOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}@keyframes slideOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}\"],[false,{\".slideOutUp\":false},[\"-webkit-animation-name:slideOutUp\",\"animation-name:slideOutUp\"]],[true,\"@-webkit-keyframes slideInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes slideInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".slideInUp\":false},[\"-webkit-animation-name:slideInUp\",\"animation-name:slideInUp\"]],[true,\"@-webkit-keyframes slideOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}@keyframes slideOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}\"],[false,{\".slideOutDown\":false},[\"-webkit-animation-name:slideOutDown\",\"animation-name:slideOutDown\"]],[true,\"@-webkit-keyframes hinge{\"],[true,\"0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"40%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"80%{-webkit-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}\"],[true,\"100%{-webkit-transform:translateY(700px);transform:translateY(700px);opacity:0}\"],[true,\"}@keyframes hinge{\"],[true,\"0%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"20%,60%{-webkit-transform:rotate(80deg);-ms-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"40%{-webkit-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"80%{-webkit-transform:rotate(60deg) translateY(0);-ms-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}\"],[true,\"100%{-webkit-transform:translateY(700px);-ms-transform:translateY(700px);transform:translateY(700px);opacity:0}\"],[true,\"}\"],[false,{\".hinge\":false},[\"-webkit-animation-name:hinge\",\"animation-name:hinge\"]],[true,\"@-webkit-keyframes rollIn{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"}@keyframes rollIn{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);-ms-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);-ms-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"}\"],[false,{\".rollIn\":false},[\"-webkit-animation-name:rollIn\",\"animation-name:rollIn\"]],[true,\"@-webkit-keyframes rollOut{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}\"],[true,\"}@keyframes rollOut{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);-ms-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);-ms-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}\"],[true,\"}\"],[false,{\".rollOut\":false},[\"-webkit-animation-name:rollOut\",\"animation-name:rollOut\"]],[true,\"@-webkit-keyframes zoomIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1}\"],[true,\"}@keyframes zoomIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1}\"],[true,\"}\"],[false,{\".zoomIn\":false},[\"-webkit-animation-name:zoomIn\",\"animation-name:zoomIn\"]],[true,\"@-webkit-keyframes zoomInDown{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInDown{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInDown\":false},[\"-webkit-animation-name:zoomInDown\",\"animation-name:zoomInDown\"]],[true,\"@-webkit-keyframes zoomInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);-ms-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInLeft\":false},[\"-webkit-animation-name:zoomInLeft\",\"animation-name:zoomInLeft\"]],[true,\"@-webkit-keyframes zoomInRight{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(-48px);transform:scale(.475) translateX(-48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInRight{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);-ms-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(-48px);-ms-transform:scale(.475) translateX(-48px);transform:scale(.475) translateX(-48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInRight\":false},[\"-webkit-animation-name:zoomInRight\",\"animation-name:zoomInRight\"]],[true,\"@-webkit-keyframes zoomInUp{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInUp{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);-ms-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);-ms-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInUp\":false},[\"-webkit-animation-name:zoomInUp\",\"animation-name:zoomInUp\"]],[true,\"@-webkit-keyframes zoomOut{\"],[true,\"0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"100%{opacity:0}\"],[true,\"}@keyframes zoomOut{\"],[true,\"0%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"100%{opacity:0}\"],[true,\"}\"],[false,{\".zoomOut\":false},[\"-webkit-animation-name:zoomOut\",\"animation-name:zoomOut\"]],[true,\"@-webkit-keyframes zoomOutDown{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-transform-origin:center bottom;transform-origin:center bottom}\"],[true,\"}@keyframes zoomOutDown{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);-ms-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);-ms-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-transform-origin:center bottom;-ms-transform-origin:center bottom;transform-origin:center bottom}\"],[true,\"}\"],[false,{\".zoomOutDown\":false},[\"-webkit-animation-name:zoomOutDown\",\"animation-name:zoomOutDown\"]],[true,\"@-webkit-keyframes zoomOutLeft{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(42px);transform:scale(.475) translateX(42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-transform-origin:left center;transform-origin:left center}\"],[true,\"}@keyframes zoomOutLeft{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(42px);-ms-transform:scale(.475) translateX(42px);transform:scale(.475) translateX(42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-transform-origin:left center;-ms-transform-origin:left center;transform-origin:left center}\"],[true,\"}\"],[false,{\".zoomOutLeft\":false},[\"-webkit-animation-name:zoomOutLeft\",\"animation-name:zoomOutLeft\"]],[true,\"@-webkit-keyframes zoomOutRight{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(-42px);transform:scale(.475) translateX(-42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-transform-origin:right center;transform-origin:right center}\"],[true,\"}@keyframes zoomOutRight{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(-42px);-ms-transform:scale(.475) translateX(-42px);transform:scale(.475) translateX(-42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);-ms-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-transform-origin:right center;-ms-transform-origin:right center;transform-origin:right center}\"],[true,\"}\"],[false,{\".zoomOutRight\":false},[\"-webkit-animation-name:zoomOutRight\",\"animation-name:zoomOutRight\"]],[true,\"@-webkit-keyframes zoomOutUp{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-transform-origin:center top;transform-origin:center top}\"],[true,\"}@keyframes zoomOutUp{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-transform-origin:center top;-ms-transform-origin:center top;transform-origin:center top}\"],[true,\"}\"],[false,{\".zoomOutUp\":false},[\"-webkit-animation-name:zoomOutUp\",\"animation-name:zoomOutUp\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":4744,\"final_size\":48,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/css\\/owl.carousel.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"321729c807ca4dee8c7fcd62f722c92a\",\"parse_time\":0.016955852508544922,\"shake_time\":4.315376281738281e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".owl-carousel\":false},[\"display:none\",\"width:100%\",\"-webkit-tap-highlight-color:transparent\",\"position:relative\",\"z-index:1\"]],[false,{\".owl-carousel .owl-stage\":false},[\"position:relative\",\"-ms-touch-action:pan-Y\",\"touch-action:manipulation\",\"-moz-backface-visibility:hidden\"]],[false,{\".owl-carousel .owl-stage:after\":false},[\"content:\\\".\\\"\",\"display:block\",\"clear:both\",\"visibility:hidden\",\"line-height:0\",\"height:0\"]],[false,{\".owl-carousel .owl-stage-outer\":false},[\"position:relative\",\"overflow:hidden\",\"-webkit-transform:translate3d(0px,0px,0px)\"]],[false,{\".owl-carousel .owl-wrapper\":false,\".owl-carousel .owl-item\":false},[\"-webkit-backface-visibility:hidden\",\"-moz-backface-visibility:hidden\",\"-ms-backface-visibility:hidden\",\"-webkit-transform:translate3d(0,0,0)\",\"-moz-transform:translate3d(0,0,0)\",\"-ms-transform:translate3d(0,0,0)\"]],[false,{\".owl-carousel .owl-item\":false},[\"position:relative\",\"min-height:1px\",\"float:left\",\"-webkit-backface-visibility:hidden\",\"-webkit-tap-highlight-color:transparent\",\"-webkit-touch-callout:none\"]],[false,{\".owl-carousel .owl-item amp-img\":false,\".owl-carousel .owl-item amp-anim\":false},[\"display:block\",\"width:100%\"]],[false,{\".owl-carousel .owl-nav.disabled\":false,\".owl-carousel .owl-dots.disabled\":false},[\"display:none\"]],[false,{\".owl-carousel .owl-nav .owl-prev\":false,\".owl-carousel .owl-nav .owl-next\":false,\".owl-carousel .owl-dot\":false},[\"cursor:pointer\",\"-webkit-user-select:none\",\"-khtml-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\"]],[false,{\".owl-carousel .owl-nav button.owl-prev\":false,\".owl-carousel .owl-nav button.owl-next\":false,\".owl-carousel button.owl-dot\":false},[\"background:none\",\"color:inherit\",\"border:none\",\"font:inherit\"]],[false,{\".owl-carousel .owl-nav button.owl-prev:not(#_#_#_#_#_#_#_#_)\":false,\".owl-carousel .owl-nav button.owl-next:not(#_#_#_#_#_#_#_#_)\":false,\".owl-carousel button.owl-dot:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".owl-carousel.owl-loaded\":false},[\"display:block\"]],[false,{\".owl-carousel.owl-loading\":false},[\"opacity:0\",\"display:block\"]],[false,{\".owl-carousel.owl-hidden\":false},[\"opacity:0\"]],[false,{\".owl-carousel.owl-refresh .owl-item\":false},[\"visibility:hidden\"]],[false,{\".owl-carousel.owl-drag .owl-item\":false},[\"-ms-touch-action:pan-y\",\"touch-action:pan-y\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\"]],[false,{\".owl-carousel.owl-grab\":false},[\"cursor:move\",\"cursor:grab\"]],[false,{\".owl-carousel.owl-rtl\":false},[\"direction:rtl\"]],[false,{\".owl-carousel.owl-rtl .owl-item\":false},[\"float:right\"]],[false,{\".no-js .owl-carousel\":false},[\"display:block\"]],[false,{\".owl-carousel .animated\":false},[\"animation-duration:1000ms\",\"animation-fill-mode:both\"]],[false,{\".owl-carousel .owl-animated-in\":false},[\"z-index:0\"]],[false,{\".owl-carousel .owl-animated-out\":false},[\"z-index:1\"]],[false,{\".owl-carousel .fadeOut\":false},[\"animation-name:fadeOut\"]],[true,\"@keyframes fadeOut{\"],[true,\"0%{opacity:1}\"],[true,\"100%{opacity:0}\"],[true,\"}\"],[false,{\".owl-height\":false},[\"transition:height 500ms ease-in-out\"]],[false,{\".owl-carousel .owl-item .owl-lazy\":false},[\"opacity:0\",\"transition:opacity 400ms ease\"]],[false,{\".owl-carousel .owl-item .owl-lazy[src^=\\\"\\\"]\":false,\".owl-carousel .owl-item .owl-lazy:not([src])\":false},[\"max-height:0\"]],[false,{\".owl-carousel .owl-item amp-img.owl-lazy\":false,\".owl-carousel .owl-item amp-anim.owl-lazy\":false},[\"transform-style:preserve-3d\"]],[false,{\".owl-carousel .owl-video-wrapper\":false},[\"position:relative\",\"height:100%\",\"background:#000\"]],[false,{\".owl-carousel .owl-video-play-icon\":false},[\"position:absolute\",\"height:80px\",\"width:80px\",\"left:50%\",\"top:50%\",\"margin-left:-40px\",\"margin-top:-40px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/css\\/owl.video.play.png\\\") no-repeat\",\"cursor:pointer\",\"z-index:1\",\"-webkit-backface-visibility:hidden\",\"transition:transform 100ms ease\"]],[false,{\".owl-carousel .owl-video-play-icon:hover\":false},[\"-ms-transform:scale(1.3,1.3)\",\"transform:scale(1.3,1.3)\"]],[false,{\".owl-carousel .owl-video-playing .owl-video-tn\":false,\".owl-carousel .owl-video-playing .owl-video-play-icon\":false},[\"display:none\"]],[false,{\".owl-carousel .owl-video-tn\":false},[\"opacity:0\",\"height:100%\",\"background-position:center center\",\"background-repeat:no-repeat\",\"background-size:contain\",\"transition:opacity 400ms ease\"]],[false,{\".owl-carousel .owl-video-frame\":false},[\"position:relative\",\"z-index:1\",\"height:100%\",\"width:100%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1013,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/owlcarousel2.github.io\\/OwlCarousel2\\/assets\\/owlcarousel\\/assets\\/owl.theme.default.min.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"547aa8bb20ab8306b3b739fab5e4aa08\",\"parse_time\":0.004403114318847656,\"shake_time\":1.0013580322265625e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".owl-theme .owl-dots\":false,\".owl-theme .owl-nav\":false},[\"text-align:center\",\"-webkit-tap-highlight-color:transparent\"]],[false,{\".owl-theme .owl-nav\":false},[\"margin-top:10px\"]],[false,{\".owl-theme .owl-nav [class*=owl-]\":false},[\"color:#fff\",\"font-size:14px\",\"margin:5px\",\"padding:4px 7px\",\"background:#d6d6d6\",\"display:inline-block\",\"cursor:pointer\",\"border-radius:3px\"]],[false,{\".owl-theme .owl-nav [class*=owl-]:hover\":false},[\"background:#869791\",\"color:#fff\",\"text-decoration:none\"]],[false,{\".owl-theme .owl-nav .disabled\":false},[\"opacity:.5\",\"cursor:default\"]],[false,{\".owl-theme .owl-nav.disabled+.owl-dots\":false},[\"margin-top:10px\"]],[false,{\".owl-theme .owl-dots .owl-dot\":false},[\"display:inline-block\",\"zoom:1\"]],[false,{\".owl-theme .owl-dots .owl-dot span\":false},[\"width:10px\",\"height:10px\",\"margin:5px 7px\",\"background:#d6d6d6\",\"display:block\",\"-webkit-backface-visibility:visible\",\"transition:opacity .2s ease\",\"border-radius:30px\"]],[false,{\".owl-theme .owl-dots .owl-dot.active span\":false,\".owl-theme .owl-dots .owl-dot:hover span\":false},[\"background:#869791\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":65448,\"final_size\":8572,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/styles.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"7827cda6edfe62811923d93e516ee494\",\"parse_time\":0.6045119762420654,\"shake_time\":0.001024007797241211,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".texto\":false},[\"font-family:Raleway,sans-serif\",\"font-weight:400\",\"font-size:14px\",\"line-height:20px\",\"color:#152649\"]],[false,\"@media (min-width:1400px){\"],[false,{\".texto\":false},[\"font-size:18px\",\"line-height:24px\"]],[false,\"}\"],[false,{\".bg-cover\":false},[\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\"]],[false,{\".box-shadow\":false},[\"-webkit-box-shadow:0 2px 6px 0 rgba(50,50,50,.3)\",\"-moz-box-shadow:0 2px 6px 0 rgba(50,50,50,.3)\",\"box-shadow:0 2px 6px 0 rgba(50,50,50,.3)\"]],[true,{\"html\":true},[\"-webkit-font-smoothing:antialiased\",\"background-color:#fff\"]],[true,{\"body\":true},[\"background-color:#fff\",\"font-family:Raleway,sans-serif\",\"font-weight:400\",\"font-size:14px\",\"line-height:20px\",\"color:#152649\",\"-webkit-font-smoothing:subpixel-antialiased\",\"overflow-x:hidden\"]],[true,\"@media (min-width:1400px){\"],[true,{\"body\":true},[\"font-size:18px\",\"line-height:24px\"]],[true,\"}\"],[true,{\"a\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"a:hover\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"strong\":true},[\"font-weight:700\"]],[true,{\"amp-img\":true,\"amp-anim\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".error\":false},[\"width:100%\"]],[false,{\".error:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:20px\",\"text-align:left\",\"left:0\",\"color:#c00\",\"font-weight:500\"]],[false,{\"label.error:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".wpcf7-not-valid-tip:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".wpcf7-not-valid:not(#_#_#_#_#_#_#_)\":false},[\"border:1px solid red\"]],[true,{\".nospace\":true},[\"margin:0\",\"padding:0\"]],[false,{\".nopadding\":false},[\"padding:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".nopadding\":false},[\"padding:0\",\"margin:0\"]],[false,\"}\"],[false,{\"input:focus\":false},[\"outline-color:transparent\",\"outline-style:none\"]],[false,{\"textarea:focus\":false},[\"outline-color:transparent\",\"outline-style:none\"]],[false,{\"input.form-control\":false},[\"font-family:Raleway,sans-serif\",\"font-weight:500\",\"width:100%\",\"font-size:12px\",\"background:#dfdfdf\",\"color:grey\",\"height:40px\",\"line-height:40px\",\"border:0 solid #343636\",\"margin-bottom:10px\",\"border-radius:0\",\"-moz-border-radius:0\",\"-webkit-border-radius:0\",\"-webkit-box-shadow:inset 0 0 0 transparent\",\"box-shadow:inset 0 0 0 transparent\",\"padding:0 10px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"input.form-control\":false},[\"font-size:14px\",\"height:45px\",\"line-height:45px\"]],[false,\"}\"],[false,{\"textarea.form-control\":false},[\"font-family:Raleway,sans-serif\",\"font-weight:500\",\"width:100%\",\"font-size:12px\",\"background:#dfdfdf\",\"color:grey\",\"height:140px\",\"border:0 solid #343636\",\"margin-bottom:10px\",\"border-radius:0\",\"-moz-border-radius:0\",\"-webkit-border-radius:0\",\"-webkit-box-shadow:inset 0 0 0 transparent\",\"box-shadow:inset 0 0 0 transparent\",\"padding:10px\",\"resize:none\"]],[false,\"@media (min-width:1400px){\"],[false,{\"textarea.form-control\":false},[\"font-size:14px\"]],[false,\"}\"],[false,{\".btn\":false},[\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"border-radius:0\",\"-moz-border-radius:0\",\"-webkit-border-radius:0\",\"font-family:Raleway,sans-serif\",\"display:inline-block\",\"display:inline-block\",\"line-height:40px\",\"color:#fff\",\"border:0 solid #343636\",\"background-color:#152649\",\"font-size:14px\",\"font-weight:500\",\"text-align:center\",\"padding:0 20px\",\"margin-bottom:50px\"]],[false,\"@media (max-width:992px){\"],[false,{\".btn\":false},[\"width:100%\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".btn\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".btn:hover\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".btn1\":false},[\"display:inline-block\",\"background:#90f247\",\"background:-moz-linear-gradient(left,#90f247 0,#00debb 100%)\",\"background:-webkit-linear-gradient(left,#90f247 0,#00debb 100%)\",\"background:linear-gradient(to right,#90f247 0,#00debb 100%)\",\"padding:2px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\"]],[false,{\".btn1 .mask-btn\":false},[\"width:100%\",\"padding:10px 9px 10px 9px\",\"background-color:#fff\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:15px\",\"font-size:16px\",\"color:#152649\",\"-webkit-transition:all .4s ease-in-out\",\"-moz-transition:all .4s ease-in-out\",\"transition:all .4s ease-in-out\"]],[false,{\".btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,\"@media (min-width:1400px){\"],[false,{\".btn1 .mask-btn\":false},[\"padding:20px 20px 20px 19px\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\",\"line-height:17px\",\"font-size:18px\"]],[false,\"}\"],[false,{\".btn-learn\":false},[\"width:auto\",\"display:inline-block\",\"padding:10px 20px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"background-color:#152649\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:15px\",\"font-size:16px\",\"color:#fff\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".btn-learn:hover\":false},[\"background-color:#0c1832\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".btn-learn\":false},[\"padding:20px 30px\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\",\"line-height:17px\",\"font-size:18px\"]],[false,{\".btn-learn:hover\":false},[\"border-radius:8px\",\"-moz-border-radius:8px\",\"-webkit-border-radius:8px\"]],[false,\"}\"],[false,{\".btn-how\":false},[\"width:auto\",\"display:inline-block\",\"padding:10px 20px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"background-color:#fff\",\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:15px\",\"font-size:16px\",\"color:#3e3e3e\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"margin-top:10px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".btn-how:hover\":false},[\"background-color:#0c1832\",\"color:#fff\"]],[false,\"@media (min-width:1400px){\"],[false,{\".btn-how\":false},[\"padding:20px 30px\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\",\"line-height:17px\",\"font-size:18px\",\"font-weight:600\"]],[false,{\".btn-how:hover\":false},[\"border-radius:8px\",\"-moz-border-radius:8px\",\"-webkit-border-radius:8px\"]],[false,\"}\"],[false,{\".ajax-loader:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[true,{\"::-webkit-input-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\":-moz-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\"::-moz-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\":-ms-input-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\"header\":true},[\"top:0\",\"width:100%\",\"height:100px\",\"position:fixed\",\"background-color:#fff\",\"z-index:3\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[true,{\"header .row\":true},[\"margin:0\"]],[true,\"@media (min-width:1400px){\"],[true,{\"header\":true},[\"height:120px\"]],[true,\"}\"],[false,{\"header .logo\":false},[\"line-height:100px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header .logo amp-img\":false,\"header .logo amp-anim\":false},[\"height:30px\",\"margin-left:15px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header .logo\":false},[\"line-height:120px\"]],[false,{\"header .logo amp-img\":false,\"header .logo amp-anim\":false},[\"height:50px\"]],[false,\"}\"],[false,{\"header .min-header\":false},[\"color:#152649\",\"font-size:30px\",\"text-align:right\",\"line-height:100px\",\"display:none\",\"cursor:pointer\",\"margin-right:15px\"]],[false,\"@media (max-width:992px){\"],[false,{\"header .min-header\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header .min-header\":false},[\"line-height:120px\",\"font-size:50px\"]],[false,\"}\"],[false,{\"header .divmenu\":false},[\"text-align:right\"]],[false,{\"header .menu-menu-interna-container\":false,\"header .menu-menu-principal-container\":false},[\"display:inline-block\"]],[false,{\"header #menu\":false},[\"width:100%\",\"margin:0\",\"padding:0\",\"text-align:right\"]],[false,{\"header #menu li\":false},[\"position:relative\",\"list-style:none\",\"display:inline-block\",\"color:#152649\",\"font-size:13px\",\"padding:0 15px\",\"line-height:100px\",\"text-align:center\",\"font-weight:700\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header #menu li:after\":false},[\"width:0\",\"height:7px\",\"top:50%\",\"margin-top:-3px\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background:#adf231\",\"background:-webkit-linear-gradient(left,#adf231 0,#00dbc5 100%)\",\"background:-o-linear-gradient(left,#adf231 0,#00dbc5 100%)\",\"background:linear-gradient(to right,#adf231 0,#00dbc5 100%)\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"z-index:-1\"]],[false,{\"header #menu li.current-menu-ancestor:after\":false,\"header #menu li.current_page_item:after\":false},[\"width:100%\"]],[false,{\"header #menu li:hover:after\":false},[\"width:100%\"]],[false,\"@media (max-width:992px){\"],[false,{\"header #menu\":false},[\"background-color:#fff\",\"display:none\",\"width:200%\",\"right:0\",\"top:100px\",\"position:absolute\"]],[false,{\"header #menu li\":false},[\"width:100%\",\"display:block\",\"line-height:40px\"]],[false,{\"header #menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header #menu\":false},[\"top:120px\"]],[false,{\"header #menu li\":false},[\"line-height:120px\",\"font-size:15px\"]],[false,\"}\"],[false,{\"header #menu .sub-menu\":false},[\"width:200px\",\"background-color:#fff\",\"display:none\",\"position:absolute\",\"padding:0\",\"text-align:left\",\"margin-left:-15px\",\"margin-top:-20px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header #menu .sub-menu li\":false},[\"display:block\",\"color:#727272\",\"font-weight:400\",\"padding:0 15px\",\"text-align:left\"]],[false,{\"header #menu .sub-menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"line-height:18px\",\"margin:15px 0\"]],[false,{\"header #menu .sub-menu li:hover\":false},[\"color:#00debb\"]],[false,\"@media (max-width:992px){\"],[false,{\"header #menu .sub-menu\":false},[\"position:relative\",\"width:100%\"]],[false,{\"header #menu .sub-menu:not(#_#_#_#_#_#_#_#_#_)\":false},[\"display:block\",\"margin:0\",\"padding:0\"]],[false,{\"header #menu .sub-menu li\":false},[\"color:#152649\",\"font-size:13px\",\"line-height:18px\",\"text-align:center\",\"font-weight:700\",\"margin:15px 0\"]],[false,{\"header #menu .sub-menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header #menu .sub-menu li\":false},[\"line-height:60px\",\"font-size:15px\"]],[false,\"}\"],[false,{\"header .menu-item-has-children:hover .sub-menu:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\"header.mini\":false},[\"height:80px\",\"-webkit-box-shadow:0 0 20px 1px rgba(0,0,0,.1)\",\"box-shadow:0 0 20px 1px rgba(0,0,0,.1)\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini\":false},[\"height:100px\"]],[false,\"}\"],[false,{\"header.mini .logo\":false},[\"line-height:80px\"]],[false,{\"header.mini .logo amp-img\":false,\"header.mini .logo amp-anim\":false},[\"height:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini .logo\":false},[\"line-height:100px\"]],[false,{\"header.mini .logo amp-img\":false,\"header.mini .logo amp-anim\":false},[\"height:40px\"]],[false,\"}\"],[false,{\"header.mini .min-header\":false},[\"line-height:80px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini .min-header\":false},[\"line-height:100px\"]],[false,\"}\"],[false,{\"header.mini #menu li\":false},[\"line-height:80px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini #menu li\":false},[\"line-height:100px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\"header.mini #menu\":false},[\"top:80px\"]],[false,{\"header.mini #menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"line-height:50px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini #menu\":false},[\"top:100px\"]],[false,{\"header.mini #menu li\":false},[\"line-height:100px\"]],[false,\"}\"],[false,{\"header.mini .sub-menu\":false},[\"width:200px\",\"background-color:#fff\",\"display:none\",\"position:absolute\",\"padding:0\",\"text-align:left\",\"margin-left:-15px\",\"margin-top:40px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header.mini .sub-menu:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-bottom:10px\"]],[false,{\"header.mini .sub-menu li\":false},[\"display:block\",\"color:#727272\",\"font-weight:400\",\"text-align:left\",\"margin:15px 0\"]],[false,{\"header.mini .sub-menu li:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:0 15px\",\"line-height:15px\",\"line-height:40px\"]],[false,\"@media (max-width:992px){\"],[false,{\"header.mini .sub-menu li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\"header #menu-item-42>a:not(#_#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,\"}\"],[true,{\"h1\":true},[\"position:relative\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:90px\",\"font-size:90px\",\"color:#152649\",\"margin:0 0 5px\"]],[true,\"@media (min-width:1400px){\"],[true,{\"h1\":true},[\"font-size:110px\",\"line-height:110px\"]],[true,\"}\"],[false,{\"h2\":false},[\"position:relative\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:40px\",\"font-size:40px\",\"color:#152649\",\"margin:0 0 5px\"]],[false,{\"h2 small\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:40px\",\"font-size:40px\"]],[false,{\"h2.white\":false},[\"color:#fff\",\"margin-top:20px\",\"margin-bottom:10px\"]],[false,{\"h2 strong\":false},[\"color:#a1f350\"]],[false,\"@media (min-width:1400px){\"],[false,{\"h2\":false},[\"font-size:60px\",\"line-height:60px\"]],[false,{\"h2 small\":false},[\"font-size:60px\",\"line-height:60px\"]],[false,\"}\"],[false,{\"h3\":false},[\"position:relative\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"color:#152649\",\"margin:0 0 5px\"]],[false,{\"h3.topspace\":false},[\"margin-top:90px\",\"margin-bottom:40px\"]],[true,{\".top-info\":true},[\"width:100%\",\"height:1px\",\"background:-moz-linear-gradient(left,rgba(43,154,199,0) 0,rgba(43,154,199,.84) 21%,#48a8cf 25%,#ccc 50%,#bff466 75%,rgba(183,243,84,.88) 78%,rgba(183,243,84,0) 100%)\",\"background:-webkit-linear-gradient(left,rgba(43,154,199,0) 0,rgba(43,154,199,.84) 21%,#48a8cf 25%,#ccc 50%,#bff466 75%,rgba(183,243,84,.88) 78%,rgba(183,243,84,0) 100%)\",\"background:linear-gradient(to right,rgba(43,154,199,0) 0,rgba(43,154,199,.84) 21%,#48a8cf 25%,#ccc 50%,#bff466 75%,rgba(183,243,84,.88) 78%,rgba(183,243,84,0) 100%)\"]],[false,{\".top-info-devops\":false},[\"width:100%\",\"height:1px\",\"background:#2c9ac7\",\"background:-moz-linear-gradient(left,#2c9ac7 0,#fff 100%)\",\"background:-webkit-linear-gradient(left,#2c9ac7 0,#fff 100%)\",\"background:linear-gradient(to right,#2c9ac7 0,#fff 100%)\",\"margin-bottom:25px\"]],[false,{\".line-gray\":false},[\"width:100%\",\"height:1px\",\"background-color:#ccc\",\"margin:50px 0\"]],[false,{\".top\":false},[\"width:100%\",\"position:relative\",\"margin-top:100px\",\"background-color:#fff\",\"color:#a3a3a3\",\"display:table\"]],[false,{\".top .wrap-top\":false},[\"display:table-row\",\"width:100%\",\"height:100%\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,{\".top .wrap-top .content\":false},[\"display:table-cell\",\"width:100%\",\"height:100%\",\"vertical-align:middle\"]],[false,{\".top-home h2\":false},[\"position:relative\",\"margin-top:30px\",\"padding-top:30px\"]],[false,{\".top-home h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#6ecff4\"]],[false,{\".top-home h2:hover:after\":false},[\"width:70px\",\"background-color:#b7f254\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-home h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".top-home .wrap-top\":false},[\"text-align:center\"]],[false,{\".top-home .wrap-top:not(#_#_#_#_#_#_#_)\":false},[\"background-image:none\"]],[false,\"}\"],[false,{\".services\":false},[\"width:100%\",\"position:relative\",\"background-color:#f8f8f8\",\"padding-bottom:100px\"]],[false,\"@media (max-width:992px){\"],[false,{\".services\":false},[\"padding-bottom:50px\"]],[false,\"}\"],[false,{\".services .top-info\":false},[\"margin-bottom:100px\"]],[false,{\".services .info-text\":false},[\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:35px\",\"font-size:25px\",\"color:#8c8c8c\",\"text-align:center\",\"margin-bottom:100px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".services .info-text\":false},[\"line-height:43px\",\"font-size:33px\"]],[false,\"}\"],[false,{\".services .service\":false},[\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:35px\",\"font-size:25px\",\"color:#152649\",\"text-align:center\"]],[false,{\".services .service .icon\":false},[\"text-align:center\",\"border-right:1px solid #ccc\",\"margin-bottom:50px\"]],[false,{\".services .service .icon.last\":false},[\"border:0\"]],[false,{\".services .service .icon amp-img\":false,\".services .service .icon amp-anim\":false},[\"max-height:140px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".services .service .icon amp-img\":false,\".services .service .icon amp-anim\":false},[\"max-height:170px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".services .service .icon\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".services .service\":false},[\"margin-bottom:50px\"]],[false,\"}\"],[true,{\".wephrase\":true},[\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:60px\",\"font-size:60px\",\"color:#152649\"]],[true,{\".wephrase .wrap-phrase\":true},[\"display:inline-block\"]],[false,{\".wephrase .dot\":false},[\"display:inline-block\",\"color:#b7f254\",\"animation:blinker 1s linear infinite\"]],[true,\"@keyframes blinker{\"],[true,\"50%{opacity:0}\"],[true,\"}\"],[false,{\".microservices\":false},[\"width:100%\",\"position:relative\",\"background-color:#efefef\",\"-webkit-box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices\":false},[\"height:auto\"]],[false,{\".microservices:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".microservices\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".microservices .service-padding\":false},[\"padding:100px 0\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-microservices.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top -30px right\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".microservices amp-img\":false,\".microservices amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices amp-img\":false,\".microservices amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".microservices amp-img\":false,\".microservices amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,{\".microservices h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".microservices h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#b8b8b8\"]],[false,{\".microservices h2:hover:after\":false},[\"width:70px\",\"background-color:#b7f254\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".microservices .btn1 .mask-btn\":false},[\"background-color:#efefef\"]],[false,{\".microservices .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".machine_learning\":false},[\"width:100%\",\"position:relative\",\"background-color:#f2f2f2\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning\":false},[\"height:auto\"]],[false,{\".machine_learning:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".machine_learning\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".machine_learning h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".machine_learning h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#b993e7\"]],[false,{\".machine_learning h2:hover:after\":false},[\"width:70px\",\"background-color:#1ab7d5\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".machine_learning .btn1\":false},[\"background:#9061d7\",\"background:-moz-linear-gradient(left,#9061d7 0,#2c99c8 100%)\",\"background:-webkit-linear-gradient(left,#9061d7 0,#2c99c8 100%)\",\"background:linear-gradient(to right,#9061d7 0,#2c99c8 100%)\"]],[false,{\".machine_learning .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\"]],[false,{\".machine_learning .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".machine_learning .service-padding\":false},[\"padding:100px 0\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-ml.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top -10px right\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".machine_learning .wrap-image\":false},[\"text-align:right\"]],[false,{\".machine_learning amp-img\":false,\".machine_learning amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning amp-img\":false,\".machine_learning amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".machine_learning amp-img\":false,\".machine_learning amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,{\".machine_learning .subitems .item:after\":false},[\"background:#2c99c8\",\"background:-moz-linear-gradient(top,#2c99c8 0,#9061d7 100%)\",\"background:-webkit-linear-gradient(top,#2c99c8 0,#9061d7 100%)\",\"background:linear-gradient(to bottom,#2c99c8 0,#9061d7 100%)\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".digital_transformation\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation\":false},[\"height:auto\"]],[false,{\".digital_transformation:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".digital_transformation\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".digital_transformation h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".digital_transformation h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".digital_transformation h2:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".digital_transformation .btn1\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to right,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".digital_transformation .btn1 .mask-btn\":false},[\"background-color:#fff\"]],[false,{\".digital_transformation .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".digital_transformation .service-padding\":false},[\"padding:100px 0\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".digital_transformation .wrap-image\":false},[\"text-align:right\"]],[false,{\".digital_transformation amp-img\":false,\".digital_transformation amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation amp-img\":false,\".digital_transformation amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".digital_transformation amp-img\":false,\".digital_transformation amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,{\".digital_transformation .subitems .item:after\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to bottom,#02c6d9 0,#05d2d9 100%)\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".devops\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"-webkit-box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops\":false},[\"height:auto\"]],[false,{\".devops:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".devops\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".devops h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".devops h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#95f896\"]],[false,{\".devops h2:hover:after\":false},[\"width:70px\",\"background-color:#2d98c6\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".devops .service-padding\":false},[\"padding:100px 0\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-devops.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top right\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".devops amp-img\":false,\".devops amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops amp-img\":false,\".devops amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".devops amp-img\":false,\".devops amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".devops .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".call_to_action\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"text-align:center\",\"padding:50px 0\"]],[false,{\".call_to_action.about-box\":false},[\"background-color:#f7f7f7\",\"-webkit-box-shadow:inset 0 -10px 30px -10px rgba(0,0,0,.3)\",\"box-shadow:inset 0 -10px 30px -10px rgba(0,0,0,.3)\"]],[false,{\".call_to_action.about-box .btn1 .mask-btn\":false},[\"background-color:#f7f7f7\"]],[false,{\".call_to_action.about-box .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process\":false},[\"width:100%\",\"position:relative\",\"background-color:#ccc\",\"overflow:hidden\"]],[false,{\".process .process-item\":false},[\"width:100%\",\"padding:80px\",\"height:500px\"]],[false,{\".process .process-item p\":false},[\"height:100px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process .process-item p\":false},[\"height:130px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item:not(#_#_#_#_#_#_#_)\":false},[\"padding:80px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".process .process-item\":false},[\"height:600px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".process\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".process .process-item-1\":false},[\"position:relative\",\"background:#15a3cc\",\"background:-moz-linear-gradient(left,#15a3cc 0,#15b5d5 100%)\",\"background:-webkit-linear-gradient(left,#15a3cc 0,#15b5d5 100%)\",\"background:linear-gradient(to right,#15a3cc 0,#15b5d5 100%)\"]],[false,{\".process .process-item-1:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:28px\",\"height:97px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrow1.png\\\")\",\"top:3px\",\"right:-28px\",\"z-index:2\"]],[false,{\".process .process-item-1 h2.white\":false},[\"position:relative\",\"padding-top:30px\"]],[false,{\".process .process-item-1 h2.white:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#6ecff4\"]],[false,{\".process .process-item-1 h2.white:hover:after\":false},[\"width:70px\",\"background-color:#152649\"]],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item-1 h2.white:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process .process-item-2\":false},[\"position:relative\",\"padding-top:125px\",\"background:#c4c4c4\",\"background:-moz-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:-webkit-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:linear-gradient(to right,#c4c4c4 0,#ccc 100%)\"]],[false,{\".process .process-item-2:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:28px\",\"height:97px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrow2.png\\\")\",\"top:3px\",\"right:-28px\",\"z-index:2\"]],[false,{\".process .process-item-2 h2.white\":false},[\"position:relative\",\"padding-top:30px\"]],[false,{\".process .process-item-2 h2.white:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background:#878787\",\"background:-moz-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:-webkit-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:linear-gradient(to right,#878787 0,#aeaeae 100%)\"]],[false,{\".process .process-item-2 h2.white:hover:after\":false},[\"width:70px\",\"background-color:#878787\"]],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item-2 h2.white:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process .process-item-3\":false},[\"position:relative\",\"padding-top:125px\",\"background:-moz-linear-gradient(left,#00debb 0,#90f247 100%)\",\"background:-webkit-linear-gradient(left,#00debb 0,#90f247 100%)\",\"background:linear-gradient(to right,#00debb 0,#90f247 100%)\"]],[false,{\".process .process-item-3 h2.white\":false},[\"position:relative\",\"padding-top:30px\"]],[false,{\".process .process-item-3 h2.white:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#6ecff4\"]],[false,{\".process .process-item-3 h2.white:hover:after\":false},[\"width:70px\",\"background-color:#152649\"]],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item-3 h2.white:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".case_study\":false},[\"width:100%\",\"position:relative\",\"background-color:#f1f1f1\",\"padding:100px 0 70px\"]],[false,\"@media (max-width:992px){\"],[false,{\".case_study\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".case_study h2\":false},[\"margin-bottom:20px\",\"position:relative\",\"padding-top:50px\"]],[false,{\".case_study h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#b8b8b8\"]],[false,{\".case_study h2:hover:after\":false},[\"width:70px\"]],[false,\"@media (max-width:992px){\"],[false,{\".case_study h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".case_study .btn1\":false},[\"margin-top:30px\"]],[false,{\".case_study .btn1 .mask-btn\":false},[\"background-color:#f1f1f1\"]],[false,{\".case_study .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".case_study .wrap-image\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-case-home.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top center\",\"background-size:100% auto\"]],[false,\"@media (max-width:992px){\"],[false,{\".case_study .wrap-image\":false},[\"margin-top:40px\"]],[false,\"}\"],[false,{\".partners\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"text-align:center\",\"padding:50px 0\"]],[false,{\".partners .owl-dots\":false},[\"width:100%\",\"position:relative\",\"text-align:center\"]],[false,{\".partners .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".partners .owl-dots .owl-dot\":false},[\"width:6px\",\"height:6px\",\"background-color:#ccc\",\"display:inline-block\",\"margin:0 10px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\"]],[false,{\".partners .owl-dots .owl-dot.active\":false},[\"background-color:#3b3b3b\"]],[false,{\".about-intern\":false},[\"background-color:#f7f7f7\",\"color:#152649\",\"font-size:13px\"]],[false,{\".about-intern h1\":false},[\"font-size:50px\",\"line-height:50px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-intern\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".about-intern .btn1\":false},[\"margin-bottom:20px\"]],[false,{\".about-intern .btn1 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".about-intern .wrap-top\":false},[\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:bottom center\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-intern .wrap-top\":false},[\"text-align:center\"]],[false,{\".about-intern .wrap-top:not(#_#_#_#_#_#_#_)\":false},[\"background-image:none\"]],[false,\"}\"],[false,{\".cases-intern\":false},[\"background-color:#fff\",\"color:#fff\",\"font-size:13px\",\"background-position:right\",\"background-repeat:no-repeat\",\"background-size:auto 100%\"]],[false,\"@media (max-width:992px){\"],[false,{\".cases-intern\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".cases-intern\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".cases-intern h1\":false},[\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:40px\",\"font-size:40px\",\"color:#fff\",\"margin:0 0 5px\"]],[false,{\".cases-intern h1 small\":false},[\"color:#00ddbd\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:20px\",\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".cases-intern h1\":false},[\"line-height:50px\",\"font-size:50px\"]],[false,{\".cases-intern h1 small\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".cases-intern .wrap-top\":false},[\"background:-moz-linear-gradient(left,#002048 0,rgba(0,32,72,.1) 50%,rgba(0,32,72,0) 65%,rgba(0,32,72,0) 100%)\",\"background:-webkit-linear-gradient(left,#002048 0,#002048 50%,rgba(0,32,72,0) 65%,rgba(0,32,72,0) 100%)\",\"background:linear-gradient(to right,#002048 0,#002048 50%,rgba(0,32,72,0) 65%,rgba(0,32,72,0) 100%)\"]],[false,\"@media (max-width:992px){\"],[false,{\".cases-intern .wrap-top\":false},[\"background:#002048\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".content-cases\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".content-cases .gray\":false},[\"font-size:14px\",\"background-color:#f7f7f7\",\"color:#6b6b6b\",\"padding:40px 40px 20px\",\"margin-top:-60px\",\"margin-bottom:50px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".content-cases .gray\":false},[\"font-size:16px\",\"line-height:18px\"]],[false,\"}\"],[false,{\".content-cases h3\":false},[\"color:#6b6b6b\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:20px\",\"font-size:20px\",\"margin-bottom:10px\"]],[false,{\".content-cases .content-cases2\":false},[\"color:#6b6b6b\",\"padding:50px 0 30px\"]],[false,{\".content-cases .bg-gray\":false},[\"font-size:14px\",\"background-color:#f7f7f7\",\"color:#6b6b6b\",\"padding:15px\",\"margin-bottom:50px\"]],[false,{\".content-cases .content-downgray\":false},[\"text-align:center\"]],[false,{\".content-cases .content-downgray amp-img\":false,\".content-cases .content-downgray amp-anim\":false},[\"max-width:60%\"]],[false,{\".content-cases .content-downgray .top-info\":false},[\"margin:70px 0\"]],[false,{\".content-cases .owl-dots\":false},[\"margin-top:20px\",\"width:100%\",\"position:relative\",\"text-align:center\"]],[false,{\".content-cases .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".content-cases .owl-dots .owl-dot\":false},[\"width:6px\",\"height:6px\",\"background-color:#ccc\",\"display:inline-block\",\"margin:0 10px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\"]],[false,{\".content-cases .owl-dots .owl-dot.active\":false},[\"background-color:#3b3b3b\"]],[false,{\".content-cases .gallery-cases\":false},[\"margin-top:70px\"]],[false,{\".content-cases .gallery-cases amp-img\":false,\".content-cases .gallery-cases amp-anim\":false},[\"border:2px solid #ccc\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\"]],[false,{\".content-cases .gallery-cases amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".content-cases .gallery-cases amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".process-intern\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"color:#b2b2b2\",\"font-size:20px\",\"line-height:40px\",\"font-family:Rajdhani\",\"font-weight:700\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process-intern\":false},[\"font-size:30px\",\"line-height:50px\"]],[false,\"}\"],[false,{\".process-intern .wrap-top\":false},[\"background-position:bottom center\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\"]],[false,\"@media (max-width:992px){\"],[false,{\".process-intern .wrap-top\":false},[\"background-position:bottom center\",\"text-align:center\"]],[false,{\".process-intern .wrap-top:not(#_#_#_#_#_#_#_)\":false},[\"background-image:none\"]],[false,\"}\"],[false,{\".about-process\":false},[\"width:100%\",\"position:relative\",\"background-color:#f1f1f1\",\"padding:70px 0\",\"text-align:center\"]],[false,{\".about-process .wephrase\":false},[\"font-size:35px\",\"line-height:35px\",\"margin-bottom:30px\"]],[false,{\".about-process .top-info\":false},[\"margin-top:100px\"]],[false,{\".line-process\":false},[\"width:60%\",\"height:1px\",\"margin:50px 20%\",\"background:#2b9ac7\",\"background:-moz-linear-gradient(left,#2b9ac7 0,#fff 100%)\",\"background:-webkit-linear-gradient(left,#2b9ac7 0,#fff 100%)\",\"background:linear-gradient(to right,#2b9ac7 0,#fff 100%)\"]],[false,{\".process-part\":false},[\"width:100%\",\"position:relative\",\"padding:70px 0\",\"font-size:13px\"]],[false,\"@media (max-width:992px){\"],[false,{\".process-part .btn1\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".process-part\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".process1\":false},[\"background-color:#15a7ce\",\"color:#002048\",\"font-weight:500\"]],[false,{\".process1 h2\":false},[\"color:#fff\",\"line-height:20px\"]],[false,{\".process1 h2 small\":false},[\"color:#98e36c\",\"font-size:18px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process1 h2\":false},[\"line-height:50px\"]],[false,{\".process1 h2 small\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".process1 h3\":false},[\"color:#fff\",\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process1 h3\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".process1 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process1:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:70px\",\"height:35px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrowd1.png\\\")\",\"background-position:bottom center\",\"bottom:-35px\",\"margin-left:50%\",\"left:-35px\",\"z-index:2\"]],[false,{\".process1 .lineb\":false},[\"width:2px\",\"height:600px\",\"margin:0 auto\",\"background-color:rgba(255,255,255,.2)\"]],[false,{\".process1 .centro\":false},[\"text-align:center\"]],[false,{\".process1 .centro amp-img\":false,\".process1 .centro amp-anim\":false},[\"max-width:100px\"]],[false,\"@media (max-width:992px){\"],[false,{\".process1 .centro\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process2\":false},[\"background-color:#d7d7d7\",\"color:#565656\",\"font-weight:500\"]],[false,{\".process2 h2\":false},[\"margin-bottom:30px\"]],[false,{\".process2 h3\":false},[\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process2 h3\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".process2 .check-items\":false},[\"margin:20px 0\"]],[false,{\".process2 .check-items .icheck\":false},[\"position:relative\",\"padding-left:30px\",\"min-height:30px\",\"font-size:20px\",\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:20px\",\"padding-top:5px\"]],[false,{\".process2 .check-items .icheck:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:20px\",\"height:100%\",\"top:0\",\"left:0\",\"background-repeat:no-repeat\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/checkb.png\\\")\",\"background-position:center\",\"background-size:100% auto\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process2 .check-items .icheck\":false},[\"font-size:23px\",\"line-height:23px\"]],[false,\"}\"],[false,{\".process2 .btn1\":false},[\"background:#c4c4c4\",\"background:-moz-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:-webkit-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:linear-gradient(to right,#c4c4c4 0,#ccc 100%)\"]],[false,{\".process2 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process2:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:70px\",\"height:35px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrowd2.png\\\")\",\"background-position:bottom center\",\"bottom:-35px\",\"margin-left:50%\",\"left:-35px\",\"z-index:2\"]],[false,\"@media (max-width:992px){\"],[false,{\".process2 amp-img\":false,\".process2 amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process3\":false},[\"color:#002048\",\"background:#38cea3\",\"background:-moz-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:-webkit-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:linear-gradient(to right,#38cea3 0,#75e168 100%)\",\"font-weight:500\"]],[false,{\".process3 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process3 h2\":false},[\"color:#fff\"]],[false,{\".process3 .check-items\":false},[\"margin:20px 0\"]],[false,{\".process3 .check-items .icheck\":false},[\"position:relative\",\"padding-left:15px\",\"padding-left:10px\",\"margin-left:35px\",\"min-height:30px\",\"font-size:14px\",\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:20px\",\"margin-bottom:20px\",\"border-left:1px solid #fff\"]],[false,{\".process3 .check-items .icheck:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:20px\",\"height:100%\",\"top:0\",\"left:-35px\",\"background-repeat:no-repeat\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/checkb.png\\\")\",\"background-position:left center\",\"background-size:100% auto\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process3 .check-items .icheck\":false},[\"font-size:23px\",\"line-height:23px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".process3 amp-img\":false,\".process3 amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".end-process\":false},[\"width:100%\",\"position:relative\",\"background-color:#f6f6f6\",\"padding:70px 0\",\"text-align:center\"]],[false,{\".end-process .wephrase\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,{\".end-process .logos\":false},[\"text-align:center\",\"margin-top:50px\"]],[false,{\".end-process .logos amp-img\":false,\".end-process .logos amp-anim\":false},[\"display:inline-block\",\"height:90px\",\"margin:0 30px\",\"-webkit-transition:all .2s ease-in-out\",\"-moz-transition:all .2s ease-in-out\",\"transition:all .2s ease-in-out\",\"-webkit-filter:grayscale(100%)\"]],[false,{\".end-process .logos amp-img:hover\":false,\".end-process .logos amp-anim:hover\":false},[\"-webkit-filter:grayscale(0)\"]],[false,{\".end-process .logos amp-img.menor\":false,\".end-process .logos amp-anim.menor\":false},[\"height:80px\"]],[false,\"@media (max-width:992px){\"],[false,{\".end-process .logos amp-img\":false,\".end-process .logos amp-anim\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".end-process .logos amp-img\":false,\".end-process .logos amp-anim\":false},[\"height:120px\"]],[false,{\".end-process .logos amp-img.menor\":false,\".end-process .logos amp-anim.menor\":false},[\"height:110px\"]],[false,\"}\"],[false,{\".top-service\":false},[\"width:100%\",\"height:370px\",\"position:relative\",\"margin-top:120px\",\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"color:#fff\",\"display:table\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".top-service .wrap-top\":false},[\"display:table-row\",\"width:100%\",\"height:100%\"]],[false,{\".top-service .wrap-top .content\":false},[\"display:table-cell\",\"width:100%\",\"height:100%\",\"vertical-align:middle\",\"font-size:12px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".top-service .wrap-top .content\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".top-service .logo\":false},[\"margin-left:-10px\",\"margin-bottom:10px\"]],[false,{\".top-service .logo amp-google-document-embed\":false},[\"width:110px\"]],[false,{\".top-service .logo amp-img\":false,\".top-service .logo amp-anim\":false},[\"width:110px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".top-service .logo amp-img\":false,\".top-service .logo amp-anim\":false},[\"width:150px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".top-service .logo\":false},[\"margin-left:0\"]],[false,\"}\"],[false,{\".top-service h1\":false},[\"color:#fff\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".top-service.service-devops\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-devops\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-machine\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-machine\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-micro\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-micro\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-digital\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\",\"color:#152649\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-digital\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-digital h1\":false},[\"color:#152649\"]],[false,{\".disclaimer\":false},[\"width:100%\",\"position:relative\",\"padding:45px 0\"]],[false,{\".disclaimer.service-devops\":false},[\"background-color:#b7f254\",\"text-align:center\",\"font-size:13px\"]],[false,{\".disclaimer.service-devops .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-devops .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-devops\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".disclaimer.service-machine\":false},[\"background-color:#83adfb\",\"text-align:center\",\"font-size:13px\"]],[false,{\".disclaimer.service-machine .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-machine .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-machine\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".disclaimer.service-micro\":false},[\"background-color:#152649\",\"text-align:center\",\"font-size:13px\",\"color:#fff\"]],[false,{\".disclaimer.service-micro .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-micro .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-micro\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".disclaimer.service-digital\":false},[\"background-color:#05bed4\",\"text-align:center\",\"font-size:13px\",\"color:#fff\"]],[false,{\".disclaimer.service-digital .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-digital .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-digital\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".about-service\":false},[\"width:100%\",\"position:relative\",\"padding:0\",\"margin:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .btn:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".about-service .wrap-image\":false},[\"text-align:left\",\"padding-top:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".about-service ul\":false},[\"margin:0\",\"padding:0\"]],[false,{\".about-service li\":false},[\"list-style:none\",\"position:relative\",\"padding-left:30px\",\"min-height:30px\",\"font-size:14px\",\"font-family:Raleway\",\"font-weight:500\",\"line-height:18px\",\"padding-top:5px\",\"margin-bottom:20px\"]],[false,{\".about-service li:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:20px\",\"height:100%\",\"top:0\",\"left:0\",\"background-repeat:no-repeat\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/checkc.png\\\")\",\"background-position:center\",\"background-size:100% auto\"]],[false,{\".about-service.service-devops\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-devops .btn1\":false},[\"background:#cce191\",\"background:-moz-linear-gradient(left,#cce191 0,#ccc 50%,#7cb1cc 100%)\",\"background:-webkit-linear-gradient(left,#cce191 0,#ccc 50%,#7cb1cc 100%)\",\"background:linear-gradient(to right,#cce191 0,#ccc 50%,#7cb1cc 100%)\",\"margin-bottom:20px\"]],[false,{\".about-service.service-devops .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#767e8e\"]],[false,{\".about-service.service-devops .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service.service-machine\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-machine .btn1\":false},[\"background:#4e2e7c\",\"background:-moz-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:-webkit-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:linear-gradient(to right,#4e2e7c 0,#38a3cc 100%)\",\"margin-bottom:20px\"]],[false,{\".about-service.service-machine .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#767e8e\"]],[false,{\".about-service.service-machine .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service.service-micro\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-micro .btn1\":false},[\"background:#878787\",\"background:-moz-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:-webkit-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:linear-gradient(to right,#878787 0,#aeaeae 100%)\",\"margin-bottom:20px\"]],[false,{\".about-service.service-micro .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#767e8e\"]],[false,{\".about-service.service-micro .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service.service-digital\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-digital .btn1\":false},[\"margin-bottom:20px\",\"background:#02c6d9\",\"background:-moz-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to right,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".about-service.service-digital .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#2d98c6\"]],[false,{\".about-service.service-digital .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about\":false},[\"padding:0\",\"color:#8c8c8c\",\"overflow:hidden\",\"position:relative\"]],[false,{\".about-service .content-about .clearfix\":false},[\"width:100%\"]],[false,{\".about-service .content-about .menu-items\":false},[\"margin-top:0\",\"margin-bottom:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .content-about .menu-items\":false},[\"margin:30px 0\",\"text-align:center\"]],[false,\"}\"],[false,{\".about-service .content-about .menu-items .btn\":false},[\"width:100%\",\"text-align:center\",\"line-height:50px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"font-family:Rajdhani\",\"font-weight:400\",\"margin-bottom:0\",\"margin-top:0\",\"font-size:20px\",\"text-transform:uppercase\"]],[false,{\".about-service .content-about .menu-items .active .btn\":false},[\"font-weight:700\"]],[false,{\".about-service .content-about .menu-items.service-devops\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-devops .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-devops .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-devops a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-devops a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-machine\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-machine .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-machine .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-machine a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-machine a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-micro\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-micro .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-micro .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-micro a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-micro a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-digital\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-digital .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-digital .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-digital a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-digital a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .slider-about\":false},[\"line-height:16px\",\"padding-top:70px\"]],[false,{\".about-service .slider-about:not(#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-service .slider-about\":false},[\"line-height:18px\"]],[false,{\".about-service .slider-about:not(#_#_#_#_#_#_#_)\":false},[\"font-size:15px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".about-service .slider-about\":false},[\"text-align:center\"]],[false,{\".about-service .slider-about:not(#_#_#_#_#_#_#_)\":false},[\"font-size:13px\"]],[false,\"}\"],[false,{\".about-service .slider-about h3\":false},[\"font-size:22px\",\"line-height:22px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-service .slider-about h3\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".about-service .slider-about .hand-call\":false},[\"border-top:1px solid #143260\",\"padding-top:30px\",\"margin-top:10px\",\"display:inline-block\"]],[false,{\".about-service .slider-about .border\":false},[\"width:80%\",\"margin-top:20px\",\"margin-bottom:40px\",\"margin-left:10%\"]],[false,{\".about-service .slider-about .border:not(#_#_#_#_#_#_#_)\":false},[\"border:0\",\"border-bottom:1px solid #ccc\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .row\":false},[\"margin:0\"]],[false,\"}\"],[true,{\".intern-about\":true},[\"width:100%\",\"position:relative\",\"padding:70px 0\",\"background-color:#fff\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-intern.jpg\\\")\",\"background-position:bottom center\",\"background-repeat:no-repeat\",\"background-size:100% auto\",\"text-align:center\",\"color:#8c8c8c\",\"font-family:Rajdhani\",\"font-weight:400\",\"font-size:20px\",\"line-height:20px\"]],[true,\"@media (min-width:1400px){\"],[true,{\".intern-about\":true},[\"font-size:25px\",\"line-height:25px\"]],[true,\"}\"],[true,{\".intern-about .logos\":true},[\"text-align:center\",\"margin-top:50px\"]],[true,{\".intern-about .logos amp-img\":true,\".intern-about .logos amp-anim\":false},[\"display:inline-block\",\"height:90px\",\"margin:0 30px\",\"-webkit-transition:all .2s ease-in-out\",\"-moz-transition:all .2s ease-in-out\",\"transition:all .2s ease-in-out\",\"-webkit-filter:grayscale(100%)\"]],[true,{\".intern-about .logos amp-img:hover\":true,\".intern-about .logos amp-anim:hover\":false},[\"-webkit-filter:grayscale(0)\"]],[true,{\".intern-about .logos amp-img.menor\":true,\".intern-about .logos amp-anim.menor\":false},[\"height:80px\"]],[true,\"@media (max-width:992px){\"],[true,{\".intern-about .logos amp-img\":true,\".intern-about .logos amp-anim\":false},[\"margin-bottom:20px\"]],[true,\"}\"],[true,\"@media (min-width:1400px){\"],[true,{\".intern-about .logos amp-img\":true,\".intern-about .logos amp-anim\":false},[\"height:120px\"]],[true,{\".intern-about .logos amp-img.menor\":true,\".intern-about .logos amp-anim.menor\":false},[\"height:110px\"]],[true,\"}\"],[false,{\".items-service\":false},[\"width:100%\",\"padding:0\",\"margin:0\",\"position:relative\"]],[false,{\".items-service.service-devops\":false},[\"background:#38cea3\",\"background:-moz-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:-webkit-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:linear-gradient(to right,#38cea3 0,#75e168 100%)\"]],[false,{\".items-service.service-machine\":false},[\"background:#4e2e7c\",\"background:-moz-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:-webkit-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:linear-gradient(to right,#4e2e7c 0,#38a3cc 100%)\"]],[false,{\".items-service.service-micro\":false},[\"background:#13203c\",\"background:-moz-linear-gradient(left,#13203c 0,#9d9c9c 100%)\",\"background:-webkit-linear-gradient(left,#13203c 0,#9d9c9c 100%)\",\"background:linear-gradient(to right,#13203c 0,#9d9c9c 100%)\"]],[false,{\".items-service.service-digital\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to right,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".items-service .box-item\":false},[\"position:relative\",\"height:300px\",\"overflow:hidden\"]],[false,\"@media (min-width:1400px){\"],[false,{\".items-service .box-item\":false},[\"height:350px\"]],[false,\"}\"],[false,{\".items-service .box-item .up\":false},[\"position:relative\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"width:100%\",\"height:300px\",\"padding:0\"]],[false,\"@media (min-width:1400px){\"],[false,{\".items-service .box-item .up\":false},[\"height:350px\"]],[false,\"}\"],[false,{\".items-service .box-item .up .bg-image\":false},[\"opacity:.5\",\"background-size:auto 110%\",\"background-position:center\",\"background-repeat:no-repeat\",\"width:100%\",\"height:100%\",\"position:absolute\",\"left:0\",\"top:0\",\"z-index:0\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".items-service .box-item .up .bg-image2\":false},[\"opacity:.5\",\"background-size:auto 110%\",\"background-position:center\",\"background-repeat:no-repeat\",\"width:100%\",\"height:100%\",\"position:absolute\",\"left:0\",\"top:0\",\"z-index:0\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".items-service .box-item .up .wrap-absol\":false},[\"width:100%\",\"height:100%\",\"position:absolute\",\"left:0\",\"top:0\",\"z-index:1\",\"display:table\",\"padding:20px\"]],[false,{\".items-service .box-item .up .wrap-content\":false},[\"display:table-row\",\"width:100%\",\"height:100%\",\"position:relative\"]],[false,{\".items-service .box-item .up .wrap-content .button\":false},[\"width:100%\",\"height:100%\",\"display:table-cell\",\"vertical-align:middle\",\"text-align:center\"]],[false,{\".items-service .box-item .up .wrap-content .btn1\":false},[\"background:0\"]],[false,{\".items-service .box-item .up .wrap-content .btn1:not(#_#_#_#_#_#_#_)\":false},[\"background-color:rgba(0,0,0,0)\"]],[false,{\".items-service .box-item .up .wrap-content .btn1 .mask-btn\":false},[\"border:1px solid #fff\",\"font-weight:500\",\"background-color:rgba(255,255,255,.3)\",\"color:#fff\"]],[false,{\".items-service .box-item .up .wrap-content .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".items-service .box-item .up:hover .bg-image\":false,\".items-service .box-item .up:hover .bg-image2\":false},[\"background-size:auto 130%\"]],[false,{\".items-service .box-item .down\":false},[\"background:#38cea3\",\"background:-webkit-linear-gradient(top,#38cea3 0,#75e168 100%)\",\"background:-o-linear-gradient(top,#38cea3 0,#75e168 100%)\",\"background:linear-gradient(to bottom,#38cea3 0,#75e168 100%)\",\"width:100%\",\"height:300px\",\"padding:20px\",\"color:#fff\",\"font-size:13px\"]],[false,{\".items-service .box-item .down .wrap-all\":false},[\"width:100%\",\"height:260px\"]],[false,{\".items-service.service-machine .down\":false},[\"background:#4e2e7c\",\"background:-moz-linear-gradient(top,#4e2e7c 0,#38a3cc 100%)\",\"background:-webkit-linear-gradient(top,#4e2e7c 0,#38a3cc 100%)\",\"background:linear-gradient(to bottom,#4e2e7c 0,#38a3cc 100%)\"]],[false,{\".items-service.service-micro .down\":false},[\"background:#13203c\",\"background:-moz-linear-gradient(top,#13203c 0,#9d9c9c 100%)\",\"background:-webkit-linear-gradient(top,#13203c 0,#9d9c9c 100%)\",\"background:linear-gradient(to bottom,#13203c 0,#9d9c9c 100%)\"]],[false,{\".items-service.service-digital .down\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to bottom,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".phrase\":false},[\"width:100%\",\"position:relative\",\"padding:50px 0\",\"background-color:#ededed\",\"text-align:center\",\"font-family:Rajdhani\",\"font-weight:400\",\"font-size:20px\",\"line-height:20px\",\"color:#152649\"]],[false,{\".phrase .author\":false},[\"font-size:11px\",\"line-height:11px\",\"color:#9c9c9c\",\"text-transform:uppercase\",\"letter-spacing:5px\",\"margin-top:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".phrase\":false},[\"font-size:25px\",\"line-height:25px\"]],[false,{\".phrase .author\":false},[\"font-size:14px\",\"line-height:14px\"]],[false,\"}\"],[false,{\".about-idea\":false},[\"width:100%\",\"position:relative\",\"padding:50px 0\",\"background-color:#fff\"]],[false,{\".about-idea amp-img\":false,\".about-idea amp-anim\":false},[\"margin-top:35px\",\"margin-bottom:35px\"]],[false,{\".about-idea .btn1\":false},[\"width:100%\",\"text-align:center\"]],[false,{\".about-idea .btn1 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-idea .btn1\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,{\".about-idea .top-info\":false},[\"margin:50px 0\"]],[false,{\".about-idea .withborder\":false},[\"border-left:1px solid #ccc\",\"padding-top:10px\",\"margin-bottom:70px\",\"font-size:17px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-idea .withborder\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,\"}\"],[false,{\".about-idea .big\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"font-size:20px\",\"line-height:20px\",\"color:#152649\",\"margin-top:40px\",\"text-align:center\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-idea .big\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".about-idea\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".hand-call\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:22px\",\"font-size:22px\",\"color:#152649\",\"text-align:left\"]],[false,\"@media (min-width:1400px){\"],[false,{\".hand-call\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".hand-call .border-call\":false},[\"padding-left:20px\",\"margin-bottom:20px\",\"position:relative\"]],[false,{\".hand-call .border-call:before\":false},[\"width:1px\",\"height:100%\",\"position:absolute\",\"content:\\\"\\\"\",\"left:0\",\"top:0\",\"background:#b5f155\",\"background:-moz-linear-gradient(top,#b5f155 0,#2e9cc5 100%)\",\"background:-webkit-linear-gradient(top,#b5f155 0,#2e9cc5 100%)\",\"background:linear-gradient(to bottom,#b5f155 0,#2e9cc5 100%)\"]],[false,{\".hand-call .arrow\":false},[\"padding-left:50px\",\"position:relative\",\"position:relative\"]],[false,{\".hand-call .arrow:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"top:0\",\"left:0\",\"width:30px\",\"height:44px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrow.png\\\")\"]],[false,{\".qualities\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"padding:50px 0\"]],[false,{\".qualities .hand-call\":false},[\"text-align:center\"]],[false,{\".qualities .hand-call .border-call\":false},[\"display:inline-block\",\"text-align:left\"]],[false,{\".qualities .hand-call .arrow\":false},[\"margin-left:20px\",\"display:inline-block\",\"text-align:left\"]],[false,{\".qualities .circles-menu\":false},[\"margin-top:0\",\"margin-bottom:50px\"]],[false,{\".qualities .circles-menu .text-circle:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".qualities .ctext\":false},[\"text-align:center\",\"font-size:13px\",\"font-weight:500\",\"margin-top:30px\",\"padding-top:30px\",\"position:relative\"]],[false,{\".qualities .ctext:after\":false},[\"width:70px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"margin-left:50%\",\"left:-35px\",\"position:absolute\",\"content:\\\"\\\"\"]],[false,{\".qualities .ctext.text1:after\":false},[\"background-color:#9ef34b\"]],[false,{\".qualities .ctext.text2:after\":false},[\"background-color:#d1d1d1\"]],[false,{\".qualities .ctext.text3:after\":false},[\"background-color:#13b5d6\"]],[false,{\".gallery-logos .item\":false},[\"display:table\",\"width:100%\",\"height:100px\"]],[false,{\".gallery-logos .item .wrap-item\":false},[\"width:100%\",\"height:100%\",\"display:table-row\"]],[false,{\".gallery-logos .item .wrap-item .image\":false},[\"width:100%\",\"height:100%\",\"display:table-cell\",\"vertical-align:middle\",\"text-align:center\"]],[false,{\".gallery-logos .item .wrap-item .image amp-img\":false,\".gallery-logos .item .wrap-item .image amp-anim\":false},[\"max-width:80%\",\"width:auto\",\"max-height:50px\",\"height:auto\",\"display:inline-block\"]],[false,\"@media (min-width:1400px){\"],[false,{\".gallery-logos .item .wrap-item .image amp-img\":false,\".gallery-logos .item .wrap-item .image amp-anim\":false},[\"max-height:70px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".contact\":false,\".text-contact\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".top-contact\":false},[\"line-height:90px\",\"position:relative\",\"width:100%\",\"margin-top:100px\",\"background:#75e168\",\"background:-moz-linear-gradient(top,#75e168 0,#38cea3 100%)\",\"background:-webkit-linear-gradient(top,#75e168 0,#38cea3 100%)\",\"background:linear-gradient(to bottom,#75e168 0,#38cea3 100%)\",\"padding:70px 0\"]],[false,{\".top-contact h1\":false},[\"margin:0\",\"font-size:50px\"]],[false,{\".top-contact h2\":false},[\"margin:0\",\"font-size:40px\",\"line-height:90px\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-contact h2\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".top-contact amp-google-document-embed\":false},[\"width:100%\",\"margin-top:20px\"]],[false,{\".subitems\":false},[\"margin:30px 0\"]],[false,{\".subitems .item\":false},[\"position:relative\",\"display:inline-block\",\"color:#152649\",\"font-family:Rajdhani\",\"font-weight:700\",\"padding:0 10px 0 0\",\"margin-right:10px\",\"margin-bottom:5px\"]],[false,{\".subitems .item:after\":false},[\"width:1px\",\"height:100%\",\"position:absolute\",\"content:\\\"\\\"\",\"right:0\",\"top:0\",\"background:#2b9ac7\",\"background:-moz-linear-gradient(top,#2b9ac7 0,#b9f05a 100%)\",\"background:-webkit-linear-gradient(top,#2b9ac7 0,#b9f05a 100%)\",\"background:linear-gradient(to bottom,#2b9ac7 0,#b9f05a 100%)\"]],[false,{\".subitems .item:first-child\":false},[\"padding-left:0\"]],[false,{\".subitems .item:last-child\":false},[\"padding-right:0\"]],[false,{\".subitems .item:last-child:after\":false},[\"display:none\"]],[false,{\".circles-menu\":false},[\"margin-top:-100px\",\"position:relative\",\"text-align:center\"]],[false,\"@media (min-width:1400px){\"],[false,{\".circles-menu\":false},[\"margin-top:-125px\"]],[false,\"}\"],[false,{\".circles-menu .circle\":false},[\"margin:0 auto 30px\",\"display:table\",\"width:200px\",\"height:200px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"border-radius:100px\",\"-moz-border-radius:100px\",\"-webkit-border-radius:100px\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (min-width:1400px){\"],[false,{\".circles-menu .circle\":false},[\"width:250px\",\"height:250px\",\"border-radius:125px\",\"-moz-border-radius:125px\",\"-webkit-border-radius:125px\"]],[false,\"}\"],[false,{\".circles-menu .circle .wrap\":false},[\"display:table-row\",\"width:100%\",\"height:100%\"]],[false,{\".circles-menu .circle .wrap .text-circle\":false},[\"display:table-cell\",\"width:100%\",\"height:100%\",\"vertical-align:middle\",\"font-family:Rajdhani\",\"font-weight:700\",\"color:#002048\",\"font-size:25px\",\"line-height:25px\"]],[false,{\".circles-menu .circle.circle1\":false},[\"background-color:#00a2c3\",\"border:3px solid #00a2c3\"]],[false,{\".circles-menu .circle.circle1:hover\":false},[\"background-color:#fff\"]],[false,{\".circles-menu .circle.circle2\":false},[\"background-color:#d0d0d0\",\"border:3px solid #d0d0d0\"]],[false,{\".circles-menu .circle.circle2:hover\":false},[\"background-color:#fff\"]],[false,{\".circles-menu .circle.circle3\":false},[\"background-color:#91e63e\",\"border:3px solid #91e63e\"]],[false,{\".circles-menu .circle.circle3:hover\":false},[\"background-color:#fff\"]],[false,{\".map\":false},[\"margin:0\",\"padding:0\",\"position:relative\",\"width:100%\",\"background-color:#e8e8e8\",\"color:grey\"]],[false,{\".map .info\":false},[\"width:620px\",\"position:absolute\",\"margin-left:50%\",\"left:-310px\",\"top:-60px\",\"background-color:#fff\",\"padding:20px\",\"color:#152649\",\"font-size:13px\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info\":false},[\"width:90%\",\"margin:0 5%\",\"left:0\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".map .info\":false},[\"width:620px\",\"left:-310px\",\"font-size:15px\"]],[false,\"}\"],[false,{\".map .info .local\":false},[\"width:40%\",\"float:left\",\"padding-right:20px\"]],[false,{\".map .info .local .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info .local .ltext\":false},[\"float:left\",\"text-align:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info .local\":false},[\"width:100%\",\"padding:0\"]],[false,\"}\"],[false,{\".map .info .mail\":false},[\"width:60%\",\"float:left\",\"padding-left:20px\",\"border-left:1px solid #ccc\"]],[false,{\".map .info .mail .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info .mail .ltext\":false},[\"float:left\",\"line-height:40px\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info .mail\":false},[\"width:100%\",\"padding:0\",\"border:0\",\"margin-top:20px\"]],[false,\"}\"],[false,{\".map .info2\":false},[\"width:500px\",\"position:absolute\",\"margin-left:50%\",\"left:-250px\",\"top:40px\",\"background-color:#fff\",\"padding:20px\",\"color:#152649\",\"font-size:13px\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info2\":false},[\"width:90%\",\"margin:0 5%\",\"left:0\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".map .info2\":false},[\"width:600px\",\"left:-300px\",\"font-size:15px\"]],[false,\"}\"],[false,{\".map .info2 .local\":false},[\"width:40%\",\"float:left\",\"padding-right:20px\"]],[false,{\".map .info2 .local .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info2 .local .ltext\":false},[\"float:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info2 .local\":false},[\"width:100%\",\"padding:0\"]],[false,\"}\"],[false,{\".map .info2 .mail\":false},[\"width:60%\",\"float:left\",\"padding-left:20px\",\"border-left:1px solid #ccc\"]],[false,{\".map .info2 .mail .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info2 .mail .ltext\":false},[\"float:left\",\"line-height:40px\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info2 .mail\":false},[\"width:100%\",\"padding:0\",\"border:0\",\"margin-top:20px\"]],[false,\"}\"],[false,{\".map h2\":false},[\"margin-top:70px\"]],[false,{\".panel\":false},[\"position:relative\",\"text-align:center\",\"margin-top:-13%\"]],[false,{\".panel .panel-img\":false},[\"position:absolute\"]],[false,{\".panel .panel-img amp-img\":false,\".panel .panel-img amp-anim\":false},[\"width:40px\"]],[false,{\".panel #panel1\":false},[\"top:100px\",\"left:0\"]],[false,{\".panel #panel2\":false},[\"top:80px\",\"left:40px\"]],[false,{\".panel #panel3\":false},[\"top:100px\",\"left:80px\"]],[false,{\".panel #panel4\":false},[\"top:0\",\"left:120px\"]],[false,{\".panel #panel5\":false},[\"top:70px\",\"left:160px\"]],[false,{\".panel #panel6\":false},[\"top:90px\",\"left:200px\"]],[false,{\".panel #panel7\":false},[\"top:70px\",\"left:240px\"]],[false,{\".panel #panel8\":false},[\"top:50px\",\"left:280px\"]],[false,{\".panel #panel9\":false},[\"top:70px\",\"left:320px\"]],[false,{\".panel #panel10\":false},[\"top:130px\",\"left:360px\"]],[false,{\".hidden\":false},[\"opacity:0\"]],[false,{\".visible\":false},[\"opacity:1\"]],[false,\"@media (max-width:992px){\"],[false,{\".text-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".desktop\":false},[\"display:block\"]],[false,\"@media (max-width:992px){\"],[false,{\".desktop\":false},[\"display:none\"]],[false,\"}\"],[false,{\".mobile\":false},[\"display:none\"]],[false,\"@media (max-width:992px){\"],[false,{\".mobile\":false},[\"display:block\"]],[false,\"}\"],[false,{\".mbottom\":false},[\"margin-bottom:-50px\"]],[true,\"@media (max-width:1400px){\"],[true,{\".container-fluid\":true},[\"max-width:1140px\"]],[true,\"}\"],[true,\"@media (min-width:1400px){\"],[true,{\".container-fluid\":true},[\"width:90%\"]],[true,\"}\"],[false,{\".bg-middle\":false},[\"background-position:left center\",\"background-size:auto 95%\",\"background-repeat:no-repeat\"]],[false,{\".bg-bottom\":false},[\"background-position:bottom center\",\"background-size:auto 95%\",\"background-repeat:no-repeat\"]],[false,\"@media (max-width:992px){\"],[false,{\".item-carousel-1\":false,\".item-carousel-2\":false},[\"text-align:center\"]],[false,{\".item-carousel-1:not(#_#_#_#_#_#_#_)\":false,\".item-carousel-2:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\",\"background-image:none\"]],[false,\"}\"],[false,{\".item-carousel-3\":false},[\"text-align:center\"]],[false,{\".add-top\":false},[\"padding-top:150px\"]],[false,{\".add-top-2\":false},[\"margin-top:100px\"]],[true,{\".blog-color\":true},[\"background-color:#f8f8f8\",\"line-height:50px\",\"position:relative\",\"width:100%\",\"margin-top:100px\"]],[true,{\".blog-color h1\":true},[\"margin:0\",\"font-size:50px\",\"line-height:50px\"]],[true,{\".blog-color .info-text\":true},[\"font-family:Rajdhani\",\"font-weight:300\",\"line-height:20px\",\"font-size:16px\",\"color:#8c8c8c\"]],[true,{\".blog-title-main\":true},[\"padding:90px 50px\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:left center\"]],[true,\"@media (max-width:992px){\"],[true,{\".blog-title-main\":true},[\"padding:30px\"]],[true,\"}\"],[true,{\".blog-main\":true},[\"position:relative\",\"background-color:#fff\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\"]],[true,\"@media (max-width:992px){\"],[true,{\".blog-main\":true},[\"display:none\"]],[true,\"}\"],[true,{\".blog-main .blog-mask\":true},[\"padding:0 50px\",\"position:absolute\",\"width:100%\",\"height:100%\",\"left:0\",\"top:0\",\"background:-moz-linear-gradient(left,rgba(50,143,194,.95) 0,rgba(204,204,204,.95) 100%)\",\"background:-webkit-linear-gradient(left,rgba(50,143,194,.95) 0,rgba(204,204,204,.95) 100%)\",\"background:linear-gradient(to right,rgba(50,143,194,.95) 0,rgba(204,204,204,.95) 100%)\",\"color:#152649\",\"display:flex\",\"align-content:center\",\"align-content:center\",\"flex-wrap:wrap\",\"flex-direction:column\",\"justify-content:center\"]],[true,{\".blog-main .blog-main-content\":true},[\"width:100%\"]],[true,{\".blog-main .blog-main-content .blog-date\":true},[\"line-height:25px\",\"margin-bottom:0\"]],[true,{\".blog-main .blog-main-content .blog-title\":true},[\"font-size:20px\",\"line-height:25px\",\"font-weight:700\",\"display:block\"]],[true,\"@media (min-width:1400px){\"],[true,{\".blog-main .blog-main-content .blog-title\":true},[\"font-size:25px\",\"line-height:30px\",\"max-width:400px\"]],[true,\"}\"],[true,{\".blog-main .blog-main-content .blog-info\":true},[\"color:#152649\",\"font-size:14px\",\"line-height:25px\",\"margin-bottom:0\"]],[true,\"@media (min-width:1400px){\"],[true,{\".blog-main .blog-main-content .blog-info\":true},[\"font-size:16px\"]],[true,\"}\"],[true,{\".blog-main .blog-main-content .blog-read\":true},[\"background-color:#9d7c23\",\"color:#fff\",\"font-family:Rajdhani\",\"font-size:14px\",\"font-weight:500\",\"padding:5px 25px\",\"border-radius:2px\",\"-webkit-box-shadow:2px 2px 10px 0 transparent\",\"box-shadow:2px 2px 10px 0 transparent\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[true,\"@media (min-width:1400px){\"],[true,{\".blog-main .blog-main-content .blog-read\":true},[\"font-size:17px\"]],[true,\"}\"],[true,{\".blog-main .blog-main-content .blog-read:hover\":true},[\"-webkit-box-shadow:2px 2px 10px 0 rgba(0,0,0,.5)\",\"box-shadow:2px 2px 10px 0 rgba(0,0,0,.5)\"]],[true,{\".blog-main .blog-main-content .blog-tags\":true},[\"line-height:15px\",\"margin-bottom:0\",\"color:#152649\",\"margin-top:10px\"]],[true,{\".blog-main .blog-main-content .blog-tags a\":true},[\"border-color:#346a8f\"]],[true,{\".content-blog\":true},[\"position:relative\",\"width:100%\",\"background-color:#f3f3f3\",\"padding:50px 0\",\"color:grey\",\"font-size:16px\",\"line-height:25px\"]],[true,\"@media (max-width:992px){\"],[true,{\".content-blog\":true},[\"background-color:#fff\"]],[true,\"}\"],[true,{\".content-blog strong\":true},[\"color:#23819d\",\"font-size:23px\"]],[false,{\".content-blog small\":false},[\"font-weight:700\"]],[true,{\".content-blog amp-img\":true,\".content-blog amp-anim\":false},[\"width:100%\",\"max-width:100%\"]],[false,{\".content-blog .capa-blog\":false},[\"width:100%\",\"margin-top:-50px\",\"margin-bottom:30px\"]],[true,{\".pagination\":true},[\"width:100%\",\"text-align:center\",\"display:block\"]],[true,{\".pagination a\":true},[\"border:1px solid #999\",\"color:#999\",\"margin:0 20px\",\"border-radius:5px\",\"padding:10px 15px\",\"font-family:Rajdhani\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[true,{\".pagination a:hover\":true},[\"color:#152649\",\"border:1px solid #152649\"]],[false,{\".arrow-wrap\":false},[\"justify-content:center\",\"display:flex\",\"align-items:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".arrow-wrap--top\":false},[\"margin-bottom:30px\"]],[false,\"}\"],[false,{\".back-arrow\":false},[\"color:#152649\",\"text-transform:uppercase\",\"font-weight:200\",\"font-family:Rajdhani\",\"font-size:14px\",\"margin-top:20px\"]],[true,{\".blog-tags\":true},[\"font-size:12px\",\"color:#23819d\"]],[true,\"@media (min-width:1400px){\"],[true,{\".blog-tags\":true},[\"font-size:15px\"]],[true,\"}\"],[true,{\".blog-tags a\":true},[\"border-right:1px solid #ccc\",\"margin-left:10px\",\"padding-right:10px\"]],[true,{\".blog-tags a:last-child\":true},[\"border:0\",\"padding:0\"]],[true,{\".blog-tags a:first-child\":true},[\"margin:0\"]],[false,{\".top-blog-single\":false},[\"position:relative\",\"width:100%\",\"margin-top:100px\",\"padding:70px 0\",\"background-color:#fff\"]],[false,{\".top-blog-single a:hover\":false},[\"text-decoration:underline\"]],[false,{\".top-blog-single h1\":false},[\"margin:0 0 10px\",\"font-size:45px\",\"line-height:45px\",\"font-family:Raleway\"]],[false,{\".top-blog-single .blog-title\":false},[\"line-height:55px\",\"color:#152649\"]],[false,{\".top-blog-single .wrap-blog-info\":false},[\"margin-top:-45px\",\"margin-bottom:30px\"]],[false,{\".top-blog-single .back-arrow\":false},[\"font-size:35px\",\"margin:0\"]],[false,{\".top-blog-single .back-arrow a:hover\":false},[\"text-decoration:none\"]],[false,{\".top-blog-single .blog-tags\":false},[\"margin-bottom:-30px\",\"margin-top:30px\"]],[true,{\".blog-info\":true},[\"font-family:Rajdhani\",\"font-size:17px\",\"line-height:25px\",\"color:#23819d\",\"font-weight:500\"]],[true,{\".blog-date\":true},[\"color:#152649\",\"font-family:Rajdhani\",\"font-size:14px\",\"margin-bottom:10px\",\"text-transform:uppercase\",\"font-weight:500\"]],[true,\"@media (min-width:1400px){\"],[true,{\".blog-date\":true},[\"font-size:20px\"]],[true,\"}\"],[false,{\".blog-date--text\":false},[\"color:#23819d\",\"margin-top:20px\"]],[false,{\".box-post-intern\":false},[\"padding:20px\",\"background-color:#f0f0f0\",\"border:1px solid #c2c2c2\",\"border-radius:2px\",\"height:100%\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width:992px){\"],[false,{\".box-post-intern\":false},[\"margin-bottom:30px\",\"height:auto\"]],[false,\"}\"],[false,{\".box-post-intern:hover\":false},[\"background-color:#fff\"]],[false,{\".box-post-intern .blog-date\":false},[\"color:#23819d\",\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"margin-bottom:10px\",\"text-transform:uppercase\",\"font-weight:500\"]],[false,{\".box-post-intern .blog-title\":false},[\"font-size:20px\",\"line-height:25px\",\"color:#23819d\",\"font-weight:700\"]],[false,{\".box-post-intern .blog-info\":false},[\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"color:#23819d\",\"font-weight:500\",\"margin-top:15px\"]],[false,{\".box-post-intern .blog-tags\":false},[\"margin-bottom:0\"]],[true,{\".box-post\":true},[\"height:calc(100% - 30px)\",\"overflow:hidden\",\"position:relative\",\"padding:30px\",\"margin-bottom:30px\",\"background-color:#f0f0f0\",\"border:1px solid #c2c2c2\",\"border-radius:2px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[true,\"@media (max-width:992px){\"],[true,{\".box-post\":true},[\"height:auto\"]],[true,\"}\"],[true,{\".box-post:hover\":true},[\"background-color:#fff\"]],[false,{\".box-post .capa-post\":false},[\"width:calc(100% + 60px)\",\"height:200px\",\"margin-top:-30px\",\"margin-left:-30px\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:top center\",\"margin-bottom:30px\"]],[true,{\".box-post .blog-date\":true},[\"color:#23819d\",\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"margin-bottom:30px\",\"text-transform:uppercase\",\"font-weight:500\"]],[true,\"@media (min-width:1400px){\"],[true,{\".box-post .blog-date\":true},[\"font-size:16px\"]],[true,\"}\"],[true,{\".box-post .blog-title\":true},[\"font-size:20px\",\"line-height:25px\",\"color:#23819d\",\"font-weight:700\"]],[true,\"@media (min-width:1400px){\"],[true,{\".box-post .blog-title\":true},[\"font-size:25px\",\"line-height:30px\"]],[true,\"}\"],[true,{\".box-post .blog-info\":true},[\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"color:#23819d\",\"font-weight:500\",\"margin-top:10px\"]],[true,\"@media (min-width:1400px){\"],[true,{\".box-post .blog-info\":true},[\"font-size:16px\"]],[true,\"}\"],[true,{\".box-post .blog-excerpt\":true},[\"font-size:12px\",\"line-height:18px\"]],[true,\"@media (min-width:1400px){\"],[true,{\".box-post .blog-excerpt\":true},[\"font-size:15px\"]],[true,\"}\"],[true,{\".box-post .blog-read\":true},[\"font-family:Rajdhani\",\"color:#9d7c23\",\"font-size:13px\",\"line-height:15px\",\"font-weight:500\"]],[true,\"@media (min-width:1400px){\"],[true,{\".box-post .blog-read\":true},[\"font-size:16px\"]],[true,\"}\"],[true,{\".box-post .blog-tags\":true},[\"margin-top:20px\",\"margin-bottom:0\"]],[false,{\".more-section\":false},[\"margin-top:30px\"]],[true,{\"li.categories\":true},[\"font-family:Rajdhani\",\"text-transform:uppercase\",\"list-style:none\",\"margin-bottom:70px\",\"font-weight:500\",\"color:#23819d\",\"font-size:20px\"]],[true,\"@media (min-width:1400px){\"],[true,{\"li.categories\":true},[\"font-size:25px\"]],[true,\"}\"],[true,\"@media (max-width:992px){\"],[true,{\"li.categories\":true},[\"margin-top:50px\",\"margin-bottom:0\"]],[true,\"}\"],[true,{\"li.categories ul\":true},[\"list-style:none\",\"padding:0\",\"margin-top:30px\"]],[true,{\"li.categories ul li\":true},[\"margin-bottom:15px\",\"text-transform:none\",\"font-size:13px\",\"font-family:Raleway\",\"font-weight:300\"]],[true,\"@media (min-width:1400px){\"],[true,{\"li.categories ul li\":true},[\"font-size:15px\"]],[true,\"}\"],[true,{\".icon-main-blog\":true},[\"width:80px\",\"margin-top:-20px\",\"margin-left:-15px\"]],[true,{\".icon-main-blog amp-img\":true,\".icon-main-blog amp-anim\":false},[\"width:100%\"]],[false,{\"#paginator\":false},[\"width:100%\",\"padding:0 15px\",\"margin:25px 0\",\"text-align:center\"]],[false,{\"#paginator li\":false},[\"list-style:none\",\"display:inline-block\",\"width:30px\",\"line-height:30px\",\"border:1px solid #ccc\",\"border-radius:5px\",\"color:#999\",\"margin:5px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"#paginator li.current\":false,\"#paginator li:hover\":false},[\"color:#152649\",\"border:1px solid #152649\",\"font-weight:700\"]],[false,{\"#paginator li a\":false},[\"display:block\"]],[false,{\".footer-media a\":false},[\"color:#999\",\"margin-left:20px\"]],[true,{\".avatar-20:not(#_#_#_#_#_#_#_)\":true},[\"width:20px\"]],[false,{\".mobile-address\":false},[\"padding-top:30px\"]],[false,\"@media (max-width:1000px) and (orientation:landscape){\"],[false,{\".about-intern\":false},[\"padding-bottom:30px\"]],[false,{\".circles-menu\":false},[\"margin-top:30px\"]],[false,\"}\"],[false,\"@media (max-width:1000px){\"],[false,{\".box-post .capa-post\":false},[\"height:170px\"]],[false,\"}\"],[true,{\".box-post\":true},[\"padding:0\",\"margin-bottom:0\"]],[true,{\".box-post:not(#_#_#_#_#_#_#_)\":true},[\"height:100%\"]],[true,{\".box-post-text\":true},[\"padding:30px\"]],[true,{\".div-post\":true},[\"margin-bottom:30px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":9996,\"final_size\":9501,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/shared.css?v=637286258\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"c90d28f47007b3c5d58885a57c053d63\",\"parse_time\":0.17221307754516602,\"shake_time\":0.00025200843811035156,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".new-header__nav--list\":true},[\"margin:0\",\"padding:0\",\"display:contents\"]],[true,{\".new-header__nav--list li\":true},[\"list-style:none\",\"color:#152649\",\"font-size:15px\",\"font-weight:900\",\"line-height:30px\",\"text-transform:uppercase\",\"padding:0 .5rem\"]],[true,{\".new-header__nav--list li:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".new-header__nav--list li .nav-link:not(#_#_#_#_#_#_#_#_)\":true},[\"padding-right:10px\",\"padding-left:10px\",\"white-space:nowrap\"]],[true,{\".new-header__nav--list li .nav-link:hover:not(#_#_#_#_#_#_#_#_)\":true},[\"color:#24c1ff\"]],[true,\"@media (max-width:992px){\"],[true,{\".new-header__nav--list li .nav-link:not(#_#_#_#_#_#_#_#_)\":true},[\"padding-right:5px\",\"padding-left:5px\"]],[true,\"}\"],[true,{\".new-header__button\":true},[\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"float:right\",\"width:15%\"]],[true,{\".new-header__button:not(#_#_#_#_#_#_#_)\":true},[\"color:#152649\"]],[true,{\".new-header__button a\":true},[\"background:0 0\",\"border:none\",\"color:#152649\",\"font-family:raleway,sans-serif\",\"font-weight:900\",\"font-size:18px\"]],[true,{\".new-header__button a:hover\":true},[\"text-decoration:none\"]],[true,{\".dropdown-menu\":true},[\"background:#f7f7f7\",\"top:97px\",\"left:50%\",\"transform:translateX(-50%)\",\"width:70%\",\"border-radius:0\",\"border-top:none\",\"cursor:auto\"]],[true,{\".dropdown-menu:not(#_#_#_#_#_#_#_)\":true},[\"position:fixed\"]],[true,{\".dropdown-menu>.container\":true},[\"display:flex\",\"align-items:center\",\"justify-content:center\",\"min-height:270px\",\"padding:2.5rem 1.5rem 3rem\"]],[true,{\".nav-link\":true},[\"display:flex\",\"flex-direction:column\",\"align-items:center\"]],[true,{\".nav-link:not(#_#_#_#_#_#_#_)\":true},[\"color:#152649\"]],[true,{\".dropdown-toggle::after:not(#_#_#_#_#_#_#_#_)\":true},[\"color:#24c1ff\",\"border:1px solid #24c1ff\",\"width:10px\"]],[false,{\".show>.dropdown-toggle::after:not(#_#_#_#_#_#_#_#_)\":false},[\"border-top:.3em solid\",\"border-right:.3em solid transparent\",\"border-bottom:0\",\"border-left:.3em solid transparent\",\"width:0\"]],[true,{\".new-header__nav--title h5\":true},[\"font-size:2.3rem\",\"text-transform:initial\",\"font-family:raleway,sans-serif\",\"font-weight:800\",\"color:#152649\",\"line-height:38px\"]],[true,{\".new-header__nav--title h5:after\":true},[\"content:\\\"-\\\"\",\"border-bottom:0 solid\",\"border-image-slice:1\",\"border-width:5px\",\"display:block\",\"color:transparent\",\"height:25px\",\"width:65px\",\"margin-bottom:2rem\"]],[true,{\".new-header__nav--subtitle p\":true},[\"margin:0\",\"font-size:.8rem\",\"color:#152649\",\"font-weight:400\",\"text-transform:initial\",\"margin-bottom:2rem\",\"line-height:15px\"]],[true,{\".new-header__nav--subtitle p:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".new-header__nav--right-edge\":true},[\"border-right:1px solid #c9c9c9\"]],[true,{\".new-header__nav--menu--img\":true},[\"padding:0\",\"text-align:center\"]],[true,{\".new-header__nav--menu--img amp-img\":true,\".new-header__nav--menu--img amp-anim\":false},[\"max-width:100%\"]],[true,{\".new-header__nav--menu--title\":true},[\"color:#152649\",\"text-transform:capitalize\",\"font-weight:800\",\"font-family:raleway,sans-serif\",\"font-size:1.1rem\",\"margin-bottom:.3rem\"]],[true,{\".new-header__nav--menu--text\":true},[\"color:#6f7070\",\"font-weight:400\",\"text-transform:initial\",\"font-size:.8rem\",\"margin:0\",\"line-height:15px\"]],[true,{\".new-header__nav--menu--text:not(#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".new-header__nav--menu--link:hover>.new-header__nav--menu--title\":true},[\"color:#24c1ff\"]],[true,{\".new-header__nav--menu--link:hover>.new-header__nav--menu--text\":true},[\"color:#24c1ff\"]],[true,{\".new-header__nav--menu--link:hover\":true},[\"text-decoration:none\"]],[true,{\".new-header__nav--menu--box:not(#_#_#_#_#_#_#_)\":true},[\"margin-bottom:1.5rem\"]],[true,{\".new-header__nav--menu--button\":true},[\"width:65%\",\"border-radius:35px\",\"border:1px solid #9df168\",\"position:relative\",\"display:flex\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"text-align:center\",\"font-size:1rem\",\"transition:font .3s\",\"height:45px\",\"align-items:center\",\"justify-content:center\"]],[true,{\".new-header__nav--menu--button:hover\":true},[\"text-decoration:none\",\"font-size:1.2rem\"]],[true,{\".new-header__nav--menu--button--link\":true},[\"color:#152649\",\"text-transform:initial\",\"font-family:raleway,sans-serif\",\"font-weight:900\"]],[true,{\".new-header__nav--title-color\":true},[\"color:#24c1ff\"]],[true,{\".new-header__nav--menu--whatsIs\":true},[\"font-weight:400\",\"color:#24c1ff\",\"text-transform:initial\",\"font-size:.9rem\"]],[true,{\".new-header__nav--menu--whatsIs:not(#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".bg-light\":true},[\"width:85%\"]],[true,{\".bg-light:not(#_#_#_#_#_#_#_)\":true},[\"background-color:transparent\"]],[true,{\".new-header__nav--subtitle-icon\":true},[\"padding:0\",\"text-align:right\"]],[true,{\".new-header__nav--subtitle-icon:not(#_#_#_#_#_#_#_)\":true},[\"width:90%\"]],[true,{\".new-header__logo\":true},[\"width:20%\"]],[true,{\".new-header__menu-item\":true},[\"justify-content:flex-end\"]],[true,{\".new-header\":true},[\"top:0\",\"width:100%\",\"position:fixed\",\"background-color:#f7f7f7\",\"z-index:3\",\"transition:all .3s ease-in-out\",\"display:flex\",\"margin:0\",\"padding:0\",\"justify-content:center\"]],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:100px\"]],[true,{\".navbar-toggler:not(#_#_#_#_#_#_#_)\":true},[\"padding:0\",\"border:none\",\"outline:0\"]],[false,{\".devops-styles:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:100px\"]],[true,\"@media (min-width:300px) and (max-width:768px){\"],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:70px\"]],[false,{\".devops-styles:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:70px\"]],[true,{\".new-header__menu-item\":true},[\"background:#f7f7f7\",\"margin:0\",\"padding:0\",\"width:100%\",\"position:absolute\",\"top:70px\",\"left:0\",\"z-index:9\",\"overflow:scroll\",\"height:650px\",\"padding-bottom:2rem\"]],[true,{\".new-header__logo\":true},[\"width:50%\"]],[true,{\".new-header__button:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".new-header__nav--list\":true},[\"display:flex\",\"align-items:flex-start\"]],[true,{\".new-header__nav--list li\":true},[\"padding-left:1rem\"]],[false,{\".new-header__nav--list>.show\":false},[\"width:100%\",\"border:1px #ccc solid\",\"padding-bottom:1rem\"]],[true,{\".dropdown-toggle::after\":true},[\"display:none\"]],[false,{\".show>.dropdown-toggle:not(#_#_#_#_#_#_#_)\":false},[\"color:#24c1ff\"]],[false,{\".show>.dropdown-toggle::before:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:.3em solid\",\"border-top:0\"]],[true,{\".new-header__nav--list li .nav-link\":true},[\"display:block\"]],[true,{\".dropdown-toggle::before\":true},[\"display:inline-block\",\"margin-right:.5rem\",\"vertical-align:.255em\",\"content:\\\"\\\"\"]],[true,{\".dropdown-toggle::before:not(#_#_#_#_#_#_#_#_)\":true},[\"border-top:.3em solid\",\"border-right:.3em solid transparent\",\"border-bottom:0\",\"border-left:.3em solid transparent\",\"color:#24c1ff\"]],[true,{\".dropdown-menu\":true},[\"width:100%\",\"top:0\",\"left:0\",\"transform:none\",\"padding:0\",\"border:none\"]],[true,{\".dropdown-menu:not(#_#_#_#_#_#_#_)\":true},[\"position:relative\"]],[true,{\".dropdown-menu>.container\":true},[\"padding:0\"]],[true,{\".dropdown-menu>.container>.row\":true},[\"width:100%\"]],[true,{\".new-header__nav--title h5\":true},[\"font-size:1.5rem\"]],[true,{\".new-header__nav--title h5:after\":true},[\"display:none\"]],[true,{\".new-header__nav--menu--img\":true},[\"display:none\"]],[true,{\".align-items-center>.col-md-8\":true},[\"padding:0\"]],[true,{\".bg-light\":true},[\"width:100%\"]],[true,{\".new-header__nav--menu--title\":true},[\"display:flex\",\"align-items:center\"]],[true,{\".new-header__nav--menu--title::after\":true},[\"display:inline-block\",\"margin-left:.5rem\",\"vertical-align:.255em\",\"content:\\\"\\\"\"]],[true,{\".new-header__nav--menu--title::after:not(#_#_#_#_#_#_#_#_)\":true},[\"border-top:.3em solid transparent\",\"border-right:0\",\"border-bottom:.3em solid transparent\",\"border-left:.3em solid\",\"color:#24c1ff\"]],[true,{\".new-header__nav--right-edge\":true},[\"border-right:none\"]],[true,{\".new-header__nav--menu--button\":true},[\"margin-bottom:2rem\",\"display:flex\",\"width:50%\"]],[true,\"}\"],[true,\"@media (min-width:600px) and (max-width:768px){\"],[true,{\".new-header__button:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".new-header__logo amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".new-header__logo amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:60%\"]],[true,\"}\"],[true,\"@media (min-width:768px) and (max-width:1024px){\"],[true,{\".new-header__nav--list li\":true},[\"font-size:10px\"]],[true,{\".new-header__button a\":true},[\"font-size:13px\"]],[true,\"}\"],[true,{\".footer-2022\":true},[\"background-color:#152649\",\"color:#c1c1c1\",\"padding:5rem 0 5rem\",\"font-weight:400\"]],[true,{\".footer-2022:not(#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".footer-2022__logo amp-img\":true,\".footer-2022__logo amp-anim\":false},[\"width:100%\"]],[true,{\".footer-2022__text\":true},[\"font-size:.9rem\",\"text-align:end\",\"line-height:15px\"]],[true,{\".footer-2022__certificates\":true},[\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[true,{\".footer-2022__certificates-box-union\":true},[\"display:flex\"]],[true,{\".footer-2022__certificates--kubernetes a amp-img\":true,\".footer-2022__certificates--kubernetes a amp-anim\":false},[\"width:100%\",\"padding:0 1rem\"]],[true,{\".footer-2022__certificates--cloud-native a amp-img\":true,\".footer-2022__certificates--cloud-native a amp-anim\":false},[\"width:100%\",\"padding:0 1rem\"]],[true,{\".footer-2022__certificates--linux-foundation a amp-img\":true,\".footer-2022__certificates--linux-foundation a amp-anim\":false},[\"width:100%\",\"padding:0 1rem\"]],[true,{\".footer-2022__social-media\":true},[\"display:flex\",\"align-items:center\",\"justify-content:end\"]],[true,{\".footer-2022__social-media a\":true},[\"margin:0 .5rem\",\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[true,{\".footer-2022__social-media a amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".footer-2022__social-media a amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[true,{\".footer-2022__menu\":true},[\"margin-top:6rem\",\"margin-bottom:5rem\"]],[true,{\".footer-2022__menu--box\":true},[\"display:flex\",\"flex-direction:row\",\"width:100%\",\"padding:0\"]],[true,{\".footer-2022__menu--list\":true},[\"flex-grow:1\"]],[true,{\".footer-2022__menu--list h5\":true},[\"color:#59657e\",\"margin-bottom:1rem\",\"font-size:1rem\"]],[true,{\".footer-2022__menu--list h5:after\":true},[\"content:\\\"-\\\"\",\"border-bottom:0 solid\",\"border-image-slice:1\",\"border-width:4px\",\"display:block\",\"color:transparent\",\"height:20px\",\"width:65px\",\"margin-bottom:1.5rem\"]],[true,{\".footer-2022__menu--list ul\":true},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[true,{\".footer-2022__menu--list ul li\":true},[\"margin-bottom:.5rem\"]],[true,{\".footer-2022__menu--list ul li strong\":true},[\"color:#24c1ff\",\"font-weight:900\",\"font-family:raleway,sans-serif\",\"padding-bottom:.5rem\",\"display:block\"]],[true,{\".footer-2022__menu--list ul li a\":true},[\"color:#24c1ff\",\"font-weight:500\",\"font-family:raleway,sans-serif\",\"font-size:.9rem\"]],[true,{\".footer-2022__menu--list ul li a:hover\":true},[\"text-decoration:none\",\"-webkit-background-clip:text\",\"-webkit-text-fill-color:transparent\"]],[true,{\".footer-2022__box-end\":true},[\"font-size:.9rem\"]],[true,{\".footer-2022__box-end--privacy-policy\":true},[\"text-decoration:underline\",\"color:#c9c9c9\",\"padding-right:1rem\",\"border-right:1px solid #c9c9c9\"]],[true,{\".footer-2022__box-end--privacy-policy:hover\":true},[\"color:#24c1ff\"]],[true,{\".footer-2022__box-end--terms-of-use\":true},[\"text-decoration:underline\",\"color:#c9c9c9\",\"margin-left:1rem\",\"margin-right:3rem\"]],[true,{\".footer-2022__box-end--terms-of-use:hover\":true},[\"color:#24c1ff\"]],[true,{\".footer-2022__copyright\":true},[\"font-size:.9rem\",\"color:#c9c9c9\"]],[true,\"@media (min-width:300px) and (max-width:768px){\"],[true,{\".footer-2022__logo amp-img\":true,\".footer-2022__logo amp-anim\":false},[\"margin-bottom:3rem\",\"padding-top:5rem\",\"border-top:2px solid #486091\"]],[true,{\".footer-2022__text\":true},[\"text-align:left\",\"margin-bottom:2rem\"]],[true,{\".footer-2022__certificates\":true},[\"margin-bottom:4rem\"]],[true,{\".footer-2022__social-media\":true},[\"justify-content:flex-start\"]],[true,{\".footer-2022__certificates-box-union\":true},[\"display:flex\",\"flex-direction:column-reverse\"]],[true,{\".footer-2022__certificates--cloud-native a amp-img\":true,\".footer-2022__certificates--cloud-native a amp-anim\":false},[\"margin-bottom:1rem\"]],[true,{\".footer-2022__certificates--kubernetes a amp-img\":true,\".footer-2022__certificates--kubernetes a amp-anim\":false},[\"padding:0 .2rem\"]],[true,{\".footer-2022__certificates--linux-foundation a amp-img\":true,\".footer-2022__certificates--linux-foundation a amp-anim\":false},[\"width:80%\",\"margin-bottom:1rem\"]],[true,{\".footer-2022__menu\":true},[\"margin-top:5rem\",\"margin-bottom:3rem\",\"margin-left:15px\",\"margin-right:15px\"]],[true,{\".footer-2022__menu--box\":true},[\"flex-direction:column\"]],[true,{\".footer-2022__menu--list ul\":true},[\"margin-bottom:3rem\"]],[true,{\".footer-2022__mobile-items\":true},[\"width:100%\",\"padding-right:15px\",\"padding-left:15px\",\"margin-right:auto\",\"margin-left:auto\"]],[true,{\".footer-2022__box-end\":true},[\"margin-bottom:.5rem\"]],[true,\"}\"],[true,\"@media (min-width:600px) and (max-width:768px){\"],[true,{\".footer-2022__logo amp-img\":true,\".footer-2022__logo amp-anim\":false},[\"margin-bottom:0\",\"padding-top:0\",\"border-top:none\"]],[true,{\".footer-2022__certificates-box-union\":true},[\"flex-direction:row\"]],[true,{\".footer-2022__text\":true},[\"margin-bottom:0\"]],[true,{\".footer-2022__certificates\":true},[\"margin-bottom:0\"]],[true,{\".footer-2022__social-media\":true},[\"margin-top:2rem\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1312,\"final_size\":507,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/style.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"7408b05c90ec93467ae3ffd934b45823\",\"parse_time\":0.006227016448974609,\"shake_time\":2.09808349609375e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".categories\":true},[\"list-style-type:none\",\"padding:20px\"]],[false,{\".grecaptcha-badge\":false},[\"display:none\"]],[false,{\"figcaption\":false},[\"font-size:12px\",\"text-align:center\"]],[true,{\".content-blog h1\":true},[\"font-size:45px\",\"line-height:45px\",\"margin-top:20px\",\"margin-bottom:30px\"]],[true,{\".content-blog strong\":true},[\"font-size:inherit\"]],[false,{\".content-blog h2\":false},[\"font-size:35px\",\"line-height:35px\",\"margin-top:20px\",\"margin-bottom:20px\",\"color:#23819d\"]],[false,{\".content-blog h3\":false},[\"font-size:30px\",\"line-height:30px\",\"margin-top:20px\",\"margin-bottom:20px\",\"color:inherit\",\"color:#000\"]],[false,{\".content-blog h4\":false},[\"position:relative\",\"font-family:\\\"Rajdhani\\\"\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"margin-top:10px\",\"margin-bottom:10px\"]],[true,{\".content-blog h5\":true},[\"position:relative\",\"font-family:\\\"Rajdhani\\\"\",\"font-weight:500\",\"line-height:20px\",\"font-size:20px\",\"margin-top:10px\",\"margin-bottom:0px\"]],[true,{\".content-blog h6\":true},[\"position:relative\",\"font-family:\\\"Rajdhani\\\"\",\"font-weight:500\",\"line-height:18px\",\"font-size:18px\",\"margin-top:10px\",\"margin-bottom:0px\"]],[true,{\".content-blog p a\":true},[\"color:#0693e3\",\"text-decoration:underline\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":155232,\"final_size\":10932,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/style-isk.css?v=1862204178\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"6f68b4471d049368cf66b5fad21e7dbd\",\"parse_time\":2.078889846801758,\"shake_time\":0.04806113243103027,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"body\":true},[\"background-color:#fff\",\"font-family:Raleway,sans-serif\",\"font-weight:400\",\"font-size:14px\",\"line-height:20px\",\"color:#152649\",\"-webkit-font-smoothing:subpixel-antialiased\",\"overflow-x:hidden\"]],[false,{\"sup\":false},[\"top:-.8em\",\"font-size:7px\",\"font-weight:800\"]],[false,{\".red\":false},[\"color:#ff555f\"]],[false,{\".grey\":false},[\"color:#7080a7\"]],[false,{\".turquouise\":false},[\"color:#28d9cb\"]],[false,{\".flourscent\":false},[\"color:#24c1ff\"]],[false,{\".g-d-none\":false},[\"display:none\"]],[true,{\".new-header\":true},[\"z-index:4\"]],[true,{\".new-header__nav--subtitle p\":true},[\"padding-left:16px\",\"font-size:14px\",\"letter-spacing:-.35px\"]],[true,{\"header nav .dropdown-menu p.new-header__nav--menu--text\":true},[\"max-width:180px\"]],[false,{\".custom-txt-img-sec.tek-world-scale .container-md\":false},[\"max-width:1406px\"]],[false,{\".custom-txt-img-sec .review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:0px\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner\":false},[\"position:relative\"]],[false,{\".c-application-development:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:30px\"]],[false,{\".c-application-development .custom-txt h2:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:25px\"]],[false,{\".cloud-native-application .custom-txt p span\":false},[\"color:#152649\"]],[false,{\".cloud-native-application .review_sec\":false},[\"margin-top:25px\"]],[false,{\".c-application-development .review_sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".c-application-development .cloud-native-application .custom-img amp-img\":false,\".c-application-development .cloud-native-application .custom-img amp-anim\":false},[\"width:94%\"]],[false,{\".cp-tek-teams-isk .title\":false},[\"margin-bottom:24px\"]],[false,{\".cp-tek-teams-isk .title p\":false},[\"margin:0\",\"color:#28d9cb\",\"font-size:16px\",\"text-transform:uppercase\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:400\"]],[false,{\".cp-tek-teams-isk p\":false},[\"font-size:24px\",\"color:#28d9cb\",\"margin:10px 0px 0px 0px\",\"font-weight:700\",\"line-height:normal\"]],[false,{\".cp-tek-teams-isk amp-img\":false,\".cp-tek-teams-isk amp-anim\":false},[\"min-height:350px\"]],[false,{\".cp-tek-teams-isk .inner-hero-text amp-img\":false,\".cp-tek-teams-isk .inner-hero-text amp-anim\":false},[\"min-height:unset\"]],[false,{\".review_sec\":false},[\"background:#f5f5f5\",\"padding:40px 56px\",\"margin-top:65px\",\"box-shadow:0px 20px 32px 0px rgba(0,0,0,.2)\",\"position:relative\",\"position:relative\",\"border-radius:24px\"]],[false,{\".review_sec amp-img\":false,\".review_sec amp-anim\":false},[\"position:absolute\",\"left:0px\"]],[false,{\".review_sec::after\":false},[\"content:\\\"\\\"\",\"display:block\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8578.png\\\")\",\"background-repeat:no-repeat\",\"width:40px\",\"height:40px\",\"position:absolute\",\"top:-20px\",\"left:56px\",\"background-size:cover\"]],[false,{\".review_sec .swiper-slide p\":false},[\"margin:0\",\"font-size:20px\",\"color:#707070\"]],[false,{\".review_sec .swiper-slide i\":false},[\"margin:20px 0px\",\"display:block\",\"color:#707070\",\"font-size:18px\",\"padding-left:70px\"]],[false,{\".review_sec .swiper-slide span\":false},[\"color:#152649\",\"font-weight:700\"]],[false,{\".review_sec .title p\":false},[\"font-size:20px\",\"font-weight:700\",\"color:#707070\"]],[false,{\".review_sec .title span\":false},[\"color:#28d9cb\"]],[false,{\".rebuild-and-replatform\":false},[\"background-color:#f1f1f1\",\"padding:120px 0px 192px 0px\"]],[false,{\".rebuild-and-replatform .txt label\":false},[\"display:block\",\"margin-bottom:40px\"]],[false,{\".rebuild-and-replatform .txt h2\":false},[\"margin-bottom:40px\"]],[false,{\".rebuild-and-replatform .txt h2 span\":false},[\"color:#28d9cb\"]],[false,{\".rebuild-and-replatform .txt p\":false},[\"color:#707070\",\"margin-bottom:30px\",\"font-size:20px\",\"line-height:1.6em\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content\":false},[\"display:none\",\"flex-wrap:wrap\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text p\":false},[\"font-size:20px\",\"line-height:1.6\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img\":false},[\"width:175px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-img\":false,\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-anim\":false},[\"width:100%\",\"object-fit:cover\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-boxs\":false},[\"margin-bottom:43px\",\"border-bottom:1px solid #dbdbdb\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text\":false},[\"padding-left:45px\",\"width:calc(100% - 175px)\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content.active\":false},[\"display:flex\",\"padding-bottom:37px\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec\":false},[\"margin:0\",\"box-shadow:unset\",\"background-color:transparent\",\"border-radius:unset\",\"padding:0\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec::after\":false},[\"display:none\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row\":false},[\"background-color:#fff\",\"padding:56px 76px\",\"border-radius:28px\",\"border:1px solid #dbdbdb\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul\":false},[\"list-style:none\",\"padding:0\",\"padding:8px\",\"display:flex\",\"background-color:#fff\",\"border-radius:36px\",\"margin:0px 0px 16px 0px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li\":false},[\"width:50%\",\"padding:16px\",\"border-radius:28px\",\"text-align:center\",\"transition:all .4s ease\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li a\":false},[\"font-size:20px\",\"color:#707070\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li.active\":false},[\"background-color:#f1f1f1\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li.active b\":false},[\"color:#152649\"]],[false,{\".custom-full-bg amp-img\":false,\".custom-full-bg amp-anim\":false},[\"width:100%\",\"display:block\"]],[false,{\".keeping-you-competitive\":false},[\"background-color:#152649\",\"padding:120px 0px 135px\"]],[false,{\".keeping-you-competitive label\":false},[\"color:#7080a7\"]],[false,{\".keeping-you-competitive .heading-box h2\":false},[\"color:#fff\",\"margin-bottom:40px\"]],[false,{\".keeping-you-competitive p\":false},[\"color:#fff\",\"font-family:Raleway,sans-serif\",\"font-size:20px\",\"line-height:1.4\"]],[false,{\".keeping-future\":false},[\"margin-top:40px\"]],[false,{\".keeping-future ul\":false},[\"list-style:none\",\"font-size:20px\",\"color:#24c1ff\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".keeping-future ul li\":false},[\"margin-bottom:32px\",\"font-style:italic\",\"border-bottom:#16365c solid 1px\",\"padding-bottom:30px\",\"width:26%\",\"margin-right:45px\",\"font-weight:500\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:11%\"]],[false,{\".keeping-future ul li:nth-child(8)\":false,\".keeping-future ul li:nth-child(4)\":false},[\"margin-right:0px\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(10)\":false,\".keeping-future ul li:nth-child(11)\":false},[\"border:none\"]],[false,{\".custom-qout-box\":false},[\"background-color:#f1f1f1\",\"padding:40px 0px 95px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-top:-11%\",\"margin-bottom:100px\",\"background-color:#fff\"]],[false,{\".custom-qout-box .review_sec i\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.4\",\"font-weight:400\",\"margin-bottom:24px\",\"display:block\"]],[false,{\".depending-on\":false},[\"display:flex\",\"align-items:center\",\"justify-content:space-between\"]],[false,{\".depending-img-box\":false},[\"width:15%\"]],[false,{\".depending-text\":false},[\"width:55%\"]],[false,{\".depending-text p\":false},[\"font-size:24px\",\"font-weight:bold\",\"line-height:1.4\"]],[false,{\".depending-btn\":false},[\"width:25%\"]],[false,{\".depending-btn .btn-blue\":false},[\"border-radius:50px\",\"padding:24px 30px\"]],[false,{\".native-applications-list\":false},[\"padding:120px 0px 100px\"]],[false,{\".native-applications-list .heading-box\":false},[\"margin-bottom:60px\"]],[false,{\".native-applications-list .heading-box h2 span\":false},[\"color:#28d9cb\"]],[false,{\".native-applications-list .swiper-wrapper\":false},[\"display:flex\",\"justify-content:space-between\"]],[false,{\".native-applications-list .swiper-slide\":false},[\"width:calc(50% - 50px)\"]],[false,{\".applications-col ul\":false},[\"list-style:none\"]],[false,{\".applications-col li\":false},[\"font-size:20px\",\"color:#707070\",\"font-weight:bold\",\"border-bottom:#dbdbdb solid 1px\",\"padding-bottom:25px\",\"margin-bottom:25px\",\"position:relative\",\"padding-left:37px\",\"line-height:1.4\"]],[false,{\".applications-col li::after\":false},[\"position:absolute\",\"left:0px\",\"top:0px\",\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8544.png\\\")\",\"background-repeat:no-repeat\",\"width:24px\",\"height:24px\"]],[false,{\".applications-col li:last-child\":false},[\"border:none\"]],[false,{\".native-applications-list-pagination\":false},[\"text-align:center\"]],[false,{\".native-applications-list-pagination .swiper-pagination-bullet\":false},[\"width:4px\",\"height:4px\",\"background-color:#dbdbdb\",\"opacity:1\"]],[false,{\".native-applications-list-pagination .swiper-pagination-bullet-active\":false},[\"width:24px\",\"height:4px\",\"border-radius:50px\",\"background-color:#28d9cb\"]],[false,{\".native-data-driven-top\":false},[\"background-color:#121d3d\",\"padding-bottom:80px\",\"margin-top:-2px\"]],[false,{\".native-data-driven-top .heading-box label\":false,\".native-data-driven-top .heading-box h2\":false},[\"color:#fff\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 190px\",\"background-color:#f1f1f1\"]],[false,{\".data-driven-application .swiper-slide\":false},[\"width:calc(33.333% - 44px)\"]],[false,{\".data-driven-application .swiper-wrapper\":false},[\"display:flex\",\"justify-content:space-between\"]],[false,{\".data-driven-application .swiper-button-next.swiper-button-disabled\":false,\".data-driven-application .swiper-button-prev.swiper-button-disabled\":false},[\"opacity:0\"]],[false,{\".data-driven-application .swiper-button-next:after\":false},[\"content:\\\"\\\"\",\"background-repeat:no-repeat\",\"width:26px\",\"height:16px\",\"display:none\"]],[false,{\".data-driven-application .swiper-button-next:after:not(#_#_#_#_#_#_#_#_)\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/right-arrow.png\\\")\"]],[false,{\".data-driven-application .swiper-button-prev:after\":false},[\"content:\\\"\\\"\",\"background-repeat:no-repeat\",\"width:26px\",\"height:20px\",\"display:none\"]],[false,{\".data-driven-application .swiper-button-prev:after:not(#_#_#_#_#_#_#_#_)\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/left-arrow-1.png\\\")\"]],[false,{\".data-driven-application .slider-nav\":false},[\"width:55%\",\"display:block\",\"height:20px\",\"margin:0px auto\",\"position:relative\"]],[false,{\".data-driven-application .swiper-pagination-bullet\":false},[\"width:4px\",\"border-radius:50px\",\"height:4px\",\"background-color:#24c1ff\",\"opacity:1\"]],[false,{\".data-driven-application .swiper-pagination-bullet-active\":false},[\"width:24px\",\"border-radius:50px\",\"height:4px\",\"background-color:#152649\"]],[false,{\".data-driven-application .applications-col\":false},[\"padding-bottom:15px\"]],[false,{\".data-driven-application .swiper-button-next\":false,\".data-driven-application .swiper-button-prev\":false},[\"bottom:0px\",\"top:auto\",\"position:absolute\"]],[false,{\".data-driven-application .applications-col li\":false},[\"border:none\",\"padding-bottom:0px\",\"margin-bottom:40px\",\"color:#152649\"]],[false,{\".data-driven-application .applications-col li::after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8556.png\\\")\"]],[false,{\".data-driven-application .applications-col li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8548.png\\\")\"]],[false,{\".data-driven-application .applications-col li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8549.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(1):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8550.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8551.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8552.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(4):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8553.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(3) li:nth-child(1):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8554.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(3) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8555.png\\\")\"]],[false,{\".clients-talk\":false},[\"background-color:#fff\",\"padding:120px 0px 120px\"]],[false,{\".lets-talk-box\":false},[\"background-color:#fff\",\"box-shadow:8px 0px 32px rgba(0,0,0,.1)\",\"padding:56px 0px 90px\",\"border-radius:16px\",\"margin-top:-19%\",\"text-align:center\"]],[false,{\".about-dev-ops .review_sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:100px\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:32px\",\"font-weight:bold\",\"color:#707070\",\"font-family:Raleway,sans-serif\",\"line-height:1.3\"]],[false,{\".lets-talk-box h3 span\":false},[\"color:#28d9cb\"]],[false,{\".clients-talk .btn-wrapper\":false},[\"width:316px\",\"margin:0px auto\",\"margin-top:-38px\"]],[false,{\".btn-gradient\":false},[\"border-radius:50px\",\"padding:18px 30px\",\"width:100%\",\"text-align:center\"]],[false,{\".build-wrapper .swiper-wrapper\":false},[\"display:flex\"]],[false,{\".build-wrapper .review_sec\":false},[\"margin-bottom:19px\",\"box-shadow:none\",\"margin-top:21px\"]],[false,{\".build-wrapper .review_sec:before\":false},[\"position:absolute\",\"bottom:6px\",\"content:\\\"\\\"\",\"width:96%\",\"margin:0px auto\",\"right:0\",\"z-index:-1\",\"left:0\",\"height:93px\",\"border-radius:50px\",\"box-shadow:rgba(0,0,0,.4) 0px 25px 20px -20px\"]],[false,{\".build-wrapper .heading-box\":false},[\"margin-bottom:24px\"]],[false,{\".build-wrapper .review_sec .swiper-slide p\":false},[\"padding-left:0\"]],[false,{\".build-wrapper .custom-txt p\":false},[\"margin-bottom:25px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt\":false},[\"width:49%\",\"margin-right:81px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-img\":false},[\"width:43%\",\"margin-left:0\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt p\":false},[\"margin-bottom:30px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt p:last-of-type\":false},[\"margin:0px\"]],[false,{\".text-grey-box\":false},[\"background-color:#f1f1f1\",\"padding:24px\",\"position:relative\",\"margin:40px 0px 32px\"]],[false,{\".text-grey-box p\":false},[\"padding-right:60px\"]],[false,{\".text-grey-box:after\":false},[\"position:absolute\",\"left:0\",\"top:0\",\"height:100%\",\"width:4px\",\"background:#152649\",\"content:\\\"\\\"\"]],[false,{\".journey-roadmap\":false},[\"margin-top:-253px\",\"background-color:#02163c\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:248px 0px 120px 0px\"]],[false,{\".review_sec2\":false},[\"padding:40px 30px 40px 50px\",\"margin-top:100px\",\"z-index:2\",\"position:relative\",\"box-shadow:none\"]],[false,{\".review_sec2::after\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8578-1.png\\\") no-repeat\"]],[false,{\".review_sec i\":false},[\"line-height:1.6\"]],[false,{\".review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:20px\"]],[false,{\".review_sec2 .title p\":false},[\"color:#152649\",\"line-height:1.2\"]],[false,{\".journey-roadmap-header\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\"]],[false,{\".journey-roadmap-logo\":false},[\"width:29%\"]],[false,{\".journey-roadmap-header .heading-box\":false},[\"width:66%\"]],[false,{\".journey-roadmap-header .heading-box h2\":false},[\"color:#fff\"]],[false,{\".journey-roadmap-header .heading-box h2 span\":false},[\"color:#28d9cb\"]],[false,{\".devops-services\":false},[\"padding-bottom:0\"]],[false,{\".devops-services .heading-box\":false},[\"margin-bottom:45px\"]],[false,{\".devops-services .heading-box h2\":false},[\"color:#28d9cb\"]],[false,{\".devops-services .applications-col ul\":false},[\"margin-bottom:37px\"]],[false,{\".devops-services .applications-col ul li\":false},[\"font-size:20px\",\"font-weight:normal\",\"border-bottom:none\",\"padding-bottom:0\",\"margin-bottom:0\",\"padding-left:37px\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:20px\",\"color:#152649\",\"line-height:1.6\",\"margin-bottom:24px\",\"position:relative\",\"padding-left:42px\",\"font-weight:bold\"]],[false,{\".devops-services .applications-col h5::before\":false},[\"position:absolute\",\"left:0px\",\"top:0px\",\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon1.png\\\")\",\"width:30px\",\"height:30px\",\"background-repeat:no-repeat\",\"margin-top:0px\"]],[false,{\".devops-services .applications-col ul li::after\":false},[\"content:none\"]],[false,{\".srvs-text-box\":false},[\"margin-bottom:37px\"]],[false,{\".srvs-text-box p\":false},[\"font-size:20px\",\"line-height:1.6\",\"padding-left:44px\"]],[false,{\".srvs-text-box:nth-child(1) p:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0\",\"left:0\",\"width:25px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8556.png\\\")\",\"height:25px\",\"margin-top:5px\"]],[false,{\".srvs-text-box:last-child h5\":false},[\"color:#707070\"]],[false,{\".srvs-text-box:last-child h5 span\":false},[\"font-weight:500\",\"color:#152649\"]],[false,{\".reliability-engineers\":false},[\"width:95%\",\"margin:0px auto\",\"background-color:#f5f5f5\",\"border-radius:24px\",\"padding:40px 30px 40px 92px\",\"position:relative\",\"margin-top:100px\",\"font-weight:bold\"]],[false,{\".reliability-engineers p\":false},[\"font-size:20px\",\"font-weight:bold\",\"margin-bottom:0px\"]],[false,{\".fortune-box\":false},[\"text-align:center\",\"display:flex\",\"align-items:flex-end\"]],[false,{\".tex-box\":false},[\"padding:11px 0px\",\"margin-top:25px\",\"line-height:1.6\",\"color:#152649\",\"width:49%\",\"border-radius:10px\",\"border:#707070 solid 1px\"]],[false,{\".right-short-text\":false},[\"margin-left:22px\"]],[false,{\".right-short-text p\":false},[\"font-size:14px\",\"font-weight:normal\",\"font-style:italic\",\"color:#707070\"]],[false,{\".mrdata-logo\":false},[\"position:absolute\",\"left:-58px\",\"top:0\",\"bottom:0\",\"display:flex\",\"align-items:center\"]],[false,{\".devops-services .applications-col:nth-child(1) h5:last-of-type::before\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon3.png\\\")\"]],[false,{\".native-applications-list .swiper-slide:nth-child(2) .srvs-text-box:nth-child(1) p:after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon2.png\\\")\",\"width:33px\"]],[false,{\".native-applications-list .swiper-slide:nth-child(2) .srvs-text-box:nth-child(2) h5::before\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon4.png\\\")\",\"margin-top:0px\"]],[false,{\".native-applications-list .swiper-slide:nth-child(2) .srvs-text-box:nth-child(3) h5::before\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon5.png\\\")\"]],[false,{\".kubernetes-sec\":false},[\"margin-top:-95px\"]],[false,{\".kubernetes-sec .container-md\":false},[\"padding:0px 0px\"]],[false,{\".kubernetes-sec .custom-txt\":false},[\"padding:0px 24px\"]],[false,{\".kubernetes-sec .heading-box h2\":false},[\"color:#fff\",\"margin-bottom:40px\"]],[false,{\".kubernetes-sec .scroll-img amp-img\":false,\".kubernetes-sec .scroll-img amp-anim\":false},[\"margin-bottom:120px\",\"text-align:center\"]],[false,{\".kubernetes-sec .scroll-img\":false},[\"text-align:center\"]],[false,{\".kubernetes-sec .custom-txt p\":false},[\"color:#fff\",\"font-size:20px\",\"line-height:1.6\"]],[false,{\".kubernetes-sec .custom-txt p span\":false},[\"color:#24c1ff\"]],[false,{\".book-cunsultaion-sec\":false},[\"padding:10px 0px 124px 0px\",\"background-color:#f1f1f1\"]],[false,{\".book-cunsultaion-sec a.btn-blue:hover\":false},[\"color:#fff\",\"background:#28d9cb\"]],[false,{\".top-btn\":false},[\"padding-bottom:124px\",\"margin-top:-39px\"]],[false,{\".col-row ul\":false},[\"list-style:none\",\"display:flex\",\"justify-content:space-between\",\"flex-wrap:wrap\"]],[false,{\".col-row ul li\":false},[\"font-size:20px\",\"font-weight:bold\",\"color:#152649\",\"margin-bottom:32px\",\"position:relative\",\"width:30%\",\"padding-left:46px\"]],[false,{\".col-row ul li::after\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"content:\\\"\\\"\",\"width:32px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/clck.png\\\")\",\"height:32px\"]],[false,{\".col-row ul li:nth-child(1)\":false,\".col-row ul li:nth-child(4)\":false},[\"width:35%\"]],[false,{\".col-row ul li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/cstmr.png\\\")\"]],[false,{\".col-row ul li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/wrld.png\\\")\"]],[false,{\".col-row ul li:nth-child(4):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/auto.png\\\")\"]],[false,{\".col-row ul li:nth-child(5):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/drive.png\\\")\"]],[false,{\".col-row ul li:nth-child(6):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/dlr.png\\\")\"]],[false,{\".cost-effective-sec\":false},[\"padding-bottom:0px\",\"padding-top:120px\"]],[false,{\".cost-effective-sec:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#fff\"]],[false,{\".cost-effective-sec .inner\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:end\",\"margin-bottom:80px\"]],[false,{\".cost-effective-sec .custom-txt\":false},[\"width:55%\"]],[false,{\".cost-effective-sec .left-text\":false},[\"width:43%\"]],[false,{\".cost-effective-sec .left-text p\":false},[\"font-size:20px\",\"line-height:1.6\",\"color:#707070\"]],[false,{\".cost-effective-sec .heading-box h2 span\":false},[\"color:#28d9cb\",\"display:block\"]],[false,{\".data-driven-devOps\":false},[\"display:flex\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col\":false},[\"padding-bottom:15px\",\"width:calc(50% - 38px)\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col li\":false},[\"border-bottom:#dbdbdb solid 1px\",\"padding-bottom:32px\",\"margin-bottom:32px\",\"line-height:1.6\",\"padding-left:50px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col li:after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/ppl.png\\\")\",\"width:32px\",\"height:32px\",\"margin-top:8px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(2) li:nth-child(1):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/loaction.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(2) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/icon.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(1) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/icon2.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(1) li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/icon3.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col ul li:last-child\":false},[\"border:none\"]],[false,{\".cost-effective-sec .review_sec2 .swiper-slide\":false},[\"width:100%\"]],[false,{\".cost-effective-sec .review_sec .swiper-slide i\":false},[\"padding-left:0px\"]],[false,{\".infrastructure-sec\":false},[\"margin-top:-100px\",\"background-color:#152649\",\"text-align:center\"]],[false,{\".infrastructure-sec:not(#_#_#_#_#_#_#_)\":false},[\"padding:0px 0 80px\"]],[false,{\".infrastructure-sec .bg-img::before\":false},[\"content:\\\"\\\"\",\"width:100%\",\"height:265px\",\"position:absolute\",\"left:0\",\"bottom:-3px\",\"background-image:linear-gradient(rgba(21,38,73,0),#152649)\"]],[false,{\".infrastructure-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".infrastructure-sec .container-md:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0px\"]],[false,{\".infrastructure-sec .heading-box h2\":false},[\"color:#fff\",\"margin:auto\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:93%\"]],[false,{\".infrastructure-sec .heading-box:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\",\"margin-top:40px\",\"width:100%\"]],[false,{\".infrastructure-sec .heading-box h2\":false},[\"color:#fff\",\"max-width:inherit\",\"text-align:center\"]],[false,{\".contact-wrapper-banner\":false},[\"z-index:2\"]],[false,{\".contact-form-left .calendly-inline-widget:not(#_#_#_#_#_#_#_)\":false},[\"overflow:hidden\"]],[false,{\".contact-wrapper-banner amp-img\":false,\".contact-wrapper-banner amp-anim\":false},[\"min-height:110px\"]],[false,{\".contact-wrapper-banner:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:28px\",\"height:28px\",\"background-color:#152649\",\"bottom:-13px\",\"left:18%\",\"z-index:-1\",\"transform:rotate(45deg)\",\"border-radius:4px\"]],[false,{\".change_bg .custom-contact-wrapper\":false},[\"background:#152649\",\"position:relative\",\"z-index:2\"]],[false,{\".about-map\":false},[\"position:relative\"]],[false,{\".c-full-map\":false},[\"position:absolute\",\"top:0\",\"width:100%\",\"height:100%\",\"z-index:1\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"width:100%\",\"height:100%\",\"object-fit:cover\"]],[false,{\".custom-contact-wrapper\":false},[\"padding:125px 0px 160px\",\"margin-top:0px\"]],[false,{\".about-map .c-full-map .wpgmza_map.wpgmza-auto-left:not(#_#_#_#_#_#_#_)\":false},[\"height:100%\"]],[false,{\".about-map .c-full-map .wpgmza-modern-store-locator>.wpgmza-inner\":false},[\"opacity:0\"]],[false,{\".schedule-box h1\":false},[\"display:none\"]],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"display:flex\",\"justify-content:space-between\",\"flex-wrap:wrap\",\"background:#fff\",\"box-shadow:8px 0px 32px rgba(0,0,0,.1)\",\"padding:0px\",\"border-radius:0px 26px 26px 26px\",\"position:relative\",\"z-index:2\"]],[false,{\".contact-form-left\":false},[\"width:57%\",\"padding:58px 0px 75px\"]],[false,{\".choose-option\":false},[\"padding-left:46px\"]],[false,{\".choose-option ul\":false},[\"display:flex\",\"flex-wrap:wrap\",\"justify-content:space-between\",\"list-style:none\",\"align-items:center\",\"margin-bottom:60px\"]],[false,{\".choose-option ul li\":false},[\"font-size:20px\",\"color:#152649\"]],[false,{\".choose-option ul li\":false},[\"padding:15px 33px\",\"border-radius:50px\",\"color:#707070\",\"background:#fff\",\"transition:all ease .5s\"]],[false,{\".choose-option ul li:hover\":false},[\"background:#f1f1f1\"]],[false,{\".choose-option ul li:nth-child(2)\":false},[\"font-weight:800\",\"padding:0px 20px\",\"background:transparent\",\"color:#121d3d\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box label\":false},[\"display:block\",\"font-size:18px\",\"color:#121d3d\",\"font-weight:bold\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control\":false},[\"width:100%\",\"display:block\",\"padding:14px 0px 8px\",\"border:0\",\"border-radius:0px\",\"outline:none\",\"background-color:#fff\",\"font-size:20px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:400\",\"color:#000\",\"resize:none\",\"-webkit-transition:.5s ease 0s\",\"transition:.5s ease 0s\",\"border-bottom:#e6e6e6 solid 1px\",\"margin-bottom:15px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .col-md-4\":false},[\"max-width:50%\",\"margin-bottom:15px\",\"flex:0 0 50%\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box::placeholder\":false},[\"font-size:16px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control::-webkit-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:16px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control::-ms-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:16px\",\"font-weight:normal\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control::placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:16px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea\":false},[\"margin-top:0\",\"height:130px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:55px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box input[type=\\\"submit\\\"]\":false},[\"background:linear-gradient(-90deg,#28d9cb 0,#a0f266 100%)\",\"font-size:18px\",\"height:70px\",\"font-weight:800\",\"cursor:pointer\",\"max-width:300px\",\"width:100%\",\"border-radius:50px\",\"margin:0\"]],[false,{\".change_bg .contact-form-info-right\":false},[\"background:linear-gradient(180deg,#28d9cb 0,#66f2a3 100%)\"]],[false,{\".change_bg .contact-form-info-right ul li a\":false,\".change_bg .contact-form-info-right ul li span a\":false,\".change_bg .contact-form-info-right ul li\":false,\".change_bg .contact-form-info-right ul li:first-of-type\":false,\".change_bg .contact-form-info-right h3\":false},[\"color:#152649\"]],[false,{\".change_bg .contact-form-info-right ul li\":false},[\"border-color:rgba(255,255,255,28%)\"]],[false,{\".btn-group button\":false},[\"border-radius:50px\",\"border:none\"]],[false,{\".contact-form-info-right\":false},[\"width:38%\",\"background-color:#152649\",\"border-radius:26px\",\"padding:50px 80px 119px\"]],[false,{\".contact-form-info-right h3\":false},[\"font-size:32px\",\"color:#28d9cb\",\"line-height:1.5\",\"margin-bottom:25px\",\"font-family:Raleway,sans-serif\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control:focus\":false},[\"outline:none\",\"box-shadow:none\"]],[false,{\".contact-form-info-right ul\":false},[\"list-style:none\",\"margin-bottom:70px\"]],[false,{\".contact-form-info-right ul li\":false},[\"border-bottom:#525c70 solid 1px\",\"padding:40px 0px 47px\",\"color:#bcc2ce\",\"font-size:17px\",\"position:relative\",\"display:flex\",\"align-items:center\",\"line-height:1.5\"]],[false,{\".contact-form-info-right ul li a\":false},[\"color:#28d9cb\",\"padding-left:15px\",\"text-decoration:underline\",\"display:block\"]],[false,{\".contact-form-info-right ul li:nth-of-type(1) a\":false},[\"text-decoration:none\"]],[false,{\".contact-form-info-right ul li:nth-of-type(2) a\":false},[\"color:#28d9cb\",\"padding-left:0px\"]],[false,{\".contact-form-info-right ul li:nth-of-type(2) span\":false},[\"padding-left:55px\",\"display:block\"]],[false,{\".contact-form-info-right ul li:last-child a\":false},[\"padding-left:55px\"]],[false,{\".contact-form-info-right ul li:first-of-type a\":false},[\"color:#fff\",\"font-size:32px\",\"font-weight:bold\",\"line-height:1.5\"]],[false,{\".contact-form-info-right ul li:last-child\":false},[\"border:none\"]],[false,{\".change_bg .contact-form-info-right ul .phone:before\":false,\".change_bg .contact-form-info-right ul .address:before\":false,\".change_bg .contact-form-info-right ul .email:before\":false,\".change_bg .btm-icon-line amp-img\":false,\".change_bg .btm-icon-line amp-anim\":false},[\"filter:brightness(100)\"]],[false,{\".contact-form-info-right ul .phone:before\":false},[\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/phone.svg\\\")\",\"background-size:cover\",\"background-repeat:no-repeat\",\"width:40px\",\"height:40px\",\"display:inline-block\",\"vertical-align:middle\"]],[false,{\".contact-form-info-right ul .address:before\":false},[\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/address.svg\\\")\",\"background-size:cover\",\"background-repeat:no-repeat\",\"width:41px\",\"height:45px\",\"display:inline-block\",\"vertical-align:middle\",\"padding-bottom:46px\",\"position:absolute\"]],[false,{\".contact-form-info-right ul .email:before\":false},[\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/email.svg\\\")\",\"background-size:cover\",\"background-repeat:no-repeat\",\"width:40px\",\"height:40px\",\"display:inline-block\",\"vertical-align:middle\",\"position:absolute\"]],[false,{\".change_bg .font-des\":false},[\"-webkit-text-fill-color:#fff\",\"border-image:unset\"]],[false,{\".font-des\":false},[\"font-size:25px\",\"color:#fff\",\"font-weight:bold\",\"border:4px solid\",\"padding:4px 5px\",\"background:linear-gradient(0deg,rgba(40,217,203,1) 0%,rgba(102,242,163,1) 100%)\",\"-webkit-background-clip:text\",\"-webkit-text-fill-color:transparent\",\"border-image:linear-gradient(0deg,rgba(40,217,203,1) 0%,rgba(102,242,163,1) 100%)\"]],[false,{\".btm-icon-line\":false},[\"position:relative\",\"display:flex\",\"justify-content:center\"]],[false,{\".choose-option ul li.tab\":false},[\"cursor:pointer\"]],[false,{\".choose-option ul li:last-child\":false},[\"margin-left:0px\"]],[false,{\".contact-form-left .tab-content\":false},[\"display:none\",\"padding-left:50px\"]],[false,{\".contact-form-left .tab-content.active\":false},[\"display:block\"]],[false,{\".btm-icon-line:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"left:0px\",\"bottom:0px\",\"margin:auto\",\"height:1px\",\"width:130px\",\"top:0\",\"background:#525c70\"]],[false,{\".btm-icon-line::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"right:0px\",\"bottom:0px\",\"margin:auto\",\"height:1px\",\"width:130px\",\"top:0\",\"background:#525c70\"]],[true,\"@media only screen and (min-width: 2751px) and (max-width: 3840px){\"],[true,{\".new-header\":true},[\"padding:0px 23%\"]],[true,\"}\"],[true,\"@media only screen and (min-width: 2200px) and (max-width: 2750px){\"],[true,{\".new-header\":true},[\"padding:0px 10%\"]],[true,\"}\"],[false,\"@media screen and (max-width: 1320px) and (min-width: 1025px){\"],[false,{\".contact-form-info-right\":false},[\"padding:50px 25px 119px\"]],[false,\"}\"],[true,\"@media only screen and (max-width: 1920px){\"],[true,{\".new-header .dropdown-menu>.container\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".new-header .mega-menu-right\":true},[\"padding:0px\",\"margin:0px\",\"flex:0 0 71.666667%\",\"max-width:71.666667%\"]],[true,{\".new-header .dropdown-menu .col-lg-4\":true},[\"padding:0\",\"flex:0 0 24.333333%\",\"max-width:24.333333%\"]],[true,{\".new-header .mega-menu-right .row .menu-widget\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".dropdown-menu\":true},[\"width:66%\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1024px){\"],[true,{\".new-header .dropdown-menu>.container\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".new-header .mega-menu-right\":true},[\"flex:0 0 78.666667%\",\"max-width:78.666667%\"]],[true,{\".new-header .dropdown-menu .col-lg-4\":true},[\"flex:0 0 21.333333%\",\"max-width:21.333333%\"]],[true,{\".new-header .mega-menu-right .row .menu-widget\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".dropdown-menu\":true},[\"width:66%\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-top:-16%\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:12%\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .mega-menu-right\":true},[\"flex:0 0 66.666667%\",\"max-width:66.666667%\",\"padding-right:71px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .mega-menu-right\":true},[\"flex:100%\",\"max-width:100%\",\"padding-right:20px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .dropdown-menu .col-lg-4\":true},[\"flex:100%\",\"max-width:100%\"]],[true,{\".new-header__nav--subtitle p\":true},[\"padding-left:0px\"]],[true,{\"a.new-header__nav--menu--button\":true},[\"margin-bottom:25px\"]],[true,{\".new-header__menu-item\":true},[\"padding-left:0\"]],[true,\"}\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 90px 0px 30px\"]],[true,\"@media only screen and (min-width: 1920px) and (max-width: 2129px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 50px 0px 30px\"]],[true,\"}\"],[true,\"@media (max-width: 1800px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 2.2rem\"]],[true,\"}\"],[true,\"@media (max-width: 1366px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 1rem 0rem 2.2rem\"]],[true,\"}\"],[true,\"@media (max-width: 1280px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 1.2rem\"]],[true,\"}\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link\":true},[\"font-size:16px\"]],[true,\"@media only screen and (max-width: 1920px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:16px\",\"padding:0px 17px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1680px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"padding:0px 6px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1440px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"padding:0px 11px\",\"font-size:14px\"]],[false,{\".native-applications-list\":false},[\"padding:120px 0px 120px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1366px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:13px\",\"padding:0px 11px\"]],[false,{\".depending-text p\":false},[\"font-size:23px\"]],[false,{\".applications-col li\":false},[\"font-size:18px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1024px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\",\"padding:0px 8px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:10px\",\"padding:.5rem 1rem\"]],[true,\"}\"],[false,{\".show>.dropdown-toggle::after\":false},[\"transform:rotate(45deg)\",\"text-align:left\",\"display:inline-block\"]],[false,{\".show>.dropdown-toggle::after:not(#_#_#_#_#_#_#_#_)\":false},[\"width:7px\",\"height:7px\",\"border:solid 1px #24c1ff\",\"border-left:0\",\"border-top:0\"]],[false,\"@media only screen and (max-width: 991px){\"],[false,{\".show>.dropdown-toggle::after\":false},[\"display:none\"]],[false,\"}\"],[true,{\"a.new-header__nav--menu--button\":true},[\"position:relative\",\"min-width:132px\",\"transition:all ease .5s\",\"transition:all .5s\",\"border:1px solid #9df168\",\"background:transparent\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"margin:0px\",\"display:flex\",\"text-align:left\",\"padding-left:10px\",\"padding-right:10px\",\"line-height:44px\",\"transform:scale(1)\",\"max-width:170px\"]],[true,\"@media (max-width: 992px){\"],[true,{\"a.new-header__nav--menu--button\":true},[\"width:150px\"]],[true,\"}\"],[true,\"@media (max-width: 991px){\"],[true,{\"a.new-header__nav--menu--button\":true},[\"margin-bottom:25px\"]],[true,\"}\"],[true,{\".new-header__nav--title h5\":true},[\"padding-right:40px\"]],[true,\"@media (max-width: 1680px){\"],[true,{\".new-header__nav--title h5\":true},[\"padding-right:0px\"]],[true,\"}\"],[true,{\"a.new-header__nav--menu--button:before\":true},[\"position:absolute\",\"right:30px\",\"top:43%\",\"width:10px\",\"height:10px\",\"border:#707070 solid 1px\",\"z-index:99\",\"content:\\\"\\\"\",\"transform:rotate(45deg)\",\"border-bottom:0\",\"border-left:0\",\"margin-left:15px\",\"display:none\"]],[true,{\"a.new-header__nav--menu--button:hover\":true},[\"transform:scale(1.1)\"]],[true,\"@keyframes pulse{\"],[true,\"0%{transform:scale(1)}\"],[true,\"100%{transform:scale(1.1)}\"],[true,\"}\"],[true,{\".new-header__nav--menu--button:hover\":true},[\"font-size:1rem\"]],[true,\"@media screen and (max-width: 992px){\"],[true,{\"a.new-header__nav--menu--button:after\":true},[\"width:110px\"]],[true,\"}\"],[true,{\"a.new-header__nav--menu--button:hover::after\":true},[\"width:100%\",\"transition:all ease .2s\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\"]],[true,{\".new-header__nav--menu--title\":true},[\"color:#152649\"]],[true,{\".new-header__nav--subtitle-icon amp-img\":true,\".new-header__nav--subtitle-icon amp-anim\":false},[\"width:25px\"]],[true,{\".new-header__nav--subtitle-icon\":true},[\"text-align:left\"]],[true,\"@media screen and (max-width: 1920px){\"],[true,{\".new-header__nav--menu--img\":true},[\"flex:0 0 23%\",\"max-width:23%\"]],[true,{\".col-md-10.menu-text\":true},[\"flex:0 0 77%\",\"max-width:77%\",\"padding-right:0px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1440px){\"],[true,{\".new-header__nav--menu--img\":true},[\"padding:0\",\"max-width:20%\",\"flex:0 0 20%\"]],[true,\"}\"],[true,{\".col-12.new-header__nav--subtitle\":true},[\"padding-right:20px\"]],[true,{\".dropdown-menu\":true},[\"border-top:1px solid #dfdfdf\"]],[true,\"@media only screen and (max-width: 1920px){\"],[true,{\".dropdown-menu\":true},[\"border-top:1px solid #dfdfdf\",\"width:64%\",\"padding-left:40px\",\"padding-top:20px\",\"padding-bottom:20px\"]],[true,{\".new-header__nav--list li .nav-link:not(#_#_#_#_#_#_#_#_)\":true},[\"padding-right:20px\",\"padding-left:20px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1680px){\"],[true,{\".dropdown-menu\":true},[\"width:70%\",\"padding-left:44px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1536px){\"],[true,{\".dropdown-menu\":true},[\"width:76%\",\"padding-left:44px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1440px){\"],[true,{\".new-header__nav--list li\":true},[\"padding:0px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 991px){\"],[true,{\".new-header__nav--list li\":true},[\"padding-left:1rem\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1440px){\"],[true,{\".dropdown-menu\":true},[\"width:83%\",\"padding-left:50px\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:44px\"]],[false,{\".review_sec2\":false},[\"margin-top:47px\"]],[false,{\".top-btn\":false},[\"padding-bottom:60px\"]],[false,{\".book-cunsultaion-sec\":false},[\"padding:10px 0px 60px 0px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1024px){\"],[true,{\".dropdown-menu\":true},[\"padding-left:25px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".dropdown-menu\":true},[\"width:100%\",\"padding-right:10px\",\"padding-left:1rem\",\"border-top:none\"]],[true,\"}\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:18px\",\"letter-spacing:-.43px\"]],[true,\"@media screen and (max-width: 1280px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:16px\"]],[false,{\".custom-qout-box .review_sec i\":false},[\"font-size:18px\"]],[false,{\".depending-text p\":false},[\"font-size:21px\"]],[false,{\".applications-col li\":false},[\"font-size:17px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1024px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:14px\"]],[false,{\".custom-qout-box .review_sec i\":false},[\"font-size:16px\"]],[false,{\".depending-text p\":false},[\"font-size:17px\"]],[false,{\".native-applications-list\":false},[\"padding:90px 0px 50px\"]],[false,{\".depending-btn .btn-blue\":false},[\"padding:15px 10px\"]],[false,{\".applications-col li\":false},[\"font-size:15px\"]],[false,{\".native-applications-list .swiper-slide\":false},[\"width:calc(50% - 19px)\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:26px\"]],[false,{\".lets-talk-box\":false},[\"margin-top:-25%\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 140px\"]],[false,{\".data-driven-application .swiper-slide\":false},[\"width:calc(33.333% - 10px)\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt\":false},[\"margin-right:0\"]],[true,\"}\"],[true,\"@media screen and (max-width: 991px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:1rem\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:18%\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:30px\",\"width:33%\"]],[false,{\".keeping-future ul li:nth-child(9)\\n.keeping-future ul li:nth-child(6)\":false,\".keeping-future ul li:nth-child(3)\":false},[\"margin-right:0px\"]],[false,{\".keeping-future ul li:nth-child(10)\":false,\".keeping-future ul li:nth-child(9)\":false},[\"border-bottom:#16365c solid 1px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 768px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:1.1rem\"]],[false,{\".keeping-you-competitive p\":false},[\"font-size:13px\"]],[false,{\".depending-on\":false},[\"flex-wrap:wrap\"]],[false,{\".depending-img-box\":false},[\"width:20%\"]],[false,{\".depending-text\":false},[\"width:75%\"]],[false,{\".depending-btn\":false},[\"width:100%\",\"text-align:center\"]],[false,{\".custom-qout-box\":false},[\"padding:40px 0px 60px\"]],[false,{\".depending-btn .btn-blue\":false},[\"padding:15px 30px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-top:-24%\",\"margin-bottom:55px\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 110px\"]],[false,{\".native-applications-list .heading-box h2\":false},[\"font-size:25px\"]],[false,{\".native-applications-list .heading-box\":false},[\"margin-bottom:35px\"]],[false,{\".applications-col li\":false},[\"font-size:12px\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:20px\"]],[false,{\".lets-talk-box\":false},[\"padding:35px 0px 60px\",\"margin-top:-29%\"]],[false,{\".clients-talk\":false},[\"padding:120px 0px 55px\"]],[false,{\".clients-talk .btn-gradient\":false},[\"font-size:27px\",\"padding:10px 30px\"]],[false,{\".clients-talk .btn-wrapper\":false},[\"width:245px\",\"margin-top:-27px\"]],[false,{\".keeping-future ul\":false},[\"justify-content:space-between\"]],[false,{\".keeping-future ul li\":false},[\"width:48%\"]],[false,{\".keeping-future ul li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:48%\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(10)\":false},[\"border-bottom:#16365c solid 1px\"]],[false,{\".tex-box\":false},[\"width:68%\"]],[true,\"}\"],[true,{\".new-header__nav--subtitle\":true,\".new-header__nav--subtitle .col-10\":true,\".new-header__nav--title .col-10\":true,\".new-header__nav--title\":true},[\"padding:0px\"]],[true,{\".new-header__nav--subtitle .row .col-12\":true},[\"padding:0px\"]],[true,{\".new-header__nav--menu--text\":true},[\"font-size:12px\",\"letter-spacing:-.29px\"]],[true,{\".new-header__nav--menu--img amp-img\":true,\".new-header__nav--menu--img amp-anim\":false},[\"max-width:100%\",\"width:48px\"]],[true,\"@media only screen and (max-width: 1400px){\"],[true,{\".new-header .dropdown-menu .menu-right\":false,\".new-header .dropdown-menu .menu-widget .row\":true,\".new-header .dropdown-menu .menu-widget\":true},[\"padding:0px\"]],[true,{\".mega-menu-right\":true},[\"padding:0px\"]],[true,{\".new-header__nav--menu--box\":true},[\"align-items:flex-start\"]],[true,{\".col-md-10.menu-text\":true},[\"padding:0px 2px 0px 9px\",\"max-width:80%\",\"flex:0 0 80%\"]],[true,\"}\"],[true,{\".footer-2022__social-media a\":true},[\"transition:all ease .5s\"]],[true,{\".footer-2022__social-media a:hover\":true},[\"margin-top:-10px\"]],[true,\"@media only screen and (min-width: 1800px) and (max-width: 3034px){\"],[true,{\"footer.footer-2022 .container\":true},[\"max-width:1545px\"]],[true,\"}\"],[true,\"@media (max-width: 600px){\"],[true,{\"footer.footer-2022 .container\":true},[\"padding:0px 44px\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec\":false},[\"padding:40px 0px 0px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row\":false},[\"padding:40px 25px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content.active\":false},[\"flex-wrap:wrap\",\"padding-bottom:28px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img\":false},[\"width:100%\",\"margin-bottom:32px\"]],[false,{\".rebuild-and-replatform\":false},[\"padding:120px 0px 120px 0px\"]],[false,{\".rebuild-and-replatform .txt .heading-box h2 br\":false},[\"display:none\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text\":false},[\"padding-left:0\",\"width:100%\"]],[false,{\".review_sec amp-img\":false,\".review_sec amp-anim\":false},[\"top:0\"]],[false,{\".review_sec .swiper-slide i\":false},[\"padding-left:0\"]],[false,{\".review_sec .swiper-slide i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-boxs\":false},[\"margin-bottom:8px\"]],[false,{\".reviewSwiper\":false},[\"padding-top:12px\"]],[false,{\".review_sec .swiper-slide p\":false},[\"padding-left:55px\"]],[false,{\".review_sec .title p\":false},[\"padding-left:0px\"]],[false,{\".review_sec .title p span\":false},[\"display:block\"]],[false,{\".review_sec2 .swiper-slide p:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:0px\"]],[true,\"}\"],[true,\"@media (max-width: 374px){\"],[true,{\"footer.footer-2022 .container\":true},[\"padding:0px 30px\"]],[true,\"}\"],[true,\"@media (max-width: 320px){\"],[true,{\"footer.footer-2022 .container\":true},[\"padding:0px 10px\"]],[true,\"}\"],[true,{\".footer-2022__copyright\":true},[\"letter-spacing:-.35px\"]],[false,{\".container-md\":false},[\"max-width:1272px\",\"margin:0 auto\",\"padding:0 20px\",\"width:90%\"]],[true,{\".footer-2022__menu--list h5:after\":true},[\"border-top:0px\",\"border-right:0\",\"border-left:0\"]],[true,\"@media (max-width: 768px){\"],[true,{\".footer-2022__menu--box\":true},[\"flex-direction:inherit\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[true,\"}\"],[true,\"@media (max-width: 767px){\"],[true,{\".footer-2022__box-end\":true},[\"letter-spacing:-.35px\"]],[true,{\".footer-2022__menu--box\":true},[\"flex-direction:column\"]],[false,{\".g-small-d-block\":false},[\"display:block\"]],[false,{\".g-small-d-none\":false},[\"display:none\"]],[false,{\".data-driven-application .swiper-button-next:after\":false},[\"display:block\"]],[false,{\".data-driven-application .swiper-button-prev:after\":false},[\"display:block\"]],[true,\"}\"],[true,\"@media (max-width: 767px){\"],[false,{\".container-md\":false},[\"width:100%\",\"padding:0 30px\"]],[false,{\".accordianNav .drop_arrow:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"z-index:0\",\"left:0\",\"top:0\",\"width:0\",\"height:100%\",\"background-color:#444\",\"background:rgba(244,244,244,.3)\",\"transition:all .3s ease-out\"]],[false,{\".accordianNav .drop_arrow:hover:before\":false,\".accordianNav .drop_arrow .active:before\":false},[\"width:2%\"]],[true,{\".footer-2022 .drop_arrow\":true},[\"position:relative\"]],[false,{\".drop_arrow.active h5\":false},[\"color:#fff\"]],[true,{\".footer-2022 .drop_arrow::before\":true},[\"content:\\\"\\\"\",\"width:6px\",\"height:6px\",\"border-bottom:2px solid #24c1ff\",\"border-right:2px solid #24c1ff\",\"float:right\",\"position:absolute\",\"top:12px\",\"right:0px\",\"transform:rotate(45deg)\",\"transform-origin:center\",\"transition:all .4s ease\"]],[false,{\".footer-2022 .drop_arrow.active::before\":false},[\"transform:rotate(225deg)\"]],[false,{\".footer-2022__menu--list .drop_arrow .active:after\":false},[\"transform:rotate(-135deg)\",\"border-color:#fff\"]],[true,{\".footer-2022__menu--list ul\":true},[\"margin-bottom:3rem\",\"display:none\"]],[false,{\".keeping-future ul\":false},[\"column-count:2\"]],[false,{\".applications-col li\":false},[\"font-size:14px\"]],[false,{\".data-driven-application .applications-col li\":false},[\"margin-bottom:24px\"]],[false,{\".applications-col li\":false},[\"padding-bottom:16px\",\"margin-bottom:16px\"]],[false,{\".custom-qout-box .review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".keeping-future ul li\":false},[\"margin-bottom:16px\",\"padding-bottom:16px\",\"font-size:14px\"]],[false,{\".review_sec .title p\":false},[\"font-size:14px\"]],[false,{\".keeping-you-competitive\":false},[\"padding:80px 0px 195px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-bottom:65px\",\"margin-top:-19%\"]],[false,{\".depending-text\":false},[\"text-align:center\",\"width:80%\",\"margin:0px auto 40px auto\"]],[false,{\".custom-qout-box\":false},[\"padding:40px 0px 80px\"]],[false,{\".native-applications-list\":false},[\"padding:80px 0px 50px\"]],[false,{\".native-applications-list .swiper-slide:nth-child(1) li:first-of-type\":false},[\"padding-right:80px\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:24px\",\"padding:0px 100px\"]],[false,{\".depending-img-box\":false},[\"width:100%\",\"text-align:center\"]],[false,{\".keeping-you-competitive p\":false},[\"font-size:14px\"]],[false,{\".keeping-future\":false},[\"margin-top:60px\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner:after\":false},[\"position:absolute\",\"bottom:0\",\"left:0\",\"content:\\\"\\\"\",\"width:30px\",\"height:30px\",\"background:#04061f\",\"transform:rotate(45deg)\",\"border-radius:2px\",\"margin-left:34px\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner.content_center\":false},[\"text-align:center\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner.content_center:after\":false},[\"margin:0px auto\",\"left:0px\",\"right:0px\"]],[false,{\".c-app-banner h2\":false},[\"font-size:32px\"]],[false,{\".c-app-banner p\":false},[\"font-size:16px\"]],[false,{\".infrastructure-sec .bg-img .full-img\":false},[\"height:500px\",\"object-fit:cover\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(1) ul li:last-child\":false},[\"border-bottom:#dbdbdb solid 1px\"]],[false,{\".reliability-engineers\":false},[\"width:100%\",\"border:#fff solid 1px\"]],[false,{\".fortune-box\":false},[\"flex-wrap:wrap\"]],[false,{\".tex-box\":false},[\"width:100%\",\"margin-top:15px\",\"margin-bottom:15px\"]],[false,{\".reliability-engineers p\":false},[\"line-height:15px\",\"margin:0px\"]],[false,{\".right-short-text\":false},[\"margin-left:0\",\"text-align:center\",\"width:100%\"]],[true,\"}\"],[false,\"@media (max-width: 575px){\"],[false,{\".container-md\":false},[\"padding:0 24px\"]],[false,{\".about-dev-ops .review_sec2:not(#_#_#_#_#_#_#_)\":false},[\"padding:20px 20px 25px 20px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"background-color:#f5f5f5\",\"margin-bottom:65px\",\"margin-top:-30%\"]],[false,{\".review_sec\":false},[\"padding:25px\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 200px\"]],[false,{\".depending-text p\":false},[\"font-size:16px\"]],[false,{\".lets-talk-box\":false},[\"padding:35px 0px 60px\",\"margin-top:-43%\"]],[false,{\".depending-text\":false},[\"width:96%\"]],[false,{\".lets-talk-box h3\":false},[\"padding:0px 45px\"]],[false,{\".clients-talk .btn-gradient\":false},[\"font-size:14px\",\"padding:16px 30px\"]],[false,{\".keeping-you-competitive:not(#_#_#_#_#_#_#_)\":false},[\"padding:80px 0px 160px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li\":false},[\"padding:5px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li a\":false},[\"font-size:14px\"]],[false,{\".review_sec::after\":false},[\"left:25px\"]],[false,{\".review_sec .swiper-slide i\":false},[\"margin:8px 0px 8px\",\"padding-right:10px\"]],[false,{\".review_sec .swiper-slide p\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform .txt p\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform:not(#_#_#_#_#_#_#_)\":false},[\"padding:65px 0px 120px 0px\"]],[false,{\".rebuild-and-replatform .txt label\":false},[\"margin-bottom:15px\"]],[false,{\".rebuild-and-replatform .heading-box h2\":false},[\"font-size:30px\",\"margin-bottom:30px\"]],[false,{\".rebuild-and-replatform .txt p:last-of-type\":false},[\"margin-bottom:55px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text p\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content.active\":false},[\"padding-bottom:40px\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec\":false},[\"padding:15px 0px 0px\"]],[false,{\".keeping-you-competitive .heading-box h2\":false},[\"font-size:30px\",\"margin-bottom:24px\"]],[false,{\".keeping-you-competitive .heading-box h2 br\":false},[\"display:none\"]],[false,{\".keeping-future ul li:nth-of-type(4)\":false},[\"order:11\",\"border:none\"]],[false,{\".keeping-future ul li:nth-of-type(8)\":false},[\"order:9\"]],[false,{\".keeping-future ul li\":false},[\"margin-bottom:10px\",\"padding-bottom:10px\"]],[false,{\".native-applications-list .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".clients-talk .btn-wrapper\":false},[\"width:132px\"]],[false,{\"section.custom-full-bg\":false},[\"display:none\"]],[false,{\".native-applications-list .heading-box label\":false},[\"letter-spacing:1.1px\"]],[false,{\".c-scroll-box\":false},[\"overflow:scroll\"]],[false,{\".c-scroll-box:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".scroll-img\":false},[\"width:250%\",\"position:relative\"]],[false,{\".scroll-img amp-img\":false,\".scroll-img amp-anim\":false},[\"max-width:unset\",\"width:100%\"]],[false,{\".scroll-img:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/sroll-l.png\\\")\",\"width:25px\",\"height:25px\",\"bottom:0\",\"margin:auto\",\"left:25%\"]],[false,{\".scroll-img::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/scroll-right.png\\\")\",\"width:25px\",\"height:25px\",\"bottom:0\",\"margin:auto\",\"right:27%\"]],[false,{\".journey-roadmap .scroll-img::after\":false,\".journey-roadmap .scroll-img::before\":false},[\"display:none\"]],[false,{\".native-data-driven-top\":false},[\"padding-top:80px\"]],[false,{\".native-data-driven-top .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".cost-effective-sec .review_sec .swiper-slide i:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".lets-talk-box\":false},[\"margin-top:-73%\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-bottom:65px\",\"margin-top:-54%\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner amp-img\":false,\"section.cp-tek-teams-isk.c-app-banner amp-anim\":false},[\"min-height:inherit\"]],[false,{\".c-app-banner .title\":false},[\"margin-bottom:14px\"]],[false,{\".c-app-banner p\":false},[\"font-size:16px\",\"padding-right:20px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-img\":false,\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-anim\":false},[\"max-width:185px\",\"object-fit:cover\",\"width:100%\",\"text-align:center\",\"display:block\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media (max-width: 360px){\"],[false,{\".lets-talk-box h3\":false},[\"padding:0px 26px\"]],[false,\"}\"],[true,{\"a\":true},[\"display:inline-block\"]],[true,{\"*\":true},[\"-webkit-box-sizing:border-box\",\"box-sizing:border-box\",\"margin:0\",\"padding:0\"]],[true,{\"amp-img\":true,\"amp-anim\":false},[\"max-width:100%\"]],[true,{\"a\":true},[\"text-decoration:none\"]],[false,{\".btn-blue\":false},[\"background-color:#24c1ff\",\"color:#152649\",\"border-radius:30px\",\"font-size:20px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding:15px 30px\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"border:1px solid #24c1ff\"]],[false,\"@media (max-width: 992px){\"],[false,{\".btn-blue\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".btn-blue\":false},[\"font-size:14px\",\"padding:15px 40px\"]],[false,\"}\"],[false,{\".btn-blue:hover\":false},[\"background-color:transparent\"]],[false,{\".btn-blue.dark-blue\":false},[\"background-color:#152649\",\"color:#24c1ff\",\"border:1px solid #152649\"]],[false,{\".btn-blue.dark-blue:hover\":false},[\"background-color:transparent\"]],[false,{\".btn-green\":false},[\"background-color:transparent\",\"border:1px solid #8bed78\",\"color:#8bed78\",\"border-radius:30px\",\"font-size:20px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding:15px 30px\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width: 992px){\"],[false,{\".btn-green\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".btn-green\":false},[\"font-size:14px\",\"padding:15px 40px\"]],[false,\"}\"],[false,{\".btn-green:hover\":false},[\"color:#152649\",\"background-color:#8bed78\"]],[false,{\".btn-gradient\":false},[\"background:-webkit-gradient(linear,left top,right top,color-stop(0,#28d9cb),to(#a0f266))\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"color:#152649\",\"border-radius:30px\",\"font-size:32px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding:15px 30px\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".btn-gradient:hover\":false},[\"background:-webkit-gradient(linear,right top,left top,color-stop(0,#28d9cb),to(#a0f266))\",\"background:linear-gradient(-90deg,#28d9cb 0,#a0f266 100%)\"]],[false,{\".heading-box label\":false},[\"font-size:18px\",\"color:#7080a7\",\"display:block\",\"margin-bottom:24px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"letter-spacing:1.8px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".heading-box label\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".heading-box label\":false},[\"font-size:14px\",\"letter-spacing:1.4px\",\"margin-bottom:16px\"]],[false,\"}\"],[false,{\".heading-box label i\":false},[\"margin-right:8px\"]],[false,{\".heading-box h2\":false},[\"color:#152649\",\"font-size:50px\",\"line-height:1\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\"]],[false,\"@media (max-width: 1377px){\"],[false,{\".keeping-future ul li\":false},[\"margin-right:43px\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".heading-box h2\":false},[\"font-size:45px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".heading-box h2\":false},[\"font-size:40px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".heading-box h2\":false},[\"font-size:32px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".heading-box h2\":false},[\"font-size:30px\"]],[false,\"}\"],[false,{\".heading-box h2 span\":false},[\"color:#24c1ff\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:80px\",\"text-align:center\",\"padding-top:60px\",\"padding-bottom:120px\",\"position:relative\",\"background-position:center bottom\",\"background-repeat:no-repeat\",\"background-size:cover\",\"min-height:500px\",\"max-height:55vh\"]],[false,\"@media (max-width: 480px){\"],[false,{\".cp-cloud-native-isk figure\":false},[\"max-width:24px\",\"margin:auto\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk p\":false},[\"color:#28d9cb\",\"font-size:16px\",\"letter-spacing:1.6px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"margin-top:15px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".cp-cloud-native-isk p\":false},[\"font-size:14px\",\"letter-spacing:1.4px\",\"margin-top:12px\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:60px\",\"color:#fff\",\"line-height:1\",\"font-family:Raleway,sans-serif\",\"margin-top:90px\",\"margin-bottom:30px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:50px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:40px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:32px\",\"line-height:34px\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk .btn\":false},[\"border:1px solid #28d9cb\",\"color:#28d9cb\",\"font-size:24px\",\"padding:7px 32px\",\"border-radius:30px\",\"background:transparent\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".cp-cloud-native-isk .btn\":false},[\"font-size:20px\",\"padding:10px 32px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".cp-cloud-native-isk .btn\":false},[\"font-size:14px\",\"padding:0px 32px\",\"font-weight:500\",\"width:210px\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk .btn:hover\":false},[\"background-color:#28d9cb\",\"color:#152649\"]],[false,{\".cp-cloud-native-isk .angle-down\":false},[\"position:absolute\",\"bottom:5px\",\"left:50%\",\"-webkit-transform:translateX(-50%)\",\"transform:translateX(-50%)\"]],[false,{\".cp-cloud-native-isk .angle-down a\":false},[\"font-size:15px\",\"color:#28d9cb\"]],[false,{\".custom-txt-img-sec\":false},[\"padding-top:140px\",\"padding-bottom:120px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".custom-txt-img-sec\":false},[\"padding-top:60px\",\"padding-bottom:60px\"]],[false,{\".heading-box h2\":false},[\"font-size:35px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .cutsom-hide-text\":false},[\"display:none\"]],[false,{\".custom-txt-img-sec .cutsom-hide-text p\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.5\",\"font-family:raleway,sans-serif\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-txt-img-sec\":false},[\"padding:50px 0 30px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:calc(50.5% - 81px)\",\"margin-right:81px\"]],[true,\"@media (max-width: 1024px){\"],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:50%\"]],[true,{\".new-header__nav--title h5\":true},[\"font-size:25px\",\"line-height:1.2\"]],[false,{\".keeping-future ul li\":false},[\"width:24%\"]],[false,{\".keeping-future ul li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-right:29px\"]],[false,{\".keeping-you-competitive\":false},[\"padding-bottom:165px\"]],[false,{\".rebuild-and-replatform\":false},[\"padding:120px 0px 120px 0px\"]],[true,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:100%\",\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt label\":false},[\"margin-bottom:24px\"]],[false,\"@media (max-width: 767px){\"],[false,{\"section.custom-txt-img-sec.c-application-development\":false},[\"position:relative\",\"z-index:1\"]],[false,{\".custom-txt-img-sec .custom-img figure amp-img\":false,\".custom-txt-img-sec .custom-img figure amp-anim\":false,\".custom-txt-img-sec .custom-img figure\":false},[\"width:100%\",\"mix-blend-mode:multiply\"]],[false,{\".custom-txt-img-sec .custom-txt label\":false},[\"margin-bottom:20px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-img\":false},[\"max-width:250px\",\"margin-left:auto\",\"width:100%\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"color:#152649\",\"margin-bottom:40px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"font-size:38px\"]],[false,{\".contact-tek-teams.custom-txt-img-sec .custom-txt h2\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"font-size:27px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"padding-right:0\"]],[false,{\".keeping-future ul\":false},[\"font-size:20px\"]],[false,{\".keeping-future ul li\":false},[\"width:47%\"]],[false,{\".keeping-future ul li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-right:0px\"]],[false,{\".keeping-future ul li:nth-child(11)\":false},[\"border-bottom:#16365c solid 1px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"margin-bottom:0px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt h2 span\":false},[\"color:#24c1ff\"]],[false,{\".tek-world-scale .custom-txt h2 span\":false},[\"color:#28d9cb\"]],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.5\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"@media (min-width: 1280px) and (max-width: 1680px){\"],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".c-application-development .custom-txt p span\":false,\".custom-txt-img-sec .custom-txt p\":false},[\"color:#152649\"]],[false,{\".c-application-development .custom-txt p\":false},[\"color:#707070\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"margin-bottom:25px\"]],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".contact-tek-teams .custom-img p\":false},[\"margin-bottom:30px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt .btn-blue\":false},[\"margin-top:48px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-txt-img-sec .custom-txt .btn-blue\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-img\":false},[\"width:calc(49.5% - 81px)\",\"margin-left:81px\",\"display:flex\",\"align-items:center\"]],[false,{\".custom-txt-img-sec .custom-img figure amp-img\":false,\".custom-txt-img-sec .custom-img figure amp-anim\":false,\".custom-txt-img-sec .custom-img figure\":false},[\"width:100%\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:calc(50.5% - 40px)\",\"margin-right:40px\"]],[false,{\".custom-txt-img-sec .custom-img\":false},[\"width:calc(49.5% - 40px)\",\"margin-left:40px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-txt-img-sec .custom-img\":false},[\"width:100%\",\"max-width:500px\",\"margin:25px auto 0\"]],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"margin-right:0\"]],[false,{\".custom-txt-img-sec .custom-txt:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".text-grey-box p:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".text-grey-box\":false},[\"margin-bottom:2px\"]],[false,{\".review_sec2 i\":false},[\"font-weight:500\"]],[false,{\".review_sec2 i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\",\"color:#152649\"]],[false,{\"section.custom-full-bg.journey-roadmap .container-md\":false},[\"padding:0px\"]],[false,{\".journey-roadmap-header\":false},[\"padding:0px 24px\"]],[false,{\".journey-roadmap-header\":false},[\"flex-wrap:wrap\"]],[false,{\".journey-roadmap-header .heading-box\":false},[\"width:100%\",\"text-align:center\",\"margin-bottom:32px\"]],[false,{\".journey-roadmap-header .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".journey-roadmap-logo\":false},[\"width:65%\",\"margin:0px auto\",\"margin-bottom:24px\"]],[false,{\".devops-services\":false},[\"padding:80px 0px 50px\",\"background-color:#f1f1f1\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:14px\"]],[false,{\".devops-services .applications-col h5\":false},[\"padding-left:31px\"]],[false,{\".devops-services .applications-col h5::before\":false},[\"margin-top:2px\"]],[false,{\".mrdata-logo\":false},[\"left:0\",\"top:-55px\",\"bottom:auto\",\"justify-content:center\",\"right:0\"]],[false,{\".reliability-engineers\":false},[\"text-align:center\"]],[false,{\".reliability-engineers:not(#_#_#_#_#_#_#_)\":false},[\"padding:85px 27px 40px 27px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-197px\"]],[false,{\".kubernetes-sec .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".kubernetes-sec .custom-txt p:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".kubernetes-sec .custom-txt p span\":false},[\"font-weight:500\"]],[false,{\".kubernetes-sec .custom-txt p br\":false},[\"display:none\"]],[false,{\".kubernetes-sec .heading-box h2\":false},[\"margin-bottom:24px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:192px 0px 104px 0px\"]],[false,{\".col-row ul\":false},[\"column-count:1\"]],[false,{\".col-row ul li\":false},[\"font-size:16px\",\"margin-bottom:15px\"]],[false,{\".cost-effective-sec .inner\":false},[\"flex-wrap:wrap\"]],[false,{\".cost-effective-sec .left-text\":false,\".cost-effective-sec .custom-txt\":false},[\"width:100%\"]],[false,{\".infrastructure-sec .heading-box h2\":false,\".cost-effective-sec .heading-box h2\":false},[\"margin-bottom:32px\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:30px\"]],[false,{\".cost-effective-sec .heading-box h2 span\":false},[\"display:inline\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col\":false},[\"padding-bottom:15px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".infrastructure-sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-190px\"]],[false,\"}\"],[false,{\".custom-colm-sec\":false},[\"background-color:#f1f1f1\",\"padding:120px 0\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".custom-colm-sec\":false},[\"padding:60px 0\"]],[false,{\".custom-txt-img-sec .custom-txt .btn-blue\":false},[\"margin-top:30px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".custom-colm-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"margin:45px -10px 40px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .inner\":false},[\"margin:40px -8px 20px\"]],[false,\"}\"],[false,{\".custom-colm-sec .slick-list\":false},[\"padding-bottom:20px\"]],[false,{\".custom-colm-sec .slick-track:not(#_#_#_#_#_#_#_)\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".custom-colm-sec .colm\":false},[\"border-radius:16px\",\"-webkit-box-shadow:0 8px 16px rgba(0,0,0,.1)\",\"box-shadow:0 8px 16px rgba(0,0,0,.1)\",\"width:calc(33.33% - 14px)\",\"background-color:#fff\",\"margin-right:10px\",\"margin-left:10px\",\"position:relative\"]],[false,{\".custom-colm-sec .colm:not(#_#_#_#_#_#_#_)\":false},[\"height:inherit\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-colm-sec .colm\":false},[\"display:flex\",\"flex-direction:column\",\"justify-content:space-between\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm\":false},[\"margin:0 8px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm:last-of-type\":false},[\"margin-right:0\"]],[false,{\".custom-colm-sec .colm .img-box amp-img\":false,\".custom-colm-sec .colm .img-box amp-anim\":false},[\"border-radius:16px\"]],[false,{\".custom-colm-sec .colm .txt-box\":false},[\"padding:22px 40px 20px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".custom-colm-sec .colm .txt-box\":false},[\"padding:20px 20px 20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box\":false},[\"padding:16px 13px 20px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:32px\",\"line-height:1\",\"color:#24c1ff\",\"margin-bottom:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:27px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:24px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:22px\",\"margin-bottom:11px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm .txt-box p\":false},[\"font-size:18px\",\"color:#707070\",\"line-height:1.6\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-colm-sec .colm .txt-box p\":false},[\"font-size:16px\",\"line-height:22px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box p\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm .txt-box .see-more\":false},[\"position:absolute\",\"font-size:22px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#152649\",\"text-decoration:underline\",\"line-height:1.5\",\"font-weight:bold\",\"right:40px\",\"bottom:27px\"]],[false,{\".custom-colm-sec .colm .txt-box .see-more:hover\":false},[\"color:#24c1ff\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-colm-sec .colm .txt-box .see-more\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box .see-more\":false},[\"font-size:16px\",\"bottom:20px\"]],[false,\"}\"],[false,{\".custom-colm-sec .btn-wrapper\":false},[\"text-align:center\"]],[false,{\".custom-colm-sec .btn-wrapper .btn\":false},[\"margin-top:48px\"]],[false,{\".demand-sec\":false},[\"padding-top:240px\",\"padding-bottom:200px\",\"text-align:center\",\"text-align:center\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/imagem_scale.png\\\")\",\"background-repeat:no-repeat\",\"background-size:100% 100%\",\"position:relative\",\"background-attachment:fixed\"]],[false,{\"section.demand-sec:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"height:100%\",\"width:100%\",\"background:#39dcce\",\"background-color:rgba(57,220,206,.1)\",\"top:0\",\"left:0\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".demand-sec\":false},[\"padding-top:150px\",\"padding-bottom:150px\"]],[false,\"}\"],[false,{\".demand-sec .btn-blue.dark-blue\":false},[\"color:#f7f7f7\"]],[false,{\".demand-sec .colm:nth-child(3) p\":false},[\"padding:0px 35px\"]],[false,{\".demand-sec .btn-blue.dark-blue:hover\":false},[\"color:#152649\"]],[false,{\"section.demand-sec .inner .slick-track\":false},[\"display:flex\"]],[false,{\"section.demand-sec .inner .slick-list\":false},[\"display:flex\"]],[false,\"@media (max-width: 992px){\"],[false,{\".demand-sec\":false},[\"padding:120px 0\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".demand-sec\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".demand-sec .heading-box\":false},[\"padding-bottom:45px\"]],[false,{\".demand-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".demand-sec .inner .slick-dots\":false},[\"position:absolute\",\"right:-5px\",\"top:50%\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\"]],[false,{\".demand-sec .inner .slick-slider .slick-list\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".demand-sec .inner .slick-slider .slick-track\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".demand-sec .inner .slick-dots li\":false},[\"list-style-type:none\",\"height:70px\",\"width:3px\",\"margin:4px 0\"]],[false,{\".demand-sec .inner .slick-dots li.slick-active button\":false},[\"background:linear-gradient(90deg,#23f2e2 0,#93f150 100%)\",\"outline:none\"]],[false,{\".demand-sec .inner .slick-dots li button\":false},[\"width:100%\",\"height:100%\",\"background-color:#fff\",\"border-radius:2px\",\"font-size:0\",\"border:none\",\"outline:none\"]],[false,{\".demand-sec .inner .slick-slide amp-img\":false,\".demand-sec .inner .slick-slide amp-anim\":false},[\"margin:0px auto\"]],[false,{\".demand-sec .colm\":false},[\"width:30%\",\"position:relative\",\"margin-bottom:40px\",\"display:flex\",\"flex-direction:column\"]],[false,\"@media (max-width: 992px){\"],[false,{\".demand-sec .colm\":false},[\"width:32%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".demand-sec .colm\":false},[\"width:100%\",\"padding-bottom:10px\"]],[false,\"}\"],[false,{\".demand-sec .colm figure\":false},[\"margin-bottom:50px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".demand-sec .colm figure\":false},[\"max-width:110px\",\"margin:0 auto 50px\"]],[false,\"}\"],[false,{\".demand-sec .colm h4\":false},[\"margin-bottom:18px\",\"font-size:30px\",\"line-height:1\",\"color:#152649\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".demand-sec .colm h4\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".demand-sec .colm p\":false},[\"color:#152649\",\"line-height:1.6\",\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"padding:0px 21px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".demand-sec .colm p\":false},[\"padding:0px 6px\"]],[false,{\".demand-sec .colm:nth-child(3) p\":false},[\"padding:0px 6px\"]],[false,{\".demand-sec .btn-blue.dark-blue\":false},[\"color:#f7f7f7\",\"padding:15px 30px\",\"font-size:15px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".demand-sec .btn-blue.dark-blue\":false},[\"padding:15px 29px\",\"font-size:11px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:14px\",\"padding:0px 25px\"]],[false,\"}\"],[false,{\".demand-sec .colm .btn-wrapper\":false},[\"margin:auto 0 0 0\"]],[false,{\".demand-sec .colm .btn-wrapper a\":false},[\"line-height:normal\"]],[false,\"@media (max-width: 767px){\"],[false,{\".demand-sec .colm .btn-wrapper\":false},[\"position:inherit\",\"bottom:inherit\",\"margin-top:40px\"]],[false,\"}\"],[false,{\".ecosystem-sec\":false},[\"padding:200px 0 240px\",\"background-color:#f9f9f9\"]],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec\":false},[\"padding:100px 0 150px\",\"background-color:#f9f9f9\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\"section.ecosystem-sec .slick-track:not(#_#_#_#_#_#_#_#_)\":false},[\"display:flex\"]],[false,{\".ecosystem-sec .inner .slick-slide:not(#_#_#_#_#_#_#_)\":false},[\"height:inherit\"]],[false,\"}\"],[false,\"@media (min-width: 620px) and (max-width: 767px){\"],[false,{\"section.ecosystem-sec .inner .slick-list\":false},[\"padding-right:180px\"]],[false,{\"section.ecosystem-sec .inner .inner-colm .slick-list\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner .inner-colm amp-img\":false,\".ecosystem-sec .inner .inner-colm amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec .inner .inner-colm amp-img\":false,\".ecosystem-sec .inner .inner-colm amp-anim\":false},[\"width:55%\",\"margin:auto\"]],[false,\"}\"],[false,\"@media (max-width: 766px){\"],[false,{\".ecosystem-sec .inner .inner-colm amp-img\":false,\".ecosystem-sec .inner .inner-colm amp-anim\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"font-size:24px\",\"font-weight:bold\",\"color:#1d2848\",\"margin-bottom:20px\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"font-size:20px\",\"margin-bottom:5px\"]],[false,\"}\"],[false,\"@media (min-width: 480px) and (max-width: 580px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"display:inline-block\",\"float:right\",\"vertical-align:middle\",\"margin-top:18px\",\"width:70px\",\"position:absolute\",\"right:0px\",\"top:0px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:18px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:23px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:-16px\"]],[false,{\".ecosystem-sec .inner\":false},[\"padding:150px 0 100px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec\":false},[\"padding:120px 0 0\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:20px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec\":false},[\"padding:80px 0 0\"]],[false,\"}\"],[false,{\".ecosystem-sec .heading-box\":false},[\"padding-bottom:75px\",\"text-align:center\"]],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .heading-box\":false},[\"padding-bottom:0px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .heading-box\":false},[\"padding-bottom:0\",\"text-align:left\",\"position:relative\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false},[\"width:68%\",\"position:relative\",\"margin-top:0px\",\"margin-bottom:22px\",\"float:left\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:35px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:28px\",\"width:50px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(5) .inner-colm .back-slide .icon\":false},[\"margin-top:32px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5) .inner-colm .back-slide .icon\":false},[\"margin-top:26px\",\"width:50px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .front-slide p\":false},[\"padding-right:40px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .front-slide p\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(1) .inner-colm .back-slide .left-img\":false},[\"display:none\"]],[false,{\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"float:left\",\"width:60%\",\"position:relative\",\"margin-top:0px\",\"margin-bottom:20px\"]],[false,{\".ecosystem-sec .heading-box h2\":false},[\"color:#28d9cb\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .heading-box h2\":false},[\"width:calc(100% - 118px)\"]],[false,{\".ecosystem-sec .colm .back-slide .left-img\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (min-width: 300px) and (max-width: 340px){\"],[false,{\".ecosystem-sec .heading-box h2\":false},[\"font-size:22px\"]],[false,\"}\"],[false,{\".ecosystem-sec .heading-box figure\":false},[\"display:none\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .heading-box figure\":false},[\"display:block\",\"position:absolute\",\"bottom:0\",\"right:20px\",\"max-width:115px\"]],[false,\"}\"],[false,\"@media (min-width: 300px) and (max-width: 340px){\"],[false,{\".ecosystem-sec .heading-box figure\":false},[\"bottom:-31px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"position:relative\",\"padding:150px 0 100px\",\"z-index:1\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .inner\":false},[\"padding:150px 70px 100px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .inner\":false},[\"padding:150px 0px 100px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .inner\":false},[\"padding:40px 0 80px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner::before\":false},[\"content:\\\"\\\"\",\"width:67%\",\"height:52%\",\"position:absolute\",\"border:1px solid #24c1ff\",\"left:16.5%\",\"top:23%\",\"z-index:-1\"]],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec.slick-list\":false},[\"padding:20px 0\"]],[false,{\".ecosystem-sec .inner::before\":false},[\"display:none\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm\":false},[\"border-radius:16px\",\"-webkit-box-shadow:8px 16px 32px rgba(0,0,0,.1)\",\"box-shadow:8px 16px 32px rgba(0,0,0,.1)\",\"background-color:#fff\",\"padding:25px 40px 25px 40px\",\"margin-bottom:40px\",\"width:30.2%\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"margin-bottom:30px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-bottom:30px\",\"width:32%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm\":false},[\"-webkit-box-shadow:0px 0px 5px rgba(0,0,0,.1)\",\"box-shadow:0px 0px 5px rgba(0,0,0,.1)\",\"width:32%\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .inner-colm .slick-track\":false},[\"display:flex\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"height:inherit\",\"padding-bottom:30px\",\"padding-top:10px\",\"display:flex\",\"flex-direction:column\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"height:inherit\",\"padding-bottom:30px\",\"padding-top:25px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"margin-top:auto\",\"position:relative\",\"top:28px\",\"max-width:180px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more:not(#_#_#_#_#_#_#_)\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false},[\"bottom:6px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm\":false},[\"padding:30px\"]],[false,\"}\"],[false,\"@media (max-width: 1100px){\"],[false,{\".ecosystem-sec .colm\":false},[\"padding:30px 20px\",\"width:31.5%\"]],[false,\"}\"],[false,\"@media (max-width: 1100px){\"],[false,{\".ecosystem-sec .colm\":false},[\"padding:15px 20px\",\"width:31.5%\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-left:10px\",\"margin-right:10px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-left:4px\",\"margin-right:4px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-53%)\",\"transform:translateY(-53%)\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-57%)\",\"transform:translateY(-57%)\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-55%)\",\"transform:translateY(-55%)\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-54%)\",\"transform:translateY(-54%)\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:unset\",\"transform:unset\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:translateY(55%)\",\"transform:translateY(55%)\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:translateY(51%)\",\"transform:translateY(51%)\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:translateY(50%)\",\"transform:translateY(50%)\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:unset\",\"transform:unset\"]],[false,\"}\"],[false,\"@media (min-width: 993px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"position:absolute\",\"left:0\",\"right:0\",\"top:49.5%\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\",\"margin-left:auto\",\"margin-right:auto\",\"width:28%\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:30%\"]],[false,\"@media (min-width: 1920px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:30%\"]],[false,\"}\"],[false,\"@media (min-width: 1440px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (min-width: 993px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"display:none\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"color:#152649\",\"font-size:20px\",\"line-height:1.2\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false,\".ecosystem-sec .colm h5:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:15px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:17px\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false,\".ecosystem-sec .colm h5:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm h4\":false},[\"font-size:24px\",\"padding-right:110px\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:25px\"]],[false,{\".ecosystem-sec .slick-track\":false},[\"display:flex\"]],[false,{\".ecosystem-sec .slick-track .slick-slide\":false},[\"height:inherit\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec .colm h4\":false},[\"font-size:20px\",\"padding-right:35px\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:30px\"]],[false,\"}\"],[false,\"@media (max-width: 380px){\"],[false,{\".ecosystem-sec .colm h4\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm h4\":false},[\"margin-bottom:30px\",\"font-weight:bold\"]],[false,{\".ecosystem-sec .colm h5\":false},[\"font-weight:900\",\"margin-top:50px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".ecosystem-sec .colm h5\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm p\":false},[\"font-size:16px\",\"line-height:1.5\",\"color:#707070\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"padding-top:0px\",\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm h5\":false},[\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm\":false},[\"height:fit-content\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm p b\":false},[\"font-size:13px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm p b\":false},[\"color:#24c1ff\",\"font-weight:bold\"]],[false,\"@media (min-width: 768px) and (max-width: 992px){\"],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:51px\"]],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm p b\":false},[\"color:#707070\"]],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 375px){\"],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .back-slide\":false},[\"position:relative\"]],[false,{\".ecosystem-sec .colm .back-slide h6\":false},[\"font-size:14px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#28d9cb\",\"margin-bottom:10px\"]],[false,{\".ecosystem-sec .colm .back-slide .left-img\":false},[\"max-width:190px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .right-img\":false},[\"margin-bottom:5px\",\"margin-top:15px\"]],[false,{\".ecosystem-sec .colm .back-slide .right-img\":false},[\"max-width:70px\",\"position:absolute\",\"bottom:60px\",\"right:0px\"]],[false,{\".ecosystem-sec .colm .back-slide p\":false},[\"max-width:100%\",\"display:inline-block\"]],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide p\":false},[\"max-width:calc(100% - 90px)\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide p\":false},[\"max-width:calc(100% - 67px)\"]],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide .right-img\":false},[\"margin:0px\"]],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide .right-img amp-img\":false,\".ecosystem-sec .colm:nth-child(2) .back-slide .right-img amp-anim\":false},[\"width:70%\",\"margin-left:auto\",\"margin-top:0\",\"top:0\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"color:#28d9cb\",\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:900\",\"margin-top:0px\",\"display:block\",\"text-decoration:underline\"]],[false,{\".ecosystem-sec .colm:nth-child(3) .back-slide .back_heading\":false,\".ecosystem-sec .colm:nth-child(6) .back-slide .back_heading\":false},[\"text-align:left\",\"width:75%\",\"float:right\"]],[false,{\".ecosystem-sec .colm:nth-child(3) .back-slide .icon\":false,\".ecosystem-sec .colm:nth-child(6) .back-slide .icon\":false},[\"float:left\",\"margin-top:18px\"]],[false,{\".ecosystem-sec .colm:nth-child(3) .back-slide .icon\":false},[\"margin-top:10px\"]],[false,{\".ecosystem-sec .colm .slick-dots\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"position:absolute\",\"right:25px\",\"bottom:11px\",\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm .slick-dots li\":false},[\"list-style-type:none\",\"width:4px\",\"height:4px\",\"margin:0 5px\"]],[false,{\".ecosystem-sec .colm .slick-dots li button\":false},[\"display:block\",\"width:100%\",\"height:100%\",\"border-radius:50%\",\"background-color:#c9c9c9\",\"border:none\",\"font-size:0\"]],[false,{\".ecosystem-sec .colm .slick-dots li.slick-active\":false},[\"width:8px\",\"height:8px\"]],[false,{\".ecosystem-sec .colm .slick-dots li.slick-active button\":false},[\"background-color:#28d9cb\"]],[false,{\".ecosystem-sec .colm .slick-arrow\":false},[\"border:none\",\"bottom:11px\",\"position:absolute\",\"background:transparent\",\"z-index:2\",\"cursor:pointer\",\"height:13px\"]],[false,{\".ecosystem-sec .colm .slick-arrow.slick-disabled\":false},[\"opacity:0\",\"visibility:hidden\"]],[false,{\".ecosystem-sec .colm .slick-arrow i\":false},[\"color:#28d9cb\"]],[false,{\".ecosystem-sec .colm .slick-arrow.slick-prev\":false},[\"right:90px\"]],[false,{\".ecosystem-sec .colm .slick-arrow.slick-next\":false},[\"right:0\"]],[false,{\".partner-sec\":false},[\"background-color:#152649\",\"text-align:center\",\"padding:0px 0 240px\",\"position:relative\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".partner-sec\":false},[\"padding:0px 0 120px\"]],[false,\"}\"],[false,{\".bg-img\":false},[\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".partner-sec\":false},[\"padding:0px 0 90px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".partner-sec\":false},[\"padding:0px 0 85px\"]],[false,\"}\"],[false,{\".back-slide .partner-sec .bg-img\":false},[\"position:absolute\",\"top:0\",\"width:100%\"]],[false,{\".partner-sec .bg-img::before\":false},[\"content:\\\"\\\"\",\"width:100%\",\"height:265px\",\"position:absolute\",\"left:0\",\"bottom:-3px\",\"background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(21,38,73,0)),to(#152649))\",\"background-image:linear-gradient(rgba(21,38,73,0),#152649)\"]],[false,{\".partner-sec .container-md\":false},[\"margin-top:-140px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".partner-sec .bg-img::before\":false},[\"height:165px\"]],[false,\"}\"],[false,{\".partner-sec .bg-img .for-desktop\":false},[\"display:block\"]],[false,{\"figure.for-desktop amp-img\":false,\"figure.for-desktop amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".partner-sec .bg-img .for-desktop\":false},[\"display:none\"]],[false,\"}\"],[false,{\".partner-sec .bg-img .for-mobile\":false},[\"display:none\",\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".partner-sec .bg-img .for-mobile\":false},[\"display:block\"]],[false,\"}\"],[false,{\".partner-sec .bg-img .for-mobile amp-img\":false,\".partner-sec .bg-img .for-mobile amp-anim\":false},[\"width:100%\"]],[false,{\".partner-sec .heading-box\":false},[\"padding-bottom:90px\",\"z-index:1\",\"position:relative\"]],[false,{\".partner-sec .heading-box h2\":false},[\"color:#fff\",\"max-width:600px\",\"margin:auto\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".partner-sec .heading-box h2\":false},[\"max-width:455px\"]],[false,\"}\"],[false,{\".partner-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".partner-sec .slick-track:not(#_#_#_#_#_#_#_)\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".partner-sec .slick-arrow\":false},[\"background:transparent\",\"color:#24c1ff\",\"border:none\",\"font-size:20px\",\"position:absolute\",\"top:calc(50% - 11px)\",\"z-index:1\"]],[false,{\".partner-sec .slick-arrow.slick-disabled\":false},[\"opacity:0\",\"visibility:hidden\"]],[false,{\".partner-sec .slick-arrow.slick-prev\":false},[\"left:0\"]],[false,{\".partner-sec .slick-arrow.slick-next\":false},[\"right:0\"]],[false,{\".partner-sec .colm\":false},[\"width:33.33%\",\"padding:0 40px\",\"border-right:1px solid rgba(112,128,167,.3)\"]],[false,{\".partner-sec .colm:not(#_#_#_#_#_#_#_)\":false},[\"height:inherit\"]],[false,\"@media (max-width: 992px){\"],[false,{\".partner-sec .colm\":false},[\"padding:0 20px\"]],[false,\"}\"],[false,\"@media (max-width: 540px){\"],[false,{\".partner-sec .colm\":false},[\"border-right:none\",\"padding:0\"]],[false,\"}\"],[false,{\".partner-sec .colm:last-of-type\":false},[\"border-right:none\"]],[false,{\".partner-sec .colm h6\":false},[\"font-size:20px\",\"line-height:1\",\"color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"min-height:64px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".partner-sec .colm h6\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".partner-sec .colm figure\":false},[\"margin:40px 0\"]],[false,{\".partner-sec .colm figure amp-img\":false,\".partner-sec .colm figure amp-anim\":false},[\"margin:auto\"]],[false,{\".partner-sec .colm p\":false},[\"font-size:16px\",\"line-height:22px\",\"color:#7080a7\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\"]],[false,{\".solution-sec\":false},[\"padding:240px 0\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".solution-sec\":false},[\"padding:130px 0\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec\":false},[\"padding:100px 0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec\":false},[\"background-color:#24c1ff\",\"padding:57px 18px 80px\"]],[false,\"}\"],[false,{\".solution-sec .heading-box\":false},[\"margin-bottom:47px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .heading-box label\":false},[\"color:#fff\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper table\":false},[\"width:100%\",\"border-collapse:collapse\"]],[false,{\".solution-sec .table-wrapper #data-more-btn\":false},[\"background:no-repeat\",\"border:none\",\"margin:0px auto\",\"display:block\",\"font-weight:bold\",\"color:#152649\",\"position:relative\",\"padding:0px 15px\"]],[false,{\".solution-sec .table-wrapper #data-more-btn::after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0px\",\"right:0\",\"width:6px\",\"height:6px\",\"bottom:0\",\"margin:auto\",\"transform:rotate(45deg)\",\"border:#152649 solid 2px\",\"border-left:0px\",\"border-top:0px\"]],[false,{\".solution-sec .table-wrapper table .accor-toggle-btn\":false},[\"position:absolute\",\"right:0px\",\"top:0\",\"width:8px\",\"height:8px\",\"border:#152649 solid 2px\",\"transform:rotate(45deg)\",\"border-top:none\",\"border-left:none\",\"display:none\",\"margin-top:10px\"]],[false,{\"span.accor-toggle-btn.active:not(#_#_#_#_#_#_#_#_)\":false},[\"transform:rotate(-135deg)\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper tr\":false},[\"display:flex\",\"flex-wrap:wrap\",\"border-top:1px solid #f1f1f1\",\"padding:15px 0\"]],[false,{\".solution-sec .table-wrapper tr td\":false},[\"display:block\",\"width:100%\"]],[false,{\".solution-sec .table-wrapper tr.table-head\":false},[\"display:none\"]],[false,{\".solution-sec .table-wrapper td:nth-child(1)\":false},[\"order:1\"]],[false,{\".solution-sec .table-wrapper td:nth-child(3)\":false},[\"order:2\"]],[false,{\".solution-sec .table-wrapper td:nth-child(2)\":false},[\"order:3\"]],[false,{\".solution-sec .table-wrapper table .accor-toggle-btn\":false},[\"display:block\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#152649\",\"line-height:1.16\",\"border-bottom:1px solid #c9c9c9\",\"text-align:left\"]],[false,{\".solution-sec .accor-wrapper th\":false,\".solution-sec .accor-wrapper td\":false},[\"border:none\"]],[false,{\".solution-sec .table-wrapper th:not(:first-of-type)\":false,\".solution-sec .table-wrapper td:not(:first-of-type)\":false},[\"padding-left:20px\"]],[false,{\".solution-sec .table-wrapper td:nth-child(4)\":false,\".solution-sec .table-wrapper td:nth-child(2)\":false,\".solution-sec .table-wrapper td:nth-child(3)\":false},[\"font-weight:bold\"]],[false,\"@media (min-width:767px){\"],[false,{\".solution-sec .accor-wrapper tr td:not(#_#_#_#_#_#_#_#_)\":false},[\"width:31%\",\"padding-left:0px\"]],[false,{\".solution-sec .accor-wrapper tr td:nth-last-child(1):not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:10px\"]],[false,\"}\"],[false,\"@media (min-width: 1280px) and (max-width: 1350px){\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec .table-wrapper th:not(:first-of-type)\":false,\".solution-sec .table-wrapper td:not(:first-of-type)\":false},[\"padding-left:15px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper th:not(:first-of-type)\":false,\".solution-sec .table-wrapper td:not(:first-of-type)\":false},[\"padding-left:0\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"font-size:14px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"border:none\",\"text-align:right\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper th\":false},[\"font-weight:bold\",\"padding:0 0 32px 0\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper th\":false},[\"display:none\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td\":false},[\"font-weight:500\",\"padding:16px 0\",\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td\":false},[\"display:block\",\"padding:5px 0\",\"position:relative\"]],[false,{\".solution-sec .table-wrapper table tbody tr td:nth-child(1)::before\":false},[\"display:none\"]],[false,{\".solution-sec .table-wrapper table tbody tr .accor-wrapper td:nth-child(1)::before\":false},[\"display:block\"]],[false,{\".solution-sec .table-wrapper td::before\":false},[\"content:attr(data-th)\",\"position:absolute\",\"left:0\",\"color:#152649\",\"font-weight:bold\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td.sometimes\":false},[\"color:#7080a7\",\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td.sometimes\":false},[\"color:#5970a8\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td.rare\":false},[\"color:#ff555f\",\"font-weight:bold\"]],[false,{\".solution-sec .table-wrapper td.always\":false},[\"color:#28d9cb\",\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td.always\":false},[\"color:#fff\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td:last-of-type\":false},[\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td:last-of-type:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".solution-sec .table-wrapper tr .accor-wrapper tr\":false},[\"border:none\",\"padding-top:0px\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td:last-of-type amp-img\":false,\".solution-sec .table-wrapper td:last-of-type amp-anim\":false},[\"width:23px\",\"margin-right:7px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td:last-of-type amp-img\":false,\".solution-sec .table-wrapper td:last-of-type amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td:first-of-type\":false},[\"width:35%\"]],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec .table-wrapper td:first-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td:first-of-type\":false},[\"width:100%\",\"text-align:revert\",\"font-weight:500\",\"padding-right:25px\"]],[false,{\".solution-sec .table-wrapper .accor-wrapper table tr td\":false},[\"padding-right:0px\",\"width:100%\"]],[false,\"}\"],[false,{\".future-vision-sec\":false},[\"background-color:#f9f9f9\",\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec\":false},[\"padding:0\",\"padding-bottom:190px\"]],[false,\"}\"],[false,{\".future-vision-sec .inner-vision-sec\":false},[\"background-color:#062b43\",\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .inner-vision-sec\":false},[\"padding:0\"]],[false,\"}\"],[false,{\".future-vision-sec .bg-img\":false},[\"position:relative\",\"width:39%\"]],[false,\"@media (max-width: 1800px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(18% + 45px)\",\"margin-right:-45px\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:35%\"]],[false,\"}\"],[false,\"@media (max-width: 1680px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:37%\"]],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(17% + 50px)\",\"margin-right:-50px\",\"z-index:1\"]],[false,\"}\"],[false,\"@media (max-width: 1536px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:35%\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:30%\",\"height:100%\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:286px\"]],[false,{\".future-vision-sec .bg-img amp-img\":false,\".future-vision-sec .bg-img amp-anim\":false},[\"object-fit:cover\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"position:inherit\",\"width:100%\",\"max-width:inherit\",\"margin:auto\",\"margin-bottom:-160px\"]],[false,\"}\"],[false,{\".future-vision-sec .bg-img amp-img\":false,\".future-vision-sec .bg-img amp-anim\":false},[\"width:100%\",\"height:100%\"]],[false,{\".future-vision-sec .bg-img::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"bottom:0\",\"width:100%\",\"height:256px\",\"background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(4,40,63,0)),to(#042941))\",\"background-image:linear-gradient(rgba(4,40,63,0),#042941)\",\"left:0\",\"display:none\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .bg-img::before\":false},[\"display:block\"]],[false,\"}\"],[false,{\".future-vision-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"position:relative\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .inner\":false},[\"height:460px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .inner\":false},[\"height:auto\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:45%\",\"padding-right:8%\"]],[false,\"@media (max-width: 1536px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"padding-right:7%\"]],[false,\"}\"],[false,{\".container-spacial\":false},[\"padding-left:17%\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".container-spacial\":false},[\"padding-left:12%\"]],[false,\"}\"],[false,\"@media (max-width: 1536px){\"],[false,{\".container-spacial\":false},[\"padding-left:9%\"]],[false,\"}\"],[false,\"@media (max-width: 1440px){\"],[false,{\".container-spacial\":false},[\"padding-left:7%\"]],[false,\"}\"],[false,\"@media (max-width: 1800px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:47%\"]],[false,\"}\"],[false,\"@media (max-width: 1440px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:50%\",\"padding-right:5%\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:31%\"]],[false,{\".kubernetes-sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-213px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".container-spacial\":false},[\"padding-left:0px\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:31%\"]],[false,{\".future-vision-sec .custom-txt\":false},[\"width:51%\",\"padding-right:4%\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"font-size:45px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:55%\",\"padding-right:7%\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:30%\"]],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:51%\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:30%\"]],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:29.8%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:100%\",\"order:-1\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:100%\",\"padding-right:20px\",\"padding-left:20px\",\"padding-bottom:34px\",\"border-bottom:1px solid rgba(241,241,241,.15)\",\"margin-bottom:38px\",\"z-index:1\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"color:#fff\",\"margin-bottom:40px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:175px\",\"font-size:30px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:71px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"font-size:20px\",\"padding-right:4px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"font-size:24px\",\"margin-bottom:34px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt h2 span\":false},[\"color:#24c1ff\"]],[false,{\".future-vision-sec .custom-txt p\":false},[\"color:#fff\",\"font-size:16px\",\"line-height:1.5\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"padding-right:30px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .custom-txt p\":false},[\"font-size:12px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-txt p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt p a\":false},[\"text-decoration:underline\",\"color:#24c1ff\"]],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(15.95% + 60px)\",\"margin-right:-60px\",\"z-index:1\"]],[false,\"@media (max-width: 1536px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(18% + 60px)\",\"margin-right:-60px\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(18% + 60px)\",\"margin-right:-60px\"]],[false,{\".review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:19px\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:19px\"]],[false,{\".kubernetes-sec .custom-txt p\":false},[\"font-size:19px\"]],[false,{\".col-row ul li\":false},[\"font-size:19px\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:44px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col\":false},[\"padding-bottom:15px\",\"width:calc(50% - 27px)\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col li\":false},[\"padding-bottom:20px\",\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(15% + 60px)\",\"margin-right:-60px\"]],[false,{\".reliability-engineers p\":false},[\"font-size:17px\",\"font-weight:bold\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:160px 0px 105px 0px\"]],[false,{\".col-row ul li\":false},[\"font-size:17px\",\"margin-bottom:15px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(19% + 60px)\"]],[false,{\".text-grey-box p:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:15px\"]],[false,{\".review_sec2 i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:16px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-183px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:192px 0px 84px 0px\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:15px\"]],[false,{\".reliability-engineers\":false},[\"padding:40px 30px 40px 78px\",\"margin-top:40px\"]],[false,{\".reliability-engineers p\":false},[\"font-size:15px\",\"font-weight:bold\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-137px\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:35px\"]],[false,{\".infrastructure-sec\":false},[\"margin-top:-234px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img amp-img\":false,\".future-vision-sec .custom-img amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:100%\",\"-webkit-box-orient:vertical\",\"-webkit-box-direction:reverse\",\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"padding:0px 25px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img .inner-img\":false},[\"position:relative\",\"margin-bottom:15px\"]],[false,{\".future-vision-sec .custom-img .inner-img h5\":false},[\"color:#fff\",\"position:absolute\",\"padding:40px 0px 0px 30px\",\"font-size:42px\",\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img .inner-img\":false},[\"margin-bottom:-155px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"position:absolute\",\"font-size:24px\",\"line-height:1.16\",\"color:#24c1ff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding-right:50px\",\"max-width:256px\",\"bottom:30px\",\"left:30px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:15px\"]],[false,{\".devops-services .applications-col ul li\":false},[\"font-size:14px\"]],[false,{\".srvs-text-box p\":false},[\"font-size:14px\"]],[false,{\".srvs-text-box\":false},[\"margin-bottom:15px\"]],[false,{\".devops-services .applications-col h5\":false},[\"margin-bottom:15px\"]],[false,{\".devops-services .applications-col ul\":false},[\"margin-bottom:15px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-186px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-167px\"]],[false,{\".reliability-engineers p\":false},[\"font-size:14px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:11px\"]],[false,{\".fortune-box\":false},[\"width:100%\"]],[false,{\".col-row ul li\":false},[\"font-size:15px\",\"margin-bottom:15px\"]],[false,{\".col-row ul\":false},[\"column-gap:0\"]],[false,{\".cost-effective-sec .left-text p\":false},[\"font-size:14px\",\"line-height:1.6\",\"color:#707070\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:29px\"]],[false,{\".cost-effective-sec .inner\":false},[\"margin-bottom:40px\"]],[false,{\".cost-effective-sec .review_sec2\":false},[\"margin-top:0\"]],[false,{\".cost-effective-sec .review_sec .swiper-slide i\":false},[\"margin:0 0px 10px\"]],[false,{\".infrastructure-sec\":false},[\"margin-top:-187px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:24px\"]],[false,{\".main-scroll-box\":false},[\"overflow:scroll\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".devops-consulting-banner .title\":false},[\"margin-bottom:10px\"]],[false,{\".devops-consulting-banner h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:32px\"]],[false,\"}\"],[false,\"@media (max-width: 380px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,{\".contact-form-info-right ul li\":false},[\"font-size:14px\"]],[false,{\".contact-form-info-right ul li:first-of-type:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:20px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img .overlay-txt i\":false},[\"position:absolute\",\"right:7px\",\"background:rgba(255,255,255,.2)\",\"width:24px\",\"height:24px\",\"border-radius:50%\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-webkit-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"font-size:18px\",\"top:calc(50% - 10px)\"]],[false,{\".future-vision-sec .custom-img p\":false},[\"font-size:14px\",\"color:#bebebe\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img p\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".lets-talk-sec\":false},[\"padding:55px 0\",\"-webkit-box-shadow:8px 0px 32px rgba(0,0,0,.1)\",\"box-shadow:8px 0px 32px rgba(0,0,0,.1)\"]],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec\":false},[\"padding:30px 0 0\"]],[false,\"}\"],[false,{\".lets-talk-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .inner\":false},[\"max-width:300px\",\"text-align:center\",\"margin:auto\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".lets-talk-sec .inner\":false},[\"max-width:250px\"]],[false,\"}\"],[false,{\".lets-talk-sec .heading-box\":false},[\"width:calc(100% - 370px)\"]],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .heading-box\":false},[\"width:calc(100% - 300px)\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .heading-box\":false},[\"width:100%\",\"margin-bottom:18px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".lets-talk-sec .heading-box h2\":false},[\"font-size:25px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".lets-talk-sec .heading-box h2\":false},[\"font-size:20px\"]],[false,\"}\"],[false,{\".lets-talk-sec .btn-wrapper\":false},[\"width:306px\"]],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"width:100%\",\"height:80px\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"border-radius:100px\"]],[false,\"@media (max-width:1780px){\"],[false,{\".lets-talk-sec .btn-wrapper\":false},[\"width:250px\"]],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"height:70px\",\"font-size:24px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".lets-talk-sec .btn-wrapper\":false},[\"max-width:250px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"height:60px\",\"font-size:25px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"width:132px\",\"height:40px\",\"font-size:20px\",\"padding:5px\",\"margin:auto\",\"margin-bottom:-20px\"]],[false,{\".tek-world-scale .inner .custom-img\":false},[\"margin:0px auto\",\"display:block\"]],[false,\"}\"],[false,{\".custom-grid-sec\":false},[\"background-color:#f1f1f1\",\"padding:100px 0px 110px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec\":false},[\"padding-right:120px 0\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm amp-img\":false,\".custom-grid-sec .inner .colm amp-anim\":false},[\"width:60px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec\":false},[\"padding-right:120px 0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-grid-sec\":false},[\"padding:120px 0 80px\",\"margin-top:-155px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"margin:0 -40px\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"width:calc(33.333% - 27px)\",\"margin-right:40px\",\"display:flex\",\"flex-direction:column\"]],[false,{\".custom-grid-sec .inner\":false},[\"margin:0\"]],[false,{\".custom-grid-sec .inner .colm:nth-child(3n)\":false},[\"margin-right:0\"]],[false,\"@media (max-width: 992){\"],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding-right:20px\",\"padding-left:20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding-right:40px\",\"padding-left:20px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm figure\":false},[\"display:inline-block\",\"margin-right:15px\"]],[false,{\".custom-grid-sec .inner .colm h4\":false},[\"display:-webkit-inline-box\",\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"margin-bottom:15px\",\"color:#152649\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:30px\",\"font-weight:bold\"]],[false,\"@media (max-width: 1366px){\"],[false,{\".custom-grid-sec .inner .colm h4\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm p\":false},[\"margin-bottom:30px\",\"font-size:18px\",\"color:#434343\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"line-height:1.6\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec .inner .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-grid-sec .inner .colm p\":false},[\"font-size:14px\",\"margin-bottom:24px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm a\":false},[\"color:#152649\",\"font-weight:bold\",\"font-family:\\\"Raleway\\\",sans-serif\",\"display:block\",\"font-size:24px\",\"margin-top:auto\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec .inner .colm a\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-grid-sec .inner .colm a\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm a i\":false},[\"margin-left:15px\",\"font-size:16px\"]],[false,{\".custom-grid-sec .slick-dots\":false},[\"position:absolute\",\"right:10px\",\"top:50%\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\"]],[false,{\".custom-grid-sec .slick-dots li\":false},[\"list-style-type:none\",\"height:70px\",\"width:3px\",\"margin:4px 0\"]],[false,{\".custom-grid-sec .slick-dots li.slick-active button\":false},[\"background-color:#28d9cb\"]],[false,{\".custom-grid-sec .slick-dots li button\":false},[\"width:100%\",\"height:100%\",\"background-color:#fff\",\"border-radius:2px\",\"font-size:0\",\"outline:none\",\"border:none\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".custom-trust-sec .inner\":false},[\"position:relative\"]],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:calc(55% - 30px)\",\"margin-right:30px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:70%\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".custom-trust-sec .custom-txt p\":false},[\"padding-right:57px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-trust-sec .custom-txt p\":false},[\"color:#152649\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec .custom-txt p\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".custom-trust-sec .custom-txt h2\":false},[\"max-width:calc(100% - 80px)\"]],[false,\"}\"],[false,{\".custom-trust-sec .custom-img\":false},[\"width:calc(45% - 30px)\",\"margin-right:0\",\"margin-left:30px\",\"text-align:right\"]],[false,{\".custom-trust-sec .custom-img amp-img\":false,\".custom-trust-sec .custom-img amp-anim\":false},[\"max-width:250px\",\"width:100%\",\"margin:0px auto\",\"display:block\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-trust-sec .custom-txt\":false},[\"margin-right:0\",\"width:55%\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec .custom-img\":false},[\"position:absolute\",\"right:0\",\"top:-20px\"]],[false,{\".custom-trust-sec .custom-img:not(#_#_#_#_#_#_#_)\":false},[\"width:56px\"]],[false,\"}\"],[false,{\".custom-case-studie\":false},[\"padding:0\",\"position:relative\",\"padding-top:618px\",\"background-color:#152649\"]],[false,\"@media (max-width:1780px){\"],[false,{\".custom-case-studie\":false},[\"padding-top:480px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".custom-case-studie\":false},[\"padding-top:442px\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img\":false},[\"background-repeat:no-repeat\",\"padding-bottom:0px\",\"position:absolute\",\"top:0\",\"width:100%\"]],[false,{\".custom-case-studie .bg-img::before\":false},[\"content:\\\"\\\"\",\"width:100%\",\"height:265px\",\"position:absolute\",\"left:0\",\"bottom:0\",\"background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(21,38,73,0)),to(#152649))\",\"background-image:linear-gradient(rgba(21,38,73,0),#152649)\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-case-studie .bg-img::before\":false},[\"height:165px\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img .for-desktop\":false},[\"display:block\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .bg-img .for-desktop\":false},[\"display:none\"]],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:100%\"]],[false,{\".custom-trust-sec .custom-img\":false},[\"width:100%\",\"margin-left:0\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img .for-mobile\":false},[\"display:none\",\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .bg-img .for-mobile\":false},[\"display:block\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img .for-mobile amp-img\":false,\".custom-case-studie .bg-img .for-mobile amp-anim\":false},[\"width:100%\"]],[false,{\".custom-case-studie .custom-bottm-sec\":false},[\"padding-bottom:160px\",\"padding-top:40px\",\"position:relative\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-case-studie .custom-bottm-sec\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,{\".custom-case-studie .custom-bottm-sec .inner\":false},[\"-webkit-box-align:end\",\"-ms-flex-align:end\",\"align-items:flex-end\",\"margin-top:-200px\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt\":false},[\"width:55%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt label\":false},[\"color:#f1f1f1\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt label i\":false},[\"color:#7080a7\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt h2\":false},[\"color:#fff\",\"margin-bottom:25px\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt h2 span\":false},[\"color:#8bed78\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt p\":false},[\"padding-right:57px\",\"color:#f1f1f1\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt p\":false},[\"padding-right:0\"]],[false,\"}\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-case-btn\":false},[\"width:38%\",\"margin-right:0\",\"text-align:left\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-case-btn\":false},[\"width:100%\",\"margin-top:15px\",\"text-align:left\"]],[false,\"}\"],[false,{\".custom-colm-blog\":false},[\"background-color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\".custom-colm-blog .heading-box h2 span\":false},[\"color:#28d9cb\"]],[false,{\".custom-colm-blog .colm\":false},[\"background-color:#f7f7f7\",\"border:#c9c9c9 solid 1px\",\"-webkit-box-shadow:none\",\"box-shadow:none\"]],[false,{\".custom-colm-blog .colm .txt-box\":false},[\"padding-bottom:35px\"]],[false,{\".custom-colm-blog .colm .txt-box h6\":false},[\"text-transform:uppercase\",\"color:#6f7070\",\"font-size:14px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"margin-bottom:15px\"]],[false,{\".custom-colm-blog .colm .txt-box h6 span\":false},[\"color:#c9c9c9\"]],[false,{\".custom-colm-blog .colm .txt-box h4\":false},[\"font-size:20px\",\"color:#152649\",\"margin-bottom:60px\",\"height:30px\"]],[false,{\".custom-colm-blog .colm .txt-box .custom-btm-text\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".custom-colm-blog .colm .txt-box .custom-btm-text a\":false},[\"color:#152649\",\"font-size:18px\",\"text-decoration:underline\",\"font-weight:bold\"]],[false,\"@media (max-width:767px){\"],[false,{\".custom-colm-blog .colm .txt-box .custom-btm-text a\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".custom-colm-blog .colm .img-box amp-img\":false,\".custom-colm-blog .colm .img-box amp-anim\":false},[\"height:160px\",\"-o-object-fit:cover\",\"object-fit:cover\",\"width:100%\"]],[true,\"@media (max-width:992px){\"],[true,{\"footer .container\":true},[\"max-width:90%\"]],[true,{\".footer-2022__menu--list\":true},[\"padding:0px 5px\"]],[true,{\"header nav .dropdown-menu p.new-header__nav--menu--text\":true},[\"max-width:unset\"]],[true,\"}\"],[true,\"@media (max-width:600px){\"],[true,{\"footer .container\":true},[\"max-width:540px\"]],[true,{\".footer-2022__menu--list\":true},[\"padding:0px\"]],[true,\"}\"],[true,{\".new-header__menu-item\":true},[\"background:#f7f7f7\"]],[true,\"@media (max-width:1280px){\"],[true,{\".new-header__menu-item\":true},[\"padding-left:15px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header__menu-item\":true},[\"padding-left:0\"]],[true,\"}\"],[false,{\".cp-tek-teams-isk\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"position:relative\",\"margin-top:100px\"]],[false,{\".cp-tek-teams-isk .inner-hero-text amp-img\":false,\".cp-tek-teams-isk .inner-hero-text amp-anim\":false},[\"width:48px\"]],[false,{\".cp-tek-teams-isk amp-img\":false,\".cp-tek-teams-isk amp-anim\":false},[\"width:100%\",\"object-fit:cover\",\"object-position:center\"]],[false,\"@media (max-width: 768px){\"],[false,{\".cp-tek-teams-isk\":false},[\"margin-top:70px\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk picture\":false},[\"padding-bottom:25px\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"position:relative\"]],[false,\"@media (max-width: 1366px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"padding-bottom:5px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"margin-bottom:0px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"margin-bottom:7px\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk picture p\":false},[\"color:#28d9cb\",\"margin-left:15px\",\"margin-bottom:0px\",\"font-size:16px\",\"line-height:1\"]],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk picture p\":false},[\"margin-left:0px\",\"color:#28d9cb\",\"font-size:12px\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk .inner-hero-text\":false},[\"position:absolute\",\"top:45%\",\"width:100%\",\"left:50%\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk .inner-hero-text picture\":false},[\"margin-bottom:5px\"]],[false,{\".cp-tek-teams-isk .inner-hero-text amp-img\":false,\".cp-tek-teams-isk .inner-hero-text amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:60px\",\"font-weight:bold\",\"color:rgba(255,255,255,1)\",\"line-height:1\",\"margin-bottom:6px\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"@media (max-width: 768px){\"],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:30px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:32px\"]],[false,\"}\"],[false,{\".contact-tek-teams\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"padding:80px 0px 120px\"]],[false,{\".contact-tek-teams .mobile-button\":false},[\"display:none\"]],[false,\"@media (max-width: 767px){\"],[false,{\".contact-tek-teams .desktop-button\":false},[\"display:none\"]],[false,{\".contact-tek-teams .mobile-button:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (max-width: 1680px){\"],[false,{\".contact-tek-teams\":false},[\"padding:80px 0px 90px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".contact-tek-teams\":false},[\"padding:80px 0px 80px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".contact-tek-teams\":false},[\"padding:60px 0px 60px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".contact-tek-teams\":false},[\"padding:40px 0px 0px\"]],[false,\"}\"],[false,{\".contact-tek-teams .inner\":false},[\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".contact-tek-teams .inner .custom-txt .btn-blue\":false},[\"margin-top:0px\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-txt\":false},[\"width:calc(50.5% - 0px)\",\"margin-right:0\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"width:54%\",\"margin-right:-12%\",\"margin-left:76px\"]],[false,\"@media (max-width: 1214px) and (max-width: 1280px){\"],[false,{\".contact-tek-teams .custom-img\":false},[\"margin-right:-7%\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".contact-tek-teams .custom-img\":false},[\"width:47%\",\"margin-right:0px\"]],[false,{\".contact-tek-teams .inner .custom-img p:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".contact-tek-teams .inner\":false},[\"flex-direction:column\",\"align-items:flex-start\"]],[false,{\".contact-tek-teams .custom-img\":false},[\"width:100%\",\"margin-right:0px\",\"margin-top:0px\",\"margin-left:0px\"]],[false,\"}\"],[false,{\".contact-tek-teams .inner .custom-img p\":false},[\"color:#707070\",\"line-height:32px\",\"padding-right:18%\",\"font-size:20px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".contact-tek-teams .inner .custom-img p\":false},[\"color:#707070\",\"line-height:2\",\"padding-right:0px\",\"font-size:14px\"]],[false,\"}\"],[false,{\".repeat-bg\":false},[\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".repeat-bg\":false},[\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".repeat-bg amp-img\":false,\".repeat-bg amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 600px){\"],[false,{\".repeat-bg amp-img\":false,\".repeat-bg amp-anim\":false},[\"height:207px\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".repeat-bg .c-btm-icon\":false},[\"position:absolute\",\"bottom:35px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".repeat-bg .c-btm-icon\":false},[\"left:0px\",\"bottom:13px\",\"width:100%\",\"padding:0px 25px\"]],[false,{\".repeat-bg .c-btm-icon amp-img\":false,\".repeat-bg .c-btm-icon amp-anim\":false},[\"width:auto\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".repeat-bg .c-btm-icon\":false},[\"left:0px\",\"bottom:0\",\"width:100%\",\"padding:0px 25px\",\"padding-bottom:25px\"]],[false,{\".repeat-bg .c-btm-icon amp-img\":false,\".repeat-bg .c-btm-icon amp-anim\":false},[\"height:inherit\",\"width:auto\",\"margin-bottom:0px\",\"margin-top:0\",\"padding-bottom:15px\"]],[false,\"}\"],[false,{\".repeat-bg .tek-teams-mob-heading\":false},[\"display:none\"]],[false,{\".repeat-bg .tek-teams-mob-heading h3\":false},[\"font-size:24px\",\"color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"line-height:1.3\"]],[false,\"@media (max-width: 600px){\"],[false,{\".repeat-bg .tek-teams-mob-heading\":false},[\"display:block\",\"padding-right:68px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".repeat-bg .tek-teams-mob-heading\":false},[\"display:block\",\"padding-right:0px\"]],[false,{\".repeat-bg .c-btm-icon\":false},[\"padding-bottom:10px\"]],[false,{\".repeat-bg .c-btm-icon amp-img\":false,\".repeat-bg .c-btm-icon amp-anim\":false},[\"padding-bottom:0px\"]],[false,\"}\"],[false,{\".tek-teams-heading\":false},[\"padding-top:80px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".tek-teams-heading\":false},[\"padding-top:20px\"]],[false,\"}\"],[false,{\".tek-teams-heading h3\":false},[\"font-size:30px\",\"line-height:1\",\"margin-bottom:40px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#707070\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek-teams-heading h3\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".tek-teams-heading\":false},[\"display:none\"]],[false,\"}\"],[false,{\".about-tek-wrapper\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"padding-bottom:120px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".about-tek-wrapper\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".about-tek-wrapper\":false},[\"padding-bottom:60px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".about-tek-wrapper\":false},[\"padding-top:50px\",\"padding-bottom:60px\"]],[false,\"}\"],[false,{\".about-tek-wrapper .about-tek-team\":false},[\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".about-tek-wrapper .about-tek-team .c-col\":false},[\"width:calc(50% - 40px)\"]],[false,{\".about-tek-wrapper .about-tek-team .c-col p b\":false,\".about-tek-wrapper .about-tek-team .c-col p strong\":false},[\"font-weight:bold\"]],[false,\"@media (max-width: 768px){\"],[false,{\".about-tek-wrapper .about-tek-team .c-col\":false},[\"width:calc(50% - 15px)\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".about-tek-wrapper .about-tek-team .c-col\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".about-tek-wrapper .about-tek-team .c-col p\":false},[\"padding-bottom:10px\",\"font-size:20px\",\"line-height:2\",\"color:#707070\"]],[false,\"@media (max-width: 768px){\"],[false,{\".about-tek-wrapper .about-tek-team .c-col p\":false},[\"font-size:15px\",\"padding-bottom:0px\",\"margin-bottom:10px\"]],[false,\"}\"],[false,{\".about-tek-wrapper .about-tek-team .c-col p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".development-team-sec\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"background-color:#f1f1f1\",\"padding-bottom:120px\"]],[false,{\".development-team-sec .text-short-box\":false},[\"padding-left:8px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".development-team-sec\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".development-team-sec\":false},[\"padding-bottom:60px\"]],[false,\"}\"],[false,{\".development-team-sec p\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.5\",\"margin-bottom:60px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec p\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec p\":false},[\"font-size:15px\",\"margin-bottom:25px\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .tek-teams-heading h3\":false},[\"color:#24c1ff\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"margin-bottom:20px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:30%\",\"margin-bottom:60px\"]],[false,\"@media (min-width: 1025px) and (max-width: 1280px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:32%\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"margin-bottom:20px\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"margin:0 0 0 40px\",\"width:calc(55% - 40px)\",\"padding:0\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-txt\":false},[\"width:45%\",\"margin:0\",\"padding:0\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img p\":false},[\"padding:0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:45%\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"margin:25px 0 0px 0px\",\"width:100%\",\"padding-bottom:10px\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-txt\":false},[\"width:100%\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:100%\",\"border-bottom:#e1e1e1 solid 1px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col:last-child\":false},[\"border-bottom:none\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:35px\",\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading figure\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"color:#152649\",\"padding-left:8px\",\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"margin-bottom:0px\"]],[false,\"@media only screen and (min-width: 1025px) and (max-width: 1279px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"font-size:14px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"padding-left:4px\",\"font-size:12px\",\"margin-bottom:0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"padding-left:4px\",\"font-size:14px\",\"margin-bottom:0\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:0px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span::before:not(#_#_#_#_#_#_#_#_)\":false},[\"content:none\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"font-size:18px\",\"line-height:1.3\",\"margin-bottom:25px\",\"color:#707070\",\"position:relative\",\"padding-left:20px\",\"padding-right:20px\",\"display:block\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"padding-right:0px\",\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"padding-left:10px\",\"font-size:13px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"font-size:14px\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span:last-child\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span::before\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p::before\":false},[\"position:absolute\",\"top:0\",\"left:0px\",\"content:\\\"-\\\"\",\"line-height:17px\"]],[false,\"@media (max-width: 600px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .col-heading::before\":false},[\"content:\\\"\\\"\",\"width:6px\",\"height:6px\",\"border-bottom:2px solid #24c1ff\",\"border-right:2px solid #24c1ff\",\"float:right\",\"position:absolute\",\"top:12px\",\"right:1px\",\"-webkit-transform:rotate(45deg)\",\"transform:rotate(45deg)\",\"-webkit-transform-origin:center\",\"transform-origin:center\",\"-webkit-transition:all .4s ease\",\"transition:all .4s ease\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .col-heading.active::before\":false},[\"-webkit-transform:rotate(225deg)\",\"transform:rotate(225deg)\",\"color:#24c1ff\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .col-heading .active:after\":false},[\"-webkit-transform:rotate(-135deg)\",\"transform:rotate(-135deg)\",\"border-color:#fff\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .text-short-box\":false},[\"display:none\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .btn-blue\":false},[\"padding:23px 0px\",\"text-align:center\",\"border-radius:50px\",\"width:360px\",\"margin:0px auto\",\"display:block\"]],[false,{\".benefits-sec\":false},[\"background-color:#fff\"]],[false,{\".team-structure-sec .tek-teams-heading h3\":false},[\"margin-bottom:25px\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"@media (max-width: 768px){\"],[false,{\".team-structure-sec .tek-teams-heading h3\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".team-structure-sec p\":false},[\"font-size:18px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".team-structure-sec p\":false},[\"font-size:14px\"]],[false,{\".custom-grid-sec .inner\":false},[\"margin:0\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding:25px 10px 25px 0px\",\"margin:0\"]],[false,{\".custom-grid-sec .slick-dots\":false},[\"right:0\"]],[false,\"}\"],[false,{\".dev-shop-team-sec\":false},[\"padding:120px 0px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".dev-shop-team-sec\":false},[\"padding:80px 0px\"]],[false,\"}\"],[false,{\".c-border-none td:not(#_#_#_#_#_#_#_#_)\":false},[\"border:none\"]],[false,{\".tekteams-tabel\":false},[\"background:none\"]],[false,{\".tekteams-tabel .heading-box label\":false},[\"color:#7080a7\"]],[true,\"@media (max-width: 1760px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:14px\",\"padding:0px 14px\"]],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:80px\"]],[true,{\".dropdown-menu\":true},[\"top:77px\"]],[false,{\".cp-tek-teams-isk:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:80px\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:50px\",\"width:75%\",\"margin-right:auto\",\"margin-left:auto\"]],[false,{\".demand-sec\":false},[\"padding:150px 0px 110px 0px\"]],[false,{\".ecosystem-sec\":false},[\"padding:150px 0px\"]],[false,{\".partner-sec .bg-img\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\"]],[false,{\".partner-sec\":false},[\"padding:240px 0px 240px 0px\"]],[false,{\".partner-sec .container-md\":false},[\"margin-top:0\"]],[false,{\".solution-sec\":false},[\"padding:160px 0px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:50px\"]],[false,{\".tek-teams-heading h3\":false},[\"margin-bottom:30px\"]],[false,{\".about-tek-wrapper .about-tek-team .c-col p\":false},[\"margin-bottom:5px\",\"line-height:1.5em\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"margin-bottom:30px\"]],[false,{\".development-team-sec .development-team-content .btn-blue\":false},[\"padding:16px 0px\",\"width:261px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:20px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:120px 0px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:79px\"]],[true,\"}\"],[true,\"@media (max-width: 1680px){\"],[false,{\".tekteams-tabel\":false},[\"padding:25px 0px 60px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"padding:0px 11px\"]],[true,{\".new-header__button a\":true},[\"font-size:16px\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:45px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:45px\"]],[false,{\".demand-sec\":false},[\"padding:100px 0px 60px 0px\"]],[false,{\".ecosystem-sec\":false},[\"padding:100px 0px 130px 0px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 200px 0px\"]],[false,{\".partner-sec .heading-box\":false},[\"padding-bottom:50px\"]],[false,{\".solution-sec\":false},[\"padding:130px 0px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:100px 0px\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:18px\"]],[false,{\".journey-roadmap\":false},[\"margin-top:-98px\"]],[false,{\".infrastructure-sec .heading-box h2\":false,\".cost-effective-sec .heading-box h2\":false},[\"font-size:50px\"]],[true,\"}\"],[true,\"@media (max-width: 1560px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\",\"padding:0px 9px\"]],[true,{\".new-header__button a\":true},[\"font-size:14px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 160px 0px\"]],[false,{\".solution-sec\":false},[\"padding:120px 0px\"]],[false,{\".journey-roadmap\":false},[\"margin-top:-200px\"]],[false,{\".kubernetes-sec\":false},[\"margin-top:-100px\"]],[true,\"}\"],[true,\"@media (max-width:1366px){\"],[false,{\".btn-blue\":false},[\"font-size:18px\"]],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:77px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:72px\"]],[false,{\".cp-tek-teams-isk:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:77px\"]],[true,{\".dropdown-menu\":true},[\"top:75px\"]],[false,{\".cp-cloud-native-isk h2\":false,\".cp-tek-teams-isk h2\":false},[\"font-size:40px\"]],[false,{\".heading-box h2\":false},[\"font-size:32px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 140px 0px\"]],[false,{\".solution-sec\":false},[\"padding:110px 0px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:80px 0px\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:16px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:140px\"]],[false,{\".keeping-future ul\":false},[\"font-size:18px\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:40px\"]],[false,{\".choose-option ul li:last-child\":false},[\"margin-left:0px\"]],[false,{\".choose-option ul li\":false},[\"padding:15px 20px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 70px 119px\"]],[false,{\".contact-form-info-right ul li\":false},[\"padding:25px 0px 25px\"]],[true,\"}\"],[true,\"@media (max-width:1280px){\"],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:60px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:60px\"]],[false,{\".cp-tek-teams-isk:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:59px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:60px\"]],[true,{\".dropdown-menu\":true},[\"top:57px\"]],[false,{\".heading-box h2\":false},[\"font-size:28px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 120px 0px\"]],[false,{\".choose-option\":false},[\"padding-left:40px\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:60px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:35px\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:14px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:120px\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:33px\"]],[false,{\".keeping-future ul\":false},[\"font-size:16px\"]],[false,{\".contact-form-info-right ul\":false},[\"margin-bottom:70px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 50px 119px\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"object-position:-256px 0px\"]],[true,\"}\"],[false,\"@media (max-width:1200px){\"],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:25px\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:45px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 30px 119px\"]],[false,\"}\"],[false,\"@media (max-width:1190px){\"],[false,{\".btn-blue\":false},[\"font-size:16px\"]],[false,\"}\"],[true,\"@media (max-width:1170px){\"],[true,{\".new-header__logo\":true},[\"min-width:200px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\",\"padding:0px 6px\"]],[false,{\".choose-option ul li\":false},[\"font-size:17px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:18px\"]],[true,\"}\"],[true,\"@media (max-width:1100px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:10px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 100px 0px\"]],[true,\"}\"],[true,\"@media (max-width:1028px){\"],[true,{\".new-header__logo\":true},[\"min-width:150px\"]],[true,\"}\"],[false,\"@media (max-width:1024px){\"],[false,{\".contact-form-left\":false},[\"width:53%\",\"padding:58px 0px 75px\"]],[false,{\".contact-form-info-right\":false},[\"width:44%\",\"padding:50px 18px 76px\"]],[false,{\".choose-option ul\":false},[\"flex-wrap:nowrap\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"object-position:75% 0px\"]],[false,\"}\"],[true,\"@media (max-width:992px){\"],[false,{\".btn-blue\":false},[\"font-size:18px\"]],[true,{\".new-header__button\":true},[\"width:20%\",\"justify-content:center\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"width:100%\"]],[false,{\".solution-sec\":false},[\"padding:90px 0px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:30px\"]],[false,{\".cp-cloud-native-isk .btn\":false},[\"width:unset\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:230px\"]],[true,{\".closeicon\":true},[\"width:14px\",\"display:none\",\"position:relative\",\"right:17px\",\"top:6px\"]],[true,{\".navbar-toggler .closeicon\":true},[\"display:block\"]],[true,{\".navbar-toggler amp-img:nth-child(1)\":true,\".navbar-toggler amp-anim:nth-child(1)\":false},[\"display:none\"]],[false,{\".navbar-toggler.collapsed .closeicon\":false},[\"display:none\"]],[false,{\".navbar-toggler.collapsed amp-img:nth-child(1)\":false,\".navbar-toggler.collapsed amp-anim:nth-child(1)\":false},[\"display:block\"]],[false,{\".text-grey-box p\":false},[\"padding-right:0px\"]],[true,\"}\"],[false,\"@media (max-width:980px){\"],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"padding:0px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:0\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:20px\"]],[false,{\".btm-icon-line\":false},[\"width:55%\",\"margin:0px auto\"]],[false,{\".custom-contact-wrapper\":false},[\"padding:85px 0px 100px\"]],[false,{\".contact-form-info-right ul li:last-child a\":false},[\"word-break:break-word\"]],[false,\"}\"],[false,\"@media (max-width: 769px){\"],[false,{\".contact-form-info-right ul li a\":false},[\"word-break:break-word\"]],[false,{\".contact-form-info-right ul li:first-of-type a\":false},[\"font-size:25px\"]],[false,{\".contact-form-info-right ul .phone:before\":false},[\"width:30px\",\"height:30px\"]],[false,{\".contact-form-info-right ul .address:before\":false},[\"background-size:100%\",\"width:30px\",\"height:30px\"]],[false,{\".contact-form-info-right ul li:nth-of-type(2) span\":false},[\"padding-left:43px\"]],[false,{\".contact-form-info-right ul li a\":false},[\"padding-left:10px\"]],[false,{\".btm-icon-line:after\":false,\".btm-icon-line::before\":false},[\"width:95px\"]],[false,{\".contact-form-info-right ul\":false},[\"margin-bottom:30px\"]],[false,{\".choose-option ul\":false},[\"margin-bottom:0px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 18px 50px\"]],[false,{\".contact-form-info-right h3\":false},[\"margin-bottom:0px\"]],[false,{\".btm-icon-line\":false},[\"width:100%\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea\":false},[\"height:100px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:27px\"]],[false,{\".contact-form-left\":false},[\"padding:58px 0px 30px\"]],[false,{\".choose-option ul li\":false},[\"font-size:17px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:18px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".col-row ul li:nth-child(1)\":false,\".col-row ul li:nth-child(4)\":false,\".col-row ul li\":false},[\"width:50%\"]],[false,{\".custom-contact-wrapper .container-md\":false},[\"padding:0px\",\"width:100%\"]],[false,{\".contact-wrapper-banner .inner-hero-text\":false},[\"top:45%\"]],[false,{\".contact-wrapper-banner .inner-hero-text h2\":false},[\"text-align:center\"]],[false,{\".custom-contact-wrapper\":false},[\"padding:0px\",\"margin-top:-1px\",\"border-radius:0px\"]],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"border-radius:0px\",\"padding:0px\"]],[false,{\".contact-form-info-right\":false},[\"border-radius:0px\",\"padding:40px 24px 0px\",\"width:100%\"]],[false,{\".contact-wrapper-banner\":false},[\"z-index:3\"]],[false,{\".contact-form-info-right h3\":false},[\"display:none\"]],[false,{\".contact-form-info-right ul li:first-of-type\":false},[\"font-size:30px\"]],[false,{\".contact-form-info-right ul li\":false},[\"padding:20px 0px 20px 0px\"]],[false,{\".contact-form-info-right ul li:first-of-type a\":false},[\"font-size:30px\"]],[false,{\".btm-icon-line\":false},[\"display:none\"]],[false,{\".contact-form-info-right ul\":false},[\"margin-bottom:60px\"]],[false,{\".choose-option ul\":false},[\"flex-wrap:nowrap\",\"margin-bottom:0\"]],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"background-color:transparent\",\"flex-direction:column-reverse\"]],[false,{\".choose-option\":false},[\"padding-left:0\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:0px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:0\"]],[false,{\".contact-form-left\":false},[\"padding:45px 24px 0px 24px\",\"background:#fff\",\"width:86%\",\"margin:85px auto 120px auto\",\"border-radius:0px 26px 26px 26px\",\"box-shadow:0px 20px 32px 0px rgba(0,0,0,.2)\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .col-md-4\":false},[\"max-width:100%\",\"margin-bottom:15px\",\"flex:0 0 100%\"]],[false,{\".form-group .form-control\":false},[\"padding:0px 0px 5px\"]],[false,{\".form-group label\":false},[\"font-size:14px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea\":false},[\"margin-bottom:32px\",\"margin-top:0px\",\"height:90px\"]],[false,{\".form-group::placeholder\":false},[\"font-size:16px\"]],[false,{\".form-control::-webkit-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:13px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".form-control::-ms-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:13px\",\"font-weight:normal\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".form-control::placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:13px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control\":false},[\"font-size:13px\",\"padding:0px 0px 5px\"]],[false,{\".choose-option ul li\":false},[\"font-size:15px\",\"padding:14px 8px\",\"color:#152649\"]],[false,{\".choose-option ul li.tab.active a\":false},[\"font-weight:bold\",\"color:#152649\"]],[false,{\".choose-option ul li:last-child\":false},[\"padding:15px 20px\",\"line-height:1\"]],[false,{\".choose-option ul li:nth-child(2)\":false},[\"font-weight:bold\",\"margin-right:0px\",\"margin-left:0px\"]],[false,{\".contact-wrapper-banner .inner-hero-text p\":false},[\"display:none\"]],[false,{\".contact-wrapper-banner:before\":false},[\"width:20px\",\"height:20px\",\"bottom:-7px\",\"left:7%\",\"background-color:#101f42\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .calendly-inline-widget:not(#_#_#_#_#_#_#_)\":false},[\"min-width:100%\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"object-position:82% 0px\"]],[false,\"}\"],[true,\"@media (max-width: 767px){\"],[false,{\".tekteams-tabel .heading-box label\":false},[\"margin-left:0px\"]],[false,{\".tekteams-tabel .table-wrapper td.always\":false},[\"color:#28d9cb\"]],[false,{\".tekteams-tabel .table-wrapper td:last-of-type\":false},[\"color:#24c1ff\",\"font-weight:700\"]],[false,{\".tekteams-tabel .table-wrapper tr\":false},[\"display:block\",\"border-top:1px solid #c9c9c9\",\"padding:15px 0\"]],[false,{\"section.demand-sec .inner .slick-track\":false},[\"display:unset\"]],[false,{\".demand-sec .inner .colm:not(#_#_#_#_#_#_#_)\":false},[\"margin:25px 10px 25px 0\",\"padding:0\"]],[false,{\".future-vision-sec .custom-img\":false},[\"width:90%\",\"margin:auto\"]],[true,{\".footer-2022__certificates\":true},[\"margin-top:30px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:70px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\"]],[false,{\".heading-box h2\":false},[\"font-size:24px\"]],[false,{\".demand-sec .heading-box\":false},[\"padding-bottom:20px\"]],[false,{\".ecosystem-sec .inner\":false},[\"padding-bottom:0\"]],[false,{\".ecosystem-sec\":false},[\"padding:100px 0px 100px 0px\"]],[false,{\".solution-sec\":false},[\"padding:70px 0px\"]],[false,{\".tek-teams-heading h3\":false},[\"margin-bottom:15px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:15px\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"display:block\",\"flex-direction:unset\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding:25px 10px 25px 0px\",\"margin:0\"]],[false,{\".custom-grid-sec .inner .slick-list\":false},[\"padding-bottom:25px\"]],[true,{\"header .new-header__menu-item\":true},[\"top:60px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link\":true},[\"line-height:normal\",\"font-weight:600\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:16px\",\"color:#152649\"]],[true,{\"header .new-header__nav--list li\":true},[\"margin-bottom:30px\",\"margin-left:18px\"]],[true,{\"header .new-header__nav--list\":true},[\"margin-top:46px\"]],[true,{\"header .new-header__nav--list li:nth-last-child(1)\":true},[\"margin-bottom:0\"]],[true,{\"header .dropdown-menu\":true},[\"top:0px\"]],[true,{\"header .new-header__nav--menu--title\":true},[\"font-size:14px\"]],[true,{\"header .new-header__nav--title h5\":true},[\"font-size:20px\"]],[false,{\"header .new-header__nav--list>.show\":false},[\"padding-top:10px\"]],[false,{\".c-application-development .review_sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:20px\"]],[true,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".reliability-engineers\":false},[\"margin-top:126px\"]],[false,{\".development-team-sec .development-team-content .btn-blue\":false},[\"margin:0px\",\"padding:16px 0px\",\"width:185px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:150px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,\"}\"],[false,\"@media (max-width:575px){\"],[false,{\".infrastructure-sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-309px\"]],[false,{\".col-row ul li\":false,\".col-row ul li:nth-child(1)\":false,\".col-row ul li:nth-child(4)\":false},[\"width:100%\",\"padding-left:25px\"]],[false,{\".col-row ul li::after\":false},[\"width:19px\",\"height:19px\",\"background-size:100%\"]],[false,{\".kubernetes-sec .container-md\":false},[\"padding:0px 0px\"]],[false,{\".kubernetes-sec .custom-txt\":false},[\"padding:0px 24px\"]],[false,{\".devops-services .applications-col h5::before\":false},[\"width:25px\",\"height:25px\",\"background-size:100%\"]],[false,{\".infrastructure-sec .heading-box:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0px\"]],[false,\"}\"],[true,\"@media (max-width:480px){\"],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"margin:0px 0 0px 0px\",\"padding-bottom:0px\"]],[true,{\".footer-2022__certificates\":true},[\"margin-top:0\",\"margin-bottom:20px\"]],[true,{\".footer-2022__box-end a\":true},[\"font-size:14px\"]],[true,{\".footer-2022__box-end a:nth-last-child(1)\":true},[\"margin-right:0\"]],[true,{\".row.footer-2022__mobile-items\":true},[\"padding-right:0\"]],[true,{\".footer-2022__copyright\":true},[\"font-size:14px\"]],[false,{\".future-vision-sec .custom-img\":false},[\"max-width:360px\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:32px\"]],[false,{\".demand-sec\":false},[\"padding:60px 0px 40px 0px\"]],[false,{\".ecosystem-sec\":false},[\"padding:60px 0px 35px 0px\"]],[false,{\".ecosystem-sec .heading-box figure\":false},[\"top:0\",\"right:0\"]],[false,{\".ecosystem-sec .heading-box figure amp-img\":false,\".ecosystem-sec .heading-box figure amp-anim\":false},[\"width:100%\",\"height:100%\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 80px 0px\"]],[false,{\".partner-sec .colm h6\":false},[\"min-height:unset\"]],[false,{\".partner-sec .heading-box\":false},[\"padding-bottom:40px\"]],[false,{\".solution-sec\":false},[\"padding:60px 0px\"]],[false,{\".cp-tek-teams-isk h2\":false,\".tek-teams-heading h3\":false},[\"font-size:26px\"]],[false,{\".c-app-banner h2\":false},[\"font-size:32px\"]],[false,{\".c-app-banner p\":false},[\"font-size:16px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:60px 0px\"]],[true,{\".footer-2022__social-media\":true},[\"margin-top:60px\"]],[true,{\".footer-2022__social-media a\":true},[\"margin:0px 30px 0px 0px\"]],[true,{\".footer-2022__social-media a:nth-last-child(1)\":true},[\"margin-right:0\"]],[true,\"}\"],[false,\"@media (max-width:420px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:100%\",\"margin:auto\"]],[false,{\".ecosystem-sec .heading-box figure\":false},[\"margin-bottom:0\",\"top:30px\",\"width:70px\",\"height:70px\"]],[false,{\".ecosystem-sec .heading-box h2\":false},[\"width:calc(100% - 70px)\"]],[false,\"}\"],[false,{\"body .devops-styles:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-top:75px\"]],[false,\"@media (max-width:1200px){\"],[false,{\"body .devops-styles:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-top:55px\"]],[false,{\".contact-wrapper-banner:before\":false},[\"left:7%\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:1135px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-bottom:25px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(36%)\"]],[false,{\".ecosystem-sec .colm:last-of-type figure\":false},[\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"max-width:200px\",\"display:block\",\"margin:auto\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:47%\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:1035px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"transform:translateY(-50%)\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(32%)\"]],[false,{\".ecosystem-sec .colm\":false},[\"padding:15px 30px 15px 30px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"margin-bottom:15px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"padding-right:30px\",\"font-size:20px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(38%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:48%\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:898px){\"],[false,{\".ecosystem-sec .colm p\":false},[\"font-size:14px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(38%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:49%\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:16px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:15px\"]],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:18px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"width:60px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:25px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"width:130px\"]],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"width:170px\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:770px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(26%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:48%\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:14px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:15px\"]],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:16px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"width:60px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:25px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"width:120px\"]],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"width:140px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false,\".ecosystem-sec .colm\":false},[\"margin-bottom:20px\",\"padding:15px 20px\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,{\".ecosystem-sec .colm p\":false},[\"font-size:12px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"padding-bottom:25px\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:700px){\"],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"width:110px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"transform:translateY(-41%)\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(25%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:49%\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"margin-bottom:10px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:10px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false,\".ecosystem-sec .colm\":false},[\"margin-bottom:20px\",\"padding:10px 20px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"padding-top:0\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":6539,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/kubernetes.css?v=2076121205\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"00ad41532091732506b79ad4852bdcbd\",\"parse_time\":0.06768393516540527,\"shake_time\":0.0001239776611328125,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\"#gtx-trans\":false},[\"display:none\"]],[false,{\".kubernetes__banner__dark\":false},[\"background-color:#152649\",\"padding:85px 0px\"]],[false,{\".kubernetes__banner__light\":false},[\"background-color:#fff\",\"padding:120px 0px\"]],[false,{\".kubernetes__banner__grey\":false},[\"background-color:#f1f1f1\",\"padding:120px 0px\"]],[false,{\".kubernetes__banner__bottom\":false},[\"background-color:#fff\",\"padding:65px 0px\",\"box-shadow:inset 0px 11px 8px -10px rgba(0,0,0,.1),inset 0px -11px 8px -10px rgba(0,0,0,.1)\"]],[false,{\".text__light__blue\":false},[\"color:#28d9cb\"]],[false,{\".text__blue\":false},[\"color:#00c3fc\"]],[false,{\".kubernetes__section--1 .subtitle\":false},[\"font-family:Roboto\",\"font-size:16px\",\"text-transform:uppercase\",\"letter-spacing:1.6px\"]],[false,{\".kubernetes__section--1 .titlePage\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:60px\"]],[false,{\".kubernetes .redirect__page\":false},[\"color:#7080a7\",\"align-items:center\"]],[false,{\".redirect__page > h6\":false},[\"font-family:Roboto\",\"font-size:18px\",\"margin-left:10px\",\"margin-bottom:0px\",\"color:#7080a7\"]],[false,{\".iconSmall\":false},[\"width:2px\",\"height:5px\",\"margin-right:10px\"]],[false,{\".iconMedium\":false},[\"width:15px\",\"height:13px\",\"margin-right:10px\"]],[false,{\".imgIcon\":false},[\"width:24px\",\"height:24px\",\"margin-right:10px\"]],[false,{\".kubernetes .wrap__kcsp .nav__services .service__name h6\":false},[\"color:#152649\",\"margin:0\",\"font-weight:bold\",\"font-family:Raleway\"]],[false,{\".kubernetes .titleSection\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".kubernetes .titleSection__footer\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".kubernetes .section_one_content\":false,\".kubernetes .section_three_content\":false,\".kubernetes .section_four_content\":false,\".kubernetes .section_five_content\":false},[\"font-size:20px\",\"line-height:32px\"]],[false,{\".kubernetes .nav__services\":false},[\"box-shadow:rgba(0,0,0,.45) 0px 25px 20px -20px\",\"border-radius:24px\",\"background-color:#f5f5f5\",\"border:1px solid #f5f5f5\",\"padding:26.5px 35.5px\",\"margin-top:40px\"]],[false,{\".kubernetes .nav__services h6\":false},[\"margin:0\"]],[false,{\".kubernetes .nav__services .service__name\":false},[\"font-family:Raleway\",\"font-size:16px\",\"font-weight:bold\",\"color:#152649\"]],[false,{\".kubernetes .nav__services .service__name .section_five_icon_text\":false},[\"font-size:14px\",\"line-height:32px\"]],[false,{\".service__name picture\":false,\".service__name source\":false,\".service__name div > amp-img\":false,\".service__name div > amp-anim\":false},[\"display:flex\",\"width:35px\"]],[false,{\".service__name div\":false},[\"display:flex\",\"justify-content:flex-start\",\"align-items:center\"]],[false,{\".service__name div h6\":false},[\"font-weight:bold\",\"font-size:18px\",\"font-family:Raleway\",\"margin:0\"]],[false,{\".kubernetes .btn__consultation\":false},[\"background-color:#00c3fc\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\"]],[false,{\".kubernetes .btn__consultation__light__blue\":false},[\"background-color:#28d9cb\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\"]],[false,{\".kubernetes .btn__linear\":false},[\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:40px\"]],[false,{\".kubernetes .wrap__Services .service__name\":false},[\"font-family:Raleway\",\"font-size:18px\",\"font-weight:bold\",\"color:#152649\",\"line-height:32px\"]],[false,{\".service__list\":false},[\"align-items:center\",\"border-bottom:1px solid #e1e1e1\",\"max-height:70px\"]],[false,{\".kubernetes .wrap__Services .service__list:last-child .service__name\":false},[\"border-bottom:none\"]],[false,{\".kubernetes .owl-carousel .owl-item .service__name\":false},[\"font-family:Raleway\",\"font-size:18px\",\"font-weight:bold\",\"color:#152649\",\"line-height:32px\"]],[false,{\".service__name i\":false},[\"color:#26c1ff\",\"font-size:15px\",\"margin-right:3px\"]],[false,{\".kubernetes .owl-carousel .owl-item .imgIcon\":false},[\"width:24px\",\"height:24px\",\"margin-right:10px\"]],[false,{\".kubernetes .owl-theme .owl-nav\":false},[\"display:none\"]],[false,{\".kubernetes .owl-theme .owl-dots .owl-dot span\":false},[\"width:4px\",\"height:4px\",\"background-color:#d6d6d6\"]],[false,{\".kubernetes .owl-theme .owl-dots .owl-dot.active span\":false},[\"width:24px\",\"height:4px\",\"border-radius:2px\",\"background-color:#28d9cb\"]],[false,{\".kubernetes .text\":false},[\"font-family:Raleway\",\"font-size:20px\",\"font-weight:bold\",\"color:#152649\",\"line-height:32px\"]],[false,{\".absolute__button\":false},[\"position:absolute\",\"bottom:-35px\",\"left:calc(( 100vw - 246px ) \\/ 2)\"]],[false,\"@media screen and (min-width: 1440px){\"],[false,{\".containerWidth\":false},[\"max-width:1210px\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media screen and (max-width: 991px){\"],[false,{\".kubernetes__banner__grey\":false},[\"padding:80px 0px\"]],[false,{\".kubernetes__banner__light\":false},[\"padding:50px 0px 80px 0px\"]],[false,{\".kubernetes__banner__bottom\":false},[\"padding:35px 0px\"]],[false,{\".kubernetes__section--1 .titlePage\":false},[\"font-size:32px\",\"line-height:34px\"]],[false,{\".kubernetes__section--1 .subtitle\":false},[\"font-size:12px\",\"letter-spacing:1.2px\"]],[false,{\".kubernetes .redirect__page h6\":false},[\"font-size:14px\",\"line-height:17px\",\"letter-spacing:1.4px\"]],[false,{\".kubernetes .section_one_content\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".kubernetes .wrap__kcsp .nav__services .service__name h6\":false},[\"font-size:14px\",\"line-height:16px\"]],[false,{\".kubernetes .owl-carousel .item .service__name .section_two_title\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".kubernetes .section_one_content\":false,\".kubernetes .section_three_content\":false,\".kubernetes .section_four_content\":false,\".kubernetes .section_five_content\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".kubernetes .text\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".owl-carousel .service__name:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom:1px solid #e1e1e1\"]],[false,{\".kubernetes .titleSection__footer\":false},[\"font-size:20px\",\"line-height:24px\",\"padding:0px 58px\"]],[false,{\".kubernetes .btn__linear\":false},[\"font-size:20px\",\"padding:15px 28px\"]],[false,{\".absolute__button\":false},[\"position:absolute\",\"bottom:-25px\",\"left:calc(( 100vw - 150px ) \\/ 2)\"]],[false,\"}\"],[false,\"@media screen and (max-width: 1439px){\"],[false,{\".containerWidth\":false},[\"max-width:calc(100vw * .87692307692)\",\"margin:0px auto\"]],[false,{\".kubernetes .titleSection\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":9242,\"final_size\":130,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/marchine.css?v=1570234383\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"07d3cbb28be76f71cb628b43712b32c1\",\"parse_time\":0.06338882446289062,\"shake_time\":0.0002510547637939453,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"*\":true},[\"font-family:Raleway\"]],[false,{\".top-service\":false},[\"margin-top:0\"]],[true,{\":root\":true},[\"--btn_color:#0e2748\",\"--main_color:#0e2748\"]],[true,{\"a:hover\":true},[\"color:var(--main_color)\"]],[false,{\".btn-consultation\":false},[\"background-color:#00c3fc\",\"border-radius:30px\",\"padding:25px 50px\",\"color:var(--btn_color)\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\",\"z-index:3\",\"white-space:nowrap\"]],[true,{\"h1\":true,\"h2\":false,\"h3\":false,\"h4\":false,\"h5\":true,\"h6\":true},[\"font-family:Raleway\"]],[false,{\".machine_banner h1\":false},[\"font-size:60px\",\"font-weight:bold\",\"text-align:left\",\"line-height:60px\"]],[false,{\".machine_banner p\":false},[\"color:#28d9cb\",\"margin-bottom:24px\",\"font-family:Roboto\",\"font-size:16px\",\"line-height:22px\",\"text-align:left\"]],[false,{\".service_machine_new\":false},[\"background-color:#fff\"]],[false,{\".machine_future\":false},[\"margin-top:100px\"]],[false,{\".text-strong\":false},[\"font-size:50px\",\"font-weight:bold\",\"white-space:nowrap\"]],[false,{\".text-strong\":false},[\"color:#24c1ff\"]],[false,{\".machine_future h2\":false},[\"line-height:50px\"]],[false,{\".machine_future h2\":false,\".machine_future amp-img\":false,\".machine_future amp-anim\":false},[\"margin:40px 0px\",\"font-family:Raleway\",\"font-size:50px\"]],[false,{\".machine_future amp-img\":false,\".machine_future amp-anim\":false},[\"background-size:cover\"]],[false,{\".machine_future i\":false},[\"color:rgba(112,128,167,1)\",\"font-size:16px\",\"margin-right:10px\"]],[false,{\".machine_future h6\":false},[\"color:#7080a7\",\"margin-bottom:0\",\"font-family:Roboto\",\"font-size:18px\"]],[false,{\".machine_text\":false},[\"color:#707070\",\"width:90%\",\"font-size:20px\",\"line-height:32px\",\"margin-bottom:80px\"]],[false,{\".about-service\":false},[\"padding-bottom:120px\"]],[false,{\".about-service .slider-about\":false},[\"padding:0\"]],[false,{\".slider-about > div\":false},[\"height:100%\"]],[false,{\".service-machine-selection\":false},[\"display:flex\",\"justify-content:space-around\",\"background-color:#f1f1f1\",\"padding:15px 15px\",\"margin:0px\",\"border-radius:40px\"]],[false,{\".service-machine-selection > a\":false},[\"border-radius:40px\",\"padding:10px\",\"width:100%\",\"flex:1\",\"text-align:center\",\"color:#707070\",\"font-weight:bold\",\"font-size:20px\"]],[false,{\".slider-about_problems\":false,\".slider-about_solutions\":false},[\"padding:0px 50px\"]],[false,{\".slider-about_problems h3\":false},[\"font-weight:bold\",\"font-size:32px\",\"text-align:left\",\"line-height:40px\"]],[false,{\".slider-about_problems h4\":false},[\"font-size:20px\",\"color:#434343\",\"font-family:Raleway\",\"font-weight:bold\",\"line-height:32px\",\"text-align:left\"]],[false,{\".slider-about_problems p\":false},[\"font-size:18px\",\"line-height:30px\",\"line-height:40px\",\"text-align:left\"]],[false,{\".item-carousel-1:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[false,{\".item-carousel-1 amp-img\":false,\".item-carousel-1 amp-anim\":false},[\"vertical-align:top\",\"margin:0\"]],[false,{\".slider-about_problems > div:last-child\":false},[\"font-size:32px\",\"display:flex\",\"justify-content:center\",\"color:#152649\",\"font-weight:bold\"]],[false,{\".first_solution > div\":false,\".second_solution > div\":false,\".last_solution > div\":false},[\"margin-bottom:50px\"]],[false,{\".slider-about_solutions h3\":false},[\"font-weight:bold\",\"font-size:32px\",\"text-align:left\",\"line-height:40px\"]],[false,{\".slider-about_solutions amp-img\":false,\".slider-about_solutions amp-anim\":false},[\"margin:0px\",\"margin-top:5px\",\"min-width:24px\",\"height:24px\"]],[false,{\".first_solution p:first-child\":false},[\"font-weight:bold\",\"font-size:20px\",\"line-height:32px\",\"color:#434343\",\"margin-bottom:50px\"]],[false,{\".first_solution p\":false,\".second_solution p\":false,\".last_solution p\":false},[\"color:#152649\",\"font-size:1.125rem\",\"line-height:30px\",\"text-align:left\"]],[false,{\".slider-about-text-strong\":false},[\"color:#28d9cb\"]],[false,{\".difference_slice\":false},[\"padding:0px 50px\"]],[false,{\".difference_slice div:first-child\":false},[\"align-items:center\"]],[false,{\".difference_slice div:first-child h3\":false},[\"text-align:left\",\"color:#152649\",\"font-size:32px\",\"font-weight:bold\",\"line-height:40px\"]],[false,{\".difference_slice div:last-child p\":false},[\"text-align:left\",\"color:#434343\",\"font-size:18px\",\"line-height:30px\"]],[false,{\".trusted-relationships\":false},[\"background-color:#f1f1f1\",\"padding-bottom:200px\"]],[false,{\".trusted-relationships h2\":false},[\"margin-top:156px\",\"margin-bottom:80px\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".btn-relationship\":false},[\"position:absolute\",\"margin:0\",\"margin-top:-35px\",\"background-color:#00c3fc\",\"border-radius:30px\",\"padding:25px 38px\",\"color:var(--main_color)\",\"width:auto\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\",\"display:inline\",\"left:0\",\"z-index:1\"]],[false,{\".card\":false},[\"background-color:transparent\",\"border-color:transparent\"]],[false,{\".card:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:20px\"]],[false,{\".card h3\":false},[\"cursor:pointer\",\"font-size:18px\",\"font-weight:bold\"]],[false,{\".card amp-img\":false,\".card amp-anim\":false},[\"width:24px\",\"height:24px\",\"margin:0px\",\"margin-top:2px\"]],[false,{\".card i\":false},[\"color:#24c1ff\",\"font-size:medium\",\"margin-left:10px\",\"margin-top:5px\",\"display:none\"]],[false,{\"#enterprise_and_fastest_content\":false},[\"position:absolute\",\"width:100%\"]],[false,{\"#enterprise_and_fastest_content:not(#_#_#_#_#_#_#_)\":false},[\"top:-130px\"]],[false,{\"#enterprise_and_fastest_content div\":false},[\"min-height:150px\",\"border-radius:24px\",\"display:flex\",\"justify-content:center\",\"padding:48px\"]],[false,{\"#enterprise_and_fastest_content div:first-child\":false},[\"background-color:#152649\",\"color:#24c1ff\"]],[false,{\"#enterprise_and_fastest_content div:first-child p\":false},[\"color:#24c1ff\",\"text-align:center\",\"font-size:24px\",\"font-weight:bold\",\"line-height:36px\"]],[false,{\"#enterprise_and_fastest_content div:nth-child(2) h2\":false},[\"font-size:50px\",\"line-height:50px\"]],[false,{\"#enterprise_and_fastest_content div:last-child\":false},[\"background-color:#f5f5f5\",\"box-shadow:rgba(0,0,0,.45) 0px 25px 20px -20px\",\"display:flex\",\"flex-direction:column\",\"justify-content:flex-start\"]],[false,{\"#enterprise_and_fastest_content div:last-child p\":false},[\"font-style:italic\",\"color:#707070\",\"text-align:left\",\"font-size:20px\"]],[false,{\"#enterprise_and_fastest_content div:last-child p:last-child\":false},[\"margin:0\",\"font-weight:bold\",\"font-style:normal\"]],[false,{\"#enterprise_and_fastest_content div:last-child amp-img\":false,\"#enterprise_and_fastest_content div:last-child amp-anim\":false},[\"width:40px\",\"height:40px\",\"left:45px\",\"top:-20px\"]],[false,{\".business\":false},[\"box-shadow:inset 0px 11px 8px -10px rgba(0,0,0,.1),inset 0px -11px 8px -10px rgba(0,0,0,.1)\"]],[false,{\".business-content\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\",\"align-items:center\",\"padding:50px 0px\",\"position:relative\"]],[false,{\".business-content a\":false},[\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:40px\",\"float:right\"]],[false,{\".business-content h2\":false},[\"text-align:center\",\"margin-bottom:0\",\"font-family:Raleway\",\"font-weight:bold\",\"font-size:50px\",\"line-height:50px\"]],[false,\"@media screen and (max-width: 992px){\"],[false,{\".card i\":false},[\"display:block\"]],[false,{\".card > div:last-child\":false},[\"display:none\"]],[false,{\".card\":false},[\"border-top:1px solid rgba(138,138,138,.34)\",\"padding:30px 0px 15px 0px\",\"border-radius:0\"]],[false,{\".business a\":false},[\"position:absolute\",\"bottom:-40px\",\"left:0\",\"right:0\",\"margin-left:auto\",\"margin-right:auto\",\"text-align:center\",\"width:306px\"]],[false,{\".btn-relationship\":false},[\"left:50%\",\"transform:translate(-50%,0%)\",\"white-space:nowrap\"]],[false,{\".business-content\":false},[\"flex-direction:column\"]],[false,\"}\"],[false,{\".selected\":false},[\"background-color:white\",\"border:none\"]],[false,{\".selected:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--main_color)\"]],[false,{\"#container\":false},[\"position:relative\",\"overflow:hidden\",\"clear:left\",\"padding:50px 0px\"]],[false,{\".box\":false},[\"position:absolute\",\"top:0\",\"left:0\"]],[false,{\"#first\":false},[\"top:0px\",\"left:0px\",\"width:100%\",\"display:flex\"]],[false,{\"#second\":false},[\"top:0px\",\"width:100%\"]],[false,{\"#third\":false},[\"top:0px\",\"width:100%\"]],[false,{\"#slide\":false},[\"transition:transform .5s ease-in-out 0s\",\"-moz-transition:-moz-transform .5s ease-in-out 0s\",\"-webkit-transition:-webkit-transform .5s ease-in-out 0s\",\"min-height:50px\"]],[false,{\".move-to-second\":false},[\"transform:translateX(var(--tab_second))\",\"-moz-transform:translateX(var(--tab_second))\",\"-webkit-transform:translateX(var(--tab_second))\"]],[false,{\".move-to-third\":false},[\"transform:translateX(var(--tab_third))\",\"-moz-transform:translateX(var(--tab_third))\",\"-webkit-transform:translateX(var(--tab_third))\"]],[false,{\".move-to-first\":false},[\"transform:translateX(0px)\",\"-moz-transform:translateX(0px)\",\"-webkit-transform:translateX(0px)\"]],[false,{\".machine_future_title h2\":false,\".machine_future_title span\":false,\".machine_future_title p\":false},[\"font-size:50px\"]],[false,\"@media screen and (max-width: 540px){\"],[false,{\".machine_text\":false},[\"width:100%\"]],[false,{\".difference_slice\":false},[\"padding:0px 20px\"]],[false,{\".first_solution > div\":false,\".second_solution > div\":false,\".last_solution > div\":false},[\"margin-bottom:0\"]],[false,{\"#third\":false},[\"padding:20px\"]],[false,{\"#first\":false,\"#second\":false,\"#third\":false},[\"background-color:#f1f1f1\",\"border-radius:24px\",\"box-shadow:rgba(0,0,0,.45) 0px 25px 20px -20px\"]],[false,{\"#first:not(#_#_#_#_#_#_#_)\":false,\"#second:not(#_#_#_#_#_#_#_)\":false,\"#third:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".service-machine-selection > a\":false},[\"font-size:17px\"]],[false,{\"#container\":false},[\"padding-top:15px\"]],[false,{\".btn-consultation\":false},[\"padding:25px 25px\"]],[false,{\".machine_future_title h2\":false,\".machine_future_title span\":false,\".machine_future_title p\":false},[\"font-size:45px\"]],[false,\"}\"],[false,\"@media screen and (min-width: 1440px){\"],[false,{\".containerWidth\":false},[\"max-width:1232px\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media screen and (min-width: 1440px){\"],[false,{\".containerWidth\":false},[\"max-width:1220px\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media screen and (max-width: 1439px){\"],[false,{\".containerWidth\":false},[\"max-width:calc(100vw * .87692307692)\",\"margin:0px auto\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1776,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"type\":\"text\\/css\",\"href\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/slick-carousel@1.8.1\\/slick\\/slick.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"503d87b8e892b897f5d05df814fbc0c4\",\"parse_time\":0.008713960647583008,\"shake_time\":6.604194641113281e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".slick-slider\":false},[\"position:relative\",\"display:block\",\"box-sizing:border-box\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\",\"-webkit-touch-callout:none\",\"-khtml-user-select:none\",\"-ms-touch-action:pan-y\",\"touch-action:pan-y\",\"-webkit-tap-highlight-color:transparent\"]],[false,{\".slick-list\":false},[\"position:relative\",\"display:block\",\"overflow:hidden\",\"margin:0\",\"padding:0\"]],[false,{\".slick-list:focus\":false},[\"outline:none\"]],[false,{\".slick-list.dragging\":false},[\"cursor:pointer\",\"cursor:hand\"]],[false,{\".slick-slider .slick-track\":false,\".slick-slider .slick-list\":false},[\"-webkit-transform:translate3d(0,0,0)\",\"-moz-transform:translate3d(0,0,0)\",\"-ms-transform:translate3d(0,0,0)\",\"-o-transform:translate3d(0,0,0)\",\"transform:translate3d(0,0,0)\"]],[false,{\".slick-track\":false},[\"position:relative\",\"top:0\",\"left:0\",\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".slick-track:before\":false,\".slick-track:after\":false},[\"display:table\",\"content:\\\"\\\"\"]],[false,{\".slick-track:after\":false},[\"clear:both\"]],[false,{\".slick-loading .slick-track\":false},[\"visibility:hidden\"]],[false,{\".slick-slide\":false},[\"display:none\",\"float:left\",\"height:100%\",\"min-height:1px\"]],[false,{\"[dir=\'rtl\'] .slick-slide\":false},[\"float:right\"]],[false,{\".slick-slide amp-img\":false,\".slick-slide amp-anim\":false},[\"display:block\"]],[false,{\".slick-slide.slick-loading amp-img\":false,\".slick-slide.slick-loading amp-anim\":false},[\"display:none\"]],[false,{\".slick-slide.dragging amp-img\":false,\".slick-slide.dragging amp-anim\":false},[\"pointer-events:none\"]],[false,{\".slick-initialized .slick-slide\":false},[\"display:block\"]],[false,{\".slick-loading .slick-slide\":false},[\"visibility:hidden\"]],[false,{\".slick-vertical .slick-slide\":false},[\"display:block\",\"height:auto\",\"border:1px solid transparent\"]],[false,{\".slick-arrow.slick-hidden\":false},[\"display:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":100701,\"final_size\":8288,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/css\\/all.min.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"2b9f797b620fd0348167564267b11933\",\"parse_time\":2.5145909786224365,\"shake_time\":0.03909707069396973,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-v4compatibility.woff2\"],\"shaken_tokens\":[[false,{\".fa\":false},[\"font-family:var(--fa-style-family,\\\"Font Awesome 6 Free\\\")\",\"font-weight:var(--fa-style,900)\"]],[false,{\".fa\":false,\".fa-brands\":false,\".fa-duotone\":false,\".fa-light\":false,\".fa-regular\":false,\".fa-solid\":false,\".fa-thin\":false,\".fab\":false,\".fad\":false,\".fal\":false,\".far\":false,\".fas\":false,\".fat\":false},[\"-moz-osx-font-smoothing:grayscale\",\"-webkit-font-smoothing:antialiased\",\"display:var(--fa-display,inline-block)\",\"font-style:normal\",\"font-variant:normal\",\"line-height:1\",\"text-rendering:auto\"]],[false,{\".fa-1x\":false},[\"font-size:1em\"]],[false,{\".fa-2x\":false},[\"font-size:2em\"]],[false,{\".fa-3x\":false},[\"font-size:3em\"]],[false,{\".fa-4x\":false},[\"font-size:4em\"]],[false,{\".fa-5x\":false},[\"font-size:5em\"]],[false,{\".fa-6x\":false},[\"font-size:6em\"]],[false,{\".fa-7x\":false},[\"font-size:7em\"]],[false,{\".fa-8x\":false},[\"font-size:8em\"]],[false,{\".fa-9x\":false},[\"font-size:9em\"]],[false,{\".fa-10x\":false},[\"font-size:10em\"]],[false,{\".fa-2xs\":false},[\"font-size:.625em\",\"line-height:.1em\",\"vertical-align:.225em\"]],[false,{\".fa-xs\":false},[\"font-size:.75em\",\"line-height:.08333em\",\"vertical-align:.125em\"]],[false,{\".fa-sm\":false},[\"font-size:.875em\",\"line-height:.07143em\",\"vertical-align:.05357em\"]],[false,{\".fa-lg\":false},[\"font-size:1.25em\",\"line-height:.05em\",\"vertical-align:-.075em\"]],[false,{\".fa-xl\":false},[\"font-size:1.5em\",\"line-height:.04167em\",\"vertical-align:-.125em\"]],[false,{\".fa-2xl\":false},[\"font-size:2em\",\"line-height:.03125em\",\"vertical-align:-.1875em\"]],[false,{\".fa-fw\":false},[\"text-align:center\",\"width:1.25em\"]],[false,{\".fa-ul\":false},[\"list-style-type:none\",\"margin-left:var(--fa-li-margin,2.5em)\",\"padding-left:0\"]],[false,{\".fa-ul>li\":false},[\"position:relative\"]],[false,{\".fa-li\":false},[\"left:calc(var(--fa-li-width,2em) * -1)\",\"position:absolute\",\"text-align:center\",\"width:var(--fa-li-width,2em)\",\"line-height:inherit\"]],[false,{\".fa-border\":false},[\"border-radius:var(--fa-border-radius,.1em)\",\"border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee)\",\"padding:var(--fa-border-padding,.2em .25em .15em)\"]],[false,{\".fa-pull-left\":false},[\"float:left\",\"margin-right:var(--fa-pull-margin,.3em)\"]],[false,{\".fa-pull-right\":false},[\"float:right\",\"margin-left:var(--fa-pull-margin,.3em)\"]],[false,{\".fa-beat\":false},[\"-webkit-animation-name:fa-beat\",\"animation-name:fa-beat\",\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out)\",\"animation-timing-function:var(--fa-animation-timing,ease-in-out)\"]],[false,{\".fa-bounce\":false},[\"-webkit-animation-name:fa-bounce\",\"animation-name:fa-bounce\",\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))\",\"animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))\"]],[false,{\".fa-fade\":false},[\"-webkit-animation-name:fa-fade\",\"animation-name:fa-fade\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\",\"animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\"]],[false,{\".fa-beat-fade\":false,\".fa-fade\":false},[\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\"]],[false,{\".fa-beat-fade\":false},[\"-webkit-animation-name:fa-beat-fade\",\"animation-name:fa-beat-fade\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\",\"animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\"]],[false,{\".fa-flip\":false},[\"-webkit-animation-name:fa-flip\",\"animation-name:fa-flip\",\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out)\",\"animation-timing-function:var(--fa-animation-timing,ease-in-out)\"]],[false,{\".fa-shake\":false},[\"-webkit-animation-name:fa-shake\",\"animation-name:fa-shake\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,linear)\",\"animation-timing-function:var(--fa-animation-timing,linear)\"]],[false,{\".fa-shake\":false,\".fa-spin\":false},[\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\"]],[false,{\".fa-spin\":false},[\"-webkit-animation-name:fa-spin\",\"animation-name:fa-spin\",\"-webkit-animation-duration:var(--fa-animation-duration,2s)\",\"animation-duration:var(--fa-animation-duration,2s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,linear)\",\"animation-timing-function:var(--fa-animation-timing,linear)\"]],[false,{\".fa-spin-reverse\":false},[\"--fa-animation-direction:reverse\"]],[false,{\".fa-pulse\":false,\".fa-spin-pulse\":false},[\"-webkit-animation-name:fa-spin\",\"animation-name:fa-spin\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,steps(8))\",\"animation-timing-function:var(--fa-animation-timing,steps(8))\"]],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".fa-beat\":false,\".fa-beat-fade\":false,\".fa-bounce\":false,\".fa-fade\":false,\".fa-flip\":false,\".fa-pulse\":false,\".fa-shake\":false,\".fa-spin\":false,\".fa-spin-pulse\":false},[\"-webkit-animation-delay:-1ms\",\"animation-delay:-1ms\",\"-webkit-animation-duration:1ms\",\"animation-duration:1ms\",\"-webkit-animation-iteration-count:1\",\"animation-iteration-count:1\",\"transition-delay:0s\",\"transition-duration:0s\"]],[false,\"}\"],[true,\"@-webkit-keyframes fa-beat{\"],[true,\"0%,90%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}\"],[true,\"}@keyframes fa-beat{\"],[true,\"0%,90%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}\"],[true,\"}@-webkit-keyframes fa-bounce{\"],[true,\"0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}\"],[true,\"30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}\"],[true,\"50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}\"],[true,\"57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}\"],[true,\"64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"}@keyframes fa-bounce{\"],[true,\"0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}\"],[true,\"30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}\"],[true,\"50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}\"],[true,\"57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}\"],[true,\"64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"}@-webkit-keyframes fa-fade{\"],[true,\"50%{opacity:var(--fa-fade-opacity,.4)}\"],[true,\"}@keyframes fa-fade{\"],[true,\"50%{opacity:var(--fa-fade-opacity,.4)}\"],[true,\"}@-webkit-keyframes fa-beat-fade{\"],[true,\"0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}\"],[true,\"}@keyframes fa-beat-fade{\"],[true,\"0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}\"],[true,\"}@-webkit-keyframes fa-flip{\"],[true,\"50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}\"],[true,\"}@keyframes fa-flip{\"],[true,\"50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}\"],[true,\"}@-webkit-keyframes fa-shake{\"],[true,\"0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}\"],[true,\"4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}\"],[true,\"12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}\"],[true,\"16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}\"],[true,\"20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}\"],[true,\"32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}\"],[true,\"36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}\"],[true,\"40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}@keyframes fa-shake{\"],[true,\"0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}\"],[true,\"4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}\"],[true,\"12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}\"],[true,\"16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}\"],[true,\"20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}\"],[true,\"32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}\"],[true,\"36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}\"],[true,\"40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}@-webkit-keyframes fa-spin{\"],[true,\"0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}\"],[true,\"}@keyframes fa-spin{\"],[true,\"0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}\"],[true,\"}\"],[false,{\".fa-rotate-90\":false},[\"-webkit-transform:rotate(90deg)\",\"transform:rotate(90deg)\"]],[false,{\".fa-rotate-180\":false},[\"-webkit-transform:rotate(180deg)\",\"transform:rotate(180deg)\"]],[false,{\".fa-rotate-270\":false},[\"-webkit-transform:rotate(270deg)\",\"transform:rotate(270deg)\"]],[false,{\".fa-flip-horizontal\":false},[\"-webkit-transform:scaleX(-1)\",\"transform:scaleX(-1)\"]],[false,{\".fa-flip-vertical\":false},[\"-webkit-transform:scaleY(-1)\",\"transform:scaleY(-1)\"]],[false,{\".fa-flip-both\":false,\".fa-flip-horizontal.fa-flip-vertical\":false},[\"-webkit-transform:scale(-1)\",\"transform:scale(-1)\"]],[false,{\".fa-rotate-by\":false},[\"-webkit-transform:rotate(var(--fa-rotate-angle,none))\",\"transform:rotate(var(--fa-rotate-angle,none))\"]],[false,{\".fa-stack\":false},[\"display:inline-block\",\"height:2em\",\"line-height:2em\",\"position:relative\",\"vertical-align:middle\",\"width:2.5em\"]],[false,{\".fa-stack-1x\":false,\".fa-stack-2x\":false},[\"left:0\",\"position:absolute\",\"text-align:center\",\"width:100%\",\"z-index:var(--fa-stack-z-index,auto)\"]],[false,{\".fa-stack-1x\":false},[\"line-height:inherit\"]],[false,{\".fa-stack-2x\":false},[\"font-size:2em\"]],[false,{\".fa-inverse\":false},[\"color:var(--fa-inverse,#fff)\"]],[false,{\".fa-0:before\":false},[\"content:\\\"0\\\"\"]],[false,{\".fa-1:before\":false},[\"content:\\\"1\\\"\"]],[false,{\".fa-2:before\":false},[\"content:\\\"2\\\"\"]],[false,{\".fa-3:before\":false},[\"content:\\\"3\\\"\"]],[false,{\".fa-4:before\":false},[\"content:\\\"4\\\"\"]],[false,{\".fa-5:before\":false},[\"content:\\\"5\\\"\"]],[false,{\".fa-6:before\":false},[\"content:\\\"6\\\"\"]],[false,{\".fa-7:before\":false},[\"content:\\\"7\\\"\"]],[false,{\".fa-8:before\":false},[\"content:\\\"8\\\"\"]],[false,{\".fa-9:before\":false},[\"content:\\\"9\\\"\"]],[false,{\".fa-a:before\":false},[\"content:\\\"A\\\"\"]],[false,{\".fa-address-book:before\":false,\".fa-contact-book:before\":false},[\"content:\\\"\\uf2b9\\\"\"]],[false,{\".fa-address-card:before\":false,\".fa-contact-card:before\":false,\".fa-vcard:before\":false},[\"content:\\\"\\uf2bb\\\"\"]],[false,{\".fa-align-center:before\":false},[\"content:\\\"\\uf037\\\"\"]],[false,{\".fa-align-justify:before\":false},[\"content:\\\"\\uf039\\\"\"]],[false,{\".fa-align-left:before\":false},[\"content:\\\"\\uf036\\\"\"]],[false,{\".fa-align-right:before\":false},[\"content:\\\"\\uf038\\\"\"]],[false,{\".fa-anchor:before\":false},[\"content:\\\"\\uf13d\\\"\"]],[false,{\".fa-anchor-circle-check:before\":false},[\"content:\\\"\\ue4aa\\\"\"]],[false,{\".fa-anchor-circle-exclamation:before\":false},[\"content:\\\"\\ue4ab\\\"\"]],[false,{\".fa-anchor-circle-xmark:before\":false},[\"content:\\\"\\ue4ac\\\"\"]],[false,{\".fa-anchor-lock:before\":false},[\"content:\\\"\\ue4ad\\\"\"]],[false,{\".fa-angle-down:before\":false},[\"content:\\\"\\uf107\\\"\"]],[false,{\".fa-angle-left:before\":false},[\"content:\\\"\\uf104\\\"\"]],[false,{\".fa-angle-right:before\":false},[\"content:\\\"\\uf105\\\"\"]],[false,{\".fa-angle-up:before\":false},[\"content:\\\"\\uf106\\\"\"]],[false,{\".fa-angle-double-down:before\":false,\".fa-angles-down:before\":false},[\"content:\\\"\\uf103\\\"\"]],[false,{\".fa-angle-double-left:before\":false,\".fa-angles-left:before\":false},[\"content:\\\"\\uf100\\\"\"]],[false,{\".fa-angle-double-right:before\":false,\".fa-angles-right:before\":false},[\"content:\\\"\\uf101\\\"\"]],[false,{\".fa-angle-double-up:before\":false,\".fa-angles-up:before\":false},[\"content:\\\"\\uf102\\\"\"]],[false,{\".fa-ankh:before\":false},[\"content:\\\"\\uf644\\\"\"]],[false,{\".fa-apple-alt:before\":false,\".fa-apple-whole:before\":false},[\"content:\\\"\\uf5d1\\\"\"]],[false,{\".fa-archway:before\":false},[\"content:\\\"\\uf557\\\"\"]],[false,{\".fa-arrow-down:before\":false},[\"content:\\\"\\uf063\\\"\"]],[false,{\".fa-arrow-down-1-9:before\":false,\".fa-sort-numeric-asc:before\":false,\".fa-sort-numeric-down:before\":false},[\"content:\\\"\\uf162\\\"\"]],[false,{\".fa-arrow-down-9-1:before\":false,\".fa-sort-numeric-desc:before\":false,\".fa-sort-numeric-down-alt:before\":false},[\"content:\\\"\\uf886\\\"\"]],[false,{\".fa-arrow-down-a-z:before\":false,\".fa-sort-alpha-asc:before\":false,\".fa-sort-alpha-down:before\":false},[\"content:\\\"\\uf15d\\\"\"]],[false,{\".fa-arrow-down-long:before\":false,\".fa-long-arrow-down:before\":false},[\"content:\\\"\\uf175\\\"\"]],[false,{\".fa-arrow-down-short-wide:before\":false,\".fa-sort-amount-desc:before\":false,\".fa-sort-amount-down-alt:before\":false},[\"content:\\\"\\uf884\\\"\"]],[false,{\".fa-arrow-down-up-across-line:before\":false},[\"content:\\\"\\ue4af\\\"\"]],[false,{\".fa-arrow-down-up-lock:before\":false},[\"content:\\\"\\ue4b0\\\"\"]],[false,{\".fa-arrow-down-wide-short:before\":false,\".fa-sort-amount-asc:before\":false,\".fa-sort-amount-down:before\":false},[\"content:\\\"\\uf160\\\"\"]],[false,{\".fa-arrow-down-z-a:before\":false,\".fa-sort-alpha-desc:before\":false,\".fa-sort-alpha-down-alt:before\":false},[\"content:\\\"\\uf881\\\"\"]],[false,{\".fa-arrow-left:before\":false},[\"content:\\\"\\uf060\\\"\"]],[false,{\".fa-arrow-left-long:before\":false,\".fa-long-arrow-left:before\":false},[\"content:\\\"\\uf177\\\"\"]],[false,{\".fa-arrow-pointer:before\":false,\".fa-mouse-pointer:before\":false},[\"content:\\\"\\uf245\\\"\"]],[false,{\".fa-arrow-right:before\":false},[\"content:\\\"\\uf061\\\"\"]],[false,{\".fa-arrow-right-arrow-left:before\":false,\".fa-exchange:before\":false},[\"content:\\\"\\uf0ec\\\"\"]],[false,{\".fa-arrow-right-from-bracket:before\":false,\".fa-sign-out:before\":false},[\"content:\\\"\\uf08b\\\"\"]],[false,{\".fa-arrow-right-long:before\":false,\".fa-long-arrow-right:before\":false},[\"content:\\\"\\uf178\\\"\"]],[false,{\".fa-arrow-right-to-bracket:before\":false,\".fa-sign-in:before\":false},[\"content:\\\"\\uf090\\\"\"]],[false,{\".fa-arrow-right-to-city:before\":false},[\"content:\\\"\\ue4b3\\\"\"]],[false,{\".fa-arrow-left-rotate:before\":false,\".fa-arrow-rotate-back:before\":false,\".fa-arrow-rotate-backward:before\":false,\".fa-arrow-rotate-left:before\":false,\".fa-undo:before\":false},[\"content:\\\"\\uf0e2\\\"\"]],[false,{\".fa-arrow-right-rotate:before\":false,\".fa-arrow-rotate-forward:before\":false,\".fa-arrow-rotate-right:before\":false,\".fa-redo:before\":false},[\"content:\\\"\\uf01e\\\"\"]],[false,{\".fa-arrow-trend-down:before\":false},[\"content:\\\"\\ue097\\\"\"]],[false,{\".fa-arrow-trend-up:before\":false},[\"content:\\\"\\ue098\\\"\"]],[false,{\".fa-arrow-turn-down:before\":false,\".fa-level-down:before\":false},[\"content:\\\"\\uf149\\\"\"]],[false,{\".fa-arrow-turn-up:before\":false,\".fa-level-up:before\":false},[\"content:\\\"\\uf148\\\"\"]],[false,{\".fa-arrow-up:before\":false},[\"content:\\\"\\uf062\\\"\"]],[false,{\".fa-arrow-up-1-9:before\":false,\".fa-sort-numeric-up:before\":false},[\"content:\\\"\\uf163\\\"\"]],[false,{\".fa-arrow-up-9-1:before\":false,\".fa-sort-numeric-up-alt:before\":false},[\"content:\\\"\\uf887\\\"\"]],[false,{\".fa-arrow-up-a-z:before\":false,\".fa-sort-alpha-up:before\":false},[\"content:\\\"\\uf15e\\\"\"]],[false,{\".fa-arrow-up-from-bracket:before\":false},[\"content:\\\"\\ue09a\\\"\"]],[false,{\".fa-arrow-up-from-ground-water:before\":false},[\"content:\\\"\\ue4b5\\\"\"]],[false,{\".fa-arrow-up-from-water-pump:before\":false},[\"content:\\\"\\ue4b6\\\"\"]],[false,{\".fa-arrow-up-long:before\":false,\".fa-long-arrow-up:before\":false},[\"content:\\\"\\uf176\\\"\"]],[false,{\".fa-arrow-up-right-dots:before\":false},[\"content:\\\"\\ue4b7\\\"\"]],[false,{\".fa-arrow-up-right-from-square:before\":false,\".fa-external-link:before\":false},[\"content:\\\"\\uf08e\\\"\"]],[false,{\".fa-arrow-up-short-wide:before\":false,\".fa-sort-amount-up-alt:before\":false},[\"content:\\\"\\uf885\\\"\"]],[false,{\".fa-arrow-up-wide-short:before\":false,\".fa-sort-amount-up:before\":false},[\"content:\\\"\\uf161\\\"\"]],[false,{\".fa-arrow-up-z-a:before\":false,\".fa-sort-alpha-up-alt:before\":false},[\"content:\\\"\\uf882\\\"\"]],[false,{\".fa-arrows-down-to-line:before\":false},[\"content:\\\"\\ue4b8\\\"\"]],[false,{\".fa-arrows-down-to-people:before\":false},[\"content:\\\"\\ue4b9\\\"\"]],[false,{\".fa-arrows-h:before\":false,\".fa-arrows-left-right:before\":false},[\"content:\\\"\\uf07e\\\"\"]],[false,{\".fa-arrows-left-right-to-line:before\":false},[\"content:\\\"\\ue4ba\\\"\"]],[false,{\".fa-arrows-rotate:before\":false,\".fa-refresh:before\":false,\".fa-sync:before\":false},[\"content:\\\"\\uf021\\\"\"]],[false,{\".fa-arrows-spin:before\":false},[\"content:\\\"\\ue4bb\\\"\"]],[false,{\".fa-arrows-split-up-and-left:before\":false},[\"content:\\\"\\ue4bc\\\"\"]],[false,{\".fa-arrows-to-circle:before\":false},[\"content:\\\"\\ue4bd\\\"\"]],[false,{\".fa-arrows-to-dot:before\":false},[\"content:\\\"\\ue4be\\\"\"]],[false,{\".fa-arrows-to-eye:before\":false},[\"content:\\\"\\ue4bf\\\"\"]],[false,{\".fa-arrows-turn-right:before\":false},[\"content:\\\"\\ue4c0\\\"\"]],[false,{\".fa-arrows-turn-to-dots:before\":false},[\"content:\\\"\\ue4c1\\\"\"]],[false,{\".fa-arrows-up-down:before\":false,\".fa-arrows-v:before\":false},[\"content:\\\"\\uf07d\\\"\"]],[false,{\".fa-arrows-up-down-left-right:before\":false,\".fa-arrows:before\":false},[\"content:\\\"\\uf047\\\"\"]],[false,{\".fa-arrows-up-to-line:before\":false},[\"content:\\\"\\ue4c2\\\"\"]],[false,{\".fa-asterisk:before\":false},[\"content:\\\"*\\\"\"]],[false,{\".fa-at:before\":false},[\"content:\\\"@\\\"\"]],[false,{\".fa-atom:before\":false},[\"content:\\\"\\uf5d2\\\"\"]],[false,{\".fa-audio-description:before\":false},[\"content:\\\"\\uf29e\\\"\"]],[false,{\".fa-austral-sign:before\":false},[\"content:\\\"\\ue0a9\\\"\"]],[false,{\".fa-award:before\":false},[\"content:\\\"\\uf559\\\"\"]],[false,{\".fa-b:before\":false},[\"content:\\\"B\\\"\"]],[false,{\".fa-baby:before\":false},[\"content:\\\"\\uf77c\\\"\"]],[false,{\".fa-baby-carriage:before\":false,\".fa-carriage-baby:before\":false},[\"content:\\\"\\uf77d\\\"\"]],[false,{\".fa-backward:before\":false},[\"content:\\\"\\uf04a\\\"\"]],[false,{\".fa-backward-fast:before\":false,\".fa-fast-backward:before\":false},[\"content:\\\"\\uf049\\\"\"]],[false,{\".fa-backward-step:before\":false,\".fa-step-backward:before\":false},[\"content:\\\"\\uf048\\\"\"]],[false,{\".fa-bacon:before\":false},[\"content:\\\"\\uf7e5\\\"\"]],[false,{\".fa-bacteria:before\":false},[\"content:\\\"\\ue059\\\"\"]],[false,{\".fa-bacterium:before\":false},[\"content:\\\"\\ue05a\\\"\"]],[false,{\".fa-bag-shopping:before\":false,\".fa-shopping-bag:before\":false},[\"content:\\\"\\uf290\\\"\"]],[false,{\".fa-bahai:before\":false},[\"content:\\\"\\uf666\\\"\"]],[false,{\".fa-baht-sign:before\":false},[\"content:\\\"\\ue0ac\\\"\"]],[false,{\".fa-ban:before\":false,\".fa-cancel:before\":false},[\"content:\\\"\\uf05e\\\"\"]],[false,{\".fa-ban-smoking:before\":false,\".fa-smoking-ban:before\":false},[\"content:\\\"\\uf54d\\\"\"]],[false,{\".fa-band-aid:before\":false,\".fa-bandage:before\":false},[\"content:\\\"\\uf462\\\"\"]],[false,{\".fa-barcode:before\":false},[\"content:\\\"\\uf02a\\\"\"]],[false,{\".fa-bars:before\":false,\".fa-navicon:before\":false},[\"content:\\\"\\uf0c9\\\"\"]],[false,{\".fa-bars-progress:before\":false,\".fa-tasks-alt:before\":false},[\"content:\\\"\\uf828\\\"\"]],[false,{\".fa-bars-staggered:before\":false,\".fa-reorder:before\":false,\".fa-stream:before\":false},[\"content:\\\"\\uf550\\\"\"]],[false,{\".fa-baseball-ball:before\":false,\".fa-baseball:before\":false},[\"content:\\\"\\uf433\\\"\"]],[false,{\".fa-baseball-bat-ball:before\":false},[\"content:\\\"\\uf432\\\"\"]],[false,{\".fa-basket-shopping:before\":false,\".fa-shopping-basket:before\":false},[\"content:\\\"\\uf291\\\"\"]],[false,{\".fa-basketball-ball:before\":false,\".fa-basketball:before\":false},[\"content:\\\"\\uf434\\\"\"]],[false,{\".fa-bath:before\":false,\".fa-bathtub:before\":false},[\"content:\\\"\\uf2cd\\\"\"]],[false,{\".fa-battery-0:before\":false,\".fa-battery-empty:before\":false},[\"content:\\\"\\uf244\\\"\"]],[false,{\".fa-battery-5:before\":false,\".fa-battery-full:before\":false,\".fa-battery:before\":false},[\"content:\\\"\\uf240\\\"\"]],[false,{\".fa-battery-3:before\":false,\".fa-battery-half:before\":false},[\"content:\\\"\\uf242\\\"\"]],[false,{\".fa-battery-2:before\":false,\".fa-battery-quarter:before\":false},[\"content:\\\"\\uf243\\\"\"]],[false,{\".fa-battery-4:before\":false,\".fa-battery-three-quarters:before\":false},[\"content:\\\"\\uf241\\\"\"]],[false,{\".fa-bed:before\":false},[\"content:\\\"\\uf236\\\"\"]],[false,{\".fa-bed-pulse:before\":false,\".fa-procedures:before\":false},[\"content:\\\"\\uf487\\\"\"]],[false,{\".fa-beer-mug-empty:before\":false,\".fa-beer:before\":false},[\"content:\\\"\\uf0fc\\\"\"]],[false,{\".fa-bell:before\":false},[\"content:\\\"\\uf0f3\\\"\"]],[false,{\".fa-bell-concierge:before\":false,\".fa-concierge-bell:before\":false},[\"content:\\\"\\uf562\\\"\"]],[false,{\".fa-bell-slash:before\":false},[\"content:\\\"\\uf1f6\\\"\"]],[false,{\".fa-bezier-curve:before\":false},[\"content:\\\"\\uf55b\\\"\"]],[false,{\".fa-bicycle:before\":false},[\"content:\\\"\\uf206\\\"\"]],[false,{\".fa-binoculars:before\":false},[\"content:\\\"\\uf1e5\\\"\"]],[false,{\".fa-biohazard:before\":false},[\"content:\\\"\\uf780\\\"\"]],[false,{\".fa-bitcoin-sign:before\":false},[\"content:\\\"\\ue0b4\\\"\"]],[false,{\".fa-blender:before\":false},[\"content:\\\"\\uf517\\\"\"]],[false,{\".fa-blender-phone:before\":false},[\"content:\\\"\\uf6b6\\\"\"]],[false,{\".fa-blog:before\":false},[\"content:\\\"\\uf781\\\"\"]],[false,{\".fa-bold:before\":false},[\"content:\\\"\\uf032\\\"\"]],[false,{\".fa-bolt:before\":false,\".fa-zap:before\":false},[\"content:\\\"\\uf0e7\\\"\"]],[false,{\".fa-bolt-lightning:before\":false},[\"content:\\\"\\ue0b7\\\"\"]],[false,{\".fa-bomb:before\":false},[\"content:\\\"\\uf1e2\\\"\"]],[false,{\".fa-bone:before\":false},[\"content:\\\"\\uf5d7\\\"\"]],[false,{\".fa-bong:before\":false},[\"content:\\\"\\uf55c\\\"\"]],[false,{\".fa-book:before\":false},[\"content:\\\"\\uf02d\\\"\"]],[false,{\".fa-atlas:before\":false,\".fa-book-atlas:before\":false},[\"content:\\\"\\uf558\\\"\"]],[false,{\".fa-bible:before\":false,\".fa-book-bible:before\":false},[\"content:\\\"\\uf647\\\"\"]],[false,{\".fa-book-bookmark:before\":false},[\"content:\\\"\\ue0bb\\\"\"]],[false,{\".fa-book-journal-whills:before\":false,\".fa-journal-whills:before\":false},[\"content:\\\"\\uf66a\\\"\"]],[false,{\".fa-book-medical:before\":false},[\"content:\\\"\\uf7e6\\\"\"]],[false,{\".fa-book-open:before\":false},[\"content:\\\"\\uf518\\\"\"]],[false,{\".fa-book-open-reader:before\":false,\".fa-book-reader:before\":false},[\"content:\\\"\\uf5da\\\"\"]],[false,{\".fa-book-quran:before\":false,\".fa-quran:before\":false},[\"content:\\\"\\uf687\\\"\"]],[false,{\".fa-book-dead:before\":false,\".fa-book-skull:before\":false},[\"content:\\\"\\uf6b7\\\"\"]],[false,{\".fa-bookmark:before\":false},[\"content:\\\"\\uf02e\\\"\"]],[false,{\".fa-border-all:before\":false},[\"content:\\\"\\uf84c\\\"\"]],[false,{\".fa-border-none:before\":false},[\"content:\\\"\\uf850\\\"\"]],[false,{\".fa-border-style:before\":false,\".fa-border-top-left:before\":false},[\"content:\\\"\\uf853\\\"\"]],[false,{\".fa-bore-hole:before\":false},[\"content:\\\"\\ue4c3\\\"\"]],[false,{\".fa-bottle-droplet:before\":false},[\"content:\\\"\\ue4c4\\\"\"]],[false,{\".fa-bottle-water:before\":false},[\"content:\\\"\\ue4c5\\\"\"]],[false,{\".fa-bowl-food:before\":false},[\"content:\\\"\\ue4c6\\\"\"]],[false,{\".fa-bowl-rice:before\":false},[\"content:\\\"\\ue2eb\\\"\"]],[false,{\".fa-bowling-ball:before\":false},[\"content:\\\"\\uf436\\\"\"]],[false,{\".fa-box:before\":false},[\"content:\\\"\\uf466\\\"\"]],[false,{\".fa-archive:before\":false,\".fa-box-archive:before\":false},[\"content:\\\"\\uf187\\\"\"]],[false,{\".fa-box-open:before\":false},[\"content:\\\"\\uf49e\\\"\"]],[false,{\".fa-box-tissue:before\":false},[\"content:\\\"\\ue05b\\\"\"]],[false,{\".fa-boxes-packing:before\":false},[\"content:\\\"\\ue4c7\\\"\"]],[false,{\".fa-boxes-alt:before\":false,\".fa-boxes-stacked:before\":false,\".fa-boxes:before\":false},[\"content:\\\"\\uf468\\\"\"]],[false,{\".fa-braille:before\":false},[\"content:\\\"\\uf2a1\\\"\"]],[false,{\".fa-brain:before\":false},[\"content:\\\"\\uf5dc\\\"\"]],[false,{\".fa-brazilian-real-sign:before\":false},[\"content:\\\"\\ue46c\\\"\"]],[false,{\".fa-bread-slice:before\":false},[\"content:\\\"\\uf7ec\\\"\"]],[false,{\".fa-bridge:before\":false},[\"content:\\\"\\ue4c8\\\"\"]],[false,{\".fa-bridge-circle-check:before\":false},[\"content:\\\"\\ue4c9\\\"\"]],[false,{\".fa-bridge-circle-exclamation:before\":false},[\"content:\\\"\\ue4ca\\\"\"]],[false,{\".fa-bridge-circle-xmark:before\":false},[\"content:\\\"\\ue4cb\\\"\"]],[false,{\".fa-bridge-lock:before\":false},[\"content:\\\"\\ue4cc\\\"\"]],[false,{\".fa-bridge-water:before\":false},[\"content:\\\"\\ue4ce\\\"\"]],[false,{\".fa-briefcase:before\":false},[\"content:\\\"\\uf0b1\\\"\"]],[false,{\".fa-briefcase-medical:before\":false},[\"content:\\\"\\uf469\\\"\"]],[false,{\".fa-broom:before\":false},[\"content:\\\"\\uf51a\\\"\"]],[false,{\".fa-broom-ball:before\":false,\".fa-quidditch-broom-ball:before\":false,\".fa-quidditch:before\":false},[\"content:\\\"\\uf458\\\"\"]],[false,{\".fa-brush:before\":false},[\"content:\\\"\\uf55d\\\"\"]],[false,{\".fa-bucket:before\":false},[\"content:\\\"\\ue4cf\\\"\"]],[false,{\".fa-bug:before\":false},[\"content:\\\"\\uf188\\\"\"]],[false,{\".fa-bug-slash:before\":false},[\"content:\\\"\\ue490\\\"\"]],[false,{\".fa-bugs:before\":false},[\"content:\\\"\\ue4d0\\\"\"]],[false,{\".fa-building:before\":false},[\"content:\\\"\\uf1ad\\\"\"]],[false,{\".fa-building-circle-arrow-right:before\":false},[\"content:\\\"\\ue4d1\\\"\"]],[false,{\".fa-building-circle-check:before\":false},[\"content:\\\"\\ue4d2\\\"\"]],[false,{\".fa-building-circle-exclamation:before\":false},[\"content:\\\"\\ue4d3\\\"\"]],[false,{\".fa-building-circle-xmark:before\":false},[\"content:\\\"\\ue4d4\\\"\"]],[false,{\".fa-bank:before\":false,\".fa-building-columns:before\":false,\".fa-institution:before\":false,\".fa-museum:before\":false,\".fa-university:before\":false},[\"content:\\\"\\uf19c\\\"\"]],[false,{\".fa-building-flag:before\":false},[\"content:\\\"\\ue4d5\\\"\"]],[false,{\".fa-building-lock:before\":false},[\"content:\\\"\\ue4d6\\\"\"]],[false,{\".fa-building-ngo:before\":false},[\"content:\\\"\\ue4d7\\\"\"]],[false,{\".fa-building-shield:before\":false},[\"content:\\\"\\ue4d8\\\"\"]],[false,{\".fa-building-un:before\":false},[\"content:\\\"\\ue4d9\\\"\"]],[false,{\".fa-building-user:before\":false},[\"content:\\\"\\ue4da\\\"\"]],[false,{\".fa-building-wheat:before\":false},[\"content:\\\"\\ue4db\\\"\"]],[false,{\".fa-bullhorn:before\":false},[\"content:\\\"\\uf0a1\\\"\"]],[false,{\".fa-bullseye:before\":false},[\"content:\\\"\\uf140\\\"\"]],[false,{\".fa-burger:before\":false,\".fa-hamburger:before\":false},[\"content:\\\"\\uf805\\\"\"]],[false,{\".fa-burst:before\":false},[\"content:\\\"\\ue4dc\\\"\"]],[false,{\".fa-bus:before\":false},[\"content:\\\"\\uf207\\\"\"]],[false,{\".fa-bus-alt:before\":false,\".fa-bus-simple:before\":false},[\"content:\\\"\\uf55e\\\"\"]],[false,{\".fa-briefcase-clock:before\":false,\".fa-business-time:before\":false},[\"content:\\\"\\uf64a\\\"\"]],[false,{\".fa-c:before\":false},[\"content:\\\"C\\\"\"]],[false,{\".fa-birthday-cake:before\":false,\".fa-cake-candles:before\":false,\".fa-cake:before\":false},[\"content:\\\"\\uf1fd\\\"\"]],[false,{\".fa-calculator:before\":false},[\"content:\\\"\\uf1ec\\\"\"]],[false,{\".fa-calendar:before\":false},[\"content:\\\"\\uf133\\\"\"]],[false,{\".fa-calendar-check:before\":false},[\"content:\\\"\\uf274\\\"\"]],[false,{\".fa-calendar-day:before\":false},[\"content:\\\"\\uf783\\\"\"]],[false,{\".fa-calendar-alt:before\":false,\".fa-calendar-days:before\":false},[\"content:\\\"\\uf073\\\"\"]],[false,{\".fa-calendar-minus:before\":false},[\"content:\\\"\\uf272\\\"\"]],[false,{\".fa-calendar-plus:before\":false},[\"content:\\\"\\uf271\\\"\"]],[false,{\".fa-calendar-week:before\":false},[\"content:\\\"\\uf784\\\"\"]],[false,{\".fa-calendar-times:before\":false,\".fa-calendar-xmark:before\":false},[\"content:\\\"\\uf273\\\"\"]],[false,{\".fa-camera-alt:before\":false,\".fa-camera:before\":false},[\"content:\\\"\\uf030\\\"\"]],[false,{\".fa-camera-retro:before\":false},[\"content:\\\"\\uf083\\\"\"]],[false,{\".fa-camera-rotate:before\":false},[\"content:\\\"\\ue0d8\\\"\"]],[false,{\".fa-campground:before\":false},[\"content:\\\"\\uf6bb\\\"\"]],[false,{\".fa-candy-cane:before\":false},[\"content:\\\"\\uf786\\\"\"]],[false,{\".fa-cannabis:before\":false},[\"content:\\\"\\uf55f\\\"\"]],[false,{\".fa-capsules:before\":false},[\"content:\\\"\\uf46b\\\"\"]],[false,{\".fa-automobile:before\":false,\".fa-car:before\":false},[\"content:\\\"\\uf1b9\\\"\"]],[false,{\".fa-battery-car:before\":false,\".fa-car-battery:before\":false},[\"content:\\\"\\uf5df\\\"\"]],[false,{\".fa-car-burst:before\":false,\".fa-car-crash:before\":false},[\"content:\\\"\\uf5e1\\\"\"]],[false,{\".fa-car-on:before\":false},[\"content:\\\"\\ue4dd\\\"\"]],[false,{\".fa-car-alt:before\":false,\".fa-car-rear:before\":false},[\"content:\\\"\\uf5de\\\"\"]],[false,{\".fa-car-side:before\":false},[\"content:\\\"\\uf5e4\\\"\"]],[false,{\".fa-car-tunnel:before\":false},[\"content:\\\"\\ue4de\\\"\"]],[false,{\".fa-caravan:before\":false},[\"content:\\\"\\uf8ff\\\"\"]],[false,{\".fa-caret-down:before\":false},[\"content:\\\"\\uf0d7\\\"\"]],[false,{\".fa-caret-left:before\":false},[\"content:\\\"\\uf0d9\\\"\"]],[false,{\".fa-caret-right:before\":false},[\"content:\\\"\\uf0da\\\"\"]],[false,{\".fa-caret-up:before\":false},[\"content:\\\"\\uf0d8\\\"\"]],[false,{\".fa-carrot:before\":false},[\"content:\\\"\\uf787\\\"\"]],[false,{\".fa-cart-arrow-down:before\":false},[\"content:\\\"\\uf218\\\"\"]],[false,{\".fa-cart-flatbed:before\":false,\".fa-dolly-flatbed:before\":false},[\"content:\\\"\\uf474\\\"\"]],[false,{\".fa-cart-flatbed-suitcase:before\":false,\".fa-luggage-cart:before\":false},[\"content:\\\"\\uf59d\\\"\"]],[false,{\".fa-cart-plus:before\":false},[\"content:\\\"\\uf217\\\"\"]],[false,{\".fa-cart-shopping:before\":false,\".fa-shopping-cart:before\":false},[\"content:\\\"\\uf07a\\\"\"]],[false,{\".fa-cash-register:before\":false},[\"content:\\\"\\uf788\\\"\"]],[false,{\".fa-cat:before\":false},[\"content:\\\"\\uf6be\\\"\"]],[false,{\".fa-cedi-sign:before\":false},[\"content:\\\"\\ue0df\\\"\"]],[false,{\".fa-cent-sign:before\":false},[\"content:\\\"\\ue3f5\\\"\"]],[false,{\".fa-certificate:before\":false},[\"content:\\\"\\uf0a3\\\"\"]],[false,{\".fa-chair:before\":false},[\"content:\\\"\\uf6c0\\\"\"]],[false,{\".fa-blackboard:before\":false,\".fa-chalkboard:before\":false},[\"content:\\\"\\uf51b\\\"\"]],[false,{\".fa-chalkboard-teacher:before\":false,\".fa-chalkboard-user:before\":false},[\"content:\\\"\\uf51c\\\"\"]],[false,{\".fa-champagne-glasses:before\":false,\".fa-glass-cheers:before\":false},[\"content:\\\"\\uf79f\\\"\"]],[false,{\".fa-charging-station:before\":false},[\"content:\\\"\\uf5e7\\\"\"]],[false,{\".fa-area-chart:before\":false,\".fa-chart-area:before\":false},[\"content:\\\"\\uf1fe\\\"\"]],[false,{\".fa-bar-chart:before\":false,\".fa-chart-bar:before\":false},[\"content:\\\"\\uf080\\\"\"]],[false,{\".fa-chart-column:before\":false},[\"content:\\\"\\ue0e3\\\"\"]],[false,{\".fa-chart-gantt:before\":false},[\"content:\\\"\\ue0e4\\\"\"]],[false,{\".fa-chart-line:before\":false,\".fa-line-chart:before\":false},[\"content:\\\"\\uf201\\\"\"]],[false,{\".fa-chart-pie:before\":false,\".fa-pie-chart:before\":false},[\"content:\\\"\\uf200\\\"\"]],[false,{\".fa-chart-simple:before\":false},[\"content:\\\"\\ue473\\\"\"]],[false,{\".fa-check:before\":false},[\"content:\\\"\\uf00c\\\"\"]],[false,{\".fa-check-double:before\":false},[\"content:\\\"\\uf560\\\"\"]],[false,{\".fa-check-to-slot:before\":false,\".fa-vote-yea:before\":false},[\"content:\\\"\\uf772\\\"\"]],[false,{\".fa-cheese:before\":false},[\"content:\\\"\\uf7ef\\\"\"]],[false,{\".fa-chess:before\":false},[\"content:\\\"\\uf439\\\"\"]],[false,{\".fa-chess-bishop:before\":false},[\"content:\\\"\\uf43a\\\"\"]],[false,{\".fa-chess-board:before\":false},[\"content:\\\"\\uf43c\\\"\"]],[false,{\".fa-chess-king:before\":false},[\"content:\\\"\\uf43f\\\"\"]],[false,{\".fa-chess-knight:before\":false},[\"content:\\\"\\uf441\\\"\"]],[false,{\".fa-chess-pawn:before\":false},[\"content:\\\"\\uf443\\\"\"]],[false,{\".fa-chess-queen:before\":false},[\"content:\\\"\\uf445\\\"\"]],[false,{\".fa-chess-rook:before\":false},[\"content:\\\"\\uf447\\\"\"]],[false,{\".fa-chevron-down:before\":false},[\"content:\\\"\\uf078\\\"\"]],[false,{\".fa-chevron-left:before\":false},[\"content:\\\"\\uf053\\\"\"]],[false,{\".fa-chevron-right:before\":false},[\"content:\\\"\\uf054\\\"\"]],[false,{\".fa-chevron-up:before\":false},[\"content:\\\"\\uf077\\\"\"]],[false,{\".fa-child:before\":false},[\"content:\\\"\\uf1ae\\\"\"]],[false,{\".fa-child-rifle:before\":false},[\"content:\\\"\\ue4e0\\\"\"]],[false,{\".fa-children:before\":false},[\"content:\\\"\\ue4e1\\\"\"]],[false,{\".fa-church:before\":false},[\"content:\\\"\\uf51d\\\"\"]],[false,{\".fa-circle:before\":false},[\"content:\\\"\\uf111\\\"\"]],[false,{\".fa-arrow-circle-down:before\":false,\".fa-circle-arrow-down:before\":false},[\"content:\\\"\\uf0ab\\\"\"]],[false,{\".fa-arrow-circle-left:before\":false,\".fa-circle-arrow-left:before\":false},[\"content:\\\"\\uf0a8\\\"\"]],[false,{\".fa-arrow-circle-right:before\":false,\".fa-circle-arrow-right:before\":false},[\"content:\\\"\\uf0a9\\\"\"]],[false,{\".fa-arrow-circle-up:before\":false,\".fa-circle-arrow-up:before\":false},[\"content:\\\"\\uf0aa\\\"\"]],[false,{\".fa-check-circle:before\":false,\".fa-circle-check:before\":false},[\"content:\\\"\\uf058\\\"\"]],[false,{\".fa-chevron-circle-down:before\":false,\".fa-circle-chevron-down:before\":false},[\"content:\\\"\\uf13a\\\"\"]],[false,{\".fa-chevron-circle-left:before\":false,\".fa-circle-chevron-left:before\":false},[\"content:\\\"\\uf137\\\"\"]],[false,{\".fa-chevron-circle-right:before\":false,\".fa-circle-chevron-right:before\":false},[\"content:\\\"\\uf138\\\"\"]],[false,{\".fa-chevron-circle-up:before\":false,\".fa-circle-chevron-up:before\":false},[\"content:\\\"\\uf139\\\"\"]],[false,{\".fa-circle-dollar-to-slot:before\":false,\".fa-donate:before\":false},[\"content:\\\"\\uf4b9\\\"\"]],[false,{\".fa-circle-dot:before\":false,\".fa-dot-circle:before\":false},[\"content:\\\"\\uf192\\\"\"]],[false,{\".fa-arrow-alt-circle-down:before\":false,\".fa-circle-down:before\":false},[\"content:\\\"\\uf358\\\"\"]],[false,{\".fa-circle-exclamation:before\":false,\".fa-exclamation-circle:before\":false},[\"content:\\\"\\uf06a\\\"\"]],[false,{\".fa-circle-h:before\":false,\".fa-hospital-symbol:before\":false},[\"content:\\\"\\uf47e\\\"\"]],[false,{\".fa-adjust:before\":false,\".fa-circle-half-stroke:before\":false},[\"content:\\\"\\uf042\\\"\"]],[false,{\".fa-circle-info:before\":false,\".fa-info-circle:before\":false},[\"content:\\\"\\uf05a\\\"\"]],[false,{\".fa-arrow-alt-circle-left:before\":false,\".fa-circle-left:before\":false},[\"content:\\\"\\uf359\\\"\"]],[false,{\".fa-circle-minus:before\":false,\".fa-minus-circle:before\":false},[\"content:\\\"\\uf056\\\"\"]],[false,{\".fa-circle-nodes:before\":false},[\"content:\\\"\\ue4e2\\\"\"]],[false,{\".fa-circle-notch:before\":false},[\"content:\\\"\\uf1ce\\\"\"]],[false,{\".fa-circle-pause:before\":false,\".fa-pause-circle:before\":false},[\"content:\\\"\\uf28b\\\"\"]],[false,{\".fa-circle-play:before\":false,\".fa-play-circle:before\":false},[\"content:\\\"\\uf144\\\"\"]],[false,{\".fa-circle-plus:before\":false,\".fa-plus-circle:before\":false},[\"content:\\\"\\uf055\\\"\"]],[false,{\".fa-circle-question:before\":false,\".fa-question-circle:before\":false},[\"content:\\\"\\uf059\\\"\"]],[false,{\".fa-circle-radiation:before\":false,\".fa-radiation-alt:before\":false},[\"content:\\\"\\uf7ba\\\"\"]],[false,{\".fa-arrow-alt-circle-right:before\":false,\".fa-circle-right:before\":false},[\"content:\\\"\\uf35a\\\"\"]],[false,{\".fa-circle-stop:before\":false,\".fa-stop-circle:before\":false},[\"content:\\\"\\uf28d\\\"\"]],[false,{\".fa-arrow-alt-circle-up:before\":false,\".fa-circle-up:before\":false},[\"content:\\\"\\uf35b\\\"\"]],[false,{\".fa-circle-user:before\":false,\".fa-user-circle:before\":false},[\"content:\\\"\\uf2bd\\\"\"]],[false,{\".fa-circle-xmark:before\":false,\".fa-times-circle:before\":false,\".fa-xmark-circle:before\":false},[\"content:\\\"\\uf057\\\"\"]],[false,{\".fa-city:before\":false},[\"content:\\\"\\uf64f\\\"\"]],[false,{\".fa-clapperboard:before\":false},[\"content:\\\"\\ue131\\\"\"]],[false,{\".fa-clipboard:before\":false},[\"content:\\\"\\uf328\\\"\"]],[false,{\".fa-clipboard-check:before\":false},[\"content:\\\"\\uf46c\\\"\"]],[false,{\".fa-clipboard-list:before\":false},[\"content:\\\"\\uf46d\\\"\"]],[false,{\".fa-clipboard-question:before\":false},[\"content:\\\"\\ue4e3\\\"\"]],[false,{\".fa-clipboard-user:before\":false},[\"content:\\\"\\uf7f3\\\"\"]],[false,{\".fa-clock-four:before\":false,\".fa-clock:before\":false},[\"content:\\\"\\uf017\\\"\"]],[false,{\".fa-clock-rotate-left:before\":false,\".fa-history:before\":false},[\"content:\\\"\\uf1da\\\"\"]],[false,{\".fa-clone:before\":false},[\"content:\\\"\\uf24d\\\"\"]],[false,{\".fa-closed-captioning:before\":false},[\"content:\\\"\\uf20a\\\"\"]],[false,{\".fa-cloud:before\":false},[\"content:\\\"\\uf0c2\\\"\"]],[false,{\".fa-cloud-arrow-down:before\":false,\".fa-cloud-download-alt:before\":false,\".fa-cloud-download:before\":false},[\"content:\\\"\\uf0ed\\\"\"]],[false,{\".fa-cloud-arrow-up:before\":false,\".fa-cloud-upload-alt:before\":false,\".fa-cloud-upload:before\":false},[\"content:\\\"\\uf0ee\\\"\"]],[false,{\".fa-cloud-bolt:before\":false,\".fa-thunderstorm:before\":false},[\"content:\\\"\\uf76c\\\"\"]],[false,{\".fa-cloud-meatball:before\":false},[\"content:\\\"\\uf73b\\\"\"]],[false,{\".fa-cloud-moon:before\":false},[\"content:\\\"\\uf6c3\\\"\"]],[false,{\".fa-cloud-moon-rain:before\":false},[\"content:\\\"\\uf73c\\\"\"]],[false,{\".fa-cloud-rain:before\":false},[\"content:\\\"\\uf73d\\\"\"]],[false,{\".fa-cloud-showers-heavy:before\":false},[\"content:\\\"\\uf740\\\"\"]],[false,{\".fa-cloud-showers-water:before\":false},[\"content:\\\"\\ue4e4\\\"\"]],[false,{\".fa-cloud-sun:before\":false},[\"content:\\\"\\uf6c4\\\"\"]],[false,{\".fa-cloud-sun-rain:before\":false},[\"content:\\\"\\uf743\\\"\"]],[false,{\".fa-clover:before\":false},[\"content:\\\"\\ue139\\\"\"]],[false,{\".fa-code:before\":false},[\"content:\\\"\\uf121\\\"\"]],[false,{\".fa-code-branch:before\":false},[\"content:\\\"\\uf126\\\"\"]],[false,{\".fa-code-commit:before\":false},[\"content:\\\"\\uf386\\\"\"]],[false,{\".fa-code-compare:before\":false},[\"content:\\\"\\ue13a\\\"\"]],[false,{\".fa-code-fork:before\":false},[\"content:\\\"\\ue13b\\\"\"]],[false,{\".fa-code-merge:before\":false},[\"content:\\\"\\uf387\\\"\"]],[false,{\".fa-code-pull-request:before\":false},[\"content:\\\"\\ue13c\\\"\"]],[false,{\".fa-coins:before\":false},[\"content:\\\"\\uf51e\\\"\"]],[false,{\".fa-colon-sign:before\":false},[\"content:\\\"\\ue140\\\"\"]],[false,{\".fa-comment:before\":false},[\"content:\\\"\\uf075\\\"\"]],[false,{\".fa-comment-dollar:before\":false},[\"content:\\\"\\uf651\\\"\"]],[false,{\".fa-comment-dots:before\":false,\".fa-commenting:before\":false},[\"content:\\\"\\uf4ad\\\"\"]],[false,{\".fa-comment-medical:before\":false},[\"content:\\\"\\uf7f5\\\"\"]],[false,{\".fa-comment-slash:before\":false},[\"content:\\\"\\uf4b3\\\"\"]],[false,{\".fa-comment-sms:before\":false,\".fa-sms:before\":false},[\"content:\\\"\\uf7cd\\\"\"]],[false,{\".fa-comments:before\":false},[\"content:\\\"\\uf086\\\"\"]],[false,{\".fa-comments-dollar:before\":false},[\"content:\\\"\\uf653\\\"\"]],[false,{\".fa-compact-disc:before\":false},[\"content:\\\"\\uf51f\\\"\"]],[false,{\".fa-compass:before\":false},[\"content:\\\"\\uf14e\\\"\"]],[false,{\".fa-compass-drafting:before\":false,\".fa-drafting-compass:before\":false},[\"content:\\\"\\uf568\\\"\"]],[false,{\".fa-compress:before\":false},[\"content:\\\"\\uf066\\\"\"]],[false,{\".fa-computer:before\":false},[\"content:\\\"\\ue4e5\\\"\"]],[false,{\".fa-computer-mouse:before\":false,\".fa-mouse:before\":false},[\"content:\\\"\\uf8cc\\\"\"]],[false,{\".fa-cookie:before\":false},[\"content:\\\"\\uf563\\\"\"]],[false,{\".fa-cookie-bite:before\":false},[\"content:\\\"\\uf564\\\"\"]],[false,{\".fa-copy:before\":false},[\"content:\\\"\\uf0c5\\\"\"]],[false,{\".fa-copyright:before\":false},[\"content:\\\"\\uf1f9\\\"\"]],[false,{\".fa-couch:before\":false},[\"content:\\\"\\uf4b8\\\"\"]],[false,{\".fa-cow:before\":false},[\"content:\\\"\\uf6c8\\\"\"]],[false,{\".fa-credit-card-alt:before\":false,\".fa-credit-card:before\":false},[\"content:\\\"\\uf09d\\\"\"]],[false,{\".fa-crop:before\":false},[\"content:\\\"\\uf125\\\"\"]],[false,{\".fa-crop-alt:before\":false,\".fa-crop-simple:before\":false},[\"content:\\\"\\uf565\\\"\"]],[false,{\".fa-cross:before\":false},[\"content:\\\"\\uf654\\\"\"]],[false,{\".fa-crosshairs:before\":false},[\"content:\\\"\\uf05b\\\"\"]],[false,{\".fa-crow:before\":false},[\"content:\\\"\\uf520\\\"\"]],[false,{\".fa-crown:before\":false},[\"content:\\\"\\uf521\\\"\"]],[false,{\".fa-crutch:before\":false},[\"content:\\\"\\uf7f7\\\"\"]],[false,{\".fa-cruzeiro-sign:before\":false},[\"content:\\\"\\ue152\\\"\"]],[false,{\".fa-cube:before\":false},[\"content:\\\"\\uf1b2\\\"\"]],[false,{\".fa-cubes:before\":false},[\"content:\\\"\\uf1b3\\\"\"]],[false,{\".fa-cubes-stacked:before\":false},[\"content:\\\"\\ue4e6\\\"\"]],[false,{\".fa-d:before\":false},[\"content:\\\"D\\\"\"]],[false,{\".fa-database:before\":false},[\"content:\\\"\\uf1c0\\\"\"]],[false,{\".fa-backspace:before\":false,\".fa-delete-left:before\":false},[\"content:\\\"\\uf55a\\\"\"]],[false,{\".fa-democrat:before\":false},[\"content:\\\"\\uf747\\\"\"]],[false,{\".fa-desktop-alt:before\":false,\".fa-desktop:before\":false},[\"content:\\\"\\uf390\\\"\"]],[false,{\".fa-dharmachakra:before\":false},[\"content:\\\"\\uf655\\\"\"]],[false,{\".fa-diagram-next:before\":false},[\"content:\\\"\\ue476\\\"\"]],[false,{\".fa-diagram-predecessor:before\":false},[\"content:\\\"\\ue477\\\"\"]],[false,{\".fa-diagram-project:before\":false,\".fa-project-diagram:before\":false},[\"content:\\\"\\uf542\\\"\"]],[false,{\".fa-diagram-successor:before\":false},[\"content:\\\"\\ue47a\\\"\"]],[false,{\".fa-diamond:before\":false},[\"content:\\\"\\uf219\\\"\"]],[false,{\".fa-diamond-turn-right:before\":false,\".fa-directions:before\":false},[\"content:\\\"\\uf5eb\\\"\"]],[false,{\".fa-dice:before\":false},[\"content:\\\"\\uf522\\\"\"]],[false,{\".fa-dice-d20:before\":false},[\"content:\\\"\\uf6cf\\\"\"]],[false,{\".fa-dice-d6:before\":false},[\"content:\\\"\\uf6d1\\\"\"]],[false,{\".fa-dice-five:before\":false},[\"content:\\\"\\uf523\\\"\"]],[false,{\".fa-dice-four:before\":false},[\"content:\\\"\\uf524\\\"\"]],[false,{\".fa-dice-one:before\":false},[\"content:\\\"\\uf525\\\"\"]],[false,{\".fa-dice-six:before\":false},[\"content:\\\"\\uf526\\\"\"]],[false,{\".fa-dice-three:before\":false},[\"content:\\\"\\uf527\\\"\"]],[false,{\".fa-dice-two:before\":false},[\"content:\\\"\\uf528\\\"\"]],[false,{\".fa-disease:before\":false},[\"content:\\\"\\uf7fa\\\"\"]],[false,{\".fa-display:before\":false},[\"content:\\\"\\ue163\\\"\"]],[false,{\".fa-divide:before\":false},[\"content:\\\"\\uf529\\\"\"]],[false,{\".fa-dna:before\":false},[\"content:\\\"\\uf471\\\"\"]],[false,{\".fa-dog:before\":false},[\"content:\\\"\\uf6d3\\\"\"]],[false,{\".fa-dollar-sign:before\":false,\".fa-dollar:before\":false,\".fa-usd:before\":false},[\"content:\\\"$\\\"\"]],[false,{\".fa-dolly-box:before\":false,\".fa-dolly:before\":false},[\"content:\\\"\\uf472\\\"\"]],[false,{\".fa-dong-sign:before\":false},[\"content:\\\"\\ue169\\\"\"]],[false,{\".fa-door-closed:before\":false},[\"content:\\\"\\uf52a\\\"\"]],[false,{\".fa-door-open:before\":false},[\"content:\\\"\\uf52b\\\"\"]],[false,{\".fa-dove:before\":false},[\"content:\\\"\\uf4ba\\\"\"]],[false,{\".fa-compress-alt:before\":false,\".fa-down-left-and-up-right-to-center:before\":false},[\"content:\\\"\\uf422\\\"\"]],[false,{\".fa-down-long:before\":false,\".fa-long-arrow-alt-down:before\":false},[\"content:\\\"\\uf309\\\"\"]],[false,{\".fa-download:before\":false},[\"content:\\\"\\uf019\\\"\"]],[false,{\".fa-dragon:before\":false},[\"content:\\\"\\uf6d5\\\"\"]],[false,{\".fa-draw-polygon:before\":false},[\"content:\\\"\\uf5ee\\\"\"]],[false,{\".fa-droplet:before\":false,\".fa-tint:before\":false},[\"content:\\\"\\uf043\\\"\"]],[false,{\".fa-droplet-slash:before\":false,\".fa-tint-slash:before\":false},[\"content:\\\"\\uf5c7\\\"\"]],[false,{\".fa-drum:before\":false},[\"content:\\\"\\uf569\\\"\"]],[false,{\".fa-drum-steelpan:before\":false},[\"content:\\\"\\uf56a\\\"\"]],[false,{\".fa-drumstick-bite:before\":false},[\"content:\\\"\\uf6d7\\\"\"]],[false,{\".fa-dumbbell:before\":false},[\"content:\\\"\\uf44b\\\"\"]],[false,{\".fa-dumpster:before\":false},[\"content:\\\"\\uf793\\\"\"]],[false,{\".fa-dumpster-fire:before\":false},[\"content:\\\"\\uf794\\\"\"]],[false,{\".fa-dungeon:before\":false},[\"content:\\\"\\uf6d9\\\"\"]],[false,{\".fa-e:before\":false},[\"content:\\\"E\\\"\"]],[false,{\".fa-deaf:before\":false,\".fa-deafness:before\":false,\".fa-ear-deaf:before\":false,\".fa-hard-of-hearing:before\":false},[\"content:\\\"\\uf2a4\\\"\"]],[false,{\".fa-assistive-listening-systems:before\":false,\".fa-ear-listen:before\":false},[\"content:\\\"\\uf2a2\\\"\"]],[false,{\".fa-earth-africa:before\":false,\".fa-globe-africa:before\":false},[\"content:\\\"\\uf57c\\\"\"]],[false,{\".fa-earth-america:before\":false,\".fa-earth-americas:before\":false,\".fa-earth:before\":false,\".fa-globe-americas:before\":false},[\"content:\\\"\\uf57d\\\"\"]],[false,{\".fa-earth-asia:before\":false,\".fa-globe-asia:before\":false},[\"content:\\\"\\uf57e\\\"\"]],[false,{\".fa-earth-europe:before\":false,\".fa-globe-europe:before\":false},[\"content:\\\"\\uf7a2\\\"\"]],[false,{\".fa-earth-oceania:before\":false,\".fa-globe-oceania:before\":false},[\"content:\\\"\\ue47b\\\"\"]],[false,{\".fa-egg:before\":false},[\"content:\\\"\\uf7fb\\\"\"]],[false,{\".fa-eject:before\":false},[\"content:\\\"\\uf052\\\"\"]],[false,{\".fa-elevator:before\":false},[\"content:\\\"\\ue16d\\\"\"]],[false,{\".fa-ellipsis-h:before\":false,\".fa-ellipsis:before\":false},[\"content:\\\"\\uf141\\\"\"]],[false,{\".fa-ellipsis-v:before\":false,\".fa-ellipsis-vertical:before\":false},[\"content:\\\"\\uf142\\\"\"]],[false,{\".fa-envelope:before\":false},[\"content:\\\"\\uf0e0\\\"\"]],[false,{\".fa-envelope-circle-check:before\":false},[\"content:\\\"\\ue4e8\\\"\"]],[false,{\".fa-envelope-open:before\":false},[\"content:\\\"\\uf2b6\\\"\"]],[false,{\".fa-envelope-open-text:before\":false},[\"content:\\\"\\uf658\\\"\"]],[false,{\".fa-envelopes-bulk:before\":false,\".fa-mail-bulk:before\":false},[\"content:\\\"\\uf674\\\"\"]],[false,{\".fa-equals:before\":false},[\"content:\\\"=\\\"\"]],[false,{\".fa-eraser:before\":false},[\"content:\\\"\\uf12d\\\"\"]],[false,{\".fa-ethernet:before\":false},[\"content:\\\"\\uf796\\\"\"]],[false,{\".fa-eur:before\":false,\".fa-euro-sign:before\":false,\".fa-euro:before\":false},[\"content:\\\"\\uf153\\\"\"]],[false,{\".fa-exclamation:before\":false},[\"content:\\\"!\\\"\"]],[false,{\".fa-expand:before\":false},[\"content:\\\"\\uf065\\\"\"]],[false,{\".fa-explosion:before\":false},[\"content:\\\"\\ue4e9\\\"\"]],[false,{\".fa-eye:before\":false},[\"content:\\\"\\uf06e\\\"\"]],[false,{\".fa-eye-dropper-empty:before\":false,\".fa-eye-dropper:before\":false,\".fa-eyedropper:before\":false},[\"content:\\\"\\uf1fb\\\"\"]],[false,{\".fa-eye-low-vision:before\":false,\".fa-low-vision:before\":false},[\"content:\\\"\\uf2a8\\\"\"]],[false,{\".fa-eye-slash:before\":false},[\"content:\\\"\\uf070\\\"\"]],[false,{\".fa-f:before\":false},[\"content:\\\"F\\\"\"]],[false,{\".fa-angry:before\":false,\".fa-face-angry:before\":false},[\"content:\\\"\\uf556\\\"\"]],[false,{\".fa-dizzy:before\":false,\".fa-face-dizzy:before\":false},[\"content:\\\"\\uf567\\\"\"]],[false,{\".fa-face-flushed:before\":false,\".fa-flushed:before\":false},[\"content:\\\"\\uf579\\\"\"]],[false,{\".fa-face-frown:before\":false,\".fa-frown:before\":false},[\"content:\\\"\\uf119\\\"\"]],[false,{\".fa-face-frown-open:before\":false,\".fa-frown-open:before\":false},[\"content:\\\"\\uf57a\\\"\"]],[false,{\".fa-face-grimace:before\":false,\".fa-grimace:before\":false},[\"content:\\\"\\uf57f\\\"\"]],[false,{\".fa-face-grin:before\":false,\".fa-grin:before\":false},[\"content:\\\"\\uf580\\\"\"]],[false,{\".fa-face-grin-beam:before\":false,\".fa-grin-beam:before\":false},[\"content:\\\"\\uf582\\\"\"]],[false,{\".fa-face-grin-beam-sweat:before\":false,\".fa-grin-beam-sweat:before\":false},[\"content:\\\"\\uf583\\\"\"]],[false,{\".fa-face-grin-hearts:before\":false,\".fa-grin-hearts:before\":false},[\"content:\\\"\\uf584\\\"\"]],[false,{\".fa-face-grin-squint:before\":false,\".fa-grin-squint:before\":false},[\"content:\\\"\\uf585\\\"\"]],[false,{\".fa-face-grin-squint-tears:before\":false,\".fa-grin-squint-tears:before\":false},[\"content:\\\"\\uf586\\\"\"]],[false,{\".fa-face-grin-stars:before\":false,\".fa-grin-stars:before\":false},[\"content:\\\"\\uf587\\\"\"]],[false,{\".fa-face-grin-tears:before\":false,\".fa-grin-tears:before\":false},[\"content:\\\"\\uf588\\\"\"]],[false,{\".fa-face-grin-tongue:before\":false,\".fa-grin-tongue:before\":false},[\"content:\\\"\\uf589\\\"\"]],[false,{\".fa-face-grin-tongue-squint:before\":false,\".fa-grin-tongue-squint:before\":false},[\"content:\\\"\\uf58a\\\"\"]],[false,{\".fa-face-grin-tongue-wink:before\":false,\".fa-grin-tongue-wink:before\":false},[\"content:\\\"\\uf58b\\\"\"]],[false,{\".fa-face-grin-wide:before\":false,\".fa-grin-alt:before\":false},[\"content:\\\"\\uf581\\\"\"]],[false,{\".fa-face-grin-wink:before\":false,\".fa-grin-wink:before\":false},[\"content:\\\"\\uf58c\\\"\"]],[false,{\".fa-face-kiss:before\":false,\".fa-kiss:before\":false},[\"content:\\\"\\uf596\\\"\"]],[false,{\".fa-face-kiss-beam:before\":false,\".fa-kiss-beam:before\":false},[\"content:\\\"\\uf597\\\"\"]],[false,{\".fa-face-kiss-wink-heart:before\":false,\".fa-kiss-wink-heart:before\":false},[\"content:\\\"\\uf598\\\"\"]],[false,{\".fa-face-laugh:before\":false,\".fa-laugh:before\":false},[\"content:\\\"\\uf599\\\"\"]],[false,{\".fa-face-laugh-beam:before\":false,\".fa-laugh-beam:before\":false},[\"content:\\\"\\uf59a\\\"\"]],[false,{\".fa-face-laugh-squint:before\":false,\".fa-laugh-squint:before\":false},[\"content:\\\"\\uf59b\\\"\"]],[false,{\".fa-face-laugh-wink:before\":false,\".fa-laugh-wink:before\":false},[\"content:\\\"\\uf59c\\\"\"]],[false,{\".fa-face-meh:before\":false,\".fa-meh:before\":false},[\"content:\\\"\\uf11a\\\"\"]],[false,{\".fa-face-meh-blank:before\":false,\".fa-meh-blank:before\":false},[\"content:\\\"\\uf5a4\\\"\"]],[false,{\".fa-face-rolling-eyes:before\":false,\".fa-meh-rolling-eyes:before\":false},[\"content:\\\"\\uf5a5\\\"\"]],[false,{\".fa-face-sad-cry:before\":false,\".fa-sad-cry:before\":false},[\"content:\\\"\\uf5b3\\\"\"]],[false,{\".fa-face-sad-tear:before\":false,\".fa-sad-tear:before\":false},[\"content:\\\"\\uf5b4\\\"\"]],[false,{\".fa-face-smile:before\":false,\".fa-smile:before\":false},[\"content:\\\"\\uf118\\\"\"]],[false,{\".fa-face-smile-beam:before\":false,\".fa-smile-beam:before\":false},[\"content:\\\"\\uf5b8\\\"\"]],[false,{\".fa-face-smile-wink:before\":false,\".fa-smile-wink:before\":false},[\"content:\\\"\\uf4da\\\"\"]],[false,{\".fa-face-surprise:before\":false,\".fa-surprise:before\":false},[\"content:\\\"\\uf5c2\\\"\"]],[false,{\".fa-face-tired:before\":false,\".fa-tired:before\":false},[\"content:\\\"\\uf5c8\\\"\"]],[false,{\".fa-fan:before\":false},[\"content:\\\"\\uf863\\\"\"]],[false,{\".fa-faucet:before\":false},[\"content:\\\"\\ue005\\\"\"]],[false,{\".fa-faucet-drip:before\":false},[\"content:\\\"\\ue006\\\"\"]],[false,{\".fa-fax:before\":false},[\"content:\\\"\\uf1ac\\\"\"]],[false,{\".fa-feather:before\":false},[\"content:\\\"\\uf52d\\\"\"]],[false,{\".fa-feather-alt:before\":false,\".fa-feather-pointed:before\":false},[\"content:\\\"\\uf56b\\\"\"]],[false,{\".fa-ferry:before\":false},[\"content:\\\"\\ue4ea\\\"\"]],[false,{\".fa-file:before\":false},[\"content:\\\"\\uf15b\\\"\"]],[false,{\".fa-file-arrow-down:before\":false,\".fa-file-download:before\":false},[\"content:\\\"\\uf56d\\\"\"]],[false,{\".fa-file-arrow-up:before\":false,\".fa-file-upload:before\":false},[\"content:\\\"\\uf574\\\"\"]],[false,{\".fa-file-audio:before\":false},[\"content:\\\"\\uf1c7\\\"\"]],[false,{\".fa-file-circle-check:before\":false},[\"content:\\\"\\ue493\\\"\"]],[false,{\".fa-file-circle-exclamation:before\":false},[\"content:\\\"\\ue4eb\\\"\"]],[false,{\".fa-file-circle-minus:before\":false},[\"content:\\\"\\ue4ed\\\"\"]],[false,{\".fa-file-circle-plus:before\":false},[\"content:\\\"\\ue4ee\\\"\"]],[false,{\".fa-file-circle-question:before\":false},[\"content:\\\"\\ue4ef\\\"\"]],[false,{\".fa-file-circle-xmark:before\":false},[\"content:\\\"\\ue494\\\"\"]],[false,{\".fa-file-code:before\":false},[\"content:\\\"\\uf1c9\\\"\"]],[false,{\".fa-file-contract:before\":false},[\"content:\\\"\\uf56c\\\"\"]],[false,{\".fa-file-csv:before\":false},[\"content:\\\"\\uf6dd\\\"\"]],[false,{\".fa-file-excel:before\":false},[\"content:\\\"\\uf1c3\\\"\"]],[false,{\".fa-arrow-right-from-file:before\":false,\".fa-file-export:before\":false},[\"content:\\\"\\uf56e\\\"\"]],[false,{\".fa-file-image:before\":false},[\"content:\\\"\\uf1c5\\\"\"]],[false,{\".fa-arrow-right-to-file:before\":false,\".fa-file-import:before\":false},[\"content:\\\"\\uf56f\\\"\"]],[false,{\".fa-file-invoice:before\":false},[\"content:\\\"\\uf570\\\"\"]],[false,{\".fa-file-invoice-dollar:before\":false},[\"content:\\\"\\uf571\\\"\"]],[false,{\".fa-file-alt:before\":false,\".fa-file-lines:before\":false,\".fa-file-text:before\":false},[\"content:\\\"\\uf15c\\\"\"]],[false,{\".fa-file-medical:before\":false},[\"content:\\\"\\uf477\\\"\"]],[false,{\".fa-file-pdf:before\":false},[\"content:\\\"\\uf1c1\\\"\"]],[false,{\".fa-file-edit:before\":false,\".fa-file-pen:before\":false},[\"content:\\\"\\uf31c\\\"\"]],[false,{\".fa-file-powerpoint:before\":false},[\"content:\\\"\\uf1c4\\\"\"]],[false,{\".fa-file-prescription:before\":false},[\"content:\\\"\\uf572\\\"\"]],[false,{\".fa-file-shield:before\":false},[\"content:\\\"\\ue4f0\\\"\"]],[false,{\".fa-file-signature:before\":false},[\"content:\\\"\\uf573\\\"\"]],[false,{\".fa-file-video:before\":false},[\"content:\\\"\\uf1c8\\\"\"]],[false,{\".fa-file-medical-alt:before\":false,\".fa-file-waveform:before\":false},[\"content:\\\"\\uf478\\\"\"]],[false,{\".fa-file-word:before\":false},[\"content:\\\"\\uf1c2\\\"\"]],[false,{\".fa-file-archive:before\":false,\".fa-file-zipper:before\":false},[\"content:\\\"\\uf1c6\\\"\"]],[false,{\".fa-fill:before\":false},[\"content:\\\"\\uf575\\\"\"]],[false,{\".fa-fill-drip:before\":false},[\"content:\\\"\\uf576\\\"\"]],[false,{\".fa-film:before\":false},[\"content:\\\"\\uf008\\\"\"]],[false,{\".fa-filter:before\":false},[\"content:\\\"\\uf0b0\\\"\"]],[false,{\".fa-filter-circle-dollar:before\":false,\".fa-funnel-dollar:before\":false},[\"content:\\\"\\uf662\\\"\"]],[false,{\".fa-filter-circle-xmark:before\":false},[\"content:\\\"\\ue17b\\\"\"]],[false,{\".fa-fingerprint:before\":false},[\"content:\\\"\\uf577\\\"\"]],[false,{\".fa-fire:before\":false},[\"content:\\\"\\uf06d\\\"\"]],[false,{\".fa-fire-burner:before\":false},[\"content:\\\"\\ue4f1\\\"\"]],[false,{\".fa-fire-extinguisher:before\":false},[\"content:\\\"\\uf134\\\"\"]],[false,{\".fa-fire-alt:before\":false,\".fa-fire-flame-curved:before\":false},[\"content:\\\"\\uf7e4\\\"\"]],[false,{\".fa-burn:before\":false,\".fa-fire-flame-simple:before\":false},[\"content:\\\"\\uf46a\\\"\"]],[false,{\".fa-fish:before\":false},[\"content:\\\"\\uf578\\\"\"]],[false,{\".fa-fish-fins:before\":false},[\"content:\\\"\\ue4f2\\\"\"]],[false,{\".fa-flag:before\":false},[\"content:\\\"\\uf024\\\"\"]],[false,{\".fa-flag-checkered:before\":false},[\"content:\\\"\\uf11e\\\"\"]],[false,{\".fa-flag-usa:before\":false},[\"content:\\\"\\uf74d\\\"\"]],[false,{\".fa-flask:before\":false},[\"content:\\\"\\uf0c3\\\"\"]],[false,{\".fa-flask-vial:before\":false},[\"content:\\\"\\ue4f3\\\"\"]],[false,{\".fa-floppy-disk:before\":false,\".fa-save:before\":false},[\"content:\\\"\\uf0c7\\\"\"]],[false,{\".fa-florin-sign:before\":false},[\"content:\\\"\\ue184\\\"\"]],[false,{\".fa-folder-blank:before\":false,\".fa-folder:before\":false},[\"content:\\\"\\uf07b\\\"\"]],[false,{\".fa-folder-closed:before\":false},[\"content:\\\"\\ue185\\\"\"]],[false,{\".fa-folder-minus:before\":false},[\"content:\\\"\\uf65d\\\"\"]],[false,{\".fa-folder-open:before\":false},[\"content:\\\"\\uf07c\\\"\"]],[false,{\".fa-folder-plus:before\":false},[\"content:\\\"\\uf65e\\\"\"]],[false,{\".fa-folder-tree:before\":false},[\"content:\\\"\\uf802\\\"\"]],[false,{\".fa-font:before\":false},[\"content:\\\"\\uf031\\\"\"]],[false,{\".fa-football-ball:before\":false,\".fa-football:before\":false},[\"content:\\\"\\uf44e\\\"\"]],[false,{\".fa-forward:before\":false},[\"content:\\\"\\uf04e\\\"\"]],[false,{\".fa-fast-forward:before\":false,\".fa-forward-fast:before\":false},[\"content:\\\"\\uf050\\\"\"]],[false,{\".fa-forward-step:before\":false,\".fa-step-forward:before\":false},[\"content:\\\"\\uf051\\\"\"]],[false,{\".fa-franc-sign:before\":false},[\"content:\\\"\\ue18f\\\"\"]],[false,{\".fa-frog:before\":false},[\"content:\\\"\\uf52e\\\"\"]],[false,{\".fa-futbol-ball:before\":false,\".fa-futbol:before\":false,\".fa-soccer-ball:before\":false},[\"content:\\\"\\uf1e3\\\"\"]],[false,{\".fa-g:before\":false},[\"content:\\\"G\\\"\"]],[false,{\".fa-gamepad:before\":false},[\"content:\\\"\\uf11b\\\"\"]],[false,{\".fa-gas-pump:before\":false},[\"content:\\\"\\uf52f\\\"\"]],[false,{\".fa-dashboard:before\":false,\".fa-gauge-med:before\":false,\".fa-gauge:before\":false,\".fa-tachometer-alt-average:before\":false},[\"content:\\\"\\uf624\\\"\"]],[false,{\".fa-gauge-high:before\":false,\".fa-tachometer-alt-fast:before\":false,\".fa-tachometer-alt:before\":false},[\"content:\\\"\\uf625\\\"\"]],[false,{\".fa-gauge-simple-med:before\":false,\".fa-gauge-simple:before\":false,\".fa-tachometer-average:before\":false},[\"content:\\\"\\uf629\\\"\"]],[false,{\".fa-gauge-simple-high:before\":false,\".fa-tachometer-fast:before\":false,\".fa-tachometer:before\":false},[\"content:\\\"\\uf62a\\\"\"]],[false,{\".fa-gavel:before\":false,\".fa-legal:before\":false},[\"content:\\\"\\uf0e3\\\"\"]],[false,{\".fa-cog:before\":false,\".fa-gear:before\":false},[\"content:\\\"\\uf013\\\"\"]],[false,{\".fa-cogs:before\":false,\".fa-gears:before\":false},[\"content:\\\"\\uf085\\\"\"]],[false,{\".fa-gem:before\":false},[\"content:\\\"\\uf3a5\\\"\"]],[false,{\".fa-genderless:before\":false},[\"content:\\\"\\uf22d\\\"\"]],[false,{\".fa-ghost:before\":false},[\"content:\\\"\\uf6e2\\\"\"]],[false,{\".fa-gift:before\":false},[\"content:\\\"\\uf06b\\\"\"]],[false,{\".fa-gifts:before\":false},[\"content:\\\"\\uf79c\\\"\"]],[false,{\".fa-glass-water:before\":false},[\"content:\\\"\\ue4f4\\\"\"]],[false,{\".fa-glass-water-droplet:before\":false},[\"content:\\\"\\ue4f5\\\"\"]],[false,{\".fa-glasses:before\":false},[\"content:\\\"\\uf530\\\"\"]],[false,{\".fa-globe:before\":false},[\"content:\\\"\\uf0ac\\\"\"]],[false,{\".fa-golf-ball-tee:before\":false,\".fa-golf-ball:before\":false},[\"content:\\\"\\uf450\\\"\"]],[false,{\".fa-gopuram:before\":false},[\"content:\\\"\\uf664\\\"\"]],[false,{\".fa-graduation-cap:before\":false,\".fa-mortar-board:before\":false},[\"content:\\\"\\uf19d\\\"\"]],[false,{\".fa-greater-than:before\":false},[\"content:\\\">\\\"\"]],[false,{\".fa-greater-than-equal:before\":false},[\"content:\\\"\\uf532\\\"\"]],[false,{\".fa-grip-horizontal:before\":false,\".fa-grip:before\":false},[\"content:\\\"\\uf58d\\\"\"]],[false,{\".fa-grip-lines:before\":false},[\"content:\\\"\\uf7a4\\\"\"]],[false,{\".fa-grip-lines-vertical:before\":false},[\"content:\\\"\\uf7a5\\\"\"]],[false,{\".fa-grip-vertical:before\":false},[\"content:\\\"\\uf58e\\\"\"]],[false,{\".fa-group-arrows-rotate:before\":false},[\"content:\\\"\\ue4f6\\\"\"]],[false,{\".fa-guarani-sign:before\":false},[\"content:\\\"\\ue19a\\\"\"]],[false,{\".fa-guitar:before\":false},[\"content:\\\"\\uf7a6\\\"\"]],[false,{\".fa-gun:before\":false},[\"content:\\\"\\ue19b\\\"\"]],[false,{\".fa-h:before\":false},[\"content:\\\"H\\\"\"]],[false,{\".fa-hammer:before\":false},[\"content:\\\"\\uf6e3\\\"\"]],[false,{\".fa-hamsa:before\":false},[\"content:\\\"\\uf665\\\"\"]],[false,{\".fa-hand-paper:before\":false,\".fa-hand:before\":false},[\"content:\\\"\\uf256\\\"\"]],[false,{\".fa-hand-back-fist:before\":false,\".fa-hand-rock:before\":false},[\"content:\\\"\\uf255\\\"\"]],[false,{\".fa-allergies:before\":false,\".fa-hand-dots:before\":false},[\"content:\\\"\\uf461\\\"\"]],[false,{\".fa-fist-raised:before\":false,\".fa-hand-fist:before\":false},[\"content:\\\"\\uf6de\\\"\"]],[false,{\".fa-hand-holding:before\":false},[\"content:\\\"\\uf4bd\\\"\"]],[false,{\".fa-hand-holding-dollar:before\":false,\".fa-hand-holding-usd:before\":false},[\"content:\\\"\\uf4c0\\\"\"]],[false,{\".fa-hand-holding-droplet:before\":false,\".fa-hand-holding-water:before\":false},[\"content:\\\"\\uf4c1\\\"\"]],[false,{\".fa-hand-holding-hand:before\":false},[\"content:\\\"\\ue4f7\\\"\"]],[false,{\".fa-hand-holding-heart:before\":false},[\"content:\\\"\\uf4be\\\"\"]],[false,{\".fa-hand-holding-medical:before\":false},[\"content:\\\"\\ue05c\\\"\"]],[false,{\".fa-hand-lizard:before\":false},[\"content:\\\"\\uf258\\\"\"]],[false,{\".fa-hand-middle-finger:before\":false},[\"content:\\\"\\uf806\\\"\"]],[false,{\".fa-hand-peace:before\":false},[\"content:\\\"\\uf25b\\\"\"]],[false,{\".fa-hand-point-down:before\":false},[\"content:\\\"\\uf0a7\\\"\"]],[false,{\".fa-hand-point-left:before\":false},[\"content:\\\"\\uf0a5\\\"\"]],[false,{\".fa-hand-point-right:before\":false},[\"content:\\\"\\uf0a4\\\"\"]],[false,{\".fa-hand-point-up:before\":false},[\"content:\\\"\\uf0a6\\\"\"]],[false,{\".fa-hand-pointer:before\":false},[\"content:\\\"\\uf25a\\\"\"]],[false,{\".fa-hand-scissors:before\":false},[\"content:\\\"\\uf257\\\"\"]],[false,{\".fa-hand-sparkles:before\":false},[\"content:\\\"\\ue05d\\\"\"]],[false,{\".fa-hand-spock:before\":false},[\"content:\\\"\\uf259\\\"\"]],[false,{\".fa-handcuffs:before\":false},[\"content:\\\"\\ue4f8\\\"\"]],[false,{\".fa-hands:before\":false,\".fa-sign-language:before\":false,\".fa-signing:before\":false},[\"content:\\\"\\uf2a7\\\"\"]],[false,{\".fa-american-sign-language-interpreting:before\":false,\".fa-asl-interpreting:before\":false,\".fa-hands-american-sign-language-interpreting:before\":false,\".fa-hands-asl-interpreting:before\":false},[\"content:\\\"\\uf2a3\\\"\"]],[false,{\".fa-hands-bound:before\":false},[\"content:\\\"\\ue4f9\\\"\"]],[false,{\".fa-hands-bubbles:before\":false,\".fa-hands-wash:before\":false},[\"content:\\\"\\ue05e\\\"\"]],[false,{\".fa-hands-clapping:before\":false},[\"content:\\\"\\ue1a8\\\"\"]],[false,{\".fa-hands-holding:before\":false},[\"content:\\\"\\uf4c2\\\"\"]],[false,{\".fa-hands-holding-child:before\":false},[\"content:\\\"\\ue4fa\\\"\"]],[false,{\".fa-hands-holding-circle:before\":false},[\"content:\\\"\\ue4fb\\\"\"]],[false,{\".fa-hands-praying:before\":false,\".fa-praying-hands:before\":false},[\"content:\\\"\\uf684\\\"\"]],[false,{\".fa-handshake:before\":false},[\"content:\\\"\\uf2b5\\\"\"]],[false,{\".fa-hands-helping:before\":false,\".fa-handshake-angle:before\":false},[\"content:\\\"\\uf4c4\\\"\"]],[false,{\".fa-handshake-alt:before\":false,\".fa-handshake-simple:before\":false},[\"content:\\\"\\uf4c6\\\"\"]],[false,{\".fa-handshake-alt-slash:before\":false,\".fa-handshake-simple-slash:before\":false},[\"content:\\\"\\ue05f\\\"\"]],[false,{\".fa-handshake-slash:before\":false},[\"content:\\\"\\ue060\\\"\"]],[false,{\".fa-hanukiah:before\":false},[\"content:\\\"\\uf6e6\\\"\"]],[false,{\".fa-hard-drive:before\":false,\".fa-hdd:before\":false},[\"content:\\\"\\uf0a0\\\"\"]],[false,{\".fa-hashtag:before\":false},[\"content:\\\"#\\\"\"]],[false,{\".fa-hat-cowboy:before\":false},[\"content:\\\"\\uf8c0\\\"\"]],[false,{\".fa-hat-cowboy-side:before\":false},[\"content:\\\"\\uf8c1\\\"\"]],[false,{\".fa-hat-wizard:before\":false},[\"content:\\\"\\uf6e8\\\"\"]],[false,{\".fa-head-side-cough:before\":false},[\"content:\\\"\\ue061\\\"\"]],[false,{\".fa-head-side-cough-slash:before\":false},[\"content:\\\"\\ue062\\\"\"]],[false,{\".fa-head-side-mask:before\":false},[\"content:\\\"\\ue063\\\"\"]],[false,{\".fa-head-side-virus:before\":false},[\"content:\\\"\\ue064\\\"\"]],[false,{\".fa-header:before\":false,\".fa-heading:before\":false},[\"content:\\\"\\uf1dc\\\"\"]],[false,{\".fa-headphones:before\":false},[\"content:\\\"\\uf025\\\"\"]],[false,{\".fa-headphones-alt:before\":false,\".fa-headphones-simple:before\":false},[\"content:\\\"\\uf58f\\\"\"]],[false,{\".fa-headset:before\":false},[\"content:\\\"\\uf590\\\"\"]],[false,{\".fa-heart:before\":false},[\"content:\\\"\\uf004\\\"\"]],[false,{\".fa-heart-circle-bolt:before\":false},[\"content:\\\"\\ue4fc\\\"\"]],[false,{\".fa-heart-circle-check:before\":false},[\"content:\\\"\\ue4fd\\\"\"]],[false,{\".fa-heart-circle-exclamation:before\":false},[\"content:\\\"\\ue4fe\\\"\"]],[false,{\".fa-heart-circle-minus:before\":false},[\"content:\\\"\\ue4ff\\\"\"]],[false,{\".fa-heart-circle-plus:before\":false},[\"content:\\\"\\ue500\\\"\"]],[false,{\".fa-heart-circle-xmark:before\":false},[\"content:\\\"\\ue501\\\"\"]],[false,{\".fa-heart-broken:before\":false,\".fa-heart-crack:before\":false},[\"content:\\\"\\uf7a9\\\"\"]],[false,{\".fa-heart-pulse:before\":false,\".fa-heartbeat:before\":false},[\"content:\\\"\\uf21e\\\"\"]],[false,{\".fa-helicopter:before\":false},[\"content:\\\"\\uf533\\\"\"]],[false,{\".fa-helicopter-symbol:before\":false},[\"content:\\\"\\ue502\\\"\"]],[false,{\".fa-hard-hat:before\":false,\".fa-hat-hard:before\":false,\".fa-helmet-safety:before\":false},[\"content:\\\"\\uf807\\\"\"]],[false,{\".fa-helmet-un:before\":false},[\"content:\\\"\\ue503\\\"\"]],[false,{\".fa-highlighter:before\":false},[\"content:\\\"\\uf591\\\"\"]],[false,{\".fa-hill-avalanche:before\":false},[\"content:\\\"\\ue507\\\"\"]],[false,{\".fa-hill-rockslide:before\":false},[\"content:\\\"\\ue508\\\"\"]],[false,{\".fa-hippo:before\":false},[\"content:\\\"\\uf6ed\\\"\"]],[false,{\".fa-hockey-puck:before\":false},[\"content:\\\"\\uf453\\\"\"]],[false,{\".fa-holly-berry:before\":false},[\"content:\\\"\\uf7aa\\\"\"]],[false,{\".fa-horse:before\":false},[\"content:\\\"\\uf6f0\\\"\"]],[false,{\".fa-horse-head:before\":false},[\"content:\\\"\\uf7ab\\\"\"]],[false,{\".fa-hospital-alt:before\":false,\".fa-hospital-wide:before\":false,\".fa-hospital:before\":false},[\"content:\\\"\\uf0f8\\\"\"]],[false,{\".fa-hospital-user:before\":false},[\"content:\\\"\\uf80d\\\"\"]],[false,{\".fa-hot-tub-person:before\":false,\".fa-hot-tub:before\":false},[\"content:\\\"\\uf593\\\"\"]],[false,{\".fa-hotdog:before\":false},[\"content:\\\"\\uf80f\\\"\"]],[false,{\".fa-hotel:before\":false},[\"content:\\\"\\uf594\\\"\"]],[false,{\".fa-hourglass-2:before\":false,\".fa-hourglass-half:before\":false,\".fa-hourglass:before\":false},[\"content:\\\"\\uf254\\\"\"]],[false,{\".fa-hourglass-empty:before\":false},[\"content:\\\"\\uf252\\\"\"]],[false,{\".fa-hourglass-3:before\":false,\".fa-hourglass-end:before\":false},[\"content:\\\"\\uf253\\\"\"]],[false,{\".fa-hourglass-1:before\":false,\".fa-hourglass-start:before\":false},[\"content:\\\"\\uf251\\\"\"]],[false,{\".fa-home-alt:before\":false,\".fa-home-lg-alt:before\":false,\".fa-home:before\":false,\".fa-house:before\":false},[\"content:\\\"\\uf015\\\"\"]],[false,{\".fa-home-lg:before\":false,\".fa-house-chimney:before\":false},[\"content:\\\"\\ue3af\\\"\"]],[false,{\".fa-house-chimney-crack:before\":false,\".fa-house-damage:before\":false},[\"content:\\\"\\uf6f1\\\"\"]],[false,{\".fa-clinic-medical:before\":false,\".fa-house-chimney-medical:before\":false},[\"content:\\\"\\uf7f2\\\"\"]],[false,{\".fa-house-chimney-user:before\":false},[\"content:\\\"\\ue065\\\"\"]],[false,{\".fa-house-chimney-window:before\":false},[\"content:\\\"\\ue00d\\\"\"]],[false,{\".fa-house-circle-check:before\":false},[\"content:\\\"\\ue509\\\"\"]],[false,{\".fa-house-circle-exclamation:before\":false},[\"content:\\\"\\ue50a\\\"\"]],[false,{\".fa-house-circle-xmark:before\":false},[\"content:\\\"\\ue50b\\\"\"]],[false,{\".fa-house-crack:before\":false},[\"content:\\\"\\ue3b1\\\"\"]],[false,{\".fa-house-fire:before\":false},[\"content:\\\"\\ue50c\\\"\"]],[false,{\".fa-house-flag:before\":false},[\"content:\\\"\\ue50d\\\"\"]],[false,{\".fa-house-flood-water:before\":false},[\"content:\\\"\\ue50e\\\"\"]],[false,{\".fa-house-flood-water-circle-arrow-right:before\":false},[\"content:\\\"\\ue50f\\\"\"]],[false,{\".fa-house-laptop:before\":false,\".fa-laptop-house:before\":false},[\"content:\\\"\\ue066\\\"\"]],[false,{\".fa-house-lock:before\":false},[\"content:\\\"\\ue510\\\"\"]],[false,{\".fa-house-medical:before\":false},[\"content:\\\"\\ue3b2\\\"\"]],[false,{\".fa-house-medical-circle-check:before\":false},[\"content:\\\"\\ue511\\\"\"]],[false,{\".fa-house-medical-circle-exclamation:before\":false},[\"content:\\\"\\ue512\\\"\"]],[false,{\".fa-house-medical-circle-xmark:before\":false},[\"content:\\\"\\ue513\\\"\"]],[false,{\".fa-house-medical-flag:before\":false},[\"content:\\\"\\ue514\\\"\"]],[false,{\".fa-house-signal:before\":false},[\"content:\\\"\\ue012\\\"\"]],[false,{\".fa-house-tsunami:before\":false},[\"content:\\\"\\ue515\\\"\"]],[false,{\".fa-home-user:before\":false,\".fa-house-user:before\":false},[\"content:\\\"\\ue1b0\\\"\"]],[false,{\".fa-hryvnia-sign:before\":false,\".fa-hryvnia:before\":false},[\"content:\\\"\\uf6f2\\\"\"]],[false,{\".fa-hurricane:before\":false},[\"content:\\\"\\uf751\\\"\"]],[false,{\".fa-i:before\":false},[\"content:\\\"I\\\"\"]],[false,{\".fa-i-cursor:before\":false},[\"content:\\\"\\uf246\\\"\"]],[false,{\".fa-ice-cream:before\":false},[\"content:\\\"\\uf810\\\"\"]],[false,{\".fa-icicles:before\":false},[\"content:\\\"\\uf7ad\\\"\"]],[false,{\".fa-heart-music-camera-bolt:before\":false,\".fa-icons:before\":false},[\"content:\\\"\\uf86d\\\"\"]],[false,{\".fa-id-badge:before\":false},[\"content:\\\"\\uf2c1\\\"\"]],[false,{\".fa-drivers-license:before\":false,\".fa-id-card:before\":false},[\"content:\\\"\\uf2c2\\\"\"]],[false,{\".fa-id-card-alt:before\":false,\".fa-id-card-clip:before\":false},[\"content:\\\"\\uf47f\\\"\"]],[false,{\".fa-igloo:before\":false},[\"content:\\\"\\uf7ae\\\"\"]],[false,{\".fa-image:before\":false},[\"content:\\\"\\uf03e\\\"\"]],[false,{\".fa-image-portrait:before\":false,\".fa-portrait:before\":false},[\"content:\\\"\\uf3e0\\\"\"]],[false,{\".fa-images:before\":false},[\"content:\\\"\\uf302\\\"\"]],[false,{\".fa-inbox:before\":false},[\"content:\\\"\\uf01c\\\"\"]],[false,{\".fa-indent:before\":false},[\"content:\\\"\\uf03c\\\"\"]],[false,{\".fa-indian-rupee-sign:before\":false,\".fa-indian-rupee:before\":false,\".fa-inr:before\":false},[\"content:\\\"\\ue1bc\\\"\"]],[false,{\".fa-industry:before\":false},[\"content:\\\"\\uf275\\\"\"]],[false,{\".fa-infinity:before\":false},[\"content:\\\"\\uf534\\\"\"]],[false,{\".fa-info:before\":false},[\"content:\\\"\\uf129\\\"\"]],[false,{\".fa-italic:before\":false},[\"content:\\\"\\uf033\\\"\"]],[false,{\".fa-j:before\":false},[\"content:\\\"J\\\"\"]],[false,{\".fa-jar:before\":false},[\"content:\\\"\\ue516\\\"\"]],[false,{\".fa-jar-wheat:before\":false},[\"content:\\\"\\ue517\\\"\"]],[false,{\".fa-jedi:before\":false},[\"content:\\\"\\uf669\\\"\"]],[false,{\".fa-fighter-jet:before\":false,\".fa-jet-fighter:before\":false},[\"content:\\\"\\uf0fb\\\"\"]],[false,{\".fa-jet-fighter-up:before\":false},[\"content:\\\"\\ue518\\\"\"]],[false,{\".fa-joint:before\":false},[\"content:\\\"\\uf595\\\"\"]],[false,{\".fa-jug-detergent:before\":false},[\"content:\\\"\\ue519\\\"\"]],[false,{\".fa-k:before\":false},[\"content:\\\"K\\\"\"]],[false,{\".fa-kaaba:before\":false},[\"content:\\\"\\uf66b\\\"\"]],[false,{\".fa-key:before\":false},[\"content:\\\"\\uf084\\\"\"]],[false,{\".fa-keyboard:before\":false},[\"content:\\\"\\uf11c\\\"\"]],[false,{\".fa-khanda:before\":false},[\"content:\\\"\\uf66d\\\"\"]],[false,{\".fa-kip-sign:before\":false},[\"content:\\\"\\ue1c4\\\"\"]],[false,{\".fa-first-aid:before\":false,\".fa-kit-medical:before\":false},[\"content:\\\"\\uf479\\\"\"]],[false,{\".fa-kitchen-set:before\":false},[\"content:\\\"\\ue51a\\\"\"]],[false,{\".fa-kiwi-bird:before\":false},[\"content:\\\"\\uf535\\\"\"]],[false,{\".fa-l:before\":false},[\"content:\\\"L\\\"\"]],[false,{\".fa-land-mine-on:before\":false},[\"content:\\\"\\ue51b\\\"\"]],[false,{\".fa-landmark:before\":false},[\"content:\\\"\\uf66f\\\"\"]],[false,{\".fa-landmark-alt:before\":false,\".fa-landmark-dome:before\":false},[\"content:\\\"\\uf752\\\"\"]],[false,{\".fa-landmark-flag:before\":false},[\"content:\\\"\\ue51c\\\"\"]],[false,{\".fa-language:before\":false},[\"content:\\\"\\uf1ab\\\"\"]],[false,{\".fa-laptop:before\":false},[\"content:\\\"\\uf109\\\"\"]],[false,{\".fa-laptop-code:before\":false},[\"content:\\\"\\uf5fc\\\"\"]],[false,{\".fa-laptop-file:before\":false},[\"content:\\\"\\ue51d\\\"\"]],[false,{\".fa-laptop-medical:before\":false},[\"content:\\\"\\uf812\\\"\"]],[false,{\".fa-lari-sign:before\":false},[\"content:\\\"\\ue1c8\\\"\"]],[false,{\".fa-layer-group:before\":false},[\"content:\\\"\\uf5fd\\\"\"]],[false,{\".fa-leaf:before\":false},[\"content:\\\"\\uf06c\\\"\"]],[false,{\".fa-left-long:before\":false,\".fa-long-arrow-alt-left:before\":false},[\"content:\\\"\\uf30a\\\"\"]],[false,{\".fa-arrows-alt-h:before\":false,\".fa-left-right:before\":false},[\"content:\\\"\\uf337\\\"\"]],[false,{\".fa-lemon:before\":false},[\"content:\\\"\\uf094\\\"\"]],[false,{\".fa-less-than:before\":false},[\"content:\\\"<\\\"\"]],[false,{\".fa-less-than-equal:before\":false},[\"content:\\\"\\uf537\\\"\"]],[false,{\".fa-life-ring:before\":false},[\"content:\\\"\\uf1cd\\\"\"]],[false,{\".fa-lightbulb:before\":false},[\"content:\\\"\\uf0eb\\\"\"]],[false,{\".fa-lines-leaning:before\":false},[\"content:\\\"\\ue51e\\\"\"]],[false,{\".fa-chain:before\":false,\".fa-link:before\":false},[\"content:\\\"\\uf0c1\\\"\"]],[false,{\".fa-chain-broken:before\":false,\".fa-chain-slash:before\":false,\".fa-link-slash:before\":false,\".fa-unlink:before\":false},[\"content:\\\"\\uf127\\\"\"]],[false,{\".fa-lira-sign:before\":false},[\"content:\\\"\\uf195\\\"\"]],[false,{\".fa-list-squares:before\":false,\".fa-list:before\":false},[\"content:\\\"\\uf03a\\\"\"]],[false,{\".fa-list-check:before\":false,\".fa-tasks:before\":false},[\"content:\\\"\\uf0ae\\\"\"]],[false,{\".fa-list-1-2:before\":false,\".fa-list-numeric:before\":false,\".fa-list-ol:before\":false},[\"content:\\\"\\uf0cb\\\"\"]],[false,{\".fa-list-dots:before\":false,\".fa-list-ul:before\":false},[\"content:\\\"\\uf0ca\\\"\"]],[false,{\".fa-litecoin-sign:before\":false},[\"content:\\\"\\ue1d3\\\"\"]],[false,{\".fa-location-arrow:before\":false},[\"content:\\\"\\uf124\\\"\"]],[false,{\".fa-location-crosshairs:before\":false,\".fa-location:before\":false},[\"content:\\\"\\uf601\\\"\"]],[false,{\".fa-location-dot:before\":false,\".fa-map-marker-alt:before\":false},[\"content:\\\"\\uf3c5\\\"\"]],[false,{\".fa-location-pin:before\":false,\".fa-map-marker:before\":false},[\"content:\\\"\\uf041\\\"\"]],[false,{\".fa-location-pin-lock:before\":false},[\"content:\\\"\\ue51f\\\"\"]],[false,{\".fa-lock:before\":false},[\"content:\\\"\\uf023\\\"\"]],[false,{\".fa-lock-open:before\":false},[\"content:\\\"\\uf3c1\\\"\"]],[false,{\".fa-locust:before\":false},[\"content:\\\"\\ue520\\\"\"]],[false,{\".fa-lungs:before\":false},[\"content:\\\"\\uf604\\\"\"]],[false,{\".fa-lungs-virus:before\":false},[\"content:\\\"\\ue067\\\"\"]],[false,{\".fa-m:before\":false},[\"content:\\\"M\\\"\"]],[false,{\".fa-magnet:before\":false},[\"content:\\\"\\uf076\\\"\"]],[false,{\".fa-magnifying-glass:before\":false,\".fa-search:before\":false},[\"content:\\\"\\uf002\\\"\"]],[false,{\".fa-magnifying-glass-arrow-right:before\":false},[\"content:\\\"\\ue521\\\"\"]],[false,{\".fa-magnifying-glass-chart:before\":false},[\"content:\\\"\\ue522\\\"\"]],[false,{\".fa-magnifying-glass-dollar:before\":false,\".fa-search-dollar:before\":false},[\"content:\\\"\\uf688\\\"\"]],[false,{\".fa-magnifying-glass-location:before\":false,\".fa-search-location:before\":false},[\"content:\\\"\\uf689\\\"\"]],[false,{\".fa-magnifying-glass-minus:before\":false,\".fa-search-minus:before\":false},[\"content:\\\"\\uf010\\\"\"]],[false,{\".fa-magnifying-glass-plus:before\":false,\".fa-search-plus:before\":false},[\"content:\\\"\\uf00e\\\"\"]],[false,{\".fa-manat-sign:before\":false},[\"content:\\\"\\ue1d5\\\"\"]],[false,{\".fa-map:before\":false},[\"content:\\\"\\uf279\\\"\"]],[false,{\".fa-map-location:before\":false,\".fa-map-marked:before\":false},[\"content:\\\"\\uf59f\\\"\"]],[false,{\".fa-map-location-dot:before\":false,\".fa-map-marked-alt:before\":false},[\"content:\\\"\\uf5a0\\\"\"]],[false,{\".fa-map-pin:before\":false},[\"content:\\\"\\uf276\\\"\"]],[false,{\".fa-marker:before\":false},[\"content:\\\"\\uf5a1\\\"\"]],[false,{\".fa-mars:before\":false},[\"content:\\\"\\uf222\\\"\"]],[false,{\".fa-mars-and-venus:before\":false},[\"content:\\\"\\uf224\\\"\"]],[false,{\".fa-mars-and-venus-burst:before\":false},[\"content:\\\"\\ue523\\\"\"]],[false,{\".fa-mars-double:before\":false},[\"content:\\\"\\uf227\\\"\"]],[false,{\".fa-mars-stroke:before\":false},[\"content:\\\"\\uf229\\\"\"]],[false,{\".fa-mars-stroke-h:before\":false,\".fa-mars-stroke-right:before\":false},[\"content:\\\"\\uf22b\\\"\"]],[false,{\".fa-mars-stroke-up:before\":false,\".fa-mars-stroke-v:before\":false},[\"content:\\\"\\uf22a\\\"\"]],[false,{\".fa-glass-martini-alt:before\":false,\".fa-martini-glass:before\":false},[\"content:\\\"\\uf57b\\\"\"]],[false,{\".fa-cocktail:before\":false,\".fa-martini-glass-citrus:before\":false},[\"content:\\\"\\uf561\\\"\"]],[false,{\".fa-glass-martini:before\":false,\".fa-martini-glass-empty:before\":false},[\"content:\\\"\\uf000\\\"\"]],[false,{\".fa-mask:before\":false},[\"content:\\\"\\uf6fa\\\"\"]],[false,{\".fa-mask-face:before\":false},[\"content:\\\"\\ue1d7\\\"\"]],[false,{\".fa-mask-ventilator:before\":false},[\"content:\\\"\\ue524\\\"\"]],[false,{\".fa-masks-theater:before\":false,\".fa-theater-masks:before\":false},[\"content:\\\"\\uf630\\\"\"]],[false,{\".fa-mattress-pillow:before\":false},[\"content:\\\"\\ue525\\\"\"]],[false,{\".fa-expand-arrows-alt:before\":false,\".fa-maximize:before\":false},[\"content:\\\"\\uf31e\\\"\"]],[false,{\".fa-medal:before\":false},[\"content:\\\"\\uf5a2\\\"\"]],[false,{\".fa-memory:before\":false},[\"content:\\\"\\uf538\\\"\"]],[false,{\".fa-menorah:before\":false},[\"content:\\\"\\uf676\\\"\"]],[false,{\".fa-mercury:before\":false},[\"content:\\\"\\uf223\\\"\"]],[false,{\".fa-comment-alt:before\":false,\".fa-message:before\":false},[\"content:\\\"\\uf27a\\\"\"]],[false,{\".fa-meteor:before\":false},[\"content:\\\"\\uf753\\\"\"]],[false,{\".fa-microchip:before\":false},[\"content:\\\"\\uf2db\\\"\"]],[false,{\".fa-microphone:before\":false},[\"content:\\\"\\uf130\\\"\"]],[false,{\".fa-microphone-alt:before\":false,\".fa-microphone-lines:before\":false},[\"content:\\\"\\uf3c9\\\"\"]],[false,{\".fa-microphone-alt-slash:before\":false,\".fa-microphone-lines-slash:before\":false},[\"content:\\\"\\uf539\\\"\"]],[false,{\".fa-microphone-slash:before\":false},[\"content:\\\"\\uf131\\\"\"]],[false,{\".fa-microscope:before\":false},[\"content:\\\"\\uf610\\\"\"]],[false,{\".fa-mill-sign:before\":false},[\"content:\\\"\\ue1ed\\\"\"]],[false,{\".fa-compress-arrows-alt:before\":false,\".fa-minimize:before\":false},[\"content:\\\"\\uf78c\\\"\"]],[false,{\".fa-minus:before\":false,\".fa-subtract:before\":false},[\"content:\\\"\\uf068\\\"\"]],[false,{\".fa-mitten:before\":false},[\"content:\\\"\\uf7b5\\\"\"]],[false,{\".fa-mobile-android:before\":false,\".fa-mobile-phone:before\":false,\".fa-mobile:before\":false},[\"content:\\\"\\uf3ce\\\"\"]],[false,{\".fa-mobile-button:before\":false},[\"content:\\\"\\uf10b\\\"\"]],[false,{\".fa-mobile-retro:before\":false},[\"content:\\\"\\ue527\\\"\"]],[false,{\".fa-mobile-android-alt:before\":false,\".fa-mobile-screen:before\":false},[\"content:\\\"\\uf3cf\\\"\"]],[false,{\".fa-mobile-alt:before\":false,\".fa-mobile-screen-button:before\":false},[\"content:\\\"\\uf3cd\\\"\"]],[false,{\".fa-money-bill:before\":false},[\"content:\\\"\\uf0d6\\\"\"]],[false,{\".fa-money-bill-1:before\":false,\".fa-money-bill-alt:before\":false},[\"content:\\\"\\uf3d1\\\"\"]],[false,{\".fa-money-bill-1-wave:before\":false,\".fa-money-bill-wave-alt:before\":false},[\"content:\\\"\\uf53b\\\"\"]],[false,{\".fa-money-bill-transfer:before\":false},[\"content:\\\"\\ue528\\\"\"]],[false,{\".fa-money-bill-trend-up:before\":false},[\"content:\\\"\\ue529\\\"\"]],[false,{\".fa-money-bill-wave:before\":false},[\"content:\\\"\\uf53a\\\"\"]],[false,{\".fa-money-bill-wheat:before\":false},[\"content:\\\"\\ue52a\\\"\"]],[false,{\".fa-money-bills:before\":false},[\"content:\\\"\\ue1f3\\\"\"]],[false,{\".fa-money-check:before\":false},[\"content:\\\"\\uf53c\\\"\"]],[false,{\".fa-money-check-alt:before\":false,\".fa-money-check-dollar:before\":false},[\"content:\\\"\\uf53d\\\"\"]],[false,{\".fa-monument:before\":false},[\"content:\\\"\\uf5a6\\\"\"]],[false,{\".fa-moon:before\":false},[\"content:\\\"\\uf186\\\"\"]],[false,{\".fa-mortar-pestle:before\":false},[\"content:\\\"\\uf5a7\\\"\"]],[false,{\".fa-mosque:before\":false},[\"content:\\\"\\uf678\\\"\"]],[false,{\".fa-mosquito:before\":false},[\"content:\\\"\\ue52b\\\"\"]],[false,{\".fa-mosquito-net:before\":false},[\"content:\\\"\\ue52c\\\"\"]],[false,{\".fa-motorcycle:before\":false},[\"content:\\\"\\uf21c\\\"\"]],[false,{\".fa-mound:before\":false},[\"content:\\\"\\ue52d\\\"\"]],[false,{\".fa-mountain:before\":false},[\"content:\\\"\\uf6fc\\\"\"]],[false,{\".fa-mountain-city:before\":false},[\"content:\\\"\\ue52e\\\"\"]],[false,{\".fa-mountain-sun:before\":false},[\"content:\\\"\\ue52f\\\"\"]],[false,{\".fa-mug-hot:before\":false},[\"content:\\\"\\uf7b6\\\"\"]],[false,{\".fa-coffee:before\":false,\".fa-mug-saucer:before\":false},[\"content:\\\"\\uf0f4\\\"\"]],[false,{\".fa-music:before\":false},[\"content:\\\"\\uf001\\\"\"]],[false,{\".fa-n:before\":false},[\"content:\\\"N\\\"\"]],[false,{\".fa-naira-sign:before\":false},[\"content:\\\"\\ue1f6\\\"\"]],[false,{\".fa-network-wired:before\":false},[\"content:\\\"\\uf6ff\\\"\"]],[false,{\".fa-neuter:before\":false},[\"content:\\\"\\uf22c\\\"\"]],[false,{\".fa-newspaper:before\":false},[\"content:\\\"\\uf1ea\\\"\"]],[false,{\".fa-not-equal:before\":false},[\"content:\\\"\\uf53e\\\"\"]],[false,{\".fa-note-sticky:before\":false,\".fa-sticky-note:before\":false},[\"content:\\\"\\uf249\\\"\"]],[false,{\".fa-notes-medical:before\":false},[\"content:\\\"\\uf481\\\"\"]],[false,{\".fa-o:before\":false},[\"content:\\\"O\\\"\"]],[false,{\".fa-object-group:before\":false},[\"content:\\\"\\uf247\\\"\"]],[false,{\".fa-object-ungroup:before\":false},[\"content:\\\"\\uf248\\\"\"]],[false,{\".fa-oil-can:before\":false},[\"content:\\\"\\uf613\\\"\"]],[false,{\".fa-oil-well:before\":false},[\"content:\\\"\\ue532\\\"\"]],[false,{\".fa-om:before\":false},[\"content:\\\"\\uf679\\\"\"]],[false,{\".fa-otter:before\":false},[\"content:\\\"\\uf700\\\"\"]],[false,{\".fa-dedent:before\":false,\".fa-outdent:before\":false},[\"content:\\\"\\uf03b\\\"\"]],[false,{\".fa-p:before\":false},[\"content:\\\"P\\\"\"]],[false,{\".fa-pager:before\":false},[\"content:\\\"\\uf815\\\"\"]],[false,{\".fa-paint-roller:before\":false},[\"content:\\\"\\uf5aa\\\"\"]],[false,{\".fa-paint-brush:before\":false,\".fa-paintbrush:before\":false},[\"content:\\\"\\uf1fc\\\"\"]],[false,{\".fa-palette:before\":false},[\"content:\\\"\\uf53f\\\"\"]],[false,{\".fa-pallet:before\":false},[\"content:\\\"\\uf482\\\"\"]],[false,{\".fa-panorama:before\":false},[\"content:\\\"\\ue209\\\"\"]],[false,{\".fa-paper-plane:before\":false},[\"content:\\\"\\uf1d8\\\"\"]],[false,{\".fa-paperclip:before\":false},[\"content:\\\"\\uf0c6\\\"\"]],[false,{\".fa-parachute-box:before\":false},[\"content:\\\"\\uf4cd\\\"\"]],[false,{\".fa-paragraph:before\":false},[\"content:\\\"\\uf1dd\\\"\"]],[false,{\".fa-passport:before\":false},[\"content:\\\"\\uf5ab\\\"\"]],[false,{\".fa-file-clipboard:before\":false,\".fa-paste:before\":false},[\"content:\\\"\\uf0ea\\\"\"]],[false,{\".fa-pause:before\":false},[\"content:\\\"\\uf04c\\\"\"]],[false,{\".fa-paw:before\":false},[\"content:\\\"\\uf1b0\\\"\"]],[false,{\".fa-peace:before\":false},[\"content:\\\"\\uf67c\\\"\"]],[false,{\".fa-pen:before\":false},[\"content:\\\"\\uf304\\\"\"]],[false,{\".fa-pen-alt:before\":false,\".fa-pen-clip:before\":false},[\"content:\\\"\\uf305\\\"\"]],[false,{\".fa-pen-fancy:before\":false},[\"content:\\\"\\uf5ac\\\"\"]],[false,{\".fa-pen-nib:before\":false},[\"content:\\\"\\uf5ad\\\"\"]],[false,{\".fa-pen-ruler:before\":false,\".fa-pencil-ruler:before\":false},[\"content:\\\"\\uf5ae\\\"\"]],[false,{\".fa-edit:before\":false,\".fa-pen-to-square:before\":false},[\"content:\\\"\\uf044\\\"\"]],[false,{\".fa-pencil-alt:before\":false,\".fa-pencil:before\":false},[\"content:\\\"\\uf303\\\"\"]],[false,{\".fa-people-arrows-left-right:before\":false,\".fa-people-arrows:before\":false},[\"content:\\\"\\ue068\\\"\"]],[false,{\".fa-people-carry-box:before\":false,\".fa-people-carry:before\":false},[\"content:\\\"\\uf4ce\\\"\"]],[false,{\".fa-people-group:before\":false},[\"content:\\\"\\ue533\\\"\"]],[false,{\".fa-people-line:before\":false},[\"content:\\\"\\ue534\\\"\"]],[false,{\".fa-people-pulling:before\":false},[\"content:\\\"\\ue535\\\"\"]],[false,{\".fa-people-robbery:before\":false},[\"content:\\\"\\ue536\\\"\"]],[false,{\".fa-people-roof:before\":false},[\"content:\\\"\\ue537\\\"\"]],[false,{\".fa-pepper-hot:before\":false},[\"content:\\\"\\uf816\\\"\"]],[false,{\".fa-percent:before\":false,\".fa-percentage:before\":false},[\"content:\\\"%\\\"\"]],[false,{\".fa-male:before\":false,\".fa-person:before\":false},[\"content:\\\"\\uf183\\\"\"]],[false,{\".fa-person-arrow-down-to-line:before\":false},[\"content:\\\"\\ue538\\\"\"]],[false,{\".fa-person-arrow-up-from-line:before\":false},[\"content:\\\"\\ue539\\\"\"]],[false,{\".fa-biking:before\":false,\".fa-person-biking:before\":false},[\"content:\\\"\\uf84a\\\"\"]],[false,{\".fa-person-booth:before\":false},[\"content:\\\"\\uf756\\\"\"]],[false,{\".fa-person-breastfeeding:before\":false},[\"content:\\\"\\ue53a\\\"\"]],[false,{\".fa-person-burst:before\":false},[\"content:\\\"\\ue53b\\\"\"]],[false,{\".fa-person-cane:before\":false},[\"content:\\\"\\ue53c\\\"\"]],[false,{\".fa-person-chalkboard:before\":false},[\"content:\\\"\\ue53d\\\"\"]],[false,{\".fa-person-circle-check:before\":false},[\"content:\\\"\\ue53e\\\"\"]],[false,{\".fa-person-circle-exclamation:before\":false},[\"content:\\\"\\ue53f\\\"\"]],[false,{\".fa-person-circle-minus:before\":false},[\"content:\\\"\\ue540\\\"\"]],[false,{\".fa-person-circle-plus:before\":false},[\"content:\\\"\\ue541\\\"\"]],[false,{\".fa-person-circle-question:before\":false},[\"content:\\\"\\ue542\\\"\"]],[false,{\".fa-person-circle-xmark:before\":false},[\"content:\\\"\\ue543\\\"\"]],[false,{\".fa-digging:before\":false,\".fa-person-digging:before\":false},[\"content:\\\"\\uf85e\\\"\"]],[false,{\".fa-diagnoses:before\":false,\".fa-person-dots-from-line:before\":false},[\"content:\\\"\\uf470\\\"\"]],[false,{\".fa-female:before\":false,\".fa-person-dress:before\":false},[\"content:\\\"\\uf182\\\"\"]],[false,{\".fa-person-dress-burst:before\":false},[\"content:\\\"\\ue544\\\"\"]],[false,{\".fa-person-drowning:before\":false},[\"content:\\\"\\ue545\\\"\"]],[false,{\".fa-person-falling:before\":false},[\"content:\\\"\\ue546\\\"\"]],[false,{\".fa-person-falling-burst:before\":false},[\"content:\\\"\\ue547\\\"\"]],[false,{\".fa-person-half-dress:before\":false},[\"content:\\\"\\ue548\\\"\"]],[false,{\".fa-person-harassing:before\":false},[\"content:\\\"\\ue549\\\"\"]],[false,{\".fa-hiking:before\":false,\".fa-person-hiking:before\":false},[\"content:\\\"\\uf6ec\\\"\"]],[false,{\".fa-person-military-pointing:before\":false},[\"content:\\\"\\ue54a\\\"\"]],[false,{\".fa-person-military-rifle:before\":false},[\"content:\\\"\\ue54b\\\"\"]],[false,{\".fa-person-military-to-person:before\":false},[\"content:\\\"\\ue54c\\\"\"]],[false,{\".fa-person-praying:before\":false,\".fa-pray:before\":false},[\"content:\\\"\\uf683\\\"\"]],[false,{\".fa-person-pregnant:before\":false},[\"content:\\\"\\ue31e\\\"\"]],[false,{\".fa-person-rays:before\":false},[\"content:\\\"\\ue54d\\\"\"]],[false,{\".fa-person-rifle:before\":false},[\"content:\\\"\\ue54e\\\"\"]],[false,{\".fa-person-running:before\":false,\".fa-running:before\":false},[\"content:\\\"\\uf70c\\\"\"]],[false,{\".fa-person-shelter:before\":false},[\"content:\\\"\\ue54f\\\"\"]],[false,{\".fa-person-skating:before\":false,\".fa-skating:before\":false},[\"content:\\\"\\uf7c5\\\"\"]],[false,{\".fa-person-skiing:before\":false,\".fa-skiing:before\":false},[\"content:\\\"\\uf7c9\\\"\"]],[false,{\".fa-person-skiing-nordic:before\":false,\".fa-skiing-nordic:before\":false},[\"content:\\\"\\uf7ca\\\"\"]],[false,{\".fa-person-snowboarding:before\":false,\".fa-snowboarding:before\":false},[\"content:\\\"\\uf7ce\\\"\"]],[false,{\".fa-person-swimming:before\":false,\".fa-swimmer:before\":false},[\"content:\\\"\\uf5c4\\\"\"]],[false,{\".fa-person-through-window:before\":false},[\"content:\\\"\\ue433\\\"\"]],[false,{\".fa-person-walking:before\":false,\".fa-walking:before\":false},[\"content:\\\"\\uf554\\\"\"]],[false,{\".fa-person-walking-arrow-loop-left:before\":false},[\"content:\\\"\\ue551\\\"\"]],[false,{\".fa-person-walking-arrow-right:before\":false},[\"content:\\\"\\ue552\\\"\"]],[false,{\".fa-person-walking-dashed-line-arrow-right:before\":false},[\"content:\\\"\\ue553\\\"\"]],[false,{\".fa-person-walking-luggage:before\":false},[\"content:\\\"\\ue554\\\"\"]],[false,{\".fa-blind:before\":false,\".fa-person-walking-with-cane:before\":false},[\"content:\\\"\\uf29d\\\"\"]],[false,{\".fa-peseta-sign:before\":false},[\"content:\\\"\\ue221\\\"\"]],[false,{\".fa-peso-sign:before\":false},[\"content:\\\"\\ue222\\\"\"]],[false,{\".fa-phone:before\":false},[\"content:\\\"\\uf095\\\"\"]],[false,{\".fa-phone-alt:before\":false,\".fa-phone-flip:before\":false},[\"content:\\\"\\uf879\\\"\"]],[false,{\".fa-phone-slash:before\":false},[\"content:\\\"\\uf3dd\\\"\"]],[false,{\".fa-phone-volume:before\":false,\".fa-volume-control-phone:before\":false},[\"content:\\\"\\uf2a0\\\"\"]],[false,{\".fa-photo-film:before\":false,\".fa-photo-video:before\":false},[\"content:\\\"\\uf87c\\\"\"]],[false,{\".fa-piggy-bank:before\":false},[\"content:\\\"\\uf4d3\\\"\"]],[false,{\".fa-pills:before\":false},[\"content:\\\"\\uf484\\\"\"]],[false,{\".fa-pizza-slice:before\":false},[\"content:\\\"\\uf818\\\"\"]],[false,{\".fa-place-of-worship:before\":false},[\"content:\\\"\\uf67f\\\"\"]],[false,{\".fa-plane:before\":false},[\"content:\\\"\\uf072\\\"\"]],[false,{\".fa-plane-arrival:before\":false},[\"content:\\\"\\uf5af\\\"\"]],[false,{\".fa-plane-circle-check:before\":false},[\"content:\\\"\\ue555\\\"\"]],[false,{\".fa-plane-circle-exclamation:before\":false},[\"content:\\\"\\ue556\\\"\"]],[false,{\".fa-plane-circle-xmark:before\":false},[\"content:\\\"\\ue557\\\"\"]],[false,{\".fa-plane-departure:before\":false},[\"content:\\\"\\uf5b0\\\"\"]],[false,{\".fa-plane-lock:before\":false},[\"content:\\\"\\ue558\\\"\"]],[false,{\".fa-plane-slash:before\":false},[\"content:\\\"\\ue069\\\"\"]],[false,{\".fa-plane-up:before\":false},[\"content:\\\"\\ue22d\\\"\"]],[false,{\".fa-plant-wilt:before\":false},[\"content:\\\"\\ue43b\\\"\"]],[false,{\".fa-plate-wheat:before\":false},[\"content:\\\"\\ue55a\\\"\"]],[false,{\".fa-play:before\":false},[\"content:\\\"\\uf04b\\\"\"]],[false,{\".fa-plug:before\":false},[\"content:\\\"\\uf1e6\\\"\"]],[false,{\".fa-plug-circle-bolt:before\":false},[\"content:\\\"\\ue55b\\\"\"]],[false,{\".fa-plug-circle-check:before\":false},[\"content:\\\"\\ue55c\\\"\"]],[false,{\".fa-plug-circle-exclamation:before\":false},[\"content:\\\"\\ue55d\\\"\"]],[false,{\".fa-plug-circle-minus:before\":false},[\"content:\\\"\\ue55e\\\"\"]],[false,{\".fa-plug-circle-plus:before\":false},[\"content:\\\"\\ue55f\\\"\"]],[false,{\".fa-plug-circle-xmark:before\":false},[\"content:\\\"\\ue560\\\"\"]],[false,{\".fa-add:before\":false,\".fa-plus:before\":false},[\"content:\\\"+\\\"\"]],[false,{\".fa-plus-minus:before\":false},[\"content:\\\"\\ue43c\\\"\"]],[false,{\".fa-podcast:before\":false},[\"content:\\\"\\uf2ce\\\"\"]],[false,{\".fa-poo:before\":false},[\"content:\\\"\\uf2fe\\\"\"]],[false,{\".fa-poo-bolt:before\":false,\".fa-poo-storm:before\":false},[\"content:\\\"\\uf75a\\\"\"]],[false,{\".fa-poop:before\":false},[\"content:\\\"\\uf619\\\"\"]],[false,{\".fa-power-off:before\":false},[\"content:\\\"\\uf011\\\"\"]],[false,{\".fa-prescription:before\":false},[\"content:\\\"\\uf5b1\\\"\"]],[false,{\".fa-prescription-bottle:before\":false},[\"content:\\\"\\uf485\\\"\"]],[false,{\".fa-prescription-bottle-alt:before\":false,\".fa-prescription-bottle-medical:before\":false},[\"content:\\\"\\uf486\\\"\"]],[false,{\".fa-print:before\":false},[\"content:\\\"\\uf02f\\\"\"]],[false,{\".fa-pump-medical:before\":false},[\"content:\\\"\\ue06a\\\"\"]],[false,{\".fa-pump-soap:before\":false},[\"content:\\\"\\ue06b\\\"\"]],[false,{\".fa-puzzle-piece:before\":false},[\"content:\\\"\\uf12e\\\"\"]],[false,{\".fa-q:before\":false},[\"content:\\\"Q\\\"\"]],[false,{\".fa-qrcode:before\":false},[\"content:\\\"\\uf029\\\"\"]],[false,{\".fa-question:before\":false},[\"content:\\\"?\\\"\"]],[false,{\".fa-quote-left-alt:before\":false,\".fa-quote-left:before\":false},[\"content:\\\"\\uf10d\\\"\"]],[false,{\".fa-quote-right-alt:before\":false,\".fa-quote-right:before\":false},[\"content:\\\"\\uf10e\\\"\"]],[false,{\".fa-r:before\":false},[\"content:\\\"R\\\"\"]],[false,{\".fa-radiation:before\":false},[\"content:\\\"\\uf7b9\\\"\"]],[false,{\".fa-radio:before\":false},[\"content:\\\"\\uf8d7\\\"\"]],[false,{\".fa-rainbow:before\":false},[\"content:\\\"\\uf75b\\\"\"]],[false,{\".fa-ranking-star:before\":false},[\"content:\\\"\\ue561\\\"\"]],[false,{\".fa-receipt:before\":false},[\"content:\\\"\\uf543\\\"\"]],[false,{\".fa-record-vinyl:before\":false},[\"content:\\\"\\uf8d9\\\"\"]],[false,{\".fa-ad:before\":false,\".fa-rectangle-ad:before\":false},[\"content:\\\"\\uf641\\\"\"]],[false,{\".fa-list-alt:before\":false,\".fa-rectangle-list:before\":false},[\"content:\\\"\\uf022\\\"\"]],[false,{\".fa-rectangle-times:before\":false,\".fa-rectangle-xmark:before\":false,\".fa-times-rectangle:before\":false,\".fa-window-close:before\":false},[\"content:\\\"\\uf410\\\"\"]],[false,{\".fa-recycle:before\":false},[\"content:\\\"\\uf1b8\\\"\"]],[false,{\".fa-registered:before\":false},[\"content:\\\"\\uf25d\\\"\"]],[false,{\".fa-repeat:before\":false},[\"content:\\\"\\uf363\\\"\"]],[false,{\".fa-mail-reply:before\":false,\".fa-reply:before\":false},[\"content:\\\"\\uf3e5\\\"\"]],[false,{\".fa-mail-reply-all:before\":false,\".fa-reply-all:before\":false},[\"content:\\\"\\uf122\\\"\"]],[false,{\".fa-republican:before\":false},[\"content:\\\"\\uf75e\\\"\"]],[false,{\".fa-restroom:before\":false},[\"content:\\\"\\uf7bd\\\"\"]],[false,{\".fa-retweet:before\":false},[\"content:\\\"\\uf079\\\"\"]],[false,{\".fa-ribbon:before\":false},[\"content:\\\"\\uf4d6\\\"\"]],[false,{\".fa-right-from-bracket:before\":false,\".fa-sign-out-alt:before\":false},[\"content:\\\"\\uf2f5\\\"\"]],[false,{\".fa-exchange-alt:before\":false,\".fa-right-left:before\":false},[\"content:\\\"\\uf362\\\"\"]],[false,{\".fa-long-arrow-alt-right:before\":false,\".fa-right-long:before\":false},[\"content:\\\"\\uf30b\\\"\"]],[false,{\".fa-right-to-bracket:before\":false,\".fa-sign-in-alt:before\":false},[\"content:\\\"\\uf2f6\\\"\"]],[false,{\".fa-ring:before\":false},[\"content:\\\"\\uf70b\\\"\"]],[false,{\".fa-road:before\":false},[\"content:\\\"\\uf018\\\"\"]],[false,{\".fa-road-barrier:before\":false},[\"content:\\\"\\ue562\\\"\"]],[false,{\".fa-road-bridge:before\":false},[\"content:\\\"\\ue563\\\"\"]],[false,{\".fa-road-circle-check:before\":false},[\"content:\\\"\\ue564\\\"\"]],[false,{\".fa-road-circle-exclamation:before\":false},[\"content:\\\"\\ue565\\\"\"]],[false,{\".fa-road-circle-xmark:before\":false},[\"content:\\\"\\ue566\\\"\"]],[false,{\".fa-road-lock:before\":false},[\"content:\\\"\\ue567\\\"\"]],[false,{\".fa-road-spikes:before\":false},[\"content:\\\"\\ue568\\\"\"]],[false,{\".fa-robot:before\":false},[\"content:\\\"\\uf544\\\"\"]],[false,{\".fa-rocket:before\":false},[\"content:\\\"\\uf135\\\"\"]],[false,{\".fa-rotate:before\":false,\".fa-sync-alt:before\":false},[\"content:\\\"\\uf2f1\\\"\"]],[false,{\".fa-rotate-back:before\":false,\".fa-rotate-backward:before\":false,\".fa-rotate-left:before\":false,\".fa-undo-alt:before\":false},[\"content:\\\"\\uf2ea\\\"\"]],[false,{\".fa-redo-alt:before\":false,\".fa-rotate-forward:before\":false,\".fa-rotate-right:before\":false},[\"content:\\\"\\uf2f9\\\"\"]],[false,{\".fa-route:before\":false},[\"content:\\\"\\uf4d7\\\"\"]],[false,{\".fa-feed:before\":false,\".fa-rss:before\":false},[\"content:\\\"\\uf09e\\\"\"]],[false,{\".fa-rouble:before\":false,\".fa-rub:before\":false,\".fa-ruble-sign:before\":false,\".fa-ruble:before\":false},[\"content:\\\"\\uf158\\\"\"]],[false,{\".fa-rug:before\":false},[\"content:\\\"\\ue569\\\"\"]],[false,{\".fa-ruler:before\":false},[\"content:\\\"\\uf545\\\"\"]],[false,{\".fa-ruler-combined:before\":false},[\"content:\\\"\\uf546\\\"\"]],[false,{\".fa-ruler-horizontal:before\":false},[\"content:\\\"\\uf547\\\"\"]],[false,{\".fa-ruler-vertical:before\":false},[\"content:\\\"\\uf548\\\"\"]],[false,{\".fa-rupee-sign:before\":false,\".fa-rupee:before\":false},[\"content:\\\"\\uf156\\\"\"]],[false,{\".fa-rupiah-sign:before\":false},[\"content:\\\"\\ue23d\\\"\"]],[false,{\".fa-s:before\":false},[\"content:\\\"S\\\"\"]],[false,{\".fa-sack-dollar:before\":false},[\"content:\\\"\\uf81d\\\"\"]],[false,{\".fa-sack-xmark:before\":false},[\"content:\\\"\\ue56a\\\"\"]],[false,{\".fa-sailboat:before\":false},[\"content:\\\"\\ue445\\\"\"]],[false,{\".fa-satellite:before\":false},[\"content:\\\"\\uf7bf\\\"\"]],[false,{\".fa-satellite-dish:before\":false},[\"content:\\\"\\uf7c0\\\"\"]],[false,{\".fa-balance-scale:before\":false,\".fa-scale-balanced:before\":false},[\"content:\\\"\\uf24e\\\"\"]],[false,{\".fa-balance-scale-left:before\":false,\".fa-scale-unbalanced:before\":false},[\"content:\\\"\\uf515\\\"\"]],[false,{\".fa-balance-scale-right:before\":false,\".fa-scale-unbalanced-flip:before\":false},[\"content:\\\"\\uf516\\\"\"]],[false,{\".fa-school:before\":false},[\"content:\\\"\\uf549\\\"\"]],[false,{\".fa-school-circle-check:before\":false},[\"content:\\\"\\ue56b\\\"\"]],[false,{\".fa-school-circle-exclamation:before\":false},[\"content:\\\"\\ue56c\\\"\"]],[false,{\".fa-school-circle-xmark:before\":false},[\"content:\\\"\\ue56d\\\"\"]],[false,{\".fa-school-flag:before\":false},[\"content:\\\"\\ue56e\\\"\"]],[false,{\".fa-school-lock:before\":false},[\"content:\\\"\\ue56f\\\"\"]],[false,{\".fa-cut:before\":false,\".fa-scissors:before\":false},[\"content:\\\"\\uf0c4\\\"\"]],[false,{\".fa-screwdriver:before\":false},[\"content:\\\"\\uf54a\\\"\"]],[false,{\".fa-screwdriver-wrench:before\":false,\".fa-tools:before\":false},[\"content:\\\"\\uf7d9\\\"\"]],[false,{\".fa-scroll:before\":false},[\"content:\\\"\\uf70e\\\"\"]],[false,{\".fa-scroll-torah:before\":false,\".fa-torah:before\":false},[\"content:\\\"\\uf6a0\\\"\"]],[false,{\".fa-sd-card:before\":false},[\"content:\\\"\\uf7c2\\\"\"]],[false,{\".fa-section:before\":false},[\"content:\\\"\\ue447\\\"\"]],[false,{\".fa-seedling:before\":false,\".fa-sprout:before\":false},[\"content:\\\"\\uf4d8\\\"\"]],[false,{\".fa-server:before\":false},[\"content:\\\"\\uf233\\\"\"]],[false,{\".fa-shapes:before\":false,\".fa-triangle-circle-square:before\":false},[\"content:\\\"\\uf61f\\\"\"]],[false,{\".fa-arrow-turn-right:before\":false,\".fa-mail-forward:before\":false,\".fa-share:before\":false},[\"content:\\\"\\uf064\\\"\"]],[false,{\".fa-share-from-square:before\":false,\".fa-share-square:before\":false},[\"content:\\\"\\uf14d\\\"\"]],[false,{\".fa-share-alt:before\":false,\".fa-share-nodes:before\":false},[\"content:\\\"\\uf1e0\\\"\"]],[false,{\".fa-sheet-plastic:before\":false},[\"content:\\\"\\ue571\\\"\"]],[false,{\".fa-ils:before\":false,\".fa-shekel-sign:before\":false,\".fa-shekel:before\":false,\".fa-sheqel-sign:before\":false,\".fa-sheqel:before\":false},[\"content:\\\"\\uf20b\\\"\"]],[false,{\".fa-shield-blank:before\":false,\".fa-shield:before\":false},[\"content:\\\"\\uf132\\\"\"]],[false,{\".fa-shield-cat:before\":false},[\"content:\\\"\\ue572\\\"\"]],[false,{\".fa-shield-dog:before\":false},[\"content:\\\"\\ue573\\\"\"]],[false,{\".fa-shield-alt:before\":false,\".fa-shield-halved:before\":false},[\"content:\\\"\\uf3ed\\\"\"]],[false,{\".fa-shield-heart:before\":false},[\"content:\\\"\\ue574\\\"\"]],[false,{\".fa-shield-virus:before\":false},[\"content:\\\"\\ue06c\\\"\"]],[false,{\".fa-ship:before\":false},[\"content:\\\"\\uf21a\\\"\"]],[false,{\".fa-shirt:before\":false,\".fa-t-shirt:before\":false,\".fa-tshirt:before\":false},[\"content:\\\"\\uf553\\\"\"]],[false,{\".fa-shoe-prints:before\":false},[\"content:\\\"\\uf54b\\\"\"]],[false,{\".fa-shop:before\":false,\".fa-store-alt:before\":false},[\"content:\\\"\\uf54f\\\"\"]],[false,{\".fa-shop-lock:before\":false},[\"content:\\\"\\ue4a5\\\"\"]],[false,{\".fa-shop-slash:before\":false,\".fa-store-alt-slash:before\":false},[\"content:\\\"\\ue070\\\"\"]],[false,{\".fa-shower:before\":false},[\"content:\\\"\\uf2cc\\\"\"]],[false,{\".fa-shrimp:before\":false},[\"content:\\\"\\ue448\\\"\"]],[false,{\".fa-random:before\":false,\".fa-shuffle:before\":false},[\"content:\\\"\\uf074\\\"\"]],[false,{\".fa-shuttle-space:before\":false,\".fa-space-shuttle:before\":false},[\"content:\\\"\\uf197\\\"\"]],[false,{\".fa-sign-hanging:before\":false,\".fa-sign:before\":false},[\"content:\\\"\\uf4d9\\\"\"]],[false,{\".fa-signal-5:before\":false,\".fa-signal-perfect:before\":false,\".fa-signal:before\":false},[\"content:\\\"\\uf012\\\"\"]],[false,{\".fa-signature:before\":false},[\"content:\\\"\\uf5b7\\\"\"]],[false,{\".fa-map-signs:before\":false,\".fa-signs-post:before\":false},[\"content:\\\"\\uf277\\\"\"]],[false,{\".fa-sim-card:before\":false},[\"content:\\\"\\uf7c4\\\"\"]],[false,{\".fa-sink:before\":false},[\"content:\\\"\\ue06d\\\"\"]],[false,{\".fa-sitemap:before\":false},[\"content:\\\"\\uf0e8\\\"\"]],[false,{\".fa-skull:before\":false},[\"content:\\\"\\uf54c\\\"\"]],[false,{\".fa-skull-crossbones:before\":false},[\"content:\\\"\\uf714\\\"\"]],[false,{\".fa-slash:before\":false},[\"content:\\\"\\uf715\\\"\"]],[false,{\".fa-sleigh:before\":false},[\"content:\\\"\\uf7cc\\\"\"]],[false,{\".fa-sliders-h:before\":false,\".fa-sliders:before\":false},[\"content:\\\"\\uf1de\\\"\"]],[false,{\".fa-smog:before\":false},[\"content:\\\"\\uf75f\\\"\"]],[false,{\".fa-smoking:before\":false},[\"content:\\\"\\uf48d\\\"\"]],[false,{\".fa-snowflake:before\":false},[\"content:\\\"\\uf2dc\\\"\"]],[false,{\".fa-snowman:before\":false},[\"content:\\\"\\uf7d0\\\"\"]],[false,{\".fa-snowplow:before\":false},[\"content:\\\"\\uf7d2\\\"\"]],[false,{\".fa-soap:before\":false},[\"content:\\\"\\ue06e\\\"\"]],[false,{\".fa-socks:before\":false},[\"content:\\\"\\uf696\\\"\"]],[false,{\".fa-solar-panel:before\":false},[\"content:\\\"\\uf5ba\\\"\"]],[false,{\".fa-sort:before\":false,\".fa-unsorted:before\":false},[\"content:\\\"\\uf0dc\\\"\"]],[false,{\".fa-sort-desc:before\":false,\".fa-sort-down:before\":false},[\"content:\\\"\\uf0dd\\\"\"]],[false,{\".fa-sort-asc:before\":false,\".fa-sort-up:before\":false},[\"content:\\\"\\uf0de\\\"\"]],[false,{\".fa-spa:before\":false},[\"content:\\\"\\uf5bb\\\"\"]],[false,{\".fa-pastafarianism:before\":false,\".fa-spaghetti-monster-flying:before\":false},[\"content:\\\"\\uf67b\\\"\"]],[false,{\".fa-spell-check:before\":false},[\"content:\\\"\\uf891\\\"\"]],[false,{\".fa-spider:before\":false},[\"content:\\\"\\uf717\\\"\"]],[false,{\".fa-spinner:before\":false},[\"content:\\\"\\uf110\\\"\"]],[false,{\".fa-splotch:before\":false},[\"content:\\\"\\uf5bc\\\"\"]],[false,{\".fa-spoon:before\":false,\".fa-utensil-spoon:before\":false},[\"content:\\\"\\uf2e5\\\"\"]],[false,{\".fa-spray-can:before\":false},[\"content:\\\"\\uf5bd\\\"\"]],[false,{\".fa-air-freshener:before\":false,\".fa-spray-can-sparkles:before\":false},[\"content:\\\"\\uf5d0\\\"\"]],[false,{\".fa-square:before\":false},[\"content:\\\"\\uf0c8\\\"\"]],[false,{\".fa-external-link-square:before\":false,\".fa-square-arrow-up-right:before\":false},[\"content:\\\"\\uf14c\\\"\"]],[false,{\".fa-caret-square-down:before\":false,\".fa-square-caret-down:before\":false},[\"content:\\\"\\uf150\\\"\"]],[false,{\".fa-caret-square-left:before\":false,\".fa-square-caret-left:before\":false},[\"content:\\\"\\uf191\\\"\"]],[false,{\".fa-caret-square-right:before\":false,\".fa-square-caret-right:before\":false},[\"content:\\\"\\uf152\\\"\"]],[false,{\".fa-caret-square-up:before\":false,\".fa-square-caret-up:before\":false},[\"content:\\\"\\uf151\\\"\"]],[false,{\".fa-check-square:before\":false,\".fa-square-check:before\":false},[\"content:\\\"\\uf14a\\\"\"]],[false,{\".fa-envelope-square:before\":false,\".fa-square-envelope:before\":false},[\"content:\\\"\\uf199\\\"\"]],[false,{\".fa-square-full:before\":false},[\"content:\\\"\\uf45c\\\"\"]],[false,{\".fa-h-square:before\":false,\".fa-square-h:before\":false},[\"content:\\\"\\uf0fd\\\"\"]],[false,{\".fa-minus-square:before\":false,\".fa-square-minus:before\":false},[\"content:\\\"\\uf146\\\"\"]],[false,{\".fa-square-nfi:before\":false},[\"content:\\\"\\ue576\\\"\"]],[false,{\".fa-parking:before\":false,\".fa-square-parking:before\":false},[\"content:\\\"\\uf540\\\"\"]],[false,{\".fa-pen-square:before\":false,\".fa-pencil-square:before\":false,\".fa-square-pen:before\":false},[\"content:\\\"\\uf14b\\\"\"]],[false,{\".fa-square-person-confined:before\":false},[\"content:\\\"\\ue577\\\"\"]],[false,{\".fa-phone-square:before\":false,\".fa-square-phone:before\":false},[\"content:\\\"\\uf098\\\"\"]],[false,{\".fa-phone-square-alt:before\":false,\".fa-square-phone-flip:before\":false},[\"content:\\\"\\uf87b\\\"\"]],[false,{\".fa-plus-square:before\":false,\".fa-square-plus:before\":false},[\"content:\\\"\\uf0fe\\\"\"]],[false,{\".fa-poll-h:before\":false,\".fa-square-poll-horizontal:before\":false},[\"content:\\\"\\uf682\\\"\"]],[false,{\".fa-poll:before\":false,\".fa-square-poll-vertical:before\":false},[\"content:\\\"\\uf681\\\"\"]],[false,{\".fa-square-root-alt:before\":false,\".fa-square-root-variable:before\":false},[\"content:\\\"\\uf698\\\"\"]],[false,{\".fa-rss-square:before\":false,\".fa-square-rss:before\":false},[\"content:\\\"\\uf143\\\"\"]],[false,{\".fa-share-alt-square:before\":false,\".fa-square-share-nodes:before\":false},[\"content:\\\"\\uf1e1\\\"\"]],[false,{\".fa-external-link-square-alt:before\":false,\".fa-square-up-right:before\":false},[\"content:\\\"\\uf360\\\"\"]],[false,{\".fa-square-virus:before\":false},[\"content:\\\"\\ue578\\\"\"]],[false,{\".fa-square-xmark:before\":false,\".fa-times-square:before\":false,\".fa-xmark-square:before\":false},[\"content:\\\"\\uf2d3\\\"\"]],[false,{\".fa-rod-asclepius:before\":false,\".fa-rod-snake:before\":false,\".fa-staff-aesculapius:before\":false,\".fa-staff-snake:before\":false},[\"content:\\\"\\ue579\\\"\"]],[false,{\".fa-stairs:before\":false},[\"content:\\\"\\ue289\\\"\"]],[false,{\".fa-stamp:before\":false},[\"content:\\\"\\uf5bf\\\"\"]],[false,{\".fa-star:before\":false},[\"content:\\\"\\uf005\\\"\"]],[false,{\".fa-star-and-crescent:before\":false},[\"content:\\\"\\uf699\\\"\"]],[false,{\".fa-star-half:before\":false},[\"content:\\\"\\uf089\\\"\"]],[false,{\".fa-star-half-alt:before\":false,\".fa-star-half-stroke:before\":false},[\"content:\\\"\\uf5c0\\\"\"]],[false,{\".fa-star-of-david:before\":false},[\"content:\\\"\\uf69a\\\"\"]],[false,{\".fa-star-of-life:before\":false},[\"content:\\\"\\uf621\\\"\"]],[false,{\".fa-gbp:before\":false,\".fa-pound-sign:before\":false,\".fa-sterling-sign:before\":false},[\"content:\\\"\\uf154\\\"\"]],[false,{\".fa-stethoscope:before\":false},[\"content:\\\"\\uf0f1\\\"\"]],[false,{\".fa-stop:before\":false},[\"content:\\\"\\uf04d\\\"\"]],[false,{\".fa-stopwatch:before\":false},[\"content:\\\"\\uf2f2\\\"\"]],[false,{\".fa-stopwatch-20:before\":false},[\"content:\\\"\\ue06f\\\"\"]],[false,{\".fa-store:before\":false},[\"content:\\\"\\uf54e\\\"\"]],[false,{\".fa-store-slash:before\":false},[\"content:\\\"\\ue071\\\"\"]],[false,{\".fa-street-view:before\":false},[\"content:\\\"\\uf21d\\\"\"]],[false,{\".fa-strikethrough:before\":false},[\"content:\\\"\\uf0cc\\\"\"]],[false,{\".fa-stroopwafel:before\":false},[\"content:\\\"\\uf551\\\"\"]],[false,{\".fa-subscript:before\":false},[\"content:\\\"\\uf12c\\\"\"]],[false,{\".fa-suitcase:before\":false},[\"content:\\\"\\uf0f2\\\"\"]],[false,{\".fa-medkit:before\":false,\".fa-suitcase-medical:before\":false},[\"content:\\\"\\uf0fa\\\"\"]],[false,{\".fa-suitcase-rolling:before\":false},[\"content:\\\"\\uf5c1\\\"\"]],[false,{\".fa-sun:before\":false},[\"content:\\\"\\uf185\\\"\"]],[false,{\".fa-sun-plant-wilt:before\":false},[\"content:\\\"\\ue57a\\\"\"]],[false,{\".fa-superscript:before\":false},[\"content:\\\"\\uf12b\\\"\"]],[false,{\".fa-swatchbook:before\":false},[\"content:\\\"\\uf5c3\\\"\"]],[false,{\".fa-synagogue:before\":false},[\"content:\\\"\\uf69b\\\"\"]],[false,{\".fa-syringe:before\":false},[\"content:\\\"\\uf48e\\\"\"]],[false,{\".fa-t:before\":false},[\"content:\\\"T\\\"\"]],[false,{\".fa-table:before\":false},[\"content:\\\"\\uf0ce\\\"\"]],[false,{\".fa-table-cells:before\":false,\".fa-th:before\":false},[\"content:\\\"\\uf00a\\\"\"]],[false,{\".fa-table-cells-large:before\":false,\".fa-th-large:before\":false},[\"content:\\\"\\uf009\\\"\"]],[false,{\".fa-columns:before\":false,\".fa-table-columns:before\":false},[\"content:\\\"\\uf0db\\\"\"]],[false,{\".fa-table-list:before\":false,\".fa-th-list:before\":false},[\"content:\\\"\\uf00b\\\"\"]],[false,{\".fa-ping-pong-paddle-ball:before\":false,\".fa-table-tennis-paddle-ball:before\":false,\".fa-table-tennis:before\":false},[\"content:\\\"\\uf45d\\\"\"]],[false,{\".fa-tablet-android:before\":false,\".fa-tablet:before\":false},[\"content:\\\"\\uf3fb\\\"\"]],[false,{\".fa-tablet-button:before\":false},[\"content:\\\"\\uf10a\\\"\"]],[false,{\".fa-tablet-alt:before\":false,\".fa-tablet-screen-button:before\":false},[\"content:\\\"\\uf3fa\\\"\"]],[false,{\".fa-tablets:before\":false},[\"content:\\\"\\uf490\\\"\"]],[false,{\".fa-digital-tachograph:before\":false,\".fa-tachograph-digital:before\":false},[\"content:\\\"\\uf566\\\"\"]],[false,{\".fa-tag:before\":false},[\"content:\\\"\\uf02b\\\"\"]],[false,{\".fa-tags:before\":false},[\"content:\\\"\\uf02c\\\"\"]],[false,{\".fa-tape:before\":false},[\"content:\\\"\\uf4db\\\"\"]],[false,{\".fa-tarp:before\":false},[\"content:\\\"\\ue57b\\\"\"]],[false,{\".fa-tarp-droplet:before\":false},[\"content:\\\"\\ue57c\\\"\"]],[false,{\".fa-cab:before\":false,\".fa-taxi:before\":false},[\"content:\\\"\\uf1ba\\\"\"]],[false,{\".fa-teeth:before\":false},[\"content:\\\"\\uf62e\\\"\"]],[false,{\".fa-teeth-open:before\":false},[\"content:\\\"\\uf62f\\\"\"]],[false,{\".fa-temperature-arrow-down:before\":false,\".fa-temperature-down:before\":false},[\"content:\\\"\\ue03f\\\"\"]],[false,{\".fa-temperature-arrow-up:before\":false,\".fa-temperature-up:before\":false},[\"content:\\\"\\ue040\\\"\"]],[false,{\".fa-temperature-0:before\":false,\".fa-temperature-empty:before\":false,\".fa-thermometer-0:before\":false,\".fa-thermometer-empty:before\":false},[\"content:\\\"\\uf2cb\\\"\"]],[false,{\".fa-temperature-4:before\":false,\".fa-temperature-full:before\":false,\".fa-thermometer-4:before\":false,\".fa-thermometer-full:before\":false},[\"content:\\\"\\uf2c7\\\"\"]],[false,{\".fa-temperature-2:before\":false,\".fa-temperature-half:before\":false,\".fa-thermometer-2:before\":false,\".fa-thermometer-half:before\":false},[\"content:\\\"\\uf2c9\\\"\"]],[false,{\".fa-temperature-high:before\":false},[\"content:\\\"\\uf769\\\"\"]],[false,{\".fa-temperature-low:before\":false},[\"content:\\\"\\uf76b\\\"\"]],[false,{\".fa-temperature-1:before\":false,\".fa-temperature-quarter:before\":false,\".fa-thermometer-1:before\":false,\".fa-thermometer-quarter:before\":false},[\"content:\\\"\\uf2ca\\\"\"]],[false,{\".fa-temperature-3:before\":false,\".fa-temperature-three-quarters:before\":false,\".fa-thermometer-3:before\":false,\".fa-thermometer-three-quarters:before\":false},[\"content:\\\"\\uf2c8\\\"\"]],[false,{\".fa-tenge-sign:before\":false,\".fa-tenge:before\":false},[\"content:\\\"\\uf7d7\\\"\"]],[false,{\".fa-tent:before\":false},[\"content:\\\"\\ue57d\\\"\"]],[false,{\".fa-tent-arrow-down-to-line:before\":false},[\"content:\\\"\\ue57e\\\"\"]],[false,{\".fa-tent-arrow-left-right:before\":false},[\"content:\\\"\\ue57f\\\"\"]],[false,{\".fa-tent-arrow-turn-left:before\":false},[\"content:\\\"\\ue580\\\"\"]],[false,{\".fa-tent-arrows-down:before\":false},[\"content:\\\"\\ue581\\\"\"]],[false,{\".fa-tents:before\":false},[\"content:\\\"\\ue582\\\"\"]],[false,{\".fa-terminal:before\":false},[\"content:\\\"\\uf120\\\"\"]],[false,{\".fa-text-height:before\":false},[\"content:\\\"\\uf034\\\"\"]],[false,{\".fa-remove-format:before\":false,\".fa-text-slash:before\":false},[\"content:\\\"\\uf87d\\\"\"]],[false,{\".fa-text-width:before\":false},[\"content:\\\"\\uf035\\\"\"]],[false,{\".fa-thermometer:before\":false},[\"content:\\\"\\uf491\\\"\"]],[false,{\".fa-thumbs-down:before\":false},[\"content:\\\"\\uf165\\\"\"]],[false,{\".fa-thumbs-up:before\":false},[\"content:\\\"\\uf164\\\"\"]],[false,{\".fa-thumb-tack:before\":false,\".fa-thumbtack:before\":false},[\"content:\\\"\\uf08d\\\"\"]],[false,{\".fa-ticket:before\":false},[\"content:\\\"\\uf145\\\"\"]],[false,{\".fa-ticket-alt:before\":false,\".fa-ticket-simple:before\":false},[\"content:\\\"\\uf3ff\\\"\"]],[false,{\".fa-timeline:before\":false},[\"content:\\\"\\ue29c\\\"\"]],[false,{\".fa-toggle-off:before\":false},[\"content:\\\"\\uf204\\\"\"]],[false,{\".fa-toggle-on:before\":false},[\"content:\\\"\\uf205\\\"\"]],[false,{\".fa-toilet:before\":false},[\"content:\\\"\\uf7d8\\\"\"]],[false,{\".fa-toilet-paper:before\":false},[\"content:\\\"\\uf71e\\\"\"]],[false,{\".fa-toilet-paper-slash:before\":false},[\"content:\\\"\\ue072\\\"\"]],[false,{\".fa-toilet-portable:before\":false},[\"content:\\\"\\ue583\\\"\"]],[false,{\".fa-toilets-portable:before\":false},[\"content:\\\"\\ue584\\\"\"]],[false,{\".fa-toolbox:before\":false},[\"content:\\\"\\uf552\\\"\"]],[false,{\".fa-tooth:before\":false},[\"content:\\\"\\uf5c9\\\"\"]],[false,{\".fa-torii-gate:before\":false},[\"content:\\\"\\uf6a1\\\"\"]],[false,{\".fa-tornado:before\":false},[\"content:\\\"\\uf76f\\\"\"]],[false,{\".fa-broadcast-tower:before\":false,\".fa-tower-broadcast:before\":false},[\"content:\\\"\\uf519\\\"\"]],[false,{\".fa-tower-cell:before\":false},[\"content:\\\"\\ue585\\\"\"]],[false,{\".fa-tower-observation:before\":false},[\"content:\\\"\\ue586\\\"\"]],[false,{\".fa-tractor:before\":false},[\"content:\\\"\\uf722\\\"\"]],[false,{\".fa-trademark:before\":false},[\"content:\\\"\\uf25c\\\"\"]],[false,{\".fa-traffic-light:before\":false},[\"content:\\\"\\uf637\\\"\"]],[false,{\".fa-trailer:before\":false},[\"content:\\\"\\ue041\\\"\"]],[false,{\".fa-train:before\":false},[\"content:\\\"\\uf238\\\"\"]],[false,{\".fa-subway:before\":false,\".fa-train-subway:before\":false},[\"content:\\\"\\uf239\\\"\"]],[false,{\".fa-train-tram:before\":false,\".fa-tram:before\":false},[\"content:\\\"\\uf7da\\\"\"]],[false,{\".fa-transgender-alt:before\":false,\".fa-transgender:before\":false},[\"content:\\\"\\uf225\\\"\"]],[false,{\".fa-trash:before\":false},[\"content:\\\"\\uf1f8\\\"\"]],[false,{\".fa-trash-arrow-up:before\":false,\".fa-trash-restore:before\":false},[\"content:\\\"\\uf829\\\"\"]],[false,{\".fa-trash-alt:before\":false,\".fa-trash-can:before\":false},[\"content:\\\"\\uf2ed\\\"\"]],[false,{\".fa-trash-can-arrow-up:before\":false,\".fa-trash-restore-alt:before\":false},[\"content:\\\"\\uf82a\\\"\"]],[false,{\".fa-tree:before\":false},[\"content:\\\"\\uf1bb\\\"\"]],[false,{\".fa-tree-city:before\":false},[\"content:\\\"\\ue587\\\"\"]],[false,{\".fa-exclamation-triangle:before\":false,\".fa-triangle-exclamation:before\":false,\".fa-warning:before\":false},[\"content:\\\"\\uf071\\\"\"]],[false,{\".fa-trophy:before\":false},[\"content:\\\"\\uf091\\\"\"]],[false,{\".fa-trowel:before\":false},[\"content:\\\"\\ue589\\\"\"]],[false,{\".fa-trowel-bricks:before\":false},[\"content:\\\"\\ue58a\\\"\"]],[false,{\".fa-truck:before\":false},[\"content:\\\"\\uf0d1\\\"\"]],[false,{\".fa-truck-arrow-right:before\":false},[\"content:\\\"\\ue58b\\\"\"]],[false,{\".fa-truck-droplet:before\":false},[\"content:\\\"\\ue58c\\\"\"]],[false,{\".fa-shipping-fast:before\":false,\".fa-truck-fast:before\":false},[\"content:\\\"\\uf48b\\\"\"]],[false,{\".fa-truck-field:before\":false},[\"content:\\\"\\ue58d\\\"\"]],[false,{\".fa-truck-field-un:before\":false},[\"content:\\\"\\ue58e\\\"\"]],[false,{\".fa-truck-front:before\":false},[\"content:\\\"\\ue2b7\\\"\"]],[false,{\".fa-ambulance:before\":false,\".fa-truck-medical:before\":false},[\"content:\\\"\\uf0f9\\\"\"]],[false,{\".fa-truck-monster:before\":false},[\"content:\\\"\\uf63b\\\"\"]],[false,{\".fa-truck-moving:before\":false},[\"content:\\\"\\uf4df\\\"\"]],[false,{\".fa-truck-pickup:before\":false},[\"content:\\\"\\uf63c\\\"\"]],[false,{\".fa-truck-plane:before\":false},[\"content:\\\"\\ue58f\\\"\"]],[false,{\".fa-truck-loading:before\":false,\".fa-truck-ramp-box:before\":false},[\"content:\\\"\\uf4de\\\"\"]],[false,{\".fa-teletype:before\":false,\".fa-tty:before\":false},[\"content:\\\"\\uf1e4\\\"\"]],[false,{\".fa-try:before\":false,\".fa-turkish-lira-sign:before\":false,\".fa-turkish-lira:before\":false},[\"content:\\\"\\ue2bb\\\"\"]],[false,{\".fa-level-down-alt:before\":false,\".fa-turn-down:before\":false},[\"content:\\\"\\uf3be\\\"\"]],[false,{\".fa-level-up-alt:before\":false,\".fa-turn-up:before\":false},[\"content:\\\"\\uf3bf\\\"\"]],[false,{\".fa-television:before\":false,\".fa-tv-alt:before\":false,\".fa-tv:before\":false},[\"content:\\\"\\uf26c\\\"\"]],[false,{\".fa-u:before\":false},[\"content:\\\"U\\\"\"]],[false,{\".fa-umbrella:before\":false},[\"content:\\\"\\uf0e9\\\"\"]],[false,{\".fa-umbrella-beach:before\":false},[\"content:\\\"\\uf5ca\\\"\"]],[false,{\".fa-underline:before\":false},[\"content:\\\"\\uf0cd\\\"\"]],[false,{\".fa-universal-access:before\":false},[\"content:\\\"\\uf29a\\\"\"]],[false,{\".fa-unlock:before\":false},[\"content:\\\"\\uf09c\\\"\"]],[false,{\".fa-unlock-alt:before\":false,\".fa-unlock-keyhole:before\":false},[\"content:\\\"\\uf13e\\\"\"]],[false,{\".fa-arrows-alt-v:before\":false,\".fa-up-down:before\":false},[\"content:\\\"\\uf338\\\"\"]],[false,{\".fa-arrows-alt:before\":false,\".fa-up-down-left-right:before\":false},[\"content:\\\"\\uf0b2\\\"\"]],[false,{\".fa-long-arrow-alt-up:before\":false,\".fa-up-long:before\":false},[\"content:\\\"\\uf30c\\\"\"]],[false,{\".fa-expand-alt:before\":false,\".fa-up-right-and-down-left-from-center:before\":false},[\"content:\\\"\\uf424\\\"\"]],[false,{\".fa-external-link-alt:before\":false,\".fa-up-right-from-square:before\":false},[\"content:\\\"\\uf35d\\\"\"]],[false,{\".fa-upload:before\":false},[\"content:\\\"\\uf093\\\"\"]],[false,{\".fa-user:before\":false},[\"content:\\\"\\uf007\\\"\"]],[false,{\".fa-user-astronaut:before\":false},[\"content:\\\"\\uf4fb\\\"\"]],[false,{\".fa-user-check:before\":false},[\"content:\\\"\\uf4fc\\\"\"]],[false,{\".fa-user-clock:before\":false},[\"content:\\\"\\uf4fd\\\"\"]],[false,{\".fa-user-doctor:before\":false,\".fa-user-md:before\":false},[\"content:\\\"\\uf0f0\\\"\"]],[false,{\".fa-user-cog:before\":false,\".fa-user-gear:before\":false},[\"content:\\\"\\uf4fe\\\"\"]],[false,{\".fa-user-graduate:before\":false},[\"content:\\\"\\uf501\\\"\"]],[false,{\".fa-user-friends:before\":false,\".fa-user-group:before\":false},[\"content:\\\"\\uf500\\\"\"]],[false,{\".fa-user-injured:before\":false},[\"content:\\\"\\uf728\\\"\"]],[false,{\".fa-user-alt:before\":false,\".fa-user-large:before\":false},[\"content:\\\"\\uf406\\\"\"]],[false,{\".fa-user-alt-slash:before\":false,\".fa-user-large-slash:before\":false},[\"content:\\\"\\uf4fa\\\"\"]],[false,{\".fa-user-lock:before\":false},[\"content:\\\"\\uf502\\\"\"]],[false,{\".fa-user-minus:before\":false},[\"content:\\\"\\uf503\\\"\"]],[false,{\".fa-user-ninja:before\":false},[\"content:\\\"\\uf504\\\"\"]],[false,{\".fa-user-nurse:before\":false},[\"content:\\\"\\uf82f\\\"\"]],[false,{\".fa-user-edit:before\":false,\".fa-user-pen:before\":false},[\"content:\\\"\\uf4ff\\\"\"]],[false,{\".fa-user-plus:before\":false},[\"content:\\\"\\uf234\\\"\"]],[false,{\".fa-user-secret:before\":false},[\"content:\\\"\\uf21b\\\"\"]],[false,{\".fa-user-shield:before\":false},[\"content:\\\"\\uf505\\\"\"]],[false,{\".fa-user-slash:before\":false},[\"content:\\\"\\uf506\\\"\"]],[false,{\".fa-user-tag:before\":false},[\"content:\\\"\\uf507\\\"\"]],[false,{\".fa-user-tie:before\":false},[\"content:\\\"\\uf508\\\"\"]],[false,{\".fa-user-times:before\":false,\".fa-user-xmark:before\":false},[\"content:\\\"\\uf235\\\"\"]],[false,{\".fa-users:before\":false},[\"content:\\\"\\uf0c0\\\"\"]],[false,{\".fa-users-between-lines:before\":false},[\"content:\\\"\\ue591\\\"\"]],[false,{\".fa-users-cog:before\":false,\".fa-users-gear:before\":false},[\"content:\\\"\\uf509\\\"\"]],[false,{\".fa-users-line:before\":false},[\"content:\\\"\\ue592\\\"\"]],[false,{\".fa-users-rays:before\":false},[\"content:\\\"\\ue593\\\"\"]],[false,{\".fa-users-rectangle:before\":false},[\"content:\\\"\\ue594\\\"\"]],[false,{\".fa-users-slash:before\":false},[\"content:\\\"\\ue073\\\"\"]],[false,{\".fa-users-viewfinder:before\":false},[\"content:\\\"\\ue595\\\"\"]],[false,{\".fa-cutlery:before\":false,\".fa-utensils:before\":false},[\"content:\\\"\\uf2e7\\\"\"]],[false,{\".fa-v:before\":false},[\"content:\\\"V\\\"\"]],[false,{\".fa-shuttle-van:before\":false,\".fa-van-shuttle:before\":false},[\"content:\\\"\\uf5b6\\\"\"]],[false,{\".fa-vault:before\":false},[\"content:\\\"\\ue2c5\\\"\"]],[false,{\".fa-vector-square:before\":false},[\"content:\\\"\\uf5cb\\\"\"]],[false,{\".fa-venus:before\":false},[\"content:\\\"\\uf221\\\"\"]],[false,{\".fa-venus-double:before\":false},[\"content:\\\"\\uf226\\\"\"]],[false,{\".fa-venus-mars:before\":false},[\"content:\\\"\\uf228\\\"\"]],[false,{\".fa-vest:before\":false},[\"content:\\\"\\ue085\\\"\"]],[false,{\".fa-vest-patches:before\":false},[\"content:\\\"\\ue086\\\"\"]],[false,{\".fa-vial:before\":false},[\"content:\\\"\\uf492\\\"\"]],[false,{\".fa-vial-circle-check:before\":false},[\"content:\\\"\\ue596\\\"\"]],[false,{\".fa-vial-virus:before\":false},[\"content:\\\"\\ue597\\\"\"]],[false,{\".fa-vials:before\":false},[\"content:\\\"\\uf493\\\"\"]],[false,{\".fa-video-camera:before\":false,\".fa-video:before\":false},[\"content:\\\"\\uf03d\\\"\"]],[false,{\".fa-video-slash:before\":false},[\"content:\\\"\\uf4e2\\\"\"]],[false,{\".fa-vihara:before\":false},[\"content:\\\"\\uf6a7\\\"\"]],[false,{\".fa-virus:before\":false},[\"content:\\\"\\ue074\\\"\"]],[false,{\".fa-virus-covid:before\":false},[\"content:\\\"\\ue4a8\\\"\"]],[false,{\".fa-virus-covid-slash:before\":false},[\"content:\\\"\\ue4a9\\\"\"]],[false,{\".fa-virus-slash:before\":false},[\"content:\\\"\\ue075\\\"\"]],[false,{\".fa-viruses:before\":false},[\"content:\\\"\\ue076\\\"\"]],[false,{\".fa-voicemail:before\":false},[\"content:\\\"\\uf897\\\"\"]],[false,{\".fa-volcano:before\":false},[\"content:\\\"\\uf770\\\"\"]],[false,{\".fa-volleyball-ball:before\":false,\".fa-volleyball:before\":false},[\"content:\\\"\\uf45f\\\"\"]],[false,{\".fa-volume-high:before\":false,\".fa-volume-up:before\":false},[\"content:\\\"\\uf028\\\"\"]],[false,{\".fa-volume-down:before\":false,\".fa-volume-low:before\":false},[\"content:\\\"\\uf027\\\"\"]],[false,{\".fa-volume-off:before\":false},[\"content:\\\"\\uf026\\\"\"]],[false,{\".fa-volume-mute:before\":false,\".fa-volume-times:before\":false,\".fa-volume-xmark:before\":false},[\"content:\\\"\\uf6a9\\\"\"]],[false,{\".fa-vr-cardboard:before\":false},[\"content:\\\"\\uf729\\\"\"]],[false,{\".fa-w:before\":false},[\"content:\\\"W\\\"\"]],[false,{\".fa-walkie-talkie:before\":false},[\"content:\\\"\\uf8ef\\\"\"]],[false,{\".fa-wallet:before\":false},[\"content:\\\"\\uf555\\\"\"]],[false,{\".fa-magic:before\":false,\".fa-wand-magic:before\":false},[\"content:\\\"\\uf0d0\\\"\"]],[false,{\".fa-magic-wand-sparkles:before\":false,\".fa-wand-magic-sparkles:before\":false},[\"content:\\\"\\ue2ca\\\"\"]],[false,{\".fa-wand-sparkles:before\":false},[\"content:\\\"\\uf72b\\\"\"]],[false,{\".fa-warehouse:before\":false},[\"content:\\\"\\uf494\\\"\"]],[false,{\".fa-water:before\":false},[\"content:\\\"\\uf773\\\"\"]],[false,{\".fa-ladder-water:before\":false,\".fa-swimming-pool:before\":false,\".fa-water-ladder:before\":false},[\"content:\\\"\\uf5c5\\\"\"]],[false,{\".fa-wave-square:before\":false},[\"content:\\\"\\uf83e\\\"\"]],[false,{\".fa-weight-hanging:before\":false},[\"content:\\\"\\uf5cd\\\"\"]],[false,{\".fa-weight-scale:before\":false,\".fa-weight:before\":false},[\"content:\\\"\\uf496\\\"\"]],[false,{\".fa-wheat-alt:before\":false,\".fa-wheat-awn:before\":false},[\"content:\\\"\\ue2cd\\\"\"]],[false,{\".fa-wheat-awn-circle-exclamation:before\":false},[\"content:\\\"\\ue598\\\"\"]],[false,{\".fa-wheelchair:before\":false},[\"content:\\\"\\uf193\\\"\"]],[false,{\".fa-wheelchair-alt:before\":false,\".fa-wheelchair-move:before\":false},[\"content:\\\"\\ue2ce\\\"\"]],[false,{\".fa-glass-whiskey:before\":false,\".fa-whiskey-glass:before\":false},[\"content:\\\"\\uf7a0\\\"\"]],[false,{\".fa-wifi-3:before\":false,\".fa-wifi-strong:before\":false,\".fa-wifi:before\":false},[\"content:\\\"\\uf1eb\\\"\"]],[false,{\".fa-wind:before\":false},[\"content:\\\"\\uf72e\\\"\"]],[false,{\".fa-window-maximize:before\":false},[\"content:\\\"\\uf2d0\\\"\"]],[false,{\".fa-window-minimize:before\":false},[\"content:\\\"\\uf2d1\\\"\"]],[false,{\".fa-window-restore:before\":false},[\"content:\\\"\\uf2d2\\\"\"]],[false,{\".fa-wine-bottle:before\":false},[\"content:\\\"\\uf72f\\\"\"]],[false,{\".fa-wine-glass:before\":false},[\"content:\\\"\\uf4e3\\\"\"]],[false,{\".fa-wine-glass-alt:before\":false,\".fa-wine-glass-empty:before\":false},[\"content:\\\"\\uf5ce\\\"\"]],[false,{\".fa-krw:before\":false,\".fa-won-sign:before\":false,\".fa-won:before\":false},[\"content:\\\"\\uf159\\\"\"]],[false,{\".fa-worm:before\":false},[\"content:\\\"\\ue599\\\"\"]],[false,{\".fa-wrench:before\":false},[\"content:\\\"\\uf0ad\\\"\"]],[false,{\".fa-x:before\":false},[\"content:\\\"X\\\"\"]],[false,{\".fa-x-ray:before\":false},[\"content:\\\"\\uf497\\\"\"]],[false,{\".fa-close:before\":false,\".fa-multiply:before\":false,\".fa-remove:before\":false,\".fa-times:before\":false,\".fa-xmark:before\":false},[\"content:\\\"\\uf00d\\\"\"]],[false,{\".fa-xmarks-lines:before\":false},[\"content:\\\"\\ue59a\\\"\"]],[false,{\".fa-y:before\":false},[\"content:\\\"Y\\\"\"]],[false,{\".fa-cny:before\":false,\".fa-jpy:before\":false,\".fa-rmb:before\":false,\".fa-yen-sign:before\":false,\".fa-yen:before\":false},[\"content:\\\"\\uf157\\\"\"]],[false,{\".fa-yin-yang:before\":false},[\"content:\\\"\\uf6ad\\\"\"]],[false,{\".fa-z:before\":false},[\"content:\\\"Z\\\"\"]],[false,{\".fa-sr-only\":false,\".fa-sr-only-focusable:not(:focus)\":false,\".sr-only\":false,\".sr-only-focusable:not(:focus)\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"white-space:nowrap\",\"border-width:0\"]],[true,{\":host\":true,\":root\":true},[\"--fa-font-brands:normal 400 1em\\/1 \\\"Font Awesome 6 Brands\\\"\"]],[true,\"@font-face{font-family:\\\"Font Awesome 6 Brands\\\";font-style:normal;font-weight:400;font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\")}\"],[false,{\".fa-brands\":false,\".fab\":false},[\"font-family:\\\"Font Awesome 6 Brands\\\"\",\"font-weight:400\"]],[false,{\".fa-42-group:before\":false,\".fa-innosoft:before\":false},[\"content:\\\"\\ue080\\\"\"]],[false,{\".fa-500px:before\":false},[\"content:\\\"\\uf26e\\\"\"]],[false,{\".fa-accessible-icon:before\":false},[\"content:\\\"\\uf368\\\"\"]],[false,{\".fa-accusoft:before\":false},[\"content:\\\"\\uf369\\\"\"]],[false,{\".fa-adn:before\":false},[\"content:\\\"\\uf170\\\"\"]],[false,{\".fa-adversal:before\":false},[\"content:\\\"\\uf36a\\\"\"]],[false,{\".fa-affiliatetheme:before\":false},[\"content:\\\"\\uf36b\\\"\"]],[false,{\".fa-airbnb:before\":false},[\"content:\\\"\\uf834\\\"\"]],[false,{\".fa-algolia:before\":false},[\"content:\\\"\\uf36c\\\"\"]],[false,{\".fa-alipay:before\":false},[\"content:\\\"\\uf642\\\"\"]],[false,{\".fa-amazon:before\":false},[\"content:\\\"\\uf270\\\"\"]],[false,{\".fa-amazon-pay:before\":false},[\"content:\\\"\\uf42c\\\"\"]],[false,{\".fa-amilia:before\":false},[\"content:\\\"\\uf36d\\\"\"]],[false,{\".fa-android:before\":false},[\"content:\\\"\\uf17b\\\"\"]],[false,{\".fa-angellist:before\":false},[\"content:\\\"\\uf209\\\"\"]],[false,{\".fa-angrycreative:before\":false},[\"content:\\\"\\uf36e\\\"\"]],[false,{\".fa-angular:before\":false},[\"content:\\\"\\uf420\\\"\"]],[false,{\".fa-app-store:before\":false},[\"content:\\\"\\uf36f\\\"\"]],[false,{\".fa-app-store-ios:before\":false},[\"content:\\\"\\uf370\\\"\"]],[false,{\".fa-apper:before\":false},[\"content:\\\"\\uf371\\\"\"]],[false,{\".fa-apple:before\":false},[\"content:\\\"\\uf179\\\"\"]],[false,{\".fa-apple-pay:before\":false},[\"content:\\\"\\uf415\\\"\"]],[false,{\".fa-artstation:before\":false},[\"content:\\\"\\uf77a\\\"\"]],[false,{\".fa-asymmetrik:before\":false},[\"content:\\\"\\uf372\\\"\"]],[false,{\".fa-atlassian:before\":false},[\"content:\\\"\\uf77b\\\"\"]],[false,{\".fa-audible:before\":false},[\"content:\\\"\\uf373\\\"\"]],[false,{\".fa-autoprefixer:before\":false},[\"content:\\\"\\uf41c\\\"\"]],[false,{\".fa-avianex:before\":false},[\"content:\\\"\\uf374\\\"\"]],[false,{\".fa-aviato:before\":false},[\"content:\\\"\\uf421\\\"\"]],[false,{\".fa-aws:before\":false},[\"content:\\\"\\uf375\\\"\"]],[false,{\".fa-bandcamp:before\":false},[\"content:\\\"\\uf2d5\\\"\"]],[false,{\".fa-battle-net:before\":false},[\"content:\\\"\\uf835\\\"\"]],[false,{\".fa-behance:before\":false},[\"content:\\\"\\uf1b4\\\"\"]],[false,{\".fa-behance-square:before\":false},[\"content:\\\"\\uf1b5\\\"\"]],[false,{\".fa-bilibili:before\":false},[\"content:\\\"\\ue3d9\\\"\"]],[false,{\".fa-bimobject:before\":false},[\"content:\\\"\\uf378\\\"\"]],[false,{\".fa-bitbucket:before\":false},[\"content:\\\"\\uf171\\\"\"]],[false,{\".fa-bitcoin:before\":false},[\"content:\\\"\\uf379\\\"\"]],[false,{\".fa-bity:before\":false},[\"content:\\\"\\uf37a\\\"\"]],[false,{\".fa-black-tie:before\":false},[\"content:\\\"\\uf27e\\\"\"]],[false,{\".fa-blackberry:before\":false},[\"content:\\\"\\uf37b\\\"\"]],[false,{\".fa-blogger:before\":false},[\"content:\\\"\\uf37c\\\"\"]],[false,{\".fa-blogger-b:before\":false},[\"content:\\\"\\uf37d\\\"\"]],[false,{\".fa-bluetooth:before\":false},[\"content:\\\"\\uf293\\\"\"]],[false,{\".fa-bluetooth-b:before\":false},[\"content:\\\"\\uf294\\\"\"]],[false,{\".fa-bootstrap:before\":false},[\"content:\\\"\\uf836\\\"\"]],[false,{\".fa-bots:before\":false},[\"content:\\\"\\ue340\\\"\"]],[false,{\".fa-btc:before\":false},[\"content:\\\"\\uf15a\\\"\"]],[false,{\".fa-buffer:before\":false},[\"content:\\\"\\uf837\\\"\"]],[false,{\".fa-buromobelexperte:before\":false},[\"content:\\\"\\uf37f\\\"\"]],[false,{\".fa-buy-n-large:before\":false},[\"content:\\\"\\uf8a6\\\"\"]],[false,{\".fa-buysellads:before\":false},[\"content:\\\"\\uf20d\\\"\"]],[false,{\".fa-canadian-maple-leaf:before\":false},[\"content:\\\"\\uf785\\\"\"]],[false,{\".fa-cc-amazon-pay:before\":false},[\"content:\\\"\\uf42d\\\"\"]],[false,{\".fa-cc-amex:before\":false},[\"content:\\\"\\uf1f3\\\"\"]],[false,{\".fa-cc-apple-pay:before\":false},[\"content:\\\"\\uf416\\\"\"]],[false,{\".fa-cc-diners-club:before\":false},[\"content:\\\"\\uf24c\\\"\"]],[false,{\".fa-cc-discover:before\":false},[\"content:\\\"\\uf1f2\\\"\"]],[false,{\".fa-cc-jcb:before\":false},[\"content:\\\"\\uf24b\\\"\"]],[false,{\".fa-cc-mastercard:before\":false},[\"content:\\\"\\uf1f1\\\"\"]],[false,{\".fa-cc-paypal:before\":false},[\"content:\\\"\\uf1f4\\\"\"]],[false,{\".fa-cc-stripe:before\":false},[\"content:\\\"\\uf1f5\\\"\"]],[false,{\".fa-cc-visa:before\":false},[\"content:\\\"\\uf1f0\\\"\"]],[false,{\".fa-centercode:before\":false},[\"content:\\\"\\uf380\\\"\"]],[false,{\".fa-centos:before\":false},[\"content:\\\"\\uf789\\\"\"]],[false,{\".fa-chrome:before\":false},[\"content:\\\"\\uf268\\\"\"]],[false,{\".fa-chromecast:before\":false},[\"content:\\\"\\uf838\\\"\"]],[false,{\".fa-cloudflare:before\":false},[\"content:\\\"\\ue07d\\\"\"]],[false,{\".fa-cloudscale:before\":false},[\"content:\\\"\\uf383\\\"\"]],[false,{\".fa-cloudsmith:before\":false},[\"content:\\\"\\uf384\\\"\"]],[false,{\".fa-cloudversify:before\":false},[\"content:\\\"\\uf385\\\"\"]],[false,{\".fa-cmplid:before\":false},[\"content:\\\"\\ue360\\\"\"]],[false,{\".fa-codepen:before\":false},[\"content:\\\"\\uf1cb\\\"\"]],[false,{\".fa-codiepie:before\":false},[\"content:\\\"\\uf284\\\"\"]],[false,{\".fa-confluence:before\":false},[\"content:\\\"\\uf78d\\\"\"]],[false,{\".fa-connectdevelop:before\":false},[\"content:\\\"\\uf20e\\\"\"]],[false,{\".fa-contao:before\":false},[\"content:\\\"\\uf26d\\\"\"]],[false,{\".fa-cotton-bureau:before\":false},[\"content:\\\"\\uf89e\\\"\"]],[false,{\".fa-cpanel:before\":false},[\"content:\\\"\\uf388\\\"\"]],[false,{\".fa-creative-commons:before\":false},[\"content:\\\"\\uf25e\\\"\"]],[false,{\".fa-creative-commons-by:before\":false},[\"content:\\\"\\uf4e7\\\"\"]],[false,{\".fa-creative-commons-nc:before\":false},[\"content:\\\"\\uf4e8\\\"\"]],[false,{\".fa-creative-commons-nc-eu:before\":false},[\"content:\\\"\\uf4e9\\\"\"]],[false,{\".fa-creative-commons-nc-jp:before\":false},[\"content:\\\"\\uf4ea\\\"\"]],[false,{\".fa-creative-commons-nd:before\":false},[\"content:\\\"\\uf4eb\\\"\"]],[false,{\".fa-creative-commons-pd:before\":false},[\"content:\\\"\\uf4ec\\\"\"]],[false,{\".fa-creative-commons-pd-alt:before\":false},[\"content:\\\"\\uf4ed\\\"\"]],[false,{\".fa-creative-commons-remix:before\":false},[\"content:\\\"\\uf4ee\\\"\"]],[false,{\".fa-creative-commons-sa:before\":false},[\"content:\\\"\\uf4ef\\\"\"]],[false,{\".fa-creative-commons-sampling:before\":false},[\"content:\\\"\\uf4f0\\\"\"]],[false,{\".fa-creative-commons-sampling-plus:before\":false},[\"content:\\\"\\uf4f1\\\"\"]],[false,{\".fa-creative-commons-share:before\":false},[\"content:\\\"\\uf4f2\\\"\"]],[false,{\".fa-creative-commons-zero:before\":false},[\"content:\\\"\\uf4f3\\\"\"]],[false,{\".fa-critical-role:before\":false},[\"content:\\\"\\uf6c9\\\"\"]],[false,{\".fa-css3:before\":false},[\"content:\\\"\\uf13c\\\"\"]],[false,{\".fa-css3-alt:before\":false},[\"content:\\\"\\uf38b\\\"\"]],[false,{\".fa-cuttlefish:before\":false},[\"content:\\\"\\uf38c\\\"\"]],[false,{\".fa-d-and-d:before\":false},[\"content:\\\"\\uf38d\\\"\"]],[false,{\".fa-d-and-d-beyond:before\":false},[\"content:\\\"\\uf6ca\\\"\"]],[false,{\".fa-dailymotion:before\":false},[\"content:\\\"\\ue052\\\"\"]],[false,{\".fa-dashcube:before\":false},[\"content:\\\"\\uf210\\\"\"]],[false,{\".fa-deezer:before\":false},[\"content:\\\"\\ue077\\\"\"]],[false,{\".fa-delicious:before\":false},[\"content:\\\"\\uf1a5\\\"\"]],[false,{\".fa-deploydog:before\":false},[\"content:\\\"\\uf38e\\\"\"]],[false,{\".fa-deskpro:before\":false},[\"content:\\\"\\uf38f\\\"\"]],[false,{\".fa-dev:before\":false},[\"content:\\\"\\uf6cc\\\"\"]],[false,{\".fa-deviantart:before\":false},[\"content:\\\"\\uf1bd\\\"\"]],[false,{\".fa-dhl:before\":false},[\"content:\\\"\\uf790\\\"\"]],[false,{\".fa-diaspora:before\":false},[\"content:\\\"\\uf791\\\"\"]],[false,{\".fa-digg:before\":false},[\"content:\\\"\\uf1a6\\\"\"]],[false,{\".fa-digital-ocean:before\":false},[\"content:\\\"\\uf391\\\"\"]],[false,{\".fa-discord:before\":false},[\"content:\\\"\\uf392\\\"\"]],[false,{\".fa-discourse:before\":false},[\"content:\\\"\\uf393\\\"\"]],[false,{\".fa-dochub:before\":false},[\"content:\\\"\\uf394\\\"\"]],[false,{\".fa-docker:before\":false},[\"content:\\\"\\uf395\\\"\"]],[false,{\".fa-draft2digital:before\":false},[\"content:\\\"\\uf396\\\"\"]],[false,{\".fa-dribbble:before\":false},[\"content:\\\"\\uf17d\\\"\"]],[false,{\".fa-dribbble-square:before\":false},[\"content:\\\"\\uf397\\\"\"]],[false,{\".fa-dropbox:before\":false},[\"content:\\\"\\uf16b\\\"\"]],[false,{\".fa-drupal:before\":false},[\"content:\\\"\\uf1a9\\\"\"]],[false,{\".fa-dyalog:before\":false},[\"content:\\\"\\uf399\\\"\"]],[false,{\".fa-earlybirds:before\":false},[\"content:\\\"\\uf39a\\\"\"]],[false,{\".fa-ebay:before\":false},[\"content:\\\"\\uf4f4\\\"\"]],[false,{\".fa-edge:before\":false},[\"content:\\\"\\uf282\\\"\"]],[false,{\".fa-edge-legacy:before\":false},[\"content:\\\"\\ue078\\\"\"]],[false,{\".fa-elementor:before\":false},[\"content:\\\"\\uf430\\\"\"]],[false,{\".fa-ello:before\":false},[\"content:\\\"\\uf5f1\\\"\"]],[false,{\".fa-ember:before\":false},[\"content:\\\"\\uf423\\\"\"]],[false,{\".fa-empire:before\":false},[\"content:\\\"\\uf1d1\\\"\"]],[false,{\".fa-envira:before\":false},[\"content:\\\"\\uf299\\\"\"]],[false,{\".fa-erlang:before\":false},[\"content:\\\"\\uf39d\\\"\"]],[false,{\".fa-ethereum:before\":false},[\"content:\\\"\\uf42e\\\"\"]],[false,{\".fa-etsy:before\":false},[\"content:\\\"\\uf2d7\\\"\"]],[false,{\".fa-evernote:before\":false},[\"content:\\\"\\uf839\\\"\"]],[false,{\".fa-expeditedssl:before\":false},[\"content:\\\"\\uf23e\\\"\"]],[false,{\".fa-facebook:before\":false},[\"content:\\\"\\uf09a\\\"\"]],[false,{\".fa-facebook-f:before\":false},[\"content:\\\"\\uf39e\\\"\"]],[false,{\".fa-facebook-messenger:before\":false},[\"content:\\\"\\uf39f\\\"\"]],[false,{\".fa-facebook-square:before\":false},[\"content:\\\"\\uf082\\\"\"]],[false,{\".fa-fantasy-flight-games:before\":false},[\"content:\\\"\\uf6dc\\\"\"]],[false,{\".fa-fedex:before\":false},[\"content:\\\"\\uf797\\\"\"]],[false,{\".fa-fedora:before\":false},[\"content:\\\"\\uf798\\\"\"]],[false,{\".fa-figma:before\":false},[\"content:\\\"\\uf799\\\"\"]],[false,{\".fa-firefox:before\":false},[\"content:\\\"\\uf269\\\"\"]],[false,{\".fa-firefox-browser:before\":false},[\"content:\\\"\\ue007\\\"\"]],[false,{\".fa-first-order:before\":false},[\"content:\\\"\\uf2b0\\\"\"]],[false,{\".fa-first-order-alt:before\":false},[\"content:\\\"\\uf50a\\\"\"]],[false,{\".fa-firstdraft:before\":false},[\"content:\\\"\\uf3a1\\\"\"]],[false,{\".fa-flickr:before\":false},[\"content:\\\"\\uf16e\\\"\"]],[false,{\".fa-flipboard:before\":false},[\"content:\\\"\\uf44d\\\"\"]],[false,{\".fa-fly:before\":false},[\"content:\\\"\\uf417\\\"\"]],[false,{\".fa-font-awesome-flag:before\":false,\".fa-font-awesome-logo-full:before\":false,\".fa-font-awesome:before\":false},[\"content:\\\"\\uf2b4\\\"\"]],[false,{\".fa-fonticons:before\":false},[\"content:\\\"\\uf280\\\"\"]],[false,{\".fa-fonticons-fi:before\":false},[\"content:\\\"\\uf3a2\\\"\"]],[false,{\".fa-fort-awesome:before\":false},[\"content:\\\"\\uf286\\\"\"]],[false,{\".fa-fort-awesome-alt:before\":false},[\"content:\\\"\\uf3a3\\\"\"]],[false,{\".fa-forumbee:before\":false},[\"content:\\\"\\uf211\\\"\"]],[false,{\".fa-foursquare:before\":false},[\"content:\\\"\\uf180\\\"\"]],[false,{\".fa-free-code-camp:before\":false},[\"content:\\\"\\uf2c5\\\"\"]],[false,{\".fa-freebsd:before\":false},[\"content:\\\"\\uf3a4\\\"\"]],[false,{\".fa-fulcrum:before\":false},[\"content:\\\"\\uf50b\\\"\"]],[false,{\".fa-galactic-republic:before\":false},[\"content:\\\"\\uf50c\\\"\"]],[false,{\".fa-galactic-senate:before\":false},[\"content:\\\"\\uf50d\\\"\"]],[false,{\".fa-get-pocket:before\":false},[\"content:\\\"\\uf265\\\"\"]],[false,{\".fa-gg:before\":false},[\"content:\\\"\\uf260\\\"\"]],[false,{\".fa-gg-circle:before\":false},[\"content:\\\"\\uf261\\\"\"]],[false,{\".fa-git:before\":false},[\"content:\\\"\\uf1d3\\\"\"]],[false,{\".fa-git-alt:before\":false},[\"content:\\\"\\uf841\\\"\"]],[false,{\".fa-git-square:before\":false},[\"content:\\\"\\uf1d2\\\"\"]],[false,{\".fa-github:before\":false},[\"content:\\\"\\uf09b\\\"\"]],[false,{\".fa-github-alt:before\":false},[\"content:\\\"\\uf113\\\"\"]],[false,{\".fa-github-square:before\":false},[\"content:\\\"\\uf092\\\"\"]],[false,{\".fa-gitkraken:before\":false},[\"content:\\\"\\uf3a6\\\"\"]],[false,{\".fa-gitlab:before\":false},[\"content:\\\"\\uf296\\\"\"]],[false,{\".fa-gitter:before\":false},[\"content:\\\"\\uf426\\\"\"]],[false,{\".fa-glide:before\":false},[\"content:\\\"\\uf2a5\\\"\"]],[false,{\".fa-glide-g:before\":false},[\"content:\\\"\\uf2a6\\\"\"]],[false,{\".fa-gofore:before\":false},[\"content:\\\"\\uf3a7\\\"\"]],[false,{\".fa-golang:before\":false},[\"content:\\\"\\ue40f\\\"\"]],[false,{\".fa-goodreads:before\":false},[\"content:\\\"\\uf3a8\\\"\"]],[false,{\".fa-goodreads-g:before\":false},[\"content:\\\"\\uf3a9\\\"\"]],[false,{\".fa-google:before\":false},[\"content:\\\"\\uf1a0\\\"\"]],[false,{\".fa-google-drive:before\":false},[\"content:\\\"\\uf3aa\\\"\"]],[false,{\".fa-google-pay:before\":false},[\"content:\\\"\\ue079\\\"\"]],[false,{\".fa-google-play:before\":false},[\"content:\\\"\\uf3ab\\\"\"]],[false,{\".fa-google-plus:before\":false},[\"content:\\\"\\uf2b3\\\"\"]],[false,{\".fa-google-plus-g:before\":false},[\"content:\\\"\\uf0d5\\\"\"]],[false,{\".fa-google-plus-square:before\":false},[\"content:\\\"\\uf0d4\\\"\"]],[false,{\".fa-google-wallet:before\":false},[\"content:\\\"\\uf1ee\\\"\"]],[false,{\".fa-gratipay:before\":false},[\"content:\\\"\\uf184\\\"\"]],[false,{\".fa-grav:before\":false},[\"content:\\\"\\uf2d6\\\"\"]],[false,{\".fa-gripfire:before\":false},[\"content:\\\"\\uf3ac\\\"\"]],[false,{\".fa-grunt:before\":false},[\"content:\\\"\\uf3ad\\\"\"]],[false,{\".fa-guilded:before\":false},[\"content:\\\"\\ue07e\\\"\"]],[false,{\".fa-gulp:before\":false},[\"content:\\\"\\uf3ae\\\"\"]],[false,{\".fa-hacker-news:before\":false},[\"content:\\\"\\uf1d4\\\"\"]],[false,{\".fa-hacker-news-square:before\":false},[\"content:\\\"\\uf3af\\\"\"]],[false,{\".fa-hackerrank:before\":false},[\"content:\\\"\\uf5f7\\\"\"]],[false,{\".fa-hashnode:before\":false},[\"content:\\\"\\ue499\\\"\"]],[false,{\".fa-hips:before\":false},[\"content:\\\"\\uf452\\\"\"]],[false,{\".fa-hire-a-helper:before\":false},[\"content:\\\"\\uf3b0\\\"\"]],[false,{\".fa-hive:before\":false},[\"content:\\\"\\ue07f\\\"\"]],[false,{\".fa-hooli:before\":false},[\"content:\\\"\\uf427\\\"\"]],[false,{\".fa-hornbill:before\":false},[\"content:\\\"\\uf592\\\"\"]],[false,{\".fa-hotjar:before\":false},[\"content:\\\"\\uf3b1\\\"\"]],[false,{\".fa-houzz:before\":false},[\"content:\\\"\\uf27c\\\"\"]],[false,{\".fa-html5:before\":false},[\"content:\\\"\\uf13b\\\"\"]],[false,{\".fa-hubspot:before\":false},[\"content:\\\"\\uf3b2\\\"\"]],[false,{\".fa-ideal:before\":false},[\"content:\\\"\\ue013\\\"\"]],[false,{\".fa-imdb:before\":false},[\"content:\\\"\\uf2d8\\\"\"]],[false,{\".fa-instagram:before\":false},[\"content:\\\"\\uf16d\\\"\"]],[false,{\".fa-instagram-square:before\":false},[\"content:\\\"\\ue055\\\"\"]],[false,{\".fa-instalod:before\":false},[\"content:\\\"\\ue081\\\"\"]],[false,{\".fa-intercom:before\":false},[\"content:\\\"\\uf7af\\\"\"]],[false,{\".fa-internet-explorer:before\":false},[\"content:\\\"\\uf26b\\\"\"]],[false,{\".fa-invision:before\":false},[\"content:\\\"\\uf7b0\\\"\"]],[false,{\".fa-ioxhost:before\":false},[\"content:\\\"\\uf208\\\"\"]],[false,{\".fa-itch-io:before\":false},[\"content:\\\"\\uf83a\\\"\"]],[false,{\".fa-itunes:before\":false},[\"content:\\\"\\uf3b4\\\"\"]],[false,{\".fa-itunes-note:before\":false},[\"content:\\\"\\uf3b5\\\"\"]],[false,{\".fa-java:before\":false},[\"content:\\\"\\uf4e4\\\"\"]],[false,{\".fa-jedi-order:before\":false},[\"content:\\\"\\uf50e\\\"\"]],[false,{\".fa-jenkins:before\":false},[\"content:\\\"\\uf3b6\\\"\"]],[false,{\".fa-jira:before\":false},[\"content:\\\"\\uf7b1\\\"\"]],[false,{\".fa-joget:before\":false},[\"content:\\\"\\uf3b7\\\"\"]],[false,{\".fa-joomla:before\":false},[\"content:\\\"\\uf1aa\\\"\"]],[false,{\".fa-js:before\":false},[\"content:\\\"\\uf3b8\\\"\"]],[false,{\".fa-js-square:before\":false},[\"content:\\\"\\uf3b9\\\"\"]],[false,{\".fa-jsfiddle:before\":false},[\"content:\\\"\\uf1cc\\\"\"]],[false,{\".fa-kaggle:before\":false},[\"content:\\\"\\uf5fa\\\"\"]],[false,{\".fa-keybase:before\":false},[\"content:\\\"\\uf4f5\\\"\"]],[false,{\".fa-keycdn:before\":false},[\"content:\\\"\\uf3ba\\\"\"]],[false,{\".fa-kickstarter:before\":false},[\"content:\\\"\\uf3bb\\\"\"]],[false,{\".fa-kickstarter-k:before\":false},[\"content:\\\"\\uf3bc\\\"\"]],[false,{\".fa-korvue:before\":false},[\"content:\\\"\\uf42f\\\"\"]],[false,{\".fa-laravel:before\":false},[\"content:\\\"\\uf3bd\\\"\"]],[false,{\".fa-lastfm:before\":false},[\"content:\\\"\\uf202\\\"\"]],[false,{\".fa-lastfm-square:before\":false},[\"content:\\\"\\uf203\\\"\"]],[false,{\".fa-leanpub:before\":false},[\"content:\\\"\\uf212\\\"\"]],[false,{\".fa-less:before\":false},[\"content:\\\"\\uf41d\\\"\"]],[false,{\".fa-line:before\":false},[\"content:\\\"\\uf3c0\\\"\"]],[false,{\".fa-linkedin:before\":false},[\"content:\\\"\\uf08c\\\"\"]],[false,{\".fa-linkedin-in:before\":false},[\"content:\\\"\\uf0e1\\\"\"]],[false,{\".fa-linode:before\":false},[\"content:\\\"\\uf2b8\\\"\"]],[false,{\".fa-linux:before\":false},[\"content:\\\"\\uf17c\\\"\"]],[false,{\".fa-lyft:before\":false},[\"content:\\\"\\uf3c3\\\"\"]],[false,{\".fa-magento:before\":false},[\"content:\\\"\\uf3c4\\\"\"]],[false,{\".fa-mailchimp:before\":false},[\"content:\\\"\\uf59e\\\"\"]],[false,{\".fa-mandalorian:before\":false},[\"content:\\\"\\uf50f\\\"\"]],[false,{\".fa-markdown:before\":false},[\"content:\\\"\\uf60f\\\"\"]],[false,{\".fa-mastodon:before\":false},[\"content:\\\"\\uf4f6\\\"\"]],[false,{\".fa-maxcdn:before\":false},[\"content:\\\"\\uf136\\\"\"]],[false,{\".fa-mdb:before\":false},[\"content:\\\"\\uf8ca\\\"\"]],[false,{\".fa-medapps:before\":false},[\"content:\\\"\\uf3c6\\\"\"]],[false,{\".fa-medium-m:before\":false,\".fa-medium:before\":false},[\"content:\\\"\\uf23a\\\"\"]],[false,{\".fa-medrt:before\":false},[\"content:\\\"\\uf3c8\\\"\"]],[false,{\".fa-meetup:before\":false},[\"content:\\\"\\uf2e0\\\"\"]],[false,{\".fa-megaport:before\":false},[\"content:\\\"\\uf5a3\\\"\"]],[false,{\".fa-mendeley:before\":false},[\"content:\\\"\\uf7b3\\\"\"]],[false,{\".fa-microblog:before\":false},[\"content:\\\"\\ue01a\\\"\"]],[false,{\".fa-microsoft:before\":false},[\"content:\\\"\\uf3ca\\\"\"]],[false,{\".fa-mix:before\":false},[\"content:\\\"\\uf3cb\\\"\"]],[false,{\".fa-mixcloud:before\":false},[\"content:\\\"\\uf289\\\"\"]],[false,{\".fa-mixer:before\":false},[\"content:\\\"\\ue056\\\"\"]],[false,{\".fa-mizuni:before\":false},[\"content:\\\"\\uf3cc\\\"\"]],[false,{\".fa-modx:before\":false},[\"content:\\\"\\uf285\\\"\"]],[false,{\".fa-monero:before\":false},[\"content:\\\"\\uf3d0\\\"\"]],[false,{\".fa-napster:before\":false},[\"content:\\\"\\uf3d2\\\"\"]],[false,{\".fa-neos:before\":false},[\"content:\\\"\\uf612\\\"\"]],[false,{\".fa-nfc-directional:before\":false},[\"content:\\\"\\ue530\\\"\"]],[false,{\".fa-nfc-symbol:before\":false},[\"content:\\\"\\ue531\\\"\"]],[false,{\".fa-nimblr:before\":false},[\"content:\\\"\\uf5a8\\\"\"]],[false,{\".fa-node:before\":false},[\"content:\\\"\\uf419\\\"\"]],[false,{\".fa-node-js:before\":false},[\"content:\\\"\\uf3d3\\\"\"]],[false,{\".fa-npm:before\":false},[\"content:\\\"\\uf3d4\\\"\"]],[false,{\".fa-ns8:before\":false},[\"content:\\\"\\uf3d5\\\"\"]],[false,{\".fa-nutritionix:before\":false},[\"content:\\\"\\uf3d6\\\"\"]],[false,{\".fa-octopus-deploy:before\":false},[\"content:\\\"\\ue082\\\"\"]],[false,{\".fa-odnoklassniki:before\":false},[\"content:\\\"\\uf263\\\"\"]],[false,{\".fa-odnoklassniki-square:before\":false},[\"content:\\\"\\uf264\\\"\"]],[false,{\".fa-old-republic:before\":false},[\"content:\\\"\\uf510\\\"\"]],[false,{\".fa-opencart:before\":false},[\"content:\\\"\\uf23d\\\"\"]],[false,{\".fa-openid:before\":false},[\"content:\\\"\\uf19b\\\"\"]],[false,{\".fa-opera:before\":false},[\"content:\\\"\\uf26a\\\"\"]],[false,{\".fa-optin-monster:before\":false},[\"content:\\\"\\uf23c\\\"\"]],[false,{\".fa-orcid:before\":false},[\"content:\\\"\\uf8d2\\\"\"]],[false,{\".fa-osi:before\":false},[\"content:\\\"\\uf41a\\\"\"]],[false,{\".fa-padlet:before\":false},[\"content:\\\"\\ue4a0\\\"\"]],[false,{\".fa-page4:before\":false},[\"content:\\\"\\uf3d7\\\"\"]],[false,{\".fa-pagelines:before\":false},[\"content:\\\"\\uf18c\\\"\"]],[false,{\".fa-palfed:before\":false},[\"content:\\\"\\uf3d8\\\"\"]],[false,{\".fa-patreon:before\":false},[\"content:\\\"\\uf3d9\\\"\"]],[false,{\".fa-paypal:before\":false},[\"content:\\\"\\uf1ed\\\"\"]],[false,{\".fa-perbyte:before\":false},[\"content:\\\"\\ue083\\\"\"]],[false,{\".fa-periscope:before\":false},[\"content:\\\"\\uf3da\\\"\"]],[false,{\".fa-phabricator:before\":false},[\"content:\\\"\\uf3db\\\"\"]],[false,{\".fa-phoenix-framework:before\":false},[\"content:\\\"\\uf3dc\\\"\"]],[false,{\".fa-phoenix-squadron:before\":false},[\"content:\\\"\\uf511\\\"\"]],[false,{\".fa-php:before\":false},[\"content:\\\"\\uf457\\\"\"]],[false,{\".fa-pied-piper:before\":false},[\"content:\\\"\\uf2ae\\\"\"]],[false,{\".fa-pied-piper-alt:before\":false},[\"content:\\\"\\uf1a8\\\"\"]],[false,{\".fa-pied-piper-hat:before\":false},[\"content:\\\"\\uf4e5\\\"\"]],[false,{\".fa-pied-piper-pp:before\":false},[\"content:\\\"\\uf1a7\\\"\"]],[false,{\".fa-pied-piper-square:before\":false},[\"content:\\\"\\ue01e\\\"\"]],[false,{\".fa-pinterest:before\":false},[\"content:\\\"\\uf0d2\\\"\"]],[false,{\".fa-pinterest-p:before\":false},[\"content:\\\"\\uf231\\\"\"]],[false,{\".fa-pinterest-square:before\":false},[\"content:\\\"\\uf0d3\\\"\"]],[false,{\".fa-pix:before\":false},[\"content:\\\"\\ue43a\\\"\"]],[false,{\".fa-playstation:before\":false},[\"content:\\\"\\uf3df\\\"\"]],[false,{\".fa-product-hunt:before\":false},[\"content:\\\"\\uf288\\\"\"]],[false,{\".fa-pushed:before\":false},[\"content:\\\"\\uf3e1\\\"\"]],[false,{\".fa-python:before\":false},[\"content:\\\"\\uf3e2\\\"\"]],[false,{\".fa-qq:before\":false},[\"content:\\\"\\uf1d6\\\"\"]],[false,{\".fa-quinscape:before\":false},[\"content:\\\"\\uf459\\\"\"]],[false,{\".fa-quora:before\":false},[\"content:\\\"\\uf2c4\\\"\"]],[false,{\".fa-r-project:before\":false},[\"content:\\\"\\uf4f7\\\"\"]],[false,{\".fa-raspberry-pi:before\":false},[\"content:\\\"\\uf7bb\\\"\"]],[false,{\".fa-ravelry:before\":false},[\"content:\\\"\\uf2d9\\\"\"]],[false,{\".fa-react:before\":false},[\"content:\\\"\\uf41b\\\"\"]],[false,{\".fa-reacteurope:before\":false},[\"content:\\\"\\uf75d\\\"\"]],[false,{\".fa-readme:before\":false},[\"content:\\\"\\uf4d5\\\"\"]],[false,{\".fa-rebel:before\":false},[\"content:\\\"\\uf1d0\\\"\"]],[false,{\".fa-red-river:before\":false},[\"content:\\\"\\uf3e3\\\"\"]],[false,{\".fa-reddit:before\":false},[\"content:\\\"\\uf1a1\\\"\"]],[false,{\".fa-reddit-alien:before\":false},[\"content:\\\"\\uf281\\\"\"]],[false,{\".fa-reddit-square:before\":false},[\"content:\\\"\\uf1a2\\\"\"]],[false,{\".fa-redhat:before\":false},[\"content:\\\"\\uf7bc\\\"\"]],[false,{\".fa-renren:before\":false},[\"content:\\\"\\uf18b\\\"\"]],[false,{\".fa-replyd:before\":false},[\"content:\\\"\\uf3e6\\\"\"]],[false,{\".fa-researchgate:before\":false},[\"content:\\\"\\uf4f8\\\"\"]],[false,{\".fa-resolving:before\":false},[\"content:\\\"\\uf3e7\\\"\"]],[false,{\".fa-rev:before\":false},[\"content:\\\"\\uf5b2\\\"\"]],[false,{\".fa-rocketchat:before\":false},[\"content:\\\"\\uf3e8\\\"\"]],[false,{\".fa-rockrms:before\":false},[\"content:\\\"\\uf3e9\\\"\"]],[false,{\".fa-rust:before\":false},[\"content:\\\"\\ue07a\\\"\"]],[false,{\".fa-safari:before\":false},[\"content:\\\"\\uf267\\\"\"]],[false,{\".fa-salesforce:before\":false},[\"content:\\\"\\uf83b\\\"\"]],[false,{\".fa-sass:before\":false},[\"content:\\\"\\uf41e\\\"\"]],[false,{\".fa-schlix:before\":false},[\"content:\\\"\\uf3ea\\\"\"]],[false,{\".fa-screenpal:before\":false},[\"content:\\\"\\ue570\\\"\"]],[false,{\".fa-scribd:before\":false},[\"content:\\\"\\uf28a\\\"\"]],[false,{\".fa-searchengin:before\":false},[\"content:\\\"\\uf3eb\\\"\"]],[false,{\".fa-sellcast:before\":false},[\"content:\\\"\\uf2da\\\"\"]],[false,{\".fa-sellsy:before\":false},[\"content:\\\"\\uf213\\\"\"]],[false,{\".fa-servicestack:before\":false},[\"content:\\\"\\uf3ec\\\"\"]],[false,{\".fa-shirtsinbulk:before\":false},[\"content:\\\"\\uf214\\\"\"]],[false,{\".fa-shopify:before\":false},[\"content:\\\"\\ue057\\\"\"]],[false,{\".fa-shopware:before\":false},[\"content:\\\"\\uf5b5\\\"\"]],[false,{\".fa-simplybuilt:before\":false},[\"content:\\\"\\uf215\\\"\"]],[false,{\".fa-sistrix:before\":false},[\"content:\\\"\\uf3ee\\\"\"]],[false,{\".fa-sith:before\":false},[\"content:\\\"\\uf512\\\"\"]],[false,{\".fa-sitrox:before\":false},[\"content:\\\"\\ue44a\\\"\"]],[false,{\".fa-sketch:before\":false},[\"content:\\\"\\uf7c6\\\"\"]],[false,{\".fa-skyatlas:before\":false},[\"content:\\\"\\uf216\\\"\"]],[false,{\".fa-skype:before\":false},[\"content:\\\"\\uf17e\\\"\"]],[false,{\".fa-slack-hash:before\":false,\".fa-slack:before\":false},[\"content:\\\"\\uf198\\\"\"]],[false,{\".fa-slideshare:before\":false},[\"content:\\\"\\uf1e7\\\"\"]],[false,{\".fa-snapchat-ghost:before\":false,\".fa-snapchat:before\":false},[\"content:\\\"\\uf2ab\\\"\"]],[false,{\".fa-snapchat-square:before\":false},[\"content:\\\"\\uf2ad\\\"\"]],[false,{\".fa-soundcloud:before\":false},[\"content:\\\"\\uf1be\\\"\"]],[false,{\".fa-sourcetree:before\":false},[\"content:\\\"\\uf7d3\\\"\"]],[false,{\".fa-speakap:before\":false},[\"content:\\\"\\uf3f3\\\"\"]],[false,{\".fa-speaker-deck:before\":false},[\"content:\\\"\\uf83c\\\"\"]],[false,{\".fa-spotify:before\":false},[\"content:\\\"\\uf1bc\\\"\"]],[false,{\".fa-square-font-awesome:before\":false},[\"content:\\\"\\uf425\\\"\"]],[false,{\".fa-font-awesome-alt:before\":false,\".fa-square-font-awesome-stroke:before\":false},[\"content:\\\"\\uf35c\\\"\"]],[false,{\".fa-squarespace:before\":false},[\"content:\\\"\\uf5be\\\"\"]],[false,{\".fa-stack-exchange:before\":false},[\"content:\\\"\\uf18d\\\"\"]],[false,{\".fa-stack-overflow:before\":false},[\"content:\\\"\\uf16c\\\"\"]],[false,{\".fa-stackpath:before\":false},[\"content:\\\"\\uf842\\\"\"]],[false,{\".fa-staylinked:before\":false},[\"content:\\\"\\uf3f5\\\"\"]],[false,{\".fa-steam:before\":false},[\"content:\\\"\\uf1b6\\\"\"]],[false,{\".fa-steam-square:before\":false},[\"content:\\\"\\uf1b7\\\"\"]],[false,{\".fa-steam-symbol:before\":false},[\"content:\\\"\\uf3f6\\\"\"]],[false,{\".fa-sticker-mule:before\":false},[\"content:\\\"\\uf3f7\\\"\"]],[false,{\".fa-strava:before\":false},[\"content:\\\"\\uf428\\\"\"]],[false,{\".fa-stripe:before\":false},[\"content:\\\"\\uf429\\\"\"]],[false,{\".fa-stripe-s:before\":false},[\"content:\\\"\\uf42a\\\"\"]],[false,{\".fa-studiovinari:before\":false},[\"content:\\\"\\uf3f8\\\"\"]],[false,{\".fa-stumbleupon:before\":false},[\"content:\\\"\\uf1a4\\\"\"]],[false,{\".fa-stumbleupon-circle:before\":false},[\"content:\\\"\\uf1a3\\\"\"]],[false,{\".fa-superpowers:before\":false},[\"content:\\\"\\uf2dd\\\"\"]],[false,{\".fa-supple:before\":false},[\"content:\\\"\\uf3f9\\\"\"]],[false,{\".fa-suse:before\":false},[\"content:\\\"\\uf7d6\\\"\"]],[false,{\".fa-swift:before\":false},[\"content:\\\"\\uf8e1\\\"\"]],[false,{\".fa-symfony:before\":false},[\"content:\\\"\\uf83d\\\"\"]],[false,{\".fa-teamspeak:before\":false},[\"content:\\\"\\uf4f9\\\"\"]],[false,{\".fa-telegram-plane:before\":false,\".fa-telegram:before\":false},[\"content:\\\"\\uf2c6\\\"\"]],[false,{\".fa-tencent-weibo:before\":false},[\"content:\\\"\\uf1d5\\\"\"]],[false,{\".fa-the-red-yeti:before\":false},[\"content:\\\"\\uf69d\\\"\"]],[false,{\".fa-themeco:before\":false},[\"content:\\\"\\uf5c6\\\"\"]],[false,{\".fa-themeisle:before\":false},[\"content:\\\"\\uf2b2\\\"\"]],[false,{\".fa-think-peaks:before\":false},[\"content:\\\"\\uf731\\\"\"]],[false,{\".fa-tiktok:before\":false},[\"content:\\\"\\ue07b\\\"\"]],[false,{\".fa-trade-federation:before\":false},[\"content:\\\"\\uf513\\\"\"]],[false,{\".fa-trello:before\":false},[\"content:\\\"\\uf181\\\"\"]],[false,{\".fa-tumblr:before\":false},[\"content:\\\"\\uf173\\\"\"]],[false,{\".fa-tumblr-square:before\":false},[\"content:\\\"\\uf174\\\"\"]],[false,{\".fa-twitch:before\":false},[\"content:\\\"\\uf1e8\\\"\"]],[false,{\".fa-twitter:before\":false},[\"content:\\\"\\uf099\\\"\"]],[false,{\".fa-twitter-square:before\":false},[\"content:\\\"\\uf081\\\"\"]],[false,{\".fa-typo3:before\":false},[\"content:\\\"\\uf42b\\\"\"]],[false,{\".fa-uber:before\":false},[\"content:\\\"\\uf402\\\"\"]],[false,{\".fa-ubuntu:before\":false},[\"content:\\\"\\uf7df\\\"\"]],[false,{\".fa-uikit:before\":false},[\"content:\\\"\\uf403\\\"\"]],[false,{\".fa-umbraco:before\":false},[\"content:\\\"\\uf8e8\\\"\"]],[false,{\".fa-uncharted:before\":false},[\"content:\\\"\\ue084\\\"\"]],[false,{\".fa-uniregistry:before\":false},[\"content:\\\"\\uf404\\\"\"]],[false,{\".fa-unity:before\":false},[\"content:\\\"\\ue049\\\"\"]],[false,{\".fa-unsplash:before\":false},[\"content:\\\"\\ue07c\\\"\"]],[false,{\".fa-untappd:before\":false},[\"content:\\\"\\uf405\\\"\"]],[false,{\".fa-ups:before\":false},[\"content:\\\"\\uf7e0\\\"\"]],[false,{\".fa-usb:before\":false},[\"content:\\\"\\uf287\\\"\"]],[false,{\".fa-usps:before\":false},[\"content:\\\"\\uf7e1\\\"\"]],[false,{\".fa-ussunnah:before\":false},[\"content:\\\"\\uf407\\\"\"]],[false,{\".fa-vaadin:before\":false},[\"content:\\\"\\uf408\\\"\"]],[false,{\".fa-viacoin:before\":false},[\"content:\\\"\\uf237\\\"\"]],[false,{\".fa-viadeo:before\":false},[\"content:\\\"\\uf2a9\\\"\"]],[false,{\".fa-viadeo-square:before\":false},[\"content:\\\"\\uf2aa\\\"\"]],[false,{\".fa-viber:before\":false},[\"content:\\\"\\uf409\\\"\"]],[false,{\".fa-vimeo:before\":false},[\"content:\\\"\\uf40a\\\"\"]],[false,{\".fa-vimeo-square:before\":false},[\"content:\\\"\\uf194\\\"\"]],[false,{\".fa-vimeo-v:before\":false},[\"content:\\\"\\uf27d\\\"\"]],[false,{\".fa-vine:before\":false},[\"content:\\\"\\uf1ca\\\"\"]],[false,{\".fa-vk:before\":false},[\"content:\\\"\\uf189\\\"\"]],[false,{\".fa-vnv:before\":false},[\"content:\\\"\\uf40b\\\"\"]],[false,{\".fa-vuejs:before\":false},[\"content:\\\"\\uf41f\\\"\"]],[false,{\".fa-watchman-monitoring:before\":false},[\"content:\\\"\\ue087\\\"\"]],[false,{\".fa-waze:before\":false},[\"content:\\\"\\uf83f\\\"\"]],[false,{\".fa-weebly:before\":false},[\"content:\\\"\\uf5cc\\\"\"]],[false,{\".fa-weibo:before\":false},[\"content:\\\"\\uf18a\\\"\"]],[false,{\".fa-weixin:before\":false},[\"content:\\\"\\uf1d7\\\"\"]],[false,{\".fa-whatsapp:before\":false},[\"content:\\\"\\uf232\\\"\"]],[false,{\".fa-whatsapp-square:before\":false},[\"content:\\\"\\uf40c\\\"\"]],[false,{\".fa-whmcs:before\":false},[\"content:\\\"\\uf40d\\\"\"]],[false,{\".fa-wikipedia-w:before\":false},[\"content:\\\"\\uf266\\\"\"]],[false,{\".fa-windows:before\":false},[\"content:\\\"\\uf17a\\\"\"]],[false,{\".fa-wirsindhandwerk:before\":false,\".fa-wsh:before\":false},[\"content:\\\"\\ue2d0\\\"\"]],[false,{\".fa-wix:before\":false},[\"content:\\\"\\uf5cf\\\"\"]],[false,{\".fa-wizards-of-the-coast:before\":false},[\"content:\\\"\\uf730\\\"\"]],[false,{\".fa-wodu:before\":false},[\"content:\\\"\\ue088\\\"\"]],[false,{\".fa-wolf-pack-battalion:before\":false},[\"content:\\\"\\uf514\\\"\"]],[false,{\".fa-wordpress:before\":false},[\"content:\\\"\\uf19a\\\"\"]],[false,{\".fa-wordpress-simple:before\":false},[\"content:\\\"\\uf411\\\"\"]],[false,{\".fa-wpbeginner:before\":false},[\"content:\\\"\\uf297\\\"\"]],[false,{\".fa-wpexplorer:before\":false},[\"content:\\\"\\uf2de\\\"\"]],[false,{\".fa-wpforms:before\":false},[\"content:\\\"\\uf298\\\"\"]],[false,{\".fa-wpressr:before\":false},[\"content:\\\"\\uf3e4\\\"\"]],[false,{\".fa-xbox:before\":false},[\"content:\\\"\\uf412\\\"\"]],[false,{\".fa-xing:before\":false},[\"content:\\\"\\uf168\\\"\"]],[false,{\".fa-xing-square:before\":false},[\"content:\\\"\\uf169\\\"\"]],[false,{\".fa-y-combinator:before\":false},[\"content:\\\"\\uf23b\\\"\"]],[false,{\".fa-yahoo:before\":false},[\"content:\\\"\\uf19e\\\"\"]],[false,{\".fa-yammer:before\":false},[\"content:\\\"\\uf840\\\"\"]],[false,{\".fa-yandex:before\":false},[\"content:\\\"\\uf413\\\"\"]],[false,{\".fa-yandex-international:before\":false},[\"content:\\\"\\uf414\\\"\"]],[false,{\".fa-yarn:before\":false},[\"content:\\\"\\uf7e3\\\"\"]],[false,{\".fa-yelp:before\":false},[\"content:\\\"\\uf1e9\\\"\"]],[false,{\".fa-yoast:before\":false},[\"content:\\\"\\uf2b1\\\"\"]],[false,{\".fa-youtube:before\":false},[\"content:\\\"\\uf167\\\"\"]],[false,{\".fa-youtube-square:before\":false},[\"content:\\\"\\uf431\\\"\"]],[false,{\".fa-zhihu:before\":false},[\"content:\\\"\\uf63f\\\"\"]],[true,{\":host\":true,\":root\":true},[\"--fa-font-regular:normal 400 1em\\/1 \\\"Font Awesome 6 Free\\\"\"]],[true,\"@font-face{font-family:\\\"Font Awesome 6 Free\\\";font-style:normal;font-weight:400;font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\")}\"],[false,{\".fa-regular\":false,\".far\":false},[\"font-family:\\\"Font Awesome 6 Free\\\"\",\"font-weight:400\"]],[true,{\":host\":true,\":root\":true},[\"--fa-font-solid:normal 900 1em\\/1 \\\"Font Awesome 6 Free\\\"\"]],[true,\"@font-face{font-family:\\\"Font Awesome 6 Free\\\";font-style:normal;font-weight:900;font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\")}\"],[false,{\".fa-solid\":false,\".fas\":false},[\"font-family:\\\"Font Awesome 6 Free\\\"\",\"font-weight:900\"]],[true,\"@font-face{font-family:\\\"Font Awesome 5 Brands\\\";font-display:block;font-weight:400;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-display:block;font-weight:900;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-display:block;font-weight:400;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-v4compatibility.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-v4compatibility.ttf\\\") format(\\\"truetype\\\")}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":16466,\"final_size\":2468,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"f525e508f09233d1bbad77f319ca5b46\",\"parse_time\":0.25615501403808594,\"shake_time\":0.0002410411834716797,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,\"@font-face{font-family:swiper-icons;src:url(\\\"data:application\\/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj\\/\\/wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA\\/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu\\/j+W2+MnAzMYDAzaX6QjD6\\/4\\/\\/Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+\\/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg\\/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4\\/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9\\/w8UBfEMgLzE\\/\\/\\/\\/P\\/5\\/\\/f\\/V\\/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA\\/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP\\/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj\\/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB\\/yIY09An6AH2Bdu\\/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z\\/PEJ6YOB5hKh4dj3EvXhxPqH\\/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN\\/d\\/gczfEimrE\\/fs\\/bOuq29Zmn8tloORaXgZgGa78yO9\\/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i\\/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH\\/\\/wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv\\/H9ezGI6Z5XBAw8CBK\\/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow\\/P\\/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA\\\");font-weight:400;font-style:normal}\"],[true,{\":root\":true},[\"--swiper-theme-color:#007aff\"]],[false,{\".swiper\":false},[\"margin-left:auto\",\"margin-right:auto\",\"position:relative\",\"overflow:hidden\",\"list-style:none\",\"padding:0\",\"z-index:1\"]],[false,{\".swiper-vertical>.swiper-wrapper\":false},[\"flex-direction:column\"]],[false,{\".swiper-wrapper\":false},[\"position:relative\",\"width:100%\",\"height:100%\",\"z-index:1\",\"display:flex\",\"transition-property:transform\",\"box-sizing:content-box\"]],[false,{\".swiper-android .swiper-slide\":false,\".swiper-wrapper\":false},[\"transform:translate3d(0px,0,0)\"]],[false,{\".swiper-pointer-events\":false},[\"touch-action:pan-y\"]],[false,{\".swiper-pointer-events.swiper-vertical\":false},[\"touch-action:pan-x\"]],[false,{\".swiper-slide\":false},[\"flex-shrink:0\",\"width:100%\",\"height:100%\",\"position:relative\",\"transition-property:transform\"]],[false,{\".swiper-slide-invisible-blank\":false},[\"visibility:hidden\"]],[false,{\".swiper-autoheight\":false,\".swiper-autoheight .swiper-slide\":false},[\"height:auto\"]],[false,{\".swiper-autoheight .swiper-wrapper\":false},[\"align-items:flex-start\",\"transition-property:transform,height\"]],[false,{\".swiper-backface-hidden .swiper-slide\":false},[\"transform:translateZ(0)\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".swiper-3d\":false,\".swiper-3d.swiper-css-mode .swiper-wrapper\":false},[\"perspective:1200px\"]],[false,{\".swiper-3d .swiper-cube-shadow\":false,\".swiper-3d .swiper-slide\":false,\".swiper-3d .swiper-slide-shadow\":false,\".swiper-3d .swiper-slide-shadow-bottom\":false,\".swiper-3d .swiper-slide-shadow-left\":false,\".swiper-3d .swiper-slide-shadow-right\":false,\".swiper-3d .swiper-slide-shadow-top\":false,\".swiper-3d .swiper-wrapper\":false},[\"transform-style:preserve-3d\"]],[false,{\".swiper-3d .swiper-slide-shadow\":false,\".swiper-3d .swiper-slide-shadow-bottom\":false,\".swiper-3d .swiper-slide-shadow-left\":false,\".swiper-3d .swiper-slide-shadow-right\":false,\".swiper-3d .swiper-slide-shadow-top\":false},[\"position:absolute\",\"left:0\",\"top:0\",\"width:100%\",\"height:100%\",\"pointer-events:none\",\"z-index:10\"]],[false,{\".swiper-3d .swiper-slide-shadow\":false},[\"background:rgba(0,0,0,.15)\"]],[false,{\".swiper-3d .swiper-slide-shadow-left\":false},[\"background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-3d .swiper-slide-shadow-right\":false},[\"background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-3d .swiper-slide-shadow-top\":false},[\"background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-3d .swiper-slide-shadow-bottom\":false},[\"background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-css-mode>.swiper-wrapper\":false},[\"overflow:auto\",\"scrollbar-width:none\",\"-ms-overflow-style:none\"]],[false,{\".swiper-css-mode>.swiper-wrapper::-webkit-scrollbar\":false},[\"display:none\"]],[false,{\".swiper-css-mode>.swiper-wrapper>.swiper-slide\":false},[\"scroll-snap-align:start start\"]],[false,{\".swiper-horizontal.swiper-css-mode>.swiper-wrapper\":false},[\"scroll-snap-type:x mandatory\"]],[false,{\".swiper-vertical.swiper-css-mode>.swiper-wrapper\":false},[\"scroll-snap-type:y mandatory\"]],[false,{\".swiper-centered>.swiper-wrapper::before\":false},[\"content:\\\"\\\"\",\"flex-shrink:0\",\"order:9999\"]],[false,{\".swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child\":false},[\"margin-inline-start:var(--swiper-centered-offset-before)\"]],[false,{\".swiper-centered.swiper-horizontal>.swiper-wrapper::before\":false},[\"height:100%\",\"min-height:1px\",\"width:var(--swiper-centered-offset-after)\"]],[false,{\".swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child\":false},[\"margin-block-start:var(--swiper-centered-offset-before)\"]],[false,{\".swiper-centered.swiper-vertical>.swiper-wrapper::before\":false},[\"width:100%\",\"min-width:1px\",\"height:var(--swiper-centered-offset-after)\"]],[false,{\".swiper-centered>.swiper-wrapper>.swiper-slide\":false},[\"scroll-snap-align:center center\"]],[false,{\".swiper-virtual .swiper-slide\":false},[\"-webkit-backface-visibility:hidden\",\"transform:translateZ(0)\"]],[false,{\".swiper-virtual.swiper-css-mode .swiper-wrapper::after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"left:0\",\"top:0\",\"pointer-events:none\"]],[false,{\".swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after\":false},[\"height:1px\",\"width:var(--swiper-virtual-size)\"]],[false,{\".swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after\":false},[\"width:1px\",\"height:var(--swiper-virtual-size)\"]],[true,{\":root\":true},[\"--swiper-navigation-size:44px\"]],[false,{\".swiper-button-next\":false,\".swiper-button-prev\":false},[\"position:absolute\",\"top:50%\",\"width:calc(var(--swiper-navigation-size) \\/ 44 * 27)\",\"height:var(--swiper-navigation-size)\",\"margin-top:calc(0px - ( var(--swiper-navigation-size) \\/ 2 ))\",\"z-index:10\",\"cursor:pointer\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"color:var(--swiper-navigation-color,var(--swiper-theme-color))\"]],[false,{\".swiper-button-next.swiper-button-disabled\":false,\".swiper-button-prev.swiper-button-disabled\":false},[\"opacity:.35\",\"cursor:auto\",\"pointer-events:none\"]],[false,{\".swiper-button-next.swiper-button-hidden\":false,\".swiper-button-prev.swiper-button-hidden\":false},[\"opacity:0\",\"cursor:auto\",\"pointer-events:none\"]],[false,{\".swiper-navigation-disabled .swiper-button-next:not(#_#_#_#_#_#_#_)\":false,\".swiper-navigation-disabled .swiper-button-prev:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-button-next:after\":false,\".swiper-button-prev:after\":false},[\"font-family:swiper-icons\",\"font-size:var(--swiper-navigation-size)\",\"letter-spacing:0\",\"font-variant:initial\",\"line-height:1\"]],[false,{\".swiper-button-next:after:not(#_#_#_#_#_#_#_#_)\":false,\".swiper-button-prev:after:not(#_#_#_#_#_#_#_#_)\":false},[\"text-transform:none\"]],[false,{\".swiper-button-prev\":false,\".swiper-rtl .swiper-button-next\":false},[\"left:10px\",\"right:auto\"]],[false,{\".swiper-button-prev:after\":false,\".swiper-rtl .swiper-button-next:after\":false},[\"content:\\\"prev\\\"\"]],[false,{\".swiper-button-next\":false,\".swiper-rtl .swiper-button-prev\":false},[\"right:10px\",\"left:auto\"]],[false,{\".swiper-button-next:after\":false,\".swiper-rtl .swiper-button-prev:after\":false},[\"content:\\\"next\\\"\"]],[false,{\".swiper-button-lock\":false},[\"display:none\"]],[false,{\".swiper-pagination\":false},[\"position:absolute\",\"text-align:center\",\"transition:.3s opacity\",\"transform:translate3d(0,0,0)\",\"z-index:10\"]],[false,{\".swiper-pagination.swiper-pagination-hidden\":false},[\"opacity:0\"]],[false,{\".swiper-pagination-disabled>.swiper-pagination:not(#_#_#_#_#_#_#_)\":false,\".swiper-pagination.swiper-pagination-disabled:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets\":false,\".swiper-pagination-bullets.swiper-pagination-horizontal\":false,\".swiper-pagination-custom\":false,\".swiper-pagination-fraction\":false},[\"bottom:10px\",\"left:0\",\"width:100%\"]],[false,{\".swiper-pagination-bullets-dynamic\":false},[\"overflow:hidden\",\"font-size:0\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"transform:scale(.33)\",\"position:relative\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active\":false},[\"transform:scale(1)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main\":false},[\"transform:scale(1)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev\":false},[\"transform:scale(.66)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev\":false},[\"transform:scale(.33)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next\":false},[\"transform:scale(.66)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next\":false},[\"transform:scale(.33)\"]],[false,{\".swiper-pagination-bullet\":false},[\"width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px))\",\"height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px))\",\"display:inline-block\",\"border-radius:50%\",\"background:var(--swiper-pagination-bullet-inactive-color,#000)\",\"opacity:var(--swiper-pagination-bullet-inactive-opacity,.2)\"]],[false,{\"button.swiper-pagination-bullet\":false},[\"border:none\",\"margin:0\",\"padding:0\",\"box-shadow:none\",\"-webkit-appearance:none\",\"appearance:none\"]],[false,{\".swiper-pagination-clickable .swiper-pagination-bullet\":false},[\"cursor:pointer\"]],[false,{\".swiper-pagination-bullet:only-child:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-pagination-bullet-active\":false},[\"opacity:var(--swiper-pagination-bullet-opacity,1)\",\"background:var(--swiper-pagination-color,var(--swiper-theme-color))\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets\":false,\".swiper-vertical>.swiper-pagination-bullets\":false},[\"right:10px\",\"top:50%\",\"transform:translate3d(0px,-50%,0)\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet\":false,\".swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet\":false},[\"margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0\",\"display:block\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false,\".swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false},[\"top:50%\",\"transform:translateY(-50%)\",\"width:8px\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false,\".swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"display:inline-block\",\"transition:.2s transform,.2s top\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet\":false,\".swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet\":false},[\"margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false,\".swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false},[\"left:50%\",\"transform:translateX(-50%)\",\"white-space:nowrap\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false,\".swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"transition:.2s transform,.2s left\"]],[false,{\".swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"transition:.2s transform,.2s right\"]],[false,{\".swiper-pagination-progressbar\":false},[\"background:rgba(0,0,0,.25)\",\"position:absolute\"]],[false,{\".swiper-pagination-progressbar .swiper-pagination-progressbar-fill\":false},[\"background:var(--swiper-pagination-color,var(--swiper-theme-color))\",\"position:absolute\",\"left:0\",\"top:0\",\"width:100%\",\"height:100%\",\"transform:scale(0)\",\"transform-origin:left top\"]],[false,{\".swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill\":false},[\"transform-origin:right top\"]],[false,{\".swiper-horizontal>.swiper-pagination-progressbar\":false,\".swiper-pagination-progressbar.swiper-pagination-horizontal\":false,\".swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite\":false,\".swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite\":false},[\"width:100%\",\"height:4px\",\"left:0\",\"top:0\"]],[false,{\".swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite\":false,\".swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite\":false,\".swiper-pagination-progressbar.swiper-pagination-vertical\":false,\".swiper-vertical>.swiper-pagination-progressbar\":false},[\"width:4px\",\"height:100%\",\"left:0\",\"top:0\"]],[false,{\".swiper-pagination-lock\":false},[\"display:none\"]],[false,{\".swiper-scrollbar\":false},[\"border-radius:10px\",\"position:relative\",\"-ms-touch-action:none\",\"background:rgba(0,0,0,.1)\"]],[false,{\".swiper-scrollbar-disabled>.swiper-scrollbar:not(#_#_#_#_#_#_#_)\":false,\".swiper-scrollbar.swiper-scrollbar-disabled:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-horizontal>.swiper-scrollbar\":false,\".swiper-scrollbar.swiper-scrollbar-horizontal\":false},[\"position:absolute\",\"left:1%\",\"bottom:3px\",\"z-index:50\",\"height:5px\",\"width:98%\"]],[false,{\".swiper-scrollbar.swiper-scrollbar-vertical\":false,\".swiper-vertical>.swiper-scrollbar\":false},[\"position:absolute\",\"right:3px\",\"top:1%\",\"z-index:50\",\"width:5px\",\"height:98%\"]],[false,{\".swiper-scrollbar-drag\":false},[\"height:100%\",\"width:100%\",\"position:relative\",\"background:rgba(0,0,0,.5)\",\"border-radius:10px\",\"left:0\",\"top:0\"]],[false,{\".swiper-scrollbar-cursor-drag\":false},[\"cursor:move\"]],[false,{\".swiper-scrollbar-lock\":false},[\"display:none\"]],[false,{\".swiper-zoom-container\":false},[\"width:100%\",\"height:100%\",\"display:flex\",\"justify-content:center\",\"align-items:center\",\"text-align:center\"]],[false,{\".swiper-zoom-container>canvas\":false,\".swiper-zoom-container>amp-img\":false,\".swiper-zoom-container>amp-anim\":false,\".swiper-zoom-container>svg\":false},[\"max-width:100%\",\"max-height:100%\",\"object-fit:contain\"]],[false,{\".swiper-slide-zoomed\":false},[\"cursor:move\"]],[false,{\".swiper-lazy-preloader\":false},[\"width:42px\",\"height:42px\",\"position:absolute\",\"left:50%\",\"top:50%\",\"margin-left:-21px\",\"margin-top:-21px\",\"z-index:10\",\"transform-origin:50%\",\"box-sizing:border-box\",\"border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color))\",\"border-radius:50%\",\"border-top-color:transparent\"]],[false,{\".swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader\":false,\".swiper:not(.swiper-watch-progress) .swiper-lazy-preloader\":false},[\"animation:swiper-preloader-spin 1s infinite linear\"]],[false,{\".swiper-lazy-preloader-white\":false},[\"--swiper-preloader-color:#fff\"]],[false,{\".swiper-lazy-preloader-black\":false},[\"--swiper-preloader-color:#000\"]],[true,\"@keyframes swiper-preloader-spin{\"],[true,\"0%{transform:rotate(0deg)}\"],[true,\"100%{transform:rotate(360deg)}\"],[true,\"}\"],[false,{\".swiper .swiper-notification\":false},[\"position:absolute\",\"left:0\",\"top:0\",\"pointer-events:none\",\"opacity:0\",\"z-index:-1000\"]],[false,{\".swiper-free-mode>.swiper-wrapper\":false},[\"transition-timing-function:ease-out\",\"margin:0 auto\"]],[false,{\".swiper-grid>.swiper-wrapper\":false},[\"flex-wrap:wrap\"]],[false,{\".swiper-grid-column>.swiper-wrapper\":false},[\"flex-wrap:wrap\",\"flex-direction:column\"]],[false,{\".swiper-fade.swiper-free-mode .swiper-slide\":false},[\"transition-timing-function:ease-out\"]],[false,{\".swiper-fade .swiper-slide\":false},[\"pointer-events:none\",\"transition-property:opacity\"]],[false,{\".swiper-fade .swiper-slide .swiper-slide\":false},[\"pointer-events:none\"]],[false,{\".swiper-fade .swiper-slide-active\":false,\".swiper-fade .swiper-slide-active .swiper-slide-active\":false},[\"pointer-events:auto\"]],[false,{\".swiper-cube\":false},[\"overflow:visible\"]],[false,{\".swiper-cube .swiper-slide\":false},[\"pointer-events:none\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"z-index:1\",\"visibility:hidden\",\"transform-origin:0 0\",\"width:100%\",\"height:100%\"]],[false,{\".swiper-cube .swiper-slide .swiper-slide\":false},[\"pointer-events:none\"]],[false,{\".swiper-cube.swiper-rtl .swiper-slide\":false},[\"transform-origin:100% 0\"]],[false,{\".swiper-cube .swiper-slide-active\":false,\".swiper-cube .swiper-slide-active .swiper-slide-active\":false},[\"pointer-events:auto\"]],[false,{\".swiper-cube .swiper-slide-active\":false,\".swiper-cube .swiper-slide-next\":false,\".swiper-cube .swiper-slide-next+.swiper-slide\":false,\".swiper-cube .swiper-slide-prev\":false},[\"pointer-events:auto\",\"visibility:visible\"]],[false,{\".swiper-cube .swiper-slide-shadow-bottom\":false,\".swiper-cube .swiper-slide-shadow-left\":false,\".swiper-cube .swiper-slide-shadow-right\":false,\".swiper-cube .swiper-slide-shadow-top\":false},[\"z-index:0\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".swiper-cube .swiper-cube-shadow\":false},[\"position:absolute\",\"left:0\",\"bottom:0px\",\"width:100%\",\"height:100%\",\"opacity:.6\",\"z-index:0\"]],[false,{\".swiper-cube .swiper-cube-shadow:before\":false},[\"content:\\\"\\\"\",\"background:#000\",\"position:absolute\",\"left:0\",\"top:0\",\"bottom:0\",\"right:0\",\"filter:blur(50px)\"]],[false,{\".swiper-flip\":false},[\"overflow:visible\"]],[false,{\".swiper-flip .swiper-slide\":false},[\"pointer-events:none\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"z-index:1\"]],[false,{\".swiper-flip .swiper-slide .swiper-slide\":false},[\"pointer-events:none\"]],[false,{\".swiper-flip .swiper-slide-active\":false,\".swiper-flip .swiper-slide-active .swiper-slide-active\":false},[\"pointer-events:auto\"]],[false,{\".swiper-flip .swiper-slide-shadow-bottom\":false,\".swiper-flip .swiper-slide-shadow-left\":false,\".swiper-flip .swiper-slide-shadow-right\":false,\".swiper-flip .swiper-slide-shadow-top\":false},[\"z-index:0\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".swiper-creative .swiper-slide\":false},[\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"overflow:hidden\",\"transition-property:transform,opacity,height\"]],[false,{\".swiper-cards\":false},[\"overflow:visible\"]],[false,{\".swiper-cards .swiper-slide\":false},[\"transform-origin:center bottom\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"overflow:hidden\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":810,\"final_size\":766,\"element\":{\"name\":\"style\",\"attributes\":[]},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Header_Output.php\",\"line\":69,\"function\":\"SWP_Header_Output::add_header_output\",\"hook\":\"wp_head\",\"priority\":1}],\"priority\":70,\"hash\":\"0a9255310f1740c2ab6cffd5f5a29640\",\"parse_time\":0.0011060237884521484,\"shake_time\":3.0994415283203125e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0#iefix\"],\"shaken_tokens\":[[true,\"@font-face{font-family:\\\"sw-icon-font\\\";src:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0\\\");src:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.woff?ver=4.3.0\\\") format(\\\"woff\\\"),url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.ttf?ver=4.3.0\\\") format(\\\"truetype\\\"),url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.svg?ver=4.3.0#1445203416\\\") format(\\\"svg\\\");font-weight:normal;font-style:normal;font-display:block}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2209,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"social-warfare-block-css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/js\\/post-editor\\/dist\\/blocks.style.build.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"assets\\/js\\/post-editor\\/blocks.php\",\"line\":20,\"function\":\"register_gutenberg_blocks\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social-warfare-block-css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"c542eecf74fba8e6b26c437634e5223e\",\"parse_time\":0.010244131088256836,\"shake_time\":4.1961669921875e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".social-warfare-admin-block\":false},[\"font-family:\\\"SF Pro Text\\\",\\\"Helvetica\\\",sans-serif\",\"font-size:13px\"]],[false,{\".social-warfare-admin-block .head\":false},[\"width:100%\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".social-warfare-admin-block .head p\":false},[\"font-weight:bold\"]],[false,{\".social-warfare-admin-block .swp-block-icon\":false},[\"margin:0 28px 0 14px\",\"font-size:18px\",\"width:32px\",\"height:32px\"]],[false,{\".social-warfare-block-wrap input\":false,\".social-warfare-block-wrap select\":false},[\"width:100%\"]],[false,{\".swp-active-block\":false},[\"height:100%\"]],[false,{\".swp-active-block input\":false,\".swp-active-block select\":false,\".swp-active-block textarea\":false},[\"display:block\",\"width:100%\",\"padding:5px\",\"height:42px\",\"border:1px solid #e2e4e7\"]],[false,{\".swp-active-block textarea\":false},[\"height:64px\"]],[false,{\".swp-active-block .swp-inner-block-50\":false},[\"width:50%\",\"display:inline-block\",\"padding:0 1px\"]],[false,{\".swp-active-block .head>div\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row no-wrap\",\"flex-flow:row no-wrap\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".swp-active-block .head .swp-block-icon\":false,\".swp-active-block .head .swp-block-title\":false},[\"display:inline-block\"]],[false,{\".swp-active-block p\":false},[\"margin:25px 0 5px 0\"]],[false,{\".swp-active-block .head p\":false},[\"margin:initial\"]],[false,{\".swp-inactive-block\":false},[\"min-height:50px\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".swp-inactive-block code\":false},[\"display:block\",\"width:100%\",\"padding:5px\",\"height:42px\"]],[false,{\".swp-inactive-block .swp-preview\":false},[\"background:#f5f5f5\",\"width:100%\",\"display:block\",\"font-family:\\\"SF Pro Text\\\",\\\"Helvetica\\\",sans-sans-serif\",\"font-size:13px\",\"padding:15px\",\"border-radius:4px\"]],[false,{\".swp-inactive-block .swp-dashicon\":false},[\"margin:0 14px\"]],[false,{\".click-to-tweet-block-wrap textarea[name=\\\"tweetText\\\"]\":false},[\"border-top-right-radius:0px\"]],[false,{\".click-to-tweet-block-wrap .block-characters-remaining\":false},[\"font-size:16px\",\"font-size:13px\",\"font-weight:normal\",\"color:white\",\"padding:5px\",\"padding:5px 15px\",\"border-top-right-radius:4px\",\"border-top-left-radius:4px\",\"background:#30394f\",\"margin:0\",\"float:right\",\"max-width:200px\",\"position:relative\",\"-webkit-transition:all 300ms\",\"-o-transition:all 300ms\",\"transition:all 300ms\"]],[false,{\".click-to-tweet-block-wrap .block-characters-remaining.over-limit\":false},[\"background:#ee464f\",\"color:#fff\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1388,\"final_size\":237,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=2.3.0\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1020,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2261,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"82cd798ece835d3c574519b60ef930fe\",\"parse_time\":0.0071032047271728516,\"shake_time\":0.0002751350402832031,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-unknown-size\":true,\"amp-anim.amp-wp-enforced-sizes\":false,\"amp-img.amp-wp-enforced-sizes\":true},[\"-o-object-fit:contain\",\"object-fit:contain\"]],[false,{\"body amp-audio:not([controls])\":false},[\"display:inline-block\",\"height:auto\"]],[false,{\".amp-wp-default-form-message>p\":false},[\"margin:1em 0\",\"padding:.5em\"]],[false,{\".amp-wp-default-form-message[submit-success]>p.amp-wp-form-redirecting\":false,\".amp-wp-default-form-message[submitting]>p\":false},[\"font-style:italic\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:not(.amp-wp-form-redirecting)\":false},[\"background-color:#90ee90\",\"border:1px solid green\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-error]>p\":false},[\"background-color:#ffb6c1\",\"border:1px solid red\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:empty\":false},[\"display:none\"]],[false,{\"amp-carousel .amp-wp-gallery-caption\":false},[\"background-color:rgba(0,0,0,.5)\",\"bottom:0\",\"color:#fff\",\"left:0\",\"margin-bottom:0\",\"padding:1rem\",\"position:absolute\",\"right:0\",\"text-align:center\"]],[false,{\"amp-carousel .amp-wp-gallery-caption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery[data-amp-carousel=true]\":false,\".wp-block-gallery[data-amp-carousel=true].has-nested-images\":false},[\"display:block\",\"flex-wrap:unset\"]],[false,{\".wp-video\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"height:auto\"]],[false,{\"button[overflow]\":false},[\"bottom:0\"]],[true,{\"amp-anim img\":false,\"amp-anim noscript\":false,\"amp-iframe iframe\":false,\"amp-iframe noscript\":false,\"amp-img img\":true,\"amp-img noscript\":true,\"amp-video noscript\":false,\"amp-video video\":false},[\"image-rendering:inherit\",\"-o-object-fit:inherit\",\"object-fit:inherit\",\"-o-object-position:inherit\",\"object-position:inherit\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":80574,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"wp-block-library-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/css\\/dist\\/block-library\\/style.min.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":1381,\"function\":\"wp_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2246,\"function\":\"wp_common_block_scripts_and_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":20,\"hash\":\"db08bb47cd026dcad266bd62ddc38fd8\",\"parse_time\":1.007054090499878,\"shake_time\":0.0009911060333251953,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\"#start-resizable-editor-section\":false},[\"display:none\"]],[false,{\".wp-block-audio\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-audio figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-audio amp-audio\":false},[\"width:100%\",\"min-width:300px\"]],[false,{\".wp-block-button__link\":false},[\"color:#fff\",\"background-color:#32373c\",\"border-radius:9999px\",\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"font-size:1.125em\",\"padding:calc(.667em + 2px) calc(1.333em + 2px)\",\"text-align:center\",\"text-decoration:none\",\"overflow-wrap:break-word\",\"box-sizing:border-box\"]],[false,{\".wp-block-button__link:active\":false,\".wp-block-button__link:focus\":false,\".wp-block-button__link:hover\":false,\".wp-block-button__link:visited\":false},[\"color:#fff\"]],[false,{\".wp-block-button__link.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-button__link.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width\":false},[\"max-width:none\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"width:calc(100% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100:only-child\":false},[\"margin-right:0\",\"width:100%\"]],[false,\"@supports (column-gap:0.5em){\"],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button.wp-block-button\":false,\".wp-block-buttons>.wp-block-button.wp-block-button\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - .375em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - .25em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - .125em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"width:auto\",\"flex-basis:100%\"]],[false,\"}\"],[false,{\".wp-block-button.is-style-squared\":false,\".wp-block-button__link.wp-block-button.is-style-squared\":false},[\"border-radius:0\"]],[false,{\".wp-block-button.no-border-radius:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button__link.no-border-radius:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[false,{\".is-style-outline>.wp-block-button__link\":false,\".wp-block-button__link.is-style-outline\":false},[\"border:2px solid\",\"padding:.667em 1.333em\"]],[false,{\".is-style-outline>.wp-block-button__link:not(.has-text-color)\":false,\".wp-block-button__link.is-style-outline:not(.has-text-color)\":false},[\"color:currentColor\"]],[false,{\".is-style-outline>.wp-block-button__link:not(.has-background)\":false,\".wp-block-button__link.is-style-outline:not(.has-background)\":false},[\"background-color:transparent\"]],[false,{\".wp-block-buttons\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\",\"column-gap:.5em\"]],[false,{\".wp-block-buttons.is-vertical\":false},[\"flex-direction:column\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-buttons>.wp-block-button\":false},[\"display:inline-block\",\"margin-left:0\",\"margin-right:.5em\",\"margin-bottom:.5em\"]],[false,{\".wp-block-buttons>.wp-block-button:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.is-content-justification-left\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-left.is-vertical\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-center\":false},[\"justify-content:center\"]],[false,{\".wp-block-buttons.is-content-justification-center.is-vertical\":false},[\"align-items:center\"]],[false,{\".wp-block-buttons.is-content-justification-right\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button\":false},[\"margin-left:.5em\",\"margin-right:0\"]],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-buttons.is-content-justification-right.is-vertical\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-space-between\":false},[\"justify-content:space-between\"]],[false,{\".wp-block-buttons.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-buttons.alignleft .wp-block-button\":false},[\"margin-left:0\",\"margin-right:.5em\"]],[false,{\".wp-block-buttons.alignleft .wp-block-button:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.alignright .wp-block-button\":false},[\"margin-right:0\",\"margin-left:.5em\"]],[false,{\".wp-block-buttons.alignright .wp-block-button:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-button.aligncenter\":false,\".wp-block-calendar\":false},[\"text-align:center\"]],[false,{\".wp-block-calendar tbody td\":false,\".wp-block-calendar th\":false},[\"padding:.25em\",\"border:1px solid #ddd\"]],[false,{\".wp-block-calendar tfoot td\":false},[\"border:none\"]],[false,{\".wp-block-calendar table\":false},[\"width:100%\",\"border-collapse:collapse\"]],[false,{\".wp-block-calendar table th\":false},[\"font-weight:400\",\"background:#ddd\"]],[false,{\".wp-block-calendar a\":false},[\"text-decoration:underline\"]],[false,{\".wp-block-calendar table caption\":false,\".wp-block-calendar table tbody\":false},[\"color:#40464d\"]],[false,{\".wp-block-categories.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-categories.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-code code\":false},[\"display:block\",\"white-space:pre-wrap\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-columns\":false},[\"display:flex\",\"margin-bottom:1.75em\",\"box-sizing:border-box\",\"flex-wrap:wrap\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns\":false},[\"flex-wrap:nowrap\"]],[false,\"}\"],[false,{\".wp-block-columns.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-columns.are-vertically-aligned-top\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-columns.are-vertically-aligned-center\":false},[\"align-items:center\"]],[false,{\".wp-block-columns.are-vertically-aligned-bottom\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-column\":false},[\"flex-grow:1\",\"min-width:0\",\"word-break:break-word\",\"overflow-wrap:break-word\"]],[false,\"@media (max-width:599px){\"],[false,{\".wp-block-column:not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:100%\"]],[false,\"}\"],[false,\"@media (min-width:600px) and (max-width:781px){\"],[false,{\".wp-block-column:not(:only-child)\":false},[\"flex-grow:0\"]],[false,{\".wp-block-column:not(:only-child):not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:calc(50% - 1em)\"]],[false,{\".wp-block-column:nth-child(2n)\":false},[\"margin-left:2em\"]],[false,\"}\"],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[false,{\".wp-block-column:not(:first-child)\":false},[\"margin-left:2em\"]],[false,\"}\"],[false,{\".wp-block-column.is-vertically-aligned-top\":false},[\"align-self:flex-start\"]],[false,{\".wp-block-column.is-vertically-aligned-center\":false},[\"align-self:center\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false},[\"align-self:flex-end\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false,\".wp-block-column.is-vertically-aligned-center\":false,\".wp-block-column.is-vertically-aligned-top\":false},[\"width:100%\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"position:relative\",\"background-size:cover\",\"background-position:50%\",\"min-height:430px\",\"width:100%\",\"display:flex\",\"justify-content:center\",\"align-items:center\",\"padding:1em\",\"box-sizing:border-box\"]],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:fixed\"]],[false,\"@supports (-webkit-overflow-scrolling:touch){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,{\".wp-block-cover-image.is-repeated\":false,\".wp-block-cover.is-repeated\":false},[\"background-repeat:repeat\",\"background-size:auto\"]],[false,{\".wp-block-cover-image.has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover.has-background-dim:not([class*=-background-color])\":false},[\"background-color:#000\"]],[false,{\".wp-block-cover-image.has-background-dim:before\":false,\".wp-block-cover.has-background-dim:before\":false},[\"content:\\\"\\\"\",\"background-color:inherit\"]],[false,{\".wp-block-cover-image.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover-image .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover .wp-block-cover__gradient-background\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"bottom:0\",\"right:0\",\"z-index:1\",\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false},[\"opacity:1\"]],[false,{\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-cover-image:after\":false,\".wp-block-cover:after\":false},[\"display:block\",\"content:\\\"\\\"\",\"font-size:0\",\"min-height:inherit\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-cover-image:after\":false,\".wp-block-cover:after\":false},[\"content:none\"]],[false,\"}\"],[false,{\".wp-block-cover-image.aligncenter\":false,\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.aligncenter\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"display:flex\"]],[false,{\".wp-block-cover-image .wp-block-cover__inner-container\":false,\".wp-block-cover .wp-block-cover__inner-container\":false},[\"width:100%\",\"z-index:1\",\"color:#fff\"]],[false,{\".wp-block-cover-image h1:not(.has-text-color)\":false,\".wp-block-cover-image h2:not(.has-text-color)\":false,\".wp-block-cover-image h3:not(.has-text-color)\":false,\".wp-block-cover-image h4:not(.has-text-color)\":false,\".wp-block-cover-image h5:not(.has-text-color)\":false,\".wp-block-cover-image h6:not(.has-text-color)\":false,\".wp-block-cover-image p:not(.has-text-color)\":false,\".wp-block-cover h1:not(.has-text-color)\":false,\".wp-block-cover h2:not(.has-text-color)\":false,\".wp-block-cover h3:not(.has-text-color)\":false,\".wp-block-cover h4:not(.has-text-color)\":false,\".wp-block-cover h5:not(.has-text-color)\":false,\".wp-block-cover h6:not(.has-text-color)\":false,\".wp-block-cover p:not(.has-text-color)\":false},[\"color:inherit\"]],[false,{\".wp-block-cover-image.is-position-top-left\":false,\".wp-block-cover.is-position-top-left\":false},[\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-top-center\":false,\".wp-block-cover.is-position-top-center\":false},[\"align-items:flex-start\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-top-right\":false,\".wp-block-cover.is-position-top-right\":false},[\"align-items:flex-start\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-center-left\":false,\".wp-block-cover.is-position-center-left\":false},[\"align-items:center\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-center-center\":false,\".wp-block-cover.is-position-center-center\":false},[\"align-items:center\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-center-right\":false,\".wp-block-cover.is-position-center-right\":false},[\"align-items:center\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-bottom-left\":false,\".wp-block-cover.is-position-bottom-left\":false},[\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-bottom-center\":false,\".wp-block-cover.is-position-bottom-center\":false},[\"align-items:flex-end\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-bottom-right\":false,\".wp-block-cover.is-position-bottom-right\":false},[\"align-items:flex-end\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false},[\"margin:0\",\"width:auto\"]],[false,{\".wp-block-cover-image amp-img.wp-block-cover__image-background\":false,\".wp-block-cover-image amp-anim.wp-block-cover__image-background\":false,\".wp-block-cover-image amp-video.wp-block-cover__video-background\":false,\".wp-block-cover-image amp-youtube.wp-block-cover__video-background\":false,\".wp-block-cover amp-img.wp-block-cover__image-background\":false,\".wp-block-cover amp-anim.wp-block-cover__image-background\":false,\".wp-block-cover amp-video.wp-block-cover__video-background\":false,\".wp-block-cover amp-youtube.wp-block-cover__video-background\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"margin:0\",\"padding:0\",\"width:100%\",\"height:100%\",\"max-width:none\",\"max-height:none\",\"-o-object-fit:cover\",\"object-fit:cover\",\"outline:none\",\"border:none\",\"box-shadow:none\"]],[false,{\".wp-block-cover__image-background\":false,\".wp-block-cover__video-background\":false},[\"z-index:0\"]],[false,{\".wp-block-cover-image-text\":false,\".wp-block-cover-image-text a\":false,\".wp-block-cover-image-text a:active\":false,\".wp-block-cover-image-text a:focus\":false,\".wp-block-cover-image-text a:hover\":false,\".wp-block-cover-text\":false,\".wp-block-cover-text a\":false,\".wp-block-cover-text a:active\":false,\".wp-block-cover-text a:focus\":false,\".wp-block-cover-text a:hover\":false,\"section.wp-block-cover-image h2\":false,\"section.wp-block-cover-image h2 a\":false,\"section.wp-block-cover-image h2 a:active\":false,\"section.wp-block-cover-image h2 a:focus\":false,\"section.wp-block-cover-image h2 a:hover\":false},[\"color:#fff\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-left-content\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-right-content\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-left-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-left-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-left-content>h2\":false},[\"margin-left:0\",\"text-align:left\"]],[false,{\".wp-block-cover-image.has-right-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-right-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-right-content>h2\":false},[\"margin-right:0\",\"text-align:right\"]],[false,{\".wp-block-cover-image .wp-block-cover-image-text\":false,\".wp-block-cover .wp-block-cover-text\":false,\"section.wp-block-cover-image>h2\":false},[\"font-size:2em\",\"line-height:1.25\",\"z-index:1\",\"margin-bottom:0\",\"max-width:840px\",\"padding:.44em\",\"text-align:center\"]],[false,{\".wp-block-embed.alignleft\":false,\".wp-block-embed.alignright\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"]\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"]\":false},[\"max-width:360px\",\"width:100%\"]],[false,{\".wp-block-embed.alignleft .wp-block-embed__wrapper\":false,\".wp-block-embed.alignright .wp-block-embed__wrapper\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false},[\"min-width:280px\"]],[false,{\".wp-block-cover .wp-block-embed\":false},[\"min-width:320px\",\"min-height:240px\"]],[false,{\".wp-block-embed\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-embed figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-embed amp-iframe\":false},[\"max-width:100%\"]],[false,{\".wp-block-embed__wrapper\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio amp-iframe\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"height:100%\",\"width:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:42.85%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:56.25%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before\":false},[\"padding-top:75%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before\":false},[\"padding-top:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before\":false},[\"padding-top:177.77%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before\":false},[\"padding-top:200%\"]],[false,{\".wp-block-file\":false},[\"margin-bottom:1.5em\"]],[false,{\".wp-block-file.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-file.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-file .wp-block-file__embed\":false},[\"margin-bottom:1em\"]],[false,{\".wp-block-file .wp-block-file__button\":false},[\"background:#32373c\",\"border-radius:2em\",\"color:#fff\",\"font-size:.8em\",\"padding:.5em 1em\"]],[false,{\".wp-block-file a.wp-block-file__button\":false},[\"text-decoration:none\"]],[false,{\".wp-block-file a.wp-block-file__button:active\":false,\".wp-block-file a.wp-block-file__button:focus\":false,\".wp-block-file a.wp-block-file__button:hover\":false,\".wp-block-file a.wp-block-file__button:visited\":false},[\"box-shadow:none\",\"color:#fff\",\"opacity:.85\",\"text-decoration:none\"]],[false,{\".wp-block-file *+.wp-block-file__button\":false},[\"margin-left:.75em\"]],[false,{\".blocks-gallery-grid\":false,\".wp-block-gallery\":false},[\"display:flex\",\"flex-wrap:wrap\",\"list-style-type:none\",\"padding:0\",\"margin:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image\":false,\".blocks-gallery-grid .blocks-gallery-item\":false,\".wp-block-gallery .blocks-gallery-image\":false,\".wp-block-gallery .blocks-gallery-item\":false},[\"margin:0 1em 1em 0\",\"display:flex\",\"flex-grow:1\",\"flex-direction:column\",\"justify-content:center\",\"position:relative\",\"align-self:flex-start\",\"width:calc(50% - 1em)\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery .blocks-gallery-item:nth-of-type(2n)\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image figure\":false,\".blocks-gallery-grid .blocks-gallery-item figure\":false,\".wp-block-gallery .blocks-gallery-image figure\":false,\".wp-block-gallery .blocks-gallery-item figure\":false},[\"margin:0\",\"height:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid .blocks-gallery-image figure\":false,\".blocks-gallery-grid .blocks-gallery-item figure\":false,\".wp-block-gallery .blocks-gallery-image figure\":false,\".wp-block-gallery .blocks-gallery-item figure\":false},[\"display:flex\",\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item amp-anim\":false,\".wp-block-gallery .blocks-gallery-image amp-img\":false,\".wp-block-gallery .blocks-gallery-image amp-anim\":false,\".wp-block-gallery .blocks-gallery-item amp-img\":false,\".wp-block-gallery .blocks-gallery-item amp-anim\":false},[\"display:block\",\"max-width:100%\",\"height:auto\",\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item amp-anim\":false,\".wp-block-gallery .blocks-gallery-image amp-img\":false,\".wp-block-gallery .blocks-gallery-image amp-anim\":false,\".wp-block-gallery .blocks-gallery-item amp-img\":false,\".wp-block-gallery .blocks-gallery-item amp-anim\":false},[\"width:auto\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image figcaption\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption\":false,\".wp-block-gallery .blocks-gallery-image figcaption\":false,\".wp-block-gallery .blocks-gallery-item figcaption\":false},[\"position:absolute\",\"bottom:0\",\"width:100%\",\"max-height:100%\",\"overflow:auto\",\"padding:3em .77em .7em\",\"color:#fff\",\"text-align:center\",\"font-size:.8em\",\"background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent)\",\"box-sizing:border-box\",\"margin:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image figcaption amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image figcaption amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption amp-anim\":false,\".wp-block-gallery .blocks-gallery-image figcaption amp-img\":false,\".wp-block-gallery .blocks-gallery-image figcaption amp-anim\":false,\".wp-block-gallery .blocks-gallery-item figcaption amp-img\":false,\".wp-block-gallery .blocks-gallery-item figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".blocks-gallery-grid figcaption\":false,\".wp-block-gallery figcaption\":false},[\"flex-grow:1\"]],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item\":false},[\"align-self:inherit\"]],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-anim\":false},[\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-anim\":false},[\"height:100%\",\"flex:1\",\"-o-object-fit:cover\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".blocks-gallery-grid.columns-1 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-1 .blocks-gallery-item\":false,\".wp-block-gallery.columns-1 .blocks-gallery-image\":false,\".wp-block-gallery.columns-1 .blocks-gallery-item\":false},[\"width:100%\",\"margin-right:0\"]],[false,\"@media (min-width:600px){\"],[false,{\".blocks-gallery-grid.columns-3 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-item\":false,\".wp-block-gallery.columns-3 .blocks-gallery-image\":false,\".wp-block-gallery.columns-3 .blocks-gallery-item\":false},[\"width:calc(33.33333% - .66667em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-4 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-item\":false,\".wp-block-gallery.columns-4 .blocks-gallery-image\":false,\".wp-block-gallery.columns-4 .blocks-gallery-item\":false},[\"width:calc(25% - .75em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-5 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-item\":false,\".wp-block-gallery.columns-5 .blocks-gallery-image\":false,\".wp-block-gallery.columns-5 .blocks-gallery-item\":false},[\"width:calc(20% - .8em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-6 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-item\":false,\".wp-block-gallery.columns-6 .blocks-gallery-image\":false,\".wp-block-gallery.columns-6 .blocks-gallery-item\":false},[\"width:calc(16.66667% - .83333em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-7 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-item\":false,\".wp-block-gallery.columns-7 .blocks-gallery-image\":false,\".wp-block-gallery.columns-7 .blocks-gallery-item\":false},[\"width:calc(14.28571% - .85714em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-8 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-item\":false,\".wp-block-gallery.columns-8 .blocks-gallery-image\":false,\".wp-block-gallery.columns-8 .blocks-gallery-item\":false},[\"width:calc(12.5% - .875em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n)\":false,\".wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image:last-child\":false,\".blocks-gallery-grid .blocks-gallery-item:last-child\":false,\".wp-block-gallery .blocks-gallery-image:last-child\":false,\".wp-block-gallery .blocks-gallery-item:last-child\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid.alignleft\":false,\".blocks-gallery-grid.alignright\":false,\".wp-block-gallery.alignleft\":false,\".wp-block-gallery.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".blocks-gallery-grid.aligncenter .blocks-gallery-item figure\":false,\".wp-block-gallery.aligncenter .blocks-gallery-item figure\":false},[\"justify-content:center\"]],[false,{\".wp-block-group\":false},[\"box-sizing:border-box\"]],[false,{\"h1.has-background\":false,\"h2.has-background\":false,\"h3.has-background\":false,\"h4.has-background\":false,\"h5.has-background\":false,\"h6.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-image\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-image amp-img\":false,\".wp-block-image amp-anim\":false},[\"max-width:100%\"]],[false,{\".wp-block-image:not(.is-style-rounded) amp-img\":false,\".wp-block-image:not(.is-style-rounded) amp-anim\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-image.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-image.alignfull amp-img\":false,\".wp-block-image.alignfull amp-anim\":false,\".wp-block-image.alignwide amp-img\":false,\".wp-block-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\".wp-block-image .aligncenter\":false,\".wp-block-image .alignleft\":false,\".wp-block-image .alignright\":false},[\"display:table\"]],[false,{\".wp-block-image .aligncenter>figcaption\":false,\".wp-block-image .alignleft>figcaption\":false,\".wp-block-image .alignright>figcaption\":false},[\"display:table-caption\",\"caption-side:bottom\"]],[false,{\".wp-block-image .alignleft\":false},[\"float:left\",\"margin:.5em 1em .5em 0\"]],[false,{\".wp-block-image .alignright\":false},[\"float:right\",\"margin:.5em 0 .5em 1em\"]],[false,{\".wp-block-image .aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-block-image figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false,\".wp-block-image.is-style-rounded amp-img\":false,\".wp-block-image.is-style-rounded amp-anim\":false},[\"border-radius:9999px\"]],[false,\"@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){\"],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"-webkit-mask-image:url(\\\"data:image\\/svg+xml;utf8,<\\/svg>\\\")\",\"mask-image:url(\\\"data:image\\/svg+xml;utf8,<\\/svg>\\\")\",\"mask-mode:alpha\",\"-webkit-mask-repeat:no-repeat\",\"mask-repeat:no-repeat\",\"-webkit-mask-size:contain\",\"mask-size:contain\",\"-webkit-mask-position:center\",\"mask-position:center\",\"border-radius:0\"]],[false,\"}\"],[false,{\".wp-block-image figure\":false},[\"margin:0\"]],[false,{\"ol.wp-block-latest-comments\":false},[\"margin-left:0\"]],[false,{\".wp-block-latest-comments .wp-block-latest-comments\":false},[\"padding-left:0\"]],[false,{\".wp-block-latest-comments__comment\":false},[\"line-height:1.1\",\"list-style:none\",\"margin-bottom:1em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment\":false},[\"min-height:2.25em\",\"list-style:none\"]],[false,{\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt\":false,\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta\":false},[\"margin-left:3.25em\"]],[false,{\".has-dates .wp-block-latest-comments__comment\":false,\".has-excerpts .wp-block-latest-comments__comment\":false},[\"line-height:1.5\"]],[false,{\".wp-block-latest-comments__comment-excerpt p\":false},[\"font-size:.875em\",\"line-height:1.8\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-latest-comments__comment-date\":false},[\"display:block\",\"font-size:.75em\"]],[false,{\".wp-block-latest-comments .avatar\":false,\".wp-block-latest-comments__comment-avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-latest-posts.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-latest-posts.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list\":false},[\"list-style:none\",\"padding-left:0\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list li\":false},[\"clear:both\"]],[false,{\".wp-block-latest-posts.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\"]],[false,{\".wp-block-latest-posts.is-grid li\":false},[\"margin:0 1.25em 1.25em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-latest-posts.columns-2 li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-latest-posts.columns-2 li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-3 li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-latest-posts.columns-3 li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-4 li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-latest-posts.columns-4 li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-latest-posts.columns-5 li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-6 li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-latest-posts.columns-6 li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".wp-block-latest-posts__post-author\":false,\".wp-block-latest-posts__post-date\":false},[\"display:block\",\"color:#555\",\"font-size:.8125em\"]],[false,{\".wp-block-latest-posts__post-excerpt\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-latest-posts__featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-latest-posts__featured-image amp-img\":false,\".wp-block-latest-posts__featured-image amp-anim\":false},[\"height:auto\",\"width:auto\",\"max-width:100%\"]],[false,{\".wp-block-latest-posts__featured-image.alignleft\":false},[\"margin-right:1em\"]],[false,{\".wp-block-latest-posts__featured-image.alignright\":false},[\"margin-left:1em\"]],[false,{\".wp-block-latest-posts__featured-image.aligncenter\":false},[\"margin-bottom:1em\",\"text-align:center\"]],[false,{\".block-editor-image-alignment-control__row .components-base-control__field\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\"]],[false,{\".block-editor-image-alignment-control__row .components-base-control__field .components-base-control__label\":false},[\"margin-bottom:0\"]],[false,{\"ol.has-background\":false,\"ul.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-media-text\":false},[\"direction:ltr\",\"display:grid\",\"grid-template-columns:50% 1fr\",\"grid-template-rows:auto\"]],[false,{\".wp-block-media-text.has-media-on-the-right\":false},[\"grid-template-columns:1fr 50%\"]],[false,{\".wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media\":false},[\"align-self:start\"]],[false,{\".wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media\":false,\".wp-block-media-text .wp-block-media-text__content\":false,\".wp-block-media-text .wp-block-media-text__media\":false},[\"align-self:center\"]],[false,{\".wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media\":false},[\"align-self:end\"]],[false,{\".wp-block-media-text .wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\",\"margin:0\"]],[false,{\".wp-block-media-text .wp-block-media-text__content\":false},[\"direction:ltr\",\"grid-column:2\",\"grid-row:1\",\"padding:0 8%\",\"word-break:break-word\"]],[false,{\".wp-block-media-text.has-media-on-the-right .wp-block-media-text__media\":false},[\"grid-column:2\",\"grid-row:1\"]],[false,{\".wp-block-media-text.has-media-on-the-right .wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"max-width:unset\",\"width:100%\",\"vertical-align:middle\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media\":false},[\"height:100%\",\"min-height:250px\",\"background-size:cover\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill .wp-block-media-text__media amp-anim\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-media-text.is-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"grid-template-columns:100%\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:2\"]],[false,\"}\"],[false,{\".wp-block-navigation\":false},[\"position:relative\"]],[false,{\".wp-block-navigation ul\":false,\".wp-block-navigation ul li\":false},[\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-navigation-link\":false,\".wp-block-navigation .wp-block-pages-list__item\":false},[\"display:flex\",\"align-items:center\",\"position:relative\"]],[false,{\".wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__container:empty\":false,\".wp-block-navigation .wp-block-pages-list__item .wp-block-navigation-link__container:empty\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__content\":false,\".wp-block-navigation .wp-block-pages-list__item__link\":false},[\"color:inherit\",\"display:block\"]],[false,{\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__container\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content:focus\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link:focus\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content:focus\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link:focus\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .wp-block-page-list__submenu-icon\":false},[\"height:inherit\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .wp-block-page-list__submenu-icon svg\":false},[\"stroke:currentColor\"]],[false,{\".wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__content.wp-block-navigation-link__content.wp-block-navigation-link__content\":false,\".wp-block-navigation .wp-block-pages-list__item .wp-block-pages-list__item__link\":false},[\"padding:0\"]],[false,{\".wp-block-navigation .has-child>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child>.wp-block-pages-list__item__link\":false},[\"margin-right:.5em\"]],[false,{\".wp-block-navigation .has-child .submenu-container\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container\":false},[\"background-color:inherit\",\"color:inherit\",\"position:absolute\",\"z-index:2\",\"flex-direction:column\",\"align-items:normal\",\"min-width:200px\",\"display:none\",\"opacity:0\",\"transition:opacity .1s linear\",\"visibility:hidden\"]],[false,{\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-pages-list__item__link\":false},[\"flex-grow:1\"]],[false,{\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-page-list__submenu-icon\":false},[\"padding-right:.5em\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation .has-child .submenu-container .submenu-container:before\":false,\".wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container:before\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container:before\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"right:100%\",\"height:100%\",\"display:block\",\"width:.5em\",\"background:transparent\"]],[false,{\".wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .has-child .submenu-container .wp-block-page-list__submenu-icon svg\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-page-list__submenu-icon svg\":false},[\"transform:rotate(-90deg)\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child:hover>.wp-block-navigation-link__container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:focus-within>.wp-block-navigation-link__container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:hover\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation .has-child:hover>.submenu-container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:focus-within\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation .has-child:focus-within>.submenu-container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container\":false},[\"left:auto\",\"right:0\"]],[false,{\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:auto\",\"right:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation .wp-block-navigation__container>.wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list>.wp-block-pages-list__item\":false},[\"margin:0 2em 0 0\"]],[false,{\".wp-block-navigation.wp-block-navigation .wp-block-navigation__container>.wp-block-navigation-link:last-child\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list:last-child\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list>.wp-block-pages-list__item:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .wp-block-navigation__container>.wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list>.wp-block-pages-list__item\":false},[\"margin:0 .5em 0 0\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .wp-block-navigation__container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list .wp-block-pages-list__item__link\":false},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container\":false},[\"left:-1em\",\"top:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-pages-list__item\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-pages-list__item\":false},[\"margin:0\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-pages-list__item__link\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-pages-list__item__link\":false},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:-1px\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:100%\",\"top:-1px\"]],[false,\"}\"],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container\":false},[\"left:0\",\"top:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:0\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:100%\",\"top:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .submenu-container\":false,\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-navigation-link__container\":false},[\"background-color:#fff\",\"color:#000\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation__container\":false},[\"align-items:center\",\"list-style:none\",\"margin:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation__container .is-responsive\":false},[\"display:none\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__container\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".is-vertical .wp-block-navigation__container\":false},[\"display:block\",\"flex-direction:column\",\"align-items:flex-start\"]],[false,\"}\"],[false,{\".items-justified-center .wp-block-navigation__container\":false},[\"justify-content:center\"]],[false,{\".items-justified-right .wp-block-navigation__container\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between .wp-block-navigation__container\":false},[\"justify-content:space-between\"]],[false,{\".is-vertical.items-justified-center>ul\":false},[\"align-items:center\"]],[false,{\".is-vertical.items-justified-right>ul\":false},[\"align-items:flex-end\"]],[false,{\".is-vertical.items-justified-right>ul .wp-block-navigation-link\":false,\".is-vertical.items-justified-right>ul .wp-block-pages-list__item\":false},[\"margin-right:0\",\"justify-content:flex-end\"]],[false,{\".wp-block-navigation__responsive-container\":false},[\"display:none\",\"position:fixed\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"z-index:1\",\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"display:flex\",\"flex-direction:column\",\"overflow:auto\",\"z-index:100000\",\"padding:24px\",\"background-color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container\":false},[\"display:flex\",\"flex-direction:column\",\"margin-left:auto\",\"margin-right:auto\",\"align-items:flex-start\",\"line-height:48px\",\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container .wp-block-page-list\":false},[\"flex-direction:column\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link .wp-block-navigation-link__container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item .submenu-container:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open)\":false},[\"display:flex\",\"flex-direction:row\",\"position:relative\",\"background-color:inherit\"]],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__responsive-container-close\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .submenu-container.submenu-container.submenu-container.submenu-container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link__container.wp-block-navigation-link__container.wp-block-navigation-link__container.wp-block-navigation-link__container\":false},[\"left:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:#fff\",\"color:#000\"]],[false,{\".wp-block-navigation__responsive-container-close\":false,\".wp-block-navigation__responsive-container-open\":false},[\"vertical-align:middle\",\"cursor:pointer\",\"color:currentColor\",\"background:transparent\",\"border:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container-close svg\":false,\".wp-block-navigation__responsive-container-open svg\":false},[\"fill:currentColor\",\"pointer-events:none\",\"display:block\",\"width:24px\",\"height:24px\"]],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:flex\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:none\"]],[false,\"}\"],[false,{\".items-justified-left .wp-block-navigation__responsive-container-open\":false},[\"margin-left:0\",\"margin-right:auto\"]],[false,{\".items-justified-center .wp-block-navigation__responsive-container-open\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".items-justified-right .wp-block-navigation__responsive-container-open\":false},[\"margin-left:auto\",\"margin-right:0\"]],[false,{\".wp-block-navigation__responsive-container-close\":false},[\"position:absolute\",\"top:24px\",\"right:24px\",\"z-index:2\"]],[false,{\".wp-block-navigation__responsive-close\":false},[\"width:100%\"]],[false,{\".is-menu-open .wp-block-navigation__responsive-close\":false,\".is-menu-open .wp-block-navigation__responsive-container-content\":false,\".is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"width:100%\",\"height:100%\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list__submenu-icon\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .has-child .submenu-container\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .has-child .wp-block-navigation-link__container\":false},[\"position:relative\",\"opacity:1\",\"visibility:visible\",\"padding:0 0 0 32px\",\"border:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item\":false},[\"flex-direction:column\",\"align-items:flex-start\"]],[false,{\"html.has-modal-open\":false},[\"overflow:hidden\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__label\":false},[\"word-break:normal\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-navigation .wp-block-home-link__content\":false},[\"color:inherit\",\"display:block\",\"padding:.5em 1em\"]],[false,{\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content:focus\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content:focus\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-home-link__container\":false},[\"background-color:#fff\",\"color:#000\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-home-link__container .wp-block-home-link__container\":false},[\"top:-1px\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false},[\"display:flex\",\"flex-wrap:wrap\",\"background-color:inherit\"]],[false,{\".wp-block-navigation .wp-block-pages-list__item\":false},[\"background-color:inherit\"]],[false,{\".wp-block-navigation .wp-block-page-list__submenu-icon\":false},[\"display:none\"]],[false,{\".is-open .wp-block-navigation__container .wp-block-page-list\":false,\".is-vertical .wp-block-navigation__container .wp-block-page-list\":false,\".wp-block-navigation .show-submenu-icons .wp-block-page-list__submenu-icon\":false},[\"display:block\"]],[false,\"@media (min-width:480px){\"],[false,{\".is-open .wp-block-navigation__container .wp-block-page-list\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".items-justified-space-between .wp-block-page-list\":false},[\"display:contents\"]],[false,{\".is-small-text\":false},[\"font-size:.875em\"]],[false,{\".is-regular-text\":false},[\"font-size:1em\"]],[false,{\".is-large-text\":false},[\"font-size:2.25em\"]],[false,{\".is-larger-text\":false},[\"font-size:3em\"]],[false,{\".has-drop-cap:not(:focus):first-letter\":false},[\"float:left\",\"font-size:8.4em\",\"line-height:.68\",\"font-weight:100\",\"margin:.05em .1em 0 0\",\"text-transform:uppercase\",\"font-style:normal\"]],[false,{\"p.has-drop-cap.has-background\":false},[\"overflow:hidden\"]],[false,{\"p.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\"p.has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-post-author\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-author__byline\":false},[\"width:100%\",\"margin-top:0\",\"margin-bottom:0\",\"font-size:.5em\"]],[false,{\".wp-block-post-author__avatar\":false},[\"margin-right:1em\"]],[false,{\".wp-block-post-author__bio\":false},[\"margin-bottom:.7em\",\"font-size:.7em\"]],[false,{\".wp-block-post-author__content\":false},[\"flex-grow:1\",\"flex-basis:0\"]],[false,{\".wp-block-post-author__name\":false},[\"font-weight:700\",\"margin:0\"]],[false,{\".wp-block-post-comments .commentlist\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .commentlist .comment\":false},[\"min-height:2.25em\",\"padding-left:3.25em\"]],[false,{\".wp-block-post-comments .commentlist .comment p\":false},[\"font-size:.875em\",\"line-height:1.8\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-post-comments .commentlist .children\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .comment-author\":false},[\"line-height:1.5\",\"margin-left:-3.25em\"]],[false,{\".wp-block-post-comments .comment-author .avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-post-comments .comment-author cite\":false},[\"font-style:normal\"]],[false,{\".wp-block-post-comments .comment-meta\":false},[\"line-height:1.5\",\"margin-left:-3.25em\"]],[false,{\".wp-block-post-comments .comment-body .commentmetadata\":false},[\"font-size:.75em\"]],[false,{\".wp-block-post-comments .comment-form-author label\":false,\".wp-block-post-comments .comment-form-comment label\":false,\".wp-block-post-comments .comment-form-email label\":false,\".wp-block-post-comments .comment-form-url label\":false},[\"display:block\"]],[false,{\".wp-block-post-comments .comment-form-comment textarea\":false},[\"box-sizing:border-box\",\"width:100%\"]],[false,{\".wp-block-post-comments .reply\":false},[\"font-size:.75em\",\"margin-bottom:1.4em\"]],[false,{\".wp-block-post-comments input\":false,\".wp-block-post-comments textarea\":false},[\"border:1px solid #949494\"]],[false,{\".wp-block-post-comments-form input[type=submit]\":false},[\"border:none\",\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"text-align:center\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-post-excerpt__more-link\":false,\".wp-block-post-title a\":false},[\"display:inline-block\"]],[false,{\".wp-block-preformatted\":false},[\"white-space:pre-wrap\"]],[false,{\".wp-block-preformatted.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-pullquote\":false},[\"margin:0 0 1em\",\"padding:3em 0\",\"text-align:center\"]],[false,{\".wp-block-pullquote.alignleft\":false,\".wp-block-pullquote.alignright\":false},[\"max-width:420px\"]],[false,{\".wp-block-pullquote.alignleft p\":false,\".wp-block-pullquote.alignright p\":false},[\"font-size:1.25em\"]],[false,{\".wp-block-pullquote p\":false},[\"font-size:1.75em\",\"line-height:1.6\"]],[false,{\".wp-block-pullquote cite\":false,\".wp-block-pullquote footer\":false},[\"position:relative\"]],[false,{\".wp-block-pullquote .has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote:not(.is-style-solid-color)\":false},[\"background:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color\":false},[\"border:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote\":false},[\"margin-left:auto\",\"margin-right:auto\",\"text-align:left\",\"max-width:60%\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote p\":false},[\"margin-top:0\",\"margin-bottom:0\",\"font-size:2em\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote cite\":false},[\"text-transform:none\",\"font-style:normal\"]],[false,{\".wp-block-pullquote cite\":false},[\"color:inherit\"]],[false,{\".wp-block-post-template\":false,\".wp-block-query-loop\":false},[\"max-width:100%\",\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-post-template li\":false,\".wp-block-query-loop li\":false},[\"clear:both\"]],[false,{\".wp-block-post-template.is-flex-container\":false,\".wp-block-query-loop.is-flex-container\":false},[\"flex-direction:row\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-template.is-flex-container li\":false,\".wp-block-query-loop.is-flex-container li\":false},[\"margin:0 0 1.25em\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-post-template.is-flex-container li\":false,\".wp-block-query-loop.is-flex-container li\":false},[\"margin-right:1.25em\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li:nth-child(2n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li:nth-child(3n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li:nth-child(4n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li:nth-child(5n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li:nth-child(6n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".wp-block-query-pagination\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\"]],[false,{\".wp-block-query-pagination>.wp-block-query-pagination-next\":false,\".wp-block-query-pagination>.wp-block-query-pagination-numbers\":false,\".wp-block-query-pagination>.wp-block-query-pagination-previous\":false},[\"display:inline-block\",\"margin-right:.5em\",\"margin-bottom:.5em\"]],[false,{\".wp-block-query-pagination>.wp-block-query-pagination-next:last-child\":false,\".wp-block-query-pagination>.wp-block-query-pagination-numbers:last-child\":false,\".wp-block-query-pagination>.wp-block-query-pagination-previous:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-quote.is-large\":false,\".wp-block-quote.is-style-large\":false},[\"margin-bottom:1em\",\"padding:0 1em\"]],[false,{\".wp-block-quote.is-large p\":false,\".wp-block-quote.is-style-large p\":false},[\"font-size:1.5em\",\"font-style:italic\",\"line-height:1.6\"]],[false,{\".wp-block-quote.is-large cite\":false,\".wp-block-quote.is-large footer\":false,\".wp-block-quote.is-style-large cite\":false,\".wp-block-quote.is-style-large footer\":false},[\"font-size:1.125em\",\"text-align:right\"]],[false,{\".wp-block-rss.wp-block-rss\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-rss.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-rss.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-rss.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\",\"list-style:none\"]],[false,{\".wp-block-rss.is-grid li\":false},[\"margin:0 1em 1em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-rss.columns-2 li\":false},[\"width:calc(50% - 1em)\"]],[false,{\".wp-block-rss.columns-3 li\":false},[\"width:calc(33.33333% - 1em)\"]],[false,{\".wp-block-rss.columns-4 li\":false},[\"width:calc(25% - 1em)\"]],[false,{\".wp-block-rss.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-rss.columns-6 li\":false},[\"width:calc(16.66667% - 1em)\"]],[false,\"}\"],[false,{\".wp-block-rss__item-author\":false,\".wp-block-rss__item-publish-date\":false},[\"display:block\",\"color:#555\",\"font-size:.8125em\"]],[false,{\".wp-block-search .wp-block-search__button\":false},[\"background:#f7f7f7\",\"border:1px solid #ccc\",\"padding:.375em .625em\",\"color:#32373c\",\"margin-left:.625em\",\"word-break:normal\"]],[false,{\".wp-block-search .wp-block-search__button.has-icon\":false},[\"line-height:0\"]],[false,{\".wp-block-search .wp-block-search__button svg\":false},[\"min-width:1.5em\",\"min-height:1.5em\"]],[false,{\".wp-block-search .wp-block-search__inside-wrapper\":false},[\"display:flex\",\"flex:auto\",\"flex-wrap:nowrap\",\"max-width:100%\"]],[false,{\".wp-block-search .wp-block-search__label\":false},[\"width:100%\"]],[false,{\".wp-block-search .wp-block-search__input\":false},[\"flex-grow:1\",\"min-width:3em\",\"border:1px solid #949494\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__button\":false},[\"margin-left:0\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper\":false},[\"padding:4px\",\"border:1px solid #949494\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input\":false},[\"border-radius:0\",\"border:none\",\"padding:0 0 0 .25em\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus\":false},[\"outline:none\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button\":false},[\"padding:.125em .5em\"]],[false,{\".wp-block-search.aligncenter .wp-block-search__inside-wrapper\":false},[\"margin:auto\"]],[false,{\".wp-block-separator\":false},[\"border-top:1px solid\",\"border-bottom:1px solid\"]],[false,{\".wp-block-separator.is-style-wide\":false},[\"border-bottom-width:1px\"]],[false,{\".wp-block-separator.is-style-dots\":false},[\"border:none\",\"text-align:center\",\"width:none\",\"line-height:1\",\"height:auto\"]],[false,{\".wp-block-separator.is-style-dots:not(#_#_#_#_#_#_#_)\":false},[\"background:none\"]],[false,{\".wp-block-separator.is-style-dots:before\":false},[\"content:\\\"\\u00b7\\u00b7\\u00b7\\\"\",\"color:currentColor\",\"font-size:1.5em\",\"letter-spacing:2em\",\"padding-left:2em\",\"font-family:serif\"]],[false,{\".wp-block-site-logo\":false},[\"line-height:0\"]],[false,{\".wp-block-site-logo a\":false},[\"display:inline-block\"]],[false,{\".wp-block-site-logo.is-default-size amp-img\":false,\".wp-block-site-logo.is-default-size amp-anim\":false},[\"width:120px\",\"height:auto\"]],[false,{\".wp-block-site-logo .aligncenter\":false},[\"display:table\"]],[false,{\".wp-block-site-logo.is-style-rounded amp-img\":false,\".wp-block-site-logo.is-style-rounded amp-anim\":false},[\"border-radius:9999px\"]],[false,{\".wp-block-social-links\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding-left:0\",\"padding-right:0\",\"text-indent:0\",\"margin-left:0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false,\".wp-block-social-links .wp-social-link a:hover\":false},[\"text-decoration:none\",\"border-bottom:0\",\"box-shadow:none\"]],[false,{\".wp-block-social-links .wp-social-link.wp-social-link.wp-social-link\":false},[\"margin:4px 8px 4px 0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false},[\"padding:.25em\"]],[false,{\".wp-block-social-links .wp-social-link svg\":false},[\"width:1em\",\"height:1em\"]],[false,{\".wp-block-social-links.has-small-icon-size\":false},[\"font-size:16px\"]],[false,{\".wp-block-social-links\":false,\".wp-block-social-links.has-normal-icon-size\":false},[\"font-size:24px\"]],[false,{\".wp-block-social-links.has-large-icon-size\":false},[\"font-size:36px\"]],[false,{\".wp-block-social-links.has-huge-icon-size\":false},[\"font-size:48px\"]],[false,{\".wp-block-social-links.aligncenter\":false},[\"justify-content:center\",\"display:flex\"]],[false,{\".wp-block-social-links.alignright\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-social-link\":false},[\"display:block\",\"border-radius:9999px\",\"transition:transform .1s ease\",\"height:auto\"]],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-social-link\":false},[\"transition-duration:0s\",\"transition-delay:0s\"]],[false,\"}\"],[false,{\".wp-block-social-link a\":false},[\"display:block\",\"line-height:0\",\"transition:transform .1s ease\"]],[false,{\".wp-block-social-link:hover\":false},[\"transform:scale(1.1)\"]],[false,{\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:active\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:hover\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:visited\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg\":false},[\"color:currentColor\",\"fill:currentColor\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link\":false},[\"background-color:#f0f0f0\",\"color:#444\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon\":false},[\"background-color:#f90\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp\":false},[\"background-color:#1ea0c3\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance\":false},[\"background-color:#0757fe\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen\":false},[\"background-color:#1e1f26\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart\":false},[\"background-color:#02e49b\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble\":false},[\"background-color:#e94c89\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox\":false},[\"background-color:#4280ff\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy\":false},[\"background-color:#f45800\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook\":false},[\"background-color:#1778f2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr\":false},[\"background-color:#0461dd\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare\":false},[\"background-color:#e65678\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github\":false},[\"background-color:#24292d\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads\":false},[\"background-color:#eceadd\",\"color:#382110\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google\":false},[\"background-color:#ea4434\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram\":false},[\"background-color:#f00075\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm\":false},[\"background-color:#e21b24\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin\":false},[\"background-color:#0d66c2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon\":false},[\"background-color:#3288d4\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium\":false},[\"background-color:#02ab6c\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup\":false},[\"background-color:#f6405f\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon\":false},[\"background-color:#ff424d\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest\":false},[\"background-color:#e60122\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket\":false},[\"background-color:#ef4155\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit\":false},[\"background-color:#fe4500\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype\":false},[\"background-color:#0478d7\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat\":false},[\"background-color:#fefc00\",\"color:#fff\",\"stroke:#000\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud\":false},[\"background-color:#ff5600\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify\":false},[\"background-color:#1bd760\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram\":false},[\"background-color:#2aabee\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr\":false},[\"background-color:#011835\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch\":false},[\"background-color:#6440a4\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter\":false},[\"background-color:#1da1f2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo\":false},[\"background-color:#1eb7ea\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk\":false},[\"background-color:#4680c2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress\":false},[\"background-color:#3499cd\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp\":false},[\"background-color:#d32422\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube\":false},[\"background-color:red\",\"color:#fff\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link\":false},[\"background:none\",\"padding:4px\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-amazon\":false},[\"color:#f90\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp\":false},[\"color:#1ea0c3\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-behance\":false},[\"color:#0757fe\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-codepen\":false},[\"color:#1e1f26\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-deviantart\":false},[\"color:#02e49b\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-dribbble\":false},[\"color:#e94c89\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-dropbox\":false},[\"color:#4280ff\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-etsy\":false},[\"color:#f45800\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-facebook\":false},[\"color:#1778f2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx\":false},[\"color:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-flickr\":false},[\"color:#0461dd\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-foursquare\":false},[\"color:#e65678\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-github\":false},[\"color:#24292d\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-goodreads\":false},[\"color:#382110\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-google\":false},[\"color:#ea4434\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-instagram\":false},[\"color:#f00075\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-lastfm\":false},[\"color:#e21b24\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-linkedin\":false},[\"color:#0d66c2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-mastodon\":false},[\"color:#3288d4\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-medium\":false},[\"color:#02ab6c\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-meetup\":false},[\"color:#f6405f\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-patreon\":false},[\"color:#ff424d\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-pinterest\":false},[\"color:#e60122\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-pocket\":false},[\"color:#ef4155\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-reddit\":false},[\"color:#fe4500\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-skype\":false},[\"color:#0478d7\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-snapchat\":false},[\"color:#fff\",\"stroke:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud\":false},[\"color:#ff5600\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-spotify\":false},[\"color:#1bd760\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-telegram\":false},[\"color:#2aabee\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-tiktok\":false},[\"color:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-tumblr\":false},[\"color:#011835\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-twitch\":false},[\"color:#6440a4\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-twitter\":false},[\"color:#1da1f2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-vimeo\":false},[\"color:#1eb7ea\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-vk\":false},[\"color:#4680c2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-wordpress\":false},[\"color:#3499cd\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-yelp\":false},[\"color:#d32422\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-youtube\":false},[\"color:red\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link\":false},[\"width:auto\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link a\":false},[\"padding-left:.66667em\",\"padding-right:.66667em\"]],[false,{\".wp-block-spacer\":false},[\"clear:both\"]],[false,{\".wp-block-tag-cloud.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-tag-cloud.alignfull\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".wp-block-table\":false},[\"margin:0 0 1em\",\"overflow-x:auto\"]],[false,{\".wp-block-table table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout\":false},[\"table-layout:fixed\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout td\":false,\".wp-block-table .has-fixed-layout th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table.aligncenter\":false,\".wp-block-table.alignleft\":false,\".wp-block-table.alignright\":false},[\"display:table\",\"width:auto\"]],[false,{\".wp-block-table.aligncenter td\":false,\".wp-block-table.aligncenter th\":false,\".wp-block-table.alignleft td\":false,\".wp-block-table.alignleft th\":false,\".wp-block-table.alignright td\":false,\".wp-block-table.alignright th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table .has-subtle-light-gray-background-color\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table .has-subtle-pale-green-background-color\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table .has-subtle-pale-blue-background-color\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table .has-subtle-pale-pink-background-color\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes\":false},[\"border-spacing:0\",\"border-collapse:inherit\",\"background-color:transparent\",\"border-bottom:1px solid #f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes tbody tr:nth-child(odd)\":false},[\"background-color:#f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes td\":false,\".wp-block-table.is-style-stripes th\":false},[\"border-color:transparent\"]],[false,{\".wp-block-table .has-border-color>*\":false,\".wp-block-table .has-border-color td\":false,\".wp-block-table .has-border-color th\":false,\".wp-block-table .has-border-color tr\":false},[\"border-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-style]>*\":false,\".wp-block-table table[data-amp-original-style*=border-style] td\":false,\".wp-block-table table[data-amp-original-style*=border-style] th\":false,\".wp-block-table table[data-amp-original-style*=border-style] tr\":false},[\"border-style:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-width]>*\":false,\".wp-block-table table[data-amp-original-style*=border-width] td\":false,\".wp-block-table table[data-amp-original-style*=border-width] th\":false,\".wp-block-table table[data-amp-original-style*=border-width] tr\":false},[\"border-width:inherit\"]],[false,{\".wp-block-text-columns\":false,\".wp-block-text-columns.aligncenter\":false},[\"display:flex\"]],[false,{\".wp-block-text-columns .wp-block-column\":false},[\"margin:0 1em\",\"padding:0\"]],[false,{\".wp-block-text-columns .wp-block-column:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-text-columns .wp-block-column:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-text-columns.columns-2 .wp-block-column\":false},[\"width:50%\"]],[false,{\".wp-block-text-columns.columns-3 .wp-block-column\":false},[\"width:33.33333%\"]],[false,{\".wp-block-text-columns.columns-4 .wp-block-column\":false},[\"width:25%\"]],[false,{\"pre.wp-block-verse\":false},[\"font-family:inherit\",\"overflow:auto\",\"white-space:pre-wrap\"]],[false,{\".wp-block-video\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-video [poster]\":false},[\"-o-object-fit:cover\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".wp-block-video.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-video figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-post-featured-image\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".wp-block-post-featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-post-featured-image amp-img\":false,\".wp-block-post-featured-image amp-anim\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".wp-block-post-featured-image.alignfull amp-img\":false,\".wp-block-post-featured-image.alignfull amp-anim\":false,\".wp-block-post-featured-image.alignwide amp-img\":false,\".wp-block-post-featured-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\":root .has-pale-pink-background-color\":false},[\"background-color:#f78da7\"]],[false,{\":root .has-vivid-red-background-color\":false},[\"background-color:#cf2e2e\"]],[false,{\":root .has-luminous-vivid-orange-background-color\":false},[\"background-color:#ff6900\"]],[false,{\":root .has-luminous-vivid-amber-background-color\":false},[\"background-color:#fcb900\"]],[false,{\":root .has-light-green-cyan-background-color\":false},[\"background-color:#7bdcb5\"]],[false,{\":root .has-vivid-green-cyan-background-color\":false},[\"background-color:#00d084\"]],[false,{\":root .has-pale-cyan-blue-background-color\":false},[\"background-color:#8ed1fc\"]],[false,{\":root .has-vivid-cyan-blue-background-color\":false},[\"background-color:#0693e3\"]],[false,{\":root .has-vivid-purple-background-color\":false},[\"background-color:#9b51e0\"]],[false,{\":root .has-white-background-color\":false},[\"background-color:#fff\"]],[false,{\":root .has-very-light-gray-background-color\":false},[\"background-color:#eee\"]],[false,{\":root .has-cyan-bluish-gray-background-color\":false},[\"background-color:#abb8c3\"]],[false,{\":root .has-very-dark-gray-background-color\":false},[\"background-color:#313131\"]],[false,{\":root .has-black-background-color\":false},[\"background-color:#000\"]],[false,{\":root .has-pale-pink-color\":false},[\"color:#f78da7\"]],[false,{\":root .has-vivid-red-color\":false},[\"color:#cf2e2e\"]],[false,{\":root .has-luminous-vivid-orange-color\":false},[\"color:#ff6900\"]],[false,{\":root .has-luminous-vivid-amber-color\":false},[\"color:#fcb900\"]],[false,{\":root .has-light-green-cyan-color\":false},[\"color:#7bdcb5\"]],[false,{\":root .has-vivid-green-cyan-color\":false},[\"color:#00d084\"]],[false,{\":root .has-pale-cyan-blue-color\":false},[\"color:#8ed1fc\"]],[false,{\":root .has-vivid-cyan-blue-color\":false},[\"color:#0693e3\"]],[false,{\":root .has-vivid-purple-color\":false},[\"color:#9b51e0\"]],[false,{\":root .has-white-color\":false},[\"color:#fff\"]],[false,{\":root .has-very-light-gray-color\":false},[\"color:#eee\"]],[false,{\":root .has-cyan-bluish-gray-color\":false},[\"color:#abb8c3\"]],[false,{\":root .has-very-dark-gray-color\":false},[\"color:#313131\"]],[false,{\":root .has-black-color\":false},[\"color:#000\"]],[false,{\":root .has-vivid-cyan-blue-to-vivid-purple-gradient-background\":false},[\"background:linear-gradient(135deg,#0693e3,#9b51e0)\"]],[false,{\":root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background\":false},[\"background:linear-gradient(135deg,#00d084,#0693e3)\"]],[false,{\":root .has-light-green-cyan-to-vivid-green-cyan-gradient-background\":false},[\"background:linear-gradient(135deg,#7adcb4,#00d082)\"]],[false,{\":root .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background\":false},[\"background:linear-gradient(135deg,#fcb900,#ff6900)\"]],[false,{\":root .has-luminous-vivid-orange-to-vivid-red-gradient-background\":false},[\"background:linear-gradient(135deg,#ff6900,#cf2e2e)\"]],[false,{\":root .has-very-light-gray-to-cyan-bluish-gray-gradient-background\":false},[\"background:linear-gradient(135deg,#eee,#a9b8c3)\"]],[false,{\":root .has-cool-to-warm-spectrum-gradient-background\":false},[\"background:linear-gradient(135deg,#4aeadc,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c)\"]],[false,{\":root .has-blush-light-purple-gradient-background\":false},[\"background:linear-gradient(135deg,#ffceec,#9896f0)\"]],[false,{\":root .has-blush-bordeaux-gradient-background\":false},[\"background:linear-gradient(135deg,#fecda5,#fe2d2d 50%,#6b003e)\"]],[false,{\":root .has-purple-crush-gradient-background\":false},[\"background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)\"]],[false,{\":root .has-luminous-dusk-gradient-background\":false},[\"background:linear-gradient(135deg,#ffcb70,#c751c0 50%,#4158d0)\"]],[false,{\":root .has-hazy-dawn-gradient-background\":false},[\"background:linear-gradient(135deg,#faaca8,#dad0ec)\"]],[false,{\":root .has-pale-ocean-gradient-background\":false},[\"background:linear-gradient(135deg,#fff5cb,#b6e3d4 50%,#33a7b5)\"]],[false,{\":root .has-electric-grass-gradient-background\":false},[\"background:linear-gradient(135deg,#caf880,#71ce7e)\"]],[false,{\":root .has-subdued-olive-gradient-background\":false},[\"background:linear-gradient(135deg,#fafae1,#67a671)\"]],[false,{\":root .has-atomic-cream-gradient-background\":false},[\"background:linear-gradient(135deg,#fdd79a,#004a59)\"]],[false,{\":root .has-nightshade-gradient-background\":false},[\"background:linear-gradient(135deg,#330968,#31cdcf)\"]],[false,{\":root .has-midnight-gradient-background\":false},[\"background:linear-gradient(135deg,#020381,#2874fc)\"]],[false,{\".has-small-font-size\":false},[\"font-size:.8125em\"]],[false,{\".has-normal-font-size\":false,\".has-regular-font-size\":false},[\"font-size:1em\"]],[false,{\".has-medium-font-size\":false},[\"font-size:1.25em\"]],[false,{\".has-large-font-size\":false},[\"font-size:2.25em\"]],[false,{\".has-huge-font-size\":false,\".has-larger-font-size\":false},[\"font-size:2.625em\"]],[false,{\".has-text-align-center\":false},[\"text-align:center\"]],[false,{\".has-text-align-left\":false},[\"text-align:left\"]],[false,{\".has-text-align-right\":false},[\"text-align:right\"]],[false,{\"#end-resizable-editor-section\":false},[\"display:none\"]],[false,{\".aligncenter\":false},[\"clear:both\"]],[false,{\".items-justified-left\":false},[\"justify-content:flex-start\"]],[false,{\".items-justified-center\":false},[\"justify-content:center\"]],[false,{\".items-justified-right\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between\":false},[\"justify-content:space-between\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip:rect(1px,1px,1px,1px)\",\"-webkit-clip-path:inset(50%)\",\"clip-path:inset(50%)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#ddd\",\"-webkit-clip-path:none\",\"clip-path:none\",\"color:#444\",\"display:block\",\"font-size:1em\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[false,{\".screen-reader-text:focus:not(#_#_#_#_#_#_#_)\":false},[\"clip:auto\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2731,\"final_size\":133,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"contact-form-7-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/css\\/styles.css?ver=5.5.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"212b20af9d955c5d566d0549c68d0998\",\"parse_time\":0.03908491134643555,\"shake_time\":3.790855407714844e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".wpcf7 .screen-reader-response\":false},[\"position:absolute\",\"overflow:hidden\",\"clip:rect(1px,1px,1px,1px)\",\"clip-path:inset(50%)\",\"height:1px\",\"width:1px\",\"margin:-1px\",\"padding:0\",\"border:0\"]],[false,{\".wpcf7 .screen-reader-response:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".wpcf7 form .wpcf7-response-output\":false},[\"margin:2em .5em 1em\",\"padding:.2em 1em\",\"border:2px solid #00a0d2\"]],[false,{\".wpcf7 form.init .wpcf7-response-output\":false,\".wpcf7 form.resetting .wpcf7-response-output\":false,\".wpcf7 form.submitting .wpcf7-response-output\":false},[\"display:none\"]],[false,{\".wpcf7 form.sent .wpcf7-response-output\":false},[\"border-color:#46b450\"]],[false,{\".wpcf7 form.failed .wpcf7-response-output\":false,\".wpcf7 form.aborted .wpcf7-response-output\":false},[\"border-color:#dc3232\"]],[false,{\".wpcf7 form.spam .wpcf7-response-output\":false},[\"border-color:#f56e28\"]],[false,{\".wpcf7 form.invalid .wpcf7-response-output\":false,\".wpcf7 form.unaccepted .wpcf7-response-output\":false,\".wpcf7 form.payment-required .wpcf7-response-output\":false},[\"border-color:#ffb900\"]],[false,{\".wpcf7-form-control-wrap\":false},[\"position:relative\"]],[false,{\".wpcf7-not-valid-tip\":false},[\"color:#dc3232\",\"font-size:1em\",\"font-weight:normal\",\"display:block\"]],[false,{\".use-floating-validation-tip .wpcf7-not-valid-tip\":false},[\"position:relative\",\"top:-2ex\",\"left:1em\",\"z-index:100\",\"border:1px solid #dc3232\",\"background:#fff\",\"padding:.2em .8em\",\"width:24em\"]],[false,{\".wpcf7-list-item\":false},[\"display:inline-block\",\"margin:0 0 0 1em\"]],[false,{\".wpcf7-list-item-label::before\":false,\".wpcf7-list-item-label::after\":false},[\"content:\\\" \\\"\"]],[false,{\".wpcf7-spinner\":false},[\"visibility:hidden\",\"display:inline-block\",\"background-color:#23282d\",\"opacity:.75\",\"width:24px\",\"height:24px\",\"border:none\",\"border-radius:100%\",\"padding:0\",\"margin:0 24px\",\"position:relative\"]],[false,{\"form.submitting .wpcf7-spinner\":false},[\"visibility:visible\"]],[false,{\".wpcf7-spinner::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"background-color:#fbfbfc\",\"top:4px\",\"left:4px\",\"width:6px\",\"height:6px\",\"border:none\",\"border-radius:100%\",\"transform-origin:8px 8px\",\"animation-name:spin\",\"animation-duration:1000ms\",\"animation-timing-function:linear\",\"animation-iteration-count:infinite\"]],[false,\"@media (prefers-reduced-motion: reduce){\"],[false,{\".wpcf7-spinner::before\":false},[\"animation-name:blink\",\"animation-duration:2000ms\"]],[false,\"}\"],[true,\"@keyframes spin{\"],[true,\"from{transform:rotate(0deg)}\"],[true,\"to{transform:rotate(360deg)}\"],[true,\"}@keyframes blink{\"],[true,\"from{opacity:0}\"],[true,\"50%{opacity:1}\"],[true,\"to{opacity:0}\"],[true,\"}\"],[false,{\".wpcf7 input[type=\\\"file\\\"]\":false},[\"cursor:pointer\"]],[false,{\".wpcf7 input[type=\\\"file\\\"]:disabled\":false},[\"cursor:default\"]],[false,{\".wpcf7 .wpcf7-submit:disabled\":false},[\"cursor:not-allowed\"]],[false,{\".wpcf7 input[type=\\\"url\\\"]\":false,\".wpcf7 input[type=\\\"email\\\"]\":false,\".wpcf7 input[type=\\\"tel\\\"]\":false},[\"direction:ltr\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":3027,\"final_size\":290,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"emcs_calendly_css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/embed-calendly-scheduling\\/assets\\/css\\/widget.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"embed-calendly-scheduling\",\"file\":\"embed-calendly-scheduling.php\",\"line\":39,\"function\":\"emcs_calendly_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"99d6ad74e1d82f040a9c3a773af31054\",\"parse_time\":0.053494930267333984,\"shake_time\":3.719329833984375e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".calendly-inline-widget\":false,\".calendly-inline-widget *\":false,\".calendly-badge-widget\":false,\".calendly-badge-widget *\":false,\".calendly-overlay\":false,\".calendly-overlay *\":false},[\"font-size:16px\",\"line-height:1.2em\"]],[false,{\".calendly-inline-widget amp-iframe\":false,\".calendly-badge-widget amp-iframe\":false,\".calendly-overlay amp-iframe\":false},[\"display:inline\",\"width:100%\",\"height:100%\"]],[false,{\".calendly-popup-content\":false},[\"position:relative\"]],[false,{\".calendly-popup-content.calendly-mobile\":false},[\"-webkit-overflow-scrolling:touch\",\"overflow-y:auto\"]],[false,{\".calendly-overlay\":false},[\"position:fixed\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"overflow:hidden\",\"z-index:9999\",\"background-color:#a5a5a5\",\"background-color:rgba(31,31,31,.4)\"]],[false,{\".calendly-overlay .calendly-close-overlay\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\"]],[false,{\".calendly-overlay .calendly-popup\":false},[\"box-sizing:border-box\",\"position:absolute\",\"top:50%\",\"left:50%\",\"-webkit-transform:translateY(-50%) translateX(-50%)\",\"transform:translateY(-50%) translateX(-50%)\",\"width:80%\",\"min-width:900px\",\"max-width:1000px\",\"height:90%\",\"max-height:680px\"]],[false,\"@media (max-width:975px){\"],[false,{\".calendly-overlay .calendly-popup\":false},[\"position:fixed\",\"top:50px\",\"left:0\",\"right:0\",\"bottom:0\",\"-webkit-transform:none\",\"transform:none\",\"width:100%\",\"height:auto\",\"min-width:0\",\"max-height:none\"]],[false,\"}\"],[false,{\".calendly-overlay .calendly-popup .calendly-popup-content\":false},[\"height:100%\"]],[false,{\".calendly-overlay .calendly-popup-close\":false},[\"position:absolute\",\"top:25px\",\"right:25px\",\"color:#fff\",\"width:19px\",\"height:19px\",\"cursor:pointer\",\"background:url(\\\"\\/assets\\/external\\/close-icon.svg\\\") no-repeat\",\"background-size:contain\"]],[false,\"@media (max-width:975px){\"],[false,{\".calendly-overlay .calendly-popup-close\":false},[\"top:15px\",\"right:15px\"]],[false,\"}\"],[false,{\".calendly-badge-widget\":false},[\"position:fixed\",\"right:20px\",\"bottom:15px\",\"z-index:9998\"]],[false,{\".calendly-badge-widget .calendly-badge-content\":false},[\"display:table-cell\",\"width:auto\",\"height:45px\",\"padding:0 30px\",\"border-radius:25px\",\"box-shadow:rgba(0,0,0,.25) 0 2px 5px\",\"font-family:sans-serif\",\"text-align:center\",\"vertical-align:middle\",\"font-weight:700\",\"font-size:14px\",\"color:#fff\",\"cursor:pointer\"]],[false,{\".calendly-badge-widget .calendly-badge-content.calendly-white\":false},[\"color:#666a73\"]],[false,{\".calendly-badge-widget .calendly-badge-content span\":false},[\"display:block\",\"font-size:12px\"]],[false,{\".calendly-spinner\":false},[\"position:absolute\",\"top:50%\",\"left:0\",\"right:0\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\",\"text-align:center\",\"z-index:-1\"]],[false,{\".calendly-spinner>div\":false},[\"display:inline-block\",\"width:18px\",\"height:18px\",\"background-color:#e1e1e1\",\"border-radius:50%\",\"vertical-align:middle\",\"-webkit-animation:calendly-bouncedelay 1.4s infinite ease-in-out\",\"animation:calendly-bouncedelay 1.4s infinite ease-in-out\",\"-webkit-animation-fill-mode:both\",\"animation-fill-mode:both\"]],[false,{\".calendly-spinner .calendly-bounce1\":false},[\"-webkit-animation-delay:-.32s\",\"animation-delay:-.32s\"]],[false,{\".calendly-spinner .calendly-bounce2\":false},[\"-webkit-animation-delay:-.16s\",\"animation-delay:-.16s\"]],[true,\"@-webkit-keyframes calendly-bouncedelay{\"],[true,\"0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}\"],[true,\"40%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes calendly-bouncedelay{\"],[true,\"0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}\"],[true,\"40%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,\"@media only screen and (max-device-width :768px){\"],[false,{\"#calendly-inline-widget:not(#_#_#_#_#_#_#_)\":false},[\"min-width:auto\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":89113,\"final_size\":55,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"social_warfare-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/css\\/style.min.css?ver=4.3.0\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Script.php\",\"line\":94,\"function\":\"SWP_Script::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"e220b783a5a07d3a59270f77ece9859a\",\"parse_time\":1.1959950923919678,\"shake_time\":0.0013058185577392578,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".swp_social_panel.swp_default_full_color a\":false,\"html body .swp_social_panel.swp_individual_full_color .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_full_color:hover a\":false},[\"color:white\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_blogger\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_blogger:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_blogger:not(:hover)\":false},[\"border:1px solid #ff5722\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_blogger\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_blogger:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_blogger\":false},[\"background:#ff5722\",\"border:1px solid #ee3900\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_blogger\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_blogger:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_blogger\":false},[\"border-bottom:3px solid #ee3900\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_blogger a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_blogger a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_blogger a\":false},[\"color:#ff5722\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_blogger\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_blogger:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_blogger\":false},[\"background:transparent\",\"border:1px solid #ff5722\"]],[false,{\".swp-blogger\":false},[\"background:#ff5722\",\"border-color:#ee3900\"]],[false,{\".swp-blogger a\":false},[\"color:#ff5722\"]],[false,{\".swp-blogger a:hover\":false},[\"background:#ee3900\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_buffer\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_buffer:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_buffer:not(:hover)\":false},[\"border:1px solid #323b43\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_buffer\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_buffer:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_buffer\":false},[\"background:#323b43\",\"border:1px solid #1c2126\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_buffer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_buffer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_buffer\":false},[\"border-bottom:3px solid #1c2126\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_buffer a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_buffer a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_buffer a\":false},[\"color:#323b43\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_buffer\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_buffer:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_buffer\":false},[\"background:transparent\",\"border:1px solid #323b43\"]],[false,{\".swp-buffer\":false},[\"background:#323b43\",\"border-color:#1c2126\"]],[false,{\".swp-buffer a\":false},[\"color:#323b43\"]],[false,{\".swp-buffer a:hover\":false},[\"background:#1c2126\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_ello\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_ello:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_ello:not(:hover)\":false},[\"border:1px solid #000\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_ello\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_ello:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_ello\":false},[\"background:#000\",\"border:1px solid #000\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_ello\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_ello:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_ello\":false},[\"border-bottom:3px solid #000\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_ello a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_ello a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_ello a\":false},[\"color:#000\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_ello\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_ello:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_ello\":false},[\"background:transparent\",\"border:1px solid #000\"]],[false,{\".swp-ello\":false},[\"background:#000\",\"border-color:#000\"]],[false,{\".swp-ello a\":false},[\"color:#000\"]],[false,{\".swp-ello a:hover\":false},[\"background:#000\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_email\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_email:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_email:not(:hover)\":false},[\"border:1px solid #6bcce9\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_email\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_email:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_email\":false},[\"background:#6bcce9\",\"border:1px solid #3fbde2\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_email\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_email:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_email\":false},[\"border-bottom:3px solid #3fbde2\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_email a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_email a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_email a\":false},[\"color:#6bcce9\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_email\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_email:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_email\":false},[\"background:transparent\",\"border:1px solid #6bcce9\"]],[false,{\".swp-email\":false},[\"background:#6bcce9\",\"border-color:#3fbde2\"]],[false,{\".swp-email a\":false},[\"color:#6bcce9\"]],[false,{\".swp-email a:hover\":false},[\"background:#3fbde2\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_evernote\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_evernote:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_evernote:not(:hover)\":false},[\"border:1px solid #2dbe60\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_evernote\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_evernote:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_evernote\":false},[\"background:#2dbe60\",\"border:1px solid #23954b\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_evernote\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_evernote:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_evernote\":false},[\"border-bottom:3px solid #23954b\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_evernote a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_evernote a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_evernote a\":false},[\"color:#2dbe60\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_evernote\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_evernote:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_evernote\":false},[\"background:transparent\",\"border:1px solid #2dbe60\"]],[false,{\".swp-evernote\":false},[\"background:#2dbe60\",\"border-color:#23954b\"]],[false,{\".swp-evernote a\":false},[\"color:#2dbe60\"]],[false,{\".swp-evernote a:hover\":false},[\"background:#23954b\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_facebook\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_facebook:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_facebook:not(:hover)\":false},[\"border:1px solid #1877f2\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_facebook\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_facebook:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_facebook\":false},[\"background:#1877f2\",\"border:1px solid #0b5fcc\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_facebook\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_facebook:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_facebook\":false},[\"border-bottom:3px solid #0b5fcc\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_facebook a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_facebook a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_facebook a\":false},[\"color:#1877f2\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_facebook\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_facebook:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_facebook\":false},[\"background:transparent\",\"border:1px solid #1877f2\"]],[false,{\".swp-facebook\":false},[\"background:#1877f2\",\"border-color:#0b5fcc\"]],[false,{\".swp-facebook a\":false},[\"color:#1877f2\"]],[false,{\".swp-facebook a:hover\":false},[\"background:#0b5fcc\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_flickr\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_flickr:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_flickr:not(:hover)\":false},[\"border:1px solid #ff0084\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_flickr\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_flickr:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_flickr\":false},[\"background:#ff0084\",\"border:1px solid #cc006a\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_flickr\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_flickr:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_flickr\":false},[\"border-bottom:3px solid #cc006a\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flickr a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flickr a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flickr a\":false},[\"color:#ff0084\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flickr\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flickr:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flickr\":false},[\"background:transparent\",\"border:1px solid #ff0084\"]],[false,{\".swp-flickr\":false},[\"background:#ff0084\",\"border-color:#cc006a\"]],[false,{\".swp-flickr a\":false},[\"color:#ff0084\"]],[false,{\".swp-flickr a:hover\":false},[\"background:#cc006a\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_flipboard\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_flipboard:not(:hover)\":false},[\"border:1px solid #bf2626\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_flipboard\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_flipboard\":false},[\"background:#bf2626\",\"border:1px solid #941e1e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_flipboard\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_flipboard\":false},[\"border-bottom:3px solid #941e1e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flipboard a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flipboard a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flipboard a\":false},[\"color:#bf2626\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flipboard\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flipboard\":false},[\"background:transparent\",\"border:1px solid #bf2626\"]],[false,{\".swp-flipboard\":false},[\"background:#bf2626\",\"border-color:#941e1e\"]],[false,{\".swp-flipboard a\":false},[\"color:#bf2626\"]],[false,{\".swp-flipboard a:hover\":false},[\"background:#941e1e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_hacker_news\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_hacker_news:not(:hover)\":false},[\"border:1px solid #d85623\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_hacker_news\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_hacker_news\":false},[\"background:#d85623\",\"border:1px solid #ac451c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_hacker_news\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_hacker_news\":false},[\"border-bottom:3px solid #ac451c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_hacker_news a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_hacker_news a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_hacker_news a\":false},[\"color:#d85623\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_hacker_news\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_hacker_news\":false},[\"background:transparent\",\"border:1px solid #d85623\"]],[false,{\".swp-hacker_news\":false},[\"background:#d85623\",\"border-color:#ac451c\"]],[false,{\".swp-hacker_news a\":false},[\"color:#d85623\"]],[false,{\".swp-hacker_news a:hover\":false},[\"background:#ac451c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_instagram\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_instagram:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_instagram:not(:hover)\":false},[\"border:1px solid #ea2454\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_instagram\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_instagram:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_instagram\":false},[\"background:#ea2454\",\"border:1px solid #c8133f\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_instagram\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_instagram:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_instagram\":false},[\"border-bottom:3px solid #c8133f\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_instagram a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_instagram a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_instagram a\":false},[\"color:#ea2454\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_instagram\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_instagram:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_instagram\":false},[\"background:transparent\",\"border:1px solid #ea2454\"]],[false,{\".swp-instagram\":false},[\"background:#ea2454\",\"border-color:#c8133f\"]],[false,{\".swp-instagram a\":false},[\"color:#ea2454\"]],[false,{\".swp-instagram a:hover\":false},[\"background:#c8133f\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_linkedin\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_linkedin:not(:hover)\":false},[\"border:1px solid #2767b1\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_linkedin\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_linkedin\":false},[\"background:#2767b1\",\"border:1px solid #1e4f87\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_linkedin\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_linkedin\":false},[\"border-bottom:3px solid #1e4f87\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_linkedin a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_linkedin a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_linkedin a\":false},[\"color:#2767b1\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_linkedin\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_linkedin\":false},[\"background:transparent\",\"border:1px solid #2767b1\"]],[false,{\".swp-linkedin\":false},[\"background:#2767b1\",\"border-color:#1e4f87\"]],[false,{\".swp-linkedin a\":false},[\"color:#2767b1\"]],[false,{\".swp-linkedin a:hover\":false},[\"background:#1e4f87\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_medium\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_medium:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_medium:not(:hover)\":false},[\"border:1px solid #00ab6c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_medium\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_medium:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_medium\":false},[\"background:#00ab6c\",\"border:1px solid #00784c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_medium\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_medium:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_medium\":false},[\"border-bottom:3px solid #00784c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_medium a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_medium a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_medium a\":false},[\"color:#00ab6c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_medium\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_medium:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_medium\":false},[\"background:transparent\",\"border:1px solid #00ab6c\"]],[false,{\".swp-medium\":false},[\"background:#00ab6c\",\"border-color:#00784c\"]],[false,{\".swp-medium a\":false},[\"color:#00ab6c\"]],[false,{\".swp-medium a:hover\":false},[\"background:#00784c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_mix\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_mix:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_mix:not(:hover)\":false},[\"border:1px solid #f4812c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_mix\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_mix:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_mix\":false},[\"background:#f4812c\",\"border:1px solid #e1660c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_mix\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_mix:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_mix\":false},[\"border-bottom:3px solid #e1660c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_mix a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_mix a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_mix a\":false},[\"color:#f4812c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_mix\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_mix:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_mix\":false},[\"background:transparent\",\"border:1px solid #f4812c\"]],[false,{\".swp-mix\":false},[\"background:#f4812c\",\"border-color:#e1660c\"]],[false,{\".swp-mix a\":false},[\"color:#f4812c\"]],[false,{\".swp-mix a:hover\":false},[\"background:#e1660c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_more\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_more:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_more:not(:hover)\":false},[\"border:1px solid #ee464f\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_more\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_more:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_more\":false},[\"background:#ee464f\",\"border:1px solid #ea1723\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_more\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_more:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_more\":false},[\"border-bottom:3px solid #ea1723\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_more a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_more a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_more a\":false},[\"color:#ee464f\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_more\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_more:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_more\":false},[\"background:transparent\",\"border:1px solid #ee464f\"]],[false,{\".swp-more\":false},[\"background:#ee464f\",\"border-color:#ea1723\"]],[false,{\".swp-more a\":false},[\"color:#ee464f\"]],[false,{\".swp-more a:hover\":false},[\"background:#ea1723\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_parler\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_parler:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_parler:not(:hover)\":false},[\"border:1px solid #be1e2c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_parler\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_parler:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_parler\":false},[\"background:#be1e2c\",\"border:1px solid #921722\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_parler\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_parler:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_parler\":false},[\"border-bottom:3px solid #921722\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_parler a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_parler a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_parler a\":false},[\"color:#be1e2c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_parler\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_parler:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_parler\":false},[\"background:transparent\",\"border:1px solid #be1e2c\"]],[false,{\".swp-parler\":false},[\"background:#be1e2c\",\"border-color:#921722\"]],[false,{\".swp-parler a\":false},[\"color:#be1e2c\"]],[false,{\".swp-parler a:hover\":false},[\"background:#921722\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_periscope\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_periscope:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_periscope:not(:hover)\":false},[\"border:1px solid #3aa4c6\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_periscope\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_periscope:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_periscope\":false},[\"background:#3aa4c6\",\"border:1px solid #2e849f\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_periscope\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_periscope:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_periscope\":false},[\"border-bottom:3px solid #2e849f\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_periscope a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_periscope a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_periscope a\":false},[\"color:#3aa4c6\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_periscope\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_periscope:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_periscope\":false},[\"background:transparent\",\"border:1px solid #3aa4c6\"]],[false,{\".swp-periscope\":false},[\"background:#3aa4c6\",\"border-color:#2e849f\"]],[false,{\".swp-periscope a\":false},[\"color:#3aa4c6\"]],[false,{\".swp-periscope a:hover\":false},[\"background:#2e849f\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_pinterest\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_pinterest:not(:hover)\":false},[\"border:1px solid #e60023\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_pinterest\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_pinterest\":false},[\"background:#e60023\",\"border:1px solid #b3001b\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_pinterest\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_pinterest\":false},[\"border-bottom:3px solid #b3001b\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pinterest a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pinterest a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pinterest a\":false},[\"color:#e60023\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pinterest\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pinterest\":false},[\"background:transparent\",\"border:1px solid #e60023\"]],[false,{\".swp-pinterest\":false},[\"background:#e60023\",\"border-color:#b3001b\"]],[false,{\".swp-pinterest a\":false},[\"color:#e60023\"]],[false,{\".swp-pinterest a:hover\":false},[\"background:#b3001b\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_pocket\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_pocket:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_pocket:not(:hover)\":false},[\"border:1px solid #ef4056\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_pocket\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_pocket:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_pocket\":false},[\"background:#ef4056\",\"border:1px solid #e9132e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_pocket\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_pocket:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_pocket\":false},[\"border-bottom:3px solid #e9132e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pocket a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pocket a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pocket a\":false},[\"color:#ef4056\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pocket\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pocket:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pocket\":false},[\"background:transparent\",\"border:1px solid #ef4056\"]],[false,{\".swp-pocket\":false},[\"background:#ef4056\",\"border-color:#e9132e\"]],[false,{\".swp-pocket a\":false},[\"color:#ef4056\"]],[false,{\".swp-pocket a:hover\":false},[\"background:#e9132e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_print\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_print:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_print:not(:hover)\":false},[\"border:1px solid #777\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_print\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_print:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_print\":false},[\"background:#777\",\"border:1px solid #5e5e5e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_print\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_print:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_print\":false},[\"border-bottom:3px solid #5e5e5e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_print a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_print a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_print a\":false},[\"color:#777\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_print\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_print:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_print\":false},[\"background:transparent\",\"border:1px solid #777\"]],[false,{\".swp-print\":false},[\"background:#777\",\"border-color:#5e5e5e\"]],[false,{\".swp-print a\":false},[\"color:#777\"]],[false,{\".swp-print a:hover\":false},[\"background:#5e5e5e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_reddit\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_reddit:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_reddit:not(:hover)\":false},[\"border:1px solid #f04b23\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_reddit\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_reddit:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_reddit\":false},[\"background:#f04b23\",\"border:1px solid #d2340e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_reddit\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_reddit:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_reddit\":false},[\"border-bottom:3px solid #d2340e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_reddit a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_reddit a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_reddit a\":false},[\"color:#f04b23\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_reddit\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_reddit:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_reddit\":false},[\"background:transparent\",\"border:1px solid #f04b23\"]],[false,{\".swp-reddit\":false},[\"background:#f04b23\",\"border-color:#d2340e\"]],[false,{\".swp-reddit a\":false},[\"color:#f04b23\"]],[false,{\".swp-reddit a:hover\":false},[\"background:#d2340e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_snapchat\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_snapchat:not(:hover)\":false},[\"border:1px solid #fffc00\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_snapchat\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_snapchat\":false},[\"background:#fffc00\",\"border:1px solid #ccca00\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_snapchat\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_snapchat\":false},[\"border-bottom:3px solid #ccca00\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_snapchat a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_snapchat a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_snapchat a\":false},[\"color:#fffc00\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_snapchat\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_snapchat\":false},[\"background:transparent\",\"border:1px solid #fffc00\"]],[false,{\".swp-snapchat\":false},[\"background:#fffc00\",\"border-color:#ccca00\"]],[false,{\".swp-snapchat a\":false},[\"color:#fffc00\"]],[false,{\".swp-snapchat a:hover\":false},[\"background:#ccca00\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_telegram\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_telegram:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_telegram:not(:hover)\":false},[\"border:1px solid #08c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_telegram\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_telegram:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_telegram\":false},[\"background:#08c\",\"border:1px solid #069\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_telegram\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_telegram:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_telegram\":false},[\"border-bottom:3px solid #069\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_telegram a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_telegram a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_telegram a\":false},[\"color:#08c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_telegram\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_telegram:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_telegram\":false},[\"background:transparent\",\"border:1px solid #08c\"]],[false,{\".swp-telegram\":false},[\"background:#08c\",\"border-color:#069\"]],[false,{\".swp-telegram a\":false},[\"color:#08c\"]],[false,{\".swp-telegram a:hover\":false},[\"background:#069\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_twitter\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_twitter:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_twitter:not(:hover)\":false},[\"border:1px solid #1da1f2\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_twitter\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_twitter:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_twitter\":false},[\"background:#1da1f2\",\"border:1px solid #0c85d0\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_twitter\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_twitter:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_twitter\":false},[\"border-bottom:3px solid #0c85d0\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_twitter a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_twitter a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_twitter a\":false},[\"color:#1da1f2\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_twitter\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_twitter:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_twitter\":false},[\"background:transparent\",\"border:1px solid #1da1f2\"]],[false,{\".swp-twitter\":false},[\"background:#1da1f2\",\"border-color:#0c85d0\"]],[false,{\".swp-twitter a\":false},[\"color:#1da1f2\"]],[false,{\".swp-twitter a:hover\":false},[\"background:#0c85d0\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_tumblr\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_tumblr:not(:hover)\":false},[\"border:1px solid #39475d\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_tumblr\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_tumblr\":false},[\"background:#39475d\",\"border:1px solid #262f3d\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_tumblr\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_tumblr\":false},[\"border-bottom:3px solid #262f3d\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_tumblr a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_tumblr a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_tumblr a\":false},[\"color:#39475d\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_tumblr\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_tumblr\":false},[\"background:transparent\",\"border:1px solid #39475d\"]],[false,{\".swp-tumblr\":false},[\"background:#39475d\",\"border-color:#262f3d\"]],[false,{\".swp-tumblr a\":false},[\"color:#39475d\"]],[false,{\".swp-tumblr a:hover\":false},[\"background:#262f3d\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_vimeo\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_vimeo:not(:hover)\":false},[\"border:1px solid #162221\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_vimeo\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_vimeo\":false},[\"background:#162221\",\"border:1px solid #020303\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_vimeo\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_vimeo\":false},[\"border-bottom:3px solid #020303\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vimeo a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vimeo a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vimeo a\":false},[\"color:#162221\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vimeo\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vimeo\":false},[\"background:transparent\",\"border:1px solid #162221\"]],[false,{\".swp-vimeo\":false},[\"background:#162221\",\"border-color:#020303\"]],[false,{\".swp-vimeo a\":false},[\"color:#162221\"]],[false,{\".swp-vimeo a:hover\":false},[\"background:#020303\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_viber\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_viber:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_viber:not(:hover)\":false},[\"border:1px solid #8f5db7\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_viber\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_viber:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_viber\":false},[\"background:#8f5db7\",\"border:1px solid #75459c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_viber\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_viber:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_viber\":false},[\"border-bottom:3px solid #75459c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_viber a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_viber a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_viber a\":false},[\"color:#8f5db7\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_viber\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_viber:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_viber\":false},[\"background:transparent\",\"border:1px solid #8f5db7\"]],[false,{\".swp-viber\":false},[\"background:#8f5db7\",\"border-color:#75459c\"]],[false,{\".swp-viber a\":false},[\"color:#8f5db7\"]],[false,{\".swp-viber a:hover\":false},[\"background:#75459c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_vk\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_vk:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_vk:not(:hover)\":false},[\"border:1px solid #4a76a8\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_vk\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_vk:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_vk\":false},[\"background:#4a76a8\",\"border:1px solid #3a5d85\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_vk\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_vk:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_vk\":false},[\"border-bottom:3px solid #3a5d85\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vk a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vk a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vk a\":false},[\"color:#4a76a8\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vk\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vk:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vk\":false},[\"background:transparent\",\"border:1px solid #4a76a8\"]],[false,{\".swp-vk\":false},[\"background:#4a76a8\",\"border-color:#3a5d85\"]],[false,{\".swp-vk a\":false},[\"color:#4a76a8\"]],[false,{\".swp-vk a:hover\":false},[\"background:#3a5d85\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_whatsapp\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_whatsapp:not(:hover)\":false},[\"border:1px solid #71c169\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_whatsapp\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_whatsapp\":false},[\"background:#71c169\",\"border:1px solid #52af48\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_whatsapp\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_whatsapp\":false},[\"border-bottom:3px solid #52af48\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_whatsapp a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_whatsapp a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_whatsapp a\":false},[\"color:#71c169\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_whatsapp\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_whatsapp\":false},[\"background:transparent\",\"border:1px solid #71c169\"]],[false,{\".swp-whatsapp\":false},[\"background:#71c169\",\"border-color:#52af48\"]],[false,{\".swp-whatsapp a\":false},[\"color:#71c169\"]],[false,{\".swp-whatsapp a:hover\":false},[\"background:#52af48\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_xing\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_xing:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_xing:not(:hover)\":false},[\"border:1px solid #026466\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_xing\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_xing:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_xing\":false},[\"background:#026466\",\"border:1px solid #013334\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_xing\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_xing:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_xing\":false},[\"border-bottom:3px solid #013334\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_xing a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_xing a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_xing a\":false},[\"color:#026466\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_xing\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_xing:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_xing\":false},[\"background:transparent\",\"border:1px solid #026466\"]],[false,{\".swp-xing\":false},[\"background:#026466\",\"border-color:#013334\"]],[false,{\".swp-xing a\":false},[\"color:#026466\"]],[false,{\".swp-xing a:hover\":false},[\"background:#013334\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_yummly\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_yummly:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_yummly:not(:hover)\":false},[\"border:1px solid #e26426\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_yummly\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_yummly:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_yummly\":false},[\"background:#e26426\",\"border:1px solid #bc4f19\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_yummly\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_yummly:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_yummly\":false},[\"border-bottom:3px solid #bc4f19\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_yummly a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_yummly a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_yummly a\":false},[\"color:#e26426\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_yummly\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_yummly:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_yummly\":false},[\"background:transparent\",\"border:1px solid #e26426\"]],[false,{\".swp-yummly\":false},[\"background:#e26426\",\"border-color:#bc4f19\"]],[false,{\".swp-yummly a\":false},[\"color:#e26426\"]],[false,{\".swp-yummly a:hover\":false},[\"background:#bc4f19\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_default_light_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_light_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_light_gray:hover .nc_tweetContainer\":false},[\"background-color:#ccc\",\"border:1px solid #ccc\"]],[false,{\".swp_social_panel.swp_default_light_gray .nc_tweetContainer a\":false,\"html body .swp_social_panel.swp_individual_light_gray .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_light_gray:hover .nc_tweetContainer a\":false},[\"color:#fff\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_light_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_light_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_light_gray .nc_tweetContainer:hover\":false},[\"border-bottom:3px solid #b3b3b3\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_light_gray .nc_tweetContainer.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_light_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false,\"body .swp_social_panel.swp_three_dee.swp_other_light_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:none\"]],[false,{\".swp_social_panel.swp_default_light_gray_outlines a\":false,\"html body .swp_social_panel.swp_individual_light_gray_outlines a:hover\":false,\"body .swp_social_panel.swp_other_light_gray_outlines:hover a\":false},[\"color:#ccc\"]],[false,{\".swp_social_panel.swp_default_light_gray_outlines .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_light_gray_outlines .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_light_gray_outlines:hover .nc_tweetContainer\":false},[\"background:transparent\",\"border:1px solid #ccc\"]],[false,{\".swp_social_panel.swp_default_medium_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_medium_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_medium_gray:hover .nc_tweetContainer\":false},[\"background-color:#999\",\"border:1px solid #999\"]],[false,{\".swp_social_panel.swp_default_medium_gray .nc_tweetContainer a\":false,\"html body .swp_social_panel.swp_individual_medium_gray .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_medium_gray:hover .nc_tweetContainer a\":false},[\"color:#fff\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_medium_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_medium_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_medium_gray .nc_tweetContainer:hover\":false},[\"border-bottom:3px solid gray\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_medium_gray .nc_tweetContainer.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_medium_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false,\"body .swp_social_panel.swp_three_dee.swp_other_medium_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:none\"]],[false,{\".swp_social_panel.swp_default_medium_gray_outlines a\":false,\"html body .swp_social_panel.swp_individual_medium_gray_outlines a:hover\":false,\"body .swp_social_panel.swp_other_medium_gray_outlines:hover a\":false},[\"color:#999\"]],[false,{\".swp_social_panel.swp_default_medium_gray_outlines .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_medium_gray_outlines .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_medium_gray_outlines:hover .nc_tweetContainer\":false},[\"background:transparent\",\"border:1px solid #999\"]],[false,{\".swp_social_panel.swp_default_dark_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_dark_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_dark_gray:hover .nc_tweetContainer\":false},[\"background-color:#444\",\"border:1px solid #444\"]],[false,{\".swp_social_panel.swp_default_dark_gray .nc_tweetContainer a\":false,\"html body .swp_social_panel.swp_individual_dark_gray .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_dark_gray:hover .nc_tweetContainer a\":false},[\"color:#fff\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_dark_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_dark_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_dark_gray .nc_tweetContainer:hover\":false},[\"border-bottom:3px solid #2b2b2b\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_dark_gray .nc_tweetContainer.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_dark_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false,\"body .swp_social_panel.swp_three_dee.swp_other_dark_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:none\"]],[false,{\".swp_social_panel.swp_default_dark_gray_outlines a\":false,\"html body .swp_social_panel.swp_individual_dark_gray_outlines a:hover\":false,\"body .swp_social_panel.swp_other_dark_gray_outlines:hover a\":false},[\"color:#444\"]],[false,{\".swp_social_panel.swp_default_dark_gray_outlines .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_dark_gray_outlines .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_dark_gray_outlines:hover .nc_tweetContainer\":false},[\"background:transparent\",\"border:1px solid #444\"]],[false,{\".swp_social_panel.swp_modern\":false,\".swp_social_panel.swp_dark\":false},[\"background:#fff\",\"height:62px\",\"padding:0\",\"border-radius:8px\",\"border:1px solid #eee\",\"box-shadow:0 2px 4px 0 rgba(0,0,0,.01),0 4px 5px 0 rgba(0,0,0,.014),0 4px 15px 0 rgba(0,0,0,.09)\"]],[false,{\".swp_social_panel.swp_modern .swp_share_button\":false,\".swp_social_panel.swp_dark .swp_share_button\":false},[\"padding-bottom:1px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_button:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .swp_share_button:not(#_#_#_#_#_#_#_)\":false},[\"border:none\",\"border-radius:0\",\"margin:0\",\"height:61px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_button.total_shares.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .swp_share_button.total_shares.total_sharesalt:not(#_#_#_#_#_#_#_)\":false},[\"padding:15px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_link\":false,\".swp_social_panel.swp_dark .swp_share_link\":false},[\"border-radius:0\",\"padding:15px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_link:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .swp_share_link:not(#_#_#_#_#_#_#_)\":false},[\"height:61px\"]],[false,{\".swp_social_panel.swp_modern .iconFiller:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .iconFiller:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:10px\"]],[false,{\".swp_social_panel.swp_modern .nc_wrapper.bottom:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .nc_wrapper.bottom:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\"]],[false,{\".swp_dark .swp_share_button:not(#_#_#_#_#_#_#_)\":false},[\"background:#222\",\"border-color:#222\",\"margin:0\",\"height:62px\"]],[false,{\".swp_dark .swp_share_link:hover\":false},[\"background:#444\"]],[false,{\".scale-70\":false},[\"transform:scale(.7)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-70.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:142.85714%\"]],[false,{\".scale-80\":false},[\"transform:scale(.8)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-80.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:125%\"]],[false,{\".scale-90\":false},[\"transform:scale(.9)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-90.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:111.11111%\"]],[false,{\".scale-100\":false},[\"transform:scale(1)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-100.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".scale-110\":false},[\"transform:scale(1.1)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-110.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:90.90909%\"]],[false,{\".scale-120\":false},[\"transform:scale(1.2)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-120.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:83.33333%\"]],[false,{\".scale-130\":false},[\"transform:scale(1.3)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-130.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:76.92308%\"]],[false,{\".scale-140\":false},[\"transform:scale(1.4)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-140.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:71.42857%\"]],[false,{\".scale-left\":false},[\"transform-origin:left\"]],[false,{\".scale-center\":false},[\"transform-origin:center\"]],[false,{\".scale-right\":false},[\"transform-origin:right\"]],[false,{\".scale-full_width\":false},[\"transform-origin:left\"]],[false,{\"div.swp_social_panel .nc_tweetContainer.swp_emphasize\":false},[\"flex:2\"]],[false,\"@media print{\"],[false,{\".swp_social_panel\":false},[\"display:none\",\"opacity:0\",\"visibility:collapse\"]],[false,\"}\"],[false,{\"html[lang] .site * i.sw:not(#_#_#_#_#_#_#_#_)\":false},[\"font-family:sw-icon-font\"]],[false,{\".swp_social_panel\":false},[\"clear:both\",\"display:flex\",\"height:34px\",\"line-height:1\",\"overflow:hidden\",\"padding:0\",\"align-items:stretch\",\"-webkit-box-align:stretch\",\"-moz-box-align:stretch\",\"-webkit-box-pack:justify\",\"-moz-box-pack:justify\",\"direction:ltr\",\"-ms-flex-align:stretch\",\"-ms-flex-line-pack:center\",\"-ms-flex-pack:justify\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[false,{\".swp_social_panel:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:20px\",\"margin-top:20px\"]],[false,{\".swp_social_panel .nc_tweetContainer a.nc_tweet\":false,\".swp_social_panel .nc_tweetContainer.total_shares .swp_count\":false},[\"display:block\",\"display:flex\",\"font-family:Lato,sans-serif\",\"font-weight:bold\",\"height:30px\",\"text-transform:none\",\"flex-flow:row wrap\",\"box-shadow:none\"]],[false,{\".swp_social_panel .nc_tweetContainer a.nc_tweet:not(#_#_#_#_#_#_#_#_)\":false,\".swp_social_panel .nc_tweetContainer.total_shares .swp_count:not(#_#_#_#_#_#_#_)\":false},[\"font-size:18px\",\"text-decoration:none\"]],[false,{\".swp_social_panel .nc_tweetContainer:not(.total_shares):not(.total_sharesalt)\":false},[\"border-radius:2px\",\"cursor:pointer\",\"float:left\",\"font-family:Lato\",\"height:32px\",\"margin:0 5px 3px 5px\",\"min-width:34px\",\"overflow:hidden\",\"text-align:center\",\"transition:all .1s linear\"]],[false,{\".swp_social_panel .nc_tweetContainer .spaceManWilly\":false},[\"display:block\",\"width:120px\"]],[false,{\".swp_social_panel .swp_label\":false},[\"display:block\",\"margin-top:13px\",\"position:absolute\",\"text-transform:uppercase\"]],[false,{\".swp_social_panel .swp_label:not(#_#_#_#_#_#_#_)\":false},[\"font-size:9px\",\"text-align:center\"]],[false,{\".swp_social_panel .swp_share\":false},[\"display:block\",\"float:right\",\"float:left\",\"font-size:14px\",\"font-weight:normal\",\"height:30px\",\"line-height:32px\",\"margin:0 0 0 6px\"]],[false,{\".swp_social_panel .swp_share:not(#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\".swp_social_panel .total_shares\":false},[\"border-radius:2px\",\"color:white\",\"cursor:default\",\"display:block\",\"font-size:19px\",\"padding:0 10px\"]],[false,{\".swp_social_panel .total_shares:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\",\"border:none\",\"flex:none\"]],[false,{\".swp_social_panel .total_shares .swp_count\":false},[\"line-height:30px\"]],[false,{\".swp_social_panel .total_shares .swp_label\":false},[\"font-size:10px\",\"vertical-align:middle\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\",\"border:none\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt:before\":false},[\"content:\\\"G\\\"\",\"display:inline-block\",\"font-family:sw-icon-font\",\"margin-top:7px\",\"vertical-align:top\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt.total_sharesalt\":false,\".swp_social_panel .total_shares.total_sharesalt:not(:nth-child(1))\":false},[\"border:none\",\"color:#474b4d\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel .total_shares.total_sharesalt:not(:nth-child(1)):not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\",\"margin-left:0\",\"margin-bottom:10px\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt .swp_count\":false},[\"color:#474b4d\",\"font-size:24px\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt .swp_label\":false},[\"color:#474b4d\",\"letter-spacing:0\",\"min-width:40px\"]],[false,{\".swp_social_panel a .swp_count\":false},[\"font-size:14px\"]],[false,{\".swp_social_panel a .swp_count:not(.swp_hide)\":false},[\"display:inline-block\",\"line-height:32px\",\"margin:0\",\"padding:0 5px\",\"flex:1\"]],[false,{\".swp_social_panel a .swp_count.swp_hide\":false},[\"margin:0 auto\",\"width:auto\"]],[false,{\".swp_social_panel:not(.nc_floater):not(.swp_social_panelSide):not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".swp_social_panel:not(.nc_floater):not(.swp_social_panelSide).swp_shift\":false},[\"padding:0 10px\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide)\":false},[\"transition:opacity .2s ease-in-out\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer\":false},[\"flex:1\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer.swp-emphasize\":false},[\"flex:2\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer:nth-child(1)\":false},[\"margin-left:0\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer:nth-last-child(1)\":false},[\"margin-right:0\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt:before\":false},[\"content:\\\"G\\\"\",\"display:inline-block\",\"font-family:sw-icon-font\",\"margin-top:7px\",\"vertical-align:top\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt .swp_count\":false},[\"display:inline-block\",\"line-height:0\",\"margin-left:8px\",\"margin-top:12px\",\"min-width:45px\",\"position:relative\",\"vertical-align:middle\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt:nth-child(1)\":false},[\"margin-left:0\",\"margin-right:15px\",\"padding-left:0\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt:nth-last-child(1)\":false},[\"margin-right:0\",\"padding-right:0\"]],[false,{\".swp_social_panel span:before:not(#_#_#_#_#_#_#_#_)\":false},[\"content:initial\"]],[false,{\".swp_social_panel .iconFiller\":false},[\"font-size:18px\",\"margin:0 auto\",\"display:block\",\"float:left\",\"height:30px\",\"overflow:hidden\",\"transition:width .1s linear\",\"width:30px\"]],[false,{\".swp_social_panel .sw\":false},[\"float:left\",\"height:30px\",\"line-height:32px\",\"margin:1px 5px 0\",\"width:20px\"]],[false,{\".swp_social_panel .sw:not(#_#_#_#_#_#_#_)\":false},[\"text-shadow:none\"]],[false,{\".swp_social_panel.notMobile .nc_tweetContainer:nth-child(1)\":false},[\"margin-left:0\"]],[false,{\".swp_social_panel:hover .total_shares\":false,\".swp_social_panel.swp_full_color .total_shares\":false,\".swp_social_panel.swp_fade .total_shares\":false,\".swp_social_panel.swp_customFull:hover .total_shares\":false},[\"background:#e08a0f\"]],[false,{\".swp_social_panel.swp_leaf .nc_tweetContainer\":false},[\"border-width:1px\"]],[false,{\".swp_social_panel.swp_leaf .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:15px 0\"]],[false,{\".swp_social_panel.swp_pill .nc_tweetContainer\":false},[\"border-width:1px\"]],[false,{\".swp_social_panel.swp_pill .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:50px\"]],[false,{\".swp_social_panel.swp_shift .nc_tweetContainer:not(.total_shares)\":false},[\"border-width:1px\",\"transform:skew(-25deg)\"]],[false,{\".swp_social_panel.swp_shift .nc_tweetContainer a\":false},[\"transform:skew(25deg)\"]],[false,{\".swp_social_panel.swp_connected:hover .nc_tweetContainer\":false,\".swp_social_panel.swp_connected .nc_tweetContainer\":false,\".swp_social_panel.swp_connected .nc_tweetContainer:hover\":false},[\"border-width:1px\"]],[false,{\".swp_social_panel.swp_connected:hover .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_connected .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_connected .nc_tweetContainer:hover:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\",\"margin:0\"]],[false,{\".swp_social_panel.mobile .iconFiller ~ .swp_count\":false,\".sw-content-locator\":false},[\"display:none\"]],[true,{\"div[class*=custom_color][class^=_wrapper]\":true},[\"display:none\"]],[false,{\"pre.swp_debug_data\":false},[\"white-space:pre-wrap\",\"padding:0 25px\",\"max-width:1000px\",\"margin:0 auto 50px auto\",\"border:3px solid #666\"]],[false,{\".wp-editor-container .swp_twitter:before\":false},[\"color:#429cd6\"]],[false,{\".swp_powered_by\":false},[\"font-family:helvetica,arial,sans-serif\",\"color:black\"]],[false,{\".swp_powered_by span\":false},[\"clear:both\",\"width:100%\",\"display:block\",\"margin:36px 0px -30px 0\"]],[false,{\".swp_powered_by a\":false},[\"color:black\",\"text-decoration:none\"]],[false,{\".swp_powered_by amp-img\":false,\".swp_powered_by amp-anim\":false},[\"max-height:40px\",\"margin-top:30px\"]],[false,{\".sw\":false},[\"display:inline-block\",\"font-size:inherit\",\"-moz-osx-font-smoothing:grayscale\",\"-webkit-font-smoothing:antialiased\",\"font-style:normal\",\"font-weight:normal\",\"text-rendering:auto\",\"transform:translate(0,0)\",\"transform:translate(0,0)\",\"-webkit-transform:translate(0,0)\",\"-moz-transform:translate(0,0)\",\"-ms-transform:translate(0,0)\",\"-o-transform:translate(0,0)\"]],[false,{\".sw:not(#_#_#_#_#_#_#_)\":false},[\"font-family:sw-icon-font\",\"text-transform:none\"]],[false,{\".sw:before:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\"i.swp_blogger_icon:before\":false},[\"content:\\\"c\\\"\"]],[false,{\"i.swp_buffer_icon:before\":false},[\"content:\\\"d\\\"\"]],[false,{\"i.swp_ello_icon:before\":false},[\"content:\\\"h\\\"\"]],[false,{\"i.swp_email_icon:before\":false},[\"content:\\\"i\\\"\"]],[false,{\"i.swp_evernote_icon:before\":false},[\"content:\\\"j\\\"\"]],[false,{\"i.swp_facebook_icon:before\":false},[\"content:\\\"k\\\"\"]],[false,{\"i.swp_flickr_icon:before\":false},[\"content:\\\"l\\\"\"]],[false,{\"i.swp_flipboard_icon:before\":false},[\"content:\\\"m\\\"\"]],[false,{\"i.swp_hacker_news_icon:before\":false},[\"content:\\\"o\\\"\"]],[false,{\"i.swp_instagram_icon:before\":false},[\"content:\\\"q\\\"\"]],[false,{\"i.swp_linkedin_icon:before\":false},[\"content:\\\"s\\\"\"]],[false,{\"i.swp_medium_icon:before\":false},[\"content:\\\"u\\\"\"]],[false,{\"i.swp_mix_icon:before\":false},[\"content:\\\"w\\\"\"]],[false,{\"i.swp_more_icon:before\":false},[\"content:\\\"B\\\"\"]],[false,{\"i.swp_parler_icon:before\":false},[\"content:\\\"0\\\"\"]],[false,{\"i.swp_periscope_icon:before\":false},[\"content:\\\"y\\\"\"]],[false,{\"i.swp_pinterest_icon:before\":false},[\"content:\\\"A\\\"\"]],[false,{\"i.swp_pin_icon:before\":false},[\"content:\\\"z\\\"\"]],[false,{\"i.swp_pocket_icon:before\":false},[\"content:\\\"C\\\"\"]],[false,{\"i.swp_print_icon:before\":false},[\"content:\\\"D\\\"\"]],[false,{\"i.swp_reddit_icon:before\":false},[\"content:\\\"E\\\"\"]],[false,{\"i.swp_share_icon:before\":false},[\"content:\\\"G\\\"\"]],[false,{\"i.swp_social-warfare_icon:before\":false},[\"content:\\\"K\\\"\"]],[false,{\"i.swp_snapchat_icon:before\":false},[\"content:\\\"J\\\"\"]],[false,{\"i.swp_telegram_icon:before\":false},[\"content:\\\"L\\\"\"]],[false,{\"i.swp_tumblr_icon:before\":false},[\"content:\\\"M\\\"\"]],[false,{\"i.swp_twitter_icon:before\":false},[\"content:\\\"N\\\"\"]],[false,{\"i.swp_viber_icon:before\":false},[\"content:\\\"O\\\"\"]],[false,{\"i.swp_vimeo_icon:before\":false},[\"content:\\\"P\\\"\"]],[false,{\"i.swp_vk_icon:before\":false},[\"content:\\\"R\\\"\"]],[false,{\"i.swp_warfare-plugins_icon:before\":false},[\"content:\\\"Z\\\"\"]],[false,{\"i.swp_whatsapp_icon:before\":false},[\"content:\\\"T\\\"\"]],[false,{\"i.swp_xing_icon:before\":false},[\"content:\\\"V\\\"\"]],[false,{\"i.swp_yummly_icon:before\":false},[\"content:\\\"Y\\\"\"]],[false,{\".sw-social-warfare:before\":false},[\"content:\\\"K\\\"\"]],[false,{\".wp-editor-container .sw:before\":false},[\"font-size:18px\",\"line-height:22px\"]],[false,{\".wp-editor-container .sw-social-warfare:before\":false,\".mce-ico.sw-social-warfare:before\":false,\".mce-ico.sw-social-warfare\":false},[\"color:#ee464f\"]],[false,{\".mce-container .sw-social-warfare\":false},[\"color:#ee464f\",\"font-size:20px\",\"margin-right:15px\",\"vertical-align:middle\"]],[false,{\".swp_social_panelSide\":false},[\"transition:all .2s linear\",\"flex-direction:column\",\"height:auto\",\"overflow:visible\",\"z-index:9998\",\"padding:0\"]],[false,{\".swp_social_panelSide:not(#_#_#_#_#_#_#_)\":false},[\"margin:10px 5px\"]],[false,{\".swp_social_panelSide.slide\":false,\".swp_social_panelSide.fade\":false},[\"transition:all .2s linear\",\"position:fixed\"]],[false,{\".swp_social_panelSide.fade\":false},[\"display:none\"]],[false,{\".swp_social_panelSide.fade .swp_float_left\":false},[\"left:5px\"]],[false,{\".swp_social_panelSide.fade .swp_float_right\":false},[\"right:5px\"]],[false,{\".swp_social_panelSide.hideCounts a\":false},[\"text-align:center\"]],[false,{\".swp_social_panelSide.hideCounts .iconFiller\":false},[\"float:none\",\"text-align:left\"]],[false,{\".swp_social_panelSide[class*=swp_side]\":false},[\"height:auto\",\"display:flex\",\"position:fixed\",\"padding:30px 0\"]],[false,{\".swp_social_panelSide.swp_float_right\":false},[\"align-content:flex-end\"]],[false,{\".swp_social_panelSide.swp_side_top\":false},[\"top:15px\"]],[false,{\".swp_social_panelSide.swp_side_bottom\":false},[\"bottom:15px\"]],[false,{\".swp_social_panelSide.swp_default .nc_tweetContainer .sw\":false},[\"line-height:32px\"]],[false,{\".swp_social_panelSide.swp_default .nc_tweetContainer .swp_share\":false},[\"line-height:32px\"]],[false,{\".swp_social_panelSide span.swp_label\":false},[\"margin-top:0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer\":false},[\"transition:all .1s linear\",\"border-radius:3px\",\"clear:both\",\"display:block\",\"font-family:Lato,sans-serif\",\"height:32px\",\"overflow:hidden\",\"padding:0\",\"width:90px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"margin:3px 0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares\":false},[\"background:rgba(0,0,0,0)\",\"font-weight:800\",\"height:55px\",\"margin:0\",\"padding:0\",\"text-align:center\",\"width:90px\",\"order:-100\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares:not(#_#_#_#_#_#_#_)\":false},[\"border:0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares .swp_count\":false},[\"color:#444\",\"display:block\",\"font-family:Lato,sans-serif\",\"height:28px\",\"text-align:center\",\"width:100%\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares .swp_label\":false},[\"color:#444\",\"display:block\",\"font-family:Lato,sans-serif\",\"font-size:50%\",\"position:relative\",\"text-align:center\",\"width:100%\"]],[false,{\".swp_social_panelSide .nc_tweetContainer:not(.total_shares)\":false},[\"line-height:34px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer:hover\":false,\".swp_social_panelSide .nc_tweetContainer:hover .iconFiller\":false,\".swp_social_panelSide .nc_tweetContainer:hover .swp_count\":false},[\"transition:all .1s linear\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .iconFiller\":false},[\"transition:all .1s linear\",\"display:inline-block\",\"height:40px\",\"margin:0 6px\",\"padding:0\",\"vertical-align:middle\",\"width:21px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .swp_count\":false},[\"transition:all .1s linear\",\"display:inline-block\",\"font-size:14px\",\"height:32px\",\"line-height:16px\",\"margin:0\",\"padding:0\",\"overflow:hidden\",\"text-align:right\",\"vertical-align:top\",\"width:0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer a\":false},[\"transition:all .1s linear\",\"cursor:pointer\",\"display:block\",\"font-weight:500\",\"height:36px\",\"margin:0\",\"padding:0\",\"text-decoration:none\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .sw\":false,\".swp_social_panelSide .nc_tweetContainer .swp_share\":false},[\"float:left\",\"line-height:34px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .swp_share\":false},[\"font-size:13px\",\"margin:0\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer\":false},[\"margin-bottom:5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer a\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer a\":false},[\"width:67.5px\",\"position:relative\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer a:not(#_#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer a:not(#_#_#_#_#_#_#_#_)\":false},[\"height:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .total_shares\":false,\".swp_social_panelSide.swp_circles .total_shares\":false},[\"padding:0\"]],[false,{\".swp_social_panelSide.swp_boxed .total_shares:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .total_shares:not(#_#_#_#_#_#_#_)\":false},[\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer span.iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer span.iconFiller\":false},[\"height:40px\",\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer i.sw\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer i.sw\":false},[\"font-size:27px\",\"height:40px\",\"margin:0\",\"padding-top:10px\",\"text-align:center\",\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_share\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) span.swp_share\":false},[\"height:35px\",\"opacity:0\",\"position:absolute\",\"bottom:0\",\"left:0\",\"text-align:center\",\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_count\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) span.swp_count\":false},[\"height:35px\",\"margin:0\",\"padding:0\",\"position:absolute\",\"bottom:0\",\"left:0\",\"text-align:center\",\"transition:padding .1s linear\",\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_hide span.swp_share\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover span.swp_share:not(.swp_hide)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_hide span.swp_share\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):hover span.swp_share:not(.swp_hide)\":false},[\"opacity:1\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover span.swp_count:not(.swp_hide)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):hover span.swp_count:not(.swp_hide)\":false},[\"opacity:0\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_count\":false},[\"padding:0 8px\",\"width:48px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide\":false},[\"padding:0\",\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide .iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide .iconFiller\":false},[\"display:block\",\"float:none\",\"margin:0 auto\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover .iconFiller\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .spaceManWilly\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):hover .iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .spaceManWilly\":false},[\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_count.swp_hide\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer span.swp_hide .iconFiller\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer span.swp_hide .spaceManWilly\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) span.swp_count.swp_hide\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer span.swp_hide .iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer span.swp_hide .spaceManWilly\":false},[\"height:67.5px\",\"opacity:1\"]],[false,{\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) a:not(#_#_#_#_#_#_#_#_)\":false},[\"border-radius:50%\"]],[false,{\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares) .iconFiller\":false},[\"margin-left:2px\",\"width:30px\"]],[false,{\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares)[data-network]:not(.total_shares):hover span.iconFiller\":false,\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares):not(.total_shares) .spaceManWilly\":false},[\"width:90px\"]],[false,{\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares):hover\":false},[\"width:150px\"]],[false,{\".nc_wrapper\":false},[\"background:white\",\"position:fixed\",\"transition:top .5s bottom .5s\",\"width:100%\",\"z-index:99999\"]],[false,{\".nc_wrapper.bottom\":false},[\"bottom:0\",\"left:0\"]],[false,{\".nc_wrapper.top\":false},[\"top:0\",\"left:0\"]],[false,{\".nc_wrapper .swp_social_panel:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:10px\",\"margin-top:10px\"]],[false,{\".nc_floater\":false},[\"margin:10px 0\",\"position:relative\"]],[false,{\".float-position-top-left\":false},[\"transform-origin:top left\"]],[false,{\".float-position-center-left\":false},[\"transform-origin:center left\"]],[false,{\".float-position-bottom-left\":false},[\"transform-origin:bottom left\"]],[false,{\".float-position-top-right\":false},[\"transform-origin:top right\"]],[false,{\".float-position-center-right\":false},[\"transform-origin:center right\"]],[false,{\".float-position-bottom-right\":false},[\"transform-origin:bottom right\"]],[false,{\".sw-tweet-clear\":false},[\"zoom:1\"]],[false,{\".sw-tweet-clear:after\":false},[\"clear:both\",\"content:\\\".\\\"\",\"display:block\",\"height:0\",\"visibility:hidden\"]],[false,{\"a.swp_CTT\":false},[\"cursor:pointer\"]],[false,{\"a.swp_CTT:not(#_#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\"a.swp_CTT .sw-click-to-tweet\":false},[\"display:block\",\"margin:15px 0\",\"padding:15px 30px\",\"position:relative\"]],[false,{\"a.swp_CTT .sw-click-to-tweet:after\":false},[\"clear:both\",\"content:\\\".\\\"\",\"display:block\",\"height:0\",\"line-height:0\",\"visibility:hidden\"]],[false,{\"a.swp_CTT .sw-click-to-tweet .sw-ctt-text\":false},[\"margin:0 0 10px\",\"margin:0\",\"padding:0\",\"padding:0\",\"position:relative\",\"position:relative\",\"word-wrap:break-word\",\"display:block\",\"font-size:24px\",\"font-weight:500\",\"line-height:140%\",\"text-decoration:none\",\"text-transform:none\"]],[false,{\"a.swp_CTT .sw-click-to-tweet .sw-ctt-btn\":false},[\"display:block\",\"float:right\",\"font-family:\\\"Helvetica Neue\\\",Helvetica,Arial,sans-serif\",\"font-size:12px\",\"font-weight:bold\",\"line-height:100%\",\"margin:10px 0 0\",\"padding:3px 5px 3px 3px\",\"position:relative\",\"text-decoration:none\",\"text-transform:uppercase\"]],[false,{\"a.swp_CTT .sw-click-to-tweet i.swp_twitter_icon\":false},[\"float:right\",\"font-size:21px\",\"margin-top:2px\",\"text-transform:none\"]],[false,{\"a.swp_CTT .sw-click-to-tweet i.swp_twitter_icon:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-left:15px\"]],[false,{\"a.swp_CTT.style1 .sw-click-to-tweet\":false},[\"background-color:#fff\",\"border:1px solid #ddd\",\"border-radius:4px\"]],[false,{\"a.swp_CTT.style1 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#1da1f2\"]],[false,{\"a.swp_CTT.style1 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style1 .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#999\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style1:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style1:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#666\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style2 .sw-click-to-tweet\":false},[\"background-color:#fff\",\"border:4px double #ddd\",\"border-radius:0\"]],[false,{\"a.swp_CTT.style2 .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#1da1f2\"]],[false,{\"a.swp_CTT.style2 .sw-click-to-tweet .sw-ctt-text\":false},[\"color:#666\",\"font-style:italic\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style2:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style2:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#666\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style3 .sw-click-to-tweet\":false},[\"background-color:#1da1f2\",\"border:none\",\"border-left:10px solid #15202b\",\"border-radius:0\",\"padding-right:20px\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style3 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style3 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style3 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style3 .sw-click-to-tweet .sw-ctt-text\":false},[\"font-style:italic\"]],[false,{\"a.swp_CTT.style3:hover .sw-click-to-tweet\":false},[\"border-left:10px solid #15202b\",\"padding-right:20px\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style3:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style3:hover .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style3:hover .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style4 .sw-click-to-tweet\":false},[\"background-color:#333\",\"border-left:10px solid #c33\",\"border-radius:0\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style4 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style4 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style4 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style4:hover .sw-click-to-tweet\":false},[\"border-left:10px solid #3c87b2\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style4:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style4:hover .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style4:hover .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style5 .sw-click-to-tweet\":false},[\"background-color:#30394f\",\"border-left:10px solid #d34250\",\"border-radius:0\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style5 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style5 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style5 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style5:hover .sw-click-to-tweet\":false},[\"background-color:#d34250\",\"border-left:10px solid #30394f\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style5:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style5:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style6 .sw-click-to-tweet\":false},[\"background-color:#eee\",\"border-left:10px solid #d34250\",\"border-radius:0\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style6 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style6 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style6 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#30394f\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style6:hover .sw-click-to-tweet\":false},[\"background-color:#ced3dc\",\"border-left:10px solid #d34250\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style6:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style6:hover .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style6:hover .sw-click-to-tweet i.swp_twitter\":false},[\"color:#2a2d34\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style7 .sw-click-to-tweet\":false},[\"transition:all .2s linear\",\"background:#f9f9f9\",\"color:#1da1f2\",\"border-radius:10px\",\"transform:skewX(-15deg)\",\"border:7px dashed #e5e5e5\"]],[false,{\"a.swp_CTT.style7 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style7 .sw-click-to-tweet .sw-ctt-btn\":false},[\"transition:all .2s linear\",\"transform:skewX(15deg)\"]],[false,{\"a.swp_CTT.style7:hover .sw-click-to-tweet\":false},[\"transition:all .2s linear\",\"background:#fff\",\"border-color:#ddd\",\"transform:skewX(-10deg) scale(1.02)\"]],[false,{\"a.swp_CTT.style7:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style7:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"transition:all .2s linear\",\"transform:skewX(10deg)\"]],[false,{\".swfw-follow-container\":false},[\"display:flex\",\"position:relative\"]],[false,{\".swfw-follow-container .swfw-container-message\":false},[\"font-weight:bold\"]],[false,{\".swfw-follow-container.swfw_square_container\":false},[\"flex-flow:row wrap\"]],[false,{\".swfw-follow-container.swfw_buttons_container\":false},[\"flex-flow:column nowrap\",\"justify-content:flex-start\",\"align-items:space-between\"]],[false,{\".swfw-follow-container.swfw_block_container\":false},[\"flex-flow:column nowrap\",\"justify-content:flex-start\",\"align-items:flex-start\"]],[false,{\".swfw-follow-container a\":false},[\"text-decoration:none\"]],[false,{\"div.swp-blogger\":false},[\"background:#ff5722\",\"border-color:#ee3900\"]],[false,{\"div.swp-blogger a\":false},[\"color:#ff5722\"]],[false,{\"div.swp-blogger a:hover\":false},[\"background:#ee3900\",\"color:#fff\"]],[false,{\"div.swp-buffer\":false},[\"background:#323b43\",\"border-color:#1c2126\"]],[false,{\"div.swp-buffer a\":false},[\"color:#323b43\"]],[false,{\"div.swp-buffer a:hover\":false},[\"background:#1c2126\",\"color:#fff\"]],[false,{\"div.swp-ello\":false},[\"background:#000\",\"border-color:#000\"]],[false,{\"div.swp-ello a\":false},[\"color:#000\"]],[false,{\"div.swp-ello a:hover\":false},[\"background:#000\",\"color:#fff\"]],[false,{\"div.swp-email\":false},[\"background:#6bcce9\",\"border-color:#3fbde2\"]],[false,{\"div.swp-email a\":false},[\"color:#6bcce9\"]],[false,{\"div.swp-email a:hover\":false},[\"background:#3fbde2\",\"color:#fff\"]],[false,{\"div.swp-evernote\":false},[\"background:#2dbe60\",\"border-color:#23954b\"]],[false,{\"div.swp-evernote a\":false},[\"color:#2dbe60\"]],[false,{\"div.swp-evernote a:hover\":false},[\"background:#23954b\",\"color:#fff\"]],[false,{\"div.swp-facebook\":false},[\"background:#1877f2\",\"border-color:#0b5fcc\"]],[false,{\"div.swp-facebook a\":false},[\"color:#1877f2\"]],[false,{\"div.swp-facebook a:hover\":false},[\"background:#0b5fcc\",\"color:#fff\"]],[false,{\"div.swp-flickr\":false},[\"background:#ff0084\",\"border-color:#cc006a\"]],[false,{\"div.swp-flickr a\":false},[\"color:#ff0084\"]],[false,{\"div.swp-flickr a:hover\":false},[\"background:#cc006a\",\"color:#fff\"]],[false,{\"div.swp-flipboard\":false},[\"background:#bf2626\",\"border-color:#941e1e\"]],[false,{\"div.swp-flipboard a\":false},[\"color:#bf2626\"]],[false,{\"div.swp-flipboard a:hover\":false},[\"background:#941e1e\",\"color:#fff\"]],[false,{\"div.swp-hacker_news\":false},[\"background:#d85623\",\"border-color:#ac451c\"]],[false,{\"div.swp-hacker_news a\":false},[\"color:#d85623\"]],[false,{\"div.swp-hacker_news a:hover\":false},[\"background:#ac451c\",\"color:#fff\"]],[false,{\"div.swp-instagram\":false},[\"background:#ea2454\",\"border-color:#c8133f\"]],[false,{\"div.swp-instagram a\":false},[\"color:#ea2454\"]],[false,{\"div.swp-instagram a:hover\":false},[\"background:#c8133f\",\"color:#fff\"]],[false,{\"div.swp-linkedin\":false},[\"background:#2767b1\",\"border-color:#1e4f87\"]],[false,{\"div.swp-linkedin a\":false},[\"color:#2767b1\"]],[false,{\"div.swp-linkedin a:hover\":false},[\"background:#1e4f87\",\"color:#fff\"]],[false,{\"div.swp-medium\":false},[\"background:#00ab6c\",\"border-color:#00784c\"]],[false,{\"div.swp-medium a\":false},[\"color:#00ab6c\"]],[false,{\"div.swp-medium a:hover\":false},[\"background:#00784c\",\"color:#fff\"]],[false,{\"div.swp-mix\":false},[\"background:#f4812c\",\"border-color:#e1660c\"]],[false,{\"div.swp-mix a\":false},[\"color:#f4812c\"]],[false,{\"div.swp-mix a:hover\":false},[\"background:#e1660c\",\"color:#fff\"]],[false,{\"div.swp-more\":false},[\"background:#ee464f\",\"border-color:#ea1723\"]],[false,{\"div.swp-more a\":false},[\"color:#ee464f\"]],[false,{\"div.swp-more a:hover\":false},[\"background:#ea1723\",\"color:#fff\"]],[false,{\"div.swp-parler\":false},[\"background:#be1e2c\",\"border-color:#921722\"]],[false,{\"div.swp-parler a\":false},[\"color:#be1e2c\"]],[false,{\"div.swp-parler a:hover\":false},[\"background:#921722\",\"color:#fff\"]],[false,{\"div.swp-periscope\":false},[\"background:#3aa4c6\",\"border-color:#2e849f\"]],[false,{\"div.swp-periscope a\":false},[\"color:#3aa4c6\"]],[false,{\"div.swp-periscope a:hover\":false},[\"background:#2e849f\",\"color:#fff\"]],[false,{\"div.swp-pinterest\":false},[\"background:#e60023\",\"border-color:#b3001b\"]],[false,{\"div.swp-pinterest a\":false},[\"color:#e60023\"]],[false,{\"div.swp-pinterest a:hover\":false},[\"background:#b3001b\",\"color:#fff\"]],[false,{\"div.swp-pocket\":false},[\"background:#ef4056\",\"border-color:#e9132e\"]],[false,{\"div.swp-pocket a\":false},[\"color:#ef4056\"]],[false,{\"div.swp-pocket a:hover\":false},[\"background:#e9132e\",\"color:#fff\"]],[false,{\"div.swp-print\":false},[\"background:#777\",\"border-color:#5e5e5e\"]],[false,{\"div.swp-print a\":false},[\"color:#777\"]],[false,{\"div.swp-print a:hover\":false},[\"background:#5e5e5e\",\"color:#fff\"]],[false,{\"div.swp-reddit\":false},[\"background:#f04b23\",\"border-color:#d2340e\"]],[false,{\"div.swp-reddit a\":false},[\"color:#f04b23\"]],[false,{\"div.swp-reddit a:hover\":false},[\"background:#d2340e\",\"color:#fff\"]],[false,{\"div.swp-snapchat\":false},[\"background:#fffc00\",\"border-color:#ccca00\"]],[false,{\"div.swp-snapchat a\":false},[\"color:#fffc00\"]],[false,{\"div.swp-snapchat a:hover\":false},[\"background:#ccca00\",\"color:#fff\"]],[false,{\"div.swp-telegram\":false},[\"background:#08c\",\"border-color:#069\"]],[false,{\"div.swp-telegram a\":false},[\"color:#08c\"]],[false,{\"div.swp-telegram a:hover\":false},[\"background:#069\",\"color:#fff\"]],[false,{\"div.swp-twitter\":false},[\"background:#1da1f2\",\"border-color:#0c85d0\"]],[false,{\"div.swp-twitter a\":false},[\"color:#1da1f2\"]],[false,{\"div.swp-twitter a:hover\":false},[\"background:#0c85d0\",\"color:#fff\"]],[false,{\"div.swp-tumblr\":false},[\"background:#39475d\",\"border-color:#262f3d\"]],[false,{\"div.swp-tumblr a\":false},[\"color:#39475d\"]],[false,{\"div.swp-tumblr a:hover\":false},[\"background:#262f3d\",\"color:#fff\"]],[false,{\"div.swp-vimeo\":false},[\"background:#162221\",\"border-color:#020303\"]],[false,{\"div.swp-vimeo a\":false},[\"color:#162221\"]],[false,{\"div.swp-vimeo a:hover\":false},[\"background:#020303\",\"color:#fff\"]],[false,{\"div.swp-viber\":false},[\"background:#8f5db7\",\"border-color:#75459c\"]],[false,{\"div.swp-viber a\":false},[\"color:#8f5db7\"]],[false,{\"div.swp-viber a:hover\":false},[\"background:#75459c\",\"color:#fff\"]],[false,{\"div.swp-vk\":false},[\"background:#4a76a8\",\"border-color:#3a5d85\"]],[false,{\"div.swp-vk a\":false},[\"color:#4a76a8\"]],[false,{\"div.swp-vk a:hover\":false},[\"background:#3a5d85\",\"color:#fff\"]],[false,{\"div.swp-whatsapp\":false},[\"background:#71c169\",\"border-color:#52af48\"]],[false,{\"div.swp-whatsapp a\":false},[\"color:#71c169\"]],[false,{\"div.swp-whatsapp a:hover\":false},[\"background:#52af48\",\"color:#fff\"]],[false,{\"div.swp-xing\":false},[\"background:#026466\",\"border-color:#013334\"]],[false,{\"div.swp-xing a\":false},[\"color:#026466\"]],[false,{\"div.swp-xing a:hover\":false},[\"background:#013334\",\"color:#fff\"]],[false,{\"div.swp-yummly\":false},[\"background:#e26426\",\"border-color:#bc4f19\"]],[false,{\"div.swp-yummly a\":false},[\"color:#e26426\"]],[false,{\"div.swp-yummly a:hover\":false},[\"background:#bc4f19\",\"color:#fff\"]],[false,{\".swfw-follow-button\":false,\".swfw_square_button\":false,\".swfw_buttons_button\":false,\".swfw_block_button\":false,\".swfw-follow-button.swfw_leaf_button\":false,\".swfw-follow-button.swfw_pill_button\":false,\".swfw-follow-button.swfw_shift_button\":false},[\"align-items:center\",\"border-radius:8px\",\"display:flex\",\"color:white\",\"font-family:\\\"Helvetica\\\",sans-serif\",\"font-size:initial\",\"justify-content:space-between\",\"line-height:1\",\"margin-bottom:10px\",\"padding:15px 5%\",\"width:90%\"]],[false,{\".swfw-follow-button.swp-snapchat\":false,\".swp-snapchat.swfw_square_button\":false,\".swp-snapchat.swfw_buttons_button\":false,\".swp-snapchat.swfw_block_button\":false,\".swfw-follow-button.swp-snapchat a\":false,\".swp-snapchat.swfw_square_button a\":false,\".swp-snapchat.swfw_buttons_button a\":false,\".swp-snapchat.swfw_block_button a\":false},[\"color:black\"]],[false,{\".swfw-follow-button a\":false,\".swfw_square_button a\":false,\".swfw_buttons_button a\":false,\".swfw_block_button a\":false,\".swfw-follow-button.swfw_leaf_button a\":false,\".swfw-follow-button.swfw_pill_button a\":false,\".swfw-follow-button.swfw_shift_button a\":false},[\"background:#fff\",\"border-radius:4px\",\"transition:all .2s ease-in-out\"]],[false,{\".swfw-follow-button a :hover\":false,\".swfw_square_button a :hover\":false,\".swfw_buttons_button a :hover\":false,\".swfw_block_button a :hover\":false},[\"color:white\"]],[false,{\".swfw-follow-button a :hover.swp-snapchat\":false,\".swfw_square_button a :hover.swp-snapchat\":false,\".swfw_buttons_button a :hover.swp-snapchat\":false,\".swfw_block_button a :hover.swp-snapchat\":false},[\"color:black\"]],[false,{\".swfw-follow-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_square_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_block_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_leaf_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_pill_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_shift_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw-follow-button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw-follow-button .swfw-count:not(#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-count:not(#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-count:not(#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-count:not(#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\".swfw-follow-button .swfw-network-icon i\":false,\".swfw_square_button .swfw-network-icon i\":false,\".swfw_buttons_button .swfw-network-icon i\":false,\".swfw_block_button .swfw-network-icon i\":false},[\"width:32px\",\"height:32px\",\"border-radius:100px\",\"font-size:24px\",\"line-height:32px\"]],[false,{\".swfw-follow-button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\".swfw_square_button\":false},[\"width:60px\",\"height:60px\",\"position:relative\",\"display:flex\",\"flex-flow:column nowrap\",\"align-items:center\",\"text-align:center\",\"margin:5px\",\"padding:0\",\"justify-content:center\",\"border-radius:4px\"]],[false,{\".swfw_square_button .swfw-network-icon\":false},[\"margin-top:-12px\"]],[false,{\".swfw_square_button .swfw-text\":false},[\"width:100%\"]],[false,{\".swfw_square_button .swfw-cta\":false,\".swfw_square_button .swfw-count\":false},[\"display:block\",\"width:100%\",\"position:absolute\"]],[false,{\".swfw_square_button .swfw-count\":false},[\"opacity:1\",\"transition:opacity 120ms 0\",\"font-size:12px\"]],[false,{\".swfw_square_button .swfw-cta\":false},[\"opacity:0\",\"transition:opacity 120ms 0\",\"font-size:12px\"]],[false,{\".swfw_square_button:hover .swfw-count\":false},[\"opacity:0\",\"transition:opacity 120ms 120ms\"]],[false,{\".swfw_square_button:hover .swfw-cta\":false},[\"opacity:1\",\"transition:opacity 120ms 120ms\"]],[false,{\".swfw_buttons_button\":false},[\"display:flex\",\"flex-flow:row nowrap\",\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\",\"margin:10px 5px\",\"border-radius:4px\",\"padding:5px 15px\",\"color:white\"]],[false,{\".swfw_buttons_button .swfw-network-icon\":false},[\"padding:0\",\"font-size:32px\"]],[false,{\".swfw_buttons_button .swfw-text\":false},[\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\",\"margin:0 10px\",\"transition:margin 300ms\",\"display:flex\",\"justify-content:center\",\"line-height:32px\",\"color:white\"]],[false,{\".swfw_buttons_button .swfw-text .swfw-cta\":false,\".swfw_buttons_button .swfw-text .swfw-count\":false},[\"display:inline\",\"position:relative\",\"transition:all 300ms\"]],[false,{\".swfw_buttons_button .swfw-text .swfw-cta\":false},[\"width:0\",\"overflow-x:hidden\",\"position:absolute\",\"color:transparent\",\"margin-right:0\",\"font-weight:normal\"]],[false,{\".swfw_buttons_button .swfw-text:hover .swfw-cta\":false},[\"color:white\"]],[false,{\".swfw_buttons_button.swp-snapchat .swfw-text\":false},[\"color:black\"]],[false,{\".swfw_buttons_button.swp-snapchat .swfw-text:hover .swfw-cta\":false},[\"color:black\"]],[false,{\".swfw_buttons_button:hover .swfw-text\":false},[\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\"]],[false,{\".swfw_buttons_button:hover .swfw-text .swfw-cta\":false},[\"width:-moz-min-content\",\"width:-webkit-min-content\",\"width:min-content\",\"overflow-x:visible\",\"position:relative\",\"margin-right:10px\",\"color:white\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_pill_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_shift_button .swfw-network-icon\":false},[\"margin-left:10px\",\"flex:1\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-text\":false,\".swfw-follow-button.swfw_pill_button .swfw-text\":false,\".swfw-follow-button.swfw_shift_button .swfw-text\":false},[\"flex:2\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button\":false},[\"flex:1\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a\":false},[\"padding:none\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a div\":false},[\"padding:10px 30px\",\"background:white\",\"border-radius:2px\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a:hover div\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a:hover div\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a:hover div\":false},[\"background:rgba(33,33,33,.3)\"]],[false,{\".swfw_block_button\":false,\".swfw-follow-button.swfw_leaf_button\":false,\".swfw-follow-button.swfw_pill_button\":false,\".swfw-follow-button.swfw_shift_button\":false},[\"flex-flow:row nowrap\",\"align-items:center\",\"justify-content:space-between\",\"cursor:initial\",\"position:relative\"]],[false,{\".swfw_block_button>*\":false,\".swfw-follow-button.swfw_leaf_button>*\":false,\".swfw-follow-button.swfw_pill_button>*\":false,\".swfw-follow-button.swfw_shift_button>*\":false},[\"width:-moz-min-content\",\"width:-webkit-min-content\",\"width:min-content\"]],[false,{\".swfw_block_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_leaf_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_pill_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_shift_button .swfw-network-icon\":false},[\"margin-left:10px\"]],[false,{\".swfw_block_button .swfw-text\":false,\".swfw-follow-button.swfw_leaf_button .swfw-text\":false,\".swfw-follow-button.swfw_pill_button .swfw-text\":false,\".swfw-follow-button.swfw_shift_button .swfw-text\":false},[\"font-size:12px\",\"line-height:24px\",\"left:calc(10px + 60px)\",\"color:white\",\"text-align:center\"]],[false,{\".swfw_block_button .swfw-text .swfw-count\":false,\".swfw-follow-button.swfw_leaf_button .swfw-text .swfw-count\":false,\".swfw-follow-button.swfw_pill_button .swfw-text .swfw-count\":false,\".swfw-follow-button.swfw_shift_button .swfw-text .swfw-count\":false},[\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\",\"font-size:15px\"]],[false,{\".swfw_block_button.swp-snapchat .swfw-text\":false,\".swp-snapchat.swfw-follow-button.swfw_leaf_button .swfw-text\":false,\".swp-snapchat.swfw-follow-button.swfw_pill_button .swfw-text\":false,\".swp-snapchat.swfw-follow-button.swfw_shift_button .swfw-text\":false},[\"color:black\"]],[false,{\".swfw_block_button .swfw-cta\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta\":false},[\"border-radius:3px\"]],[false,{\".swfw_block_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button\":false},[\"font-size:24px\",\"padding:5px\",\"line-height:24px\",\"border-radius:4px\",\"text-align:center\",\"right:0\"]],[false,{\".swfw_block_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\".swfw_block_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a div\":false},[\"font-size:14px\",\"min-width:100px\",\"border-radius:3px\",\"background:white\",\"padding:5px 15px\"]],[false,{\".swfw_block_button .swfw-cta-button a div:hover\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a div:hover\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a div:hover\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a div:hover\":false},[\"transition:opacity 200ms\",\"background:rgba(30,30,30,.3)\",\"cursor:pointer\",\"color:white\"]],[false,{\".swfw_leaf_button.swfw_square_button\":false,\".swfw_leaf_button.swfw_buttons_button\":false,\".swfw_leaf_button.swfw_block_button\":false,\".swfw_leaf_button.swfw-follow-button\":false},[\"border-top-left-radius:21px\",\"border-top-right-radius:3px\",\"border-bottom-left-radius:3px\",\"border-bottom-right-radius:21px\"]],[false,{\".swfw_leaf_button.swfw_square_button .swfw-network-icon\":false,\".swfw_leaf_button.swfw_buttons_button .swfw-network-icon\":false,\".swfw_leaf_button.swfw_block_button .swfw-network-icon\":false,\".swfw_leaf_button.swfw-follow-button .swfw-network-icon\":false},[\"margin-left:10px\"]],[false,{\".swfw_pill_button.swfw_square_button\":false,\".swfw_pill_button.swfw_buttons_button\":false,\".swfw_pill_button.swfw_block_button\":false,\".swfw_pill_button.swfw-follow-button\":false},[\"border-radius:50px\",\"padding:20px\"]],[false,{\".swfw_pill_button.swfw_square_button .swfw-network-icon\":false,\".swfw_pill_button.swfw_buttons_button .swfw-network-icon\":false,\".swfw_pill_button.swfw_block_button .swfw-network-icon\":false,\".swfw_pill_button.swfw-follow-button .swfw-network-icon\":false},[\"margin-left:10px\"]],[false,{\".swfw_pill_button.swfw_square_button .swfw-cta-button a\":false,\".swfw_pill_button.swfw_buttons_button .swfw-cta-button a\":false,\".swfw_pill_button.swfw_block_button .swfw-cta-button a\":false,\".swfw_pill_button.swfw-follow-button .swfw-cta-button a\":false},[\"border-radius:50px\"]],[false,{\".swfw_pill_button.swfw_square_button .swfw-cta-button a div\":false,\".swfw_pill_button.swfw_buttons_button .swfw-cta-button a div\":false,\".swfw_pill_button.swfw_block_button .swfw-cta-button a div\":false,\".swfw_pill_button.swfw-follow-button .swfw-cta-button a div\":false},[\"border-radius:50px\"]],[false,{\".swfw_shift_button.swfw_square_button\":false,\".swfw_shift_button.swfw_buttons_button\":false,\".swfw_shift_button.swfw_block_button\":false,\".swfw_shift_button.swfw-follow-button\":false},[\"transform:skew(-20deg)\",\"-moz-transform:skew(-20deg)\",\"-o-transform:skew(-20deg)\",\"-webkit-transform:skew(-20deg)\"]],[false,{\".swfw_shift_button.swfw_square_button div\":false,\".swfw_shift_button.swfw_buttons_button div\":false,\".swfw_shift_button.swfw_block_button div\":false,\".swfw_shift_button.swfw-follow-button div\":false},[\"transform:skew(20deg)\",\"-moz-transform:skew(20deg)\",\"-o-transform:skew(20deg)\",\"-webkit-transform:skew(20deg)\",\"align-items:center\",\"display:flex\",\"justify-content:space-around\",\"width:100%\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button\":false},[\"transform:skew(0deg)\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a\":false},[\"padding:none\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a:hover\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a:hover\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a:hover\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a:hover\":false},[\"background:rgba(33,33,33,.3)\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a div\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a div\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a div\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a div\":false},[\"background:none\",\"transform:skew(20deg)\",\"padding:10px 30px\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a div:hover\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a div:hover\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a div:hover\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a div:hover\":false},[\"background:none\"]],[false,{\".swfw-revoke-button\":false,\".swfw-authorization-button\":false},[\"width:70%\",\"text-align:center\",\"max-width:200px\"]],[false,{\".swfw-input-field\":false,\".swfw-follow-field\":false},[\"display:flex\",\"flex-flow:row nowrap\",\"justify-content:space-between\",\"align-items:center\",\"height:50px\",\"margin:15px auto\"]],[false,{\".swfw-follow-field.swfw-inactive a\":false},[\"cursor:initial\"]],[false,{\".swfw-follow-field.swfw-active a\":false},[\"cursor:pointer\"]],[false,{\".swfw-follow-field-icon\":false},[\"color:black\",\"width:40px\",\"font-size:40px\",\"line-height:42px\",\"font-weight:bold\",\"transition:all 200ms\",\"border-radius:3px\",\"height:40px\",\"text-align:center\",\"padding:2px\"]],[false,{\".swfw-widget label\":false},[\"font-size:14px\",\"width:100px\"]],[false,{\".swfw-follow-field label\":false},[\"text-align:right\"]],[false,{\".swfw-input-field input\":false,\".swfw-input-field select\":false,\".swfw-follow-field input\":false},[\"padding:10px\",\"width:50%\",\"height:100%\",\"border-radius:4px\"]],[false,{\".swfw-follow-field.swfw-inactive div\":false},[\"background:white\"]],[false,{\".swfw-follow-field.swfw-active div\":false},[\"color:white\"]],[false,{\"a.swp-hover-pin-button\":false},[\"background:#cd2029\",\"border:1px solid #aa1b29\",\"border:0\",\"border-bottom:none\",\"border-radius:3px\",\"box-shadow:none\",\"color:#fff\",\"font-family:Lato,sans-serif\",\"font-size:15px\",\"height:32px\",\"line-height:32px\",\"padding:0 20px\",\"position:absolute\",\"position:absolute\",\"text-decoration:none\",\"text-align:center\",\"transition:opacity .5s\",\"z-index:3200\",\"cursor:pointer\"]],[false,{\"a.swp-hover-pin-button:not(#_#_#_#_#_#_#_#_)\":false},[\"width:120px\"]],[false,{\"a.swp-hover-pin-button::before\":false},[\"content:\\\"A\\\"\",\"color:#fff\",\"float:left\",\"font-family:sw-icon-font\",\"font-size:20px\",\"font-weight:400\",\"line-height:36px\",\"margin-left:-5px\",\"margin-right:10px\"]],[false,{\"a.swp-hover-pin-button:hover::before\":false},[\"content:\\\"z\\\"\"]],[false,{\"a.swp-hover-pin-button:hover\":false,\"a.swp-hover-pin-button:focus\":false},[\"background:#aa1b29\",\"color:#fff\",\"text-decoration:none\"]],[false,{\".swp-pinterest-image-top\":false},[\"margin-bottom:20px\"]],[false,{\".swp-pinterest-image-bottom\":false},[\"margin-top:20px\"]],[false,{\".swp_pop_thumb\":false},[\"border-radius:3px\",\"float:left\",\"height:100px\",\"margin:5px 25px 5px 0\",\"width:100px\"]],[false,{\".swp_popular_post\":false},[\"clear:both\"]],[false,{\".swp_popular_post a.swp_popularity\":false},[\"border:none\",\"display:block\",\"line-height:1.5\",\"margin:20px 0\"]],[false,{\".swp_clearfix:after\":false},[\"clear:both\",\"content:\\\" \\\"\",\"display:block\",\"height:0\",\"visibility:hidden\"]],[false,{\"span.swp_pop_count\":false},[\"display:block\",\"font-size:70%\"]],[false,{\".swp_widget_box\":false},[\"border-radius:3px\"]],[false,{\".swp_hidden_pin_image\":false},[\"height:0\",\"opacity:0\",\"position:absolute\",\"top:0\",\"width:0\",\"z-index:-10\"]],[false,{\".swp-content-locator:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"margin:0\"]],[false,{\".swp-lightbox-wrapper\":false},[\"width:100%\",\"height:100%\",\"position:fixed\",\"top:0\",\"background:#fff\",\"z-index:999999\"]],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner\":false},[\"width:50%\",\"left:25%\",\"position:relative\",\"text-align:center\",\"top:10%\",\"background:#fff\",\"padding:35px\",\"border-radius:10px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner\":false},[\"width:80%\",\"left:10%\"]],[false,\"}\"],[false,\"@media (max-width: 450px){\"],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner\":false},[\"width:90%\",\"left:5%\"]],[false,\"}\"],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner h5\":false},[\"font-family:Lato,sans-serif\",\"font-size:25px\",\"margin-bottom:40px\",\"text-align:center\"]],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner .swp-lightbox-close\":false},[\"font-weight:bold\",\"height:20px\",\"width:20px\",\"cursor:pointer\",\"color:#30394f\",\"text-align:right\",\"transform:rotate(45deg)\",\"display:inline-block\",\"float:right\",\"margin:-30px\",\"font-size:25px\"]],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner .swp-lightbox-close:before\":false},[\"content:\\\"+\\\"\",\"font-family:arial\"]],[false,\"@media print{\"],[false,{\".swp-lightbox-wrapper\":false},[\"display:none\"]],[false,\"}\"],[false,{\".swp-lightbox-wrapper .swp_pinterest_icon.top_icon\":false,\".swp-lightbox-wrapper .swp_share_icon\":false},[\"color:#cd2029\",\"font-size:45px\",\"margin:0\",\"padding:0\",\"line-height:0\"]],[false,{\".swp-lightbox-wrapper .swp_share_icon\":false},[\"color:#000\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .swp-lightbox-inner\":false},[\"width:70%\",\"left:15%\",\"height:80%\",\"overflow-y:auto\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .swp-lightbox-inner h5\":false},[\"margin-bottom:40px\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper\":false},[\"text-align:center\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper\":false},[\"display:inline-block\",\"width:24%\",\"margin-right:1%\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper amp-img\":false,\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper amp-anim\":false},[\"border-radius:3px\",\"max-width:100%\",\"height:auto\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper .swp-hover-pin-button\":false},[\"position:initial\",\"display:block\",\"margin-top:10px\",\"margin-bottom:40px\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper .swp-hover-pin-button:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":8320,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"__EPYT__style-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/styles\\/ytprefs.min.css?ver=14.1.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"style\",\"handle\":\"__EPYT__style\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"__EPYT__style\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"9c3e04efd2df5c19054e5b96b851efb8\",\"parse_time\":0.0915369987487793,\"shake_time\":0.046074867248535156,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".epyt-debug\":false},[\"cursor:pointer\",\"text-align:left\",\"background-color:#ddd\",\"color:#000\"]],[false,{\"amp-iframe.__youtube_prefs__\":false},[\"border-width:0\"]],[false,{\".epyt-gallery\":false},[\"text-align:center\"]],[false,{\".epyt-gallery .epyt-figure\":false},[\"margin-inline:0\",\"margin-block:0\"]],[false,{\".epyt-gallery amp-iframe\":false},[\"margin-bottom:0\"]],[false,{\".epyt-gallery.epyt-lb amp-iframe\":false},[\"display:none\"]],[false,{\".epyt-gallery.epyt-lb amp-iframe:not(#_#_#_#_#_#_#_#_)\":false},[\"height:0\"]],[false,{\".epyt-gallery-list\":false},[\"margin:0 -8px 0 -8px\",\"position:relative\",\"transition:opacity ease-out .3s\",\"display:block\"]],[false,{\".epyt-gallery-list .epyt-gallery-thumb\":false},[\"box-sizing:border-box\"]],[false,{\".epyt-gallery-list p\":false},[\"display:none\"]],[false,{\".epyt-gallery-clear\":false},[\"clear:both\"]],[false,{\".epyt-gallery-list.epyt-loading\":false},[\"opacity:.5\",\"transition:opacity ease-out .3s\"]],[false,{\".epyt-gallery-thumb\":false},[\"position:relative\",\"box-sizing:border-box\",\"overflow-y:hidden\",\"cursor:pointer\",\"opacity:1\",\"float:left\",\"padding:0 8px 10px 8px\",\"height:auto\"]],[false,{\".epyt-gallery-thumb:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".epyt-gallery-thumb.hover\":false},[\"position:relative\",\"opacity:1\",\"transition:opacity ease-out .3s\",\"height:auto\"]],[false,{\".epyt-gallery-img-box\":false},[\"width:100%\"]],[false,{\".epyt-gallery-img\":false},[\"height:0\",\"width:100%\",\"position:relative\"]],[false,{\".epyt-gallery-img:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:56.25%\",\"overflow:hidden\",\"background-size:cover\",\"background-position:center\"]],[false,{\".epyt-gallery-playhover\":false},[\"opacity:0\",\"position:absolute\",\"top:-10px\",\"left:0\",\"width:100%\",\"height:100%\",\"vertical-align:middle\",\"text-align:center\",\"transition:opacity ease-out .3s\"]],[false,{\".epyt-gallery-thumb.hover .epyt-gallery-playhover\":false,\".epyt-gallery-thumb.epyt-current-video .epyt-gallery-playhover\":false},[\"opacity:1\",\"top:0\",\"transition:all ease-out .3s\"]],[false,{\".epyt-gallery-thumb .epyt-gallery-playcrutch\":false},[\"display:inline-block\",\"height:100%\",\"vertical-align:middle\",\"width:0\"]],[false,{\".epyt-gallery-playhover .epyt-play-img\":false},[\"width:auto\",\"border:0\",\"box-sizing:border-box\"]],[false,{\".epyt-gallery-playhover .epyt-play-img:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\",\"max-width:15%\",\"padding:0\",\"margin:0\",\"min-width:30px\",\"vertical-align:middle\",\"display:inline-block\"]],[false,{\".epyt-gallery-title\":false},[\"font-size:80%\",\"line-height:120%\",\"padding:10px\"]],[false,{\".epyt-gallery-notitle\":false},[\"padding:4px\"]],[false,{\".epyt-gallery-notitle span\":false},[\"display:none\"]],[false,{\".epyt-gallery-rowtitle\":false},[\"text-align:center\",\"width:100%\",\"position:absolute\",\"left:0\",\"top:100%\",\"opacity:0\",\"z-index:10\",\"overflow-x:hidden\",\"text-overflow:ellipsis\",\"white-space:nowrap\"]],[false,{\".epyt-gallery-rowtitle.hover\":false},[\"opacity:1\",\"transition:opacity linear .2s\"]],[false,{\".epyt-gallery-rowbreak\":false},[\"clear:both\"]],[false,{\".epyt-pagination\":false},[\"clear:both\",\"text-align:center\",\"padding:10px 8px 10px 8px\"]],[false,{\".epyt-pagination.epyt-hide-pagination *:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".epyt-pagination>div\":false,\".epyt-pagenumbers>div\":false},[\"display:inline-block\",\"padding:0 2px 0 2px\",\"vertical-align:middle\"]],[false,{\".epyt-pagination .epyt-pagebutton\":false},[\"cursor:pointer\",\"display:inline-block\",\"padding:0 10px 0 10px\"]],[false,{\".epyt-pagebutton>div\":false},[\"display:inline\"]],[false,{\".epyt-pagination .epyt-loader\":false},[\"display:none\"]],[false,{\".epyt-gallery-list.epyt-loading .epyt-pagination .epyt-loader\":false},[\"display:inline-block\"]],[false,{\"body .lity-container\":false},[\"width:100%\",\"max-width:964px\"]],[false,{\".epyt-curtain .lity-opened amp-iframe\":false},[\"opacity:0\",\"transition:opacity .3s linear .5s\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-1 .epyt-gallery-thumb\":false},[\"width:100%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-2 .epyt-gallery-thumb\":false},[\"width:50%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-3 .epyt-gallery-thumb\":false},[\"width:33.333%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-4 .epyt-gallery-thumb\":false},[\"width:25%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-5 .epyt-gallery-thumb\":false},[\"width:20%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-6 .epyt-gallery-thumb\":false},[\"width:16.666%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-7 .epyt-gallery-thumb\":false},[\"width:14.285%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-8 .epyt-gallery-thumb\":false},[\"width:12.5%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-9 .epyt-gallery-thumb\":false},[\"width:11.111%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-10 .epyt-gallery-thumb\":false},[\"width:10%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-11 .epyt-gallery-thumb\":false},[\"width:9.09%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-12 .epyt-gallery-thumb\":false},[\"width:8.333%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-13 .epyt-gallery-thumb\":false},[\"width:7.692%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-14 .epyt-gallery-thumb\":false},[\"width:7.142%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-15 .epyt-gallery-thumb\":false},[\"width:6.666%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-16 .epyt-gallery-thumb\":false},[\"width:6.25%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-17 .epyt-gallery-thumb\":false},[\"width:5.882%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-18 .epyt-gallery-thumb\":false},[\"width:5.555%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-19 .epyt-gallery-thumb\":false},[\"width:5.263%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-20 .epyt-gallery-thumb\":false},[\"width:5%\"]],[false,{\".epyt-pagebutton.hide:not(#_#_#_#_#_#_#_)\":false,\".epyt-pagenumbers.hide:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"opacity:0\",\"visibility:hidden\"]],[false,{\".epyt-gallery-subscribe\":false},[\"text-align:center\",\"padding:15px 0 10px 0\",\"clear:both\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton:hover\":false},[\"display:inline-block\",\"padding:5px 10px\",\"border-radius:3px\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton:not(#_#_#_#_#_#_#_#_)\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#e62117\",\"color:#fff\",\"text-decoration:none\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-img\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-anim\":false},[\"padding:0 6px 3px 0\",\"display:inline-block\",\"background:transparent\",\"-webkit-box-shadow:none\",\"box-shadow:none\",\"margin:0\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:20px\",\"height:auto\",\"vertical-align:middle\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__\":false},[\"background-color:#000\",\"background-image:-webkit-linear-gradient(top,#000,#444)\",\"background-image:linear-gradient(to bottom,#000,#444)\",\"padding:25px\",\"height:auto\",\"text-align:left\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ *:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#e3e3e3\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ a\":false},[\"text-decoration:underline\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:hover\":false},[\"display:inline-block\",\"padding:5px 10px\",\"border-radius:3px\",\"font-weight:normal\",\"border-width:0\",\"box-sizing:border-box\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:not(#_#_#_#_#_#_#_#_)\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#e62117\",\"color:#fff\",\"text-decoration:none\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-img\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-anim\":false},[\"padding:0 6px 3px 0\",\"display:inline-block\",\"background:transparent\",\"-webkit-box-shadow:none\",\"box-shadow:none\",\"margin-left:8px\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-img:not(#_#_#_#_#_#_#_#_)\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:20px\",\"height:auto\",\"vertical-align:middle\"]],[false,{\"body .epyt-gallery-img-gdpr\":false},[\"background-color:#000\",\"background-image:-webkit-linear-gradient(top,#000,#444)\",\"background-image:linear-gradient(to bottom,#000,#444)\"]],[false,{\".epyt-facade\":false},[\"position:relative\",\"padding-bottom:56.25%\",\"height:0\",\"overflow:hidden\",\"max-width:100%\",\"-webkit-transition:.4s all\",\"-moz-transition:.4s all\",\"transition:.4s all\"]],[false,{\".epyt-facade:hover\":false},[\"-webkit-filter:brightness(90%)\",\"-moz-filter:brightness(90%)\",\"filter:brightness(90%)\"]],[false,{\".epyt-facade amp-img.epyt-facade-poster\":false,\".epyt-facade amp-anim.epyt-facade-poster\":false},[\"display:block\",\"margin:0\",\"max-width:100%\",\"width:100%\",\"position:absolute\",\"top:50%\",\"left:50%\",\"transform:translate(-50%,-50%)\",\"border:0\",\"height:auto\",\"cursor:pointer\"]],[false,{\".epyt-facade button.epyt-facade-play\":false},[\"position:absolute\",\"left:50%\",\"top:50%\",\"width:68px\",\"height:48px\",\"margin-left:-34px\",\"margin-top:-24px\",\"-webkit-transition:opacity .25s cubic-bezier(0,0,.2,1)\",\"transition:opacity .25s cubic-bezier(0,0,.2,1)\",\"cursor:pointer\"]],[false,{\".epyt-facade button.epyt-facade-play:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:transparent\",\"border-width:0\"]],[false,{\".epyt-facade button.epyt-facade-play svg\":false},[\"height:100%\",\"left:0\",\"position:absolute\",\"top:0\",\"width:100%\",\"pointer-events:none\"]],[false,{\".epyt-facade button.epyt-facade-play svg .ytp-large-play-button-bg\":false},[\"-webkit-transition:fill .1s cubic-bezier(.4,0,1,1),fill-opacity .1s cubic-bezier(.4,0,1,1)\",\"transition:fill .1s cubic-bezier(.4,0,1,1),fill-opacity .1s cubic-bezier(.4,0,1,1)\",\"fill:#212121\",\"fill-opacity:.8\"]],[false,{\".epyt-facade:hover button.epyt-facade-play svg .ytp-large-play-button-bg\":false},[\"-webkit-transition:fill .1s cubic-bezier(0,0,.2,1),fill-opacity .1s cubic-bezier(0,0,.2,1)\",\"transition:fill .1s cubic-bezier(0,0,.2,1),fill-opacity .1s cubic-bezier(0,0,.2,1)\",\"fill:#f00\",\"fill-opacity:1\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.epyt-facade\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\"]],[false,{\".wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.__youtube_prefs_gdpr__\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.__youtube_prefs_gdpr__\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"overflow-y:auto\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper.epyt-is-override__wrapper:before\":false},[\"padding:0\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper.epyt-is-override__wrapper .epyt-is-override.__youtube_prefs_gdpr__\":false},[\"position:relative\",\"top:unset\",\"right:unset\",\"bottom:unset\",\"left:unset\"]],[false,{\".ytvi-story-container\":false},[\"display:block\",\"max-width:100%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":81,\"final_size\":0,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"__EPYT__style-inline-css\",\"type\":\"text\\/css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"\\r\\n .epyt-gallery-thumb {\\r\\n width: 33.333%;\\r\\n }\\r\\n \",\"handle\":\"__EPYT__style\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"\\r\\n .epyt-gallery-thumb {\\r\\n width: 33.333%;\\r\\n }\\r\\n \",\"handle\":\"__EPYT__style\"}],\"priority\":70,\"hash\":\"c0787a0c009a93e8e21ea0b9ce09b54f\",\"parse_time\":0.0006740093231201172,\"shake_time\":4.0531158447265625e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".epyt-gallery-thumb\":false},[\"width:33.333%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":323,\"final_size\":64,\"element\":{\"name\":\"style\",\"attributes\":{\"type\":\"text\\/css\",\"id\":\"wp-custom-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"theme.php\",\"line\":1824,\"function\":\"wp_custom_css_cb\",\"hook\":\"wp_head\",\"priority\":101}],\"priority\":60,\"hash\":\"ed93f9bffe93712a600c426300d64207\",\"parse_time\":0.002050161361694336,\"shake_time\":2.09808349609375e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".tek-ai\":false},[\"height:auto\"]],[false,{\".tek-ai amp-img\":false,\".tek-ai amp-anim\":false},[\"max-height:570px\"]],[false,{\".tek-ai amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".tek-ai amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[false,\"@media (max-width:992px){\"],[false,{\".tek-ai\":false},[\"height:auto\"]],[false,{\".tek-ai:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width: 1400px){\"],[false,{\".tek-ai\":false},[\"height:auto\"]],[false,\"}\"],[true,{\".footer-2022__menu--list.footer_links:nth-child(4)\":true},[\"display:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":57925,\"final_size\":6783,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"rs-plugin-settings-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/rs6.css?ver=6.5.23\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":134,\"function\":\"RevSliderFront::add_inline_css\",\"hook\":\"wp_footer\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"rs-plugin-settings\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}],\"priority\":30,\"hash\":\"4a682d94bb410f9ebfc91fae35d45117\",\"parse_time\":0.7066469192504883,\"shake_time\":0.00138092041015625,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.eot?5510888#iefix\"],\"shaken_tokens\":[[false,{\".rs-p-wp-fix:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"margin:0\",\"height:0px\"]],[false,{\".wp-block-themepunch-revslider\":false},[\"position:relative\"]],[false,{\"rs-modal:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"z-index:9999999\",\"pointer-events:none\"]],[false,{\"rs-modal.rs-modal-auto\":false},[\"top:auto\",\"bottom:auto\",\"left:auto\",\"right:auto\"]],[false,{\"rs-modal.rs-modal-fullwidth\":false,\"rs-modal.rs-modal-fullscreen\":false},[\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\"]],[false,{\"rs-modal rs-fullwidth-wrap\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"height:100%\"]],[false,{\"rs-module-wrap.rs-modal\":false},[\"display:none\"]],[false,{\"rs-module-wrap.rs-modal:not(#_#_#_#_#_#_#_#_)\":false},[\"max-height:100%\",\"overflow:auto\",\"pointer-events:auto\"]],[false,{\"rs-module-wrap.hideallscrollbars.rs-modal:not(#_#_#_#_#_#_#_#_)\":false},[\"overflow:hidden\",\"max-width:100%\"]],[false,{\"rs-modal-cover\":false},[\"width:100%\",\"height:100%\",\"z-index:0\",\"background:transparent\",\"position:absolute\",\"top:0px\",\"left:0px\",\"cursor:pointer\",\"pointer-events:auto\"]],[false,{\"body>rs-modal-cover\":false},[\"position:fixed\"]],[false,{\"body>rs-modal-cover:not(#_#_#_#_#_#_#_#_)\":false},[\"z-index:9999995\"]],[false,{\"rs-sbg-px\":false},[\"pointer-events:none\"]],[false,{\".rs-forceuntouchable:not(#_#_#_#_#_#_#_)\":false,\".rs-forceuntouchable *:not(#_#_#_#_#_#_#_)\":false},[\"pointer-events:none\"]],[false,{\".rs-forcehidden *:not(#_#_#_#_#_#_#_)\":false},[\"visibility:hidden\"]],[false,{\".rs_splitted_lines\":false},[\"display:block\"]],[false,{\".rs_splitted_lines:not(#_#_#_#_#_#_#_)\":false},[\"white-space:nowrap\"]],[false,{\".rs-go-fullscreen\":false},[\"background:#fff\"]],[false,{\".rs-go-fullscreen:not(#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\",\"z-index:9999999\"]],[false,{\".rtl\":false},[\"direction:rtl\"]],[true,\"@font-face{font-family:\\\"revicons\\\";src:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.eot?5510888\\\");src:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.eot?5510888#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.woff?5510888\\\") format(\\\"woff\\\"),url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.ttf?5510888\\\") format(\\\"truetype\\\"),url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.svg?5510888#revicons\\\") format(\\\"svg\\\");font-weight:normal;font-style:normal;font-display:swap}\"],[true,{\"[class^=\\\"revicon-\\\"]:before\":true,\"[class*=\\\" revicon-\\\"]:before\":true},[\"font-family:\\\"revicons\\\"\",\"font-style:normal\",\"font-weight:normal\",\"speak:never\",\"speak-as:spell-out\",\"display:inline-block\",\"text-decoration:inherit\",\"width:1em\",\"margin-right:.2em\",\"text-align:center\",\"font-variant:normal\",\"text-transform:none\",\"line-height:1em\",\"margin-left:.2em\"]],[false,{\"rs-module i[class^=\\\"fa-\\\"]\":false,\"rs-module i[class*=\\\" fa-\\\"]\":false,\".rb-modal-wrapper i[class^=\\\"fa-\\\"]\":false,\".rb-modal-wrapper i[class*=\\\" fa-\\\"]\":false,\"#waitaminute i[class^=\\\"fa-\\\"]\":false,\"#waitaminute i[class*=\\\" fa-\\\"]\":false,\"#objectlibrary i[class^=\\\"fa-\\\"]\":false,\"#objectlibrary i[class*=\\\" fa-\\\"]\":false,\"#rs_overview i[class^=\\\"fa-\\\"]\":false,\"#rs_overview i[class*=\\\" fa-\\\"]\":false,\"#rs_overview_menu i[class^=\\\"fa-\\\"]\":false,\"#rs_overview_menu i[class*=\\\" fa-\\\"]\":false,\"#builderView i[class^=\\\"fa-\\\"]\":false,\"#builderView i[class*=\\\" fa-\\\"]\":false},[\"display:inline-block\",\"font:normal normal normal 14px\\/1 FontAwesome\",\"font-size:inherit\",\"text-rendering:auto\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\"]],[false,{\"rs-module [class^=\\\"fa-\\\"]:before\":false,\"rs-module [class*=\\\" fa-\\\"]:before\":false,\".rb-modal-wrapper [class^=\\\"fa-\\\"]:before\":false,\".rb-modal-wrapper [class*=\\\" fa-\\\"]:before\":false,\"#rs_overview [class^=\\\"fa-\\\"]:before\":false,\"#rs_overview [class*=\\\" fa-\\\"]:before\":false,\"#objectlibrary [class^=\\\"fa-\\\"]:before\":false,\"#objectlibrary [class*=\\\" fa-\\\"]:before\":false,\"#waitaminute [class^=\\\"fa-\\\"]:before\":false,\"#waitaminute [class*=\\\" fa-\\\"]:before\":false,\"#rs_overview_menu [class^=\\\"fa-\\\"]:before\":false,\"#rs_overview_menu [class*=\\\" fa-\\\"]:before\":false,\"#builderView [class^=\\\"fa-\\\"]:before\":false,\"#builderView [class*=\\\" fa-\\\"]:before\":false},[\"font-family:FontAwesome\",\"font-style:normal\",\"font-weight:400\",\"speak:never\",\"speak-as:spell-out\",\"display:inline-block\",\"text-decoration:inherit\",\"width:auto\",\"margin-right:0\",\"text-align:center\",\"font-variant:normal\",\"text-transform:none\",\"line-height:inherit\",\"margin-left:0\"]],[false,{\"rs-module .sr-only\":false,\"#objectlibrary .sr-only\":false,\"#waitaminute .sr-only\":false,\"#rs_overview .sr-only\":false,\"#rs_overview_menu .sr-only\":false,\".rb-modal-wrapper .sr-only\":false,\"#builderView .sr-only\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,{\"rs-module .sr-only-focusable:active\":false,\"rs-module .sr-only-focusable:focus\":false,\"#waitaminute .sr-only-focusable:active\":false,\"#waitaminute .sr-only-focusable:focus\":false,\"#objectlibrary .sr-only-focusable:active\":false,\"#objectlibrary .sr-only-focusable:focus\":false,\"#rs_overview .sr-only-focusable:active\":false,\"#rs_overview .sr-only-focusable:focus\":false,\"#rs_overview_menu .sr-only-focusable:active\":false,\"#rs_overview_menu .sr-only-focusable:focus\":false,\".rb-modal-wrapper .sr-only-focusable:active\":false,\".rb-modal-wrapper .sr-only-focusable:focus\":false,\"#builderView .sr-only-focusable:active\":false,\"#builderView .sr-only-focusable:focus\":false},[\"position:static\",\"width:auto\",\"height:auto\",\"margin:0\",\"overflow:visible\",\"clip:auto\"]],[false,{\".revicon-search-1:before\":false},[\"content:\\\"\\ue802\\\"\"]],[false,{\".revicon-pencil-1:before\":false},[\"content:\\\"\\ue831\\\"\"]],[false,{\".revicon-picture-1:before\":false},[\"content:\\\"\\ue803\\\"\"]],[false,{\".revicon-cancel:before\":false},[\"content:\\\"\\ue80a\\\"\"]],[false,{\".revicon-info-circled:before\":false},[\"content:\\\"\\ue80f\\\"\"]],[false,{\".revicon-trash:before\":false},[\"content:\\\"\\ue801\\\"\"]],[false,{\".revicon-left-dir:before\":false},[\"content:\\\"\\ue817\\\"\"]],[false,{\".revicon-right-dir:before\":false},[\"content:\\\"\\ue818\\\"\"]],[false,{\".revicon-down-open:before\":false},[\"content:\\\"\\ue83b\\\"\"]],[false,{\".revicon-left-open:before\":false},[\"content:\\\"\\ue819\\\"\"]],[false,{\".revicon-right-open:before\":false},[\"content:\\\"\\ue81a\\\"\"]],[false,{\".revicon-angle-left:before\":false},[\"content:\\\"\\ue820\\\"\"]],[false,{\".revicon-angle-right:before\":false},[\"content:\\\"\\ue81d\\\"\"]],[false,{\".revicon-left-big:before\":false},[\"content:\\\"\\ue81f\\\"\"]],[false,{\".revicon-right-big:before\":false},[\"content:\\\"\\ue81e\\\"\"]],[false,{\".revicon-magic:before\":false},[\"content:\\\"\\ue807\\\"\"]],[false,{\".revicon-picture:before\":false},[\"content:\\\"\\ue800\\\"\"]],[false,{\".revicon-export:before\":false},[\"content:\\\"\\ue80b\\\"\"]],[false,{\".revicon-cog:before\":false},[\"content:\\\"\\ue832\\\"\"]],[false,{\".revicon-login:before\":false},[\"content:\\\"\\ue833\\\"\"]],[false,{\".revicon-logout:before\":false},[\"content:\\\"\\ue834\\\"\"]],[false,{\".revicon-video:before\":false},[\"content:\\\"\\ue805\\\"\"]],[false,{\".revicon-arrow-combo:before\":false},[\"content:\\\"\\ue827\\\"\"]],[false,{\".revicon-left-open-1:before\":false},[\"content:\\\"\\ue82a\\\"\"]],[false,{\".revicon-right-open-1:before\":false},[\"content:\\\"\\ue82b\\\"\"]],[false,{\".revicon-left-open-mini:before\":false},[\"content:\\\"\\ue822\\\"\"]],[false,{\".revicon-right-open-mini:before\":false},[\"content:\\\"\\ue823\\\"\"]],[false,{\".revicon-left-open-big:before\":false},[\"content:\\\"\\ue824\\\"\"]],[false,{\".revicon-right-open-big:before\":false},[\"content:\\\"\\ue825\\\"\"]],[false,{\".revicon-left:before\":false},[\"content:\\\"\\ue836\\\"\"]],[false,{\".revicon-right:before\":false},[\"content:\\\"\\ue826\\\"\"]],[false,{\".revicon-ccw:before\":false},[\"content:\\\"\\ue808\\\"\"]],[false,{\".revicon-arrows-ccw:before\":false},[\"content:\\\"\\ue806\\\"\"]],[false,{\".revicon-palette:before\":false},[\"content:\\\"\\ue829\\\"\"]],[false,{\".revicon-list-add:before\":false},[\"content:\\\"\\ue80c\\\"\"]],[false,{\".revicon-doc:before\":false},[\"content:\\\"\\ue809\\\"\"]],[false,{\".revicon-left-open-outline:before\":false},[\"content:\\\"\\ue82e\\\"\"]],[false,{\".revicon-left-open-2:before\":false},[\"content:\\\"\\ue82c\\\"\"]],[false,{\".revicon-right-open-outline:before\":false},[\"content:\\\"\\ue82f\\\"\"]],[false,{\".revicon-right-open-2:before\":false},[\"content:\\\"\\ue82d\\\"\"]],[false,{\".revicon-equalizer:before\":false},[\"content:\\\"\\ue83a\\\"\"]],[false,{\".revicon-layers-alt:before\":false},[\"content:\\\"\\ue804\\\"\"]],[false,{\".revicon-popup:before\":false},[\"content:\\\"\\ue828\\\"\"]],[false,{\".tp-fullwidth-forcer\":false},[\"z-index:0\",\"pointer-events:none\"]],[false,{\"rs-module-wrap\":false},[\"visibility:hidden\"]],[false,{\"rs-module-wrap\":false,\"rs-module-wrap *\":false},[\"box-sizing:border-box\",\"-webkit-tap-highlight-color:rgba(0,0,0,0)\"]],[false,{\"rs-module-wrap\":false},[\"position:relative\",\"z-index:1\",\"width:100%\",\"display:block\"]],[false,{\".rs-fixedscrollon rs-module-wrap\":false},[\"z-index:1000\"]],[false,{\".rs-fixedscrollon rs-module-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0px\",\"left:0\"]],[false,{\".rs-stickyscrollon rs-module-wrap\":false},[\"top:0px\",\"z-index:1000\"]],[false,{\".rs-stickyscrollon rs-module-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"position:sticky\"]],[false,{\".rs-stickyscrollon:not(#_#_#_#_#_#_#_)\":false},[\"overflow:visible\"]],[false,{\"rs-fw-forcer\":false},[\"display:block\",\"width:100%\",\"pointer-events:none\"]],[false,{\"rs-module\":false},[\"position:relative\",\"overflow:hidden\",\"display:block\"]],[false,{\"rs-module.disableVerticalScroll\":false},[\"-ms-touch-action:pan-x\",\"touch-action:pan-x\"]],[false,{\"rs-pzimg-wrap\":false,\"rs-sbg-effectwrap\":false,\"rs-sbg\":false},[\"display:block\",\"pointer-events:none\"]],[false,{\"rs-sbg-effectwrap\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\"]],[false,{\"rs-carousel-wrap rs-column rs-layer amp-img\":false,\"rs-carousel-wrap rs-column rs-layer amp-anim\":false},[\"width:0px\",\"height:0px\"]],[false,{\"rs-sbg-px\":false,\"rs-sbg-wrap\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"z-index:0\",\"width:100%\",\"height:100%\",\"display:block\"]],[false,{\"a.rs-layer\":false,\"a.rs-layer:-webkit-any-link\":false},[\"text-decoration:none\"]],[false,{\"a[x-apple-data-detectors]:not(#_#_#_#_#_#_#_#_)\":false},[\"color:inherit\",\"text-decoration:none\",\"font-size:inherit\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:inherit\"]],[false,{\".entry-content rs-module a\":false,\"rs-module a\":false},[\"box-shadow:none\"]],[false,{\".rs-ov-hidden:not(#_#_#_#_#_#_#_)\":false},[\"overflow:hidden\"]],[false,{\".rs-forceoverflow:not(#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-module-wrap:not(#_#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-module:not(#_#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-slides:not(#_#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-slide:not(#_#_#_#_#_#_#_#_)\":false},[\"overflow:visible\"]],[false,{\".tp-simpleresponsive amp-img\":false,\".tp-simpleresponsive amp-anim\":false,\"rs-module amp-img\":false,\"rs-module amp-anim\":false},[\"transition:none\",\"margin:0px\",\"padding:0px\",\"border:none\"]],[false,{\".tp-simpleresponsive amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".tp-simpleresponsive amp-anim:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-img:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\"rs-module .no-slides-text\":false},[\"font-weight:bold\",\"text-align:center\",\"padding-top:80px\"]],[false,{\"rs-slides\":false,\"rs-slide\":false,\"rs-slide:before\":false},[\"position:absolute\",\"text-indent:0em\",\"top:0px\",\"left:0px\"]],[false,{\"rs-slide\":false,\"rs-slide:before\":false},[\"display:block\",\"visibility:hidden\"]],[false,{\".rs-layer .rs-untoggled-content\":false},[\"display:block\"]],[false,{\".rs-layer .rs-toggled-content\":false},[\"display:none\"]],[false,{\".rs-tc-active.rs-layer > .rs-toggled-content\":false},[\"display:block\"]],[false,{\".rs-tc-active.rs-layer > .rs-untoggled-content\":false},[\"display:none\"]],[false,{\".rs-layer-video\":false},[\"overflow:hidden\"]],[false,{\".rs_html5vidbasicstyles\":false},[\"position:relative\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"overflow:hidden\"]],[false,{\"rs-module rs-layer\":false,\"rs-module .rs-layer\":false},[\"opacity:0\",\"position:relative\",\"visibility:hidden\",\"display:block\",\"-webkit-tap-highlight-color:rgba(0,0,0,0)\",\"-moz-osx-font-smoothing:grayscale\",\"z-index:1\",\"font-display:swap\"]],[false,{\"rs-module rs-layer:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module .rs-layer:not(#_#_#_#_#_#_#_#_)\":false},[\"-webkit-font-smoothing:antialiased\"]],[false,{\"rs-layer-wrap\":false,\"rs-mask\":false,\"rs-module-wrap\":false,\"rs-module .rs-layer\":false,\"rs-module amp-img\":false,\"rs-module amp-anim\":false},[\"user-select:none\"]],[false,{\"rs-module rs-mask-wrap .rs-layer\":false,\"rs-module rs-mask-wrap *:last-child\":false,\".wpb_text_column rs-module rs-mask-wrap .rs-layer\":false,\".wpb_text_column rs-module rs-mask-wrap *:last-child\":false},[\"margin-bottom:0\"]],[false,{\".rs-svg svg\":false},[\"width:100%\",\"height:100%\",\"position:relative\",\"vertical-align:top\"]],[false,{\"rs-layer:not(.rs-wtbindex):not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer:not(.rs-wtbindex):not(#_#_#_#_#_#_#_)\":false,\"rs-alyer *:not(.rs-wtbindex):not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer *:not(.rs-wtbindex):not(#_#_#_#_#_#_#_)\":false},[\"outline:none\"]],[false,{\"rs-carousel-wrap\":false},[\"cursor:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/openhand.cur\\\"),move\"]],[false,{\"rs-carousel-wrap.dragged\":false},[\"cursor:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/closedhand.cur\\\"),move\"]],[false,{\"rs-carousel-wrap.noswipe\":false},[\"cursor:default\"]],[false,{\"rs-carousel-wrap\":false},[\"position:absolute\",\"overflow:hidden\",\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\"]],[false,{\"rs-carousel-space\":false},[\"clear:both\",\"display:block\",\"width:100%\",\"height:0px\",\"position:relative\"]],[false,{\".tp_inner_padding\":false},[\"box-sizing:border-box\"]],[false,{\".tp_inner_padding:not(#_#_#_#_#_#_#_)\":false},[\"max-height:none\"]],[false,{\".rs-layer.rs-selectable\":false},[\"user-select:text\"]],[false,{\"rs-px-mask\":false},[\"overflow:hidden\",\"display:block\",\"width:100%\",\"height:100%\",\"position:relative\"]],[false,{\"rs-module embed\":false,\"rs-module amp-iframe\":false,\"rs-module amp-google-document-embed\":false,\"rs-module amp-audio\":false,\"rs-module amp-video\":false,\"rs-module amp-youtube\":false},[\"border:none\"]],[false,{\"rs-module embed:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-iframe:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-google-document-embed:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-audio:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-video:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-youtube:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\"rs-bg-elem\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"z-index:0\",\"display:block\",\"pointer-events:none\"]],[false,{\".tp-blockmask\":false,\".tp-blockmask_in\":false,\".tp-blockmask_out\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"background:#fff\",\"z-index:1000\",\"transform:scaleX(0) scaleY(0)\"]],[false,{\"rs-zone\":false},[\"position:absolute\",\"width:100%\",\"left:0px\",\"box-sizing:border-box\",\"min-height:50px\",\"font-size:0px\",\"pointer-events:none\"]],[false,{\"rs-row-wrap\":false,\"rs-column\":false,\"rs-cbg-mask-wrap\":false},[\"display:block\",\"visibility:hidden\"]],[false,{\"rs-layer-wrap\":false,\"rs-parallax-wrap\":false,\"rs-loop-wrap\":false,\"rs-mask-wrap\":false},[\"display:block\"]],[false,{\"rs-column-wrap>rs-loop-wrap\":false},[\"z-index:1\"]],[false,{\"rs-layer-wrap\":false,\"rs-mask-wrap\":false,\"rs-cbg-mask-wrap\":false},[\"transform-style:flat\"]],[false,\"@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0){\"],[false,{\"rs-carousel-wrap rs-layer-wrap\":false,\"rs-carousel-wrap rs-loop-wrap\":false},[\"backface-visibility:hidden\",\"transform-style:preserve-3d\"]],[false,\"}\"],[false,{\".safarifix rs-layer-wrap\":false},[\"perspective:1000000\"]],[false,\"@-moz-document url-prefix(){\"],[false,{\"rs-layer-wrap\":false,\"rs-mask-wrap\":false,\"rs-cbg-mask-wrap\":false},[\"perspective:none\"]],[false,\"}\"],[false,{\"rs-mask-wrap\":false},[\"overflow:hidden\"]],[false,{\"rs-fullwidth-wrap\":false},[\"position:relative\",\"width:100%\",\"height:auto\",\"display:block\",\"overflow:visible\"]],[false,{\"rs-fullwidth-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\".rev_row_zone_top\":false},[\"top:0px\"]],[false,{\".rev_row_zone_bottom\":false},[\"bottom:0px\"]],[false,{\".rev_row_zone_middle\":false},[\"top:0px\"]],[false,{\"rs-column-wrap .rs-parallax-wrap\":false},[\"vertical-align:top\"]],[false,{\".rs-layer amp-img\":false,\".rs-layer amp-anim\":false,\"rs-layer amp-img\":false,\"rs-layer amp-anim\":false},[\"vertical-align:top\"]],[false,{\"rs-row\":false,\"rs-row.rs-layer\":false},[\"display:table\",\"position:relative\",\"table-layout:fixed\",\"box-sizing:border-box\",\"vertical-align:top\",\"height:auto\",\"font-size:0px\"]],[false,{\"rs-row:not(#_#_#_#_#_#_#_#_)\":false,\"rs-row.rs-layer:not(#_#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".rs-layer.rs-waction.iospermaccwait.permanenthidden:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"visibility:hidden\",\"pointer-events:none\"]],[false,{\"rs-column-wrap\":false},[\"display:table-cell\",\"position:relative\",\"vertical-align:top\",\"height:auto\",\"box-sizing:border-box\",\"font-size:0px\"]],[false,{\"rs-column\":false},[\"box-sizing:border-box\",\"display:block\",\"position:relative\"]],[false,{\"rs-column:not(#_#_#_#_#_#_#_#_)\":false},[\"width:100%\",\"height:auto\",\"white-space:normal\"]],[false,{\"rs-cbg-mask-wrap\":false},[\"position:absolute\",\"z-index:0\",\"box-sizing:border-box\"]],[false,{\"rs-column-wrap rs-cbg-mask-wrap\":false},[\"top:0px\",\"left:0px\",\"bottom:0px\",\"right:0px\"]],[false,{\"rs-column-bg\":false},[\"position:absolute\",\"z-index:0\",\"box-sizing:border-box\",\"width:100%\",\"height:100%\"]],[false,{\".rs-pelock *:not(#_#_#_#_#_#_#_)\":false},[\"pointer-events:none\"]],[false,{\"rs-column .rs-parallax-wrap\":false,\"rs-column rs-loop-wrap\":false,\"rs-column rs-mask-wrap\":false},[\"text-align:inherit\"]],[false,{\"rs-column rs-mask-wrap\":false},[\"display:inline-block\"]],[false,{\"rs-column .rs-parallax-wrap rs-loop-wrap\":false,\"rs-column .rs-parallax-wrap rs-mask-wrap\":false,\"rs-column .rs-parallax-wrap\":false},[\"line-height:0px\"]],[false,{\"rs-column .rs-parallax-wrap rs-loop-wrap:not(#_#_#_#_#_#_#_#_)\":false,\"rs-column .rs-parallax-wrap rs-mask-wrap:not(#_#_#_#_#_#_#_#_)\":false,\"rs-column .rs-parallax-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"position:relative\",\"left:auto\",\"top:auto\"]],[false,{\"rs-column .rs-parallax-wrap rs-loop-wrap\":false,\"rs-column .rs-parallax-wrap rs-mask-wrap\":false,\"rs-column .rs-parallax-wrap\":false,\"rs-column .rev_layer_in_column\":false},[\"vertical-align:top\"]],[false,{\".rev_break_columns:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".rev_break_columns rs-column-wrap.rs-parallax-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\",\"width:100%\"]],[false,{\".rev_break_columns rs-column-wrap.rs-parallax-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_#_)\":false,\".tp-forcenotvisible:not(#_#_#_#_#_#_#_)\":false,\".tp-hide-revslider:not(#_#_#_#_#_#_#_)\":false,\"rs-row-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_#_)\":false,\"rs-column-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer.rs-layer-hidden:not(#_#_#_#_#_#_#_)\":false,\".rs-layer-audio.rs-layer-hidden:not(#_#_#_#_#_#_#_)\":false,\".rs-parallax-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_)\":false},[\"visibility:hidden\",\"display:none\"]],[false,{\"a.rs-layer.rs-nointeraction >.div:not(#_#_#_#_#_#_#_#_)\":false,\"rs-layer.rs-nointeraction:not(a):not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer.rs-nointeraction:not(a):not(#_#_#_#_#_#_#_)\":false},[\"pointer-events:none\"]],[false,{\"rs-static-layers\":false},[\"position:absolute\",\"z-index:101\",\"top:0px\",\"left:0px\",\"display:block\",\"width:100%\",\"height:100%\",\"pointer-events:none\",\"overflow:hidden\"]],[false,{\"rs-static-layers.rs-stl-back\":false},[\"z-index:0\"]],[false,{\".rs-stl-visible:not(#_#_#_#_#_#_#_)\":false},[\"overflow:visible\"]],[false,{\".rs-layer rs-fcr\":false},[\"width:0\",\"height:0\",\"border-left:40px solid transparent\",\"border-right:0px solid transparent\",\"border-top:40px solid #00a8ff\",\"position:absolute\",\"right:100%\",\"top:0px\"]],[false,{\".rs-layer rs-fcrt\":false},[\"width:0\",\"height:0\",\"border-left:40px solid transparent\",\"border-right:0px solid transparent\",\"border-bottom:40px solid #00a8ff\",\"position:absolute\",\"right:100%\",\"top:0px\"]],[false,{\".rs-layer rs-bcr\":false},[\"width:0\",\"height:0\",\"border-left:0px solid transparent\",\"border-right:40px solid transparent\",\"border-bottom:40px solid #00a8ff\",\"position:absolute\",\"left:100%\",\"top:0px\"]],[false,{\".rs-layer rs-bcrt\":false},[\"width:0\",\"height:0\",\"border-left:0px solid transparent\",\"border-right:40px solid transparent\",\"border-top:40px solid #00a8ff\",\"position:absolute\",\"left:100%\",\"top:0px\"]],[false,{\".tp-layer-inner-rotation:not(#_#_#_#_#_#_#_)\":false},[\"position:relative\"]],[false,{\"amp-img.tp-slider-alternative-image\":false,\"amp-anim.tp-slider-alternative-image\":false},[\"width:100%\",\"height:auto\"]],[false,{\".noFilterClass:not(#_#_#_#_#_#_#_)\":false},[\"filter:none\"]],[false,{\"rs-bgvideo\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"z-index:0\",\"display:block\"]],[false,{\".rs-layer.rs-fsv\":false},[\"top:0px\",\"left:0px\",\"position:absolute\",\"width:100%\",\"height:100%\"]],[false,{\".rs-layer.rs-fsv amp-audio\":false,\".rs-layer.rs-fsv amp-video\":false,\".rs-layer.rs-fsv amp-youtube\":false,\".rs-layer.rs-fsv amp-iframe\":false,\".rs-layer.rs-fsv amp-iframe amp-audio\":false,\".rs-layer.rs-fsv amp-iframe amp-video\":false,\".rs-layer.rs-fsv amp-iframe amp-youtube\":false},[\"width:100%\",\"height:100%\"]],[false,{\".rs-fsv amp-video\":false,\".rs-fsv amp-youtube\":false},[\"background:#000\"]],[false,{\".fullcoveredvideo rs-poster\":false},[\"background-position:center center\",\"background-size:cover\",\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\"]],[false,{\".videoisplaying .html5vid rs-poster\":false},[\"display:none\"]],[false,{\".tp-video-play-button\":false},[\"background:#000\",\"background:rgba(0,0,0,.3)\",\"border-radius:5px\",\"position:absolute\",\"top:50%\",\"left:50%\",\"color:#fff\",\"z-index:3\",\"z-index:4\",\"margin-top:-25px\",\"margin-left:-25px\",\"text-align:center\",\"cursor:pointer\",\"width:50px\",\"height:50px\",\"box-sizing:border-box\",\"display:inline-block\",\"vertical-align:top\",\"opacity:0\"]],[false,{\".tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"line-height:50px\",\"transition:opacity 300ms ease-out\"]],[false,{\".rs-ISM .tp-video-play-button\":false},[\"opacity:1\",\"z-index:6\"]],[false,{\".rs-ISM .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"transition:none\"]],[false,{\".rs-audio .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".rs-layer .html5vid:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\",\"height:100%\"]],[false,{\".tp-video-play-button i\":false},[\"width:50px\",\"height:50px\",\"display:inline-block\",\"vertical-align:top\"]],[false,{\".tp-video-play-button i:not(#_#_#_#_#_#_#_#_)\":false},[\"text-align:center\",\"line-height:50px\",\"font-size:30px\"]],[false,{\".rs-layer:hover .tp-video-play-button\":false},[\"opacity:1\",\"display:block\",\"z-index:6\"]],[false,{\".rs-layer .tp-revstop\":false},[\"display:none\",\"width:15px\",\"transform:translateX(50%) translateY(50%)\",\"height:20px\"]],[false,{\".rs-layer .tp-revstop:not(#_#_#_#_#_#_#_)\":false},[\"border-right:5px solid #fff\",\"border-left:5px solid #fff\",\"margin-left:11px\",\"margin-top:5px\"]],[false,{\".videoisplaying .revicon-right-dir\":false},[\"display:none\"]],[false,{\".videoisplaying .tp-revstop\":false},[\"display:block\"]],[false,{\".videoisplaying .tp-video-play-button\":false},[\"display:none\"]],[false,{\".fullcoveredvideo .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".rs-fsv .rs-fsv amp-audio:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:contain\"]],[false,{\".rs-fsv .rs-fsv amp-video:not(#_#_#_#_#_#_#_#_)\":false,\".rs-fsv .rs-fsv amp-youtube:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:contain\"]],[false,{\".rs-layer-video .html5vid.hidefullscreen amp-video::-webkit-media-controls-fullscreen-button\":false,\".rs-layer-video .html5vid.hidefullscreen amp-youtube::-webkit-media-controls-fullscreen-button\":false},[\"display:none\"]],[false,\"@supports not (-ms-high-contrast:none){\"],[false,{\".rs-fsv .fullcoveredvideo amp-audio:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:cover\"]],[false,{\".rs-fsv .fullcoveredvideo amp-video:not(#_#_#_#_#_#_#_#_)\":false,\".rs-fsv .fullcoveredvideo amp-youtube:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:cover\"]],[false,\"}\"],[false,{\".rs-fullvideo-cover\":false},[\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\",\"position:absolute\",\"background:transparent\",\"z-index:5\"]],[false,{\".rs-nolc .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-video::-webkit-media-controls-start-playback-button:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-youtube::-webkit-media-controls-start-playback-button:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-video::-webkit-media-controls:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-youtube::-webkit-media-controls:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-audio::-webkit-media-controls:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".rs-audio .tp-video-controls:not(#_#_#_#_#_#_#_)\":false},[\"opacity:1\",\"visibility:visible\"]],[false,{\"rs-module h1.rs-layer\":false,\"rs-module h2.rs-layer\":false,\"rs-module h3.rs-layer\":false,\"rs-module h4.rs-layer\":false,\"rs-module h5.rs-layer\":false,\"rs-module h6.rs-layer\":false,\"rs-module div.rs-layer\":false,\"rs-module span.rs-layer\":false,\"rs-module p.rs-layer\":false},[\"margin:0\",\"padding:0\",\"margin-block-start:0\",\"margin-block-end:0\",\"margin-inline-start:0\",\"margin-inline-end:0\"]],[false,{\"rs-module h1.rs-layer:before\":false,\"rs-module h2.rs-layer:before\":false,\"rs-module h3.rs-layer:before\":false,\"rs-module h4.rs-layer:before\":false,\"rs-module h5.rs-layer:before\":false,\"rs-module h6.rs-layer:before\":false},[\"content:none\"]],[false,{\"rs-dotted\":false},[\"background-repeat:repeat\",\"width:100%\",\"height:100%\",\"position:absolute\",\"top:0px\",\"left:0px\",\"z-index:3\",\"display:block\",\"pointer-events:none\"]],[false,{\"rs-sbg-wrap rs-dotted\":false},[\"z-index:31\"]],[false,{\"rs-dotted.twoxtwo\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile.png\\\")\"]],[false,{\"rs-dotted.twoxtwowhite\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile_white.png\\\")\"]],[false,{\"rs-dotted.threexthree\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile_3x3.png\\\")\"]],[false,{\"rs-dotted.threexthreewhite\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile_3x3_white.png\\\")\"]],[false,{\".tp-shadowcover\":false},[\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\",\"background:#fff\",\"position:absolute\",\"z-index:-1\"]],[false,{\".tp-shadow1\":false},[\"box-shadow:0 10px 6px -6px rgba(0,0,0,.8)\"]],[false,{\".tp-shadow2:before\":false,\".tp-shadow2:after\":false,\".tp-shadow3:before\":false,\".tp-shadow4:after\":false},[\"z-index:-2\",\"position:absolute\",\"content:\\\"\\\"\",\"bottom:10px\",\"left:10px\",\"width:50%\",\"top:85%\",\"max-width:300px\",\"background:transparent\",\"box-shadow:0 15px 10px rgba(0,0,0,.8)\",\"transform:rotate(-3deg)\"]],[false,{\".tp-shadow2:after\":false,\".tp-shadow4:after\":false},[\"transform:rotate(3deg)\",\"right:10px\",\"left:auto\"]],[false,{\".tp-shadow5\":false},[\"position:relative\",\"box-shadow:0 1px 4px rgba(0,0,0,.3),0 0 40px rgba(0,0,0,.1) inset\"]],[false,{\".tp-shadow5:before\":false,\".tp-shadow5:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"z-index:-2\",\"box-shadow:0 0 25px 0px rgba(0,0,0,.6)\",\"top:30%\",\"bottom:0\",\"left:20px\",\"right:20px\",\"border-radius:100px\\/20px\"]],[false,{\".rev-btn\":false,\".rev-btn:visited\":false},[\"box-shadow:none\",\"box-sizing:border-box\",\"cursor:pointer\"]],[false,{\".rev-btn:not(#_#_#_#_#_#_#_)\":false,\".rev-btn:visited:not(#_#_#_#_#_#_#_)\":false},[\"outline:none\",\"text-decoration:none\"]],[false,{\".rev-btn.rev-uppercase\":false,\".rev-btn.rev-uppercase:visited\":false},[\"text-transform:uppercase\"]],[false,{\".rev-btn i\":false},[\"font-size:inherit\",\"font-weight:normal\",\"position:relative\",\"top:0px\",\"transition:opacity .2s ease-out,margin .2s ease-out\",\"margin-left:0px\",\"line-height:inherit\"]],[false,{\".rev-btn.rev-hiddenicon i\":false},[\"font-size:inherit\",\"font-weight:normal\",\"position:relative\",\"top:0px\",\"transition:opacity .2s ease-out,margin .2s ease-out\",\"opacity:0\"]],[false,{\".rev-btn.rev-hiddenicon i:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-left:0px\",\"width:0px\"]],[false,{\".rev-btn.rev-hiddenicon:hover i:not(#_#_#_#_#_#_#_#_)\":false},[\"opacity:1\",\"margin-left:10px\",\"width:auto\"]],[false,{\".rev-burger\":false},[\"position:relative\",\"box-sizing:border-box\",\"padding:22px 14px 22px 14px\",\"border-radius:50%\",\"border:1px solid rgba(51,51,51,.25)\",\"-webkit-tap-highlight-color:rgba(0,0,0,0)\",\"-webkit-tap-highlight-color:transparent\",\"cursor:pointer\"]],[false,{\".rev-burger span\":false},[\"display:block\",\"width:30px\",\"height:3px\",\"background:#333\",\"transition:.7s\",\"pointer-events:none\"]],[false,{\".rev-burger span:not(#_#_#_#_#_#_#_#_)\":false},[\"transform-style:flat\"]],[false,{\".rev-burger span:nth-child(2)\":false},[\"margin:3px 0\"]],[false,{\".quick_style_example_wrap .rev-burger:hover :first-child\":false,\"#dialog_addbutton .rev-burger:hover :first-child\":false,\".open .rev-burger :first-child\":false,\".open.rev-burger :first-child\":false},[\"transform:translateY(6px) rotate(-45deg)\"]],[false,{\".quick_style_example_wrap .rev-burger:hover :nth-child(2)\":false,\"#dialog_addbutton .rev-burger:hover :nth-child(2)\":false,\".open .rev-burger :nth-child(2)\":false,\".open.rev-burger :nth-child(2)\":false},[\"transform:rotate(-45deg)\",\"opacity:0\"]],[false,{\".quick_style_example_wrap .rev-burger:hover :last-child\":false,\"#dialog_addbutton .rev-burger:hover :last-child\":false,\".open .rev-burger :last-child\":false,\".open.rev-burger :last-child\":false},[\"transform:translateY(-6px) rotate(-135deg)\"]],[false,{\".rev-burger.revb-white\":false},[\"border:2px solid rgba(255,255,255,.2)\"]],[false,{\".rev-b-span-light span\":false,\".rev-burger.revb-white span\":false},[\"background:#fff\"]],[false,{\".rev-burger.revb-whitenoborder\":false},[\"border:0\"]],[false,{\".rev-burger.revb-whitenoborder span\":false},[\"background:#fff\"]],[false,{\".rev-burger.revb-darknoborder\":false},[\"border:0\"]],[false,{\".rev-b-span-dark span\":false,\".rev-burger.revb-darknoborder span\":false},[\"background:#333\"]],[false,{\".rev-burger.revb-whitefull\":false},[\"background:#fff\",\"border:none\"]],[false,{\".rev-burger.revb-whitefull span\":false},[\"background:#333\"]],[false,{\".rev-burger.revb-darkfull\":false},[\"background:#333\",\"border:none\"]],[false,{\".rev-burger.revb-darkfull span\":false},[\"background:#fff\"]],[true,\"@keyframes rev-ani-mouse{\"],[true,\"0%{opacity:1;top:29%}\"],[true,\"15%{opacity:1;top:70%}\"],[true,\"50%{opacity:0;top:70%}\"],[true,\"100%{opacity:0;top:29%}\"],[true,\"}\"],[false,{\".rev-scroll-btn\":false},[\"display:inline-block\",\"position:relative\",\"left:0\",\"right:0\",\"text-align:center\",\"cursor:pointer\",\"width:35px\",\"height:55px\",\"box-sizing:border-box\",\"border:3px solid white\",\"border-radius:23px\"]],[false,{\".rev-scroll-btn > *\":false},[\"display:inline-block\",\"line-height:18px\",\"font-size:13px\",\"font-weight:normal\",\"color:#7f8c8d\",\"color:#fff\",\"font-family:\\\"proxima-nova\\\",\\\"Helvetica Neue\\\",Helvetica,Arial,sans-serif\",\"letter-spacing:2px\"]],[false,{\".rev-scroll-btn > *:hover\":false,\".rev-scroll-btn > *:focus\":false,\".rev-scroll-btn > *.active\":false},[\"color:#fff\"]],[false,{\".rev-scroll-btn > *:hover\":false,\".rev-scroll-btn > *:focus\":false,\".rev-scroll-btn > *:active\":false,\".rev-scroll-btn > *.active\":false},[\"opacity:.8\"]],[false,{\".rev-scroll-btn.revs-fullwhite\":false},[\"background:#fff\"]],[false,{\".rev-scroll-btn.revs-fullwhite span\":false},[\"background:#333\"]],[false,{\".rev-scroll-btn.revs-fulldark\":false},[\"background:#333\",\"border:none\"]],[false,{\".rev-scroll-btn.revs-fulldark span\":false},[\"background:#fff\"]],[false,{\".rev-scroll-btn span\":false},[\"position:absolute\",\"display:block\",\"top:29%\",\"left:50%\",\"width:8px\",\"height:8px\",\"margin:-4px 0 0 -4px\",\"border-radius:50%\",\"animation:rev-ani-mouse 2.5s linear infinite\",\"background:#fff\"]],[false,{\".rev-scroll-btn.rev-b-span-dark\":false},[\"border-color:#333\"]],[false,{\".rev-scroll-btn.rev-b-span-dark span\":false,\".rev-scroll-btn.revs-dark span\":false},[\"background:#333\"]],[false,{\".rev-control-btn\":false},[\"position:relative\",\"display:inline-block\",\"z-index:5\",\"color:#fff\",\"font-size:20px\",\"line-height:60px\",\"font-weight:400\",\"font-style:normal\",\"font-family:Raleway\",\"text-decoration:none\",\"text-align:center\",\"background-color:#000\",\"background-color:rgba(0,0,0,.5)\",\"border-radius:50px\",\"text-shadow:none\",\"width:60px\",\"height:60px\",\"box-sizing:border-box\",\"cursor:pointer\"]],[false,{\".rev-cbutton-dark-sr\":false},[\"border-radius:3px\"]],[false,{\".rev-cbutton-light\":false},[\"color:#333\",\"background-color:rgba(255,255,255,.75)\"]],[false,{\".rev-cbutton-light-sr\":false},[\"color:#333\",\"border-radius:3px\",\"background-color:rgba(255,255,255,.75)\"]],[false,{\".rev-sbutton\":false},[\"line-height:37px\",\"width:37px\",\"height:37px\"]],[false,{\".rev-sbutton-blue\":false},[\"background-color:#3b5998\"]],[false,{\".rev-sbutton-lightblue\":false},[\"background-color:#00a0d1\"]],[false,{\".rev-sbutton-red\":false},[\"background-color:#dd4b39\"]],[false,{\"rs-progress\":false},[\"visibility:hidden\",\"position:absolute\",\"z-index:200\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-bar\":false,\".rs-progress-bar\":false},[\"display:block\",\"z-index:20\",\"box-sizing:border-box\",\"background-clip:content-box\",\"position:absolute\",\"line-height:0px\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-bgs\":false},[\"display:block\",\"z-index:15\",\"box-sizing:border-box\",\"width:100%\",\"position:absolute\",\"height:100%\",\"top:0px\",\"left:0px\"]],[false,{\"rs-progress-bg\":false},[\"display:block\",\"background-clip:content-box\",\"position:absolute\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-gap\":false},[\"display:block\",\"background-clip:content-box\",\"position:absolute\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-vis\":false},[\"display:block\",\"width:100%\",\"height:100%\",\"position:absolute\",\"top:0px\",\"left:0px\"]],[false,{\".rs-layer amp-img\":false,\".rs-layer amp-anim\":false},[\"background:transparent\",\"-ms-filter:\\\"progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)\\\"\",\"filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=rgba(0,255,255,1),endColorstr=rgba(0,255,255,1))\"]],[false,{\".rs-layer.slidelink\":false},[\"cursor:pointer\",\"width:100%\",\"height:100%\"]],[false,{\".rs-layer.slidelink a\":false},[\"width:100%\",\"height:100%\",\"display:block\"]],[false,{\".rs-layer.slidelink a div\":false},[\"width:3000px\",\"height:1500px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/coloredbg.png\\\") repeat\"]],[false,{\".rs-layer.slidelink a span\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/coloredbg.png\\\") repeat\",\"width:100%\",\"height:100%\",\"display:block\"]],[false,{\".rs-layer .rs-starring\":false},[\"display:inline-block\"]],[false,{\".rs-layer .rs-starring .star-rating\":false},[\"float:none\",\"display:inline-block\",\"vertical-align:top\"]],[false,{\".rs-layer .rs-starring .star-rating:not(#_#_#_#_#_#_#_)\":false},[\"color:#ffc321\"]],[false,{\".rs-layer .rs-starring .star-rating\":false,\".rs-layer .rs-starring-page .star-rating\":false},[\"position:relative\",\"height:1em\",\"width:5.4em\",\"font-family:star\"]],[false,{\".rs-layer .rs-starring .star-rating:not(#_#_#_#_#_#_#_)\":false,\".rs-layer .rs-starring-page .star-rating:not(#_#_#_#_#_#_#_)\":false},[\"font-size:1em\"]],[false,{\".rs-layer .rs-starring .star-rating:before\":false,\".rs-layer .rs-starring-page .star-rating:before\":false},[\"content:\\\"sssss\\\"\",\"color:#e0dadf\",\"float:left\",\"top:0\",\"left:0\",\"position:absolute\"]],[false,{\".rs-layer .rs-starring .star-rating span\":false},[\"overflow:hidden\",\"float:left\",\"top:0\",\"left:0\",\"position:absolute\",\"padding-top:1.5em\"]],[false,{\".rs-layer .rs-starring .star-rating span:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:1em\"]],[false,{\".rs-layer .rs-starring .star-rating span:before\":false},[\"content:\\\"SSSSS\\\"\",\"top:0\",\"position:absolute\",\"left:0\"]],[false,{\"rs-loader\":false},[\"top:50%\",\"left:50%\",\"z-index:10000\",\"position:absolute\"]],[false,{\"rs-loader.off:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"rs-loader.spinner0\":false},[\"width:40px\",\"height:40px\",\"background-color:#fff\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/loader.gif\\\")\",\"background-repeat:no-repeat\",\"background-position:center center\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"margin-top:-20px\",\"margin-left:-20px\",\"animation:tp-rotateplane 1.2s infinite ease-in-out\",\"border-radius:3px\"]],[false,{\"rs-loader.spinner1\":false},[\"width:40px\",\"height:40px\",\"background-color:#fff\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"margin-top:-20px\",\"margin-left:-20px\",\"animation:tp-rotateplane 1.2s infinite ease-in-out\",\"border-radius:3px\"]],[false,{\"rs-loader.spinner5\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/loader.gif\\\")\",\"background-repeat:no-repeat\",\"background-position:10px 10px\",\"background-color:#fff\",\"margin:-22px -22px\",\"width:44px\",\"height:44px\",\"border-radius:3px\"]],[true,\"@keyframes tp-rotateplane{\"],[true,\"0%{transform:perspective(120px) rotateX(0deg) rotateY(0deg)}\"],[true,\"50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0deg)}\"],[true,\"100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner2\":false},[\"width:40px\",\"height:40px\",\"margin-top:-20px\",\"margin-left:-20px\",\"background-color:#f00\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"border-radius:100%\",\"animation:tp-scaleout 1s infinite ease-in-out\"]],[true,\"@keyframes tp-scaleout{\"],[true,\"0%{transform:scale(0)}\"],[true,\"100%{transform:scale(1);opacity:0}\"],[true,\"}\"],[false,{\"rs-loader.spinner3\":false},[\"margin:-9px 0px 0px -35px\",\"width:70px\",\"text-align:center\"]],[false,{\"rs-loader.spinner3 .bounce1\":false,\"rs-loader.spinner3 .bounce2\":false,\"rs-loader.spinner3 .bounce3\":false},[\"width:18px\",\"height:18px\",\"background-color:#fff\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"border-radius:100%\",\"display:inline-block\",\"animation:tp-bouncedelay 1.4s infinite ease-in-out\",\"animation-fill-mode:both\"]],[false,{\"rs-loader.spinner3 .bounce1\":false},[\"animation-delay:-.32s\"]],[false,{\"rs-loader.spinner3 .bounce2\":false},[\"animation-delay:-.16s\"]],[true,\"@keyframes tp-bouncedelay{\"],[true,\"0%,80%,100%{transform:scale(0)}\"],[true,\"40%{transform:scale(1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner4\":false},[\"margin:-20px 0px 0px -20px\",\"width:40px\",\"height:40px\",\"text-align:center\",\"animation:tp-rotate 2s infinite linear\"]],[false,{\"rs-loader.spinner4 .dot1\":false,\"rs-loader.spinner4 .dot2\":false},[\"width:60%\",\"height:60%\",\"display:inline-block\",\"position:absolute\",\"top:0\",\"background-color:#fff\",\"border-radius:100%\",\"animation:tp-bounce 2s infinite ease-in-out\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\"]],[false,{\"rs-loader.spinner4 .dot2\":false},[\"top:auto\",\"bottom:0px\",\"animation-delay:-1s\"]],[true,\"@keyframes tp-rotate{\"],[true,\"100%{transform:rotate(360deg)}\"],[true,\"}@keyframes tp-bounce{\"],[true,\"0%,100%{transform:scale(0)}\"],[true,\"50%{transform:scale(1)}\"],[true,\"}\"],[false,{\"rs-layer amp-iframe\":false},[\"visibility:hidden\"]],[false,{\"rs-layer.rs-ii-o amp-iframe\":false},[\"visibility:visible\"]],[false,{\"rs-layer input[type=\\\"text\\\"]\":false,\"rs-layer input[type=\\\"email\\\"]\":false,\"rs-layer input[type=\\\"url\\\"]\":false,\"rs-layer input[type=\\\"password\\\"]\":false,\"rs-layer input[type=\\\"search\\\"]\":false,\"rs-layer input[type=\\\"number\\\"]\":false,\"rs-layer input[type=\\\"tel\\\"]\":false,\"rs-layer input[type=\\\"range\\\"]\":false,\"rs-layer input[type=\\\"date\\\"]\":false,\"rs-layer input[type=\\\"month\\\"]\":false,\"rs-layer input[type=\\\"week\\\"]\":false,\"rs-layer input[type=\\\"time\\\"]\":false,\"rs-layer input[type=\\\"datetime\\\"]\":false,\"rs-layer input[type=\\\"datetime-local\\\"]\":false},[\"display:inline-block\"]],[false,{\"rs-layer input::placeholder\":false},[\"vertical-align:middle\"]],[false,{\"rs-layer input::placeholder:not(#_#_#_#_#_#_#_#_)\":false},[\"line-height:inherit\"]],[false,{\"a.rs-layer\":false},[\"transition:none\"]],[false,{\"rs-thumbs-wrap\":false,\"rs-tabs-wrap\":false,\"rs-thumbs\":false,\"rs-thumb\":false,\"rs-tab\":false,\"rs-bullet\":false,\"rs-bullets\":false,\"rs-navmask\":false,\"rs-tabs\":false,\"rs-arrow\":false},[\"display:block\",\"pointer-events:all\"]],[false,{\".tp-thumbs.navbar\":false,\".tp-bullets.navbar\":false,\".tp-tabs.navbar\":false},[\"border:none\",\"min-height:0\",\"margin:0\",\"border-radius:0\"]],[false,{\".tp-tabs\":false,\".tp-thumbs\":false,\".tp-bullets\":false},[\"position:absolute\",\"display:block\",\"z-index:1000\",\"top:0px\",\"left:0px\"]],[false,{\".tp-tab\":false,\".tp-thumb\":false},[\"cursor:pointer\",\"position:absolute\",\"opacity:.5\",\"box-sizing:border-box\"]],[false,{\".tp-arr-imgholder\":false,\"rs-poster\":false,\".tp-thumb-image\":false,\".tp-tab-image\":false},[\"background-position:center center\",\"background-size:cover\",\"width:100%\",\"height:100%\",\"display:block\",\"position:absolute\",\"top:0px\",\"left:0px\"]],[false,{\"rs-poster\":false},[\"cursor:pointer\",\"z-index:3\"]],[false,{\".tp-tab.rs-touchhover\":false,\".tp-tab.selected\":false,\".tp-thumb.rs-touchhover\":false,\".tp-thumb.selected\":false},[\"opacity:1\"]],[false,{\".tp-tab-mask:not(#_#_#_#_#_#_#_)\":false,\".tp-thumb-mask:not(#_#_#_#_#_#_#_)\":false},[\"box-sizing:border-box\"]],[false,{\".tp-tabs:not(#_#_#_#_#_#_#_)\":false,\".tp-thumbs:not(#_#_#_#_#_#_#_)\":false},[\"box-sizing:content-box\"]],[false,{\".tp-bullet\":false},[\"width:15px\",\"height:15px\",\"position:absolute\",\"background:#fff\",\"background:rgba(255,255,255,.3)\",\"cursor:pointer\"]],[false,{\".tp-bullet.selected\":false,\".tp-bullet.rs-touchhover\":false},[\"background:#fff\"]],[false,{\".tparrows\":false},[\"cursor:pointer\",\"background:#000\",\"background:rgba(0,0,0,.5)\",\"width:40px\",\"height:40px\",\"position:absolute\",\"display:block\",\"z-index:1000\"]],[false,{\".tparrows.rs-touchhover\":false},[\"background:#000\"]],[false,{\".tparrows:before\":false},[\"font-family:\\\"revicons\\\"\",\"font-size:15px\",\"color:#fff\",\"display:block\",\"line-height:40px\",\"text-align:center\"]],[false,{\".tparrows.tp-leftarrow:before\":false},[\"content:\\\"\\ue824\\\"\"]],[false,{\".tparrows.tp-rightarrow:before\":false},[\"content:\\\"\\ue825\\\"\"]],[false,{\".rs-layer [class^=\\\"pe-7s-\\\"]:before\":false,\".rs-layer [class*=\\\" pe-7s-\\\"]:before\":false,\".rs-layer [class^=\\\"pe-7s-\\\"]\":false,\".rs-layer [class*=\\\" pe-7s-\\\"]\":false},[\"width:auto\",\"margin:0\",\"line-height:inherit\",\"box-sizing:inherit\"]],[false,{\"rs-pzimg-wrap\":false},[\"display:block\"]],[false,{\"body.rtl .rs-pzimg:not(#_#_#_#_#_#_#_#_)\":false},[\"left:0\"]],[false,{\".rs_fake_cube\":false},[\"transform-style:preserve-3d\"]],[false,{\".rs_fake_cube\":false,\".rs_fake_cube_wall\":false},[\"position:absolute\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"left:0px\",\"top:0px\",\"z-index:0\"]],[false,{\".rs-builder-mode rs-sbg-wrap canvas\":false,\"rs-sbg canvas\":false},[\"overflow:hidden\",\"z-index:5\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".dddwrappershadow\":false},[\"box-shadow:0 45px 100px rgba(0,0,0,.4)\"]],[false,{\".dddwrapper\":false},[\"transform-style:flat\",\"perspective:10000px\"]],[false,{\".rs_error_message_box\":false},[\"background:#111\",\"width:800px\",\"margin:40px auto\",\"padding:40px 20px\",\"text-align:center\",\"font-family:\\\"Open Sans\\\",sans-serif\"]],[false,{\".rs_error_message_oops\":false},[\"margin:0px 0px 20px\",\"line-height:60px\",\"font-size:34px\",\"color:#fff\"]],[false,{\".rs_error_message_content\":false},[\"margin:0px 0px 20px\",\"line-height:25px\",\"font-size:17px\",\"color:#fff\"]],[false,{\".rs_error_message_button\":false},[\"background:#333\",\"display:inline-block\",\"padding:10px 15px\",\"text-align:right\",\"border-radius:5px\",\"cursor:pointer\"]],[false,{\".rs_error_message_button:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\".rs_error_message_button:hover\":false},[\"background:#5e35b1\"]],[false,{\".hglayerinfo\":false},[\"position:fixed\",\"bottom:0px\",\"left:0px\",\"color:#fff\",\"font-size:12px\",\"line-height:20px\",\"font-weight:600\",\"background:rgba(0,0,0,.75)\",\"padding:5px 10px\",\"z-index:2000\",\"white-space:normal\"]],[false,{\".hginfo\":false},[\"position:absolute\",\"top:-2px\",\"left:-2px\",\"color:#e74c3c\",\"font-size:12px\",\"font-weight:600\",\"background:#000\",\"padding:2px 5px\"]],[false,{\".indebugmode .rs-layer:hover:not(#_#_#_#_#_#_#_)\":false},[\"border:1px dashed #c0392b\"]],[false,{\".helpgrid\":false},[\"border:2px dashed #c0392b\",\"position:absolute\",\"top:0px\",\"left:0px\",\"z-index:0\"]],[false,{\"#revsliderlogloglog\":false},[\"padding:15px\",\"color:#fff\",\"position:fixed\",\"top:0px\",\"left:0px\",\"width:200px\",\"height:150px\",\"background:rgba(0,0,0,.7)\",\"z-index:100000\",\"font-size:10px\",\"overflow:scroll\"]],[false,{\".aden\":false},[\"filter:hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2)\"]],[false,{\".aden::after\":false},[\"background:linear-gradient(to right,rgba(66,10,14,.2),transparent)\",\"mix-blend-mode:darken\"]],[false,{\".perpetua::after\":false,\".reyes::after\":false},[\"mix-blend-mode:soft-light\",\"opacity:.5\"]],[false,{\".inkwell\":false},[\"filter:sepia(.3) contrast(1.1) brightness(1.1) grayscale(1)\"]],[false,{\".perpetua::after\":false},[\"background:linear-gradient(to bottom,#005b9a,#e6c13d)\"]],[false,{\".reyes\":false},[\"filter:sepia(.22) brightness(1.1) contrast(.85) saturate(.75)\"]],[false,{\".reyes::after\":false},[\"background:#efcdad\"]],[false,{\".gingham\":false},[\"filter:brightness(1.05) hue-rotate(-10deg)\"]],[false,{\".gingham::after\":false},[\"background:linear-gradient(to right,rgba(66,10,14,.2),transparent)\",\"mix-blend-mode:darken\"]],[false,{\".toaster\":false},[\"filter:contrast(1.5) brightness(.9)\"]],[false,{\".toaster::after\":false},[\"background:radial-gradient(circle,#804e0f,#3b003b)\",\"mix-blend-mode:screen\"]],[false,{\".walden\":false},[\"filter:brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6)\"]],[false,{\".walden::after\":false},[\"background:#04c\",\"mix-blend-mode:screen\",\"opacity:.3\"]],[false,{\".hudson\":false},[\"filter:brightness(1.2) contrast(.9) saturate(1.1)\"]],[false,{\".hudson::after\":false},[\"background:radial-gradient(circle,#a6b1ff 50%,#342134)\",\"mix-blend-mode:multiply\",\"opacity:.5\"]],[false,{\".earlybird\":false},[\"filter:contrast(.9) sepia(.2)\"]],[false,{\".earlybird::after\":false},[\"background:radial-gradient(circle,#d0ba8e 20%,#360309 85%,#1d0210 100%)\",\"mix-blend-mode:overlay\"]],[false,{\".mayfair\":false},[\"filter:contrast(1.1) saturate(1.1)\"]],[false,{\".mayfair::after\":false},[\"background:radial-gradient(circle at 40% 40%,rgba(255,255,255,.8),rgba(255,200,200,.6),#111 60%)\",\"mix-blend-mode:overlay\",\"opacity:.4\"]],[false,{\".lofi\":false},[\"filter:saturate(1.1) contrast(1.5)\"]],[false,{\".lofi::after\":false},[\"background:radial-gradient(circle,transparent 70%,#222 150%)\",\"mix-blend-mode:multiply\"]],[false,{\"._1977\":false},[\"filter:contrast(1.1) brightness(1.1) saturate(1.3)\"]],[false,{\"._1977:after\":false},[\"background:rgba(243,106,188,.3)\",\"mix-blend-mode:screen\"]],[false,{\".brooklyn\":false},[\"filter:contrast(.9) brightness(1.1)\"]],[false,{\".brooklyn::after\":false},[\"background:radial-gradient(circle,rgba(168,223,193,.4) 70%,#c4b7c8)\",\"mix-blend-mode:overlay\"]],[false,{\".xpro2\":false},[\"filter:sepia(.3)\"]],[false,{\".xpro2::after\":false},[\"background:radial-gradient(circle,#e6e7e0 40%,rgba(43,42,161,.6) 110%)\",\"mix-blend-mode:color-burn\"]],[false,{\".nashville\":false},[\"filter:sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2)\"]],[false,{\".nashville::after\":false},[\"background:rgba(0,70,150,.4)\",\"mix-blend-mode:lighten\"]],[false,{\".nashville::before\":false},[\"background:rgba(247,176,153,.56)\",\"mix-blend-mode:darken\"]],[false,{\".lark\":false},[\"filter:contrast(.9)\"]],[false,{\".lark::after\":false},[\"background:rgba(242,242,242,.8)\",\"mix-blend-mode:darken\"]],[false,{\".lark::before\":false},[\"background:#22253f\",\"mix-blend-mode:color-dodge\"]],[false,{\".moon\":false},[\"filter:grayscale(1) contrast(1.1) brightness(1.1)\"]],[false,{\".moon::before\":false},[\"background:#a0a0a0\",\"mix-blend-mode:soft-light\"]],[false,{\".moon::after\":false},[\"background:#383838\",\"mix-blend-mode:lighten\"]],[false,{\".clarendon\":false},[\"filter:contrast(1.2) saturate(1.35)\"]],[false,{\".clarendon:before\":false},[\"background:rgba(127,187,227,.2)\",\"mix-blend-mode:overlay\"]],[false,{\".willow\":false},[\"filter:grayscale(.5) contrast(.95) brightness(.9)\"]],[false,{\".willow::before\":false},[\"background-image:radial-gradient(circle,40%,#d4a9af 55%,#000 150%)\",\"mix-blend-mode:overlay\"]],[false,{\".rise\":false},[\"filter:brightness(1.05) sepia(.2) contrast(.9) saturate(.9)\"]],[false,{\".rise::after\":false},[\"background:radial-gradient(circle,rgba(232,197,152,.8),transparent 90%)\",\"mix-blend-mode:overlay\",\"opacity:.6\"]],[false,{\".rise::before\":false},[\"background:radial-gradient(circle,rgba(236,205,169,.15) 55%,rgba(50,30,7,.4))\",\"mix-blend-mode:multiply\"]],[false,{\"._1977:after\":false,\"._1977:before\":false,\"rs-pzimg-wrap.aden:after\":false,\".aden:before\":false,\".brooklyn:after\":false,\".brooklyn:before\":false,\".clarendon:after\":false,\".clarendon:before\":false,\".earlybird:after\":false,\".earlybird:before\":false,\".gingham:after\":false,\".gingham:before\":false,\".hudson:after\":false,\".hudson:before\":false,\".inkwell:after\":false,\".inkwell:before\":false,\".lark:after\":false,\".lark:before\":false,\".lofi:after\":false,\".lofi:before\":false,\".mayfair:after\":false,\".mayfair:before\":false,\".moon:after\":false,\".moon:before\":false,\".nashville:after\":false,\".nashville:before\":false,\".perpetua:after\":false,\".perpetua:before\":false,\".reyes:after\":false,\".reyes:before\":false,\".rise:after\":false,\".rise:before\":false,\".slumber:after\":false,\".slumber:before\":false,\".toaster:after\":false,\".toaster:before\":false,\".walden:after\":false,\".walden:before\":false,\".willow:after\":false,\".willow:before\":false,\".xpro2:after\":false,\".xpro2:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"height:100%\",\"width:100%\",\"top:0\",\"left:0\",\"position:absolute\",\"pointer-events:none\"]],[false,{\"._1977\":false,\".aden\":false,\".brooklyn\":false,\".clarendon\":false,\".earlybird\":false,\".gingham\":false,\".hudson\":false,\".inkwell\":false,\".lark\":false,\".lofi\":false,\".mayfair\":false,\".moon\":false,\".nashville\":false,\".perpetua\":false,\".reyes\":false,\".rise\":false,\".slumber\":false,\".toaster\":false,\".walden\":false,\".willow\":false,\".xpro2\":false},[\"position:absolute\"]],[false,{\"._1977:before\":false,\".aden:before\":false,\".brooklyn:before\":false,\".clarendon:before\":false,\".earlybird:before\":false,\".gingham:before\":false,\".hudson:before\":false,\".inkwell:before\":false,\".lark:before\":false,\".lofi:before\":false,\".mayfair:before\":false,\".moon:before\":false,\".nashville:before\":false,\".perpetua:before\":false,\".reyes:before\":false,\".rise:before\":false,\".slumber:before\":false,\".toaster:before\":false,\".walden:before\":false,\".willow:before\":false,\".xpro2:before\":false},[\"z-index:30\"]],[false,{\"._1977:after\":false,\".aden:after\":false,\".brooklyn:after\":false,\".clarendon:after\":false,\".earlybird:after\":false,\".gingham:after\":false,\".hudson:after\":false,\".inkwell:after\":false,\".lark:after\":false,\".lofi:after\":false,\".mayfair:after\":false,\".moon:after\":false,\".nashville:after\":false,\".perpetua:after\":false,\".reyes:after\":false,\".rise:after\":false,\".slumber:after\":false,\".toaster:after\":false,\".walden:after\":false,\".willow:after\":false,\".xpro2:after\":false},[\"z-index:40\"]],[false,{\".slumber\":false},[\"filter:saturate(.66) brightness(1.05)\"]],[false,{\".slumber::after\":false},[\"background:rgba(125,105,24,.5)\",\"mix-blend-mode:soft-light\"]],[false,{\".slumber::before\":false},[\"background:rgba(69,41,12,.4)\",\"mix-blend-mode:lighten\"]],[false,{\".willow::after\":false},[\"background-color:#d8cdcb\",\"mix-blend-mode:color\"]],[false,\"@media not all and (min-resolution:.001dpcm){\"],[false,\"@supports (-webkit-appearance:none){\"],[false,{\".willow\":false},[\"filter:grayscale(1) contrast(.95) brightness(.9)\"]],[false,{\".willow::after\":false},[\"background-color:transparent\"]],[false,\"}\"],[false,\"}\"],[false,{\"rs-pzimg-wrap.perpetua:before\":false,\"rs-pzimg-wrap.perpetua:after\":false,\"rs-pzimg-wrap.nashville:before\":false,\"rs-pzimg-wrap.nashville:after\":false,\"rs-pzimg-wrap.xpro2:before\":false,\"rs-pzimg-wrap.xpro2:after\":false,\"rs-pzimg-wrap._1977:after\":false,\"rs-pzimg-wrap._1977:before\":false,\"rs-pzimg-wrap.aden:after\":false,\"rs-pzimg-wrap.aden:before\":false,\"rs-pzimg-wrap.brooklyn:after\":false,\"rs-pzimg-wrap.brooklyn:before\":false,\"rs-pzimg-wrap.clarendon:after\":false,\"rs-pzimg-wrap.clarendon:before\":false,\"rs-pzimg-wrap.earlybird:after\":false,\"rs-pzimg-wrap.earlybird:before\":false,\"rs-pzimg-wrap.gingham:after\":false,\"rs-pzimg-wrap.gingham:before\":false,\"rs-pzimg-wrap.hudson:after\":false,\"rs-pzimg-wrap.hudson:before\":false,\"rs-pzimg-wrap.inkwell:after\":false,\"rs-pzimg-wrap.inkwell:before\":false,\"rs-pzimg-wrap.lark:after\":false,\"rs-pzimg-wrap.lark:before\":false,\"rs-pzimg-wrap.lofi:after\":false,\"rs-pzimg-wrap.lofi:before\":false,\"rs-pzimg-wrap.mayfair:after\":false,\"rs-pzimg-wrap.mayfair:before\":false,\"rs-pzimg-wrap.moon:after\":false,\"rs-pzimg-wrap.moon:before\":false,\"rs-pzimg-wrap.reyes:after\":false,\"rs-pzimg-wrap.reyes:before\":false,\"rs-pzimg-wrap.rise:after\":false,\"rs-pzimg-wrap.rise:before\":false,\"rs-pzimg-wrap.slumber:after\":false,\"rs-pzimg-wrap.slumber:before\":false,\"rs-pzimg-wrap.toaster:after\":false,\"rs-pzimg-wrap.toaster:before\":false,\"rs-pzimg-wrap.walden:after\":false,\"rs-pzimg-wrap.walden:before\":false,\"rs-pzimg-wrap.willow:after\":false,\"rs-pzimg-wrap.willow:before\":false,\"rs-pzimg-wrap:before\":false,\"rs-pzimg-wrap:after\":false},[\"height:500%\",\"width:500%\"]],[false,{\"rs-loader.spinner6\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"display:inline-block\",\"-webkit-animation:rs-revealer-6 1.4s linear infinite\",\"animation:rs-revealer-6 1.4s linear infinite\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span\":false},[\"position:absolute\",\"vertical-align:top\",\"border-radius:100%\",\"display:inline-block\",\"width:8px\",\"height:8px\",\"margin-left:16px\",\"transform-origin:center 20px\",\"-webkit-transform-origin:center 20px\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(2)\":false},[\"transform:rotate(36deg)\",\"-webkit-transform:rotate(36deg)\",\"opacity:.1\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(3)\":false},[\"transform:rotate(72deg)\",\"-webkit-transform:rotate(72deg)\",\"opacity:.2\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(4)\":false},[\"transform:rotate(108deg)\",\"-webkit-transform:rotate(108deg)\",\"opacity:.3\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(5)\":false},[\"transform:rotate(144deg)\",\"-webkit-transform:rotate(144deg)\",\"opacity:.4\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(6)\":false},[\"transform:rotate(180deg)\",\"-webkit-transform:rotate(180deg)\",\"opacity:.5\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(7)\":false},[\"transform:rotate(216deg)\",\"-webkit-transform:rotate(216deg)\",\"opacity:.6\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(8)\":false},[\"transform:rotate(252deg)\",\"-webkit-transform:rotate(252deg)\",\"opacity:.7\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(9)\":false},[\"transform:rotate(288deg)\",\"-webkit-transform:rotate(288deg)\",\"opacity:.8\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(10)\":false},[\"transform:rotate(324deg)\",\"-webkit-transform:rotate(324deg)\",\"opacity:.9\"]],[true,\"@keyframes rs-revealer-6{\"],[true,\"from{transform:rotate(0)}\"],[true,\"to{transform:rotate(360deg)}\"],[true,\"}@-webkit-keyframes rs-revealer-6{\"],[true,\"from{-webkit-transform:rotate(0)}\"],[true,\"to{-webkit-transform:rotate(360deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner7\":false},[\"width:35px\",\"height:35px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner7 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"display:inline-block\",\"padding:0\",\"border-radius:100%\",\"border:2px solid\",\"-webkit-animation:rs-revealer-7 .8s linear infinite\",\"animation:rs-revealer-7 .8s linear infinite\"]],[true,\"@keyframes rs-revealer-7{\"],[true,\"from{transform:rotate(0)}\"],[true,\"to{transform:rotate(360deg)}\"],[true,\"}@-webkit-keyframes rs-revealer-7{\"],[true,\"from{-webkit-transform:rotate(0)}\"],[true,\"to{-webkit-transform:rotate(360deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner8\":false},[\"width:50px\",\"height:50px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner8 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"display:inline-block\",\"padding:0\",\"text-align:left\"]],[false,{\"rs-loader.spinner8 .rs-spinner-inner span\":false},[\"position:absolute\",\"display:inline-block\",\"width:100%\",\"height:100%\",\"border-radius:100%\",\"-webkit-animation:rs-revealer-8 1.6s linear infinite\",\"animation:rs-revealer-8 1.6s linear infinite\"]],[false,{\"rs-loader.spinner8 .rs-spinner-inner span:last-child\":false},[\"animation-delay:-.8s\",\"-webkit-animation-delay:-.8s\"]],[true,\"@keyframes rs-revealer-8{\"],[true,\"0%{transform:scale(0,0);opacity:.5}\"],[true,\"100%{transform:scale(1,1);opacity:0}\"],[true,\"}@-webkit-keyframes rs-revealer-8{\"],[true,\"0%{-webkit-transform:scale(0,0);opacity:.5}\"],[true,\"100%{-webkit-transform:scale(1,1);opacity:0}\"],[true,\"}\"],[false,{\"rs-loader.spinner9\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner9 .rs-spinner-inner span\":false},[\"display:block\",\"width:100%\",\"height:100%\",\"border-radius:50%\",\"opacity:.6\",\"position:absolute\",\"top:0\",\"left:0\",\"-webkit-animation:rs-revealer-9 2s infinite ease-in-out\",\"animation:rs-revealer-9 2s infinite ease-in-out\"]],[false,{\"rs-loader.spinner9 .rs-spinner-inner span:last-child\":false},[\"-webkit-animation-delay:-1s\",\"animation-delay:-1s\"]],[true,\"@-webkit-keyframes rs-revealer-9{\"],[true,\"0%,100%{-webkit-transform:scale(0)}\"],[true,\"50%{-webkit-transform:scale(1)}\"],[true,\"}@keyframes rs-revealer-9{\"],[true,\"0%,100%{transform:scale(0);-webkit-transform:scale(0)}\"],[true,\"50%{transform:scale(1);-webkit-transform:scale(1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner10\":false},[\"width:54px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"text-align:center\",\"font-size:10px\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span\":false},[\"display:block\",\"display:inline-block\",\"height:100%\",\"width:6px\",\"-webkit-animation:rs-revealer-10 1.2s infinite ease-in-out\",\"animation:rs-revealer-10 1.2s infinite ease-in-out\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(2)\":false},[\"-webkit-animation-delay:-1.1s\",\"animation-delay:-1.1s\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(3)\":false},[\"-webkit-animation-delay:-1s\",\"animation-delay:-1s\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(4)\":false},[\"-webkit-animation-delay:-.9s\",\"animation-delay:-.9s\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(5)\":false},[\"-webkit-animation-delay:-.8s\",\"animation-delay:-.8s\"]],[true,\"@-webkit-keyframes rs-revealer-10{\"],[true,\"0%,100%,40%{-webkit-transform:scaleY(.4)}\"],[true,\"20%{-webkit-transform:scaleY(1)}\"],[true,\"}@keyframes rs-revealer-10{\"],[true,\"0%,100%,40%{transform:scaleY(.4);-webkit-transform:scaleY(.4)}\"],[true,\"20%{transform:scaleY(1);-webkit-transform:scaleY(1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner11\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span\":false},[\"display:block\",\"width:33%\",\"height:33%\",\"background-color:#333\",\"float:left\",\"-webkit-animation:rs-revealer-11 1.3s infinite ease-in-out\",\"animation:rs-revealer-11 1.3s infinite ease-in-out\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(1)\":false},[\"-webkit-animation-delay:.2s\",\"animation-delay:.2s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(2)\":false},[\"-webkit-animation-delay:.3s\",\"animation-delay:.3s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(3)\":false},[\"-webkit-animation-delay:.4s\",\"animation-delay:.4s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(4)\":false},[\"-webkit-animation-delay:.1s\",\"animation-delay:.1s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(5)\":false},[\"-webkit-animation-delay:.2s\",\"animation-delay:.2s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(6)\":false},[\"-webkit-animation-delay:.3s\",\"animation-delay:.3s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(7)\":false},[\"-webkit-animation-delay:0s\",\"animation-delay:0s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(8)\":false},[\"-webkit-animation-delay:.1s\",\"animation-delay:.1s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(9)\":false},[\"-webkit-animation-delay:.2s\",\"animation-delay:.2s\"]],[true,\"@-webkit-keyframes rs-revealer-11{\"],[true,\"0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}\"],[true,\"35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}\"],[true,\"}@keyframes rs-revealer-11{\"],[true,\"0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}\"],[true,\"35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner12\":false},[\"width:35px\",\"height:35px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner12 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"-webkit-animation:rs-revealer-12 1s infinite linear\",\"animation:rs-revealer-12 1s infinite linear\"]],[true,\"@-webkit-keyframes rs-revealer-12{\"],[true,\"0%{-webkit-transform:rotate(0)}\"],[true,\"100%{-webkit-transform:rotate(360deg)}\"],[true,\"}@keyframes rs-revealer-12{\"],[true,\"0%{transform:rotate(0)}\"],[true,\"100%{transform:rotate(360deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner13\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span\":false},[\"display:block\",\"width:40%\",\"height:40%\",\"position:absolute\",\"border-radius:50%\",\"-webkit-animation:rs-revealer-13 2s ease infinite\",\"animation:rs-revealer-13 2s ease infinite\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span:nth-child(1)\":false},[\"animation-delay:-1.5s\",\"-webkit-animation-delay:-1.5s\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span:nth-child(2)\":false},[\"animation-delay:-1s\",\"-webkit-animation-delay:-1s\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span:nth-child(3)\":false},[\"animation-delay:-.5s\",\"-webkit-animation-delay:-.5s\"]],[true,\"@keyframes rs-revealer-13{\"],[true,\"0%,100%{transform:translate(0)}\"],[true,\"25%{transform:translate(160%)}\"],[true,\"50%{transform:translate(160%,160%)}\"],[true,\"75%{transform:translate(0,160%)}\"],[true,\"}@-webkit-keyframes rs-revealer-13{\"],[true,\"0%,100%{-webkit-transform:translate(0)}\"],[true,\"25%{-webkit-transform:translate(160%)}\"],[true,\"50%{-webkit-transform:translate(160%,160%)}\"],[true,\"75%{-webkit-transform:translate(0,160%)}\"],[true,\"}\"],[false,{\"rs-loader.spinner14\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"animation:rs-revealer-14 1s infinite linear\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span\":false},[\"display:block\",\"position:absolute\",\"top:50%\",\"left:50%\",\"width:16px\",\"height:16px\",\"border-radius:50%\",\"margin:-8px\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(1)\":false},[\"-webkit-animation:rs-revealer-14-1 2s infinite\",\"animation:rs-revealer-14-1 2s infinite\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(2)\":false},[\"-webkit-animation:rs-revealer-14-2 2s infinite\",\"animation:rs-revealer-14-2 2s infinite\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(3)\":false},[\"-webkit-animation:rs-revealer-14-3 2s infinite\",\"animation:rs-revealer-14-3 2s infinite\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(4)\":false},[\"-webkit-animation:rs-revealer-14-4 2s infinite\",\"animation:rs-revealer-14-4 2s infinite\"]],[true,\"@-webkit-keyframes rs-revealer-14-1{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(80%,80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(80%,80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@-webkit-keyframes rs-revealer-14-2{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(80%,-80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(80%,-80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@-webkit-keyframes rs-revealer-14-3{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(-80%,-80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(-80%,-80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@-webkit-keyframes rs-revealer-14-4{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(-80%,80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(-80%,80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-1{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(80%,80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(80%,80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-2{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(80%,-80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(80%,-80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-3{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(-80%,-80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(-80%,-80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-4{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(-80%,80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(-80%,80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}\"],[false,{\"rs-loader.spinner15\":false},[\"width:40px\",\"height:40px\",\"margin-top:-4px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner15 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\"]],[false,{\"rs-loader.spinner15 .rs-spinner-inner span\":false},[\"display:block\",\"width:20px\",\"height:20px\",\"position:absolute\",\"top:0\",\"left:0\",\"-webkit-animation:rs-revealer-15 1.8s infinite ease-in-out\",\"animation:rs-revealer-15 1.8s infinite ease-in-out\"]],[false,{\"rs-loader.spinner15 .rs-spinner-inner:last-child\":false},[\"-webkit-animation-delay:-.9s\",\"animation-delay:-.9s\"]],[true,\"@-webkit-keyframes rs-revealer-15{\"],[true,\"25%{-webkit-transform:translateX(30px) rotate(-90deg) scale(.5)}\"],[true,\"50%{-webkit-transform:translateX(30px) translateY(30px) rotate(-180deg)}\"],[true,\"75%{-webkit-transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5)}\"],[true,\"100%{-webkit-transform:rotate(-360deg)}\"],[true,\"}@keyframes rs-revealer-15{\"],[true,\"25%{transform:translateX(30px) rotate(-90deg) scale(.5);-webkit-transform:translateX(30px) rotate(-90deg) scale(.5)}\"],[true,\"50%{transform:translateX(30px) translateY(30px) rotate(-179deg);-webkit-transform:translateX(30px) translateY(30px) rotate(-179deg)}\"],[true,\"50.1%{transform:translateX(30px) translateY(30px) rotate(-180deg);-webkit-transform:translateX(30px) translateY(30px) rotate(-180deg)}\"],[true,\"75%{transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5);-webkit-transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5)}\"],[true,\"100%{transform:rotate(-360deg);-webkit-transform:rotate(-360deg)}\"],[true,\"}\"],[false,{\".bgcanvas\":false},[\"display:none\",\"position:absolute\",\"overflow:hidden\"]],[false,{\".RSscrollbar-measure\":false},[\"width:100px\",\"height:100px\",\"overflow:scroll\",\"position:absolute\",\"top:-9999px\"]],[false,{\".avada-has-rev-slider-styles .rev_slider_wrapper\":false},[\"transform:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":14,\"final_size\":0,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"rs-plugin-settings-inline-css\",\"type\":\"text\\/css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":134,\"function\":\"RevSliderFront::add_inline_css\",\"hook\":\"wp_footer\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"#rs-demo-id {}\",\"handle\":\"rs-plugin-settings\"}],\"priority\":70,\"hash\":\"d751713988987e9331980363e24189ce\",\"parse_time\":0.00037407875061035156,\"shake_time\":3.0994415283203125e-6,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":129,\"final_size\":128,\"element\":{\"name\":\"div\",\"attributes\":{\"class\":\"col-lg-6 blog-title-main amp-wp-7597b7e\",\"data-amp-original-style\":\"background-image: url(\'https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2020\\/01\\/blogimg.jpg\')\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"d838c488549c8fd1e7d64f3251ccc91e\",\"parse_time\":0.0009009838104248047,\"shake_time\":9.059906005859375e-6,\"cached\":false,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-7597b7e:not(#_#_#_#_#_)\":true},[\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2020\\/01\\/blogimg.jpg\\\")\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":177,\"final_size\":175,\"element\":{\"name\":\"div\",\"attributes\":{\"class\":\"col-lg-6 blog-main amp-wp-946752b\",\"data-amp-original-style\":\"background-image: url(\'https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2022\\/06\\/How-Translucent-is-changing-the-Cloud-Native-industry.png\');\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"371b89a535e3765715c09653c2df1640\",\"parse_time\":0.0005581378936767578,\"shake_time\":5.9604644775390625e-6,\"cached\":false,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-946752b:not(#_#_#_#_#_)\":true},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2022\\/06\\/How-Translucent-is-changing-the-Cloud-Native-industry.png\\\")\"]]],\"included\":true}]'); INSERT INTO `wp_postmeta` VALUES (169783,4797,'_pinterest_shares','0'),(169784,4797,'_total_shares','0'),(169786,4797,'_amp_validated_environment','a:3:{s:5:\"theme\";a:1:{s:11:\"translucent\";s:3:\"1.0\";}s:7:\"plugins\";a:32:{s:7:\"404page\";s:6:\"11.3.1\";s:26:\"advanced-custom-fields-pro\";s:6:\"5.12.2\";s:16:\"tinymce-advanced\";s:5:\"5.6.0\";s:3:\"amp\";s:5:\"2.3.0\";s:17:\"code-syntax-block\";s:5:\"3.1.1\";s:14:\"contact-form-7\";s:5:\"5.5.3\";s:10:\"duplicator\";s:5:\"1.5.0\";s:25:\"embed-calendly-scheduling\";s:3:\"3.0\";s:18:\"youtube-embed-plus\";s:6:\"14.1.2\";s:13:\"header-footer\";s:5:\"3.2.5\";s:6:\"iframe\";s:3:\"4.5\";s:7:\"imagify\";s:3:\"2.0\";s:15:\"cf7-hubspot-pro\";s:5:\"1.2.1\";s:13:\"popup-builder\";s:6:\"4.1.13\";s:34:\"post-tags-and-categories-for-pages\";s:5:\"1.4.1\";s:8:\"raw-html\";s:5:\"1.6.3\";s:11:\"redirection\";s:5:\"5.3.2\";s:11:\"redis-cache\";s:5:\"2.2.0\";s:26:\"reveal-ids-for-wp-admin-25\";s:5:\"1.5.4\";s:34:\"sendgrid-email-delivery-simplified\";s:6:\"1.11.8\";s:9:\"revslider\";s:6:\"6.5.23\";s:14:\"social-warfare\";s:5:\"4.3.0\";s:26:\"ssl-insecure-content-fixer\";s:5:\"2.7.2\";s:11:\"updraftplus\";s:7:\"1.22.19\";s:8:\"wpdiscuz\";s:5:\"7.4.2\";s:15:\"wp-file-manager\";s:5:\"7.1.6\";s:14:\"wp-google-maps\";s:6:\"9.0.10\";s:5:\"wpide\";s:5:\"3.4.1\";s:23:\"wp-phpmyadmin-extension\";s:7:\"5.2.0.7\";s:14:\"duplicate-post\";s:3:\"4.4\";s:13:\"wordpress-seo\";s:4:\"19.1\";s:21:\"wordpress-seo-premium\";s:4:\"17.7\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:8:\"standard\";}}'),(169787,4797,'_amp_queried_object','a:2:{s:2:\"id\";i:1924;s:4:\"type\";s:4:\"post\";}'); INSERT INTO `wp_postmeta` VALUES (169788,4797,'_amp_stylesheets','[{\"group\":\"amp-custom\",\"original_size\":140936,\"final_size\":9172,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/bootstrap.min.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"834eec339f2b2b8368c90e8ee4e0c6d0\",\"parse_time\":1.5320749282836914,\"shake_time\":0.2549610137939453,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\":root\":true},[\"--blue:#007bff\",\"--indigo:#6610f2\",\"--purple:#6f42c1\",\"--pink:#e83e8c\",\"--red:#dc3545\",\"--orange:#fd7e14\",\"--yellow:#ffc107\",\"--green:#28a745\",\"--teal:#20c997\",\"--cyan:#17a2b8\",\"--white:#fff\",\"--gray:#6c757d\",\"--gray-dark:#343a40\",\"--primary:#007bff\",\"--secondary:#6c757d\",\"--success:#28a745\",\"--info:#17a2b8\",\"--warning:#ffc107\",\"--danger:#dc3545\",\"--light:#f8f9fa\",\"--dark:#343a40\",\"--breakpoint-xs:0\",\"--breakpoint-sm:576px\",\"--breakpoint-md:768px\",\"--breakpoint-lg:992px\",\"--breakpoint-xl:1200px\",\"--font-family-sans-serif:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,\\\"Liberation Mono\\\",\\\"Courier New\\\",monospace\"]],[true,{\"*\":true,\"::after\":true,\"::before\":true},[\"box-sizing:border-box\"]],[true,{\"html\":true},[\"font-family:sans-serif\",\"line-height:1.15\",\"-webkit-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\",\"-ms-overflow-style:scrollbar\",\"-webkit-tap-highlight-color:transparent\"]],[true,{\"article\":false,\"aside\":false,\"figcaption\":false,\"figure\":false,\"footer\":true,\"header\":true,\"hgroup\":false,\"main\":false,\"nav\":true,\"section\":true},[\"display:block\"]],[true,{\"body\":true},[\"margin:0\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"font-size:1rem\",\"font-weight:400\",\"line-height:1.5\",\"color:#212529\",\"text-align:left\",\"background-color:#fff\"]],[false,{\"[tabindex=\\\"-1\\\"]:focus:not(#_#_#_#_#_#_#_)\":false},[\"outline:0\"]],[false,{\"hr\":false},[\"box-sizing:content-box\",\"height:0\",\"overflow:visible\"]],[true,{\"h1\":true,\"h2\":true,\"h3\":true,\"h4\":true,\"h5\":true,\"h6\":true},[\"margin-top:0\",\"margin-bottom:.5rem\"]],[true,{\"p\":true},[\"margin-top:0\",\"margin-bottom:1rem\"]],[false,{\"abbr[data-original-title]\":false,\"abbr[title]\":false},[\"text-decoration:underline\",\"text-decoration:underline dotted\",\"-webkit-text-decoration:underline dotted\",\"cursor:help\",\"border-bottom:0\"]],[false,{\"address\":false},[\"margin-bottom:1rem\",\"font-style:normal\",\"line-height:inherit\"]],[true,{\"dl\":false,\"ol\":false,\"ul\":true},[\"margin-top:0\",\"margin-bottom:1rem\"]],[true,{\"ol ol\":false,\"ol ul\":false,\"ul ol\":false,\"ul ul\":true},[\"margin-bottom:0\"]],[false,{\"dt\":false},[\"font-weight:700\"]],[false,{\"dd\":false},[\"margin-bottom:.5rem\",\"margin-left:0\"]],[false,{\"blockquote\":false},[\"margin:0 0 1rem\"]],[false,{\"dfn\":false},[\"font-style:italic\"]],[true,{\"b\":false,\"strong\":true},[\"font-weight:bolder\"]],[true,{\"small\":true},[\"font-size:80%\"]],[false,{\"sub\":false,\"sup\":false},[\"position:relative\",\"font-size:75%\",\"line-height:0\",\"vertical-align:baseline\"]],[false,{\"sub\":false},[\"bottom:-.25em\"]],[false,{\"sup\":false},[\"top:-.5em\"]],[true,{\"a\":true},[\"color:#007bff\",\"text-decoration:none\",\"background-color:transparent\",\"-webkit-text-decoration-skip:objects\"]],[true,{\"a:hover\":true},[\"color:#0056b3\",\"text-decoration:underline\"]],[true,{\"a:not([href]):not([tabindex])\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"a:not([href]):not([tabindex]):focus\":true,\"a:not([href]):not([tabindex]):hover\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"a:not([href]):not([tabindex]):focus\":true},[\"outline:0\"]],[false,{\"code\":false,\"kbd\":false,\"pre\":false,\"samp\":false},[\"font-family:SFMono-Regular,Menlo,Monaco,Consolas,\\\"Liberation Mono\\\",\\\"Courier New\\\",monospace\",\"font-size:1em\"]],[false,{\"pre\":false},[\"margin-top:0\",\"margin-bottom:1rem\",\"overflow:auto\",\"-ms-overflow-style:scrollbar\"]],[false,{\"figure\":false},[\"margin:0 0 1rem\"]],[true,{\"amp-img\":true,\"amp-anim\":false},[\"vertical-align:middle\",\"border-style:none\"]],[false,{\"svg\":false},[\"overflow:hidden\",\"vertical-align:middle\"]],[false,{\"table\":false},[\"border-collapse:collapse\"]],[false,{\"caption\":false},[\"padding-top:.75rem\",\"padding-bottom:.75rem\",\"color:#6c757d\",\"text-align:left\",\"caption-side:bottom\"]],[false,{\"th\":false},[\"text-align:inherit\"]],[true,{\"label\":true},[\"display:inline-block\",\"margin-bottom:.5rem\"]],[true,{\"button\":true},[\"border-radius:0\"]],[true,{\"button:focus\":true},[\"outline:1px dotted\",\"outline:5px auto -webkit-focus-ring-color\"]],[true,{\"button\":true,\"input\":true,\"optgroup\":false,\"select\":false,\"textarea\":true},[\"margin:0\",\"font-family:inherit\",\"font-size:inherit\",\"line-height:inherit\"]],[true,{\"button\":true,\"input\":true},[\"overflow:visible\"]],[true,{\"button\":true,\"select\":false},[\"text-transform:none\"]],[true,{\"[type=reset]\":true,\"[type=submit]\":true,\"button\":true,\"html [type=button]\":true},[\"-webkit-appearance:button\"]],[true,{\"[type=button]::-moz-focus-inner\":true,\"[type=reset]::-moz-focus-inner\":true,\"[type=submit]::-moz-focus-inner\":true,\"button::-moz-focus-inner\":true},[\"padding:0\",\"border-style:none\"]],[true,{\"input[type=checkbox]\":true,\"input[type=radio]\":true},[\"box-sizing:border-box\",\"padding:0\"]],[true,{\"input[type=date]\":true,\"input[type=datetime-local]\":true,\"input[type=month]\":true,\"input[type=time]\":true},[\"-webkit-appearance:listbox\"]],[true,{\"textarea\":true},[\"overflow:auto\",\"resize:vertical\"]],[false,{\"fieldset\":false},[\"min-width:0\",\"padding:0\",\"margin:0\",\"border:0\"]],[false,{\"legend\":false},[\"display:block\",\"width:100%\",\"max-width:100%\",\"padding:0\",\"margin-bottom:.5rem\",\"font-size:1.5rem\",\"line-height:inherit\",\"color:inherit\",\"white-space:normal\"]],[false,{\"progress\":false},[\"vertical-align:baseline\"]],[true,{\"[type=number]::-webkit-inner-spin-button\":true,\"[type=number]::-webkit-outer-spin-button\":true},[\"height:auto\"]],[true,{\"[type=search]\":true},[\"outline-offset:-2px\",\"-webkit-appearance:none\"]],[true,{\"[type=search]::-webkit-search-cancel-button\":true,\"[type=search]::-webkit-search-decoration\":true},[\"-webkit-appearance:none\"]],[true,{\"::-webkit-file-upload-button\":true},[\"font:inherit\",\"-webkit-appearance:button\"]],[false,{\"output\":false},[\"display:inline-block\"]],[false,{\"summary\":false},[\"display:list-item\",\"cursor:pointer\"]],[true,{\"template\":true},[\"display:none\"]],[true,{\"[hidden]:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".h1\":false,\".h2\":false,\".h3\":false,\".h4\":false,\".h5\":false,\".h6\":false,\"h1\":true,\"h2\":true,\"h3\":true,\"h4\":true,\"h5\":true,\"h6\":true},[\"margin-bottom:.5rem\",\"font-family:inherit\",\"font-weight:500\",\"line-height:1.2\",\"color:inherit\"]],[true,{\".h1\":false,\"h1\":true},[\"font-size:2.5rem\"]],[true,{\".h2\":false,\"h2\":true},[\"font-size:2rem\"]],[true,{\".h3\":false,\"h3\":true},[\"font-size:1.75rem\"]],[true,{\".h4\":false,\"h4\":true},[\"font-size:1.5rem\"]],[true,{\".h5\":false,\"h5\":true},[\"font-size:1.25rem\"]],[true,{\".h6\":false,\"h6\":true},[\"font-size:1rem\"]],[false,{\".lead\":false},[\"font-size:1.25rem\",\"font-weight:300\"]],[false,{\".display-1\":false},[\"font-size:6rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\".display-2\":false},[\"font-size:5.5rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\".display-3\":false},[\"font-size:4.5rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\".display-4\":false},[\"font-size:3.5rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\"hr\":false},[\"margin-top:1rem\",\"margin-bottom:1rem\",\"border:0\",\"border-top:1px solid rgba(0,0,0,.1)\"]],[true,{\".small\":false,\"small\":true},[\"font-size:80%\",\"font-weight:400\"]],[false,{\".mark\":false,\"mark\":false},[\"padding:.2em\",\"background-color:#fcf8e3\"]],[false,{\".list-unstyled\":false},[\"padding-left:0\",\"list-style:none\"]],[false,{\".list-inline\":false},[\"padding-left:0\",\"list-style:none\"]],[false,{\".list-inline-item\":false},[\"display:inline-block\"]],[false,{\".list-inline-item:not(:last-child)\":false},[\"margin-right:.5rem\"]],[false,{\".initialism\":false},[\"font-size:90%\",\"text-transform:uppercase\"]],[false,{\".blockquote\":false},[\"margin-bottom:1rem\",\"font-size:1.25rem\"]],[false,{\".blockquote-footer\":false},[\"display:block\",\"font-size:80%\",\"color:#6c757d\"]],[false,{\".blockquote-footer::before\":false},[\"content:\\\"\\u2014\\u00a0\\\"\"]],[false,{\".img-fluid\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".img-thumbnail\":false},[\"padding:.25rem\",\"background-color:#fff\",\"border:1px solid #dee2e6\",\"border-radius:.25rem\",\"max-width:100%\",\"height:auto\"]],[false,{\".figure\":false},[\"display:inline-block\"]],[false,{\".figure-img\":false},[\"margin-bottom:.5rem\",\"line-height:1\"]],[false,{\".figure-caption\":false},[\"font-size:90%\",\"color:#6c757d\"]],[false,{\"code\":false},[\"font-size:87.5%\",\"color:#e83e8c\",\"word-break:break-word\"]],[false,{\"a>code\":false},[\"color:inherit\"]],[false,{\"kbd\":false},[\"padding:.2rem .4rem\",\"font-size:87.5%\",\"color:#fff\",\"background-color:#212529\",\"border-radius:.2rem\"]],[false,{\"kbd kbd\":false},[\"padding:0\",\"font-size:100%\",\"font-weight:700\"]],[false,{\"pre\":false},[\"display:block\",\"font-size:87.5%\",\"color:#212529\"]],[false,{\"pre code\":false},[\"font-size:inherit\",\"color:inherit\",\"word-break:normal\"]],[false,{\".pre-scrollable\":false},[\"max-height:340px\",\"overflow-y:scroll\"]],[true,{\".container\":true},[\"width:100%\",\"padding-right:15px\",\"padding-left:15px\",\"margin-right:auto\",\"margin-left:auto\"]],[true,\"@media (min-width:576px){\"],[true,{\".container\":true},[\"max-width:540px\"]],[true,\"}\"],[true,\"@media (min-width:768px){\"],[true,{\".container\":true},[\"max-width:720px\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[true,{\".container\":true},[\"max-width:960px\"]],[true,\"}\"],[true,\"@media (min-width:1200px){\"],[true,{\".container\":true},[\"max-width:1140px\"]],[true,\"}\"],[false,{\".container-fluid\":false},[\"width:100%\",\"padding-right:15px\",\"padding-left:15px\",\"margin-right:auto\",\"margin-left:auto\"]],[true,{\".row\":true},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"margin-right:-15px\",\"margin-left:-15px\"]],[false,{\".no-gutters\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".no-gutters>.col\":false,\".no-gutters>[class*=col-]\":false},[\"padding-right:0\",\"padding-left:0\"]],[true,{\".col\":false,\".col-1\":false,\".col-10\":true,\".col-11\":false,\".col-12\":true,\".col-2\":true,\".col-3\":false,\".col-4\":false,\".col-5\":false,\".col-6\":true,\".col-7\":false,\".col-8\":false,\".col-9\":false,\".col-auto\":false,\".col-lg\":false,\".col-lg-1\":false,\".col-lg-10\":false,\".col-lg-11\":false,\".col-lg-12\":true,\".col-lg-2\":true,\".col-lg-3\":true,\".col-lg-4\":true,\".col-lg-5\":false,\".col-lg-6\":true,\".col-lg-7\":false,\".col-lg-8\":false,\".col-lg-9\":true,\".col-lg-auto\":false,\".col-md\":false,\".col-md-1\":false,\".col-md-10\":true,\".col-md-11\":false,\".col-md-12\":true,\".col-md-2\":true,\".col-md-3\":false,\".col-md-4\":true,\".col-md-5\":false,\".col-md-6\":true,\".col-md-7\":false,\".col-md-8\":true,\".col-md-9\":false,\".col-md-auto\":false,\".col-sm\":false,\".col-sm-1\":false,\".col-sm-10\":false,\".col-sm-11\":false,\".col-sm-12\":true,\".col-sm-2\":false,\".col-sm-3\":false,\".col-sm-4\":false,\".col-sm-5\":false,\".col-sm-6\":false,\".col-sm-7\":false,\".col-sm-8\":false,\".col-sm-9\":false,\".col-sm-auto\":false,\".col-xl\":false,\".col-xl-1\":false,\".col-xl-10\":false,\".col-xl-11\":false,\".col-xl-12\":false,\".col-xl-2\":false,\".col-xl-3\":false,\".col-xl-4\":false,\".col-xl-5\":false,\".col-xl-6\":false,\".col-xl-7\":false,\".col-xl-8\":false,\".col-xl-9\":false,\".col-xl-auto\":false},[\"position:relative\",\"width:100%\",\"min-height:1px\",\"padding-right:15px\",\"padding-left:15px\"]],[false,{\".col\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[false,{\".col-4\":false},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[true,{\".col-6\":true},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[true,{\".col-10\":true},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-3\":false},[\"margin-left:25%\"]],[false,{\".offset-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-6\":false},[\"margin-left:50%\"]],[false,{\".offset-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-9\":false},[\"margin-left:75%\"]],[false,{\".offset-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-11\":false},[\"margin-left:91.666667%\"]],[true,\"@media (min-width:576px){\"],[false,{\".col-sm\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-sm-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-sm-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[false,{\".col-sm-2\":false},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-sm-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[false,{\".col-sm-4\":false},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-sm-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[false,{\".col-sm-6\":false},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-sm-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-sm-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-sm-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[false,{\".col-sm-10\":false},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-sm-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-sm-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-sm-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-sm-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-sm-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-sm-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-sm-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-sm-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-sm-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-sm-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-sm-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-sm-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-sm-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-sm-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-sm-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-sm-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-sm-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-sm-0\":false},[\"margin-left:0\"]],[false,{\".offset-sm-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-sm-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-sm-3\":false},[\"margin-left:25%\"]],[false,{\".offset-sm-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-sm-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-sm-6\":false},[\"margin-left:50%\"]],[false,{\".offset-sm-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-sm-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-sm-9\":false},[\"margin-left:75%\"]],[false,{\".offset-sm-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-sm-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[true,\"@media (min-width:768px){\"],[false,{\".col-md\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-md-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-md-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-md-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-md-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[true,{\".col-md-4\":true},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-md-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[true,{\".col-md-6\":true},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-md-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[true,{\".col-md-8\":true},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-md-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[true,{\".col-md-10\":true},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-md-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-md-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-md-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-md-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-md-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-md-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-md-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-md-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-md-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-md-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-md-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-md-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-md-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-md-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-md-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-md-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-md-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-md-0\":false},[\"margin-left:0\"]],[false,{\".offset-md-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-md-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-md-3\":false},[\"margin-left:25%\"]],[false,{\".offset-md-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-md-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-md-6\":false},[\"margin-left:50%\"]],[false,{\".offset-md-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-md-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-md-9\":false},[\"margin-left:75%\"]],[false,{\".offset-md-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-md-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[false,{\".col-lg\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-lg-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-lg-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-lg-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[true,{\".col-lg-3\":true},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[true,{\".col-lg-4\":true},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-lg-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[true,{\".col-lg-6\":true},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-lg-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-lg-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[true,{\".col-lg-9\":true},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[false,{\".col-lg-10\":false},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-lg-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-lg-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-lg-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-lg-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-lg-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-lg-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-lg-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-lg-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-lg-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-lg-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-lg-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-lg-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-lg-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-lg-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-lg-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-lg-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-lg-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-lg-0\":false},[\"margin-left:0\"]],[false,{\".offset-lg-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-lg-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-lg-3\":false},[\"margin-left:25%\"]],[false,{\".offset-lg-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-lg-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-lg-6\":false},[\"margin-left:50%\"]],[false,{\".offset-lg-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-lg-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-lg-9\":false},[\"margin-left:75%\"]],[false,{\".offset-lg-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-lg-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".col-xl\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-xl-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-xl-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[false,{\".col-xl-2\":false},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-xl-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[false,{\".col-xl-4\":false},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-xl-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[false,{\".col-xl-6\":false},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-xl-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-xl-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-xl-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[false,{\".col-xl-10\":false},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-xl-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[false,{\".col-xl-12\":false},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-xl-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-xl-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-xl-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-xl-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-xl-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-xl-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-xl-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-xl-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-xl-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-xl-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-xl-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-xl-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-xl-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-xl-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-xl-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-xl-0\":false},[\"margin-left:0\"]],[false,{\".offset-xl-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-xl-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-xl-3\":false},[\"margin-left:25%\"]],[false,{\".offset-xl-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-xl-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-xl-6\":false},[\"margin-left:50%\"]],[false,{\".offset-xl-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-xl-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-xl-9\":false},[\"margin-left:75%\"]],[false,{\".offset-xl-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-xl-11\":false},[\"margin-left:91.666667%\"]],[false,\"}\"],[false,{\".table\":false},[\"width:100%\",\"margin-bottom:1rem\",\"background-color:transparent\"]],[false,{\".table td\":false,\".table th\":false},[\"padding:.75rem\",\"vertical-align:top\",\"border-top:1px solid #dee2e6\"]],[false,{\".table thead th\":false},[\"vertical-align:bottom\",\"border-bottom:2px solid #dee2e6\"]],[false,{\".table tbody+tbody\":false},[\"border-top:2px solid #dee2e6\"]],[false,{\".table .table\":false},[\"background-color:#fff\"]],[false,{\".table-sm td\":false,\".table-sm th\":false},[\"padding:.3rem\"]],[false,{\".table-bordered\":false},[\"border:1px solid #dee2e6\"]],[false,{\".table-bordered td\":false,\".table-bordered th\":false},[\"border:1px solid #dee2e6\"]],[false,{\".table-bordered thead td\":false,\".table-bordered thead th\":false},[\"border-bottom-width:2px\"]],[false,{\".table-borderless tbody+tbody\":false,\".table-borderless td\":false,\".table-borderless th\":false,\".table-borderless thead th\":false},[\"border:0\"]],[false,{\".table-striped tbody tr:nth-of-type(odd)\":false},[\"background-color:rgba(0,0,0,.05)\"]],[false,{\".table-hover tbody tr:hover\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table-primary\":false,\".table-primary>td\":false,\".table-primary>th\":false},[\"background-color:#b8daff\"]],[false,{\".table-hover .table-primary:hover\":false},[\"background-color:#9fcdff\"]],[false,{\".table-hover .table-primary:hover>td\":false,\".table-hover .table-primary:hover>th\":false},[\"background-color:#9fcdff\"]],[false,{\".table-secondary\":false,\".table-secondary>td\":false,\".table-secondary>th\":false},[\"background-color:#d6d8db\"]],[false,{\".table-hover .table-secondary:hover\":false},[\"background-color:#c8cbcf\"]],[false,{\".table-hover .table-secondary:hover>td\":false,\".table-hover .table-secondary:hover>th\":false},[\"background-color:#c8cbcf\"]],[false,{\".table-success\":false,\".table-success>td\":false,\".table-success>th\":false},[\"background-color:#c3e6cb\"]],[false,{\".table-hover .table-success:hover\":false},[\"background-color:#b1dfbb\"]],[false,{\".table-hover .table-success:hover>td\":false,\".table-hover .table-success:hover>th\":false},[\"background-color:#b1dfbb\"]],[false,{\".table-info\":false,\".table-info>td\":false,\".table-info>th\":false},[\"background-color:#bee5eb\"]],[false,{\".table-hover .table-info:hover\":false},[\"background-color:#abdde5\"]],[false,{\".table-hover .table-info:hover>td\":false,\".table-hover .table-info:hover>th\":false},[\"background-color:#abdde5\"]],[false,{\".table-warning\":false,\".table-warning>td\":false,\".table-warning>th\":false},[\"background-color:#ffeeba\"]],[false,{\".table-hover .table-warning:hover\":false},[\"background-color:#ffe8a1\"]],[false,{\".table-hover .table-warning:hover>td\":false,\".table-hover .table-warning:hover>th\":false},[\"background-color:#ffe8a1\"]],[false,{\".table-danger\":false,\".table-danger>td\":false,\".table-danger>th\":false},[\"background-color:#f5c6cb\"]],[false,{\".table-hover .table-danger:hover\":false},[\"background-color:#f1b0b7\"]],[false,{\".table-hover .table-danger:hover>td\":false,\".table-hover .table-danger:hover>th\":false},[\"background-color:#f1b0b7\"]],[false,{\".table-light\":false,\".table-light>td\":false,\".table-light>th\":false},[\"background-color:#fdfdfe\"]],[false,{\".table-hover .table-light:hover\":false},[\"background-color:#ececf6\"]],[false,{\".table-hover .table-light:hover>td\":false,\".table-hover .table-light:hover>th\":false},[\"background-color:#ececf6\"]],[false,{\".table-dark\":false,\".table-dark>td\":false,\".table-dark>th\":false},[\"background-color:#c6c8ca\"]],[false,{\".table-hover .table-dark:hover\":false},[\"background-color:#b9bbbe\"]],[false,{\".table-hover .table-dark:hover>td\":false,\".table-hover .table-dark:hover>th\":false},[\"background-color:#b9bbbe\"]],[false,{\".table-active\":false,\".table-active>td\":false,\".table-active>th\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table-hover .table-active:hover\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table-hover .table-active:hover>td\":false,\".table-hover .table-active:hover>th\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table .thead-dark th\":false},[\"color:#fff\",\"background-color:#212529\",\"border-color:#32383e\"]],[false,{\".table .thead-light th\":false},[\"color:#495057\",\"background-color:#e9ecef\",\"border-color:#dee2e6\"]],[false,{\".table-dark\":false},[\"color:#fff\",\"background-color:#212529\"]],[false,{\".table-dark td\":false,\".table-dark th\":false,\".table-dark thead th\":false},[\"border-color:#32383e\"]],[false,{\".table-dark.table-bordered\":false},[\"border:0\"]],[false,{\".table-dark.table-striped tbody tr:nth-of-type(odd)\":false},[\"background-color:rgba(255,255,255,.05)\"]],[false,{\".table-dark.table-hover tbody tr:hover\":false},[\"background-color:rgba(255,255,255,.075)\"]],[false,\"@media (max-width:575.98px){\"],[false,{\".table-responsive-sm\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-sm>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:767.98px){\"],[false,{\".table-responsive-md\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-md>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:991.98px){\"],[false,{\".table-responsive-lg\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-lg>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:1199.98px){\"],[false,{\".table-responsive-xl\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-xl>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,{\".table-responsive\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive>.table-bordered\":false},[\"border:0\"]],[false,{\".form-control\":false},[\"display:block\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"padding:.375rem .75rem\",\"font-size:1rem\",\"line-height:1.5\",\"color:#495057\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid #ced4da\",\"border-radius:.25rem\",\"transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".form-control\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".form-control::-ms-expand\":false},[\"background-color:transparent\",\"border:0\"]],[false,{\".form-control:focus\":false},[\"color:#495057\",\"background-color:#fff\",\"border-color:#80bdff\",\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".form-control::-webkit-input-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control::-moz-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control:-ms-input-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control::-ms-input-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control::placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control:disabled\":false,\".form-control[readonly]\":false},[\"background-color:#e9ecef\",\"opacity:1\"]],[false,{\"select.form-control:focus::-ms-value\":false},[\"color:#495057\",\"background-color:#fff\"]],[false,{\".form-control-file\":false,\".form-control-range\":false},[\"display:block\",\"width:100%\"]],[false,{\".col-form-label\":false},[\"padding-top:calc(.375rem + 1px)\",\"padding-bottom:calc(.375rem + 1px)\",\"margin-bottom:0\",\"font-size:inherit\",\"line-height:1.5\"]],[false,{\".col-form-label-lg\":false},[\"padding-top:calc(.5rem + 1px)\",\"padding-bottom:calc(.5rem + 1px)\",\"font-size:1.25rem\",\"line-height:1.5\"]],[false,{\".col-form-label-sm\":false},[\"padding-top:calc(.25rem + 1px)\",\"padding-bottom:calc(.25rem + 1px)\",\"font-size:.875rem\",\"line-height:1.5\"]],[false,{\".form-control-plaintext\":false},[\"display:block\",\"width:100%\",\"padding-top:.375rem\",\"padding-bottom:.375rem\",\"margin-bottom:0\",\"line-height:1.5\",\"color:#212529\",\"background-color:transparent\",\"border:solid transparent\",\"border-width:1px 0\"]],[false,{\".form-control-plaintext.form-control-lg\":false,\".form-control-plaintext.form-control-sm\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,{\".form-control-sm\":false},[\"height:calc(1.8125rem + 2px)\",\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\",\"border-radius:.2rem\"]],[false,{\".form-control-lg\":false},[\"height:calc(2.875rem + 2px)\",\"padding:.5rem 1rem\",\"font-size:1.25rem\",\"line-height:1.5\",\"border-radius:.3rem\"]],[false,{\"select.form-control[multiple]\":false,\"select.form-control[size]\":false},[\"height:auto\"]],[false,{\"textarea.form-control\":false},[\"height:auto\"]],[false,{\".form-group\":false},[\"margin-bottom:1rem\"]],[false,{\".form-text\":false},[\"display:block\",\"margin-top:.25rem\"]],[false,{\".form-row\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"margin-right:-5px\",\"margin-left:-5px\"]],[false,{\".form-row>.col\":false,\".form-row>[class*=col-]\":false},[\"padding-right:5px\",\"padding-left:5px\"]],[false,{\".form-check\":false},[\"position:relative\",\"display:block\",\"padding-left:1.25rem\"]],[false,{\".form-check-input\":false},[\"position:absolute\",\"margin-top:.3rem\",\"margin-left:-1.25rem\"]],[false,{\".form-check-input:disabled~.form-check-label\":false},[\"color:#6c757d\"]],[false,{\".form-check-label\":false},[\"margin-bottom:0\"]],[false,{\".form-check-inline\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"-ms-flex-align:center\",\"align-items:center\",\"padding-left:0\",\"margin-right:.75rem\"]],[false,{\".form-check-inline .form-check-input\":false},[\"position:static\",\"margin-top:0\",\"margin-right:.3125rem\",\"margin-left:0\"]],[false,{\".valid-feedback\":false},[\"display:none\",\"width:100%\",\"margin-top:.25rem\",\"font-size:80%\",\"color:#28a745\"]],[false,{\".valid-tooltip\":false},[\"position:absolute\",\"top:100%\",\"z-index:5\",\"display:none\",\"max-width:100%\",\"padding:.25rem .5rem\",\"margin-top:.1rem\",\"font-size:.875rem\",\"line-height:1.5\",\"color:#fff\",\"background-color:rgba(40,167,69,.9)\",\"border-radius:.25rem\"]],[false,{\".custom-select.is-valid\":false,\".form-control.is-valid\":false,\".was-validated .custom-select:valid\":false,\".was-validated .form-control:valid\":false},[\"border-color:#28a745\"]],[false,{\".custom-select.is-valid:focus\":false,\".form-control.is-valid:focus\":false,\".was-validated .custom-select:valid:focus\":false,\".was-validated .form-control:valid:focus\":false},[\"border-color:#28a745\",\"box-shadow:0 0 0 .2rem rgba(40,167,69,.25)\"]],[false,{\".custom-select.is-valid~.valid-feedback\":false,\".custom-select.is-valid~.valid-tooltip\":false,\".form-control.is-valid~.valid-feedback\":false,\".form-control.is-valid~.valid-tooltip\":false,\".was-validated .custom-select:valid~.valid-feedback\":false,\".was-validated .custom-select:valid~.valid-tooltip\":false,\".was-validated .form-control:valid~.valid-feedback\":false,\".was-validated .form-control:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".form-control-file.is-valid~.valid-feedback\":false,\".form-control-file.is-valid~.valid-tooltip\":false,\".was-validated .form-control-file:valid~.valid-feedback\":false,\".was-validated .form-control-file:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".form-check-input.is-valid~.form-check-label\":false,\".was-validated .form-check-input:valid~.form-check-label\":false},[\"color:#28a745\"]],[false,{\".form-check-input.is-valid~.valid-feedback\":false,\".form-check-input.is-valid~.valid-tooltip\":false,\".was-validated .form-check-input:valid~.valid-feedback\":false,\".was-validated .form-check-input:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-valid~.custom-control-label\":false,\".was-validated .custom-control-input:valid~.custom-control-label\":false},[\"color:#28a745\"]],[false,{\".custom-control-input.is-valid~.custom-control-label::before\":false,\".was-validated .custom-control-input:valid~.custom-control-label::before\":false},[\"background-color:#71dd8a\"]],[false,{\".custom-control-input.is-valid~.valid-feedback\":false,\".custom-control-input.is-valid~.valid-tooltip\":false,\".was-validated .custom-control-input:valid~.valid-feedback\":false,\".was-validated .custom-control-input:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-valid:checked~.custom-control-label::before\":false,\".was-validated .custom-control-input:valid:checked~.custom-control-label::before\":false},[\"background-color:#34ce57\"]],[false,{\".custom-control-input.is-valid:focus~.custom-control-label::before\":false,\".was-validated .custom-control-input:valid:focus~.custom-control-label::before\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(40,167,69,.25)\"]],[false,{\".custom-file-input.is-valid~.custom-file-label\":false,\".was-validated .custom-file-input:valid~.custom-file-label\":false},[\"border-color:#28a745\"]],[false,{\".custom-file-input.is-valid~.custom-file-label::after\":false,\".was-validated .custom-file-input:valid~.custom-file-label::after\":false},[\"border-color:inherit\"]],[false,{\".custom-file-input.is-valid~.valid-feedback\":false,\".custom-file-input.is-valid~.valid-tooltip\":false,\".was-validated .custom-file-input:valid~.valid-feedback\":false,\".was-validated .custom-file-input:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".custom-file-input.is-valid:focus~.custom-file-label\":false,\".was-validated .custom-file-input:valid:focus~.custom-file-label\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.25)\"]],[false,{\".invalid-feedback\":false},[\"display:none\",\"width:100%\",\"margin-top:.25rem\",\"font-size:80%\",\"color:#dc3545\"]],[false,{\".invalid-tooltip\":false},[\"position:absolute\",\"top:100%\",\"z-index:5\",\"display:none\",\"max-width:100%\",\"padding:.25rem .5rem\",\"margin-top:.1rem\",\"font-size:.875rem\",\"line-height:1.5\",\"color:#fff\",\"background-color:rgba(220,53,69,.9)\",\"border-radius:.25rem\"]],[false,{\".custom-select.is-invalid\":false,\".form-control.is-invalid\":false,\".was-validated .custom-select:invalid\":false,\".was-validated .form-control:invalid\":false},[\"border-color:#dc3545\"]],[false,{\".custom-select.is-invalid:focus\":false,\".form-control.is-invalid:focus\":false,\".was-validated .custom-select:invalid:focus\":false,\".was-validated .form-control:invalid:focus\":false},[\"border-color:#dc3545\",\"box-shadow:0 0 0 .2rem rgba(220,53,69,.25)\"]],[false,{\".custom-select.is-invalid~.invalid-feedback\":false,\".custom-select.is-invalid~.invalid-tooltip\":false,\".form-control.is-invalid~.invalid-feedback\":false,\".form-control.is-invalid~.invalid-tooltip\":false,\".was-validated .custom-select:invalid~.invalid-feedback\":false,\".was-validated .custom-select:invalid~.invalid-tooltip\":false,\".was-validated .form-control:invalid~.invalid-feedback\":false,\".was-validated .form-control:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".form-control-file.is-invalid~.invalid-feedback\":false,\".form-control-file.is-invalid~.invalid-tooltip\":false,\".was-validated .form-control-file:invalid~.invalid-feedback\":false,\".was-validated .form-control-file:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".form-check-input.is-invalid~.form-check-label\":false,\".was-validated .form-check-input:invalid~.form-check-label\":false},[\"color:#dc3545\"]],[false,{\".form-check-input.is-invalid~.invalid-feedback\":false,\".form-check-input.is-invalid~.invalid-tooltip\":false,\".was-validated .form-check-input:invalid~.invalid-feedback\":false,\".was-validated .form-check-input:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-invalid~.custom-control-label\":false,\".was-validated .custom-control-input:invalid~.custom-control-label\":false},[\"color:#dc3545\"]],[false,{\".custom-control-input.is-invalid~.custom-control-label::before\":false,\".was-validated .custom-control-input:invalid~.custom-control-label::before\":false},[\"background-color:#efa2a9\"]],[false,{\".custom-control-input.is-invalid~.invalid-feedback\":false,\".custom-control-input.is-invalid~.invalid-tooltip\":false,\".was-validated .custom-control-input:invalid~.invalid-feedback\":false,\".was-validated .custom-control-input:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-invalid:checked~.custom-control-label::before\":false,\".was-validated .custom-control-input:invalid:checked~.custom-control-label::before\":false},[\"background-color:#e4606d\"]],[false,{\".custom-control-input.is-invalid:focus~.custom-control-label::before\":false,\".was-validated .custom-control-input:invalid:focus~.custom-control-label::before\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(220,53,69,.25)\"]],[false,{\".custom-file-input.is-invalid~.custom-file-label\":false,\".was-validated .custom-file-input:invalid~.custom-file-label\":false},[\"border-color:#dc3545\"]],[false,{\".custom-file-input.is-invalid~.custom-file-label::after\":false,\".was-validated .custom-file-input:invalid~.custom-file-label::after\":false},[\"border-color:inherit\"]],[false,{\".custom-file-input.is-invalid~.invalid-feedback\":false,\".custom-file-input.is-invalid~.invalid-tooltip\":false,\".was-validated .custom-file-input:invalid~.invalid-feedback\":false,\".was-validated .custom-file-input:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".custom-file-input.is-invalid:focus~.custom-file-label\":false,\".was-validated .custom-file-input:invalid:focus~.custom-file-label\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.25)\"]],[false,{\".form-inline\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".form-inline .form-check\":false},[\"width:100%\"]],[false,\"@media (min-width:576px){\"],[false,{\".form-inline label\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"margin-bottom:0\"]],[false,{\".form-inline .form-group\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\",\"-ms-flex-align:center\",\"align-items:center\",\"margin-bottom:0\"]],[false,{\".form-inline .form-control\":false},[\"display:inline-block\",\"width:auto\",\"vertical-align:middle\"]],[false,{\".form-inline .form-control-plaintext\":false},[\"display:inline-block\"]],[false,{\".form-inline .custom-select\":false,\".form-inline .input-group\":false},[\"width:auto\"]],[false,{\".form-inline .form-check\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"width:auto\",\"padding-left:0\"]],[false,{\".form-inline .form-check-input\":false},[\"position:relative\",\"margin-top:0\",\"margin-right:.25rem\",\"margin-left:0\"]],[false,{\".form-inline .custom-control\":false},[\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".form-inline .custom-control-label\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".btn\":false},[\"display:inline-block\",\"font-weight:400\",\"text-align:center\",\"white-space:nowrap\",\"vertical-align:middle\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\",\"border:1px solid transparent\",\"padding:.375rem .75rem\",\"font-size:1rem\",\"line-height:1.5\",\"border-radius:.25rem\",\"transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".btn\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".btn:focus\":false,\".btn:hover\":false},[\"text-decoration:none\"]],[false,{\".btn:focus-within\":false,\".btn:focus\":false},[\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".btn.disabled\":false,\".btn:disabled\":false},[\"opacity:.65\"]],[false,{\".btn:not(:disabled):not(.disabled)\":false},[\"cursor:pointer\"]],[false,{\"a.btn.disabled\":false,\"fieldset:disabled a.btn\":false},[\"pointer-events:none\"]],[false,{\".btn-primary\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-primary:hover\":false},[\"color:#fff\",\"background-color:#0069d9\",\"border-color:#0062cc\"]],[false,{\".btn-primary:focus-within\":false,\".btn-primary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-primary.disabled\":false,\".btn-primary:disabled\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-primary:not(:disabled):not(.disabled).active\":false,\".btn-primary:not(:disabled):not(.disabled):active\":false,\".show>.btn-primary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#0062cc\",\"border-color:#005cbf\"]],[false,{\".btn-primary:not(:disabled):not(.disabled).active:focus\":false,\".btn-primary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-primary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-secondary\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-secondary:hover\":false},[\"color:#fff\",\"background-color:#5a6268\",\"border-color:#545b62\"]],[false,{\".btn-secondary:focus-within\":false,\".btn-secondary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-secondary.disabled\":false,\".btn-secondary:disabled\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-secondary:not(:disabled):not(.disabled).active\":false,\".btn-secondary:not(:disabled):not(.disabled):active\":false,\".show>.btn-secondary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#545b62\",\"border-color:#4e555b\"]],[false,{\".btn-secondary:not(:disabled):not(.disabled).active:focus\":false,\".btn-secondary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-secondary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-success\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-success:hover\":false},[\"color:#fff\",\"background-color:#218838\",\"border-color:#1e7e34\"]],[false,{\".btn-success:focus-within\":false,\".btn-success:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-success.disabled\":false,\".btn-success:disabled\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-success:not(:disabled):not(.disabled).active\":false,\".btn-success:not(:disabled):not(.disabled):active\":false,\".show>.btn-success.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#1e7e34\",\"border-color:#1c7430\"]],[false,{\".btn-success:not(:disabled):not(.disabled).active:focus\":false,\".btn-success:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-success.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-info\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-info:hover\":false},[\"color:#fff\",\"background-color:#138496\",\"border-color:#117a8b\"]],[false,{\".btn-info:focus-within\":false,\".btn-info:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-info.disabled\":false,\".btn-info:disabled\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-info:not(:disabled):not(.disabled).active\":false,\".btn-info:not(:disabled):not(.disabled):active\":false,\".show>.btn-info.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#117a8b\",\"border-color:#10707f\"]],[false,{\".btn-info:not(:disabled):not(.disabled).active:focus\":false,\".btn-info:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-info.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-warning\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-warning:hover\":false},[\"color:#212529\",\"background-color:#e0a800\",\"border-color:#d39e00\"]],[false,{\".btn-warning:focus-within\":false,\".btn-warning:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-warning.disabled\":false,\".btn-warning:disabled\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-warning:not(:disabled):not(.disabled).active\":false,\".btn-warning:not(:disabled):not(.disabled):active\":false,\".show>.btn-warning.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#d39e00\",\"border-color:#c69500\"]],[false,{\".btn-warning:not(:disabled):not(.disabled).active:focus\":false,\".btn-warning:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-warning.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-danger\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-danger:hover\":false},[\"color:#fff\",\"background-color:#c82333\",\"border-color:#bd2130\"]],[false,{\".btn-danger:focus-within\":false,\".btn-danger:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-danger.disabled\":false,\".btn-danger:disabled\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-danger:not(:disabled):not(.disabled).active\":false,\".btn-danger:not(:disabled):not(.disabled):active\":false,\".show>.btn-danger.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#bd2130\",\"border-color:#b21f2d\"]],[false,{\".btn-danger:not(:disabled):not(.disabled).active:focus\":false,\".btn-danger:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-danger.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-light\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-light:hover\":false},[\"color:#212529\",\"background-color:#e2e6ea\",\"border-color:#dae0e5\"]],[false,{\".btn-light:focus-within\":false,\".btn-light:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-light.disabled\":false,\".btn-light:disabled\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-light:not(:disabled):not(.disabled).active\":false,\".btn-light:not(:disabled):not(.disabled):active\":false,\".show>.btn-light.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#dae0e5\",\"border-color:#d3d9df\"]],[false,{\".btn-light:not(:disabled):not(.disabled).active:focus\":false,\".btn-light:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-light.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-dark\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-dark:hover\":false},[\"color:#fff\",\"background-color:#23272b\",\"border-color:#1d2124\"]],[false,{\".btn-dark:focus-within\":false,\".btn-dark:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-dark.disabled\":false,\".btn-dark:disabled\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-dark:not(:disabled):not(.disabled).active\":false,\".btn-dark:not(:disabled):not(.disabled):active\":false,\".show>.btn-dark.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#1d2124\",\"border-color:#171a1d\"]],[false,{\".btn-dark:not(:disabled):not(.disabled).active:focus\":false,\".btn-dark:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-dark.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-outline-primary\":false},[\"color:#007bff\",\"background-color:transparent\",\"background-image:none\",\"border-color:#007bff\"]],[false,{\".btn-outline-primary:hover\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-outline-primary:focus-within\":false,\".btn-outline-primary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-outline-primary.disabled\":false,\".btn-outline-primary:disabled\":false},[\"color:#007bff\",\"background-color:transparent\"]],[false,{\".btn-outline-primary:not(:disabled):not(.disabled).active\":false,\".btn-outline-primary:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-primary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-outline-primary:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-primary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-primary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-outline-secondary\":false},[\"color:#6c757d\",\"background-color:transparent\",\"background-image:none\",\"border-color:#6c757d\"]],[false,{\".btn-outline-secondary:hover\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-outline-secondary:focus-within\":false,\".btn-outline-secondary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-outline-secondary.disabled\":false,\".btn-outline-secondary:disabled\":false},[\"color:#6c757d\",\"background-color:transparent\"]],[false,{\".btn-outline-secondary:not(:disabled):not(.disabled).active\":false,\".btn-outline-secondary:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-secondary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-outline-secondary:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-secondary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-secondary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-outline-success\":false},[\"color:#28a745\",\"background-color:transparent\",\"background-image:none\",\"border-color:#28a745\"]],[false,{\".btn-outline-success:hover\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-outline-success:focus-within\":false,\".btn-outline-success:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-outline-success.disabled\":false,\".btn-outline-success:disabled\":false},[\"color:#28a745\",\"background-color:transparent\"]],[false,{\".btn-outline-success:not(:disabled):not(.disabled).active\":false,\".btn-outline-success:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-success.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-outline-success:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-success:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-success.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-outline-info\":false},[\"color:#17a2b8\",\"background-color:transparent\",\"background-image:none\",\"border-color:#17a2b8\"]],[false,{\".btn-outline-info:hover\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-outline-info:focus-within\":false,\".btn-outline-info:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-outline-info.disabled\":false,\".btn-outline-info:disabled\":false},[\"color:#17a2b8\",\"background-color:transparent\"]],[false,{\".btn-outline-info:not(:disabled):not(.disabled).active\":false,\".btn-outline-info:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-info.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-outline-info:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-info:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-info.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-outline-warning\":false},[\"color:#ffc107\",\"background-color:transparent\",\"background-image:none\",\"border-color:#ffc107\"]],[false,{\".btn-outline-warning:hover\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-outline-warning:focus-within\":false,\".btn-outline-warning:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-outline-warning.disabled\":false,\".btn-outline-warning:disabled\":false},[\"color:#ffc107\",\"background-color:transparent\"]],[false,{\".btn-outline-warning:not(:disabled):not(.disabled).active\":false,\".btn-outline-warning:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-warning.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-outline-warning:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-warning:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-warning.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-outline-danger\":false},[\"color:#dc3545\",\"background-color:transparent\",\"background-image:none\",\"border-color:#dc3545\"]],[false,{\".btn-outline-danger:hover\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-outline-danger:focus-within\":false,\".btn-outline-danger:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-outline-danger.disabled\":false,\".btn-outline-danger:disabled\":false},[\"color:#dc3545\",\"background-color:transparent\"]],[false,{\".btn-outline-danger:not(:disabled):not(.disabled).active\":false,\".btn-outline-danger:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-danger.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-outline-danger:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-danger:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-danger.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-outline-light\":false},[\"color:#f8f9fa\",\"background-color:transparent\",\"background-image:none\",\"border-color:#f8f9fa\"]],[false,{\".btn-outline-light:hover\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-outline-light:focus-within\":false,\".btn-outline-light:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-outline-light.disabled\":false,\".btn-outline-light:disabled\":false},[\"color:#f8f9fa\",\"background-color:transparent\"]],[false,{\".btn-outline-light:not(:disabled):not(.disabled).active\":false,\".btn-outline-light:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-light.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-outline-light:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-light:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-light.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-outline-dark\":false},[\"color:#343a40\",\"background-color:transparent\",\"background-image:none\",\"border-color:#343a40\"]],[false,{\".btn-outline-dark:hover\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-outline-dark:focus-within\":false,\".btn-outline-dark:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-outline-dark.disabled\":false,\".btn-outline-dark:disabled\":false},[\"color:#343a40\",\"background-color:transparent\"]],[false,{\".btn-outline-dark:not(:disabled):not(.disabled).active\":false,\".btn-outline-dark:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-dark.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-outline-dark:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-dark:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-dark.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-link\":false},[\"font-weight:400\",\"color:#007bff\",\"background-color:transparent\"]],[false,{\".btn-link:hover\":false},[\"color:#0056b3\",\"text-decoration:underline\",\"background-color:transparent\",\"border-color:transparent\"]],[false,{\".btn-link:focus-within\":false,\".btn-link:focus\":false},[\"text-decoration:underline\",\"border-color:transparent\",\"box-shadow:none\"]],[false,{\".btn-link.disabled\":false,\".btn-link:disabled\":false},[\"color:#6c757d\",\"pointer-events:none\"]],[false,{\".btn-group-lg>.btn\":false,\".btn-lg\":false},[\"padding:.5rem 1rem\",\"font-size:1.25rem\",\"line-height:1.5\",\"border-radius:.3rem\"]],[false,{\".btn-group-sm>.btn\":false,\".btn-sm\":false},[\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\",\"border-radius:.2rem\"]],[false,{\".btn-block\":false},[\"display:block\",\"width:100%\"]],[false,{\".btn-block+.btn-block\":false},[\"margin-top:.5rem\"]],[false,{\"input[type=button].btn-block\":false,\"input[type=reset].btn-block\":false,\"input[type=submit].btn-block\":false},[\"width:100%\"]],[false,{\".fade\":false},[\"transition:opacity .15s linear\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".fade\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".fade:not(.show)\":false},[\"opacity:0\"]],[true,{\".collapse:not(.show)\":true},[\"display:none\"]],[false,{\".collapsing\":false},[\"position:relative\",\"height:0\",\"overflow:hidden\",\"transition:height .35s ease\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".collapsing\":false},[\"transition:none\"]],[false,\"}\"],[true,{\".dropdown\":true,\".dropleft\":false,\".dropright\":false,\".dropup\":false},[\"position:relative\"]],[true,{\".dropdown-toggle::after\":true},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:.3em solid\",\"border-right:.3em solid transparent\",\"border-bottom:0\",\"border-left:.3em solid transparent\"]],[true,{\".dropdown-toggle:empty::after\":true},[\"margin-left:0\"]],[true,{\".dropdown-menu\":true},[\"position:absolute\",\"top:100%\",\"left:0\",\"z-index:1000\",\"display:none\",\"float:left\",\"min-width:10rem\",\"padding:.5rem 0\",\"margin:.125rem 0 0\",\"font-size:1rem\",\"color:#212529\",\"text-align:left\",\"list-style:none\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid rgba(0,0,0,.15)\",\"border-radius:.25rem\"]],[false,{\".dropdown-menu-right\":false},[\"right:0\",\"left:auto\"]],[false,{\".dropup .dropdown-menu\":false},[\"top:auto\",\"bottom:100%\",\"margin-top:0\",\"margin-bottom:.125rem\"]],[false,{\".dropup .dropdown-toggle::after\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:0\",\"border-right:.3em solid transparent\",\"border-bottom:.3em solid\",\"border-left:.3em solid transparent\"]],[false,{\".dropup .dropdown-toggle:empty::after\":false},[\"margin-left:0\"]],[false,{\".dropright .dropdown-menu\":false},[\"top:0\",\"right:auto\",\"left:100%\",\"margin-top:0\",\"margin-left:.125rem\"]],[false,{\".dropright .dropdown-toggle::after\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:.3em solid transparent\",\"border-right:0\",\"border-bottom:.3em solid transparent\",\"border-left:.3em solid\"]],[false,{\".dropright .dropdown-toggle:empty::after\":false},[\"margin-left:0\"]],[false,{\".dropright .dropdown-toggle::after\":false},[\"vertical-align:0\"]],[false,{\".dropleft .dropdown-menu\":false},[\"top:0\",\"right:100%\",\"left:auto\",\"margin-top:0\",\"margin-right:.125rem\"]],[false,{\".dropleft .dropdown-toggle::after\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\"]],[false,{\".dropleft .dropdown-toggle::after\":false},[\"display:none\"]],[false,{\".dropleft .dropdown-toggle::before\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-right:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:.3em solid transparent\",\"border-right:.3em solid\",\"border-bottom:.3em solid transparent\"]],[false,{\".dropleft .dropdown-toggle:empty::after\":false},[\"margin-left:0\"]],[false,{\".dropleft .dropdown-toggle::before\":false},[\"vertical-align:0\"]],[false,{\".dropdown-menu[x-placement^=bottom]\":false,\".dropdown-menu[x-placement^=left]\":false,\".dropdown-menu[x-placement^=right]\":false,\".dropdown-menu[x-placement^=top]\":false},[\"right:auto\",\"bottom:auto\"]],[false,{\".dropdown-divider\":false},[\"height:0\",\"margin:.5rem 0\",\"overflow:hidden\",\"border-top:1px solid #e9ecef\"]],[false,{\".dropdown-item\":false},[\"display:block\",\"width:100%\",\"padding:.25rem 1.5rem\",\"clear:both\",\"font-weight:400\",\"color:#212529\",\"text-align:inherit\",\"white-space:nowrap\",\"background-color:transparent\",\"border:0\"]],[false,{\".dropdown-item:focus\":false,\".dropdown-item:hover\":false},[\"color:#16181b\",\"text-decoration:none\",\"background-color:#f8f9fa\"]],[false,{\".dropdown-item.active\":false,\".dropdown-item:active\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#007bff\"]],[false,{\".dropdown-item.disabled\":false,\".dropdown-item:disabled\":false},[\"color:#6c757d\",\"background-color:transparent\"]],[true,{\".dropdown-menu.show\":true},[\"display:block\"]],[false,{\".dropdown-header\":false},[\"display:block\",\"padding:.5rem 1.5rem\",\"margin-bottom:0\",\"font-size:.875rem\",\"color:#6c757d\",\"white-space:nowrap\"]],[false,{\".dropdown-item-text\":false},[\"display:block\",\"padding:.25rem 1.5rem\",\"color:#212529\"]],[false,{\".btn-group\":false,\".btn-group-vertical\":false},[\"position:relative\",\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"vertical-align:middle\"]],[false,{\".btn-group-vertical>.btn\":false,\".btn-group>.btn\":false},[\"position:relative\",\"-ms-flex:0 1 auto\",\"flex:0 1 auto\"]],[false,{\".btn-group-vertical>.btn:hover\":false,\".btn-group>.btn:hover\":false},[\"z-index:1\"]],[false,{\".btn-group-vertical>.btn.active\":false,\".btn-group-vertical>.btn:active\":false,\".btn-group-vertical>.btn:focus\":false,\".btn-group>.btn.active\":false,\".btn-group>.btn:active\":false,\".btn-group>.btn:focus\":false},[\"z-index:1\"]],[false,{\".btn-group .btn+.btn\":false,\".btn-group .btn+.btn-group\":false,\".btn-group .btn-group+.btn\":false,\".btn-group .btn-group+.btn-group\":false,\".btn-group-vertical .btn+.btn\":false,\".btn-group-vertical .btn+.btn-group\":false,\".btn-group-vertical .btn-group+.btn\":false,\".btn-group-vertical .btn-group+.btn-group\":false},[\"margin-left:-1px\"]],[false,{\".btn-toolbar\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".btn-toolbar .input-group\":false},[\"width:auto\"]],[false,{\".btn-group>.btn:first-child\":false},[\"margin-left:0\"]],[false,{\".btn-group>.btn-group:not(:last-child)>.btn\":false,\".btn-group>.btn:not(:last-child):not(.dropdown-toggle)\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".btn-group>.btn-group:not(:first-child)>.btn\":false,\".btn-group>.btn:not(:first-child)\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".dropdown-toggle-split\":false},[\"padding-right:.5625rem\",\"padding-left:.5625rem\"]],[false,{\".dropdown-toggle-split::after\":false,\".dropright .dropdown-toggle-split::after\":false,\".dropup .dropdown-toggle-split::after\":false},[\"margin-left:0\"]],[false,{\".dropleft .dropdown-toggle-split::before\":false},[\"margin-right:0\"]],[false,{\".btn-group-sm>.btn+.dropdown-toggle-split\":false,\".btn-sm+.dropdown-toggle-split\":false},[\"padding-right:.375rem\",\"padding-left:.375rem\"]],[false,{\".btn-group-lg>.btn+.dropdown-toggle-split\":false,\".btn-lg+.dropdown-toggle-split\":false},[\"padding-right:.75rem\",\"padding-left:.75rem\"]],[false,{\".btn-group-vertical\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\",\"-ms-flex-align:start\",\"align-items:flex-start\",\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".btn-group-vertical .btn\":false,\".btn-group-vertical .btn-group\":false},[\"width:100%\"]],[false,{\".btn-group-vertical>.btn+.btn\":false,\".btn-group-vertical>.btn+.btn-group\":false,\".btn-group-vertical>.btn-group+.btn\":false,\".btn-group-vertical>.btn-group+.btn-group\":false},[\"margin-top:-1px\",\"margin-left:0\"]],[false,{\".btn-group-vertical>.btn-group:not(:last-child)>.btn\":false,\".btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle)\":false},[\"border-bottom-right-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".btn-group-vertical>.btn-group:not(:first-child)>.btn\":false,\".btn-group-vertical>.btn:not(:first-child)\":false},[\"border-top-left-radius:0\",\"border-top-right-radius:0\"]],[false,{\".btn-group-toggle>.btn\":false,\".btn-group-toggle>.btn-group>.btn\":false},[\"margin-bottom:0\"]],[false,{\".btn-group-toggle>.btn input[type=checkbox]\":false,\".btn-group-toggle>.btn input[type=radio]\":false,\".btn-group-toggle>.btn-group>.btn input[type=checkbox]\":false,\".btn-group-toggle>.btn-group>.btn input[type=radio]\":false},[\"position:absolute\",\"clip:rect(0,0,0,0)\",\"pointer-events:none\"]],[false,{\".input-group\":false},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-align:stretch\",\"align-items:stretch\",\"width:100%\"]],[false,{\".input-group>.custom-file\":false,\".input-group>.custom-select\":false,\".input-group>.form-control\":false},[\"position:relative\",\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"width:1%\",\"margin-bottom:0\"]],[false,{\".input-group>.custom-file+.custom-file\":false,\".input-group>.custom-file+.custom-select\":false,\".input-group>.custom-file+.form-control\":false,\".input-group>.custom-select+.custom-file\":false,\".input-group>.custom-select+.custom-select\":false,\".input-group>.custom-select+.form-control\":false,\".input-group>.form-control+.custom-file\":false,\".input-group>.form-control+.custom-select\":false,\".input-group>.form-control+.form-control\":false},[\"margin-left:-1px\"]],[false,{\".input-group>.custom-file .custom-file-input:focus~.custom-file-label\":false,\".input-group>.custom-select:focus\":false,\".input-group>.form-control:focus\":false},[\"z-index:3\"]],[false,{\".input-group>.custom-file .custom-file-input:focus\":false},[\"z-index:4\"]],[false,{\".input-group>.custom-select:not(:last-child)\":false,\".input-group>.form-control:not(:last-child)\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".input-group>.custom-select:not(:first-child)\":false,\".input-group>.form-control:not(:first-child)\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".input-group>.custom-file\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".input-group>.custom-file:not(:last-child) .custom-file-label\":false,\".input-group>.custom-file:not(:last-child) .custom-file-label::after\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".input-group>.custom-file:not(:first-child) .custom-file-label\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".input-group-append\":false,\".input-group-prepend\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".input-group-append .btn\":false,\".input-group-prepend .btn\":false},[\"position:relative\",\"z-index:2\"]],[false,{\".input-group-append .btn+.btn\":false,\".input-group-append .btn+.input-group-text\":false,\".input-group-append .input-group-text+.btn\":false,\".input-group-append .input-group-text+.input-group-text\":false,\".input-group-prepend .btn+.btn\":false,\".input-group-prepend .btn+.input-group-text\":false,\".input-group-prepend .input-group-text+.btn\":false,\".input-group-prepend .input-group-text+.input-group-text\":false},[\"margin-left:-1px\"]],[false,{\".input-group-prepend\":false},[\"margin-right:-1px\"]],[false,{\".input-group-append\":false},[\"margin-left:-1px\"]],[false,{\".input-group-text\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"padding:.375rem .75rem\",\"margin-bottom:0\",\"font-size:1rem\",\"font-weight:400\",\"line-height:1.5\",\"color:#495057\",\"text-align:center\",\"white-space:nowrap\",\"background-color:#e9ecef\",\"border:1px solid #ced4da\",\"border-radius:.25rem\"]],[false,{\".input-group-text input[type=checkbox]\":false,\".input-group-text input[type=radio]\":false},[\"margin-top:0\"]],[false,{\".input-group-lg>.form-control\":false,\".input-group-lg>.input-group-append>.btn\":false,\".input-group-lg>.input-group-append>.input-group-text\":false,\".input-group-lg>.input-group-prepend>.btn\":false,\".input-group-lg>.input-group-prepend>.input-group-text\":false},[\"height:calc(2.875rem + 2px)\",\"padding:.5rem 1rem\",\"font-size:1.25rem\",\"line-height:1.5\",\"border-radius:.3rem\"]],[false,{\".input-group-sm>.form-control\":false,\".input-group-sm>.input-group-append>.btn\":false,\".input-group-sm>.input-group-append>.input-group-text\":false,\".input-group-sm>.input-group-prepend>.btn\":false,\".input-group-sm>.input-group-prepend>.input-group-text\":false},[\"height:calc(1.8125rem + 2px)\",\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\",\"border-radius:.2rem\"]],[false,{\".input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle)\":false,\".input-group>.input-group-append:last-child>.input-group-text:not(:last-child)\":false,\".input-group>.input-group-append:not(:last-child)>.btn\":false,\".input-group>.input-group-append:not(:last-child)>.input-group-text\":false,\".input-group>.input-group-prepend>.btn\":false,\".input-group>.input-group-prepend>.input-group-text\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".input-group>.input-group-append>.btn\":false,\".input-group>.input-group-append>.input-group-text\":false,\".input-group>.input-group-prepend:first-child>.btn:not(:first-child)\":false,\".input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child)\":false,\".input-group>.input-group-prepend:not(:first-child)>.btn\":false,\".input-group>.input-group-prepend:not(:first-child)>.input-group-text\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".custom-control\":false},[\"position:relative\",\"display:block\",\"min-height:1.5rem\",\"padding-left:1.5rem\"]],[false,{\".custom-control-inline\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"margin-right:1rem\"]],[false,{\".custom-control-input\":false},[\"position:absolute\",\"z-index:-1\",\"opacity:0\"]],[false,{\".custom-control-input:checked~.custom-control-label::before\":false},[\"color:#fff\",\"background-color:#007bff\"]],[false,{\".custom-control-input:focus~.custom-control-label::before\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-control-input:active~.custom-control-label::before\":false},[\"color:#fff\",\"background-color:#b3d7ff\"]],[false,{\".custom-control-input:disabled~.custom-control-label\":false},[\"color:#6c757d\"]],[false,{\".custom-control-input:disabled~.custom-control-label::before\":false},[\"background-color:#e9ecef\"]],[false,{\".custom-control-label\":false},[\"position:relative\",\"margin-bottom:0\"]],[false,{\".custom-control-label::before\":false},[\"position:absolute\",\"top:.25rem\",\"left:-1.5rem\",\"display:block\",\"width:1rem\",\"height:1rem\",\"pointer-events:none\",\"content:\\\"\\\"\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\",\"background-color:#dee2e6\"]],[false,{\".custom-control-label::after\":false},[\"position:absolute\",\"top:.25rem\",\"left:-1.5rem\",\"display:block\",\"width:1rem\",\"height:1rem\",\"content:\\\"\\\"\",\"background-repeat:no-repeat\",\"background-position:center center\",\"background-size:50% 50%\"]],[false,{\".custom-checkbox .custom-control-label::before\":false},[\"border-radius:.25rem\"]],[false,{\".custom-checkbox .custom-control-input:checked~.custom-control-label::before\":false},[\"background-color:#007bff\"]],[false,{\".custom-checkbox .custom-control-input:checked~.custom-control-label::after\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'0 0 8 8\\\\\'%3E%3Cpath fill=\\\\\'%23fff\\\\\' d=\\\\\'M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before\":false},[\"background-color:#007bff\"]],[false,{\".custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'0 0 4 4\\\\\'%3E%3Cpath stroke=\\\\\'%23fff\\\\\' d=\\\\\'M0 2h4\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before\":false},[\"background-color:rgba(0,123,255,.5)\"]],[false,{\".custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before\":false},[\"background-color:rgba(0,123,255,.5)\"]],[false,{\".custom-radio .custom-control-label::before\":false},[\"border-radius:50%\"]],[false,{\".custom-radio .custom-control-input:checked~.custom-control-label::before\":false},[\"background-color:#007bff\"]],[false,{\".custom-radio .custom-control-input:checked~.custom-control-label::after\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'-4 -4 8 8\\\\\'%3E%3Ccircle r=\\\\\'3\\\\\' fill=\\\\\'%23fff\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".custom-radio .custom-control-input:disabled:checked~.custom-control-label::before\":false},[\"background-color:rgba(0,123,255,.5)\"]],[false,{\".custom-select\":false},[\"display:inline-block\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"padding:.375rem 1.75rem .375rem .75rem\",\"line-height:1.5\",\"color:#495057\",\"vertical-align:middle\",\"background:#fff url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'0 0 4 5\\\\\'%3E%3Cpath fill=\\\\\'%23343a40\\\\\' d=\\\\\'M2 0L0 2h4zm0 5L0 3h4z\\\\\'\\/%3E%3C\\/svg%3E\\\") no-repeat right .75rem center\",\"background-size:8px 10px\",\"border:1px solid #ced4da\",\"border-radius:.25rem\",\"-webkit-appearance:none\",\"-moz-appearance:none\",\"appearance:none\"]],[false,{\".custom-select:focus\":false},[\"border-color:#80bdff\",\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(128,189,255,.5)\"]],[false,{\".custom-select:focus::-ms-value\":false},[\"color:#495057\",\"background-color:#fff\"]],[false,{\".custom-select[multiple]\":false,\".custom-select[size]:not([size=\\\"1\\\"])\":false},[\"height:auto\",\"padding-right:.75rem\",\"background-image:none\"]],[false,{\".custom-select:disabled\":false},[\"color:#6c757d\",\"background-color:#e9ecef\"]],[false,{\".custom-select::-ms-expand\":false},[\"opacity:0\"]],[false,{\".custom-select-sm\":false},[\"height:calc(1.8125rem + 2px)\",\"padding-top:.375rem\",\"padding-bottom:.375rem\",\"font-size:75%\"]],[false,{\".custom-select-lg\":false},[\"height:calc(2.875rem + 2px)\",\"padding-top:.375rem\",\"padding-bottom:.375rem\",\"font-size:125%\"]],[false,{\".custom-file\":false},[\"position:relative\",\"display:inline-block\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"margin-bottom:0\"]],[false,{\".custom-file-input\":false},[\"position:relative\",\"z-index:2\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"margin:0\",\"opacity:0\"]],[false,{\".custom-file-input:focus~.custom-file-label\":false},[\"border-color:#80bdff\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-file-input:focus~.custom-file-label::after\":false},[\"border-color:#80bdff\"]],[false,{\".custom-file-input:disabled~.custom-file-label\":false},[\"background-color:#e9ecef\"]],[false,{\".custom-file-input:lang(en)~.custom-file-label::after\":false},[\"content:\\\"Browse\\\"\"]],[false,{\".custom-file-label\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"left:0\",\"z-index:1\",\"height:calc(2.25rem + 2px)\",\"padding:.375rem .75rem\",\"line-height:1.5\",\"color:#495057\",\"background-color:#fff\",\"border:1px solid #ced4da\",\"border-radius:.25rem\"]],[false,{\".custom-file-label::after\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"z-index:3\",\"display:block\",\"height:2.25rem\",\"padding:.375rem .75rem\",\"line-height:1.5\",\"color:#495057\",\"content:\\\"Browse\\\"\",\"background-color:#e9ecef\",\"border-left:1px solid #ced4da\",\"border-radius:0 .25rem .25rem 0\"]],[false,{\".custom-range\":false},[\"width:100%\",\"padding-left:0\",\"background-color:transparent\",\"-webkit-appearance:none\",\"-moz-appearance:none\",\"appearance:none\"]],[false,{\".custom-range:focus\":false},[\"outline:0\"]],[false,{\".custom-range:focus::-webkit-slider-thumb\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-range:focus::-moz-range-thumb\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-range:focus::-ms-thumb\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-range::-moz-focus-outer\":false},[\"border:0\"]],[false,{\".custom-range::-webkit-slider-thumb\":false},[\"width:1rem\",\"height:1rem\",\"margin-top:-.25rem\",\"background-color:#007bff\",\"border:0\",\"border-radius:1rem\",\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\",\"-webkit-appearance:none\",\"appearance:none\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-range::-webkit-slider-thumb\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".custom-range::-webkit-slider-thumb:active\":false},[\"background-color:#b3d7ff\"]],[false,{\".custom-range::-webkit-slider-runnable-track\":false},[\"width:100%\",\"height:.5rem\",\"color:transparent\",\"cursor:pointer\",\"background-color:#dee2e6\",\"border-color:transparent\",\"border-radius:1rem\"]],[false,{\".custom-range::-moz-range-thumb\":false},[\"width:1rem\",\"height:1rem\",\"background-color:#007bff\",\"border:0\",\"border-radius:1rem\",\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\",\"-moz-appearance:none\",\"appearance:none\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-range::-moz-range-thumb\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".custom-range::-moz-range-thumb:active\":false},[\"background-color:#b3d7ff\"]],[false,{\".custom-range::-moz-range-track\":false},[\"width:100%\",\"height:.5rem\",\"color:transparent\",\"cursor:pointer\",\"background-color:#dee2e6\",\"border-color:transparent\",\"border-radius:1rem\"]],[false,{\".custom-range::-ms-thumb\":false},[\"width:1rem\",\"height:1rem\",\"margin-top:0\",\"margin-right:.2rem\",\"margin-left:.2rem\",\"background-color:#007bff\",\"border:0\",\"border-radius:1rem\",\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\",\"appearance:none\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-range::-ms-thumb\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".custom-range::-ms-thumb:active\":false},[\"background-color:#b3d7ff\"]],[false,{\".custom-range::-ms-track\":false},[\"width:100%\",\"height:.5rem\",\"color:transparent\",\"cursor:pointer\",\"background-color:transparent\",\"border-color:transparent\",\"border-width:.5rem\"]],[false,{\".custom-range::-ms-fill-lower\":false},[\"background-color:#dee2e6\",\"border-radius:1rem\"]],[false,{\".custom-range::-ms-fill-upper\":false},[\"margin-right:15px\",\"background-color:#dee2e6\",\"border-radius:1rem\"]],[false,{\".custom-control-label::before\":false,\".custom-file-label\":false,\".custom-select\":false},[\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-control-label::before\":false,\".custom-file-label\":false,\".custom-select\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".nav\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"padding-left:0\",\"margin-bottom:0\",\"list-style:none\"]],[true,{\".nav-link\":true},[\"display:block\",\"padding:.5rem 1rem\"]],[true,{\".nav-link:focus\":true,\".nav-link:hover\":true},[\"text-decoration:none\"]],[false,{\".nav-link.disabled\":false},[\"color:#6c757d\"]],[false,{\".nav-tabs\":false},[\"border-bottom:1px solid #dee2e6\"]],[false,{\".nav-tabs .nav-item\":false},[\"margin-bottom:-1px\"]],[false,{\".nav-tabs .nav-link\":false},[\"border:1px solid transparent\",\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".nav-tabs .nav-link:focus\":false,\".nav-tabs .nav-link:hover\":false},[\"border-color:#e9ecef #e9ecef #dee2e6\"]],[false,{\".nav-tabs .nav-link.disabled\":false},[\"color:#6c757d\",\"background-color:transparent\",\"border-color:transparent\"]],[false,{\".nav-tabs .nav-item.show .nav-link\":false,\".nav-tabs .nav-link.active\":false},[\"color:#495057\",\"background-color:#fff\",\"border-color:#dee2e6 #dee2e6 #fff\"]],[false,{\".nav-tabs .dropdown-menu\":false},[\"margin-top:-1px\",\"border-top-left-radius:0\",\"border-top-right-radius:0\"]],[false,{\".nav-pills .nav-link\":false},[\"border-radius:.25rem\"]],[false,{\".nav-pills .nav-link.active\":false,\".nav-pills .show>.nav-link\":false},[\"color:#fff\",\"background-color:#007bff\"]],[false,{\".nav-fill .nav-item\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"text-align:center\"]],[false,{\".nav-justified .nav-item\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"text-align:center\"]],[false,{\".tab-content>.tab-pane\":false},[\"display:none\"]],[false,{\".tab-content>.active\":false},[\"display:block\"]],[true,{\".navbar\":true},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"padding:.5rem 1rem\"]],[true,{\".navbar>.container\":true,\".navbar>.container-fluid\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".navbar-brand\":false},[\"display:inline-block\",\"padding-top:.3125rem\",\"padding-bottom:.3125rem\",\"margin-right:1rem\",\"font-size:1.25rem\",\"line-height:inherit\",\"white-space:nowrap\"]],[false,{\".navbar-brand:focus\":false,\".navbar-brand:hover\":false},[\"text-decoration:none\"]],[true,{\".navbar-nav\":true},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"padding-left:0\",\"margin-bottom:0\",\"list-style:none\"]],[true,{\".navbar-nav .nav-link\":true},[\"padding-right:0\",\"padding-left:0\"]],[true,{\".navbar-nav .dropdown-menu\":true},[\"position:static\",\"float:none\"]],[false,{\".navbar-text\":false},[\"display:inline-block\",\"padding-top:.5rem\",\"padding-bottom:.5rem\"]],[true,{\".navbar-collapse\":true},[\"-ms-flex-preferred-size:100%\",\"flex-basis:100%\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"-ms-flex-align:center\",\"align-items:center\"]],[true,{\".navbar-toggler\":true},[\"padding:.25rem .75rem\",\"font-size:1.25rem\",\"line-height:1\",\"background-color:transparent\",\"border:1px solid transparent\",\"border-radius:.25rem\"]],[true,{\".navbar-toggler:focus\":true,\".navbar-toggler:hover\":true},[\"text-decoration:none\"]],[true,{\".navbar-toggler:not(:disabled):not(.disabled)\":true},[\"cursor:pointer\"]],[false,{\".navbar-toggler-icon\":false},[\"display:inline-block\",\"width:1.5em\",\"height:1.5em\",\"vertical-align:middle\",\"content:\\\"\\\"\",\"background:no-repeat center center\",\"background-size:100% 100%\"]],[false,\"@media (max-width:575.98px){\"],[false,{\".navbar-expand-sm>.container\":false,\".navbar-expand-sm>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,\"}\"],[false,\"@media (min-width:576px){\"],[false,{\".navbar-expand-sm\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand-sm .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand-sm .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand-sm .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand-sm>.container\":false,\".navbar-expand-sm>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand-sm .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand-sm .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand-sm .navbar-toggler\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (max-width:767.98px){\"],[false,{\".navbar-expand-md>.container\":false,\".navbar-expand-md>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".navbar-expand-md\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand-md .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand-md .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand-md .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand-md>.container\":false,\".navbar-expand-md>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand-md .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand-md .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand-md .navbar-toggler\":false},[\"display:none\"]],[false,\"}\"],[true,\"@media (max-width:991.98px){\"],[true,{\".navbar-expand-lg>.container\":true,\".navbar-expand-lg>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[true,{\".navbar-expand-lg\":true},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[true,{\".navbar-expand-lg .navbar-nav\":true},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[true,{\".navbar-expand-lg .navbar-nav .dropdown-menu\":true},[\"position:absolute\"]],[true,{\".navbar-expand-lg .navbar-nav .nav-link\":true},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[true,{\".navbar-expand-lg>.container\":true,\".navbar-expand-lg>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[true,{\".navbar-expand-lg .navbar-collapse\":true},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[true,{\".navbar-expand-lg .navbar-collapse:not(#_#_#_#_#_#_#_)\":true},[\"display:-ms-flexbox\",\"display:flex\"]],[true,{\".navbar-expand-lg .navbar-toggler\":true},[\"display:none\"]],[true,\"}\"],[false,\"@media (max-width:1199.98px){\"],[false,{\".navbar-expand-xl>.container\":false,\".navbar-expand-xl>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".navbar-expand-xl\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand-xl .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand-xl .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand-xl .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand-xl>.container\":false,\".navbar-expand-xl>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand-xl .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand-xl .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand-xl .navbar-toggler\":false},[\"display:none\"]],[false,\"}\"],[false,{\".navbar-expand\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand>.container\":false,\".navbar-expand>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,{\".navbar-expand .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand>.container\":false,\".navbar-expand>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand .navbar-toggler\":false},[\"display:none\"]],[false,{\".navbar-light .navbar-brand\":false},[\"color:rgba(0,0,0,.9)\"]],[false,{\".navbar-light .navbar-brand:focus\":false,\".navbar-light .navbar-brand:hover\":false},[\"color:rgba(0,0,0,.9)\"]],[true,{\".navbar-light .navbar-nav .nav-link\":true},[\"color:rgba(0,0,0,.5)\"]],[true,{\".navbar-light .navbar-nav .nav-link:focus\":true,\".navbar-light .navbar-nav .nav-link:hover\":true},[\"color:rgba(0,0,0,.7)\"]],[false,{\".navbar-light .navbar-nav .nav-link.disabled\":false},[\"color:rgba(0,0,0,.3)\"]],[true,{\".navbar-light .navbar-nav .active>.nav-link\":false,\".navbar-light .navbar-nav .nav-link.active\":false,\".navbar-light .navbar-nav .nav-link.show\":true,\".navbar-light .navbar-nav .show>.nav-link\":true},[\"color:rgba(0,0,0,.9)\"]],[true,{\".navbar-light .navbar-toggler\":true},[\"color:rgba(0,0,0,.5)\",\"border-color:rgba(0,0,0,.1)\"]],[false,{\".navbar-light .navbar-toggler-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg viewBox=\\\\\'0 0 30 30\\\\\' xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\'%3E%3Cpath stroke=\\\\\'rgba(0, 0, 0, 0.5)\\\\\' stroke-width=\\\\\'2\\\\\' stroke-linecap=\\\\\'round\\\\\' stroke-miterlimit=\\\\\'10\\\\\' d=\\\\\'M4 7h22M4 15h22M4 23h22\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".navbar-light .navbar-text\":false},[\"color:rgba(0,0,0,.5)\"]],[false,{\".navbar-light .navbar-text a\":false},[\"color:rgba(0,0,0,.9)\"]],[false,{\".navbar-light .navbar-text a:focus\":false,\".navbar-light .navbar-text a:hover\":false},[\"color:rgba(0,0,0,.9)\"]],[false,{\".navbar-dark .navbar-brand\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-brand:focus\":false,\".navbar-dark .navbar-brand:hover\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-nav .nav-link\":false},[\"color:rgba(255,255,255,.5)\"]],[false,{\".navbar-dark .navbar-nav .nav-link:focus\":false,\".navbar-dark .navbar-nav .nav-link:hover\":false},[\"color:rgba(255,255,255,.75)\"]],[false,{\".navbar-dark .navbar-nav .nav-link.disabled\":false},[\"color:rgba(255,255,255,.25)\"]],[false,{\".navbar-dark .navbar-nav .active>.nav-link\":false,\".navbar-dark .navbar-nav .nav-link.active\":false,\".navbar-dark .navbar-nav .nav-link.show\":false,\".navbar-dark .navbar-nav .show>.nav-link\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-toggler\":false},[\"color:rgba(255,255,255,.5)\",\"border-color:rgba(255,255,255,.1)\"]],[false,{\".navbar-dark .navbar-toggler-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg viewBox=\\\\\'0 0 30 30\\\\\' xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\'%3E%3Cpath stroke=\\\\\'rgba(255, 255, 255, 0.5)\\\\\' stroke-width=\\\\\'2\\\\\' stroke-linecap=\\\\\'round\\\\\' stroke-miterlimit=\\\\\'10\\\\\' d=\\\\\'M4 7h22M4 15h22M4 23h22\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".navbar-dark .navbar-text\":false},[\"color:rgba(255,255,255,.5)\"]],[false,{\".navbar-dark .navbar-text a\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-text a:focus\":false,\".navbar-dark .navbar-text a:hover\":false},[\"color:#fff\"]],[false,{\".card\":false},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"min-width:0\",\"word-wrap:break-word\",\"background-color:#fff\",\"background-clip:border-box\",\"border:1px solid rgba(0,0,0,.125)\",\"border-radius:.25rem\"]],[false,{\".card>hr\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".card>.list-group:first-child .list-group-item:first-child\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".card>.list-group:last-child .list-group-item:last-child\":false},[\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".card-body\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"padding:1.25rem\"]],[false,{\".card-title\":false},[\"margin-bottom:.75rem\"]],[false,{\".card-subtitle\":false},[\"margin-top:-.375rem\",\"margin-bottom:0\"]],[false,{\".card-text:last-child\":false},[\"margin-bottom:0\"]],[false,{\".card-link:hover\":false},[\"text-decoration:none\"]],[false,{\".card-link+.card-link\":false},[\"margin-left:1.25rem\"]],[false,{\".card-header\":false},[\"padding:.75rem 1.25rem\",\"margin-bottom:0\",\"background-color:rgba(0,0,0,.03)\",\"border-bottom:1px solid rgba(0,0,0,.125)\"]],[false,{\".card-header:first-child\":false},[\"border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0\"]],[false,{\".card-header+.list-group .list-group-item:first-child\":false},[\"border-top:0\"]],[false,{\".card-footer\":false},[\"padding:.75rem 1.25rem\",\"background-color:rgba(0,0,0,.03)\",\"border-top:1px solid rgba(0,0,0,.125)\"]],[false,{\".card-footer:last-child\":false},[\"border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)\"]],[false,{\".card-header-tabs\":false},[\"margin-right:-.625rem\",\"margin-bottom:-.75rem\",\"margin-left:-.625rem\",\"border-bottom:0\"]],[false,{\".card-header-pills\":false},[\"margin-right:-.625rem\",\"margin-left:-.625rem\"]],[false,{\".card-img-overlay\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"padding:1.25rem\"]],[false,{\".card-img\":false},[\"width:100%\",\"border-radius:calc(.25rem - 1px)\"]],[false,{\".card-img-top\":false},[\"width:100%\",\"border-top-left-radius:calc(.25rem - 1px)\",\"border-top-right-radius:calc(.25rem - 1px)\"]],[false,{\".card-img-bottom\":false},[\"width:100%\",\"border-bottom-right-radius:calc(.25rem - 1px)\",\"border-bottom-left-radius:calc(.25rem - 1px)\"]],[false,{\".card-deck\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".card-deck .card\":false},[\"margin-bottom:15px\"]],[false,\"@media (min-width:576px){\"],[false,{\".card-deck\":false},[\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\",\"margin-right:-15px\",\"margin-left:-15px\"]],[false,{\".card-deck .card\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex:1 0 0%\",\"flex:1 0 0%\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"margin-right:15px\",\"margin-bottom:0\",\"margin-left:15px\"]],[false,\"}\"],[false,{\".card-group\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".card-group>.card\":false},[\"margin-bottom:15px\"]],[false,\"@media (min-width:576px){\"],[false,{\".card-group\":false},[\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\"]],[false,{\".card-group>.card\":false},[\"-ms-flex:1 0 0%\",\"flex:1 0 0%\",\"margin-bottom:0\"]],[false,{\".card-group>.card+.card\":false},[\"margin-left:0\",\"border-left:0\"]],[false,{\".card-group>.card:first-child\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".card-group>.card:first-child .card-header\":false,\".card-group>.card:first-child .card-img-top\":false},[\"border-top-right-radius:0\"]],[false,{\".card-group>.card:first-child .card-footer\":false,\".card-group>.card:first-child .card-img-bottom\":false},[\"border-bottom-right-radius:0\"]],[false,{\".card-group>.card:last-child\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".card-group>.card:last-child .card-header\":false,\".card-group>.card:last-child .card-img-top\":false},[\"border-top-left-radius:0\"]],[false,{\".card-group>.card:last-child .card-footer\":false,\".card-group>.card:last-child .card-img-bottom\":false},[\"border-bottom-left-radius:0\"]],[false,{\".card-group>.card:only-child\":false},[\"border-radius:.25rem\"]],[false,{\".card-group>.card:only-child .card-header\":false,\".card-group>.card:only-child .card-img-top\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".card-group>.card:only-child .card-footer\":false,\".card-group>.card:only-child .card-img-bottom\":false},[\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".card-group>.card:not(:first-child):not(:last-child):not(:only-child)\":false},[\"border-radius:0\"]],[false,{\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer\":false,\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header\":false,\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom\":false,\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top\":false},[\"border-radius:0\"]],[false,\"}\"],[false,{\".card-columns .card\":false},[\"margin-bottom:.75rem\"]],[false,\"@media (min-width:576px){\"],[false,{\".card-columns\":false},[\"-webkit-column-count:3\",\"-moz-column-count:3\",\"column-count:3\",\"-webkit-column-gap:1.25rem\",\"-moz-column-gap:1.25rem\",\"column-gap:1.25rem\",\"orphans:1\",\"widows:1\"]],[false,{\".card-columns .card\":false},[\"display:inline-block\",\"width:100%\"]],[false,\"}\"],[false,{\".accordion .card:not(:first-of-type):not(:last-of-type)\":false},[\"border-bottom:0\",\"border-radius:0\"]],[false,{\".accordion .card:not(:first-of-type) .card-header:first-child\":false},[\"border-radius:0\"]],[false,{\".accordion .card:first-of-type\":false},[\"border-bottom:0\",\"border-bottom-right-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".accordion .card:last-of-type\":false},[\"border-top-left-radius:0\",\"border-top-right-radius:0\"]],[false,{\".breadcrumb\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"padding:.75rem 1rem\",\"margin-bottom:1rem\",\"list-style:none\",\"background-color:#e9ecef\",\"border-radius:.25rem\"]],[false,{\".breadcrumb-item+.breadcrumb-item\":false},[\"padding-left:.5rem\"]],[false,{\".breadcrumb-item+.breadcrumb-item::before\":false},[\"display:inline-block\",\"padding-right:.5rem\",\"color:#6c757d\",\"content:\\\"\\/\\\"\"]],[false,{\".breadcrumb-item+.breadcrumb-item:hover::before\":false},[\"text-decoration:underline\"]],[false,{\".breadcrumb-item+.breadcrumb-item:hover::before\":false},[\"text-decoration:none\"]],[false,{\".breadcrumb-item.active\":false},[\"color:#6c757d\"]],[false,{\".pagination\":false},[\"display:-ms-flexbox\",\"display:flex\",\"padding-left:0\",\"list-style:none\",\"border-radius:.25rem\"]],[false,{\".page-link\":false},[\"position:relative\",\"display:block\",\"padding:.5rem .75rem\",\"margin-left:-1px\",\"line-height:1.25\",\"color:#007bff\",\"background-color:#fff\",\"border:1px solid #dee2e6\"]],[false,{\".page-link:hover\":false},[\"z-index:2\",\"color:#0056b3\",\"text-decoration:none\",\"background-color:#e9ecef\",\"border-color:#dee2e6\"]],[false,{\".page-link:focus\":false},[\"z-index:2\",\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".page-link:not(:disabled):not(.disabled)\":false},[\"cursor:pointer\"]],[false,{\".page-item:first-child .page-link\":false},[\"margin-left:0\",\"border-top-left-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".page-item:last-child .page-link\":false},[\"border-top-right-radius:.25rem\",\"border-bottom-right-radius:.25rem\"]],[false,{\".page-item.active .page-link\":false},[\"z-index:1\",\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".page-item.disabled .page-link\":false},[\"color:#6c757d\",\"pointer-events:none\",\"cursor:auto\",\"background-color:#fff\",\"border-color:#dee2e6\"]],[false,{\".pagination-lg .page-link\":false},[\"padding:.75rem 1.5rem\",\"font-size:1.25rem\",\"line-height:1.5\"]],[false,{\".pagination-lg .page-item:first-child .page-link\":false},[\"border-top-left-radius:.3rem\",\"border-bottom-left-radius:.3rem\"]],[false,{\".pagination-lg .page-item:last-child .page-link\":false},[\"border-top-right-radius:.3rem\",\"border-bottom-right-radius:.3rem\"]],[false,{\".pagination-sm .page-link\":false},[\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\"]],[false,{\".pagination-sm .page-item:first-child .page-link\":false},[\"border-top-left-radius:.2rem\",\"border-bottom-left-radius:.2rem\"]],[false,{\".pagination-sm .page-item:last-child .page-link\":false},[\"border-top-right-radius:.2rem\",\"border-bottom-right-radius:.2rem\"]],[false,{\".badge\":false},[\"display:inline-block\",\"padding:.25em .4em\",\"font-size:75%\",\"font-weight:700\",\"line-height:1\",\"text-align:center\",\"white-space:nowrap\",\"vertical-align:baseline\",\"border-radius:.25rem\"]],[false,{\".badge:empty\":false},[\"display:none\"]],[false,{\".btn .badge\":false},[\"position:relative\",\"top:-1px\"]],[false,{\".badge-pill\":false},[\"padding-right:.6em\",\"padding-left:.6em\",\"border-radius:10rem\"]],[false,{\".badge-primary\":false},[\"color:#fff\",\"background-color:#007bff\"]],[false,{\".badge-primary[href]:focus\":false,\".badge-primary[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#0062cc\"]],[false,{\".badge-secondary\":false},[\"color:#fff\",\"background-color:#6c757d\"]],[false,{\".badge-secondary[href]:focus\":false,\".badge-secondary[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#545b62\"]],[false,{\".badge-success\":false},[\"color:#fff\",\"background-color:#28a745\"]],[false,{\".badge-success[href]:focus\":false,\".badge-success[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#1e7e34\"]],[false,{\".badge-info\":false},[\"color:#fff\",\"background-color:#17a2b8\"]],[false,{\".badge-info[href]:focus\":false,\".badge-info[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#117a8b\"]],[false,{\".badge-warning\":false},[\"color:#212529\",\"background-color:#ffc107\"]],[false,{\".badge-warning[href]:focus\":false,\".badge-warning[href]:hover\":false},[\"color:#212529\",\"text-decoration:none\",\"background-color:#d39e00\"]],[false,{\".badge-danger\":false},[\"color:#fff\",\"background-color:#dc3545\"]],[false,{\".badge-danger[href]:focus\":false,\".badge-danger[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#bd2130\"]],[false,{\".badge-light\":false},[\"color:#212529\",\"background-color:#f8f9fa\"]],[false,{\".badge-light[href]:focus\":false,\".badge-light[href]:hover\":false},[\"color:#212529\",\"text-decoration:none\",\"background-color:#dae0e5\"]],[false,{\".badge-dark\":false},[\"color:#fff\",\"background-color:#343a40\"]],[false,{\".badge-dark[href]:focus\":false,\".badge-dark[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#1d2124\"]],[false,{\".jumbotron\":false},[\"padding:2rem 1rem\",\"margin-bottom:2rem\",\"background-color:#e9ecef\",\"border-radius:.3rem\"]],[false,\"@media (min-width:576px){\"],[false,{\".jumbotron\":false},[\"padding:4rem 2rem\"]],[false,\"}\"],[false,{\".jumbotron-fluid\":false},[\"padding-right:0\",\"padding-left:0\",\"border-radius:0\"]],[false,{\".alert\":false},[\"position:relative\",\"padding:.75rem 1.25rem\",\"margin-bottom:1rem\",\"border:1px solid transparent\",\"border-radius:.25rem\"]],[false,{\".alert-heading\":false},[\"color:inherit\"]],[false,{\".alert-link\":false},[\"font-weight:700\"]],[false,{\".alert-dismissible\":false},[\"padding-right:4rem\"]],[false,{\".alert-dismissible .close\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"padding:.75rem 1.25rem\",\"color:inherit\"]],[false,{\".alert-primary\":false},[\"color:#004085\",\"background-color:#cce5ff\",\"border-color:#b8daff\"]],[false,{\".alert-primary hr\":false},[\"border-top-color:#9fcdff\"]],[false,{\".alert-primary .alert-link\":false},[\"color:#002752\"]],[false,{\".alert-secondary\":false},[\"color:#383d41\",\"background-color:#e2e3e5\",\"border-color:#d6d8db\"]],[false,{\".alert-secondary hr\":false},[\"border-top-color:#c8cbcf\"]],[false,{\".alert-secondary .alert-link\":false},[\"color:#202326\"]],[false,{\".alert-success\":false},[\"color:#155724\",\"background-color:#d4edda\",\"border-color:#c3e6cb\"]],[false,{\".alert-success hr\":false},[\"border-top-color:#b1dfbb\"]],[false,{\".alert-success .alert-link\":false},[\"color:#0b2e13\"]],[false,{\".alert-info\":false},[\"color:#0c5460\",\"background-color:#d1ecf1\",\"border-color:#bee5eb\"]],[false,{\".alert-info hr\":false},[\"border-top-color:#abdde5\"]],[false,{\".alert-info .alert-link\":false},[\"color:#062c33\"]],[false,{\".alert-warning\":false},[\"color:#856404\",\"background-color:#fff3cd\",\"border-color:#ffeeba\"]],[false,{\".alert-warning hr\":false},[\"border-top-color:#ffe8a1\"]],[false,{\".alert-warning .alert-link\":false},[\"color:#533f03\"]],[false,{\".alert-danger\":false},[\"color:#721c24\",\"background-color:#f8d7da\",\"border-color:#f5c6cb\"]],[false,{\".alert-danger hr\":false},[\"border-top-color:#f1b0b7\"]],[false,{\".alert-danger .alert-link\":false},[\"color:#491217\"]],[false,{\".alert-light\":false},[\"color:#818182\",\"background-color:#fefefe\",\"border-color:#fdfdfe\"]],[false,{\".alert-light hr\":false},[\"border-top-color:#ececf6\"]],[false,{\".alert-light .alert-link\":false},[\"color:#686868\"]],[false,{\".alert-dark\":false},[\"color:#1b1e21\",\"background-color:#d6d8d9\",\"border-color:#c6c8ca\"]],[false,{\".alert-dark hr\":false},[\"border-top-color:#b9bbbe\"]],[false,{\".alert-dark .alert-link\":false},[\"color:#040505\"]],[true,\"@-webkit-keyframes progress-bar-stripes{\"],[true,\"from{background-position:1rem 0}\"],[true,\"to{background-position:0 0}\"],[true,\"}@keyframes progress-bar-stripes{\"],[true,\"from{background-position:1rem 0}\"],[true,\"to{background-position:0 0}\"],[true,\"}\"],[false,{\".progress\":false},[\"display:-ms-flexbox\",\"display:flex\",\"height:1rem\",\"overflow:hidden\",\"font-size:.75rem\",\"background-color:#e9ecef\",\"border-radius:.25rem\"]],[false,{\".progress-bar\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"-ms-flex-pack:center\",\"justify-content:center\",\"color:#fff\",\"text-align:center\",\"white-space:nowrap\",\"background-color:#007bff\",\"transition:width .6s ease\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".progress-bar\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".progress-bar-striped\":false},[\"background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)\",\"background-size:1rem 1rem\"]],[false,{\".progress-bar-animated\":false},[\"-webkit-animation:progress-bar-stripes 1s linear infinite\",\"animation:progress-bar-stripes 1s linear infinite\"]],[false,{\".media\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".media-body\":false},[\"-ms-flex:1\",\"flex:1\"]],[false,{\".list-group\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"padding-left:0\",\"margin-bottom:0\"]],[false,{\".list-group-item-action\":false},[\"width:100%\",\"color:#495057\",\"text-align:inherit\"]],[false,{\".list-group-item-action:focus\":false,\".list-group-item-action:hover\":false},[\"color:#495057\",\"text-decoration:none\",\"background-color:#f8f9fa\"]],[false,{\".list-group-item-action:active\":false},[\"color:#212529\",\"background-color:#e9ecef\"]],[false,{\".list-group-item\":false},[\"position:relative\",\"display:block\",\"padding:.75rem 1.25rem\",\"margin-bottom:-1px\",\"background-color:#fff\",\"border:1px solid rgba(0,0,0,.125)\"]],[false,{\".list-group-item:first-child\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".list-group-item:last-child\":false},[\"margin-bottom:0\",\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".list-group-item:focus\":false,\".list-group-item:hover\":false},[\"z-index:1\",\"text-decoration:none\"]],[false,{\".list-group-item.disabled\":false,\".list-group-item:disabled\":false},[\"color:#6c757d\",\"background-color:#fff\"]],[false,{\".list-group-item.active\":false},[\"z-index:2\",\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".list-group-flush .list-group-item\":false},[\"border-right:0\",\"border-left:0\",\"border-radius:0\"]],[false,{\".list-group-flush:first-child .list-group-item:first-child\":false},[\"border-top:0\"]],[false,{\".list-group-flush:last-child .list-group-item:last-child\":false},[\"border-bottom:0\"]],[false,{\".list-group-item-primary\":false},[\"color:#004085\",\"background-color:#b8daff\"]],[false,{\".list-group-item-primary.list-group-item-action:focus\":false,\".list-group-item-primary.list-group-item-action:hover\":false},[\"color:#004085\",\"background-color:#9fcdff\"]],[false,{\".list-group-item-primary.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#004085\",\"border-color:#004085\"]],[false,{\".list-group-item-secondary\":false},[\"color:#383d41\",\"background-color:#d6d8db\"]],[false,{\".list-group-item-secondary.list-group-item-action:focus\":false,\".list-group-item-secondary.list-group-item-action:hover\":false},[\"color:#383d41\",\"background-color:#c8cbcf\"]],[false,{\".list-group-item-secondary.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#383d41\",\"border-color:#383d41\"]],[false,{\".list-group-item-success\":false},[\"color:#155724\",\"background-color:#c3e6cb\"]],[false,{\".list-group-item-success.list-group-item-action:focus\":false,\".list-group-item-success.list-group-item-action:hover\":false},[\"color:#155724\",\"background-color:#b1dfbb\"]],[false,{\".list-group-item-success.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#155724\",\"border-color:#155724\"]],[false,{\".list-group-item-info\":false},[\"color:#0c5460\",\"background-color:#bee5eb\"]],[false,{\".list-group-item-info.list-group-item-action:focus\":false,\".list-group-item-info.list-group-item-action:hover\":false},[\"color:#0c5460\",\"background-color:#abdde5\"]],[false,{\".list-group-item-info.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#0c5460\",\"border-color:#0c5460\"]],[false,{\".list-group-item-warning\":false},[\"color:#856404\",\"background-color:#ffeeba\"]],[false,{\".list-group-item-warning.list-group-item-action:focus\":false,\".list-group-item-warning.list-group-item-action:hover\":false},[\"color:#856404\",\"background-color:#ffe8a1\"]],[false,{\".list-group-item-warning.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#856404\",\"border-color:#856404\"]],[false,{\".list-group-item-danger\":false},[\"color:#721c24\",\"background-color:#f5c6cb\"]],[false,{\".list-group-item-danger.list-group-item-action:focus\":false,\".list-group-item-danger.list-group-item-action:hover\":false},[\"color:#721c24\",\"background-color:#f1b0b7\"]],[false,{\".list-group-item-danger.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#721c24\",\"border-color:#721c24\"]],[false,{\".list-group-item-light\":false},[\"color:#818182\",\"background-color:#fdfdfe\"]],[false,{\".list-group-item-light.list-group-item-action:focus\":false,\".list-group-item-light.list-group-item-action:hover\":false},[\"color:#818182\",\"background-color:#ececf6\"]],[false,{\".list-group-item-light.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#818182\",\"border-color:#818182\"]],[false,{\".list-group-item-dark\":false},[\"color:#1b1e21\",\"background-color:#c6c8ca\"]],[false,{\".list-group-item-dark.list-group-item-action:focus\":false,\".list-group-item-dark.list-group-item-action:hover\":false},[\"color:#1b1e21\",\"background-color:#b9bbbe\"]],[false,{\".list-group-item-dark.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#1b1e21\",\"border-color:#1b1e21\"]],[false,{\".close\":false},[\"float:right\",\"font-size:1.5rem\",\"font-weight:700\",\"line-height:1\",\"color:#000\",\"text-shadow:0 1px 0 #fff\",\"opacity:.5\"]],[false,{\".close:not(:disabled):not(.disabled)\":false},[\"cursor:pointer\"]],[false,{\".close:not(:disabled):not(.disabled):focus\":false,\".close:not(:disabled):not(.disabled):hover\":false},[\"color:#000\",\"text-decoration:none\",\"opacity:.75\"]],[false,{\"button.close\":false},[\"padding:0\",\"background-color:transparent\",\"border:0\",\"-webkit-appearance:none\"]],[false,{\".modal-open\":false},[\"overflow:hidden\"]],[false,{\".modal-open .modal\":false},[\"overflow-x:hidden\",\"overflow-y:auto\"]],[false,{\".modal\":false},[\"position:fixed\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"z-index:1050\",\"display:none\",\"overflow:hidden\",\"outline:0\"]],[false,{\".modal-dialog\":false},[\"position:relative\",\"width:auto\",\"margin:.5rem\",\"pointer-events:none\"]],[false,{\".modal.fade .modal-dialog\":false},[\"transition:-webkit-transform .3s ease-out\",\"transition:transform .3s ease-out\",\"transition:transform .3s ease-out,-webkit-transform .3s ease-out\",\"-webkit-transform:translate(0,-25%)\",\"transform:translate(0,-25%)\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".modal.fade .modal-dialog\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".modal.show .modal-dialog\":false},[\"-webkit-transform:translate(0,0)\",\"transform:translate(0,0)\"]],[false,{\".modal-dialog-centered\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"min-height:calc(100% - ( .5rem * 2 ))\"]],[false,{\".modal-dialog-centered::before\":false},[\"display:block\",\"height:calc(100vh - ( .5rem * 2 ))\",\"content:\\\"\\\"\"]],[false,{\".modal-content\":false},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"width:100%\",\"pointer-events:auto\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid rgba(0,0,0,.2)\",\"border-radius:.3rem\",\"outline:0\"]],[false,{\".modal-backdrop\":false},[\"position:fixed\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"z-index:1040\",\"background-color:#000\"]],[false,{\".modal-backdrop.fade\":false},[\"opacity:0\"]],[false,{\".modal-backdrop.show\":false},[\"opacity:.5\"]],[false,{\".modal-header\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:start\",\"align-items:flex-start\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"padding:1rem\",\"border-bottom:1px solid #e9ecef\",\"border-top-left-radius:.3rem\",\"border-top-right-radius:.3rem\"]],[false,{\".modal-header .close\":false},[\"padding:1rem\",\"margin:-1rem -1rem -1rem auto\"]],[false,{\".modal-title\":false},[\"margin-bottom:0\",\"line-height:1.5\"]],[false,{\".modal-body\":false},[\"position:relative\",\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"padding:1rem\"]],[false,{\".modal-footer\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:end\",\"justify-content:flex-end\",\"padding:1rem\",\"border-top:1px solid #e9ecef\"]],[false,{\".modal-footer>:not(:first-child)\":false},[\"margin-left:.25rem\"]],[false,{\".modal-footer>:not(:last-child)\":false},[\"margin-right:.25rem\"]],[false,{\".modal-scrollbar-measure\":false},[\"position:absolute\",\"top:-9999px\",\"width:50px\",\"height:50px\",\"overflow:scroll\"]],[false,\"@media (min-width:576px){\"],[false,{\".modal-dialog\":false},[\"max-width:500px\",\"margin:1.75rem auto\"]],[false,{\".modal-dialog-centered\":false},[\"min-height:calc(100% - ( 1.75rem * 2 ))\"]],[false,{\".modal-dialog-centered::before\":false},[\"height:calc(100vh - ( 1.75rem * 2 ))\"]],[false,{\".modal-sm\":false},[\"max-width:300px\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".modal-lg\":false},[\"max-width:800px\"]],[false,\"}\"],[false,{\".tooltip\":false},[\"position:absolute\",\"z-index:1070\",\"display:block\",\"margin:0\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"font-style:normal\",\"font-weight:400\",\"line-height:1.5\",\"text-align:left\",\"text-align:start\",\"text-decoration:none\",\"text-shadow:none\",\"text-transform:none\",\"letter-spacing:normal\",\"word-break:normal\",\"word-spacing:normal\",\"white-space:normal\",\"line-break:auto\",\"font-size:.875rem\",\"word-wrap:break-word\",\"opacity:0\"]],[false,{\".tooltip.show\":false},[\"opacity:.9\"]],[false,{\".tooltip .arrow\":false},[\"position:absolute\",\"display:block\",\"width:.8rem\",\"height:.4rem\"]],[false,{\".tooltip .arrow::before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"border-color:transparent\",\"border-style:solid\"]],[false,{\".bs-tooltip-auto[x-placement^=top]\":false,\".bs-tooltip-top\":false},[\"padding:.4rem 0\"]],[false,{\".bs-tooltip-auto[x-placement^=top] .arrow\":false,\".bs-tooltip-top .arrow\":false},[\"bottom:0\"]],[false,{\".bs-tooltip-auto[x-placement^=top] .arrow::before\":false,\".bs-tooltip-top .arrow::before\":false},[\"top:0\",\"border-width:.4rem .4rem 0\",\"border-top-color:#000\"]],[false,{\".bs-tooltip-auto[x-placement^=right]\":false,\".bs-tooltip-right\":false},[\"padding:0 .4rem\"]],[false,{\".bs-tooltip-auto[x-placement^=right] .arrow\":false,\".bs-tooltip-right .arrow\":false},[\"left:0\",\"width:.4rem\",\"height:.8rem\"]],[false,{\".bs-tooltip-auto[x-placement^=right] .arrow::before\":false,\".bs-tooltip-right .arrow::before\":false},[\"right:0\",\"border-width:.4rem .4rem .4rem 0\",\"border-right-color:#000\"]],[false,{\".bs-tooltip-auto[x-placement^=bottom]\":false,\".bs-tooltip-bottom\":false},[\"padding:.4rem 0\"]],[false,{\".bs-tooltip-auto[x-placement^=bottom] .arrow\":false,\".bs-tooltip-bottom .arrow\":false},[\"top:0\"]],[false,{\".bs-tooltip-auto[x-placement^=bottom] .arrow::before\":false,\".bs-tooltip-bottom .arrow::before\":false},[\"bottom:0\",\"border-width:0 .4rem .4rem\",\"border-bottom-color:#000\"]],[false,{\".bs-tooltip-auto[x-placement^=left]\":false,\".bs-tooltip-left\":false},[\"padding:0 .4rem\"]],[false,{\".bs-tooltip-auto[x-placement^=left] .arrow\":false,\".bs-tooltip-left .arrow\":false},[\"right:0\",\"width:.4rem\",\"height:.8rem\"]],[false,{\".bs-tooltip-auto[x-placement^=left] .arrow::before\":false,\".bs-tooltip-left .arrow::before\":false},[\"left:0\",\"border-width:.4rem 0 .4rem .4rem\",\"border-left-color:#000\"]],[false,{\".tooltip-inner\":false},[\"max-width:200px\",\"padding:.25rem .5rem\",\"color:#fff\",\"text-align:center\",\"background-color:#000\",\"border-radius:.25rem\"]],[false,{\".popover\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"z-index:1060\",\"display:block\",\"max-width:276px\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"font-style:normal\",\"font-weight:400\",\"line-height:1.5\",\"text-align:left\",\"text-align:start\",\"text-decoration:none\",\"text-shadow:none\",\"text-transform:none\",\"letter-spacing:normal\",\"word-break:normal\",\"word-spacing:normal\",\"white-space:normal\",\"line-break:auto\",\"font-size:.875rem\",\"word-wrap:break-word\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid rgba(0,0,0,.2)\",\"border-radius:.3rem\"]],[false,{\".popover .arrow\":false},[\"position:absolute\",\"display:block\",\"width:1rem\",\"height:.5rem\",\"margin:0 .3rem\"]],[false,{\".popover .arrow::after\":false,\".popover .arrow::before\":false},[\"position:absolute\",\"display:block\",\"content:\\\"\\\"\",\"border-color:transparent\",\"border-style:solid\"]],[false,{\".bs-popover-auto[x-placement^=top]\":false,\".bs-popover-top\":false},[\"margin-bottom:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow\":false,\".bs-popover-top .arrow\":false},[\"bottom:calc(( .5rem + 1px ) * -1)\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow::after\":false,\".bs-popover-auto[x-placement^=top] .arrow::before\":false,\".bs-popover-top .arrow::after\":false,\".bs-popover-top .arrow::before\":false},[\"border-width:.5rem .5rem 0\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow::before\":false,\".bs-popover-top .arrow::before\":false},[\"bottom:0\",\"border-top-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow::after\":false,\".bs-popover-top .arrow::after\":false},[\"bottom:1px\",\"border-top-color:#fff\"]],[false,{\".bs-popover-auto[x-placement^=right]\":false,\".bs-popover-right\":false},[\"margin-left:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow\":false,\".bs-popover-right .arrow\":false},[\"left:calc(( .5rem + 1px ) * -1)\",\"width:.5rem\",\"height:1rem\",\"margin:.3rem 0\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow::after\":false,\".bs-popover-auto[x-placement^=right] .arrow::before\":false,\".bs-popover-right .arrow::after\":false,\".bs-popover-right .arrow::before\":false},[\"border-width:.5rem .5rem .5rem 0\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow::before\":false,\".bs-popover-right .arrow::before\":false},[\"left:0\",\"border-right-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow::after\":false,\".bs-popover-right .arrow::after\":false},[\"left:1px\",\"border-right-color:#fff\"]],[false,{\".bs-popover-auto[x-placement^=bottom]\":false,\".bs-popover-bottom\":false},[\"margin-top:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow\":false,\".bs-popover-bottom .arrow\":false},[\"top:calc(( .5rem + 1px ) * -1)\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow::after\":false,\".bs-popover-auto[x-placement^=bottom] .arrow::before\":false,\".bs-popover-bottom .arrow::after\":false,\".bs-popover-bottom .arrow::before\":false},[\"border-width:0 .5rem .5rem .5rem\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow::before\":false,\".bs-popover-bottom .arrow::before\":false},[\"top:0\",\"border-bottom-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow::after\":false,\".bs-popover-bottom .arrow::after\":false},[\"top:1px\",\"border-bottom-color:#fff\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .popover-header::before\":false,\".bs-popover-bottom .popover-header::before\":false},[\"position:absolute\",\"top:0\",\"left:50%\",\"display:block\",\"width:1rem\",\"margin-left:-.5rem\",\"content:\\\"\\\"\",\"border-bottom:1px solid #f7f7f7\"]],[false,{\".bs-popover-auto[x-placement^=left]\":false,\".bs-popover-left\":false},[\"margin-right:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow\":false,\".bs-popover-left .arrow\":false},[\"right:calc(( .5rem + 1px ) * -1)\",\"width:.5rem\",\"height:1rem\",\"margin:.3rem 0\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow::after\":false,\".bs-popover-auto[x-placement^=left] .arrow::before\":false,\".bs-popover-left .arrow::after\":false,\".bs-popover-left .arrow::before\":false},[\"border-width:.5rem 0 .5rem .5rem\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow::before\":false,\".bs-popover-left .arrow::before\":false},[\"right:0\",\"border-left-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow::after\":false,\".bs-popover-left .arrow::after\":false},[\"right:1px\",\"border-left-color:#fff\"]],[false,{\".popover-header\":false},[\"padding:.5rem .75rem\",\"margin-bottom:0\",\"font-size:1rem\",\"color:inherit\",\"background-color:#f7f7f7\",\"border-bottom:1px solid #ebebeb\",\"border-top-left-radius:calc(.3rem - 1px)\",\"border-top-right-radius:calc(.3rem - 1px)\"]],[false,{\".popover-header:empty\":false},[\"display:none\"]],[false,{\".popover-body\":false},[\"padding:.5rem .75rem\",\"color:#212529\"]],[false,{\".carousel\":false},[\"position:relative\"]],[false,{\".carousel-inner\":false},[\"position:relative\",\"width:100%\",\"overflow:hidden\"]],[false,{\".carousel-item\":false},[\"position:relative\",\"display:none\",\"-ms-flex-align:center\",\"align-items:center\",\"width:100%\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"-webkit-perspective:1000px\",\"perspective:1000px\"]],[false,{\".carousel-item-next\":false,\".carousel-item-prev\":false,\".carousel-item.active\":false},[\"display:block\",\"transition:-webkit-transform .6s ease\",\"transition:transform .6s ease\",\"transition:transform .6s ease,-webkit-transform .6s ease\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".carousel-item-next\":false,\".carousel-item-prev\":false,\".carousel-item.active\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".carousel-item-next\":false,\".carousel-item-prev\":false},[\"position:absolute\",\"top:0\"]],[false,{\".carousel-item-next.carousel-item-left\":false,\".carousel-item-prev.carousel-item-right\":false},[\"-webkit-transform:translateX(0)\",\"transform:translateX(0)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".carousel-item-next.carousel-item-left\":false,\".carousel-item-prev.carousel-item-right\":false},[\"-webkit-transform:translate3d(0,0,0)\",\"transform:translate3d(0,0,0)\"]],[false,\"}\"],[false,{\".active.carousel-item-right\":false,\".carousel-item-next\":false},[\"-webkit-transform:translateX(100%)\",\"transform:translateX(100%)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".active.carousel-item-right\":false,\".carousel-item-next\":false},[\"-webkit-transform:translate3d(100%,0,0)\",\"transform:translate3d(100%,0,0)\"]],[false,\"}\"],[false,{\".active.carousel-item-left\":false,\".carousel-item-prev\":false},[\"-webkit-transform:translateX(-100%)\",\"transform:translateX(-100%)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".active.carousel-item-left\":false,\".carousel-item-prev\":false},[\"-webkit-transform:translate3d(-100%,0,0)\",\"transform:translate3d(-100%,0,0)\"]],[false,\"}\"],[false,{\".carousel-fade .carousel-item\":false},[\"opacity:0\",\"transition-duration:.6s\",\"transition-property:opacity\"]],[false,{\".carousel-fade .carousel-item-next.carousel-item-left\":false,\".carousel-fade .carousel-item-prev.carousel-item-right\":false,\".carousel-fade .carousel-item.active\":false},[\"opacity:1\"]],[false,{\".carousel-fade .active.carousel-item-left\":false,\".carousel-fade .active.carousel-item-right\":false},[\"opacity:0\"]],[false,{\".carousel-fade .active.carousel-item-left\":false,\".carousel-fade .active.carousel-item-prev\":false,\".carousel-fade .carousel-item-next\":false,\".carousel-fade .carousel-item-prev\":false,\".carousel-fade .carousel-item.active\":false},[\"-webkit-transform:translateX(0)\",\"transform:translateX(0)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".carousel-fade .active.carousel-item-left\":false,\".carousel-fade .active.carousel-item-prev\":false,\".carousel-fade .carousel-item-next\":false,\".carousel-fade .carousel-item-prev\":false,\".carousel-fade .carousel-item.active\":false},[\"-webkit-transform:translate3d(0,0,0)\",\"transform:translate3d(0,0,0)\"]],[false,\"}\"],[false,{\".carousel-control-next\":false,\".carousel-control-prev\":false},[\"position:absolute\",\"top:0\",\"bottom:0\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"width:15%\",\"color:#fff\",\"text-align:center\",\"opacity:.5\"]],[false,{\".carousel-control-next:focus\":false,\".carousel-control-next:hover\":false,\".carousel-control-prev:focus\":false,\".carousel-control-prev:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"outline:0\",\"opacity:.9\"]],[false,{\".carousel-control-prev\":false},[\"left:0\"]],[false,{\".carousel-control-next\":false},[\"right:0\"]],[false,{\".carousel-control-next-icon\":false,\".carousel-control-prev-icon\":false},[\"display:inline-block\",\"width:20px\",\"height:20px\",\"background:transparent no-repeat center center\",\"background-size:100% 100%\"]],[false,{\".carousel-control-prev-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' fill=\\\\\'%23fff\\\\\' viewBox=\\\\\'0 0 8 8\\\\\'%3E%3Cpath d=\\\\\'M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".carousel-control-next-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' fill=\\\\\'%23fff\\\\\' viewBox=\\\\\'0 0 8 8\\\\\'%3E%3Cpath d=\\\\\'M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".carousel-indicators\":false},[\"position:absolute\",\"right:0\",\"bottom:10px\",\"left:0\",\"z-index:15\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-pack:center\",\"justify-content:center\",\"padding-left:0\",\"margin-right:15%\",\"margin-left:15%\",\"list-style:none\"]],[false,{\".carousel-indicators li\":false},[\"position:relative\",\"-ms-flex:0 1 auto\",\"flex:0 1 auto\",\"width:30px\",\"height:3px\",\"margin-right:3px\",\"margin-left:3px\",\"text-indent:-999px\",\"cursor:pointer\",\"background-color:rgba(255,255,255,.5)\"]],[false,{\".carousel-indicators li::before\":false},[\"position:absolute\",\"top:-10px\",\"left:0\",\"display:inline-block\",\"width:100%\",\"height:10px\",\"content:\\\"\\\"\"]],[false,{\".carousel-indicators li::after\":false},[\"position:absolute\",\"bottom:-10px\",\"left:0\",\"display:inline-block\",\"width:100%\",\"height:10px\",\"content:\\\"\\\"\"]],[false,{\".carousel-indicators .active\":false},[\"background-color:#fff\"]],[false,{\".carousel-caption\":false},[\"position:absolute\",\"right:15%\",\"bottom:20px\",\"left:15%\",\"z-index:10\",\"padding-top:20px\",\"padding-bottom:20px\",\"color:#fff\",\"text-align:center\"]],[false,{\".align-baseline:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:baseline\"]],[false,{\".align-top:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:top\"]],[false,{\".align-middle:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:middle\"]],[false,{\".align-bottom:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:bottom\"]],[false,{\".align-text-bottom:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:text-bottom\"]],[false,{\".align-text-top:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:text-top\"]],[false,{\".bg-primary:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#007bff\"]],[false,{\"a.bg-primary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-primary:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-primary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-primary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#0062cc\"]],[false,{\".bg-secondary:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#6c757d\"]],[false,{\"a.bg-secondary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-secondary:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-secondary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-secondary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#545b62\"]],[false,{\".bg-success:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#28a745\"]],[false,{\"a.bg-success:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-success:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-success:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-success:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#1e7e34\"]],[false,{\".bg-info:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#17a2b8\"]],[false,{\"a.bg-info:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-info:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-info:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-info:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#117a8b\"]],[false,{\".bg-warning:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#ffc107\"]],[false,{\"a.bg-warning:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-warning:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-warning:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-warning:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#d39e00\"]],[false,{\".bg-danger:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#dc3545\"]],[false,{\"a.bg-danger:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-danger:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-danger:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-danger:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#bd2130\"]],[true,{\".bg-light:not(#_#_#_#_#_#_#_)\":true},[\"background-color:#f8f9fa\"]],[true,{\"a.bg-light:focus:not(#_#_#_#_#_#_#_#_)\":true,\"a.bg-light:hover:not(#_#_#_#_#_#_#_#_)\":true,\"button.bg-light:focus:not(#_#_#_#_#_#_#_#_)\":true,\"button.bg-light:hover:not(#_#_#_#_#_#_#_#_)\":true},[\"background-color:#dae0e5\"]],[false,{\".bg-dark:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#343a40\"]],[false,{\"a.bg-dark:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-dark:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-dark:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-dark:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#1d2124\"]],[false,{\".bg-white:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#fff\"]],[false,{\".bg-transparent:not(#_#_#_#_#_#_#_)\":false},[\"background-color:transparent\"]],[false,{\".border:not(#_#_#_#_#_#_#_)\":false},[\"border:1px solid #dee2e6\"]],[false,{\".border-top:not(#_#_#_#_#_#_#_)\":false},[\"border-top:1px solid #dee2e6\"]],[false,{\".border-right:not(#_#_#_#_#_#_#_)\":false},[\"border-right:1px solid #dee2e6\"]],[false,{\".border-bottom:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom:1px solid #dee2e6\"]],[false,{\".border-left:not(#_#_#_#_#_#_#_)\":false},[\"border-left:1px solid #dee2e6\"]],[false,{\".border-0:not(#_#_#_#_#_#_#_)\":false},[\"border:0\"]],[false,{\".border-top-0:not(#_#_#_#_#_#_#_)\":false},[\"border-top:0\"]],[false,{\".border-right-0:not(#_#_#_#_#_#_#_)\":false},[\"border-right:0\"]],[false,{\".border-bottom-0:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom:0\"]],[false,{\".border-left-0:not(#_#_#_#_#_#_#_)\":false},[\"border-left:0\"]],[false,{\".border-primary:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#007bff\"]],[false,{\".border-secondary:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#6c757d\"]],[false,{\".border-success:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#28a745\"]],[false,{\".border-info:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#17a2b8\"]],[false,{\".border-warning:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#ffc107\"]],[false,{\".border-danger:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#dc3545\"]],[false,{\".border-light:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#f8f9fa\"]],[false,{\".border-dark:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#343a40\"]],[false,{\".border-white:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#fff\"]],[false,{\".rounded:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:.25rem\"]],[false,{\".rounded-top:not(#_#_#_#_#_#_#_)\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".rounded-right:not(#_#_#_#_#_#_#_)\":false},[\"border-top-right-radius:.25rem\",\"border-bottom-right-radius:.25rem\"]],[false,{\".rounded-bottom:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".rounded-left:not(#_#_#_#_#_#_#_)\":false},[\"border-top-left-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".rounded-circle:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:50%\"]],[false,{\".rounded-0:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[false,{\".clearfix::after\":false},[\"display:block\",\"clear:both\",\"content:\\\"\\\"\"]],[false,{\".d-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"@media (min-width:576px){\"],[false,{\".d-sm-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-sm-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-sm-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-sm-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-sm-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-sm-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-sm-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-sm-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-sm-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".d-md-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-md-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-md-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-md-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-md-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-md-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-md-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-md-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-md-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".d-lg-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-lg-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-lg-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-lg-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-lg-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-lg-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-lg-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-lg-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-lg-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".d-xl-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-xl-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-xl-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-xl-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-xl-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-xl-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-xl-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-xl-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-xl-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media print{\"],[false,{\".d-print-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-print-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-print-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-print-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-print-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-print-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-print-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-print-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-print-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,{\".embed-responsive\":false},[\"position:relative\",\"display:block\",\"width:100%\",\"padding:0\",\"overflow:hidden\"]],[false,{\".embed-responsive::before\":false},[\"display:block\",\"content:\\\"\\\"\"]],[false,{\".embed-responsive .embed-responsive-item\":false,\".embed-responsive embed\":false,\".embed-responsive amp-iframe\":false,\".embed-responsive amp-google-document-embed\":false,\".embed-responsive amp-video\":false,\".embed-responsive amp-youtube\":false},[\"position:absolute\",\"top:0\",\"bottom:0\",\"left:0\",\"width:100%\",\"height:100%\",\"border:0\"]],[false,{\".embed-responsive-21by9::before\":false},[\"padding-top:42.857143%\"]],[false,{\".embed-responsive-16by9::before\":false},[\"padding-top:56.25%\"]],[false,{\".embed-responsive-4by3::before\":false},[\"padding-top:75%\"]],[false,{\".embed-responsive-1by1::before\":false},[\"padding-top:100%\"]],[false,{\".flex-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[true,{\".align-items-center:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[true,{\".align-self-end:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[true,{\".align-self-center:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"@media (min-width:576px){\"],[false,{\".flex-sm-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-sm-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-sm-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-sm-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-sm-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-sm-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-sm-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-sm-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-sm-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-sm-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-sm-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-sm-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-sm-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-sm-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-sm-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-sm-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-sm-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-sm-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-sm-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-sm-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-sm-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".flex-md-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-md-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-md-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-md-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-md-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-md-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-md-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-md-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-md-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-md-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-md-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-md-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-md-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-md-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-md-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-md-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-md-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-md-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-md-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-md-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-md-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".flex-lg-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-lg-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-lg-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-lg-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-lg-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-lg-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-lg-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-lg-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-lg-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-lg-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-lg-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-lg-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-lg-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-lg-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-lg-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-lg-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-lg-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-lg-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-lg-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-lg-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-lg-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".flex-xl-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-xl-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-xl-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-xl-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-xl-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-xl-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-xl-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-xl-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-xl-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-xl-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-xl-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-xl-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-xl-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-xl-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-xl-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-xl-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-xl-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-xl-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-xl-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-xl-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-xl-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[false,{\".float-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"@media (min-width:576px){\"],[false,{\".float-sm-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-sm-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-sm-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".float-md-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-md-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-md-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".float-lg-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-lg-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-lg-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".float-xl-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-xl-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-xl-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,{\".position-static:not(#_#_#_#_#_#_#_)\":false},[\"position:static\"]],[false,{\".position-relative:not(#_#_#_#_#_#_#_)\":false},[\"position:relative\"]],[false,{\".position-absolute:not(#_#_#_#_#_#_#_)\":false},[\"position:absolute\"]],[false,{\".position-fixed:not(#_#_#_#_#_#_#_)\":false},[\"position:fixed\"]],[false,{\".position-sticky:not(#_#_#_#_#_#_#_)\":false},[\"position:-webkit-sticky\",\"position:sticky\"]],[false,{\".fixed-top\":false},[\"position:fixed\",\"top:0\",\"right:0\",\"left:0\",\"z-index:1030\"]],[false,{\".fixed-bottom\":false},[\"position:fixed\",\"right:0\",\"bottom:0\",\"left:0\",\"z-index:1030\"]],[false,\"@supports ((position:-webkit-sticky) or (position:sticky)){\"],[false,{\".sticky-top\":false},[\"position:-webkit-sticky\",\"position:sticky\",\"top:0\",\"z-index:1020\"]],[false,\"}\"],[false,{\".sr-only\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"white-space:nowrap\",\"border:0\"]],[false,{\".sr-only-focusable:active\":false,\".sr-only-focusable:focus\":false},[\"position:static\",\"width:auto\",\"height:auto\",\"overflow:visible\",\"clip:auto\",\"white-space:normal\"]],[false,{\".shadow-sm:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:0 .125rem .25rem rgba(0,0,0,.075)\"]],[false,{\".shadow:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:0 .5rem 1rem rgba(0,0,0,.15)\"]],[false,{\".shadow-lg:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:0 1rem 3rem rgba(0,0,0,.175)\"]],[false,{\".shadow-none:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:none\"]],[false,{\".w-25:not(#_#_#_#_#_#_#_)\":false},[\"width:25%\"]],[false,{\".w-50:not(#_#_#_#_#_#_#_)\":false},[\"width:50%\"]],[false,{\".w-75:not(#_#_#_#_#_#_#_)\":false},[\"width:75%\"]],[false,{\".w-100:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".w-auto:not(#_#_#_#_#_#_#_)\":false},[\"width:auto\"]],[false,{\".h-25:not(#_#_#_#_#_#_#_)\":false},[\"height:25%\"]],[false,{\".h-50:not(#_#_#_#_#_#_#_)\":false},[\"height:50%\"]],[false,{\".h-75:not(#_#_#_#_#_#_#_)\":false},[\"height:75%\"]],[false,{\".h-100:not(#_#_#_#_#_#_#_)\":false},[\"height:100%\"]],[false,{\".h-auto:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[false,{\".mw-100:not(#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".mh-100:not(#_#_#_#_#_#_#_)\":false},[\"max-height:100%\"]],[false,{\".m-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-0:not(#_#_#_#_#_#_#_)\":false,\".my-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-0:not(#_#_#_#_#_#_#_)\":false,\".mx-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-0:not(#_#_#_#_#_#_#_)\":false,\".my-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-0:not(#_#_#_#_#_#_#_)\":false,\".mx-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-1:not(#_#_#_#_#_#_#_)\":false,\".my-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-1:not(#_#_#_#_#_#_#_)\":false,\".mx-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-1:not(#_#_#_#_#_#_#_)\":false,\".my-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-1:not(#_#_#_#_#_#_#_)\":false,\".mx-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-2:not(#_#_#_#_#_#_#_)\":false,\".my-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-2:not(#_#_#_#_#_#_#_)\":false,\".mx-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-2:not(#_#_#_#_#_#_#_)\":false,\".my-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[true,{\".ml-2:not(#_#_#_#_#_#_#_)\":true,\".mx-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-3:not(#_#_#_#_#_#_#_)\":false,\".my-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-3:not(#_#_#_#_#_#_#_)\":false,\".mx-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-3:not(#_#_#_#_#_#_#_)\":false,\".my-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-3:not(#_#_#_#_#_#_#_)\":false,\".mx-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-4:not(#_#_#_#_#_#_#_)\":false,\".my-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-4:not(#_#_#_#_#_#_#_)\":false,\".mx-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-4:not(#_#_#_#_#_#_#_)\":false,\".my-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-4:not(#_#_#_#_#_#_#_)\":false,\".mx-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-5:not(#_#_#_#_#_#_#_)\":false,\".my-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-5:not(#_#_#_#_#_#_#_)\":false,\".mx-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-5:not(#_#_#_#_#_#_#_)\":false,\".my-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-5:not(#_#_#_#_#_#_#_)\":false,\".mx-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-0:not(#_#_#_#_#_#_#_)\":false,\".py-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-0:not(#_#_#_#_#_#_#_)\":false,\".px-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-0:not(#_#_#_#_#_#_#_)\":false,\".py-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-0:not(#_#_#_#_#_#_#_)\":false,\".px-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-1:not(#_#_#_#_#_#_#_)\":false,\".py-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-1:not(#_#_#_#_#_#_#_)\":false,\".px-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-1:not(#_#_#_#_#_#_#_)\":false,\".py-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-1:not(#_#_#_#_#_#_#_)\":false,\".px-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-2:not(#_#_#_#_#_#_#_)\":false,\".py-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-2:not(#_#_#_#_#_#_#_)\":false,\".px-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-2:not(#_#_#_#_#_#_#_)\":false,\".py-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-2:not(#_#_#_#_#_#_#_)\":false,\".px-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-3:not(#_#_#_#_#_#_#_)\":false,\".py-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-3:not(#_#_#_#_#_#_#_)\":false,\".px-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-3:not(#_#_#_#_#_#_#_)\":false,\".py-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-3:not(#_#_#_#_#_#_#_)\":false,\".px-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-4:not(#_#_#_#_#_#_#_)\":false,\".py-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-4:not(#_#_#_#_#_#_#_)\":false,\".px-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-4:not(#_#_#_#_#_#_#_)\":false,\".py-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-4:not(#_#_#_#_#_#_#_)\":false,\".px-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-5:not(#_#_#_#_#_#_#_)\":false,\".py-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-5:not(#_#_#_#_#_#_#_)\":false,\".px-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-5:not(#_#_#_#_#_#_#_)\":false,\".py-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-5:not(#_#_#_#_#_#_#_)\":false,\".px-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-auto:not(#_#_#_#_#_#_#_)\":false,\".my-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[true,{\".mr-auto:not(#_#_#_#_#_#_#_)\":true,\".mx-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-auto:not(#_#_#_#_#_#_#_)\":false,\".my-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"@media (min-width:576px){\"],[false,{\".m-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-sm-0:not(#_#_#_#_#_#_#_)\":false,\".my-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-sm-0:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-sm-0:not(#_#_#_#_#_#_#_)\":false,\".my-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-sm-0:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-sm-1:not(#_#_#_#_#_#_#_)\":false,\".my-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-sm-1:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-sm-1:not(#_#_#_#_#_#_#_)\":false,\".my-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-sm-1:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-sm-2:not(#_#_#_#_#_#_#_)\":false,\".my-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-sm-2:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-sm-2:not(#_#_#_#_#_#_#_)\":false,\".my-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-sm-2:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-sm-3:not(#_#_#_#_#_#_#_)\":false,\".my-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-sm-3:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-sm-3:not(#_#_#_#_#_#_#_)\":false,\".my-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-sm-3:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-sm-4:not(#_#_#_#_#_#_#_)\":false,\".my-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-sm-4:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-sm-4:not(#_#_#_#_#_#_#_)\":false,\".my-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-sm-4:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-sm-5:not(#_#_#_#_#_#_#_)\":false,\".my-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-sm-5:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-sm-5:not(#_#_#_#_#_#_#_)\":false,\".my-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-sm-5:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-sm-0:not(#_#_#_#_#_#_#_)\":false,\".py-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-sm-0:not(#_#_#_#_#_#_#_)\":false,\".px-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-sm-0:not(#_#_#_#_#_#_#_)\":false,\".py-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-sm-0:not(#_#_#_#_#_#_#_)\":false,\".px-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-sm-1:not(#_#_#_#_#_#_#_)\":false,\".py-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-sm-1:not(#_#_#_#_#_#_#_)\":false,\".px-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-sm-1:not(#_#_#_#_#_#_#_)\":false,\".py-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-sm-1:not(#_#_#_#_#_#_#_)\":false,\".px-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-sm-2:not(#_#_#_#_#_#_#_)\":false,\".py-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-sm-2:not(#_#_#_#_#_#_#_)\":false,\".px-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-sm-2:not(#_#_#_#_#_#_#_)\":false,\".py-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-sm-2:not(#_#_#_#_#_#_#_)\":false,\".px-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-sm-3:not(#_#_#_#_#_#_#_)\":false,\".py-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-sm-3:not(#_#_#_#_#_#_#_)\":false,\".px-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-sm-3:not(#_#_#_#_#_#_#_)\":false,\".py-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-sm-3:not(#_#_#_#_#_#_#_)\":false,\".px-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-sm-4:not(#_#_#_#_#_#_#_)\":false,\".py-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-sm-4:not(#_#_#_#_#_#_#_)\":false,\".px-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-sm-4:not(#_#_#_#_#_#_#_)\":false,\".py-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-sm-4:not(#_#_#_#_#_#_#_)\":false,\".px-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-sm-5:not(#_#_#_#_#_#_#_)\":false,\".py-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-sm-5:not(#_#_#_#_#_#_#_)\":false,\".px-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-sm-5:not(#_#_#_#_#_#_#_)\":false,\".py-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-sm-5:not(#_#_#_#_#_#_#_)\":false,\".px-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".my-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".my-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".m-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-md-0:not(#_#_#_#_#_#_#_)\":false,\".my-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-md-0:not(#_#_#_#_#_#_#_)\":false,\".mx-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-md-0:not(#_#_#_#_#_#_#_)\":false,\".my-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-md-0:not(#_#_#_#_#_#_#_)\":false,\".mx-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-md-1:not(#_#_#_#_#_#_#_)\":false,\".my-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-md-1:not(#_#_#_#_#_#_#_)\":false,\".mx-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-md-1:not(#_#_#_#_#_#_#_)\":false,\".my-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-md-1:not(#_#_#_#_#_#_#_)\":false,\".mx-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-md-2:not(#_#_#_#_#_#_#_)\":false,\".my-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-md-2:not(#_#_#_#_#_#_#_)\":false,\".mx-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-md-2:not(#_#_#_#_#_#_#_)\":false,\".my-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-md-2:not(#_#_#_#_#_#_#_)\":false,\".mx-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-md-3:not(#_#_#_#_#_#_#_)\":false,\".my-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-md-3:not(#_#_#_#_#_#_#_)\":false,\".mx-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-md-3:not(#_#_#_#_#_#_#_)\":false,\".my-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-md-3:not(#_#_#_#_#_#_#_)\":false,\".mx-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-md-4:not(#_#_#_#_#_#_#_)\":false,\".my-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-md-4:not(#_#_#_#_#_#_#_)\":false,\".mx-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-md-4:not(#_#_#_#_#_#_#_)\":false,\".my-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-md-4:not(#_#_#_#_#_#_#_)\":false,\".mx-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-md-5:not(#_#_#_#_#_#_#_)\":false,\".my-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-md-5:not(#_#_#_#_#_#_#_)\":false,\".mx-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-md-5:not(#_#_#_#_#_#_#_)\":false,\".my-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-md-5:not(#_#_#_#_#_#_#_)\":false,\".mx-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-md-0:not(#_#_#_#_#_#_#_)\":false,\".py-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-md-0:not(#_#_#_#_#_#_#_)\":false,\".px-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-md-0:not(#_#_#_#_#_#_#_)\":false,\".py-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-md-0:not(#_#_#_#_#_#_#_)\":false,\".px-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-md-1:not(#_#_#_#_#_#_#_)\":false,\".py-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-md-1:not(#_#_#_#_#_#_#_)\":false,\".px-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-md-1:not(#_#_#_#_#_#_#_)\":false,\".py-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-md-1:not(#_#_#_#_#_#_#_)\":false,\".px-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-md-2:not(#_#_#_#_#_#_#_)\":false,\".py-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-md-2:not(#_#_#_#_#_#_#_)\":false,\".px-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-md-2:not(#_#_#_#_#_#_#_)\":false,\".py-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-md-2:not(#_#_#_#_#_#_#_)\":false,\".px-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-md-3:not(#_#_#_#_#_#_#_)\":false,\".py-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-md-3:not(#_#_#_#_#_#_#_)\":false,\".px-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-md-3:not(#_#_#_#_#_#_#_)\":false,\".py-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-md-3:not(#_#_#_#_#_#_#_)\":false,\".px-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-md-4:not(#_#_#_#_#_#_#_)\":false,\".py-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-md-4:not(#_#_#_#_#_#_#_)\":false,\".px-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-md-4:not(#_#_#_#_#_#_#_)\":false,\".py-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-md-4:not(#_#_#_#_#_#_#_)\":false,\".px-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-md-5:not(#_#_#_#_#_#_#_)\":false,\".py-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-md-5:not(#_#_#_#_#_#_#_)\":false,\".px-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-md-5:not(#_#_#_#_#_#_#_)\":false,\".py-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-md-5:not(#_#_#_#_#_#_#_)\":false,\".px-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-md-auto:not(#_#_#_#_#_#_#_)\":false,\".my-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-md-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-md-auto:not(#_#_#_#_#_#_#_)\":false,\".my-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-md-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".m-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-lg-0:not(#_#_#_#_#_#_#_)\":false,\".my-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-lg-0:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-lg-0:not(#_#_#_#_#_#_#_)\":false,\".my-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-lg-0:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-lg-1:not(#_#_#_#_#_#_#_)\":false,\".my-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-lg-1:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-lg-1:not(#_#_#_#_#_#_#_)\":false,\".my-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-lg-1:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-lg-2:not(#_#_#_#_#_#_#_)\":false,\".my-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-lg-2:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-lg-2:not(#_#_#_#_#_#_#_)\":false,\".my-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-lg-2:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-lg-3:not(#_#_#_#_#_#_#_)\":false,\".my-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-lg-3:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-lg-3:not(#_#_#_#_#_#_#_)\":false,\".my-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-lg-3:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-lg-4:not(#_#_#_#_#_#_#_)\":false,\".my-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-lg-4:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-lg-4:not(#_#_#_#_#_#_#_)\":false,\".my-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-lg-4:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-lg-5:not(#_#_#_#_#_#_#_)\":false,\".my-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-lg-5:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-lg-5:not(#_#_#_#_#_#_#_)\":false,\".my-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-lg-5:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-lg-0:not(#_#_#_#_#_#_#_)\":false,\".py-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-lg-0:not(#_#_#_#_#_#_#_)\":false,\".px-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-lg-0:not(#_#_#_#_#_#_#_)\":false,\".py-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-lg-0:not(#_#_#_#_#_#_#_)\":false,\".px-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-lg-1:not(#_#_#_#_#_#_#_)\":false,\".py-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-lg-1:not(#_#_#_#_#_#_#_)\":false,\".px-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-lg-1:not(#_#_#_#_#_#_#_)\":false,\".py-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-lg-1:not(#_#_#_#_#_#_#_)\":false,\".px-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-lg-2:not(#_#_#_#_#_#_#_)\":false,\".py-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-lg-2:not(#_#_#_#_#_#_#_)\":false,\".px-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-lg-2:not(#_#_#_#_#_#_#_)\":false,\".py-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-lg-2:not(#_#_#_#_#_#_#_)\":false,\".px-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-lg-3:not(#_#_#_#_#_#_#_)\":false,\".py-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-lg-3:not(#_#_#_#_#_#_#_)\":false,\".px-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-lg-3:not(#_#_#_#_#_#_#_)\":false,\".py-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-lg-3:not(#_#_#_#_#_#_#_)\":false,\".px-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-lg-4:not(#_#_#_#_#_#_#_)\":false,\".py-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-lg-4:not(#_#_#_#_#_#_#_)\":false,\".px-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-lg-4:not(#_#_#_#_#_#_#_)\":false,\".py-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-lg-4:not(#_#_#_#_#_#_#_)\":false,\".px-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-lg-5:not(#_#_#_#_#_#_#_)\":false,\".py-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-lg-5:not(#_#_#_#_#_#_#_)\":false,\".px-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-lg-5:not(#_#_#_#_#_#_#_)\":false,\".py-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-lg-5:not(#_#_#_#_#_#_#_)\":false,\".px-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".my-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".my-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".m-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-xl-0:not(#_#_#_#_#_#_#_)\":false,\".my-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-xl-0:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-xl-0:not(#_#_#_#_#_#_#_)\":false,\".my-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-xl-0:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-xl-1:not(#_#_#_#_#_#_#_)\":false,\".my-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-xl-1:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-xl-1:not(#_#_#_#_#_#_#_)\":false,\".my-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-xl-1:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-xl-2:not(#_#_#_#_#_#_#_)\":false,\".my-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-xl-2:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-xl-2:not(#_#_#_#_#_#_#_)\":false,\".my-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-xl-2:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-xl-3:not(#_#_#_#_#_#_#_)\":false,\".my-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-xl-3:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-xl-3:not(#_#_#_#_#_#_#_)\":false,\".my-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-xl-3:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-xl-4:not(#_#_#_#_#_#_#_)\":false,\".my-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-xl-4:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-xl-4:not(#_#_#_#_#_#_#_)\":false,\".my-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-xl-4:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-xl-5:not(#_#_#_#_#_#_#_)\":false,\".my-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-xl-5:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-xl-5:not(#_#_#_#_#_#_#_)\":false,\".my-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-xl-5:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-xl-0:not(#_#_#_#_#_#_#_)\":false,\".py-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-xl-0:not(#_#_#_#_#_#_#_)\":false,\".px-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-xl-0:not(#_#_#_#_#_#_#_)\":false,\".py-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-xl-0:not(#_#_#_#_#_#_#_)\":false,\".px-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-xl-1:not(#_#_#_#_#_#_#_)\":false,\".py-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-xl-1:not(#_#_#_#_#_#_#_)\":false,\".px-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-xl-1:not(#_#_#_#_#_#_#_)\":false,\".py-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-xl-1:not(#_#_#_#_#_#_#_)\":false,\".px-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-xl-2:not(#_#_#_#_#_#_#_)\":false,\".py-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-xl-2:not(#_#_#_#_#_#_#_)\":false,\".px-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-xl-2:not(#_#_#_#_#_#_#_)\":false,\".py-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-xl-2:not(#_#_#_#_#_#_#_)\":false,\".px-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-xl-3:not(#_#_#_#_#_#_#_)\":false,\".py-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-xl-3:not(#_#_#_#_#_#_#_)\":false,\".px-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-xl-3:not(#_#_#_#_#_#_#_)\":false,\".py-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-xl-3:not(#_#_#_#_#_#_#_)\":false,\".px-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-xl-4:not(#_#_#_#_#_#_#_)\":false,\".py-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-xl-4:not(#_#_#_#_#_#_#_)\":false,\".px-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-xl-4:not(#_#_#_#_#_#_#_)\":false,\".py-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-xl-4:not(#_#_#_#_#_#_#_)\":false,\".px-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-xl-5:not(#_#_#_#_#_#_#_)\":false,\".py-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-xl-5:not(#_#_#_#_#_#_#_)\":false,\".px-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-xl-5:not(#_#_#_#_#_#_#_)\":false,\".py-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-xl-5:not(#_#_#_#_#_#_#_)\":false,\".px-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".my-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".my-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,{\".text-monospace\":false},[\"font-family:SFMono-Regular,Menlo,Monaco,Consolas,\\\"Liberation Mono\\\",\\\"Courier New\\\",monospace\"]],[false,{\".text-justify:not(#_#_#_#_#_#_#_)\":false},[\"text-align:justify\"]],[false,{\".text-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"white-space:nowrap\"]],[false,{\".text-truncate\":false},[\"overflow:hidden\",\"text-overflow:ellipsis\",\"white-space:nowrap\"]],[false,{\".text-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[true,{\".text-center:not(#_#_#_#_#_#_#_)\":true},[\"text-align:center\"]],[false,\"@media (min-width:576px){\"],[false,{\".text-sm-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-sm-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".text-md-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-md-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-md-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".text-lg-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-lg-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".text-xl-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-xl-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".text-lowercase:not(#_#_#_#_#_#_#_)\":false},[\"text-transform:lowercase\"]],[false,{\".text-uppercase:not(#_#_#_#_#_#_#_)\":false},[\"text-transform:uppercase\"]],[false,{\".text-capitalize:not(#_#_#_#_#_#_#_)\":false},[\"text-transform:capitalize\"]],[false,{\".font-weight-light:not(#_#_#_#_#_#_#_)\":false},[\"font-weight:300\"]],[false,{\".font-weight-normal:not(#_#_#_#_#_#_#_)\":false},[\"font-weight:400\"]],[false,{\".font-weight-bold:not(#_#_#_#_#_#_#_)\":false},[\"font-weight:700\"]],[false,{\".font-italic:not(#_#_#_#_#_#_#_)\":false},[\"font-style:italic\"]],[false,{\".text-white:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".text-primary:not(#_#_#_#_#_#_#_)\":false},[\"color:#007bff\"]],[false,{\"a.text-primary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-primary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#0062cc\"]],[false,{\".text-secondary:not(#_#_#_#_#_#_#_)\":false},[\"color:#6c757d\"]],[false,{\"a.text-secondary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-secondary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#545b62\"]],[false,{\".text-success:not(#_#_#_#_#_#_#_)\":false},[\"color:#28a745\"]],[false,{\"a.text-success:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-success:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#1e7e34\"]],[false,{\".text-info:not(#_#_#_#_#_#_#_)\":false},[\"color:#17a2b8\"]],[false,{\"a.text-info:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-info:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#117a8b\"]],[false,{\".text-warning:not(#_#_#_#_#_#_#_)\":false},[\"color:#ffc107\"]],[false,{\"a.text-warning:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-warning:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#d39e00\"]],[false,{\".text-danger:not(#_#_#_#_#_#_#_)\":false},[\"color:#dc3545\"]],[false,{\"a.text-danger:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-danger:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#bd2130\"]],[false,{\".text-light:not(#_#_#_#_#_#_#_)\":false},[\"color:#f8f9fa\"]],[false,{\"a.text-light:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-light:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#dae0e5\"]],[false,{\".text-dark:not(#_#_#_#_#_#_#_)\":false},[\"color:#343a40\"]],[false,{\"a.text-dark:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-dark:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#1d2124\"]],[false,{\".text-body:not(#_#_#_#_#_#_#_)\":false},[\"color:#212529\"]],[false,{\".text-muted:not(#_#_#_#_#_#_#_)\":false},[\"color:#6c757d\"]],[false,{\".text-black-50:not(#_#_#_#_#_#_#_)\":false},[\"color:rgba(0,0,0,.5)\"]],[false,{\".text-white-50:not(#_#_#_#_#_#_#_)\":false},[\"color:rgba(255,255,255,.5)\"]],[false,{\".text-hide\":false},[\"font:0\\/0 a\",\"color:transparent\",\"text-shadow:none\",\"background-color:transparent\",\"border:0\"]],[false,{\".visible:not(#_#_#_#_#_#_#_)\":false},[\"visibility:visible\"]],[false,{\".invisible:not(#_#_#_#_#_#_#_)\":false},[\"visibility:hidden\"]],[true,\"@media print{\"],[true,{\"*:not(#_#_#_#_#_#_)\":true,\"::after:not(#_#_#_#_#_#_#_#_)\":true,\"::before:not(#_#_#_#_#_#_#_#_)\":true},[\"text-shadow:none\",\"box-shadow:none\"]],[true,{\"a:not(.btn)\":true},[\"text-decoration:underline\"]],[false,{\"abbr[title]::after\":false},[\"content:\\\" (\\\" attr(title) \\\")\\\"\"]],[false,{\"pre:not(#_#_#_#_#_#_#_#_)\":false},[\"white-space:pre-wrap\"]],[false,{\"blockquote\":false,\"pre\":false},[\"border:1px solid #adb5bd\",\"page-break-inside:avoid\"]],[false,{\"thead\":false},[\"display:table-header-group\"]],[true,{\"amp-img\":true,\"amp-anim\":false,\"tr\":false},[\"page-break-inside:avoid\"]],[true,{\"h2\":true,\"h3\":true,\"p\":true},[\"orphans:3\",\"widows:3\"]],[true,{\"h2\":true,\"h3\":true},[\"page-break-after:avoid\"]],[true,\"@page{size:a3}\"],[true,{\"body:not(#_#_#_#_#_#_#_#_)\":true},[\"min-width:992px\"]],[true,{\".container:not(#_#_#_#_#_#_#_)\":true},[\"min-width:992px\"]],[true,{\".navbar\":true},[\"display:none\"]],[false,{\".badge\":false},[\"border:1px solid #000\"]],[false,{\".table:not(#_#_#_#_#_#_#_)\":false},[\"border-collapse:collapse\"]],[false,{\".table td:not(#_#_#_#_#_#_#_#_)\":false,\".table th:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#fff\"]],[false,{\".table-bordered td:not(#_#_#_#_#_#_#_#_)\":false,\".table-bordered th:not(#_#_#_#_#_#_#_#_)\":false},[\"border:1px solid #dee2e6\"]],[false,{\".table-dark\":false},[\"color:inherit\"]],[false,{\".table-dark tbody+tbody\":false,\".table-dark td\":false,\".table-dark th\":false,\".table-dark thead th\":false},[\"border-color:#dee2e6\"]],[false,{\".table .thead-dark th\":false},[\"color:inherit\",\"border-color:#dee2e6\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":68760,\"final_size\":48135,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/animate.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"a2e2915566ab9cb1c9ab842793acd3f3\",\"parse_time\":0.38850998878479004,\"shake_time\":0.0005371570587158203,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".animated\":false},[\"-webkit-animation-duration:1s\",\"animation-duration:1s\",\"-webkit-animation-fill-mode:both\",\"animation-fill-mode:both\"]],[false,{\".animated.infinite\":false},[\"-webkit-animation-iteration-count:infinite\",\"animation-iteration-count:infinite\"]],[false,{\".animated.hinge\":false},[\"-webkit-animation-duration:2s\",\"animation-duration:2s\"]],[true,\"@-webkit-keyframes bounce{\"],[true,\"0%,20%,50%,80%,100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}\"],[true,\"}@keyframes bounce{\"],[true,\"0%,20%,50%,80%,100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"40%{-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"60%{-webkit-transform:translateY(-15px);-ms-transform:translateY(-15px);transform:translateY(-15px)}\"],[true,\"}\"],[false,{\".bounce\":false},[\"-webkit-animation-name:bounce\",\"animation-name:bounce\"]],[true,\"@-webkit-keyframes flash{\"],[true,\"0%,50%,100%{opacity:1}\"],[true,\"25%,75%{opacity:0}\"],[true,\"}@keyframes flash{\"],[true,\"0%,50%,100%{opacity:1}\"],[true,\"25%,75%{opacity:0}\"],[true,\"}\"],[false,{\".flash\":false},[\"-webkit-animation-name:flash\",\"animation-name:flash\"]],[true,\"@-webkit-keyframes pulse{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{-webkit-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes pulse{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"50%{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,{\".pulse\":false},[\"-webkit-animation-name:pulse\",\"animation-name:pulse\"]],[true,\"@-webkit-keyframes rubberBand{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"30%{-webkit-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}\"],[true,\"40%{-webkit-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}\"],[true,\"60%{-webkit-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}\"],[true,\"100%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes rubberBand{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"30%{-webkit-transform:scaleX(1.25) scaleY(.75);-ms-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}\"],[true,\"40%{-webkit-transform:scaleX(.75) scaleY(1.25);-ms-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}\"],[true,\"60%{-webkit-transform:scaleX(1.15) scaleY(.85);-ms-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}\"],[true,\"100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,{\".rubberBand\":false},[\"-webkit-animation-name:rubberBand\",\"animation-name:rubberBand\"]],[true,\"@-webkit-keyframes shake{\"],[true,\"0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"}@keyframes shake{\"],[true,\"0%,100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"20%,40%,60%,80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"}\"],[false,{\".shake\":false},[\"-webkit-animation-name:shake\",\"animation-name:shake\"]],[true,\"@-webkit-keyframes swing{\"],[true,\"20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}\"],[true,\"60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}\"],[true,\"80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}\"],[true,\"100%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}@keyframes swing{\"],[true,\"20%{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"40%{-webkit-transform:rotate(-10deg);-ms-transform:rotate(-10deg);transform:rotate(-10deg)}\"],[true,\"60%{-webkit-transform:rotate(5deg);-ms-transform:rotate(5deg);transform:rotate(5deg)}\"],[true,\"80%{-webkit-transform:rotate(-5deg);-ms-transform:rotate(-5deg);transform:rotate(-5deg)}\"],[true,\"100%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}\"],[false,{\".swing\":false},[\"-webkit-transform-origin:top center\",\"-ms-transform-origin:top center\",\"transform-origin:top center\",\"-webkit-animation-name:swing\",\"animation-name:swing\"]],[true,\"@-webkit-keyframes tada{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}\"],[true,\"30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}\"],[true,\"40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}\"],[true,\"100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}\"],[true,\"}@keyframes tada{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"10%,20%{-webkit-transform:scale(.9) rotate(-3deg);-ms-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}\"],[true,\"30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);-ms-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}\"],[true,\"40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);-ms-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}\"],[true,\"100%{-webkit-transform:scale(1) rotate(0);-ms-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}\"],[true,\"}\"],[false,{\".tada\":false},[\"-webkit-animation-name:tada\",\"animation-name:tada\"]],[true,\"@-webkit-keyframes wobble{\"],[true,\"0%{-webkit-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"15%{-webkit-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}\"],[true,\"30%{-webkit-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}\"],[true,\"45%{-webkit-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}\"],[true,\"60%{-webkit-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}\"],[true,\"75%{-webkit-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}\"],[true,\"100%{-webkit-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"}@keyframes wobble{\"],[true,\"0%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"15%{-webkit-transform:translateX(-25%) rotate(-5deg);-ms-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}\"],[true,\"30%{-webkit-transform:translateX(20%) rotate(3deg);-ms-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}\"],[true,\"45%{-webkit-transform:translateX(-15%) rotate(-3deg);-ms-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}\"],[true,\"60%{-webkit-transform:translateX(10%) rotate(2deg);-ms-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}\"],[true,\"75%{-webkit-transform:translateX(-5%) rotate(-1deg);-ms-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}\"],[true,\"100%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"}\"],[false,{\".wobble\":false},[\"-webkit-animation-name:wobble\",\"animation-name:wobble\"]],[true,\"@-webkit-keyframes bounceIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}\"],[true,\"70%{-webkit-transform:scale(.9);transform:scale(.9)}\"],[true,\"100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes bounceIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}\"],[true,\"70%{-webkit-transform:scale(.9);-ms-transform:scale(.9);transform:scale(.9)}\"],[true,\"100%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,{\".bounceIn\":false},[\"-webkit-animation-name:bounceIn\",\"animation-name:bounceIn\"]],[true,\"@-webkit-keyframes bounceInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}\"],[true,\"80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}\"],[true,\"100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes bounceInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px)}\"],[true,\"80%{-webkit-transform:translateY(-10px);-ms-transform:translateY(-10px);transform:translateY(-10px)}\"],[true,\"100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".bounceInDown\":false},[\"-webkit-animation-name:bounceInDown\",\"animation-name:bounceInDown\"]],[true,\"@-webkit-keyframes bounceInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(30px);transform:translateX(30px)}\"],[true,\"80%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes bounceInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(30px);-ms-transform:translateX(30px);transform:translateX(30px)}\"],[true,\"80%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".bounceInLeft\":false},[\"-webkit-animation-name:bounceInLeft\",\"animation-name:bounceInLeft\"]],[true,\"@-webkit-keyframes bounceInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(-30px);transform:translateX(-30px)}\"],[true,\"80%{-webkit-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes bounceInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(-30px);-ms-transform:translateX(-30px);transform:translateX(-30px)}\"],[true,\"80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".bounceInRight\":false},[\"-webkit-animation-name:bounceInRight\",\"animation-name:bounceInRight\"]],[true,\"@-webkit-keyframes bounceInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"80%{-webkit-transform:translateY(10px);transform:translateY(10px)}\"],[true,\"100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes bounceInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"80%{-webkit-transform:translateY(10px);-ms-transform:translateY(10px);transform:translateY(10px)}\"],[true,\"100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".bounceInUp\":false},[\"-webkit-animation-name:bounceInUp\",\"animation-name:bounceInUp\"]],[true,\"@-webkit-keyframes bounceOut{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"25%{-webkit-transform:scale(.95);transform:scale(.95)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"}@keyframes bounceOut{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"25%{-webkit-transform:scale(.95);-ms-transform:scale(.95);transform:scale(.95)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"}\"],[false,{\".bounceOut\":false},[\"-webkit-animation-name:bounceOut\",\"animation-name:bounceOut\"]],[true,\"@-webkit-keyframes bounceOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}@keyframes bounceOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}\"],[false,{\".bounceOutDown\":false},[\"-webkit-animation-name:bounceOutDown\",\"animation-name:bounceOutDown\"]],[true,\"@-webkit-keyframes bounceOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}@keyframes bounceOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}\"],[false,{\".bounceOutLeft\":false},[\"-webkit-animation-name:bounceOutLeft\",\"animation-name:bounceOutLeft\"]],[true,\"@-webkit-keyframes bounceOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}@keyframes bounceOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}\"],[false,{\".bounceOutRight\":false},[\"-webkit-animation-name:bounceOutRight\",\"animation-name:bounceOutRight\"]],[true,\"@-webkit-keyframes bounceOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}@keyframes bounceOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}\"],[false,{\".bounceOutUp\":false},[\"-webkit-animation-name:bounceOutUp\",\"animation-name:bounceOutUp\"]],[true,\"@-webkit-keyframes fadeIn{\"],[true,\"0%{opacity:0}\"],[true,\"100%{opacity:1}\"],[true,\"}@keyframes fadeIn{\"],[true,\"0%{opacity:0}\"],[true,\"100%{opacity:1}\"],[true,\"}\"],[false,{\".fadeIn\":false},[\"-webkit-animation-name:fadeIn\",\"animation-name:fadeIn\"]],[true,\"@-webkit-keyframes fadeInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInDown\":false},[\"-webkit-animation-name:fadeInDown\",\"animation-name:fadeInDown\"]],[true,\"@-webkit-keyframes fadeInDownBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInDownBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInDownBig\":false},[\"-webkit-animation-name:fadeInDownBig\",\"animation-name:fadeInDownBig\"]],[true,\"@-webkit-keyframes fadeInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInLeft\":false},[\"-webkit-animation-name:fadeInLeft\",\"animation-name:fadeInLeft\"]],[true,\"@-webkit-keyframes fadeInLeftBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInLeftBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInLeftBig\":false},[\"-webkit-animation-name:fadeInLeftBig\",\"animation-name:fadeInLeftBig\"]],[true,\"@-webkit-keyframes fadeInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInRight\":false},[\"-webkit-animation-name:fadeInRight\",\"animation-name:fadeInRight\"]],[true,\"@-webkit-keyframes fadeInRightBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInRightBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInRightBig\":false},[\"-webkit-animation-name:fadeInRightBig\",\"animation-name:fadeInRightBig\"]],[true,\"@-webkit-keyframes fadeInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInUp\":false},[\"-webkit-animation-name:fadeInUp\",\"animation-name:fadeInUp\"]],[true,\"@-webkit-keyframes fadeInUpBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInUpBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInUpBig\":false},[\"-webkit-animation-name:fadeInUpBig\",\"animation-name:fadeInUpBig\"]],[true,\"@-webkit-keyframes fadeOut{\"],[true,\"0%{opacity:1}\"],[true,\"100%{opacity:0}\"],[true,\"}@keyframes fadeOut{\"],[true,\"0%{opacity:1}\"],[true,\"100%{opacity:0}\"],[true,\"}\"],[false,{\".fadeOut\":false},[\"-webkit-animation-name:fadeOut\",\"animation-name:fadeOut\"]],[true,\"@-webkit-keyframes fadeOutDown{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"}@keyframes fadeOutDown{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"}\"],[false,{\".fadeOutDown\":false},[\"-webkit-animation-name:fadeOutDown\",\"animation-name:fadeOutDown\"]],[true,\"@-webkit-keyframes fadeOutDownBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}@keyframes fadeOutDownBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}\"],[false,{\".fadeOutDownBig\":false},[\"-webkit-animation-name:fadeOutDownBig\",\"animation-name:fadeOutDownBig\"]],[true,\"@-webkit-keyframes fadeOutLeft{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"}@keyframes fadeOutLeft{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"}\"],[false,{\".fadeOutLeft\":false},[\"-webkit-animation-name:fadeOutLeft\",\"animation-name:fadeOutLeft\"]],[true,\"@-webkit-keyframes fadeOutLeftBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}@keyframes fadeOutLeftBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}\"],[false,{\".fadeOutLeftBig\":false},[\"-webkit-animation-name:fadeOutLeftBig\",\"animation-name:fadeOutLeftBig\"]],[true,\"@-webkit-keyframes fadeOutRight{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"}@keyframes fadeOutRight{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"}\"],[false,{\".fadeOutRight\":false},[\"-webkit-animation-name:fadeOutRight\",\"animation-name:fadeOutRight\"]],[true,\"@-webkit-keyframes fadeOutRightBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}@keyframes fadeOutRightBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}\"],[false,{\".fadeOutRightBig\":false},[\"-webkit-animation-name:fadeOutRightBig\",\"animation-name:fadeOutRightBig\"]],[true,\"@-webkit-keyframes fadeOutUp{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"}@keyframes fadeOutUp{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"}\"],[false,{\".fadeOutUp\":false},[\"-webkit-animation-name:fadeOutUp\",\"animation-name:fadeOutUp\"]],[true,\"@-webkit-keyframes fadeOutUpBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}@keyframes fadeOutUpBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}\"],[false,{\".fadeOutUpBig\":false},[\"-webkit-animation-name:fadeOutUpBig\",\"animation-name:fadeOutUpBig\"]],[true,\"@-webkit-keyframes flip{\"],[true,\"0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"}@keyframes flip{\"],[true,\"0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);-ms-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"}\"],[false,{\".animated.flip\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\",\"-webkit-animation-name:flip\",\"animation-name:flip\"]],[true,\"@-webkit-keyframes flipInX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"}@keyframes flipInX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateX(-10deg);-ms-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateX(10deg);-ms-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"}\"],[false,{\".flipInX\":false},[\"-webkit-animation-name:flipInX\",\"animation-name:flipInX\"]],[false,{\".flipInX:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes flipInY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"}@keyframes flipInY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateY(-10deg);-ms-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateY(10deg);-ms-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"}\"],[false,{\".flipInY\":false},[\"-webkit-animation-name:flipInY\",\"animation-name:flipInY\"]],[false,{\".flipInY:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes flipOutX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"}@keyframes flipOutX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"}\"],[false,{\".flipOutX\":false},[\"-webkit-animation-name:flipOutX\",\"animation-name:flipOutX\"]],[false,{\".flipOutX:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes flipOutY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"}@keyframes flipOutY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"}\"],[false,{\".flipOutY\":false},[\"-webkit-animation-name:flipOutY\",\"animation-name:flipOutY\"]],[false,{\".flipOutY:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes lightSpeedIn{\"],[true,\"0%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"60%{-webkit-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}\"],[true,\"80%{-webkit-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"}@keyframes lightSpeedIn{\"],[true,\"0%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"60%{-webkit-transform:translateX(-20%) skewX(30deg);-ms-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}\"],[true,\"80%{-webkit-transform:translateX(0%) skewX(-15deg);-ms-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"}\"],[false,{\".lightSpeedIn\":false},[\"-webkit-animation-name:lightSpeedIn\",\"animation-name:lightSpeedIn\",\"-webkit-animation-timing-function:ease-out\",\"animation-timing-function:ease-out\"]],[true,\"@-webkit-keyframes lightSpeedOut{\"],[true,\"0%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"}@keyframes lightSpeedOut{\"],[true,\"0%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"}\"],[false,{\".lightSpeedOut\":false},[\"-webkit-animation-name:lightSpeedOut\",\"animation-name:lightSpeedOut\",\"-webkit-animation-timing-function:ease-in\",\"animation-timing-function:ease-in\"]],[true,\"@-webkit-keyframes rotateIn{\"],[true,\"0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateIn{\"],[true,\"0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);-ms-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateIn\":false},[\"-webkit-animation-name:rotateIn\",\"animation-name:rotateIn\"]],[true,\"@-webkit-keyframes rotateInDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInDownLeft\":false},[\"-webkit-animation-name:rotateInDownLeft\",\"animation-name:rotateInDownLeft\"]],[true,\"@-webkit-keyframes rotateInDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInDownRight\":false},[\"-webkit-animation-name:rotateInDownRight\",\"animation-name:rotateInDownRight\"]],[true,\"@-webkit-keyframes rotateInUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInUpLeft\":false},[\"-webkit-animation-name:rotateInUpLeft\",\"animation-name:rotateInUpLeft\"]],[true,\"@-webkit-keyframes rotateInUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInUpRight\":false},[\"-webkit-animation-name:rotateInUpRight\",\"animation-name:rotateInUpRight\"]],[true,\"@-webkit-keyframes rotateOut{\"],[true,\"0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}\"],[true,\"}@keyframes rotateOut{\"],[true,\"0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);-ms-transform:rotate(200deg);transform:rotate(200deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOut\":false},[\"-webkit-animation-name:rotateOut\",\"animation-name:rotateOut\"]],[true,\"@-webkit-keyframes rotateOutDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}@keyframes rotateOutDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutDownLeft\":false},[\"-webkit-animation-name:rotateOutDownLeft\",\"animation-name:rotateOutDownLeft\"]],[true,\"@-webkit-keyframes rotateOutDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}@keyframes rotateOutDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutDownRight\":false},[\"-webkit-animation-name:rotateOutDownRight\",\"animation-name:rotateOutDownRight\"]],[true,\"@-webkit-keyframes rotateOutUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}@keyframes rotateOutUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutUpLeft\":false},[\"-webkit-animation-name:rotateOutUpLeft\",\"animation-name:rotateOutUpLeft\"]],[true,\"@-webkit-keyframes rotateOutUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}@keyframes rotateOutUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutUpRight\":false},[\"-webkit-animation-name:rotateOutUpRight\",\"animation-name:rotateOutUpRight\"]],[true,\"@-webkit-keyframes slideInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes slideInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".slideInDown\":false},[\"-webkit-animation-name:slideInDown\",\"animation-name:slideInDown\"]],[true,\"@-webkit-keyframes slideInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes slideInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".slideInLeft\":false},[\"-webkit-animation-name:slideInLeft\",\"animation-name:slideInLeft\"]],[true,\"@-webkit-keyframes slideInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes slideInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".slideInRight\":false},[\"-webkit-animation-name:slideInRight\",\"animation-name:slideInRight\"]],[true,\"@-webkit-keyframes slideOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}@keyframes slideOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}\"],[false,{\".slideOutLeft\":false},[\"-webkit-animation-name:slideOutLeft\",\"animation-name:slideOutLeft\"]],[true,\"@-webkit-keyframes slideOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}@keyframes slideOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}\"],[false,{\".slideOutRight\":false},[\"-webkit-animation-name:slideOutRight\",\"animation-name:slideOutRight\"]],[true,\"@-webkit-keyframes slideOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}@keyframes slideOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}\"],[false,{\".slideOutUp\":false},[\"-webkit-animation-name:slideOutUp\",\"animation-name:slideOutUp\"]],[true,\"@-webkit-keyframes slideInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes slideInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".slideInUp\":false},[\"-webkit-animation-name:slideInUp\",\"animation-name:slideInUp\"]],[true,\"@-webkit-keyframes slideOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}@keyframes slideOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}\"],[false,{\".slideOutDown\":false},[\"-webkit-animation-name:slideOutDown\",\"animation-name:slideOutDown\"]],[true,\"@-webkit-keyframes hinge{\"],[true,\"0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"40%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"80%{-webkit-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}\"],[true,\"100%{-webkit-transform:translateY(700px);transform:translateY(700px);opacity:0}\"],[true,\"}@keyframes hinge{\"],[true,\"0%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"20%,60%{-webkit-transform:rotate(80deg);-ms-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"40%{-webkit-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"80%{-webkit-transform:rotate(60deg) translateY(0);-ms-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}\"],[true,\"100%{-webkit-transform:translateY(700px);-ms-transform:translateY(700px);transform:translateY(700px);opacity:0}\"],[true,\"}\"],[false,{\".hinge\":false},[\"-webkit-animation-name:hinge\",\"animation-name:hinge\"]],[true,\"@-webkit-keyframes rollIn{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"}@keyframes rollIn{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);-ms-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);-ms-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"}\"],[false,{\".rollIn\":false},[\"-webkit-animation-name:rollIn\",\"animation-name:rollIn\"]],[true,\"@-webkit-keyframes rollOut{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}\"],[true,\"}@keyframes rollOut{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);-ms-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);-ms-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}\"],[true,\"}\"],[false,{\".rollOut\":false},[\"-webkit-animation-name:rollOut\",\"animation-name:rollOut\"]],[true,\"@-webkit-keyframes zoomIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1}\"],[true,\"}@keyframes zoomIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1}\"],[true,\"}\"],[false,{\".zoomIn\":false},[\"-webkit-animation-name:zoomIn\",\"animation-name:zoomIn\"]],[true,\"@-webkit-keyframes zoomInDown{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInDown{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInDown\":false},[\"-webkit-animation-name:zoomInDown\",\"animation-name:zoomInDown\"]],[true,\"@-webkit-keyframes zoomInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);-ms-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInLeft\":false},[\"-webkit-animation-name:zoomInLeft\",\"animation-name:zoomInLeft\"]],[true,\"@-webkit-keyframes zoomInRight{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(-48px);transform:scale(.475) translateX(-48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInRight{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);-ms-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(-48px);-ms-transform:scale(.475) translateX(-48px);transform:scale(.475) translateX(-48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInRight\":false},[\"-webkit-animation-name:zoomInRight\",\"animation-name:zoomInRight\"]],[true,\"@-webkit-keyframes zoomInUp{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInUp{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);-ms-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);-ms-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInUp\":false},[\"-webkit-animation-name:zoomInUp\",\"animation-name:zoomInUp\"]],[true,\"@-webkit-keyframes zoomOut{\"],[true,\"0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"100%{opacity:0}\"],[true,\"}@keyframes zoomOut{\"],[true,\"0%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"100%{opacity:0}\"],[true,\"}\"],[false,{\".zoomOut\":false},[\"-webkit-animation-name:zoomOut\",\"animation-name:zoomOut\"]],[true,\"@-webkit-keyframes zoomOutDown{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-transform-origin:center bottom;transform-origin:center bottom}\"],[true,\"}@keyframes zoomOutDown{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);-ms-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);-ms-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-transform-origin:center bottom;-ms-transform-origin:center bottom;transform-origin:center bottom}\"],[true,\"}\"],[false,{\".zoomOutDown\":false},[\"-webkit-animation-name:zoomOutDown\",\"animation-name:zoomOutDown\"]],[true,\"@-webkit-keyframes zoomOutLeft{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(42px);transform:scale(.475) translateX(42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-transform-origin:left center;transform-origin:left center}\"],[true,\"}@keyframes zoomOutLeft{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(42px);-ms-transform:scale(.475) translateX(42px);transform:scale(.475) translateX(42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-transform-origin:left center;-ms-transform-origin:left center;transform-origin:left center}\"],[true,\"}\"],[false,{\".zoomOutLeft\":false},[\"-webkit-animation-name:zoomOutLeft\",\"animation-name:zoomOutLeft\"]],[true,\"@-webkit-keyframes zoomOutRight{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(-42px);transform:scale(.475) translateX(-42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-transform-origin:right center;transform-origin:right center}\"],[true,\"}@keyframes zoomOutRight{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(-42px);-ms-transform:scale(.475) translateX(-42px);transform:scale(.475) translateX(-42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);-ms-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-transform-origin:right center;-ms-transform-origin:right center;transform-origin:right center}\"],[true,\"}\"],[false,{\".zoomOutRight\":false},[\"-webkit-animation-name:zoomOutRight\",\"animation-name:zoomOutRight\"]],[true,\"@-webkit-keyframes zoomOutUp{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-transform-origin:center top;transform-origin:center top}\"],[true,\"}@keyframes zoomOutUp{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-transform-origin:center top;-ms-transform-origin:center top;transform-origin:center top}\"],[true,\"}\"],[false,{\".zoomOutUp\":false},[\"-webkit-animation-name:zoomOutUp\",\"animation-name:zoomOutUp\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":4744,\"final_size\":154,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/css\\/owl.carousel.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"321729c807ca4dee8c7fcd62f722c92a\",\"parse_time\":0.016955852508544922,\"shake_time\":5.1975250244140625e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".owl-carousel\":true},[\"display:none\",\"width:100%\",\"-webkit-tap-highlight-color:transparent\",\"position:relative\",\"z-index:1\"]],[false,{\".owl-carousel .owl-stage\":false},[\"position:relative\",\"-ms-touch-action:pan-Y\",\"touch-action:manipulation\",\"-moz-backface-visibility:hidden\"]],[false,{\".owl-carousel .owl-stage:after\":false},[\"content:\\\".\\\"\",\"display:block\",\"clear:both\",\"visibility:hidden\",\"line-height:0\",\"height:0\"]],[false,{\".owl-carousel .owl-stage-outer\":false},[\"position:relative\",\"overflow:hidden\",\"-webkit-transform:translate3d(0px,0px,0px)\"]],[false,{\".owl-carousel .owl-wrapper\":false,\".owl-carousel .owl-item\":false},[\"-webkit-backface-visibility:hidden\",\"-moz-backface-visibility:hidden\",\"-ms-backface-visibility:hidden\",\"-webkit-transform:translate3d(0,0,0)\",\"-moz-transform:translate3d(0,0,0)\",\"-ms-transform:translate3d(0,0,0)\"]],[false,{\".owl-carousel .owl-item\":false},[\"position:relative\",\"min-height:1px\",\"float:left\",\"-webkit-backface-visibility:hidden\",\"-webkit-tap-highlight-color:transparent\",\"-webkit-touch-callout:none\"]],[false,{\".owl-carousel .owl-item amp-img\":false,\".owl-carousel .owl-item amp-anim\":false},[\"display:block\",\"width:100%\"]],[false,{\".owl-carousel .owl-nav.disabled\":false,\".owl-carousel .owl-dots.disabled\":false},[\"display:none\"]],[false,{\".owl-carousel .owl-nav .owl-prev\":false,\".owl-carousel .owl-nav .owl-next\":false,\".owl-carousel .owl-dot\":false},[\"cursor:pointer\",\"-webkit-user-select:none\",\"-khtml-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\"]],[false,{\".owl-carousel .owl-nav button.owl-prev\":false,\".owl-carousel .owl-nav button.owl-next\":false,\".owl-carousel button.owl-dot\":false},[\"background:none\",\"color:inherit\",\"border:none\",\"font:inherit\"]],[false,{\".owl-carousel .owl-nav button.owl-prev:not(#_#_#_#_#_#_#_#_)\":false,\".owl-carousel .owl-nav button.owl-next:not(#_#_#_#_#_#_#_#_)\":false,\".owl-carousel button.owl-dot:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".owl-carousel.owl-loaded\":false},[\"display:block\"]],[false,{\".owl-carousel.owl-loading\":false},[\"opacity:0\",\"display:block\"]],[false,{\".owl-carousel.owl-hidden\":false},[\"opacity:0\"]],[false,{\".owl-carousel.owl-refresh .owl-item\":false},[\"visibility:hidden\"]],[false,{\".owl-carousel.owl-drag .owl-item\":false},[\"-ms-touch-action:pan-y\",\"touch-action:pan-y\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\"]],[false,{\".owl-carousel.owl-grab\":false},[\"cursor:move\",\"cursor:grab\"]],[false,{\".owl-carousel.owl-rtl\":false},[\"direction:rtl\"]],[false,{\".owl-carousel.owl-rtl .owl-item\":false},[\"float:right\"]],[false,{\".no-js .owl-carousel\":false},[\"display:block\"]],[false,{\".owl-carousel .animated\":false},[\"animation-duration:1000ms\",\"animation-fill-mode:both\"]],[false,{\".owl-carousel .owl-animated-in\":false},[\"z-index:0\"]],[false,{\".owl-carousel .owl-animated-out\":false},[\"z-index:1\"]],[false,{\".owl-carousel .fadeOut\":false},[\"animation-name:fadeOut\"]],[true,\"@keyframes fadeOut{\"],[true,\"0%{opacity:1}\"],[true,\"100%{opacity:0}\"],[true,\"}\"],[false,{\".owl-height\":false},[\"transition:height 500ms ease-in-out\"]],[false,{\".owl-carousel .owl-item .owl-lazy\":false},[\"opacity:0\",\"transition:opacity 400ms ease\"]],[false,{\".owl-carousel .owl-item .owl-lazy[src^=\\\"\\\"]\":false,\".owl-carousel .owl-item .owl-lazy:not([src])\":false},[\"max-height:0\"]],[false,{\".owl-carousel .owl-item amp-img.owl-lazy\":false,\".owl-carousel .owl-item amp-anim.owl-lazy\":false},[\"transform-style:preserve-3d\"]],[false,{\".owl-carousel .owl-video-wrapper\":false},[\"position:relative\",\"height:100%\",\"background:#000\"]],[false,{\".owl-carousel .owl-video-play-icon\":false},[\"position:absolute\",\"height:80px\",\"width:80px\",\"left:50%\",\"top:50%\",\"margin-left:-40px\",\"margin-top:-40px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/css\\/owl.video.play.png\\\") no-repeat\",\"cursor:pointer\",\"z-index:1\",\"-webkit-backface-visibility:hidden\",\"transition:transform 100ms ease\"]],[false,{\".owl-carousel .owl-video-play-icon:hover\":false},[\"-ms-transform:scale(1.3,1.3)\",\"transform:scale(1.3,1.3)\"]],[false,{\".owl-carousel .owl-video-playing .owl-video-tn\":false,\".owl-carousel .owl-video-playing .owl-video-play-icon\":false},[\"display:none\"]],[false,{\".owl-carousel .owl-video-tn\":false},[\"opacity:0\",\"height:100%\",\"background-position:center center\",\"background-repeat:no-repeat\",\"background-size:contain\",\"transition:opacity 400ms ease\"]],[false,{\".owl-carousel .owl-video-frame\":false},[\"position:relative\",\"z-index:1\",\"height:100%\",\"width:100%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1013,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/owlcarousel2.github.io\\/OwlCarousel2\\/assets\\/owlcarousel\\/assets\\/owl.theme.default.min.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"547aa8bb20ab8306b3b739fab5e4aa08\",\"parse_time\":0.004403114318847656,\"shake_time\":1.4066696166992188e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".owl-theme .owl-dots\":false,\".owl-theme .owl-nav\":false},[\"text-align:center\",\"-webkit-tap-highlight-color:transparent\"]],[false,{\".owl-theme .owl-nav\":false},[\"margin-top:10px\"]],[false,{\".owl-theme .owl-nav [class*=owl-]\":false},[\"color:#fff\",\"font-size:14px\",\"margin:5px\",\"padding:4px 7px\",\"background:#d6d6d6\",\"display:inline-block\",\"cursor:pointer\",\"border-radius:3px\"]],[false,{\".owl-theme .owl-nav [class*=owl-]:hover\":false},[\"background:#869791\",\"color:#fff\",\"text-decoration:none\"]],[false,{\".owl-theme .owl-nav .disabled\":false},[\"opacity:.5\",\"cursor:default\"]],[false,{\".owl-theme .owl-nav.disabled+.owl-dots\":false},[\"margin-top:10px\"]],[false,{\".owl-theme .owl-dots .owl-dot\":false},[\"display:inline-block\",\"zoom:1\"]],[false,{\".owl-theme .owl-dots .owl-dot span\":false},[\"width:10px\",\"height:10px\",\"margin:5px 7px\",\"background:#d6d6d6\",\"display:block\",\"-webkit-backface-visibility:visible\",\"transition:opacity .2s ease\",\"border-radius:30px\"]],[false,{\".owl-theme .owl-dots .owl-dot.active span\":false,\".owl-theme .owl-dots .owl-dot:hover span\":false},[\"background:#869791\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":65448,\"final_size\":1685,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/styles.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"7827cda6edfe62811923d93e516ee494\",\"parse_time\":0.6045119762420654,\"shake_time\":0.0010118484497070312,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".texto\":false},[\"font-family:Raleway,sans-serif\",\"font-weight:400\",\"font-size:14px\",\"line-height:20px\",\"color:#152649\"]],[false,\"@media (min-width:1400px){\"],[false,{\".texto\":false},[\"font-size:18px\",\"line-height:24px\"]],[false,\"}\"],[false,{\".bg-cover\":false},[\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\"]],[false,{\".box-shadow\":false},[\"-webkit-box-shadow:0 2px 6px 0 rgba(50,50,50,.3)\",\"-moz-box-shadow:0 2px 6px 0 rgba(50,50,50,.3)\",\"box-shadow:0 2px 6px 0 rgba(50,50,50,.3)\"]],[true,{\"html\":true},[\"-webkit-font-smoothing:antialiased\",\"background-color:#fff\"]],[true,{\"body\":true},[\"background-color:#fff\",\"font-family:Raleway,sans-serif\",\"font-weight:400\",\"font-size:14px\",\"line-height:20px\",\"color:#152649\",\"-webkit-font-smoothing:subpixel-antialiased\",\"overflow-x:hidden\"]],[true,\"@media (min-width:1400px){\"],[true,{\"body\":true},[\"font-size:18px\",\"line-height:24px\"]],[true,\"}\"],[true,{\"a\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"a:hover\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"strong\":true},[\"font-weight:700\"]],[true,{\"amp-img\":true,\"amp-anim\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".error\":false},[\"width:100%\"]],[false,{\".error:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:20px\",\"text-align:left\",\"left:0\",\"color:#c00\",\"font-weight:500\"]],[false,{\"label.error:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".wpcf7-not-valid-tip:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".wpcf7-not-valid:not(#_#_#_#_#_#_#_)\":false},[\"border:1px solid red\"]],[false,{\".nospace\":false},[\"margin:0\",\"padding:0\"]],[false,{\".nopadding\":false},[\"padding:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".nopadding\":false},[\"padding:0\",\"margin:0\"]],[false,\"}\"],[true,{\"input:focus\":true},[\"outline-color:transparent\",\"outline-style:none\"]],[true,{\"textarea:focus\":true},[\"outline-color:transparent\",\"outline-style:none\"]],[false,{\"input.form-control\":false},[\"font-family:Raleway,sans-serif\",\"font-weight:500\",\"width:100%\",\"font-size:12px\",\"background:#dfdfdf\",\"color:grey\",\"height:40px\",\"line-height:40px\",\"border:0 solid #343636\",\"margin-bottom:10px\",\"border-radius:0\",\"-moz-border-radius:0\",\"-webkit-border-radius:0\",\"-webkit-box-shadow:inset 0 0 0 transparent\",\"box-shadow:inset 0 0 0 transparent\",\"padding:0 10px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"input.form-control\":false},[\"font-size:14px\",\"height:45px\",\"line-height:45px\"]],[false,\"}\"],[false,{\"textarea.form-control\":false},[\"font-family:Raleway,sans-serif\",\"font-weight:500\",\"width:100%\",\"font-size:12px\",\"background:#dfdfdf\",\"color:grey\",\"height:140px\",\"border:0 solid #343636\",\"margin-bottom:10px\",\"border-radius:0\",\"-moz-border-radius:0\",\"-webkit-border-radius:0\",\"-webkit-box-shadow:inset 0 0 0 transparent\",\"box-shadow:inset 0 0 0 transparent\",\"padding:10px\",\"resize:none\"]],[false,\"@media (min-width:1400px){\"],[false,{\"textarea.form-control\":false},[\"font-size:14px\"]],[false,\"}\"],[false,{\".btn\":false},[\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"border-radius:0\",\"-moz-border-radius:0\",\"-webkit-border-radius:0\",\"font-family:Raleway,sans-serif\",\"display:inline-block\",\"display:inline-block\",\"line-height:40px\",\"color:#fff\",\"border:0 solid #343636\",\"background-color:#152649\",\"font-size:14px\",\"font-weight:500\",\"text-align:center\",\"padding:0 20px\",\"margin-bottom:50px\"]],[false,\"@media (max-width:992px){\"],[false,{\".btn\":false},[\"width:100%\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".btn\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".btn:hover\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".btn1\":false},[\"display:inline-block\",\"background:#90f247\",\"background:-moz-linear-gradient(left,#90f247 0,#00debb 100%)\",\"background:-webkit-linear-gradient(left,#90f247 0,#00debb 100%)\",\"background:linear-gradient(to right,#90f247 0,#00debb 100%)\",\"padding:2px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\"]],[false,{\".btn1 .mask-btn\":false},[\"width:100%\",\"padding:10px 9px 10px 9px\",\"background-color:#fff\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:15px\",\"font-size:16px\",\"color:#152649\",\"-webkit-transition:all .4s ease-in-out\",\"-moz-transition:all .4s ease-in-out\",\"transition:all .4s ease-in-out\"]],[false,{\".btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,\"@media (min-width:1400px){\"],[false,{\".btn1 .mask-btn\":false},[\"padding:20px 20px 20px 19px\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\",\"line-height:17px\",\"font-size:18px\"]],[false,\"}\"],[false,{\".btn-learn\":false},[\"width:auto\",\"display:inline-block\",\"padding:10px 20px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"background-color:#152649\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:15px\",\"font-size:16px\",\"color:#fff\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".btn-learn:hover\":false},[\"background-color:#0c1832\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".btn-learn\":false},[\"padding:20px 30px\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\",\"line-height:17px\",\"font-size:18px\"]],[false,{\".btn-learn:hover\":false},[\"border-radius:8px\",\"-moz-border-radius:8px\",\"-webkit-border-radius:8px\"]],[false,\"}\"],[false,{\".btn-how\":false},[\"width:auto\",\"display:inline-block\",\"padding:10px 20px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"background-color:#fff\",\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:15px\",\"font-size:16px\",\"color:#3e3e3e\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"margin-top:10px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".btn-how:hover\":false},[\"background-color:#0c1832\",\"color:#fff\"]],[false,\"@media (min-width:1400px){\"],[false,{\".btn-how\":false},[\"padding:20px 30px\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\",\"line-height:17px\",\"font-size:18px\",\"font-weight:600\"]],[false,{\".btn-how:hover\":false},[\"border-radius:8px\",\"-moz-border-radius:8px\",\"-webkit-border-radius:8px\"]],[false,\"}\"],[false,{\".ajax-loader:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[true,{\"::-webkit-input-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\":-moz-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\"::-moz-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\":-ms-input-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\"header\":true},[\"top:0\",\"width:100%\",\"height:100px\",\"position:fixed\",\"background-color:#fff\",\"z-index:3\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[true,{\"header .row\":true},[\"margin:0\"]],[true,\"@media (min-width:1400px){\"],[true,{\"header\":true},[\"height:120px\"]],[true,\"}\"],[false,{\"header .logo\":false},[\"line-height:100px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header .logo amp-img\":false,\"header .logo amp-anim\":false},[\"height:30px\",\"margin-left:15px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header .logo\":false},[\"line-height:120px\"]],[false,{\"header .logo amp-img\":false,\"header .logo amp-anim\":false},[\"height:50px\"]],[false,\"}\"],[false,{\"header .min-header\":false},[\"color:#152649\",\"font-size:30px\",\"text-align:right\",\"line-height:100px\",\"display:none\",\"cursor:pointer\",\"margin-right:15px\"]],[false,\"@media (max-width:992px){\"],[false,{\"header .min-header\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header .min-header\":false},[\"line-height:120px\",\"font-size:50px\"]],[false,\"}\"],[false,{\"header .divmenu\":false},[\"text-align:right\"]],[false,{\"header .menu-menu-interna-container\":false,\"header .menu-menu-principal-container\":false},[\"display:inline-block\"]],[false,{\"header #menu\":false},[\"width:100%\",\"margin:0\",\"padding:0\",\"text-align:right\"]],[false,{\"header #menu li\":false},[\"position:relative\",\"list-style:none\",\"display:inline-block\",\"color:#152649\",\"font-size:13px\",\"padding:0 15px\",\"line-height:100px\",\"text-align:center\",\"font-weight:700\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header #menu li:after\":false},[\"width:0\",\"height:7px\",\"top:50%\",\"margin-top:-3px\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background:#adf231\",\"background:-webkit-linear-gradient(left,#adf231 0,#00dbc5 100%)\",\"background:-o-linear-gradient(left,#adf231 0,#00dbc5 100%)\",\"background:linear-gradient(to right,#adf231 0,#00dbc5 100%)\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"z-index:-1\"]],[false,{\"header #menu li.current-menu-ancestor:after\":false,\"header #menu li.current_page_item:after\":false},[\"width:100%\"]],[false,{\"header #menu li:hover:after\":false},[\"width:100%\"]],[false,\"@media (max-width:992px){\"],[false,{\"header #menu\":false},[\"background-color:#fff\",\"display:none\",\"width:200%\",\"right:0\",\"top:100px\",\"position:absolute\"]],[false,{\"header #menu li\":false},[\"width:100%\",\"display:block\",\"line-height:40px\"]],[false,{\"header #menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header #menu\":false},[\"top:120px\"]],[false,{\"header #menu li\":false},[\"line-height:120px\",\"font-size:15px\"]],[false,\"}\"],[false,{\"header #menu .sub-menu\":false},[\"width:200px\",\"background-color:#fff\",\"display:none\",\"position:absolute\",\"padding:0\",\"text-align:left\",\"margin-left:-15px\",\"margin-top:-20px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header #menu .sub-menu li\":false},[\"display:block\",\"color:#727272\",\"font-weight:400\",\"padding:0 15px\",\"text-align:left\"]],[false,{\"header #menu .sub-menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"line-height:18px\",\"margin:15px 0\"]],[false,{\"header #menu .sub-menu li:hover\":false},[\"color:#00debb\"]],[false,\"@media (max-width:992px){\"],[false,{\"header #menu .sub-menu\":false},[\"position:relative\",\"width:100%\"]],[false,{\"header #menu .sub-menu:not(#_#_#_#_#_#_#_#_#_)\":false},[\"display:block\",\"margin:0\",\"padding:0\"]],[false,{\"header #menu .sub-menu li\":false},[\"color:#152649\",\"font-size:13px\",\"line-height:18px\",\"text-align:center\",\"font-weight:700\",\"margin:15px 0\"]],[false,{\"header #menu .sub-menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header #menu .sub-menu li\":false},[\"line-height:60px\",\"font-size:15px\"]],[false,\"}\"],[false,{\"header .menu-item-has-children:hover .sub-menu:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\"header.mini\":false},[\"height:80px\",\"-webkit-box-shadow:0 0 20px 1px rgba(0,0,0,.1)\",\"box-shadow:0 0 20px 1px rgba(0,0,0,.1)\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini\":false},[\"height:100px\"]],[false,\"}\"],[false,{\"header.mini .logo\":false},[\"line-height:80px\"]],[false,{\"header.mini .logo amp-img\":false,\"header.mini .logo amp-anim\":false},[\"height:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini .logo\":false},[\"line-height:100px\"]],[false,{\"header.mini .logo amp-img\":false,\"header.mini .logo amp-anim\":false},[\"height:40px\"]],[false,\"}\"],[false,{\"header.mini .min-header\":false},[\"line-height:80px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini .min-header\":false},[\"line-height:100px\"]],[false,\"}\"],[false,{\"header.mini #menu li\":false},[\"line-height:80px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini #menu li\":false},[\"line-height:100px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\"header.mini #menu\":false},[\"top:80px\"]],[false,{\"header.mini #menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"line-height:50px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini #menu\":false},[\"top:100px\"]],[false,{\"header.mini #menu li\":false},[\"line-height:100px\"]],[false,\"}\"],[false,{\"header.mini .sub-menu\":false},[\"width:200px\",\"background-color:#fff\",\"display:none\",\"position:absolute\",\"padding:0\",\"text-align:left\",\"margin-left:-15px\",\"margin-top:40px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header.mini .sub-menu:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-bottom:10px\"]],[false,{\"header.mini .sub-menu li\":false},[\"display:block\",\"color:#727272\",\"font-weight:400\",\"text-align:left\",\"margin:15px 0\"]],[false,{\"header.mini .sub-menu li:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:0 15px\",\"line-height:15px\",\"line-height:40px\"]],[false,\"@media (max-width:992px){\"],[false,{\"header.mini .sub-menu li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\"header #menu-item-42>a:not(#_#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,\"}\"],[true,{\"h1\":true},[\"position:relative\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:90px\",\"font-size:90px\",\"color:#152649\",\"margin:0 0 5px\"]],[true,\"@media (min-width:1400px){\"],[true,{\"h1\":true},[\"font-size:110px\",\"line-height:110px\"]],[true,\"}\"],[true,{\"h2\":true},[\"position:relative\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:40px\",\"font-size:40px\",\"color:#152649\",\"margin:0 0 5px\"]],[true,{\"h2 small\":true},[\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:40px\",\"font-size:40px\"]],[false,{\"h2.white\":false},[\"color:#fff\",\"margin-top:20px\",\"margin-bottom:10px\"]],[true,{\"h2 strong\":true},[\"color:#a1f350\"]],[true,\"@media (min-width:1400px){\"],[true,{\"h2\":true},[\"font-size:60px\",\"line-height:60px\"]],[true,{\"h2 small\":true},[\"font-size:60px\",\"line-height:60px\"]],[true,\"}\"],[true,{\"h3\":true},[\"position:relative\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"color:#152649\",\"margin:0 0 5px\"]],[false,{\"h3.topspace\":false},[\"margin-top:90px\",\"margin-bottom:40px\"]],[false,{\".top-info\":false},[\"width:100%\",\"height:1px\",\"background:-moz-linear-gradient(left,rgba(43,154,199,0) 0,rgba(43,154,199,.84) 21%,#48a8cf 25%,#ccc 50%,#bff466 75%,rgba(183,243,84,.88) 78%,rgba(183,243,84,0) 100%)\",\"background:-webkit-linear-gradient(left,rgba(43,154,199,0) 0,rgba(43,154,199,.84) 21%,#48a8cf 25%,#ccc 50%,#bff466 75%,rgba(183,243,84,.88) 78%,rgba(183,243,84,0) 100%)\",\"background:linear-gradient(to right,rgba(43,154,199,0) 0,rgba(43,154,199,.84) 21%,#48a8cf 25%,#ccc 50%,#bff466 75%,rgba(183,243,84,.88) 78%,rgba(183,243,84,0) 100%)\"]],[false,{\".top-info-devops\":false},[\"width:100%\",\"height:1px\",\"background:#2c9ac7\",\"background:-moz-linear-gradient(left,#2c9ac7 0,#fff 100%)\",\"background:-webkit-linear-gradient(left,#2c9ac7 0,#fff 100%)\",\"background:linear-gradient(to right,#2c9ac7 0,#fff 100%)\",\"margin-bottom:25px\"]],[false,{\".line-gray\":false},[\"width:100%\",\"height:1px\",\"background-color:#ccc\",\"margin:50px 0\"]],[false,{\".top\":false},[\"width:100%\",\"position:relative\",\"margin-top:100px\",\"background-color:#fff\",\"color:#a3a3a3\",\"display:table\"]],[false,{\".top .wrap-top\":false},[\"display:table-row\",\"width:100%\",\"height:100%\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,{\".top .wrap-top .content\":false},[\"display:table-cell\",\"width:100%\",\"height:100%\",\"vertical-align:middle\"]],[false,{\".top-home h2\":false},[\"position:relative\",\"margin-top:30px\",\"padding-top:30px\"]],[false,{\".top-home h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#6ecff4\"]],[false,{\".top-home h2:hover:after\":false},[\"width:70px\",\"background-color:#b7f254\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-home h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".top-home .wrap-top\":false},[\"text-align:center\"]],[false,{\".top-home .wrap-top:not(#_#_#_#_#_#_#_)\":false},[\"background-image:none\"]],[false,\"}\"],[false,{\".services\":false},[\"width:100%\",\"position:relative\",\"background-color:#f8f8f8\",\"padding-bottom:100px\"]],[false,\"@media (max-width:992px){\"],[false,{\".services\":false},[\"padding-bottom:50px\"]],[false,\"}\"],[false,{\".services .top-info\":false},[\"margin-bottom:100px\"]],[false,{\".services .info-text\":false},[\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:35px\",\"font-size:25px\",\"color:#8c8c8c\",\"text-align:center\",\"margin-bottom:100px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".services .info-text\":false},[\"line-height:43px\",\"font-size:33px\"]],[false,\"}\"],[false,{\".services .service\":false},[\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:35px\",\"font-size:25px\",\"color:#152649\",\"text-align:center\"]],[false,{\".services .service .icon\":false},[\"text-align:center\",\"border-right:1px solid #ccc\",\"margin-bottom:50px\"]],[false,{\".services .service .icon.last\":false},[\"border:0\"]],[false,{\".services .service .icon amp-img\":false,\".services .service .icon amp-anim\":false},[\"max-height:140px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".services .service .icon amp-img\":false,\".services .service .icon amp-anim\":false},[\"max-height:170px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".services .service .icon\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".services .service\":false},[\"margin-bottom:50px\"]],[false,\"}\"],[false,{\".wephrase\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:60px\",\"font-size:60px\",\"color:#152649\"]],[false,{\".wephrase .wrap-phrase\":false},[\"display:inline-block\"]],[false,{\".wephrase .dot\":false},[\"display:inline-block\",\"color:#b7f254\",\"animation:blinker 1s linear infinite\"]],[true,\"@keyframes blinker{\"],[true,\"50%{opacity:0}\"],[true,\"}\"],[false,{\".microservices\":false},[\"width:100%\",\"position:relative\",\"background-color:#efefef\",\"-webkit-box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices\":false},[\"height:auto\"]],[false,{\".microservices:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".microservices\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".microservices .service-padding\":false},[\"padding:100px 0\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-microservices.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top -30px right\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".microservices amp-img\":false,\".microservices amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices amp-img\":false,\".microservices amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".microservices amp-img\":false,\".microservices amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,{\".microservices h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".microservices h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#b8b8b8\"]],[false,{\".microservices h2:hover:after\":false},[\"width:70px\",\"background-color:#b7f254\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".microservices .btn1 .mask-btn\":false},[\"background-color:#efefef\"]],[false,{\".microservices .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".machine_learning\":false},[\"width:100%\",\"position:relative\",\"background-color:#f2f2f2\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning\":false},[\"height:auto\"]],[false,{\".machine_learning:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".machine_learning\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".machine_learning h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".machine_learning h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#b993e7\"]],[false,{\".machine_learning h2:hover:after\":false},[\"width:70px\",\"background-color:#1ab7d5\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".machine_learning .btn1\":false},[\"background:#9061d7\",\"background:-moz-linear-gradient(left,#9061d7 0,#2c99c8 100%)\",\"background:-webkit-linear-gradient(left,#9061d7 0,#2c99c8 100%)\",\"background:linear-gradient(to right,#9061d7 0,#2c99c8 100%)\"]],[false,{\".machine_learning .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\"]],[false,{\".machine_learning .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".machine_learning .service-padding\":false},[\"padding:100px 0\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-ml.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top -10px right\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".machine_learning .wrap-image\":false},[\"text-align:right\"]],[false,{\".machine_learning amp-img\":false,\".machine_learning amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning amp-img\":false,\".machine_learning amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".machine_learning amp-img\":false,\".machine_learning amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,{\".machine_learning .subitems .item:after\":false},[\"background:#2c99c8\",\"background:-moz-linear-gradient(top,#2c99c8 0,#9061d7 100%)\",\"background:-webkit-linear-gradient(top,#2c99c8 0,#9061d7 100%)\",\"background:linear-gradient(to bottom,#2c99c8 0,#9061d7 100%)\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".digital_transformation\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation\":false},[\"height:auto\"]],[false,{\".digital_transformation:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".digital_transformation\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".digital_transformation h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".digital_transformation h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".digital_transformation h2:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".digital_transformation .btn1\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to right,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".digital_transformation .btn1 .mask-btn\":false},[\"background-color:#fff\"]],[false,{\".digital_transformation .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".digital_transformation .service-padding\":false},[\"padding:100px 0\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".digital_transformation .wrap-image\":false},[\"text-align:right\"]],[false,{\".digital_transformation amp-img\":false,\".digital_transformation amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation amp-img\":false,\".digital_transformation amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".digital_transformation amp-img\":false,\".digital_transformation amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,{\".digital_transformation .subitems .item:after\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to bottom,#02c6d9 0,#05d2d9 100%)\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".devops\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"-webkit-box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops\":false},[\"height:auto\"]],[false,{\".devops:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".devops\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".devops h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".devops h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#95f896\"]],[false,{\".devops h2:hover:after\":false},[\"width:70px\",\"background-color:#2d98c6\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".devops .service-padding\":false},[\"padding:100px 0\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-devops.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top right\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".devops amp-img\":false,\".devops amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops amp-img\":false,\".devops amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".devops amp-img\":false,\".devops amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".devops .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".call_to_action\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"text-align:center\",\"padding:50px 0\"]],[false,{\".call_to_action.about-box\":false},[\"background-color:#f7f7f7\",\"-webkit-box-shadow:inset 0 -10px 30px -10px rgba(0,0,0,.3)\",\"box-shadow:inset 0 -10px 30px -10px rgba(0,0,0,.3)\"]],[false,{\".call_to_action.about-box .btn1 .mask-btn\":false},[\"background-color:#f7f7f7\"]],[false,{\".call_to_action.about-box .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process\":false},[\"width:100%\",\"position:relative\",\"background-color:#ccc\",\"overflow:hidden\"]],[false,{\".process .process-item\":false},[\"width:100%\",\"padding:80px\",\"height:500px\"]],[false,{\".process .process-item p\":false},[\"height:100px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process .process-item p\":false},[\"height:130px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item:not(#_#_#_#_#_#_#_)\":false},[\"padding:80px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".process .process-item\":false},[\"height:600px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".process\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".process .process-item-1\":false},[\"position:relative\",\"background:#15a3cc\",\"background:-moz-linear-gradient(left,#15a3cc 0,#15b5d5 100%)\",\"background:-webkit-linear-gradient(left,#15a3cc 0,#15b5d5 100%)\",\"background:linear-gradient(to right,#15a3cc 0,#15b5d5 100%)\"]],[false,{\".process .process-item-1:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:28px\",\"height:97px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrow1.png\\\")\",\"top:3px\",\"right:-28px\",\"z-index:2\"]],[false,{\".process .process-item-1 h2.white\":false},[\"position:relative\",\"padding-top:30px\"]],[false,{\".process .process-item-1 h2.white:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#6ecff4\"]],[false,{\".process .process-item-1 h2.white:hover:after\":false},[\"width:70px\",\"background-color:#152649\"]],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item-1 h2.white:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process .process-item-2\":false},[\"position:relative\",\"padding-top:125px\",\"background:#c4c4c4\",\"background:-moz-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:-webkit-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:linear-gradient(to right,#c4c4c4 0,#ccc 100%)\"]],[false,{\".process .process-item-2:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:28px\",\"height:97px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrow2.png\\\")\",\"top:3px\",\"right:-28px\",\"z-index:2\"]],[false,{\".process .process-item-2 h2.white\":false},[\"position:relative\",\"padding-top:30px\"]],[false,{\".process .process-item-2 h2.white:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background:#878787\",\"background:-moz-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:-webkit-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:linear-gradient(to right,#878787 0,#aeaeae 100%)\"]],[false,{\".process .process-item-2 h2.white:hover:after\":false},[\"width:70px\",\"background-color:#878787\"]],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item-2 h2.white:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process .process-item-3\":false},[\"position:relative\",\"padding-top:125px\",\"background:-moz-linear-gradient(left,#00debb 0,#90f247 100%)\",\"background:-webkit-linear-gradient(left,#00debb 0,#90f247 100%)\",\"background:linear-gradient(to right,#00debb 0,#90f247 100%)\"]],[false,{\".process .process-item-3 h2.white\":false},[\"position:relative\",\"padding-top:30px\"]],[false,{\".process .process-item-3 h2.white:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#6ecff4\"]],[false,{\".process .process-item-3 h2.white:hover:after\":false},[\"width:70px\",\"background-color:#152649\"]],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item-3 h2.white:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".case_study\":false},[\"width:100%\",\"position:relative\",\"background-color:#f1f1f1\",\"padding:100px 0 70px\"]],[false,\"@media (max-width:992px){\"],[false,{\".case_study\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".case_study h2\":false},[\"margin-bottom:20px\",\"position:relative\",\"padding-top:50px\"]],[false,{\".case_study h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#b8b8b8\"]],[false,{\".case_study h2:hover:after\":false},[\"width:70px\"]],[false,\"@media (max-width:992px){\"],[false,{\".case_study h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".case_study .btn1\":false},[\"margin-top:30px\"]],[false,{\".case_study .btn1 .mask-btn\":false},[\"background-color:#f1f1f1\"]],[false,{\".case_study .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".case_study .wrap-image\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-case-home.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top center\",\"background-size:100% auto\"]],[false,\"@media (max-width:992px){\"],[false,{\".case_study .wrap-image\":false},[\"margin-top:40px\"]],[false,\"}\"],[false,{\".partners\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"text-align:center\",\"padding:50px 0\"]],[false,{\".partners .owl-dots\":false},[\"width:100%\",\"position:relative\",\"text-align:center\"]],[false,{\".partners .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".partners .owl-dots .owl-dot\":false},[\"width:6px\",\"height:6px\",\"background-color:#ccc\",\"display:inline-block\",\"margin:0 10px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\"]],[false,{\".partners .owl-dots .owl-dot.active\":false},[\"background-color:#3b3b3b\"]],[false,{\".about-intern\":false},[\"background-color:#f7f7f7\",\"color:#152649\",\"font-size:13px\"]],[false,{\".about-intern h1\":false},[\"font-size:50px\",\"line-height:50px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-intern\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".about-intern .btn1\":false},[\"margin-bottom:20px\"]],[false,{\".about-intern .btn1 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".about-intern .wrap-top\":false},[\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:bottom center\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-intern .wrap-top\":false},[\"text-align:center\"]],[false,{\".about-intern .wrap-top:not(#_#_#_#_#_#_#_)\":false},[\"background-image:none\"]],[false,\"}\"],[false,{\".cases-intern\":false},[\"background-color:#fff\",\"color:#fff\",\"font-size:13px\",\"background-position:right\",\"background-repeat:no-repeat\",\"background-size:auto 100%\"]],[false,\"@media (max-width:992px){\"],[false,{\".cases-intern\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".cases-intern\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".cases-intern h1\":false},[\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:40px\",\"font-size:40px\",\"color:#fff\",\"margin:0 0 5px\"]],[false,{\".cases-intern h1 small\":false},[\"color:#00ddbd\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:20px\",\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".cases-intern h1\":false},[\"line-height:50px\",\"font-size:50px\"]],[false,{\".cases-intern h1 small\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".cases-intern .wrap-top\":false},[\"background:-moz-linear-gradient(left,#002048 0,rgba(0,32,72,.1) 50%,rgba(0,32,72,0) 65%,rgba(0,32,72,0) 100%)\",\"background:-webkit-linear-gradient(left,#002048 0,#002048 50%,rgba(0,32,72,0) 65%,rgba(0,32,72,0) 100%)\",\"background:linear-gradient(to right,#002048 0,#002048 50%,rgba(0,32,72,0) 65%,rgba(0,32,72,0) 100%)\"]],[false,\"@media (max-width:992px){\"],[false,{\".cases-intern .wrap-top\":false},[\"background:#002048\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".content-cases\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".content-cases .gray\":false},[\"font-size:14px\",\"background-color:#f7f7f7\",\"color:#6b6b6b\",\"padding:40px 40px 20px\",\"margin-top:-60px\",\"margin-bottom:50px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".content-cases .gray\":false},[\"font-size:16px\",\"line-height:18px\"]],[false,\"}\"],[false,{\".content-cases h3\":false},[\"color:#6b6b6b\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:20px\",\"font-size:20px\",\"margin-bottom:10px\"]],[false,{\".content-cases .content-cases2\":false},[\"color:#6b6b6b\",\"padding:50px 0 30px\"]],[false,{\".content-cases .bg-gray\":false},[\"font-size:14px\",\"background-color:#f7f7f7\",\"color:#6b6b6b\",\"padding:15px\",\"margin-bottom:50px\"]],[false,{\".content-cases .content-downgray\":false},[\"text-align:center\"]],[false,{\".content-cases .content-downgray amp-img\":false,\".content-cases .content-downgray amp-anim\":false},[\"max-width:60%\"]],[false,{\".content-cases .content-downgray .top-info\":false},[\"margin:70px 0\"]],[false,{\".content-cases .owl-dots\":false},[\"margin-top:20px\",\"width:100%\",\"position:relative\",\"text-align:center\"]],[false,{\".content-cases .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".content-cases .owl-dots .owl-dot\":false},[\"width:6px\",\"height:6px\",\"background-color:#ccc\",\"display:inline-block\",\"margin:0 10px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\"]],[false,{\".content-cases .owl-dots .owl-dot.active\":false},[\"background-color:#3b3b3b\"]],[false,{\".content-cases .gallery-cases\":false},[\"margin-top:70px\"]],[false,{\".content-cases .gallery-cases amp-img\":false,\".content-cases .gallery-cases amp-anim\":false},[\"border:2px solid #ccc\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\"]],[false,{\".content-cases .gallery-cases amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".content-cases .gallery-cases amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".process-intern\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"color:#b2b2b2\",\"font-size:20px\",\"line-height:40px\",\"font-family:Rajdhani\",\"font-weight:700\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process-intern\":false},[\"font-size:30px\",\"line-height:50px\"]],[false,\"}\"],[false,{\".process-intern .wrap-top\":false},[\"background-position:bottom center\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\"]],[false,\"@media (max-width:992px){\"],[false,{\".process-intern .wrap-top\":false},[\"background-position:bottom center\",\"text-align:center\"]],[false,{\".process-intern .wrap-top:not(#_#_#_#_#_#_#_)\":false},[\"background-image:none\"]],[false,\"}\"],[false,{\".about-process\":false},[\"width:100%\",\"position:relative\",\"background-color:#f1f1f1\",\"padding:70px 0\",\"text-align:center\"]],[false,{\".about-process .wephrase\":false},[\"font-size:35px\",\"line-height:35px\",\"margin-bottom:30px\"]],[false,{\".about-process .top-info\":false},[\"margin-top:100px\"]],[false,{\".line-process\":false},[\"width:60%\",\"height:1px\",\"margin:50px 20%\",\"background:#2b9ac7\",\"background:-moz-linear-gradient(left,#2b9ac7 0,#fff 100%)\",\"background:-webkit-linear-gradient(left,#2b9ac7 0,#fff 100%)\",\"background:linear-gradient(to right,#2b9ac7 0,#fff 100%)\"]],[false,{\".process-part\":false},[\"width:100%\",\"position:relative\",\"padding:70px 0\",\"font-size:13px\"]],[false,\"@media (max-width:992px){\"],[false,{\".process-part .btn1\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".process-part\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".process1\":false},[\"background-color:#15a7ce\",\"color:#002048\",\"font-weight:500\"]],[false,{\".process1 h2\":false},[\"color:#fff\",\"line-height:20px\"]],[false,{\".process1 h2 small\":false},[\"color:#98e36c\",\"font-size:18px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process1 h2\":false},[\"line-height:50px\"]],[false,{\".process1 h2 small\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".process1 h3\":false},[\"color:#fff\",\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process1 h3\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".process1 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process1:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:70px\",\"height:35px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrowd1.png\\\")\",\"background-position:bottom center\",\"bottom:-35px\",\"margin-left:50%\",\"left:-35px\",\"z-index:2\"]],[false,{\".process1 .lineb\":false},[\"width:2px\",\"height:600px\",\"margin:0 auto\",\"background-color:rgba(255,255,255,.2)\"]],[false,{\".process1 .centro\":false},[\"text-align:center\"]],[false,{\".process1 .centro amp-img\":false,\".process1 .centro amp-anim\":false},[\"max-width:100px\"]],[false,\"@media (max-width:992px){\"],[false,{\".process1 .centro\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process2\":false},[\"background-color:#d7d7d7\",\"color:#565656\",\"font-weight:500\"]],[false,{\".process2 h2\":false},[\"margin-bottom:30px\"]],[false,{\".process2 h3\":false},[\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process2 h3\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".process2 .check-items\":false},[\"margin:20px 0\"]],[false,{\".process2 .check-items .icheck\":false},[\"position:relative\",\"padding-left:30px\",\"min-height:30px\",\"font-size:20px\",\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:20px\",\"padding-top:5px\"]],[false,{\".process2 .check-items .icheck:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:20px\",\"height:100%\",\"top:0\",\"left:0\",\"background-repeat:no-repeat\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/checkb.png\\\")\",\"background-position:center\",\"background-size:100% auto\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process2 .check-items .icheck\":false},[\"font-size:23px\",\"line-height:23px\"]],[false,\"}\"],[false,{\".process2 .btn1\":false},[\"background:#c4c4c4\",\"background:-moz-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:-webkit-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:linear-gradient(to right,#c4c4c4 0,#ccc 100%)\"]],[false,{\".process2 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process2:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:70px\",\"height:35px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrowd2.png\\\")\",\"background-position:bottom center\",\"bottom:-35px\",\"margin-left:50%\",\"left:-35px\",\"z-index:2\"]],[false,\"@media (max-width:992px){\"],[false,{\".process2 amp-img\":false,\".process2 amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process3\":false},[\"color:#002048\",\"background:#38cea3\",\"background:-moz-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:-webkit-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:linear-gradient(to right,#38cea3 0,#75e168 100%)\",\"font-weight:500\"]],[false,{\".process3 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process3 h2\":false},[\"color:#fff\"]],[false,{\".process3 .check-items\":false},[\"margin:20px 0\"]],[false,{\".process3 .check-items .icheck\":false},[\"position:relative\",\"padding-left:15px\",\"padding-left:10px\",\"margin-left:35px\",\"min-height:30px\",\"font-size:14px\",\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:20px\",\"margin-bottom:20px\",\"border-left:1px solid #fff\"]],[false,{\".process3 .check-items .icheck:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:20px\",\"height:100%\",\"top:0\",\"left:-35px\",\"background-repeat:no-repeat\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/checkb.png\\\")\",\"background-position:left center\",\"background-size:100% auto\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process3 .check-items .icheck\":false},[\"font-size:23px\",\"line-height:23px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".process3 amp-img\":false,\".process3 amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".end-process\":false},[\"width:100%\",\"position:relative\",\"background-color:#f6f6f6\",\"padding:70px 0\",\"text-align:center\"]],[false,{\".end-process .wephrase\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,{\".end-process .logos\":false},[\"text-align:center\",\"margin-top:50px\"]],[false,{\".end-process .logos amp-img\":false,\".end-process .logos amp-anim\":false},[\"display:inline-block\",\"height:90px\",\"margin:0 30px\",\"-webkit-transition:all .2s ease-in-out\",\"-moz-transition:all .2s ease-in-out\",\"transition:all .2s ease-in-out\",\"-webkit-filter:grayscale(100%)\"]],[false,{\".end-process .logos amp-img:hover\":false,\".end-process .logos amp-anim:hover\":false},[\"-webkit-filter:grayscale(0)\"]],[false,{\".end-process .logos amp-img.menor\":false,\".end-process .logos amp-anim.menor\":false},[\"height:80px\"]],[false,\"@media (max-width:992px){\"],[false,{\".end-process .logos amp-img\":false,\".end-process .logos amp-anim\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".end-process .logos amp-img\":false,\".end-process .logos amp-anim\":false},[\"height:120px\"]],[false,{\".end-process .logos amp-img.menor\":false,\".end-process .logos amp-anim.menor\":false},[\"height:110px\"]],[false,\"}\"],[false,{\".top-service\":false},[\"width:100%\",\"height:370px\",\"position:relative\",\"margin-top:120px\",\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"color:#fff\",\"display:table\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".top-service .wrap-top\":false},[\"display:table-row\",\"width:100%\",\"height:100%\"]],[false,{\".top-service .wrap-top .content\":false},[\"display:table-cell\",\"width:100%\",\"height:100%\",\"vertical-align:middle\",\"font-size:12px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".top-service .wrap-top .content\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".top-service .logo\":false},[\"margin-left:-10px\",\"margin-bottom:10px\"]],[false,{\".top-service .logo amp-google-document-embed\":false},[\"width:110px\"]],[false,{\".top-service .logo amp-img\":false,\".top-service .logo amp-anim\":false},[\"width:110px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".top-service .logo amp-img\":false,\".top-service .logo amp-anim\":false},[\"width:150px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".top-service .logo\":false},[\"margin-left:0\"]],[false,\"}\"],[false,{\".top-service h1\":false},[\"color:#fff\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".top-service.service-devops\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-devops\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-machine\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-machine\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-micro\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-micro\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-digital\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\",\"color:#152649\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-digital\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-digital h1\":false},[\"color:#152649\"]],[false,{\".disclaimer\":false},[\"width:100%\",\"position:relative\",\"padding:45px 0\"]],[false,{\".disclaimer.service-devops\":false},[\"background-color:#b7f254\",\"text-align:center\",\"font-size:13px\"]],[false,{\".disclaimer.service-devops .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-devops .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-devops\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".disclaimer.service-machine\":false},[\"background-color:#83adfb\",\"text-align:center\",\"font-size:13px\"]],[false,{\".disclaimer.service-machine .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-machine .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-machine\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".disclaimer.service-micro\":false},[\"background-color:#152649\",\"text-align:center\",\"font-size:13px\",\"color:#fff\"]],[false,{\".disclaimer.service-micro .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-micro .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-micro\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".disclaimer.service-digital\":false},[\"background-color:#05bed4\",\"text-align:center\",\"font-size:13px\",\"color:#fff\"]],[false,{\".disclaimer.service-digital .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-digital .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-digital\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".about-service\":false},[\"width:100%\",\"position:relative\",\"padding:0\",\"margin:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .btn:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".about-service .wrap-image\":false},[\"text-align:left\",\"padding-top:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".about-service ul\":false},[\"margin:0\",\"padding:0\"]],[false,{\".about-service li\":false},[\"list-style:none\",\"position:relative\",\"padding-left:30px\",\"min-height:30px\",\"font-size:14px\",\"font-family:Raleway\",\"font-weight:500\",\"line-height:18px\",\"padding-top:5px\",\"margin-bottom:20px\"]],[false,{\".about-service li:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:20px\",\"height:100%\",\"top:0\",\"left:0\",\"background-repeat:no-repeat\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/checkc.png\\\")\",\"background-position:center\",\"background-size:100% auto\"]],[false,{\".about-service.service-devops\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-devops .btn1\":false},[\"background:#cce191\",\"background:-moz-linear-gradient(left,#cce191 0,#ccc 50%,#7cb1cc 100%)\",\"background:-webkit-linear-gradient(left,#cce191 0,#ccc 50%,#7cb1cc 100%)\",\"background:linear-gradient(to right,#cce191 0,#ccc 50%,#7cb1cc 100%)\",\"margin-bottom:20px\"]],[false,{\".about-service.service-devops .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#767e8e\"]],[false,{\".about-service.service-devops .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service.service-machine\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-machine .btn1\":false},[\"background:#4e2e7c\",\"background:-moz-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:-webkit-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:linear-gradient(to right,#4e2e7c 0,#38a3cc 100%)\",\"margin-bottom:20px\"]],[false,{\".about-service.service-machine .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#767e8e\"]],[false,{\".about-service.service-machine .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service.service-micro\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-micro .btn1\":false},[\"background:#878787\",\"background:-moz-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:-webkit-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:linear-gradient(to right,#878787 0,#aeaeae 100%)\",\"margin-bottom:20px\"]],[false,{\".about-service.service-micro .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#767e8e\"]],[false,{\".about-service.service-micro .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service.service-digital\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-digital .btn1\":false},[\"margin-bottom:20px\",\"background:#02c6d9\",\"background:-moz-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to right,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".about-service.service-digital .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#2d98c6\"]],[false,{\".about-service.service-digital .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about\":false},[\"padding:0\",\"color:#8c8c8c\",\"overflow:hidden\",\"position:relative\"]],[false,{\".about-service .content-about .clearfix\":false},[\"width:100%\"]],[false,{\".about-service .content-about .menu-items\":false},[\"margin-top:0\",\"margin-bottom:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .content-about .menu-items\":false},[\"margin:30px 0\",\"text-align:center\"]],[false,\"}\"],[false,{\".about-service .content-about .menu-items .btn\":false},[\"width:100%\",\"text-align:center\",\"line-height:50px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"font-family:Rajdhani\",\"font-weight:400\",\"margin-bottom:0\",\"margin-top:0\",\"font-size:20px\",\"text-transform:uppercase\"]],[false,{\".about-service .content-about .menu-items .active .btn\":false},[\"font-weight:700\"]],[false,{\".about-service .content-about .menu-items.service-devops\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-devops .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-devops .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-devops a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-devops a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-machine\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-machine .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-machine .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-machine a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-machine a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-micro\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-micro .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-micro .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-micro a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-micro a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-digital\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-digital .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-digital .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-digital a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-digital a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .slider-about\":false},[\"line-height:16px\",\"padding-top:70px\"]],[false,{\".about-service .slider-about:not(#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-service .slider-about\":false},[\"line-height:18px\"]],[false,{\".about-service .slider-about:not(#_#_#_#_#_#_#_)\":false},[\"font-size:15px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".about-service .slider-about\":false},[\"text-align:center\"]],[false,{\".about-service .slider-about:not(#_#_#_#_#_#_#_)\":false},[\"font-size:13px\"]],[false,\"}\"],[false,{\".about-service .slider-about h3\":false},[\"font-size:22px\",\"line-height:22px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-service .slider-about h3\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".about-service .slider-about .hand-call\":false},[\"border-top:1px solid #143260\",\"padding-top:30px\",\"margin-top:10px\",\"display:inline-block\"]],[false,{\".about-service .slider-about .border\":false},[\"width:80%\",\"margin-top:20px\",\"margin-bottom:40px\",\"margin-left:10%\"]],[false,{\".about-service .slider-about .border:not(#_#_#_#_#_#_#_)\":false},[\"border:0\",\"border-bottom:1px solid #ccc\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .row\":false},[\"margin:0\"]],[false,\"}\"],[false,{\".intern-about\":false},[\"width:100%\",\"position:relative\",\"padding:70px 0\",\"background-color:#fff\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-intern.jpg\\\")\",\"background-position:bottom center\",\"background-repeat:no-repeat\",\"background-size:100% auto\",\"text-align:center\",\"color:#8c8c8c\",\"font-family:Rajdhani\",\"font-weight:400\",\"font-size:20px\",\"line-height:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".intern-about\":false},[\"font-size:25px\",\"line-height:25px\"]],[false,\"}\"],[false,{\".intern-about .logos\":false},[\"text-align:center\",\"margin-top:50px\"]],[false,{\".intern-about .logos amp-img\":false,\".intern-about .logos amp-anim\":false},[\"display:inline-block\",\"height:90px\",\"margin:0 30px\",\"-webkit-transition:all .2s ease-in-out\",\"-moz-transition:all .2s ease-in-out\",\"transition:all .2s ease-in-out\",\"-webkit-filter:grayscale(100%)\"]],[false,{\".intern-about .logos amp-img:hover\":false,\".intern-about .logos amp-anim:hover\":false},[\"-webkit-filter:grayscale(0)\"]],[false,{\".intern-about .logos amp-img.menor\":false,\".intern-about .logos amp-anim.menor\":false},[\"height:80px\"]],[false,\"@media (max-width:992px){\"],[false,{\".intern-about .logos amp-img\":false,\".intern-about .logos amp-anim\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".intern-about .logos amp-img\":false,\".intern-about .logos amp-anim\":false},[\"height:120px\"]],[false,{\".intern-about .logos amp-img.menor\":false,\".intern-about .logos amp-anim.menor\":false},[\"height:110px\"]],[false,\"}\"],[false,{\".items-service\":false},[\"width:100%\",\"padding:0\",\"margin:0\",\"position:relative\"]],[false,{\".items-service.service-devops\":false},[\"background:#38cea3\",\"background:-moz-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:-webkit-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:linear-gradient(to right,#38cea3 0,#75e168 100%)\"]],[false,{\".items-service.service-machine\":false},[\"background:#4e2e7c\",\"background:-moz-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:-webkit-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:linear-gradient(to right,#4e2e7c 0,#38a3cc 100%)\"]],[false,{\".items-service.service-micro\":false},[\"background:#13203c\",\"background:-moz-linear-gradient(left,#13203c 0,#9d9c9c 100%)\",\"background:-webkit-linear-gradient(left,#13203c 0,#9d9c9c 100%)\",\"background:linear-gradient(to right,#13203c 0,#9d9c9c 100%)\"]],[false,{\".items-service.service-digital\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to right,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".items-service .box-item\":false},[\"position:relative\",\"height:300px\",\"overflow:hidden\"]],[false,\"@media (min-width:1400px){\"],[false,{\".items-service .box-item\":false},[\"height:350px\"]],[false,\"}\"],[false,{\".items-service .box-item .up\":false},[\"position:relative\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"width:100%\",\"height:300px\",\"padding:0\"]],[false,\"@media (min-width:1400px){\"],[false,{\".items-service .box-item .up\":false},[\"height:350px\"]],[false,\"}\"],[false,{\".items-service .box-item .up .bg-image\":false},[\"opacity:.5\",\"background-size:auto 110%\",\"background-position:center\",\"background-repeat:no-repeat\",\"width:100%\",\"height:100%\",\"position:absolute\",\"left:0\",\"top:0\",\"z-index:0\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".items-service .box-item .up .bg-image2\":false},[\"opacity:.5\",\"background-size:auto 110%\",\"background-position:center\",\"background-repeat:no-repeat\",\"width:100%\",\"height:100%\",\"position:absolute\",\"left:0\",\"top:0\",\"z-index:0\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".items-service .box-item .up .wrap-absol\":false},[\"width:100%\",\"height:100%\",\"position:absolute\",\"left:0\",\"top:0\",\"z-index:1\",\"display:table\",\"padding:20px\"]],[false,{\".items-service .box-item .up .wrap-content\":false},[\"display:table-row\",\"width:100%\",\"height:100%\",\"position:relative\"]],[false,{\".items-service .box-item .up .wrap-content .button\":false},[\"width:100%\",\"height:100%\",\"display:table-cell\",\"vertical-align:middle\",\"text-align:center\"]],[false,{\".items-service .box-item .up .wrap-content .btn1\":false},[\"background:0\"]],[false,{\".items-service .box-item .up .wrap-content .btn1:not(#_#_#_#_#_#_#_)\":false},[\"background-color:rgba(0,0,0,0)\"]],[false,{\".items-service .box-item .up .wrap-content .btn1 .mask-btn\":false},[\"border:1px solid #fff\",\"font-weight:500\",\"background-color:rgba(255,255,255,.3)\",\"color:#fff\"]],[false,{\".items-service .box-item .up .wrap-content .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".items-service .box-item .up:hover .bg-image\":false,\".items-service .box-item .up:hover .bg-image2\":false},[\"background-size:auto 130%\"]],[false,{\".items-service .box-item .down\":false},[\"background:#38cea3\",\"background:-webkit-linear-gradient(top,#38cea3 0,#75e168 100%)\",\"background:-o-linear-gradient(top,#38cea3 0,#75e168 100%)\",\"background:linear-gradient(to bottom,#38cea3 0,#75e168 100%)\",\"width:100%\",\"height:300px\",\"padding:20px\",\"color:#fff\",\"font-size:13px\"]],[false,{\".items-service .box-item .down .wrap-all\":false},[\"width:100%\",\"height:260px\"]],[false,{\".items-service.service-machine .down\":false},[\"background:#4e2e7c\",\"background:-moz-linear-gradient(top,#4e2e7c 0,#38a3cc 100%)\",\"background:-webkit-linear-gradient(top,#4e2e7c 0,#38a3cc 100%)\",\"background:linear-gradient(to bottom,#4e2e7c 0,#38a3cc 100%)\"]],[false,{\".items-service.service-micro .down\":false},[\"background:#13203c\",\"background:-moz-linear-gradient(top,#13203c 0,#9d9c9c 100%)\",\"background:-webkit-linear-gradient(top,#13203c 0,#9d9c9c 100%)\",\"background:linear-gradient(to bottom,#13203c 0,#9d9c9c 100%)\"]],[false,{\".items-service.service-digital .down\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to bottom,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".phrase\":false},[\"width:100%\",\"position:relative\",\"padding:50px 0\",\"background-color:#ededed\",\"text-align:center\",\"font-family:Rajdhani\",\"font-weight:400\",\"font-size:20px\",\"line-height:20px\",\"color:#152649\"]],[false,{\".phrase .author\":false},[\"font-size:11px\",\"line-height:11px\",\"color:#9c9c9c\",\"text-transform:uppercase\",\"letter-spacing:5px\",\"margin-top:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".phrase\":false},[\"font-size:25px\",\"line-height:25px\"]],[false,{\".phrase .author\":false},[\"font-size:14px\",\"line-height:14px\"]],[false,\"}\"],[false,{\".about-idea\":false},[\"width:100%\",\"position:relative\",\"padding:50px 0\",\"background-color:#fff\"]],[false,{\".about-idea amp-img\":false,\".about-idea amp-anim\":false},[\"margin-top:35px\",\"margin-bottom:35px\"]],[false,{\".about-idea .btn1\":false},[\"width:100%\",\"text-align:center\"]],[false,{\".about-idea .btn1 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-idea .btn1\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,{\".about-idea .top-info\":false},[\"margin:50px 0\"]],[false,{\".about-idea .withborder\":false},[\"border-left:1px solid #ccc\",\"padding-top:10px\",\"margin-bottom:70px\",\"font-size:17px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-idea .withborder\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,\"}\"],[false,{\".about-idea .big\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"font-size:20px\",\"line-height:20px\",\"color:#152649\",\"margin-top:40px\",\"text-align:center\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-idea .big\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".about-idea\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".hand-call\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:22px\",\"font-size:22px\",\"color:#152649\",\"text-align:left\"]],[false,\"@media (min-width:1400px){\"],[false,{\".hand-call\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".hand-call .border-call\":false},[\"padding-left:20px\",\"margin-bottom:20px\",\"position:relative\"]],[false,{\".hand-call .border-call:before\":false},[\"width:1px\",\"height:100%\",\"position:absolute\",\"content:\\\"\\\"\",\"left:0\",\"top:0\",\"background:#b5f155\",\"background:-moz-linear-gradient(top,#b5f155 0,#2e9cc5 100%)\",\"background:-webkit-linear-gradient(top,#b5f155 0,#2e9cc5 100%)\",\"background:linear-gradient(to bottom,#b5f155 0,#2e9cc5 100%)\"]],[false,{\".hand-call .arrow\":false},[\"padding-left:50px\",\"position:relative\",\"position:relative\"]],[false,{\".hand-call .arrow:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"top:0\",\"left:0\",\"width:30px\",\"height:44px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrow.png\\\")\"]],[false,{\".qualities\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"padding:50px 0\"]],[false,{\".qualities .hand-call\":false},[\"text-align:center\"]],[false,{\".qualities .hand-call .border-call\":false},[\"display:inline-block\",\"text-align:left\"]],[false,{\".qualities .hand-call .arrow\":false},[\"margin-left:20px\",\"display:inline-block\",\"text-align:left\"]],[false,{\".qualities .circles-menu\":false},[\"margin-top:0\",\"margin-bottom:50px\"]],[false,{\".qualities .circles-menu .text-circle:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".qualities .ctext\":false},[\"text-align:center\",\"font-size:13px\",\"font-weight:500\",\"margin-top:30px\",\"padding-top:30px\",\"position:relative\"]],[false,{\".qualities .ctext:after\":false},[\"width:70px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"margin-left:50%\",\"left:-35px\",\"position:absolute\",\"content:\\\"\\\"\"]],[false,{\".qualities .ctext.text1:after\":false},[\"background-color:#9ef34b\"]],[false,{\".qualities .ctext.text2:after\":false},[\"background-color:#d1d1d1\"]],[false,{\".qualities .ctext.text3:after\":false},[\"background-color:#13b5d6\"]],[false,{\".gallery-logos .item\":false},[\"display:table\",\"width:100%\",\"height:100px\"]],[false,{\".gallery-logos .item .wrap-item\":false},[\"width:100%\",\"height:100%\",\"display:table-row\"]],[false,{\".gallery-logos .item .wrap-item .image\":false},[\"width:100%\",\"height:100%\",\"display:table-cell\",\"vertical-align:middle\",\"text-align:center\"]],[false,{\".gallery-logos .item .wrap-item .image amp-img\":false,\".gallery-logos .item .wrap-item .image amp-anim\":false},[\"max-width:80%\",\"width:auto\",\"max-height:50px\",\"height:auto\",\"display:inline-block\"]],[false,\"@media (min-width:1400px){\"],[false,{\".gallery-logos .item .wrap-item .image amp-img\":false,\".gallery-logos .item .wrap-item .image amp-anim\":false},[\"max-height:70px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".contact\":false,\".text-contact\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".top-contact\":false},[\"line-height:90px\",\"position:relative\",\"width:100%\",\"margin-top:100px\",\"background:#75e168\",\"background:-moz-linear-gradient(top,#75e168 0,#38cea3 100%)\",\"background:-webkit-linear-gradient(top,#75e168 0,#38cea3 100%)\",\"background:linear-gradient(to bottom,#75e168 0,#38cea3 100%)\",\"padding:70px 0\"]],[false,{\".top-contact h1\":false},[\"margin:0\",\"font-size:50px\"]],[false,{\".top-contact h2\":false},[\"margin:0\",\"font-size:40px\",\"line-height:90px\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-contact h2\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".top-contact amp-google-document-embed\":false},[\"width:100%\",\"margin-top:20px\"]],[false,{\".subitems\":false},[\"margin:30px 0\"]],[false,{\".subitems .item\":false},[\"position:relative\",\"display:inline-block\",\"color:#152649\",\"font-family:Rajdhani\",\"font-weight:700\",\"padding:0 10px 0 0\",\"margin-right:10px\",\"margin-bottom:5px\"]],[false,{\".subitems .item:after\":false},[\"width:1px\",\"height:100%\",\"position:absolute\",\"content:\\\"\\\"\",\"right:0\",\"top:0\",\"background:#2b9ac7\",\"background:-moz-linear-gradient(top,#2b9ac7 0,#b9f05a 100%)\",\"background:-webkit-linear-gradient(top,#2b9ac7 0,#b9f05a 100%)\",\"background:linear-gradient(to bottom,#2b9ac7 0,#b9f05a 100%)\"]],[false,{\".subitems .item:first-child\":false},[\"padding-left:0\"]],[false,{\".subitems .item:last-child\":false},[\"padding-right:0\"]],[false,{\".subitems .item:last-child:after\":false},[\"display:none\"]],[false,{\".circles-menu\":false},[\"margin-top:-100px\",\"position:relative\",\"text-align:center\"]],[false,\"@media (min-width:1400px){\"],[false,{\".circles-menu\":false},[\"margin-top:-125px\"]],[false,\"}\"],[false,{\".circles-menu .circle\":false},[\"margin:0 auto 30px\",\"display:table\",\"width:200px\",\"height:200px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"border-radius:100px\",\"-moz-border-radius:100px\",\"-webkit-border-radius:100px\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (min-width:1400px){\"],[false,{\".circles-menu .circle\":false},[\"width:250px\",\"height:250px\",\"border-radius:125px\",\"-moz-border-radius:125px\",\"-webkit-border-radius:125px\"]],[false,\"}\"],[false,{\".circles-menu .circle .wrap\":false},[\"display:table-row\",\"width:100%\",\"height:100%\"]],[false,{\".circles-menu .circle .wrap .text-circle\":false},[\"display:table-cell\",\"width:100%\",\"height:100%\",\"vertical-align:middle\",\"font-family:Rajdhani\",\"font-weight:700\",\"color:#002048\",\"font-size:25px\",\"line-height:25px\"]],[false,{\".circles-menu .circle.circle1\":false},[\"background-color:#00a2c3\",\"border:3px solid #00a2c3\"]],[false,{\".circles-menu .circle.circle1:hover\":false},[\"background-color:#fff\"]],[false,{\".circles-menu .circle.circle2\":false},[\"background-color:#d0d0d0\",\"border:3px solid #d0d0d0\"]],[false,{\".circles-menu .circle.circle2:hover\":false},[\"background-color:#fff\"]],[false,{\".circles-menu .circle.circle3\":false},[\"background-color:#91e63e\",\"border:3px solid #91e63e\"]],[false,{\".circles-menu .circle.circle3:hover\":false},[\"background-color:#fff\"]],[false,{\".map\":false},[\"margin:0\",\"padding:0\",\"position:relative\",\"width:100%\",\"background-color:#e8e8e8\",\"color:grey\"]],[false,{\".map .info\":false},[\"width:620px\",\"position:absolute\",\"margin-left:50%\",\"left:-310px\",\"top:-60px\",\"background-color:#fff\",\"padding:20px\",\"color:#152649\",\"font-size:13px\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info\":false},[\"width:90%\",\"margin:0 5%\",\"left:0\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".map .info\":false},[\"width:620px\",\"left:-310px\",\"font-size:15px\"]],[false,\"}\"],[false,{\".map .info .local\":false},[\"width:40%\",\"float:left\",\"padding-right:20px\"]],[false,{\".map .info .local .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info .local .ltext\":false},[\"float:left\",\"text-align:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info .local\":false},[\"width:100%\",\"padding:0\"]],[false,\"}\"],[false,{\".map .info .mail\":false},[\"width:60%\",\"float:left\",\"padding-left:20px\",\"border-left:1px solid #ccc\"]],[false,{\".map .info .mail .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info .mail .ltext\":false},[\"float:left\",\"line-height:40px\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info .mail\":false},[\"width:100%\",\"padding:0\",\"border:0\",\"margin-top:20px\"]],[false,\"}\"],[false,{\".map .info2\":false},[\"width:500px\",\"position:absolute\",\"margin-left:50%\",\"left:-250px\",\"top:40px\",\"background-color:#fff\",\"padding:20px\",\"color:#152649\",\"font-size:13px\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info2\":false},[\"width:90%\",\"margin:0 5%\",\"left:0\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".map .info2\":false},[\"width:600px\",\"left:-300px\",\"font-size:15px\"]],[false,\"}\"],[false,{\".map .info2 .local\":false},[\"width:40%\",\"float:left\",\"padding-right:20px\"]],[false,{\".map .info2 .local .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info2 .local .ltext\":false},[\"float:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info2 .local\":false},[\"width:100%\",\"padding:0\"]],[false,\"}\"],[false,{\".map .info2 .mail\":false},[\"width:60%\",\"float:left\",\"padding-left:20px\",\"border-left:1px solid #ccc\"]],[false,{\".map .info2 .mail .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info2 .mail .ltext\":false},[\"float:left\",\"line-height:40px\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info2 .mail\":false},[\"width:100%\",\"padding:0\",\"border:0\",\"margin-top:20px\"]],[false,\"}\"],[false,{\".map h2\":false},[\"margin-top:70px\"]],[false,{\".panel\":false},[\"position:relative\",\"text-align:center\",\"margin-top:-13%\"]],[false,{\".panel .panel-img\":false},[\"position:absolute\"]],[false,{\".panel .panel-img amp-img\":false,\".panel .panel-img amp-anim\":false},[\"width:40px\"]],[false,{\".panel #panel1\":false},[\"top:100px\",\"left:0\"]],[false,{\".panel #panel2\":false},[\"top:80px\",\"left:40px\"]],[false,{\".panel #panel3\":false},[\"top:100px\",\"left:80px\"]],[false,{\".panel #panel4\":false},[\"top:0\",\"left:120px\"]],[false,{\".panel #panel5\":false},[\"top:70px\",\"left:160px\"]],[false,{\".panel #panel6\":false},[\"top:90px\",\"left:200px\"]],[false,{\".panel #panel7\":false},[\"top:70px\",\"left:240px\"]],[false,{\".panel #panel8\":false},[\"top:50px\",\"left:280px\"]],[false,{\".panel #panel9\":false},[\"top:70px\",\"left:320px\"]],[false,{\".panel #panel10\":false},[\"top:130px\",\"left:360px\"]],[false,{\".hidden\":false},[\"opacity:0\"]],[false,{\".visible\":false},[\"opacity:1\"]],[false,\"@media (max-width:992px){\"],[false,{\".text-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".desktop\":false},[\"display:block\"]],[false,\"@media (max-width:992px){\"],[false,{\".desktop\":false},[\"display:none\"]],[false,\"}\"],[false,{\".mobile\":false},[\"display:none\"]],[false,\"@media (max-width:992px){\"],[false,{\".mobile\":false},[\"display:block\"]],[false,\"}\"],[false,{\".mbottom\":false},[\"margin-bottom:-50px\"]],[false,\"@media (max-width:1400px){\"],[false,{\".container-fluid\":false},[\"max-width:1140px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".container-fluid\":false},[\"width:90%\"]],[false,\"}\"],[false,{\".bg-middle\":false},[\"background-position:left center\",\"background-size:auto 95%\",\"background-repeat:no-repeat\"]],[false,{\".bg-bottom\":false},[\"background-position:bottom center\",\"background-size:auto 95%\",\"background-repeat:no-repeat\"]],[false,\"@media (max-width:992px){\"],[false,{\".item-carousel-1\":false,\".item-carousel-2\":false},[\"text-align:center\"]],[false,{\".item-carousel-1:not(#_#_#_#_#_#_#_)\":false,\".item-carousel-2:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\",\"background-image:none\"]],[false,\"}\"],[false,{\".item-carousel-3\":false},[\"text-align:center\"]],[false,{\".add-top\":false},[\"padding-top:150px\"]],[false,{\".add-top-2\":false},[\"margin-top:100px\"]],[false,{\".blog-color\":false},[\"background-color:#f8f8f8\",\"line-height:50px\",\"position:relative\",\"width:100%\",\"margin-top:100px\"]],[false,{\".blog-color h1\":false},[\"margin:0\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".blog-color .info-text\":false},[\"font-family:Rajdhani\",\"font-weight:300\",\"line-height:20px\",\"font-size:16px\",\"color:#8c8c8c\"]],[false,{\".blog-title-main\":false},[\"padding:90px 50px\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:left center\"]],[false,\"@media (max-width:992px){\"],[false,{\".blog-title-main\":false},[\"padding:30px\"]],[false,\"}\"],[false,{\".blog-main\":false},[\"position:relative\",\"background-color:#fff\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\"]],[false,\"@media (max-width:992px){\"],[false,{\".blog-main\":false},[\"display:none\"]],[false,\"}\"],[false,{\".blog-main .blog-mask\":false},[\"padding:0 50px\",\"position:absolute\",\"width:100%\",\"height:100%\",\"left:0\",\"top:0\",\"background:-moz-linear-gradient(left,rgba(50,143,194,.95) 0,rgba(204,204,204,.95) 100%)\",\"background:-webkit-linear-gradient(left,rgba(50,143,194,.95) 0,rgba(204,204,204,.95) 100%)\",\"background:linear-gradient(to right,rgba(50,143,194,.95) 0,rgba(204,204,204,.95) 100%)\",\"color:#152649\",\"display:flex\",\"align-content:center\",\"align-content:center\",\"flex-wrap:wrap\",\"flex-direction:column\",\"justify-content:center\"]],[false,{\".blog-main .blog-main-content\":false},[\"width:100%\"]],[false,{\".blog-main .blog-main-content .blog-date\":false},[\"line-height:25px\",\"margin-bottom:0\"]],[false,{\".blog-main .blog-main-content .blog-title\":false},[\"font-size:20px\",\"line-height:25px\",\"font-weight:700\",\"display:block\"]],[false,\"@media (min-width:1400px){\"],[false,{\".blog-main .blog-main-content .blog-title\":false},[\"font-size:25px\",\"line-height:30px\",\"max-width:400px\"]],[false,\"}\"],[false,{\".blog-main .blog-main-content .blog-info\":false},[\"color:#152649\",\"font-size:14px\",\"line-height:25px\",\"margin-bottom:0\"]],[false,\"@media (min-width:1400px){\"],[false,{\".blog-main .blog-main-content .blog-info\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".blog-main .blog-main-content .blog-read\":false},[\"background-color:#9d7c23\",\"color:#fff\",\"font-family:Rajdhani\",\"font-size:14px\",\"font-weight:500\",\"padding:5px 25px\",\"border-radius:2px\",\"-webkit-box-shadow:2px 2px 10px 0 transparent\",\"box-shadow:2px 2px 10px 0 transparent\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (min-width:1400px){\"],[false,{\".blog-main .blog-main-content .blog-read\":false},[\"font-size:17px\"]],[false,\"}\"],[false,{\".blog-main .blog-main-content .blog-read:hover\":false},[\"-webkit-box-shadow:2px 2px 10px 0 rgba(0,0,0,.5)\",\"box-shadow:2px 2px 10px 0 rgba(0,0,0,.5)\"]],[false,{\".blog-main .blog-main-content .blog-tags\":false},[\"line-height:15px\",\"margin-bottom:0\",\"color:#152649\",\"margin-top:10px\"]],[false,{\".blog-main .blog-main-content .blog-tags a\":false},[\"border-color:#346a8f\"]],[false,{\".content-blog\":false},[\"position:relative\",\"width:100%\",\"background-color:#f3f3f3\",\"padding:50px 0\",\"color:grey\",\"font-size:16px\",\"line-height:25px\"]],[false,\"@media (max-width:992px){\"],[false,{\".content-blog\":false},[\"background-color:#fff\"]],[false,\"}\"],[false,{\".content-blog strong\":false},[\"color:#23819d\",\"font-size:23px\"]],[false,{\".content-blog small\":false},[\"font-weight:700\"]],[false,{\".content-blog amp-img\":false,\".content-blog amp-anim\":false},[\"width:100%\",\"max-width:100%\"]],[false,{\".content-blog .capa-blog\":false},[\"width:100%\",\"margin-top:-50px\",\"margin-bottom:30px\"]],[false,{\".pagination\":false},[\"width:100%\",\"text-align:center\",\"display:block\"]],[false,{\".pagination a\":false},[\"border:1px solid #999\",\"color:#999\",\"margin:0 20px\",\"border-radius:5px\",\"padding:10px 15px\",\"font-family:Rajdhani\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".pagination a:hover\":false},[\"color:#152649\",\"border:1px solid #152649\"]],[false,{\".arrow-wrap\":false},[\"justify-content:center\",\"display:flex\",\"align-items:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".arrow-wrap--top\":false},[\"margin-bottom:30px\"]],[false,\"}\"],[false,{\".back-arrow\":false},[\"color:#152649\",\"text-transform:uppercase\",\"font-weight:200\",\"font-family:Rajdhani\",\"font-size:14px\",\"margin-top:20px\"]],[false,{\".blog-tags\":false},[\"font-size:12px\",\"color:#23819d\"]],[false,\"@media (min-width:1400px){\"],[false,{\".blog-tags\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".blog-tags a\":false},[\"border-right:1px solid #ccc\",\"margin-left:10px\",\"padding-right:10px\"]],[false,{\".blog-tags a:last-child\":false},[\"border:0\",\"padding:0\"]],[false,{\".blog-tags a:first-child\":false},[\"margin:0\"]],[false,{\".top-blog-single\":false},[\"position:relative\",\"width:100%\",\"margin-top:100px\",\"padding:70px 0\",\"background-color:#fff\"]],[false,{\".top-blog-single a:hover\":false},[\"text-decoration:underline\"]],[false,{\".top-blog-single h1\":false},[\"margin:0 0 10px\",\"font-size:45px\",\"line-height:45px\",\"font-family:Raleway\"]],[false,{\".top-blog-single .blog-title\":false},[\"line-height:55px\",\"color:#152649\"]],[false,{\".top-blog-single .wrap-blog-info\":false},[\"margin-top:-45px\",\"margin-bottom:30px\"]],[false,{\".top-blog-single .back-arrow\":false},[\"font-size:35px\",\"margin:0\"]],[false,{\".top-blog-single .back-arrow a:hover\":false},[\"text-decoration:none\"]],[false,{\".top-blog-single .blog-tags\":false},[\"margin-bottom:-30px\",\"margin-top:30px\"]],[false,{\".blog-info\":false},[\"font-family:Rajdhani\",\"font-size:17px\",\"line-height:25px\",\"color:#23819d\",\"font-weight:500\"]],[false,{\".blog-date\":false},[\"color:#152649\",\"font-family:Rajdhani\",\"font-size:14px\",\"margin-bottom:10px\",\"text-transform:uppercase\",\"font-weight:500\"]],[false,\"@media (min-width:1400px){\"],[false,{\".blog-date\":false},[\"font-size:20px\"]],[false,\"}\"],[false,{\".blog-date--text\":false},[\"color:#23819d\",\"margin-top:20px\"]],[false,{\".box-post-intern\":false},[\"padding:20px\",\"background-color:#f0f0f0\",\"border:1px solid #c2c2c2\",\"border-radius:2px\",\"height:100%\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width:992px){\"],[false,{\".box-post-intern\":false},[\"margin-bottom:30px\",\"height:auto\"]],[false,\"}\"],[false,{\".box-post-intern:hover\":false},[\"background-color:#fff\"]],[false,{\".box-post-intern .blog-date\":false},[\"color:#23819d\",\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"margin-bottom:10px\",\"text-transform:uppercase\",\"font-weight:500\"]],[false,{\".box-post-intern .blog-title\":false},[\"font-size:20px\",\"line-height:25px\",\"color:#23819d\",\"font-weight:700\"]],[false,{\".box-post-intern .blog-info\":false},[\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"color:#23819d\",\"font-weight:500\",\"margin-top:15px\"]],[false,{\".box-post-intern .blog-tags\":false},[\"margin-bottom:0\"]],[false,{\".box-post\":false},[\"height:calc(100% - 30px)\",\"overflow:hidden\",\"position:relative\",\"padding:30px\",\"margin-bottom:30px\",\"background-color:#f0f0f0\",\"border:1px solid #c2c2c2\",\"border-radius:2px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width:992px){\"],[false,{\".box-post\":false},[\"height:auto\"]],[false,\"}\"],[false,{\".box-post:hover\":false},[\"background-color:#fff\"]],[false,{\".box-post .capa-post\":false},[\"width:calc(100% + 60px)\",\"height:200px\",\"margin-top:-30px\",\"margin-left:-30px\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:top center\",\"margin-bottom:30px\"]],[false,{\".box-post .blog-date\":false},[\"color:#23819d\",\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"margin-bottom:30px\",\"text-transform:uppercase\",\"font-weight:500\"]],[false,\"@media (min-width:1400px){\"],[false,{\".box-post .blog-date\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".box-post .blog-title\":false},[\"font-size:20px\",\"line-height:25px\",\"color:#23819d\",\"font-weight:700\"]],[false,\"@media (min-width:1400px){\"],[false,{\".box-post .blog-title\":false},[\"font-size:25px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".box-post .blog-info\":false},[\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"color:#23819d\",\"font-weight:500\",\"margin-top:10px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".box-post .blog-info\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".box-post .blog-excerpt\":false},[\"font-size:12px\",\"line-height:18px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".box-post .blog-excerpt\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".box-post .blog-read\":false},[\"font-family:Rajdhani\",\"color:#9d7c23\",\"font-size:13px\",\"line-height:15px\",\"font-weight:500\"]],[false,\"@media (min-width:1400px){\"],[false,{\".box-post .blog-read\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".box-post .blog-tags\":false},[\"margin-top:20px\",\"margin-bottom:0\"]],[false,{\".more-section\":false},[\"margin-top:30px\"]],[false,{\"li.categories\":false},[\"font-family:Rajdhani\",\"text-transform:uppercase\",\"list-style:none\",\"margin-bottom:70px\",\"font-weight:500\",\"color:#23819d\",\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"li.categories\":false},[\"font-size:25px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\"li.categories\":false},[\"margin-top:50px\",\"margin-bottom:0\"]],[false,\"}\"],[false,{\"li.categories ul\":false},[\"list-style:none\",\"padding:0\",\"margin-top:30px\"]],[false,{\"li.categories ul li\":false},[\"margin-bottom:15px\",\"text-transform:none\",\"font-size:13px\",\"font-family:Raleway\",\"font-weight:300\"]],[false,\"@media (min-width:1400px){\"],[false,{\"li.categories ul li\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".icon-main-blog\":false},[\"width:80px\",\"margin-top:-20px\",\"margin-left:-15px\"]],[false,{\".icon-main-blog amp-img\":false,\".icon-main-blog amp-anim\":false},[\"width:100%\"]],[false,{\"#paginator\":false},[\"width:100%\",\"padding:0 15px\",\"margin:25px 0\",\"text-align:center\"]],[false,{\"#paginator li\":false},[\"list-style:none\",\"display:inline-block\",\"width:30px\",\"line-height:30px\",\"border:1px solid #ccc\",\"border-radius:5px\",\"color:#999\",\"margin:5px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"#paginator li.current\":false,\"#paginator li:hover\":false},[\"color:#152649\",\"border:1px solid #152649\",\"font-weight:700\"]],[false,{\"#paginator li a\":false},[\"display:block\"]],[false,{\".footer-media a\":false},[\"color:#999\",\"margin-left:20px\"]],[false,{\".avatar-20:not(#_#_#_#_#_#_#_)\":false},[\"width:20px\"]],[false,{\".mobile-address\":false},[\"padding-top:30px\"]],[false,\"@media (max-width:1000px) and (orientation:landscape){\"],[false,{\".about-intern\":false},[\"padding-bottom:30px\"]],[false,{\".circles-menu\":false},[\"margin-top:30px\"]],[false,\"}\"],[false,\"@media (max-width:1000px){\"],[false,{\".box-post .capa-post\":false},[\"height:170px\"]],[false,\"}\"],[false,{\".box-post\":false},[\"padding:0\",\"margin-bottom:0\"]],[false,{\".box-post:not(#_#_#_#_#_#_#_)\":false},[\"height:100%\"]],[false,{\".box-post-text\":false},[\"padding:30px\"]],[false,{\".div-post\":false},[\"margin-bottom:30px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":9996,\"final_size\":10003,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/shared.css?v=107993241\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"c90d28f47007b3c5d58885a57c053d63\",\"parse_time\":0.13923096656799316,\"shake_time\":0.0002911090850830078,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".new-header__nav--list\":true},[\"margin:0\",\"padding:0\",\"display:contents\"]],[true,{\".new-header__nav--list li\":true},[\"list-style:none\",\"color:#152649\",\"font-size:15px\",\"font-weight:900\",\"line-height:30px\",\"text-transform:uppercase\",\"padding:0 .5rem\"]],[true,{\".new-header__nav--list li:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".new-header__nav--list li .nav-link:not(#_#_#_#_#_#_#_#_)\":true},[\"padding-right:10px\",\"padding-left:10px\",\"white-space:nowrap\"]],[true,{\".new-header__nav--list li .nav-link:hover:not(#_#_#_#_#_#_#_#_)\":true},[\"color:#24c1ff\"]],[true,\"@media (max-width:992px){\"],[true,{\".new-header__nav--list li .nav-link:not(#_#_#_#_#_#_#_#_)\":true},[\"padding-right:5px\",\"padding-left:5px\"]],[true,\"}\"],[true,{\".new-header__button\":true},[\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"float:right\",\"width:15%\"]],[true,{\".new-header__button:not(#_#_#_#_#_#_#_)\":true},[\"color:#152649\"]],[true,{\".new-header__button a\":true},[\"background:0 0\",\"border:none\",\"color:#152649\",\"font-family:raleway,sans-serif\",\"font-weight:900\",\"font-size:18px\"]],[true,{\".new-header__button a:hover\":true},[\"text-decoration:none\"]],[true,{\".dropdown-menu\":true},[\"background:#f7f7f7\",\"top:97px\",\"left:50%\",\"transform:translateX(-50%)\",\"width:70%\",\"border-radius:0\",\"border-top:none\",\"cursor:auto\"]],[true,{\".dropdown-menu:not(#_#_#_#_#_#_#_)\":true},[\"position:fixed\"]],[true,{\".dropdown-menu>.container\":true},[\"display:flex\",\"align-items:center\",\"justify-content:center\",\"min-height:270px\",\"padding:2.5rem 1.5rem 3rem\"]],[true,{\".nav-link\":true},[\"display:flex\",\"flex-direction:column\",\"align-items:center\"]],[true,{\".nav-link:not(#_#_#_#_#_#_#_)\":true},[\"color:#152649\"]],[true,{\".dropdown-toggle::after:not(#_#_#_#_#_#_#_#_)\":true},[\"color:#24c1ff\",\"border:1px solid #24c1ff\",\"width:10px\"]],[true,{\".show>.dropdown-toggle::after:not(#_#_#_#_#_#_#_#_)\":true},[\"border-top:.3em solid\",\"border-right:.3em solid transparent\",\"border-bottom:0\",\"border-left:.3em solid transparent\",\"width:0\"]],[true,{\".new-header__nav--title h5\":true},[\"font-size:2.3rem\",\"text-transform:initial\",\"font-family:raleway,sans-serif\",\"font-weight:800\",\"color:#152649\",\"line-height:38px\"]],[true,{\".new-header__nav--title h5:after\":true},[\"content:\\\"-\\\"\",\"border-bottom:0 solid\",\"border-image-slice:1\",\"border-width:5px\",\"display:block\",\"color:transparent\",\"height:25px\",\"width:65px\",\"margin-bottom:2rem\"]],[true,{\".new-header__nav--subtitle p\":true},[\"margin:0\",\"font-size:.8rem\",\"color:#152649\",\"font-weight:400\",\"text-transform:initial\",\"margin-bottom:2rem\",\"line-height:15px\"]],[true,{\".new-header__nav--subtitle p:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".new-header__nav--right-edge\":true},[\"border-right:1px solid #c9c9c9\"]],[true,{\".new-header__nav--menu--img\":true},[\"padding:0\",\"text-align:center\"]],[true,{\".new-header__nav--menu--img amp-img\":true,\".new-header__nav--menu--img amp-anim\":false},[\"max-width:100%\"]],[true,{\".new-header__nav--menu--title\":true},[\"color:#152649\",\"text-transform:capitalize\",\"font-weight:800\",\"font-family:raleway,sans-serif\",\"font-size:1.1rem\",\"margin-bottom:.3rem\"]],[true,{\".new-header__nav--menu--text\":true},[\"color:#6f7070\",\"font-weight:400\",\"text-transform:initial\",\"font-size:.8rem\",\"margin:0\",\"line-height:15px\"]],[true,{\".new-header__nav--menu--text:not(#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".new-header__nav--menu--link:hover>.new-header__nav--menu--title\":true},[\"color:#24c1ff\"]],[true,{\".new-header__nav--menu--link:hover>.new-header__nav--menu--text\":true},[\"color:#24c1ff\"]],[true,{\".new-header__nav--menu--link:hover\":true},[\"text-decoration:none\"]],[true,{\".new-header__nav--menu--box:not(#_#_#_#_#_#_#_)\":true},[\"margin-bottom:1.5rem\"]],[true,{\".new-header__nav--menu--button\":true},[\"width:65%\",\"border-radius:35px\",\"border:1px solid #9df168\",\"position:relative\",\"display:flex\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"text-align:center\",\"font-size:1rem\",\"transition:font .3s\",\"height:45px\",\"align-items:center\",\"justify-content:center\"]],[true,{\".new-header__nav--menu--button:hover\":true},[\"text-decoration:none\",\"font-size:1.2rem\"]],[true,{\".new-header__nav--menu--button--link\":true},[\"color:#152649\",\"text-transform:initial\",\"font-family:raleway,sans-serif\",\"font-weight:900\"]],[true,{\".new-header__nav--title-color\":true},[\"color:#24c1ff\"]],[true,{\".new-header__nav--menu--whatsIs\":true},[\"font-weight:400\",\"color:#24c1ff\",\"text-transform:initial\",\"font-size:.9rem\"]],[true,{\".new-header__nav--menu--whatsIs:not(#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".bg-light\":true},[\"width:85%\"]],[true,{\".bg-light:not(#_#_#_#_#_#_#_)\":true},[\"background-color:transparent\"]],[true,{\".new-header__nav--subtitle-icon\":true},[\"padding:0\",\"text-align:right\"]],[true,{\".new-header__nav--subtitle-icon:not(#_#_#_#_#_#_#_)\":true},[\"width:90%\"]],[true,{\".new-header__logo\":true},[\"width:20%\"]],[true,{\".new-header__menu-item\":true},[\"justify-content:flex-end\"]],[true,{\".new-header\":true},[\"top:0\",\"width:100%\",\"position:fixed\",\"background-color:#f7f7f7\",\"z-index:3\",\"transition:all .3s ease-in-out\",\"display:flex\",\"margin:0\",\"padding:0\",\"justify-content:center\"]],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:100px\"]],[true,{\".navbar-toggler:not(#_#_#_#_#_#_#_)\":true},[\"padding:0\",\"border:none\",\"outline:0\"]],[true,{\".devops-styles:not(#_#_#_#_#_#_#_)\":true},[\"margin-top:100px\"]],[true,\"@media (min-width:300px) and (max-width:768px){\"],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:70px\"]],[true,{\".devops-styles:not(#_#_#_#_#_#_#_)\":true},[\"margin-top:70px\"]],[true,{\".new-header__menu-item\":true},[\"background:#f7f7f7\",\"margin:0\",\"padding:0\",\"width:100%\",\"position:absolute\",\"top:70px\",\"left:0\",\"z-index:9\",\"overflow:scroll\",\"height:650px\",\"padding-bottom:2rem\"]],[true,{\".new-header__logo\":true},[\"width:50%\"]],[true,{\".new-header__button:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".new-header__nav--list\":true},[\"display:flex\",\"align-items:flex-start\"]],[true,{\".new-header__nav--list li\":true},[\"padding-left:1rem\"]],[true,{\".new-header__nav--list>.show\":true},[\"width:100%\",\"border:1px #ccc solid\",\"padding-bottom:1rem\"]],[true,{\".dropdown-toggle::after\":true},[\"display:none\"]],[true,{\".show>.dropdown-toggle:not(#_#_#_#_#_#_#_)\":true},[\"color:#24c1ff\"]],[true,{\".show>.dropdown-toggle::before:not(#_#_#_#_#_#_#_#_)\":true},[\"border-bottom:.3em solid\",\"border-top:0\"]],[true,{\".new-header__nav--list li .nav-link\":true},[\"display:block\"]],[true,{\".dropdown-toggle::before\":true},[\"display:inline-block\",\"margin-right:.5rem\",\"vertical-align:.255em\",\"content:\\\"\\\"\"]],[true,{\".dropdown-toggle::before:not(#_#_#_#_#_#_#_#_)\":true},[\"border-top:.3em solid\",\"border-right:.3em solid transparent\",\"border-bottom:0\",\"border-left:.3em solid transparent\",\"color:#24c1ff\"]],[true,{\".dropdown-menu\":true},[\"width:100%\",\"top:0\",\"left:0\",\"transform:none\",\"padding:0\",\"border:none\"]],[true,{\".dropdown-menu:not(#_#_#_#_#_#_#_)\":true},[\"position:relative\"]],[true,{\".dropdown-menu>.container\":true},[\"padding:0\"]],[true,{\".dropdown-menu>.container>.row\":true},[\"width:100%\"]],[true,{\".new-header__nav--title h5\":true},[\"font-size:1.5rem\"]],[true,{\".new-header__nav--title h5:after\":true},[\"display:none\"]],[true,{\".new-header__nav--menu--img\":true},[\"display:none\"]],[true,{\".align-items-center>.col-md-8\":true},[\"padding:0\"]],[true,{\".bg-light\":true},[\"width:100%\"]],[true,{\".new-header__nav--menu--title\":true},[\"display:flex\",\"align-items:center\"]],[true,{\".new-header__nav--menu--title::after\":true},[\"display:inline-block\",\"margin-left:.5rem\",\"vertical-align:.255em\",\"content:\\\"\\\"\"]],[true,{\".new-header__nav--menu--title::after:not(#_#_#_#_#_#_#_#_)\":true},[\"border-top:.3em solid transparent\",\"border-right:0\",\"border-bottom:.3em solid transparent\",\"border-left:.3em solid\",\"color:#24c1ff\"]],[true,{\".new-header__nav--right-edge\":true},[\"border-right:none\"]],[true,{\".new-header__nav--menu--button\":true},[\"margin-bottom:2rem\",\"display:flex\",\"width:50%\"]],[true,\"}\"],[true,\"@media (min-width:600px) and (max-width:768px){\"],[true,{\".new-header__button:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".new-header__logo amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".new-header__logo amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:60%\"]],[true,\"}\"],[true,\"@media (min-width:768px) and (max-width:1024px){\"],[true,{\".new-header__nav--list li\":true},[\"font-size:10px\"]],[true,{\".new-header__button a\":true},[\"font-size:13px\"]],[true,\"}\"],[true,{\".footer-2022\":true},[\"background-color:#152649\",\"color:#c1c1c1\",\"padding:5rem 0 5rem\",\"font-weight:400\"]],[true,{\".footer-2022:not(#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".footer-2022__logo amp-img\":true,\".footer-2022__logo amp-anim\":false},[\"width:100%\"]],[true,{\".footer-2022__text\":true},[\"font-size:.9rem\",\"text-align:end\",\"line-height:15px\"]],[true,{\".footer-2022__certificates\":true},[\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[true,{\".footer-2022__certificates-box-union\":true},[\"display:flex\"]],[true,{\".footer-2022__certificates--kubernetes a amp-img\":true,\".footer-2022__certificates--kubernetes a amp-anim\":false},[\"width:100%\",\"padding:0 1rem\"]],[true,{\".footer-2022__certificates--cloud-native a amp-img\":true,\".footer-2022__certificates--cloud-native a amp-anim\":false},[\"width:100%\",\"padding:0 1rem\"]],[true,{\".footer-2022__certificates--linux-foundation a amp-img\":true,\".footer-2022__certificates--linux-foundation a amp-anim\":false},[\"width:100%\",\"padding:0 1rem\"]],[true,{\".footer-2022__social-media\":true},[\"display:flex\",\"align-items:center\",\"justify-content:end\"]],[true,{\".footer-2022__social-media a\":true},[\"margin:0 .5rem\",\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[true,{\".footer-2022__social-media a amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".footer-2022__social-media a amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[true,{\".footer-2022__menu\":true},[\"margin-top:6rem\",\"margin-bottom:5rem\"]],[true,{\".footer-2022__menu--box\":true},[\"display:flex\",\"flex-direction:row\",\"width:100%\",\"padding:0\"]],[true,{\".footer-2022__menu--list\":true},[\"flex-grow:1\"]],[true,{\".footer-2022__menu--list h5\":true},[\"color:#59657e\",\"margin-bottom:1rem\",\"font-size:1rem\"]],[true,{\".footer-2022__menu--list h5:after\":true},[\"content:\\\"-\\\"\",\"border-bottom:0 solid\",\"border-image-slice:1\",\"border-width:4px\",\"display:block\",\"color:transparent\",\"height:20px\",\"width:65px\",\"margin-bottom:1.5rem\"]],[true,{\".footer-2022__menu--list ul\":true},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[true,{\".footer-2022__menu--list ul li\":true},[\"margin-bottom:.5rem\"]],[true,{\".footer-2022__menu--list ul li strong\":true},[\"color:#24c1ff\",\"font-weight:900\",\"font-family:raleway,sans-serif\",\"padding-bottom:.5rem\",\"display:block\"]],[true,{\".footer-2022__menu--list ul li a\":true},[\"color:#24c1ff\",\"font-weight:500\",\"font-family:raleway,sans-serif\",\"font-size:.9rem\"]],[true,{\".footer-2022__menu--list ul li a:hover\":true},[\"text-decoration:none\",\"-webkit-background-clip:text\",\"-webkit-text-fill-color:transparent\"]],[true,{\".footer-2022__box-end\":true},[\"font-size:.9rem\"]],[true,{\".footer-2022__box-end--privacy-policy\":true},[\"text-decoration:underline\",\"color:#c9c9c9\",\"padding-right:1rem\",\"border-right:1px solid #c9c9c9\"]],[true,{\".footer-2022__box-end--privacy-policy:hover\":true},[\"color:#24c1ff\"]],[true,{\".footer-2022__box-end--terms-of-use\":true},[\"text-decoration:underline\",\"color:#c9c9c9\",\"margin-left:1rem\",\"margin-right:3rem\"]],[true,{\".footer-2022__box-end--terms-of-use:hover\":true},[\"color:#24c1ff\"]],[true,{\".footer-2022__copyright\":true},[\"font-size:.9rem\",\"color:#c9c9c9\"]],[true,\"@media (min-width:300px) and (max-width:768px){\"],[true,{\".footer-2022__logo amp-img\":true,\".footer-2022__logo amp-anim\":false},[\"margin-bottom:3rem\",\"padding-top:5rem\",\"border-top:2px solid #486091\"]],[true,{\".footer-2022__text\":true},[\"text-align:left\",\"margin-bottom:2rem\"]],[true,{\".footer-2022__certificates\":true},[\"margin-bottom:4rem\"]],[true,{\".footer-2022__social-media\":true},[\"justify-content:flex-start\"]],[true,{\".footer-2022__certificates-box-union\":true},[\"display:flex\",\"flex-direction:column-reverse\"]],[true,{\".footer-2022__certificates--cloud-native a amp-img\":true,\".footer-2022__certificates--cloud-native a amp-anim\":false},[\"margin-bottom:1rem\"]],[true,{\".footer-2022__certificates--kubernetes a amp-img\":true,\".footer-2022__certificates--kubernetes a amp-anim\":false},[\"padding:0 .2rem\"]],[true,{\".footer-2022__certificates--linux-foundation a amp-img\":true,\".footer-2022__certificates--linux-foundation a amp-anim\":false},[\"width:80%\",\"margin-bottom:1rem\"]],[true,{\".footer-2022__menu\":true},[\"margin-top:5rem\",\"margin-bottom:3rem\",\"margin-left:15px\",\"margin-right:15px\"]],[true,{\".footer-2022__menu--box\":true},[\"flex-direction:column\"]],[true,{\".footer-2022__menu--list ul\":true},[\"margin-bottom:3rem\"]],[true,{\".footer-2022__mobile-items\":true},[\"width:100%\",\"padding-right:15px\",\"padding-left:15px\",\"margin-right:auto\",\"margin-left:auto\"]],[true,{\".footer-2022__box-end\":true},[\"margin-bottom:.5rem\"]],[true,\"}\"],[true,\"@media (min-width:600px) and (max-width:768px){\"],[true,{\".footer-2022__logo amp-img\":true,\".footer-2022__logo amp-anim\":false},[\"margin-bottom:0\",\"padding-top:0\",\"border-top:none\"]],[true,{\".footer-2022__certificates-box-union\":true},[\"flex-direction:row\"]],[true,{\".footer-2022__text\":true},[\"margin-bottom:0\"]],[true,{\".footer-2022__certificates\":true},[\"margin-bottom:0\"]],[true,{\".footer-2022__social-media\":true},[\"margin-top:2rem\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1312,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/style.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"7408b05c90ec93467ae3ffd934b45823\",\"parse_time\":0.006227016448974609,\"shake_time\":1.5020370483398438e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".categories\":false},[\"list-style-type:none\",\"padding:20px\"]],[false,{\".grecaptcha-badge\":false},[\"display:none\"]],[false,{\"figcaption\":false},[\"font-size:12px\",\"text-align:center\"]],[false,{\".content-blog h1\":false},[\"font-size:45px\",\"line-height:45px\",\"margin-top:20px\",\"margin-bottom:30px\"]],[false,{\".content-blog strong\":false},[\"font-size:inherit\"]],[false,{\".content-blog h2\":false},[\"font-size:35px\",\"line-height:35px\",\"margin-top:20px\",\"margin-bottom:20px\",\"color:#23819d\"]],[false,{\".content-blog h3\":false},[\"font-size:30px\",\"line-height:30px\",\"margin-top:20px\",\"margin-bottom:20px\",\"color:inherit\",\"color:#000\"]],[false,{\".content-blog h4\":false},[\"position:relative\",\"font-family:\\\"Rajdhani\\\"\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"margin-top:10px\",\"margin-bottom:10px\"]],[false,{\".content-blog h5\":false},[\"position:relative\",\"font-family:\\\"Rajdhani\\\"\",\"font-weight:500\",\"line-height:20px\",\"font-size:20px\",\"margin-top:10px\",\"margin-bottom:0px\"]],[false,{\".content-blog h6\":false},[\"position:relative\",\"font-family:\\\"Rajdhani\\\"\",\"font-weight:500\",\"line-height:18px\",\"font-size:18px\",\"margin-top:10px\",\"margin-bottom:0px\"]],[false,{\".content-blog p a\":false},[\"color:#0693e3\",\"text-decoration:underline\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":155232,\"final_size\":11541,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/style-isk.css?v=1535218598\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"6f68b4471d049368cf66b5fad21e7dbd\",\"parse_time\":2.082787036895752,\"shake_time\":0.06760096549987793,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"body\":true},[\"background-color:#fff\",\"font-family:Raleway,sans-serif\",\"font-weight:400\",\"font-size:14px\",\"line-height:20px\",\"color:#152649\",\"-webkit-font-smoothing:subpixel-antialiased\",\"overflow-x:hidden\"]],[false,{\"sup\":false},[\"top:-.8em\",\"font-size:7px\",\"font-weight:800\"]],[false,{\".red\":false},[\"color:#ff555f\"]],[false,{\".grey\":false},[\"color:#7080a7\"]],[false,{\".turquouise\":false},[\"color:#28d9cb\"]],[false,{\".flourscent\":false},[\"color:#24c1ff\"]],[false,{\".g-d-none\":false},[\"display:none\"]],[true,{\".new-header\":true},[\"z-index:4\"]],[true,{\".new-header__nav--subtitle p\":true},[\"padding-left:16px\",\"font-size:14px\",\"letter-spacing:-.35px\"]],[true,{\"header nav .dropdown-menu p.new-header__nav--menu--text\":true},[\"max-width:180px\"]],[false,{\".custom-txt-img-sec.tek-world-scale .container-md\":false},[\"max-width:1406px\"]],[false,{\".custom-txt-img-sec .review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:0px\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner\":false},[\"position:relative\"]],[false,{\".c-application-development:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:30px\"]],[false,{\".c-application-development .custom-txt h2:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:25px\"]],[false,{\".cloud-native-application .custom-txt p span\":false},[\"color:#152649\"]],[false,{\".cloud-native-application .review_sec\":false},[\"margin-top:25px\"]],[false,{\".c-application-development .review_sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".c-application-development .cloud-native-application .custom-img amp-img\":false,\".c-application-development .cloud-native-application .custom-img amp-anim\":false},[\"width:94%\"]],[false,{\".cp-tek-teams-isk .title\":false},[\"margin-bottom:24px\"]],[false,{\".cp-tek-teams-isk .title p\":false},[\"margin:0\",\"color:#28d9cb\",\"font-size:16px\",\"text-transform:uppercase\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:400\"]],[false,{\".cp-tek-teams-isk p\":false},[\"font-size:24px\",\"color:#28d9cb\",\"margin:10px 0px 0px 0px\",\"font-weight:700\",\"line-height:normal\"]],[false,{\".cp-tek-teams-isk amp-img\":false,\".cp-tek-teams-isk amp-anim\":false},[\"min-height:350px\"]],[false,{\".cp-tek-teams-isk .inner-hero-text amp-img\":false,\".cp-tek-teams-isk .inner-hero-text amp-anim\":false},[\"min-height:unset\"]],[false,{\".review_sec\":false},[\"background:#f5f5f5\",\"padding:40px 56px\",\"margin-top:65px\",\"box-shadow:0px 20px 32px 0px rgba(0,0,0,.2)\",\"position:relative\",\"position:relative\",\"border-radius:24px\"]],[false,{\".review_sec amp-img\":false,\".review_sec amp-anim\":false},[\"position:absolute\",\"left:0px\"]],[false,{\".review_sec::after\":false},[\"content:\\\"\\\"\",\"display:block\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8578.png\\\")\",\"background-repeat:no-repeat\",\"width:40px\",\"height:40px\",\"position:absolute\",\"top:-20px\",\"left:56px\",\"background-size:cover\"]],[false,{\".review_sec .swiper-slide p\":false},[\"margin:0\",\"font-size:20px\",\"color:#707070\"]],[false,{\".review_sec .swiper-slide i\":false},[\"margin:20px 0px\",\"display:block\",\"color:#707070\",\"font-size:18px\",\"padding-left:70px\"]],[false,{\".review_sec .swiper-slide span\":false},[\"color:#152649\",\"font-weight:700\"]],[false,{\".review_sec .title p\":false},[\"font-size:20px\",\"font-weight:700\",\"color:#707070\"]],[false,{\".review_sec .title span\":false},[\"color:#28d9cb\"]],[false,{\".rebuild-and-replatform\":false},[\"background-color:#f1f1f1\",\"padding:120px 0px 192px 0px\"]],[false,{\".rebuild-and-replatform .txt label\":false},[\"display:block\",\"margin-bottom:40px\"]],[false,{\".rebuild-and-replatform .txt h2\":false},[\"margin-bottom:40px\"]],[false,{\".rebuild-and-replatform .txt h2 span\":false},[\"color:#28d9cb\"]],[false,{\".rebuild-and-replatform .txt p\":false},[\"color:#707070\",\"margin-bottom:30px\",\"font-size:20px\",\"line-height:1.6em\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content\":false},[\"display:none\",\"flex-wrap:wrap\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text p\":false},[\"font-size:20px\",\"line-height:1.6\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img\":false},[\"width:175px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-img\":false,\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-anim\":false},[\"width:100%\",\"object-fit:cover\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-boxs\":false},[\"margin-bottom:43px\",\"border-bottom:1px solid #dbdbdb\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text\":false},[\"padding-left:45px\",\"width:calc(100% - 175px)\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content.active\":false},[\"display:flex\",\"padding-bottom:37px\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec\":false},[\"margin:0\",\"box-shadow:unset\",\"background-color:transparent\",\"border-radius:unset\",\"padding:0\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec::after\":false},[\"display:none\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row\":false},[\"background-color:#fff\",\"padding:56px 76px\",\"border-radius:28px\",\"border:1px solid #dbdbdb\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul\":false},[\"list-style:none\",\"padding:0\",\"padding:8px\",\"display:flex\",\"background-color:#fff\",\"border-radius:36px\",\"margin:0px 0px 16px 0px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li\":false},[\"width:50%\",\"padding:16px\",\"border-radius:28px\",\"text-align:center\",\"transition:all .4s ease\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li a\":false},[\"font-size:20px\",\"color:#707070\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li.active\":false},[\"background-color:#f1f1f1\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li.active b\":false},[\"color:#152649\"]],[false,{\".custom-full-bg amp-img\":false,\".custom-full-bg amp-anim\":false},[\"width:100%\",\"display:block\"]],[false,{\".keeping-you-competitive\":false},[\"background-color:#152649\",\"padding:120px 0px 135px\"]],[false,{\".keeping-you-competitive label\":false},[\"color:#7080a7\"]],[false,{\".keeping-you-competitive .heading-box h2\":false},[\"color:#fff\",\"margin-bottom:40px\"]],[false,{\".keeping-you-competitive p\":false},[\"color:#fff\",\"font-family:Raleway,sans-serif\",\"font-size:20px\",\"line-height:1.4\"]],[false,{\".keeping-future\":false},[\"margin-top:40px\"]],[false,{\".keeping-future ul\":false},[\"list-style:none\",\"font-size:20px\",\"color:#24c1ff\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".keeping-future ul li\":false},[\"margin-bottom:32px\",\"font-style:italic\",\"border-bottom:#16365c solid 1px\",\"padding-bottom:30px\",\"width:26%\",\"margin-right:45px\",\"font-weight:500\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:11%\"]],[false,{\".keeping-future ul li:nth-child(8)\":false,\".keeping-future ul li:nth-child(4)\":false},[\"margin-right:0px\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(10)\":false,\".keeping-future ul li:nth-child(11)\":false},[\"border:none\"]],[false,{\".custom-qout-box\":false},[\"background-color:#f1f1f1\",\"padding:40px 0px 95px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-top:-11%\",\"margin-bottom:100px\",\"background-color:#fff\"]],[false,{\".custom-qout-box .review_sec i\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.4\",\"font-weight:400\",\"margin-bottom:24px\",\"display:block\"]],[false,{\".depending-on\":false},[\"display:flex\",\"align-items:center\",\"justify-content:space-between\"]],[false,{\".depending-img-box\":false},[\"width:15%\"]],[false,{\".depending-text\":false},[\"width:55%\"]],[false,{\".depending-text p\":false},[\"font-size:24px\",\"font-weight:bold\",\"line-height:1.4\"]],[false,{\".depending-btn\":false},[\"width:25%\"]],[false,{\".depending-btn .btn-blue\":false},[\"border-radius:50px\",\"padding:24px 30px\"]],[false,{\".native-applications-list\":false},[\"padding:120px 0px 100px\"]],[false,{\".native-applications-list .heading-box\":false},[\"margin-bottom:60px\"]],[false,{\".native-applications-list .heading-box h2 span\":false},[\"color:#28d9cb\"]],[false,{\".native-applications-list .swiper-wrapper\":false},[\"display:flex\",\"justify-content:space-between\"]],[false,{\".native-applications-list .swiper-slide\":false},[\"width:calc(50% - 50px)\"]],[false,{\".applications-col ul\":false},[\"list-style:none\"]],[false,{\".applications-col li\":false},[\"font-size:20px\",\"color:#707070\",\"font-weight:bold\",\"border-bottom:#dbdbdb solid 1px\",\"padding-bottom:25px\",\"margin-bottom:25px\",\"position:relative\",\"padding-left:37px\",\"line-height:1.4\"]],[false,{\".applications-col li::after\":false},[\"position:absolute\",\"left:0px\",\"top:0px\",\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8544.png\\\")\",\"background-repeat:no-repeat\",\"width:24px\",\"height:24px\"]],[false,{\".applications-col li:last-child\":false},[\"border:none\"]],[false,{\".native-applications-list-pagination\":false},[\"text-align:center\"]],[false,{\".native-applications-list-pagination .swiper-pagination-bullet\":false},[\"width:4px\",\"height:4px\",\"background-color:#dbdbdb\",\"opacity:1\"]],[false,{\".native-applications-list-pagination .swiper-pagination-bullet-active\":false},[\"width:24px\",\"height:4px\",\"border-radius:50px\",\"background-color:#28d9cb\"]],[false,{\".native-data-driven-top\":false},[\"background-color:#121d3d\",\"padding-bottom:80px\",\"margin-top:-2px\"]],[false,{\".native-data-driven-top .heading-box label\":false,\".native-data-driven-top .heading-box h2\":false},[\"color:#fff\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 190px\",\"background-color:#f1f1f1\"]],[false,{\".data-driven-application .swiper-slide\":false},[\"width:calc(33.333% - 44px)\"]],[false,{\".data-driven-application .swiper-wrapper\":false},[\"display:flex\",\"justify-content:space-between\"]],[false,{\".data-driven-application .swiper-button-next.swiper-button-disabled\":false,\".data-driven-application .swiper-button-prev.swiper-button-disabled\":false},[\"opacity:0\"]],[false,{\".data-driven-application .swiper-button-next:after\":false},[\"content:\\\"\\\"\",\"background-repeat:no-repeat\",\"width:26px\",\"height:16px\",\"display:none\"]],[false,{\".data-driven-application .swiper-button-next:after:not(#_#_#_#_#_#_#_#_)\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/right-arrow.png\\\")\"]],[false,{\".data-driven-application .swiper-button-prev:after\":false},[\"content:\\\"\\\"\",\"background-repeat:no-repeat\",\"width:26px\",\"height:20px\",\"display:none\"]],[false,{\".data-driven-application .swiper-button-prev:after:not(#_#_#_#_#_#_#_#_)\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/left-arrow-1.png\\\")\"]],[false,{\".data-driven-application .slider-nav\":false},[\"width:55%\",\"display:block\",\"height:20px\",\"margin:0px auto\",\"position:relative\"]],[false,{\".data-driven-application .swiper-pagination-bullet\":false},[\"width:4px\",\"border-radius:50px\",\"height:4px\",\"background-color:#24c1ff\",\"opacity:1\"]],[false,{\".data-driven-application .swiper-pagination-bullet-active\":false},[\"width:24px\",\"border-radius:50px\",\"height:4px\",\"background-color:#152649\"]],[false,{\".data-driven-application .applications-col\":false},[\"padding-bottom:15px\"]],[false,{\".data-driven-application .swiper-button-next\":false,\".data-driven-application .swiper-button-prev\":false},[\"bottom:0px\",\"top:auto\",\"position:absolute\"]],[false,{\".data-driven-application .applications-col li\":false},[\"border:none\",\"padding-bottom:0px\",\"margin-bottom:40px\",\"color:#152649\"]],[false,{\".data-driven-application .applications-col li::after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8556.png\\\")\"]],[false,{\".data-driven-application .applications-col li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8548.png\\\")\"]],[false,{\".data-driven-application .applications-col li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8549.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(1):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8550.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8551.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8552.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(4):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8553.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(3) li:nth-child(1):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8554.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(3) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8555.png\\\")\"]],[false,{\".clients-talk\":false},[\"background-color:#fff\",\"padding:120px 0px 120px\"]],[false,{\".lets-talk-box\":false},[\"background-color:#fff\",\"box-shadow:8px 0px 32px rgba(0,0,0,.1)\",\"padding:56px 0px 90px\",\"border-radius:16px\",\"margin-top:-19%\",\"text-align:center\"]],[false,{\".about-dev-ops .review_sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:100px\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:32px\",\"font-weight:bold\",\"color:#707070\",\"font-family:Raleway,sans-serif\",\"line-height:1.3\"]],[false,{\".lets-talk-box h3 span\":false},[\"color:#28d9cb\"]],[false,{\".clients-talk .btn-wrapper\":false},[\"width:316px\",\"margin:0px auto\",\"margin-top:-38px\"]],[false,{\".btn-gradient\":false},[\"border-radius:50px\",\"padding:18px 30px\",\"width:100%\",\"text-align:center\"]],[false,{\".build-wrapper .swiper-wrapper\":false},[\"display:flex\"]],[false,{\".build-wrapper .review_sec\":false},[\"margin-bottom:19px\",\"box-shadow:none\",\"margin-top:21px\"]],[false,{\".build-wrapper .review_sec:before\":false},[\"position:absolute\",\"bottom:6px\",\"content:\\\"\\\"\",\"width:96%\",\"margin:0px auto\",\"right:0\",\"z-index:-1\",\"left:0\",\"height:93px\",\"border-radius:50px\",\"box-shadow:rgba(0,0,0,.4) 0px 25px 20px -20px\"]],[false,{\".build-wrapper .heading-box\":false},[\"margin-bottom:24px\"]],[false,{\".build-wrapper .review_sec .swiper-slide p\":false},[\"padding-left:0\"]],[false,{\".build-wrapper .custom-txt p\":false},[\"margin-bottom:25px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt\":false},[\"width:49%\",\"margin-right:81px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-img\":false},[\"width:43%\",\"margin-left:0\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt p\":false},[\"margin-bottom:30px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt p:last-of-type\":false},[\"margin:0px\"]],[false,{\".text-grey-box\":false},[\"background-color:#f1f1f1\",\"padding:24px\",\"position:relative\",\"margin:40px 0px 32px\"]],[false,{\".text-grey-box p\":false},[\"padding-right:60px\"]],[false,{\".text-grey-box:after\":false},[\"position:absolute\",\"left:0\",\"top:0\",\"height:100%\",\"width:4px\",\"background:#152649\",\"content:\\\"\\\"\"]],[false,{\".journey-roadmap\":false},[\"margin-top:-253px\",\"background-color:#02163c\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:248px 0px 120px 0px\"]],[false,{\".review_sec2\":false},[\"padding:40px 30px 40px 50px\",\"margin-top:100px\",\"z-index:2\",\"position:relative\",\"box-shadow:none\"]],[false,{\".review_sec2::after\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8578-1.png\\\") no-repeat\"]],[false,{\".review_sec i\":false},[\"line-height:1.6\"]],[false,{\".review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:20px\"]],[false,{\".review_sec2 .title p\":false},[\"color:#152649\",\"line-height:1.2\"]],[false,{\".journey-roadmap-header\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\"]],[false,{\".journey-roadmap-logo\":false},[\"width:29%\"]],[false,{\".journey-roadmap-header .heading-box\":false},[\"width:66%\"]],[false,{\".journey-roadmap-header .heading-box h2\":false},[\"color:#fff\"]],[false,{\".journey-roadmap-header .heading-box h2 span\":false},[\"color:#28d9cb\"]],[false,{\".devops-services\":false},[\"padding-bottom:0\"]],[false,{\".devops-services .heading-box\":false},[\"margin-bottom:45px\"]],[false,{\".devops-services .heading-box h2\":false},[\"color:#28d9cb\"]],[false,{\".devops-services .applications-col ul\":false},[\"margin-bottom:37px\"]],[false,{\".devops-services .applications-col ul li\":false},[\"font-size:20px\",\"font-weight:normal\",\"border-bottom:none\",\"padding-bottom:0\",\"margin-bottom:0\",\"padding-left:37px\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:20px\",\"color:#152649\",\"line-height:1.6\",\"margin-bottom:24px\",\"position:relative\",\"padding-left:42px\",\"font-weight:bold\"]],[false,{\".devops-services .applications-col h5::before\":false},[\"position:absolute\",\"left:0px\",\"top:0px\",\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon1.png\\\")\",\"width:30px\",\"height:30px\",\"background-repeat:no-repeat\",\"margin-top:0px\"]],[false,{\".devops-services .applications-col ul li::after\":false},[\"content:none\"]],[false,{\".srvs-text-box\":false},[\"margin-bottom:37px\"]],[false,{\".srvs-text-box p\":false},[\"font-size:20px\",\"line-height:1.6\",\"padding-left:44px\"]],[false,{\".srvs-text-box:nth-child(1) p:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0\",\"left:0\",\"width:25px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8556.png\\\")\",\"height:25px\",\"margin-top:5px\"]],[false,{\".srvs-text-box:last-child h5\":false},[\"color:#707070\"]],[false,{\".srvs-text-box:last-child h5 span\":false},[\"font-weight:500\",\"color:#152649\"]],[false,{\".reliability-engineers\":false},[\"width:95%\",\"margin:0px auto\",\"background-color:#f5f5f5\",\"border-radius:24px\",\"padding:40px 30px 40px 92px\",\"position:relative\",\"margin-top:100px\",\"font-weight:bold\"]],[false,{\".reliability-engineers p\":false},[\"font-size:20px\",\"font-weight:bold\",\"margin-bottom:0px\"]],[false,{\".fortune-box\":false},[\"text-align:center\",\"display:flex\",\"align-items:flex-end\"]],[false,{\".tex-box\":false},[\"padding:11px 0px\",\"margin-top:25px\",\"line-height:1.6\",\"color:#152649\",\"width:49%\",\"border-radius:10px\",\"border:#707070 solid 1px\"]],[false,{\".right-short-text\":false},[\"margin-left:22px\"]],[false,{\".right-short-text p\":false},[\"font-size:14px\",\"font-weight:normal\",\"font-style:italic\",\"color:#707070\"]],[false,{\".mrdata-logo\":false},[\"position:absolute\",\"left:-58px\",\"top:0\",\"bottom:0\",\"display:flex\",\"align-items:center\"]],[false,{\".devops-services .applications-col:nth-child(1) h5:last-of-type::before\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon3.png\\\")\"]],[false,{\".native-applications-list .swiper-slide:nth-child(2) .srvs-text-box:nth-child(1) p:after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon2.png\\\")\",\"width:33px\"]],[false,{\".native-applications-list .swiper-slide:nth-child(2) .srvs-text-box:nth-child(2) h5::before\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon4.png\\\")\",\"margin-top:0px\"]],[false,{\".native-applications-list .swiper-slide:nth-child(2) .srvs-text-box:nth-child(3) h5::before\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon5.png\\\")\"]],[false,{\".kubernetes-sec\":false},[\"margin-top:-95px\"]],[false,{\".kubernetes-sec .container-md\":false},[\"padding:0px 0px\"]],[false,{\".kubernetes-sec .custom-txt\":false},[\"padding:0px 24px\"]],[false,{\".kubernetes-sec .heading-box h2\":false},[\"color:#fff\",\"margin-bottom:40px\"]],[false,{\".kubernetes-sec .scroll-img amp-img\":false,\".kubernetes-sec .scroll-img amp-anim\":false},[\"margin-bottom:120px\",\"text-align:center\"]],[false,{\".kubernetes-sec .scroll-img\":false},[\"text-align:center\"]],[false,{\".kubernetes-sec .custom-txt p\":false},[\"color:#fff\",\"font-size:20px\",\"line-height:1.6\"]],[false,{\".kubernetes-sec .custom-txt p span\":false},[\"color:#24c1ff\"]],[false,{\".book-cunsultaion-sec\":false},[\"padding:10px 0px 124px 0px\",\"background-color:#f1f1f1\"]],[false,{\".book-cunsultaion-sec a.btn-blue:hover\":false},[\"color:#fff\",\"background:#28d9cb\"]],[false,{\".top-btn\":false},[\"padding-bottom:124px\",\"margin-top:-39px\"]],[false,{\".col-row ul\":false},[\"list-style:none\",\"display:flex\",\"justify-content:space-between\",\"flex-wrap:wrap\"]],[false,{\".col-row ul li\":false},[\"font-size:20px\",\"font-weight:bold\",\"color:#152649\",\"margin-bottom:32px\",\"position:relative\",\"width:30%\",\"padding-left:46px\"]],[false,{\".col-row ul li::after\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"content:\\\"\\\"\",\"width:32px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/clck.png\\\")\",\"height:32px\"]],[false,{\".col-row ul li:nth-child(1)\":false,\".col-row ul li:nth-child(4)\":false},[\"width:35%\"]],[false,{\".col-row ul li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/cstmr.png\\\")\"]],[false,{\".col-row ul li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/wrld.png\\\")\"]],[false,{\".col-row ul li:nth-child(4):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/auto.png\\\")\"]],[false,{\".col-row ul li:nth-child(5):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/drive.png\\\")\"]],[false,{\".col-row ul li:nth-child(6):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/dlr.png\\\")\"]],[false,{\".cost-effective-sec\":false},[\"padding-bottom:0px\",\"padding-top:120px\"]],[false,{\".cost-effective-sec:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#fff\"]],[false,{\".cost-effective-sec .inner\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:end\",\"margin-bottom:80px\"]],[false,{\".cost-effective-sec .custom-txt\":false},[\"width:55%\"]],[false,{\".cost-effective-sec .left-text\":false},[\"width:43%\"]],[false,{\".cost-effective-sec .left-text p\":false},[\"font-size:20px\",\"line-height:1.6\",\"color:#707070\"]],[false,{\".cost-effective-sec .heading-box h2 span\":false},[\"color:#28d9cb\",\"display:block\"]],[false,{\".data-driven-devOps\":false},[\"display:flex\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col\":false},[\"padding-bottom:15px\",\"width:calc(50% - 38px)\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col li\":false},[\"border-bottom:#dbdbdb solid 1px\",\"padding-bottom:32px\",\"margin-bottom:32px\",\"line-height:1.6\",\"padding-left:50px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col li:after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/ppl.png\\\")\",\"width:32px\",\"height:32px\",\"margin-top:8px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(2) li:nth-child(1):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/loaction.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(2) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/icon.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(1) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/icon2.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(1) li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/icon3.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col ul li:last-child\":false},[\"border:none\"]],[false,{\".cost-effective-sec .review_sec2 .swiper-slide\":false},[\"width:100%\"]],[false,{\".cost-effective-sec .review_sec .swiper-slide i\":false},[\"padding-left:0px\"]],[false,{\".infrastructure-sec\":false},[\"margin-top:-100px\",\"background-color:#152649\",\"text-align:center\"]],[false,{\".infrastructure-sec:not(#_#_#_#_#_#_#_)\":false},[\"padding:0px 0 80px\"]],[false,{\".infrastructure-sec .bg-img::before\":false},[\"content:\\\"\\\"\",\"width:100%\",\"height:265px\",\"position:absolute\",\"left:0\",\"bottom:-3px\",\"background-image:linear-gradient(rgba(21,38,73,0),#152649)\"]],[false,{\".infrastructure-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".infrastructure-sec .container-md:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0px\"]],[false,{\".infrastructure-sec .heading-box h2\":false},[\"color:#fff\",\"margin:auto\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:93%\"]],[false,{\".infrastructure-sec .heading-box:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\",\"margin-top:40px\",\"width:100%\"]],[false,{\".infrastructure-sec .heading-box h2\":false},[\"color:#fff\",\"max-width:inherit\",\"text-align:center\"]],[false,{\".contact-wrapper-banner\":false},[\"z-index:2\"]],[false,{\".contact-form-left .calendly-inline-widget:not(#_#_#_#_#_#_#_)\":false},[\"overflow:hidden\"]],[false,{\".contact-wrapper-banner amp-img\":false,\".contact-wrapper-banner amp-anim\":false},[\"min-height:110px\"]],[false,{\".contact-wrapper-banner:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:28px\",\"height:28px\",\"background-color:#152649\",\"bottom:-13px\",\"left:18%\",\"z-index:-1\",\"transform:rotate(45deg)\",\"border-radius:4px\"]],[false,{\".change_bg .custom-contact-wrapper\":false},[\"background:#152649\",\"position:relative\",\"z-index:2\"]],[false,{\".about-map\":false},[\"position:relative\"]],[false,{\".c-full-map\":false},[\"position:absolute\",\"top:0\",\"width:100%\",\"height:100%\",\"z-index:1\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"width:100%\",\"height:100%\",\"object-fit:cover\"]],[false,{\".custom-contact-wrapper\":false},[\"padding:125px 0px 160px\",\"margin-top:0px\"]],[false,{\".about-map .c-full-map .wpgmza_map.wpgmza-auto-left:not(#_#_#_#_#_#_#_)\":false},[\"height:100%\"]],[false,{\".about-map .c-full-map .wpgmza-modern-store-locator>.wpgmza-inner\":false},[\"opacity:0\"]],[false,{\".schedule-box h1\":false},[\"display:none\"]],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"display:flex\",\"justify-content:space-between\",\"flex-wrap:wrap\",\"background:#fff\",\"box-shadow:8px 0px 32px rgba(0,0,0,.1)\",\"padding:0px\",\"border-radius:0px 26px 26px 26px\",\"position:relative\",\"z-index:2\"]],[false,{\".contact-form-left\":false},[\"width:57%\",\"padding:58px 0px 75px\"]],[false,{\".choose-option\":false},[\"padding-left:46px\"]],[false,{\".choose-option ul\":false},[\"display:flex\",\"flex-wrap:wrap\",\"justify-content:space-between\",\"list-style:none\",\"align-items:center\",\"margin-bottom:60px\"]],[false,{\".choose-option ul li\":false},[\"font-size:20px\",\"color:#152649\"]],[false,{\".choose-option ul li\":false},[\"padding:15px 33px\",\"border-radius:50px\",\"color:#707070\",\"background:#fff\",\"transition:all ease .5s\"]],[false,{\".choose-option ul li:hover\":false},[\"background:#f1f1f1\"]],[false,{\".choose-option ul li:nth-child(2)\":false},[\"font-weight:800\",\"padding:0px 20px\",\"background:transparent\",\"color:#121d3d\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box label\":false},[\"display:block\",\"font-size:18px\",\"color:#121d3d\",\"font-weight:bold\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control\":false},[\"width:100%\",\"display:block\",\"padding:14px 0px 8px\",\"border:0\",\"border-radius:0px\",\"outline:none\",\"background-color:#fff\",\"font-size:20px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:400\",\"color:#000\",\"resize:none\",\"-webkit-transition:.5s ease 0s\",\"transition:.5s ease 0s\",\"border-bottom:#e6e6e6 solid 1px\",\"margin-bottom:15px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .col-md-4\":false},[\"max-width:50%\",\"margin-bottom:15px\",\"flex:0 0 50%\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box::placeholder\":false},[\"font-size:16px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control::-webkit-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:16px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control::-ms-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:16px\",\"font-weight:normal\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control::placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:16px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea\":false},[\"margin-top:0\",\"height:130px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:55px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box input[type=\\\"submit\\\"]\":false},[\"background:linear-gradient(-90deg,#28d9cb 0,#a0f266 100%)\",\"font-size:18px\",\"height:70px\",\"font-weight:800\",\"cursor:pointer\",\"max-width:300px\",\"width:100%\",\"border-radius:50px\",\"margin:0\"]],[false,{\".change_bg .contact-form-info-right\":false},[\"background:linear-gradient(180deg,#28d9cb 0,#66f2a3 100%)\"]],[false,{\".change_bg .contact-form-info-right ul li a\":false,\".change_bg .contact-form-info-right ul li span a\":false,\".change_bg .contact-form-info-right ul li\":false,\".change_bg .contact-form-info-right ul li:first-of-type\":false,\".change_bg .contact-form-info-right h3\":false},[\"color:#152649\"]],[false,{\".change_bg .contact-form-info-right ul li\":false},[\"border-color:rgba(255,255,255,28%)\"]],[false,{\".btn-group button\":false},[\"border-radius:50px\",\"border:none\"]],[false,{\".contact-form-info-right\":false},[\"width:38%\",\"background-color:#152649\",\"border-radius:26px\",\"padding:50px 80px 119px\"]],[false,{\".contact-form-info-right h3\":false},[\"font-size:32px\",\"color:#28d9cb\",\"line-height:1.5\",\"margin-bottom:25px\",\"font-family:Raleway,sans-serif\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control:focus\":false},[\"outline:none\",\"box-shadow:none\"]],[false,{\".contact-form-info-right ul\":false},[\"list-style:none\",\"margin-bottom:70px\"]],[false,{\".contact-form-info-right ul li\":false},[\"border-bottom:#525c70 solid 1px\",\"padding:40px 0px 47px\",\"color:#bcc2ce\",\"font-size:17px\",\"position:relative\",\"display:flex\",\"align-items:center\",\"line-height:1.5\"]],[false,{\".contact-form-info-right ul li a\":false},[\"color:#28d9cb\",\"padding-left:15px\",\"text-decoration:underline\",\"display:block\"]],[false,{\".contact-form-info-right ul li:nth-of-type(1) a\":false},[\"text-decoration:none\"]],[false,{\".contact-form-info-right ul li:nth-of-type(2) a\":false},[\"color:#28d9cb\",\"padding-left:0px\"]],[false,{\".contact-form-info-right ul li:nth-of-type(2) span\":false},[\"padding-left:55px\",\"display:block\"]],[false,{\".contact-form-info-right ul li:last-child a\":false},[\"padding-left:55px\"]],[false,{\".contact-form-info-right ul li:first-of-type a\":false},[\"color:#fff\",\"font-size:32px\",\"font-weight:bold\",\"line-height:1.5\"]],[false,{\".contact-form-info-right ul li:last-child\":false},[\"border:none\"]],[false,{\".change_bg .contact-form-info-right ul .phone:before\":false,\".change_bg .contact-form-info-right ul .address:before\":false,\".change_bg .contact-form-info-right ul .email:before\":false,\".change_bg .btm-icon-line amp-img\":false,\".change_bg .btm-icon-line amp-anim\":false},[\"filter:brightness(100)\"]],[false,{\".contact-form-info-right ul .phone:before\":false},[\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/phone.svg\\\")\",\"background-size:cover\",\"background-repeat:no-repeat\",\"width:40px\",\"height:40px\",\"display:inline-block\",\"vertical-align:middle\"]],[false,{\".contact-form-info-right ul .address:before\":false},[\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/address.svg\\\")\",\"background-size:cover\",\"background-repeat:no-repeat\",\"width:41px\",\"height:45px\",\"display:inline-block\",\"vertical-align:middle\",\"padding-bottom:46px\",\"position:absolute\"]],[false,{\".contact-form-info-right ul .email:before\":false},[\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/email.svg\\\")\",\"background-size:cover\",\"background-repeat:no-repeat\",\"width:40px\",\"height:40px\",\"display:inline-block\",\"vertical-align:middle\",\"position:absolute\"]],[false,{\".change_bg .font-des\":false},[\"-webkit-text-fill-color:#fff\",\"border-image:unset\"]],[false,{\".font-des\":false},[\"font-size:25px\",\"color:#fff\",\"font-weight:bold\",\"border:4px solid\",\"padding:4px 5px\",\"background:linear-gradient(0deg,rgba(40,217,203,1) 0%,rgba(102,242,163,1) 100%)\",\"-webkit-background-clip:text\",\"-webkit-text-fill-color:transparent\",\"border-image:linear-gradient(0deg,rgba(40,217,203,1) 0%,rgba(102,242,163,1) 100%)\"]],[false,{\".btm-icon-line\":false},[\"position:relative\",\"display:flex\",\"justify-content:center\"]],[false,{\".choose-option ul li.tab\":false},[\"cursor:pointer\"]],[false,{\".choose-option ul li:last-child\":false},[\"margin-left:0px\"]],[false,{\".contact-form-left .tab-content\":false},[\"display:none\",\"padding-left:50px\"]],[false,{\".contact-form-left .tab-content.active\":false},[\"display:block\"]],[false,{\".btm-icon-line:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"left:0px\",\"bottom:0px\",\"margin:auto\",\"height:1px\",\"width:130px\",\"top:0\",\"background:#525c70\"]],[false,{\".btm-icon-line::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"right:0px\",\"bottom:0px\",\"margin:auto\",\"height:1px\",\"width:130px\",\"top:0\",\"background:#525c70\"]],[true,\"@media only screen and (min-width: 2751px) and (max-width: 3840px){\"],[true,{\".new-header\":true},[\"padding:0px 23%\"]],[true,\"}\"],[true,\"@media only screen and (min-width: 2200px) and (max-width: 2750px){\"],[true,{\".new-header\":true},[\"padding:0px 10%\"]],[true,\"}\"],[false,\"@media screen and (max-width: 1320px) and (min-width: 1025px){\"],[false,{\".contact-form-info-right\":false},[\"padding:50px 25px 119px\"]],[false,\"}\"],[true,\"@media only screen and (max-width: 1920px){\"],[true,{\".new-header .dropdown-menu>.container\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".new-header .mega-menu-right\":true},[\"padding:0px\",\"margin:0px\",\"flex:0 0 71.666667%\",\"max-width:71.666667%\"]],[true,{\".new-header .dropdown-menu .col-lg-4\":true},[\"padding:0\",\"flex:0 0 24.333333%\",\"max-width:24.333333%\"]],[true,{\".new-header .mega-menu-right .row .menu-widget\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".dropdown-menu\":true},[\"width:66%\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1024px){\"],[true,{\".new-header .dropdown-menu>.container\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".new-header .mega-menu-right\":true},[\"flex:0 0 78.666667%\",\"max-width:78.666667%\"]],[true,{\".new-header .dropdown-menu .col-lg-4\":true},[\"flex:0 0 21.333333%\",\"max-width:21.333333%\"]],[true,{\".new-header .mega-menu-right .row .menu-widget\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".dropdown-menu\":true},[\"width:66%\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-top:-16%\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:12%\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .mega-menu-right\":true},[\"flex:0 0 66.666667%\",\"max-width:66.666667%\",\"padding-right:71px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .mega-menu-right\":true},[\"flex:100%\",\"max-width:100%\",\"padding-right:20px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .dropdown-menu .col-lg-4\":true},[\"flex:100%\",\"max-width:100%\"]],[true,{\".new-header__nav--subtitle p\":true},[\"padding-left:0px\"]],[true,{\"a.new-header__nav--menu--button\":true},[\"margin-bottom:25px\"]],[true,{\".new-header__menu-item\":true},[\"padding-left:0\"]],[true,\"}\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 90px 0px 30px\"]],[true,\"@media only screen and (min-width: 1920px) and (max-width: 2129px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 50px 0px 30px\"]],[true,\"}\"],[true,\"@media (max-width: 1800px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 2.2rem\"]],[true,\"}\"],[true,\"@media (max-width: 1366px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 1rem 0rem 2.2rem\"]],[true,\"}\"],[true,\"@media (max-width: 1280px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 1.2rem\"]],[true,\"}\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link\":true},[\"font-size:16px\"]],[true,\"@media only screen and (max-width: 1920px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:16px\",\"padding:0px 17px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1680px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"padding:0px 6px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1440px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"padding:0px 11px\",\"font-size:14px\"]],[false,{\".native-applications-list\":false},[\"padding:120px 0px 120px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1366px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:13px\",\"padding:0px 11px\"]],[false,{\".depending-text p\":false},[\"font-size:23px\"]],[false,{\".applications-col li\":false},[\"font-size:18px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1024px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\",\"padding:0px 8px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:10px\",\"padding:.5rem 1rem\"]],[true,\"}\"],[true,{\".show>.dropdown-toggle::after\":true},[\"transform:rotate(45deg)\",\"text-align:left\",\"display:inline-block\"]],[true,{\".show>.dropdown-toggle::after:not(#_#_#_#_#_#_#_#_)\":true},[\"width:7px\",\"height:7px\",\"border:solid 1px #24c1ff\",\"border-left:0\",\"border-top:0\"]],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".show>.dropdown-toggle::after\":true},[\"display:none\"]],[true,\"}\"],[true,{\"a.new-header__nav--menu--button\":true},[\"position:relative\",\"min-width:132px\",\"transition:all ease .5s\",\"transition:all .5s\",\"border:1px solid #9df168\",\"background:transparent\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"margin:0px\",\"display:flex\",\"text-align:left\",\"padding-left:10px\",\"padding-right:10px\",\"line-height:44px\",\"transform:scale(1)\",\"max-width:170px\"]],[true,\"@media (max-width: 992px){\"],[true,{\"a.new-header__nav--menu--button\":true},[\"width:150px\"]],[true,\"}\"],[true,\"@media (max-width: 991px){\"],[true,{\"a.new-header__nav--menu--button\":true},[\"margin-bottom:25px\"]],[true,\"}\"],[true,{\".new-header__nav--title h5\":true},[\"padding-right:40px\"]],[true,\"@media (max-width: 1680px){\"],[true,{\".new-header__nav--title h5\":true},[\"padding-right:0px\"]],[true,\"}\"],[true,{\"a.new-header__nav--menu--button:before\":true},[\"position:absolute\",\"right:30px\",\"top:43%\",\"width:10px\",\"height:10px\",\"border:#707070 solid 1px\",\"z-index:99\",\"content:\\\"\\\"\",\"transform:rotate(45deg)\",\"border-bottom:0\",\"border-left:0\",\"margin-left:15px\",\"display:none\"]],[true,{\"a.new-header__nav--menu--button:hover\":true},[\"transform:scale(1.1)\"]],[true,\"@keyframes pulse{\"],[true,\"0%{transform:scale(1)}\"],[true,\"100%{transform:scale(1.1)}\"],[true,\"}\"],[true,{\".new-header__nav--menu--button:hover\":true},[\"font-size:1rem\"]],[true,\"@media screen and (max-width: 992px){\"],[true,{\"a.new-header__nav--menu--button:after\":true},[\"width:110px\"]],[true,\"}\"],[true,{\"a.new-header__nav--menu--button:hover::after\":true},[\"width:100%\",\"transition:all ease .2s\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\"]],[true,{\".new-header__nav--menu--title\":true},[\"color:#152649\"]],[true,{\".new-header__nav--subtitle-icon amp-img\":true,\".new-header__nav--subtitle-icon amp-anim\":false},[\"width:25px\"]],[true,{\".new-header__nav--subtitle-icon\":true},[\"text-align:left\"]],[true,\"@media screen and (max-width: 1920px){\"],[true,{\".new-header__nav--menu--img\":true},[\"flex:0 0 23%\",\"max-width:23%\"]],[true,{\".col-md-10.menu-text\":true},[\"flex:0 0 77%\",\"max-width:77%\",\"padding-right:0px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1440px){\"],[true,{\".new-header__nav--menu--img\":true},[\"padding:0\",\"max-width:20%\",\"flex:0 0 20%\"]],[true,\"}\"],[true,{\".col-12.new-header__nav--subtitle\":true},[\"padding-right:20px\"]],[true,{\".dropdown-menu\":true},[\"border-top:1px solid #dfdfdf\"]],[true,\"@media only screen and (max-width: 1920px){\"],[true,{\".dropdown-menu\":true},[\"border-top:1px solid #dfdfdf\",\"width:64%\",\"padding-left:40px\",\"padding-top:20px\",\"padding-bottom:20px\"]],[true,{\".new-header__nav--list li .nav-link:not(#_#_#_#_#_#_#_#_)\":true},[\"padding-right:20px\",\"padding-left:20px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1680px){\"],[true,{\".dropdown-menu\":true},[\"width:70%\",\"padding-left:44px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1536px){\"],[true,{\".dropdown-menu\":true},[\"width:76%\",\"padding-left:44px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1440px){\"],[true,{\".new-header__nav--list li\":true},[\"padding:0px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 991px){\"],[true,{\".new-header__nav--list li\":true},[\"padding-left:1rem\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1440px){\"],[true,{\".dropdown-menu\":true},[\"width:83%\",\"padding-left:50px\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:44px\"]],[false,{\".review_sec2\":false},[\"margin-top:47px\"]],[false,{\".top-btn\":false},[\"padding-bottom:60px\"]],[false,{\".book-cunsultaion-sec\":false},[\"padding:10px 0px 60px 0px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1024px){\"],[true,{\".dropdown-menu\":true},[\"padding-left:25px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".dropdown-menu\":true},[\"width:100%\",\"padding-right:10px\",\"padding-left:1rem\",\"border-top:none\"]],[true,\"}\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:18px\",\"letter-spacing:-.43px\"]],[true,\"@media screen and (max-width: 1280px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:16px\"]],[false,{\".custom-qout-box .review_sec i\":false},[\"font-size:18px\"]],[false,{\".depending-text p\":false},[\"font-size:21px\"]],[false,{\".applications-col li\":false},[\"font-size:17px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1024px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:14px\"]],[false,{\".custom-qout-box .review_sec i\":false},[\"font-size:16px\"]],[false,{\".depending-text p\":false},[\"font-size:17px\"]],[false,{\".native-applications-list\":false},[\"padding:90px 0px 50px\"]],[false,{\".depending-btn .btn-blue\":false},[\"padding:15px 10px\"]],[false,{\".applications-col li\":false},[\"font-size:15px\"]],[false,{\".native-applications-list .swiper-slide\":false},[\"width:calc(50% - 19px)\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:26px\"]],[false,{\".lets-talk-box\":false},[\"margin-top:-25%\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 140px\"]],[false,{\".data-driven-application .swiper-slide\":false},[\"width:calc(33.333% - 10px)\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt\":false},[\"margin-right:0\"]],[true,\"}\"],[true,\"@media screen and (max-width: 991px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:1rem\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:18%\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:30px\",\"width:33%\"]],[false,{\".keeping-future ul li:nth-child(9)\\n.keeping-future ul li:nth-child(6)\":false,\".keeping-future ul li:nth-child(3)\":false},[\"margin-right:0px\"]],[false,{\".keeping-future ul li:nth-child(10)\":false,\".keeping-future ul li:nth-child(9)\":false},[\"border-bottom:#16365c solid 1px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 768px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:1.1rem\"]],[false,{\".keeping-you-competitive p\":false},[\"font-size:13px\"]],[false,{\".depending-on\":false},[\"flex-wrap:wrap\"]],[false,{\".depending-img-box\":false},[\"width:20%\"]],[false,{\".depending-text\":false},[\"width:75%\"]],[false,{\".depending-btn\":false},[\"width:100%\",\"text-align:center\"]],[false,{\".custom-qout-box\":false},[\"padding:40px 0px 60px\"]],[false,{\".depending-btn .btn-blue\":false},[\"padding:15px 30px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-top:-24%\",\"margin-bottom:55px\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 110px\"]],[false,{\".native-applications-list .heading-box h2\":false},[\"font-size:25px\"]],[false,{\".native-applications-list .heading-box\":false},[\"margin-bottom:35px\"]],[false,{\".applications-col li\":false},[\"font-size:12px\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:20px\"]],[false,{\".lets-talk-box\":false},[\"padding:35px 0px 60px\",\"margin-top:-29%\"]],[false,{\".clients-talk\":false},[\"padding:120px 0px 55px\"]],[false,{\".clients-talk .btn-gradient\":false},[\"font-size:27px\",\"padding:10px 30px\"]],[false,{\".clients-talk .btn-wrapper\":false},[\"width:245px\",\"margin-top:-27px\"]],[false,{\".keeping-future ul\":false},[\"justify-content:space-between\"]],[false,{\".keeping-future ul li\":false},[\"width:48%\"]],[false,{\".keeping-future ul li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:48%\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(10)\":false},[\"border-bottom:#16365c solid 1px\"]],[false,{\".tex-box\":false},[\"width:68%\"]],[true,\"}\"],[true,{\".new-header__nav--subtitle\":true,\".new-header__nav--subtitle .col-10\":true,\".new-header__nav--title .col-10\":true,\".new-header__nav--title\":true},[\"padding:0px\"]],[true,{\".new-header__nav--subtitle .row .col-12\":true},[\"padding:0px\"]],[true,{\".new-header__nav--menu--text\":true},[\"font-size:12px\",\"letter-spacing:-.29px\"]],[true,{\".new-header__nav--menu--img amp-img\":true,\".new-header__nav--menu--img amp-anim\":false},[\"max-width:100%\",\"width:48px\"]],[true,\"@media only screen and (max-width: 1400px){\"],[true,{\".new-header .dropdown-menu .menu-right\":false,\".new-header .dropdown-menu .menu-widget .row\":true,\".new-header .dropdown-menu .menu-widget\":true},[\"padding:0px\"]],[true,{\".mega-menu-right\":true},[\"padding:0px\"]],[true,{\".new-header__nav--menu--box\":true},[\"align-items:flex-start\"]],[true,{\".col-md-10.menu-text\":true},[\"padding:0px 2px 0px 9px\",\"max-width:80%\",\"flex:0 0 80%\"]],[true,\"}\"],[true,{\".footer-2022__social-media a\":true},[\"transition:all ease .5s\"]],[true,{\".footer-2022__social-media a:hover\":true},[\"margin-top:-10px\"]],[true,\"@media only screen and (min-width: 1800px) and (max-width: 3034px){\"],[true,{\"footer.footer-2022 .container\":true},[\"max-width:1545px\"]],[true,\"}\"],[true,\"@media (max-width: 600px){\"],[true,{\"footer.footer-2022 .container\":true},[\"padding:0px 44px\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec\":false},[\"padding:40px 0px 0px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row\":false},[\"padding:40px 25px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content.active\":false},[\"flex-wrap:wrap\",\"padding-bottom:28px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img\":false},[\"width:100%\",\"margin-bottom:32px\"]],[false,{\".rebuild-and-replatform\":false},[\"padding:120px 0px 120px 0px\"]],[false,{\".rebuild-and-replatform .txt .heading-box h2 br\":false},[\"display:none\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text\":false},[\"padding-left:0\",\"width:100%\"]],[false,{\".review_sec amp-img\":false,\".review_sec amp-anim\":false},[\"top:0\"]],[false,{\".review_sec .swiper-slide i\":false},[\"padding-left:0\"]],[false,{\".review_sec .swiper-slide i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-boxs\":false},[\"margin-bottom:8px\"]],[false,{\".reviewSwiper\":false},[\"padding-top:12px\"]],[false,{\".review_sec .swiper-slide p\":false},[\"padding-left:55px\"]],[false,{\".review_sec .title p\":false},[\"padding-left:0px\"]],[false,{\".review_sec .title p span\":false},[\"display:block\"]],[false,{\".review_sec2 .swiper-slide p:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:0px\"]],[true,\"}\"],[true,\"@media (max-width: 374px){\"],[true,{\"footer.footer-2022 .container\":true},[\"padding:0px 30px\"]],[true,\"}\"],[true,\"@media (max-width: 320px){\"],[true,{\"footer.footer-2022 .container\":true},[\"padding:0px 10px\"]],[true,\"}\"],[true,{\".footer-2022__copyright\":true},[\"letter-spacing:-.35px\"]],[false,{\".container-md\":false},[\"max-width:1272px\",\"margin:0 auto\",\"padding:0 20px\",\"width:90%\"]],[true,{\".footer-2022__menu--list h5:after\":true},[\"border-top:0px\",\"border-right:0\",\"border-left:0\"]],[true,\"@media (max-width: 768px){\"],[true,{\".footer-2022__menu--box\":true},[\"flex-direction:inherit\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[true,\"}\"],[true,\"@media (max-width: 767px){\"],[true,{\".footer-2022__box-end\":true},[\"letter-spacing:-.35px\"]],[true,{\".footer-2022__menu--box\":true},[\"flex-direction:column\"]],[false,{\".g-small-d-block\":false},[\"display:block\"]],[false,{\".g-small-d-none\":false},[\"display:none\"]],[false,{\".data-driven-application .swiper-button-next:after\":false},[\"display:block\"]],[false,{\".data-driven-application .swiper-button-prev:after\":false},[\"display:block\"]],[true,\"}\"],[true,\"@media (max-width: 767px){\"],[false,{\".container-md\":false},[\"width:100%\",\"padding:0 30px\"]],[false,{\".accordianNav .drop_arrow:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"z-index:0\",\"left:0\",\"top:0\",\"width:0\",\"height:100%\",\"background-color:#444\",\"background:rgba(244,244,244,.3)\",\"transition:all .3s ease-out\"]],[false,{\".accordianNav .drop_arrow:hover:before\":false,\".accordianNav .drop_arrow .active:before\":false},[\"width:2%\"]],[true,{\".footer-2022 .drop_arrow\":true},[\"position:relative\"]],[false,{\".drop_arrow.active h5\":false},[\"color:#fff\"]],[true,{\".footer-2022 .drop_arrow::before\":true},[\"content:\\\"\\\"\",\"width:6px\",\"height:6px\",\"border-bottom:2px solid #24c1ff\",\"border-right:2px solid #24c1ff\",\"float:right\",\"position:absolute\",\"top:12px\",\"right:0px\",\"transform:rotate(45deg)\",\"transform-origin:center\",\"transition:all .4s ease\"]],[false,{\".footer-2022 .drop_arrow.active::before\":false},[\"transform:rotate(225deg)\"]],[false,{\".footer-2022__menu--list .drop_arrow .active:after\":false},[\"transform:rotate(-135deg)\",\"border-color:#fff\"]],[true,{\".footer-2022__menu--list ul\":true},[\"margin-bottom:3rem\",\"display:none\"]],[false,{\".keeping-future ul\":false},[\"column-count:2\"]],[false,{\".applications-col li\":false},[\"font-size:14px\"]],[false,{\".data-driven-application .applications-col li\":false},[\"margin-bottom:24px\"]],[false,{\".applications-col li\":false},[\"padding-bottom:16px\",\"margin-bottom:16px\"]],[false,{\".custom-qout-box .review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".keeping-future ul li\":false},[\"margin-bottom:16px\",\"padding-bottom:16px\",\"font-size:14px\"]],[false,{\".review_sec .title p\":false},[\"font-size:14px\"]],[false,{\".keeping-you-competitive\":false},[\"padding:80px 0px 195px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-bottom:65px\",\"margin-top:-19%\"]],[false,{\".depending-text\":false},[\"text-align:center\",\"width:80%\",\"margin:0px auto 40px auto\"]],[false,{\".custom-qout-box\":false},[\"padding:40px 0px 80px\"]],[false,{\".native-applications-list\":false},[\"padding:80px 0px 50px\"]],[false,{\".native-applications-list .swiper-slide:nth-child(1) li:first-of-type\":false},[\"padding-right:80px\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:24px\",\"padding:0px 100px\"]],[false,{\".depending-img-box\":false},[\"width:100%\",\"text-align:center\"]],[false,{\".keeping-you-competitive p\":false},[\"font-size:14px\"]],[false,{\".keeping-future\":false},[\"margin-top:60px\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner:after\":false},[\"position:absolute\",\"bottom:0\",\"left:0\",\"content:\\\"\\\"\",\"width:30px\",\"height:30px\",\"background:#04061f\",\"transform:rotate(45deg)\",\"border-radius:2px\",\"margin-left:34px\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner.content_center\":false},[\"text-align:center\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner.content_center:after\":false},[\"margin:0px auto\",\"left:0px\",\"right:0px\"]],[false,{\".c-app-banner h2\":false},[\"font-size:32px\"]],[false,{\".c-app-banner p\":false},[\"font-size:16px\"]],[false,{\".infrastructure-sec .bg-img .full-img\":false},[\"height:500px\",\"object-fit:cover\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(1) ul li:last-child\":false},[\"border-bottom:#dbdbdb solid 1px\"]],[false,{\".reliability-engineers\":false},[\"width:100%\",\"border:#fff solid 1px\"]],[false,{\".fortune-box\":false},[\"flex-wrap:wrap\"]],[false,{\".tex-box\":false},[\"width:100%\",\"margin-top:15px\",\"margin-bottom:15px\"]],[false,{\".reliability-engineers p\":false},[\"line-height:15px\",\"margin:0px\"]],[false,{\".right-short-text\":false},[\"margin-left:0\",\"text-align:center\",\"width:100%\"]],[true,\"}\"],[false,\"@media (max-width: 575px){\"],[false,{\".container-md\":false},[\"padding:0 24px\"]],[false,{\".about-dev-ops .review_sec2:not(#_#_#_#_#_#_#_)\":false},[\"padding:20px 20px 25px 20px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"background-color:#f5f5f5\",\"margin-bottom:65px\",\"margin-top:-30%\"]],[false,{\".review_sec\":false},[\"padding:25px\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 200px\"]],[false,{\".depending-text p\":false},[\"font-size:16px\"]],[false,{\".lets-talk-box\":false},[\"padding:35px 0px 60px\",\"margin-top:-43%\"]],[false,{\".depending-text\":false},[\"width:96%\"]],[false,{\".lets-talk-box h3\":false},[\"padding:0px 45px\"]],[false,{\".clients-talk .btn-gradient\":false},[\"font-size:14px\",\"padding:16px 30px\"]],[false,{\".keeping-you-competitive:not(#_#_#_#_#_#_#_)\":false},[\"padding:80px 0px 160px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li\":false},[\"padding:5px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li a\":false},[\"font-size:14px\"]],[false,{\".review_sec::after\":false},[\"left:25px\"]],[false,{\".review_sec .swiper-slide i\":false},[\"margin:8px 0px 8px\",\"padding-right:10px\"]],[false,{\".review_sec .swiper-slide p\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform .txt p\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform:not(#_#_#_#_#_#_#_)\":false},[\"padding:65px 0px 120px 0px\"]],[false,{\".rebuild-and-replatform .txt label\":false},[\"margin-bottom:15px\"]],[false,{\".rebuild-and-replatform .heading-box h2\":false},[\"font-size:30px\",\"margin-bottom:30px\"]],[false,{\".rebuild-and-replatform .txt p:last-of-type\":false},[\"margin-bottom:55px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text p\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content.active\":false},[\"padding-bottom:40px\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec\":false},[\"padding:15px 0px 0px\"]],[false,{\".keeping-you-competitive .heading-box h2\":false},[\"font-size:30px\",\"margin-bottom:24px\"]],[false,{\".keeping-you-competitive .heading-box h2 br\":false},[\"display:none\"]],[false,{\".keeping-future ul li:nth-of-type(4)\":false},[\"order:11\",\"border:none\"]],[false,{\".keeping-future ul li:nth-of-type(8)\":false},[\"order:9\"]],[false,{\".keeping-future ul li\":false},[\"margin-bottom:10px\",\"padding-bottom:10px\"]],[false,{\".native-applications-list .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".clients-talk .btn-wrapper\":false},[\"width:132px\"]],[false,{\"section.custom-full-bg\":false},[\"display:none\"]],[false,{\".native-applications-list .heading-box label\":false},[\"letter-spacing:1.1px\"]],[false,{\".c-scroll-box\":false},[\"overflow:scroll\"]],[false,{\".c-scroll-box:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".scroll-img\":false},[\"width:250%\",\"position:relative\"]],[false,{\".scroll-img amp-img\":false,\".scroll-img amp-anim\":false},[\"max-width:unset\",\"width:100%\"]],[false,{\".scroll-img:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/sroll-l.png\\\")\",\"width:25px\",\"height:25px\",\"bottom:0\",\"margin:auto\",\"left:25%\"]],[false,{\".scroll-img::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/scroll-right.png\\\")\",\"width:25px\",\"height:25px\",\"bottom:0\",\"margin:auto\",\"right:27%\"]],[false,{\".journey-roadmap .scroll-img::after\":false,\".journey-roadmap .scroll-img::before\":false},[\"display:none\"]],[false,{\".native-data-driven-top\":false},[\"padding-top:80px\"]],[false,{\".native-data-driven-top .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".cost-effective-sec .review_sec .swiper-slide i:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".lets-talk-box\":false},[\"margin-top:-73%\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-bottom:65px\",\"margin-top:-54%\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner amp-img\":false,\"section.cp-tek-teams-isk.c-app-banner amp-anim\":false},[\"min-height:inherit\"]],[false,{\".c-app-banner .title\":false},[\"margin-bottom:14px\"]],[false,{\".c-app-banner p\":false},[\"font-size:16px\",\"padding-right:20px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-img\":false,\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-anim\":false},[\"max-width:185px\",\"object-fit:cover\",\"width:100%\",\"text-align:center\",\"display:block\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media (max-width: 360px){\"],[false,{\".lets-talk-box h3\":false},[\"padding:0px 26px\"]],[false,\"}\"],[true,{\"a\":true},[\"display:inline-block\"]],[true,{\"*\":true},[\"-webkit-box-sizing:border-box\",\"box-sizing:border-box\",\"margin:0\",\"padding:0\"]],[true,{\"amp-img\":true,\"amp-anim\":false},[\"max-width:100%\"]],[true,{\"a\":true},[\"text-decoration:none\"]],[false,{\".btn-blue\":false},[\"background-color:#24c1ff\",\"color:#152649\",\"border-radius:30px\",\"font-size:20px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding:15px 30px\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"border:1px solid #24c1ff\"]],[false,\"@media (max-width: 992px){\"],[false,{\".btn-blue\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".btn-blue\":false},[\"font-size:14px\",\"padding:15px 40px\"]],[false,\"}\"],[false,{\".btn-blue:hover\":false},[\"background-color:transparent\"]],[false,{\".btn-blue.dark-blue\":false},[\"background-color:#152649\",\"color:#24c1ff\",\"border:1px solid #152649\"]],[false,{\".btn-blue.dark-blue:hover\":false},[\"background-color:transparent\"]],[false,{\".btn-green\":false},[\"background-color:transparent\",\"border:1px solid #8bed78\",\"color:#8bed78\",\"border-radius:30px\",\"font-size:20px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding:15px 30px\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width: 992px){\"],[false,{\".btn-green\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".btn-green\":false},[\"font-size:14px\",\"padding:15px 40px\"]],[false,\"}\"],[false,{\".btn-green:hover\":false},[\"color:#152649\",\"background-color:#8bed78\"]],[false,{\".btn-gradient\":false},[\"background:-webkit-gradient(linear,left top,right top,color-stop(0,#28d9cb),to(#a0f266))\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"color:#152649\",\"border-radius:30px\",\"font-size:32px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding:15px 30px\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".btn-gradient:hover\":false},[\"background:-webkit-gradient(linear,right top,left top,color-stop(0,#28d9cb),to(#a0f266))\",\"background:linear-gradient(-90deg,#28d9cb 0,#a0f266 100%)\"]],[false,{\".heading-box label\":false},[\"font-size:18px\",\"color:#7080a7\",\"display:block\",\"margin-bottom:24px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"letter-spacing:1.8px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".heading-box label\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".heading-box label\":false},[\"font-size:14px\",\"letter-spacing:1.4px\",\"margin-bottom:16px\"]],[false,\"}\"],[false,{\".heading-box label i\":false},[\"margin-right:8px\"]],[false,{\".heading-box h2\":false},[\"color:#152649\",\"font-size:50px\",\"line-height:1\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\"]],[false,\"@media (max-width: 1377px){\"],[false,{\".keeping-future ul li\":false},[\"margin-right:43px\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".heading-box h2\":false},[\"font-size:45px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".heading-box h2\":false},[\"font-size:40px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".heading-box h2\":false},[\"font-size:32px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".heading-box h2\":false},[\"font-size:30px\"]],[false,\"}\"],[false,{\".heading-box h2 span\":false},[\"color:#24c1ff\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:80px\",\"text-align:center\",\"padding-top:60px\",\"padding-bottom:120px\",\"position:relative\",\"background-position:center bottom\",\"background-repeat:no-repeat\",\"background-size:cover\",\"min-height:500px\",\"max-height:55vh\"]],[false,\"@media (max-width: 480px){\"],[false,{\".cp-cloud-native-isk figure\":false},[\"max-width:24px\",\"margin:auto\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk p\":false},[\"color:#28d9cb\",\"font-size:16px\",\"letter-spacing:1.6px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"margin-top:15px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".cp-cloud-native-isk p\":false},[\"font-size:14px\",\"letter-spacing:1.4px\",\"margin-top:12px\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:60px\",\"color:#fff\",\"line-height:1\",\"font-family:Raleway,sans-serif\",\"margin-top:90px\",\"margin-bottom:30px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:50px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:40px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:32px\",\"line-height:34px\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk .btn\":false},[\"border:1px solid #28d9cb\",\"color:#28d9cb\",\"font-size:24px\",\"padding:7px 32px\",\"border-radius:30px\",\"background:transparent\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".cp-cloud-native-isk .btn\":false},[\"font-size:20px\",\"padding:10px 32px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".cp-cloud-native-isk .btn\":false},[\"font-size:14px\",\"padding:0px 32px\",\"font-weight:500\",\"width:210px\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk .btn:hover\":false},[\"background-color:#28d9cb\",\"color:#152649\"]],[false,{\".cp-cloud-native-isk .angle-down\":false},[\"position:absolute\",\"bottom:5px\",\"left:50%\",\"-webkit-transform:translateX(-50%)\",\"transform:translateX(-50%)\"]],[false,{\".cp-cloud-native-isk .angle-down a\":false},[\"font-size:15px\",\"color:#28d9cb\"]],[false,{\".custom-txt-img-sec\":false},[\"padding-top:140px\",\"padding-bottom:120px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".custom-txt-img-sec\":false},[\"padding-top:60px\",\"padding-bottom:60px\"]],[false,{\".heading-box h2\":false},[\"font-size:35px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .cutsom-hide-text\":false},[\"display:none\"]],[false,{\".custom-txt-img-sec .cutsom-hide-text p\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.5\",\"font-family:raleway,sans-serif\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-txt-img-sec\":false},[\"padding:50px 0 30px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:calc(50.5% - 81px)\",\"margin-right:81px\"]],[true,\"@media (max-width: 1024px){\"],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:50%\"]],[true,{\".new-header__nav--title h5\":true},[\"font-size:25px\",\"line-height:1.2\"]],[false,{\".keeping-future ul li\":false},[\"width:24%\"]],[false,{\".keeping-future ul li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-right:29px\"]],[false,{\".keeping-you-competitive\":false},[\"padding-bottom:165px\"]],[false,{\".rebuild-and-replatform\":false},[\"padding:120px 0px 120px 0px\"]],[true,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:100%\",\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt label\":false},[\"margin-bottom:24px\"]],[false,\"@media (max-width: 767px){\"],[false,{\"section.custom-txt-img-sec.c-application-development\":false},[\"position:relative\",\"z-index:1\"]],[false,{\".custom-txt-img-sec .custom-img figure amp-img\":false,\".custom-txt-img-sec .custom-img figure amp-anim\":false,\".custom-txt-img-sec .custom-img figure\":false},[\"width:100%\",\"mix-blend-mode:multiply\"]],[false,{\".custom-txt-img-sec .custom-txt label\":false},[\"margin-bottom:20px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-img\":false},[\"max-width:250px\",\"margin-left:auto\",\"width:100%\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"color:#152649\",\"margin-bottom:40px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"font-size:38px\"]],[false,{\".contact-tek-teams.custom-txt-img-sec .custom-txt h2\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"font-size:27px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"padding-right:0\"]],[false,{\".keeping-future ul\":false},[\"font-size:20px\"]],[false,{\".keeping-future ul li\":false},[\"width:47%\"]],[false,{\".keeping-future ul li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-right:0px\"]],[false,{\".keeping-future ul li:nth-child(11)\":false},[\"border-bottom:#16365c solid 1px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"margin-bottom:0px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt h2 span\":false},[\"color:#24c1ff\"]],[false,{\".tek-world-scale .custom-txt h2 span\":false},[\"color:#28d9cb\"]],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.5\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"@media (min-width: 1280px) and (max-width: 1680px){\"],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".c-application-development .custom-txt p span\":false,\".custom-txt-img-sec .custom-txt p\":false},[\"color:#152649\"]],[false,{\".c-application-development .custom-txt p\":false},[\"color:#707070\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"margin-bottom:25px\"]],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".contact-tek-teams .custom-img p\":false},[\"margin-bottom:30px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt .btn-blue\":false},[\"margin-top:48px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-txt-img-sec .custom-txt .btn-blue\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-img\":false},[\"width:calc(49.5% - 81px)\",\"margin-left:81px\",\"display:flex\",\"align-items:center\"]],[false,{\".custom-txt-img-sec .custom-img figure amp-img\":false,\".custom-txt-img-sec .custom-img figure amp-anim\":false,\".custom-txt-img-sec .custom-img figure\":false},[\"width:100%\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:calc(50.5% - 40px)\",\"margin-right:40px\"]],[false,{\".custom-txt-img-sec .custom-img\":false},[\"width:calc(49.5% - 40px)\",\"margin-left:40px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-txt-img-sec .custom-img\":false},[\"width:100%\",\"max-width:500px\",\"margin:25px auto 0\"]],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"margin-right:0\"]],[false,{\".custom-txt-img-sec .custom-txt:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".text-grey-box p:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".text-grey-box\":false},[\"margin-bottom:2px\"]],[false,{\".review_sec2 i\":false},[\"font-weight:500\"]],[false,{\".review_sec2 i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\",\"color:#152649\"]],[false,{\"section.custom-full-bg.journey-roadmap .container-md\":false},[\"padding:0px\"]],[false,{\".journey-roadmap-header\":false},[\"padding:0px 24px\"]],[false,{\".journey-roadmap-header\":false},[\"flex-wrap:wrap\"]],[false,{\".journey-roadmap-header .heading-box\":false},[\"width:100%\",\"text-align:center\",\"margin-bottom:32px\"]],[false,{\".journey-roadmap-header .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".journey-roadmap-logo\":false},[\"width:65%\",\"margin:0px auto\",\"margin-bottom:24px\"]],[false,{\".devops-services\":false},[\"padding:80px 0px 50px\",\"background-color:#f1f1f1\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:14px\"]],[false,{\".devops-services .applications-col h5\":false},[\"padding-left:31px\"]],[false,{\".devops-services .applications-col h5::before\":false},[\"margin-top:2px\"]],[false,{\".mrdata-logo\":false},[\"left:0\",\"top:-55px\",\"bottom:auto\",\"justify-content:center\",\"right:0\"]],[false,{\".reliability-engineers\":false},[\"text-align:center\"]],[false,{\".reliability-engineers:not(#_#_#_#_#_#_#_)\":false},[\"padding:85px 27px 40px 27px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-197px\"]],[false,{\".kubernetes-sec .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".kubernetes-sec .custom-txt p:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".kubernetes-sec .custom-txt p span\":false},[\"font-weight:500\"]],[false,{\".kubernetes-sec .custom-txt p br\":false},[\"display:none\"]],[false,{\".kubernetes-sec .heading-box h2\":false},[\"margin-bottom:24px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:192px 0px 104px 0px\"]],[false,{\".col-row ul\":false},[\"column-count:1\"]],[false,{\".col-row ul li\":false},[\"font-size:16px\",\"margin-bottom:15px\"]],[false,{\".cost-effective-sec .inner\":false},[\"flex-wrap:wrap\"]],[false,{\".cost-effective-sec .left-text\":false,\".cost-effective-sec .custom-txt\":false},[\"width:100%\"]],[false,{\".infrastructure-sec .heading-box h2\":false,\".cost-effective-sec .heading-box h2\":false},[\"margin-bottom:32px\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:30px\"]],[false,{\".cost-effective-sec .heading-box h2 span\":false},[\"display:inline\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col\":false},[\"padding-bottom:15px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".infrastructure-sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-190px\"]],[false,\"}\"],[false,{\".custom-colm-sec\":false},[\"background-color:#f1f1f1\",\"padding:120px 0\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".custom-colm-sec\":false},[\"padding:60px 0\"]],[false,{\".custom-txt-img-sec .custom-txt .btn-blue\":false},[\"margin-top:30px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".custom-colm-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"margin:45px -10px 40px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .inner\":false},[\"margin:40px -8px 20px\"]],[false,\"}\"],[false,{\".custom-colm-sec .slick-list\":false},[\"padding-bottom:20px\"]],[false,{\".custom-colm-sec .slick-track:not(#_#_#_#_#_#_#_)\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".custom-colm-sec .colm\":false},[\"border-radius:16px\",\"-webkit-box-shadow:0 8px 16px rgba(0,0,0,.1)\",\"box-shadow:0 8px 16px rgba(0,0,0,.1)\",\"width:calc(33.33% - 14px)\",\"background-color:#fff\",\"margin-right:10px\",\"margin-left:10px\",\"position:relative\"]],[false,{\".custom-colm-sec .colm:not(#_#_#_#_#_#_#_)\":false},[\"height:inherit\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-colm-sec .colm\":false},[\"display:flex\",\"flex-direction:column\",\"justify-content:space-between\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm\":false},[\"margin:0 8px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm:last-of-type\":false},[\"margin-right:0\"]],[false,{\".custom-colm-sec .colm .img-box amp-img\":false,\".custom-colm-sec .colm .img-box amp-anim\":false},[\"border-radius:16px\"]],[false,{\".custom-colm-sec .colm .txt-box\":false},[\"padding:22px 40px 20px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".custom-colm-sec .colm .txt-box\":false},[\"padding:20px 20px 20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box\":false},[\"padding:16px 13px 20px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:32px\",\"line-height:1\",\"color:#24c1ff\",\"margin-bottom:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:27px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:24px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:22px\",\"margin-bottom:11px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm .txt-box p\":false},[\"font-size:18px\",\"color:#707070\",\"line-height:1.6\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-colm-sec .colm .txt-box p\":false},[\"font-size:16px\",\"line-height:22px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box p\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm .txt-box .see-more\":false},[\"position:absolute\",\"font-size:22px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#152649\",\"text-decoration:underline\",\"line-height:1.5\",\"font-weight:bold\",\"right:40px\",\"bottom:27px\"]],[false,{\".custom-colm-sec .colm .txt-box .see-more:hover\":false},[\"color:#24c1ff\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-colm-sec .colm .txt-box .see-more\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box .see-more\":false},[\"font-size:16px\",\"bottom:20px\"]],[false,\"}\"],[false,{\".custom-colm-sec .btn-wrapper\":false},[\"text-align:center\"]],[false,{\".custom-colm-sec .btn-wrapper .btn\":false},[\"margin-top:48px\"]],[false,{\".demand-sec\":false},[\"padding-top:240px\",\"padding-bottom:200px\",\"text-align:center\",\"text-align:center\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/imagem_scale.png\\\")\",\"background-repeat:no-repeat\",\"background-size:100% 100%\",\"position:relative\",\"background-attachment:fixed\"]],[false,{\"section.demand-sec:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"height:100%\",\"width:100%\",\"background:#39dcce\",\"background-color:rgba(57,220,206,.1)\",\"top:0\",\"left:0\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".demand-sec\":false},[\"padding-top:150px\",\"padding-bottom:150px\"]],[false,\"}\"],[false,{\".demand-sec .btn-blue.dark-blue\":false},[\"color:#f7f7f7\"]],[false,{\".demand-sec .colm:nth-child(3) p\":false},[\"padding:0px 35px\"]],[false,{\".demand-sec .btn-blue.dark-blue:hover\":false},[\"color:#152649\"]],[false,{\"section.demand-sec .inner .slick-track\":false},[\"display:flex\"]],[false,{\"section.demand-sec .inner .slick-list\":false},[\"display:flex\"]],[false,\"@media (max-width: 992px){\"],[false,{\".demand-sec\":false},[\"padding:120px 0\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".demand-sec\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".demand-sec .heading-box\":false},[\"padding-bottom:45px\"]],[false,{\".demand-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".demand-sec .inner .slick-dots\":false},[\"position:absolute\",\"right:-5px\",\"top:50%\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\"]],[false,{\".demand-sec .inner .slick-slider .slick-list\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".demand-sec .inner .slick-slider .slick-track\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".demand-sec .inner .slick-dots li\":false},[\"list-style-type:none\",\"height:70px\",\"width:3px\",\"margin:4px 0\"]],[false,{\".demand-sec .inner .slick-dots li.slick-active button\":false},[\"background:linear-gradient(90deg,#23f2e2 0,#93f150 100%)\",\"outline:none\"]],[false,{\".demand-sec .inner .slick-dots li button\":false},[\"width:100%\",\"height:100%\",\"background-color:#fff\",\"border-radius:2px\",\"font-size:0\",\"border:none\",\"outline:none\"]],[false,{\".demand-sec .inner .slick-slide amp-img\":false,\".demand-sec .inner .slick-slide amp-anim\":false},[\"margin:0px auto\"]],[false,{\".demand-sec .colm\":false},[\"width:30%\",\"position:relative\",\"margin-bottom:40px\",\"display:flex\",\"flex-direction:column\"]],[false,\"@media (max-width: 992px){\"],[false,{\".demand-sec .colm\":false},[\"width:32%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".demand-sec .colm\":false},[\"width:100%\",\"padding-bottom:10px\"]],[false,\"}\"],[false,{\".demand-sec .colm figure\":false},[\"margin-bottom:50px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".demand-sec .colm figure\":false},[\"max-width:110px\",\"margin:0 auto 50px\"]],[false,\"}\"],[false,{\".demand-sec .colm h4\":false},[\"margin-bottom:18px\",\"font-size:30px\",\"line-height:1\",\"color:#152649\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".demand-sec .colm h4\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".demand-sec .colm p\":false},[\"color:#152649\",\"line-height:1.6\",\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"padding:0px 21px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".demand-sec .colm p\":false},[\"padding:0px 6px\"]],[false,{\".demand-sec .colm:nth-child(3) p\":false},[\"padding:0px 6px\"]],[false,{\".demand-sec .btn-blue.dark-blue\":false},[\"color:#f7f7f7\",\"padding:15px 30px\",\"font-size:15px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".demand-sec .btn-blue.dark-blue\":false},[\"padding:15px 29px\",\"font-size:11px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:14px\",\"padding:0px 25px\"]],[false,\"}\"],[false,{\".demand-sec .colm .btn-wrapper\":false},[\"margin:auto 0 0 0\"]],[false,{\".demand-sec .colm .btn-wrapper a\":false},[\"line-height:normal\"]],[false,\"@media (max-width: 767px){\"],[false,{\".demand-sec .colm .btn-wrapper\":false},[\"position:inherit\",\"bottom:inherit\",\"margin-top:40px\"]],[false,\"}\"],[false,{\".ecosystem-sec\":false},[\"padding:200px 0 240px\",\"background-color:#f9f9f9\"]],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec\":false},[\"padding:100px 0 150px\",\"background-color:#f9f9f9\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\"section.ecosystem-sec .slick-track:not(#_#_#_#_#_#_#_#_)\":false},[\"display:flex\"]],[false,{\".ecosystem-sec .inner .slick-slide:not(#_#_#_#_#_#_#_)\":false},[\"height:inherit\"]],[false,\"}\"],[false,\"@media (min-width: 620px) and (max-width: 767px){\"],[false,{\"section.ecosystem-sec .inner .slick-list\":false},[\"padding-right:180px\"]],[false,{\"section.ecosystem-sec .inner .inner-colm .slick-list\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner .inner-colm amp-img\":false,\".ecosystem-sec .inner .inner-colm amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec .inner .inner-colm amp-img\":false,\".ecosystem-sec .inner .inner-colm amp-anim\":false},[\"width:55%\",\"margin:auto\"]],[false,\"}\"],[false,\"@media (max-width: 766px){\"],[false,{\".ecosystem-sec .inner .inner-colm amp-img\":false,\".ecosystem-sec .inner .inner-colm amp-anim\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"font-size:24px\",\"font-weight:bold\",\"color:#1d2848\",\"margin-bottom:20px\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"font-size:20px\",\"margin-bottom:5px\"]],[false,\"}\"],[false,\"@media (min-width: 480px) and (max-width: 580px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"display:inline-block\",\"float:right\",\"vertical-align:middle\",\"margin-top:18px\",\"width:70px\",\"position:absolute\",\"right:0px\",\"top:0px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:18px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:23px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:-16px\"]],[false,{\".ecosystem-sec .inner\":false},[\"padding:150px 0 100px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec\":false},[\"padding:120px 0 0\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:20px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec\":false},[\"padding:80px 0 0\"]],[false,\"}\"],[false,{\".ecosystem-sec .heading-box\":false},[\"padding-bottom:75px\",\"text-align:center\"]],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .heading-box\":false},[\"padding-bottom:0px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .heading-box\":false},[\"padding-bottom:0\",\"text-align:left\",\"position:relative\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false},[\"width:68%\",\"position:relative\",\"margin-top:0px\",\"margin-bottom:22px\",\"float:left\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:35px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:28px\",\"width:50px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(5) .inner-colm .back-slide .icon\":false},[\"margin-top:32px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5) .inner-colm .back-slide .icon\":false},[\"margin-top:26px\",\"width:50px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .front-slide p\":false},[\"padding-right:40px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .front-slide p\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(1) .inner-colm .back-slide .left-img\":false},[\"display:none\"]],[false,{\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"float:left\",\"width:60%\",\"position:relative\",\"margin-top:0px\",\"margin-bottom:20px\"]],[false,{\".ecosystem-sec .heading-box h2\":false},[\"color:#28d9cb\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .heading-box h2\":false},[\"width:calc(100% - 118px)\"]],[false,{\".ecosystem-sec .colm .back-slide .left-img\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (min-width: 300px) and (max-width: 340px){\"],[false,{\".ecosystem-sec .heading-box h2\":false},[\"font-size:22px\"]],[false,\"}\"],[false,{\".ecosystem-sec .heading-box figure\":false},[\"display:none\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .heading-box figure\":false},[\"display:block\",\"position:absolute\",\"bottom:0\",\"right:20px\",\"max-width:115px\"]],[false,\"}\"],[false,\"@media (min-width: 300px) and (max-width: 340px){\"],[false,{\".ecosystem-sec .heading-box figure\":false},[\"bottom:-31px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"position:relative\",\"padding:150px 0 100px\",\"z-index:1\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .inner\":false},[\"padding:150px 70px 100px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .inner\":false},[\"padding:150px 0px 100px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .inner\":false},[\"padding:40px 0 80px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner::before\":false},[\"content:\\\"\\\"\",\"width:67%\",\"height:52%\",\"position:absolute\",\"border:1px solid #24c1ff\",\"left:16.5%\",\"top:23%\",\"z-index:-1\"]],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec.slick-list\":false},[\"padding:20px 0\"]],[false,{\".ecosystem-sec .inner::before\":false},[\"display:none\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm\":false},[\"border-radius:16px\",\"-webkit-box-shadow:8px 16px 32px rgba(0,0,0,.1)\",\"box-shadow:8px 16px 32px rgba(0,0,0,.1)\",\"background-color:#fff\",\"padding:25px 40px 25px 40px\",\"margin-bottom:40px\",\"width:30.2%\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"margin-bottom:30px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-bottom:30px\",\"width:32%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm\":false},[\"-webkit-box-shadow:0px 0px 5px rgba(0,0,0,.1)\",\"box-shadow:0px 0px 5px rgba(0,0,0,.1)\",\"width:32%\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .inner-colm .slick-track\":false},[\"display:flex\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"height:inherit\",\"padding-bottom:30px\",\"padding-top:10px\",\"display:flex\",\"flex-direction:column\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"height:inherit\",\"padding-bottom:30px\",\"padding-top:25px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"margin-top:auto\",\"position:relative\",\"top:28px\",\"max-width:180px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more:not(#_#_#_#_#_#_#_)\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false},[\"bottom:6px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm\":false},[\"padding:30px\"]],[false,\"}\"],[false,\"@media (max-width: 1100px){\"],[false,{\".ecosystem-sec .colm\":false},[\"padding:30px 20px\",\"width:31.5%\"]],[false,\"}\"],[false,\"@media (max-width: 1100px){\"],[false,{\".ecosystem-sec .colm\":false},[\"padding:15px 20px\",\"width:31.5%\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-left:10px\",\"margin-right:10px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-left:4px\",\"margin-right:4px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-53%)\",\"transform:translateY(-53%)\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-57%)\",\"transform:translateY(-57%)\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-55%)\",\"transform:translateY(-55%)\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-54%)\",\"transform:translateY(-54%)\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:unset\",\"transform:unset\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:translateY(55%)\",\"transform:translateY(55%)\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:translateY(51%)\",\"transform:translateY(51%)\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:translateY(50%)\",\"transform:translateY(50%)\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:unset\",\"transform:unset\"]],[false,\"}\"],[false,\"@media (min-width: 993px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"position:absolute\",\"left:0\",\"right:0\",\"top:49.5%\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\",\"margin-left:auto\",\"margin-right:auto\",\"width:28%\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:30%\"]],[false,\"@media (min-width: 1920px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:30%\"]],[false,\"}\"],[false,\"@media (min-width: 1440px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (min-width: 993px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"display:none\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"color:#152649\",\"font-size:20px\",\"line-height:1.2\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false,\".ecosystem-sec .colm h5:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:15px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:17px\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false,\".ecosystem-sec .colm h5:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm h4\":false},[\"font-size:24px\",\"padding-right:110px\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:25px\"]],[false,{\".ecosystem-sec .slick-track\":false},[\"display:flex\"]],[false,{\".ecosystem-sec .slick-track .slick-slide\":false},[\"height:inherit\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec .colm h4\":false},[\"font-size:20px\",\"padding-right:35px\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:30px\"]],[false,\"}\"],[false,\"@media (max-width: 380px){\"],[false,{\".ecosystem-sec .colm h4\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm h4\":false},[\"margin-bottom:30px\",\"font-weight:bold\"]],[false,{\".ecosystem-sec .colm h5\":false},[\"font-weight:900\",\"margin-top:50px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".ecosystem-sec .colm h5\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm p\":false},[\"font-size:16px\",\"line-height:1.5\",\"color:#707070\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"padding-top:0px\",\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm h5\":false},[\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm\":false},[\"height:fit-content\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm p b\":false},[\"font-size:13px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm p b\":false},[\"color:#24c1ff\",\"font-weight:bold\"]],[false,\"@media (min-width: 768px) and (max-width: 992px){\"],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:51px\"]],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm p b\":false},[\"color:#707070\"]],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 375px){\"],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .back-slide\":false},[\"position:relative\"]],[false,{\".ecosystem-sec .colm .back-slide h6\":false},[\"font-size:14px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#28d9cb\",\"margin-bottom:10px\"]],[false,{\".ecosystem-sec .colm .back-slide .left-img\":false},[\"max-width:190px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .right-img\":false},[\"margin-bottom:5px\",\"margin-top:15px\"]],[false,{\".ecosystem-sec .colm .back-slide .right-img\":false},[\"max-width:70px\",\"position:absolute\",\"bottom:60px\",\"right:0px\"]],[false,{\".ecosystem-sec .colm .back-slide p\":false},[\"max-width:100%\",\"display:inline-block\"]],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide p\":false},[\"max-width:calc(100% - 90px)\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide p\":false},[\"max-width:calc(100% - 67px)\"]],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide .right-img\":false},[\"margin:0px\"]],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide .right-img amp-img\":false,\".ecosystem-sec .colm:nth-child(2) .back-slide .right-img amp-anim\":false},[\"width:70%\",\"margin-left:auto\",\"margin-top:0\",\"top:0\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"color:#28d9cb\",\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:900\",\"margin-top:0px\",\"display:block\",\"text-decoration:underline\"]],[false,{\".ecosystem-sec .colm:nth-child(3) .back-slide .back_heading\":false,\".ecosystem-sec .colm:nth-child(6) .back-slide .back_heading\":false},[\"text-align:left\",\"width:75%\",\"float:right\"]],[false,{\".ecosystem-sec .colm:nth-child(3) .back-slide .icon\":false,\".ecosystem-sec .colm:nth-child(6) .back-slide .icon\":false},[\"float:left\",\"margin-top:18px\"]],[false,{\".ecosystem-sec .colm:nth-child(3) .back-slide .icon\":false},[\"margin-top:10px\"]],[false,{\".ecosystem-sec .colm .slick-dots\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"position:absolute\",\"right:25px\",\"bottom:11px\",\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm .slick-dots li\":false},[\"list-style-type:none\",\"width:4px\",\"height:4px\",\"margin:0 5px\"]],[false,{\".ecosystem-sec .colm .slick-dots li button\":false},[\"display:block\",\"width:100%\",\"height:100%\",\"border-radius:50%\",\"background-color:#c9c9c9\",\"border:none\",\"font-size:0\"]],[false,{\".ecosystem-sec .colm .slick-dots li.slick-active\":false},[\"width:8px\",\"height:8px\"]],[false,{\".ecosystem-sec .colm .slick-dots li.slick-active button\":false},[\"background-color:#28d9cb\"]],[false,{\".ecosystem-sec .colm .slick-arrow\":false},[\"border:none\",\"bottom:11px\",\"position:absolute\",\"background:transparent\",\"z-index:2\",\"cursor:pointer\",\"height:13px\"]],[false,{\".ecosystem-sec .colm .slick-arrow.slick-disabled\":false},[\"opacity:0\",\"visibility:hidden\"]],[false,{\".ecosystem-sec .colm .slick-arrow i\":false},[\"color:#28d9cb\"]],[false,{\".ecosystem-sec .colm .slick-arrow.slick-prev\":false},[\"right:90px\"]],[false,{\".ecosystem-sec .colm .slick-arrow.slick-next\":false},[\"right:0\"]],[false,{\".partner-sec\":false},[\"background-color:#152649\",\"text-align:center\",\"padding:0px 0 240px\",\"position:relative\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".partner-sec\":false},[\"padding:0px 0 120px\"]],[false,\"}\"],[false,{\".bg-img\":false},[\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".partner-sec\":false},[\"padding:0px 0 90px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".partner-sec\":false},[\"padding:0px 0 85px\"]],[false,\"}\"],[false,{\".back-slide .partner-sec .bg-img\":false},[\"position:absolute\",\"top:0\",\"width:100%\"]],[false,{\".partner-sec .bg-img::before\":false},[\"content:\\\"\\\"\",\"width:100%\",\"height:265px\",\"position:absolute\",\"left:0\",\"bottom:-3px\",\"background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(21,38,73,0)),to(#152649))\",\"background-image:linear-gradient(rgba(21,38,73,0),#152649)\"]],[false,{\".partner-sec .container-md\":false},[\"margin-top:-140px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".partner-sec .bg-img::before\":false},[\"height:165px\"]],[false,\"}\"],[false,{\".partner-sec .bg-img .for-desktop\":false},[\"display:block\"]],[false,{\"figure.for-desktop amp-img\":false,\"figure.for-desktop amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".partner-sec .bg-img .for-desktop\":false},[\"display:none\"]],[false,\"}\"],[false,{\".partner-sec .bg-img .for-mobile\":false},[\"display:none\",\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".partner-sec .bg-img .for-mobile\":false},[\"display:block\"]],[false,\"}\"],[false,{\".partner-sec .bg-img .for-mobile amp-img\":false,\".partner-sec .bg-img .for-mobile amp-anim\":false},[\"width:100%\"]],[false,{\".partner-sec .heading-box\":false},[\"padding-bottom:90px\",\"z-index:1\",\"position:relative\"]],[false,{\".partner-sec .heading-box h2\":false},[\"color:#fff\",\"max-width:600px\",\"margin:auto\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".partner-sec .heading-box h2\":false},[\"max-width:455px\"]],[false,\"}\"],[false,{\".partner-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".partner-sec .slick-track:not(#_#_#_#_#_#_#_)\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".partner-sec .slick-arrow\":false},[\"background:transparent\",\"color:#24c1ff\",\"border:none\",\"font-size:20px\",\"position:absolute\",\"top:calc(50% - 11px)\",\"z-index:1\"]],[false,{\".partner-sec .slick-arrow.slick-disabled\":false},[\"opacity:0\",\"visibility:hidden\"]],[false,{\".partner-sec .slick-arrow.slick-prev\":false},[\"left:0\"]],[false,{\".partner-sec .slick-arrow.slick-next\":false},[\"right:0\"]],[false,{\".partner-sec .colm\":false},[\"width:33.33%\",\"padding:0 40px\",\"border-right:1px solid rgba(112,128,167,.3)\"]],[false,{\".partner-sec .colm:not(#_#_#_#_#_#_#_)\":false},[\"height:inherit\"]],[false,\"@media (max-width: 992px){\"],[false,{\".partner-sec .colm\":false},[\"padding:0 20px\"]],[false,\"}\"],[false,\"@media (max-width: 540px){\"],[false,{\".partner-sec .colm\":false},[\"border-right:none\",\"padding:0\"]],[false,\"}\"],[false,{\".partner-sec .colm:last-of-type\":false},[\"border-right:none\"]],[false,{\".partner-sec .colm h6\":false},[\"font-size:20px\",\"line-height:1\",\"color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"min-height:64px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".partner-sec .colm h6\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".partner-sec .colm figure\":false},[\"margin:40px 0\"]],[false,{\".partner-sec .colm figure amp-img\":false,\".partner-sec .colm figure amp-anim\":false},[\"margin:auto\"]],[false,{\".partner-sec .colm p\":false},[\"font-size:16px\",\"line-height:22px\",\"color:#7080a7\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\"]],[false,{\".solution-sec\":false},[\"padding:240px 0\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".solution-sec\":false},[\"padding:130px 0\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec\":false},[\"padding:100px 0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec\":false},[\"background-color:#24c1ff\",\"padding:57px 18px 80px\"]],[false,\"}\"],[false,{\".solution-sec .heading-box\":false},[\"margin-bottom:47px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .heading-box label\":false},[\"color:#fff\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper table\":false},[\"width:100%\",\"border-collapse:collapse\"]],[false,{\".solution-sec .table-wrapper #data-more-btn\":false},[\"background:no-repeat\",\"border:none\",\"margin:0px auto\",\"display:block\",\"font-weight:bold\",\"color:#152649\",\"position:relative\",\"padding:0px 15px\"]],[false,{\".solution-sec .table-wrapper #data-more-btn::after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0px\",\"right:0\",\"width:6px\",\"height:6px\",\"bottom:0\",\"margin:auto\",\"transform:rotate(45deg)\",\"border:#152649 solid 2px\",\"border-left:0px\",\"border-top:0px\"]],[false,{\".solution-sec .table-wrapper table .accor-toggle-btn\":false},[\"position:absolute\",\"right:0px\",\"top:0\",\"width:8px\",\"height:8px\",\"border:#152649 solid 2px\",\"transform:rotate(45deg)\",\"border-top:none\",\"border-left:none\",\"display:none\",\"margin-top:10px\"]],[false,{\"span.accor-toggle-btn.active:not(#_#_#_#_#_#_#_#_)\":false},[\"transform:rotate(-135deg)\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper tr\":false},[\"display:flex\",\"flex-wrap:wrap\",\"border-top:1px solid #f1f1f1\",\"padding:15px 0\"]],[false,{\".solution-sec .table-wrapper tr td\":false},[\"display:block\",\"width:100%\"]],[false,{\".solution-sec .table-wrapper tr.table-head\":false},[\"display:none\"]],[false,{\".solution-sec .table-wrapper td:nth-child(1)\":false},[\"order:1\"]],[false,{\".solution-sec .table-wrapper td:nth-child(3)\":false},[\"order:2\"]],[false,{\".solution-sec .table-wrapper td:nth-child(2)\":false},[\"order:3\"]],[false,{\".solution-sec .table-wrapper table .accor-toggle-btn\":false},[\"display:block\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#152649\",\"line-height:1.16\",\"border-bottom:1px solid #c9c9c9\",\"text-align:left\"]],[false,{\".solution-sec .accor-wrapper th\":false,\".solution-sec .accor-wrapper td\":false},[\"border:none\"]],[false,{\".solution-sec .table-wrapper th:not(:first-of-type)\":false,\".solution-sec .table-wrapper td:not(:first-of-type)\":false},[\"padding-left:20px\"]],[false,{\".solution-sec .table-wrapper td:nth-child(4)\":false,\".solution-sec .table-wrapper td:nth-child(2)\":false,\".solution-sec .table-wrapper td:nth-child(3)\":false},[\"font-weight:bold\"]],[false,\"@media (min-width:767px){\"],[false,{\".solution-sec .accor-wrapper tr td:not(#_#_#_#_#_#_#_#_)\":false},[\"width:31%\",\"padding-left:0px\"]],[false,{\".solution-sec .accor-wrapper tr td:nth-last-child(1):not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:10px\"]],[false,\"}\"],[false,\"@media (min-width: 1280px) and (max-width: 1350px){\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec .table-wrapper th:not(:first-of-type)\":false,\".solution-sec .table-wrapper td:not(:first-of-type)\":false},[\"padding-left:15px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper th:not(:first-of-type)\":false,\".solution-sec .table-wrapper td:not(:first-of-type)\":false},[\"padding-left:0\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"font-size:14px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"border:none\",\"text-align:right\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper th\":false},[\"font-weight:bold\",\"padding:0 0 32px 0\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper th\":false},[\"display:none\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td\":false},[\"font-weight:500\",\"padding:16px 0\",\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td\":false},[\"display:block\",\"padding:5px 0\",\"position:relative\"]],[false,{\".solution-sec .table-wrapper table tbody tr td:nth-child(1)::before\":false},[\"display:none\"]],[false,{\".solution-sec .table-wrapper table tbody tr .accor-wrapper td:nth-child(1)::before\":false},[\"display:block\"]],[false,{\".solution-sec .table-wrapper td::before\":false},[\"content:attr(data-th)\",\"position:absolute\",\"left:0\",\"color:#152649\",\"font-weight:bold\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td.sometimes\":false},[\"color:#7080a7\",\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td.sometimes\":false},[\"color:#5970a8\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td.rare\":false},[\"color:#ff555f\",\"font-weight:bold\"]],[false,{\".solution-sec .table-wrapper td.always\":false},[\"color:#28d9cb\",\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td.always\":false},[\"color:#fff\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td:last-of-type\":false},[\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td:last-of-type:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".solution-sec .table-wrapper tr .accor-wrapper tr\":false},[\"border:none\",\"padding-top:0px\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td:last-of-type amp-img\":false,\".solution-sec .table-wrapper td:last-of-type amp-anim\":false},[\"width:23px\",\"margin-right:7px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td:last-of-type amp-img\":false,\".solution-sec .table-wrapper td:last-of-type amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td:first-of-type\":false},[\"width:35%\"]],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec .table-wrapper td:first-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td:first-of-type\":false},[\"width:100%\",\"text-align:revert\",\"font-weight:500\",\"padding-right:25px\"]],[false,{\".solution-sec .table-wrapper .accor-wrapper table tr td\":false},[\"padding-right:0px\",\"width:100%\"]],[false,\"}\"],[false,{\".future-vision-sec\":false},[\"background-color:#f9f9f9\",\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec\":false},[\"padding:0\",\"padding-bottom:190px\"]],[false,\"}\"],[false,{\".future-vision-sec .inner-vision-sec\":false},[\"background-color:#062b43\",\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .inner-vision-sec\":false},[\"padding:0\"]],[false,\"}\"],[false,{\".future-vision-sec .bg-img\":false},[\"position:relative\",\"width:39%\"]],[false,\"@media (max-width: 1800px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(18% + 45px)\",\"margin-right:-45px\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:35%\"]],[false,\"}\"],[false,\"@media (max-width: 1680px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:37%\"]],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(17% + 50px)\",\"margin-right:-50px\",\"z-index:1\"]],[false,\"}\"],[false,\"@media (max-width: 1536px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:35%\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:30%\",\"height:100%\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:286px\"]],[false,{\".future-vision-sec .bg-img amp-img\":false,\".future-vision-sec .bg-img amp-anim\":false},[\"object-fit:cover\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"position:inherit\",\"width:100%\",\"max-width:inherit\",\"margin:auto\",\"margin-bottom:-160px\"]],[false,\"}\"],[false,{\".future-vision-sec .bg-img amp-img\":false,\".future-vision-sec .bg-img amp-anim\":false},[\"width:100%\",\"height:100%\"]],[false,{\".future-vision-sec .bg-img::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"bottom:0\",\"width:100%\",\"height:256px\",\"background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(4,40,63,0)),to(#042941))\",\"background-image:linear-gradient(rgba(4,40,63,0),#042941)\",\"left:0\",\"display:none\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .bg-img::before\":false},[\"display:block\"]],[false,\"}\"],[false,{\".future-vision-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"position:relative\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .inner\":false},[\"height:460px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .inner\":false},[\"height:auto\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:45%\",\"padding-right:8%\"]],[false,\"@media (max-width: 1536px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"padding-right:7%\"]],[false,\"}\"],[false,{\".container-spacial\":false},[\"padding-left:17%\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".container-spacial\":false},[\"padding-left:12%\"]],[false,\"}\"],[false,\"@media (max-width: 1536px){\"],[false,{\".container-spacial\":false},[\"padding-left:9%\"]],[false,\"}\"],[false,\"@media (max-width: 1440px){\"],[false,{\".container-spacial\":false},[\"padding-left:7%\"]],[false,\"}\"],[false,\"@media (max-width: 1800px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:47%\"]],[false,\"}\"],[false,\"@media (max-width: 1440px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:50%\",\"padding-right:5%\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:31%\"]],[false,{\".kubernetes-sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-213px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".container-spacial\":false},[\"padding-left:0px\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:31%\"]],[false,{\".future-vision-sec .custom-txt\":false},[\"width:51%\",\"padding-right:4%\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"font-size:45px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:55%\",\"padding-right:7%\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:30%\"]],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:51%\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:30%\"]],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:29.8%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:100%\",\"order:-1\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:100%\",\"padding-right:20px\",\"padding-left:20px\",\"padding-bottom:34px\",\"border-bottom:1px solid rgba(241,241,241,.15)\",\"margin-bottom:38px\",\"z-index:1\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"color:#fff\",\"margin-bottom:40px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:175px\",\"font-size:30px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:71px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"font-size:20px\",\"padding-right:4px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"font-size:24px\",\"margin-bottom:34px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt h2 span\":false},[\"color:#24c1ff\"]],[false,{\".future-vision-sec .custom-txt p\":false},[\"color:#fff\",\"font-size:16px\",\"line-height:1.5\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"padding-right:30px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .custom-txt p\":false},[\"font-size:12px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-txt p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt p a\":false},[\"text-decoration:underline\",\"color:#24c1ff\"]],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(15.95% + 60px)\",\"margin-right:-60px\",\"z-index:1\"]],[false,\"@media (max-width: 1536px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(18% + 60px)\",\"margin-right:-60px\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(18% + 60px)\",\"margin-right:-60px\"]],[false,{\".review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:19px\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:19px\"]],[false,{\".kubernetes-sec .custom-txt p\":false},[\"font-size:19px\"]],[false,{\".col-row ul li\":false},[\"font-size:19px\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:44px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col\":false},[\"padding-bottom:15px\",\"width:calc(50% - 27px)\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col li\":false},[\"padding-bottom:20px\",\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(15% + 60px)\",\"margin-right:-60px\"]],[false,{\".reliability-engineers p\":false},[\"font-size:17px\",\"font-weight:bold\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:160px 0px 105px 0px\"]],[false,{\".col-row ul li\":false},[\"font-size:17px\",\"margin-bottom:15px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(19% + 60px)\"]],[false,{\".text-grey-box p:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:15px\"]],[false,{\".review_sec2 i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:16px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-183px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:192px 0px 84px 0px\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:15px\"]],[false,{\".reliability-engineers\":false},[\"padding:40px 30px 40px 78px\",\"margin-top:40px\"]],[false,{\".reliability-engineers p\":false},[\"font-size:15px\",\"font-weight:bold\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-137px\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:35px\"]],[false,{\".infrastructure-sec\":false},[\"margin-top:-234px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img amp-img\":false,\".future-vision-sec .custom-img amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:100%\",\"-webkit-box-orient:vertical\",\"-webkit-box-direction:reverse\",\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"padding:0px 25px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img .inner-img\":false},[\"position:relative\",\"margin-bottom:15px\"]],[false,{\".future-vision-sec .custom-img .inner-img h5\":false},[\"color:#fff\",\"position:absolute\",\"padding:40px 0px 0px 30px\",\"font-size:42px\",\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img .inner-img\":false},[\"margin-bottom:-155px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"position:absolute\",\"font-size:24px\",\"line-height:1.16\",\"color:#24c1ff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding-right:50px\",\"max-width:256px\",\"bottom:30px\",\"left:30px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:15px\"]],[false,{\".devops-services .applications-col ul li\":false},[\"font-size:14px\"]],[false,{\".srvs-text-box p\":false},[\"font-size:14px\"]],[false,{\".srvs-text-box\":false},[\"margin-bottom:15px\"]],[false,{\".devops-services .applications-col h5\":false},[\"margin-bottom:15px\"]],[false,{\".devops-services .applications-col ul\":false},[\"margin-bottom:15px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-186px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-167px\"]],[false,{\".reliability-engineers p\":false},[\"font-size:14px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:11px\"]],[false,{\".fortune-box\":false},[\"width:100%\"]],[false,{\".col-row ul li\":false},[\"font-size:15px\",\"margin-bottom:15px\"]],[false,{\".col-row ul\":false},[\"column-gap:0\"]],[false,{\".cost-effective-sec .left-text p\":false},[\"font-size:14px\",\"line-height:1.6\",\"color:#707070\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:29px\"]],[false,{\".cost-effective-sec .inner\":false},[\"margin-bottom:40px\"]],[false,{\".cost-effective-sec .review_sec2\":false},[\"margin-top:0\"]],[false,{\".cost-effective-sec .review_sec .swiper-slide i\":false},[\"margin:0 0px 10px\"]],[false,{\".infrastructure-sec\":false},[\"margin-top:-187px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:24px\"]],[false,{\".main-scroll-box\":false},[\"overflow:scroll\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".devops-consulting-banner .title\":false},[\"margin-bottom:10px\"]],[false,{\".devops-consulting-banner h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:32px\"]],[false,\"}\"],[false,\"@media (max-width: 380px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,{\".contact-form-info-right ul li\":false},[\"font-size:14px\"]],[false,{\".contact-form-info-right ul li:first-of-type:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:20px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img .overlay-txt i\":false},[\"position:absolute\",\"right:7px\",\"background:rgba(255,255,255,.2)\",\"width:24px\",\"height:24px\",\"border-radius:50%\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-webkit-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"font-size:18px\",\"top:calc(50% - 10px)\"]],[false,{\".future-vision-sec .custom-img p\":false},[\"font-size:14px\",\"color:#bebebe\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img p\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".lets-talk-sec\":false},[\"padding:55px 0\",\"-webkit-box-shadow:8px 0px 32px rgba(0,0,0,.1)\",\"box-shadow:8px 0px 32px rgba(0,0,0,.1)\"]],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec\":false},[\"padding:30px 0 0\"]],[false,\"}\"],[false,{\".lets-talk-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .inner\":false},[\"max-width:300px\",\"text-align:center\",\"margin:auto\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".lets-talk-sec .inner\":false},[\"max-width:250px\"]],[false,\"}\"],[false,{\".lets-talk-sec .heading-box\":false},[\"width:calc(100% - 370px)\"]],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .heading-box\":false},[\"width:calc(100% - 300px)\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .heading-box\":false},[\"width:100%\",\"margin-bottom:18px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".lets-talk-sec .heading-box h2\":false},[\"font-size:25px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".lets-talk-sec .heading-box h2\":false},[\"font-size:20px\"]],[false,\"}\"],[false,{\".lets-talk-sec .btn-wrapper\":false},[\"width:306px\"]],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"width:100%\",\"height:80px\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"border-radius:100px\"]],[false,\"@media (max-width:1780px){\"],[false,{\".lets-talk-sec .btn-wrapper\":false},[\"width:250px\"]],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"height:70px\",\"font-size:24px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".lets-talk-sec .btn-wrapper\":false},[\"max-width:250px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"height:60px\",\"font-size:25px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"width:132px\",\"height:40px\",\"font-size:20px\",\"padding:5px\",\"margin:auto\",\"margin-bottom:-20px\"]],[false,{\".tek-world-scale .inner .custom-img\":false},[\"margin:0px auto\",\"display:block\"]],[false,\"}\"],[false,{\".custom-grid-sec\":false},[\"background-color:#f1f1f1\",\"padding:100px 0px 110px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec\":false},[\"padding-right:120px 0\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm amp-img\":false,\".custom-grid-sec .inner .colm amp-anim\":false},[\"width:60px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec\":false},[\"padding-right:120px 0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-grid-sec\":false},[\"padding:120px 0 80px\",\"margin-top:-155px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"margin:0 -40px\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"width:calc(33.333% - 27px)\",\"margin-right:40px\",\"display:flex\",\"flex-direction:column\"]],[false,{\".custom-grid-sec .inner\":false},[\"margin:0\"]],[false,{\".custom-grid-sec .inner .colm:nth-child(3n)\":false},[\"margin-right:0\"]],[false,\"@media (max-width: 992){\"],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding-right:20px\",\"padding-left:20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding-right:40px\",\"padding-left:20px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm figure\":false},[\"display:inline-block\",\"margin-right:15px\"]],[false,{\".custom-grid-sec .inner .colm h4\":false},[\"display:-webkit-inline-box\",\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"margin-bottom:15px\",\"color:#152649\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:30px\",\"font-weight:bold\"]],[false,\"@media (max-width: 1366px){\"],[false,{\".custom-grid-sec .inner .colm h4\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm p\":false},[\"margin-bottom:30px\",\"font-size:18px\",\"color:#434343\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"line-height:1.6\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec .inner .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-grid-sec .inner .colm p\":false},[\"font-size:14px\",\"margin-bottom:24px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm a\":false},[\"color:#152649\",\"font-weight:bold\",\"font-family:\\\"Raleway\\\",sans-serif\",\"display:block\",\"font-size:24px\",\"margin-top:auto\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec .inner .colm a\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-grid-sec .inner .colm a\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm a i\":false},[\"margin-left:15px\",\"font-size:16px\"]],[false,{\".custom-grid-sec .slick-dots\":false},[\"position:absolute\",\"right:10px\",\"top:50%\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\"]],[false,{\".custom-grid-sec .slick-dots li\":false},[\"list-style-type:none\",\"height:70px\",\"width:3px\",\"margin:4px 0\"]],[false,{\".custom-grid-sec .slick-dots li.slick-active button\":false},[\"background-color:#28d9cb\"]],[false,{\".custom-grid-sec .slick-dots li button\":false},[\"width:100%\",\"height:100%\",\"background-color:#fff\",\"border-radius:2px\",\"font-size:0\",\"outline:none\",\"border:none\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".custom-trust-sec .inner\":false},[\"position:relative\"]],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:calc(55% - 30px)\",\"margin-right:30px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:70%\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".custom-trust-sec .custom-txt p\":false},[\"padding-right:57px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-trust-sec .custom-txt p\":false},[\"color:#152649\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec .custom-txt p\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".custom-trust-sec .custom-txt h2\":false},[\"max-width:calc(100% - 80px)\"]],[false,\"}\"],[false,{\".custom-trust-sec .custom-img\":false},[\"width:calc(45% - 30px)\",\"margin-right:0\",\"margin-left:30px\",\"text-align:right\"]],[false,{\".custom-trust-sec .custom-img amp-img\":false,\".custom-trust-sec .custom-img amp-anim\":false},[\"max-width:250px\",\"width:100%\",\"margin:0px auto\",\"display:block\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-trust-sec .custom-txt\":false},[\"margin-right:0\",\"width:55%\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec .custom-img\":false},[\"position:absolute\",\"right:0\",\"top:-20px\"]],[false,{\".custom-trust-sec .custom-img:not(#_#_#_#_#_#_#_)\":false},[\"width:56px\"]],[false,\"}\"],[false,{\".custom-case-studie\":false},[\"padding:0\",\"position:relative\",\"padding-top:618px\",\"background-color:#152649\"]],[false,\"@media (max-width:1780px){\"],[false,{\".custom-case-studie\":false},[\"padding-top:480px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".custom-case-studie\":false},[\"padding-top:442px\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img\":false},[\"background-repeat:no-repeat\",\"padding-bottom:0px\",\"position:absolute\",\"top:0\",\"width:100%\"]],[false,{\".custom-case-studie .bg-img::before\":false},[\"content:\\\"\\\"\",\"width:100%\",\"height:265px\",\"position:absolute\",\"left:0\",\"bottom:0\",\"background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(21,38,73,0)),to(#152649))\",\"background-image:linear-gradient(rgba(21,38,73,0),#152649)\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-case-studie .bg-img::before\":false},[\"height:165px\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img .for-desktop\":false},[\"display:block\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .bg-img .for-desktop\":false},[\"display:none\"]],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:100%\"]],[false,{\".custom-trust-sec .custom-img\":false},[\"width:100%\",\"margin-left:0\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img .for-mobile\":false},[\"display:none\",\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .bg-img .for-mobile\":false},[\"display:block\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img .for-mobile amp-img\":false,\".custom-case-studie .bg-img .for-mobile amp-anim\":false},[\"width:100%\"]],[false,{\".custom-case-studie .custom-bottm-sec\":false},[\"padding-bottom:160px\",\"padding-top:40px\",\"position:relative\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-case-studie .custom-bottm-sec\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,{\".custom-case-studie .custom-bottm-sec .inner\":false},[\"-webkit-box-align:end\",\"-ms-flex-align:end\",\"align-items:flex-end\",\"margin-top:-200px\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt\":false},[\"width:55%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt label\":false},[\"color:#f1f1f1\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt label i\":false},[\"color:#7080a7\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt h2\":false},[\"color:#fff\",\"margin-bottom:25px\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt h2 span\":false},[\"color:#8bed78\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt p\":false},[\"padding-right:57px\",\"color:#f1f1f1\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt p\":false},[\"padding-right:0\"]],[false,\"}\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-case-btn\":false},[\"width:38%\",\"margin-right:0\",\"text-align:left\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-case-btn\":false},[\"width:100%\",\"margin-top:15px\",\"text-align:left\"]],[false,\"}\"],[false,{\".custom-colm-blog\":false},[\"background-color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\".custom-colm-blog .heading-box h2 span\":false},[\"color:#28d9cb\"]],[false,{\".custom-colm-blog .colm\":false},[\"background-color:#f7f7f7\",\"border:#c9c9c9 solid 1px\",\"-webkit-box-shadow:none\",\"box-shadow:none\"]],[false,{\".custom-colm-blog .colm .txt-box\":false},[\"padding-bottom:35px\"]],[false,{\".custom-colm-blog .colm .txt-box h6\":false},[\"text-transform:uppercase\",\"color:#6f7070\",\"font-size:14px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"margin-bottom:15px\"]],[false,{\".custom-colm-blog .colm .txt-box h6 span\":false},[\"color:#c9c9c9\"]],[false,{\".custom-colm-blog .colm .txt-box h4\":false},[\"font-size:20px\",\"color:#152649\",\"margin-bottom:60px\",\"height:30px\"]],[false,{\".custom-colm-blog .colm .txt-box .custom-btm-text\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".custom-colm-blog .colm .txt-box .custom-btm-text a\":false},[\"color:#152649\",\"font-size:18px\",\"text-decoration:underline\",\"font-weight:bold\"]],[false,\"@media (max-width:767px){\"],[false,{\".custom-colm-blog .colm .txt-box .custom-btm-text a\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".custom-colm-blog .colm .img-box amp-img\":false,\".custom-colm-blog .colm .img-box amp-anim\":false},[\"height:160px\",\"-o-object-fit:cover\",\"object-fit:cover\",\"width:100%\"]],[true,\"@media (max-width:992px){\"],[true,{\"footer .container\":true},[\"max-width:90%\"]],[true,{\".footer-2022__menu--list\":true},[\"padding:0px 5px\"]],[true,{\"header nav .dropdown-menu p.new-header__nav--menu--text\":true},[\"max-width:unset\"]],[true,\"}\"],[true,\"@media (max-width:600px){\"],[true,{\"footer .container\":true},[\"max-width:540px\"]],[true,{\".footer-2022__menu--list\":true},[\"padding:0px\"]],[true,\"}\"],[true,{\".new-header__menu-item\":true},[\"background:#f7f7f7\"]],[true,\"@media (max-width:1280px){\"],[true,{\".new-header__menu-item\":true},[\"padding-left:15px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header__menu-item\":true},[\"padding-left:0\"]],[true,\"}\"],[false,{\".cp-tek-teams-isk\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"position:relative\",\"margin-top:100px\"]],[false,{\".cp-tek-teams-isk .inner-hero-text amp-img\":false,\".cp-tek-teams-isk .inner-hero-text amp-anim\":false},[\"width:48px\"]],[false,{\".cp-tek-teams-isk amp-img\":false,\".cp-tek-teams-isk amp-anim\":false},[\"width:100%\",\"object-fit:cover\",\"object-position:center\"]],[false,\"@media (max-width: 768px){\"],[false,{\".cp-tek-teams-isk\":false},[\"margin-top:70px\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk picture\":false},[\"padding-bottom:25px\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"position:relative\"]],[false,\"@media (max-width: 1366px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"padding-bottom:5px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"margin-bottom:0px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"margin-bottom:7px\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk picture p\":false},[\"color:#28d9cb\",\"margin-left:15px\",\"margin-bottom:0px\",\"font-size:16px\",\"line-height:1\"]],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk picture p\":false},[\"margin-left:0px\",\"color:#28d9cb\",\"font-size:12px\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk .inner-hero-text\":false},[\"position:absolute\",\"top:45%\",\"width:100%\",\"left:50%\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk .inner-hero-text picture\":false},[\"margin-bottom:5px\"]],[false,{\".cp-tek-teams-isk .inner-hero-text amp-img\":false,\".cp-tek-teams-isk .inner-hero-text amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:60px\",\"font-weight:bold\",\"color:rgba(255,255,255,1)\",\"line-height:1\",\"margin-bottom:6px\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"@media (max-width: 768px){\"],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:30px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:32px\"]],[false,\"}\"],[false,{\".contact-tek-teams\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"padding:80px 0px 120px\"]],[false,{\".contact-tek-teams .mobile-button\":false},[\"display:none\"]],[false,\"@media (max-width: 767px){\"],[false,{\".contact-tek-teams .desktop-button\":false},[\"display:none\"]],[false,{\".contact-tek-teams .mobile-button:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (max-width: 1680px){\"],[false,{\".contact-tek-teams\":false},[\"padding:80px 0px 90px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".contact-tek-teams\":false},[\"padding:80px 0px 80px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".contact-tek-teams\":false},[\"padding:60px 0px 60px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".contact-tek-teams\":false},[\"padding:40px 0px 0px\"]],[false,\"}\"],[false,{\".contact-tek-teams .inner\":false},[\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".contact-tek-teams .inner .custom-txt .btn-blue\":false},[\"margin-top:0px\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-txt\":false},[\"width:calc(50.5% - 0px)\",\"margin-right:0\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"width:54%\",\"margin-right:-12%\",\"margin-left:76px\"]],[false,\"@media (max-width: 1214px) and (max-width: 1280px){\"],[false,{\".contact-tek-teams .custom-img\":false},[\"margin-right:-7%\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".contact-tek-teams .custom-img\":false},[\"width:47%\",\"margin-right:0px\"]],[false,{\".contact-tek-teams .inner .custom-img p:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".contact-tek-teams .inner\":false},[\"flex-direction:column\",\"align-items:flex-start\"]],[false,{\".contact-tek-teams .custom-img\":false},[\"width:100%\",\"margin-right:0px\",\"margin-top:0px\",\"margin-left:0px\"]],[false,\"}\"],[false,{\".contact-tek-teams .inner .custom-img p\":false},[\"color:#707070\",\"line-height:32px\",\"padding-right:18%\",\"font-size:20px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".contact-tek-teams .inner .custom-img p\":false},[\"color:#707070\",\"line-height:2\",\"padding-right:0px\",\"font-size:14px\"]],[false,\"}\"],[false,{\".repeat-bg\":false},[\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".repeat-bg\":false},[\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".repeat-bg amp-img\":false,\".repeat-bg amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 600px){\"],[false,{\".repeat-bg amp-img\":false,\".repeat-bg amp-anim\":false},[\"height:207px\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".repeat-bg .c-btm-icon\":false},[\"position:absolute\",\"bottom:35px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".repeat-bg .c-btm-icon\":false},[\"left:0px\",\"bottom:13px\",\"width:100%\",\"padding:0px 25px\"]],[false,{\".repeat-bg .c-btm-icon amp-img\":false,\".repeat-bg .c-btm-icon amp-anim\":false},[\"width:auto\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".repeat-bg .c-btm-icon\":false},[\"left:0px\",\"bottom:0\",\"width:100%\",\"padding:0px 25px\",\"padding-bottom:25px\"]],[false,{\".repeat-bg .c-btm-icon amp-img\":false,\".repeat-bg .c-btm-icon amp-anim\":false},[\"height:inherit\",\"width:auto\",\"margin-bottom:0px\",\"margin-top:0\",\"padding-bottom:15px\"]],[false,\"}\"],[false,{\".repeat-bg .tek-teams-mob-heading\":false},[\"display:none\"]],[false,{\".repeat-bg .tek-teams-mob-heading h3\":false},[\"font-size:24px\",\"color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"line-height:1.3\"]],[false,\"@media (max-width: 600px){\"],[false,{\".repeat-bg .tek-teams-mob-heading\":false},[\"display:block\",\"padding-right:68px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".repeat-bg .tek-teams-mob-heading\":false},[\"display:block\",\"padding-right:0px\"]],[false,{\".repeat-bg .c-btm-icon\":false},[\"padding-bottom:10px\"]],[false,{\".repeat-bg .c-btm-icon amp-img\":false,\".repeat-bg .c-btm-icon amp-anim\":false},[\"padding-bottom:0px\"]],[false,\"}\"],[false,{\".tek-teams-heading\":false},[\"padding-top:80px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".tek-teams-heading\":false},[\"padding-top:20px\"]],[false,\"}\"],[false,{\".tek-teams-heading h3\":false},[\"font-size:30px\",\"line-height:1\",\"margin-bottom:40px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#707070\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek-teams-heading h3\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".tek-teams-heading\":false},[\"display:none\"]],[false,\"}\"],[false,{\".about-tek-wrapper\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"padding-bottom:120px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".about-tek-wrapper\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".about-tek-wrapper\":false},[\"padding-bottom:60px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".about-tek-wrapper\":false},[\"padding-top:50px\",\"padding-bottom:60px\"]],[false,\"}\"],[false,{\".about-tek-wrapper .about-tek-team\":false},[\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".about-tek-wrapper .about-tek-team .c-col\":false},[\"width:calc(50% - 40px)\"]],[false,{\".about-tek-wrapper .about-tek-team .c-col p b\":false,\".about-tek-wrapper .about-tek-team .c-col p strong\":false},[\"font-weight:bold\"]],[false,\"@media (max-width: 768px){\"],[false,{\".about-tek-wrapper .about-tek-team .c-col\":false},[\"width:calc(50% - 15px)\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".about-tek-wrapper .about-tek-team .c-col\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".about-tek-wrapper .about-tek-team .c-col p\":false},[\"padding-bottom:10px\",\"font-size:20px\",\"line-height:2\",\"color:#707070\"]],[false,\"@media (max-width: 768px){\"],[false,{\".about-tek-wrapper .about-tek-team .c-col p\":false},[\"font-size:15px\",\"padding-bottom:0px\",\"margin-bottom:10px\"]],[false,\"}\"],[false,{\".about-tek-wrapper .about-tek-team .c-col p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".development-team-sec\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"background-color:#f1f1f1\",\"padding-bottom:120px\"]],[false,{\".development-team-sec .text-short-box\":false},[\"padding-left:8px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".development-team-sec\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".development-team-sec\":false},[\"padding-bottom:60px\"]],[false,\"}\"],[false,{\".development-team-sec p\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.5\",\"margin-bottom:60px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec p\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec p\":false},[\"font-size:15px\",\"margin-bottom:25px\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .tek-teams-heading h3\":false},[\"color:#24c1ff\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"margin-bottom:20px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:30%\",\"margin-bottom:60px\"]],[false,\"@media (min-width: 1025px) and (max-width: 1280px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:32%\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"margin-bottom:20px\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"margin:0 0 0 40px\",\"width:calc(55% - 40px)\",\"padding:0\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-txt\":false},[\"width:45%\",\"margin:0\",\"padding:0\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img p\":false},[\"padding:0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:45%\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"margin:25px 0 0px 0px\",\"width:100%\",\"padding-bottom:10px\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-txt\":false},[\"width:100%\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:100%\",\"border-bottom:#e1e1e1 solid 1px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col:last-child\":false},[\"border-bottom:none\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:35px\",\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading figure\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"color:#152649\",\"padding-left:8px\",\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"margin-bottom:0px\"]],[false,\"@media only screen and (min-width: 1025px) and (max-width: 1279px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"font-size:14px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"padding-left:4px\",\"font-size:12px\",\"margin-bottom:0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"padding-left:4px\",\"font-size:14px\",\"margin-bottom:0\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:0px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span::before:not(#_#_#_#_#_#_#_#_)\":false},[\"content:none\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"font-size:18px\",\"line-height:1.3\",\"margin-bottom:25px\",\"color:#707070\",\"position:relative\",\"padding-left:20px\",\"padding-right:20px\",\"display:block\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"padding-right:0px\",\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"padding-left:10px\",\"font-size:13px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"font-size:14px\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span:last-child\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span::before\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p::before\":false},[\"position:absolute\",\"top:0\",\"left:0px\",\"content:\\\"-\\\"\",\"line-height:17px\"]],[false,\"@media (max-width: 600px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .col-heading::before\":false},[\"content:\\\"\\\"\",\"width:6px\",\"height:6px\",\"border-bottom:2px solid #24c1ff\",\"border-right:2px solid #24c1ff\",\"float:right\",\"position:absolute\",\"top:12px\",\"right:1px\",\"-webkit-transform:rotate(45deg)\",\"transform:rotate(45deg)\",\"-webkit-transform-origin:center\",\"transform-origin:center\",\"-webkit-transition:all .4s ease\",\"transition:all .4s ease\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .col-heading.active::before\":false},[\"-webkit-transform:rotate(225deg)\",\"transform:rotate(225deg)\",\"color:#24c1ff\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .col-heading .active:after\":false},[\"-webkit-transform:rotate(-135deg)\",\"transform:rotate(-135deg)\",\"border-color:#fff\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .text-short-box\":false},[\"display:none\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .btn-blue\":false},[\"padding:23px 0px\",\"text-align:center\",\"border-radius:50px\",\"width:360px\",\"margin:0px auto\",\"display:block\"]],[false,{\".benefits-sec\":false},[\"background-color:#fff\"]],[false,{\".team-structure-sec .tek-teams-heading h3\":false},[\"margin-bottom:25px\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"@media (max-width: 768px){\"],[false,{\".team-structure-sec .tek-teams-heading h3\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".team-structure-sec p\":false},[\"font-size:18px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".team-structure-sec p\":false},[\"font-size:14px\"]],[false,{\".custom-grid-sec .inner\":false},[\"margin:0\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding:25px 10px 25px 0px\",\"margin:0\"]],[false,{\".custom-grid-sec .slick-dots\":false},[\"right:0\"]],[false,\"}\"],[false,{\".dev-shop-team-sec\":false},[\"padding:120px 0px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".dev-shop-team-sec\":false},[\"padding:80px 0px\"]],[false,\"}\"],[false,{\".c-border-none td:not(#_#_#_#_#_#_#_#_)\":false},[\"border:none\"]],[false,{\".tekteams-tabel\":false},[\"background:none\"]],[false,{\".tekteams-tabel .heading-box label\":false},[\"color:#7080a7\"]],[true,\"@media (max-width: 1760px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:14px\",\"padding:0px 14px\"]],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:80px\"]],[true,{\".dropdown-menu\":true},[\"top:77px\"]],[false,{\".cp-tek-teams-isk:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:80px\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:50px\",\"width:75%\",\"margin-right:auto\",\"margin-left:auto\"]],[false,{\".demand-sec\":false},[\"padding:150px 0px 110px 0px\"]],[false,{\".ecosystem-sec\":false},[\"padding:150px 0px\"]],[false,{\".partner-sec .bg-img\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\"]],[false,{\".partner-sec\":false},[\"padding:240px 0px 240px 0px\"]],[false,{\".partner-sec .container-md\":false},[\"margin-top:0\"]],[false,{\".solution-sec\":false},[\"padding:160px 0px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:50px\"]],[false,{\".tek-teams-heading h3\":false},[\"margin-bottom:30px\"]],[false,{\".about-tek-wrapper .about-tek-team .c-col p\":false},[\"margin-bottom:5px\",\"line-height:1.5em\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"margin-bottom:30px\"]],[false,{\".development-team-sec .development-team-content .btn-blue\":false},[\"padding:16px 0px\",\"width:261px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:20px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:120px 0px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:79px\"]],[true,\"}\"],[true,\"@media (max-width: 1680px){\"],[false,{\".tekteams-tabel\":false},[\"padding:25px 0px 60px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"padding:0px 11px\"]],[true,{\".new-header__button a\":true},[\"font-size:16px\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:45px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:45px\"]],[false,{\".demand-sec\":false},[\"padding:100px 0px 60px 0px\"]],[false,{\".ecosystem-sec\":false},[\"padding:100px 0px 130px 0px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 200px 0px\"]],[false,{\".partner-sec .heading-box\":false},[\"padding-bottom:50px\"]],[false,{\".solution-sec\":false},[\"padding:130px 0px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:100px 0px\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:18px\"]],[false,{\".journey-roadmap\":false},[\"margin-top:-98px\"]],[false,{\".infrastructure-sec .heading-box h2\":false,\".cost-effective-sec .heading-box h2\":false},[\"font-size:50px\"]],[true,\"}\"],[true,\"@media (max-width: 1560px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\",\"padding:0px 9px\"]],[true,{\".new-header__button a\":true},[\"font-size:14px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 160px 0px\"]],[false,{\".solution-sec\":false},[\"padding:120px 0px\"]],[false,{\".journey-roadmap\":false},[\"margin-top:-200px\"]],[false,{\".kubernetes-sec\":false},[\"margin-top:-100px\"]],[true,\"}\"],[true,\"@media (max-width:1366px){\"],[false,{\".btn-blue\":false},[\"font-size:18px\"]],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:77px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:72px\"]],[false,{\".cp-tek-teams-isk:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:77px\"]],[true,{\".dropdown-menu\":true},[\"top:75px\"]],[false,{\".cp-cloud-native-isk h2\":false,\".cp-tek-teams-isk h2\":false},[\"font-size:40px\"]],[false,{\".heading-box h2\":false},[\"font-size:32px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 140px 0px\"]],[false,{\".solution-sec\":false},[\"padding:110px 0px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:80px 0px\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:16px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:140px\"]],[false,{\".keeping-future ul\":false},[\"font-size:18px\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:40px\"]],[false,{\".choose-option ul li:last-child\":false},[\"margin-left:0px\"]],[false,{\".choose-option ul li\":false},[\"padding:15px 20px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 70px 119px\"]],[false,{\".contact-form-info-right ul li\":false},[\"padding:25px 0px 25px\"]],[true,\"}\"],[true,\"@media (max-width:1280px){\"],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:60px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:60px\"]],[false,{\".cp-tek-teams-isk:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:59px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:60px\"]],[true,{\".dropdown-menu\":true},[\"top:57px\"]],[false,{\".heading-box h2\":false},[\"font-size:28px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 120px 0px\"]],[false,{\".choose-option\":false},[\"padding-left:40px\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:60px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:35px\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:14px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:120px\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:33px\"]],[false,{\".keeping-future ul\":false},[\"font-size:16px\"]],[false,{\".contact-form-info-right ul\":false},[\"margin-bottom:70px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 50px 119px\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"object-position:-256px 0px\"]],[true,\"}\"],[false,\"@media (max-width:1200px){\"],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:25px\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:45px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 30px 119px\"]],[false,\"}\"],[false,\"@media (max-width:1190px){\"],[false,{\".btn-blue\":false},[\"font-size:16px\"]],[false,\"}\"],[true,\"@media (max-width:1170px){\"],[true,{\".new-header__logo\":true},[\"min-width:200px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\",\"padding:0px 6px\"]],[false,{\".choose-option ul li\":false},[\"font-size:17px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:18px\"]],[true,\"}\"],[true,\"@media (max-width:1100px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:10px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 100px 0px\"]],[true,\"}\"],[true,\"@media (max-width:1028px){\"],[true,{\".new-header__logo\":true},[\"min-width:150px\"]],[true,\"}\"],[false,\"@media (max-width:1024px){\"],[false,{\".contact-form-left\":false},[\"width:53%\",\"padding:58px 0px 75px\"]],[false,{\".contact-form-info-right\":false},[\"width:44%\",\"padding:50px 18px 76px\"]],[false,{\".choose-option ul\":false},[\"flex-wrap:nowrap\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"object-position:75% 0px\"]],[false,\"}\"],[true,\"@media (max-width:992px){\"],[false,{\".btn-blue\":false},[\"font-size:18px\"]],[true,{\".new-header__button\":true},[\"width:20%\",\"justify-content:center\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"width:100%\"]],[false,{\".solution-sec\":false},[\"padding:90px 0px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:30px\"]],[false,{\".cp-cloud-native-isk .btn\":false},[\"width:unset\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:230px\"]],[true,{\".closeicon\":true},[\"width:14px\",\"display:none\",\"position:relative\",\"right:17px\",\"top:6px\"]],[true,{\".navbar-toggler .closeicon\":true},[\"display:block\"]],[true,{\".navbar-toggler amp-img:nth-child(1)\":true,\".navbar-toggler amp-anim:nth-child(1)\":false},[\"display:none\"]],[true,{\".navbar-toggler.collapsed .closeicon\":true},[\"display:none\"]],[true,{\".navbar-toggler.collapsed amp-img:nth-child(1)\":true,\".navbar-toggler.collapsed amp-anim:nth-child(1)\":false},[\"display:block\"]],[false,{\".text-grey-box p\":false},[\"padding-right:0px\"]],[true,\"}\"],[false,\"@media (max-width:980px){\"],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"padding:0px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:0\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:20px\"]],[false,{\".btm-icon-line\":false},[\"width:55%\",\"margin:0px auto\"]],[false,{\".custom-contact-wrapper\":false},[\"padding:85px 0px 100px\"]],[false,{\".contact-form-info-right ul li:last-child a\":false},[\"word-break:break-word\"]],[false,\"}\"],[false,\"@media (max-width: 769px){\"],[false,{\".contact-form-info-right ul li a\":false},[\"word-break:break-word\"]],[false,{\".contact-form-info-right ul li:first-of-type a\":false},[\"font-size:25px\"]],[false,{\".contact-form-info-right ul .phone:before\":false},[\"width:30px\",\"height:30px\"]],[false,{\".contact-form-info-right ul .address:before\":false},[\"background-size:100%\",\"width:30px\",\"height:30px\"]],[false,{\".contact-form-info-right ul li:nth-of-type(2) span\":false},[\"padding-left:43px\"]],[false,{\".contact-form-info-right ul li a\":false},[\"padding-left:10px\"]],[false,{\".btm-icon-line:after\":false,\".btm-icon-line::before\":false},[\"width:95px\"]],[false,{\".contact-form-info-right ul\":false},[\"margin-bottom:30px\"]],[false,{\".choose-option ul\":false},[\"margin-bottom:0px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 18px 50px\"]],[false,{\".contact-form-info-right h3\":false},[\"margin-bottom:0px\"]],[false,{\".btm-icon-line\":false},[\"width:100%\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea\":false},[\"height:100px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:27px\"]],[false,{\".contact-form-left\":false},[\"padding:58px 0px 30px\"]],[false,{\".choose-option ul li\":false},[\"font-size:17px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:18px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".col-row ul li:nth-child(1)\":false,\".col-row ul li:nth-child(4)\":false,\".col-row ul li\":false},[\"width:50%\"]],[false,{\".custom-contact-wrapper .container-md\":false},[\"padding:0px\",\"width:100%\"]],[false,{\".contact-wrapper-banner .inner-hero-text\":false},[\"top:45%\"]],[false,{\".contact-wrapper-banner .inner-hero-text h2\":false},[\"text-align:center\"]],[false,{\".custom-contact-wrapper\":false},[\"padding:0px\",\"margin-top:-1px\",\"border-radius:0px\"]],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"border-radius:0px\",\"padding:0px\"]],[false,{\".contact-form-info-right\":false},[\"border-radius:0px\",\"padding:40px 24px 0px\",\"width:100%\"]],[false,{\".contact-wrapper-banner\":false},[\"z-index:3\"]],[false,{\".contact-form-info-right h3\":false},[\"display:none\"]],[false,{\".contact-form-info-right ul li:first-of-type\":false},[\"font-size:30px\"]],[false,{\".contact-form-info-right ul li\":false},[\"padding:20px 0px 20px 0px\"]],[false,{\".contact-form-info-right ul li:first-of-type a\":false},[\"font-size:30px\"]],[false,{\".btm-icon-line\":false},[\"display:none\"]],[false,{\".contact-form-info-right ul\":false},[\"margin-bottom:60px\"]],[false,{\".choose-option ul\":false},[\"flex-wrap:nowrap\",\"margin-bottom:0\"]],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"background-color:transparent\",\"flex-direction:column-reverse\"]],[false,{\".choose-option\":false},[\"padding-left:0\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:0px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:0\"]],[false,{\".contact-form-left\":false},[\"padding:45px 24px 0px 24px\",\"background:#fff\",\"width:86%\",\"margin:85px auto 120px auto\",\"border-radius:0px 26px 26px 26px\",\"box-shadow:0px 20px 32px 0px rgba(0,0,0,.2)\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .col-md-4\":false},[\"max-width:100%\",\"margin-bottom:15px\",\"flex:0 0 100%\"]],[false,{\".form-group .form-control\":false},[\"padding:0px 0px 5px\"]],[false,{\".form-group label\":false},[\"font-size:14px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea\":false},[\"margin-bottom:32px\",\"margin-top:0px\",\"height:90px\"]],[false,{\".form-group::placeholder\":false},[\"font-size:16px\"]],[false,{\".form-control::-webkit-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:13px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".form-control::-ms-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:13px\",\"font-weight:normal\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".form-control::placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:13px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control\":false},[\"font-size:13px\",\"padding:0px 0px 5px\"]],[false,{\".choose-option ul li\":false},[\"font-size:15px\",\"padding:14px 8px\",\"color:#152649\"]],[false,{\".choose-option ul li.tab.active a\":false},[\"font-weight:bold\",\"color:#152649\"]],[false,{\".choose-option ul li:last-child\":false},[\"padding:15px 20px\",\"line-height:1\"]],[false,{\".choose-option ul li:nth-child(2)\":false},[\"font-weight:bold\",\"margin-right:0px\",\"margin-left:0px\"]],[false,{\".contact-wrapper-banner .inner-hero-text p\":false},[\"display:none\"]],[false,{\".contact-wrapper-banner:before\":false},[\"width:20px\",\"height:20px\",\"bottom:-7px\",\"left:7%\",\"background-color:#101f42\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .calendly-inline-widget:not(#_#_#_#_#_#_#_)\":false},[\"min-width:100%\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"object-position:82% 0px\"]],[false,\"}\"],[true,\"@media (max-width: 767px){\"],[false,{\".tekteams-tabel .heading-box label\":false},[\"margin-left:0px\"]],[false,{\".tekteams-tabel .table-wrapper td.always\":false},[\"color:#28d9cb\"]],[false,{\".tekteams-tabel .table-wrapper td:last-of-type\":false},[\"color:#24c1ff\",\"font-weight:700\"]],[false,{\".tekteams-tabel .table-wrapper tr\":false},[\"display:block\",\"border-top:1px solid #c9c9c9\",\"padding:15px 0\"]],[false,{\"section.demand-sec .inner .slick-track\":false},[\"display:unset\"]],[false,{\".demand-sec .inner .colm:not(#_#_#_#_#_#_#_)\":false},[\"margin:25px 10px 25px 0\",\"padding:0\"]],[false,{\".future-vision-sec .custom-img\":false},[\"width:90%\",\"margin:auto\"]],[true,{\".footer-2022__certificates\":true},[\"margin-top:30px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:70px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\"]],[false,{\".heading-box h2\":false},[\"font-size:24px\"]],[false,{\".demand-sec .heading-box\":false},[\"padding-bottom:20px\"]],[false,{\".ecosystem-sec .inner\":false},[\"padding-bottom:0\"]],[false,{\".ecosystem-sec\":false},[\"padding:100px 0px 100px 0px\"]],[false,{\".solution-sec\":false},[\"padding:70px 0px\"]],[false,{\".tek-teams-heading h3\":false},[\"margin-bottom:15px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:15px\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"display:block\",\"flex-direction:unset\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding:25px 10px 25px 0px\",\"margin:0\"]],[false,{\".custom-grid-sec .inner .slick-list\":false},[\"padding-bottom:25px\"]],[true,{\"header .new-header__menu-item\":true},[\"top:60px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link\":true},[\"line-height:normal\",\"font-weight:600\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:16px\",\"color:#152649\"]],[true,{\"header .new-header__nav--list li\":true},[\"margin-bottom:30px\",\"margin-left:18px\"]],[true,{\"header .new-header__nav--list\":true},[\"margin-top:46px\"]],[true,{\"header .new-header__nav--list li:nth-last-child(1)\":true},[\"margin-bottom:0\"]],[true,{\"header .dropdown-menu\":true},[\"top:0px\"]],[true,{\"header .new-header__nav--menu--title\":true},[\"font-size:14px\"]],[true,{\"header .new-header__nav--title h5\":true},[\"font-size:20px\"]],[true,{\"header .new-header__nav--list>.show\":true},[\"padding-top:10px\"]],[false,{\".c-application-development .review_sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:20px\"]],[true,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".reliability-engineers\":false},[\"margin-top:126px\"]],[false,{\".development-team-sec .development-team-content .btn-blue\":false},[\"margin:0px\",\"padding:16px 0px\",\"width:185px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:150px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,\"}\"],[false,\"@media (max-width:575px){\"],[false,{\".infrastructure-sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-309px\"]],[false,{\".col-row ul li\":false,\".col-row ul li:nth-child(1)\":false,\".col-row ul li:nth-child(4)\":false},[\"width:100%\",\"padding-left:25px\"]],[false,{\".col-row ul li::after\":false},[\"width:19px\",\"height:19px\",\"background-size:100%\"]],[false,{\".kubernetes-sec .container-md\":false},[\"padding:0px 0px\"]],[false,{\".kubernetes-sec .custom-txt\":false},[\"padding:0px 24px\"]],[false,{\".devops-services .applications-col h5::before\":false},[\"width:25px\",\"height:25px\",\"background-size:100%\"]],[false,{\".infrastructure-sec .heading-box:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0px\"]],[false,\"}\"],[true,\"@media (max-width:480px){\"],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"margin:0px 0 0px 0px\",\"padding-bottom:0px\"]],[true,{\".footer-2022__certificates\":true},[\"margin-top:0\",\"margin-bottom:20px\"]],[true,{\".footer-2022__box-end a\":true},[\"font-size:14px\"]],[true,{\".footer-2022__box-end a:nth-last-child(1)\":true},[\"margin-right:0\"]],[true,{\".row.footer-2022__mobile-items\":true},[\"padding-right:0\"]],[true,{\".footer-2022__copyright\":true},[\"font-size:14px\"]],[false,{\".future-vision-sec .custom-img\":false},[\"max-width:360px\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:32px\"]],[false,{\".demand-sec\":false},[\"padding:60px 0px 40px 0px\"]],[false,{\".ecosystem-sec\":false},[\"padding:60px 0px 35px 0px\"]],[false,{\".ecosystem-sec .heading-box figure\":false},[\"top:0\",\"right:0\"]],[false,{\".ecosystem-sec .heading-box figure amp-img\":false,\".ecosystem-sec .heading-box figure amp-anim\":false},[\"width:100%\",\"height:100%\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 80px 0px\"]],[false,{\".partner-sec .colm h6\":false},[\"min-height:unset\"]],[false,{\".partner-sec .heading-box\":false},[\"padding-bottom:40px\"]],[false,{\".solution-sec\":false},[\"padding:60px 0px\"]],[false,{\".cp-tek-teams-isk h2\":false,\".tek-teams-heading h3\":false},[\"font-size:26px\"]],[false,{\".c-app-banner h2\":false},[\"font-size:32px\"]],[false,{\".c-app-banner p\":false},[\"font-size:16px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:60px 0px\"]],[true,{\".footer-2022__social-media\":true},[\"margin-top:60px\"]],[true,{\".footer-2022__social-media a\":true},[\"margin:0px 30px 0px 0px\"]],[true,{\".footer-2022__social-media a:nth-last-child(1)\":true},[\"margin-right:0\"]],[true,\"}\"],[false,\"@media (max-width:420px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:100%\",\"margin:auto\"]],[false,{\".ecosystem-sec .heading-box figure\":false},[\"margin-bottom:0\",\"top:30px\",\"width:70px\",\"height:70px\"]],[false,{\".ecosystem-sec .heading-box h2\":false},[\"width:calc(100% - 70px)\"]],[false,\"}\"],[true,{\"body .devops-styles:not(#_#_#_#_#_#_#_#_)\":true},[\"margin-top:75px\"]],[true,\"@media (max-width:1200px){\"],[true,{\"body .devops-styles:not(#_#_#_#_#_#_#_#_)\":true},[\"margin-top:55px\"]],[false,{\".contact-wrapper-banner:before\":false},[\"left:7%\"]],[true,\"}\"],[false,\"@media (min-width:1350px) and (max-height:1135px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-bottom:25px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(36%)\"]],[false,{\".ecosystem-sec .colm:last-of-type figure\":false},[\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"max-width:200px\",\"display:block\",\"margin:auto\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:47%\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:1035px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"transform:translateY(-50%)\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(32%)\"]],[false,{\".ecosystem-sec .colm\":false},[\"padding:15px 30px 15px 30px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"margin-bottom:15px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"padding-right:30px\",\"font-size:20px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(38%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:48%\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:898px){\"],[false,{\".ecosystem-sec .colm p\":false},[\"font-size:14px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(38%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:49%\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:16px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:15px\"]],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:18px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"width:60px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:25px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"width:130px\"]],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"width:170px\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:770px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(26%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:48%\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:14px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:15px\"]],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:16px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"width:60px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:25px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"width:120px\"]],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"width:140px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false,\".ecosystem-sec .colm\":false},[\"margin-bottom:20px\",\"padding:15px 20px\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,{\".ecosystem-sec .colm p\":false},[\"font-size:12px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"padding-bottom:25px\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:700px){\"],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"width:110px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"transform:translateY(-41%)\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(25%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:49%\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"margin-bottom:10px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:10px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false,\".ecosystem-sec .colm\":false},[\"margin-bottom:20px\",\"padding:10px 20px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"padding-top:0\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":6539,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/kubernetes.css?v=1538402054\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"00ad41532091732506b79ad4852bdcbd\",\"parse_time\":0.08027791976928711,\"shake_time\":8.296966552734375e-5,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\"#gtx-trans\":false},[\"display:none\"]],[false,{\".kubernetes__banner__dark\":false},[\"background-color:#152649\",\"padding:85px 0px\"]],[false,{\".kubernetes__banner__light\":false},[\"background-color:#fff\",\"padding:120px 0px\"]],[false,{\".kubernetes__banner__grey\":false},[\"background-color:#f1f1f1\",\"padding:120px 0px\"]],[false,{\".kubernetes__banner__bottom\":false},[\"background-color:#fff\",\"padding:65px 0px\",\"box-shadow:inset 0px 11px 8px -10px rgba(0,0,0,.1),inset 0px -11px 8px -10px rgba(0,0,0,.1)\"]],[false,{\".text__light__blue\":false},[\"color:#28d9cb\"]],[false,{\".text__blue\":false},[\"color:#00c3fc\"]],[false,{\".kubernetes__section--1 .subtitle\":false},[\"font-family:Roboto\",\"font-size:16px\",\"text-transform:uppercase\",\"letter-spacing:1.6px\"]],[false,{\".kubernetes__section--1 .titlePage\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:60px\"]],[false,{\".kubernetes .redirect__page\":false},[\"color:#7080a7\",\"align-items:center\"]],[false,{\".redirect__page > h6\":false},[\"font-family:Roboto\",\"font-size:18px\",\"margin-left:10px\",\"margin-bottom:0px\",\"color:#7080a7\"]],[false,{\".iconSmall\":false},[\"width:2px\",\"height:5px\",\"margin-right:10px\"]],[false,{\".iconMedium\":false},[\"width:15px\",\"height:13px\",\"margin-right:10px\"]],[false,{\".imgIcon\":false},[\"width:24px\",\"height:24px\",\"margin-right:10px\"]],[false,{\".kubernetes .wrap__kcsp .nav__services .service__name h6\":false},[\"color:#152649\",\"margin:0\",\"font-weight:bold\",\"font-family:Raleway\"]],[false,{\".kubernetes .titleSection\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".kubernetes .titleSection__footer\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".kubernetes .section_one_content\":false,\".kubernetes .section_three_content\":false,\".kubernetes .section_four_content\":false,\".kubernetes .section_five_content\":false},[\"font-size:20px\",\"line-height:32px\"]],[false,{\".kubernetes .nav__services\":false},[\"box-shadow:rgba(0,0,0,.45) 0px 25px 20px -20px\",\"border-radius:24px\",\"background-color:#f5f5f5\",\"border:1px solid #f5f5f5\",\"padding:26.5px 35.5px\",\"margin-top:40px\"]],[false,{\".kubernetes .nav__services h6\":false},[\"margin:0\"]],[false,{\".kubernetes .nav__services .service__name\":false},[\"font-family:Raleway\",\"font-size:16px\",\"font-weight:bold\",\"color:#152649\"]],[false,{\".kubernetes .nav__services .service__name .section_five_icon_text\":false},[\"font-size:14px\",\"line-height:32px\"]],[false,{\".service__name picture\":false,\".service__name source\":false,\".service__name div > amp-img\":false,\".service__name div > amp-anim\":false},[\"display:flex\",\"width:35px\"]],[false,{\".service__name div\":false},[\"display:flex\",\"justify-content:flex-start\",\"align-items:center\"]],[false,{\".service__name div h6\":false},[\"font-weight:bold\",\"font-size:18px\",\"font-family:Raleway\",\"margin:0\"]],[false,{\".kubernetes .btn__consultation\":false},[\"background-color:#00c3fc\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\"]],[false,{\".kubernetes .btn__consultation__light__blue\":false},[\"background-color:#28d9cb\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\"]],[false,{\".kubernetes .btn__linear\":false},[\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:40px\"]],[false,{\".kubernetes .wrap__Services .service__name\":false},[\"font-family:Raleway\",\"font-size:18px\",\"font-weight:bold\",\"color:#152649\",\"line-height:32px\"]],[false,{\".service__list\":false},[\"align-items:center\",\"border-bottom:1px solid #e1e1e1\",\"max-height:70px\"]],[false,{\".kubernetes .wrap__Services .service__list:last-child .service__name\":false},[\"border-bottom:none\"]],[false,{\".kubernetes .owl-carousel .owl-item .service__name\":false},[\"font-family:Raleway\",\"font-size:18px\",\"font-weight:bold\",\"color:#152649\",\"line-height:32px\"]],[false,{\".service__name i\":false},[\"color:#26c1ff\",\"font-size:15px\",\"margin-right:3px\"]],[false,{\".kubernetes .owl-carousel .owl-item .imgIcon\":false},[\"width:24px\",\"height:24px\",\"margin-right:10px\"]],[false,{\".kubernetes .owl-theme .owl-nav\":false},[\"display:none\"]],[false,{\".kubernetes .owl-theme .owl-dots .owl-dot span\":false},[\"width:4px\",\"height:4px\",\"background-color:#d6d6d6\"]],[false,{\".kubernetes .owl-theme .owl-dots .owl-dot.active span\":false},[\"width:24px\",\"height:4px\",\"border-radius:2px\",\"background-color:#28d9cb\"]],[false,{\".kubernetes .text\":false},[\"font-family:Raleway\",\"font-size:20px\",\"font-weight:bold\",\"color:#152649\",\"line-height:32px\"]],[false,{\".absolute__button\":false},[\"position:absolute\",\"bottom:-35px\",\"left:calc(( 100vw - 246px ) \\/ 2)\"]],[false,\"@media screen and (min-width: 1440px){\"],[false,{\".containerWidth\":false},[\"max-width:1210px\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media screen and (max-width: 991px){\"],[false,{\".kubernetes__banner__grey\":false},[\"padding:80px 0px\"]],[false,{\".kubernetes__banner__light\":false},[\"padding:50px 0px 80px 0px\"]],[false,{\".kubernetes__banner__bottom\":false},[\"padding:35px 0px\"]],[false,{\".kubernetes__section--1 .titlePage\":false},[\"font-size:32px\",\"line-height:34px\"]],[false,{\".kubernetes__section--1 .subtitle\":false},[\"font-size:12px\",\"letter-spacing:1.2px\"]],[false,{\".kubernetes .redirect__page h6\":false},[\"font-size:14px\",\"line-height:17px\",\"letter-spacing:1.4px\"]],[false,{\".kubernetes .section_one_content\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".kubernetes .wrap__kcsp .nav__services .service__name h6\":false},[\"font-size:14px\",\"line-height:16px\"]],[false,{\".kubernetes .owl-carousel .item .service__name .section_two_title\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".kubernetes .section_one_content\":false,\".kubernetes .section_three_content\":false,\".kubernetes .section_four_content\":false,\".kubernetes .section_five_content\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".kubernetes .text\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".owl-carousel .service__name:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom:1px solid #e1e1e1\"]],[false,{\".kubernetes .titleSection__footer\":false},[\"font-size:20px\",\"line-height:24px\",\"padding:0px 58px\"]],[false,{\".kubernetes .btn__linear\":false},[\"font-size:20px\",\"padding:15px 28px\"]],[false,{\".absolute__button\":false},[\"position:absolute\",\"bottom:-25px\",\"left:calc(( 100vw - 150px ) \\/ 2)\"]],[false,\"}\"],[false,\"@media screen and (max-width: 1439px){\"],[false,{\".containerWidth\":false},[\"max-width:calc(100vw * .87692307692)\",\"margin:0px auto\"]],[false,{\".kubernetes .titleSection\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":9242,\"final_size\":139,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/marchine.css?v=307997873\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"07d3cbb28be76f71cb628b43712b32c1\",\"parse_time\":0.07620978355407715,\"shake_time\":0.00014519691467285156,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"*\":true},[\"font-family:Raleway\"]],[false,{\".top-service\":false},[\"margin-top:0\"]],[true,{\":root\":true},[\"--btn_color:#0e2748\",\"--main_color:#0e2748\"]],[true,{\"a:hover\":true},[\"color:var(--main_color)\"]],[false,{\".btn-consultation\":false},[\"background-color:#00c3fc\",\"border-radius:30px\",\"padding:25px 50px\",\"color:var(--btn_color)\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\",\"z-index:3\",\"white-space:nowrap\"]],[true,{\"h1\":true,\"h2\":true,\"h3\":true,\"h4\":true,\"h5\":true,\"h6\":true},[\"font-family:Raleway\"]],[false,{\".machine_banner h1\":false},[\"font-size:60px\",\"font-weight:bold\",\"text-align:left\",\"line-height:60px\"]],[false,{\".machine_banner p\":false},[\"color:#28d9cb\",\"margin-bottom:24px\",\"font-family:Roboto\",\"font-size:16px\",\"line-height:22px\",\"text-align:left\"]],[false,{\".service_machine_new\":false},[\"background-color:#fff\"]],[false,{\".machine_future\":false},[\"margin-top:100px\"]],[false,{\".text-strong\":false},[\"font-size:50px\",\"font-weight:bold\",\"white-space:nowrap\"]],[false,{\".text-strong\":false},[\"color:#24c1ff\"]],[false,{\".machine_future h2\":false},[\"line-height:50px\"]],[false,{\".machine_future h2\":false,\".machine_future amp-img\":false,\".machine_future amp-anim\":false},[\"margin:40px 0px\",\"font-family:Raleway\",\"font-size:50px\"]],[false,{\".machine_future amp-img\":false,\".machine_future amp-anim\":false},[\"background-size:cover\"]],[false,{\".machine_future i\":false},[\"color:rgba(112,128,167,1)\",\"font-size:16px\",\"margin-right:10px\"]],[false,{\".machine_future h6\":false},[\"color:#7080a7\",\"margin-bottom:0\",\"font-family:Roboto\",\"font-size:18px\"]],[false,{\".machine_text\":false},[\"color:#707070\",\"width:90%\",\"font-size:20px\",\"line-height:32px\",\"margin-bottom:80px\"]],[false,{\".about-service\":false},[\"padding-bottom:120px\"]],[false,{\".about-service .slider-about\":false},[\"padding:0\"]],[false,{\".slider-about > div\":false},[\"height:100%\"]],[false,{\".service-machine-selection\":false},[\"display:flex\",\"justify-content:space-around\",\"background-color:#f1f1f1\",\"padding:15px 15px\",\"margin:0px\",\"border-radius:40px\"]],[false,{\".service-machine-selection > a\":false},[\"border-radius:40px\",\"padding:10px\",\"width:100%\",\"flex:1\",\"text-align:center\",\"color:#707070\",\"font-weight:bold\",\"font-size:20px\"]],[false,{\".slider-about_problems\":false,\".slider-about_solutions\":false},[\"padding:0px 50px\"]],[false,{\".slider-about_problems h3\":false},[\"font-weight:bold\",\"font-size:32px\",\"text-align:left\",\"line-height:40px\"]],[false,{\".slider-about_problems h4\":false},[\"font-size:20px\",\"color:#434343\",\"font-family:Raleway\",\"font-weight:bold\",\"line-height:32px\",\"text-align:left\"]],[false,{\".slider-about_problems p\":false},[\"font-size:18px\",\"line-height:30px\",\"line-height:40px\",\"text-align:left\"]],[false,{\".item-carousel-1:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[false,{\".item-carousel-1 amp-img\":false,\".item-carousel-1 amp-anim\":false},[\"vertical-align:top\",\"margin:0\"]],[false,{\".slider-about_problems > div:last-child\":false},[\"font-size:32px\",\"display:flex\",\"justify-content:center\",\"color:#152649\",\"font-weight:bold\"]],[false,{\".first_solution > div\":false,\".second_solution > div\":false,\".last_solution > div\":false},[\"margin-bottom:50px\"]],[false,{\".slider-about_solutions h3\":false},[\"font-weight:bold\",\"font-size:32px\",\"text-align:left\",\"line-height:40px\"]],[false,{\".slider-about_solutions amp-img\":false,\".slider-about_solutions amp-anim\":false},[\"margin:0px\",\"margin-top:5px\",\"min-width:24px\",\"height:24px\"]],[false,{\".first_solution p:first-child\":false},[\"font-weight:bold\",\"font-size:20px\",\"line-height:32px\",\"color:#434343\",\"margin-bottom:50px\"]],[false,{\".first_solution p\":false,\".second_solution p\":false,\".last_solution p\":false},[\"color:#152649\",\"font-size:1.125rem\",\"line-height:30px\",\"text-align:left\"]],[false,{\".slider-about-text-strong\":false},[\"color:#28d9cb\"]],[false,{\".difference_slice\":false},[\"padding:0px 50px\"]],[false,{\".difference_slice div:first-child\":false},[\"align-items:center\"]],[false,{\".difference_slice div:first-child h3\":false},[\"text-align:left\",\"color:#152649\",\"font-size:32px\",\"font-weight:bold\",\"line-height:40px\"]],[false,{\".difference_slice div:last-child p\":false},[\"text-align:left\",\"color:#434343\",\"font-size:18px\",\"line-height:30px\"]],[false,{\".trusted-relationships\":false},[\"background-color:#f1f1f1\",\"padding-bottom:200px\"]],[false,{\".trusted-relationships h2\":false},[\"margin-top:156px\",\"margin-bottom:80px\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".btn-relationship\":false},[\"position:absolute\",\"margin:0\",\"margin-top:-35px\",\"background-color:#00c3fc\",\"border-radius:30px\",\"padding:25px 38px\",\"color:var(--main_color)\",\"width:auto\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\",\"display:inline\",\"left:0\",\"z-index:1\"]],[false,{\".card\":false},[\"background-color:transparent\",\"border-color:transparent\"]],[false,{\".card:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:20px\"]],[false,{\".card h3\":false},[\"cursor:pointer\",\"font-size:18px\",\"font-weight:bold\"]],[false,{\".card amp-img\":false,\".card amp-anim\":false},[\"width:24px\",\"height:24px\",\"margin:0px\",\"margin-top:2px\"]],[false,{\".card i\":false},[\"color:#24c1ff\",\"font-size:medium\",\"margin-left:10px\",\"margin-top:5px\",\"display:none\"]],[false,{\"#enterprise_and_fastest_content\":false},[\"position:absolute\",\"width:100%\"]],[false,{\"#enterprise_and_fastest_content:not(#_#_#_#_#_#_#_)\":false},[\"top:-130px\"]],[false,{\"#enterprise_and_fastest_content div\":false},[\"min-height:150px\",\"border-radius:24px\",\"display:flex\",\"justify-content:center\",\"padding:48px\"]],[false,{\"#enterprise_and_fastest_content div:first-child\":false},[\"background-color:#152649\",\"color:#24c1ff\"]],[false,{\"#enterprise_and_fastest_content div:first-child p\":false},[\"color:#24c1ff\",\"text-align:center\",\"font-size:24px\",\"font-weight:bold\",\"line-height:36px\"]],[false,{\"#enterprise_and_fastest_content div:nth-child(2) h2\":false},[\"font-size:50px\",\"line-height:50px\"]],[false,{\"#enterprise_and_fastest_content div:last-child\":false},[\"background-color:#f5f5f5\",\"box-shadow:rgba(0,0,0,.45) 0px 25px 20px -20px\",\"display:flex\",\"flex-direction:column\",\"justify-content:flex-start\"]],[false,{\"#enterprise_and_fastest_content div:last-child p\":false},[\"font-style:italic\",\"color:#707070\",\"text-align:left\",\"font-size:20px\"]],[false,{\"#enterprise_and_fastest_content div:last-child p:last-child\":false},[\"margin:0\",\"font-weight:bold\",\"font-style:normal\"]],[false,{\"#enterprise_and_fastest_content div:last-child amp-img\":false,\"#enterprise_and_fastest_content div:last-child amp-anim\":false},[\"width:40px\",\"height:40px\",\"left:45px\",\"top:-20px\"]],[false,{\".business\":false},[\"box-shadow:inset 0px 11px 8px -10px rgba(0,0,0,.1),inset 0px -11px 8px -10px rgba(0,0,0,.1)\"]],[false,{\".business-content\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\",\"align-items:center\",\"padding:50px 0px\",\"position:relative\"]],[false,{\".business-content a\":false},[\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:40px\",\"float:right\"]],[false,{\".business-content h2\":false},[\"text-align:center\",\"margin-bottom:0\",\"font-family:Raleway\",\"font-weight:bold\",\"font-size:50px\",\"line-height:50px\"]],[false,\"@media screen and (max-width: 992px){\"],[false,{\".card i\":false},[\"display:block\"]],[false,{\".card > div:last-child\":false},[\"display:none\"]],[false,{\".card\":false},[\"border-top:1px solid rgba(138,138,138,.34)\",\"padding:30px 0px 15px 0px\",\"border-radius:0\"]],[false,{\".business a\":false},[\"position:absolute\",\"bottom:-40px\",\"left:0\",\"right:0\",\"margin-left:auto\",\"margin-right:auto\",\"text-align:center\",\"width:306px\"]],[false,{\".btn-relationship\":false},[\"left:50%\",\"transform:translate(-50%,0%)\",\"white-space:nowrap\"]],[false,{\".business-content\":false},[\"flex-direction:column\"]],[false,\"}\"],[false,{\".selected\":false},[\"background-color:white\",\"border:none\"]],[false,{\".selected:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--main_color)\"]],[false,{\"#container\":false},[\"position:relative\",\"overflow:hidden\",\"clear:left\",\"padding:50px 0px\"]],[false,{\".box\":false},[\"position:absolute\",\"top:0\",\"left:0\"]],[false,{\"#first\":false},[\"top:0px\",\"left:0px\",\"width:100%\",\"display:flex\"]],[false,{\"#second\":false},[\"top:0px\",\"width:100%\"]],[false,{\"#third\":false},[\"top:0px\",\"width:100%\"]],[false,{\"#slide\":false},[\"transition:transform .5s ease-in-out 0s\",\"-moz-transition:-moz-transform .5s ease-in-out 0s\",\"-webkit-transition:-webkit-transform .5s ease-in-out 0s\",\"min-height:50px\"]],[false,{\".move-to-second\":false},[\"transform:translateX(var(--tab_second))\",\"-moz-transform:translateX(var(--tab_second))\",\"-webkit-transform:translateX(var(--tab_second))\"]],[false,{\".move-to-third\":false},[\"transform:translateX(var(--tab_third))\",\"-moz-transform:translateX(var(--tab_third))\",\"-webkit-transform:translateX(var(--tab_third))\"]],[false,{\".move-to-first\":false},[\"transform:translateX(0px)\",\"-moz-transform:translateX(0px)\",\"-webkit-transform:translateX(0px)\"]],[false,{\".machine_future_title h2\":false,\".machine_future_title span\":false,\".machine_future_title p\":false},[\"font-size:50px\"]],[false,\"@media screen and (max-width: 540px){\"],[false,{\".machine_text\":false},[\"width:100%\"]],[false,{\".difference_slice\":false},[\"padding:0px 20px\"]],[false,{\".first_solution > div\":false,\".second_solution > div\":false,\".last_solution > div\":false},[\"margin-bottom:0\"]],[false,{\"#third\":false},[\"padding:20px\"]],[false,{\"#first\":false,\"#second\":false,\"#third\":false},[\"background-color:#f1f1f1\",\"border-radius:24px\",\"box-shadow:rgba(0,0,0,.45) 0px 25px 20px -20px\"]],[false,{\"#first:not(#_#_#_#_#_#_#_)\":false,\"#second:not(#_#_#_#_#_#_#_)\":false,\"#third:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".service-machine-selection > a\":false},[\"font-size:17px\"]],[false,{\"#container\":false},[\"padding-top:15px\"]],[false,{\".btn-consultation\":false},[\"padding:25px 25px\"]],[false,{\".machine_future_title h2\":false,\".machine_future_title span\":false,\".machine_future_title p\":false},[\"font-size:45px\"]],[false,\"}\"],[false,\"@media screen and (min-width: 1440px){\"],[false,{\".containerWidth\":false},[\"max-width:1232px\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media screen and (min-width: 1440px){\"],[false,{\".containerWidth\":false},[\"max-width:1220px\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media screen and (max-width: 1439px){\"],[false,{\".containerWidth\":false},[\"max-width:calc(100vw * .87692307692)\",\"margin:0px auto\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1776,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"type\":\"text\\/css\",\"href\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/slick-carousel@1.8.1\\/slick\\/slick.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"503d87b8e892b897f5d05df814fbc0c4\",\"parse_time\":0.008713960647583008,\"shake_time\":2.002716064453125e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".slick-slider\":false},[\"position:relative\",\"display:block\",\"box-sizing:border-box\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\",\"-webkit-touch-callout:none\",\"-khtml-user-select:none\",\"-ms-touch-action:pan-y\",\"touch-action:pan-y\",\"-webkit-tap-highlight-color:transparent\"]],[false,{\".slick-list\":false},[\"position:relative\",\"display:block\",\"overflow:hidden\",\"margin:0\",\"padding:0\"]],[false,{\".slick-list:focus\":false},[\"outline:none\"]],[false,{\".slick-list.dragging\":false},[\"cursor:pointer\",\"cursor:hand\"]],[false,{\".slick-slider .slick-track\":false,\".slick-slider .slick-list\":false},[\"-webkit-transform:translate3d(0,0,0)\",\"-moz-transform:translate3d(0,0,0)\",\"-ms-transform:translate3d(0,0,0)\",\"-o-transform:translate3d(0,0,0)\",\"transform:translate3d(0,0,0)\"]],[false,{\".slick-track\":false},[\"position:relative\",\"top:0\",\"left:0\",\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".slick-track:before\":false,\".slick-track:after\":false},[\"display:table\",\"content:\\\"\\\"\"]],[false,{\".slick-track:after\":false},[\"clear:both\"]],[false,{\".slick-loading .slick-track\":false},[\"visibility:hidden\"]],[false,{\".slick-slide\":false},[\"display:none\",\"float:left\",\"height:100%\",\"min-height:1px\"]],[false,{\"[dir=\'rtl\'] .slick-slide\":false},[\"float:right\"]],[false,{\".slick-slide amp-img\":false,\".slick-slide amp-anim\":false},[\"display:block\"]],[false,{\".slick-slide.slick-loading amp-img\":false,\".slick-slide.slick-loading amp-anim\":false},[\"display:none\"]],[false,{\".slick-slide.dragging amp-img\":false,\".slick-slide.dragging amp-anim\":false},[\"pointer-events:none\"]],[false,{\".slick-initialized .slick-slide\":false},[\"display:block\"]],[false,{\".slick-loading .slick-slide\":false},[\"visibility:hidden\"]],[false,{\".slick-vertical .slick-slide\":false},[\"display:block\",\"height:auto\",\"border:1px solid transparent\"]],[false,{\".slick-arrow.slick-hidden\":false},[\"display:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":100701,\"final_size\":8643,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/css\\/all.min.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"2b9f797b620fd0348167564267b11933\",\"parse_time\":2.449489116668701,\"shake_time\":0.003476858139038086,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-v4compatibility.woff2\"],\"shaken_tokens\":[[false,{\".fa\":false},[\"font-family:var(--fa-style-family,\\\"Font Awesome 6 Free\\\")\",\"font-weight:var(--fa-style,900)\"]],[true,{\".fa\":false,\".fa-brands\":false,\".fa-duotone\":false,\".fa-light\":false,\".fa-regular\":false,\".fa-solid\":false,\".fa-thin\":false,\".fab\":false,\".fad\":false,\".fal\":false,\".far\":false,\".fas\":true,\".fat\":false},[\"-moz-osx-font-smoothing:grayscale\",\"-webkit-font-smoothing:antialiased\",\"display:var(--fa-display,inline-block)\",\"font-style:normal\",\"font-variant:normal\",\"line-height:1\",\"text-rendering:auto\"]],[false,{\".fa-1x\":false},[\"font-size:1em\"]],[false,{\".fa-2x\":false},[\"font-size:2em\"]],[false,{\".fa-3x\":false},[\"font-size:3em\"]],[false,{\".fa-4x\":false},[\"font-size:4em\"]],[false,{\".fa-5x\":false},[\"font-size:5em\"]],[false,{\".fa-6x\":false},[\"font-size:6em\"]],[false,{\".fa-7x\":false},[\"font-size:7em\"]],[false,{\".fa-8x\":false},[\"font-size:8em\"]],[false,{\".fa-9x\":false},[\"font-size:9em\"]],[false,{\".fa-10x\":false},[\"font-size:10em\"]],[false,{\".fa-2xs\":false},[\"font-size:.625em\",\"line-height:.1em\",\"vertical-align:.225em\"]],[false,{\".fa-xs\":false},[\"font-size:.75em\",\"line-height:.08333em\",\"vertical-align:.125em\"]],[false,{\".fa-sm\":false},[\"font-size:.875em\",\"line-height:.07143em\",\"vertical-align:.05357em\"]],[false,{\".fa-lg\":false},[\"font-size:1.25em\",\"line-height:.05em\",\"vertical-align:-.075em\"]],[false,{\".fa-xl\":false},[\"font-size:1.5em\",\"line-height:.04167em\",\"vertical-align:-.125em\"]],[false,{\".fa-2xl\":false},[\"font-size:2em\",\"line-height:.03125em\",\"vertical-align:-.1875em\"]],[false,{\".fa-fw\":false},[\"text-align:center\",\"width:1.25em\"]],[false,{\".fa-ul\":false},[\"list-style-type:none\",\"margin-left:var(--fa-li-margin,2.5em)\",\"padding-left:0\"]],[false,{\".fa-ul>li\":false},[\"position:relative\"]],[false,{\".fa-li\":false},[\"left:calc(var(--fa-li-width,2em) * -1)\",\"position:absolute\",\"text-align:center\",\"width:var(--fa-li-width,2em)\",\"line-height:inherit\"]],[false,{\".fa-border\":false},[\"border-radius:var(--fa-border-radius,.1em)\",\"border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee)\",\"padding:var(--fa-border-padding,.2em .25em .15em)\"]],[false,{\".fa-pull-left\":false},[\"float:left\",\"margin-right:var(--fa-pull-margin,.3em)\"]],[false,{\".fa-pull-right\":false},[\"float:right\",\"margin-left:var(--fa-pull-margin,.3em)\"]],[false,{\".fa-beat\":false},[\"-webkit-animation-name:fa-beat\",\"animation-name:fa-beat\",\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out)\",\"animation-timing-function:var(--fa-animation-timing,ease-in-out)\"]],[false,{\".fa-bounce\":false},[\"-webkit-animation-name:fa-bounce\",\"animation-name:fa-bounce\",\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))\",\"animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))\"]],[false,{\".fa-fade\":false},[\"-webkit-animation-name:fa-fade\",\"animation-name:fa-fade\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\",\"animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\"]],[false,{\".fa-beat-fade\":false,\".fa-fade\":false},[\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\"]],[false,{\".fa-beat-fade\":false},[\"-webkit-animation-name:fa-beat-fade\",\"animation-name:fa-beat-fade\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\",\"animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\"]],[false,{\".fa-flip\":false},[\"-webkit-animation-name:fa-flip\",\"animation-name:fa-flip\",\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out)\",\"animation-timing-function:var(--fa-animation-timing,ease-in-out)\"]],[false,{\".fa-shake\":false},[\"-webkit-animation-name:fa-shake\",\"animation-name:fa-shake\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,linear)\",\"animation-timing-function:var(--fa-animation-timing,linear)\"]],[false,{\".fa-shake\":false,\".fa-spin\":false},[\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\"]],[false,{\".fa-spin\":false},[\"-webkit-animation-name:fa-spin\",\"animation-name:fa-spin\",\"-webkit-animation-duration:var(--fa-animation-duration,2s)\",\"animation-duration:var(--fa-animation-duration,2s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,linear)\",\"animation-timing-function:var(--fa-animation-timing,linear)\"]],[false,{\".fa-spin-reverse\":false},[\"--fa-animation-direction:reverse\"]],[false,{\".fa-pulse\":false,\".fa-spin-pulse\":false},[\"-webkit-animation-name:fa-spin\",\"animation-name:fa-spin\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,steps(8))\",\"animation-timing-function:var(--fa-animation-timing,steps(8))\"]],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".fa-beat\":false,\".fa-beat-fade\":false,\".fa-bounce\":false,\".fa-fade\":false,\".fa-flip\":false,\".fa-pulse\":false,\".fa-shake\":false,\".fa-spin\":false,\".fa-spin-pulse\":false},[\"-webkit-animation-delay:-1ms\",\"animation-delay:-1ms\",\"-webkit-animation-duration:1ms\",\"animation-duration:1ms\",\"-webkit-animation-iteration-count:1\",\"animation-iteration-count:1\",\"transition-delay:0s\",\"transition-duration:0s\"]],[false,\"}\"],[true,\"@-webkit-keyframes fa-beat{\"],[true,\"0%,90%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}\"],[true,\"}@keyframes fa-beat{\"],[true,\"0%,90%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}\"],[true,\"}@-webkit-keyframes fa-bounce{\"],[true,\"0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}\"],[true,\"30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}\"],[true,\"50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}\"],[true,\"57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}\"],[true,\"64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"}@keyframes fa-bounce{\"],[true,\"0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}\"],[true,\"30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}\"],[true,\"50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}\"],[true,\"57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}\"],[true,\"64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"}@-webkit-keyframes fa-fade{\"],[true,\"50%{opacity:var(--fa-fade-opacity,.4)}\"],[true,\"}@keyframes fa-fade{\"],[true,\"50%{opacity:var(--fa-fade-opacity,.4)}\"],[true,\"}@-webkit-keyframes fa-beat-fade{\"],[true,\"0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}\"],[true,\"}@keyframes fa-beat-fade{\"],[true,\"0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}\"],[true,\"}@-webkit-keyframes fa-flip{\"],[true,\"50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}\"],[true,\"}@keyframes fa-flip{\"],[true,\"50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}\"],[true,\"}@-webkit-keyframes fa-shake{\"],[true,\"0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}\"],[true,\"4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}\"],[true,\"12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}\"],[true,\"16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}\"],[true,\"20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}\"],[true,\"32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}\"],[true,\"36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}\"],[true,\"40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}@keyframes fa-shake{\"],[true,\"0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}\"],[true,\"4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}\"],[true,\"12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}\"],[true,\"16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}\"],[true,\"20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}\"],[true,\"32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}\"],[true,\"36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}\"],[true,\"40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}@-webkit-keyframes fa-spin{\"],[true,\"0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}\"],[true,\"}@keyframes fa-spin{\"],[true,\"0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}\"],[true,\"}\"],[false,{\".fa-rotate-90\":false},[\"-webkit-transform:rotate(90deg)\",\"transform:rotate(90deg)\"]],[false,{\".fa-rotate-180\":false},[\"-webkit-transform:rotate(180deg)\",\"transform:rotate(180deg)\"]],[false,{\".fa-rotate-270\":false},[\"-webkit-transform:rotate(270deg)\",\"transform:rotate(270deg)\"]],[false,{\".fa-flip-horizontal\":false},[\"-webkit-transform:scaleX(-1)\",\"transform:scaleX(-1)\"]],[false,{\".fa-flip-vertical\":false},[\"-webkit-transform:scaleY(-1)\",\"transform:scaleY(-1)\"]],[false,{\".fa-flip-both\":false,\".fa-flip-horizontal.fa-flip-vertical\":false},[\"-webkit-transform:scale(-1)\",\"transform:scale(-1)\"]],[false,{\".fa-rotate-by\":false},[\"-webkit-transform:rotate(var(--fa-rotate-angle,none))\",\"transform:rotate(var(--fa-rotate-angle,none))\"]],[false,{\".fa-stack\":false},[\"display:inline-block\",\"height:2em\",\"line-height:2em\",\"position:relative\",\"vertical-align:middle\",\"width:2.5em\"]],[false,{\".fa-stack-1x\":false,\".fa-stack-2x\":false},[\"left:0\",\"position:absolute\",\"text-align:center\",\"width:100%\",\"z-index:var(--fa-stack-z-index,auto)\"]],[false,{\".fa-stack-1x\":false},[\"line-height:inherit\"]],[false,{\".fa-stack-2x\":false},[\"font-size:2em\"]],[false,{\".fa-inverse\":false},[\"color:var(--fa-inverse,#fff)\"]],[false,{\".fa-0:before\":false},[\"content:\\\"0\\\"\"]],[false,{\".fa-1:before\":false},[\"content:\\\"1\\\"\"]],[false,{\".fa-2:before\":false},[\"content:\\\"2\\\"\"]],[false,{\".fa-3:before\":false},[\"content:\\\"3\\\"\"]],[false,{\".fa-4:before\":false},[\"content:\\\"4\\\"\"]],[false,{\".fa-5:before\":false},[\"content:\\\"5\\\"\"]],[false,{\".fa-6:before\":false},[\"content:\\\"6\\\"\"]],[false,{\".fa-7:before\":false},[\"content:\\\"7\\\"\"]],[false,{\".fa-8:before\":false},[\"content:\\\"8\\\"\"]],[false,{\".fa-9:before\":false},[\"content:\\\"9\\\"\"]],[false,{\".fa-a:before\":false},[\"content:\\\"A\\\"\"]],[false,{\".fa-address-book:before\":false,\".fa-contact-book:before\":false},[\"content:\\\"\\uf2b9\\\"\"]],[false,{\".fa-address-card:before\":false,\".fa-contact-card:before\":false,\".fa-vcard:before\":false},[\"content:\\\"\\uf2bb\\\"\"]],[false,{\".fa-align-center:before\":false},[\"content:\\\"\\uf037\\\"\"]],[false,{\".fa-align-justify:before\":false},[\"content:\\\"\\uf039\\\"\"]],[false,{\".fa-align-left:before\":false},[\"content:\\\"\\uf036\\\"\"]],[false,{\".fa-align-right:before\":false},[\"content:\\\"\\uf038\\\"\"]],[false,{\".fa-anchor:before\":false},[\"content:\\\"\\uf13d\\\"\"]],[false,{\".fa-anchor-circle-check:before\":false},[\"content:\\\"\\ue4aa\\\"\"]],[false,{\".fa-anchor-circle-exclamation:before\":false},[\"content:\\\"\\ue4ab\\\"\"]],[false,{\".fa-anchor-circle-xmark:before\":false},[\"content:\\\"\\ue4ac\\\"\"]],[false,{\".fa-anchor-lock:before\":false},[\"content:\\\"\\ue4ad\\\"\"]],[false,{\".fa-angle-down:before\":false},[\"content:\\\"\\uf107\\\"\"]],[false,{\".fa-angle-left:before\":false},[\"content:\\\"\\uf104\\\"\"]],[false,{\".fa-angle-right:before\":false},[\"content:\\\"\\uf105\\\"\"]],[false,{\".fa-angle-up:before\":false},[\"content:\\\"\\uf106\\\"\"]],[false,{\".fa-angle-double-down:before\":false,\".fa-angles-down:before\":false},[\"content:\\\"\\uf103\\\"\"]],[false,{\".fa-angle-double-left:before\":false,\".fa-angles-left:before\":false},[\"content:\\\"\\uf100\\\"\"]],[false,{\".fa-angle-double-right:before\":false,\".fa-angles-right:before\":false},[\"content:\\\"\\uf101\\\"\"]],[false,{\".fa-angle-double-up:before\":false,\".fa-angles-up:before\":false},[\"content:\\\"\\uf102\\\"\"]],[false,{\".fa-ankh:before\":false},[\"content:\\\"\\uf644\\\"\"]],[false,{\".fa-apple-alt:before\":false,\".fa-apple-whole:before\":false},[\"content:\\\"\\uf5d1\\\"\"]],[false,{\".fa-archway:before\":false},[\"content:\\\"\\uf557\\\"\"]],[false,{\".fa-arrow-down:before\":false},[\"content:\\\"\\uf063\\\"\"]],[false,{\".fa-arrow-down-1-9:before\":false,\".fa-sort-numeric-asc:before\":false,\".fa-sort-numeric-down:before\":false},[\"content:\\\"\\uf162\\\"\"]],[false,{\".fa-arrow-down-9-1:before\":false,\".fa-sort-numeric-desc:before\":false,\".fa-sort-numeric-down-alt:before\":false},[\"content:\\\"\\uf886\\\"\"]],[false,{\".fa-arrow-down-a-z:before\":false,\".fa-sort-alpha-asc:before\":false,\".fa-sort-alpha-down:before\":false},[\"content:\\\"\\uf15d\\\"\"]],[false,{\".fa-arrow-down-long:before\":false,\".fa-long-arrow-down:before\":false},[\"content:\\\"\\uf175\\\"\"]],[false,{\".fa-arrow-down-short-wide:before\":false,\".fa-sort-amount-desc:before\":false,\".fa-sort-amount-down-alt:before\":false},[\"content:\\\"\\uf884\\\"\"]],[false,{\".fa-arrow-down-up-across-line:before\":false},[\"content:\\\"\\ue4af\\\"\"]],[false,{\".fa-arrow-down-up-lock:before\":false},[\"content:\\\"\\ue4b0\\\"\"]],[false,{\".fa-arrow-down-wide-short:before\":false,\".fa-sort-amount-asc:before\":false,\".fa-sort-amount-down:before\":false},[\"content:\\\"\\uf160\\\"\"]],[false,{\".fa-arrow-down-z-a:before\":false,\".fa-sort-alpha-desc:before\":false,\".fa-sort-alpha-down-alt:before\":false},[\"content:\\\"\\uf881\\\"\"]],[false,{\".fa-arrow-left:before\":false},[\"content:\\\"\\uf060\\\"\"]],[false,{\".fa-arrow-left-long:before\":false,\".fa-long-arrow-left:before\":false},[\"content:\\\"\\uf177\\\"\"]],[false,{\".fa-arrow-pointer:before\":false,\".fa-mouse-pointer:before\":false},[\"content:\\\"\\uf245\\\"\"]],[false,{\".fa-arrow-right:before\":false},[\"content:\\\"\\uf061\\\"\"]],[false,{\".fa-arrow-right-arrow-left:before\":false,\".fa-exchange:before\":false},[\"content:\\\"\\uf0ec\\\"\"]],[false,{\".fa-arrow-right-from-bracket:before\":false,\".fa-sign-out:before\":false},[\"content:\\\"\\uf08b\\\"\"]],[false,{\".fa-arrow-right-long:before\":false,\".fa-long-arrow-right:before\":false},[\"content:\\\"\\uf178\\\"\"]],[false,{\".fa-arrow-right-to-bracket:before\":false,\".fa-sign-in:before\":false},[\"content:\\\"\\uf090\\\"\"]],[false,{\".fa-arrow-right-to-city:before\":false},[\"content:\\\"\\ue4b3\\\"\"]],[false,{\".fa-arrow-left-rotate:before\":false,\".fa-arrow-rotate-back:before\":false,\".fa-arrow-rotate-backward:before\":false,\".fa-arrow-rotate-left:before\":false,\".fa-undo:before\":false},[\"content:\\\"\\uf0e2\\\"\"]],[false,{\".fa-arrow-right-rotate:before\":false,\".fa-arrow-rotate-forward:before\":false,\".fa-arrow-rotate-right:before\":false,\".fa-redo:before\":false},[\"content:\\\"\\uf01e\\\"\"]],[false,{\".fa-arrow-trend-down:before\":false},[\"content:\\\"\\ue097\\\"\"]],[false,{\".fa-arrow-trend-up:before\":false},[\"content:\\\"\\ue098\\\"\"]],[false,{\".fa-arrow-turn-down:before\":false,\".fa-level-down:before\":false},[\"content:\\\"\\uf149\\\"\"]],[false,{\".fa-arrow-turn-up:before\":false,\".fa-level-up:before\":false},[\"content:\\\"\\uf148\\\"\"]],[false,{\".fa-arrow-up:before\":false},[\"content:\\\"\\uf062\\\"\"]],[false,{\".fa-arrow-up-1-9:before\":false,\".fa-sort-numeric-up:before\":false},[\"content:\\\"\\uf163\\\"\"]],[false,{\".fa-arrow-up-9-1:before\":false,\".fa-sort-numeric-up-alt:before\":false},[\"content:\\\"\\uf887\\\"\"]],[false,{\".fa-arrow-up-a-z:before\":false,\".fa-sort-alpha-up:before\":false},[\"content:\\\"\\uf15e\\\"\"]],[false,{\".fa-arrow-up-from-bracket:before\":false},[\"content:\\\"\\ue09a\\\"\"]],[false,{\".fa-arrow-up-from-ground-water:before\":false},[\"content:\\\"\\ue4b5\\\"\"]],[false,{\".fa-arrow-up-from-water-pump:before\":false},[\"content:\\\"\\ue4b6\\\"\"]],[false,{\".fa-arrow-up-long:before\":false,\".fa-long-arrow-up:before\":false},[\"content:\\\"\\uf176\\\"\"]],[false,{\".fa-arrow-up-right-dots:before\":false},[\"content:\\\"\\ue4b7\\\"\"]],[false,{\".fa-arrow-up-right-from-square:before\":false,\".fa-external-link:before\":false},[\"content:\\\"\\uf08e\\\"\"]],[false,{\".fa-arrow-up-short-wide:before\":false,\".fa-sort-amount-up-alt:before\":false},[\"content:\\\"\\uf885\\\"\"]],[false,{\".fa-arrow-up-wide-short:before\":false,\".fa-sort-amount-up:before\":false},[\"content:\\\"\\uf161\\\"\"]],[false,{\".fa-arrow-up-z-a:before\":false,\".fa-sort-alpha-up-alt:before\":false},[\"content:\\\"\\uf882\\\"\"]],[false,{\".fa-arrows-down-to-line:before\":false},[\"content:\\\"\\ue4b8\\\"\"]],[false,{\".fa-arrows-down-to-people:before\":false},[\"content:\\\"\\ue4b9\\\"\"]],[false,{\".fa-arrows-h:before\":false,\".fa-arrows-left-right:before\":false},[\"content:\\\"\\uf07e\\\"\"]],[false,{\".fa-arrows-left-right-to-line:before\":false},[\"content:\\\"\\ue4ba\\\"\"]],[false,{\".fa-arrows-rotate:before\":false,\".fa-refresh:before\":false,\".fa-sync:before\":false},[\"content:\\\"\\uf021\\\"\"]],[false,{\".fa-arrows-spin:before\":false},[\"content:\\\"\\ue4bb\\\"\"]],[false,{\".fa-arrows-split-up-and-left:before\":false},[\"content:\\\"\\ue4bc\\\"\"]],[false,{\".fa-arrows-to-circle:before\":false},[\"content:\\\"\\ue4bd\\\"\"]],[false,{\".fa-arrows-to-dot:before\":false},[\"content:\\\"\\ue4be\\\"\"]],[false,{\".fa-arrows-to-eye:before\":false},[\"content:\\\"\\ue4bf\\\"\"]],[false,{\".fa-arrows-turn-right:before\":false},[\"content:\\\"\\ue4c0\\\"\"]],[false,{\".fa-arrows-turn-to-dots:before\":false},[\"content:\\\"\\ue4c1\\\"\"]],[false,{\".fa-arrows-up-down:before\":false,\".fa-arrows-v:before\":false},[\"content:\\\"\\uf07d\\\"\"]],[false,{\".fa-arrows-up-down-left-right:before\":false,\".fa-arrows:before\":false},[\"content:\\\"\\uf047\\\"\"]],[false,{\".fa-arrows-up-to-line:before\":false},[\"content:\\\"\\ue4c2\\\"\"]],[false,{\".fa-asterisk:before\":false},[\"content:\\\"*\\\"\"]],[false,{\".fa-at:before\":false},[\"content:\\\"@\\\"\"]],[false,{\".fa-atom:before\":false},[\"content:\\\"\\uf5d2\\\"\"]],[false,{\".fa-audio-description:before\":false},[\"content:\\\"\\uf29e\\\"\"]],[false,{\".fa-austral-sign:before\":false},[\"content:\\\"\\ue0a9\\\"\"]],[false,{\".fa-award:before\":false},[\"content:\\\"\\uf559\\\"\"]],[false,{\".fa-b:before\":false},[\"content:\\\"B\\\"\"]],[false,{\".fa-baby:before\":false},[\"content:\\\"\\uf77c\\\"\"]],[false,{\".fa-baby-carriage:before\":false,\".fa-carriage-baby:before\":false},[\"content:\\\"\\uf77d\\\"\"]],[false,{\".fa-backward:before\":false},[\"content:\\\"\\uf04a\\\"\"]],[false,{\".fa-backward-fast:before\":false,\".fa-fast-backward:before\":false},[\"content:\\\"\\uf049\\\"\"]],[false,{\".fa-backward-step:before\":false,\".fa-step-backward:before\":false},[\"content:\\\"\\uf048\\\"\"]],[false,{\".fa-bacon:before\":false},[\"content:\\\"\\uf7e5\\\"\"]],[false,{\".fa-bacteria:before\":false},[\"content:\\\"\\ue059\\\"\"]],[false,{\".fa-bacterium:before\":false},[\"content:\\\"\\ue05a\\\"\"]],[false,{\".fa-bag-shopping:before\":false,\".fa-shopping-bag:before\":false},[\"content:\\\"\\uf290\\\"\"]],[false,{\".fa-bahai:before\":false},[\"content:\\\"\\uf666\\\"\"]],[false,{\".fa-baht-sign:before\":false},[\"content:\\\"\\ue0ac\\\"\"]],[false,{\".fa-ban:before\":false,\".fa-cancel:before\":false},[\"content:\\\"\\uf05e\\\"\"]],[false,{\".fa-ban-smoking:before\":false,\".fa-smoking-ban:before\":false},[\"content:\\\"\\uf54d\\\"\"]],[false,{\".fa-band-aid:before\":false,\".fa-bandage:before\":false},[\"content:\\\"\\uf462\\\"\"]],[false,{\".fa-barcode:before\":false},[\"content:\\\"\\uf02a\\\"\"]],[false,{\".fa-bars:before\":false,\".fa-navicon:before\":false},[\"content:\\\"\\uf0c9\\\"\"]],[false,{\".fa-bars-progress:before\":false,\".fa-tasks-alt:before\":false},[\"content:\\\"\\uf828\\\"\"]],[false,{\".fa-bars-staggered:before\":false,\".fa-reorder:before\":false,\".fa-stream:before\":false},[\"content:\\\"\\uf550\\\"\"]],[false,{\".fa-baseball-ball:before\":false,\".fa-baseball:before\":false},[\"content:\\\"\\uf433\\\"\"]],[false,{\".fa-baseball-bat-ball:before\":false},[\"content:\\\"\\uf432\\\"\"]],[false,{\".fa-basket-shopping:before\":false,\".fa-shopping-basket:before\":false},[\"content:\\\"\\uf291\\\"\"]],[false,{\".fa-basketball-ball:before\":false,\".fa-basketball:before\":false},[\"content:\\\"\\uf434\\\"\"]],[false,{\".fa-bath:before\":false,\".fa-bathtub:before\":false},[\"content:\\\"\\uf2cd\\\"\"]],[false,{\".fa-battery-0:before\":false,\".fa-battery-empty:before\":false},[\"content:\\\"\\uf244\\\"\"]],[false,{\".fa-battery-5:before\":false,\".fa-battery-full:before\":false,\".fa-battery:before\":false},[\"content:\\\"\\uf240\\\"\"]],[false,{\".fa-battery-3:before\":false,\".fa-battery-half:before\":false},[\"content:\\\"\\uf242\\\"\"]],[false,{\".fa-battery-2:before\":false,\".fa-battery-quarter:before\":false},[\"content:\\\"\\uf243\\\"\"]],[false,{\".fa-battery-4:before\":false,\".fa-battery-three-quarters:before\":false},[\"content:\\\"\\uf241\\\"\"]],[false,{\".fa-bed:before\":false},[\"content:\\\"\\uf236\\\"\"]],[false,{\".fa-bed-pulse:before\":false,\".fa-procedures:before\":false},[\"content:\\\"\\uf487\\\"\"]],[false,{\".fa-beer-mug-empty:before\":false,\".fa-beer:before\":false},[\"content:\\\"\\uf0fc\\\"\"]],[false,{\".fa-bell:before\":false},[\"content:\\\"\\uf0f3\\\"\"]],[false,{\".fa-bell-concierge:before\":false,\".fa-concierge-bell:before\":false},[\"content:\\\"\\uf562\\\"\"]],[false,{\".fa-bell-slash:before\":false},[\"content:\\\"\\uf1f6\\\"\"]],[false,{\".fa-bezier-curve:before\":false},[\"content:\\\"\\uf55b\\\"\"]],[false,{\".fa-bicycle:before\":false},[\"content:\\\"\\uf206\\\"\"]],[false,{\".fa-binoculars:before\":false},[\"content:\\\"\\uf1e5\\\"\"]],[false,{\".fa-biohazard:before\":false},[\"content:\\\"\\uf780\\\"\"]],[false,{\".fa-bitcoin-sign:before\":false},[\"content:\\\"\\ue0b4\\\"\"]],[false,{\".fa-blender:before\":false},[\"content:\\\"\\uf517\\\"\"]],[false,{\".fa-blender-phone:before\":false},[\"content:\\\"\\uf6b6\\\"\"]],[false,{\".fa-blog:before\":false},[\"content:\\\"\\uf781\\\"\"]],[false,{\".fa-bold:before\":false},[\"content:\\\"\\uf032\\\"\"]],[false,{\".fa-bolt:before\":false,\".fa-zap:before\":false},[\"content:\\\"\\uf0e7\\\"\"]],[false,{\".fa-bolt-lightning:before\":false},[\"content:\\\"\\ue0b7\\\"\"]],[false,{\".fa-bomb:before\":false},[\"content:\\\"\\uf1e2\\\"\"]],[false,{\".fa-bone:before\":false},[\"content:\\\"\\uf5d7\\\"\"]],[false,{\".fa-bong:before\":false},[\"content:\\\"\\uf55c\\\"\"]],[false,{\".fa-book:before\":false},[\"content:\\\"\\uf02d\\\"\"]],[false,{\".fa-atlas:before\":false,\".fa-book-atlas:before\":false},[\"content:\\\"\\uf558\\\"\"]],[false,{\".fa-bible:before\":false,\".fa-book-bible:before\":false},[\"content:\\\"\\uf647\\\"\"]],[false,{\".fa-book-bookmark:before\":false},[\"content:\\\"\\ue0bb\\\"\"]],[false,{\".fa-book-journal-whills:before\":false,\".fa-journal-whills:before\":false},[\"content:\\\"\\uf66a\\\"\"]],[false,{\".fa-book-medical:before\":false},[\"content:\\\"\\uf7e6\\\"\"]],[false,{\".fa-book-open:before\":false},[\"content:\\\"\\uf518\\\"\"]],[false,{\".fa-book-open-reader:before\":false,\".fa-book-reader:before\":false},[\"content:\\\"\\uf5da\\\"\"]],[false,{\".fa-book-quran:before\":false,\".fa-quran:before\":false},[\"content:\\\"\\uf687\\\"\"]],[false,{\".fa-book-dead:before\":false,\".fa-book-skull:before\":false},[\"content:\\\"\\uf6b7\\\"\"]],[false,{\".fa-bookmark:before\":false},[\"content:\\\"\\uf02e\\\"\"]],[false,{\".fa-border-all:before\":false},[\"content:\\\"\\uf84c\\\"\"]],[false,{\".fa-border-none:before\":false},[\"content:\\\"\\uf850\\\"\"]],[false,{\".fa-border-style:before\":false,\".fa-border-top-left:before\":false},[\"content:\\\"\\uf853\\\"\"]],[false,{\".fa-bore-hole:before\":false},[\"content:\\\"\\ue4c3\\\"\"]],[false,{\".fa-bottle-droplet:before\":false},[\"content:\\\"\\ue4c4\\\"\"]],[false,{\".fa-bottle-water:before\":false},[\"content:\\\"\\ue4c5\\\"\"]],[false,{\".fa-bowl-food:before\":false},[\"content:\\\"\\ue4c6\\\"\"]],[false,{\".fa-bowl-rice:before\":false},[\"content:\\\"\\ue2eb\\\"\"]],[false,{\".fa-bowling-ball:before\":false},[\"content:\\\"\\uf436\\\"\"]],[false,{\".fa-box:before\":false},[\"content:\\\"\\uf466\\\"\"]],[false,{\".fa-archive:before\":false,\".fa-box-archive:before\":false},[\"content:\\\"\\uf187\\\"\"]],[false,{\".fa-box-open:before\":false},[\"content:\\\"\\uf49e\\\"\"]],[false,{\".fa-box-tissue:before\":false},[\"content:\\\"\\ue05b\\\"\"]],[false,{\".fa-boxes-packing:before\":false},[\"content:\\\"\\ue4c7\\\"\"]],[false,{\".fa-boxes-alt:before\":false,\".fa-boxes-stacked:before\":false,\".fa-boxes:before\":false},[\"content:\\\"\\uf468\\\"\"]],[false,{\".fa-braille:before\":false},[\"content:\\\"\\uf2a1\\\"\"]],[false,{\".fa-brain:before\":false},[\"content:\\\"\\uf5dc\\\"\"]],[false,{\".fa-brazilian-real-sign:before\":false},[\"content:\\\"\\ue46c\\\"\"]],[false,{\".fa-bread-slice:before\":false},[\"content:\\\"\\uf7ec\\\"\"]],[false,{\".fa-bridge:before\":false},[\"content:\\\"\\ue4c8\\\"\"]],[false,{\".fa-bridge-circle-check:before\":false},[\"content:\\\"\\ue4c9\\\"\"]],[false,{\".fa-bridge-circle-exclamation:before\":false},[\"content:\\\"\\ue4ca\\\"\"]],[false,{\".fa-bridge-circle-xmark:before\":false},[\"content:\\\"\\ue4cb\\\"\"]],[false,{\".fa-bridge-lock:before\":false},[\"content:\\\"\\ue4cc\\\"\"]],[false,{\".fa-bridge-water:before\":false},[\"content:\\\"\\ue4ce\\\"\"]],[false,{\".fa-briefcase:before\":false},[\"content:\\\"\\uf0b1\\\"\"]],[false,{\".fa-briefcase-medical:before\":false},[\"content:\\\"\\uf469\\\"\"]],[false,{\".fa-broom:before\":false},[\"content:\\\"\\uf51a\\\"\"]],[false,{\".fa-broom-ball:before\":false,\".fa-quidditch-broom-ball:before\":false,\".fa-quidditch:before\":false},[\"content:\\\"\\uf458\\\"\"]],[false,{\".fa-brush:before\":false},[\"content:\\\"\\uf55d\\\"\"]],[false,{\".fa-bucket:before\":false},[\"content:\\\"\\ue4cf\\\"\"]],[false,{\".fa-bug:before\":false},[\"content:\\\"\\uf188\\\"\"]],[false,{\".fa-bug-slash:before\":false},[\"content:\\\"\\ue490\\\"\"]],[false,{\".fa-bugs:before\":false},[\"content:\\\"\\ue4d0\\\"\"]],[false,{\".fa-building:before\":false},[\"content:\\\"\\uf1ad\\\"\"]],[false,{\".fa-building-circle-arrow-right:before\":false},[\"content:\\\"\\ue4d1\\\"\"]],[false,{\".fa-building-circle-check:before\":false},[\"content:\\\"\\ue4d2\\\"\"]],[false,{\".fa-building-circle-exclamation:before\":false},[\"content:\\\"\\ue4d3\\\"\"]],[false,{\".fa-building-circle-xmark:before\":false},[\"content:\\\"\\ue4d4\\\"\"]],[false,{\".fa-bank:before\":false,\".fa-building-columns:before\":false,\".fa-institution:before\":false,\".fa-museum:before\":false,\".fa-university:before\":false},[\"content:\\\"\\uf19c\\\"\"]],[false,{\".fa-building-flag:before\":false},[\"content:\\\"\\ue4d5\\\"\"]],[false,{\".fa-building-lock:before\":false},[\"content:\\\"\\ue4d6\\\"\"]],[false,{\".fa-building-ngo:before\":false},[\"content:\\\"\\ue4d7\\\"\"]],[false,{\".fa-building-shield:before\":false},[\"content:\\\"\\ue4d8\\\"\"]],[false,{\".fa-building-un:before\":false},[\"content:\\\"\\ue4d9\\\"\"]],[false,{\".fa-building-user:before\":false},[\"content:\\\"\\ue4da\\\"\"]],[false,{\".fa-building-wheat:before\":false},[\"content:\\\"\\ue4db\\\"\"]],[false,{\".fa-bullhorn:before\":false},[\"content:\\\"\\uf0a1\\\"\"]],[false,{\".fa-bullseye:before\":false},[\"content:\\\"\\uf140\\\"\"]],[false,{\".fa-burger:before\":false,\".fa-hamburger:before\":false},[\"content:\\\"\\uf805\\\"\"]],[false,{\".fa-burst:before\":false},[\"content:\\\"\\ue4dc\\\"\"]],[false,{\".fa-bus:before\":false},[\"content:\\\"\\uf207\\\"\"]],[false,{\".fa-bus-alt:before\":false,\".fa-bus-simple:before\":false},[\"content:\\\"\\uf55e\\\"\"]],[false,{\".fa-briefcase-clock:before\":false,\".fa-business-time:before\":false},[\"content:\\\"\\uf64a\\\"\"]],[false,{\".fa-c:before\":false},[\"content:\\\"C\\\"\"]],[false,{\".fa-birthday-cake:before\":false,\".fa-cake-candles:before\":false,\".fa-cake:before\":false},[\"content:\\\"\\uf1fd\\\"\"]],[false,{\".fa-calculator:before\":false},[\"content:\\\"\\uf1ec\\\"\"]],[false,{\".fa-calendar:before\":false},[\"content:\\\"\\uf133\\\"\"]],[false,{\".fa-calendar-check:before\":false},[\"content:\\\"\\uf274\\\"\"]],[false,{\".fa-calendar-day:before\":false},[\"content:\\\"\\uf783\\\"\"]],[false,{\".fa-calendar-alt:before\":false,\".fa-calendar-days:before\":false},[\"content:\\\"\\uf073\\\"\"]],[false,{\".fa-calendar-minus:before\":false},[\"content:\\\"\\uf272\\\"\"]],[false,{\".fa-calendar-plus:before\":false},[\"content:\\\"\\uf271\\\"\"]],[false,{\".fa-calendar-week:before\":false},[\"content:\\\"\\uf784\\\"\"]],[false,{\".fa-calendar-times:before\":false,\".fa-calendar-xmark:before\":false},[\"content:\\\"\\uf273\\\"\"]],[false,{\".fa-camera-alt:before\":false,\".fa-camera:before\":false},[\"content:\\\"\\uf030\\\"\"]],[false,{\".fa-camera-retro:before\":false},[\"content:\\\"\\uf083\\\"\"]],[false,{\".fa-camera-rotate:before\":false},[\"content:\\\"\\ue0d8\\\"\"]],[false,{\".fa-campground:before\":false},[\"content:\\\"\\uf6bb\\\"\"]],[false,{\".fa-candy-cane:before\":false},[\"content:\\\"\\uf786\\\"\"]],[false,{\".fa-cannabis:before\":false},[\"content:\\\"\\uf55f\\\"\"]],[false,{\".fa-capsules:before\":false},[\"content:\\\"\\uf46b\\\"\"]],[false,{\".fa-automobile:before\":false,\".fa-car:before\":false},[\"content:\\\"\\uf1b9\\\"\"]],[false,{\".fa-battery-car:before\":false,\".fa-car-battery:before\":false},[\"content:\\\"\\uf5df\\\"\"]],[false,{\".fa-car-burst:before\":false,\".fa-car-crash:before\":false},[\"content:\\\"\\uf5e1\\\"\"]],[false,{\".fa-car-on:before\":false},[\"content:\\\"\\ue4dd\\\"\"]],[false,{\".fa-car-alt:before\":false,\".fa-car-rear:before\":false},[\"content:\\\"\\uf5de\\\"\"]],[false,{\".fa-car-side:before\":false},[\"content:\\\"\\uf5e4\\\"\"]],[false,{\".fa-car-tunnel:before\":false},[\"content:\\\"\\ue4de\\\"\"]],[false,{\".fa-caravan:before\":false},[\"content:\\\"\\uf8ff\\\"\"]],[false,{\".fa-caret-down:before\":false},[\"content:\\\"\\uf0d7\\\"\"]],[false,{\".fa-caret-left:before\":false},[\"content:\\\"\\uf0d9\\\"\"]],[false,{\".fa-caret-right:before\":false},[\"content:\\\"\\uf0da\\\"\"]],[false,{\".fa-caret-up:before\":false},[\"content:\\\"\\uf0d8\\\"\"]],[false,{\".fa-carrot:before\":false},[\"content:\\\"\\uf787\\\"\"]],[false,{\".fa-cart-arrow-down:before\":false},[\"content:\\\"\\uf218\\\"\"]],[false,{\".fa-cart-flatbed:before\":false,\".fa-dolly-flatbed:before\":false},[\"content:\\\"\\uf474\\\"\"]],[false,{\".fa-cart-flatbed-suitcase:before\":false,\".fa-luggage-cart:before\":false},[\"content:\\\"\\uf59d\\\"\"]],[false,{\".fa-cart-plus:before\":false},[\"content:\\\"\\uf217\\\"\"]],[false,{\".fa-cart-shopping:before\":false,\".fa-shopping-cart:before\":false},[\"content:\\\"\\uf07a\\\"\"]],[false,{\".fa-cash-register:before\":false},[\"content:\\\"\\uf788\\\"\"]],[false,{\".fa-cat:before\":false},[\"content:\\\"\\uf6be\\\"\"]],[false,{\".fa-cedi-sign:before\":false},[\"content:\\\"\\ue0df\\\"\"]],[false,{\".fa-cent-sign:before\":false},[\"content:\\\"\\ue3f5\\\"\"]],[false,{\".fa-certificate:before\":false},[\"content:\\\"\\uf0a3\\\"\"]],[false,{\".fa-chair:before\":false},[\"content:\\\"\\uf6c0\\\"\"]],[false,{\".fa-blackboard:before\":false,\".fa-chalkboard:before\":false},[\"content:\\\"\\uf51b\\\"\"]],[false,{\".fa-chalkboard-teacher:before\":false,\".fa-chalkboard-user:before\":false},[\"content:\\\"\\uf51c\\\"\"]],[false,{\".fa-champagne-glasses:before\":false,\".fa-glass-cheers:before\":false},[\"content:\\\"\\uf79f\\\"\"]],[false,{\".fa-charging-station:before\":false},[\"content:\\\"\\uf5e7\\\"\"]],[false,{\".fa-area-chart:before\":false,\".fa-chart-area:before\":false},[\"content:\\\"\\uf1fe\\\"\"]],[false,{\".fa-bar-chart:before\":false,\".fa-chart-bar:before\":false},[\"content:\\\"\\uf080\\\"\"]],[false,{\".fa-chart-column:before\":false},[\"content:\\\"\\ue0e3\\\"\"]],[false,{\".fa-chart-gantt:before\":false},[\"content:\\\"\\ue0e4\\\"\"]],[false,{\".fa-chart-line:before\":false,\".fa-line-chart:before\":false},[\"content:\\\"\\uf201\\\"\"]],[false,{\".fa-chart-pie:before\":false,\".fa-pie-chart:before\":false},[\"content:\\\"\\uf200\\\"\"]],[false,{\".fa-chart-simple:before\":false},[\"content:\\\"\\ue473\\\"\"]],[false,{\".fa-check:before\":false},[\"content:\\\"\\uf00c\\\"\"]],[false,{\".fa-check-double:before\":false},[\"content:\\\"\\uf560\\\"\"]],[false,{\".fa-check-to-slot:before\":false,\".fa-vote-yea:before\":false},[\"content:\\\"\\uf772\\\"\"]],[false,{\".fa-cheese:before\":false},[\"content:\\\"\\uf7ef\\\"\"]],[false,{\".fa-chess:before\":false},[\"content:\\\"\\uf439\\\"\"]],[false,{\".fa-chess-bishop:before\":false},[\"content:\\\"\\uf43a\\\"\"]],[false,{\".fa-chess-board:before\":false},[\"content:\\\"\\uf43c\\\"\"]],[false,{\".fa-chess-king:before\":false},[\"content:\\\"\\uf43f\\\"\"]],[false,{\".fa-chess-knight:before\":false},[\"content:\\\"\\uf441\\\"\"]],[false,{\".fa-chess-pawn:before\":false},[\"content:\\\"\\uf443\\\"\"]],[false,{\".fa-chess-queen:before\":false},[\"content:\\\"\\uf445\\\"\"]],[false,{\".fa-chess-rook:before\":false},[\"content:\\\"\\uf447\\\"\"]],[true,{\".fa-chevron-down:before\":true},[\"content:\\\"\\uf078\\\"\"]],[true,{\".fa-chevron-left:before\":true},[\"content:\\\"\\uf053\\\"\"]],[true,{\".fa-chevron-right:before\":true},[\"content:\\\"\\uf054\\\"\"]],[false,{\".fa-chevron-up:before\":false},[\"content:\\\"\\uf077\\\"\"]],[false,{\".fa-child:before\":false},[\"content:\\\"\\uf1ae\\\"\"]],[false,{\".fa-child-rifle:before\":false},[\"content:\\\"\\ue4e0\\\"\"]],[false,{\".fa-children:before\":false},[\"content:\\\"\\ue4e1\\\"\"]],[false,{\".fa-church:before\":false},[\"content:\\\"\\uf51d\\\"\"]],[false,{\".fa-circle:before\":false},[\"content:\\\"\\uf111\\\"\"]],[false,{\".fa-arrow-circle-down:before\":false,\".fa-circle-arrow-down:before\":false},[\"content:\\\"\\uf0ab\\\"\"]],[false,{\".fa-arrow-circle-left:before\":false,\".fa-circle-arrow-left:before\":false},[\"content:\\\"\\uf0a8\\\"\"]],[false,{\".fa-arrow-circle-right:before\":false,\".fa-circle-arrow-right:before\":false},[\"content:\\\"\\uf0a9\\\"\"]],[false,{\".fa-arrow-circle-up:before\":false,\".fa-circle-arrow-up:before\":false},[\"content:\\\"\\uf0aa\\\"\"]],[false,{\".fa-check-circle:before\":false,\".fa-circle-check:before\":false},[\"content:\\\"\\uf058\\\"\"]],[false,{\".fa-chevron-circle-down:before\":false,\".fa-circle-chevron-down:before\":false},[\"content:\\\"\\uf13a\\\"\"]],[false,{\".fa-chevron-circle-left:before\":false,\".fa-circle-chevron-left:before\":false},[\"content:\\\"\\uf137\\\"\"]],[false,{\".fa-chevron-circle-right:before\":false,\".fa-circle-chevron-right:before\":false},[\"content:\\\"\\uf138\\\"\"]],[false,{\".fa-chevron-circle-up:before\":false,\".fa-circle-chevron-up:before\":false},[\"content:\\\"\\uf139\\\"\"]],[false,{\".fa-circle-dollar-to-slot:before\":false,\".fa-donate:before\":false},[\"content:\\\"\\uf4b9\\\"\"]],[false,{\".fa-circle-dot:before\":false,\".fa-dot-circle:before\":false},[\"content:\\\"\\uf192\\\"\"]],[false,{\".fa-arrow-alt-circle-down:before\":false,\".fa-circle-down:before\":false},[\"content:\\\"\\uf358\\\"\"]],[false,{\".fa-circle-exclamation:before\":false,\".fa-exclamation-circle:before\":false},[\"content:\\\"\\uf06a\\\"\"]],[false,{\".fa-circle-h:before\":false,\".fa-hospital-symbol:before\":false},[\"content:\\\"\\uf47e\\\"\"]],[false,{\".fa-adjust:before\":false,\".fa-circle-half-stroke:before\":false},[\"content:\\\"\\uf042\\\"\"]],[false,{\".fa-circle-info:before\":false,\".fa-info-circle:before\":false},[\"content:\\\"\\uf05a\\\"\"]],[false,{\".fa-arrow-alt-circle-left:before\":false,\".fa-circle-left:before\":false},[\"content:\\\"\\uf359\\\"\"]],[false,{\".fa-circle-minus:before\":false,\".fa-minus-circle:before\":false},[\"content:\\\"\\uf056\\\"\"]],[false,{\".fa-circle-nodes:before\":false},[\"content:\\\"\\ue4e2\\\"\"]],[false,{\".fa-circle-notch:before\":false},[\"content:\\\"\\uf1ce\\\"\"]],[false,{\".fa-circle-pause:before\":false,\".fa-pause-circle:before\":false},[\"content:\\\"\\uf28b\\\"\"]],[false,{\".fa-circle-play:before\":false,\".fa-play-circle:before\":false},[\"content:\\\"\\uf144\\\"\"]],[false,{\".fa-circle-plus:before\":false,\".fa-plus-circle:before\":false},[\"content:\\\"\\uf055\\\"\"]],[false,{\".fa-circle-question:before\":false,\".fa-question-circle:before\":false},[\"content:\\\"\\uf059\\\"\"]],[false,{\".fa-circle-radiation:before\":false,\".fa-radiation-alt:before\":false},[\"content:\\\"\\uf7ba\\\"\"]],[false,{\".fa-arrow-alt-circle-right:before\":false,\".fa-circle-right:before\":false},[\"content:\\\"\\uf35a\\\"\"]],[false,{\".fa-circle-stop:before\":false,\".fa-stop-circle:before\":false},[\"content:\\\"\\uf28d\\\"\"]],[false,{\".fa-arrow-alt-circle-up:before\":false,\".fa-circle-up:before\":false},[\"content:\\\"\\uf35b\\\"\"]],[false,{\".fa-circle-user:before\":false,\".fa-user-circle:before\":false},[\"content:\\\"\\uf2bd\\\"\"]],[false,{\".fa-circle-xmark:before\":false,\".fa-times-circle:before\":false,\".fa-xmark-circle:before\":false},[\"content:\\\"\\uf057\\\"\"]],[false,{\".fa-city:before\":false},[\"content:\\\"\\uf64f\\\"\"]],[false,{\".fa-clapperboard:before\":false},[\"content:\\\"\\ue131\\\"\"]],[false,{\".fa-clipboard:before\":false},[\"content:\\\"\\uf328\\\"\"]],[false,{\".fa-clipboard-check:before\":false},[\"content:\\\"\\uf46c\\\"\"]],[false,{\".fa-clipboard-list:before\":false},[\"content:\\\"\\uf46d\\\"\"]],[false,{\".fa-clipboard-question:before\":false},[\"content:\\\"\\ue4e3\\\"\"]],[false,{\".fa-clipboard-user:before\":false},[\"content:\\\"\\uf7f3\\\"\"]],[false,{\".fa-clock-four:before\":false,\".fa-clock:before\":false},[\"content:\\\"\\uf017\\\"\"]],[false,{\".fa-clock-rotate-left:before\":false,\".fa-history:before\":false},[\"content:\\\"\\uf1da\\\"\"]],[false,{\".fa-clone:before\":false},[\"content:\\\"\\uf24d\\\"\"]],[false,{\".fa-closed-captioning:before\":false},[\"content:\\\"\\uf20a\\\"\"]],[false,{\".fa-cloud:before\":false},[\"content:\\\"\\uf0c2\\\"\"]],[false,{\".fa-cloud-arrow-down:before\":false,\".fa-cloud-download-alt:before\":false,\".fa-cloud-download:before\":false},[\"content:\\\"\\uf0ed\\\"\"]],[false,{\".fa-cloud-arrow-up:before\":false,\".fa-cloud-upload-alt:before\":false,\".fa-cloud-upload:before\":false},[\"content:\\\"\\uf0ee\\\"\"]],[false,{\".fa-cloud-bolt:before\":false,\".fa-thunderstorm:before\":false},[\"content:\\\"\\uf76c\\\"\"]],[false,{\".fa-cloud-meatball:before\":false},[\"content:\\\"\\uf73b\\\"\"]],[false,{\".fa-cloud-moon:before\":false},[\"content:\\\"\\uf6c3\\\"\"]],[false,{\".fa-cloud-moon-rain:before\":false},[\"content:\\\"\\uf73c\\\"\"]],[false,{\".fa-cloud-rain:before\":false},[\"content:\\\"\\uf73d\\\"\"]],[false,{\".fa-cloud-showers-heavy:before\":false},[\"content:\\\"\\uf740\\\"\"]],[false,{\".fa-cloud-showers-water:before\":false},[\"content:\\\"\\ue4e4\\\"\"]],[false,{\".fa-cloud-sun:before\":false},[\"content:\\\"\\uf6c4\\\"\"]],[false,{\".fa-cloud-sun-rain:before\":false},[\"content:\\\"\\uf743\\\"\"]],[false,{\".fa-clover:before\":false},[\"content:\\\"\\ue139\\\"\"]],[false,{\".fa-code:before\":false},[\"content:\\\"\\uf121\\\"\"]],[false,{\".fa-code-branch:before\":false},[\"content:\\\"\\uf126\\\"\"]],[false,{\".fa-code-commit:before\":false},[\"content:\\\"\\uf386\\\"\"]],[false,{\".fa-code-compare:before\":false},[\"content:\\\"\\ue13a\\\"\"]],[false,{\".fa-code-fork:before\":false},[\"content:\\\"\\ue13b\\\"\"]],[false,{\".fa-code-merge:before\":false},[\"content:\\\"\\uf387\\\"\"]],[false,{\".fa-code-pull-request:before\":false},[\"content:\\\"\\ue13c\\\"\"]],[false,{\".fa-coins:before\":false},[\"content:\\\"\\uf51e\\\"\"]],[false,{\".fa-colon-sign:before\":false},[\"content:\\\"\\ue140\\\"\"]],[false,{\".fa-comment:before\":false},[\"content:\\\"\\uf075\\\"\"]],[false,{\".fa-comment-dollar:before\":false},[\"content:\\\"\\uf651\\\"\"]],[false,{\".fa-comment-dots:before\":false,\".fa-commenting:before\":false},[\"content:\\\"\\uf4ad\\\"\"]],[false,{\".fa-comment-medical:before\":false},[\"content:\\\"\\uf7f5\\\"\"]],[false,{\".fa-comment-slash:before\":false},[\"content:\\\"\\uf4b3\\\"\"]],[false,{\".fa-comment-sms:before\":false,\".fa-sms:before\":false},[\"content:\\\"\\uf7cd\\\"\"]],[false,{\".fa-comments:before\":false},[\"content:\\\"\\uf086\\\"\"]],[false,{\".fa-comments-dollar:before\":false},[\"content:\\\"\\uf653\\\"\"]],[false,{\".fa-compact-disc:before\":false},[\"content:\\\"\\uf51f\\\"\"]],[false,{\".fa-compass:before\":false},[\"content:\\\"\\uf14e\\\"\"]],[false,{\".fa-compass-drafting:before\":false,\".fa-drafting-compass:before\":false},[\"content:\\\"\\uf568\\\"\"]],[false,{\".fa-compress:before\":false},[\"content:\\\"\\uf066\\\"\"]],[false,{\".fa-computer:before\":false},[\"content:\\\"\\ue4e5\\\"\"]],[false,{\".fa-computer-mouse:before\":false,\".fa-mouse:before\":false},[\"content:\\\"\\uf8cc\\\"\"]],[false,{\".fa-cookie:before\":false},[\"content:\\\"\\uf563\\\"\"]],[false,{\".fa-cookie-bite:before\":false},[\"content:\\\"\\uf564\\\"\"]],[false,{\".fa-copy:before\":false},[\"content:\\\"\\uf0c5\\\"\"]],[false,{\".fa-copyright:before\":false},[\"content:\\\"\\uf1f9\\\"\"]],[false,{\".fa-couch:before\":false},[\"content:\\\"\\uf4b8\\\"\"]],[false,{\".fa-cow:before\":false},[\"content:\\\"\\uf6c8\\\"\"]],[false,{\".fa-credit-card-alt:before\":false,\".fa-credit-card:before\":false},[\"content:\\\"\\uf09d\\\"\"]],[false,{\".fa-crop:before\":false},[\"content:\\\"\\uf125\\\"\"]],[false,{\".fa-crop-alt:before\":false,\".fa-crop-simple:before\":false},[\"content:\\\"\\uf565\\\"\"]],[false,{\".fa-cross:before\":false},[\"content:\\\"\\uf654\\\"\"]],[false,{\".fa-crosshairs:before\":false},[\"content:\\\"\\uf05b\\\"\"]],[false,{\".fa-crow:before\":false},[\"content:\\\"\\uf520\\\"\"]],[false,{\".fa-crown:before\":false},[\"content:\\\"\\uf521\\\"\"]],[false,{\".fa-crutch:before\":false},[\"content:\\\"\\uf7f7\\\"\"]],[false,{\".fa-cruzeiro-sign:before\":false},[\"content:\\\"\\ue152\\\"\"]],[false,{\".fa-cube:before\":false},[\"content:\\\"\\uf1b2\\\"\"]],[false,{\".fa-cubes:before\":false},[\"content:\\\"\\uf1b3\\\"\"]],[false,{\".fa-cubes-stacked:before\":false},[\"content:\\\"\\ue4e6\\\"\"]],[false,{\".fa-d:before\":false},[\"content:\\\"D\\\"\"]],[false,{\".fa-database:before\":false},[\"content:\\\"\\uf1c0\\\"\"]],[false,{\".fa-backspace:before\":false,\".fa-delete-left:before\":false},[\"content:\\\"\\uf55a\\\"\"]],[false,{\".fa-democrat:before\":false},[\"content:\\\"\\uf747\\\"\"]],[false,{\".fa-desktop-alt:before\":false,\".fa-desktop:before\":false},[\"content:\\\"\\uf390\\\"\"]],[false,{\".fa-dharmachakra:before\":false},[\"content:\\\"\\uf655\\\"\"]],[false,{\".fa-diagram-next:before\":false},[\"content:\\\"\\ue476\\\"\"]],[false,{\".fa-diagram-predecessor:before\":false},[\"content:\\\"\\ue477\\\"\"]],[false,{\".fa-diagram-project:before\":false,\".fa-project-diagram:before\":false},[\"content:\\\"\\uf542\\\"\"]],[false,{\".fa-diagram-successor:before\":false},[\"content:\\\"\\ue47a\\\"\"]],[false,{\".fa-diamond:before\":false},[\"content:\\\"\\uf219\\\"\"]],[false,{\".fa-diamond-turn-right:before\":false,\".fa-directions:before\":false},[\"content:\\\"\\uf5eb\\\"\"]],[false,{\".fa-dice:before\":false},[\"content:\\\"\\uf522\\\"\"]],[false,{\".fa-dice-d20:before\":false},[\"content:\\\"\\uf6cf\\\"\"]],[false,{\".fa-dice-d6:before\":false},[\"content:\\\"\\uf6d1\\\"\"]],[false,{\".fa-dice-five:before\":false},[\"content:\\\"\\uf523\\\"\"]],[false,{\".fa-dice-four:before\":false},[\"content:\\\"\\uf524\\\"\"]],[false,{\".fa-dice-one:before\":false},[\"content:\\\"\\uf525\\\"\"]],[false,{\".fa-dice-six:before\":false},[\"content:\\\"\\uf526\\\"\"]],[false,{\".fa-dice-three:before\":false},[\"content:\\\"\\uf527\\\"\"]],[false,{\".fa-dice-two:before\":false},[\"content:\\\"\\uf528\\\"\"]],[false,{\".fa-disease:before\":false},[\"content:\\\"\\uf7fa\\\"\"]],[false,{\".fa-display:before\":false},[\"content:\\\"\\ue163\\\"\"]],[false,{\".fa-divide:before\":false},[\"content:\\\"\\uf529\\\"\"]],[false,{\".fa-dna:before\":false},[\"content:\\\"\\uf471\\\"\"]],[false,{\".fa-dog:before\":false},[\"content:\\\"\\uf6d3\\\"\"]],[false,{\".fa-dollar-sign:before\":false,\".fa-dollar:before\":false,\".fa-usd:before\":false},[\"content:\\\"$\\\"\"]],[false,{\".fa-dolly-box:before\":false,\".fa-dolly:before\":false},[\"content:\\\"\\uf472\\\"\"]],[false,{\".fa-dong-sign:before\":false},[\"content:\\\"\\ue169\\\"\"]],[false,{\".fa-door-closed:before\":false},[\"content:\\\"\\uf52a\\\"\"]],[false,{\".fa-door-open:before\":false},[\"content:\\\"\\uf52b\\\"\"]],[false,{\".fa-dove:before\":false},[\"content:\\\"\\uf4ba\\\"\"]],[false,{\".fa-compress-alt:before\":false,\".fa-down-left-and-up-right-to-center:before\":false},[\"content:\\\"\\uf422\\\"\"]],[false,{\".fa-down-long:before\":false,\".fa-long-arrow-alt-down:before\":false},[\"content:\\\"\\uf309\\\"\"]],[false,{\".fa-download:before\":false},[\"content:\\\"\\uf019\\\"\"]],[false,{\".fa-dragon:before\":false},[\"content:\\\"\\uf6d5\\\"\"]],[false,{\".fa-draw-polygon:before\":false},[\"content:\\\"\\uf5ee\\\"\"]],[false,{\".fa-droplet:before\":false,\".fa-tint:before\":false},[\"content:\\\"\\uf043\\\"\"]],[false,{\".fa-droplet-slash:before\":false,\".fa-tint-slash:before\":false},[\"content:\\\"\\uf5c7\\\"\"]],[false,{\".fa-drum:before\":false},[\"content:\\\"\\uf569\\\"\"]],[false,{\".fa-drum-steelpan:before\":false},[\"content:\\\"\\uf56a\\\"\"]],[false,{\".fa-drumstick-bite:before\":false},[\"content:\\\"\\uf6d7\\\"\"]],[false,{\".fa-dumbbell:before\":false},[\"content:\\\"\\uf44b\\\"\"]],[false,{\".fa-dumpster:before\":false},[\"content:\\\"\\uf793\\\"\"]],[false,{\".fa-dumpster-fire:before\":false},[\"content:\\\"\\uf794\\\"\"]],[false,{\".fa-dungeon:before\":false},[\"content:\\\"\\uf6d9\\\"\"]],[false,{\".fa-e:before\":false},[\"content:\\\"E\\\"\"]],[false,{\".fa-deaf:before\":false,\".fa-deafness:before\":false,\".fa-ear-deaf:before\":false,\".fa-hard-of-hearing:before\":false},[\"content:\\\"\\uf2a4\\\"\"]],[false,{\".fa-assistive-listening-systems:before\":false,\".fa-ear-listen:before\":false},[\"content:\\\"\\uf2a2\\\"\"]],[false,{\".fa-earth-africa:before\":false,\".fa-globe-africa:before\":false},[\"content:\\\"\\uf57c\\\"\"]],[false,{\".fa-earth-america:before\":false,\".fa-earth-americas:before\":false,\".fa-earth:before\":false,\".fa-globe-americas:before\":false},[\"content:\\\"\\uf57d\\\"\"]],[false,{\".fa-earth-asia:before\":false,\".fa-globe-asia:before\":false},[\"content:\\\"\\uf57e\\\"\"]],[false,{\".fa-earth-europe:before\":false,\".fa-globe-europe:before\":false},[\"content:\\\"\\uf7a2\\\"\"]],[false,{\".fa-earth-oceania:before\":false,\".fa-globe-oceania:before\":false},[\"content:\\\"\\ue47b\\\"\"]],[false,{\".fa-egg:before\":false},[\"content:\\\"\\uf7fb\\\"\"]],[false,{\".fa-eject:before\":false},[\"content:\\\"\\uf052\\\"\"]],[false,{\".fa-elevator:before\":false},[\"content:\\\"\\ue16d\\\"\"]],[false,{\".fa-ellipsis-h:before\":false,\".fa-ellipsis:before\":false},[\"content:\\\"\\uf141\\\"\"]],[false,{\".fa-ellipsis-v:before\":false,\".fa-ellipsis-vertical:before\":false},[\"content:\\\"\\uf142\\\"\"]],[false,{\".fa-envelope:before\":false},[\"content:\\\"\\uf0e0\\\"\"]],[false,{\".fa-envelope-circle-check:before\":false},[\"content:\\\"\\ue4e8\\\"\"]],[false,{\".fa-envelope-open:before\":false},[\"content:\\\"\\uf2b6\\\"\"]],[false,{\".fa-envelope-open-text:before\":false},[\"content:\\\"\\uf658\\\"\"]],[false,{\".fa-envelopes-bulk:before\":false,\".fa-mail-bulk:before\":false},[\"content:\\\"\\uf674\\\"\"]],[false,{\".fa-equals:before\":false},[\"content:\\\"=\\\"\"]],[false,{\".fa-eraser:before\":false},[\"content:\\\"\\uf12d\\\"\"]],[false,{\".fa-ethernet:before\":false},[\"content:\\\"\\uf796\\\"\"]],[false,{\".fa-eur:before\":false,\".fa-euro-sign:before\":false,\".fa-euro:before\":false},[\"content:\\\"\\uf153\\\"\"]],[false,{\".fa-exclamation:before\":false},[\"content:\\\"!\\\"\"]],[false,{\".fa-expand:before\":false},[\"content:\\\"\\uf065\\\"\"]],[false,{\".fa-explosion:before\":false},[\"content:\\\"\\ue4e9\\\"\"]],[false,{\".fa-eye:before\":false},[\"content:\\\"\\uf06e\\\"\"]],[false,{\".fa-eye-dropper-empty:before\":false,\".fa-eye-dropper:before\":false,\".fa-eyedropper:before\":false},[\"content:\\\"\\uf1fb\\\"\"]],[false,{\".fa-eye-low-vision:before\":false,\".fa-low-vision:before\":false},[\"content:\\\"\\uf2a8\\\"\"]],[false,{\".fa-eye-slash:before\":false},[\"content:\\\"\\uf070\\\"\"]],[false,{\".fa-f:before\":false},[\"content:\\\"F\\\"\"]],[false,{\".fa-angry:before\":false,\".fa-face-angry:before\":false},[\"content:\\\"\\uf556\\\"\"]],[false,{\".fa-dizzy:before\":false,\".fa-face-dizzy:before\":false},[\"content:\\\"\\uf567\\\"\"]],[false,{\".fa-face-flushed:before\":false,\".fa-flushed:before\":false},[\"content:\\\"\\uf579\\\"\"]],[false,{\".fa-face-frown:before\":false,\".fa-frown:before\":false},[\"content:\\\"\\uf119\\\"\"]],[false,{\".fa-face-frown-open:before\":false,\".fa-frown-open:before\":false},[\"content:\\\"\\uf57a\\\"\"]],[false,{\".fa-face-grimace:before\":false,\".fa-grimace:before\":false},[\"content:\\\"\\uf57f\\\"\"]],[false,{\".fa-face-grin:before\":false,\".fa-grin:before\":false},[\"content:\\\"\\uf580\\\"\"]],[false,{\".fa-face-grin-beam:before\":false,\".fa-grin-beam:before\":false},[\"content:\\\"\\uf582\\\"\"]],[false,{\".fa-face-grin-beam-sweat:before\":false,\".fa-grin-beam-sweat:before\":false},[\"content:\\\"\\uf583\\\"\"]],[false,{\".fa-face-grin-hearts:before\":false,\".fa-grin-hearts:before\":false},[\"content:\\\"\\uf584\\\"\"]],[false,{\".fa-face-grin-squint:before\":false,\".fa-grin-squint:before\":false},[\"content:\\\"\\uf585\\\"\"]],[false,{\".fa-face-grin-squint-tears:before\":false,\".fa-grin-squint-tears:before\":false},[\"content:\\\"\\uf586\\\"\"]],[false,{\".fa-face-grin-stars:before\":false,\".fa-grin-stars:before\":false},[\"content:\\\"\\uf587\\\"\"]],[false,{\".fa-face-grin-tears:before\":false,\".fa-grin-tears:before\":false},[\"content:\\\"\\uf588\\\"\"]],[false,{\".fa-face-grin-tongue:before\":false,\".fa-grin-tongue:before\":false},[\"content:\\\"\\uf589\\\"\"]],[false,{\".fa-face-grin-tongue-squint:before\":false,\".fa-grin-tongue-squint:before\":false},[\"content:\\\"\\uf58a\\\"\"]],[false,{\".fa-face-grin-tongue-wink:before\":false,\".fa-grin-tongue-wink:before\":false},[\"content:\\\"\\uf58b\\\"\"]],[false,{\".fa-face-grin-wide:before\":false,\".fa-grin-alt:before\":false},[\"content:\\\"\\uf581\\\"\"]],[false,{\".fa-face-grin-wink:before\":false,\".fa-grin-wink:before\":false},[\"content:\\\"\\uf58c\\\"\"]],[false,{\".fa-face-kiss:before\":false,\".fa-kiss:before\":false},[\"content:\\\"\\uf596\\\"\"]],[false,{\".fa-face-kiss-beam:before\":false,\".fa-kiss-beam:before\":false},[\"content:\\\"\\uf597\\\"\"]],[false,{\".fa-face-kiss-wink-heart:before\":false,\".fa-kiss-wink-heart:before\":false},[\"content:\\\"\\uf598\\\"\"]],[false,{\".fa-face-laugh:before\":false,\".fa-laugh:before\":false},[\"content:\\\"\\uf599\\\"\"]],[false,{\".fa-face-laugh-beam:before\":false,\".fa-laugh-beam:before\":false},[\"content:\\\"\\uf59a\\\"\"]],[false,{\".fa-face-laugh-squint:before\":false,\".fa-laugh-squint:before\":false},[\"content:\\\"\\uf59b\\\"\"]],[false,{\".fa-face-laugh-wink:before\":false,\".fa-laugh-wink:before\":false},[\"content:\\\"\\uf59c\\\"\"]],[false,{\".fa-face-meh:before\":false,\".fa-meh:before\":false},[\"content:\\\"\\uf11a\\\"\"]],[false,{\".fa-face-meh-blank:before\":false,\".fa-meh-blank:before\":false},[\"content:\\\"\\uf5a4\\\"\"]],[false,{\".fa-face-rolling-eyes:before\":false,\".fa-meh-rolling-eyes:before\":false},[\"content:\\\"\\uf5a5\\\"\"]],[false,{\".fa-face-sad-cry:before\":false,\".fa-sad-cry:before\":false},[\"content:\\\"\\uf5b3\\\"\"]],[false,{\".fa-face-sad-tear:before\":false,\".fa-sad-tear:before\":false},[\"content:\\\"\\uf5b4\\\"\"]],[false,{\".fa-face-smile:before\":false,\".fa-smile:before\":false},[\"content:\\\"\\uf118\\\"\"]],[false,{\".fa-face-smile-beam:before\":false,\".fa-smile-beam:before\":false},[\"content:\\\"\\uf5b8\\\"\"]],[false,{\".fa-face-smile-wink:before\":false,\".fa-smile-wink:before\":false},[\"content:\\\"\\uf4da\\\"\"]],[false,{\".fa-face-surprise:before\":false,\".fa-surprise:before\":false},[\"content:\\\"\\uf5c2\\\"\"]],[false,{\".fa-face-tired:before\":false,\".fa-tired:before\":false},[\"content:\\\"\\uf5c8\\\"\"]],[false,{\".fa-fan:before\":false},[\"content:\\\"\\uf863\\\"\"]],[false,{\".fa-faucet:before\":false},[\"content:\\\"\\ue005\\\"\"]],[false,{\".fa-faucet-drip:before\":false},[\"content:\\\"\\ue006\\\"\"]],[false,{\".fa-fax:before\":false},[\"content:\\\"\\uf1ac\\\"\"]],[false,{\".fa-feather:before\":false},[\"content:\\\"\\uf52d\\\"\"]],[false,{\".fa-feather-alt:before\":false,\".fa-feather-pointed:before\":false},[\"content:\\\"\\uf56b\\\"\"]],[false,{\".fa-ferry:before\":false},[\"content:\\\"\\ue4ea\\\"\"]],[false,{\".fa-file:before\":false},[\"content:\\\"\\uf15b\\\"\"]],[false,{\".fa-file-arrow-down:before\":false,\".fa-file-download:before\":false},[\"content:\\\"\\uf56d\\\"\"]],[false,{\".fa-file-arrow-up:before\":false,\".fa-file-upload:before\":false},[\"content:\\\"\\uf574\\\"\"]],[false,{\".fa-file-audio:before\":false},[\"content:\\\"\\uf1c7\\\"\"]],[false,{\".fa-file-circle-check:before\":false},[\"content:\\\"\\ue493\\\"\"]],[false,{\".fa-file-circle-exclamation:before\":false},[\"content:\\\"\\ue4eb\\\"\"]],[false,{\".fa-file-circle-minus:before\":false},[\"content:\\\"\\ue4ed\\\"\"]],[false,{\".fa-file-circle-plus:before\":false},[\"content:\\\"\\ue4ee\\\"\"]],[false,{\".fa-file-circle-question:before\":false},[\"content:\\\"\\ue4ef\\\"\"]],[false,{\".fa-file-circle-xmark:before\":false},[\"content:\\\"\\ue494\\\"\"]],[false,{\".fa-file-code:before\":false},[\"content:\\\"\\uf1c9\\\"\"]],[false,{\".fa-file-contract:before\":false},[\"content:\\\"\\uf56c\\\"\"]],[false,{\".fa-file-csv:before\":false},[\"content:\\\"\\uf6dd\\\"\"]],[false,{\".fa-file-excel:before\":false},[\"content:\\\"\\uf1c3\\\"\"]],[false,{\".fa-arrow-right-from-file:before\":false,\".fa-file-export:before\":false},[\"content:\\\"\\uf56e\\\"\"]],[false,{\".fa-file-image:before\":false},[\"content:\\\"\\uf1c5\\\"\"]],[false,{\".fa-arrow-right-to-file:before\":false,\".fa-file-import:before\":false},[\"content:\\\"\\uf56f\\\"\"]],[false,{\".fa-file-invoice:before\":false},[\"content:\\\"\\uf570\\\"\"]],[false,{\".fa-file-invoice-dollar:before\":false},[\"content:\\\"\\uf571\\\"\"]],[false,{\".fa-file-alt:before\":false,\".fa-file-lines:before\":false,\".fa-file-text:before\":false},[\"content:\\\"\\uf15c\\\"\"]],[false,{\".fa-file-medical:before\":false},[\"content:\\\"\\uf477\\\"\"]],[false,{\".fa-file-pdf:before\":false},[\"content:\\\"\\uf1c1\\\"\"]],[false,{\".fa-file-edit:before\":false,\".fa-file-pen:before\":false},[\"content:\\\"\\uf31c\\\"\"]],[false,{\".fa-file-powerpoint:before\":false},[\"content:\\\"\\uf1c4\\\"\"]],[false,{\".fa-file-prescription:before\":false},[\"content:\\\"\\uf572\\\"\"]],[false,{\".fa-file-shield:before\":false},[\"content:\\\"\\ue4f0\\\"\"]],[false,{\".fa-file-signature:before\":false},[\"content:\\\"\\uf573\\\"\"]],[false,{\".fa-file-video:before\":false},[\"content:\\\"\\uf1c8\\\"\"]],[false,{\".fa-file-medical-alt:before\":false,\".fa-file-waveform:before\":false},[\"content:\\\"\\uf478\\\"\"]],[false,{\".fa-file-word:before\":false},[\"content:\\\"\\uf1c2\\\"\"]],[false,{\".fa-file-archive:before\":false,\".fa-file-zipper:before\":false},[\"content:\\\"\\uf1c6\\\"\"]],[false,{\".fa-fill:before\":false},[\"content:\\\"\\uf575\\\"\"]],[false,{\".fa-fill-drip:before\":false},[\"content:\\\"\\uf576\\\"\"]],[false,{\".fa-film:before\":false},[\"content:\\\"\\uf008\\\"\"]],[false,{\".fa-filter:before\":false},[\"content:\\\"\\uf0b0\\\"\"]],[false,{\".fa-filter-circle-dollar:before\":false,\".fa-funnel-dollar:before\":false},[\"content:\\\"\\uf662\\\"\"]],[false,{\".fa-filter-circle-xmark:before\":false},[\"content:\\\"\\ue17b\\\"\"]],[false,{\".fa-fingerprint:before\":false},[\"content:\\\"\\uf577\\\"\"]],[false,{\".fa-fire:before\":false},[\"content:\\\"\\uf06d\\\"\"]],[false,{\".fa-fire-burner:before\":false},[\"content:\\\"\\ue4f1\\\"\"]],[false,{\".fa-fire-extinguisher:before\":false},[\"content:\\\"\\uf134\\\"\"]],[false,{\".fa-fire-alt:before\":false,\".fa-fire-flame-curved:before\":false},[\"content:\\\"\\uf7e4\\\"\"]],[false,{\".fa-burn:before\":false,\".fa-fire-flame-simple:before\":false},[\"content:\\\"\\uf46a\\\"\"]],[false,{\".fa-fish:before\":false},[\"content:\\\"\\uf578\\\"\"]],[false,{\".fa-fish-fins:before\":false},[\"content:\\\"\\ue4f2\\\"\"]],[false,{\".fa-flag:before\":false},[\"content:\\\"\\uf024\\\"\"]],[false,{\".fa-flag-checkered:before\":false},[\"content:\\\"\\uf11e\\\"\"]],[false,{\".fa-flag-usa:before\":false},[\"content:\\\"\\uf74d\\\"\"]],[false,{\".fa-flask:before\":false},[\"content:\\\"\\uf0c3\\\"\"]],[false,{\".fa-flask-vial:before\":false},[\"content:\\\"\\ue4f3\\\"\"]],[false,{\".fa-floppy-disk:before\":false,\".fa-save:before\":false},[\"content:\\\"\\uf0c7\\\"\"]],[false,{\".fa-florin-sign:before\":false},[\"content:\\\"\\ue184\\\"\"]],[false,{\".fa-folder-blank:before\":false,\".fa-folder:before\":false},[\"content:\\\"\\uf07b\\\"\"]],[false,{\".fa-folder-closed:before\":false},[\"content:\\\"\\ue185\\\"\"]],[false,{\".fa-folder-minus:before\":false},[\"content:\\\"\\uf65d\\\"\"]],[false,{\".fa-folder-open:before\":false},[\"content:\\\"\\uf07c\\\"\"]],[false,{\".fa-folder-plus:before\":false},[\"content:\\\"\\uf65e\\\"\"]],[false,{\".fa-folder-tree:before\":false},[\"content:\\\"\\uf802\\\"\"]],[false,{\".fa-font:before\":false},[\"content:\\\"\\uf031\\\"\"]],[false,{\".fa-football-ball:before\":false,\".fa-football:before\":false},[\"content:\\\"\\uf44e\\\"\"]],[false,{\".fa-forward:before\":false},[\"content:\\\"\\uf04e\\\"\"]],[false,{\".fa-fast-forward:before\":false,\".fa-forward-fast:before\":false},[\"content:\\\"\\uf050\\\"\"]],[false,{\".fa-forward-step:before\":false,\".fa-step-forward:before\":false},[\"content:\\\"\\uf051\\\"\"]],[false,{\".fa-franc-sign:before\":false},[\"content:\\\"\\ue18f\\\"\"]],[false,{\".fa-frog:before\":false},[\"content:\\\"\\uf52e\\\"\"]],[false,{\".fa-futbol-ball:before\":false,\".fa-futbol:before\":false,\".fa-soccer-ball:before\":false},[\"content:\\\"\\uf1e3\\\"\"]],[false,{\".fa-g:before\":false},[\"content:\\\"G\\\"\"]],[false,{\".fa-gamepad:before\":false},[\"content:\\\"\\uf11b\\\"\"]],[false,{\".fa-gas-pump:before\":false},[\"content:\\\"\\uf52f\\\"\"]],[false,{\".fa-dashboard:before\":false,\".fa-gauge-med:before\":false,\".fa-gauge:before\":false,\".fa-tachometer-alt-average:before\":false},[\"content:\\\"\\uf624\\\"\"]],[false,{\".fa-gauge-high:before\":false,\".fa-tachometer-alt-fast:before\":false,\".fa-tachometer-alt:before\":false},[\"content:\\\"\\uf625\\\"\"]],[false,{\".fa-gauge-simple-med:before\":false,\".fa-gauge-simple:before\":false,\".fa-tachometer-average:before\":false},[\"content:\\\"\\uf629\\\"\"]],[false,{\".fa-gauge-simple-high:before\":false,\".fa-tachometer-fast:before\":false,\".fa-tachometer:before\":false},[\"content:\\\"\\uf62a\\\"\"]],[false,{\".fa-gavel:before\":false,\".fa-legal:before\":false},[\"content:\\\"\\uf0e3\\\"\"]],[false,{\".fa-cog:before\":false,\".fa-gear:before\":false},[\"content:\\\"\\uf013\\\"\"]],[false,{\".fa-cogs:before\":false,\".fa-gears:before\":false},[\"content:\\\"\\uf085\\\"\"]],[false,{\".fa-gem:before\":false},[\"content:\\\"\\uf3a5\\\"\"]],[false,{\".fa-genderless:before\":false},[\"content:\\\"\\uf22d\\\"\"]],[false,{\".fa-ghost:before\":false},[\"content:\\\"\\uf6e2\\\"\"]],[false,{\".fa-gift:before\":false},[\"content:\\\"\\uf06b\\\"\"]],[false,{\".fa-gifts:before\":false},[\"content:\\\"\\uf79c\\\"\"]],[false,{\".fa-glass-water:before\":false},[\"content:\\\"\\ue4f4\\\"\"]],[false,{\".fa-glass-water-droplet:before\":false},[\"content:\\\"\\ue4f5\\\"\"]],[false,{\".fa-glasses:before\":false},[\"content:\\\"\\uf530\\\"\"]],[false,{\".fa-globe:before\":false},[\"content:\\\"\\uf0ac\\\"\"]],[false,{\".fa-golf-ball-tee:before\":false,\".fa-golf-ball:before\":false},[\"content:\\\"\\uf450\\\"\"]],[false,{\".fa-gopuram:before\":false},[\"content:\\\"\\uf664\\\"\"]],[false,{\".fa-graduation-cap:before\":false,\".fa-mortar-board:before\":false},[\"content:\\\"\\uf19d\\\"\"]],[false,{\".fa-greater-than:before\":false},[\"content:\\\">\\\"\"]],[false,{\".fa-greater-than-equal:before\":false},[\"content:\\\"\\uf532\\\"\"]],[false,{\".fa-grip-horizontal:before\":false,\".fa-grip:before\":false},[\"content:\\\"\\uf58d\\\"\"]],[false,{\".fa-grip-lines:before\":false},[\"content:\\\"\\uf7a4\\\"\"]],[false,{\".fa-grip-lines-vertical:before\":false},[\"content:\\\"\\uf7a5\\\"\"]],[false,{\".fa-grip-vertical:before\":false},[\"content:\\\"\\uf58e\\\"\"]],[false,{\".fa-group-arrows-rotate:before\":false},[\"content:\\\"\\ue4f6\\\"\"]],[false,{\".fa-guarani-sign:before\":false},[\"content:\\\"\\ue19a\\\"\"]],[false,{\".fa-guitar:before\":false},[\"content:\\\"\\uf7a6\\\"\"]],[false,{\".fa-gun:before\":false},[\"content:\\\"\\ue19b\\\"\"]],[false,{\".fa-h:before\":false},[\"content:\\\"H\\\"\"]],[false,{\".fa-hammer:before\":false},[\"content:\\\"\\uf6e3\\\"\"]],[false,{\".fa-hamsa:before\":false},[\"content:\\\"\\uf665\\\"\"]],[false,{\".fa-hand-paper:before\":false,\".fa-hand:before\":false},[\"content:\\\"\\uf256\\\"\"]],[false,{\".fa-hand-back-fist:before\":false,\".fa-hand-rock:before\":false},[\"content:\\\"\\uf255\\\"\"]],[false,{\".fa-allergies:before\":false,\".fa-hand-dots:before\":false},[\"content:\\\"\\uf461\\\"\"]],[false,{\".fa-fist-raised:before\":false,\".fa-hand-fist:before\":false},[\"content:\\\"\\uf6de\\\"\"]],[false,{\".fa-hand-holding:before\":false},[\"content:\\\"\\uf4bd\\\"\"]],[false,{\".fa-hand-holding-dollar:before\":false,\".fa-hand-holding-usd:before\":false},[\"content:\\\"\\uf4c0\\\"\"]],[false,{\".fa-hand-holding-droplet:before\":false,\".fa-hand-holding-water:before\":false},[\"content:\\\"\\uf4c1\\\"\"]],[false,{\".fa-hand-holding-hand:before\":false},[\"content:\\\"\\ue4f7\\\"\"]],[false,{\".fa-hand-holding-heart:before\":false},[\"content:\\\"\\uf4be\\\"\"]],[false,{\".fa-hand-holding-medical:before\":false},[\"content:\\\"\\ue05c\\\"\"]],[false,{\".fa-hand-lizard:before\":false},[\"content:\\\"\\uf258\\\"\"]],[false,{\".fa-hand-middle-finger:before\":false},[\"content:\\\"\\uf806\\\"\"]],[false,{\".fa-hand-peace:before\":false},[\"content:\\\"\\uf25b\\\"\"]],[false,{\".fa-hand-point-down:before\":false},[\"content:\\\"\\uf0a7\\\"\"]],[false,{\".fa-hand-point-left:before\":false},[\"content:\\\"\\uf0a5\\\"\"]],[false,{\".fa-hand-point-right:before\":false},[\"content:\\\"\\uf0a4\\\"\"]],[false,{\".fa-hand-point-up:before\":false},[\"content:\\\"\\uf0a6\\\"\"]],[false,{\".fa-hand-pointer:before\":false},[\"content:\\\"\\uf25a\\\"\"]],[false,{\".fa-hand-scissors:before\":false},[\"content:\\\"\\uf257\\\"\"]],[false,{\".fa-hand-sparkles:before\":false},[\"content:\\\"\\ue05d\\\"\"]],[false,{\".fa-hand-spock:before\":false},[\"content:\\\"\\uf259\\\"\"]],[false,{\".fa-handcuffs:before\":false},[\"content:\\\"\\ue4f8\\\"\"]],[false,{\".fa-hands:before\":false,\".fa-sign-language:before\":false,\".fa-signing:before\":false},[\"content:\\\"\\uf2a7\\\"\"]],[false,{\".fa-american-sign-language-interpreting:before\":false,\".fa-asl-interpreting:before\":false,\".fa-hands-american-sign-language-interpreting:before\":false,\".fa-hands-asl-interpreting:before\":false},[\"content:\\\"\\uf2a3\\\"\"]],[false,{\".fa-hands-bound:before\":false},[\"content:\\\"\\ue4f9\\\"\"]],[false,{\".fa-hands-bubbles:before\":false,\".fa-hands-wash:before\":false},[\"content:\\\"\\ue05e\\\"\"]],[false,{\".fa-hands-clapping:before\":false},[\"content:\\\"\\ue1a8\\\"\"]],[false,{\".fa-hands-holding:before\":false},[\"content:\\\"\\uf4c2\\\"\"]],[false,{\".fa-hands-holding-child:before\":false},[\"content:\\\"\\ue4fa\\\"\"]],[false,{\".fa-hands-holding-circle:before\":false},[\"content:\\\"\\ue4fb\\\"\"]],[false,{\".fa-hands-praying:before\":false,\".fa-praying-hands:before\":false},[\"content:\\\"\\uf684\\\"\"]],[false,{\".fa-handshake:before\":false},[\"content:\\\"\\uf2b5\\\"\"]],[false,{\".fa-hands-helping:before\":false,\".fa-handshake-angle:before\":false},[\"content:\\\"\\uf4c4\\\"\"]],[false,{\".fa-handshake-alt:before\":false,\".fa-handshake-simple:before\":false},[\"content:\\\"\\uf4c6\\\"\"]],[false,{\".fa-handshake-alt-slash:before\":false,\".fa-handshake-simple-slash:before\":false},[\"content:\\\"\\ue05f\\\"\"]],[false,{\".fa-handshake-slash:before\":false},[\"content:\\\"\\ue060\\\"\"]],[false,{\".fa-hanukiah:before\":false},[\"content:\\\"\\uf6e6\\\"\"]],[false,{\".fa-hard-drive:before\":false,\".fa-hdd:before\":false},[\"content:\\\"\\uf0a0\\\"\"]],[false,{\".fa-hashtag:before\":false},[\"content:\\\"#\\\"\"]],[false,{\".fa-hat-cowboy:before\":false},[\"content:\\\"\\uf8c0\\\"\"]],[false,{\".fa-hat-cowboy-side:before\":false},[\"content:\\\"\\uf8c1\\\"\"]],[false,{\".fa-hat-wizard:before\":false},[\"content:\\\"\\uf6e8\\\"\"]],[false,{\".fa-head-side-cough:before\":false},[\"content:\\\"\\ue061\\\"\"]],[false,{\".fa-head-side-cough-slash:before\":false},[\"content:\\\"\\ue062\\\"\"]],[false,{\".fa-head-side-mask:before\":false},[\"content:\\\"\\ue063\\\"\"]],[false,{\".fa-head-side-virus:before\":false},[\"content:\\\"\\ue064\\\"\"]],[false,{\".fa-header:before\":false,\".fa-heading:before\":false},[\"content:\\\"\\uf1dc\\\"\"]],[false,{\".fa-headphones:before\":false},[\"content:\\\"\\uf025\\\"\"]],[false,{\".fa-headphones-alt:before\":false,\".fa-headphones-simple:before\":false},[\"content:\\\"\\uf58f\\\"\"]],[false,{\".fa-headset:before\":false},[\"content:\\\"\\uf590\\\"\"]],[false,{\".fa-heart:before\":false},[\"content:\\\"\\uf004\\\"\"]],[false,{\".fa-heart-circle-bolt:before\":false},[\"content:\\\"\\ue4fc\\\"\"]],[false,{\".fa-heart-circle-check:before\":false},[\"content:\\\"\\ue4fd\\\"\"]],[false,{\".fa-heart-circle-exclamation:before\":false},[\"content:\\\"\\ue4fe\\\"\"]],[false,{\".fa-heart-circle-minus:before\":false},[\"content:\\\"\\ue4ff\\\"\"]],[false,{\".fa-heart-circle-plus:before\":false},[\"content:\\\"\\ue500\\\"\"]],[false,{\".fa-heart-circle-xmark:before\":false},[\"content:\\\"\\ue501\\\"\"]],[false,{\".fa-heart-broken:before\":false,\".fa-heart-crack:before\":false},[\"content:\\\"\\uf7a9\\\"\"]],[false,{\".fa-heart-pulse:before\":false,\".fa-heartbeat:before\":false},[\"content:\\\"\\uf21e\\\"\"]],[false,{\".fa-helicopter:before\":false},[\"content:\\\"\\uf533\\\"\"]],[false,{\".fa-helicopter-symbol:before\":false},[\"content:\\\"\\ue502\\\"\"]],[false,{\".fa-hard-hat:before\":false,\".fa-hat-hard:before\":false,\".fa-helmet-safety:before\":false},[\"content:\\\"\\uf807\\\"\"]],[false,{\".fa-helmet-un:before\":false},[\"content:\\\"\\ue503\\\"\"]],[false,{\".fa-highlighter:before\":false},[\"content:\\\"\\uf591\\\"\"]],[false,{\".fa-hill-avalanche:before\":false},[\"content:\\\"\\ue507\\\"\"]],[false,{\".fa-hill-rockslide:before\":false},[\"content:\\\"\\ue508\\\"\"]],[false,{\".fa-hippo:before\":false},[\"content:\\\"\\uf6ed\\\"\"]],[false,{\".fa-hockey-puck:before\":false},[\"content:\\\"\\uf453\\\"\"]],[false,{\".fa-holly-berry:before\":false},[\"content:\\\"\\uf7aa\\\"\"]],[false,{\".fa-horse:before\":false},[\"content:\\\"\\uf6f0\\\"\"]],[false,{\".fa-horse-head:before\":false},[\"content:\\\"\\uf7ab\\\"\"]],[false,{\".fa-hospital-alt:before\":false,\".fa-hospital-wide:before\":false,\".fa-hospital:before\":false},[\"content:\\\"\\uf0f8\\\"\"]],[false,{\".fa-hospital-user:before\":false},[\"content:\\\"\\uf80d\\\"\"]],[false,{\".fa-hot-tub-person:before\":false,\".fa-hot-tub:before\":false},[\"content:\\\"\\uf593\\\"\"]],[false,{\".fa-hotdog:before\":false},[\"content:\\\"\\uf80f\\\"\"]],[false,{\".fa-hotel:before\":false},[\"content:\\\"\\uf594\\\"\"]],[false,{\".fa-hourglass-2:before\":false,\".fa-hourglass-half:before\":false,\".fa-hourglass:before\":false},[\"content:\\\"\\uf254\\\"\"]],[false,{\".fa-hourglass-empty:before\":false},[\"content:\\\"\\uf252\\\"\"]],[false,{\".fa-hourglass-3:before\":false,\".fa-hourglass-end:before\":false},[\"content:\\\"\\uf253\\\"\"]],[false,{\".fa-hourglass-1:before\":false,\".fa-hourglass-start:before\":false},[\"content:\\\"\\uf251\\\"\"]],[false,{\".fa-home-alt:before\":false,\".fa-home-lg-alt:before\":false,\".fa-home:before\":false,\".fa-house:before\":false},[\"content:\\\"\\uf015\\\"\"]],[false,{\".fa-home-lg:before\":false,\".fa-house-chimney:before\":false},[\"content:\\\"\\ue3af\\\"\"]],[false,{\".fa-house-chimney-crack:before\":false,\".fa-house-damage:before\":false},[\"content:\\\"\\uf6f1\\\"\"]],[false,{\".fa-clinic-medical:before\":false,\".fa-house-chimney-medical:before\":false},[\"content:\\\"\\uf7f2\\\"\"]],[false,{\".fa-house-chimney-user:before\":false},[\"content:\\\"\\ue065\\\"\"]],[false,{\".fa-house-chimney-window:before\":false},[\"content:\\\"\\ue00d\\\"\"]],[false,{\".fa-house-circle-check:before\":false},[\"content:\\\"\\ue509\\\"\"]],[false,{\".fa-house-circle-exclamation:before\":false},[\"content:\\\"\\ue50a\\\"\"]],[false,{\".fa-house-circle-xmark:before\":false},[\"content:\\\"\\ue50b\\\"\"]],[false,{\".fa-house-crack:before\":false},[\"content:\\\"\\ue3b1\\\"\"]],[false,{\".fa-house-fire:before\":false},[\"content:\\\"\\ue50c\\\"\"]],[false,{\".fa-house-flag:before\":false},[\"content:\\\"\\ue50d\\\"\"]],[false,{\".fa-house-flood-water:before\":false},[\"content:\\\"\\ue50e\\\"\"]],[false,{\".fa-house-flood-water-circle-arrow-right:before\":false},[\"content:\\\"\\ue50f\\\"\"]],[false,{\".fa-house-laptop:before\":false,\".fa-laptop-house:before\":false},[\"content:\\\"\\ue066\\\"\"]],[false,{\".fa-house-lock:before\":false},[\"content:\\\"\\ue510\\\"\"]],[false,{\".fa-house-medical:before\":false},[\"content:\\\"\\ue3b2\\\"\"]],[false,{\".fa-house-medical-circle-check:before\":false},[\"content:\\\"\\ue511\\\"\"]],[false,{\".fa-house-medical-circle-exclamation:before\":false},[\"content:\\\"\\ue512\\\"\"]],[false,{\".fa-house-medical-circle-xmark:before\":false},[\"content:\\\"\\ue513\\\"\"]],[false,{\".fa-house-medical-flag:before\":false},[\"content:\\\"\\ue514\\\"\"]],[false,{\".fa-house-signal:before\":false},[\"content:\\\"\\ue012\\\"\"]],[false,{\".fa-house-tsunami:before\":false},[\"content:\\\"\\ue515\\\"\"]],[false,{\".fa-home-user:before\":false,\".fa-house-user:before\":false},[\"content:\\\"\\ue1b0\\\"\"]],[false,{\".fa-hryvnia-sign:before\":false,\".fa-hryvnia:before\":false},[\"content:\\\"\\uf6f2\\\"\"]],[false,{\".fa-hurricane:before\":false},[\"content:\\\"\\uf751\\\"\"]],[false,{\".fa-i:before\":false},[\"content:\\\"I\\\"\"]],[false,{\".fa-i-cursor:before\":false},[\"content:\\\"\\uf246\\\"\"]],[false,{\".fa-ice-cream:before\":false},[\"content:\\\"\\uf810\\\"\"]],[false,{\".fa-icicles:before\":false},[\"content:\\\"\\uf7ad\\\"\"]],[false,{\".fa-heart-music-camera-bolt:before\":false,\".fa-icons:before\":false},[\"content:\\\"\\uf86d\\\"\"]],[false,{\".fa-id-badge:before\":false},[\"content:\\\"\\uf2c1\\\"\"]],[false,{\".fa-drivers-license:before\":false,\".fa-id-card:before\":false},[\"content:\\\"\\uf2c2\\\"\"]],[false,{\".fa-id-card-alt:before\":false,\".fa-id-card-clip:before\":false},[\"content:\\\"\\uf47f\\\"\"]],[false,{\".fa-igloo:before\":false},[\"content:\\\"\\uf7ae\\\"\"]],[false,{\".fa-image:before\":false},[\"content:\\\"\\uf03e\\\"\"]],[false,{\".fa-image-portrait:before\":false,\".fa-portrait:before\":false},[\"content:\\\"\\uf3e0\\\"\"]],[false,{\".fa-images:before\":false},[\"content:\\\"\\uf302\\\"\"]],[false,{\".fa-inbox:before\":false},[\"content:\\\"\\uf01c\\\"\"]],[false,{\".fa-indent:before\":false},[\"content:\\\"\\uf03c\\\"\"]],[false,{\".fa-indian-rupee-sign:before\":false,\".fa-indian-rupee:before\":false,\".fa-inr:before\":false},[\"content:\\\"\\ue1bc\\\"\"]],[false,{\".fa-industry:before\":false},[\"content:\\\"\\uf275\\\"\"]],[false,{\".fa-infinity:before\":false},[\"content:\\\"\\uf534\\\"\"]],[false,{\".fa-info:before\":false},[\"content:\\\"\\uf129\\\"\"]],[false,{\".fa-italic:before\":false},[\"content:\\\"\\uf033\\\"\"]],[false,{\".fa-j:before\":false},[\"content:\\\"J\\\"\"]],[false,{\".fa-jar:before\":false},[\"content:\\\"\\ue516\\\"\"]],[false,{\".fa-jar-wheat:before\":false},[\"content:\\\"\\ue517\\\"\"]],[false,{\".fa-jedi:before\":false},[\"content:\\\"\\uf669\\\"\"]],[false,{\".fa-fighter-jet:before\":false,\".fa-jet-fighter:before\":false},[\"content:\\\"\\uf0fb\\\"\"]],[false,{\".fa-jet-fighter-up:before\":false},[\"content:\\\"\\ue518\\\"\"]],[false,{\".fa-joint:before\":false},[\"content:\\\"\\uf595\\\"\"]],[false,{\".fa-jug-detergent:before\":false},[\"content:\\\"\\ue519\\\"\"]],[false,{\".fa-k:before\":false},[\"content:\\\"K\\\"\"]],[false,{\".fa-kaaba:before\":false},[\"content:\\\"\\uf66b\\\"\"]],[false,{\".fa-key:before\":false},[\"content:\\\"\\uf084\\\"\"]],[false,{\".fa-keyboard:before\":false},[\"content:\\\"\\uf11c\\\"\"]],[false,{\".fa-khanda:before\":false},[\"content:\\\"\\uf66d\\\"\"]],[false,{\".fa-kip-sign:before\":false},[\"content:\\\"\\ue1c4\\\"\"]],[false,{\".fa-first-aid:before\":false,\".fa-kit-medical:before\":false},[\"content:\\\"\\uf479\\\"\"]],[false,{\".fa-kitchen-set:before\":false},[\"content:\\\"\\ue51a\\\"\"]],[false,{\".fa-kiwi-bird:before\":false},[\"content:\\\"\\uf535\\\"\"]],[false,{\".fa-l:before\":false},[\"content:\\\"L\\\"\"]],[false,{\".fa-land-mine-on:before\":false},[\"content:\\\"\\ue51b\\\"\"]],[false,{\".fa-landmark:before\":false},[\"content:\\\"\\uf66f\\\"\"]],[false,{\".fa-landmark-alt:before\":false,\".fa-landmark-dome:before\":false},[\"content:\\\"\\uf752\\\"\"]],[false,{\".fa-landmark-flag:before\":false},[\"content:\\\"\\ue51c\\\"\"]],[false,{\".fa-language:before\":false},[\"content:\\\"\\uf1ab\\\"\"]],[false,{\".fa-laptop:before\":false},[\"content:\\\"\\uf109\\\"\"]],[false,{\".fa-laptop-code:before\":false},[\"content:\\\"\\uf5fc\\\"\"]],[false,{\".fa-laptop-file:before\":false},[\"content:\\\"\\ue51d\\\"\"]],[false,{\".fa-laptop-medical:before\":false},[\"content:\\\"\\uf812\\\"\"]],[false,{\".fa-lari-sign:before\":false},[\"content:\\\"\\ue1c8\\\"\"]],[false,{\".fa-layer-group:before\":false},[\"content:\\\"\\uf5fd\\\"\"]],[false,{\".fa-leaf:before\":false},[\"content:\\\"\\uf06c\\\"\"]],[false,{\".fa-left-long:before\":false,\".fa-long-arrow-alt-left:before\":false},[\"content:\\\"\\uf30a\\\"\"]],[false,{\".fa-arrows-alt-h:before\":false,\".fa-left-right:before\":false},[\"content:\\\"\\uf337\\\"\"]],[false,{\".fa-lemon:before\":false},[\"content:\\\"\\uf094\\\"\"]],[false,{\".fa-less-than:before\":false},[\"content:\\\"<\\\"\"]],[false,{\".fa-less-than-equal:before\":false},[\"content:\\\"\\uf537\\\"\"]],[false,{\".fa-life-ring:before\":false},[\"content:\\\"\\uf1cd\\\"\"]],[false,{\".fa-lightbulb:before\":false},[\"content:\\\"\\uf0eb\\\"\"]],[false,{\".fa-lines-leaning:before\":false},[\"content:\\\"\\ue51e\\\"\"]],[false,{\".fa-chain:before\":false,\".fa-link:before\":false},[\"content:\\\"\\uf0c1\\\"\"]],[false,{\".fa-chain-broken:before\":false,\".fa-chain-slash:before\":false,\".fa-link-slash:before\":false,\".fa-unlink:before\":false},[\"content:\\\"\\uf127\\\"\"]],[false,{\".fa-lira-sign:before\":false},[\"content:\\\"\\uf195\\\"\"]],[false,{\".fa-list-squares:before\":false,\".fa-list:before\":false},[\"content:\\\"\\uf03a\\\"\"]],[false,{\".fa-list-check:before\":false,\".fa-tasks:before\":false},[\"content:\\\"\\uf0ae\\\"\"]],[false,{\".fa-list-1-2:before\":false,\".fa-list-numeric:before\":false,\".fa-list-ol:before\":false},[\"content:\\\"\\uf0cb\\\"\"]],[false,{\".fa-list-dots:before\":false,\".fa-list-ul:before\":false},[\"content:\\\"\\uf0ca\\\"\"]],[false,{\".fa-litecoin-sign:before\":false},[\"content:\\\"\\ue1d3\\\"\"]],[false,{\".fa-location-arrow:before\":false},[\"content:\\\"\\uf124\\\"\"]],[false,{\".fa-location-crosshairs:before\":false,\".fa-location:before\":false},[\"content:\\\"\\uf601\\\"\"]],[false,{\".fa-location-dot:before\":false,\".fa-map-marker-alt:before\":false},[\"content:\\\"\\uf3c5\\\"\"]],[false,{\".fa-location-pin:before\":false,\".fa-map-marker:before\":false},[\"content:\\\"\\uf041\\\"\"]],[false,{\".fa-location-pin-lock:before\":false},[\"content:\\\"\\ue51f\\\"\"]],[false,{\".fa-lock:before\":false},[\"content:\\\"\\uf023\\\"\"]],[false,{\".fa-lock-open:before\":false},[\"content:\\\"\\uf3c1\\\"\"]],[false,{\".fa-locust:before\":false},[\"content:\\\"\\ue520\\\"\"]],[false,{\".fa-lungs:before\":false},[\"content:\\\"\\uf604\\\"\"]],[false,{\".fa-lungs-virus:before\":false},[\"content:\\\"\\ue067\\\"\"]],[false,{\".fa-m:before\":false},[\"content:\\\"M\\\"\"]],[false,{\".fa-magnet:before\":false},[\"content:\\\"\\uf076\\\"\"]],[false,{\".fa-magnifying-glass:before\":false,\".fa-search:before\":false},[\"content:\\\"\\uf002\\\"\"]],[false,{\".fa-magnifying-glass-arrow-right:before\":false},[\"content:\\\"\\ue521\\\"\"]],[false,{\".fa-magnifying-glass-chart:before\":false},[\"content:\\\"\\ue522\\\"\"]],[false,{\".fa-magnifying-glass-dollar:before\":false,\".fa-search-dollar:before\":false},[\"content:\\\"\\uf688\\\"\"]],[false,{\".fa-magnifying-glass-location:before\":false,\".fa-search-location:before\":false},[\"content:\\\"\\uf689\\\"\"]],[false,{\".fa-magnifying-glass-minus:before\":false,\".fa-search-minus:before\":false},[\"content:\\\"\\uf010\\\"\"]],[false,{\".fa-magnifying-glass-plus:before\":false,\".fa-search-plus:before\":false},[\"content:\\\"\\uf00e\\\"\"]],[false,{\".fa-manat-sign:before\":false},[\"content:\\\"\\ue1d5\\\"\"]],[false,{\".fa-map:before\":false},[\"content:\\\"\\uf279\\\"\"]],[false,{\".fa-map-location:before\":false,\".fa-map-marked:before\":false},[\"content:\\\"\\uf59f\\\"\"]],[false,{\".fa-map-location-dot:before\":false,\".fa-map-marked-alt:before\":false},[\"content:\\\"\\uf5a0\\\"\"]],[false,{\".fa-map-pin:before\":false},[\"content:\\\"\\uf276\\\"\"]],[false,{\".fa-marker:before\":false},[\"content:\\\"\\uf5a1\\\"\"]],[false,{\".fa-mars:before\":false},[\"content:\\\"\\uf222\\\"\"]],[false,{\".fa-mars-and-venus:before\":false},[\"content:\\\"\\uf224\\\"\"]],[false,{\".fa-mars-and-venus-burst:before\":false},[\"content:\\\"\\ue523\\\"\"]],[false,{\".fa-mars-double:before\":false},[\"content:\\\"\\uf227\\\"\"]],[false,{\".fa-mars-stroke:before\":false},[\"content:\\\"\\uf229\\\"\"]],[false,{\".fa-mars-stroke-h:before\":false,\".fa-mars-stroke-right:before\":false},[\"content:\\\"\\uf22b\\\"\"]],[false,{\".fa-mars-stroke-up:before\":false,\".fa-mars-stroke-v:before\":false},[\"content:\\\"\\uf22a\\\"\"]],[false,{\".fa-glass-martini-alt:before\":false,\".fa-martini-glass:before\":false},[\"content:\\\"\\uf57b\\\"\"]],[false,{\".fa-cocktail:before\":false,\".fa-martini-glass-citrus:before\":false},[\"content:\\\"\\uf561\\\"\"]],[false,{\".fa-glass-martini:before\":false,\".fa-martini-glass-empty:before\":false},[\"content:\\\"\\uf000\\\"\"]],[false,{\".fa-mask:before\":false},[\"content:\\\"\\uf6fa\\\"\"]],[false,{\".fa-mask-face:before\":false},[\"content:\\\"\\ue1d7\\\"\"]],[false,{\".fa-mask-ventilator:before\":false},[\"content:\\\"\\ue524\\\"\"]],[false,{\".fa-masks-theater:before\":false,\".fa-theater-masks:before\":false},[\"content:\\\"\\uf630\\\"\"]],[false,{\".fa-mattress-pillow:before\":false},[\"content:\\\"\\ue525\\\"\"]],[false,{\".fa-expand-arrows-alt:before\":false,\".fa-maximize:before\":false},[\"content:\\\"\\uf31e\\\"\"]],[false,{\".fa-medal:before\":false},[\"content:\\\"\\uf5a2\\\"\"]],[false,{\".fa-memory:before\":false},[\"content:\\\"\\uf538\\\"\"]],[false,{\".fa-menorah:before\":false},[\"content:\\\"\\uf676\\\"\"]],[false,{\".fa-mercury:before\":false},[\"content:\\\"\\uf223\\\"\"]],[false,{\".fa-comment-alt:before\":false,\".fa-message:before\":false},[\"content:\\\"\\uf27a\\\"\"]],[false,{\".fa-meteor:before\":false},[\"content:\\\"\\uf753\\\"\"]],[false,{\".fa-microchip:before\":false},[\"content:\\\"\\uf2db\\\"\"]],[false,{\".fa-microphone:before\":false},[\"content:\\\"\\uf130\\\"\"]],[false,{\".fa-microphone-alt:before\":false,\".fa-microphone-lines:before\":false},[\"content:\\\"\\uf3c9\\\"\"]],[false,{\".fa-microphone-alt-slash:before\":false,\".fa-microphone-lines-slash:before\":false},[\"content:\\\"\\uf539\\\"\"]],[false,{\".fa-microphone-slash:before\":false},[\"content:\\\"\\uf131\\\"\"]],[false,{\".fa-microscope:before\":false},[\"content:\\\"\\uf610\\\"\"]],[false,{\".fa-mill-sign:before\":false},[\"content:\\\"\\ue1ed\\\"\"]],[false,{\".fa-compress-arrows-alt:before\":false,\".fa-minimize:before\":false},[\"content:\\\"\\uf78c\\\"\"]],[false,{\".fa-minus:before\":false,\".fa-subtract:before\":false},[\"content:\\\"\\uf068\\\"\"]],[false,{\".fa-mitten:before\":false},[\"content:\\\"\\uf7b5\\\"\"]],[false,{\".fa-mobile-android:before\":false,\".fa-mobile-phone:before\":false,\".fa-mobile:before\":false},[\"content:\\\"\\uf3ce\\\"\"]],[false,{\".fa-mobile-button:before\":false},[\"content:\\\"\\uf10b\\\"\"]],[false,{\".fa-mobile-retro:before\":false},[\"content:\\\"\\ue527\\\"\"]],[false,{\".fa-mobile-android-alt:before\":false,\".fa-mobile-screen:before\":false},[\"content:\\\"\\uf3cf\\\"\"]],[false,{\".fa-mobile-alt:before\":false,\".fa-mobile-screen-button:before\":false},[\"content:\\\"\\uf3cd\\\"\"]],[false,{\".fa-money-bill:before\":false},[\"content:\\\"\\uf0d6\\\"\"]],[false,{\".fa-money-bill-1:before\":false,\".fa-money-bill-alt:before\":false},[\"content:\\\"\\uf3d1\\\"\"]],[false,{\".fa-money-bill-1-wave:before\":false,\".fa-money-bill-wave-alt:before\":false},[\"content:\\\"\\uf53b\\\"\"]],[false,{\".fa-money-bill-transfer:before\":false},[\"content:\\\"\\ue528\\\"\"]],[false,{\".fa-money-bill-trend-up:before\":false},[\"content:\\\"\\ue529\\\"\"]],[false,{\".fa-money-bill-wave:before\":false},[\"content:\\\"\\uf53a\\\"\"]],[false,{\".fa-money-bill-wheat:before\":false},[\"content:\\\"\\ue52a\\\"\"]],[false,{\".fa-money-bills:before\":false},[\"content:\\\"\\ue1f3\\\"\"]],[false,{\".fa-money-check:before\":false},[\"content:\\\"\\uf53c\\\"\"]],[false,{\".fa-money-check-alt:before\":false,\".fa-money-check-dollar:before\":false},[\"content:\\\"\\uf53d\\\"\"]],[false,{\".fa-monument:before\":false},[\"content:\\\"\\uf5a6\\\"\"]],[false,{\".fa-moon:before\":false},[\"content:\\\"\\uf186\\\"\"]],[false,{\".fa-mortar-pestle:before\":false},[\"content:\\\"\\uf5a7\\\"\"]],[false,{\".fa-mosque:before\":false},[\"content:\\\"\\uf678\\\"\"]],[false,{\".fa-mosquito:before\":false},[\"content:\\\"\\ue52b\\\"\"]],[false,{\".fa-mosquito-net:before\":false},[\"content:\\\"\\ue52c\\\"\"]],[false,{\".fa-motorcycle:before\":false},[\"content:\\\"\\uf21c\\\"\"]],[false,{\".fa-mound:before\":false},[\"content:\\\"\\ue52d\\\"\"]],[false,{\".fa-mountain:before\":false},[\"content:\\\"\\uf6fc\\\"\"]],[false,{\".fa-mountain-city:before\":false},[\"content:\\\"\\ue52e\\\"\"]],[false,{\".fa-mountain-sun:before\":false},[\"content:\\\"\\ue52f\\\"\"]],[false,{\".fa-mug-hot:before\":false},[\"content:\\\"\\uf7b6\\\"\"]],[false,{\".fa-coffee:before\":false,\".fa-mug-saucer:before\":false},[\"content:\\\"\\uf0f4\\\"\"]],[false,{\".fa-music:before\":false},[\"content:\\\"\\uf001\\\"\"]],[false,{\".fa-n:before\":false},[\"content:\\\"N\\\"\"]],[false,{\".fa-naira-sign:before\":false},[\"content:\\\"\\ue1f6\\\"\"]],[false,{\".fa-network-wired:before\":false},[\"content:\\\"\\uf6ff\\\"\"]],[false,{\".fa-neuter:before\":false},[\"content:\\\"\\uf22c\\\"\"]],[false,{\".fa-newspaper:before\":false},[\"content:\\\"\\uf1ea\\\"\"]],[false,{\".fa-not-equal:before\":false},[\"content:\\\"\\uf53e\\\"\"]],[false,{\".fa-note-sticky:before\":false,\".fa-sticky-note:before\":false},[\"content:\\\"\\uf249\\\"\"]],[false,{\".fa-notes-medical:before\":false},[\"content:\\\"\\uf481\\\"\"]],[false,{\".fa-o:before\":false},[\"content:\\\"O\\\"\"]],[false,{\".fa-object-group:before\":false},[\"content:\\\"\\uf247\\\"\"]],[false,{\".fa-object-ungroup:before\":false},[\"content:\\\"\\uf248\\\"\"]],[false,{\".fa-oil-can:before\":false},[\"content:\\\"\\uf613\\\"\"]],[false,{\".fa-oil-well:before\":false},[\"content:\\\"\\ue532\\\"\"]],[false,{\".fa-om:before\":false},[\"content:\\\"\\uf679\\\"\"]],[false,{\".fa-otter:before\":false},[\"content:\\\"\\uf700\\\"\"]],[false,{\".fa-dedent:before\":false,\".fa-outdent:before\":false},[\"content:\\\"\\uf03b\\\"\"]],[false,{\".fa-p:before\":false},[\"content:\\\"P\\\"\"]],[false,{\".fa-pager:before\":false},[\"content:\\\"\\uf815\\\"\"]],[false,{\".fa-paint-roller:before\":false},[\"content:\\\"\\uf5aa\\\"\"]],[false,{\".fa-paint-brush:before\":false,\".fa-paintbrush:before\":false},[\"content:\\\"\\uf1fc\\\"\"]],[false,{\".fa-palette:before\":false},[\"content:\\\"\\uf53f\\\"\"]],[false,{\".fa-pallet:before\":false},[\"content:\\\"\\uf482\\\"\"]],[false,{\".fa-panorama:before\":false},[\"content:\\\"\\ue209\\\"\"]],[false,{\".fa-paper-plane:before\":false},[\"content:\\\"\\uf1d8\\\"\"]],[false,{\".fa-paperclip:before\":false},[\"content:\\\"\\uf0c6\\\"\"]],[false,{\".fa-parachute-box:before\":false},[\"content:\\\"\\uf4cd\\\"\"]],[false,{\".fa-paragraph:before\":false},[\"content:\\\"\\uf1dd\\\"\"]],[false,{\".fa-passport:before\":false},[\"content:\\\"\\uf5ab\\\"\"]],[false,{\".fa-file-clipboard:before\":false,\".fa-paste:before\":false},[\"content:\\\"\\uf0ea\\\"\"]],[false,{\".fa-pause:before\":false},[\"content:\\\"\\uf04c\\\"\"]],[false,{\".fa-paw:before\":false},[\"content:\\\"\\uf1b0\\\"\"]],[false,{\".fa-peace:before\":false},[\"content:\\\"\\uf67c\\\"\"]],[false,{\".fa-pen:before\":false},[\"content:\\\"\\uf304\\\"\"]],[false,{\".fa-pen-alt:before\":false,\".fa-pen-clip:before\":false},[\"content:\\\"\\uf305\\\"\"]],[false,{\".fa-pen-fancy:before\":false},[\"content:\\\"\\uf5ac\\\"\"]],[false,{\".fa-pen-nib:before\":false},[\"content:\\\"\\uf5ad\\\"\"]],[false,{\".fa-pen-ruler:before\":false,\".fa-pencil-ruler:before\":false},[\"content:\\\"\\uf5ae\\\"\"]],[false,{\".fa-edit:before\":false,\".fa-pen-to-square:before\":false},[\"content:\\\"\\uf044\\\"\"]],[false,{\".fa-pencil-alt:before\":false,\".fa-pencil:before\":false},[\"content:\\\"\\uf303\\\"\"]],[false,{\".fa-people-arrows-left-right:before\":false,\".fa-people-arrows:before\":false},[\"content:\\\"\\ue068\\\"\"]],[false,{\".fa-people-carry-box:before\":false,\".fa-people-carry:before\":false},[\"content:\\\"\\uf4ce\\\"\"]],[false,{\".fa-people-group:before\":false},[\"content:\\\"\\ue533\\\"\"]],[false,{\".fa-people-line:before\":false},[\"content:\\\"\\ue534\\\"\"]],[false,{\".fa-people-pulling:before\":false},[\"content:\\\"\\ue535\\\"\"]],[false,{\".fa-people-robbery:before\":false},[\"content:\\\"\\ue536\\\"\"]],[false,{\".fa-people-roof:before\":false},[\"content:\\\"\\ue537\\\"\"]],[false,{\".fa-pepper-hot:before\":false},[\"content:\\\"\\uf816\\\"\"]],[false,{\".fa-percent:before\":false,\".fa-percentage:before\":false},[\"content:\\\"%\\\"\"]],[false,{\".fa-male:before\":false,\".fa-person:before\":false},[\"content:\\\"\\uf183\\\"\"]],[false,{\".fa-person-arrow-down-to-line:before\":false},[\"content:\\\"\\ue538\\\"\"]],[false,{\".fa-person-arrow-up-from-line:before\":false},[\"content:\\\"\\ue539\\\"\"]],[false,{\".fa-biking:before\":false,\".fa-person-biking:before\":false},[\"content:\\\"\\uf84a\\\"\"]],[false,{\".fa-person-booth:before\":false},[\"content:\\\"\\uf756\\\"\"]],[false,{\".fa-person-breastfeeding:before\":false},[\"content:\\\"\\ue53a\\\"\"]],[false,{\".fa-person-burst:before\":false},[\"content:\\\"\\ue53b\\\"\"]],[false,{\".fa-person-cane:before\":false},[\"content:\\\"\\ue53c\\\"\"]],[false,{\".fa-person-chalkboard:before\":false},[\"content:\\\"\\ue53d\\\"\"]],[false,{\".fa-person-circle-check:before\":false},[\"content:\\\"\\ue53e\\\"\"]],[false,{\".fa-person-circle-exclamation:before\":false},[\"content:\\\"\\ue53f\\\"\"]],[false,{\".fa-person-circle-minus:before\":false},[\"content:\\\"\\ue540\\\"\"]],[false,{\".fa-person-circle-plus:before\":false},[\"content:\\\"\\ue541\\\"\"]],[false,{\".fa-person-circle-question:before\":false},[\"content:\\\"\\ue542\\\"\"]],[false,{\".fa-person-circle-xmark:before\":false},[\"content:\\\"\\ue543\\\"\"]],[false,{\".fa-digging:before\":false,\".fa-person-digging:before\":false},[\"content:\\\"\\uf85e\\\"\"]],[false,{\".fa-diagnoses:before\":false,\".fa-person-dots-from-line:before\":false},[\"content:\\\"\\uf470\\\"\"]],[false,{\".fa-female:before\":false,\".fa-person-dress:before\":false},[\"content:\\\"\\uf182\\\"\"]],[false,{\".fa-person-dress-burst:before\":false},[\"content:\\\"\\ue544\\\"\"]],[false,{\".fa-person-drowning:before\":false},[\"content:\\\"\\ue545\\\"\"]],[false,{\".fa-person-falling:before\":false},[\"content:\\\"\\ue546\\\"\"]],[false,{\".fa-person-falling-burst:before\":false},[\"content:\\\"\\ue547\\\"\"]],[false,{\".fa-person-half-dress:before\":false},[\"content:\\\"\\ue548\\\"\"]],[false,{\".fa-person-harassing:before\":false},[\"content:\\\"\\ue549\\\"\"]],[false,{\".fa-hiking:before\":false,\".fa-person-hiking:before\":false},[\"content:\\\"\\uf6ec\\\"\"]],[false,{\".fa-person-military-pointing:before\":false},[\"content:\\\"\\ue54a\\\"\"]],[false,{\".fa-person-military-rifle:before\":false},[\"content:\\\"\\ue54b\\\"\"]],[false,{\".fa-person-military-to-person:before\":false},[\"content:\\\"\\ue54c\\\"\"]],[false,{\".fa-person-praying:before\":false,\".fa-pray:before\":false},[\"content:\\\"\\uf683\\\"\"]],[false,{\".fa-person-pregnant:before\":false},[\"content:\\\"\\ue31e\\\"\"]],[false,{\".fa-person-rays:before\":false},[\"content:\\\"\\ue54d\\\"\"]],[false,{\".fa-person-rifle:before\":false},[\"content:\\\"\\ue54e\\\"\"]],[false,{\".fa-person-running:before\":false,\".fa-running:before\":false},[\"content:\\\"\\uf70c\\\"\"]],[false,{\".fa-person-shelter:before\":false},[\"content:\\\"\\ue54f\\\"\"]],[false,{\".fa-person-skating:before\":false,\".fa-skating:before\":false},[\"content:\\\"\\uf7c5\\\"\"]],[false,{\".fa-person-skiing:before\":false,\".fa-skiing:before\":false},[\"content:\\\"\\uf7c9\\\"\"]],[false,{\".fa-person-skiing-nordic:before\":false,\".fa-skiing-nordic:before\":false},[\"content:\\\"\\uf7ca\\\"\"]],[false,{\".fa-person-snowboarding:before\":false,\".fa-snowboarding:before\":false},[\"content:\\\"\\uf7ce\\\"\"]],[false,{\".fa-person-swimming:before\":false,\".fa-swimmer:before\":false},[\"content:\\\"\\uf5c4\\\"\"]],[false,{\".fa-person-through-window:before\":false},[\"content:\\\"\\ue433\\\"\"]],[false,{\".fa-person-walking:before\":false,\".fa-walking:before\":false},[\"content:\\\"\\uf554\\\"\"]],[false,{\".fa-person-walking-arrow-loop-left:before\":false},[\"content:\\\"\\ue551\\\"\"]],[false,{\".fa-person-walking-arrow-right:before\":false},[\"content:\\\"\\ue552\\\"\"]],[false,{\".fa-person-walking-dashed-line-arrow-right:before\":false},[\"content:\\\"\\ue553\\\"\"]],[false,{\".fa-person-walking-luggage:before\":false},[\"content:\\\"\\ue554\\\"\"]],[false,{\".fa-blind:before\":false,\".fa-person-walking-with-cane:before\":false},[\"content:\\\"\\uf29d\\\"\"]],[false,{\".fa-peseta-sign:before\":false},[\"content:\\\"\\ue221\\\"\"]],[false,{\".fa-peso-sign:before\":false},[\"content:\\\"\\ue222\\\"\"]],[false,{\".fa-phone:before\":false},[\"content:\\\"\\uf095\\\"\"]],[false,{\".fa-phone-alt:before\":false,\".fa-phone-flip:before\":false},[\"content:\\\"\\uf879\\\"\"]],[false,{\".fa-phone-slash:before\":false},[\"content:\\\"\\uf3dd\\\"\"]],[false,{\".fa-phone-volume:before\":false,\".fa-volume-control-phone:before\":false},[\"content:\\\"\\uf2a0\\\"\"]],[false,{\".fa-photo-film:before\":false,\".fa-photo-video:before\":false},[\"content:\\\"\\uf87c\\\"\"]],[false,{\".fa-piggy-bank:before\":false},[\"content:\\\"\\uf4d3\\\"\"]],[false,{\".fa-pills:before\":false},[\"content:\\\"\\uf484\\\"\"]],[false,{\".fa-pizza-slice:before\":false},[\"content:\\\"\\uf818\\\"\"]],[false,{\".fa-place-of-worship:before\":false},[\"content:\\\"\\uf67f\\\"\"]],[false,{\".fa-plane:before\":false},[\"content:\\\"\\uf072\\\"\"]],[false,{\".fa-plane-arrival:before\":false},[\"content:\\\"\\uf5af\\\"\"]],[false,{\".fa-plane-circle-check:before\":false},[\"content:\\\"\\ue555\\\"\"]],[false,{\".fa-plane-circle-exclamation:before\":false},[\"content:\\\"\\ue556\\\"\"]],[false,{\".fa-plane-circle-xmark:before\":false},[\"content:\\\"\\ue557\\\"\"]],[false,{\".fa-plane-departure:before\":false},[\"content:\\\"\\uf5b0\\\"\"]],[false,{\".fa-plane-lock:before\":false},[\"content:\\\"\\ue558\\\"\"]],[false,{\".fa-plane-slash:before\":false},[\"content:\\\"\\ue069\\\"\"]],[false,{\".fa-plane-up:before\":false},[\"content:\\\"\\ue22d\\\"\"]],[false,{\".fa-plant-wilt:before\":false},[\"content:\\\"\\ue43b\\\"\"]],[false,{\".fa-plate-wheat:before\":false},[\"content:\\\"\\ue55a\\\"\"]],[false,{\".fa-play:before\":false},[\"content:\\\"\\uf04b\\\"\"]],[false,{\".fa-plug:before\":false},[\"content:\\\"\\uf1e6\\\"\"]],[false,{\".fa-plug-circle-bolt:before\":false},[\"content:\\\"\\ue55b\\\"\"]],[false,{\".fa-plug-circle-check:before\":false},[\"content:\\\"\\ue55c\\\"\"]],[false,{\".fa-plug-circle-exclamation:before\":false},[\"content:\\\"\\ue55d\\\"\"]],[false,{\".fa-plug-circle-minus:before\":false},[\"content:\\\"\\ue55e\\\"\"]],[false,{\".fa-plug-circle-plus:before\":false},[\"content:\\\"\\ue55f\\\"\"]],[false,{\".fa-plug-circle-xmark:before\":false},[\"content:\\\"\\ue560\\\"\"]],[false,{\".fa-add:before\":false,\".fa-plus:before\":false},[\"content:\\\"+\\\"\"]],[false,{\".fa-plus-minus:before\":false},[\"content:\\\"\\ue43c\\\"\"]],[false,{\".fa-podcast:before\":false},[\"content:\\\"\\uf2ce\\\"\"]],[false,{\".fa-poo:before\":false},[\"content:\\\"\\uf2fe\\\"\"]],[false,{\".fa-poo-bolt:before\":false,\".fa-poo-storm:before\":false},[\"content:\\\"\\uf75a\\\"\"]],[false,{\".fa-poop:before\":false},[\"content:\\\"\\uf619\\\"\"]],[false,{\".fa-power-off:before\":false},[\"content:\\\"\\uf011\\\"\"]],[false,{\".fa-prescription:before\":false},[\"content:\\\"\\uf5b1\\\"\"]],[false,{\".fa-prescription-bottle:before\":false},[\"content:\\\"\\uf485\\\"\"]],[false,{\".fa-prescription-bottle-alt:before\":false,\".fa-prescription-bottle-medical:before\":false},[\"content:\\\"\\uf486\\\"\"]],[false,{\".fa-print:before\":false},[\"content:\\\"\\uf02f\\\"\"]],[false,{\".fa-pump-medical:before\":false},[\"content:\\\"\\ue06a\\\"\"]],[false,{\".fa-pump-soap:before\":false},[\"content:\\\"\\ue06b\\\"\"]],[false,{\".fa-puzzle-piece:before\":false},[\"content:\\\"\\uf12e\\\"\"]],[false,{\".fa-q:before\":false},[\"content:\\\"Q\\\"\"]],[false,{\".fa-qrcode:before\":false},[\"content:\\\"\\uf029\\\"\"]],[false,{\".fa-question:before\":false},[\"content:\\\"?\\\"\"]],[false,{\".fa-quote-left-alt:before\":false,\".fa-quote-left:before\":false},[\"content:\\\"\\uf10d\\\"\"]],[false,{\".fa-quote-right-alt:before\":false,\".fa-quote-right:before\":false},[\"content:\\\"\\uf10e\\\"\"]],[false,{\".fa-r:before\":false},[\"content:\\\"R\\\"\"]],[false,{\".fa-radiation:before\":false},[\"content:\\\"\\uf7b9\\\"\"]],[false,{\".fa-radio:before\":false},[\"content:\\\"\\uf8d7\\\"\"]],[false,{\".fa-rainbow:before\":false},[\"content:\\\"\\uf75b\\\"\"]],[false,{\".fa-ranking-star:before\":false},[\"content:\\\"\\ue561\\\"\"]],[false,{\".fa-receipt:before\":false},[\"content:\\\"\\uf543\\\"\"]],[false,{\".fa-record-vinyl:before\":false},[\"content:\\\"\\uf8d9\\\"\"]],[false,{\".fa-ad:before\":false,\".fa-rectangle-ad:before\":false},[\"content:\\\"\\uf641\\\"\"]],[false,{\".fa-list-alt:before\":false,\".fa-rectangle-list:before\":false},[\"content:\\\"\\uf022\\\"\"]],[false,{\".fa-rectangle-times:before\":false,\".fa-rectangle-xmark:before\":false,\".fa-times-rectangle:before\":false,\".fa-window-close:before\":false},[\"content:\\\"\\uf410\\\"\"]],[false,{\".fa-recycle:before\":false},[\"content:\\\"\\uf1b8\\\"\"]],[false,{\".fa-registered:before\":false},[\"content:\\\"\\uf25d\\\"\"]],[false,{\".fa-repeat:before\":false},[\"content:\\\"\\uf363\\\"\"]],[false,{\".fa-mail-reply:before\":false,\".fa-reply:before\":false},[\"content:\\\"\\uf3e5\\\"\"]],[false,{\".fa-mail-reply-all:before\":false,\".fa-reply-all:before\":false},[\"content:\\\"\\uf122\\\"\"]],[false,{\".fa-republican:before\":false},[\"content:\\\"\\uf75e\\\"\"]],[false,{\".fa-restroom:before\":false},[\"content:\\\"\\uf7bd\\\"\"]],[false,{\".fa-retweet:before\":false},[\"content:\\\"\\uf079\\\"\"]],[false,{\".fa-ribbon:before\":false},[\"content:\\\"\\uf4d6\\\"\"]],[false,{\".fa-right-from-bracket:before\":false,\".fa-sign-out-alt:before\":false},[\"content:\\\"\\uf2f5\\\"\"]],[false,{\".fa-exchange-alt:before\":false,\".fa-right-left:before\":false},[\"content:\\\"\\uf362\\\"\"]],[false,{\".fa-long-arrow-alt-right:before\":false,\".fa-right-long:before\":false},[\"content:\\\"\\uf30b\\\"\"]],[false,{\".fa-right-to-bracket:before\":false,\".fa-sign-in-alt:before\":false},[\"content:\\\"\\uf2f6\\\"\"]],[false,{\".fa-ring:before\":false},[\"content:\\\"\\uf70b\\\"\"]],[false,{\".fa-road:before\":false},[\"content:\\\"\\uf018\\\"\"]],[false,{\".fa-road-barrier:before\":false},[\"content:\\\"\\ue562\\\"\"]],[false,{\".fa-road-bridge:before\":false},[\"content:\\\"\\ue563\\\"\"]],[false,{\".fa-road-circle-check:before\":false},[\"content:\\\"\\ue564\\\"\"]],[false,{\".fa-road-circle-exclamation:before\":false},[\"content:\\\"\\ue565\\\"\"]],[false,{\".fa-road-circle-xmark:before\":false},[\"content:\\\"\\ue566\\\"\"]],[false,{\".fa-road-lock:before\":false},[\"content:\\\"\\ue567\\\"\"]],[false,{\".fa-road-spikes:before\":false},[\"content:\\\"\\ue568\\\"\"]],[false,{\".fa-robot:before\":false},[\"content:\\\"\\uf544\\\"\"]],[false,{\".fa-rocket:before\":false},[\"content:\\\"\\uf135\\\"\"]],[false,{\".fa-rotate:before\":false,\".fa-sync-alt:before\":false},[\"content:\\\"\\uf2f1\\\"\"]],[false,{\".fa-rotate-back:before\":false,\".fa-rotate-backward:before\":false,\".fa-rotate-left:before\":false,\".fa-undo-alt:before\":false},[\"content:\\\"\\uf2ea\\\"\"]],[false,{\".fa-redo-alt:before\":false,\".fa-rotate-forward:before\":false,\".fa-rotate-right:before\":false},[\"content:\\\"\\uf2f9\\\"\"]],[false,{\".fa-route:before\":false},[\"content:\\\"\\uf4d7\\\"\"]],[false,{\".fa-feed:before\":false,\".fa-rss:before\":false},[\"content:\\\"\\uf09e\\\"\"]],[false,{\".fa-rouble:before\":false,\".fa-rub:before\":false,\".fa-ruble-sign:before\":false,\".fa-ruble:before\":false},[\"content:\\\"\\uf158\\\"\"]],[false,{\".fa-rug:before\":false},[\"content:\\\"\\ue569\\\"\"]],[false,{\".fa-ruler:before\":false},[\"content:\\\"\\uf545\\\"\"]],[false,{\".fa-ruler-combined:before\":false},[\"content:\\\"\\uf546\\\"\"]],[false,{\".fa-ruler-horizontal:before\":false},[\"content:\\\"\\uf547\\\"\"]],[false,{\".fa-ruler-vertical:before\":false},[\"content:\\\"\\uf548\\\"\"]],[false,{\".fa-rupee-sign:before\":false,\".fa-rupee:before\":false},[\"content:\\\"\\uf156\\\"\"]],[false,{\".fa-rupiah-sign:before\":false},[\"content:\\\"\\ue23d\\\"\"]],[false,{\".fa-s:before\":false},[\"content:\\\"S\\\"\"]],[false,{\".fa-sack-dollar:before\":false},[\"content:\\\"\\uf81d\\\"\"]],[false,{\".fa-sack-xmark:before\":false},[\"content:\\\"\\ue56a\\\"\"]],[false,{\".fa-sailboat:before\":false},[\"content:\\\"\\ue445\\\"\"]],[false,{\".fa-satellite:before\":false},[\"content:\\\"\\uf7bf\\\"\"]],[false,{\".fa-satellite-dish:before\":false},[\"content:\\\"\\uf7c0\\\"\"]],[false,{\".fa-balance-scale:before\":false,\".fa-scale-balanced:before\":false},[\"content:\\\"\\uf24e\\\"\"]],[false,{\".fa-balance-scale-left:before\":false,\".fa-scale-unbalanced:before\":false},[\"content:\\\"\\uf515\\\"\"]],[false,{\".fa-balance-scale-right:before\":false,\".fa-scale-unbalanced-flip:before\":false},[\"content:\\\"\\uf516\\\"\"]],[false,{\".fa-school:before\":false},[\"content:\\\"\\uf549\\\"\"]],[false,{\".fa-school-circle-check:before\":false},[\"content:\\\"\\ue56b\\\"\"]],[false,{\".fa-school-circle-exclamation:before\":false},[\"content:\\\"\\ue56c\\\"\"]],[false,{\".fa-school-circle-xmark:before\":false},[\"content:\\\"\\ue56d\\\"\"]],[false,{\".fa-school-flag:before\":false},[\"content:\\\"\\ue56e\\\"\"]],[false,{\".fa-school-lock:before\":false},[\"content:\\\"\\ue56f\\\"\"]],[false,{\".fa-cut:before\":false,\".fa-scissors:before\":false},[\"content:\\\"\\uf0c4\\\"\"]],[false,{\".fa-screwdriver:before\":false},[\"content:\\\"\\uf54a\\\"\"]],[false,{\".fa-screwdriver-wrench:before\":false,\".fa-tools:before\":false},[\"content:\\\"\\uf7d9\\\"\"]],[false,{\".fa-scroll:before\":false},[\"content:\\\"\\uf70e\\\"\"]],[false,{\".fa-scroll-torah:before\":false,\".fa-torah:before\":false},[\"content:\\\"\\uf6a0\\\"\"]],[false,{\".fa-sd-card:before\":false},[\"content:\\\"\\uf7c2\\\"\"]],[false,{\".fa-section:before\":false},[\"content:\\\"\\ue447\\\"\"]],[false,{\".fa-seedling:before\":false,\".fa-sprout:before\":false},[\"content:\\\"\\uf4d8\\\"\"]],[false,{\".fa-server:before\":false},[\"content:\\\"\\uf233\\\"\"]],[false,{\".fa-shapes:before\":false,\".fa-triangle-circle-square:before\":false},[\"content:\\\"\\uf61f\\\"\"]],[false,{\".fa-arrow-turn-right:before\":false,\".fa-mail-forward:before\":false,\".fa-share:before\":false},[\"content:\\\"\\uf064\\\"\"]],[false,{\".fa-share-from-square:before\":false,\".fa-share-square:before\":false},[\"content:\\\"\\uf14d\\\"\"]],[false,{\".fa-share-alt:before\":false,\".fa-share-nodes:before\":false},[\"content:\\\"\\uf1e0\\\"\"]],[false,{\".fa-sheet-plastic:before\":false},[\"content:\\\"\\ue571\\\"\"]],[false,{\".fa-ils:before\":false,\".fa-shekel-sign:before\":false,\".fa-shekel:before\":false,\".fa-sheqel-sign:before\":false,\".fa-sheqel:before\":false},[\"content:\\\"\\uf20b\\\"\"]],[false,{\".fa-shield-blank:before\":false,\".fa-shield:before\":false},[\"content:\\\"\\uf132\\\"\"]],[false,{\".fa-shield-cat:before\":false},[\"content:\\\"\\ue572\\\"\"]],[false,{\".fa-shield-dog:before\":false},[\"content:\\\"\\ue573\\\"\"]],[false,{\".fa-shield-alt:before\":false,\".fa-shield-halved:before\":false},[\"content:\\\"\\uf3ed\\\"\"]],[false,{\".fa-shield-heart:before\":false},[\"content:\\\"\\ue574\\\"\"]],[false,{\".fa-shield-virus:before\":false},[\"content:\\\"\\ue06c\\\"\"]],[false,{\".fa-ship:before\":false},[\"content:\\\"\\uf21a\\\"\"]],[false,{\".fa-shirt:before\":false,\".fa-t-shirt:before\":false,\".fa-tshirt:before\":false},[\"content:\\\"\\uf553\\\"\"]],[false,{\".fa-shoe-prints:before\":false},[\"content:\\\"\\uf54b\\\"\"]],[false,{\".fa-shop:before\":false,\".fa-store-alt:before\":false},[\"content:\\\"\\uf54f\\\"\"]],[false,{\".fa-shop-lock:before\":false},[\"content:\\\"\\ue4a5\\\"\"]],[false,{\".fa-shop-slash:before\":false,\".fa-store-alt-slash:before\":false},[\"content:\\\"\\ue070\\\"\"]],[false,{\".fa-shower:before\":false},[\"content:\\\"\\uf2cc\\\"\"]],[false,{\".fa-shrimp:before\":false},[\"content:\\\"\\ue448\\\"\"]],[false,{\".fa-random:before\":false,\".fa-shuffle:before\":false},[\"content:\\\"\\uf074\\\"\"]],[false,{\".fa-shuttle-space:before\":false,\".fa-space-shuttle:before\":false},[\"content:\\\"\\uf197\\\"\"]],[false,{\".fa-sign-hanging:before\":false,\".fa-sign:before\":false},[\"content:\\\"\\uf4d9\\\"\"]],[false,{\".fa-signal-5:before\":false,\".fa-signal-perfect:before\":false,\".fa-signal:before\":false},[\"content:\\\"\\uf012\\\"\"]],[false,{\".fa-signature:before\":false},[\"content:\\\"\\uf5b7\\\"\"]],[false,{\".fa-map-signs:before\":false,\".fa-signs-post:before\":false},[\"content:\\\"\\uf277\\\"\"]],[false,{\".fa-sim-card:before\":false},[\"content:\\\"\\uf7c4\\\"\"]],[false,{\".fa-sink:before\":false},[\"content:\\\"\\ue06d\\\"\"]],[false,{\".fa-sitemap:before\":false},[\"content:\\\"\\uf0e8\\\"\"]],[false,{\".fa-skull:before\":false},[\"content:\\\"\\uf54c\\\"\"]],[false,{\".fa-skull-crossbones:before\":false},[\"content:\\\"\\uf714\\\"\"]],[false,{\".fa-slash:before\":false},[\"content:\\\"\\uf715\\\"\"]],[false,{\".fa-sleigh:before\":false},[\"content:\\\"\\uf7cc\\\"\"]],[false,{\".fa-sliders-h:before\":false,\".fa-sliders:before\":false},[\"content:\\\"\\uf1de\\\"\"]],[false,{\".fa-smog:before\":false},[\"content:\\\"\\uf75f\\\"\"]],[false,{\".fa-smoking:before\":false},[\"content:\\\"\\uf48d\\\"\"]],[false,{\".fa-snowflake:before\":false},[\"content:\\\"\\uf2dc\\\"\"]],[false,{\".fa-snowman:before\":false},[\"content:\\\"\\uf7d0\\\"\"]],[false,{\".fa-snowplow:before\":false},[\"content:\\\"\\uf7d2\\\"\"]],[false,{\".fa-soap:before\":false},[\"content:\\\"\\ue06e\\\"\"]],[false,{\".fa-socks:before\":false},[\"content:\\\"\\uf696\\\"\"]],[false,{\".fa-solar-panel:before\":false},[\"content:\\\"\\uf5ba\\\"\"]],[false,{\".fa-sort:before\":false,\".fa-unsorted:before\":false},[\"content:\\\"\\uf0dc\\\"\"]],[false,{\".fa-sort-desc:before\":false,\".fa-sort-down:before\":false},[\"content:\\\"\\uf0dd\\\"\"]],[false,{\".fa-sort-asc:before\":false,\".fa-sort-up:before\":false},[\"content:\\\"\\uf0de\\\"\"]],[false,{\".fa-spa:before\":false},[\"content:\\\"\\uf5bb\\\"\"]],[false,{\".fa-pastafarianism:before\":false,\".fa-spaghetti-monster-flying:before\":false},[\"content:\\\"\\uf67b\\\"\"]],[false,{\".fa-spell-check:before\":false},[\"content:\\\"\\uf891\\\"\"]],[false,{\".fa-spider:before\":false},[\"content:\\\"\\uf717\\\"\"]],[false,{\".fa-spinner:before\":false},[\"content:\\\"\\uf110\\\"\"]],[false,{\".fa-splotch:before\":false},[\"content:\\\"\\uf5bc\\\"\"]],[false,{\".fa-spoon:before\":false,\".fa-utensil-spoon:before\":false},[\"content:\\\"\\uf2e5\\\"\"]],[false,{\".fa-spray-can:before\":false},[\"content:\\\"\\uf5bd\\\"\"]],[false,{\".fa-air-freshener:before\":false,\".fa-spray-can-sparkles:before\":false},[\"content:\\\"\\uf5d0\\\"\"]],[false,{\".fa-square:before\":false},[\"content:\\\"\\uf0c8\\\"\"]],[false,{\".fa-external-link-square:before\":false,\".fa-square-arrow-up-right:before\":false},[\"content:\\\"\\uf14c\\\"\"]],[false,{\".fa-caret-square-down:before\":false,\".fa-square-caret-down:before\":false},[\"content:\\\"\\uf150\\\"\"]],[false,{\".fa-caret-square-left:before\":false,\".fa-square-caret-left:before\":false},[\"content:\\\"\\uf191\\\"\"]],[false,{\".fa-caret-square-right:before\":false,\".fa-square-caret-right:before\":false},[\"content:\\\"\\uf152\\\"\"]],[false,{\".fa-caret-square-up:before\":false,\".fa-square-caret-up:before\":false},[\"content:\\\"\\uf151\\\"\"]],[false,{\".fa-check-square:before\":false,\".fa-square-check:before\":false},[\"content:\\\"\\uf14a\\\"\"]],[false,{\".fa-envelope-square:before\":false,\".fa-square-envelope:before\":false},[\"content:\\\"\\uf199\\\"\"]],[false,{\".fa-square-full:before\":false},[\"content:\\\"\\uf45c\\\"\"]],[false,{\".fa-h-square:before\":false,\".fa-square-h:before\":false},[\"content:\\\"\\uf0fd\\\"\"]],[false,{\".fa-minus-square:before\":false,\".fa-square-minus:before\":false},[\"content:\\\"\\uf146\\\"\"]],[false,{\".fa-square-nfi:before\":false},[\"content:\\\"\\ue576\\\"\"]],[false,{\".fa-parking:before\":false,\".fa-square-parking:before\":false},[\"content:\\\"\\uf540\\\"\"]],[false,{\".fa-pen-square:before\":false,\".fa-pencil-square:before\":false,\".fa-square-pen:before\":false},[\"content:\\\"\\uf14b\\\"\"]],[false,{\".fa-square-person-confined:before\":false},[\"content:\\\"\\ue577\\\"\"]],[false,{\".fa-phone-square:before\":false,\".fa-square-phone:before\":false},[\"content:\\\"\\uf098\\\"\"]],[false,{\".fa-phone-square-alt:before\":false,\".fa-square-phone-flip:before\":false},[\"content:\\\"\\uf87b\\\"\"]],[false,{\".fa-plus-square:before\":false,\".fa-square-plus:before\":false},[\"content:\\\"\\uf0fe\\\"\"]],[false,{\".fa-poll-h:before\":false,\".fa-square-poll-horizontal:before\":false},[\"content:\\\"\\uf682\\\"\"]],[false,{\".fa-poll:before\":false,\".fa-square-poll-vertical:before\":false},[\"content:\\\"\\uf681\\\"\"]],[false,{\".fa-square-root-alt:before\":false,\".fa-square-root-variable:before\":false},[\"content:\\\"\\uf698\\\"\"]],[false,{\".fa-rss-square:before\":false,\".fa-square-rss:before\":false},[\"content:\\\"\\uf143\\\"\"]],[false,{\".fa-share-alt-square:before\":false,\".fa-square-share-nodes:before\":false},[\"content:\\\"\\uf1e1\\\"\"]],[false,{\".fa-external-link-square-alt:before\":false,\".fa-square-up-right:before\":false},[\"content:\\\"\\uf360\\\"\"]],[false,{\".fa-square-virus:before\":false},[\"content:\\\"\\ue578\\\"\"]],[false,{\".fa-square-xmark:before\":false,\".fa-times-square:before\":false,\".fa-xmark-square:before\":false},[\"content:\\\"\\uf2d3\\\"\"]],[false,{\".fa-rod-asclepius:before\":false,\".fa-rod-snake:before\":false,\".fa-staff-aesculapius:before\":false,\".fa-staff-snake:before\":false},[\"content:\\\"\\ue579\\\"\"]],[false,{\".fa-stairs:before\":false},[\"content:\\\"\\ue289\\\"\"]],[false,{\".fa-stamp:before\":false},[\"content:\\\"\\uf5bf\\\"\"]],[false,{\".fa-star:before\":false},[\"content:\\\"\\uf005\\\"\"]],[false,{\".fa-star-and-crescent:before\":false},[\"content:\\\"\\uf699\\\"\"]],[false,{\".fa-star-half:before\":false},[\"content:\\\"\\uf089\\\"\"]],[false,{\".fa-star-half-alt:before\":false,\".fa-star-half-stroke:before\":false},[\"content:\\\"\\uf5c0\\\"\"]],[false,{\".fa-star-of-david:before\":false},[\"content:\\\"\\uf69a\\\"\"]],[false,{\".fa-star-of-life:before\":false},[\"content:\\\"\\uf621\\\"\"]],[false,{\".fa-gbp:before\":false,\".fa-pound-sign:before\":false,\".fa-sterling-sign:before\":false},[\"content:\\\"\\uf154\\\"\"]],[false,{\".fa-stethoscope:before\":false},[\"content:\\\"\\uf0f1\\\"\"]],[false,{\".fa-stop:before\":false},[\"content:\\\"\\uf04d\\\"\"]],[false,{\".fa-stopwatch:before\":false},[\"content:\\\"\\uf2f2\\\"\"]],[false,{\".fa-stopwatch-20:before\":false},[\"content:\\\"\\ue06f\\\"\"]],[false,{\".fa-store:before\":false},[\"content:\\\"\\uf54e\\\"\"]],[false,{\".fa-store-slash:before\":false},[\"content:\\\"\\ue071\\\"\"]],[false,{\".fa-street-view:before\":false},[\"content:\\\"\\uf21d\\\"\"]],[false,{\".fa-strikethrough:before\":false},[\"content:\\\"\\uf0cc\\\"\"]],[false,{\".fa-stroopwafel:before\":false},[\"content:\\\"\\uf551\\\"\"]],[false,{\".fa-subscript:before\":false},[\"content:\\\"\\uf12c\\\"\"]],[false,{\".fa-suitcase:before\":false},[\"content:\\\"\\uf0f2\\\"\"]],[false,{\".fa-medkit:before\":false,\".fa-suitcase-medical:before\":false},[\"content:\\\"\\uf0fa\\\"\"]],[false,{\".fa-suitcase-rolling:before\":false},[\"content:\\\"\\uf5c1\\\"\"]],[false,{\".fa-sun:before\":false},[\"content:\\\"\\uf185\\\"\"]],[false,{\".fa-sun-plant-wilt:before\":false},[\"content:\\\"\\ue57a\\\"\"]],[false,{\".fa-superscript:before\":false},[\"content:\\\"\\uf12b\\\"\"]],[false,{\".fa-swatchbook:before\":false},[\"content:\\\"\\uf5c3\\\"\"]],[false,{\".fa-synagogue:before\":false},[\"content:\\\"\\uf69b\\\"\"]],[false,{\".fa-syringe:before\":false},[\"content:\\\"\\uf48e\\\"\"]],[false,{\".fa-t:before\":false},[\"content:\\\"T\\\"\"]],[false,{\".fa-table:before\":false},[\"content:\\\"\\uf0ce\\\"\"]],[false,{\".fa-table-cells:before\":false,\".fa-th:before\":false},[\"content:\\\"\\uf00a\\\"\"]],[false,{\".fa-table-cells-large:before\":false,\".fa-th-large:before\":false},[\"content:\\\"\\uf009\\\"\"]],[false,{\".fa-columns:before\":false,\".fa-table-columns:before\":false},[\"content:\\\"\\uf0db\\\"\"]],[false,{\".fa-table-list:before\":false,\".fa-th-list:before\":false},[\"content:\\\"\\uf00b\\\"\"]],[false,{\".fa-ping-pong-paddle-ball:before\":false,\".fa-table-tennis-paddle-ball:before\":false,\".fa-table-tennis:before\":false},[\"content:\\\"\\uf45d\\\"\"]],[false,{\".fa-tablet-android:before\":false,\".fa-tablet:before\":false},[\"content:\\\"\\uf3fb\\\"\"]],[false,{\".fa-tablet-button:before\":false},[\"content:\\\"\\uf10a\\\"\"]],[false,{\".fa-tablet-alt:before\":false,\".fa-tablet-screen-button:before\":false},[\"content:\\\"\\uf3fa\\\"\"]],[false,{\".fa-tablets:before\":false},[\"content:\\\"\\uf490\\\"\"]],[false,{\".fa-digital-tachograph:before\":false,\".fa-tachograph-digital:before\":false},[\"content:\\\"\\uf566\\\"\"]],[false,{\".fa-tag:before\":false},[\"content:\\\"\\uf02b\\\"\"]],[false,{\".fa-tags:before\":false},[\"content:\\\"\\uf02c\\\"\"]],[false,{\".fa-tape:before\":false},[\"content:\\\"\\uf4db\\\"\"]],[false,{\".fa-tarp:before\":false},[\"content:\\\"\\ue57b\\\"\"]],[false,{\".fa-tarp-droplet:before\":false},[\"content:\\\"\\ue57c\\\"\"]],[false,{\".fa-cab:before\":false,\".fa-taxi:before\":false},[\"content:\\\"\\uf1ba\\\"\"]],[false,{\".fa-teeth:before\":false},[\"content:\\\"\\uf62e\\\"\"]],[false,{\".fa-teeth-open:before\":false},[\"content:\\\"\\uf62f\\\"\"]],[false,{\".fa-temperature-arrow-down:before\":false,\".fa-temperature-down:before\":false},[\"content:\\\"\\ue03f\\\"\"]],[false,{\".fa-temperature-arrow-up:before\":false,\".fa-temperature-up:before\":false},[\"content:\\\"\\ue040\\\"\"]],[false,{\".fa-temperature-0:before\":false,\".fa-temperature-empty:before\":false,\".fa-thermometer-0:before\":false,\".fa-thermometer-empty:before\":false},[\"content:\\\"\\uf2cb\\\"\"]],[false,{\".fa-temperature-4:before\":false,\".fa-temperature-full:before\":false,\".fa-thermometer-4:before\":false,\".fa-thermometer-full:before\":false},[\"content:\\\"\\uf2c7\\\"\"]],[false,{\".fa-temperature-2:before\":false,\".fa-temperature-half:before\":false,\".fa-thermometer-2:before\":false,\".fa-thermometer-half:before\":false},[\"content:\\\"\\uf2c9\\\"\"]],[false,{\".fa-temperature-high:before\":false},[\"content:\\\"\\uf769\\\"\"]],[false,{\".fa-temperature-low:before\":false},[\"content:\\\"\\uf76b\\\"\"]],[false,{\".fa-temperature-1:before\":false,\".fa-temperature-quarter:before\":false,\".fa-thermometer-1:before\":false,\".fa-thermometer-quarter:before\":false},[\"content:\\\"\\uf2ca\\\"\"]],[false,{\".fa-temperature-3:before\":false,\".fa-temperature-three-quarters:before\":false,\".fa-thermometer-3:before\":false,\".fa-thermometer-three-quarters:before\":false},[\"content:\\\"\\uf2c8\\\"\"]],[false,{\".fa-tenge-sign:before\":false,\".fa-tenge:before\":false},[\"content:\\\"\\uf7d7\\\"\"]],[false,{\".fa-tent:before\":false},[\"content:\\\"\\ue57d\\\"\"]],[false,{\".fa-tent-arrow-down-to-line:before\":false},[\"content:\\\"\\ue57e\\\"\"]],[false,{\".fa-tent-arrow-left-right:before\":false},[\"content:\\\"\\ue57f\\\"\"]],[false,{\".fa-tent-arrow-turn-left:before\":false},[\"content:\\\"\\ue580\\\"\"]],[false,{\".fa-tent-arrows-down:before\":false},[\"content:\\\"\\ue581\\\"\"]],[false,{\".fa-tents:before\":false},[\"content:\\\"\\ue582\\\"\"]],[false,{\".fa-terminal:before\":false},[\"content:\\\"\\uf120\\\"\"]],[false,{\".fa-text-height:before\":false},[\"content:\\\"\\uf034\\\"\"]],[false,{\".fa-remove-format:before\":false,\".fa-text-slash:before\":false},[\"content:\\\"\\uf87d\\\"\"]],[false,{\".fa-text-width:before\":false},[\"content:\\\"\\uf035\\\"\"]],[false,{\".fa-thermometer:before\":false},[\"content:\\\"\\uf491\\\"\"]],[false,{\".fa-thumbs-down:before\":false},[\"content:\\\"\\uf165\\\"\"]],[false,{\".fa-thumbs-up:before\":false},[\"content:\\\"\\uf164\\\"\"]],[false,{\".fa-thumb-tack:before\":false,\".fa-thumbtack:before\":false},[\"content:\\\"\\uf08d\\\"\"]],[false,{\".fa-ticket:before\":false},[\"content:\\\"\\uf145\\\"\"]],[false,{\".fa-ticket-alt:before\":false,\".fa-ticket-simple:before\":false},[\"content:\\\"\\uf3ff\\\"\"]],[false,{\".fa-timeline:before\":false},[\"content:\\\"\\ue29c\\\"\"]],[false,{\".fa-toggle-off:before\":false},[\"content:\\\"\\uf204\\\"\"]],[false,{\".fa-toggle-on:before\":false},[\"content:\\\"\\uf205\\\"\"]],[false,{\".fa-toilet:before\":false},[\"content:\\\"\\uf7d8\\\"\"]],[false,{\".fa-toilet-paper:before\":false},[\"content:\\\"\\uf71e\\\"\"]],[false,{\".fa-toilet-paper-slash:before\":false},[\"content:\\\"\\ue072\\\"\"]],[false,{\".fa-toilet-portable:before\":false},[\"content:\\\"\\ue583\\\"\"]],[false,{\".fa-toilets-portable:before\":false},[\"content:\\\"\\ue584\\\"\"]],[false,{\".fa-toolbox:before\":false},[\"content:\\\"\\uf552\\\"\"]],[false,{\".fa-tooth:before\":false},[\"content:\\\"\\uf5c9\\\"\"]],[false,{\".fa-torii-gate:before\":false},[\"content:\\\"\\uf6a1\\\"\"]],[false,{\".fa-tornado:before\":false},[\"content:\\\"\\uf76f\\\"\"]],[false,{\".fa-broadcast-tower:before\":false,\".fa-tower-broadcast:before\":false},[\"content:\\\"\\uf519\\\"\"]],[false,{\".fa-tower-cell:before\":false},[\"content:\\\"\\ue585\\\"\"]],[false,{\".fa-tower-observation:before\":false},[\"content:\\\"\\ue586\\\"\"]],[false,{\".fa-tractor:before\":false},[\"content:\\\"\\uf722\\\"\"]],[false,{\".fa-trademark:before\":false},[\"content:\\\"\\uf25c\\\"\"]],[false,{\".fa-traffic-light:before\":false},[\"content:\\\"\\uf637\\\"\"]],[false,{\".fa-trailer:before\":false},[\"content:\\\"\\ue041\\\"\"]],[false,{\".fa-train:before\":false},[\"content:\\\"\\uf238\\\"\"]],[false,{\".fa-subway:before\":false,\".fa-train-subway:before\":false},[\"content:\\\"\\uf239\\\"\"]],[false,{\".fa-train-tram:before\":false,\".fa-tram:before\":false},[\"content:\\\"\\uf7da\\\"\"]],[false,{\".fa-transgender-alt:before\":false,\".fa-transgender:before\":false},[\"content:\\\"\\uf225\\\"\"]],[false,{\".fa-trash:before\":false},[\"content:\\\"\\uf1f8\\\"\"]],[false,{\".fa-trash-arrow-up:before\":false,\".fa-trash-restore:before\":false},[\"content:\\\"\\uf829\\\"\"]],[false,{\".fa-trash-alt:before\":false,\".fa-trash-can:before\":false},[\"content:\\\"\\uf2ed\\\"\"]],[false,{\".fa-trash-can-arrow-up:before\":false,\".fa-trash-restore-alt:before\":false},[\"content:\\\"\\uf82a\\\"\"]],[false,{\".fa-tree:before\":false},[\"content:\\\"\\uf1bb\\\"\"]],[false,{\".fa-tree-city:before\":false},[\"content:\\\"\\ue587\\\"\"]],[false,{\".fa-exclamation-triangle:before\":false,\".fa-triangle-exclamation:before\":false,\".fa-warning:before\":false},[\"content:\\\"\\uf071\\\"\"]],[false,{\".fa-trophy:before\":false},[\"content:\\\"\\uf091\\\"\"]],[false,{\".fa-trowel:before\":false},[\"content:\\\"\\ue589\\\"\"]],[false,{\".fa-trowel-bricks:before\":false},[\"content:\\\"\\ue58a\\\"\"]],[false,{\".fa-truck:before\":false},[\"content:\\\"\\uf0d1\\\"\"]],[false,{\".fa-truck-arrow-right:before\":false},[\"content:\\\"\\ue58b\\\"\"]],[false,{\".fa-truck-droplet:before\":false},[\"content:\\\"\\ue58c\\\"\"]],[false,{\".fa-shipping-fast:before\":false,\".fa-truck-fast:before\":false},[\"content:\\\"\\uf48b\\\"\"]],[false,{\".fa-truck-field:before\":false},[\"content:\\\"\\ue58d\\\"\"]],[false,{\".fa-truck-field-un:before\":false},[\"content:\\\"\\ue58e\\\"\"]],[false,{\".fa-truck-front:before\":false},[\"content:\\\"\\ue2b7\\\"\"]],[false,{\".fa-ambulance:before\":false,\".fa-truck-medical:before\":false},[\"content:\\\"\\uf0f9\\\"\"]],[false,{\".fa-truck-monster:before\":false},[\"content:\\\"\\uf63b\\\"\"]],[false,{\".fa-truck-moving:before\":false},[\"content:\\\"\\uf4df\\\"\"]],[false,{\".fa-truck-pickup:before\":false},[\"content:\\\"\\uf63c\\\"\"]],[false,{\".fa-truck-plane:before\":false},[\"content:\\\"\\ue58f\\\"\"]],[false,{\".fa-truck-loading:before\":false,\".fa-truck-ramp-box:before\":false},[\"content:\\\"\\uf4de\\\"\"]],[false,{\".fa-teletype:before\":false,\".fa-tty:before\":false},[\"content:\\\"\\uf1e4\\\"\"]],[false,{\".fa-try:before\":false,\".fa-turkish-lira-sign:before\":false,\".fa-turkish-lira:before\":false},[\"content:\\\"\\ue2bb\\\"\"]],[false,{\".fa-level-down-alt:before\":false,\".fa-turn-down:before\":false},[\"content:\\\"\\uf3be\\\"\"]],[false,{\".fa-level-up-alt:before\":false,\".fa-turn-up:before\":false},[\"content:\\\"\\uf3bf\\\"\"]],[false,{\".fa-television:before\":false,\".fa-tv-alt:before\":false,\".fa-tv:before\":false},[\"content:\\\"\\uf26c\\\"\"]],[false,{\".fa-u:before\":false},[\"content:\\\"U\\\"\"]],[false,{\".fa-umbrella:before\":false},[\"content:\\\"\\uf0e9\\\"\"]],[false,{\".fa-umbrella-beach:before\":false},[\"content:\\\"\\uf5ca\\\"\"]],[false,{\".fa-underline:before\":false},[\"content:\\\"\\uf0cd\\\"\"]],[false,{\".fa-universal-access:before\":false},[\"content:\\\"\\uf29a\\\"\"]],[false,{\".fa-unlock:before\":false},[\"content:\\\"\\uf09c\\\"\"]],[false,{\".fa-unlock-alt:before\":false,\".fa-unlock-keyhole:before\":false},[\"content:\\\"\\uf13e\\\"\"]],[false,{\".fa-arrows-alt-v:before\":false,\".fa-up-down:before\":false},[\"content:\\\"\\uf338\\\"\"]],[false,{\".fa-arrows-alt:before\":false,\".fa-up-down-left-right:before\":false},[\"content:\\\"\\uf0b2\\\"\"]],[false,{\".fa-long-arrow-alt-up:before\":false,\".fa-up-long:before\":false},[\"content:\\\"\\uf30c\\\"\"]],[false,{\".fa-expand-alt:before\":false,\".fa-up-right-and-down-left-from-center:before\":false},[\"content:\\\"\\uf424\\\"\"]],[false,{\".fa-external-link-alt:before\":false,\".fa-up-right-from-square:before\":false},[\"content:\\\"\\uf35d\\\"\"]],[false,{\".fa-upload:before\":false},[\"content:\\\"\\uf093\\\"\"]],[false,{\".fa-user:before\":false},[\"content:\\\"\\uf007\\\"\"]],[false,{\".fa-user-astronaut:before\":false},[\"content:\\\"\\uf4fb\\\"\"]],[false,{\".fa-user-check:before\":false},[\"content:\\\"\\uf4fc\\\"\"]],[false,{\".fa-user-clock:before\":false},[\"content:\\\"\\uf4fd\\\"\"]],[false,{\".fa-user-doctor:before\":false,\".fa-user-md:before\":false},[\"content:\\\"\\uf0f0\\\"\"]],[false,{\".fa-user-cog:before\":false,\".fa-user-gear:before\":false},[\"content:\\\"\\uf4fe\\\"\"]],[false,{\".fa-user-graduate:before\":false},[\"content:\\\"\\uf501\\\"\"]],[false,{\".fa-user-friends:before\":false,\".fa-user-group:before\":false},[\"content:\\\"\\uf500\\\"\"]],[false,{\".fa-user-injured:before\":false},[\"content:\\\"\\uf728\\\"\"]],[false,{\".fa-user-alt:before\":false,\".fa-user-large:before\":false},[\"content:\\\"\\uf406\\\"\"]],[false,{\".fa-user-alt-slash:before\":false,\".fa-user-large-slash:before\":false},[\"content:\\\"\\uf4fa\\\"\"]],[false,{\".fa-user-lock:before\":false},[\"content:\\\"\\uf502\\\"\"]],[false,{\".fa-user-minus:before\":false},[\"content:\\\"\\uf503\\\"\"]],[false,{\".fa-user-ninja:before\":false},[\"content:\\\"\\uf504\\\"\"]],[false,{\".fa-user-nurse:before\":false},[\"content:\\\"\\uf82f\\\"\"]],[false,{\".fa-user-edit:before\":false,\".fa-user-pen:before\":false},[\"content:\\\"\\uf4ff\\\"\"]],[false,{\".fa-user-plus:before\":false},[\"content:\\\"\\uf234\\\"\"]],[false,{\".fa-user-secret:before\":false},[\"content:\\\"\\uf21b\\\"\"]],[false,{\".fa-user-shield:before\":false},[\"content:\\\"\\uf505\\\"\"]],[false,{\".fa-user-slash:before\":false},[\"content:\\\"\\uf506\\\"\"]],[false,{\".fa-user-tag:before\":false},[\"content:\\\"\\uf507\\\"\"]],[false,{\".fa-user-tie:before\":false},[\"content:\\\"\\uf508\\\"\"]],[false,{\".fa-user-times:before\":false,\".fa-user-xmark:before\":false},[\"content:\\\"\\uf235\\\"\"]],[false,{\".fa-users:before\":false},[\"content:\\\"\\uf0c0\\\"\"]],[false,{\".fa-users-between-lines:before\":false},[\"content:\\\"\\ue591\\\"\"]],[false,{\".fa-users-cog:before\":false,\".fa-users-gear:before\":false},[\"content:\\\"\\uf509\\\"\"]],[false,{\".fa-users-line:before\":false},[\"content:\\\"\\ue592\\\"\"]],[false,{\".fa-users-rays:before\":false},[\"content:\\\"\\ue593\\\"\"]],[false,{\".fa-users-rectangle:before\":false},[\"content:\\\"\\ue594\\\"\"]],[false,{\".fa-users-slash:before\":false},[\"content:\\\"\\ue073\\\"\"]],[false,{\".fa-users-viewfinder:before\":false},[\"content:\\\"\\ue595\\\"\"]],[false,{\".fa-cutlery:before\":false,\".fa-utensils:before\":false},[\"content:\\\"\\uf2e7\\\"\"]],[false,{\".fa-v:before\":false},[\"content:\\\"V\\\"\"]],[false,{\".fa-shuttle-van:before\":false,\".fa-van-shuttle:before\":false},[\"content:\\\"\\uf5b6\\\"\"]],[false,{\".fa-vault:before\":false},[\"content:\\\"\\ue2c5\\\"\"]],[false,{\".fa-vector-square:before\":false},[\"content:\\\"\\uf5cb\\\"\"]],[false,{\".fa-venus:before\":false},[\"content:\\\"\\uf221\\\"\"]],[false,{\".fa-venus-double:before\":false},[\"content:\\\"\\uf226\\\"\"]],[false,{\".fa-venus-mars:before\":false},[\"content:\\\"\\uf228\\\"\"]],[false,{\".fa-vest:before\":false},[\"content:\\\"\\ue085\\\"\"]],[false,{\".fa-vest-patches:before\":false},[\"content:\\\"\\ue086\\\"\"]],[false,{\".fa-vial:before\":false},[\"content:\\\"\\uf492\\\"\"]],[false,{\".fa-vial-circle-check:before\":false},[\"content:\\\"\\ue596\\\"\"]],[false,{\".fa-vial-virus:before\":false},[\"content:\\\"\\ue597\\\"\"]],[false,{\".fa-vials:before\":false},[\"content:\\\"\\uf493\\\"\"]],[false,{\".fa-video-camera:before\":false,\".fa-video:before\":false},[\"content:\\\"\\uf03d\\\"\"]],[false,{\".fa-video-slash:before\":false},[\"content:\\\"\\uf4e2\\\"\"]],[false,{\".fa-vihara:before\":false},[\"content:\\\"\\uf6a7\\\"\"]],[false,{\".fa-virus:before\":false},[\"content:\\\"\\ue074\\\"\"]],[false,{\".fa-virus-covid:before\":false},[\"content:\\\"\\ue4a8\\\"\"]],[false,{\".fa-virus-covid-slash:before\":false},[\"content:\\\"\\ue4a9\\\"\"]],[false,{\".fa-virus-slash:before\":false},[\"content:\\\"\\ue075\\\"\"]],[false,{\".fa-viruses:before\":false},[\"content:\\\"\\ue076\\\"\"]],[false,{\".fa-voicemail:before\":false},[\"content:\\\"\\uf897\\\"\"]],[false,{\".fa-volcano:before\":false},[\"content:\\\"\\uf770\\\"\"]],[false,{\".fa-volleyball-ball:before\":false,\".fa-volleyball:before\":false},[\"content:\\\"\\uf45f\\\"\"]],[false,{\".fa-volume-high:before\":false,\".fa-volume-up:before\":false},[\"content:\\\"\\uf028\\\"\"]],[false,{\".fa-volume-down:before\":false,\".fa-volume-low:before\":false},[\"content:\\\"\\uf027\\\"\"]],[false,{\".fa-volume-off:before\":false},[\"content:\\\"\\uf026\\\"\"]],[false,{\".fa-volume-mute:before\":false,\".fa-volume-times:before\":false,\".fa-volume-xmark:before\":false},[\"content:\\\"\\uf6a9\\\"\"]],[false,{\".fa-vr-cardboard:before\":false},[\"content:\\\"\\uf729\\\"\"]],[false,{\".fa-w:before\":false},[\"content:\\\"W\\\"\"]],[false,{\".fa-walkie-talkie:before\":false},[\"content:\\\"\\uf8ef\\\"\"]],[false,{\".fa-wallet:before\":false},[\"content:\\\"\\uf555\\\"\"]],[false,{\".fa-magic:before\":false,\".fa-wand-magic:before\":false},[\"content:\\\"\\uf0d0\\\"\"]],[false,{\".fa-magic-wand-sparkles:before\":false,\".fa-wand-magic-sparkles:before\":false},[\"content:\\\"\\ue2ca\\\"\"]],[false,{\".fa-wand-sparkles:before\":false},[\"content:\\\"\\uf72b\\\"\"]],[false,{\".fa-warehouse:before\":false},[\"content:\\\"\\uf494\\\"\"]],[false,{\".fa-water:before\":false},[\"content:\\\"\\uf773\\\"\"]],[false,{\".fa-ladder-water:before\":false,\".fa-swimming-pool:before\":false,\".fa-water-ladder:before\":false},[\"content:\\\"\\uf5c5\\\"\"]],[false,{\".fa-wave-square:before\":false},[\"content:\\\"\\uf83e\\\"\"]],[false,{\".fa-weight-hanging:before\":false},[\"content:\\\"\\uf5cd\\\"\"]],[false,{\".fa-weight-scale:before\":false,\".fa-weight:before\":false},[\"content:\\\"\\uf496\\\"\"]],[false,{\".fa-wheat-alt:before\":false,\".fa-wheat-awn:before\":false},[\"content:\\\"\\ue2cd\\\"\"]],[false,{\".fa-wheat-awn-circle-exclamation:before\":false},[\"content:\\\"\\ue598\\\"\"]],[false,{\".fa-wheelchair:before\":false},[\"content:\\\"\\uf193\\\"\"]],[false,{\".fa-wheelchair-alt:before\":false,\".fa-wheelchair-move:before\":false},[\"content:\\\"\\ue2ce\\\"\"]],[false,{\".fa-glass-whiskey:before\":false,\".fa-whiskey-glass:before\":false},[\"content:\\\"\\uf7a0\\\"\"]],[false,{\".fa-wifi-3:before\":false,\".fa-wifi-strong:before\":false,\".fa-wifi:before\":false},[\"content:\\\"\\uf1eb\\\"\"]],[false,{\".fa-wind:before\":false},[\"content:\\\"\\uf72e\\\"\"]],[false,{\".fa-window-maximize:before\":false},[\"content:\\\"\\uf2d0\\\"\"]],[false,{\".fa-window-minimize:before\":false},[\"content:\\\"\\uf2d1\\\"\"]],[false,{\".fa-window-restore:before\":false},[\"content:\\\"\\uf2d2\\\"\"]],[false,{\".fa-wine-bottle:before\":false},[\"content:\\\"\\uf72f\\\"\"]],[false,{\".fa-wine-glass:before\":false},[\"content:\\\"\\uf4e3\\\"\"]],[false,{\".fa-wine-glass-alt:before\":false,\".fa-wine-glass-empty:before\":false},[\"content:\\\"\\uf5ce\\\"\"]],[false,{\".fa-krw:before\":false,\".fa-won-sign:before\":false,\".fa-won:before\":false},[\"content:\\\"\\uf159\\\"\"]],[false,{\".fa-worm:before\":false},[\"content:\\\"\\ue599\\\"\"]],[false,{\".fa-wrench:before\":false},[\"content:\\\"\\uf0ad\\\"\"]],[false,{\".fa-x:before\":false},[\"content:\\\"X\\\"\"]],[false,{\".fa-x-ray:before\":false},[\"content:\\\"\\uf497\\\"\"]],[false,{\".fa-close:before\":false,\".fa-multiply:before\":false,\".fa-remove:before\":false,\".fa-times:before\":false,\".fa-xmark:before\":false},[\"content:\\\"\\uf00d\\\"\"]],[false,{\".fa-xmarks-lines:before\":false},[\"content:\\\"\\ue59a\\\"\"]],[false,{\".fa-y:before\":false},[\"content:\\\"Y\\\"\"]],[false,{\".fa-cny:before\":false,\".fa-jpy:before\":false,\".fa-rmb:before\":false,\".fa-yen-sign:before\":false,\".fa-yen:before\":false},[\"content:\\\"\\uf157\\\"\"]],[false,{\".fa-yin-yang:before\":false},[\"content:\\\"\\uf6ad\\\"\"]],[false,{\".fa-z:before\":false},[\"content:\\\"Z\\\"\"]],[false,{\".fa-sr-only\":false,\".fa-sr-only-focusable:not(:focus)\":false,\".sr-only\":false,\".sr-only-focusable:not(:focus)\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"white-space:nowrap\",\"border-width:0\"]],[true,{\":host\":true,\":root\":true},[\"--fa-font-brands:normal 400 1em\\/1 \\\"Font Awesome 6 Brands\\\"\"]],[true,\"@font-face{font-family:\\\"Font Awesome 6 Brands\\\";font-style:normal;font-weight:400;font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\")}\"],[false,{\".fa-brands\":false,\".fab\":false},[\"font-family:\\\"Font Awesome 6 Brands\\\"\",\"font-weight:400\"]],[false,{\".fa-42-group:before\":false,\".fa-innosoft:before\":false},[\"content:\\\"\\ue080\\\"\"]],[false,{\".fa-500px:before\":false},[\"content:\\\"\\uf26e\\\"\"]],[false,{\".fa-accessible-icon:before\":false},[\"content:\\\"\\uf368\\\"\"]],[false,{\".fa-accusoft:before\":false},[\"content:\\\"\\uf369\\\"\"]],[false,{\".fa-adn:before\":false},[\"content:\\\"\\uf170\\\"\"]],[false,{\".fa-adversal:before\":false},[\"content:\\\"\\uf36a\\\"\"]],[false,{\".fa-affiliatetheme:before\":false},[\"content:\\\"\\uf36b\\\"\"]],[false,{\".fa-airbnb:before\":false},[\"content:\\\"\\uf834\\\"\"]],[false,{\".fa-algolia:before\":false},[\"content:\\\"\\uf36c\\\"\"]],[false,{\".fa-alipay:before\":false},[\"content:\\\"\\uf642\\\"\"]],[false,{\".fa-amazon:before\":false},[\"content:\\\"\\uf270\\\"\"]],[false,{\".fa-amazon-pay:before\":false},[\"content:\\\"\\uf42c\\\"\"]],[false,{\".fa-amilia:before\":false},[\"content:\\\"\\uf36d\\\"\"]],[false,{\".fa-android:before\":false},[\"content:\\\"\\uf17b\\\"\"]],[false,{\".fa-angellist:before\":false},[\"content:\\\"\\uf209\\\"\"]],[false,{\".fa-angrycreative:before\":false},[\"content:\\\"\\uf36e\\\"\"]],[false,{\".fa-angular:before\":false},[\"content:\\\"\\uf420\\\"\"]],[false,{\".fa-app-store:before\":false},[\"content:\\\"\\uf36f\\\"\"]],[false,{\".fa-app-store-ios:before\":false},[\"content:\\\"\\uf370\\\"\"]],[false,{\".fa-apper:before\":false},[\"content:\\\"\\uf371\\\"\"]],[false,{\".fa-apple:before\":false},[\"content:\\\"\\uf179\\\"\"]],[false,{\".fa-apple-pay:before\":false},[\"content:\\\"\\uf415\\\"\"]],[false,{\".fa-artstation:before\":false},[\"content:\\\"\\uf77a\\\"\"]],[false,{\".fa-asymmetrik:before\":false},[\"content:\\\"\\uf372\\\"\"]],[false,{\".fa-atlassian:before\":false},[\"content:\\\"\\uf77b\\\"\"]],[false,{\".fa-audible:before\":false},[\"content:\\\"\\uf373\\\"\"]],[false,{\".fa-autoprefixer:before\":false},[\"content:\\\"\\uf41c\\\"\"]],[false,{\".fa-avianex:before\":false},[\"content:\\\"\\uf374\\\"\"]],[false,{\".fa-aviato:before\":false},[\"content:\\\"\\uf421\\\"\"]],[false,{\".fa-aws:before\":false},[\"content:\\\"\\uf375\\\"\"]],[false,{\".fa-bandcamp:before\":false},[\"content:\\\"\\uf2d5\\\"\"]],[false,{\".fa-battle-net:before\":false},[\"content:\\\"\\uf835\\\"\"]],[false,{\".fa-behance:before\":false},[\"content:\\\"\\uf1b4\\\"\"]],[false,{\".fa-behance-square:before\":false},[\"content:\\\"\\uf1b5\\\"\"]],[false,{\".fa-bilibili:before\":false},[\"content:\\\"\\ue3d9\\\"\"]],[false,{\".fa-bimobject:before\":false},[\"content:\\\"\\uf378\\\"\"]],[false,{\".fa-bitbucket:before\":false},[\"content:\\\"\\uf171\\\"\"]],[false,{\".fa-bitcoin:before\":false},[\"content:\\\"\\uf379\\\"\"]],[false,{\".fa-bity:before\":false},[\"content:\\\"\\uf37a\\\"\"]],[false,{\".fa-black-tie:before\":false},[\"content:\\\"\\uf27e\\\"\"]],[false,{\".fa-blackberry:before\":false},[\"content:\\\"\\uf37b\\\"\"]],[false,{\".fa-blogger:before\":false},[\"content:\\\"\\uf37c\\\"\"]],[false,{\".fa-blogger-b:before\":false},[\"content:\\\"\\uf37d\\\"\"]],[false,{\".fa-bluetooth:before\":false},[\"content:\\\"\\uf293\\\"\"]],[false,{\".fa-bluetooth-b:before\":false},[\"content:\\\"\\uf294\\\"\"]],[false,{\".fa-bootstrap:before\":false},[\"content:\\\"\\uf836\\\"\"]],[false,{\".fa-bots:before\":false},[\"content:\\\"\\ue340\\\"\"]],[false,{\".fa-btc:before\":false},[\"content:\\\"\\uf15a\\\"\"]],[false,{\".fa-buffer:before\":false},[\"content:\\\"\\uf837\\\"\"]],[false,{\".fa-buromobelexperte:before\":false},[\"content:\\\"\\uf37f\\\"\"]],[false,{\".fa-buy-n-large:before\":false},[\"content:\\\"\\uf8a6\\\"\"]],[false,{\".fa-buysellads:before\":false},[\"content:\\\"\\uf20d\\\"\"]],[false,{\".fa-canadian-maple-leaf:before\":false},[\"content:\\\"\\uf785\\\"\"]],[false,{\".fa-cc-amazon-pay:before\":false},[\"content:\\\"\\uf42d\\\"\"]],[false,{\".fa-cc-amex:before\":false},[\"content:\\\"\\uf1f3\\\"\"]],[false,{\".fa-cc-apple-pay:before\":false},[\"content:\\\"\\uf416\\\"\"]],[false,{\".fa-cc-diners-club:before\":false},[\"content:\\\"\\uf24c\\\"\"]],[false,{\".fa-cc-discover:before\":false},[\"content:\\\"\\uf1f2\\\"\"]],[false,{\".fa-cc-jcb:before\":false},[\"content:\\\"\\uf24b\\\"\"]],[false,{\".fa-cc-mastercard:before\":false},[\"content:\\\"\\uf1f1\\\"\"]],[false,{\".fa-cc-paypal:before\":false},[\"content:\\\"\\uf1f4\\\"\"]],[false,{\".fa-cc-stripe:before\":false},[\"content:\\\"\\uf1f5\\\"\"]],[false,{\".fa-cc-visa:before\":false},[\"content:\\\"\\uf1f0\\\"\"]],[false,{\".fa-centercode:before\":false},[\"content:\\\"\\uf380\\\"\"]],[false,{\".fa-centos:before\":false},[\"content:\\\"\\uf789\\\"\"]],[false,{\".fa-chrome:before\":false},[\"content:\\\"\\uf268\\\"\"]],[false,{\".fa-chromecast:before\":false},[\"content:\\\"\\uf838\\\"\"]],[false,{\".fa-cloudflare:before\":false},[\"content:\\\"\\ue07d\\\"\"]],[false,{\".fa-cloudscale:before\":false},[\"content:\\\"\\uf383\\\"\"]],[false,{\".fa-cloudsmith:before\":false},[\"content:\\\"\\uf384\\\"\"]],[false,{\".fa-cloudversify:before\":false},[\"content:\\\"\\uf385\\\"\"]],[false,{\".fa-cmplid:before\":false},[\"content:\\\"\\ue360\\\"\"]],[false,{\".fa-codepen:before\":false},[\"content:\\\"\\uf1cb\\\"\"]],[false,{\".fa-codiepie:before\":false},[\"content:\\\"\\uf284\\\"\"]],[false,{\".fa-confluence:before\":false},[\"content:\\\"\\uf78d\\\"\"]],[false,{\".fa-connectdevelop:before\":false},[\"content:\\\"\\uf20e\\\"\"]],[false,{\".fa-contao:before\":false},[\"content:\\\"\\uf26d\\\"\"]],[false,{\".fa-cotton-bureau:before\":false},[\"content:\\\"\\uf89e\\\"\"]],[false,{\".fa-cpanel:before\":false},[\"content:\\\"\\uf388\\\"\"]],[false,{\".fa-creative-commons:before\":false},[\"content:\\\"\\uf25e\\\"\"]],[false,{\".fa-creative-commons-by:before\":false},[\"content:\\\"\\uf4e7\\\"\"]],[false,{\".fa-creative-commons-nc:before\":false},[\"content:\\\"\\uf4e8\\\"\"]],[false,{\".fa-creative-commons-nc-eu:before\":false},[\"content:\\\"\\uf4e9\\\"\"]],[false,{\".fa-creative-commons-nc-jp:before\":false},[\"content:\\\"\\uf4ea\\\"\"]],[false,{\".fa-creative-commons-nd:before\":false},[\"content:\\\"\\uf4eb\\\"\"]],[false,{\".fa-creative-commons-pd:before\":false},[\"content:\\\"\\uf4ec\\\"\"]],[false,{\".fa-creative-commons-pd-alt:before\":false},[\"content:\\\"\\uf4ed\\\"\"]],[false,{\".fa-creative-commons-remix:before\":false},[\"content:\\\"\\uf4ee\\\"\"]],[false,{\".fa-creative-commons-sa:before\":false},[\"content:\\\"\\uf4ef\\\"\"]],[false,{\".fa-creative-commons-sampling:before\":false},[\"content:\\\"\\uf4f0\\\"\"]],[false,{\".fa-creative-commons-sampling-plus:before\":false},[\"content:\\\"\\uf4f1\\\"\"]],[false,{\".fa-creative-commons-share:before\":false},[\"content:\\\"\\uf4f2\\\"\"]],[false,{\".fa-creative-commons-zero:before\":false},[\"content:\\\"\\uf4f3\\\"\"]],[false,{\".fa-critical-role:before\":false},[\"content:\\\"\\uf6c9\\\"\"]],[false,{\".fa-css3:before\":false},[\"content:\\\"\\uf13c\\\"\"]],[false,{\".fa-css3-alt:before\":false},[\"content:\\\"\\uf38b\\\"\"]],[false,{\".fa-cuttlefish:before\":false},[\"content:\\\"\\uf38c\\\"\"]],[false,{\".fa-d-and-d:before\":false},[\"content:\\\"\\uf38d\\\"\"]],[false,{\".fa-d-and-d-beyond:before\":false},[\"content:\\\"\\uf6ca\\\"\"]],[false,{\".fa-dailymotion:before\":false},[\"content:\\\"\\ue052\\\"\"]],[false,{\".fa-dashcube:before\":false},[\"content:\\\"\\uf210\\\"\"]],[false,{\".fa-deezer:before\":false},[\"content:\\\"\\ue077\\\"\"]],[false,{\".fa-delicious:before\":false},[\"content:\\\"\\uf1a5\\\"\"]],[false,{\".fa-deploydog:before\":false},[\"content:\\\"\\uf38e\\\"\"]],[false,{\".fa-deskpro:before\":false},[\"content:\\\"\\uf38f\\\"\"]],[false,{\".fa-dev:before\":false},[\"content:\\\"\\uf6cc\\\"\"]],[false,{\".fa-deviantart:before\":false},[\"content:\\\"\\uf1bd\\\"\"]],[false,{\".fa-dhl:before\":false},[\"content:\\\"\\uf790\\\"\"]],[false,{\".fa-diaspora:before\":false},[\"content:\\\"\\uf791\\\"\"]],[false,{\".fa-digg:before\":false},[\"content:\\\"\\uf1a6\\\"\"]],[false,{\".fa-digital-ocean:before\":false},[\"content:\\\"\\uf391\\\"\"]],[false,{\".fa-discord:before\":false},[\"content:\\\"\\uf392\\\"\"]],[false,{\".fa-discourse:before\":false},[\"content:\\\"\\uf393\\\"\"]],[false,{\".fa-dochub:before\":false},[\"content:\\\"\\uf394\\\"\"]],[false,{\".fa-docker:before\":false},[\"content:\\\"\\uf395\\\"\"]],[false,{\".fa-draft2digital:before\":false},[\"content:\\\"\\uf396\\\"\"]],[false,{\".fa-dribbble:before\":false},[\"content:\\\"\\uf17d\\\"\"]],[false,{\".fa-dribbble-square:before\":false},[\"content:\\\"\\uf397\\\"\"]],[false,{\".fa-dropbox:before\":false},[\"content:\\\"\\uf16b\\\"\"]],[false,{\".fa-drupal:before\":false},[\"content:\\\"\\uf1a9\\\"\"]],[false,{\".fa-dyalog:before\":false},[\"content:\\\"\\uf399\\\"\"]],[false,{\".fa-earlybirds:before\":false},[\"content:\\\"\\uf39a\\\"\"]],[false,{\".fa-ebay:before\":false},[\"content:\\\"\\uf4f4\\\"\"]],[false,{\".fa-edge:before\":false},[\"content:\\\"\\uf282\\\"\"]],[false,{\".fa-edge-legacy:before\":false},[\"content:\\\"\\ue078\\\"\"]],[false,{\".fa-elementor:before\":false},[\"content:\\\"\\uf430\\\"\"]],[false,{\".fa-ello:before\":false},[\"content:\\\"\\uf5f1\\\"\"]],[false,{\".fa-ember:before\":false},[\"content:\\\"\\uf423\\\"\"]],[false,{\".fa-empire:before\":false},[\"content:\\\"\\uf1d1\\\"\"]],[false,{\".fa-envira:before\":false},[\"content:\\\"\\uf299\\\"\"]],[false,{\".fa-erlang:before\":false},[\"content:\\\"\\uf39d\\\"\"]],[false,{\".fa-ethereum:before\":false},[\"content:\\\"\\uf42e\\\"\"]],[false,{\".fa-etsy:before\":false},[\"content:\\\"\\uf2d7\\\"\"]],[false,{\".fa-evernote:before\":false},[\"content:\\\"\\uf839\\\"\"]],[false,{\".fa-expeditedssl:before\":false},[\"content:\\\"\\uf23e\\\"\"]],[false,{\".fa-facebook:before\":false},[\"content:\\\"\\uf09a\\\"\"]],[false,{\".fa-facebook-f:before\":false},[\"content:\\\"\\uf39e\\\"\"]],[false,{\".fa-facebook-messenger:before\":false},[\"content:\\\"\\uf39f\\\"\"]],[false,{\".fa-facebook-square:before\":false},[\"content:\\\"\\uf082\\\"\"]],[false,{\".fa-fantasy-flight-games:before\":false},[\"content:\\\"\\uf6dc\\\"\"]],[false,{\".fa-fedex:before\":false},[\"content:\\\"\\uf797\\\"\"]],[false,{\".fa-fedora:before\":false},[\"content:\\\"\\uf798\\\"\"]],[false,{\".fa-figma:before\":false},[\"content:\\\"\\uf799\\\"\"]],[false,{\".fa-firefox:before\":false},[\"content:\\\"\\uf269\\\"\"]],[false,{\".fa-firefox-browser:before\":false},[\"content:\\\"\\ue007\\\"\"]],[false,{\".fa-first-order:before\":false},[\"content:\\\"\\uf2b0\\\"\"]],[false,{\".fa-first-order-alt:before\":false},[\"content:\\\"\\uf50a\\\"\"]],[false,{\".fa-firstdraft:before\":false},[\"content:\\\"\\uf3a1\\\"\"]],[false,{\".fa-flickr:before\":false},[\"content:\\\"\\uf16e\\\"\"]],[false,{\".fa-flipboard:before\":false},[\"content:\\\"\\uf44d\\\"\"]],[false,{\".fa-fly:before\":false},[\"content:\\\"\\uf417\\\"\"]],[false,{\".fa-font-awesome-flag:before\":false,\".fa-font-awesome-logo-full:before\":false,\".fa-font-awesome:before\":false},[\"content:\\\"\\uf2b4\\\"\"]],[false,{\".fa-fonticons:before\":false},[\"content:\\\"\\uf280\\\"\"]],[false,{\".fa-fonticons-fi:before\":false},[\"content:\\\"\\uf3a2\\\"\"]],[false,{\".fa-fort-awesome:before\":false},[\"content:\\\"\\uf286\\\"\"]],[false,{\".fa-fort-awesome-alt:before\":false},[\"content:\\\"\\uf3a3\\\"\"]],[false,{\".fa-forumbee:before\":false},[\"content:\\\"\\uf211\\\"\"]],[false,{\".fa-foursquare:before\":false},[\"content:\\\"\\uf180\\\"\"]],[false,{\".fa-free-code-camp:before\":false},[\"content:\\\"\\uf2c5\\\"\"]],[false,{\".fa-freebsd:before\":false},[\"content:\\\"\\uf3a4\\\"\"]],[false,{\".fa-fulcrum:before\":false},[\"content:\\\"\\uf50b\\\"\"]],[false,{\".fa-galactic-republic:before\":false},[\"content:\\\"\\uf50c\\\"\"]],[false,{\".fa-galactic-senate:before\":false},[\"content:\\\"\\uf50d\\\"\"]],[false,{\".fa-get-pocket:before\":false},[\"content:\\\"\\uf265\\\"\"]],[false,{\".fa-gg:before\":false},[\"content:\\\"\\uf260\\\"\"]],[false,{\".fa-gg-circle:before\":false},[\"content:\\\"\\uf261\\\"\"]],[false,{\".fa-git:before\":false},[\"content:\\\"\\uf1d3\\\"\"]],[false,{\".fa-git-alt:before\":false},[\"content:\\\"\\uf841\\\"\"]],[false,{\".fa-git-square:before\":false},[\"content:\\\"\\uf1d2\\\"\"]],[false,{\".fa-github:before\":false},[\"content:\\\"\\uf09b\\\"\"]],[false,{\".fa-github-alt:before\":false},[\"content:\\\"\\uf113\\\"\"]],[false,{\".fa-github-square:before\":false},[\"content:\\\"\\uf092\\\"\"]],[false,{\".fa-gitkraken:before\":false},[\"content:\\\"\\uf3a6\\\"\"]],[false,{\".fa-gitlab:before\":false},[\"content:\\\"\\uf296\\\"\"]],[false,{\".fa-gitter:before\":false},[\"content:\\\"\\uf426\\\"\"]],[false,{\".fa-glide:before\":false},[\"content:\\\"\\uf2a5\\\"\"]],[false,{\".fa-glide-g:before\":false},[\"content:\\\"\\uf2a6\\\"\"]],[false,{\".fa-gofore:before\":false},[\"content:\\\"\\uf3a7\\\"\"]],[false,{\".fa-golang:before\":false},[\"content:\\\"\\ue40f\\\"\"]],[false,{\".fa-goodreads:before\":false},[\"content:\\\"\\uf3a8\\\"\"]],[false,{\".fa-goodreads-g:before\":false},[\"content:\\\"\\uf3a9\\\"\"]],[false,{\".fa-google:before\":false},[\"content:\\\"\\uf1a0\\\"\"]],[false,{\".fa-google-drive:before\":false},[\"content:\\\"\\uf3aa\\\"\"]],[false,{\".fa-google-pay:before\":false},[\"content:\\\"\\ue079\\\"\"]],[false,{\".fa-google-play:before\":false},[\"content:\\\"\\uf3ab\\\"\"]],[false,{\".fa-google-plus:before\":false},[\"content:\\\"\\uf2b3\\\"\"]],[false,{\".fa-google-plus-g:before\":false},[\"content:\\\"\\uf0d5\\\"\"]],[false,{\".fa-google-plus-square:before\":false},[\"content:\\\"\\uf0d4\\\"\"]],[false,{\".fa-google-wallet:before\":false},[\"content:\\\"\\uf1ee\\\"\"]],[false,{\".fa-gratipay:before\":false},[\"content:\\\"\\uf184\\\"\"]],[false,{\".fa-grav:before\":false},[\"content:\\\"\\uf2d6\\\"\"]],[false,{\".fa-gripfire:before\":false},[\"content:\\\"\\uf3ac\\\"\"]],[false,{\".fa-grunt:before\":false},[\"content:\\\"\\uf3ad\\\"\"]],[false,{\".fa-guilded:before\":false},[\"content:\\\"\\ue07e\\\"\"]],[false,{\".fa-gulp:before\":false},[\"content:\\\"\\uf3ae\\\"\"]],[false,{\".fa-hacker-news:before\":false},[\"content:\\\"\\uf1d4\\\"\"]],[false,{\".fa-hacker-news-square:before\":false},[\"content:\\\"\\uf3af\\\"\"]],[false,{\".fa-hackerrank:before\":false},[\"content:\\\"\\uf5f7\\\"\"]],[false,{\".fa-hashnode:before\":false},[\"content:\\\"\\ue499\\\"\"]],[false,{\".fa-hips:before\":false},[\"content:\\\"\\uf452\\\"\"]],[false,{\".fa-hire-a-helper:before\":false},[\"content:\\\"\\uf3b0\\\"\"]],[false,{\".fa-hive:before\":false},[\"content:\\\"\\ue07f\\\"\"]],[false,{\".fa-hooli:before\":false},[\"content:\\\"\\uf427\\\"\"]],[false,{\".fa-hornbill:before\":false},[\"content:\\\"\\uf592\\\"\"]],[false,{\".fa-hotjar:before\":false},[\"content:\\\"\\uf3b1\\\"\"]],[false,{\".fa-houzz:before\":false},[\"content:\\\"\\uf27c\\\"\"]],[false,{\".fa-html5:before\":false},[\"content:\\\"\\uf13b\\\"\"]],[false,{\".fa-hubspot:before\":false},[\"content:\\\"\\uf3b2\\\"\"]],[false,{\".fa-ideal:before\":false},[\"content:\\\"\\ue013\\\"\"]],[false,{\".fa-imdb:before\":false},[\"content:\\\"\\uf2d8\\\"\"]],[false,{\".fa-instagram:before\":false},[\"content:\\\"\\uf16d\\\"\"]],[false,{\".fa-instagram-square:before\":false},[\"content:\\\"\\ue055\\\"\"]],[false,{\".fa-instalod:before\":false},[\"content:\\\"\\ue081\\\"\"]],[false,{\".fa-intercom:before\":false},[\"content:\\\"\\uf7af\\\"\"]],[false,{\".fa-internet-explorer:before\":false},[\"content:\\\"\\uf26b\\\"\"]],[false,{\".fa-invision:before\":false},[\"content:\\\"\\uf7b0\\\"\"]],[false,{\".fa-ioxhost:before\":false},[\"content:\\\"\\uf208\\\"\"]],[false,{\".fa-itch-io:before\":false},[\"content:\\\"\\uf83a\\\"\"]],[false,{\".fa-itunes:before\":false},[\"content:\\\"\\uf3b4\\\"\"]],[false,{\".fa-itunes-note:before\":false},[\"content:\\\"\\uf3b5\\\"\"]],[false,{\".fa-java:before\":false},[\"content:\\\"\\uf4e4\\\"\"]],[false,{\".fa-jedi-order:before\":false},[\"content:\\\"\\uf50e\\\"\"]],[false,{\".fa-jenkins:before\":false},[\"content:\\\"\\uf3b6\\\"\"]],[false,{\".fa-jira:before\":false},[\"content:\\\"\\uf7b1\\\"\"]],[false,{\".fa-joget:before\":false},[\"content:\\\"\\uf3b7\\\"\"]],[false,{\".fa-joomla:before\":false},[\"content:\\\"\\uf1aa\\\"\"]],[false,{\".fa-js:before\":false},[\"content:\\\"\\uf3b8\\\"\"]],[false,{\".fa-js-square:before\":false},[\"content:\\\"\\uf3b9\\\"\"]],[false,{\".fa-jsfiddle:before\":false},[\"content:\\\"\\uf1cc\\\"\"]],[false,{\".fa-kaggle:before\":false},[\"content:\\\"\\uf5fa\\\"\"]],[false,{\".fa-keybase:before\":false},[\"content:\\\"\\uf4f5\\\"\"]],[false,{\".fa-keycdn:before\":false},[\"content:\\\"\\uf3ba\\\"\"]],[false,{\".fa-kickstarter:before\":false},[\"content:\\\"\\uf3bb\\\"\"]],[false,{\".fa-kickstarter-k:before\":false},[\"content:\\\"\\uf3bc\\\"\"]],[false,{\".fa-korvue:before\":false},[\"content:\\\"\\uf42f\\\"\"]],[false,{\".fa-laravel:before\":false},[\"content:\\\"\\uf3bd\\\"\"]],[false,{\".fa-lastfm:before\":false},[\"content:\\\"\\uf202\\\"\"]],[false,{\".fa-lastfm-square:before\":false},[\"content:\\\"\\uf203\\\"\"]],[false,{\".fa-leanpub:before\":false},[\"content:\\\"\\uf212\\\"\"]],[false,{\".fa-less:before\":false},[\"content:\\\"\\uf41d\\\"\"]],[false,{\".fa-line:before\":false},[\"content:\\\"\\uf3c0\\\"\"]],[false,{\".fa-linkedin:before\":false},[\"content:\\\"\\uf08c\\\"\"]],[false,{\".fa-linkedin-in:before\":false},[\"content:\\\"\\uf0e1\\\"\"]],[false,{\".fa-linode:before\":false},[\"content:\\\"\\uf2b8\\\"\"]],[false,{\".fa-linux:before\":false},[\"content:\\\"\\uf17c\\\"\"]],[false,{\".fa-lyft:before\":false},[\"content:\\\"\\uf3c3\\\"\"]],[false,{\".fa-magento:before\":false},[\"content:\\\"\\uf3c4\\\"\"]],[false,{\".fa-mailchimp:before\":false},[\"content:\\\"\\uf59e\\\"\"]],[false,{\".fa-mandalorian:before\":false},[\"content:\\\"\\uf50f\\\"\"]],[false,{\".fa-markdown:before\":false},[\"content:\\\"\\uf60f\\\"\"]],[false,{\".fa-mastodon:before\":false},[\"content:\\\"\\uf4f6\\\"\"]],[false,{\".fa-maxcdn:before\":false},[\"content:\\\"\\uf136\\\"\"]],[false,{\".fa-mdb:before\":false},[\"content:\\\"\\uf8ca\\\"\"]],[false,{\".fa-medapps:before\":false},[\"content:\\\"\\uf3c6\\\"\"]],[false,{\".fa-medium-m:before\":false,\".fa-medium:before\":false},[\"content:\\\"\\uf23a\\\"\"]],[false,{\".fa-medrt:before\":false},[\"content:\\\"\\uf3c8\\\"\"]],[false,{\".fa-meetup:before\":false},[\"content:\\\"\\uf2e0\\\"\"]],[false,{\".fa-megaport:before\":false},[\"content:\\\"\\uf5a3\\\"\"]],[false,{\".fa-mendeley:before\":false},[\"content:\\\"\\uf7b3\\\"\"]],[false,{\".fa-microblog:before\":false},[\"content:\\\"\\ue01a\\\"\"]],[false,{\".fa-microsoft:before\":false},[\"content:\\\"\\uf3ca\\\"\"]],[false,{\".fa-mix:before\":false},[\"content:\\\"\\uf3cb\\\"\"]],[false,{\".fa-mixcloud:before\":false},[\"content:\\\"\\uf289\\\"\"]],[false,{\".fa-mixer:before\":false},[\"content:\\\"\\ue056\\\"\"]],[false,{\".fa-mizuni:before\":false},[\"content:\\\"\\uf3cc\\\"\"]],[false,{\".fa-modx:before\":false},[\"content:\\\"\\uf285\\\"\"]],[false,{\".fa-monero:before\":false},[\"content:\\\"\\uf3d0\\\"\"]],[false,{\".fa-napster:before\":false},[\"content:\\\"\\uf3d2\\\"\"]],[false,{\".fa-neos:before\":false},[\"content:\\\"\\uf612\\\"\"]],[false,{\".fa-nfc-directional:before\":false},[\"content:\\\"\\ue530\\\"\"]],[false,{\".fa-nfc-symbol:before\":false},[\"content:\\\"\\ue531\\\"\"]],[false,{\".fa-nimblr:before\":false},[\"content:\\\"\\uf5a8\\\"\"]],[false,{\".fa-node:before\":false},[\"content:\\\"\\uf419\\\"\"]],[false,{\".fa-node-js:before\":false},[\"content:\\\"\\uf3d3\\\"\"]],[false,{\".fa-npm:before\":false},[\"content:\\\"\\uf3d4\\\"\"]],[false,{\".fa-ns8:before\":false},[\"content:\\\"\\uf3d5\\\"\"]],[false,{\".fa-nutritionix:before\":false},[\"content:\\\"\\uf3d6\\\"\"]],[false,{\".fa-octopus-deploy:before\":false},[\"content:\\\"\\ue082\\\"\"]],[false,{\".fa-odnoklassniki:before\":false},[\"content:\\\"\\uf263\\\"\"]],[false,{\".fa-odnoklassniki-square:before\":false},[\"content:\\\"\\uf264\\\"\"]],[false,{\".fa-old-republic:before\":false},[\"content:\\\"\\uf510\\\"\"]],[false,{\".fa-opencart:before\":false},[\"content:\\\"\\uf23d\\\"\"]],[false,{\".fa-openid:before\":false},[\"content:\\\"\\uf19b\\\"\"]],[false,{\".fa-opera:before\":false},[\"content:\\\"\\uf26a\\\"\"]],[false,{\".fa-optin-monster:before\":false},[\"content:\\\"\\uf23c\\\"\"]],[false,{\".fa-orcid:before\":false},[\"content:\\\"\\uf8d2\\\"\"]],[false,{\".fa-osi:before\":false},[\"content:\\\"\\uf41a\\\"\"]],[false,{\".fa-padlet:before\":false},[\"content:\\\"\\ue4a0\\\"\"]],[false,{\".fa-page4:before\":false},[\"content:\\\"\\uf3d7\\\"\"]],[false,{\".fa-pagelines:before\":false},[\"content:\\\"\\uf18c\\\"\"]],[false,{\".fa-palfed:before\":false},[\"content:\\\"\\uf3d8\\\"\"]],[false,{\".fa-patreon:before\":false},[\"content:\\\"\\uf3d9\\\"\"]],[false,{\".fa-paypal:before\":false},[\"content:\\\"\\uf1ed\\\"\"]],[false,{\".fa-perbyte:before\":false},[\"content:\\\"\\ue083\\\"\"]],[false,{\".fa-periscope:before\":false},[\"content:\\\"\\uf3da\\\"\"]],[false,{\".fa-phabricator:before\":false},[\"content:\\\"\\uf3db\\\"\"]],[false,{\".fa-phoenix-framework:before\":false},[\"content:\\\"\\uf3dc\\\"\"]],[false,{\".fa-phoenix-squadron:before\":false},[\"content:\\\"\\uf511\\\"\"]],[false,{\".fa-php:before\":false},[\"content:\\\"\\uf457\\\"\"]],[false,{\".fa-pied-piper:before\":false},[\"content:\\\"\\uf2ae\\\"\"]],[false,{\".fa-pied-piper-alt:before\":false},[\"content:\\\"\\uf1a8\\\"\"]],[false,{\".fa-pied-piper-hat:before\":false},[\"content:\\\"\\uf4e5\\\"\"]],[false,{\".fa-pied-piper-pp:before\":false},[\"content:\\\"\\uf1a7\\\"\"]],[false,{\".fa-pied-piper-square:before\":false},[\"content:\\\"\\ue01e\\\"\"]],[false,{\".fa-pinterest:before\":false},[\"content:\\\"\\uf0d2\\\"\"]],[false,{\".fa-pinterest-p:before\":false},[\"content:\\\"\\uf231\\\"\"]],[false,{\".fa-pinterest-square:before\":false},[\"content:\\\"\\uf0d3\\\"\"]],[false,{\".fa-pix:before\":false},[\"content:\\\"\\ue43a\\\"\"]],[false,{\".fa-playstation:before\":false},[\"content:\\\"\\uf3df\\\"\"]],[false,{\".fa-product-hunt:before\":false},[\"content:\\\"\\uf288\\\"\"]],[false,{\".fa-pushed:before\":false},[\"content:\\\"\\uf3e1\\\"\"]],[false,{\".fa-python:before\":false},[\"content:\\\"\\uf3e2\\\"\"]],[false,{\".fa-qq:before\":false},[\"content:\\\"\\uf1d6\\\"\"]],[false,{\".fa-quinscape:before\":false},[\"content:\\\"\\uf459\\\"\"]],[false,{\".fa-quora:before\":false},[\"content:\\\"\\uf2c4\\\"\"]],[false,{\".fa-r-project:before\":false},[\"content:\\\"\\uf4f7\\\"\"]],[false,{\".fa-raspberry-pi:before\":false},[\"content:\\\"\\uf7bb\\\"\"]],[false,{\".fa-ravelry:before\":false},[\"content:\\\"\\uf2d9\\\"\"]],[false,{\".fa-react:before\":false},[\"content:\\\"\\uf41b\\\"\"]],[false,{\".fa-reacteurope:before\":false},[\"content:\\\"\\uf75d\\\"\"]],[false,{\".fa-readme:before\":false},[\"content:\\\"\\uf4d5\\\"\"]],[false,{\".fa-rebel:before\":false},[\"content:\\\"\\uf1d0\\\"\"]],[false,{\".fa-red-river:before\":false},[\"content:\\\"\\uf3e3\\\"\"]],[false,{\".fa-reddit:before\":false},[\"content:\\\"\\uf1a1\\\"\"]],[false,{\".fa-reddit-alien:before\":false},[\"content:\\\"\\uf281\\\"\"]],[false,{\".fa-reddit-square:before\":false},[\"content:\\\"\\uf1a2\\\"\"]],[false,{\".fa-redhat:before\":false},[\"content:\\\"\\uf7bc\\\"\"]],[false,{\".fa-renren:before\":false},[\"content:\\\"\\uf18b\\\"\"]],[false,{\".fa-replyd:before\":false},[\"content:\\\"\\uf3e6\\\"\"]],[false,{\".fa-researchgate:before\":false},[\"content:\\\"\\uf4f8\\\"\"]],[false,{\".fa-resolving:before\":false},[\"content:\\\"\\uf3e7\\\"\"]],[false,{\".fa-rev:before\":false},[\"content:\\\"\\uf5b2\\\"\"]],[false,{\".fa-rocketchat:before\":false},[\"content:\\\"\\uf3e8\\\"\"]],[false,{\".fa-rockrms:before\":false},[\"content:\\\"\\uf3e9\\\"\"]],[false,{\".fa-rust:before\":false},[\"content:\\\"\\ue07a\\\"\"]],[false,{\".fa-safari:before\":false},[\"content:\\\"\\uf267\\\"\"]],[false,{\".fa-salesforce:before\":false},[\"content:\\\"\\uf83b\\\"\"]],[false,{\".fa-sass:before\":false},[\"content:\\\"\\uf41e\\\"\"]],[false,{\".fa-schlix:before\":false},[\"content:\\\"\\uf3ea\\\"\"]],[false,{\".fa-screenpal:before\":false},[\"content:\\\"\\ue570\\\"\"]],[false,{\".fa-scribd:before\":false},[\"content:\\\"\\uf28a\\\"\"]],[false,{\".fa-searchengin:before\":false},[\"content:\\\"\\uf3eb\\\"\"]],[false,{\".fa-sellcast:before\":false},[\"content:\\\"\\uf2da\\\"\"]],[false,{\".fa-sellsy:before\":false},[\"content:\\\"\\uf213\\\"\"]],[false,{\".fa-servicestack:before\":false},[\"content:\\\"\\uf3ec\\\"\"]],[false,{\".fa-shirtsinbulk:before\":false},[\"content:\\\"\\uf214\\\"\"]],[false,{\".fa-shopify:before\":false},[\"content:\\\"\\ue057\\\"\"]],[false,{\".fa-shopware:before\":false},[\"content:\\\"\\uf5b5\\\"\"]],[false,{\".fa-simplybuilt:before\":false},[\"content:\\\"\\uf215\\\"\"]],[false,{\".fa-sistrix:before\":false},[\"content:\\\"\\uf3ee\\\"\"]],[false,{\".fa-sith:before\":false},[\"content:\\\"\\uf512\\\"\"]],[false,{\".fa-sitrox:before\":false},[\"content:\\\"\\ue44a\\\"\"]],[false,{\".fa-sketch:before\":false},[\"content:\\\"\\uf7c6\\\"\"]],[false,{\".fa-skyatlas:before\":false},[\"content:\\\"\\uf216\\\"\"]],[false,{\".fa-skype:before\":false},[\"content:\\\"\\uf17e\\\"\"]],[false,{\".fa-slack-hash:before\":false,\".fa-slack:before\":false},[\"content:\\\"\\uf198\\\"\"]],[false,{\".fa-slideshare:before\":false},[\"content:\\\"\\uf1e7\\\"\"]],[false,{\".fa-snapchat-ghost:before\":false,\".fa-snapchat:before\":false},[\"content:\\\"\\uf2ab\\\"\"]],[false,{\".fa-snapchat-square:before\":false},[\"content:\\\"\\uf2ad\\\"\"]],[false,{\".fa-soundcloud:before\":false},[\"content:\\\"\\uf1be\\\"\"]],[false,{\".fa-sourcetree:before\":false},[\"content:\\\"\\uf7d3\\\"\"]],[false,{\".fa-speakap:before\":false},[\"content:\\\"\\uf3f3\\\"\"]],[false,{\".fa-speaker-deck:before\":false},[\"content:\\\"\\uf83c\\\"\"]],[false,{\".fa-spotify:before\":false},[\"content:\\\"\\uf1bc\\\"\"]],[false,{\".fa-square-font-awesome:before\":false},[\"content:\\\"\\uf425\\\"\"]],[false,{\".fa-font-awesome-alt:before\":false,\".fa-square-font-awesome-stroke:before\":false},[\"content:\\\"\\uf35c\\\"\"]],[false,{\".fa-squarespace:before\":false},[\"content:\\\"\\uf5be\\\"\"]],[false,{\".fa-stack-exchange:before\":false},[\"content:\\\"\\uf18d\\\"\"]],[false,{\".fa-stack-overflow:before\":false},[\"content:\\\"\\uf16c\\\"\"]],[false,{\".fa-stackpath:before\":false},[\"content:\\\"\\uf842\\\"\"]],[false,{\".fa-staylinked:before\":false},[\"content:\\\"\\uf3f5\\\"\"]],[false,{\".fa-steam:before\":false},[\"content:\\\"\\uf1b6\\\"\"]],[false,{\".fa-steam-square:before\":false},[\"content:\\\"\\uf1b7\\\"\"]],[false,{\".fa-steam-symbol:before\":false},[\"content:\\\"\\uf3f6\\\"\"]],[false,{\".fa-sticker-mule:before\":false},[\"content:\\\"\\uf3f7\\\"\"]],[false,{\".fa-strava:before\":false},[\"content:\\\"\\uf428\\\"\"]],[false,{\".fa-stripe:before\":false},[\"content:\\\"\\uf429\\\"\"]],[false,{\".fa-stripe-s:before\":false},[\"content:\\\"\\uf42a\\\"\"]],[false,{\".fa-studiovinari:before\":false},[\"content:\\\"\\uf3f8\\\"\"]],[false,{\".fa-stumbleupon:before\":false},[\"content:\\\"\\uf1a4\\\"\"]],[false,{\".fa-stumbleupon-circle:before\":false},[\"content:\\\"\\uf1a3\\\"\"]],[false,{\".fa-superpowers:before\":false},[\"content:\\\"\\uf2dd\\\"\"]],[false,{\".fa-supple:before\":false},[\"content:\\\"\\uf3f9\\\"\"]],[false,{\".fa-suse:before\":false},[\"content:\\\"\\uf7d6\\\"\"]],[false,{\".fa-swift:before\":false},[\"content:\\\"\\uf8e1\\\"\"]],[false,{\".fa-symfony:before\":false},[\"content:\\\"\\uf83d\\\"\"]],[false,{\".fa-teamspeak:before\":false},[\"content:\\\"\\uf4f9\\\"\"]],[false,{\".fa-telegram-plane:before\":false,\".fa-telegram:before\":false},[\"content:\\\"\\uf2c6\\\"\"]],[false,{\".fa-tencent-weibo:before\":false},[\"content:\\\"\\uf1d5\\\"\"]],[false,{\".fa-the-red-yeti:before\":false},[\"content:\\\"\\uf69d\\\"\"]],[false,{\".fa-themeco:before\":false},[\"content:\\\"\\uf5c6\\\"\"]],[false,{\".fa-themeisle:before\":false},[\"content:\\\"\\uf2b2\\\"\"]],[false,{\".fa-think-peaks:before\":false},[\"content:\\\"\\uf731\\\"\"]],[false,{\".fa-tiktok:before\":false},[\"content:\\\"\\ue07b\\\"\"]],[false,{\".fa-trade-federation:before\":false},[\"content:\\\"\\uf513\\\"\"]],[false,{\".fa-trello:before\":false},[\"content:\\\"\\uf181\\\"\"]],[false,{\".fa-tumblr:before\":false},[\"content:\\\"\\uf173\\\"\"]],[false,{\".fa-tumblr-square:before\":false},[\"content:\\\"\\uf174\\\"\"]],[false,{\".fa-twitch:before\":false},[\"content:\\\"\\uf1e8\\\"\"]],[false,{\".fa-twitter:before\":false},[\"content:\\\"\\uf099\\\"\"]],[false,{\".fa-twitter-square:before\":false},[\"content:\\\"\\uf081\\\"\"]],[false,{\".fa-typo3:before\":false},[\"content:\\\"\\uf42b\\\"\"]],[false,{\".fa-uber:before\":false},[\"content:\\\"\\uf402\\\"\"]],[false,{\".fa-ubuntu:before\":false},[\"content:\\\"\\uf7df\\\"\"]],[false,{\".fa-uikit:before\":false},[\"content:\\\"\\uf403\\\"\"]],[false,{\".fa-umbraco:before\":false},[\"content:\\\"\\uf8e8\\\"\"]],[false,{\".fa-uncharted:before\":false},[\"content:\\\"\\ue084\\\"\"]],[false,{\".fa-uniregistry:before\":false},[\"content:\\\"\\uf404\\\"\"]],[false,{\".fa-unity:before\":false},[\"content:\\\"\\ue049\\\"\"]],[false,{\".fa-unsplash:before\":false},[\"content:\\\"\\ue07c\\\"\"]],[false,{\".fa-untappd:before\":false},[\"content:\\\"\\uf405\\\"\"]],[false,{\".fa-ups:before\":false},[\"content:\\\"\\uf7e0\\\"\"]],[false,{\".fa-usb:before\":false},[\"content:\\\"\\uf287\\\"\"]],[false,{\".fa-usps:before\":false},[\"content:\\\"\\uf7e1\\\"\"]],[false,{\".fa-ussunnah:before\":false},[\"content:\\\"\\uf407\\\"\"]],[false,{\".fa-vaadin:before\":false},[\"content:\\\"\\uf408\\\"\"]],[false,{\".fa-viacoin:before\":false},[\"content:\\\"\\uf237\\\"\"]],[false,{\".fa-viadeo:before\":false},[\"content:\\\"\\uf2a9\\\"\"]],[false,{\".fa-viadeo-square:before\":false},[\"content:\\\"\\uf2aa\\\"\"]],[false,{\".fa-viber:before\":false},[\"content:\\\"\\uf409\\\"\"]],[false,{\".fa-vimeo:before\":false},[\"content:\\\"\\uf40a\\\"\"]],[false,{\".fa-vimeo-square:before\":false},[\"content:\\\"\\uf194\\\"\"]],[false,{\".fa-vimeo-v:before\":false},[\"content:\\\"\\uf27d\\\"\"]],[false,{\".fa-vine:before\":false},[\"content:\\\"\\uf1ca\\\"\"]],[false,{\".fa-vk:before\":false},[\"content:\\\"\\uf189\\\"\"]],[false,{\".fa-vnv:before\":false},[\"content:\\\"\\uf40b\\\"\"]],[false,{\".fa-vuejs:before\":false},[\"content:\\\"\\uf41f\\\"\"]],[false,{\".fa-watchman-monitoring:before\":false},[\"content:\\\"\\ue087\\\"\"]],[false,{\".fa-waze:before\":false},[\"content:\\\"\\uf83f\\\"\"]],[false,{\".fa-weebly:before\":false},[\"content:\\\"\\uf5cc\\\"\"]],[false,{\".fa-weibo:before\":false},[\"content:\\\"\\uf18a\\\"\"]],[false,{\".fa-weixin:before\":false},[\"content:\\\"\\uf1d7\\\"\"]],[false,{\".fa-whatsapp:before\":false},[\"content:\\\"\\uf232\\\"\"]],[false,{\".fa-whatsapp-square:before\":false},[\"content:\\\"\\uf40c\\\"\"]],[false,{\".fa-whmcs:before\":false},[\"content:\\\"\\uf40d\\\"\"]],[false,{\".fa-wikipedia-w:before\":false},[\"content:\\\"\\uf266\\\"\"]],[false,{\".fa-windows:before\":false},[\"content:\\\"\\uf17a\\\"\"]],[false,{\".fa-wirsindhandwerk:before\":false,\".fa-wsh:before\":false},[\"content:\\\"\\ue2d0\\\"\"]],[false,{\".fa-wix:before\":false},[\"content:\\\"\\uf5cf\\\"\"]],[false,{\".fa-wizards-of-the-coast:before\":false},[\"content:\\\"\\uf730\\\"\"]],[false,{\".fa-wodu:before\":false},[\"content:\\\"\\ue088\\\"\"]],[false,{\".fa-wolf-pack-battalion:before\":false},[\"content:\\\"\\uf514\\\"\"]],[false,{\".fa-wordpress:before\":false},[\"content:\\\"\\uf19a\\\"\"]],[false,{\".fa-wordpress-simple:before\":false},[\"content:\\\"\\uf411\\\"\"]],[false,{\".fa-wpbeginner:before\":false},[\"content:\\\"\\uf297\\\"\"]],[false,{\".fa-wpexplorer:before\":false},[\"content:\\\"\\uf2de\\\"\"]],[false,{\".fa-wpforms:before\":false},[\"content:\\\"\\uf298\\\"\"]],[false,{\".fa-wpressr:before\":false},[\"content:\\\"\\uf3e4\\\"\"]],[false,{\".fa-xbox:before\":false},[\"content:\\\"\\uf412\\\"\"]],[false,{\".fa-xing:before\":false},[\"content:\\\"\\uf168\\\"\"]],[false,{\".fa-xing-square:before\":false},[\"content:\\\"\\uf169\\\"\"]],[false,{\".fa-y-combinator:before\":false},[\"content:\\\"\\uf23b\\\"\"]],[false,{\".fa-yahoo:before\":false},[\"content:\\\"\\uf19e\\\"\"]],[false,{\".fa-yammer:before\":false},[\"content:\\\"\\uf840\\\"\"]],[false,{\".fa-yandex:before\":false},[\"content:\\\"\\uf413\\\"\"]],[false,{\".fa-yandex-international:before\":false},[\"content:\\\"\\uf414\\\"\"]],[false,{\".fa-yarn:before\":false},[\"content:\\\"\\uf7e3\\\"\"]],[false,{\".fa-yelp:before\":false},[\"content:\\\"\\uf1e9\\\"\"]],[false,{\".fa-yoast:before\":false},[\"content:\\\"\\uf2b1\\\"\"]],[false,{\".fa-youtube:before\":false},[\"content:\\\"\\uf167\\\"\"]],[false,{\".fa-youtube-square:before\":false},[\"content:\\\"\\uf431\\\"\"]],[false,{\".fa-zhihu:before\":false},[\"content:\\\"\\uf63f\\\"\"]],[true,{\":host\":true,\":root\":true},[\"--fa-font-regular:normal 400 1em\\/1 \\\"Font Awesome 6 Free\\\"\"]],[true,\"@font-face{font-family:\\\"Font Awesome 6 Free\\\";font-style:normal;font-weight:400;font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\")}\"],[false,{\".fa-regular\":false,\".far\":false},[\"font-family:\\\"Font Awesome 6 Free\\\"\",\"font-weight:400\"]],[true,{\":host\":true,\":root\":true},[\"--fa-font-solid:normal 900 1em\\/1 \\\"Font Awesome 6 Free\\\"\"]],[true,\"@font-face{font-family:\\\"Font Awesome 6 Free\\\";font-style:normal;font-weight:900;font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\")}\"],[true,{\".fa-solid\":false,\".fas\":true},[\"font-family:\\\"Font Awesome 6 Free\\\"\",\"font-weight:900\"]],[true,\"@font-face{font-family:\\\"Font Awesome 5 Brands\\\";font-display:block;font-weight:400;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-display:block;font-weight:900;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-display:block;font-weight:400;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-v4compatibility.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-v4compatibility.ttf\\\") format(\\\"truetype\\\")}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":16466,\"final_size\":2468,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"f525e508f09233d1bbad77f319ca5b46\",\"parse_time\":0.24036717414855957,\"shake_time\":0.0001571178436279297,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,\"@font-face{font-family:swiper-icons;src:url(\\\"data:application\\/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj\\/\\/wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA\\/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu\\/j+W2+MnAzMYDAzaX6QjD6\\/4\\/\\/Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+\\/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg\\/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4\\/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9\\/w8UBfEMgLzE\\/\\/\\/\\/P\\/5\\/\\/f\\/V\\/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA\\/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP\\/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj\\/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB\\/yIY09An6AH2Bdu\\/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z\\/PEJ6YOB5hKh4dj3EvXhxPqH\\/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN\\/d\\/gczfEimrE\\/fs\\/bOuq29Zmn8tloORaXgZgGa78yO9\\/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i\\/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH\\/\\/wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv\\/H9ezGI6Z5XBAw8CBK\\/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow\\/P\\/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA\\\");font-weight:400;font-style:normal}\"],[true,{\":root\":true},[\"--swiper-theme-color:#007aff\"]],[false,{\".swiper\":false},[\"margin-left:auto\",\"margin-right:auto\",\"position:relative\",\"overflow:hidden\",\"list-style:none\",\"padding:0\",\"z-index:1\"]],[false,{\".swiper-vertical>.swiper-wrapper\":false},[\"flex-direction:column\"]],[false,{\".swiper-wrapper\":false},[\"position:relative\",\"width:100%\",\"height:100%\",\"z-index:1\",\"display:flex\",\"transition-property:transform\",\"box-sizing:content-box\"]],[false,{\".swiper-android .swiper-slide\":false,\".swiper-wrapper\":false},[\"transform:translate3d(0px,0,0)\"]],[false,{\".swiper-pointer-events\":false},[\"touch-action:pan-y\"]],[false,{\".swiper-pointer-events.swiper-vertical\":false},[\"touch-action:pan-x\"]],[false,{\".swiper-slide\":false},[\"flex-shrink:0\",\"width:100%\",\"height:100%\",\"position:relative\",\"transition-property:transform\"]],[false,{\".swiper-slide-invisible-blank\":false},[\"visibility:hidden\"]],[false,{\".swiper-autoheight\":false,\".swiper-autoheight .swiper-slide\":false},[\"height:auto\"]],[false,{\".swiper-autoheight .swiper-wrapper\":false},[\"align-items:flex-start\",\"transition-property:transform,height\"]],[false,{\".swiper-backface-hidden .swiper-slide\":false},[\"transform:translateZ(0)\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".swiper-3d\":false,\".swiper-3d.swiper-css-mode .swiper-wrapper\":false},[\"perspective:1200px\"]],[false,{\".swiper-3d .swiper-cube-shadow\":false,\".swiper-3d .swiper-slide\":false,\".swiper-3d .swiper-slide-shadow\":false,\".swiper-3d .swiper-slide-shadow-bottom\":false,\".swiper-3d .swiper-slide-shadow-left\":false,\".swiper-3d .swiper-slide-shadow-right\":false,\".swiper-3d .swiper-slide-shadow-top\":false,\".swiper-3d .swiper-wrapper\":false},[\"transform-style:preserve-3d\"]],[false,{\".swiper-3d .swiper-slide-shadow\":false,\".swiper-3d .swiper-slide-shadow-bottom\":false,\".swiper-3d .swiper-slide-shadow-left\":false,\".swiper-3d .swiper-slide-shadow-right\":false,\".swiper-3d .swiper-slide-shadow-top\":false},[\"position:absolute\",\"left:0\",\"top:0\",\"width:100%\",\"height:100%\",\"pointer-events:none\",\"z-index:10\"]],[false,{\".swiper-3d .swiper-slide-shadow\":false},[\"background:rgba(0,0,0,.15)\"]],[false,{\".swiper-3d .swiper-slide-shadow-left\":false},[\"background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-3d .swiper-slide-shadow-right\":false},[\"background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-3d .swiper-slide-shadow-top\":false},[\"background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-3d .swiper-slide-shadow-bottom\":false},[\"background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-css-mode>.swiper-wrapper\":false},[\"overflow:auto\",\"scrollbar-width:none\",\"-ms-overflow-style:none\"]],[false,{\".swiper-css-mode>.swiper-wrapper::-webkit-scrollbar\":false},[\"display:none\"]],[false,{\".swiper-css-mode>.swiper-wrapper>.swiper-slide\":false},[\"scroll-snap-align:start start\"]],[false,{\".swiper-horizontal.swiper-css-mode>.swiper-wrapper\":false},[\"scroll-snap-type:x mandatory\"]],[false,{\".swiper-vertical.swiper-css-mode>.swiper-wrapper\":false},[\"scroll-snap-type:y mandatory\"]],[false,{\".swiper-centered>.swiper-wrapper::before\":false},[\"content:\\\"\\\"\",\"flex-shrink:0\",\"order:9999\"]],[false,{\".swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child\":false},[\"margin-inline-start:var(--swiper-centered-offset-before)\"]],[false,{\".swiper-centered.swiper-horizontal>.swiper-wrapper::before\":false},[\"height:100%\",\"min-height:1px\",\"width:var(--swiper-centered-offset-after)\"]],[false,{\".swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child\":false},[\"margin-block-start:var(--swiper-centered-offset-before)\"]],[false,{\".swiper-centered.swiper-vertical>.swiper-wrapper::before\":false},[\"width:100%\",\"min-width:1px\",\"height:var(--swiper-centered-offset-after)\"]],[false,{\".swiper-centered>.swiper-wrapper>.swiper-slide\":false},[\"scroll-snap-align:center center\"]],[false,{\".swiper-virtual .swiper-slide\":false},[\"-webkit-backface-visibility:hidden\",\"transform:translateZ(0)\"]],[false,{\".swiper-virtual.swiper-css-mode .swiper-wrapper::after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"left:0\",\"top:0\",\"pointer-events:none\"]],[false,{\".swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after\":false},[\"height:1px\",\"width:var(--swiper-virtual-size)\"]],[false,{\".swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after\":false},[\"width:1px\",\"height:var(--swiper-virtual-size)\"]],[true,{\":root\":true},[\"--swiper-navigation-size:44px\"]],[false,{\".swiper-button-next\":false,\".swiper-button-prev\":false},[\"position:absolute\",\"top:50%\",\"width:calc(var(--swiper-navigation-size) \\/ 44 * 27)\",\"height:var(--swiper-navigation-size)\",\"margin-top:calc(0px - ( var(--swiper-navigation-size) \\/ 2 ))\",\"z-index:10\",\"cursor:pointer\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"color:var(--swiper-navigation-color,var(--swiper-theme-color))\"]],[false,{\".swiper-button-next.swiper-button-disabled\":false,\".swiper-button-prev.swiper-button-disabled\":false},[\"opacity:.35\",\"cursor:auto\",\"pointer-events:none\"]],[false,{\".swiper-button-next.swiper-button-hidden\":false,\".swiper-button-prev.swiper-button-hidden\":false},[\"opacity:0\",\"cursor:auto\",\"pointer-events:none\"]],[false,{\".swiper-navigation-disabled .swiper-button-next:not(#_#_#_#_#_#_#_)\":false,\".swiper-navigation-disabled .swiper-button-prev:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-button-next:after\":false,\".swiper-button-prev:after\":false},[\"font-family:swiper-icons\",\"font-size:var(--swiper-navigation-size)\",\"letter-spacing:0\",\"font-variant:initial\",\"line-height:1\"]],[false,{\".swiper-button-next:after:not(#_#_#_#_#_#_#_#_)\":false,\".swiper-button-prev:after:not(#_#_#_#_#_#_#_#_)\":false},[\"text-transform:none\"]],[false,{\".swiper-button-prev\":false,\".swiper-rtl .swiper-button-next\":false},[\"left:10px\",\"right:auto\"]],[false,{\".swiper-button-prev:after\":false,\".swiper-rtl .swiper-button-next:after\":false},[\"content:\\\"prev\\\"\"]],[false,{\".swiper-button-next\":false,\".swiper-rtl .swiper-button-prev\":false},[\"right:10px\",\"left:auto\"]],[false,{\".swiper-button-next:after\":false,\".swiper-rtl .swiper-button-prev:after\":false},[\"content:\\\"next\\\"\"]],[false,{\".swiper-button-lock\":false},[\"display:none\"]],[false,{\".swiper-pagination\":false},[\"position:absolute\",\"text-align:center\",\"transition:.3s opacity\",\"transform:translate3d(0,0,0)\",\"z-index:10\"]],[false,{\".swiper-pagination.swiper-pagination-hidden\":false},[\"opacity:0\"]],[false,{\".swiper-pagination-disabled>.swiper-pagination:not(#_#_#_#_#_#_#_)\":false,\".swiper-pagination.swiper-pagination-disabled:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets\":false,\".swiper-pagination-bullets.swiper-pagination-horizontal\":false,\".swiper-pagination-custom\":false,\".swiper-pagination-fraction\":false},[\"bottom:10px\",\"left:0\",\"width:100%\"]],[false,{\".swiper-pagination-bullets-dynamic\":false},[\"overflow:hidden\",\"font-size:0\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"transform:scale(.33)\",\"position:relative\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active\":false},[\"transform:scale(1)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main\":false},[\"transform:scale(1)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev\":false},[\"transform:scale(.66)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev\":false},[\"transform:scale(.33)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next\":false},[\"transform:scale(.66)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next\":false},[\"transform:scale(.33)\"]],[false,{\".swiper-pagination-bullet\":false},[\"width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px))\",\"height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px))\",\"display:inline-block\",\"border-radius:50%\",\"background:var(--swiper-pagination-bullet-inactive-color,#000)\",\"opacity:var(--swiper-pagination-bullet-inactive-opacity,.2)\"]],[false,{\"button.swiper-pagination-bullet\":false},[\"border:none\",\"margin:0\",\"padding:0\",\"box-shadow:none\",\"-webkit-appearance:none\",\"appearance:none\"]],[false,{\".swiper-pagination-clickable .swiper-pagination-bullet\":false},[\"cursor:pointer\"]],[false,{\".swiper-pagination-bullet:only-child:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-pagination-bullet-active\":false},[\"opacity:var(--swiper-pagination-bullet-opacity,1)\",\"background:var(--swiper-pagination-color,var(--swiper-theme-color))\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets\":false,\".swiper-vertical>.swiper-pagination-bullets\":false},[\"right:10px\",\"top:50%\",\"transform:translate3d(0px,-50%,0)\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet\":false,\".swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet\":false},[\"margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0\",\"display:block\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false,\".swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false},[\"top:50%\",\"transform:translateY(-50%)\",\"width:8px\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false,\".swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"display:inline-block\",\"transition:.2s transform,.2s top\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet\":false,\".swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet\":false},[\"margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false,\".swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false},[\"left:50%\",\"transform:translateX(-50%)\",\"white-space:nowrap\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false,\".swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"transition:.2s transform,.2s left\"]],[false,{\".swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"transition:.2s transform,.2s right\"]],[false,{\".swiper-pagination-progressbar\":false},[\"background:rgba(0,0,0,.25)\",\"position:absolute\"]],[false,{\".swiper-pagination-progressbar .swiper-pagination-progressbar-fill\":false},[\"background:var(--swiper-pagination-color,var(--swiper-theme-color))\",\"position:absolute\",\"left:0\",\"top:0\",\"width:100%\",\"height:100%\",\"transform:scale(0)\",\"transform-origin:left top\"]],[false,{\".swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill\":false},[\"transform-origin:right top\"]],[false,{\".swiper-horizontal>.swiper-pagination-progressbar\":false,\".swiper-pagination-progressbar.swiper-pagination-horizontal\":false,\".swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite\":false,\".swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite\":false},[\"width:100%\",\"height:4px\",\"left:0\",\"top:0\"]],[false,{\".swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite\":false,\".swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite\":false,\".swiper-pagination-progressbar.swiper-pagination-vertical\":false,\".swiper-vertical>.swiper-pagination-progressbar\":false},[\"width:4px\",\"height:100%\",\"left:0\",\"top:0\"]],[false,{\".swiper-pagination-lock\":false},[\"display:none\"]],[false,{\".swiper-scrollbar\":false},[\"border-radius:10px\",\"position:relative\",\"-ms-touch-action:none\",\"background:rgba(0,0,0,.1)\"]],[false,{\".swiper-scrollbar-disabled>.swiper-scrollbar:not(#_#_#_#_#_#_#_)\":false,\".swiper-scrollbar.swiper-scrollbar-disabled:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-horizontal>.swiper-scrollbar\":false,\".swiper-scrollbar.swiper-scrollbar-horizontal\":false},[\"position:absolute\",\"left:1%\",\"bottom:3px\",\"z-index:50\",\"height:5px\",\"width:98%\"]],[false,{\".swiper-scrollbar.swiper-scrollbar-vertical\":false,\".swiper-vertical>.swiper-scrollbar\":false},[\"position:absolute\",\"right:3px\",\"top:1%\",\"z-index:50\",\"width:5px\",\"height:98%\"]],[false,{\".swiper-scrollbar-drag\":false},[\"height:100%\",\"width:100%\",\"position:relative\",\"background:rgba(0,0,0,.5)\",\"border-radius:10px\",\"left:0\",\"top:0\"]],[false,{\".swiper-scrollbar-cursor-drag\":false},[\"cursor:move\"]],[false,{\".swiper-scrollbar-lock\":false},[\"display:none\"]],[false,{\".swiper-zoom-container\":false},[\"width:100%\",\"height:100%\",\"display:flex\",\"justify-content:center\",\"align-items:center\",\"text-align:center\"]],[false,{\".swiper-zoom-container>canvas\":false,\".swiper-zoom-container>amp-img\":false,\".swiper-zoom-container>amp-anim\":false,\".swiper-zoom-container>svg\":false},[\"max-width:100%\",\"max-height:100%\",\"object-fit:contain\"]],[false,{\".swiper-slide-zoomed\":false},[\"cursor:move\"]],[false,{\".swiper-lazy-preloader\":false},[\"width:42px\",\"height:42px\",\"position:absolute\",\"left:50%\",\"top:50%\",\"margin-left:-21px\",\"margin-top:-21px\",\"z-index:10\",\"transform-origin:50%\",\"box-sizing:border-box\",\"border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color))\",\"border-radius:50%\",\"border-top-color:transparent\"]],[false,{\".swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader\":false,\".swiper:not(.swiper-watch-progress) .swiper-lazy-preloader\":false},[\"animation:swiper-preloader-spin 1s infinite linear\"]],[false,{\".swiper-lazy-preloader-white\":false},[\"--swiper-preloader-color:#fff\"]],[false,{\".swiper-lazy-preloader-black\":false},[\"--swiper-preloader-color:#000\"]],[true,\"@keyframes swiper-preloader-spin{\"],[true,\"0%{transform:rotate(0deg)}\"],[true,\"100%{transform:rotate(360deg)}\"],[true,\"}\"],[false,{\".swiper .swiper-notification\":false},[\"position:absolute\",\"left:0\",\"top:0\",\"pointer-events:none\",\"opacity:0\",\"z-index:-1000\"]],[false,{\".swiper-free-mode>.swiper-wrapper\":false},[\"transition-timing-function:ease-out\",\"margin:0 auto\"]],[false,{\".swiper-grid>.swiper-wrapper\":false},[\"flex-wrap:wrap\"]],[false,{\".swiper-grid-column>.swiper-wrapper\":false},[\"flex-wrap:wrap\",\"flex-direction:column\"]],[false,{\".swiper-fade.swiper-free-mode .swiper-slide\":false},[\"transition-timing-function:ease-out\"]],[false,{\".swiper-fade .swiper-slide\":false},[\"pointer-events:none\",\"transition-property:opacity\"]],[false,{\".swiper-fade .swiper-slide .swiper-slide\":false},[\"pointer-events:none\"]],[false,{\".swiper-fade .swiper-slide-active\":false,\".swiper-fade .swiper-slide-active .swiper-slide-active\":false},[\"pointer-events:auto\"]],[false,{\".swiper-cube\":false},[\"overflow:visible\"]],[false,{\".swiper-cube .swiper-slide\":false},[\"pointer-events:none\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"z-index:1\",\"visibility:hidden\",\"transform-origin:0 0\",\"width:100%\",\"height:100%\"]],[false,{\".swiper-cube .swiper-slide .swiper-slide\":false},[\"pointer-events:none\"]],[false,{\".swiper-cube.swiper-rtl .swiper-slide\":false},[\"transform-origin:100% 0\"]],[false,{\".swiper-cube .swiper-slide-active\":false,\".swiper-cube .swiper-slide-active .swiper-slide-active\":false},[\"pointer-events:auto\"]],[false,{\".swiper-cube .swiper-slide-active\":false,\".swiper-cube .swiper-slide-next\":false,\".swiper-cube .swiper-slide-next+.swiper-slide\":false,\".swiper-cube .swiper-slide-prev\":false},[\"pointer-events:auto\",\"visibility:visible\"]],[false,{\".swiper-cube .swiper-slide-shadow-bottom\":false,\".swiper-cube .swiper-slide-shadow-left\":false,\".swiper-cube .swiper-slide-shadow-right\":false,\".swiper-cube .swiper-slide-shadow-top\":false},[\"z-index:0\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".swiper-cube .swiper-cube-shadow\":false},[\"position:absolute\",\"left:0\",\"bottom:0px\",\"width:100%\",\"height:100%\",\"opacity:.6\",\"z-index:0\"]],[false,{\".swiper-cube .swiper-cube-shadow:before\":false},[\"content:\\\"\\\"\",\"background:#000\",\"position:absolute\",\"left:0\",\"top:0\",\"bottom:0\",\"right:0\",\"filter:blur(50px)\"]],[false,{\".swiper-flip\":false},[\"overflow:visible\"]],[false,{\".swiper-flip .swiper-slide\":false},[\"pointer-events:none\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"z-index:1\"]],[false,{\".swiper-flip .swiper-slide .swiper-slide\":false},[\"pointer-events:none\"]],[false,{\".swiper-flip .swiper-slide-active\":false,\".swiper-flip .swiper-slide-active .swiper-slide-active\":false},[\"pointer-events:auto\"]],[false,{\".swiper-flip .swiper-slide-shadow-bottom\":false,\".swiper-flip .swiper-slide-shadow-left\":false,\".swiper-flip .swiper-slide-shadow-right\":false,\".swiper-flip .swiper-slide-shadow-top\":false},[\"z-index:0\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".swiper-creative .swiper-slide\":false},[\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"overflow:hidden\",\"transition-property:transform,opacity,height\"]],[false,{\".swiper-cards\":false},[\"overflow:visible\"]],[false,{\".swiper-cards .swiper-slide\":false},[\"transform-origin:center bottom\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"overflow:hidden\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":810,\"final_size\":766,\"element\":{\"name\":\"style\",\"attributes\":[]},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Header_Output.php\",\"line\":69,\"function\":\"SWP_Header_Output::add_header_output\",\"hook\":\"wp_head\",\"priority\":1}],\"priority\":70,\"hash\":\"0a9255310f1740c2ab6cffd5f5a29640\",\"parse_time\":0.0011060237884521484,\"shake_time\":2.86102294921875e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0#iefix\"],\"shaken_tokens\":[[true,\"@font-face{font-family:\\\"sw-icon-font\\\";src:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0\\\");src:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.woff?ver=4.3.0\\\") format(\\\"woff\\\"),url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.ttf?ver=4.3.0\\\") format(\\\"truetype\\\"),url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.svg?ver=4.3.0#1445203416\\\") format(\\\"svg\\\");font-weight:normal;font-style:normal;font-display:block}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2209,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"social-warfare-block-css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/js\\/post-editor\\/dist\\/blocks.style.build.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"assets\\/js\\/post-editor\\/blocks.php\",\"line\":20,\"function\":\"register_gutenberg_blocks\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social-warfare-block-css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"c542eecf74fba8e6b26c437634e5223e\",\"parse_time\":0.010244131088256836,\"shake_time\":5.91278076171875e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".social-warfare-admin-block\":false},[\"font-family:\\\"SF Pro Text\\\",\\\"Helvetica\\\",sans-serif\",\"font-size:13px\"]],[false,{\".social-warfare-admin-block .head\":false},[\"width:100%\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".social-warfare-admin-block .head p\":false},[\"font-weight:bold\"]],[false,{\".social-warfare-admin-block .swp-block-icon\":false},[\"margin:0 28px 0 14px\",\"font-size:18px\",\"width:32px\",\"height:32px\"]],[false,{\".social-warfare-block-wrap input\":false,\".social-warfare-block-wrap select\":false},[\"width:100%\"]],[false,{\".swp-active-block\":false},[\"height:100%\"]],[false,{\".swp-active-block input\":false,\".swp-active-block select\":false,\".swp-active-block textarea\":false},[\"display:block\",\"width:100%\",\"padding:5px\",\"height:42px\",\"border:1px solid #e2e4e7\"]],[false,{\".swp-active-block textarea\":false},[\"height:64px\"]],[false,{\".swp-active-block .swp-inner-block-50\":false},[\"width:50%\",\"display:inline-block\",\"padding:0 1px\"]],[false,{\".swp-active-block .head>div\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row no-wrap\",\"flex-flow:row no-wrap\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".swp-active-block .head .swp-block-icon\":false,\".swp-active-block .head .swp-block-title\":false},[\"display:inline-block\"]],[false,{\".swp-active-block p\":false},[\"margin:25px 0 5px 0\"]],[false,{\".swp-active-block .head p\":false},[\"margin:initial\"]],[false,{\".swp-inactive-block\":false},[\"min-height:50px\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".swp-inactive-block code\":false},[\"display:block\",\"width:100%\",\"padding:5px\",\"height:42px\"]],[false,{\".swp-inactive-block .swp-preview\":false},[\"background:#f5f5f5\",\"width:100%\",\"display:block\",\"font-family:\\\"SF Pro Text\\\",\\\"Helvetica\\\",sans-sans-serif\",\"font-size:13px\",\"padding:15px\",\"border-radius:4px\"]],[false,{\".swp-inactive-block .swp-dashicon\":false},[\"margin:0 14px\"]],[false,{\".click-to-tweet-block-wrap textarea[name=\\\"tweetText\\\"]\":false},[\"border-top-right-radius:0px\"]],[false,{\".click-to-tweet-block-wrap .block-characters-remaining\":false},[\"font-size:16px\",\"font-size:13px\",\"font-weight:normal\",\"color:white\",\"padding:5px\",\"padding:5px 15px\",\"border-top-right-radius:4px\",\"border-top-left-radius:4px\",\"background:#30394f\",\"margin:0\",\"float:right\",\"max-width:200px\",\"position:relative\",\"-webkit-transition:all 300ms\",\"-o-transition:all 300ms\",\"transition:all 300ms\"]],[false,{\".click-to-tweet-block-wrap .block-characters-remaining.over-limit\":false},[\"background:#ee464f\",\"color:#fff\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1388,\"final_size\":709,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=2.3.0\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1020,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2261,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"82cd798ece835d3c574519b60ef930fe\",\"parse_time\":0.0071032047271728516,\"shake_time\":0.0007619857788085938,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-unknown-size\":false,\"amp-anim.amp-wp-enforced-sizes\":false,\"amp-img.amp-wp-enforced-sizes\":true},[\"-o-object-fit:contain\",\"object-fit:contain\"]],[false,{\"body amp-audio:not([controls])\":false},[\"display:inline-block\",\"height:auto\"]],[true,{\".amp-wp-default-form-message>p\":true},[\"margin:1em 0\",\"padding:.5em\"]],[true,{\".amp-wp-default-form-message[submit-success]>p.amp-wp-form-redirecting\":true,\".amp-wp-default-form-message[submitting]>p\":true},[\"font-style:italic\"]],[true,{\".amp-wp-default-form-message[submit-success]>p:not(.amp-wp-form-redirecting)\":true},[\"background-color:#90ee90\",\"border:1px solid green\",\"color:#000\"]],[true,{\".amp-wp-default-form-message[submit-error]>p\":true},[\"background-color:#ffb6c1\",\"border:1px solid red\",\"color:#000\"]],[true,{\".amp-wp-default-form-message[submit-success]>p:empty\":true},[\"display:none\"]],[false,{\"amp-carousel .amp-wp-gallery-caption\":false},[\"background-color:rgba(0,0,0,.5)\",\"bottom:0\",\"color:#fff\",\"left:0\",\"margin-bottom:0\",\"padding:1rem\",\"position:absolute\",\"right:0\",\"text-align:center\"]],[false,{\"amp-carousel .amp-wp-gallery-caption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery[data-amp-carousel=true]\":false,\".wp-block-gallery[data-amp-carousel=true].has-nested-images\":false},[\"display:block\",\"flex-wrap:unset\"]],[false,{\".wp-video\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"height:auto\"]],[false,{\"button[overflow]\":false},[\"bottom:0\"]],[true,{\"amp-anim img\":false,\"amp-anim noscript\":false,\"amp-iframe iframe\":false,\"amp-iframe noscript\":false,\"amp-img img\":true,\"amp-img noscript\":true,\"amp-video noscript\":false,\"amp-video video\":false},[\"image-rendering:inherit\",\"-o-object-fit:inherit\",\"object-fit:inherit\",\"-o-object-position:inherit\",\"object-position:inherit\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":80574,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"wp-block-library-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/css\\/dist\\/block-library\\/style.min.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":1381,\"function\":\"wp_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2246,\"function\":\"wp_common_block_scripts_and_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":20,\"hash\":\"db08bb47cd026dcad266bd62ddc38fd8\",\"parse_time\":1.007054090499878,\"shake_time\":0.0009641647338867188,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\"#start-resizable-editor-section\":false},[\"display:none\"]],[false,{\".wp-block-audio\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-audio figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-audio amp-audio\":false},[\"width:100%\",\"min-width:300px\"]],[false,{\".wp-block-button__link\":false},[\"color:#fff\",\"background-color:#32373c\",\"border-radius:9999px\",\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"font-size:1.125em\",\"padding:calc(.667em + 2px) calc(1.333em + 2px)\",\"text-align:center\",\"text-decoration:none\",\"overflow-wrap:break-word\",\"box-sizing:border-box\"]],[false,{\".wp-block-button__link:active\":false,\".wp-block-button__link:focus\":false,\".wp-block-button__link:hover\":false,\".wp-block-button__link:visited\":false},[\"color:#fff\"]],[false,{\".wp-block-button__link.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-button__link.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width\":false},[\"max-width:none\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"width:calc(100% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100:only-child\":false},[\"margin-right:0\",\"width:100%\"]],[false,\"@supports (column-gap:0.5em){\"],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button.wp-block-button\":false,\".wp-block-buttons>.wp-block-button.wp-block-button\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - .375em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - .25em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - .125em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"width:auto\",\"flex-basis:100%\"]],[false,\"}\"],[false,{\".wp-block-button.is-style-squared\":false,\".wp-block-button__link.wp-block-button.is-style-squared\":false},[\"border-radius:0\"]],[false,{\".wp-block-button.no-border-radius:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button__link.no-border-radius:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[false,{\".is-style-outline>.wp-block-button__link\":false,\".wp-block-button__link.is-style-outline\":false},[\"border:2px solid\",\"padding:.667em 1.333em\"]],[false,{\".is-style-outline>.wp-block-button__link:not(.has-text-color)\":false,\".wp-block-button__link.is-style-outline:not(.has-text-color)\":false},[\"color:currentColor\"]],[false,{\".is-style-outline>.wp-block-button__link:not(.has-background)\":false,\".wp-block-button__link.is-style-outline:not(.has-background)\":false},[\"background-color:transparent\"]],[false,{\".wp-block-buttons\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\",\"column-gap:.5em\"]],[false,{\".wp-block-buttons.is-vertical\":false},[\"flex-direction:column\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-buttons>.wp-block-button\":false},[\"display:inline-block\",\"margin-left:0\",\"margin-right:.5em\",\"margin-bottom:.5em\"]],[false,{\".wp-block-buttons>.wp-block-button:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.is-content-justification-left\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-left.is-vertical\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-center\":false},[\"justify-content:center\"]],[false,{\".wp-block-buttons.is-content-justification-center.is-vertical\":false},[\"align-items:center\"]],[false,{\".wp-block-buttons.is-content-justification-right\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button\":false},[\"margin-left:.5em\",\"margin-right:0\"]],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-buttons.is-content-justification-right.is-vertical\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-space-between\":false},[\"justify-content:space-between\"]],[false,{\".wp-block-buttons.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-buttons.alignleft .wp-block-button\":false},[\"margin-left:0\",\"margin-right:.5em\"]],[false,{\".wp-block-buttons.alignleft .wp-block-button:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.alignright .wp-block-button\":false},[\"margin-right:0\",\"margin-left:.5em\"]],[false,{\".wp-block-buttons.alignright .wp-block-button:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-button.aligncenter\":false,\".wp-block-calendar\":false},[\"text-align:center\"]],[false,{\".wp-block-calendar tbody td\":false,\".wp-block-calendar th\":false},[\"padding:.25em\",\"border:1px solid #ddd\"]],[false,{\".wp-block-calendar tfoot td\":false},[\"border:none\"]],[false,{\".wp-block-calendar table\":false},[\"width:100%\",\"border-collapse:collapse\"]],[false,{\".wp-block-calendar table th\":false},[\"font-weight:400\",\"background:#ddd\"]],[false,{\".wp-block-calendar a\":false},[\"text-decoration:underline\"]],[false,{\".wp-block-calendar table caption\":false,\".wp-block-calendar table tbody\":false},[\"color:#40464d\"]],[false,{\".wp-block-categories.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-categories.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-code code\":false},[\"display:block\",\"white-space:pre-wrap\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-columns\":false},[\"display:flex\",\"margin-bottom:1.75em\",\"box-sizing:border-box\",\"flex-wrap:wrap\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns\":false},[\"flex-wrap:nowrap\"]],[false,\"}\"],[false,{\".wp-block-columns.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-columns.are-vertically-aligned-top\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-columns.are-vertically-aligned-center\":false},[\"align-items:center\"]],[false,{\".wp-block-columns.are-vertically-aligned-bottom\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-column\":false},[\"flex-grow:1\",\"min-width:0\",\"word-break:break-word\",\"overflow-wrap:break-word\"]],[false,\"@media (max-width:599px){\"],[false,{\".wp-block-column:not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:100%\"]],[false,\"}\"],[false,\"@media (min-width:600px) and (max-width:781px){\"],[false,{\".wp-block-column:not(:only-child)\":false},[\"flex-grow:0\"]],[false,{\".wp-block-column:not(:only-child):not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:calc(50% - 1em)\"]],[false,{\".wp-block-column:nth-child(2n)\":false},[\"margin-left:2em\"]],[false,\"}\"],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[false,{\".wp-block-column:not(:first-child)\":false},[\"margin-left:2em\"]],[false,\"}\"],[false,{\".wp-block-column.is-vertically-aligned-top\":false},[\"align-self:flex-start\"]],[false,{\".wp-block-column.is-vertically-aligned-center\":false},[\"align-self:center\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false},[\"align-self:flex-end\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false,\".wp-block-column.is-vertically-aligned-center\":false,\".wp-block-column.is-vertically-aligned-top\":false},[\"width:100%\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"position:relative\",\"background-size:cover\",\"background-position:50%\",\"min-height:430px\",\"width:100%\",\"display:flex\",\"justify-content:center\",\"align-items:center\",\"padding:1em\",\"box-sizing:border-box\"]],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:fixed\"]],[false,\"@supports (-webkit-overflow-scrolling:touch){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,{\".wp-block-cover-image.is-repeated\":false,\".wp-block-cover.is-repeated\":false},[\"background-repeat:repeat\",\"background-size:auto\"]],[false,{\".wp-block-cover-image.has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover.has-background-dim:not([class*=-background-color])\":false},[\"background-color:#000\"]],[false,{\".wp-block-cover-image.has-background-dim:before\":false,\".wp-block-cover.has-background-dim:before\":false},[\"content:\\\"\\\"\",\"background-color:inherit\"]],[false,{\".wp-block-cover-image.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover-image .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover .wp-block-cover__gradient-background\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"bottom:0\",\"right:0\",\"z-index:1\",\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false},[\"opacity:1\"]],[false,{\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-cover-image:after\":false,\".wp-block-cover:after\":false},[\"display:block\",\"content:\\\"\\\"\",\"font-size:0\",\"min-height:inherit\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-cover-image:after\":false,\".wp-block-cover:after\":false},[\"content:none\"]],[false,\"}\"],[false,{\".wp-block-cover-image.aligncenter\":false,\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.aligncenter\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"display:flex\"]],[false,{\".wp-block-cover-image .wp-block-cover__inner-container\":false,\".wp-block-cover .wp-block-cover__inner-container\":false},[\"width:100%\",\"z-index:1\",\"color:#fff\"]],[false,{\".wp-block-cover-image h1:not(.has-text-color)\":false,\".wp-block-cover-image h2:not(.has-text-color)\":false,\".wp-block-cover-image h3:not(.has-text-color)\":false,\".wp-block-cover-image h4:not(.has-text-color)\":false,\".wp-block-cover-image h5:not(.has-text-color)\":false,\".wp-block-cover-image h6:not(.has-text-color)\":false,\".wp-block-cover-image p:not(.has-text-color)\":false,\".wp-block-cover h1:not(.has-text-color)\":false,\".wp-block-cover h2:not(.has-text-color)\":false,\".wp-block-cover h3:not(.has-text-color)\":false,\".wp-block-cover h4:not(.has-text-color)\":false,\".wp-block-cover h5:not(.has-text-color)\":false,\".wp-block-cover h6:not(.has-text-color)\":false,\".wp-block-cover p:not(.has-text-color)\":false},[\"color:inherit\"]],[false,{\".wp-block-cover-image.is-position-top-left\":false,\".wp-block-cover.is-position-top-left\":false},[\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-top-center\":false,\".wp-block-cover.is-position-top-center\":false},[\"align-items:flex-start\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-top-right\":false,\".wp-block-cover.is-position-top-right\":false},[\"align-items:flex-start\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-center-left\":false,\".wp-block-cover.is-position-center-left\":false},[\"align-items:center\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-center-center\":false,\".wp-block-cover.is-position-center-center\":false},[\"align-items:center\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-center-right\":false,\".wp-block-cover.is-position-center-right\":false},[\"align-items:center\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-bottom-left\":false,\".wp-block-cover.is-position-bottom-left\":false},[\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-bottom-center\":false,\".wp-block-cover.is-position-bottom-center\":false},[\"align-items:flex-end\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-bottom-right\":false,\".wp-block-cover.is-position-bottom-right\":false},[\"align-items:flex-end\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false},[\"margin:0\",\"width:auto\"]],[false,{\".wp-block-cover-image amp-img.wp-block-cover__image-background\":false,\".wp-block-cover-image amp-anim.wp-block-cover__image-background\":false,\".wp-block-cover-image amp-video.wp-block-cover__video-background\":false,\".wp-block-cover-image amp-youtube.wp-block-cover__video-background\":false,\".wp-block-cover amp-img.wp-block-cover__image-background\":false,\".wp-block-cover amp-anim.wp-block-cover__image-background\":false,\".wp-block-cover amp-video.wp-block-cover__video-background\":false,\".wp-block-cover amp-youtube.wp-block-cover__video-background\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"margin:0\",\"padding:0\",\"width:100%\",\"height:100%\",\"max-width:none\",\"max-height:none\",\"-o-object-fit:cover\",\"object-fit:cover\",\"outline:none\",\"border:none\",\"box-shadow:none\"]],[false,{\".wp-block-cover__image-background\":false,\".wp-block-cover__video-background\":false},[\"z-index:0\"]],[false,{\".wp-block-cover-image-text\":false,\".wp-block-cover-image-text a\":false,\".wp-block-cover-image-text a:active\":false,\".wp-block-cover-image-text a:focus\":false,\".wp-block-cover-image-text a:hover\":false,\".wp-block-cover-text\":false,\".wp-block-cover-text a\":false,\".wp-block-cover-text a:active\":false,\".wp-block-cover-text a:focus\":false,\".wp-block-cover-text a:hover\":false,\"section.wp-block-cover-image h2\":false,\"section.wp-block-cover-image h2 a\":false,\"section.wp-block-cover-image h2 a:active\":false,\"section.wp-block-cover-image h2 a:focus\":false,\"section.wp-block-cover-image h2 a:hover\":false},[\"color:#fff\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-left-content\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-right-content\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-left-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-left-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-left-content>h2\":false},[\"margin-left:0\",\"text-align:left\"]],[false,{\".wp-block-cover-image.has-right-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-right-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-right-content>h2\":false},[\"margin-right:0\",\"text-align:right\"]],[false,{\".wp-block-cover-image .wp-block-cover-image-text\":false,\".wp-block-cover .wp-block-cover-text\":false,\"section.wp-block-cover-image>h2\":false},[\"font-size:2em\",\"line-height:1.25\",\"z-index:1\",\"margin-bottom:0\",\"max-width:840px\",\"padding:.44em\",\"text-align:center\"]],[false,{\".wp-block-embed.alignleft\":false,\".wp-block-embed.alignright\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"]\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"]\":false},[\"max-width:360px\",\"width:100%\"]],[false,{\".wp-block-embed.alignleft .wp-block-embed__wrapper\":false,\".wp-block-embed.alignright .wp-block-embed__wrapper\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false},[\"min-width:280px\"]],[false,{\".wp-block-cover .wp-block-embed\":false},[\"min-width:320px\",\"min-height:240px\"]],[false,{\".wp-block-embed\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-embed figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-embed amp-iframe\":false},[\"max-width:100%\"]],[false,{\".wp-block-embed__wrapper\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio amp-iframe\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"height:100%\",\"width:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:42.85%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:56.25%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before\":false},[\"padding-top:75%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before\":false},[\"padding-top:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before\":false},[\"padding-top:177.77%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before\":false},[\"padding-top:200%\"]],[false,{\".wp-block-file\":false},[\"margin-bottom:1.5em\"]],[false,{\".wp-block-file.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-file.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-file .wp-block-file__embed\":false},[\"margin-bottom:1em\"]],[false,{\".wp-block-file .wp-block-file__button\":false},[\"background:#32373c\",\"border-radius:2em\",\"color:#fff\",\"font-size:.8em\",\"padding:.5em 1em\"]],[false,{\".wp-block-file a.wp-block-file__button\":false},[\"text-decoration:none\"]],[false,{\".wp-block-file a.wp-block-file__button:active\":false,\".wp-block-file a.wp-block-file__button:focus\":false,\".wp-block-file a.wp-block-file__button:hover\":false,\".wp-block-file a.wp-block-file__button:visited\":false},[\"box-shadow:none\",\"color:#fff\",\"opacity:.85\",\"text-decoration:none\"]],[false,{\".wp-block-file *+.wp-block-file__button\":false},[\"margin-left:.75em\"]],[false,{\".blocks-gallery-grid\":false,\".wp-block-gallery\":false},[\"display:flex\",\"flex-wrap:wrap\",\"list-style-type:none\",\"padding:0\",\"margin:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image\":false,\".blocks-gallery-grid .blocks-gallery-item\":false,\".wp-block-gallery .blocks-gallery-image\":false,\".wp-block-gallery .blocks-gallery-item\":false},[\"margin:0 1em 1em 0\",\"display:flex\",\"flex-grow:1\",\"flex-direction:column\",\"justify-content:center\",\"position:relative\",\"align-self:flex-start\",\"width:calc(50% - 1em)\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery .blocks-gallery-item:nth-of-type(2n)\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image figure\":false,\".blocks-gallery-grid .blocks-gallery-item figure\":false,\".wp-block-gallery .blocks-gallery-image figure\":false,\".wp-block-gallery .blocks-gallery-item figure\":false},[\"margin:0\",\"height:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid .blocks-gallery-image figure\":false,\".blocks-gallery-grid .blocks-gallery-item figure\":false,\".wp-block-gallery .blocks-gallery-image figure\":false,\".wp-block-gallery .blocks-gallery-item figure\":false},[\"display:flex\",\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item amp-anim\":false,\".wp-block-gallery .blocks-gallery-image amp-img\":false,\".wp-block-gallery .blocks-gallery-image amp-anim\":false,\".wp-block-gallery .blocks-gallery-item amp-img\":false,\".wp-block-gallery .blocks-gallery-item amp-anim\":false},[\"display:block\",\"max-width:100%\",\"height:auto\",\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item amp-anim\":false,\".wp-block-gallery .blocks-gallery-image amp-img\":false,\".wp-block-gallery .blocks-gallery-image amp-anim\":false,\".wp-block-gallery .blocks-gallery-item amp-img\":false,\".wp-block-gallery .blocks-gallery-item amp-anim\":false},[\"width:auto\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image figcaption\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption\":false,\".wp-block-gallery .blocks-gallery-image figcaption\":false,\".wp-block-gallery .blocks-gallery-item figcaption\":false},[\"position:absolute\",\"bottom:0\",\"width:100%\",\"max-height:100%\",\"overflow:auto\",\"padding:3em .77em .7em\",\"color:#fff\",\"text-align:center\",\"font-size:.8em\",\"background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent)\",\"box-sizing:border-box\",\"margin:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image figcaption amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image figcaption amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption amp-anim\":false,\".wp-block-gallery .blocks-gallery-image figcaption amp-img\":false,\".wp-block-gallery .blocks-gallery-image figcaption amp-anim\":false,\".wp-block-gallery .blocks-gallery-item figcaption amp-img\":false,\".wp-block-gallery .blocks-gallery-item figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".blocks-gallery-grid figcaption\":false,\".wp-block-gallery figcaption\":false},[\"flex-grow:1\"]],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item\":false},[\"align-self:inherit\"]],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-anim\":false},[\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-anim\":false},[\"height:100%\",\"flex:1\",\"-o-object-fit:cover\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".blocks-gallery-grid.columns-1 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-1 .blocks-gallery-item\":false,\".wp-block-gallery.columns-1 .blocks-gallery-image\":false,\".wp-block-gallery.columns-1 .blocks-gallery-item\":false},[\"width:100%\",\"margin-right:0\"]],[false,\"@media (min-width:600px){\"],[false,{\".blocks-gallery-grid.columns-3 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-item\":false,\".wp-block-gallery.columns-3 .blocks-gallery-image\":false,\".wp-block-gallery.columns-3 .blocks-gallery-item\":false},[\"width:calc(33.33333% - .66667em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-4 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-item\":false,\".wp-block-gallery.columns-4 .blocks-gallery-image\":false,\".wp-block-gallery.columns-4 .blocks-gallery-item\":false},[\"width:calc(25% - .75em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-5 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-item\":false,\".wp-block-gallery.columns-5 .blocks-gallery-image\":false,\".wp-block-gallery.columns-5 .blocks-gallery-item\":false},[\"width:calc(20% - .8em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-6 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-item\":false,\".wp-block-gallery.columns-6 .blocks-gallery-image\":false,\".wp-block-gallery.columns-6 .blocks-gallery-item\":false},[\"width:calc(16.66667% - .83333em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-7 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-item\":false,\".wp-block-gallery.columns-7 .blocks-gallery-image\":false,\".wp-block-gallery.columns-7 .blocks-gallery-item\":false},[\"width:calc(14.28571% - .85714em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-8 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-item\":false,\".wp-block-gallery.columns-8 .blocks-gallery-image\":false,\".wp-block-gallery.columns-8 .blocks-gallery-item\":false},[\"width:calc(12.5% - .875em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n)\":false,\".wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image:last-child\":false,\".blocks-gallery-grid .blocks-gallery-item:last-child\":false,\".wp-block-gallery .blocks-gallery-image:last-child\":false,\".wp-block-gallery .blocks-gallery-item:last-child\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid.alignleft\":false,\".blocks-gallery-grid.alignright\":false,\".wp-block-gallery.alignleft\":false,\".wp-block-gallery.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".blocks-gallery-grid.aligncenter .blocks-gallery-item figure\":false,\".wp-block-gallery.aligncenter .blocks-gallery-item figure\":false},[\"justify-content:center\"]],[false,{\".wp-block-group\":false},[\"box-sizing:border-box\"]],[false,{\"h1.has-background\":false,\"h2.has-background\":false,\"h3.has-background\":false,\"h4.has-background\":false,\"h5.has-background\":false,\"h6.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-image\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-image amp-img\":false,\".wp-block-image amp-anim\":false},[\"max-width:100%\"]],[false,{\".wp-block-image:not(.is-style-rounded) amp-img\":false,\".wp-block-image:not(.is-style-rounded) amp-anim\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-image.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-image.alignfull amp-img\":false,\".wp-block-image.alignfull amp-anim\":false,\".wp-block-image.alignwide amp-img\":false,\".wp-block-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\".wp-block-image .aligncenter\":false,\".wp-block-image .alignleft\":false,\".wp-block-image .alignright\":false},[\"display:table\"]],[false,{\".wp-block-image .aligncenter>figcaption\":false,\".wp-block-image .alignleft>figcaption\":false,\".wp-block-image .alignright>figcaption\":false},[\"display:table-caption\",\"caption-side:bottom\"]],[false,{\".wp-block-image .alignleft\":false},[\"float:left\",\"margin:.5em 1em .5em 0\"]],[false,{\".wp-block-image .alignright\":false},[\"float:right\",\"margin:.5em 0 .5em 1em\"]],[false,{\".wp-block-image .aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-block-image figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false,\".wp-block-image.is-style-rounded amp-img\":false,\".wp-block-image.is-style-rounded amp-anim\":false},[\"border-radius:9999px\"]],[false,\"@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){\"],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"-webkit-mask-image:url(\\\"data:image\\/svg+xml;utf8,<\\/svg>\\\")\",\"mask-image:url(\\\"data:image\\/svg+xml;utf8,<\\/svg>\\\")\",\"mask-mode:alpha\",\"-webkit-mask-repeat:no-repeat\",\"mask-repeat:no-repeat\",\"-webkit-mask-size:contain\",\"mask-size:contain\",\"-webkit-mask-position:center\",\"mask-position:center\",\"border-radius:0\"]],[false,\"}\"],[false,{\".wp-block-image figure\":false},[\"margin:0\"]],[false,{\"ol.wp-block-latest-comments\":false},[\"margin-left:0\"]],[false,{\".wp-block-latest-comments .wp-block-latest-comments\":false},[\"padding-left:0\"]],[false,{\".wp-block-latest-comments__comment\":false},[\"line-height:1.1\",\"list-style:none\",\"margin-bottom:1em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment\":false},[\"min-height:2.25em\",\"list-style:none\"]],[false,{\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt\":false,\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta\":false},[\"margin-left:3.25em\"]],[false,{\".has-dates .wp-block-latest-comments__comment\":false,\".has-excerpts .wp-block-latest-comments__comment\":false},[\"line-height:1.5\"]],[false,{\".wp-block-latest-comments__comment-excerpt p\":false},[\"font-size:.875em\",\"line-height:1.8\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-latest-comments__comment-date\":false},[\"display:block\",\"font-size:.75em\"]],[false,{\".wp-block-latest-comments .avatar\":false,\".wp-block-latest-comments__comment-avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-latest-posts.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-latest-posts.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list\":false},[\"list-style:none\",\"padding-left:0\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list li\":false},[\"clear:both\"]],[false,{\".wp-block-latest-posts.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\"]],[false,{\".wp-block-latest-posts.is-grid li\":false},[\"margin:0 1.25em 1.25em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-latest-posts.columns-2 li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-latest-posts.columns-2 li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-3 li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-latest-posts.columns-3 li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-4 li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-latest-posts.columns-4 li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-latest-posts.columns-5 li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-6 li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-latest-posts.columns-6 li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".wp-block-latest-posts__post-author\":false,\".wp-block-latest-posts__post-date\":false},[\"display:block\",\"color:#555\",\"font-size:.8125em\"]],[false,{\".wp-block-latest-posts__post-excerpt\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-latest-posts__featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-latest-posts__featured-image amp-img\":false,\".wp-block-latest-posts__featured-image amp-anim\":false},[\"height:auto\",\"width:auto\",\"max-width:100%\"]],[false,{\".wp-block-latest-posts__featured-image.alignleft\":false},[\"margin-right:1em\"]],[false,{\".wp-block-latest-posts__featured-image.alignright\":false},[\"margin-left:1em\"]],[false,{\".wp-block-latest-posts__featured-image.aligncenter\":false},[\"margin-bottom:1em\",\"text-align:center\"]],[false,{\".block-editor-image-alignment-control__row .components-base-control__field\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\"]],[false,{\".block-editor-image-alignment-control__row .components-base-control__field .components-base-control__label\":false},[\"margin-bottom:0\"]],[false,{\"ol.has-background\":false,\"ul.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-media-text\":false},[\"direction:ltr\",\"display:grid\",\"grid-template-columns:50% 1fr\",\"grid-template-rows:auto\"]],[false,{\".wp-block-media-text.has-media-on-the-right\":false},[\"grid-template-columns:1fr 50%\"]],[false,{\".wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media\":false},[\"align-self:start\"]],[false,{\".wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media\":false,\".wp-block-media-text .wp-block-media-text__content\":false,\".wp-block-media-text .wp-block-media-text__media\":false},[\"align-self:center\"]],[false,{\".wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media\":false},[\"align-self:end\"]],[false,{\".wp-block-media-text .wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\",\"margin:0\"]],[false,{\".wp-block-media-text .wp-block-media-text__content\":false},[\"direction:ltr\",\"grid-column:2\",\"grid-row:1\",\"padding:0 8%\",\"word-break:break-word\"]],[false,{\".wp-block-media-text.has-media-on-the-right .wp-block-media-text__media\":false},[\"grid-column:2\",\"grid-row:1\"]],[false,{\".wp-block-media-text.has-media-on-the-right .wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"max-width:unset\",\"width:100%\",\"vertical-align:middle\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media\":false},[\"height:100%\",\"min-height:250px\",\"background-size:cover\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill .wp-block-media-text__media amp-anim\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-media-text.is-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"grid-template-columns:100%\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:2\"]],[false,\"}\"],[false,{\".wp-block-navigation\":false},[\"position:relative\"]],[false,{\".wp-block-navigation ul\":false,\".wp-block-navigation ul li\":false},[\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-navigation-link\":false,\".wp-block-navigation .wp-block-pages-list__item\":false},[\"display:flex\",\"align-items:center\",\"position:relative\"]],[false,{\".wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__container:empty\":false,\".wp-block-navigation .wp-block-pages-list__item .wp-block-navigation-link__container:empty\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__content\":false,\".wp-block-navigation .wp-block-pages-list__item__link\":false},[\"color:inherit\",\"display:block\"]],[false,{\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__container\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content:focus\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link:focus\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content:focus\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link:focus\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .wp-block-page-list__submenu-icon\":false},[\"height:inherit\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .wp-block-page-list__submenu-icon svg\":false},[\"stroke:currentColor\"]],[false,{\".wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__content.wp-block-navigation-link__content.wp-block-navigation-link__content\":false,\".wp-block-navigation .wp-block-pages-list__item .wp-block-pages-list__item__link\":false},[\"padding:0\"]],[false,{\".wp-block-navigation .has-child>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child>.wp-block-pages-list__item__link\":false},[\"margin-right:.5em\"]],[false,{\".wp-block-navigation .has-child .submenu-container\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container\":false},[\"background-color:inherit\",\"color:inherit\",\"position:absolute\",\"z-index:2\",\"flex-direction:column\",\"align-items:normal\",\"min-width:200px\",\"display:none\",\"opacity:0\",\"transition:opacity .1s linear\",\"visibility:hidden\"]],[false,{\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-pages-list__item__link\":false},[\"flex-grow:1\"]],[false,{\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-page-list__submenu-icon\":false},[\"padding-right:.5em\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation .has-child .submenu-container .submenu-container:before\":false,\".wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container:before\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container:before\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"right:100%\",\"height:100%\",\"display:block\",\"width:.5em\",\"background:transparent\"]],[false,{\".wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .has-child .submenu-container .wp-block-page-list__submenu-icon svg\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-page-list__submenu-icon svg\":false},[\"transform:rotate(-90deg)\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child:hover>.wp-block-navigation-link__container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:focus-within>.wp-block-navigation-link__container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:hover\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation .has-child:hover>.submenu-container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:focus-within\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation .has-child:focus-within>.submenu-container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container\":false},[\"left:auto\",\"right:0\"]],[false,{\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:auto\",\"right:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation .wp-block-navigation__container>.wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list>.wp-block-pages-list__item\":false},[\"margin:0 2em 0 0\"]],[false,{\".wp-block-navigation.wp-block-navigation .wp-block-navigation__container>.wp-block-navigation-link:last-child\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list:last-child\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list>.wp-block-pages-list__item:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .wp-block-navigation__container>.wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list>.wp-block-pages-list__item\":false},[\"margin:0 .5em 0 0\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .wp-block-navigation__container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list .wp-block-pages-list__item__link\":false},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container\":false},[\"left:-1em\",\"top:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-pages-list__item\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-pages-list__item\":false},[\"margin:0\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-pages-list__item__link\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-pages-list__item__link\":false},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:-1px\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:100%\",\"top:-1px\"]],[false,\"}\"],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container\":false},[\"left:0\",\"top:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:0\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:100%\",\"top:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .submenu-container\":false,\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-navigation-link__container\":false},[\"background-color:#fff\",\"color:#000\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation__container\":false},[\"align-items:center\",\"list-style:none\",\"margin:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation__container .is-responsive\":false},[\"display:none\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__container\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".is-vertical .wp-block-navigation__container\":false},[\"display:block\",\"flex-direction:column\",\"align-items:flex-start\"]],[false,\"}\"],[false,{\".items-justified-center .wp-block-navigation__container\":false},[\"justify-content:center\"]],[false,{\".items-justified-right .wp-block-navigation__container\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between .wp-block-navigation__container\":false},[\"justify-content:space-between\"]],[false,{\".is-vertical.items-justified-center>ul\":false},[\"align-items:center\"]],[false,{\".is-vertical.items-justified-right>ul\":false},[\"align-items:flex-end\"]],[false,{\".is-vertical.items-justified-right>ul .wp-block-navigation-link\":false,\".is-vertical.items-justified-right>ul .wp-block-pages-list__item\":false},[\"margin-right:0\",\"justify-content:flex-end\"]],[false,{\".wp-block-navigation__responsive-container\":false},[\"display:none\",\"position:fixed\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"z-index:1\",\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"display:flex\",\"flex-direction:column\",\"overflow:auto\",\"z-index:100000\",\"padding:24px\",\"background-color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container\":false},[\"display:flex\",\"flex-direction:column\",\"margin-left:auto\",\"margin-right:auto\",\"align-items:flex-start\",\"line-height:48px\",\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container .wp-block-page-list\":false},[\"flex-direction:column\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link .wp-block-navigation-link__container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item .submenu-container:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open)\":false},[\"display:flex\",\"flex-direction:row\",\"position:relative\",\"background-color:inherit\"]],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__responsive-container-close\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .submenu-container.submenu-container.submenu-container.submenu-container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link__container.wp-block-navigation-link__container.wp-block-navigation-link__container.wp-block-navigation-link__container\":false},[\"left:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:#fff\",\"color:#000\"]],[false,{\".wp-block-navigation__responsive-container-close\":false,\".wp-block-navigation__responsive-container-open\":false},[\"vertical-align:middle\",\"cursor:pointer\",\"color:currentColor\",\"background:transparent\",\"border:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container-close svg\":false,\".wp-block-navigation__responsive-container-open svg\":false},[\"fill:currentColor\",\"pointer-events:none\",\"display:block\",\"width:24px\",\"height:24px\"]],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:flex\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:none\"]],[false,\"}\"],[false,{\".items-justified-left .wp-block-navigation__responsive-container-open\":false},[\"margin-left:0\",\"margin-right:auto\"]],[false,{\".items-justified-center .wp-block-navigation__responsive-container-open\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".items-justified-right .wp-block-navigation__responsive-container-open\":false},[\"margin-left:auto\",\"margin-right:0\"]],[false,{\".wp-block-navigation__responsive-container-close\":false},[\"position:absolute\",\"top:24px\",\"right:24px\",\"z-index:2\"]],[false,{\".wp-block-navigation__responsive-close\":false},[\"width:100%\"]],[false,{\".is-menu-open .wp-block-navigation__responsive-close\":false,\".is-menu-open .wp-block-navigation__responsive-container-content\":false,\".is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"width:100%\",\"height:100%\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list__submenu-icon\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .has-child .submenu-container\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .has-child .wp-block-navigation-link__container\":false},[\"position:relative\",\"opacity:1\",\"visibility:visible\",\"padding:0 0 0 32px\",\"border:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item\":false},[\"flex-direction:column\",\"align-items:flex-start\"]],[false,{\"html.has-modal-open\":false},[\"overflow:hidden\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__label\":false},[\"word-break:normal\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-navigation .wp-block-home-link__content\":false},[\"color:inherit\",\"display:block\",\"padding:.5em 1em\"]],[false,{\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content:focus\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content:focus\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-home-link__container\":false},[\"background-color:#fff\",\"color:#000\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-home-link__container .wp-block-home-link__container\":false},[\"top:-1px\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false},[\"display:flex\",\"flex-wrap:wrap\",\"background-color:inherit\"]],[false,{\".wp-block-navigation .wp-block-pages-list__item\":false},[\"background-color:inherit\"]],[false,{\".wp-block-navigation .wp-block-page-list__submenu-icon\":false},[\"display:none\"]],[false,{\".is-open .wp-block-navigation__container .wp-block-page-list\":false,\".is-vertical .wp-block-navigation__container .wp-block-page-list\":false,\".wp-block-navigation .show-submenu-icons .wp-block-page-list__submenu-icon\":false},[\"display:block\"]],[false,\"@media (min-width:480px){\"],[false,{\".is-open .wp-block-navigation__container .wp-block-page-list\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".items-justified-space-between .wp-block-page-list\":false},[\"display:contents\"]],[false,{\".is-small-text\":false},[\"font-size:.875em\"]],[false,{\".is-regular-text\":false},[\"font-size:1em\"]],[false,{\".is-large-text\":false},[\"font-size:2.25em\"]],[false,{\".is-larger-text\":false},[\"font-size:3em\"]],[false,{\".has-drop-cap:not(:focus):first-letter\":false},[\"float:left\",\"font-size:8.4em\",\"line-height:.68\",\"font-weight:100\",\"margin:.05em .1em 0 0\",\"text-transform:uppercase\",\"font-style:normal\"]],[false,{\"p.has-drop-cap.has-background\":false},[\"overflow:hidden\"]],[false,{\"p.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\"p.has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-post-author\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-author__byline\":false},[\"width:100%\",\"margin-top:0\",\"margin-bottom:0\",\"font-size:.5em\"]],[false,{\".wp-block-post-author__avatar\":false},[\"margin-right:1em\"]],[false,{\".wp-block-post-author__bio\":false},[\"margin-bottom:.7em\",\"font-size:.7em\"]],[false,{\".wp-block-post-author__content\":false},[\"flex-grow:1\",\"flex-basis:0\"]],[false,{\".wp-block-post-author__name\":false},[\"font-weight:700\",\"margin:0\"]],[false,{\".wp-block-post-comments .commentlist\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .commentlist .comment\":false},[\"min-height:2.25em\",\"padding-left:3.25em\"]],[false,{\".wp-block-post-comments .commentlist .comment p\":false},[\"font-size:.875em\",\"line-height:1.8\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-post-comments .commentlist .children\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .comment-author\":false},[\"line-height:1.5\",\"margin-left:-3.25em\"]],[false,{\".wp-block-post-comments .comment-author .avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-post-comments .comment-author cite\":false},[\"font-style:normal\"]],[false,{\".wp-block-post-comments .comment-meta\":false},[\"line-height:1.5\",\"margin-left:-3.25em\"]],[false,{\".wp-block-post-comments .comment-body .commentmetadata\":false},[\"font-size:.75em\"]],[false,{\".wp-block-post-comments .comment-form-author label\":false,\".wp-block-post-comments .comment-form-comment label\":false,\".wp-block-post-comments .comment-form-email label\":false,\".wp-block-post-comments .comment-form-url label\":false},[\"display:block\"]],[false,{\".wp-block-post-comments .comment-form-comment textarea\":false},[\"box-sizing:border-box\",\"width:100%\"]],[false,{\".wp-block-post-comments .reply\":false},[\"font-size:.75em\",\"margin-bottom:1.4em\"]],[false,{\".wp-block-post-comments input\":false,\".wp-block-post-comments textarea\":false},[\"border:1px solid #949494\"]],[false,{\".wp-block-post-comments-form input[type=submit]\":false},[\"border:none\",\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"text-align:center\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-post-excerpt__more-link\":false,\".wp-block-post-title a\":false},[\"display:inline-block\"]],[false,{\".wp-block-preformatted\":false},[\"white-space:pre-wrap\"]],[false,{\".wp-block-preformatted.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-pullquote\":false},[\"margin:0 0 1em\",\"padding:3em 0\",\"text-align:center\"]],[false,{\".wp-block-pullquote.alignleft\":false,\".wp-block-pullquote.alignright\":false},[\"max-width:420px\"]],[false,{\".wp-block-pullquote.alignleft p\":false,\".wp-block-pullquote.alignright p\":false},[\"font-size:1.25em\"]],[false,{\".wp-block-pullquote p\":false},[\"font-size:1.75em\",\"line-height:1.6\"]],[false,{\".wp-block-pullquote cite\":false,\".wp-block-pullquote footer\":false},[\"position:relative\"]],[false,{\".wp-block-pullquote .has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote:not(.is-style-solid-color)\":false},[\"background:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color\":false},[\"border:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote\":false},[\"margin-left:auto\",\"margin-right:auto\",\"text-align:left\",\"max-width:60%\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote p\":false},[\"margin-top:0\",\"margin-bottom:0\",\"font-size:2em\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote cite\":false},[\"text-transform:none\",\"font-style:normal\"]],[false,{\".wp-block-pullquote cite\":false},[\"color:inherit\"]],[false,{\".wp-block-post-template\":false,\".wp-block-query-loop\":false},[\"max-width:100%\",\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-post-template li\":false,\".wp-block-query-loop li\":false},[\"clear:both\"]],[false,{\".wp-block-post-template.is-flex-container\":false,\".wp-block-query-loop.is-flex-container\":false},[\"flex-direction:row\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-template.is-flex-container li\":false,\".wp-block-query-loop.is-flex-container li\":false},[\"margin:0 0 1.25em\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-post-template.is-flex-container li\":false,\".wp-block-query-loop.is-flex-container li\":false},[\"margin-right:1.25em\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li:nth-child(2n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li:nth-child(3n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li:nth-child(4n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li:nth-child(5n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li:nth-child(6n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".wp-block-query-pagination\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\"]],[false,{\".wp-block-query-pagination>.wp-block-query-pagination-next\":false,\".wp-block-query-pagination>.wp-block-query-pagination-numbers\":false,\".wp-block-query-pagination>.wp-block-query-pagination-previous\":false},[\"display:inline-block\",\"margin-right:.5em\",\"margin-bottom:.5em\"]],[false,{\".wp-block-query-pagination>.wp-block-query-pagination-next:last-child\":false,\".wp-block-query-pagination>.wp-block-query-pagination-numbers:last-child\":false,\".wp-block-query-pagination>.wp-block-query-pagination-previous:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-quote.is-large\":false,\".wp-block-quote.is-style-large\":false},[\"margin-bottom:1em\",\"padding:0 1em\"]],[false,{\".wp-block-quote.is-large p\":false,\".wp-block-quote.is-style-large p\":false},[\"font-size:1.5em\",\"font-style:italic\",\"line-height:1.6\"]],[false,{\".wp-block-quote.is-large cite\":false,\".wp-block-quote.is-large footer\":false,\".wp-block-quote.is-style-large cite\":false,\".wp-block-quote.is-style-large footer\":false},[\"font-size:1.125em\",\"text-align:right\"]],[false,{\".wp-block-rss.wp-block-rss\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-rss.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-rss.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-rss.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\",\"list-style:none\"]],[false,{\".wp-block-rss.is-grid li\":false},[\"margin:0 1em 1em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-rss.columns-2 li\":false},[\"width:calc(50% - 1em)\"]],[false,{\".wp-block-rss.columns-3 li\":false},[\"width:calc(33.33333% - 1em)\"]],[false,{\".wp-block-rss.columns-4 li\":false},[\"width:calc(25% - 1em)\"]],[false,{\".wp-block-rss.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-rss.columns-6 li\":false},[\"width:calc(16.66667% - 1em)\"]],[false,\"}\"],[false,{\".wp-block-rss__item-author\":false,\".wp-block-rss__item-publish-date\":false},[\"display:block\",\"color:#555\",\"font-size:.8125em\"]],[false,{\".wp-block-search .wp-block-search__button\":false},[\"background:#f7f7f7\",\"border:1px solid #ccc\",\"padding:.375em .625em\",\"color:#32373c\",\"margin-left:.625em\",\"word-break:normal\"]],[false,{\".wp-block-search .wp-block-search__button.has-icon\":false},[\"line-height:0\"]],[false,{\".wp-block-search .wp-block-search__button svg\":false},[\"min-width:1.5em\",\"min-height:1.5em\"]],[false,{\".wp-block-search .wp-block-search__inside-wrapper\":false},[\"display:flex\",\"flex:auto\",\"flex-wrap:nowrap\",\"max-width:100%\"]],[false,{\".wp-block-search .wp-block-search__label\":false},[\"width:100%\"]],[false,{\".wp-block-search .wp-block-search__input\":false},[\"flex-grow:1\",\"min-width:3em\",\"border:1px solid #949494\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__button\":false},[\"margin-left:0\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper\":false},[\"padding:4px\",\"border:1px solid #949494\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input\":false},[\"border-radius:0\",\"border:none\",\"padding:0 0 0 .25em\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus\":false},[\"outline:none\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button\":false},[\"padding:.125em .5em\"]],[false,{\".wp-block-search.aligncenter .wp-block-search__inside-wrapper\":false},[\"margin:auto\"]],[false,{\".wp-block-separator\":false},[\"border-top:1px solid\",\"border-bottom:1px solid\"]],[false,{\".wp-block-separator.is-style-wide\":false},[\"border-bottom-width:1px\"]],[false,{\".wp-block-separator.is-style-dots\":false},[\"border:none\",\"text-align:center\",\"width:none\",\"line-height:1\",\"height:auto\"]],[false,{\".wp-block-separator.is-style-dots:not(#_#_#_#_#_#_#_)\":false},[\"background:none\"]],[false,{\".wp-block-separator.is-style-dots:before\":false},[\"content:\\\"\\u00b7\\u00b7\\u00b7\\\"\",\"color:currentColor\",\"font-size:1.5em\",\"letter-spacing:2em\",\"padding-left:2em\",\"font-family:serif\"]],[false,{\".wp-block-site-logo\":false},[\"line-height:0\"]],[false,{\".wp-block-site-logo a\":false},[\"display:inline-block\"]],[false,{\".wp-block-site-logo.is-default-size amp-img\":false,\".wp-block-site-logo.is-default-size amp-anim\":false},[\"width:120px\",\"height:auto\"]],[false,{\".wp-block-site-logo .aligncenter\":false},[\"display:table\"]],[false,{\".wp-block-site-logo.is-style-rounded amp-img\":false,\".wp-block-site-logo.is-style-rounded amp-anim\":false},[\"border-radius:9999px\"]],[false,{\".wp-block-social-links\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding-left:0\",\"padding-right:0\",\"text-indent:0\",\"margin-left:0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false,\".wp-block-social-links .wp-social-link a:hover\":false},[\"text-decoration:none\",\"border-bottom:0\",\"box-shadow:none\"]],[false,{\".wp-block-social-links .wp-social-link.wp-social-link.wp-social-link\":false},[\"margin:4px 8px 4px 0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false},[\"padding:.25em\"]],[false,{\".wp-block-social-links .wp-social-link svg\":false},[\"width:1em\",\"height:1em\"]],[false,{\".wp-block-social-links.has-small-icon-size\":false},[\"font-size:16px\"]],[false,{\".wp-block-social-links\":false,\".wp-block-social-links.has-normal-icon-size\":false},[\"font-size:24px\"]],[false,{\".wp-block-social-links.has-large-icon-size\":false},[\"font-size:36px\"]],[false,{\".wp-block-social-links.has-huge-icon-size\":false},[\"font-size:48px\"]],[false,{\".wp-block-social-links.aligncenter\":false},[\"justify-content:center\",\"display:flex\"]],[false,{\".wp-block-social-links.alignright\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-social-link\":false},[\"display:block\",\"border-radius:9999px\",\"transition:transform .1s ease\",\"height:auto\"]],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-social-link\":false},[\"transition-duration:0s\",\"transition-delay:0s\"]],[false,\"}\"],[false,{\".wp-block-social-link a\":false},[\"display:block\",\"line-height:0\",\"transition:transform .1s ease\"]],[false,{\".wp-block-social-link:hover\":false},[\"transform:scale(1.1)\"]],[false,{\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:active\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:hover\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:visited\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg\":false},[\"color:currentColor\",\"fill:currentColor\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link\":false},[\"background-color:#f0f0f0\",\"color:#444\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon\":false},[\"background-color:#f90\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp\":false},[\"background-color:#1ea0c3\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance\":false},[\"background-color:#0757fe\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen\":false},[\"background-color:#1e1f26\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart\":false},[\"background-color:#02e49b\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble\":false},[\"background-color:#e94c89\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox\":false},[\"background-color:#4280ff\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy\":false},[\"background-color:#f45800\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook\":false},[\"background-color:#1778f2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr\":false},[\"background-color:#0461dd\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare\":false},[\"background-color:#e65678\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github\":false},[\"background-color:#24292d\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads\":false},[\"background-color:#eceadd\",\"color:#382110\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google\":false},[\"background-color:#ea4434\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram\":false},[\"background-color:#f00075\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm\":false},[\"background-color:#e21b24\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin\":false},[\"background-color:#0d66c2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon\":false},[\"background-color:#3288d4\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium\":false},[\"background-color:#02ab6c\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup\":false},[\"background-color:#f6405f\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon\":false},[\"background-color:#ff424d\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest\":false},[\"background-color:#e60122\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket\":false},[\"background-color:#ef4155\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit\":false},[\"background-color:#fe4500\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype\":false},[\"background-color:#0478d7\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat\":false},[\"background-color:#fefc00\",\"color:#fff\",\"stroke:#000\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud\":false},[\"background-color:#ff5600\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify\":false},[\"background-color:#1bd760\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram\":false},[\"background-color:#2aabee\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr\":false},[\"background-color:#011835\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch\":false},[\"background-color:#6440a4\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter\":false},[\"background-color:#1da1f2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo\":false},[\"background-color:#1eb7ea\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk\":false},[\"background-color:#4680c2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress\":false},[\"background-color:#3499cd\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp\":false},[\"background-color:#d32422\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube\":false},[\"background-color:red\",\"color:#fff\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link\":false},[\"background:none\",\"padding:4px\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-amazon\":false},[\"color:#f90\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp\":false},[\"color:#1ea0c3\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-behance\":false},[\"color:#0757fe\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-codepen\":false},[\"color:#1e1f26\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-deviantart\":false},[\"color:#02e49b\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-dribbble\":false},[\"color:#e94c89\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-dropbox\":false},[\"color:#4280ff\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-etsy\":false},[\"color:#f45800\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-facebook\":false},[\"color:#1778f2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx\":false},[\"color:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-flickr\":false},[\"color:#0461dd\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-foursquare\":false},[\"color:#e65678\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-github\":false},[\"color:#24292d\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-goodreads\":false},[\"color:#382110\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-google\":false},[\"color:#ea4434\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-instagram\":false},[\"color:#f00075\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-lastfm\":false},[\"color:#e21b24\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-linkedin\":false},[\"color:#0d66c2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-mastodon\":false},[\"color:#3288d4\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-medium\":false},[\"color:#02ab6c\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-meetup\":false},[\"color:#f6405f\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-patreon\":false},[\"color:#ff424d\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-pinterest\":false},[\"color:#e60122\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-pocket\":false},[\"color:#ef4155\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-reddit\":false},[\"color:#fe4500\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-skype\":false},[\"color:#0478d7\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-snapchat\":false},[\"color:#fff\",\"stroke:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud\":false},[\"color:#ff5600\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-spotify\":false},[\"color:#1bd760\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-telegram\":false},[\"color:#2aabee\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-tiktok\":false},[\"color:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-tumblr\":false},[\"color:#011835\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-twitch\":false},[\"color:#6440a4\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-twitter\":false},[\"color:#1da1f2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-vimeo\":false},[\"color:#1eb7ea\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-vk\":false},[\"color:#4680c2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-wordpress\":false},[\"color:#3499cd\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-yelp\":false},[\"color:#d32422\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-youtube\":false},[\"color:red\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link\":false},[\"width:auto\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link a\":false},[\"padding-left:.66667em\",\"padding-right:.66667em\"]],[false,{\".wp-block-spacer\":false},[\"clear:both\"]],[false,{\".wp-block-tag-cloud.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-tag-cloud.alignfull\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".wp-block-table\":false},[\"margin:0 0 1em\",\"overflow-x:auto\"]],[false,{\".wp-block-table table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout\":false},[\"table-layout:fixed\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout td\":false,\".wp-block-table .has-fixed-layout th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table.aligncenter\":false,\".wp-block-table.alignleft\":false,\".wp-block-table.alignright\":false},[\"display:table\",\"width:auto\"]],[false,{\".wp-block-table.aligncenter td\":false,\".wp-block-table.aligncenter th\":false,\".wp-block-table.alignleft td\":false,\".wp-block-table.alignleft th\":false,\".wp-block-table.alignright td\":false,\".wp-block-table.alignright th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table .has-subtle-light-gray-background-color\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table .has-subtle-pale-green-background-color\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table .has-subtle-pale-blue-background-color\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table .has-subtle-pale-pink-background-color\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes\":false},[\"border-spacing:0\",\"border-collapse:inherit\",\"background-color:transparent\",\"border-bottom:1px solid #f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes tbody tr:nth-child(odd)\":false},[\"background-color:#f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes td\":false,\".wp-block-table.is-style-stripes th\":false},[\"border-color:transparent\"]],[false,{\".wp-block-table .has-border-color>*\":false,\".wp-block-table .has-border-color td\":false,\".wp-block-table .has-border-color th\":false,\".wp-block-table .has-border-color tr\":false},[\"border-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-style]>*\":false,\".wp-block-table table[data-amp-original-style*=border-style] td\":false,\".wp-block-table table[data-amp-original-style*=border-style] th\":false,\".wp-block-table table[data-amp-original-style*=border-style] tr\":false},[\"border-style:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-width]>*\":false,\".wp-block-table table[data-amp-original-style*=border-width] td\":false,\".wp-block-table table[data-amp-original-style*=border-width] th\":false,\".wp-block-table table[data-amp-original-style*=border-width] tr\":false},[\"border-width:inherit\"]],[false,{\".wp-block-text-columns\":false,\".wp-block-text-columns.aligncenter\":false},[\"display:flex\"]],[false,{\".wp-block-text-columns .wp-block-column\":false},[\"margin:0 1em\",\"padding:0\"]],[false,{\".wp-block-text-columns .wp-block-column:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-text-columns .wp-block-column:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-text-columns.columns-2 .wp-block-column\":false},[\"width:50%\"]],[false,{\".wp-block-text-columns.columns-3 .wp-block-column\":false},[\"width:33.33333%\"]],[false,{\".wp-block-text-columns.columns-4 .wp-block-column\":false},[\"width:25%\"]],[false,{\"pre.wp-block-verse\":false},[\"font-family:inherit\",\"overflow:auto\",\"white-space:pre-wrap\"]],[false,{\".wp-block-video\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-video [poster]\":false},[\"-o-object-fit:cover\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".wp-block-video.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-video figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-post-featured-image\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".wp-block-post-featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-post-featured-image amp-img\":false,\".wp-block-post-featured-image amp-anim\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".wp-block-post-featured-image.alignfull amp-img\":false,\".wp-block-post-featured-image.alignfull amp-anim\":false,\".wp-block-post-featured-image.alignwide amp-img\":false,\".wp-block-post-featured-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\":root .has-pale-pink-background-color\":false},[\"background-color:#f78da7\"]],[false,{\":root .has-vivid-red-background-color\":false},[\"background-color:#cf2e2e\"]],[false,{\":root .has-luminous-vivid-orange-background-color\":false},[\"background-color:#ff6900\"]],[false,{\":root .has-luminous-vivid-amber-background-color\":false},[\"background-color:#fcb900\"]],[false,{\":root .has-light-green-cyan-background-color\":false},[\"background-color:#7bdcb5\"]],[false,{\":root .has-vivid-green-cyan-background-color\":false},[\"background-color:#00d084\"]],[false,{\":root .has-pale-cyan-blue-background-color\":false},[\"background-color:#8ed1fc\"]],[false,{\":root .has-vivid-cyan-blue-background-color\":false},[\"background-color:#0693e3\"]],[false,{\":root .has-vivid-purple-background-color\":false},[\"background-color:#9b51e0\"]],[false,{\":root .has-white-background-color\":false},[\"background-color:#fff\"]],[false,{\":root .has-very-light-gray-background-color\":false},[\"background-color:#eee\"]],[false,{\":root .has-cyan-bluish-gray-background-color\":false},[\"background-color:#abb8c3\"]],[false,{\":root .has-very-dark-gray-background-color\":false},[\"background-color:#313131\"]],[false,{\":root .has-black-background-color\":false},[\"background-color:#000\"]],[false,{\":root .has-pale-pink-color\":false},[\"color:#f78da7\"]],[false,{\":root .has-vivid-red-color\":false},[\"color:#cf2e2e\"]],[false,{\":root .has-luminous-vivid-orange-color\":false},[\"color:#ff6900\"]],[false,{\":root .has-luminous-vivid-amber-color\":false},[\"color:#fcb900\"]],[false,{\":root .has-light-green-cyan-color\":false},[\"color:#7bdcb5\"]],[false,{\":root .has-vivid-green-cyan-color\":false},[\"color:#00d084\"]],[false,{\":root .has-pale-cyan-blue-color\":false},[\"color:#8ed1fc\"]],[false,{\":root .has-vivid-cyan-blue-color\":false},[\"color:#0693e3\"]],[false,{\":root .has-vivid-purple-color\":false},[\"color:#9b51e0\"]],[false,{\":root .has-white-color\":false},[\"color:#fff\"]],[false,{\":root .has-very-light-gray-color\":false},[\"color:#eee\"]],[false,{\":root .has-cyan-bluish-gray-color\":false},[\"color:#abb8c3\"]],[false,{\":root .has-very-dark-gray-color\":false},[\"color:#313131\"]],[false,{\":root .has-black-color\":false},[\"color:#000\"]],[false,{\":root .has-vivid-cyan-blue-to-vivid-purple-gradient-background\":false},[\"background:linear-gradient(135deg,#0693e3,#9b51e0)\"]],[false,{\":root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background\":false},[\"background:linear-gradient(135deg,#00d084,#0693e3)\"]],[false,{\":root .has-light-green-cyan-to-vivid-green-cyan-gradient-background\":false},[\"background:linear-gradient(135deg,#7adcb4,#00d082)\"]],[false,{\":root .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background\":false},[\"background:linear-gradient(135deg,#fcb900,#ff6900)\"]],[false,{\":root .has-luminous-vivid-orange-to-vivid-red-gradient-background\":false},[\"background:linear-gradient(135deg,#ff6900,#cf2e2e)\"]],[false,{\":root .has-very-light-gray-to-cyan-bluish-gray-gradient-background\":false},[\"background:linear-gradient(135deg,#eee,#a9b8c3)\"]],[false,{\":root .has-cool-to-warm-spectrum-gradient-background\":false},[\"background:linear-gradient(135deg,#4aeadc,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c)\"]],[false,{\":root .has-blush-light-purple-gradient-background\":false},[\"background:linear-gradient(135deg,#ffceec,#9896f0)\"]],[false,{\":root .has-blush-bordeaux-gradient-background\":false},[\"background:linear-gradient(135deg,#fecda5,#fe2d2d 50%,#6b003e)\"]],[false,{\":root .has-purple-crush-gradient-background\":false},[\"background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)\"]],[false,{\":root .has-luminous-dusk-gradient-background\":false},[\"background:linear-gradient(135deg,#ffcb70,#c751c0 50%,#4158d0)\"]],[false,{\":root .has-hazy-dawn-gradient-background\":false},[\"background:linear-gradient(135deg,#faaca8,#dad0ec)\"]],[false,{\":root .has-pale-ocean-gradient-background\":false},[\"background:linear-gradient(135deg,#fff5cb,#b6e3d4 50%,#33a7b5)\"]],[false,{\":root .has-electric-grass-gradient-background\":false},[\"background:linear-gradient(135deg,#caf880,#71ce7e)\"]],[false,{\":root .has-subdued-olive-gradient-background\":false},[\"background:linear-gradient(135deg,#fafae1,#67a671)\"]],[false,{\":root .has-atomic-cream-gradient-background\":false},[\"background:linear-gradient(135deg,#fdd79a,#004a59)\"]],[false,{\":root .has-nightshade-gradient-background\":false},[\"background:linear-gradient(135deg,#330968,#31cdcf)\"]],[false,{\":root .has-midnight-gradient-background\":false},[\"background:linear-gradient(135deg,#020381,#2874fc)\"]],[false,{\".has-small-font-size\":false},[\"font-size:.8125em\"]],[false,{\".has-normal-font-size\":false,\".has-regular-font-size\":false},[\"font-size:1em\"]],[false,{\".has-medium-font-size\":false},[\"font-size:1.25em\"]],[false,{\".has-large-font-size\":false},[\"font-size:2.25em\"]],[false,{\".has-huge-font-size\":false,\".has-larger-font-size\":false},[\"font-size:2.625em\"]],[false,{\".has-text-align-center\":false},[\"text-align:center\"]],[false,{\".has-text-align-left\":false},[\"text-align:left\"]],[false,{\".has-text-align-right\":false},[\"text-align:right\"]],[false,{\"#end-resizable-editor-section\":false},[\"display:none\"]],[false,{\".aligncenter\":false},[\"clear:both\"]],[false,{\".items-justified-left\":false},[\"justify-content:flex-start\"]],[false,{\".items-justified-center\":false},[\"justify-content:center\"]],[false,{\".items-justified-right\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between\":false},[\"justify-content:space-between\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip:rect(1px,1px,1px,1px)\",\"-webkit-clip-path:inset(50%)\",\"clip-path:inset(50%)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#ddd\",\"-webkit-clip-path:none\",\"clip-path:none\",\"color:#444\",\"display:block\",\"font-size:1em\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[false,{\".screen-reader-text:focus:not(#_#_#_#_#_#_#_)\":false},[\"clip:auto\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2731,\"final_size\":790,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"contact-form-7-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/css\\/styles.css?ver=5.5.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"212b20af9d955c5d566d0549c68d0998\",\"parse_time\":0.03908491134643555,\"shake_time\":0.07717585563659668,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".wpcf7 .screen-reader-response\":true},[\"position:absolute\",\"overflow:hidden\",\"clip:rect(1px,1px,1px,1px)\",\"clip-path:inset(50%)\",\"height:1px\",\"width:1px\",\"margin:-1px\",\"padding:0\",\"border:0\"]],[true,{\".wpcf7 .screen-reader-response:not(#_#_#_#_#_#_#_)\":true},[\"word-wrap:normal\"]],[true,{\".wpcf7 form .wpcf7-response-output\":true},[\"margin:2em .5em 1em\",\"padding:.2em 1em\",\"border:2px solid #00a0d2\"]],[true,{\".wpcf7 form.init .wpcf7-response-output\":true,\".wpcf7 form.resetting .wpcf7-response-output\":false,\".wpcf7 form.submitting .wpcf7-response-output\":false},[\"display:none\"]],[false,{\".wpcf7 form.sent .wpcf7-response-output\":false},[\"border-color:#46b450\"]],[false,{\".wpcf7 form.failed .wpcf7-response-output\":false,\".wpcf7 form.aborted .wpcf7-response-output\":false},[\"border-color:#dc3232\"]],[false,{\".wpcf7 form.spam .wpcf7-response-output\":false},[\"border-color:#f56e28\"]],[false,{\".wpcf7 form.invalid .wpcf7-response-output\":false,\".wpcf7 form.unaccepted .wpcf7-response-output\":false,\".wpcf7 form.payment-required .wpcf7-response-output\":false},[\"border-color:#ffb900\"]],[true,{\".wpcf7-form-control-wrap\":true},[\"position:relative\"]],[false,{\".wpcf7-not-valid-tip\":false},[\"color:#dc3232\",\"font-size:1em\",\"font-weight:normal\",\"display:block\"]],[false,{\".use-floating-validation-tip .wpcf7-not-valid-tip\":false},[\"position:relative\",\"top:-2ex\",\"left:1em\",\"z-index:100\",\"border:1px solid #dc3232\",\"background:#fff\",\"padding:.2em .8em\",\"width:24em\"]],[false,{\".wpcf7-list-item\":false},[\"display:inline-block\",\"margin:0 0 0 1em\"]],[false,{\".wpcf7-list-item-label::before\":false,\".wpcf7-list-item-label::after\":false},[\"content:\\\" \\\"\"]],[false,{\".wpcf7-spinner\":false},[\"visibility:hidden\",\"display:inline-block\",\"background-color:#23282d\",\"opacity:.75\",\"width:24px\",\"height:24px\",\"border:none\",\"border-radius:100%\",\"padding:0\",\"margin:0 24px\",\"position:relative\"]],[false,{\"form.submitting .wpcf7-spinner\":false},[\"visibility:visible\"]],[false,{\".wpcf7-spinner::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"background-color:#fbfbfc\",\"top:4px\",\"left:4px\",\"width:6px\",\"height:6px\",\"border:none\",\"border-radius:100%\",\"transform-origin:8px 8px\",\"animation-name:spin\",\"animation-duration:1000ms\",\"animation-timing-function:linear\",\"animation-iteration-count:infinite\"]],[false,\"@media (prefers-reduced-motion: reduce){\"],[false,{\".wpcf7-spinner::before\":false},[\"animation-name:blink\",\"animation-duration:2000ms\"]],[false,\"}\"],[true,\"@keyframes spin{\"],[true,\"from{transform:rotate(0deg)}\"],[true,\"to{transform:rotate(360deg)}\"],[true,\"}@keyframes blink{\"],[true,\"from{opacity:0}\"],[true,\"50%{opacity:1}\"],[true,\"to{opacity:0}\"],[true,\"}\"],[true,{\".wpcf7 input[type=\\\"file\\\"]\":true},[\"cursor:pointer\"]],[true,{\".wpcf7 input[type=\\\"file\\\"]:disabled\":true},[\"cursor:default\"]],[true,{\".wpcf7 .wpcf7-submit:disabled\":true},[\"cursor:not-allowed\"]],[true,{\".wpcf7 input[type=\\\"url\\\"]\":true,\".wpcf7 input[type=\\\"email\\\"]\":true,\".wpcf7 input[type=\\\"tel\\\"]\":true},[\"direction:ltr\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":3027,\"final_size\":290,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"emcs_calendly_css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/embed-calendly-scheduling\\/assets\\/css\\/widget.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"embed-calendly-scheduling\",\"file\":\"embed-calendly-scheduling.php\",\"line\":39,\"function\":\"emcs_calendly_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"99d6ad74e1d82f040a9c3a773af31054\",\"parse_time\":0.053494930267333984,\"shake_time\":4.887580871582031e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".calendly-inline-widget\":false,\".calendly-inline-widget *\":false,\".calendly-badge-widget\":false,\".calendly-badge-widget *\":false,\".calendly-overlay\":false,\".calendly-overlay *\":false},[\"font-size:16px\",\"line-height:1.2em\"]],[false,{\".calendly-inline-widget amp-iframe\":false,\".calendly-badge-widget amp-iframe\":false,\".calendly-overlay amp-iframe\":false},[\"display:inline\",\"width:100%\",\"height:100%\"]],[false,{\".calendly-popup-content\":false},[\"position:relative\"]],[false,{\".calendly-popup-content.calendly-mobile\":false},[\"-webkit-overflow-scrolling:touch\",\"overflow-y:auto\"]],[false,{\".calendly-overlay\":false},[\"position:fixed\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"overflow:hidden\",\"z-index:9999\",\"background-color:#a5a5a5\",\"background-color:rgba(31,31,31,.4)\"]],[false,{\".calendly-overlay .calendly-close-overlay\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\"]],[false,{\".calendly-overlay .calendly-popup\":false},[\"box-sizing:border-box\",\"position:absolute\",\"top:50%\",\"left:50%\",\"-webkit-transform:translateY(-50%) translateX(-50%)\",\"transform:translateY(-50%) translateX(-50%)\",\"width:80%\",\"min-width:900px\",\"max-width:1000px\",\"height:90%\",\"max-height:680px\"]],[false,\"@media (max-width:975px){\"],[false,{\".calendly-overlay .calendly-popup\":false},[\"position:fixed\",\"top:50px\",\"left:0\",\"right:0\",\"bottom:0\",\"-webkit-transform:none\",\"transform:none\",\"width:100%\",\"height:auto\",\"min-width:0\",\"max-height:none\"]],[false,\"}\"],[false,{\".calendly-overlay .calendly-popup .calendly-popup-content\":false},[\"height:100%\"]],[false,{\".calendly-overlay .calendly-popup-close\":false},[\"position:absolute\",\"top:25px\",\"right:25px\",\"color:#fff\",\"width:19px\",\"height:19px\",\"cursor:pointer\",\"background:url(\\\"\\/assets\\/external\\/close-icon.svg\\\") no-repeat\",\"background-size:contain\"]],[false,\"@media (max-width:975px){\"],[false,{\".calendly-overlay .calendly-popup-close\":false},[\"top:15px\",\"right:15px\"]],[false,\"}\"],[false,{\".calendly-badge-widget\":false},[\"position:fixed\",\"right:20px\",\"bottom:15px\",\"z-index:9998\"]],[false,{\".calendly-badge-widget .calendly-badge-content\":false},[\"display:table-cell\",\"width:auto\",\"height:45px\",\"padding:0 30px\",\"border-radius:25px\",\"box-shadow:rgba(0,0,0,.25) 0 2px 5px\",\"font-family:sans-serif\",\"text-align:center\",\"vertical-align:middle\",\"font-weight:700\",\"font-size:14px\",\"color:#fff\",\"cursor:pointer\"]],[false,{\".calendly-badge-widget .calendly-badge-content.calendly-white\":false},[\"color:#666a73\"]],[false,{\".calendly-badge-widget .calendly-badge-content span\":false},[\"display:block\",\"font-size:12px\"]],[false,{\".calendly-spinner\":false},[\"position:absolute\",\"top:50%\",\"left:0\",\"right:0\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\",\"text-align:center\",\"z-index:-1\"]],[false,{\".calendly-spinner>div\":false},[\"display:inline-block\",\"width:18px\",\"height:18px\",\"background-color:#e1e1e1\",\"border-radius:50%\",\"vertical-align:middle\",\"-webkit-animation:calendly-bouncedelay 1.4s infinite ease-in-out\",\"animation:calendly-bouncedelay 1.4s infinite ease-in-out\",\"-webkit-animation-fill-mode:both\",\"animation-fill-mode:both\"]],[false,{\".calendly-spinner .calendly-bounce1\":false},[\"-webkit-animation-delay:-.32s\",\"animation-delay:-.32s\"]],[false,{\".calendly-spinner .calendly-bounce2\":false},[\"-webkit-animation-delay:-.16s\",\"animation-delay:-.16s\"]],[true,\"@-webkit-keyframes calendly-bouncedelay{\"],[true,\"0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}\"],[true,\"40%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes calendly-bouncedelay{\"],[true,\"0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}\"],[true,\"40%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,\"@media only screen and (max-device-width :768px){\"],[false,{\"#calendly-inline-widget:not(#_#_#_#_#_#_#_)\":false},[\"min-width:auto\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":89113,\"final_size\":5273,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"social_warfare-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/css\\/style.min.css?ver=4.3.0\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Script.php\",\"line\":94,\"function\":\"SWP_Script::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"e220b783a5a07d3a59270f77ece9859a\",\"parse_time\":1.1888790130615234,\"shake_time\":0.07160019874572754,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".swp_social_panel.swp_default_full_color a\":true,\"html body .swp_social_panel.swp_individual_full_color .nc_tweetContainer:hover a\":true,\"body .swp_social_panel.swp_other_full_color:hover a\":true},[\"color:white\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_blogger\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_blogger:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_blogger:not(:hover)\":false},[\"border:1px solid #ff5722\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_blogger\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_blogger:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_blogger\":false},[\"background:#ff5722\",\"border:1px solid #ee3900\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_blogger\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_blogger:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_blogger\":false},[\"border-bottom:3px solid #ee3900\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_blogger a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_blogger a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_blogger a\":false},[\"color:#ff5722\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_blogger\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_blogger:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_blogger\":false},[\"background:transparent\",\"border:1px solid #ff5722\"]],[false,{\".swp-blogger\":false},[\"background:#ff5722\",\"border-color:#ee3900\"]],[false,{\".swp-blogger a\":false},[\"color:#ff5722\"]],[false,{\".swp-blogger a:hover\":false},[\"background:#ee3900\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_buffer\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_buffer:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_buffer:not(:hover)\":false},[\"border:1px solid #323b43\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_buffer\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_buffer:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_buffer\":false},[\"background:#323b43\",\"border:1px solid #1c2126\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_buffer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_buffer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_buffer\":false},[\"border-bottom:3px solid #1c2126\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_buffer a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_buffer a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_buffer a\":false},[\"color:#323b43\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_buffer\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_buffer:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_buffer\":false},[\"background:transparent\",\"border:1px solid #323b43\"]],[false,{\".swp-buffer\":false},[\"background:#323b43\",\"border-color:#1c2126\"]],[false,{\".swp-buffer a\":false},[\"color:#323b43\"]],[false,{\".swp-buffer a:hover\":false},[\"background:#1c2126\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_ello\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_ello:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_ello:not(:hover)\":false},[\"border:1px solid #000\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_ello\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_ello:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_ello\":false},[\"background:#000\",\"border:1px solid #000\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_ello\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_ello:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_ello\":false},[\"border-bottom:3px solid #000\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_ello a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_ello a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_ello a\":false},[\"color:#000\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_ello\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_ello:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_ello\":false},[\"background:transparent\",\"border:1px solid #000\"]],[false,{\".swp-ello\":false},[\"background:#000\",\"border-color:#000\"]],[false,{\".swp-ello a\":false},[\"color:#000\"]],[false,{\".swp-ello a:hover\":false},[\"background:#000\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_email\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_email:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_email:not(:hover)\":false},[\"border:1px solid #6bcce9\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_email\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_email:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_email\":false},[\"background:#6bcce9\",\"border:1px solid #3fbde2\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_email\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_email:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_email\":false},[\"border-bottom:3px solid #3fbde2\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_email a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_email a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_email a\":false},[\"color:#6bcce9\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_email\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_email:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_email\":false},[\"background:transparent\",\"border:1px solid #6bcce9\"]],[false,{\".swp-email\":false},[\"background:#6bcce9\",\"border-color:#3fbde2\"]],[false,{\".swp-email a\":false},[\"color:#6bcce9\"]],[false,{\".swp-email a:hover\":false},[\"background:#3fbde2\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_evernote\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_evernote:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_evernote:not(:hover)\":false},[\"border:1px solid #2dbe60\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_evernote\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_evernote:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_evernote\":false},[\"background:#2dbe60\",\"border:1px solid #23954b\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_evernote\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_evernote:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_evernote\":false},[\"border-bottom:3px solid #23954b\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_evernote a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_evernote a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_evernote a\":false},[\"color:#2dbe60\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_evernote\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_evernote:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_evernote\":false},[\"background:transparent\",\"border:1px solid #2dbe60\"]],[false,{\".swp-evernote\":false},[\"background:#2dbe60\",\"border-color:#23954b\"]],[false,{\".swp-evernote a\":false},[\"color:#2dbe60\"]],[false,{\".swp-evernote a:hover\":false},[\"background:#23954b\",\"color:#fff\"]],[true,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_facebook\":true,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_facebook:hover\":true,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_facebook:not(:hover)\":true},[\"border:1px solid #1877f2\"]],[true,{\".swp_social_panel.swp_default_full_color .swp_facebook\":true,\"html body .swp_social_panel.swp_individual_full_color .swp_facebook:hover\":true,\"body .swp_social_panel.swp_other_full_color:hover .swp_facebook\":true},[\"background:#1877f2\",\"border:1px solid #0b5fcc\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_facebook\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_facebook:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_facebook\":false},[\"border-bottom:3px solid #0b5fcc\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_facebook a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_facebook a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_facebook a\":false},[\"color:#1877f2\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_facebook\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_facebook:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_facebook\":false},[\"background:transparent\",\"border:1px solid #1877f2\"]],[false,{\".swp-facebook\":false},[\"background:#1877f2\",\"border-color:#0b5fcc\"]],[false,{\".swp-facebook a\":false},[\"color:#1877f2\"]],[false,{\".swp-facebook a:hover\":false},[\"background:#0b5fcc\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_flickr\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_flickr:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_flickr:not(:hover)\":false},[\"border:1px solid #ff0084\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_flickr\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_flickr:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_flickr\":false},[\"background:#ff0084\",\"border:1px solid #cc006a\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_flickr\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_flickr:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_flickr\":false},[\"border-bottom:3px solid #cc006a\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flickr a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flickr a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flickr a\":false},[\"color:#ff0084\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flickr\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flickr:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flickr\":false},[\"background:transparent\",\"border:1px solid #ff0084\"]],[false,{\".swp-flickr\":false},[\"background:#ff0084\",\"border-color:#cc006a\"]],[false,{\".swp-flickr a\":false},[\"color:#ff0084\"]],[false,{\".swp-flickr a:hover\":false},[\"background:#cc006a\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_flipboard\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_flipboard:not(:hover)\":false},[\"border:1px solid #bf2626\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_flipboard\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_flipboard\":false},[\"background:#bf2626\",\"border:1px solid #941e1e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_flipboard\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_flipboard\":false},[\"border-bottom:3px solid #941e1e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flipboard a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flipboard a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flipboard a\":false},[\"color:#bf2626\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flipboard\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flipboard\":false},[\"background:transparent\",\"border:1px solid #bf2626\"]],[false,{\".swp-flipboard\":false},[\"background:#bf2626\",\"border-color:#941e1e\"]],[false,{\".swp-flipboard a\":false},[\"color:#bf2626\"]],[false,{\".swp-flipboard a:hover\":false},[\"background:#941e1e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_hacker_news\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_hacker_news:not(:hover)\":false},[\"border:1px solid #d85623\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_hacker_news\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_hacker_news\":false},[\"background:#d85623\",\"border:1px solid #ac451c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_hacker_news\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_hacker_news\":false},[\"border-bottom:3px solid #ac451c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_hacker_news a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_hacker_news a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_hacker_news a\":false},[\"color:#d85623\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_hacker_news\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_hacker_news\":false},[\"background:transparent\",\"border:1px solid #d85623\"]],[false,{\".swp-hacker_news\":false},[\"background:#d85623\",\"border-color:#ac451c\"]],[false,{\".swp-hacker_news a\":false},[\"color:#d85623\"]],[false,{\".swp-hacker_news a:hover\":false},[\"background:#ac451c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_instagram\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_instagram:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_instagram:not(:hover)\":false},[\"border:1px solid #ea2454\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_instagram\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_instagram:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_instagram\":false},[\"background:#ea2454\",\"border:1px solid #c8133f\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_instagram\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_instagram:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_instagram\":false},[\"border-bottom:3px solid #c8133f\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_instagram a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_instagram a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_instagram a\":false},[\"color:#ea2454\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_instagram\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_instagram:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_instagram\":false},[\"background:transparent\",\"border:1px solid #ea2454\"]],[false,{\".swp-instagram\":false},[\"background:#ea2454\",\"border-color:#c8133f\"]],[false,{\".swp-instagram a\":false},[\"color:#ea2454\"]],[false,{\".swp-instagram a:hover\":false},[\"background:#c8133f\",\"color:#fff\"]],[true,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_linkedin\":true,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_linkedin:hover\":true,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_linkedin:not(:hover)\":true},[\"border:1px solid #2767b1\"]],[true,{\".swp_social_panel.swp_default_full_color .swp_linkedin\":true,\"html body .swp_social_panel.swp_individual_full_color .swp_linkedin:hover\":true,\"body .swp_social_panel.swp_other_full_color:hover .swp_linkedin\":true},[\"background:#2767b1\",\"border:1px solid #1e4f87\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_linkedin\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_linkedin\":false},[\"border-bottom:3px solid #1e4f87\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_linkedin a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_linkedin a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_linkedin a\":false},[\"color:#2767b1\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_linkedin\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_linkedin\":false},[\"background:transparent\",\"border:1px solid #2767b1\"]],[false,{\".swp-linkedin\":false},[\"background:#2767b1\",\"border-color:#1e4f87\"]],[false,{\".swp-linkedin a\":false},[\"color:#2767b1\"]],[false,{\".swp-linkedin a:hover\":false},[\"background:#1e4f87\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_medium\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_medium:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_medium:not(:hover)\":false},[\"border:1px solid #00ab6c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_medium\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_medium:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_medium\":false},[\"background:#00ab6c\",\"border:1px solid #00784c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_medium\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_medium:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_medium\":false},[\"border-bottom:3px solid #00784c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_medium a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_medium a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_medium a\":false},[\"color:#00ab6c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_medium\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_medium:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_medium\":false},[\"background:transparent\",\"border:1px solid #00ab6c\"]],[false,{\".swp-medium\":false},[\"background:#00ab6c\",\"border-color:#00784c\"]],[false,{\".swp-medium a\":false},[\"color:#00ab6c\"]],[false,{\".swp-medium a:hover\":false},[\"background:#00784c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_mix\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_mix:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_mix:not(:hover)\":false},[\"border:1px solid #f4812c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_mix\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_mix:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_mix\":false},[\"background:#f4812c\",\"border:1px solid #e1660c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_mix\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_mix:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_mix\":false},[\"border-bottom:3px solid #e1660c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_mix a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_mix a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_mix a\":false},[\"color:#f4812c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_mix\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_mix:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_mix\":false},[\"background:transparent\",\"border:1px solid #f4812c\"]],[false,{\".swp-mix\":false},[\"background:#f4812c\",\"border-color:#e1660c\"]],[false,{\".swp-mix a\":false},[\"color:#f4812c\"]],[false,{\".swp-mix a:hover\":false},[\"background:#e1660c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_more\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_more:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_more:not(:hover)\":false},[\"border:1px solid #ee464f\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_more\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_more:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_more\":false},[\"background:#ee464f\",\"border:1px solid #ea1723\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_more\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_more:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_more\":false},[\"border-bottom:3px solid #ea1723\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_more a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_more a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_more a\":false},[\"color:#ee464f\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_more\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_more:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_more\":false},[\"background:transparent\",\"border:1px solid #ee464f\"]],[false,{\".swp-more\":false},[\"background:#ee464f\",\"border-color:#ea1723\"]],[false,{\".swp-more a\":false},[\"color:#ee464f\"]],[false,{\".swp-more a:hover\":false},[\"background:#ea1723\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_parler\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_parler:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_parler:not(:hover)\":false},[\"border:1px solid #be1e2c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_parler\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_parler:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_parler\":false},[\"background:#be1e2c\",\"border:1px solid #921722\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_parler\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_parler:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_parler\":false},[\"border-bottom:3px solid #921722\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_parler a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_parler a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_parler a\":false},[\"color:#be1e2c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_parler\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_parler:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_parler\":false},[\"background:transparent\",\"border:1px solid #be1e2c\"]],[false,{\".swp-parler\":false},[\"background:#be1e2c\",\"border-color:#921722\"]],[false,{\".swp-parler a\":false},[\"color:#be1e2c\"]],[false,{\".swp-parler a:hover\":false},[\"background:#921722\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_periscope\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_periscope:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_periscope:not(:hover)\":false},[\"border:1px solid #3aa4c6\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_periscope\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_periscope:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_periscope\":false},[\"background:#3aa4c6\",\"border:1px solid #2e849f\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_periscope\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_periscope:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_periscope\":false},[\"border-bottom:3px solid #2e849f\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_periscope a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_periscope a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_periscope a\":false},[\"color:#3aa4c6\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_periscope\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_periscope:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_periscope\":false},[\"background:transparent\",\"border:1px solid #3aa4c6\"]],[false,{\".swp-periscope\":false},[\"background:#3aa4c6\",\"border-color:#2e849f\"]],[false,{\".swp-periscope a\":false},[\"color:#3aa4c6\"]],[false,{\".swp-periscope a:hover\":false},[\"background:#2e849f\",\"color:#fff\"]],[true,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_pinterest\":true,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_pinterest:hover\":true,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_pinterest:not(:hover)\":true},[\"border:1px solid #e60023\"]],[true,{\".swp_social_panel.swp_default_full_color .swp_pinterest\":true,\"html body .swp_social_panel.swp_individual_full_color .swp_pinterest:hover\":true,\"body .swp_social_panel.swp_other_full_color:hover .swp_pinterest\":true},[\"background:#e60023\",\"border:1px solid #b3001b\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_pinterest\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_pinterest\":false},[\"border-bottom:3px solid #b3001b\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pinterest a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pinterest a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pinterest a\":false},[\"color:#e60023\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pinterest\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pinterest\":false},[\"background:transparent\",\"border:1px solid #e60023\"]],[false,{\".swp-pinterest\":false},[\"background:#e60023\",\"border-color:#b3001b\"]],[false,{\".swp-pinterest a\":false},[\"color:#e60023\"]],[false,{\".swp-pinterest a:hover\":false},[\"background:#b3001b\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_pocket\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_pocket:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_pocket:not(:hover)\":false},[\"border:1px solid #ef4056\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_pocket\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_pocket:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_pocket\":false},[\"background:#ef4056\",\"border:1px solid #e9132e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_pocket\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_pocket:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_pocket\":false},[\"border-bottom:3px solid #e9132e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pocket a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pocket a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pocket a\":false},[\"color:#ef4056\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pocket\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pocket:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pocket\":false},[\"background:transparent\",\"border:1px solid #ef4056\"]],[false,{\".swp-pocket\":false},[\"background:#ef4056\",\"border-color:#e9132e\"]],[false,{\".swp-pocket a\":false},[\"color:#ef4056\"]],[false,{\".swp-pocket a:hover\":false},[\"background:#e9132e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_print\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_print:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_print:not(:hover)\":false},[\"border:1px solid #777\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_print\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_print:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_print\":false},[\"background:#777\",\"border:1px solid #5e5e5e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_print\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_print:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_print\":false},[\"border-bottom:3px solid #5e5e5e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_print a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_print a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_print a\":false},[\"color:#777\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_print\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_print:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_print\":false},[\"background:transparent\",\"border:1px solid #777\"]],[false,{\".swp-print\":false},[\"background:#777\",\"border-color:#5e5e5e\"]],[false,{\".swp-print a\":false},[\"color:#777\"]],[false,{\".swp-print a:hover\":false},[\"background:#5e5e5e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_reddit\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_reddit:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_reddit:not(:hover)\":false},[\"border:1px solid #f04b23\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_reddit\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_reddit:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_reddit\":false},[\"background:#f04b23\",\"border:1px solid #d2340e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_reddit\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_reddit:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_reddit\":false},[\"border-bottom:3px solid #d2340e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_reddit a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_reddit a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_reddit a\":false},[\"color:#f04b23\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_reddit\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_reddit:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_reddit\":false},[\"background:transparent\",\"border:1px solid #f04b23\"]],[false,{\".swp-reddit\":false},[\"background:#f04b23\",\"border-color:#d2340e\"]],[false,{\".swp-reddit a\":false},[\"color:#f04b23\"]],[false,{\".swp-reddit a:hover\":false},[\"background:#d2340e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_snapchat\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_snapchat:not(:hover)\":false},[\"border:1px solid #fffc00\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_snapchat\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_snapchat\":false},[\"background:#fffc00\",\"border:1px solid #ccca00\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_snapchat\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_snapchat\":false},[\"border-bottom:3px solid #ccca00\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_snapchat a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_snapchat a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_snapchat a\":false},[\"color:#fffc00\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_snapchat\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_snapchat\":false},[\"background:transparent\",\"border:1px solid #fffc00\"]],[false,{\".swp-snapchat\":false},[\"background:#fffc00\",\"border-color:#ccca00\"]],[false,{\".swp-snapchat a\":false},[\"color:#fffc00\"]],[false,{\".swp-snapchat a:hover\":false},[\"background:#ccca00\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_telegram\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_telegram:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_telegram:not(:hover)\":false},[\"border:1px solid #08c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_telegram\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_telegram:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_telegram\":false},[\"background:#08c\",\"border:1px solid #069\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_telegram\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_telegram:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_telegram\":false},[\"border-bottom:3px solid #069\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_telegram a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_telegram a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_telegram a\":false},[\"color:#08c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_telegram\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_telegram:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_telegram\":false},[\"background:transparent\",\"border:1px solid #08c\"]],[false,{\".swp-telegram\":false},[\"background:#08c\",\"border-color:#069\"]],[false,{\".swp-telegram a\":false},[\"color:#08c\"]],[false,{\".swp-telegram a:hover\":false},[\"background:#069\",\"color:#fff\"]],[true,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_twitter\":true,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_twitter:hover\":true,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_twitter:not(:hover)\":true},[\"border:1px solid #1da1f2\"]],[true,{\".swp_social_panel.swp_default_full_color .swp_twitter\":true,\"html body .swp_social_panel.swp_individual_full_color .swp_twitter:hover\":true,\"body .swp_social_panel.swp_other_full_color:hover .swp_twitter\":true},[\"background:#1da1f2\",\"border:1px solid #0c85d0\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_twitter\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_twitter:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_twitter\":false},[\"border-bottom:3px solid #0c85d0\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_twitter a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_twitter a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_twitter a\":false},[\"color:#1da1f2\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_twitter\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_twitter:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_twitter\":false},[\"background:transparent\",\"border:1px solid #1da1f2\"]],[false,{\".swp-twitter\":false},[\"background:#1da1f2\",\"border-color:#0c85d0\"]],[false,{\".swp-twitter a\":false},[\"color:#1da1f2\"]],[false,{\".swp-twitter a:hover\":false},[\"background:#0c85d0\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_tumblr\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_tumblr:not(:hover)\":false},[\"border:1px solid #39475d\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_tumblr\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_tumblr\":false},[\"background:#39475d\",\"border:1px solid #262f3d\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_tumblr\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_tumblr\":false},[\"border-bottom:3px solid #262f3d\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_tumblr a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_tumblr a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_tumblr a\":false},[\"color:#39475d\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_tumblr\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_tumblr\":false},[\"background:transparent\",\"border:1px solid #39475d\"]],[false,{\".swp-tumblr\":false},[\"background:#39475d\",\"border-color:#262f3d\"]],[false,{\".swp-tumblr a\":false},[\"color:#39475d\"]],[false,{\".swp-tumblr a:hover\":false},[\"background:#262f3d\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_vimeo\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_vimeo:not(:hover)\":false},[\"border:1px solid #162221\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_vimeo\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_vimeo\":false},[\"background:#162221\",\"border:1px solid #020303\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_vimeo\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_vimeo\":false},[\"border-bottom:3px solid #020303\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vimeo a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vimeo a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vimeo a\":false},[\"color:#162221\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vimeo\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vimeo\":false},[\"background:transparent\",\"border:1px solid #162221\"]],[false,{\".swp-vimeo\":false},[\"background:#162221\",\"border-color:#020303\"]],[false,{\".swp-vimeo a\":false},[\"color:#162221\"]],[false,{\".swp-vimeo a:hover\":false},[\"background:#020303\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_viber\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_viber:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_viber:not(:hover)\":false},[\"border:1px solid #8f5db7\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_viber\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_viber:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_viber\":false},[\"background:#8f5db7\",\"border:1px solid #75459c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_viber\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_viber:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_viber\":false},[\"border-bottom:3px solid #75459c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_viber a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_viber a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_viber a\":false},[\"color:#8f5db7\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_viber\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_viber:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_viber\":false},[\"background:transparent\",\"border:1px solid #8f5db7\"]],[false,{\".swp-viber\":false},[\"background:#8f5db7\",\"border-color:#75459c\"]],[false,{\".swp-viber a\":false},[\"color:#8f5db7\"]],[false,{\".swp-viber a:hover\":false},[\"background:#75459c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_vk\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_vk:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_vk:not(:hover)\":false},[\"border:1px solid #4a76a8\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_vk\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_vk:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_vk\":false},[\"background:#4a76a8\",\"border:1px solid #3a5d85\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_vk\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_vk:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_vk\":false},[\"border-bottom:3px solid #3a5d85\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vk a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vk a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vk a\":false},[\"color:#4a76a8\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vk\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vk:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vk\":false},[\"background:transparent\",\"border:1px solid #4a76a8\"]],[false,{\".swp-vk\":false},[\"background:#4a76a8\",\"border-color:#3a5d85\"]],[false,{\".swp-vk a\":false},[\"color:#4a76a8\"]],[false,{\".swp-vk a:hover\":false},[\"background:#3a5d85\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_whatsapp\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_whatsapp:not(:hover)\":false},[\"border:1px solid #71c169\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_whatsapp\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_whatsapp\":false},[\"background:#71c169\",\"border:1px solid #52af48\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_whatsapp\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_whatsapp\":false},[\"border-bottom:3px solid #52af48\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_whatsapp a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_whatsapp a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_whatsapp a\":false},[\"color:#71c169\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_whatsapp\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_whatsapp\":false},[\"background:transparent\",\"border:1px solid #71c169\"]],[false,{\".swp-whatsapp\":false},[\"background:#71c169\",\"border-color:#52af48\"]],[false,{\".swp-whatsapp a\":false},[\"color:#71c169\"]],[false,{\".swp-whatsapp a:hover\":false},[\"background:#52af48\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_xing\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_xing:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_xing:not(:hover)\":false},[\"border:1px solid #026466\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_xing\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_xing:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_xing\":false},[\"background:#026466\",\"border:1px solid #013334\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_xing\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_xing:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_xing\":false},[\"border-bottom:3px solid #013334\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_xing a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_xing a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_xing a\":false},[\"color:#026466\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_xing\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_xing:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_xing\":false},[\"background:transparent\",\"border:1px solid #026466\"]],[false,{\".swp-xing\":false},[\"background:#026466\",\"border-color:#013334\"]],[false,{\".swp-xing a\":false},[\"color:#026466\"]],[false,{\".swp-xing a:hover\":false},[\"background:#013334\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_yummly\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_yummly:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_yummly:not(:hover)\":false},[\"border:1px solid #e26426\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_yummly\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_yummly:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_yummly\":false},[\"background:#e26426\",\"border:1px solid #bc4f19\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_yummly\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_yummly:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_yummly\":false},[\"border-bottom:3px solid #bc4f19\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_yummly a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_yummly a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_yummly a\":false},[\"color:#e26426\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_yummly\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_yummly:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_yummly\":false},[\"background:transparent\",\"border:1px solid #e26426\"]],[false,{\".swp-yummly\":false},[\"background:#e26426\",\"border-color:#bc4f19\"]],[false,{\".swp-yummly a\":false},[\"color:#e26426\"]],[false,{\".swp-yummly a:hover\":false},[\"background:#bc4f19\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_default_light_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_light_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_light_gray:hover .nc_tweetContainer\":false},[\"background-color:#ccc\",\"border:1px solid #ccc\"]],[false,{\".swp_social_panel.swp_default_light_gray .nc_tweetContainer a\":false,\"html body .swp_social_panel.swp_individual_light_gray .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_light_gray:hover .nc_tweetContainer a\":false},[\"color:#fff\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_light_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_light_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_light_gray .nc_tweetContainer:hover\":false},[\"border-bottom:3px solid #b3b3b3\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_light_gray .nc_tweetContainer.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_light_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false,\"body .swp_social_panel.swp_three_dee.swp_other_light_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:none\"]],[false,{\".swp_social_panel.swp_default_light_gray_outlines a\":false,\"html body .swp_social_panel.swp_individual_light_gray_outlines a:hover\":false,\"body .swp_social_panel.swp_other_light_gray_outlines:hover a\":false},[\"color:#ccc\"]],[false,{\".swp_social_panel.swp_default_light_gray_outlines .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_light_gray_outlines .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_light_gray_outlines:hover .nc_tweetContainer\":false},[\"background:transparent\",\"border:1px solid #ccc\"]],[false,{\".swp_social_panel.swp_default_medium_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_medium_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_medium_gray:hover .nc_tweetContainer\":false},[\"background-color:#999\",\"border:1px solid #999\"]],[false,{\".swp_social_panel.swp_default_medium_gray .nc_tweetContainer a\":false,\"html body .swp_social_panel.swp_individual_medium_gray .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_medium_gray:hover .nc_tweetContainer a\":false},[\"color:#fff\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_medium_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_medium_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_medium_gray .nc_tweetContainer:hover\":false},[\"border-bottom:3px solid gray\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_medium_gray .nc_tweetContainer.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_medium_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false,\"body .swp_social_panel.swp_three_dee.swp_other_medium_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:none\"]],[false,{\".swp_social_panel.swp_default_medium_gray_outlines a\":false,\"html body .swp_social_panel.swp_individual_medium_gray_outlines a:hover\":false,\"body .swp_social_panel.swp_other_medium_gray_outlines:hover a\":false},[\"color:#999\"]],[false,{\".swp_social_panel.swp_default_medium_gray_outlines .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_medium_gray_outlines .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_medium_gray_outlines:hover .nc_tweetContainer\":false},[\"background:transparent\",\"border:1px solid #999\"]],[false,{\".swp_social_panel.swp_default_dark_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_dark_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_dark_gray:hover .nc_tweetContainer\":false},[\"background-color:#444\",\"border:1px solid #444\"]],[false,{\".swp_social_panel.swp_default_dark_gray .nc_tweetContainer a\":false,\"html body .swp_social_panel.swp_individual_dark_gray .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_dark_gray:hover .nc_tweetContainer a\":false},[\"color:#fff\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_dark_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_dark_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_dark_gray .nc_tweetContainer:hover\":false},[\"border-bottom:3px solid #2b2b2b\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_dark_gray .nc_tweetContainer.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_dark_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false,\"body .swp_social_panel.swp_three_dee.swp_other_dark_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:none\"]],[false,{\".swp_social_panel.swp_default_dark_gray_outlines a\":false,\"html body .swp_social_panel.swp_individual_dark_gray_outlines a:hover\":false,\"body .swp_social_panel.swp_other_dark_gray_outlines:hover a\":false},[\"color:#444\"]],[false,{\".swp_social_panel.swp_default_dark_gray_outlines .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_dark_gray_outlines .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_dark_gray_outlines:hover .nc_tweetContainer\":false},[\"background:transparent\",\"border:1px solid #444\"]],[false,{\".swp_social_panel.swp_modern\":false,\".swp_social_panel.swp_dark\":false},[\"background:#fff\",\"height:62px\",\"padding:0\",\"border-radius:8px\",\"border:1px solid #eee\",\"box-shadow:0 2px 4px 0 rgba(0,0,0,.01),0 4px 5px 0 rgba(0,0,0,.014),0 4px 15px 0 rgba(0,0,0,.09)\"]],[false,{\".swp_social_panel.swp_modern .swp_share_button\":false,\".swp_social_panel.swp_dark .swp_share_button\":false},[\"padding-bottom:1px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_button:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .swp_share_button:not(#_#_#_#_#_#_#_)\":false},[\"border:none\",\"border-radius:0\",\"margin:0\",\"height:61px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_button.total_shares.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .swp_share_button.total_shares.total_sharesalt:not(#_#_#_#_#_#_#_)\":false},[\"padding:15px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_link\":false,\".swp_social_panel.swp_dark .swp_share_link\":false},[\"border-radius:0\",\"padding:15px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_link:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .swp_share_link:not(#_#_#_#_#_#_#_)\":false},[\"height:61px\"]],[false,{\".swp_social_panel.swp_modern .iconFiller:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .iconFiller:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:10px\"]],[false,{\".swp_social_panel.swp_modern .nc_wrapper.bottom:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .nc_wrapper.bottom:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\"]],[false,{\".swp_dark .swp_share_button:not(#_#_#_#_#_#_#_)\":false},[\"background:#222\",\"border-color:#222\",\"margin:0\",\"height:62px\"]],[false,{\".swp_dark .swp_share_link:hover\":false},[\"background:#444\"]],[false,{\".scale-70\":false},[\"transform:scale(.7)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-70.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:142.85714%\"]],[false,{\".scale-80\":false},[\"transform:scale(.8)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-80.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:125%\"]],[false,{\".scale-90\":false},[\"transform:scale(.9)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-90.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:111.11111%\"]],[true,{\".scale-100\":true},[\"transform:scale(1)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-100.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".scale-110\":false},[\"transform:scale(1.1)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-110.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:90.90909%\"]],[false,{\".scale-120\":false},[\"transform:scale(1.2)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-120.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:83.33333%\"]],[false,{\".scale-130\":false},[\"transform:scale(1.3)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-130.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:76.92308%\"]],[false,{\".scale-140\":false},[\"transform:scale(1.4)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-140.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:71.42857%\"]],[false,{\".scale-left\":false},[\"transform-origin:left\"]],[false,{\".scale-center\":false},[\"transform-origin:center\"]],[false,{\".scale-right\":false},[\"transform-origin:right\"]],[false,{\".scale-full_width\":false},[\"transform-origin:left\"]],[false,{\"div.swp_social_panel .nc_tweetContainer.swp_emphasize\":false},[\"flex:2\"]],[true,\"@media print{\"],[true,{\".swp_social_panel\":true},[\"display:none\",\"opacity:0\",\"visibility:collapse\"]],[true,\"}\"],[false,{\"html[lang] .site * i.sw:not(#_#_#_#_#_#_#_#_)\":false},[\"font-family:sw-icon-font\"]],[true,{\".swp_social_panel\":true},[\"clear:both\",\"display:flex\",\"height:34px\",\"line-height:1\",\"overflow:hidden\",\"padding:0\",\"align-items:stretch\",\"-webkit-box-align:stretch\",\"-moz-box-align:stretch\",\"-webkit-box-pack:justify\",\"-moz-box-pack:justify\",\"direction:ltr\",\"-ms-flex-align:stretch\",\"-ms-flex-line-pack:center\",\"-ms-flex-pack:justify\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[true,{\".swp_social_panel:not(#_#_#_#_#_#_#_)\":true},[\"margin-bottom:20px\",\"margin-top:20px\"]],[true,{\".swp_social_panel .nc_tweetContainer a.nc_tweet\":true,\".swp_social_panel .nc_tweetContainer.total_shares .swp_count\":false},[\"display:block\",\"display:flex\",\"font-family:Lato,sans-serif\",\"font-weight:bold\",\"height:30px\",\"text-transform:none\",\"flex-flow:row wrap\",\"box-shadow:none\"]],[true,{\".swp_social_panel .nc_tweetContainer a.nc_tweet:not(#_#_#_#_#_#_#_#_)\":true,\".swp_social_panel .nc_tweetContainer.total_shares .swp_count:not(#_#_#_#_#_#_#_)\":false},[\"font-size:18px\",\"text-decoration:none\"]],[true,{\".swp_social_panel .nc_tweetContainer:not(.total_shares):not(.total_sharesalt)\":true},[\"border-radius:2px\",\"cursor:pointer\",\"float:left\",\"font-family:Lato\",\"height:32px\",\"margin:0 5px 3px 5px\",\"min-width:34px\",\"overflow:hidden\",\"text-align:center\",\"transition:all .1s linear\"]],[true,{\".swp_social_panel .nc_tweetContainer .spaceManWilly\":true},[\"display:block\",\"width:120px\"]],[false,{\".swp_social_panel .swp_label\":false},[\"display:block\",\"margin-top:13px\",\"position:absolute\",\"text-transform:uppercase\"]],[false,{\".swp_social_panel .swp_label:not(#_#_#_#_#_#_#_)\":false},[\"font-size:9px\",\"text-align:center\"]],[true,{\".swp_social_panel .swp_share\":true},[\"display:block\",\"float:right\",\"float:left\",\"font-size:14px\",\"font-weight:normal\",\"height:30px\",\"line-height:32px\",\"margin:0 0 0 6px\"]],[true,{\".swp_social_panel .swp_share:not(#_#_#_#_#_#_#_)\":true},[\"max-width:none\"]],[false,{\".swp_social_panel .total_shares\":false},[\"border-radius:2px\",\"color:white\",\"cursor:default\",\"display:block\",\"font-size:19px\",\"padding:0 10px\"]],[false,{\".swp_social_panel .total_shares:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\",\"border:none\",\"flex:none\"]],[false,{\".swp_social_panel .total_shares .swp_count\":false},[\"line-height:30px\"]],[false,{\".swp_social_panel .total_shares .swp_label\":false},[\"font-size:10px\",\"vertical-align:middle\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\",\"border:none\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt:before\":false},[\"content:\\\"G\\\"\",\"display:inline-block\",\"font-family:sw-icon-font\",\"margin-top:7px\",\"vertical-align:top\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt.total_sharesalt\":false,\".swp_social_panel .total_shares.total_sharesalt:not(:nth-child(1))\":false},[\"border:none\",\"color:#474b4d\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel .total_shares.total_sharesalt:not(:nth-child(1)):not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\",\"margin-left:0\",\"margin-bottom:10px\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt .swp_count\":false},[\"color:#474b4d\",\"font-size:24px\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt .swp_label\":false},[\"color:#474b4d\",\"letter-spacing:0\",\"min-width:40px\"]],[true,{\".swp_social_panel a .swp_count\":true},[\"font-size:14px\"]],[true,{\".swp_social_panel a .swp_count:not(.swp_hide)\":true},[\"display:inline-block\",\"line-height:32px\",\"margin:0\",\"padding:0 5px\",\"flex:1\"]],[true,{\".swp_social_panel a .swp_count.swp_hide\":true},[\"margin:0 auto\",\"width:auto\"]],[true,{\".swp_social_panel:not(.nc_floater):not(.swp_social_panelSide):not(#_#_#_#_#_#_#_)\":true},[\"width:100%\"]],[false,{\".swp_social_panel:not(.nc_floater):not(.swp_social_panelSide).swp_shift\":false},[\"padding:0 10px\"]],[true,{\".swp_social_panel:not(.swp_social_panelSide)\":true},[\"transition:opacity .2s ease-in-out\"]],[true,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer\":true},[\"flex:1\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer.swp-emphasize\":false},[\"flex:2\"]],[true,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer:nth-child(1)\":true},[\"margin-left:0\"]],[true,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer:nth-last-child(1)\":true},[\"margin-right:0\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt:before\":false},[\"content:\\\"G\\\"\",\"display:inline-block\",\"font-family:sw-icon-font\",\"margin-top:7px\",\"vertical-align:top\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt .swp_count\":false},[\"display:inline-block\",\"line-height:0\",\"margin-left:8px\",\"margin-top:12px\",\"min-width:45px\",\"position:relative\",\"vertical-align:middle\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt:nth-child(1)\":false},[\"margin-left:0\",\"margin-right:15px\",\"padding-left:0\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt:nth-last-child(1)\":false},[\"margin-right:0\",\"padding-right:0\"]],[true,{\".swp_social_panel span:before:not(#_#_#_#_#_#_#_#_)\":true},[\"content:initial\"]],[true,{\".swp_social_panel .iconFiller\":true},[\"font-size:18px\",\"margin:0 auto\",\"display:block\",\"float:left\",\"height:30px\",\"overflow:hidden\",\"transition:width .1s linear\",\"width:30px\"]],[true,{\".swp_social_panel .sw\":true},[\"float:left\",\"height:30px\",\"line-height:32px\",\"margin:1px 5px 0\",\"width:20px\"]],[true,{\".swp_social_panel .sw:not(#_#_#_#_#_#_#_)\":true},[\"text-shadow:none\"]],[false,{\".swp_social_panel.notMobile .nc_tweetContainer:nth-child(1)\":false},[\"margin-left:0\"]],[false,{\".swp_social_panel:hover .total_shares\":false,\".swp_social_panel.swp_full_color .total_shares\":false,\".swp_social_panel.swp_fade .total_shares\":false,\".swp_social_panel.swp_customFull:hover .total_shares\":false},[\"background:#e08a0f\"]],[false,{\".swp_social_panel.swp_leaf .nc_tweetContainer\":false},[\"border-width:1px\"]],[false,{\".swp_social_panel.swp_leaf .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:15px 0\"]],[false,{\".swp_social_panel.swp_pill .nc_tweetContainer\":false},[\"border-width:1px\"]],[false,{\".swp_social_panel.swp_pill .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:50px\"]],[false,{\".swp_social_panel.swp_shift .nc_tweetContainer:not(.total_shares)\":false},[\"border-width:1px\",\"transform:skew(-25deg)\"]],[false,{\".swp_social_panel.swp_shift .nc_tweetContainer a\":false},[\"transform:skew(25deg)\"]],[false,{\".swp_social_panel.swp_connected:hover .nc_tweetContainer\":false,\".swp_social_panel.swp_connected .nc_tweetContainer\":false,\".swp_social_panel.swp_connected .nc_tweetContainer:hover\":false},[\"border-width:1px\"]],[false,{\".swp_social_panel.swp_connected:hover .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_connected .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_connected .nc_tweetContainer:hover:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\",\"margin:0\"]],[false,{\".swp_social_panel.mobile .iconFiller ~ .swp_count\":false,\".sw-content-locator\":false},[\"display:none\"]],[true,{\"div[class*=custom_color][class^=_wrapper]\":true},[\"display:none\"]],[false,{\"pre.swp_debug_data\":false},[\"white-space:pre-wrap\",\"padding:0 25px\",\"max-width:1000px\",\"margin:0 auto 50px auto\",\"border:3px solid #666\"]],[false,{\".wp-editor-container .swp_twitter:before\":false},[\"color:#429cd6\"]],[false,{\".swp_powered_by\":false},[\"font-family:helvetica,arial,sans-serif\",\"color:black\"]],[false,{\".swp_powered_by span\":false},[\"clear:both\",\"width:100%\",\"display:block\",\"margin:36px 0px -30px 0\"]],[false,{\".swp_powered_by a\":false},[\"color:black\",\"text-decoration:none\"]],[false,{\".swp_powered_by amp-img\":false,\".swp_powered_by amp-anim\":false},[\"max-height:40px\",\"margin-top:30px\"]],[true,{\".sw\":true},[\"display:inline-block\",\"font-size:inherit\",\"-moz-osx-font-smoothing:grayscale\",\"-webkit-font-smoothing:antialiased\",\"font-style:normal\",\"font-weight:normal\",\"text-rendering:auto\",\"transform:translate(0,0)\",\"transform:translate(0,0)\",\"-webkit-transform:translate(0,0)\",\"-moz-transform:translate(0,0)\",\"-ms-transform:translate(0,0)\",\"-o-transform:translate(0,0)\"]],[true,{\".sw:not(#_#_#_#_#_#_#_)\":true},[\"font-family:sw-icon-font\",\"text-transform:none\"]],[true,{\".sw:before:not(#_#_#_#_#_#_#_#_)\":true},[\"display:block\"]],[false,{\"i.swp_blogger_icon:before\":false},[\"content:\\\"c\\\"\"]],[false,{\"i.swp_buffer_icon:before\":false},[\"content:\\\"d\\\"\"]],[false,{\"i.swp_ello_icon:before\":false},[\"content:\\\"h\\\"\"]],[false,{\"i.swp_email_icon:before\":false},[\"content:\\\"i\\\"\"]],[false,{\"i.swp_evernote_icon:before\":false},[\"content:\\\"j\\\"\"]],[true,{\"i.swp_facebook_icon:before\":true},[\"content:\\\"k\\\"\"]],[false,{\"i.swp_flickr_icon:before\":false},[\"content:\\\"l\\\"\"]],[false,{\"i.swp_flipboard_icon:before\":false},[\"content:\\\"m\\\"\"]],[false,{\"i.swp_hacker_news_icon:before\":false},[\"content:\\\"o\\\"\"]],[false,{\"i.swp_instagram_icon:before\":false},[\"content:\\\"q\\\"\"]],[true,{\"i.swp_linkedin_icon:before\":true},[\"content:\\\"s\\\"\"]],[false,{\"i.swp_medium_icon:before\":false},[\"content:\\\"u\\\"\"]],[false,{\"i.swp_mix_icon:before\":false},[\"content:\\\"w\\\"\"]],[false,{\"i.swp_more_icon:before\":false},[\"content:\\\"B\\\"\"]],[false,{\"i.swp_parler_icon:before\":false},[\"content:\\\"0\\\"\"]],[false,{\"i.swp_periscope_icon:before\":false},[\"content:\\\"y\\\"\"]],[true,{\"i.swp_pinterest_icon:before\":true},[\"content:\\\"A\\\"\"]],[false,{\"i.swp_pin_icon:before\":false},[\"content:\\\"z\\\"\"]],[false,{\"i.swp_pocket_icon:before\":false},[\"content:\\\"C\\\"\"]],[false,{\"i.swp_print_icon:before\":false},[\"content:\\\"D\\\"\"]],[false,{\"i.swp_reddit_icon:before\":false},[\"content:\\\"E\\\"\"]],[false,{\"i.swp_share_icon:before\":false},[\"content:\\\"G\\\"\"]],[false,{\"i.swp_social-warfare_icon:before\":false},[\"content:\\\"K\\\"\"]],[false,{\"i.swp_snapchat_icon:before\":false},[\"content:\\\"J\\\"\"]],[false,{\"i.swp_telegram_icon:before\":false},[\"content:\\\"L\\\"\"]],[false,{\"i.swp_tumblr_icon:before\":false},[\"content:\\\"M\\\"\"]],[true,{\"i.swp_twitter_icon:before\":true},[\"content:\\\"N\\\"\"]],[false,{\"i.swp_viber_icon:before\":false},[\"content:\\\"O\\\"\"]],[false,{\"i.swp_vimeo_icon:before\":false},[\"content:\\\"P\\\"\"]],[false,{\"i.swp_vk_icon:before\":false},[\"content:\\\"R\\\"\"]],[false,{\"i.swp_warfare-plugins_icon:before\":false},[\"content:\\\"Z\\\"\"]],[false,{\"i.swp_whatsapp_icon:before\":false},[\"content:\\\"T\\\"\"]],[false,{\"i.swp_xing_icon:before\":false},[\"content:\\\"V\\\"\"]],[false,{\"i.swp_yummly_icon:before\":false},[\"content:\\\"Y\\\"\"]],[false,{\".sw-social-warfare:before\":false},[\"content:\\\"K\\\"\"]],[false,{\".wp-editor-container .sw:before\":false},[\"font-size:18px\",\"line-height:22px\"]],[false,{\".wp-editor-container .sw-social-warfare:before\":false,\".mce-ico.sw-social-warfare:before\":false,\".mce-ico.sw-social-warfare\":false},[\"color:#ee464f\"]],[false,{\".mce-container .sw-social-warfare\":false},[\"color:#ee464f\",\"font-size:20px\",\"margin-right:15px\",\"vertical-align:middle\"]],[false,{\".swp_social_panelSide\":false},[\"transition:all .2s linear\",\"flex-direction:column\",\"height:auto\",\"overflow:visible\",\"z-index:9998\",\"padding:0\"]],[false,{\".swp_social_panelSide:not(#_#_#_#_#_#_#_)\":false},[\"margin:10px 5px\"]],[false,{\".swp_social_panelSide.slide\":false,\".swp_social_panelSide.fade\":false},[\"transition:all .2s linear\",\"position:fixed\"]],[false,{\".swp_social_panelSide.fade\":false},[\"display:none\"]],[false,{\".swp_social_panelSide.fade .swp_float_left\":false},[\"left:5px\"]],[false,{\".swp_social_panelSide.fade .swp_float_right\":false},[\"right:5px\"]],[false,{\".swp_social_panelSide.hideCounts a\":false},[\"text-align:center\"]],[false,{\".swp_social_panelSide.hideCounts .iconFiller\":false},[\"float:none\",\"text-align:left\"]],[false,{\".swp_social_panelSide[class*=swp_side]\":false},[\"height:auto\",\"display:flex\",\"position:fixed\",\"padding:30px 0\"]],[false,{\".swp_social_panelSide.swp_float_right\":false},[\"align-content:flex-end\"]],[false,{\".swp_social_panelSide.swp_side_top\":false},[\"top:15px\"]],[false,{\".swp_social_panelSide.swp_side_bottom\":false},[\"bottom:15px\"]],[false,{\".swp_social_panelSide.swp_default .nc_tweetContainer .sw\":false},[\"line-height:32px\"]],[false,{\".swp_social_panelSide.swp_default .nc_tweetContainer .swp_share\":false},[\"line-height:32px\"]],[false,{\".swp_social_panelSide span.swp_label\":false},[\"margin-top:0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer\":false},[\"transition:all .1s linear\",\"border-radius:3px\",\"clear:both\",\"display:block\",\"font-family:Lato,sans-serif\",\"height:32px\",\"overflow:hidden\",\"padding:0\",\"width:90px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"margin:3px 0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares\":false},[\"background:rgba(0,0,0,0)\",\"font-weight:800\",\"height:55px\",\"margin:0\",\"padding:0\",\"text-align:center\",\"width:90px\",\"order:-100\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares:not(#_#_#_#_#_#_#_)\":false},[\"border:0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares .swp_count\":false},[\"color:#444\",\"display:block\",\"font-family:Lato,sans-serif\",\"height:28px\",\"text-align:center\",\"width:100%\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares .swp_label\":false},[\"color:#444\",\"display:block\",\"font-family:Lato,sans-serif\",\"font-size:50%\",\"position:relative\",\"text-align:center\",\"width:100%\"]],[false,{\".swp_social_panelSide .nc_tweetContainer:not(.total_shares)\":false},[\"line-height:34px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer:hover\":false,\".swp_social_panelSide .nc_tweetContainer:hover .iconFiller\":false,\".swp_social_panelSide .nc_tweetContainer:hover .swp_count\":false},[\"transition:all .1s linear\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .iconFiller\":false},[\"transition:all .1s linear\",\"display:inline-block\",\"height:40px\",\"margin:0 6px\",\"padding:0\",\"vertical-align:middle\",\"width:21px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .swp_count\":false},[\"transition:all .1s linear\",\"display:inline-block\",\"font-size:14px\",\"height:32px\",\"line-height:16px\",\"margin:0\",\"padding:0\",\"overflow:hidden\",\"text-align:right\",\"vertical-align:top\",\"width:0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer a\":false},[\"transition:all .1s linear\",\"cursor:pointer\",\"display:block\",\"font-weight:500\",\"height:36px\",\"margin:0\",\"padding:0\",\"text-decoration:none\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .sw\":false,\".swp_social_panelSide .nc_tweetContainer .swp_share\":false},[\"float:left\",\"line-height:34px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .swp_share\":false},[\"font-size:13px\",\"margin:0\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer\":false},[\"margin-bottom:5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer a\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer a\":false},[\"width:67.5px\",\"position:relative\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer a:not(#_#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer a:not(#_#_#_#_#_#_#_#_)\":false},[\"height:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .total_shares\":false,\".swp_social_panelSide.swp_circles .total_shares\":false},[\"padding:0\"]],[false,{\".swp_social_panelSide.swp_boxed .total_shares:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .total_shares:not(#_#_#_#_#_#_#_)\":false},[\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer span.iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer span.iconFiller\":false},[\"height:40px\",\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer i.sw\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer i.sw\":false},[\"font-size:27px\",\"height:40px\",\"margin:0\",\"padding-top:10px\",\"text-align:center\",\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_share\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) span.swp_share\":false},[\"height:35px\",\"opacity:0\",\"position:absolute\",\"bottom:0\",\"left:0\",\"text-align:center\",\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_count\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) span.swp_count\":false},[\"height:35px\",\"margin:0\",\"padding:0\",\"position:absolute\",\"bottom:0\",\"left:0\",\"text-align:center\",\"transition:padding .1s linear\",\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_hide span.swp_share\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover span.swp_share:not(.swp_hide)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_hide span.swp_share\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):hover span.swp_share:not(.swp_hide)\":false},[\"opacity:1\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover span.swp_count:not(.swp_hide)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):hover span.swp_count:not(.swp_hide)\":false},[\"opacity:0\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_count\":false},[\"padding:0 8px\",\"width:48px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide\":false},[\"padding:0\",\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide .iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide .iconFiller\":false},[\"display:block\",\"float:none\",\"margin:0 auto\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover .iconFiller\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .spaceManWilly\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):hover .iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .spaceManWilly\":false},[\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_count.swp_hide\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer span.swp_hide .iconFiller\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer span.swp_hide .spaceManWilly\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) span.swp_count.swp_hide\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer span.swp_hide .iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer span.swp_hide .spaceManWilly\":false},[\"height:67.5px\",\"opacity:1\"]],[false,{\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) a:not(#_#_#_#_#_#_#_#_)\":false},[\"border-radius:50%\"]],[false,{\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares) .iconFiller\":false},[\"margin-left:2px\",\"width:30px\"]],[false,{\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares)[data-network]:not(.total_shares):hover span.iconFiller\":false,\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares):not(.total_shares) .spaceManWilly\":false},[\"width:90px\"]],[false,{\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares):hover\":false},[\"width:150px\"]],[false,{\".nc_wrapper\":false},[\"background:white\",\"position:fixed\",\"transition:top .5s bottom .5s\",\"width:100%\",\"z-index:99999\"]],[false,{\".nc_wrapper.bottom\":false},[\"bottom:0\",\"left:0\"]],[false,{\".nc_wrapper.top\":false},[\"top:0\",\"left:0\"]],[false,{\".nc_wrapper .swp_social_panel:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:10px\",\"margin-top:10px\"]],[false,{\".nc_floater\":false},[\"margin:10px 0\",\"position:relative\"]],[false,{\".float-position-top-left\":false},[\"transform-origin:top left\"]],[false,{\".float-position-center-left\":false},[\"transform-origin:center left\"]],[false,{\".float-position-bottom-left\":false},[\"transform-origin:bottom left\"]],[false,{\".float-position-top-right\":false},[\"transform-origin:top right\"]],[false,{\".float-position-center-right\":false},[\"transform-origin:center right\"]],[false,{\".float-position-bottom-right\":false},[\"transform-origin:bottom right\"]],[false,{\".sw-tweet-clear\":false},[\"zoom:1\"]],[false,{\".sw-tweet-clear:after\":false},[\"clear:both\",\"content:\\\".\\\"\",\"display:block\",\"height:0\",\"visibility:hidden\"]],[false,{\"a.swp_CTT\":false},[\"cursor:pointer\"]],[false,{\"a.swp_CTT:not(#_#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\"a.swp_CTT .sw-click-to-tweet\":false},[\"display:block\",\"margin:15px 0\",\"padding:15px 30px\",\"position:relative\"]],[false,{\"a.swp_CTT .sw-click-to-tweet:after\":false},[\"clear:both\",\"content:\\\".\\\"\",\"display:block\",\"height:0\",\"line-height:0\",\"visibility:hidden\"]],[false,{\"a.swp_CTT .sw-click-to-tweet .sw-ctt-text\":false},[\"margin:0 0 10px\",\"margin:0\",\"padding:0\",\"padding:0\",\"position:relative\",\"position:relative\",\"word-wrap:break-word\",\"display:block\",\"font-size:24px\",\"font-weight:500\",\"line-height:140%\",\"text-decoration:none\",\"text-transform:none\"]],[false,{\"a.swp_CTT .sw-click-to-tweet .sw-ctt-btn\":false},[\"display:block\",\"float:right\",\"font-family:\\\"Helvetica Neue\\\",Helvetica,Arial,sans-serif\",\"font-size:12px\",\"font-weight:bold\",\"line-height:100%\",\"margin:10px 0 0\",\"padding:3px 5px 3px 3px\",\"position:relative\",\"text-decoration:none\",\"text-transform:uppercase\"]],[false,{\"a.swp_CTT .sw-click-to-tweet i.swp_twitter_icon\":false},[\"float:right\",\"font-size:21px\",\"margin-top:2px\",\"text-transform:none\"]],[false,{\"a.swp_CTT .sw-click-to-tweet i.swp_twitter_icon:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-left:15px\"]],[false,{\"a.swp_CTT.style1 .sw-click-to-tweet\":false},[\"background-color:#fff\",\"border:1px solid #ddd\",\"border-radius:4px\"]],[false,{\"a.swp_CTT.style1 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#1da1f2\"]],[false,{\"a.swp_CTT.style1 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style1 .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#999\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style1:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style1:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#666\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style2 .sw-click-to-tweet\":false},[\"background-color:#fff\",\"border:4px double #ddd\",\"border-radius:0\"]],[false,{\"a.swp_CTT.style2 .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#1da1f2\"]],[false,{\"a.swp_CTT.style2 .sw-click-to-tweet .sw-ctt-text\":false},[\"color:#666\",\"font-style:italic\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style2:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style2:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#666\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style3 .sw-click-to-tweet\":false},[\"background-color:#1da1f2\",\"border:none\",\"border-left:10px solid #15202b\",\"border-radius:0\",\"padding-right:20px\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style3 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style3 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style3 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style3 .sw-click-to-tweet .sw-ctt-text\":false},[\"font-style:italic\"]],[false,{\"a.swp_CTT.style3:hover .sw-click-to-tweet\":false},[\"border-left:10px solid #15202b\",\"padding-right:20px\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style3:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style3:hover .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style3:hover .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style4 .sw-click-to-tweet\":false},[\"background-color:#333\",\"border-left:10px solid #c33\",\"border-radius:0\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style4 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style4 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style4 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style4:hover .sw-click-to-tweet\":false},[\"border-left:10px solid #3c87b2\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style4:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style4:hover .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style4:hover .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style5 .sw-click-to-tweet\":false},[\"background-color:#30394f\",\"border-left:10px solid #d34250\",\"border-radius:0\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style5 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style5 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style5 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style5:hover .sw-click-to-tweet\":false},[\"background-color:#d34250\",\"border-left:10px solid #30394f\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style5:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style5:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style6 .sw-click-to-tweet\":false},[\"background-color:#eee\",\"border-left:10px solid #d34250\",\"border-radius:0\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style6 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style6 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style6 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#30394f\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style6:hover .sw-click-to-tweet\":false},[\"background-color:#ced3dc\",\"border-left:10px solid #d34250\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style6:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style6:hover .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style6:hover .sw-click-to-tweet i.swp_twitter\":false},[\"color:#2a2d34\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style7 .sw-click-to-tweet\":false},[\"transition:all .2s linear\",\"background:#f9f9f9\",\"color:#1da1f2\",\"border-radius:10px\",\"transform:skewX(-15deg)\",\"border:7px dashed #e5e5e5\"]],[false,{\"a.swp_CTT.style7 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style7 .sw-click-to-tweet .sw-ctt-btn\":false},[\"transition:all .2s linear\",\"transform:skewX(15deg)\"]],[false,{\"a.swp_CTT.style7:hover .sw-click-to-tweet\":false},[\"transition:all .2s linear\",\"background:#fff\",\"border-color:#ddd\",\"transform:skewX(-10deg) scale(1.02)\"]],[false,{\"a.swp_CTT.style7:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style7:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"transition:all .2s linear\",\"transform:skewX(10deg)\"]],[false,{\".swfw-follow-container\":false},[\"display:flex\",\"position:relative\"]],[false,{\".swfw-follow-container .swfw-container-message\":false},[\"font-weight:bold\"]],[false,{\".swfw-follow-container.swfw_square_container\":false},[\"flex-flow:row wrap\"]],[false,{\".swfw-follow-container.swfw_buttons_container\":false},[\"flex-flow:column nowrap\",\"justify-content:flex-start\",\"align-items:space-between\"]],[false,{\".swfw-follow-container.swfw_block_container\":false},[\"flex-flow:column nowrap\",\"justify-content:flex-start\",\"align-items:flex-start\"]],[false,{\".swfw-follow-container a\":false},[\"text-decoration:none\"]],[false,{\"div.swp-blogger\":false},[\"background:#ff5722\",\"border-color:#ee3900\"]],[false,{\"div.swp-blogger a\":false},[\"color:#ff5722\"]],[false,{\"div.swp-blogger a:hover\":false},[\"background:#ee3900\",\"color:#fff\"]],[false,{\"div.swp-buffer\":false},[\"background:#323b43\",\"border-color:#1c2126\"]],[false,{\"div.swp-buffer a\":false},[\"color:#323b43\"]],[false,{\"div.swp-buffer a:hover\":false},[\"background:#1c2126\",\"color:#fff\"]],[false,{\"div.swp-ello\":false},[\"background:#000\",\"border-color:#000\"]],[false,{\"div.swp-ello a\":false},[\"color:#000\"]],[false,{\"div.swp-ello a:hover\":false},[\"background:#000\",\"color:#fff\"]],[false,{\"div.swp-email\":false},[\"background:#6bcce9\",\"border-color:#3fbde2\"]],[false,{\"div.swp-email a\":false},[\"color:#6bcce9\"]],[false,{\"div.swp-email a:hover\":false},[\"background:#3fbde2\",\"color:#fff\"]],[false,{\"div.swp-evernote\":false},[\"background:#2dbe60\",\"border-color:#23954b\"]],[false,{\"div.swp-evernote a\":false},[\"color:#2dbe60\"]],[false,{\"div.swp-evernote a:hover\":false},[\"background:#23954b\",\"color:#fff\"]],[false,{\"div.swp-facebook\":false},[\"background:#1877f2\",\"border-color:#0b5fcc\"]],[false,{\"div.swp-facebook a\":false},[\"color:#1877f2\"]],[false,{\"div.swp-facebook a:hover\":false},[\"background:#0b5fcc\",\"color:#fff\"]],[false,{\"div.swp-flickr\":false},[\"background:#ff0084\",\"border-color:#cc006a\"]],[false,{\"div.swp-flickr a\":false},[\"color:#ff0084\"]],[false,{\"div.swp-flickr a:hover\":false},[\"background:#cc006a\",\"color:#fff\"]],[false,{\"div.swp-flipboard\":false},[\"background:#bf2626\",\"border-color:#941e1e\"]],[false,{\"div.swp-flipboard a\":false},[\"color:#bf2626\"]],[false,{\"div.swp-flipboard a:hover\":false},[\"background:#941e1e\",\"color:#fff\"]],[false,{\"div.swp-hacker_news\":false},[\"background:#d85623\",\"border-color:#ac451c\"]],[false,{\"div.swp-hacker_news a\":false},[\"color:#d85623\"]],[false,{\"div.swp-hacker_news a:hover\":false},[\"background:#ac451c\",\"color:#fff\"]],[false,{\"div.swp-instagram\":false},[\"background:#ea2454\",\"border-color:#c8133f\"]],[false,{\"div.swp-instagram a\":false},[\"color:#ea2454\"]],[false,{\"div.swp-instagram a:hover\":false},[\"background:#c8133f\",\"color:#fff\"]],[false,{\"div.swp-linkedin\":false},[\"background:#2767b1\",\"border-color:#1e4f87\"]],[false,{\"div.swp-linkedin a\":false},[\"color:#2767b1\"]],[false,{\"div.swp-linkedin a:hover\":false},[\"background:#1e4f87\",\"color:#fff\"]],[false,{\"div.swp-medium\":false},[\"background:#00ab6c\",\"border-color:#00784c\"]],[false,{\"div.swp-medium a\":false},[\"color:#00ab6c\"]],[false,{\"div.swp-medium a:hover\":false},[\"background:#00784c\",\"color:#fff\"]],[false,{\"div.swp-mix\":false},[\"background:#f4812c\",\"border-color:#e1660c\"]],[false,{\"div.swp-mix a\":false},[\"color:#f4812c\"]],[false,{\"div.swp-mix a:hover\":false},[\"background:#e1660c\",\"color:#fff\"]],[false,{\"div.swp-more\":false},[\"background:#ee464f\",\"border-color:#ea1723\"]],[false,{\"div.swp-more a\":false},[\"color:#ee464f\"]],[false,{\"div.swp-more a:hover\":false},[\"background:#ea1723\",\"color:#fff\"]],[false,{\"div.swp-parler\":false},[\"background:#be1e2c\",\"border-color:#921722\"]],[false,{\"div.swp-parler a\":false},[\"color:#be1e2c\"]],[false,{\"div.swp-parler a:hover\":false},[\"background:#921722\",\"color:#fff\"]],[false,{\"div.swp-periscope\":false},[\"background:#3aa4c6\",\"border-color:#2e849f\"]],[false,{\"div.swp-periscope a\":false},[\"color:#3aa4c6\"]],[false,{\"div.swp-periscope a:hover\":false},[\"background:#2e849f\",\"color:#fff\"]],[false,{\"div.swp-pinterest\":false},[\"background:#e60023\",\"border-color:#b3001b\"]],[false,{\"div.swp-pinterest a\":false},[\"color:#e60023\"]],[false,{\"div.swp-pinterest a:hover\":false},[\"background:#b3001b\",\"color:#fff\"]],[false,{\"div.swp-pocket\":false},[\"background:#ef4056\",\"border-color:#e9132e\"]],[false,{\"div.swp-pocket a\":false},[\"color:#ef4056\"]],[false,{\"div.swp-pocket a:hover\":false},[\"background:#e9132e\",\"color:#fff\"]],[false,{\"div.swp-print\":false},[\"background:#777\",\"border-color:#5e5e5e\"]],[false,{\"div.swp-print a\":false},[\"color:#777\"]],[false,{\"div.swp-print a:hover\":false},[\"background:#5e5e5e\",\"color:#fff\"]],[false,{\"div.swp-reddit\":false},[\"background:#f04b23\",\"border-color:#d2340e\"]],[false,{\"div.swp-reddit a\":false},[\"color:#f04b23\"]],[false,{\"div.swp-reddit a:hover\":false},[\"background:#d2340e\",\"color:#fff\"]],[false,{\"div.swp-snapchat\":false},[\"background:#fffc00\",\"border-color:#ccca00\"]],[false,{\"div.swp-snapchat a\":false},[\"color:#fffc00\"]],[false,{\"div.swp-snapchat a:hover\":false},[\"background:#ccca00\",\"color:#fff\"]],[false,{\"div.swp-telegram\":false},[\"background:#08c\",\"border-color:#069\"]],[false,{\"div.swp-telegram a\":false},[\"color:#08c\"]],[false,{\"div.swp-telegram a:hover\":false},[\"background:#069\",\"color:#fff\"]],[false,{\"div.swp-twitter\":false},[\"background:#1da1f2\",\"border-color:#0c85d0\"]],[false,{\"div.swp-twitter a\":false},[\"color:#1da1f2\"]],[false,{\"div.swp-twitter a:hover\":false},[\"background:#0c85d0\",\"color:#fff\"]],[false,{\"div.swp-tumblr\":false},[\"background:#39475d\",\"border-color:#262f3d\"]],[false,{\"div.swp-tumblr a\":false},[\"color:#39475d\"]],[false,{\"div.swp-tumblr a:hover\":false},[\"background:#262f3d\",\"color:#fff\"]],[false,{\"div.swp-vimeo\":false},[\"background:#162221\",\"border-color:#020303\"]],[false,{\"div.swp-vimeo a\":false},[\"color:#162221\"]],[false,{\"div.swp-vimeo a:hover\":false},[\"background:#020303\",\"color:#fff\"]],[false,{\"div.swp-viber\":false},[\"background:#8f5db7\",\"border-color:#75459c\"]],[false,{\"div.swp-viber a\":false},[\"color:#8f5db7\"]],[false,{\"div.swp-viber a:hover\":false},[\"background:#75459c\",\"color:#fff\"]],[false,{\"div.swp-vk\":false},[\"background:#4a76a8\",\"border-color:#3a5d85\"]],[false,{\"div.swp-vk a\":false},[\"color:#4a76a8\"]],[false,{\"div.swp-vk a:hover\":false},[\"background:#3a5d85\",\"color:#fff\"]],[false,{\"div.swp-whatsapp\":false},[\"background:#71c169\",\"border-color:#52af48\"]],[false,{\"div.swp-whatsapp a\":false},[\"color:#71c169\"]],[false,{\"div.swp-whatsapp a:hover\":false},[\"background:#52af48\",\"color:#fff\"]],[false,{\"div.swp-xing\":false},[\"background:#026466\",\"border-color:#013334\"]],[false,{\"div.swp-xing a\":false},[\"color:#026466\"]],[false,{\"div.swp-xing a:hover\":false},[\"background:#013334\",\"color:#fff\"]],[false,{\"div.swp-yummly\":false},[\"background:#e26426\",\"border-color:#bc4f19\"]],[false,{\"div.swp-yummly a\":false},[\"color:#e26426\"]],[false,{\"div.swp-yummly a:hover\":false},[\"background:#bc4f19\",\"color:#fff\"]],[false,{\".swfw-follow-button\":false,\".swfw_square_button\":false,\".swfw_buttons_button\":false,\".swfw_block_button\":false,\".swfw-follow-button.swfw_leaf_button\":false,\".swfw-follow-button.swfw_pill_button\":false,\".swfw-follow-button.swfw_shift_button\":false},[\"align-items:center\",\"border-radius:8px\",\"display:flex\",\"color:white\",\"font-family:\\\"Helvetica\\\",sans-serif\",\"font-size:initial\",\"justify-content:space-between\",\"line-height:1\",\"margin-bottom:10px\",\"padding:15px 5%\",\"width:90%\"]],[false,{\".swfw-follow-button.swp-snapchat\":false,\".swp-snapchat.swfw_square_button\":false,\".swp-snapchat.swfw_buttons_button\":false,\".swp-snapchat.swfw_block_button\":false,\".swfw-follow-button.swp-snapchat a\":false,\".swp-snapchat.swfw_square_button a\":false,\".swp-snapchat.swfw_buttons_button a\":false,\".swp-snapchat.swfw_block_button a\":false},[\"color:black\"]],[false,{\".swfw-follow-button a\":false,\".swfw_square_button a\":false,\".swfw_buttons_button a\":false,\".swfw_block_button a\":false,\".swfw-follow-button.swfw_leaf_button a\":false,\".swfw-follow-button.swfw_pill_button a\":false,\".swfw-follow-button.swfw_shift_button a\":false},[\"background:#fff\",\"border-radius:4px\",\"transition:all .2s ease-in-out\"]],[false,{\".swfw-follow-button a :hover\":false,\".swfw_square_button a :hover\":false,\".swfw_buttons_button a :hover\":false,\".swfw_block_button a :hover\":false},[\"color:white\"]],[false,{\".swfw-follow-button a :hover.swp-snapchat\":false,\".swfw_square_button a :hover.swp-snapchat\":false,\".swfw_buttons_button a :hover.swp-snapchat\":false,\".swfw_block_button a :hover.swp-snapchat\":false},[\"color:black\"]],[false,{\".swfw-follow-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_square_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_block_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_leaf_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_pill_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_shift_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw-follow-button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw-follow-button .swfw-count:not(#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-count:not(#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-count:not(#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-count:not(#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\".swfw-follow-button .swfw-network-icon i\":false,\".swfw_square_button .swfw-network-icon i\":false,\".swfw_buttons_button .swfw-network-icon i\":false,\".swfw_block_button .swfw-network-icon i\":false},[\"width:32px\",\"height:32px\",\"border-radius:100px\",\"font-size:24px\",\"line-height:32px\"]],[false,{\".swfw-follow-button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\".swfw_square_button\":false},[\"width:60px\",\"height:60px\",\"position:relative\",\"display:flex\",\"flex-flow:column nowrap\",\"align-items:center\",\"text-align:center\",\"margin:5px\",\"padding:0\",\"justify-content:center\",\"border-radius:4px\"]],[false,{\".swfw_square_button .swfw-network-icon\":false},[\"margin-top:-12px\"]],[false,{\".swfw_square_button .swfw-text\":false},[\"width:100%\"]],[false,{\".swfw_square_button .swfw-cta\":false,\".swfw_square_button .swfw-count\":false},[\"display:block\",\"width:100%\",\"position:absolute\"]],[false,{\".swfw_square_button .swfw-count\":false},[\"opacity:1\",\"transition:opacity 120ms 0\",\"font-size:12px\"]],[false,{\".swfw_square_button .swfw-cta\":false},[\"opacity:0\",\"transition:opacity 120ms 0\",\"font-size:12px\"]],[false,{\".swfw_square_button:hover .swfw-count\":false},[\"opacity:0\",\"transition:opacity 120ms 120ms\"]],[false,{\".swfw_square_button:hover .swfw-cta\":false},[\"opacity:1\",\"transition:opacity 120ms 120ms\"]],[false,{\".swfw_buttons_button\":false},[\"display:flex\",\"flex-flow:row nowrap\",\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\",\"margin:10px 5px\",\"border-radius:4px\",\"padding:5px 15px\",\"color:white\"]],[false,{\".swfw_buttons_button .swfw-network-icon\":false},[\"padding:0\",\"font-size:32px\"]],[false,{\".swfw_buttons_button .swfw-text\":false},[\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\",\"margin:0 10px\",\"transition:margin 300ms\",\"display:flex\",\"justify-content:center\",\"line-height:32px\",\"color:white\"]],[false,{\".swfw_buttons_button .swfw-text .swfw-cta\":false,\".swfw_buttons_button .swfw-text .swfw-count\":false},[\"display:inline\",\"position:relative\",\"transition:all 300ms\"]],[false,{\".swfw_buttons_button .swfw-text .swfw-cta\":false},[\"width:0\",\"overflow-x:hidden\",\"position:absolute\",\"color:transparent\",\"margin-right:0\",\"font-weight:normal\"]],[false,{\".swfw_buttons_button .swfw-text:hover .swfw-cta\":false},[\"color:white\"]],[false,{\".swfw_buttons_button.swp-snapchat .swfw-text\":false},[\"color:black\"]],[false,{\".swfw_buttons_button.swp-snapchat .swfw-text:hover .swfw-cta\":false},[\"color:black\"]],[false,{\".swfw_buttons_button:hover .swfw-text\":false},[\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\"]],[false,{\".swfw_buttons_button:hover .swfw-text .swfw-cta\":false},[\"width:-moz-min-content\",\"width:-webkit-min-content\",\"width:min-content\",\"overflow-x:visible\",\"position:relative\",\"margin-right:10px\",\"color:white\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_pill_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_shift_button .swfw-network-icon\":false},[\"margin-left:10px\",\"flex:1\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-text\":false,\".swfw-follow-button.swfw_pill_button .swfw-text\":false,\".swfw-follow-button.swfw_shift_button .swfw-text\":false},[\"flex:2\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button\":false},[\"flex:1\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a\":false},[\"padding:none\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a div\":false},[\"padding:10px 30px\",\"background:white\",\"border-radius:2px\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a:hover div\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a:hover div\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a:hover div\":false},[\"background:rgba(33,33,33,.3)\"]],[false,{\".swfw_block_button\":false,\".swfw-follow-button.swfw_leaf_button\":false,\".swfw-follow-button.swfw_pill_button\":false,\".swfw-follow-button.swfw_shift_button\":false},[\"flex-flow:row nowrap\",\"align-items:center\",\"justify-content:space-between\",\"cursor:initial\",\"position:relative\"]],[false,{\".swfw_block_button>*\":false,\".swfw-follow-button.swfw_leaf_button>*\":false,\".swfw-follow-button.swfw_pill_button>*\":false,\".swfw-follow-button.swfw_shift_button>*\":false},[\"width:-moz-min-content\",\"width:-webkit-min-content\",\"width:min-content\"]],[false,{\".swfw_block_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_leaf_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_pill_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_shift_button .swfw-network-icon\":false},[\"margin-left:10px\"]],[false,{\".swfw_block_button .swfw-text\":false,\".swfw-follow-button.swfw_leaf_button .swfw-text\":false,\".swfw-follow-button.swfw_pill_button .swfw-text\":false,\".swfw-follow-button.swfw_shift_button .swfw-text\":false},[\"font-size:12px\",\"line-height:24px\",\"left:calc(10px + 60px)\",\"color:white\",\"text-align:center\"]],[false,{\".swfw_block_button .swfw-text .swfw-count\":false,\".swfw-follow-button.swfw_leaf_button .swfw-text .swfw-count\":false,\".swfw-follow-button.swfw_pill_button .swfw-text .swfw-count\":false,\".swfw-follow-button.swfw_shift_button .swfw-text .swfw-count\":false},[\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\",\"font-size:15px\"]],[false,{\".swfw_block_button.swp-snapchat .swfw-text\":false,\".swp-snapchat.swfw-follow-button.swfw_leaf_button .swfw-text\":false,\".swp-snapchat.swfw-follow-button.swfw_pill_button .swfw-text\":false,\".swp-snapchat.swfw-follow-button.swfw_shift_button .swfw-text\":false},[\"color:black\"]],[false,{\".swfw_block_button .swfw-cta\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta\":false},[\"border-radius:3px\"]],[false,{\".swfw_block_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button\":false},[\"font-size:24px\",\"padding:5px\",\"line-height:24px\",\"border-radius:4px\",\"text-align:center\",\"right:0\"]],[false,{\".swfw_block_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\".swfw_block_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a div\":false},[\"font-size:14px\",\"min-width:100px\",\"border-radius:3px\",\"background:white\",\"padding:5px 15px\"]],[false,{\".swfw_block_button .swfw-cta-button a div:hover\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a div:hover\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a div:hover\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a div:hover\":false},[\"transition:opacity 200ms\",\"background:rgba(30,30,30,.3)\",\"cursor:pointer\",\"color:white\"]],[false,{\".swfw_leaf_button.swfw_square_button\":false,\".swfw_leaf_button.swfw_buttons_button\":false,\".swfw_leaf_button.swfw_block_button\":false,\".swfw_leaf_button.swfw-follow-button\":false},[\"border-top-left-radius:21px\",\"border-top-right-radius:3px\",\"border-bottom-left-radius:3px\",\"border-bottom-right-radius:21px\"]],[false,{\".swfw_leaf_button.swfw_square_button .swfw-network-icon\":false,\".swfw_leaf_button.swfw_buttons_button .swfw-network-icon\":false,\".swfw_leaf_button.swfw_block_button .swfw-network-icon\":false,\".swfw_leaf_button.swfw-follow-button .swfw-network-icon\":false},[\"margin-left:10px\"]],[false,{\".swfw_pill_button.swfw_square_button\":false,\".swfw_pill_button.swfw_buttons_button\":false,\".swfw_pill_button.swfw_block_button\":false,\".swfw_pill_button.swfw-follow-button\":false},[\"border-radius:50px\",\"padding:20px\"]],[false,{\".swfw_pill_button.swfw_square_button .swfw-network-icon\":false,\".swfw_pill_button.swfw_buttons_button .swfw-network-icon\":false,\".swfw_pill_button.swfw_block_button .swfw-network-icon\":false,\".swfw_pill_button.swfw-follow-button .swfw-network-icon\":false},[\"margin-left:10px\"]],[false,{\".swfw_pill_button.swfw_square_button .swfw-cta-button a\":false,\".swfw_pill_button.swfw_buttons_button .swfw-cta-button a\":false,\".swfw_pill_button.swfw_block_button .swfw-cta-button a\":false,\".swfw_pill_button.swfw-follow-button .swfw-cta-button a\":false},[\"border-radius:50px\"]],[false,{\".swfw_pill_button.swfw_square_button .swfw-cta-button a div\":false,\".swfw_pill_button.swfw_buttons_button .swfw-cta-button a div\":false,\".swfw_pill_button.swfw_block_button .swfw-cta-button a div\":false,\".swfw_pill_button.swfw-follow-button .swfw-cta-button a div\":false},[\"border-radius:50px\"]],[false,{\".swfw_shift_button.swfw_square_button\":false,\".swfw_shift_button.swfw_buttons_button\":false,\".swfw_shift_button.swfw_block_button\":false,\".swfw_shift_button.swfw-follow-button\":false},[\"transform:skew(-20deg)\",\"-moz-transform:skew(-20deg)\",\"-o-transform:skew(-20deg)\",\"-webkit-transform:skew(-20deg)\"]],[false,{\".swfw_shift_button.swfw_square_button div\":false,\".swfw_shift_button.swfw_buttons_button div\":false,\".swfw_shift_button.swfw_block_button div\":false,\".swfw_shift_button.swfw-follow-button div\":false},[\"transform:skew(20deg)\",\"-moz-transform:skew(20deg)\",\"-o-transform:skew(20deg)\",\"-webkit-transform:skew(20deg)\",\"align-items:center\",\"display:flex\",\"justify-content:space-around\",\"width:100%\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button\":false},[\"transform:skew(0deg)\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a\":false},[\"padding:none\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a:hover\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a:hover\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a:hover\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a:hover\":false},[\"background:rgba(33,33,33,.3)\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a div\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a div\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a div\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a div\":false},[\"background:none\",\"transform:skew(20deg)\",\"padding:10px 30px\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a div:hover\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a div:hover\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a div:hover\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a div:hover\":false},[\"background:none\"]],[false,{\".swfw-revoke-button\":false,\".swfw-authorization-button\":false},[\"width:70%\",\"text-align:center\",\"max-width:200px\"]],[false,{\".swfw-input-field\":false,\".swfw-follow-field\":false},[\"display:flex\",\"flex-flow:row nowrap\",\"justify-content:space-between\",\"align-items:center\",\"height:50px\",\"margin:15px auto\"]],[false,{\".swfw-follow-field.swfw-inactive a\":false},[\"cursor:initial\"]],[false,{\".swfw-follow-field.swfw-active a\":false},[\"cursor:pointer\"]],[false,{\".swfw-follow-field-icon\":false},[\"color:black\",\"width:40px\",\"font-size:40px\",\"line-height:42px\",\"font-weight:bold\",\"transition:all 200ms\",\"border-radius:3px\",\"height:40px\",\"text-align:center\",\"padding:2px\"]],[false,{\".swfw-widget label\":false},[\"font-size:14px\",\"width:100px\"]],[false,{\".swfw-follow-field label\":false},[\"text-align:right\"]],[false,{\".swfw-input-field input\":false,\".swfw-input-field select\":false,\".swfw-follow-field input\":false},[\"padding:10px\",\"width:50%\",\"height:100%\",\"border-radius:4px\"]],[false,{\".swfw-follow-field.swfw-inactive div\":false},[\"background:white\"]],[false,{\".swfw-follow-field.swfw-active div\":false},[\"color:white\"]],[false,{\"a.swp-hover-pin-button\":false},[\"background:#cd2029\",\"border:1px solid #aa1b29\",\"border:0\",\"border-bottom:none\",\"border-radius:3px\",\"box-shadow:none\",\"color:#fff\",\"font-family:Lato,sans-serif\",\"font-size:15px\",\"height:32px\",\"line-height:32px\",\"padding:0 20px\",\"position:absolute\",\"position:absolute\",\"text-decoration:none\",\"text-align:center\",\"transition:opacity .5s\",\"z-index:3200\",\"cursor:pointer\"]],[false,{\"a.swp-hover-pin-button:not(#_#_#_#_#_#_#_#_)\":false},[\"width:120px\"]],[false,{\"a.swp-hover-pin-button::before\":false},[\"content:\\\"A\\\"\",\"color:#fff\",\"float:left\",\"font-family:sw-icon-font\",\"font-size:20px\",\"font-weight:400\",\"line-height:36px\",\"margin-left:-5px\",\"margin-right:10px\"]],[false,{\"a.swp-hover-pin-button:hover::before\":false},[\"content:\\\"z\\\"\"]],[false,{\"a.swp-hover-pin-button:hover\":false,\"a.swp-hover-pin-button:focus\":false},[\"background:#aa1b29\",\"color:#fff\",\"text-decoration:none\"]],[false,{\".swp-pinterest-image-top\":false},[\"margin-bottom:20px\"]],[false,{\".swp-pinterest-image-bottom\":false},[\"margin-top:20px\"]],[false,{\".swp_pop_thumb\":false},[\"border-radius:3px\",\"float:left\",\"height:100px\",\"margin:5px 25px 5px 0\",\"width:100px\"]],[false,{\".swp_popular_post\":false},[\"clear:both\"]],[false,{\".swp_popular_post a.swp_popularity\":false},[\"border:none\",\"display:block\",\"line-height:1.5\",\"margin:20px 0\"]],[false,{\".swp_clearfix:after\":false},[\"clear:both\",\"content:\\\" \\\"\",\"display:block\",\"height:0\",\"visibility:hidden\"]],[false,{\"span.swp_pop_count\":false},[\"display:block\",\"font-size:70%\"]],[false,{\".swp_widget_box\":false},[\"border-radius:3px\"]],[false,{\".swp_hidden_pin_image\":false},[\"height:0\",\"opacity:0\",\"position:absolute\",\"top:0\",\"width:0\",\"z-index:-10\"]],[false,{\".swp-content-locator:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"margin:0\"]],[false,{\".swp-lightbox-wrapper\":false},[\"width:100%\",\"height:100%\",\"position:fixed\",\"top:0\",\"background:#fff\",\"z-index:999999\"]],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner\":false},[\"width:50%\",\"left:25%\",\"position:relative\",\"text-align:center\",\"top:10%\",\"background:#fff\",\"padding:35px\",\"border-radius:10px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner\":false},[\"width:80%\",\"left:10%\"]],[false,\"}\"],[false,\"@media (max-width: 450px){\"],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner\":false},[\"width:90%\",\"left:5%\"]],[false,\"}\"],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner h5\":false},[\"font-family:Lato,sans-serif\",\"font-size:25px\",\"margin-bottom:40px\",\"text-align:center\"]],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner .swp-lightbox-close\":false},[\"font-weight:bold\",\"height:20px\",\"width:20px\",\"cursor:pointer\",\"color:#30394f\",\"text-align:right\",\"transform:rotate(45deg)\",\"display:inline-block\",\"float:right\",\"margin:-30px\",\"font-size:25px\"]],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner .swp-lightbox-close:before\":false},[\"content:\\\"+\\\"\",\"font-family:arial\"]],[false,\"@media print{\"],[false,{\".swp-lightbox-wrapper\":false},[\"display:none\"]],[false,\"}\"],[false,{\".swp-lightbox-wrapper .swp_pinterest_icon.top_icon\":false,\".swp-lightbox-wrapper .swp_share_icon\":false},[\"color:#cd2029\",\"font-size:45px\",\"margin:0\",\"padding:0\",\"line-height:0\"]],[false,{\".swp-lightbox-wrapper .swp_share_icon\":false},[\"color:#000\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .swp-lightbox-inner\":false},[\"width:70%\",\"left:15%\",\"height:80%\",\"overflow-y:auto\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .swp-lightbox-inner h5\":false},[\"margin-bottom:40px\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper\":false},[\"text-align:center\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper\":false},[\"display:inline-block\",\"width:24%\",\"margin-right:1%\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper amp-img\":false,\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper amp-anim\":false},[\"border-radius:3px\",\"max-width:100%\",\"height:auto\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper .swp-hover-pin-button\":false},[\"position:initial\",\"display:block\",\"margin-top:10px\",\"margin-bottom:40px\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper .swp-hover-pin-button:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":8320,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"__EPYT__style-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/styles\\/ytprefs.min.css?ver=14.1.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"style\",\"handle\":\"__EPYT__style\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"__EPYT__style\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"9c3e04efd2df5c19054e5b96b851efb8\",\"parse_time\":0.10653495788574219,\"shake_time\":0.0001380443572998047,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".epyt-debug\":false},[\"cursor:pointer\",\"text-align:left\",\"background-color:#ddd\",\"color:#000\"]],[false,{\"amp-iframe.__youtube_prefs__\":false},[\"border-width:0\"]],[false,{\".epyt-gallery\":false},[\"text-align:center\"]],[false,{\".epyt-gallery .epyt-figure\":false},[\"margin-inline:0\",\"margin-block:0\"]],[false,{\".epyt-gallery amp-iframe\":false},[\"margin-bottom:0\"]],[false,{\".epyt-gallery.epyt-lb amp-iframe\":false},[\"display:none\"]],[false,{\".epyt-gallery.epyt-lb amp-iframe:not(#_#_#_#_#_#_#_#_)\":false},[\"height:0\"]],[false,{\".epyt-gallery-list\":false},[\"margin:0 -8px 0 -8px\",\"position:relative\",\"transition:opacity ease-out .3s\",\"display:block\"]],[false,{\".epyt-gallery-list .epyt-gallery-thumb\":false},[\"box-sizing:border-box\"]],[false,{\".epyt-gallery-list p\":false},[\"display:none\"]],[false,{\".epyt-gallery-clear\":false},[\"clear:both\"]],[false,{\".epyt-gallery-list.epyt-loading\":false},[\"opacity:.5\",\"transition:opacity ease-out .3s\"]],[false,{\".epyt-gallery-thumb\":false},[\"position:relative\",\"box-sizing:border-box\",\"overflow-y:hidden\",\"cursor:pointer\",\"opacity:1\",\"float:left\",\"padding:0 8px 10px 8px\",\"height:auto\"]],[false,{\".epyt-gallery-thumb:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".epyt-gallery-thumb.hover\":false},[\"position:relative\",\"opacity:1\",\"transition:opacity ease-out .3s\",\"height:auto\"]],[false,{\".epyt-gallery-img-box\":false},[\"width:100%\"]],[false,{\".epyt-gallery-img\":false},[\"height:0\",\"width:100%\",\"position:relative\"]],[false,{\".epyt-gallery-img:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:56.25%\",\"overflow:hidden\",\"background-size:cover\",\"background-position:center\"]],[false,{\".epyt-gallery-playhover\":false},[\"opacity:0\",\"position:absolute\",\"top:-10px\",\"left:0\",\"width:100%\",\"height:100%\",\"vertical-align:middle\",\"text-align:center\",\"transition:opacity ease-out .3s\"]],[false,{\".epyt-gallery-thumb.hover .epyt-gallery-playhover\":false,\".epyt-gallery-thumb.epyt-current-video .epyt-gallery-playhover\":false},[\"opacity:1\",\"top:0\",\"transition:all ease-out .3s\"]],[false,{\".epyt-gallery-thumb .epyt-gallery-playcrutch\":false},[\"display:inline-block\",\"height:100%\",\"vertical-align:middle\",\"width:0\"]],[false,{\".epyt-gallery-playhover .epyt-play-img\":false},[\"width:auto\",\"border:0\",\"box-sizing:border-box\"]],[false,{\".epyt-gallery-playhover .epyt-play-img:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\",\"max-width:15%\",\"padding:0\",\"margin:0\",\"min-width:30px\",\"vertical-align:middle\",\"display:inline-block\"]],[false,{\".epyt-gallery-title\":false},[\"font-size:80%\",\"line-height:120%\",\"padding:10px\"]],[false,{\".epyt-gallery-notitle\":false},[\"padding:4px\"]],[false,{\".epyt-gallery-notitle span\":false},[\"display:none\"]],[false,{\".epyt-gallery-rowtitle\":false},[\"text-align:center\",\"width:100%\",\"position:absolute\",\"left:0\",\"top:100%\",\"opacity:0\",\"z-index:10\",\"overflow-x:hidden\",\"text-overflow:ellipsis\",\"white-space:nowrap\"]],[false,{\".epyt-gallery-rowtitle.hover\":false},[\"opacity:1\",\"transition:opacity linear .2s\"]],[false,{\".epyt-gallery-rowbreak\":false},[\"clear:both\"]],[false,{\".epyt-pagination\":false},[\"clear:both\",\"text-align:center\",\"padding:10px 8px 10px 8px\"]],[false,{\".epyt-pagination.epyt-hide-pagination *:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".epyt-pagination>div\":false,\".epyt-pagenumbers>div\":false},[\"display:inline-block\",\"padding:0 2px 0 2px\",\"vertical-align:middle\"]],[false,{\".epyt-pagination .epyt-pagebutton\":false},[\"cursor:pointer\",\"display:inline-block\",\"padding:0 10px 0 10px\"]],[false,{\".epyt-pagebutton>div\":false},[\"display:inline\"]],[false,{\".epyt-pagination .epyt-loader\":false},[\"display:none\"]],[false,{\".epyt-gallery-list.epyt-loading .epyt-pagination .epyt-loader\":false},[\"display:inline-block\"]],[false,{\"body .lity-container\":false},[\"width:100%\",\"max-width:964px\"]],[false,{\".epyt-curtain .lity-opened amp-iframe\":false},[\"opacity:0\",\"transition:opacity .3s linear .5s\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-1 .epyt-gallery-thumb\":false},[\"width:100%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-2 .epyt-gallery-thumb\":false},[\"width:50%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-3 .epyt-gallery-thumb\":false},[\"width:33.333%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-4 .epyt-gallery-thumb\":false},[\"width:25%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-5 .epyt-gallery-thumb\":false},[\"width:20%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-6 .epyt-gallery-thumb\":false},[\"width:16.666%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-7 .epyt-gallery-thumb\":false},[\"width:14.285%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-8 .epyt-gallery-thumb\":false},[\"width:12.5%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-9 .epyt-gallery-thumb\":false},[\"width:11.111%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-10 .epyt-gallery-thumb\":false},[\"width:10%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-11 .epyt-gallery-thumb\":false},[\"width:9.09%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-12 .epyt-gallery-thumb\":false},[\"width:8.333%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-13 .epyt-gallery-thumb\":false},[\"width:7.692%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-14 .epyt-gallery-thumb\":false},[\"width:7.142%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-15 .epyt-gallery-thumb\":false},[\"width:6.666%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-16 .epyt-gallery-thumb\":false},[\"width:6.25%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-17 .epyt-gallery-thumb\":false},[\"width:5.882%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-18 .epyt-gallery-thumb\":false},[\"width:5.555%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-19 .epyt-gallery-thumb\":false},[\"width:5.263%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-20 .epyt-gallery-thumb\":false},[\"width:5%\"]],[false,{\".epyt-pagebutton.hide:not(#_#_#_#_#_#_#_)\":false,\".epyt-pagenumbers.hide:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"opacity:0\",\"visibility:hidden\"]],[false,{\".epyt-gallery-subscribe\":false},[\"text-align:center\",\"padding:15px 0 10px 0\",\"clear:both\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton:hover\":false},[\"display:inline-block\",\"padding:5px 10px\",\"border-radius:3px\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton:not(#_#_#_#_#_#_#_#_)\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#e62117\",\"color:#fff\",\"text-decoration:none\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-img\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-anim\":false},[\"padding:0 6px 3px 0\",\"display:inline-block\",\"background:transparent\",\"-webkit-box-shadow:none\",\"box-shadow:none\",\"margin:0\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:20px\",\"height:auto\",\"vertical-align:middle\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__\":false},[\"background-color:#000\",\"background-image:-webkit-linear-gradient(top,#000,#444)\",\"background-image:linear-gradient(to bottom,#000,#444)\",\"padding:25px\",\"height:auto\",\"text-align:left\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ *:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#e3e3e3\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ a\":false},[\"text-decoration:underline\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:hover\":false},[\"display:inline-block\",\"padding:5px 10px\",\"border-radius:3px\",\"font-weight:normal\",\"border-width:0\",\"box-sizing:border-box\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:not(#_#_#_#_#_#_#_#_)\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#e62117\",\"color:#fff\",\"text-decoration:none\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-img\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-anim\":false},[\"padding:0 6px 3px 0\",\"display:inline-block\",\"background:transparent\",\"-webkit-box-shadow:none\",\"box-shadow:none\",\"margin-left:8px\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-img:not(#_#_#_#_#_#_#_#_)\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:20px\",\"height:auto\",\"vertical-align:middle\"]],[false,{\"body .epyt-gallery-img-gdpr\":false},[\"background-color:#000\",\"background-image:-webkit-linear-gradient(top,#000,#444)\",\"background-image:linear-gradient(to bottom,#000,#444)\"]],[false,{\".epyt-facade\":false},[\"position:relative\",\"padding-bottom:56.25%\",\"height:0\",\"overflow:hidden\",\"max-width:100%\",\"-webkit-transition:.4s all\",\"-moz-transition:.4s all\",\"transition:.4s all\"]],[false,{\".epyt-facade:hover\":false},[\"-webkit-filter:brightness(90%)\",\"-moz-filter:brightness(90%)\",\"filter:brightness(90%)\"]],[false,{\".epyt-facade amp-img.epyt-facade-poster\":false,\".epyt-facade amp-anim.epyt-facade-poster\":false},[\"display:block\",\"margin:0\",\"max-width:100%\",\"width:100%\",\"position:absolute\",\"top:50%\",\"left:50%\",\"transform:translate(-50%,-50%)\",\"border:0\",\"height:auto\",\"cursor:pointer\"]],[false,{\".epyt-facade button.epyt-facade-play\":false},[\"position:absolute\",\"left:50%\",\"top:50%\",\"width:68px\",\"height:48px\",\"margin-left:-34px\",\"margin-top:-24px\",\"-webkit-transition:opacity .25s cubic-bezier(0,0,.2,1)\",\"transition:opacity .25s cubic-bezier(0,0,.2,1)\",\"cursor:pointer\"]],[false,{\".epyt-facade button.epyt-facade-play:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:transparent\",\"border-width:0\"]],[false,{\".epyt-facade button.epyt-facade-play svg\":false},[\"height:100%\",\"left:0\",\"position:absolute\",\"top:0\",\"width:100%\",\"pointer-events:none\"]],[false,{\".epyt-facade button.epyt-facade-play svg .ytp-large-play-button-bg\":false},[\"-webkit-transition:fill .1s cubic-bezier(.4,0,1,1),fill-opacity .1s cubic-bezier(.4,0,1,1)\",\"transition:fill .1s cubic-bezier(.4,0,1,1),fill-opacity .1s cubic-bezier(.4,0,1,1)\",\"fill:#212121\",\"fill-opacity:.8\"]],[false,{\".epyt-facade:hover button.epyt-facade-play svg .ytp-large-play-button-bg\":false},[\"-webkit-transition:fill .1s cubic-bezier(0,0,.2,1),fill-opacity .1s cubic-bezier(0,0,.2,1)\",\"transition:fill .1s cubic-bezier(0,0,.2,1),fill-opacity .1s cubic-bezier(0,0,.2,1)\",\"fill:#f00\",\"fill-opacity:1\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.epyt-facade\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\"]],[false,{\".wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.__youtube_prefs_gdpr__\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.__youtube_prefs_gdpr__\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"overflow-y:auto\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper.epyt-is-override__wrapper:before\":false},[\"padding:0\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper.epyt-is-override__wrapper .epyt-is-override.__youtube_prefs_gdpr__\":false},[\"position:relative\",\"top:unset\",\"right:unset\",\"bottom:unset\",\"left:unset\"]],[false,{\".ytvi-story-container\":false},[\"display:block\",\"max-width:100%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":81,\"final_size\":0,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"__EPYT__style-inline-css\",\"type\":\"text\\/css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"\\r\\n .epyt-gallery-thumb {\\r\\n width: 33.333%;\\r\\n }\\r\\n \",\"handle\":\"__EPYT__style\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"\\r\\n .epyt-gallery-thumb {\\r\\n width: 33.333%;\\r\\n }\\r\\n \",\"handle\":\"__EPYT__style\"}],\"priority\":70,\"hash\":\"c0787a0c009a93e8e21ea0b9ce09b54f\",\"parse_time\":0.0006740093231201172,\"shake_time\":3.0994415283203125e-6,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".epyt-gallery-thumb\":false},[\"width:33.333%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":323,\"final_size\":64,\"element\":{\"name\":\"style\",\"attributes\":{\"type\":\"text\\/css\",\"id\":\"wp-custom-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"theme.php\",\"line\":1824,\"function\":\"wp_custom_css_cb\",\"hook\":\"wp_head\",\"priority\":101}],\"priority\":60,\"hash\":\"ed93f9bffe93712a600c426300d64207\",\"parse_time\":0.002050161361694336,\"shake_time\":2.193450927734375e-5,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".tek-ai\":false},[\"height:auto\"]],[false,{\".tek-ai amp-img\":false,\".tek-ai amp-anim\":false},[\"max-height:570px\"]],[false,{\".tek-ai amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".tek-ai amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[false,\"@media (max-width:992px){\"],[false,{\".tek-ai\":false},[\"height:auto\"]],[false,{\".tek-ai:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width: 1400px){\"],[false,{\".tek-ai\":false},[\"height:auto\"]],[false,\"}\"],[true,{\".footer-2022__menu--list.footer_links:nth-child(4)\":true},[\"display:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":23614,\"final_size\":1439,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/landing-page.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"6bf24272588771b3d041d8d342dc232e\",\"parse_time\":0.2652928829193115,\"shake_time\":0.0003540515899658203,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"body\":true},[\"background-color:#fff\",\"color:#818181\",\"font-size:19px\",\"font-weight:500\",\"line-height:32px\"]],[true,{\"body:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:\\\"Roboto\\\",sans-serif\"]],[true,\"@media (max-width: 768px){\"],[true,{\"body\":true},[\"line-height:21px\"]],[true,\"}\"],[true,{\"amp-img\":true,\"amp-anim\":false},[\"max-width:100%\"]],[true,{\"h1\":true},[\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#fff\",\"font-size:40px\",\"line-height:38px\",\"font-weight:600\",\"margin-bottom:40px\"]],[true,{\"h2\":true},[\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#fff\",\"font-size:48px\",\"line-height:50px\",\"font-weight:600\",\"margin-bottom:30px\"]],[true,\"@media (max-width: 768px){\"],[true,{\"h2\":true},[\"font-size:35px\",\"line-height:36px\"]],[true,\"}\"],[true,{\"h3\":true},[\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#fff\",\"font-size:40px\",\"line-height:38px\",\"font-weight:600\",\"margin:40px 0\"]],[true,{\"header\":true},[\"top:0\",\"width:100%\",\"height:100px\",\"position:absolute\",\"background-color:transparent\",\"z-index:3\"]],[true,{\"header .container\":true,\"header .row\":true},[\"height:100%\"]],[true,{\"button\":true,\"[type=submit]\":true},[\"cursor:pointer\"]],[true,{\"a\":true,\"a:hover\":true,\"a:visited\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"footer\":true},[\"padding:80px 0\",\"background-color:#fff\",\"border-top:2px solid #0ad1e2\"]],[true,{\"footer small\":true},[\"font-size:21px\",\"line-height:28px\",\"display:block\",\"font-weight:500\",\"color:#8d8d8d\"]],[false,{\".footer__blue-bg\":false},[\"background-color:#00abeb\",\"color:#fff\"]],[false,{\".footer__side-text\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#00abeb\",\"font-size:22px\",\"font-weight:600\"]],[false,{\".footer__side-text strong\":false},[\"color:#152649\"]],[false,{\".footer__ready\":false},[\"text-align:center\",\"margin-top:50px\",\"position:relative\"]],[false,{\".footer__ready:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"width:100%\",\"height:1px\",\"background-color:#cacaca\",\"left:0\",\"top:50%\",\"z-index:0\"]],[false,{\".footer__ready-button\":false},[\"padding:10px 20px\",\"color:#fff\",\"border:0\",\"background-color:#00abeb\",\"text-transform:uppercase\",\"font-weight:600\",\"display:inline-block\",\"font-size:13px\",\"position:relative\"]],[false,{\".footer__ready-button--short\":false},[\"margin-top:-15px\"]],[false,{\".footer__services\":false},[\"padding:40px 0\",\"text-transform:uppercase\",\"font-size:15px\",\"line-height:20px\"]],[false,{\".footer__services amp-img\":false,\".footer__services amp-anim\":false},[\"margin-left:30px\"]],[false,{\".footer__kubernetes\":false},[\"text-align:center\",\"margin-top:50px\",\"position:relative\"]],[false,{\".footer__kubernetes:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"width:100%\",\"height:1px\",\"background-color:#cacaca\",\"left:0\",\"top:calc(50% - 15px)\",\"z-index:0\"]],[false,{\".footer__kubernetes--short:before\":false},[\"top:calc(50% - 5px)\"]],[false,{\".footer__kubernetes-wrap\":false},[\"position:relative\"]],[true,\"@media (max-width: 768px){\"],[true,{\"footer\":true},[\"border-top:0\"]],[false,{\".footer__separate\":false},[\"display:block\"]],[false,{\".footer__services amp-img\":false,\".footer__services amp-anim\":false},[\"margin-left:0\",\"max-width:33%\",\"margin-top:10px\",\"height:50px\"]],[false,{\".footer__call amp-img\":false,\".footer__call amp-anim\":false},[\"max-width:70px\",\"margin-top:50px\",\"margin-bottom:20px\"]],[true,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".footer__side-text\":false},[\"padding:0 20%\"]],[false,{\"footer .logo amp-img\":false,\"footer .logo amp-anim\":false},[\"margin-bottom:50px\"]],[false,\"}\"],[false,{\".top-banner\":false},[\"width:100%\",\"height:620px\",\"background-color:#2a2929\",\"background-repeat:no-repeat\",\"background-position:center\",\"background-size:cover\",\"position:relative\",\"overflow:hidden\"]],[false,\"@media (max-width: 768px){\"],[false,{\".top-banner\":false},[\"height:auto\",\"padding-top:120px\"]],[false,\"}\"],[false,{\".top-banner .container\":false,\".top-banner .row\":false},[\"height:100%\",\"position:relative\",\"z-index:1\"]],[false,{\".top-banner__image\":false},[\"margin-top:auto\"]],[false,\"@media (max-width: 768px){\"],[false,{\".top-banner__image\":false},[\"z-index:-1\"]],[false,\"}\"],[false,{\".top-banner__item\":false},[\"color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:18px\",\"line-height:18px\",\"margin-top:20px\",\"margin-left:0\",\"position:relative\",\"font-weight:700\"]],[false,{\".top-banner__green-box\":false},[\"background-color:rgba(20,178,237,.2)\",\"padding:20px\",\"color:#fff\",\"border-radius:10px\"]],[false,{\".top-text\":false},[\"font-size:25px\",\"line-height:25px\",\"margin-bottom:20px\"]],[false,{\".form-top\":false},[\"border:0\",\"border-bottom:1px solid #fff\",\"background:transparent\",\"height:40px\",\"margin-bottom:25px\",\"padding:0\",\"width:100%\",\"font-size:13px\",\"color:#fff\"]],[false,{\".top-banner__green-box .wpcf7-not-valid-tip\":false},[\"font-size:10px\",\"line-height:15px\",\"margin-top:-20px\",\"margin-bottom:5px\"]],[false,{\".top-banner__green-box .wpcf7-response-output\":false},[\"font-size:12px\",\"line-height:15px\"]],[false,{\".form-textarea\":false},[\"border:1px solid #fff\",\"background:transparent\",\"margin-bottom:10px\",\"padding:0 10px\",\"width:100%\",\"font-size:13px\",\"color:#fff\",\"height:90px\",\"position:relative\",\"border-radius:5px\",\"margin-top:10px\"]],[false,{\".top-banner__green-box .message:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"width:32px\",\"height:40px\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/04\\/mrdata4.png\\\")\",\"top:-20px\",\"right:-15px\"]],[false,{\".form-checkbox\":false},[\"display:flex\",\"flex-wrap:wrap\",\"justify-content:space-between\",\"margin-bottom:20px\",\"margin-top:10px\"]],[false,{\".form-checkbox .wpcf7-list-item\":false},[\"margin:0\",\"margin:0\",\"width:30%\",\"border:1px solid #fff\",\"padding:10px 5px\",\"font-size:12px\",\"line-height:12px\",\"text-align:center\",\"font-weight:400\"]],[false,{\".form-checkbox .wpcf7-list-item input[type=radio]\":false},[\"display:none\"]],[false,{\".form-checkbox .wpcf7-list-item.checked\":false},[\"background-color:#eee\",\"color:#09aeec\",\"font-weight:800\"]],[false,{\".form-checkbox .wpcf7-list-item label\":false},[\"margin-bottom:0\",\"display:flex\",\"align-items:center\",\"height:100%\",\"justify-content:center\"]],[false,{\".top-btn\":false},[\"padding:10px\",\"color:#fff\",\"border:0\",\"background-color:#09aeec\",\"text-transform:uppercase\",\"font-weight:700\",\"float:left\",\"width:100%\"]],[false,{\".top-banner--cl h1\":false},[\"color:#152649\"]],[false,{\".top-banner--cl:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:100%\",\"height:100%\",\"background:#fff\",\"background:linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,1) 90%,rgba(255,255,255,1) 100%)\",\"top:0\",\"left:0\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".top-banner--cl:after\":false},[\"background:linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%)\"]],[false,\"}\"],[false,\"@media (max-width: 700px){\"],[false,{\".top-banner--cl:after\":false},[\"background:linear-gradient(0deg,rgba(255,255,255,0) 0%,rgba(255,255,255,1) 90%,rgba(255,255,255,1) 100%)\"]],[false,\"}\"],[false,{\".top-banner--cl .top-banner__item\":false},[\"color:#03aceb\"]],[false,{\".top-banner--cl .top-banner__green-box\":false},[\"background-color:rgba(9,174,236,.6)\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".top-banner--cl .top-banner__green-box\":false},[\"margin-bottom:60px\"]],[false,\"}\"],[false,{\"#calendly-button-top\":false},[\"position:absolute\",\"bottom:20px\",\"z-index:1\",\"left:50%\",\"transform:translate(-50%,0)\",\"width:70%\"]],[false,{\"#calendly-button-top.top-mid\":false},[\"top:-57px\"]],[false,{\".top-btn\":false},[\"padding:15px 30px\"]],[false,{\".trusted-by\":false},[\"width:100%\",\"height:80px\",\"background-color:#2a2929\"]],[false,{\".trusted-by .container\":false,\".trusted-by .row\":false},[\"height:100%\"]],[false,{\".trusted-by amp-img\":false,\".trusted-by amp-anim\":false},[\"height:auto\"]],[false,{\".trusted-by amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".trusted-by amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:auto\"]],[false,{\".trusted-by__wrap-guide\":false},[\"width:150px\",\"height:80px\",\"float:left\",\"display:flex\",\"justify-content:center\",\"align-items:center\"]],[false,{\".trusted-by .trusted-guide\":false},[\"height:auto\"]],[false,{\".trusted-by .trusted-guide:not(#_#_#_#_#_#_#_)\":false},[\"width:140px\"]],[false,{\".trusted-by__gallery\":false},[\"width:calc(100% - 200px)\",\"margin-left:50px\",\"float:right\"]],[false,{\".trusted-by__gallery:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".trusted-by__gallery .item\":false},[\"display:flex\",\"justify-content:center\",\"align-items:center\",\"height:80px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".trusted-by__wrap-guide\":false},[\"width:100px\"]],[false,{\".trusted-by .trusted-guide:not(#_#_#_#_#_#_#_)\":false},[\"width:90px\"]],[false,{\".trusted-by__gallery\":false},[\"width:calc(100% - 130px)\",\"margin-left:30px\"]],[false,{\".trusted-by__gallery:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,\"}\"],[false,{\".steps\":false},[\"width:100%\",\"position:relative\",\"padding:150px 0\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/04\\/bd-1.png\\\")\",\"background-repeat:no-repeat\",\"background-position:center\",\"background-size:cover\"]],[false,\"@media (max-width: 768px){\"],[false,{\".steps\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".steps h2\":false},[\"color:#21283b\"]],[false,{\".steps strong\":false},[\"color:#21283b\",\"font-weight:600\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".steps amp-img\":false,\".steps amp-anim\":false},[\"margin-bottom:70px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".steps strong\":false},[\"display:block\",\"margin-top:20px\"]],[false,\"}\"],[false,{\".phrase\":false},[\"width:100%\",\"position:relative\",\"font-size:22px\",\"background-color:#151515\"]],[false,{\".phrase--mid\":false},[\"padding:0px 0 260px\"]],[false,{\".trusted--mid\":false},[\"margin-top:50px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".phrase\":false},[\"padding:0\"]],[false,\"}\"],[false,{\".phrase strong\":false},[\"font-weight:600\",\"color:#09aeec\"]],[false,{\".phrase__btn\":false},[\"padding:15px 50px\",\"color:#fff\",\"border:0\",\"background-color:#09aeec\",\"margin-top:30px\",\"text-transform:uppercase\",\"font-weight:600\"]],[false,{\".phrase__wrap-content\":false},[\"position:absolute\",\"bottom:100px\",\"width:100%\",\"color:#fff\"]],[false,{\".phrase__wrap-content--kindle:not(#_#_#_#_#_#_#_)\":false},[\"bottom:200px\"]],[false,{\".phrase__wrap-content--mid:not(#_#_#_#_#_#_#_)\":false},[\"bottom:200px\"]],[false,{\".phrase__wrap-content p\":false},[\"max-width:950px\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".phrase__wrap-content amp-img\":false,\".phrase__wrap-content amp-anim\":false},[\"float:left\",\"margin-right:40px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".phrase__wrap-content amp-img\":false,\".phrase__wrap-content amp-anim\":false},[\"float:none\",\"display:block\",\"margin:0 auto 40px\"]],[false,\"}\"],[false,{\".phrase__wrap-content a\":false},[\"margin:0 auto\",\"display:block\",\"text-align:center\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".phrase\":false},[\"line-height:25px\",\"font-weight:400\"]],[false,{\".phrase__wrap-bg\":false},[\"background-color:#151515\",\"overflow-x:hidden\"]],[false,{\".phrase__wrap-bg amp-img\":false,\".phrase__wrap-bg amp-anim\":false},[\"height:700px\",\"width:auto\",\"max-width:none\",\"margin:0 -433px 200px\"]],[false,{\".devops-styles .phrase__wrap-bg amp-img\":false,\".devops-styles .phrase__wrap-bg amp-anim\":false},[\"margin:0 -433px 0px\"]],[false,{\".phrase__wrap-content:not(#_#_#_#_#_#_#_)\":false},[\"bottom:50px\"]],[false,{\".phrase__wrap-content--kindle:not(#_#_#_#_#_#_#_)\":false},[\"bottom:200px\"]],[false,{\".devops-styles .phrase__wrap-content:not(#_#_#_#_#_#_#_)\":false},[\"bottom:30px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".phrase__wrap-content--kindle:not(#_#_#_#_#_#_#_)\":false},[\"bottom:50px\"]],[false,\"}\"],[false,{\".time-money\":false},[\"width:100%\",\"position:relative\",\"padding:100px 0\",\"background-color:#fff\",\"color:#8d8d8d\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/04\\/bd-2.png\\\")\",\"background-repeat:no-repeat\",\"background-position:bottom center\",\"background-size:cover\"]],[false,{\".time-money--mid\":false},[\"color:#152649\"]],[false,{\".time-money--short\":false},[\"padding:100px 0 250px\"]],[false,{\".time-money--short4\":false},[\"padding:100px 0 170px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".time-money--short4\":false},[\"padding:100px 0 50px\"]],[false,\"}\"],[false,{\".time-money h2\":false},[\"color:#152649\",\"margin-bottom:50px\"]],[false,{\".time-money strong\":false},[\"color:#09aeec\",\"font-weight:600\"]],[false,{\".time-money--mid p\":false},[\"font-weight:400\"]],[false,{\".time-money--mid p strong\":false},[\"color:inherit\"]],[false,{\".time-money__image\":false},[\"margin-bottom:50px\"]],[false,{\".time-money .trusted-by\":false},[\"margin-top:50px\",\"border-radius:10px\"]],[false,\"@media (max-width: 600px){\"],[false,{\".time-money__image\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".time-money__light\":false},[\"font-weight:300\"]],[false,{\".time-money__btn\":false},[\"padding:15px 50px\",\"color:#fff\",\"border:0\",\"background-color:#09aeec\",\"margin-top:30px\",\"text-transform:uppercase\",\"font-weight:600\"]],[false,{\".time-money--short p\":false},[\"max-width:950px\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".time-money--short p amp-img\":false,\".time-money--short p amp-anim\":false},[\"float:left\",\"margin-right:40px\",\"margin-bottom:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".time-money--short p amp-img\":false,\".time-money--short p amp-anim\":false},[\"float:none\",\"display:block\",\"margin:0 auto 40px\"]],[false,\"}\"],[false,{\".time-money--short a\":false},[\"margin:0 auto\",\"display:block\",\"text-align:center\"]],[false,{\".graphics-gallery .owl-dots\":false},[\"display:flex\",\"justify-content:center\",\"position:relative\",\"margin:30px auto\",\"flex-direction:row\"]],[false,{\".graphics-gallery .owl-dot\":false},[\"border:0\",\"border-radius:50%\",\"display:block\",\"width:15px\",\"height:15px\",\"margin:0 5px\"]],[false,{\".graphics-gallery .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#e5e5e5\"]],[false,{\".graphics-gallery .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#152649\"]],[false,{\".kubernetes\":false},[\"width:100%\",\"position:relative\",\"padding:100px 0 80px\",\"background-color:#ececec\",\"color:#8d8d8d\",\"font-weight:600\"]],[false,{\".kubernetes--long\":false},[\"padding:100px 0 180px\"]],[false,{\".kubernetes h2\":false},[\"color:#09aeec\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes\":false},[\"padding:50px 0\"]],[false,{\".kubernetes h2\":false},[\"border:1px solid #ccc\",\"padding:20px\",\"font-size:30px\",\"line-height:32px\",\"margin-top:30px\"]],[false,\"}\"],[false,{\".kubernetes strong\":false},[\"color:#8d8d8d\",\"margin-bottom:10px\",\"font-size:21px\",\"display:block\"]],[false,{\".kubernetes__item\":false},[\"margin-bottom:10px\",\"font-size:16px\"]],[false,{\".kubernetes__item i\":false},[\"color:#152649\",\"margin-right:10px\"]],[false,{\".kubernetes__contour\":false},[\"background-color:#09aeec\",\"color:#fff\",\"font-size:16px\",\"display:inline\",\"padding:3px 10px\",\"font-weight:500\"]],[false,{\".kubernetes__contour strong\":false},[\"color:#fff\",\"font-size:16px\",\"display:inline\",\"margin-bottom:0\",\"font-weight:600\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__contour\":false},[\"display:block\",\"text-align:center\",\"margin-top:20px\",\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".city-phrase\":false},[\"width:100%\",\"position:relative\",\"padding:200px 0 300px\",\"background-color:#151515\"]],[false,{\".city-phrase--mid\":false},[\"padding:0px 0 300px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".city-phrase\":false},[\"padding:50px 0\"]],[false,\"}\"],[false,{\".clients\":false},[\"width:100%\",\"position:relative\",\"background-color:#f1f1f1\",\"padding-bottom:40px\",\"border-top:2px solid #0ad1e2\"]],[false,{\".clients__wrap\":false},[\"margin-top:-150px\",\"background-color:#fff\",\"padding:60px 60px 80px\",\"border-radius:10px\",\"-webkit-box-shadow:10px 10px 20px 0 rgba(12,39,41,.5)\",\"box-shadow:10px 10px 20px 0 rgba(12,39,41,.5)\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".clients\":false},[\"background-color:#fff\",\"border-top:0\",\"-webkit-box-shadow:10px 10px 20px 0 rgba(12,39,41,.5)\",\"box-shadow:10px 10px 20px 0 rgba(12,39,41,.5)\",\"z-index:1\",\"padding:50px 0 70px\",\"overflow-x:hidden\"]],[false,{\".clients__wrap\":false},[\"margin-top:0\",\"padding:0\",\"-webkit-box-shadow:none\",\"box-shadow:none\"]],[false,{\".clients .container-fluid\":false},[\"padding:0\"]],[false,\"}\"],[false,{\".clients__wrap h2\":false},[\"color:#152649\",\"margin-bottom:0\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".clients__wrap h2\":false},[\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".clients__slider\":false,\".clients__slider2\":false},[\"padding-right:50px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".clients__slider\":false,\".clients__slider2\":false},[\"padding-right:0\"]],[false,\"}\"],[false,{\".clients__slider .owl-nav\":false},[\"position:absolute\",\"width:calc(100% - 50px)\",\"text-align:center\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"margin-top:20px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".clients__slider .owl-nav\":false},[\"width:80px\",\"justify-content:flex-start\",\"z-index:1\"]],[false,\"}\"],[false,{\".clients__slider .owl-prev\":false,\".clients__slider .owl-next\":false},[\"width:30px\",\"height:30px\",\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[false,{\".clients__slider .owl-prev:not(#_#_#_#_#_#_#_)\":false,\".clients__slider .owl-next:not(#_#_#_#_#_#_#_)\":false},[\"color:#152649\",\"border:2px solid #152649\",\"font-size:15px\",\"line-height:15px\"]],[false,{\".clients__slider .owl-prev\":false},[\"margin-right:10px\"]],[false,{\".clients__slider .owl-dots\":false},[\"position:absolute\",\"right:15px\",\"display:flex\",\"margin:auto\",\"height:80px\",\"bottom:calc(50% - 40px)\",\"flex-direction:column\",\"justify-content:center\"]],[false,\"@media (max-width: 768px){\"],[false,{\".clients__slider .owl-dots\":false},[\"justify-content:flex-end\"]],[false,\"}\"],[false,{\".clients__slider2 .owl-dots\":false},[\"position:absolute\",\"right:15px\",\"display:flex\",\"display:block\",\"margin:auto\",\"height:80px\",\"bottom:calc(50% - 15px)\",\"flex-direction:column\",\"justify-content:center\"]],[false,{\".clients__slider .owl-dot\":false,\".clients__slider2 .owl-dot\":false},[\"width:10px\",\"height:10px\",\"border:0\",\"border-radius:50%\",\"display:block\",\"margin:5px 0\"]],[false,{\".clients__slider .owl-dot:not(#_#_#_#_#_#_#_)\":false,\".clients__slider2 .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#e5e5e5\"]],[false,{\".clients__slider .owl-dot.active:not(#_#_#_#_#_#_#_)\":false,\".clients__slider2 .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#00abeb\"]],[false,\"@media (max-width: 768px){\"],[false,{\".clients__slider .owl-dots\":false,\".clients__slider2 .owl-dots\":false},[\"position:relative\",\"margin-top:30px\",\"flex-direction:row\",\"right:0\",\"height:auto\",\"display:flex\"]],[false,{\".clients__slider .owl-dot\":false,\".clients__slider2 .owl-dot\":false},[\"width:15px\",\"height:15px\",\"margin:0 5px\"]],[false,{\".clients__slider .owl-dot.active:not(#_#_#_#_#_#_#_)\":false,\".clients__slider2 .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#152649\"]],[false,\"}\"],[false,{\".clients__slider .owl-stage\":false},[\"display:flex\",\"align-items:stretch\"]],[false,{\".clients__slider .owl-item\":false},[\"display:flex\"]],[false,{\".clients__text\":false},[\"overflow:hidden\"]],[false,{\".clients__name\":false},[\"overflow:hidden\"]],[false,{\".clients__item\":false},[\"border:2px solid #00abeb\",\"border-radius:5px\",\"padding:40px\",\"color:#000\",\"font-size:16px\",\"line-height:18px\",\"display:flex\",\"flex-direction:column\",\"justify-content:space-between\",\"margin-left:10px\"]],[false,{\".clients__by\":false},[\"display:flex\",\"align-items:center\"]],[false,{\".clients__picture\":false},[\"width:70px\",\"height:70px\",\"min-width:70px\",\"border-radius:50%\",\"border:5px solid #00abeb\",\"margin-right:20px\",\"justify-content:center\",\"align-items:center\",\"display:flex\",\"object-fit:cover\",\"overflow:hidden\"]],[false,{\".clients__picture amp-img\":false,\".clients__picture amp-anim\":false},[\"object-fit:contain\",\"filter:grayscale(1)\"]],[false,{\".clients__name\":false},[\"font-family:\\\"Rajdhani\\\",sans-serif\",\"color:#5b5b5b\",\"font-weight:600\",\"text-transform:uppercase\",\"line-height:20px\"]],[false,{\".clients__name strong\":false},[\"color:#00abeb\"]],[false,{\".contact\":false},[\"width:100%\",\"position:relative\",\"padding:80px 0 100px\",\"background-color:#f1f1f1\",\"color:#21283b\",\"font-size:13px\",\"font-weight:700\"]],[false,\"@media (max-width: 768px){\"],[false,{\".contact\":false},[\"padding:50px 0 30px\",\"border-bottom:1px solid #c5c8cf\"]],[false,\"}\"],[false,{\".contact h3\":false},[\"color:#21283b\",\"margin-top:0\",\"font-weight:800\"]],[false,{\".devops-styles .contact h3\":false},[\"text-transform:none\"]],[false,{\".contact p\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"margin-bottom:40px\",\"line-height:20px\",\"color:#636363\"]],[false,{\".contact strong\":false},[\"color:#21283b\",\"font-weight:900\"]],[false,{\".devops-styles .contact strong\":false},[\"font-size:18px\",\"display:block\"]],[true,{\".contact__ceo\":true},[\"margin-bottom:80px\"]],[true,\"@media (max-width: 1000px){\"],[true,{\".contact__ceo\":true},[\"float:left\",\"width:40%\",\"margin-bottom:0\",\"margin-right:20px\"]],[false,{\".contact p\":false},[\"margin-bottom:10px\",\"line-height:16px\"]],[false,{\".contact__rotate\":false},[\"width:40%\",\"margin-bottom:0\",\"margin-right:20px\",\"margin-top:70px\"]],[false,{\".contact__rotate .item amp-img\":false,\".contact__rotate .item amp-anim\":false},[\"margin-bottom:20px\"]],[false,{\".devops-styles .contact strong\":false},[\"margin-bottom:30px\"]],[true,\"}\"],[false,{\".contact__blue:not(#_#_#_#_#_#_#_)\":false},[\"color:#00abeb\"]],[true,{\"form\":true},[\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\"#wpcf7-f2555-o2 strong\":false},[\"font-size:18px\",\"display:block\",\"margin-bottom:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\"#wpcf7-f2555-o2 .no-margin\":false},[\"margin-top:30px\",\"margin-bottom:30px\",\"padding-bottom:50px\",\"border-bottom:1px solid #c5c8cf\"]],[false,\"}\"],[false,{\".form-contact\":false},[\"width:100%\",\"border:0\",\"border-bottom:1px solid #ddd\",\"background-color:transparent\",\"color:#959595\",\"font-size:15px\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".form-contact .col-md-4\":false,\".devops-styles .contact .col-md-3\":false},[\"margin-bottom:20px\"]],[false,{\"input.form-contact\":false},[\"height:40px\"]],[false,{\"textarea.form-contact\":false},[\"height:115px\",\"line-height:20px\"]],[false,{\".form-btn\":false},[\"color:#21283b\",\"border:1px solid #21283b\",\"padding:10px 30px\",\"text-transform:uppercase\",\"font-size:15px\",\"font-weight:700\",\"border-radius:5px\"]],[false,{\".devops-styles .form-btn\":false},[\"width:100%\"]],[true,{\"::-webkit-input-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:#959595\"]],[true,{\":-moz-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:#959595\"]],[true,{\"::-moz-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:#959595\"]],[true,{\":-ms-input-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:#959595\"]],[false,{\".top-banner ::-webkit-input-placeholder:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".top-banner :-moz-placeholder:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".top-banner ::-moz-placeholder:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".top-banner :-ms-input-placeholder:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".ajax-loader:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":32514,\"final_size\":862,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/new-styles.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"027619c7f9b61a6c4dcfcb8a6160ac60\",\"parse_time\":0.4198160171508789,\"shake_time\":0.0004949569702148438,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"body\":true},[\"background-color:#f7f7f7\"]],[true,{\"body:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".no-overflow\":false},[\"overflow:hidden\"]],[true,{\"h1\":true},[\"font-family:\\\"Raleway\\\",sans-serif\"]],[true,{\"h2\":true},[\"font-size:32px\",\"line-height:32px\",\"font-family:\\\"Rajdhani\\\",sans-serif\",\"font-weight:400\",\"color:#182647\",\"margin-bottom:20px\",\"padding-bottom:20px\"]],[true,{\"h2 strong\":true},[\"color:#182647\",\"font-weight:700\"]],[true,{\"h2:after\":true},[\"width:470px\",\"max-width:100%\",\"height:1px\",\"left:0\",\"bottom:0\",\"content:\\\"\\\"\",\"background-color:#182647\",\"position:absolute\",\"box-shadow:3px 3px 12px rgba(24,38,71,.4)\"]],[false,{\"h2.bolder\":false},[\"text-transform:uppercase\",\"font-weight:700\"]],[true,{\"h3\":true},[\"font-size:40px\",\"line-height:40px\",\"text-transform:uppercase\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:700\",\"color:#182647\"]],[true,\"@media (max-width: 1024px){\"],[true,{\"h3\":true},[\"font-size:30px\",\"line-height:30px\"]],[true,\"}\"],[false,{\".container-fluid\":false},[\"max-width:unset\"]],[false,{\".container-fluid:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".new-home__top\":false},[\"width:100%\",\"height:600px\",\"background-color:#121d3d\",\"margin-top:100px\",\"color:#182647\",\"font-size:24px\",\"line-height:30px\"]],[false,{\".new-home__top:not(#_#_#_#_#_#_#_)\":false},[\"opacity:0\"]],[false,{\".new-home__top .owl-nav\":false},[\"position:absolute\",\"width:calc(100%)\",\"text-align:center\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"margin-top:-50px\"]],[false,{\".new-home__top .owl-prev\":false,\".new-home__top .owl-next\":false},[\"width:30px\",\"height:30px\",\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[false,{\".new-home__top .owl-prev:not(#_#_#_#_#_#_#_)\":false,\".new-home__top .owl-next:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\",\"border:2px solid #fff\",\"font-size:15px\",\"line-height:15px\"]],[false,{\".new-home__top .owl-prev\":false},[\"margin-right:10px\"]],[false,{\".new-home__top h1\":false},[\"font-size:90px\",\"line-height:90px\",\"color:#fff\",\"font-weight:700\",\"margin:0 0 15px\"]],[false,{\".new-home__top .color-point\":false},[\"color:#24ffff\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__top h1\":false},[\"font-size:45px\",\"line-height:45px\"]],[false,\"}\"],[false,{\".new-home__top h2\":false},[\"line-height:23px\",\"color:#24c1ff\",\"margin:0 0 20px\",\"text-transform:uppercase\",\"border:1px solid #24c1ff\",\"padding:8px 15px\",\"display:inline-block\"]],[false,{\".new-home__top h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-family:\\\"Rajdhani\\\",sans-serif\",\"font-size:20px\",\"font-weight:500\"]],[false,{\".new-home__top h2:after\":false},[\"display:none\"]],[false,{\".new-home__top h3\":false},[\"color:#24c1ff\",\"font-size:23px\",\"line-height:28px\",\"text-transform:inherit\",\"margin-bottom:20px\"]],[false,{\".new-home__top p\":false},[\"color:#fff\",\"font-size:17px\",\"line-height:23px\",\"font-weight:300\"]],[false,{\".new-home__top p a\":false},[\"text-decoration:underline\"]],[false,{\".new-home__top-button\":false},[\"width:250px\",\"height:45px\",\"border:0\",\"background-color:#fff\",\"color:#000\",\"text-transform:uppercase\",\"font-size:15px\",\"font-weight:600\",\"margin-top:20px\"]],[false,{\".new-home__top .owl-dots\":false},[\"position:absolute\",\"bottom:100px\",\"right:15px\"]],[false,{\".new-home__top .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".new-home__top .owl-dot\":false},[\"width:10px\",\"height:10px\",\"border:0\",\"border-radius:50%\",\"display:block\",\"margin:8px 0\"]],[false,{\".new-home__top .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#dbdbde\"]],[false,{\".new-home__top .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#adef7f\"]],[false,{\".new-home__item\":false},[\"background-position:right center\",\"background-size:auto 100%\",\"background-repeat:no-repeat\",\"height:600px\",\"background-color:#121d3d\",\"max-width:1990px\",\"margin:0 auto\",\"position:relative\"]],[false,\"@media (max-width: 1200px){\"],[false,{\".new-home__item\":false},[\"background-size:auto 70%\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__item:not(#_#_#_#_#_#_#_)\":false},[\"background-image:unset\"]],[false,\"}\"],[false,\"@media (max-width: 1000px) and (orientation: landscape){\"],[false,{\".new-home__item:not(#_#_#_#_#_#_#_)\":false},[\"background-image:unset\"]],[false,\"}\"],[false,{\".new-home__top .dot\":false},[\"display:inline-block\",\"color:#b7f254\",\"animation:blinker 1s linear infinite\"]],[false,{\".new-home__video\":false},[\"max-width:55%\",\"height:100%\",\"position:absolute\",\"right:0\",\"top:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__video\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (max-width: 1200px){\"],[false,{\".new-home__video\":false},[\"max-width:50%\"]],[false,\"}\"],[false,\"@media (max-width: 1000px) and (orientation: landscape){\"],[false,{\".new-home__video\":false},[\"display:none\"]],[false,\"}\"],[false,{\".new-home__item .container\":false,\".new-home__item .row\":false},[\"height:100%\"]],[false,{\".new-home__features\":false},[\"width:100%\",\"background-color:#f7f7f7\",\"padding-top:50px\",\"padding-bottom:80px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__features-item\":false},[\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".new-home__post-item\":false},[\"width:100%\",\"height:250px\",\"background-color:#182647\",\"color:#fff\",\"font-size:20px\",\"line-height:25px\",\"padding:25px\"]],[false,{\".new-home__post-button\":false},[\"width:130px\",\"height:40px\",\"border:0\",\"background-color:#182647\",\"color:#fff\",\"text-transform:uppercase\",\"font-size:14px\",\"margin-top:25px\"]],[false,{\".new-home__features-item:nth-child(even)\":false},[\"display:flex\",\"flex-direction:column\"]],[false,{\".new-home__features-item:nth-child(even) .new-home__post-item\":false},[\"background-color:#adef7f\",\"color:#182647\",\"order:2\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__features-item:nth-child(even) .new-home__post-item\":false},[\"order:1\"]],[false,\"}\"],[false,{\".new-home__features-item:nth-child(even) .new-home__post-button\":false},[\"order:1\",\"margin:0 0 25px auto\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__features-item:nth-child(even) .new-home__post-button\":false},[\"order:2\",\"margin:25px 0 0 0\"]],[false,\"}\"],[false,{\".new-home__process\":false},[\"width:100%\",\"background-color:#e6e6e6\",\"padding-bottom:50px\",\"font-size:24px\",\"line-height:30px\",\"color:#182647\"]],[false,{\".new-home__service\":false},[\"padding-bottom:80px\",\"background-color:#f7f7f7\",\"position:relative\",\"overflow:hidden\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".new-home__service\":false},[\"padding-bottom:0\"]],[false,\"}\"],[false,{\".new-home__service h2\":false},[\"color:#6a4896\",\"text-transform:uppercase\",\"font-weight:700\"]],[false,{\".new-home__service-text\":false},[\"background-color:#dbdbde\",\"min-height:470px\",\"padding:80px 15% 80px 15px\",\"font-size:24px\",\"line-height:30px\"]],[false,{\".new-home__service:nth-child(even) .new-home__service-text:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:50vw\",\"height:100%\",\"top:0\",\"left:-50vw\",\"background-color:#dbdbde\",\"z-index:-1\"]],[false,{\".new-home__service:nth-child(odd) .new-home__service-text\":false},[\"padding:80px 15px 80px 15%\"]],[false,{\".new-home__service:nth-child(odd) .new-home__service-text:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:50vw\",\"height:100%\",\"top:0\",\"right:-50vw\",\"background-color:#dbdbde\",\"z-index:-1\"]],[false,\"@media (max-width: 1400px){\"],[false,{\".new-home__service-text\":false},[\"min-height:430px\",\"padding:70px 15%\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".new-home__service-text:not(#_#_#_#_#_#_#_)\":false},[\"padding:70px 10%\"]],[false,{\".new-home__service:nth-child(odd) .new-home__service-text\":false},[\"background-color:#f7f7f7\"]],[false,\"}\"],[false,{\".new-home__service-button\":false},[\"width:130px\",\"height:40px\",\"border:0\",\"background-color:#182647\",\"color:#fff\",\"text-transform:uppercase\",\"font-size:14px\",\"margin-top:100px\"]],[false,{\".new-home__service-image\":false},[\"padding:40px 0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__service-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".new-home__service-image amp-img\":false,\".new-home__service-image amp-anim\":false},[\"background-color:#fff\",\"max-height:390px\",\"margin-left:-25%\",\"box-shadow:4px 4px 8px rgba(173,239,127,.5)\"]],[false,{\".new-home__service:nth-child(odd) .new-home__service-image amp-img\":false,\".new-home__service:nth-child(odd) .new-home__service-image amp-anim\":false},[\"margin-right:-25%\",\"margin-left:auto\",\"box-shadow:-4px 4px 8px rgba(173,239,127,.5)\"]],[false,{\".new-home__case-study\":false},[\"background-color:#c4c4c4\"]],[false,{\".new-home__case-text\":false},[\"padding:80px 15px\",\"font-size:24px\",\"line-height:30px\"]],[false,{\".new-home__case-text .preh\":false},[\"font-size:32px\",\"line-height:37px\",\"color:#6a4896\",\"text-transform:uppercase\",\"margin-bottom:15px\",\"display:block\"]],[false,{\".new-home__case-text h2\":false},[\"font-size:40px\",\"line-height:47px\"]],[false,{\".new-home__case-button\":false},[\"width:130px\",\"height:40px\",\"border:0\",\"background-color:#182647\",\"color:#fff\",\"text-transform:uppercase\",\"font-size:14px\",\"margin-top:25px\"]],[false,{\".new-home__case-img\":false},[\"height:410px\",\"margin:30px 0\"]],[false,{\".new-home__clients\":false},[\"width:100%\",\"background-color:#f7f7f7\",\"padding-top:80px\",\"padding-bottom:40px\"]],[false,{\".new-home__clients .owl-item\":false},[\"box-shadow:4px 7px 7px rgba(196,196,196,.6)\",\"margin-bottom:30px\"]],[false,{\".new-home__clients .item\":false},[\"background-color:#fff\",\"display:flex\",\"justify-content:center\",\"align-items:center\",\"height:145px\"]],[false,{\".new-home__clients .item amp-img\":false,\".new-home__clients .item amp-anim\":false},[\"width:auto\",\"max-width:90%\",\"max-height:90%\"]],[false,{\".new-home__clients .owl-dots\":false},[\"text-align:center\"]],[false,{\".new-home__clients .owl-dot\":false},[\"width:10px\",\"height:10px\",\"border-radius:50%\",\"margin:0 4px\"]],[false,{\".new-home__clients .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#bbb\"]],[false,{\".new-home__clients .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#5b5b5b\"]],[false,{\".new-home__contact\":false},[\"width:100%\",\"background-color:#f7f7f7\",\"padding-top:20px\"]],[false,{\".new-home__contact--intern\":false},[\"background-color:#182647\",\"padding-top:0px\"]],[false,{\".new-home__contact--intern .wpcf7-response-output\":false},[\"color:#fff\"]],[false,{\".new-home__contact-form\":false},[\"padding:20px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__contact-form\":false},[\"margin-right:15px\",\"max-width:100%\"]],[false,\"}\"],[false,{\".new-home__contact-form .row\":false},[\"margin-left:-10px\",\"margin-right:-10px\"]],[false,{\".new-home__contact-form .col-lg-6\":false,\".new-home__contact-form .col-12\":false},[\"padding-right:10px\",\"padding-left:10px\"]],[false,{\".new-home__input\":false},[\"height:40px\",\"width:100%\",\"background:#f7f7f7\",\"color:#182647\",\"line-height:40px\",\"border:0\",\"margin-bottom:20px\",\"border-radius:0\",\"padding:0 10px\"]],[false,{\".new-home__textarea\":false},[\"height:145px\",\"width:100%\",\"background:#f7f7f7\",\"color:#182647\",\"border:0\",\"margin-bottom:15px\",\"border-radius:0\",\"padding:5px 10px\"]],[false,{\".new-home__input-btn\":false},[\"width:80px\",\"height:40px\",\"background-color:#f7f7f7\",\"color:#182647\",\"border:0\",\"text-transform:uppercase\",\"font-size:14px\"]],[false,{\"#wpgmza_map:not(#_#_#_#_#_#_#_)\":false},[\"height:100%\"]],[false,\"@media (max-width: 768px){\"],[false,{\"#wpgmza_map\":false},[\"margin-left:15px\"]],[false,{\"#wpgmza_map:not(#_#_#_#_#_#_#_)\":false},[\"height:301px\",\"width:calc(100% - 30px)\"]],[false,\"}\"],[false,{\".what__top\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"padding-top:100px\"]],[false,{\".what__top--carousel\":false},[\"height:auto\"]],[false,{\".what__top--desktop:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".what__top--mobile:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".what__top .owl-dots\":false},[\"position:absolute\",\"bottom:100px\",\"right:15px\",\"height:auto\"]],[false,{\".what__top .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".what__top .owl-dot\":false},[\"width:10px\",\"height:10px\",\"border:0\",\"border-radius:50%\",\"display:block\",\"margin:8px 0\"]],[false,{\".what__top .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#dbdbde\"]],[false,{\".what__top .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#adef7f\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".what__top--desktop:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".what__top--mobile:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,\"}\"],[false,{\".what__top div\":false},[\"height:100%\"]],[false,{\".what__featured\":false},[\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[false,{\".what__featured amp-img\":false,\".what__featured amp-anim\":false},[\"max-height:100%\"]],[false,{\".what__content\":false},[\"background-color:#f7f7f7\",\"padding:40px 0 0\",\"color:#182647\",\"font-size:20px\",\"line-height:24px\"]],[false,{\".what__content .wp-block-button__link\":false},[\"width:auto\",\"border:0\",\"background-color:#182647\",\"text-transform:uppercase\",\"font-size:14px\",\"line-height:20px\",\"border-radius:0\",\"margin-bottom:25px\"]],[false,{\".what__content .wp-block-button__link:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".what__clients\":false},[\"background-color:#f7f7f7\",\"padding:0 0 40px\",\"color:#182647\",\"font-size:20px\",\"line-height:30px\"]],[false,{\".what__content h1\":false},[\"font-size:40px\",\"line-height:40px\",\"color:#182647\",\"margin-bottom:20px\",\"padding-bottom:20px\",\"font-weight:700\"]],[false,{\".what__content h1:after\":false},[\"width:470px\",\"max-width:100%\",\"height:1px\",\"left:0\",\"bottom:0\",\"content:\\\"\\\"\",\"background-color:#182647\",\"position:absolute\",\"box-shadow:3px 3px 12px rgba(24,38,71,.4)\"]],[false,{\".what__content h2\":false,\".what__clients h2\":false},[\"font-weight:700\"]],[false,{\".what__content h3\":false,\".what__clients h3\":false},[\"font-size:24px\",\"line-height:30px\"]],[false,{\".what__content h4\":false},[\"margin-bottom:40px\"]],[false,{\".what__content p\":false},[\"margin-bottom:25px\"]],[false,{\".what__content p amp-img\":false,\".what__content p amp-anim\":false},[\"vertical-align:bottom\"]],[false,{\".what__content p + h2\":false},[\"margin-top:40px\"]],[false,{\".what__content amp-img\":false,\".what__content amp-anim\":false},[\"width:100%\"]],[false,{\".client-testimonial\":false},[\"width:calc(50% - 30px)\",\"max-width:50%\",\"position:relative\",\"min-height:1px\",\"margin-right:15px\",\"margin-left:15px\",\"padding:15px\",\"box-shadow:4px 7px 7px rgba(196,196,196,.6)\",\"margin-bottom:40px\"]],[false,\"@media (max-width: 960px){\"],[false,{\".client-testimonial\":false},[\"width:calc(100% - 30px)\",\"max-width:unset\"]],[false,\"}\"],[false,{\".client-testimonial p\":false},[\"margin-bottom:0\"]],[false,{\".client-testimonial p + strong\":false},[\"margin-top:20px\",\"display:block\"]],[false,{\".client-testimonial:nth-child(even)\":false},[\"color:#182647\",\"background-color:#adef7f\"]],[false,{\".client-testimonial:nth-child(odd)\":false},[\"background-color:#182647\",\"color:#adef7f\"]],[false,{\".whats-next__img\":false},[\"width:100%\",\"height:230px\",\"background-color:#c4c4c4\",\"margin-bottom:25px\"]],[false,{\".green-background\":false},[\"background-color:#adef7f\",\"padding:40px 0\",\"margin-bottom:40px\"]],[false,{\".green-background h4\":false},[\"margin-bottom:0\",\"line-height:34px\"]],[false,{\".wp-block-quote\":false},[\"background-color:#fff\",\"padding:25px 100px\",\"margin:40px auto\"]],[false,{\".wp-block-quote p\":false},[\"color:#6a4896\",\"font-weight:700\",\"font-size:28px\",\"line-height:32px\"]],[false,{\".wp-block-quote cite\":false},[\"font-style:inherit\",\"font-size:14px\"]],[false,{\".wp-block-quote cite amp-img\":false,\".wp-block-quote cite amp-anim\":false},[\"vertical-align:bottom\"]],[false,{\".wp-block-columns\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-columns.nospace:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".wp-block-columns .wp-block-image\":false,\".wp-block-columns .mrdata\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-columns .mrdata\":false},[\"line-height:38px\"]],[false,{\".wp-block-columns .mrdata amp-img\":false,\".wp-block-columns .mrdata amp-anim\":false},[\"width:auto\"]],[false,{\".kubernetes__section\":false},[\"color:white\",\"width:100%\",\"position:relative\",\"padding:0\",\"border-bottom:1px solid #6490eb\",\"background-repeat:no-repeat\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__section\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,{\".kubernetes__section h1\":false},[\"position:relative\",\"font-weight:700\",\"line-height:50px\",\"font-size:50px\",\"color:#fff\",\"margin:0 0 20px\",\"padding-top:30px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__section h1\":false},[\"line-height:30px\",\"font-size:30px\"]],[false,\"}\"],[false,{\".kubernetes__section h1:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".kubernetes__section h1:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__section h1:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".kubernetes__section h2\":false},[\"position:relative\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"color:#fff\",\"margin:0 0 5px\"]],[false,{\".kubernetes__section h2:after\":false},[\"display:none\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__section .wrap-image\":false},[\"margin-top:100px\",\"position:relative\"]],[false,{\".kubernetes__section .wrap-image:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".kubernetes__section .wrap-image:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"}\"],[false,{\".kubernetes__section .service-padding\":false},[\"padding:100px 0\",\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__section .service-padding\":false},[\"padding:0 0 100px\"]],[false,\"}\"],[false,{\".kubernetes__section .subitems .item\":false},[\"color:#fff\",\"font-family:\\\"Rajdhani\\\"\"]],[false,{\".kubernetes__section button\":false},[\"height:40px\",\"border:0\",\"background-color:#fff\",\"color:#182647\",\"text-transform:uppercase\",\"font-size:14px\",\"font-weight:600\",\"vertical-align:top\",\"padding:0 20px\"]],[false,{\".kubernetes__services\":false},[\"margin-bottom:100px\"]],[false,{\".kubernetes__service\":false},[\"margin-bottom:10px\"]],[false,{\".kubernetes__section--1\":false},[\"background-color:#03173c\",\"margin-top:100px\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/03\\/watermark-1.png\\\")\",\"background-position:top 30px right\"]],[false,{\".kubernetes__section--2\":false},[\"background-color:#142453\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/03\\/watermark-4.png\\\")\",\"background-position:top 30px left 30px\"]],[false,{\".kubernetes__section--3\":false},[\"background-color:#03173c\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/03\\/watermark-2.png\\\")\",\"background-position:top -100px right -50px\"]],[false,{\".kubernetes__section--4\":false},[\"background-color:#142453\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/03\\/watermark-3.png\\\")\",\"background-position:top 30px left 30px\"]],[false,{\".tek__section\":false},[\"width:100%\",\"position:relative\",\"padding:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek__section\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,{\".tek__section h1\":false},[\"position:relative\",\"font-weight:700\",\"line-height:50px\",\"font-size:50px\",\"color:#152649\",\"margin:0 0 20px\",\"padding-top:30px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek__section h1\":false},[\"line-height:30px\",\"font-size:30px\"]],[false,\"}\"],[false,{\".tek__section h1:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".tek__section h1:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek__section h1:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".tek__section h2\":false},[\"position:relative\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"margin:0 0 5px\"]],[false,{\".tek__section h2:after\":false},[\"display:none\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek__section .wrap-image\":false},[\"margin-top:100px\",\"position:relative\"]],[false,{\".tek__section .wrap-image:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"transition:all .3s ease-in-out\",\"top:-20px\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".tek__section .wrap-image:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"}\"],[false,{\".tek__section .service-padding\":false},[\"padding:100px 0\",\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek__section .service-padding\":false},[\"padding:0 0 100px\"]],[false,\"}\"],[false,{\".tek__section--1\":false},[\"margin-top:100px\"]],[false,{\".tek__section--2\":false},[\"background-color:#efefef\"]],[false,{\".tek__section--4\":false},[\"background-color:#efefef\"]],[false,{\".tek__section--6\":false},[\"background-color:#efefef\"]],[true,{\".devops-styles\":true},[\"font-size:21px\",\"line-height:30px\"]],[true,{\".devops-styles h2\":true},[\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:40px\",\"font-weight:600\"]],[true,{\".devops-styles h2:after\":true},[\"display:none\"]],[false,{\".devops-styles .what__top\":false},[\"padding-top:0\"]],[false,{\".devops__top\":false},[\"width:100%\",\"position:relative\",\"background-color:#03173c\",\"margin-top:100px\"]],[false,{\".devops__top-title\":false},[\"position:absolute\",\"z-index:1\",\"top:0\",\"left:50%\",\"display:flex\",\"height:100%\",\"align-items:center\"]],[false,{\".devops__top-title--noshow\":false},[\"pointer-events:none\"]],[false,{\".devops__top-title--noshow:not(#_#_#_#_#_#_#_)\":false},[\"opacity:0\"]],[false,{\".devops__top-title h1:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__top-title h1\":false},[\"font-size:23px\",\"line-height:28px\"]],[false,\"}\"],[false,{\".devops__content\":false},[\"padding:70px 0 20px\",\"color:#787878\"]],[false,{\".devops__content h1\":false},[\"color:#182647\",\"font-size:40px\"]],[false,{\".devops__content .mr-data\":false},[\"margin:40px auto 0\"]],[false,{\".devops__content .mr-data amp-img\":false,\".devops__content .mr-data amp-anim\":false},[\"width:100%\",\"height:auto\",\"max-height:100%\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__content .mr-data amp-img\":false,\".devops__content .mr-data amp-anim\":false},[\"width:50%\",\"margin-bottom:20px\"]],[false,\"}\"],[false,{\".devops__content .mr-data strong\":false},[\"color:#09aeec\"]],[false,{\".devops__quote\":false},[\"background-color:#e6e6e6\",\"padding:70px 0\",\"text-align:center\",\"position:relative\",\"color:#03173c\"]],[false,{\".devops__quote-button\":false},[\"width:350px\",\"height:45px\",\"color:#fff\",\"border:0\",\"background-color:#09aeec\",\"text-transform:uppercase\",\"font-weight:600\",\"position:absolute\",\"bottom:-25px\",\"left:calc(50% - 175px)\",\"z-index:1\"]],[false,{\".devops__author amp-img\":false,\".devops__author amp-anim\":false},[\"height:25px\",\"margin-right:10px\"]],[false,{\".devops__solution\":false},[\"padding:0 0 70px\",\"color:#787878\"]],[false,{\".devops__solution .blue\":false},[\"color:#09aeec\"]],[false,{\".devops__solution small\":false},[\"display:block\",\"padding-left:20px\",\"border-left:9px solid #09aeec\",\"font-size:20px\"]],[false,{\".devops__roadmap\":false},[\"padding:80px 0 70px\"]],[false,{\".devops__services\":false},[\"padding:120px 0 150px\",\"background-color:#e6e6e6\",\"margin-top:-150px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__services\":false},[\"padding:50px 0\",\"background-color:#e6e6e6\",\"margin-top:0\"]],[false,\"}\"],[false,{\".devops__services .border-item\":false},[\"border-left:5px solid #09aeec\",\"padding-left:10px\",\"margin-top:20px\",\"line-height:21px\"]],[false,{\".devops__services .list-item\":false},[\"padding-left:20px\"]],[false,{\".devops__phrase\":false},[\"position:relative\",\"color:#03173c\"]],[false,{\".devops__phrase .container\":false},[\"position:relative\"]],[false,{\".devops__phrase .row\":false},[\"background-color:#fff\",\"border-radius:10px\",\"padding:30px\",\"top:-110px\",\"position:absolute\",\"z-index:1\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__phrase .row\":false},[\"position:relative\",\"top:0\",\"border-radius:0\"]],[false,\"}\"],[false,{\".devops__ready-to-compete\":false},[\"padding:150px 0 70px\",\"background-color:#03173c\",\"position:relative\",\"color:#fff\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__ready-to-compete\":false},[\"padding:50px 0\"]],[false,\"}\"],[false,{\".devops__ready-to-compete h3\":false},[\"text-transform:none\",\"color:#fff\",\"font-weight:400\",\"margin-bottom:30px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".devops__tags\":false},[\"background-color:#e6e6e6\",\"padding:70px 0\",\"text-align:center\",\"position:relative\"]],[false,{\".devops__tag\":false},[\"display:inline-block\",\"margin:0 0 10px 20px\",\"padding-left:20px\",\"border-left:1px solid #03173c\",\"font-weight:600\",\"color:#03173c\"]],[false,{\".devops__tag:first-child\":false,\".devops__tag:nth-child(3n + 4)\":false},[\"border-left:0\",\"margin-left:0\",\"padding-left:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__tag\":false},[\"width:100%\",\"display:block\"]],[false,{\".devops__tag:not(#_#_#_#_#_#_#_)\":false},[\"border:0\",\"margin:20px 0\"]],[false,\"}\"],[false,{\".devops__services2\":false},[\"padding:70px 0\",\"color:#787878\"]],[false,{\".devops__services2 .p-bg\":false},[\"background-color:#b7bbc4\",\"color:#fff\",\"padding:10px 0\",\"margin-bottom:40px\"]],[false,{\".devopos__service-item\":false},[\"border-bottom:1px solid #b7bbc4\",\"padding-bottom:10px\",\"margin-bottom:10px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devopos__service-item:first-child\":false},[\"margin-top:30px\"]],[false,\"}\"],[false,{\".devops-styles .phrase\":false},[\"padding:0\"]],[false,{\".devops-styles .phrase h2\":false},[\"color:#fff\",\"font-weight:500\",\"line-height:44px\"]],[false,{\".devops-styles .phrase__wrap-content\":false},[\"bottom:230px\"]],[false,{\".app__about\":false},[\"background-color:#fafafa\",\"padding:70px 0 100px\"]],[false,{\".app__about h1\":false},[\"color:#182647\",\"font-size:40px\"]],[false,{\".app__about .top-section strong\":false},[\"color:#8218e5\"]],[false,{\".app__about .gray-bg\":false},[\"background-color:#e6e6e6\",\"color:#787878\",\"text-align:center\",\"padding:10px\",\"margin-bottom:40px\"]],[false,{\".app__about .gray-bg strong\":false},[\"color:#787878\"]],[false,{\".app__about h3\":false},[\"color:#8218e5\",\"font-size:35px\",\"line-height:35px\",\"text-transform:inherit\"]],[false,{\".app__about .blue\":false,\".app__about .blue strong\":false},[\"color:#182647\"]],[false,{\".app__slider\":false},[\"background-color:#fff\",\"position:relative\"]],[false,{\".app__slider h2.link-to\":false},[\"padding-bottom:0\",\"font-size:30px\",\"clear:both\",\"margin-bottom:0\",\"margin-top:40px\"]],[false,{\".app__slider h2.link-to amp-img\":false,\".app__slider h2.link-to amp-anim\":false},[\"height:35px\",\"float:left\",\"margin-right:20px\"]],[false,{\".app__slider h2.pink\":false},[\"color:#8218e5\"]],[false,{\".app__slider h2.blue\":false},[\"color:#2678f2\"]],[false,{\".app__slider .side-img\":false},[\"height:700px\"]],[false,{\".app__slider .side-img:not(#_#_#_#_#_#_#_)\":false},[\"width:auto\"]],[false,{\".app__slider .icon-img\":false},[\"margin-bottom:30px\"]],[false,{\".app__slider .icon-img:not(#_#_#_#_#_#_#_)\":false},[\"width:auto\"]],[false,{\".app__slider .owl-nav\":false},[\"position:relative\",\"width:50%\",\"margin:-50px auto 20px\",\"text-align:right\",\"padding-left:15px\",\"padding-right:10px\",\"display:inline-flex\",\"align-items:center\",\"justify-content:flex-end\"]],[false,{\".app__slider .owl-prev\":false,\".app__slider .owl-next\":false},[\"width:30px\",\"height:30px\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"margin-bottom:10px\"]],[false,{\".app__slider .owl-prev:not(#_#_#_#_#_#_#_)\":false,\".app__slider .owl-next:not(#_#_#_#_#_#_#_)\":false},[\"color:#152649\",\"border:2px solid #152649\",\"font-size:15px\",\"line-height:15px\"]],[false,{\".app__slider .owl-prev\":false},[\"margin-right:10px\"]],[false,{\".app__slider .owl-dots\":false},[\"width:50%\",\"margin:-50px auto 20px\",\"text-align:left\",\"position:relative\",\"display:inline-block\",\"padding-left:10px\"]],[false,{\".app__slider .owl-dot\":false},[\"width:15px\",\"height:15px\",\"border-radius:50%\",\"margin-right:30px\"]],[false,{\".app__slider .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#e0e0e0\"]],[false,{\".app__slider .owl-dot:last-child\":false},[\"margin:0\"]],[false,{\".app__slider .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#182647\"]],[false,\"@media (max-width: 1020px){\"],[false,{\".app__slider .hide-mobile\":false},[\"display:none\"]],[false,\"}\"],[false,{\".app__image1\":false},[\"padding:70px 0 0\",\"background-color:#fff\"]],[false,{\".app__image1 h4\":false},[\"font-size:31px\",\"line-height:40px\",\"font-weight:600\",\"margin-bottom:25px\"]],[false,{\".app__tags\":false},[\"text-align:center\",\"margin-top:20px\",\"margin-bottom:50px\",\"color:#09aeec\",\"font-weight:700\"]],[false,{\".app__quote\":false},[\"background-color:#e6e6e6\",\"padding:100px 0 70px\",\"margin-top:-80px\",\"color:#182647\"]],[false,{\".app__quote .gray\":false},[\"margin-bottom:40px\",\"color:#818181\"]],[false,{\".app__image2\":false},[\"padding:70px 0 0\"]],[false,{\".app__image2 h4\":false},[\"font-size:28px\",\"line-height:37px\",\"font-weight:600\",\"margin-bottom:25px\",\"text-align:center\"]],[false,{\".app__solutions\":false},[\"background-color:#e6e6e6\",\"padding:200px 0 70px\",\"margin-top:-150px\",\"color:#182647\"]],[false,{\".app__solutions .quote-button\":false},[\"width:350px\",\"height:45px\",\"color:#fff\",\"border:0\",\"background-color:#09aeec\",\"text-transform:uppercase\",\"font-weight:600\",\"margin-bottom:40px\"]],[false,{\".app__solutions .upper-space\":false},[\"margin-top:80px\"]],[false,{\".app__solutions strong\":false},[\"color:#09aeec\"]],[false,{\".app__values\":false},[\"padding:70px 0 200px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".app__values\":false},[\"padding:50px 0\"]],[false,\"}\"],[false,{\".app__values strong\":false,\".app__values i\":false},[\"color:#09aeec\"]],[false,{\".app__values i\":false},[\"margin-right:10px\"]],[false,{\".app__values .blue\":false},[\"color:#182647\",\"font-weight:700\",\"margin-bottom:30px\"]],[false,{\".app__values-phrase\":false},[\"margin-top:50px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:30px\",\"font-weight:600\",\"color:#182647\"]],[false,{\".new-home__posts-upper-title\":false},[\"background-color:#fff\",\"padding:50px 0 200px\",\"color:#182647\",\"font-size:40px\",\"line-height:45px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".new-home__posts-upper-title\":false},[\"padding:50px 0\"]],[false,\"}\"],[false,{\".new-home__posts\":false},[\"width:100%\",\"background-color:#e6e6e6\",\"padding-bottom:80px\"]],[false,{\".new-home__process h2\":false},[\"position:relative\",\"overflow:hidden\"]],[false,{\".new-home__process h2:after\":false},[\"width:100%\",\"height:1px\",\"background-color:#182647\",\"top:18px\",\"left:280px\",\"position:absolute\",\"content:\\\"\\\"\"]],[false,{\".new-home__process h2:after:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".new-home__posts-wrap\":false},[\"display:grid\"]],[false,{\".new-home__posts-item\":false},[\"margin-top:-150px\",\"width:100%\",\"background-color:#fff\",\"color:#787878\",\"font-size:18px\",\"line-height:30px\",\"padding:25px\",\"border-top:10px solid #09aeec\",\"border-radius:0 0 10px 10px\",\"box-shadow:4px 7px 7px rgba(196,196,196,.6)\",\"display:flex\",\"flex-direction:column\",\"justify-content:space-between\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".new-home__posts-item\":false},[\"margin-top:0\",\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".new-home__posts-title\":false},[\"color:#09aeec\",\"font-size:25px\",\"line-height:30px\",\"font-weight:800\",\"margin-bottom:15px\"]],[false,{\".new-home__posts-button\":false},[\"width:130px\",\"height:40px\",\"border:0\",\"background-color:#09aeec\",\"color:#fff\",\"text-transform:uppercase\",\"font-size:14px\",\"margin-top:25px\",\"font-weight:700\"]],[false,{\".new-home__posts-wrap:nth-child(even) .new-home__posts-item\":false},[\"border-top:10px solid #182647\"]],[false,{\".new-home__posts-wrap:nth-child(even) .new-home__posts-title\":false},[\"color:#182647\"]],[false,{\".new-home__posts-wrap:nth-child(even) .new-home__posts-button\":false},[\"background-color:#182647\"]],[false,{\".new-home__process\":false},[\"padding:0 0 250px\",\"color:#787878\",\"font-size:18px\",\"line-height:30px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".new-home__process\":false},[\"padding:0 0 50px\"]],[false,\"}\"],[false,{\".new-home__process h3\":false},[\"color:#182647\",\"font-size:25px\",\"line-height:30px\",\"font-weight:800\",\"margin-bottom:15px\",\"text-transform:none\"]],[false,{\".new-home__process a\":false},[\"color:#09aeec\",\"text-decoration:underline\"]],[false,{\".new-home__services\":false},[\"background-color:#fff\",\"padding:0 0 200px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".new-home__services\":false},[\"padding:50px 20px\"]],[false,\"}\"],[false,{\".new-home__service-item\":false},[\"background-color:#fff\",\"border-bottom:10px solid #09aeec\",\"border-radius:10px 10px 0 0\",\"box-shadow:7px 3px 18px rgba(196,196,196,.6)\",\"margin-bottom:40px\",\"padding:10px 10px 0\"]],[false,{\".new-home__service-item:nth-child(odd) .new-home__service-item-text\":false},[\"padding:50px 0 50px 80px\"]],[false,{\".new-home__service-item:nth-child(even) .new-home__service-item-text\":false},[\"padding:50px 80px 50px 0\"]],[false,{\".new-home__service-item .different-icon\":false},[\"float:left\",\"margin-right:13px\",\"margin-top:10px\"]],[false,{\".new-home__service-item strong\":false},[\"color:#09aeec\"]],[false,{\".new-home__service-item button\":false},[\"margin-bottom:20px\"]],[false,{\".new-home__service-item--1\":false},[\"margin-top:-150px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".new-home__service-item-text:not(#_#_#_#_#_#_#_)\":false},[\"padding:30px\"]],[false,{\".new-home__service-item-text amp-img\":false,\".new-home__service-item-text amp-anim\":false},[\"display:none\"]],[false,{\".new-home__service-item--1\":false},[\"margin-top:0\"]],[false,\"}\"],[false,{\".partners--new\":false},[\"padding:50px 0 40px\"]],[false,{\".partners--new .owl-dots .owl-dot\":false},[\"width:10px\",\"height:10px\",\"border-radius:50%\"]],[false,{\".partners--new .owl-dots .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#e5e5e5\"]],[false,{\".partners--new .owl-dots .owl-dot.active\":false},[\"width:10px\",\"height:10px\"]],[false,{\".partners--new .owl-dots .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#00abeb\"]],[false,{\".new-home__process--img\":false},[\"width:56px\",\"height:62px\"]],[false,{\".new-home__services--img\":false},[\"width:50px\",\"height:55px\"]],[true,{\".new-header__logo amp-img\":true,\".new-header__logo amp-anim\":false},[\"width:100%\",\"height:100%\"]],[false,{\".revslider-subtitle-home:not(#_#_#_#_#_#_#_)\":false},[\"background-color:red\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":262,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/default-theme.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"f6edf5f7585de26e26e3d9795f4be840\",\"parse_time\":0.0013489723205566406,\"shake_time\":4.0531158447265625e-6,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".default__btn-green\":false},[\"background:transparent linear-gradient(90deg,#27d9cb 0%,#a1f266 100%)\"]],[false,{\".default__btn-blue\":false},[\"background-color:#23bbff\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2687,\"final_size\":1031,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-clients\\/our-clients.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"8b21ca69c88569bdc8a03e02863f336e\",\"parse_time\":0.021306991577148438,\"shake_time\":7.295608520507812e-5,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".cp-our-clients\":true},[\"background-color:#fff\",\"padding:2rem 0\"]],[false,{\".cp-our-clients__button\":false},[\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[false,{\".cp-our-clients__button div\":false},[\"writing-mode:vertical-rl\",\"transform:rotate(180deg)\",\"font-family:raleway,sans-serif\",\"font-weight:500\",\"border:1px solid #979797\",\"padding:0 .2rem\",\"color:#979797\",\"font-size:.9rem\",\"cursor:pointer\",\"height:110px\",\"text-align:center\"]],[true,{\".cp-our-clients__slider-child .item\":true},[\"display:table\",\"width:100%\",\"height:100px\"]],[true,{\".cp-our-clients__wrap-item\":true},[\"width:100%\",\"height:100%\",\"display:table-row\"]],[true,{\".cp-our-clients__image\":true},[\"width:100%\",\"height:100%\",\"display:table-cell\",\"vertical-align:middle\",\"text-align:center\"]],[false,{\".cp-our-clients__image picture amp-img\":false,\".cp-our-clients__image picture amp-anim\":false},[\"max-width:80%\",\"max-height:70px\",\"height:auto\",\"filter:grayscale(1)\"]],[false,{\".cp-our-clients__image picture amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".cp-our-clients__image picture amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:auto\",\"display:inline-block\"]],[true,{\".cp-our-clients__slider\":true},[\"align-items:center\"]],[true,{\".cp-our-clients__slider:not(#_#_#_#_#_#_#_)\":true},[\"display:flex\"]],[false,{\".cp-our-clients__button--our-partners\":false},[\"display:none\"]],[false,{\".cp-our-clients__slider .owl-dot.active span:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#53c8fd\"]],[true,{\".cp-our-clients__icon\":true},[\"display:none\"]],[true,\"@media (max-width: 575.98px){\"],[false,{\".cp-our-clients__button div\":false},[\"writing-mode:horizontal-tb\",\"transform:none\",\"height:auto\",\"padding:.2rem .5rem\",\"margin-bottom:.5rem\"]],[true,{\".cp-our-clients__slider\":true},[\"margin-top:1rem\"]],[true,{\".cp-our-clients__slider:not(#_#_#_#_#_#_#_)\":true},[\"display:block\"]],[true,{\".cp-our-clients\":true},[\"padding:0 0 2rem\"]],[true,{\".cp-our-clients__icon\":true},[\"text-align:center\",\"position:relative\",\"margin:0 auto\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"margin-bottom:2rem\"]],[true,{\".cp-our-clients__icon--box\":true},[\"position:absolute\",\"top:-35px\",\"background:#f2f2f2\",\"width:25%\",\"margin:0 auto\",\"align-items:center\",\"justify-content:center\",\"display:none\",\"height:50px\",\"border-radius:100px 100px 0px 0px\"]],[true,{\".cp-our-clients__icon-down\":true},[\"color:#53c8fd\",\"border-radius:40px 40px 0px 0px\",\"font-size:1.5rem\"]],[true,\"}\"],[false,\"@media (min-width: 600px) and (max-width: 768px){\"],[false,{\".cp-our-clients__image picture amp-img\":false,\".cp-our-clients__image picture amp-anim\":false},[\"max-width:60%\"]],[false,\"}\"]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":2687,\"final_size\":1031,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-clients\\/our-clients.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"8b21ca69c88569bdc8a03e02863f336e\",\"parse_time\":0.021306991577148438,\"shake_time\":2.288818359375e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".cp-our-clients\":true},[\"background-color:#fff\",\"padding:2rem 0\"]],[false,{\".cp-our-clients__button\":false},[\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[false,{\".cp-our-clients__button div\":false},[\"writing-mode:vertical-rl\",\"transform:rotate(180deg)\",\"font-family:raleway,sans-serif\",\"font-weight:500\",\"border:1px solid #979797\",\"padding:0 .2rem\",\"color:#979797\",\"font-size:.9rem\",\"cursor:pointer\",\"height:110px\",\"text-align:center\"]],[true,{\".cp-our-clients__slider-child .item\":true},[\"display:table\",\"width:100%\",\"height:100px\"]],[true,{\".cp-our-clients__wrap-item\":true},[\"width:100%\",\"height:100%\",\"display:table-row\"]],[true,{\".cp-our-clients__image\":true},[\"width:100%\",\"height:100%\",\"display:table-cell\",\"vertical-align:middle\",\"text-align:center\"]],[false,{\".cp-our-clients__image picture amp-img\":false,\".cp-our-clients__image picture amp-anim\":false},[\"max-width:80%\",\"max-height:70px\",\"height:auto\",\"filter:grayscale(1)\"]],[false,{\".cp-our-clients__image picture amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".cp-our-clients__image picture amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:auto\",\"display:inline-block\"]],[true,{\".cp-our-clients__slider\":true},[\"align-items:center\"]],[true,{\".cp-our-clients__slider:not(#_#_#_#_#_#_#_)\":true},[\"display:flex\"]],[false,{\".cp-our-clients__button--our-partners\":false},[\"display:none\"]],[false,{\".cp-our-clients__slider .owl-dot.active span:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#53c8fd\"]],[true,{\".cp-our-clients__icon\":true},[\"display:none\"]],[true,\"@media (max-width: 575.98px){\"],[false,{\".cp-our-clients__button div\":false},[\"writing-mode:horizontal-tb\",\"transform:none\",\"height:auto\",\"padding:.2rem .5rem\",\"margin-bottom:.5rem\"]],[true,{\".cp-our-clients__slider\":true},[\"margin-top:1rem\"]],[true,{\".cp-our-clients__slider:not(#_#_#_#_#_#_#_)\":true},[\"display:block\"]],[true,{\".cp-our-clients\":true},[\"padding:0 0 2rem\"]],[true,{\".cp-our-clients__icon\":true},[\"text-align:center\",\"position:relative\",\"margin:0 auto\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"margin-bottom:2rem\"]],[true,{\".cp-our-clients__icon--box\":true},[\"position:absolute\",\"top:-35px\",\"background:#f2f2f2\",\"width:25%\",\"margin:0 auto\",\"align-items:center\",\"justify-content:center\",\"display:none\",\"height:50px\",\"border-radius:100px 100px 0px 0px\"]],[true,{\".cp-our-clients__icon-down\":true},[\"color:#53c8fd\",\"border-radius:40px 40px 0px 0px\",\"font-size:1.5rem\"]],[true,\"}\"],[false,\"@media (min-width: 600px) and (max-width: 768px){\"],[false,{\".cp-our-clients__image picture amp-img\":false,\".cp-our-clients__image picture amp-anim\":false},[\"max-width:60%\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":3124,\"final_size\":1911,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/cloud-native\\/cloud-native.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"33c80fa7ffda8a897d0576def3234372\",\"parse_time\":0.04736495018005371,\"shake_time\":0.00014400482177734375,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".cp-cloud-native\":true},[\"padding:1rem 0 8rem\",\"background-repeat:no-repeat\",\"background-size:cover\",\"background-position-x:center\",\"background-position-y:top\"]],[true,{\".cp-cloud-native__title\":true},[\"margin:3rem 0 5rem\",\"text-align:center\",\"color:#121d3d\",\"font-size:2rem\",\"font-family:raleway,sans-serif\"]],[true,{\".cp-cloud-native__title:not(#_#_#_#_#_#_#_)\":true},[\"font-weight:400\"]],[true,{\".cp-cloud-native__title strong\":true},[\"font-weight:900\"]],[true,{\".cp-cloud-native__desktop\":true},[\"display:block\"]],[true,{\".cp-cloud-native__mobile\":true},[\"display:none\"]],[true,{\".cp-cloud-native__box\":true},[\"padding:3rem 4rem 1rem\",\"background:#fff\",\"border-top:10px solid #121d3d\",\"border-radius:0px 0px 9px 9px\",\"box-shadow:0px 8px 10px rgba(0,0,0,.16)\"]],[true,{\".cp-cloud-native__subtitle\":true},[\"font-weight:900\",\"font-family:\\\"Roboto\\\",sans-serif\",\"color:#121d3d\",\"margin:0\",\"line-height:46px\",\"font-size:38px\"]],[true,{\".cp-cloud-native__btn\":true},[\"color:#fff\",\"background:transparent linear-gradient(90deg,#27d9cb 0%,#a1f266 100%)\",\"height:45px\",\"border:0\",\"text-transform:uppercase\",\"font-size:15px\",\"font-weight:bold\",\"margin-top:20px\",\"padding:0 2rem\",\"cursor:pointer\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[true,{\".cp-cloud-native__text\":true},[\"color:#707070\",\"padding:0 2rem\",\"font-size:1.3rem\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:300\"]],[false,{\".cp-cloud-native__box .owl-dot.active span:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#53c8fd\"]],[false,{\".cp-cloud-native__box .owl-dot\":false},[\"outline:none\"]],[true,\"@media (max-width: 575.98px){\"],[true,{\".cp-cloud-native__title\":true},[\"font-size:1.3rem\",\"margin:1rem 0 1.5rem\"]],[true,{\".cp-cloud-native__title strong\":true},[\"display:block\"]],[true,{\".cp-cloud-native__box\":true},[\"padding:3rem 1rem\",\"border-top:15px solid #121d3d\"]],[true,{\".cp-cloud-native__subtitle\":true},[\"font-size:1.3rem\",\"text-align:center\"]],[true,{\".cp-cloud-native__desktop\":true},[\"display:none\"]],[true,{\".cp-cloud-native__mobile\":true},[\"display:block\"]],[true,{\".cp-cloud-native__mobile--container\":true},[\"display:block\",\"width:100%\",\"padding:.5rem .5rem 2rem\"]],[false,{\".cp-cloud-native__box .owl-dot.active span:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#53c8fd\"]],[true,{\".cp-cloud-native__text\":true},[\"font-size:1rem\",\"margin-top:1rem\",\"padding:0 .5rem\"]],[false,{\".cp-cloud-native__slider .owl-dot.active span:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#53c8fd\"]],[true,{\".cp-cloud-native\":true},[\"padding:1rem 0 4rem\"]],[true,{\".cp-cloud-native__mobile--off-padding:not(#_#_#_#_#_#_#_)\":true},[\"padding:0\"]],[true,\"}\"],[true,\"@media (min-width: 600px) and (max-width: 768px){\"],[true,{\".cp-cloud-native__title\":true},[\"font-size:1.5rem\"]],[true,{\".cp-cloud-native__subtitle\":true},[\"font-size:1.6rem\"]],[true,{\".cp-cloud-native__text\":true},[\"padding:0 1rem\",\"font-size:1rem\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2317,\"final_size\":2012,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-process\\/our-process.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"1e81358d6ff1f90278f187d155a959ac\",\"parse_time\":0.009158134460449219,\"shake_time\":8.606910705566406e-5,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".cp-our-process\":true},[\"padding:2rem 0 5rem\",\"background:#fdfdfd\"]],[true,{\".cp-our-process__title\":true},[\"color:#121d3d\",\"font-family:raleway,sans-serif\",\"display:flex\",\"align-items:center\",\"font-size:2rem\"]],[true,{\".cp-our-process__title:not(#_#_#_#_#_#_#_)\":true},[\"font-weight:100\"]],[true,{\".cp-our-process__title strong\":true},[\"margin-left:1rem\"]],[true,{\".cp-our-process__title strong:not(#_#_#_#_#_#_#_#_)\":true},[\"font-weight:800\"]],[true,{\".cp-our-process__title:after\":true},[\"width:100%\",\"height:1px\",\"background-color:#182647\",\"content:\\\"\\\"\",\"margin-left:2rem\"]],[true,{\".cp-our-process__title:after:not(#_#_#_#_#_#_#_#_)\":true},[\"display:block\"]],[true,{\".cp-our-process__slider--img\":true},[\"display:flex\",\"justify-content:center\",\"align-items:center\",\"height:200px\",\"min-height:200px\"]],[true,{\".cp-our-process__slider--img amp-img\":true,\".cp-our-process__slider--img amp-anim\":false},[\"margin:0 auto\"]],[true,{\".cp-our-process__slider--img amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".cp-our-process__slider--img amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:30%\"]],[true,{\".cp-our-process__slider--title\":true},[\"font-weight:bold\",\"font-family:roboto,sans-serif\",\"color:#121d3d\",\"margin-bottom:2rem\"]],[true,{\".cp-our-process__slider--title:not(#_#_#_#_#_#_#_)\":true},[\"font-size:1.4rem\",\"text-transform:capitalize\"]],[true,{\".cp-our-process__slider--text\":true},[\"color:#707070\",\"padding:0 1rem\",\"margin:0 0 2rem\"]],[true,{\".cp-our-process__slider--text:not(#_#_#_#_#_#_#_)\":true},[\"font-size:1rem\",\"font-weight:400\"]],[true,{\".cp-our-process__slider--link\":true},[\"font-family:roboto,sans-serif\",\"font-weight:700\",\"cursor:pointer\",\"text-decoration:underline\"]],[true,{\".cp-our-process__slider--link:not(#_#_#_#_#_#_#_)\":true},[\"color:#23bbff\"]],[true,{\".cp-our-process__slider--link:hover:not(#_#_#_#_#_#_#_)\":true},[\"color:#68e796\"]],[true,\"@media (max-width: 575.98px){\"],[false,{\".cp-our-process__slider .owl-dot.active span:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#53c8fd\"]],[true,{\".cp-our-process__title:after:not(#_#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".cp-our-process__title\":true},[\"justify-content:center\"]],[true,{\".cp-our-process__slider--img:after\":true,\".cp-our-process__slider--img:before\":true},[\"width:20%\",\"height:1px\",\"background-color:#182647\",\"content:\\\"\\\"\"]],[true,{\".cp-our-process__slider--img:after:not(#_#_#_#_#_#_#_#_)\":true,\".cp-our-process__slider--img:before:not(#_#_#_#_#_#_#_#_)\":true},[\"display:block\"]],[true,{\".cp-our-process__slider--img amp-img\":true,\".cp-our-process__slider--img amp-anim\":false},[\"margin:0 1rem\"]],[true,\"}\"],[true,\"@media (min-width: 600px) and (max-width: 768px){\"],[true,{\".cp-our-process__slider--title\":true},[\"font-size:1.5em\"]],[true,{\".cp-our-process__slider--img amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".cp-our-process__slider--img amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:40%\"]],[true,{\".cp-our-process__slider--text\":true},[\"margin:0\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":3524,\"final_size\":2617,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/services\\/services.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"d5abd9b59c3d2e3b368016c0243840cc\",\"parse_time\":0.13952994346618652,\"shake_time\":8.797645568847656e-5,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".cp-services\":true},[\"padding:1rem 0 5rem\",\"background-repeat:no-repeat\",\"background-position:top\",\"background-size:cover\"]],[true,{\".cp-services__columns\":true},[\"display:flex\",\"flex-direction:row\",\"justify-content:center\"]],[true,{\".cp-services__box\":true},[\"display:flex\",\"flex-direction:row-reverse\"]],[true,{\".cp-services__box--column\":true},[\"background-color:#23bbff\",\"border-radius:15px\",\"box-shadow:0 9px 21px rgba(0,0,0,.16)\",\"text-align:center\",\"padding:2rem 1.5rem\",\"display:flex\",\"flex-direction:column\",\"margin:0 .5rem\",\"align-items:center\",\"justify-content:start\",\"cursor:pointer\"]],[true,{\".cp-services__box--column i\":true},[\"font-size:1.5rem\",\"color:#121d3d\"]],[true,{\".cp-services__box--button\":true},[\"writing-mode:vertical-rl\",\"transform:rotate(180deg)\",\"margin-top:1rem\",\"color:#121d3d\",\"font-family:raleway,sans-serif\",\"font-weight:600\"]],[true,{\".cp-services__card\":true},[\"background-color:#fff\",\"box-shadow:0 9px 21px rgba(0,0,0,.16)\",\"border-radius:15px\",\"height:100%\",\"transition:auto\",\"width:90%\",\"padding:3rem\",\"background-size:50%\",\"background-repeat:no-repeat\",\"background-position-x:right\",\"background-position-y:bottom\",\"margin:0 auto\"]],[true,{\".cp-services__card--column-one\":true},[\"display:flex\",\"align-items:center\",\"justify-content:flex-start\",\"margin-bottom:1.5rem\"]],[true,{\".cp-services__card--title\":true},[\"color:#121d3d\",\"margin:0\"]],[true,{\".cp-services__card--title:not(#_#_#_#_#_#_#_)\":true},[\"font-family:raleway,sans-serif\",\"font-weight:600\",\"font-size:1.5rem\",\"padding:0\"]],[true,{\".cp-services__card--img\":true},[\"width:50px\",\"height:auto\",\"margin-right:.5rem\"]],[true,{\".cp-services__card--text\":true},[\"color:#707070\",\"font-family:roboto,sans-serif\",\"font-weight:500\"]],[true,{\".cp-services__card--text:not(#_#_#_#_#_#_#_)\":true},[\"font-size:1rem\"]],[true,{\".cp-services__card--text strong\":true},[\"color:#23bbff\",\"text-decoration:underline\"]],[true,{\".cp-services__card--button\":true},[\"margin-top:1rem\",\"background:#23bbff\",\"border:none\",\"box-shadow:none\",\"padding:.3rem 1rem\"]],[true,{\".cp-services__card--button a\":true},[\"color:#fff\",\"font-family:roboto,sans-serif\",\"font-weight:700\",\"text-transform:uppercase\",\"font-size:14px\",\"text-decoration:none\"]],[true,{\"#headingOne\":true},[\"display:none\"]],[true,{\"#headingTwo\":true},[\"display:block\"]],[true,{\"#headingThree\":true},[\"display:block\",\"background:transparent linear-gradient(180deg,#27d9cb 0%,#a1f266 100%) 0% 0% no-repeat padding-box\"]],[false,{\".cp-services__card-web:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".cp-services__card-mobile:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[true,\"@media (max-width: 575.98px){\"],[true,{\".cp-services__card\":true},[\"padding:1rem\",\"margin:0\",\"width:100%\"]],[true,{\".cp-services__card:not(#_#_#_#_#_#_#_)\":true},[\"background-image:none\"]],[true,{\".cp-services__box--column\":true},[\"margin:0\",\"padding:2rem 1rem\",\"border-radius:5px\"]],[true,{\".cp-services__card--title\":true},[\"line-height:initial\",\"padding:0\"]],[true,{\".cp-services__card--title:not(#_#_#_#_#_#_#_)\":true},[\"font-size:1rem\"]],[true,{\".cp-services__card--img\":true},[\"width:30px\"]],[true,{\".cp-services__card--text\":true},[\"font-size:.9rem\"]],[true,{\".cp-services__card--text:not(#_#_#_#_#_#_#_)\":true},[\"line-height:initial\"]],[false,{\".cp-services__card-web:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".cp-services__card-mobile:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[true,\"}\"],[true,\"@media (min-width: 600px) and (max-width: 768px){\"],[true,{\".cp-services__card:not(#_#_#_#_#_#_#_)\":true},[\"background-image:none\"]],[true,{\".cp-services__card--title:not(#_#_#_#_#_#_#_)\":true},[\"font-size:1.5rem\"]],[false,{\".cp-services__card-web:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".cp-services__card-mobile:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":3280,\"final_size\":2575,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/client-testimonial\\/client-testimonial.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"5337a633a57395e1a71e48ca5e7dbe57\",\"parse_time\":0.06432199478149414,\"shake_time\":6.699562072753906e-5,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".cp-client-testimonial\":true},[\"background-color:#121d3d\",\"padding:3rem 0 1rem\"]],[true,{\".cp-client-testimonial__title\":true},[\"color:#53c8fd\",\"font-family:raleway,sans-serif\",\"margin:0\",\"padding:0\"]],[true,{\".cp-client-testimonial__title:not(#_#_#_#_#_#_#_)\":true},[\"font-weight:100\",\"font-size:1.9rem\"]],[true,{\".cp-client-testimonial__little-dots\":true},[\"color:#53c8fd\",\"font-size:1.9rem\"]],[true,{\".cp-client-testimonial__little-dots-mobile\":true},[\"display:none\",\"color:#53c8fd\",\"font-size:1.9rem\"]],[true,{\".cp-client-testimonial__little-dots-tablet\":true},[\"display:none\",\"color:#53c8fd\",\"font-size:1.9rem\"]],[true,{\".cp-client-testimonial__title strong\":true},[\"color:#53c8fd\",\"font-weight:700\"]],[true,{\".cp-client-testimonial__slider\":true},[\"margin-top:2rem\"]],[true,{\".cp-client-testimonial__subtitle\":true},[\"margin-bottom:2rem\"]],[true,{\".cp-client-testimonial__subtitle h3\":true},[\"font-size:2.5rem\",\"letter-spacing:0px\",\"line-height:45px\",\"color:#fff\",\"margin:0\",\"font-family:raleway,sans-serif\",\"font-weight:900\",\"text-transform:inherit\"]],[true,{\".cp-client-testimonial__name\":true},[\"color:#53c8fd\",\"font-size:18px\",\"margin:0\",\"text-transform:uppercase\"]],[true,{\".cp-client-testimonial__office\":true},[\"color:#fff\",\"margin:0\",\"font-size:12px\",\"line-height:20px\"]],[true,{\".cp-client-testimonial__logo\":true},[\"max-width:80%\"]],[true,{\".cp-client-testimonial__logo amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".cp-client-testimonial__logo amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:auto\"]],[true,{\".cp-client-testimonial__testimonial\":true},[\"color:#818181\",\"font-family:roboto,sans-serif\",\"font-size:21px\"]],[true,{\".cp-client-testimonial_nav\":true},[\"width:100%\",\"text-align:center\",\"margin-top:2rem\",\"display:flex\",\"flex-direction:row\",\"align-items:center\",\"justify-content:flex-start\"]],[true,{\".cp-client-testimonial_nav-button\":true},[\"width:40%\",\"border:1px solid #23bbff\",\"border-radius:15px\",\"background-color:transparent\",\"color:#23bbff\",\"margin:0 .5rem\",\"cursor:pointer\"]],[true,{\".cp-client-testimonial_nav-button:hover\":true},[\"background-color:#23bbff\",\"color:#fff\"]],[true,{\".cp-client-testimonial_nav-button i\":true},[\"font-size:1rem\"]],[false,{\".owl-nav\":false},[\"display:none\"]],[true,\"@media (max-width: 575.98px){\"],[true,{\".cp-client-testimonial__title:not(#_#_#_#_#_#_#_)\":true},[\"font-size:1rem\",\"padding:0\",\"line-height:20px\"]],[true,{\".cp-client-testimonial__subtitle h3\":true},[\"font-size:30px\",\"line-height:42px\"]],[true,{\".cp-client-testimonial__office\":true},[\"font-size:12px\",\"line-height:17px\"]],[true,{\".cp-client-testimonial__name\":true},[\"font-size:15px\"]],[true,{\".cp-client-testimonial__testimonial\":true},[\"margin-top:2rem\"]],[true,{\".cp-client-testimonial_nav\":true},[\"padding-bottom:2rem\"]],[true,{\".cp-client-testimonial__little-dots\":true},[\"display:none\"]],[true,{\".cp-client-testimonial__little-dots-mobile\":true},[\"display:block\"]],[true,\"}\"],[true,\"@media (min-width: 600px) and (max-width: 768px){\"],[true,{\".cp-client-testimonial__subtitle h3\":true},[\"font-size:2rem\",\"line-height:40px\"]],[true,{\".cp-client-testimonial__name\":true},[\"font-size:18px\"]],[true,{\".cp-client-testimonial__office\":true},[\"font-size:12px\"]],[true,{\".cp-client-testimonial__testimonial\":true},[\"font-size:15px\"]],[true,{\".cp-client-testimonial__little-dots\":true},[\"display:none\"]],[true,{\".cp-client-testimonial__little-dots-mobile\":true},[\"display:none\"]],[true,{\".cp-client-testimonial__little-dots-tablet\":true},[\"display:block\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":3496,\"final_size\":2544,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/contact-us\\/contact-us.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"5f9ce1a3cec945a8f2f9e8ab816246ae\",\"parse_time\":0.08191609382629395,\"shake_time\":5.602836608886719e-5,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".cp-contact-us\":true},[\"background:linear-gradient(0deg,rgba(195,242,74,1) 0%,rgba(152,242,110,1) 20%,rgba(10,210,226,1) 80%,rgba(10,210,226,1) 100%)\",\"padding:3rem 0 5rem\"]],[true,{\".cp-contact-us__box\":true},[\"border-radius:15px\",\"background:#fff\",\"box-shadow:0px 9px 21px rgba(0,0,0,.16)\"]],[true,{\".cp-contact-us__box-layout\":true},[\"padding:2rem 3rem\"]],[true,{\".cp-contact-us__title\":true},[\"font-size:40px\",\"color:#121d3d\",\"font-weight:900\",\"font-family:raleway,sans-serif\",\"margin:0\"]],[true,{\".cp-contact-us__subtitle\":true},[\"color:#23bbff\",\"text-decoration:underline\",\"cursor:pointer\",\"font-family:raleway,sans-serif\",\"font-weight:bold\",\"margin:0\"]],[true,{\".cp-contact-us__form\":true},[\"padding-top:1.5rem\"]],[true,{\".cp-contact-us__form label\":true},[\"display:block\",\"color:#121d3d\",\"font-size:15px\",\"font-weight:bold\",\"margin-bottom:.5rem\"]],[true,{\".cp-contact-us__form label:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:\\\"Roboto\\\",sans-serif\"]],[true,{\".cp-contact-us__form input\":true,\"textarea\":true},[\"border:none\",\"border-bottom:1px solid #b0b0b0\",\"color:#b0b0b0\",\"font-size:13px\",\"margin-bottom:1.5rem\",\"width:100%\",\"outline:none\"]],[true,{\".cp-contact-us__form--button\":true},[\"background-color:#23bbff\",\"padding:1rem 0\",\"width:100%\",\"border:none\",\"cursor:pointer\",\"font-weight:700\",\"font-family:\\\"Roboto\\\",sans-serif\",\"outline:none\",\"font-size:1rem\"]],[true,{\".cp-contact-us__form--button:not(#_#_#_#_#_#_#_)\":true},[\"color:#fff\"]],[true,{\".cp-contact-us__partner-data\":true},[\"background-color:#121d3d\",\"border-radius:0px 15px 15px 0px\"]],[true,{\".cp-contact-us__partner-data--title\":true},[\"color:#fff\",\"font-family:raleway,sans-serif\",\"font-weight:bold\",\"font-size:1.4rem\",\"margin:0\",\"line-height:25px\"]],[true,{\".cp-contact-us__partner-data--title span\":true},[\"color:#23bbff\"]],[true,{\".cp-contact-us__partner-data--name\":true},[\"line-height:20px\",\"color:#23bbff\",\"margin:2rem 0 1rem\",\"font-weight:900\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-size:1rem\"]],[true,{\".cp-contact-us__partner-data--name span\":true},[\"font-weight:100\",\"color:#fff\"]],[true,{\".cp-contact-us__partner-data--email-message\":true},[\"margin:0\",\"color:#fff\",\"font-weight:900\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-size:1rem\"]],[true,{\".cp-contact-us__partner-data--email\":true},[\"color:#23bbff\",\"font-weight:500\",\"font-family:\\\"Roboto\\\",sans-serif\",\"margin:0\",\"font-size:1rem\"]],[true,{\".cp-contact-us__partner-data--phone\":true},[\"margin:0\",\"color:#23bbff\",\"font-weight:900\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-size:1rem\"]],[true,\"@media (max-width: 575.98px){\"],[true,{\".cp-contact-us\":true},[\"padding:3rem .5rem 5rem\"]],[true,{\".cp-contact-us__box-layout\":true},[\"padding:2rem 2rem\"]],[true,{\".cp-contact-us__title\":true},[\"font-size:20px\"]],[true,{\".cp-contact-us__subtitle\":true},[\"font-size:17px\",\"float:right\"]],[true,{\".cp-contact-us__form--button\":true},[\"margin-bottom:2rem\"]],[true,{\".cp-contact-us__partner-data\":true},[\"border-radius:0px 0px 15px 15px\"]],[true,\"}\"],[true,\"@media (min-width: 600px) and (max-width: 768px){\"],[true,{\".cp-contact-us__title\":true},[\"font-size:25px\"]],[true,{\".cp-contact-us__partner-data--title\":true},[\"font-size:1.1rem\"]],[true,{\".cp-contact-us__partner-data--email\":true},[\"word-break:break-all\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":57925,\"final_size\":10464,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"rs-plugin-settings-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/rs6.css?ver=6.5.23\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":134,\"function\":\"RevSliderFront::add_inline_css\",\"hook\":\"wp_footer\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"rs-plugin-settings\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}],\"priority\":30,\"hash\":\"4a682d94bb410f9ebfc91fae35d45117\",\"parse_time\":0.7066469192504883,\"shake_time\":0.0011539459228515625,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.eot?5510888#iefix\"],\"shaken_tokens\":[[true,{\".rs-p-wp-fix:not(#_#_#_#_#_#_#_)\":true},[\"display:none\",\"margin:0\",\"height:0px\"]],[false,{\".wp-block-themepunch-revslider\":false},[\"position:relative\"]],[false,{\"rs-modal:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"z-index:9999999\",\"pointer-events:none\"]],[false,{\"rs-modal.rs-modal-auto\":false},[\"top:auto\",\"bottom:auto\",\"left:auto\",\"right:auto\"]],[false,{\"rs-modal.rs-modal-fullwidth\":false,\"rs-modal.rs-modal-fullscreen\":false},[\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\"]],[false,{\"rs-modal rs-fullwidth-wrap\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"height:100%\"]],[false,{\"rs-module-wrap.rs-modal\":false},[\"display:none\"]],[false,{\"rs-module-wrap.rs-modal:not(#_#_#_#_#_#_#_#_)\":false},[\"max-height:100%\",\"overflow:auto\",\"pointer-events:auto\"]],[false,{\"rs-module-wrap.hideallscrollbars.rs-modal:not(#_#_#_#_#_#_#_#_)\":false},[\"overflow:hidden\",\"max-width:100%\"]],[false,{\"rs-modal-cover\":false},[\"width:100%\",\"height:100%\",\"z-index:0\",\"background:transparent\",\"position:absolute\",\"top:0px\",\"left:0px\",\"cursor:pointer\",\"pointer-events:auto\"]],[false,{\"body>rs-modal-cover\":false},[\"position:fixed\"]],[false,{\"body>rs-modal-cover:not(#_#_#_#_#_#_#_#_)\":false},[\"z-index:9999995\"]],[false,{\"rs-sbg-px\":false},[\"pointer-events:none\"]],[false,{\".rs-forceuntouchable:not(#_#_#_#_#_#_#_)\":false,\".rs-forceuntouchable *:not(#_#_#_#_#_#_#_)\":false},[\"pointer-events:none\"]],[false,{\".rs-forcehidden *:not(#_#_#_#_#_#_#_)\":false},[\"visibility:hidden\"]],[false,{\".rs_splitted_lines\":false},[\"display:block\"]],[false,{\".rs_splitted_lines:not(#_#_#_#_#_#_#_)\":false},[\"white-space:nowrap\"]],[false,{\".rs-go-fullscreen\":false},[\"background:#fff\"]],[false,{\".rs-go-fullscreen:not(#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\",\"z-index:9999999\"]],[false,{\".rtl\":false},[\"direction:rtl\"]],[true,\"@font-face{font-family:\\\"revicons\\\";src:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.eot?5510888\\\");src:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.eot?5510888#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.woff?5510888\\\") format(\\\"woff\\\"),url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.ttf?5510888\\\") format(\\\"truetype\\\"),url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.svg?5510888#revicons\\\") format(\\\"svg\\\");font-weight:normal;font-style:normal;font-display:swap}\"],[true,{\"[class^=\\\"revicon-\\\"]:before\":true,\"[class*=\\\" revicon-\\\"]:before\":true},[\"font-family:\\\"revicons\\\"\",\"font-style:normal\",\"font-weight:normal\",\"speak:never\",\"speak-as:spell-out\",\"display:inline-block\",\"text-decoration:inherit\",\"width:1em\",\"margin-right:.2em\",\"text-align:center\",\"font-variant:normal\",\"text-transform:none\",\"line-height:1em\",\"margin-left:.2em\"]],[true,{\"rs-module i[class^=\\\"fa-\\\"]\":true,\"rs-module i[class*=\\\" fa-\\\"]\":true,\".rb-modal-wrapper i[class^=\\\"fa-\\\"]\":false,\".rb-modal-wrapper i[class*=\\\" fa-\\\"]\":false,\"#waitaminute i[class^=\\\"fa-\\\"]\":false,\"#waitaminute i[class*=\\\" fa-\\\"]\":false,\"#objectlibrary i[class^=\\\"fa-\\\"]\":false,\"#objectlibrary i[class*=\\\" fa-\\\"]\":false,\"#rs_overview i[class^=\\\"fa-\\\"]\":false,\"#rs_overview i[class*=\\\" fa-\\\"]\":false,\"#rs_overview_menu i[class^=\\\"fa-\\\"]\":false,\"#rs_overview_menu i[class*=\\\" fa-\\\"]\":false,\"#builderView i[class^=\\\"fa-\\\"]\":false,\"#builderView i[class*=\\\" fa-\\\"]\":false},[\"display:inline-block\",\"font:normal normal normal 14px\\/1 FontAwesome\",\"font-size:inherit\",\"text-rendering:auto\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\"]],[true,{\"rs-module [class^=\\\"fa-\\\"]:before\":true,\"rs-module [class*=\\\" fa-\\\"]:before\":true,\".rb-modal-wrapper [class^=\\\"fa-\\\"]:before\":false,\".rb-modal-wrapper [class*=\\\" fa-\\\"]:before\":false,\"#rs_overview [class^=\\\"fa-\\\"]:before\":false,\"#rs_overview [class*=\\\" fa-\\\"]:before\":false,\"#objectlibrary [class^=\\\"fa-\\\"]:before\":false,\"#objectlibrary [class*=\\\" fa-\\\"]:before\":false,\"#waitaminute [class^=\\\"fa-\\\"]:before\":false,\"#waitaminute [class*=\\\" fa-\\\"]:before\":false,\"#rs_overview_menu [class^=\\\"fa-\\\"]:before\":false,\"#rs_overview_menu [class*=\\\" fa-\\\"]:before\":false,\"#builderView [class^=\\\"fa-\\\"]:before\":false,\"#builderView [class*=\\\" fa-\\\"]:before\":false},[\"font-family:FontAwesome\",\"font-style:normal\",\"font-weight:400\",\"speak:never\",\"speak-as:spell-out\",\"display:inline-block\",\"text-decoration:inherit\",\"width:auto\",\"margin-right:0\",\"text-align:center\",\"font-variant:normal\",\"text-transform:none\",\"line-height:inherit\",\"margin-left:0\"]],[false,{\"rs-module .sr-only\":false,\"#objectlibrary .sr-only\":false,\"#waitaminute .sr-only\":false,\"#rs_overview .sr-only\":false,\"#rs_overview_menu .sr-only\":false,\".rb-modal-wrapper .sr-only\":false,\"#builderView .sr-only\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,{\"rs-module .sr-only-focusable:active\":false,\"rs-module .sr-only-focusable:focus\":false,\"#waitaminute .sr-only-focusable:active\":false,\"#waitaminute .sr-only-focusable:focus\":false,\"#objectlibrary .sr-only-focusable:active\":false,\"#objectlibrary .sr-only-focusable:focus\":false,\"#rs_overview .sr-only-focusable:active\":false,\"#rs_overview .sr-only-focusable:focus\":false,\"#rs_overview_menu .sr-only-focusable:active\":false,\"#rs_overview_menu .sr-only-focusable:focus\":false,\".rb-modal-wrapper .sr-only-focusable:active\":false,\".rb-modal-wrapper .sr-only-focusable:focus\":false,\"#builderView .sr-only-focusable:active\":false,\"#builderView .sr-only-focusable:focus\":false},[\"position:static\",\"width:auto\",\"height:auto\",\"margin:0\",\"overflow:visible\",\"clip:auto\"]],[false,{\".revicon-search-1:before\":false},[\"content:\\\"\\ue802\\\"\"]],[false,{\".revicon-pencil-1:before\":false},[\"content:\\\"\\ue831\\\"\"]],[false,{\".revicon-picture-1:before\":false},[\"content:\\\"\\ue803\\\"\"]],[false,{\".revicon-cancel:before\":false},[\"content:\\\"\\ue80a\\\"\"]],[false,{\".revicon-info-circled:before\":false},[\"content:\\\"\\ue80f\\\"\"]],[false,{\".revicon-trash:before\":false},[\"content:\\\"\\ue801\\\"\"]],[false,{\".revicon-left-dir:before\":false},[\"content:\\\"\\ue817\\\"\"]],[false,{\".revicon-right-dir:before\":false},[\"content:\\\"\\ue818\\\"\"]],[false,{\".revicon-down-open:before\":false},[\"content:\\\"\\ue83b\\\"\"]],[false,{\".revicon-left-open:before\":false},[\"content:\\\"\\ue819\\\"\"]],[false,{\".revicon-right-open:before\":false},[\"content:\\\"\\ue81a\\\"\"]],[false,{\".revicon-angle-left:before\":false},[\"content:\\\"\\ue820\\\"\"]],[false,{\".revicon-angle-right:before\":false},[\"content:\\\"\\ue81d\\\"\"]],[false,{\".revicon-left-big:before\":false},[\"content:\\\"\\ue81f\\\"\"]],[false,{\".revicon-right-big:before\":false},[\"content:\\\"\\ue81e\\\"\"]],[false,{\".revicon-magic:before\":false},[\"content:\\\"\\ue807\\\"\"]],[false,{\".revicon-picture:before\":false},[\"content:\\\"\\ue800\\\"\"]],[false,{\".revicon-export:before\":false},[\"content:\\\"\\ue80b\\\"\"]],[false,{\".revicon-cog:before\":false},[\"content:\\\"\\ue832\\\"\"]],[false,{\".revicon-login:before\":false},[\"content:\\\"\\ue833\\\"\"]],[false,{\".revicon-logout:before\":false},[\"content:\\\"\\ue834\\\"\"]],[false,{\".revicon-video:before\":false},[\"content:\\\"\\ue805\\\"\"]],[false,{\".revicon-arrow-combo:before\":false},[\"content:\\\"\\ue827\\\"\"]],[false,{\".revicon-left-open-1:before\":false},[\"content:\\\"\\ue82a\\\"\"]],[false,{\".revicon-right-open-1:before\":false},[\"content:\\\"\\ue82b\\\"\"]],[false,{\".revicon-left-open-mini:before\":false},[\"content:\\\"\\ue822\\\"\"]],[false,{\".revicon-right-open-mini:before\":false},[\"content:\\\"\\ue823\\\"\"]],[false,{\".revicon-left-open-big:before\":false},[\"content:\\\"\\ue824\\\"\"]],[false,{\".revicon-right-open-big:before\":false},[\"content:\\\"\\ue825\\\"\"]],[false,{\".revicon-left:before\":false},[\"content:\\\"\\ue836\\\"\"]],[false,{\".revicon-right:before\":false},[\"content:\\\"\\ue826\\\"\"]],[false,{\".revicon-ccw:before\":false},[\"content:\\\"\\ue808\\\"\"]],[false,{\".revicon-arrows-ccw:before\":false},[\"content:\\\"\\ue806\\\"\"]],[false,{\".revicon-palette:before\":false},[\"content:\\\"\\ue829\\\"\"]],[false,{\".revicon-list-add:before\":false},[\"content:\\\"\\ue80c\\\"\"]],[false,{\".revicon-doc:before\":false},[\"content:\\\"\\ue809\\\"\"]],[false,{\".revicon-left-open-outline:before\":false},[\"content:\\\"\\ue82e\\\"\"]],[false,{\".revicon-left-open-2:before\":false},[\"content:\\\"\\ue82c\\\"\"]],[false,{\".revicon-right-open-outline:before\":false},[\"content:\\\"\\ue82f\\\"\"]],[false,{\".revicon-right-open-2:before\":false},[\"content:\\\"\\ue82d\\\"\"]],[false,{\".revicon-equalizer:before\":false},[\"content:\\\"\\ue83a\\\"\"]],[false,{\".revicon-layers-alt:before\":false},[\"content:\\\"\\ue804\\\"\"]],[false,{\".revicon-popup:before\":false},[\"content:\\\"\\ue828\\\"\"]],[false,{\".tp-fullwidth-forcer\":false},[\"z-index:0\",\"pointer-events:none\"]],[true,{\"rs-module-wrap\":true},[\"visibility:hidden\"]],[true,{\"rs-module-wrap\":true,\"rs-module-wrap *\":true},[\"box-sizing:border-box\",\"-webkit-tap-highlight-color:rgba(0,0,0,0)\"]],[true,{\"rs-module-wrap\":true},[\"position:relative\",\"z-index:1\",\"width:100%\",\"display:block\"]],[false,{\".rs-fixedscrollon rs-module-wrap\":false},[\"z-index:1000\"]],[false,{\".rs-fixedscrollon rs-module-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0px\",\"left:0\"]],[false,{\".rs-stickyscrollon rs-module-wrap\":false},[\"top:0px\",\"z-index:1000\"]],[false,{\".rs-stickyscrollon rs-module-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"position:sticky\"]],[false,{\".rs-stickyscrollon:not(#_#_#_#_#_#_#_)\":false},[\"overflow:visible\"]],[false,{\"rs-fw-forcer\":false},[\"display:block\",\"width:100%\",\"pointer-events:none\"]],[true,{\"rs-module\":true},[\"position:relative\",\"overflow:hidden\",\"display:block\"]],[false,{\"rs-module.disableVerticalScroll\":false},[\"-ms-touch-action:pan-x\",\"touch-action:pan-x\"]],[false,{\"rs-pzimg-wrap\":false,\"rs-sbg-effectwrap\":false,\"rs-sbg\":false},[\"display:block\",\"pointer-events:none\"]],[false,{\"rs-sbg-effectwrap\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\"]],[false,{\"rs-carousel-wrap rs-column rs-layer amp-img\":false,\"rs-carousel-wrap rs-column rs-layer amp-anim\":false},[\"width:0px\",\"height:0px\"]],[false,{\"rs-sbg-px\":false,\"rs-sbg-wrap\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"z-index:0\",\"width:100%\",\"height:100%\",\"display:block\"]],[true,{\"a.rs-layer\":true,\"a.rs-layer:-webkit-any-link\":true},[\"text-decoration:none\"]],[false,{\"a[x-apple-data-detectors]:not(#_#_#_#_#_#_#_#_)\":false},[\"color:inherit\",\"text-decoration:none\",\"font-size:inherit\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:inherit\"]],[true,{\".entry-content rs-module a\":false,\"rs-module a\":true},[\"box-shadow:none\"]],[false,{\".rs-ov-hidden:not(#_#_#_#_#_#_#_)\":false},[\"overflow:hidden\"]],[false,{\".rs-forceoverflow:not(#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-module-wrap:not(#_#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-module:not(#_#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-slides:not(#_#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-slide:not(#_#_#_#_#_#_#_#_)\":false},[\"overflow:visible\"]],[true,{\".tp-simpleresponsive amp-img\":false,\".tp-simpleresponsive amp-anim\":false,\"rs-module amp-img\":true,\"rs-module amp-anim\":false},[\"transition:none\",\"margin:0px\",\"padding:0px\",\"border:none\"]],[true,{\".tp-simpleresponsive amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".tp-simpleresponsive amp-anim:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-img:not(#_#_#_#_#_#_#_#_)\":true,\"rs-module amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\"rs-module .no-slides-text\":false},[\"font-weight:bold\",\"text-align:center\",\"padding-top:80px\"]],[true,{\"rs-slides\":true,\"rs-slide\":true,\"rs-slide:before\":true},[\"position:absolute\",\"text-indent:0em\",\"top:0px\",\"left:0px\"]],[true,{\"rs-slide\":true,\"rs-slide:before\":true},[\"display:block\",\"visibility:hidden\"]],[false,{\".rs-layer .rs-untoggled-content\":false},[\"display:block\"]],[false,{\".rs-layer .rs-toggled-content\":false},[\"display:none\"]],[false,{\".rs-tc-active.rs-layer > .rs-toggled-content\":false},[\"display:block\"]],[false,{\".rs-tc-active.rs-layer > .rs-untoggled-content\":false},[\"display:none\"]],[false,{\".rs-layer-video\":false},[\"overflow:hidden\"]],[false,{\".rs_html5vidbasicstyles\":false},[\"position:relative\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"overflow:hidden\"]],[true,{\"rs-module rs-layer\":true,\"rs-module .rs-layer\":true},[\"opacity:0\",\"position:relative\",\"visibility:hidden\",\"display:block\",\"-webkit-tap-highlight-color:rgba(0,0,0,0)\",\"-moz-osx-font-smoothing:grayscale\",\"z-index:1\",\"font-display:swap\"]],[true,{\"rs-module rs-layer:not(#_#_#_#_#_#_#_#_)\":true,\"rs-module .rs-layer:not(#_#_#_#_#_#_#_#_)\":true},[\"-webkit-font-smoothing:antialiased\"]],[true,{\"rs-layer-wrap\":false,\"rs-mask\":false,\"rs-module-wrap\":true,\"rs-module .rs-layer\":true,\"rs-module amp-img\":true,\"rs-module amp-anim\":false},[\"user-select:none\"]],[false,{\"rs-module rs-mask-wrap .rs-layer\":false,\"rs-module rs-mask-wrap *:last-child\":false,\".wpb_text_column rs-module rs-mask-wrap .rs-layer\":false,\".wpb_text_column rs-module rs-mask-wrap *:last-child\":false},[\"margin-bottom:0\"]],[false,{\".rs-svg svg\":false},[\"width:100%\",\"height:100%\",\"position:relative\",\"vertical-align:top\"]],[true,{\"rs-layer:not(.rs-wtbindex):not(#_#_#_#_#_#_#_#_)\":true,\".rs-layer:not(.rs-wtbindex):not(#_#_#_#_#_#_#_)\":true,\"rs-alyer *:not(.rs-wtbindex):not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer *:not(.rs-wtbindex):not(#_#_#_#_#_#_#_)\":true},[\"outline:none\"]],[false,{\"rs-carousel-wrap\":false},[\"cursor:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/openhand.cur\\\"),move\"]],[false,{\"rs-carousel-wrap.dragged\":false},[\"cursor:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/closedhand.cur\\\"),move\"]],[false,{\"rs-carousel-wrap.noswipe\":false},[\"cursor:default\"]],[false,{\"rs-carousel-wrap\":false},[\"position:absolute\",\"overflow:hidden\",\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\"]],[false,{\"rs-carousel-space\":false},[\"clear:both\",\"display:block\",\"width:100%\",\"height:0px\",\"position:relative\"]],[false,{\".tp_inner_padding\":false},[\"box-sizing:border-box\"]],[false,{\".tp_inner_padding:not(#_#_#_#_#_#_#_)\":false},[\"max-height:none\"]],[false,{\".rs-layer.rs-selectable\":false},[\"user-select:text\"]],[false,{\"rs-px-mask\":false},[\"overflow:hidden\",\"display:block\",\"width:100%\",\"height:100%\",\"position:relative\"]],[false,{\"rs-module embed\":false,\"rs-module amp-iframe\":false,\"rs-module amp-google-document-embed\":false,\"rs-module amp-audio\":false,\"rs-module amp-video\":false,\"rs-module amp-youtube\":false},[\"border:none\"]],[false,{\"rs-module embed:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-iframe:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-google-document-embed:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-audio:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-video:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-youtube:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\"rs-bg-elem\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"z-index:0\",\"display:block\",\"pointer-events:none\"]],[false,{\".tp-blockmask\":false,\".tp-blockmask_in\":false,\".tp-blockmask_out\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"background:#fff\",\"z-index:1000\",\"transform:scaleX(0) scaleY(0)\"]],[false,{\"rs-zone\":false},[\"position:absolute\",\"width:100%\",\"left:0px\",\"box-sizing:border-box\",\"min-height:50px\",\"font-size:0px\",\"pointer-events:none\"]],[false,{\"rs-row-wrap\":false,\"rs-column\":false,\"rs-cbg-mask-wrap\":false},[\"display:block\",\"visibility:hidden\"]],[false,{\"rs-layer-wrap\":false,\"rs-parallax-wrap\":false,\"rs-loop-wrap\":false,\"rs-mask-wrap\":false},[\"display:block\"]],[false,{\"rs-column-wrap>rs-loop-wrap\":false},[\"z-index:1\"]],[false,{\"rs-layer-wrap\":false,\"rs-mask-wrap\":false,\"rs-cbg-mask-wrap\":false},[\"transform-style:flat\"]],[false,\"@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0){\"],[false,{\"rs-carousel-wrap rs-layer-wrap\":false,\"rs-carousel-wrap rs-loop-wrap\":false},[\"backface-visibility:hidden\",\"transform-style:preserve-3d\"]],[false,\"}\"],[false,{\".safarifix rs-layer-wrap\":false},[\"perspective:1000000\"]],[false,\"@-moz-document url-prefix(){\"],[false,{\"rs-layer-wrap\":false,\"rs-mask-wrap\":false,\"rs-cbg-mask-wrap\":false},[\"perspective:none\"]],[false,\"}\"],[false,{\"rs-mask-wrap\":false},[\"overflow:hidden\"]],[false,{\"rs-fullwidth-wrap\":false},[\"position:relative\",\"width:100%\",\"height:auto\",\"display:block\",\"overflow:visible\"]],[false,{\"rs-fullwidth-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\".rev_row_zone_top\":false},[\"top:0px\"]],[false,{\".rev_row_zone_bottom\":false},[\"bottom:0px\"]],[false,{\".rev_row_zone_middle\":false},[\"top:0px\"]],[false,{\"rs-column-wrap .rs-parallax-wrap\":false},[\"vertical-align:top\"]],[true,{\".rs-layer amp-img\":true,\".rs-layer amp-anim\":false,\"rs-layer amp-img\":true,\"rs-layer amp-anim\":false},[\"vertical-align:top\"]],[false,{\"rs-row\":false,\"rs-row.rs-layer\":false},[\"display:table\",\"position:relative\",\"table-layout:fixed\",\"box-sizing:border-box\",\"vertical-align:top\",\"height:auto\",\"font-size:0px\"]],[false,{\"rs-row:not(#_#_#_#_#_#_#_#_)\":false,\"rs-row.rs-layer:not(#_#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".rs-layer.rs-waction.iospermaccwait.permanenthidden:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"visibility:hidden\",\"pointer-events:none\"]],[false,{\"rs-column-wrap\":false},[\"display:table-cell\",\"position:relative\",\"vertical-align:top\",\"height:auto\",\"box-sizing:border-box\",\"font-size:0px\"]],[false,{\"rs-column\":false},[\"box-sizing:border-box\",\"display:block\",\"position:relative\"]],[false,{\"rs-column:not(#_#_#_#_#_#_#_#_)\":false},[\"width:100%\",\"height:auto\",\"white-space:normal\"]],[false,{\"rs-cbg-mask-wrap\":false},[\"position:absolute\",\"z-index:0\",\"box-sizing:border-box\"]],[false,{\"rs-column-wrap rs-cbg-mask-wrap\":false},[\"top:0px\",\"left:0px\",\"bottom:0px\",\"right:0px\"]],[false,{\"rs-column-bg\":false},[\"position:absolute\",\"z-index:0\",\"box-sizing:border-box\",\"width:100%\",\"height:100%\"]],[false,{\".rs-pelock *:not(#_#_#_#_#_#_#_)\":false},[\"pointer-events:none\"]],[false,{\"rs-column .rs-parallax-wrap\":false,\"rs-column rs-loop-wrap\":false,\"rs-column rs-mask-wrap\":false},[\"text-align:inherit\"]],[false,{\"rs-column rs-mask-wrap\":false},[\"display:inline-block\"]],[false,{\"rs-column .rs-parallax-wrap rs-loop-wrap\":false,\"rs-column .rs-parallax-wrap rs-mask-wrap\":false,\"rs-column .rs-parallax-wrap\":false},[\"line-height:0px\"]],[false,{\"rs-column .rs-parallax-wrap rs-loop-wrap:not(#_#_#_#_#_#_#_#_)\":false,\"rs-column .rs-parallax-wrap rs-mask-wrap:not(#_#_#_#_#_#_#_#_)\":false,\"rs-column .rs-parallax-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"position:relative\",\"left:auto\",\"top:auto\"]],[false,{\"rs-column .rs-parallax-wrap rs-loop-wrap\":false,\"rs-column .rs-parallax-wrap rs-mask-wrap\":false,\"rs-column .rs-parallax-wrap\":false,\"rs-column .rev_layer_in_column\":false},[\"vertical-align:top\"]],[false,{\".rev_break_columns:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".rev_break_columns rs-column-wrap.rs-parallax-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\",\"width:100%\"]],[false,{\".rev_break_columns rs-column-wrap.rs-parallax-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_#_)\":false,\".tp-forcenotvisible:not(#_#_#_#_#_#_#_)\":false,\".tp-hide-revslider:not(#_#_#_#_#_#_#_)\":false,\"rs-row-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_#_)\":false,\"rs-column-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer.rs-layer-hidden:not(#_#_#_#_#_#_#_)\":false,\".rs-layer-audio.rs-layer-hidden:not(#_#_#_#_#_#_#_)\":false,\".rs-parallax-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_)\":false},[\"visibility:hidden\",\"display:none\"]],[false,{\"a.rs-layer.rs-nointeraction >.div:not(#_#_#_#_#_#_#_#_)\":false,\"rs-layer.rs-nointeraction:not(a):not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer.rs-nointeraction:not(a):not(#_#_#_#_#_#_#_)\":false},[\"pointer-events:none\"]],[false,{\"rs-static-layers\":false},[\"position:absolute\",\"z-index:101\",\"top:0px\",\"left:0px\",\"display:block\",\"width:100%\",\"height:100%\",\"pointer-events:none\",\"overflow:hidden\"]],[false,{\"rs-static-layers.rs-stl-back\":false},[\"z-index:0\"]],[false,{\".rs-stl-visible:not(#_#_#_#_#_#_#_)\":false},[\"overflow:visible\"]],[false,{\".rs-layer rs-fcr\":false},[\"width:0\",\"height:0\",\"border-left:40px solid transparent\",\"border-right:0px solid transparent\",\"border-top:40px solid #00a8ff\",\"position:absolute\",\"right:100%\",\"top:0px\"]],[false,{\".rs-layer rs-fcrt\":false},[\"width:0\",\"height:0\",\"border-left:40px solid transparent\",\"border-right:0px solid transparent\",\"border-bottom:40px solid #00a8ff\",\"position:absolute\",\"right:100%\",\"top:0px\"]],[false,{\".rs-layer rs-bcr\":false},[\"width:0\",\"height:0\",\"border-left:0px solid transparent\",\"border-right:40px solid transparent\",\"border-bottom:40px solid #00a8ff\",\"position:absolute\",\"left:100%\",\"top:0px\"]],[false,{\".rs-layer rs-bcrt\":false},[\"width:0\",\"height:0\",\"border-left:0px solid transparent\",\"border-right:40px solid transparent\",\"border-top:40px solid #00a8ff\",\"position:absolute\",\"left:100%\",\"top:0px\"]],[false,{\".tp-layer-inner-rotation:not(#_#_#_#_#_#_#_)\":false},[\"position:relative\"]],[false,{\"amp-img.tp-slider-alternative-image\":false,\"amp-anim.tp-slider-alternative-image\":false},[\"width:100%\",\"height:auto\"]],[false,{\".noFilterClass:not(#_#_#_#_#_#_#_)\":false},[\"filter:none\"]],[false,{\"rs-bgvideo\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"z-index:0\",\"display:block\"]],[false,{\".rs-layer.rs-fsv\":false},[\"top:0px\",\"left:0px\",\"position:absolute\",\"width:100%\",\"height:100%\"]],[false,{\".rs-layer.rs-fsv amp-audio\":false,\".rs-layer.rs-fsv amp-video\":false,\".rs-layer.rs-fsv amp-youtube\":false,\".rs-layer.rs-fsv amp-iframe\":false,\".rs-layer.rs-fsv amp-iframe amp-audio\":false,\".rs-layer.rs-fsv amp-iframe amp-video\":false,\".rs-layer.rs-fsv amp-iframe amp-youtube\":false},[\"width:100%\",\"height:100%\"]],[false,{\".rs-fsv amp-video\":false,\".rs-fsv amp-youtube\":false},[\"background:#000\"]],[false,{\".fullcoveredvideo rs-poster\":false},[\"background-position:center center\",\"background-size:cover\",\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\"]],[false,{\".videoisplaying .html5vid rs-poster\":false},[\"display:none\"]],[false,{\".tp-video-play-button\":false},[\"background:#000\",\"background:rgba(0,0,0,.3)\",\"border-radius:5px\",\"position:absolute\",\"top:50%\",\"left:50%\",\"color:#fff\",\"z-index:3\",\"z-index:4\",\"margin-top:-25px\",\"margin-left:-25px\",\"text-align:center\",\"cursor:pointer\",\"width:50px\",\"height:50px\",\"box-sizing:border-box\",\"display:inline-block\",\"vertical-align:top\",\"opacity:0\"]],[false,{\".tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"line-height:50px\",\"transition:opacity 300ms ease-out\"]],[false,{\".rs-ISM .tp-video-play-button\":false},[\"opacity:1\",\"z-index:6\"]],[false,{\".rs-ISM .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"transition:none\"]],[false,{\".rs-audio .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".rs-layer .html5vid:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\",\"height:100%\"]],[false,{\".tp-video-play-button i\":false},[\"width:50px\",\"height:50px\",\"display:inline-block\",\"vertical-align:top\"]],[false,{\".tp-video-play-button i:not(#_#_#_#_#_#_#_#_)\":false},[\"text-align:center\",\"line-height:50px\",\"font-size:30px\"]],[false,{\".rs-layer:hover .tp-video-play-button\":false},[\"opacity:1\",\"display:block\",\"z-index:6\"]],[false,{\".rs-layer .tp-revstop\":false},[\"display:none\",\"width:15px\",\"transform:translateX(50%) translateY(50%)\",\"height:20px\"]],[false,{\".rs-layer .tp-revstop:not(#_#_#_#_#_#_#_)\":false},[\"border-right:5px solid #fff\",\"border-left:5px solid #fff\",\"margin-left:11px\",\"margin-top:5px\"]],[false,{\".videoisplaying .revicon-right-dir\":false},[\"display:none\"]],[false,{\".videoisplaying .tp-revstop\":false},[\"display:block\"]],[false,{\".videoisplaying .tp-video-play-button\":false},[\"display:none\"]],[false,{\".fullcoveredvideo .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".rs-fsv .rs-fsv amp-audio:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:contain\"]],[false,{\".rs-fsv .rs-fsv amp-video:not(#_#_#_#_#_#_#_#_)\":false,\".rs-fsv .rs-fsv amp-youtube:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:contain\"]],[false,{\".rs-layer-video .html5vid.hidefullscreen amp-video::-webkit-media-controls-fullscreen-button\":false,\".rs-layer-video .html5vid.hidefullscreen amp-youtube::-webkit-media-controls-fullscreen-button\":false},[\"display:none\"]],[false,\"@supports not (-ms-high-contrast:none){\"],[false,{\".rs-fsv .fullcoveredvideo amp-audio:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:cover\"]],[false,{\".rs-fsv .fullcoveredvideo amp-video:not(#_#_#_#_#_#_#_#_)\":false,\".rs-fsv .fullcoveredvideo amp-youtube:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:cover\"]],[false,\"}\"],[false,{\".rs-fullvideo-cover\":false},[\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\",\"position:absolute\",\"background:transparent\",\"z-index:5\"]],[false,{\".rs-nolc .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-video::-webkit-media-controls-start-playback-button:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-youtube::-webkit-media-controls-start-playback-button:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-video::-webkit-media-controls:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-youtube::-webkit-media-controls:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-audio::-webkit-media-controls:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".rs-audio .tp-video-controls:not(#_#_#_#_#_#_#_)\":false},[\"opacity:1\",\"visibility:visible\"]],[true,{\"rs-module h1.rs-layer\":true,\"rs-module h2.rs-layer\":true,\"rs-module h3.rs-layer\":true,\"rs-module h4.rs-layer\":true,\"rs-module h5.rs-layer\":true,\"rs-module h6.rs-layer\":true,\"rs-module div.rs-layer\":true,\"rs-module span.rs-layer\":true,\"rs-module p.rs-layer\":true},[\"margin:0\",\"padding:0\",\"margin-block-start:0\",\"margin-block-end:0\",\"margin-inline-start:0\",\"margin-inline-end:0\"]],[true,{\"rs-module h1.rs-layer:before\":true,\"rs-module h2.rs-layer:before\":true,\"rs-module h3.rs-layer:before\":true,\"rs-module h4.rs-layer:before\":true,\"rs-module h5.rs-layer:before\":true,\"rs-module h6.rs-layer:before\":true},[\"content:none\"]],[false,{\"rs-dotted\":false},[\"background-repeat:repeat\",\"width:100%\",\"height:100%\",\"position:absolute\",\"top:0px\",\"left:0px\",\"z-index:3\",\"display:block\",\"pointer-events:none\"]],[false,{\"rs-sbg-wrap rs-dotted\":false},[\"z-index:31\"]],[false,{\"rs-dotted.twoxtwo\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile.png\\\")\"]],[false,{\"rs-dotted.twoxtwowhite\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile_white.png\\\")\"]],[false,{\"rs-dotted.threexthree\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile_3x3.png\\\")\"]],[false,{\"rs-dotted.threexthreewhite\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile_3x3_white.png\\\")\"]],[false,{\".tp-shadowcover\":false},[\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\",\"background:#fff\",\"position:absolute\",\"z-index:-1\"]],[false,{\".tp-shadow1\":false},[\"box-shadow:0 10px 6px -6px rgba(0,0,0,.8)\"]],[false,{\".tp-shadow2:before\":false,\".tp-shadow2:after\":false,\".tp-shadow3:before\":false,\".tp-shadow4:after\":false},[\"z-index:-2\",\"position:absolute\",\"content:\\\"\\\"\",\"bottom:10px\",\"left:10px\",\"width:50%\",\"top:85%\",\"max-width:300px\",\"background:transparent\",\"box-shadow:0 15px 10px rgba(0,0,0,.8)\",\"transform:rotate(-3deg)\"]],[false,{\".tp-shadow2:after\":false,\".tp-shadow4:after\":false},[\"transform:rotate(3deg)\",\"right:10px\",\"left:auto\"]],[false,{\".tp-shadow5\":false},[\"position:relative\",\"box-shadow:0 1px 4px rgba(0,0,0,.3),0 0 40px rgba(0,0,0,.1) inset\"]],[false,{\".tp-shadow5:before\":false,\".tp-shadow5:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"z-index:-2\",\"box-shadow:0 0 25px 0px rgba(0,0,0,.6)\",\"top:30%\",\"bottom:0\",\"left:20px\",\"right:20px\",\"border-radius:100px\\/20px\"]],[true,{\".rev-btn\":true,\".rev-btn:visited\":true},[\"box-shadow:none\",\"box-sizing:border-box\",\"cursor:pointer\"]],[true,{\".rev-btn:not(#_#_#_#_#_#_#_)\":true,\".rev-btn:visited:not(#_#_#_#_#_#_#_)\":true},[\"outline:none\",\"text-decoration:none\"]],[false,{\".rev-btn.rev-uppercase\":false,\".rev-btn.rev-uppercase:visited\":false},[\"text-transform:uppercase\"]],[true,{\".rev-btn i\":true},[\"font-size:inherit\",\"font-weight:normal\",\"position:relative\",\"top:0px\",\"transition:opacity .2s ease-out,margin .2s ease-out\",\"margin-left:0px\",\"line-height:inherit\"]],[false,{\".rev-btn.rev-hiddenicon i\":false},[\"font-size:inherit\",\"font-weight:normal\",\"position:relative\",\"top:0px\",\"transition:opacity .2s ease-out,margin .2s ease-out\",\"opacity:0\"]],[false,{\".rev-btn.rev-hiddenicon i:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-left:0px\",\"width:0px\"]],[false,{\".rev-btn.rev-hiddenicon:hover i:not(#_#_#_#_#_#_#_#_)\":false},[\"opacity:1\",\"margin-left:10px\",\"width:auto\"]],[false,{\".rev-burger\":false},[\"position:relative\",\"box-sizing:border-box\",\"padding:22px 14px 22px 14px\",\"border-radius:50%\",\"border:1px solid rgba(51,51,51,.25)\",\"-webkit-tap-highlight-color:rgba(0,0,0,0)\",\"-webkit-tap-highlight-color:transparent\",\"cursor:pointer\"]],[false,{\".rev-burger span\":false},[\"display:block\",\"width:30px\",\"height:3px\",\"background:#333\",\"transition:.7s\",\"pointer-events:none\"]],[false,{\".rev-burger span:not(#_#_#_#_#_#_#_#_)\":false},[\"transform-style:flat\"]],[false,{\".rev-burger span:nth-child(2)\":false},[\"margin:3px 0\"]],[false,{\".quick_style_example_wrap .rev-burger:hover :first-child\":false,\"#dialog_addbutton .rev-burger:hover :first-child\":false,\".open .rev-burger :first-child\":false,\".open.rev-burger :first-child\":false},[\"transform:translateY(6px) rotate(-45deg)\"]],[false,{\".quick_style_example_wrap .rev-burger:hover :nth-child(2)\":false,\"#dialog_addbutton .rev-burger:hover :nth-child(2)\":false,\".open .rev-burger :nth-child(2)\":false,\".open.rev-burger :nth-child(2)\":false},[\"transform:rotate(-45deg)\",\"opacity:0\"]],[false,{\".quick_style_example_wrap .rev-burger:hover :last-child\":false,\"#dialog_addbutton .rev-burger:hover :last-child\":false,\".open .rev-burger :last-child\":false,\".open.rev-burger :last-child\":false},[\"transform:translateY(-6px) rotate(-135deg)\"]],[false,{\".rev-burger.revb-white\":false},[\"border:2px solid rgba(255,255,255,.2)\"]],[false,{\".rev-b-span-light span\":false,\".rev-burger.revb-white span\":false},[\"background:#fff\"]],[false,{\".rev-burger.revb-whitenoborder\":false},[\"border:0\"]],[false,{\".rev-burger.revb-whitenoborder span\":false},[\"background:#fff\"]],[false,{\".rev-burger.revb-darknoborder\":false},[\"border:0\"]],[false,{\".rev-b-span-dark span\":false,\".rev-burger.revb-darknoborder span\":false},[\"background:#333\"]],[false,{\".rev-burger.revb-whitefull\":false},[\"background:#fff\",\"border:none\"]],[false,{\".rev-burger.revb-whitefull span\":false},[\"background:#333\"]],[false,{\".rev-burger.revb-darkfull\":false},[\"background:#333\",\"border:none\"]],[false,{\".rev-burger.revb-darkfull span\":false},[\"background:#fff\"]],[true,\"@keyframes rev-ani-mouse{\"],[true,\"0%{opacity:1;top:29%}\"],[true,\"15%{opacity:1;top:70%}\"],[true,\"50%{opacity:0;top:70%}\"],[true,\"100%{opacity:0;top:29%}\"],[true,\"}\"],[false,{\".rev-scroll-btn\":false},[\"display:inline-block\",\"position:relative\",\"left:0\",\"right:0\",\"text-align:center\",\"cursor:pointer\",\"width:35px\",\"height:55px\",\"box-sizing:border-box\",\"border:3px solid white\",\"border-radius:23px\"]],[false,{\".rev-scroll-btn > *\":false},[\"display:inline-block\",\"line-height:18px\",\"font-size:13px\",\"font-weight:normal\",\"color:#7f8c8d\",\"color:#fff\",\"font-family:\\\"proxima-nova\\\",\\\"Helvetica Neue\\\",Helvetica,Arial,sans-serif\",\"letter-spacing:2px\"]],[false,{\".rev-scroll-btn > *:hover\":false,\".rev-scroll-btn > *:focus\":false,\".rev-scroll-btn > *.active\":false},[\"color:#fff\"]],[false,{\".rev-scroll-btn > *:hover\":false,\".rev-scroll-btn > *:focus\":false,\".rev-scroll-btn > *:active\":false,\".rev-scroll-btn > *.active\":false},[\"opacity:.8\"]],[false,{\".rev-scroll-btn.revs-fullwhite\":false},[\"background:#fff\"]],[false,{\".rev-scroll-btn.revs-fullwhite span\":false},[\"background:#333\"]],[false,{\".rev-scroll-btn.revs-fulldark\":false},[\"background:#333\",\"border:none\"]],[false,{\".rev-scroll-btn.revs-fulldark span\":false},[\"background:#fff\"]],[false,{\".rev-scroll-btn span\":false},[\"position:absolute\",\"display:block\",\"top:29%\",\"left:50%\",\"width:8px\",\"height:8px\",\"margin:-4px 0 0 -4px\",\"border-radius:50%\",\"animation:rev-ani-mouse 2.5s linear infinite\",\"background:#fff\"]],[false,{\".rev-scroll-btn.rev-b-span-dark\":false},[\"border-color:#333\"]],[false,{\".rev-scroll-btn.rev-b-span-dark span\":false,\".rev-scroll-btn.revs-dark span\":false},[\"background:#333\"]],[false,{\".rev-control-btn\":false},[\"position:relative\",\"display:inline-block\",\"z-index:5\",\"color:#fff\",\"font-size:20px\",\"line-height:60px\",\"font-weight:400\",\"font-style:normal\",\"font-family:Raleway\",\"text-decoration:none\",\"text-align:center\",\"background-color:#000\",\"background-color:rgba(0,0,0,.5)\",\"border-radius:50px\",\"text-shadow:none\",\"width:60px\",\"height:60px\",\"box-sizing:border-box\",\"cursor:pointer\"]],[false,{\".rev-cbutton-dark-sr\":false},[\"border-radius:3px\"]],[false,{\".rev-cbutton-light\":false},[\"color:#333\",\"background-color:rgba(255,255,255,.75)\"]],[false,{\".rev-cbutton-light-sr\":false},[\"color:#333\",\"border-radius:3px\",\"background-color:rgba(255,255,255,.75)\"]],[false,{\".rev-sbutton\":false},[\"line-height:37px\",\"width:37px\",\"height:37px\"]],[false,{\".rev-sbutton-blue\":false},[\"background-color:#3b5998\"]],[false,{\".rev-sbutton-lightblue\":false},[\"background-color:#00a0d1\"]],[false,{\".rev-sbutton-red\":false},[\"background-color:#dd4b39\"]],[false,{\"rs-progress\":false},[\"visibility:hidden\",\"position:absolute\",\"z-index:200\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-bar\":false,\".rs-progress-bar\":false},[\"display:block\",\"z-index:20\",\"box-sizing:border-box\",\"background-clip:content-box\",\"position:absolute\",\"line-height:0px\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-bgs\":false},[\"display:block\",\"z-index:15\",\"box-sizing:border-box\",\"width:100%\",\"position:absolute\",\"height:100%\",\"top:0px\",\"left:0px\"]],[false,{\"rs-progress-bg\":false},[\"display:block\",\"background-clip:content-box\",\"position:absolute\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-gap\":false},[\"display:block\",\"background-clip:content-box\",\"position:absolute\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-vis\":false},[\"display:block\",\"width:100%\",\"height:100%\",\"position:absolute\",\"top:0px\",\"left:0px\"]],[true,{\".rs-layer amp-img\":true,\".rs-layer amp-anim\":false},[\"background:transparent\",\"-ms-filter:\\\"progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)\\\"\",\"filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=rgba(0,255,255,1),endColorstr=rgba(0,255,255,1))\"]],[false,{\".rs-layer.slidelink\":false},[\"cursor:pointer\",\"width:100%\",\"height:100%\"]],[false,{\".rs-layer.slidelink a\":false},[\"width:100%\",\"height:100%\",\"display:block\"]],[false,{\".rs-layer.slidelink a div\":false},[\"width:3000px\",\"height:1500px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/coloredbg.png\\\") repeat\"]],[false,{\".rs-layer.slidelink a span\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/coloredbg.png\\\") repeat\",\"width:100%\",\"height:100%\",\"display:block\"]],[false,{\".rs-layer .rs-starring\":false},[\"display:inline-block\"]],[false,{\".rs-layer .rs-starring .star-rating\":false},[\"float:none\",\"display:inline-block\",\"vertical-align:top\"]],[false,{\".rs-layer .rs-starring .star-rating:not(#_#_#_#_#_#_#_)\":false},[\"color:#ffc321\"]],[false,{\".rs-layer .rs-starring .star-rating\":false,\".rs-layer .rs-starring-page .star-rating\":false},[\"position:relative\",\"height:1em\",\"width:5.4em\",\"font-family:star\"]],[false,{\".rs-layer .rs-starring .star-rating:not(#_#_#_#_#_#_#_)\":false,\".rs-layer .rs-starring-page .star-rating:not(#_#_#_#_#_#_#_)\":false},[\"font-size:1em\"]],[false,{\".rs-layer .rs-starring .star-rating:before\":false,\".rs-layer .rs-starring-page .star-rating:before\":false},[\"content:\\\"sssss\\\"\",\"color:#e0dadf\",\"float:left\",\"top:0\",\"left:0\",\"position:absolute\"]],[false,{\".rs-layer .rs-starring .star-rating span\":false},[\"overflow:hidden\",\"float:left\",\"top:0\",\"left:0\",\"position:absolute\",\"padding-top:1.5em\"]],[false,{\".rs-layer .rs-starring .star-rating span:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:1em\"]],[false,{\".rs-layer .rs-starring .star-rating span:before\":false},[\"content:\\\"SSSSS\\\"\",\"top:0\",\"position:absolute\",\"left:0\"]],[false,{\"rs-loader\":false},[\"top:50%\",\"left:50%\",\"z-index:10000\",\"position:absolute\"]],[false,{\"rs-loader.off:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"rs-loader.spinner0\":false},[\"width:40px\",\"height:40px\",\"background-color:#fff\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/loader.gif\\\")\",\"background-repeat:no-repeat\",\"background-position:center center\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"margin-top:-20px\",\"margin-left:-20px\",\"animation:tp-rotateplane 1.2s infinite ease-in-out\",\"border-radius:3px\"]],[false,{\"rs-loader.spinner1\":false},[\"width:40px\",\"height:40px\",\"background-color:#fff\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"margin-top:-20px\",\"margin-left:-20px\",\"animation:tp-rotateplane 1.2s infinite ease-in-out\",\"border-radius:3px\"]],[false,{\"rs-loader.spinner5\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/loader.gif\\\")\",\"background-repeat:no-repeat\",\"background-position:10px 10px\",\"background-color:#fff\",\"margin:-22px -22px\",\"width:44px\",\"height:44px\",\"border-radius:3px\"]],[true,\"@keyframes tp-rotateplane{\"],[true,\"0%{transform:perspective(120px) rotateX(0deg) rotateY(0deg)}\"],[true,\"50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0deg)}\"],[true,\"100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner2\":false},[\"width:40px\",\"height:40px\",\"margin-top:-20px\",\"margin-left:-20px\",\"background-color:#f00\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"border-radius:100%\",\"animation:tp-scaleout 1s infinite ease-in-out\"]],[true,\"@keyframes tp-scaleout{\"],[true,\"0%{transform:scale(0)}\"],[true,\"100%{transform:scale(1);opacity:0}\"],[true,\"}\"],[false,{\"rs-loader.spinner3\":false},[\"margin:-9px 0px 0px -35px\",\"width:70px\",\"text-align:center\"]],[false,{\"rs-loader.spinner3 .bounce1\":false,\"rs-loader.spinner3 .bounce2\":false,\"rs-loader.spinner3 .bounce3\":false},[\"width:18px\",\"height:18px\",\"background-color:#fff\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"border-radius:100%\",\"display:inline-block\",\"animation:tp-bouncedelay 1.4s infinite ease-in-out\",\"animation-fill-mode:both\"]],[false,{\"rs-loader.spinner3 .bounce1\":false},[\"animation-delay:-.32s\"]],[false,{\"rs-loader.spinner3 .bounce2\":false},[\"animation-delay:-.16s\"]],[true,\"@keyframes tp-bouncedelay{\"],[true,\"0%,80%,100%{transform:scale(0)}\"],[true,\"40%{transform:scale(1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner4\":false},[\"margin:-20px 0px 0px -20px\",\"width:40px\",\"height:40px\",\"text-align:center\",\"animation:tp-rotate 2s infinite linear\"]],[false,{\"rs-loader.spinner4 .dot1\":false,\"rs-loader.spinner4 .dot2\":false},[\"width:60%\",\"height:60%\",\"display:inline-block\",\"position:absolute\",\"top:0\",\"background-color:#fff\",\"border-radius:100%\",\"animation:tp-bounce 2s infinite ease-in-out\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\"]],[false,{\"rs-loader.spinner4 .dot2\":false},[\"top:auto\",\"bottom:0px\",\"animation-delay:-1s\"]],[true,\"@keyframes tp-rotate{\"],[true,\"100%{transform:rotate(360deg)}\"],[true,\"}@keyframes tp-bounce{\"],[true,\"0%,100%{transform:scale(0)}\"],[true,\"50%{transform:scale(1)}\"],[true,\"}\"],[false,{\"rs-layer amp-iframe\":false},[\"visibility:hidden\"]],[false,{\"rs-layer.rs-ii-o amp-iframe\":false},[\"visibility:visible\"]],[true,{\"rs-layer input[type=\\\"text\\\"]\":true,\"rs-layer input[type=\\\"email\\\"]\":true,\"rs-layer input[type=\\\"url\\\"]\":true,\"rs-layer input[type=\\\"password\\\"]\":true,\"rs-layer input[type=\\\"search\\\"]\":true,\"rs-layer input[type=\\\"number\\\"]\":true,\"rs-layer input[type=\\\"tel\\\"]\":true,\"rs-layer input[type=\\\"range\\\"]\":true,\"rs-layer input[type=\\\"date\\\"]\":true,\"rs-layer input[type=\\\"month\\\"]\":true,\"rs-layer input[type=\\\"week\\\"]\":true,\"rs-layer input[type=\\\"time\\\"]\":true,\"rs-layer input[type=\\\"datetime\\\"]\":true,\"rs-layer input[type=\\\"datetime-local\\\"]\":true},[\"display:inline-block\"]],[true,{\"rs-layer input::placeholder\":true},[\"vertical-align:middle\"]],[true,{\"rs-layer input::placeholder:not(#_#_#_#_#_#_#_#_)\":true},[\"line-height:inherit\"]],[true,{\"a.rs-layer\":true},[\"transition:none\"]],[false,{\"rs-thumbs-wrap\":false,\"rs-tabs-wrap\":false,\"rs-thumbs\":false,\"rs-thumb\":false,\"rs-tab\":false,\"rs-bullet\":false,\"rs-bullets\":false,\"rs-navmask\":false,\"rs-tabs\":false,\"rs-arrow\":false},[\"display:block\",\"pointer-events:all\"]],[false,{\".tp-thumbs.navbar\":false,\".tp-bullets.navbar\":false,\".tp-tabs.navbar\":false},[\"border:none\",\"min-height:0\",\"margin:0\",\"border-radius:0\"]],[false,{\".tp-tabs\":false,\".tp-thumbs\":false,\".tp-bullets\":false},[\"position:absolute\",\"display:block\",\"z-index:1000\",\"top:0px\",\"left:0px\"]],[false,{\".tp-tab\":false,\".tp-thumb\":false},[\"cursor:pointer\",\"position:absolute\",\"opacity:.5\",\"box-sizing:border-box\"]],[false,{\".tp-arr-imgholder\":false,\"rs-poster\":false,\".tp-thumb-image\":false,\".tp-tab-image\":false},[\"background-position:center center\",\"background-size:cover\",\"width:100%\",\"height:100%\",\"display:block\",\"position:absolute\",\"top:0px\",\"left:0px\"]],[false,{\"rs-poster\":false},[\"cursor:pointer\",\"z-index:3\"]],[false,{\".tp-tab.rs-touchhover\":false,\".tp-tab.selected\":false,\".tp-thumb.rs-touchhover\":false,\".tp-thumb.selected\":false},[\"opacity:1\"]],[false,{\".tp-tab-mask:not(#_#_#_#_#_#_#_)\":false,\".tp-thumb-mask:not(#_#_#_#_#_#_#_)\":false},[\"box-sizing:border-box\"]],[false,{\".tp-tabs:not(#_#_#_#_#_#_#_)\":false,\".tp-thumbs:not(#_#_#_#_#_#_#_)\":false},[\"box-sizing:content-box\"]],[false,{\".tp-bullet\":false},[\"width:15px\",\"height:15px\",\"position:absolute\",\"background:#fff\",\"background:rgba(255,255,255,.3)\",\"cursor:pointer\"]],[false,{\".tp-bullet.selected\":false,\".tp-bullet.rs-touchhover\":false},[\"background:#fff\"]],[false,{\".tparrows\":false},[\"cursor:pointer\",\"background:#000\",\"background:rgba(0,0,0,.5)\",\"width:40px\",\"height:40px\",\"position:absolute\",\"display:block\",\"z-index:1000\"]],[false,{\".tparrows.rs-touchhover\":false},[\"background:#000\"]],[false,{\".tparrows:before\":false},[\"font-family:\\\"revicons\\\"\",\"font-size:15px\",\"color:#fff\",\"display:block\",\"line-height:40px\",\"text-align:center\"]],[false,{\".tparrows.tp-leftarrow:before\":false},[\"content:\\\"\\ue824\\\"\"]],[false,{\".tparrows.tp-rightarrow:before\":false},[\"content:\\\"\\ue825\\\"\"]],[true,{\".rs-layer [class^=\\\"pe-7s-\\\"]:before\":true,\".rs-layer [class*=\\\" pe-7s-\\\"]:before\":true,\".rs-layer [class^=\\\"pe-7s-\\\"]\":true,\".rs-layer [class*=\\\" pe-7s-\\\"]\":true},[\"width:auto\",\"margin:0\",\"line-height:inherit\",\"box-sizing:inherit\"]],[false,{\"rs-pzimg-wrap\":false},[\"display:block\"]],[false,{\"body.rtl .rs-pzimg:not(#_#_#_#_#_#_#_#_)\":false},[\"left:0\"]],[false,{\".rs_fake_cube\":false},[\"transform-style:preserve-3d\"]],[false,{\".rs_fake_cube\":false,\".rs_fake_cube_wall\":false},[\"position:absolute\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"left:0px\",\"top:0px\",\"z-index:0\"]],[false,{\".rs-builder-mode rs-sbg-wrap canvas\":false,\"rs-sbg canvas\":false},[\"overflow:hidden\",\"z-index:5\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".dddwrappershadow\":false},[\"box-shadow:0 45px 100px rgba(0,0,0,.4)\"]],[false,{\".dddwrapper\":false},[\"transform-style:flat\",\"perspective:10000px\"]],[false,{\".rs_error_message_box\":false},[\"background:#111\",\"width:800px\",\"margin:40px auto\",\"padding:40px 20px\",\"text-align:center\",\"font-family:\\\"Open Sans\\\",sans-serif\"]],[false,{\".rs_error_message_oops\":false},[\"margin:0px 0px 20px\",\"line-height:60px\",\"font-size:34px\",\"color:#fff\"]],[false,{\".rs_error_message_content\":false},[\"margin:0px 0px 20px\",\"line-height:25px\",\"font-size:17px\",\"color:#fff\"]],[false,{\".rs_error_message_button\":false},[\"background:#333\",\"display:inline-block\",\"padding:10px 15px\",\"text-align:right\",\"border-radius:5px\",\"cursor:pointer\"]],[false,{\".rs_error_message_button:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\".rs_error_message_button:hover\":false},[\"background:#5e35b1\"]],[false,{\".hglayerinfo\":false},[\"position:fixed\",\"bottom:0px\",\"left:0px\",\"color:#fff\",\"font-size:12px\",\"line-height:20px\",\"font-weight:600\",\"background:rgba(0,0,0,.75)\",\"padding:5px 10px\",\"z-index:2000\",\"white-space:normal\"]],[false,{\".hginfo\":false},[\"position:absolute\",\"top:-2px\",\"left:-2px\",\"color:#e74c3c\",\"font-size:12px\",\"font-weight:600\",\"background:#000\",\"padding:2px 5px\"]],[false,{\".indebugmode .rs-layer:hover:not(#_#_#_#_#_#_#_)\":false},[\"border:1px dashed #c0392b\"]],[false,{\".helpgrid\":false},[\"border:2px dashed #c0392b\",\"position:absolute\",\"top:0px\",\"left:0px\",\"z-index:0\"]],[false,{\"#revsliderlogloglog\":false},[\"padding:15px\",\"color:#fff\",\"position:fixed\",\"top:0px\",\"left:0px\",\"width:200px\",\"height:150px\",\"background:rgba(0,0,0,.7)\",\"z-index:100000\",\"font-size:10px\",\"overflow:scroll\"]],[false,{\".aden\":false},[\"filter:hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2)\"]],[false,{\".aden::after\":false},[\"background:linear-gradient(to right,rgba(66,10,14,.2),transparent)\",\"mix-blend-mode:darken\"]],[false,{\".perpetua::after\":false,\".reyes::after\":false},[\"mix-blend-mode:soft-light\",\"opacity:.5\"]],[false,{\".inkwell\":false},[\"filter:sepia(.3) contrast(1.1) brightness(1.1) grayscale(1)\"]],[false,{\".perpetua::after\":false},[\"background:linear-gradient(to bottom,#005b9a,#e6c13d)\"]],[false,{\".reyes\":false},[\"filter:sepia(.22) brightness(1.1) contrast(.85) saturate(.75)\"]],[false,{\".reyes::after\":false},[\"background:#efcdad\"]],[false,{\".gingham\":false},[\"filter:brightness(1.05) hue-rotate(-10deg)\"]],[false,{\".gingham::after\":false},[\"background:linear-gradient(to right,rgba(66,10,14,.2),transparent)\",\"mix-blend-mode:darken\"]],[false,{\".toaster\":false},[\"filter:contrast(1.5) brightness(.9)\"]],[false,{\".toaster::after\":false},[\"background:radial-gradient(circle,#804e0f,#3b003b)\",\"mix-blend-mode:screen\"]],[false,{\".walden\":false},[\"filter:brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6)\"]],[false,{\".walden::after\":false},[\"background:#04c\",\"mix-blend-mode:screen\",\"opacity:.3\"]],[false,{\".hudson\":false},[\"filter:brightness(1.2) contrast(.9) saturate(1.1)\"]],[false,{\".hudson::after\":false},[\"background:radial-gradient(circle,#a6b1ff 50%,#342134)\",\"mix-blend-mode:multiply\",\"opacity:.5\"]],[false,{\".earlybird\":false},[\"filter:contrast(.9) sepia(.2)\"]],[false,{\".earlybird::after\":false},[\"background:radial-gradient(circle,#d0ba8e 20%,#360309 85%,#1d0210 100%)\",\"mix-blend-mode:overlay\"]],[false,{\".mayfair\":false},[\"filter:contrast(1.1) saturate(1.1)\"]],[false,{\".mayfair::after\":false},[\"background:radial-gradient(circle at 40% 40%,rgba(255,255,255,.8),rgba(255,200,200,.6),#111 60%)\",\"mix-blend-mode:overlay\",\"opacity:.4\"]],[false,{\".lofi\":false},[\"filter:saturate(1.1) contrast(1.5)\"]],[false,{\".lofi::after\":false},[\"background:radial-gradient(circle,transparent 70%,#222 150%)\",\"mix-blend-mode:multiply\"]],[false,{\"._1977\":false},[\"filter:contrast(1.1) brightness(1.1) saturate(1.3)\"]],[false,{\"._1977:after\":false},[\"background:rgba(243,106,188,.3)\",\"mix-blend-mode:screen\"]],[false,{\".brooklyn\":false},[\"filter:contrast(.9) brightness(1.1)\"]],[false,{\".brooklyn::after\":false},[\"background:radial-gradient(circle,rgba(168,223,193,.4) 70%,#c4b7c8)\",\"mix-blend-mode:overlay\"]],[false,{\".xpro2\":false},[\"filter:sepia(.3)\"]],[false,{\".xpro2::after\":false},[\"background:radial-gradient(circle,#e6e7e0 40%,rgba(43,42,161,.6) 110%)\",\"mix-blend-mode:color-burn\"]],[false,{\".nashville\":false},[\"filter:sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2)\"]],[false,{\".nashville::after\":false},[\"background:rgba(0,70,150,.4)\",\"mix-blend-mode:lighten\"]],[false,{\".nashville::before\":false},[\"background:rgba(247,176,153,.56)\",\"mix-blend-mode:darken\"]],[false,{\".lark\":false},[\"filter:contrast(.9)\"]],[false,{\".lark::after\":false},[\"background:rgba(242,242,242,.8)\",\"mix-blend-mode:darken\"]],[false,{\".lark::before\":false},[\"background:#22253f\",\"mix-blend-mode:color-dodge\"]],[false,{\".moon\":false},[\"filter:grayscale(1) contrast(1.1) brightness(1.1)\"]],[false,{\".moon::before\":false},[\"background:#a0a0a0\",\"mix-blend-mode:soft-light\"]],[false,{\".moon::after\":false},[\"background:#383838\",\"mix-blend-mode:lighten\"]],[false,{\".clarendon\":false},[\"filter:contrast(1.2) saturate(1.35)\"]],[false,{\".clarendon:before\":false},[\"background:rgba(127,187,227,.2)\",\"mix-blend-mode:overlay\"]],[false,{\".willow\":false},[\"filter:grayscale(.5) contrast(.95) brightness(.9)\"]],[false,{\".willow::before\":false},[\"background-image:radial-gradient(circle,40%,#d4a9af 55%,#000 150%)\",\"mix-blend-mode:overlay\"]],[false,{\".rise\":false},[\"filter:brightness(1.05) sepia(.2) contrast(.9) saturate(.9)\"]],[false,{\".rise::after\":false},[\"background:radial-gradient(circle,rgba(232,197,152,.8),transparent 90%)\",\"mix-blend-mode:overlay\",\"opacity:.6\"]],[false,{\".rise::before\":false},[\"background:radial-gradient(circle,rgba(236,205,169,.15) 55%,rgba(50,30,7,.4))\",\"mix-blend-mode:multiply\"]],[false,{\"._1977:after\":false,\"._1977:before\":false,\"rs-pzimg-wrap.aden:after\":false,\".aden:before\":false,\".brooklyn:after\":false,\".brooklyn:before\":false,\".clarendon:after\":false,\".clarendon:before\":false,\".earlybird:after\":false,\".earlybird:before\":false,\".gingham:after\":false,\".gingham:before\":false,\".hudson:after\":false,\".hudson:before\":false,\".inkwell:after\":false,\".inkwell:before\":false,\".lark:after\":false,\".lark:before\":false,\".lofi:after\":false,\".lofi:before\":false,\".mayfair:after\":false,\".mayfair:before\":false,\".moon:after\":false,\".moon:before\":false,\".nashville:after\":false,\".nashville:before\":false,\".perpetua:after\":false,\".perpetua:before\":false,\".reyes:after\":false,\".reyes:before\":false,\".rise:after\":false,\".rise:before\":false,\".slumber:after\":false,\".slumber:before\":false,\".toaster:after\":false,\".toaster:before\":false,\".walden:after\":false,\".walden:before\":false,\".willow:after\":false,\".willow:before\":false,\".xpro2:after\":false,\".xpro2:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"height:100%\",\"width:100%\",\"top:0\",\"left:0\",\"position:absolute\",\"pointer-events:none\"]],[false,{\"._1977\":false,\".aden\":false,\".brooklyn\":false,\".clarendon\":false,\".earlybird\":false,\".gingham\":false,\".hudson\":false,\".inkwell\":false,\".lark\":false,\".lofi\":false,\".mayfair\":false,\".moon\":false,\".nashville\":false,\".perpetua\":false,\".reyes\":false,\".rise\":false,\".slumber\":false,\".toaster\":false,\".walden\":false,\".willow\":false,\".xpro2\":false},[\"position:absolute\"]],[false,{\"._1977:before\":false,\".aden:before\":false,\".brooklyn:before\":false,\".clarendon:before\":false,\".earlybird:before\":false,\".gingham:before\":false,\".hudson:before\":false,\".inkwell:before\":false,\".lark:before\":false,\".lofi:before\":false,\".mayfair:before\":false,\".moon:before\":false,\".nashville:before\":false,\".perpetua:before\":false,\".reyes:before\":false,\".rise:before\":false,\".slumber:before\":false,\".toaster:before\":false,\".walden:before\":false,\".willow:before\":false,\".xpro2:before\":false},[\"z-index:30\"]],[false,{\"._1977:after\":false,\".aden:after\":false,\".brooklyn:after\":false,\".clarendon:after\":false,\".earlybird:after\":false,\".gingham:after\":false,\".hudson:after\":false,\".inkwell:after\":false,\".lark:after\":false,\".lofi:after\":false,\".mayfair:after\":false,\".moon:after\":false,\".nashville:after\":false,\".perpetua:after\":false,\".reyes:after\":false,\".rise:after\":false,\".slumber:after\":false,\".toaster:after\":false,\".walden:after\":false,\".willow:after\":false,\".xpro2:after\":false},[\"z-index:40\"]],[false,{\".slumber\":false},[\"filter:saturate(.66) brightness(1.05)\"]],[false,{\".slumber::after\":false},[\"background:rgba(125,105,24,.5)\",\"mix-blend-mode:soft-light\"]],[false,{\".slumber::before\":false},[\"background:rgba(69,41,12,.4)\",\"mix-blend-mode:lighten\"]],[false,{\".willow::after\":false},[\"background-color:#d8cdcb\",\"mix-blend-mode:color\"]],[false,\"@media not all and (min-resolution:.001dpcm){\"],[false,\"@supports (-webkit-appearance:none){\"],[false,{\".willow\":false},[\"filter:grayscale(1) contrast(.95) brightness(.9)\"]],[false,{\".willow::after\":false},[\"background-color:transparent\"]],[false,\"}\"],[false,\"}\"],[false,{\"rs-pzimg-wrap.perpetua:before\":false,\"rs-pzimg-wrap.perpetua:after\":false,\"rs-pzimg-wrap.nashville:before\":false,\"rs-pzimg-wrap.nashville:after\":false,\"rs-pzimg-wrap.xpro2:before\":false,\"rs-pzimg-wrap.xpro2:after\":false,\"rs-pzimg-wrap._1977:after\":false,\"rs-pzimg-wrap._1977:before\":false,\"rs-pzimg-wrap.aden:after\":false,\"rs-pzimg-wrap.aden:before\":false,\"rs-pzimg-wrap.brooklyn:after\":false,\"rs-pzimg-wrap.brooklyn:before\":false,\"rs-pzimg-wrap.clarendon:after\":false,\"rs-pzimg-wrap.clarendon:before\":false,\"rs-pzimg-wrap.earlybird:after\":false,\"rs-pzimg-wrap.earlybird:before\":false,\"rs-pzimg-wrap.gingham:after\":false,\"rs-pzimg-wrap.gingham:before\":false,\"rs-pzimg-wrap.hudson:after\":false,\"rs-pzimg-wrap.hudson:before\":false,\"rs-pzimg-wrap.inkwell:after\":false,\"rs-pzimg-wrap.inkwell:before\":false,\"rs-pzimg-wrap.lark:after\":false,\"rs-pzimg-wrap.lark:before\":false,\"rs-pzimg-wrap.lofi:after\":false,\"rs-pzimg-wrap.lofi:before\":false,\"rs-pzimg-wrap.mayfair:after\":false,\"rs-pzimg-wrap.mayfair:before\":false,\"rs-pzimg-wrap.moon:after\":false,\"rs-pzimg-wrap.moon:before\":false,\"rs-pzimg-wrap.reyes:after\":false,\"rs-pzimg-wrap.reyes:before\":false,\"rs-pzimg-wrap.rise:after\":false,\"rs-pzimg-wrap.rise:before\":false,\"rs-pzimg-wrap.slumber:after\":false,\"rs-pzimg-wrap.slumber:before\":false,\"rs-pzimg-wrap.toaster:after\":false,\"rs-pzimg-wrap.toaster:before\":false,\"rs-pzimg-wrap.walden:after\":false,\"rs-pzimg-wrap.walden:before\":false,\"rs-pzimg-wrap.willow:after\":false,\"rs-pzimg-wrap.willow:before\":false,\"rs-pzimg-wrap:before\":false,\"rs-pzimg-wrap:after\":false},[\"height:500%\",\"width:500%\"]],[false,{\"rs-loader.spinner6\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"display:inline-block\",\"-webkit-animation:rs-revealer-6 1.4s linear infinite\",\"animation:rs-revealer-6 1.4s linear infinite\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span\":false},[\"position:absolute\",\"vertical-align:top\",\"border-radius:100%\",\"display:inline-block\",\"width:8px\",\"height:8px\",\"margin-left:16px\",\"transform-origin:center 20px\",\"-webkit-transform-origin:center 20px\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(2)\":false},[\"transform:rotate(36deg)\",\"-webkit-transform:rotate(36deg)\",\"opacity:.1\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(3)\":false},[\"transform:rotate(72deg)\",\"-webkit-transform:rotate(72deg)\",\"opacity:.2\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(4)\":false},[\"transform:rotate(108deg)\",\"-webkit-transform:rotate(108deg)\",\"opacity:.3\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(5)\":false},[\"transform:rotate(144deg)\",\"-webkit-transform:rotate(144deg)\",\"opacity:.4\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(6)\":false},[\"transform:rotate(180deg)\",\"-webkit-transform:rotate(180deg)\",\"opacity:.5\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(7)\":false},[\"transform:rotate(216deg)\",\"-webkit-transform:rotate(216deg)\",\"opacity:.6\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(8)\":false},[\"transform:rotate(252deg)\",\"-webkit-transform:rotate(252deg)\",\"opacity:.7\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(9)\":false},[\"transform:rotate(288deg)\",\"-webkit-transform:rotate(288deg)\",\"opacity:.8\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(10)\":false},[\"transform:rotate(324deg)\",\"-webkit-transform:rotate(324deg)\",\"opacity:.9\"]],[true,\"@keyframes rs-revealer-6{\"],[true,\"from{transform:rotate(0)}\"],[true,\"to{transform:rotate(360deg)}\"],[true,\"}@-webkit-keyframes rs-revealer-6{\"],[true,\"from{-webkit-transform:rotate(0)}\"],[true,\"to{-webkit-transform:rotate(360deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner7\":false},[\"width:35px\",\"height:35px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner7 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"display:inline-block\",\"padding:0\",\"border-radius:100%\",\"border:2px solid\",\"-webkit-animation:rs-revealer-7 .8s linear infinite\",\"animation:rs-revealer-7 .8s linear infinite\"]],[true,\"@keyframes rs-revealer-7{\"],[true,\"from{transform:rotate(0)}\"],[true,\"to{transform:rotate(360deg)}\"],[true,\"}@-webkit-keyframes rs-revealer-7{\"],[true,\"from{-webkit-transform:rotate(0)}\"],[true,\"to{-webkit-transform:rotate(360deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner8\":false},[\"width:50px\",\"height:50px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner8 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"display:inline-block\",\"padding:0\",\"text-align:left\"]],[false,{\"rs-loader.spinner8 .rs-spinner-inner span\":false},[\"position:absolute\",\"display:inline-block\",\"width:100%\",\"height:100%\",\"border-radius:100%\",\"-webkit-animation:rs-revealer-8 1.6s linear infinite\",\"animation:rs-revealer-8 1.6s linear infinite\"]],[false,{\"rs-loader.spinner8 .rs-spinner-inner span:last-child\":false},[\"animation-delay:-.8s\",\"-webkit-animation-delay:-.8s\"]],[true,\"@keyframes rs-revealer-8{\"],[true,\"0%{transform:scale(0,0);opacity:.5}\"],[true,\"100%{transform:scale(1,1);opacity:0}\"],[true,\"}@-webkit-keyframes rs-revealer-8{\"],[true,\"0%{-webkit-transform:scale(0,0);opacity:.5}\"],[true,\"100%{-webkit-transform:scale(1,1);opacity:0}\"],[true,\"}\"],[false,{\"rs-loader.spinner9\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner9 .rs-spinner-inner span\":false},[\"display:block\",\"width:100%\",\"height:100%\",\"border-radius:50%\",\"opacity:.6\",\"position:absolute\",\"top:0\",\"left:0\",\"-webkit-animation:rs-revealer-9 2s infinite ease-in-out\",\"animation:rs-revealer-9 2s infinite ease-in-out\"]],[false,{\"rs-loader.spinner9 .rs-spinner-inner span:last-child\":false},[\"-webkit-animation-delay:-1s\",\"animation-delay:-1s\"]],[true,\"@-webkit-keyframes rs-revealer-9{\"],[true,\"0%,100%{-webkit-transform:scale(0)}\"],[true,\"50%{-webkit-transform:scale(1)}\"],[true,\"}@keyframes rs-revealer-9{\"],[true,\"0%,100%{transform:scale(0);-webkit-transform:scale(0)}\"],[true,\"50%{transform:scale(1);-webkit-transform:scale(1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner10\":false},[\"width:54px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"text-align:center\",\"font-size:10px\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span\":false},[\"display:block\",\"display:inline-block\",\"height:100%\",\"width:6px\",\"-webkit-animation:rs-revealer-10 1.2s infinite ease-in-out\",\"animation:rs-revealer-10 1.2s infinite ease-in-out\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(2)\":false},[\"-webkit-animation-delay:-1.1s\",\"animation-delay:-1.1s\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(3)\":false},[\"-webkit-animation-delay:-1s\",\"animation-delay:-1s\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(4)\":false},[\"-webkit-animation-delay:-.9s\",\"animation-delay:-.9s\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(5)\":false},[\"-webkit-animation-delay:-.8s\",\"animation-delay:-.8s\"]],[true,\"@-webkit-keyframes rs-revealer-10{\"],[true,\"0%,100%,40%{-webkit-transform:scaleY(.4)}\"],[true,\"20%{-webkit-transform:scaleY(1)}\"],[true,\"}@keyframes rs-revealer-10{\"],[true,\"0%,100%,40%{transform:scaleY(.4);-webkit-transform:scaleY(.4)}\"],[true,\"20%{transform:scaleY(1);-webkit-transform:scaleY(1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner11\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span\":false},[\"display:block\",\"width:33%\",\"height:33%\",\"background-color:#333\",\"float:left\",\"-webkit-animation:rs-revealer-11 1.3s infinite ease-in-out\",\"animation:rs-revealer-11 1.3s infinite ease-in-out\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(1)\":false},[\"-webkit-animation-delay:.2s\",\"animation-delay:.2s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(2)\":false},[\"-webkit-animation-delay:.3s\",\"animation-delay:.3s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(3)\":false},[\"-webkit-animation-delay:.4s\",\"animation-delay:.4s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(4)\":false},[\"-webkit-animation-delay:.1s\",\"animation-delay:.1s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(5)\":false},[\"-webkit-animation-delay:.2s\",\"animation-delay:.2s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(6)\":false},[\"-webkit-animation-delay:.3s\",\"animation-delay:.3s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(7)\":false},[\"-webkit-animation-delay:0s\",\"animation-delay:0s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(8)\":false},[\"-webkit-animation-delay:.1s\",\"animation-delay:.1s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(9)\":false},[\"-webkit-animation-delay:.2s\",\"animation-delay:.2s\"]],[true,\"@-webkit-keyframes rs-revealer-11{\"],[true,\"0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}\"],[true,\"35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}\"],[true,\"}@keyframes rs-revealer-11{\"],[true,\"0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}\"],[true,\"35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner12\":false},[\"width:35px\",\"height:35px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner12 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"-webkit-animation:rs-revealer-12 1s infinite linear\",\"animation:rs-revealer-12 1s infinite linear\"]],[true,\"@-webkit-keyframes rs-revealer-12{\"],[true,\"0%{-webkit-transform:rotate(0)}\"],[true,\"100%{-webkit-transform:rotate(360deg)}\"],[true,\"}@keyframes rs-revealer-12{\"],[true,\"0%{transform:rotate(0)}\"],[true,\"100%{transform:rotate(360deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner13\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span\":false},[\"display:block\",\"width:40%\",\"height:40%\",\"position:absolute\",\"border-radius:50%\",\"-webkit-animation:rs-revealer-13 2s ease infinite\",\"animation:rs-revealer-13 2s ease infinite\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span:nth-child(1)\":false},[\"animation-delay:-1.5s\",\"-webkit-animation-delay:-1.5s\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span:nth-child(2)\":false},[\"animation-delay:-1s\",\"-webkit-animation-delay:-1s\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span:nth-child(3)\":false},[\"animation-delay:-.5s\",\"-webkit-animation-delay:-.5s\"]],[true,\"@keyframes rs-revealer-13{\"],[true,\"0%,100%{transform:translate(0)}\"],[true,\"25%{transform:translate(160%)}\"],[true,\"50%{transform:translate(160%,160%)}\"],[true,\"75%{transform:translate(0,160%)}\"],[true,\"}@-webkit-keyframes rs-revealer-13{\"],[true,\"0%,100%{-webkit-transform:translate(0)}\"],[true,\"25%{-webkit-transform:translate(160%)}\"],[true,\"50%{-webkit-transform:translate(160%,160%)}\"],[true,\"75%{-webkit-transform:translate(0,160%)}\"],[true,\"}\"],[false,{\"rs-loader.spinner14\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"animation:rs-revealer-14 1s infinite linear\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span\":false},[\"display:block\",\"position:absolute\",\"top:50%\",\"left:50%\",\"width:16px\",\"height:16px\",\"border-radius:50%\",\"margin:-8px\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(1)\":false},[\"-webkit-animation:rs-revealer-14-1 2s infinite\",\"animation:rs-revealer-14-1 2s infinite\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(2)\":false},[\"-webkit-animation:rs-revealer-14-2 2s infinite\",\"animation:rs-revealer-14-2 2s infinite\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(3)\":false},[\"-webkit-animation:rs-revealer-14-3 2s infinite\",\"animation:rs-revealer-14-3 2s infinite\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(4)\":false},[\"-webkit-animation:rs-revealer-14-4 2s infinite\",\"animation:rs-revealer-14-4 2s infinite\"]],[true,\"@-webkit-keyframes rs-revealer-14-1{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(80%,80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(80%,80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@-webkit-keyframes rs-revealer-14-2{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(80%,-80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(80%,-80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@-webkit-keyframes rs-revealer-14-3{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(-80%,-80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(-80%,-80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@-webkit-keyframes rs-revealer-14-4{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(-80%,80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(-80%,80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-1{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(80%,80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(80%,80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-2{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(80%,-80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(80%,-80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-3{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(-80%,-80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(-80%,-80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-4{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(-80%,80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(-80%,80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}\"],[false,{\"rs-loader.spinner15\":false},[\"width:40px\",\"height:40px\",\"margin-top:-4px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner15 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\"]],[false,{\"rs-loader.spinner15 .rs-spinner-inner span\":false},[\"display:block\",\"width:20px\",\"height:20px\",\"position:absolute\",\"top:0\",\"left:0\",\"-webkit-animation:rs-revealer-15 1.8s infinite ease-in-out\",\"animation:rs-revealer-15 1.8s infinite ease-in-out\"]],[false,{\"rs-loader.spinner15 .rs-spinner-inner:last-child\":false},[\"-webkit-animation-delay:-.9s\",\"animation-delay:-.9s\"]],[true,\"@-webkit-keyframes rs-revealer-15{\"],[true,\"25%{-webkit-transform:translateX(30px) rotate(-90deg) scale(.5)}\"],[true,\"50%{-webkit-transform:translateX(30px) translateY(30px) rotate(-180deg)}\"],[true,\"75%{-webkit-transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5)}\"],[true,\"100%{-webkit-transform:rotate(-360deg)}\"],[true,\"}@keyframes rs-revealer-15{\"],[true,\"25%{transform:translateX(30px) rotate(-90deg) scale(.5);-webkit-transform:translateX(30px) rotate(-90deg) scale(.5)}\"],[true,\"50%{transform:translateX(30px) translateY(30px) rotate(-179deg);-webkit-transform:translateX(30px) translateY(30px) rotate(-179deg)}\"],[true,\"50.1%{transform:translateX(30px) translateY(30px) rotate(-180deg);-webkit-transform:translateX(30px) translateY(30px) rotate(-180deg)}\"],[true,\"75%{transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5);-webkit-transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5)}\"],[true,\"100%{transform:rotate(-360deg);-webkit-transform:rotate(-360deg)}\"],[true,\"}\"],[false,{\".bgcanvas\":false},[\"display:none\",\"position:absolute\",\"overflow:hidden\"]],[false,{\".RSscrollbar-measure\":false},[\"width:100px\",\"height:100px\",\"overflow:scroll\",\"position:absolute\",\"top:-9999px\"]],[false,{\".avada-has-rev-slider-styles .rev_slider_wrapper\":false},[\"transform:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":5235,\"final_size\":0,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"rs-plugin-settings-inline-css\",\"type\":\"text\\/css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":134,\"function\":\"RevSliderFront::add_inline_css\",\"hook\":\"wp_footer\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"\\t\\t#rev_slider_7_1_wrapper .uranus.tparrows{width:50px; height:50px; background:rgba(255,255,255,0)}#rev_slider_7_1_wrapper .uranus.tparrows:before{width:50px; height:50px; line-height:50px; font-size:15px; transition:all 0.3s;-webkit-transition:all 0.3s}#rev_slider_7_1_wrapper .uranus.tparrows.rs-touchhover:before{opacity:0.75}#rev_slider_7_1_wrapper .ares_copy42.tp-bullets{}#rev_slider_7_1_wrapper .ares_copy42.tp-bullets:before{content:\' \';position:absolute;width:100%;height:100%;background:transparent;padding:10px;margin-left:-10px;margin-top:-10px;box-sizing:content-box}#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet{width:5px;height:5px;position:absolute;background:#FFF;border-radius:50%;cursor:pointer;box-sizing:content-box}#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.rs-touchhover,#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.selected{background:#FFF; width:7px;height:7px; top:-1px!important}#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet-title{position:absolute; color:#888888; font-size:12px; padding:0px 10px; font-weight:600; right:27px; top:-4px; background:rgba(255,255,255,0.75); visibility:hidden; transform:translatex(-20px); -webkit-transform:translatex(-20px); transition:transform 0.3s; -webkit-transition:transform 0.3s; line-height:20px; white-space:nowrap; display:none}#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet-title:after{width:0px;height:0px;border-style:solid;border-width:10px 0 10px 10px;border-color:transparent transparent transparent rgba(255,255,255,0.75);content:\' \'; position:absolute; right:-10px;top:0px}#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.rs-touchhover .tp-bullet-title{visibility:visible; transform:translatex(0px); -webkit-transform:translatex(0px)}#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.selected.rs-touchhover .tp-bullet-title{background:#ffffff}#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.selected.rs-touchhover .tp-bullet-title:after{border-color:transparent transparent transparent #ffffff}#rev_slider_7_1_wrapper .ares_copy42.tp-bullets.rs-touchhover .tp-bullet-title{visibility:hidden}#rev_slider_7_1_wrapper .ares_copy42.tp-bullets.rs-touchhover .tp-bullet.rs-touchhover .tp-bullet-title{visibility:visible; transform:translateX(0px) translatey(0px); -webkit-transform:translateX(0px) translatey(0px)}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet-title{right:auto; left:27px; transform:translatex(20px); -webkit-transform:translatex(20px)}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet-title:after{border-width:10px 10px 10px 0 !important; border-color:transparent rgba(255,255,255,0.75) transparent transparent; right:auto !important; left:-10px !important}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet.selected.rs-touchhover .tp-bullet-title:after{border-color:transparent #ffffff transparent transparent !important}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet-title,#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet-title{top:-35px; left:50%; right:auto; transform:translateX(-50%) translateY(-10px);-webkit-transform:translateX(-50%) translateY(-10px)}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet-title:after,#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet-title:after{border-width:10px 10px 0px 10px; border-color:rgba(255,255,255,0.75) transparent transparent transparent; right:auto; left:50%; margin-left:-10px; top:auto; bottom:-10px}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet.selected.rs-touchhover .tp-bullet-title:after,#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet.selected.rs-touchhover .tp-bullet-title:after{border-color:#ffffff transparent transparent transparent}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet.rs-touchhover .tp-bullet-title,#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet.rs-touchhover .tp-bullet-title{transform:translateX(-50%) translatey(0px); -webkit-transform:translateX(-50%) translatey(0px)}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet-title{top:25px; left:50%; right:auto; transform:translateX(-50%) translateY(10px);-webkit-transform:translateX(-50%) translateY(10px)}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet-title:after{border-width:0 10px 10px 10px; border-color:transparent transparent rgba(255,255,255,0.75) transparent; right:auto; left:50%; margin-left:-10px; bottom:auto; top:-10px}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet.selected.rs-touchhover .tp-bullet-title:after{border-color:transparent transparent #ffffff transparent}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet.rs-touchhover .tp-bullet-title{transform:translateX(-50%) translatey(0px); -webkit-transform:translateX(-50%) translatey(0px)}@media (min-width:300px) and (max-width:768px){.tp-tabs,.tp-thumbs,.tp-bullets{display:none !important}}\",\"handle\":\"rs-plugin-settings\"}],\"priority\":70,\"hash\":\"4edc0f42f13b10bbd40b93ed4864131a\",\"parse_time\":0.06254005432128906,\"shake_time\":3.886222839355469e-5,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\"#rev_slider_7_1_wrapper .uranus.tparrows\":false},[\"width:50px\",\"height:50px\",\"background:rgba(255,255,255,0)\"]],[false,{\"#rev_slider_7_1_wrapper .uranus.tparrows:before\":false},[\"width:50px\",\"height:50px\",\"line-height:50px\",\"font-size:15px\",\"transition:all .3s\",\"-webkit-transition:all .3s\"]],[false,{\"#rev_slider_7_1_wrapper .uranus.tparrows.rs-touchhover:before\":false},[\"opacity:.75\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.tp-bullets:before\":false},[\"content:\\\" \\\"\",\"position:absolute\",\"width:100%\",\"height:100%\",\"background:transparent\",\"padding:10px\",\"margin-left:-10px\",\"margin-top:-10px\",\"box-sizing:content-box\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet\":false},[\"width:5px\",\"height:5px\",\"position:absolute\",\"background:#fff\",\"border-radius:50%\",\"cursor:pointer\",\"box-sizing:content-box\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.rs-touchhover\":false,\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.selected\":false},[\"background:#fff\",\"width:7px\",\"height:7px\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.rs-touchhover:not(#_#_#_#_#_#_#_#_)\":false,\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.selected:not(#_#_#_#_#_#_#_#_)\":false},[\"top:-1px\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet-title\":false},[\"position:absolute\",\"color:#888\",\"font-size:12px\",\"padding:0px 10px\",\"font-weight:600\",\"right:27px\",\"top:-4px\",\"background:rgba(255,255,255,.75)\",\"visibility:hidden\",\"transform:translatex(-20px)\",\"-webkit-transform:translatex(-20px)\",\"transition:transform .3s\",\"-webkit-transition:transform .3s\",\"line-height:20px\",\"white-space:nowrap\",\"display:none\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet-title:after\":false},[\"width:0px\",\"height:0px\",\"border-style:solid\",\"border-width:10px 0 10px 10px\",\"border-color:transparent transparent transparent rgba(255,255,255,.75)\",\"content:\\\" \\\"\",\"position:absolute\",\"right:-10px\",\"top:0px\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.rs-touchhover .tp-bullet-title\":false},[\"visibility:visible\",\"transform:translatex(0px)\",\"-webkit-transform:translatex(0px)\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.selected.rs-touchhover .tp-bullet-title\":false},[\"background:#fff\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.selected.rs-touchhover .tp-bullet-title:after\":false},[\"border-color:transparent transparent transparent #fff\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.tp-bullets.rs-touchhover .tp-bullet-title\":false},[\"visibility:hidden\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.tp-bullets.rs-touchhover .tp-bullet.rs-touchhover .tp-bullet-title\":false},[\"visibility:visible\",\"transform:translateX(0px) translatey(0px)\",\"-webkit-transform:translateX(0px) translatey(0px)\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet-title\":false},[\"right:auto\",\"left:27px\",\"transform:translatex(20px)\",\"-webkit-transform:translatex(20px)\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet-title:after\":false},[\"border-color:transparent rgba(255,255,255,.75) transparent transparent\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet-title:after:not(#_#_#_#_#_#_#_#_#_)\":false},[\"border-width:10px 10px 10px 0\",\"right:auto\",\"left:-10px\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet.selected.rs-touchhover .tp-bullet-title:after:not(#_#_#_#_#_#_#_#_#_)\":false},[\"border-color:transparent #fff transparent transparent\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet-title\":false,\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet-title\":false},[\"top:-35px\",\"left:50%\",\"right:auto\",\"transform:translateX(-50%) translateY(-10px)\",\"-webkit-transform:translateX(-50%) translateY(-10px)\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet-title:after\":false,\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet-title:after\":false},[\"border-width:10px 10px 0px 10px\",\"border-color:rgba(255,255,255,.75) transparent transparent transparent\",\"right:auto\",\"left:50%\",\"margin-left:-10px\",\"top:auto\",\"bottom:-10px\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet.selected.rs-touchhover .tp-bullet-title:after\":false,\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet.selected.rs-touchhover .tp-bullet-title:after\":false},[\"border-color:#fff transparent transparent transparent\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet.rs-touchhover .tp-bullet-title\":false,\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet.rs-touchhover .tp-bullet-title\":false},[\"transform:translateX(-50%) translatey(0px)\",\"-webkit-transform:translateX(-50%) translatey(0px)\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet-title\":false},[\"top:25px\",\"left:50%\",\"right:auto\",\"transform:translateX(-50%) translateY(10px)\",\"-webkit-transform:translateX(-50%) translateY(10px)\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet-title:after\":false},[\"border-width:0 10px 10px 10px\",\"border-color:transparent transparent rgba(255,255,255,.75) transparent\",\"right:auto\",\"left:50%\",\"margin-left:-10px\",\"bottom:auto\",\"top:-10px\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet.selected.rs-touchhover .tp-bullet-title:after\":false},[\"border-color:transparent transparent #fff transparent\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet.rs-touchhover .tp-bullet-title\":false},[\"transform:translateX(-50%) translatey(0px)\",\"-webkit-transform:translateX(-50%) translatey(0px)\"]],[false,\"@media (min-width:300px) and (max-width:768px){\"],[false,{\".tp-tabs:not(#_#_#_#_#_#_#_)\":false,\".tp-thumbs:not(#_#_#_#_#_#_#_)\":false,\".tp-bullets:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":59,\"final_size\":57,\"element\":{\"name\":\"section\",\"attributes\":{\"data-amp-original-style\":\"background-color: #121D3D;\",\"class\":\"amp-wp-61d4b04\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"602068f9dec4c05112d946a4b1d7d0a3\",\"parse_time\":0.0005710124969482422,\"shake_time\":4.0531158447265625e-6,\"cached\":false,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-61d4b04:not(#_#_#_#_#_)\":true},[\"background-color:#121d3d\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":129,\"final_size\":128,\"element\":{\"name\":\"rs-module-wrap\",\"attributes\":{\"id\":\"rev_slider_7_1_wrapper\",\"data-alias\":\"slider-02-01-2022\",\"data-source\":\"gallery\",\"data-amp-original-style\":\"visibility:hidden;background:transparent;padding:0;margin:0px auto;margin-top:0;margin-bottom:0;\",\"class\":\"amp-wp-58a99c6\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"2b9d737fe3de4ea7c708c05ce03f2a09\",\"parse_time\":0.000720977783203125,\"shake_time\":4.0531158447265625e-6,\"cached\":false,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-58a99c6:not(#_#_#_#_#_)\":true},[\"visibility:hidden\",\"background:transparent\",\"padding:0\",\"margin:0px auto\",\"margin-top:0\",\"margin-bottom:0\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":52,\"final_size\":50,\"element\":{\"name\":\"rs-slide\",\"attributes\":{\"data-key\":\"rs-27\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner1.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"112c6091d6ff7d5241b1adf8ca901016\",\"parse_time\":0.0004780292510986328,\"shake_time\":1.9073486328125e-6,\"cached\":false,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-b38de02:not(#_#_#_#_#_)\":true},[\"position:absolute\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-27-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,50;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"5c1ba2e9472bf7716ead6a2e12670cac\",\"parse_time\":0.0005280971527099609,\"shake_time\":3.0994415283203125e-6,\"cached\":false,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fcd20be:not(#_#_#_#_#_)\":true},[\"z-index:10\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":153,\"final_size\":152,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-27-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,26,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,auto,681px,454px;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"be67f1f785e9d5d1c6ca54f27372baa8\",\"parse_time\":0.0007510185241699219,\"shake_time\":4.100799560546875e-5,\"cached\":false,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-ac51d1e:not(#_#_#_#_#_)\":true},[\"z-index:9\",\"font-family:\\\"Raleway\\\"\",\"color:#24c1ff\",\"font-size:23px\",\"line-height:28px\",\"text-transform:inherit\",\"margin-bottom:20px\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":44,\"final_size\":43,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-27-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"bbfcefaead6a66022e70d0b0a9946cf6\",\"parse_time\":0.0007910728454589844,\"shake_time\":3.0994415283203125e-6,\"cached\":false,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d31032b:not(#_#_#_#_#_)\":true},[\"z-index:12\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-27-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"74f97608ca23b9ed09ba478fbc32a19c\",\"parse_time\":0.0012199878692626953,\"shake_time\":1.9073486328125e-6,\"cached\":false,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d3bb080:not(#_#_#_#_#_)\":true},[\"z-index:11\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":148,\"final_size\":145,\"element\":{\"name\":\"a\",\"attributes\":{\"id\":\"slider-7-slide-27-layer-8\",\"class\":\"rs-layer rev-btn amp-wp-dfa190a\",\"href\":\"https:\\/\\/translucent.local\\/tekteams\\/\",\"target\":\"_self\",\"data-type\":\"button\",\"data-color\":\"#182647\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,2px,0;yo:479px,490px,489px,400px;\",\"data-text\":\"w:normal;s:18,17,15,20;l:50,41,50,50;fw:900,900,900,700;a:left,left,center,center;\",\"data-dim\":\"minh:0px,none,none,none;\",\"data-padding\":\"t:7,6,0,0;r:50,41,63,53;b:7,6,0,0;l:50,41,63,53;\",\"data-border\":\"bor:30px,30px,30px,30px;\",\"data-frame_0\":\"x:0,0,0px,0px;y:0,0,0px,0px;\",\"data-frame_1\":\"x:0,0,0px,0px;y:0,0,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-frame_hover\":\"c:#182647;bgc:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);bor:30px,30px,30px,30px;sp:100;e:power1.inOut;bri:120%;\",\"data-amp-original-style\":\"z-index:8;background:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);font-family:\'Raleway\';\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"141dd3c895332502f4f5ffdc7a38015d\",\"parse_time\":0.000993967056274414,\"shake_time\":2.1457672119140625e-6,\"cached\":false,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-dfa190a:not(#_#_#_#_#_)\":true},[\"z-index:8\",\"background:linear-gradient(90deg,rgba(39,217,203,1) 0%,rgba(161,242,102,1) 100%)\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":52,\"final_size\":50,\"element\":{\"name\":\"rs-slide\",\"attributes\":{\"data-key\":\"rs-30\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/home4.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"112c6091d6ff7d5241b1adf8ca901016\",\"parse_time\":0.0004780292510986328,\"shake_time\":3.790855407714844e-5,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-b38de02:not(#_#_#_#_#_)\":true},[\"position:absolute\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-30-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,50;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,630px,443px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"5c1ba2e9472bf7716ead6a2e12670cac\",\"parse_time\":0.0005280971527099609,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fcd20be:not(#_#_#_#_#_)\":true},[\"z-index:10\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":153,\"final_size\":152,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-30-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,26,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,687px,728px,454px;h:auto,auto,61px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"be67f1f785e9d5d1c6ca54f27372baa8\",\"parse_time\":0.0007510185241699219,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-ac51d1e:not(#_#_#_#_#_)\":true},[\"z-index:9\",\"font-family:\\\"Raleway\\\"\",\"color:#24c1ff\",\"font-size:23px\",\"line-height:28px\",\"text-transform:inherit\",\"margin-bottom:20px\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":44,\"final_size\":43,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-30-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"bbfcefaead6a66022e70d0b0a9946cf6\",\"parse_time\":0.0007910728454589844,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d31032b:not(#_#_#_#_#_)\":true},[\"z-index:12\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-30-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"74f97608ca23b9ed09ba478fbc32a19c\",\"parse_time\":0.0012199878692626953,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d3bb080:not(#_#_#_#_#_)\":true},[\"z-index:11\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":148,\"final_size\":145,\"element\":{\"name\":\"a\",\"attributes\":{\"id\":\"slider-7-slide-30-layer-8\",\"class\":\"rs-layer rev-btn amp-wp-dfa190a\",\"href\":\"https:\\/\\/translucent.local\\/cloud-native-solutions\\/\",\"target\":\"_self\",\"data-type\":\"button\",\"data-color\":\"#182647\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,2px,0;yo:480px,490px,489px,400px;\",\"data-text\":\"w:normal;s:18,17,15,20;l:50,41,50,50;fw:900,900,900,700;a:left,left,center,center;\",\"data-dim\":\"minh:0px,none,none,none;\",\"data-padding\":\"t:7,6,0,0;r:50,41,63,53;b:7,6,0,0;l:50,41,63,53;\",\"data-border\":\"bor:30px,30px,30px,30px;\",\"data-frame_0\":\"x:0,0,0px,0px;y:0,0,0px,0px;\",\"data-frame_1\":\"x:0,0,0px,0px;y:0,0,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-frame_hover\":\"c:#182647;bgc:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);bor:30px,30px,30px,30px;sp:100;e:power1.inOut;bri:120%;\",\"data-amp-original-style\":\"z-index:8;background:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);font-family:\'Raleway\';\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"141dd3c895332502f4f5ffdc7a38015d\",\"parse_time\":0.000993967056274414,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-dfa190a:not(#_#_#_#_#_)\":true},[\"z-index:8\",\"background:linear-gradient(90deg,rgba(39,217,203,1) 0%,rgba(161,242,102,1) 100%)\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":52,\"final_size\":50,\"element\":{\"name\":\"rs-slide\",\"attributes\":{\"data-key\":\"rs-29\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/home31.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"112c6091d6ff7d5241b1adf8ca901016\",\"parse_time\":0.0004780292510986328,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-b38de02:not(#_#_#_#_#_)\":true},[\"position:absolute\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-29-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,50;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,846px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"5c1ba2e9472bf7716ead6a2e12670cac\",\"parse_time\":0.0005280971527099609,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fcd20be:not(#_#_#_#_#_)\":true},[\"z-index:10\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":153,\"final_size\":152,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-29-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,26,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,1025px,722px,454px;h:auto,auto,89px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"be67f1f785e9d5d1c6ca54f27372baa8\",\"parse_time\":0.0007510185241699219,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-ac51d1e:not(#_#_#_#_#_)\":true},[\"z-index:9\",\"font-family:\\\"Raleway\\\"\",\"color:#24c1ff\",\"font-size:23px\",\"line-height:28px\",\"text-transform:inherit\",\"margin-bottom:20px\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":44,\"final_size\":43,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-29-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"bbfcefaead6a66022e70d0b0a9946cf6\",\"parse_time\":0.0007910728454589844,\"shake_time\":1.0013580322265625e-5,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d31032b:not(#_#_#_#_#_)\":true},[\"z-index:12\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-29-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"74f97608ca23b9ed09ba478fbc32a19c\",\"parse_time\":0.0012199878692626953,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d3bb080:not(#_#_#_#_#_)\":true},[\"z-index:11\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":148,\"final_size\":145,\"element\":{\"name\":\"a\",\"attributes\":{\"id\":\"slider-7-slide-29-layer-8\",\"class\":\"rs-layer rev-btn amp-wp-dfa190a\",\"href\":\"https:\\/\\/translucent.local\\/tek-world\\/\",\"target\":\"_self\",\"data-type\":\"button\",\"data-color\":\"#182647\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,2px,0;yo:480px,490px,489px,400px;\",\"data-text\":\"w:normal;s:18,17,15,20;l:50,41,50,50;fw:900,900,900,700;a:left,left,center,center;\",\"data-dim\":\"minh:0px,none,none,none;\",\"data-padding\":\"t:7,6,0,0;r:50,41,63,53;b:7,6,0,0;l:50,41,63,53;\",\"data-border\":\"bor:30px,30px,30px,30px;\",\"data-frame_0\":\"x:0,0,0px,0px;y:0,0,0px,0px;\",\"data-frame_1\":\"x:0,0,0px,0px;y:0,0,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-frame_hover\":\"c:#182647;bgc:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);bor:30px,30px,30px,30px;sp:100;e:power1.inOut;bri:120%;\",\"data-amp-original-style\":\"z-index:8;background:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);font-family:\'Raleway\';\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"141dd3c895332502f4f5ffdc7a38015d\",\"parse_time\":0.000993967056274414,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-dfa190a:not(#_#_#_#_#_)\":true},[\"z-index:8\",\"background:linear-gradient(90deg,rgba(39,217,203,1) 0%,rgba(161,242,102,1) 100%)\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":52,\"final_size\":50,\"element\":{\"name\":\"rs-slide\",\"attributes\":{\"data-key\":\"rs-28\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner2.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"112c6091d6ff7d5241b1adf8ca901016\",\"parse_time\":0.0004780292510986328,\"shake_time\":2.5987625122070312e-5,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-b38de02:not(#_#_#_#_#_)\":true},[\"position:absolute\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-28-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,42;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"5c1ba2e9472bf7716ead6a2e12670cac\",\"parse_time\":0.0005280971527099609,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fcd20be:not(#_#_#_#_#_)\":true},[\"z-index:10\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":153,\"final_size\":152,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-28-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,25,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,auto,714px,454px;h:auto,auto,89px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"be67f1f785e9d5d1c6ca54f27372baa8\",\"parse_time\":0.0007510185241699219,\"shake_time\":2.86102294921875e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-ac51d1e:not(#_#_#_#_#_)\":true},[\"z-index:9\",\"font-family:\\\"Raleway\\\"\",\"color:#24c1ff\",\"font-size:23px\",\"line-height:28px\",\"text-transform:inherit\",\"margin-bottom:20px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":44,\"final_size\":43,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-28-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"bbfcefaead6a66022e70d0b0a9946cf6\",\"parse_time\":0.0007910728454589844,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d31032b:not(#_#_#_#_#_)\":true},[\"z-index:12\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-28-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:150;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"74f97608ca23b9ed09ba478fbc32a19c\",\"parse_time\":0.0012199878692626953,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d3bb080:not(#_#_#_#_#_)\":true},[\"z-index:11\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":148,\"final_size\":145,\"element\":{\"name\":\"a\",\"attributes\":{\"id\":\"slider-7-slide-28-layer-8\",\"class\":\"rs-layer rev-btn amp-wp-dfa190a\",\"href\":\"https:\\/\\/calendly.com\\/tc-results\",\"target\":\"_self\",\"data-type\":\"button\",\"data-color\":\"#182647\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,2px,0;yo:480px,490px,489px,400px;\",\"data-text\":\"w:normal;s:18,17,15,20;l:50,41,50,50;fw:900,900,900,700;a:left,left,center,center;\",\"data-dim\":\"minh:0px,none,none,none;\",\"data-padding\":\"t:7,6,0,0;r:50,41,63,53;b:7,6,0,0;l:50,41,63,53;\",\"data-border\":\"bor:30px,30px,30px,30px;\",\"data-frame_0\":\"x:0,0,0px,0px;y:0,0,0px,0px;\",\"data-frame_1\":\"x:0,0,0px,0px;y:0,0,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-frame_hover\":\"c:#182647;bgc:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);bor:30px,30px,30px,30px;sp:100;e:power1.inOut;bri:120%;\",\"data-amp-original-style\":\"z-index:8;background:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);font-family:\'Raleway\';\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"141dd3c895332502f4f5ffdc7a38015d\",\"parse_time\":0.000993967056274414,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-dfa190a:not(#_#_#_#_#_)\":true},[\"z-index:8\",\"background:linear-gradient(90deg,rgba(39,217,203,1) 0%,rgba(161,242,102,1) 100%)\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"amp-img\",\"attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2019\\/03\\/2000px-The_Hospital_for_Sick_Children_Logo.svg_.png \",\"width\":\"310\",\"height\":\"100\",\"class\":\"amp-wp-enforced-sizes amp-wp-035b591\",\"layout\":\"intrinsic\",\"data-amp-original-style\":\"max-height: 50px;\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"392cacdfabd8f873a803a5357eeac04a\",\"parse_time\":0.0007510185241699219,\"shake_time\":3.0994415283203125e-6,\"cached\":false,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-035b591:not(#_#_#_#_#_)\":true},[\"max-height:50px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":2.86102294921875e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":8.821487426757812e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":7.867813110351562e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":47,\"final_size\":45,\"element\":{\"name\":\"div\",\"attributes\":{\"data-amp-original-style\":\"display: none;\",\"class\":\"amp-wp-224b51a\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/contact-form-functions.php\",\"line\":105,\"function\":\"wpcf7_contact_form_tag_func\",\"shortcode\":\"contact-form-7\"}],\"priority\":70,\"hash\":\"0d67461750eb10cd670295b16ae09708\",\"parse_time\":0.0006639957427978516,\"shake_time\":3.0994415283203125e-6,\"cached\":false,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-224b51a:not(#_#_#_#_#_)\":true},[\"display:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":80,\"final_size\":75,\"element\":{\"name\":\"div\",\"attributes\":{\"class\":\"swp-hidden-panel-wrap amp-wp-041e5bc\",\"data-amp-original-style\":\"display: none; visibility: collapse; opacity: 0\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":254,\"function\":\"SWP_Buttons_panel_Loader::add_static_panel_fallback_footer\",\"hook\":\"wp_footer\",\"priority\":20}],\"priority\":70,\"hash\":\"576b83c347727d51f3e6a84af74e369e\",\"parse_time\":0.0005772113800048828,\"shake_time\":2.86102294921875e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-041e5bc:not(#_#_#_#_#_)\":true},[\"display:none\",\"visibility:collapse\",\"opacity:0\"]]],\"included\":true}]'); INSERT INTO `wp_postmeta` VALUES (169789,4799,'_pinterest_shares','0'),(169790,4799,'_total_shares','0'),(169792,4798,'_amp_validated_environment','a:3:{s:5:\"theme\";a:1:{s:11:\"translucent\";s:3:\"1.0\";}s:7:\"plugins\";a:32:{s:7:\"404page\";s:6:\"11.3.1\";s:26:\"advanced-custom-fields-pro\";s:6:\"5.12.2\";s:16:\"tinymce-advanced\";s:5:\"5.6.0\";s:3:\"amp\";s:5:\"2.3.0\";s:17:\"code-syntax-block\";s:5:\"3.1.1\";s:14:\"contact-form-7\";s:5:\"5.5.3\";s:10:\"duplicator\";s:5:\"1.5.0\";s:25:\"embed-calendly-scheduling\";s:3:\"3.0\";s:18:\"youtube-embed-plus\";s:6:\"14.1.2\";s:13:\"header-footer\";s:5:\"3.2.5\";s:6:\"iframe\";s:3:\"4.5\";s:7:\"imagify\";s:3:\"2.0\";s:15:\"cf7-hubspot-pro\";s:5:\"1.2.1\";s:13:\"popup-builder\";s:6:\"4.1.13\";s:34:\"post-tags-and-categories-for-pages\";s:5:\"1.4.1\";s:8:\"raw-html\";s:5:\"1.6.3\";s:11:\"redirection\";s:5:\"5.3.2\";s:11:\"redis-cache\";s:5:\"2.2.0\";s:26:\"reveal-ids-for-wp-admin-25\";s:5:\"1.5.4\";s:34:\"sendgrid-email-delivery-simplified\";s:6:\"1.11.8\";s:9:\"revslider\";s:6:\"6.5.23\";s:14:\"social-warfare\";s:5:\"4.3.0\";s:26:\"ssl-insecure-content-fixer\";s:5:\"2.7.2\";s:11:\"updraftplus\";s:7:\"1.22.19\";s:8:\"wpdiscuz\";s:5:\"7.4.2\";s:15:\"wp-file-manager\";s:5:\"7.1.6\";s:14:\"wp-google-maps\";s:6:\"9.0.10\";s:5:\"wpide\";s:5:\"3.4.1\";s:23:\"wp-phpmyadmin-extension\";s:7:\"5.2.0.7\";s:14:\"duplicate-post\";s:3:\"4.4\";s:13:\"wordpress-seo\";s:4:\"19.1\";s:21:\"wordpress-seo-premium\";s:4:\"17.7\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:8:\"standard\";}}'),(169793,4798,'_amp_queried_object','a:2:{s:2:\"id\";i:1;s:4:\"type\";s:4:\"term\";}'); INSERT INTO `wp_postmeta` VALUES (169794,4798,'_amp_stylesheets','[{\"group\":\"amp-custom\",\"original_size\":140936,\"final_size\":9161,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/bootstrap.min.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"834eec339f2b2b8368c90e8ee4e0c6d0\",\"parse_time\":1.5320749282836914,\"shake_time\":0.018151044845581055,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\":root\":true},[\"--blue:#007bff\",\"--indigo:#6610f2\",\"--purple:#6f42c1\",\"--pink:#e83e8c\",\"--red:#dc3545\",\"--orange:#fd7e14\",\"--yellow:#ffc107\",\"--green:#28a745\",\"--teal:#20c997\",\"--cyan:#17a2b8\",\"--white:#fff\",\"--gray:#6c757d\",\"--gray-dark:#343a40\",\"--primary:#007bff\",\"--secondary:#6c757d\",\"--success:#28a745\",\"--info:#17a2b8\",\"--warning:#ffc107\",\"--danger:#dc3545\",\"--light:#f8f9fa\",\"--dark:#343a40\",\"--breakpoint-xs:0\",\"--breakpoint-sm:576px\",\"--breakpoint-md:768px\",\"--breakpoint-lg:992px\",\"--breakpoint-xl:1200px\",\"--font-family-sans-serif:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,\\\"Liberation Mono\\\",\\\"Courier New\\\",monospace\"]],[true,{\"*\":true,\"::after\":true,\"::before\":true},[\"box-sizing:border-box\"]],[true,{\"html\":true},[\"font-family:sans-serif\",\"line-height:1.15\",\"-webkit-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\",\"-ms-overflow-style:scrollbar\",\"-webkit-tap-highlight-color:transparent\"]],[true,{\"article\":false,\"aside\":false,\"figcaption\":false,\"figure\":false,\"footer\":true,\"header\":true,\"hgroup\":false,\"main\":false,\"nav\":true,\"section\":true},[\"display:block\"]],[true,{\"body\":true},[\"margin:0\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"font-size:1rem\",\"font-weight:400\",\"line-height:1.5\",\"color:#212529\",\"text-align:left\",\"background-color:#fff\"]],[false,{\"[tabindex=\\\"-1\\\"]:focus:not(#_#_#_#_#_#_#_)\":false},[\"outline:0\"]],[false,{\"hr\":false},[\"box-sizing:content-box\",\"height:0\",\"overflow:visible\"]],[true,{\"h1\":true,\"h2\":false,\"h3\":true,\"h4\":false,\"h5\":true,\"h6\":true},[\"margin-top:0\",\"margin-bottom:.5rem\"]],[true,{\"p\":true},[\"margin-top:0\",\"margin-bottom:1rem\"]],[false,{\"abbr[data-original-title]\":false,\"abbr[title]\":false},[\"text-decoration:underline\",\"text-decoration:underline dotted\",\"-webkit-text-decoration:underline dotted\",\"cursor:help\",\"border-bottom:0\"]],[false,{\"address\":false},[\"margin-bottom:1rem\",\"font-style:normal\",\"line-height:inherit\"]],[true,{\"dl\":false,\"ol\":false,\"ul\":true},[\"margin-top:0\",\"margin-bottom:1rem\"]],[true,{\"ol ol\":false,\"ol ul\":false,\"ul ol\":false,\"ul ul\":true},[\"margin-bottom:0\"]],[false,{\"dt\":false},[\"font-weight:700\"]],[false,{\"dd\":false},[\"margin-bottom:.5rem\",\"margin-left:0\"]],[false,{\"blockquote\":false},[\"margin:0 0 1rem\"]],[false,{\"dfn\":false},[\"font-style:italic\"]],[true,{\"b\":false,\"strong\":true},[\"font-weight:bolder\"]],[false,{\"small\":false},[\"font-size:80%\"]],[false,{\"sub\":false,\"sup\":false},[\"position:relative\",\"font-size:75%\",\"line-height:0\",\"vertical-align:baseline\"]],[false,{\"sub\":false},[\"bottom:-.25em\"]],[false,{\"sup\":false},[\"top:-.5em\"]],[true,{\"a\":true},[\"color:#007bff\",\"text-decoration:none\",\"background-color:transparent\",\"-webkit-text-decoration-skip:objects\"]],[true,{\"a:hover\":true},[\"color:#0056b3\",\"text-decoration:underline\"]],[true,{\"a:not([href]):not([tabindex])\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"a:not([href]):not([tabindex]):focus\":true,\"a:not([href]):not([tabindex]):hover\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"a:not([href]):not([tabindex]):focus\":true},[\"outline:0\"]],[false,{\"code\":false,\"kbd\":false,\"pre\":false,\"samp\":false},[\"font-family:SFMono-Regular,Menlo,Monaco,Consolas,\\\"Liberation Mono\\\",\\\"Courier New\\\",monospace\",\"font-size:1em\"]],[false,{\"pre\":false},[\"margin-top:0\",\"margin-bottom:1rem\",\"overflow:auto\",\"-ms-overflow-style:scrollbar\"]],[false,{\"figure\":false},[\"margin:0 0 1rem\"]],[true,{\"amp-img\":true,\"amp-anim\":false},[\"vertical-align:middle\",\"border-style:none\"]],[false,{\"svg\":false},[\"overflow:hidden\",\"vertical-align:middle\"]],[false,{\"table\":false},[\"border-collapse:collapse\"]],[false,{\"caption\":false},[\"padding-top:.75rem\",\"padding-bottom:.75rem\",\"color:#6c757d\",\"text-align:left\",\"caption-side:bottom\"]],[false,{\"th\":false},[\"text-align:inherit\"]],[false,{\"label\":false},[\"display:inline-block\",\"margin-bottom:.5rem\"]],[true,{\"button\":true},[\"border-radius:0\"]],[true,{\"button:focus\":true},[\"outline:1px dotted\",\"outline:5px auto -webkit-focus-ring-color\"]],[true,{\"button\":true,\"input\":false,\"optgroup\":false,\"select\":false,\"textarea\":false},[\"margin:0\",\"font-family:inherit\",\"font-size:inherit\",\"line-height:inherit\"]],[true,{\"button\":true,\"input\":false},[\"overflow:visible\"]],[true,{\"button\":true,\"select\":false},[\"text-transform:none\"]],[true,{\"[type=reset]\":true,\"[type=submit]\":true,\"button\":true,\"html [type=button]\":true},[\"-webkit-appearance:button\"]],[true,{\"[type=button]::-moz-focus-inner\":true,\"[type=reset]::-moz-focus-inner\":true,\"[type=submit]::-moz-focus-inner\":true,\"button::-moz-focus-inner\":true},[\"padding:0\",\"border-style:none\"]],[false,{\"input[type=checkbox]\":false,\"input[type=radio]\":false},[\"box-sizing:border-box\",\"padding:0\"]],[false,{\"input[type=date]\":false,\"input[type=datetime-local]\":false,\"input[type=month]\":false,\"input[type=time]\":false},[\"-webkit-appearance:listbox\"]],[false,{\"textarea\":false},[\"overflow:auto\",\"resize:vertical\"]],[false,{\"fieldset\":false},[\"min-width:0\",\"padding:0\",\"margin:0\",\"border:0\"]],[false,{\"legend\":false},[\"display:block\",\"width:100%\",\"max-width:100%\",\"padding:0\",\"margin-bottom:.5rem\",\"font-size:1.5rem\",\"line-height:inherit\",\"color:inherit\",\"white-space:normal\"]],[false,{\"progress\":false},[\"vertical-align:baseline\"]],[true,{\"[type=number]::-webkit-inner-spin-button\":true,\"[type=number]::-webkit-outer-spin-button\":true},[\"height:auto\"]],[true,{\"[type=search]\":true},[\"outline-offset:-2px\",\"-webkit-appearance:none\"]],[true,{\"[type=search]::-webkit-search-cancel-button\":true,\"[type=search]::-webkit-search-decoration\":true},[\"-webkit-appearance:none\"]],[true,{\"::-webkit-file-upload-button\":true},[\"font:inherit\",\"-webkit-appearance:button\"]],[false,{\"output\":false},[\"display:inline-block\"]],[false,{\"summary\":false},[\"display:list-item\",\"cursor:pointer\"]],[false,{\"template\":false},[\"display:none\"]],[true,{\"[hidden]:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".h1\":false,\".h2\":false,\".h3\":false,\".h4\":false,\".h5\":false,\".h6\":false,\"h1\":true,\"h2\":false,\"h3\":true,\"h4\":false,\"h5\":true,\"h6\":true},[\"margin-bottom:.5rem\",\"font-family:inherit\",\"font-weight:500\",\"line-height:1.2\",\"color:inherit\"]],[true,{\".h1\":false,\"h1\":true},[\"font-size:2.5rem\"]],[false,{\".h2\":false,\"h2\":false},[\"font-size:2rem\"]],[true,{\".h3\":false,\"h3\":true},[\"font-size:1.75rem\"]],[false,{\".h4\":false,\"h4\":false},[\"font-size:1.5rem\"]],[true,{\".h5\":false,\"h5\":true},[\"font-size:1.25rem\"]],[true,{\".h6\":false,\"h6\":true},[\"font-size:1rem\"]],[false,{\".lead\":false},[\"font-size:1.25rem\",\"font-weight:300\"]],[false,{\".display-1\":false},[\"font-size:6rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\".display-2\":false},[\"font-size:5.5rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\".display-3\":false},[\"font-size:4.5rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\".display-4\":false},[\"font-size:3.5rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\"hr\":false},[\"margin-top:1rem\",\"margin-bottom:1rem\",\"border:0\",\"border-top:1px solid rgba(0,0,0,.1)\"]],[false,{\".small\":false,\"small\":false},[\"font-size:80%\",\"font-weight:400\"]],[false,{\".mark\":false,\"mark\":false},[\"padding:.2em\",\"background-color:#fcf8e3\"]],[false,{\".list-unstyled\":false},[\"padding-left:0\",\"list-style:none\"]],[false,{\".list-inline\":false},[\"padding-left:0\",\"list-style:none\"]],[false,{\".list-inline-item\":false},[\"display:inline-block\"]],[false,{\".list-inline-item:not(:last-child)\":false},[\"margin-right:.5rem\"]],[false,{\".initialism\":false},[\"font-size:90%\",\"text-transform:uppercase\"]],[false,{\".blockquote\":false},[\"margin-bottom:1rem\",\"font-size:1.25rem\"]],[false,{\".blockquote-footer\":false},[\"display:block\",\"font-size:80%\",\"color:#6c757d\"]],[false,{\".blockquote-footer::before\":false},[\"content:\\\"\\u2014\\u00a0\\\"\"]],[false,{\".img-fluid\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".img-thumbnail\":false},[\"padding:.25rem\",\"background-color:#fff\",\"border:1px solid #dee2e6\",\"border-radius:.25rem\",\"max-width:100%\",\"height:auto\"]],[false,{\".figure\":false},[\"display:inline-block\"]],[false,{\".figure-img\":false},[\"margin-bottom:.5rem\",\"line-height:1\"]],[false,{\".figure-caption\":false},[\"font-size:90%\",\"color:#6c757d\"]],[false,{\"code\":false},[\"font-size:87.5%\",\"color:#e83e8c\",\"word-break:break-word\"]],[false,{\"a>code\":false},[\"color:inherit\"]],[false,{\"kbd\":false},[\"padding:.2rem .4rem\",\"font-size:87.5%\",\"color:#fff\",\"background-color:#212529\",\"border-radius:.2rem\"]],[false,{\"kbd kbd\":false},[\"padding:0\",\"font-size:100%\",\"font-weight:700\"]],[false,{\"pre\":false},[\"display:block\",\"font-size:87.5%\",\"color:#212529\"]],[false,{\"pre code\":false},[\"font-size:inherit\",\"color:inherit\",\"word-break:normal\"]],[false,{\".pre-scrollable\":false},[\"max-height:340px\",\"overflow-y:scroll\"]],[true,{\".container\":true},[\"width:100%\",\"padding-right:15px\",\"padding-left:15px\",\"margin-right:auto\",\"margin-left:auto\"]],[true,\"@media (min-width:576px){\"],[true,{\".container\":true},[\"max-width:540px\"]],[true,\"}\"],[true,\"@media (min-width:768px){\"],[true,{\".container\":true},[\"max-width:720px\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[true,{\".container\":true},[\"max-width:960px\"]],[true,\"}\"],[true,\"@media (min-width:1200px){\"],[true,{\".container\":true},[\"max-width:1140px\"]],[true,\"}\"],[true,{\".container-fluid\":true},[\"width:100%\",\"padding-right:15px\",\"padding-left:15px\",\"margin-right:auto\",\"margin-left:auto\"]],[true,{\".row\":true},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"margin-right:-15px\",\"margin-left:-15px\"]],[false,{\".no-gutters\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".no-gutters>.col\":false,\".no-gutters>[class*=col-]\":false},[\"padding-right:0\",\"padding-left:0\"]],[true,{\".col\":false,\".col-1\":false,\".col-10\":true,\".col-11\":false,\".col-12\":true,\".col-2\":true,\".col-3\":false,\".col-4\":false,\".col-5\":false,\".col-6\":false,\".col-7\":false,\".col-8\":false,\".col-9\":false,\".col-auto\":false,\".col-lg\":false,\".col-lg-1\":false,\".col-lg-10\":false,\".col-lg-11\":false,\".col-lg-12\":true,\".col-lg-2\":true,\".col-lg-3\":true,\".col-lg-4\":true,\".col-lg-5\":false,\".col-lg-6\":true,\".col-lg-7\":false,\".col-lg-8\":true,\".col-lg-9\":true,\".col-lg-auto\":false,\".col-md\":false,\".col-md-1\":false,\".col-md-10\":true,\".col-md-11\":false,\".col-md-12\":true,\".col-md-2\":true,\".col-md-3\":false,\".col-md-4\":true,\".col-md-5\":false,\".col-md-6\":true,\".col-md-7\":false,\".col-md-8\":true,\".col-md-9\":false,\".col-md-auto\":false,\".col-sm\":false,\".col-sm-1\":false,\".col-sm-10\":false,\".col-sm-11\":false,\".col-sm-12\":true,\".col-sm-2\":false,\".col-sm-3\":false,\".col-sm-4\":false,\".col-sm-5\":false,\".col-sm-6\":false,\".col-sm-7\":false,\".col-sm-8\":false,\".col-sm-9\":false,\".col-sm-auto\":false,\".col-xl\":false,\".col-xl-1\":false,\".col-xl-10\":true,\".col-xl-11\":false,\".col-xl-12\":false,\".col-xl-2\":true,\".col-xl-3\":false,\".col-xl-4\":false,\".col-xl-5\":false,\".col-xl-6\":false,\".col-xl-7\":false,\".col-xl-8\":false,\".col-xl-9\":false,\".col-xl-auto\":false},[\"position:relative\",\"width:100%\",\"min-height:1px\",\"padding-right:15px\",\"padding-left:15px\"]],[false,{\".col\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[false,{\".col-4\":false},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[false,{\".col-6\":false},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[true,{\".col-10\":true},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-3\":false},[\"margin-left:25%\"]],[false,{\".offset-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-6\":false},[\"margin-left:50%\"]],[false,{\".offset-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-9\":false},[\"margin-left:75%\"]],[false,{\".offset-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-11\":false},[\"margin-left:91.666667%\"]],[true,\"@media (min-width:576px){\"],[false,{\".col-sm\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-sm-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-sm-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[false,{\".col-sm-2\":false},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-sm-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[false,{\".col-sm-4\":false},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-sm-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[false,{\".col-sm-6\":false},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-sm-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-sm-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-sm-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[false,{\".col-sm-10\":false},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-sm-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-sm-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-sm-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-sm-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-sm-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-sm-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-sm-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-sm-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-sm-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-sm-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-sm-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-sm-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-sm-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-sm-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-sm-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-sm-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-sm-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-sm-0\":false},[\"margin-left:0\"]],[false,{\".offset-sm-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-sm-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-sm-3\":false},[\"margin-left:25%\"]],[false,{\".offset-sm-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-sm-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-sm-6\":false},[\"margin-left:50%\"]],[false,{\".offset-sm-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-sm-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-sm-9\":false},[\"margin-left:75%\"]],[false,{\".offset-sm-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-sm-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[true,\"@media (min-width:768px){\"],[false,{\".col-md\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-md-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-md-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-md-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-md-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[true,{\".col-md-4\":true},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-md-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[true,{\".col-md-6\":true},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-md-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[true,{\".col-md-8\":true},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-md-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[true,{\".col-md-10\":true},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-md-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-md-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-md-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-md-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-md-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-md-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-md-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-md-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-md-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-md-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-md-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-md-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-md-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-md-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-md-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-md-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-md-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-md-0\":false},[\"margin-left:0\"]],[false,{\".offset-md-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-md-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-md-3\":false},[\"margin-left:25%\"]],[false,{\".offset-md-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-md-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-md-6\":false},[\"margin-left:50%\"]],[false,{\".offset-md-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-md-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-md-9\":false},[\"margin-left:75%\"]],[false,{\".offset-md-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-md-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[false,{\".col-lg\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-lg-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-lg-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-lg-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[true,{\".col-lg-3\":true},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[true,{\".col-lg-4\":true},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-lg-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[true,{\".col-lg-6\":true},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-lg-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[true,{\".col-lg-8\":true},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[true,{\".col-lg-9\":true},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[false,{\".col-lg-10\":false},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-lg-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-lg-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-lg-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-lg-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-lg-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-lg-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-lg-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-lg-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-lg-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-lg-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-lg-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-lg-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-lg-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-lg-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-lg-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-lg-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-lg-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-lg-0\":false},[\"margin-left:0\"]],[false,{\".offset-lg-1\":false},[\"margin-left:8.333333%\"]],[true,{\".offset-lg-2\":true},[\"margin-left:16.666667%\"]],[false,{\".offset-lg-3\":false},[\"margin-left:25%\"]],[false,{\".offset-lg-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-lg-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-lg-6\":false},[\"margin-left:50%\"]],[false,{\".offset-lg-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-lg-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-lg-9\":false},[\"margin-left:75%\"]],[false,{\".offset-lg-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-lg-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[true,\"@media (min-width:1200px){\"],[false,{\".col-xl\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-xl-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-xl-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-xl-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-xl-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[false,{\".col-xl-4\":false},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-xl-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[false,{\".col-xl-6\":false},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-xl-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-xl-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-xl-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[true,{\".col-xl-10\":true},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-xl-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[false,{\".col-xl-12\":false},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-xl-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-xl-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-xl-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-xl-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-xl-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-xl-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-xl-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-xl-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-xl-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-xl-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-xl-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-xl-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-xl-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-xl-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-xl-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-xl-0\":false},[\"margin-left:0\"]],[false,{\".offset-xl-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-xl-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-xl-3\":false},[\"margin-left:25%\"]],[false,{\".offset-xl-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-xl-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-xl-6\":false},[\"margin-left:50%\"]],[false,{\".offset-xl-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-xl-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-xl-9\":false},[\"margin-left:75%\"]],[false,{\".offset-xl-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-xl-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[false,{\".table\":false},[\"width:100%\",\"margin-bottom:1rem\",\"background-color:transparent\"]],[false,{\".table td\":false,\".table th\":false},[\"padding:.75rem\",\"vertical-align:top\",\"border-top:1px solid #dee2e6\"]],[false,{\".table thead th\":false},[\"vertical-align:bottom\",\"border-bottom:2px solid #dee2e6\"]],[false,{\".table tbody+tbody\":false},[\"border-top:2px solid #dee2e6\"]],[false,{\".table .table\":false},[\"background-color:#fff\"]],[false,{\".table-sm td\":false,\".table-sm th\":false},[\"padding:.3rem\"]],[false,{\".table-bordered\":false},[\"border:1px solid #dee2e6\"]],[false,{\".table-bordered td\":false,\".table-bordered th\":false},[\"border:1px solid #dee2e6\"]],[false,{\".table-bordered thead td\":false,\".table-bordered thead th\":false},[\"border-bottom-width:2px\"]],[false,{\".table-borderless tbody+tbody\":false,\".table-borderless td\":false,\".table-borderless th\":false,\".table-borderless thead th\":false},[\"border:0\"]],[false,{\".table-striped tbody tr:nth-of-type(odd)\":false},[\"background-color:rgba(0,0,0,.05)\"]],[false,{\".table-hover tbody tr:hover\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table-primary\":false,\".table-primary>td\":false,\".table-primary>th\":false},[\"background-color:#b8daff\"]],[false,{\".table-hover .table-primary:hover\":false},[\"background-color:#9fcdff\"]],[false,{\".table-hover .table-primary:hover>td\":false,\".table-hover .table-primary:hover>th\":false},[\"background-color:#9fcdff\"]],[false,{\".table-secondary\":false,\".table-secondary>td\":false,\".table-secondary>th\":false},[\"background-color:#d6d8db\"]],[false,{\".table-hover .table-secondary:hover\":false},[\"background-color:#c8cbcf\"]],[false,{\".table-hover .table-secondary:hover>td\":false,\".table-hover .table-secondary:hover>th\":false},[\"background-color:#c8cbcf\"]],[false,{\".table-success\":false,\".table-success>td\":false,\".table-success>th\":false},[\"background-color:#c3e6cb\"]],[false,{\".table-hover .table-success:hover\":false},[\"background-color:#b1dfbb\"]],[false,{\".table-hover .table-success:hover>td\":false,\".table-hover .table-success:hover>th\":false},[\"background-color:#b1dfbb\"]],[false,{\".table-info\":false,\".table-info>td\":false,\".table-info>th\":false},[\"background-color:#bee5eb\"]],[false,{\".table-hover .table-info:hover\":false},[\"background-color:#abdde5\"]],[false,{\".table-hover .table-info:hover>td\":false,\".table-hover .table-info:hover>th\":false},[\"background-color:#abdde5\"]],[false,{\".table-warning\":false,\".table-warning>td\":false,\".table-warning>th\":false},[\"background-color:#ffeeba\"]],[false,{\".table-hover .table-warning:hover\":false},[\"background-color:#ffe8a1\"]],[false,{\".table-hover .table-warning:hover>td\":false,\".table-hover .table-warning:hover>th\":false},[\"background-color:#ffe8a1\"]],[false,{\".table-danger\":false,\".table-danger>td\":false,\".table-danger>th\":false},[\"background-color:#f5c6cb\"]],[false,{\".table-hover .table-danger:hover\":false},[\"background-color:#f1b0b7\"]],[false,{\".table-hover .table-danger:hover>td\":false,\".table-hover .table-danger:hover>th\":false},[\"background-color:#f1b0b7\"]],[false,{\".table-light\":false,\".table-light>td\":false,\".table-light>th\":false},[\"background-color:#fdfdfe\"]],[false,{\".table-hover .table-light:hover\":false},[\"background-color:#ececf6\"]],[false,{\".table-hover .table-light:hover>td\":false,\".table-hover .table-light:hover>th\":false},[\"background-color:#ececf6\"]],[false,{\".table-dark\":false,\".table-dark>td\":false,\".table-dark>th\":false},[\"background-color:#c6c8ca\"]],[false,{\".table-hover .table-dark:hover\":false},[\"background-color:#b9bbbe\"]],[false,{\".table-hover .table-dark:hover>td\":false,\".table-hover .table-dark:hover>th\":false},[\"background-color:#b9bbbe\"]],[false,{\".table-active\":false,\".table-active>td\":false,\".table-active>th\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table-hover .table-active:hover\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table-hover .table-active:hover>td\":false,\".table-hover .table-active:hover>th\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table .thead-dark th\":false},[\"color:#fff\",\"background-color:#212529\",\"border-color:#32383e\"]],[false,{\".table .thead-light th\":false},[\"color:#495057\",\"background-color:#e9ecef\",\"border-color:#dee2e6\"]],[false,{\".table-dark\":false},[\"color:#fff\",\"background-color:#212529\"]],[false,{\".table-dark td\":false,\".table-dark th\":false,\".table-dark thead th\":false},[\"border-color:#32383e\"]],[false,{\".table-dark.table-bordered\":false},[\"border:0\"]],[false,{\".table-dark.table-striped tbody tr:nth-of-type(odd)\":false},[\"background-color:rgba(255,255,255,.05)\"]],[false,{\".table-dark.table-hover tbody tr:hover\":false},[\"background-color:rgba(255,255,255,.075)\"]],[false,\"@media (max-width:575.98px){\"],[false,{\".table-responsive-sm\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-sm>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:767.98px){\"],[false,{\".table-responsive-md\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-md>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:991.98px){\"],[false,{\".table-responsive-lg\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-lg>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:1199.98px){\"],[false,{\".table-responsive-xl\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-xl>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,{\".table-responsive\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive>.table-bordered\":false},[\"border:0\"]],[false,{\".form-control\":false},[\"display:block\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"padding:.375rem .75rem\",\"font-size:1rem\",\"line-height:1.5\",\"color:#495057\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid #ced4da\",\"border-radius:.25rem\",\"transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".form-control\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".form-control::-ms-expand\":false},[\"background-color:transparent\",\"border:0\"]],[false,{\".form-control:focus\":false},[\"color:#495057\",\"background-color:#fff\",\"border-color:#80bdff\",\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".form-control::-webkit-input-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control::-moz-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control:-ms-input-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control::-ms-input-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control::placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control:disabled\":false,\".form-control[readonly]\":false},[\"background-color:#e9ecef\",\"opacity:1\"]],[false,{\"select.form-control:focus::-ms-value\":false},[\"color:#495057\",\"background-color:#fff\"]],[false,{\".form-control-file\":false,\".form-control-range\":false},[\"display:block\",\"width:100%\"]],[false,{\".col-form-label\":false},[\"padding-top:calc(.375rem + 1px)\",\"padding-bottom:calc(.375rem + 1px)\",\"margin-bottom:0\",\"font-size:inherit\",\"line-height:1.5\"]],[false,{\".col-form-label-lg\":false},[\"padding-top:calc(.5rem + 1px)\",\"padding-bottom:calc(.5rem + 1px)\",\"font-size:1.25rem\",\"line-height:1.5\"]],[false,{\".col-form-label-sm\":false},[\"padding-top:calc(.25rem + 1px)\",\"padding-bottom:calc(.25rem + 1px)\",\"font-size:.875rem\",\"line-height:1.5\"]],[false,{\".form-control-plaintext\":false},[\"display:block\",\"width:100%\",\"padding-top:.375rem\",\"padding-bottom:.375rem\",\"margin-bottom:0\",\"line-height:1.5\",\"color:#212529\",\"background-color:transparent\",\"border:solid transparent\",\"border-width:1px 0\"]],[false,{\".form-control-plaintext.form-control-lg\":false,\".form-control-plaintext.form-control-sm\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,{\".form-control-sm\":false},[\"height:calc(1.8125rem + 2px)\",\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\",\"border-radius:.2rem\"]],[false,{\".form-control-lg\":false},[\"height:calc(2.875rem + 2px)\",\"padding:.5rem 1rem\",\"font-size:1.25rem\",\"line-height:1.5\",\"border-radius:.3rem\"]],[false,{\"select.form-control[multiple]\":false,\"select.form-control[size]\":false},[\"height:auto\"]],[false,{\"textarea.form-control\":false},[\"height:auto\"]],[false,{\".form-group\":false},[\"margin-bottom:1rem\"]],[false,{\".form-text\":false},[\"display:block\",\"margin-top:.25rem\"]],[false,{\".form-row\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"margin-right:-5px\",\"margin-left:-5px\"]],[false,{\".form-row>.col\":false,\".form-row>[class*=col-]\":false},[\"padding-right:5px\",\"padding-left:5px\"]],[false,{\".form-check\":false},[\"position:relative\",\"display:block\",\"padding-left:1.25rem\"]],[false,{\".form-check-input\":false},[\"position:absolute\",\"margin-top:.3rem\",\"margin-left:-1.25rem\"]],[false,{\".form-check-input:disabled~.form-check-label\":false},[\"color:#6c757d\"]],[false,{\".form-check-label\":false},[\"margin-bottom:0\"]],[false,{\".form-check-inline\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"-ms-flex-align:center\",\"align-items:center\",\"padding-left:0\",\"margin-right:.75rem\"]],[false,{\".form-check-inline .form-check-input\":false},[\"position:static\",\"margin-top:0\",\"margin-right:.3125rem\",\"margin-left:0\"]],[false,{\".valid-feedback\":false},[\"display:none\",\"width:100%\",\"margin-top:.25rem\",\"font-size:80%\",\"color:#28a745\"]],[false,{\".valid-tooltip\":false},[\"position:absolute\",\"top:100%\",\"z-index:5\",\"display:none\",\"max-width:100%\",\"padding:.25rem .5rem\",\"margin-top:.1rem\",\"font-size:.875rem\",\"line-height:1.5\",\"color:#fff\",\"background-color:rgba(40,167,69,.9)\",\"border-radius:.25rem\"]],[false,{\".custom-select.is-valid\":false,\".form-control.is-valid\":false,\".was-validated .custom-select:valid\":false,\".was-validated .form-control:valid\":false},[\"border-color:#28a745\"]],[false,{\".custom-select.is-valid:focus\":false,\".form-control.is-valid:focus\":false,\".was-validated .custom-select:valid:focus\":false,\".was-validated .form-control:valid:focus\":false},[\"border-color:#28a745\",\"box-shadow:0 0 0 .2rem rgba(40,167,69,.25)\"]],[false,{\".custom-select.is-valid~.valid-feedback\":false,\".custom-select.is-valid~.valid-tooltip\":false,\".form-control.is-valid~.valid-feedback\":false,\".form-control.is-valid~.valid-tooltip\":false,\".was-validated .custom-select:valid~.valid-feedback\":false,\".was-validated .custom-select:valid~.valid-tooltip\":false,\".was-validated .form-control:valid~.valid-feedback\":false,\".was-validated .form-control:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".form-control-file.is-valid~.valid-feedback\":false,\".form-control-file.is-valid~.valid-tooltip\":false,\".was-validated .form-control-file:valid~.valid-feedback\":false,\".was-validated .form-control-file:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".form-check-input.is-valid~.form-check-label\":false,\".was-validated .form-check-input:valid~.form-check-label\":false},[\"color:#28a745\"]],[false,{\".form-check-input.is-valid~.valid-feedback\":false,\".form-check-input.is-valid~.valid-tooltip\":false,\".was-validated .form-check-input:valid~.valid-feedback\":false,\".was-validated .form-check-input:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-valid~.custom-control-label\":false,\".was-validated .custom-control-input:valid~.custom-control-label\":false},[\"color:#28a745\"]],[false,{\".custom-control-input.is-valid~.custom-control-label::before\":false,\".was-validated .custom-control-input:valid~.custom-control-label::before\":false},[\"background-color:#71dd8a\"]],[false,{\".custom-control-input.is-valid~.valid-feedback\":false,\".custom-control-input.is-valid~.valid-tooltip\":false,\".was-validated .custom-control-input:valid~.valid-feedback\":false,\".was-validated .custom-control-input:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-valid:checked~.custom-control-label::before\":false,\".was-validated .custom-control-input:valid:checked~.custom-control-label::before\":false},[\"background-color:#34ce57\"]],[false,{\".custom-control-input.is-valid:focus~.custom-control-label::before\":false,\".was-validated .custom-control-input:valid:focus~.custom-control-label::before\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(40,167,69,.25)\"]],[false,{\".custom-file-input.is-valid~.custom-file-label\":false,\".was-validated .custom-file-input:valid~.custom-file-label\":false},[\"border-color:#28a745\"]],[false,{\".custom-file-input.is-valid~.custom-file-label::after\":false,\".was-validated .custom-file-input:valid~.custom-file-label::after\":false},[\"border-color:inherit\"]],[false,{\".custom-file-input.is-valid~.valid-feedback\":false,\".custom-file-input.is-valid~.valid-tooltip\":false,\".was-validated .custom-file-input:valid~.valid-feedback\":false,\".was-validated .custom-file-input:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".custom-file-input.is-valid:focus~.custom-file-label\":false,\".was-validated .custom-file-input:valid:focus~.custom-file-label\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.25)\"]],[false,{\".invalid-feedback\":false},[\"display:none\",\"width:100%\",\"margin-top:.25rem\",\"font-size:80%\",\"color:#dc3545\"]],[false,{\".invalid-tooltip\":false},[\"position:absolute\",\"top:100%\",\"z-index:5\",\"display:none\",\"max-width:100%\",\"padding:.25rem .5rem\",\"margin-top:.1rem\",\"font-size:.875rem\",\"line-height:1.5\",\"color:#fff\",\"background-color:rgba(220,53,69,.9)\",\"border-radius:.25rem\"]],[false,{\".custom-select.is-invalid\":false,\".form-control.is-invalid\":false,\".was-validated .custom-select:invalid\":false,\".was-validated .form-control:invalid\":false},[\"border-color:#dc3545\"]],[false,{\".custom-select.is-invalid:focus\":false,\".form-control.is-invalid:focus\":false,\".was-validated .custom-select:invalid:focus\":false,\".was-validated .form-control:invalid:focus\":false},[\"border-color:#dc3545\",\"box-shadow:0 0 0 .2rem rgba(220,53,69,.25)\"]],[false,{\".custom-select.is-invalid~.invalid-feedback\":false,\".custom-select.is-invalid~.invalid-tooltip\":false,\".form-control.is-invalid~.invalid-feedback\":false,\".form-control.is-invalid~.invalid-tooltip\":false,\".was-validated .custom-select:invalid~.invalid-feedback\":false,\".was-validated .custom-select:invalid~.invalid-tooltip\":false,\".was-validated .form-control:invalid~.invalid-feedback\":false,\".was-validated .form-control:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".form-control-file.is-invalid~.invalid-feedback\":false,\".form-control-file.is-invalid~.invalid-tooltip\":false,\".was-validated .form-control-file:invalid~.invalid-feedback\":false,\".was-validated .form-control-file:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".form-check-input.is-invalid~.form-check-label\":false,\".was-validated .form-check-input:invalid~.form-check-label\":false},[\"color:#dc3545\"]],[false,{\".form-check-input.is-invalid~.invalid-feedback\":false,\".form-check-input.is-invalid~.invalid-tooltip\":false,\".was-validated .form-check-input:invalid~.invalid-feedback\":false,\".was-validated .form-check-input:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-invalid~.custom-control-label\":false,\".was-validated .custom-control-input:invalid~.custom-control-label\":false},[\"color:#dc3545\"]],[false,{\".custom-control-input.is-invalid~.custom-control-label::before\":false,\".was-validated .custom-control-input:invalid~.custom-control-label::before\":false},[\"background-color:#efa2a9\"]],[false,{\".custom-control-input.is-invalid~.invalid-feedback\":false,\".custom-control-input.is-invalid~.invalid-tooltip\":false,\".was-validated .custom-control-input:invalid~.invalid-feedback\":false,\".was-validated .custom-control-input:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-invalid:checked~.custom-control-label::before\":false,\".was-validated .custom-control-input:invalid:checked~.custom-control-label::before\":false},[\"background-color:#e4606d\"]],[false,{\".custom-control-input.is-invalid:focus~.custom-control-label::before\":false,\".was-validated .custom-control-input:invalid:focus~.custom-control-label::before\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(220,53,69,.25)\"]],[false,{\".custom-file-input.is-invalid~.custom-file-label\":false,\".was-validated .custom-file-input:invalid~.custom-file-label\":false},[\"border-color:#dc3545\"]],[false,{\".custom-file-input.is-invalid~.custom-file-label::after\":false,\".was-validated .custom-file-input:invalid~.custom-file-label::after\":false},[\"border-color:inherit\"]],[false,{\".custom-file-input.is-invalid~.invalid-feedback\":false,\".custom-file-input.is-invalid~.invalid-tooltip\":false,\".was-validated .custom-file-input:invalid~.invalid-feedback\":false,\".was-validated .custom-file-input:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".custom-file-input.is-invalid:focus~.custom-file-label\":false,\".was-validated .custom-file-input:invalid:focus~.custom-file-label\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.25)\"]],[false,{\".form-inline\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".form-inline .form-check\":false},[\"width:100%\"]],[false,\"@media (min-width:576px){\"],[false,{\".form-inline label\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"margin-bottom:0\"]],[false,{\".form-inline .form-group\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\",\"-ms-flex-align:center\",\"align-items:center\",\"margin-bottom:0\"]],[false,{\".form-inline .form-control\":false},[\"display:inline-block\",\"width:auto\",\"vertical-align:middle\"]],[false,{\".form-inline .form-control-plaintext\":false},[\"display:inline-block\"]],[false,{\".form-inline .custom-select\":false,\".form-inline .input-group\":false},[\"width:auto\"]],[false,{\".form-inline .form-check\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"width:auto\",\"padding-left:0\"]],[false,{\".form-inline .form-check-input\":false},[\"position:relative\",\"margin-top:0\",\"margin-right:.25rem\",\"margin-left:0\"]],[false,{\".form-inline .custom-control\":false},[\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".form-inline .custom-control-label\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".btn\":false},[\"display:inline-block\",\"font-weight:400\",\"text-align:center\",\"white-space:nowrap\",\"vertical-align:middle\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\",\"border:1px solid transparent\",\"padding:.375rem .75rem\",\"font-size:1rem\",\"line-height:1.5\",\"border-radius:.25rem\",\"transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".btn\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".btn:focus\":false,\".btn:hover\":false},[\"text-decoration:none\"]],[false,{\".btn:focus-within\":false,\".btn:focus\":false},[\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".btn.disabled\":false,\".btn:disabled\":false},[\"opacity:.65\"]],[false,{\".btn:not(:disabled):not(.disabled)\":false},[\"cursor:pointer\"]],[false,{\"a.btn.disabled\":false,\"fieldset:disabled a.btn\":false},[\"pointer-events:none\"]],[false,{\".btn-primary\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-primary:hover\":false},[\"color:#fff\",\"background-color:#0069d9\",\"border-color:#0062cc\"]],[false,{\".btn-primary:focus-within\":false,\".btn-primary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-primary.disabled\":false,\".btn-primary:disabled\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-primary:not(:disabled):not(.disabled).active\":false,\".btn-primary:not(:disabled):not(.disabled):active\":false,\".show>.btn-primary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#0062cc\",\"border-color:#005cbf\"]],[false,{\".btn-primary:not(:disabled):not(.disabled).active:focus\":false,\".btn-primary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-primary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-secondary\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-secondary:hover\":false},[\"color:#fff\",\"background-color:#5a6268\",\"border-color:#545b62\"]],[false,{\".btn-secondary:focus-within\":false,\".btn-secondary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-secondary.disabled\":false,\".btn-secondary:disabled\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-secondary:not(:disabled):not(.disabled).active\":false,\".btn-secondary:not(:disabled):not(.disabled):active\":false,\".show>.btn-secondary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#545b62\",\"border-color:#4e555b\"]],[false,{\".btn-secondary:not(:disabled):not(.disabled).active:focus\":false,\".btn-secondary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-secondary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-success\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-success:hover\":false},[\"color:#fff\",\"background-color:#218838\",\"border-color:#1e7e34\"]],[false,{\".btn-success:focus-within\":false,\".btn-success:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-success.disabled\":false,\".btn-success:disabled\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-success:not(:disabled):not(.disabled).active\":false,\".btn-success:not(:disabled):not(.disabled):active\":false,\".show>.btn-success.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#1e7e34\",\"border-color:#1c7430\"]],[false,{\".btn-success:not(:disabled):not(.disabled).active:focus\":false,\".btn-success:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-success.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-info\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-info:hover\":false},[\"color:#fff\",\"background-color:#138496\",\"border-color:#117a8b\"]],[false,{\".btn-info:focus-within\":false,\".btn-info:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-info.disabled\":false,\".btn-info:disabled\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-info:not(:disabled):not(.disabled).active\":false,\".btn-info:not(:disabled):not(.disabled):active\":false,\".show>.btn-info.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#117a8b\",\"border-color:#10707f\"]],[false,{\".btn-info:not(:disabled):not(.disabled).active:focus\":false,\".btn-info:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-info.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-warning\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-warning:hover\":false},[\"color:#212529\",\"background-color:#e0a800\",\"border-color:#d39e00\"]],[false,{\".btn-warning:focus-within\":false,\".btn-warning:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-warning.disabled\":false,\".btn-warning:disabled\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-warning:not(:disabled):not(.disabled).active\":false,\".btn-warning:not(:disabled):not(.disabled):active\":false,\".show>.btn-warning.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#d39e00\",\"border-color:#c69500\"]],[false,{\".btn-warning:not(:disabled):not(.disabled).active:focus\":false,\".btn-warning:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-warning.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-danger\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-danger:hover\":false},[\"color:#fff\",\"background-color:#c82333\",\"border-color:#bd2130\"]],[false,{\".btn-danger:focus-within\":false,\".btn-danger:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-danger.disabled\":false,\".btn-danger:disabled\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-danger:not(:disabled):not(.disabled).active\":false,\".btn-danger:not(:disabled):not(.disabled):active\":false,\".show>.btn-danger.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#bd2130\",\"border-color:#b21f2d\"]],[false,{\".btn-danger:not(:disabled):not(.disabled).active:focus\":false,\".btn-danger:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-danger.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-light\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-light:hover\":false},[\"color:#212529\",\"background-color:#e2e6ea\",\"border-color:#dae0e5\"]],[false,{\".btn-light:focus-within\":false,\".btn-light:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-light.disabled\":false,\".btn-light:disabled\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-light:not(:disabled):not(.disabled).active\":false,\".btn-light:not(:disabled):not(.disabled):active\":false,\".show>.btn-light.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#dae0e5\",\"border-color:#d3d9df\"]],[false,{\".btn-light:not(:disabled):not(.disabled).active:focus\":false,\".btn-light:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-light.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-dark\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-dark:hover\":false},[\"color:#fff\",\"background-color:#23272b\",\"border-color:#1d2124\"]],[false,{\".btn-dark:focus-within\":false,\".btn-dark:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-dark.disabled\":false,\".btn-dark:disabled\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-dark:not(:disabled):not(.disabled).active\":false,\".btn-dark:not(:disabled):not(.disabled):active\":false,\".show>.btn-dark.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#1d2124\",\"border-color:#171a1d\"]],[false,{\".btn-dark:not(:disabled):not(.disabled).active:focus\":false,\".btn-dark:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-dark.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-outline-primary\":false},[\"color:#007bff\",\"background-color:transparent\",\"background-image:none\",\"border-color:#007bff\"]],[false,{\".btn-outline-primary:hover\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-outline-primary:focus-within\":false,\".btn-outline-primary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-outline-primary.disabled\":false,\".btn-outline-primary:disabled\":false},[\"color:#007bff\",\"background-color:transparent\"]],[false,{\".btn-outline-primary:not(:disabled):not(.disabled).active\":false,\".btn-outline-primary:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-primary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-outline-primary:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-primary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-primary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-outline-secondary\":false},[\"color:#6c757d\",\"background-color:transparent\",\"background-image:none\",\"border-color:#6c757d\"]],[false,{\".btn-outline-secondary:hover\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-outline-secondary:focus-within\":false,\".btn-outline-secondary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-outline-secondary.disabled\":false,\".btn-outline-secondary:disabled\":false},[\"color:#6c757d\",\"background-color:transparent\"]],[false,{\".btn-outline-secondary:not(:disabled):not(.disabled).active\":false,\".btn-outline-secondary:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-secondary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-outline-secondary:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-secondary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-secondary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-outline-success\":false},[\"color:#28a745\",\"background-color:transparent\",\"background-image:none\",\"border-color:#28a745\"]],[false,{\".btn-outline-success:hover\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-outline-success:focus-within\":false,\".btn-outline-success:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-outline-success.disabled\":false,\".btn-outline-success:disabled\":false},[\"color:#28a745\",\"background-color:transparent\"]],[false,{\".btn-outline-success:not(:disabled):not(.disabled).active\":false,\".btn-outline-success:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-success.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-outline-success:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-success:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-success.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-outline-info\":false},[\"color:#17a2b8\",\"background-color:transparent\",\"background-image:none\",\"border-color:#17a2b8\"]],[false,{\".btn-outline-info:hover\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-outline-info:focus-within\":false,\".btn-outline-info:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-outline-info.disabled\":false,\".btn-outline-info:disabled\":false},[\"color:#17a2b8\",\"background-color:transparent\"]],[false,{\".btn-outline-info:not(:disabled):not(.disabled).active\":false,\".btn-outline-info:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-info.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-outline-info:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-info:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-info.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-outline-warning\":false},[\"color:#ffc107\",\"background-color:transparent\",\"background-image:none\",\"border-color:#ffc107\"]],[false,{\".btn-outline-warning:hover\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-outline-warning:focus-within\":false,\".btn-outline-warning:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-outline-warning.disabled\":false,\".btn-outline-warning:disabled\":false},[\"color:#ffc107\",\"background-color:transparent\"]],[false,{\".btn-outline-warning:not(:disabled):not(.disabled).active\":false,\".btn-outline-warning:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-warning.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-outline-warning:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-warning:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-warning.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-outline-danger\":false},[\"color:#dc3545\",\"background-color:transparent\",\"background-image:none\",\"border-color:#dc3545\"]],[false,{\".btn-outline-danger:hover\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-outline-danger:focus-within\":false,\".btn-outline-danger:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-outline-danger.disabled\":false,\".btn-outline-danger:disabled\":false},[\"color:#dc3545\",\"background-color:transparent\"]],[false,{\".btn-outline-danger:not(:disabled):not(.disabled).active\":false,\".btn-outline-danger:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-danger.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-outline-danger:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-danger:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-danger.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-outline-light\":false},[\"color:#f8f9fa\",\"background-color:transparent\",\"background-image:none\",\"border-color:#f8f9fa\"]],[false,{\".btn-outline-light:hover\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-outline-light:focus-within\":false,\".btn-outline-light:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-outline-light.disabled\":false,\".btn-outline-light:disabled\":false},[\"color:#f8f9fa\",\"background-color:transparent\"]],[false,{\".btn-outline-light:not(:disabled):not(.disabled).active\":false,\".btn-outline-light:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-light.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-outline-light:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-light:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-light.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-outline-dark\":false},[\"color:#343a40\",\"background-color:transparent\",\"background-image:none\",\"border-color:#343a40\"]],[false,{\".btn-outline-dark:hover\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-outline-dark:focus-within\":false,\".btn-outline-dark:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-outline-dark.disabled\":false,\".btn-outline-dark:disabled\":false},[\"color:#343a40\",\"background-color:transparent\"]],[false,{\".btn-outline-dark:not(:disabled):not(.disabled).active\":false,\".btn-outline-dark:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-dark.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-outline-dark:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-dark:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-dark.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-link\":false},[\"font-weight:400\",\"color:#007bff\",\"background-color:transparent\"]],[false,{\".btn-link:hover\":false},[\"color:#0056b3\",\"text-decoration:underline\",\"background-color:transparent\",\"border-color:transparent\"]],[false,{\".btn-link:focus-within\":false,\".btn-link:focus\":false},[\"text-decoration:underline\",\"border-color:transparent\",\"box-shadow:none\"]],[false,{\".btn-link.disabled\":false,\".btn-link:disabled\":false},[\"color:#6c757d\",\"pointer-events:none\"]],[false,{\".btn-group-lg>.btn\":false,\".btn-lg\":false},[\"padding:.5rem 1rem\",\"font-size:1.25rem\",\"line-height:1.5\",\"border-radius:.3rem\"]],[false,{\".btn-group-sm>.btn\":false,\".btn-sm\":false},[\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\",\"border-radius:.2rem\"]],[false,{\".btn-block\":false},[\"display:block\",\"width:100%\"]],[false,{\".btn-block+.btn-block\":false},[\"margin-top:.5rem\"]],[false,{\"input[type=button].btn-block\":false,\"input[type=reset].btn-block\":false,\"input[type=submit].btn-block\":false},[\"width:100%\"]],[false,{\".fade\":false},[\"transition:opacity .15s linear\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".fade\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".fade:not(.show)\":false},[\"opacity:0\"]],[true,{\".collapse:not(.show)\":true},[\"display:none\"]],[false,{\".collapsing\":false},[\"position:relative\",\"height:0\",\"overflow:hidden\",\"transition:height .35s ease\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".collapsing\":false},[\"transition:none\"]],[false,\"}\"],[true,{\".dropdown\":true,\".dropleft\":false,\".dropright\":false,\".dropup\":false},[\"position:relative\"]],[true,{\".dropdown-toggle::after\":true},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:.3em solid\",\"border-right:.3em solid transparent\",\"border-bottom:0\",\"border-left:.3em solid transparent\"]],[true,{\".dropdown-toggle:empty::after\":true},[\"margin-left:0\"]],[true,{\".dropdown-menu\":true},[\"position:absolute\",\"top:100%\",\"left:0\",\"z-index:1000\",\"display:none\",\"float:left\",\"min-width:10rem\",\"padding:.5rem 0\",\"margin:.125rem 0 0\",\"font-size:1rem\",\"color:#212529\",\"text-align:left\",\"list-style:none\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid rgba(0,0,0,.15)\",\"border-radius:.25rem\"]],[false,{\".dropdown-menu-right\":false},[\"right:0\",\"left:auto\"]],[false,{\".dropup .dropdown-menu\":false},[\"top:auto\",\"bottom:100%\",\"margin-top:0\",\"margin-bottom:.125rem\"]],[false,{\".dropup .dropdown-toggle::after\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:0\",\"border-right:.3em solid transparent\",\"border-bottom:.3em solid\",\"border-left:.3em solid transparent\"]],[false,{\".dropup .dropdown-toggle:empty::after\":false},[\"margin-left:0\"]],[false,{\".dropright .dropdown-menu\":false},[\"top:0\",\"right:auto\",\"left:100%\",\"margin-top:0\",\"margin-left:.125rem\"]],[false,{\".dropright .dropdown-toggle::after\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:.3em solid transparent\",\"border-right:0\",\"border-bottom:.3em solid transparent\",\"border-left:.3em solid\"]],[false,{\".dropright .dropdown-toggle:empty::after\":false},[\"margin-left:0\"]],[false,{\".dropright .dropdown-toggle::after\":false},[\"vertical-align:0\"]],[false,{\".dropleft .dropdown-menu\":false},[\"top:0\",\"right:100%\",\"left:auto\",\"margin-top:0\",\"margin-right:.125rem\"]],[false,{\".dropleft .dropdown-toggle::after\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\"]],[false,{\".dropleft .dropdown-toggle::after\":false},[\"display:none\"]],[false,{\".dropleft .dropdown-toggle::before\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-right:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:.3em solid transparent\",\"border-right:.3em solid\",\"border-bottom:.3em solid transparent\"]],[false,{\".dropleft .dropdown-toggle:empty::after\":false},[\"margin-left:0\"]],[false,{\".dropleft .dropdown-toggle::before\":false},[\"vertical-align:0\"]],[false,{\".dropdown-menu[x-placement^=bottom]\":false,\".dropdown-menu[x-placement^=left]\":false,\".dropdown-menu[x-placement^=right]\":false,\".dropdown-menu[x-placement^=top]\":false},[\"right:auto\",\"bottom:auto\"]],[false,{\".dropdown-divider\":false},[\"height:0\",\"margin:.5rem 0\",\"overflow:hidden\",\"border-top:1px solid #e9ecef\"]],[false,{\".dropdown-item\":false},[\"display:block\",\"width:100%\",\"padding:.25rem 1.5rem\",\"clear:both\",\"font-weight:400\",\"color:#212529\",\"text-align:inherit\",\"white-space:nowrap\",\"background-color:transparent\",\"border:0\"]],[false,{\".dropdown-item:focus\":false,\".dropdown-item:hover\":false},[\"color:#16181b\",\"text-decoration:none\",\"background-color:#f8f9fa\"]],[false,{\".dropdown-item.active\":false,\".dropdown-item:active\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#007bff\"]],[false,{\".dropdown-item.disabled\":false,\".dropdown-item:disabled\":false},[\"color:#6c757d\",\"background-color:transparent\"]],[false,{\".dropdown-menu.show\":false},[\"display:block\"]],[false,{\".dropdown-header\":false},[\"display:block\",\"padding:.5rem 1.5rem\",\"margin-bottom:0\",\"font-size:.875rem\",\"color:#6c757d\",\"white-space:nowrap\"]],[false,{\".dropdown-item-text\":false},[\"display:block\",\"padding:.25rem 1.5rem\",\"color:#212529\"]],[false,{\".btn-group\":false,\".btn-group-vertical\":false},[\"position:relative\",\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"vertical-align:middle\"]],[false,{\".btn-group-vertical>.btn\":false,\".btn-group>.btn\":false},[\"position:relative\",\"-ms-flex:0 1 auto\",\"flex:0 1 auto\"]],[false,{\".btn-group-vertical>.btn:hover\":false,\".btn-group>.btn:hover\":false},[\"z-index:1\"]],[false,{\".btn-group-vertical>.btn.active\":false,\".btn-group-vertical>.btn:active\":false,\".btn-group-vertical>.btn:focus\":false,\".btn-group>.btn.active\":false,\".btn-group>.btn:active\":false,\".btn-group>.btn:focus\":false},[\"z-index:1\"]],[false,{\".btn-group .btn+.btn\":false,\".btn-group .btn+.btn-group\":false,\".btn-group .btn-group+.btn\":false,\".btn-group .btn-group+.btn-group\":false,\".btn-group-vertical .btn+.btn\":false,\".btn-group-vertical .btn+.btn-group\":false,\".btn-group-vertical .btn-group+.btn\":false,\".btn-group-vertical .btn-group+.btn-group\":false},[\"margin-left:-1px\"]],[false,{\".btn-toolbar\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".btn-toolbar .input-group\":false},[\"width:auto\"]],[false,{\".btn-group>.btn:first-child\":false},[\"margin-left:0\"]],[false,{\".btn-group>.btn-group:not(:last-child)>.btn\":false,\".btn-group>.btn:not(:last-child):not(.dropdown-toggle)\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".btn-group>.btn-group:not(:first-child)>.btn\":false,\".btn-group>.btn:not(:first-child)\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".dropdown-toggle-split\":false},[\"padding-right:.5625rem\",\"padding-left:.5625rem\"]],[false,{\".dropdown-toggle-split::after\":false,\".dropright .dropdown-toggle-split::after\":false,\".dropup .dropdown-toggle-split::after\":false},[\"margin-left:0\"]],[false,{\".dropleft .dropdown-toggle-split::before\":false},[\"margin-right:0\"]],[false,{\".btn-group-sm>.btn+.dropdown-toggle-split\":false,\".btn-sm+.dropdown-toggle-split\":false},[\"padding-right:.375rem\",\"padding-left:.375rem\"]],[false,{\".btn-group-lg>.btn+.dropdown-toggle-split\":false,\".btn-lg+.dropdown-toggle-split\":false},[\"padding-right:.75rem\",\"padding-left:.75rem\"]],[false,{\".btn-group-vertical\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\",\"-ms-flex-align:start\",\"align-items:flex-start\",\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".btn-group-vertical .btn\":false,\".btn-group-vertical .btn-group\":false},[\"width:100%\"]],[false,{\".btn-group-vertical>.btn+.btn\":false,\".btn-group-vertical>.btn+.btn-group\":false,\".btn-group-vertical>.btn-group+.btn\":false,\".btn-group-vertical>.btn-group+.btn-group\":false},[\"margin-top:-1px\",\"margin-left:0\"]],[false,{\".btn-group-vertical>.btn-group:not(:last-child)>.btn\":false,\".btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle)\":false},[\"border-bottom-right-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".btn-group-vertical>.btn-group:not(:first-child)>.btn\":false,\".btn-group-vertical>.btn:not(:first-child)\":false},[\"border-top-left-radius:0\",\"border-top-right-radius:0\"]],[false,{\".btn-group-toggle>.btn\":false,\".btn-group-toggle>.btn-group>.btn\":false},[\"margin-bottom:0\"]],[false,{\".btn-group-toggle>.btn input[type=checkbox]\":false,\".btn-group-toggle>.btn input[type=radio]\":false,\".btn-group-toggle>.btn-group>.btn input[type=checkbox]\":false,\".btn-group-toggle>.btn-group>.btn input[type=radio]\":false},[\"position:absolute\",\"clip:rect(0,0,0,0)\",\"pointer-events:none\"]],[false,{\".input-group\":false},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-align:stretch\",\"align-items:stretch\",\"width:100%\"]],[false,{\".input-group>.custom-file\":false,\".input-group>.custom-select\":false,\".input-group>.form-control\":false},[\"position:relative\",\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"width:1%\",\"margin-bottom:0\"]],[false,{\".input-group>.custom-file+.custom-file\":false,\".input-group>.custom-file+.custom-select\":false,\".input-group>.custom-file+.form-control\":false,\".input-group>.custom-select+.custom-file\":false,\".input-group>.custom-select+.custom-select\":false,\".input-group>.custom-select+.form-control\":false,\".input-group>.form-control+.custom-file\":false,\".input-group>.form-control+.custom-select\":false,\".input-group>.form-control+.form-control\":false},[\"margin-left:-1px\"]],[false,{\".input-group>.custom-file .custom-file-input:focus~.custom-file-label\":false,\".input-group>.custom-select:focus\":false,\".input-group>.form-control:focus\":false},[\"z-index:3\"]],[false,{\".input-group>.custom-file .custom-file-input:focus\":false},[\"z-index:4\"]],[false,{\".input-group>.custom-select:not(:last-child)\":false,\".input-group>.form-control:not(:last-child)\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".input-group>.custom-select:not(:first-child)\":false,\".input-group>.form-control:not(:first-child)\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".input-group>.custom-file\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".input-group>.custom-file:not(:last-child) .custom-file-label\":false,\".input-group>.custom-file:not(:last-child) .custom-file-label::after\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".input-group>.custom-file:not(:first-child) .custom-file-label\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".input-group-append\":false,\".input-group-prepend\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".input-group-append .btn\":false,\".input-group-prepend .btn\":false},[\"position:relative\",\"z-index:2\"]],[false,{\".input-group-append .btn+.btn\":false,\".input-group-append .btn+.input-group-text\":false,\".input-group-append .input-group-text+.btn\":false,\".input-group-append .input-group-text+.input-group-text\":false,\".input-group-prepend .btn+.btn\":false,\".input-group-prepend .btn+.input-group-text\":false,\".input-group-prepend .input-group-text+.btn\":false,\".input-group-prepend .input-group-text+.input-group-text\":false},[\"margin-left:-1px\"]],[false,{\".input-group-prepend\":false},[\"margin-right:-1px\"]],[false,{\".input-group-append\":false},[\"margin-left:-1px\"]],[false,{\".input-group-text\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"padding:.375rem .75rem\",\"margin-bottom:0\",\"font-size:1rem\",\"font-weight:400\",\"line-height:1.5\",\"color:#495057\",\"text-align:center\",\"white-space:nowrap\",\"background-color:#e9ecef\",\"border:1px solid #ced4da\",\"border-radius:.25rem\"]],[false,{\".input-group-text input[type=checkbox]\":false,\".input-group-text input[type=radio]\":false},[\"margin-top:0\"]],[false,{\".input-group-lg>.form-control\":false,\".input-group-lg>.input-group-append>.btn\":false,\".input-group-lg>.input-group-append>.input-group-text\":false,\".input-group-lg>.input-group-prepend>.btn\":false,\".input-group-lg>.input-group-prepend>.input-group-text\":false},[\"height:calc(2.875rem + 2px)\",\"padding:.5rem 1rem\",\"font-size:1.25rem\",\"line-height:1.5\",\"border-radius:.3rem\"]],[false,{\".input-group-sm>.form-control\":false,\".input-group-sm>.input-group-append>.btn\":false,\".input-group-sm>.input-group-append>.input-group-text\":false,\".input-group-sm>.input-group-prepend>.btn\":false,\".input-group-sm>.input-group-prepend>.input-group-text\":false},[\"height:calc(1.8125rem + 2px)\",\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\",\"border-radius:.2rem\"]],[false,{\".input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle)\":false,\".input-group>.input-group-append:last-child>.input-group-text:not(:last-child)\":false,\".input-group>.input-group-append:not(:last-child)>.btn\":false,\".input-group>.input-group-append:not(:last-child)>.input-group-text\":false,\".input-group>.input-group-prepend>.btn\":false,\".input-group>.input-group-prepend>.input-group-text\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".input-group>.input-group-append>.btn\":false,\".input-group>.input-group-append>.input-group-text\":false,\".input-group>.input-group-prepend:first-child>.btn:not(:first-child)\":false,\".input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child)\":false,\".input-group>.input-group-prepend:not(:first-child)>.btn\":false,\".input-group>.input-group-prepend:not(:first-child)>.input-group-text\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".custom-control\":false},[\"position:relative\",\"display:block\",\"min-height:1.5rem\",\"padding-left:1.5rem\"]],[false,{\".custom-control-inline\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"margin-right:1rem\"]],[false,{\".custom-control-input\":false},[\"position:absolute\",\"z-index:-1\",\"opacity:0\"]],[false,{\".custom-control-input:checked~.custom-control-label::before\":false},[\"color:#fff\",\"background-color:#007bff\"]],[false,{\".custom-control-input:focus~.custom-control-label::before\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-control-input:active~.custom-control-label::before\":false},[\"color:#fff\",\"background-color:#b3d7ff\"]],[false,{\".custom-control-input:disabled~.custom-control-label\":false},[\"color:#6c757d\"]],[false,{\".custom-control-input:disabled~.custom-control-label::before\":false},[\"background-color:#e9ecef\"]],[false,{\".custom-control-label\":false},[\"position:relative\",\"margin-bottom:0\"]],[false,{\".custom-control-label::before\":false},[\"position:absolute\",\"top:.25rem\",\"left:-1.5rem\",\"display:block\",\"width:1rem\",\"height:1rem\",\"pointer-events:none\",\"content:\\\"\\\"\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\",\"background-color:#dee2e6\"]],[false,{\".custom-control-label::after\":false},[\"position:absolute\",\"top:.25rem\",\"left:-1.5rem\",\"display:block\",\"width:1rem\",\"height:1rem\",\"content:\\\"\\\"\",\"background-repeat:no-repeat\",\"background-position:center center\",\"background-size:50% 50%\"]],[false,{\".custom-checkbox .custom-control-label::before\":false},[\"border-radius:.25rem\"]],[false,{\".custom-checkbox .custom-control-input:checked~.custom-control-label::before\":false},[\"background-color:#007bff\"]],[false,{\".custom-checkbox .custom-control-input:checked~.custom-control-label::after\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'0 0 8 8\\\\\'%3E%3Cpath fill=\\\\\'%23fff\\\\\' d=\\\\\'M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before\":false},[\"background-color:#007bff\"]],[false,{\".custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'0 0 4 4\\\\\'%3E%3Cpath stroke=\\\\\'%23fff\\\\\' d=\\\\\'M0 2h4\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before\":false},[\"background-color:rgba(0,123,255,.5)\"]],[false,{\".custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before\":false},[\"background-color:rgba(0,123,255,.5)\"]],[false,{\".custom-radio .custom-control-label::before\":false},[\"border-radius:50%\"]],[false,{\".custom-radio .custom-control-input:checked~.custom-control-label::before\":false},[\"background-color:#007bff\"]],[false,{\".custom-radio .custom-control-input:checked~.custom-control-label::after\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'-4 -4 8 8\\\\\'%3E%3Ccircle r=\\\\\'3\\\\\' fill=\\\\\'%23fff\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".custom-radio .custom-control-input:disabled:checked~.custom-control-label::before\":false},[\"background-color:rgba(0,123,255,.5)\"]],[false,{\".custom-select\":false},[\"display:inline-block\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"padding:.375rem 1.75rem .375rem .75rem\",\"line-height:1.5\",\"color:#495057\",\"vertical-align:middle\",\"background:#fff url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'0 0 4 5\\\\\'%3E%3Cpath fill=\\\\\'%23343a40\\\\\' d=\\\\\'M2 0L0 2h4zm0 5L0 3h4z\\\\\'\\/%3E%3C\\/svg%3E\\\") no-repeat right .75rem center\",\"background-size:8px 10px\",\"border:1px solid #ced4da\",\"border-radius:.25rem\",\"-webkit-appearance:none\",\"-moz-appearance:none\",\"appearance:none\"]],[false,{\".custom-select:focus\":false},[\"border-color:#80bdff\",\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(128,189,255,.5)\"]],[false,{\".custom-select:focus::-ms-value\":false},[\"color:#495057\",\"background-color:#fff\"]],[false,{\".custom-select[multiple]\":false,\".custom-select[size]:not([size=\\\"1\\\"])\":false},[\"height:auto\",\"padding-right:.75rem\",\"background-image:none\"]],[false,{\".custom-select:disabled\":false},[\"color:#6c757d\",\"background-color:#e9ecef\"]],[false,{\".custom-select::-ms-expand\":false},[\"opacity:0\"]],[false,{\".custom-select-sm\":false},[\"height:calc(1.8125rem + 2px)\",\"padding-top:.375rem\",\"padding-bottom:.375rem\",\"font-size:75%\"]],[false,{\".custom-select-lg\":false},[\"height:calc(2.875rem + 2px)\",\"padding-top:.375rem\",\"padding-bottom:.375rem\",\"font-size:125%\"]],[false,{\".custom-file\":false},[\"position:relative\",\"display:inline-block\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"margin-bottom:0\"]],[false,{\".custom-file-input\":false},[\"position:relative\",\"z-index:2\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"margin:0\",\"opacity:0\"]],[false,{\".custom-file-input:focus~.custom-file-label\":false},[\"border-color:#80bdff\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-file-input:focus~.custom-file-label::after\":false},[\"border-color:#80bdff\"]],[false,{\".custom-file-input:disabled~.custom-file-label\":false},[\"background-color:#e9ecef\"]],[false,{\".custom-file-input:lang(en)~.custom-file-label::after\":false},[\"content:\\\"Browse\\\"\"]],[false,{\".custom-file-label\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"left:0\",\"z-index:1\",\"height:calc(2.25rem + 2px)\",\"padding:.375rem .75rem\",\"line-height:1.5\",\"color:#495057\",\"background-color:#fff\",\"border:1px solid #ced4da\",\"border-radius:.25rem\"]],[false,{\".custom-file-label::after\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"z-index:3\",\"display:block\",\"height:2.25rem\",\"padding:.375rem .75rem\",\"line-height:1.5\",\"color:#495057\",\"content:\\\"Browse\\\"\",\"background-color:#e9ecef\",\"border-left:1px solid #ced4da\",\"border-radius:0 .25rem .25rem 0\"]],[false,{\".custom-range\":false},[\"width:100%\",\"padding-left:0\",\"background-color:transparent\",\"-webkit-appearance:none\",\"-moz-appearance:none\",\"appearance:none\"]],[false,{\".custom-range:focus\":false},[\"outline:0\"]],[false,{\".custom-range:focus::-webkit-slider-thumb\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-range:focus::-moz-range-thumb\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-range:focus::-ms-thumb\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-range::-moz-focus-outer\":false},[\"border:0\"]],[false,{\".custom-range::-webkit-slider-thumb\":false},[\"width:1rem\",\"height:1rem\",\"margin-top:-.25rem\",\"background-color:#007bff\",\"border:0\",\"border-radius:1rem\",\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\",\"-webkit-appearance:none\",\"appearance:none\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-range::-webkit-slider-thumb\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".custom-range::-webkit-slider-thumb:active\":false},[\"background-color:#b3d7ff\"]],[false,{\".custom-range::-webkit-slider-runnable-track\":false},[\"width:100%\",\"height:.5rem\",\"color:transparent\",\"cursor:pointer\",\"background-color:#dee2e6\",\"border-color:transparent\",\"border-radius:1rem\"]],[false,{\".custom-range::-moz-range-thumb\":false},[\"width:1rem\",\"height:1rem\",\"background-color:#007bff\",\"border:0\",\"border-radius:1rem\",\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\",\"-moz-appearance:none\",\"appearance:none\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-range::-moz-range-thumb\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".custom-range::-moz-range-thumb:active\":false},[\"background-color:#b3d7ff\"]],[false,{\".custom-range::-moz-range-track\":false},[\"width:100%\",\"height:.5rem\",\"color:transparent\",\"cursor:pointer\",\"background-color:#dee2e6\",\"border-color:transparent\",\"border-radius:1rem\"]],[false,{\".custom-range::-ms-thumb\":false},[\"width:1rem\",\"height:1rem\",\"margin-top:0\",\"margin-right:.2rem\",\"margin-left:.2rem\",\"background-color:#007bff\",\"border:0\",\"border-radius:1rem\",\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\",\"appearance:none\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-range::-ms-thumb\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".custom-range::-ms-thumb:active\":false},[\"background-color:#b3d7ff\"]],[false,{\".custom-range::-ms-track\":false},[\"width:100%\",\"height:.5rem\",\"color:transparent\",\"cursor:pointer\",\"background-color:transparent\",\"border-color:transparent\",\"border-width:.5rem\"]],[false,{\".custom-range::-ms-fill-lower\":false},[\"background-color:#dee2e6\",\"border-radius:1rem\"]],[false,{\".custom-range::-ms-fill-upper\":false},[\"margin-right:15px\",\"background-color:#dee2e6\",\"border-radius:1rem\"]],[false,{\".custom-control-label::before\":false,\".custom-file-label\":false,\".custom-select\":false},[\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-control-label::before\":false,\".custom-file-label\":false,\".custom-select\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".nav\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"padding-left:0\",\"margin-bottom:0\",\"list-style:none\"]],[true,{\".nav-link\":true},[\"display:block\",\"padding:.5rem 1rem\"]],[true,{\".nav-link:focus\":true,\".nav-link:hover\":true},[\"text-decoration:none\"]],[false,{\".nav-link.disabled\":false},[\"color:#6c757d\"]],[false,{\".nav-tabs\":false},[\"border-bottom:1px solid #dee2e6\"]],[false,{\".nav-tabs .nav-item\":false},[\"margin-bottom:-1px\"]],[false,{\".nav-tabs .nav-link\":false},[\"border:1px solid transparent\",\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".nav-tabs .nav-link:focus\":false,\".nav-tabs .nav-link:hover\":false},[\"border-color:#e9ecef #e9ecef #dee2e6\"]],[false,{\".nav-tabs .nav-link.disabled\":false},[\"color:#6c757d\",\"background-color:transparent\",\"border-color:transparent\"]],[false,{\".nav-tabs .nav-item.show .nav-link\":false,\".nav-tabs .nav-link.active\":false},[\"color:#495057\",\"background-color:#fff\",\"border-color:#dee2e6 #dee2e6 #fff\"]],[false,{\".nav-tabs .dropdown-menu\":false},[\"margin-top:-1px\",\"border-top-left-radius:0\",\"border-top-right-radius:0\"]],[false,{\".nav-pills .nav-link\":false},[\"border-radius:.25rem\"]],[false,{\".nav-pills .nav-link.active\":false,\".nav-pills .show>.nav-link\":false},[\"color:#fff\",\"background-color:#007bff\"]],[false,{\".nav-fill .nav-item\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"text-align:center\"]],[false,{\".nav-justified .nav-item\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"text-align:center\"]],[false,{\".tab-content>.tab-pane\":false},[\"display:none\"]],[false,{\".tab-content>.active\":false},[\"display:block\"]],[true,{\".navbar\":true},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"padding:.5rem 1rem\"]],[true,{\".navbar>.container\":true,\".navbar>.container-fluid\":true},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".navbar-brand\":false},[\"display:inline-block\",\"padding-top:.3125rem\",\"padding-bottom:.3125rem\",\"margin-right:1rem\",\"font-size:1.25rem\",\"line-height:inherit\",\"white-space:nowrap\"]],[false,{\".navbar-brand:focus\":false,\".navbar-brand:hover\":false},[\"text-decoration:none\"]],[true,{\".navbar-nav\":true},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"padding-left:0\",\"margin-bottom:0\",\"list-style:none\"]],[true,{\".navbar-nav .nav-link\":true},[\"padding-right:0\",\"padding-left:0\"]],[true,{\".navbar-nav .dropdown-menu\":true},[\"position:static\",\"float:none\"]],[false,{\".navbar-text\":false},[\"display:inline-block\",\"padding-top:.5rem\",\"padding-bottom:.5rem\"]],[true,{\".navbar-collapse\":true},[\"-ms-flex-preferred-size:100%\",\"flex-basis:100%\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"-ms-flex-align:center\",\"align-items:center\"]],[true,{\".navbar-toggler\":true},[\"padding:.25rem .75rem\",\"font-size:1.25rem\",\"line-height:1\",\"background-color:transparent\",\"border:1px solid transparent\",\"border-radius:.25rem\"]],[true,{\".navbar-toggler:focus\":true,\".navbar-toggler:hover\":true},[\"text-decoration:none\"]],[true,{\".navbar-toggler:not(:disabled):not(.disabled)\":true},[\"cursor:pointer\"]],[false,{\".navbar-toggler-icon\":false},[\"display:inline-block\",\"width:1.5em\",\"height:1.5em\",\"vertical-align:middle\",\"content:\\\"\\\"\",\"background:no-repeat center center\",\"background-size:100% 100%\"]],[false,\"@media (max-width:575.98px){\"],[false,{\".navbar-expand-sm>.container\":false,\".navbar-expand-sm>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,\"}\"],[false,\"@media (min-width:576px){\"],[false,{\".navbar-expand-sm\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand-sm .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand-sm .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand-sm .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand-sm>.container\":false,\".navbar-expand-sm>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand-sm .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand-sm .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand-sm .navbar-toggler\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (max-width:767.98px){\"],[false,{\".navbar-expand-md>.container\":false,\".navbar-expand-md>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".navbar-expand-md\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand-md .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand-md .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand-md .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand-md>.container\":false,\".navbar-expand-md>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand-md .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand-md .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand-md .navbar-toggler\":false},[\"display:none\"]],[false,\"}\"],[true,\"@media (max-width:991.98px){\"],[true,{\".navbar-expand-lg>.container\":true,\".navbar-expand-lg>.container-fluid\":true},[\"padding-right:0\",\"padding-left:0\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[true,{\".navbar-expand-lg\":true},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[true,{\".navbar-expand-lg .navbar-nav\":true},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[true,{\".navbar-expand-lg .navbar-nav .dropdown-menu\":true},[\"position:absolute\"]],[true,{\".navbar-expand-lg .navbar-nav .nav-link\":true},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[true,{\".navbar-expand-lg>.container\":true,\".navbar-expand-lg>.container-fluid\":true},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[true,{\".navbar-expand-lg .navbar-collapse\":true},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[true,{\".navbar-expand-lg .navbar-collapse:not(#_#_#_#_#_#_#_)\":true},[\"display:-ms-flexbox\",\"display:flex\"]],[true,{\".navbar-expand-lg .navbar-toggler\":true},[\"display:none\"]],[true,\"}\"],[false,\"@media (max-width:1199.98px){\"],[false,{\".navbar-expand-xl>.container\":false,\".navbar-expand-xl>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".navbar-expand-xl\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand-xl .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand-xl .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand-xl .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand-xl>.container\":false,\".navbar-expand-xl>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand-xl .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand-xl .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand-xl .navbar-toggler\":false},[\"display:none\"]],[false,\"}\"],[false,{\".navbar-expand\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand>.container\":false,\".navbar-expand>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,{\".navbar-expand .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand>.container\":false,\".navbar-expand>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand .navbar-toggler\":false},[\"display:none\"]],[false,{\".navbar-light .navbar-brand\":false},[\"color:rgba(0,0,0,.9)\"]],[false,{\".navbar-light .navbar-brand:focus\":false,\".navbar-light .navbar-brand:hover\":false},[\"color:rgba(0,0,0,.9)\"]],[true,{\".navbar-light .navbar-nav .nav-link\":true},[\"color:rgba(0,0,0,.5)\"]],[true,{\".navbar-light .navbar-nav .nav-link:focus\":true,\".navbar-light .navbar-nav .nav-link:hover\":true},[\"color:rgba(0,0,0,.7)\"]],[false,{\".navbar-light .navbar-nav .nav-link.disabled\":false},[\"color:rgba(0,0,0,.3)\"]],[false,{\".navbar-light .navbar-nav .active>.nav-link\":false,\".navbar-light .navbar-nav .nav-link.active\":false,\".navbar-light .navbar-nav .nav-link.show\":false,\".navbar-light .navbar-nav .show>.nav-link\":false},[\"color:rgba(0,0,0,.9)\"]],[true,{\".navbar-light .navbar-toggler\":true},[\"color:rgba(0,0,0,.5)\",\"border-color:rgba(0,0,0,.1)\"]],[false,{\".navbar-light .navbar-toggler-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg viewBox=\\\\\'0 0 30 30\\\\\' xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\'%3E%3Cpath stroke=\\\\\'rgba(0, 0, 0, 0.5)\\\\\' stroke-width=\\\\\'2\\\\\' stroke-linecap=\\\\\'round\\\\\' stroke-miterlimit=\\\\\'10\\\\\' d=\\\\\'M4 7h22M4 15h22M4 23h22\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".navbar-light .navbar-text\":false},[\"color:rgba(0,0,0,.5)\"]],[false,{\".navbar-light .navbar-text a\":false},[\"color:rgba(0,0,0,.9)\"]],[false,{\".navbar-light .navbar-text a:focus\":false,\".navbar-light .navbar-text a:hover\":false},[\"color:rgba(0,0,0,.9)\"]],[false,{\".navbar-dark .navbar-brand\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-brand:focus\":false,\".navbar-dark .navbar-brand:hover\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-nav .nav-link\":false},[\"color:rgba(255,255,255,.5)\"]],[false,{\".navbar-dark .navbar-nav .nav-link:focus\":false,\".navbar-dark .navbar-nav .nav-link:hover\":false},[\"color:rgba(255,255,255,.75)\"]],[false,{\".navbar-dark .navbar-nav .nav-link.disabled\":false},[\"color:rgba(255,255,255,.25)\"]],[false,{\".navbar-dark .navbar-nav .active>.nav-link\":false,\".navbar-dark .navbar-nav .nav-link.active\":false,\".navbar-dark .navbar-nav .nav-link.show\":false,\".navbar-dark .navbar-nav .show>.nav-link\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-toggler\":false},[\"color:rgba(255,255,255,.5)\",\"border-color:rgba(255,255,255,.1)\"]],[false,{\".navbar-dark .navbar-toggler-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg viewBox=\\\\\'0 0 30 30\\\\\' xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\'%3E%3Cpath stroke=\\\\\'rgba(255, 255, 255, 0.5)\\\\\' stroke-width=\\\\\'2\\\\\' stroke-linecap=\\\\\'round\\\\\' stroke-miterlimit=\\\\\'10\\\\\' d=\\\\\'M4 7h22M4 15h22M4 23h22\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".navbar-dark .navbar-text\":false},[\"color:rgba(255,255,255,.5)\"]],[false,{\".navbar-dark .navbar-text a\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-text a:focus\":false,\".navbar-dark .navbar-text a:hover\":false},[\"color:#fff\"]],[false,{\".card\":false},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"min-width:0\",\"word-wrap:break-word\",\"background-color:#fff\",\"background-clip:border-box\",\"border:1px solid rgba(0,0,0,.125)\",\"border-radius:.25rem\"]],[false,{\".card>hr\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".card>.list-group:first-child .list-group-item:first-child\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".card>.list-group:last-child .list-group-item:last-child\":false},[\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".card-body\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"padding:1.25rem\"]],[false,{\".card-title\":false},[\"margin-bottom:.75rem\"]],[false,{\".card-subtitle\":false},[\"margin-top:-.375rem\",\"margin-bottom:0\"]],[false,{\".card-text:last-child\":false},[\"margin-bottom:0\"]],[false,{\".card-link:hover\":false},[\"text-decoration:none\"]],[false,{\".card-link+.card-link\":false},[\"margin-left:1.25rem\"]],[false,{\".card-header\":false},[\"padding:.75rem 1.25rem\",\"margin-bottom:0\",\"background-color:rgba(0,0,0,.03)\",\"border-bottom:1px solid rgba(0,0,0,.125)\"]],[false,{\".card-header:first-child\":false},[\"border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0\"]],[false,{\".card-header+.list-group .list-group-item:first-child\":false},[\"border-top:0\"]],[false,{\".card-footer\":false},[\"padding:.75rem 1.25rem\",\"background-color:rgba(0,0,0,.03)\",\"border-top:1px solid rgba(0,0,0,.125)\"]],[false,{\".card-footer:last-child\":false},[\"border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)\"]],[false,{\".card-header-tabs\":false},[\"margin-right:-.625rem\",\"margin-bottom:-.75rem\",\"margin-left:-.625rem\",\"border-bottom:0\"]],[false,{\".card-header-pills\":false},[\"margin-right:-.625rem\",\"margin-left:-.625rem\"]],[false,{\".card-img-overlay\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"padding:1.25rem\"]],[false,{\".card-img\":false},[\"width:100%\",\"border-radius:calc(.25rem - 1px)\"]],[false,{\".card-img-top\":false},[\"width:100%\",\"border-top-left-radius:calc(.25rem - 1px)\",\"border-top-right-radius:calc(.25rem - 1px)\"]],[false,{\".card-img-bottom\":false},[\"width:100%\",\"border-bottom-right-radius:calc(.25rem - 1px)\",\"border-bottom-left-radius:calc(.25rem - 1px)\"]],[false,{\".card-deck\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".card-deck .card\":false},[\"margin-bottom:15px\"]],[false,\"@media (min-width:576px){\"],[false,{\".card-deck\":false},[\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\",\"margin-right:-15px\",\"margin-left:-15px\"]],[false,{\".card-deck .card\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex:1 0 0%\",\"flex:1 0 0%\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"margin-right:15px\",\"margin-bottom:0\",\"margin-left:15px\"]],[false,\"}\"],[false,{\".card-group\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".card-group>.card\":false},[\"margin-bottom:15px\"]],[false,\"@media (min-width:576px){\"],[false,{\".card-group\":false},[\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\"]],[false,{\".card-group>.card\":false},[\"-ms-flex:1 0 0%\",\"flex:1 0 0%\",\"margin-bottom:0\"]],[false,{\".card-group>.card+.card\":false},[\"margin-left:0\",\"border-left:0\"]],[false,{\".card-group>.card:first-child\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".card-group>.card:first-child .card-header\":false,\".card-group>.card:first-child .card-img-top\":false},[\"border-top-right-radius:0\"]],[false,{\".card-group>.card:first-child .card-footer\":false,\".card-group>.card:first-child .card-img-bottom\":false},[\"border-bottom-right-radius:0\"]],[false,{\".card-group>.card:last-child\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".card-group>.card:last-child .card-header\":false,\".card-group>.card:last-child .card-img-top\":false},[\"border-top-left-radius:0\"]],[false,{\".card-group>.card:last-child .card-footer\":false,\".card-group>.card:last-child .card-img-bottom\":false},[\"border-bottom-left-radius:0\"]],[false,{\".card-group>.card:only-child\":false},[\"border-radius:.25rem\"]],[false,{\".card-group>.card:only-child .card-header\":false,\".card-group>.card:only-child .card-img-top\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".card-group>.card:only-child .card-footer\":false,\".card-group>.card:only-child .card-img-bottom\":false},[\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".card-group>.card:not(:first-child):not(:last-child):not(:only-child)\":false},[\"border-radius:0\"]],[false,{\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer\":false,\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header\":false,\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom\":false,\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top\":false},[\"border-radius:0\"]],[false,\"}\"],[false,{\".card-columns .card\":false},[\"margin-bottom:.75rem\"]],[false,\"@media (min-width:576px){\"],[false,{\".card-columns\":false},[\"-webkit-column-count:3\",\"-moz-column-count:3\",\"column-count:3\",\"-webkit-column-gap:1.25rem\",\"-moz-column-gap:1.25rem\",\"column-gap:1.25rem\",\"orphans:1\",\"widows:1\"]],[false,{\".card-columns .card\":false},[\"display:inline-block\",\"width:100%\"]],[false,\"}\"],[false,{\".accordion .card:not(:first-of-type):not(:last-of-type)\":false},[\"border-bottom:0\",\"border-radius:0\"]],[false,{\".accordion .card:not(:first-of-type) .card-header:first-child\":false},[\"border-radius:0\"]],[false,{\".accordion .card:first-of-type\":false},[\"border-bottom:0\",\"border-bottom-right-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".accordion .card:last-of-type\":false},[\"border-top-left-radius:0\",\"border-top-right-radius:0\"]],[false,{\".breadcrumb\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"padding:.75rem 1rem\",\"margin-bottom:1rem\",\"list-style:none\",\"background-color:#e9ecef\",\"border-radius:.25rem\"]],[false,{\".breadcrumb-item+.breadcrumb-item\":false},[\"padding-left:.5rem\"]],[false,{\".breadcrumb-item+.breadcrumb-item::before\":false},[\"display:inline-block\",\"padding-right:.5rem\",\"color:#6c757d\",\"content:\\\"\\/\\\"\"]],[false,{\".breadcrumb-item+.breadcrumb-item:hover::before\":false},[\"text-decoration:underline\"]],[false,{\".breadcrumb-item+.breadcrumb-item:hover::before\":false},[\"text-decoration:none\"]],[false,{\".breadcrumb-item.active\":false},[\"color:#6c757d\"]],[true,{\".pagination\":true},[\"display:-ms-flexbox\",\"display:flex\",\"padding-left:0\",\"list-style:none\",\"border-radius:.25rem\"]],[false,{\".page-link\":false},[\"position:relative\",\"display:block\",\"padding:.5rem .75rem\",\"margin-left:-1px\",\"line-height:1.25\",\"color:#007bff\",\"background-color:#fff\",\"border:1px solid #dee2e6\"]],[false,{\".page-link:hover\":false},[\"z-index:2\",\"color:#0056b3\",\"text-decoration:none\",\"background-color:#e9ecef\",\"border-color:#dee2e6\"]],[false,{\".page-link:focus\":false},[\"z-index:2\",\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".page-link:not(:disabled):not(.disabled)\":false},[\"cursor:pointer\"]],[false,{\".page-item:first-child .page-link\":false},[\"margin-left:0\",\"border-top-left-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".page-item:last-child .page-link\":false},[\"border-top-right-radius:.25rem\",\"border-bottom-right-radius:.25rem\"]],[false,{\".page-item.active .page-link\":false},[\"z-index:1\",\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".page-item.disabled .page-link\":false},[\"color:#6c757d\",\"pointer-events:none\",\"cursor:auto\",\"background-color:#fff\",\"border-color:#dee2e6\"]],[false,{\".pagination-lg .page-link\":false},[\"padding:.75rem 1.5rem\",\"font-size:1.25rem\",\"line-height:1.5\"]],[false,{\".pagination-lg .page-item:first-child .page-link\":false},[\"border-top-left-radius:.3rem\",\"border-bottom-left-radius:.3rem\"]],[false,{\".pagination-lg .page-item:last-child .page-link\":false},[\"border-top-right-radius:.3rem\",\"border-bottom-right-radius:.3rem\"]],[false,{\".pagination-sm .page-link\":false},[\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\"]],[false,{\".pagination-sm .page-item:first-child .page-link\":false},[\"border-top-left-radius:.2rem\",\"border-bottom-left-radius:.2rem\"]],[false,{\".pagination-sm .page-item:last-child .page-link\":false},[\"border-top-right-radius:.2rem\",\"border-bottom-right-radius:.2rem\"]],[false,{\".badge\":false},[\"display:inline-block\",\"padding:.25em .4em\",\"font-size:75%\",\"font-weight:700\",\"line-height:1\",\"text-align:center\",\"white-space:nowrap\",\"vertical-align:baseline\",\"border-radius:.25rem\"]],[false,{\".badge:empty\":false},[\"display:none\"]],[false,{\".btn .badge\":false},[\"position:relative\",\"top:-1px\"]],[false,{\".badge-pill\":false},[\"padding-right:.6em\",\"padding-left:.6em\",\"border-radius:10rem\"]],[false,{\".badge-primary\":false},[\"color:#fff\",\"background-color:#007bff\"]],[false,{\".badge-primary[href]:focus\":false,\".badge-primary[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#0062cc\"]],[false,{\".badge-secondary\":false},[\"color:#fff\",\"background-color:#6c757d\"]],[false,{\".badge-secondary[href]:focus\":false,\".badge-secondary[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#545b62\"]],[false,{\".badge-success\":false},[\"color:#fff\",\"background-color:#28a745\"]],[false,{\".badge-success[href]:focus\":false,\".badge-success[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#1e7e34\"]],[false,{\".badge-info\":false},[\"color:#fff\",\"background-color:#17a2b8\"]],[false,{\".badge-info[href]:focus\":false,\".badge-info[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#117a8b\"]],[false,{\".badge-warning\":false},[\"color:#212529\",\"background-color:#ffc107\"]],[false,{\".badge-warning[href]:focus\":false,\".badge-warning[href]:hover\":false},[\"color:#212529\",\"text-decoration:none\",\"background-color:#d39e00\"]],[false,{\".badge-danger\":false},[\"color:#fff\",\"background-color:#dc3545\"]],[false,{\".badge-danger[href]:focus\":false,\".badge-danger[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#bd2130\"]],[false,{\".badge-light\":false},[\"color:#212529\",\"background-color:#f8f9fa\"]],[false,{\".badge-light[href]:focus\":false,\".badge-light[href]:hover\":false},[\"color:#212529\",\"text-decoration:none\",\"background-color:#dae0e5\"]],[false,{\".badge-dark\":false},[\"color:#fff\",\"background-color:#343a40\"]],[false,{\".badge-dark[href]:focus\":false,\".badge-dark[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#1d2124\"]],[false,{\".jumbotron\":false},[\"padding:2rem 1rem\",\"margin-bottom:2rem\",\"background-color:#e9ecef\",\"border-radius:.3rem\"]],[false,\"@media (min-width:576px){\"],[false,{\".jumbotron\":false},[\"padding:4rem 2rem\"]],[false,\"}\"],[false,{\".jumbotron-fluid\":false},[\"padding-right:0\",\"padding-left:0\",\"border-radius:0\"]],[false,{\".alert\":false},[\"position:relative\",\"padding:.75rem 1.25rem\",\"margin-bottom:1rem\",\"border:1px solid transparent\",\"border-radius:.25rem\"]],[false,{\".alert-heading\":false},[\"color:inherit\"]],[false,{\".alert-link\":false},[\"font-weight:700\"]],[false,{\".alert-dismissible\":false},[\"padding-right:4rem\"]],[false,{\".alert-dismissible .close\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"padding:.75rem 1.25rem\",\"color:inherit\"]],[false,{\".alert-primary\":false},[\"color:#004085\",\"background-color:#cce5ff\",\"border-color:#b8daff\"]],[false,{\".alert-primary hr\":false},[\"border-top-color:#9fcdff\"]],[false,{\".alert-primary .alert-link\":false},[\"color:#002752\"]],[false,{\".alert-secondary\":false},[\"color:#383d41\",\"background-color:#e2e3e5\",\"border-color:#d6d8db\"]],[false,{\".alert-secondary hr\":false},[\"border-top-color:#c8cbcf\"]],[false,{\".alert-secondary .alert-link\":false},[\"color:#202326\"]],[false,{\".alert-success\":false},[\"color:#155724\",\"background-color:#d4edda\",\"border-color:#c3e6cb\"]],[false,{\".alert-success hr\":false},[\"border-top-color:#b1dfbb\"]],[false,{\".alert-success .alert-link\":false},[\"color:#0b2e13\"]],[false,{\".alert-info\":false},[\"color:#0c5460\",\"background-color:#d1ecf1\",\"border-color:#bee5eb\"]],[false,{\".alert-info hr\":false},[\"border-top-color:#abdde5\"]],[false,{\".alert-info .alert-link\":false},[\"color:#062c33\"]],[false,{\".alert-warning\":false},[\"color:#856404\",\"background-color:#fff3cd\",\"border-color:#ffeeba\"]],[false,{\".alert-warning hr\":false},[\"border-top-color:#ffe8a1\"]],[false,{\".alert-warning .alert-link\":false},[\"color:#533f03\"]],[false,{\".alert-danger\":false},[\"color:#721c24\",\"background-color:#f8d7da\",\"border-color:#f5c6cb\"]],[false,{\".alert-danger hr\":false},[\"border-top-color:#f1b0b7\"]],[false,{\".alert-danger .alert-link\":false},[\"color:#491217\"]],[false,{\".alert-light\":false},[\"color:#818182\",\"background-color:#fefefe\",\"border-color:#fdfdfe\"]],[false,{\".alert-light hr\":false},[\"border-top-color:#ececf6\"]],[false,{\".alert-light .alert-link\":false},[\"color:#686868\"]],[false,{\".alert-dark\":false},[\"color:#1b1e21\",\"background-color:#d6d8d9\",\"border-color:#c6c8ca\"]],[false,{\".alert-dark hr\":false},[\"border-top-color:#b9bbbe\"]],[false,{\".alert-dark .alert-link\":false},[\"color:#040505\"]],[true,\"@-webkit-keyframes progress-bar-stripes{\"],[true,\"from{background-position:1rem 0}\"],[true,\"to{background-position:0 0}\"],[true,\"}@keyframes progress-bar-stripes{\"],[true,\"from{background-position:1rem 0}\"],[true,\"to{background-position:0 0}\"],[true,\"}\"],[false,{\".progress\":false},[\"display:-ms-flexbox\",\"display:flex\",\"height:1rem\",\"overflow:hidden\",\"font-size:.75rem\",\"background-color:#e9ecef\",\"border-radius:.25rem\"]],[false,{\".progress-bar\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"-ms-flex-pack:center\",\"justify-content:center\",\"color:#fff\",\"text-align:center\",\"white-space:nowrap\",\"background-color:#007bff\",\"transition:width .6s ease\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".progress-bar\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".progress-bar-striped\":false},[\"background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)\",\"background-size:1rem 1rem\"]],[false,{\".progress-bar-animated\":false},[\"-webkit-animation:progress-bar-stripes 1s linear infinite\",\"animation:progress-bar-stripes 1s linear infinite\"]],[false,{\".media\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".media-body\":false},[\"-ms-flex:1\",\"flex:1\"]],[false,{\".list-group\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"padding-left:0\",\"margin-bottom:0\"]],[false,{\".list-group-item-action\":false},[\"width:100%\",\"color:#495057\",\"text-align:inherit\"]],[false,{\".list-group-item-action:focus\":false,\".list-group-item-action:hover\":false},[\"color:#495057\",\"text-decoration:none\",\"background-color:#f8f9fa\"]],[false,{\".list-group-item-action:active\":false},[\"color:#212529\",\"background-color:#e9ecef\"]],[false,{\".list-group-item\":false},[\"position:relative\",\"display:block\",\"padding:.75rem 1.25rem\",\"margin-bottom:-1px\",\"background-color:#fff\",\"border:1px solid rgba(0,0,0,.125)\"]],[false,{\".list-group-item:first-child\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".list-group-item:last-child\":false},[\"margin-bottom:0\",\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".list-group-item:focus\":false,\".list-group-item:hover\":false},[\"z-index:1\",\"text-decoration:none\"]],[false,{\".list-group-item.disabled\":false,\".list-group-item:disabled\":false},[\"color:#6c757d\",\"background-color:#fff\"]],[false,{\".list-group-item.active\":false},[\"z-index:2\",\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".list-group-flush .list-group-item\":false},[\"border-right:0\",\"border-left:0\",\"border-radius:0\"]],[false,{\".list-group-flush:first-child .list-group-item:first-child\":false},[\"border-top:0\"]],[false,{\".list-group-flush:last-child .list-group-item:last-child\":false},[\"border-bottom:0\"]],[false,{\".list-group-item-primary\":false},[\"color:#004085\",\"background-color:#b8daff\"]],[false,{\".list-group-item-primary.list-group-item-action:focus\":false,\".list-group-item-primary.list-group-item-action:hover\":false},[\"color:#004085\",\"background-color:#9fcdff\"]],[false,{\".list-group-item-primary.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#004085\",\"border-color:#004085\"]],[false,{\".list-group-item-secondary\":false},[\"color:#383d41\",\"background-color:#d6d8db\"]],[false,{\".list-group-item-secondary.list-group-item-action:focus\":false,\".list-group-item-secondary.list-group-item-action:hover\":false},[\"color:#383d41\",\"background-color:#c8cbcf\"]],[false,{\".list-group-item-secondary.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#383d41\",\"border-color:#383d41\"]],[false,{\".list-group-item-success\":false},[\"color:#155724\",\"background-color:#c3e6cb\"]],[false,{\".list-group-item-success.list-group-item-action:focus\":false,\".list-group-item-success.list-group-item-action:hover\":false},[\"color:#155724\",\"background-color:#b1dfbb\"]],[false,{\".list-group-item-success.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#155724\",\"border-color:#155724\"]],[false,{\".list-group-item-info\":false},[\"color:#0c5460\",\"background-color:#bee5eb\"]],[false,{\".list-group-item-info.list-group-item-action:focus\":false,\".list-group-item-info.list-group-item-action:hover\":false},[\"color:#0c5460\",\"background-color:#abdde5\"]],[false,{\".list-group-item-info.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#0c5460\",\"border-color:#0c5460\"]],[false,{\".list-group-item-warning\":false},[\"color:#856404\",\"background-color:#ffeeba\"]],[false,{\".list-group-item-warning.list-group-item-action:focus\":false,\".list-group-item-warning.list-group-item-action:hover\":false},[\"color:#856404\",\"background-color:#ffe8a1\"]],[false,{\".list-group-item-warning.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#856404\",\"border-color:#856404\"]],[false,{\".list-group-item-danger\":false},[\"color:#721c24\",\"background-color:#f5c6cb\"]],[false,{\".list-group-item-danger.list-group-item-action:focus\":false,\".list-group-item-danger.list-group-item-action:hover\":false},[\"color:#721c24\",\"background-color:#f1b0b7\"]],[false,{\".list-group-item-danger.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#721c24\",\"border-color:#721c24\"]],[false,{\".list-group-item-light\":false},[\"color:#818182\",\"background-color:#fdfdfe\"]],[false,{\".list-group-item-light.list-group-item-action:focus\":false,\".list-group-item-light.list-group-item-action:hover\":false},[\"color:#818182\",\"background-color:#ececf6\"]],[false,{\".list-group-item-light.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#818182\",\"border-color:#818182\"]],[false,{\".list-group-item-dark\":false},[\"color:#1b1e21\",\"background-color:#c6c8ca\"]],[false,{\".list-group-item-dark.list-group-item-action:focus\":false,\".list-group-item-dark.list-group-item-action:hover\":false},[\"color:#1b1e21\",\"background-color:#b9bbbe\"]],[false,{\".list-group-item-dark.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#1b1e21\",\"border-color:#1b1e21\"]],[false,{\".close\":false},[\"float:right\",\"font-size:1.5rem\",\"font-weight:700\",\"line-height:1\",\"color:#000\",\"text-shadow:0 1px 0 #fff\",\"opacity:.5\"]],[false,{\".close:not(:disabled):not(.disabled)\":false},[\"cursor:pointer\"]],[false,{\".close:not(:disabled):not(.disabled):focus\":false,\".close:not(:disabled):not(.disabled):hover\":false},[\"color:#000\",\"text-decoration:none\",\"opacity:.75\"]],[false,{\"button.close\":false},[\"padding:0\",\"background-color:transparent\",\"border:0\",\"-webkit-appearance:none\"]],[false,{\".modal-open\":false},[\"overflow:hidden\"]],[false,{\".modal-open .modal\":false},[\"overflow-x:hidden\",\"overflow-y:auto\"]],[false,{\".modal\":false},[\"position:fixed\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"z-index:1050\",\"display:none\",\"overflow:hidden\",\"outline:0\"]],[false,{\".modal-dialog\":false},[\"position:relative\",\"width:auto\",\"margin:.5rem\",\"pointer-events:none\"]],[false,{\".modal.fade .modal-dialog\":false},[\"transition:-webkit-transform .3s ease-out\",\"transition:transform .3s ease-out\",\"transition:transform .3s ease-out,-webkit-transform .3s ease-out\",\"-webkit-transform:translate(0,-25%)\",\"transform:translate(0,-25%)\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".modal.fade .modal-dialog\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".modal.show .modal-dialog\":false},[\"-webkit-transform:translate(0,0)\",\"transform:translate(0,0)\"]],[false,{\".modal-dialog-centered\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"min-height:calc(100% - ( .5rem * 2 ))\"]],[false,{\".modal-dialog-centered::before\":false},[\"display:block\",\"height:calc(100vh - ( .5rem * 2 ))\",\"content:\\\"\\\"\"]],[false,{\".modal-content\":false},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"width:100%\",\"pointer-events:auto\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid rgba(0,0,0,.2)\",\"border-radius:.3rem\",\"outline:0\"]],[false,{\".modal-backdrop\":false},[\"position:fixed\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"z-index:1040\",\"background-color:#000\"]],[false,{\".modal-backdrop.fade\":false},[\"opacity:0\"]],[false,{\".modal-backdrop.show\":false},[\"opacity:.5\"]],[false,{\".modal-header\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:start\",\"align-items:flex-start\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"padding:1rem\",\"border-bottom:1px solid #e9ecef\",\"border-top-left-radius:.3rem\",\"border-top-right-radius:.3rem\"]],[false,{\".modal-header .close\":false},[\"padding:1rem\",\"margin:-1rem -1rem -1rem auto\"]],[false,{\".modal-title\":false},[\"margin-bottom:0\",\"line-height:1.5\"]],[false,{\".modal-body\":false},[\"position:relative\",\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"padding:1rem\"]],[false,{\".modal-footer\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:end\",\"justify-content:flex-end\",\"padding:1rem\",\"border-top:1px solid #e9ecef\"]],[false,{\".modal-footer>:not(:first-child)\":false},[\"margin-left:.25rem\"]],[false,{\".modal-footer>:not(:last-child)\":false},[\"margin-right:.25rem\"]],[false,{\".modal-scrollbar-measure\":false},[\"position:absolute\",\"top:-9999px\",\"width:50px\",\"height:50px\",\"overflow:scroll\"]],[false,\"@media (min-width:576px){\"],[false,{\".modal-dialog\":false},[\"max-width:500px\",\"margin:1.75rem auto\"]],[false,{\".modal-dialog-centered\":false},[\"min-height:calc(100% - ( 1.75rem * 2 ))\"]],[false,{\".modal-dialog-centered::before\":false},[\"height:calc(100vh - ( 1.75rem * 2 ))\"]],[false,{\".modal-sm\":false},[\"max-width:300px\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".modal-lg\":false},[\"max-width:800px\"]],[false,\"}\"],[false,{\".tooltip\":false},[\"position:absolute\",\"z-index:1070\",\"display:block\",\"margin:0\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"font-style:normal\",\"font-weight:400\",\"line-height:1.5\",\"text-align:left\",\"text-align:start\",\"text-decoration:none\",\"text-shadow:none\",\"text-transform:none\",\"letter-spacing:normal\",\"word-break:normal\",\"word-spacing:normal\",\"white-space:normal\",\"line-break:auto\",\"font-size:.875rem\",\"word-wrap:break-word\",\"opacity:0\"]],[false,{\".tooltip.show\":false},[\"opacity:.9\"]],[false,{\".tooltip .arrow\":false},[\"position:absolute\",\"display:block\",\"width:.8rem\",\"height:.4rem\"]],[false,{\".tooltip .arrow::before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"border-color:transparent\",\"border-style:solid\"]],[false,{\".bs-tooltip-auto[x-placement^=top]\":false,\".bs-tooltip-top\":false},[\"padding:.4rem 0\"]],[false,{\".bs-tooltip-auto[x-placement^=top] .arrow\":false,\".bs-tooltip-top .arrow\":false},[\"bottom:0\"]],[false,{\".bs-tooltip-auto[x-placement^=top] .arrow::before\":false,\".bs-tooltip-top .arrow::before\":false},[\"top:0\",\"border-width:.4rem .4rem 0\",\"border-top-color:#000\"]],[false,{\".bs-tooltip-auto[x-placement^=right]\":false,\".bs-tooltip-right\":false},[\"padding:0 .4rem\"]],[false,{\".bs-tooltip-auto[x-placement^=right] .arrow\":false,\".bs-tooltip-right .arrow\":false},[\"left:0\",\"width:.4rem\",\"height:.8rem\"]],[false,{\".bs-tooltip-auto[x-placement^=right] .arrow::before\":false,\".bs-tooltip-right .arrow::before\":false},[\"right:0\",\"border-width:.4rem .4rem .4rem 0\",\"border-right-color:#000\"]],[false,{\".bs-tooltip-auto[x-placement^=bottom]\":false,\".bs-tooltip-bottom\":false},[\"padding:.4rem 0\"]],[false,{\".bs-tooltip-auto[x-placement^=bottom] .arrow\":false,\".bs-tooltip-bottom .arrow\":false},[\"top:0\"]],[false,{\".bs-tooltip-auto[x-placement^=bottom] .arrow::before\":false,\".bs-tooltip-bottom .arrow::before\":false},[\"bottom:0\",\"border-width:0 .4rem .4rem\",\"border-bottom-color:#000\"]],[false,{\".bs-tooltip-auto[x-placement^=left]\":false,\".bs-tooltip-left\":false},[\"padding:0 .4rem\"]],[false,{\".bs-tooltip-auto[x-placement^=left] .arrow\":false,\".bs-tooltip-left .arrow\":false},[\"right:0\",\"width:.4rem\",\"height:.8rem\"]],[false,{\".bs-tooltip-auto[x-placement^=left] .arrow::before\":false,\".bs-tooltip-left .arrow::before\":false},[\"left:0\",\"border-width:.4rem 0 .4rem .4rem\",\"border-left-color:#000\"]],[false,{\".tooltip-inner\":false},[\"max-width:200px\",\"padding:.25rem .5rem\",\"color:#fff\",\"text-align:center\",\"background-color:#000\",\"border-radius:.25rem\"]],[false,{\".popover\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"z-index:1060\",\"display:block\",\"max-width:276px\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"font-style:normal\",\"font-weight:400\",\"line-height:1.5\",\"text-align:left\",\"text-align:start\",\"text-decoration:none\",\"text-shadow:none\",\"text-transform:none\",\"letter-spacing:normal\",\"word-break:normal\",\"word-spacing:normal\",\"white-space:normal\",\"line-break:auto\",\"font-size:.875rem\",\"word-wrap:break-word\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid rgba(0,0,0,.2)\",\"border-radius:.3rem\"]],[false,{\".popover .arrow\":false},[\"position:absolute\",\"display:block\",\"width:1rem\",\"height:.5rem\",\"margin:0 .3rem\"]],[false,{\".popover .arrow::after\":false,\".popover .arrow::before\":false},[\"position:absolute\",\"display:block\",\"content:\\\"\\\"\",\"border-color:transparent\",\"border-style:solid\"]],[false,{\".bs-popover-auto[x-placement^=top]\":false,\".bs-popover-top\":false},[\"margin-bottom:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow\":false,\".bs-popover-top .arrow\":false},[\"bottom:calc(( .5rem + 1px ) * -1)\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow::after\":false,\".bs-popover-auto[x-placement^=top] .arrow::before\":false,\".bs-popover-top .arrow::after\":false,\".bs-popover-top .arrow::before\":false},[\"border-width:.5rem .5rem 0\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow::before\":false,\".bs-popover-top .arrow::before\":false},[\"bottom:0\",\"border-top-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow::after\":false,\".bs-popover-top .arrow::after\":false},[\"bottom:1px\",\"border-top-color:#fff\"]],[false,{\".bs-popover-auto[x-placement^=right]\":false,\".bs-popover-right\":false},[\"margin-left:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow\":false,\".bs-popover-right .arrow\":false},[\"left:calc(( .5rem + 1px ) * -1)\",\"width:.5rem\",\"height:1rem\",\"margin:.3rem 0\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow::after\":false,\".bs-popover-auto[x-placement^=right] .arrow::before\":false,\".bs-popover-right .arrow::after\":false,\".bs-popover-right .arrow::before\":false},[\"border-width:.5rem .5rem .5rem 0\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow::before\":false,\".bs-popover-right .arrow::before\":false},[\"left:0\",\"border-right-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow::after\":false,\".bs-popover-right .arrow::after\":false},[\"left:1px\",\"border-right-color:#fff\"]],[false,{\".bs-popover-auto[x-placement^=bottom]\":false,\".bs-popover-bottom\":false},[\"margin-top:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow\":false,\".bs-popover-bottom .arrow\":false},[\"top:calc(( .5rem + 1px ) * -1)\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow::after\":false,\".bs-popover-auto[x-placement^=bottom] .arrow::before\":false,\".bs-popover-bottom .arrow::after\":false,\".bs-popover-bottom .arrow::before\":false},[\"border-width:0 .5rem .5rem .5rem\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow::before\":false,\".bs-popover-bottom .arrow::before\":false},[\"top:0\",\"border-bottom-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow::after\":false,\".bs-popover-bottom .arrow::after\":false},[\"top:1px\",\"border-bottom-color:#fff\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .popover-header::before\":false,\".bs-popover-bottom .popover-header::before\":false},[\"position:absolute\",\"top:0\",\"left:50%\",\"display:block\",\"width:1rem\",\"margin-left:-.5rem\",\"content:\\\"\\\"\",\"border-bottom:1px solid #f7f7f7\"]],[false,{\".bs-popover-auto[x-placement^=left]\":false,\".bs-popover-left\":false},[\"margin-right:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow\":false,\".bs-popover-left .arrow\":false},[\"right:calc(( .5rem + 1px ) * -1)\",\"width:.5rem\",\"height:1rem\",\"margin:.3rem 0\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow::after\":false,\".bs-popover-auto[x-placement^=left] .arrow::before\":false,\".bs-popover-left .arrow::after\":false,\".bs-popover-left .arrow::before\":false},[\"border-width:.5rem 0 .5rem .5rem\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow::before\":false,\".bs-popover-left .arrow::before\":false},[\"right:0\",\"border-left-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow::after\":false,\".bs-popover-left .arrow::after\":false},[\"right:1px\",\"border-left-color:#fff\"]],[false,{\".popover-header\":false},[\"padding:.5rem .75rem\",\"margin-bottom:0\",\"font-size:1rem\",\"color:inherit\",\"background-color:#f7f7f7\",\"border-bottom:1px solid #ebebeb\",\"border-top-left-radius:calc(.3rem - 1px)\",\"border-top-right-radius:calc(.3rem - 1px)\"]],[false,{\".popover-header:empty\":false},[\"display:none\"]],[false,{\".popover-body\":false},[\"padding:.5rem .75rem\",\"color:#212529\"]],[false,{\".carousel\":false},[\"position:relative\"]],[false,{\".carousel-inner\":false},[\"position:relative\",\"width:100%\",\"overflow:hidden\"]],[false,{\".carousel-item\":false},[\"position:relative\",\"display:none\",\"-ms-flex-align:center\",\"align-items:center\",\"width:100%\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"-webkit-perspective:1000px\",\"perspective:1000px\"]],[false,{\".carousel-item-next\":false,\".carousel-item-prev\":false,\".carousel-item.active\":false},[\"display:block\",\"transition:-webkit-transform .6s ease\",\"transition:transform .6s ease\",\"transition:transform .6s ease,-webkit-transform .6s ease\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".carousel-item-next\":false,\".carousel-item-prev\":false,\".carousel-item.active\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".carousel-item-next\":false,\".carousel-item-prev\":false},[\"position:absolute\",\"top:0\"]],[false,{\".carousel-item-next.carousel-item-left\":false,\".carousel-item-prev.carousel-item-right\":false},[\"-webkit-transform:translateX(0)\",\"transform:translateX(0)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".carousel-item-next.carousel-item-left\":false,\".carousel-item-prev.carousel-item-right\":false},[\"-webkit-transform:translate3d(0,0,0)\",\"transform:translate3d(0,0,0)\"]],[false,\"}\"],[false,{\".active.carousel-item-right\":false,\".carousel-item-next\":false},[\"-webkit-transform:translateX(100%)\",\"transform:translateX(100%)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".active.carousel-item-right\":false,\".carousel-item-next\":false},[\"-webkit-transform:translate3d(100%,0,0)\",\"transform:translate3d(100%,0,0)\"]],[false,\"}\"],[false,{\".active.carousel-item-left\":false,\".carousel-item-prev\":false},[\"-webkit-transform:translateX(-100%)\",\"transform:translateX(-100%)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".active.carousel-item-left\":false,\".carousel-item-prev\":false},[\"-webkit-transform:translate3d(-100%,0,0)\",\"transform:translate3d(-100%,0,0)\"]],[false,\"}\"],[false,{\".carousel-fade .carousel-item\":false},[\"opacity:0\",\"transition-duration:.6s\",\"transition-property:opacity\"]],[false,{\".carousel-fade .carousel-item-next.carousel-item-left\":false,\".carousel-fade .carousel-item-prev.carousel-item-right\":false,\".carousel-fade .carousel-item.active\":false},[\"opacity:1\"]],[false,{\".carousel-fade .active.carousel-item-left\":false,\".carousel-fade .active.carousel-item-right\":false},[\"opacity:0\"]],[false,{\".carousel-fade .active.carousel-item-left\":false,\".carousel-fade .active.carousel-item-prev\":false,\".carousel-fade .carousel-item-next\":false,\".carousel-fade .carousel-item-prev\":false,\".carousel-fade .carousel-item.active\":false},[\"-webkit-transform:translateX(0)\",\"transform:translateX(0)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".carousel-fade .active.carousel-item-left\":false,\".carousel-fade .active.carousel-item-prev\":false,\".carousel-fade .carousel-item-next\":false,\".carousel-fade .carousel-item-prev\":false,\".carousel-fade .carousel-item.active\":false},[\"-webkit-transform:translate3d(0,0,0)\",\"transform:translate3d(0,0,0)\"]],[false,\"}\"],[false,{\".carousel-control-next\":false,\".carousel-control-prev\":false},[\"position:absolute\",\"top:0\",\"bottom:0\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"width:15%\",\"color:#fff\",\"text-align:center\",\"opacity:.5\"]],[false,{\".carousel-control-next:focus\":false,\".carousel-control-next:hover\":false,\".carousel-control-prev:focus\":false,\".carousel-control-prev:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"outline:0\",\"opacity:.9\"]],[false,{\".carousel-control-prev\":false},[\"left:0\"]],[false,{\".carousel-control-next\":false},[\"right:0\"]],[false,{\".carousel-control-next-icon\":false,\".carousel-control-prev-icon\":false},[\"display:inline-block\",\"width:20px\",\"height:20px\",\"background:transparent no-repeat center center\",\"background-size:100% 100%\"]],[false,{\".carousel-control-prev-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' fill=\\\\\'%23fff\\\\\' viewBox=\\\\\'0 0 8 8\\\\\'%3E%3Cpath d=\\\\\'M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".carousel-control-next-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' fill=\\\\\'%23fff\\\\\' viewBox=\\\\\'0 0 8 8\\\\\'%3E%3Cpath d=\\\\\'M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".carousel-indicators\":false},[\"position:absolute\",\"right:0\",\"bottom:10px\",\"left:0\",\"z-index:15\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-pack:center\",\"justify-content:center\",\"padding-left:0\",\"margin-right:15%\",\"margin-left:15%\",\"list-style:none\"]],[false,{\".carousel-indicators li\":false},[\"position:relative\",\"-ms-flex:0 1 auto\",\"flex:0 1 auto\",\"width:30px\",\"height:3px\",\"margin-right:3px\",\"margin-left:3px\",\"text-indent:-999px\",\"cursor:pointer\",\"background-color:rgba(255,255,255,.5)\"]],[false,{\".carousel-indicators li::before\":false},[\"position:absolute\",\"top:-10px\",\"left:0\",\"display:inline-block\",\"width:100%\",\"height:10px\",\"content:\\\"\\\"\"]],[false,{\".carousel-indicators li::after\":false},[\"position:absolute\",\"bottom:-10px\",\"left:0\",\"display:inline-block\",\"width:100%\",\"height:10px\",\"content:\\\"\\\"\"]],[false,{\".carousel-indicators .active\":false},[\"background-color:#fff\"]],[false,{\".carousel-caption\":false},[\"position:absolute\",\"right:15%\",\"bottom:20px\",\"left:15%\",\"z-index:10\",\"padding-top:20px\",\"padding-bottom:20px\",\"color:#fff\",\"text-align:center\"]],[false,{\".align-baseline:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:baseline\"]],[false,{\".align-top:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:top\"]],[false,{\".align-middle:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:middle\"]],[false,{\".align-bottom:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:bottom\"]],[false,{\".align-text-bottom:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:text-bottom\"]],[false,{\".align-text-top:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:text-top\"]],[false,{\".bg-primary:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#007bff\"]],[false,{\"a.bg-primary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-primary:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-primary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-primary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#0062cc\"]],[false,{\".bg-secondary:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#6c757d\"]],[false,{\"a.bg-secondary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-secondary:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-secondary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-secondary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#545b62\"]],[false,{\".bg-success:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#28a745\"]],[false,{\"a.bg-success:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-success:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-success:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-success:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#1e7e34\"]],[false,{\".bg-info:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#17a2b8\"]],[false,{\"a.bg-info:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-info:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-info:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-info:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#117a8b\"]],[false,{\".bg-warning:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#ffc107\"]],[false,{\"a.bg-warning:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-warning:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-warning:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-warning:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#d39e00\"]],[false,{\".bg-danger:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#dc3545\"]],[false,{\"a.bg-danger:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-danger:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-danger:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-danger:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#bd2130\"]],[true,{\".bg-light:not(#_#_#_#_#_#_#_)\":true},[\"background-color:#f8f9fa\"]],[true,{\"a.bg-light:focus:not(#_#_#_#_#_#_#_#_)\":true,\"a.bg-light:hover:not(#_#_#_#_#_#_#_#_)\":true,\"button.bg-light:focus:not(#_#_#_#_#_#_#_#_)\":true,\"button.bg-light:hover:not(#_#_#_#_#_#_#_#_)\":true},[\"background-color:#dae0e5\"]],[false,{\".bg-dark:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#343a40\"]],[false,{\"a.bg-dark:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-dark:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-dark:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-dark:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#1d2124\"]],[false,{\".bg-white:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#fff\"]],[false,{\".bg-transparent:not(#_#_#_#_#_#_#_)\":false},[\"background-color:transparent\"]],[false,{\".border:not(#_#_#_#_#_#_#_)\":false},[\"border:1px solid #dee2e6\"]],[false,{\".border-top:not(#_#_#_#_#_#_#_)\":false},[\"border-top:1px solid #dee2e6\"]],[false,{\".border-right:not(#_#_#_#_#_#_#_)\":false},[\"border-right:1px solid #dee2e6\"]],[false,{\".border-bottom:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom:1px solid #dee2e6\"]],[false,{\".border-left:not(#_#_#_#_#_#_#_)\":false},[\"border-left:1px solid #dee2e6\"]],[false,{\".border-0:not(#_#_#_#_#_#_#_)\":false},[\"border:0\"]],[false,{\".border-top-0:not(#_#_#_#_#_#_#_)\":false},[\"border-top:0\"]],[false,{\".border-right-0:not(#_#_#_#_#_#_#_)\":false},[\"border-right:0\"]],[false,{\".border-bottom-0:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom:0\"]],[false,{\".border-left-0:not(#_#_#_#_#_#_#_)\":false},[\"border-left:0\"]],[false,{\".border-primary:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#007bff\"]],[false,{\".border-secondary:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#6c757d\"]],[false,{\".border-success:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#28a745\"]],[false,{\".border-info:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#17a2b8\"]],[false,{\".border-warning:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#ffc107\"]],[false,{\".border-danger:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#dc3545\"]],[false,{\".border-light:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#f8f9fa\"]],[false,{\".border-dark:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#343a40\"]],[false,{\".border-white:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#fff\"]],[false,{\".rounded:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:.25rem\"]],[false,{\".rounded-top:not(#_#_#_#_#_#_#_)\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".rounded-right:not(#_#_#_#_#_#_#_)\":false},[\"border-top-right-radius:.25rem\",\"border-bottom-right-radius:.25rem\"]],[false,{\".rounded-bottom:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".rounded-left:not(#_#_#_#_#_#_#_)\":false},[\"border-top-left-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".rounded-circle:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:50%\"]],[false,{\".rounded-0:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[false,{\".clearfix::after\":false},[\"display:block\",\"clear:both\",\"content:\\\"\\\"\"]],[false,{\".d-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"@media (min-width:576px){\"],[false,{\".d-sm-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-sm-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-sm-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-sm-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-sm-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-sm-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-sm-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-sm-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-sm-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".d-md-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-md-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-md-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-md-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-md-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-md-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-md-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-md-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-md-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".d-lg-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-lg-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-lg-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-lg-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-lg-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-lg-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-lg-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-lg-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-lg-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".d-xl-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-xl-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-xl-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-xl-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-xl-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-xl-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-xl-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-xl-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-xl-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media print{\"],[false,{\".d-print-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-print-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-print-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-print-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-print-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-print-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-print-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-print-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-print-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,{\".embed-responsive\":false},[\"position:relative\",\"display:block\",\"width:100%\",\"padding:0\",\"overflow:hidden\"]],[false,{\".embed-responsive::before\":false},[\"display:block\",\"content:\\\"\\\"\"]],[false,{\".embed-responsive .embed-responsive-item\":false,\".embed-responsive embed\":false,\".embed-responsive amp-iframe\":false,\".embed-responsive amp-google-document-embed\":false,\".embed-responsive amp-video\":false,\".embed-responsive amp-youtube\":false},[\"position:absolute\",\"top:0\",\"bottom:0\",\"left:0\",\"width:100%\",\"height:100%\",\"border:0\"]],[false,{\".embed-responsive-21by9::before\":false},[\"padding-top:42.857143%\"]],[false,{\".embed-responsive-16by9::before\":false},[\"padding-top:56.25%\"]],[false,{\".embed-responsive-4by3::before\":false},[\"padding-top:75%\"]],[false,{\".embed-responsive-1by1::before\":false},[\"padding-top:100%\"]],[false,{\".flex-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[true,{\".flex-column-reverse:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[true,{\".align-items-center:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"@media (min-width:576px){\"],[false,{\".flex-sm-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-sm-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-sm-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-sm-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-sm-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-sm-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-sm-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-sm-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-sm-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-sm-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-sm-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-sm-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-sm-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-sm-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-sm-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-sm-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-sm-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-sm-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-sm-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-sm-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-sm-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".flex-md-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-md-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-md-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-md-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-md-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-md-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-md-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-md-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-md-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-md-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-md-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-md-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-md-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-md-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-md-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-md-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-md-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-md-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-md-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-md-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-md-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[true,\"@media (min-width:992px){\"],[true,{\".flex-lg-row:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-lg-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-lg-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-lg-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-lg-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-lg-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-lg-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-lg-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-lg-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-lg-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-lg-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-lg-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-lg-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-lg-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-lg-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-lg-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-lg-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-lg-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-lg-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-lg-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-lg-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[true,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".flex-xl-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-xl-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-xl-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-xl-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-xl-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-xl-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-xl-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-xl-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-xl-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-xl-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-xl-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-xl-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-xl-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-xl-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-xl-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-xl-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-xl-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-xl-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-xl-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-xl-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-xl-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[false,{\".float-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"@media (min-width:576px){\"],[false,{\".float-sm-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-sm-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-sm-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".float-md-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-md-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-md-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".float-lg-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-lg-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-lg-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".float-xl-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-xl-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-xl-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,{\".position-static:not(#_#_#_#_#_#_#_)\":false},[\"position:static\"]],[false,{\".position-relative:not(#_#_#_#_#_#_#_)\":false},[\"position:relative\"]],[false,{\".position-absolute:not(#_#_#_#_#_#_#_)\":false},[\"position:absolute\"]],[false,{\".position-fixed:not(#_#_#_#_#_#_#_)\":false},[\"position:fixed\"]],[false,{\".position-sticky:not(#_#_#_#_#_#_#_)\":false},[\"position:-webkit-sticky\",\"position:sticky\"]],[false,{\".fixed-top\":false},[\"position:fixed\",\"top:0\",\"right:0\",\"left:0\",\"z-index:1030\"]],[false,{\".fixed-bottom\":false},[\"position:fixed\",\"right:0\",\"bottom:0\",\"left:0\",\"z-index:1030\"]],[false,\"@supports ((position:-webkit-sticky) or (position:sticky)){\"],[false,{\".sticky-top\":false},[\"position:-webkit-sticky\",\"position:sticky\",\"top:0\",\"z-index:1020\"]],[false,\"}\"],[false,{\".sr-only\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"white-space:nowrap\",\"border:0\"]],[false,{\".sr-only-focusable:active\":false,\".sr-only-focusable:focus\":false},[\"position:static\",\"width:auto\",\"height:auto\",\"overflow:visible\",\"clip:auto\",\"white-space:normal\"]],[false,{\".shadow-sm:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:0 .125rem .25rem rgba(0,0,0,.075)\"]],[false,{\".shadow:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:0 .5rem 1rem rgba(0,0,0,.15)\"]],[false,{\".shadow-lg:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:0 1rem 3rem rgba(0,0,0,.175)\"]],[false,{\".shadow-none:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:none\"]],[false,{\".w-25:not(#_#_#_#_#_#_#_)\":false},[\"width:25%\"]],[false,{\".w-50:not(#_#_#_#_#_#_#_)\":false},[\"width:50%\"]],[false,{\".w-75:not(#_#_#_#_#_#_#_)\":false},[\"width:75%\"]],[false,{\".w-100:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".w-auto:not(#_#_#_#_#_#_#_)\":false},[\"width:auto\"]],[false,{\".h-25:not(#_#_#_#_#_#_#_)\":false},[\"height:25%\"]],[false,{\".h-50:not(#_#_#_#_#_#_#_)\":false},[\"height:50%\"]],[false,{\".h-75:not(#_#_#_#_#_#_#_)\":false},[\"height:75%\"]],[false,{\".h-100:not(#_#_#_#_#_#_#_)\":false},[\"height:100%\"]],[false,{\".h-auto:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[false,{\".mw-100:not(#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".mh-100:not(#_#_#_#_#_#_#_)\":false},[\"max-height:100%\"]],[false,{\".m-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-0:not(#_#_#_#_#_#_#_)\":false,\".my-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-0:not(#_#_#_#_#_#_#_)\":false,\".mx-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-0:not(#_#_#_#_#_#_#_)\":false,\".my-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-0:not(#_#_#_#_#_#_#_)\":false,\".mx-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-1:not(#_#_#_#_#_#_#_)\":false,\".my-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-1:not(#_#_#_#_#_#_#_)\":false,\".mx-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-1:not(#_#_#_#_#_#_#_)\":false,\".my-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-1:not(#_#_#_#_#_#_#_)\":false,\".mx-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-2:not(#_#_#_#_#_#_#_)\":false,\".my-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-2:not(#_#_#_#_#_#_#_)\":false,\".mx-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-2:not(#_#_#_#_#_#_#_)\":false,\".my-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[true,{\".ml-2:not(#_#_#_#_#_#_#_)\":true,\".mx-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-3:not(#_#_#_#_#_#_#_)\":false,\".my-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-3:not(#_#_#_#_#_#_#_)\":false,\".mx-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-3:not(#_#_#_#_#_#_#_)\":false,\".my-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-3:not(#_#_#_#_#_#_#_)\":false,\".mx-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-4:not(#_#_#_#_#_#_#_)\":false,\".my-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-4:not(#_#_#_#_#_#_#_)\":false,\".mx-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-4:not(#_#_#_#_#_#_#_)\":false,\".my-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-4:not(#_#_#_#_#_#_#_)\":false,\".mx-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-5:not(#_#_#_#_#_#_#_)\":false,\".my-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-5:not(#_#_#_#_#_#_#_)\":false,\".mx-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-5:not(#_#_#_#_#_#_#_)\":false,\".my-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-5:not(#_#_#_#_#_#_#_)\":false,\".mx-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-0:not(#_#_#_#_#_#_#_)\":false,\".py-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-0:not(#_#_#_#_#_#_#_)\":false,\".px-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-0:not(#_#_#_#_#_#_#_)\":false,\".py-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-0:not(#_#_#_#_#_#_#_)\":false,\".px-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-1:not(#_#_#_#_#_#_#_)\":false,\".py-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-1:not(#_#_#_#_#_#_#_)\":false,\".px-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-1:not(#_#_#_#_#_#_#_)\":false,\".py-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-1:not(#_#_#_#_#_#_#_)\":false,\".px-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-2:not(#_#_#_#_#_#_#_)\":false,\".py-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-2:not(#_#_#_#_#_#_#_)\":false,\".px-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-2:not(#_#_#_#_#_#_#_)\":false,\".py-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-2:not(#_#_#_#_#_#_#_)\":false,\".px-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-3:not(#_#_#_#_#_#_#_)\":false,\".py-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-3:not(#_#_#_#_#_#_#_)\":false,\".px-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-3:not(#_#_#_#_#_#_#_)\":false,\".py-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-3:not(#_#_#_#_#_#_#_)\":false,\".px-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-4:not(#_#_#_#_#_#_#_)\":false,\".py-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-4:not(#_#_#_#_#_#_#_)\":false,\".px-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-4:not(#_#_#_#_#_#_#_)\":false,\".py-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-4:not(#_#_#_#_#_#_#_)\":false,\".px-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-5:not(#_#_#_#_#_#_#_)\":false,\".py-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-5:not(#_#_#_#_#_#_#_)\":false,\".px-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-5:not(#_#_#_#_#_#_#_)\":false,\".py-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-5:not(#_#_#_#_#_#_#_)\":false,\".px-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-auto:not(#_#_#_#_#_#_#_)\":false,\".my-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[true,{\".mr-auto:not(#_#_#_#_#_#_#_)\":true,\".mx-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-auto:not(#_#_#_#_#_#_#_)\":false,\".my-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"@media (min-width:576px){\"],[false,{\".m-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-sm-0:not(#_#_#_#_#_#_#_)\":false,\".my-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-sm-0:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-sm-0:not(#_#_#_#_#_#_#_)\":false,\".my-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-sm-0:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-sm-1:not(#_#_#_#_#_#_#_)\":false,\".my-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-sm-1:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-sm-1:not(#_#_#_#_#_#_#_)\":false,\".my-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-sm-1:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-sm-2:not(#_#_#_#_#_#_#_)\":false,\".my-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-sm-2:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-sm-2:not(#_#_#_#_#_#_#_)\":false,\".my-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-sm-2:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-sm-3:not(#_#_#_#_#_#_#_)\":false,\".my-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-sm-3:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-sm-3:not(#_#_#_#_#_#_#_)\":false,\".my-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-sm-3:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-sm-4:not(#_#_#_#_#_#_#_)\":false,\".my-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-sm-4:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-sm-4:not(#_#_#_#_#_#_#_)\":false,\".my-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-sm-4:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-sm-5:not(#_#_#_#_#_#_#_)\":false,\".my-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-sm-5:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-sm-5:not(#_#_#_#_#_#_#_)\":false,\".my-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-sm-5:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-sm-0:not(#_#_#_#_#_#_#_)\":false,\".py-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-sm-0:not(#_#_#_#_#_#_#_)\":false,\".px-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-sm-0:not(#_#_#_#_#_#_#_)\":false,\".py-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-sm-0:not(#_#_#_#_#_#_#_)\":false,\".px-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-sm-1:not(#_#_#_#_#_#_#_)\":false,\".py-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-sm-1:not(#_#_#_#_#_#_#_)\":false,\".px-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-sm-1:not(#_#_#_#_#_#_#_)\":false,\".py-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-sm-1:not(#_#_#_#_#_#_#_)\":false,\".px-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-sm-2:not(#_#_#_#_#_#_#_)\":false,\".py-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-sm-2:not(#_#_#_#_#_#_#_)\":false,\".px-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-sm-2:not(#_#_#_#_#_#_#_)\":false,\".py-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-sm-2:not(#_#_#_#_#_#_#_)\":false,\".px-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-sm-3:not(#_#_#_#_#_#_#_)\":false,\".py-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-sm-3:not(#_#_#_#_#_#_#_)\":false,\".px-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-sm-3:not(#_#_#_#_#_#_#_)\":false,\".py-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-sm-3:not(#_#_#_#_#_#_#_)\":false,\".px-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-sm-4:not(#_#_#_#_#_#_#_)\":false,\".py-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-sm-4:not(#_#_#_#_#_#_#_)\":false,\".px-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-sm-4:not(#_#_#_#_#_#_#_)\":false,\".py-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-sm-4:not(#_#_#_#_#_#_#_)\":false,\".px-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-sm-5:not(#_#_#_#_#_#_#_)\":false,\".py-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-sm-5:not(#_#_#_#_#_#_#_)\":false,\".px-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-sm-5:not(#_#_#_#_#_#_#_)\":false,\".py-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-sm-5:not(#_#_#_#_#_#_#_)\":false,\".px-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".my-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".my-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".m-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-md-0:not(#_#_#_#_#_#_#_)\":false,\".my-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-md-0:not(#_#_#_#_#_#_#_)\":false,\".mx-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-md-0:not(#_#_#_#_#_#_#_)\":false,\".my-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-md-0:not(#_#_#_#_#_#_#_)\":false,\".mx-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-md-1:not(#_#_#_#_#_#_#_)\":false,\".my-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-md-1:not(#_#_#_#_#_#_#_)\":false,\".mx-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-md-1:not(#_#_#_#_#_#_#_)\":false,\".my-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-md-1:not(#_#_#_#_#_#_#_)\":false,\".mx-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-md-2:not(#_#_#_#_#_#_#_)\":false,\".my-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-md-2:not(#_#_#_#_#_#_#_)\":false,\".mx-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-md-2:not(#_#_#_#_#_#_#_)\":false,\".my-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-md-2:not(#_#_#_#_#_#_#_)\":false,\".mx-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-md-3:not(#_#_#_#_#_#_#_)\":false,\".my-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-md-3:not(#_#_#_#_#_#_#_)\":false,\".mx-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-md-3:not(#_#_#_#_#_#_#_)\":false,\".my-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-md-3:not(#_#_#_#_#_#_#_)\":false,\".mx-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-md-4:not(#_#_#_#_#_#_#_)\":false,\".my-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-md-4:not(#_#_#_#_#_#_#_)\":false,\".mx-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-md-4:not(#_#_#_#_#_#_#_)\":false,\".my-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-md-4:not(#_#_#_#_#_#_#_)\":false,\".mx-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-md-5:not(#_#_#_#_#_#_#_)\":false,\".my-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-md-5:not(#_#_#_#_#_#_#_)\":false,\".mx-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-md-5:not(#_#_#_#_#_#_#_)\":false,\".my-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-md-5:not(#_#_#_#_#_#_#_)\":false,\".mx-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-md-0:not(#_#_#_#_#_#_#_)\":false,\".py-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-md-0:not(#_#_#_#_#_#_#_)\":false,\".px-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-md-0:not(#_#_#_#_#_#_#_)\":false,\".py-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-md-0:not(#_#_#_#_#_#_#_)\":false,\".px-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-md-1:not(#_#_#_#_#_#_#_)\":false,\".py-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-md-1:not(#_#_#_#_#_#_#_)\":false,\".px-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-md-1:not(#_#_#_#_#_#_#_)\":false,\".py-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-md-1:not(#_#_#_#_#_#_#_)\":false,\".px-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-md-2:not(#_#_#_#_#_#_#_)\":false,\".py-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-md-2:not(#_#_#_#_#_#_#_)\":false,\".px-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-md-2:not(#_#_#_#_#_#_#_)\":false,\".py-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-md-2:not(#_#_#_#_#_#_#_)\":false,\".px-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-md-3:not(#_#_#_#_#_#_#_)\":false,\".py-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-md-3:not(#_#_#_#_#_#_#_)\":false,\".px-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-md-3:not(#_#_#_#_#_#_#_)\":false,\".py-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-md-3:not(#_#_#_#_#_#_#_)\":false,\".px-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-md-4:not(#_#_#_#_#_#_#_)\":false,\".py-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-md-4:not(#_#_#_#_#_#_#_)\":false,\".px-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-md-4:not(#_#_#_#_#_#_#_)\":false,\".py-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-md-4:not(#_#_#_#_#_#_#_)\":false,\".px-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-md-5:not(#_#_#_#_#_#_#_)\":false,\".py-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-md-5:not(#_#_#_#_#_#_#_)\":false,\".px-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-md-5:not(#_#_#_#_#_#_#_)\":false,\".py-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-md-5:not(#_#_#_#_#_#_#_)\":false,\".px-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-md-auto:not(#_#_#_#_#_#_#_)\":false,\".my-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-md-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-md-auto:not(#_#_#_#_#_#_#_)\":false,\".my-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-md-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".m-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-lg-0:not(#_#_#_#_#_#_#_)\":false,\".my-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-lg-0:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-lg-0:not(#_#_#_#_#_#_#_)\":false,\".my-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-lg-0:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-lg-1:not(#_#_#_#_#_#_#_)\":false,\".my-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-lg-1:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-lg-1:not(#_#_#_#_#_#_#_)\":false,\".my-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-lg-1:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-lg-2:not(#_#_#_#_#_#_#_)\":false,\".my-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-lg-2:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-lg-2:not(#_#_#_#_#_#_#_)\":false,\".my-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-lg-2:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-lg-3:not(#_#_#_#_#_#_#_)\":false,\".my-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-lg-3:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-lg-3:not(#_#_#_#_#_#_#_)\":false,\".my-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-lg-3:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-lg-4:not(#_#_#_#_#_#_#_)\":false,\".my-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-lg-4:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-lg-4:not(#_#_#_#_#_#_#_)\":false,\".my-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-lg-4:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-lg-5:not(#_#_#_#_#_#_#_)\":false,\".my-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-lg-5:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-lg-5:not(#_#_#_#_#_#_#_)\":false,\".my-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-lg-5:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-lg-0:not(#_#_#_#_#_#_#_)\":false,\".py-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-lg-0:not(#_#_#_#_#_#_#_)\":false,\".px-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-lg-0:not(#_#_#_#_#_#_#_)\":false,\".py-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-lg-0:not(#_#_#_#_#_#_#_)\":false,\".px-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-lg-1:not(#_#_#_#_#_#_#_)\":false,\".py-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-lg-1:not(#_#_#_#_#_#_#_)\":false,\".px-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-lg-1:not(#_#_#_#_#_#_#_)\":false,\".py-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-lg-1:not(#_#_#_#_#_#_#_)\":false,\".px-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-lg-2:not(#_#_#_#_#_#_#_)\":false,\".py-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-lg-2:not(#_#_#_#_#_#_#_)\":false,\".px-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-lg-2:not(#_#_#_#_#_#_#_)\":false,\".py-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-lg-2:not(#_#_#_#_#_#_#_)\":false,\".px-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-lg-3:not(#_#_#_#_#_#_#_)\":false,\".py-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-lg-3:not(#_#_#_#_#_#_#_)\":false,\".px-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-lg-3:not(#_#_#_#_#_#_#_)\":false,\".py-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-lg-3:not(#_#_#_#_#_#_#_)\":false,\".px-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-lg-4:not(#_#_#_#_#_#_#_)\":false,\".py-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-lg-4:not(#_#_#_#_#_#_#_)\":false,\".px-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-lg-4:not(#_#_#_#_#_#_#_)\":false,\".py-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-lg-4:not(#_#_#_#_#_#_#_)\":false,\".px-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-lg-5:not(#_#_#_#_#_#_#_)\":false,\".py-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-lg-5:not(#_#_#_#_#_#_#_)\":false,\".px-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-lg-5:not(#_#_#_#_#_#_#_)\":false,\".py-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-lg-5:not(#_#_#_#_#_#_#_)\":false,\".px-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".my-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".my-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".m-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-xl-0:not(#_#_#_#_#_#_#_)\":false,\".my-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-xl-0:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-xl-0:not(#_#_#_#_#_#_#_)\":false,\".my-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-xl-0:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-xl-1:not(#_#_#_#_#_#_#_)\":false,\".my-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-xl-1:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-xl-1:not(#_#_#_#_#_#_#_)\":false,\".my-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-xl-1:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-xl-2:not(#_#_#_#_#_#_#_)\":false,\".my-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-xl-2:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-xl-2:not(#_#_#_#_#_#_#_)\":false,\".my-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-xl-2:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-xl-3:not(#_#_#_#_#_#_#_)\":false,\".my-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-xl-3:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-xl-3:not(#_#_#_#_#_#_#_)\":false,\".my-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-xl-3:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-xl-4:not(#_#_#_#_#_#_#_)\":false,\".my-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-xl-4:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-xl-4:not(#_#_#_#_#_#_#_)\":false,\".my-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-xl-4:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-xl-5:not(#_#_#_#_#_#_#_)\":false,\".my-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-xl-5:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-xl-5:not(#_#_#_#_#_#_#_)\":false,\".my-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-xl-5:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-xl-0:not(#_#_#_#_#_#_#_)\":false,\".py-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-xl-0:not(#_#_#_#_#_#_#_)\":false,\".px-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-xl-0:not(#_#_#_#_#_#_#_)\":false,\".py-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-xl-0:not(#_#_#_#_#_#_#_)\":false,\".px-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-xl-1:not(#_#_#_#_#_#_#_)\":false,\".py-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-xl-1:not(#_#_#_#_#_#_#_)\":false,\".px-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-xl-1:not(#_#_#_#_#_#_#_)\":false,\".py-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-xl-1:not(#_#_#_#_#_#_#_)\":false,\".px-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-xl-2:not(#_#_#_#_#_#_#_)\":false,\".py-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-xl-2:not(#_#_#_#_#_#_#_)\":false,\".px-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-xl-2:not(#_#_#_#_#_#_#_)\":false,\".py-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-xl-2:not(#_#_#_#_#_#_#_)\":false,\".px-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-xl-3:not(#_#_#_#_#_#_#_)\":false,\".py-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-xl-3:not(#_#_#_#_#_#_#_)\":false,\".px-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-xl-3:not(#_#_#_#_#_#_#_)\":false,\".py-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-xl-3:not(#_#_#_#_#_#_#_)\":false,\".px-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-xl-4:not(#_#_#_#_#_#_#_)\":false,\".py-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-xl-4:not(#_#_#_#_#_#_#_)\":false,\".px-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-xl-4:not(#_#_#_#_#_#_#_)\":false,\".py-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-xl-4:not(#_#_#_#_#_#_#_)\":false,\".px-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-xl-5:not(#_#_#_#_#_#_#_)\":false,\".py-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-xl-5:not(#_#_#_#_#_#_#_)\":false,\".px-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-xl-5:not(#_#_#_#_#_#_#_)\":false,\".py-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-xl-5:not(#_#_#_#_#_#_#_)\":false,\".px-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".my-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".my-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,{\".text-monospace\":false},[\"font-family:SFMono-Regular,Menlo,Monaco,Consolas,\\\"Liberation Mono\\\",\\\"Courier New\\\",monospace\"]],[false,{\".text-justify:not(#_#_#_#_#_#_#_)\":false},[\"text-align:justify\"]],[false,{\".text-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"white-space:nowrap\"]],[false,{\".text-truncate\":false},[\"overflow:hidden\",\"text-overflow:ellipsis\",\"white-space:nowrap\"]],[false,{\".text-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"@media (min-width:576px){\"],[false,{\".text-sm-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-sm-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".text-md-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-md-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-md-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".text-lg-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-lg-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".text-xl-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-xl-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".text-lowercase:not(#_#_#_#_#_#_#_)\":false},[\"text-transform:lowercase\"]],[false,{\".text-uppercase:not(#_#_#_#_#_#_#_)\":false},[\"text-transform:uppercase\"]],[false,{\".text-capitalize:not(#_#_#_#_#_#_#_)\":false},[\"text-transform:capitalize\"]],[false,{\".font-weight-light:not(#_#_#_#_#_#_#_)\":false},[\"font-weight:300\"]],[false,{\".font-weight-normal:not(#_#_#_#_#_#_#_)\":false},[\"font-weight:400\"]],[false,{\".font-weight-bold:not(#_#_#_#_#_#_#_)\":false},[\"font-weight:700\"]],[false,{\".font-italic:not(#_#_#_#_#_#_#_)\":false},[\"font-style:italic\"]],[false,{\".text-white:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".text-primary:not(#_#_#_#_#_#_#_)\":false},[\"color:#007bff\"]],[false,{\"a.text-primary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-primary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#0062cc\"]],[false,{\".text-secondary:not(#_#_#_#_#_#_#_)\":false},[\"color:#6c757d\"]],[false,{\"a.text-secondary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-secondary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#545b62\"]],[false,{\".text-success:not(#_#_#_#_#_#_#_)\":false},[\"color:#28a745\"]],[false,{\"a.text-success:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-success:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#1e7e34\"]],[false,{\".text-info:not(#_#_#_#_#_#_#_)\":false},[\"color:#17a2b8\"]],[false,{\"a.text-info:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-info:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#117a8b\"]],[false,{\".text-warning:not(#_#_#_#_#_#_#_)\":false},[\"color:#ffc107\"]],[false,{\"a.text-warning:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-warning:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#d39e00\"]],[false,{\".text-danger:not(#_#_#_#_#_#_#_)\":false},[\"color:#dc3545\"]],[false,{\"a.text-danger:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-danger:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#bd2130\"]],[false,{\".text-light:not(#_#_#_#_#_#_#_)\":false},[\"color:#f8f9fa\"]],[false,{\"a.text-light:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-light:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#dae0e5\"]],[false,{\".text-dark:not(#_#_#_#_#_#_#_)\":false},[\"color:#343a40\"]],[false,{\"a.text-dark:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-dark:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#1d2124\"]],[false,{\".text-body:not(#_#_#_#_#_#_#_)\":false},[\"color:#212529\"]],[false,{\".text-muted:not(#_#_#_#_#_#_#_)\":false},[\"color:#6c757d\"]],[false,{\".text-black-50:not(#_#_#_#_#_#_#_)\":false},[\"color:rgba(0,0,0,.5)\"]],[false,{\".text-white-50:not(#_#_#_#_#_#_#_)\":false},[\"color:rgba(255,255,255,.5)\"]],[false,{\".text-hide\":false},[\"font:0\\/0 a\",\"color:transparent\",\"text-shadow:none\",\"background-color:transparent\",\"border:0\"]],[false,{\".visible:not(#_#_#_#_#_#_#_)\":false},[\"visibility:visible\"]],[false,{\".invisible:not(#_#_#_#_#_#_#_)\":false},[\"visibility:hidden\"]],[true,\"@media print{\"],[true,{\"*:not(#_#_#_#_#_#_)\":true,\"::after:not(#_#_#_#_#_#_#_#_)\":true,\"::before:not(#_#_#_#_#_#_#_#_)\":true},[\"text-shadow:none\",\"box-shadow:none\"]],[true,{\"a:not(.btn)\":true},[\"text-decoration:underline\"]],[false,{\"abbr[title]::after\":false},[\"content:\\\" (\\\" attr(title) \\\")\\\"\"]],[false,{\"pre:not(#_#_#_#_#_#_#_#_)\":false},[\"white-space:pre-wrap\"]],[false,{\"blockquote\":false,\"pre\":false},[\"border:1px solid #adb5bd\",\"page-break-inside:avoid\"]],[false,{\"thead\":false},[\"display:table-header-group\"]],[true,{\"amp-img\":true,\"amp-anim\":false,\"tr\":false},[\"page-break-inside:avoid\"]],[true,{\"h2\":false,\"h3\":true,\"p\":true},[\"orphans:3\",\"widows:3\"]],[true,{\"h2\":false,\"h3\":true},[\"page-break-after:avoid\"]],[true,\"@page{size:a3}\"],[true,{\"body:not(#_#_#_#_#_#_#_#_)\":true},[\"min-width:992px\"]],[true,{\".container:not(#_#_#_#_#_#_#_)\":true},[\"min-width:992px\"]],[true,{\".navbar\":true},[\"display:none\"]],[false,{\".badge\":false},[\"border:1px solid #000\"]],[false,{\".table:not(#_#_#_#_#_#_#_)\":false},[\"border-collapse:collapse\"]],[false,{\".table td:not(#_#_#_#_#_#_#_#_)\":false,\".table th:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#fff\"]],[false,{\".table-bordered td:not(#_#_#_#_#_#_#_#_)\":false,\".table-bordered th:not(#_#_#_#_#_#_#_#_)\":false},[\"border:1px solid #dee2e6\"]],[false,{\".table-dark\":false},[\"color:inherit\"]],[false,{\".table-dark tbody+tbody\":false,\".table-dark td\":false,\".table-dark th\":false,\".table-dark thead th\":false},[\"border-color:#dee2e6\"]],[false,{\".table .thead-dark th\":false},[\"color:inherit\",\"border-color:#dee2e6\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":68760,\"final_size\":48135,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/animate.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"a2e2915566ab9cb1c9ab842793acd3f3\",\"parse_time\":0.38850998878479004,\"shake_time\":0.0004608631134033203,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".animated\":false},[\"-webkit-animation-duration:1s\",\"animation-duration:1s\",\"-webkit-animation-fill-mode:both\",\"animation-fill-mode:both\"]],[false,{\".animated.infinite\":false},[\"-webkit-animation-iteration-count:infinite\",\"animation-iteration-count:infinite\"]],[false,{\".animated.hinge\":false},[\"-webkit-animation-duration:2s\",\"animation-duration:2s\"]],[true,\"@-webkit-keyframes bounce{\"],[true,\"0%,20%,50%,80%,100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}\"],[true,\"}@keyframes bounce{\"],[true,\"0%,20%,50%,80%,100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"40%{-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"60%{-webkit-transform:translateY(-15px);-ms-transform:translateY(-15px);transform:translateY(-15px)}\"],[true,\"}\"],[false,{\".bounce\":false},[\"-webkit-animation-name:bounce\",\"animation-name:bounce\"]],[true,\"@-webkit-keyframes flash{\"],[true,\"0%,50%,100%{opacity:1}\"],[true,\"25%,75%{opacity:0}\"],[true,\"}@keyframes flash{\"],[true,\"0%,50%,100%{opacity:1}\"],[true,\"25%,75%{opacity:0}\"],[true,\"}\"],[false,{\".flash\":false},[\"-webkit-animation-name:flash\",\"animation-name:flash\"]],[true,\"@-webkit-keyframes pulse{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{-webkit-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes pulse{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"50%{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,{\".pulse\":false},[\"-webkit-animation-name:pulse\",\"animation-name:pulse\"]],[true,\"@-webkit-keyframes rubberBand{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"30%{-webkit-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}\"],[true,\"40%{-webkit-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}\"],[true,\"60%{-webkit-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}\"],[true,\"100%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes rubberBand{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"30%{-webkit-transform:scaleX(1.25) scaleY(.75);-ms-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}\"],[true,\"40%{-webkit-transform:scaleX(.75) scaleY(1.25);-ms-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}\"],[true,\"60%{-webkit-transform:scaleX(1.15) scaleY(.85);-ms-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}\"],[true,\"100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,{\".rubberBand\":false},[\"-webkit-animation-name:rubberBand\",\"animation-name:rubberBand\"]],[true,\"@-webkit-keyframes shake{\"],[true,\"0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"}@keyframes shake{\"],[true,\"0%,100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"20%,40%,60%,80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"}\"],[false,{\".shake\":false},[\"-webkit-animation-name:shake\",\"animation-name:shake\"]],[true,\"@-webkit-keyframes swing{\"],[true,\"20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}\"],[true,\"60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}\"],[true,\"80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}\"],[true,\"100%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}@keyframes swing{\"],[true,\"20%{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"40%{-webkit-transform:rotate(-10deg);-ms-transform:rotate(-10deg);transform:rotate(-10deg)}\"],[true,\"60%{-webkit-transform:rotate(5deg);-ms-transform:rotate(5deg);transform:rotate(5deg)}\"],[true,\"80%{-webkit-transform:rotate(-5deg);-ms-transform:rotate(-5deg);transform:rotate(-5deg)}\"],[true,\"100%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}\"],[false,{\".swing\":false},[\"-webkit-transform-origin:top center\",\"-ms-transform-origin:top center\",\"transform-origin:top center\",\"-webkit-animation-name:swing\",\"animation-name:swing\"]],[true,\"@-webkit-keyframes tada{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}\"],[true,\"30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}\"],[true,\"40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}\"],[true,\"100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}\"],[true,\"}@keyframes tada{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"10%,20%{-webkit-transform:scale(.9) rotate(-3deg);-ms-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}\"],[true,\"30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);-ms-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}\"],[true,\"40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);-ms-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}\"],[true,\"100%{-webkit-transform:scale(1) rotate(0);-ms-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}\"],[true,\"}\"],[false,{\".tada\":false},[\"-webkit-animation-name:tada\",\"animation-name:tada\"]],[true,\"@-webkit-keyframes wobble{\"],[true,\"0%{-webkit-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"15%{-webkit-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}\"],[true,\"30%{-webkit-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}\"],[true,\"45%{-webkit-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}\"],[true,\"60%{-webkit-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}\"],[true,\"75%{-webkit-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}\"],[true,\"100%{-webkit-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"}@keyframes wobble{\"],[true,\"0%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"15%{-webkit-transform:translateX(-25%) rotate(-5deg);-ms-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}\"],[true,\"30%{-webkit-transform:translateX(20%) rotate(3deg);-ms-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}\"],[true,\"45%{-webkit-transform:translateX(-15%) rotate(-3deg);-ms-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}\"],[true,\"60%{-webkit-transform:translateX(10%) rotate(2deg);-ms-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}\"],[true,\"75%{-webkit-transform:translateX(-5%) rotate(-1deg);-ms-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}\"],[true,\"100%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"}\"],[false,{\".wobble\":false},[\"-webkit-animation-name:wobble\",\"animation-name:wobble\"]],[true,\"@-webkit-keyframes bounceIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}\"],[true,\"70%{-webkit-transform:scale(.9);transform:scale(.9)}\"],[true,\"100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes bounceIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}\"],[true,\"70%{-webkit-transform:scale(.9);-ms-transform:scale(.9);transform:scale(.9)}\"],[true,\"100%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,{\".bounceIn\":false},[\"-webkit-animation-name:bounceIn\",\"animation-name:bounceIn\"]],[true,\"@-webkit-keyframes bounceInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}\"],[true,\"80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}\"],[true,\"100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes bounceInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px)}\"],[true,\"80%{-webkit-transform:translateY(-10px);-ms-transform:translateY(-10px);transform:translateY(-10px)}\"],[true,\"100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".bounceInDown\":false},[\"-webkit-animation-name:bounceInDown\",\"animation-name:bounceInDown\"]],[true,\"@-webkit-keyframes bounceInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(30px);transform:translateX(30px)}\"],[true,\"80%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes bounceInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(30px);-ms-transform:translateX(30px);transform:translateX(30px)}\"],[true,\"80%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".bounceInLeft\":false},[\"-webkit-animation-name:bounceInLeft\",\"animation-name:bounceInLeft\"]],[true,\"@-webkit-keyframes bounceInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(-30px);transform:translateX(-30px)}\"],[true,\"80%{-webkit-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes bounceInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(-30px);-ms-transform:translateX(-30px);transform:translateX(-30px)}\"],[true,\"80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".bounceInRight\":false},[\"-webkit-animation-name:bounceInRight\",\"animation-name:bounceInRight\"]],[true,\"@-webkit-keyframes bounceInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"80%{-webkit-transform:translateY(10px);transform:translateY(10px)}\"],[true,\"100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes bounceInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"80%{-webkit-transform:translateY(10px);-ms-transform:translateY(10px);transform:translateY(10px)}\"],[true,\"100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".bounceInUp\":false},[\"-webkit-animation-name:bounceInUp\",\"animation-name:bounceInUp\"]],[true,\"@-webkit-keyframes bounceOut{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"25%{-webkit-transform:scale(.95);transform:scale(.95)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"}@keyframes bounceOut{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"25%{-webkit-transform:scale(.95);-ms-transform:scale(.95);transform:scale(.95)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"}\"],[false,{\".bounceOut\":false},[\"-webkit-animation-name:bounceOut\",\"animation-name:bounceOut\"]],[true,\"@-webkit-keyframes bounceOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}@keyframes bounceOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}\"],[false,{\".bounceOutDown\":false},[\"-webkit-animation-name:bounceOutDown\",\"animation-name:bounceOutDown\"]],[true,\"@-webkit-keyframes bounceOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}@keyframes bounceOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}\"],[false,{\".bounceOutLeft\":false},[\"-webkit-animation-name:bounceOutLeft\",\"animation-name:bounceOutLeft\"]],[true,\"@-webkit-keyframes bounceOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}@keyframes bounceOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}\"],[false,{\".bounceOutRight\":false},[\"-webkit-animation-name:bounceOutRight\",\"animation-name:bounceOutRight\"]],[true,\"@-webkit-keyframes bounceOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}@keyframes bounceOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}\"],[false,{\".bounceOutUp\":false},[\"-webkit-animation-name:bounceOutUp\",\"animation-name:bounceOutUp\"]],[true,\"@-webkit-keyframes fadeIn{\"],[true,\"0%{opacity:0}\"],[true,\"100%{opacity:1}\"],[true,\"}@keyframes fadeIn{\"],[true,\"0%{opacity:0}\"],[true,\"100%{opacity:1}\"],[true,\"}\"],[false,{\".fadeIn\":false},[\"-webkit-animation-name:fadeIn\",\"animation-name:fadeIn\"]],[true,\"@-webkit-keyframes fadeInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInDown\":false},[\"-webkit-animation-name:fadeInDown\",\"animation-name:fadeInDown\"]],[true,\"@-webkit-keyframes fadeInDownBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInDownBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInDownBig\":false},[\"-webkit-animation-name:fadeInDownBig\",\"animation-name:fadeInDownBig\"]],[true,\"@-webkit-keyframes fadeInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInLeft\":false},[\"-webkit-animation-name:fadeInLeft\",\"animation-name:fadeInLeft\"]],[true,\"@-webkit-keyframes fadeInLeftBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInLeftBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInLeftBig\":false},[\"-webkit-animation-name:fadeInLeftBig\",\"animation-name:fadeInLeftBig\"]],[true,\"@-webkit-keyframes fadeInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInRight\":false},[\"-webkit-animation-name:fadeInRight\",\"animation-name:fadeInRight\"]],[true,\"@-webkit-keyframes fadeInRightBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInRightBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInRightBig\":false},[\"-webkit-animation-name:fadeInRightBig\",\"animation-name:fadeInRightBig\"]],[true,\"@-webkit-keyframes fadeInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInUp\":false},[\"-webkit-animation-name:fadeInUp\",\"animation-name:fadeInUp\"]],[true,\"@-webkit-keyframes fadeInUpBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInUpBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInUpBig\":false},[\"-webkit-animation-name:fadeInUpBig\",\"animation-name:fadeInUpBig\"]],[true,\"@-webkit-keyframes fadeOut{\"],[true,\"0%{opacity:1}\"],[true,\"100%{opacity:0}\"],[true,\"}@keyframes fadeOut{\"],[true,\"0%{opacity:1}\"],[true,\"100%{opacity:0}\"],[true,\"}\"],[false,{\".fadeOut\":false},[\"-webkit-animation-name:fadeOut\",\"animation-name:fadeOut\"]],[true,\"@-webkit-keyframes fadeOutDown{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"}@keyframes fadeOutDown{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"}\"],[false,{\".fadeOutDown\":false},[\"-webkit-animation-name:fadeOutDown\",\"animation-name:fadeOutDown\"]],[true,\"@-webkit-keyframes fadeOutDownBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}@keyframes fadeOutDownBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}\"],[false,{\".fadeOutDownBig\":false},[\"-webkit-animation-name:fadeOutDownBig\",\"animation-name:fadeOutDownBig\"]],[true,\"@-webkit-keyframes fadeOutLeft{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"}@keyframes fadeOutLeft{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"}\"],[false,{\".fadeOutLeft\":false},[\"-webkit-animation-name:fadeOutLeft\",\"animation-name:fadeOutLeft\"]],[true,\"@-webkit-keyframes fadeOutLeftBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}@keyframes fadeOutLeftBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}\"],[false,{\".fadeOutLeftBig\":false},[\"-webkit-animation-name:fadeOutLeftBig\",\"animation-name:fadeOutLeftBig\"]],[true,\"@-webkit-keyframes fadeOutRight{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"}@keyframes fadeOutRight{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"}\"],[false,{\".fadeOutRight\":false},[\"-webkit-animation-name:fadeOutRight\",\"animation-name:fadeOutRight\"]],[true,\"@-webkit-keyframes fadeOutRightBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}@keyframes fadeOutRightBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}\"],[false,{\".fadeOutRightBig\":false},[\"-webkit-animation-name:fadeOutRightBig\",\"animation-name:fadeOutRightBig\"]],[true,\"@-webkit-keyframes fadeOutUp{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"}@keyframes fadeOutUp{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"}\"],[false,{\".fadeOutUp\":false},[\"-webkit-animation-name:fadeOutUp\",\"animation-name:fadeOutUp\"]],[true,\"@-webkit-keyframes fadeOutUpBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}@keyframes fadeOutUpBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}\"],[false,{\".fadeOutUpBig\":false},[\"-webkit-animation-name:fadeOutUpBig\",\"animation-name:fadeOutUpBig\"]],[true,\"@-webkit-keyframes flip{\"],[true,\"0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"}@keyframes flip{\"],[true,\"0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);-ms-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"}\"],[false,{\".animated.flip\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\",\"-webkit-animation-name:flip\",\"animation-name:flip\"]],[true,\"@-webkit-keyframes flipInX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"}@keyframes flipInX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateX(-10deg);-ms-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateX(10deg);-ms-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"}\"],[false,{\".flipInX\":false},[\"-webkit-animation-name:flipInX\",\"animation-name:flipInX\"]],[false,{\".flipInX:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes flipInY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"}@keyframes flipInY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateY(-10deg);-ms-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateY(10deg);-ms-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"}\"],[false,{\".flipInY\":false},[\"-webkit-animation-name:flipInY\",\"animation-name:flipInY\"]],[false,{\".flipInY:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes flipOutX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"}@keyframes flipOutX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"}\"],[false,{\".flipOutX\":false},[\"-webkit-animation-name:flipOutX\",\"animation-name:flipOutX\"]],[false,{\".flipOutX:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes flipOutY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"}@keyframes flipOutY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"}\"],[false,{\".flipOutY\":false},[\"-webkit-animation-name:flipOutY\",\"animation-name:flipOutY\"]],[false,{\".flipOutY:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes lightSpeedIn{\"],[true,\"0%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"60%{-webkit-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}\"],[true,\"80%{-webkit-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"}@keyframes lightSpeedIn{\"],[true,\"0%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"60%{-webkit-transform:translateX(-20%) skewX(30deg);-ms-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}\"],[true,\"80%{-webkit-transform:translateX(0%) skewX(-15deg);-ms-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"}\"],[false,{\".lightSpeedIn\":false},[\"-webkit-animation-name:lightSpeedIn\",\"animation-name:lightSpeedIn\",\"-webkit-animation-timing-function:ease-out\",\"animation-timing-function:ease-out\"]],[true,\"@-webkit-keyframes lightSpeedOut{\"],[true,\"0%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"}@keyframes lightSpeedOut{\"],[true,\"0%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"}\"],[false,{\".lightSpeedOut\":false},[\"-webkit-animation-name:lightSpeedOut\",\"animation-name:lightSpeedOut\",\"-webkit-animation-timing-function:ease-in\",\"animation-timing-function:ease-in\"]],[true,\"@-webkit-keyframes rotateIn{\"],[true,\"0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateIn{\"],[true,\"0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);-ms-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateIn\":false},[\"-webkit-animation-name:rotateIn\",\"animation-name:rotateIn\"]],[true,\"@-webkit-keyframes rotateInDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInDownLeft\":false},[\"-webkit-animation-name:rotateInDownLeft\",\"animation-name:rotateInDownLeft\"]],[true,\"@-webkit-keyframes rotateInDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInDownRight\":false},[\"-webkit-animation-name:rotateInDownRight\",\"animation-name:rotateInDownRight\"]],[true,\"@-webkit-keyframes rotateInUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInUpLeft\":false},[\"-webkit-animation-name:rotateInUpLeft\",\"animation-name:rotateInUpLeft\"]],[true,\"@-webkit-keyframes rotateInUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInUpRight\":false},[\"-webkit-animation-name:rotateInUpRight\",\"animation-name:rotateInUpRight\"]],[true,\"@-webkit-keyframes rotateOut{\"],[true,\"0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}\"],[true,\"}@keyframes rotateOut{\"],[true,\"0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);-ms-transform:rotate(200deg);transform:rotate(200deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOut\":false},[\"-webkit-animation-name:rotateOut\",\"animation-name:rotateOut\"]],[true,\"@-webkit-keyframes rotateOutDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}@keyframes rotateOutDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutDownLeft\":false},[\"-webkit-animation-name:rotateOutDownLeft\",\"animation-name:rotateOutDownLeft\"]],[true,\"@-webkit-keyframes rotateOutDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}@keyframes rotateOutDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutDownRight\":false},[\"-webkit-animation-name:rotateOutDownRight\",\"animation-name:rotateOutDownRight\"]],[true,\"@-webkit-keyframes rotateOutUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}@keyframes rotateOutUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutUpLeft\":false},[\"-webkit-animation-name:rotateOutUpLeft\",\"animation-name:rotateOutUpLeft\"]],[true,\"@-webkit-keyframes rotateOutUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}@keyframes rotateOutUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutUpRight\":false},[\"-webkit-animation-name:rotateOutUpRight\",\"animation-name:rotateOutUpRight\"]],[true,\"@-webkit-keyframes slideInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes slideInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".slideInDown\":false},[\"-webkit-animation-name:slideInDown\",\"animation-name:slideInDown\"]],[true,\"@-webkit-keyframes slideInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes slideInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".slideInLeft\":false},[\"-webkit-animation-name:slideInLeft\",\"animation-name:slideInLeft\"]],[true,\"@-webkit-keyframes slideInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes slideInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".slideInRight\":false},[\"-webkit-animation-name:slideInRight\",\"animation-name:slideInRight\"]],[true,\"@-webkit-keyframes slideOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}@keyframes slideOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}\"],[false,{\".slideOutLeft\":false},[\"-webkit-animation-name:slideOutLeft\",\"animation-name:slideOutLeft\"]],[true,\"@-webkit-keyframes slideOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}@keyframes slideOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}\"],[false,{\".slideOutRight\":false},[\"-webkit-animation-name:slideOutRight\",\"animation-name:slideOutRight\"]],[true,\"@-webkit-keyframes slideOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}@keyframes slideOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}\"],[false,{\".slideOutUp\":false},[\"-webkit-animation-name:slideOutUp\",\"animation-name:slideOutUp\"]],[true,\"@-webkit-keyframes slideInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes slideInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".slideInUp\":false},[\"-webkit-animation-name:slideInUp\",\"animation-name:slideInUp\"]],[true,\"@-webkit-keyframes slideOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}@keyframes slideOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}\"],[false,{\".slideOutDown\":false},[\"-webkit-animation-name:slideOutDown\",\"animation-name:slideOutDown\"]],[true,\"@-webkit-keyframes hinge{\"],[true,\"0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"40%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"80%{-webkit-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}\"],[true,\"100%{-webkit-transform:translateY(700px);transform:translateY(700px);opacity:0}\"],[true,\"}@keyframes hinge{\"],[true,\"0%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"20%,60%{-webkit-transform:rotate(80deg);-ms-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"40%{-webkit-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"80%{-webkit-transform:rotate(60deg) translateY(0);-ms-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}\"],[true,\"100%{-webkit-transform:translateY(700px);-ms-transform:translateY(700px);transform:translateY(700px);opacity:0}\"],[true,\"}\"],[false,{\".hinge\":false},[\"-webkit-animation-name:hinge\",\"animation-name:hinge\"]],[true,\"@-webkit-keyframes rollIn{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"}@keyframes rollIn{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);-ms-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);-ms-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"}\"],[false,{\".rollIn\":false},[\"-webkit-animation-name:rollIn\",\"animation-name:rollIn\"]],[true,\"@-webkit-keyframes rollOut{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}\"],[true,\"}@keyframes rollOut{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);-ms-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);-ms-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}\"],[true,\"}\"],[false,{\".rollOut\":false},[\"-webkit-animation-name:rollOut\",\"animation-name:rollOut\"]],[true,\"@-webkit-keyframes zoomIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1}\"],[true,\"}@keyframes zoomIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1}\"],[true,\"}\"],[false,{\".zoomIn\":false},[\"-webkit-animation-name:zoomIn\",\"animation-name:zoomIn\"]],[true,\"@-webkit-keyframes zoomInDown{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInDown{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInDown\":false},[\"-webkit-animation-name:zoomInDown\",\"animation-name:zoomInDown\"]],[true,\"@-webkit-keyframes zoomInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);-ms-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInLeft\":false},[\"-webkit-animation-name:zoomInLeft\",\"animation-name:zoomInLeft\"]],[true,\"@-webkit-keyframes zoomInRight{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(-48px);transform:scale(.475) translateX(-48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInRight{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);-ms-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(-48px);-ms-transform:scale(.475) translateX(-48px);transform:scale(.475) translateX(-48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInRight\":false},[\"-webkit-animation-name:zoomInRight\",\"animation-name:zoomInRight\"]],[true,\"@-webkit-keyframes zoomInUp{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInUp{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);-ms-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);-ms-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInUp\":false},[\"-webkit-animation-name:zoomInUp\",\"animation-name:zoomInUp\"]],[true,\"@-webkit-keyframes zoomOut{\"],[true,\"0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"100%{opacity:0}\"],[true,\"}@keyframes zoomOut{\"],[true,\"0%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"100%{opacity:0}\"],[true,\"}\"],[false,{\".zoomOut\":false},[\"-webkit-animation-name:zoomOut\",\"animation-name:zoomOut\"]],[true,\"@-webkit-keyframes zoomOutDown{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-transform-origin:center bottom;transform-origin:center bottom}\"],[true,\"}@keyframes zoomOutDown{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);-ms-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);-ms-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-transform-origin:center bottom;-ms-transform-origin:center bottom;transform-origin:center bottom}\"],[true,\"}\"],[false,{\".zoomOutDown\":false},[\"-webkit-animation-name:zoomOutDown\",\"animation-name:zoomOutDown\"]],[true,\"@-webkit-keyframes zoomOutLeft{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(42px);transform:scale(.475) translateX(42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-transform-origin:left center;transform-origin:left center}\"],[true,\"}@keyframes zoomOutLeft{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(42px);-ms-transform:scale(.475) translateX(42px);transform:scale(.475) translateX(42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-transform-origin:left center;-ms-transform-origin:left center;transform-origin:left center}\"],[true,\"}\"],[false,{\".zoomOutLeft\":false},[\"-webkit-animation-name:zoomOutLeft\",\"animation-name:zoomOutLeft\"]],[true,\"@-webkit-keyframes zoomOutRight{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(-42px);transform:scale(.475) translateX(-42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-transform-origin:right center;transform-origin:right center}\"],[true,\"}@keyframes zoomOutRight{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(-42px);-ms-transform:scale(.475) translateX(-42px);transform:scale(.475) translateX(-42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);-ms-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-transform-origin:right center;-ms-transform-origin:right center;transform-origin:right center}\"],[true,\"}\"],[false,{\".zoomOutRight\":false},[\"-webkit-animation-name:zoomOutRight\",\"animation-name:zoomOutRight\"]],[true,\"@-webkit-keyframes zoomOutUp{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-transform-origin:center top;transform-origin:center top}\"],[true,\"}@keyframes zoomOutUp{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-transform-origin:center top;-ms-transform-origin:center top;transform-origin:center top}\"],[true,\"}\"],[false,{\".zoomOutUp\":false},[\"-webkit-animation-name:zoomOutUp\",\"animation-name:zoomOutUp\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":4744,\"final_size\":48,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/css\\/owl.carousel.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"321729c807ca4dee8c7fcd62f722c92a\",\"parse_time\":0.016955852508544922,\"shake_time\":3.4809112548828125e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".owl-carousel\":false},[\"display:none\",\"width:100%\",\"-webkit-tap-highlight-color:transparent\",\"position:relative\",\"z-index:1\"]],[false,{\".owl-carousel .owl-stage\":false},[\"position:relative\",\"-ms-touch-action:pan-Y\",\"touch-action:manipulation\",\"-moz-backface-visibility:hidden\"]],[false,{\".owl-carousel .owl-stage:after\":false},[\"content:\\\".\\\"\",\"display:block\",\"clear:both\",\"visibility:hidden\",\"line-height:0\",\"height:0\"]],[false,{\".owl-carousel .owl-stage-outer\":false},[\"position:relative\",\"overflow:hidden\",\"-webkit-transform:translate3d(0px,0px,0px)\"]],[false,{\".owl-carousel .owl-wrapper\":false,\".owl-carousel .owl-item\":false},[\"-webkit-backface-visibility:hidden\",\"-moz-backface-visibility:hidden\",\"-ms-backface-visibility:hidden\",\"-webkit-transform:translate3d(0,0,0)\",\"-moz-transform:translate3d(0,0,0)\",\"-ms-transform:translate3d(0,0,0)\"]],[false,{\".owl-carousel .owl-item\":false},[\"position:relative\",\"min-height:1px\",\"float:left\",\"-webkit-backface-visibility:hidden\",\"-webkit-tap-highlight-color:transparent\",\"-webkit-touch-callout:none\"]],[false,{\".owl-carousel .owl-item amp-img\":false,\".owl-carousel .owl-item amp-anim\":false},[\"display:block\",\"width:100%\"]],[false,{\".owl-carousel .owl-nav.disabled\":false,\".owl-carousel .owl-dots.disabled\":false},[\"display:none\"]],[false,{\".owl-carousel .owl-nav .owl-prev\":false,\".owl-carousel .owl-nav .owl-next\":false,\".owl-carousel .owl-dot\":false},[\"cursor:pointer\",\"-webkit-user-select:none\",\"-khtml-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\"]],[false,{\".owl-carousel .owl-nav button.owl-prev\":false,\".owl-carousel .owl-nav button.owl-next\":false,\".owl-carousel button.owl-dot\":false},[\"background:none\",\"color:inherit\",\"border:none\",\"font:inherit\"]],[false,{\".owl-carousel .owl-nav button.owl-prev:not(#_#_#_#_#_#_#_#_)\":false,\".owl-carousel .owl-nav button.owl-next:not(#_#_#_#_#_#_#_#_)\":false,\".owl-carousel button.owl-dot:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".owl-carousel.owl-loaded\":false},[\"display:block\"]],[false,{\".owl-carousel.owl-loading\":false},[\"opacity:0\",\"display:block\"]],[false,{\".owl-carousel.owl-hidden\":false},[\"opacity:0\"]],[false,{\".owl-carousel.owl-refresh .owl-item\":false},[\"visibility:hidden\"]],[false,{\".owl-carousel.owl-drag .owl-item\":false},[\"-ms-touch-action:pan-y\",\"touch-action:pan-y\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\"]],[false,{\".owl-carousel.owl-grab\":false},[\"cursor:move\",\"cursor:grab\"]],[false,{\".owl-carousel.owl-rtl\":false},[\"direction:rtl\"]],[false,{\".owl-carousel.owl-rtl .owl-item\":false},[\"float:right\"]],[false,{\".no-js .owl-carousel\":false},[\"display:block\"]],[false,{\".owl-carousel .animated\":false},[\"animation-duration:1000ms\",\"animation-fill-mode:both\"]],[false,{\".owl-carousel .owl-animated-in\":false},[\"z-index:0\"]],[false,{\".owl-carousel .owl-animated-out\":false},[\"z-index:1\"]],[false,{\".owl-carousel .fadeOut\":false},[\"animation-name:fadeOut\"]],[true,\"@keyframes fadeOut{\"],[true,\"0%{opacity:1}\"],[true,\"100%{opacity:0}\"],[true,\"}\"],[false,{\".owl-height\":false},[\"transition:height 500ms ease-in-out\"]],[false,{\".owl-carousel .owl-item .owl-lazy\":false},[\"opacity:0\",\"transition:opacity 400ms ease\"]],[false,{\".owl-carousel .owl-item .owl-lazy[src^=\\\"\\\"]\":false,\".owl-carousel .owl-item .owl-lazy:not([src])\":false},[\"max-height:0\"]],[false,{\".owl-carousel .owl-item amp-img.owl-lazy\":false,\".owl-carousel .owl-item amp-anim.owl-lazy\":false},[\"transform-style:preserve-3d\"]],[false,{\".owl-carousel .owl-video-wrapper\":false},[\"position:relative\",\"height:100%\",\"background:#000\"]],[false,{\".owl-carousel .owl-video-play-icon\":false},[\"position:absolute\",\"height:80px\",\"width:80px\",\"left:50%\",\"top:50%\",\"margin-left:-40px\",\"margin-top:-40px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/css\\/owl.video.play.png\\\") no-repeat\",\"cursor:pointer\",\"z-index:1\",\"-webkit-backface-visibility:hidden\",\"transition:transform 100ms ease\"]],[false,{\".owl-carousel .owl-video-play-icon:hover\":false},[\"-ms-transform:scale(1.3,1.3)\",\"transform:scale(1.3,1.3)\"]],[false,{\".owl-carousel .owl-video-playing .owl-video-tn\":false,\".owl-carousel .owl-video-playing .owl-video-play-icon\":false},[\"display:none\"]],[false,{\".owl-carousel .owl-video-tn\":false},[\"opacity:0\",\"height:100%\",\"background-position:center center\",\"background-repeat:no-repeat\",\"background-size:contain\",\"transition:opacity 400ms ease\"]],[false,{\".owl-carousel .owl-video-frame\":false},[\"position:relative\",\"z-index:1\",\"height:100%\",\"width:100%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1013,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/owlcarousel2.github.io\\/OwlCarousel2\\/assets\\/owlcarousel\\/assets\\/owl.theme.default.min.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"547aa8bb20ab8306b3b739fab5e4aa08\",\"parse_time\":0.004403114318847656,\"shake_time\":1.621246337890625e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".owl-theme .owl-dots\":false,\".owl-theme .owl-nav\":false},[\"text-align:center\",\"-webkit-tap-highlight-color:transparent\"]],[false,{\".owl-theme .owl-nav\":false},[\"margin-top:10px\"]],[false,{\".owl-theme .owl-nav [class*=owl-]\":false},[\"color:#fff\",\"font-size:14px\",\"margin:5px\",\"padding:4px 7px\",\"background:#d6d6d6\",\"display:inline-block\",\"cursor:pointer\",\"border-radius:3px\"]],[false,{\".owl-theme .owl-nav [class*=owl-]:hover\":false},[\"background:#869791\",\"color:#fff\",\"text-decoration:none\"]],[false,{\".owl-theme .owl-nav .disabled\":false},[\"opacity:.5\",\"cursor:default\"]],[false,{\".owl-theme .owl-nav.disabled+.owl-dots\":false},[\"margin-top:10px\"]],[false,{\".owl-theme .owl-dots .owl-dot\":false},[\"display:inline-block\",\"zoom:1\"]],[false,{\".owl-theme .owl-dots .owl-dot span\":false},[\"width:10px\",\"height:10px\",\"margin:5px 7px\",\"background:#d6d6d6\",\"display:block\",\"-webkit-backface-visibility:visible\",\"transition:opacity .2s ease\",\"border-radius:30px\"]],[false,{\".owl-theme .owl-dots .owl-dot.active span\":false,\".owl-theme .owl-dots .owl-dot:hover span\":false},[\"background:#869791\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":65448,\"final_size\":8691,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/styles.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"7827cda6edfe62811923d93e516ee494\",\"parse_time\":0.6045119762420654,\"shake_time\":0.07468891143798828,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".texto\":false},[\"font-family:Raleway,sans-serif\",\"font-weight:400\",\"font-size:14px\",\"line-height:20px\",\"color:#152649\"]],[false,\"@media (min-width:1400px){\"],[false,{\".texto\":false},[\"font-size:18px\",\"line-height:24px\"]],[false,\"}\"],[false,{\".bg-cover\":false},[\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\"]],[false,{\".box-shadow\":false},[\"-webkit-box-shadow:0 2px 6px 0 rgba(50,50,50,.3)\",\"-moz-box-shadow:0 2px 6px 0 rgba(50,50,50,.3)\",\"box-shadow:0 2px 6px 0 rgba(50,50,50,.3)\"]],[true,{\"html\":true},[\"-webkit-font-smoothing:antialiased\",\"background-color:#fff\"]],[true,{\"body\":true},[\"background-color:#fff\",\"font-family:Raleway,sans-serif\",\"font-weight:400\",\"font-size:14px\",\"line-height:20px\",\"color:#152649\",\"-webkit-font-smoothing:subpixel-antialiased\",\"overflow-x:hidden\"]],[true,\"@media (min-width:1400px){\"],[true,{\"body\":true},[\"font-size:18px\",\"line-height:24px\"]],[true,\"}\"],[true,{\"a\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"a:hover\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"strong\":true},[\"font-weight:700\"]],[true,{\"amp-img\":true,\"amp-anim\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".error\":false},[\"width:100%\"]],[false,{\".error:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:20px\",\"text-align:left\",\"left:0\",\"color:#c00\",\"font-weight:500\"]],[false,{\"label.error:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".wpcf7-not-valid-tip:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".wpcf7-not-valid:not(#_#_#_#_#_#_#_)\":false},[\"border:1px solid red\"]],[true,{\".nospace\":true},[\"margin:0\",\"padding:0\"]],[false,{\".nopadding\":false},[\"padding:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".nopadding\":false},[\"padding:0\",\"margin:0\"]],[false,\"}\"],[false,{\"input:focus\":false},[\"outline-color:transparent\",\"outline-style:none\"]],[false,{\"textarea:focus\":false},[\"outline-color:transparent\",\"outline-style:none\"]],[false,{\"input.form-control\":false},[\"font-family:Raleway,sans-serif\",\"font-weight:500\",\"width:100%\",\"font-size:12px\",\"background:#dfdfdf\",\"color:grey\",\"height:40px\",\"line-height:40px\",\"border:0 solid #343636\",\"margin-bottom:10px\",\"border-radius:0\",\"-moz-border-radius:0\",\"-webkit-border-radius:0\",\"-webkit-box-shadow:inset 0 0 0 transparent\",\"box-shadow:inset 0 0 0 transparent\",\"padding:0 10px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"input.form-control\":false},[\"font-size:14px\",\"height:45px\",\"line-height:45px\"]],[false,\"}\"],[false,{\"textarea.form-control\":false},[\"font-family:Raleway,sans-serif\",\"font-weight:500\",\"width:100%\",\"font-size:12px\",\"background:#dfdfdf\",\"color:grey\",\"height:140px\",\"border:0 solid #343636\",\"margin-bottom:10px\",\"border-radius:0\",\"-moz-border-radius:0\",\"-webkit-border-radius:0\",\"-webkit-box-shadow:inset 0 0 0 transparent\",\"box-shadow:inset 0 0 0 transparent\",\"padding:10px\",\"resize:none\"]],[false,\"@media (min-width:1400px){\"],[false,{\"textarea.form-control\":false},[\"font-size:14px\"]],[false,\"}\"],[false,{\".btn\":false},[\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"border-radius:0\",\"-moz-border-radius:0\",\"-webkit-border-radius:0\",\"font-family:Raleway,sans-serif\",\"display:inline-block\",\"display:inline-block\",\"line-height:40px\",\"color:#fff\",\"border:0 solid #343636\",\"background-color:#152649\",\"font-size:14px\",\"font-weight:500\",\"text-align:center\",\"padding:0 20px\",\"margin-bottom:50px\"]],[false,\"@media (max-width:992px){\"],[false,{\".btn\":false},[\"width:100%\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".btn\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".btn:hover\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".btn1\":false},[\"display:inline-block\",\"background:#90f247\",\"background:-moz-linear-gradient(left,#90f247 0,#00debb 100%)\",\"background:-webkit-linear-gradient(left,#90f247 0,#00debb 100%)\",\"background:linear-gradient(to right,#90f247 0,#00debb 100%)\",\"padding:2px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\"]],[false,{\".btn1 .mask-btn\":false},[\"width:100%\",\"padding:10px 9px 10px 9px\",\"background-color:#fff\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:15px\",\"font-size:16px\",\"color:#152649\",\"-webkit-transition:all .4s ease-in-out\",\"-moz-transition:all .4s ease-in-out\",\"transition:all .4s ease-in-out\"]],[false,{\".btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,\"@media (min-width:1400px){\"],[false,{\".btn1 .mask-btn\":false},[\"padding:20px 20px 20px 19px\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\",\"line-height:17px\",\"font-size:18px\"]],[false,\"}\"],[false,{\".btn-learn\":false},[\"width:auto\",\"display:inline-block\",\"padding:10px 20px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"background-color:#152649\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:15px\",\"font-size:16px\",\"color:#fff\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".btn-learn:hover\":false},[\"background-color:#0c1832\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".btn-learn\":false},[\"padding:20px 30px\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\",\"line-height:17px\",\"font-size:18px\"]],[false,{\".btn-learn:hover\":false},[\"border-radius:8px\",\"-moz-border-radius:8px\",\"-webkit-border-radius:8px\"]],[false,\"}\"],[false,{\".btn-how\":false},[\"width:auto\",\"display:inline-block\",\"padding:10px 20px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"background-color:#fff\",\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:15px\",\"font-size:16px\",\"color:#3e3e3e\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"margin-top:10px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".btn-how:hover\":false},[\"background-color:#0c1832\",\"color:#fff\"]],[false,\"@media (min-width:1400px){\"],[false,{\".btn-how\":false},[\"padding:20px 30px\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\",\"line-height:17px\",\"font-size:18px\",\"font-weight:600\"]],[false,{\".btn-how:hover\":false},[\"border-radius:8px\",\"-moz-border-radius:8px\",\"-webkit-border-radius:8px\"]],[false,\"}\"],[false,{\".ajax-loader:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[true,{\"::-webkit-input-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\":-moz-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\"::-moz-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\":-ms-input-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\"header\":true},[\"top:0\",\"width:100%\",\"height:100px\",\"position:fixed\",\"background-color:#fff\",\"z-index:3\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[true,{\"header .row\":true},[\"margin:0\"]],[true,\"@media (min-width:1400px){\"],[true,{\"header\":true},[\"height:120px\"]],[true,\"}\"],[false,{\"header .logo\":false},[\"line-height:100px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header .logo amp-img\":false,\"header .logo amp-anim\":false},[\"height:30px\",\"margin-left:15px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header .logo\":false},[\"line-height:120px\"]],[false,{\"header .logo amp-img\":false,\"header .logo amp-anim\":false},[\"height:50px\"]],[false,\"}\"],[false,{\"header .min-header\":false},[\"color:#152649\",\"font-size:30px\",\"text-align:right\",\"line-height:100px\",\"display:none\",\"cursor:pointer\",\"margin-right:15px\"]],[false,\"@media (max-width:992px){\"],[false,{\"header .min-header\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header .min-header\":false},[\"line-height:120px\",\"font-size:50px\"]],[false,\"}\"],[false,{\"header .divmenu\":false},[\"text-align:right\"]],[false,{\"header .menu-menu-interna-container\":false,\"header .menu-menu-principal-container\":false},[\"display:inline-block\"]],[false,{\"header #menu\":false},[\"width:100%\",\"margin:0\",\"padding:0\",\"text-align:right\"]],[false,{\"header #menu li\":false},[\"position:relative\",\"list-style:none\",\"display:inline-block\",\"color:#152649\",\"font-size:13px\",\"padding:0 15px\",\"line-height:100px\",\"text-align:center\",\"font-weight:700\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header #menu li:after\":false},[\"width:0\",\"height:7px\",\"top:50%\",\"margin-top:-3px\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background:#adf231\",\"background:-webkit-linear-gradient(left,#adf231 0,#00dbc5 100%)\",\"background:-o-linear-gradient(left,#adf231 0,#00dbc5 100%)\",\"background:linear-gradient(to right,#adf231 0,#00dbc5 100%)\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"z-index:-1\"]],[false,{\"header #menu li.current-menu-ancestor:after\":false,\"header #menu li.current_page_item:after\":false},[\"width:100%\"]],[false,{\"header #menu li:hover:after\":false},[\"width:100%\"]],[false,\"@media (max-width:992px){\"],[false,{\"header #menu\":false},[\"background-color:#fff\",\"display:none\",\"width:200%\",\"right:0\",\"top:100px\",\"position:absolute\"]],[false,{\"header #menu li\":false},[\"width:100%\",\"display:block\",\"line-height:40px\"]],[false,{\"header #menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header #menu\":false},[\"top:120px\"]],[false,{\"header #menu li\":false},[\"line-height:120px\",\"font-size:15px\"]],[false,\"}\"],[false,{\"header #menu .sub-menu\":false},[\"width:200px\",\"background-color:#fff\",\"display:none\",\"position:absolute\",\"padding:0\",\"text-align:left\",\"margin-left:-15px\",\"margin-top:-20px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header #menu .sub-menu li\":false},[\"display:block\",\"color:#727272\",\"font-weight:400\",\"padding:0 15px\",\"text-align:left\"]],[false,{\"header #menu .sub-menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"line-height:18px\",\"margin:15px 0\"]],[false,{\"header #menu .sub-menu li:hover\":false},[\"color:#00debb\"]],[false,\"@media (max-width:992px){\"],[false,{\"header #menu .sub-menu\":false},[\"position:relative\",\"width:100%\"]],[false,{\"header #menu .sub-menu:not(#_#_#_#_#_#_#_#_#_)\":false},[\"display:block\",\"margin:0\",\"padding:0\"]],[false,{\"header #menu .sub-menu li\":false},[\"color:#152649\",\"font-size:13px\",\"line-height:18px\",\"text-align:center\",\"font-weight:700\",\"margin:15px 0\"]],[false,{\"header #menu .sub-menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header #menu .sub-menu li\":false},[\"line-height:60px\",\"font-size:15px\"]],[false,\"}\"],[false,{\"header .menu-item-has-children:hover .sub-menu:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\"header.mini\":false},[\"height:80px\",\"-webkit-box-shadow:0 0 20px 1px rgba(0,0,0,.1)\",\"box-shadow:0 0 20px 1px rgba(0,0,0,.1)\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini\":false},[\"height:100px\"]],[false,\"}\"],[false,{\"header.mini .logo\":false},[\"line-height:80px\"]],[false,{\"header.mini .logo amp-img\":false,\"header.mini .logo amp-anim\":false},[\"height:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini .logo\":false},[\"line-height:100px\"]],[false,{\"header.mini .logo amp-img\":false,\"header.mini .logo amp-anim\":false},[\"height:40px\"]],[false,\"}\"],[false,{\"header.mini .min-header\":false},[\"line-height:80px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini .min-header\":false},[\"line-height:100px\"]],[false,\"}\"],[false,{\"header.mini #menu li\":false},[\"line-height:80px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini #menu li\":false},[\"line-height:100px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\"header.mini #menu\":false},[\"top:80px\"]],[false,{\"header.mini #menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"line-height:50px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini #menu\":false},[\"top:100px\"]],[false,{\"header.mini #menu li\":false},[\"line-height:100px\"]],[false,\"}\"],[false,{\"header.mini .sub-menu\":false},[\"width:200px\",\"background-color:#fff\",\"display:none\",\"position:absolute\",\"padding:0\",\"text-align:left\",\"margin-left:-15px\",\"margin-top:40px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header.mini .sub-menu:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-bottom:10px\"]],[false,{\"header.mini .sub-menu li\":false},[\"display:block\",\"color:#727272\",\"font-weight:400\",\"text-align:left\",\"margin:15px 0\"]],[false,{\"header.mini .sub-menu li:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:0 15px\",\"line-height:15px\",\"line-height:40px\"]],[false,\"@media (max-width:992px){\"],[false,{\"header.mini .sub-menu li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\"header #menu-item-42>a:not(#_#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,\"}\"],[true,{\"h1\":true},[\"position:relative\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:90px\",\"font-size:90px\",\"color:#152649\",\"margin:0 0 5px\"]],[true,\"@media (min-width:1400px){\"],[true,{\"h1\":true},[\"font-size:110px\",\"line-height:110px\"]],[true,\"}\"],[false,{\"h2\":false},[\"position:relative\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:40px\",\"font-size:40px\",\"color:#152649\",\"margin:0 0 5px\"]],[false,{\"h2 small\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:40px\",\"font-size:40px\"]],[false,{\"h2.white\":false},[\"color:#fff\",\"margin-top:20px\",\"margin-bottom:10px\"]],[false,{\"h2 strong\":false},[\"color:#a1f350\"]],[false,\"@media (min-width:1400px){\"],[false,{\"h2\":false},[\"font-size:60px\",\"line-height:60px\"]],[false,{\"h2 small\":false},[\"font-size:60px\",\"line-height:60px\"]],[false,\"}\"],[true,{\"h3\":true},[\"position:relative\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"color:#152649\",\"margin:0 0 5px\"]],[false,{\"h3.topspace\":false},[\"margin-top:90px\",\"margin-bottom:40px\"]],[true,{\".top-info\":true},[\"width:100%\",\"height:1px\",\"background:-moz-linear-gradient(left,rgba(43,154,199,0) 0,rgba(43,154,199,.84) 21%,#48a8cf 25%,#ccc 50%,#bff466 75%,rgba(183,243,84,.88) 78%,rgba(183,243,84,0) 100%)\",\"background:-webkit-linear-gradient(left,rgba(43,154,199,0) 0,rgba(43,154,199,.84) 21%,#48a8cf 25%,#ccc 50%,#bff466 75%,rgba(183,243,84,.88) 78%,rgba(183,243,84,0) 100%)\",\"background:linear-gradient(to right,rgba(43,154,199,0) 0,rgba(43,154,199,.84) 21%,#48a8cf 25%,#ccc 50%,#bff466 75%,rgba(183,243,84,.88) 78%,rgba(183,243,84,0) 100%)\"]],[false,{\".top-info-devops\":false},[\"width:100%\",\"height:1px\",\"background:#2c9ac7\",\"background:-moz-linear-gradient(left,#2c9ac7 0,#fff 100%)\",\"background:-webkit-linear-gradient(left,#2c9ac7 0,#fff 100%)\",\"background:linear-gradient(to right,#2c9ac7 0,#fff 100%)\",\"margin-bottom:25px\"]],[false,{\".line-gray\":false},[\"width:100%\",\"height:1px\",\"background-color:#ccc\",\"margin:50px 0\"]],[false,{\".top\":false},[\"width:100%\",\"position:relative\",\"margin-top:100px\",\"background-color:#fff\",\"color:#a3a3a3\",\"display:table\"]],[false,{\".top .wrap-top\":false},[\"display:table-row\",\"width:100%\",\"height:100%\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,{\".top .wrap-top .content\":false},[\"display:table-cell\",\"width:100%\",\"height:100%\",\"vertical-align:middle\"]],[false,{\".top-home h2\":false},[\"position:relative\",\"margin-top:30px\",\"padding-top:30px\"]],[false,{\".top-home h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#6ecff4\"]],[false,{\".top-home h2:hover:after\":false},[\"width:70px\",\"background-color:#b7f254\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-home h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".top-home .wrap-top\":false},[\"text-align:center\"]],[false,{\".top-home .wrap-top:not(#_#_#_#_#_#_#_)\":false},[\"background-image:none\"]],[false,\"}\"],[false,{\".services\":false},[\"width:100%\",\"position:relative\",\"background-color:#f8f8f8\",\"padding-bottom:100px\"]],[false,\"@media (max-width:992px){\"],[false,{\".services\":false},[\"padding-bottom:50px\"]],[false,\"}\"],[false,{\".services .top-info\":false},[\"margin-bottom:100px\"]],[false,{\".services .info-text\":false},[\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:35px\",\"font-size:25px\",\"color:#8c8c8c\",\"text-align:center\",\"margin-bottom:100px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".services .info-text\":false},[\"line-height:43px\",\"font-size:33px\"]],[false,\"}\"],[false,{\".services .service\":false},[\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:35px\",\"font-size:25px\",\"color:#152649\",\"text-align:center\"]],[false,{\".services .service .icon\":false},[\"text-align:center\",\"border-right:1px solid #ccc\",\"margin-bottom:50px\"]],[false,{\".services .service .icon.last\":false},[\"border:0\"]],[false,{\".services .service .icon amp-img\":false,\".services .service .icon amp-anim\":false},[\"max-height:140px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".services .service .icon amp-img\":false,\".services .service .icon amp-anim\":false},[\"max-height:170px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".services .service .icon\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".services .service\":false},[\"margin-bottom:50px\"]],[false,\"}\"],[true,{\".wephrase\":true},[\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:60px\",\"font-size:60px\",\"color:#152649\"]],[true,{\".wephrase .wrap-phrase\":true},[\"display:inline-block\"]],[false,{\".wephrase .dot\":false},[\"display:inline-block\",\"color:#b7f254\",\"animation:blinker 1s linear infinite\"]],[true,\"@keyframes blinker{\"],[true,\"50%{opacity:0}\"],[true,\"}\"],[false,{\".microservices\":false},[\"width:100%\",\"position:relative\",\"background-color:#efefef\",\"-webkit-box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices\":false},[\"height:auto\"]],[false,{\".microservices:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".microservices\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".microservices .service-padding\":false},[\"padding:100px 0\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-microservices.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top -30px right\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".microservices amp-img\":false,\".microservices amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices amp-img\":false,\".microservices amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".microservices amp-img\":false,\".microservices amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,{\".microservices h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".microservices h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#b8b8b8\"]],[false,{\".microservices h2:hover:after\":false},[\"width:70px\",\"background-color:#b7f254\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".microservices .btn1 .mask-btn\":false},[\"background-color:#efefef\"]],[false,{\".microservices .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".machine_learning\":false},[\"width:100%\",\"position:relative\",\"background-color:#f2f2f2\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning\":false},[\"height:auto\"]],[false,{\".machine_learning:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".machine_learning\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".machine_learning h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".machine_learning h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#b993e7\"]],[false,{\".machine_learning h2:hover:after\":false},[\"width:70px\",\"background-color:#1ab7d5\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".machine_learning .btn1\":false},[\"background:#9061d7\",\"background:-moz-linear-gradient(left,#9061d7 0,#2c99c8 100%)\",\"background:-webkit-linear-gradient(left,#9061d7 0,#2c99c8 100%)\",\"background:linear-gradient(to right,#9061d7 0,#2c99c8 100%)\"]],[false,{\".machine_learning .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\"]],[false,{\".machine_learning .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".machine_learning .service-padding\":false},[\"padding:100px 0\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-ml.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top -10px right\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".machine_learning .wrap-image\":false},[\"text-align:right\"]],[false,{\".machine_learning amp-img\":false,\".machine_learning amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning amp-img\":false,\".machine_learning amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".machine_learning amp-img\":false,\".machine_learning amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,{\".machine_learning .subitems .item:after\":false},[\"background:#2c99c8\",\"background:-moz-linear-gradient(top,#2c99c8 0,#9061d7 100%)\",\"background:-webkit-linear-gradient(top,#2c99c8 0,#9061d7 100%)\",\"background:linear-gradient(to bottom,#2c99c8 0,#9061d7 100%)\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".digital_transformation\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation\":false},[\"height:auto\"]],[false,{\".digital_transformation:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".digital_transformation\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".digital_transformation h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".digital_transformation h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".digital_transformation h2:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".digital_transformation .btn1\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to right,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".digital_transformation .btn1 .mask-btn\":false},[\"background-color:#fff\"]],[false,{\".digital_transformation .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".digital_transformation .service-padding\":false},[\"padding:100px 0\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".digital_transformation .wrap-image\":false},[\"text-align:right\"]],[false,{\".digital_transformation amp-img\":false,\".digital_transformation amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation amp-img\":false,\".digital_transformation amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".digital_transformation amp-img\":false,\".digital_transformation amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,{\".digital_transformation .subitems .item:after\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to bottom,#02c6d9 0,#05d2d9 100%)\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".devops\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"-webkit-box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops\":false},[\"height:auto\"]],[false,{\".devops:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".devops\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".devops h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".devops h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#95f896\"]],[false,{\".devops h2:hover:after\":false},[\"width:70px\",\"background-color:#2d98c6\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".devops .service-padding\":false},[\"padding:100px 0\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-devops.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top right\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".devops amp-img\":false,\".devops amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops amp-img\":false,\".devops amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".devops amp-img\":false,\".devops amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".devops .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".call_to_action\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"text-align:center\",\"padding:50px 0\"]],[false,{\".call_to_action.about-box\":false},[\"background-color:#f7f7f7\",\"-webkit-box-shadow:inset 0 -10px 30px -10px rgba(0,0,0,.3)\",\"box-shadow:inset 0 -10px 30px -10px rgba(0,0,0,.3)\"]],[false,{\".call_to_action.about-box .btn1 .mask-btn\":false},[\"background-color:#f7f7f7\"]],[false,{\".call_to_action.about-box .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process\":false},[\"width:100%\",\"position:relative\",\"background-color:#ccc\",\"overflow:hidden\"]],[false,{\".process .process-item\":false},[\"width:100%\",\"padding:80px\",\"height:500px\"]],[false,{\".process .process-item p\":false},[\"height:100px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process .process-item p\":false},[\"height:130px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item:not(#_#_#_#_#_#_#_)\":false},[\"padding:80px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".process .process-item\":false},[\"height:600px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".process\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".process .process-item-1\":false},[\"position:relative\",\"background:#15a3cc\",\"background:-moz-linear-gradient(left,#15a3cc 0,#15b5d5 100%)\",\"background:-webkit-linear-gradient(left,#15a3cc 0,#15b5d5 100%)\",\"background:linear-gradient(to right,#15a3cc 0,#15b5d5 100%)\"]],[false,{\".process .process-item-1:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:28px\",\"height:97px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrow1.png\\\")\",\"top:3px\",\"right:-28px\",\"z-index:2\"]],[false,{\".process .process-item-1 h2.white\":false},[\"position:relative\",\"padding-top:30px\"]],[false,{\".process .process-item-1 h2.white:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#6ecff4\"]],[false,{\".process .process-item-1 h2.white:hover:after\":false},[\"width:70px\",\"background-color:#152649\"]],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item-1 h2.white:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process .process-item-2\":false},[\"position:relative\",\"padding-top:125px\",\"background:#c4c4c4\",\"background:-moz-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:-webkit-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:linear-gradient(to right,#c4c4c4 0,#ccc 100%)\"]],[false,{\".process .process-item-2:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:28px\",\"height:97px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrow2.png\\\")\",\"top:3px\",\"right:-28px\",\"z-index:2\"]],[false,{\".process .process-item-2 h2.white\":false},[\"position:relative\",\"padding-top:30px\"]],[false,{\".process .process-item-2 h2.white:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background:#878787\",\"background:-moz-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:-webkit-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:linear-gradient(to right,#878787 0,#aeaeae 100%)\"]],[false,{\".process .process-item-2 h2.white:hover:after\":false},[\"width:70px\",\"background-color:#878787\"]],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item-2 h2.white:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process .process-item-3\":false},[\"position:relative\",\"padding-top:125px\",\"background:-moz-linear-gradient(left,#00debb 0,#90f247 100%)\",\"background:-webkit-linear-gradient(left,#00debb 0,#90f247 100%)\",\"background:linear-gradient(to right,#00debb 0,#90f247 100%)\"]],[false,{\".process .process-item-3 h2.white\":false},[\"position:relative\",\"padding-top:30px\"]],[false,{\".process .process-item-3 h2.white:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#6ecff4\"]],[false,{\".process .process-item-3 h2.white:hover:after\":false},[\"width:70px\",\"background-color:#152649\"]],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item-3 h2.white:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".case_study\":false},[\"width:100%\",\"position:relative\",\"background-color:#f1f1f1\",\"padding:100px 0 70px\"]],[false,\"@media (max-width:992px){\"],[false,{\".case_study\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".case_study h2\":false},[\"margin-bottom:20px\",\"position:relative\",\"padding-top:50px\"]],[false,{\".case_study h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#b8b8b8\"]],[false,{\".case_study h2:hover:after\":false},[\"width:70px\"]],[false,\"@media (max-width:992px){\"],[false,{\".case_study h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".case_study .btn1\":false},[\"margin-top:30px\"]],[false,{\".case_study .btn1 .mask-btn\":false},[\"background-color:#f1f1f1\"]],[false,{\".case_study .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".case_study .wrap-image\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-case-home.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top center\",\"background-size:100% auto\"]],[false,\"@media (max-width:992px){\"],[false,{\".case_study .wrap-image\":false},[\"margin-top:40px\"]],[false,\"}\"],[false,{\".partners\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"text-align:center\",\"padding:50px 0\"]],[false,{\".partners .owl-dots\":false},[\"width:100%\",\"position:relative\",\"text-align:center\"]],[false,{\".partners .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".partners .owl-dots .owl-dot\":false},[\"width:6px\",\"height:6px\",\"background-color:#ccc\",\"display:inline-block\",\"margin:0 10px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\"]],[false,{\".partners .owl-dots .owl-dot.active\":false},[\"background-color:#3b3b3b\"]],[false,{\".about-intern\":false},[\"background-color:#f7f7f7\",\"color:#152649\",\"font-size:13px\"]],[false,{\".about-intern h1\":false},[\"font-size:50px\",\"line-height:50px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-intern\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".about-intern .btn1\":false},[\"margin-bottom:20px\"]],[false,{\".about-intern .btn1 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".about-intern .wrap-top\":false},[\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:bottom center\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-intern .wrap-top\":false},[\"text-align:center\"]],[false,{\".about-intern .wrap-top:not(#_#_#_#_#_#_#_)\":false},[\"background-image:none\"]],[false,\"}\"],[false,{\".cases-intern\":false},[\"background-color:#fff\",\"color:#fff\",\"font-size:13px\",\"background-position:right\",\"background-repeat:no-repeat\",\"background-size:auto 100%\"]],[false,\"@media (max-width:992px){\"],[false,{\".cases-intern\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".cases-intern\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".cases-intern h1\":false},[\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:40px\",\"font-size:40px\",\"color:#fff\",\"margin:0 0 5px\"]],[false,{\".cases-intern h1 small\":false},[\"color:#00ddbd\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:20px\",\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".cases-intern h1\":false},[\"line-height:50px\",\"font-size:50px\"]],[false,{\".cases-intern h1 small\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".cases-intern .wrap-top\":false},[\"background:-moz-linear-gradient(left,#002048 0,rgba(0,32,72,.1) 50%,rgba(0,32,72,0) 65%,rgba(0,32,72,0) 100%)\",\"background:-webkit-linear-gradient(left,#002048 0,#002048 50%,rgba(0,32,72,0) 65%,rgba(0,32,72,0) 100%)\",\"background:linear-gradient(to right,#002048 0,#002048 50%,rgba(0,32,72,0) 65%,rgba(0,32,72,0) 100%)\"]],[false,\"@media (max-width:992px){\"],[false,{\".cases-intern .wrap-top\":false},[\"background:#002048\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".content-cases\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".content-cases .gray\":false},[\"font-size:14px\",\"background-color:#f7f7f7\",\"color:#6b6b6b\",\"padding:40px 40px 20px\",\"margin-top:-60px\",\"margin-bottom:50px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".content-cases .gray\":false},[\"font-size:16px\",\"line-height:18px\"]],[false,\"}\"],[false,{\".content-cases h3\":false},[\"color:#6b6b6b\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:20px\",\"font-size:20px\",\"margin-bottom:10px\"]],[false,{\".content-cases .content-cases2\":false},[\"color:#6b6b6b\",\"padding:50px 0 30px\"]],[false,{\".content-cases .bg-gray\":false},[\"font-size:14px\",\"background-color:#f7f7f7\",\"color:#6b6b6b\",\"padding:15px\",\"margin-bottom:50px\"]],[false,{\".content-cases .content-downgray\":false},[\"text-align:center\"]],[false,{\".content-cases .content-downgray amp-img\":false,\".content-cases .content-downgray amp-anim\":false},[\"max-width:60%\"]],[false,{\".content-cases .content-downgray .top-info\":false},[\"margin:70px 0\"]],[false,{\".content-cases .owl-dots\":false},[\"margin-top:20px\",\"width:100%\",\"position:relative\",\"text-align:center\"]],[false,{\".content-cases .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".content-cases .owl-dots .owl-dot\":false},[\"width:6px\",\"height:6px\",\"background-color:#ccc\",\"display:inline-block\",\"margin:0 10px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\"]],[false,{\".content-cases .owl-dots .owl-dot.active\":false},[\"background-color:#3b3b3b\"]],[false,{\".content-cases .gallery-cases\":false},[\"margin-top:70px\"]],[false,{\".content-cases .gallery-cases amp-img\":false,\".content-cases .gallery-cases amp-anim\":false},[\"border:2px solid #ccc\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\"]],[false,{\".content-cases .gallery-cases amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".content-cases .gallery-cases amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".process-intern\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"color:#b2b2b2\",\"font-size:20px\",\"line-height:40px\",\"font-family:Rajdhani\",\"font-weight:700\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process-intern\":false},[\"font-size:30px\",\"line-height:50px\"]],[false,\"}\"],[false,{\".process-intern .wrap-top\":false},[\"background-position:bottom center\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\"]],[false,\"@media (max-width:992px){\"],[false,{\".process-intern .wrap-top\":false},[\"background-position:bottom center\",\"text-align:center\"]],[false,{\".process-intern .wrap-top:not(#_#_#_#_#_#_#_)\":false},[\"background-image:none\"]],[false,\"}\"],[false,{\".about-process\":false},[\"width:100%\",\"position:relative\",\"background-color:#f1f1f1\",\"padding:70px 0\",\"text-align:center\"]],[false,{\".about-process .wephrase\":false},[\"font-size:35px\",\"line-height:35px\",\"margin-bottom:30px\"]],[false,{\".about-process .top-info\":false},[\"margin-top:100px\"]],[false,{\".line-process\":false},[\"width:60%\",\"height:1px\",\"margin:50px 20%\",\"background:#2b9ac7\",\"background:-moz-linear-gradient(left,#2b9ac7 0,#fff 100%)\",\"background:-webkit-linear-gradient(left,#2b9ac7 0,#fff 100%)\",\"background:linear-gradient(to right,#2b9ac7 0,#fff 100%)\"]],[false,{\".process-part\":false},[\"width:100%\",\"position:relative\",\"padding:70px 0\",\"font-size:13px\"]],[false,\"@media (max-width:992px){\"],[false,{\".process-part .btn1\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".process-part\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".process1\":false},[\"background-color:#15a7ce\",\"color:#002048\",\"font-weight:500\"]],[false,{\".process1 h2\":false},[\"color:#fff\",\"line-height:20px\"]],[false,{\".process1 h2 small\":false},[\"color:#98e36c\",\"font-size:18px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process1 h2\":false},[\"line-height:50px\"]],[false,{\".process1 h2 small\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".process1 h3\":false},[\"color:#fff\",\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process1 h3\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".process1 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process1:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:70px\",\"height:35px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrowd1.png\\\")\",\"background-position:bottom center\",\"bottom:-35px\",\"margin-left:50%\",\"left:-35px\",\"z-index:2\"]],[false,{\".process1 .lineb\":false},[\"width:2px\",\"height:600px\",\"margin:0 auto\",\"background-color:rgba(255,255,255,.2)\"]],[false,{\".process1 .centro\":false},[\"text-align:center\"]],[false,{\".process1 .centro amp-img\":false,\".process1 .centro amp-anim\":false},[\"max-width:100px\"]],[false,\"@media (max-width:992px){\"],[false,{\".process1 .centro\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process2\":false},[\"background-color:#d7d7d7\",\"color:#565656\",\"font-weight:500\"]],[false,{\".process2 h2\":false},[\"margin-bottom:30px\"]],[false,{\".process2 h3\":false},[\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process2 h3\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".process2 .check-items\":false},[\"margin:20px 0\"]],[false,{\".process2 .check-items .icheck\":false},[\"position:relative\",\"padding-left:30px\",\"min-height:30px\",\"font-size:20px\",\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:20px\",\"padding-top:5px\"]],[false,{\".process2 .check-items .icheck:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:20px\",\"height:100%\",\"top:0\",\"left:0\",\"background-repeat:no-repeat\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/checkb.png\\\")\",\"background-position:center\",\"background-size:100% auto\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process2 .check-items .icheck\":false},[\"font-size:23px\",\"line-height:23px\"]],[false,\"}\"],[false,{\".process2 .btn1\":false},[\"background:#c4c4c4\",\"background:-moz-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:-webkit-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:linear-gradient(to right,#c4c4c4 0,#ccc 100%)\"]],[false,{\".process2 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process2:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:70px\",\"height:35px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrowd2.png\\\")\",\"background-position:bottom center\",\"bottom:-35px\",\"margin-left:50%\",\"left:-35px\",\"z-index:2\"]],[false,\"@media (max-width:992px){\"],[false,{\".process2 amp-img\":false,\".process2 amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process3\":false},[\"color:#002048\",\"background:#38cea3\",\"background:-moz-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:-webkit-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:linear-gradient(to right,#38cea3 0,#75e168 100%)\",\"font-weight:500\"]],[false,{\".process3 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process3 h2\":false},[\"color:#fff\"]],[false,{\".process3 .check-items\":false},[\"margin:20px 0\"]],[false,{\".process3 .check-items .icheck\":false},[\"position:relative\",\"padding-left:15px\",\"padding-left:10px\",\"margin-left:35px\",\"min-height:30px\",\"font-size:14px\",\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:20px\",\"margin-bottom:20px\",\"border-left:1px solid #fff\"]],[false,{\".process3 .check-items .icheck:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:20px\",\"height:100%\",\"top:0\",\"left:-35px\",\"background-repeat:no-repeat\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/checkb.png\\\")\",\"background-position:left center\",\"background-size:100% auto\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process3 .check-items .icheck\":false},[\"font-size:23px\",\"line-height:23px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".process3 amp-img\":false,\".process3 amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".end-process\":false},[\"width:100%\",\"position:relative\",\"background-color:#f6f6f6\",\"padding:70px 0\",\"text-align:center\"]],[false,{\".end-process .wephrase\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,{\".end-process .logos\":false},[\"text-align:center\",\"margin-top:50px\"]],[false,{\".end-process .logos amp-img\":false,\".end-process .logos amp-anim\":false},[\"display:inline-block\",\"height:90px\",\"margin:0 30px\",\"-webkit-transition:all .2s ease-in-out\",\"-moz-transition:all .2s ease-in-out\",\"transition:all .2s ease-in-out\",\"-webkit-filter:grayscale(100%)\"]],[false,{\".end-process .logos amp-img:hover\":false,\".end-process .logos amp-anim:hover\":false},[\"-webkit-filter:grayscale(0)\"]],[false,{\".end-process .logos amp-img.menor\":false,\".end-process .logos amp-anim.menor\":false},[\"height:80px\"]],[false,\"@media (max-width:992px){\"],[false,{\".end-process .logos amp-img\":false,\".end-process .logos amp-anim\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".end-process .logos amp-img\":false,\".end-process .logos amp-anim\":false},[\"height:120px\"]],[false,{\".end-process .logos amp-img.menor\":false,\".end-process .logos amp-anim.menor\":false},[\"height:110px\"]],[false,\"}\"],[false,{\".top-service\":false},[\"width:100%\",\"height:370px\",\"position:relative\",\"margin-top:120px\",\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"color:#fff\",\"display:table\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".top-service .wrap-top\":false},[\"display:table-row\",\"width:100%\",\"height:100%\"]],[false,{\".top-service .wrap-top .content\":false},[\"display:table-cell\",\"width:100%\",\"height:100%\",\"vertical-align:middle\",\"font-size:12px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".top-service .wrap-top .content\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".top-service .logo\":false},[\"margin-left:-10px\",\"margin-bottom:10px\"]],[false,{\".top-service .logo amp-google-document-embed\":false},[\"width:110px\"]],[false,{\".top-service .logo amp-img\":false,\".top-service .logo amp-anim\":false},[\"width:110px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".top-service .logo amp-img\":false,\".top-service .logo amp-anim\":false},[\"width:150px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".top-service .logo\":false},[\"margin-left:0\"]],[false,\"}\"],[false,{\".top-service h1\":false},[\"color:#fff\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".top-service.service-devops\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-devops\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-machine\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-machine\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-micro\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-micro\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-digital\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\",\"color:#152649\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-digital\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-digital h1\":false},[\"color:#152649\"]],[false,{\".disclaimer\":false},[\"width:100%\",\"position:relative\",\"padding:45px 0\"]],[false,{\".disclaimer.service-devops\":false},[\"background-color:#b7f254\",\"text-align:center\",\"font-size:13px\"]],[false,{\".disclaimer.service-devops .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-devops .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-devops\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".disclaimer.service-machine\":false},[\"background-color:#83adfb\",\"text-align:center\",\"font-size:13px\"]],[false,{\".disclaimer.service-machine .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-machine .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-machine\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".disclaimer.service-micro\":false},[\"background-color:#152649\",\"text-align:center\",\"font-size:13px\",\"color:#fff\"]],[false,{\".disclaimer.service-micro .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-micro .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-micro\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".disclaimer.service-digital\":false},[\"background-color:#05bed4\",\"text-align:center\",\"font-size:13px\",\"color:#fff\"]],[false,{\".disclaimer.service-digital .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-digital .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-digital\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".about-service\":false},[\"width:100%\",\"position:relative\",\"padding:0\",\"margin:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .btn:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".about-service .wrap-image\":false},[\"text-align:left\",\"padding-top:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".about-service ul\":false},[\"margin:0\",\"padding:0\"]],[false,{\".about-service li\":false},[\"list-style:none\",\"position:relative\",\"padding-left:30px\",\"min-height:30px\",\"font-size:14px\",\"font-family:Raleway\",\"font-weight:500\",\"line-height:18px\",\"padding-top:5px\",\"margin-bottom:20px\"]],[false,{\".about-service li:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:20px\",\"height:100%\",\"top:0\",\"left:0\",\"background-repeat:no-repeat\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/checkc.png\\\")\",\"background-position:center\",\"background-size:100% auto\"]],[false,{\".about-service.service-devops\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-devops .btn1\":false},[\"background:#cce191\",\"background:-moz-linear-gradient(left,#cce191 0,#ccc 50%,#7cb1cc 100%)\",\"background:-webkit-linear-gradient(left,#cce191 0,#ccc 50%,#7cb1cc 100%)\",\"background:linear-gradient(to right,#cce191 0,#ccc 50%,#7cb1cc 100%)\",\"margin-bottom:20px\"]],[false,{\".about-service.service-devops .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#767e8e\"]],[false,{\".about-service.service-devops .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service.service-machine\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-machine .btn1\":false},[\"background:#4e2e7c\",\"background:-moz-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:-webkit-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:linear-gradient(to right,#4e2e7c 0,#38a3cc 100%)\",\"margin-bottom:20px\"]],[false,{\".about-service.service-machine .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#767e8e\"]],[false,{\".about-service.service-machine .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service.service-micro\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-micro .btn1\":false},[\"background:#878787\",\"background:-moz-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:-webkit-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:linear-gradient(to right,#878787 0,#aeaeae 100%)\",\"margin-bottom:20px\"]],[false,{\".about-service.service-micro .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#767e8e\"]],[false,{\".about-service.service-micro .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service.service-digital\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-digital .btn1\":false},[\"margin-bottom:20px\",\"background:#02c6d9\",\"background:-moz-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to right,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".about-service.service-digital .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#2d98c6\"]],[false,{\".about-service.service-digital .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about\":false},[\"padding:0\",\"color:#8c8c8c\",\"overflow:hidden\",\"position:relative\"]],[false,{\".about-service .content-about .clearfix\":false},[\"width:100%\"]],[false,{\".about-service .content-about .menu-items\":false},[\"margin-top:0\",\"margin-bottom:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .content-about .menu-items\":false},[\"margin:30px 0\",\"text-align:center\"]],[false,\"}\"],[false,{\".about-service .content-about .menu-items .btn\":false},[\"width:100%\",\"text-align:center\",\"line-height:50px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"font-family:Rajdhani\",\"font-weight:400\",\"margin-bottom:0\",\"margin-top:0\",\"font-size:20px\",\"text-transform:uppercase\"]],[false,{\".about-service .content-about .menu-items .active .btn\":false},[\"font-weight:700\"]],[false,{\".about-service .content-about .menu-items.service-devops\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-devops .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-devops .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-devops a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-devops a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-machine\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-machine .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-machine .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-machine a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-machine a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-micro\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-micro .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-micro .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-micro a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-micro a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-digital\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-digital .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-digital .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-digital a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-digital a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .slider-about\":false},[\"line-height:16px\",\"padding-top:70px\"]],[false,{\".about-service .slider-about:not(#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-service .slider-about\":false},[\"line-height:18px\"]],[false,{\".about-service .slider-about:not(#_#_#_#_#_#_#_)\":false},[\"font-size:15px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".about-service .slider-about\":false},[\"text-align:center\"]],[false,{\".about-service .slider-about:not(#_#_#_#_#_#_#_)\":false},[\"font-size:13px\"]],[false,\"}\"],[false,{\".about-service .slider-about h3\":false},[\"font-size:22px\",\"line-height:22px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-service .slider-about h3\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".about-service .slider-about .hand-call\":false},[\"border-top:1px solid #143260\",\"padding-top:30px\",\"margin-top:10px\",\"display:inline-block\"]],[false,{\".about-service .slider-about .border\":false},[\"width:80%\",\"margin-top:20px\",\"margin-bottom:40px\",\"margin-left:10%\"]],[false,{\".about-service .slider-about .border:not(#_#_#_#_#_#_#_)\":false},[\"border:0\",\"border-bottom:1px solid #ccc\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .row\":false},[\"margin:0\"]],[false,\"}\"],[true,{\".intern-about\":true},[\"width:100%\",\"position:relative\",\"padding:70px 0\",\"background-color:#fff\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-intern.jpg\\\")\",\"background-position:bottom center\",\"background-repeat:no-repeat\",\"background-size:100% auto\",\"text-align:center\",\"color:#8c8c8c\",\"font-family:Rajdhani\",\"font-weight:400\",\"font-size:20px\",\"line-height:20px\"]],[true,\"@media (min-width:1400px){\"],[true,{\".intern-about\":true},[\"font-size:25px\",\"line-height:25px\"]],[true,\"}\"],[true,{\".intern-about .logos\":true},[\"text-align:center\",\"margin-top:50px\"]],[true,{\".intern-about .logos amp-img\":true,\".intern-about .logos amp-anim\":false},[\"display:inline-block\",\"height:90px\",\"margin:0 30px\",\"-webkit-transition:all .2s ease-in-out\",\"-moz-transition:all .2s ease-in-out\",\"transition:all .2s ease-in-out\",\"-webkit-filter:grayscale(100%)\"]],[true,{\".intern-about .logos amp-img:hover\":true,\".intern-about .logos amp-anim:hover\":false},[\"-webkit-filter:grayscale(0)\"]],[true,{\".intern-about .logos amp-img.menor\":true,\".intern-about .logos amp-anim.menor\":false},[\"height:80px\"]],[true,\"@media (max-width:992px){\"],[true,{\".intern-about .logos amp-img\":true,\".intern-about .logos amp-anim\":false},[\"margin-bottom:20px\"]],[true,\"}\"],[true,\"@media (min-width:1400px){\"],[true,{\".intern-about .logos amp-img\":true,\".intern-about .logos amp-anim\":false},[\"height:120px\"]],[true,{\".intern-about .logos amp-img.menor\":true,\".intern-about .logos amp-anim.menor\":false},[\"height:110px\"]],[true,\"}\"],[false,{\".items-service\":false},[\"width:100%\",\"padding:0\",\"margin:0\",\"position:relative\"]],[false,{\".items-service.service-devops\":false},[\"background:#38cea3\",\"background:-moz-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:-webkit-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:linear-gradient(to right,#38cea3 0,#75e168 100%)\"]],[false,{\".items-service.service-machine\":false},[\"background:#4e2e7c\",\"background:-moz-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:-webkit-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:linear-gradient(to right,#4e2e7c 0,#38a3cc 100%)\"]],[false,{\".items-service.service-micro\":false},[\"background:#13203c\",\"background:-moz-linear-gradient(left,#13203c 0,#9d9c9c 100%)\",\"background:-webkit-linear-gradient(left,#13203c 0,#9d9c9c 100%)\",\"background:linear-gradient(to right,#13203c 0,#9d9c9c 100%)\"]],[false,{\".items-service.service-digital\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to right,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".items-service .box-item\":false},[\"position:relative\",\"height:300px\",\"overflow:hidden\"]],[false,\"@media (min-width:1400px){\"],[false,{\".items-service .box-item\":false},[\"height:350px\"]],[false,\"}\"],[false,{\".items-service .box-item .up\":false},[\"position:relative\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"width:100%\",\"height:300px\",\"padding:0\"]],[false,\"@media (min-width:1400px){\"],[false,{\".items-service .box-item .up\":false},[\"height:350px\"]],[false,\"}\"],[false,{\".items-service .box-item .up .bg-image\":false},[\"opacity:.5\",\"background-size:auto 110%\",\"background-position:center\",\"background-repeat:no-repeat\",\"width:100%\",\"height:100%\",\"position:absolute\",\"left:0\",\"top:0\",\"z-index:0\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".items-service .box-item .up .bg-image2\":false},[\"opacity:.5\",\"background-size:auto 110%\",\"background-position:center\",\"background-repeat:no-repeat\",\"width:100%\",\"height:100%\",\"position:absolute\",\"left:0\",\"top:0\",\"z-index:0\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".items-service .box-item .up .wrap-absol\":false},[\"width:100%\",\"height:100%\",\"position:absolute\",\"left:0\",\"top:0\",\"z-index:1\",\"display:table\",\"padding:20px\"]],[false,{\".items-service .box-item .up .wrap-content\":false},[\"display:table-row\",\"width:100%\",\"height:100%\",\"position:relative\"]],[false,{\".items-service .box-item .up .wrap-content .button\":false},[\"width:100%\",\"height:100%\",\"display:table-cell\",\"vertical-align:middle\",\"text-align:center\"]],[false,{\".items-service .box-item .up .wrap-content .btn1\":false},[\"background:0\"]],[false,{\".items-service .box-item .up .wrap-content .btn1:not(#_#_#_#_#_#_#_)\":false},[\"background-color:rgba(0,0,0,0)\"]],[false,{\".items-service .box-item .up .wrap-content .btn1 .mask-btn\":false},[\"border:1px solid #fff\",\"font-weight:500\",\"background-color:rgba(255,255,255,.3)\",\"color:#fff\"]],[false,{\".items-service .box-item .up .wrap-content .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".items-service .box-item .up:hover .bg-image\":false,\".items-service .box-item .up:hover .bg-image2\":false},[\"background-size:auto 130%\"]],[false,{\".items-service .box-item .down\":false},[\"background:#38cea3\",\"background:-webkit-linear-gradient(top,#38cea3 0,#75e168 100%)\",\"background:-o-linear-gradient(top,#38cea3 0,#75e168 100%)\",\"background:linear-gradient(to bottom,#38cea3 0,#75e168 100%)\",\"width:100%\",\"height:300px\",\"padding:20px\",\"color:#fff\",\"font-size:13px\"]],[false,{\".items-service .box-item .down .wrap-all\":false},[\"width:100%\",\"height:260px\"]],[false,{\".items-service.service-machine .down\":false},[\"background:#4e2e7c\",\"background:-moz-linear-gradient(top,#4e2e7c 0,#38a3cc 100%)\",\"background:-webkit-linear-gradient(top,#4e2e7c 0,#38a3cc 100%)\",\"background:linear-gradient(to bottom,#4e2e7c 0,#38a3cc 100%)\"]],[false,{\".items-service.service-micro .down\":false},[\"background:#13203c\",\"background:-moz-linear-gradient(top,#13203c 0,#9d9c9c 100%)\",\"background:-webkit-linear-gradient(top,#13203c 0,#9d9c9c 100%)\",\"background:linear-gradient(to bottom,#13203c 0,#9d9c9c 100%)\"]],[false,{\".items-service.service-digital .down\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to bottom,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".phrase\":false},[\"width:100%\",\"position:relative\",\"padding:50px 0\",\"background-color:#ededed\",\"text-align:center\",\"font-family:Rajdhani\",\"font-weight:400\",\"font-size:20px\",\"line-height:20px\",\"color:#152649\"]],[false,{\".phrase .author\":false},[\"font-size:11px\",\"line-height:11px\",\"color:#9c9c9c\",\"text-transform:uppercase\",\"letter-spacing:5px\",\"margin-top:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".phrase\":false},[\"font-size:25px\",\"line-height:25px\"]],[false,{\".phrase .author\":false},[\"font-size:14px\",\"line-height:14px\"]],[false,\"}\"],[false,{\".about-idea\":false},[\"width:100%\",\"position:relative\",\"padding:50px 0\",\"background-color:#fff\"]],[false,{\".about-idea amp-img\":false,\".about-idea amp-anim\":false},[\"margin-top:35px\",\"margin-bottom:35px\"]],[false,{\".about-idea .btn1\":false},[\"width:100%\",\"text-align:center\"]],[false,{\".about-idea .btn1 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-idea .btn1\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,{\".about-idea .top-info\":false},[\"margin:50px 0\"]],[false,{\".about-idea .withborder\":false},[\"border-left:1px solid #ccc\",\"padding-top:10px\",\"margin-bottom:70px\",\"font-size:17px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-idea .withborder\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,\"}\"],[false,{\".about-idea .big\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"font-size:20px\",\"line-height:20px\",\"color:#152649\",\"margin-top:40px\",\"text-align:center\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-idea .big\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".about-idea\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".hand-call\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:22px\",\"font-size:22px\",\"color:#152649\",\"text-align:left\"]],[false,\"@media (min-width:1400px){\"],[false,{\".hand-call\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".hand-call .border-call\":false},[\"padding-left:20px\",\"margin-bottom:20px\",\"position:relative\"]],[false,{\".hand-call .border-call:before\":false},[\"width:1px\",\"height:100%\",\"position:absolute\",\"content:\\\"\\\"\",\"left:0\",\"top:0\",\"background:#b5f155\",\"background:-moz-linear-gradient(top,#b5f155 0,#2e9cc5 100%)\",\"background:-webkit-linear-gradient(top,#b5f155 0,#2e9cc5 100%)\",\"background:linear-gradient(to bottom,#b5f155 0,#2e9cc5 100%)\"]],[false,{\".hand-call .arrow\":false},[\"padding-left:50px\",\"position:relative\",\"position:relative\"]],[false,{\".hand-call .arrow:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"top:0\",\"left:0\",\"width:30px\",\"height:44px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrow.png\\\")\"]],[false,{\".qualities\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"padding:50px 0\"]],[false,{\".qualities .hand-call\":false},[\"text-align:center\"]],[false,{\".qualities .hand-call .border-call\":false},[\"display:inline-block\",\"text-align:left\"]],[false,{\".qualities .hand-call .arrow\":false},[\"margin-left:20px\",\"display:inline-block\",\"text-align:left\"]],[false,{\".qualities .circles-menu\":false},[\"margin-top:0\",\"margin-bottom:50px\"]],[false,{\".qualities .circles-menu .text-circle:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".qualities .ctext\":false},[\"text-align:center\",\"font-size:13px\",\"font-weight:500\",\"margin-top:30px\",\"padding-top:30px\",\"position:relative\"]],[false,{\".qualities .ctext:after\":false},[\"width:70px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"margin-left:50%\",\"left:-35px\",\"position:absolute\",\"content:\\\"\\\"\"]],[false,{\".qualities .ctext.text1:after\":false},[\"background-color:#9ef34b\"]],[false,{\".qualities .ctext.text2:after\":false},[\"background-color:#d1d1d1\"]],[false,{\".qualities .ctext.text3:after\":false},[\"background-color:#13b5d6\"]],[false,{\".gallery-logos .item\":false},[\"display:table\",\"width:100%\",\"height:100px\"]],[false,{\".gallery-logos .item .wrap-item\":false},[\"width:100%\",\"height:100%\",\"display:table-row\"]],[false,{\".gallery-logos .item .wrap-item .image\":false},[\"width:100%\",\"height:100%\",\"display:table-cell\",\"vertical-align:middle\",\"text-align:center\"]],[false,{\".gallery-logos .item .wrap-item .image amp-img\":false,\".gallery-logos .item .wrap-item .image amp-anim\":false},[\"max-width:80%\",\"width:auto\",\"max-height:50px\",\"height:auto\",\"display:inline-block\"]],[false,\"@media (min-width:1400px){\"],[false,{\".gallery-logos .item .wrap-item .image amp-img\":false,\".gallery-logos .item .wrap-item .image amp-anim\":false},[\"max-height:70px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".contact\":false,\".text-contact\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".top-contact\":false},[\"line-height:90px\",\"position:relative\",\"width:100%\",\"margin-top:100px\",\"background:#75e168\",\"background:-moz-linear-gradient(top,#75e168 0,#38cea3 100%)\",\"background:-webkit-linear-gradient(top,#75e168 0,#38cea3 100%)\",\"background:linear-gradient(to bottom,#75e168 0,#38cea3 100%)\",\"padding:70px 0\"]],[false,{\".top-contact h1\":false},[\"margin:0\",\"font-size:50px\"]],[false,{\".top-contact h2\":false},[\"margin:0\",\"font-size:40px\",\"line-height:90px\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-contact h2\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".top-contact amp-google-document-embed\":false},[\"width:100%\",\"margin-top:20px\"]],[false,{\".subitems\":false},[\"margin:30px 0\"]],[false,{\".subitems .item\":false},[\"position:relative\",\"display:inline-block\",\"color:#152649\",\"font-family:Rajdhani\",\"font-weight:700\",\"padding:0 10px 0 0\",\"margin-right:10px\",\"margin-bottom:5px\"]],[false,{\".subitems .item:after\":false},[\"width:1px\",\"height:100%\",\"position:absolute\",\"content:\\\"\\\"\",\"right:0\",\"top:0\",\"background:#2b9ac7\",\"background:-moz-linear-gradient(top,#2b9ac7 0,#b9f05a 100%)\",\"background:-webkit-linear-gradient(top,#2b9ac7 0,#b9f05a 100%)\",\"background:linear-gradient(to bottom,#2b9ac7 0,#b9f05a 100%)\"]],[false,{\".subitems .item:first-child\":false},[\"padding-left:0\"]],[false,{\".subitems .item:last-child\":false},[\"padding-right:0\"]],[false,{\".subitems .item:last-child:after\":false},[\"display:none\"]],[false,{\".circles-menu\":false},[\"margin-top:-100px\",\"position:relative\",\"text-align:center\"]],[false,\"@media (min-width:1400px){\"],[false,{\".circles-menu\":false},[\"margin-top:-125px\"]],[false,\"}\"],[false,{\".circles-menu .circle\":false},[\"margin:0 auto 30px\",\"display:table\",\"width:200px\",\"height:200px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"border-radius:100px\",\"-moz-border-radius:100px\",\"-webkit-border-radius:100px\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (min-width:1400px){\"],[false,{\".circles-menu .circle\":false},[\"width:250px\",\"height:250px\",\"border-radius:125px\",\"-moz-border-radius:125px\",\"-webkit-border-radius:125px\"]],[false,\"}\"],[false,{\".circles-menu .circle .wrap\":false},[\"display:table-row\",\"width:100%\",\"height:100%\"]],[false,{\".circles-menu .circle .wrap .text-circle\":false},[\"display:table-cell\",\"width:100%\",\"height:100%\",\"vertical-align:middle\",\"font-family:Rajdhani\",\"font-weight:700\",\"color:#002048\",\"font-size:25px\",\"line-height:25px\"]],[false,{\".circles-menu .circle.circle1\":false},[\"background-color:#00a2c3\",\"border:3px solid #00a2c3\"]],[false,{\".circles-menu .circle.circle1:hover\":false},[\"background-color:#fff\"]],[false,{\".circles-menu .circle.circle2\":false},[\"background-color:#d0d0d0\",\"border:3px solid #d0d0d0\"]],[false,{\".circles-menu .circle.circle2:hover\":false},[\"background-color:#fff\"]],[false,{\".circles-menu .circle.circle3\":false},[\"background-color:#91e63e\",\"border:3px solid #91e63e\"]],[false,{\".circles-menu .circle.circle3:hover\":false},[\"background-color:#fff\"]],[false,{\".map\":false},[\"margin:0\",\"padding:0\",\"position:relative\",\"width:100%\",\"background-color:#e8e8e8\",\"color:grey\"]],[false,{\".map .info\":false},[\"width:620px\",\"position:absolute\",\"margin-left:50%\",\"left:-310px\",\"top:-60px\",\"background-color:#fff\",\"padding:20px\",\"color:#152649\",\"font-size:13px\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info\":false},[\"width:90%\",\"margin:0 5%\",\"left:0\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".map .info\":false},[\"width:620px\",\"left:-310px\",\"font-size:15px\"]],[false,\"}\"],[false,{\".map .info .local\":false},[\"width:40%\",\"float:left\",\"padding-right:20px\"]],[false,{\".map .info .local .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info .local .ltext\":false},[\"float:left\",\"text-align:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info .local\":false},[\"width:100%\",\"padding:0\"]],[false,\"}\"],[false,{\".map .info .mail\":false},[\"width:60%\",\"float:left\",\"padding-left:20px\",\"border-left:1px solid #ccc\"]],[false,{\".map .info .mail .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info .mail .ltext\":false},[\"float:left\",\"line-height:40px\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info .mail\":false},[\"width:100%\",\"padding:0\",\"border:0\",\"margin-top:20px\"]],[false,\"}\"],[false,{\".map .info2\":false},[\"width:500px\",\"position:absolute\",\"margin-left:50%\",\"left:-250px\",\"top:40px\",\"background-color:#fff\",\"padding:20px\",\"color:#152649\",\"font-size:13px\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info2\":false},[\"width:90%\",\"margin:0 5%\",\"left:0\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".map .info2\":false},[\"width:600px\",\"left:-300px\",\"font-size:15px\"]],[false,\"}\"],[false,{\".map .info2 .local\":false},[\"width:40%\",\"float:left\",\"padding-right:20px\"]],[false,{\".map .info2 .local .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info2 .local .ltext\":false},[\"float:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info2 .local\":false},[\"width:100%\",\"padding:0\"]],[false,\"}\"],[false,{\".map .info2 .mail\":false},[\"width:60%\",\"float:left\",\"padding-left:20px\",\"border-left:1px solid #ccc\"]],[false,{\".map .info2 .mail .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info2 .mail .ltext\":false},[\"float:left\",\"line-height:40px\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info2 .mail\":false},[\"width:100%\",\"padding:0\",\"border:0\",\"margin-top:20px\"]],[false,\"}\"],[false,{\".map h2\":false},[\"margin-top:70px\"]],[false,{\".panel\":false},[\"position:relative\",\"text-align:center\",\"margin-top:-13%\"]],[false,{\".panel .panel-img\":false},[\"position:absolute\"]],[false,{\".panel .panel-img amp-img\":false,\".panel .panel-img amp-anim\":false},[\"width:40px\"]],[false,{\".panel #panel1\":false},[\"top:100px\",\"left:0\"]],[false,{\".panel #panel2\":false},[\"top:80px\",\"left:40px\"]],[false,{\".panel #panel3\":false},[\"top:100px\",\"left:80px\"]],[false,{\".panel #panel4\":false},[\"top:0\",\"left:120px\"]],[false,{\".panel #panel5\":false},[\"top:70px\",\"left:160px\"]],[false,{\".panel #panel6\":false},[\"top:90px\",\"left:200px\"]],[false,{\".panel #panel7\":false},[\"top:70px\",\"left:240px\"]],[false,{\".panel #panel8\":false},[\"top:50px\",\"left:280px\"]],[false,{\".panel #panel9\":false},[\"top:70px\",\"left:320px\"]],[false,{\".panel #panel10\":false},[\"top:130px\",\"left:360px\"]],[false,{\".hidden\":false},[\"opacity:0\"]],[false,{\".visible\":false},[\"opacity:1\"]],[false,\"@media (max-width:992px){\"],[false,{\".text-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".desktop\":false},[\"display:block\"]],[false,\"@media (max-width:992px){\"],[false,{\".desktop\":false},[\"display:none\"]],[false,\"}\"],[false,{\".mobile\":false},[\"display:none\"]],[false,\"@media (max-width:992px){\"],[false,{\".mobile\":false},[\"display:block\"]],[false,\"}\"],[false,{\".mbottom\":false},[\"margin-bottom:-50px\"]],[true,\"@media (max-width:1400px){\"],[true,{\".container-fluid\":true},[\"max-width:1140px\"]],[true,\"}\"],[true,\"@media (min-width:1400px){\"],[true,{\".container-fluid\":true},[\"width:90%\"]],[true,\"}\"],[false,{\".bg-middle\":false},[\"background-position:left center\",\"background-size:auto 95%\",\"background-repeat:no-repeat\"]],[false,{\".bg-bottom\":false},[\"background-position:bottom center\",\"background-size:auto 95%\",\"background-repeat:no-repeat\"]],[false,\"@media (max-width:992px){\"],[false,{\".item-carousel-1\":false,\".item-carousel-2\":false},[\"text-align:center\"]],[false,{\".item-carousel-1:not(#_#_#_#_#_#_#_)\":false,\".item-carousel-2:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\",\"background-image:none\"]],[false,\"}\"],[false,{\".item-carousel-3\":false},[\"text-align:center\"]],[false,{\".add-top\":false},[\"padding-top:150px\"]],[false,{\".add-top-2\":false},[\"margin-top:100px\"]],[true,{\".blog-color\":true},[\"background-color:#f8f8f8\",\"line-height:50px\",\"position:relative\",\"width:100%\",\"margin-top:100px\"]],[true,{\".blog-color h1\":true},[\"margin:0\",\"font-size:50px\",\"line-height:50px\"]],[true,{\".blog-color .info-text\":true},[\"font-family:Rajdhani\",\"font-weight:300\",\"line-height:20px\",\"font-size:16px\",\"color:#8c8c8c\"]],[true,{\".blog-title-main\":true},[\"padding:90px 50px\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:left center\"]],[true,\"@media (max-width:992px){\"],[true,{\".blog-title-main\":true},[\"padding:30px\"]],[true,\"}\"],[true,{\".blog-main\":true},[\"position:relative\",\"background-color:#fff\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\"]],[true,\"@media (max-width:992px){\"],[true,{\".blog-main\":true},[\"display:none\"]],[true,\"}\"],[true,{\".blog-main .blog-mask\":true},[\"padding:0 50px\",\"position:absolute\",\"width:100%\",\"height:100%\",\"left:0\",\"top:0\",\"background:-moz-linear-gradient(left,rgba(50,143,194,.95) 0,rgba(204,204,204,.95) 100%)\",\"background:-webkit-linear-gradient(left,rgba(50,143,194,.95) 0,rgba(204,204,204,.95) 100%)\",\"background:linear-gradient(to right,rgba(50,143,194,.95) 0,rgba(204,204,204,.95) 100%)\",\"color:#152649\",\"display:flex\",\"align-content:center\",\"align-content:center\",\"flex-wrap:wrap\",\"flex-direction:column\",\"justify-content:center\"]],[true,{\".blog-main .blog-main-content\":true},[\"width:100%\"]],[true,{\".blog-main .blog-main-content .blog-date\":true},[\"line-height:25px\",\"margin-bottom:0\"]],[true,{\".blog-main .blog-main-content .blog-title\":true},[\"font-size:20px\",\"line-height:25px\",\"font-weight:700\",\"display:block\"]],[true,\"@media (min-width:1400px){\"],[true,{\".blog-main .blog-main-content .blog-title\":true},[\"font-size:25px\",\"line-height:30px\",\"max-width:400px\"]],[true,\"}\"],[true,{\".blog-main .blog-main-content .blog-info\":true},[\"color:#152649\",\"font-size:14px\",\"line-height:25px\",\"margin-bottom:0\"]],[true,\"@media (min-width:1400px){\"],[true,{\".blog-main .blog-main-content .blog-info\":true},[\"font-size:16px\"]],[true,\"}\"],[true,{\".blog-main .blog-main-content .blog-read\":true},[\"background-color:#9d7c23\",\"color:#fff\",\"font-family:Rajdhani\",\"font-size:14px\",\"font-weight:500\",\"padding:5px 25px\",\"border-radius:2px\",\"-webkit-box-shadow:2px 2px 10px 0 transparent\",\"box-shadow:2px 2px 10px 0 transparent\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[true,\"@media (min-width:1400px){\"],[true,{\".blog-main .blog-main-content .blog-read\":true},[\"font-size:17px\"]],[true,\"}\"],[true,{\".blog-main .blog-main-content .blog-read:hover\":true},[\"-webkit-box-shadow:2px 2px 10px 0 rgba(0,0,0,.5)\",\"box-shadow:2px 2px 10px 0 rgba(0,0,0,.5)\"]],[true,{\".blog-main .blog-main-content .blog-tags\":true},[\"line-height:15px\",\"margin-bottom:0\",\"color:#152649\",\"margin-top:10px\"]],[true,{\".blog-main .blog-main-content .blog-tags a\":true},[\"border-color:#346a8f\"]],[true,{\".content-blog\":true},[\"position:relative\",\"width:100%\",\"background-color:#f3f3f3\",\"padding:50px 0\",\"color:grey\",\"font-size:16px\",\"line-height:25px\"]],[true,\"@media (max-width:992px){\"],[true,{\".content-blog\":true},[\"background-color:#fff\"]],[true,\"}\"],[true,{\".content-blog strong\":true},[\"color:#23819d\",\"font-size:23px\"]],[false,{\".content-blog small\":false},[\"font-weight:700\"]],[true,{\".content-blog amp-img\":true,\".content-blog amp-anim\":false},[\"width:100%\",\"max-width:100%\"]],[false,{\".content-blog .capa-blog\":false},[\"width:100%\",\"margin-top:-50px\",\"margin-bottom:30px\"]],[true,{\".pagination\":true},[\"width:100%\",\"text-align:center\",\"display:block\"]],[true,{\".pagination a\":true},[\"border:1px solid #999\",\"color:#999\",\"margin:0 20px\",\"border-radius:5px\",\"padding:10px 15px\",\"font-family:Rajdhani\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[true,{\".pagination a:hover\":true},[\"color:#152649\",\"border:1px solid #152649\"]],[false,{\".arrow-wrap\":false},[\"justify-content:center\",\"display:flex\",\"align-items:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".arrow-wrap--top\":false},[\"margin-bottom:30px\"]],[false,\"}\"],[false,{\".back-arrow\":false},[\"color:#152649\",\"text-transform:uppercase\",\"font-weight:200\",\"font-family:Rajdhani\",\"font-size:14px\",\"margin-top:20px\"]],[true,{\".blog-tags\":true},[\"font-size:12px\",\"color:#23819d\"]],[true,\"@media (min-width:1400px){\"],[true,{\".blog-tags\":true},[\"font-size:15px\"]],[true,\"}\"],[true,{\".blog-tags a\":true},[\"border-right:1px solid #ccc\",\"margin-left:10px\",\"padding-right:10px\"]],[true,{\".blog-tags a:last-child\":true},[\"border:0\",\"padding:0\"]],[true,{\".blog-tags a:first-child\":true},[\"margin:0\"]],[false,{\".top-blog-single\":false},[\"position:relative\",\"width:100%\",\"margin-top:100px\",\"padding:70px 0\",\"background-color:#fff\"]],[false,{\".top-blog-single a:hover\":false},[\"text-decoration:underline\"]],[false,{\".top-blog-single h1\":false},[\"margin:0 0 10px\",\"font-size:45px\",\"line-height:45px\",\"font-family:Raleway\"]],[false,{\".top-blog-single .blog-title\":false},[\"line-height:55px\",\"color:#152649\"]],[false,{\".top-blog-single .wrap-blog-info\":false},[\"margin-top:-45px\",\"margin-bottom:30px\"]],[false,{\".top-blog-single .back-arrow\":false},[\"font-size:35px\",\"margin:0\"]],[false,{\".top-blog-single .back-arrow a:hover\":false},[\"text-decoration:none\"]],[false,{\".top-blog-single .blog-tags\":false},[\"margin-bottom:-30px\",\"margin-top:30px\"]],[true,{\".blog-info\":true},[\"font-family:Rajdhani\",\"font-size:17px\",\"line-height:25px\",\"color:#23819d\",\"font-weight:500\"]],[true,{\".blog-date\":true},[\"color:#152649\",\"font-family:Rajdhani\",\"font-size:14px\",\"margin-bottom:10px\",\"text-transform:uppercase\",\"font-weight:500\"]],[true,\"@media (min-width:1400px){\"],[true,{\".blog-date\":true},[\"font-size:20px\"]],[true,\"}\"],[false,{\".blog-date--text\":false},[\"color:#23819d\",\"margin-top:20px\"]],[false,{\".box-post-intern\":false},[\"padding:20px\",\"background-color:#f0f0f0\",\"border:1px solid #c2c2c2\",\"border-radius:2px\",\"height:100%\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width:992px){\"],[false,{\".box-post-intern\":false},[\"margin-bottom:30px\",\"height:auto\"]],[false,\"}\"],[false,{\".box-post-intern:hover\":false},[\"background-color:#fff\"]],[false,{\".box-post-intern .blog-date\":false},[\"color:#23819d\",\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"margin-bottom:10px\",\"text-transform:uppercase\",\"font-weight:500\"]],[false,{\".box-post-intern .blog-title\":false},[\"font-size:20px\",\"line-height:25px\",\"color:#23819d\",\"font-weight:700\"]],[false,{\".box-post-intern .blog-info\":false},[\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"color:#23819d\",\"font-weight:500\",\"margin-top:15px\"]],[false,{\".box-post-intern .blog-tags\":false},[\"margin-bottom:0\"]],[true,{\".box-post\":true},[\"height:calc(100% - 30px)\",\"overflow:hidden\",\"position:relative\",\"padding:30px\",\"margin-bottom:30px\",\"background-color:#f0f0f0\",\"border:1px solid #c2c2c2\",\"border-radius:2px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[true,\"@media (max-width:992px){\"],[true,{\".box-post\":true},[\"height:auto\"]],[true,\"}\"],[true,{\".box-post:hover\":true},[\"background-color:#fff\"]],[false,{\".box-post .capa-post\":false},[\"width:calc(100% + 60px)\",\"height:200px\",\"margin-top:-30px\",\"margin-left:-30px\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:top center\",\"margin-bottom:30px\"]],[true,{\".box-post .blog-date\":true},[\"color:#23819d\",\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"margin-bottom:30px\",\"text-transform:uppercase\",\"font-weight:500\"]],[true,\"@media (min-width:1400px){\"],[true,{\".box-post .blog-date\":true},[\"font-size:16px\"]],[true,\"}\"],[true,{\".box-post .blog-title\":true},[\"font-size:20px\",\"line-height:25px\",\"color:#23819d\",\"font-weight:700\"]],[true,\"@media (min-width:1400px){\"],[true,{\".box-post .blog-title\":true},[\"font-size:25px\",\"line-height:30px\"]],[true,\"}\"],[true,{\".box-post .blog-info\":true},[\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"color:#23819d\",\"font-weight:500\",\"margin-top:10px\"]],[true,\"@media (min-width:1400px){\"],[true,{\".box-post .blog-info\":true},[\"font-size:16px\"]],[true,\"}\"],[true,{\".box-post .blog-excerpt\":true},[\"font-size:12px\",\"line-height:18px\"]],[true,\"@media (min-width:1400px){\"],[true,{\".box-post .blog-excerpt\":true},[\"font-size:15px\"]],[true,\"}\"],[true,{\".box-post .blog-read\":true},[\"font-family:Rajdhani\",\"color:#9d7c23\",\"font-size:13px\",\"line-height:15px\",\"font-weight:500\"]],[true,\"@media (min-width:1400px){\"],[true,{\".box-post .blog-read\":true},[\"font-size:16px\"]],[true,\"}\"],[true,{\".box-post .blog-tags\":true},[\"margin-top:20px\",\"margin-bottom:0\"]],[false,{\".more-section\":false},[\"margin-top:30px\"]],[true,{\"li.categories\":true},[\"font-family:Rajdhani\",\"text-transform:uppercase\",\"list-style:none\",\"margin-bottom:70px\",\"font-weight:500\",\"color:#23819d\",\"font-size:20px\"]],[true,\"@media (min-width:1400px){\"],[true,{\"li.categories\":true},[\"font-size:25px\"]],[true,\"}\"],[true,\"@media (max-width:992px){\"],[true,{\"li.categories\":true},[\"margin-top:50px\",\"margin-bottom:0\"]],[true,\"}\"],[true,{\"li.categories ul\":true},[\"list-style:none\",\"padding:0\",\"margin-top:30px\"]],[true,{\"li.categories ul li\":true},[\"margin-bottom:15px\",\"text-transform:none\",\"font-size:13px\",\"font-family:Raleway\",\"font-weight:300\"]],[true,\"@media (min-width:1400px){\"],[true,{\"li.categories ul li\":true},[\"font-size:15px\"]],[true,\"}\"],[true,{\".icon-main-blog\":true},[\"width:80px\",\"margin-top:-20px\",\"margin-left:-15px\"]],[true,{\".icon-main-blog amp-img\":true,\".icon-main-blog amp-anim\":false},[\"width:100%\"]],[false,{\"#paginator\":false},[\"width:100%\",\"padding:0 15px\",\"margin:25px 0\",\"text-align:center\"]],[false,{\"#paginator li\":false},[\"list-style:none\",\"display:inline-block\",\"width:30px\",\"line-height:30px\",\"border:1px solid #ccc\",\"border-radius:5px\",\"color:#999\",\"margin:5px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"#paginator li.current\":false,\"#paginator li:hover\":false},[\"color:#152649\",\"border:1px solid #152649\",\"font-weight:700\"]],[false,{\"#paginator li a\":false},[\"display:block\"]],[false,{\".footer-media a\":false},[\"color:#999\",\"margin-left:20px\"]],[true,{\".avatar-20:not(#_#_#_#_#_#_#_)\":true},[\"width:20px\"]],[false,{\".mobile-address\":false},[\"padding-top:30px\"]],[false,\"@media (max-width:1000px) and (orientation:landscape){\"],[false,{\".about-intern\":false},[\"padding-bottom:30px\"]],[false,{\".circles-menu\":false},[\"margin-top:30px\"]],[false,\"}\"],[false,\"@media (max-width:1000px){\"],[false,{\".box-post .capa-post\":false},[\"height:170px\"]],[false,\"}\"],[true,{\".box-post\":true},[\"padding:0\",\"margin-bottom:0\"]],[true,{\".box-post:not(#_#_#_#_#_#_#_)\":true},[\"height:100%\"]],[true,{\".box-post-text\":true},[\"padding:30px\"]],[true,{\".div-post\":true},[\"margin-bottom:30px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":9996,\"final_size\":9501,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/shared.css?v=2138898239\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"c90d28f47007b3c5d58885a57c053d63\",\"parse_time\":0.3362119197845459,\"shake_time\":0.00024890899658203125,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".new-header__nav--list\":true},[\"margin:0\",\"padding:0\",\"display:contents\"]],[true,{\".new-header__nav--list li\":true},[\"list-style:none\",\"color:#152649\",\"font-size:15px\",\"font-weight:900\",\"line-height:30px\",\"text-transform:uppercase\",\"padding:0 .5rem\"]],[true,{\".new-header__nav--list li:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".new-header__nav--list li .nav-link:not(#_#_#_#_#_#_#_#_)\":true},[\"padding-right:10px\",\"padding-left:10px\",\"white-space:nowrap\"]],[true,{\".new-header__nav--list li .nav-link:hover:not(#_#_#_#_#_#_#_#_)\":true},[\"color:#24c1ff\"]],[true,\"@media (max-width:992px){\"],[true,{\".new-header__nav--list li .nav-link:not(#_#_#_#_#_#_#_#_)\":true},[\"padding-right:5px\",\"padding-left:5px\"]],[true,\"}\"],[true,{\".new-header__button\":true},[\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"float:right\",\"width:15%\"]],[true,{\".new-header__button:not(#_#_#_#_#_#_#_)\":true},[\"color:#152649\"]],[true,{\".new-header__button a\":true},[\"background:0 0\",\"border:none\",\"color:#152649\",\"font-family:raleway,sans-serif\",\"font-weight:900\",\"font-size:18px\"]],[true,{\".new-header__button a:hover\":true},[\"text-decoration:none\"]],[true,{\".dropdown-menu\":true},[\"background:#f7f7f7\",\"top:97px\",\"left:50%\",\"transform:translateX(-50%)\",\"width:70%\",\"border-radius:0\",\"border-top:none\",\"cursor:auto\"]],[true,{\".dropdown-menu:not(#_#_#_#_#_#_#_)\":true},[\"position:fixed\"]],[true,{\".dropdown-menu>.container\":true},[\"display:flex\",\"align-items:center\",\"justify-content:center\",\"min-height:270px\",\"padding:2.5rem 1.5rem 3rem\"]],[true,{\".nav-link\":true},[\"display:flex\",\"flex-direction:column\",\"align-items:center\"]],[true,{\".nav-link:not(#_#_#_#_#_#_#_)\":true},[\"color:#152649\"]],[true,{\".dropdown-toggle::after:not(#_#_#_#_#_#_#_#_)\":true},[\"color:#24c1ff\",\"border:1px solid #24c1ff\",\"width:10px\"]],[false,{\".show>.dropdown-toggle::after:not(#_#_#_#_#_#_#_#_)\":false},[\"border-top:.3em solid\",\"border-right:.3em solid transparent\",\"border-bottom:0\",\"border-left:.3em solid transparent\",\"width:0\"]],[true,{\".new-header__nav--title h5\":true},[\"font-size:2.3rem\",\"text-transform:initial\",\"font-family:raleway,sans-serif\",\"font-weight:800\",\"color:#152649\",\"line-height:38px\"]],[true,{\".new-header__nav--title h5:after\":true},[\"content:\\\"-\\\"\",\"border-bottom:0 solid\",\"border-image-slice:1\",\"border-width:5px\",\"display:block\",\"color:transparent\",\"height:25px\",\"width:65px\",\"margin-bottom:2rem\"]],[true,{\".new-header__nav--subtitle p\":true},[\"margin:0\",\"font-size:.8rem\",\"color:#152649\",\"font-weight:400\",\"text-transform:initial\",\"margin-bottom:2rem\",\"line-height:15px\"]],[true,{\".new-header__nav--subtitle p:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".new-header__nav--right-edge\":true},[\"border-right:1px solid #c9c9c9\"]],[true,{\".new-header__nav--menu--img\":true},[\"padding:0\",\"text-align:center\"]],[true,{\".new-header__nav--menu--img amp-img\":true,\".new-header__nav--menu--img amp-anim\":false},[\"max-width:100%\"]],[true,{\".new-header__nav--menu--title\":true},[\"color:#152649\",\"text-transform:capitalize\",\"font-weight:800\",\"font-family:raleway,sans-serif\",\"font-size:1.1rem\",\"margin-bottom:.3rem\"]],[true,{\".new-header__nav--menu--text\":true},[\"color:#6f7070\",\"font-weight:400\",\"text-transform:initial\",\"font-size:.8rem\",\"margin:0\",\"line-height:15px\"]],[true,{\".new-header__nav--menu--text:not(#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".new-header__nav--menu--link:hover>.new-header__nav--menu--title\":true},[\"color:#24c1ff\"]],[true,{\".new-header__nav--menu--link:hover>.new-header__nav--menu--text\":true},[\"color:#24c1ff\"]],[true,{\".new-header__nav--menu--link:hover\":true},[\"text-decoration:none\"]],[true,{\".new-header__nav--menu--box:not(#_#_#_#_#_#_#_)\":true},[\"margin-bottom:1.5rem\"]],[true,{\".new-header__nav--menu--button\":true},[\"width:65%\",\"border-radius:35px\",\"border:1px solid #9df168\",\"position:relative\",\"display:flex\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"text-align:center\",\"font-size:1rem\",\"transition:font .3s\",\"height:45px\",\"align-items:center\",\"justify-content:center\"]],[true,{\".new-header__nav--menu--button:hover\":true},[\"text-decoration:none\",\"font-size:1.2rem\"]],[true,{\".new-header__nav--menu--button--link\":true},[\"color:#152649\",\"text-transform:initial\",\"font-family:raleway,sans-serif\",\"font-weight:900\"]],[true,{\".new-header__nav--title-color\":true},[\"color:#24c1ff\"]],[true,{\".new-header__nav--menu--whatsIs\":true},[\"font-weight:400\",\"color:#24c1ff\",\"text-transform:initial\",\"font-size:.9rem\"]],[true,{\".new-header__nav--menu--whatsIs:not(#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".bg-light\":true},[\"width:85%\"]],[true,{\".bg-light:not(#_#_#_#_#_#_#_)\":true},[\"background-color:transparent\"]],[true,{\".new-header__nav--subtitle-icon\":true},[\"padding:0\",\"text-align:right\"]],[true,{\".new-header__nav--subtitle-icon:not(#_#_#_#_#_#_#_)\":true},[\"width:90%\"]],[true,{\".new-header__logo\":true},[\"width:20%\"]],[true,{\".new-header__menu-item\":true},[\"justify-content:flex-end\"]],[true,{\".new-header\":true},[\"top:0\",\"width:100%\",\"position:fixed\",\"background-color:#f7f7f7\",\"z-index:3\",\"transition:all .3s ease-in-out\",\"display:flex\",\"margin:0\",\"padding:0\",\"justify-content:center\"]],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:100px\"]],[true,{\".navbar-toggler:not(#_#_#_#_#_#_#_)\":true},[\"padding:0\",\"border:none\",\"outline:0\"]],[false,{\".devops-styles:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:100px\"]],[true,\"@media (min-width:300px) and (max-width:768px){\"],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:70px\"]],[false,{\".devops-styles:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:70px\"]],[true,{\".new-header__menu-item\":true},[\"background:#f7f7f7\",\"margin:0\",\"padding:0\",\"width:100%\",\"position:absolute\",\"top:70px\",\"left:0\",\"z-index:9\",\"overflow:scroll\",\"height:650px\",\"padding-bottom:2rem\"]],[true,{\".new-header__logo\":true},[\"width:50%\"]],[true,{\".new-header__button:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".new-header__nav--list\":true},[\"display:flex\",\"align-items:flex-start\"]],[true,{\".new-header__nav--list li\":true},[\"padding-left:1rem\"]],[false,{\".new-header__nav--list>.show\":false},[\"width:100%\",\"border:1px #ccc solid\",\"padding-bottom:1rem\"]],[true,{\".dropdown-toggle::after\":true},[\"display:none\"]],[false,{\".show>.dropdown-toggle:not(#_#_#_#_#_#_#_)\":false},[\"color:#24c1ff\"]],[false,{\".show>.dropdown-toggle::before:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:.3em solid\",\"border-top:0\"]],[true,{\".new-header__nav--list li .nav-link\":true},[\"display:block\"]],[true,{\".dropdown-toggle::before\":true},[\"display:inline-block\",\"margin-right:.5rem\",\"vertical-align:.255em\",\"content:\\\"\\\"\"]],[true,{\".dropdown-toggle::before:not(#_#_#_#_#_#_#_#_)\":true},[\"border-top:.3em solid\",\"border-right:.3em solid transparent\",\"border-bottom:0\",\"border-left:.3em solid transparent\",\"color:#24c1ff\"]],[true,{\".dropdown-menu\":true},[\"width:100%\",\"top:0\",\"left:0\",\"transform:none\",\"padding:0\",\"border:none\"]],[true,{\".dropdown-menu:not(#_#_#_#_#_#_#_)\":true},[\"position:relative\"]],[true,{\".dropdown-menu>.container\":true},[\"padding:0\"]],[true,{\".dropdown-menu>.container>.row\":true},[\"width:100%\"]],[true,{\".new-header__nav--title h5\":true},[\"font-size:1.5rem\"]],[true,{\".new-header__nav--title h5:after\":true},[\"display:none\"]],[true,{\".new-header__nav--menu--img\":true},[\"display:none\"]],[true,{\".align-items-center>.col-md-8\":true},[\"padding:0\"]],[true,{\".bg-light\":true},[\"width:100%\"]],[true,{\".new-header__nav--menu--title\":true},[\"display:flex\",\"align-items:center\"]],[true,{\".new-header__nav--menu--title::after\":true},[\"display:inline-block\",\"margin-left:.5rem\",\"vertical-align:.255em\",\"content:\\\"\\\"\"]],[true,{\".new-header__nav--menu--title::after:not(#_#_#_#_#_#_#_#_)\":true},[\"border-top:.3em solid transparent\",\"border-right:0\",\"border-bottom:.3em solid transparent\",\"border-left:.3em solid\",\"color:#24c1ff\"]],[true,{\".new-header__nav--right-edge\":true},[\"border-right:none\"]],[true,{\".new-header__nav--menu--button\":true},[\"margin-bottom:2rem\",\"display:flex\",\"width:50%\"]],[true,\"}\"],[true,\"@media (min-width:600px) and (max-width:768px){\"],[true,{\".new-header__button:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".new-header__logo amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".new-header__logo amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:60%\"]],[true,\"}\"],[true,\"@media (min-width:768px) and (max-width:1024px){\"],[true,{\".new-header__nav--list li\":true},[\"font-size:10px\"]],[true,{\".new-header__button a\":true},[\"font-size:13px\"]],[true,\"}\"],[true,{\".footer-2022\":true},[\"background-color:#152649\",\"color:#c1c1c1\",\"padding:5rem 0 5rem\",\"font-weight:400\"]],[true,{\".footer-2022:not(#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".footer-2022__logo amp-img\":true,\".footer-2022__logo amp-anim\":false},[\"width:100%\"]],[true,{\".footer-2022__text\":true},[\"font-size:.9rem\",\"text-align:end\",\"line-height:15px\"]],[true,{\".footer-2022__certificates\":true},[\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[true,{\".footer-2022__certificates-box-union\":true},[\"display:flex\"]],[true,{\".footer-2022__certificates--kubernetes a amp-img\":true,\".footer-2022__certificates--kubernetes a amp-anim\":false},[\"width:100%\",\"padding:0 1rem\"]],[true,{\".footer-2022__certificates--cloud-native a amp-img\":true,\".footer-2022__certificates--cloud-native a amp-anim\":false},[\"width:100%\",\"padding:0 1rem\"]],[true,{\".footer-2022__certificates--linux-foundation a amp-img\":true,\".footer-2022__certificates--linux-foundation a amp-anim\":false},[\"width:100%\",\"padding:0 1rem\"]],[true,{\".footer-2022__social-media\":true},[\"display:flex\",\"align-items:center\",\"justify-content:end\"]],[true,{\".footer-2022__social-media a\":true},[\"margin:0 .5rem\",\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[true,{\".footer-2022__social-media a amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".footer-2022__social-media a amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[true,{\".footer-2022__menu\":true},[\"margin-top:6rem\",\"margin-bottom:5rem\"]],[true,{\".footer-2022__menu--box\":true},[\"display:flex\",\"flex-direction:row\",\"width:100%\",\"padding:0\"]],[true,{\".footer-2022__menu--list\":true},[\"flex-grow:1\"]],[true,{\".footer-2022__menu--list h5\":true},[\"color:#59657e\",\"margin-bottom:1rem\",\"font-size:1rem\"]],[true,{\".footer-2022__menu--list h5:after\":true},[\"content:\\\"-\\\"\",\"border-bottom:0 solid\",\"border-image-slice:1\",\"border-width:4px\",\"display:block\",\"color:transparent\",\"height:20px\",\"width:65px\",\"margin-bottom:1.5rem\"]],[true,{\".footer-2022__menu--list ul\":true},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[true,{\".footer-2022__menu--list ul li\":true},[\"margin-bottom:.5rem\"]],[true,{\".footer-2022__menu--list ul li strong\":true},[\"color:#24c1ff\",\"font-weight:900\",\"font-family:raleway,sans-serif\",\"padding-bottom:.5rem\",\"display:block\"]],[true,{\".footer-2022__menu--list ul li a\":true},[\"color:#24c1ff\",\"font-weight:500\",\"font-family:raleway,sans-serif\",\"font-size:.9rem\"]],[true,{\".footer-2022__menu--list ul li a:hover\":true},[\"text-decoration:none\",\"-webkit-background-clip:text\",\"-webkit-text-fill-color:transparent\"]],[true,{\".footer-2022__box-end\":true},[\"font-size:.9rem\"]],[true,{\".footer-2022__box-end--privacy-policy\":true},[\"text-decoration:underline\",\"color:#c9c9c9\",\"padding-right:1rem\",\"border-right:1px solid #c9c9c9\"]],[true,{\".footer-2022__box-end--privacy-policy:hover\":true},[\"color:#24c1ff\"]],[true,{\".footer-2022__box-end--terms-of-use\":true},[\"text-decoration:underline\",\"color:#c9c9c9\",\"margin-left:1rem\",\"margin-right:3rem\"]],[true,{\".footer-2022__box-end--terms-of-use:hover\":true},[\"color:#24c1ff\"]],[true,{\".footer-2022__copyright\":true},[\"font-size:.9rem\",\"color:#c9c9c9\"]],[true,\"@media (min-width:300px) and (max-width:768px){\"],[true,{\".footer-2022__logo amp-img\":true,\".footer-2022__logo amp-anim\":false},[\"margin-bottom:3rem\",\"padding-top:5rem\",\"border-top:2px solid #486091\"]],[true,{\".footer-2022__text\":true},[\"text-align:left\",\"margin-bottom:2rem\"]],[true,{\".footer-2022__certificates\":true},[\"margin-bottom:4rem\"]],[true,{\".footer-2022__social-media\":true},[\"justify-content:flex-start\"]],[true,{\".footer-2022__certificates-box-union\":true},[\"display:flex\",\"flex-direction:column-reverse\"]],[true,{\".footer-2022__certificates--cloud-native a amp-img\":true,\".footer-2022__certificates--cloud-native a amp-anim\":false},[\"margin-bottom:1rem\"]],[true,{\".footer-2022__certificates--kubernetes a amp-img\":true,\".footer-2022__certificates--kubernetes a amp-anim\":false},[\"padding:0 .2rem\"]],[true,{\".footer-2022__certificates--linux-foundation a amp-img\":true,\".footer-2022__certificates--linux-foundation a amp-anim\":false},[\"width:80%\",\"margin-bottom:1rem\"]],[true,{\".footer-2022__menu\":true},[\"margin-top:5rem\",\"margin-bottom:3rem\",\"margin-left:15px\",\"margin-right:15px\"]],[true,{\".footer-2022__menu--box\":true},[\"flex-direction:column\"]],[true,{\".footer-2022__menu--list ul\":true},[\"margin-bottom:3rem\"]],[true,{\".footer-2022__mobile-items\":true},[\"width:100%\",\"padding-right:15px\",\"padding-left:15px\",\"margin-right:auto\",\"margin-left:auto\"]],[true,{\".footer-2022__box-end\":true},[\"margin-bottom:.5rem\"]],[true,\"}\"],[true,\"@media (min-width:600px) and (max-width:768px){\"],[true,{\".footer-2022__logo amp-img\":true,\".footer-2022__logo amp-anim\":false},[\"margin-bottom:0\",\"padding-top:0\",\"border-top:none\"]],[true,{\".footer-2022__certificates-box-union\":true},[\"flex-direction:row\"]],[true,{\".footer-2022__text\":true},[\"margin-bottom:0\"]],[true,{\".footer-2022__certificates\":true},[\"margin-bottom:0\"]],[true,{\".footer-2022__social-media\":true},[\"margin-top:2rem\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1312,\"final_size\":616,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/style.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"7408b05c90ec93467ae3ffd934b45823\",\"parse_time\":0.006227016448974609,\"shake_time\":2.002716064453125e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".categories\":true},[\"list-style-type:none\",\"padding:20px\"]],[false,{\".grecaptcha-badge\":false},[\"display:none\"]],[false,{\"figcaption\":false},[\"font-size:12px\",\"text-align:center\"]],[true,{\".content-blog h1\":true},[\"font-size:45px\",\"line-height:45px\",\"margin-top:20px\",\"margin-bottom:30px\"]],[true,{\".content-blog strong\":true},[\"font-size:inherit\"]],[false,{\".content-blog h2\":false},[\"font-size:35px\",\"line-height:35px\",\"margin-top:20px\",\"margin-bottom:20px\",\"color:#23819d\"]],[true,{\".content-blog h3\":true},[\"font-size:30px\",\"line-height:30px\",\"margin-top:20px\",\"margin-bottom:20px\",\"color:inherit\",\"color:#000\"]],[false,{\".content-blog h4\":false},[\"position:relative\",\"font-family:\\\"Rajdhani\\\"\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"margin-top:10px\",\"margin-bottom:10px\"]],[true,{\".content-blog h5\":true},[\"position:relative\",\"font-family:\\\"Rajdhani\\\"\",\"font-weight:500\",\"line-height:20px\",\"font-size:20px\",\"margin-top:10px\",\"margin-bottom:0px\"]],[true,{\".content-blog h6\":true},[\"position:relative\",\"font-family:\\\"Rajdhani\\\"\",\"font-weight:500\",\"line-height:18px\",\"font-size:18px\",\"margin-top:10px\",\"margin-bottom:0px\"]],[true,{\".content-blog p a\":true},[\"color:#0693e3\",\"text-decoration:underline\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":155232,\"final_size\":10932,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/style-isk.css?v=1354617978\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"6f68b4471d049368cf66b5fad21e7dbd\",\"parse_time\":2.6997179985046387,\"shake_time\":0.0030150413513183594,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"body\":true},[\"background-color:#fff\",\"font-family:Raleway,sans-serif\",\"font-weight:400\",\"font-size:14px\",\"line-height:20px\",\"color:#152649\",\"-webkit-font-smoothing:subpixel-antialiased\",\"overflow-x:hidden\"]],[false,{\"sup\":false},[\"top:-.8em\",\"font-size:7px\",\"font-weight:800\"]],[false,{\".red\":false},[\"color:#ff555f\"]],[false,{\".grey\":false},[\"color:#7080a7\"]],[false,{\".turquouise\":false},[\"color:#28d9cb\"]],[false,{\".flourscent\":false},[\"color:#24c1ff\"]],[false,{\".g-d-none\":false},[\"display:none\"]],[true,{\".new-header\":true},[\"z-index:4\"]],[true,{\".new-header__nav--subtitle p\":true},[\"padding-left:16px\",\"font-size:14px\",\"letter-spacing:-.35px\"]],[true,{\"header nav .dropdown-menu p.new-header__nav--menu--text\":true},[\"max-width:180px\"]],[false,{\".custom-txt-img-sec.tek-world-scale .container-md\":false},[\"max-width:1406px\"]],[false,{\".custom-txt-img-sec .review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:0px\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner\":false},[\"position:relative\"]],[false,{\".c-application-development:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:30px\"]],[false,{\".c-application-development .custom-txt h2:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:25px\"]],[false,{\".cloud-native-application .custom-txt p span\":false},[\"color:#152649\"]],[false,{\".cloud-native-application .review_sec\":false},[\"margin-top:25px\"]],[false,{\".c-application-development .review_sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".c-application-development .cloud-native-application .custom-img amp-img\":false,\".c-application-development .cloud-native-application .custom-img amp-anim\":false},[\"width:94%\"]],[false,{\".cp-tek-teams-isk .title\":false},[\"margin-bottom:24px\"]],[false,{\".cp-tek-teams-isk .title p\":false},[\"margin:0\",\"color:#28d9cb\",\"font-size:16px\",\"text-transform:uppercase\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:400\"]],[false,{\".cp-tek-teams-isk p\":false},[\"font-size:24px\",\"color:#28d9cb\",\"margin:10px 0px 0px 0px\",\"font-weight:700\",\"line-height:normal\"]],[false,{\".cp-tek-teams-isk amp-img\":false,\".cp-tek-teams-isk amp-anim\":false},[\"min-height:350px\"]],[false,{\".cp-tek-teams-isk .inner-hero-text amp-img\":false,\".cp-tek-teams-isk .inner-hero-text amp-anim\":false},[\"min-height:unset\"]],[false,{\".review_sec\":false},[\"background:#f5f5f5\",\"padding:40px 56px\",\"margin-top:65px\",\"box-shadow:0px 20px 32px 0px rgba(0,0,0,.2)\",\"position:relative\",\"position:relative\",\"border-radius:24px\"]],[false,{\".review_sec amp-img\":false,\".review_sec amp-anim\":false},[\"position:absolute\",\"left:0px\"]],[false,{\".review_sec::after\":false},[\"content:\\\"\\\"\",\"display:block\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8578.png\\\")\",\"background-repeat:no-repeat\",\"width:40px\",\"height:40px\",\"position:absolute\",\"top:-20px\",\"left:56px\",\"background-size:cover\"]],[false,{\".review_sec .swiper-slide p\":false},[\"margin:0\",\"font-size:20px\",\"color:#707070\"]],[false,{\".review_sec .swiper-slide i\":false},[\"margin:20px 0px\",\"display:block\",\"color:#707070\",\"font-size:18px\",\"padding-left:70px\"]],[false,{\".review_sec .swiper-slide span\":false},[\"color:#152649\",\"font-weight:700\"]],[false,{\".review_sec .title p\":false},[\"font-size:20px\",\"font-weight:700\",\"color:#707070\"]],[false,{\".review_sec .title span\":false},[\"color:#28d9cb\"]],[false,{\".rebuild-and-replatform\":false},[\"background-color:#f1f1f1\",\"padding:120px 0px 192px 0px\"]],[false,{\".rebuild-and-replatform .txt label\":false},[\"display:block\",\"margin-bottom:40px\"]],[false,{\".rebuild-and-replatform .txt h2\":false},[\"margin-bottom:40px\"]],[false,{\".rebuild-and-replatform .txt h2 span\":false},[\"color:#28d9cb\"]],[false,{\".rebuild-and-replatform .txt p\":false},[\"color:#707070\",\"margin-bottom:30px\",\"font-size:20px\",\"line-height:1.6em\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content\":false},[\"display:none\",\"flex-wrap:wrap\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text p\":false},[\"font-size:20px\",\"line-height:1.6\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img\":false},[\"width:175px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-img\":false,\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-anim\":false},[\"width:100%\",\"object-fit:cover\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-boxs\":false},[\"margin-bottom:43px\",\"border-bottom:1px solid #dbdbdb\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text\":false},[\"padding-left:45px\",\"width:calc(100% - 175px)\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content.active\":false},[\"display:flex\",\"padding-bottom:37px\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec\":false},[\"margin:0\",\"box-shadow:unset\",\"background-color:transparent\",\"border-radius:unset\",\"padding:0\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec::after\":false},[\"display:none\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row\":false},[\"background-color:#fff\",\"padding:56px 76px\",\"border-radius:28px\",\"border:1px solid #dbdbdb\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul\":false},[\"list-style:none\",\"padding:0\",\"padding:8px\",\"display:flex\",\"background-color:#fff\",\"border-radius:36px\",\"margin:0px 0px 16px 0px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li\":false},[\"width:50%\",\"padding:16px\",\"border-radius:28px\",\"text-align:center\",\"transition:all .4s ease\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li a\":false},[\"font-size:20px\",\"color:#707070\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li.active\":false},[\"background-color:#f1f1f1\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li.active b\":false},[\"color:#152649\"]],[false,{\".custom-full-bg amp-img\":false,\".custom-full-bg amp-anim\":false},[\"width:100%\",\"display:block\"]],[false,{\".keeping-you-competitive\":false},[\"background-color:#152649\",\"padding:120px 0px 135px\"]],[false,{\".keeping-you-competitive label\":false},[\"color:#7080a7\"]],[false,{\".keeping-you-competitive .heading-box h2\":false},[\"color:#fff\",\"margin-bottom:40px\"]],[false,{\".keeping-you-competitive p\":false},[\"color:#fff\",\"font-family:Raleway,sans-serif\",\"font-size:20px\",\"line-height:1.4\"]],[false,{\".keeping-future\":false},[\"margin-top:40px\"]],[false,{\".keeping-future ul\":false},[\"list-style:none\",\"font-size:20px\",\"color:#24c1ff\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".keeping-future ul li\":false},[\"margin-bottom:32px\",\"font-style:italic\",\"border-bottom:#16365c solid 1px\",\"padding-bottom:30px\",\"width:26%\",\"margin-right:45px\",\"font-weight:500\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:11%\"]],[false,{\".keeping-future ul li:nth-child(8)\":false,\".keeping-future ul li:nth-child(4)\":false},[\"margin-right:0px\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(10)\":false,\".keeping-future ul li:nth-child(11)\":false},[\"border:none\"]],[false,{\".custom-qout-box\":false},[\"background-color:#f1f1f1\",\"padding:40px 0px 95px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-top:-11%\",\"margin-bottom:100px\",\"background-color:#fff\"]],[false,{\".custom-qout-box .review_sec i\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.4\",\"font-weight:400\",\"margin-bottom:24px\",\"display:block\"]],[false,{\".depending-on\":false},[\"display:flex\",\"align-items:center\",\"justify-content:space-between\"]],[false,{\".depending-img-box\":false},[\"width:15%\"]],[false,{\".depending-text\":false},[\"width:55%\"]],[false,{\".depending-text p\":false},[\"font-size:24px\",\"font-weight:bold\",\"line-height:1.4\"]],[false,{\".depending-btn\":false},[\"width:25%\"]],[false,{\".depending-btn .btn-blue\":false},[\"border-radius:50px\",\"padding:24px 30px\"]],[false,{\".native-applications-list\":false},[\"padding:120px 0px 100px\"]],[false,{\".native-applications-list .heading-box\":false},[\"margin-bottom:60px\"]],[false,{\".native-applications-list .heading-box h2 span\":false},[\"color:#28d9cb\"]],[false,{\".native-applications-list .swiper-wrapper\":false},[\"display:flex\",\"justify-content:space-between\"]],[false,{\".native-applications-list .swiper-slide\":false},[\"width:calc(50% - 50px)\"]],[false,{\".applications-col ul\":false},[\"list-style:none\"]],[false,{\".applications-col li\":false},[\"font-size:20px\",\"color:#707070\",\"font-weight:bold\",\"border-bottom:#dbdbdb solid 1px\",\"padding-bottom:25px\",\"margin-bottom:25px\",\"position:relative\",\"padding-left:37px\",\"line-height:1.4\"]],[false,{\".applications-col li::after\":false},[\"position:absolute\",\"left:0px\",\"top:0px\",\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8544.png\\\")\",\"background-repeat:no-repeat\",\"width:24px\",\"height:24px\"]],[false,{\".applications-col li:last-child\":false},[\"border:none\"]],[false,{\".native-applications-list-pagination\":false},[\"text-align:center\"]],[false,{\".native-applications-list-pagination .swiper-pagination-bullet\":false},[\"width:4px\",\"height:4px\",\"background-color:#dbdbdb\",\"opacity:1\"]],[false,{\".native-applications-list-pagination .swiper-pagination-bullet-active\":false},[\"width:24px\",\"height:4px\",\"border-radius:50px\",\"background-color:#28d9cb\"]],[false,{\".native-data-driven-top\":false},[\"background-color:#121d3d\",\"padding-bottom:80px\",\"margin-top:-2px\"]],[false,{\".native-data-driven-top .heading-box label\":false,\".native-data-driven-top .heading-box h2\":false},[\"color:#fff\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 190px\",\"background-color:#f1f1f1\"]],[false,{\".data-driven-application .swiper-slide\":false},[\"width:calc(33.333% - 44px)\"]],[false,{\".data-driven-application .swiper-wrapper\":false},[\"display:flex\",\"justify-content:space-between\"]],[false,{\".data-driven-application .swiper-button-next.swiper-button-disabled\":false,\".data-driven-application .swiper-button-prev.swiper-button-disabled\":false},[\"opacity:0\"]],[false,{\".data-driven-application .swiper-button-next:after\":false},[\"content:\\\"\\\"\",\"background-repeat:no-repeat\",\"width:26px\",\"height:16px\",\"display:none\"]],[false,{\".data-driven-application .swiper-button-next:after:not(#_#_#_#_#_#_#_#_)\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/right-arrow.png\\\")\"]],[false,{\".data-driven-application .swiper-button-prev:after\":false},[\"content:\\\"\\\"\",\"background-repeat:no-repeat\",\"width:26px\",\"height:20px\",\"display:none\"]],[false,{\".data-driven-application .swiper-button-prev:after:not(#_#_#_#_#_#_#_#_)\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/left-arrow-1.png\\\")\"]],[false,{\".data-driven-application .slider-nav\":false},[\"width:55%\",\"display:block\",\"height:20px\",\"margin:0px auto\",\"position:relative\"]],[false,{\".data-driven-application .swiper-pagination-bullet\":false},[\"width:4px\",\"border-radius:50px\",\"height:4px\",\"background-color:#24c1ff\",\"opacity:1\"]],[false,{\".data-driven-application .swiper-pagination-bullet-active\":false},[\"width:24px\",\"border-radius:50px\",\"height:4px\",\"background-color:#152649\"]],[false,{\".data-driven-application .applications-col\":false},[\"padding-bottom:15px\"]],[false,{\".data-driven-application .swiper-button-next\":false,\".data-driven-application .swiper-button-prev\":false},[\"bottom:0px\",\"top:auto\",\"position:absolute\"]],[false,{\".data-driven-application .applications-col li\":false},[\"border:none\",\"padding-bottom:0px\",\"margin-bottom:40px\",\"color:#152649\"]],[false,{\".data-driven-application .applications-col li::after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8556.png\\\")\"]],[false,{\".data-driven-application .applications-col li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8548.png\\\")\"]],[false,{\".data-driven-application .applications-col li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8549.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(1):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8550.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8551.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8552.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(4):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8553.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(3) li:nth-child(1):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8554.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(3) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8555.png\\\")\"]],[false,{\".clients-talk\":false},[\"background-color:#fff\",\"padding:120px 0px 120px\"]],[false,{\".lets-talk-box\":false},[\"background-color:#fff\",\"box-shadow:8px 0px 32px rgba(0,0,0,.1)\",\"padding:56px 0px 90px\",\"border-radius:16px\",\"margin-top:-19%\",\"text-align:center\"]],[false,{\".about-dev-ops .review_sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:100px\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:32px\",\"font-weight:bold\",\"color:#707070\",\"font-family:Raleway,sans-serif\",\"line-height:1.3\"]],[false,{\".lets-talk-box h3 span\":false},[\"color:#28d9cb\"]],[false,{\".clients-talk .btn-wrapper\":false},[\"width:316px\",\"margin:0px auto\",\"margin-top:-38px\"]],[false,{\".btn-gradient\":false},[\"border-radius:50px\",\"padding:18px 30px\",\"width:100%\",\"text-align:center\"]],[false,{\".build-wrapper .swiper-wrapper\":false},[\"display:flex\"]],[false,{\".build-wrapper .review_sec\":false},[\"margin-bottom:19px\",\"box-shadow:none\",\"margin-top:21px\"]],[false,{\".build-wrapper .review_sec:before\":false},[\"position:absolute\",\"bottom:6px\",\"content:\\\"\\\"\",\"width:96%\",\"margin:0px auto\",\"right:0\",\"z-index:-1\",\"left:0\",\"height:93px\",\"border-radius:50px\",\"box-shadow:rgba(0,0,0,.4) 0px 25px 20px -20px\"]],[false,{\".build-wrapper .heading-box\":false},[\"margin-bottom:24px\"]],[false,{\".build-wrapper .review_sec .swiper-slide p\":false},[\"padding-left:0\"]],[false,{\".build-wrapper .custom-txt p\":false},[\"margin-bottom:25px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt\":false},[\"width:49%\",\"margin-right:81px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-img\":false},[\"width:43%\",\"margin-left:0\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt p\":false},[\"margin-bottom:30px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt p:last-of-type\":false},[\"margin:0px\"]],[false,{\".text-grey-box\":false},[\"background-color:#f1f1f1\",\"padding:24px\",\"position:relative\",\"margin:40px 0px 32px\"]],[false,{\".text-grey-box p\":false},[\"padding-right:60px\"]],[false,{\".text-grey-box:after\":false},[\"position:absolute\",\"left:0\",\"top:0\",\"height:100%\",\"width:4px\",\"background:#152649\",\"content:\\\"\\\"\"]],[false,{\".journey-roadmap\":false},[\"margin-top:-253px\",\"background-color:#02163c\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:248px 0px 120px 0px\"]],[false,{\".review_sec2\":false},[\"padding:40px 30px 40px 50px\",\"margin-top:100px\",\"z-index:2\",\"position:relative\",\"box-shadow:none\"]],[false,{\".review_sec2::after\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8578-1.png\\\") no-repeat\"]],[false,{\".review_sec i\":false},[\"line-height:1.6\"]],[false,{\".review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:20px\"]],[false,{\".review_sec2 .title p\":false},[\"color:#152649\",\"line-height:1.2\"]],[false,{\".journey-roadmap-header\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\"]],[false,{\".journey-roadmap-logo\":false},[\"width:29%\"]],[false,{\".journey-roadmap-header .heading-box\":false},[\"width:66%\"]],[false,{\".journey-roadmap-header .heading-box h2\":false},[\"color:#fff\"]],[false,{\".journey-roadmap-header .heading-box h2 span\":false},[\"color:#28d9cb\"]],[false,{\".devops-services\":false},[\"padding-bottom:0\"]],[false,{\".devops-services .heading-box\":false},[\"margin-bottom:45px\"]],[false,{\".devops-services .heading-box h2\":false},[\"color:#28d9cb\"]],[false,{\".devops-services .applications-col ul\":false},[\"margin-bottom:37px\"]],[false,{\".devops-services .applications-col ul li\":false},[\"font-size:20px\",\"font-weight:normal\",\"border-bottom:none\",\"padding-bottom:0\",\"margin-bottom:0\",\"padding-left:37px\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:20px\",\"color:#152649\",\"line-height:1.6\",\"margin-bottom:24px\",\"position:relative\",\"padding-left:42px\",\"font-weight:bold\"]],[false,{\".devops-services .applications-col h5::before\":false},[\"position:absolute\",\"left:0px\",\"top:0px\",\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon1.png\\\")\",\"width:30px\",\"height:30px\",\"background-repeat:no-repeat\",\"margin-top:0px\"]],[false,{\".devops-services .applications-col ul li::after\":false},[\"content:none\"]],[false,{\".srvs-text-box\":false},[\"margin-bottom:37px\"]],[false,{\".srvs-text-box p\":false},[\"font-size:20px\",\"line-height:1.6\",\"padding-left:44px\"]],[false,{\".srvs-text-box:nth-child(1) p:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0\",\"left:0\",\"width:25px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8556.png\\\")\",\"height:25px\",\"margin-top:5px\"]],[false,{\".srvs-text-box:last-child h5\":false},[\"color:#707070\"]],[false,{\".srvs-text-box:last-child h5 span\":false},[\"font-weight:500\",\"color:#152649\"]],[false,{\".reliability-engineers\":false},[\"width:95%\",\"margin:0px auto\",\"background-color:#f5f5f5\",\"border-radius:24px\",\"padding:40px 30px 40px 92px\",\"position:relative\",\"margin-top:100px\",\"font-weight:bold\"]],[false,{\".reliability-engineers p\":false},[\"font-size:20px\",\"font-weight:bold\",\"margin-bottom:0px\"]],[false,{\".fortune-box\":false},[\"text-align:center\",\"display:flex\",\"align-items:flex-end\"]],[false,{\".tex-box\":false},[\"padding:11px 0px\",\"margin-top:25px\",\"line-height:1.6\",\"color:#152649\",\"width:49%\",\"border-radius:10px\",\"border:#707070 solid 1px\"]],[false,{\".right-short-text\":false},[\"margin-left:22px\"]],[false,{\".right-short-text p\":false},[\"font-size:14px\",\"font-weight:normal\",\"font-style:italic\",\"color:#707070\"]],[false,{\".mrdata-logo\":false},[\"position:absolute\",\"left:-58px\",\"top:0\",\"bottom:0\",\"display:flex\",\"align-items:center\"]],[false,{\".devops-services .applications-col:nth-child(1) h5:last-of-type::before\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon3.png\\\")\"]],[false,{\".native-applications-list .swiper-slide:nth-child(2) .srvs-text-box:nth-child(1) p:after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon2.png\\\")\",\"width:33px\"]],[false,{\".native-applications-list .swiper-slide:nth-child(2) .srvs-text-box:nth-child(2) h5::before\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon4.png\\\")\",\"margin-top:0px\"]],[false,{\".native-applications-list .swiper-slide:nth-child(2) .srvs-text-box:nth-child(3) h5::before\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon5.png\\\")\"]],[false,{\".kubernetes-sec\":false},[\"margin-top:-95px\"]],[false,{\".kubernetes-sec .container-md\":false},[\"padding:0px 0px\"]],[false,{\".kubernetes-sec .custom-txt\":false},[\"padding:0px 24px\"]],[false,{\".kubernetes-sec .heading-box h2\":false},[\"color:#fff\",\"margin-bottom:40px\"]],[false,{\".kubernetes-sec .scroll-img amp-img\":false,\".kubernetes-sec .scroll-img amp-anim\":false},[\"margin-bottom:120px\",\"text-align:center\"]],[false,{\".kubernetes-sec .scroll-img\":false},[\"text-align:center\"]],[false,{\".kubernetes-sec .custom-txt p\":false},[\"color:#fff\",\"font-size:20px\",\"line-height:1.6\"]],[false,{\".kubernetes-sec .custom-txt p span\":false},[\"color:#24c1ff\"]],[false,{\".book-cunsultaion-sec\":false},[\"padding:10px 0px 124px 0px\",\"background-color:#f1f1f1\"]],[false,{\".book-cunsultaion-sec a.btn-blue:hover\":false},[\"color:#fff\",\"background:#28d9cb\"]],[false,{\".top-btn\":false},[\"padding-bottom:124px\",\"margin-top:-39px\"]],[false,{\".col-row ul\":false},[\"list-style:none\",\"display:flex\",\"justify-content:space-between\",\"flex-wrap:wrap\"]],[false,{\".col-row ul li\":false},[\"font-size:20px\",\"font-weight:bold\",\"color:#152649\",\"margin-bottom:32px\",\"position:relative\",\"width:30%\",\"padding-left:46px\"]],[false,{\".col-row ul li::after\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"content:\\\"\\\"\",\"width:32px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/clck.png\\\")\",\"height:32px\"]],[false,{\".col-row ul li:nth-child(1)\":false,\".col-row ul li:nth-child(4)\":false},[\"width:35%\"]],[false,{\".col-row ul li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/cstmr.png\\\")\"]],[false,{\".col-row ul li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/wrld.png\\\")\"]],[false,{\".col-row ul li:nth-child(4):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/auto.png\\\")\"]],[false,{\".col-row ul li:nth-child(5):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/drive.png\\\")\"]],[false,{\".col-row ul li:nth-child(6):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/dlr.png\\\")\"]],[false,{\".cost-effective-sec\":false},[\"padding-bottom:0px\",\"padding-top:120px\"]],[false,{\".cost-effective-sec:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#fff\"]],[false,{\".cost-effective-sec .inner\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:end\",\"margin-bottom:80px\"]],[false,{\".cost-effective-sec .custom-txt\":false},[\"width:55%\"]],[false,{\".cost-effective-sec .left-text\":false},[\"width:43%\"]],[false,{\".cost-effective-sec .left-text p\":false},[\"font-size:20px\",\"line-height:1.6\",\"color:#707070\"]],[false,{\".cost-effective-sec .heading-box h2 span\":false},[\"color:#28d9cb\",\"display:block\"]],[false,{\".data-driven-devOps\":false},[\"display:flex\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col\":false},[\"padding-bottom:15px\",\"width:calc(50% - 38px)\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col li\":false},[\"border-bottom:#dbdbdb solid 1px\",\"padding-bottom:32px\",\"margin-bottom:32px\",\"line-height:1.6\",\"padding-left:50px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col li:after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/ppl.png\\\")\",\"width:32px\",\"height:32px\",\"margin-top:8px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(2) li:nth-child(1):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/loaction.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(2) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/icon.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(1) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/icon2.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(1) li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/icon3.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col ul li:last-child\":false},[\"border:none\"]],[false,{\".cost-effective-sec .review_sec2 .swiper-slide\":false},[\"width:100%\"]],[false,{\".cost-effective-sec .review_sec .swiper-slide i\":false},[\"padding-left:0px\"]],[false,{\".infrastructure-sec\":false},[\"margin-top:-100px\",\"background-color:#152649\",\"text-align:center\"]],[false,{\".infrastructure-sec:not(#_#_#_#_#_#_#_)\":false},[\"padding:0px 0 80px\"]],[false,{\".infrastructure-sec .bg-img::before\":false},[\"content:\\\"\\\"\",\"width:100%\",\"height:265px\",\"position:absolute\",\"left:0\",\"bottom:-3px\",\"background-image:linear-gradient(rgba(21,38,73,0),#152649)\"]],[false,{\".infrastructure-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".infrastructure-sec .container-md:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0px\"]],[false,{\".infrastructure-sec .heading-box h2\":false},[\"color:#fff\",\"margin:auto\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:93%\"]],[false,{\".infrastructure-sec .heading-box:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\",\"margin-top:40px\",\"width:100%\"]],[false,{\".infrastructure-sec .heading-box h2\":false},[\"color:#fff\",\"max-width:inherit\",\"text-align:center\"]],[false,{\".contact-wrapper-banner\":false},[\"z-index:2\"]],[false,{\".contact-form-left .calendly-inline-widget:not(#_#_#_#_#_#_#_)\":false},[\"overflow:hidden\"]],[false,{\".contact-wrapper-banner amp-img\":false,\".contact-wrapper-banner amp-anim\":false},[\"min-height:110px\"]],[false,{\".contact-wrapper-banner:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:28px\",\"height:28px\",\"background-color:#152649\",\"bottom:-13px\",\"left:18%\",\"z-index:-1\",\"transform:rotate(45deg)\",\"border-radius:4px\"]],[false,{\".change_bg .custom-contact-wrapper\":false},[\"background:#152649\",\"position:relative\",\"z-index:2\"]],[false,{\".about-map\":false},[\"position:relative\"]],[false,{\".c-full-map\":false},[\"position:absolute\",\"top:0\",\"width:100%\",\"height:100%\",\"z-index:1\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"width:100%\",\"height:100%\",\"object-fit:cover\"]],[false,{\".custom-contact-wrapper\":false},[\"padding:125px 0px 160px\",\"margin-top:0px\"]],[false,{\".about-map .c-full-map .wpgmza_map.wpgmza-auto-left:not(#_#_#_#_#_#_#_)\":false},[\"height:100%\"]],[false,{\".about-map .c-full-map .wpgmza-modern-store-locator>.wpgmza-inner\":false},[\"opacity:0\"]],[false,{\".schedule-box h1\":false},[\"display:none\"]],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"display:flex\",\"justify-content:space-between\",\"flex-wrap:wrap\",\"background:#fff\",\"box-shadow:8px 0px 32px rgba(0,0,0,.1)\",\"padding:0px\",\"border-radius:0px 26px 26px 26px\",\"position:relative\",\"z-index:2\"]],[false,{\".contact-form-left\":false},[\"width:57%\",\"padding:58px 0px 75px\"]],[false,{\".choose-option\":false},[\"padding-left:46px\"]],[false,{\".choose-option ul\":false},[\"display:flex\",\"flex-wrap:wrap\",\"justify-content:space-between\",\"list-style:none\",\"align-items:center\",\"margin-bottom:60px\"]],[false,{\".choose-option ul li\":false},[\"font-size:20px\",\"color:#152649\"]],[false,{\".choose-option ul li\":false},[\"padding:15px 33px\",\"border-radius:50px\",\"color:#707070\",\"background:#fff\",\"transition:all ease .5s\"]],[false,{\".choose-option ul li:hover\":false},[\"background:#f1f1f1\"]],[false,{\".choose-option ul li:nth-child(2)\":false},[\"font-weight:800\",\"padding:0px 20px\",\"background:transparent\",\"color:#121d3d\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box label\":false},[\"display:block\",\"font-size:18px\",\"color:#121d3d\",\"font-weight:bold\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control\":false},[\"width:100%\",\"display:block\",\"padding:14px 0px 8px\",\"border:0\",\"border-radius:0px\",\"outline:none\",\"background-color:#fff\",\"font-size:20px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:400\",\"color:#000\",\"resize:none\",\"-webkit-transition:.5s ease 0s\",\"transition:.5s ease 0s\",\"border-bottom:#e6e6e6 solid 1px\",\"margin-bottom:15px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .col-md-4\":false},[\"max-width:50%\",\"margin-bottom:15px\",\"flex:0 0 50%\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box::placeholder\":false},[\"font-size:16px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control::-webkit-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:16px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control::-ms-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:16px\",\"font-weight:normal\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control::placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:16px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea\":false},[\"margin-top:0\",\"height:130px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:55px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box input[type=\\\"submit\\\"]\":false},[\"background:linear-gradient(-90deg,#28d9cb 0,#a0f266 100%)\",\"font-size:18px\",\"height:70px\",\"font-weight:800\",\"cursor:pointer\",\"max-width:300px\",\"width:100%\",\"border-radius:50px\",\"margin:0\"]],[false,{\".change_bg .contact-form-info-right\":false},[\"background:linear-gradient(180deg,#28d9cb 0,#66f2a3 100%)\"]],[false,{\".change_bg .contact-form-info-right ul li a\":false,\".change_bg .contact-form-info-right ul li span a\":false,\".change_bg .contact-form-info-right ul li\":false,\".change_bg .contact-form-info-right ul li:first-of-type\":false,\".change_bg .contact-form-info-right h3\":false},[\"color:#152649\"]],[false,{\".change_bg .contact-form-info-right ul li\":false},[\"border-color:rgba(255,255,255,28%)\"]],[false,{\".btn-group button\":false},[\"border-radius:50px\",\"border:none\"]],[false,{\".contact-form-info-right\":false},[\"width:38%\",\"background-color:#152649\",\"border-radius:26px\",\"padding:50px 80px 119px\"]],[false,{\".contact-form-info-right h3\":false},[\"font-size:32px\",\"color:#28d9cb\",\"line-height:1.5\",\"margin-bottom:25px\",\"font-family:Raleway,sans-serif\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control:focus\":false},[\"outline:none\",\"box-shadow:none\"]],[false,{\".contact-form-info-right ul\":false},[\"list-style:none\",\"margin-bottom:70px\"]],[false,{\".contact-form-info-right ul li\":false},[\"border-bottom:#525c70 solid 1px\",\"padding:40px 0px 47px\",\"color:#bcc2ce\",\"font-size:17px\",\"position:relative\",\"display:flex\",\"align-items:center\",\"line-height:1.5\"]],[false,{\".contact-form-info-right ul li a\":false},[\"color:#28d9cb\",\"padding-left:15px\",\"text-decoration:underline\",\"display:block\"]],[false,{\".contact-form-info-right ul li:nth-of-type(1) a\":false},[\"text-decoration:none\"]],[false,{\".contact-form-info-right ul li:nth-of-type(2) a\":false},[\"color:#28d9cb\",\"padding-left:0px\"]],[false,{\".contact-form-info-right ul li:nth-of-type(2) span\":false},[\"padding-left:55px\",\"display:block\"]],[false,{\".contact-form-info-right ul li:last-child a\":false},[\"padding-left:55px\"]],[false,{\".contact-form-info-right ul li:first-of-type a\":false},[\"color:#fff\",\"font-size:32px\",\"font-weight:bold\",\"line-height:1.5\"]],[false,{\".contact-form-info-right ul li:last-child\":false},[\"border:none\"]],[false,{\".change_bg .contact-form-info-right ul .phone:before\":false,\".change_bg .contact-form-info-right ul .address:before\":false,\".change_bg .contact-form-info-right ul .email:before\":false,\".change_bg .btm-icon-line amp-img\":false,\".change_bg .btm-icon-line amp-anim\":false},[\"filter:brightness(100)\"]],[false,{\".contact-form-info-right ul .phone:before\":false},[\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/phone.svg\\\")\",\"background-size:cover\",\"background-repeat:no-repeat\",\"width:40px\",\"height:40px\",\"display:inline-block\",\"vertical-align:middle\"]],[false,{\".contact-form-info-right ul .address:before\":false},[\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/address.svg\\\")\",\"background-size:cover\",\"background-repeat:no-repeat\",\"width:41px\",\"height:45px\",\"display:inline-block\",\"vertical-align:middle\",\"padding-bottom:46px\",\"position:absolute\"]],[false,{\".contact-form-info-right ul .email:before\":false},[\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/email.svg\\\")\",\"background-size:cover\",\"background-repeat:no-repeat\",\"width:40px\",\"height:40px\",\"display:inline-block\",\"vertical-align:middle\",\"position:absolute\"]],[false,{\".change_bg .font-des\":false},[\"-webkit-text-fill-color:#fff\",\"border-image:unset\"]],[false,{\".font-des\":false},[\"font-size:25px\",\"color:#fff\",\"font-weight:bold\",\"border:4px solid\",\"padding:4px 5px\",\"background:linear-gradient(0deg,rgba(40,217,203,1) 0%,rgba(102,242,163,1) 100%)\",\"-webkit-background-clip:text\",\"-webkit-text-fill-color:transparent\",\"border-image:linear-gradient(0deg,rgba(40,217,203,1) 0%,rgba(102,242,163,1) 100%)\"]],[false,{\".btm-icon-line\":false},[\"position:relative\",\"display:flex\",\"justify-content:center\"]],[false,{\".choose-option ul li.tab\":false},[\"cursor:pointer\"]],[false,{\".choose-option ul li:last-child\":false},[\"margin-left:0px\"]],[false,{\".contact-form-left .tab-content\":false},[\"display:none\",\"padding-left:50px\"]],[false,{\".contact-form-left .tab-content.active\":false},[\"display:block\"]],[false,{\".btm-icon-line:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"left:0px\",\"bottom:0px\",\"margin:auto\",\"height:1px\",\"width:130px\",\"top:0\",\"background:#525c70\"]],[false,{\".btm-icon-line::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"right:0px\",\"bottom:0px\",\"margin:auto\",\"height:1px\",\"width:130px\",\"top:0\",\"background:#525c70\"]],[true,\"@media only screen and (min-width: 2751px) and (max-width: 3840px){\"],[true,{\".new-header\":true},[\"padding:0px 23%\"]],[true,\"}\"],[true,\"@media only screen and (min-width: 2200px) and (max-width: 2750px){\"],[true,{\".new-header\":true},[\"padding:0px 10%\"]],[true,\"}\"],[false,\"@media screen and (max-width: 1320px) and (min-width: 1025px){\"],[false,{\".contact-form-info-right\":false},[\"padding:50px 25px 119px\"]],[false,\"}\"],[true,\"@media only screen and (max-width: 1920px){\"],[true,{\".new-header .dropdown-menu>.container\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".new-header .mega-menu-right\":true},[\"padding:0px\",\"margin:0px\",\"flex:0 0 71.666667%\",\"max-width:71.666667%\"]],[true,{\".new-header .dropdown-menu .col-lg-4\":true},[\"padding:0\",\"flex:0 0 24.333333%\",\"max-width:24.333333%\"]],[true,{\".new-header .mega-menu-right .row .menu-widget\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".dropdown-menu\":true},[\"width:66%\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1024px){\"],[true,{\".new-header .dropdown-menu>.container\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".new-header .mega-menu-right\":true},[\"flex:0 0 78.666667%\",\"max-width:78.666667%\"]],[true,{\".new-header .dropdown-menu .col-lg-4\":true},[\"flex:0 0 21.333333%\",\"max-width:21.333333%\"]],[true,{\".new-header .mega-menu-right .row .menu-widget\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".dropdown-menu\":true},[\"width:66%\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-top:-16%\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:12%\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .mega-menu-right\":true},[\"flex:0 0 66.666667%\",\"max-width:66.666667%\",\"padding-right:71px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .mega-menu-right\":true},[\"flex:100%\",\"max-width:100%\",\"padding-right:20px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .dropdown-menu .col-lg-4\":true},[\"flex:100%\",\"max-width:100%\"]],[true,{\".new-header__nav--subtitle p\":true},[\"padding-left:0px\"]],[true,{\"a.new-header__nav--menu--button\":true},[\"margin-bottom:25px\"]],[true,{\".new-header__menu-item\":true},[\"padding-left:0\"]],[true,\"}\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 90px 0px 30px\"]],[true,\"@media only screen and (min-width: 1920px) and (max-width: 2129px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 50px 0px 30px\"]],[true,\"}\"],[true,\"@media (max-width: 1800px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 2.2rem\"]],[true,\"}\"],[true,\"@media (max-width: 1366px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 1rem 0rem 2.2rem\"]],[true,\"}\"],[true,\"@media (max-width: 1280px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 1.2rem\"]],[true,\"}\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link\":true},[\"font-size:16px\"]],[true,\"@media only screen and (max-width: 1920px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:16px\",\"padding:0px 17px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1680px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"padding:0px 6px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1440px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"padding:0px 11px\",\"font-size:14px\"]],[false,{\".native-applications-list\":false},[\"padding:120px 0px 120px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1366px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:13px\",\"padding:0px 11px\"]],[false,{\".depending-text p\":false},[\"font-size:23px\"]],[false,{\".applications-col li\":false},[\"font-size:18px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1024px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\",\"padding:0px 8px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:10px\",\"padding:.5rem 1rem\"]],[true,\"}\"],[false,{\".show>.dropdown-toggle::after\":false},[\"transform:rotate(45deg)\",\"text-align:left\",\"display:inline-block\"]],[false,{\".show>.dropdown-toggle::after:not(#_#_#_#_#_#_#_#_)\":false},[\"width:7px\",\"height:7px\",\"border:solid 1px #24c1ff\",\"border-left:0\",\"border-top:0\"]],[false,\"@media only screen and (max-width: 991px){\"],[false,{\".show>.dropdown-toggle::after\":false},[\"display:none\"]],[false,\"}\"],[true,{\"a.new-header__nav--menu--button\":true},[\"position:relative\",\"min-width:132px\",\"transition:all ease .5s\",\"transition:all .5s\",\"border:1px solid #9df168\",\"background:transparent\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"margin:0px\",\"display:flex\",\"text-align:left\",\"padding-left:10px\",\"padding-right:10px\",\"line-height:44px\",\"transform:scale(1)\",\"max-width:170px\"]],[true,\"@media (max-width: 992px){\"],[true,{\"a.new-header__nav--menu--button\":true},[\"width:150px\"]],[true,\"}\"],[true,\"@media (max-width: 991px){\"],[true,{\"a.new-header__nav--menu--button\":true},[\"margin-bottom:25px\"]],[true,\"}\"],[true,{\".new-header__nav--title h5\":true},[\"padding-right:40px\"]],[true,\"@media (max-width: 1680px){\"],[true,{\".new-header__nav--title h5\":true},[\"padding-right:0px\"]],[true,\"}\"],[true,{\"a.new-header__nav--menu--button:before\":true},[\"position:absolute\",\"right:30px\",\"top:43%\",\"width:10px\",\"height:10px\",\"border:#707070 solid 1px\",\"z-index:99\",\"content:\\\"\\\"\",\"transform:rotate(45deg)\",\"border-bottom:0\",\"border-left:0\",\"margin-left:15px\",\"display:none\"]],[true,{\"a.new-header__nav--menu--button:hover\":true},[\"transform:scale(1.1)\"]],[true,\"@keyframes pulse{\"],[true,\"0%{transform:scale(1)}\"],[true,\"100%{transform:scale(1.1)}\"],[true,\"}\"],[true,{\".new-header__nav--menu--button:hover\":true},[\"font-size:1rem\"]],[true,\"@media screen and (max-width: 992px){\"],[true,{\"a.new-header__nav--menu--button:after\":true},[\"width:110px\"]],[true,\"}\"],[true,{\"a.new-header__nav--menu--button:hover::after\":true},[\"width:100%\",\"transition:all ease .2s\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\"]],[true,{\".new-header__nav--menu--title\":true},[\"color:#152649\"]],[true,{\".new-header__nav--subtitle-icon amp-img\":true,\".new-header__nav--subtitle-icon amp-anim\":false},[\"width:25px\"]],[true,{\".new-header__nav--subtitle-icon\":true},[\"text-align:left\"]],[true,\"@media screen and (max-width: 1920px){\"],[true,{\".new-header__nav--menu--img\":true},[\"flex:0 0 23%\",\"max-width:23%\"]],[true,{\".col-md-10.menu-text\":true},[\"flex:0 0 77%\",\"max-width:77%\",\"padding-right:0px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1440px){\"],[true,{\".new-header__nav--menu--img\":true},[\"padding:0\",\"max-width:20%\",\"flex:0 0 20%\"]],[true,\"}\"],[true,{\".col-12.new-header__nav--subtitle\":true},[\"padding-right:20px\"]],[true,{\".dropdown-menu\":true},[\"border-top:1px solid #dfdfdf\"]],[true,\"@media only screen and (max-width: 1920px){\"],[true,{\".dropdown-menu\":true},[\"border-top:1px solid #dfdfdf\",\"width:64%\",\"padding-left:40px\",\"padding-top:20px\",\"padding-bottom:20px\"]],[true,{\".new-header__nav--list li .nav-link:not(#_#_#_#_#_#_#_#_)\":true},[\"padding-right:20px\",\"padding-left:20px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1680px){\"],[true,{\".dropdown-menu\":true},[\"width:70%\",\"padding-left:44px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1536px){\"],[true,{\".dropdown-menu\":true},[\"width:76%\",\"padding-left:44px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1440px){\"],[true,{\".new-header__nav--list li\":true},[\"padding:0px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 991px){\"],[true,{\".new-header__nav--list li\":true},[\"padding-left:1rem\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1440px){\"],[true,{\".dropdown-menu\":true},[\"width:83%\",\"padding-left:50px\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:44px\"]],[false,{\".review_sec2\":false},[\"margin-top:47px\"]],[false,{\".top-btn\":false},[\"padding-bottom:60px\"]],[false,{\".book-cunsultaion-sec\":false},[\"padding:10px 0px 60px 0px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1024px){\"],[true,{\".dropdown-menu\":true},[\"padding-left:25px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".dropdown-menu\":true},[\"width:100%\",\"padding-right:10px\",\"padding-left:1rem\",\"border-top:none\"]],[true,\"}\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:18px\",\"letter-spacing:-.43px\"]],[true,\"@media screen and (max-width: 1280px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:16px\"]],[false,{\".custom-qout-box .review_sec i\":false},[\"font-size:18px\"]],[false,{\".depending-text p\":false},[\"font-size:21px\"]],[false,{\".applications-col li\":false},[\"font-size:17px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1024px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:14px\"]],[false,{\".custom-qout-box .review_sec i\":false},[\"font-size:16px\"]],[false,{\".depending-text p\":false},[\"font-size:17px\"]],[false,{\".native-applications-list\":false},[\"padding:90px 0px 50px\"]],[false,{\".depending-btn .btn-blue\":false},[\"padding:15px 10px\"]],[false,{\".applications-col li\":false},[\"font-size:15px\"]],[false,{\".native-applications-list .swiper-slide\":false},[\"width:calc(50% - 19px)\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:26px\"]],[false,{\".lets-talk-box\":false},[\"margin-top:-25%\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 140px\"]],[false,{\".data-driven-application .swiper-slide\":false},[\"width:calc(33.333% - 10px)\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt\":false},[\"margin-right:0\"]],[true,\"}\"],[true,\"@media screen and (max-width: 991px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:1rem\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:18%\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:30px\",\"width:33%\"]],[false,{\".keeping-future ul li:nth-child(9)\\n.keeping-future ul li:nth-child(6)\":false,\".keeping-future ul li:nth-child(3)\":false},[\"margin-right:0px\"]],[false,{\".keeping-future ul li:nth-child(10)\":false,\".keeping-future ul li:nth-child(9)\":false},[\"border-bottom:#16365c solid 1px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 768px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:1.1rem\"]],[false,{\".keeping-you-competitive p\":false},[\"font-size:13px\"]],[false,{\".depending-on\":false},[\"flex-wrap:wrap\"]],[false,{\".depending-img-box\":false},[\"width:20%\"]],[false,{\".depending-text\":false},[\"width:75%\"]],[false,{\".depending-btn\":false},[\"width:100%\",\"text-align:center\"]],[false,{\".custom-qout-box\":false},[\"padding:40px 0px 60px\"]],[false,{\".depending-btn .btn-blue\":false},[\"padding:15px 30px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-top:-24%\",\"margin-bottom:55px\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 110px\"]],[false,{\".native-applications-list .heading-box h2\":false},[\"font-size:25px\"]],[false,{\".native-applications-list .heading-box\":false},[\"margin-bottom:35px\"]],[false,{\".applications-col li\":false},[\"font-size:12px\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:20px\"]],[false,{\".lets-talk-box\":false},[\"padding:35px 0px 60px\",\"margin-top:-29%\"]],[false,{\".clients-talk\":false},[\"padding:120px 0px 55px\"]],[false,{\".clients-talk .btn-gradient\":false},[\"font-size:27px\",\"padding:10px 30px\"]],[false,{\".clients-talk .btn-wrapper\":false},[\"width:245px\",\"margin-top:-27px\"]],[false,{\".keeping-future ul\":false},[\"justify-content:space-between\"]],[false,{\".keeping-future ul li\":false},[\"width:48%\"]],[false,{\".keeping-future ul li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:48%\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(10)\":false},[\"border-bottom:#16365c solid 1px\"]],[false,{\".tex-box\":false},[\"width:68%\"]],[true,\"}\"],[true,{\".new-header__nav--subtitle\":true,\".new-header__nav--subtitle .col-10\":true,\".new-header__nav--title .col-10\":true,\".new-header__nav--title\":true},[\"padding:0px\"]],[true,{\".new-header__nav--subtitle .row .col-12\":true},[\"padding:0px\"]],[true,{\".new-header__nav--menu--text\":true},[\"font-size:12px\",\"letter-spacing:-.29px\"]],[true,{\".new-header__nav--menu--img amp-img\":true,\".new-header__nav--menu--img amp-anim\":false},[\"max-width:100%\",\"width:48px\"]],[true,\"@media only screen and (max-width: 1400px){\"],[true,{\".new-header .dropdown-menu .menu-right\":false,\".new-header .dropdown-menu .menu-widget .row\":true,\".new-header .dropdown-menu .menu-widget\":true},[\"padding:0px\"]],[true,{\".mega-menu-right\":true},[\"padding:0px\"]],[true,{\".new-header__nav--menu--box\":true},[\"align-items:flex-start\"]],[true,{\".col-md-10.menu-text\":true},[\"padding:0px 2px 0px 9px\",\"max-width:80%\",\"flex:0 0 80%\"]],[true,\"}\"],[true,{\".footer-2022__social-media a\":true},[\"transition:all ease .5s\"]],[true,{\".footer-2022__social-media a:hover\":true},[\"margin-top:-10px\"]],[true,\"@media only screen and (min-width: 1800px) and (max-width: 3034px){\"],[true,{\"footer.footer-2022 .container\":true},[\"max-width:1545px\"]],[true,\"}\"],[true,\"@media (max-width: 600px){\"],[true,{\"footer.footer-2022 .container\":true},[\"padding:0px 44px\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec\":false},[\"padding:40px 0px 0px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row\":false},[\"padding:40px 25px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content.active\":false},[\"flex-wrap:wrap\",\"padding-bottom:28px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img\":false},[\"width:100%\",\"margin-bottom:32px\"]],[false,{\".rebuild-and-replatform\":false},[\"padding:120px 0px 120px 0px\"]],[false,{\".rebuild-and-replatform .txt .heading-box h2 br\":false},[\"display:none\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text\":false},[\"padding-left:0\",\"width:100%\"]],[false,{\".review_sec amp-img\":false,\".review_sec amp-anim\":false},[\"top:0\"]],[false,{\".review_sec .swiper-slide i\":false},[\"padding-left:0\"]],[false,{\".review_sec .swiper-slide i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-boxs\":false},[\"margin-bottom:8px\"]],[false,{\".reviewSwiper\":false},[\"padding-top:12px\"]],[false,{\".review_sec .swiper-slide p\":false},[\"padding-left:55px\"]],[false,{\".review_sec .title p\":false},[\"padding-left:0px\"]],[false,{\".review_sec .title p span\":false},[\"display:block\"]],[false,{\".review_sec2 .swiper-slide p:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:0px\"]],[true,\"}\"],[true,\"@media (max-width: 374px){\"],[true,{\"footer.footer-2022 .container\":true},[\"padding:0px 30px\"]],[true,\"}\"],[true,\"@media (max-width: 320px){\"],[true,{\"footer.footer-2022 .container\":true},[\"padding:0px 10px\"]],[true,\"}\"],[true,{\".footer-2022__copyright\":true},[\"letter-spacing:-.35px\"]],[false,{\".container-md\":false},[\"max-width:1272px\",\"margin:0 auto\",\"padding:0 20px\",\"width:90%\"]],[true,{\".footer-2022__menu--list h5:after\":true},[\"border-top:0px\",\"border-right:0\",\"border-left:0\"]],[true,\"@media (max-width: 768px){\"],[true,{\".footer-2022__menu--box\":true},[\"flex-direction:inherit\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[true,\"}\"],[true,\"@media (max-width: 767px){\"],[true,{\".footer-2022__box-end\":true},[\"letter-spacing:-.35px\"]],[true,{\".footer-2022__menu--box\":true},[\"flex-direction:column\"]],[false,{\".g-small-d-block\":false},[\"display:block\"]],[false,{\".g-small-d-none\":false},[\"display:none\"]],[false,{\".data-driven-application .swiper-button-next:after\":false},[\"display:block\"]],[false,{\".data-driven-application .swiper-button-prev:after\":false},[\"display:block\"]],[true,\"}\"],[true,\"@media (max-width: 767px){\"],[false,{\".container-md\":false},[\"width:100%\",\"padding:0 30px\"]],[false,{\".accordianNav .drop_arrow:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"z-index:0\",\"left:0\",\"top:0\",\"width:0\",\"height:100%\",\"background-color:#444\",\"background:rgba(244,244,244,.3)\",\"transition:all .3s ease-out\"]],[false,{\".accordianNav .drop_arrow:hover:before\":false,\".accordianNav .drop_arrow .active:before\":false},[\"width:2%\"]],[true,{\".footer-2022 .drop_arrow\":true},[\"position:relative\"]],[false,{\".drop_arrow.active h5\":false},[\"color:#fff\"]],[true,{\".footer-2022 .drop_arrow::before\":true},[\"content:\\\"\\\"\",\"width:6px\",\"height:6px\",\"border-bottom:2px solid #24c1ff\",\"border-right:2px solid #24c1ff\",\"float:right\",\"position:absolute\",\"top:12px\",\"right:0px\",\"transform:rotate(45deg)\",\"transform-origin:center\",\"transition:all .4s ease\"]],[false,{\".footer-2022 .drop_arrow.active::before\":false},[\"transform:rotate(225deg)\"]],[false,{\".footer-2022__menu--list .drop_arrow .active:after\":false},[\"transform:rotate(-135deg)\",\"border-color:#fff\"]],[true,{\".footer-2022__menu--list ul\":true},[\"margin-bottom:3rem\",\"display:none\"]],[false,{\".keeping-future ul\":false},[\"column-count:2\"]],[false,{\".applications-col li\":false},[\"font-size:14px\"]],[false,{\".data-driven-application .applications-col li\":false},[\"margin-bottom:24px\"]],[false,{\".applications-col li\":false},[\"padding-bottom:16px\",\"margin-bottom:16px\"]],[false,{\".custom-qout-box .review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".keeping-future ul li\":false},[\"margin-bottom:16px\",\"padding-bottom:16px\",\"font-size:14px\"]],[false,{\".review_sec .title p\":false},[\"font-size:14px\"]],[false,{\".keeping-you-competitive\":false},[\"padding:80px 0px 195px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-bottom:65px\",\"margin-top:-19%\"]],[false,{\".depending-text\":false},[\"text-align:center\",\"width:80%\",\"margin:0px auto 40px auto\"]],[false,{\".custom-qout-box\":false},[\"padding:40px 0px 80px\"]],[false,{\".native-applications-list\":false},[\"padding:80px 0px 50px\"]],[false,{\".native-applications-list .swiper-slide:nth-child(1) li:first-of-type\":false},[\"padding-right:80px\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:24px\",\"padding:0px 100px\"]],[false,{\".depending-img-box\":false},[\"width:100%\",\"text-align:center\"]],[false,{\".keeping-you-competitive p\":false},[\"font-size:14px\"]],[false,{\".keeping-future\":false},[\"margin-top:60px\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner:after\":false},[\"position:absolute\",\"bottom:0\",\"left:0\",\"content:\\\"\\\"\",\"width:30px\",\"height:30px\",\"background:#04061f\",\"transform:rotate(45deg)\",\"border-radius:2px\",\"margin-left:34px\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner.content_center\":false},[\"text-align:center\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner.content_center:after\":false},[\"margin:0px auto\",\"left:0px\",\"right:0px\"]],[false,{\".c-app-banner h2\":false},[\"font-size:32px\"]],[false,{\".c-app-banner p\":false},[\"font-size:16px\"]],[false,{\".infrastructure-sec .bg-img .full-img\":false},[\"height:500px\",\"object-fit:cover\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(1) ul li:last-child\":false},[\"border-bottom:#dbdbdb solid 1px\"]],[false,{\".reliability-engineers\":false},[\"width:100%\",\"border:#fff solid 1px\"]],[false,{\".fortune-box\":false},[\"flex-wrap:wrap\"]],[false,{\".tex-box\":false},[\"width:100%\",\"margin-top:15px\",\"margin-bottom:15px\"]],[false,{\".reliability-engineers p\":false},[\"line-height:15px\",\"margin:0px\"]],[false,{\".right-short-text\":false},[\"margin-left:0\",\"text-align:center\",\"width:100%\"]],[true,\"}\"],[false,\"@media (max-width: 575px){\"],[false,{\".container-md\":false},[\"padding:0 24px\"]],[false,{\".about-dev-ops .review_sec2:not(#_#_#_#_#_#_#_)\":false},[\"padding:20px 20px 25px 20px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"background-color:#f5f5f5\",\"margin-bottom:65px\",\"margin-top:-30%\"]],[false,{\".review_sec\":false},[\"padding:25px\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 200px\"]],[false,{\".depending-text p\":false},[\"font-size:16px\"]],[false,{\".lets-talk-box\":false},[\"padding:35px 0px 60px\",\"margin-top:-43%\"]],[false,{\".depending-text\":false},[\"width:96%\"]],[false,{\".lets-talk-box h3\":false},[\"padding:0px 45px\"]],[false,{\".clients-talk .btn-gradient\":false},[\"font-size:14px\",\"padding:16px 30px\"]],[false,{\".keeping-you-competitive:not(#_#_#_#_#_#_#_)\":false},[\"padding:80px 0px 160px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li\":false},[\"padding:5px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li a\":false},[\"font-size:14px\"]],[false,{\".review_sec::after\":false},[\"left:25px\"]],[false,{\".review_sec .swiper-slide i\":false},[\"margin:8px 0px 8px\",\"padding-right:10px\"]],[false,{\".review_sec .swiper-slide p\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform .txt p\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform:not(#_#_#_#_#_#_#_)\":false},[\"padding:65px 0px 120px 0px\"]],[false,{\".rebuild-and-replatform .txt label\":false},[\"margin-bottom:15px\"]],[false,{\".rebuild-and-replatform .heading-box h2\":false},[\"font-size:30px\",\"margin-bottom:30px\"]],[false,{\".rebuild-and-replatform .txt p:last-of-type\":false},[\"margin-bottom:55px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text p\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content.active\":false},[\"padding-bottom:40px\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec\":false},[\"padding:15px 0px 0px\"]],[false,{\".keeping-you-competitive .heading-box h2\":false},[\"font-size:30px\",\"margin-bottom:24px\"]],[false,{\".keeping-you-competitive .heading-box h2 br\":false},[\"display:none\"]],[false,{\".keeping-future ul li:nth-of-type(4)\":false},[\"order:11\",\"border:none\"]],[false,{\".keeping-future ul li:nth-of-type(8)\":false},[\"order:9\"]],[false,{\".keeping-future ul li\":false},[\"margin-bottom:10px\",\"padding-bottom:10px\"]],[false,{\".native-applications-list .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".clients-talk .btn-wrapper\":false},[\"width:132px\"]],[false,{\"section.custom-full-bg\":false},[\"display:none\"]],[false,{\".native-applications-list .heading-box label\":false},[\"letter-spacing:1.1px\"]],[false,{\".c-scroll-box\":false},[\"overflow:scroll\"]],[false,{\".c-scroll-box:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".scroll-img\":false},[\"width:250%\",\"position:relative\"]],[false,{\".scroll-img amp-img\":false,\".scroll-img amp-anim\":false},[\"max-width:unset\",\"width:100%\"]],[false,{\".scroll-img:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/sroll-l.png\\\")\",\"width:25px\",\"height:25px\",\"bottom:0\",\"margin:auto\",\"left:25%\"]],[false,{\".scroll-img::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/scroll-right.png\\\")\",\"width:25px\",\"height:25px\",\"bottom:0\",\"margin:auto\",\"right:27%\"]],[false,{\".journey-roadmap .scroll-img::after\":false,\".journey-roadmap .scroll-img::before\":false},[\"display:none\"]],[false,{\".native-data-driven-top\":false},[\"padding-top:80px\"]],[false,{\".native-data-driven-top .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".cost-effective-sec .review_sec .swiper-slide i:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".lets-talk-box\":false},[\"margin-top:-73%\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-bottom:65px\",\"margin-top:-54%\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner amp-img\":false,\"section.cp-tek-teams-isk.c-app-banner amp-anim\":false},[\"min-height:inherit\"]],[false,{\".c-app-banner .title\":false},[\"margin-bottom:14px\"]],[false,{\".c-app-banner p\":false},[\"font-size:16px\",\"padding-right:20px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-img\":false,\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-anim\":false},[\"max-width:185px\",\"object-fit:cover\",\"width:100%\",\"text-align:center\",\"display:block\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media (max-width: 360px){\"],[false,{\".lets-talk-box h3\":false},[\"padding:0px 26px\"]],[false,\"}\"],[true,{\"a\":true},[\"display:inline-block\"]],[true,{\"*\":true},[\"-webkit-box-sizing:border-box\",\"box-sizing:border-box\",\"margin:0\",\"padding:0\"]],[true,{\"amp-img\":true,\"amp-anim\":false},[\"max-width:100%\"]],[true,{\"a\":true},[\"text-decoration:none\"]],[false,{\".btn-blue\":false},[\"background-color:#24c1ff\",\"color:#152649\",\"border-radius:30px\",\"font-size:20px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding:15px 30px\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"border:1px solid #24c1ff\"]],[false,\"@media (max-width: 992px){\"],[false,{\".btn-blue\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".btn-blue\":false},[\"font-size:14px\",\"padding:15px 40px\"]],[false,\"}\"],[false,{\".btn-blue:hover\":false},[\"background-color:transparent\"]],[false,{\".btn-blue.dark-blue\":false},[\"background-color:#152649\",\"color:#24c1ff\",\"border:1px solid #152649\"]],[false,{\".btn-blue.dark-blue:hover\":false},[\"background-color:transparent\"]],[false,{\".btn-green\":false},[\"background-color:transparent\",\"border:1px solid #8bed78\",\"color:#8bed78\",\"border-radius:30px\",\"font-size:20px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding:15px 30px\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width: 992px){\"],[false,{\".btn-green\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".btn-green\":false},[\"font-size:14px\",\"padding:15px 40px\"]],[false,\"}\"],[false,{\".btn-green:hover\":false},[\"color:#152649\",\"background-color:#8bed78\"]],[false,{\".btn-gradient\":false},[\"background:-webkit-gradient(linear,left top,right top,color-stop(0,#28d9cb),to(#a0f266))\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"color:#152649\",\"border-radius:30px\",\"font-size:32px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding:15px 30px\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".btn-gradient:hover\":false},[\"background:-webkit-gradient(linear,right top,left top,color-stop(0,#28d9cb),to(#a0f266))\",\"background:linear-gradient(-90deg,#28d9cb 0,#a0f266 100%)\"]],[false,{\".heading-box label\":false},[\"font-size:18px\",\"color:#7080a7\",\"display:block\",\"margin-bottom:24px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"letter-spacing:1.8px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".heading-box label\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".heading-box label\":false},[\"font-size:14px\",\"letter-spacing:1.4px\",\"margin-bottom:16px\"]],[false,\"}\"],[false,{\".heading-box label i\":false},[\"margin-right:8px\"]],[false,{\".heading-box h2\":false},[\"color:#152649\",\"font-size:50px\",\"line-height:1\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\"]],[false,\"@media (max-width: 1377px){\"],[false,{\".keeping-future ul li\":false},[\"margin-right:43px\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".heading-box h2\":false},[\"font-size:45px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".heading-box h2\":false},[\"font-size:40px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".heading-box h2\":false},[\"font-size:32px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".heading-box h2\":false},[\"font-size:30px\"]],[false,\"}\"],[false,{\".heading-box h2 span\":false},[\"color:#24c1ff\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:80px\",\"text-align:center\",\"padding-top:60px\",\"padding-bottom:120px\",\"position:relative\",\"background-position:center bottom\",\"background-repeat:no-repeat\",\"background-size:cover\",\"min-height:500px\",\"max-height:55vh\"]],[false,\"@media (max-width: 480px){\"],[false,{\".cp-cloud-native-isk figure\":false},[\"max-width:24px\",\"margin:auto\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk p\":false},[\"color:#28d9cb\",\"font-size:16px\",\"letter-spacing:1.6px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"margin-top:15px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".cp-cloud-native-isk p\":false},[\"font-size:14px\",\"letter-spacing:1.4px\",\"margin-top:12px\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:60px\",\"color:#fff\",\"line-height:1\",\"font-family:Raleway,sans-serif\",\"margin-top:90px\",\"margin-bottom:30px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:50px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:40px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:32px\",\"line-height:34px\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk .btn\":false},[\"border:1px solid #28d9cb\",\"color:#28d9cb\",\"font-size:24px\",\"padding:7px 32px\",\"border-radius:30px\",\"background:transparent\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".cp-cloud-native-isk .btn\":false},[\"font-size:20px\",\"padding:10px 32px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".cp-cloud-native-isk .btn\":false},[\"font-size:14px\",\"padding:0px 32px\",\"font-weight:500\",\"width:210px\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk .btn:hover\":false},[\"background-color:#28d9cb\",\"color:#152649\"]],[false,{\".cp-cloud-native-isk .angle-down\":false},[\"position:absolute\",\"bottom:5px\",\"left:50%\",\"-webkit-transform:translateX(-50%)\",\"transform:translateX(-50%)\"]],[false,{\".cp-cloud-native-isk .angle-down a\":false},[\"font-size:15px\",\"color:#28d9cb\"]],[false,{\".custom-txt-img-sec\":false},[\"padding-top:140px\",\"padding-bottom:120px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".custom-txt-img-sec\":false},[\"padding-top:60px\",\"padding-bottom:60px\"]],[false,{\".heading-box h2\":false},[\"font-size:35px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .cutsom-hide-text\":false},[\"display:none\"]],[false,{\".custom-txt-img-sec .cutsom-hide-text p\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.5\",\"font-family:raleway,sans-serif\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-txt-img-sec\":false},[\"padding:50px 0 30px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:calc(50.5% - 81px)\",\"margin-right:81px\"]],[true,\"@media (max-width: 1024px){\"],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:50%\"]],[true,{\".new-header__nav--title h5\":true},[\"font-size:25px\",\"line-height:1.2\"]],[false,{\".keeping-future ul li\":false},[\"width:24%\"]],[false,{\".keeping-future ul li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-right:29px\"]],[false,{\".keeping-you-competitive\":false},[\"padding-bottom:165px\"]],[false,{\".rebuild-and-replatform\":false},[\"padding:120px 0px 120px 0px\"]],[true,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:100%\",\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt label\":false},[\"margin-bottom:24px\"]],[false,\"@media (max-width: 767px){\"],[false,{\"section.custom-txt-img-sec.c-application-development\":false},[\"position:relative\",\"z-index:1\"]],[false,{\".custom-txt-img-sec .custom-img figure amp-img\":false,\".custom-txt-img-sec .custom-img figure amp-anim\":false,\".custom-txt-img-sec .custom-img figure\":false},[\"width:100%\",\"mix-blend-mode:multiply\"]],[false,{\".custom-txt-img-sec .custom-txt label\":false},[\"margin-bottom:20px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-img\":false},[\"max-width:250px\",\"margin-left:auto\",\"width:100%\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"color:#152649\",\"margin-bottom:40px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"font-size:38px\"]],[false,{\".contact-tek-teams.custom-txt-img-sec .custom-txt h2\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"font-size:27px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"padding-right:0\"]],[false,{\".keeping-future ul\":false},[\"font-size:20px\"]],[false,{\".keeping-future ul li\":false},[\"width:47%\"]],[false,{\".keeping-future ul li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-right:0px\"]],[false,{\".keeping-future ul li:nth-child(11)\":false},[\"border-bottom:#16365c solid 1px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"margin-bottom:0px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt h2 span\":false},[\"color:#24c1ff\"]],[false,{\".tek-world-scale .custom-txt h2 span\":false},[\"color:#28d9cb\"]],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.5\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"@media (min-width: 1280px) and (max-width: 1680px){\"],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".c-application-development .custom-txt p span\":false,\".custom-txt-img-sec .custom-txt p\":false},[\"color:#152649\"]],[false,{\".c-application-development .custom-txt p\":false},[\"color:#707070\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"margin-bottom:25px\"]],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".contact-tek-teams .custom-img p\":false},[\"margin-bottom:30px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt .btn-blue\":false},[\"margin-top:48px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-txt-img-sec .custom-txt .btn-blue\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-img\":false},[\"width:calc(49.5% - 81px)\",\"margin-left:81px\",\"display:flex\",\"align-items:center\"]],[false,{\".custom-txt-img-sec .custom-img figure amp-img\":false,\".custom-txt-img-sec .custom-img figure amp-anim\":false,\".custom-txt-img-sec .custom-img figure\":false},[\"width:100%\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:calc(50.5% - 40px)\",\"margin-right:40px\"]],[false,{\".custom-txt-img-sec .custom-img\":false},[\"width:calc(49.5% - 40px)\",\"margin-left:40px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-txt-img-sec .custom-img\":false},[\"width:100%\",\"max-width:500px\",\"margin:25px auto 0\"]],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"margin-right:0\"]],[false,{\".custom-txt-img-sec .custom-txt:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".text-grey-box p:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".text-grey-box\":false},[\"margin-bottom:2px\"]],[false,{\".review_sec2 i\":false},[\"font-weight:500\"]],[false,{\".review_sec2 i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\",\"color:#152649\"]],[false,{\"section.custom-full-bg.journey-roadmap .container-md\":false},[\"padding:0px\"]],[false,{\".journey-roadmap-header\":false},[\"padding:0px 24px\"]],[false,{\".journey-roadmap-header\":false},[\"flex-wrap:wrap\"]],[false,{\".journey-roadmap-header .heading-box\":false},[\"width:100%\",\"text-align:center\",\"margin-bottom:32px\"]],[false,{\".journey-roadmap-header .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".journey-roadmap-logo\":false},[\"width:65%\",\"margin:0px auto\",\"margin-bottom:24px\"]],[false,{\".devops-services\":false},[\"padding:80px 0px 50px\",\"background-color:#f1f1f1\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:14px\"]],[false,{\".devops-services .applications-col h5\":false},[\"padding-left:31px\"]],[false,{\".devops-services .applications-col h5::before\":false},[\"margin-top:2px\"]],[false,{\".mrdata-logo\":false},[\"left:0\",\"top:-55px\",\"bottom:auto\",\"justify-content:center\",\"right:0\"]],[false,{\".reliability-engineers\":false},[\"text-align:center\"]],[false,{\".reliability-engineers:not(#_#_#_#_#_#_#_)\":false},[\"padding:85px 27px 40px 27px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-197px\"]],[false,{\".kubernetes-sec .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".kubernetes-sec .custom-txt p:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".kubernetes-sec .custom-txt p span\":false},[\"font-weight:500\"]],[false,{\".kubernetes-sec .custom-txt p br\":false},[\"display:none\"]],[false,{\".kubernetes-sec .heading-box h2\":false},[\"margin-bottom:24px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:192px 0px 104px 0px\"]],[false,{\".col-row ul\":false},[\"column-count:1\"]],[false,{\".col-row ul li\":false},[\"font-size:16px\",\"margin-bottom:15px\"]],[false,{\".cost-effective-sec .inner\":false},[\"flex-wrap:wrap\"]],[false,{\".cost-effective-sec .left-text\":false,\".cost-effective-sec .custom-txt\":false},[\"width:100%\"]],[false,{\".infrastructure-sec .heading-box h2\":false,\".cost-effective-sec .heading-box h2\":false},[\"margin-bottom:32px\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:30px\"]],[false,{\".cost-effective-sec .heading-box h2 span\":false},[\"display:inline\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col\":false},[\"padding-bottom:15px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".infrastructure-sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-190px\"]],[false,\"}\"],[false,{\".custom-colm-sec\":false},[\"background-color:#f1f1f1\",\"padding:120px 0\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".custom-colm-sec\":false},[\"padding:60px 0\"]],[false,{\".custom-txt-img-sec .custom-txt .btn-blue\":false},[\"margin-top:30px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".custom-colm-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"margin:45px -10px 40px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .inner\":false},[\"margin:40px -8px 20px\"]],[false,\"}\"],[false,{\".custom-colm-sec .slick-list\":false},[\"padding-bottom:20px\"]],[false,{\".custom-colm-sec .slick-track:not(#_#_#_#_#_#_#_)\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".custom-colm-sec .colm\":false},[\"border-radius:16px\",\"-webkit-box-shadow:0 8px 16px rgba(0,0,0,.1)\",\"box-shadow:0 8px 16px rgba(0,0,0,.1)\",\"width:calc(33.33% - 14px)\",\"background-color:#fff\",\"margin-right:10px\",\"margin-left:10px\",\"position:relative\"]],[false,{\".custom-colm-sec .colm:not(#_#_#_#_#_#_#_)\":false},[\"height:inherit\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-colm-sec .colm\":false},[\"display:flex\",\"flex-direction:column\",\"justify-content:space-between\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm\":false},[\"margin:0 8px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm:last-of-type\":false},[\"margin-right:0\"]],[false,{\".custom-colm-sec .colm .img-box amp-img\":false,\".custom-colm-sec .colm .img-box amp-anim\":false},[\"border-radius:16px\"]],[false,{\".custom-colm-sec .colm .txt-box\":false},[\"padding:22px 40px 20px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".custom-colm-sec .colm .txt-box\":false},[\"padding:20px 20px 20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box\":false},[\"padding:16px 13px 20px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:32px\",\"line-height:1\",\"color:#24c1ff\",\"margin-bottom:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:27px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:24px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:22px\",\"margin-bottom:11px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm .txt-box p\":false},[\"font-size:18px\",\"color:#707070\",\"line-height:1.6\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-colm-sec .colm .txt-box p\":false},[\"font-size:16px\",\"line-height:22px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box p\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm .txt-box .see-more\":false},[\"position:absolute\",\"font-size:22px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#152649\",\"text-decoration:underline\",\"line-height:1.5\",\"font-weight:bold\",\"right:40px\",\"bottom:27px\"]],[false,{\".custom-colm-sec .colm .txt-box .see-more:hover\":false},[\"color:#24c1ff\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-colm-sec .colm .txt-box .see-more\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box .see-more\":false},[\"font-size:16px\",\"bottom:20px\"]],[false,\"}\"],[false,{\".custom-colm-sec .btn-wrapper\":false},[\"text-align:center\"]],[false,{\".custom-colm-sec .btn-wrapper .btn\":false},[\"margin-top:48px\"]],[false,{\".demand-sec\":false},[\"padding-top:240px\",\"padding-bottom:200px\",\"text-align:center\",\"text-align:center\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/imagem_scale.png\\\")\",\"background-repeat:no-repeat\",\"background-size:100% 100%\",\"position:relative\",\"background-attachment:fixed\"]],[false,{\"section.demand-sec:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"height:100%\",\"width:100%\",\"background:#39dcce\",\"background-color:rgba(57,220,206,.1)\",\"top:0\",\"left:0\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".demand-sec\":false},[\"padding-top:150px\",\"padding-bottom:150px\"]],[false,\"}\"],[false,{\".demand-sec .btn-blue.dark-blue\":false},[\"color:#f7f7f7\"]],[false,{\".demand-sec .colm:nth-child(3) p\":false},[\"padding:0px 35px\"]],[false,{\".demand-sec .btn-blue.dark-blue:hover\":false},[\"color:#152649\"]],[false,{\"section.demand-sec .inner .slick-track\":false},[\"display:flex\"]],[false,{\"section.demand-sec .inner .slick-list\":false},[\"display:flex\"]],[false,\"@media (max-width: 992px){\"],[false,{\".demand-sec\":false},[\"padding:120px 0\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".demand-sec\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".demand-sec .heading-box\":false},[\"padding-bottom:45px\"]],[false,{\".demand-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".demand-sec .inner .slick-dots\":false},[\"position:absolute\",\"right:-5px\",\"top:50%\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\"]],[false,{\".demand-sec .inner .slick-slider .slick-list\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".demand-sec .inner .slick-slider .slick-track\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".demand-sec .inner .slick-dots li\":false},[\"list-style-type:none\",\"height:70px\",\"width:3px\",\"margin:4px 0\"]],[false,{\".demand-sec .inner .slick-dots li.slick-active button\":false},[\"background:linear-gradient(90deg,#23f2e2 0,#93f150 100%)\",\"outline:none\"]],[false,{\".demand-sec .inner .slick-dots li button\":false},[\"width:100%\",\"height:100%\",\"background-color:#fff\",\"border-radius:2px\",\"font-size:0\",\"border:none\",\"outline:none\"]],[false,{\".demand-sec .inner .slick-slide amp-img\":false,\".demand-sec .inner .slick-slide amp-anim\":false},[\"margin:0px auto\"]],[false,{\".demand-sec .colm\":false},[\"width:30%\",\"position:relative\",\"margin-bottom:40px\",\"display:flex\",\"flex-direction:column\"]],[false,\"@media (max-width: 992px){\"],[false,{\".demand-sec .colm\":false},[\"width:32%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".demand-sec .colm\":false},[\"width:100%\",\"padding-bottom:10px\"]],[false,\"}\"],[false,{\".demand-sec .colm figure\":false},[\"margin-bottom:50px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".demand-sec .colm figure\":false},[\"max-width:110px\",\"margin:0 auto 50px\"]],[false,\"}\"],[false,{\".demand-sec .colm h4\":false},[\"margin-bottom:18px\",\"font-size:30px\",\"line-height:1\",\"color:#152649\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".demand-sec .colm h4\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".demand-sec .colm p\":false},[\"color:#152649\",\"line-height:1.6\",\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"padding:0px 21px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".demand-sec .colm p\":false},[\"padding:0px 6px\"]],[false,{\".demand-sec .colm:nth-child(3) p\":false},[\"padding:0px 6px\"]],[false,{\".demand-sec .btn-blue.dark-blue\":false},[\"color:#f7f7f7\",\"padding:15px 30px\",\"font-size:15px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".demand-sec .btn-blue.dark-blue\":false},[\"padding:15px 29px\",\"font-size:11px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:14px\",\"padding:0px 25px\"]],[false,\"}\"],[false,{\".demand-sec .colm .btn-wrapper\":false},[\"margin:auto 0 0 0\"]],[false,{\".demand-sec .colm .btn-wrapper a\":false},[\"line-height:normal\"]],[false,\"@media (max-width: 767px){\"],[false,{\".demand-sec .colm .btn-wrapper\":false},[\"position:inherit\",\"bottom:inherit\",\"margin-top:40px\"]],[false,\"}\"],[false,{\".ecosystem-sec\":false},[\"padding:200px 0 240px\",\"background-color:#f9f9f9\"]],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec\":false},[\"padding:100px 0 150px\",\"background-color:#f9f9f9\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\"section.ecosystem-sec .slick-track:not(#_#_#_#_#_#_#_#_)\":false},[\"display:flex\"]],[false,{\".ecosystem-sec .inner .slick-slide:not(#_#_#_#_#_#_#_)\":false},[\"height:inherit\"]],[false,\"}\"],[false,\"@media (min-width: 620px) and (max-width: 767px){\"],[false,{\"section.ecosystem-sec .inner .slick-list\":false},[\"padding-right:180px\"]],[false,{\"section.ecosystem-sec .inner .inner-colm .slick-list\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner .inner-colm amp-img\":false,\".ecosystem-sec .inner .inner-colm amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec .inner .inner-colm amp-img\":false,\".ecosystem-sec .inner .inner-colm amp-anim\":false},[\"width:55%\",\"margin:auto\"]],[false,\"}\"],[false,\"@media (max-width: 766px){\"],[false,{\".ecosystem-sec .inner .inner-colm amp-img\":false,\".ecosystem-sec .inner .inner-colm amp-anim\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"font-size:24px\",\"font-weight:bold\",\"color:#1d2848\",\"margin-bottom:20px\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"font-size:20px\",\"margin-bottom:5px\"]],[false,\"}\"],[false,\"@media (min-width: 480px) and (max-width: 580px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"display:inline-block\",\"float:right\",\"vertical-align:middle\",\"margin-top:18px\",\"width:70px\",\"position:absolute\",\"right:0px\",\"top:0px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:18px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:23px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:-16px\"]],[false,{\".ecosystem-sec .inner\":false},[\"padding:150px 0 100px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec\":false},[\"padding:120px 0 0\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:20px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec\":false},[\"padding:80px 0 0\"]],[false,\"}\"],[false,{\".ecosystem-sec .heading-box\":false},[\"padding-bottom:75px\",\"text-align:center\"]],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .heading-box\":false},[\"padding-bottom:0px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .heading-box\":false},[\"padding-bottom:0\",\"text-align:left\",\"position:relative\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false},[\"width:68%\",\"position:relative\",\"margin-top:0px\",\"margin-bottom:22px\",\"float:left\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:35px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:28px\",\"width:50px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(5) .inner-colm .back-slide .icon\":false},[\"margin-top:32px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5) .inner-colm .back-slide .icon\":false},[\"margin-top:26px\",\"width:50px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .front-slide p\":false},[\"padding-right:40px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .front-slide p\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(1) .inner-colm .back-slide .left-img\":false},[\"display:none\"]],[false,{\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"float:left\",\"width:60%\",\"position:relative\",\"margin-top:0px\",\"margin-bottom:20px\"]],[false,{\".ecosystem-sec .heading-box h2\":false},[\"color:#28d9cb\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .heading-box h2\":false},[\"width:calc(100% - 118px)\"]],[false,{\".ecosystem-sec .colm .back-slide .left-img\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (min-width: 300px) and (max-width: 340px){\"],[false,{\".ecosystem-sec .heading-box h2\":false},[\"font-size:22px\"]],[false,\"}\"],[false,{\".ecosystem-sec .heading-box figure\":false},[\"display:none\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .heading-box figure\":false},[\"display:block\",\"position:absolute\",\"bottom:0\",\"right:20px\",\"max-width:115px\"]],[false,\"}\"],[false,\"@media (min-width: 300px) and (max-width: 340px){\"],[false,{\".ecosystem-sec .heading-box figure\":false},[\"bottom:-31px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"position:relative\",\"padding:150px 0 100px\",\"z-index:1\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .inner\":false},[\"padding:150px 70px 100px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .inner\":false},[\"padding:150px 0px 100px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .inner\":false},[\"padding:40px 0 80px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner::before\":false},[\"content:\\\"\\\"\",\"width:67%\",\"height:52%\",\"position:absolute\",\"border:1px solid #24c1ff\",\"left:16.5%\",\"top:23%\",\"z-index:-1\"]],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec.slick-list\":false},[\"padding:20px 0\"]],[false,{\".ecosystem-sec .inner::before\":false},[\"display:none\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm\":false},[\"border-radius:16px\",\"-webkit-box-shadow:8px 16px 32px rgba(0,0,0,.1)\",\"box-shadow:8px 16px 32px rgba(0,0,0,.1)\",\"background-color:#fff\",\"padding:25px 40px 25px 40px\",\"margin-bottom:40px\",\"width:30.2%\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"margin-bottom:30px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-bottom:30px\",\"width:32%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm\":false},[\"-webkit-box-shadow:0px 0px 5px rgba(0,0,0,.1)\",\"box-shadow:0px 0px 5px rgba(0,0,0,.1)\",\"width:32%\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .inner-colm .slick-track\":false},[\"display:flex\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"height:inherit\",\"padding-bottom:30px\",\"padding-top:10px\",\"display:flex\",\"flex-direction:column\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"height:inherit\",\"padding-bottom:30px\",\"padding-top:25px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"margin-top:auto\",\"position:relative\",\"top:28px\",\"max-width:180px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more:not(#_#_#_#_#_#_#_)\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false},[\"bottom:6px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm\":false},[\"padding:30px\"]],[false,\"}\"],[false,\"@media (max-width: 1100px){\"],[false,{\".ecosystem-sec .colm\":false},[\"padding:30px 20px\",\"width:31.5%\"]],[false,\"}\"],[false,\"@media (max-width: 1100px){\"],[false,{\".ecosystem-sec .colm\":false},[\"padding:15px 20px\",\"width:31.5%\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-left:10px\",\"margin-right:10px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-left:4px\",\"margin-right:4px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-53%)\",\"transform:translateY(-53%)\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-57%)\",\"transform:translateY(-57%)\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-55%)\",\"transform:translateY(-55%)\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-54%)\",\"transform:translateY(-54%)\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:unset\",\"transform:unset\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:translateY(55%)\",\"transform:translateY(55%)\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:translateY(51%)\",\"transform:translateY(51%)\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:translateY(50%)\",\"transform:translateY(50%)\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:unset\",\"transform:unset\"]],[false,\"}\"],[false,\"@media (min-width: 993px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"position:absolute\",\"left:0\",\"right:0\",\"top:49.5%\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\",\"margin-left:auto\",\"margin-right:auto\",\"width:28%\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:30%\"]],[false,\"@media (min-width: 1920px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:30%\"]],[false,\"}\"],[false,\"@media (min-width: 1440px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (min-width: 993px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"display:none\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"color:#152649\",\"font-size:20px\",\"line-height:1.2\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false,\".ecosystem-sec .colm h5:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:15px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:17px\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false,\".ecosystem-sec .colm h5:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm h4\":false},[\"font-size:24px\",\"padding-right:110px\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:25px\"]],[false,{\".ecosystem-sec .slick-track\":false},[\"display:flex\"]],[false,{\".ecosystem-sec .slick-track .slick-slide\":false},[\"height:inherit\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec .colm h4\":false},[\"font-size:20px\",\"padding-right:35px\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:30px\"]],[false,\"}\"],[false,\"@media (max-width: 380px){\"],[false,{\".ecosystem-sec .colm h4\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm h4\":false},[\"margin-bottom:30px\",\"font-weight:bold\"]],[false,{\".ecosystem-sec .colm h5\":false},[\"font-weight:900\",\"margin-top:50px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".ecosystem-sec .colm h5\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm p\":false},[\"font-size:16px\",\"line-height:1.5\",\"color:#707070\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"padding-top:0px\",\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm h5\":false},[\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm\":false},[\"height:fit-content\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm p b\":false},[\"font-size:13px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm p b\":false},[\"color:#24c1ff\",\"font-weight:bold\"]],[false,\"@media (min-width: 768px) and (max-width: 992px){\"],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:51px\"]],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm p b\":false},[\"color:#707070\"]],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 375px){\"],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .back-slide\":false},[\"position:relative\"]],[false,{\".ecosystem-sec .colm .back-slide h6\":false},[\"font-size:14px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#28d9cb\",\"margin-bottom:10px\"]],[false,{\".ecosystem-sec .colm .back-slide .left-img\":false},[\"max-width:190px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .right-img\":false},[\"margin-bottom:5px\",\"margin-top:15px\"]],[false,{\".ecosystem-sec .colm .back-slide .right-img\":false},[\"max-width:70px\",\"position:absolute\",\"bottom:60px\",\"right:0px\"]],[false,{\".ecosystem-sec .colm .back-slide p\":false},[\"max-width:100%\",\"display:inline-block\"]],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide p\":false},[\"max-width:calc(100% - 90px)\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide p\":false},[\"max-width:calc(100% - 67px)\"]],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide .right-img\":false},[\"margin:0px\"]],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide .right-img amp-img\":false,\".ecosystem-sec .colm:nth-child(2) .back-slide .right-img amp-anim\":false},[\"width:70%\",\"margin-left:auto\",\"margin-top:0\",\"top:0\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"color:#28d9cb\",\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:900\",\"margin-top:0px\",\"display:block\",\"text-decoration:underline\"]],[false,{\".ecosystem-sec .colm:nth-child(3) .back-slide .back_heading\":false,\".ecosystem-sec .colm:nth-child(6) .back-slide .back_heading\":false},[\"text-align:left\",\"width:75%\",\"float:right\"]],[false,{\".ecosystem-sec .colm:nth-child(3) .back-slide .icon\":false,\".ecosystem-sec .colm:nth-child(6) .back-slide .icon\":false},[\"float:left\",\"margin-top:18px\"]],[false,{\".ecosystem-sec .colm:nth-child(3) .back-slide .icon\":false},[\"margin-top:10px\"]],[false,{\".ecosystem-sec .colm .slick-dots\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"position:absolute\",\"right:25px\",\"bottom:11px\",\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm .slick-dots li\":false},[\"list-style-type:none\",\"width:4px\",\"height:4px\",\"margin:0 5px\"]],[false,{\".ecosystem-sec .colm .slick-dots li button\":false},[\"display:block\",\"width:100%\",\"height:100%\",\"border-radius:50%\",\"background-color:#c9c9c9\",\"border:none\",\"font-size:0\"]],[false,{\".ecosystem-sec .colm .slick-dots li.slick-active\":false},[\"width:8px\",\"height:8px\"]],[false,{\".ecosystem-sec .colm .slick-dots li.slick-active button\":false},[\"background-color:#28d9cb\"]],[false,{\".ecosystem-sec .colm .slick-arrow\":false},[\"border:none\",\"bottom:11px\",\"position:absolute\",\"background:transparent\",\"z-index:2\",\"cursor:pointer\",\"height:13px\"]],[false,{\".ecosystem-sec .colm .slick-arrow.slick-disabled\":false},[\"opacity:0\",\"visibility:hidden\"]],[false,{\".ecosystem-sec .colm .slick-arrow i\":false},[\"color:#28d9cb\"]],[false,{\".ecosystem-sec .colm .slick-arrow.slick-prev\":false},[\"right:90px\"]],[false,{\".ecosystem-sec .colm .slick-arrow.slick-next\":false},[\"right:0\"]],[false,{\".partner-sec\":false},[\"background-color:#152649\",\"text-align:center\",\"padding:0px 0 240px\",\"position:relative\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".partner-sec\":false},[\"padding:0px 0 120px\"]],[false,\"}\"],[false,{\".bg-img\":false},[\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".partner-sec\":false},[\"padding:0px 0 90px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".partner-sec\":false},[\"padding:0px 0 85px\"]],[false,\"}\"],[false,{\".back-slide .partner-sec .bg-img\":false},[\"position:absolute\",\"top:0\",\"width:100%\"]],[false,{\".partner-sec .bg-img::before\":false},[\"content:\\\"\\\"\",\"width:100%\",\"height:265px\",\"position:absolute\",\"left:0\",\"bottom:-3px\",\"background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(21,38,73,0)),to(#152649))\",\"background-image:linear-gradient(rgba(21,38,73,0),#152649)\"]],[false,{\".partner-sec .container-md\":false},[\"margin-top:-140px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".partner-sec .bg-img::before\":false},[\"height:165px\"]],[false,\"}\"],[false,{\".partner-sec .bg-img .for-desktop\":false},[\"display:block\"]],[false,{\"figure.for-desktop amp-img\":false,\"figure.for-desktop amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".partner-sec .bg-img .for-desktop\":false},[\"display:none\"]],[false,\"}\"],[false,{\".partner-sec .bg-img .for-mobile\":false},[\"display:none\",\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".partner-sec .bg-img .for-mobile\":false},[\"display:block\"]],[false,\"}\"],[false,{\".partner-sec .bg-img .for-mobile amp-img\":false,\".partner-sec .bg-img .for-mobile amp-anim\":false},[\"width:100%\"]],[false,{\".partner-sec .heading-box\":false},[\"padding-bottom:90px\",\"z-index:1\",\"position:relative\"]],[false,{\".partner-sec .heading-box h2\":false},[\"color:#fff\",\"max-width:600px\",\"margin:auto\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".partner-sec .heading-box h2\":false},[\"max-width:455px\"]],[false,\"}\"],[false,{\".partner-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".partner-sec .slick-track:not(#_#_#_#_#_#_#_)\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".partner-sec .slick-arrow\":false},[\"background:transparent\",\"color:#24c1ff\",\"border:none\",\"font-size:20px\",\"position:absolute\",\"top:calc(50% - 11px)\",\"z-index:1\"]],[false,{\".partner-sec .slick-arrow.slick-disabled\":false},[\"opacity:0\",\"visibility:hidden\"]],[false,{\".partner-sec .slick-arrow.slick-prev\":false},[\"left:0\"]],[false,{\".partner-sec .slick-arrow.slick-next\":false},[\"right:0\"]],[false,{\".partner-sec .colm\":false},[\"width:33.33%\",\"padding:0 40px\",\"border-right:1px solid rgba(112,128,167,.3)\"]],[false,{\".partner-sec .colm:not(#_#_#_#_#_#_#_)\":false},[\"height:inherit\"]],[false,\"@media (max-width: 992px){\"],[false,{\".partner-sec .colm\":false},[\"padding:0 20px\"]],[false,\"}\"],[false,\"@media (max-width: 540px){\"],[false,{\".partner-sec .colm\":false},[\"border-right:none\",\"padding:0\"]],[false,\"}\"],[false,{\".partner-sec .colm:last-of-type\":false},[\"border-right:none\"]],[false,{\".partner-sec .colm h6\":false},[\"font-size:20px\",\"line-height:1\",\"color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"min-height:64px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".partner-sec .colm h6\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".partner-sec .colm figure\":false},[\"margin:40px 0\"]],[false,{\".partner-sec .colm figure amp-img\":false,\".partner-sec .colm figure amp-anim\":false},[\"margin:auto\"]],[false,{\".partner-sec .colm p\":false},[\"font-size:16px\",\"line-height:22px\",\"color:#7080a7\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\"]],[false,{\".solution-sec\":false},[\"padding:240px 0\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".solution-sec\":false},[\"padding:130px 0\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec\":false},[\"padding:100px 0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec\":false},[\"background-color:#24c1ff\",\"padding:57px 18px 80px\"]],[false,\"}\"],[false,{\".solution-sec .heading-box\":false},[\"margin-bottom:47px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .heading-box label\":false},[\"color:#fff\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper table\":false},[\"width:100%\",\"border-collapse:collapse\"]],[false,{\".solution-sec .table-wrapper #data-more-btn\":false},[\"background:no-repeat\",\"border:none\",\"margin:0px auto\",\"display:block\",\"font-weight:bold\",\"color:#152649\",\"position:relative\",\"padding:0px 15px\"]],[false,{\".solution-sec .table-wrapper #data-more-btn::after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0px\",\"right:0\",\"width:6px\",\"height:6px\",\"bottom:0\",\"margin:auto\",\"transform:rotate(45deg)\",\"border:#152649 solid 2px\",\"border-left:0px\",\"border-top:0px\"]],[false,{\".solution-sec .table-wrapper table .accor-toggle-btn\":false},[\"position:absolute\",\"right:0px\",\"top:0\",\"width:8px\",\"height:8px\",\"border:#152649 solid 2px\",\"transform:rotate(45deg)\",\"border-top:none\",\"border-left:none\",\"display:none\",\"margin-top:10px\"]],[false,{\"span.accor-toggle-btn.active:not(#_#_#_#_#_#_#_#_)\":false},[\"transform:rotate(-135deg)\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper tr\":false},[\"display:flex\",\"flex-wrap:wrap\",\"border-top:1px solid #f1f1f1\",\"padding:15px 0\"]],[false,{\".solution-sec .table-wrapper tr td\":false},[\"display:block\",\"width:100%\"]],[false,{\".solution-sec .table-wrapper tr.table-head\":false},[\"display:none\"]],[false,{\".solution-sec .table-wrapper td:nth-child(1)\":false},[\"order:1\"]],[false,{\".solution-sec .table-wrapper td:nth-child(3)\":false},[\"order:2\"]],[false,{\".solution-sec .table-wrapper td:nth-child(2)\":false},[\"order:3\"]],[false,{\".solution-sec .table-wrapper table .accor-toggle-btn\":false},[\"display:block\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#152649\",\"line-height:1.16\",\"border-bottom:1px solid #c9c9c9\",\"text-align:left\"]],[false,{\".solution-sec .accor-wrapper th\":false,\".solution-sec .accor-wrapper td\":false},[\"border:none\"]],[false,{\".solution-sec .table-wrapper th:not(:first-of-type)\":false,\".solution-sec .table-wrapper td:not(:first-of-type)\":false},[\"padding-left:20px\"]],[false,{\".solution-sec .table-wrapper td:nth-child(4)\":false,\".solution-sec .table-wrapper td:nth-child(2)\":false,\".solution-sec .table-wrapper td:nth-child(3)\":false},[\"font-weight:bold\"]],[false,\"@media (min-width:767px){\"],[false,{\".solution-sec .accor-wrapper tr td:not(#_#_#_#_#_#_#_#_)\":false},[\"width:31%\",\"padding-left:0px\"]],[false,{\".solution-sec .accor-wrapper tr td:nth-last-child(1):not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:10px\"]],[false,\"}\"],[false,\"@media (min-width: 1280px) and (max-width: 1350px){\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec .table-wrapper th:not(:first-of-type)\":false,\".solution-sec .table-wrapper td:not(:first-of-type)\":false},[\"padding-left:15px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper th:not(:first-of-type)\":false,\".solution-sec .table-wrapper td:not(:first-of-type)\":false},[\"padding-left:0\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"font-size:14px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"border:none\",\"text-align:right\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper th\":false},[\"font-weight:bold\",\"padding:0 0 32px 0\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper th\":false},[\"display:none\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td\":false},[\"font-weight:500\",\"padding:16px 0\",\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td\":false},[\"display:block\",\"padding:5px 0\",\"position:relative\"]],[false,{\".solution-sec .table-wrapper table tbody tr td:nth-child(1)::before\":false},[\"display:none\"]],[false,{\".solution-sec .table-wrapper table tbody tr .accor-wrapper td:nth-child(1)::before\":false},[\"display:block\"]],[false,{\".solution-sec .table-wrapper td::before\":false},[\"content:attr(data-th)\",\"position:absolute\",\"left:0\",\"color:#152649\",\"font-weight:bold\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td.sometimes\":false},[\"color:#7080a7\",\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td.sometimes\":false},[\"color:#5970a8\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td.rare\":false},[\"color:#ff555f\",\"font-weight:bold\"]],[false,{\".solution-sec .table-wrapper td.always\":false},[\"color:#28d9cb\",\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td.always\":false},[\"color:#fff\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td:last-of-type\":false},[\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td:last-of-type:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".solution-sec .table-wrapper tr .accor-wrapper tr\":false},[\"border:none\",\"padding-top:0px\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td:last-of-type amp-img\":false,\".solution-sec .table-wrapper td:last-of-type amp-anim\":false},[\"width:23px\",\"margin-right:7px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td:last-of-type amp-img\":false,\".solution-sec .table-wrapper td:last-of-type amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td:first-of-type\":false},[\"width:35%\"]],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec .table-wrapper td:first-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td:first-of-type\":false},[\"width:100%\",\"text-align:revert\",\"font-weight:500\",\"padding-right:25px\"]],[false,{\".solution-sec .table-wrapper .accor-wrapper table tr td\":false},[\"padding-right:0px\",\"width:100%\"]],[false,\"}\"],[false,{\".future-vision-sec\":false},[\"background-color:#f9f9f9\",\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec\":false},[\"padding:0\",\"padding-bottom:190px\"]],[false,\"}\"],[false,{\".future-vision-sec .inner-vision-sec\":false},[\"background-color:#062b43\",\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .inner-vision-sec\":false},[\"padding:0\"]],[false,\"}\"],[false,{\".future-vision-sec .bg-img\":false},[\"position:relative\",\"width:39%\"]],[false,\"@media (max-width: 1800px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(18% + 45px)\",\"margin-right:-45px\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:35%\"]],[false,\"}\"],[false,\"@media (max-width: 1680px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:37%\"]],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(17% + 50px)\",\"margin-right:-50px\",\"z-index:1\"]],[false,\"}\"],[false,\"@media (max-width: 1536px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:35%\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:30%\",\"height:100%\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:286px\"]],[false,{\".future-vision-sec .bg-img amp-img\":false,\".future-vision-sec .bg-img amp-anim\":false},[\"object-fit:cover\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"position:inherit\",\"width:100%\",\"max-width:inherit\",\"margin:auto\",\"margin-bottom:-160px\"]],[false,\"}\"],[false,{\".future-vision-sec .bg-img amp-img\":false,\".future-vision-sec .bg-img amp-anim\":false},[\"width:100%\",\"height:100%\"]],[false,{\".future-vision-sec .bg-img::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"bottom:0\",\"width:100%\",\"height:256px\",\"background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(4,40,63,0)),to(#042941))\",\"background-image:linear-gradient(rgba(4,40,63,0),#042941)\",\"left:0\",\"display:none\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .bg-img::before\":false},[\"display:block\"]],[false,\"}\"],[false,{\".future-vision-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"position:relative\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .inner\":false},[\"height:460px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .inner\":false},[\"height:auto\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:45%\",\"padding-right:8%\"]],[false,\"@media (max-width: 1536px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"padding-right:7%\"]],[false,\"}\"],[false,{\".container-spacial\":false},[\"padding-left:17%\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".container-spacial\":false},[\"padding-left:12%\"]],[false,\"}\"],[false,\"@media (max-width: 1536px){\"],[false,{\".container-spacial\":false},[\"padding-left:9%\"]],[false,\"}\"],[false,\"@media (max-width: 1440px){\"],[false,{\".container-spacial\":false},[\"padding-left:7%\"]],[false,\"}\"],[false,\"@media (max-width: 1800px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:47%\"]],[false,\"}\"],[false,\"@media (max-width: 1440px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:50%\",\"padding-right:5%\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:31%\"]],[false,{\".kubernetes-sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-213px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".container-spacial\":false},[\"padding-left:0px\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:31%\"]],[false,{\".future-vision-sec .custom-txt\":false},[\"width:51%\",\"padding-right:4%\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"font-size:45px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:55%\",\"padding-right:7%\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:30%\"]],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:51%\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:30%\"]],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:29.8%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:100%\",\"order:-1\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:100%\",\"padding-right:20px\",\"padding-left:20px\",\"padding-bottom:34px\",\"border-bottom:1px solid rgba(241,241,241,.15)\",\"margin-bottom:38px\",\"z-index:1\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"color:#fff\",\"margin-bottom:40px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:175px\",\"font-size:30px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:71px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"font-size:20px\",\"padding-right:4px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"font-size:24px\",\"margin-bottom:34px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt h2 span\":false},[\"color:#24c1ff\"]],[false,{\".future-vision-sec .custom-txt p\":false},[\"color:#fff\",\"font-size:16px\",\"line-height:1.5\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"padding-right:30px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .custom-txt p\":false},[\"font-size:12px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-txt p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt p a\":false},[\"text-decoration:underline\",\"color:#24c1ff\"]],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(15.95% + 60px)\",\"margin-right:-60px\",\"z-index:1\"]],[false,\"@media (max-width: 1536px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(18% + 60px)\",\"margin-right:-60px\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(18% + 60px)\",\"margin-right:-60px\"]],[false,{\".review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:19px\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:19px\"]],[false,{\".kubernetes-sec .custom-txt p\":false},[\"font-size:19px\"]],[false,{\".col-row ul li\":false},[\"font-size:19px\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:44px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col\":false},[\"padding-bottom:15px\",\"width:calc(50% - 27px)\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col li\":false},[\"padding-bottom:20px\",\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(15% + 60px)\",\"margin-right:-60px\"]],[false,{\".reliability-engineers p\":false},[\"font-size:17px\",\"font-weight:bold\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:160px 0px 105px 0px\"]],[false,{\".col-row ul li\":false},[\"font-size:17px\",\"margin-bottom:15px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(19% + 60px)\"]],[false,{\".text-grey-box p:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:15px\"]],[false,{\".review_sec2 i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:16px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-183px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:192px 0px 84px 0px\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:15px\"]],[false,{\".reliability-engineers\":false},[\"padding:40px 30px 40px 78px\",\"margin-top:40px\"]],[false,{\".reliability-engineers p\":false},[\"font-size:15px\",\"font-weight:bold\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-137px\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:35px\"]],[false,{\".infrastructure-sec\":false},[\"margin-top:-234px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img amp-img\":false,\".future-vision-sec .custom-img amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:100%\",\"-webkit-box-orient:vertical\",\"-webkit-box-direction:reverse\",\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"padding:0px 25px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img .inner-img\":false},[\"position:relative\",\"margin-bottom:15px\"]],[false,{\".future-vision-sec .custom-img .inner-img h5\":false},[\"color:#fff\",\"position:absolute\",\"padding:40px 0px 0px 30px\",\"font-size:42px\",\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img .inner-img\":false},[\"margin-bottom:-155px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"position:absolute\",\"font-size:24px\",\"line-height:1.16\",\"color:#24c1ff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding-right:50px\",\"max-width:256px\",\"bottom:30px\",\"left:30px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:15px\"]],[false,{\".devops-services .applications-col ul li\":false},[\"font-size:14px\"]],[false,{\".srvs-text-box p\":false},[\"font-size:14px\"]],[false,{\".srvs-text-box\":false},[\"margin-bottom:15px\"]],[false,{\".devops-services .applications-col h5\":false},[\"margin-bottom:15px\"]],[false,{\".devops-services .applications-col ul\":false},[\"margin-bottom:15px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-186px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-167px\"]],[false,{\".reliability-engineers p\":false},[\"font-size:14px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:11px\"]],[false,{\".fortune-box\":false},[\"width:100%\"]],[false,{\".col-row ul li\":false},[\"font-size:15px\",\"margin-bottom:15px\"]],[false,{\".col-row ul\":false},[\"column-gap:0\"]],[false,{\".cost-effective-sec .left-text p\":false},[\"font-size:14px\",\"line-height:1.6\",\"color:#707070\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:29px\"]],[false,{\".cost-effective-sec .inner\":false},[\"margin-bottom:40px\"]],[false,{\".cost-effective-sec .review_sec2\":false},[\"margin-top:0\"]],[false,{\".cost-effective-sec .review_sec .swiper-slide i\":false},[\"margin:0 0px 10px\"]],[false,{\".infrastructure-sec\":false},[\"margin-top:-187px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:24px\"]],[false,{\".main-scroll-box\":false},[\"overflow:scroll\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".devops-consulting-banner .title\":false},[\"margin-bottom:10px\"]],[false,{\".devops-consulting-banner h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:32px\"]],[false,\"}\"],[false,\"@media (max-width: 380px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,{\".contact-form-info-right ul li\":false},[\"font-size:14px\"]],[false,{\".contact-form-info-right ul li:first-of-type:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:20px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img .overlay-txt i\":false},[\"position:absolute\",\"right:7px\",\"background:rgba(255,255,255,.2)\",\"width:24px\",\"height:24px\",\"border-radius:50%\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-webkit-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"font-size:18px\",\"top:calc(50% - 10px)\"]],[false,{\".future-vision-sec .custom-img p\":false},[\"font-size:14px\",\"color:#bebebe\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img p\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".lets-talk-sec\":false},[\"padding:55px 0\",\"-webkit-box-shadow:8px 0px 32px rgba(0,0,0,.1)\",\"box-shadow:8px 0px 32px rgba(0,0,0,.1)\"]],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec\":false},[\"padding:30px 0 0\"]],[false,\"}\"],[false,{\".lets-talk-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .inner\":false},[\"max-width:300px\",\"text-align:center\",\"margin:auto\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".lets-talk-sec .inner\":false},[\"max-width:250px\"]],[false,\"}\"],[false,{\".lets-talk-sec .heading-box\":false},[\"width:calc(100% - 370px)\"]],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .heading-box\":false},[\"width:calc(100% - 300px)\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .heading-box\":false},[\"width:100%\",\"margin-bottom:18px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".lets-talk-sec .heading-box h2\":false},[\"font-size:25px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".lets-talk-sec .heading-box h2\":false},[\"font-size:20px\"]],[false,\"}\"],[false,{\".lets-talk-sec .btn-wrapper\":false},[\"width:306px\"]],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"width:100%\",\"height:80px\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"border-radius:100px\"]],[false,\"@media (max-width:1780px){\"],[false,{\".lets-talk-sec .btn-wrapper\":false},[\"width:250px\"]],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"height:70px\",\"font-size:24px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".lets-talk-sec .btn-wrapper\":false},[\"max-width:250px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"height:60px\",\"font-size:25px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"width:132px\",\"height:40px\",\"font-size:20px\",\"padding:5px\",\"margin:auto\",\"margin-bottom:-20px\"]],[false,{\".tek-world-scale .inner .custom-img\":false},[\"margin:0px auto\",\"display:block\"]],[false,\"}\"],[false,{\".custom-grid-sec\":false},[\"background-color:#f1f1f1\",\"padding:100px 0px 110px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec\":false},[\"padding-right:120px 0\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm amp-img\":false,\".custom-grid-sec .inner .colm amp-anim\":false},[\"width:60px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec\":false},[\"padding-right:120px 0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-grid-sec\":false},[\"padding:120px 0 80px\",\"margin-top:-155px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"margin:0 -40px\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"width:calc(33.333% - 27px)\",\"margin-right:40px\",\"display:flex\",\"flex-direction:column\"]],[false,{\".custom-grid-sec .inner\":false},[\"margin:0\"]],[false,{\".custom-grid-sec .inner .colm:nth-child(3n)\":false},[\"margin-right:0\"]],[false,\"@media (max-width: 992){\"],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding-right:20px\",\"padding-left:20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding-right:40px\",\"padding-left:20px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm figure\":false},[\"display:inline-block\",\"margin-right:15px\"]],[false,{\".custom-grid-sec .inner .colm h4\":false},[\"display:-webkit-inline-box\",\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"margin-bottom:15px\",\"color:#152649\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:30px\",\"font-weight:bold\"]],[false,\"@media (max-width: 1366px){\"],[false,{\".custom-grid-sec .inner .colm h4\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm p\":false},[\"margin-bottom:30px\",\"font-size:18px\",\"color:#434343\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"line-height:1.6\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec .inner .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-grid-sec .inner .colm p\":false},[\"font-size:14px\",\"margin-bottom:24px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm a\":false},[\"color:#152649\",\"font-weight:bold\",\"font-family:\\\"Raleway\\\",sans-serif\",\"display:block\",\"font-size:24px\",\"margin-top:auto\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec .inner .colm a\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-grid-sec .inner .colm a\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm a i\":false},[\"margin-left:15px\",\"font-size:16px\"]],[false,{\".custom-grid-sec .slick-dots\":false},[\"position:absolute\",\"right:10px\",\"top:50%\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\"]],[false,{\".custom-grid-sec .slick-dots li\":false},[\"list-style-type:none\",\"height:70px\",\"width:3px\",\"margin:4px 0\"]],[false,{\".custom-grid-sec .slick-dots li.slick-active button\":false},[\"background-color:#28d9cb\"]],[false,{\".custom-grid-sec .slick-dots li button\":false},[\"width:100%\",\"height:100%\",\"background-color:#fff\",\"border-radius:2px\",\"font-size:0\",\"outline:none\",\"border:none\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".custom-trust-sec .inner\":false},[\"position:relative\"]],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:calc(55% - 30px)\",\"margin-right:30px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:70%\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".custom-trust-sec .custom-txt p\":false},[\"padding-right:57px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-trust-sec .custom-txt p\":false},[\"color:#152649\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec .custom-txt p\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".custom-trust-sec .custom-txt h2\":false},[\"max-width:calc(100% - 80px)\"]],[false,\"}\"],[false,{\".custom-trust-sec .custom-img\":false},[\"width:calc(45% - 30px)\",\"margin-right:0\",\"margin-left:30px\",\"text-align:right\"]],[false,{\".custom-trust-sec .custom-img amp-img\":false,\".custom-trust-sec .custom-img amp-anim\":false},[\"max-width:250px\",\"width:100%\",\"margin:0px auto\",\"display:block\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-trust-sec .custom-txt\":false},[\"margin-right:0\",\"width:55%\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec .custom-img\":false},[\"position:absolute\",\"right:0\",\"top:-20px\"]],[false,{\".custom-trust-sec .custom-img:not(#_#_#_#_#_#_#_)\":false},[\"width:56px\"]],[false,\"}\"],[false,{\".custom-case-studie\":false},[\"padding:0\",\"position:relative\",\"padding-top:618px\",\"background-color:#152649\"]],[false,\"@media (max-width:1780px){\"],[false,{\".custom-case-studie\":false},[\"padding-top:480px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".custom-case-studie\":false},[\"padding-top:442px\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img\":false},[\"background-repeat:no-repeat\",\"padding-bottom:0px\",\"position:absolute\",\"top:0\",\"width:100%\"]],[false,{\".custom-case-studie .bg-img::before\":false},[\"content:\\\"\\\"\",\"width:100%\",\"height:265px\",\"position:absolute\",\"left:0\",\"bottom:0\",\"background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(21,38,73,0)),to(#152649))\",\"background-image:linear-gradient(rgba(21,38,73,0),#152649)\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-case-studie .bg-img::before\":false},[\"height:165px\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img .for-desktop\":false},[\"display:block\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .bg-img .for-desktop\":false},[\"display:none\"]],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:100%\"]],[false,{\".custom-trust-sec .custom-img\":false},[\"width:100%\",\"margin-left:0\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img .for-mobile\":false},[\"display:none\",\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .bg-img .for-mobile\":false},[\"display:block\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img .for-mobile amp-img\":false,\".custom-case-studie .bg-img .for-mobile amp-anim\":false},[\"width:100%\"]],[false,{\".custom-case-studie .custom-bottm-sec\":false},[\"padding-bottom:160px\",\"padding-top:40px\",\"position:relative\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-case-studie .custom-bottm-sec\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,{\".custom-case-studie .custom-bottm-sec .inner\":false},[\"-webkit-box-align:end\",\"-ms-flex-align:end\",\"align-items:flex-end\",\"margin-top:-200px\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt\":false},[\"width:55%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt label\":false},[\"color:#f1f1f1\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt label i\":false},[\"color:#7080a7\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt h2\":false},[\"color:#fff\",\"margin-bottom:25px\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt h2 span\":false},[\"color:#8bed78\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt p\":false},[\"padding-right:57px\",\"color:#f1f1f1\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt p\":false},[\"padding-right:0\"]],[false,\"}\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-case-btn\":false},[\"width:38%\",\"margin-right:0\",\"text-align:left\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-case-btn\":false},[\"width:100%\",\"margin-top:15px\",\"text-align:left\"]],[false,\"}\"],[false,{\".custom-colm-blog\":false},[\"background-color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\".custom-colm-blog .heading-box h2 span\":false},[\"color:#28d9cb\"]],[false,{\".custom-colm-blog .colm\":false},[\"background-color:#f7f7f7\",\"border:#c9c9c9 solid 1px\",\"-webkit-box-shadow:none\",\"box-shadow:none\"]],[false,{\".custom-colm-blog .colm .txt-box\":false},[\"padding-bottom:35px\"]],[false,{\".custom-colm-blog .colm .txt-box h6\":false},[\"text-transform:uppercase\",\"color:#6f7070\",\"font-size:14px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"margin-bottom:15px\"]],[false,{\".custom-colm-blog .colm .txt-box h6 span\":false},[\"color:#c9c9c9\"]],[false,{\".custom-colm-blog .colm .txt-box h4\":false},[\"font-size:20px\",\"color:#152649\",\"margin-bottom:60px\",\"height:30px\"]],[false,{\".custom-colm-blog .colm .txt-box .custom-btm-text\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".custom-colm-blog .colm .txt-box .custom-btm-text a\":false},[\"color:#152649\",\"font-size:18px\",\"text-decoration:underline\",\"font-weight:bold\"]],[false,\"@media (max-width:767px){\"],[false,{\".custom-colm-blog .colm .txt-box .custom-btm-text a\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".custom-colm-blog .colm .img-box amp-img\":false,\".custom-colm-blog .colm .img-box amp-anim\":false},[\"height:160px\",\"-o-object-fit:cover\",\"object-fit:cover\",\"width:100%\"]],[true,\"@media (max-width:992px){\"],[true,{\"footer .container\":true},[\"max-width:90%\"]],[true,{\".footer-2022__menu--list\":true},[\"padding:0px 5px\"]],[true,{\"header nav .dropdown-menu p.new-header__nav--menu--text\":true},[\"max-width:unset\"]],[true,\"}\"],[true,\"@media (max-width:600px){\"],[true,{\"footer .container\":true},[\"max-width:540px\"]],[true,{\".footer-2022__menu--list\":true},[\"padding:0px\"]],[true,\"}\"],[true,{\".new-header__menu-item\":true},[\"background:#f7f7f7\"]],[true,\"@media (max-width:1280px){\"],[true,{\".new-header__menu-item\":true},[\"padding-left:15px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header__menu-item\":true},[\"padding-left:0\"]],[true,\"}\"],[false,{\".cp-tek-teams-isk\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"position:relative\",\"margin-top:100px\"]],[false,{\".cp-tek-teams-isk .inner-hero-text amp-img\":false,\".cp-tek-teams-isk .inner-hero-text amp-anim\":false},[\"width:48px\"]],[false,{\".cp-tek-teams-isk amp-img\":false,\".cp-tek-teams-isk amp-anim\":false},[\"width:100%\",\"object-fit:cover\",\"object-position:center\"]],[false,\"@media (max-width: 768px){\"],[false,{\".cp-tek-teams-isk\":false},[\"margin-top:70px\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk picture\":false},[\"padding-bottom:25px\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"position:relative\"]],[false,\"@media (max-width: 1366px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"padding-bottom:5px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"margin-bottom:0px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"margin-bottom:7px\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk picture p\":false},[\"color:#28d9cb\",\"margin-left:15px\",\"margin-bottom:0px\",\"font-size:16px\",\"line-height:1\"]],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk picture p\":false},[\"margin-left:0px\",\"color:#28d9cb\",\"font-size:12px\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk .inner-hero-text\":false},[\"position:absolute\",\"top:45%\",\"width:100%\",\"left:50%\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk .inner-hero-text picture\":false},[\"margin-bottom:5px\"]],[false,{\".cp-tek-teams-isk .inner-hero-text amp-img\":false,\".cp-tek-teams-isk .inner-hero-text amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:60px\",\"font-weight:bold\",\"color:rgba(255,255,255,1)\",\"line-height:1\",\"margin-bottom:6px\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"@media (max-width: 768px){\"],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:30px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:32px\"]],[false,\"}\"],[false,{\".contact-tek-teams\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"padding:80px 0px 120px\"]],[false,{\".contact-tek-teams .mobile-button\":false},[\"display:none\"]],[false,\"@media (max-width: 767px){\"],[false,{\".contact-tek-teams .desktop-button\":false},[\"display:none\"]],[false,{\".contact-tek-teams .mobile-button:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (max-width: 1680px){\"],[false,{\".contact-tek-teams\":false},[\"padding:80px 0px 90px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".contact-tek-teams\":false},[\"padding:80px 0px 80px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".contact-tek-teams\":false},[\"padding:60px 0px 60px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".contact-tek-teams\":false},[\"padding:40px 0px 0px\"]],[false,\"}\"],[false,{\".contact-tek-teams .inner\":false},[\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".contact-tek-teams .inner .custom-txt .btn-blue\":false},[\"margin-top:0px\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-txt\":false},[\"width:calc(50.5% - 0px)\",\"margin-right:0\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"width:54%\",\"margin-right:-12%\",\"margin-left:76px\"]],[false,\"@media (max-width: 1214px) and (max-width: 1280px){\"],[false,{\".contact-tek-teams .custom-img\":false},[\"margin-right:-7%\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".contact-tek-teams .custom-img\":false},[\"width:47%\",\"margin-right:0px\"]],[false,{\".contact-tek-teams .inner .custom-img p:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".contact-tek-teams .inner\":false},[\"flex-direction:column\",\"align-items:flex-start\"]],[false,{\".contact-tek-teams .custom-img\":false},[\"width:100%\",\"margin-right:0px\",\"margin-top:0px\",\"margin-left:0px\"]],[false,\"}\"],[false,{\".contact-tek-teams .inner .custom-img p\":false},[\"color:#707070\",\"line-height:32px\",\"padding-right:18%\",\"font-size:20px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".contact-tek-teams .inner .custom-img p\":false},[\"color:#707070\",\"line-height:2\",\"padding-right:0px\",\"font-size:14px\"]],[false,\"}\"],[false,{\".repeat-bg\":false},[\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".repeat-bg\":false},[\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".repeat-bg amp-img\":false,\".repeat-bg amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 600px){\"],[false,{\".repeat-bg amp-img\":false,\".repeat-bg amp-anim\":false},[\"height:207px\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".repeat-bg .c-btm-icon\":false},[\"position:absolute\",\"bottom:35px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".repeat-bg .c-btm-icon\":false},[\"left:0px\",\"bottom:13px\",\"width:100%\",\"padding:0px 25px\"]],[false,{\".repeat-bg .c-btm-icon amp-img\":false,\".repeat-bg .c-btm-icon amp-anim\":false},[\"width:auto\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".repeat-bg .c-btm-icon\":false},[\"left:0px\",\"bottom:0\",\"width:100%\",\"padding:0px 25px\",\"padding-bottom:25px\"]],[false,{\".repeat-bg .c-btm-icon amp-img\":false,\".repeat-bg .c-btm-icon amp-anim\":false},[\"height:inherit\",\"width:auto\",\"margin-bottom:0px\",\"margin-top:0\",\"padding-bottom:15px\"]],[false,\"}\"],[false,{\".repeat-bg .tek-teams-mob-heading\":false},[\"display:none\"]],[false,{\".repeat-bg .tek-teams-mob-heading h3\":false},[\"font-size:24px\",\"color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"line-height:1.3\"]],[false,\"@media (max-width: 600px){\"],[false,{\".repeat-bg .tek-teams-mob-heading\":false},[\"display:block\",\"padding-right:68px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".repeat-bg .tek-teams-mob-heading\":false},[\"display:block\",\"padding-right:0px\"]],[false,{\".repeat-bg .c-btm-icon\":false},[\"padding-bottom:10px\"]],[false,{\".repeat-bg .c-btm-icon amp-img\":false,\".repeat-bg .c-btm-icon amp-anim\":false},[\"padding-bottom:0px\"]],[false,\"}\"],[false,{\".tek-teams-heading\":false},[\"padding-top:80px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".tek-teams-heading\":false},[\"padding-top:20px\"]],[false,\"}\"],[false,{\".tek-teams-heading h3\":false},[\"font-size:30px\",\"line-height:1\",\"margin-bottom:40px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#707070\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek-teams-heading h3\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".tek-teams-heading\":false},[\"display:none\"]],[false,\"}\"],[false,{\".about-tek-wrapper\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"padding-bottom:120px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".about-tek-wrapper\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".about-tek-wrapper\":false},[\"padding-bottom:60px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".about-tek-wrapper\":false},[\"padding-top:50px\",\"padding-bottom:60px\"]],[false,\"}\"],[false,{\".about-tek-wrapper .about-tek-team\":false},[\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".about-tek-wrapper .about-tek-team .c-col\":false},[\"width:calc(50% - 40px)\"]],[false,{\".about-tek-wrapper .about-tek-team .c-col p b\":false,\".about-tek-wrapper .about-tek-team .c-col p strong\":false},[\"font-weight:bold\"]],[false,\"@media (max-width: 768px){\"],[false,{\".about-tek-wrapper .about-tek-team .c-col\":false},[\"width:calc(50% - 15px)\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".about-tek-wrapper .about-tek-team .c-col\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".about-tek-wrapper .about-tek-team .c-col p\":false},[\"padding-bottom:10px\",\"font-size:20px\",\"line-height:2\",\"color:#707070\"]],[false,\"@media (max-width: 768px){\"],[false,{\".about-tek-wrapper .about-tek-team .c-col p\":false},[\"font-size:15px\",\"padding-bottom:0px\",\"margin-bottom:10px\"]],[false,\"}\"],[false,{\".about-tek-wrapper .about-tek-team .c-col p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".development-team-sec\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"background-color:#f1f1f1\",\"padding-bottom:120px\"]],[false,{\".development-team-sec .text-short-box\":false},[\"padding-left:8px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".development-team-sec\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".development-team-sec\":false},[\"padding-bottom:60px\"]],[false,\"}\"],[false,{\".development-team-sec p\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.5\",\"margin-bottom:60px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec p\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec p\":false},[\"font-size:15px\",\"margin-bottom:25px\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .tek-teams-heading h3\":false},[\"color:#24c1ff\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"margin-bottom:20px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:30%\",\"margin-bottom:60px\"]],[false,\"@media (min-width: 1025px) and (max-width: 1280px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:32%\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"margin-bottom:20px\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"margin:0 0 0 40px\",\"width:calc(55% - 40px)\",\"padding:0\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-txt\":false},[\"width:45%\",\"margin:0\",\"padding:0\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img p\":false},[\"padding:0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:45%\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"margin:25px 0 0px 0px\",\"width:100%\",\"padding-bottom:10px\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-txt\":false},[\"width:100%\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:100%\",\"border-bottom:#e1e1e1 solid 1px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col:last-child\":false},[\"border-bottom:none\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:35px\",\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading figure\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"color:#152649\",\"padding-left:8px\",\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"margin-bottom:0px\"]],[false,\"@media only screen and (min-width: 1025px) and (max-width: 1279px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"font-size:14px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"padding-left:4px\",\"font-size:12px\",\"margin-bottom:0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"padding-left:4px\",\"font-size:14px\",\"margin-bottom:0\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:0px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span::before:not(#_#_#_#_#_#_#_#_)\":false},[\"content:none\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"font-size:18px\",\"line-height:1.3\",\"margin-bottom:25px\",\"color:#707070\",\"position:relative\",\"padding-left:20px\",\"padding-right:20px\",\"display:block\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"padding-right:0px\",\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"padding-left:10px\",\"font-size:13px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"font-size:14px\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span:last-child\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span::before\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p::before\":false},[\"position:absolute\",\"top:0\",\"left:0px\",\"content:\\\"-\\\"\",\"line-height:17px\"]],[false,\"@media (max-width: 600px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .col-heading::before\":false},[\"content:\\\"\\\"\",\"width:6px\",\"height:6px\",\"border-bottom:2px solid #24c1ff\",\"border-right:2px solid #24c1ff\",\"float:right\",\"position:absolute\",\"top:12px\",\"right:1px\",\"-webkit-transform:rotate(45deg)\",\"transform:rotate(45deg)\",\"-webkit-transform-origin:center\",\"transform-origin:center\",\"-webkit-transition:all .4s ease\",\"transition:all .4s ease\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .col-heading.active::before\":false},[\"-webkit-transform:rotate(225deg)\",\"transform:rotate(225deg)\",\"color:#24c1ff\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .col-heading .active:after\":false},[\"-webkit-transform:rotate(-135deg)\",\"transform:rotate(-135deg)\",\"border-color:#fff\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .text-short-box\":false},[\"display:none\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .btn-blue\":false},[\"padding:23px 0px\",\"text-align:center\",\"border-radius:50px\",\"width:360px\",\"margin:0px auto\",\"display:block\"]],[false,{\".benefits-sec\":false},[\"background-color:#fff\"]],[false,{\".team-structure-sec .tek-teams-heading h3\":false},[\"margin-bottom:25px\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"@media (max-width: 768px){\"],[false,{\".team-structure-sec .tek-teams-heading h3\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".team-structure-sec p\":false},[\"font-size:18px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".team-structure-sec p\":false},[\"font-size:14px\"]],[false,{\".custom-grid-sec .inner\":false},[\"margin:0\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding:25px 10px 25px 0px\",\"margin:0\"]],[false,{\".custom-grid-sec .slick-dots\":false},[\"right:0\"]],[false,\"}\"],[false,{\".dev-shop-team-sec\":false},[\"padding:120px 0px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".dev-shop-team-sec\":false},[\"padding:80px 0px\"]],[false,\"}\"],[false,{\".c-border-none td:not(#_#_#_#_#_#_#_#_)\":false},[\"border:none\"]],[false,{\".tekteams-tabel\":false},[\"background:none\"]],[false,{\".tekteams-tabel .heading-box label\":false},[\"color:#7080a7\"]],[true,\"@media (max-width: 1760px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:14px\",\"padding:0px 14px\"]],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:80px\"]],[true,{\".dropdown-menu\":true},[\"top:77px\"]],[false,{\".cp-tek-teams-isk:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:80px\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:50px\",\"width:75%\",\"margin-right:auto\",\"margin-left:auto\"]],[false,{\".demand-sec\":false},[\"padding:150px 0px 110px 0px\"]],[false,{\".ecosystem-sec\":false},[\"padding:150px 0px\"]],[false,{\".partner-sec .bg-img\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\"]],[false,{\".partner-sec\":false},[\"padding:240px 0px 240px 0px\"]],[false,{\".partner-sec .container-md\":false},[\"margin-top:0\"]],[false,{\".solution-sec\":false},[\"padding:160px 0px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:50px\"]],[false,{\".tek-teams-heading h3\":false},[\"margin-bottom:30px\"]],[false,{\".about-tek-wrapper .about-tek-team .c-col p\":false},[\"margin-bottom:5px\",\"line-height:1.5em\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"margin-bottom:30px\"]],[false,{\".development-team-sec .development-team-content .btn-blue\":false},[\"padding:16px 0px\",\"width:261px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:20px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:120px 0px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:79px\"]],[true,\"}\"],[true,\"@media (max-width: 1680px){\"],[false,{\".tekteams-tabel\":false},[\"padding:25px 0px 60px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"padding:0px 11px\"]],[true,{\".new-header__button a\":true},[\"font-size:16px\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:45px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:45px\"]],[false,{\".demand-sec\":false},[\"padding:100px 0px 60px 0px\"]],[false,{\".ecosystem-sec\":false},[\"padding:100px 0px 130px 0px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 200px 0px\"]],[false,{\".partner-sec .heading-box\":false},[\"padding-bottom:50px\"]],[false,{\".solution-sec\":false},[\"padding:130px 0px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:100px 0px\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:18px\"]],[false,{\".journey-roadmap\":false},[\"margin-top:-98px\"]],[false,{\".infrastructure-sec .heading-box h2\":false,\".cost-effective-sec .heading-box h2\":false},[\"font-size:50px\"]],[true,\"}\"],[true,\"@media (max-width: 1560px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\",\"padding:0px 9px\"]],[true,{\".new-header__button a\":true},[\"font-size:14px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 160px 0px\"]],[false,{\".solution-sec\":false},[\"padding:120px 0px\"]],[false,{\".journey-roadmap\":false},[\"margin-top:-200px\"]],[false,{\".kubernetes-sec\":false},[\"margin-top:-100px\"]],[true,\"}\"],[true,\"@media (max-width:1366px){\"],[false,{\".btn-blue\":false},[\"font-size:18px\"]],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:77px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:72px\"]],[false,{\".cp-tek-teams-isk:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:77px\"]],[true,{\".dropdown-menu\":true},[\"top:75px\"]],[false,{\".cp-cloud-native-isk h2\":false,\".cp-tek-teams-isk h2\":false},[\"font-size:40px\"]],[false,{\".heading-box h2\":false},[\"font-size:32px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 140px 0px\"]],[false,{\".solution-sec\":false},[\"padding:110px 0px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:80px 0px\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:16px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:140px\"]],[false,{\".keeping-future ul\":false},[\"font-size:18px\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:40px\"]],[false,{\".choose-option ul li:last-child\":false},[\"margin-left:0px\"]],[false,{\".choose-option ul li\":false},[\"padding:15px 20px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 70px 119px\"]],[false,{\".contact-form-info-right ul li\":false},[\"padding:25px 0px 25px\"]],[true,\"}\"],[true,\"@media (max-width:1280px){\"],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:60px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:60px\"]],[false,{\".cp-tek-teams-isk:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:59px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:60px\"]],[true,{\".dropdown-menu\":true},[\"top:57px\"]],[false,{\".heading-box h2\":false},[\"font-size:28px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 120px 0px\"]],[false,{\".choose-option\":false},[\"padding-left:40px\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:60px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:35px\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:14px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:120px\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:33px\"]],[false,{\".keeping-future ul\":false},[\"font-size:16px\"]],[false,{\".contact-form-info-right ul\":false},[\"margin-bottom:70px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 50px 119px\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"object-position:-256px 0px\"]],[true,\"}\"],[false,\"@media (max-width:1200px){\"],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:25px\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:45px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 30px 119px\"]],[false,\"}\"],[false,\"@media (max-width:1190px){\"],[false,{\".btn-blue\":false},[\"font-size:16px\"]],[false,\"}\"],[true,\"@media (max-width:1170px){\"],[true,{\".new-header__logo\":true},[\"min-width:200px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\",\"padding:0px 6px\"]],[false,{\".choose-option ul li\":false},[\"font-size:17px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:18px\"]],[true,\"}\"],[true,\"@media (max-width:1100px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:10px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 100px 0px\"]],[true,\"}\"],[true,\"@media (max-width:1028px){\"],[true,{\".new-header__logo\":true},[\"min-width:150px\"]],[true,\"}\"],[false,\"@media (max-width:1024px){\"],[false,{\".contact-form-left\":false},[\"width:53%\",\"padding:58px 0px 75px\"]],[false,{\".contact-form-info-right\":false},[\"width:44%\",\"padding:50px 18px 76px\"]],[false,{\".choose-option ul\":false},[\"flex-wrap:nowrap\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"object-position:75% 0px\"]],[false,\"}\"],[true,\"@media (max-width:992px){\"],[false,{\".btn-blue\":false},[\"font-size:18px\"]],[true,{\".new-header__button\":true},[\"width:20%\",\"justify-content:center\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"width:100%\"]],[false,{\".solution-sec\":false},[\"padding:90px 0px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:30px\"]],[false,{\".cp-cloud-native-isk .btn\":false},[\"width:unset\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:230px\"]],[true,{\".closeicon\":true},[\"width:14px\",\"display:none\",\"position:relative\",\"right:17px\",\"top:6px\"]],[true,{\".navbar-toggler .closeicon\":true},[\"display:block\"]],[true,{\".navbar-toggler amp-img:nth-child(1)\":true,\".navbar-toggler amp-anim:nth-child(1)\":false},[\"display:none\"]],[false,{\".navbar-toggler.collapsed .closeicon\":false},[\"display:none\"]],[false,{\".navbar-toggler.collapsed amp-img:nth-child(1)\":false,\".navbar-toggler.collapsed amp-anim:nth-child(1)\":false},[\"display:block\"]],[false,{\".text-grey-box p\":false},[\"padding-right:0px\"]],[true,\"}\"],[false,\"@media (max-width:980px){\"],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"padding:0px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:0\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:20px\"]],[false,{\".btm-icon-line\":false},[\"width:55%\",\"margin:0px auto\"]],[false,{\".custom-contact-wrapper\":false},[\"padding:85px 0px 100px\"]],[false,{\".contact-form-info-right ul li:last-child a\":false},[\"word-break:break-word\"]],[false,\"}\"],[false,\"@media (max-width: 769px){\"],[false,{\".contact-form-info-right ul li a\":false},[\"word-break:break-word\"]],[false,{\".contact-form-info-right ul li:first-of-type a\":false},[\"font-size:25px\"]],[false,{\".contact-form-info-right ul .phone:before\":false},[\"width:30px\",\"height:30px\"]],[false,{\".contact-form-info-right ul .address:before\":false},[\"background-size:100%\",\"width:30px\",\"height:30px\"]],[false,{\".contact-form-info-right ul li:nth-of-type(2) span\":false},[\"padding-left:43px\"]],[false,{\".contact-form-info-right ul li a\":false},[\"padding-left:10px\"]],[false,{\".btm-icon-line:after\":false,\".btm-icon-line::before\":false},[\"width:95px\"]],[false,{\".contact-form-info-right ul\":false},[\"margin-bottom:30px\"]],[false,{\".choose-option ul\":false},[\"margin-bottom:0px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 18px 50px\"]],[false,{\".contact-form-info-right h3\":false},[\"margin-bottom:0px\"]],[false,{\".btm-icon-line\":false},[\"width:100%\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea\":false},[\"height:100px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:27px\"]],[false,{\".contact-form-left\":false},[\"padding:58px 0px 30px\"]],[false,{\".choose-option ul li\":false},[\"font-size:17px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:18px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".col-row ul li:nth-child(1)\":false,\".col-row ul li:nth-child(4)\":false,\".col-row ul li\":false},[\"width:50%\"]],[false,{\".custom-contact-wrapper .container-md\":false},[\"padding:0px\",\"width:100%\"]],[false,{\".contact-wrapper-banner .inner-hero-text\":false},[\"top:45%\"]],[false,{\".contact-wrapper-banner .inner-hero-text h2\":false},[\"text-align:center\"]],[false,{\".custom-contact-wrapper\":false},[\"padding:0px\",\"margin-top:-1px\",\"border-radius:0px\"]],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"border-radius:0px\",\"padding:0px\"]],[false,{\".contact-form-info-right\":false},[\"border-radius:0px\",\"padding:40px 24px 0px\",\"width:100%\"]],[false,{\".contact-wrapper-banner\":false},[\"z-index:3\"]],[false,{\".contact-form-info-right h3\":false},[\"display:none\"]],[false,{\".contact-form-info-right ul li:first-of-type\":false},[\"font-size:30px\"]],[false,{\".contact-form-info-right ul li\":false},[\"padding:20px 0px 20px 0px\"]],[false,{\".contact-form-info-right ul li:first-of-type a\":false},[\"font-size:30px\"]],[false,{\".btm-icon-line\":false},[\"display:none\"]],[false,{\".contact-form-info-right ul\":false},[\"margin-bottom:60px\"]],[false,{\".choose-option ul\":false},[\"flex-wrap:nowrap\",\"margin-bottom:0\"]],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"background-color:transparent\",\"flex-direction:column-reverse\"]],[false,{\".choose-option\":false},[\"padding-left:0\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:0px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:0\"]],[false,{\".contact-form-left\":false},[\"padding:45px 24px 0px 24px\",\"background:#fff\",\"width:86%\",\"margin:85px auto 120px auto\",\"border-radius:0px 26px 26px 26px\",\"box-shadow:0px 20px 32px 0px rgba(0,0,0,.2)\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .col-md-4\":false},[\"max-width:100%\",\"margin-bottom:15px\",\"flex:0 0 100%\"]],[false,{\".form-group .form-control\":false},[\"padding:0px 0px 5px\"]],[false,{\".form-group label\":false},[\"font-size:14px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea\":false},[\"margin-bottom:32px\",\"margin-top:0px\",\"height:90px\"]],[false,{\".form-group::placeholder\":false},[\"font-size:16px\"]],[false,{\".form-control::-webkit-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:13px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".form-control::-ms-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:13px\",\"font-weight:normal\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".form-control::placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:13px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control\":false},[\"font-size:13px\",\"padding:0px 0px 5px\"]],[false,{\".choose-option ul li\":false},[\"font-size:15px\",\"padding:14px 8px\",\"color:#152649\"]],[false,{\".choose-option ul li.tab.active a\":false},[\"font-weight:bold\",\"color:#152649\"]],[false,{\".choose-option ul li:last-child\":false},[\"padding:15px 20px\",\"line-height:1\"]],[false,{\".choose-option ul li:nth-child(2)\":false},[\"font-weight:bold\",\"margin-right:0px\",\"margin-left:0px\"]],[false,{\".contact-wrapper-banner .inner-hero-text p\":false},[\"display:none\"]],[false,{\".contact-wrapper-banner:before\":false},[\"width:20px\",\"height:20px\",\"bottom:-7px\",\"left:7%\",\"background-color:#101f42\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .calendly-inline-widget:not(#_#_#_#_#_#_#_)\":false},[\"min-width:100%\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"object-position:82% 0px\"]],[false,\"}\"],[true,\"@media (max-width: 767px){\"],[false,{\".tekteams-tabel .heading-box label\":false},[\"margin-left:0px\"]],[false,{\".tekteams-tabel .table-wrapper td.always\":false},[\"color:#28d9cb\"]],[false,{\".tekteams-tabel .table-wrapper td:last-of-type\":false},[\"color:#24c1ff\",\"font-weight:700\"]],[false,{\".tekteams-tabel .table-wrapper tr\":false},[\"display:block\",\"border-top:1px solid #c9c9c9\",\"padding:15px 0\"]],[false,{\"section.demand-sec .inner .slick-track\":false},[\"display:unset\"]],[false,{\".demand-sec .inner .colm:not(#_#_#_#_#_#_#_)\":false},[\"margin:25px 10px 25px 0\",\"padding:0\"]],[false,{\".future-vision-sec .custom-img\":false},[\"width:90%\",\"margin:auto\"]],[true,{\".footer-2022__certificates\":true},[\"margin-top:30px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:70px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\"]],[false,{\".heading-box h2\":false},[\"font-size:24px\"]],[false,{\".demand-sec .heading-box\":false},[\"padding-bottom:20px\"]],[false,{\".ecosystem-sec .inner\":false},[\"padding-bottom:0\"]],[false,{\".ecosystem-sec\":false},[\"padding:100px 0px 100px 0px\"]],[false,{\".solution-sec\":false},[\"padding:70px 0px\"]],[false,{\".tek-teams-heading h3\":false},[\"margin-bottom:15px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:15px\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"display:block\",\"flex-direction:unset\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding:25px 10px 25px 0px\",\"margin:0\"]],[false,{\".custom-grid-sec .inner .slick-list\":false},[\"padding-bottom:25px\"]],[true,{\"header .new-header__menu-item\":true},[\"top:60px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link\":true},[\"line-height:normal\",\"font-weight:600\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:16px\",\"color:#152649\"]],[true,{\"header .new-header__nav--list li\":true},[\"margin-bottom:30px\",\"margin-left:18px\"]],[true,{\"header .new-header__nav--list\":true},[\"margin-top:46px\"]],[true,{\"header .new-header__nav--list li:nth-last-child(1)\":true},[\"margin-bottom:0\"]],[true,{\"header .dropdown-menu\":true},[\"top:0px\"]],[true,{\"header .new-header__nav--menu--title\":true},[\"font-size:14px\"]],[true,{\"header .new-header__nav--title h5\":true},[\"font-size:20px\"]],[false,{\"header .new-header__nav--list>.show\":false},[\"padding-top:10px\"]],[false,{\".c-application-development .review_sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:20px\"]],[true,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".reliability-engineers\":false},[\"margin-top:126px\"]],[false,{\".development-team-sec .development-team-content .btn-blue\":false},[\"margin:0px\",\"padding:16px 0px\",\"width:185px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:150px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,\"}\"],[false,\"@media (max-width:575px){\"],[false,{\".infrastructure-sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-309px\"]],[false,{\".col-row ul li\":false,\".col-row ul li:nth-child(1)\":false,\".col-row ul li:nth-child(4)\":false},[\"width:100%\",\"padding-left:25px\"]],[false,{\".col-row ul li::after\":false},[\"width:19px\",\"height:19px\",\"background-size:100%\"]],[false,{\".kubernetes-sec .container-md\":false},[\"padding:0px 0px\"]],[false,{\".kubernetes-sec .custom-txt\":false},[\"padding:0px 24px\"]],[false,{\".devops-services .applications-col h5::before\":false},[\"width:25px\",\"height:25px\",\"background-size:100%\"]],[false,{\".infrastructure-sec .heading-box:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0px\"]],[false,\"}\"],[true,\"@media (max-width:480px){\"],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"margin:0px 0 0px 0px\",\"padding-bottom:0px\"]],[true,{\".footer-2022__certificates\":true},[\"margin-top:0\",\"margin-bottom:20px\"]],[true,{\".footer-2022__box-end a\":true},[\"font-size:14px\"]],[true,{\".footer-2022__box-end a:nth-last-child(1)\":true},[\"margin-right:0\"]],[true,{\".row.footer-2022__mobile-items\":true},[\"padding-right:0\"]],[true,{\".footer-2022__copyright\":true},[\"font-size:14px\"]],[false,{\".future-vision-sec .custom-img\":false},[\"max-width:360px\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:32px\"]],[false,{\".demand-sec\":false},[\"padding:60px 0px 40px 0px\"]],[false,{\".ecosystem-sec\":false},[\"padding:60px 0px 35px 0px\"]],[false,{\".ecosystem-sec .heading-box figure\":false},[\"top:0\",\"right:0\"]],[false,{\".ecosystem-sec .heading-box figure amp-img\":false,\".ecosystem-sec .heading-box figure amp-anim\":false},[\"width:100%\",\"height:100%\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 80px 0px\"]],[false,{\".partner-sec .colm h6\":false},[\"min-height:unset\"]],[false,{\".partner-sec .heading-box\":false},[\"padding-bottom:40px\"]],[false,{\".solution-sec\":false},[\"padding:60px 0px\"]],[false,{\".cp-tek-teams-isk h2\":false,\".tek-teams-heading h3\":false},[\"font-size:26px\"]],[false,{\".c-app-banner h2\":false},[\"font-size:32px\"]],[false,{\".c-app-banner p\":false},[\"font-size:16px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:60px 0px\"]],[true,{\".footer-2022__social-media\":true},[\"margin-top:60px\"]],[true,{\".footer-2022__social-media a\":true},[\"margin:0px 30px 0px 0px\"]],[true,{\".footer-2022__social-media a:nth-last-child(1)\":true},[\"margin-right:0\"]],[true,\"}\"],[false,\"@media (max-width:420px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:100%\",\"margin:auto\"]],[false,{\".ecosystem-sec .heading-box figure\":false},[\"margin-bottom:0\",\"top:30px\",\"width:70px\",\"height:70px\"]],[false,{\".ecosystem-sec .heading-box h2\":false},[\"width:calc(100% - 70px)\"]],[false,\"}\"],[false,{\"body .devops-styles:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-top:75px\"]],[false,\"@media (max-width:1200px){\"],[false,{\"body .devops-styles:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-top:55px\"]],[false,{\".contact-wrapper-banner:before\":false},[\"left:7%\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:1135px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-bottom:25px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(36%)\"]],[false,{\".ecosystem-sec .colm:last-of-type figure\":false},[\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"max-width:200px\",\"display:block\",\"margin:auto\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:47%\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:1035px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"transform:translateY(-50%)\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(32%)\"]],[false,{\".ecosystem-sec .colm\":false},[\"padding:15px 30px 15px 30px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"margin-bottom:15px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"padding-right:30px\",\"font-size:20px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(38%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:48%\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:898px){\"],[false,{\".ecosystem-sec .colm p\":false},[\"font-size:14px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(38%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:49%\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:16px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:15px\"]],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:18px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"width:60px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:25px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"width:130px\"]],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"width:170px\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:770px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(26%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:48%\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:14px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:15px\"]],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:16px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"width:60px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:25px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"width:120px\"]],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"width:140px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false,\".ecosystem-sec .colm\":false},[\"margin-bottom:20px\",\"padding:15px 20px\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,{\".ecosystem-sec .colm p\":false},[\"font-size:12px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"padding-bottom:25px\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:700px){\"],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"width:110px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"transform:translateY(-41%)\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(25%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:49%\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"margin-bottom:10px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:10px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false,\".ecosystem-sec .colm\":false},[\"margin-bottom:20px\",\"padding:10px 20px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"padding-top:0\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":6539,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/kubernetes.css?v=1326980184\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"00ad41532091732506b79ad4852bdcbd\",\"parse_time\":0.06564903259277344,\"shake_time\":8.416175842285156e-5,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\"#gtx-trans\":false},[\"display:none\"]],[false,{\".kubernetes__banner__dark\":false},[\"background-color:#152649\",\"padding:85px 0px\"]],[false,{\".kubernetes__banner__light\":false},[\"background-color:#fff\",\"padding:120px 0px\"]],[false,{\".kubernetes__banner__grey\":false},[\"background-color:#f1f1f1\",\"padding:120px 0px\"]],[false,{\".kubernetes__banner__bottom\":false},[\"background-color:#fff\",\"padding:65px 0px\",\"box-shadow:inset 0px 11px 8px -10px rgba(0,0,0,.1),inset 0px -11px 8px -10px rgba(0,0,0,.1)\"]],[false,{\".text__light__blue\":false},[\"color:#28d9cb\"]],[false,{\".text__blue\":false},[\"color:#00c3fc\"]],[false,{\".kubernetes__section--1 .subtitle\":false},[\"font-family:Roboto\",\"font-size:16px\",\"text-transform:uppercase\",\"letter-spacing:1.6px\"]],[false,{\".kubernetes__section--1 .titlePage\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:60px\"]],[false,{\".kubernetes .redirect__page\":false},[\"color:#7080a7\",\"align-items:center\"]],[false,{\".redirect__page > h6\":false},[\"font-family:Roboto\",\"font-size:18px\",\"margin-left:10px\",\"margin-bottom:0px\",\"color:#7080a7\"]],[false,{\".iconSmall\":false},[\"width:2px\",\"height:5px\",\"margin-right:10px\"]],[false,{\".iconMedium\":false},[\"width:15px\",\"height:13px\",\"margin-right:10px\"]],[false,{\".imgIcon\":false},[\"width:24px\",\"height:24px\",\"margin-right:10px\"]],[false,{\".kubernetes .wrap__kcsp .nav__services .service__name h6\":false},[\"color:#152649\",\"margin:0\",\"font-weight:bold\",\"font-family:Raleway\"]],[false,{\".kubernetes .titleSection\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".kubernetes .titleSection__footer\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".kubernetes .section_one_content\":false,\".kubernetes .section_three_content\":false,\".kubernetes .section_four_content\":false,\".kubernetes .section_five_content\":false},[\"font-size:20px\",\"line-height:32px\"]],[false,{\".kubernetes .nav__services\":false},[\"box-shadow:rgba(0,0,0,.45) 0px 25px 20px -20px\",\"border-radius:24px\",\"background-color:#f5f5f5\",\"border:1px solid #f5f5f5\",\"padding:26.5px 35.5px\",\"margin-top:40px\"]],[false,{\".kubernetes .nav__services h6\":false},[\"margin:0\"]],[false,{\".kubernetes .nav__services .service__name\":false},[\"font-family:Raleway\",\"font-size:16px\",\"font-weight:bold\",\"color:#152649\"]],[false,{\".kubernetes .nav__services .service__name .section_five_icon_text\":false},[\"font-size:14px\",\"line-height:32px\"]],[false,{\".service__name picture\":false,\".service__name source\":false,\".service__name div > amp-img\":false,\".service__name div > amp-anim\":false},[\"display:flex\",\"width:35px\"]],[false,{\".service__name div\":false},[\"display:flex\",\"justify-content:flex-start\",\"align-items:center\"]],[false,{\".service__name div h6\":false},[\"font-weight:bold\",\"font-size:18px\",\"font-family:Raleway\",\"margin:0\"]],[false,{\".kubernetes .btn__consultation\":false},[\"background-color:#00c3fc\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\"]],[false,{\".kubernetes .btn__consultation__light__blue\":false},[\"background-color:#28d9cb\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\"]],[false,{\".kubernetes .btn__linear\":false},[\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:40px\"]],[false,{\".kubernetes .wrap__Services .service__name\":false},[\"font-family:Raleway\",\"font-size:18px\",\"font-weight:bold\",\"color:#152649\",\"line-height:32px\"]],[false,{\".service__list\":false},[\"align-items:center\",\"border-bottom:1px solid #e1e1e1\",\"max-height:70px\"]],[false,{\".kubernetes .wrap__Services .service__list:last-child .service__name\":false},[\"border-bottom:none\"]],[false,{\".kubernetes .owl-carousel .owl-item .service__name\":false},[\"font-family:Raleway\",\"font-size:18px\",\"font-weight:bold\",\"color:#152649\",\"line-height:32px\"]],[false,{\".service__name i\":false},[\"color:#26c1ff\",\"font-size:15px\",\"margin-right:3px\"]],[false,{\".kubernetes .owl-carousel .owl-item .imgIcon\":false},[\"width:24px\",\"height:24px\",\"margin-right:10px\"]],[false,{\".kubernetes .owl-theme .owl-nav\":false},[\"display:none\"]],[false,{\".kubernetes .owl-theme .owl-dots .owl-dot span\":false},[\"width:4px\",\"height:4px\",\"background-color:#d6d6d6\"]],[false,{\".kubernetes .owl-theme .owl-dots .owl-dot.active span\":false},[\"width:24px\",\"height:4px\",\"border-radius:2px\",\"background-color:#28d9cb\"]],[false,{\".kubernetes .text\":false},[\"font-family:Raleway\",\"font-size:20px\",\"font-weight:bold\",\"color:#152649\",\"line-height:32px\"]],[false,{\".absolute__button\":false},[\"position:absolute\",\"bottom:-35px\",\"left:calc(( 100vw - 246px ) \\/ 2)\"]],[false,\"@media screen and (min-width: 1440px){\"],[false,{\".containerWidth\":false},[\"max-width:1210px\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media screen and (max-width: 991px){\"],[false,{\".kubernetes__banner__grey\":false},[\"padding:80px 0px\"]],[false,{\".kubernetes__banner__light\":false},[\"padding:50px 0px 80px 0px\"]],[false,{\".kubernetes__banner__bottom\":false},[\"padding:35px 0px\"]],[false,{\".kubernetes__section--1 .titlePage\":false},[\"font-size:32px\",\"line-height:34px\"]],[false,{\".kubernetes__section--1 .subtitle\":false},[\"font-size:12px\",\"letter-spacing:1.2px\"]],[false,{\".kubernetes .redirect__page h6\":false},[\"font-size:14px\",\"line-height:17px\",\"letter-spacing:1.4px\"]],[false,{\".kubernetes .section_one_content\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".kubernetes .wrap__kcsp .nav__services .service__name h6\":false},[\"font-size:14px\",\"line-height:16px\"]],[false,{\".kubernetes .owl-carousel .item .service__name .section_two_title\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".kubernetes .section_one_content\":false,\".kubernetes .section_three_content\":false,\".kubernetes .section_four_content\":false,\".kubernetes .section_five_content\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".kubernetes .text\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".owl-carousel .service__name:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom:1px solid #e1e1e1\"]],[false,{\".kubernetes .titleSection__footer\":false},[\"font-size:20px\",\"line-height:24px\",\"padding:0px 58px\"]],[false,{\".kubernetes .btn__linear\":false},[\"font-size:20px\",\"padding:15px 28px\"]],[false,{\".absolute__button\":false},[\"position:absolute\",\"bottom:-25px\",\"left:calc(( 100vw - 150px ) \\/ 2)\"]],[false,\"}\"],[false,\"@media screen and (max-width: 1439px){\"],[false,{\".containerWidth\":false},[\"max-width:calc(100vw * .87692307692)\",\"margin:0px auto\"]],[false,{\".kubernetes .titleSection\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":9248,\"final_size\":133,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/marchine.css?v=977292395\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"176294cfc3e123d8b5077b360bfaced0\",\"parse_time\":0.1330280303955078,\"shake_time\":0.0001499652862548828,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"*\":true},[\"font-family:Raleway\"]],[true,{\":root\":true},[\"--btn_color:#0e2748\",\"--main_color:#0e2748\"]],[true,{\"a:hover\":true},[\"color:var(--main_color)\"]],[false,{\".btn-consultation\":false},[\"background-color:#00c3fc\",\"border-radius:30px\",\"padding:25px 50px\",\"color:var(--btn_color)\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\",\"z-index:3\",\"white-space:nowrap\"]],[true,{\"h1\":true,\"h2\":false,\"h3\":true,\"h4\":false,\"h5\":true,\"h6\":true},[\"font-family:Raleway\"]],[false,{\".machine_banner h1\":false},[\"font-size:60px\",\"font-weight:bold\",\"text-align:left\",\"line-height:60px\"]],[false,{\".machine_banner p\":false},[\"color:#28d9cb\",\"margin-bottom:24px\",\"font-family:Roboto\",\"font-size:16px\",\"line-height:22px\",\"text-align:left\"]],[false,{\".service_machine_new\":false},[\"background-color:#fff\"]],[false,{\".machine_future\":false},[\"margin-top:100px\"]],[false,{\".text-strong\":false},[\"font-size:50px\",\"font-weight:bold\",\"white-space:nowrap\"]],[false,{\".text-strong\":false},[\"color:#24c1ff\"]],[false,{\".machine_future h2\":false},[\"line-height:50px\"]],[false,{\".machine_future h2\":false,\".machine_future amp-img\":false,\".machine_future amp-anim\":false},[\"margin:40px 0px\",\"font-family:Raleway\",\"font-size:50px\"]],[false,{\".machine_future amp-img\":false,\".machine_future amp-anim\":false},[\"background-size:cover\"]],[false,{\".machine_future i\":false},[\"color:rgba(112,128,167,1)\",\"font-size:16px\",\"margin-right:10px\"]],[false,{\".machine_future h6\":false},[\"color:#7080a7\",\"margin-bottom:0\",\"font-family:Roboto\",\"font-size:18px\"]],[false,{\".machine_text\":false},[\"color:#707070\",\"width:90%\",\"font-size:20px\",\"line-height:32px\",\"margin-bottom:80px\"]],[false,{\".about-service\":false},[\"padding-bottom:120px\"]],[false,{\".about-service .slider-about\":false},[\"padding:0\"]],[false,{\".slider-about > div\":false},[\"height:100%\"]],[false,{\".service-machine-selection\":false},[\"display:flex\",\"justify-content:space-around\",\"background-color:#f1f1f1\",\"padding:15px 15px\",\"margin:0px\",\"border-radius:40px\"]],[false,{\".service-machine-selection > a\":false},[\"border-radius:40px\",\"padding:10px\",\"width:100%\",\"flex:1\",\"text-align:center\",\"color:#707070\",\"font-weight:bold\",\"font-size:20px\"]],[false,{\".slider-about_problems\":false,\".slider-about_solutions\":false},[\"padding:0px 50px\"]],[false,{\".slider-about_problems h3\":false},[\"font-weight:bold\",\"font-size:32px\",\"text-align:left\",\"line-height:40px\"]],[false,{\".slider-about_problems h4\":false},[\"font-size:20px\",\"color:#434343\",\"font-family:Raleway\",\"font-weight:bold\",\"line-height:32px\",\"text-align:left\"]],[false,{\".slider-about_problems p\":false},[\"font-size:18px\",\"line-height:30px\",\"line-height:40px\",\"text-align:left\"]],[false,{\".item-carousel-1:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[false,{\".item-carousel-1 amp-img\":false,\".item-carousel-1 amp-anim\":false},[\"vertical-align:top\",\"margin:0\"]],[false,{\".slider-about_problems > div:last-child\":false},[\"font-size:32px\",\"display:flex\",\"justify-content:center\",\"color:#152649\",\"font-weight:bold\"]],[false,{\".first_solution > div\":false,\".second_solution > div\":false,\".last_solution > div\":false},[\"margin-bottom:50px\"]],[false,{\".slider-about_solutions h3\":false},[\"font-weight:bold\",\"font-size:32px\",\"text-align:left\",\"line-height:40px\"]],[false,{\".slider-about_solutions amp-img\":false,\".slider-about_solutions amp-anim\":false},[\"margin:0px\",\"margin-top:5px\",\"min-width:24px\",\"height:24px\"]],[false,{\".first_solution p:first-child\":false},[\"font-weight:bold\",\"font-size:20px\",\"line-height:32px\",\"color:#434343\",\"margin-bottom:50px\"]],[false,{\".first_solution p\":false,\".second_solution p\":false,\".last_solution p\":false},[\"color:#152649\",\"font-size:1.125rem\",\"line-height:30px\",\"text-align:left\"]],[false,{\".slider-about-text-strong\":false},[\"color:#28d9cb\"]],[false,{\".difference_slice\":false},[\"padding:0px 50px\"]],[false,{\".difference_slice div:first-child\":false},[\"align-items:center\"]],[false,{\".difference_slice div:first-child h3\":false},[\"text-align:left\",\"color:#152649\",\"font-size:32px\",\"font-weight:bold\",\"line-height:40px\"]],[false,{\".difference_slice div:last-child p\":false},[\"text-align:left\",\"color:#434343\",\"font-size:18px\",\"line-height:30px\"]],[false,{\".trusted-relationships\":false},[\"background-color:#f1f1f1\",\"padding-bottom:200px\"]],[false,{\".trusted-relationships h2\":false},[\"margin-top:156px\",\"margin-bottom:80px\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".btn-relationship\":false},[\"position:absolute\",\"margin:0\",\"margin-top:-35px\",\"background-color:#00c3fc\",\"border-radius:30px\",\"padding:25px 38px\",\"color:var(--main_color)\",\"width:auto\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\",\"display:inline\",\"left:0\",\"z-index:1\"]],[false,{\".card\":false},[\"background-color:transparent\",\"border-color:transparent\"]],[false,{\".card:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:20px\"]],[false,{\".card h3\":false},[\"cursor:pointer\",\"font-size:18px\",\"font-weight:bold\"]],[false,{\".card amp-img\":false,\".card amp-anim\":false},[\"width:24px\",\"height:24px\",\"margin:0px\",\"margin-top:2px\"]],[false,{\".card i\":false},[\"color:#24c1ff\",\"font-size:medium\",\"margin-left:10px\",\"margin-top:5px\",\"display:none\"]],[false,{\"#enterprise_and_fastest_content\":false},[\"position:absolute\",\"width:100%\"]],[false,{\"#enterprise_and_fastest_content:not(#_#_#_#_#_#_#_)\":false},[\"top:-130px\"]],[false,{\"#enterprise_and_fastest_content div\":false},[\"min-height:150px\",\"border-radius:24px\",\"display:flex\",\"justify-content:center\",\"padding:48px\"]],[false,{\"#enterprise_and_fastest_content div:first-child\":false},[\"background-color:#152649\",\"color:#24c1ff\"]],[false,{\"#enterprise_and_fastest_content div:first-child p\":false},[\"color:#24c1ff\",\"text-align:center\",\"font-size:24px\",\"font-weight:bold\",\"line-height:36px\"]],[false,{\"#enterprise_and_fastest_content div:nth-child(2) h2\":false},[\"font-size:50px\",\"line-height:50px\"]],[false,{\"#enterprise_and_fastest_content div:last-child\":false},[\"background-color:#f5f5f5\",\"box-shadow:rgba(0,0,0,.45) 0px 25px 20px -20px\",\"display:flex\",\"flex-direction:column\",\"justify-content:flex-start\"]],[false,{\"#enterprise_and_fastest_content div:last-child p\":false},[\"font-style:italic\",\"color:#707070\",\"text-align:left\",\"font-size:20px\"]],[false,{\"#enterprise_and_fastest_content div:last-child p:last-child\":false},[\"margin:0\",\"font-weight:bold\",\"font-style:normal\"]],[false,{\"#enterprise_and_fastest_content div:last-child amp-img\":false,\"#enterprise_and_fastest_content div:last-child amp-anim\":false},[\"width:40px\",\"height:40px\",\"left:45px\",\"top:-20px\"]],[false,{\".business\":false},[\"box-shadow:inset 0px 11px 8px -10px rgba(0,0,0,.1),inset 0px -11px 8px -10px rgba(0,0,0,.1)\"]],[false,{\".business-content\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\",\"align-items:center\",\"padding:50px 0px\",\"position:relative\"]],[false,{\".business-content a\":false},[\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:40px\",\"float:right\"]],[false,{\".business-content h2\":false},[\"text-align:center\",\"margin-bottom:0\",\"font-family:Raleway\",\"font-weight:bold\",\"font-size:50px\",\"line-height:50px\"]],[false,\"@media screen and (max-width: 992px){\"],[false,{\".card i\":false},[\"display:block\"]],[false,{\".card > div:last-child\":false},[\"display:none\"]],[false,{\".card\":false},[\"border-top:1px solid rgba(138,138,138,.34)\",\"padding:30px 0px 15px 0px\",\"border-radius:0\"]],[false,{\".business a\":false},[\"position:absolute\",\"bottom:-40px\",\"left:0\",\"right:0\",\"margin-left:auto\",\"margin-right:auto\",\"text-align:center\",\"width:306px\"]],[false,{\".btn-relationship\":false},[\"left:50%\",\"transform:translate(-50%,0%)\",\"white-space:nowrap\"]],[false,{\".business-content\":false},[\"flex-direction:column\"]],[false,\"}\"],[false,{\".selected\":false},[\"background-color:white\",\"border:none\"]],[false,{\".selected:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--main_color)\"]],[false,{\"#container\":false},[\"position:relative\",\"overflow:hidden\",\"clear:left\",\"padding:50px 0px\"]],[false,{\".box\":false},[\"position:absolute\",\"top:0\",\"left:0\"]],[false,{\"#first\":false},[\"top:0px\",\"left:0px\",\"width:100%\",\"display:flex\"]],[false,{\"#second\":false},[\"top:0px\",\"width:100%\"]],[false,{\"#third\":false},[\"top:0px\",\"width:100%\"]],[false,{\"#slide\":false},[\"transition:transform .5s ease-in-out 0s\",\"-moz-transition:-moz-transform .5s ease-in-out 0s\",\"-webkit-transition:-webkit-transform .5s ease-in-out 0s\",\"min-height:50px\"]],[false,{\".move-to-second\":false},[\"transform:translateX(var(--tab_second))\",\"-moz-transform:translateX(var(--tab_second))\",\"-webkit-transform:translateX(var(--tab_second))\"]],[false,{\".move-to-third\":false},[\"transform:translateX(var(--tab_third))\",\"-moz-transform:translateX(var(--tab_third))\",\"-webkit-transform:translateX(var(--tab_third))\"]],[false,{\".move-to-first\":false},[\"transform:translateX(0px)\",\"-moz-transform:translateX(0px)\",\"-webkit-transform:translateX(0px)\"]],[false,{\".machine_future_title h2\":false,\".machine_future_title span\":false,\".machine_future_title p\":false},[\"font-size:50px\"]],[false,\"@media screen and (max-width: 540px){\"],[false,{\".machine_text\":false},[\"width:100%\"]],[false,{\".difference_slice\":false},[\"padding:0px 20px\"]],[false,{\".first_solution > div\":false,\".second_solution > div\":false,\".last_solution > div\":false},[\"margin-bottom:0\"]],[false,{\"#third\":false},[\"padding:20px\"]],[false,{\"#first\":false,\"#second\":false,\"#third\":false},[\"background-color:#f1f1f1\",\"border-radius:24px\",\"box-shadow:rgba(0,0,0,.45) 0px 25px 20px -20px\"]],[false,{\"#first:not(#_#_#_#_#_#_#_)\":false,\"#second:not(#_#_#_#_#_#_#_)\":false,\"#third:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".service-machine-selection > a\":false},[\"font-size:17px\"]],[false,{\"#container\":false},[\"padding-top:15px\"]],[false,{\".btn-consultation\":false},[\"padding:25px 25px\"]],[false,{\".machine_future_title h2\":false,\".machine_future_title span\":false,\".machine_future_title p\":false},[\"font-size:45px\"]],[false,\"}\"],[false,\"@media screen and (min-width: 1440px){\"],[false,{\".containerWidth\":false},[\"max-width:1232px\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media screen and (min-width: 1440px){\"],[false,{\".containerWidth\":false},[\"max-width:1220px\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media screen and (max-width: 1439px){\"],[false,{\".containerWidth\":false},[\"max-width:calc(100vw * .87692307692)\",\"margin:0px auto\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1776,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"type\":\"text\\/css\",\"href\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/slick-carousel@1.8.1\\/slick\\/slick.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"503d87b8e892b897f5d05df814fbc0c4\",\"parse_time\":0.008713960647583008,\"shake_time\":4.1961669921875e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".slick-slider\":false},[\"position:relative\",\"display:block\",\"box-sizing:border-box\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\",\"-webkit-touch-callout:none\",\"-khtml-user-select:none\",\"-ms-touch-action:pan-y\",\"touch-action:pan-y\",\"-webkit-tap-highlight-color:transparent\"]],[false,{\".slick-list\":false},[\"position:relative\",\"display:block\",\"overflow:hidden\",\"margin:0\",\"padding:0\"]],[false,{\".slick-list:focus\":false},[\"outline:none\"]],[false,{\".slick-list.dragging\":false},[\"cursor:pointer\",\"cursor:hand\"]],[false,{\".slick-slider .slick-track\":false,\".slick-slider .slick-list\":false},[\"-webkit-transform:translate3d(0,0,0)\",\"-moz-transform:translate3d(0,0,0)\",\"-ms-transform:translate3d(0,0,0)\",\"-o-transform:translate3d(0,0,0)\",\"transform:translate3d(0,0,0)\"]],[false,{\".slick-track\":false},[\"position:relative\",\"top:0\",\"left:0\",\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".slick-track:before\":false,\".slick-track:after\":false},[\"display:table\",\"content:\\\"\\\"\"]],[false,{\".slick-track:after\":false},[\"clear:both\"]],[false,{\".slick-loading .slick-track\":false},[\"visibility:hidden\"]],[false,{\".slick-slide\":false},[\"display:none\",\"float:left\",\"height:100%\",\"min-height:1px\"]],[false,{\"[dir=\'rtl\'] .slick-slide\":false},[\"float:right\"]],[false,{\".slick-slide amp-img\":false,\".slick-slide amp-anim\":false},[\"display:block\"]],[false,{\".slick-slide.slick-loading amp-img\":false,\".slick-slide.slick-loading amp-anim\":false},[\"display:none\"]],[false,{\".slick-slide.dragging amp-img\":false,\".slick-slide.dragging amp-anim\":false},[\"pointer-events:none\"]],[false,{\".slick-initialized .slick-slide\":false},[\"display:block\"]],[false,{\".slick-loading .slick-slide\":false},[\"visibility:hidden\"]],[false,{\".slick-vertical .slick-slide\":false},[\"display:block\",\"height:auto\",\"border:1px solid transparent\"]],[false,{\".slick-arrow.slick-hidden\":false},[\"display:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":100701,\"final_size\":8288,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/css\\/all.min.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"2b9f797b620fd0348167564267b11933\",\"parse_time\":2.5145909786224365,\"shake_time\":0.002780914306640625,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-v4compatibility.woff2\"],\"shaken_tokens\":[[false,{\".fa\":false},[\"font-family:var(--fa-style-family,\\\"Font Awesome 6 Free\\\")\",\"font-weight:var(--fa-style,900)\"]],[false,{\".fa\":false,\".fa-brands\":false,\".fa-duotone\":false,\".fa-light\":false,\".fa-regular\":false,\".fa-solid\":false,\".fa-thin\":false,\".fab\":false,\".fad\":false,\".fal\":false,\".far\":false,\".fas\":false,\".fat\":false},[\"-moz-osx-font-smoothing:grayscale\",\"-webkit-font-smoothing:antialiased\",\"display:var(--fa-display,inline-block)\",\"font-style:normal\",\"font-variant:normal\",\"line-height:1\",\"text-rendering:auto\"]],[false,{\".fa-1x\":false},[\"font-size:1em\"]],[false,{\".fa-2x\":false},[\"font-size:2em\"]],[false,{\".fa-3x\":false},[\"font-size:3em\"]],[false,{\".fa-4x\":false},[\"font-size:4em\"]],[false,{\".fa-5x\":false},[\"font-size:5em\"]],[false,{\".fa-6x\":false},[\"font-size:6em\"]],[false,{\".fa-7x\":false},[\"font-size:7em\"]],[false,{\".fa-8x\":false},[\"font-size:8em\"]],[false,{\".fa-9x\":false},[\"font-size:9em\"]],[false,{\".fa-10x\":false},[\"font-size:10em\"]],[false,{\".fa-2xs\":false},[\"font-size:.625em\",\"line-height:.1em\",\"vertical-align:.225em\"]],[false,{\".fa-xs\":false},[\"font-size:.75em\",\"line-height:.08333em\",\"vertical-align:.125em\"]],[false,{\".fa-sm\":false},[\"font-size:.875em\",\"line-height:.07143em\",\"vertical-align:.05357em\"]],[false,{\".fa-lg\":false},[\"font-size:1.25em\",\"line-height:.05em\",\"vertical-align:-.075em\"]],[false,{\".fa-xl\":false},[\"font-size:1.5em\",\"line-height:.04167em\",\"vertical-align:-.125em\"]],[false,{\".fa-2xl\":false},[\"font-size:2em\",\"line-height:.03125em\",\"vertical-align:-.1875em\"]],[false,{\".fa-fw\":false},[\"text-align:center\",\"width:1.25em\"]],[false,{\".fa-ul\":false},[\"list-style-type:none\",\"margin-left:var(--fa-li-margin,2.5em)\",\"padding-left:0\"]],[false,{\".fa-ul>li\":false},[\"position:relative\"]],[false,{\".fa-li\":false},[\"left:calc(var(--fa-li-width,2em) * -1)\",\"position:absolute\",\"text-align:center\",\"width:var(--fa-li-width,2em)\",\"line-height:inherit\"]],[false,{\".fa-border\":false},[\"border-radius:var(--fa-border-radius,.1em)\",\"border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee)\",\"padding:var(--fa-border-padding,.2em .25em .15em)\"]],[false,{\".fa-pull-left\":false},[\"float:left\",\"margin-right:var(--fa-pull-margin,.3em)\"]],[false,{\".fa-pull-right\":false},[\"float:right\",\"margin-left:var(--fa-pull-margin,.3em)\"]],[false,{\".fa-beat\":false},[\"-webkit-animation-name:fa-beat\",\"animation-name:fa-beat\",\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out)\",\"animation-timing-function:var(--fa-animation-timing,ease-in-out)\"]],[false,{\".fa-bounce\":false},[\"-webkit-animation-name:fa-bounce\",\"animation-name:fa-bounce\",\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))\",\"animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))\"]],[false,{\".fa-fade\":false},[\"-webkit-animation-name:fa-fade\",\"animation-name:fa-fade\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\",\"animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\"]],[false,{\".fa-beat-fade\":false,\".fa-fade\":false},[\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\"]],[false,{\".fa-beat-fade\":false},[\"-webkit-animation-name:fa-beat-fade\",\"animation-name:fa-beat-fade\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\",\"animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\"]],[false,{\".fa-flip\":false},[\"-webkit-animation-name:fa-flip\",\"animation-name:fa-flip\",\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out)\",\"animation-timing-function:var(--fa-animation-timing,ease-in-out)\"]],[false,{\".fa-shake\":false},[\"-webkit-animation-name:fa-shake\",\"animation-name:fa-shake\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,linear)\",\"animation-timing-function:var(--fa-animation-timing,linear)\"]],[false,{\".fa-shake\":false,\".fa-spin\":false},[\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\"]],[false,{\".fa-spin\":false},[\"-webkit-animation-name:fa-spin\",\"animation-name:fa-spin\",\"-webkit-animation-duration:var(--fa-animation-duration,2s)\",\"animation-duration:var(--fa-animation-duration,2s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,linear)\",\"animation-timing-function:var(--fa-animation-timing,linear)\"]],[false,{\".fa-spin-reverse\":false},[\"--fa-animation-direction:reverse\"]],[false,{\".fa-pulse\":false,\".fa-spin-pulse\":false},[\"-webkit-animation-name:fa-spin\",\"animation-name:fa-spin\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,steps(8))\",\"animation-timing-function:var(--fa-animation-timing,steps(8))\"]],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".fa-beat\":false,\".fa-beat-fade\":false,\".fa-bounce\":false,\".fa-fade\":false,\".fa-flip\":false,\".fa-pulse\":false,\".fa-shake\":false,\".fa-spin\":false,\".fa-spin-pulse\":false},[\"-webkit-animation-delay:-1ms\",\"animation-delay:-1ms\",\"-webkit-animation-duration:1ms\",\"animation-duration:1ms\",\"-webkit-animation-iteration-count:1\",\"animation-iteration-count:1\",\"transition-delay:0s\",\"transition-duration:0s\"]],[false,\"}\"],[true,\"@-webkit-keyframes fa-beat{\"],[true,\"0%,90%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}\"],[true,\"}@keyframes fa-beat{\"],[true,\"0%,90%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}\"],[true,\"}@-webkit-keyframes fa-bounce{\"],[true,\"0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}\"],[true,\"30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}\"],[true,\"50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}\"],[true,\"57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}\"],[true,\"64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"}@keyframes fa-bounce{\"],[true,\"0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}\"],[true,\"30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}\"],[true,\"50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}\"],[true,\"57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}\"],[true,\"64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"}@-webkit-keyframes fa-fade{\"],[true,\"50%{opacity:var(--fa-fade-opacity,.4)}\"],[true,\"}@keyframes fa-fade{\"],[true,\"50%{opacity:var(--fa-fade-opacity,.4)}\"],[true,\"}@-webkit-keyframes fa-beat-fade{\"],[true,\"0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}\"],[true,\"}@keyframes fa-beat-fade{\"],[true,\"0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}\"],[true,\"}@-webkit-keyframes fa-flip{\"],[true,\"50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}\"],[true,\"}@keyframes fa-flip{\"],[true,\"50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}\"],[true,\"}@-webkit-keyframes fa-shake{\"],[true,\"0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}\"],[true,\"4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}\"],[true,\"12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}\"],[true,\"16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}\"],[true,\"20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}\"],[true,\"32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}\"],[true,\"36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}\"],[true,\"40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}@keyframes fa-shake{\"],[true,\"0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}\"],[true,\"4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}\"],[true,\"12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}\"],[true,\"16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}\"],[true,\"20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}\"],[true,\"32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}\"],[true,\"36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}\"],[true,\"40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}@-webkit-keyframes fa-spin{\"],[true,\"0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}\"],[true,\"}@keyframes fa-spin{\"],[true,\"0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}\"],[true,\"}\"],[false,{\".fa-rotate-90\":false},[\"-webkit-transform:rotate(90deg)\",\"transform:rotate(90deg)\"]],[false,{\".fa-rotate-180\":false},[\"-webkit-transform:rotate(180deg)\",\"transform:rotate(180deg)\"]],[false,{\".fa-rotate-270\":false},[\"-webkit-transform:rotate(270deg)\",\"transform:rotate(270deg)\"]],[false,{\".fa-flip-horizontal\":false},[\"-webkit-transform:scaleX(-1)\",\"transform:scaleX(-1)\"]],[false,{\".fa-flip-vertical\":false},[\"-webkit-transform:scaleY(-1)\",\"transform:scaleY(-1)\"]],[false,{\".fa-flip-both\":false,\".fa-flip-horizontal.fa-flip-vertical\":false},[\"-webkit-transform:scale(-1)\",\"transform:scale(-1)\"]],[false,{\".fa-rotate-by\":false},[\"-webkit-transform:rotate(var(--fa-rotate-angle,none))\",\"transform:rotate(var(--fa-rotate-angle,none))\"]],[false,{\".fa-stack\":false},[\"display:inline-block\",\"height:2em\",\"line-height:2em\",\"position:relative\",\"vertical-align:middle\",\"width:2.5em\"]],[false,{\".fa-stack-1x\":false,\".fa-stack-2x\":false},[\"left:0\",\"position:absolute\",\"text-align:center\",\"width:100%\",\"z-index:var(--fa-stack-z-index,auto)\"]],[false,{\".fa-stack-1x\":false},[\"line-height:inherit\"]],[false,{\".fa-stack-2x\":false},[\"font-size:2em\"]],[false,{\".fa-inverse\":false},[\"color:var(--fa-inverse,#fff)\"]],[false,{\".fa-0:before\":false},[\"content:\\\"0\\\"\"]],[false,{\".fa-1:before\":false},[\"content:\\\"1\\\"\"]],[false,{\".fa-2:before\":false},[\"content:\\\"2\\\"\"]],[false,{\".fa-3:before\":false},[\"content:\\\"3\\\"\"]],[false,{\".fa-4:before\":false},[\"content:\\\"4\\\"\"]],[false,{\".fa-5:before\":false},[\"content:\\\"5\\\"\"]],[false,{\".fa-6:before\":false},[\"content:\\\"6\\\"\"]],[false,{\".fa-7:before\":false},[\"content:\\\"7\\\"\"]],[false,{\".fa-8:before\":false},[\"content:\\\"8\\\"\"]],[false,{\".fa-9:before\":false},[\"content:\\\"9\\\"\"]],[false,{\".fa-a:before\":false},[\"content:\\\"A\\\"\"]],[false,{\".fa-address-book:before\":false,\".fa-contact-book:before\":false},[\"content:\\\"\\uf2b9\\\"\"]],[false,{\".fa-address-card:before\":false,\".fa-contact-card:before\":false,\".fa-vcard:before\":false},[\"content:\\\"\\uf2bb\\\"\"]],[false,{\".fa-align-center:before\":false},[\"content:\\\"\\uf037\\\"\"]],[false,{\".fa-align-justify:before\":false},[\"content:\\\"\\uf039\\\"\"]],[false,{\".fa-align-left:before\":false},[\"content:\\\"\\uf036\\\"\"]],[false,{\".fa-align-right:before\":false},[\"content:\\\"\\uf038\\\"\"]],[false,{\".fa-anchor:before\":false},[\"content:\\\"\\uf13d\\\"\"]],[false,{\".fa-anchor-circle-check:before\":false},[\"content:\\\"\\ue4aa\\\"\"]],[false,{\".fa-anchor-circle-exclamation:before\":false},[\"content:\\\"\\ue4ab\\\"\"]],[false,{\".fa-anchor-circle-xmark:before\":false},[\"content:\\\"\\ue4ac\\\"\"]],[false,{\".fa-anchor-lock:before\":false},[\"content:\\\"\\ue4ad\\\"\"]],[false,{\".fa-angle-down:before\":false},[\"content:\\\"\\uf107\\\"\"]],[false,{\".fa-angle-left:before\":false},[\"content:\\\"\\uf104\\\"\"]],[false,{\".fa-angle-right:before\":false},[\"content:\\\"\\uf105\\\"\"]],[false,{\".fa-angle-up:before\":false},[\"content:\\\"\\uf106\\\"\"]],[false,{\".fa-angle-double-down:before\":false,\".fa-angles-down:before\":false},[\"content:\\\"\\uf103\\\"\"]],[false,{\".fa-angle-double-left:before\":false,\".fa-angles-left:before\":false},[\"content:\\\"\\uf100\\\"\"]],[false,{\".fa-angle-double-right:before\":false,\".fa-angles-right:before\":false},[\"content:\\\"\\uf101\\\"\"]],[false,{\".fa-angle-double-up:before\":false,\".fa-angles-up:before\":false},[\"content:\\\"\\uf102\\\"\"]],[false,{\".fa-ankh:before\":false},[\"content:\\\"\\uf644\\\"\"]],[false,{\".fa-apple-alt:before\":false,\".fa-apple-whole:before\":false},[\"content:\\\"\\uf5d1\\\"\"]],[false,{\".fa-archway:before\":false},[\"content:\\\"\\uf557\\\"\"]],[false,{\".fa-arrow-down:before\":false},[\"content:\\\"\\uf063\\\"\"]],[false,{\".fa-arrow-down-1-9:before\":false,\".fa-sort-numeric-asc:before\":false,\".fa-sort-numeric-down:before\":false},[\"content:\\\"\\uf162\\\"\"]],[false,{\".fa-arrow-down-9-1:before\":false,\".fa-sort-numeric-desc:before\":false,\".fa-sort-numeric-down-alt:before\":false},[\"content:\\\"\\uf886\\\"\"]],[false,{\".fa-arrow-down-a-z:before\":false,\".fa-sort-alpha-asc:before\":false,\".fa-sort-alpha-down:before\":false},[\"content:\\\"\\uf15d\\\"\"]],[false,{\".fa-arrow-down-long:before\":false,\".fa-long-arrow-down:before\":false},[\"content:\\\"\\uf175\\\"\"]],[false,{\".fa-arrow-down-short-wide:before\":false,\".fa-sort-amount-desc:before\":false,\".fa-sort-amount-down-alt:before\":false},[\"content:\\\"\\uf884\\\"\"]],[false,{\".fa-arrow-down-up-across-line:before\":false},[\"content:\\\"\\ue4af\\\"\"]],[false,{\".fa-arrow-down-up-lock:before\":false},[\"content:\\\"\\ue4b0\\\"\"]],[false,{\".fa-arrow-down-wide-short:before\":false,\".fa-sort-amount-asc:before\":false,\".fa-sort-amount-down:before\":false},[\"content:\\\"\\uf160\\\"\"]],[false,{\".fa-arrow-down-z-a:before\":false,\".fa-sort-alpha-desc:before\":false,\".fa-sort-alpha-down-alt:before\":false},[\"content:\\\"\\uf881\\\"\"]],[false,{\".fa-arrow-left:before\":false},[\"content:\\\"\\uf060\\\"\"]],[false,{\".fa-arrow-left-long:before\":false,\".fa-long-arrow-left:before\":false},[\"content:\\\"\\uf177\\\"\"]],[false,{\".fa-arrow-pointer:before\":false,\".fa-mouse-pointer:before\":false},[\"content:\\\"\\uf245\\\"\"]],[false,{\".fa-arrow-right:before\":false},[\"content:\\\"\\uf061\\\"\"]],[false,{\".fa-arrow-right-arrow-left:before\":false,\".fa-exchange:before\":false},[\"content:\\\"\\uf0ec\\\"\"]],[false,{\".fa-arrow-right-from-bracket:before\":false,\".fa-sign-out:before\":false},[\"content:\\\"\\uf08b\\\"\"]],[false,{\".fa-arrow-right-long:before\":false,\".fa-long-arrow-right:before\":false},[\"content:\\\"\\uf178\\\"\"]],[false,{\".fa-arrow-right-to-bracket:before\":false,\".fa-sign-in:before\":false},[\"content:\\\"\\uf090\\\"\"]],[false,{\".fa-arrow-right-to-city:before\":false},[\"content:\\\"\\ue4b3\\\"\"]],[false,{\".fa-arrow-left-rotate:before\":false,\".fa-arrow-rotate-back:before\":false,\".fa-arrow-rotate-backward:before\":false,\".fa-arrow-rotate-left:before\":false,\".fa-undo:before\":false},[\"content:\\\"\\uf0e2\\\"\"]],[false,{\".fa-arrow-right-rotate:before\":false,\".fa-arrow-rotate-forward:before\":false,\".fa-arrow-rotate-right:before\":false,\".fa-redo:before\":false},[\"content:\\\"\\uf01e\\\"\"]],[false,{\".fa-arrow-trend-down:before\":false},[\"content:\\\"\\ue097\\\"\"]],[false,{\".fa-arrow-trend-up:before\":false},[\"content:\\\"\\ue098\\\"\"]],[false,{\".fa-arrow-turn-down:before\":false,\".fa-level-down:before\":false},[\"content:\\\"\\uf149\\\"\"]],[false,{\".fa-arrow-turn-up:before\":false,\".fa-level-up:before\":false},[\"content:\\\"\\uf148\\\"\"]],[false,{\".fa-arrow-up:before\":false},[\"content:\\\"\\uf062\\\"\"]],[false,{\".fa-arrow-up-1-9:before\":false,\".fa-sort-numeric-up:before\":false},[\"content:\\\"\\uf163\\\"\"]],[false,{\".fa-arrow-up-9-1:before\":false,\".fa-sort-numeric-up-alt:before\":false},[\"content:\\\"\\uf887\\\"\"]],[false,{\".fa-arrow-up-a-z:before\":false,\".fa-sort-alpha-up:before\":false},[\"content:\\\"\\uf15e\\\"\"]],[false,{\".fa-arrow-up-from-bracket:before\":false},[\"content:\\\"\\ue09a\\\"\"]],[false,{\".fa-arrow-up-from-ground-water:before\":false},[\"content:\\\"\\ue4b5\\\"\"]],[false,{\".fa-arrow-up-from-water-pump:before\":false},[\"content:\\\"\\ue4b6\\\"\"]],[false,{\".fa-arrow-up-long:before\":false,\".fa-long-arrow-up:before\":false},[\"content:\\\"\\uf176\\\"\"]],[false,{\".fa-arrow-up-right-dots:before\":false},[\"content:\\\"\\ue4b7\\\"\"]],[false,{\".fa-arrow-up-right-from-square:before\":false,\".fa-external-link:before\":false},[\"content:\\\"\\uf08e\\\"\"]],[false,{\".fa-arrow-up-short-wide:before\":false,\".fa-sort-amount-up-alt:before\":false},[\"content:\\\"\\uf885\\\"\"]],[false,{\".fa-arrow-up-wide-short:before\":false,\".fa-sort-amount-up:before\":false},[\"content:\\\"\\uf161\\\"\"]],[false,{\".fa-arrow-up-z-a:before\":false,\".fa-sort-alpha-up-alt:before\":false},[\"content:\\\"\\uf882\\\"\"]],[false,{\".fa-arrows-down-to-line:before\":false},[\"content:\\\"\\ue4b8\\\"\"]],[false,{\".fa-arrows-down-to-people:before\":false},[\"content:\\\"\\ue4b9\\\"\"]],[false,{\".fa-arrows-h:before\":false,\".fa-arrows-left-right:before\":false},[\"content:\\\"\\uf07e\\\"\"]],[false,{\".fa-arrows-left-right-to-line:before\":false},[\"content:\\\"\\ue4ba\\\"\"]],[false,{\".fa-arrows-rotate:before\":false,\".fa-refresh:before\":false,\".fa-sync:before\":false},[\"content:\\\"\\uf021\\\"\"]],[false,{\".fa-arrows-spin:before\":false},[\"content:\\\"\\ue4bb\\\"\"]],[false,{\".fa-arrows-split-up-and-left:before\":false},[\"content:\\\"\\ue4bc\\\"\"]],[false,{\".fa-arrows-to-circle:before\":false},[\"content:\\\"\\ue4bd\\\"\"]],[false,{\".fa-arrows-to-dot:before\":false},[\"content:\\\"\\ue4be\\\"\"]],[false,{\".fa-arrows-to-eye:before\":false},[\"content:\\\"\\ue4bf\\\"\"]],[false,{\".fa-arrows-turn-right:before\":false},[\"content:\\\"\\ue4c0\\\"\"]],[false,{\".fa-arrows-turn-to-dots:before\":false},[\"content:\\\"\\ue4c1\\\"\"]],[false,{\".fa-arrows-up-down:before\":false,\".fa-arrows-v:before\":false},[\"content:\\\"\\uf07d\\\"\"]],[false,{\".fa-arrows-up-down-left-right:before\":false,\".fa-arrows:before\":false},[\"content:\\\"\\uf047\\\"\"]],[false,{\".fa-arrows-up-to-line:before\":false},[\"content:\\\"\\ue4c2\\\"\"]],[false,{\".fa-asterisk:before\":false},[\"content:\\\"*\\\"\"]],[false,{\".fa-at:before\":false},[\"content:\\\"@\\\"\"]],[false,{\".fa-atom:before\":false},[\"content:\\\"\\uf5d2\\\"\"]],[false,{\".fa-audio-description:before\":false},[\"content:\\\"\\uf29e\\\"\"]],[false,{\".fa-austral-sign:before\":false},[\"content:\\\"\\ue0a9\\\"\"]],[false,{\".fa-award:before\":false},[\"content:\\\"\\uf559\\\"\"]],[false,{\".fa-b:before\":false},[\"content:\\\"B\\\"\"]],[false,{\".fa-baby:before\":false},[\"content:\\\"\\uf77c\\\"\"]],[false,{\".fa-baby-carriage:before\":false,\".fa-carriage-baby:before\":false},[\"content:\\\"\\uf77d\\\"\"]],[false,{\".fa-backward:before\":false},[\"content:\\\"\\uf04a\\\"\"]],[false,{\".fa-backward-fast:before\":false,\".fa-fast-backward:before\":false},[\"content:\\\"\\uf049\\\"\"]],[false,{\".fa-backward-step:before\":false,\".fa-step-backward:before\":false},[\"content:\\\"\\uf048\\\"\"]],[false,{\".fa-bacon:before\":false},[\"content:\\\"\\uf7e5\\\"\"]],[false,{\".fa-bacteria:before\":false},[\"content:\\\"\\ue059\\\"\"]],[false,{\".fa-bacterium:before\":false},[\"content:\\\"\\ue05a\\\"\"]],[false,{\".fa-bag-shopping:before\":false,\".fa-shopping-bag:before\":false},[\"content:\\\"\\uf290\\\"\"]],[false,{\".fa-bahai:before\":false},[\"content:\\\"\\uf666\\\"\"]],[false,{\".fa-baht-sign:before\":false},[\"content:\\\"\\ue0ac\\\"\"]],[false,{\".fa-ban:before\":false,\".fa-cancel:before\":false},[\"content:\\\"\\uf05e\\\"\"]],[false,{\".fa-ban-smoking:before\":false,\".fa-smoking-ban:before\":false},[\"content:\\\"\\uf54d\\\"\"]],[false,{\".fa-band-aid:before\":false,\".fa-bandage:before\":false},[\"content:\\\"\\uf462\\\"\"]],[false,{\".fa-barcode:before\":false},[\"content:\\\"\\uf02a\\\"\"]],[false,{\".fa-bars:before\":false,\".fa-navicon:before\":false},[\"content:\\\"\\uf0c9\\\"\"]],[false,{\".fa-bars-progress:before\":false,\".fa-tasks-alt:before\":false},[\"content:\\\"\\uf828\\\"\"]],[false,{\".fa-bars-staggered:before\":false,\".fa-reorder:before\":false,\".fa-stream:before\":false},[\"content:\\\"\\uf550\\\"\"]],[false,{\".fa-baseball-ball:before\":false,\".fa-baseball:before\":false},[\"content:\\\"\\uf433\\\"\"]],[false,{\".fa-baseball-bat-ball:before\":false},[\"content:\\\"\\uf432\\\"\"]],[false,{\".fa-basket-shopping:before\":false,\".fa-shopping-basket:before\":false},[\"content:\\\"\\uf291\\\"\"]],[false,{\".fa-basketball-ball:before\":false,\".fa-basketball:before\":false},[\"content:\\\"\\uf434\\\"\"]],[false,{\".fa-bath:before\":false,\".fa-bathtub:before\":false},[\"content:\\\"\\uf2cd\\\"\"]],[false,{\".fa-battery-0:before\":false,\".fa-battery-empty:before\":false},[\"content:\\\"\\uf244\\\"\"]],[false,{\".fa-battery-5:before\":false,\".fa-battery-full:before\":false,\".fa-battery:before\":false},[\"content:\\\"\\uf240\\\"\"]],[false,{\".fa-battery-3:before\":false,\".fa-battery-half:before\":false},[\"content:\\\"\\uf242\\\"\"]],[false,{\".fa-battery-2:before\":false,\".fa-battery-quarter:before\":false},[\"content:\\\"\\uf243\\\"\"]],[false,{\".fa-battery-4:before\":false,\".fa-battery-three-quarters:before\":false},[\"content:\\\"\\uf241\\\"\"]],[false,{\".fa-bed:before\":false},[\"content:\\\"\\uf236\\\"\"]],[false,{\".fa-bed-pulse:before\":false,\".fa-procedures:before\":false},[\"content:\\\"\\uf487\\\"\"]],[false,{\".fa-beer-mug-empty:before\":false,\".fa-beer:before\":false},[\"content:\\\"\\uf0fc\\\"\"]],[false,{\".fa-bell:before\":false},[\"content:\\\"\\uf0f3\\\"\"]],[false,{\".fa-bell-concierge:before\":false,\".fa-concierge-bell:before\":false},[\"content:\\\"\\uf562\\\"\"]],[false,{\".fa-bell-slash:before\":false},[\"content:\\\"\\uf1f6\\\"\"]],[false,{\".fa-bezier-curve:before\":false},[\"content:\\\"\\uf55b\\\"\"]],[false,{\".fa-bicycle:before\":false},[\"content:\\\"\\uf206\\\"\"]],[false,{\".fa-binoculars:before\":false},[\"content:\\\"\\uf1e5\\\"\"]],[false,{\".fa-biohazard:before\":false},[\"content:\\\"\\uf780\\\"\"]],[false,{\".fa-bitcoin-sign:before\":false},[\"content:\\\"\\ue0b4\\\"\"]],[false,{\".fa-blender:before\":false},[\"content:\\\"\\uf517\\\"\"]],[false,{\".fa-blender-phone:before\":false},[\"content:\\\"\\uf6b6\\\"\"]],[false,{\".fa-blog:before\":false},[\"content:\\\"\\uf781\\\"\"]],[false,{\".fa-bold:before\":false},[\"content:\\\"\\uf032\\\"\"]],[false,{\".fa-bolt:before\":false,\".fa-zap:before\":false},[\"content:\\\"\\uf0e7\\\"\"]],[false,{\".fa-bolt-lightning:before\":false},[\"content:\\\"\\ue0b7\\\"\"]],[false,{\".fa-bomb:before\":false},[\"content:\\\"\\uf1e2\\\"\"]],[false,{\".fa-bone:before\":false},[\"content:\\\"\\uf5d7\\\"\"]],[false,{\".fa-bong:before\":false},[\"content:\\\"\\uf55c\\\"\"]],[false,{\".fa-book:before\":false},[\"content:\\\"\\uf02d\\\"\"]],[false,{\".fa-atlas:before\":false,\".fa-book-atlas:before\":false},[\"content:\\\"\\uf558\\\"\"]],[false,{\".fa-bible:before\":false,\".fa-book-bible:before\":false},[\"content:\\\"\\uf647\\\"\"]],[false,{\".fa-book-bookmark:before\":false},[\"content:\\\"\\ue0bb\\\"\"]],[false,{\".fa-book-journal-whills:before\":false,\".fa-journal-whills:before\":false},[\"content:\\\"\\uf66a\\\"\"]],[false,{\".fa-book-medical:before\":false},[\"content:\\\"\\uf7e6\\\"\"]],[false,{\".fa-book-open:before\":false},[\"content:\\\"\\uf518\\\"\"]],[false,{\".fa-book-open-reader:before\":false,\".fa-book-reader:before\":false},[\"content:\\\"\\uf5da\\\"\"]],[false,{\".fa-book-quran:before\":false,\".fa-quran:before\":false},[\"content:\\\"\\uf687\\\"\"]],[false,{\".fa-book-dead:before\":false,\".fa-book-skull:before\":false},[\"content:\\\"\\uf6b7\\\"\"]],[false,{\".fa-bookmark:before\":false},[\"content:\\\"\\uf02e\\\"\"]],[false,{\".fa-border-all:before\":false},[\"content:\\\"\\uf84c\\\"\"]],[false,{\".fa-border-none:before\":false},[\"content:\\\"\\uf850\\\"\"]],[false,{\".fa-border-style:before\":false,\".fa-border-top-left:before\":false},[\"content:\\\"\\uf853\\\"\"]],[false,{\".fa-bore-hole:before\":false},[\"content:\\\"\\ue4c3\\\"\"]],[false,{\".fa-bottle-droplet:before\":false},[\"content:\\\"\\ue4c4\\\"\"]],[false,{\".fa-bottle-water:before\":false},[\"content:\\\"\\ue4c5\\\"\"]],[false,{\".fa-bowl-food:before\":false},[\"content:\\\"\\ue4c6\\\"\"]],[false,{\".fa-bowl-rice:before\":false},[\"content:\\\"\\ue2eb\\\"\"]],[false,{\".fa-bowling-ball:before\":false},[\"content:\\\"\\uf436\\\"\"]],[false,{\".fa-box:before\":false},[\"content:\\\"\\uf466\\\"\"]],[false,{\".fa-archive:before\":false,\".fa-box-archive:before\":false},[\"content:\\\"\\uf187\\\"\"]],[false,{\".fa-box-open:before\":false},[\"content:\\\"\\uf49e\\\"\"]],[false,{\".fa-box-tissue:before\":false},[\"content:\\\"\\ue05b\\\"\"]],[false,{\".fa-boxes-packing:before\":false},[\"content:\\\"\\ue4c7\\\"\"]],[false,{\".fa-boxes-alt:before\":false,\".fa-boxes-stacked:before\":false,\".fa-boxes:before\":false},[\"content:\\\"\\uf468\\\"\"]],[false,{\".fa-braille:before\":false},[\"content:\\\"\\uf2a1\\\"\"]],[false,{\".fa-brain:before\":false},[\"content:\\\"\\uf5dc\\\"\"]],[false,{\".fa-brazilian-real-sign:before\":false},[\"content:\\\"\\ue46c\\\"\"]],[false,{\".fa-bread-slice:before\":false},[\"content:\\\"\\uf7ec\\\"\"]],[false,{\".fa-bridge:before\":false},[\"content:\\\"\\ue4c8\\\"\"]],[false,{\".fa-bridge-circle-check:before\":false},[\"content:\\\"\\ue4c9\\\"\"]],[false,{\".fa-bridge-circle-exclamation:before\":false},[\"content:\\\"\\ue4ca\\\"\"]],[false,{\".fa-bridge-circle-xmark:before\":false},[\"content:\\\"\\ue4cb\\\"\"]],[false,{\".fa-bridge-lock:before\":false},[\"content:\\\"\\ue4cc\\\"\"]],[false,{\".fa-bridge-water:before\":false},[\"content:\\\"\\ue4ce\\\"\"]],[false,{\".fa-briefcase:before\":false},[\"content:\\\"\\uf0b1\\\"\"]],[false,{\".fa-briefcase-medical:before\":false},[\"content:\\\"\\uf469\\\"\"]],[false,{\".fa-broom:before\":false},[\"content:\\\"\\uf51a\\\"\"]],[false,{\".fa-broom-ball:before\":false,\".fa-quidditch-broom-ball:before\":false,\".fa-quidditch:before\":false},[\"content:\\\"\\uf458\\\"\"]],[false,{\".fa-brush:before\":false},[\"content:\\\"\\uf55d\\\"\"]],[false,{\".fa-bucket:before\":false},[\"content:\\\"\\ue4cf\\\"\"]],[false,{\".fa-bug:before\":false},[\"content:\\\"\\uf188\\\"\"]],[false,{\".fa-bug-slash:before\":false},[\"content:\\\"\\ue490\\\"\"]],[false,{\".fa-bugs:before\":false},[\"content:\\\"\\ue4d0\\\"\"]],[false,{\".fa-building:before\":false},[\"content:\\\"\\uf1ad\\\"\"]],[false,{\".fa-building-circle-arrow-right:before\":false},[\"content:\\\"\\ue4d1\\\"\"]],[false,{\".fa-building-circle-check:before\":false},[\"content:\\\"\\ue4d2\\\"\"]],[false,{\".fa-building-circle-exclamation:before\":false},[\"content:\\\"\\ue4d3\\\"\"]],[false,{\".fa-building-circle-xmark:before\":false},[\"content:\\\"\\ue4d4\\\"\"]],[false,{\".fa-bank:before\":false,\".fa-building-columns:before\":false,\".fa-institution:before\":false,\".fa-museum:before\":false,\".fa-university:before\":false},[\"content:\\\"\\uf19c\\\"\"]],[false,{\".fa-building-flag:before\":false},[\"content:\\\"\\ue4d5\\\"\"]],[false,{\".fa-building-lock:before\":false},[\"content:\\\"\\ue4d6\\\"\"]],[false,{\".fa-building-ngo:before\":false},[\"content:\\\"\\ue4d7\\\"\"]],[false,{\".fa-building-shield:before\":false},[\"content:\\\"\\ue4d8\\\"\"]],[false,{\".fa-building-un:before\":false},[\"content:\\\"\\ue4d9\\\"\"]],[false,{\".fa-building-user:before\":false},[\"content:\\\"\\ue4da\\\"\"]],[false,{\".fa-building-wheat:before\":false},[\"content:\\\"\\ue4db\\\"\"]],[false,{\".fa-bullhorn:before\":false},[\"content:\\\"\\uf0a1\\\"\"]],[false,{\".fa-bullseye:before\":false},[\"content:\\\"\\uf140\\\"\"]],[false,{\".fa-burger:before\":false,\".fa-hamburger:before\":false},[\"content:\\\"\\uf805\\\"\"]],[false,{\".fa-burst:before\":false},[\"content:\\\"\\ue4dc\\\"\"]],[false,{\".fa-bus:before\":false},[\"content:\\\"\\uf207\\\"\"]],[false,{\".fa-bus-alt:before\":false,\".fa-bus-simple:before\":false},[\"content:\\\"\\uf55e\\\"\"]],[false,{\".fa-briefcase-clock:before\":false,\".fa-business-time:before\":false},[\"content:\\\"\\uf64a\\\"\"]],[false,{\".fa-c:before\":false},[\"content:\\\"C\\\"\"]],[false,{\".fa-birthday-cake:before\":false,\".fa-cake-candles:before\":false,\".fa-cake:before\":false},[\"content:\\\"\\uf1fd\\\"\"]],[false,{\".fa-calculator:before\":false},[\"content:\\\"\\uf1ec\\\"\"]],[false,{\".fa-calendar:before\":false},[\"content:\\\"\\uf133\\\"\"]],[false,{\".fa-calendar-check:before\":false},[\"content:\\\"\\uf274\\\"\"]],[false,{\".fa-calendar-day:before\":false},[\"content:\\\"\\uf783\\\"\"]],[false,{\".fa-calendar-alt:before\":false,\".fa-calendar-days:before\":false},[\"content:\\\"\\uf073\\\"\"]],[false,{\".fa-calendar-minus:before\":false},[\"content:\\\"\\uf272\\\"\"]],[false,{\".fa-calendar-plus:before\":false},[\"content:\\\"\\uf271\\\"\"]],[false,{\".fa-calendar-week:before\":false},[\"content:\\\"\\uf784\\\"\"]],[false,{\".fa-calendar-times:before\":false,\".fa-calendar-xmark:before\":false},[\"content:\\\"\\uf273\\\"\"]],[false,{\".fa-camera-alt:before\":false,\".fa-camera:before\":false},[\"content:\\\"\\uf030\\\"\"]],[false,{\".fa-camera-retro:before\":false},[\"content:\\\"\\uf083\\\"\"]],[false,{\".fa-camera-rotate:before\":false},[\"content:\\\"\\ue0d8\\\"\"]],[false,{\".fa-campground:before\":false},[\"content:\\\"\\uf6bb\\\"\"]],[false,{\".fa-candy-cane:before\":false},[\"content:\\\"\\uf786\\\"\"]],[false,{\".fa-cannabis:before\":false},[\"content:\\\"\\uf55f\\\"\"]],[false,{\".fa-capsules:before\":false},[\"content:\\\"\\uf46b\\\"\"]],[false,{\".fa-automobile:before\":false,\".fa-car:before\":false},[\"content:\\\"\\uf1b9\\\"\"]],[false,{\".fa-battery-car:before\":false,\".fa-car-battery:before\":false},[\"content:\\\"\\uf5df\\\"\"]],[false,{\".fa-car-burst:before\":false,\".fa-car-crash:before\":false},[\"content:\\\"\\uf5e1\\\"\"]],[false,{\".fa-car-on:before\":false},[\"content:\\\"\\ue4dd\\\"\"]],[false,{\".fa-car-alt:before\":false,\".fa-car-rear:before\":false},[\"content:\\\"\\uf5de\\\"\"]],[false,{\".fa-car-side:before\":false},[\"content:\\\"\\uf5e4\\\"\"]],[false,{\".fa-car-tunnel:before\":false},[\"content:\\\"\\ue4de\\\"\"]],[false,{\".fa-caravan:before\":false},[\"content:\\\"\\uf8ff\\\"\"]],[false,{\".fa-caret-down:before\":false},[\"content:\\\"\\uf0d7\\\"\"]],[false,{\".fa-caret-left:before\":false},[\"content:\\\"\\uf0d9\\\"\"]],[false,{\".fa-caret-right:before\":false},[\"content:\\\"\\uf0da\\\"\"]],[false,{\".fa-caret-up:before\":false},[\"content:\\\"\\uf0d8\\\"\"]],[false,{\".fa-carrot:before\":false},[\"content:\\\"\\uf787\\\"\"]],[false,{\".fa-cart-arrow-down:before\":false},[\"content:\\\"\\uf218\\\"\"]],[false,{\".fa-cart-flatbed:before\":false,\".fa-dolly-flatbed:before\":false},[\"content:\\\"\\uf474\\\"\"]],[false,{\".fa-cart-flatbed-suitcase:before\":false,\".fa-luggage-cart:before\":false},[\"content:\\\"\\uf59d\\\"\"]],[false,{\".fa-cart-plus:before\":false},[\"content:\\\"\\uf217\\\"\"]],[false,{\".fa-cart-shopping:before\":false,\".fa-shopping-cart:before\":false},[\"content:\\\"\\uf07a\\\"\"]],[false,{\".fa-cash-register:before\":false},[\"content:\\\"\\uf788\\\"\"]],[false,{\".fa-cat:before\":false},[\"content:\\\"\\uf6be\\\"\"]],[false,{\".fa-cedi-sign:before\":false},[\"content:\\\"\\ue0df\\\"\"]],[false,{\".fa-cent-sign:before\":false},[\"content:\\\"\\ue3f5\\\"\"]],[false,{\".fa-certificate:before\":false},[\"content:\\\"\\uf0a3\\\"\"]],[false,{\".fa-chair:before\":false},[\"content:\\\"\\uf6c0\\\"\"]],[false,{\".fa-blackboard:before\":false,\".fa-chalkboard:before\":false},[\"content:\\\"\\uf51b\\\"\"]],[false,{\".fa-chalkboard-teacher:before\":false,\".fa-chalkboard-user:before\":false},[\"content:\\\"\\uf51c\\\"\"]],[false,{\".fa-champagne-glasses:before\":false,\".fa-glass-cheers:before\":false},[\"content:\\\"\\uf79f\\\"\"]],[false,{\".fa-charging-station:before\":false},[\"content:\\\"\\uf5e7\\\"\"]],[false,{\".fa-area-chart:before\":false,\".fa-chart-area:before\":false},[\"content:\\\"\\uf1fe\\\"\"]],[false,{\".fa-bar-chart:before\":false,\".fa-chart-bar:before\":false},[\"content:\\\"\\uf080\\\"\"]],[false,{\".fa-chart-column:before\":false},[\"content:\\\"\\ue0e3\\\"\"]],[false,{\".fa-chart-gantt:before\":false},[\"content:\\\"\\ue0e4\\\"\"]],[false,{\".fa-chart-line:before\":false,\".fa-line-chart:before\":false},[\"content:\\\"\\uf201\\\"\"]],[false,{\".fa-chart-pie:before\":false,\".fa-pie-chart:before\":false},[\"content:\\\"\\uf200\\\"\"]],[false,{\".fa-chart-simple:before\":false},[\"content:\\\"\\ue473\\\"\"]],[false,{\".fa-check:before\":false},[\"content:\\\"\\uf00c\\\"\"]],[false,{\".fa-check-double:before\":false},[\"content:\\\"\\uf560\\\"\"]],[false,{\".fa-check-to-slot:before\":false,\".fa-vote-yea:before\":false},[\"content:\\\"\\uf772\\\"\"]],[false,{\".fa-cheese:before\":false},[\"content:\\\"\\uf7ef\\\"\"]],[false,{\".fa-chess:before\":false},[\"content:\\\"\\uf439\\\"\"]],[false,{\".fa-chess-bishop:before\":false},[\"content:\\\"\\uf43a\\\"\"]],[false,{\".fa-chess-board:before\":false},[\"content:\\\"\\uf43c\\\"\"]],[false,{\".fa-chess-king:before\":false},[\"content:\\\"\\uf43f\\\"\"]],[false,{\".fa-chess-knight:before\":false},[\"content:\\\"\\uf441\\\"\"]],[false,{\".fa-chess-pawn:before\":false},[\"content:\\\"\\uf443\\\"\"]],[false,{\".fa-chess-queen:before\":false},[\"content:\\\"\\uf445\\\"\"]],[false,{\".fa-chess-rook:before\":false},[\"content:\\\"\\uf447\\\"\"]],[false,{\".fa-chevron-down:before\":false},[\"content:\\\"\\uf078\\\"\"]],[false,{\".fa-chevron-left:before\":false},[\"content:\\\"\\uf053\\\"\"]],[false,{\".fa-chevron-right:before\":false},[\"content:\\\"\\uf054\\\"\"]],[false,{\".fa-chevron-up:before\":false},[\"content:\\\"\\uf077\\\"\"]],[false,{\".fa-child:before\":false},[\"content:\\\"\\uf1ae\\\"\"]],[false,{\".fa-child-rifle:before\":false},[\"content:\\\"\\ue4e0\\\"\"]],[false,{\".fa-children:before\":false},[\"content:\\\"\\ue4e1\\\"\"]],[false,{\".fa-church:before\":false},[\"content:\\\"\\uf51d\\\"\"]],[false,{\".fa-circle:before\":false},[\"content:\\\"\\uf111\\\"\"]],[false,{\".fa-arrow-circle-down:before\":false,\".fa-circle-arrow-down:before\":false},[\"content:\\\"\\uf0ab\\\"\"]],[false,{\".fa-arrow-circle-left:before\":false,\".fa-circle-arrow-left:before\":false},[\"content:\\\"\\uf0a8\\\"\"]],[false,{\".fa-arrow-circle-right:before\":false,\".fa-circle-arrow-right:before\":false},[\"content:\\\"\\uf0a9\\\"\"]],[false,{\".fa-arrow-circle-up:before\":false,\".fa-circle-arrow-up:before\":false},[\"content:\\\"\\uf0aa\\\"\"]],[false,{\".fa-check-circle:before\":false,\".fa-circle-check:before\":false},[\"content:\\\"\\uf058\\\"\"]],[false,{\".fa-chevron-circle-down:before\":false,\".fa-circle-chevron-down:before\":false},[\"content:\\\"\\uf13a\\\"\"]],[false,{\".fa-chevron-circle-left:before\":false,\".fa-circle-chevron-left:before\":false},[\"content:\\\"\\uf137\\\"\"]],[false,{\".fa-chevron-circle-right:before\":false,\".fa-circle-chevron-right:before\":false},[\"content:\\\"\\uf138\\\"\"]],[false,{\".fa-chevron-circle-up:before\":false,\".fa-circle-chevron-up:before\":false},[\"content:\\\"\\uf139\\\"\"]],[false,{\".fa-circle-dollar-to-slot:before\":false,\".fa-donate:before\":false},[\"content:\\\"\\uf4b9\\\"\"]],[false,{\".fa-circle-dot:before\":false,\".fa-dot-circle:before\":false},[\"content:\\\"\\uf192\\\"\"]],[false,{\".fa-arrow-alt-circle-down:before\":false,\".fa-circle-down:before\":false},[\"content:\\\"\\uf358\\\"\"]],[false,{\".fa-circle-exclamation:before\":false,\".fa-exclamation-circle:before\":false},[\"content:\\\"\\uf06a\\\"\"]],[false,{\".fa-circle-h:before\":false,\".fa-hospital-symbol:before\":false},[\"content:\\\"\\uf47e\\\"\"]],[false,{\".fa-adjust:before\":false,\".fa-circle-half-stroke:before\":false},[\"content:\\\"\\uf042\\\"\"]],[false,{\".fa-circle-info:before\":false,\".fa-info-circle:before\":false},[\"content:\\\"\\uf05a\\\"\"]],[false,{\".fa-arrow-alt-circle-left:before\":false,\".fa-circle-left:before\":false},[\"content:\\\"\\uf359\\\"\"]],[false,{\".fa-circle-minus:before\":false,\".fa-minus-circle:before\":false},[\"content:\\\"\\uf056\\\"\"]],[false,{\".fa-circle-nodes:before\":false},[\"content:\\\"\\ue4e2\\\"\"]],[false,{\".fa-circle-notch:before\":false},[\"content:\\\"\\uf1ce\\\"\"]],[false,{\".fa-circle-pause:before\":false,\".fa-pause-circle:before\":false},[\"content:\\\"\\uf28b\\\"\"]],[false,{\".fa-circle-play:before\":false,\".fa-play-circle:before\":false},[\"content:\\\"\\uf144\\\"\"]],[false,{\".fa-circle-plus:before\":false,\".fa-plus-circle:before\":false},[\"content:\\\"\\uf055\\\"\"]],[false,{\".fa-circle-question:before\":false,\".fa-question-circle:before\":false},[\"content:\\\"\\uf059\\\"\"]],[false,{\".fa-circle-radiation:before\":false,\".fa-radiation-alt:before\":false},[\"content:\\\"\\uf7ba\\\"\"]],[false,{\".fa-arrow-alt-circle-right:before\":false,\".fa-circle-right:before\":false},[\"content:\\\"\\uf35a\\\"\"]],[false,{\".fa-circle-stop:before\":false,\".fa-stop-circle:before\":false},[\"content:\\\"\\uf28d\\\"\"]],[false,{\".fa-arrow-alt-circle-up:before\":false,\".fa-circle-up:before\":false},[\"content:\\\"\\uf35b\\\"\"]],[false,{\".fa-circle-user:before\":false,\".fa-user-circle:before\":false},[\"content:\\\"\\uf2bd\\\"\"]],[false,{\".fa-circle-xmark:before\":false,\".fa-times-circle:before\":false,\".fa-xmark-circle:before\":false},[\"content:\\\"\\uf057\\\"\"]],[false,{\".fa-city:before\":false},[\"content:\\\"\\uf64f\\\"\"]],[false,{\".fa-clapperboard:before\":false},[\"content:\\\"\\ue131\\\"\"]],[false,{\".fa-clipboard:before\":false},[\"content:\\\"\\uf328\\\"\"]],[false,{\".fa-clipboard-check:before\":false},[\"content:\\\"\\uf46c\\\"\"]],[false,{\".fa-clipboard-list:before\":false},[\"content:\\\"\\uf46d\\\"\"]],[false,{\".fa-clipboard-question:before\":false},[\"content:\\\"\\ue4e3\\\"\"]],[false,{\".fa-clipboard-user:before\":false},[\"content:\\\"\\uf7f3\\\"\"]],[false,{\".fa-clock-four:before\":false,\".fa-clock:before\":false},[\"content:\\\"\\uf017\\\"\"]],[false,{\".fa-clock-rotate-left:before\":false,\".fa-history:before\":false},[\"content:\\\"\\uf1da\\\"\"]],[false,{\".fa-clone:before\":false},[\"content:\\\"\\uf24d\\\"\"]],[false,{\".fa-closed-captioning:before\":false},[\"content:\\\"\\uf20a\\\"\"]],[false,{\".fa-cloud:before\":false},[\"content:\\\"\\uf0c2\\\"\"]],[false,{\".fa-cloud-arrow-down:before\":false,\".fa-cloud-download-alt:before\":false,\".fa-cloud-download:before\":false},[\"content:\\\"\\uf0ed\\\"\"]],[false,{\".fa-cloud-arrow-up:before\":false,\".fa-cloud-upload-alt:before\":false,\".fa-cloud-upload:before\":false},[\"content:\\\"\\uf0ee\\\"\"]],[false,{\".fa-cloud-bolt:before\":false,\".fa-thunderstorm:before\":false},[\"content:\\\"\\uf76c\\\"\"]],[false,{\".fa-cloud-meatball:before\":false},[\"content:\\\"\\uf73b\\\"\"]],[false,{\".fa-cloud-moon:before\":false},[\"content:\\\"\\uf6c3\\\"\"]],[false,{\".fa-cloud-moon-rain:before\":false},[\"content:\\\"\\uf73c\\\"\"]],[false,{\".fa-cloud-rain:before\":false},[\"content:\\\"\\uf73d\\\"\"]],[false,{\".fa-cloud-showers-heavy:before\":false},[\"content:\\\"\\uf740\\\"\"]],[false,{\".fa-cloud-showers-water:before\":false},[\"content:\\\"\\ue4e4\\\"\"]],[false,{\".fa-cloud-sun:before\":false},[\"content:\\\"\\uf6c4\\\"\"]],[false,{\".fa-cloud-sun-rain:before\":false},[\"content:\\\"\\uf743\\\"\"]],[false,{\".fa-clover:before\":false},[\"content:\\\"\\ue139\\\"\"]],[false,{\".fa-code:before\":false},[\"content:\\\"\\uf121\\\"\"]],[false,{\".fa-code-branch:before\":false},[\"content:\\\"\\uf126\\\"\"]],[false,{\".fa-code-commit:before\":false},[\"content:\\\"\\uf386\\\"\"]],[false,{\".fa-code-compare:before\":false},[\"content:\\\"\\ue13a\\\"\"]],[false,{\".fa-code-fork:before\":false},[\"content:\\\"\\ue13b\\\"\"]],[false,{\".fa-code-merge:before\":false},[\"content:\\\"\\uf387\\\"\"]],[false,{\".fa-code-pull-request:before\":false},[\"content:\\\"\\ue13c\\\"\"]],[false,{\".fa-coins:before\":false},[\"content:\\\"\\uf51e\\\"\"]],[false,{\".fa-colon-sign:before\":false},[\"content:\\\"\\ue140\\\"\"]],[false,{\".fa-comment:before\":false},[\"content:\\\"\\uf075\\\"\"]],[false,{\".fa-comment-dollar:before\":false},[\"content:\\\"\\uf651\\\"\"]],[false,{\".fa-comment-dots:before\":false,\".fa-commenting:before\":false},[\"content:\\\"\\uf4ad\\\"\"]],[false,{\".fa-comment-medical:before\":false},[\"content:\\\"\\uf7f5\\\"\"]],[false,{\".fa-comment-slash:before\":false},[\"content:\\\"\\uf4b3\\\"\"]],[false,{\".fa-comment-sms:before\":false,\".fa-sms:before\":false},[\"content:\\\"\\uf7cd\\\"\"]],[false,{\".fa-comments:before\":false},[\"content:\\\"\\uf086\\\"\"]],[false,{\".fa-comments-dollar:before\":false},[\"content:\\\"\\uf653\\\"\"]],[false,{\".fa-compact-disc:before\":false},[\"content:\\\"\\uf51f\\\"\"]],[false,{\".fa-compass:before\":false},[\"content:\\\"\\uf14e\\\"\"]],[false,{\".fa-compass-drafting:before\":false,\".fa-drafting-compass:before\":false},[\"content:\\\"\\uf568\\\"\"]],[false,{\".fa-compress:before\":false},[\"content:\\\"\\uf066\\\"\"]],[false,{\".fa-computer:before\":false},[\"content:\\\"\\ue4e5\\\"\"]],[false,{\".fa-computer-mouse:before\":false,\".fa-mouse:before\":false},[\"content:\\\"\\uf8cc\\\"\"]],[false,{\".fa-cookie:before\":false},[\"content:\\\"\\uf563\\\"\"]],[false,{\".fa-cookie-bite:before\":false},[\"content:\\\"\\uf564\\\"\"]],[false,{\".fa-copy:before\":false},[\"content:\\\"\\uf0c5\\\"\"]],[false,{\".fa-copyright:before\":false},[\"content:\\\"\\uf1f9\\\"\"]],[false,{\".fa-couch:before\":false},[\"content:\\\"\\uf4b8\\\"\"]],[false,{\".fa-cow:before\":false},[\"content:\\\"\\uf6c8\\\"\"]],[false,{\".fa-credit-card-alt:before\":false,\".fa-credit-card:before\":false},[\"content:\\\"\\uf09d\\\"\"]],[false,{\".fa-crop:before\":false},[\"content:\\\"\\uf125\\\"\"]],[false,{\".fa-crop-alt:before\":false,\".fa-crop-simple:before\":false},[\"content:\\\"\\uf565\\\"\"]],[false,{\".fa-cross:before\":false},[\"content:\\\"\\uf654\\\"\"]],[false,{\".fa-crosshairs:before\":false},[\"content:\\\"\\uf05b\\\"\"]],[false,{\".fa-crow:before\":false},[\"content:\\\"\\uf520\\\"\"]],[false,{\".fa-crown:before\":false},[\"content:\\\"\\uf521\\\"\"]],[false,{\".fa-crutch:before\":false},[\"content:\\\"\\uf7f7\\\"\"]],[false,{\".fa-cruzeiro-sign:before\":false},[\"content:\\\"\\ue152\\\"\"]],[false,{\".fa-cube:before\":false},[\"content:\\\"\\uf1b2\\\"\"]],[false,{\".fa-cubes:before\":false},[\"content:\\\"\\uf1b3\\\"\"]],[false,{\".fa-cubes-stacked:before\":false},[\"content:\\\"\\ue4e6\\\"\"]],[false,{\".fa-d:before\":false},[\"content:\\\"D\\\"\"]],[false,{\".fa-database:before\":false},[\"content:\\\"\\uf1c0\\\"\"]],[false,{\".fa-backspace:before\":false,\".fa-delete-left:before\":false},[\"content:\\\"\\uf55a\\\"\"]],[false,{\".fa-democrat:before\":false},[\"content:\\\"\\uf747\\\"\"]],[false,{\".fa-desktop-alt:before\":false,\".fa-desktop:before\":false},[\"content:\\\"\\uf390\\\"\"]],[false,{\".fa-dharmachakra:before\":false},[\"content:\\\"\\uf655\\\"\"]],[false,{\".fa-diagram-next:before\":false},[\"content:\\\"\\ue476\\\"\"]],[false,{\".fa-diagram-predecessor:before\":false},[\"content:\\\"\\ue477\\\"\"]],[false,{\".fa-diagram-project:before\":false,\".fa-project-diagram:before\":false},[\"content:\\\"\\uf542\\\"\"]],[false,{\".fa-diagram-successor:before\":false},[\"content:\\\"\\ue47a\\\"\"]],[false,{\".fa-diamond:before\":false},[\"content:\\\"\\uf219\\\"\"]],[false,{\".fa-diamond-turn-right:before\":false,\".fa-directions:before\":false},[\"content:\\\"\\uf5eb\\\"\"]],[false,{\".fa-dice:before\":false},[\"content:\\\"\\uf522\\\"\"]],[false,{\".fa-dice-d20:before\":false},[\"content:\\\"\\uf6cf\\\"\"]],[false,{\".fa-dice-d6:before\":false},[\"content:\\\"\\uf6d1\\\"\"]],[false,{\".fa-dice-five:before\":false},[\"content:\\\"\\uf523\\\"\"]],[false,{\".fa-dice-four:before\":false},[\"content:\\\"\\uf524\\\"\"]],[false,{\".fa-dice-one:before\":false},[\"content:\\\"\\uf525\\\"\"]],[false,{\".fa-dice-six:before\":false},[\"content:\\\"\\uf526\\\"\"]],[false,{\".fa-dice-three:before\":false},[\"content:\\\"\\uf527\\\"\"]],[false,{\".fa-dice-two:before\":false},[\"content:\\\"\\uf528\\\"\"]],[false,{\".fa-disease:before\":false},[\"content:\\\"\\uf7fa\\\"\"]],[false,{\".fa-display:before\":false},[\"content:\\\"\\ue163\\\"\"]],[false,{\".fa-divide:before\":false},[\"content:\\\"\\uf529\\\"\"]],[false,{\".fa-dna:before\":false},[\"content:\\\"\\uf471\\\"\"]],[false,{\".fa-dog:before\":false},[\"content:\\\"\\uf6d3\\\"\"]],[false,{\".fa-dollar-sign:before\":false,\".fa-dollar:before\":false,\".fa-usd:before\":false},[\"content:\\\"$\\\"\"]],[false,{\".fa-dolly-box:before\":false,\".fa-dolly:before\":false},[\"content:\\\"\\uf472\\\"\"]],[false,{\".fa-dong-sign:before\":false},[\"content:\\\"\\ue169\\\"\"]],[false,{\".fa-door-closed:before\":false},[\"content:\\\"\\uf52a\\\"\"]],[false,{\".fa-door-open:before\":false},[\"content:\\\"\\uf52b\\\"\"]],[false,{\".fa-dove:before\":false},[\"content:\\\"\\uf4ba\\\"\"]],[false,{\".fa-compress-alt:before\":false,\".fa-down-left-and-up-right-to-center:before\":false},[\"content:\\\"\\uf422\\\"\"]],[false,{\".fa-down-long:before\":false,\".fa-long-arrow-alt-down:before\":false},[\"content:\\\"\\uf309\\\"\"]],[false,{\".fa-download:before\":false},[\"content:\\\"\\uf019\\\"\"]],[false,{\".fa-dragon:before\":false},[\"content:\\\"\\uf6d5\\\"\"]],[false,{\".fa-draw-polygon:before\":false},[\"content:\\\"\\uf5ee\\\"\"]],[false,{\".fa-droplet:before\":false,\".fa-tint:before\":false},[\"content:\\\"\\uf043\\\"\"]],[false,{\".fa-droplet-slash:before\":false,\".fa-tint-slash:before\":false},[\"content:\\\"\\uf5c7\\\"\"]],[false,{\".fa-drum:before\":false},[\"content:\\\"\\uf569\\\"\"]],[false,{\".fa-drum-steelpan:before\":false},[\"content:\\\"\\uf56a\\\"\"]],[false,{\".fa-drumstick-bite:before\":false},[\"content:\\\"\\uf6d7\\\"\"]],[false,{\".fa-dumbbell:before\":false},[\"content:\\\"\\uf44b\\\"\"]],[false,{\".fa-dumpster:before\":false},[\"content:\\\"\\uf793\\\"\"]],[false,{\".fa-dumpster-fire:before\":false},[\"content:\\\"\\uf794\\\"\"]],[false,{\".fa-dungeon:before\":false},[\"content:\\\"\\uf6d9\\\"\"]],[false,{\".fa-e:before\":false},[\"content:\\\"E\\\"\"]],[false,{\".fa-deaf:before\":false,\".fa-deafness:before\":false,\".fa-ear-deaf:before\":false,\".fa-hard-of-hearing:before\":false},[\"content:\\\"\\uf2a4\\\"\"]],[false,{\".fa-assistive-listening-systems:before\":false,\".fa-ear-listen:before\":false},[\"content:\\\"\\uf2a2\\\"\"]],[false,{\".fa-earth-africa:before\":false,\".fa-globe-africa:before\":false},[\"content:\\\"\\uf57c\\\"\"]],[false,{\".fa-earth-america:before\":false,\".fa-earth-americas:before\":false,\".fa-earth:before\":false,\".fa-globe-americas:before\":false},[\"content:\\\"\\uf57d\\\"\"]],[false,{\".fa-earth-asia:before\":false,\".fa-globe-asia:before\":false},[\"content:\\\"\\uf57e\\\"\"]],[false,{\".fa-earth-europe:before\":false,\".fa-globe-europe:before\":false},[\"content:\\\"\\uf7a2\\\"\"]],[false,{\".fa-earth-oceania:before\":false,\".fa-globe-oceania:before\":false},[\"content:\\\"\\ue47b\\\"\"]],[false,{\".fa-egg:before\":false},[\"content:\\\"\\uf7fb\\\"\"]],[false,{\".fa-eject:before\":false},[\"content:\\\"\\uf052\\\"\"]],[false,{\".fa-elevator:before\":false},[\"content:\\\"\\ue16d\\\"\"]],[false,{\".fa-ellipsis-h:before\":false,\".fa-ellipsis:before\":false},[\"content:\\\"\\uf141\\\"\"]],[false,{\".fa-ellipsis-v:before\":false,\".fa-ellipsis-vertical:before\":false},[\"content:\\\"\\uf142\\\"\"]],[false,{\".fa-envelope:before\":false},[\"content:\\\"\\uf0e0\\\"\"]],[false,{\".fa-envelope-circle-check:before\":false},[\"content:\\\"\\ue4e8\\\"\"]],[false,{\".fa-envelope-open:before\":false},[\"content:\\\"\\uf2b6\\\"\"]],[false,{\".fa-envelope-open-text:before\":false},[\"content:\\\"\\uf658\\\"\"]],[false,{\".fa-envelopes-bulk:before\":false,\".fa-mail-bulk:before\":false},[\"content:\\\"\\uf674\\\"\"]],[false,{\".fa-equals:before\":false},[\"content:\\\"=\\\"\"]],[false,{\".fa-eraser:before\":false},[\"content:\\\"\\uf12d\\\"\"]],[false,{\".fa-ethernet:before\":false},[\"content:\\\"\\uf796\\\"\"]],[false,{\".fa-eur:before\":false,\".fa-euro-sign:before\":false,\".fa-euro:before\":false},[\"content:\\\"\\uf153\\\"\"]],[false,{\".fa-exclamation:before\":false},[\"content:\\\"!\\\"\"]],[false,{\".fa-expand:before\":false},[\"content:\\\"\\uf065\\\"\"]],[false,{\".fa-explosion:before\":false},[\"content:\\\"\\ue4e9\\\"\"]],[false,{\".fa-eye:before\":false},[\"content:\\\"\\uf06e\\\"\"]],[false,{\".fa-eye-dropper-empty:before\":false,\".fa-eye-dropper:before\":false,\".fa-eyedropper:before\":false},[\"content:\\\"\\uf1fb\\\"\"]],[false,{\".fa-eye-low-vision:before\":false,\".fa-low-vision:before\":false},[\"content:\\\"\\uf2a8\\\"\"]],[false,{\".fa-eye-slash:before\":false},[\"content:\\\"\\uf070\\\"\"]],[false,{\".fa-f:before\":false},[\"content:\\\"F\\\"\"]],[false,{\".fa-angry:before\":false,\".fa-face-angry:before\":false},[\"content:\\\"\\uf556\\\"\"]],[false,{\".fa-dizzy:before\":false,\".fa-face-dizzy:before\":false},[\"content:\\\"\\uf567\\\"\"]],[false,{\".fa-face-flushed:before\":false,\".fa-flushed:before\":false},[\"content:\\\"\\uf579\\\"\"]],[false,{\".fa-face-frown:before\":false,\".fa-frown:before\":false},[\"content:\\\"\\uf119\\\"\"]],[false,{\".fa-face-frown-open:before\":false,\".fa-frown-open:before\":false},[\"content:\\\"\\uf57a\\\"\"]],[false,{\".fa-face-grimace:before\":false,\".fa-grimace:before\":false},[\"content:\\\"\\uf57f\\\"\"]],[false,{\".fa-face-grin:before\":false,\".fa-grin:before\":false},[\"content:\\\"\\uf580\\\"\"]],[false,{\".fa-face-grin-beam:before\":false,\".fa-grin-beam:before\":false},[\"content:\\\"\\uf582\\\"\"]],[false,{\".fa-face-grin-beam-sweat:before\":false,\".fa-grin-beam-sweat:before\":false},[\"content:\\\"\\uf583\\\"\"]],[false,{\".fa-face-grin-hearts:before\":false,\".fa-grin-hearts:before\":false},[\"content:\\\"\\uf584\\\"\"]],[false,{\".fa-face-grin-squint:before\":false,\".fa-grin-squint:before\":false},[\"content:\\\"\\uf585\\\"\"]],[false,{\".fa-face-grin-squint-tears:before\":false,\".fa-grin-squint-tears:before\":false},[\"content:\\\"\\uf586\\\"\"]],[false,{\".fa-face-grin-stars:before\":false,\".fa-grin-stars:before\":false},[\"content:\\\"\\uf587\\\"\"]],[false,{\".fa-face-grin-tears:before\":false,\".fa-grin-tears:before\":false},[\"content:\\\"\\uf588\\\"\"]],[false,{\".fa-face-grin-tongue:before\":false,\".fa-grin-tongue:before\":false},[\"content:\\\"\\uf589\\\"\"]],[false,{\".fa-face-grin-tongue-squint:before\":false,\".fa-grin-tongue-squint:before\":false},[\"content:\\\"\\uf58a\\\"\"]],[false,{\".fa-face-grin-tongue-wink:before\":false,\".fa-grin-tongue-wink:before\":false},[\"content:\\\"\\uf58b\\\"\"]],[false,{\".fa-face-grin-wide:before\":false,\".fa-grin-alt:before\":false},[\"content:\\\"\\uf581\\\"\"]],[false,{\".fa-face-grin-wink:before\":false,\".fa-grin-wink:before\":false},[\"content:\\\"\\uf58c\\\"\"]],[false,{\".fa-face-kiss:before\":false,\".fa-kiss:before\":false},[\"content:\\\"\\uf596\\\"\"]],[false,{\".fa-face-kiss-beam:before\":false,\".fa-kiss-beam:before\":false},[\"content:\\\"\\uf597\\\"\"]],[false,{\".fa-face-kiss-wink-heart:before\":false,\".fa-kiss-wink-heart:before\":false},[\"content:\\\"\\uf598\\\"\"]],[false,{\".fa-face-laugh:before\":false,\".fa-laugh:before\":false},[\"content:\\\"\\uf599\\\"\"]],[false,{\".fa-face-laugh-beam:before\":false,\".fa-laugh-beam:before\":false},[\"content:\\\"\\uf59a\\\"\"]],[false,{\".fa-face-laugh-squint:before\":false,\".fa-laugh-squint:before\":false},[\"content:\\\"\\uf59b\\\"\"]],[false,{\".fa-face-laugh-wink:before\":false,\".fa-laugh-wink:before\":false},[\"content:\\\"\\uf59c\\\"\"]],[false,{\".fa-face-meh:before\":false,\".fa-meh:before\":false},[\"content:\\\"\\uf11a\\\"\"]],[false,{\".fa-face-meh-blank:before\":false,\".fa-meh-blank:before\":false},[\"content:\\\"\\uf5a4\\\"\"]],[false,{\".fa-face-rolling-eyes:before\":false,\".fa-meh-rolling-eyes:before\":false},[\"content:\\\"\\uf5a5\\\"\"]],[false,{\".fa-face-sad-cry:before\":false,\".fa-sad-cry:before\":false},[\"content:\\\"\\uf5b3\\\"\"]],[false,{\".fa-face-sad-tear:before\":false,\".fa-sad-tear:before\":false},[\"content:\\\"\\uf5b4\\\"\"]],[false,{\".fa-face-smile:before\":false,\".fa-smile:before\":false},[\"content:\\\"\\uf118\\\"\"]],[false,{\".fa-face-smile-beam:before\":false,\".fa-smile-beam:before\":false},[\"content:\\\"\\uf5b8\\\"\"]],[false,{\".fa-face-smile-wink:before\":false,\".fa-smile-wink:before\":false},[\"content:\\\"\\uf4da\\\"\"]],[false,{\".fa-face-surprise:before\":false,\".fa-surprise:before\":false},[\"content:\\\"\\uf5c2\\\"\"]],[false,{\".fa-face-tired:before\":false,\".fa-tired:before\":false},[\"content:\\\"\\uf5c8\\\"\"]],[false,{\".fa-fan:before\":false},[\"content:\\\"\\uf863\\\"\"]],[false,{\".fa-faucet:before\":false},[\"content:\\\"\\ue005\\\"\"]],[false,{\".fa-faucet-drip:before\":false},[\"content:\\\"\\ue006\\\"\"]],[false,{\".fa-fax:before\":false},[\"content:\\\"\\uf1ac\\\"\"]],[false,{\".fa-feather:before\":false},[\"content:\\\"\\uf52d\\\"\"]],[false,{\".fa-feather-alt:before\":false,\".fa-feather-pointed:before\":false},[\"content:\\\"\\uf56b\\\"\"]],[false,{\".fa-ferry:before\":false},[\"content:\\\"\\ue4ea\\\"\"]],[false,{\".fa-file:before\":false},[\"content:\\\"\\uf15b\\\"\"]],[false,{\".fa-file-arrow-down:before\":false,\".fa-file-download:before\":false},[\"content:\\\"\\uf56d\\\"\"]],[false,{\".fa-file-arrow-up:before\":false,\".fa-file-upload:before\":false},[\"content:\\\"\\uf574\\\"\"]],[false,{\".fa-file-audio:before\":false},[\"content:\\\"\\uf1c7\\\"\"]],[false,{\".fa-file-circle-check:before\":false},[\"content:\\\"\\ue493\\\"\"]],[false,{\".fa-file-circle-exclamation:before\":false},[\"content:\\\"\\ue4eb\\\"\"]],[false,{\".fa-file-circle-minus:before\":false},[\"content:\\\"\\ue4ed\\\"\"]],[false,{\".fa-file-circle-plus:before\":false},[\"content:\\\"\\ue4ee\\\"\"]],[false,{\".fa-file-circle-question:before\":false},[\"content:\\\"\\ue4ef\\\"\"]],[false,{\".fa-file-circle-xmark:before\":false},[\"content:\\\"\\ue494\\\"\"]],[false,{\".fa-file-code:before\":false},[\"content:\\\"\\uf1c9\\\"\"]],[false,{\".fa-file-contract:before\":false},[\"content:\\\"\\uf56c\\\"\"]],[false,{\".fa-file-csv:before\":false},[\"content:\\\"\\uf6dd\\\"\"]],[false,{\".fa-file-excel:before\":false},[\"content:\\\"\\uf1c3\\\"\"]],[false,{\".fa-arrow-right-from-file:before\":false,\".fa-file-export:before\":false},[\"content:\\\"\\uf56e\\\"\"]],[false,{\".fa-file-image:before\":false},[\"content:\\\"\\uf1c5\\\"\"]],[false,{\".fa-arrow-right-to-file:before\":false,\".fa-file-import:before\":false},[\"content:\\\"\\uf56f\\\"\"]],[false,{\".fa-file-invoice:before\":false},[\"content:\\\"\\uf570\\\"\"]],[false,{\".fa-file-invoice-dollar:before\":false},[\"content:\\\"\\uf571\\\"\"]],[false,{\".fa-file-alt:before\":false,\".fa-file-lines:before\":false,\".fa-file-text:before\":false},[\"content:\\\"\\uf15c\\\"\"]],[false,{\".fa-file-medical:before\":false},[\"content:\\\"\\uf477\\\"\"]],[false,{\".fa-file-pdf:before\":false},[\"content:\\\"\\uf1c1\\\"\"]],[false,{\".fa-file-edit:before\":false,\".fa-file-pen:before\":false},[\"content:\\\"\\uf31c\\\"\"]],[false,{\".fa-file-powerpoint:before\":false},[\"content:\\\"\\uf1c4\\\"\"]],[false,{\".fa-file-prescription:before\":false},[\"content:\\\"\\uf572\\\"\"]],[false,{\".fa-file-shield:before\":false},[\"content:\\\"\\ue4f0\\\"\"]],[false,{\".fa-file-signature:before\":false},[\"content:\\\"\\uf573\\\"\"]],[false,{\".fa-file-video:before\":false},[\"content:\\\"\\uf1c8\\\"\"]],[false,{\".fa-file-medical-alt:before\":false,\".fa-file-waveform:before\":false},[\"content:\\\"\\uf478\\\"\"]],[false,{\".fa-file-word:before\":false},[\"content:\\\"\\uf1c2\\\"\"]],[false,{\".fa-file-archive:before\":false,\".fa-file-zipper:before\":false},[\"content:\\\"\\uf1c6\\\"\"]],[false,{\".fa-fill:before\":false},[\"content:\\\"\\uf575\\\"\"]],[false,{\".fa-fill-drip:before\":false},[\"content:\\\"\\uf576\\\"\"]],[false,{\".fa-film:before\":false},[\"content:\\\"\\uf008\\\"\"]],[false,{\".fa-filter:before\":false},[\"content:\\\"\\uf0b0\\\"\"]],[false,{\".fa-filter-circle-dollar:before\":false,\".fa-funnel-dollar:before\":false},[\"content:\\\"\\uf662\\\"\"]],[false,{\".fa-filter-circle-xmark:before\":false},[\"content:\\\"\\ue17b\\\"\"]],[false,{\".fa-fingerprint:before\":false},[\"content:\\\"\\uf577\\\"\"]],[false,{\".fa-fire:before\":false},[\"content:\\\"\\uf06d\\\"\"]],[false,{\".fa-fire-burner:before\":false},[\"content:\\\"\\ue4f1\\\"\"]],[false,{\".fa-fire-extinguisher:before\":false},[\"content:\\\"\\uf134\\\"\"]],[false,{\".fa-fire-alt:before\":false,\".fa-fire-flame-curved:before\":false},[\"content:\\\"\\uf7e4\\\"\"]],[false,{\".fa-burn:before\":false,\".fa-fire-flame-simple:before\":false},[\"content:\\\"\\uf46a\\\"\"]],[false,{\".fa-fish:before\":false},[\"content:\\\"\\uf578\\\"\"]],[false,{\".fa-fish-fins:before\":false},[\"content:\\\"\\ue4f2\\\"\"]],[false,{\".fa-flag:before\":false},[\"content:\\\"\\uf024\\\"\"]],[false,{\".fa-flag-checkered:before\":false},[\"content:\\\"\\uf11e\\\"\"]],[false,{\".fa-flag-usa:before\":false},[\"content:\\\"\\uf74d\\\"\"]],[false,{\".fa-flask:before\":false},[\"content:\\\"\\uf0c3\\\"\"]],[false,{\".fa-flask-vial:before\":false},[\"content:\\\"\\ue4f3\\\"\"]],[false,{\".fa-floppy-disk:before\":false,\".fa-save:before\":false},[\"content:\\\"\\uf0c7\\\"\"]],[false,{\".fa-florin-sign:before\":false},[\"content:\\\"\\ue184\\\"\"]],[false,{\".fa-folder-blank:before\":false,\".fa-folder:before\":false},[\"content:\\\"\\uf07b\\\"\"]],[false,{\".fa-folder-closed:before\":false},[\"content:\\\"\\ue185\\\"\"]],[false,{\".fa-folder-minus:before\":false},[\"content:\\\"\\uf65d\\\"\"]],[false,{\".fa-folder-open:before\":false},[\"content:\\\"\\uf07c\\\"\"]],[false,{\".fa-folder-plus:before\":false},[\"content:\\\"\\uf65e\\\"\"]],[false,{\".fa-folder-tree:before\":false},[\"content:\\\"\\uf802\\\"\"]],[false,{\".fa-font:before\":false},[\"content:\\\"\\uf031\\\"\"]],[false,{\".fa-football-ball:before\":false,\".fa-football:before\":false},[\"content:\\\"\\uf44e\\\"\"]],[false,{\".fa-forward:before\":false},[\"content:\\\"\\uf04e\\\"\"]],[false,{\".fa-fast-forward:before\":false,\".fa-forward-fast:before\":false},[\"content:\\\"\\uf050\\\"\"]],[false,{\".fa-forward-step:before\":false,\".fa-step-forward:before\":false},[\"content:\\\"\\uf051\\\"\"]],[false,{\".fa-franc-sign:before\":false},[\"content:\\\"\\ue18f\\\"\"]],[false,{\".fa-frog:before\":false},[\"content:\\\"\\uf52e\\\"\"]],[false,{\".fa-futbol-ball:before\":false,\".fa-futbol:before\":false,\".fa-soccer-ball:before\":false},[\"content:\\\"\\uf1e3\\\"\"]],[false,{\".fa-g:before\":false},[\"content:\\\"G\\\"\"]],[false,{\".fa-gamepad:before\":false},[\"content:\\\"\\uf11b\\\"\"]],[false,{\".fa-gas-pump:before\":false},[\"content:\\\"\\uf52f\\\"\"]],[false,{\".fa-dashboard:before\":false,\".fa-gauge-med:before\":false,\".fa-gauge:before\":false,\".fa-tachometer-alt-average:before\":false},[\"content:\\\"\\uf624\\\"\"]],[false,{\".fa-gauge-high:before\":false,\".fa-tachometer-alt-fast:before\":false,\".fa-tachometer-alt:before\":false},[\"content:\\\"\\uf625\\\"\"]],[false,{\".fa-gauge-simple-med:before\":false,\".fa-gauge-simple:before\":false,\".fa-tachometer-average:before\":false},[\"content:\\\"\\uf629\\\"\"]],[false,{\".fa-gauge-simple-high:before\":false,\".fa-tachometer-fast:before\":false,\".fa-tachometer:before\":false},[\"content:\\\"\\uf62a\\\"\"]],[false,{\".fa-gavel:before\":false,\".fa-legal:before\":false},[\"content:\\\"\\uf0e3\\\"\"]],[false,{\".fa-cog:before\":false,\".fa-gear:before\":false},[\"content:\\\"\\uf013\\\"\"]],[false,{\".fa-cogs:before\":false,\".fa-gears:before\":false},[\"content:\\\"\\uf085\\\"\"]],[false,{\".fa-gem:before\":false},[\"content:\\\"\\uf3a5\\\"\"]],[false,{\".fa-genderless:before\":false},[\"content:\\\"\\uf22d\\\"\"]],[false,{\".fa-ghost:before\":false},[\"content:\\\"\\uf6e2\\\"\"]],[false,{\".fa-gift:before\":false},[\"content:\\\"\\uf06b\\\"\"]],[false,{\".fa-gifts:before\":false},[\"content:\\\"\\uf79c\\\"\"]],[false,{\".fa-glass-water:before\":false},[\"content:\\\"\\ue4f4\\\"\"]],[false,{\".fa-glass-water-droplet:before\":false},[\"content:\\\"\\ue4f5\\\"\"]],[false,{\".fa-glasses:before\":false},[\"content:\\\"\\uf530\\\"\"]],[false,{\".fa-globe:before\":false},[\"content:\\\"\\uf0ac\\\"\"]],[false,{\".fa-golf-ball-tee:before\":false,\".fa-golf-ball:before\":false},[\"content:\\\"\\uf450\\\"\"]],[false,{\".fa-gopuram:before\":false},[\"content:\\\"\\uf664\\\"\"]],[false,{\".fa-graduation-cap:before\":false,\".fa-mortar-board:before\":false},[\"content:\\\"\\uf19d\\\"\"]],[false,{\".fa-greater-than:before\":false},[\"content:\\\">\\\"\"]],[false,{\".fa-greater-than-equal:before\":false},[\"content:\\\"\\uf532\\\"\"]],[false,{\".fa-grip-horizontal:before\":false,\".fa-grip:before\":false},[\"content:\\\"\\uf58d\\\"\"]],[false,{\".fa-grip-lines:before\":false},[\"content:\\\"\\uf7a4\\\"\"]],[false,{\".fa-grip-lines-vertical:before\":false},[\"content:\\\"\\uf7a5\\\"\"]],[false,{\".fa-grip-vertical:before\":false},[\"content:\\\"\\uf58e\\\"\"]],[false,{\".fa-group-arrows-rotate:before\":false},[\"content:\\\"\\ue4f6\\\"\"]],[false,{\".fa-guarani-sign:before\":false},[\"content:\\\"\\ue19a\\\"\"]],[false,{\".fa-guitar:before\":false},[\"content:\\\"\\uf7a6\\\"\"]],[false,{\".fa-gun:before\":false},[\"content:\\\"\\ue19b\\\"\"]],[false,{\".fa-h:before\":false},[\"content:\\\"H\\\"\"]],[false,{\".fa-hammer:before\":false},[\"content:\\\"\\uf6e3\\\"\"]],[false,{\".fa-hamsa:before\":false},[\"content:\\\"\\uf665\\\"\"]],[false,{\".fa-hand-paper:before\":false,\".fa-hand:before\":false},[\"content:\\\"\\uf256\\\"\"]],[false,{\".fa-hand-back-fist:before\":false,\".fa-hand-rock:before\":false},[\"content:\\\"\\uf255\\\"\"]],[false,{\".fa-allergies:before\":false,\".fa-hand-dots:before\":false},[\"content:\\\"\\uf461\\\"\"]],[false,{\".fa-fist-raised:before\":false,\".fa-hand-fist:before\":false},[\"content:\\\"\\uf6de\\\"\"]],[false,{\".fa-hand-holding:before\":false},[\"content:\\\"\\uf4bd\\\"\"]],[false,{\".fa-hand-holding-dollar:before\":false,\".fa-hand-holding-usd:before\":false},[\"content:\\\"\\uf4c0\\\"\"]],[false,{\".fa-hand-holding-droplet:before\":false,\".fa-hand-holding-water:before\":false},[\"content:\\\"\\uf4c1\\\"\"]],[false,{\".fa-hand-holding-hand:before\":false},[\"content:\\\"\\ue4f7\\\"\"]],[false,{\".fa-hand-holding-heart:before\":false},[\"content:\\\"\\uf4be\\\"\"]],[false,{\".fa-hand-holding-medical:before\":false},[\"content:\\\"\\ue05c\\\"\"]],[false,{\".fa-hand-lizard:before\":false},[\"content:\\\"\\uf258\\\"\"]],[false,{\".fa-hand-middle-finger:before\":false},[\"content:\\\"\\uf806\\\"\"]],[false,{\".fa-hand-peace:before\":false},[\"content:\\\"\\uf25b\\\"\"]],[false,{\".fa-hand-point-down:before\":false},[\"content:\\\"\\uf0a7\\\"\"]],[false,{\".fa-hand-point-left:before\":false},[\"content:\\\"\\uf0a5\\\"\"]],[false,{\".fa-hand-point-right:before\":false},[\"content:\\\"\\uf0a4\\\"\"]],[false,{\".fa-hand-point-up:before\":false},[\"content:\\\"\\uf0a6\\\"\"]],[false,{\".fa-hand-pointer:before\":false},[\"content:\\\"\\uf25a\\\"\"]],[false,{\".fa-hand-scissors:before\":false},[\"content:\\\"\\uf257\\\"\"]],[false,{\".fa-hand-sparkles:before\":false},[\"content:\\\"\\ue05d\\\"\"]],[false,{\".fa-hand-spock:before\":false},[\"content:\\\"\\uf259\\\"\"]],[false,{\".fa-handcuffs:before\":false},[\"content:\\\"\\ue4f8\\\"\"]],[false,{\".fa-hands:before\":false,\".fa-sign-language:before\":false,\".fa-signing:before\":false},[\"content:\\\"\\uf2a7\\\"\"]],[false,{\".fa-american-sign-language-interpreting:before\":false,\".fa-asl-interpreting:before\":false,\".fa-hands-american-sign-language-interpreting:before\":false,\".fa-hands-asl-interpreting:before\":false},[\"content:\\\"\\uf2a3\\\"\"]],[false,{\".fa-hands-bound:before\":false},[\"content:\\\"\\ue4f9\\\"\"]],[false,{\".fa-hands-bubbles:before\":false,\".fa-hands-wash:before\":false},[\"content:\\\"\\ue05e\\\"\"]],[false,{\".fa-hands-clapping:before\":false},[\"content:\\\"\\ue1a8\\\"\"]],[false,{\".fa-hands-holding:before\":false},[\"content:\\\"\\uf4c2\\\"\"]],[false,{\".fa-hands-holding-child:before\":false},[\"content:\\\"\\ue4fa\\\"\"]],[false,{\".fa-hands-holding-circle:before\":false},[\"content:\\\"\\ue4fb\\\"\"]],[false,{\".fa-hands-praying:before\":false,\".fa-praying-hands:before\":false},[\"content:\\\"\\uf684\\\"\"]],[false,{\".fa-handshake:before\":false},[\"content:\\\"\\uf2b5\\\"\"]],[false,{\".fa-hands-helping:before\":false,\".fa-handshake-angle:before\":false},[\"content:\\\"\\uf4c4\\\"\"]],[false,{\".fa-handshake-alt:before\":false,\".fa-handshake-simple:before\":false},[\"content:\\\"\\uf4c6\\\"\"]],[false,{\".fa-handshake-alt-slash:before\":false,\".fa-handshake-simple-slash:before\":false},[\"content:\\\"\\ue05f\\\"\"]],[false,{\".fa-handshake-slash:before\":false},[\"content:\\\"\\ue060\\\"\"]],[false,{\".fa-hanukiah:before\":false},[\"content:\\\"\\uf6e6\\\"\"]],[false,{\".fa-hard-drive:before\":false,\".fa-hdd:before\":false},[\"content:\\\"\\uf0a0\\\"\"]],[false,{\".fa-hashtag:before\":false},[\"content:\\\"#\\\"\"]],[false,{\".fa-hat-cowboy:before\":false},[\"content:\\\"\\uf8c0\\\"\"]],[false,{\".fa-hat-cowboy-side:before\":false},[\"content:\\\"\\uf8c1\\\"\"]],[false,{\".fa-hat-wizard:before\":false},[\"content:\\\"\\uf6e8\\\"\"]],[false,{\".fa-head-side-cough:before\":false},[\"content:\\\"\\ue061\\\"\"]],[false,{\".fa-head-side-cough-slash:before\":false},[\"content:\\\"\\ue062\\\"\"]],[false,{\".fa-head-side-mask:before\":false},[\"content:\\\"\\ue063\\\"\"]],[false,{\".fa-head-side-virus:before\":false},[\"content:\\\"\\ue064\\\"\"]],[false,{\".fa-header:before\":false,\".fa-heading:before\":false},[\"content:\\\"\\uf1dc\\\"\"]],[false,{\".fa-headphones:before\":false},[\"content:\\\"\\uf025\\\"\"]],[false,{\".fa-headphones-alt:before\":false,\".fa-headphones-simple:before\":false},[\"content:\\\"\\uf58f\\\"\"]],[false,{\".fa-headset:before\":false},[\"content:\\\"\\uf590\\\"\"]],[false,{\".fa-heart:before\":false},[\"content:\\\"\\uf004\\\"\"]],[false,{\".fa-heart-circle-bolt:before\":false},[\"content:\\\"\\ue4fc\\\"\"]],[false,{\".fa-heart-circle-check:before\":false},[\"content:\\\"\\ue4fd\\\"\"]],[false,{\".fa-heart-circle-exclamation:before\":false},[\"content:\\\"\\ue4fe\\\"\"]],[false,{\".fa-heart-circle-minus:before\":false},[\"content:\\\"\\ue4ff\\\"\"]],[false,{\".fa-heart-circle-plus:before\":false},[\"content:\\\"\\ue500\\\"\"]],[false,{\".fa-heart-circle-xmark:before\":false},[\"content:\\\"\\ue501\\\"\"]],[false,{\".fa-heart-broken:before\":false,\".fa-heart-crack:before\":false},[\"content:\\\"\\uf7a9\\\"\"]],[false,{\".fa-heart-pulse:before\":false,\".fa-heartbeat:before\":false},[\"content:\\\"\\uf21e\\\"\"]],[false,{\".fa-helicopter:before\":false},[\"content:\\\"\\uf533\\\"\"]],[false,{\".fa-helicopter-symbol:before\":false},[\"content:\\\"\\ue502\\\"\"]],[false,{\".fa-hard-hat:before\":false,\".fa-hat-hard:before\":false,\".fa-helmet-safety:before\":false},[\"content:\\\"\\uf807\\\"\"]],[false,{\".fa-helmet-un:before\":false},[\"content:\\\"\\ue503\\\"\"]],[false,{\".fa-highlighter:before\":false},[\"content:\\\"\\uf591\\\"\"]],[false,{\".fa-hill-avalanche:before\":false},[\"content:\\\"\\ue507\\\"\"]],[false,{\".fa-hill-rockslide:before\":false},[\"content:\\\"\\ue508\\\"\"]],[false,{\".fa-hippo:before\":false},[\"content:\\\"\\uf6ed\\\"\"]],[false,{\".fa-hockey-puck:before\":false},[\"content:\\\"\\uf453\\\"\"]],[false,{\".fa-holly-berry:before\":false},[\"content:\\\"\\uf7aa\\\"\"]],[false,{\".fa-horse:before\":false},[\"content:\\\"\\uf6f0\\\"\"]],[false,{\".fa-horse-head:before\":false},[\"content:\\\"\\uf7ab\\\"\"]],[false,{\".fa-hospital-alt:before\":false,\".fa-hospital-wide:before\":false,\".fa-hospital:before\":false},[\"content:\\\"\\uf0f8\\\"\"]],[false,{\".fa-hospital-user:before\":false},[\"content:\\\"\\uf80d\\\"\"]],[false,{\".fa-hot-tub-person:before\":false,\".fa-hot-tub:before\":false},[\"content:\\\"\\uf593\\\"\"]],[false,{\".fa-hotdog:before\":false},[\"content:\\\"\\uf80f\\\"\"]],[false,{\".fa-hotel:before\":false},[\"content:\\\"\\uf594\\\"\"]],[false,{\".fa-hourglass-2:before\":false,\".fa-hourglass-half:before\":false,\".fa-hourglass:before\":false},[\"content:\\\"\\uf254\\\"\"]],[false,{\".fa-hourglass-empty:before\":false},[\"content:\\\"\\uf252\\\"\"]],[false,{\".fa-hourglass-3:before\":false,\".fa-hourglass-end:before\":false},[\"content:\\\"\\uf253\\\"\"]],[false,{\".fa-hourglass-1:before\":false,\".fa-hourglass-start:before\":false},[\"content:\\\"\\uf251\\\"\"]],[false,{\".fa-home-alt:before\":false,\".fa-home-lg-alt:before\":false,\".fa-home:before\":false,\".fa-house:before\":false},[\"content:\\\"\\uf015\\\"\"]],[false,{\".fa-home-lg:before\":false,\".fa-house-chimney:before\":false},[\"content:\\\"\\ue3af\\\"\"]],[false,{\".fa-house-chimney-crack:before\":false,\".fa-house-damage:before\":false},[\"content:\\\"\\uf6f1\\\"\"]],[false,{\".fa-clinic-medical:before\":false,\".fa-house-chimney-medical:before\":false},[\"content:\\\"\\uf7f2\\\"\"]],[false,{\".fa-house-chimney-user:before\":false},[\"content:\\\"\\ue065\\\"\"]],[false,{\".fa-house-chimney-window:before\":false},[\"content:\\\"\\ue00d\\\"\"]],[false,{\".fa-house-circle-check:before\":false},[\"content:\\\"\\ue509\\\"\"]],[false,{\".fa-house-circle-exclamation:before\":false},[\"content:\\\"\\ue50a\\\"\"]],[false,{\".fa-house-circle-xmark:before\":false},[\"content:\\\"\\ue50b\\\"\"]],[false,{\".fa-house-crack:before\":false},[\"content:\\\"\\ue3b1\\\"\"]],[false,{\".fa-house-fire:before\":false},[\"content:\\\"\\ue50c\\\"\"]],[false,{\".fa-house-flag:before\":false},[\"content:\\\"\\ue50d\\\"\"]],[false,{\".fa-house-flood-water:before\":false},[\"content:\\\"\\ue50e\\\"\"]],[false,{\".fa-house-flood-water-circle-arrow-right:before\":false},[\"content:\\\"\\ue50f\\\"\"]],[false,{\".fa-house-laptop:before\":false,\".fa-laptop-house:before\":false},[\"content:\\\"\\ue066\\\"\"]],[false,{\".fa-house-lock:before\":false},[\"content:\\\"\\ue510\\\"\"]],[false,{\".fa-house-medical:before\":false},[\"content:\\\"\\ue3b2\\\"\"]],[false,{\".fa-house-medical-circle-check:before\":false},[\"content:\\\"\\ue511\\\"\"]],[false,{\".fa-house-medical-circle-exclamation:before\":false},[\"content:\\\"\\ue512\\\"\"]],[false,{\".fa-house-medical-circle-xmark:before\":false},[\"content:\\\"\\ue513\\\"\"]],[false,{\".fa-house-medical-flag:before\":false},[\"content:\\\"\\ue514\\\"\"]],[false,{\".fa-house-signal:before\":false},[\"content:\\\"\\ue012\\\"\"]],[false,{\".fa-house-tsunami:before\":false},[\"content:\\\"\\ue515\\\"\"]],[false,{\".fa-home-user:before\":false,\".fa-house-user:before\":false},[\"content:\\\"\\ue1b0\\\"\"]],[false,{\".fa-hryvnia-sign:before\":false,\".fa-hryvnia:before\":false},[\"content:\\\"\\uf6f2\\\"\"]],[false,{\".fa-hurricane:before\":false},[\"content:\\\"\\uf751\\\"\"]],[false,{\".fa-i:before\":false},[\"content:\\\"I\\\"\"]],[false,{\".fa-i-cursor:before\":false},[\"content:\\\"\\uf246\\\"\"]],[false,{\".fa-ice-cream:before\":false},[\"content:\\\"\\uf810\\\"\"]],[false,{\".fa-icicles:before\":false},[\"content:\\\"\\uf7ad\\\"\"]],[false,{\".fa-heart-music-camera-bolt:before\":false,\".fa-icons:before\":false},[\"content:\\\"\\uf86d\\\"\"]],[false,{\".fa-id-badge:before\":false},[\"content:\\\"\\uf2c1\\\"\"]],[false,{\".fa-drivers-license:before\":false,\".fa-id-card:before\":false},[\"content:\\\"\\uf2c2\\\"\"]],[false,{\".fa-id-card-alt:before\":false,\".fa-id-card-clip:before\":false},[\"content:\\\"\\uf47f\\\"\"]],[false,{\".fa-igloo:before\":false},[\"content:\\\"\\uf7ae\\\"\"]],[false,{\".fa-image:before\":false},[\"content:\\\"\\uf03e\\\"\"]],[false,{\".fa-image-portrait:before\":false,\".fa-portrait:before\":false},[\"content:\\\"\\uf3e0\\\"\"]],[false,{\".fa-images:before\":false},[\"content:\\\"\\uf302\\\"\"]],[false,{\".fa-inbox:before\":false},[\"content:\\\"\\uf01c\\\"\"]],[false,{\".fa-indent:before\":false},[\"content:\\\"\\uf03c\\\"\"]],[false,{\".fa-indian-rupee-sign:before\":false,\".fa-indian-rupee:before\":false,\".fa-inr:before\":false},[\"content:\\\"\\ue1bc\\\"\"]],[false,{\".fa-industry:before\":false},[\"content:\\\"\\uf275\\\"\"]],[false,{\".fa-infinity:before\":false},[\"content:\\\"\\uf534\\\"\"]],[false,{\".fa-info:before\":false},[\"content:\\\"\\uf129\\\"\"]],[false,{\".fa-italic:before\":false},[\"content:\\\"\\uf033\\\"\"]],[false,{\".fa-j:before\":false},[\"content:\\\"J\\\"\"]],[false,{\".fa-jar:before\":false},[\"content:\\\"\\ue516\\\"\"]],[false,{\".fa-jar-wheat:before\":false},[\"content:\\\"\\ue517\\\"\"]],[false,{\".fa-jedi:before\":false},[\"content:\\\"\\uf669\\\"\"]],[false,{\".fa-fighter-jet:before\":false,\".fa-jet-fighter:before\":false},[\"content:\\\"\\uf0fb\\\"\"]],[false,{\".fa-jet-fighter-up:before\":false},[\"content:\\\"\\ue518\\\"\"]],[false,{\".fa-joint:before\":false},[\"content:\\\"\\uf595\\\"\"]],[false,{\".fa-jug-detergent:before\":false},[\"content:\\\"\\ue519\\\"\"]],[false,{\".fa-k:before\":false},[\"content:\\\"K\\\"\"]],[false,{\".fa-kaaba:before\":false},[\"content:\\\"\\uf66b\\\"\"]],[false,{\".fa-key:before\":false},[\"content:\\\"\\uf084\\\"\"]],[false,{\".fa-keyboard:before\":false},[\"content:\\\"\\uf11c\\\"\"]],[false,{\".fa-khanda:before\":false},[\"content:\\\"\\uf66d\\\"\"]],[false,{\".fa-kip-sign:before\":false},[\"content:\\\"\\ue1c4\\\"\"]],[false,{\".fa-first-aid:before\":false,\".fa-kit-medical:before\":false},[\"content:\\\"\\uf479\\\"\"]],[false,{\".fa-kitchen-set:before\":false},[\"content:\\\"\\ue51a\\\"\"]],[false,{\".fa-kiwi-bird:before\":false},[\"content:\\\"\\uf535\\\"\"]],[false,{\".fa-l:before\":false},[\"content:\\\"L\\\"\"]],[false,{\".fa-land-mine-on:before\":false},[\"content:\\\"\\ue51b\\\"\"]],[false,{\".fa-landmark:before\":false},[\"content:\\\"\\uf66f\\\"\"]],[false,{\".fa-landmark-alt:before\":false,\".fa-landmark-dome:before\":false},[\"content:\\\"\\uf752\\\"\"]],[false,{\".fa-landmark-flag:before\":false},[\"content:\\\"\\ue51c\\\"\"]],[false,{\".fa-language:before\":false},[\"content:\\\"\\uf1ab\\\"\"]],[false,{\".fa-laptop:before\":false},[\"content:\\\"\\uf109\\\"\"]],[false,{\".fa-laptop-code:before\":false},[\"content:\\\"\\uf5fc\\\"\"]],[false,{\".fa-laptop-file:before\":false},[\"content:\\\"\\ue51d\\\"\"]],[false,{\".fa-laptop-medical:before\":false},[\"content:\\\"\\uf812\\\"\"]],[false,{\".fa-lari-sign:before\":false},[\"content:\\\"\\ue1c8\\\"\"]],[false,{\".fa-layer-group:before\":false},[\"content:\\\"\\uf5fd\\\"\"]],[false,{\".fa-leaf:before\":false},[\"content:\\\"\\uf06c\\\"\"]],[false,{\".fa-left-long:before\":false,\".fa-long-arrow-alt-left:before\":false},[\"content:\\\"\\uf30a\\\"\"]],[false,{\".fa-arrows-alt-h:before\":false,\".fa-left-right:before\":false},[\"content:\\\"\\uf337\\\"\"]],[false,{\".fa-lemon:before\":false},[\"content:\\\"\\uf094\\\"\"]],[false,{\".fa-less-than:before\":false},[\"content:\\\"<\\\"\"]],[false,{\".fa-less-than-equal:before\":false},[\"content:\\\"\\uf537\\\"\"]],[false,{\".fa-life-ring:before\":false},[\"content:\\\"\\uf1cd\\\"\"]],[false,{\".fa-lightbulb:before\":false},[\"content:\\\"\\uf0eb\\\"\"]],[false,{\".fa-lines-leaning:before\":false},[\"content:\\\"\\ue51e\\\"\"]],[false,{\".fa-chain:before\":false,\".fa-link:before\":false},[\"content:\\\"\\uf0c1\\\"\"]],[false,{\".fa-chain-broken:before\":false,\".fa-chain-slash:before\":false,\".fa-link-slash:before\":false,\".fa-unlink:before\":false},[\"content:\\\"\\uf127\\\"\"]],[false,{\".fa-lira-sign:before\":false},[\"content:\\\"\\uf195\\\"\"]],[false,{\".fa-list-squares:before\":false,\".fa-list:before\":false},[\"content:\\\"\\uf03a\\\"\"]],[false,{\".fa-list-check:before\":false,\".fa-tasks:before\":false},[\"content:\\\"\\uf0ae\\\"\"]],[false,{\".fa-list-1-2:before\":false,\".fa-list-numeric:before\":false,\".fa-list-ol:before\":false},[\"content:\\\"\\uf0cb\\\"\"]],[false,{\".fa-list-dots:before\":false,\".fa-list-ul:before\":false},[\"content:\\\"\\uf0ca\\\"\"]],[false,{\".fa-litecoin-sign:before\":false},[\"content:\\\"\\ue1d3\\\"\"]],[false,{\".fa-location-arrow:before\":false},[\"content:\\\"\\uf124\\\"\"]],[false,{\".fa-location-crosshairs:before\":false,\".fa-location:before\":false},[\"content:\\\"\\uf601\\\"\"]],[false,{\".fa-location-dot:before\":false,\".fa-map-marker-alt:before\":false},[\"content:\\\"\\uf3c5\\\"\"]],[false,{\".fa-location-pin:before\":false,\".fa-map-marker:before\":false},[\"content:\\\"\\uf041\\\"\"]],[false,{\".fa-location-pin-lock:before\":false},[\"content:\\\"\\ue51f\\\"\"]],[false,{\".fa-lock:before\":false},[\"content:\\\"\\uf023\\\"\"]],[false,{\".fa-lock-open:before\":false},[\"content:\\\"\\uf3c1\\\"\"]],[false,{\".fa-locust:before\":false},[\"content:\\\"\\ue520\\\"\"]],[false,{\".fa-lungs:before\":false},[\"content:\\\"\\uf604\\\"\"]],[false,{\".fa-lungs-virus:before\":false},[\"content:\\\"\\ue067\\\"\"]],[false,{\".fa-m:before\":false},[\"content:\\\"M\\\"\"]],[false,{\".fa-magnet:before\":false},[\"content:\\\"\\uf076\\\"\"]],[false,{\".fa-magnifying-glass:before\":false,\".fa-search:before\":false},[\"content:\\\"\\uf002\\\"\"]],[false,{\".fa-magnifying-glass-arrow-right:before\":false},[\"content:\\\"\\ue521\\\"\"]],[false,{\".fa-magnifying-glass-chart:before\":false},[\"content:\\\"\\ue522\\\"\"]],[false,{\".fa-magnifying-glass-dollar:before\":false,\".fa-search-dollar:before\":false},[\"content:\\\"\\uf688\\\"\"]],[false,{\".fa-magnifying-glass-location:before\":false,\".fa-search-location:before\":false},[\"content:\\\"\\uf689\\\"\"]],[false,{\".fa-magnifying-glass-minus:before\":false,\".fa-search-minus:before\":false},[\"content:\\\"\\uf010\\\"\"]],[false,{\".fa-magnifying-glass-plus:before\":false,\".fa-search-plus:before\":false},[\"content:\\\"\\uf00e\\\"\"]],[false,{\".fa-manat-sign:before\":false},[\"content:\\\"\\ue1d5\\\"\"]],[false,{\".fa-map:before\":false},[\"content:\\\"\\uf279\\\"\"]],[false,{\".fa-map-location:before\":false,\".fa-map-marked:before\":false},[\"content:\\\"\\uf59f\\\"\"]],[false,{\".fa-map-location-dot:before\":false,\".fa-map-marked-alt:before\":false},[\"content:\\\"\\uf5a0\\\"\"]],[false,{\".fa-map-pin:before\":false},[\"content:\\\"\\uf276\\\"\"]],[false,{\".fa-marker:before\":false},[\"content:\\\"\\uf5a1\\\"\"]],[false,{\".fa-mars:before\":false},[\"content:\\\"\\uf222\\\"\"]],[false,{\".fa-mars-and-venus:before\":false},[\"content:\\\"\\uf224\\\"\"]],[false,{\".fa-mars-and-venus-burst:before\":false},[\"content:\\\"\\ue523\\\"\"]],[false,{\".fa-mars-double:before\":false},[\"content:\\\"\\uf227\\\"\"]],[false,{\".fa-mars-stroke:before\":false},[\"content:\\\"\\uf229\\\"\"]],[false,{\".fa-mars-stroke-h:before\":false,\".fa-mars-stroke-right:before\":false},[\"content:\\\"\\uf22b\\\"\"]],[false,{\".fa-mars-stroke-up:before\":false,\".fa-mars-stroke-v:before\":false},[\"content:\\\"\\uf22a\\\"\"]],[false,{\".fa-glass-martini-alt:before\":false,\".fa-martini-glass:before\":false},[\"content:\\\"\\uf57b\\\"\"]],[false,{\".fa-cocktail:before\":false,\".fa-martini-glass-citrus:before\":false},[\"content:\\\"\\uf561\\\"\"]],[false,{\".fa-glass-martini:before\":false,\".fa-martini-glass-empty:before\":false},[\"content:\\\"\\uf000\\\"\"]],[false,{\".fa-mask:before\":false},[\"content:\\\"\\uf6fa\\\"\"]],[false,{\".fa-mask-face:before\":false},[\"content:\\\"\\ue1d7\\\"\"]],[false,{\".fa-mask-ventilator:before\":false},[\"content:\\\"\\ue524\\\"\"]],[false,{\".fa-masks-theater:before\":false,\".fa-theater-masks:before\":false},[\"content:\\\"\\uf630\\\"\"]],[false,{\".fa-mattress-pillow:before\":false},[\"content:\\\"\\ue525\\\"\"]],[false,{\".fa-expand-arrows-alt:before\":false,\".fa-maximize:before\":false},[\"content:\\\"\\uf31e\\\"\"]],[false,{\".fa-medal:before\":false},[\"content:\\\"\\uf5a2\\\"\"]],[false,{\".fa-memory:before\":false},[\"content:\\\"\\uf538\\\"\"]],[false,{\".fa-menorah:before\":false},[\"content:\\\"\\uf676\\\"\"]],[false,{\".fa-mercury:before\":false},[\"content:\\\"\\uf223\\\"\"]],[false,{\".fa-comment-alt:before\":false,\".fa-message:before\":false},[\"content:\\\"\\uf27a\\\"\"]],[false,{\".fa-meteor:before\":false},[\"content:\\\"\\uf753\\\"\"]],[false,{\".fa-microchip:before\":false},[\"content:\\\"\\uf2db\\\"\"]],[false,{\".fa-microphone:before\":false},[\"content:\\\"\\uf130\\\"\"]],[false,{\".fa-microphone-alt:before\":false,\".fa-microphone-lines:before\":false},[\"content:\\\"\\uf3c9\\\"\"]],[false,{\".fa-microphone-alt-slash:before\":false,\".fa-microphone-lines-slash:before\":false},[\"content:\\\"\\uf539\\\"\"]],[false,{\".fa-microphone-slash:before\":false},[\"content:\\\"\\uf131\\\"\"]],[false,{\".fa-microscope:before\":false},[\"content:\\\"\\uf610\\\"\"]],[false,{\".fa-mill-sign:before\":false},[\"content:\\\"\\ue1ed\\\"\"]],[false,{\".fa-compress-arrows-alt:before\":false,\".fa-minimize:before\":false},[\"content:\\\"\\uf78c\\\"\"]],[false,{\".fa-minus:before\":false,\".fa-subtract:before\":false},[\"content:\\\"\\uf068\\\"\"]],[false,{\".fa-mitten:before\":false},[\"content:\\\"\\uf7b5\\\"\"]],[false,{\".fa-mobile-android:before\":false,\".fa-mobile-phone:before\":false,\".fa-mobile:before\":false},[\"content:\\\"\\uf3ce\\\"\"]],[false,{\".fa-mobile-button:before\":false},[\"content:\\\"\\uf10b\\\"\"]],[false,{\".fa-mobile-retro:before\":false},[\"content:\\\"\\ue527\\\"\"]],[false,{\".fa-mobile-android-alt:before\":false,\".fa-mobile-screen:before\":false},[\"content:\\\"\\uf3cf\\\"\"]],[false,{\".fa-mobile-alt:before\":false,\".fa-mobile-screen-button:before\":false},[\"content:\\\"\\uf3cd\\\"\"]],[false,{\".fa-money-bill:before\":false},[\"content:\\\"\\uf0d6\\\"\"]],[false,{\".fa-money-bill-1:before\":false,\".fa-money-bill-alt:before\":false},[\"content:\\\"\\uf3d1\\\"\"]],[false,{\".fa-money-bill-1-wave:before\":false,\".fa-money-bill-wave-alt:before\":false},[\"content:\\\"\\uf53b\\\"\"]],[false,{\".fa-money-bill-transfer:before\":false},[\"content:\\\"\\ue528\\\"\"]],[false,{\".fa-money-bill-trend-up:before\":false},[\"content:\\\"\\ue529\\\"\"]],[false,{\".fa-money-bill-wave:before\":false},[\"content:\\\"\\uf53a\\\"\"]],[false,{\".fa-money-bill-wheat:before\":false},[\"content:\\\"\\ue52a\\\"\"]],[false,{\".fa-money-bills:before\":false},[\"content:\\\"\\ue1f3\\\"\"]],[false,{\".fa-money-check:before\":false},[\"content:\\\"\\uf53c\\\"\"]],[false,{\".fa-money-check-alt:before\":false,\".fa-money-check-dollar:before\":false},[\"content:\\\"\\uf53d\\\"\"]],[false,{\".fa-monument:before\":false},[\"content:\\\"\\uf5a6\\\"\"]],[false,{\".fa-moon:before\":false},[\"content:\\\"\\uf186\\\"\"]],[false,{\".fa-mortar-pestle:before\":false},[\"content:\\\"\\uf5a7\\\"\"]],[false,{\".fa-mosque:before\":false},[\"content:\\\"\\uf678\\\"\"]],[false,{\".fa-mosquito:before\":false},[\"content:\\\"\\ue52b\\\"\"]],[false,{\".fa-mosquito-net:before\":false},[\"content:\\\"\\ue52c\\\"\"]],[false,{\".fa-motorcycle:before\":false},[\"content:\\\"\\uf21c\\\"\"]],[false,{\".fa-mound:before\":false},[\"content:\\\"\\ue52d\\\"\"]],[false,{\".fa-mountain:before\":false},[\"content:\\\"\\uf6fc\\\"\"]],[false,{\".fa-mountain-city:before\":false},[\"content:\\\"\\ue52e\\\"\"]],[false,{\".fa-mountain-sun:before\":false},[\"content:\\\"\\ue52f\\\"\"]],[false,{\".fa-mug-hot:before\":false},[\"content:\\\"\\uf7b6\\\"\"]],[false,{\".fa-coffee:before\":false,\".fa-mug-saucer:before\":false},[\"content:\\\"\\uf0f4\\\"\"]],[false,{\".fa-music:before\":false},[\"content:\\\"\\uf001\\\"\"]],[false,{\".fa-n:before\":false},[\"content:\\\"N\\\"\"]],[false,{\".fa-naira-sign:before\":false},[\"content:\\\"\\ue1f6\\\"\"]],[false,{\".fa-network-wired:before\":false},[\"content:\\\"\\uf6ff\\\"\"]],[false,{\".fa-neuter:before\":false},[\"content:\\\"\\uf22c\\\"\"]],[false,{\".fa-newspaper:before\":false},[\"content:\\\"\\uf1ea\\\"\"]],[false,{\".fa-not-equal:before\":false},[\"content:\\\"\\uf53e\\\"\"]],[false,{\".fa-note-sticky:before\":false,\".fa-sticky-note:before\":false},[\"content:\\\"\\uf249\\\"\"]],[false,{\".fa-notes-medical:before\":false},[\"content:\\\"\\uf481\\\"\"]],[false,{\".fa-o:before\":false},[\"content:\\\"O\\\"\"]],[false,{\".fa-object-group:before\":false},[\"content:\\\"\\uf247\\\"\"]],[false,{\".fa-object-ungroup:before\":false},[\"content:\\\"\\uf248\\\"\"]],[false,{\".fa-oil-can:before\":false},[\"content:\\\"\\uf613\\\"\"]],[false,{\".fa-oil-well:before\":false},[\"content:\\\"\\ue532\\\"\"]],[false,{\".fa-om:before\":false},[\"content:\\\"\\uf679\\\"\"]],[false,{\".fa-otter:before\":false},[\"content:\\\"\\uf700\\\"\"]],[false,{\".fa-dedent:before\":false,\".fa-outdent:before\":false},[\"content:\\\"\\uf03b\\\"\"]],[false,{\".fa-p:before\":false},[\"content:\\\"P\\\"\"]],[false,{\".fa-pager:before\":false},[\"content:\\\"\\uf815\\\"\"]],[false,{\".fa-paint-roller:before\":false},[\"content:\\\"\\uf5aa\\\"\"]],[false,{\".fa-paint-brush:before\":false,\".fa-paintbrush:before\":false},[\"content:\\\"\\uf1fc\\\"\"]],[false,{\".fa-palette:before\":false},[\"content:\\\"\\uf53f\\\"\"]],[false,{\".fa-pallet:before\":false},[\"content:\\\"\\uf482\\\"\"]],[false,{\".fa-panorama:before\":false},[\"content:\\\"\\ue209\\\"\"]],[false,{\".fa-paper-plane:before\":false},[\"content:\\\"\\uf1d8\\\"\"]],[false,{\".fa-paperclip:before\":false},[\"content:\\\"\\uf0c6\\\"\"]],[false,{\".fa-parachute-box:before\":false},[\"content:\\\"\\uf4cd\\\"\"]],[false,{\".fa-paragraph:before\":false},[\"content:\\\"\\uf1dd\\\"\"]],[false,{\".fa-passport:before\":false},[\"content:\\\"\\uf5ab\\\"\"]],[false,{\".fa-file-clipboard:before\":false,\".fa-paste:before\":false},[\"content:\\\"\\uf0ea\\\"\"]],[false,{\".fa-pause:before\":false},[\"content:\\\"\\uf04c\\\"\"]],[false,{\".fa-paw:before\":false},[\"content:\\\"\\uf1b0\\\"\"]],[false,{\".fa-peace:before\":false},[\"content:\\\"\\uf67c\\\"\"]],[false,{\".fa-pen:before\":false},[\"content:\\\"\\uf304\\\"\"]],[false,{\".fa-pen-alt:before\":false,\".fa-pen-clip:before\":false},[\"content:\\\"\\uf305\\\"\"]],[false,{\".fa-pen-fancy:before\":false},[\"content:\\\"\\uf5ac\\\"\"]],[false,{\".fa-pen-nib:before\":false},[\"content:\\\"\\uf5ad\\\"\"]],[false,{\".fa-pen-ruler:before\":false,\".fa-pencil-ruler:before\":false},[\"content:\\\"\\uf5ae\\\"\"]],[false,{\".fa-edit:before\":false,\".fa-pen-to-square:before\":false},[\"content:\\\"\\uf044\\\"\"]],[false,{\".fa-pencil-alt:before\":false,\".fa-pencil:before\":false},[\"content:\\\"\\uf303\\\"\"]],[false,{\".fa-people-arrows-left-right:before\":false,\".fa-people-arrows:before\":false},[\"content:\\\"\\ue068\\\"\"]],[false,{\".fa-people-carry-box:before\":false,\".fa-people-carry:before\":false},[\"content:\\\"\\uf4ce\\\"\"]],[false,{\".fa-people-group:before\":false},[\"content:\\\"\\ue533\\\"\"]],[false,{\".fa-people-line:before\":false},[\"content:\\\"\\ue534\\\"\"]],[false,{\".fa-people-pulling:before\":false},[\"content:\\\"\\ue535\\\"\"]],[false,{\".fa-people-robbery:before\":false},[\"content:\\\"\\ue536\\\"\"]],[false,{\".fa-people-roof:before\":false},[\"content:\\\"\\ue537\\\"\"]],[false,{\".fa-pepper-hot:before\":false},[\"content:\\\"\\uf816\\\"\"]],[false,{\".fa-percent:before\":false,\".fa-percentage:before\":false},[\"content:\\\"%\\\"\"]],[false,{\".fa-male:before\":false,\".fa-person:before\":false},[\"content:\\\"\\uf183\\\"\"]],[false,{\".fa-person-arrow-down-to-line:before\":false},[\"content:\\\"\\ue538\\\"\"]],[false,{\".fa-person-arrow-up-from-line:before\":false},[\"content:\\\"\\ue539\\\"\"]],[false,{\".fa-biking:before\":false,\".fa-person-biking:before\":false},[\"content:\\\"\\uf84a\\\"\"]],[false,{\".fa-person-booth:before\":false},[\"content:\\\"\\uf756\\\"\"]],[false,{\".fa-person-breastfeeding:before\":false},[\"content:\\\"\\ue53a\\\"\"]],[false,{\".fa-person-burst:before\":false},[\"content:\\\"\\ue53b\\\"\"]],[false,{\".fa-person-cane:before\":false},[\"content:\\\"\\ue53c\\\"\"]],[false,{\".fa-person-chalkboard:before\":false},[\"content:\\\"\\ue53d\\\"\"]],[false,{\".fa-person-circle-check:before\":false},[\"content:\\\"\\ue53e\\\"\"]],[false,{\".fa-person-circle-exclamation:before\":false},[\"content:\\\"\\ue53f\\\"\"]],[false,{\".fa-person-circle-minus:before\":false},[\"content:\\\"\\ue540\\\"\"]],[false,{\".fa-person-circle-plus:before\":false},[\"content:\\\"\\ue541\\\"\"]],[false,{\".fa-person-circle-question:before\":false},[\"content:\\\"\\ue542\\\"\"]],[false,{\".fa-person-circle-xmark:before\":false},[\"content:\\\"\\ue543\\\"\"]],[false,{\".fa-digging:before\":false,\".fa-person-digging:before\":false},[\"content:\\\"\\uf85e\\\"\"]],[false,{\".fa-diagnoses:before\":false,\".fa-person-dots-from-line:before\":false},[\"content:\\\"\\uf470\\\"\"]],[false,{\".fa-female:before\":false,\".fa-person-dress:before\":false},[\"content:\\\"\\uf182\\\"\"]],[false,{\".fa-person-dress-burst:before\":false},[\"content:\\\"\\ue544\\\"\"]],[false,{\".fa-person-drowning:before\":false},[\"content:\\\"\\ue545\\\"\"]],[false,{\".fa-person-falling:before\":false},[\"content:\\\"\\ue546\\\"\"]],[false,{\".fa-person-falling-burst:before\":false},[\"content:\\\"\\ue547\\\"\"]],[false,{\".fa-person-half-dress:before\":false},[\"content:\\\"\\ue548\\\"\"]],[false,{\".fa-person-harassing:before\":false},[\"content:\\\"\\ue549\\\"\"]],[false,{\".fa-hiking:before\":false,\".fa-person-hiking:before\":false},[\"content:\\\"\\uf6ec\\\"\"]],[false,{\".fa-person-military-pointing:before\":false},[\"content:\\\"\\ue54a\\\"\"]],[false,{\".fa-person-military-rifle:before\":false},[\"content:\\\"\\ue54b\\\"\"]],[false,{\".fa-person-military-to-person:before\":false},[\"content:\\\"\\ue54c\\\"\"]],[false,{\".fa-person-praying:before\":false,\".fa-pray:before\":false},[\"content:\\\"\\uf683\\\"\"]],[false,{\".fa-person-pregnant:before\":false},[\"content:\\\"\\ue31e\\\"\"]],[false,{\".fa-person-rays:before\":false},[\"content:\\\"\\ue54d\\\"\"]],[false,{\".fa-person-rifle:before\":false},[\"content:\\\"\\ue54e\\\"\"]],[false,{\".fa-person-running:before\":false,\".fa-running:before\":false},[\"content:\\\"\\uf70c\\\"\"]],[false,{\".fa-person-shelter:before\":false},[\"content:\\\"\\ue54f\\\"\"]],[false,{\".fa-person-skating:before\":false,\".fa-skating:before\":false},[\"content:\\\"\\uf7c5\\\"\"]],[false,{\".fa-person-skiing:before\":false,\".fa-skiing:before\":false},[\"content:\\\"\\uf7c9\\\"\"]],[false,{\".fa-person-skiing-nordic:before\":false,\".fa-skiing-nordic:before\":false},[\"content:\\\"\\uf7ca\\\"\"]],[false,{\".fa-person-snowboarding:before\":false,\".fa-snowboarding:before\":false},[\"content:\\\"\\uf7ce\\\"\"]],[false,{\".fa-person-swimming:before\":false,\".fa-swimmer:before\":false},[\"content:\\\"\\uf5c4\\\"\"]],[false,{\".fa-person-through-window:before\":false},[\"content:\\\"\\ue433\\\"\"]],[false,{\".fa-person-walking:before\":false,\".fa-walking:before\":false},[\"content:\\\"\\uf554\\\"\"]],[false,{\".fa-person-walking-arrow-loop-left:before\":false},[\"content:\\\"\\ue551\\\"\"]],[false,{\".fa-person-walking-arrow-right:before\":false},[\"content:\\\"\\ue552\\\"\"]],[false,{\".fa-person-walking-dashed-line-arrow-right:before\":false},[\"content:\\\"\\ue553\\\"\"]],[false,{\".fa-person-walking-luggage:before\":false},[\"content:\\\"\\ue554\\\"\"]],[false,{\".fa-blind:before\":false,\".fa-person-walking-with-cane:before\":false},[\"content:\\\"\\uf29d\\\"\"]],[false,{\".fa-peseta-sign:before\":false},[\"content:\\\"\\ue221\\\"\"]],[false,{\".fa-peso-sign:before\":false},[\"content:\\\"\\ue222\\\"\"]],[false,{\".fa-phone:before\":false},[\"content:\\\"\\uf095\\\"\"]],[false,{\".fa-phone-alt:before\":false,\".fa-phone-flip:before\":false},[\"content:\\\"\\uf879\\\"\"]],[false,{\".fa-phone-slash:before\":false},[\"content:\\\"\\uf3dd\\\"\"]],[false,{\".fa-phone-volume:before\":false,\".fa-volume-control-phone:before\":false},[\"content:\\\"\\uf2a0\\\"\"]],[false,{\".fa-photo-film:before\":false,\".fa-photo-video:before\":false},[\"content:\\\"\\uf87c\\\"\"]],[false,{\".fa-piggy-bank:before\":false},[\"content:\\\"\\uf4d3\\\"\"]],[false,{\".fa-pills:before\":false},[\"content:\\\"\\uf484\\\"\"]],[false,{\".fa-pizza-slice:before\":false},[\"content:\\\"\\uf818\\\"\"]],[false,{\".fa-place-of-worship:before\":false},[\"content:\\\"\\uf67f\\\"\"]],[false,{\".fa-plane:before\":false},[\"content:\\\"\\uf072\\\"\"]],[false,{\".fa-plane-arrival:before\":false},[\"content:\\\"\\uf5af\\\"\"]],[false,{\".fa-plane-circle-check:before\":false},[\"content:\\\"\\ue555\\\"\"]],[false,{\".fa-plane-circle-exclamation:before\":false},[\"content:\\\"\\ue556\\\"\"]],[false,{\".fa-plane-circle-xmark:before\":false},[\"content:\\\"\\ue557\\\"\"]],[false,{\".fa-plane-departure:before\":false},[\"content:\\\"\\uf5b0\\\"\"]],[false,{\".fa-plane-lock:before\":false},[\"content:\\\"\\ue558\\\"\"]],[false,{\".fa-plane-slash:before\":false},[\"content:\\\"\\ue069\\\"\"]],[false,{\".fa-plane-up:before\":false},[\"content:\\\"\\ue22d\\\"\"]],[false,{\".fa-plant-wilt:before\":false},[\"content:\\\"\\ue43b\\\"\"]],[false,{\".fa-plate-wheat:before\":false},[\"content:\\\"\\ue55a\\\"\"]],[false,{\".fa-play:before\":false},[\"content:\\\"\\uf04b\\\"\"]],[false,{\".fa-plug:before\":false},[\"content:\\\"\\uf1e6\\\"\"]],[false,{\".fa-plug-circle-bolt:before\":false},[\"content:\\\"\\ue55b\\\"\"]],[false,{\".fa-plug-circle-check:before\":false},[\"content:\\\"\\ue55c\\\"\"]],[false,{\".fa-plug-circle-exclamation:before\":false},[\"content:\\\"\\ue55d\\\"\"]],[false,{\".fa-plug-circle-minus:before\":false},[\"content:\\\"\\ue55e\\\"\"]],[false,{\".fa-plug-circle-plus:before\":false},[\"content:\\\"\\ue55f\\\"\"]],[false,{\".fa-plug-circle-xmark:before\":false},[\"content:\\\"\\ue560\\\"\"]],[false,{\".fa-add:before\":false,\".fa-plus:before\":false},[\"content:\\\"+\\\"\"]],[false,{\".fa-plus-minus:before\":false},[\"content:\\\"\\ue43c\\\"\"]],[false,{\".fa-podcast:before\":false},[\"content:\\\"\\uf2ce\\\"\"]],[false,{\".fa-poo:before\":false},[\"content:\\\"\\uf2fe\\\"\"]],[false,{\".fa-poo-bolt:before\":false,\".fa-poo-storm:before\":false},[\"content:\\\"\\uf75a\\\"\"]],[false,{\".fa-poop:before\":false},[\"content:\\\"\\uf619\\\"\"]],[false,{\".fa-power-off:before\":false},[\"content:\\\"\\uf011\\\"\"]],[false,{\".fa-prescription:before\":false},[\"content:\\\"\\uf5b1\\\"\"]],[false,{\".fa-prescription-bottle:before\":false},[\"content:\\\"\\uf485\\\"\"]],[false,{\".fa-prescription-bottle-alt:before\":false,\".fa-prescription-bottle-medical:before\":false},[\"content:\\\"\\uf486\\\"\"]],[false,{\".fa-print:before\":false},[\"content:\\\"\\uf02f\\\"\"]],[false,{\".fa-pump-medical:before\":false},[\"content:\\\"\\ue06a\\\"\"]],[false,{\".fa-pump-soap:before\":false},[\"content:\\\"\\ue06b\\\"\"]],[false,{\".fa-puzzle-piece:before\":false},[\"content:\\\"\\uf12e\\\"\"]],[false,{\".fa-q:before\":false},[\"content:\\\"Q\\\"\"]],[false,{\".fa-qrcode:before\":false},[\"content:\\\"\\uf029\\\"\"]],[false,{\".fa-question:before\":false},[\"content:\\\"?\\\"\"]],[false,{\".fa-quote-left-alt:before\":false,\".fa-quote-left:before\":false},[\"content:\\\"\\uf10d\\\"\"]],[false,{\".fa-quote-right-alt:before\":false,\".fa-quote-right:before\":false},[\"content:\\\"\\uf10e\\\"\"]],[false,{\".fa-r:before\":false},[\"content:\\\"R\\\"\"]],[false,{\".fa-radiation:before\":false},[\"content:\\\"\\uf7b9\\\"\"]],[false,{\".fa-radio:before\":false},[\"content:\\\"\\uf8d7\\\"\"]],[false,{\".fa-rainbow:before\":false},[\"content:\\\"\\uf75b\\\"\"]],[false,{\".fa-ranking-star:before\":false},[\"content:\\\"\\ue561\\\"\"]],[false,{\".fa-receipt:before\":false},[\"content:\\\"\\uf543\\\"\"]],[false,{\".fa-record-vinyl:before\":false},[\"content:\\\"\\uf8d9\\\"\"]],[false,{\".fa-ad:before\":false,\".fa-rectangle-ad:before\":false},[\"content:\\\"\\uf641\\\"\"]],[false,{\".fa-list-alt:before\":false,\".fa-rectangle-list:before\":false},[\"content:\\\"\\uf022\\\"\"]],[false,{\".fa-rectangle-times:before\":false,\".fa-rectangle-xmark:before\":false,\".fa-times-rectangle:before\":false,\".fa-window-close:before\":false},[\"content:\\\"\\uf410\\\"\"]],[false,{\".fa-recycle:before\":false},[\"content:\\\"\\uf1b8\\\"\"]],[false,{\".fa-registered:before\":false},[\"content:\\\"\\uf25d\\\"\"]],[false,{\".fa-repeat:before\":false},[\"content:\\\"\\uf363\\\"\"]],[false,{\".fa-mail-reply:before\":false,\".fa-reply:before\":false},[\"content:\\\"\\uf3e5\\\"\"]],[false,{\".fa-mail-reply-all:before\":false,\".fa-reply-all:before\":false},[\"content:\\\"\\uf122\\\"\"]],[false,{\".fa-republican:before\":false},[\"content:\\\"\\uf75e\\\"\"]],[false,{\".fa-restroom:before\":false},[\"content:\\\"\\uf7bd\\\"\"]],[false,{\".fa-retweet:before\":false},[\"content:\\\"\\uf079\\\"\"]],[false,{\".fa-ribbon:before\":false},[\"content:\\\"\\uf4d6\\\"\"]],[false,{\".fa-right-from-bracket:before\":false,\".fa-sign-out-alt:before\":false},[\"content:\\\"\\uf2f5\\\"\"]],[false,{\".fa-exchange-alt:before\":false,\".fa-right-left:before\":false},[\"content:\\\"\\uf362\\\"\"]],[false,{\".fa-long-arrow-alt-right:before\":false,\".fa-right-long:before\":false},[\"content:\\\"\\uf30b\\\"\"]],[false,{\".fa-right-to-bracket:before\":false,\".fa-sign-in-alt:before\":false},[\"content:\\\"\\uf2f6\\\"\"]],[false,{\".fa-ring:before\":false},[\"content:\\\"\\uf70b\\\"\"]],[false,{\".fa-road:before\":false},[\"content:\\\"\\uf018\\\"\"]],[false,{\".fa-road-barrier:before\":false},[\"content:\\\"\\ue562\\\"\"]],[false,{\".fa-road-bridge:before\":false},[\"content:\\\"\\ue563\\\"\"]],[false,{\".fa-road-circle-check:before\":false},[\"content:\\\"\\ue564\\\"\"]],[false,{\".fa-road-circle-exclamation:before\":false},[\"content:\\\"\\ue565\\\"\"]],[false,{\".fa-road-circle-xmark:before\":false},[\"content:\\\"\\ue566\\\"\"]],[false,{\".fa-road-lock:before\":false},[\"content:\\\"\\ue567\\\"\"]],[false,{\".fa-road-spikes:before\":false},[\"content:\\\"\\ue568\\\"\"]],[false,{\".fa-robot:before\":false},[\"content:\\\"\\uf544\\\"\"]],[false,{\".fa-rocket:before\":false},[\"content:\\\"\\uf135\\\"\"]],[false,{\".fa-rotate:before\":false,\".fa-sync-alt:before\":false},[\"content:\\\"\\uf2f1\\\"\"]],[false,{\".fa-rotate-back:before\":false,\".fa-rotate-backward:before\":false,\".fa-rotate-left:before\":false,\".fa-undo-alt:before\":false},[\"content:\\\"\\uf2ea\\\"\"]],[false,{\".fa-redo-alt:before\":false,\".fa-rotate-forward:before\":false,\".fa-rotate-right:before\":false},[\"content:\\\"\\uf2f9\\\"\"]],[false,{\".fa-route:before\":false},[\"content:\\\"\\uf4d7\\\"\"]],[false,{\".fa-feed:before\":false,\".fa-rss:before\":false},[\"content:\\\"\\uf09e\\\"\"]],[false,{\".fa-rouble:before\":false,\".fa-rub:before\":false,\".fa-ruble-sign:before\":false,\".fa-ruble:before\":false},[\"content:\\\"\\uf158\\\"\"]],[false,{\".fa-rug:before\":false},[\"content:\\\"\\ue569\\\"\"]],[false,{\".fa-ruler:before\":false},[\"content:\\\"\\uf545\\\"\"]],[false,{\".fa-ruler-combined:before\":false},[\"content:\\\"\\uf546\\\"\"]],[false,{\".fa-ruler-horizontal:before\":false},[\"content:\\\"\\uf547\\\"\"]],[false,{\".fa-ruler-vertical:before\":false},[\"content:\\\"\\uf548\\\"\"]],[false,{\".fa-rupee-sign:before\":false,\".fa-rupee:before\":false},[\"content:\\\"\\uf156\\\"\"]],[false,{\".fa-rupiah-sign:before\":false},[\"content:\\\"\\ue23d\\\"\"]],[false,{\".fa-s:before\":false},[\"content:\\\"S\\\"\"]],[false,{\".fa-sack-dollar:before\":false},[\"content:\\\"\\uf81d\\\"\"]],[false,{\".fa-sack-xmark:before\":false},[\"content:\\\"\\ue56a\\\"\"]],[false,{\".fa-sailboat:before\":false},[\"content:\\\"\\ue445\\\"\"]],[false,{\".fa-satellite:before\":false},[\"content:\\\"\\uf7bf\\\"\"]],[false,{\".fa-satellite-dish:before\":false},[\"content:\\\"\\uf7c0\\\"\"]],[false,{\".fa-balance-scale:before\":false,\".fa-scale-balanced:before\":false},[\"content:\\\"\\uf24e\\\"\"]],[false,{\".fa-balance-scale-left:before\":false,\".fa-scale-unbalanced:before\":false},[\"content:\\\"\\uf515\\\"\"]],[false,{\".fa-balance-scale-right:before\":false,\".fa-scale-unbalanced-flip:before\":false},[\"content:\\\"\\uf516\\\"\"]],[false,{\".fa-school:before\":false},[\"content:\\\"\\uf549\\\"\"]],[false,{\".fa-school-circle-check:before\":false},[\"content:\\\"\\ue56b\\\"\"]],[false,{\".fa-school-circle-exclamation:before\":false},[\"content:\\\"\\ue56c\\\"\"]],[false,{\".fa-school-circle-xmark:before\":false},[\"content:\\\"\\ue56d\\\"\"]],[false,{\".fa-school-flag:before\":false},[\"content:\\\"\\ue56e\\\"\"]],[false,{\".fa-school-lock:before\":false},[\"content:\\\"\\ue56f\\\"\"]],[false,{\".fa-cut:before\":false,\".fa-scissors:before\":false},[\"content:\\\"\\uf0c4\\\"\"]],[false,{\".fa-screwdriver:before\":false},[\"content:\\\"\\uf54a\\\"\"]],[false,{\".fa-screwdriver-wrench:before\":false,\".fa-tools:before\":false},[\"content:\\\"\\uf7d9\\\"\"]],[false,{\".fa-scroll:before\":false},[\"content:\\\"\\uf70e\\\"\"]],[false,{\".fa-scroll-torah:before\":false,\".fa-torah:before\":false},[\"content:\\\"\\uf6a0\\\"\"]],[false,{\".fa-sd-card:before\":false},[\"content:\\\"\\uf7c2\\\"\"]],[false,{\".fa-section:before\":false},[\"content:\\\"\\ue447\\\"\"]],[false,{\".fa-seedling:before\":false,\".fa-sprout:before\":false},[\"content:\\\"\\uf4d8\\\"\"]],[false,{\".fa-server:before\":false},[\"content:\\\"\\uf233\\\"\"]],[false,{\".fa-shapes:before\":false,\".fa-triangle-circle-square:before\":false},[\"content:\\\"\\uf61f\\\"\"]],[false,{\".fa-arrow-turn-right:before\":false,\".fa-mail-forward:before\":false,\".fa-share:before\":false},[\"content:\\\"\\uf064\\\"\"]],[false,{\".fa-share-from-square:before\":false,\".fa-share-square:before\":false},[\"content:\\\"\\uf14d\\\"\"]],[false,{\".fa-share-alt:before\":false,\".fa-share-nodes:before\":false},[\"content:\\\"\\uf1e0\\\"\"]],[false,{\".fa-sheet-plastic:before\":false},[\"content:\\\"\\ue571\\\"\"]],[false,{\".fa-ils:before\":false,\".fa-shekel-sign:before\":false,\".fa-shekel:before\":false,\".fa-sheqel-sign:before\":false,\".fa-sheqel:before\":false},[\"content:\\\"\\uf20b\\\"\"]],[false,{\".fa-shield-blank:before\":false,\".fa-shield:before\":false},[\"content:\\\"\\uf132\\\"\"]],[false,{\".fa-shield-cat:before\":false},[\"content:\\\"\\ue572\\\"\"]],[false,{\".fa-shield-dog:before\":false},[\"content:\\\"\\ue573\\\"\"]],[false,{\".fa-shield-alt:before\":false,\".fa-shield-halved:before\":false},[\"content:\\\"\\uf3ed\\\"\"]],[false,{\".fa-shield-heart:before\":false},[\"content:\\\"\\ue574\\\"\"]],[false,{\".fa-shield-virus:before\":false},[\"content:\\\"\\ue06c\\\"\"]],[false,{\".fa-ship:before\":false},[\"content:\\\"\\uf21a\\\"\"]],[false,{\".fa-shirt:before\":false,\".fa-t-shirt:before\":false,\".fa-tshirt:before\":false},[\"content:\\\"\\uf553\\\"\"]],[false,{\".fa-shoe-prints:before\":false},[\"content:\\\"\\uf54b\\\"\"]],[false,{\".fa-shop:before\":false,\".fa-store-alt:before\":false},[\"content:\\\"\\uf54f\\\"\"]],[false,{\".fa-shop-lock:before\":false},[\"content:\\\"\\ue4a5\\\"\"]],[false,{\".fa-shop-slash:before\":false,\".fa-store-alt-slash:before\":false},[\"content:\\\"\\ue070\\\"\"]],[false,{\".fa-shower:before\":false},[\"content:\\\"\\uf2cc\\\"\"]],[false,{\".fa-shrimp:before\":false},[\"content:\\\"\\ue448\\\"\"]],[false,{\".fa-random:before\":false,\".fa-shuffle:before\":false},[\"content:\\\"\\uf074\\\"\"]],[false,{\".fa-shuttle-space:before\":false,\".fa-space-shuttle:before\":false},[\"content:\\\"\\uf197\\\"\"]],[false,{\".fa-sign-hanging:before\":false,\".fa-sign:before\":false},[\"content:\\\"\\uf4d9\\\"\"]],[false,{\".fa-signal-5:before\":false,\".fa-signal-perfect:before\":false,\".fa-signal:before\":false},[\"content:\\\"\\uf012\\\"\"]],[false,{\".fa-signature:before\":false},[\"content:\\\"\\uf5b7\\\"\"]],[false,{\".fa-map-signs:before\":false,\".fa-signs-post:before\":false},[\"content:\\\"\\uf277\\\"\"]],[false,{\".fa-sim-card:before\":false},[\"content:\\\"\\uf7c4\\\"\"]],[false,{\".fa-sink:before\":false},[\"content:\\\"\\ue06d\\\"\"]],[false,{\".fa-sitemap:before\":false},[\"content:\\\"\\uf0e8\\\"\"]],[false,{\".fa-skull:before\":false},[\"content:\\\"\\uf54c\\\"\"]],[false,{\".fa-skull-crossbones:before\":false},[\"content:\\\"\\uf714\\\"\"]],[false,{\".fa-slash:before\":false},[\"content:\\\"\\uf715\\\"\"]],[false,{\".fa-sleigh:before\":false},[\"content:\\\"\\uf7cc\\\"\"]],[false,{\".fa-sliders-h:before\":false,\".fa-sliders:before\":false},[\"content:\\\"\\uf1de\\\"\"]],[false,{\".fa-smog:before\":false},[\"content:\\\"\\uf75f\\\"\"]],[false,{\".fa-smoking:before\":false},[\"content:\\\"\\uf48d\\\"\"]],[false,{\".fa-snowflake:before\":false},[\"content:\\\"\\uf2dc\\\"\"]],[false,{\".fa-snowman:before\":false},[\"content:\\\"\\uf7d0\\\"\"]],[false,{\".fa-snowplow:before\":false},[\"content:\\\"\\uf7d2\\\"\"]],[false,{\".fa-soap:before\":false},[\"content:\\\"\\ue06e\\\"\"]],[false,{\".fa-socks:before\":false},[\"content:\\\"\\uf696\\\"\"]],[false,{\".fa-solar-panel:before\":false},[\"content:\\\"\\uf5ba\\\"\"]],[false,{\".fa-sort:before\":false,\".fa-unsorted:before\":false},[\"content:\\\"\\uf0dc\\\"\"]],[false,{\".fa-sort-desc:before\":false,\".fa-sort-down:before\":false},[\"content:\\\"\\uf0dd\\\"\"]],[false,{\".fa-sort-asc:before\":false,\".fa-sort-up:before\":false},[\"content:\\\"\\uf0de\\\"\"]],[false,{\".fa-spa:before\":false},[\"content:\\\"\\uf5bb\\\"\"]],[false,{\".fa-pastafarianism:before\":false,\".fa-spaghetti-monster-flying:before\":false},[\"content:\\\"\\uf67b\\\"\"]],[false,{\".fa-spell-check:before\":false},[\"content:\\\"\\uf891\\\"\"]],[false,{\".fa-spider:before\":false},[\"content:\\\"\\uf717\\\"\"]],[false,{\".fa-spinner:before\":false},[\"content:\\\"\\uf110\\\"\"]],[false,{\".fa-splotch:before\":false},[\"content:\\\"\\uf5bc\\\"\"]],[false,{\".fa-spoon:before\":false,\".fa-utensil-spoon:before\":false},[\"content:\\\"\\uf2e5\\\"\"]],[false,{\".fa-spray-can:before\":false},[\"content:\\\"\\uf5bd\\\"\"]],[false,{\".fa-air-freshener:before\":false,\".fa-spray-can-sparkles:before\":false},[\"content:\\\"\\uf5d0\\\"\"]],[false,{\".fa-square:before\":false},[\"content:\\\"\\uf0c8\\\"\"]],[false,{\".fa-external-link-square:before\":false,\".fa-square-arrow-up-right:before\":false},[\"content:\\\"\\uf14c\\\"\"]],[false,{\".fa-caret-square-down:before\":false,\".fa-square-caret-down:before\":false},[\"content:\\\"\\uf150\\\"\"]],[false,{\".fa-caret-square-left:before\":false,\".fa-square-caret-left:before\":false},[\"content:\\\"\\uf191\\\"\"]],[false,{\".fa-caret-square-right:before\":false,\".fa-square-caret-right:before\":false},[\"content:\\\"\\uf152\\\"\"]],[false,{\".fa-caret-square-up:before\":false,\".fa-square-caret-up:before\":false},[\"content:\\\"\\uf151\\\"\"]],[false,{\".fa-check-square:before\":false,\".fa-square-check:before\":false},[\"content:\\\"\\uf14a\\\"\"]],[false,{\".fa-envelope-square:before\":false,\".fa-square-envelope:before\":false},[\"content:\\\"\\uf199\\\"\"]],[false,{\".fa-square-full:before\":false},[\"content:\\\"\\uf45c\\\"\"]],[false,{\".fa-h-square:before\":false,\".fa-square-h:before\":false},[\"content:\\\"\\uf0fd\\\"\"]],[false,{\".fa-minus-square:before\":false,\".fa-square-minus:before\":false},[\"content:\\\"\\uf146\\\"\"]],[false,{\".fa-square-nfi:before\":false},[\"content:\\\"\\ue576\\\"\"]],[false,{\".fa-parking:before\":false,\".fa-square-parking:before\":false},[\"content:\\\"\\uf540\\\"\"]],[false,{\".fa-pen-square:before\":false,\".fa-pencil-square:before\":false,\".fa-square-pen:before\":false},[\"content:\\\"\\uf14b\\\"\"]],[false,{\".fa-square-person-confined:before\":false},[\"content:\\\"\\ue577\\\"\"]],[false,{\".fa-phone-square:before\":false,\".fa-square-phone:before\":false},[\"content:\\\"\\uf098\\\"\"]],[false,{\".fa-phone-square-alt:before\":false,\".fa-square-phone-flip:before\":false},[\"content:\\\"\\uf87b\\\"\"]],[false,{\".fa-plus-square:before\":false,\".fa-square-plus:before\":false},[\"content:\\\"\\uf0fe\\\"\"]],[false,{\".fa-poll-h:before\":false,\".fa-square-poll-horizontal:before\":false},[\"content:\\\"\\uf682\\\"\"]],[false,{\".fa-poll:before\":false,\".fa-square-poll-vertical:before\":false},[\"content:\\\"\\uf681\\\"\"]],[false,{\".fa-square-root-alt:before\":false,\".fa-square-root-variable:before\":false},[\"content:\\\"\\uf698\\\"\"]],[false,{\".fa-rss-square:before\":false,\".fa-square-rss:before\":false},[\"content:\\\"\\uf143\\\"\"]],[false,{\".fa-share-alt-square:before\":false,\".fa-square-share-nodes:before\":false},[\"content:\\\"\\uf1e1\\\"\"]],[false,{\".fa-external-link-square-alt:before\":false,\".fa-square-up-right:before\":false},[\"content:\\\"\\uf360\\\"\"]],[false,{\".fa-square-virus:before\":false},[\"content:\\\"\\ue578\\\"\"]],[false,{\".fa-square-xmark:before\":false,\".fa-times-square:before\":false,\".fa-xmark-square:before\":false},[\"content:\\\"\\uf2d3\\\"\"]],[false,{\".fa-rod-asclepius:before\":false,\".fa-rod-snake:before\":false,\".fa-staff-aesculapius:before\":false,\".fa-staff-snake:before\":false},[\"content:\\\"\\ue579\\\"\"]],[false,{\".fa-stairs:before\":false},[\"content:\\\"\\ue289\\\"\"]],[false,{\".fa-stamp:before\":false},[\"content:\\\"\\uf5bf\\\"\"]],[false,{\".fa-star:before\":false},[\"content:\\\"\\uf005\\\"\"]],[false,{\".fa-star-and-crescent:before\":false},[\"content:\\\"\\uf699\\\"\"]],[false,{\".fa-star-half:before\":false},[\"content:\\\"\\uf089\\\"\"]],[false,{\".fa-star-half-alt:before\":false,\".fa-star-half-stroke:before\":false},[\"content:\\\"\\uf5c0\\\"\"]],[false,{\".fa-star-of-david:before\":false},[\"content:\\\"\\uf69a\\\"\"]],[false,{\".fa-star-of-life:before\":false},[\"content:\\\"\\uf621\\\"\"]],[false,{\".fa-gbp:before\":false,\".fa-pound-sign:before\":false,\".fa-sterling-sign:before\":false},[\"content:\\\"\\uf154\\\"\"]],[false,{\".fa-stethoscope:before\":false},[\"content:\\\"\\uf0f1\\\"\"]],[false,{\".fa-stop:before\":false},[\"content:\\\"\\uf04d\\\"\"]],[false,{\".fa-stopwatch:before\":false},[\"content:\\\"\\uf2f2\\\"\"]],[false,{\".fa-stopwatch-20:before\":false},[\"content:\\\"\\ue06f\\\"\"]],[false,{\".fa-store:before\":false},[\"content:\\\"\\uf54e\\\"\"]],[false,{\".fa-store-slash:before\":false},[\"content:\\\"\\ue071\\\"\"]],[false,{\".fa-street-view:before\":false},[\"content:\\\"\\uf21d\\\"\"]],[false,{\".fa-strikethrough:before\":false},[\"content:\\\"\\uf0cc\\\"\"]],[false,{\".fa-stroopwafel:before\":false},[\"content:\\\"\\uf551\\\"\"]],[false,{\".fa-subscript:before\":false},[\"content:\\\"\\uf12c\\\"\"]],[false,{\".fa-suitcase:before\":false},[\"content:\\\"\\uf0f2\\\"\"]],[false,{\".fa-medkit:before\":false,\".fa-suitcase-medical:before\":false},[\"content:\\\"\\uf0fa\\\"\"]],[false,{\".fa-suitcase-rolling:before\":false},[\"content:\\\"\\uf5c1\\\"\"]],[false,{\".fa-sun:before\":false},[\"content:\\\"\\uf185\\\"\"]],[false,{\".fa-sun-plant-wilt:before\":false},[\"content:\\\"\\ue57a\\\"\"]],[false,{\".fa-superscript:before\":false},[\"content:\\\"\\uf12b\\\"\"]],[false,{\".fa-swatchbook:before\":false},[\"content:\\\"\\uf5c3\\\"\"]],[false,{\".fa-synagogue:before\":false},[\"content:\\\"\\uf69b\\\"\"]],[false,{\".fa-syringe:before\":false},[\"content:\\\"\\uf48e\\\"\"]],[false,{\".fa-t:before\":false},[\"content:\\\"T\\\"\"]],[false,{\".fa-table:before\":false},[\"content:\\\"\\uf0ce\\\"\"]],[false,{\".fa-table-cells:before\":false,\".fa-th:before\":false},[\"content:\\\"\\uf00a\\\"\"]],[false,{\".fa-table-cells-large:before\":false,\".fa-th-large:before\":false},[\"content:\\\"\\uf009\\\"\"]],[false,{\".fa-columns:before\":false,\".fa-table-columns:before\":false},[\"content:\\\"\\uf0db\\\"\"]],[false,{\".fa-table-list:before\":false,\".fa-th-list:before\":false},[\"content:\\\"\\uf00b\\\"\"]],[false,{\".fa-ping-pong-paddle-ball:before\":false,\".fa-table-tennis-paddle-ball:before\":false,\".fa-table-tennis:before\":false},[\"content:\\\"\\uf45d\\\"\"]],[false,{\".fa-tablet-android:before\":false,\".fa-tablet:before\":false},[\"content:\\\"\\uf3fb\\\"\"]],[false,{\".fa-tablet-button:before\":false},[\"content:\\\"\\uf10a\\\"\"]],[false,{\".fa-tablet-alt:before\":false,\".fa-tablet-screen-button:before\":false},[\"content:\\\"\\uf3fa\\\"\"]],[false,{\".fa-tablets:before\":false},[\"content:\\\"\\uf490\\\"\"]],[false,{\".fa-digital-tachograph:before\":false,\".fa-tachograph-digital:before\":false},[\"content:\\\"\\uf566\\\"\"]],[false,{\".fa-tag:before\":false},[\"content:\\\"\\uf02b\\\"\"]],[false,{\".fa-tags:before\":false},[\"content:\\\"\\uf02c\\\"\"]],[false,{\".fa-tape:before\":false},[\"content:\\\"\\uf4db\\\"\"]],[false,{\".fa-tarp:before\":false},[\"content:\\\"\\ue57b\\\"\"]],[false,{\".fa-tarp-droplet:before\":false},[\"content:\\\"\\ue57c\\\"\"]],[false,{\".fa-cab:before\":false,\".fa-taxi:before\":false},[\"content:\\\"\\uf1ba\\\"\"]],[false,{\".fa-teeth:before\":false},[\"content:\\\"\\uf62e\\\"\"]],[false,{\".fa-teeth-open:before\":false},[\"content:\\\"\\uf62f\\\"\"]],[false,{\".fa-temperature-arrow-down:before\":false,\".fa-temperature-down:before\":false},[\"content:\\\"\\ue03f\\\"\"]],[false,{\".fa-temperature-arrow-up:before\":false,\".fa-temperature-up:before\":false},[\"content:\\\"\\ue040\\\"\"]],[false,{\".fa-temperature-0:before\":false,\".fa-temperature-empty:before\":false,\".fa-thermometer-0:before\":false,\".fa-thermometer-empty:before\":false},[\"content:\\\"\\uf2cb\\\"\"]],[false,{\".fa-temperature-4:before\":false,\".fa-temperature-full:before\":false,\".fa-thermometer-4:before\":false,\".fa-thermometer-full:before\":false},[\"content:\\\"\\uf2c7\\\"\"]],[false,{\".fa-temperature-2:before\":false,\".fa-temperature-half:before\":false,\".fa-thermometer-2:before\":false,\".fa-thermometer-half:before\":false},[\"content:\\\"\\uf2c9\\\"\"]],[false,{\".fa-temperature-high:before\":false},[\"content:\\\"\\uf769\\\"\"]],[false,{\".fa-temperature-low:before\":false},[\"content:\\\"\\uf76b\\\"\"]],[false,{\".fa-temperature-1:before\":false,\".fa-temperature-quarter:before\":false,\".fa-thermometer-1:before\":false,\".fa-thermometer-quarter:before\":false},[\"content:\\\"\\uf2ca\\\"\"]],[false,{\".fa-temperature-3:before\":false,\".fa-temperature-three-quarters:before\":false,\".fa-thermometer-3:before\":false,\".fa-thermometer-three-quarters:before\":false},[\"content:\\\"\\uf2c8\\\"\"]],[false,{\".fa-tenge-sign:before\":false,\".fa-tenge:before\":false},[\"content:\\\"\\uf7d7\\\"\"]],[false,{\".fa-tent:before\":false},[\"content:\\\"\\ue57d\\\"\"]],[false,{\".fa-tent-arrow-down-to-line:before\":false},[\"content:\\\"\\ue57e\\\"\"]],[false,{\".fa-tent-arrow-left-right:before\":false},[\"content:\\\"\\ue57f\\\"\"]],[false,{\".fa-tent-arrow-turn-left:before\":false},[\"content:\\\"\\ue580\\\"\"]],[false,{\".fa-tent-arrows-down:before\":false},[\"content:\\\"\\ue581\\\"\"]],[false,{\".fa-tents:before\":false},[\"content:\\\"\\ue582\\\"\"]],[false,{\".fa-terminal:before\":false},[\"content:\\\"\\uf120\\\"\"]],[false,{\".fa-text-height:before\":false},[\"content:\\\"\\uf034\\\"\"]],[false,{\".fa-remove-format:before\":false,\".fa-text-slash:before\":false},[\"content:\\\"\\uf87d\\\"\"]],[false,{\".fa-text-width:before\":false},[\"content:\\\"\\uf035\\\"\"]],[false,{\".fa-thermometer:before\":false},[\"content:\\\"\\uf491\\\"\"]],[false,{\".fa-thumbs-down:before\":false},[\"content:\\\"\\uf165\\\"\"]],[false,{\".fa-thumbs-up:before\":false},[\"content:\\\"\\uf164\\\"\"]],[false,{\".fa-thumb-tack:before\":false,\".fa-thumbtack:before\":false},[\"content:\\\"\\uf08d\\\"\"]],[false,{\".fa-ticket:before\":false},[\"content:\\\"\\uf145\\\"\"]],[false,{\".fa-ticket-alt:before\":false,\".fa-ticket-simple:before\":false},[\"content:\\\"\\uf3ff\\\"\"]],[false,{\".fa-timeline:before\":false},[\"content:\\\"\\ue29c\\\"\"]],[false,{\".fa-toggle-off:before\":false},[\"content:\\\"\\uf204\\\"\"]],[false,{\".fa-toggle-on:before\":false},[\"content:\\\"\\uf205\\\"\"]],[false,{\".fa-toilet:before\":false},[\"content:\\\"\\uf7d8\\\"\"]],[false,{\".fa-toilet-paper:before\":false},[\"content:\\\"\\uf71e\\\"\"]],[false,{\".fa-toilet-paper-slash:before\":false},[\"content:\\\"\\ue072\\\"\"]],[false,{\".fa-toilet-portable:before\":false},[\"content:\\\"\\ue583\\\"\"]],[false,{\".fa-toilets-portable:before\":false},[\"content:\\\"\\ue584\\\"\"]],[false,{\".fa-toolbox:before\":false},[\"content:\\\"\\uf552\\\"\"]],[false,{\".fa-tooth:before\":false},[\"content:\\\"\\uf5c9\\\"\"]],[false,{\".fa-torii-gate:before\":false},[\"content:\\\"\\uf6a1\\\"\"]],[false,{\".fa-tornado:before\":false},[\"content:\\\"\\uf76f\\\"\"]],[false,{\".fa-broadcast-tower:before\":false,\".fa-tower-broadcast:before\":false},[\"content:\\\"\\uf519\\\"\"]],[false,{\".fa-tower-cell:before\":false},[\"content:\\\"\\ue585\\\"\"]],[false,{\".fa-tower-observation:before\":false},[\"content:\\\"\\ue586\\\"\"]],[false,{\".fa-tractor:before\":false},[\"content:\\\"\\uf722\\\"\"]],[false,{\".fa-trademark:before\":false},[\"content:\\\"\\uf25c\\\"\"]],[false,{\".fa-traffic-light:before\":false},[\"content:\\\"\\uf637\\\"\"]],[false,{\".fa-trailer:before\":false},[\"content:\\\"\\ue041\\\"\"]],[false,{\".fa-train:before\":false},[\"content:\\\"\\uf238\\\"\"]],[false,{\".fa-subway:before\":false,\".fa-train-subway:before\":false},[\"content:\\\"\\uf239\\\"\"]],[false,{\".fa-train-tram:before\":false,\".fa-tram:before\":false},[\"content:\\\"\\uf7da\\\"\"]],[false,{\".fa-transgender-alt:before\":false,\".fa-transgender:before\":false},[\"content:\\\"\\uf225\\\"\"]],[false,{\".fa-trash:before\":false},[\"content:\\\"\\uf1f8\\\"\"]],[false,{\".fa-trash-arrow-up:before\":false,\".fa-trash-restore:before\":false},[\"content:\\\"\\uf829\\\"\"]],[false,{\".fa-trash-alt:before\":false,\".fa-trash-can:before\":false},[\"content:\\\"\\uf2ed\\\"\"]],[false,{\".fa-trash-can-arrow-up:before\":false,\".fa-trash-restore-alt:before\":false},[\"content:\\\"\\uf82a\\\"\"]],[false,{\".fa-tree:before\":false},[\"content:\\\"\\uf1bb\\\"\"]],[false,{\".fa-tree-city:before\":false},[\"content:\\\"\\ue587\\\"\"]],[false,{\".fa-exclamation-triangle:before\":false,\".fa-triangle-exclamation:before\":false,\".fa-warning:before\":false},[\"content:\\\"\\uf071\\\"\"]],[false,{\".fa-trophy:before\":false},[\"content:\\\"\\uf091\\\"\"]],[false,{\".fa-trowel:before\":false},[\"content:\\\"\\ue589\\\"\"]],[false,{\".fa-trowel-bricks:before\":false},[\"content:\\\"\\ue58a\\\"\"]],[false,{\".fa-truck:before\":false},[\"content:\\\"\\uf0d1\\\"\"]],[false,{\".fa-truck-arrow-right:before\":false},[\"content:\\\"\\ue58b\\\"\"]],[false,{\".fa-truck-droplet:before\":false},[\"content:\\\"\\ue58c\\\"\"]],[false,{\".fa-shipping-fast:before\":false,\".fa-truck-fast:before\":false},[\"content:\\\"\\uf48b\\\"\"]],[false,{\".fa-truck-field:before\":false},[\"content:\\\"\\ue58d\\\"\"]],[false,{\".fa-truck-field-un:before\":false},[\"content:\\\"\\ue58e\\\"\"]],[false,{\".fa-truck-front:before\":false},[\"content:\\\"\\ue2b7\\\"\"]],[false,{\".fa-ambulance:before\":false,\".fa-truck-medical:before\":false},[\"content:\\\"\\uf0f9\\\"\"]],[false,{\".fa-truck-monster:before\":false},[\"content:\\\"\\uf63b\\\"\"]],[false,{\".fa-truck-moving:before\":false},[\"content:\\\"\\uf4df\\\"\"]],[false,{\".fa-truck-pickup:before\":false},[\"content:\\\"\\uf63c\\\"\"]],[false,{\".fa-truck-plane:before\":false},[\"content:\\\"\\ue58f\\\"\"]],[false,{\".fa-truck-loading:before\":false,\".fa-truck-ramp-box:before\":false},[\"content:\\\"\\uf4de\\\"\"]],[false,{\".fa-teletype:before\":false,\".fa-tty:before\":false},[\"content:\\\"\\uf1e4\\\"\"]],[false,{\".fa-try:before\":false,\".fa-turkish-lira-sign:before\":false,\".fa-turkish-lira:before\":false},[\"content:\\\"\\ue2bb\\\"\"]],[false,{\".fa-level-down-alt:before\":false,\".fa-turn-down:before\":false},[\"content:\\\"\\uf3be\\\"\"]],[false,{\".fa-level-up-alt:before\":false,\".fa-turn-up:before\":false},[\"content:\\\"\\uf3bf\\\"\"]],[false,{\".fa-television:before\":false,\".fa-tv-alt:before\":false,\".fa-tv:before\":false},[\"content:\\\"\\uf26c\\\"\"]],[false,{\".fa-u:before\":false},[\"content:\\\"U\\\"\"]],[false,{\".fa-umbrella:before\":false},[\"content:\\\"\\uf0e9\\\"\"]],[false,{\".fa-umbrella-beach:before\":false},[\"content:\\\"\\uf5ca\\\"\"]],[false,{\".fa-underline:before\":false},[\"content:\\\"\\uf0cd\\\"\"]],[false,{\".fa-universal-access:before\":false},[\"content:\\\"\\uf29a\\\"\"]],[false,{\".fa-unlock:before\":false},[\"content:\\\"\\uf09c\\\"\"]],[false,{\".fa-unlock-alt:before\":false,\".fa-unlock-keyhole:before\":false},[\"content:\\\"\\uf13e\\\"\"]],[false,{\".fa-arrows-alt-v:before\":false,\".fa-up-down:before\":false},[\"content:\\\"\\uf338\\\"\"]],[false,{\".fa-arrows-alt:before\":false,\".fa-up-down-left-right:before\":false},[\"content:\\\"\\uf0b2\\\"\"]],[false,{\".fa-long-arrow-alt-up:before\":false,\".fa-up-long:before\":false},[\"content:\\\"\\uf30c\\\"\"]],[false,{\".fa-expand-alt:before\":false,\".fa-up-right-and-down-left-from-center:before\":false},[\"content:\\\"\\uf424\\\"\"]],[false,{\".fa-external-link-alt:before\":false,\".fa-up-right-from-square:before\":false},[\"content:\\\"\\uf35d\\\"\"]],[false,{\".fa-upload:before\":false},[\"content:\\\"\\uf093\\\"\"]],[false,{\".fa-user:before\":false},[\"content:\\\"\\uf007\\\"\"]],[false,{\".fa-user-astronaut:before\":false},[\"content:\\\"\\uf4fb\\\"\"]],[false,{\".fa-user-check:before\":false},[\"content:\\\"\\uf4fc\\\"\"]],[false,{\".fa-user-clock:before\":false},[\"content:\\\"\\uf4fd\\\"\"]],[false,{\".fa-user-doctor:before\":false,\".fa-user-md:before\":false},[\"content:\\\"\\uf0f0\\\"\"]],[false,{\".fa-user-cog:before\":false,\".fa-user-gear:before\":false},[\"content:\\\"\\uf4fe\\\"\"]],[false,{\".fa-user-graduate:before\":false},[\"content:\\\"\\uf501\\\"\"]],[false,{\".fa-user-friends:before\":false,\".fa-user-group:before\":false},[\"content:\\\"\\uf500\\\"\"]],[false,{\".fa-user-injured:before\":false},[\"content:\\\"\\uf728\\\"\"]],[false,{\".fa-user-alt:before\":false,\".fa-user-large:before\":false},[\"content:\\\"\\uf406\\\"\"]],[false,{\".fa-user-alt-slash:before\":false,\".fa-user-large-slash:before\":false},[\"content:\\\"\\uf4fa\\\"\"]],[false,{\".fa-user-lock:before\":false},[\"content:\\\"\\uf502\\\"\"]],[false,{\".fa-user-minus:before\":false},[\"content:\\\"\\uf503\\\"\"]],[false,{\".fa-user-ninja:before\":false},[\"content:\\\"\\uf504\\\"\"]],[false,{\".fa-user-nurse:before\":false},[\"content:\\\"\\uf82f\\\"\"]],[false,{\".fa-user-edit:before\":false,\".fa-user-pen:before\":false},[\"content:\\\"\\uf4ff\\\"\"]],[false,{\".fa-user-plus:before\":false},[\"content:\\\"\\uf234\\\"\"]],[false,{\".fa-user-secret:before\":false},[\"content:\\\"\\uf21b\\\"\"]],[false,{\".fa-user-shield:before\":false},[\"content:\\\"\\uf505\\\"\"]],[false,{\".fa-user-slash:before\":false},[\"content:\\\"\\uf506\\\"\"]],[false,{\".fa-user-tag:before\":false},[\"content:\\\"\\uf507\\\"\"]],[false,{\".fa-user-tie:before\":false},[\"content:\\\"\\uf508\\\"\"]],[false,{\".fa-user-times:before\":false,\".fa-user-xmark:before\":false},[\"content:\\\"\\uf235\\\"\"]],[false,{\".fa-users:before\":false},[\"content:\\\"\\uf0c0\\\"\"]],[false,{\".fa-users-between-lines:before\":false},[\"content:\\\"\\ue591\\\"\"]],[false,{\".fa-users-cog:before\":false,\".fa-users-gear:before\":false},[\"content:\\\"\\uf509\\\"\"]],[false,{\".fa-users-line:before\":false},[\"content:\\\"\\ue592\\\"\"]],[false,{\".fa-users-rays:before\":false},[\"content:\\\"\\ue593\\\"\"]],[false,{\".fa-users-rectangle:before\":false},[\"content:\\\"\\ue594\\\"\"]],[false,{\".fa-users-slash:before\":false},[\"content:\\\"\\ue073\\\"\"]],[false,{\".fa-users-viewfinder:before\":false},[\"content:\\\"\\ue595\\\"\"]],[false,{\".fa-cutlery:before\":false,\".fa-utensils:before\":false},[\"content:\\\"\\uf2e7\\\"\"]],[false,{\".fa-v:before\":false},[\"content:\\\"V\\\"\"]],[false,{\".fa-shuttle-van:before\":false,\".fa-van-shuttle:before\":false},[\"content:\\\"\\uf5b6\\\"\"]],[false,{\".fa-vault:before\":false},[\"content:\\\"\\ue2c5\\\"\"]],[false,{\".fa-vector-square:before\":false},[\"content:\\\"\\uf5cb\\\"\"]],[false,{\".fa-venus:before\":false},[\"content:\\\"\\uf221\\\"\"]],[false,{\".fa-venus-double:before\":false},[\"content:\\\"\\uf226\\\"\"]],[false,{\".fa-venus-mars:before\":false},[\"content:\\\"\\uf228\\\"\"]],[false,{\".fa-vest:before\":false},[\"content:\\\"\\ue085\\\"\"]],[false,{\".fa-vest-patches:before\":false},[\"content:\\\"\\ue086\\\"\"]],[false,{\".fa-vial:before\":false},[\"content:\\\"\\uf492\\\"\"]],[false,{\".fa-vial-circle-check:before\":false},[\"content:\\\"\\ue596\\\"\"]],[false,{\".fa-vial-virus:before\":false},[\"content:\\\"\\ue597\\\"\"]],[false,{\".fa-vials:before\":false},[\"content:\\\"\\uf493\\\"\"]],[false,{\".fa-video-camera:before\":false,\".fa-video:before\":false},[\"content:\\\"\\uf03d\\\"\"]],[false,{\".fa-video-slash:before\":false},[\"content:\\\"\\uf4e2\\\"\"]],[false,{\".fa-vihara:before\":false},[\"content:\\\"\\uf6a7\\\"\"]],[false,{\".fa-virus:before\":false},[\"content:\\\"\\ue074\\\"\"]],[false,{\".fa-virus-covid:before\":false},[\"content:\\\"\\ue4a8\\\"\"]],[false,{\".fa-virus-covid-slash:before\":false},[\"content:\\\"\\ue4a9\\\"\"]],[false,{\".fa-virus-slash:before\":false},[\"content:\\\"\\ue075\\\"\"]],[false,{\".fa-viruses:before\":false},[\"content:\\\"\\ue076\\\"\"]],[false,{\".fa-voicemail:before\":false},[\"content:\\\"\\uf897\\\"\"]],[false,{\".fa-volcano:before\":false},[\"content:\\\"\\uf770\\\"\"]],[false,{\".fa-volleyball-ball:before\":false,\".fa-volleyball:before\":false},[\"content:\\\"\\uf45f\\\"\"]],[false,{\".fa-volume-high:before\":false,\".fa-volume-up:before\":false},[\"content:\\\"\\uf028\\\"\"]],[false,{\".fa-volume-down:before\":false,\".fa-volume-low:before\":false},[\"content:\\\"\\uf027\\\"\"]],[false,{\".fa-volume-off:before\":false},[\"content:\\\"\\uf026\\\"\"]],[false,{\".fa-volume-mute:before\":false,\".fa-volume-times:before\":false,\".fa-volume-xmark:before\":false},[\"content:\\\"\\uf6a9\\\"\"]],[false,{\".fa-vr-cardboard:before\":false},[\"content:\\\"\\uf729\\\"\"]],[false,{\".fa-w:before\":false},[\"content:\\\"W\\\"\"]],[false,{\".fa-walkie-talkie:before\":false},[\"content:\\\"\\uf8ef\\\"\"]],[false,{\".fa-wallet:before\":false},[\"content:\\\"\\uf555\\\"\"]],[false,{\".fa-magic:before\":false,\".fa-wand-magic:before\":false},[\"content:\\\"\\uf0d0\\\"\"]],[false,{\".fa-magic-wand-sparkles:before\":false,\".fa-wand-magic-sparkles:before\":false},[\"content:\\\"\\ue2ca\\\"\"]],[false,{\".fa-wand-sparkles:before\":false},[\"content:\\\"\\uf72b\\\"\"]],[false,{\".fa-warehouse:before\":false},[\"content:\\\"\\uf494\\\"\"]],[false,{\".fa-water:before\":false},[\"content:\\\"\\uf773\\\"\"]],[false,{\".fa-ladder-water:before\":false,\".fa-swimming-pool:before\":false,\".fa-water-ladder:before\":false},[\"content:\\\"\\uf5c5\\\"\"]],[false,{\".fa-wave-square:before\":false},[\"content:\\\"\\uf83e\\\"\"]],[false,{\".fa-weight-hanging:before\":false},[\"content:\\\"\\uf5cd\\\"\"]],[false,{\".fa-weight-scale:before\":false,\".fa-weight:before\":false},[\"content:\\\"\\uf496\\\"\"]],[false,{\".fa-wheat-alt:before\":false,\".fa-wheat-awn:before\":false},[\"content:\\\"\\ue2cd\\\"\"]],[false,{\".fa-wheat-awn-circle-exclamation:before\":false},[\"content:\\\"\\ue598\\\"\"]],[false,{\".fa-wheelchair:before\":false},[\"content:\\\"\\uf193\\\"\"]],[false,{\".fa-wheelchair-alt:before\":false,\".fa-wheelchair-move:before\":false},[\"content:\\\"\\ue2ce\\\"\"]],[false,{\".fa-glass-whiskey:before\":false,\".fa-whiskey-glass:before\":false},[\"content:\\\"\\uf7a0\\\"\"]],[false,{\".fa-wifi-3:before\":false,\".fa-wifi-strong:before\":false,\".fa-wifi:before\":false},[\"content:\\\"\\uf1eb\\\"\"]],[false,{\".fa-wind:before\":false},[\"content:\\\"\\uf72e\\\"\"]],[false,{\".fa-window-maximize:before\":false},[\"content:\\\"\\uf2d0\\\"\"]],[false,{\".fa-window-minimize:before\":false},[\"content:\\\"\\uf2d1\\\"\"]],[false,{\".fa-window-restore:before\":false},[\"content:\\\"\\uf2d2\\\"\"]],[false,{\".fa-wine-bottle:before\":false},[\"content:\\\"\\uf72f\\\"\"]],[false,{\".fa-wine-glass:before\":false},[\"content:\\\"\\uf4e3\\\"\"]],[false,{\".fa-wine-glass-alt:before\":false,\".fa-wine-glass-empty:before\":false},[\"content:\\\"\\uf5ce\\\"\"]],[false,{\".fa-krw:before\":false,\".fa-won-sign:before\":false,\".fa-won:before\":false},[\"content:\\\"\\uf159\\\"\"]],[false,{\".fa-worm:before\":false},[\"content:\\\"\\ue599\\\"\"]],[false,{\".fa-wrench:before\":false},[\"content:\\\"\\uf0ad\\\"\"]],[false,{\".fa-x:before\":false},[\"content:\\\"X\\\"\"]],[false,{\".fa-x-ray:before\":false},[\"content:\\\"\\uf497\\\"\"]],[false,{\".fa-close:before\":false,\".fa-multiply:before\":false,\".fa-remove:before\":false,\".fa-times:before\":false,\".fa-xmark:before\":false},[\"content:\\\"\\uf00d\\\"\"]],[false,{\".fa-xmarks-lines:before\":false},[\"content:\\\"\\ue59a\\\"\"]],[false,{\".fa-y:before\":false},[\"content:\\\"Y\\\"\"]],[false,{\".fa-cny:before\":false,\".fa-jpy:before\":false,\".fa-rmb:before\":false,\".fa-yen-sign:before\":false,\".fa-yen:before\":false},[\"content:\\\"\\uf157\\\"\"]],[false,{\".fa-yin-yang:before\":false},[\"content:\\\"\\uf6ad\\\"\"]],[false,{\".fa-z:before\":false},[\"content:\\\"Z\\\"\"]],[false,{\".fa-sr-only\":false,\".fa-sr-only-focusable:not(:focus)\":false,\".sr-only\":false,\".sr-only-focusable:not(:focus)\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"white-space:nowrap\",\"border-width:0\"]],[true,{\":host\":true,\":root\":true},[\"--fa-font-brands:normal 400 1em\\/1 \\\"Font Awesome 6 Brands\\\"\"]],[true,\"@font-face{font-family:\\\"Font Awesome 6 Brands\\\";font-style:normal;font-weight:400;font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\")}\"],[false,{\".fa-brands\":false,\".fab\":false},[\"font-family:\\\"Font Awesome 6 Brands\\\"\",\"font-weight:400\"]],[false,{\".fa-42-group:before\":false,\".fa-innosoft:before\":false},[\"content:\\\"\\ue080\\\"\"]],[false,{\".fa-500px:before\":false},[\"content:\\\"\\uf26e\\\"\"]],[false,{\".fa-accessible-icon:before\":false},[\"content:\\\"\\uf368\\\"\"]],[false,{\".fa-accusoft:before\":false},[\"content:\\\"\\uf369\\\"\"]],[false,{\".fa-adn:before\":false},[\"content:\\\"\\uf170\\\"\"]],[false,{\".fa-adversal:before\":false},[\"content:\\\"\\uf36a\\\"\"]],[false,{\".fa-affiliatetheme:before\":false},[\"content:\\\"\\uf36b\\\"\"]],[false,{\".fa-airbnb:before\":false},[\"content:\\\"\\uf834\\\"\"]],[false,{\".fa-algolia:before\":false},[\"content:\\\"\\uf36c\\\"\"]],[false,{\".fa-alipay:before\":false},[\"content:\\\"\\uf642\\\"\"]],[false,{\".fa-amazon:before\":false},[\"content:\\\"\\uf270\\\"\"]],[false,{\".fa-amazon-pay:before\":false},[\"content:\\\"\\uf42c\\\"\"]],[false,{\".fa-amilia:before\":false},[\"content:\\\"\\uf36d\\\"\"]],[false,{\".fa-android:before\":false},[\"content:\\\"\\uf17b\\\"\"]],[false,{\".fa-angellist:before\":false},[\"content:\\\"\\uf209\\\"\"]],[false,{\".fa-angrycreative:before\":false},[\"content:\\\"\\uf36e\\\"\"]],[false,{\".fa-angular:before\":false},[\"content:\\\"\\uf420\\\"\"]],[false,{\".fa-app-store:before\":false},[\"content:\\\"\\uf36f\\\"\"]],[false,{\".fa-app-store-ios:before\":false},[\"content:\\\"\\uf370\\\"\"]],[false,{\".fa-apper:before\":false},[\"content:\\\"\\uf371\\\"\"]],[false,{\".fa-apple:before\":false},[\"content:\\\"\\uf179\\\"\"]],[false,{\".fa-apple-pay:before\":false},[\"content:\\\"\\uf415\\\"\"]],[false,{\".fa-artstation:before\":false},[\"content:\\\"\\uf77a\\\"\"]],[false,{\".fa-asymmetrik:before\":false},[\"content:\\\"\\uf372\\\"\"]],[false,{\".fa-atlassian:before\":false},[\"content:\\\"\\uf77b\\\"\"]],[false,{\".fa-audible:before\":false},[\"content:\\\"\\uf373\\\"\"]],[false,{\".fa-autoprefixer:before\":false},[\"content:\\\"\\uf41c\\\"\"]],[false,{\".fa-avianex:before\":false},[\"content:\\\"\\uf374\\\"\"]],[false,{\".fa-aviato:before\":false},[\"content:\\\"\\uf421\\\"\"]],[false,{\".fa-aws:before\":false},[\"content:\\\"\\uf375\\\"\"]],[false,{\".fa-bandcamp:before\":false},[\"content:\\\"\\uf2d5\\\"\"]],[false,{\".fa-battle-net:before\":false},[\"content:\\\"\\uf835\\\"\"]],[false,{\".fa-behance:before\":false},[\"content:\\\"\\uf1b4\\\"\"]],[false,{\".fa-behance-square:before\":false},[\"content:\\\"\\uf1b5\\\"\"]],[false,{\".fa-bilibili:before\":false},[\"content:\\\"\\ue3d9\\\"\"]],[false,{\".fa-bimobject:before\":false},[\"content:\\\"\\uf378\\\"\"]],[false,{\".fa-bitbucket:before\":false},[\"content:\\\"\\uf171\\\"\"]],[false,{\".fa-bitcoin:before\":false},[\"content:\\\"\\uf379\\\"\"]],[false,{\".fa-bity:before\":false},[\"content:\\\"\\uf37a\\\"\"]],[false,{\".fa-black-tie:before\":false},[\"content:\\\"\\uf27e\\\"\"]],[false,{\".fa-blackberry:before\":false},[\"content:\\\"\\uf37b\\\"\"]],[false,{\".fa-blogger:before\":false},[\"content:\\\"\\uf37c\\\"\"]],[false,{\".fa-blogger-b:before\":false},[\"content:\\\"\\uf37d\\\"\"]],[false,{\".fa-bluetooth:before\":false},[\"content:\\\"\\uf293\\\"\"]],[false,{\".fa-bluetooth-b:before\":false},[\"content:\\\"\\uf294\\\"\"]],[false,{\".fa-bootstrap:before\":false},[\"content:\\\"\\uf836\\\"\"]],[false,{\".fa-bots:before\":false},[\"content:\\\"\\ue340\\\"\"]],[false,{\".fa-btc:before\":false},[\"content:\\\"\\uf15a\\\"\"]],[false,{\".fa-buffer:before\":false},[\"content:\\\"\\uf837\\\"\"]],[false,{\".fa-buromobelexperte:before\":false},[\"content:\\\"\\uf37f\\\"\"]],[false,{\".fa-buy-n-large:before\":false},[\"content:\\\"\\uf8a6\\\"\"]],[false,{\".fa-buysellads:before\":false},[\"content:\\\"\\uf20d\\\"\"]],[false,{\".fa-canadian-maple-leaf:before\":false},[\"content:\\\"\\uf785\\\"\"]],[false,{\".fa-cc-amazon-pay:before\":false},[\"content:\\\"\\uf42d\\\"\"]],[false,{\".fa-cc-amex:before\":false},[\"content:\\\"\\uf1f3\\\"\"]],[false,{\".fa-cc-apple-pay:before\":false},[\"content:\\\"\\uf416\\\"\"]],[false,{\".fa-cc-diners-club:before\":false},[\"content:\\\"\\uf24c\\\"\"]],[false,{\".fa-cc-discover:before\":false},[\"content:\\\"\\uf1f2\\\"\"]],[false,{\".fa-cc-jcb:before\":false},[\"content:\\\"\\uf24b\\\"\"]],[false,{\".fa-cc-mastercard:before\":false},[\"content:\\\"\\uf1f1\\\"\"]],[false,{\".fa-cc-paypal:before\":false},[\"content:\\\"\\uf1f4\\\"\"]],[false,{\".fa-cc-stripe:before\":false},[\"content:\\\"\\uf1f5\\\"\"]],[false,{\".fa-cc-visa:before\":false},[\"content:\\\"\\uf1f0\\\"\"]],[false,{\".fa-centercode:before\":false},[\"content:\\\"\\uf380\\\"\"]],[false,{\".fa-centos:before\":false},[\"content:\\\"\\uf789\\\"\"]],[false,{\".fa-chrome:before\":false},[\"content:\\\"\\uf268\\\"\"]],[false,{\".fa-chromecast:before\":false},[\"content:\\\"\\uf838\\\"\"]],[false,{\".fa-cloudflare:before\":false},[\"content:\\\"\\ue07d\\\"\"]],[false,{\".fa-cloudscale:before\":false},[\"content:\\\"\\uf383\\\"\"]],[false,{\".fa-cloudsmith:before\":false},[\"content:\\\"\\uf384\\\"\"]],[false,{\".fa-cloudversify:before\":false},[\"content:\\\"\\uf385\\\"\"]],[false,{\".fa-cmplid:before\":false},[\"content:\\\"\\ue360\\\"\"]],[false,{\".fa-codepen:before\":false},[\"content:\\\"\\uf1cb\\\"\"]],[false,{\".fa-codiepie:before\":false},[\"content:\\\"\\uf284\\\"\"]],[false,{\".fa-confluence:before\":false},[\"content:\\\"\\uf78d\\\"\"]],[false,{\".fa-connectdevelop:before\":false},[\"content:\\\"\\uf20e\\\"\"]],[false,{\".fa-contao:before\":false},[\"content:\\\"\\uf26d\\\"\"]],[false,{\".fa-cotton-bureau:before\":false},[\"content:\\\"\\uf89e\\\"\"]],[false,{\".fa-cpanel:before\":false},[\"content:\\\"\\uf388\\\"\"]],[false,{\".fa-creative-commons:before\":false},[\"content:\\\"\\uf25e\\\"\"]],[false,{\".fa-creative-commons-by:before\":false},[\"content:\\\"\\uf4e7\\\"\"]],[false,{\".fa-creative-commons-nc:before\":false},[\"content:\\\"\\uf4e8\\\"\"]],[false,{\".fa-creative-commons-nc-eu:before\":false},[\"content:\\\"\\uf4e9\\\"\"]],[false,{\".fa-creative-commons-nc-jp:before\":false},[\"content:\\\"\\uf4ea\\\"\"]],[false,{\".fa-creative-commons-nd:before\":false},[\"content:\\\"\\uf4eb\\\"\"]],[false,{\".fa-creative-commons-pd:before\":false},[\"content:\\\"\\uf4ec\\\"\"]],[false,{\".fa-creative-commons-pd-alt:before\":false},[\"content:\\\"\\uf4ed\\\"\"]],[false,{\".fa-creative-commons-remix:before\":false},[\"content:\\\"\\uf4ee\\\"\"]],[false,{\".fa-creative-commons-sa:before\":false},[\"content:\\\"\\uf4ef\\\"\"]],[false,{\".fa-creative-commons-sampling:before\":false},[\"content:\\\"\\uf4f0\\\"\"]],[false,{\".fa-creative-commons-sampling-plus:before\":false},[\"content:\\\"\\uf4f1\\\"\"]],[false,{\".fa-creative-commons-share:before\":false},[\"content:\\\"\\uf4f2\\\"\"]],[false,{\".fa-creative-commons-zero:before\":false},[\"content:\\\"\\uf4f3\\\"\"]],[false,{\".fa-critical-role:before\":false},[\"content:\\\"\\uf6c9\\\"\"]],[false,{\".fa-css3:before\":false},[\"content:\\\"\\uf13c\\\"\"]],[false,{\".fa-css3-alt:before\":false},[\"content:\\\"\\uf38b\\\"\"]],[false,{\".fa-cuttlefish:before\":false},[\"content:\\\"\\uf38c\\\"\"]],[false,{\".fa-d-and-d:before\":false},[\"content:\\\"\\uf38d\\\"\"]],[false,{\".fa-d-and-d-beyond:before\":false},[\"content:\\\"\\uf6ca\\\"\"]],[false,{\".fa-dailymotion:before\":false},[\"content:\\\"\\ue052\\\"\"]],[false,{\".fa-dashcube:before\":false},[\"content:\\\"\\uf210\\\"\"]],[false,{\".fa-deezer:before\":false},[\"content:\\\"\\ue077\\\"\"]],[false,{\".fa-delicious:before\":false},[\"content:\\\"\\uf1a5\\\"\"]],[false,{\".fa-deploydog:before\":false},[\"content:\\\"\\uf38e\\\"\"]],[false,{\".fa-deskpro:before\":false},[\"content:\\\"\\uf38f\\\"\"]],[false,{\".fa-dev:before\":false},[\"content:\\\"\\uf6cc\\\"\"]],[false,{\".fa-deviantart:before\":false},[\"content:\\\"\\uf1bd\\\"\"]],[false,{\".fa-dhl:before\":false},[\"content:\\\"\\uf790\\\"\"]],[false,{\".fa-diaspora:before\":false},[\"content:\\\"\\uf791\\\"\"]],[false,{\".fa-digg:before\":false},[\"content:\\\"\\uf1a6\\\"\"]],[false,{\".fa-digital-ocean:before\":false},[\"content:\\\"\\uf391\\\"\"]],[false,{\".fa-discord:before\":false},[\"content:\\\"\\uf392\\\"\"]],[false,{\".fa-discourse:before\":false},[\"content:\\\"\\uf393\\\"\"]],[false,{\".fa-dochub:before\":false},[\"content:\\\"\\uf394\\\"\"]],[false,{\".fa-docker:before\":false},[\"content:\\\"\\uf395\\\"\"]],[false,{\".fa-draft2digital:before\":false},[\"content:\\\"\\uf396\\\"\"]],[false,{\".fa-dribbble:before\":false},[\"content:\\\"\\uf17d\\\"\"]],[false,{\".fa-dribbble-square:before\":false},[\"content:\\\"\\uf397\\\"\"]],[false,{\".fa-dropbox:before\":false},[\"content:\\\"\\uf16b\\\"\"]],[false,{\".fa-drupal:before\":false},[\"content:\\\"\\uf1a9\\\"\"]],[false,{\".fa-dyalog:before\":false},[\"content:\\\"\\uf399\\\"\"]],[false,{\".fa-earlybirds:before\":false},[\"content:\\\"\\uf39a\\\"\"]],[false,{\".fa-ebay:before\":false},[\"content:\\\"\\uf4f4\\\"\"]],[false,{\".fa-edge:before\":false},[\"content:\\\"\\uf282\\\"\"]],[false,{\".fa-edge-legacy:before\":false},[\"content:\\\"\\ue078\\\"\"]],[false,{\".fa-elementor:before\":false},[\"content:\\\"\\uf430\\\"\"]],[false,{\".fa-ello:before\":false},[\"content:\\\"\\uf5f1\\\"\"]],[false,{\".fa-ember:before\":false},[\"content:\\\"\\uf423\\\"\"]],[false,{\".fa-empire:before\":false},[\"content:\\\"\\uf1d1\\\"\"]],[false,{\".fa-envira:before\":false},[\"content:\\\"\\uf299\\\"\"]],[false,{\".fa-erlang:before\":false},[\"content:\\\"\\uf39d\\\"\"]],[false,{\".fa-ethereum:before\":false},[\"content:\\\"\\uf42e\\\"\"]],[false,{\".fa-etsy:before\":false},[\"content:\\\"\\uf2d7\\\"\"]],[false,{\".fa-evernote:before\":false},[\"content:\\\"\\uf839\\\"\"]],[false,{\".fa-expeditedssl:before\":false},[\"content:\\\"\\uf23e\\\"\"]],[false,{\".fa-facebook:before\":false},[\"content:\\\"\\uf09a\\\"\"]],[false,{\".fa-facebook-f:before\":false},[\"content:\\\"\\uf39e\\\"\"]],[false,{\".fa-facebook-messenger:before\":false},[\"content:\\\"\\uf39f\\\"\"]],[false,{\".fa-facebook-square:before\":false},[\"content:\\\"\\uf082\\\"\"]],[false,{\".fa-fantasy-flight-games:before\":false},[\"content:\\\"\\uf6dc\\\"\"]],[false,{\".fa-fedex:before\":false},[\"content:\\\"\\uf797\\\"\"]],[false,{\".fa-fedora:before\":false},[\"content:\\\"\\uf798\\\"\"]],[false,{\".fa-figma:before\":false},[\"content:\\\"\\uf799\\\"\"]],[false,{\".fa-firefox:before\":false},[\"content:\\\"\\uf269\\\"\"]],[false,{\".fa-firefox-browser:before\":false},[\"content:\\\"\\ue007\\\"\"]],[false,{\".fa-first-order:before\":false},[\"content:\\\"\\uf2b0\\\"\"]],[false,{\".fa-first-order-alt:before\":false},[\"content:\\\"\\uf50a\\\"\"]],[false,{\".fa-firstdraft:before\":false},[\"content:\\\"\\uf3a1\\\"\"]],[false,{\".fa-flickr:before\":false},[\"content:\\\"\\uf16e\\\"\"]],[false,{\".fa-flipboard:before\":false},[\"content:\\\"\\uf44d\\\"\"]],[false,{\".fa-fly:before\":false},[\"content:\\\"\\uf417\\\"\"]],[false,{\".fa-font-awesome-flag:before\":false,\".fa-font-awesome-logo-full:before\":false,\".fa-font-awesome:before\":false},[\"content:\\\"\\uf2b4\\\"\"]],[false,{\".fa-fonticons:before\":false},[\"content:\\\"\\uf280\\\"\"]],[false,{\".fa-fonticons-fi:before\":false},[\"content:\\\"\\uf3a2\\\"\"]],[false,{\".fa-fort-awesome:before\":false},[\"content:\\\"\\uf286\\\"\"]],[false,{\".fa-fort-awesome-alt:before\":false},[\"content:\\\"\\uf3a3\\\"\"]],[false,{\".fa-forumbee:before\":false},[\"content:\\\"\\uf211\\\"\"]],[false,{\".fa-foursquare:before\":false},[\"content:\\\"\\uf180\\\"\"]],[false,{\".fa-free-code-camp:before\":false},[\"content:\\\"\\uf2c5\\\"\"]],[false,{\".fa-freebsd:before\":false},[\"content:\\\"\\uf3a4\\\"\"]],[false,{\".fa-fulcrum:before\":false},[\"content:\\\"\\uf50b\\\"\"]],[false,{\".fa-galactic-republic:before\":false},[\"content:\\\"\\uf50c\\\"\"]],[false,{\".fa-galactic-senate:before\":false},[\"content:\\\"\\uf50d\\\"\"]],[false,{\".fa-get-pocket:before\":false},[\"content:\\\"\\uf265\\\"\"]],[false,{\".fa-gg:before\":false},[\"content:\\\"\\uf260\\\"\"]],[false,{\".fa-gg-circle:before\":false},[\"content:\\\"\\uf261\\\"\"]],[false,{\".fa-git:before\":false},[\"content:\\\"\\uf1d3\\\"\"]],[false,{\".fa-git-alt:before\":false},[\"content:\\\"\\uf841\\\"\"]],[false,{\".fa-git-square:before\":false},[\"content:\\\"\\uf1d2\\\"\"]],[false,{\".fa-github:before\":false},[\"content:\\\"\\uf09b\\\"\"]],[false,{\".fa-github-alt:before\":false},[\"content:\\\"\\uf113\\\"\"]],[false,{\".fa-github-square:before\":false},[\"content:\\\"\\uf092\\\"\"]],[false,{\".fa-gitkraken:before\":false},[\"content:\\\"\\uf3a6\\\"\"]],[false,{\".fa-gitlab:before\":false},[\"content:\\\"\\uf296\\\"\"]],[false,{\".fa-gitter:before\":false},[\"content:\\\"\\uf426\\\"\"]],[false,{\".fa-glide:before\":false},[\"content:\\\"\\uf2a5\\\"\"]],[false,{\".fa-glide-g:before\":false},[\"content:\\\"\\uf2a6\\\"\"]],[false,{\".fa-gofore:before\":false},[\"content:\\\"\\uf3a7\\\"\"]],[false,{\".fa-golang:before\":false},[\"content:\\\"\\ue40f\\\"\"]],[false,{\".fa-goodreads:before\":false},[\"content:\\\"\\uf3a8\\\"\"]],[false,{\".fa-goodreads-g:before\":false},[\"content:\\\"\\uf3a9\\\"\"]],[false,{\".fa-google:before\":false},[\"content:\\\"\\uf1a0\\\"\"]],[false,{\".fa-google-drive:before\":false},[\"content:\\\"\\uf3aa\\\"\"]],[false,{\".fa-google-pay:before\":false},[\"content:\\\"\\ue079\\\"\"]],[false,{\".fa-google-play:before\":false},[\"content:\\\"\\uf3ab\\\"\"]],[false,{\".fa-google-plus:before\":false},[\"content:\\\"\\uf2b3\\\"\"]],[false,{\".fa-google-plus-g:before\":false},[\"content:\\\"\\uf0d5\\\"\"]],[false,{\".fa-google-plus-square:before\":false},[\"content:\\\"\\uf0d4\\\"\"]],[false,{\".fa-google-wallet:before\":false},[\"content:\\\"\\uf1ee\\\"\"]],[false,{\".fa-gratipay:before\":false},[\"content:\\\"\\uf184\\\"\"]],[false,{\".fa-grav:before\":false},[\"content:\\\"\\uf2d6\\\"\"]],[false,{\".fa-gripfire:before\":false},[\"content:\\\"\\uf3ac\\\"\"]],[false,{\".fa-grunt:before\":false},[\"content:\\\"\\uf3ad\\\"\"]],[false,{\".fa-guilded:before\":false},[\"content:\\\"\\ue07e\\\"\"]],[false,{\".fa-gulp:before\":false},[\"content:\\\"\\uf3ae\\\"\"]],[false,{\".fa-hacker-news:before\":false},[\"content:\\\"\\uf1d4\\\"\"]],[false,{\".fa-hacker-news-square:before\":false},[\"content:\\\"\\uf3af\\\"\"]],[false,{\".fa-hackerrank:before\":false},[\"content:\\\"\\uf5f7\\\"\"]],[false,{\".fa-hashnode:before\":false},[\"content:\\\"\\ue499\\\"\"]],[false,{\".fa-hips:before\":false},[\"content:\\\"\\uf452\\\"\"]],[false,{\".fa-hire-a-helper:before\":false},[\"content:\\\"\\uf3b0\\\"\"]],[false,{\".fa-hive:before\":false},[\"content:\\\"\\ue07f\\\"\"]],[false,{\".fa-hooli:before\":false},[\"content:\\\"\\uf427\\\"\"]],[false,{\".fa-hornbill:before\":false},[\"content:\\\"\\uf592\\\"\"]],[false,{\".fa-hotjar:before\":false},[\"content:\\\"\\uf3b1\\\"\"]],[false,{\".fa-houzz:before\":false},[\"content:\\\"\\uf27c\\\"\"]],[false,{\".fa-html5:before\":false},[\"content:\\\"\\uf13b\\\"\"]],[false,{\".fa-hubspot:before\":false},[\"content:\\\"\\uf3b2\\\"\"]],[false,{\".fa-ideal:before\":false},[\"content:\\\"\\ue013\\\"\"]],[false,{\".fa-imdb:before\":false},[\"content:\\\"\\uf2d8\\\"\"]],[false,{\".fa-instagram:before\":false},[\"content:\\\"\\uf16d\\\"\"]],[false,{\".fa-instagram-square:before\":false},[\"content:\\\"\\ue055\\\"\"]],[false,{\".fa-instalod:before\":false},[\"content:\\\"\\ue081\\\"\"]],[false,{\".fa-intercom:before\":false},[\"content:\\\"\\uf7af\\\"\"]],[false,{\".fa-internet-explorer:before\":false},[\"content:\\\"\\uf26b\\\"\"]],[false,{\".fa-invision:before\":false},[\"content:\\\"\\uf7b0\\\"\"]],[false,{\".fa-ioxhost:before\":false},[\"content:\\\"\\uf208\\\"\"]],[false,{\".fa-itch-io:before\":false},[\"content:\\\"\\uf83a\\\"\"]],[false,{\".fa-itunes:before\":false},[\"content:\\\"\\uf3b4\\\"\"]],[false,{\".fa-itunes-note:before\":false},[\"content:\\\"\\uf3b5\\\"\"]],[false,{\".fa-java:before\":false},[\"content:\\\"\\uf4e4\\\"\"]],[false,{\".fa-jedi-order:before\":false},[\"content:\\\"\\uf50e\\\"\"]],[false,{\".fa-jenkins:before\":false},[\"content:\\\"\\uf3b6\\\"\"]],[false,{\".fa-jira:before\":false},[\"content:\\\"\\uf7b1\\\"\"]],[false,{\".fa-joget:before\":false},[\"content:\\\"\\uf3b7\\\"\"]],[false,{\".fa-joomla:before\":false},[\"content:\\\"\\uf1aa\\\"\"]],[false,{\".fa-js:before\":false},[\"content:\\\"\\uf3b8\\\"\"]],[false,{\".fa-js-square:before\":false},[\"content:\\\"\\uf3b9\\\"\"]],[false,{\".fa-jsfiddle:before\":false},[\"content:\\\"\\uf1cc\\\"\"]],[false,{\".fa-kaggle:before\":false},[\"content:\\\"\\uf5fa\\\"\"]],[false,{\".fa-keybase:before\":false},[\"content:\\\"\\uf4f5\\\"\"]],[false,{\".fa-keycdn:before\":false},[\"content:\\\"\\uf3ba\\\"\"]],[false,{\".fa-kickstarter:before\":false},[\"content:\\\"\\uf3bb\\\"\"]],[false,{\".fa-kickstarter-k:before\":false},[\"content:\\\"\\uf3bc\\\"\"]],[false,{\".fa-korvue:before\":false},[\"content:\\\"\\uf42f\\\"\"]],[false,{\".fa-laravel:before\":false},[\"content:\\\"\\uf3bd\\\"\"]],[false,{\".fa-lastfm:before\":false},[\"content:\\\"\\uf202\\\"\"]],[false,{\".fa-lastfm-square:before\":false},[\"content:\\\"\\uf203\\\"\"]],[false,{\".fa-leanpub:before\":false},[\"content:\\\"\\uf212\\\"\"]],[false,{\".fa-less:before\":false},[\"content:\\\"\\uf41d\\\"\"]],[false,{\".fa-line:before\":false},[\"content:\\\"\\uf3c0\\\"\"]],[false,{\".fa-linkedin:before\":false},[\"content:\\\"\\uf08c\\\"\"]],[false,{\".fa-linkedin-in:before\":false},[\"content:\\\"\\uf0e1\\\"\"]],[false,{\".fa-linode:before\":false},[\"content:\\\"\\uf2b8\\\"\"]],[false,{\".fa-linux:before\":false},[\"content:\\\"\\uf17c\\\"\"]],[false,{\".fa-lyft:before\":false},[\"content:\\\"\\uf3c3\\\"\"]],[false,{\".fa-magento:before\":false},[\"content:\\\"\\uf3c4\\\"\"]],[false,{\".fa-mailchimp:before\":false},[\"content:\\\"\\uf59e\\\"\"]],[false,{\".fa-mandalorian:before\":false},[\"content:\\\"\\uf50f\\\"\"]],[false,{\".fa-markdown:before\":false},[\"content:\\\"\\uf60f\\\"\"]],[false,{\".fa-mastodon:before\":false},[\"content:\\\"\\uf4f6\\\"\"]],[false,{\".fa-maxcdn:before\":false},[\"content:\\\"\\uf136\\\"\"]],[false,{\".fa-mdb:before\":false},[\"content:\\\"\\uf8ca\\\"\"]],[false,{\".fa-medapps:before\":false},[\"content:\\\"\\uf3c6\\\"\"]],[false,{\".fa-medium-m:before\":false,\".fa-medium:before\":false},[\"content:\\\"\\uf23a\\\"\"]],[false,{\".fa-medrt:before\":false},[\"content:\\\"\\uf3c8\\\"\"]],[false,{\".fa-meetup:before\":false},[\"content:\\\"\\uf2e0\\\"\"]],[false,{\".fa-megaport:before\":false},[\"content:\\\"\\uf5a3\\\"\"]],[false,{\".fa-mendeley:before\":false},[\"content:\\\"\\uf7b3\\\"\"]],[false,{\".fa-microblog:before\":false},[\"content:\\\"\\ue01a\\\"\"]],[false,{\".fa-microsoft:before\":false},[\"content:\\\"\\uf3ca\\\"\"]],[false,{\".fa-mix:before\":false},[\"content:\\\"\\uf3cb\\\"\"]],[false,{\".fa-mixcloud:before\":false},[\"content:\\\"\\uf289\\\"\"]],[false,{\".fa-mixer:before\":false},[\"content:\\\"\\ue056\\\"\"]],[false,{\".fa-mizuni:before\":false},[\"content:\\\"\\uf3cc\\\"\"]],[false,{\".fa-modx:before\":false},[\"content:\\\"\\uf285\\\"\"]],[false,{\".fa-monero:before\":false},[\"content:\\\"\\uf3d0\\\"\"]],[false,{\".fa-napster:before\":false},[\"content:\\\"\\uf3d2\\\"\"]],[false,{\".fa-neos:before\":false},[\"content:\\\"\\uf612\\\"\"]],[false,{\".fa-nfc-directional:before\":false},[\"content:\\\"\\ue530\\\"\"]],[false,{\".fa-nfc-symbol:before\":false},[\"content:\\\"\\ue531\\\"\"]],[false,{\".fa-nimblr:before\":false},[\"content:\\\"\\uf5a8\\\"\"]],[false,{\".fa-node:before\":false},[\"content:\\\"\\uf419\\\"\"]],[false,{\".fa-node-js:before\":false},[\"content:\\\"\\uf3d3\\\"\"]],[false,{\".fa-npm:before\":false},[\"content:\\\"\\uf3d4\\\"\"]],[false,{\".fa-ns8:before\":false},[\"content:\\\"\\uf3d5\\\"\"]],[false,{\".fa-nutritionix:before\":false},[\"content:\\\"\\uf3d6\\\"\"]],[false,{\".fa-octopus-deploy:before\":false},[\"content:\\\"\\ue082\\\"\"]],[false,{\".fa-odnoklassniki:before\":false},[\"content:\\\"\\uf263\\\"\"]],[false,{\".fa-odnoklassniki-square:before\":false},[\"content:\\\"\\uf264\\\"\"]],[false,{\".fa-old-republic:before\":false},[\"content:\\\"\\uf510\\\"\"]],[false,{\".fa-opencart:before\":false},[\"content:\\\"\\uf23d\\\"\"]],[false,{\".fa-openid:before\":false},[\"content:\\\"\\uf19b\\\"\"]],[false,{\".fa-opera:before\":false},[\"content:\\\"\\uf26a\\\"\"]],[false,{\".fa-optin-monster:before\":false},[\"content:\\\"\\uf23c\\\"\"]],[false,{\".fa-orcid:before\":false},[\"content:\\\"\\uf8d2\\\"\"]],[false,{\".fa-osi:before\":false},[\"content:\\\"\\uf41a\\\"\"]],[false,{\".fa-padlet:before\":false},[\"content:\\\"\\ue4a0\\\"\"]],[false,{\".fa-page4:before\":false},[\"content:\\\"\\uf3d7\\\"\"]],[false,{\".fa-pagelines:before\":false},[\"content:\\\"\\uf18c\\\"\"]],[false,{\".fa-palfed:before\":false},[\"content:\\\"\\uf3d8\\\"\"]],[false,{\".fa-patreon:before\":false},[\"content:\\\"\\uf3d9\\\"\"]],[false,{\".fa-paypal:before\":false},[\"content:\\\"\\uf1ed\\\"\"]],[false,{\".fa-perbyte:before\":false},[\"content:\\\"\\ue083\\\"\"]],[false,{\".fa-periscope:before\":false},[\"content:\\\"\\uf3da\\\"\"]],[false,{\".fa-phabricator:before\":false},[\"content:\\\"\\uf3db\\\"\"]],[false,{\".fa-phoenix-framework:before\":false},[\"content:\\\"\\uf3dc\\\"\"]],[false,{\".fa-phoenix-squadron:before\":false},[\"content:\\\"\\uf511\\\"\"]],[false,{\".fa-php:before\":false},[\"content:\\\"\\uf457\\\"\"]],[false,{\".fa-pied-piper:before\":false},[\"content:\\\"\\uf2ae\\\"\"]],[false,{\".fa-pied-piper-alt:before\":false},[\"content:\\\"\\uf1a8\\\"\"]],[false,{\".fa-pied-piper-hat:before\":false},[\"content:\\\"\\uf4e5\\\"\"]],[false,{\".fa-pied-piper-pp:before\":false},[\"content:\\\"\\uf1a7\\\"\"]],[false,{\".fa-pied-piper-square:before\":false},[\"content:\\\"\\ue01e\\\"\"]],[false,{\".fa-pinterest:before\":false},[\"content:\\\"\\uf0d2\\\"\"]],[false,{\".fa-pinterest-p:before\":false},[\"content:\\\"\\uf231\\\"\"]],[false,{\".fa-pinterest-square:before\":false},[\"content:\\\"\\uf0d3\\\"\"]],[false,{\".fa-pix:before\":false},[\"content:\\\"\\ue43a\\\"\"]],[false,{\".fa-playstation:before\":false},[\"content:\\\"\\uf3df\\\"\"]],[false,{\".fa-product-hunt:before\":false},[\"content:\\\"\\uf288\\\"\"]],[false,{\".fa-pushed:before\":false},[\"content:\\\"\\uf3e1\\\"\"]],[false,{\".fa-python:before\":false},[\"content:\\\"\\uf3e2\\\"\"]],[false,{\".fa-qq:before\":false},[\"content:\\\"\\uf1d6\\\"\"]],[false,{\".fa-quinscape:before\":false},[\"content:\\\"\\uf459\\\"\"]],[false,{\".fa-quora:before\":false},[\"content:\\\"\\uf2c4\\\"\"]],[false,{\".fa-r-project:before\":false},[\"content:\\\"\\uf4f7\\\"\"]],[false,{\".fa-raspberry-pi:before\":false},[\"content:\\\"\\uf7bb\\\"\"]],[false,{\".fa-ravelry:before\":false},[\"content:\\\"\\uf2d9\\\"\"]],[false,{\".fa-react:before\":false},[\"content:\\\"\\uf41b\\\"\"]],[false,{\".fa-reacteurope:before\":false},[\"content:\\\"\\uf75d\\\"\"]],[false,{\".fa-readme:before\":false},[\"content:\\\"\\uf4d5\\\"\"]],[false,{\".fa-rebel:before\":false},[\"content:\\\"\\uf1d0\\\"\"]],[false,{\".fa-red-river:before\":false},[\"content:\\\"\\uf3e3\\\"\"]],[false,{\".fa-reddit:before\":false},[\"content:\\\"\\uf1a1\\\"\"]],[false,{\".fa-reddit-alien:before\":false},[\"content:\\\"\\uf281\\\"\"]],[false,{\".fa-reddit-square:before\":false},[\"content:\\\"\\uf1a2\\\"\"]],[false,{\".fa-redhat:before\":false},[\"content:\\\"\\uf7bc\\\"\"]],[false,{\".fa-renren:before\":false},[\"content:\\\"\\uf18b\\\"\"]],[false,{\".fa-replyd:before\":false},[\"content:\\\"\\uf3e6\\\"\"]],[false,{\".fa-researchgate:before\":false},[\"content:\\\"\\uf4f8\\\"\"]],[false,{\".fa-resolving:before\":false},[\"content:\\\"\\uf3e7\\\"\"]],[false,{\".fa-rev:before\":false},[\"content:\\\"\\uf5b2\\\"\"]],[false,{\".fa-rocketchat:before\":false},[\"content:\\\"\\uf3e8\\\"\"]],[false,{\".fa-rockrms:before\":false},[\"content:\\\"\\uf3e9\\\"\"]],[false,{\".fa-rust:before\":false},[\"content:\\\"\\ue07a\\\"\"]],[false,{\".fa-safari:before\":false},[\"content:\\\"\\uf267\\\"\"]],[false,{\".fa-salesforce:before\":false},[\"content:\\\"\\uf83b\\\"\"]],[false,{\".fa-sass:before\":false},[\"content:\\\"\\uf41e\\\"\"]],[false,{\".fa-schlix:before\":false},[\"content:\\\"\\uf3ea\\\"\"]],[false,{\".fa-screenpal:before\":false},[\"content:\\\"\\ue570\\\"\"]],[false,{\".fa-scribd:before\":false},[\"content:\\\"\\uf28a\\\"\"]],[false,{\".fa-searchengin:before\":false},[\"content:\\\"\\uf3eb\\\"\"]],[false,{\".fa-sellcast:before\":false},[\"content:\\\"\\uf2da\\\"\"]],[false,{\".fa-sellsy:before\":false},[\"content:\\\"\\uf213\\\"\"]],[false,{\".fa-servicestack:before\":false},[\"content:\\\"\\uf3ec\\\"\"]],[false,{\".fa-shirtsinbulk:before\":false},[\"content:\\\"\\uf214\\\"\"]],[false,{\".fa-shopify:before\":false},[\"content:\\\"\\ue057\\\"\"]],[false,{\".fa-shopware:before\":false},[\"content:\\\"\\uf5b5\\\"\"]],[false,{\".fa-simplybuilt:before\":false},[\"content:\\\"\\uf215\\\"\"]],[false,{\".fa-sistrix:before\":false},[\"content:\\\"\\uf3ee\\\"\"]],[false,{\".fa-sith:before\":false},[\"content:\\\"\\uf512\\\"\"]],[false,{\".fa-sitrox:before\":false},[\"content:\\\"\\ue44a\\\"\"]],[false,{\".fa-sketch:before\":false},[\"content:\\\"\\uf7c6\\\"\"]],[false,{\".fa-skyatlas:before\":false},[\"content:\\\"\\uf216\\\"\"]],[false,{\".fa-skype:before\":false},[\"content:\\\"\\uf17e\\\"\"]],[false,{\".fa-slack-hash:before\":false,\".fa-slack:before\":false},[\"content:\\\"\\uf198\\\"\"]],[false,{\".fa-slideshare:before\":false},[\"content:\\\"\\uf1e7\\\"\"]],[false,{\".fa-snapchat-ghost:before\":false,\".fa-snapchat:before\":false},[\"content:\\\"\\uf2ab\\\"\"]],[false,{\".fa-snapchat-square:before\":false},[\"content:\\\"\\uf2ad\\\"\"]],[false,{\".fa-soundcloud:before\":false},[\"content:\\\"\\uf1be\\\"\"]],[false,{\".fa-sourcetree:before\":false},[\"content:\\\"\\uf7d3\\\"\"]],[false,{\".fa-speakap:before\":false},[\"content:\\\"\\uf3f3\\\"\"]],[false,{\".fa-speaker-deck:before\":false},[\"content:\\\"\\uf83c\\\"\"]],[false,{\".fa-spotify:before\":false},[\"content:\\\"\\uf1bc\\\"\"]],[false,{\".fa-square-font-awesome:before\":false},[\"content:\\\"\\uf425\\\"\"]],[false,{\".fa-font-awesome-alt:before\":false,\".fa-square-font-awesome-stroke:before\":false},[\"content:\\\"\\uf35c\\\"\"]],[false,{\".fa-squarespace:before\":false},[\"content:\\\"\\uf5be\\\"\"]],[false,{\".fa-stack-exchange:before\":false},[\"content:\\\"\\uf18d\\\"\"]],[false,{\".fa-stack-overflow:before\":false},[\"content:\\\"\\uf16c\\\"\"]],[false,{\".fa-stackpath:before\":false},[\"content:\\\"\\uf842\\\"\"]],[false,{\".fa-staylinked:before\":false},[\"content:\\\"\\uf3f5\\\"\"]],[false,{\".fa-steam:before\":false},[\"content:\\\"\\uf1b6\\\"\"]],[false,{\".fa-steam-square:before\":false},[\"content:\\\"\\uf1b7\\\"\"]],[false,{\".fa-steam-symbol:before\":false},[\"content:\\\"\\uf3f6\\\"\"]],[false,{\".fa-sticker-mule:before\":false},[\"content:\\\"\\uf3f7\\\"\"]],[false,{\".fa-strava:before\":false},[\"content:\\\"\\uf428\\\"\"]],[false,{\".fa-stripe:before\":false},[\"content:\\\"\\uf429\\\"\"]],[false,{\".fa-stripe-s:before\":false},[\"content:\\\"\\uf42a\\\"\"]],[false,{\".fa-studiovinari:before\":false},[\"content:\\\"\\uf3f8\\\"\"]],[false,{\".fa-stumbleupon:before\":false},[\"content:\\\"\\uf1a4\\\"\"]],[false,{\".fa-stumbleupon-circle:before\":false},[\"content:\\\"\\uf1a3\\\"\"]],[false,{\".fa-superpowers:before\":false},[\"content:\\\"\\uf2dd\\\"\"]],[false,{\".fa-supple:before\":false},[\"content:\\\"\\uf3f9\\\"\"]],[false,{\".fa-suse:before\":false},[\"content:\\\"\\uf7d6\\\"\"]],[false,{\".fa-swift:before\":false},[\"content:\\\"\\uf8e1\\\"\"]],[false,{\".fa-symfony:before\":false},[\"content:\\\"\\uf83d\\\"\"]],[false,{\".fa-teamspeak:before\":false},[\"content:\\\"\\uf4f9\\\"\"]],[false,{\".fa-telegram-plane:before\":false,\".fa-telegram:before\":false},[\"content:\\\"\\uf2c6\\\"\"]],[false,{\".fa-tencent-weibo:before\":false},[\"content:\\\"\\uf1d5\\\"\"]],[false,{\".fa-the-red-yeti:before\":false},[\"content:\\\"\\uf69d\\\"\"]],[false,{\".fa-themeco:before\":false},[\"content:\\\"\\uf5c6\\\"\"]],[false,{\".fa-themeisle:before\":false},[\"content:\\\"\\uf2b2\\\"\"]],[false,{\".fa-think-peaks:before\":false},[\"content:\\\"\\uf731\\\"\"]],[false,{\".fa-tiktok:before\":false},[\"content:\\\"\\ue07b\\\"\"]],[false,{\".fa-trade-federation:before\":false},[\"content:\\\"\\uf513\\\"\"]],[false,{\".fa-trello:before\":false},[\"content:\\\"\\uf181\\\"\"]],[false,{\".fa-tumblr:before\":false},[\"content:\\\"\\uf173\\\"\"]],[false,{\".fa-tumblr-square:before\":false},[\"content:\\\"\\uf174\\\"\"]],[false,{\".fa-twitch:before\":false},[\"content:\\\"\\uf1e8\\\"\"]],[false,{\".fa-twitter:before\":false},[\"content:\\\"\\uf099\\\"\"]],[false,{\".fa-twitter-square:before\":false},[\"content:\\\"\\uf081\\\"\"]],[false,{\".fa-typo3:before\":false},[\"content:\\\"\\uf42b\\\"\"]],[false,{\".fa-uber:before\":false},[\"content:\\\"\\uf402\\\"\"]],[false,{\".fa-ubuntu:before\":false},[\"content:\\\"\\uf7df\\\"\"]],[false,{\".fa-uikit:before\":false},[\"content:\\\"\\uf403\\\"\"]],[false,{\".fa-umbraco:before\":false},[\"content:\\\"\\uf8e8\\\"\"]],[false,{\".fa-uncharted:before\":false},[\"content:\\\"\\ue084\\\"\"]],[false,{\".fa-uniregistry:before\":false},[\"content:\\\"\\uf404\\\"\"]],[false,{\".fa-unity:before\":false},[\"content:\\\"\\ue049\\\"\"]],[false,{\".fa-unsplash:before\":false},[\"content:\\\"\\ue07c\\\"\"]],[false,{\".fa-untappd:before\":false},[\"content:\\\"\\uf405\\\"\"]],[false,{\".fa-ups:before\":false},[\"content:\\\"\\uf7e0\\\"\"]],[false,{\".fa-usb:before\":false},[\"content:\\\"\\uf287\\\"\"]],[false,{\".fa-usps:before\":false},[\"content:\\\"\\uf7e1\\\"\"]],[false,{\".fa-ussunnah:before\":false},[\"content:\\\"\\uf407\\\"\"]],[false,{\".fa-vaadin:before\":false},[\"content:\\\"\\uf408\\\"\"]],[false,{\".fa-viacoin:before\":false},[\"content:\\\"\\uf237\\\"\"]],[false,{\".fa-viadeo:before\":false},[\"content:\\\"\\uf2a9\\\"\"]],[false,{\".fa-viadeo-square:before\":false},[\"content:\\\"\\uf2aa\\\"\"]],[false,{\".fa-viber:before\":false},[\"content:\\\"\\uf409\\\"\"]],[false,{\".fa-vimeo:before\":false},[\"content:\\\"\\uf40a\\\"\"]],[false,{\".fa-vimeo-square:before\":false},[\"content:\\\"\\uf194\\\"\"]],[false,{\".fa-vimeo-v:before\":false},[\"content:\\\"\\uf27d\\\"\"]],[false,{\".fa-vine:before\":false},[\"content:\\\"\\uf1ca\\\"\"]],[false,{\".fa-vk:before\":false},[\"content:\\\"\\uf189\\\"\"]],[false,{\".fa-vnv:before\":false},[\"content:\\\"\\uf40b\\\"\"]],[false,{\".fa-vuejs:before\":false},[\"content:\\\"\\uf41f\\\"\"]],[false,{\".fa-watchman-monitoring:before\":false},[\"content:\\\"\\ue087\\\"\"]],[false,{\".fa-waze:before\":false},[\"content:\\\"\\uf83f\\\"\"]],[false,{\".fa-weebly:before\":false},[\"content:\\\"\\uf5cc\\\"\"]],[false,{\".fa-weibo:before\":false},[\"content:\\\"\\uf18a\\\"\"]],[false,{\".fa-weixin:before\":false},[\"content:\\\"\\uf1d7\\\"\"]],[false,{\".fa-whatsapp:before\":false},[\"content:\\\"\\uf232\\\"\"]],[false,{\".fa-whatsapp-square:before\":false},[\"content:\\\"\\uf40c\\\"\"]],[false,{\".fa-whmcs:before\":false},[\"content:\\\"\\uf40d\\\"\"]],[false,{\".fa-wikipedia-w:before\":false},[\"content:\\\"\\uf266\\\"\"]],[false,{\".fa-windows:before\":false},[\"content:\\\"\\uf17a\\\"\"]],[false,{\".fa-wirsindhandwerk:before\":false,\".fa-wsh:before\":false},[\"content:\\\"\\ue2d0\\\"\"]],[false,{\".fa-wix:before\":false},[\"content:\\\"\\uf5cf\\\"\"]],[false,{\".fa-wizards-of-the-coast:before\":false},[\"content:\\\"\\uf730\\\"\"]],[false,{\".fa-wodu:before\":false},[\"content:\\\"\\ue088\\\"\"]],[false,{\".fa-wolf-pack-battalion:before\":false},[\"content:\\\"\\uf514\\\"\"]],[false,{\".fa-wordpress:before\":false},[\"content:\\\"\\uf19a\\\"\"]],[false,{\".fa-wordpress-simple:before\":false},[\"content:\\\"\\uf411\\\"\"]],[false,{\".fa-wpbeginner:before\":false},[\"content:\\\"\\uf297\\\"\"]],[false,{\".fa-wpexplorer:before\":false},[\"content:\\\"\\uf2de\\\"\"]],[false,{\".fa-wpforms:before\":false},[\"content:\\\"\\uf298\\\"\"]],[false,{\".fa-wpressr:before\":false},[\"content:\\\"\\uf3e4\\\"\"]],[false,{\".fa-xbox:before\":false},[\"content:\\\"\\uf412\\\"\"]],[false,{\".fa-xing:before\":false},[\"content:\\\"\\uf168\\\"\"]],[false,{\".fa-xing-square:before\":false},[\"content:\\\"\\uf169\\\"\"]],[false,{\".fa-y-combinator:before\":false},[\"content:\\\"\\uf23b\\\"\"]],[false,{\".fa-yahoo:before\":false},[\"content:\\\"\\uf19e\\\"\"]],[false,{\".fa-yammer:before\":false},[\"content:\\\"\\uf840\\\"\"]],[false,{\".fa-yandex:before\":false},[\"content:\\\"\\uf413\\\"\"]],[false,{\".fa-yandex-international:before\":false},[\"content:\\\"\\uf414\\\"\"]],[false,{\".fa-yarn:before\":false},[\"content:\\\"\\uf7e3\\\"\"]],[false,{\".fa-yelp:before\":false},[\"content:\\\"\\uf1e9\\\"\"]],[false,{\".fa-yoast:before\":false},[\"content:\\\"\\uf2b1\\\"\"]],[false,{\".fa-youtube:before\":false},[\"content:\\\"\\uf167\\\"\"]],[false,{\".fa-youtube-square:before\":false},[\"content:\\\"\\uf431\\\"\"]],[false,{\".fa-zhihu:before\":false},[\"content:\\\"\\uf63f\\\"\"]],[true,{\":host\":true,\":root\":true},[\"--fa-font-regular:normal 400 1em\\/1 \\\"Font Awesome 6 Free\\\"\"]],[true,\"@font-face{font-family:\\\"Font Awesome 6 Free\\\";font-style:normal;font-weight:400;font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\")}\"],[false,{\".fa-regular\":false,\".far\":false},[\"font-family:\\\"Font Awesome 6 Free\\\"\",\"font-weight:400\"]],[true,{\":host\":true,\":root\":true},[\"--fa-font-solid:normal 900 1em\\/1 \\\"Font Awesome 6 Free\\\"\"]],[true,\"@font-face{font-family:\\\"Font Awesome 6 Free\\\";font-style:normal;font-weight:900;font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\")}\"],[false,{\".fa-solid\":false,\".fas\":false},[\"font-family:\\\"Font Awesome 6 Free\\\"\",\"font-weight:900\"]],[true,\"@font-face{font-family:\\\"Font Awesome 5 Brands\\\";font-display:block;font-weight:400;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-display:block;font-weight:900;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-display:block;font-weight:400;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-v4compatibility.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-v4compatibility.ttf\\\") format(\\\"truetype\\\")}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":16466,\"final_size\":2468,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"f525e508f09233d1bbad77f319ca5b46\",\"parse_time\":0.25615501403808594,\"shake_time\":0.0001761913299560547,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,\"@font-face{font-family:swiper-icons;src:url(\\\"data:application\\/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj\\/\\/wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA\\/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu\\/j+W2+MnAzMYDAzaX6QjD6\\/4\\/\\/Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+\\/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg\\/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4\\/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9\\/w8UBfEMgLzE\\/\\/\\/\\/P\\/5\\/\\/f\\/V\\/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA\\/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP\\/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj\\/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB\\/yIY09An6AH2Bdu\\/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z\\/PEJ6YOB5hKh4dj3EvXhxPqH\\/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN\\/d\\/gczfEimrE\\/fs\\/bOuq29Zmn8tloORaXgZgGa78yO9\\/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i\\/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH\\/\\/wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv\\/H9ezGI6Z5XBAw8CBK\\/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow\\/P\\/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA\\\");font-weight:400;font-style:normal}\"],[true,{\":root\":true},[\"--swiper-theme-color:#007aff\"]],[false,{\".swiper\":false},[\"margin-left:auto\",\"margin-right:auto\",\"position:relative\",\"overflow:hidden\",\"list-style:none\",\"padding:0\",\"z-index:1\"]],[false,{\".swiper-vertical>.swiper-wrapper\":false},[\"flex-direction:column\"]],[false,{\".swiper-wrapper\":false},[\"position:relative\",\"width:100%\",\"height:100%\",\"z-index:1\",\"display:flex\",\"transition-property:transform\",\"box-sizing:content-box\"]],[false,{\".swiper-android .swiper-slide\":false,\".swiper-wrapper\":false},[\"transform:translate3d(0px,0,0)\"]],[false,{\".swiper-pointer-events\":false},[\"touch-action:pan-y\"]],[false,{\".swiper-pointer-events.swiper-vertical\":false},[\"touch-action:pan-x\"]],[false,{\".swiper-slide\":false},[\"flex-shrink:0\",\"width:100%\",\"height:100%\",\"position:relative\",\"transition-property:transform\"]],[false,{\".swiper-slide-invisible-blank\":false},[\"visibility:hidden\"]],[false,{\".swiper-autoheight\":false,\".swiper-autoheight .swiper-slide\":false},[\"height:auto\"]],[false,{\".swiper-autoheight .swiper-wrapper\":false},[\"align-items:flex-start\",\"transition-property:transform,height\"]],[false,{\".swiper-backface-hidden .swiper-slide\":false},[\"transform:translateZ(0)\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".swiper-3d\":false,\".swiper-3d.swiper-css-mode .swiper-wrapper\":false},[\"perspective:1200px\"]],[false,{\".swiper-3d .swiper-cube-shadow\":false,\".swiper-3d .swiper-slide\":false,\".swiper-3d .swiper-slide-shadow\":false,\".swiper-3d .swiper-slide-shadow-bottom\":false,\".swiper-3d .swiper-slide-shadow-left\":false,\".swiper-3d .swiper-slide-shadow-right\":false,\".swiper-3d .swiper-slide-shadow-top\":false,\".swiper-3d .swiper-wrapper\":false},[\"transform-style:preserve-3d\"]],[false,{\".swiper-3d .swiper-slide-shadow\":false,\".swiper-3d .swiper-slide-shadow-bottom\":false,\".swiper-3d .swiper-slide-shadow-left\":false,\".swiper-3d .swiper-slide-shadow-right\":false,\".swiper-3d .swiper-slide-shadow-top\":false},[\"position:absolute\",\"left:0\",\"top:0\",\"width:100%\",\"height:100%\",\"pointer-events:none\",\"z-index:10\"]],[false,{\".swiper-3d .swiper-slide-shadow\":false},[\"background:rgba(0,0,0,.15)\"]],[false,{\".swiper-3d .swiper-slide-shadow-left\":false},[\"background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-3d .swiper-slide-shadow-right\":false},[\"background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-3d .swiper-slide-shadow-top\":false},[\"background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-3d .swiper-slide-shadow-bottom\":false},[\"background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-css-mode>.swiper-wrapper\":false},[\"overflow:auto\",\"scrollbar-width:none\",\"-ms-overflow-style:none\"]],[false,{\".swiper-css-mode>.swiper-wrapper::-webkit-scrollbar\":false},[\"display:none\"]],[false,{\".swiper-css-mode>.swiper-wrapper>.swiper-slide\":false},[\"scroll-snap-align:start start\"]],[false,{\".swiper-horizontal.swiper-css-mode>.swiper-wrapper\":false},[\"scroll-snap-type:x mandatory\"]],[false,{\".swiper-vertical.swiper-css-mode>.swiper-wrapper\":false},[\"scroll-snap-type:y mandatory\"]],[false,{\".swiper-centered>.swiper-wrapper::before\":false},[\"content:\\\"\\\"\",\"flex-shrink:0\",\"order:9999\"]],[false,{\".swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child\":false},[\"margin-inline-start:var(--swiper-centered-offset-before)\"]],[false,{\".swiper-centered.swiper-horizontal>.swiper-wrapper::before\":false},[\"height:100%\",\"min-height:1px\",\"width:var(--swiper-centered-offset-after)\"]],[false,{\".swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child\":false},[\"margin-block-start:var(--swiper-centered-offset-before)\"]],[false,{\".swiper-centered.swiper-vertical>.swiper-wrapper::before\":false},[\"width:100%\",\"min-width:1px\",\"height:var(--swiper-centered-offset-after)\"]],[false,{\".swiper-centered>.swiper-wrapper>.swiper-slide\":false},[\"scroll-snap-align:center center\"]],[false,{\".swiper-virtual .swiper-slide\":false},[\"-webkit-backface-visibility:hidden\",\"transform:translateZ(0)\"]],[false,{\".swiper-virtual.swiper-css-mode .swiper-wrapper::after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"left:0\",\"top:0\",\"pointer-events:none\"]],[false,{\".swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after\":false},[\"height:1px\",\"width:var(--swiper-virtual-size)\"]],[false,{\".swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after\":false},[\"width:1px\",\"height:var(--swiper-virtual-size)\"]],[true,{\":root\":true},[\"--swiper-navigation-size:44px\"]],[false,{\".swiper-button-next\":false,\".swiper-button-prev\":false},[\"position:absolute\",\"top:50%\",\"width:calc(var(--swiper-navigation-size) \\/ 44 * 27)\",\"height:var(--swiper-navigation-size)\",\"margin-top:calc(0px - ( var(--swiper-navigation-size) \\/ 2 ))\",\"z-index:10\",\"cursor:pointer\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"color:var(--swiper-navigation-color,var(--swiper-theme-color))\"]],[false,{\".swiper-button-next.swiper-button-disabled\":false,\".swiper-button-prev.swiper-button-disabled\":false},[\"opacity:.35\",\"cursor:auto\",\"pointer-events:none\"]],[false,{\".swiper-button-next.swiper-button-hidden\":false,\".swiper-button-prev.swiper-button-hidden\":false},[\"opacity:0\",\"cursor:auto\",\"pointer-events:none\"]],[false,{\".swiper-navigation-disabled .swiper-button-next:not(#_#_#_#_#_#_#_)\":false,\".swiper-navigation-disabled .swiper-button-prev:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-button-next:after\":false,\".swiper-button-prev:after\":false},[\"font-family:swiper-icons\",\"font-size:var(--swiper-navigation-size)\",\"letter-spacing:0\",\"font-variant:initial\",\"line-height:1\"]],[false,{\".swiper-button-next:after:not(#_#_#_#_#_#_#_#_)\":false,\".swiper-button-prev:after:not(#_#_#_#_#_#_#_#_)\":false},[\"text-transform:none\"]],[false,{\".swiper-button-prev\":false,\".swiper-rtl .swiper-button-next\":false},[\"left:10px\",\"right:auto\"]],[false,{\".swiper-button-prev:after\":false,\".swiper-rtl .swiper-button-next:after\":false},[\"content:\\\"prev\\\"\"]],[false,{\".swiper-button-next\":false,\".swiper-rtl .swiper-button-prev\":false},[\"right:10px\",\"left:auto\"]],[false,{\".swiper-button-next:after\":false,\".swiper-rtl .swiper-button-prev:after\":false},[\"content:\\\"next\\\"\"]],[false,{\".swiper-button-lock\":false},[\"display:none\"]],[false,{\".swiper-pagination\":false},[\"position:absolute\",\"text-align:center\",\"transition:.3s opacity\",\"transform:translate3d(0,0,0)\",\"z-index:10\"]],[false,{\".swiper-pagination.swiper-pagination-hidden\":false},[\"opacity:0\"]],[false,{\".swiper-pagination-disabled>.swiper-pagination:not(#_#_#_#_#_#_#_)\":false,\".swiper-pagination.swiper-pagination-disabled:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets\":false,\".swiper-pagination-bullets.swiper-pagination-horizontal\":false,\".swiper-pagination-custom\":false,\".swiper-pagination-fraction\":false},[\"bottom:10px\",\"left:0\",\"width:100%\"]],[false,{\".swiper-pagination-bullets-dynamic\":false},[\"overflow:hidden\",\"font-size:0\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"transform:scale(.33)\",\"position:relative\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active\":false},[\"transform:scale(1)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main\":false},[\"transform:scale(1)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev\":false},[\"transform:scale(.66)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev\":false},[\"transform:scale(.33)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next\":false},[\"transform:scale(.66)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next\":false},[\"transform:scale(.33)\"]],[false,{\".swiper-pagination-bullet\":false},[\"width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px))\",\"height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px))\",\"display:inline-block\",\"border-radius:50%\",\"background:var(--swiper-pagination-bullet-inactive-color,#000)\",\"opacity:var(--swiper-pagination-bullet-inactive-opacity,.2)\"]],[false,{\"button.swiper-pagination-bullet\":false},[\"border:none\",\"margin:0\",\"padding:0\",\"box-shadow:none\",\"-webkit-appearance:none\",\"appearance:none\"]],[false,{\".swiper-pagination-clickable .swiper-pagination-bullet\":false},[\"cursor:pointer\"]],[false,{\".swiper-pagination-bullet:only-child:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-pagination-bullet-active\":false},[\"opacity:var(--swiper-pagination-bullet-opacity,1)\",\"background:var(--swiper-pagination-color,var(--swiper-theme-color))\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets\":false,\".swiper-vertical>.swiper-pagination-bullets\":false},[\"right:10px\",\"top:50%\",\"transform:translate3d(0px,-50%,0)\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet\":false,\".swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet\":false},[\"margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0\",\"display:block\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false,\".swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false},[\"top:50%\",\"transform:translateY(-50%)\",\"width:8px\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false,\".swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"display:inline-block\",\"transition:.2s transform,.2s top\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet\":false,\".swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet\":false},[\"margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false,\".swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false},[\"left:50%\",\"transform:translateX(-50%)\",\"white-space:nowrap\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false,\".swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"transition:.2s transform,.2s left\"]],[false,{\".swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"transition:.2s transform,.2s right\"]],[false,{\".swiper-pagination-progressbar\":false},[\"background:rgba(0,0,0,.25)\",\"position:absolute\"]],[false,{\".swiper-pagination-progressbar .swiper-pagination-progressbar-fill\":false},[\"background:var(--swiper-pagination-color,var(--swiper-theme-color))\",\"position:absolute\",\"left:0\",\"top:0\",\"width:100%\",\"height:100%\",\"transform:scale(0)\",\"transform-origin:left top\"]],[false,{\".swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill\":false},[\"transform-origin:right top\"]],[false,{\".swiper-horizontal>.swiper-pagination-progressbar\":false,\".swiper-pagination-progressbar.swiper-pagination-horizontal\":false,\".swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite\":false,\".swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite\":false},[\"width:100%\",\"height:4px\",\"left:0\",\"top:0\"]],[false,{\".swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite\":false,\".swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite\":false,\".swiper-pagination-progressbar.swiper-pagination-vertical\":false,\".swiper-vertical>.swiper-pagination-progressbar\":false},[\"width:4px\",\"height:100%\",\"left:0\",\"top:0\"]],[false,{\".swiper-pagination-lock\":false},[\"display:none\"]],[false,{\".swiper-scrollbar\":false},[\"border-radius:10px\",\"position:relative\",\"-ms-touch-action:none\",\"background:rgba(0,0,0,.1)\"]],[false,{\".swiper-scrollbar-disabled>.swiper-scrollbar:not(#_#_#_#_#_#_#_)\":false,\".swiper-scrollbar.swiper-scrollbar-disabled:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-horizontal>.swiper-scrollbar\":false,\".swiper-scrollbar.swiper-scrollbar-horizontal\":false},[\"position:absolute\",\"left:1%\",\"bottom:3px\",\"z-index:50\",\"height:5px\",\"width:98%\"]],[false,{\".swiper-scrollbar.swiper-scrollbar-vertical\":false,\".swiper-vertical>.swiper-scrollbar\":false},[\"position:absolute\",\"right:3px\",\"top:1%\",\"z-index:50\",\"width:5px\",\"height:98%\"]],[false,{\".swiper-scrollbar-drag\":false},[\"height:100%\",\"width:100%\",\"position:relative\",\"background:rgba(0,0,0,.5)\",\"border-radius:10px\",\"left:0\",\"top:0\"]],[false,{\".swiper-scrollbar-cursor-drag\":false},[\"cursor:move\"]],[false,{\".swiper-scrollbar-lock\":false},[\"display:none\"]],[false,{\".swiper-zoom-container\":false},[\"width:100%\",\"height:100%\",\"display:flex\",\"justify-content:center\",\"align-items:center\",\"text-align:center\"]],[false,{\".swiper-zoom-container>canvas\":false,\".swiper-zoom-container>amp-img\":false,\".swiper-zoom-container>amp-anim\":false,\".swiper-zoom-container>svg\":false},[\"max-width:100%\",\"max-height:100%\",\"object-fit:contain\"]],[false,{\".swiper-slide-zoomed\":false},[\"cursor:move\"]],[false,{\".swiper-lazy-preloader\":false},[\"width:42px\",\"height:42px\",\"position:absolute\",\"left:50%\",\"top:50%\",\"margin-left:-21px\",\"margin-top:-21px\",\"z-index:10\",\"transform-origin:50%\",\"box-sizing:border-box\",\"border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color))\",\"border-radius:50%\",\"border-top-color:transparent\"]],[false,{\".swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader\":false,\".swiper:not(.swiper-watch-progress) .swiper-lazy-preloader\":false},[\"animation:swiper-preloader-spin 1s infinite linear\"]],[false,{\".swiper-lazy-preloader-white\":false},[\"--swiper-preloader-color:#fff\"]],[false,{\".swiper-lazy-preloader-black\":false},[\"--swiper-preloader-color:#000\"]],[true,\"@keyframes swiper-preloader-spin{\"],[true,\"0%{transform:rotate(0deg)}\"],[true,\"100%{transform:rotate(360deg)}\"],[true,\"}\"],[false,{\".swiper .swiper-notification\":false},[\"position:absolute\",\"left:0\",\"top:0\",\"pointer-events:none\",\"opacity:0\",\"z-index:-1000\"]],[false,{\".swiper-free-mode>.swiper-wrapper\":false},[\"transition-timing-function:ease-out\",\"margin:0 auto\"]],[false,{\".swiper-grid>.swiper-wrapper\":false},[\"flex-wrap:wrap\"]],[false,{\".swiper-grid-column>.swiper-wrapper\":false},[\"flex-wrap:wrap\",\"flex-direction:column\"]],[false,{\".swiper-fade.swiper-free-mode .swiper-slide\":false},[\"transition-timing-function:ease-out\"]],[false,{\".swiper-fade .swiper-slide\":false},[\"pointer-events:none\",\"transition-property:opacity\"]],[false,{\".swiper-fade .swiper-slide .swiper-slide\":false},[\"pointer-events:none\"]],[false,{\".swiper-fade .swiper-slide-active\":false,\".swiper-fade .swiper-slide-active .swiper-slide-active\":false},[\"pointer-events:auto\"]],[false,{\".swiper-cube\":false},[\"overflow:visible\"]],[false,{\".swiper-cube .swiper-slide\":false},[\"pointer-events:none\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"z-index:1\",\"visibility:hidden\",\"transform-origin:0 0\",\"width:100%\",\"height:100%\"]],[false,{\".swiper-cube .swiper-slide .swiper-slide\":false},[\"pointer-events:none\"]],[false,{\".swiper-cube.swiper-rtl .swiper-slide\":false},[\"transform-origin:100% 0\"]],[false,{\".swiper-cube .swiper-slide-active\":false,\".swiper-cube .swiper-slide-active .swiper-slide-active\":false},[\"pointer-events:auto\"]],[false,{\".swiper-cube .swiper-slide-active\":false,\".swiper-cube .swiper-slide-next\":false,\".swiper-cube .swiper-slide-next+.swiper-slide\":false,\".swiper-cube .swiper-slide-prev\":false},[\"pointer-events:auto\",\"visibility:visible\"]],[false,{\".swiper-cube .swiper-slide-shadow-bottom\":false,\".swiper-cube .swiper-slide-shadow-left\":false,\".swiper-cube .swiper-slide-shadow-right\":false,\".swiper-cube .swiper-slide-shadow-top\":false},[\"z-index:0\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".swiper-cube .swiper-cube-shadow\":false},[\"position:absolute\",\"left:0\",\"bottom:0px\",\"width:100%\",\"height:100%\",\"opacity:.6\",\"z-index:0\"]],[false,{\".swiper-cube .swiper-cube-shadow:before\":false},[\"content:\\\"\\\"\",\"background:#000\",\"position:absolute\",\"left:0\",\"top:0\",\"bottom:0\",\"right:0\",\"filter:blur(50px)\"]],[false,{\".swiper-flip\":false},[\"overflow:visible\"]],[false,{\".swiper-flip .swiper-slide\":false},[\"pointer-events:none\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"z-index:1\"]],[false,{\".swiper-flip .swiper-slide .swiper-slide\":false},[\"pointer-events:none\"]],[false,{\".swiper-flip .swiper-slide-active\":false,\".swiper-flip .swiper-slide-active .swiper-slide-active\":false},[\"pointer-events:auto\"]],[false,{\".swiper-flip .swiper-slide-shadow-bottom\":false,\".swiper-flip .swiper-slide-shadow-left\":false,\".swiper-flip .swiper-slide-shadow-right\":false,\".swiper-flip .swiper-slide-shadow-top\":false},[\"z-index:0\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".swiper-creative .swiper-slide\":false},[\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"overflow:hidden\",\"transition-property:transform,opacity,height\"]],[false,{\".swiper-cards\":false},[\"overflow:visible\"]],[false,{\".swiper-cards .swiper-slide\":false},[\"transform-origin:center bottom\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"overflow:hidden\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":810,\"final_size\":766,\"element\":{\"name\":\"style\",\"attributes\":[]},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Header_Output.php\",\"line\":69,\"function\":\"SWP_Header_Output::add_header_output\",\"hook\":\"wp_head\",\"priority\":1}],\"priority\":70,\"hash\":\"0a9255310f1740c2ab6cffd5f5a29640\",\"parse_time\":0.0011060237884521484,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0#iefix\"],\"shaken_tokens\":[[true,\"@font-face{font-family:\\\"sw-icon-font\\\";src:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0\\\");src:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.woff?ver=4.3.0\\\") format(\\\"woff\\\"),url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.ttf?ver=4.3.0\\\") format(\\\"truetype\\\"),url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.svg?ver=4.3.0#1445203416\\\") format(\\\"svg\\\");font-weight:normal;font-style:normal;font-display:block}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2209,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"social-warfare-block-css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/js\\/post-editor\\/dist\\/blocks.style.build.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"assets\\/js\\/post-editor\\/blocks.php\",\"line\":20,\"function\":\"register_gutenberg_blocks\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social-warfare-block-css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"c542eecf74fba8e6b26c437634e5223e\",\"parse_time\":0.010244131088256836,\"shake_time\":3.314018249511719e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".social-warfare-admin-block\":false},[\"font-family:\\\"SF Pro Text\\\",\\\"Helvetica\\\",sans-serif\",\"font-size:13px\"]],[false,{\".social-warfare-admin-block .head\":false},[\"width:100%\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".social-warfare-admin-block .head p\":false},[\"font-weight:bold\"]],[false,{\".social-warfare-admin-block .swp-block-icon\":false},[\"margin:0 28px 0 14px\",\"font-size:18px\",\"width:32px\",\"height:32px\"]],[false,{\".social-warfare-block-wrap input\":false,\".social-warfare-block-wrap select\":false},[\"width:100%\"]],[false,{\".swp-active-block\":false},[\"height:100%\"]],[false,{\".swp-active-block input\":false,\".swp-active-block select\":false,\".swp-active-block textarea\":false},[\"display:block\",\"width:100%\",\"padding:5px\",\"height:42px\",\"border:1px solid #e2e4e7\"]],[false,{\".swp-active-block textarea\":false},[\"height:64px\"]],[false,{\".swp-active-block .swp-inner-block-50\":false},[\"width:50%\",\"display:inline-block\",\"padding:0 1px\"]],[false,{\".swp-active-block .head>div\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row no-wrap\",\"flex-flow:row no-wrap\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".swp-active-block .head .swp-block-icon\":false,\".swp-active-block .head .swp-block-title\":false},[\"display:inline-block\"]],[false,{\".swp-active-block p\":false},[\"margin:25px 0 5px 0\"]],[false,{\".swp-active-block .head p\":false},[\"margin:initial\"]],[false,{\".swp-inactive-block\":false},[\"min-height:50px\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".swp-inactive-block code\":false},[\"display:block\",\"width:100%\",\"padding:5px\",\"height:42px\"]],[false,{\".swp-inactive-block .swp-preview\":false},[\"background:#f5f5f5\",\"width:100%\",\"display:block\",\"font-family:\\\"SF Pro Text\\\",\\\"Helvetica\\\",sans-sans-serif\",\"font-size:13px\",\"padding:15px\",\"border-radius:4px\"]],[false,{\".swp-inactive-block .swp-dashicon\":false},[\"margin:0 14px\"]],[false,{\".click-to-tweet-block-wrap textarea[name=\\\"tweetText\\\"]\":false},[\"border-top-right-radius:0px\"]],[false,{\".click-to-tweet-block-wrap .block-characters-remaining\":false},[\"font-size:16px\",\"font-size:13px\",\"font-weight:normal\",\"color:white\",\"padding:5px\",\"padding:5px 15px\",\"border-top-right-radius:4px\",\"border-top-left-radius:4px\",\"background:#30394f\",\"margin:0\",\"float:right\",\"max-width:200px\",\"position:relative\",\"-webkit-transition:all 300ms\",\"-o-transition:all 300ms\",\"transition:all 300ms\"]],[false,{\".click-to-tweet-block-wrap .block-characters-remaining.over-limit\":false},[\"background:#ee464f\",\"color:#fff\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1388,\"final_size\":216,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=2.3.0\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1020,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2261,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"82cd798ece835d3c574519b60ef930fe\",\"parse_time\":0.0071032047271728516,\"shake_time\":0.00022482872009277344,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-unknown-size\":false,\"amp-anim.amp-wp-enforced-sizes\":false,\"amp-img.amp-wp-enforced-sizes\":true},[\"-o-object-fit:contain\",\"object-fit:contain\"]],[false,{\"body amp-audio:not([controls])\":false},[\"display:inline-block\",\"height:auto\"]],[false,{\".amp-wp-default-form-message>p\":false},[\"margin:1em 0\",\"padding:.5em\"]],[false,{\".amp-wp-default-form-message[submit-success]>p.amp-wp-form-redirecting\":false,\".amp-wp-default-form-message[submitting]>p\":false},[\"font-style:italic\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:not(.amp-wp-form-redirecting)\":false},[\"background-color:#90ee90\",\"border:1px solid green\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-error]>p\":false},[\"background-color:#ffb6c1\",\"border:1px solid red\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:empty\":false},[\"display:none\"]],[false,{\"amp-carousel .amp-wp-gallery-caption\":false},[\"background-color:rgba(0,0,0,.5)\",\"bottom:0\",\"color:#fff\",\"left:0\",\"margin-bottom:0\",\"padding:1rem\",\"position:absolute\",\"right:0\",\"text-align:center\"]],[false,{\"amp-carousel .amp-wp-gallery-caption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery[data-amp-carousel=true]\":false,\".wp-block-gallery[data-amp-carousel=true].has-nested-images\":false},[\"display:block\",\"flex-wrap:unset\"]],[false,{\".wp-video\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"height:auto\"]],[false,{\"button[overflow]\":false},[\"bottom:0\"]],[true,{\"amp-anim img\":false,\"amp-anim noscript\":false,\"amp-iframe iframe\":false,\"amp-iframe noscript\":false,\"amp-img img\":true,\"amp-img noscript\":true,\"amp-video noscript\":false,\"amp-video video\":false},[\"image-rendering:inherit\",\"-o-object-fit:inherit\",\"object-fit:inherit\",\"-o-object-position:inherit\",\"object-position:inherit\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":80574,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"wp-block-library-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/css\\/dist\\/block-library\\/style.min.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":1381,\"function\":\"wp_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2246,\"function\":\"wp_common_block_scripts_and_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":20,\"hash\":\"db08bb47cd026dcad266bd62ddc38fd8\",\"parse_time\":1.007054090499878,\"shake_time\":0.0009391307830810547,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\"#start-resizable-editor-section\":false},[\"display:none\"]],[false,{\".wp-block-audio\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-audio figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-audio amp-audio\":false},[\"width:100%\",\"min-width:300px\"]],[false,{\".wp-block-button__link\":false},[\"color:#fff\",\"background-color:#32373c\",\"border-radius:9999px\",\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"font-size:1.125em\",\"padding:calc(.667em + 2px) calc(1.333em + 2px)\",\"text-align:center\",\"text-decoration:none\",\"overflow-wrap:break-word\",\"box-sizing:border-box\"]],[false,{\".wp-block-button__link:active\":false,\".wp-block-button__link:focus\":false,\".wp-block-button__link:hover\":false,\".wp-block-button__link:visited\":false},[\"color:#fff\"]],[false,{\".wp-block-button__link.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-button__link.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width\":false},[\"max-width:none\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"width:calc(100% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100:only-child\":false},[\"margin-right:0\",\"width:100%\"]],[false,\"@supports (column-gap:0.5em){\"],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button.wp-block-button\":false,\".wp-block-buttons>.wp-block-button.wp-block-button\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - .375em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - .25em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - .125em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"width:auto\",\"flex-basis:100%\"]],[false,\"}\"],[false,{\".wp-block-button.is-style-squared\":false,\".wp-block-button__link.wp-block-button.is-style-squared\":false},[\"border-radius:0\"]],[false,{\".wp-block-button.no-border-radius:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button__link.no-border-radius:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[false,{\".is-style-outline>.wp-block-button__link\":false,\".wp-block-button__link.is-style-outline\":false},[\"border:2px solid\",\"padding:.667em 1.333em\"]],[false,{\".is-style-outline>.wp-block-button__link:not(.has-text-color)\":false,\".wp-block-button__link.is-style-outline:not(.has-text-color)\":false},[\"color:currentColor\"]],[false,{\".is-style-outline>.wp-block-button__link:not(.has-background)\":false,\".wp-block-button__link.is-style-outline:not(.has-background)\":false},[\"background-color:transparent\"]],[false,{\".wp-block-buttons\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\",\"column-gap:.5em\"]],[false,{\".wp-block-buttons.is-vertical\":false},[\"flex-direction:column\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-buttons>.wp-block-button\":false},[\"display:inline-block\",\"margin-left:0\",\"margin-right:.5em\",\"margin-bottom:.5em\"]],[false,{\".wp-block-buttons>.wp-block-button:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.is-content-justification-left\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-left.is-vertical\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-center\":false},[\"justify-content:center\"]],[false,{\".wp-block-buttons.is-content-justification-center.is-vertical\":false},[\"align-items:center\"]],[false,{\".wp-block-buttons.is-content-justification-right\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button\":false},[\"margin-left:.5em\",\"margin-right:0\"]],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-buttons.is-content-justification-right.is-vertical\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-space-between\":false},[\"justify-content:space-between\"]],[false,{\".wp-block-buttons.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-buttons.alignleft .wp-block-button\":false},[\"margin-left:0\",\"margin-right:.5em\"]],[false,{\".wp-block-buttons.alignleft .wp-block-button:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.alignright .wp-block-button\":false},[\"margin-right:0\",\"margin-left:.5em\"]],[false,{\".wp-block-buttons.alignright .wp-block-button:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-button.aligncenter\":false,\".wp-block-calendar\":false},[\"text-align:center\"]],[false,{\".wp-block-calendar tbody td\":false,\".wp-block-calendar th\":false},[\"padding:.25em\",\"border:1px solid #ddd\"]],[false,{\".wp-block-calendar tfoot td\":false},[\"border:none\"]],[false,{\".wp-block-calendar table\":false},[\"width:100%\",\"border-collapse:collapse\"]],[false,{\".wp-block-calendar table th\":false},[\"font-weight:400\",\"background:#ddd\"]],[false,{\".wp-block-calendar a\":false},[\"text-decoration:underline\"]],[false,{\".wp-block-calendar table caption\":false,\".wp-block-calendar table tbody\":false},[\"color:#40464d\"]],[false,{\".wp-block-categories.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-categories.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-code code\":false},[\"display:block\",\"white-space:pre-wrap\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-columns\":false},[\"display:flex\",\"margin-bottom:1.75em\",\"box-sizing:border-box\",\"flex-wrap:wrap\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns\":false},[\"flex-wrap:nowrap\"]],[false,\"}\"],[false,{\".wp-block-columns.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-columns.are-vertically-aligned-top\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-columns.are-vertically-aligned-center\":false},[\"align-items:center\"]],[false,{\".wp-block-columns.are-vertically-aligned-bottom\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-column\":false},[\"flex-grow:1\",\"min-width:0\",\"word-break:break-word\",\"overflow-wrap:break-word\"]],[false,\"@media (max-width:599px){\"],[false,{\".wp-block-column:not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:100%\"]],[false,\"}\"],[false,\"@media (min-width:600px) and (max-width:781px){\"],[false,{\".wp-block-column:not(:only-child)\":false},[\"flex-grow:0\"]],[false,{\".wp-block-column:not(:only-child):not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:calc(50% - 1em)\"]],[false,{\".wp-block-column:nth-child(2n)\":false},[\"margin-left:2em\"]],[false,\"}\"],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[false,{\".wp-block-column:not(:first-child)\":false},[\"margin-left:2em\"]],[false,\"}\"],[false,{\".wp-block-column.is-vertically-aligned-top\":false},[\"align-self:flex-start\"]],[false,{\".wp-block-column.is-vertically-aligned-center\":false},[\"align-self:center\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false},[\"align-self:flex-end\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false,\".wp-block-column.is-vertically-aligned-center\":false,\".wp-block-column.is-vertically-aligned-top\":false},[\"width:100%\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"position:relative\",\"background-size:cover\",\"background-position:50%\",\"min-height:430px\",\"width:100%\",\"display:flex\",\"justify-content:center\",\"align-items:center\",\"padding:1em\",\"box-sizing:border-box\"]],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:fixed\"]],[false,\"@supports (-webkit-overflow-scrolling:touch){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,{\".wp-block-cover-image.is-repeated\":false,\".wp-block-cover.is-repeated\":false},[\"background-repeat:repeat\",\"background-size:auto\"]],[false,{\".wp-block-cover-image.has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover.has-background-dim:not([class*=-background-color])\":false},[\"background-color:#000\"]],[false,{\".wp-block-cover-image.has-background-dim:before\":false,\".wp-block-cover.has-background-dim:before\":false},[\"content:\\\"\\\"\",\"background-color:inherit\"]],[false,{\".wp-block-cover-image.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover-image .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover .wp-block-cover__gradient-background\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"bottom:0\",\"right:0\",\"z-index:1\",\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false},[\"opacity:1\"]],[false,{\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-cover-image:after\":false,\".wp-block-cover:after\":false},[\"display:block\",\"content:\\\"\\\"\",\"font-size:0\",\"min-height:inherit\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-cover-image:after\":false,\".wp-block-cover:after\":false},[\"content:none\"]],[false,\"}\"],[false,{\".wp-block-cover-image.aligncenter\":false,\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.aligncenter\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"display:flex\"]],[false,{\".wp-block-cover-image .wp-block-cover__inner-container\":false,\".wp-block-cover .wp-block-cover__inner-container\":false},[\"width:100%\",\"z-index:1\",\"color:#fff\"]],[false,{\".wp-block-cover-image h1:not(.has-text-color)\":false,\".wp-block-cover-image h2:not(.has-text-color)\":false,\".wp-block-cover-image h3:not(.has-text-color)\":false,\".wp-block-cover-image h4:not(.has-text-color)\":false,\".wp-block-cover-image h5:not(.has-text-color)\":false,\".wp-block-cover-image h6:not(.has-text-color)\":false,\".wp-block-cover-image p:not(.has-text-color)\":false,\".wp-block-cover h1:not(.has-text-color)\":false,\".wp-block-cover h2:not(.has-text-color)\":false,\".wp-block-cover h3:not(.has-text-color)\":false,\".wp-block-cover h4:not(.has-text-color)\":false,\".wp-block-cover h5:not(.has-text-color)\":false,\".wp-block-cover h6:not(.has-text-color)\":false,\".wp-block-cover p:not(.has-text-color)\":false},[\"color:inherit\"]],[false,{\".wp-block-cover-image.is-position-top-left\":false,\".wp-block-cover.is-position-top-left\":false},[\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-top-center\":false,\".wp-block-cover.is-position-top-center\":false},[\"align-items:flex-start\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-top-right\":false,\".wp-block-cover.is-position-top-right\":false},[\"align-items:flex-start\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-center-left\":false,\".wp-block-cover.is-position-center-left\":false},[\"align-items:center\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-center-center\":false,\".wp-block-cover.is-position-center-center\":false},[\"align-items:center\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-center-right\":false,\".wp-block-cover.is-position-center-right\":false},[\"align-items:center\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-bottom-left\":false,\".wp-block-cover.is-position-bottom-left\":false},[\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-bottom-center\":false,\".wp-block-cover.is-position-bottom-center\":false},[\"align-items:flex-end\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-bottom-right\":false,\".wp-block-cover.is-position-bottom-right\":false},[\"align-items:flex-end\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false},[\"margin:0\",\"width:auto\"]],[false,{\".wp-block-cover-image amp-img.wp-block-cover__image-background\":false,\".wp-block-cover-image amp-anim.wp-block-cover__image-background\":false,\".wp-block-cover-image amp-video.wp-block-cover__video-background\":false,\".wp-block-cover-image amp-youtube.wp-block-cover__video-background\":false,\".wp-block-cover amp-img.wp-block-cover__image-background\":false,\".wp-block-cover amp-anim.wp-block-cover__image-background\":false,\".wp-block-cover amp-video.wp-block-cover__video-background\":false,\".wp-block-cover amp-youtube.wp-block-cover__video-background\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"margin:0\",\"padding:0\",\"width:100%\",\"height:100%\",\"max-width:none\",\"max-height:none\",\"-o-object-fit:cover\",\"object-fit:cover\",\"outline:none\",\"border:none\",\"box-shadow:none\"]],[false,{\".wp-block-cover__image-background\":false,\".wp-block-cover__video-background\":false},[\"z-index:0\"]],[false,{\".wp-block-cover-image-text\":false,\".wp-block-cover-image-text a\":false,\".wp-block-cover-image-text a:active\":false,\".wp-block-cover-image-text a:focus\":false,\".wp-block-cover-image-text a:hover\":false,\".wp-block-cover-text\":false,\".wp-block-cover-text a\":false,\".wp-block-cover-text a:active\":false,\".wp-block-cover-text a:focus\":false,\".wp-block-cover-text a:hover\":false,\"section.wp-block-cover-image h2\":false,\"section.wp-block-cover-image h2 a\":false,\"section.wp-block-cover-image h2 a:active\":false,\"section.wp-block-cover-image h2 a:focus\":false,\"section.wp-block-cover-image h2 a:hover\":false},[\"color:#fff\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-left-content\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-right-content\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-left-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-left-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-left-content>h2\":false},[\"margin-left:0\",\"text-align:left\"]],[false,{\".wp-block-cover-image.has-right-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-right-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-right-content>h2\":false},[\"margin-right:0\",\"text-align:right\"]],[false,{\".wp-block-cover-image .wp-block-cover-image-text\":false,\".wp-block-cover .wp-block-cover-text\":false,\"section.wp-block-cover-image>h2\":false},[\"font-size:2em\",\"line-height:1.25\",\"z-index:1\",\"margin-bottom:0\",\"max-width:840px\",\"padding:.44em\",\"text-align:center\"]],[false,{\".wp-block-embed.alignleft\":false,\".wp-block-embed.alignright\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"]\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"]\":false},[\"max-width:360px\",\"width:100%\"]],[false,{\".wp-block-embed.alignleft .wp-block-embed__wrapper\":false,\".wp-block-embed.alignright .wp-block-embed__wrapper\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false},[\"min-width:280px\"]],[false,{\".wp-block-cover .wp-block-embed\":false},[\"min-width:320px\",\"min-height:240px\"]],[false,{\".wp-block-embed\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-embed figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-embed amp-iframe\":false},[\"max-width:100%\"]],[false,{\".wp-block-embed__wrapper\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio amp-iframe\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"height:100%\",\"width:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:42.85%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:56.25%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before\":false},[\"padding-top:75%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before\":false},[\"padding-top:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before\":false},[\"padding-top:177.77%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before\":false},[\"padding-top:200%\"]],[false,{\".wp-block-file\":false},[\"margin-bottom:1.5em\"]],[false,{\".wp-block-file.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-file.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-file .wp-block-file__embed\":false},[\"margin-bottom:1em\"]],[false,{\".wp-block-file .wp-block-file__button\":false},[\"background:#32373c\",\"border-radius:2em\",\"color:#fff\",\"font-size:.8em\",\"padding:.5em 1em\"]],[false,{\".wp-block-file a.wp-block-file__button\":false},[\"text-decoration:none\"]],[false,{\".wp-block-file a.wp-block-file__button:active\":false,\".wp-block-file a.wp-block-file__button:focus\":false,\".wp-block-file a.wp-block-file__button:hover\":false,\".wp-block-file a.wp-block-file__button:visited\":false},[\"box-shadow:none\",\"color:#fff\",\"opacity:.85\",\"text-decoration:none\"]],[false,{\".wp-block-file *+.wp-block-file__button\":false},[\"margin-left:.75em\"]],[false,{\".blocks-gallery-grid\":false,\".wp-block-gallery\":false},[\"display:flex\",\"flex-wrap:wrap\",\"list-style-type:none\",\"padding:0\",\"margin:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image\":false,\".blocks-gallery-grid .blocks-gallery-item\":false,\".wp-block-gallery .blocks-gallery-image\":false,\".wp-block-gallery .blocks-gallery-item\":false},[\"margin:0 1em 1em 0\",\"display:flex\",\"flex-grow:1\",\"flex-direction:column\",\"justify-content:center\",\"position:relative\",\"align-self:flex-start\",\"width:calc(50% - 1em)\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery .blocks-gallery-item:nth-of-type(2n)\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image figure\":false,\".blocks-gallery-grid .blocks-gallery-item figure\":false,\".wp-block-gallery .blocks-gallery-image figure\":false,\".wp-block-gallery .blocks-gallery-item figure\":false},[\"margin:0\",\"height:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid .blocks-gallery-image figure\":false,\".blocks-gallery-grid .blocks-gallery-item figure\":false,\".wp-block-gallery .blocks-gallery-image figure\":false,\".wp-block-gallery .blocks-gallery-item figure\":false},[\"display:flex\",\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item amp-anim\":false,\".wp-block-gallery .blocks-gallery-image amp-img\":false,\".wp-block-gallery .blocks-gallery-image amp-anim\":false,\".wp-block-gallery .blocks-gallery-item amp-img\":false,\".wp-block-gallery .blocks-gallery-item amp-anim\":false},[\"display:block\",\"max-width:100%\",\"height:auto\",\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item amp-anim\":false,\".wp-block-gallery .blocks-gallery-image amp-img\":false,\".wp-block-gallery .blocks-gallery-image amp-anim\":false,\".wp-block-gallery .blocks-gallery-item amp-img\":false,\".wp-block-gallery .blocks-gallery-item amp-anim\":false},[\"width:auto\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image figcaption\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption\":false,\".wp-block-gallery .blocks-gallery-image figcaption\":false,\".wp-block-gallery .blocks-gallery-item figcaption\":false},[\"position:absolute\",\"bottom:0\",\"width:100%\",\"max-height:100%\",\"overflow:auto\",\"padding:3em .77em .7em\",\"color:#fff\",\"text-align:center\",\"font-size:.8em\",\"background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent)\",\"box-sizing:border-box\",\"margin:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image figcaption amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image figcaption amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption amp-anim\":false,\".wp-block-gallery .blocks-gallery-image figcaption amp-img\":false,\".wp-block-gallery .blocks-gallery-image figcaption amp-anim\":false,\".wp-block-gallery .blocks-gallery-item figcaption amp-img\":false,\".wp-block-gallery .blocks-gallery-item figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".blocks-gallery-grid figcaption\":false,\".wp-block-gallery figcaption\":false},[\"flex-grow:1\"]],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item\":false},[\"align-self:inherit\"]],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-anim\":false},[\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-anim\":false},[\"height:100%\",\"flex:1\",\"-o-object-fit:cover\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".blocks-gallery-grid.columns-1 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-1 .blocks-gallery-item\":false,\".wp-block-gallery.columns-1 .blocks-gallery-image\":false,\".wp-block-gallery.columns-1 .blocks-gallery-item\":false},[\"width:100%\",\"margin-right:0\"]],[false,\"@media (min-width:600px){\"],[false,{\".blocks-gallery-grid.columns-3 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-item\":false,\".wp-block-gallery.columns-3 .blocks-gallery-image\":false,\".wp-block-gallery.columns-3 .blocks-gallery-item\":false},[\"width:calc(33.33333% - .66667em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-4 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-item\":false,\".wp-block-gallery.columns-4 .blocks-gallery-image\":false,\".wp-block-gallery.columns-4 .blocks-gallery-item\":false},[\"width:calc(25% - .75em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-5 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-item\":false,\".wp-block-gallery.columns-5 .blocks-gallery-image\":false,\".wp-block-gallery.columns-5 .blocks-gallery-item\":false},[\"width:calc(20% - .8em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-6 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-item\":false,\".wp-block-gallery.columns-6 .blocks-gallery-image\":false,\".wp-block-gallery.columns-6 .blocks-gallery-item\":false},[\"width:calc(16.66667% - .83333em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-7 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-item\":false,\".wp-block-gallery.columns-7 .blocks-gallery-image\":false,\".wp-block-gallery.columns-7 .blocks-gallery-item\":false},[\"width:calc(14.28571% - .85714em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-8 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-item\":false,\".wp-block-gallery.columns-8 .blocks-gallery-image\":false,\".wp-block-gallery.columns-8 .blocks-gallery-item\":false},[\"width:calc(12.5% - .875em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n)\":false,\".wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image:last-child\":false,\".blocks-gallery-grid .blocks-gallery-item:last-child\":false,\".wp-block-gallery .blocks-gallery-image:last-child\":false,\".wp-block-gallery .blocks-gallery-item:last-child\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid.alignleft\":false,\".blocks-gallery-grid.alignright\":false,\".wp-block-gallery.alignleft\":false,\".wp-block-gallery.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".blocks-gallery-grid.aligncenter .blocks-gallery-item figure\":false,\".wp-block-gallery.aligncenter .blocks-gallery-item figure\":false},[\"justify-content:center\"]],[false,{\".wp-block-group\":false},[\"box-sizing:border-box\"]],[false,{\"h1.has-background\":false,\"h2.has-background\":false,\"h3.has-background\":false,\"h4.has-background\":false,\"h5.has-background\":false,\"h6.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-image\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-image amp-img\":false,\".wp-block-image amp-anim\":false},[\"max-width:100%\"]],[false,{\".wp-block-image:not(.is-style-rounded) amp-img\":false,\".wp-block-image:not(.is-style-rounded) amp-anim\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-image.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-image.alignfull amp-img\":false,\".wp-block-image.alignfull amp-anim\":false,\".wp-block-image.alignwide amp-img\":false,\".wp-block-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\".wp-block-image .aligncenter\":false,\".wp-block-image .alignleft\":false,\".wp-block-image .alignright\":false},[\"display:table\"]],[false,{\".wp-block-image .aligncenter>figcaption\":false,\".wp-block-image .alignleft>figcaption\":false,\".wp-block-image .alignright>figcaption\":false},[\"display:table-caption\",\"caption-side:bottom\"]],[false,{\".wp-block-image .alignleft\":false},[\"float:left\",\"margin:.5em 1em .5em 0\"]],[false,{\".wp-block-image .alignright\":false},[\"float:right\",\"margin:.5em 0 .5em 1em\"]],[false,{\".wp-block-image .aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-block-image figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false,\".wp-block-image.is-style-rounded amp-img\":false,\".wp-block-image.is-style-rounded amp-anim\":false},[\"border-radius:9999px\"]],[false,\"@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){\"],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"-webkit-mask-image:url(\\\"data:image\\/svg+xml;utf8,<\\/svg>\\\")\",\"mask-image:url(\\\"data:image\\/svg+xml;utf8,<\\/svg>\\\")\",\"mask-mode:alpha\",\"-webkit-mask-repeat:no-repeat\",\"mask-repeat:no-repeat\",\"-webkit-mask-size:contain\",\"mask-size:contain\",\"-webkit-mask-position:center\",\"mask-position:center\",\"border-radius:0\"]],[false,\"}\"],[false,{\".wp-block-image figure\":false},[\"margin:0\"]],[false,{\"ol.wp-block-latest-comments\":false},[\"margin-left:0\"]],[false,{\".wp-block-latest-comments .wp-block-latest-comments\":false},[\"padding-left:0\"]],[false,{\".wp-block-latest-comments__comment\":false},[\"line-height:1.1\",\"list-style:none\",\"margin-bottom:1em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment\":false},[\"min-height:2.25em\",\"list-style:none\"]],[false,{\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt\":false,\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta\":false},[\"margin-left:3.25em\"]],[false,{\".has-dates .wp-block-latest-comments__comment\":false,\".has-excerpts .wp-block-latest-comments__comment\":false},[\"line-height:1.5\"]],[false,{\".wp-block-latest-comments__comment-excerpt p\":false},[\"font-size:.875em\",\"line-height:1.8\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-latest-comments__comment-date\":false},[\"display:block\",\"font-size:.75em\"]],[false,{\".wp-block-latest-comments .avatar\":false,\".wp-block-latest-comments__comment-avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-latest-posts.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-latest-posts.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list\":false},[\"list-style:none\",\"padding-left:0\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list li\":false},[\"clear:both\"]],[false,{\".wp-block-latest-posts.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\"]],[false,{\".wp-block-latest-posts.is-grid li\":false},[\"margin:0 1.25em 1.25em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-latest-posts.columns-2 li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-latest-posts.columns-2 li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-3 li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-latest-posts.columns-3 li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-4 li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-latest-posts.columns-4 li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-latest-posts.columns-5 li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-6 li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-latest-posts.columns-6 li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".wp-block-latest-posts__post-author\":false,\".wp-block-latest-posts__post-date\":false},[\"display:block\",\"color:#555\",\"font-size:.8125em\"]],[false,{\".wp-block-latest-posts__post-excerpt\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-latest-posts__featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-latest-posts__featured-image amp-img\":false,\".wp-block-latest-posts__featured-image amp-anim\":false},[\"height:auto\",\"width:auto\",\"max-width:100%\"]],[false,{\".wp-block-latest-posts__featured-image.alignleft\":false},[\"margin-right:1em\"]],[false,{\".wp-block-latest-posts__featured-image.alignright\":false},[\"margin-left:1em\"]],[false,{\".wp-block-latest-posts__featured-image.aligncenter\":false},[\"margin-bottom:1em\",\"text-align:center\"]],[false,{\".block-editor-image-alignment-control__row .components-base-control__field\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\"]],[false,{\".block-editor-image-alignment-control__row .components-base-control__field .components-base-control__label\":false},[\"margin-bottom:0\"]],[false,{\"ol.has-background\":false,\"ul.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-media-text\":false},[\"direction:ltr\",\"display:grid\",\"grid-template-columns:50% 1fr\",\"grid-template-rows:auto\"]],[false,{\".wp-block-media-text.has-media-on-the-right\":false},[\"grid-template-columns:1fr 50%\"]],[false,{\".wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media\":false},[\"align-self:start\"]],[false,{\".wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media\":false,\".wp-block-media-text .wp-block-media-text__content\":false,\".wp-block-media-text .wp-block-media-text__media\":false},[\"align-self:center\"]],[false,{\".wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media\":false},[\"align-self:end\"]],[false,{\".wp-block-media-text .wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\",\"margin:0\"]],[false,{\".wp-block-media-text .wp-block-media-text__content\":false},[\"direction:ltr\",\"grid-column:2\",\"grid-row:1\",\"padding:0 8%\",\"word-break:break-word\"]],[false,{\".wp-block-media-text.has-media-on-the-right .wp-block-media-text__media\":false},[\"grid-column:2\",\"grid-row:1\"]],[false,{\".wp-block-media-text.has-media-on-the-right .wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"max-width:unset\",\"width:100%\",\"vertical-align:middle\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media\":false},[\"height:100%\",\"min-height:250px\",\"background-size:cover\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill .wp-block-media-text__media amp-anim\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-media-text.is-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"grid-template-columns:100%\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:2\"]],[false,\"}\"],[false,{\".wp-block-navigation\":false},[\"position:relative\"]],[false,{\".wp-block-navigation ul\":false,\".wp-block-navigation ul li\":false},[\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-navigation-link\":false,\".wp-block-navigation .wp-block-pages-list__item\":false},[\"display:flex\",\"align-items:center\",\"position:relative\"]],[false,{\".wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__container:empty\":false,\".wp-block-navigation .wp-block-pages-list__item .wp-block-navigation-link__container:empty\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__content\":false,\".wp-block-navigation .wp-block-pages-list__item__link\":false},[\"color:inherit\",\"display:block\"]],[false,{\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__container\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content:focus\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link:focus\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content:focus\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link:focus\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .wp-block-page-list__submenu-icon\":false},[\"height:inherit\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .wp-block-page-list__submenu-icon svg\":false},[\"stroke:currentColor\"]],[false,{\".wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__content.wp-block-navigation-link__content.wp-block-navigation-link__content\":false,\".wp-block-navigation .wp-block-pages-list__item .wp-block-pages-list__item__link\":false},[\"padding:0\"]],[false,{\".wp-block-navigation .has-child>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child>.wp-block-pages-list__item__link\":false},[\"margin-right:.5em\"]],[false,{\".wp-block-navigation .has-child .submenu-container\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container\":false},[\"background-color:inherit\",\"color:inherit\",\"position:absolute\",\"z-index:2\",\"flex-direction:column\",\"align-items:normal\",\"min-width:200px\",\"display:none\",\"opacity:0\",\"transition:opacity .1s linear\",\"visibility:hidden\"]],[false,{\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-pages-list__item__link\":false},[\"flex-grow:1\"]],[false,{\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-page-list__submenu-icon\":false},[\"padding-right:.5em\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation .has-child .submenu-container .submenu-container:before\":false,\".wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container:before\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container:before\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"right:100%\",\"height:100%\",\"display:block\",\"width:.5em\",\"background:transparent\"]],[false,{\".wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .has-child .submenu-container .wp-block-page-list__submenu-icon svg\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-page-list__submenu-icon svg\":false},[\"transform:rotate(-90deg)\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child:hover>.wp-block-navigation-link__container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:focus-within>.wp-block-navigation-link__container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:hover\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation .has-child:hover>.submenu-container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:focus-within\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation .has-child:focus-within>.submenu-container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container\":false},[\"left:auto\",\"right:0\"]],[false,{\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:auto\",\"right:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation .wp-block-navigation__container>.wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list>.wp-block-pages-list__item\":false},[\"margin:0 2em 0 0\"]],[false,{\".wp-block-navigation.wp-block-navigation .wp-block-navigation__container>.wp-block-navigation-link:last-child\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list:last-child\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list>.wp-block-pages-list__item:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .wp-block-navigation__container>.wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list>.wp-block-pages-list__item\":false},[\"margin:0 .5em 0 0\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .wp-block-navigation__container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list .wp-block-pages-list__item__link\":false},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container\":false},[\"left:-1em\",\"top:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-pages-list__item\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-pages-list__item\":false},[\"margin:0\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-pages-list__item__link\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-pages-list__item__link\":false},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:-1px\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:100%\",\"top:-1px\"]],[false,\"}\"],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container\":false},[\"left:0\",\"top:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:0\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:100%\",\"top:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .submenu-container\":false,\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-navigation-link__container\":false},[\"background-color:#fff\",\"color:#000\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation__container\":false},[\"align-items:center\",\"list-style:none\",\"margin:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation__container .is-responsive\":false},[\"display:none\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__container\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".is-vertical .wp-block-navigation__container\":false},[\"display:block\",\"flex-direction:column\",\"align-items:flex-start\"]],[false,\"}\"],[false,{\".items-justified-center .wp-block-navigation__container\":false},[\"justify-content:center\"]],[false,{\".items-justified-right .wp-block-navigation__container\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between .wp-block-navigation__container\":false},[\"justify-content:space-between\"]],[false,{\".is-vertical.items-justified-center>ul\":false},[\"align-items:center\"]],[false,{\".is-vertical.items-justified-right>ul\":false},[\"align-items:flex-end\"]],[false,{\".is-vertical.items-justified-right>ul .wp-block-navigation-link\":false,\".is-vertical.items-justified-right>ul .wp-block-pages-list__item\":false},[\"margin-right:0\",\"justify-content:flex-end\"]],[false,{\".wp-block-navigation__responsive-container\":false},[\"display:none\",\"position:fixed\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"z-index:1\",\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"display:flex\",\"flex-direction:column\",\"overflow:auto\",\"z-index:100000\",\"padding:24px\",\"background-color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container\":false},[\"display:flex\",\"flex-direction:column\",\"margin-left:auto\",\"margin-right:auto\",\"align-items:flex-start\",\"line-height:48px\",\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container .wp-block-page-list\":false},[\"flex-direction:column\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link .wp-block-navigation-link__container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item .submenu-container:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open)\":false},[\"display:flex\",\"flex-direction:row\",\"position:relative\",\"background-color:inherit\"]],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__responsive-container-close\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .submenu-container.submenu-container.submenu-container.submenu-container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link__container.wp-block-navigation-link__container.wp-block-navigation-link__container.wp-block-navigation-link__container\":false},[\"left:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:#fff\",\"color:#000\"]],[false,{\".wp-block-navigation__responsive-container-close\":false,\".wp-block-navigation__responsive-container-open\":false},[\"vertical-align:middle\",\"cursor:pointer\",\"color:currentColor\",\"background:transparent\",\"border:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container-close svg\":false,\".wp-block-navigation__responsive-container-open svg\":false},[\"fill:currentColor\",\"pointer-events:none\",\"display:block\",\"width:24px\",\"height:24px\"]],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:flex\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:none\"]],[false,\"}\"],[false,{\".items-justified-left .wp-block-navigation__responsive-container-open\":false},[\"margin-left:0\",\"margin-right:auto\"]],[false,{\".items-justified-center .wp-block-navigation__responsive-container-open\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".items-justified-right .wp-block-navigation__responsive-container-open\":false},[\"margin-left:auto\",\"margin-right:0\"]],[false,{\".wp-block-navigation__responsive-container-close\":false},[\"position:absolute\",\"top:24px\",\"right:24px\",\"z-index:2\"]],[false,{\".wp-block-navigation__responsive-close\":false},[\"width:100%\"]],[false,{\".is-menu-open .wp-block-navigation__responsive-close\":false,\".is-menu-open .wp-block-navigation__responsive-container-content\":false,\".is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"width:100%\",\"height:100%\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list__submenu-icon\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .has-child .submenu-container\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .has-child .wp-block-navigation-link__container\":false},[\"position:relative\",\"opacity:1\",\"visibility:visible\",\"padding:0 0 0 32px\",\"border:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item\":false},[\"flex-direction:column\",\"align-items:flex-start\"]],[false,{\"html.has-modal-open\":false},[\"overflow:hidden\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__label\":false},[\"word-break:normal\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-navigation .wp-block-home-link__content\":false},[\"color:inherit\",\"display:block\",\"padding:.5em 1em\"]],[false,{\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content:focus\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content:focus\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-home-link__container\":false},[\"background-color:#fff\",\"color:#000\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-home-link__container .wp-block-home-link__container\":false},[\"top:-1px\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false},[\"display:flex\",\"flex-wrap:wrap\",\"background-color:inherit\"]],[false,{\".wp-block-navigation .wp-block-pages-list__item\":false},[\"background-color:inherit\"]],[false,{\".wp-block-navigation .wp-block-page-list__submenu-icon\":false},[\"display:none\"]],[false,{\".is-open .wp-block-navigation__container .wp-block-page-list\":false,\".is-vertical .wp-block-navigation__container .wp-block-page-list\":false,\".wp-block-navigation .show-submenu-icons .wp-block-page-list__submenu-icon\":false},[\"display:block\"]],[false,\"@media (min-width:480px){\"],[false,{\".is-open .wp-block-navigation__container .wp-block-page-list\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".items-justified-space-between .wp-block-page-list\":false},[\"display:contents\"]],[false,{\".is-small-text\":false},[\"font-size:.875em\"]],[false,{\".is-regular-text\":false},[\"font-size:1em\"]],[false,{\".is-large-text\":false},[\"font-size:2.25em\"]],[false,{\".is-larger-text\":false},[\"font-size:3em\"]],[false,{\".has-drop-cap:not(:focus):first-letter\":false},[\"float:left\",\"font-size:8.4em\",\"line-height:.68\",\"font-weight:100\",\"margin:.05em .1em 0 0\",\"text-transform:uppercase\",\"font-style:normal\"]],[false,{\"p.has-drop-cap.has-background\":false},[\"overflow:hidden\"]],[false,{\"p.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\"p.has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-post-author\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-author__byline\":false},[\"width:100%\",\"margin-top:0\",\"margin-bottom:0\",\"font-size:.5em\"]],[false,{\".wp-block-post-author__avatar\":false},[\"margin-right:1em\"]],[false,{\".wp-block-post-author__bio\":false},[\"margin-bottom:.7em\",\"font-size:.7em\"]],[false,{\".wp-block-post-author__content\":false},[\"flex-grow:1\",\"flex-basis:0\"]],[false,{\".wp-block-post-author__name\":false},[\"font-weight:700\",\"margin:0\"]],[false,{\".wp-block-post-comments .commentlist\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .commentlist .comment\":false},[\"min-height:2.25em\",\"padding-left:3.25em\"]],[false,{\".wp-block-post-comments .commentlist .comment p\":false},[\"font-size:.875em\",\"line-height:1.8\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-post-comments .commentlist .children\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .comment-author\":false},[\"line-height:1.5\",\"margin-left:-3.25em\"]],[false,{\".wp-block-post-comments .comment-author .avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-post-comments .comment-author cite\":false},[\"font-style:normal\"]],[false,{\".wp-block-post-comments .comment-meta\":false},[\"line-height:1.5\",\"margin-left:-3.25em\"]],[false,{\".wp-block-post-comments .comment-body .commentmetadata\":false},[\"font-size:.75em\"]],[false,{\".wp-block-post-comments .comment-form-author label\":false,\".wp-block-post-comments .comment-form-comment label\":false,\".wp-block-post-comments .comment-form-email label\":false,\".wp-block-post-comments .comment-form-url label\":false},[\"display:block\"]],[false,{\".wp-block-post-comments .comment-form-comment textarea\":false},[\"box-sizing:border-box\",\"width:100%\"]],[false,{\".wp-block-post-comments .reply\":false},[\"font-size:.75em\",\"margin-bottom:1.4em\"]],[false,{\".wp-block-post-comments input\":false,\".wp-block-post-comments textarea\":false},[\"border:1px solid #949494\"]],[false,{\".wp-block-post-comments-form input[type=submit]\":false},[\"border:none\",\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"text-align:center\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-post-excerpt__more-link\":false,\".wp-block-post-title a\":false},[\"display:inline-block\"]],[false,{\".wp-block-preformatted\":false},[\"white-space:pre-wrap\"]],[false,{\".wp-block-preformatted.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-pullquote\":false},[\"margin:0 0 1em\",\"padding:3em 0\",\"text-align:center\"]],[false,{\".wp-block-pullquote.alignleft\":false,\".wp-block-pullquote.alignright\":false},[\"max-width:420px\"]],[false,{\".wp-block-pullquote.alignleft p\":false,\".wp-block-pullquote.alignright p\":false},[\"font-size:1.25em\"]],[false,{\".wp-block-pullquote p\":false},[\"font-size:1.75em\",\"line-height:1.6\"]],[false,{\".wp-block-pullquote cite\":false,\".wp-block-pullquote footer\":false},[\"position:relative\"]],[false,{\".wp-block-pullquote .has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote:not(.is-style-solid-color)\":false},[\"background:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color\":false},[\"border:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote\":false},[\"margin-left:auto\",\"margin-right:auto\",\"text-align:left\",\"max-width:60%\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote p\":false},[\"margin-top:0\",\"margin-bottom:0\",\"font-size:2em\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote cite\":false},[\"text-transform:none\",\"font-style:normal\"]],[false,{\".wp-block-pullquote cite\":false},[\"color:inherit\"]],[false,{\".wp-block-post-template\":false,\".wp-block-query-loop\":false},[\"max-width:100%\",\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-post-template li\":false,\".wp-block-query-loop li\":false},[\"clear:both\"]],[false,{\".wp-block-post-template.is-flex-container\":false,\".wp-block-query-loop.is-flex-container\":false},[\"flex-direction:row\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-template.is-flex-container li\":false,\".wp-block-query-loop.is-flex-container li\":false},[\"margin:0 0 1.25em\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-post-template.is-flex-container li\":false,\".wp-block-query-loop.is-flex-container li\":false},[\"margin-right:1.25em\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li:nth-child(2n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li:nth-child(3n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li:nth-child(4n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li:nth-child(5n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li:nth-child(6n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".wp-block-query-pagination\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\"]],[false,{\".wp-block-query-pagination>.wp-block-query-pagination-next\":false,\".wp-block-query-pagination>.wp-block-query-pagination-numbers\":false,\".wp-block-query-pagination>.wp-block-query-pagination-previous\":false},[\"display:inline-block\",\"margin-right:.5em\",\"margin-bottom:.5em\"]],[false,{\".wp-block-query-pagination>.wp-block-query-pagination-next:last-child\":false,\".wp-block-query-pagination>.wp-block-query-pagination-numbers:last-child\":false,\".wp-block-query-pagination>.wp-block-query-pagination-previous:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-quote.is-large\":false,\".wp-block-quote.is-style-large\":false},[\"margin-bottom:1em\",\"padding:0 1em\"]],[false,{\".wp-block-quote.is-large p\":false,\".wp-block-quote.is-style-large p\":false},[\"font-size:1.5em\",\"font-style:italic\",\"line-height:1.6\"]],[false,{\".wp-block-quote.is-large cite\":false,\".wp-block-quote.is-large footer\":false,\".wp-block-quote.is-style-large cite\":false,\".wp-block-quote.is-style-large footer\":false},[\"font-size:1.125em\",\"text-align:right\"]],[false,{\".wp-block-rss.wp-block-rss\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-rss.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-rss.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-rss.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\",\"list-style:none\"]],[false,{\".wp-block-rss.is-grid li\":false},[\"margin:0 1em 1em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-rss.columns-2 li\":false},[\"width:calc(50% - 1em)\"]],[false,{\".wp-block-rss.columns-3 li\":false},[\"width:calc(33.33333% - 1em)\"]],[false,{\".wp-block-rss.columns-4 li\":false},[\"width:calc(25% - 1em)\"]],[false,{\".wp-block-rss.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-rss.columns-6 li\":false},[\"width:calc(16.66667% - 1em)\"]],[false,\"}\"],[false,{\".wp-block-rss__item-author\":false,\".wp-block-rss__item-publish-date\":false},[\"display:block\",\"color:#555\",\"font-size:.8125em\"]],[false,{\".wp-block-search .wp-block-search__button\":false},[\"background:#f7f7f7\",\"border:1px solid #ccc\",\"padding:.375em .625em\",\"color:#32373c\",\"margin-left:.625em\",\"word-break:normal\"]],[false,{\".wp-block-search .wp-block-search__button.has-icon\":false},[\"line-height:0\"]],[false,{\".wp-block-search .wp-block-search__button svg\":false},[\"min-width:1.5em\",\"min-height:1.5em\"]],[false,{\".wp-block-search .wp-block-search__inside-wrapper\":false},[\"display:flex\",\"flex:auto\",\"flex-wrap:nowrap\",\"max-width:100%\"]],[false,{\".wp-block-search .wp-block-search__label\":false},[\"width:100%\"]],[false,{\".wp-block-search .wp-block-search__input\":false},[\"flex-grow:1\",\"min-width:3em\",\"border:1px solid #949494\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__button\":false},[\"margin-left:0\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper\":false},[\"padding:4px\",\"border:1px solid #949494\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input\":false},[\"border-radius:0\",\"border:none\",\"padding:0 0 0 .25em\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus\":false},[\"outline:none\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button\":false},[\"padding:.125em .5em\"]],[false,{\".wp-block-search.aligncenter .wp-block-search__inside-wrapper\":false},[\"margin:auto\"]],[false,{\".wp-block-separator\":false},[\"border-top:1px solid\",\"border-bottom:1px solid\"]],[false,{\".wp-block-separator.is-style-wide\":false},[\"border-bottom-width:1px\"]],[false,{\".wp-block-separator.is-style-dots\":false},[\"border:none\",\"text-align:center\",\"width:none\",\"line-height:1\",\"height:auto\"]],[false,{\".wp-block-separator.is-style-dots:not(#_#_#_#_#_#_#_)\":false},[\"background:none\"]],[false,{\".wp-block-separator.is-style-dots:before\":false},[\"content:\\\"\\u00b7\\u00b7\\u00b7\\\"\",\"color:currentColor\",\"font-size:1.5em\",\"letter-spacing:2em\",\"padding-left:2em\",\"font-family:serif\"]],[false,{\".wp-block-site-logo\":false},[\"line-height:0\"]],[false,{\".wp-block-site-logo a\":false},[\"display:inline-block\"]],[false,{\".wp-block-site-logo.is-default-size amp-img\":false,\".wp-block-site-logo.is-default-size amp-anim\":false},[\"width:120px\",\"height:auto\"]],[false,{\".wp-block-site-logo .aligncenter\":false},[\"display:table\"]],[false,{\".wp-block-site-logo.is-style-rounded amp-img\":false,\".wp-block-site-logo.is-style-rounded amp-anim\":false},[\"border-radius:9999px\"]],[false,{\".wp-block-social-links\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding-left:0\",\"padding-right:0\",\"text-indent:0\",\"margin-left:0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false,\".wp-block-social-links .wp-social-link a:hover\":false},[\"text-decoration:none\",\"border-bottom:0\",\"box-shadow:none\"]],[false,{\".wp-block-social-links .wp-social-link.wp-social-link.wp-social-link\":false},[\"margin:4px 8px 4px 0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false},[\"padding:.25em\"]],[false,{\".wp-block-social-links .wp-social-link svg\":false},[\"width:1em\",\"height:1em\"]],[false,{\".wp-block-social-links.has-small-icon-size\":false},[\"font-size:16px\"]],[false,{\".wp-block-social-links\":false,\".wp-block-social-links.has-normal-icon-size\":false},[\"font-size:24px\"]],[false,{\".wp-block-social-links.has-large-icon-size\":false},[\"font-size:36px\"]],[false,{\".wp-block-social-links.has-huge-icon-size\":false},[\"font-size:48px\"]],[false,{\".wp-block-social-links.aligncenter\":false},[\"justify-content:center\",\"display:flex\"]],[false,{\".wp-block-social-links.alignright\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-social-link\":false},[\"display:block\",\"border-radius:9999px\",\"transition:transform .1s ease\",\"height:auto\"]],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-social-link\":false},[\"transition-duration:0s\",\"transition-delay:0s\"]],[false,\"}\"],[false,{\".wp-block-social-link a\":false},[\"display:block\",\"line-height:0\",\"transition:transform .1s ease\"]],[false,{\".wp-block-social-link:hover\":false},[\"transform:scale(1.1)\"]],[false,{\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:active\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:hover\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:visited\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg\":false},[\"color:currentColor\",\"fill:currentColor\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link\":false},[\"background-color:#f0f0f0\",\"color:#444\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon\":false},[\"background-color:#f90\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp\":false},[\"background-color:#1ea0c3\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance\":false},[\"background-color:#0757fe\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen\":false},[\"background-color:#1e1f26\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart\":false},[\"background-color:#02e49b\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble\":false},[\"background-color:#e94c89\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox\":false},[\"background-color:#4280ff\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy\":false},[\"background-color:#f45800\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook\":false},[\"background-color:#1778f2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr\":false},[\"background-color:#0461dd\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare\":false},[\"background-color:#e65678\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github\":false},[\"background-color:#24292d\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads\":false},[\"background-color:#eceadd\",\"color:#382110\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google\":false},[\"background-color:#ea4434\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram\":false},[\"background-color:#f00075\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm\":false},[\"background-color:#e21b24\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin\":false},[\"background-color:#0d66c2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon\":false},[\"background-color:#3288d4\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium\":false},[\"background-color:#02ab6c\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup\":false},[\"background-color:#f6405f\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon\":false},[\"background-color:#ff424d\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest\":false},[\"background-color:#e60122\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket\":false},[\"background-color:#ef4155\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit\":false},[\"background-color:#fe4500\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype\":false},[\"background-color:#0478d7\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat\":false},[\"background-color:#fefc00\",\"color:#fff\",\"stroke:#000\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud\":false},[\"background-color:#ff5600\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify\":false},[\"background-color:#1bd760\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram\":false},[\"background-color:#2aabee\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr\":false},[\"background-color:#011835\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch\":false},[\"background-color:#6440a4\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter\":false},[\"background-color:#1da1f2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo\":false},[\"background-color:#1eb7ea\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk\":false},[\"background-color:#4680c2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress\":false},[\"background-color:#3499cd\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp\":false},[\"background-color:#d32422\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube\":false},[\"background-color:red\",\"color:#fff\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link\":false},[\"background:none\",\"padding:4px\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-amazon\":false},[\"color:#f90\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp\":false},[\"color:#1ea0c3\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-behance\":false},[\"color:#0757fe\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-codepen\":false},[\"color:#1e1f26\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-deviantart\":false},[\"color:#02e49b\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-dribbble\":false},[\"color:#e94c89\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-dropbox\":false},[\"color:#4280ff\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-etsy\":false},[\"color:#f45800\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-facebook\":false},[\"color:#1778f2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx\":false},[\"color:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-flickr\":false},[\"color:#0461dd\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-foursquare\":false},[\"color:#e65678\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-github\":false},[\"color:#24292d\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-goodreads\":false},[\"color:#382110\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-google\":false},[\"color:#ea4434\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-instagram\":false},[\"color:#f00075\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-lastfm\":false},[\"color:#e21b24\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-linkedin\":false},[\"color:#0d66c2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-mastodon\":false},[\"color:#3288d4\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-medium\":false},[\"color:#02ab6c\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-meetup\":false},[\"color:#f6405f\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-patreon\":false},[\"color:#ff424d\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-pinterest\":false},[\"color:#e60122\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-pocket\":false},[\"color:#ef4155\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-reddit\":false},[\"color:#fe4500\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-skype\":false},[\"color:#0478d7\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-snapchat\":false},[\"color:#fff\",\"stroke:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud\":false},[\"color:#ff5600\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-spotify\":false},[\"color:#1bd760\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-telegram\":false},[\"color:#2aabee\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-tiktok\":false},[\"color:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-tumblr\":false},[\"color:#011835\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-twitch\":false},[\"color:#6440a4\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-twitter\":false},[\"color:#1da1f2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-vimeo\":false},[\"color:#1eb7ea\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-vk\":false},[\"color:#4680c2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-wordpress\":false},[\"color:#3499cd\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-yelp\":false},[\"color:#d32422\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-youtube\":false},[\"color:red\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link\":false},[\"width:auto\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link a\":false},[\"padding-left:.66667em\",\"padding-right:.66667em\"]],[false,{\".wp-block-spacer\":false},[\"clear:both\"]],[false,{\".wp-block-tag-cloud.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-tag-cloud.alignfull\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".wp-block-table\":false},[\"margin:0 0 1em\",\"overflow-x:auto\"]],[false,{\".wp-block-table table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout\":false},[\"table-layout:fixed\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout td\":false,\".wp-block-table .has-fixed-layout th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table.aligncenter\":false,\".wp-block-table.alignleft\":false,\".wp-block-table.alignright\":false},[\"display:table\",\"width:auto\"]],[false,{\".wp-block-table.aligncenter td\":false,\".wp-block-table.aligncenter th\":false,\".wp-block-table.alignleft td\":false,\".wp-block-table.alignleft th\":false,\".wp-block-table.alignright td\":false,\".wp-block-table.alignright th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table .has-subtle-light-gray-background-color\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table .has-subtle-pale-green-background-color\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table .has-subtle-pale-blue-background-color\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table .has-subtle-pale-pink-background-color\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes\":false},[\"border-spacing:0\",\"border-collapse:inherit\",\"background-color:transparent\",\"border-bottom:1px solid #f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes tbody tr:nth-child(odd)\":false},[\"background-color:#f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes td\":false,\".wp-block-table.is-style-stripes th\":false},[\"border-color:transparent\"]],[false,{\".wp-block-table .has-border-color>*\":false,\".wp-block-table .has-border-color td\":false,\".wp-block-table .has-border-color th\":false,\".wp-block-table .has-border-color tr\":false},[\"border-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-style]>*\":false,\".wp-block-table table[data-amp-original-style*=border-style] td\":false,\".wp-block-table table[data-amp-original-style*=border-style] th\":false,\".wp-block-table table[data-amp-original-style*=border-style] tr\":false},[\"border-style:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-width]>*\":false,\".wp-block-table table[data-amp-original-style*=border-width] td\":false,\".wp-block-table table[data-amp-original-style*=border-width] th\":false,\".wp-block-table table[data-amp-original-style*=border-width] tr\":false},[\"border-width:inherit\"]],[false,{\".wp-block-text-columns\":false,\".wp-block-text-columns.aligncenter\":false},[\"display:flex\"]],[false,{\".wp-block-text-columns .wp-block-column\":false},[\"margin:0 1em\",\"padding:0\"]],[false,{\".wp-block-text-columns .wp-block-column:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-text-columns .wp-block-column:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-text-columns.columns-2 .wp-block-column\":false},[\"width:50%\"]],[false,{\".wp-block-text-columns.columns-3 .wp-block-column\":false},[\"width:33.33333%\"]],[false,{\".wp-block-text-columns.columns-4 .wp-block-column\":false},[\"width:25%\"]],[false,{\"pre.wp-block-verse\":false},[\"font-family:inherit\",\"overflow:auto\",\"white-space:pre-wrap\"]],[false,{\".wp-block-video\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-video [poster]\":false},[\"-o-object-fit:cover\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".wp-block-video.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-video figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-post-featured-image\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".wp-block-post-featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-post-featured-image amp-img\":false,\".wp-block-post-featured-image amp-anim\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".wp-block-post-featured-image.alignfull amp-img\":false,\".wp-block-post-featured-image.alignfull amp-anim\":false,\".wp-block-post-featured-image.alignwide amp-img\":false,\".wp-block-post-featured-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\":root .has-pale-pink-background-color\":false},[\"background-color:#f78da7\"]],[false,{\":root .has-vivid-red-background-color\":false},[\"background-color:#cf2e2e\"]],[false,{\":root .has-luminous-vivid-orange-background-color\":false},[\"background-color:#ff6900\"]],[false,{\":root .has-luminous-vivid-amber-background-color\":false},[\"background-color:#fcb900\"]],[false,{\":root .has-light-green-cyan-background-color\":false},[\"background-color:#7bdcb5\"]],[false,{\":root .has-vivid-green-cyan-background-color\":false},[\"background-color:#00d084\"]],[false,{\":root .has-pale-cyan-blue-background-color\":false},[\"background-color:#8ed1fc\"]],[false,{\":root .has-vivid-cyan-blue-background-color\":false},[\"background-color:#0693e3\"]],[false,{\":root .has-vivid-purple-background-color\":false},[\"background-color:#9b51e0\"]],[false,{\":root .has-white-background-color\":false},[\"background-color:#fff\"]],[false,{\":root .has-very-light-gray-background-color\":false},[\"background-color:#eee\"]],[false,{\":root .has-cyan-bluish-gray-background-color\":false},[\"background-color:#abb8c3\"]],[false,{\":root .has-very-dark-gray-background-color\":false},[\"background-color:#313131\"]],[false,{\":root .has-black-background-color\":false},[\"background-color:#000\"]],[false,{\":root .has-pale-pink-color\":false},[\"color:#f78da7\"]],[false,{\":root .has-vivid-red-color\":false},[\"color:#cf2e2e\"]],[false,{\":root .has-luminous-vivid-orange-color\":false},[\"color:#ff6900\"]],[false,{\":root .has-luminous-vivid-amber-color\":false},[\"color:#fcb900\"]],[false,{\":root .has-light-green-cyan-color\":false},[\"color:#7bdcb5\"]],[false,{\":root .has-vivid-green-cyan-color\":false},[\"color:#00d084\"]],[false,{\":root .has-pale-cyan-blue-color\":false},[\"color:#8ed1fc\"]],[false,{\":root .has-vivid-cyan-blue-color\":false},[\"color:#0693e3\"]],[false,{\":root .has-vivid-purple-color\":false},[\"color:#9b51e0\"]],[false,{\":root .has-white-color\":false},[\"color:#fff\"]],[false,{\":root .has-very-light-gray-color\":false},[\"color:#eee\"]],[false,{\":root .has-cyan-bluish-gray-color\":false},[\"color:#abb8c3\"]],[false,{\":root .has-very-dark-gray-color\":false},[\"color:#313131\"]],[false,{\":root .has-black-color\":false},[\"color:#000\"]],[false,{\":root .has-vivid-cyan-blue-to-vivid-purple-gradient-background\":false},[\"background:linear-gradient(135deg,#0693e3,#9b51e0)\"]],[false,{\":root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background\":false},[\"background:linear-gradient(135deg,#00d084,#0693e3)\"]],[false,{\":root .has-light-green-cyan-to-vivid-green-cyan-gradient-background\":false},[\"background:linear-gradient(135deg,#7adcb4,#00d082)\"]],[false,{\":root .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background\":false},[\"background:linear-gradient(135deg,#fcb900,#ff6900)\"]],[false,{\":root .has-luminous-vivid-orange-to-vivid-red-gradient-background\":false},[\"background:linear-gradient(135deg,#ff6900,#cf2e2e)\"]],[false,{\":root .has-very-light-gray-to-cyan-bluish-gray-gradient-background\":false},[\"background:linear-gradient(135deg,#eee,#a9b8c3)\"]],[false,{\":root .has-cool-to-warm-spectrum-gradient-background\":false},[\"background:linear-gradient(135deg,#4aeadc,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c)\"]],[false,{\":root .has-blush-light-purple-gradient-background\":false},[\"background:linear-gradient(135deg,#ffceec,#9896f0)\"]],[false,{\":root .has-blush-bordeaux-gradient-background\":false},[\"background:linear-gradient(135deg,#fecda5,#fe2d2d 50%,#6b003e)\"]],[false,{\":root .has-purple-crush-gradient-background\":false},[\"background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)\"]],[false,{\":root .has-luminous-dusk-gradient-background\":false},[\"background:linear-gradient(135deg,#ffcb70,#c751c0 50%,#4158d0)\"]],[false,{\":root .has-hazy-dawn-gradient-background\":false},[\"background:linear-gradient(135deg,#faaca8,#dad0ec)\"]],[false,{\":root .has-pale-ocean-gradient-background\":false},[\"background:linear-gradient(135deg,#fff5cb,#b6e3d4 50%,#33a7b5)\"]],[false,{\":root .has-electric-grass-gradient-background\":false},[\"background:linear-gradient(135deg,#caf880,#71ce7e)\"]],[false,{\":root .has-subdued-olive-gradient-background\":false},[\"background:linear-gradient(135deg,#fafae1,#67a671)\"]],[false,{\":root .has-atomic-cream-gradient-background\":false},[\"background:linear-gradient(135deg,#fdd79a,#004a59)\"]],[false,{\":root .has-nightshade-gradient-background\":false},[\"background:linear-gradient(135deg,#330968,#31cdcf)\"]],[false,{\":root .has-midnight-gradient-background\":false},[\"background:linear-gradient(135deg,#020381,#2874fc)\"]],[false,{\".has-small-font-size\":false},[\"font-size:.8125em\"]],[false,{\".has-normal-font-size\":false,\".has-regular-font-size\":false},[\"font-size:1em\"]],[false,{\".has-medium-font-size\":false},[\"font-size:1.25em\"]],[false,{\".has-large-font-size\":false},[\"font-size:2.25em\"]],[false,{\".has-huge-font-size\":false,\".has-larger-font-size\":false},[\"font-size:2.625em\"]],[false,{\".has-text-align-center\":false},[\"text-align:center\"]],[false,{\".has-text-align-left\":false},[\"text-align:left\"]],[false,{\".has-text-align-right\":false},[\"text-align:right\"]],[false,{\"#end-resizable-editor-section\":false},[\"display:none\"]],[false,{\".aligncenter\":false},[\"clear:both\"]],[false,{\".items-justified-left\":false},[\"justify-content:flex-start\"]],[false,{\".items-justified-center\":false},[\"justify-content:center\"]],[false,{\".items-justified-right\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between\":false},[\"justify-content:space-between\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip:rect(1px,1px,1px,1px)\",\"-webkit-clip-path:inset(50%)\",\"clip-path:inset(50%)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#ddd\",\"-webkit-clip-path:none\",\"clip-path:none\",\"color:#444\",\"display:block\",\"font-size:1em\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[false,{\".screen-reader-text:focus:not(#_#_#_#_#_#_#_)\":false},[\"clip:auto\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2731,\"final_size\":133,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"contact-form-7-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/css\\/styles.css?ver=5.5.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"212b20af9d955c5d566d0549c68d0998\",\"parse_time\":0.03908491134643555,\"shake_time\":6.103515625e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".wpcf7 .screen-reader-response\":false},[\"position:absolute\",\"overflow:hidden\",\"clip:rect(1px,1px,1px,1px)\",\"clip-path:inset(50%)\",\"height:1px\",\"width:1px\",\"margin:-1px\",\"padding:0\",\"border:0\"]],[false,{\".wpcf7 .screen-reader-response:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".wpcf7 form .wpcf7-response-output\":false},[\"margin:2em .5em 1em\",\"padding:.2em 1em\",\"border:2px solid #00a0d2\"]],[false,{\".wpcf7 form.init .wpcf7-response-output\":false,\".wpcf7 form.resetting .wpcf7-response-output\":false,\".wpcf7 form.submitting .wpcf7-response-output\":false},[\"display:none\"]],[false,{\".wpcf7 form.sent .wpcf7-response-output\":false},[\"border-color:#46b450\"]],[false,{\".wpcf7 form.failed .wpcf7-response-output\":false,\".wpcf7 form.aborted .wpcf7-response-output\":false},[\"border-color:#dc3232\"]],[false,{\".wpcf7 form.spam .wpcf7-response-output\":false},[\"border-color:#f56e28\"]],[false,{\".wpcf7 form.invalid .wpcf7-response-output\":false,\".wpcf7 form.unaccepted .wpcf7-response-output\":false,\".wpcf7 form.payment-required .wpcf7-response-output\":false},[\"border-color:#ffb900\"]],[false,{\".wpcf7-form-control-wrap\":false},[\"position:relative\"]],[false,{\".wpcf7-not-valid-tip\":false},[\"color:#dc3232\",\"font-size:1em\",\"font-weight:normal\",\"display:block\"]],[false,{\".use-floating-validation-tip .wpcf7-not-valid-tip\":false},[\"position:relative\",\"top:-2ex\",\"left:1em\",\"z-index:100\",\"border:1px solid #dc3232\",\"background:#fff\",\"padding:.2em .8em\",\"width:24em\"]],[false,{\".wpcf7-list-item\":false},[\"display:inline-block\",\"margin:0 0 0 1em\"]],[false,{\".wpcf7-list-item-label::before\":false,\".wpcf7-list-item-label::after\":false},[\"content:\\\" \\\"\"]],[false,{\".wpcf7-spinner\":false},[\"visibility:hidden\",\"display:inline-block\",\"background-color:#23282d\",\"opacity:.75\",\"width:24px\",\"height:24px\",\"border:none\",\"border-radius:100%\",\"padding:0\",\"margin:0 24px\",\"position:relative\"]],[false,{\"form.submitting .wpcf7-spinner\":false},[\"visibility:visible\"]],[false,{\".wpcf7-spinner::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"background-color:#fbfbfc\",\"top:4px\",\"left:4px\",\"width:6px\",\"height:6px\",\"border:none\",\"border-radius:100%\",\"transform-origin:8px 8px\",\"animation-name:spin\",\"animation-duration:1000ms\",\"animation-timing-function:linear\",\"animation-iteration-count:infinite\"]],[false,\"@media (prefers-reduced-motion: reduce){\"],[false,{\".wpcf7-spinner::before\":false},[\"animation-name:blink\",\"animation-duration:2000ms\"]],[false,\"}\"],[true,\"@keyframes spin{\"],[true,\"from{transform:rotate(0deg)}\"],[true,\"to{transform:rotate(360deg)}\"],[true,\"}@keyframes blink{\"],[true,\"from{opacity:0}\"],[true,\"50%{opacity:1}\"],[true,\"to{opacity:0}\"],[true,\"}\"],[false,{\".wpcf7 input[type=\\\"file\\\"]\":false},[\"cursor:pointer\"]],[false,{\".wpcf7 input[type=\\\"file\\\"]:disabled\":false},[\"cursor:default\"]],[false,{\".wpcf7 .wpcf7-submit:disabled\":false},[\"cursor:not-allowed\"]],[false,{\".wpcf7 input[type=\\\"url\\\"]\":false,\".wpcf7 input[type=\\\"email\\\"]\":false,\".wpcf7 input[type=\\\"tel\\\"]\":false},[\"direction:ltr\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":3027,\"final_size\":290,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"emcs_calendly_css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/embed-calendly-scheduling\\/assets\\/css\\/widget.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"embed-calendly-scheduling\",\"file\":\"embed-calendly-scheduling.php\",\"line\":39,\"function\":\"emcs_calendly_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"99d6ad74e1d82f040a9c3a773af31054\",\"parse_time\":0.053494930267333984,\"shake_time\":3.886222839355469e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".calendly-inline-widget\":false,\".calendly-inline-widget *\":false,\".calendly-badge-widget\":false,\".calendly-badge-widget *\":false,\".calendly-overlay\":false,\".calendly-overlay *\":false},[\"font-size:16px\",\"line-height:1.2em\"]],[false,{\".calendly-inline-widget amp-iframe\":false,\".calendly-badge-widget amp-iframe\":false,\".calendly-overlay amp-iframe\":false},[\"display:inline\",\"width:100%\",\"height:100%\"]],[false,{\".calendly-popup-content\":false},[\"position:relative\"]],[false,{\".calendly-popup-content.calendly-mobile\":false},[\"-webkit-overflow-scrolling:touch\",\"overflow-y:auto\"]],[false,{\".calendly-overlay\":false},[\"position:fixed\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"overflow:hidden\",\"z-index:9999\",\"background-color:#a5a5a5\",\"background-color:rgba(31,31,31,.4)\"]],[false,{\".calendly-overlay .calendly-close-overlay\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\"]],[false,{\".calendly-overlay .calendly-popup\":false},[\"box-sizing:border-box\",\"position:absolute\",\"top:50%\",\"left:50%\",\"-webkit-transform:translateY(-50%) translateX(-50%)\",\"transform:translateY(-50%) translateX(-50%)\",\"width:80%\",\"min-width:900px\",\"max-width:1000px\",\"height:90%\",\"max-height:680px\"]],[false,\"@media (max-width:975px){\"],[false,{\".calendly-overlay .calendly-popup\":false},[\"position:fixed\",\"top:50px\",\"left:0\",\"right:0\",\"bottom:0\",\"-webkit-transform:none\",\"transform:none\",\"width:100%\",\"height:auto\",\"min-width:0\",\"max-height:none\"]],[false,\"}\"],[false,{\".calendly-overlay .calendly-popup .calendly-popup-content\":false},[\"height:100%\"]],[false,{\".calendly-overlay .calendly-popup-close\":false},[\"position:absolute\",\"top:25px\",\"right:25px\",\"color:#fff\",\"width:19px\",\"height:19px\",\"cursor:pointer\",\"background:url(\\\"\\/assets\\/external\\/close-icon.svg\\\") no-repeat\",\"background-size:contain\"]],[false,\"@media (max-width:975px){\"],[false,{\".calendly-overlay .calendly-popup-close\":false},[\"top:15px\",\"right:15px\"]],[false,\"}\"],[false,{\".calendly-badge-widget\":false},[\"position:fixed\",\"right:20px\",\"bottom:15px\",\"z-index:9998\"]],[false,{\".calendly-badge-widget .calendly-badge-content\":false},[\"display:table-cell\",\"width:auto\",\"height:45px\",\"padding:0 30px\",\"border-radius:25px\",\"box-shadow:rgba(0,0,0,.25) 0 2px 5px\",\"font-family:sans-serif\",\"text-align:center\",\"vertical-align:middle\",\"font-weight:700\",\"font-size:14px\",\"color:#fff\",\"cursor:pointer\"]],[false,{\".calendly-badge-widget .calendly-badge-content.calendly-white\":false},[\"color:#666a73\"]],[false,{\".calendly-badge-widget .calendly-badge-content span\":false},[\"display:block\",\"font-size:12px\"]],[false,{\".calendly-spinner\":false},[\"position:absolute\",\"top:50%\",\"left:0\",\"right:0\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\",\"text-align:center\",\"z-index:-1\"]],[false,{\".calendly-spinner>div\":false},[\"display:inline-block\",\"width:18px\",\"height:18px\",\"background-color:#e1e1e1\",\"border-radius:50%\",\"vertical-align:middle\",\"-webkit-animation:calendly-bouncedelay 1.4s infinite ease-in-out\",\"animation:calendly-bouncedelay 1.4s infinite ease-in-out\",\"-webkit-animation-fill-mode:both\",\"animation-fill-mode:both\"]],[false,{\".calendly-spinner .calendly-bounce1\":false},[\"-webkit-animation-delay:-.32s\",\"animation-delay:-.32s\"]],[false,{\".calendly-spinner .calendly-bounce2\":false},[\"-webkit-animation-delay:-.16s\",\"animation-delay:-.16s\"]],[true,\"@-webkit-keyframes calendly-bouncedelay{\"],[true,\"0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}\"],[true,\"40%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes calendly-bouncedelay{\"],[true,\"0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}\"],[true,\"40%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,\"@media only screen and (max-device-width :768px){\"],[false,{\"#calendly-inline-widget:not(#_#_#_#_#_#_#_)\":false},[\"min-width:auto\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":89113,\"final_size\":55,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"social_warfare-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/css\\/style.min.css?ver=4.3.0\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Script.php\",\"line\":94,\"function\":\"SWP_Script::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"e220b783a5a07d3a59270f77ece9859a\",\"parse_time\":1.1959950923919678,\"shake_time\":0.05858898162841797,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".swp_social_panel.swp_default_full_color a\":false,\"html body .swp_social_panel.swp_individual_full_color .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_full_color:hover a\":false},[\"color:white\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_blogger\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_blogger:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_blogger:not(:hover)\":false},[\"border:1px solid #ff5722\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_blogger\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_blogger:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_blogger\":false},[\"background:#ff5722\",\"border:1px solid #ee3900\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_blogger\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_blogger:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_blogger\":false},[\"border-bottom:3px solid #ee3900\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_blogger a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_blogger a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_blogger a\":false},[\"color:#ff5722\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_blogger\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_blogger:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_blogger\":false},[\"background:transparent\",\"border:1px solid #ff5722\"]],[false,{\".swp-blogger\":false},[\"background:#ff5722\",\"border-color:#ee3900\"]],[false,{\".swp-blogger a\":false},[\"color:#ff5722\"]],[false,{\".swp-blogger a:hover\":false},[\"background:#ee3900\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_buffer\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_buffer:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_buffer:not(:hover)\":false},[\"border:1px solid #323b43\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_buffer\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_buffer:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_buffer\":false},[\"background:#323b43\",\"border:1px solid #1c2126\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_buffer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_buffer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_buffer\":false},[\"border-bottom:3px solid #1c2126\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_buffer a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_buffer a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_buffer a\":false},[\"color:#323b43\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_buffer\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_buffer:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_buffer\":false},[\"background:transparent\",\"border:1px solid #323b43\"]],[false,{\".swp-buffer\":false},[\"background:#323b43\",\"border-color:#1c2126\"]],[false,{\".swp-buffer a\":false},[\"color:#323b43\"]],[false,{\".swp-buffer a:hover\":false},[\"background:#1c2126\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_ello\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_ello:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_ello:not(:hover)\":false},[\"border:1px solid #000\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_ello\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_ello:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_ello\":false},[\"background:#000\",\"border:1px solid #000\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_ello\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_ello:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_ello\":false},[\"border-bottom:3px solid #000\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_ello a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_ello a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_ello a\":false},[\"color:#000\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_ello\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_ello:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_ello\":false},[\"background:transparent\",\"border:1px solid #000\"]],[false,{\".swp-ello\":false},[\"background:#000\",\"border-color:#000\"]],[false,{\".swp-ello a\":false},[\"color:#000\"]],[false,{\".swp-ello a:hover\":false},[\"background:#000\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_email\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_email:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_email:not(:hover)\":false},[\"border:1px solid #6bcce9\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_email\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_email:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_email\":false},[\"background:#6bcce9\",\"border:1px solid #3fbde2\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_email\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_email:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_email\":false},[\"border-bottom:3px solid #3fbde2\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_email a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_email a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_email a\":false},[\"color:#6bcce9\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_email\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_email:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_email\":false},[\"background:transparent\",\"border:1px solid #6bcce9\"]],[false,{\".swp-email\":false},[\"background:#6bcce9\",\"border-color:#3fbde2\"]],[false,{\".swp-email a\":false},[\"color:#6bcce9\"]],[false,{\".swp-email a:hover\":false},[\"background:#3fbde2\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_evernote\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_evernote:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_evernote:not(:hover)\":false},[\"border:1px solid #2dbe60\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_evernote\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_evernote:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_evernote\":false},[\"background:#2dbe60\",\"border:1px solid #23954b\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_evernote\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_evernote:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_evernote\":false},[\"border-bottom:3px solid #23954b\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_evernote a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_evernote a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_evernote a\":false},[\"color:#2dbe60\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_evernote\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_evernote:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_evernote\":false},[\"background:transparent\",\"border:1px solid #2dbe60\"]],[false,{\".swp-evernote\":false},[\"background:#2dbe60\",\"border-color:#23954b\"]],[false,{\".swp-evernote a\":false},[\"color:#2dbe60\"]],[false,{\".swp-evernote a:hover\":false},[\"background:#23954b\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_facebook\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_facebook:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_facebook:not(:hover)\":false},[\"border:1px solid #1877f2\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_facebook\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_facebook:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_facebook\":false},[\"background:#1877f2\",\"border:1px solid #0b5fcc\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_facebook\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_facebook:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_facebook\":false},[\"border-bottom:3px solid #0b5fcc\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_facebook a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_facebook a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_facebook a\":false},[\"color:#1877f2\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_facebook\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_facebook:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_facebook\":false},[\"background:transparent\",\"border:1px solid #1877f2\"]],[false,{\".swp-facebook\":false},[\"background:#1877f2\",\"border-color:#0b5fcc\"]],[false,{\".swp-facebook a\":false},[\"color:#1877f2\"]],[false,{\".swp-facebook a:hover\":false},[\"background:#0b5fcc\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_flickr\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_flickr:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_flickr:not(:hover)\":false},[\"border:1px solid #ff0084\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_flickr\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_flickr:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_flickr\":false},[\"background:#ff0084\",\"border:1px solid #cc006a\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_flickr\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_flickr:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_flickr\":false},[\"border-bottom:3px solid #cc006a\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flickr a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flickr a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flickr a\":false},[\"color:#ff0084\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flickr\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flickr:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flickr\":false},[\"background:transparent\",\"border:1px solid #ff0084\"]],[false,{\".swp-flickr\":false},[\"background:#ff0084\",\"border-color:#cc006a\"]],[false,{\".swp-flickr a\":false},[\"color:#ff0084\"]],[false,{\".swp-flickr a:hover\":false},[\"background:#cc006a\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_flipboard\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_flipboard:not(:hover)\":false},[\"border:1px solid #bf2626\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_flipboard\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_flipboard\":false},[\"background:#bf2626\",\"border:1px solid #941e1e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_flipboard\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_flipboard\":false},[\"border-bottom:3px solid #941e1e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flipboard a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flipboard a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flipboard a\":false},[\"color:#bf2626\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flipboard\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flipboard\":false},[\"background:transparent\",\"border:1px solid #bf2626\"]],[false,{\".swp-flipboard\":false},[\"background:#bf2626\",\"border-color:#941e1e\"]],[false,{\".swp-flipboard a\":false},[\"color:#bf2626\"]],[false,{\".swp-flipboard a:hover\":false},[\"background:#941e1e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_hacker_news\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_hacker_news:not(:hover)\":false},[\"border:1px solid #d85623\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_hacker_news\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_hacker_news\":false},[\"background:#d85623\",\"border:1px solid #ac451c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_hacker_news\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_hacker_news\":false},[\"border-bottom:3px solid #ac451c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_hacker_news a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_hacker_news a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_hacker_news a\":false},[\"color:#d85623\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_hacker_news\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_hacker_news\":false},[\"background:transparent\",\"border:1px solid #d85623\"]],[false,{\".swp-hacker_news\":false},[\"background:#d85623\",\"border-color:#ac451c\"]],[false,{\".swp-hacker_news a\":false},[\"color:#d85623\"]],[false,{\".swp-hacker_news a:hover\":false},[\"background:#ac451c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_instagram\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_instagram:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_instagram:not(:hover)\":false},[\"border:1px solid #ea2454\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_instagram\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_instagram:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_instagram\":false},[\"background:#ea2454\",\"border:1px solid #c8133f\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_instagram\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_instagram:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_instagram\":false},[\"border-bottom:3px solid #c8133f\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_instagram a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_instagram a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_instagram a\":false},[\"color:#ea2454\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_instagram\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_instagram:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_instagram\":false},[\"background:transparent\",\"border:1px solid #ea2454\"]],[false,{\".swp-instagram\":false},[\"background:#ea2454\",\"border-color:#c8133f\"]],[false,{\".swp-instagram a\":false},[\"color:#ea2454\"]],[false,{\".swp-instagram a:hover\":false},[\"background:#c8133f\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_linkedin\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_linkedin:not(:hover)\":false},[\"border:1px solid #2767b1\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_linkedin\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_linkedin\":false},[\"background:#2767b1\",\"border:1px solid #1e4f87\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_linkedin\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_linkedin\":false},[\"border-bottom:3px solid #1e4f87\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_linkedin a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_linkedin a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_linkedin a\":false},[\"color:#2767b1\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_linkedin\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_linkedin\":false},[\"background:transparent\",\"border:1px solid #2767b1\"]],[false,{\".swp-linkedin\":false},[\"background:#2767b1\",\"border-color:#1e4f87\"]],[false,{\".swp-linkedin a\":false},[\"color:#2767b1\"]],[false,{\".swp-linkedin a:hover\":false},[\"background:#1e4f87\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_medium\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_medium:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_medium:not(:hover)\":false},[\"border:1px solid #00ab6c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_medium\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_medium:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_medium\":false},[\"background:#00ab6c\",\"border:1px solid #00784c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_medium\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_medium:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_medium\":false},[\"border-bottom:3px solid #00784c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_medium a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_medium a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_medium a\":false},[\"color:#00ab6c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_medium\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_medium:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_medium\":false},[\"background:transparent\",\"border:1px solid #00ab6c\"]],[false,{\".swp-medium\":false},[\"background:#00ab6c\",\"border-color:#00784c\"]],[false,{\".swp-medium a\":false},[\"color:#00ab6c\"]],[false,{\".swp-medium a:hover\":false},[\"background:#00784c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_mix\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_mix:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_mix:not(:hover)\":false},[\"border:1px solid #f4812c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_mix\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_mix:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_mix\":false},[\"background:#f4812c\",\"border:1px solid #e1660c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_mix\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_mix:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_mix\":false},[\"border-bottom:3px solid #e1660c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_mix a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_mix a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_mix a\":false},[\"color:#f4812c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_mix\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_mix:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_mix\":false},[\"background:transparent\",\"border:1px solid #f4812c\"]],[false,{\".swp-mix\":false},[\"background:#f4812c\",\"border-color:#e1660c\"]],[false,{\".swp-mix a\":false},[\"color:#f4812c\"]],[false,{\".swp-mix a:hover\":false},[\"background:#e1660c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_more\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_more:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_more:not(:hover)\":false},[\"border:1px solid #ee464f\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_more\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_more:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_more\":false},[\"background:#ee464f\",\"border:1px solid #ea1723\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_more\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_more:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_more\":false},[\"border-bottom:3px solid #ea1723\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_more a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_more a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_more a\":false},[\"color:#ee464f\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_more\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_more:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_more\":false},[\"background:transparent\",\"border:1px solid #ee464f\"]],[false,{\".swp-more\":false},[\"background:#ee464f\",\"border-color:#ea1723\"]],[false,{\".swp-more a\":false},[\"color:#ee464f\"]],[false,{\".swp-more a:hover\":false},[\"background:#ea1723\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_parler\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_parler:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_parler:not(:hover)\":false},[\"border:1px solid #be1e2c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_parler\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_parler:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_parler\":false},[\"background:#be1e2c\",\"border:1px solid #921722\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_parler\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_parler:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_parler\":false},[\"border-bottom:3px solid #921722\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_parler a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_parler a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_parler a\":false},[\"color:#be1e2c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_parler\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_parler:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_parler\":false},[\"background:transparent\",\"border:1px solid #be1e2c\"]],[false,{\".swp-parler\":false},[\"background:#be1e2c\",\"border-color:#921722\"]],[false,{\".swp-parler a\":false},[\"color:#be1e2c\"]],[false,{\".swp-parler a:hover\":false},[\"background:#921722\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_periscope\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_periscope:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_periscope:not(:hover)\":false},[\"border:1px solid #3aa4c6\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_periscope\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_periscope:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_periscope\":false},[\"background:#3aa4c6\",\"border:1px solid #2e849f\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_periscope\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_periscope:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_periscope\":false},[\"border-bottom:3px solid #2e849f\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_periscope a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_periscope a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_periscope a\":false},[\"color:#3aa4c6\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_periscope\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_periscope:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_periscope\":false},[\"background:transparent\",\"border:1px solid #3aa4c6\"]],[false,{\".swp-periscope\":false},[\"background:#3aa4c6\",\"border-color:#2e849f\"]],[false,{\".swp-periscope a\":false},[\"color:#3aa4c6\"]],[false,{\".swp-periscope a:hover\":false},[\"background:#2e849f\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_pinterest\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_pinterest:not(:hover)\":false},[\"border:1px solid #e60023\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_pinterest\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_pinterest\":false},[\"background:#e60023\",\"border:1px solid #b3001b\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_pinterest\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_pinterest\":false},[\"border-bottom:3px solid #b3001b\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pinterest a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pinterest a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pinterest a\":false},[\"color:#e60023\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pinterest\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pinterest\":false},[\"background:transparent\",\"border:1px solid #e60023\"]],[false,{\".swp-pinterest\":false},[\"background:#e60023\",\"border-color:#b3001b\"]],[false,{\".swp-pinterest a\":false},[\"color:#e60023\"]],[false,{\".swp-pinterest a:hover\":false},[\"background:#b3001b\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_pocket\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_pocket:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_pocket:not(:hover)\":false},[\"border:1px solid #ef4056\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_pocket\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_pocket:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_pocket\":false},[\"background:#ef4056\",\"border:1px solid #e9132e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_pocket\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_pocket:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_pocket\":false},[\"border-bottom:3px solid #e9132e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pocket a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pocket a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pocket a\":false},[\"color:#ef4056\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pocket\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pocket:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pocket\":false},[\"background:transparent\",\"border:1px solid #ef4056\"]],[false,{\".swp-pocket\":false},[\"background:#ef4056\",\"border-color:#e9132e\"]],[false,{\".swp-pocket a\":false},[\"color:#ef4056\"]],[false,{\".swp-pocket a:hover\":false},[\"background:#e9132e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_print\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_print:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_print:not(:hover)\":false},[\"border:1px solid #777\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_print\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_print:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_print\":false},[\"background:#777\",\"border:1px solid #5e5e5e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_print\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_print:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_print\":false},[\"border-bottom:3px solid #5e5e5e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_print a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_print a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_print a\":false},[\"color:#777\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_print\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_print:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_print\":false},[\"background:transparent\",\"border:1px solid #777\"]],[false,{\".swp-print\":false},[\"background:#777\",\"border-color:#5e5e5e\"]],[false,{\".swp-print a\":false},[\"color:#777\"]],[false,{\".swp-print a:hover\":false},[\"background:#5e5e5e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_reddit\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_reddit:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_reddit:not(:hover)\":false},[\"border:1px solid #f04b23\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_reddit\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_reddit:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_reddit\":false},[\"background:#f04b23\",\"border:1px solid #d2340e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_reddit\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_reddit:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_reddit\":false},[\"border-bottom:3px solid #d2340e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_reddit a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_reddit a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_reddit a\":false},[\"color:#f04b23\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_reddit\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_reddit:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_reddit\":false},[\"background:transparent\",\"border:1px solid #f04b23\"]],[false,{\".swp-reddit\":false},[\"background:#f04b23\",\"border-color:#d2340e\"]],[false,{\".swp-reddit a\":false},[\"color:#f04b23\"]],[false,{\".swp-reddit a:hover\":false},[\"background:#d2340e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_snapchat\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_snapchat:not(:hover)\":false},[\"border:1px solid #fffc00\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_snapchat\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_snapchat\":false},[\"background:#fffc00\",\"border:1px solid #ccca00\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_snapchat\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_snapchat\":false},[\"border-bottom:3px solid #ccca00\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_snapchat a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_snapchat a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_snapchat a\":false},[\"color:#fffc00\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_snapchat\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_snapchat\":false},[\"background:transparent\",\"border:1px solid #fffc00\"]],[false,{\".swp-snapchat\":false},[\"background:#fffc00\",\"border-color:#ccca00\"]],[false,{\".swp-snapchat a\":false},[\"color:#fffc00\"]],[false,{\".swp-snapchat a:hover\":false},[\"background:#ccca00\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_telegram\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_telegram:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_telegram:not(:hover)\":false},[\"border:1px solid #08c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_telegram\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_telegram:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_telegram\":false},[\"background:#08c\",\"border:1px solid #069\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_telegram\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_telegram:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_telegram\":false},[\"border-bottom:3px solid #069\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_telegram a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_telegram a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_telegram a\":false},[\"color:#08c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_telegram\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_telegram:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_telegram\":false},[\"background:transparent\",\"border:1px solid #08c\"]],[false,{\".swp-telegram\":false},[\"background:#08c\",\"border-color:#069\"]],[false,{\".swp-telegram a\":false},[\"color:#08c\"]],[false,{\".swp-telegram a:hover\":false},[\"background:#069\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_twitter\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_twitter:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_twitter:not(:hover)\":false},[\"border:1px solid #1da1f2\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_twitter\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_twitter:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_twitter\":false},[\"background:#1da1f2\",\"border:1px solid #0c85d0\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_twitter\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_twitter:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_twitter\":false},[\"border-bottom:3px solid #0c85d0\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_twitter a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_twitter a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_twitter a\":false},[\"color:#1da1f2\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_twitter\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_twitter:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_twitter\":false},[\"background:transparent\",\"border:1px solid #1da1f2\"]],[false,{\".swp-twitter\":false},[\"background:#1da1f2\",\"border-color:#0c85d0\"]],[false,{\".swp-twitter a\":false},[\"color:#1da1f2\"]],[false,{\".swp-twitter a:hover\":false},[\"background:#0c85d0\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_tumblr\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_tumblr:not(:hover)\":false},[\"border:1px solid #39475d\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_tumblr\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_tumblr\":false},[\"background:#39475d\",\"border:1px solid #262f3d\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_tumblr\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_tumblr\":false},[\"border-bottom:3px solid #262f3d\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_tumblr a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_tumblr a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_tumblr a\":false},[\"color:#39475d\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_tumblr\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_tumblr\":false},[\"background:transparent\",\"border:1px solid #39475d\"]],[false,{\".swp-tumblr\":false},[\"background:#39475d\",\"border-color:#262f3d\"]],[false,{\".swp-tumblr a\":false},[\"color:#39475d\"]],[false,{\".swp-tumblr a:hover\":false},[\"background:#262f3d\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_vimeo\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_vimeo:not(:hover)\":false},[\"border:1px solid #162221\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_vimeo\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_vimeo\":false},[\"background:#162221\",\"border:1px solid #020303\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_vimeo\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_vimeo\":false},[\"border-bottom:3px solid #020303\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vimeo a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vimeo a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vimeo a\":false},[\"color:#162221\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vimeo\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vimeo\":false},[\"background:transparent\",\"border:1px solid #162221\"]],[false,{\".swp-vimeo\":false},[\"background:#162221\",\"border-color:#020303\"]],[false,{\".swp-vimeo a\":false},[\"color:#162221\"]],[false,{\".swp-vimeo a:hover\":false},[\"background:#020303\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_viber\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_viber:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_viber:not(:hover)\":false},[\"border:1px solid #8f5db7\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_viber\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_viber:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_viber\":false},[\"background:#8f5db7\",\"border:1px solid #75459c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_viber\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_viber:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_viber\":false},[\"border-bottom:3px solid #75459c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_viber a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_viber a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_viber a\":false},[\"color:#8f5db7\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_viber\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_viber:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_viber\":false},[\"background:transparent\",\"border:1px solid #8f5db7\"]],[false,{\".swp-viber\":false},[\"background:#8f5db7\",\"border-color:#75459c\"]],[false,{\".swp-viber a\":false},[\"color:#8f5db7\"]],[false,{\".swp-viber a:hover\":false},[\"background:#75459c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_vk\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_vk:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_vk:not(:hover)\":false},[\"border:1px solid #4a76a8\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_vk\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_vk:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_vk\":false},[\"background:#4a76a8\",\"border:1px solid #3a5d85\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_vk\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_vk:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_vk\":false},[\"border-bottom:3px solid #3a5d85\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vk a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vk a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vk a\":false},[\"color:#4a76a8\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vk\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vk:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vk\":false},[\"background:transparent\",\"border:1px solid #4a76a8\"]],[false,{\".swp-vk\":false},[\"background:#4a76a8\",\"border-color:#3a5d85\"]],[false,{\".swp-vk a\":false},[\"color:#4a76a8\"]],[false,{\".swp-vk a:hover\":false},[\"background:#3a5d85\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_whatsapp\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_whatsapp:not(:hover)\":false},[\"border:1px solid #71c169\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_whatsapp\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_whatsapp\":false},[\"background:#71c169\",\"border:1px solid #52af48\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_whatsapp\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_whatsapp\":false},[\"border-bottom:3px solid #52af48\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_whatsapp a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_whatsapp a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_whatsapp a\":false},[\"color:#71c169\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_whatsapp\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_whatsapp\":false},[\"background:transparent\",\"border:1px solid #71c169\"]],[false,{\".swp-whatsapp\":false},[\"background:#71c169\",\"border-color:#52af48\"]],[false,{\".swp-whatsapp a\":false},[\"color:#71c169\"]],[false,{\".swp-whatsapp a:hover\":false},[\"background:#52af48\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_xing\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_xing:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_xing:not(:hover)\":false},[\"border:1px solid #026466\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_xing\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_xing:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_xing\":false},[\"background:#026466\",\"border:1px solid #013334\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_xing\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_xing:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_xing\":false},[\"border-bottom:3px solid #013334\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_xing a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_xing a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_xing a\":false},[\"color:#026466\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_xing\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_xing:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_xing\":false},[\"background:transparent\",\"border:1px solid #026466\"]],[false,{\".swp-xing\":false},[\"background:#026466\",\"border-color:#013334\"]],[false,{\".swp-xing a\":false},[\"color:#026466\"]],[false,{\".swp-xing a:hover\":false},[\"background:#013334\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_yummly\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_yummly:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_yummly:not(:hover)\":false},[\"border:1px solid #e26426\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_yummly\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_yummly:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_yummly\":false},[\"background:#e26426\",\"border:1px solid #bc4f19\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_yummly\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_yummly:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_yummly\":false},[\"border-bottom:3px solid #bc4f19\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_yummly a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_yummly a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_yummly a\":false},[\"color:#e26426\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_yummly\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_yummly:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_yummly\":false},[\"background:transparent\",\"border:1px solid #e26426\"]],[false,{\".swp-yummly\":false},[\"background:#e26426\",\"border-color:#bc4f19\"]],[false,{\".swp-yummly a\":false},[\"color:#e26426\"]],[false,{\".swp-yummly a:hover\":false},[\"background:#bc4f19\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_default_light_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_light_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_light_gray:hover .nc_tweetContainer\":false},[\"background-color:#ccc\",\"border:1px solid #ccc\"]],[false,{\".swp_social_panel.swp_default_light_gray .nc_tweetContainer a\":false,\"html body .swp_social_panel.swp_individual_light_gray .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_light_gray:hover .nc_tweetContainer a\":false},[\"color:#fff\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_light_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_light_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_light_gray .nc_tweetContainer:hover\":false},[\"border-bottom:3px solid #b3b3b3\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_light_gray .nc_tweetContainer.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_light_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false,\"body .swp_social_panel.swp_three_dee.swp_other_light_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:none\"]],[false,{\".swp_social_panel.swp_default_light_gray_outlines a\":false,\"html body .swp_social_panel.swp_individual_light_gray_outlines a:hover\":false,\"body .swp_social_panel.swp_other_light_gray_outlines:hover a\":false},[\"color:#ccc\"]],[false,{\".swp_social_panel.swp_default_light_gray_outlines .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_light_gray_outlines .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_light_gray_outlines:hover .nc_tweetContainer\":false},[\"background:transparent\",\"border:1px solid #ccc\"]],[false,{\".swp_social_panel.swp_default_medium_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_medium_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_medium_gray:hover .nc_tweetContainer\":false},[\"background-color:#999\",\"border:1px solid #999\"]],[false,{\".swp_social_panel.swp_default_medium_gray .nc_tweetContainer a\":false,\"html body .swp_social_panel.swp_individual_medium_gray .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_medium_gray:hover .nc_tweetContainer a\":false},[\"color:#fff\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_medium_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_medium_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_medium_gray .nc_tweetContainer:hover\":false},[\"border-bottom:3px solid gray\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_medium_gray .nc_tweetContainer.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_medium_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false,\"body .swp_social_panel.swp_three_dee.swp_other_medium_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:none\"]],[false,{\".swp_social_panel.swp_default_medium_gray_outlines a\":false,\"html body .swp_social_panel.swp_individual_medium_gray_outlines a:hover\":false,\"body .swp_social_panel.swp_other_medium_gray_outlines:hover a\":false},[\"color:#999\"]],[false,{\".swp_social_panel.swp_default_medium_gray_outlines .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_medium_gray_outlines .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_medium_gray_outlines:hover .nc_tweetContainer\":false},[\"background:transparent\",\"border:1px solid #999\"]],[false,{\".swp_social_panel.swp_default_dark_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_dark_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_dark_gray:hover .nc_tweetContainer\":false},[\"background-color:#444\",\"border:1px solid #444\"]],[false,{\".swp_social_panel.swp_default_dark_gray .nc_tweetContainer a\":false,\"html body .swp_social_panel.swp_individual_dark_gray .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_dark_gray:hover .nc_tweetContainer a\":false},[\"color:#fff\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_dark_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_dark_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_dark_gray .nc_tweetContainer:hover\":false},[\"border-bottom:3px solid #2b2b2b\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_dark_gray .nc_tweetContainer.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_dark_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false,\"body .swp_social_panel.swp_three_dee.swp_other_dark_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:none\"]],[false,{\".swp_social_panel.swp_default_dark_gray_outlines a\":false,\"html body .swp_social_panel.swp_individual_dark_gray_outlines a:hover\":false,\"body .swp_social_panel.swp_other_dark_gray_outlines:hover a\":false},[\"color:#444\"]],[false,{\".swp_social_panel.swp_default_dark_gray_outlines .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_dark_gray_outlines .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_dark_gray_outlines:hover .nc_tweetContainer\":false},[\"background:transparent\",\"border:1px solid #444\"]],[false,{\".swp_social_panel.swp_modern\":false,\".swp_social_panel.swp_dark\":false},[\"background:#fff\",\"height:62px\",\"padding:0\",\"border-radius:8px\",\"border:1px solid #eee\",\"box-shadow:0 2px 4px 0 rgba(0,0,0,.01),0 4px 5px 0 rgba(0,0,0,.014),0 4px 15px 0 rgba(0,0,0,.09)\"]],[false,{\".swp_social_panel.swp_modern .swp_share_button\":false,\".swp_social_panel.swp_dark .swp_share_button\":false},[\"padding-bottom:1px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_button:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .swp_share_button:not(#_#_#_#_#_#_#_)\":false},[\"border:none\",\"border-radius:0\",\"margin:0\",\"height:61px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_button.total_shares.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .swp_share_button.total_shares.total_sharesalt:not(#_#_#_#_#_#_#_)\":false},[\"padding:15px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_link\":false,\".swp_social_panel.swp_dark .swp_share_link\":false},[\"border-radius:0\",\"padding:15px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_link:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .swp_share_link:not(#_#_#_#_#_#_#_)\":false},[\"height:61px\"]],[false,{\".swp_social_panel.swp_modern .iconFiller:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .iconFiller:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:10px\"]],[false,{\".swp_social_panel.swp_modern .nc_wrapper.bottom:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .nc_wrapper.bottom:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\"]],[false,{\".swp_dark .swp_share_button:not(#_#_#_#_#_#_#_)\":false},[\"background:#222\",\"border-color:#222\",\"margin:0\",\"height:62px\"]],[false,{\".swp_dark .swp_share_link:hover\":false},[\"background:#444\"]],[false,{\".scale-70\":false},[\"transform:scale(.7)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-70.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:142.85714%\"]],[false,{\".scale-80\":false},[\"transform:scale(.8)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-80.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:125%\"]],[false,{\".scale-90\":false},[\"transform:scale(.9)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-90.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:111.11111%\"]],[false,{\".scale-100\":false},[\"transform:scale(1)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-100.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".scale-110\":false},[\"transform:scale(1.1)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-110.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:90.90909%\"]],[false,{\".scale-120\":false},[\"transform:scale(1.2)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-120.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:83.33333%\"]],[false,{\".scale-130\":false},[\"transform:scale(1.3)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-130.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:76.92308%\"]],[false,{\".scale-140\":false},[\"transform:scale(1.4)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-140.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:71.42857%\"]],[false,{\".scale-left\":false},[\"transform-origin:left\"]],[false,{\".scale-center\":false},[\"transform-origin:center\"]],[false,{\".scale-right\":false},[\"transform-origin:right\"]],[false,{\".scale-full_width\":false},[\"transform-origin:left\"]],[false,{\"div.swp_social_panel .nc_tweetContainer.swp_emphasize\":false},[\"flex:2\"]],[false,\"@media print{\"],[false,{\".swp_social_panel\":false},[\"display:none\",\"opacity:0\",\"visibility:collapse\"]],[false,\"}\"],[false,{\"html[lang] .site * i.sw:not(#_#_#_#_#_#_#_#_)\":false},[\"font-family:sw-icon-font\"]],[false,{\".swp_social_panel\":false},[\"clear:both\",\"display:flex\",\"height:34px\",\"line-height:1\",\"overflow:hidden\",\"padding:0\",\"align-items:stretch\",\"-webkit-box-align:stretch\",\"-moz-box-align:stretch\",\"-webkit-box-pack:justify\",\"-moz-box-pack:justify\",\"direction:ltr\",\"-ms-flex-align:stretch\",\"-ms-flex-line-pack:center\",\"-ms-flex-pack:justify\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[false,{\".swp_social_panel:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:20px\",\"margin-top:20px\"]],[false,{\".swp_social_panel .nc_tweetContainer a.nc_tweet\":false,\".swp_social_panel .nc_tweetContainer.total_shares .swp_count\":false},[\"display:block\",\"display:flex\",\"font-family:Lato,sans-serif\",\"font-weight:bold\",\"height:30px\",\"text-transform:none\",\"flex-flow:row wrap\",\"box-shadow:none\"]],[false,{\".swp_social_panel .nc_tweetContainer a.nc_tweet:not(#_#_#_#_#_#_#_#_)\":false,\".swp_social_panel .nc_tweetContainer.total_shares .swp_count:not(#_#_#_#_#_#_#_)\":false},[\"font-size:18px\",\"text-decoration:none\"]],[false,{\".swp_social_panel .nc_tweetContainer:not(.total_shares):not(.total_sharesalt)\":false},[\"border-radius:2px\",\"cursor:pointer\",\"float:left\",\"font-family:Lato\",\"height:32px\",\"margin:0 5px 3px 5px\",\"min-width:34px\",\"overflow:hidden\",\"text-align:center\",\"transition:all .1s linear\"]],[false,{\".swp_social_panel .nc_tweetContainer .spaceManWilly\":false},[\"display:block\",\"width:120px\"]],[false,{\".swp_social_panel .swp_label\":false},[\"display:block\",\"margin-top:13px\",\"position:absolute\",\"text-transform:uppercase\"]],[false,{\".swp_social_panel .swp_label:not(#_#_#_#_#_#_#_)\":false},[\"font-size:9px\",\"text-align:center\"]],[false,{\".swp_social_panel .swp_share\":false},[\"display:block\",\"float:right\",\"float:left\",\"font-size:14px\",\"font-weight:normal\",\"height:30px\",\"line-height:32px\",\"margin:0 0 0 6px\"]],[false,{\".swp_social_panel .swp_share:not(#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\".swp_social_panel .total_shares\":false},[\"border-radius:2px\",\"color:white\",\"cursor:default\",\"display:block\",\"font-size:19px\",\"padding:0 10px\"]],[false,{\".swp_social_panel .total_shares:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\",\"border:none\",\"flex:none\"]],[false,{\".swp_social_panel .total_shares .swp_count\":false},[\"line-height:30px\"]],[false,{\".swp_social_panel .total_shares .swp_label\":false},[\"font-size:10px\",\"vertical-align:middle\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\",\"border:none\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt:before\":false},[\"content:\\\"G\\\"\",\"display:inline-block\",\"font-family:sw-icon-font\",\"margin-top:7px\",\"vertical-align:top\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt.total_sharesalt\":false,\".swp_social_panel .total_shares.total_sharesalt:not(:nth-child(1))\":false},[\"border:none\",\"color:#474b4d\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel .total_shares.total_sharesalt:not(:nth-child(1)):not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\",\"margin-left:0\",\"margin-bottom:10px\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt .swp_count\":false},[\"color:#474b4d\",\"font-size:24px\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt .swp_label\":false},[\"color:#474b4d\",\"letter-spacing:0\",\"min-width:40px\"]],[false,{\".swp_social_panel a .swp_count\":false},[\"font-size:14px\"]],[false,{\".swp_social_panel a .swp_count:not(.swp_hide)\":false},[\"display:inline-block\",\"line-height:32px\",\"margin:0\",\"padding:0 5px\",\"flex:1\"]],[false,{\".swp_social_panel a .swp_count.swp_hide\":false},[\"margin:0 auto\",\"width:auto\"]],[false,{\".swp_social_panel:not(.nc_floater):not(.swp_social_panelSide):not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".swp_social_panel:not(.nc_floater):not(.swp_social_panelSide).swp_shift\":false},[\"padding:0 10px\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide)\":false},[\"transition:opacity .2s ease-in-out\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer\":false},[\"flex:1\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer.swp-emphasize\":false},[\"flex:2\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer:nth-child(1)\":false},[\"margin-left:0\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer:nth-last-child(1)\":false},[\"margin-right:0\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt:before\":false},[\"content:\\\"G\\\"\",\"display:inline-block\",\"font-family:sw-icon-font\",\"margin-top:7px\",\"vertical-align:top\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt .swp_count\":false},[\"display:inline-block\",\"line-height:0\",\"margin-left:8px\",\"margin-top:12px\",\"min-width:45px\",\"position:relative\",\"vertical-align:middle\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt:nth-child(1)\":false},[\"margin-left:0\",\"margin-right:15px\",\"padding-left:0\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt:nth-last-child(1)\":false},[\"margin-right:0\",\"padding-right:0\"]],[false,{\".swp_social_panel span:before:not(#_#_#_#_#_#_#_#_)\":false},[\"content:initial\"]],[false,{\".swp_social_panel .iconFiller\":false},[\"font-size:18px\",\"margin:0 auto\",\"display:block\",\"float:left\",\"height:30px\",\"overflow:hidden\",\"transition:width .1s linear\",\"width:30px\"]],[false,{\".swp_social_panel .sw\":false},[\"float:left\",\"height:30px\",\"line-height:32px\",\"margin:1px 5px 0\",\"width:20px\"]],[false,{\".swp_social_panel .sw:not(#_#_#_#_#_#_#_)\":false},[\"text-shadow:none\"]],[false,{\".swp_social_panel.notMobile .nc_tweetContainer:nth-child(1)\":false},[\"margin-left:0\"]],[false,{\".swp_social_panel:hover .total_shares\":false,\".swp_social_panel.swp_full_color .total_shares\":false,\".swp_social_panel.swp_fade .total_shares\":false,\".swp_social_panel.swp_customFull:hover .total_shares\":false},[\"background:#e08a0f\"]],[false,{\".swp_social_panel.swp_leaf .nc_tweetContainer\":false},[\"border-width:1px\"]],[false,{\".swp_social_panel.swp_leaf .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:15px 0\"]],[false,{\".swp_social_panel.swp_pill .nc_tweetContainer\":false},[\"border-width:1px\"]],[false,{\".swp_social_panel.swp_pill .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:50px\"]],[false,{\".swp_social_panel.swp_shift .nc_tweetContainer:not(.total_shares)\":false},[\"border-width:1px\",\"transform:skew(-25deg)\"]],[false,{\".swp_social_panel.swp_shift .nc_tweetContainer a\":false},[\"transform:skew(25deg)\"]],[false,{\".swp_social_panel.swp_connected:hover .nc_tweetContainer\":false,\".swp_social_panel.swp_connected .nc_tweetContainer\":false,\".swp_social_panel.swp_connected .nc_tweetContainer:hover\":false},[\"border-width:1px\"]],[false,{\".swp_social_panel.swp_connected:hover .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_connected .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_connected .nc_tweetContainer:hover:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\",\"margin:0\"]],[false,{\".swp_social_panel.mobile .iconFiller ~ .swp_count\":false,\".sw-content-locator\":false},[\"display:none\"]],[true,{\"div[class*=custom_color][class^=_wrapper]\":true},[\"display:none\"]],[false,{\"pre.swp_debug_data\":false},[\"white-space:pre-wrap\",\"padding:0 25px\",\"max-width:1000px\",\"margin:0 auto 50px auto\",\"border:3px solid #666\"]],[false,{\".wp-editor-container .swp_twitter:before\":false},[\"color:#429cd6\"]],[false,{\".swp_powered_by\":false},[\"font-family:helvetica,arial,sans-serif\",\"color:black\"]],[false,{\".swp_powered_by span\":false},[\"clear:both\",\"width:100%\",\"display:block\",\"margin:36px 0px -30px 0\"]],[false,{\".swp_powered_by a\":false},[\"color:black\",\"text-decoration:none\"]],[false,{\".swp_powered_by amp-img\":false,\".swp_powered_by amp-anim\":false},[\"max-height:40px\",\"margin-top:30px\"]],[false,{\".sw\":false},[\"display:inline-block\",\"font-size:inherit\",\"-moz-osx-font-smoothing:grayscale\",\"-webkit-font-smoothing:antialiased\",\"font-style:normal\",\"font-weight:normal\",\"text-rendering:auto\",\"transform:translate(0,0)\",\"transform:translate(0,0)\",\"-webkit-transform:translate(0,0)\",\"-moz-transform:translate(0,0)\",\"-ms-transform:translate(0,0)\",\"-o-transform:translate(0,0)\"]],[false,{\".sw:not(#_#_#_#_#_#_#_)\":false},[\"font-family:sw-icon-font\",\"text-transform:none\"]],[false,{\".sw:before:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\"i.swp_blogger_icon:before\":false},[\"content:\\\"c\\\"\"]],[false,{\"i.swp_buffer_icon:before\":false},[\"content:\\\"d\\\"\"]],[false,{\"i.swp_ello_icon:before\":false},[\"content:\\\"h\\\"\"]],[false,{\"i.swp_email_icon:before\":false},[\"content:\\\"i\\\"\"]],[false,{\"i.swp_evernote_icon:before\":false},[\"content:\\\"j\\\"\"]],[false,{\"i.swp_facebook_icon:before\":false},[\"content:\\\"k\\\"\"]],[false,{\"i.swp_flickr_icon:before\":false},[\"content:\\\"l\\\"\"]],[false,{\"i.swp_flipboard_icon:before\":false},[\"content:\\\"m\\\"\"]],[false,{\"i.swp_hacker_news_icon:before\":false},[\"content:\\\"o\\\"\"]],[false,{\"i.swp_instagram_icon:before\":false},[\"content:\\\"q\\\"\"]],[false,{\"i.swp_linkedin_icon:before\":false},[\"content:\\\"s\\\"\"]],[false,{\"i.swp_medium_icon:before\":false},[\"content:\\\"u\\\"\"]],[false,{\"i.swp_mix_icon:before\":false},[\"content:\\\"w\\\"\"]],[false,{\"i.swp_more_icon:before\":false},[\"content:\\\"B\\\"\"]],[false,{\"i.swp_parler_icon:before\":false},[\"content:\\\"0\\\"\"]],[false,{\"i.swp_periscope_icon:before\":false},[\"content:\\\"y\\\"\"]],[false,{\"i.swp_pinterest_icon:before\":false},[\"content:\\\"A\\\"\"]],[false,{\"i.swp_pin_icon:before\":false},[\"content:\\\"z\\\"\"]],[false,{\"i.swp_pocket_icon:before\":false},[\"content:\\\"C\\\"\"]],[false,{\"i.swp_print_icon:before\":false},[\"content:\\\"D\\\"\"]],[false,{\"i.swp_reddit_icon:before\":false},[\"content:\\\"E\\\"\"]],[false,{\"i.swp_share_icon:before\":false},[\"content:\\\"G\\\"\"]],[false,{\"i.swp_social-warfare_icon:before\":false},[\"content:\\\"K\\\"\"]],[false,{\"i.swp_snapchat_icon:before\":false},[\"content:\\\"J\\\"\"]],[false,{\"i.swp_telegram_icon:before\":false},[\"content:\\\"L\\\"\"]],[false,{\"i.swp_tumblr_icon:before\":false},[\"content:\\\"M\\\"\"]],[false,{\"i.swp_twitter_icon:before\":false},[\"content:\\\"N\\\"\"]],[false,{\"i.swp_viber_icon:before\":false},[\"content:\\\"O\\\"\"]],[false,{\"i.swp_vimeo_icon:before\":false},[\"content:\\\"P\\\"\"]],[false,{\"i.swp_vk_icon:before\":false},[\"content:\\\"R\\\"\"]],[false,{\"i.swp_warfare-plugins_icon:before\":false},[\"content:\\\"Z\\\"\"]],[false,{\"i.swp_whatsapp_icon:before\":false},[\"content:\\\"T\\\"\"]],[false,{\"i.swp_xing_icon:before\":false},[\"content:\\\"V\\\"\"]],[false,{\"i.swp_yummly_icon:before\":false},[\"content:\\\"Y\\\"\"]],[false,{\".sw-social-warfare:before\":false},[\"content:\\\"K\\\"\"]],[false,{\".wp-editor-container .sw:before\":false},[\"font-size:18px\",\"line-height:22px\"]],[false,{\".wp-editor-container .sw-social-warfare:before\":false,\".mce-ico.sw-social-warfare:before\":false,\".mce-ico.sw-social-warfare\":false},[\"color:#ee464f\"]],[false,{\".mce-container .sw-social-warfare\":false},[\"color:#ee464f\",\"font-size:20px\",\"margin-right:15px\",\"vertical-align:middle\"]],[false,{\".swp_social_panelSide\":false},[\"transition:all .2s linear\",\"flex-direction:column\",\"height:auto\",\"overflow:visible\",\"z-index:9998\",\"padding:0\"]],[false,{\".swp_social_panelSide:not(#_#_#_#_#_#_#_)\":false},[\"margin:10px 5px\"]],[false,{\".swp_social_panelSide.slide\":false,\".swp_social_panelSide.fade\":false},[\"transition:all .2s linear\",\"position:fixed\"]],[false,{\".swp_social_panelSide.fade\":false},[\"display:none\"]],[false,{\".swp_social_panelSide.fade .swp_float_left\":false},[\"left:5px\"]],[false,{\".swp_social_panelSide.fade .swp_float_right\":false},[\"right:5px\"]],[false,{\".swp_social_panelSide.hideCounts a\":false},[\"text-align:center\"]],[false,{\".swp_social_panelSide.hideCounts .iconFiller\":false},[\"float:none\",\"text-align:left\"]],[false,{\".swp_social_panelSide[class*=swp_side]\":false},[\"height:auto\",\"display:flex\",\"position:fixed\",\"padding:30px 0\"]],[false,{\".swp_social_panelSide.swp_float_right\":false},[\"align-content:flex-end\"]],[false,{\".swp_social_panelSide.swp_side_top\":false},[\"top:15px\"]],[false,{\".swp_social_panelSide.swp_side_bottom\":false},[\"bottom:15px\"]],[false,{\".swp_social_panelSide.swp_default .nc_tweetContainer .sw\":false},[\"line-height:32px\"]],[false,{\".swp_social_panelSide.swp_default .nc_tweetContainer .swp_share\":false},[\"line-height:32px\"]],[false,{\".swp_social_panelSide span.swp_label\":false},[\"margin-top:0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer\":false},[\"transition:all .1s linear\",\"border-radius:3px\",\"clear:both\",\"display:block\",\"font-family:Lato,sans-serif\",\"height:32px\",\"overflow:hidden\",\"padding:0\",\"width:90px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"margin:3px 0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares\":false},[\"background:rgba(0,0,0,0)\",\"font-weight:800\",\"height:55px\",\"margin:0\",\"padding:0\",\"text-align:center\",\"width:90px\",\"order:-100\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares:not(#_#_#_#_#_#_#_)\":false},[\"border:0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares .swp_count\":false},[\"color:#444\",\"display:block\",\"font-family:Lato,sans-serif\",\"height:28px\",\"text-align:center\",\"width:100%\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares .swp_label\":false},[\"color:#444\",\"display:block\",\"font-family:Lato,sans-serif\",\"font-size:50%\",\"position:relative\",\"text-align:center\",\"width:100%\"]],[false,{\".swp_social_panelSide .nc_tweetContainer:not(.total_shares)\":false},[\"line-height:34px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer:hover\":false,\".swp_social_panelSide .nc_tweetContainer:hover .iconFiller\":false,\".swp_social_panelSide .nc_tweetContainer:hover .swp_count\":false},[\"transition:all .1s linear\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .iconFiller\":false},[\"transition:all .1s linear\",\"display:inline-block\",\"height:40px\",\"margin:0 6px\",\"padding:0\",\"vertical-align:middle\",\"width:21px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .swp_count\":false},[\"transition:all .1s linear\",\"display:inline-block\",\"font-size:14px\",\"height:32px\",\"line-height:16px\",\"margin:0\",\"padding:0\",\"overflow:hidden\",\"text-align:right\",\"vertical-align:top\",\"width:0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer a\":false},[\"transition:all .1s linear\",\"cursor:pointer\",\"display:block\",\"font-weight:500\",\"height:36px\",\"margin:0\",\"padding:0\",\"text-decoration:none\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .sw\":false,\".swp_social_panelSide .nc_tweetContainer .swp_share\":false},[\"float:left\",\"line-height:34px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .swp_share\":false},[\"font-size:13px\",\"margin:0\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer\":false},[\"margin-bottom:5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer a\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer a\":false},[\"width:67.5px\",\"position:relative\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer a:not(#_#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer a:not(#_#_#_#_#_#_#_#_)\":false},[\"height:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .total_shares\":false,\".swp_social_panelSide.swp_circles .total_shares\":false},[\"padding:0\"]],[false,{\".swp_social_panelSide.swp_boxed .total_shares:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .total_shares:not(#_#_#_#_#_#_#_)\":false},[\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer span.iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer span.iconFiller\":false},[\"height:40px\",\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer i.sw\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer i.sw\":false},[\"font-size:27px\",\"height:40px\",\"margin:0\",\"padding-top:10px\",\"text-align:center\",\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_share\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) span.swp_share\":false},[\"height:35px\",\"opacity:0\",\"position:absolute\",\"bottom:0\",\"left:0\",\"text-align:center\",\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_count\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) span.swp_count\":false},[\"height:35px\",\"margin:0\",\"padding:0\",\"position:absolute\",\"bottom:0\",\"left:0\",\"text-align:center\",\"transition:padding .1s linear\",\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_hide span.swp_share\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover span.swp_share:not(.swp_hide)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_hide span.swp_share\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):hover span.swp_share:not(.swp_hide)\":false},[\"opacity:1\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover span.swp_count:not(.swp_hide)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):hover span.swp_count:not(.swp_hide)\":false},[\"opacity:0\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_count\":false},[\"padding:0 8px\",\"width:48px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide\":false},[\"padding:0\",\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide .iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide .iconFiller\":false},[\"display:block\",\"float:none\",\"margin:0 auto\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover .iconFiller\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .spaceManWilly\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):hover .iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .spaceManWilly\":false},[\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_count.swp_hide\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer span.swp_hide .iconFiller\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer span.swp_hide .spaceManWilly\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) span.swp_count.swp_hide\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer span.swp_hide .iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer span.swp_hide .spaceManWilly\":false},[\"height:67.5px\",\"opacity:1\"]],[false,{\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) a:not(#_#_#_#_#_#_#_#_)\":false},[\"border-radius:50%\"]],[false,{\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares) .iconFiller\":false},[\"margin-left:2px\",\"width:30px\"]],[false,{\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares)[data-network]:not(.total_shares):hover span.iconFiller\":false,\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares):not(.total_shares) .spaceManWilly\":false},[\"width:90px\"]],[false,{\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares):hover\":false},[\"width:150px\"]],[false,{\".nc_wrapper\":false},[\"background:white\",\"position:fixed\",\"transition:top .5s bottom .5s\",\"width:100%\",\"z-index:99999\"]],[false,{\".nc_wrapper.bottom\":false},[\"bottom:0\",\"left:0\"]],[false,{\".nc_wrapper.top\":false},[\"top:0\",\"left:0\"]],[false,{\".nc_wrapper .swp_social_panel:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:10px\",\"margin-top:10px\"]],[false,{\".nc_floater\":false},[\"margin:10px 0\",\"position:relative\"]],[false,{\".float-position-top-left\":false},[\"transform-origin:top left\"]],[false,{\".float-position-center-left\":false},[\"transform-origin:center left\"]],[false,{\".float-position-bottom-left\":false},[\"transform-origin:bottom left\"]],[false,{\".float-position-top-right\":false},[\"transform-origin:top right\"]],[false,{\".float-position-center-right\":false},[\"transform-origin:center right\"]],[false,{\".float-position-bottom-right\":false},[\"transform-origin:bottom right\"]],[false,{\".sw-tweet-clear\":false},[\"zoom:1\"]],[false,{\".sw-tweet-clear:after\":false},[\"clear:both\",\"content:\\\".\\\"\",\"display:block\",\"height:0\",\"visibility:hidden\"]],[false,{\"a.swp_CTT\":false},[\"cursor:pointer\"]],[false,{\"a.swp_CTT:not(#_#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\"a.swp_CTT .sw-click-to-tweet\":false},[\"display:block\",\"margin:15px 0\",\"padding:15px 30px\",\"position:relative\"]],[false,{\"a.swp_CTT .sw-click-to-tweet:after\":false},[\"clear:both\",\"content:\\\".\\\"\",\"display:block\",\"height:0\",\"line-height:0\",\"visibility:hidden\"]],[false,{\"a.swp_CTT .sw-click-to-tweet .sw-ctt-text\":false},[\"margin:0 0 10px\",\"margin:0\",\"padding:0\",\"padding:0\",\"position:relative\",\"position:relative\",\"word-wrap:break-word\",\"display:block\",\"font-size:24px\",\"font-weight:500\",\"line-height:140%\",\"text-decoration:none\",\"text-transform:none\"]],[false,{\"a.swp_CTT .sw-click-to-tweet .sw-ctt-btn\":false},[\"display:block\",\"float:right\",\"font-family:\\\"Helvetica Neue\\\",Helvetica,Arial,sans-serif\",\"font-size:12px\",\"font-weight:bold\",\"line-height:100%\",\"margin:10px 0 0\",\"padding:3px 5px 3px 3px\",\"position:relative\",\"text-decoration:none\",\"text-transform:uppercase\"]],[false,{\"a.swp_CTT .sw-click-to-tweet i.swp_twitter_icon\":false},[\"float:right\",\"font-size:21px\",\"margin-top:2px\",\"text-transform:none\"]],[false,{\"a.swp_CTT .sw-click-to-tweet i.swp_twitter_icon:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-left:15px\"]],[false,{\"a.swp_CTT.style1 .sw-click-to-tweet\":false},[\"background-color:#fff\",\"border:1px solid #ddd\",\"border-radius:4px\"]],[false,{\"a.swp_CTT.style1 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#1da1f2\"]],[false,{\"a.swp_CTT.style1 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style1 .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#999\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style1:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style1:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#666\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style2 .sw-click-to-tweet\":false},[\"background-color:#fff\",\"border:4px double #ddd\",\"border-radius:0\"]],[false,{\"a.swp_CTT.style2 .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#1da1f2\"]],[false,{\"a.swp_CTT.style2 .sw-click-to-tweet .sw-ctt-text\":false},[\"color:#666\",\"font-style:italic\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style2:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style2:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#666\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style3 .sw-click-to-tweet\":false},[\"background-color:#1da1f2\",\"border:none\",\"border-left:10px solid #15202b\",\"border-radius:0\",\"padding-right:20px\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style3 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style3 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style3 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style3 .sw-click-to-tweet .sw-ctt-text\":false},[\"font-style:italic\"]],[false,{\"a.swp_CTT.style3:hover .sw-click-to-tweet\":false},[\"border-left:10px solid #15202b\",\"padding-right:20px\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style3:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style3:hover .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style3:hover .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style4 .sw-click-to-tweet\":false},[\"background-color:#333\",\"border-left:10px solid #c33\",\"border-radius:0\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style4 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style4 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style4 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style4:hover .sw-click-to-tweet\":false},[\"border-left:10px solid #3c87b2\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style4:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style4:hover .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style4:hover .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style5 .sw-click-to-tweet\":false},[\"background-color:#30394f\",\"border-left:10px solid #d34250\",\"border-radius:0\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style5 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style5 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style5 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style5:hover .sw-click-to-tweet\":false},[\"background-color:#d34250\",\"border-left:10px solid #30394f\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style5:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style5:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style6 .sw-click-to-tweet\":false},[\"background-color:#eee\",\"border-left:10px solid #d34250\",\"border-radius:0\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style6 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style6 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style6 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#30394f\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style6:hover .sw-click-to-tweet\":false},[\"background-color:#ced3dc\",\"border-left:10px solid #d34250\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style6:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style6:hover .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style6:hover .sw-click-to-tweet i.swp_twitter\":false},[\"color:#2a2d34\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style7 .sw-click-to-tweet\":false},[\"transition:all .2s linear\",\"background:#f9f9f9\",\"color:#1da1f2\",\"border-radius:10px\",\"transform:skewX(-15deg)\",\"border:7px dashed #e5e5e5\"]],[false,{\"a.swp_CTT.style7 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style7 .sw-click-to-tweet .sw-ctt-btn\":false},[\"transition:all .2s linear\",\"transform:skewX(15deg)\"]],[false,{\"a.swp_CTT.style7:hover .sw-click-to-tweet\":false},[\"transition:all .2s linear\",\"background:#fff\",\"border-color:#ddd\",\"transform:skewX(-10deg) scale(1.02)\"]],[false,{\"a.swp_CTT.style7:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style7:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"transition:all .2s linear\",\"transform:skewX(10deg)\"]],[false,{\".swfw-follow-container\":false},[\"display:flex\",\"position:relative\"]],[false,{\".swfw-follow-container .swfw-container-message\":false},[\"font-weight:bold\"]],[false,{\".swfw-follow-container.swfw_square_container\":false},[\"flex-flow:row wrap\"]],[false,{\".swfw-follow-container.swfw_buttons_container\":false},[\"flex-flow:column nowrap\",\"justify-content:flex-start\",\"align-items:space-between\"]],[false,{\".swfw-follow-container.swfw_block_container\":false},[\"flex-flow:column nowrap\",\"justify-content:flex-start\",\"align-items:flex-start\"]],[false,{\".swfw-follow-container a\":false},[\"text-decoration:none\"]],[false,{\"div.swp-blogger\":false},[\"background:#ff5722\",\"border-color:#ee3900\"]],[false,{\"div.swp-blogger a\":false},[\"color:#ff5722\"]],[false,{\"div.swp-blogger a:hover\":false},[\"background:#ee3900\",\"color:#fff\"]],[false,{\"div.swp-buffer\":false},[\"background:#323b43\",\"border-color:#1c2126\"]],[false,{\"div.swp-buffer a\":false},[\"color:#323b43\"]],[false,{\"div.swp-buffer a:hover\":false},[\"background:#1c2126\",\"color:#fff\"]],[false,{\"div.swp-ello\":false},[\"background:#000\",\"border-color:#000\"]],[false,{\"div.swp-ello a\":false},[\"color:#000\"]],[false,{\"div.swp-ello a:hover\":false},[\"background:#000\",\"color:#fff\"]],[false,{\"div.swp-email\":false},[\"background:#6bcce9\",\"border-color:#3fbde2\"]],[false,{\"div.swp-email a\":false},[\"color:#6bcce9\"]],[false,{\"div.swp-email a:hover\":false},[\"background:#3fbde2\",\"color:#fff\"]],[false,{\"div.swp-evernote\":false},[\"background:#2dbe60\",\"border-color:#23954b\"]],[false,{\"div.swp-evernote a\":false},[\"color:#2dbe60\"]],[false,{\"div.swp-evernote a:hover\":false},[\"background:#23954b\",\"color:#fff\"]],[false,{\"div.swp-facebook\":false},[\"background:#1877f2\",\"border-color:#0b5fcc\"]],[false,{\"div.swp-facebook a\":false},[\"color:#1877f2\"]],[false,{\"div.swp-facebook a:hover\":false},[\"background:#0b5fcc\",\"color:#fff\"]],[false,{\"div.swp-flickr\":false},[\"background:#ff0084\",\"border-color:#cc006a\"]],[false,{\"div.swp-flickr a\":false},[\"color:#ff0084\"]],[false,{\"div.swp-flickr a:hover\":false},[\"background:#cc006a\",\"color:#fff\"]],[false,{\"div.swp-flipboard\":false},[\"background:#bf2626\",\"border-color:#941e1e\"]],[false,{\"div.swp-flipboard a\":false},[\"color:#bf2626\"]],[false,{\"div.swp-flipboard a:hover\":false},[\"background:#941e1e\",\"color:#fff\"]],[false,{\"div.swp-hacker_news\":false},[\"background:#d85623\",\"border-color:#ac451c\"]],[false,{\"div.swp-hacker_news a\":false},[\"color:#d85623\"]],[false,{\"div.swp-hacker_news a:hover\":false},[\"background:#ac451c\",\"color:#fff\"]],[false,{\"div.swp-instagram\":false},[\"background:#ea2454\",\"border-color:#c8133f\"]],[false,{\"div.swp-instagram a\":false},[\"color:#ea2454\"]],[false,{\"div.swp-instagram a:hover\":false},[\"background:#c8133f\",\"color:#fff\"]],[false,{\"div.swp-linkedin\":false},[\"background:#2767b1\",\"border-color:#1e4f87\"]],[false,{\"div.swp-linkedin a\":false},[\"color:#2767b1\"]],[false,{\"div.swp-linkedin a:hover\":false},[\"background:#1e4f87\",\"color:#fff\"]],[false,{\"div.swp-medium\":false},[\"background:#00ab6c\",\"border-color:#00784c\"]],[false,{\"div.swp-medium a\":false},[\"color:#00ab6c\"]],[false,{\"div.swp-medium a:hover\":false},[\"background:#00784c\",\"color:#fff\"]],[false,{\"div.swp-mix\":false},[\"background:#f4812c\",\"border-color:#e1660c\"]],[false,{\"div.swp-mix a\":false},[\"color:#f4812c\"]],[false,{\"div.swp-mix a:hover\":false},[\"background:#e1660c\",\"color:#fff\"]],[false,{\"div.swp-more\":false},[\"background:#ee464f\",\"border-color:#ea1723\"]],[false,{\"div.swp-more a\":false},[\"color:#ee464f\"]],[false,{\"div.swp-more a:hover\":false},[\"background:#ea1723\",\"color:#fff\"]],[false,{\"div.swp-parler\":false},[\"background:#be1e2c\",\"border-color:#921722\"]],[false,{\"div.swp-parler a\":false},[\"color:#be1e2c\"]],[false,{\"div.swp-parler a:hover\":false},[\"background:#921722\",\"color:#fff\"]],[false,{\"div.swp-periscope\":false},[\"background:#3aa4c6\",\"border-color:#2e849f\"]],[false,{\"div.swp-periscope a\":false},[\"color:#3aa4c6\"]],[false,{\"div.swp-periscope a:hover\":false},[\"background:#2e849f\",\"color:#fff\"]],[false,{\"div.swp-pinterest\":false},[\"background:#e60023\",\"border-color:#b3001b\"]],[false,{\"div.swp-pinterest a\":false},[\"color:#e60023\"]],[false,{\"div.swp-pinterest a:hover\":false},[\"background:#b3001b\",\"color:#fff\"]],[false,{\"div.swp-pocket\":false},[\"background:#ef4056\",\"border-color:#e9132e\"]],[false,{\"div.swp-pocket a\":false},[\"color:#ef4056\"]],[false,{\"div.swp-pocket a:hover\":false},[\"background:#e9132e\",\"color:#fff\"]],[false,{\"div.swp-print\":false},[\"background:#777\",\"border-color:#5e5e5e\"]],[false,{\"div.swp-print a\":false},[\"color:#777\"]],[false,{\"div.swp-print a:hover\":false},[\"background:#5e5e5e\",\"color:#fff\"]],[false,{\"div.swp-reddit\":false},[\"background:#f04b23\",\"border-color:#d2340e\"]],[false,{\"div.swp-reddit a\":false},[\"color:#f04b23\"]],[false,{\"div.swp-reddit a:hover\":false},[\"background:#d2340e\",\"color:#fff\"]],[false,{\"div.swp-snapchat\":false},[\"background:#fffc00\",\"border-color:#ccca00\"]],[false,{\"div.swp-snapchat a\":false},[\"color:#fffc00\"]],[false,{\"div.swp-snapchat a:hover\":false},[\"background:#ccca00\",\"color:#fff\"]],[false,{\"div.swp-telegram\":false},[\"background:#08c\",\"border-color:#069\"]],[false,{\"div.swp-telegram a\":false},[\"color:#08c\"]],[false,{\"div.swp-telegram a:hover\":false},[\"background:#069\",\"color:#fff\"]],[false,{\"div.swp-twitter\":false},[\"background:#1da1f2\",\"border-color:#0c85d0\"]],[false,{\"div.swp-twitter a\":false},[\"color:#1da1f2\"]],[false,{\"div.swp-twitter a:hover\":false},[\"background:#0c85d0\",\"color:#fff\"]],[false,{\"div.swp-tumblr\":false},[\"background:#39475d\",\"border-color:#262f3d\"]],[false,{\"div.swp-tumblr a\":false},[\"color:#39475d\"]],[false,{\"div.swp-tumblr a:hover\":false},[\"background:#262f3d\",\"color:#fff\"]],[false,{\"div.swp-vimeo\":false},[\"background:#162221\",\"border-color:#020303\"]],[false,{\"div.swp-vimeo a\":false},[\"color:#162221\"]],[false,{\"div.swp-vimeo a:hover\":false},[\"background:#020303\",\"color:#fff\"]],[false,{\"div.swp-viber\":false},[\"background:#8f5db7\",\"border-color:#75459c\"]],[false,{\"div.swp-viber a\":false},[\"color:#8f5db7\"]],[false,{\"div.swp-viber a:hover\":false},[\"background:#75459c\",\"color:#fff\"]],[false,{\"div.swp-vk\":false},[\"background:#4a76a8\",\"border-color:#3a5d85\"]],[false,{\"div.swp-vk a\":false},[\"color:#4a76a8\"]],[false,{\"div.swp-vk a:hover\":false},[\"background:#3a5d85\",\"color:#fff\"]],[false,{\"div.swp-whatsapp\":false},[\"background:#71c169\",\"border-color:#52af48\"]],[false,{\"div.swp-whatsapp a\":false},[\"color:#71c169\"]],[false,{\"div.swp-whatsapp a:hover\":false},[\"background:#52af48\",\"color:#fff\"]],[false,{\"div.swp-xing\":false},[\"background:#026466\",\"border-color:#013334\"]],[false,{\"div.swp-xing a\":false},[\"color:#026466\"]],[false,{\"div.swp-xing a:hover\":false},[\"background:#013334\",\"color:#fff\"]],[false,{\"div.swp-yummly\":false},[\"background:#e26426\",\"border-color:#bc4f19\"]],[false,{\"div.swp-yummly a\":false},[\"color:#e26426\"]],[false,{\"div.swp-yummly a:hover\":false},[\"background:#bc4f19\",\"color:#fff\"]],[false,{\".swfw-follow-button\":false,\".swfw_square_button\":false,\".swfw_buttons_button\":false,\".swfw_block_button\":false,\".swfw-follow-button.swfw_leaf_button\":false,\".swfw-follow-button.swfw_pill_button\":false,\".swfw-follow-button.swfw_shift_button\":false},[\"align-items:center\",\"border-radius:8px\",\"display:flex\",\"color:white\",\"font-family:\\\"Helvetica\\\",sans-serif\",\"font-size:initial\",\"justify-content:space-between\",\"line-height:1\",\"margin-bottom:10px\",\"padding:15px 5%\",\"width:90%\"]],[false,{\".swfw-follow-button.swp-snapchat\":false,\".swp-snapchat.swfw_square_button\":false,\".swp-snapchat.swfw_buttons_button\":false,\".swp-snapchat.swfw_block_button\":false,\".swfw-follow-button.swp-snapchat a\":false,\".swp-snapchat.swfw_square_button a\":false,\".swp-snapchat.swfw_buttons_button a\":false,\".swp-snapchat.swfw_block_button a\":false},[\"color:black\"]],[false,{\".swfw-follow-button a\":false,\".swfw_square_button a\":false,\".swfw_buttons_button a\":false,\".swfw_block_button a\":false,\".swfw-follow-button.swfw_leaf_button a\":false,\".swfw-follow-button.swfw_pill_button a\":false,\".swfw-follow-button.swfw_shift_button a\":false},[\"background:#fff\",\"border-radius:4px\",\"transition:all .2s ease-in-out\"]],[false,{\".swfw-follow-button a :hover\":false,\".swfw_square_button a :hover\":false,\".swfw_buttons_button a :hover\":false,\".swfw_block_button a :hover\":false},[\"color:white\"]],[false,{\".swfw-follow-button a :hover.swp-snapchat\":false,\".swfw_square_button a :hover.swp-snapchat\":false,\".swfw_buttons_button a :hover.swp-snapchat\":false,\".swfw_block_button a :hover.swp-snapchat\":false},[\"color:black\"]],[false,{\".swfw-follow-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_square_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_block_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_leaf_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_pill_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_shift_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw-follow-button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw-follow-button .swfw-count:not(#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-count:not(#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-count:not(#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-count:not(#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\".swfw-follow-button .swfw-network-icon i\":false,\".swfw_square_button .swfw-network-icon i\":false,\".swfw_buttons_button .swfw-network-icon i\":false,\".swfw_block_button .swfw-network-icon i\":false},[\"width:32px\",\"height:32px\",\"border-radius:100px\",\"font-size:24px\",\"line-height:32px\"]],[false,{\".swfw-follow-button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\".swfw_square_button\":false},[\"width:60px\",\"height:60px\",\"position:relative\",\"display:flex\",\"flex-flow:column nowrap\",\"align-items:center\",\"text-align:center\",\"margin:5px\",\"padding:0\",\"justify-content:center\",\"border-radius:4px\"]],[false,{\".swfw_square_button .swfw-network-icon\":false},[\"margin-top:-12px\"]],[false,{\".swfw_square_button .swfw-text\":false},[\"width:100%\"]],[false,{\".swfw_square_button .swfw-cta\":false,\".swfw_square_button .swfw-count\":false},[\"display:block\",\"width:100%\",\"position:absolute\"]],[false,{\".swfw_square_button .swfw-count\":false},[\"opacity:1\",\"transition:opacity 120ms 0\",\"font-size:12px\"]],[false,{\".swfw_square_button .swfw-cta\":false},[\"opacity:0\",\"transition:opacity 120ms 0\",\"font-size:12px\"]],[false,{\".swfw_square_button:hover .swfw-count\":false},[\"opacity:0\",\"transition:opacity 120ms 120ms\"]],[false,{\".swfw_square_button:hover .swfw-cta\":false},[\"opacity:1\",\"transition:opacity 120ms 120ms\"]],[false,{\".swfw_buttons_button\":false},[\"display:flex\",\"flex-flow:row nowrap\",\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\",\"margin:10px 5px\",\"border-radius:4px\",\"padding:5px 15px\",\"color:white\"]],[false,{\".swfw_buttons_button .swfw-network-icon\":false},[\"padding:0\",\"font-size:32px\"]],[false,{\".swfw_buttons_button .swfw-text\":false},[\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\",\"margin:0 10px\",\"transition:margin 300ms\",\"display:flex\",\"justify-content:center\",\"line-height:32px\",\"color:white\"]],[false,{\".swfw_buttons_button .swfw-text .swfw-cta\":false,\".swfw_buttons_button .swfw-text .swfw-count\":false},[\"display:inline\",\"position:relative\",\"transition:all 300ms\"]],[false,{\".swfw_buttons_button .swfw-text .swfw-cta\":false},[\"width:0\",\"overflow-x:hidden\",\"position:absolute\",\"color:transparent\",\"margin-right:0\",\"font-weight:normal\"]],[false,{\".swfw_buttons_button .swfw-text:hover .swfw-cta\":false},[\"color:white\"]],[false,{\".swfw_buttons_button.swp-snapchat .swfw-text\":false},[\"color:black\"]],[false,{\".swfw_buttons_button.swp-snapchat .swfw-text:hover .swfw-cta\":false},[\"color:black\"]],[false,{\".swfw_buttons_button:hover .swfw-text\":false},[\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\"]],[false,{\".swfw_buttons_button:hover .swfw-text .swfw-cta\":false},[\"width:-moz-min-content\",\"width:-webkit-min-content\",\"width:min-content\",\"overflow-x:visible\",\"position:relative\",\"margin-right:10px\",\"color:white\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_pill_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_shift_button .swfw-network-icon\":false},[\"margin-left:10px\",\"flex:1\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-text\":false,\".swfw-follow-button.swfw_pill_button .swfw-text\":false,\".swfw-follow-button.swfw_shift_button .swfw-text\":false},[\"flex:2\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button\":false},[\"flex:1\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a\":false},[\"padding:none\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a div\":false},[\"padding:10px 30px\",\"background:white\",\"border-radius:2px\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a:hover div\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a:hover div\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a:hover div\":false},[\"background:rgba(33,33,33,.3)\"]],[false,{\".swfw_block_button\":false,\".swfw-follow-button.swfw_leaf_button\":false,\".swfw-follow-button.swfw_pill_button\":false,\".swfw-follow-button.swfw_shift_button\":false},[\"flex-flow:row nowrap\",\"align-items:center\",\"justify-content:space-between\",\"cursor:initial\",\"position:relative\"]],[false,{\".swfw_block_button>*\":false,\".swfw-follow-button.swfw_leaf_button>*\":false,\".swfw-follow-button.swfw_pill_button>*\":false,\".swfw-follow-button.swfw_shift_button>*\":false},[\"width:-moz-min-content\",\"width:-webkit-min-content\",\"width:min-content\"]],[false,{\".swfw_block_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_leaf_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_pill_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_shift_button .swfw-network-icon\":false},[\"margin-left:10px\"]],[false,{\".swfw_block_button .swfw-text\":false,\".swfw-follow-button.swfw_leaf_button .swfw-text\":false,\".swfw-follow-button.swfw_pill_button .swfw-text\":false,\".swfw-follow-button.swfw_shift_button .swfw-text\":false},[\"font-size:12px\",\"line-height:24px\",\"left:calc(10px + 60px)\",\"color:white\",\"text-align:center\"]],[false,{\".swfw_block_button .swfw-text .swfw-count\":false,\".swfw-follow-button.swfw_leaf_button .swfw-text .swfw-count\":false,\".swfw-follow-button.swfw_pill_button .swfw-text .swfw-count\":false,\".swfw-follow-button.swfw_shift_button .swfw-text .swfw-count\":false},[\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\",\"font-size:15px\"]],[false,{\".swfw_block_button.swp-snapchat .swfw-text\":false,\".swp-snapchat.swfw-follow-button.swfw_leaf_button .swfw-text\":false,\".swp-snapchat.swfw-follow-button.swfw_pill_button .swfw-text\":false,\".swp-snapchat.swfw-follow-button.swfw_shift_button .swfw-text\":false},[\"color:black\"]],[false,{\".swfw_block_button .swfw-cta\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta\":false},[\"border-radius:3px\"]],[false,{\".swfw_block_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button\":false},[\"font-size:24px\",\"padding:5px\",\"line-height:24px\",\"border-radius:4px\",\"text-align:center\",\"right:0\"]],[false,{\".swfw_block_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\".swfw_block_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a div\":false},[\"font-size:14px\",\"min-width:100px\",\"border-radius:3px\",\"background:white\",\"padding:5px 15px\"]],[false,{\".swfw_block_button .swfw-cta-button a div:hover\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a div:hover\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a div:hover\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a div:hover\":false},[\"transition:opacity 200ms\",\"background:rgba(30,30,30,.3)\",\"cursor:pointer\",\"color:white\"]],[false,{\".swfw_leaf_button.swfw_square_button\":false,\".swfw_leaf_button.swfw_buttons_button\":false,\".swfw_leaf_button.swfw_block_button\":false,\".swfw_leaf_button.swfw-follow-button\":false},[\"border-top-left-radius:21px\",\"border-top-right-radius:3px\",\"border-bottom-left-radius:3px\",\"border-bottom-right-radius:21px\"]],[false,{\".swfw_leaf_button.swfw_square_button .swfw-network-icon\":false,\".swfw_leaf_button.swfw_buttons_button .swfw-network-icon\":false,\".swfw_leaf_button.swfw_block_button .swfw-network-icon\":false,\".swfw_leaf_button.swfw-follow-button .swfw-network-icon\":false},[\"margin-left:10px\"]],[false,{\".swfw_pill_button.swfw_square_button\":false,\".swfw_pill_button.swfw_buttons_button\":false,\".swfw_pill_button.swfw_block_button\":false,\".swfw_pill_button.swfw-follow-button\":false},[\"border-radius:50px\",\"padding:20px\"]],[false,{\".swfw_pill_button.swfw_square_button .swfw-network-icon\":false,\".swfw_pill_button.swfw_buttons_button .swfw-network-icon\":false,\".swfw_pill_button.swfw_block_button .swfw-network-icon\":false,\".swfw_pill_button.swfw-follow-button .swfw-network-icon\":false},[\"margin-left:10px\"]],[false,{\".swfw_pill_button.swfw_square_button .swfw-cta-button a\":false,\".swfw_pill_button.swfw_buttons_button .swfw-cta-button a\":false,\".swfw_pill_button.swfw_block_button .swfw-cta-button a\":false,\".swfw_pill_button.swfw-follow-button .swfw-cta-button a\":false},[\"border-radius:50px\"]],[false,{\".swfw_pill_button.swfw_square_button .swfw-cta-button a div\":false,\".swfw_pill_button.swfw_buttons_button .swfw-cta-button a div\":false,\".swfw_pill_button.swfw_block_button .swfw-cta-button a div\":false,\".swfw_pill_button.swfw-follow-button .swfw-cta-button a div\":false},[\"border-radius:50px\"]],[false,{\".swfw_shift_button.swfw_square_button\":false,\".swfw_shift_button.swfw_buttons_button\":false,\".swfw_shift_button.swfw_block_button\":false,\".swfw_shift_button.swfw-follow-button\":false},[\"transform:skew(-20deg)\",\"-moz-transform:skew(-20deg)\",\"-o-transform:skew(-20deg)\",\"-webkit-transform:skew(-20deg)\"]],[false,{\".swfw_shift_button.swfw_square_button div\":false,\".swfw_shift_button.swfw_buttons_button div\":false,\".swfw_shift_button.swfw_block_button div\":false,\".swfw_shift_button.swfw-follow-button div\":false},[\"transform:skew(20deg)\",\"-moz-transform:skew(20deg)\",\"-o-transform:skew(20deg)\",\"-webkit-transform:skew(20deg)\",\"align-items:center\",\"display:flex\",\"justify-content:space-around\",\"width:100%\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button\":false},[\"transform:skew(0deg)\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a\":false},[\"padding:none\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a:hover\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a:hover\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a:hover\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a:hover\":false},[\"background:rgba(33,33,33,.3)\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a div\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a div\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a div\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a div\":false},[\"background:none\",\"transform:skew(20deg)\",\"padding:10px 30px\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a div:hover\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a div:hover\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a div:hover\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a div:hover\":false},[\"background:none\"]],[false,{\".swfw-revoke-button\":false,\".swfw-authorization-button\":false},[\"width:70%\",\"text-align:center\",\"max-width:200px\"]],[false,{\".swfw-input-field\":false,\".swfw-follow-field\":false},[\"display:flex\",\"flex-flow:row nowrap\",\"justify-content:space-between\",\"align-items:center\",\"height:50px\",\"margin:15px auto\"]],[false,{\".swfw-follow-field.swfw-inactive a\":false},[\"cursor:initial\"]],[false,{\".swfw-follow-field.swfw-active a\":false},[\"cursor:pointer\"]],[false,{\".swfw-follow-field-icon\":false},[\"color:black\",\"width:40px\",\"font-size:40px\",\"line-height:42px\",\"font-weight:bold\",\"transition:all 200ms\",\"border-radius:3px\",\"height:40px\",\"text-align:center\",\"padding:2px\"]],[false,{\".swfw-widget label\":false},[\"font-size:14px\",\"width:100px\"]],[false,{\".swfw-follow-field label\":false},[\"text-align:right\"]],[false,{\".swfw-input-field input\":false,\".swfw-input-field select\":false,\".swfw-follow-field input\":false},[\"padding:10px\",\"width:50%\",\"height:100%\",\"border-radius:4px\"]],[false,{\".swfw-follow-field.swfw-inactive div\":false},[\"background:white\"]],[false,{\".swfw-follow-field.swfw-active div\":false},[\"color:white\"]],[false,{\"a.swp-hover-pin-button\":false},[\"background:#cd2029\",\"border:1px solid #aa1b29\",\"border:0\",\"border-bottom:none\",\"border-radius:3px\",\"box-shadow:none\",\"color:#fff\",\"font-family:Lato,sans-serif\",\"font-size:15px\",\"height:32px\",\"line-height:32px\",\"padding:0 20px\",\"position:absolute\",\"position:absolute\",\"text-decoration:none\",\"text-align:center\",\"transition:opacity .5s\",\"z-index:3200\",\"cursor:pointer\"]],[false,{\"a.swp-hover-pin-button:not(#_#_#_#_#_#_#_#_)\":false},[\"width:120px\"]],[false,{\"a.swp-hover-pin-button::before\":false},[\"content:\\\"A\\\"\",\"color:#fff\",\"float:left\",\"font-family:sw-icon-font\",\"font-size:20px\",\"font-weight:400\",\"line-height:36px\",\"margin-left:-5px\",\"margin-right:10px\"]],[false,{\"a.swp-hover-pin-button:hover::before\":false},[\"content:\\\"z\\\"\"]],[false,{\"a.swp-hover-pin-button:hover\":false,\"a.swp-hover-pin-button:focus\":false},[\"background:#aa1b29\",\"color:#fff\",\"text-decoration:none\"]],[false,{\".swp-pinterest-image-top\":false},[\"margin-bottom:20px\"]],[false,{\".swp-pinterest-image-bottom\":false},[\"margin-top:20px\"]],[false,{\".swp_pop_thumb\":false},[\"border-radius:3px\",\"float:left\",\"height:100px\",\"margin:5px 25px 5px 0\",\"width:100px\"]],[false,{\".swp_popular_post\":false},[\"clear:both\"]],[false,{\".swp_popular_post a.swp_popularity\":false},[\"border:none\",\"display:block\",\"line-height:1.5\",\"margin:20px 0\"]],[false,{\".swp_clearfix:after\":false},[\"clear:both\",\"content:\\\" \\\"\",\"display:block\",\"height:0\",\"visibility:hidden\"]],[false,{\"span.swp_pop_count\":false},[\"display:block\",\"font-size:70%\"]],[false,{\".swp_widget_box\":false},[\"border-radius:3px\"]],[false,{\".swp_hidden_pin_image\":false},[\"height:0\",\"opacity:0\",\"position:absolute\",\"top:0\",\"width:0\",\"z-index:-10\"]],[false,{\".swp-content-locator:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"margin:0\"]],[false,{\".swp-lightbox-wrapper\":false},[\"width:100%\",\"height:100%\",\"position:fixed\",\"top:0\",\"background:#fff\",\"z-index:999999\"]],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner\":false},[\"width:50%\",\"left:25%\",\"position:relative\",\"text-align:center\",\"top:10%\",\"background:#fff\",\"padding:35px\",\"border-radius:10px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner\":false},[\"width:80%\",\"left:10%\"]],[false,\"}\"],[false,\"@media (max-width: 450px){\"],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner\":false},[\"width:90%\",\"left:5%\"]],[false,\"}\"],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner h5\":false},[\"font-family:Lato,sans-serif\",\"font-size:25px\",\"margin-bottom:40px\",\"text-align:center\"]],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner .swp-lightbox-close\":false},[\"font-weight:bold\",\"height:20px\",\"width:20px\",\"cursor:pointer\",\"color:#30394f\",\"text-align:right\",\"transform:rotate(45deg)\",\"display:inline-block\",\"float:right\",\"margin:-30px\",\"font-size:25px\"]],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner .swp-lightbox-close:before\":false},[\"content:\\\"+\\\"\",\"font-family:arial\"]],[false,\"@media print{\"],[false,{\".swp-lightbox-wrapper\":false},[\"display:none\"]],[false,\"}\"],[false,{\".swp-lightbox-wrapper .swp_pinterest_icon.top_icon\":false,\".swp-lightbox-wrapper .swp_share_icon\":false},[\"color:#cd2029\",\"font-size:45px\",\"margin:0\",\"padding:0\",\"line-height:0\"]],[false,{\".swp-lightbox-wrapper .swp_share_icon\":false},[\"color:#000\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .swp-lightbox-inner\":false},[\"width:70%\",\"left:15%\",\"height:80%\",\"overflow-y:auto\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .swp-lightbox-inner h5\":false},[\"margin-bottom:40px\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper\":false},[\"text-align:center\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper\":false},[\"display:inline-block\",\"width:24%\",\"margin-right:1%\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper amp-img\":false,\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper amp-anim\":false},[\"border-radius:3px\",\"max-width:100%\",\"height:auto\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper .swp-hover-pin-button\":false},[\"position:initial\",\"display:block\",\"margin-top:10px\",\"margin-bottom:40px\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper .swp-hover-pin-button:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":8320,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"__EPYT__style-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/styles\\/ytprefs.min.css?ver=14.1.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"style\",\"handle\":\"__EPYT__style\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"__EPYT__style\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"9c3e04efd2df5c19054e5b96b851efb8\",\"parse_time\":0.0915369987487793,\"shake_time\":0.00011897087097167969,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".epyt-debug\":false},[\"cursor:pointer\",\"text-align:left\",\"background-color:#ddd\",\"color:#000\"]],[false,{\"amp-iframe.__youtube_prefs__\":false},[\"border-width:0\"]],[false,{\".epyt-gallery\":false},[\"text-align:center\"]],[false,{\".epyt-gallery .epyt-figure\":false},[\"margin-inline:0\",\"margin-block:0\"]],[false,{\".epyt-gallery amp-iframe\":false},[\"margin-bottom:0\"]],[false,{\".epyt-gallery.epyt-lb amp-iframe\":false},[\"display:none\"]],[false,{\".epyt-gallery.epyt-lb amp-iframe:not(#_#_#_#_#_#_#_#_)\":false},[\"height:0\"]],[false,{\".epyt-gallery-list\":false},[\"margin:0 -8px 0 -8px\",\"position:relative\",\"transition:opacity ease-out .3s\",\"display:block\"]],[false,{\".epyt-gallery-list .epyt-gallery-thumb\":false},[\"box-sizing:border-box\"]],[false,{\".epyt-gallery-list p\":false},[\"display:none\"]],[false,{\".epyt-gallery-clear\":false},[\"clear:both\"]],[false,{\".epyt-gallery-list.epyt-loading\":false},[\"opacity:.5\",\"transition:opacity ease-out .3s\"]],[false,{\".epyt-gallery-thumb\":false},[\"position:relative\",\"box-sizing:border-box\",\"overflow-y:hidden\",\"cursor:pointer\",\"opacity:1\",\"float:left\",\"padding:0 8px 10px 8px\",\"height:auto\"]],[false,{\".epyt-gallery-thumb:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".epyt-gallery-thumb.hover\":false},[\"position:relative\",\"opacity:1\",\"transition:opacity ease-out .3s\",\"height:auto\"]],[false,{\".epyt-gallery-img-box\":false},[\"width:100%\"]],[false,{\".epyt-gallery-img\":false},[\"height:0\",\"width:100%\",\"position:relative\"]],[false,{\".epyt-gallery-img:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:56.25%\",\"overflow:hidden\",\"background-size:cover\",\"background-position:center\"]],[false,{\".epyt-gallery-playhover\":false},[\"opacity:0\",\"position:absolute\",\"top:-10px\",\"left:0\",\"width:100%\",\"height:100%\",\"vertical-align:middle\",\"text-align:center\",\"transition:opacity ease-out .3s\"]],[false,{\".epyt-gallery-thumb.hover .epyt-gallery-playhover\":false,\".epyt-gallery-thumb.epyt-current-video .epyt-gallery-playhover\":false},[\"opacity:1\",\"top:0\",\"transition:all ease-out .3s\"]],[false,{\".epyt-gallery-thumb .epyt-gallery-playcrutch\":false},[\"display:inline-block\",\"height:100%\",\"vertical-align:middle\",\"width:0\"]],[false,{\".epyt-gallery-playhover .epyt-play-img\":false},[\"width:auto\",\"border:0\",\"box-sizing:border-box\"]],[false,{\".epyt-gallery-playhover .epyt-play-img:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\",\"max-width:15%\",\"padding:0\",\"margin:0\",\"min-width:30px\",\"vertical-align:middle\",\"display:inline-block\"]],[false,{\".epyt-gallery-title\":false},[\"font-size:80%\",\"line-height:120%\",\"padding:10px\"]],[false,{\".epyt-gallery-notitle\":false},[\"padding:4px\"]],[false,{\".epyt-gallery-notitle span\":false},[\"display:none\"]],[false,{\".epyt-gallery-rowtitle\":false},[\"text-align:center\",\"width:100%\",\"position:absolute\",\"left:0\",\"top:100%\",\"opacity:0\",\"z-index:10\",\"overflow-x:hidden\",\"text-overflow:ellipsis\",\"white-space:nowrap\"]],[false,{\".epyt-gallery-rowtitle.hover\":false},[\"opacity:1\",\"transition:opacity linear .2s\"]],[false,{\".epyt-gallery-rowbreak\":false},[\"clear:both\"]],[false,{\".epyt-pagination\":false},[\"clear:both\",\"text-align:center\",\"padding:10px 8px 10px 8px\"]],[false,{\".epyt-pagination.epyt-hide-pagination *:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".epyt-pagination>div\":false,\".epyt-pagenumbers>div\":false},[\"display:inline-block\",\"padding:0 2px 0 2px\",\"vertical-align:middle\"]],[false,{\".epyt-pagination .epyt-pagebutton\":false},[\"cursor:pointer\",\"display:inline-block\",\"padding:0 10px 0 10px\"]],[false,{\".epyt-pagebutton>div\":false},[\"display:inline\"]],[false,{\".epyt-pagination .epyt-loader\":false},[\"display:none\"]],[false,{\".epyt-gallery-list.epyt-loading .epyt-pagination .epyt-loader\":false},[\"display:inline-block\"]],[false,{\"body .lity-container\":false},[\"width:100%\",\"max-width:964px\"]],[false,{\".epyt-curtain .lity-opened amp-iframe\":false},[\"opacity:0\",\"transition:opacity .3s linear .5s\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-1 .epyt-gallery-thumb\":false},[\"width:100%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-2 .epyt-gallery-thumb\":false},[\"width:50%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-3 .epyt-gallery-thumb\":false},[\"width:33.333%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-4 .epyt-gallery-thumb\":false},[\"width:25%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-5 .epyt-gallery-thumb\":false},[\"width:20%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-6 .epyt-gallery-thumb\":false},[\"width:16.666%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-7 .epyt-gallery-thumb\":false},[\"width:14.285%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-8 .epyt-gallery-thumb\":false},[\"width:12.5%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-9 .epyt-gallery-thumb\":false},[\"width:11.111%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-10 .epyt-gallery-thumb\":false},[\"width:10%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-11 .epyt-gallery-thumb\":false},[\"width:9.09%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-12 .epyt-gallery-thumb\":false},[\"width:8.333%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-13 .epyt-gallery-thumb\":false},[\"width:7.692%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-14 .epyt-gallery-thumb\":false},[\"width:7.142%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-15 .epyt-gallery-thumb\":false},[\"width:6.666%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-16 .epyt-gallery-thumb\":false},[\"width:6.25%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-17 .epyt-gallery-thumb\":false},[\"width:5.882%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-18 .epyt-gallery-thumb\":false},[\"width:5.555%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-19 .epyt-gallery-thumb\":false},[\"width:5.263%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-20 .epyt-gallery-thumb\":false},[\"width:5%\"]],[false,{\".epyt-pagebutton.hide:not(#_#_#_#_#_#_#_)\":false,\".epyt-pagenumbers.hide:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"opacity:0\",\"visibility:hidden\"]],[false,{\".epyt-gallery-subscribe\":false},[\"text-align:center\",\"padding:15px 0 10px 0\",\"clear:both\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton:hover\":false},[\"display:inline-block\",\"padding:5px 10px\",\"border-radius:3px\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton:not(#_#_#_#_#_#_#_#_)\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#e62117\",\"color:#fff\",\"text-decoration:none\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-img\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-anim\":false},[\"padding:0 6px 3px 0\",\"display:inline-block\",\"background:transparent\",\"-webkit-box-shadow:none\",\"box-shadow:none\",\"margin:0\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:20px\",\"height:auto\",\"vertical-align:middle\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__\":false},[\"background-color:#000\",\"background-image:-webkit-linear-gradient(top,#000,#444)\",\"background-image:linear-gradient(to bottom,#000,#444)\",\"padding:25px\",\"height:auto\",\"text-align:left\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ *:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#e3e3e3\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ a\":false},[\"text-decoration:underline\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:hover\":false},[\"display:inline-block\",\"padding:5px 10px\",\"border-radius:3px\",\"font-weight:normal\",\"border-width:0\",\"box-sizing:border-box\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:not(#_#_#_#_#_#_#_#_)\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#e62117\",\"color:#fff\",\"text-decoration:none\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-img\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-anim\":false},[\"padding:0 6px 3px 0\",\"display:inline-block\",\"background:transparent\",\"-webkit-box-shadow:none\",\"box-shadow:none\",\"margin-left:8px\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-img:not(#_#_#_#_#_#_#_#_)\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:20px\",\"height:auto\",\"vertical-align:middle\"]],[false,{\"body .epyt-gallery-img-gdpr\":false},[\"background-color:#000\",\"background-image:-webkit-linear-gradient(top,#000,#444)\",\"background-image:linear-gradient(to bottom,#000,#444)\"]],[false,{\".epyt-facade\":false},[\"position:relative\",\"padding-bottom:56.25%\",\"height:0\",\"overflow:hidden\",\"max-width:100%\",\"-webkit-transition:.4s all\",\"-moz-transition:.4s all\",\"transition:.4s all\"]],[false,{\".epyt-facade:hover\":false},[\"-webkit-filter:brightness(90%)\",\"-moz-filter:brightness(90%)\",\"filter:brightness(90%)\"]],[false,{\".epyt-facade amp-img.epyt-facade-poster\":false,\".epyt-facade amp-anim.epyt-facade-poster\":false},[\"display:block\",\"margin:0\",\"max-width:100%\",\"width:100%\",\"position:absolute\",\"top:50%\",\"left:50%\",\"transform:translate(-50%,-50%)\",\"border:0\",\"height:auto\",\"cursor:pointer\"]],[false,{\".epyt-facade button.epyt-facade-play\":false},[\"position:absolute\",\"left:50%\",\"top:50%\",\"width:68px\",\"height:48px\",\"margin-left:-34px\",\"margin-top:-24px\",\"-webkit-transition:opacity .25s cubic-bezier(0,0,.2,1)\",\"transition:opacity .25s cubic-bezier(0,0,.2,1)\",\"cursor:pointer\"]],[false,{\".epyt-facade button.epyt-facade-play:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:transparent\",\"border-width:0\"]],[false,{\".epyt-facade button.epyt-facade-play svg\":false},[\"height:100%\",\"left:0\",\"position:absolute\",\"top:0\",\"width:100%\",\"pointer-events:none\"]],[false,{\".epyt-facade button.epyt-facade-play svg .ytp-large-play-button-bg\":false},[\"-webkit-transition:fill .1s cubic-bezier(.4,0,1,1),fill-opacity .1s cubic-bezier(.4,0,1,1)\",\"transition:fill .1s cubic-bezier(.4,0,1,1),fill-opacity .1s cubic-bezier(.4,0,1,1)\",\"fill:#212121\",\"fill-opacity:.8\"]],[false,{\".epyt-facade:hover button.epyt-facade-play svg .ytp-large-play-button-bg\":false},[\"-webkit-transition:fill .1s cubic-bezier(0,0,.2,1),fill-opacity .1s cubic-bezier(0,0,.2,1)\",\"transition:fill .1s cubic-bezier(0,0,.2,1),fill-opacity .1s cubic-bezier(0,0,.2,1)\",\"fill:#f00\",\"fill-opacity:1\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.epyt-facade\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\"]],[false,{\".wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.__youtube_prefs_gdpr__\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.__youtube_prefs_gdpr__\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"overflow-y:auto\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper.epyt-is-override__wrapper:before\":false},[\"padding:0\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper.epyt-is-override__wrapper .epyt-is-override.__youtube_prefs_gdpr__\":false},[\"position:relative\",\"top:unset\",\"right:unset\",\"bottom:unset\",\"left:unset\"]],[false,{\".ytvi-story-container\":false},[\"display:block\",\"max-width:100%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":81,\"final_size\":0,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"__EPYT__style-inline-css\",\"type\":\"text\\/css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"\\r\\n .epyt-gallery-thumb {\\r\\n width: 33.333%;\\r\\n }\\r\\n \",\"handle\":\"__EPYT__style\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"\\r\\n .epyt-gallery-thumb {\\r\\n width: 33.333%;\\r\\n }\\r\\n \",\"handle\":\"__EPYT__style\"}],\"priority\":70,\"hash\":\"c0787a0c009a93e8e21ea0b9ce09b54f\",\"parse_time\":0.0006740093231201172,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".epyt-gallery-thumb\":false},[\"width:33.333%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":323,\"final_size\":64,\"element\":{\"name\":\"style\",\"attributes\":{\"type\":\"text\\/css\",\"id\":\"wp-custom-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"theme.php\",\"line\":1824,\"function\":\"wp_custom_css_cb\",\"hook\":\"wp_head\",\"priority\":101}],\"priority\":60,\"hash\":\"ed93f9bffe93712a600c426300d64207\",\"parse_time\":0.002050161361694336,\"shake_time\":1.4066696166992188e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".tek-ai\":false},[\"height:auto\"]],[false,{\".tek-ai amp-img\":false,\".tek-ai amp-anim\":false},[\"max-height:570px\"]],[false,{\".tek-ai amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".tek-ai amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[false,\"@media (max-width:992px){\"],[false,{\".tek-ai\":false},[\"height:auto\"]],[false,{\".tek-ai:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width: 1400px){\"],[false,{\".tek-ai\":false},[\"height:auto\"]],[false,\"}\"],[true,{\".footer-2022__menu--list.footer_links:nth-child(4)\":true},[\"display:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":57925,\"final_size\":6783,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"rs-plugin-settings-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/rs6.css?ver=6.5.23\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":134,\"function\":\"RevSliderFront::add_inline_css\",\"hook\":\"wp_footer\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"rs-plugin-settings\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}],\"priority\":30,\"hash\":\"4a682d94bb410f9ebfc91fae35d45117\",\"parse_time\":0.7066469192504883,\"shake_time\":0.0009751319885253906,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.eot?5510888#iefix\"],\"shaken_tokens\":[[false,{\".rs-p-wp-fix:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"margin:0\",\"height:0px\"]],[false,{\".wp-block-themepunch-revslider\":false},[\"position:relative\"]],[false,{\"rs-modal:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"z-index:9999999\",\"pointer-events:none\"]],[false,{\"rs-modal.rs-modal-auto\":false},[\"top:auto\",\"bottom:auto\",\"left:auto\",\"right:auto\"]],[false,{\"rs-modal.rs-modal-fullwidth\":false,\"rs-modal.rs-modal-fullscreen\":false},[\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\"]],[false,{\"rs-modal rs-fullwidth-wrap\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"height:100%\"]],[false,{\"rs-module-wrap.rs-modal\":false},[\"display:none\"]],[false,{\"rs-module-wrap.rs-modal:not(#_#_#_#_#_#_#_#_)\":false},[\"max-height:100%\",\"overflow:auto\",\"pointer-events:auto\"]],[false,{\"rs-module-wrap.hideallscrollbars.rs-modal:not(#_#_#_#_#_#_#_#_)\":false},[\"overflow:hidden\",\"max-width:100%\"]],[false,{\"rs-modal-cover\":false},[\"width:100%\",\"height:100%\",\"z-index:0\",\"background:transparent\",\"position:absolute\",\"top:0px\",\"left:0px\",\"cursor:pointer\",\"pointer-events:auto\"]],[false,{\"body>rs-modal-cover\":false},[\"position:fixed\"]],[false,{\"body>rs-modal-cover:not(#_#_#_#_#_#_#_#_)\":false},[\"z-index:9999995\"]],[false,{\"rs-sbg-px\":false},[\"pointer-events:none\"]],[false,{\".rs-forceuntouchable:not(#_#_#_#_#_#_#_)\":false,\".rs-forceuntouchable *:not(#_#_#_#_#_#_#_)\":false},[\"pointer-events:none\"]],[false,{\".rs-forcehidden *:not(#_#_#_#_#_#_#_)\":false},[\"visibility:hidden\"]],[false,{\".rs_splitted_lines\":false},[\"display:block\"]],[false,{\".rs_splitted_lines:not(#_#_#_#_#_#_#_)\":false},[\"white-space:nowrap\"]],[false,{\".rs-go-fullscreen\":false},[\"background:#fff\"]],[false,{\".rs-go-fullscreen:not(#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\",\"z-index:9999999\"]],[false,{\".rtl\":false},[\"direction:rtl\"]],[true,\"@font-face{font-family:\\\"revicons\\\";src:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.eot?5510888\\\");src:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.eot?5510888#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.woff?5510888\\\") format(\\\"woff\\\"),url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.ttf?5510888\\\") format(\\\"truetype\\\"),url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.svg?5510888#revicons\\\") format(\\\"svg\\\");font-weight:normal;font-style:normal;font-display:swap}\"],[true,{\"[class^=\\\"revicon-\\\"]:before\":true,\"[class*=\\\" revicon-\\\"]:before\":true},[\"font-family:\\\"revicons\\\"\",\"font-style:normal\",\"font-weight:normal\",\"speak:never\",\"speak-as:spell-out\",\"display:inline-block\",\"text-decoration:inherit\",\"width:1em\",\"margin-right:.2em\",\"text-align:center\",\"font-variant:normal\",\"text-transform:none\",\"line-height:1em\",\"margin-left:.2em\"]],[false,{\"rs-module i[class^=\\\"fa-\\\"]\":false,\"rs-module i[class*=\\\" fa-\\\"]\":false,\".rb-modal-wrapper i[class^=\\\"fa-\\\"]\":false,\".rb-modal-wrapper i[class*=\\\" fa-\\\"]\":false,\"#waitaminute i[class^=\\\"fa-\\\"]\":false,\"#waitaminute i[class*=\\\" fa-\\\"]\":false,\"#objectlibrary i[class^=\\\"fa-\\\"]\":false,\"#objectlibrary i[class*=\\\" fa-\\\"]\":false,\"#rs_overview i[class^=\\\"fa-\\\"]\":false,\"#rs_overview i[class*=\\\" fa-\\\"]\":false,\"#rs_overview_menu i[class^=\\\"fa-\\\"]\":false,\"#rs_overview_menu i[class*=\\\" fa-\\\"]\":false,\"#builderView i[class^=\\\"fa-\\\"]\":false,\"#builderView i[class*=\\\" fa-\\\"]\":false},[\"display:inline-block\",\"font:normal normal normal 14px\\/1 FontAwesome\",\"font-size:inherit\",\"text-rendering:auto\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\"]],[false,{\"rs-module [class^=\\\"fa-\\\"]:before\":false,\"rs-module [class*=\\\" fa-\\\"]:before\":false,\".rb-modal-wrapper [class^=\\\"fa-\\\"]:before\":false,\".rb-modal-wrapper [class*=\\\" fa-\\\"]:before\":false,\"#rs_overview [class^=\\\"fa-\\\"]:before\":false,\"#rs_overview [class*=\\\" fa-\\\"]:before\":false,\"#objectlibrary [class^=\\\"fa-\\\"]:before\":false,\"#objectlibrary [class*=\\\" fa-\\\"]:before\":false,\"#waitaminute [class^=\\\"fa-\\\"]:before\":false,\"#waitaminute [class*=\\\" fa-\\\"]:before\":false,\"#rs_overview_menu [class^=\\\"fa-\\\"]:before\":false,\"#rs_overview_menu [class*=\\\" fa-\\\"]:before\":false,\"#builderView [class^=\\\"fa-\\\"]:before\":false,\"#builderView [class*=\\\" fa-\\\"]:before\":false},[\"font-family:FontAwesome\",\"font-style:normal\",\"font-weight:400\",\"speak:never\",\"speak-as:spell-out\",\"display:inline-block\",\"text-decoration:inherit\",\"width:auto\",\"margin-right:0\",\"text-align:center\",\"font-variant:normal\",\"text-transform:none\",\"line-height:inherit\",\"margin-left:0\"]],[false,{\"rs-module .sr-only\":false,\"#objectlibrary .sr-only\":false,\"#waitaminute .sr-only\":false,\"#rs_overview .sr-only\":false,\"#rs_overview_menu .sr-only\":false,\".rb-modal-wrapper .sr-only\":false,\"#builderView .sr-only\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,{\"rs-module .sr-only-focusable:active\":false,\"rs-module .sr-only-focusable:focus\":false,\"#waitaminute .sr-only-focusable:active\":false,\"#waitaminute .sr-only-focusable:focus\":false,\"#objectlibrary .sr-only-focusable:active\":false,\"#objectlibrary .sr-only-focusable:focus\":false,\"#rs_overview .sr-only-focusable:active\":false,\"#rs_overview .sr-only-focusable:focus\":false,\"#rs_overview_menu .sr-only-focusable:active\":false,\"#rs_overview_menu .sr-only-focusable:focus\":false,\".rb-modal-wrapper .sr-only-focusable:active\":false,\".rb-modal-wrapper .sr-only-focusable:focus\":false,\"#builderView .sr-only-focusable:active\":false,\"#builderView .sr-only-focusable:focus\":false},[\"position:static\",\"width:auto\",\"height:auto\",\"margin:0\",\"overflow:visible\",\"clip:auto\"]],[false,{\".revicon-search-1:before\":false},[\"content:\\\"\\ue802\\\"\"]],[false,{\".revicon-pencil-1:before\":false},[\"content:\\\"\\ue831\\\"\"]],[false,{\".revicon-picture-1:before\":false},[\"content:\\\"\\ue803\\\"\"]],[false,{\".revicon-cancel:before\":false},[\"content:\\\"\\ue80a\\\"\"]],[false,{\".revicon-info-circled:before\":false},[\"content:\\\"\\ue80f\\\"\"]],[false,{\".revicon-trash:before\":false},[\"content:\\\"\\ue801\\\"\"]],[false,{\".revicon-left-dir:before\":false},[\"content:\\\"\\ue817\\\"\"]],[false,{\".revicon-right-dir:before\":false},[\"content:\\\"\\ue818\\\"\"]],[false,{\".revicon-down-open:before\":false},[\"content:\\\"\\ue83b\\\"\"]],[false,{\".revicon-left-open:before\":false},[\"content:\\\"\\ue819\\\"\"]],[false,{\".revicon-right-open:before\":false},[\"content:\\\"\\ue81a\\\"\"]],[false,{\".revicon-angle-left:before\":false},[\"content:\\\"\\ue820\\\"\"]],[false,{\".revicon-angle-right:before\":false},[\"content:\\\"\\ue81d\\\"\"]],[false,{\".revicon-left-big:before\":false},[\"content:\\\"\\ue81f\\\"\"]],[false,{\".revicon-right-big:before\":false},[\"content:\\\"\\ue81e\\\"\"]],[false,{\".revicon-magic:before\":false},[\"content:\\\"\\ue807\\\"\"]],[false,{\".revicon-picture:before\":false},[\"content:\\\"\\ue800\\\"\"]],[false,{\".revicon-export:before\":false},[\"content:\\\"\\ue80b\\\"\"]],[false,{\".revicon-cog:before\":false},[\"content:\\\"\\ue832\\\"\"]],[false,{\".revicon-login:before\":false},[\"content:\\\"\\ue833\\\"\"]],[false,{\".revicon-logout:before\":false},[\"content:\\\"\\ue834\\\"\"]],[false,{\".revicon-video:before\":false},[\"content:\\\"\\ue805\\\"\"]],[false,{\".revicon-arrow-combo:before\":false},[\"content:\\\"\\ue827\\\"\"]],[false,{\".revicon-left-open-1:before\":false},[\"content:\\\"\\ue82a\\\"\"]],[false,{\".revicon-right-open-1:before\":false},[\"content:\\\"\\ue82b\\\"\"]],[false,{\".revicon-left-open-mini:before\":false},[\"content:\\\"\\ue822\\\"\"]],[false,{\".revicon-right-open-mini:before\":false},[\"content:\\\"\\ue823\\\"\"]],[false,{\".revicon-left-open-big:before\":false},[\"content:\\\"\\ue824\\\"\"]],[false,{\".revicon-right-open-big:before\":false},[\"content:\\\"\\ue825\\\"\"]],[false,{\".revicon-left:before\":false},[\"content:\\\"\\ue836\\\"\"]],[false,{\".revicon-right:before\":false},[\"content:\\\"\\ue826\\\"\"]],[false,{\".revicon-ccw:before\":false},[\"content:\\\"\\ue808\\\"\"]],[false,{\".revicon-arrows-ccw:before\":false},[\"content:\\\"\\ue806\\\"\"]],[false,{\".revicon-palette:before\":false},[\"content:\\\"\\ue829\\\"\"]],[false,{\".revicon-list-add:before\":false},[\"content:\\\"\\ue80c\\\"\"]],[false,{\".revicon-doc:before\":false},[\"content:\\\"\\ue809\\\"\"]],[false,{\".revicon-left-open-outline:before\":false},[\"content:\\\"\\ue82e\\\"\"]],[false,{\".revicon-left-open-2:before\":false},[\"content:\\\"\\ue82c\\\"\"]],[false,{\".revicon-right-open-outline:before\":false},[\"content:\\\"\\ue82f\\\"\"]],[false,{\".revicon-right-open-2:before\":false},[\"content:\\\"\\ue82d\\\"\"]],[false,{\".revicon-equalizer:before\":false},[\"content:\\\"\\ue83a\\\"\"]],[false,{\".revicon-layers-alt:before\":false},[\"content:\\\"\\ue804\\\"\"]],[false,{\".revicon-popup:before\":false},[\"content:\\\"\\ue828\\\"\"]],[false,{\".tp-fullwidth-forcer\":false},[\"z-index:0\",\"pointer-events:none\"]],[false,{\"rs-module-wrap\":false},[\"visibility:hidden\"]],[false,{\"rs-module-wrap\":false,\"rs-module-wrap *\":false},[\"box-sizing:border-box\",\"-webkit-tap-highlight-color:rgba(0,0,0,0)\"]],[false,{\"rs-module-wrap\":false},[\"position:relative\",\"z-index:1\",\"width:100%\",\"display:block\"]],[false,{\".rs-fixedscrollon rs-module-wrap\":false},[\"z-index:1000\"]],[false,{\".rs-fixedscrollon rs-module-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0px\",\"left:0\"]],[false,{\".rs-stickyscrollon rs-module-wrap\":false},[\"top:0px\",\"z-index:1000\"]],[false,{\".rs-stickyscrollon rs-module-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"position:sticky\"]],[false,{\".rs-stickyscrollon:not(#_#_#_#_#_#_#_)\":false},[\"overflow:visible\"]],[false,{\"rs-fw-forcer\":false},[\"display:block\",\"width:100%\",\"pointer-events:none\"]],[false,{\"rs-module\":false},[\"position:relative\",\"overflow:hidden\",\"display:block\"]],[false,{\"rs-module.disableVerticalScroll\":false},[\"-ms-touch-action:pan-x\",\"touch-action:pan-x\"]],[false,{\"rs-pzimg-wrap\":false,\"rs-sbg-effectwrap\":false,\"rs-sbg\":false},[\"display:block\",\"pointer-events:none\"]],[false,{\"rs-sbg-effectwrap\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\"]],[false,{\"rs-carousel-wrap rs-column rs-layer amp-img\":false,\"rs-carousel-wrap rs-column rs-layer amp-anim\":false},[\"width:0px\",\"height:0px\"]],[false,{\"rs-sbg-px\":false,\"rs-sbg-wrap\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"z-index:0\",\"width:100%\",\"height:100%\",\"display:block\"]],[false,{\"a.rs-layer\":false,\"a.rs-layer:-webkit-any-link\":false},[\"text-decoration:none\"]],[false,{\"a[x-apple-data-detectors]:not(#_#_#_#_#_#_#_#_)\":false},[\"color:inherit\",\"text-decoration:none\",\"font-size:inherit\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:inherit\"]],[false,{\".entry-content rs-module a\":false,\"rs-module a\":false},[\"box-shadow:none\"]],[false,{\".rs-ov-hidden:not(#_#_#_#_#_#_#_)\":false},[\"overflow:hidden\"]],[false,{\".rs-forceoverflow:not(#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-module-wrap:not(#_#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-module:not(#_#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-slides:not(#_#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-slide:not(#_#_#_#_#_#_#_#_)\":false},[\"overflow:visible\"]],[false,{\".tp-simpleresponsive amp-img\":false,\".tp-simpleresponsive amp-anim\":false,\"rs-module amp-img\":false,\"rs-module amp-anim\":false},[\"transition:none\",\"margin:0px\",\"padding:0px\",\"border:none\"]],[false,{\".tp-simpleresponsive amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".tp-simpleresponsive amp-anim:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-img:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\"rs-module .no-slides-text\":false},[\"font-weight:bold\",\"text-align:center\",\"padding-top:80px\"]],[false,{\"rs-slides\":false,\"rs-slide\":false,\"rs-slide:before\":false},[\"position:absolute\",\"text-indent:0em\",\"top:0px\",\"left:0px\"]],[false,{\"rs-slide\":false,\"rs-slide:before\":false},[\"display:block\",\"visibility:hidden\"]],[false,{\".rs-layer .rs-untoggled-content\":false},[\"display:block\"]],[false,{\".rs-layer .rs-toggled-content\":false},[\"display:none\"]],[false,{\".rs-tc-active.rs-layer > .rs-toggled-content\":false},[\"display:block\"]],[false,{\".rs-tc-active.rs-layer > .rs-untoggled-content\":false},[\"display:none\"]],[false,{\".rs-layer-video\":false},[\"overflow:hidden\"]],[false,{\".rs_html5vidbasicstyles\":false},[\"position:relative\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"overflow:hidden\"]],[false,{\"rs-module rs-layer\":false,\"rs-module .rs-layer\":false},[\"opacity:0\",\"position:relative\",\"visibility:hidden\",\"display:block\",\"-webkit-tap-highlight-color:rgba(0,0,0,0)\",\"-moz-osx-font-smoothing:grayscale\",\"z-index:1\",\"font-display:swap\"]],[false,{\"rs-module rs-layer:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module .rs-layer:not(#_#_#_#_#_#_#_#_)\":false},[\"-webkit-font-smoothing:antialiased\"]],[false,{\"rs-layer-wrap\":false,\"rs-mask\":false,\"rs-module-wrap\":false,\"rs-module .rs-layer\":false,\"rs-module amp-img\":false,\"rs-module amp-anim\":false},[\"user-select:none\"]],[false,{\"rs-module rs-mask-wrap .rs-layer\":false,\"rs-module rs-mask-wrap *:last-child\":false,\".wpb_text_column rs-module rs-mask-wrap .rs-layer\":false,\".wpb_text_column rs-module rs-mask-wrap *:last-child\":false},[\"margin-bottom:0\"]],[false,{\".rs-svg svg\":false},[\"width:100%\",\"height:100%\",\"position:relative\",\"vertical-align:top\"]],[false,{\"rs-layer:not(.rs-wtbindex):not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer:not(.rs-wtbindex):not(#_#_#_#_#_#_#_)\":false,\"rs-alyer *:not(.rs-wtbindex):not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer *:not(.rs-wtbindex):not(#_#_#_#_#_#_#_)\":false},[\"outline:none\"]],[false,{\"rs-carousel-wrap\":false},[\"cursor:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/openhand.cur\\\"),move\"]],[false,{\"rs-carousel-wrap.dragged\":false},[\"cursor:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/closedhand.cur\\\"),move\"]],[false,{\"rs-carousel-wrap.noswipe\":false},[\"cursor:default\"]],[false,{\"rs-carousel-wrap\":false},[\"position:absolute\",\"overflow:hidden\",\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\"]],[false,{\"rs-carousel-space\":false},[\"clear:both\",\"display:block\",\"width:100%\",\"height:0px\",\"position:relative\"]],[false,{\".tp_inner_padding\":false},[\"box-sizing:border-box\"]],[false,{\".tp_inner_padding:not(#_#_#_#_#_#_#_)\":false},[\"max-height:none\"]],[false,{\".rs-layer.rs-selectable\":false},[\"user-select:text\"]],[false,{\"rs-px-mask\":false},[\"overflow:hidden\",\"display:block\",\"width:100%\",\"height:100%\",\"position:relative\"]],[false,{\"rs-module embed\":false,\"rs-module amp-iframe\":false,\"rs-module amp-google-document-embed\":false,\"rs-module amp-audio\":false,\"rs-module amp-video\":false,\"rs-module amp-youtube\":false},[\"border:none\"]],[false,{\"rs-module embed:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-iframe:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-google-document-embed:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-audio:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-video:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-youtube:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\"rs-bg-elem\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"z-index:0\",\"display:block\",\"pointer-events:none\"]],[false,{\".tp-blockmask\":false,\".tp-blockmask_in\":false,\".tp-blockmask_out\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"background:#fff\",\"z-index:1000\",\"transform:scaleX(0) scaleY(0)\"]],[false,{\"rs-zone\":false},[\"position:absolute\",\"width:100%\",\"left:0px\",\"box-sizing:border-box\",\"min-height:50px\",\"font-size:0px\",\"pointer-events:none\"]],[false,{\"rs-row-wrap\":false,\"rs-column\":false,\"rs-cbg-mask-wrap\":false},[\"display:block\",\"visibility:hidden\"]],[false,{\"rs-layer-wrap\":false,\"rs-parallax-wrap\":false,\"rs-loop-wrap\":false,\"rs-mask-wrap\":false},[\"display:block\"]],[false,{\"rs-column-wrap>rs-loop-wrap\":false},[\"z-index:1\"]],[false,{\"rs-layer-wrap\":false,\"rs-mask-wrap\":false,\"rs-cbg-mask-wrap\":false},[\"transform-style:flat\"]],[false,\"@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0){\"],[false,{\"rs-carousel-wrap rs-layer-wrap\":false,\"rs-carousel-wrap rs-loop-wrap\":false},[\"backface-visibility:hidden\",\"transform-style:preserve-3d\"]],[false,\"}\"],[false,{\".safarifix rs-layer-wrap\":false},[\"perspective:1000000\"]],[false,\"@-moz-document url-prefix(){\"],[false,{\"rs-layer-wrap\":false,\"rs-mask-wrap\":false,\"rs-cbg-mask-wrap\":false},[\"perspective:none\"]],[false,\"}\"],[false,{\"rs-mask-wrap\":false},[\"overflow:hidden\"]],[false,{\"rs-fullwidth-wrap\":false},[\"position:relative\",\"width:100%\",\"height:auto\",\"display:block\",\"overflow:visible\"]],[false,{\"rs-fullwidth-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\".rev_row_zone_top\":false},[\"top:0px\"]],[false,{\".rev_row_zone_bottom\":false},[\"bottom:0px\"]],[false,{\".rev_row_zone_middle\":false},[\"top:0px\"]],[false,{\"rs-column-wrap .rs-parallax-wrap\":false},[\"vertical-align:top\"]],[false,{\".rs-layer amp-img\":false,\".rs-layer amp-anim\":false,\"rs-layer amp-img\":false,\"rs-layer amp-anim\":false},[\"vertical-align:top\"]],[false,{\"rs-row\":false,\"rs-row.rs-layer\":false},[\"display:table\",\"position:relative\",\"table-layout:fixed\",\"box-sizing:border-box\",\"vertical-align:top\",\"height:auto\",\"font-size:0px\"]],[false,{\"rs-row:not(#_#_#_#_#_#_#_#_)\":false,\"rs-row.rs-layer:not(#_#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".rs-layer.rs-waction.iospermaccwait.permanenthidden:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"visibility:hidden\",\"pointer-events:none\"]],[false,{\"rs-column-wrap\":false},[\"display:table-cell\",\"position:relative\",\"vertical-align:top\",\"height:auto\",\"box-sizing:border-box\",\"font-size:0px\"]],[false,{\"rs-column\":false},[\"box-sizing:border-box\",\"display:block\",\"position:relative\"]],[false,{\"rs-column:not(#_#_#_#_#_#_#_#_)\":false},[\"width:100%\",\"height:auto\",\"white-space:normal\"]],[false,{\"rs-cbg-mask-wrap\":false},[\"position:absolute\",\"z-index:0\",\"box-sizing:border-box\"]],[false,{\"rs-column-wrap rs-cbg-mask-wrap\":false},[\"top:0px\",\"left:0px\",\"bottom:0px\",\"right:0px\"]],[false,{\"rs-column-bg\":false},[\"position:absolute\",\"z-index:0\",\"box-sizing:border-box\",\"width:100%\",\"height:100%\"]],[false,{\".rs-pelock *:not(#_#_#_#_#_#_#_)\":false},[\"pointer-events:none\"]],[false,{\"rs-column .rs-parallax-wrap\":false,\"rs-column rs-loop-wrap\":false,\"rs-column rs-mask-wrap\":false},[\"text-align:inherit\"]],[false,{\"rs-column rs-mask-wrap\":false},[\"display:inline-block\"]],[false,{\"rs-column .rs-parallax-wrap rs-loop-wrap\":false,\"rs-column .rs-parallax-wrap rs-mask-wrap\":false,\"rs-column .rs-parallax-wrap\":false},[\"line-height:0px\"]],[false,{\"rs-column .rs-parallax-wrap rs-loop-wrap:not(#_#_#_#_#_#_#_#_)\":false,\"rs-column .rs-parallax-wrap rs-mask-wrap:not(#_#_#_#_#_#_#_#_)\":false,\"rs-column .rs-parallax-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"position:relative\",\"left:auto\",\"top:auto\"]],[false,{\"rs-column .rs-parallax-wrap rs-loop-wrap\":false,\"rs-column .rs-parallax-wrap rs-mask-wrap\":false,\"rs-column .rs-parallax-wrap\":false,\"rs-column .rev_layer_in_column\":false},[\"vertical-align:top\"]],[false,{\".rev_break_columns:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".rev_break_columns rs-column-wrap.rs-parallax-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\",\"width:100%\"]],[false,{\".rev_break_columns rs-column-wrap.rs-parallax-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_#_)\":false,\".tp-forcenotvisible:not(#_#_#_#_#_#_#_)\":false,\".tp-hide-revslider:not(#_#_#_#_#_#_#_)\":false,\"rs-row-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_#_)\":false,\"rs-column-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer.rs-layer-hidden:not(#_#_#_#_#_#_#_)\":false,\".rs-layer-audio.rs-layer-hidden:not(#_#_#_#_#_#_#_)\":false,\".rs-parallax-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_)\":false},[\"visibility:hidden\",\"display:none\"]],[false,{\"a.rs-layer.rs-nointeraction >.div:not(#_#_#_#_#_#_#_#_)\":false,\"rs-layer.rs-nointeraction:not(a):not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer.rs-nointeraction:not(a):not(#_#_#_#_#_#_#_)\":false},[\"pointer-events:none\"]],[false,{\"rs-static-layers\":false},[\"position:absolute\",\"z-index:101\",\"top:0px\",\"left:0px\",\"display:block\",\"width:100%\",\"height:100%\",\"pointer-events:none\",\"overflow:hidden\"]],[false,{\"rs-static-layers.rs-stl-back\":false},[\"z-index:0\"]],[false,{\".rs-stl-visible:not(#_#_#_#_#_#_#_)\":false},[\"overflow:visible\"]],[false,{\".rs-layer rs-fcr\":false},[\"width:0\",\"height:0\",\"border-left:40px solid transparent\",\"border-right:0px solid transparent\",\"border-top:40px solid #00a8ff\",\"position:absolute\",\"right:100%\",\"top:0px\"]],[false,{\".rs-layer rs-fcrt\":false},[\"width:0\",\"height:0\",\"border-left:40px solid transparent\",\"border-right:0px solid transparent\",\"border-bottom:40px solid #00a8ff\",\"position:absolute\",\"right:100%\",\"top:0px\"]],[false,{\".rs-layer rs-bcr\":false},[\"width:0\",\"height:0\",\"border-left:0px solid transparent\",\"border-right:40px solid transparent\",\"border-bottom:40px solid #00a8ff\",\"position:absolute\",\"left:100%\",\"top:0px\"]],[false,{\".rs-layer rs-bcrt\":false},[\"width:0\",\"height:0\",\"border-left:0px solid transparent\",\"border-right:40px solid transparent\",\"border-top:40px solid #00a8ff\",\"position:absolute\",\"left:100%\",\"top:0px\"]],[false,{\".tp-layer-inner-rotation:not(#_#_#_#_#_#_#_)\":false},[\"position:relative\"]],[false,{\"amp-img.tp-slider-alternative-image\":false,\"amp-anim.tp-slider-alternative-image\":false},[\"width:100%\",\"height:auto\"]],[false,{\".noFilterClass:not(#_#_#_#_#_#_#_)\":false},[\"filter:none\"]],[false,{\"rs-bgvideo\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"z-index:0\",\"display:block\"]],[false,{\".rs-layer.rs-fsv\":false},[\"top:0px\",\"left:0px\",\"position:absolute\",\"width:100%\",\"height:100%\"]],[false,{\".rs-layer.rs-fsv amp-audio\":false,\".rs-layer.rs-fsv amp-video\":false,\".rs-layer.rs-fsv amp-youtube\":false,\".rs-layer.rs-fsv amp-iframe\":false,\".rs-layer.rs-fsv amp-iframe amp-audio\":false,\".rs-layer.rs-fsv amp-iframe amp-video\":false,\".rs-layer.rs-fsv amp-iframe amp-youtube\":false},[\"width:100%\",\"height:100%\"]],[false,{\".rs-fsv amp-video\":false,\".rs-fsv amp-youtube\":false},[\"background:#000\"]],[false,{\".fullcoveredvideo rs-poster\":false},[\"background-position:center center\",\"background-size:cover\",\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\"]],[false,{\".videoisplaying .html5vid rs-poster\":false},[\"display:none\"]],[false,{\".tp-video-play-button\":false},[\"background:#000\",\"background:rgba(0,0,0,.3)\",\"border-radius:5px\",\"position:absolute\",\"top:50%\",\"left:50%\",\"color:#fff\",\"z-index:3\",\"z-index:4\",\"margin-top:-25px\",\"margin-left:-25px\",\"text-align:center\",\"cursor:pointer\",\"width:50px\",\"height:50px\",\"box-sizing:border-box\",\"display:inline-block\",\"vertical-align:top\",\"opacity:0\"]],[false,{\".tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"line-height:50px\",\"transition:opacity 300ms ease-out\"]],[false,{\".rs-ISM .tp-video-play-button\":false},[\"opacity:1\",\"z-index:6\"]],[false,{\".rs-ISM .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"transition:none\"]],[false,{\".rs-audio .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".rs-layer .html5vid:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\",\"height:100%\"]],[false,{\".tp-video-play-button i\":false},[\"width:50px\",\"height:50px\",\"display:inline-block\",\"vertical-align:top\"]],[false,{\".tp-video-play-button i:not(#_#_#_#_#_#_#_#_)\":false},[\"text-align:center\",\"line-height:50px\",\"font-size:30px\"]],[false,{\".rs-layer:hover .tp-video-play-button\":false},[\"opacity:1\",\"display:block\",\"z-index:6\"]],[false,{\".rs-layer .tp-revstop\":false},[\"display:none\",\"width:15px\",\"transform:translateX(50%) translateY(50%)\",\"height:20px\"]],[false,{\".rs-layer .tp-revstop:not(#_#_#_#_#_#_#_)\":false},[\"border-right:5px solid #fff\",\"border-left:5px solid #fff\",\"margin-left:11px\",\"margin-top:5px\"]],[false,{\".videoisplaying .revicon-right-dir\":false},[\"display:none\"]],[false,{\".videoisplaying .tp-revstop\":false},[\"display:block\"]],[false,{\".videoisplaying .tp-video-play-button\":false},[\"display:none\"]],[false,{\".fullcoveredvideo .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".rs-fsv .rs-fsv amp-audio:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:contain\"]],[false,{\".rs-fsv .rs-fsv amp-video:not(#_#_#_#_#_#_#_#_)\":false,\".rs-fsv .rs-fsv amp-youtube:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:contain\"]],[false,{\".rs-layer-video .html5vid.hidefullscreen amp-video::-webkit-media-controls-fullscreen-button\":false,\".rs-layer-video .html5vid.hidefullscreen amp-youtube::-webkit-media-controls-fullscreen-button\":false},[\"display:none\"]],[false,\"@supports not (-ms-high-contrast:none){\"],[false,{\".rs-fsv .fullcoveredvideo amp-audio:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:cover\"]],[false,{\".rs-fsv .fullcoveredvideo amp-video:not(#_#_#_#_#_#_#_#_)\":false,\".rs-fsv .fullcoveredvideo amp-youtube:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:cover\"]],[false,\"}\"],[false,{\".rs-fullvideo-cover\":false},[\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\",\"position:absolute\",\"background:transparent\",\"z-index:5\"]],[false,{\".rs-nolc .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-video::-webkit-media-controls-start-playback-button:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-youtube::-webkit-media-controls-start-playback-button:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-video::-webkit-media-controls:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-youtube::-webkit-media-controls:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-audio::-webkit-media-controls:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".rs-audio .tp-video-controls:not(#_#_#_#_#_#_#_)\":false},[\"opacity:1\",\"visibility:visible\"]],[false,{\"rs-module h1.rs-layer\":false,\"rs-module h2.rs-layer\":false,\"rs-module h3.rs-layer\":false,\"rs-module h4.rs-layer\":false,\"rs-module h5.rs-layer\":false,\"rs-module h6.rs-layer\":false,\"rs-module div.rs-layer\":false,\"rs-module span.rs-layer\":false,\"rs-module p.rs-layer\":false},[\"margin:0\",\"padding:0\",\"margin-block-start:0\",\"margin-block-end:0\",\"margin-inline-start:0\",\"margin-inline-end:0\"]],[false,{\"rs-module h1.rs-layer:before\":false,\"rs-module h2.rs-layer:before\":false,\"rs-module h3.rs-layer:before\":false,\"rs-module h4.rs-layer:before\":false,\"rs-module h5.rs-layer:before\":false,\"rs-module h6.rs-layer:before\":false},[\"content:none\"]],[false,{\"rs-dotted\":false},[\"background-repeat:repeat\",\"width:100%\",\"height:100%\",\"position:absolute\",\"top:0px\",\"left:0px\",\"z-index:3\",\"display:block\",\"pointer-events:none\"]],[false,{\"rs-sbg-wrap rs-dotted\":false},[\"z-index:31\"]],[false,{\"rs-dotted.twoxtwo\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile.png\\\")\"]],[false,{\"rs-dotted.twoxtwowhite\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile_white.png\\\")\"]],[false,{\"rs-dotted.threexthree\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile_3x3.png\\\")\"]],[false,{\"rs-dotted.threexthreewhite\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile_3x3_white.png\\\")\"]],[false,{\".tp-shadowcover\":false},[\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\",\"background:#fff\",\"position:absolute\",\"z-index:-1\"]],[false,{\".tp-shadow1\":false},[\"box-shadow:0 10px 6px -6px rgba(0,0,0,.8)\"]],[false,{\".tp-shadow2:before\":false,\".tp-shadow2:after\":false,\".tp-shadow3:before\":false,\".tp-shadow4:after\":false},[\"z-index:-2\",\"position:absolute\",\"content:\\\"\\\"\",\"bottom:10px\",\"left:10px\",\"width:50%\",\"top:85%\",\"max-width:300px\",\"background:transparent\",\"box-shadow:0 15px 10px rgba(0,0,0,.8)\",\"transform:rotate(-3deg)\"]],[false,{\".tp-shadow2:after\":false,\".tp-shadow4:after\":false},[\"transform:rotate(3deg)\",\"right:10px\",\"left:auto\"]],[false,{\".tp-shadow5\":false},[\"position:relative\",\"box-shadow:0 1px 4px rgba(0,0,0,.3),0 0 40px rgba(0,0,0,.1) inset\"]],[false,{\".tp-shadow5:before\":false,\".tp-shadow5:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"z-index:-2\",\"box-shadow:0 0 25px 0px rgba(0,0,0,.6)\",\"top:30%\",\"bottom:0\",\"left:20px\",\"right:20px\",\"border-radius:100px\\/20px\"]],[false,{\".rev-btn\":false,\".rev-btn:visited\":false},[\"box-shadow:none\",\"box-sizing:border-box\",\"cursor:pointer\"]],[false,{\".rev-btn:not(#_#_#_#_#_#_#_)\":false,\".rev-btn:visited:not(#_#_#_#_#_#_#_)\":false},[\"outline:none\",\"text-decoration:none\"]],[false,{\".rev-btn.rev-uppercase\":false,\".rev-btn.rev-uppercase:visited\":false},[\"text-transform:uppercase\"]],[false,{\".rev-btn i\":false},[\"font-size:inherit\",\"font-weight:normal\",\"position:relative\",\"top:0px\",\"transition:opacity .2s ease-out,margin .2s ease-out\",\"margin-left:0px\",\"line-height:inherit\"]],[false,{\".rev-btn.rev-hiddenicon i\":false},[\"font-size:inherit\",\"font-weight:normal\",\"position:relative\",\"top:0px\",\"transition:opacity .2s ease-out,margin .2s ease-out\",\"opacity:0\"]],[false,{\".rev-btn.rev-hiddenicon i:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-left:0px\",\"width:0px\"]],[false,{\".rev-btn.rev-hiddenicon:hover i:not(#_#_#_#_#_#_#_#_)\":false},[\"opacity:1\",\"margin-left:10px\",\"width:auto\"]],[false,{\".rev-burger\":false},[\"position:relative\",\"box-sizing:border-box\",\"padding:22px 14px 22px 14px\",\"border-radius:50%\",\"border:1px solid rgba(51,51,51,.25)\",\"-webkit-tap-highlight-color:rgba(0,0,0,0)\",\"-webkit-tap-highlight-color:transparent\",\"cursor:pointer\"]],[false,{\".rev-burger span\":false},[\"display:block\",\"width:30px\",\"height:3px\",\"background:#333\",\"transition:.7s\",\"pointer-events:none\"]],[false,{\".rev-burger span:not(#_#_#_#_#_#_#_#_)\":false},[\"transform-style:flat\"]],[false,{\".rev-burger span:nth-child(2)\":false},[\"margin:3px 0\"]],[false,{\".quick_style_example_wrap .rev-burger:hover :first-child\":false,\"#dialog_addbutton .rev-burger:hover :first-child\":false,\".open .rev-burger :first-child\":false,\".open.rev-burger :first-child\":false},[\"transform:translateY(6px) rotate(-45deg)\"]],[false,{\".quick_style_example_wrap .rev-burger:hover :nth-child(2)\":false,\"#dialog_addbutton .rev-burger:hover :nth-child(2)\":false,\".open .rev-burger :nth-child(2)\":false,\".open.rev-burger :nth-child(2)\":false},[\"transform:rotate(-45deg)\",\"opacity:0\"]],[false,{\".quick_style_example_wrap .rev-burger:hover :last-child\":false,\"#dialog_addbutton .rev-burger:hover :last-child\":false,\".open .rev-burger :last-child\":false,\".open.rev-burger :last-child\":false},[\"transform:translateY(-6px) rotate(-135deg)\"]],[false,{\".rev-burger.revb-white\":false},[\"border:2px solid rgba(255,255,255,.2)\"]],[false,{\".rev-b-span-light span\":false,\".rev-burger.revb-white span\":false},[\"background:#fff\"]],[false,{\".rev-burger.revb-whitenoborder\":false},[\"border:0\"]],[false,{\".rev-burger.revb-whitenoborder span\":false},[\"background:#fff\"]],[false,{\".rev-burger.revb-darknoborder\":false},[\"border:0\"]],[false,{\".rev-b-span-dark span\":false,\".rev-burger.revb-darknoborder span\":false},[\"background:#333\"]],[false,{\".rev-burger.revb-whitefull\":false},[\"background:#fff\",\"border:none\"]],[false,{\".rev-burger.revb-whitefull span\":false},[\"background:#333\"]],[false,{\".rev-burger.revb-darkfull\":false},[\"background:#333\",\"border:none\"]],[false,{\".rev-burger.revb-darkfull span\":false},[\"background:#fff\"]],[true,\"@keyframes rev-ani-mouse{\"],[true,\"0%{opacity:1;top:29%}\"],[true,\"15%{opacity:1;top:70%}\"],[true,\"50%{opacity:0;top:70%}\"],[true,\"100%{opacity:0;top:29%}\"],[true,\"}\"],[false,{\".rev-scroll-btn\":false},[\"display:inline-block\",\"position:relative\",\"left:0\",\"right:0\",\"text-align:center\",\"cursor:pointer\",\"width:35px\",\"height:55px\",\"box-sizing:border-box\",\"border:3px solid white\",\"border-radius:23px\"]],[false,{\".rev-scroll-btn > *\":false},[\"display:inline-block\",\"line-height:18px\",\"font-size:13px\",\"font-weight:normal\",\"color:#7f8c8d\",\"color:#fff\",\"font-family:\\\"proxima-nova\\\",\\\"Helvetica Neue\\\",Helvetica,Arial,sans-serif\",\"letter-spacing:2px\"]],[false,{\".rev-scroll-btn > *:hover\":false,\".rev-scroll-btn > *:focus\":false,\".rev-scroll-btn > *.active\":false},[\"color:#fff\"]],[false,{\".rev-scroll-btn > *:hover\":false,\".rev-scroll-btn > *:focus\":false,\".rev-scroll-btn > *:active\":false,\".rev-scroll-btn > *.active\":false},[\"opacity:.8\"]],[false,{\".rev-scroll-btn.revs-fullwhite\":false},[\"background:#fff\"]],[false,{\".rev-scroll-btn.revs-fullwhite span\":false},[\"background:#333\"]],[false,{\".rev-scroll-btn.revs-fulldark\":false},[\"background:#333\",\"border:none\"]],[false,{\".rev-scroll-btn.revs-fulldark span\":false},[\"background:#fff\"]],[false,{\".rev-scroll-btn span\":false},[\"position:absolute\",\"display:block\",\"top:29%\",\"left:50%\",\"width:8px\",\"height:8px\",\"margin:-4px 0 0 -4px\",\"border-radius:50%\",\"animation:rev-ani-mouse 2.5s linear infinite\",\"background:#fff\"]],[false,{\".rev-scroll-btn.rev-b-span-dark\":false},[\"border-color:#333\"]],[false,{\".rev-scroll-btn.rev-b-span-dark span\":false,\".rev-scroll-btn.revs-dark span\":false},[\"background:#333\"]],[false,{\".rev-control-btn\":false},[\"position:relative\",\"display:inline-block\",\"z-index:5\",\"color:#fff\",\"font-size:20px\",\"line-height:60px\",\"font-weight:400\",\"font-style:normal\",\"font-family:Raleway\",\"text-decoration:none\",\"text-align:center\",\"background-color:#000\",\"background-color:rgba(0,0,0,.5)\",\"border-radius:50px\",\"text-shadow:none\",\"width:60px\",\"height:60px\",\"box-sizing:border-box\",\"cursor:pointer\"]],[false,{\".rev-cbutton-dark-sr\":false},[\"border-radius:3px\"]],[false,{\".rev-cbutton-light\":false},[\"color:#333\",\"background-color:rgba(255,255,255,.75)\"]],[false,{\".rev-cbutton-light-sr\":false},[\"color:#333\",\"border-radius:3px\",\"background-color:rgba(255,255,255,.75)\"]],[false,{\".rev-sbutton\":false},[\"line-height:37px\",\"width:37px\",\"height:37px\"]],[false,{\".rev-sbutton-blue\":false},[\"background-color:#3b5998\"]],[false,{\".rev-sbutton-lightblue\":false},[\"background-color:#00a0d1\"]],[false,{\".rev-sbutton-red\":false},[\"background-color:#dd4b39\"]],[false,{\"rs-progress\":false},[\"visibility:hidden\",\"position:absolute\",\"z-index:200\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-bar\":false,\".rs-progress-bar\":false},[\"display:block\",\"z-index:20\",\"box-sizing:border-box\",\"background-clip:content-box\",\"position:absolute\",\"line-height:0px\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-bgs\":false},[\"display:block\",\"z-index:15\",\"box-sizing:border-box\",\"width:100%\",\"position:absolute\",\"height:100%\",\"top:0px\",\"left:0px\"]],[false,{\"rs-progress-bg\":false},[\"display:block\",\"background-clip:content-box\",\"position:absolute\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-gap\":false},[\"display:block\",\"background-clip:content-box\",\"position:absolute\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-vis\":false},[\"display:block\",\"width:100%\",\"height:100%\",\"position:absolute\",\"top:0px\",\"left:0px\"]],[false,{\".rs-layer amp-img\":false,\".rs-layer amp-anim\":false},[\"background:transparent\",\"-ms-filter:\\\"progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)\\\"\",\"filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=rgba(0,255,255,1),endColorstr=rgba(0,255,255,1))\"]],[false,{\".rs-layer.slidelink\":false},[\"cursor:pointer\",\"width:100%\",\"height:100%\"]],[false,{\".rs-layer.slidelink a\":false},[\"width:100%\",\"height:100%\",\"display:block\"]],[false,{\".rs-layer.slidelink a div\":false},[\"width:3000px\",\"height:1500px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/coloredbg.png\\\") repeat\"]],[false,{\".rs-layer.slidelink a span\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/coloredbg.png\\\") repeat\",\"width:100%\",\"height:100%\",\"display:block\"]],[false,{\".rs-layer .rs-starring\":false},[\"display:inline-block\"]],[false,{\".rs-layer .rs-starring .star-rating\":false},[\"float:none\",\"display:inline-block\",\"vertical-align:top\"]],[false,{\".rs-layer .rs-starring .star-rating:not(#_#_#_#_#_#_#_)\":false},[\"color:#ffc321\"]],[false,{\".rs-layer .rs-starring .star-rating\":false,\".rs-layer .rs-starring-page .star-rating\":false},[\"position:relative\",\"height:1em\",\"width:5.4em\",\"font-family:star\"]],[false,{\".rs-layer .rs-starring .star-rating:not(#_#_#_#_#_#_#_)\":false,\".rs-layer .rs-starring-page .star-rating:not(#_#_#_#_#_#_#_)\":false},[\"font-size:1em\"]],[false,{\".rs-layer .rs-starring .star-rating:before\":false,\".rs-layer .rs-starring-page .star-rating:before\":false},[\"content:\\\"sssss\\\"\",\"color:#e0dadf\",\"float:left\",\"top:0\",\"left:0\",\"position:absolute\"]],[false,{\".rs-layer .rs-starring .star-rating span\":false},[\"overflow:hidden\",\"float:left\",\"top:0\",\"left:0\",\"position:absolute\",\"padding-top:1.5em\"]],[false,{\".rs-layer .rs-starring .star-rating span:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:1em\"]],[false,{\".rs-layer .rs-starring .star-rating span:before\":false},[\"content:\\\"SSSSS\\\"\",\"top:0\",\"position:absolute\",\"left:0\"]],[false,{\"rs-loader\":false},[\"top:50%\",\"left:50%\",\"z-index:10000\",\"position:absolute\"]],[false,{\"rs-loader.off:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"rs-loader.spinner0\":false},[\"width:40px\",\"height:40px\",\"background-color:#fff\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/loader.gif\\\")\",\"background-repeat:no-repeat\",\"background-position:center center\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"margin-top:-20px\",\"margin-left:-20px\",\"animation:tp-rotateplane 1.2s infinite ease-in-out\",\"border-radius:3px\"]],[false,{\"rs-loader.spinner1\":false},[\"width:40px\",\"height:40px\",\"background-color:#fff\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"margin-top:-20px\",\"margin-left:-20px\",\"animation:tp-rotateplane 1.2s infinite ease-in-out\",\"border-radius:3px\"]],[false,{\"rs-loader.spinner5\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/loader.gif\\\")\",\"background-repeat:no-repeat\",\"background-position:10px 10px\",\"background-color:#fff\",\"margin:-22px -22px\",\"width:44px\",\"height:44px\",\"border-radius:3px\"]],[true,\"@keyframes tp-rotateplane{\"],[true,\"0%{transform:perspective(120px) rotateX(0deg) rotateY(0deg)}\"],[true,\"50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0deg)}\"],[true,\"100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner2\":false},[\"width:40px\",\"height:40px\",\"margin-top:-20px\",\"margin-left:-20px\",\"background-color:#f00\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"border-radius:100%\",\"animation:tp-scaleout 1s infinite ease-in-out\"]],[true,\"@keyframes tp-scaleout{\"],[true,\"0%{transform:scale(0)}\"],[true,\"100%{transform:scale(1);opacity:0}\"],[true,\"}\"],[false,{\"rs-loader.spinner3\":false},[\"margin:-9px 0px 0px -35px\",\"width:70px\",\"text-align:center\"]],[false,{\"rs-loader.spinner3 .bounce1\":false,\"rs-loader.spinner3 .bounce2\":false,\"rs-loader.spinner3 .bounce3\":false},[\"width:18px\",\"height:18px\",\"background-color:#fff\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"border-radius:100%\",\"display:inline-block\",\"animation:tp-bouncedelay 1.4s infinite ease-in-out\",\"animation-fill-mode:both\"]],[false,{\"rs-loader.spinner3 .bounce1\":false},[\"animation-delay:-.32s\"]],[false,{\"rs-loader.spinner3 .bounce2\":false},[\"animation-delay:-.16s\"]],[true,\"@keyframes tp-bouncedelay{\"],[true,\"0%,80%,100%{transform:scale(0)}\"],[true,\"40%{transform:scale(1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner4\":false},[\"margin:-20px 0px 0px -20px\",\"width:40px\",\"height:40px\",\"text-align:center\",\"animation:tp-rotate 2s infinite linear\"]],[false,{\"rs-loader.spinner4 .dot1\":false,\"rs-loader.spinner4 .dot2\":false},[\"width:60%\",\"height:60%\",\"display:inline-block\",\"position:absolute\",\"top:0\",\"background-color:#fff\",\"border-radius:100%\",\"animation:tp-bounce 2s infinite ease-in-out\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\"]],[false,{\"rs-loader.spinner4 .dot2\":false},[\"top:auto\",\"bottom:0px\",\"animation-delay:-1s\"]],[true,\"@keyframes tp-rotate{\"],[true,\"100%{transform:rotate(360deg)}\"],[true,\"}@keyframes tp-bounce{\"],[true,\"0%,100%{transform:scale(0)}\"],[true,\"50%{transform:scale(1)}\"],[true,\"}\"],[false,{\"rs-layer amp-iframe\":false},[\"visibility:hidden\"]],[false,{\"rs-layer.rs-ii-o amp-iframe\":false},[\"visibility:visible\"]],[false,{\"rs-layer input[type=\\\"text\\\"]\":false,\"rs-layer input[type=\\\"email\\\"]\":false,\"rs-layer input[type=\\\"url\\\"]\":false,\"rs-layer input[type=\\\"password\\\"]\":false,\"rs-layer input[type=\\\"search\\\"]\":false,\"rs-layer input[type=\\\"number\\\"]\":false,\"rs-layer input[type=\\\"tel\\\"]\":false,\"rs-layer input[type=\\\"range\\\"]\":false,\"rs-layer input[type=\\\"date\\\"]\":false,\"rs-layer input[type=\\\"month\\\"]\":false,\"rs-layer input[type=\\\"week\\\"]\":false,\"rs-layer input[type=\\\"time\\\"]\":false,\"rs-layer input[type=\\\"datetime\\\"]\":false,\"rs-layer input[type=\\\"datetime-local\\\"]\":false},[\"display:inline-block\"]],[false,{\"rs-layer input::placeholder\":false},[\"vertical-align:middle\"]],[false,{\"rs-layer input::placeholder:not(#_#_#_#_#_#_#_#_)\":false},[\"line-height:inherit\"]],[false,{\"a.rs-layer\":false},[\"transition:none\"]],[false,{\"rs-thumbs-wrap\":false,\"rs-tabs-wrap\":false,\"rs-thumbs\":false,\"rs-thumb\":false,\"rs-tab\":false,\"rs-bullet\":false,\"rs-bullets\":false,\"rs-navmask\":false,\"rs-tabs\":false,\"rs-arrow\":false},[\"display:block\",\"pointer-events:all\"]],[false,{\".tp-thumbs.navbar\":false,\".tp-bullets.navbar\":false,\".tp-tabs.navbar\":false},[\"border:none\",\"min-height:0\",\"margin:0\",\"border-radius:0\"]],[false,{\".tp-tabs\":false,\".tp-thumbs\":false,\".tp-bullets\":false},[\"position:absolute\",\"display:block\",\"z-index:1000\",\"top:0px\",\"left:0px\"]],[false,{\".tp-tab\":false,\".tp-thumb\":false},[\"cursor:pointer\",\"position:absolute\",\"opacity:.5\",\"box-sizing:border-box\"]],[false,{\".tp-arr-imgholder\":false,\"rs-poster\":false,\".tp-thumb-image\":false,\".tp-tab-image\":false},[\"background-position:center center\",\"background-size:cover\",\"width:100%\",\"height:100%\",\"display:block\",\"position:absolute\",\"top:0px\",\"left:0px\"]],[false,{\"rs-poster\":false},[\"cursor:pointer\",\"z-index:3\"]],[false,{\".tp-tab.rs-touchhover\":false,\".tp-tab.selected\":false,\".tp-thumb.rs-touchhover\":false,\".tp-thumb.selected\":false},[\"opacity:1\"]],[false,{\".tp-tab-mask:not(#_#_#_#_#_#_#_)\":false,\".tp-thumb-mask:not(#_#_#_#_#_#_#_)\":false},[\"box-sizing:border-box\"]],[false,{\".tp-tabs:not(#_#_#_#_#_#_#_)\":false,\".tp-thumbs:not(#_#_#_#_#_#_#_)\":false},[\"box-sizing:content-box\"]],[false,{\".tp-bullet\":false},[\"width:15px\",\"height:15px\",\"position:absolute\",\"background:#fff\",\"background:rgba(255,255,255,.3)\",\"cursor:pointer\"]],[false,{\".tp-bullet.selected\":false,\".tp-bullet.rs-touchhover\":false},[\"background:#fff\"]],[false,{\".tparrows\":false},[\"cursor:pointer\",\"background:#000\",\"background:rgba(0,0,0,.5)\",\"width:40px\",\"height:40px\",\"position:absolute\",\"display:block\",\"z-index:1000\"]],[false,{\".tparrows.rs-touchhover\":false},[\"background:#000\"]],[false,{\".tparrows:before\":false},[\"font-family:\\\"revicons\\\"\",\"font-size:15px\",\"color:#fff\",\"display:block\",\"line-height:40px\",\"text-align:center\"]],[false,{\".tparrows.tp-leftarrow:before\":false},[\"content:\\\"\\ue824\\\"\"]],[false,{\".tparrows.tp-rightarrow:before\":false},[\"content:\\\"\\ue825\\\"\"]],[false,{\".rs-layer [class^=\\\"pe-7s-\\\"]:before\":false,\".rs-layer [class*=\\\" pe-7s-\\\"]:before\":false,\".rs-layer [class^=\\\"pe-7s-\\\"]\":false,\".rs-layer [class*=\\\" pe-7s-\\\"]\":false},[\"width:auto\",\"margin:0\",\"line-height:inherit\",\"box-sizing:inherit\"]],[false,{\"rs-pzimg-wrap\":false},[\"display:block\"]],[false,{\"body.rtl .rs-pzimg:not(#_#_#_#_#_#_#_#_)\":false},[\"left:0\"]],[false,{\".rs_fake_cube\":false},[\"transform-style:preserve-3d\"]],[false,{\".rs_fake_cube\":false,\".rs_fake_cube_wall\":false},[\"position:absolute\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"left:0px\",\"top:0px\",\"z-index:0\"]],[false,{\".rs-builder-mode rs-sbg-wrap canvas\":false,\"rs-sbg canvas\":false},[\"overflow:hidden\",\"z-index:5\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".dddwrappershadow\":false},[\"box-shadow:0 45px 100px rgba(0,0,0,.4)\"]],[false,{\".dddwrapper\":false},[\"transform-style:flat\",\"perspective:10000px\"]],[false,{\".rs_error_message_box\":false},[\"background:#111\",\"width:800px\",\"margin:40px auto\",\"padding:40px 20px\",\"text-align:center\",\"font-family:\\\"Open Sans\\\",sans-serif\"]],[false,{\".rs_error_message_oops\":false},[\"margin:0px 0px 20px\",\"line-height:60px\",\"font-size:34px\",\"color:#fff\"]],[false,{\".rs_error_message_content\":false},[\"margin:0px 0px 20px\",\"line-height:25px\",\"font-size:17px\",\"color:#fff\"]],[false,{\".rs_error_message_button\":false},[\"background:#333\",\"display:inline-block\",\"padding:10px 15px\",\"text-align:right\",\"border-radius:5px\",\"cursor:pointer\"]],[false,{\".rs_error_message_button:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\".rs_error_message_button:hover\":false},[\"background:#5e35b1\"]],[false,{\".hglayerinfo\":false},[\"position:fixed\",\"bottom:0px\",\"left:0px\",\"color:#fff\",\"font-size:12px\",\"line-height:20px\",\"font-weight:600\",\"background:rgba(0,0,0,.75)\",\"padding:5px 10px\",\"z-index:2000\",\"white-space:normal\"]],[false,{\".hginfo\":false},[\"position:absolute\",\"top:-2px\",\"left:-2px\",\"color:#e74c3c\",\"font-size:12px\",\"font-weight:600\",\"background:#000\",\"padding:2px 5px\"]],[false,{\".indebugmode .rs-layer:hover:not(#_#_#_#_#_#_#_)\":false},[\"border:1px dashed #c0392b\"]],[false,{\".helpgrid\":false},[\"border:2px dashed #c0392b\",\"position:absolute\",\"top:0px\",\"left:0px\",\"z-index:0\"]],[false,{\"#revsliderlogloglog\":false},[\"padding:15px\",\"color:#fff\",\"position:fixed\",\"top:0px\",\"left:0px\",\"width:200px\",\"height:150px\",\"background:rgba(0,0,0,.7)\",\"z-index:100000\",\"font-size:10px\",\"overflow:scroll\"]],[false,{\".aden\":false},[\"filter:hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2)\"]],[false,{\".aden::after\":false},[\"background:linear-gradient(to right,rgba(66,10,14,.2),transparent)\",\"mix-blend-mode:darken\"]],[false,{\".perpetua::after\":false,\".reyes::after\":false},[\"mix-blend-mode:soft-light\",\"opacity:.5\"]],[false,{\".inkwell\":false},[\"filter:sepia(.3) contrast(1.1) brightness(1.1) grayscale(1)\"]],[false,{\".perpetua::after\":false},[\"background:linear-gradient(to bottom,#005b9a,#e6c13d)\"]],[false,{\".reyes\":false},[\"filter:sepia(.22) brightness(1.1) contrast(.85) saturate(.75)\"]],[false,{\".reyes::after\":false},[\"background:#efcdad\"]],[false,{\".gingham\":false},[\"filter:brightness(1.05) hue-rotate(-10deg)\"]],[false,{\".gingham::after\":false},[\"background:linear-gradient(to right,rgba(66,10,14,.2),transparent)\",\"mix-blend-mode:darken\"]],[false,{\".toaster\":false},[\"filter:contrast(1.5) brightness(.9)\"]],[false,{\".toaster::after\":false},[\"background:radial-gradient(circle,#804e0f,#3b003b)\",\"mix-blend-mode:screen\"]],[false,{\".walden\":false},[\"filter:brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6)\"]],[false,{\".walden::after\":false},[\"background:#04c\",\"mix-blend-mode:screen\",\"opacity:.3\"]],[false,{\".hudson\":false},[\"filter:brightness(1.2) contrast(.9) saturate(1.1)\"]],[false,{\".hudson::after\":false},[\"background:radial-gradient(circle,#a6b1ff 50%,#342134)\",\"mix-blend-mode:multiply\",\"opacity:.5\"]],[false,{\".earlybird\":false},[\"filter:contrast(.9) sepia(.2)\"]],[false,{\".earlybird::after\":false},[\"background:radial-gradient(circle,#d0ba8e 20%,#360309 85%,#1d0210 100%)\",\"mix-blend-mode:overlay\"]],[false,{\".mayfair\":false},[\"filter:contrast(1.1) saturate(1.1)\"]],[false,{\".mayfair::after\":false},[\"background:radial-gradient(circle at 40% 40%,rgba(255,255,255,.8),rgba(255,200,200,.6),#111 60%)\",\"mix-blend-mode:overlay\",\"opacity:.4\"]],[false,{\".lofi\":false},[\"filter:saturate(1.1) contrast(1.5)\"]],[false,{\".lofi::after\":false},[\"background:radial-gradient(circle,transparent 70%,#222 150%)\",\"mix-blend-mode:multiply\"]],[false,{\"._1977\":false},[\"filter:contrast(1.1) brightness(1.1) saturate(1.3)\"]],[false,{\"._1977:after\":false},[\"background:rgba(243,106,188,.3)\",\"mix-blend-mode:screen\"]],[false,{\".brooklyn\":false},[\"filter:contrast(.9) brightness(1.1)\"]],[false,{\".brooklyn::after\":false},[\"background:radial-gradient(circle,rgba(168,223,193,.4) 70%,#c4b7c8)\",\"mix-blend-mode:overlay\"]],[false,{\".xpro2\":false},[\"filter:sepia(.3)\"]],[false,{\".xpro2::after\":false},[\"background:radial-gradient(circle,#e6e7e0 40%,rgba(43,42,161,.6) 110%)\",\"mix-blend-mode:color-burn\"]],[false,{\".nashville\":false},[\"filter:sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2)\"]],[false,{\".nashville::after\":false},[\"background:rgba(0,70,150,.4)\",\"mix-blend-mode:lighten\"]],[false,{\".nashville::before\":false},[\"background:rgba(247,176,153,.56)\",\"mix-blend-mode:darken\"]],[false,{\".lark\":false},[\"filter:contrast(.9)\"]],[false,{\".lark::after\":false},[\"background:rgba(242,242,242,.8)\",\"mix-blend-mode:darken\"]],[false,{\".lark::before\":false},[\"background:#22253f\",\"mix-blend-mode:color-dodge\"]],[false,{\".moon\":false},[\"filter:grayscale(1) contrast(1.1) brightness(1.1)\"]],[false,{\".moon::before\":false},[\"background:#a0a0a0\",\"mix-blend-mode:soft-light\"]],[false,{\".moon::after\":false},[\"background:#383838\",\"mix-blend-mode:lighten\"]],[false,{\".clarendon\":false},[\"filter:contrast(1.2) saturate(1.35)\"]],[false,{\".clarendon:before\":false},[\"background:rgba(127,187,227,.2)\",\"mix-blend-mode:overlay\"]],[false,{\".willow\":false},[\"filter:grayscale(.5) contrast(.95) brightness(.9)\"]],[false,{\".willow::before\":false},[\"background-image:radial-gradient(circle,40%,#d4a9af 55%,#000 150%)\",\"mix-blend-mode:overlay\"]],[false,{\".rise\":false},[\"filter:brightness(1.05) sepia(.2) contrast(.9) saturate(.9)\"]],[false,{\".rise::after\":false},[\"background:radial-gradient(circle,rgba(232,197,152,.8),transparent 90%)\",\"mix-blend-mode:overlay\",\"opacity:.6\"]],[false,{\".rise::before\":false},[\"background:radial-gradient(circle,rgba(236,205,169,.15) 55%,rgba(50,30,7,.4))\",\"mix-blend-mode:multiply\"]],[false,{\"._1977:after\":false,\"._1977:before\":false,\"rs-pzimg-wrap.aden:after\":false,\".aden:before\":false,\".brooklyn:after\":false,\".brooklyn:before\":false,\".clarendon:after\":false,\".clarendon:before\":false,\".earlybird:after\":false,\".earlybird:before\":false,\".gingham:after\":false,\".gingham:before\":false,\".hudson:after\":false,\".hudson:before\":false,\".inkwell:after\":false,\".inkwell:before\":false,\".lark:after\":false,\".lark:before\":false,\".lofi:after\":false,\".lofi:before\":false,\".mayfair:after\":false,\".mayfair:before\":false,\".moon:after\":false,\".moon:before\":false,\".nashville:after\":false,\".nashville:before\":false,\".perpetua:after\":false,\".perpetua:before\":false,\".reyes:after\":false,\".reyes:before\":false,\".rise:after\":false,\".rise:before\":false,\".slumber:after\":false,\".slumber:before\":false,\".toaster:after\":false,\".toaster:before\":false,\".walden:after\":false,\".walden:before\":false,\".willow:after\":false,\".willow:before\":false,\".xpro2:after\":false,\".xpro2:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"height:100%\",\"width:100%\",\"top:0\",\"left:0\",\"position:absolute\",\"pointer-events:none\"]],[false,{\"._1977\":false,\".aden\":false,\".brooklyn\":false,\".clarendon\":false,\".earlybird\":false,\".gingham\":false,\".hudson\":false,\".inkwell\":false,\".lark\":false,\".lofi\":false,\".mayfair\":false,\".moon\":false,\".nashville\":false,\".perpetua\":false,\".reyes\":false,\".rise\":false,\".slumber\":false,\".toaster\":false,\".walden\":false,\".willow\":false,\".xpro2\":false},[\"position:absolute\"]],[false,{\"._1977:before\":false,\".aden:before\":false,\".brooklyn:before\":false,\".clarendon:before\":false,\".earlybird:before\":false,\".gingham:before\":false,\".hudson:before\":false,\".inkwell:before\":false,\".lark:before\":false,\".lofi:before\":false,\".mayfair:before\":false,\".moon:before\":false,\".nashville:before\":false,\".perpetua:before\":false,\".reyes:before\":false,\".rise:before\":false,\".slumber:before\":false,\".toaster:before\":false,\".walden:before\":false,\".willow:before\":false,\".xpro2:before\":false},[\"z-index:30\"]],[false,{\"._1977:after\":false,\".aden:after\":false,\".brooklyn:after\":false,\".clarendon:after\":false,\".earlybird:after\":false,\".gingham:after\":false,\".hudson:after\":false,\".inkwell:after\":false,\".lark:after\":false,\".lofi:after\":false,\".mayfair:after\":false,\".moon:after\":false,\".nashville:after\":false,\".perpetua:after\":false,\".reyes:after\":false,\".rise:after\":false,\".slumber:after\":false,\".toaster:after\":false,\".walden:after\":false,\".willow:after\":false,\".xpro2:after\":false},[\"z-index:40\"]],[false,{\".slumber\":false},[\"filter:saturate(.66) brightness(1.05)\"]],[false,{\".slumber::after\":false},[\"background:rgba(125,105,24,.5)\",\"mix-blend-mode:soft-light\"]],[false,{\".slumber::before\":false},[\"background:rgba(69,41,12,.4)\",\"mix-blend-mode:lighten\"]],[false,{\".willow::after\":false},[\"background-color:#d8cdcb\",\"mix-blend-mode:color\"]],[false,\"@media not all and (min-resolution:.001dpcm){\"],[false,\"@supports (-webkit-appearance:none){\"],[false,{\".willow\":false},[\"filter:grayscale(1) contrast(.95) brightness(.9)\"]],[false,{\".willow::after\":false},[\"background-color:transparent\"]],[false,\"}\"],[false,\"}\"],[false,{\"rs-pzimg-wrap.perpetua:before\":false,\"rs-pzimg-wrap.perpetua:after\":false,\"rs-pzimg-wrap.nashville:before\":false,\"rs-pzimg-wrap.nashville:after\":false,\"rs-pzimg-wrap.xpro2:before\":false,\"rs-pzimg-wrap.xpro2:after\":false,\"rs-pzimg-wrap._1977:after\":false,\"rs-pzimg-wrap._1977:before\":false,\"rs-pzimg-wrap.aden:after\":false,\"rs-pzimg-wrap.aden:before\":false,\"rs-pzimg-wrap.brooklyn:after\":false,\"rs-pzimg-wrap.brooklyn:before\":false,\"rs-pzimg-wrap.clarendon:after\":false,\"rs-pzimg-wrap.clarendon:before\":false,\"rs-pzimg-wrap.earlybird:after\":false,\"rs-pzimg-wrap.earlybird:before\":false,\"rs-pzimg-wrap.gingham:after\":false,\"rs-pzimg-wrap.gingham:before\":false,\"rs-pzimg-wrap.hudson:after\":false,\"rs-pzimg-wrap.hudson:before\":false,\"rs-pzimg-wrap.inkwell:after\":false,\"rs-pzimg-wrap.inkwell:before\":false,\"rs-pzimg-wrap.lark:after\":false,\"rs-pzimg-wrap.lark:before\":false,\"rs-pzimg-wrap.lofi:after\":false,\"rs-pzimg-wrap.lofi:before\":false,\"rs-pzimg-wrap.mayfair:after\":false,\"rs-pzimg-wrap.mayfair:before\":false,\"rs-pzimg-wrap.moon:after\":false,\"rs-pzimg-wrap.moon:before\":false,\"rs-pzimg-wrap.reyes:after\":false,\"rs-pzimg-wrap.reyes:before\":false,\"rs-pzimg-wrap.rise:after\":false,\"rs-pzimg-wrap.rise:before\":false,\"rs-pzimg-wrap.slumber:after\":false,\"rs-pzimg-wrap.slumber:before\":false,\"rs-pzimg-wrap.toaster:after\":false,\"rs-pzimg-wrap.toaster:before\":false,\"rs-pzimg-wrap.walden:after\":false,\"rs-pzimg-wrap.walden:before\":false,\"rs-pzimg-wrap.willow:after\":false,\"rs-pzimg-wrap.willow:before\":false,\"rs-pzimg-wrap:before\":false,\"rs-pzimg-wrap:after\":false},[\"height:500%\",\"width:500%\"]],[false,{\"rs-loader.spinner6\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"display:inline-block\",\"-webkit-animation:rs-revealer-6 1.4s linear infinite\",\"animation:rs-revealer-6 1.4s linear infinite\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span\":false},[\"position:absolute\",\"vertical-align:top\",\"border-radius:100%\",\"display:inline-block\",\"width:8px\",\"height:8px\",\"margin-left:16px\",\"transform-origin:center 20px\",\"-webkit-transform-origin:center 20px\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(2)\":false},[\"transform:rotate(36deg)\",\"-webkit-transform:rotate(36deg)\",\"opacity:.1\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(3)\":false},[\"transform:rotate(72deg)\",\"-webkit-transform:rotate(72deg)\",\"opacity:.2\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(4)\":false},[\"transform:rotate(108deg)\",\"-webkit-transform:rotate(108deg)\",\"opacity:.3\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(5)\":false},[\"transform:rotate(144deg)\",\"-webkit-transform:rotate(144deg)\",\"opacity:.4\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(6)\":false},[\"transform:rotate(180deg)\",\"-webkit-transform:rotate(180deg)\",\"opacity:.5\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(7)\":false},[\"transform:rotate(216deg)\",\"-webkit-transform:rotate(216deg)\",\"opacity:.6\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(8)\":false},[\"transform:rotate(252deg)\",\"-webkit-transform:rotate(252deg)\",\"opacity:.7\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(9)\":false},[\"transform:rotate(288deg)\",\"-webkit-transform:rotate(288deg)\",\"opacity:.8\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(10)\":false},[\"transform:rotate(324deg)\",\"-webkit-transform:rotate(324deg)\",\"opacity:.9\"]],[true,\"@keyframes rs-revealer-6{\"],[true,\"from{transform:rotate(0)}\"],[true,\"to{transform:rotate(360deg)}\"],[true,\"}@-webkit-keyframes rs-revealer-6{\"],[true,\"from{-webkit-transform:rotate(0)}\"],[true,\"to{-webkit-transform:rotate(360deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner7\":false},[\"width:35px\",\"height:35px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner7 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"display:inline-block\",\"padding:0\",\"border-radius:100%\",\"border:2px solid\",\"-webkit-animation:rs-revealer-7 .8s linear infinite\",\"animation:rs-revealer-7 .8s linear infinite\"]],[true,\"@keyframes rs-revealer-7{\"],[true,\"from{transform:rotate(0)}\"],[true,\"to{transform:rotate(360deg)}\"],[true,\"}@-webkit-keyframes rs-revealer-7{\"],[true,\"from{-webkit-transform:rotate(0)}\"],[true,\"to{-webkit-transform:rotate(360deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner8\":false},[\"width:50px\",\"height:50px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner8 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"display:inline-block\",\"padding:0\",\"text-align:left\"]],[false,{\"rs-loader.spinner8 .rs-spinner-inner span\":false},[\"position:absolute\",\"display:inline-block\",\"width:100%\",\"height:100%\",\"border-radius:100%\",\"-webkit-animation:rs-revealer-8 1.6s linear infinite\",\"animation:rs-revealer-8 1.6s linear infinite\"]],[false,{\"rs-loader.spinner8 .rs-spinner-inner span:last-child\":false},[\"animation-delay:-.8s\",\"-webkit-animation-delay:-.8s\"]],[true,\"@keyframes rs-revealer-8{\"],[true,\"0%{transform:scale(0,0);opacity:.5}\"],[true,\"100%{transform:scale(1,1);opacity:0}\"],[true,\"}@-webkit-keyframes rs-revealer-8{\"],[true,\"0%{-webkit-transform:scale(0,0);opacity:.5}\"],[true,\"100%{-webkit-transform:scale(1,1);opacity:0}\"],[true,\"}\"],[false,{\"rs-loader.spinner9\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner9 .rs-spinner-inner span\":false},[\"display:block\",\"width:100%\",\"height:100%\",\"border-radius:50%\",\"opacity:.6\",\"position:absolute\",\"top:0\",\"left:0\",\"-webkit-animation:rs-revealer-9 2s infinite ease-in-out\",\"animation:rs-revealer-9 2s infinite ease-in-out\"]],[false,{\"rs-loader.spinner9 .rs-spinner-inner span:last-child\":false},[\"-webkit-animation-delay:-1s\",\"animation-delay:-1s\"]],[true,\"@-webkit-keyframes rs-revealer-9{\"],[true,\"0%,100%{-webkit-transform:scale(0)}\"],[true,\"50%{-webkit-transform:scale(1)}\"],[true,\"}@keyframes rs-revealer-9{\"],[true,\"0%,100%{transform:scale(0);-webkit-transform:scale(0)}\"],[true,\"50%{transform:scale(1);-webkit-transform:scale(1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner10\":false},[\"width:54px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"text-align:center\",\"font-size:10px\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span\":false},[\"display:block\",\"display:inline-block\",\"height:100%\",\"width:6px\",\"-webkit-animation:rs-revealer-10 1.2s infinite ease-in-out\",\"animation:rs-revealer-10 1.2s infinite ease-in-out\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(2)\":false},[\"-webkit-animation-delay:-1.1s\",\"animation-delay:-1.1s\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(3)\":false},[\"-webkit-animation-delay:-1s\",\"animation-delay:-1s\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(4)\":false},[\"-webkit-animation-delay:-.9s\",\"animation-delay:-.9s\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(5)\":false},[\"-webkit-animation-delay:-.8s\",\"animation-delay:-.8s\"]],[true,\"@-webkit-keyframes rs-revealer-10{\"],[true,\"0%,100%,40%{-webkit-transform:scaleY(.4)}\"],[true,\"20%{-webkit-transform:scaleY(1)}\"],[true,\"}@keyframes rs-revealer-10{\"],[true,\"0%,100%,40%{transform:scaleY(.4);-webkit-transform:scaleY(.4)}\"],[true,\"20%{transform:scaleY(1);-webkit-transform:scaleY(1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner11\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span\":false},[\"display:block\",\"width:33%\",\"height:33%\",\"background-color:#333\",\"float:left\",\"-webkit-animation:rs-revealer-11 1.3s infinite ease-in-out\",\"animation:rs-revealer-11 1.3s infinite ease-in-out\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(1)\":false},[\"-webkit-animation-delay:.2s\",\"animation-delay:.2s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(2)\":false},[\"-webkit-animation-delay:.3s\",\"animation-delay:.3s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(3)\":false},[\"-webkit-animation-delay:.4s\",\"animation-delay:.4s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(4)\":false},[\"-webkit-animation-delay:.1s\",\"animation-delay:.1s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(5)\":false},[\"-webkit-animation-delay:.2s\",\"animation-delay:.2s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(6)\":false},[\"-webkit-animation-delay:.3s\",\"animation-delay:.3s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(7)\":false},[\"-webkit-animation-delay:0s\",\"animation-delay:0s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(8)\":false},[\"-webkit-animation-delay:.1s\",\"animation-delay:.1s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(9)\":false},[\"-webkit-animation-delay:.2s\",\"animation-delay:.2s\"]],[true,\"@-webkit-keyframes rs-revealer-11{\"],[true,\"0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}\"],[true,\"35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}\"],[true,\"}@keyframes rs-revealer-11{\"],[true,\"0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}\"],[true,\"35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner12\":false},[\"width:35px\",\"height:35px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner12 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"-webkit-animation:rs-revealer-12 1s infinite linear\",\"animation:rs-revealer-12 1s infinite linear\"]],[true,\"@-webkit-keyframes rs-revealer-12{\"],[true,\"0%{-webkit-transform:rotate(0)}\"],[true,\"100%{-webkit-transform:rotate(360deg)}\"],[true,\"}@keyframes rs-revealer-12{\"],[true,\"0%{transform:rotate(0)}\"],[true,\"100%{transform:rotate(360deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner13\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span\":false},[\"display:block\",\"width:40%\",\"height:40%\",\"position:absolute\",\"border-radius:50%\",\"-webkit-animation:rs-revealer-13 2s ease infinite\",\"animation:rs-revealer-13 2s ease infinite\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span:nth-child(1)\":false},[\"animation-delay:-1.5s\",\"-webkit-animation-delay:-1.5s\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span:nth-child(2)\":false},[\"animation-delay:-1s\",\"-webkit-animation-delay:-1s\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span:nth-child(3)\":false},[\"animation-delay:-.5s\",\"-webkit-animation-delay:-.5s\"]],[true,\"@keyframes rs-revealer-13{\"],[true,\"0%,100%{transform:translate(0)}\"],[true,\"25%{transform:translate(160%)}\"],[true,\"50%{transform:translate(160%,160%)}\"],[true,\"75%{transform:translate(0,160%)}\"],[true,\"}@-webkit-keyframes rs-revealer-13{\"],[true,\"0%,100%{-webkit-transform:translate(0)}\"],[true,\"25%{-webkit-transform:translate(160%)}\"],[true,\"50%{-webkit-transform:translate(160%,160%)}\"],[true,\"75%{-webkit-transform:translate(0,160%)}\"],[true,\"}\"],[false,{\"rs-loader.spinner14\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"animation:rs-revealer-14 1s infinite linear\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span\":false},[\"display:block\",\"position:absolute\",\"top:50%\",\"left:50%\",\"width:16px\",\"height:16px\",\"border-radius:50%\",\"margin:-8px\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(1)\":false},[\"-webkit-animation:rs-revealer-14-1 2s infinite\",\"animation:rs-revealer-14-1 2s infinite\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(2)\":false},[\"-webkit-animation:rs-revealer-14-2 2s infinite\",\"animation:rs-revealer-14-2 2s infinite\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(3)\":false},[\"-webkit-animation:rs-revealer-14-3 2s infinite\",\"animation:rs-revealer-14-3 2s infinite\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(4)\":false},[\"-webkit-animation:rs-revealer-14-4 2s infinite\",\"animation:rs-revealer-14-4 2s infinite\"]],[true,\"@-webkit-keyframes rs-revealer-14-1{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(80%,80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(80%,80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@-webkit-keyframes rs-revealer-14-2{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(80%,-80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(80%,-80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@-webkit-keyframes rs-revealer-14-3{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(-80%,-80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(-80%,-80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@-webkit-keyframes rs-revealer-14-4{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(-80%,80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(-80%,80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-1{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(80%,80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(80%,80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-2{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(80%,-80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(80%,-80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-3{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(-80%,-80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(-80%,-80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-4{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(-80%,80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(-80%,80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}\"],[false,{\"rs-loader.spinner15\":false},[\"width:40px\",\"height:40px\",\"margin-top:-4px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner15 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\"]],[false,{\"rs-loader.spinner15 .rs-spinner-inner span\":false},[\"display:block\",\"width:20px\",\"height:20px\",\"position:absolute\",\"top:0\",\"left:0\",\"-webkit-animation:rs-revealer-15 1.8s infinite ease-in-out\",\"animation:rs-revealer-15 1.8s infinite ease-in-out\"]],[false,{\"rs-loader.spinner15 .rs-spinner-inner:last-child\":false},[\"-webkit-animation-delay:-.9s\",\"animation-delay:-.9s\"]],[true,\"@-webkit-keyframes rs-revealer-15{\"],[true,\"25%{-webkit-transform:translateX(30px) rotate(-90deg) scale(.5)}\"],[true,\"50%{-webkit-transform:translateX(30px) translateY(30px) rotate(-180deg)}\"],[true,\"75%{-webkit-transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5)}\"],[true,\"100%{-webkit-transform:rotate(-360deg)}\"],[true,\"}@keyframes rs-revealer-15{\"],[true,\"25%{transform:translateX(30px) rotate(-90deg) scale(.5);-webkit-transform:translateX(30px) rotate(-90deg) scale(.5)}\"],[true,\"50%{transform:translateX(30px) translateY(30px) rotate(-179deg);-webkit-transform:translateX(30px) translateY(30px) rotate(-179deg)}\"],[true,\"50.1%{transform:translateX(30px) translateY(30px) rotate(-180deg);-webkit-transform:translateX(30px) translateY(30px) rotate(-180deg)}\"],[true,\"75%{transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5);-webkit-transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5)}\"],[true,\"100%{transform:rotate(-360deg);-webkit-transform:rotate(-360deg)}\"],[true,\"}\"],[false,{\".bgcanvas\":false},[\"display:none\",\"position:absolute\",\"overflow:hidden\"]],[false,{\".RSscrollbar-measure\":false},[\"width:100px\",\"height:100px\",\"overflow:scroll\",\"position:absolute\",\"top:-9999px\"]],[false,{\".avada-has-rev-slider-styles .rev_slider_wrapper\":false},[\"transform:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":14,\"final_size\":0,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"rs-plugin-settings-inline-css\",\"type\":\"text\\/css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":134,\"function\":\"RevSliderFront::add_inline_css\",\"hook\":\"wp_footer\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"#rs-demo-id {}\",\"handle\":\"rs-plugin-settings\"}],\"priority\":70,\"hash\":\"d751713988987e9331980363e24189ce\",\"parse_time\":0.00037407875061035156,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":129,\"final_size\":128,\"element\":{\"name\":\"div\",\"attributes\":{\"class\":\"col-lg-6 blog-title-main amp-wp-7597b7e\",\"data-amp-original-style\":\"background-image: url(\'https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2020\\/01\\/blogimg.jpg\')\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"d838c488549c8fd1e7d64f3251ccc91e\",\"parse_time\":0.0009009838104248047,\"shake_time\":5.0067901611328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-7597b7e:not(#_#_#_#_#_)\":true},[\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2020\\/01\\/blogimg.jpg\\\")\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":177,\"final_size\":175,\"element\":{\"name\":\"div\",\"attributes\":{\"class\":\"col-lg-6 blog-main amp-wp-946752b\",\"data-amp-original-style\":\"background-image: url(\'https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2022\\/06\\/How-Translucent-is-changing-the-Cloud-Native-industry.png\');\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"371b89a535e3765715c09653c2df1640\",\"parse_time\":0.0005581378936767578,\"shake_time\":4.0531158447265625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-946752b:not(#_#_#_#_#_)\":true},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2022\\/06\\/How-Translucent-is-changing-the-Cloud-Native-industry.png\\\")\"]]],\"included\":true}]'); INSERT INTO `wp_postmeta` VALUES (169795,4799,'_amp_validated_environment','a:3:{s:5:\"theme\";a:1:{s:11:\"translucent\";s:3:\"1.0\";}s:7:\"plugins\";a:32:{s:7:\"404page\";s:6:\"11.3.1\";s:26:\"advanced-custom-fields-pro\";s:6:\"5.12.2\";s:16:\"tinymce-advanced\";s:5:\"5.6.0\";s:3:\"amp\";s:5:\"2.3.0\";s:17:\"code-syntax-block\";s:5:\"3.1.1\";s:14:\"contact-form-7\";s:5:\"5.5.3\";s:10:\"duplicator\";s:5:\"1.5.0\";s:25:\"embed-calendly-scheduling\";s:3:\"3.0\";s:18:\"youtube-embed-plus\";s:6:\"14.1.2\";s:13:\"header-footer\";s:5:\"3.2.5\";s:6:\"iframe\";s:3:\"4.5\";s:7:\"imagify\";s:3:\"2.0\";s:15:\"cf7-hubspot-pro\";s:5:\"1.2.1\";s:13:\"popup-builder\";s:6:\"4.1.13\";s:34:\"post-tags-and-categories-for-pages\";s:5:\"1.4.1\";s:8:\"raw-html\";s:5:\"1.6.3\";s:11:\"redirection\";s:5:\"5.3.2\";s:11:\"redis-cache\";s:5:\"2.2.0\";s:26:\"reveal-ids-for-wp-admin-25\";s:5:\"1.5.4\";s:34:\"sendgrid-email-delivery-simplified\";s:6:\"1.11.8\";s:9:\"revslider\";s:6:\"6.5.23\";s:14:\"social-warfare\";s:5:\"4.3.0\";s:26:\"ssl-insecure-content-fixer\";s:5:\"2.7.2\";s:11:\"updraftplus\";s:7:\"1.22.19\";s:8:\"wpdiscuz\";s:5:\"7.4.2\";s:15:\"wp-file-manager\";s:5:\"7.1.6\";s:14:\"wp-google-maps\";s:6:\"9.0.10\";s:5:\"wpide\";s:5:\"3.4.1\";s:23:\"wp-phpmyadmin-extension\";s:7:\"5.2.0.7\";s:14:\"duplicate-post\";s:3:\"4.4\";s:13:\"wordpress-seo\";s:4:\"19.1\";s:21:\"wordpress-seo-premium\";s:4:\"17.7\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:8:\"standard\";}}'),(169796,4800,'_amp_validated_environment','a:3:{s:5:\"theme\";a:1:{s:11:\"translucent\";s:3:\"1.0\";}s:7:\"plugins\";a:32:{s:7:\"404page\";s:6:\"11.3.1\";s:26:\"advanced-custom-fields-pro\";s:6:\"5.12.2\";s:16:\"tinymce-advanced\";s:5:\"5.6.0\";s:3:\"amp\";s:5:\"2.3.0\";s:17:\"code-syntax-block\";s:5:\"3.1.1\";s:14:\"contact-form-7\";s:5:\"5.5.3\";s:10:\"duplicator\";s:5:\"1.5.0\";s:25:\"embed-calendly-scheduling\";s:3:\"3.0\";s:18:\"youtube-embed-plus\";s:6:\"14.1.2\";s:13:\"header-footer\";s:5:\"3.2.5\";s:6:\"iframe\";s:3:\"4.5\";s:7:\"imagify\";s:3:\"2.0\";s:15:\"cf7-hubspot-pro\";s:5:\"1.2.1\";s:13:\"popup-builder\";s:6:\"4.1.13\";s:34:\"post-tags-and-categories-for-pages\";s:5:\"1.4.1\";s:8:\"raw-html\";s:5:\"1.6.3\";s:11:\"redirection\";s:5:\"5.3.2\";s:11:\"redis-cache\";s:5:\"2.2.0\";s:26:\"reveal-ids-for-wp-admin-25\";s:5:\"1.5.4\";s:34:\"sendgrid-email-delivery-simplified\";s:6:\"1.11.8\";s:9:\"revslider\";s:6:\"6.5.23\";s:14:\"social-warfare\";s:5:\"4.3.0\";s:26:\"ssl-insecure-content-fixer\";s:5:\"2.7.2\";s:11:\"updraftplus\";s:7:\"1.22.19\";s:8:\"wpdiscuz\";s:5:\"7.4.2\";s:15:\"wp-file-manager\";s:5:\"7.1.6\";s:14:\"wp-google-maps\";s:6:\"9.0.10\";s:5:\"wpide\";s:5:\"3.4.1\";s:23:\"wp-phpmyadmin-extension\";s:7:\"5.2.0.7\";s:14:\"duplicate-post\";s:3:\"4.4\";s:13:\"wordpress-seo\";s:4:\"19.1\";s:21:\"wordpress-seo-premium\";s:4:\"17.7\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:8:\"standard\";}}'),(169797,4800,'_amp_queried_object','a:2:{s:2:\"id\";i:3;s:4:\"type\";s:4:\"term\";}'),(169798,4799,'_amp_queried_object','a:2:{s:2:\"id\";i:4708;s:4:\"type\";s:4:\"post\";}'); INSERT INTO `wp_postmeta` VALUES (169799,4799,'_amp_stylesheets','[{\"group\":\"amp-custom\",\"original_size\":140936,\"final_size\":11243,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/bootstrap.min.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"834eec339f2b2b8368c90e8ee4e0c6d0\",\"parse_time\":1.5320749282836914,\"shake_time\":0.03958916664123535,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\":root\":true},[\"--blue:#007bff\",\"--indigo:#6610f2\",\"--purple:#6f42c1\",\"--pink:#e83e8c\",\"--red:#dc3545\",\"--orange:#fd7e14\",\"--yellow:#ffc107\",\"--green:#28a745\",\"--teal:#20c997\",\"--cyan:#17a2b8\",\"--white:#fff\",\"--gray:#6c757d\",\"--gray-dark:#343a40\",\"--primary:#007bff\",\"--secondary:#6c757d\",\"--success:#28a745\",\"--info:#17a2b8\",\"--warning:#ffc107\",\"--danger:#dc3545\",\"--light:#f8f9fa\",\"--dark:#343a40\",\"--breakpoint-xs:0\",\"--breakpoint-sm:576px\",\"--breakpoint-md:768px\",\"--breakpoint-lg:992px\",\"--breakpoint-xl:1200px\",\"--font-family-sans-serif:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,\\\"Liberation Mono\\\",\\\"Courier New\\\",monospace\"]],[true,{\"*\":true,\"::after\":true,\"::before\":true},[\"box-sizing:border-box\"]],[true,{\"html\":true},[\"font-family:sans-serif\",\"line-height:1.15\",\"-webkit-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\",\"-ms-overflow-style:scrollbar\",\"-webkit-tap-highlight-color:transparent\"]],[true,{\"article\":false,\"aside\":false,\"figcaption\":false,\"figure\":false,\"footer\":true,\"header\":true,\"hgroup\":false,\"main\":false,\"nav\":true,\"section\":true},[\"display:block\"]],[true,{\"body\":true},[\"margin:0\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"font-size:1rem\",\"font-weight:400\",\"line-height:1.5\",\"color:#212529\",\"text-align:left\",\"background-color:#fff\"]],[false,{\"[tabindex=\\\"-1\\\"]:focus:not(#_#_#_#_#_#_#_)\":false},[\"outline:0\"]],[false,{\"hr\":false},[\"box-sizing:content-box\",\"height:0\",\"overflow:visible\"]],[true,{\"h1\":true,\"h2\":false,\"h3\":true,\"h4\":false,\"h5\":true,\"h6\":true},[\"margin-top:0\",\"margin-bottom:.5rem\"]],[true,{\"p\":true},[\"margin-top:0\",\"margin-bottom:1rem\"]],[false,{\"abbr[data-original-title]\":false,\"abbr[title]\":false},[\"text-decoration:underline\",\"text-decoration:underline dotted\",\"-webkit-text-decoration:underline dotted\",\"cursor:help\",\"border-bottom:0\"]],[false,{\"address\":false},[\"margin-bottom:1rem\",\"font-style:normal\",\"line-height:inherit\"]],[true,{\"dl\":false,\"ol\":false,\"ul\":true},[\"margin-top:0\",\"margin-bottom:1rem\"]],[true,{\"ol ol\":false,\"ol ul\":false,\"ul ol\":false,\"ul ul\":true},[\"margin-bottom:0\"]],[false,{\"dt\":false},[\"font-weight:700\"]],[false,{\"dd\":false},[\"margin-bottom:.5rem\",\"margin-left:0\"]],[false,{\"blockquote\":false},[\"margin:0 0 1rem\"]],[false,{\"dfn\":false},[\"font-style:italic\"]],[true,{\"b\":false,\"strong\":true},[\"font-weight:bolder\"]],[false,{\"small\":false},[\"font-size:80%\"]],[false,{\"sub\":false,\"sup\":false},[\"position:relative\",\"font-size:75%\",\"line-height:0\",\"vertical-align:baseline\"]],[false,{\"sub\":false},[\"bottom:-.25em\"]],[false,{\"sup\":false},[\"top:-.5em\"]],[true,{\"a\":true},[\"color:#007bff\",\"text-decoration:none\",\"background-color:transparent\",\"-webkit-text-decoration-skip:objects\"]],[true,{\"a:hover\":true},[\"color:#0056b3\",\"text-decoration:underline\"]],[true,{\"a:not([href]):not([tabindex])\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"a:not([href]):not([tabindex]):focus\":true,\"a:not([href]):not([tabindex]):hover\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"a:not([href]):not([tabindex]):focus\":true},[\"outline:0\"]],[false,{\"code\":false,\"kbd\":false,\"pre\":false,\"samp\":false},[\"font-family:SFMono-Regular,Menlo,Monaco,Consolas,\\\"Liberation Mono\\\",\\\"Courier New\\\",monospace\",\"font-size:1em\"]],[false,{\"pre\":false},[\"margin-top:0\",\"margin-bottom:1rem\",\"overflow:auto\",\"-ms-overflow-style:scrollbar\"]],[false,{\"figure\":false},[\"margin:0 0 1rem\"]],[true,{\"amp-img\":true,\"amp-anim\":false},[\"vertical-align:middle\",\"border-style:none\"]],[false,{\"svg\":false},[\"overflow:hidden\",\"vertical-align:middle\"]],[false,{\"table\":false},[\"border-collapse:collapse\"]],[false,{\"caption\":false},[\"padding-top:.75rem\",\"padding-bottom:.75rem\",\"color:#6c757d\",\"text-align:left\",\"caption-side:bottom\"]],[false,{\"th\":false},[\"text-align:inherit\"]],[false,{\"label\":false},[\"display:inline-block\",\"margin-bottom:.5rem\"]],[true,{\"button\":true},[\"border-radius:0\"]],[true,{\"button:focus\":true},[\"outline:1px dotted\",\"outline:5px auto -webkit-focus-ring-color\"]],[true,{\"button\":true,\"input\":false,\"optgroup\":false,\"select\":false,\"textarea\":false},[\"margin:0\",\"font-family:inherit\",\"font-size:inherit\",\"line-height:inherit\"]],[true,{\"button\":true,\"input\":false},[\"overflow:visible\"]],[true,{\"button\":true,\"select\":false},[\"text-transform:none\"]],[true,{\"[type=reset]\":true,\"[type=submit]\":true,\"button\":true,\"html [type=button]\":true},[\"-webkit-appearance:button\"]],[true,{\"[type=button]::-moz-focus-inner\":true,\"[type=reset]::-moz-focus-inner\":true,\"[type=submit]::-moz-focus-inner\":true,\"button::-moz-focus-inner\":true},[\"padding:0\",\"border-style:none\"]],[false,{\"input[type=checkbox]\":false,\"input[type=radio]\":false},[\"box-sizing:border-box\",\"padding:0\"]],[false,{\"input[type=date]\":false,\"input[type=datetime-local]\":false,\"input[type=month]\":false,\"input[type=time]\":false},[\"-webkit-appearance:listbox\"]],[false,{\"textarea\":false},[\"overflow:auto\",\"resize:vertical\"]],[false,{\"fieldset\":false},[\"min-width:0\",\"padding:0\",\"margin:0\",\"border:0\"]],[false,{\"legend\":false},[\"display:block\",\"width:100%\",\"max-width:100%\",\"padding:0\",\"margin-bottom:.5rem\",\"font-size:1.5rem\",\"line-height:inherit\",\"color:inherit\",\"white-space:normal\"]],[false,{\"progress\":false},[\"vertical-align:baseline\"]],[true,{\"[type=number]::-webkit-inner-spin-button\":true,\"[type=number]::-webkit-outer-spin-button\":true},[\"height:auto\"]],[true,{\"[type=search]\":true},[\"outline-offset:-2px\",\"-webkit-appearance:none\"]],[true,{\"[type=search]::-webkit-search-cancel-button\":true,\"[type=search]::-webkit-search-decoration\":true},[\"-webkit-appearance:none\"]],[true,{\"::-webkit-file-upload-button\":true},[\"font:inherit\",\"-webkit-appearance:button\"]],[false,{\"output\":false},[\"display:inline-block\"]],[false,{\"summary\":false},[\"display:list-item\",\"cursor:pointer\"]],[false,{\"template\":false},[\"display:none\"]],[true,{\"[hidden]:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".h1\":false,\".h2\":false,\".h3\":false,\".h4\":false,\".h5\":false,\".h6\":false,\"h1\":true,\"h2\":false,\"h3\":true,\"h4\":false,\"h5\":true,\"h6\":true},[\"margin-bottom:.5rem\",\"font-family:inherit\",\"font-weight:500\",\"line-height:1.2\",\"color:inherit\"]],[true,{\".h1\":false,\"h1\":true},[\"font-size:2.5rem\"]],[false,{\".h2\":false,\"h2\":false},[\"font-size:2rem\"]],[true,{\".h3\":false,\"h3\":true},[\"font-size:1.75rem\"]],[false,{\".h4\":false,\"h4\":false},[\"font-size:1.5rem\"]],[true,{\".h5\":false,\"h5\":true},[\"font-size:1.25rem\"]],[true,{\".h6\":false,\"h6\":true},[\"font-size:1rem\"]],[false,{\".lead\":false},[\"font-size:1.25rem\",\"font-weight:300\"]],[false,{\".display-1\":false},[\"font-size:6rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\".display-2\":false},[\"font-size:5.5rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\".display-3\":false},[\"font-size:4.5rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\".display-4\":false},[\"font-size:3.5rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\"hr\":false},[\"margin-top:1rem\",\"margin-bottom:1rem\",\"border:0\",\"border-top:1px solid rgba(0,0,0,.1)\"]],[false,{\".small\":false,\"small\":false},[\"font-size:80%\",\"font-weight:400\"]],[false,{\".mark\":false,\"mark\":false},[\"padding:.2em\",\"background-color:#fcf8e3\"]],[false,{\".list-unstyled\":false},[\"padding-left:0\",\"list-style:none\"]],[false,{\".list-inline\":false},[\"padding-left:0\",\"list-style:none\"]],[false,{\".list-inline-item\":false},[\"display:inline-block\"]],[false,{\".list-inline-item:not(:last-child)\":false},[\"margin-right:.5rem\"]],[false,{\".initialism\":false},[\"font-size:90%\",\"text-transform:uppercase\"]],[false,{\".blockquote\":false},[\"margin-bottom:1rem\",\"font-size:1.25rem\"]],[false,{\".blockquote-footer\":false},[\"display:block\",\"font-size:80%\",\"color:#6c757d\"]],[false,{\".blockquote-footer::before\":false},[\"content:\\\"\\u2014\\u00a0\\\"\"]],[false,{\".img-fluid\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".img-thumbnail\":false},[\"padding:.25rem\",\"background-color:#fff\",\"border:1px solid #dee2e6\",\"border-radius:.25rem\",\"max-width:100%\",\"height:auto\"]],[false,{\".figure\":false},[\"display:inline-block\"]],[false,{\".figure-img\":false},[\"margin-bottom:.5rem\",\"line-height:1\"]],[false,{\".figure-caption\":false},[\"font-size:90%\",\"color:#6c757d\"]],[false,{\"code\":false},[\"font-size:87.5%\",\"color:#e83e8c\",\"word-break:break-word\"]],[false,{\"a>code\":false},[\"color:inherit\"]],[false,{\"kbd\":false},[\"padding:.2rem .4rem\",\"font-size:87.5%\",\"color:#fff\",\"background-color:#212529\",\"border-radius:.2rem\"]],[false,{\"kbd kbd\":false},[\"padding:0\",\"font-size:100%\",\"font-weight:700\"]],[false,{\"pre\":false},[\"display:block\",\"font-size:87.5%\",\"color:#212529\"]],[false,{\"pre code\":false},[\"font-size:inherit\",\"color:inherit\",\"word-break:normal\"]],[false,{\".pre-scrollable\":false},[\"max-height:340px\",\"overflow-y:scroll\"]],[true,{\".container\":true},[\"width:100%\",\"padding-right:15px\",\"padding-left:15px\",\"margin-right:auto\",\"margin-left:auto\"]],[true,\"@media (min-width:576px){\"],[true,{\".container\":true},[\"max-width:540px\"]],[true,\"}\"],[true,\"@media (min-width:768px){\"],[true,{\".container\":true},[\"max-width:720px\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[true,{\".container\":true},[\"max-width:960px\"]],[true,\"}\"],[true,\"@media (min-width:1200px){\"],[true,{\".container\":true},[\"max-width:1140px\"]],[true,\"}\"],[false,{\".container-fluid\":false},[\"width:100%\",\"padding-right:15px\",\"padding-left:15px\",\"margin-right:auto\",\"margin-left:auto\"]],[true,{\".row\":true},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"margin-right:-15px\",\"margin-left:-15px\"]],[false,{\".no-gutters\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".no-gutters>.col\":false,\".no-gutters>[class*=col-]\":false},[\"padding-right:0\",\"padding-left:0\"]],[true,{\".col\":true,\".col-1\":false,\".col-10\":true,\".col-11\":false,\".col-12\":true,\".col-2\":true,\".col-3\":false,\".col-4\":true,\".col-5\":true,\".col-6\":true,\".col-7\":false,\".col-8\":false,\".col-9\":false,\".col-auto\":false,\".col-lg\":false,\".col-lg-1\":false,\".col-lg-10\":false,\".col-lg-11\":false,\".col-lg-12\":true,\".col-lg-2\":true,\".col-lg-3\":true,\".col-lg-4\":true,\".col-lg-5\":true,\".col-lg-6\":true,\".col-lg-7\":true,\".col-lg-8\":true,\".col-lg-9\":true,\".col-lg-auto\":false,\".col-md\":false,\".col-md-1\":false,\".col-md-10\":true,\".col-md-11\":false,\".col-md-12\":true,\".col-md-2\":true,\".col-md-3\":false,\".col-md-4\":true,\".col-md-5\":false,\".col-md-6\":true,\".col-md-7\":false,\".col-md-8\":true,\".col-md-9\":false,\".col-md-auto\":false,\".col-sm\":false,\".col-sm-1\":false,\".col-sm-10\":false,\".col-sm-11\":false,\".col-sm-12\":true,\".col-sm-2\":false,\".col-sm-3\":false,\".col-sm-4\":false,\".col-sm-5\":false,\".col-sm-6\":false,\".col-sm-7\":false,\".col-sm-8\":false,\".col-sm-9\":false,\".col-sm-auto\":false,\".col-xl\":false,\".col-xl-1\":false,\".col-xl-10\":false,\".col-xl-11\":false,\".col-xl-12\":false,\".col-xl-2\":false,\".col-xl-3\":false,\".col-xl-4\":false,\".col-xl-5\":false,\".col-xl-6\":false,\".col-xl-7\":false,\".col-xl-8\":false,\".col-xl-9\":false,\".col-xl-auto\":false},[\"position:relative\",\"width:100%\",\"min-height:1px\",\"padding-right:15px\",\"padding-left:15px\"]],[true,{\".col\":true},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[true,{\".col-4\":true},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[true,{\".col-5\":true},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[true,{\".col-6\":true},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[true,{\".col-10\":true},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-3\":false},[\"margin-left:25%\"]],[false,{\".offset-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-6\":false},[\"margin-left:50%\"]],[false,{\".offset-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-9\":false},[\"margin-left:75%\"]],[false,{\".offset-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-11\":false},[\"margin-left:91.666667%\"]],[true,\"@media (min-width:576px){\"],[false,{\".col-sm\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-sm-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-sm-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[false,{\".col-sm-2\":false},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-sm-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[false,{\".col-sm-4\":false},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-sm-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[false,{\".col-sm-6\":false},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-sm-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-sm-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-sm-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[false,{\".col-sm-10\":false},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-sm-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-sm-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-sm-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-sm-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-sm-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-sm-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-sm-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-sm-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-sm-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-sm-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-sm-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-sm-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-sm-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-sm-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-sm-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-sm-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-sm-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-sm-0\":false},[\"margin-left:0\"]],[false,{\".offset-sm-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-sm-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-sm-3\":false},[\"margin-left:25%\"]],[false,{\".offset-sm-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-sm-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-sm-6\":false},[\"margin-left:50%\"]],[false,{\".offset-sm-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-sm-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-sm-9\":false},[\"margin-left:75%\"]],[false,{\".offset-sm-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-sm-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[true,\"@media (min-width:768px){\"],[false,{\".col-md\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-md-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-md-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-md-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-md-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[true,{\".col-md-4\":true},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-md-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[true,{\".col-md-6\":true},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-md-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[true,{\".col-md-8\":true},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-md-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[true,{\".col-md-10\":true},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-md-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-md-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-md-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-md-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-md-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-md-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-md-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-md-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-md-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-md-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-md-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-md-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-md-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-md-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-md-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-md-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-md-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-md-0\":false},[\"margin-left:0\"]],[false,{\".offset-md-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-md-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-md-3\":false},[\"margin-left:25%\"]],[false,{\".offset-md-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-md-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-md-6\":false},[\"margin-left:50%\"]],[false,{\".offset-md-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-md-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-md-9\":false},[\"margin-left:75%\"]],[false,{\".offset-md-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-md-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[false,{\".col-lg\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-lg-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-lg-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-lg-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[true,{\".col-lg-3\":true},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[true,{\".col-lg-4\":true},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[true,{\".col-lg-5\":true},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[true,{\".col-lg-6\":true},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[true,{\".col-lg-7\":true},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[true,{\".col-lg-8\":true},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[true,{\".col-lg-9\":true},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[false,{\".col-lg-10\":false},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-lg-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-lg-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-lg-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-lg-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-lg-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-lg-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-lg-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-lg-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-lg-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-lg-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-lg-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-lg-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-lg-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-lg-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-lg-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-lg-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-lg-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-lg-0\":false},[\"margin-left:0\"]],[false,{\".offset-lg-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-lg-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-lg-3\":false},[\"margin-left:25%\"]],[false,{\".offset-lg-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-lg-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-lg-6\":false},[\"margin-left:50%\"]],[false,{\".offset-lg-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-lg-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-lg-9\":false},[\"margin-left:75%\"]],[false,{\".offset-lg-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-lg-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".col-xl\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-xl-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-xl-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[false,{\".col-xl-2\":false},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-xl-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[false,{\".col-xl-4\":false},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-xl-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[false,{\".col-xl-6\":false},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-xl-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-xl-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-xl-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[false,{\".col-xl-10\":false},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-xl-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[false,{\".col-xl-12\":false},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-xl-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-xl-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-xl-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-xl-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-xl-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-xl-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-xl-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-xl-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-xl-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-xl-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-xl-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-xl-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-xl-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-xl-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-xl-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-xl-0\":false},[\"margin-left:0\"]],[false,{\".offset-xl-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-xl-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-xl-3\":false},[\"margin-left:25%\"]],[false,{\".offset-xl-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-xl-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-xl-6\":false},[\"margin-left:50%\"]],[false,{\".offset-xl-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-xl-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-xl-9\":false},[\"margin-left:75%\"]],[false,{\".offset-xl-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-xl-11\":false},[\"margin-left:91.666667%\"]],[false,\"}\"],[false,{\".table\":false},[\"width:100%\",\"margin-bottom:1rem\",\"background-color:transparent\"]],[false,{\".table td\":false,\".table th\":false},[\"padding:.75rem\",\"vertical-align:top\",\"border-top:1px solid #dee2e6\"]],[false,{\".table thead th\":false},[\"vertical-align:bottom\",\"border-bottom:2px solid #dee2e6\"]],[false,{\".table tbody+tbody\":false},[\"border-top:2px solid #dee2e6\"]],[false,{\".table .table\":false},[\"background-color:#fff\"]],[false,{\".table-sm td\":false,\".table-sm th\":false},[\"padding:.3rem\"]],[false,{\".table-bordered\":false},[\"border:1px solid #dee2e6\"]],[false,{\".table-bordered td\":false,\".table-bordered th\":false},[\"border:1px solid #dee2e6\"]],[false,{\".table-bordered thead td\":false,\".table-bordered thead th\":false},[\"border-bottom-width:2px\"]],[false,{\".table-borderless tbody+tbody\":false,\".table-borderless td\":false,\".table-borderless th\":false,\".table-borderless thead th\":false},[\"border:0\"]],[false,{\".table-striped tbody tr:nth-of-type(odd)\":false},[\"background-color:rgba(0,0,0,.05)\"]],[false,{\".table-hover tbody tr:hover\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table-primary\":false,\".table-primary>td\":false,\".table-primary>th\":false},[\"background-color:#b8daff\"]],[false,{\".table-hover .table-primary:hover\":false},[\"background-color:#9fcdff\"]],[false,{\".table-hover .table-primary:hover>td\":false,\".table-hover .table-primary:hover>th\":false},[\"background-color:#9fcdff\"]],[false,{\".table-secondary\":false,\".table-secondary>td\":false,\".table-secondary>th\":false},[\"background-color:#d6d8db\"]],[false,{\".table-hover .table-secondary:hover\":false},[\"background-color:#c8cbcf\"]],[false,{\".table-hover .table-secondary:hover>td\":false,\".table-hover .table-secondary:hover>th\":false},[\"background-color:#c8cbcf\"]],[false,{\".table-success\":false,\".table-success>td\":false,\".table-success>th\":false},[\"background-color:#c3e6cb\"]],[false,{\".table-hover .table-success:hover\":false},[\"background-color:#b1dfbb\"]],[false,{\".table-hover .table-success:hover>td\":false,\".table-hover .table-success:hover>th\":false},[\"background-color:#b1dfbb\"]],[false,{\".table-info\":false,\".table-info>td\":false,\".table-info>th\":false},[\"background-color:#bee5eb\"]],[false,{\".table-hover .table-info:hover\":false},[\"background-color:#abdde5\"]],[false,{\".table-hover .table-info:hover>td\":false,\".table-hover .table-info:hover>th\":false},[\"background-color:#abdde5\"]],[false,{\".table-warning\":false,\".table-warning>td\":false,\".table-warning>th\":false},[\"background-color:#ffeeba\"]],[false,{\".table-hover .table-warning:hover\":false},[\"background-color:#ffe8a1\"]],[false,{\".table-hover .table-warning:hover>td\":false,\".table-hover .table-warning:hover>th\":false},[\"background-color:#ffe8a1\"]],[false,{\".table-danger\":false,\".table-danger>td\":false,\".table-danger>th\":false},[\"background-color:#f5c6cb\"]],[false,{\".table-hover .table-danger:hover\":false},[\"background-color:#f1b0b7\"]],[false,{\".table-hover .table-danger:hover>td\":false,\".table-hover .table-danger:hover>th\":false},[\"background-color:#f1b0b7\"]],[false,{\".table-light\":false,\".table-light>td\":false,\".table-light>th\":false},[\"background-color:#fdfdfe\"]],[false,{\".table-hover .table-light:hover\":false},[\"background-color:#ececf6\"]],[false,{\".table-hover .table-light:hover>td\":false,\".table-hover .table-light:hover>th\":false},[\"background-color:#ececf6\"]],[false,{\".table-dark\":false,\".table-dark>td\":false,\".table-dark>th\":false},[\"background-color:#c6c8ca\"]],[false,{\".table-hover .table-dark:hover\":false},[\"background-color:#b9bbbe\"]],[false,{\".table-hover .table-dark:hover>td\":false,\".table-hover .table-dark:hover>th\":false},[\"background-color:#b9bbbe\"]],[false,{\".table-active\":false,\".table-active>td\":false,\".table-active>th\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table-hover .table-active:hover\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table-hover .table-active:hover>td\":false,\".table-hover .table-active:hover>th\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table .thead-dark th\":false},[\"color:#fff\",\"background-color:#212529\",\"border-color:#32383e\"]],[false,{\".table .thead-light th\":false},[\"color:#495057\",\"background-color:#e9ecef\",\"border-color:#dee2e6\"]],[false,{\".table-dark\":false},[\"color:#fff\",\"background-color:#212529\"]],[false,{\".table-dark td\":false,\".table-dark th\":false,\".table-dark thead th\":false},[\"border-color:#32383e\"]],[false,{\".table-dark.table-bordered\":false},[\"border:0\"]],[false,{\".table-dark.table-striped tbody tr:nth-of-type(odd)\":false},[\"background-color:rgba(255,255,255,.05)\"]],[false,{\".table-dark.table-hover tbody tr:hover\":false},[\"background-color:rgba(255,255,255,.075)\"]],[false,\"@media (max-width:575.98px){\"],[false,{\".table-responsive-sm\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-sm>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:767.98px){\"],[false,{\".table-responsive-md\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-md>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:991.98px){\"],[false,{\".table-responsive-lg\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-lg>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:1199.98px){\"],[false,{\".table-responsive-xl\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-xl>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,{\".table-responsive\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive>.table-bordered\":false},[\"border:0\"]],[false,{\".form-control\":false},[\"display:block\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"padding:.375rem .75rem\",\"font-size:1rem\",\"line-height:1.5\",\"color:#495057\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid #ced4da\",\"border-radius:.25rem\",\"transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".form-control\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".form-control::-ms-expand\":false},[\"background-color:transparent\",\"border:0\"]],[false,{\".form-control:focus\":false},[\"color:#495057\",\"background-color:#fff\",\"border-color:#80bdff\",\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".form-control::-webkit-input-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control::-moz-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control:-ms-input-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control::-ms-input-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control::placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control:disabled\":false,\".form-control[readonly]\":false},[\"background-color:#e9ecef\",\"opacity:1\"]],[false,{\"select.form-control:focus::-ms-value\":false},[\"color:#495057\",\"background-color:#fff\"]],[false,{\".form-control-file\":false,\".form-control-range\":false},[\"display:block\",\"width:100%\"]],[false,{\".col-form-label\":false},[\"padding-top:calc(.375rem + 1px)\",\"padding-bottom:calc(.375rem + 1px)\",\"margin-bottom:0\",\"font-size:inherit\",\"line-height:1.5\"]],[false,{\".col-form-label-lg\":false},[\"padding-top:calc(.5rem + 1px)\",\"padding-bottom:calc(.5rem + 1px)\",\"font-size:1.25rem\",\"line-height:1.5\"]],[false,{\".col-form-label-sm\":false},[\"padding-top:calc(.25rem + 1px)\",\"padding-bottom:calc(.25rem + 1px)\",\"font-size:.875rem\",\"line-height:1.5\"]],[false,{\".form-control-plaintext\":false},[\"display:block\",\"width:100%\",\"padding-top:.375rem\",\"padding-bottom:.375rem\",\"margin-bottom:0\",\"line-height:1.5\",\"color:#212529\",\"background-color:transparent\",\"border:solid transparent\",\"border-width:1px 0\"]],[false,{\".form-control-plaintext.form-control-lg\":false,\".form-control-plaintext.form-control-sm\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,{\".form-control-sm\":false},[\"height:calc(1.8125rem + 2px)\",\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\",\"border-radius:.2rem\"]],[false,{\".form-control-lg\":false},[\"height:calc(2.875rem + 2px)\",\"padding:.5rem 1rem\",\"font-size:1.25rem\",\"line-height:1.5\",\"border-radius:.3rem\"]],[false,{\"select.form-control[multiple]\":false,\"select.form-control[size]\":false},[\"height:auto\"]],[false,{\"textarea.form-control\":false},[\"height:auto\"]],[false,{\".form-group\":false},[\"margin-bottom:1rem\"]],[false,{\".form-text\":false},[\"display:block\",\"margin-top:.25rem\"]],[false,{\".form-row\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"margin-right:-5px\",\"margin-left:-5px\"]],[false,{\".form-row>.col\":false,\".form-row>[class*=col-]\":false},[\"padding-right:5px\",\"padding-left:5px\"]],[false,{\".form-check\":false},[\"position:relative\",\"display:block\",\"padding-left:1.25rem\"]],[false,{\".form-check-input\":false},[\"position:absolute\",\"margin-top:.3rem\",\"margin-left:-1.25rem\"]],[false,{\".form-check-input:disabled~.form-check-label\":false},[\"color:#6c757d\"]],[false,{\".form-check-label\":false},[\"margin-bottom:0\"]],[false,{\".form-check-inline\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"-ms-flex-align:center\",\"align-items:center\",\"padding-left:0\",\"margin-right:.75rem\"]],[false,{\".form-check-inline .form-check-input\":false},[\"position:static\",\"margin-top:0\",\"margin-right:.3125rem\",\"margin-left:0\"]],[false,{\".valid-feedback\":false},[\"display:none\",\"width:100%\",\"margin-top:.25rem\",\"font-size:80%\",\"color:#28a745\"]],[false,{\".valid-tooltip\":false},[\"position:absolute\",\"top:100%\",\"z-index:5\",\"display:none\",\"max-width:100%\",\"padding:.25rem .5rem\",\"margin-top:.1rem\",\"font-size:.875rem\",\"line-height:1.5\",\"color:#fff\",\"background-color:rgba(40,167,69,.9)\",\"border-radius:.25rem\"]],[false,{\".custom-select.is-valid\":false,\".form-control.is-valid\":false,\".was-validated .custom-select:valid\":false,\".was-validated .form-control:valid\":false},[\"border-color:#28a745\"]],[false,{\".custom-select.is-valid:focus\":false,\".form-control.is-valid:focus\":false,\".was-validated .custom-select:valid:focus\":false,\".was-validated .form-control:valid:focus\":false},[\"border-color:#28a745\",\"box-shadow:0 0 0 .2rem rgba(40,167,69,.25)\"]],[false,{\".custom-select.is-valid~.valid-feedback\":false,\".custom-select.is-valid~.valid-tooltip\":false,\".form-control.is-valid~.valid-feedback\":false,\".form-control.is-valid~.valid-tooltip\":false,\".was-validated .custom-select:valid~.valid-feedback\":false,\".was-validated .custom-select:valid~.valid-tooltip\":false,\".was-validated .form-control:valid~.valid-feedback\":false,\".was-validated .form-control:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".form-control-file.is-valid~.valid-feedback\":false,\".form-control-file.is-valid~.valid-tooltip\":false,\".was-validated .form-control-file:valid~.valid-feedback\":false,\".was-validated .form-control-file:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".form-check-input.is-valid~.form-check-label\":false,\".was-validated .form-check-input:valid~.form-check-label\":false},[\"color:#28a745\"]],[false,{\".form-check-input.is-valid~.valid-feedback\":false,\".form-check-input.is-valid~.valid-tooltip\":false,\".was-validated .form-check-input:valid~.valid-feedback\":false,\".was-validated .form-check-input:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-valid~.custom-control-label\":false,\".was-validated .custom-control-input:valid~.custom-control-label\":false},[\"color:#28a745\"]],[false,{\".custom-control-input.is-valid~.custom-control-label::before\":false,\".was-validated .custom-control-input:valid~.custom-control-label::before\":false},[\"background-color:#71dd8a\"]],[false,{\".custom-control-input.is-valid~.valid-feedback\":false,\".custom-control-input.is-valid~.valid-tooltip\":false,\".was-validated .custom-control-input:valid~.valid-feedback\":false,\".was-validated .custom-control-input:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-valid:checked~.custom-control-label::before\":false,\".was-validated .custom-control-input:valid:checked~.custom-control-label::before\":false},[\"background-color:#34ce57\"]],[false,{\".custom-control-input.is-valid:focus~.custom-control-label::before\":false,\".was-validated .custom-control-input:valid:focus~.custom-control-label::before\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(40,167,69,.25)\"]],[false,{\".custom-file-input.is-valid~.custom-file-label\":false,\".was-validated .custom-file-input:valid~.custom-file-label\":false},[\"border-color:#28a745\"]],[false,{\".custom-file-input.is-valid~.custom-file-label::after\":false,\".was-validated .custom-file-input:valid~.custom-file-label::after\":false},[\"border-color:inherit\"]],[false,{\".custom-file-input.is-valid~.valid-feedback\":false,\".custom-file-input.is-valid~.valid-tooltip\":false,\".was-validated .custom-file-input:valid~.valid-feedback\":false,\".was-validated .custom-file-input:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".custom-file-input.is-valid:focus~.custom-file-label\":false,\".was-validated .custom-file-input:valid:focus~.custom-file-label\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.25)\"]],[false,{\".invalid-feedback\":false},[\"display:none\",\"width:100%\",\"margin-top:.25rem\",\"font-size:80%\",\"color:#dc3545\"]],[false,{\".invalid-tooltip\":false},[\"position:absolute\",\"top:100%\",\"z-index:5\",\"display:none\",\"max-width:100%\",\"padding:.25rem .5rem\",\"margin-top:.1rem\",\"font-size:.875rem\",\"line-height:1.5\",\"color:#fff\",\"background-color:rgba(220,53,69,.9)\",\"border-radius:.25rem\"]],[false,{\".custom-select.is-invalid\":false,\".form-control.is-invalid\":false,\".was-validated .custom-select:invalid\":false,\".was-validated .form-control:invalid\":false},[\"border-color:#dc3545\"]],[false,{\".custom-select.is-invalid:focus\":false,\".form-control.is-invalid:focus\":false,\".was-validated .custom-select:invalid:focus\":false,\".was-validated .form-control:invalid:focus\":false},[\"border-color:#dc3545\",\"box-shadow:0 0 0 .2rem rgba(220,53,69,.25)\"]],[false,{\".custom-select.is-invalid~.invalid-feedback\":false,\".custom-select.is-invalid~.invalid-tooltip\":false,\".form-control.is-invalid~.invalid-feedback\":false,\".form-control.is-invalid~.invalid-tooltip\":false,\".was-validated .custom-select:invalid~.invalid-feedback\":false,\".was-validated .custom-select:invalid~.invalid-tooltip\":false,\".was-validated .form-control:invalid~.invalid-feedback\":false,\".was-validated .form-control:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".form-control-file.is-invalid~.invalid-feedback\":false,\".form-control-file.is-invalid~.invalid-tooltip\":false,\".was-validated .form-control-file:invalid~.invalid-feedback\":false,\".was-validated .form-control-file:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".form-check-input.is-invalid~.form-check-label\":false,\".was-validated .form-check-input:invalid~.form-check-label\":false},[\"color:#dc3545\"]],[false,{\".form-check-input.is-invalid~.invalid-feedback\":false,\".form-check-input.is-invalid~.invalid-tooltip\":false,\".was-validated .form-check-input:invalid~.invalid-feedback\":false,\".was-validated .form-check-input:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-invalid~.custom-control-label\":false,\".was-validated .custom-control-input:invalid~.custom-control-label\":false},[\"color:#dc3545\"]],[false,{\".custom-control-input.is-invalid~.custom-control-label::before\":false,\".was-validated .custom-control-input:invalid~.custom-control-label::before\":false},[\"background-color:#efa2a9\"]],[false,{\".custom-control-input.is-invalid~.invalid-feedback\":false,\".custom-control-input.is-invalid~.invalid-tooltip\":false,\".was-validated .custom-control-input:invalid~.invalid-feedback\":false,\".was-validated .custom-control-input:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-invalid:checked~.custom-control-label::before\":false,\".was-validated .custom-control-input:invalid:checked~.custom-control-label::before\":false},[\"background-color:#e4606d\"]],[false,{\".custom-control-input.is-invalid:focus~.custom-control-label::before\":false,\".was-validated .custom-control-input:invalid:focus~.custom-control-label::before\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(220,53,69,.25)\"]],[false,{\".custom-file-input.is-invalid~.custom-file-label\":false,\".was-validated .custom-file-input:invalid~.custom-file-label\":false},[\"border-color:#dc3545\"]],[false,{\".custom-file-input.is-invalid~.custom-file-label::after\":false,\".was-validated .custom-file-input:invalid~.custom-file-label::after\":false},[\"border-color:inherit\"]],[false,{\".custom-file-input.is-invalid~.invalid-feedback\":false,\".custom-file-input.is-invalid~.invalid-tooltip\":false,\".was-validated .custom-file-input:invalid~.invalid-feedback\":false,\".was-validated .custom-file-input:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".custom-file-input.is-invalid:focus~.custom-file-label\":false,\".was-validated .custom-file-input:invalid:focus~.custom-file-label\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.25)\"]],[false,{\".form-inline\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".form-inline .form-check\":false},[\"width:100%\"]],[false,\"@media (min-width:576px){\"],[false,{\".form-inline label\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"margin-bottom:0\"]],[false,{\".form-inline .form-group\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\",\"-ms-flex-align:center\",\"align-items:center\",\"margin-bottom:0\"]],[false,{\".form-inline .form-control\":false},[\"display:inline-block\",\"width:auto\",\"vertical-align:middle\"]],[false,{\".form-inline .form-control-plaintext\":false},[\"display:inline-block\"]],[false,{\".form-inline .custom-select\":false,\".form-inline .input-group\":false},[\"width:auto\"]],[false,{\".form-inline .form-check\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"width:auto\",\"padding-left:0\"]],[false,{\".form-inline .form-check-input\":false},[\"position:relative\",\"margin-top:0\",\"margin-right:.25rem\",\"margin-left:0\"]],[false,{\".form-inline .custom-control\":false},[\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".form-inline .custom-control-label\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".btn\":false},[\"display:inline-block\",\"font-weight:400\",\"text-align:center\",\"white-space:nowrap\",\"vertical-align:middle\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\",\"border:1px solid transparent\",\"padding:.375rem .75rem\",\"font-size:1rem\",\"line-height:1.5\",\"border-radius:.25rem\",\"transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".btn\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".btn:focus\":false,\".btn:hover\":false},[\"text-decoration:none\"]],[false,{\".btn:focus-within\":false,\".btn:focus\":false},[\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".btn.disabled\":false,\".btn:disabled\":false},[\"opacity:.65\"]],[false,{\".btn:not(:disabled):not(.disabled)\":false},[\"cursor:pointer\"]],[false,{\"a.btn.disabled\":false,\"fieldset:disabled a.btn\":false},[\"pointer-events:none\"]],[false,{\".btn-primary\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-primary:hover\":false},[\"color:#fff\",\"background-color:#0069d9\",\"border-color:#0062cc\"]],[false,{\".btn-primary:focus-within\":false,\".btn-primary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-primary.disabled\":false,\".btn-primary:disabled\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-primary:not(:disabled):not(.disabled).active\":false,\".btn-primary:not(:disabled):not(.disabled):active\":false,\".show>.btn-primary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#0062cc\",\"border-color:#005cbf\"]],[false,{\".btn-primary:not(:disabled):not(.disabled).active:focus\":false,\".btn-primary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-primary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-secondary\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-secondary:hover\":false},[\"color:#fff\",\"background-color:#5a6268\",\"border-color:#545b62\"]],[false,{\".btn-secondary:focus-within\":false,\".btn-secondary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-secondary.disabled\":false,\".btn-secondary:disabled\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-secondary:not(:disabled):not(.disabled).active\":false,\".btn-secondary:not(:disabled):not(.disabled):active\":false,\".show>.btn-secondary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#545b62\",\"border-color:#4e555b\"]],[false,{\".btn-secondary:not(:disabled):not(.disabled).active:focus\":false,\".btn-secondary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-secondary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-success\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-success:hover\":false},[\"color:#fff\",\"background-color:#218838\",\"border-color:#1e7e34\"]],[false,{\".btn-success:focus-within\":false,\".btn-success:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-success.disabled\":false,\".btn-success:disabled\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-success:not(:disabled):not(.disabled).active\":false,\".btn-success:not(:disabled):not(.disabled):active\":false,\".show>.btn-success.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#1e7e34\",\"border-color:#1c7430\"]],[false,{\".btn-success:not(:disabled):not(.disabled).active:focus\":false,\".btn-success:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-success.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-info\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-info:hover\":false},[\"color:#fff\",\"background-color:#138496\",\"border-color:#117a8b\"]],[false,{\".btn-info:focus-within\":false,\".btn-info:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-info.disabled\":false,\".btn-info:disabled\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-info:not(:disabled):not(.disabled).active\":false,\".btn-info:not(:disabled):not(.disabled):active\":false,\".show>.btn-info.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#117a8b\",\"border-color:#10707f\"]],[false,{\".btn-info:not(:disabled):not(.disabled).active:focus\":false,\".btn-info:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-info.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-warning\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-warning:hover\":false},[\"color:#212529\",\"background-color:#e0a800\",\"border-color:#d39e00\"]],[false,{\".btn-warning:focus-within\":false,\".btn-warning:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-warning.disabled\":false,\".btn-warning:disabled\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-warning:not(:disabled):not(.disabled).active\":false,\".btn-warning:not(:disabled):not(.disabled):active\":false,\".show>.btn-warning.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#d39e00\",\"border-color:#c69500\"]],[false,{\".btn-warning:not(:disabled):not(.disabled).active:focus\":false,\".btn-warning:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-warning.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-danger\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-danger:hover\":false},[\"color:#fff\",\"background-color:#c82333\",\"border-color:#bd2130\"]],[false,{\".btn-danger:focus-within\":false,\".btn-danger:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-danger.disabled\":false,\".btn-danger:disabled\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-danger:not(:disabled):not(.disabled).active\":false,\".btn-danger:not(:disabled):not(.disabled):active\":false,\".show>.btn-danger.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#bd2130\",\"border-color:#b21f2d\"]],[false,{\".btn-danger:not(:disabled):not(.disabled).active:focus\":false,\".btn-danger:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-danger.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-light\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-light:hover\":false},[\"color:#212529\",\"background-color:#e2e6ea\",\"border-color:#dae0e5\"]],[false,{\".btn-light:focus-within\":false,\".btn-light:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-light.disabled\":false,\".btn-light:disabled\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-light:not(:disabled):not(.disabled).active\":false,\".btn-light:not(:disabled):not(.disabled):active\":false,\".show>.btn-light.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#dae0e5\",\"border-color:#d3d9df\"]],[false,{\".btn-light:not(:disabled):not(.disabled).active:focus\":false,\".btn-light:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-light.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-dark\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-dark:hover\":false},[\"color:#fff\",\"background-color:#23272b\",\"border-color:#1d2124\"]],[false,{\".btn-dark:focus-within\":false,\".btn-dark:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-dark.disabled\":false,\".btn-dark:disabled\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-dark:not(:disabled):not(.disabled).active\":false,\".btn-dark:not(:disabled):not(.disabled):active\":false,\".show>.btn-dark.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#1d2124\",\"border-color:#171a1d\"]],[false,{\".btn-dark:not(:disabled):not(.disabled).active:focus\":false,\".btn-dark:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-dark.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-outline-primary\":false},[\"color:#007bff\",\"background-color:transparent\",\"background-image:none\",\"border-color:#007bff\"]],[false,{\".btn-outline-primary:hover\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-outline-primary:focus-within\":false,\".btn-outline-primary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-outline-primary.disabled\":false,\".btn-outline-primary:disabled\":false},[\"color:#007bff\",\"background-color:transparent\"]],[false,{\".btn-outline-primary:not(:disabled):not(.disabled).active\":false,\".btn-outline-primary:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-primary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-outline-primary:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-primary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-primary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-outline-secondary\":false},[\"color:#6c757d\",\"background-color:transparent\",\"background-image:none\",\"border-color:#6c757d\"]],[false,{\".btn-outline-secondary:hover\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-outline-secondary:focus-within\":false,\".btn-outline-secondary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-outline-secondary.disabled\":false,\".btn-outline-secondary:disabled\":false},[\"color:#6c757d\",\"background-color:transparent\"]],[false,{\".btn-outline-secondary:not(:disabled):not(.disabled).active\":false,\".btn-outline-secondary:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-secondary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-outline-secondary:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-secondary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-secondary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-outline-success\":false},[\"color:#28a745\",\"background-color:transparent\",\"background-image:none\",\"border-color:#28a745\"]],[false,{\".btn-outline-success:hover\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-outline-success:focus-within\":false,\".btn-outline-success:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-outline-success.disabled\":false,\".btn-outline-success:disabled\":false},[\"color:#28a745\",\"background-color:transparent\"]],[false,{\".btn-outline-success:not(:disabled):not(.disabled).active\":false,\".btn-outline-success:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-success.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-outline-success:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-success:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-success.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-outline-info\":false},[\"color:#17a2b8\",\"background-color:transparent\",\"background-image:none\",\"border-color:#17a2b8\"]],[false,{\".btn-outline-info:hover\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-outline-info:focus-within\":false,\".btn-outline-info:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-outline-info.disabled\":false,\".btn-outline-info:disabled\":false},[\"color:#17a2b8\",\"background-color:transparent\"]],[false,{\".btn-outline-info:not(:disabled):not(.disabled).active\":false,\".btn-outline-info:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-info.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-outline-info:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-info:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-info.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-outline-warning\":false},[\"color:#ffc107\",\"background-color:transparent\",\"background-image:none\",\"border-color:#ffc107\"]],[false,{\".btn-outline-warning:hover\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-outline-warning:focus-within\":false,\".btn-outline-warning:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-outline-warning.disabled\":false,\".btn-outline-warning:disabled\":false},[\"color:#ffc107\",\"background-color:transparent\"]],[false,{\".btn-outline-warning:not(:disabled):not(.disabled).active\":false,\".btn-outline-warning:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-warning.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-outline-warning:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-warning:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-warning.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-outline-danger\":false},[\"color:#dc3545\",\"background-color:transparent\",\"background-image:none\",\"border-color:#dc3545\"]],[false,{\".btn-outline-danger:hover\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-outline-danger:focus-within\":false,\".btn-outline-danger:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-outline-danger.disabled\":false,\".btn-outline-danger:disabled\":false},[\"color:#dc3545\",\"background-color:transparent\"]],[false,{\".btn-outline-danger:not(:disabled):not(.disabled).active\":false,\".btn-outline-danger:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-danger.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-outline-danger:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-danger:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-danger.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-outline-light\":false},[\"color:#f8f9fa\",\"background-color:transparent\",\"background-image:none\",\"border-color:#f8f9fa\"]],[false,{\".btn-outline-light:hover\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-outline-light:focus-within\":false,\".btn-outline-light:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-outline-light.disabled\":false,\".btn-outline-light:disabled\":false},[\"color:#f8f9fa\",\"background-color:transparent\"]],[false,{\".btn-outline-light:not(:disabled):not(.disabled).active\":false,\".btn-outline-light:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-light.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-outline-light:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-light:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-light.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-outline-dark\":false},[\"color:#343a40\",\"background-color:transparent\",\"background-image:none\",\"border-color:#343a40\"]],[false,{\".btn-outline-dark:hover\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-outline-dark:focus-within\":false,\".btn-outline-dark:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-outline-dark.disabled\":false,\".btn-outline-dark:disabled\":false},[\"color:#343a40\",\"background-color:transparent\"]],[false,{\".btn-outline-dark:not(:disabled):not(.disabled).active\":false,\".btn-outline-dark:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-dark.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-outline-dark:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-dark:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-dark.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-link\":false},[\"font-weight:400\",\"color:#007bff\",\"background-color:transparent\"]],[false,{\".btn-link:hover\":false},[\"color:#0056b3\",\"text-decoration:underline\",\"background-color:transparent\",\"border-color:transparent\"]],[false,{\".btn-link:focus-within\":false,\".btn-link:focus\":false},[\"text-decoration:underline\",\"border-color:transparent\",\"box-shadow:none\"]],[false,{\".btn-link.disabled\":false,\".btn-link:disabled\":false},[\"color:#6c757d\",\"pointer-events:none\"]],[false,{\".btn-group-lg>.btn\":false,\".btn-lg\":false},[\"padding:.5rem 1rem\",\"font-size:1.25rem\",\"line-height:1.5\",\"border-radius:.3rem\"]],[false,{\".btn-group-sm>.btn\":false,\".btn-sm\":false},[\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\",\"border-radius:.2rem\"]],[false,{\".btn-block\":false},[\"display:block\",\"width:100%\"]],[false,{\".btn-block+.btn-block\":false},[\"margin-top:.5rem\"]],[false,{\"input[type=button].btn-block\":false,\"input[type=reset].btn-block\":false,\"input[type=submit].btn-block\":false},[\"width:100%\"]],[false,{\".fade\":false},[\"transition:opacity .15s linear\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".fade\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".fade:not(.show)\":false},[\"opacity:0\"]],[true,{\".collapse:not(.show)\":true},[\"display:none\"]],[false,{\".collapsing\":false},[\"position:relative\",\"height:0\",\"overflow:hidden\",\"transition:height .35s ease\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".collapsing\":false},[\"transition:none\"]],[false,\"}\"],[true,{\".dropdown\":true,\".dropleft\":false,\".dropright\":false,\".dropup\":false},[\"position:relative\"]],[true,{\".dropdown-toggle::after\":true},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:.3em solid\",\"border-right:.3em solid transparent\",\"border-bottom:0\",\"border-left:.3em solid transparent\"]],[true,{\".dropdown-toggle:empty::after\":true},[\"margin-left:0\"]],[true,{\".dropdown-menu\":true},[\"position:absolute\",\"top:100%\",\"left:0\",\"z-index:1000\",\"display:none\",\"float:left\",\"min-width:10rem\",\"padding:.5rem 0\",\"margin:.125rem 0 0\",\"font-size:1rem\",\"color:#212529\",\"text-align:left\",\"list-style:none\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid rgba(0,0,0,.15)\",\"border-radius:.25rem\"]],[false,{\".dropdown-menu-right\":false},[\"right:0\",\"left:auto\"]],[false,{\".dropup .dropdown-menu\":false},[\"top:auto\",\"bottom:100%\",\"margin-top:0\",\"margin-bottom:.125rem\"]],[false,{\".dropup .dropdown-toggle::after\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:0\",\"border-right:.3em solid transparent\",\"border-bottom:.3em solid\",\"border-left:.3em solid transparent\"]],[false,{\".dropup .dropdown-toggle:empty::after\":false},[\"margin-left:0\"]],[false,{\".dropright .dropdown-menu\":false},[\"top:0\",\"right:auto\",\"left:100%\",\"margin-top:0\",\"margin-left:.125rem\"]],[false,{\".dropright .dropdown-toggle::after\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:.3em solid transparent\",\"border-right:0\",\"border-bottom:.3em solid transparent\",\"border-left:.3em solid\"]],[false,{\".dropright .dropdown-toggle:empty::after\":false},[\"margin-left:0\"]],[false,{\".dropright .dropdown-toggle::after\":false},[\"vertical-align:0\"]],[false,{\".dropleft .dropdown-menu\":false},[\"top:0\",\"right:100%\",\"left:auto\",\"margin-top:0\",\"margin-right:.125rem\"]],[false,{\".dropleft .dropdown-toggle::after\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\"]],[false,{\".dropleft .dropdown-toggle::after\":false},[\"display:none\"]],[false,{\".dropleft .dropdown-toggle::before\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-right:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:.3em solid transparent\",\"border-right:.3em solid\",\"border-bottom:.3em solid transparent\"]],[false,{\".dropleft .dropdown-toggle:empty::after\":false},[\"margin-left:0\"]],[false,{\".dropleft .dropdown-toggle::before\":false},[\"vertical-align:0\"]],[false,{\".dropdown-menu[x-placement^=bottom]\":false,\".dropdown-menu[x-placement^=left]\":false,\".dropdown-menu[x-placement^=right]\":false,\".dropdown-menu[x-placement^=top]\":false},[\"right:auto\",\"bottom:auto\"]],[false,{\".dropdown-divider\":false},[\"height:0\",\"margin:.5rem 0\",\"overflow:hidden\",\"border-top:1px solid #e9ecef\"]],[false,{\".dropdown-item\":false},[\"display:block\",\"width:100%\",\"padding:.25rem 1.5rem\",\"clear:both\",\"font-weight:400\",\"color:#212529\",\"text-align:inherit\",\"white-space:nowrap\",\"background-color:transparent\",\"border:0\"]],[false,{\".dropdown-item:focus\":false,\".dropdown-item:hover\":false},[\"color:#16181b\",\"text-decoration:none\",\"background-color:#f8f9fa\"]],[false,{\".dropdown-item.active\":false,\".dropdown-item:active\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#007bff\"]],[false,{\".dropdown-item.disabled\":false,\".dropdown-item:disabled\":false},[\"color:#6c757d\",\"background-color:transparent\"]],[false,{\".dropdown-menu.show\":false},[\"display:block\"]],[false,{\".dropdown-header\":false},[\"display:block\",\"padding:.5rem 1.5rem\",\"margin-bottom:0\",\"font-size:.875rem\",\"color:#6c757d\",\"white-space:nowrap\"]],[false,{\".dropdown-item-text\":false},[\"display:block\",\"padding:.25rem 1.5rem\",\"color:#212529\"]],[false,{\".btn-group\":false,\".btn-group-vertical\":false},[\"position:relative\",\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"vertical-align:middle\"]],[false,{\".btn-group-vertical>.btn\":false,\".btn-group>.btn\":false},[\"position:relative\",\"-ms-flex:0 1 auto\",\"flex:0 1 auto\"]],[false,{\".btn-group-vertical>.btn:hover\":false,\".btn-group>.btn:hover\":false},[\"z-index:1\"]],[false,{\".btn-group-vertical>.btn.active\":false,\".btn-group-vertical>.btn:active\":false,\".btn-group-vertical>.btn:focus\":false,\".btn-group>.btn.active\":false,\".btn-group>.btn:active\":false,\".btn-group>.btn:focus\":false},[\"z-index:1\"]],[false,{\".btn-group .btn+.btn\":false,\".btn-group .btn+.btn-group\":false,\".btn-group .btn-group+.btn\":false,\".btn-group .btn-group+.btn-group\":false,\".btn-group-vertical .btn+.btn\":false,\".btn-group-vertical .btn+.btn-group\":false,\".btn-group-vertical .btn-group+.btn\":false,\".btn-group-vertical .btn-group+.btn-group\":false},[\"margin-left:-1px\"]],[false,{\".btn-toolbar\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".btn-toolbar .input-group\":false},[\"width:auto\"]],[false,{\".btn-group>.btn:first-child\":false},[\"margin-left:0\"]],[false,{\".btn-group>.btn-group:not(:last-child)>.btn\":false,\".btn-group>.btn:not(:last-child):not(.dropdown-toggle)\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".btn-group>.btn-group:not(:first-child)>.btn\":false,\".btn-group>.btn:not(:first-child)\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".dropdown-toggle-split\":false},[\"padding-right:.5625rem\",\"padding-left:.5625rem\"]],[false,{\".dropdown-toggle-split::after\":false,\".dropright .dropdown-toggle-split::after\":false,\".dropup .dropdown-toggle-split::after\":false},[\"margin-left:0\"]],[false,{\".dropleft .dropdown-toggle-split::before\":false},[\"margin-right:0\"]],[false,{\".btn-group-sm>.btn+.dropdown-toggle-split\":false,\".btn-sm+.dropdown-toggle-split\":false},[\"padding-right:.375rem\",\"padding-left:.375rem\"]],[false,{\".btn-group-lg>.btn+.dropdown-toggle-split\":false,\".btn-lg+.dropdown-toggle-split\":false},[\"padding-right:.75rem\",\"padding-left:.75rem\"]],[false,{\".btn-group-vertical\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\",\"-ms-flex-align:start\",\"align-items:flex-start\",\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".btn-group-vertical .btn\":false,\".btn-group-vertical .btn-group\":false},[\"width:100%\"]],[false,{\".btn-group-vertical>.btn+.btn\":false,\".btn-group-vertical>.btn+.btn-group\":false,\".btn-group-vertical>.btn-group+.btn\":false,\".btn-group-vertical>.btn-group+.btn-group\":false},[\"margin-top:-1px\",\"margin-left:0\"]],[false,{\".btn-group-vertical>.btn-group:not(:last-child)>.btn\":false,\".btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle)\":false},[\"border-bottom-right-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".btn-group-vertical>.btn-group:not(:first-child)>.btn\":false,\".btn-group-vertical>.btn:not(:first-child)\":false},[\"border-top-left-radius:0\",\"border-top-right-radius:0\"]],[false,{\".btn-group-toggle>.btn\":false,\".btn-group-toggle>.btn-group>.btn\":false},[\"margin-bottom:0\"]],[false,{\".btn-group-toggle>.btn input[type=checkbox]\":false,\".btn-group-toggle>.btn input[type=radio]\":false,\".btn-group-toggle>.btn-group>.btn input[type=checkbox]\":false,\".btn-group-toggle>.btn-group>.btn input[type=radio]\":false},[\"position:absolute\",\"clip:rect(0,0,0,0)\",\"pointer-events:none\"]],[false,{\".input-group\":false},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-align:stretch\",\"align-items:stretch\",\"width:100%\"]],[false,{\".input-group>.custom-file\":false,\".input-group>.custom-select\":false,\".input-group>.form-control\":false},[\"position:relative\",\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"width:1%\",\"margin-bottom:0\"]],[false,{\".input-group>.custom-file+.custom-file\":false,\".input-group>.custom-file+.custom-select\":false,\".input-group>.custom-file+.form-control\":false,\".input-group>.custom-select+.custom-file\":false,\".input-group>.custom-select+.custom-select\":false,\".input-group>.custom-select+.form-control\":false,\".input-group>.form-control+.custom-file\":false,\".input-group>.form-control+.custom-select\":false,\".input-group>.form-control+.form-control\":false},[\"margin-left:-1px\"]],[false,{\".input-group>.custom-file .custom-file-input:focus~.custom-file-label\":false,\".input-group>.custom-select:focus\":false,\".input-group>.form-control:focus\":false},[\"z-index:3\"]],[false,{\".input-group>.custom-file .custom-file-input:focus\":false},[\"z-index:4\"]],[false,{\".input-group>.custom-select:not(:last-child)\":false,\".input-group>.form-control:not(:last-child)\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".input-group>.custom-select:not(:first-child)\":false,\".input-group>.form-control:not(:first-child)\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".input-group>.custom-file\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".input-group>.custom-file:not(:last-child) .custom-file-label\":false,\".input-group>.custom-file:not(:last-child) .custom-file-label::after\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".input-group>.custom-file:not(:first-child) .custom-file-label\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".input-group-append\":false,\".input-group-prepend\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".input-group-append .btn\":false,\".input-group-prepend .btn\":false},[\"position:relative\",\"z-index:2\"]],[false,{\".input-group-append .btn+.btn\":false,\".input-group-append .btn+.input-group-text\":false,\".input-group-append .input-group-text+.btn\":false,\".input-group-append .input-group-text+.input-group-text\":false,\".input-group-prepend .btn+.btn\":false,\".input-group-prepend .btn+.input-group-text\":false,\".input-group-prepend .input-group-text+.btn\":false,\".input-group-prepend .input-group-text+.input-group-text\":false},[\"margin-left:-1px\"]],[false,{\".input-group-prepend\":false},[\"margin-right:-1px\"]],[false,{\".input-group-append\":false},[\"margin-left:-1px\"]],[false,{\".input-group-text\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"padding:.375rem .75rem\",\"margin-bottom:0\",\"font-size:1rem\",\"font-weight:400\",\"line-height:1.5\",\"color:#495057\",\"text-align:center\",\"white-space:nowrap\",\"background-color:#e9ecef\",\"border:1px solid #ced4da\",\"border-radius:.25rem\"]],[false,{\".input-group-text input[type=checkbox]\":false,\".input-group-text input[type=radio]\":false},[\"margin-top:0\"]],[false,{\".input-group-lg>.form-control\":false,\".input-group-lg>.input-group-append>.btn\":false,\".input-group-lg>.input-group-append>.input-group-text\":false,\".input-group-lg>.input-group-prepend>.btn\":false,\".input-group-lg>.input-group-prepend>.input-group-text\":false},[\"height:calc(2.875rem + 2px)\",\"padding:.5rem 1rem\",\"font-size:1.25rem\",\"line-height:1.5\",\"border-radius:.3rem\"]],[false,{\".input-group-sm>.form-control\":false,\".input-group-sm>.input-group-append>.btn\":false,\".input-group-sm>.input-group-append>.input-group-text\":false,\".input-group-sm>.input-group-prepend>.btn\":false,\".input-group-sm>.input-group-prepend>.input-group-text\":false},[\"height:calc(1.8125rem + 2px)\",\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\",\"border-radius:.2rem\"]],[false,{\".input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle)\":false,\".input-group>.input-group-append:last-child>.input-group-text:not(:last-child)\":false,\".input-group>.input-group-append:not(:last-child)>.btn\":false,\".input-group>.input-group-append:not(:last-child)>.input-group-text\":false,\".input-group>.input-group-prepend>.btn\":false,\".input-group>.input-group-prepend>.input-group-text\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".input-group>.input-group-append>.btn\":false,\".input-group>.input-group-append>.input-group-text\":false,\".input-group>.input-group-prepend:first-child>.btn:not(:first-child)\":false,\".input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child)\":false,\".input-group>.input-group-prepend:not(:first-child)>.btn\":false,\".input-group>.input-group-prepend:not(:first-child)>.input-group-text\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".custom-control\":false},[\"position:relative\",\"display:block\",\"min-height:1.5rem\",\"padding-left:1.5rem\"]],[false,{\".custom-control-inline\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"margin-right:1rem\"]],[false,{\".custom-control-input\":false},[\"position:absolute\",\"z-index:-1\",\"opacity:0\"]],[false,{\".custom-control-input:checked~.custom-control-label::before\":false},[\"color:#fff\",\"background-color:#007bff\"]],[false,{\".custom-control-input:focus~.custom-control-label::before\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-control-input:active~.custom-control-label::before\":false},[\"color:#fff\",\"background-color:#b3d7ff\"]],[false,{\".custom-control-input:disabled~.custom-control-label\":false},[\"color:#6c757d\"]],[false,{\".custom-control-input:disabled~.custom-control-label::before\":false},[\"background-color:#e9ecef\"]],[false,{\".custom-control-label\":false},[\"position:relative\",\"margin-bottom:0\"]],[false,{\".custom-control-label::before\":false},[\"position:absolute\",\"top:.25rem\",\"left:-1.5rem\",\"display:block\",\"width:1rem\",\"height:1rem\",\"pointer-events:none\",\"content:\\\"\\\"\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\",\"background-color:#dee2e6\"]],[false,{\".custom-control-label::after\":false},[\"position:absolute\",\"top:.25rem\",\"left:-1.5rem\",\"display:block\",\"width:1rem\",\"height:1rem\",\"content:\\\"\\\"\",\"background-repeat:no-repeat\",\"background-position:center center\",\"background-size:50% 50%\"]],[false,{\".custom-checkbox .custom-control-label::before\":false},[\"border-radius:.25rem\"]],[false,{\".custom-checkbox .custom-control-input:checked~.custom-control-label::before\":false},[\"background-color:#007bff\"]],[false,{\".custom-checkbox .custom-control-input:checked~.custom-control-label::after\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'0 0 8 8\\\\\'%3E%3Cpath fill=\\\\\'%23fff\\\\\' d=\\\\\'M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before\":false},[\"background-color:#007bff\"]],[false,{\".custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'0 0 4 4\\\\\'%3E%3Cpath stroke=\\\\\'%23fff\\\\\' d=\\\\\'M0 2h4\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before\":false},[\"background-color:rgba(0,123,255,.5)\"]],[false,{\".custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before\":false},[\"background-color:rgba(0,123,255,.5)\"]],[false,{\".custom-radio .custom-control-label::before\":false},[\"border-radius:50%\"]],[false,{\".custom-radio .custom-control-input:checked~.custom-control-label::before\":false},[\"background-color:#007bff\"]],[false,{\".custom-radio .custom-control-input:checked~.custom-control-label::after\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'-4 -4 8 8\\\\\'%3E%3Ccircle r=\\\\\'3\\\\\' fill=\\\\\'%23fff\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".custom-radio .custom-control-input:disabled:checked~.custom-control-label::before\":false},[\"background-color:rgba(0,123,255,.5)\"]],[false,{\".custom-select\":false},[\"display:inline-block\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"padding:.375rem 1.75rem .375rem .75rem\",\"line-height:1.5\",\"color:#495057\",\"vertical-align:middle\",\"background:#fff url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'0 0 4 5\\\\\'%3E%3Cpath fill=\\\\\'%23343a40\\\\\' d=\\\\\'M2 0L0 2h4zm0 5L0 3h4z\\\\\'\\/%3E%3C\\/svg%3E\\\") no-repeat right .75rem center\",\"background-size:8px 10px\",\"border:1px solid #ced4da\",\"border-radius:.25rem\",\"-webkit-appearance:none\",\"-moz-appearance:none\",\"appearance:none\"]],[false,{\".custom-select:focus\":false},[\"border-color:#80bdff\",\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(128,189,255,.5)\"]],[false,{\".custom-select:focus::-ms-value\":false},[\"color:#495057\",\"background-color:#fff\"]],[false,{\".custom-select[multiple]\":false,\".custom-select[size]:not([size=\\\"1\\\"])\":false},[\"height:auto\",\"padding-right:.75rem\",\"background-image:none\"]],[false,{\".custom-select:disabled\":false},[\"color:#6c757d\",\"background-color:#e9ecef\"]],[false,{\".custom-select::-ms-expand\":false},[\"opacity:0\"]],[false,{\".custom-select-sm\":false},[\"height:calc(1.8125rem + 2px)\",\"padding-top:.375rem\",\"padding-bottom:.375rem\",\"font-size:75%\"]],[false,{\".custom-select-lg\":false},[\"height:calc(2.875rem + 2px)\",\"padding-top:.375rem\",\"padding-bottom:.375rem\",\"font-size:125%\"]],[false,{\".custom-file\":false},[\"position:relative\",\"display:inline-block\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"margin-bottom:0\"]],[false,{\".custom-file-input\":false},[\"position:relative\",\"z-index:2\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"margin:0\",\"opacity:0\"]],[false,{\".custom-file-input:focus~.custom-file-label\":false},[\"border-color:#80bdff\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-file-input:focus~.custom-file-label::after\":false},[\"border-color:#80bdff\"]],[false,{\".custom-file-input:disabled~.custom-file-label\":false},[\"background-color:#e9ecef\"]],[false,{\".custom-file-input:lang(en)~.custom-file-label::after\":false},[\"content:\\\"Browse\\\"\"]],[false,{\".custom-file-label\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"left:0\",\"z-index:1\",\"height:calc(2.25rem + 2px)\",\"padding:.375rem .75rem\",\"line-height:1.5\",\"color:#495057\",\"background-color:#fff\",\"border:1px solid #ced4da\",\"border-radius:.25rem\"]],[false,{\".custom-file-label::after\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"z-index:3\",\"display:block\",\"height:2.25rem\",\"padding:.375rem .75rem\",\"line-height:1.5\",\"color:#495057\",\"content:\\\"Browse\\\"\",\"background-color:#e9ecef\",\"border-left:1px solid #ced4da\",\"border-radius:0 .25rem .25rem 0\"]],[false,{\".custom-range\":false},[\"width:100%\",\"padding-left:0\",\"background-color:transparent\",\"-webkit-appearance:none\",\"-moz-appearance:none\",\"appearance:none\"]],[false,{\".custom-range:focus\":false},[\"outline:0\"]],[false,{\".custom-range:focus::-webkit-slider-thumb\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-range:focus::-moz-range-thumb\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-range:focus::-ms-thumb\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-range::-moz-focus-outer\":false},[\"border:0\"]],[false,{\".custom-range::-webkit-slider-thumb\":false},[\"width:1rem\",\"height:1rem\",\"margin-top:-.25rem\",\"background-color:#007bff\",\"border:0\",\"border-radius:1rem\",\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\",\"-webkit-appearance:none\",\"appearance:none\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-range::-webkit-slider-thumb\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".custom-range::-webkit-slider-thumb:active\":false},[\"background-color:#b3d7ff\"]],[false,{\".custom-range::-webkit-slider-runnable-track\":false},[\"width:100%\",\"height:.5rem\",\"color:transparent\",\"cursor:pointer\",\"background-color:#dee2e6\",\"border-color:transparent\",\"border-radius:1rem\"]],[false,{\".custom-range::-moz-range-thumb\":false},[\"width:1rem\",\"height:1rem\",\"background-color:#007bff\",\"border:0\",\"border-radius:1rem\",\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\",\"-moz-appearance:none\",\"appearance:none\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-range::-moz-range-thumb\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".custom-range::-moz-range-thumb:active\":false},[\"background-color:#b3d7ff\"]],[false,{\".custom-range::-moz-range-track\":false},[\"width:100%\",\"height:.5rem\",\"color:transparent\",\"cursor:pointer\",\"background-color:#dee2e6\",\"border-color:transparent\",\"border-radius:1rem\"]],[false,{\".custom-range::-ms-thumb\":false},[\"width:1rem\",\"height:1rem\",\"margin-top:0\",\"margin-right:.2rem\",\"margin-left:.2rem\",\"background-color:#007bff\",\"border:0\",\"border-radius:1rem\",\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\",\"appearance:none\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-range::-ms-thumb\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".custom-range::-ms-thumb:active\":false},[\"background-color:#b3d7ff\"]],[false,{\".custom-range::-ms-track\":false},[\"width:100%\",\"height:.5rem\",\"color:transparent\",\"cursor:pointer\",\"background-color:transparent\",\"border-color:transparent\",\"border-width:.5rem\"]],[false,{\".custom-range::-ms-fill-lower\":false},[\"background-color:#dee2e6\",\"border-radius:1rem\"]],[false,{\".custom-range::-ms-fill-upper\":false},[\"margin-right:15px\",\"background-color:#dee2e6\",\"border-radius:1rem\"]],[false,{\".custom-control-label::before\":false,\".custom-file-label\":false,\".custom-select\":false},[\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-control-label::before\":false,\".custom-file-label\":false,\".custom-select\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".nav\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"padding-left:0\",\"margin-bottom:0\",\"list-style:none\"]],[true,{\".nav-link\":true},[\"display:block\",\"padding:.5rem 1rem\"]],[true,{\".nav-link:focus\":true,\".nav-link:hover\":true},[\"text-decoration:none\"]],[false,{\".nav-link.disabled\":false},[\"color:#6c757d\"]],[false,{\".nav-tabs\":false},[\"border-bottom:1px solid #dee2e6\"]],[false,{\".nav-tabs .nav-item\":false},[\"margin-bottom:-1px\"]],[false,{\".nav-tabs .nav-link\":false},[\"border:1px solid transparent\",\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".nav-tabs .nav-link:focus\":false,\".nav-tabs .nav-link:hover\":false},[\"border-color:#e9ecef #e9ecef #dee2e6\"]],[false,{\".nav-tabs .nav-link.disabled\":false},[\"color:#6c757d\",\"background-color:transparent\",\"border-color:transparent\"]],[false,{\".nav-tabs .nav-item.show .nav-link\":false,\".nav-tabs .nav-link.active\":false},[\"color:#495057\",\"background-color:#fff\",\"border-color:#dee2e6 #dee2e6 #fff\"]],[false,{\".nav-tabs .dropdown-menu\":false},[\"margin-top:-1px\",\"border-top-left-radius:0\",\"border-top-right-radius:0\"]],[false,{\".nav-pills .nav-link\":false},[\"border-radius:.25rem\"]],[false,{\".nav-pills .nav-link.active\":false,\".nav-pills .show>.nav-link\":false},[\"color:#fff\",\"background-color:#007bff\"]],[false,{\".nav-fill .nav-item\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"text-align:center\"]],[false,{\".nav-justified .nav-item\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"text-align:center\"]],[false,{\".tab-content>.tab-pane\":false},[\"display:none\"]],[false,{\".tab-content>.active\":false},[\"display:block\"]],[true,{\".navbar\":true},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"padding:.5rem 1rem\"]],[true,{\".navbar>.container\":true,\".navbar>.container-fluid\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".navbar-brand\":false},[\"display:inline-block\",\"padding-top:.3125rem\",\"padding-bottom:.3125rem\",\"margin-right:1rem\",\"font-size:1.25rem\",\"line-height:inherit\",\"white-space:nowrap\"]],[false,{\".navbar-brand:focus\":false,\".navbar-brand:hover\":false},[\"text-decoration:none\"]],[true,{\".navbar-nav\":true},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"padding-left:0\",\"margin-bottom:0\",\"list-style:none\"]],[true,{\".navbar-nav .nav-link\":true},[\"padding-right:0\",\"padding-left:0\"]],[true,{\".navbar-nav .dropdown-menu\":true},[\"position:static\",\"float:none\"]],[false,{\".navbar-text\":false},[\"display:inline-block\",\"padding-top:.5rem\",\"padding-bottom:.5rem\"]],[true,{\".navbar-collapse\":true},[\"-ms-flex-preferred-size:100%\",\"flex-basis:100%\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"-ms-flex-align:center\",\"align-items:center\"]],[true,{\".navbar-toggler\":true},[\"padding:.25rem .75rem\",\"font-size:1.25rem\",\"line-height:1\",\"background-color:transparent\",\"border:1px solid transparent\",\"border-radius:.25rem\"]],[true,{\".navbar-toggler:focus\":true,\".navbar-toggler:hover\":true},[\"text-decoration:none\"]],[true,{\".navbar-toggler:not(:disabled):not(.disabled)\":true},[\"cursor:pointer\"]],[false,{\".navbar-toggler-icon\":false},[\"display:inline-block\",\"width:1.5em\",\"height:1.5em\",\"vertical-align:middle\",\"content:\\\"\\\"\",\"background:no-repeat center center\",\"background-size:100% 100%\"]],[false,\"@media (max-width:575.98px){\"],[false,{\".navbar-expand-sm>.container\":false,\".navbar-expand-sm>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,\"}\"],[false,\"@media (min-width:576px){\"],[false,{\".navbar-expand-sm\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand-sm .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand-sm .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand-sm .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand-sm>.container\":false,\".navbar-expand-sm>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand-sm .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand-sm .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand-sm .navbar-toggler\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (max-width:767.98px){\"],[false,{\".navbar-expand-md>.container\":false,\".navbar-expand-md>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".navbar-expand-md\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand-md .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand-md .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand-md .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand-md>.container\":false,\".navbar-expand-md>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand-md .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand-md .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand-md .navbar-toggler\":false},[\"display:none\"]],[false,\"}\"],[true,\"@media (max-width:991.98px){\"],[true,{\".navbar-expand-lg>.container\":true,\".navbar-expand-lg>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[true,{\".navbar-expand-lg\":true},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[true,{\".navbar-expand-lg .navbar-nav\":true},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[true,{\".navbar-expand-lg .navbar-nav .dropdown-menu\":true},[\"position:absolute\"]],[true,{\".navbar-expand-lg .navbar-nav .nav-link\":true},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[true,{\".navbar-expand-lg>.container\":true,\".navbar-expand-lg>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[true,{\".navbar-expand-lg .navbar-collapse\":true},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[true,{\".navbar-expand-lg .navbar-collapse:not(#_#_#_#_#_#_#_)\":true},[\"display:-ms-flexbox\",\"display:flex\"]],[true,{\".navbar-expand-lg .navbar-toggler\":true},[\"display:none\"]],[true,\"}\"],[false,\"@media (max-width:1199.98px){\"],[false,{\".navbar-expand-xl>.container\":false,\".navbar-expand-xl>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".navbar-expand-xl\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand-xl .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand-xl .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand-xl .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand-xl>.container\":false,\".navbar-expand-xl>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand-xl .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand-xl .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand-xl .navbar-toggler\":false},[\"display:none\"]],[false,\"}\"],[false,{\".navbar-expand\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand>.container\":false,\".navbar-expand>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,{\".navbar-expand .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand>.container\":false,\".navbar-expand>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand .navbar-toggler\":false},[\"display:none\"]],[false,{\".navbar-light .navbar-brand\":false},[\"color:rgba(0,0,0,.9)\"]],[false,{\".navbar-light .navbar-brand:focus\":false,\".navbar-light .navbar-brand:hover\":false},[\"color:rgba(0,0,0,.9)\"]],[true,{\".navbar-light .navbar-nav .nav-link\":true},[\"color:rgba(0,0,0,.5)\"]],[true,{\".navbar-light .navbar-nav .nav-link:focus\":true,\".navbar-light .navbar-nav .nav-link:hover\":true},[\"color:rgba(0,0,0,.7)\"]],[false,{\".navbar-light .navbar-nav .nav-link.disabled\":false},[\"color:rgba(0,0,0,.3)\"]],[false,{\".navbar-light .navbar-nav .active>.nav-link\":false,\".navbar-light .navbar-nav .nav-link.active\":false,\".navbar-light .navbar-nav .nav-link.show\":false,\".navbar-light .navbar-nav .show>.nav-link\":false},[\"color:rgba(0,0,0,.9)\"]],[true,{\".navbar-light .navbar-toggler\":true},[\"color:rgba(0,0,0,.5)\",\"border-color:rgba(0,0,0,.1)\"]],[false,{\".navbar-light .navbar-toggler-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg viewBox=\\\\\'0 0 30 30\\\\\' xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\'%3E%3Cpath stroke=\\\\\'rgba(0, 0, 0, 0.5)\\\\\' stroke-width=\\\\\'2\\\\\' stroke-linecap=\\\\\'round\\\\\' stroke-miterlimit=\\\\\'10\\\\\' d=\\\\\'M4 7h22M4 15h22M4 23h22\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".navbar-light .navbar-text\":false},[\"color:rgba(0,0,0,.5)\"]],[false,{\".navbar-light .navbar-text a\":false},[\"color:rgba(0,0,0,.9)\"]],[false,{\".navbar-light .navbar-text a:focus\":false,\".navbar-light .navbar-text a:hover\":false},[\"color:rgba(0,0,0,.9)\"]],[false,{\".navbar-dark .navbar-brand\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-brand:focus\":false,\".navbar-dark .navbar-brand:hover\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-nav .nav-link\":false},[\"color:rgba(255,255,255,.5)\"]],[false,{\".navbar-dark .navbar-nav .nav-link:focus\":false,\".navbar-dark .navbar-nav .nav-link:hover\":false},[\"color:rgba(255,255,255,.75)\"]],[false,{\".navbar-dark .navbar-nav .nav-link.disabled\":false},[\"color:rgba(255,255,255,.25)\"]],[false,{\".navbar-dark .navbar-nav .active>.nav-link\":false,\".navbar-dark .navbar-nav .nav-link.active\":false,\".navbar-dark .navbar-nav .nav-link.show\":false,\".navbar-dark .navbar-nav .show>.nav-link\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-toggler\":false},[\"color:rgba(255,255,255,.5)\",\"border-color:rgba(255,255,255,.1)\"]],[false,{\".navbar-dark .navbar-toggler-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg viewBox=\\\\\'0 0 30 30\\\\\' xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\'%3E%3Cpath stroke=\\\\\'rgba(255, 255, 255, 0.5)\\\\\' stroke-width=\\\\\'2\\\\\' stroke-linecap=\\\\\'round\\\\\' stroke-miterlimit=\\\\\'10\\\\\' d=\\\\\'M4 7h22M4 15h22M4 23h22\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".navbar-dark .navbar-text\":false},[\"color:rgba(255,255,255,.5)\"]],[false,{\".navbar-dark .navbar-text a\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-text a:focus\":false,\".navbar-dark .navbar-text a:hover\":false},[\"color:#fff\"]],[false,{\".card\":false},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"min-width:0\",\"word-wrap:break-word\",\"background-color:#fff\",\"background-clip:border-box\",\"border:1px solid rgba(0,0,0,.125)\",\"border-radius:.25rem\"]],[false,{\".card>hr\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".card>.list-group:first-child .list-group-item:first-child\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".card>.list-group:last-child .list-group-item:last-child\":false},[\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".card-body\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"padding:1.25rem\"]],[false,{\".card-title\":false},[\"margin-bottom:.75rem\"]],[false,{\".card-subtitle\":false},[\"margin-top:-.375rem\",\"margin-bottom:0\"]],[false,{\".card-text:last-child\":false},[\"margin-bottom:0\"]],[false,{\".card-link:hover\":false},[\"text-decoration:none\"]],[false,{\".card-link+.card-link\":false},[\"margin-left:1.25rem\"]],[false,{\".card-header\":false},[\"padding:.75rem 1.25rem\",\"margin-bottom:0\",\"background-color:rgba(0,0,0,.03)\",\"border-bottom:1px solid rgba(0,0,0,.125)\"]],[false,{\".card-header:first-child\":false},[\"border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0\"]],[false,{\".card-header+.list-group .list-group-item:first-child\":false},[\"border-top:0\"]],[false,{\".card-footer\":false},[\"padding:.75rem 1.25rem\",\"background-color:rgba(0,0,0,.03)\",\"border-top:1px solid rgba(0,0,0,.125)\"]],[false,{\".card-footer:last-child\":false},[\"border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)\"]],[false,{\".card-header-tabs\":false},[\"margin-right:-.625rem\",\"margin-bottom:-.75rem\",\"margin-left:-.625rem\",\"border-bottom:0\"]],[false,{\".card-header-pills\":false},[\"margin-right:-.625rem\",\"margin-left:-.625rem\"]],[false,{\".card-img-overlay\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"padding:1.25rem\"]],[false,{\".card-img\":false},[\"width:100%\",\"border-radius:calc(.25rem - 1px)\"]],[false,{\".card-img-top\":false},[\"width:100%\",\"border-top-left-radius:calc(.25rem - 1px)\",\"border-top-right-radius:calc(.25rem - 1px)\"]],[false,{\".card-img-bottom\":false},[\"width:100%\",\"border-bottom-right-radius:calc(.25rem - 1px)\",\"border-bottom-left-radius:calc(.25rem - 1px)\"]],[false,{\".card-deck\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".card-deck .card\":false},[\"margin-bottom:15px\"]],[false,\"@media (min-width:576px){\"],[false,{\".card-deck\":false},[\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\",\"margin-right:-15px\",\"margin-left:-15px\"]],[false,{\".card-deck .card\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex:1 0 0%\",\"flex:1 0 0%\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"margin-right:15px\",\"margin-bottom:0\",\"margin-left:15px\"]],[false,\"}\"],[false,{\".card-group\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".card-group>.card\":false},[\"margin-bottom:15px\"]],[false,\"@media (min-width:576px){\"],[false,{\".card-group\":false},[\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\"]],[false,{\".card-group>.card\":false},[\"-ms-flex:1 0 0%\",\"flex:1 0 0%\",\"margin-bottom:0\"]],[false,{\".card-group>.card+.card\":false},[\"margin-left:0\",\"border-left:0\"]],[false,{\".card-group>.card:first-child\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".card-group>.card:first-child .card-header\":false,\".card-group>.card:first-child .card-img-top\":false},[\"border-top-right-radius:0\"]],[false,{\".card-group>.card:first-child .card-footer\":false,\".card-group>.card:first-child .card-img-bottom\":false},[\"border-bottom-right-radius:0\"]],[false,{\".card-group>.card:last-child\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".card-group>.card:last-child .card-header\":false,\".card-group>.card:last-child .card-img-top\":false},[\"border-top-left-radius:0\"]],[false,{\".card-group>.card:last-child .card-footer\":false,\".card-group>.card:last-child .card-img-bottom\":false},[\"border-bottom-left-radius:0\"]],[false,{\".card-group>.card:only-child\":false},[\"border-radius:.25rem\"]],[false,{\".card-group>.card:only-child .card-header\":false,\".card-group>.card:only-child .card-img-top\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".card-group>.card:only-child .card-footer\":false,\".card-group>.card:only-child .card-img-bottom\":false},[\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".card-group>.card:not(:first-child):not(:last-child):not(:only-child)\":false},[\"border-radius:0\"]],[false,{\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer\":false,\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header\":false,\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom\":false,\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top\":false},[\"border-radius:0\"]],[false,\"}\"],[false,{\".card-columns .card\":false},[\"margin-bottom:.75rem\"]],[false,\"@media (min-width:576px){\"],[false,{\".card-columns\":false},[\"-webkit-column-count:3\",\"-moz-column-count:3\",\"column-count:3\",\"-webkit-column-gap:1.25rem\",\"-moz-column-gap:1.25rem\",\"column-gap:1.25rem\",\"orphans:1\",\"widows:1\"]],[false,{\".card-columns .card\":false},[\"display:inline-block\",\"width:100%\"]],[false,\"}\"],[false,{\".accordion .card:not(:first-of-type):not(:last-of-type)\":false},[\"border-bottom:0\",\"border-radius:0\"]],[false,{\".accordion .card:not(:first-of-type) .card-header:first-child\":false},[\"border-radius:0\"]],[false,{\".accordion .card:first-of-type\":false},[\"border-bottom:0\",\"border-bottom-right-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".accordion .card:last-of-type\":false},[\"border-top-left-radius:0\",\"border-top-right-radius:0\"]],[false,{\".breadcrumb\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"padding:.75rem 1rem\",\"margin-bottom:1rem\",\"list-style:none\",\"background-color:#e9ecef\",\"border-radius:.25rem\"]],[false,{\".breadcrumb-item+.breadcrumb-item\":false},[\"padding-left:.5rem\"]],[false,{\".breadcrumb-item+.breadcrumb-item::before\":false},[\"display:inline-block\",\"padding-right:.5rem\",\"color:#6c757d\",\"content:\\\"\\/\\\"\"]],[false,{\".breadcrumb-item+.breadcrumb-item:hover::before\":false},[\"text-decoration:underline\"]],[false,{\".breadcrumb-item+.breadcrumb-item:hover::before\":false},[\"text-decoration:none\"]],[false,{\".breadcrumb-item.active\":false},[\"color:#6c757d\"]],[false,{\".pagination\":false},[\"display:-ms-flexbox\",\"display:flex\",\"padding-left:0\",\"list-style:none\",\"border-radius:.25rem\"]],[false,{\".page-link\":false},[\"position:relative\",\"display:block\",\"padding:.5rem .75rem\",\"margin-left:-1px\",\"line-height:1.25\",\"color:#007bff\",\"background-color:#fff\",\"border:1px solid #dee2e6\"]],[false,{\".page-link:hover\":false},[\"z-index:2\",\"color:#0056b3\",\"text-decoration:none\",\"background-color:#e9ecef\",\"border-color:#dee2e6\"]],[false,{\".page-link:focus\":false},[\"z-index:2\",\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".page-link:not(:disabled):not(.disabled)\":false},[\"cursor:pointer\"]],[false,{\".page-item:first-child .page-link\":false},[\"margin-left:0\",\"border-top-left-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".page-item:last-child .page-link\":false},[\"border-top-right-radius:.25rem\",\"border-bottom-right-radius:.25rem\"]],[false,{\".page-item.active .page-link\":false},[\"z-index:1\",\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".page-item.disabled .page-link\":false},[\"color:#6c757d\",\"pointer-events:none\",\"cursor:auto\",\"background-color:#fff\",\"border-color:#dee2e6\"]],[false,{\".pagination-lg .page-link\":false},[\"padding:.75rem 1.5rem\",\"font-size:1.25rem\",\"line-height:1.5\"]],[false,{\".pagination-lg .page-item:first-child .page-link\":false},[\"border-top-left-radius:.3rem\",\"border-bottom-left-radius:.3rem\"]],[false,{\".pagination-lg .page-item:last-child .page-link\":false},[\"border-top-right-radius:.3rem\",\"border-bottom-right-radius:.3rem\"]],[false,{\".pagination-sm .page-link\":false},[\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\"]],[false,{\".pagination-sm .page-item:first-child .page-link\":false},[\"border-top-left-radius:.2rem\",\"border-bottom-left-radius:.2rem\"]],[false,{\".pagination-sm .page-item:last-child .page-link\":false},[\"border-top-right-radius:.2rem\",\"border-bottom-right-radius:.2rem\"]],[false,{\".badge\":false},[\"display:inline-block\",\"padding:.25em .4em\",\"font-size:75%\",\"font-weight:700\",\"line-height:1\",\"text-align:center\",\"white-space:nowrap\",\"vertical-align:baseline\",\"border-radius:.25rem\"]],[false,{\".badge:empty\":false},[\"display:none\"]],[false,{\".btn .badge\":false},[\"position:relative\",\"top:-1px\"]],[false,{\".badge-pill\":false},[\"padding-right:.6em\",\"padding-left:.6em\",\"border-radius:10rem\"]],[false,{\".badge-primary\":false},[\"color:#fff\",\"background-color:#007bff\"]],[false,{\".badge-primary[href]:focus\":false,\".badge-primary[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#0062cc\"]],[false,{\".badge-secondary\":false},[\"color:#fff\",\"background-color:#6c757d\"]],[false,{\".badge-secondary[href]:focus\":false,\".badge-secondary[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#545b62\"]],[false,{\".badge-success\":false},[\"color:#fff\",\"background-color:#28a745\"]],[false,{\".badge-success[href]:focus\":false,\".badge-success[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#1e7e34\"]],[false,{\".badge-info\":false},[\"color:#fff\",\"background-color:#17a2b8\"]],[false,{\".badge-info[href]:focus\":false,\".badge-info[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#117a8b\"]],[false,{\".badge-warning\":false},[\"color:#212529\",\"background-color:#ffc107\"]],[false,{\".badge-warning[href]:focus\":false,\".badge-warning[href]:hover\":false},[\"color:#212529\",\"text-decoration:none\",\"background-color:#d39e00\"]],[false,{\".badge-danger\":false},[\"color:#fff\",\"background-color:#dc3545\"]],[false,{\".badge-danger[href]:focus\":false,\".badge-danger[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#bd2130\"]],[false,{\".badge-light\":false},[\"color:#212529\",\"background-color:#f8f9fa\"]],[false,{\".badge-light[href]:focus\":false,\".badge-light[href]:hover\":false},[\"color:#212529\",\"text-decoration:none\",\"background-color:#dae0e5\"]],[false,{\".badge-dark\":false},[\"color:#fff\",\"background-color:#343a40\"]],[false,{\".badge-dark[href]:focus\":false,\".badge-dark[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#1d2124\"]],[false,{\".jumbotron\":false},[\"padding:2rem 1rem\",\"margin-bottom:2rem\",\"background-color:#e9ecef\",\"border-radius:.3rem\"]],[false,\"@media (min-width:576px){\"],[false,{\".jumbotron\":false},[\"padding:4rem 2rem\"]],[false,\"}\"],[false,{\".jumbotron-fluid\":false},[\"padding-right:0\",\"padding-left:0\",\"border-radius:0\"]],[false,{\".alert\":false},[\"position:relative\",\"padding:.75rem 1.25rem\",\"margin-bottom:1rem\",\"border:1px solid transparent\",\"border-radius:.25rem\"]],[false,{\".alert-heading\":false},[\"color:inherit\"]],[false,{\".alert-link\":false},[\"font-weight:700\"]],[false,{\".alert-dismissible\":false},[\"padding-right:4rem\"]],[false,{\".alert-dismissible .close\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"padding:.75rem 1.25rem\",\"color:inherit\"]],[false,{\".alert-primary\":false},[\"color:#004085\",\"background-color:#cce5ff\",\"border-color:#b8daff\"]],[false,{\".alert-primary hr\":false},[\"border-top-color:#9fcdff\"]],[false,{\".alert-primary .alert-link\":false},[\"color:#002752\"]],[false,{\".alert-secondary\":false},[\"color:#383d41\",\"background-color:#e2e3e5\",\"border-color:#d6d8db\"]],[false,{\".alert-secondary hr\":false},[\"border-top-color:#c8cbcf\"]],[false,{\".alert-secondary .alert-link\":false},[\"color:#202326\"]],[false,{\".alert-success\":false},[\"color:#155724\",\"background-color:#d4edda\",\"border-color:#c3e6cb\"]],[false,{\".alert-success hr\":false},[\"border-top-color:#b1dfbb\"]],[false,{\".alert-success .alert-link\":false},[\"color:#0b2e13\"]],[false,{\".alert-info\":false},[\"color:#0c5460\",\"background-color:#d1ecf1\",\"border-color:#bee5eb\"]],[false,{\".alert-info hr\":false},[\"border-top-color:#abdde5\"]],[false,{\".alert-info .alert-link\":false},[\"color:#062c33\"]],[false,{\".alert-warning\":false},[\"color:#856404\",\"background-color:#fff3cd\",\"border-color:#ffeeba\"]],[false,{\".alert-warning hr\":false},[\"border-top-color:#ffe8a1\"]],[false,{\".alert-warning .alert-link\":false},[\"color:#533f03\"]],[false,{\".alert-danger\":false},[\"color:#721c24\",\"background-color:#f8d7da\",\"border-color:#f5c6cb\"]],[false,{\".alert-danger hr\":false},[\"border-top-color:#f1b0b7\"]],[false,{\".alert-danger .alert-link\":false},[\"color:#491217\"]],[false,{\".alert-light\":false},[\"color:#818182\",\"background-color:#fefefe\",\"border-color:#fdfdfe\"]],[false,{\".alert-light hr\":false},[\"border-top-color:#ececf6\"]],[false,{\".alert-light .alert-link\":false},[\"color:#686868\"]],[false,{\".alert-dark\":false},[\"color:#1b1e21\",\"background-color:#d6d8d9\",\"border-color:#c6c8ca\"]],[false,{\".alert-dark hr\":false},[\"border-top-color:#b9bbbe\"]],[false,{\".alert-dark .alert-link\":false},[\"color:#040505\"]],[true,\"@-webkit-keyframes progress-bar-stripes{\"],[true,\"from{background-position:1rem 0}\"],[true,\"to{background-position:0 0}\"],[true,\"}@keyframes progress-bar-stripes{\"],[true,\"from{background-position:1rem 0}\"],[true,\"to{background-position:0 0}\"],[true,\"}\"],[false,{\".progress\":false},[\"display:-ms-flexbox\",\"display:flex\",\"height:1rem\",\"overflow:hidden\",\"font-size:.75rem\",\"background-color:#e9ecef\",\"border-radius:.25rem\"]],[false,{\".progress-bar\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"-ms-flex-pack:center\",\"justify-content:center\",\"color:#fff\",\"text-align:center\",\"white-space:nowrap\",\"background-color:#007bff\",\"transition:width .6s ease\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".progress-bar\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".progress-bar-striped\":false},[\"background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)\",\"background-size:1rem 1rem\"]],[false,{\".progress-bar-animated\":false},[\"-webkit-animation:progress-bar-stripes 1s linear infinite\",\"animation:progress-bar-stripes 1s linear infinite\"]],[false,{\".media\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".media-body\":false},[\"-ms-flex:1\",\"flex:1\"]],[false,{\".list-group\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"padding-left:0\",\"margin-bottom:0\"]],[false,{\".list-group-item-action\":false},[\"width:100%\",\"color:#495057\",\"text-align:inherit\"]],[false,{\".list-group-item-action:focus\":false,\".list-group-item-action:hover\":false},[\"color:#495057\",\"text-decoration:none\",\"background-color:#f8f9fa\"]],[false,{\".list-group-item-action:active\":false},[\"color:#212529\",\"background-color:#e9ecef\"]],[false,{\".list-group-item\":false},[\"position:relative\",\"display:block\",\"padding:.75rem 1.25rem\",\"margin-bottom:-1px\",\"background-color:#fff\",\"border:1px solid rgba(0,0,0,.125)\"]],[false,{\".list-group-item:first-child\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".list-group-item:last-child\":false},[\"margin-bottom:0\",\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".list-group-item:focus\":false,\".list-group-item:hover\":false},[\"z-index:1\",\"text-decoration:none\"]],[false,{\".list-group-item.disabled\":false,\".list-group-item:disabled\":false},[\"color:#6c757d\",\"background-color:#fff\"]],[false,{\".list-group-item.active\":false},[\"z-index:2\",\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".list-group-flush .list-group-item\":false},[\"border-right:0\",\"border-left:0\",\"border-radius:0\"]],[false,{\".list-group-flush:first-child .list-group-item:first-child\":false},[\"border-top:0\"]],[false,{\".list-group-flush:last-child .list-group-item:last-child\":false},[\"border-bottom:0\"]],[false,{\".list-group-item-primary\":false},[\"color:#004085\",\"background-color:#b8daff\"]],[false,{\".list-group-item-primary.list-group-item-action:focus\":false,\".list-group-item-primary.list-group-item-action:hover\":false},[\"color:#004085\",\"background-color:#9fcdff\"]],[false,{\".list-group-item-primary.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#004085\",\"border-color:#004085\"]],[false,{\".list-group-item-secondary\":false},[\"color:#383d41\",\"background-color:#d6d8db\"]],[false,{\".list-group-item-secondary.list-group-item-action:focus\":false,\".list-group-item-secondary.list-group-item-action:hover\":false},[\"color:#383d41\",\"background-color:#c8cbcf\"]],[false,{\".list-group-item-secondary.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#383d41\",\"border-color:#383d41\"]],[false,{\".list-group-item-success\":false},[\"color:#155724\",\"background-color:#c3e6cb\"]],[false,{\".list-group-item-success.list-group-item-action:focus\":false,\".list-group-item-success.list-group-item-action:hover\":false},[\"color:#155724\",\"background-color:#b1dfbb\"]],[false,{\".list-group-item-success.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#155724\",\"border-color:#155724\"]],[false,{\".list-group-item-info\":false},[\"color:#0c5460\",\"background-color:#bee5eb\"]],[false,{\".list-group-item-info.list-group-item-action:focus\":false,\".list-group-item-info.list-group-item-action:hover\":false},[\"color:#0c5460\",\"background-color:#abdde5\"]],[false,{\".list-group-item-info.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#0c5460\",\"border-color:#0c5460\"]],[false,{\".list-group-item-warning\":false},[\"color:#856404\",\"background-color:#ffeeba\"]],[false,{\".list-group-item-warning.list-group-item-action:focus\":false,\".list-group-item-warning.list-group-item-action:hover\":false},[\"color:#856404\",\"background-color:#ffe8a1\"]],[false,{\".list-group-item-warning.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#856404\",\"border-color:#856404\"]],[false,{\".list-group-item-danger\":false},[\"color:#721c24\",\"background-color:#f5c6cb\"]],[false,{\".list-group-item-danger.list-group-item-action:focus\":false,\".list-group-item-danger.list-group-item-action:hover\":false},[\"color:#721c24\",\"background-color:#f1b0b7\"]],[false,{\".list-group-item-danger.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#721c24\",\"border-color:#721c24\"]],[false,{\".list-group-item-light\":false},[\"color:#818182\",\"background-color:#fdfdfe\"]],[false,{\".list-group-item-light.list-group-item-action:focus\":false,\".list-group-item-light.list-group-item-action:hover\":false},[\"color:#818182\",\"background-color:#ececf6\"]],[false,{\".list-group-item-light.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#818182\",\"border-color:#818182\"]],[false,{\".list-group-item-dark\":false},[\"color:#1b1e21\",\"background-color:#c6c8ca\"]],[false,{\".list-group-item-dark.list-group-item-action:focus\":false,\".list-group-item-dark.list-group-item-action:hover\":false},[\"color:#1b1e21\",\"background-color:#b9bbbe\"]],[false,{\".list-group-item-dark.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#1b1e21\",\"border-color:#1b1e21\"]],[false,{\".close\":false},[\"float:right\",\"font-size:1.5rem\",\"font-weight:700\",\"line-height:1\",\"color:#000\",\"text-shadow:0 1px 0 #fff\",\"opacity:.5\"]],[false,{\".close:not(:disabled):not(.disabled)\":false},[\"cursor:pointer\"]],[false,{\".close:not(:disabled):not(.disabled):focus\":false,\".close:not(:disabled):not(.disabled):hover\":false},[\"color:#000\",\"text-decoration:none\",\"opacity:.75\"]],[false,{\"button.close\":false},[\"padding:0\",\"background-color:transparent\",\"border:0\",\"-webkit-appearance:none\"]],[false,{\".modal-open\":false},[\"overflow:hidden\"]],[false,{\".modal-open .modal\":false},[\"overflow-x:hidden\",\"overflow-y:auto\"]],[false,{\".modal\":false},[\"position:fixed\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"z-index:1050\",\"display:none\",\"overflow:hidden\",\"outline:0\"]],[false,{\".modal-dialog\":false},[\"position:relative\",\"width:auto\",\"margin:.5rem\",\"pointer-events:none\"]],[false,{\".modal.fade .modal-dialog\":false},[\"transition:-webkit-transform .3s ease-out\",\"transition:transform .3s ease-out\",\"transition:transform .3s ease-out,-webkit-transform .3s ease-out\",\"-webkit-transform:translate(0,-25%)\",\"transform:translate(0,-25%)\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".modal.fade .modal-dialog\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".modal.show .modal-dialog\":false},[\"-webkit-transform:translate(0,0)\",\"transform:translate(0,0)\"]],[false,{\".modal-dialog-centered\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"min-height:calc(100% - ( .5rem * 2 ))\"]],[false,{\".modal-dialog-centered::before\":false},[\"display:block\",\"height:calc(100vh - ( .5rem * 2 ))\",\"content:\\\"\\\"\"]],[false,{\".modal-content\":false},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"width:100%\",\"pointer-events:auto\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid rgba(0,0,0,.2)\",\"border-radius:.3rem\",\"outline:0\"]],[false,{\".modal-backdrop\":false},[\"position:fixed\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"z-index:1040\",\"background-color:#000\"]],[false,{\".modal-backdrop.fade\":false},[\"opacity:0\"]],[false,{\".modal-backdrop.show\":false},[\"opacity:.5\"]],[false,{\".modal-header\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:start\",\"align-items:flex-start\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"padding:1rem\",\"border-bottom:1px solid #e9ecef\",\"border-top-left-radius:.3rem\",\"border-top-right-radius:.3rem\"]],[false,{\".modal-header .close\":false},[\"padding:1rem\",\"margin:-1rem -1rem -1rem auto\"]],[false,{\".modal-title\":false},[\"margin-bottom:0\",\"line-height:1.5\"]],[false,{\".modal-body\":false},[\"position:relative\",\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"padding:1rem\"]],[false,{\".modal-footer\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:end\",\"justify-content:flex-end\",\"padding:1rem\",\"border-top:1px solid #e9ecef\"]],[false,{\".modal-footer>:not(:first-child)\":false},[\"margin-left:.25rem\"]],[false,{\".modal-footer>:not(:last-child)\":false},[\"margin-right:.25rem\"]],[false,{\".modal-scrollbar-measure\":false},[\"position:absolute\",\"top:-9999px\",\"width:50px\",\"height:50px\",\"overflow:scroll\"]],[false,\"@media (min-width:576px){\"],[false,{\".modal-dialog\":false},[\"max-width:500px\",\"margin:1.75rem auto\"]],[false,{\".modal-dialog-centered\":false},[\"min-height:calc(100% - ( 1.75rem * 2 ))\"]],[false,{\".modal-dialog-centered::before\":false},[\"height:calc(100vh - ( 1.75rem * 2 ))\"]],[false,{\".modal-sm\":false},[\"max-width:300px\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".modal-lg\":false},[\"max-width:800px\"]],[false,\"}\"],[false,{\".tooltip\":false},[\"position:absolute\",\"z-index:1070\",\"display:block\",\"margin:0\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"font-style:normal\",\"font-weight:400\",\"line-height:1.5\",\"text-align:left\",\"text-align:start\",\"text-decoration:none\",\"text-shadow:none\",\"text-transform:none\",\"letter-spacing:normal\",\"word-break:normal\",\"word-spacing:normal\",\"white-space:normal\",\"line-break:auto\",\"font-size:.875rem\",\"word-wrap:break-word\",\"opacity:0\"]],[false,{\".tooltip.show\":false},[\"opacity:.9\"]],[false,{\".tooltip .arrow\":false},[\"position:absolute\",\"display:block\",\"width:.8rem\",\"height:.4rem\"]],[false,{\".tooltip .arrow::before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"border-color:transparent\",\"border-style:solid\"]],[false,{\".bs-tooltip-auto[x-placement^=top]\":false,\".bs-tooltip-top\":false},[\"padding:.4rem 0\"]],[false,{\".bs-tooltip-auto[x-placement^=top] .arrow\":false,\".bs-tooltip-top .arrow\":false},[\"bottom:0\"]],[false,{\".bs-tooltip-auto[x-placement^=top] .arrow::before\":false,\".bs-tooltip-top .arrow::before\":false},[\"top:0\",\"border-width:.4rem .4rem 0\",\"border-top-color:#000\"]],[false,{\".bs-tooltip-auto[x-placement^=right]\":false,\".bs-tooltip-right\":false},[\"padding:0 .4rem\"]],[false,{\".bs-tooltip-auto[x-placement^=right] .arrow\":false,\".bs-tooltip-right .arrow\":false},[\"left:0\",\"width:.4rem\",\"height:.8rem\"]],[false,{\".bs-tooltip-auto[x-placement^=right] .arrow::before\":false,\".bs-tooltip-right .arrow::before\":false},[\"right:0\",\"border-width:.4rem .4rem .4rem 0\",\"border-right-color:#000\"]],[false,{\".bs-tooltip-auto[x-placement^=bottom]\":false,\".bs-tooltip-bottom\":false},[\"padding:.4rem 0\"]],[false,{\".bs-tooltip-auto[x-placement^=bottom] .arrow\":false,\".bs-tooltip-bottom .arrow\":false},[\"top:0\"]],[false,{\".bs-tooltip-auto[x-placement^=bottom] .arrow::before\":false,\".bs-tooltip-bottom .arrow::before\":false},[\"bottom:0\",\"border-width:0 .4rem .4rem\",\"border-bottom-color:#000\"]],[false,{\".bs-tooltip-auto[x-placement^=left]\":false,\".bs-tooltip-left\":false},[\"padding:0 .4rem\"]],[false,{\".bs-tooltip-auto[x-placement^=left] .arrow\":false,\".bs-tooltip-left .arrow\":false},[\"right:0\",\"width:.4rem\",\"height:.8rem\"]],[false,{\".bs-tooltip-auto[x-placement^=left] .arrow::before\":false,\".bs-tooltip-left .arrow::before\":false},[\"left:0\",\"border-width:.4rem 0 .4rem .4rem\",\"border-left-color:#000\"]],[false,{\".tooltip-inner\":false},[\"max-width:200px\",\"padding:.25rem .5rem\",\"color:#fff\",\"text-align:center\",\"background-color:#000\",\"border-radius:.25rem\"]],[false,{\".popover\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"z-index:1060\",\"display:block\",\"max-width:276px\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"font-style:normal\",\"font-weight:400\",\"line-height:1.5\",\"text-align:left\",\"text-align:start\",\"text-decoration:none\",\"text-shadow:none\",\"text-transform:none\",\"letter-spacing:normal\",\"word-break:normal\",\"word-spacing:normal\",\"white-space:normal\",\"line-break:auto\",\"font-size:.875rem\",\"word-wrap:break-word\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid rgba(0,0,0,.2)\",\"border-radius:.3rem\"]],[false,{\".popover .arrow\":false},[\"position:absolute\",\"display:block\",\"width:1rem\",\"height:.5rem\",\"margin:0 .3rem\"]],[false,{\".popover .arrow::after\":false,\".popover .arrow::before\":false},[\"position:absolute\",\"display:block\",\"content:\\\"\\\"\",\"border-color:transparent\",\"border-style:solid\"]],[false,{\".bs-popover-auto[x-placement^=top]\":false,\".bs-popover-top\":false},[\"margin-bottom:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow\":false,\".bs-popover-top .arrow\":false},[\"bottom:calc(( .5rem + 1px ) * -1)\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow::after\":false,\".bs-popover-auto[x-placement^=top] .arrow::before\":false,\".bs-popover-top .arrow::after\":false,\".bs-popover-top .arrow::before\":false},[\"border-width:.5rem .5rem 0\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow::before\":false,\".bs-popover-top .arrow::before\":false},[\"bottom:0\",\"border-top-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow::after\":false,\".bs-popover-top .arrow::after\":false},[\"bottom:1px\",\"border-top-color:#fff\"]],[false,{\".bs-popover-auto[x-placement^=right]\":false,\".bs-popover-right\":false},[\"margin-left:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow\":false,\".bs-popover-right .arrow\":false},[\"left:calc(( .5rem + 1px ) * -1)\",\"width:.5rem\",\"height:1rem\",\"margin:.3rem 0\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow::after\":false,\".bs-popover-auto[x-placement^=right] .arrow::before\":false,\".bs-popover-right .arrow::after\":false,\".bs-popover-right .arrow::before\":false},[\"border-width:.5rem .5rem .5rem 0\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow::before\":false,\".bs-popover-right .arrow::before\":false},[\"left:0\",\"border-right-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow::after\":false,\".bs-popover-right .arrow::after\":false},[\"left:1px\",\"border-right-color:#fff\"]],[false,{\".bs-popover-auto[x-placement^=bottom]\":false,\".bs-popover-bottom\":false},[\"margin-top:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow\":false,\".bs-popover-bottom .arrow\":false},[\"top:calc(( .5rem + 1px ) * -1)\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow::after\":false,\".bs-popover-auto[x-placement^=bottom] .arrow::before\":false,\".bs-popover-bottom .arrow::after\":false,\".bs-popover-bottom .arrow::before\":false},[\"border-width:0 .5rem .5rem .5rem\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow::before\":false,\".bs-popover-bottom .arrow::before\":false},[\"top:0\",\"border-bottom-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow::after\":false,\".bs-popover-bottom .arrow::after\":false},[\"top:1px\",\"border-bottom-color:#fff\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .popover-header::before\":false,\".bs-popover-bottom .popover-header::before\":false},[\"position:absolute\",\"top:0\",\"left:50%\",\"display:block\",\"width:1rem\",\"margin-left:-.5rem\",\"content:\\\"\\\"\",\"border-bottom:1px solid #f7f7f7\"]],[false,{\".bs-popover-auto[x-placement^=left]\":false,\".bs-popover-left\":false},[\"margin-right:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow\":false,\".bs-popover-left .arrow\":false},[\"right:calc(( .5rem + 1px ) * -1)\",\"width:.5rem\",\"height:1rem\",\"margin:.3rem 0\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow::after\":false,\".bs-popover-auto[x-placement^=left] .arrow::before\":false,\".bs-popover-left .arrow::after\":false,\".bs-popover-left .arrow::before\":false},[\"border-width:.5rem 0 .5rem .5rem\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow::before\":false,\".bs-popover-left .arrow::before\":false},[\"right:0\",\"border-left-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow::after\":false,\".bs-popover-left .arrow::after\":false},[\"right:1px\",\"border-left-color:#fff\"]],[false,{\".popover-header\":false},[\"padding:.5rem .75rem\",\"margin-bottom:0\",\"font-size:1rem\",\"color:inherit\",\"background-color:#f7f7f7\",\"border-bottom:1px solid #ebebeb\",\"border-top-left-radius:calc(.3rem - 1px)\",\"border-top-right-radius:calc(.3rem - 1px)\"]],[false,{\".popover-header:empty\":false},[\"display:none\"]],[false,{\".popover-body\":false},[\"padding:.5rem .75rem\",\"color:#212529\"]],[false,{\".carousel\":false},[\"position:relative\"]],[false,{\".carousel-inner\":false},[\"position:relative\",\"width:100%\",\"overflow:hidden\"]],[false,{\".carousel-item\":false},[\"position:relative\",\"display:none\",\"-ms-flex-align:center\",\"align-items:center\",\"width:100%\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"-webkit-perspective:1000px\",\"perspective:1000px\"]],[false,{\".carousel-item-next\":false,\".carousel-item-prev\":false,\".carousel-item.active\":false},[\"display:block\",\"transition:-webkit-transform .6s ease\",\"transition:transform .6s ease\",\"transition:transform .6s ease,-webkit-transform .6s ease\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".carousel-item-next\":false,\".carousel-item-prev\":false,\".carousel-item.active\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".carousel-item-next\":false,\".carousel-item-prev\":false},[\"position:absolute\",\"top:0\"]],[false,{\".carousel-item-next.carousel-item-left\":false,\".carousel-item-prev.carousel-item-right\":false},[\"-webkit-transform:translateX(0)\",\"transform:translateX(0)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".carousel-item-next.carousel-item-left\":false,\".carousel-item-prev.carousel-item-right\":false},[\"-webkit-transform:translate3d(0,0,0)\",\"transform:translate3d(0,0,0)\"]],[false,\"}\"],[false,{\".active.carousel-item-right\":false,\".carousel-item-next\":false},[\"-webkit-transform:translateX(100%)\",\"transform:translateX(100%)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".active.carousel-item-right\":false,\".carousel-item-next\":false},[\"-webkit-transform:translate3d(100%,0,0)\",\"transform:translate3d(100%,0,0)\"]],[false,\"}\"],[false,{\".active.carousel-item-left\":false,\".carousel-item-prev\":false},[\"-webkit-transform:translateX(-100%)\",\"transform:translateX(-100%)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".active.carousel-item-left\":false,\".carousel-item-prev\":false},[\"-webkit-transform:translate3d(-100%,0,0)\",\"transform:translate3d(-100%,0,0)\"]],[false,\"}\"],[false,{\".carousel-fade .carousel-item\":false},[\"opacity:0\",\"transition-duration:.6s\",\"transition-property:opacity\"]],[false,{\".carousel-fade .carousel-item-next.carousel-item-left\":false,\".carousel-fade .carousel-item-prev.carousel-item-right\":false,\".carousel-fade .carousel-item.active\":false},[\"opacity:1\"]],[false,{\".carousel-fade .active.carousel-item-left\":false,\".carousel-fade .active.carousel-item-right\":false},[\"opacity:0\"]],[false,{\".carousel-fade .active.carousel-item-left\":false,\".carousel-fade .active.carousel-item-prev\":false,\".carousel-fade .carousel-item-next\":false,\".carousel-fade .carousel-item-prev\":false,\".carousel-fade .carousel-item.active\":false},[\"-webkit-transform:translateX(0)\",\"transform:translateX(0)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".carousel-fade .active.carousel-item-left\":false,\".carousel-fade .active.carousel-item-prev\":false,\".carousel-fade .carousel-item-next\":false,\".carousel-fade .carousel-item-prev\":false,\".carousel-fade .carousel-item.active\":false},[\"-webkit-transform:translate3d(0,0,0)\",\"transform:translate3d(0,0,0)\"]],[false,\"}\"],[false,{\".carousel-control-next\":false,\".carousel-control-prev\":false},[\"position:absolute\",\"top:0\",\"bottom:0\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"width:15%\",\"color:#fff\",\"text-align:center\",\"opacity:.5\"]],[false,{\".carousel-control-next:focus\":false,\".carousel-control-next:hover\":false,\".carousel-control-prev:focus\":false,\".carousel-control-prev:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"outline:0\",\"opacity:.9\"]],[false,{\".carousel-control-prev\":false},[\"left:0\"]],[false,{\".carousel-control-next\":false},[\"right:0\"]],[false,{\".carousel-control-next-icon\":false,\".carousel-control-prev-icon\":false},[\"display:inline-block\",\"width:20px\",\"height:20px\",\"background:transparent no-repeat center center\",\"background-size:100% 100%\"]],[false,{\".carousel-control-prev-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' fill=\\\\\'%23fff\\\\\' viewBox=\\\\\'0 0 8 8\\\\\'%3E%3Cpath d=\\\\\'M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".carousel-control-next-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' fill=\\\\\'%23fff\\\\\' viewBox=\\\\\'0 0 8 8\\\\\'%3E%3Cpath d=\\\\\'M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".carousel-indicators\":false},[\"position:absolute\",\"right:0\",\"bottom:10px\",\"left:0\",\"z-index:15\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-pack:center\",\"justify-content:center\",\"padding-left:0\",\"margin-right:15%\",\"margin-left:15%\",\"list-style:none\"]],[false,{\".carousel-indicators li\":false},[\"position:relative\",\"-ms-flex:0 1 auto\",\"flex:0 1 auto\",\"width:30px\",\"height:3px\",\"margin-right:3px\",\"margin-left:3px\",\"text-indent:-999px\",\"cursor:pointer\",\"background-color:rgba(255,255,255,.5)\"]],[false,{\".carousel-indicators li::before\":false},[\"position:absolute\",\"top:-10px\",\"left:0\",\"display:inline-block\",\"width:100%\",\"height:10px\",\"content:\\\"\\\"\"]],[false,{\".carousel-indicators li::after\":false},[\"position:absolute\",\"bottom:-10px\",\"left:0\",\"display:inline-block\",\"width:100%\",\"height:10px\",\"content:\\\"\\\"\"]],[false,{\".carousel-indicators .active\":false},[\"background-color:#fff\"]],[false,{\".carousel-caption\":false},[\"position:absolute\",\"right:15%\",\"bottom:20px\",\"left:15%\",\"z-index:10\",\"padding-top:20px\",\"padding-bottom:20px\",\"color:#fff\",\"text-align:center\"]],[false,{\".align-baseline:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:baseline\"]],[false,{\".align-top:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:top\"]],[false,{\".align-middle:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:middle\"]],[false,{\".align-bottom:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:bottom\"]],[false,{\".align-text-bottom:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:text-bottom\"]],[false,{\".align-text-top:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:text-top\"]],[false,{\".bg-primary:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#007bff\"]],[false,{\"a.bg-primary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-primary:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-primary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-primary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#0062cc\"]],[false,{\".bg-secondary:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#6c757d\"]],[false,{\"a.bg-secondary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-secondary:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-secondary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-secondary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#545b62\"]],[false,{\".bg-success:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#28a745\"]],[false,{\"a.bg-success:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-success:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-success:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-success:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#1e7e34\"]],[false,{\".bg-info:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#17a2b8\"]],[false,{\"a.bg-info:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-info:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-info:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-info:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#117a8b\"]],[false,{\".bg-warning:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#ffc107\"]],[false,{\"a.bg-warning:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-warning:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-warning:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-warning:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#d39e00\"]],[false,{\".bg-danger:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#dc3545\"]],[false,{\"a.bg-danger:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-danger:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-danger:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-danger:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#bd2130\"]],[true,{\".bg-light:not(#_#_#_#_#_#_#_)\":true},[\"background-color:#f8f9fa\"]],[true,{\"a.bg-light:focus:not(#_#_#_#_#_#_#_#_)\":true,\"a.bg-light:hover:not(#_#_#_#_#_#_#_#_)\":true,\"button.bg-light:focus:not(#_#_#_#_#_#_#_#_)\":true,\"button.bg-light:hover:not(#_#_#_#_#_#_#_#_)\":true},[\"background-color:#dae0e5\"]],[false,{\".bg-dark:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#343a40\"]],[false,{\"a.bg-dark:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-dark:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-dark:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-dark:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#1d2124\"]],[false,{\".bg-white:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#fff\"]],[false,{\".bg-transparent:not(#_#_#_#_#_#_#_)\":false},[\"background-color:transparent\"]],[false,{\".border:not(#_#_#_#_#_#_#_)\":false},[\"border:1px solid #dee2e6\"]],[false,{\".border-top:not(#_#_#_#_#_#_#_)\":false},[\"border-top:1px solid #dee2e6\"]],[false,{\".border-right:not(#_#_#_#_#_#_#_)\":false},[\"border-right:1px solid #dee2e6\"]],[false,{\".border-bottom:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom:1px solid #dee2e6\"]],[false,{\".border-left:not(#_#_#_#_#_#_#_)\":false},[\"border-left:1px solid #dee2e6\"]],[false,{\".border-0:not(#_#_#_#_#_#_#_)\":false},[\"border:0\"]],[false,{\".border-top-0:not(#_#_#_#_#_#_#_)\":false},[\"border-top:0\"]],[false,{\".border-right-0:not(#_#_#_#_#_#_#_)\":false},[\"border-right:0\"]],[false,{\".border-bottom-0:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom:0\"]],[false,{\".border-left-0:not(#_#_#_#_#_#_#_)\":false},[\"border-left:0\"]],[false,{\".border-primary:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#007bff\"]],[false,{\".border-secondary:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#6c757d\"]],[false,{\".border-success:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#28a745\"]],[false,{\".border-info:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#17a2b8\"]],[false,{\".border-warning:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#ffc107\"]],[false,{\".border-danger:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#dc3545\"]],[false,{\".border-light:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#f8f9fa\"]],[false,{\".border-dark:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#343a40\"]],[false,{\".border-white:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#fff\"]],[false,{\".rounded:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:.25rem\"]],[false,{\".rounded-top:not(#_#_#_#_#_#_#_)\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".rounded-right:not(#_#_#_#_#_#_#_)\":false},[\"border-top-right-radius:.25rem\",\"border-bottom-right-radius:.25rem\"]],[false,{\".rounded-bottom:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".rounded-left:not(#_#_#_#_#_#_#_)\":false},[\"border-top-left-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".rounded-circle:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:50%\"]],[false,{\".rounded-0:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[false,{\".clearfix::after\":false},[\"display:block\",\"clear:both\",\"content:\\\"\\\"\"]],[true,{\".d-none:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[false,{\".d-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[true,{\".d-block:not(#_#_#_#_#_#_#_)\":true},[\"display:block\"]],[false,{\".d-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[true,{\".d-flex:not(#_#_#_#_#_#_#_)\":true},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"@media (min-width:576px){\"],[false,{\".d-sm-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-sm-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-sm-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-sm-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-sm-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-sm-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-sm-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-sm-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-sm-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[true,\"@media (min-width:768px){\"],[false,{\".d-md-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-md-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-md-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-md-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-md-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-md-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-md-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[true,{\".d-md-flex:not(#_#_#_#_#_#_#_)\":true},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-md-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[true,{\".d-lg-none:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[false,{\".d-lg-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-lg-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[true,{\".d-lg-block:not(#_#_#_#_#_#_#_)\":true},[\"display:block\"]],[false,{\".d-lg-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-lg-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-lg-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-lg-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-lg-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[true,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".d-xl-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-xl-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-xl-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-xl-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-xl-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-xl-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-xl-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-xl-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-xl-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media print{\"],[false,{\".d-print-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-print-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-print-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-print-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-print-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-print-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-print-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-print-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-print-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,{\".embed-responsive\":false},[\"position:relative\",\"display:block\",\"width:100%\",\"padding:0\",\"overflow:hidden\"]],[false,{\".embed-responsive::before\":false},[\"display:block\",\"content:\\\"\\\"\"]],[false,{\".embed-responsive .embed-responsive-item\":false,\".embed-responsive embed\":false,\".embed-responsive amp-iframe\":false,\".embed-responsive amp-google-document-embed\":false,\".embed-responsive amp-video\":false,\".embed-responsive amp-youtube\":false},[\"position:absolute\",\"top:0\",\"bottom:0\",\"left:0\",\"width:100%\",\"height:100%\",\"border:0\"]],[false,{\".embed-responsive-21by9::before\":false},[\"padding-top:42.857143%\"]],[false,{\".embed-responsive-16by9::before\":false},[\"padding-top:56.25%\"]],[false,{\".embed-responsive-4by3::before\":false},[\"padding-top:75%\"]],[false,{\".embed-responsive-1by1::before\":false},[\"padding-top:100%\"]],[true,{\".flex-row:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[true,{\".flex-column:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[true,{\".justify-content-center:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[true,{\".justify-content-between:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[true,{\".align-items-center:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"@media (min-width:576px){\"],[false,{\".flex-sm-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-sm-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-sm-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-sm-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-sm-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-sm-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-sm-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-sm-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-sm-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-sm-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-sm-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-sm-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-sm-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-sm-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-sm-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-sm-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-sm-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-sm-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-sm-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-sm-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-sm-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[true,\"@media (min-width:768px){\"],[false,{\".flex-md-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-md-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-md-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-md-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[true,{\".flex-md-wrap:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-md-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-md-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-md-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-md-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-md-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-md-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-md-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-md-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-md-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-md-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-md-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-md-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-md-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-md-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-md-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-md-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[true,{\".flex-lg-row:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[true,{\".flex-lg-column:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-lg-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-lg-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-lg-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-lg-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-lg-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-lg-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-lg-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-lg-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-lg-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-lg-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[true,{\".justify-content-lg-start:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[true,{\".justify-content-lg-between:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-lg-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-lg-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-lg-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-lg-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-lg-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-lg-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-lg-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-lg-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[true,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".flex-xl-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-xl-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-xl-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-xl-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-xl-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-xl-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-xl-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-xl-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-xl-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-xl-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-xl-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-xl-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-xl-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-xl-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-xl-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-xl-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-xl-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-xl-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-xl-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-xl-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-xl-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[false,{\".float-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"@media (min-width:576px){\"],[false,{\".float-sm-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-sm-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-sm-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".float-md-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-md-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-md-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".float-lg-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-lg-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-lg-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".float-xl-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-xl-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-xl-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,{\".position-static:not(#_#_#_#_#_#_#_)\":false},[\"position:static\"]],[true,{\".position-relative:not(#_#_#_#_#_#_#_)\":true},[\"position:relative\"]],[false,{\".position-absolute:not(#_#_#_#_#_#_#_)\":false},[\"position:absolute\"]],[false,{\".position-fixed:not(#_#_#_#_#_#_#_)\":false},[\"position:fixed\"]],[false,{\".position-sticky:not(#_#_#_#_#_#_#_)\":false},[\"position:-webkit-sticky\",\"position:sticky\"]],[false,{\".fixed-top\":false},[\"position:fixed\",\"top:0\",\"right:0\",\"left:0\",\"z-index:1030\"]],[false,{\".fixed-bottom\":false},[\"position:fixed\",\"right:0\",\"bottom:0\",\"left:0\",\"z-index:1030\"]],[false,\"@supports ((position:-webkit-sticky) or (position:sticky)){\"],[false,{\".sticky-top\":false},[\"position:-webkit-sticky\",\"position:sticky\",\"top:0\",\"z-index:1020\"]],[false,\"}\"],[false,{\".sr-only\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"white-space:nowrap\",\"border:0\"]],[false,{\".sr-only-focusable:active\":false,\".sr-only-focusable:focus\":false},[\"position:static\",\"width:auto\",\"height:auto\",\"overflow:visible\",\"clip:auto\",\"white-space:normal\"]],[false,{\".shadow-sm:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:0 .125rem .25rem rgba(0,0,0,.075)\"]],[false,{\".shadow:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:0 .5rem 1rem rgba(0,0,0,.15)\"]],[false,{\".shadow-lg:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:0 1rem 3rem rgba(0,0,0,.175)\"]],[false,{\".shadow-none:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:none\"]],[false,{\".w-25:not(#_#_#_#_#_#_#_)\":false},[\"width:25%\"]],[false,{\".w-50:not(#_#_#_#_#_#_#_)\":false},[\"width:50%\"]],[true,{\".w-75:not(#_#_#_#_#_#_#_)\":true},[\"width:75%\"]],[false,{\".w-100:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".w-auto:not(#_#_#_#_#_#_#_)\":false},[\"width:auto\"]],[false,{\".h-25:not(#_#_#_#_#_#_#_)\":false},[\"height:25%\"]],[false,{\".h-50:not(#_#_#_#_#_#_#_)\":false},[\"height:50%\"]],[false,{\".h-75:not(#_#_#_#_#_#_#_)\":false},[\"height:75%\"]],[true,{\".h-100:not(#_#_#_#_#_#_#_)\":true},[\"height:100%\"]],[false,{\".h-auto:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[false,{\".mw-100:not(#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".mh-100:not(#_#_#_#_#_#_#_)\":false},[\"max-height:100%\"]],[true,{\".m-0:not(#_#_#_#_#_#_#_)\":true},[\"margin:0\"]],[false,{\".mt-0:not(#_#_#_#_#_#_#_)\":false,\".my-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-0:not(#_#_#_#_#_#_#_)\":false,\".mx-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-0:not(#_#_#_#_#_#_#_)\":false,\".my-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-0:not(#_#_#_#_#_#_#_)\":false,\".mx-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-1:not(#_#_#_#_#_#_#_)\":false,\".my-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-1:not(#_#_#_#_#_#_#_)\":false,\".mx-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-1:not(#_#_#_#_#_#_#_)\":false,\".my-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-1:not(#_#_#_#_#_#_#_)\":false,\".mx-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[true,{\".mt-2:not(#_#_#_#_#_#_#_)\":true,\".my-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[true,{\".mr-2:not(#_#_#_#_#_#_#_)\":true,\".mx-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-2:not(#_#_#_#_#_#_#_)\":false,\".my-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[true,{\".ml-2:not(#_#_#_#_#_#_#_)\":true,\".mx-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[true,{\".mt-3:not(#_#_#_#_#_#_#_)\":true,\".my-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-3:not(#_#_#_#_#_#_#_)\":false,\".mx-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[true,{\".mb-3:not(#_#_#_#_#_#_#_)\":true,\".my-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-3:not(#_#_#_#_#_#_#_)\":false,\".mx-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[true,{\".mt-4:not(#_#_#_#_#_#_#_)\":true,\".my-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-4:not(#_#_#_#_#_#_#_)\":false,\".mx-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[true,{\".mb-4:not(#_#_#_#_#_#_#_)\":true,\".my-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-4:not(#_#_#_#_#_#_#_)\":false,\".mx-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[true,{\".mt-5:not(#_#_#_#_#_#_#_)\":true,\".my-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-5:not(#_#_#_#_#_#_#_)\":false,\".mx-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-5:not(#_#_#_#_#_#_#_)\":false,\".my-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[true,{\".ml-5:not(#_#_#_#_#_#_#_)\":true,\".mx-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[true,{\".p-0:not(#_#_#_#_#_#_#_)\":true},[\"padding:0\"]],[false,{\".pt-0:not(#_#_#_#_#_#_#_)\":false,\".py-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-0:not(#_#_#_#_#_#_#_)\":false,\".px-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-0:not(#_#_#_#_#_#_#_)\":false,\".py-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-0:not(#_#_#_#_#_#_#_)\":false,\".px-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-1:not(#_#_#_#_#_#_#_)\":false,\".py-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-1:not(#_#_#_#_#_#_#_)\":false,\".px-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-1:not(#_#_#_#_#_#_#_)\":false,\".py-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[true,{\".pl-1:not(#_#_#_#_#_#_#_)\":true,\".px-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-2:not(#_#_#_#_#_#_#_)\":false,\".py-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[true,{\".pr-2:not(#_#_#_#_#_#_#_)\":true,\".px-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-2:not(#_#_#_#_#_#_#_)\":false,\".py-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-2:not(#_#_#_#_#_#_#_)\":false,\".px-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[true,{\".pt-3:not(#_#_#_#_#_#_#_)\":false,\".py-3:not(#_#_#_#_#_#_#_)\":true},[\"padding-top:1rem\"]],[false,{\".pr-3:not(#_#_#_#_#_#_#_)\":false,\".px-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[true,{\".pb-3:not(#_#_#_#_#_#_#_)\":false,\".py-3:not(#_#_#_#_#_#_#_)\":true},[\"padding-bottom:1rem\"]],[false,{\".pl-3:not(#_#_#_#_#_#_#_)\":false,\".px-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-4:not(#_#_#_#_#_#_#_)\":false,\".py-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-4:not(#_#_#_#_#_#_#_)\":false,\".px-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-4:not(#_#_#_#_#_#_#_)\":false,\".py-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-4:not(#_#_#_#_#_#_#_)\":false,\".px-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[true,{\".pt-5:not(#_#_#_#_#_#_#_)\":false,\".py-5:not(#_#_#_#_#_#_#_)\":true},[\"padding-top:3rem\"]],[true,{\".pr-5:not(#_#_#_#_#_#_#_)\":true,\".px-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[true,{\".pb-5:not(#_#_#_#_#_#_#_)\":false,\".py-5:not(#_#_#_#_#_#_#_)\":true},[\"padding-bottom:3rem\"]],[false,{\".pl-5:not(#_#_#_#_#_#_#_)\":false,\".px-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-auto:not(#_#_#_#_#_#_#_)\":false,\".my-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[true,{\".mr-auto:not(#_#_#_#_#_#_#_)\":true,\".mx-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-auto:not(#_#_#_#_#_#_#_)\":false,\".my-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"@media (min-width:576px){\"],[false,{\".m-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-sm-0:not(#_#_#_#_#_#_#_)\":false,\".my-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-sm-0:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-sm-0:not(#_#_#_#_#_#_#_)\":false,\".my-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-sm-0:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-sm-1:not(#_#_#_#_#_#_#_)\":false,\".my-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-sm-1:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-sm-1:not(#_#_#_#_#_#_#_)\":false,\".my-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-sm-1:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-sm-2:not(#_#_#_#_#_#_#_)\":false,\".my-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-sm-2:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-sm-2:not(#_#_#_#_#_#_#_)\":false,\".my-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-sm-2:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-sm-3:not(#_#_#_#_#_#_#_)\":false,\".my-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-sm-3:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-sm-3:not(#_#_#_#_#_#_#_)\":false,\".my-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-sm-3:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-sm-4:not(#_#_#_#_#_#_#_)\":false,\".my-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-sm-4:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-sm-4:not(#_#_#_#_#_#_#_)\":false,\".my-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-sm-4:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-sm-5:not(#_#_#_#_#_#_#_)\":false,\".my-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-sm-5:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-sm-5:not(#_#_#_#_#_#_#_)\":false,\".my-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-sm-5:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-sm-0:not(#_#_#_#_#_#_#_)\":false,\".py-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-sm-0:not(#_#_#_#_#_#_#_)\":false,\".px-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-sm-0:not(#_#_#_#_#_#_#_)\":false,\".py-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-sm-0:not(#_#_#_#_#_#_#_)\":false,\".px-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-sm-1:not(#_#_#_#_#_#_#_)\":false,\".py-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-sm-1:not(#_#_#_#_#_#_#_)\":false,\".px-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-sm-1:not(#_#_#_#_#_#_#_)\":false,\".py-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-sm-1:not(#_#_#_#_#_#_#_)\":false,\".px-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-sm-2:not(#_#_#_#_#_#_#_)\":false,\".py-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-sm-2:not(#_#_#_#_#_#_#_)\":false,\".px-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-sm-2:not(#_#_#_#_#_#_#_)\":false,\".py-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-sm-2:not(#_#_#_#_#_#_#_)\":false,\".px-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-sm-3:not(#_#_#_#_#_#_#_)\":false,\".py-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-sm-3:not(#_#_#_#_#_#_#_)\":false,\".px-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-sm-3:not(#_#_#_#_#_#_#_)\":false,\".py-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-sm-3:not(#_#_#_#_#_#_#_)\":false,\".px-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-sm-4:not(#_#_#_#_#_#_#_)\":false,\".py-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-sm-4:not(#_#_#_#_#_#_#_)\":false,\".px-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-sm-4:not(#_#_#_#_#_#_#_)\":false,\".py-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-sm-4:not(#_#_#_#_#_#_#_)\":false,\".px-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-sm-5:not(#_#_#_#_#_#_#_)\":false,\".py-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-sm-5:not(#_#_#_#_#_#_#_)\":false,\".px-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-sm-5:not(#_#_#_#_#_#_#_)\":false,\".py-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-sm-5:not(#_#_#_#_#_#_#_)\":false,\".px-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".my-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".my-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".m-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-md-0:not(#_#_#_#_#_#_#_)\":false,\".my-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-md-0:not(#_#_#_#_#_#_#_)\":false,\".mx-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-md-0:not(#_#_#_#_#_#_#_)\":false,\".my-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-md-0:not(#_#_#_#_#_#_#_)\":false,\".mx-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-md-1:not(#_#_#_#_#_#_#_)\":false,\".my-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-md-1:not(#_#_#_#_#_#_#_)\":false,\".mx-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-md-1:not(#_#_#_#_#_#_#_)\":false,\".my-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-md-1:not(#_#_#_#_#_#_#_)\":false,\".mx-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-md-2:not(#_#_#_#_#_#_#_)\":false,\".my-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-md-2:not(#_#_#_#_#_#_#_)\":false,\".mx-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-md-2:not(#_#_#_#_#_#_#_)\":false,\".my-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-md-2:not(#_#_#_#_#_#_#_)\":false,\".mx-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-md-3:not(#_#_#_#_#_#_#_)\":false,\".my-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-md-3:not(#_#_#_#_#_#_#_)\":false,\".mx-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-md-3:not(#_#_#_#_#_#_#_)\":false,\".my-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-md-3:not(#_#_#_#_#_#_#_)\":false,\".mx-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-md-4:not(#_#_#_#_#_#_#_)\":false,\".my-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-md-4:not(#_#_#_#_#_#_#_)\":false,\".mx-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-md-4:not(#_#_#_#_#_#_#_)\":false,\".my-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-md-4:not(#_#_#_#_#_#_#_)\":false,\".mx-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-md-5:not(#_#_#_#_#_#_#_)\":false,\".my-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-md-5:not(#_#_#_#_#_#_#_)\":false,\".mx-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-md-5:not(#_#_#_#_#_#_#_)\":false,\".my-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-md-5:not(#_#_#_#_#_#_#_)\":false,\".mx-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-md-0:not(#_#_#_#_#_#_#_)\":false,\".py-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-md-0:not(#_#_#_#_#_#_#_)\":false,\".px-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-md-0:not(#_#_#_#_#_#_#_)\":false,\".py-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-md-0:not(#_#_#_#_#_#_#_)\":false,\".px-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-md-1:not(#_#_#_#_#_#_#_)\":false,\".py-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-md-1:not(#_#_#_#_#_#_#_)\":false,\".px-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-md-1:not(#_#_#_#_#_#_#_)\":false,\".py-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-md-1:not(#_#_#_#_#_#_#_)\":false,\".px-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-md-2:not(#_#_#_#_#_#_#_)\":false,\".py-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-md-2:not(#_#_#_#_#_#_#_)\":false,\".px-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-md-2:not(#_#_#_#_#_#_#_)\":false,\".py-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-md-2:not(#_#_#_#_#_#_#_)\":false,\".px-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-md-3:not(#_#_#_#_#_#_#_)\":false,\".py-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-md-3:not(#_#_#_#_#_#_#_)\":false,\".px-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-md-3:not(#_#_#_#_#_#_#_)\":false,\".py-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-md-3:not(#_#_#_#_#_#_#_)\":false,\".px-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-md-4:not(#_#_#_#_#_#_#_)\":false,\".py-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-md-4:not(#_#_#_#_#_#_#_)\":false,\".px-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-md-4:not(#_#_#_#_#_#_#_)\":false,\".py-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-md-4:not(#_#_#_#_#_#_#_)\":false,\".px-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-md-5:not(#_#_#_#_#_#_#_)\":false,\".py-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-md-5:not(#_#_#_#_#_#_#_)\":false,\".px-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-md-5:not(#_#_#_#_#_#_#_)\":false,\".py-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-md-5:not(#_#_#_#_#_#_#_)\":false,\".px-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-md-auto:not(#_#_#_#_#_#_#_)\":false,\".my-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-md-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-md-auto:not(#_#_#_#_#_#_#_)\":false,\".my-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-md-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[true,\"@media (min-width:992px){\"],[false,{\".m-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[true,{\".mt-lg-0:not(#_#_#_#_#_#_#_)\":true,\".my-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-lg-0:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-lg-0:not(#_#_#_#_#_#_#_)\":false,\".my-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-lg-0:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-lg-1:not(#_#_#_#_#_#_#_)\":false,\".my-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-lg-1:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-lg-1:not(#_#_#_#_#_#_#_)\":false,\".my-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-lg-1:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-lg-2:not(#_#_#_#_#_#_#_)\":false,\".my-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-lg-2:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-lg-2:not(#_#_#_#_#_#_#_)\":false,\".my-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-lg-2:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-lg-3:not(#_#_#_#_#_#_#_)\":false,\".my-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-lg-3:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-lg-3:not(#_#_#_#_#_#_#_)\":false,\".my-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-lg-3:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-lg-4:not(#_#_#_#_#_#_#_)\":false,\".my-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-lg-4:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-lg-4:not(#_#_#_#_#_#_#_)\":false,\".my-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-lg-4:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[true,{\".mt-lg-5:not(#_#_#_#_#_#_#_)\":true,\".my-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-lg-5:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[true,{\".mb-lg-5:not(#_#_#_#_#_#_#_)\":true,\".my-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-lg-5:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-lg-0:not(#_#_#_#_#_#_#_)\":false,\".py-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-lg-0:not(#_#_#_#_#_#_#_)\":false,\".px-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-lg-0:not(#_#_#_#_#_#_#_)\":false,\".py-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-lg-0:not(#_#_#_#_#_#_#_)\":false,\".px-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-lg-1:not(#_#_#_#_#_#_#_)\":false,\".py-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-lg-1:not(#_#_#_#_#_#_#_)\":false,\".px-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-lg-1:not(#_#_#_#_#_#_#_)\":false,\".py-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-lg-1:not(#_#_#_#_#_#_#_)\":false,\".px-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-lg-2:not(#_#_#_#_#_#_#_)\":false,\".py-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-lg-2:not(#_#_#_#_#_#_#_)\":false,\".px-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-lg-2:not(#_#_#_#_#_#_#_)\":false,\".py-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-lg-2:not(#_#_#_#_#_#_#_)\":false,\".px-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-lg-3:not(#_#_#_#_#_#_#_)\":false,\".py-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-lg-3:not(#_#_#_#_#_#_#_)\":false,\".px-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-lg-3:not(#_#_#_#_#_#_#_)\":false,\".py-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-lg-3:not(#_#_#_#_#_#_#_)\":false,\".px-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-lg-4:not(#_#_#_#_#_#_#_)\":false,\".py-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[true,{\".pr-lg-4:not(#_#_#_#_#_#_#_)\":true,\".px-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-lg-4:not(#_#_#_#_#_#_#_)\":false,\".py-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-lg-4:not(#_#_#_#_#_#_#_)\":false,\".px-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-lg-5:not(#_#_#_#_#_#_#_)\":false,\".py-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-lg-5:not(#_#_#_#_#_#_#_)\":false,\".px-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-lg-5:not(#_#_#_#_#_#_#_)\":false,\".py-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-lg-5:not(#_#_#_#_#_#_#_)\":false,\".px-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".my-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".my-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[true,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".m-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-xl-0:not(#_#_#_#_#_#_#_)\":false,\".my-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-xl-0:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-xl-0:not(#_#_#_#_#_#_#_)\":false,\".my-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-xl-0:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-xl-1:not(#_#_#_#_#_#_#_)\":false,\".my-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-xl-1:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-xl-1:not(#_#_#_#_#_#_#_)\":false,\".my-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-xl-1:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-xl-2:not(#_#_#_#_#_#_#_)\":false,\".my-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-xl-2:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-xl-2:not(#_#_#_#_#_#_#_)\":false,\".my-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-xl-2:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-xl-3:not(#_#_#_#_#_#_#_)\":false,\".my-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-xl-3:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-xl-3:not(#_#_#_#_#_#_#_)\":false,\".my-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-xl-3:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-xl-4:not(#_#_#_#_#_#_#_)\":false,\".my-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-xl-4:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-xl-4:not(#_#_#_#_#_#_#_)\":false,\".my-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-xl-4:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-xl-5:not(#_#_#_#_#_#_#_)\":false,\".my-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-xl-5:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-xl-5:not(#_#_#_#_#_#_#_)\":false,\".my-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-xl-5:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-xl-0:not(#_#_#_#_#_#_#_)\":false,\".py-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-xl-0:not(#_#_#_#_#_#_#_)\":false,\".px-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-xl-0:not(#_#_#_#_#_#_#_)\":false,\".py-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-xl-0:not(#_#_#_#_#_#_#_)\":false,\".px-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-xl-1:not(#_#_#_#_#_#_#_)\":false,\".py-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-xl-1:not(#_#_#_#_#_#_#_)\":false,\".px-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-xl-1:not(#_#_#_#_#_#_#_)\":false,\".py-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-xl-1:not(#_#_#_#_#_#_#_)\":false,\".px-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-xl-2:not(#_#_#_#_#_#_#_)\":false,\".py-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-xl-2:not(#_#_#_#_#_#_#_)\":false,\".px-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-xl-2:not(#_#_#_#_#_#_#_)\":false,\".py-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-xl-2:not(#_#_#_#_#_#_#_)\":false,\".px-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-xl-3:not(#_#_#_#_#_#_#_)\":false,\".py-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-xl-3:not(#_#_#_#_#_#_#_)\":false,\".px-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-xl-3:not(#_#_#_#_#_#_#_)\":false,\".py-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-xl-3:not(#_#_#_#_#_#_#_)\":false,\".px-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-xl-4:not(#_#_#_#_#_#_#_)\":false,\".py-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-xl-4:not(#_#_#_#_#_#_#_)\":false,\".px-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-xl-4:not(#_#_#_#_#_#_#_)\":false,\".py-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-xl-4:not(#_#_#_#_#_#_#_)\":false,\".px-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-xl-5:not(#_#_#_#_#_#_#_)\":false,\".py-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-xl-5:not(#_#_#_#_#_#_#_)\":false,\".px-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-xl-5:not(#_#_#_#_#_#_#_)\":false,\".py-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-xl-5:not(#_#_#_#_#_#_#_)\":false,\".px-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".my-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".my-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,{\".text-monospace\":false},[\"font-family:SFMono-Regular,Menlo,Monaco,Consolas,\\\"Liberation Mono\\\",\\\"Courier New\\\",monospace\"]],[false,{\".text-justify:not(#_#_#_#_#_#_#_)\":false},[\"text-align:justify\"]],[false,{\".text-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"white-space:nowrap\"]],[false,{\".text-truncate\":false},[\"overflow:hidden\",\"text-overflow:ellipsis\",\"white-space:nowrap\"]],[false,{\".text-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[true,{\".text-center:not(#_#_#_#_#_#_#_)\":true},[\"text-align:center\"]],[false,\"@media (min-width:576px){\"],[false,{\".text-sm-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-sm-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".text-md-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-md-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-md-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".text-lg-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-lg-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".text-xl-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-xl-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".text-lowercase:not(#_#_#_#_#_#_#_)\":false},[\"text-transform:lowercase\"]],[false,{\".text-uppercase:not(#_#_#_#_#_#_#_)\":false},[\"text-transform:uppercase\"]],[false,{\".text-capitalize:not(#_#_#_#_#_#_#_)\":false},[\"text-transform:capitalize\"]],[false,{\".font-weight-light:not(#_#_#_#_#_#_#_)\":false},[\"font-weight:300\"]],[false,{\".font-weight-normal:not(#_#_#_#_#_#_#_)\":false},[\"font-weight:400\"]],[false,{\".font-weight-bold:not(#_#_#_#_#_#_#_)\":false},[\"font-weight:700\"]],[false,{\".font-italic:not(#_#_#_#_#_#_#_)\":false},[\"font-style:italic\"]],[true,{\".text-white:not(#_#_#_#_#_#_#_)\":true},[\"color:#fff\"]],[false,{\".text-primary:not(#_#_#_#_#_#_#_)\":false},[\"color:#007bff\"]],[false,{\"a.text-primary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-primary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#0062cc\"]],[false,{\".text-secondary:not(#_#_#_#_#_#_#_)\":false},[\"color:#6c757d\"]],[false,{\"a.text-secondary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-secondary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#545b62\"]],[false,{\".text-success:not(#_#_#_#_#_#_#_)\":false},[\"color:#28a745\"]],[false,{\"a.text-success:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-success:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#1e7e34\"]],[false,{\".text-info:not(#_#_#_#_#_#_#_)\":false},[\"color:#17a2b8\"]],[false,{\"a.text-info:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-info:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#117a8b\"]],[false,{\".text-warning:not(#_#_#_#_#_#_#_)\":false},[\"color:#ffc107\"]],[false,{\"a.text-warning:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-warning:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#d39e00\"]],[false,{\".text-danger:not(#_#_#_#_#_#_#_)\":false},[\"color:#dc3545\"]],[false,{\"a.text-danger:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-danger:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#bd2130\"]],[false,{\".text-light:not(#_#_#_#_#_#_#_)\":false},[\"color:#f8f9fa\"]],[false,{\"a.text-light:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-light:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#dae0e5\"]],[false,{\".text-dark:not(#_#_#_#_#_#_#_)\":false},[\"color:#343a40\"]],[false,{\"a.text-dark:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-dark:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#1d2124\"]],[false,{\".text-body:not(#_#_#_#_#_#_#_)\":false},[\"color:#212529\"]],[false,{\".text-muted:not(#_#_#_#_#_#_#_)\":false},[\"color:#6c757d\"]],[false,{\".text-black-50:not(#_#_#_#_#_#_#_)\":false},[\"color:rgba(0,0,0,.5)\"]],[false,{\".text-white-50:not(#_#_#_#_#_#_#_)\":false},[\"color:rgba(255,255,255,.5)\"]],[false,{\".text-hide\":false},[\"font:0\\/0 a\",\"color:transparent\",\"text-shadow:none\",\"background-color:transparent\",\"border:0\"]],[false,{\".visible:not(#_#_#_#_#_#_#_)\":false},[\"visibility:visible\"]],[false,{\".invisible:not(#_#_#_#_#_#_#_)\":false},[\"visibility:hidden\"]],[true,\"@media print{\"],[true,{\"*:not(#_#_#_#_#_#_)\":true,\"::after:not(#_#_#_#_#_#_#_#_)\":true,\"::before:not(#_#_#_#_#_#_#_#_)\":true},[\"text-shadow:none\",\"box-shadow:none\"]],[true,{\"a:not(.btn)\":true},[\"text-decoration:underline\"]],[false,{\"abbr[title]::after\":false},[\"content:\\\" (\\\" attr(title) \\\")\\\"\"]],[false,{\"pre:not(#_#_#_#_#_#_#_#_)\":false},[\"white-space:pre-wrap\"]],[false,{\"blockquote\":false,\"pre\":false},[\"border:1px solid #adb5bd\",\"page-break-inside:avoid\"]],[false,{\"thead\":false},[\"display:table-header-group\"]],[true,{\"amp-img\":true,\"amp-anim\":false,\"tr\":false},[\"page-break-inside:avoid\"]],[true,{\"h2\":false,\"h3\":true,\"p\":true},[\"orphans:3\",\"widows:3\"]],[true,{\"h2\":false,\"h3\":true},[\"page-break-after:avoid\"]],[true,\"@page{size:a3}\"],[true,{\"body:not(#_#_#_#_#_#_#_#_)\":true},[\"min-width:992px\"]],[true,{\".container:not(#_#_#_#_#_#_#_)\":true},[\"min-width:992px\"]],[true,{\".navbar\":true},[\"display:none\"]],[false,{\".badge\":false},[\"border:1px solid #000\"]],[false,{\".table:not(#_#_#_#_#_#_#_)\":false},[\"border-collapse:collapse\"]],[false,{\".table td:not(#_#_#_#_#_#_#_#_)\":false,\".table th:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#fff\"]],[false,{\".table-bordered td:not(#_#_#_#_#_#_#_#_)\":false,\".table-bordered th:not(#_#_#_#_#_#_#_#_)\":false},[\"border:1px solid #dee2e6\"]],[false,{\".table-dark\":false},[\"color:inherit\"]],[false,{\".table-dark tbody+tbody\":false,\".table-dark td\":false,\".table-dark th\":false,\".table-dark thead th\":false},[\"border-color:#dee2e6\"]],[false,{\".table .thead-dark th\":false},[\"color:inherit\",\"border-color:#dee2e6\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":68760,\"final_size\":48135,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/animate.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"a2e2915566ab9cb1c9ab842793acd3f3\",\"parse_time\":0.38850998878479004,\"shake_time\":0.0006570816040039062,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".animated\":false},[\"-webkit-animation-duration:1s\",\"animation-duration:1s\",\"-webkit-animation-fill-mode:both\",\"animation-fill-mode:both\"]],[false,{\".animated.infinite\":false},[\"-webkit-animation-iteration-count:infinite\",\"animation-iteration-count:infinite\"]],[false,{\".animated.hinge\":false},[\"-webkit-animation-duration:2s\",\"animation-duration:2s\"]],[true,\"@-webkit-keyframes bounce{\"],[true,\"0%,20%,50%,80%,100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}\"],[true,\"}@keyframes bounce{\"],[true,\"0%,20%,50%,80%,100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"40%{-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"60%{-webkit-transform:translateY(-15px);-ms-transform:translateY(-15px);transform:translateY(-15px)}\"],[true,\"}\"],[false,{\".bounce\":false},[\"-webkit-animation-name:bounce\",\"animation-name:bounce\"]],[true,\"@-webkit-keyframes flash{\"],[true,\"0%,50%,100%{opacity:1}\"],[true,\"25%,75%{opacity:0}\"],[true,\"}@keyframes flash{\"],[true,\"0%,50%,100%{opacity:1}\"],[true,\"25%,75%{opacity:0}\"],[true,\"}\"],[false,{\".flash\":false},[\"-webkit-animation-name:flash\",\"animation-name:flash\"]],[true,\"@-webkit-keyframes pulse{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{-webkit-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes pulse{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"50%{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,{\".pulse\":false},[\"-webkit-animation-name:pulse\",\"animation-name:pulse\"]],[true,\"@-webkit-keyframes rubberBand{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"30%{-webkit-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}\"],[true,\"40%{-webkit-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}\"],[true,\"60%{-webkit-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}\"],[true,\"100%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes rubberBand{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"30%{-webkit-transform:scaleX(1.25) scaleY(.75);-ms-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}\"],[true,\"40%{-webkit-transform:scaleX(.75) scaleY(1.25);-ms-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}\"],[true,\"60%{-webkit-transform:scaleX(1.15) scaleY(.85);-ms-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}\"],[true,\"100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,{\".rubberBand\":false},[\"-webkit-animation-name:rubberBand\",\"animation-name:rubberBand\"]],[true,\"@-webkit-keyframes shake{\"],[true,\"0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"}@keyframes shake{\"],[true,\"0%,100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"20%,40%,60%,80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"}\"],[false,{\".shake\":false},[\"-webkit-animation-name:shake\",\"animation-name:shake\"]],[true,\"@-webkit-keyframes swing{\"],[true,\"20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}\"],[true,\"60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}\"],[true,\"80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}\"],[true,\"100%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}@keyframes swing{\"],[true,\"20%{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"40%{-webkit-transform:rotate(-10deg);-ms-transform:rotate(-10deg);transform:rotate(-10deg)}\"],[true,\"60%{-webkit-transform:rotate(5deg);-ms-transform:rotate(5deg);transform:rotate(5deg)}\"],[true,\"80%{-webkit-transform:rotate(-5deg);-ms-transform:rotate(-5deg);transform:rotate(-5deg)}\"],[true,\"100%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}\"],[false,{\".swing\":false},[\"-webkit-transform-origin:top center\",\"-ms-transform-origin:top center\",\"transform-origin:top center\",\"-webkit-animation-name:swing\",\"animation-name:swing\"]],[true,\"@-webkit-keyframes tada{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}\"],[true,\"30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}\"],[true,\"40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}\"],[true,\"100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}\"],[true,\"}@keyframes tada{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"10%,20%{-webkit-transform:scale(.9) rotate(-3deg);-ms-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}\"],[true,\"30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);-ms-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}\"],[true,\"40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);-ms-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}\"],[true,\"100%{-webkit-transform:scale(1) rotate(0);-ms-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}\"],[true,\"}\"],[false,{\".tada\":false},[\"-webkit-animation-name:tada\",\"animation-name:tada\"]],[true,\"@-webkit-keyframes wobble{\"],[true,\"0%{-webkit-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"15%{-webkit-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}\"],[true,\"30%{-webkit-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}\"],[true,\"45%{-webkit-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}\"],[true,\"60%{-webkit-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}\"],[true,\"75%{-webkit-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}\"],[true,\"100%{-webkit-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"}@keyframes wobble{\"],[true,\"0%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"15%{-webkit-transform:translateX(-25%) rotate(-5deg);-ms-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}\"],[true,\"30%{-webkit-transform:translateX(20%) rotate(3deg);-ms-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}\"],[true,\"45%{-webkit-transform:translateX(-15%) rotate(-3deg);-ms-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}\"],[true,\"60%{-webkit-transform:translateX(10%) rotate(2deg);-ms-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}\"],[true,\"75%{-webkit-transform:translateX(-5%) rotate(-1deg);-ms-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}\"],[true,\"100%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"}\"],[false,{\".wobble\":false},[\"-webkit-animation-name:wobble\",\"animation-name:wobble\"]],[true,\"@-webkit-keyframes bounceIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}\"],[true,\"70%{-webkit-transform:scale(.9);transform:scale(.9)}\"],[true,\"100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes bounceIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}\"],[true,\"70%{-webkit-transform:scale(.9);-ms-transform:scale(.9);transform:scale(.9)}\"],[true,\"100%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,{\".bounceIn\":false},[\"-webkit-animation-name:bounceIn\",\"animation-name:bounceIn\"]],[true,\"@-webkit-keyframes bounceInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}\"],[true,\"80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}\"],[true,\"100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes bounceInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px)}\"],[true,\"80%{-webkit-transform:translateY(-10px);-ms-transform:translateY(-10px);transform:translateY(-10px)}\"],[true,\"100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".bounceInDown\":false},[\"-webkit-animation-name:bounceInDown\",\"animation-name:bounceInDown\"]],[true,\"@-webkit-keyframes bounceInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(30px);transform:translateX(30px)}\"],[true,\"80%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes bounceInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(30px);-ms-transform:translateX(30px);transform:translateX(30px)}\"],[true,\"80%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".bounceInLeft\":false},[\"-webkit-animation-name:bounceInLeft\",\"animation-name:bounceInLeft\"]],[true,\"@-webkit-keyframes bounceInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(-30px);transform:translateX(-30px)}\"],[true,\"80%{-webkit-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes bounceInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(-30px);-ms-transform:translateX(-30px);transform:translateX(-30px)}\"],[true,\"80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".bounceInRight\":false},[\"-webkit-animation-name:bounceInRight\",\"animation-name:bounceInRight\"]],[true,\"@-webkit-keyframes bounceInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"80%{-webkit-transform:translateY(10px);transform:translateY(10px)}\"],[true,\"100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes bounceInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"80%{-webkit-transform:translateY(10px);-ms-transform:translateY(10px);transform:translateY(10px)}\"],[true,\"100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".bounceInUp\":false},[\"-webkit-animation-name:bounceInUp\",\"animation-name:bounceInUp\"]],[true,\"@-webkit-keyframes bounceOut{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"25%{-webkit-transform:scale(.95);transform:scale(.95)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"}@keyframes bounceOut{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"25%{-webkit-transform:scale(.95);-ms-transform:scale(.95);transform:scale(.95)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"}\"],[false,{\".bounceOut\":false},[\"-webkit-animation-name:bounceOut\",\"animation-name:bounceOut\"]],[true,\"@-webkit-keyframes bounceOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}@keyframes bounceOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}\"],[false,{\".bounceOutDown\":false},[\"-webkit-animation-name:bounceOutDown\",\"animation-name:bounceOutDown\"]],[true,\"@-webkit-keyframes bounceOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}@keyframes bounceOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}\"],[false,{\".bounceOutLeft\":false},[\"-webkit-animation-name:bounceOutLeft\",\"animation-name:bounceOutLeft\"]],[true,\"@-webkit-keyframes bounceOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}@keyframes bounceOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}\"],[false,{\".bounceOutRight\":false},[\"-webkit-animation-name:bounceOutRight\",\"animation-name:bounceOutRight\"]],[true,\"@-webkit-keyframes bounceOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}@keyframes bounceOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}\"],[false,{\".bounceOutUp\":false},[\"-webkit-animation-name:bounceOutUp\",\"animation-name:bounceOutUp\"]],[true,\"@-webkit-keyframes fadeIn{\"],[true,\"0%{opacity:0}\"],[true,\"100%{opacity:1}\"],[true,\"}@keyframes fadeIn{\"],[true,\"0%{opacity:0}\"],[true,\"100%{opacity:1}\"],[true,\"}\"],[false,{\".fadeIn\":false},[\"-webkit-animation-name:fadeIn\",\"animation-name:fadeIn\"]],[true,\"@-webkit-keyframes fadeInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInDown\":false},[\"-webkit-animation-name:fadeInDown\",\"animation-name:fadeInDown\"]],[true,\"@-webkit-keyframes fadeInDownBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInDownBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInDownBig\":false},[\"-webkit-animation-name:fadeInDownBig\",\"animation-name:fadeInDownBig\"]],[true,\"@-webkit-keyframes fadeInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInLeft\":false},[\"-webkit-animation-name:fadeInLeft\",\"animation-name:fadeInLeft\"]],[true,\"@-webkit-keyframes fadeInLeftBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInLeftBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInLeftBig\":false},[\"-webkit-animation-name:fadeInLeftBig\",\"animation-name:fadeInLeftBig\"]],[true,\"@-webkit-keyframes fadeInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInRight\":false},[\"-webkit-animation-name:fadeInRight\",\"animation-name:fadeInRight\"]],[true,\"@-webkit-keyframes fadeInRightBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInRightBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInRightBig\":false},[\"-webkit-animation-name:fadeInRightBig\",\"animation-name:fadeInRightBig\"]],[true,\"@-webkit-keyframes fadeInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInUp\":false},[\"-webkit-animation-name:fadeInUp\",\"animation-name:fadeInUp\"]],[true,\"@-webkit-keyframes fadeInUpBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInUpBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInUpBig\":false},[\"-webkit-animation-name:fadeInUpBig\",\"animation-name:fadeInUpBig\"]],[true,\"@-webkit-keyframes fadeOut{\"],[true,\"0%{opacity:1}\"],[true,\"100%{opacity:0}\"],[true,\"}@keyframes fadeOut{\"],[true,\"0%{opacity:1}\"],[true,\"100%{opacity:0}\"],[true,\"}\"],[false,{\".fadeOut\":false},[\"-webkit-animation-name:fadeOut\",\"animation-name:fadeOut\"]],[true,\"@-webkit-keyframes fadeOutDown{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"}@keyframes fadeOutDown{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"}\"],[false,{\".fadeOutDown\":false},[\"-webkit-animation-name:fadeOutDown\",\"animation-name:fadeOutDown\"]],[true,\"@-webkit-keyframes fadeOutDownBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}@keyframes fadeOutDownBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}\"],[false,{\".fadeOutDownBig\":false},[\"-webkit-animation-name:fadeOutDownBig\",\"animation-name:fadeOutDownBig\"]],[true,\"@-webkit-keyframes fadeOutLeft{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"}@keyframes fadeOutLeft{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"}\"],[false,{\".fadeOutLeft\":false},[\"-webkit-animation-name:fadeOutLeft\",\"animation-name:fadeOutLeft\"]],[true,\"@-webkit-keyframes fadeOutLeftBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}@keyframes fadeOutLeftBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}\"],[false,{\".fadeOutLeftBig\":false},[\"-webkit-animation-name:fadeOutLeftBig\",\"animation-name:fadeOutLeftBig\"]],[true,\"@-webkit-keyframes fadeOutRight{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"}@keyframes fadeOutRight{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"}\"],[false,{\".fadeOutRight\":false},[\"-webkit-animation-name:fadeOutRight\",\"animation-name:fadeOutRight\"]],[true,\"@-webkit-keyframes fadeOutRightBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}@keyframes fadeOutRightBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}\"],[false,{\".fadeOutRightBig\":false},[\"-webkit-animation-name:fadeOutRightBig\",\"animation-name:fadeOutRightBig\"]],[true,\"@-webkit-keyframes fadeOutUp{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"}@keyframes fadeOutUp{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"}\"],[false,{\".fadeOutUp\":false},[\"-webkit-animation-name:fadeOutUp\",\"animation-name:fadeOutUp\"]],[true,\"@-webkit-keyframes fadeOutUpBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}@keyframes fadeOutUpBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}\"],[false,{\".fadeOutUpBig\":false},[\"-webkit-animation-name:fadeOutUpBig\",\"animation-name:fadeOutUpBig\"]],[true,\"@-webkit-keyframes flip{\"],[true,\"0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"}@keyframes flip{\"],[true,\"0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);-ms-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"}\"],[false,{\".animated.flip\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\",\"-webkit-animation-name:flip\",\"animation-name:flip\"]],[true,\"@-webkit-keyframes flipInX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"}@keyframes flipInX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateX(-10deg);-ms-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateX(10deg);-ms-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"}\"],[false,{\".flipInX\":false},[\"-webkit-animation-name:flipInX\",\"animation-name:flipInX\"]],[false,{\".flipInX:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes flipInY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"}@keyframes flipInY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateY(-10deg);-ms-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateY(10deg);-ms-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"}\"],[false,{\".flipInY\":false},[\"-webkit-animation-name:flipInY\",\"animation-name:flipInY\"]],[false,{\".flipInY:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes flipOutX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"}@keyframes flipOutX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"}\"],[false,{\".flipOutX\":false},[\"-webkit-animation-name:flipOutX\",\"animation-name:flipOutX\"]],[false,{\".flipOutX:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes flipOutY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"}@keyframes flipOutY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"}\"],[false,{\".flipOutY\":false},[\"-webkit-animation-name:flipOutY\",\"animation-name:flipOutY\"]],[false,{\".flipOutY:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes lightSpeedIn{\"],[true,\"0%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"60%{-webkit-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}\"],[true,\"80%{-webkit-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"}@keyframes lightSpeedIn{\"],[true,\"0%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"60%{-webkit-transform:translateX(-20%) skewX(30deg);-ms-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}\"],[true,\"80%{-webkit-transform:translateX(0%) skewX(-15deg);-ms-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"}\"],[false,{\".lightSpeedIn\":false},[\"-webkit-animation-name:lightSpeedIn\",\"animation-name:lightSpeedIn\",\"-webkit-animation-timing-function:ease-out\",\"animation-timing-function:ease-out\"]],[true,\"@-webkit-keyframes lightSpeedOut{\"],[true,\"0%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"}@keyframes lightSpeedOut{\"],[true,\"0%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"}\"],[false,{\".lightSpeedOut\":false},[\"-webkit-animation-name:lightSpeedOut\",\"animation-name:lightSpeedOut\",\"-webkit-animation-timing-function:ease-in\",\"animation-timing-function:ease-in\"]],[true,\"@-webkit-keyframes rotateIn{\"],[true,\"0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateIn{\"],[true,\"0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);-ms-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateIn\":false},[\"-webkit-animation-name:rotateIn\",\"animation-name:rotateIn\"]],[true,\"@-webkit-keyframes rotateInDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInDownLeft\":false},[\"-webkit-animation-name:rotateInDownLeft\",\"animation-name:rotateInDownLeft\"]],[true,\"@-webkit-keyframes rotateInDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInDownRight\":false},[\"-webkit-animation-name:rotateInDownRight\",\"animation-name:rotateInDownRight\"]],[true,\"@-webkit-keyframes rotateInUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInUpLeft\":false},[\"-webkit-animation-name:rotateInUpLeft\",\"animation-name:rotateInUpLeft\"]],[true,\"@-webkit-keyframes rotateInUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInUpRight\":false},[\"-webkit-animation-name:rotateInUpRight\",\"animation-name:rotateInUpRight\"]],[true,\"@-webkit-keyframes rotateOut{\"],[true,\"0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}\"],[true,\"}@keyframes rotateOut{\"],[true,\"0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);-ms-transform:rotate(200deg);transform:rotate(200deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOut\":false},[\"-webkit-animation-name:rotateOut\",\"animation-name:rotateOut\"]],[true,\"@-webkit-keyframes rotateOutDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}@keyframes rotateOutDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutDownLeft\":false},[\"-webkit-animation-name:rotateOutDownLeft\",\"animation-name:rotateOutDownLeft\"]],[true,\"@-webkit-keyframes rotateOutDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}@keyframes rotateOutDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutDownRight\":false},[\"-webkit-animation-name:rotateOutDownRight\",\"animation-name:rotateOutDownRight\"]],[true,\"@-webkit-keyframes rotateOutUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}@keyframes rotateOutUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutUpLeft\":false},[\"-webkit-animation-name:rotateOutUpLeft\",\"animation-name:rotateOutUpLeft\"]],[true,\"@-webkit-keyframes rotateOutUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}@keyframes rotateOutUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutUpRight\":false},[\"-webkit-animation-name:rotateOutUpRight\",\"animation-name:rotateOutUpRight\"]],[true,\"@-webkit-keyframes slideInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes slideInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".slideInDown\":false},[\"-webkit-animation-name:slideInDown\",\"animation-name:slideInDown\"]],[true,\"@-webkit-keyframes slideInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes slideInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".slideInLeft\":false},[\"-webkit-animation-name:slideInLeft\",\"animation-name:slideInLeft\"]],[true,\"@-webkit-keyframes slideInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes slideInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".slideInRight\":false},[\"-webkit-animation-name:slideInRight\",\"animation-name:slideInRight\"]],[true,\"@-webkit-keyframes slideOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}@keyframes slideOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}\"],[false,{\".slideOutLeft\":false},[\"-webkit-animation-name:slideOutLeft\",\"animation-name:slideOutLeft\"]],[true,\"@-webkit-keyframes slideOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}@keyframes slideOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}\"],[false,{\".slideOutRight\":false},[\"-webkit-animation-name:slideOutRight\",\"animation-name:slideOutRight\"]],[true,\"@-webkit-keyframes slideOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}@keyframes slideOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}\"],[false,{\".slideOutUp\":false},[\"-webkit-animation-name:slideOutUp\",\"animation-name:slideOutUp\"]],[true,\"@-webkit-keyframes slideInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes slideInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".slideInUp\":false},[\"-webkit-animation-name:slideInUp\",\"animation-name:slideInUp\"]],[true,\"@-webkit-keyframes slideOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}@keyframes slideOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}\"],[false,{\".slideOutDown\":false},[\"-webkit-animation-name:slideOutDown\",\"animation-name:slideOutDown\"]],[true,\"@-webkit-keyframes hinge{\"],[true,\"0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"40%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"80%{-webkit-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}\"],[true,\"100%{-webkit-transform:translateY(700px);transform:translateY(700px);opacity:0}\"],[true,\"}@keyframes hinge{\"],[true,\"0%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"20%,60%{-webkit-transform:rotate(80deg);-ms-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"40%{-webkit-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"80%{-webkit-transform:rotate(60deg) translateY(0);-ms-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}\"],[true,\"100%{-webkit-transform:translateY(700px);-ms-transform:translateY(700px);transform:translateY(700px);opacity:0}\"],[true,\"}\"],[false,{\".hinge\":false},[\"-webkit-animation-name:hinge\",\"animation-name:hinge\"]],[true,\"@-webkit-keyframes rollIn{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"}@keyframes rollIn{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);-ms-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);-ms-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"}\"],[false,{\".rollIn\":false},[\"-webkit-animation-name:rollIn\",\"animation-name:rollIn\"]],[true,\"@-webkit-keyframes rollOut{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}\"],[true,\"}@keyframes rollOut{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);-ms-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);-ms-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}\"],[true,\"}\"],[false,{\".rollOut\":false},[\"-webkit-animation-name:rollOut\",\"animation-name:rollOut\"]],[true,\"@-webkit-keyframes zoomIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1}\"],[true,\"}@keyframes zoomIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1}\"],[true,\"}\"],[false,{\".zoomIn\":false},[\"-webkit-animation-name:zoomIn\",\"animation-name:zoomIn\"]],[true,\"@-webkit-keyframes zoomInDown{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInDown{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInDown\":false},[\"-webkit-animation-name:zoomInDown\",\"animation-name:zoomInDown\"]],[true,\"@-webkit-keyframes zoomInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);-ms-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInLeft\":false},[\"-webkit-animation-name:zoomInLeft\",\"animation-name:zoomInLeft\"]],[true,\"@-webkit-keyframes zoomInRight{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(-48px);transform:scale(.475) translateX(-48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInRight{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);-ms-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(-48px);-ms-transform:scale(.475) translateX(-48px);transform:scale(.475) translateX(-48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInRight\":false},[\"-webkit-animation-name:zoomInRight\",\"animation-name:zoomInRight\"]],[true,\"@-webkit-keyframes zoomInUp{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInUp{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);-ms-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);-ms-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInUp\":false},[\"-webkit-animation-name:zoomInUp\",\"animation-name:zoomInUp\"]],[true,\"@-webkit-keyframes zoomOut{\"],[true,\"0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"100%{opacity:0}\"],[true,\"}@keyframes zoomOut{\"],[true,\"0%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"100%{opacity:0}\"],[true,\"}\"],[false,{\".zoomOut\":false},[\"-webkit-animation-name:zoomOut\",\"animation-name:zoomOut\"]],[true,\"@-webkit-keyframes zoomOutDown{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-transform-origin:center bottom;transform-origin:center bottom}\"],[true,\"}@keyframes zoomOutDown{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);-ms-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);-ms-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-transform-origin:center bottom;-ms-transform-origin:center bottom;transform-origin:center bottom}\"],[true,\"}\"],[false,{\".zoomOutDown\":false},[\"-webkit-animation-name:zoomOutDown\",\"animation-name:zoomOutDown\"]],[true,\"@-webkit-keyframes zoomOutLeft{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(42px);transform:scale(.475) translateX(42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-transform-origin:left center;transform-origin:left center}\"],[true,\"}@keyframes zoomOutLeft{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(42px);-ms-transform:scale(.475) translateX(42px);transform:scale(.475) translateX(42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-transform-origin:left center;-ms-transform-origin:left center;transform-origin:left center}\"],[true,\"}\"],[false,{\".zoomOutLeft\":false},[\"-webkit-animation-name:zoomOutLeft\",\"animation-name:zoomOutLeft\"]],[true,\"@-webkit-keyframes zoomOutRight{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(-42px);transform:scale(.475) translateX(-42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-transform-origin:right center;transform-origin:right center}\"],[true,\"}@keyframes zoomOutRight{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(-42px);-ms-transform:scale(.475) translateX(-42px);transform:scale(.475) translateX(-42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);-ms-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-transform-origin:right center;-ms-transform-origin:right center;transform-origin:right center}\"],[true,\"}\"],[false,{\".zoomOutRight\":false},[\"-webkit-animation-name:zoomOutRight\",\"animation-name:zoomOutRight\"]],[true,\"@-webkit-keyframes zoomOutUp{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-transform-origin:center top;transform-origin:center top}\"],[true,\"}@keyframes zoomOutUp{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-transform-origin:center top;-ms-transform-origin:center top;transform-origin:center top}\"],[true,\"}\"],[false,{\".zoomOutUp\":false},[\"-webkit-animation-name:zoomOutUp\",\"animation-name:zoomOutUp\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":4744,\"final_size\":154,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/css\\/owl.carousel.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"321729c807ca4dee8c7fcd62f722c92a\",\"parse_time\":0.016955852508544922,\"shake_time\":6.29425048828125e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".owl-carousel\":true},[\"display:none\",\"width:100%\",\"-webkit-tap-highlight-color:transparent\",\"position:relative\",\"z-index:1\"]],[false,{\".owl-carousel .owl-stage\":false},[\"position:relative\",\"-ms-touch-action:pan-Y\",\"touch-action:manipulation\",\"-moz-backface-visibility:hidden\"]],[false,{\".owl-carousel .owl-stage:after\":false},[\"content:\\\".\\\"\",\"display:block\",\"clear:both\",\"visibility:hidden\",\"line-height:0\",\"height:0\"]],[false,{\".owl-carousel .owl-stage-outer\":false},[\"position:relative\",\"overflow:hidden\",\"-webkit-transform:translate3d(0px,0px,0px)\"]],[false,{\".owl-carousel .owl-wrapper\":false,\".owl-carousel .owl-item\":false},[\"-webkit-backface-visibility:hidden\",\"-moz-backface-visibility:hidden\",\"-ms-backface-visibility:hidden\",\"-webkit-transform:translate3d(0,0,0)\",\"-moz-transform:translate3d(0,0,0)\",\"-ms-transform:translate3d(0,0,0)\"]],[false,{\".owl-carousel .owl-item\":false},[\"position:relative\",\"min-height:1px\",\"float:left\",\"-webkit-backface-visibility:hidden\",\"-webkit-tap-highlight-color:transparent\",\"-webkit-touch-callout:none\"]],[false,{\".owl-carousel .owl-item amp-img\":false,\".owl-carousel .owl-item amp-anim\":false},[\"display:block\",\"width:100%\"]],[false,{\".owl-carousel .owl-nav.disabled\":false,\".owl-carousel .owl-dots.disabled\":false},[\"display:none\"]],[false,{\".owl-carousel .owl-nav .owl-prev\":false,\".owl-carousel .owl-nav .owl-next\":false,\".owl-carousel .owl-dot\":false},[\"cursor:pointer\",\"-webkit-user-select:none\",\"-khtml-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\"]],[false,{\".owl-carousel .owl-nav button.owl-prev\":false,\".owl-carousel .owl-nav button.owl-next\":false,\".owl-carousel button.owl-dot\":false},[\"background:none\",\"color:inherit\",\"border:none\",\"font:inherit\"]],[false,{\".owl-carousel .owl-nav button.owl-prev:not(#_#_#_#_#_#_#_#_)\":false,\".owl-carousel .owl-nav button.owl-next:not(#_#_#_#_#_#_#_#_)\":false,\".owl-carousel button.owl-dot:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".owl-carousel.owl-loaded\":false},[\"display:block\"]],[false,{\".owl-carousel.owl-loading\":false},[\"opacity:0\",\"display:block\"]],[false,{\".owl-carousel.owl-hidden\":false},[\"opacity:0\"]],[false,{\".owl-carousel.owl-refresh .owl-item\":false},[\"visibility:hidden\"]],[false,{\".owl-carousel.owl-drag .owl-item\":false},[\"-ms-touch-action:pan-y\",\"touch-action:pan-y\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\"]],[false,{\".owl-carousel.owl-grab\":false},[\"cursor:move\",\"cursor:grab\"]],[false,{\".owl-carousel.owl-rtl\":false},[\"direction:rtl\"]],[false,{\".owl-carousel.owl-rtl .owl-item\":false},[\"float:right\"]],[false,{\".no-js .owl-carousel\":false},[\"display:block\"]],[false,{\".owl-carousel .animated\":false},[\"animation-duration:1000ms\",\"animation-fill-mode:both\"]],[false,{\".owl-carousel .owl-animated-in\":false},[\"z-index:0\"]],[false,{\".owl-carousel .owl-animated-out\":false},[\"z-index:1\"]],[false,{\".owl-carousel .fadeOut\":false},[\"animation-name:fadeOut\"]],[true,\"@keyframes fadeOut{\"],[true,\"0%{opacity:1}\"],[true,\"100%{opacity:0}\"],[true,\"}\"],[false,{\".owl-height\":false},[\"transition:height 500ms ease-in-out\"]],[false,{\".owl-carousel .owl-item .owl-lazy\":false},[\"opacity:0\",\"transition:opacity 400ms ease\"]],[false,{\".owl-carousel .owl-item .owl-lazy[src^=\\\"\\\"]\":false,\".owl-carousel .owl-item .owl-lazy:not([src])\":false},[\"max-height:0\"]],[false,{\".owl-carousel .owl-item amp-img.owl-lazy\":false,\".owl-carousel .owl-item amp-anim.owl-lazy\":false},[\"transform-style:preserve-3d\"]],[false,{\".owl-carousel .owl-video-wrapper\":false},[\"position:relative\",\"height:100%\",\"background:#000\"]],[false,{\".owl-carousel .owl-video-play-icon\":false},[\"position:absolute\",\"height:80px\",\"width:80px\",\"left:50%\",\"top:50%\",\"margin-left:-40px\",\"margin-top:-40px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/css\\/owl.video.play.png\\\") no-repeat\",\"cursor:pointer\",\"z-index:1\",\"-webkit-backface-visibility:hidden\",\"transition:transform 100ms ease\"]],[false,{\".owl-carousel .owl-video-play-icon:hover\":false},[\"-ms-transform:scale(1.3,1.3)\",\"transform:scale(1.3,1.3)\"]],[false,{\".owl-carousel .owl-video-playing .owl-video-tn\":false,\".owl-carousel .owl-video-playing .owl-video-play-icon\":false},[\"display:none\"]],[false,{\".owl-carousel .owl-video-tn\":false},[\"opacity:0\",\"height:100%\",\"background-position:center center\",\"background-repeat:no-repeat\",\"background-size:contain\",\"transition:opacity 400ms ease\"]],[false,{\".owl-carousel .owl-video-frame\":false},[\"position:relative\",\"z-index:1\",\"height:100%\",\"width:100%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1013,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/owlcarousel2.github.io\\/OwlCarousel2\\/assets\\/owlcarousel\\/assets\\/owl.theme.default.min.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"547aa8bb20ab8306b3b739fab5e4aa08\",\"parse_time\":0.004403114318847656,\"shake_time\":1.811981201171875e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".owl-theme .owl-dots\":false,\".owl-theme .owl-nav\":false},[\"text-align:center\",\"-webkit-tap-highlight-color:transparent\"]],[false,{\".owl-theme .owl-nav\":false},[\"margin-top:10px\"]],[false,{\".owl-theme .owl-nav [class*=owl-]\":false},[\"color:#fff\",\"font-size:14px\",\"margin:5px\",\"padding:4px 7px\",\"background:#d6d6d6\",\"display:inline-block\",\"cursor:pointer\",\"border-radius:3px\"]],[false,{\".owl-theme .owl-nav [class*=owl-]:hover\":false},[\"background:#869791\",\"color:#fff\",\"text-decoration:none\"]],[false,{\".owl-theme .owl-nav .disabled\":false},[\"opacity:.5\",\"cursor:default\"]],[false,{\".owl-theme .owl-nav.disabled+.owl-dots\":false},[\"margin-top:10px\"]],[false,{\".owl-theme .owl-dots .owl-dot\":false},[\"display:inline-block\",\"zoom:1\"]],[false,{\".owl-theme .owl-dots .owl-dot span\":false},[\"width:10px\",\"height:10px\",\"margin:5px 7px\",\"background:#d6d6d6\",\"display:block\",\"-webkit-backface-visibility:visible\",\"transition:opacity .2s ease\",\"border-radius:30px\"]],[false,{\".owl-theme .owl-dots .owl-dot.active span\":false,\".owl-theme .owl-dots .owl-dot:hover span\":false},[\"background:#869791\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":65448,\"final_size\":1244,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/styles.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"7827cda6edfe62811923d93e516ee494\",\"parse_time\":0.6045119762420654,\"shake_time\":0.041528940200805664,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".texto\":false},[\"font-family:Raleway,sans-serif\",\"font-weight:400\",\"font-size:14px\",\"line-height:20px\",\"color:#152649\"]],[false,\"@media (min-width:1400px){\"],[false,{\".texto\":false},[\"font-size:18px\",\"line-height:24px\"]],[false,\"}\"],[false,{\".bg-cover\":false},[\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\"]],[false,{\".box-shadow\":false},[\"-webkit-box-shadow:0 2px 6px 0 rgba(50,50,50,.3)\",\"-moz-box-shadow:0 2px 6px 0 rgba(50,50,50,.3)\",\"box-shadow:0 2px 6px 0 rgba(50,50,50,.3)\"]],[true,{\"html\":true},[\"-webkit-font-smoothing:antialiased\",\"background-color:#fff\"]],[true,{\"body\":true},[\"background-color:#fff\",\"font-family:Raleway,sans-serif\",\"font-weight:400\",\"font-size:14px\",\"line-height:20px\",\"color:#152649\",\"-webkit-font-smoothing:subpixel-antialiased\",\"overflow-x:hidden\"]],[true,\"@media (min-width:1400px){\"],[true,{\"body\":true},[\"font-size:18px\",\"line-height:24px\"]],[true,\"}\"],[true,{\"a\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"a:hover\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"strong\":true},[\"font-weight:700\"]],[true,{\"amp-img\":true,\"amp-anim\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".error\":false},[\"width:100%\"]],[false,{\".error:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:20px\",\"text-align:left\",\"left:0\",\"color:#c00\",\"font-weight:500\"]],[false,{\"label.error:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".wpcf7-not-valid-tip:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".wpcf7-not-valid:not(#_#_#_#_#_#_#_)\":false},[\"border:1px solid red\"]],[false,{\".nospace\":false},[\"margin:0\",\"padding:0\"]],[false,{\".nopadding\":false},[\"padding:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".nopadding\":false},[\"padding:0\",\"margin:0\"]],[false,\"}\"],[false,{\"input:focus\":false},[\"outline-color:transparent\",\"outline-style:none\"]],[false,{\"textarea:focus\":false},[\"outline-color:transparent\",\"outline-style:none\"]],[false,{\"input.form-control\":false},[\"font-family:Raleway,sans-serif\",\"font-weight:500\",\"width:100%\",\"font-size:12px\",\"background:#dfdfdf\",\"color:grey\",\"height:40px\",\"line-height:40px\",\"border:0 solid #343636\",\"margin-bottom:10px\",\"border-radius:0\",\"-moz-border-radius:0\",\"-webkit-border-radius:0\",\"-webkit-box-shadow:inset 0 0 0 transparent\",\"box-shadow:inset 0 0 0 transparent\",\"padding:0 10px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"input.form-control\":false},[\"font-size:14px\",\"height:45px\",\"line-height:45px\"]],[false,\"}\"],[false,{\"textarea.form-control\":false},[\"font-family:Raleway,sans-serif\",\"font-weight:500\",\"width:100%\",\"font-size:12px\",\"background:#dfdfdf\",\"color:grey\",\"height:140px\",\"border:0 solid #343636\",\"margin-bottom:10px\",\"border-radius:0\",\"-moz-border-radius:0\",\"-webkit-border-radius:0\",\"-webkit-box-shadow:inset 0 0 0 transparent\",\"box-shadow:inset 0 0 0 transparent\",\"padding:10px\",\"resize:none\"]],[false,\"@media (min-width:1400px){\"],[false,{\"textarea.form-control\":false},[\"font-size:14px\"]],[false,\"}\"],[false,{\".btn\":false},[\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"border-radius:0\",\"-moz-border-radius:0\",\"-webkit-border-radius:0\",\"font-family:Raleway,sans-serif\",\"display:inline-block\",\"display:inline-block\",\"line-height:40px\",\"color:#fff\",\"border:0 solid #343636\",\"background-color:#152649\",\"font-size:14px\",\"font-weight:500\",\"text-align:center\",\"padding:0 20px\",\"margin-bottom:50px\"]],[false,\"@media (max-width:992px){\"],[false,{\".btn\":false},[\"width:100%\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".btn\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".btn:hover\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".btn1\":false},[\"display:inline-block\",\"background:#90f247\",\"background:-moz-linear-gradient(left,#90f247 0,#00debb 100%)\",\"background:-webkit-linear-gradient(left,#90f247 0,#00debb 100%)\",\"background:linear-gradient(to right,#90f247 0,#00debb 100%)\",\"padding:2px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\"]],[false,{\".btn1 .mask-btn\":false},[\"width:100%\",\"padding:10px 9px 10px 9px\",\"background-color:#fff\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:15px\",\"font-size:16px\",\"color:#152649\",\"-webkit-transition:all .4s ease-in-out\",\"-moz-transition:all .4s ease-in-out\",\"transition:all .4s ease-in-out\"]],[false,{\".btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,\"@media (min-width:1400px){\"],[false,{\".btn1 .mask-btn\":false},[\"padding:20px 20px 20px 19px\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\",\"line-height:17px\",\"font-size:18px\"]],[false,\"}\"],[false,{\".btn-learn\":false},[\"width:auto\",\"display:inline-block\",\"padding:10px 20px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"background-color:#152649\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:15px\",\"font-size:16px\",\"color:#fff\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".btn-learn:hover\":false},[\"background-color:#0c1832\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".btn-learn\":false},[\"padding:20px 30px\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\",\"line-height:17px\",\"font-size:18px\"]],[false,{\".btn-learn:hover\":false},[\"border-radius:8px\",\"-moz-border-radius:8px\",\"-webkit-border-radius:8px\"]],[false,\"}\"],[false,{\".btn-how\":false},[\"width:auto\",\"display:inline-block\",\"padding:10px 20px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"background-color:#fff\",\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:15px\",\"font-size:16px\",\"color:#3e3e3e\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"margin-top:10px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".btn-how:hover\":false},[\"background-color:#0c1832\",\"color:#fff\"]],[false,\"@media (min-width:1400px){\"],[false,{\".btn-how\":false},[\"padding:20px 30px\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\",\"line-height:17px\",\"font-size:18px\",\"font-weight:600\"]],[false,{\".btn-how:hover\":false},[\"border-radius:8px\",\"-moz-border-radius:8px\",\"-webkit-border-radius:8px\"]],[false,\"}\"],[false,{\".ajax-loader:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[true,{\"::-webkit-input-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\":-moz-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\"::-moz-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\":-ms-input-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\"header\":true},[\"top:0\",\"width:100%\",\"height:100px\",\"position:fixed\",\"background-color:#fff\",\"z-index:3\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[true,{\"header .row\":true},[\"margin:0\"]],[true,\"@media (min-width:1400px){\"],[true,{\"header\":true},[\"height:120px\"]],[true,\"}\"],[false,{\"header .logo\":false},[\"line-height:100px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header .logo amp-img\":false,\"header .logo amp-anim\":false},[\"height:30px\",\"margin-left:15px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header .logo\":false},[\"line-height:120px\"]],[false,{\"header .logo amp-img\":false,\"header .logo amp-anim\":false},[\"height:50px\"]],[false,\"}\"],[false,{\"header .min-header\":false},[\"color:#152649\",\"font-size:30px\",\"text-align:right\",\"line-height:100px\",\"display:none\",\"cursor:pointer\",\"margin-right:15px\"]],[false,\"@media (max-width:992px){\"],[false,{\"header .min-header\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header .min-header\":false},[\"line-height:120px\",\"font-size:50px\"]],[false,\"}\"],[false,{\"header .divmenu\":false},[\"text-align:right\"]],[false,{\"header .menu-menu-interna-container\":false,\"header .menu-menu-principal-container\":false},[\"display:inline-block\"]],[false,{\"header #menu\":false},[\"width:100%\",\"margin:0\",\"padding:0\",\"text-align:right\"]],[false,{\"header #menu li\":false},[\"position:relative\",\"list-style:none\",\"display:inline-block\",\"color:#152649\",\"font-size:13px\",\"padding:0 15px\",\"line-height:100px\",\"text-align:center\",\"font-weight:700\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header #menu li:after\":false},[\"width:0\",\"height:7px\",\"top:50%\",\"margin-top:-3px\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background:#adf231\",\"background:-webkit-linear-gradient(left,#adf231 0,#00dbc5 100%)\",\"background:-o-linear-gradient(left,#adf231 0,#00dbc5 100%)\",\"background:linear-gradient(to right,#adf231 0,#00dbc5 100%)\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"z-index:-1\"]],[false,{\"header #menu li.current-menu-ancestor:after\":false,\"header #menu li.current_page_item:after\":false},[\"width:100%\"]],[false,{\"header #menu li:hover:after\":false},[\"width:100%\"]],[false,\"@media (max-width:992px){\"],[false,{\"header #menu\":false},[\"background-color:#fff\",\"display:none\",\"width:200%\",\"right:0\",\"top:100px\",\"position:absolute\"]],[false,{\"header #menu li\":false},[\"width:100%\",\"display:block\",\"line-height:40px\"]],[false,{\"header #menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header #menu\":false},[\"top:120px\"]],[false,{\"header #menu li\":false},[\"line-height:120px\",\"font-size:15px\"]],[false,\"}\"],[false,{\"header #menu .sub-menu\":false},[\"width:200px\",\"background-color:#fff\",\"display:none\",\"position:absolute\",\"padding:0\",\"text-align:left\",\"margin-left:-15px\",\"margin-top:-20px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header #menu .sub-menu li\":false},[\"display:block\",\"color:#727272\",\"font-weight:400\",\"padding:0 15px\",\"text-align:left\"]],[false,{\"header #menu .sub-menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"line-height:18px\",\"margin:15px 0\"]],[false,{\"header #menu .sub-menu li:hover\":false},[\"color:#00debb\"]],[false,\"@media (max-width:992px){\"],[false,{\"header #menu .sub-menu\":false},[\"position:relative\",\"width:100%\"]],[false,{\"header #menu .sub-menu:not(#_#_#_#_#_#_#_#_#_)\":false},[\"display:block\",\"margin:0\",\"padding:0\"]],[false,{\"header #menu .sub-menu li\":false},[\"color:#152649\",\"font-size:13px\",\"line-height:18px\",\"text-align:center\",\"font-weight:700\",\"margin:15px 0\"]],[false,{\"header #menu .sub-menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header #menu .sub-menu li\":false},[\"line-height:60px\",\"font-size:15px\"]],[false,\"}\"],[false,{\"header .menu-item-has-children:hover .sub-menu:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\"header.mini\":false},[\"height:80px\",\"-webkit-box-shadow:0 0 20px 1px rgba(0,0,0,.1)\",\"box-shadow:0 0 20px 1px rgba(0,0,0,.1)\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini\":false},[\"height:100px\"]],[false,\"}\"],[false,{\"header.mini .logo\":false},[\"line-height:80px\"]],[false,{\"header.mini .logo amp-img\":false,\"header.mini .logo amp-anim\":false},[\"height:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini .logo\":false},[\"line-height:100px\"]],[false,{\"header.mini .logo amp-img\":false,\"header.mini .logo amp-anim\":false},[\"height:40px\"]],[false,\"}\"],[false,{\"header.mini .min-header\":false},[\"line-height:80px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini .min-header\":false},[\"line-height:100px\"]],[false,\"}\"],[false,{\"header.mini #menu li\":false},[\"line-height:80px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini #menu li\":false},[\"line-height:100px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\"header.mini #menu\":false},[\"top:80px\"]],[false,{\"header.mini #menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"line-height:50px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini #menu\":false},[\"top:100px\"]],[false,{\"header.mini #menu li\":false},[\"line-height:100px\"]],[false,\"}\"],[false,{\"header.mini .sub-menu\":false},[\"width:200px\",\"background-color:#fff\",\"display:none\",\"position:absolute\",\"padding:0\",\"text-align:left\",\"margin-left:-15px\",\"margin-top:40px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header.mini .sub-menu:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-bottom:10px\"]],[false,{\"header.mini .sub-menu li\":false},[\"display:block\",\"color:#727272\",\"font-weight:400\",\"text-align:left\",\"margin:15px 0\"]],[false,{\"header.mini .sub-menu li:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:0 15px\",\"line-height:15px\",\"line-height:40px\"]],[false,\"@media (max-width:992px){\"],[false,{\"header.mini .sub-menu li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\"header #menu-item-42>a:not(#_#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,\"}\"],[true,{\"h1\":true},[\"position:relative\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:90px\",\"font-size:90px\",\"color:#152649\",\"margin:0 0 5px\"]],[true,\"@media (min-width:1400px){\"],[true,{\"h1\":true},[\"font-size:110px\",\"line-height:110px\"]],[true,\"}\"],[false,{\"h2\":false},[\"position:relative\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:40px\",\"font-size:40px\",\"color:#152649\",\"margin:0 0 5px\"]],[false,{\"h2 small\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:40px\",\"font-size:40px\"]],[false,{\"h2.white\":false},[\"color:#fff\",\"margin-top:20px\",\"margin-bottom:10px\"]],[false,{\"h2 strong\":false},[\"color:#a1f350\"]],[false,\"@media (min-width:1400px){\"],[false,{\"h2\":false},[\"font-size:60px\",\"line-height:60px\"]],[false,{\"h2 small\":false},[\"font-size:60px\",\"line-height:60px\"]],[false,\"}\"],[true,{\"h3\":true},[\"position:relative\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"color:#152649\",\"margin:0 0 5px\"]],[false,{\"h3.topspace\":false},[\"margin-top:90px\",\"margin-bottom:40px\"]],[false,{\".top-info\":false},[\"width:100%\",\"height:1px\",\"background:-moz-linear-gradient(left,rgba(43,154,199,0) 0,rgba(43,154,199,.84) 21%,#48a8cf 25%,#ccc 50%,#bff466 75%,rgba(183,243,84,.88) 78%,rgba(183,243,84,0) 100%)\",\"background:-webkit-linear-gradient(left,rgba(43,154,199,0) 0,rgba(43,154,199,.84) 21%,#48a8cf 25%,#ccc 50%,#bff466 75%,rgba(183,243,84,.88) 78%,rgba(183,243,84,0) 100%)\",\"background:linear-gradient(to right,rgba(43,154,199,0) 0,rgba(43,154,199,.84) 21%,#48a8cf 25%,#ccc 50%,#bff466 75%,rgba(183,243,84,.88) 78%,rgba(183,243,84,0) 100%)\"]],[false,{\".top-info-devops\":false},[\"width:100%\",\"height:1px\",\"background:#2c9ac7\",\"background:-moz-linear-gradient(left,#2c9ac7 0,#fff 100%)\",\"background:-webkit-linear-gradient(left,#2c9ac7 0,#fff 100%)\",\"background:linear-gradient(to right,#2c9ac7 0,#fff 100%)\",\"margin-bottom:25px\"]],[false,{\".line-gray\":false},[\"width:100%\",\"height:1px\",\"background-color:#ccc\",\"margin:50px 0\"]],[false,{\".top\":false},[\"width:100%\",\"position:relative\",\"margin-top:100px\",\"background-color:#fff\",\"color:#a3a3a3\",\"display:table\"]],[false,{\".top .wrap-top\":false},[\"display:table-row\",\"width:100%\",\"height:100%\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,{\".top .wrap-top .content\":false},[\"display:table-cell\",\"width:100%\",\"height:100%\",\"vertical-align:middle\"]],[false,{\".top-home h2\":false},[\"position:relative\",\"margin-top:30px\",\"padding-top:30px\"]],[false,{\".top-home h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#6ecff4\"]],[false,{\".top-home h2:hover:after\":false},[\"width:70px\",\"background-color:#b7f254\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-home h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".top-home .wrap-top\":false},[\"text-align:center\"]],[false,{\".top-home .wrap-top:not(#_#_#_#_#_#_#_)\":false},[\"background-image:none\"]],[false,\"}\"],[false,{\".services\":false},[\"width:100%\",\"position:relative\",\"background-color:#f8f8f8\",\"padding-bottom:100px\"]],[false,\"@media (max-width:992px){\"],[false,{\".services\":false},[\"padding-bottom:50px\"]],[false,\"}\"],[false,{\".services .top-info\":false},[\"margin-bottom:100px\"]],[false,{\".services .info-text\":false},[\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:35px\",\"font-size:25px\",\"color:#8c8c8c\",\"text-align:center\",\"margin-bottom:100px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".services .info-text\":false},[\"line-height:43px\",\"font-size:33px\"]],[false,\"}\"],[false,{\".services .service\":false},[\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:35px\",\"font-size:25px\",\"color:#152649\",\"text-align:center\"]],[false,{\".services .service .icon\":false},[\"text-align:center\",\"border-right:1px solid #ccc\",\"margin-bottom:50px\"]],[false,{\".services .service .icon.last\":false},[\"border:0\"]],[false,{\".services .service .icon amp-img\":false,\".services .service .icon amp-anim\":false},[\"max-height:140px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".services .service .icon amp-img\":false,\".services .service .icon amp-anim\":false},[\"max-height:170px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".services .service .icon\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".services .service\":false},[\"margin-bottom:50px\"]],[false,\"}\"],[false,{\".wephrase\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:60px\",\"font-size:60px\",\"color:#152649\"]],[false,{\".wephrase .wrap-phrase\":false},[\"display:inline-block\"]],[false,{\".wephrase .dot\":false},[\"display:inline-block\",\"color:#b7f254\",\"animation:blinker 1s linear infinite\"]],[true,\"@keyframes blinker{\"],[true,\"50%{opacity:0}\"],[true,\"}\"],[false,{\".microservices\":false},[\"width:100%\",\"position:relative\",\"background-color:#efefef\",\"-webkit-box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices\":false},[\"height:auto\"]],[false,{\".microservices:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".microservices\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".microservices .service-padding\":false},[\"padding:100px 0\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-microservices.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top -30px right\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".microservices amp-img\":false,\".microservices amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices amp-img\":false,\".microservices amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".microservices amp-img\":false,\".microservices amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,{\".microservices h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".microservices h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#b8b8b8\"]],[false,{\".microservices h2:hover:after\":false},[\"width:70px\",\"background-color:#b7f254\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".microservices .btn1 .mask-btn\":false},[\"background-color:#efefef\"]],[false,{\".microservices .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".machine_learning\":false},[\"width:100%\",\"position:relative\",\"background-color:#f2f2f2\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning\":false},[\"height:auto\"]],[false,{\".machine_learning:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".machine_learning\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".machine_learning h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".machine_learning h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#b993e7\"]],[false,{\".machine_learning h2:hover:after\":false},[\"width:70px\",\"background-color:#1ab7d5\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".machine_learning .btn1\":false},[\"background:#9061d7\",\"background:-moz-linear-gradient(left,#9061d7 0,#2c99c8 100%)\",\"background:-webkit-linear-gradient(left,#9061d7 0,#2c99c8 100%)\",\"background:linear-gradient(to right,#9061d7 0,#2c99c8 100%)\"]],[false,{\".machine_learning .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\"]],[false,{\".machine_learning .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".machine_learning .service-padding\":false},[\"padding:100px 0\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-ml.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top -10px right\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".machine_learning .wrap-image\":false},[\"text-align:right\"]],[false,{\".machine_learning amp-img\":false,\".machine_learning amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning amp-img\":false,\".machine_learning amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".machine_learning amp-img\":false,\".machine_learning amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,{\".machine_learning .subitems .item:after\":false},[\"background:#2c99c8\",\"background:-moz-linear-gradient(top,#2c99c8 0,#9061d7 100%)\",\"background:-webkit-linear-gradient(top,#2c99c8 0,#9061d7 100%)\",\"background:linear-gradient(to bottom,#2c99c8 0,#9061d7 100%)\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".digital_transformation\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation\":false},[\"height:auto\"]],[false,{\".digital_transformation:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".digital_transformation\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".digital_transformation h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".digital_transformation h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".digital_transformation h2:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".digital_transformation .btn1\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to right,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".digital_transformation .btn1 .mask-btn\":false},[\"background-color:#fff\"]],[false,{\".digital_transformation .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".digital_transformation .service-padding\":false},[\"padding:100px 0\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".digital_transformation .wrap-image\":false},[\"text-align:right\"]],[false,{\".digital_transformation amp-img\":false,\".digital_transformation amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation amp-img\":false,\".digital_transformation amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".digital_transformation amp-img\":false,\".digital_transformation amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,{\".digital_transformation .subitems .item:after\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to bottom,#02c6d9 0,#05d2d9 100%)\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".devops\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"-webkit-box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops\":false},[\"height:auto\"]],[false,{\".devops:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".devops\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".devops h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".devops h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#95f896\"]],[false,{\".devops h2:hover:after\":false},[\"width:70px\",\"background-color:#2d98c6\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".devops .service-padding\":false},[\"padding:100px 0\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-devops.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top right\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".devops amp-img\":false,\".devops amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops amp-img\":false,\".devops amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".devops amp-img\":false,\".devops amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".devops .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".call_to_action\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"text-align:center\",\"padding:50px 0\"]],[false,{\".call_to_action.about-box\":false},[\"background-color:#f7f7f7\",\"-webkit-box-shadow:inset 0 -10px 30px -10px rgba(0,0,0,.3)\",\"box-shadow:inset 0 -10px 30px -10px rgba(0,0,0,.3)\"]],[false,{\".call_to_action.about-box .btn1 .mask-btn\":false},[\"background-color:#f7f7f7\"]],[false,{\".call_to_action.about-box .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process\":false},[\"width:100%\",\"position:relative\",\"background-color:#ccc\",\"overflow:hidden\"]],[false,{\".process .process-item\":false},[\"width:100%\",\"padding:80px\",\"height:500px\"]],[false,{\".process .process-item p\":false},[\"height:100px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process .process-item p\":false},[\"height:130px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item:not(#_#_#_#_#_#_#_)\":false},[\"padding:80px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".process .process-item\":false},[\"height:600px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".process\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".process .process-item-1\":false},[\"position:relative\",\"background:#15a3cc\",\"background:-moz-linear-gradient(left,#15a3cc 0,#15b5d5 100%)\",\"background:-webkit-linear-gradient(left,#15a3cc 0,#15b5d5 100%)\",\"background:linear-gradient(to right,#15a3cc 0,#15b5d5 100%)\"]],[false,{\".process .process-item-1:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:28px\",\"height:97px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrow1.png\\\")\",\"top:3px\",\"right:-28px\",\"z-index:2\"]],[false,{\".process .process-item-1 h2.white\":false},[\"position:relative\",\"padding-top:30px\"]],[false,{\".process .process-item-1 h2.white:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#6ecff4\"]],[false,{\".process .process-item-1 h2.white:hover:after\":false},[\"width:70px\",\"background-color:#152649\"]],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item-1 h2.white:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process .process-item-2\":false},[\"position:relative\",\"padding-top:125px\",\"background:#c4c4c4\",\"background:-moz-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:-webkit-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:linear-gradient(to right,#c4c4c4 0,#ccc 100%)\"]],[false,{\".process .process-item-2:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:28px\",\"height:97px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrow2.png\\\")\",\"top:3px\",\"right:-28px\",\"z-index:2\"]],[false,{\".process .process-item-2 h2.white\":false},[\"position:relative\",\"padding-top:30px\"]],[false,{\".process .process-item-2 h2.white:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background:#878787\",\"background:-moz-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:-webkit-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:linear-gradient(to right,#878787 0,#aeaeae 100%)\"]],[false,{\".process .process-item-2 h2.white:hover:after\":false},[\"width:70px\",\"background-color:#878787\"]],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item-2 h2.white:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process .process-item-3\":false},[\"position:relative\",\"padding-top:125px\",\"background:-moz-linear-gradient(left,#00debb 0,#90f247 100%)\",\"background:-webkit-linear-gradient(left,#00debb 0,#90f247 100%)\",\"background:linear-gradient(to right,#00debb 0,#90f247 100%)\"]],[false,{\".process .process-item-3 h2.white\":false},[\"position:relative\",\"padding-top:30px\"]],[false,{\".process .process-item-3 h2.white:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#6ecff4\"]],[false,{\".process .process-item-3 h2.white:hover:after\":false},[\"width:70px\",\"background-color:#152649\"]],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item-3 h2.white:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".case_study\":false},[\"width:100%\",\"position:relative\",\"background-color:#f1f1f1\",\"padding:100px 0 70px\"]],[false,\"@media (max-width:992px){\"],[false,{\".case_study\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".case_study h2\":false},[\"margin-bottom:20px\",\"position:relative\",\"padding-top:50px\"]],[false,{\".case_study h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#b8b8b8\"]],[false,{\".case_study h2:hover:after\":false},[\"width:70px\"]],[false,\"@media (max-width:992px){\"],[false,{\".case_study h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".case_study .btn1\":false},[\"margin-top:30px\"]],[false,{\".case_study .btn1 .mask-btn\":false},[\"background-color:#f1f1f1\"]],[false,{\".case_study .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".case_study .wrap-image\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-case-home.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top center\",\"background-size:100% auto\"]],[false,\"@media (max-width:992px){\"],[false,{\".case_study .wrap-image\":false},[\"margin-top:40px\"]],[false,\"}\"],[false,{\".partners\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"text-align:center\",\"padding:50px 0\"]],[false,{\".partners .owl-dots\":false},[\"width:100%\",\"position:relative\",\"text-align:center\"]],[false,{\".partners .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".partners .owl-dots .owl-dot\":false},[\"width:6px\",\"height:6px\",\"background-color:#ccc\",\"display:inline-block\",\"margin:0 10px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\"]],[false,{\".partners .owl-dots .owl-dot.active\":false},[\"background-color:#3b3b3b\"]],[false,{\".about-intern\":false},[\"background-color:#f7f7f7\",\"color:#152649\",\"font-size:13px\"]],[false,{\".about-intern h1\":false},[\"font-size:50px\",\"line-height:50px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-intern\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".about-intern .btn1\":false},[\"margin-bottom:20px\"]],[false,{\".about-intern .btn1 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".about-intern .wrap-top\":false},[\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:bottom center\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-intern .wrap-top\":false},[\"text-align:center\"]],[false,{\".about-intern .wrap-top:not(#_#_#_#_#_#_#_)\":false},[\"background-image:none\"]],[false,\"}\"],[false,{\".cases-intern\":false},[\"background-color:#fff\",\"color:#fff\",\"font-size:13px\",\"background-position:right\",\"background-repeat:no-repeat\",\"background-size:auto 100%\"]],[false,\"@media (max-width:992px){\"],[false,{\".cases-intern\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".cases-intern\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".cases-intern h1\":false},[\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:40px\",\"font-size:40px\",\"color:#fff\",\"margin:0 0 5px\"]],[false,{\".cases-intern h1 small\":false},[\"color:#00ddbd\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:20px\",\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".cases-intern h1\":false},[\"line-height:50px\",\"font-size:50px\"]],[false,{\".cases-intern h1 small\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".cases-intern .wrap-top\":false},[\"background:-moz-linear-gradient(left,#002048 0,rgba(0,32,72,.1) 50%,rgba(0,32,72,0) 65%,rgba(0,32,72,0) 100%)\",\"background:-webkit-linear-gradient(left,#002048 0,#002048 50%,rgba(0,32,72,0) 65%,rgba(0,32,72,0) 100%)\",\"background:linear-gradient(to right,#002048 0,#002048 50%,rgba(0,32,72,0) 65%,rgba(0,32,72,0) 100%)\"]],[false,\"@media (max-width:992px){\"],[false,{\".cases-intern .wrap-top\":false},[\"background:#002048\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".content-cases\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".content-cases .gray\":false},[\"font-size:14px\",\"background-color:#f7f7f7\",\"color:#6b6b6b\",\"padding:40px 40px 20px\",\"margin-top:-60px\",\"margin-bottom:50px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".content-cases .gray\":false},[\"font-size:16px\",\"line-height:18px\"]],[false,\"}\"],[false,{\".content-cases h3\":false},[\"color:#6b6b6b\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:20px\",\"font-size:20px\",\"margin-bottom:10px\"]],[false,{\".content-cases .content-cases2\":false},[\"color:#6b6b6b\",\"padding:50px 0 30px\"]],[false,{\".content-cases .bg-gray\":false},[\"font-size:14px\",\"background-color:#f7f7f7\",\"color:#6b6b6b\",\"padding:15px\",\"margin-bottom:50px\"]],[false,{\".content-cases .content-downgray\":false},[\"text-align:center\"]],[false,{\".content-cases .content-downgray amp-img\":false,\".content-cases .content-downgray amp-anim\":false},[\"max-width:60%\"]],[false,{\".content-cases .content-downgray .top-info\":false},[\"margin:70px 0\"]],[false,{\".content-cases .owl-dots\":false},[\"margin-top:20px\",\"width:100%\",\"position:relative\",\"text-align:center\"]],[false,{\".content-cases .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".content-cases .owl-dots .owl-dot\":false},[\"width:6px\",\"height:6px\",\"background-color:#ccc\",\"display:inline-block\",\"margin:0 10px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\"]],[false,{\".content-cases .owl-dots .owl-dot.active\":false},[\"background-color:#3b3b3b\"]],[false,{\".content-cases .gallery-cases\":false},[\"margin-top:70px\"]],[false,{\".content-cases .gallery-cases amp-img\":false,\".content-cases .gallery-cases amp-anim\":false},[\"border:2px solid #ccc\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\"]],[false,{\".content-cases .gallery-cases amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".content-cases .gallery-cases amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".process-intern\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"color:#b2b2b2\",\"font-size:20px\",\"line-height:40px\",\"font-family:Rajdhani\",\"font-weight:700\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process-intern\":false},[\"font-size:30px\",\"line-height:50px\"]],[false,\"}\"],[false,{\".process-intern .wrap-top\":false},[\"background-position:bottom center\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\"]],[false,\"@media (max-width:992px){\"],[false,{\".process-intern .wrap-top\":false},[\"background-position:bottom center\",\"text-align:center\"]],[false,{\".process-intern .wrap-top:not(#_#_#_#_#_#_#_)\":false},[\"background-image:none\"]],[false,\"}\"],[false,{\".about-process\":false},[\"width:100%\",\"position:relative\",\"background-color:#f1f1f1\",\"padding:70px 0\",\"text-align:center\"]],[false,{\".about-process .wephrase\":false},[\"font-size:35px\",\"line-height:35px\",\"margin-bottom:30px\"]],[false,{\".about-process .top-info\":false},[\"margin-top:100px\"]],[false,{\".line-process\":false},[\"width:60%\",\"height:1px\",\"margin:50px 20%\",\"background:#2b9ac7\",\"background:-moz-linear-gradient(left,#2b9ac7 0,#fff 100%)\",\"background:-webkit-linear-gradient(left,#2b9ac7 0,#fff 100%)\",\"background:linear-gradient(to right,#2b9ac7 0,#fff 100%)\"]],[false,{\".process-part\":false},[\"width:100%\",\"position:relative\",\"padding:70px 0\",\"font-size:13px\"]],[false,\"@media (max-width:992px){\"],[false,{\".process-part .btn1\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".process-part\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".process1\":false},[\"background-color:#15a7ce\",\"color:#002048\",\"font-weight:500\"]],[false,{\".process1 h2\":false},[\"color:#fff\",\"line-height:20px\"]],[false,{\".process1 h2 small\":false},[\"color:#98e36c\",\"font-size:18px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process1 h2\":false},[\"line-height:50px\"]],[false,{\".process1 h2 small\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".process1 h3\":false},[\"color:#fff\",\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process1 h3\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".process1 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process1:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:70px\",\"height:35px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrowd1.png\\\")\",\"background-position:bottom center\",\"bottom:-35px\",\"margin-left:50%\",\"left:-35px\",\"z-index:2\"]],[false,{\".process1 .lineb\":false},[\"width:2px\",\"height:600px\",\"margin:0 auto\",\"background-color:rgba(255,255,255,.2)\"]],[false,{\".process1 .centro\":false},[\"text-align:center\"]],[false,{\".process1 .centro amp-img\":false,\".process1 .centro amp-anim\":false},[\"max-width:100px\"]],[false,\"@media (max-width:992px){\"],[false,{\".process1 .centro\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process2\":false},[\"background-color:#d7d7d7\",\"color:#565656\",\"font-weight:500\"]],[false,{\".process2 h2\":false},[\"margin-bottom:30px\"]],[false,{\".process2 h3\":false},[\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process2 h3\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".process2 .check-items\":false},[\"margin:20px 0\"]],[false,{\".process2 .check-items .icheck\":false},[\"position:relative\",\"padding-left:30px\",\"min-height:30px\",\"font-size:20px\",\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:20px\",\"padding-top:5px\"]],[false,{\".process2 .check-items .icheck:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:20px\",\"height:100%\",\"top:0\",\"left:0\",\"background-repeat:no-repeat\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/checkb.png\\\")\",\"background-position:center\",\"background-size:100% auto\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process2 .check-items .icheck\":false},[\"font-size:23px\",\"line-height:23px\"]],[false,\"}\"],[false,{\".process2 .btn1\":false},[\"background:#c4c4c4\",\"background:-moz-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:-webkit-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:linear-gradient(to right,#c4c4c4 0,#ccc 100%)\"]],[false,{\".process2 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process2:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:70px\",\"height:35px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrowd2.png\\\")\",\"background-position:bottom center\",\"bottom:-35px\",\"margin-left:50%\",\"left:-35px\",\"z-index:2\"]],[false,\"@media (max-width:992px){\"],[false,{\".process2 amp-img\":false,\".process2 amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process3\":false},[\"color:#002048\",\"background:#38cea3\",\"background:-moz-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:-webkit-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:linear-gradient(to right,#38cea3 0,#75e168 100%)\",\"font-weight:500\"]],[false,{\".process3 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process3 h2\":false},[\"color:#fff\"]],[false,{\".process3 .check-items\":false},[\"margin:20px 0\"]],[false,{\".process3 .check-items .icheck\":false},[\"position:relative\",\"padding-left:15px\",\"padding-left:10px\",\"margin-left:35px\",\"min-height:30px\",\"font-size:14px\",\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:20px\",\"margin-bottom:20px\",\"border-left:1px solid #fff\"]],[false,{\".process3 .check-items .icheck:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:20px\",\"height:100%\",\"top:0\",\"left:-35px\",\"background-repeat:no-repeat\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/checkb.png\\\")\",\"background-position:left center\",\"background-size:100% auto\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process3 .check-items .icheck\":false},[\"font-size:23px\",\"line-height:23px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".process3 amp-img\":false,\".process3 amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".end-process\":false},[\"width:100%\",\"position:relative\",\"background-color:#f6f6f6\",\"padding:70px 0\",\"text-align:center\"]],[false,{\".end-process .wephrase\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,{\".end-process .logos\":false},[\"text-align:center\",\"margin-top:50px\"]],[false,{\".end-process .logos amp-img\":false,\".end-process .logos amp-anim\":false},[\"display:inline-block\",\"height:90px\",\"margin:0 30px\",\"-webkit-transition:all .2s ease-in-out\",\"-moz-transition:all .2s ease-in-out\",\"transition:all .2s ease-in-out\",\"-webkit-filter:grayscale(100%)\"]],[false,{\".end-process .logos amp-img:hover\":false,\".end-process .logos amp-anim:hover\":false},[\"-webkit-filter:grayscale(0)\"]],[false,{\".end-process .logos amp-img.menor\":false,\".end-process .logos amp-anim.menor\":false},[\"height:80px\"]],[false,\"@media (max-width:992px){\"],[false,{\".end-process .logos amp-img\":false,\".end-process .logos amp-anim\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".end-process .logos amp-img\":false,\".end-process .logos amp-anim\":false},[\"height:120px\"]],[false,{\".end-process .logos amp-img.menor\":false,\".end-process .logos amp-anim.menor\":false},[\"height:110px\"]],[false,\"}\"],[false,{\".top-service\":false},[\"width:100%\",\"height:370px\",\"position:relative\",\"margin-top:120px\",\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"color:#fff\",\"display:table\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".top-service .wrap-top\":false},[\"display:table-row\",\"width:100%\",\"height:100%\"]],[false,{\".top-service .wrap-top .content\":false},[\"display:table-cell\",\"width:100%\",\"height:100%\",\"vertical-align:middle\",\"font-size:12px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".top-service .wrap-top .content\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".top-service .logo\":false},[\"margin-left:-10px\",\"margin-bottom:10px\"]],[false,{\".top-service .logo amp-google-document-embed\":false},[\"width:110px\"]],[false,{\".top-service .logo amp-img\":false,\".top-service .logo amp-anim\":false},[\"width:110px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".top-service .logo amp-img\":false,\".top-service .logo amp-anim\":false},[\"width:150px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".top-service .logo\":false},[\"margin-left:0\"]],[false,\"}\"],[false,{\".top-service h1\":false},[\"color:#fff\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".top-service.service-devops\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-devops\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-machine\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-machine\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-micro\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-micro\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-digital\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\",\"color:#152649\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-digital\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-digital h1\":false},[\"color:#152649\"]],[false,{\".disclaimer\":false},[\"width:100%\",\"position:relative\",\"padding:45px 0\"]],[false,{\".disclaimer.service-devops\":false},[\"background-color:#b7f254\",\"text-align:center\",\"font-size:13px\"]],[false,{\".disclaimer.service-devops .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-devops .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-devops\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".disclaimer.service-machine\":false},[\"background-color:#83adfb\",\"text-align:center\",\"font-size:13px\"]],[false,{\".disclaimer.service-machine .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-machine .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-machine\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".disclaimer.service-micro\":false},[\"background-color:#152649\",\"text-align:center\",\"font-size:13px\",\"color:#fff\"]],[false,{\".disclaimer.service-micro .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-micro .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-micro\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".disclaimer.service-digital\":false},[\"background-color:#05bed4\",\"text-align:center\",\"font-size:13px\",\"color:#fff\"]],[false,{\".disclaimer.service-digital .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-digital .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-digital\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".about-service\":false},[\"width:100%\",\"position:relative\",\"padding:0\",\"margin:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .btn:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".about-service .wrap-image\":false},[\"text-align:left\",\"padding-top:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".about-service ul\":false},[\"margin:0\",\"padding:0\"]],[false,{\".about-service li\":false},[\"list-style:none\",\"position:relative\",\"padding-left:30px\",\"min-height:30px\",\"font-size:14px\",\"font-family:Raleway\",\"font-weight:500\",\"line-height:18px\",\"padding-top:5px\",\"margin-bottom:20px\"]],[false,{\".about-service li:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:20px\",\"height:100%\",\"top:0\",\"left:0\",\"background-repeat:no-repeat\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/checkc.png\\\")\",\"background-position:center\",\"background-size:100% auto\"]],[false,{\".about-service.service-devops\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-devops .btn1\":false},[\"background:#cce191\",\"background:-moz-linear-gradient(left,#cce191 0,#ccc 50%,#7cb1cc 100%)\",\"background:-webkit-linear-gradient(left,#cce191 0,#ccc 50%,#7cb1cc 100%)\",\"background:linear-gradient(to right,#cce191 0,#ccc 50%,#7cb1cc 100%)\",\"margin-bottom:20px\"]],[false,{\".about-service.service-devops .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#767e8e\"]],[false,{\".about-service.service-devops .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service.service-machine\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-machine .btn1\":false},[\"background:#4e2e7c\",\"background:-moz-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:-webkit-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:linear-gradient(to right,#4e2e7c 0,#38a3cc 100%)\",\"margin-bottom:20px\"]],[false,{\".about-service.service-machine .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#767e8e\"]],[false,{\".about-service.service-machine .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service.service-micro\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-micro .btn1\":false},[\"background:#878787\",\"background:-moz-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:-webkit-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:linear-gradient(to right,#878787 0,#aeaeae 100%)\",\"margin-bottom:20px\"]],[false,{\".about-service.service-micro .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#767e8e\"]],[false,{\".about-service.service-micro .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service.service-digital\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-digital .btn1\":false},[\"margin-bottom:20px\",\"background:#02c6d9\",\"background:-moz-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to right,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".about-service.service-digital .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#2d98c6\"]],[false,{\".about-service.service-digital .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about\":false},[\"padding:0\",\"color:#8c8c8c\",\"overflow:hidden\",\"position:relative\"]],[false,{\".about-service .content-about .clearfix\":false},[\"width:100%\"]],[false,{\".about-service .content-about .menu-items\":false},[\"margin-top:0\",\"margin-bottom:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .content-about .menu-items\":false},[\"margin:30px 0\",\"text-align:center\"]],[false,\"}\"],[false,{\".about-service .content-about .menu-items .btn\":false},[\"width:100%\",\"text-align:center\",\"line-height:50px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"font-family:Rajdhani\",\"font-weight:400\",\"margin-bottom:0\",\"margin-top:0\",\"font-size:20px\",\"text-transform:uppercase\"]],[false,{\".about-service .content-about .menu-items .active .btn\":false},[\"font-weight:700\"]],[false,{\".about-service .content-about .menu-items.service-devops\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-devops .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-devops .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-devops a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-devops a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-machine\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-machine .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-machine .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-machine a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-machine a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-micro\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-micro .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-micro .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-micro a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-micro a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-digital\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-digital .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-digital .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-digital a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-digital a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .slider-about\":false},[\"line-height:16px\",\"padding-top:70px\"]],[false,{\".about-service .slider-about:not(#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-service .slider-about\":false},[\"line-height:18px\"]],[false,{\".about-service .slider-about:not(#_#_#_#_#_#_#_)\":false},[\"font-size:15px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".about-service .slider-about\":false},[\"text-align:center\"]],[false,{\".about-service .slider-about:not(#_#_#_#_#_#_#_)\":false},[\"font-size:13px\"]],[false,\"}\"],[false,{\".about-service .slider-about h3\":false},[\"font-size:22px\",\"line-height:22px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-service .slider-about h3\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".about-service .slider-about .hand-call\":false},[\"border-top:1px solid #143260\",\"padding-top:30px\",\"margin-top:10px\",\"display:inline-block\"]],[false,{\".about-service .slider-about .border\":false},[\"width:80%\",\"margin-top:20px\",\"margin-bottom:40px\",\"margin-left:10%\"]],[false,{\".about-service .slider-about .border:not(#_#_#_#_#_#_#_)\":false},[\"border:0\",\"border-bottom:1px solid #ccc\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .row\":false},[\"margin:0\"]],[false,\"}\"],[false,{\".intern-about\":false},[\"width:100%\",\"position:relative\",\"padding:70px 0\",\"background-color:#fff\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-intern.jpg\\\")\",\"background-position:bottom center\",\"background-repeat:no-repeat\",\"background-size:100% auto\",\"text-align:center\",\"color:#8c8c8c\",\"font-family:Rajdhani\",\"font-weight:400\",\"font-size:20px\",\"line-height:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".intern-about\":false},[\"font-size:25px\",\"line-height:25px\"]],[false,\"}\"],[false,{\".intern-about .logos\":false},[\"text-align:center\",\"margin-top:50px\"]],[false,{\".intern-about .logos amp-img\":false,\".intern-about .logos amp-anim\":false},[\"display:inline-block\",\"height:90px\",\"margin:0 30px\",\"-webkit-transition:all .2s ease-in-out\",\"-moz-transition:all .2s ease-in-out\",\"transition:all .2s ease-in-out\",\"-webkit-filter:grayscale(100%)\"]],[false,{\".intern-about .logos amp-img:hover\":false,\".intern-about .logos amp-anim:hover\":false},[\"-webkit-filter:grayscale(0)\"]],[false,{\".intern-about .logos amp-img.menor\":false,\".intern-about .logos amp-anim.menor\":false},[\"height:80px\"]],[false,\"@media (max-width:992px){\"],[false,{\".intern-about .logos amp-img\":false,\".intern-about .logos amp-anim\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".intern-about .logos amp-img\":false,\".intern-about .logos amp-anim\":false},[\"height:120px\"]],[false,{\".intern-about .logos amp-img.menor\":false,\".intern-about .logos amp-anim.menor\":false},[\"height:110px\"]],[false,\"}\"],[false,{\".items-service\":false},[\"width:100%\",\"padding:0\",\"margin:0\",\"position:relative\"]],[false,{\".items-service.service-devops\":false},[\"background:#38cea3\",\"background:-moz-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:-webkit-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:linear-gradient(to right,#38cea3 0,#75e168 100%)\"]],[false,{\".items-service.service-machine\":false},[\"background:#4e2e7c\",\"background:-moz-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:-webkit-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:linear-gradient(to right,#4e2e7c 0,#38a3cc 100%)\"]],[false,{\".items-service.service-micro\":false},[\"background:#13203c\",\"background:-moz-linear-gradient(left,#13203c 0,#9d9c9c 100%)\",\"background:-webkit-linear-gradient(left,#13203c 0,#9d9c9c 100%)\",\"background:linear-gradient(to right,#13203c 0,#9d9c9c 100%)\"]],[false,{\".items-service.service-digital\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to right,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".items-service .box-item\":false},[\"position:relative\",\"height:300px\",\"overflow:hidden\"]],[false,\"@media (min-width:1400px){\"],[false,{\".items-service .box-item\":false},[\"height:350px\"]],[false,\"}\"],[false,{\".items-service .box-item .up\":false},[\"position:relative\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"width:100%\",\"height:300px\",\"padding:0\"]],[false,\"@media (min-width:1400px){\"],[false,{\".items-service .box-item .up\":false},[\"height:350px\"]],[false,\"}\"],[false,{\".items-service .box-item .up .bg-image\":false},[\"opacity:.5\",\"background-size:auto 110%\",\"background-position:center\",\"background-repeat:no-repeat\",\"width:100%\",\"height:100%\",\"position:absolute\",\"left:0\",\"top:0\",\"z-index:0\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".items-service .box-item .up .bg-image2\":false},[\"opacity:.5\",\"background-size:auto 110%\",\"background-position:center\",\"background-repeat:no-repeat\",\"width:100%\",\"height:100%\",\"position:absolute\",\"left:0\",\"top:0\",\"z-index:0\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".items-service .box-item .up .wrap-absol\":false},[\"width:100%\",\"height:100%\",\"position:absolute\",\"left:0\",\"top:0\",\"z-index:1\",\"display:table\",\"padding:20px\"]],[false,{\".items-service .box-item .up .wrap-content\":false},[\"display:table-row\",\"width:100%\",\"height:100%\",\"position:relative\"]],[false,{\".items-service .box-item .up .wrap-content .button\":false},[\"width:100%\",\"height:100%\",\"display:table-cell\",\"vertical-align:middle\",\"text-align:center\"]],[false,{\".items-service .box-item .up .wrap-content .btn1\":false},[\"background:0\"]],[false,{\".items-service .box-item .up .wrap-content .btn1:not(#_#_#_#_#_#_#_)\":false},[\"background-color:rgba(0,0,0,0)\"]],[false,{\".items-service .box-item .up .wrap-content .btn1 .mask-btn\":false},[\"border:1px solid #fff\",\"font-weight:500\",\"background-color:rgba(255,255,255,.3)\",\"color:#fff\"]],[false,{\".items-service .box-item .up .wrap-content .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".items-service .box-item .up:hover .bg-image\":false,\".items-service .box-item .up:hover .bg-image2\":false},[\"background-size:auto 130%\"]],[false,{\".items-service .box-item .down\":false},[\"background:#38cea3\",\"background:-webkit-linear-gradient(top,#38cea3 0,#75e168 100%)\",\"background:-o-linear-gradient(top,#38cea3 0,#75e168 100%)\",\"background:linear-gradient(to bottom,#38cea3 0,#75e168 100%)\",\"width:100%\",\"height:300px\",\"padding:20px\",\"color:#fff\",\"font-size:13px\"]],[false,{\".items-service .box-item .down .wrap-all\":false},[\"width:100%\",\"height:260px\"]],[false,{\".items-service.service-machine .down\":false},[\"background:#4e2e7c\",\"background:-moz-linear-gradient(top,#4e2e7c 0,#38a3cc 100%)\",\"background:-webkit-linear-gradient(top,#4e2e7c 0,#38a3cc 100%)\",\"background:linear-gradient(to bottom,#4e2e7c 0,#38a3cc 100%)\"]],[false,{\".items-service.service-micro .down\":false},[\"background:#13203c\",\"background:-moz-linear-gradient(top,#13203c 0,#9d9c9c 100%)\",\"background:-webkit-linear-gradient(top,#13203c 0,#9d9c9c 100%)\",\"background:linear-gradient(to bottom,#13203c 0,#9d9c9c 100%)\"]],[false,{\".items-service.service-digital .down\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to bottom,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".phrase\":false},[\"width:100%\",\"position:relative\",\"padding:50px 0\",\"background-color:#ededed\",\"text-align:center\",\"font-family:Rajdhani\",\"font-weight:400\",\"font-size:20px\",\"line-height:20px\",\"color:#152649\"]],[false,{\".phrase .author\":false},[\"font-size:11px\",\"line-height:11px\",\"color:#9c9c9c\",\"text-transform:uppercase\",\"letter-spacing:5px\",\"margin-top:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".phrase\":false},[\"font-size:25px\",\"line-height:25px\"]],[false,{\".phrase .author\":false},[\"font-size:14px\",\"line-height:14px\"]],[false,\"}\"],[false,{\".about-idea\":false},[\"width:100%\",\"position:relative\",\"padding:50px 0\",\"background-color:#fff\"]],[false,{\".about-idea amp-img\":false,\".about-idea amp-anim\":false},[\"margin-top:35px\",\"margin-bottom:35px\"]],[false,{\".about-idea .btn1\":false},[\"width:100%\",\"text-align:center\"]],[false,{\".about-idea .btn1 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-idea .btn1\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,{\".about-idea .top-info\":false},[\"margin:50px 0\"]],[false,{\".about-idea .withborder\":false},[\"border-left:1px solid #ccc\",\"padding-top:10px\",\"margin-bottom:70px\",\"font-size:17px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-idea .withborder\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,\"}\"],[false,{\".about-idea .big\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"font-size:20px\",\"line-height:20px\",\"color:#152649\",\"margin-top:40px\",\"text-align:center\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-idea .big\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".about-idea\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".hand-call\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:22px\",\"font-size:22px\",\"color:#152649\",\"text-align:left\"]],[false,\"@media (min-width:1400px){\"],[false,{\".hand-call\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".hand-call .border-call\":false},[\"padding-left:20px\",\"margin-bottom:20px\",\"position:relative\"]],[false,{\".hand-call .border-call:before\":false},[\"width:1px\",\"height:100%\",\"position:absolute\",\"content:\\\"\\\"\",\"left:0\",\"top:0\",\"background:#b5f155\",\"background:-moz-linear-gradient(top,#b5f155 0,#2e9cc5 100%)\",\"background:-webkit-linear-gradient(top,#b5f155 0,#2e9cc5 100%)\",\"background:linear-gradient(to bottom,#b5f155 0,#2e9cc5 100%)\"]],[false,{\".hand-call .arrow\":false},[\"padding-left:50px\",\"position:relative\",\"position:relative\"]],[false,{\".hand-call .arrow:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"top:0\",\"left:0\",\"width:30px\",\"height:44px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrow.png\\\")\"]],[false,{\".qualities\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"padding:50px 0\"]],[false,{\".qualities .hand-call\":false},[\"text-align:center\"]],[false,{\".qualities .hand-call .border-call\":false},[\"display:inline-block\",\"text-align:left\"]],[false,{\".qualities .hand-call .arrow\":false},[\"margin-left:20px\",\"display:inline-block\",\"text-align:left\"]],[false,{\".qualities .circles-menu\":false},[\"margin-top:0\",\"margin-bottom:50px\"]],[false,{\".qualities .circles-menu .text-circle:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".qualities .ctext\":false},[\"text-align:center\",\"font-size:13px\",\"font-weight:500\",\"margin-top:30px\",\"padding-top:30px\",\"position:relative\"]],[false,{\".qualities .ctext:after\":false},[\"width:70px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"margin-left:50%\",\"left:-35px\",\"position:absolute\",\"content:\\\"\\\"\"]],[false,{\".qualities .ctext.text1:after\":false},[\"background-color:#9ef34b\"]],[false,{\".qualities .ctext.text2:after\":false},[\"background-color:#d1d1d1\"]],[false,{\".qualities .ctext.text3:after\":false},[\"background-color:#13b5d6\"]],[false,{\".gallery-logos .item\":false},[\"display:table\",\"width:100%\",\"height:100px\"]],[false,{\".gallery-logos .item .wrap-item\":false},[\"width:100%\",\"height:100%\",\"display:table-row\"]],[false,{\".gallery-logos .item .wrap-item .image\":false},[\"width:100%\",\"height:100%\",\"display:table-cell\",\"vertical-align:middle\",\"text-align:center\"]],[false,{\".gallery-logos .item .wrap-item .image amp-img\":false,\".gallery-logos .item .wrap-item .image amp-anim\":false},[\"max-width:80%\",\"width:auto\",\"max-height:50px\",\"height:auto\",\"display:inline-block\"]],[false,\"@media (min-width:1400px){\"],[false,{\".gallery-logos .item .wrap-item .image amp-img\":false,\".gallery-logos .item .wrap-item .image amp-anim\":false},[\"max-height:70px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".contact\":false,\".text-contact\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".top-contact\":false},[\"line-height:90px\",\"position:relative\",\"width:100%\",\"margin-top:100px\",\"background:#75e168\",\"background:-moz-linear-gradient(top,#75e168 0,#38cea3 100%)\",\"background:-webkit-linear-gradient(top,#75e168 0,#38cea3 100%)\",\"background:linear-gradient(to bottom,#75e168 0,#38cea3 100%)\",\"padding:70px 0\"]],[false,{\".top-contact h1\":false},[\"margin:0\",\"font-size:50px\"]],[false,{\".top-contact h2\":false},[\"margin:0\",\"font-size:40px\",\"line-height:90px\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-contact h2\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".top-contact amp-google-document-embed\":false},[\"width:100%\",\"margin-top:20px\"]],[false,{\".subitems\":false},[\"margin:30px 0\"]],[false,{\".subitems .item\":false},[\"position:relative\",\"display:inline-block\",\"color:#152649\",\"font-family:Rajdhani\",\"font-weight:700\",\"padding:0 10px 0 0\",\"margin-right:10px\",\"margin-bottom:5px\"]],[false,{\".subitems .item:after\":false},[\"width:1px\",\"height:100%\",\"position:absolute\",\"content:\\\"\\\"\",\"right:0\",\"top:0\",\"background:#2b9ac7\",\"background:-moz-linear-gradient(top,#2b9ac7 0,#b9f05a 100%)\",\"background:-webkit-linear-gradient(top,#2b9ac7 0,#b9f05a 100%)\",\"background:linear-gradient(to bottom,#2b9ac7 0,#b9f05a 100%)\"]],[false,{\".subitems .item:first-child\":false},[\"padding-left:0\"]],[false,{\".subitems .item:last-child\":false},[\"padding-right:0\"]],[false,{\".subitems .item:last-child:after\":false},[\"display:none\"]],[false,{\".circles-menu\":false},[\"margin-top:-100px\",\"position:relative\",\"text-align:center\"]],[false,\"@media (min-width:1400px){\"],[false,{\".circles-menu\":false},[\"margin-top:-125px\"]],[false,\"}\"],[false,{\".circles-menu .circle\":false},[\"margin:0 auto 30px\",\"display:table\",\"width:200px\",\"height:200px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"border-radius:100px\",\"-moz-border-radius:100px\",\"-webkit-border-radius:100px\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (min-width:1400px){\"],[false,{\".circles-menu .circle\":false},[\"width:250px\",\"height:250px\",\"border-radius:125px\",\"-moz-border-radius:125px\",\"-webkit-border-radius:125px\"]],[false,\"}\"],[false,{\".circles-menu .circle .wrap\":false},[\"display:table-row\",\"width:100%\",\"height:100%\"]],[false,{\".circles-menu .circle .wrap .text-circle\":false},[\"display:table-cell\",\"width:100%\",\"height:100%\",\"vertical-align:middle\",\"font-family:Rajdhani\",\"font-weight:700\",\"color:#002048\",\"font-size:25px\",\"line-height:25px\"]],[false,{\".circles-menu .circle.circle1\":false},[\"background-color:#00a2c3\",\"border:3px solid #00a2c3\"]],[false,{\".circles-menu .circle.circle1:hover\":false},[\"background-color:#fff\"]],[false,{\".circles-menu .circle.circle2\":false},[\"background-color:#d0d0d0\",\"border:3px solid #d0d0d0\"]],[false,{\".circles-menu .circle.circle2:hover\":false},[\"background-color:#fff\"]],[false,{\".circles-menu .circle.circle3\":false},[\"background-color:#91e63e\",\"border:3px solid #91e63e\"]],[false,{\".circles-menu .circle.circle3:hover\":false},[\"background-color:#fff\"]],[false,{\".map\":false},[\"margin:0\",\"padding:0\",\"position:relative\",\"width:100%\",\"background-color:#e8e8e8\",\"color:grey\"]],[false,{\".map .info\":false},[\"width:620px\",\"position:absolute\",\"margin-left:50%\",\"left:-310px\",\"top:-60px\",\"background-color:#fff\",\"padding:20px\",\"color:#152649\",\"font-size:13px\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info\":false},[\"width:90%\",\"margin:0 5%\",\"left:0\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".map .info\":false},[\"width:620px\",\"left:-310px\",\"font-size:15px\"]],[false,\"}\"],[false,{\".map .info .local\":false},[\"width:40%\",\"float:left\",\"padding-right:20px\"]],[false,{\".map .info .local .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info .local .ltext\":false},[\"float:left\",\"text-align:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info .local\":false},[\"width:100%\",\"padding:0\"]],[false,\"}\"],[false,{\".map .info .mail\":false},[\"width:60%\",\"float:left\",\"padding-left:20px\",\"border-left:1px solid #ccc\"]],[false,{\".map .info .mail .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info .mail .ltext\":false},[\"float:left\",\"line-height:40px\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info .mail\":false},[\"width:100%\",\"padding:0\",\"border:0\",\"margin-top:20px\"]],[false,\"}\"],[false,{\".map .info2\":false},[\"width:500px\",\"position:absolute\",\"margin-left:50%\",\"left:-250px\",\"top:40px\",\"background-color:#fff\",\"padding:20px\",\"color:#152649\",\"font-size:13px\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info2\":false},[\"width:90%\",\"margin:0 5%\",\"left:0\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".map .info2\":false},[\"width:600px\",\"left:-300px\",\"font-size:15px\"]],[false,\"}\"],[false,{\".map .info2 .local\":false},[\"width:40%\",\"float:left\",\"padding-right:20px\"]],[false,{\".map .info2 .local .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info2 .local .ltext\":false},[\"float:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info2 .local\":false},[\"width:100%\",\"padding:0\"]],[false,\"}\"],[false,{\".map .info2 .mail\":false},[\"width:60%\",\"float:left\",\"padding-left:20px\",\"border-left:1px solid #ccc\"]],[false,{\".map .info2 .mail .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info2 .mail .ltext\":false},[\"float:left\",\"line-height:40px\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info2 .mail\":false},[\"width:100%\",\"padding:0\",\"border:0\",\"margin-top:20px\"]],[false,\"}\"],[false,{\".map h2\":false},[\"margin-top:70px\"]],[false,{\".panel\":false},[\"position:relative\",\"text-align:center\",\"margin-top:-13%\"]],[false,{\".panel .panel-img\":false},[\"position:absolute\"]],[false,{\".panel .panel-img amp-img\":false,\".panel .panel-img amp-anim\":false},[\"width:40px\"]],[false,{\".panel #panel1\":false},[\"top:100px\",\"left:0\"]],[false,{\".panel #panel2\":false},[\"top:80px\",\"left:40px\"]],[false,{\".panel #panel3\":false},[\"top:100px\",\"left:80px\"]],[false,{\".panel #panel4\":false},[\"top:0\",\"left:120px\"]],[false,{\".panel #panel5\":false},[\"top:70px\",\"left:160px\"]],[false,{\".panel #panel6\":false},[\"top:90px\",\"left:200px\"]],[false,{\".panel #panel7\":false},[\"top:70px\",\"left:240px\"]],[false,{\".panel #panel8\":false},[\"top:50px\",\"left:280px\"]],[false,{\".panel #panel9\":false},[\"top:70px\",\"left:320px\"]],[false,{\".panel #panel10\":false},[\"top:130px\",\"left:360px\"]],[false,{\".hidden\":false},[\"opacity:0\"]],[false,{\".visible\":false},[\"opacity:1\"]],[false,\"@media (max-width:992px){\"],[false,{\".text-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".desktop\":false},[\"display:block\"]],[false,\"@media (max-width:992px){\"],[false,{\".desktop\":false},[\"display:none\"]],[false,\"}\"],[false,{\".mobile\":false},[\"display:none\"]],[false,\"@media (max-width:992px){\"],[false,{\".mobile\":false},[\"display:block\"]],[false,\"}\"],[false,{\".mbottom\":false},[\"margin-bottom:-50px\"]],[false,\"@media (max-width:1400px){\"],[false,{\".container-fluid\":false},[\"max-width:1140px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".container-fluid\":false},[\"width:90%\"]],[false,\"}\"],[false,{\".bg-middle\":false},[\"background-position:left center\",\"background-size:auto 95%\",\"background-repeat:no-repeat\"]],[false,{\".bg-bottom\":false},[\"background-position:bottom center\",\"background-size:auto 95%\",\"background-repeat:no-repeat\"]],[false,\"@media (max-width:992px){\"],[false,{\".item-carousel-1\":false,\".item-carousel-2\":false},[\"text-align:center\"]],[false,{\".item-carousel-1:not(#_#_#_#_#_#_#_)\":false,\".item-carousel-2:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\",\"background-image:none\"]],[false,\"}\"],[false,{\".item-carousel-3\":false},[\"text-align:center\"]],[false,{\".add-top\":false},[\"padding-top:150px\"]],[false,{\".add-top-2\":false},[\"margin-top:100px\"]],[false,{\".blog-color\":false},[\"background-color:#f8f8f8\",\"line-height:50px\",\"position:relative\",\"width:100%\",\"margin-top:100px\"]],[false,{\".blog-color h1\":false},[\"margin:0\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".blog-color .info-text\":false},[\"font-family:Rajdhani\",\"font-weight:300\",\"line-height:20px\",\"font-size:16px\",\"color:#8c8c8c\"]],[false,{\".blog-title-main\":false},[\"padding:90px 50px\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:left center\"]],[false,\"@media (max-width:992px){\"],[false,{\".blog-title-main\":false},[\"padding:30px\"]],[false,\"}\"],[false,{\".blog-main\":false},[\"position:relative\",\"background-color:#fff\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\"]],[false,\"@media (max-width:992px){\"],[false,{\".blog-main\":false},[\"display:none\"]],[false,\"}\"],[false,{\".blog-main .blog-mask\":false},[\"padding:0 50px\",\"position:absolute\",\"width:100%\",\"height:100%\",\"left:0\",\"top:0\",\"background:-moz-linear-gradient(left,rgba(50,143,194,.95) 0,rgba(204,204,204,.95) 100%)\",\"background:-webkit-linear-gradient(left,rgba(50,143,194,.95) 0,rgba(204,204,204,.95) 100%)\",\"background:linear-gradient(to right,rgba(50,143,194,.95) 0,rgba(204,204,204,.95) 100%)\",\"color:#152649\",\"display:flex\",\"align-content:center\",\"align-content:center\",\"flex-wrap:wrap\",\"flex-direction:column\",\"justify-content:center\"]],[false,{\".blog-main .blog-main-content\":false},[\"width:100%\"]],[false,{\".blog-main .blog-main-content .blog-date\":false},[\"line-height:25px\",\"margin-bottom:0\"]],[false,{\".blog-main .blog-main-content .blog-title\":false},[\"font-size:20px\",\"line-height:25px\",\"font-weight:700\",\"display:block\"]],[false,\"@media (min-width:1400px){\"],[false,{\".blog-main .blog-main-content .blog-title\":false},[\"font-size:25px\",\"line-height:30px\",\"max-width:400px\"]],[false,\"}\"],[false,{\".blog-main .blog-main-content .blog-info\":false},[\"color:#152649\",\"font-size:14px\",\"line-height:25px\",\"margin-bottom:0\"]],[false,\"@media (min-width:1400px){\"],[false,{\".blog-main .blog-main-content .blog-info\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".blog-main .blog-main-content .blog-read\":false},[\"background-color:#9d7c23\",\"color:#fff\",\"font-family:Rajdhani\",\"font-size:14px\",\"font-weight:500\",\"padding:5px 25px\",\"border-radius:2px\",\"-webkit-box-shadow:2px 2px 10px 0 transparent\",\"box-shadow:2px 2px 10px 0 transparent\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (min-width:1400px){\"],[false,{\".blog-main .blog-main-content .blog-read\":false},[\"font-size:17px\"]],[false,\"}\"],[false,{\".blog-main .blog-main-content .blog-read:hover\":false},[\"-webkit-box-shadow:2px 2px 10px 0 rgba(0,0,0,.5)\",\"box-shadow:2px 2px 10px 0 rgba(0,0,0,.5)\"]],[false,{\".blog-main .blog-main-content .blog-tags\":false},[\"line-height:15px\",\"margin-bottom:0\",\"color:#152649\",\"margin-top:10px\"]],[false,{\".blog-main .blog-main-content .blog-tags a\":false},[\"border-color:#346a8f\"]],[false,{\".content-blog\":false},[\"position:relative\",\"width:100%\",\"background-color:#f3f3f3\",\"padding:50px 0\",\"color:grey\",\"font-size:16px\",\"line-height:25px\"]],[false,\"@media (max-width:992px){\"],[false,{\".content-blog\":false},[\"background-color:#fff\"]],[false,\"}\"],[false,{\".content-blog strong\":false},[\"color:#23819d\",\"font-size:23px\"]],[false,{\".content-blog small\":false},[\"font-weight:700\"]],[false,{\".content-blog amp-img\":false,\".content-blog amp-anim\":false},[\"width:100%\",\"max-width:100%\"]],[false,{\".content-blog .capa-blog\":false},[\"width:100%\",\"margin-top:-50px\",\"margin-bottom:30px\"]],[false,{\".pagination\":false},[\"width:100%\",\"text-align:center\",\"display:block\"]],[false,{\".pagination a\":false},[\"border:1px solid #999\",\"color:#999\",\"margin:0 20px\",\"border-radius:5px\",\"padding:10px 15px\",\"font-family:Rajdhani\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".pagination a:hover\":false},[\"color:#152649\",\"border:1px solid #152649\"]],[false,{\".arrow-wrap\":false},[\"justify-content:center\",\"display:flex\",\"align-items:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".arrow-wrap--top\":false},[\"margin-bottom:30px\"]],[false,\"}\"],[false,{\".back-arrow\":false},[\"color:#152649\",\"text-transform:uppercase\",\"font-weight:200\",\"font-family:Rajdhani\",\"font-size:14px\",\"margin-top:20px\"]],[false,{\".blog-tags\":false},[\"font-size:12px\",\"color:#23819d\"]],[false,\"@media (min-width:1400px){\"],[false,{\".blog-tags\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".blog-tags a\":false},[\"border-right:1px solid #ccc\",\"margin-left:10px\",\"padding-right:10px\"]],[false,{\".blog-tags a:last-child\":false},[\"border:0\",\"padding:0\"]],[false,{\".blog-tags a:first-child\":false},[\"margin:0\"]],[false,{\".top-blog-single\":false},[\"position:relative\",\"width:100%\",\"margin-top:100px\",\"padding:70px 0\",\"background-color:#fff\"]],[false,{\".top-blog-single a:hover\":false},[\"text-decoration:underline\"]],[false,{\".top-blog-single h1\":false},[\"margin:0 0 10px\",\"font-size:45px\",\"line-height:45px\",\"font-family:Raleway\"]],[false,{\".top-blog-single .blog-title\":false},[\"line-height:55px\",\"color:#152649\"]],[false,{\".top-blog-single .wrap-blog-info\":false},[\"margin-top:-45px\",\"margin-bottom:30px\"]],[false,{\".top-blog-single .back-arrow\":false},[\"font-size:35px\",\"margin:0\"]],[false,{\".top-blog-single .back-arrow a:hover\":false},[\"text-decoration:none\"]],[false,{\".top-blog-single .blog-tags\":false},[\"margin-bottom:-30px\",\"margin-top:30px\"]],[false,{\".blog-info\":false},[\"font-family:Rajdhani\",\"font-size:17px\",\"line-height:25px\",\"color:#23819d\",\"font-weight:500\"]],[false,{\".blog-date\":false},[\"color:#152649\",\"font-family:Rajdhani\",\"font-size:14px\",\"margin-bottom:10px\",\"text-transform:uppercase\",\"font-weight:500\"]],[false,\"@media (min-width:1400px){\"],[false,{\".blog-date\":false},[\"font-size:20px\"]],[false,\"}\"],[false,{\".blog-date--text\":false},[\"color:#23819d\",\"margin-top:20px\"]],[false,{\".box-post-intern\":false},[\"padding:20px\",\"background-color:#f0f0f0\",\"border:1px solid #c2c2c2\",\"border-radius:2px\",\"height:100%\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width:992px){\"],[false,{\".box-post-intern\":false},[\"margin-bottom:30px\",\"height:auto\"]],[false,\"}\"],[false,{\".box-post-intern:hover\":false},[\"background-color:#fff\"]],[false,{\".box-post-intern .blog-date\":false},[\"color:#23819d\",\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"margin-bottom:10px\",\"text-transform:uppercase\",\"font-weight:500\"]],[false,{\".box-post-intern .blog-title\":false},[\"font-size:20px\",\"line-height:25px\",\"color:#23819d\",\"font-weight:700\"]],[false,{\".box-post-intern .blog-info\":false},[\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"color:#23819d\",\"font-weight:500\",\"margin-top:15px\"]],[false,{\".box-post-intern .blog-tags\":false},[\"margin-bottom:0\"]],[false,{\".box-post\":false},[\"height:calc(100% - 30px)\",\"overflow:hidden\",\"position:relative\",\"padding:30px\",\"margin-bottom:30px\",\"background-color:#f0f0f0\",\"border:1px solid #c2c2c2\",\"border-radius:2px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width:992px){\"],[false,{\".box-post\":false},[\"height:auto\"]],[false,\"}\"],[false,{\".box-post:hover\":false},[\"background-color:#fff\"]],[false,{\".box-post .capa-post\":false},[\"width:calc(100% + 60px)\",\"height:200px\",\"margin-top:-30px\",\"margin-left:-30px\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:top center\",\"margin-bottom:30px\"]],[false,{\".box-post .blog-date\":false},[\"color:#23819d\",\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"margin-bottom:30px\",\"text-transform:uppercase\",\"font-weight:500\"]],[false,\"@media (min-width:1400px){\"],[false,{\".box-post .blog-date\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".box-post .blog-title\":false},[\"font-size:20px\",\"line-height:25px\",\"color:#23819d\",\"font-weight:700\"]],[false,\"@media (min-width:1400px){\"],[false,{\".box-post .blog-title\":false},[\"font-size:25px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".box-post .blog-info\":false},[\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"color:#23819d\",\"font-weight:500\",\"margin-top:10px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".box-post .blog-info\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".box-post .blog-excerpt\":false},[\"font-size:12px\",\"line-height:18px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".box-post .blog-excerpt\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".box-post .blog-read\":false},[\"font-family:Rajdhani\",\"color:#9d7c23\",\"font-size:13px\",\"line-height:15px\",\"font-weight:500\"]],[false,\"@media (min-width:1400px){\"],[false,{\".box-post .blog-read\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".box-post .blog-tags\":false},[\"margin-top:20px\",\"margin-bottom:0\"]],[false,{\".more-section\":false},[\"margin-top:30px\"]],[false,{\"li.categories\":false},[\"font-family:Rajdhani\",\"text-transform:uppercase\",\"list-style:none\",\"margin-bottom:70px\",\"font-weight:500\",\"color:#23819d\",\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"li.categories\":false},[\"font-size:25px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\"li.categories\":false},[\"margin-top:50px\",\"margin-bottom:0\"]],[false,\"}\"],[false,{\"li.categories ul\":false},[\"list-style:none\",\"padding:0\",\"margin-top:30px\"]],[false,{\"li.categories ul li\":false},[\"margin-bottom:15px\",\"text-transform:none\",\"font-size:13px\",\"font-family:Raleway\",\"font-weight:300\"]],[false,\"@media (min-width:1400px){\"],[false,{\"li.categories ul li\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".icon-main-blog\":false},[\"width:80px\",\"margin-top:-20px\",\"margin-left:-15px\"]],[false,{\".icon-main-blog amp-img\":false,\".icon-main-blog amp-anim\":false},[\"width:100%\"]],[false,{\"#paginator\":false},[\"width:100%\",\"padding:0 15px\",\"margin:25px 0\",\"text-align:center\"]],[false,{\"#paginator li\":false},[\"list-style:none\",\"display:inline-block\",\"width:30px\",\"line-height:30px\",\"border:1px solid #ccc\",\"border-radius:5px\",\"color:#999\",\"margin:5px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"#paginator li.current\":false,\"#paginator li:hover\":false},[\"color:#152649\",\"border:1px solid #152649\",\"font-weight:700\"]],[false,{\"#paginator li a\":false},[\"display:block\"]],[false,{\".footer-media a\":false},[\"color:#999\",\"margin-left:20px\"]],[false,{\".avatar-20:not(#_#_#_#_#_#_#_)\":false},[\"width:20px\"]],[false,{\".mobile-address\":false},[\"padding-top:30px\"]],[false,\"@media (max-width:1000px) and (orientation:landscape){\"],[false,{\".about-intern\":false},[\"padding-bottom:30px\"]],[false,{\".circles-menu\":false},[\"margin-top:30px\"]],[false,\"}\"],[false,\"@media (max-width:1000px){\"],[false,{\".box-post .capa-post\":false},[\"height:170px\"]],[false,\"}\"],[false,{\".box-post\":false},[\"padding:0\",\"margin-bottom:0\"]],[false,{\".box-post:not(#_#_#_#_#_#_#_)\":false},[\"height:100%\"]],[false,{\".box-post-text\":false},[\"padding:30px\"]],[false,{\".div-post\":false},[\"margin-bottom:30px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":9996,\"final_size\":9501,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/shared.css?v=882585420\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"c90d28f47007b3c5d58885a57c053d63\",\"parse_time\":0.18137311935424805,\"shake_time\":0.018656015396118164,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".new-header__nav--list\":true},[\"margin:0\",\"padding:0\",\"display:contents\"]],[true,{\".new-header__nav--list li\":true},[\"list-style:none\",\"color:#152649\",\"font-size:15px\",\"font-weight:900\",\"line-height:30px\",\"text-transform:uppercase\",\"padding:0 .5rem\"]],[true,{\".new-header__nav--list li:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".new-header__nav--list li .nav-link:not(#_#_#_#_#_#_#_#_)\":true},[\"padding-right:10px\",\"padding-left:10px\",\"white-space:nowrap\"]],[true,{\".new-header__nav--list li .nav-link:hover:not(#_#_#_#_#_#_#_#_)\":true},[\"color:#24c1ff\"]],[true,\"@media (max-width:992px){\"],[true,{\".new-header__nav--list li .nav-link:not(#_#_#_#_#_#_#_#_)\":true},[\"padding-right:5px\",\"padding-left:5px\"]],[true,\"}\"],[true,{\".new-header__button\":true},[\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"float:right\",\"width:15%\"]],[true,{\".new-header__button:not(#_#_#_#_#_#_#_)\":true},[\"color:#152649\"]],[true,{\".new-header__button a\":true},[\"background:0 0\",\"border:none\",\"color:#152649\",\"font-family:raleway,sans-serif\",\"font-weight:900\",\"font-size:18px\"]],[true,{\".new-header__button a:hover\":true},[\"text-decoration:none\"]],[true,{\".dropdown-menu\":true},[\"background:#f7f7f7\",\"top:97px\",\"left:50%\",\"transform:translateX(-50%)\",\"width:70%\",\"border-radius:0\",\"border-top:none\",\"cursor:auto\"]],[true,{\".dropdown-menu:not(#_#_#_#_#_#_#_)\":true},[\"position:fixed\"]],[true,{\".dropdown-menu>.container\":true},[\"display:flex\",\"align-items:center\",\"justify-content:center\",\"min-height:270px\",\"padding:2.5rem 1.5rem 3rem\"]],[true,{\".nav-link\":true},[\"display:flex\",\"flex-direction:column\",\"align-items:center\"]],[true,{\".nav-link:not(#_#_#_#_#_#_#_)\":true},[\"color:#152649\"]],[true,{\".dropdown-toggle::after:not(#_#_#_#_#_#_#_#_)\":true},[\"color:#24c1ff\",\"border:1px solid #24c1ff\",\"width:10px\"]],[false,{\".show>.dropdown-toggle::after:not(#_#_#_#_#_#_#_#_)\":false},[\"border-top:.3em solid\",\"border-right:.3em solid transparent\",\"border-bottom:0\",\"border-left:.3em solid transparent\",\"width:0\"]],[true,{\".new-header__nav--title h5\":true},[\"font-size:2.3rem\",\"text-transform:initial\",\"font-family:raleway,sans-serif\",\"font-weight:800\",\"color:#152649\",\"line-height:38px\"]],[true,{\".new-header__nav--title h5:after\":true},[\"content:\\\"-\\\"\",\"border-bottom:0 solid\",\"border-image-slice:1\",\"border-width:5px\",\"display:block\",\"color:transparent\",\"height:25px\",\"width:65px\",\"margin-bottom:2rem\"]],[true,{\".new-header__nav--subtitle p\":true},[\"margin:0\",\"font-size:.8rem\",\"color:#152649\",\"font-weight:400\",\"text-transform:initial\",\"margin-bottom:2rem\",\"line-height:15px\"]],[true,{\".new-header__nav--subtitle p:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".new-header__nav--right-edge\":true},[\"border-right:1px solid #c9c9c9\"]],[true,{\".new-header__nav--menu--img\":true},[\"padding:0\",\"text-align:center\"]],[true,{\".new-header__nav--menu--img amp-img\":true,\".new-header__nav--menu--img amp-anim\":false},[\"max-width:100%\"]],[true,{\".new-header__nav--menu--title\":true},[\"color:#152649\",\"text-transform:capitalize\",\"font-weight:800\",\"font-family:raleway,sans-serif\",\"font-size:1.1rem\",\"margin-bottom:.3rem\"]],[true,{\".new-header__nav--menu--text\":true},[\"color:#6f7070\",\"font-weight:400\",\"text-transform:initial\",\"font-size:.8rem\",\"margin:0\",\"line-height:15px\"]],[true,{\".new-header__nav--menu--text:not(#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".new-header__nav--menu--link:hover>.new-header__nav--menu--title\":true},[\"color:#24c1ff\"]],[true,{\".new-header__nav--menu--link:hover>.new-header__nav--menu--text\":true},[\"color:#24c1ff\"]],[true,{\".new-header__nav--menu--link:hover\":true},[\"text-decoration:none\"]],[true,{\".new-header__nav--menu--box:not(#_#_#_#_#_#_#_)\":true},[\"margin-bottom:1.5rem\"]],[true,{\".new-header__nav--menu--button\":true},[\"width:65%\",\"border-radius:35px\",\"border:1px solid #9df168\",\"position:relative\",\"display:flex\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"text-align:center\",\"font-size:1rem\",\"transition:font .3s\",\"height:45px\",\"align-items:center\",\"justify-content:center\"]],[true,{\".new-header__nav--menu--button:hover\":true},[\"text-decoration:none\",\"font-size:1.2rem\"]],[true,{\".new-header__nav--menu--button--link\":true},[\"color:#152649\",\"text-transform:initial\",\"font-family:raleway,sans-serif\",\"font-weight:900\"]],[true,{\".new-header__nav--title-color\":true},[\"color:#24c1ff\"]],[true,{\".new-header__nav--menu--whatsIs\":true},[\"font-weight:400\",\"color:#24c1ff\",\"text-transform:initial\",\"font-size:.9rem\"]],[true,{\".new-header__nav--menu--whatsIs:not(#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".bg-light\":true},[\"width:85%\"]],[true,{\".bg-light:not(#_#_#_#_#_#_#_)\":true},[\"background-color:transparent\"]],[true,{\".new-header__nav--subtitle-icon\":true},[\"padding:0\",\"text-align:right\"]],[true,{\".new-header__nav--subtitle-icon:not(#_#_#_#_#_#_#_)\":true},[\"width:90%\"]],[true,{\".new-header__logo\":true},[\"width:20%\"]],[true,{\".new-header__menu-item\":true},[\"justify-content:flex-end\"]],[true,{\".new-header\":true},[\"top:0\",\"width:100%\",\"position:fixed\",\"background-color:#f7f7f7\",\"z-index:3\",\"transition:all .3s ease-in-out\",\"display:flex\",\"margin:0\",\"padding:0\",\"justify-content:center\"]],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:100px\"]],[true,{\".navbar-toggler:not(#_#_#_#_#_#_#_)\":true},[\"padding:0\",\"border:none\",\"outline:0\"]],[false,{\".devops-styles:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:100px\"]],[true,\"@media (min-width:300px) and (max-width:768px){\"],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:70px\"]],[false,{\".devops-styles:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:70px\"]],[true,{\".new-header__menu-item\":true},[\"background:#f7f7f7\",\"margin:0\",\"padding:0\",\"width:100%\",\"position:absolute\",\"top:70px\",\"left:0\",\"z-index:9\",\"overflow:scroll\",\"height:650px\",\"padding-bottom:2rem\"]],[true,{\".new-header__logo\":true},[\"width:50%\"]],[true,{\".new-header__button:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".new-header__nav--list\":true},[\"display:flex\",\"align-items:flex-start\"]],[true,{\".new-header__nav--list li\":true},[\"padding-left:1rem\"]],[false,{\".new-header__nav--list>.show\":false},[\"width:100%\",\"border:1px #ccc solid\",\"padding-bottom:1rem\"]],[true,{\".dropdown-toggle::after\":true},[\"display:none\"]],[false,{\".show>.dropdown-toggle:not(#_#_#_#_#_#_#_)\":false},[\"color:#24c1ff\"]],[false,{\".show>.dropdown-toggle::before:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:.3em solid\",\"border-top:0\"]],[true,{\".new-header__nav--list li .nav-link\":true},[\"display:block\"]],[true,{\".dropdown-toggle::before\":true},[\"display:inline-block\",\"margin-right:.5rem\",\"vertical-align:.255em\",\"content:\\\"\\\"\"]],[true,{\".dropdown-toggle::before:not(#_#_#_#_#_#_#_#_)\":true},[\"border-top:.3em solid\",\"border-right:.3em solid transparent\",\"border-bottom:0\",\"border-left:.3em solid transparent\",\"color:#24c1ff\"]],[true,{\".dropdown-menu\":true},[\"width:100%\",\"top:0\",\"left:0\",\"transform:none\",\"padding:0\",\"border:none\"]],[true,{\".dropdown-menu:not(#_#_#_#_#_#_#_)\":true},[\"position:relative\"]],[true,{\".dropdown-menu>.container\":true},[\"padding:0\"]],[true,{\".dropdown-menu>.container>.row\":true},[\"width:100%\"]],[true,{\".new-header__nav--title h5\":true},[\"font-size:1.5rem\"]],[true,{\".new-header__nav--title h5:after\":true},[\"display:none\"]],[true,{\".new-header__nav--menu--img\":true},[\"display:none\"]],[true,{\".align-items-center>.col-md-8\":true},[\"padding:0\"]],[true,{\".bg-light\":true},[\"width:100%\"]],[true,{\".new-header__nav--menu--title\":true},[\"display:flex\",\"align-items:center\"]],[true,{\".new-header__nav--menu--title::after\":true},[\"display:inline-block\",\"margin-left:.5rem\",\"vertical-align:.255em\",\"content:\\\"\\\"\"]],[true,{\".new-header__nav--menu--title::after:not(#_#_#_#_#_#_#_#_)\":true},[\"border-top:.3em solid transparent\",\"border-right:0\",\"border-bottom:.3em solid transparent\",\"border-left:.3em solid\",\"color:#24c1ff\"]],[true,{\".new-header__nav--right-edge\":true},[\"border-right:none\"]],[true,{\".new-header__nav--menu--button\":true},[\"margin-bottom:2rem\",\"display:flex\",\"width:50%\"]],[true,\"}\"],[true,\"@media (min-width:600px) and (max-width:768px){\"],[true,{\".new-header__button:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".new-header__logo amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".new-header__logo amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:60%\"]],[true,\"}\"],[true,\"@media (min-width:768px) and (max-width:1024px){\"],[true,{\".new-header__nav--list li\":true},[\"font-size:10px\"]],[true,{\".new-header__button a\":true},[\"font-size:13px\"]],[true,\"}\"],[true,{\".footer-2022\":true},[\"background-color:#152649\",\"color:#c1c1c1\",\"padding:5rem 0 5rem\",\"font-weight:400\"]],[true,{\".footer-2022:not(#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".footer-2022__logo amp-img\":true,\".footer-2022__logo amp-anim\":false},[\"width:100%\"]],[true,{\".footer-2022__text\":true},[\"font-size:.9rem\",\"text-align:end\",\"line-height:15px\"]],[true,{\".footer-2022__certificates\":true},[\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[true,{\".footer-2022__certificates-box-union\":true},[\"display:flex\"]],[true,{\".footer-2022__certificates--kubernetes a amp-img\":true,\".footer-2022__certificates--kubernetes a amp-anim\":false},[\"width:100%\",\"padding:0 1rem\"]],[true,{\".footer-2022__certificates--cloud-native a amp-img\":true,\".footer-2022__certificates--cloud-native a amp-anim\":false},[\"width:100%\",\"padding:0 1rem\"]],[true,{\".footer-2022__certificates--linux-foundation a amp-img\":true,\".footer-2022__certificates--linux-foundation a amp-anim\":false},[\"width:100%\",\"padding:0 1rem\"]],[true,{\".footer-2022__social-media\":true},[\"display:flex\",\"align-items:center\",\"justify-content:end\"]],[true,{\".footer-2022__social-media a\":true},[\"margin:0 .5rem\",\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[true,{\".footer-2022__social-media a amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".footer-2022__social-media a amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[true,{\".footer-2022__menu\":true},[\"margin-top:6rem\",\"margin-bottom:5rem\"]],[true,{\".footer-2022__menu--box\":true},[\"display:flex\",\"flex-direction:row\",\"width:100%\",\"padding:0\"]],[true,{\".footer-2022__menu--list\":true},[\"flex-grow:1\"]],[true,{\".footer-2022__menu--list h5\":true},[\"color:#59657e\",\"margin-bottom:1rem\",\"font-size:1rem\"]],[true,{\".footer-2022__menu--list h5:after\":true},[\"content:\\\"-\\\"\",\"border-bottom:0 solid\",\"border-image-slice:1\",\"border-width:4px\",\"display:block\",\"color:transparent\",\"height:20px\",\"width:65px\",\"margin-bottom:1.5rem\"]],[true,{\".footer-2022__menu--list ul\":true},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[true,{\".footer-2022__menu--list ul li\":true},[\"margin-bottom:.5rem\"]],[true,{\".footer-2022__menu--list ul li strong\":true},[\"color:#24c1ff\",\"font-weight:900\",\"font-family:raleway,sans-serif\",\"padding-bottom:.5rem\",\"display:block\"]],[true,{\".footer-2022__menu--list ul li a\":true},[\"color:#24c1ff\",\"font-weight:500\",\"font-family:raleway,sans-serif\",\"font-size:.9rem\"]],[true,{\".footer-2022__menu--list ul li a:hover\":true},[\"text-decoration:none\",\"-webkit-background-clip:text\",\"-webkit-text-fill-color:transparent\"]],[true,{\".footer-2022__box-end\":true},[\"font-size:.9rem\"]],[true,{\".footer-2022__box-end--privacy-policy\":true},[\"text-decoration:underline\",\"color:#c9c9c9\",\"padding-right:1rem\",\"border-right:1px solid #c9c9c9\"]],[true,{\".footer-2022__box-end--privacy-policy:hover\":true},[\"color:#24c1ff\"]],[true,{\".footer-2022__box-end--terms-of-use\":true},[\"text-decoration:underline\",\"color:#c9c9c9\",\"margin-left:1rem\",\"margin-right:3rem\"]],[true,{\".footer-2022__box-end--terms-of-use:hover\":true},[\"color:#24c1ff\"]],[true,{\".footer-2022__copyright\":true},[\"font-size:.9rem\",\"color:#c9c9c9\"]],[true,\"@media (min-width:300px) and (max-width:768px){\"],[true,{\".footer-2022__logo amp-img\":true,\".footer-2022__logo amp-anim\":false},[\"margin-bottom:3rem\",\"padding-top:5rem\",\"border-top:2px solid #486091\"]],[true,{\".footer-2022__text\":true},[\"text-align:left\",\"margin-bottom:2rem\"]],[true,{\".footer-2022__certificates\":true},[\"margin-bottom:4rem\"]],[true,{\".footer-2022__social-media\":true},[\"justify-content:flex-start\"]],[true,{\".footer-2022__certificates-box-union\":true},[\"display:flex\",\"flex-direction:column-reverse\"]],[true,{\".footer-2022__certificates--cloud-native a amp-img\":true,\".footer-2022__certificates--cloud-native a amp-anim\":false},[\"margin-bottom:1rem\"]],[true,{\".footer-2022__certificates--kubernetes a amp-img\":true,\".footer-2022__certificates--kubernetes a amp-anim\":false},[\"padding:0 .2rem\"]],[true,{\".footer-2022__certificates--linux-foundation a amp-img\":true,\".footer-2022__certificates--linux-foundation a amp-anim\":false},[\"width:80%\",\"margin-bottom:1rem\"]],[true,{\".footer-2022__menu\":true},[\"margin-top:5rem\",\"margin-bottom:3rem\",\"margin-left:15px\",\"margin-right:15px\"]],[true,{\".footer-2022__menu--box\":true},[\"flex-direction:column\"]],[true,{\".footer-2022__menu--list ul\":true},[\"margin-bottom:3rem\"]],[true,{\".footer-2022__mobile-items\":true},[\"width:100%\",\"padding-right:15px\",\"padding-left:15px\",\"margin-right:auto\",\"margin-left:auto\"]],[true,{\".footer-2022__box-end\":true},[\"margin-bottom:.5rem\"]],[true,\"}\"],[true,\"@media (min-width:600px) and (max-width:768px){\"],[true,{\".footer-2022__logo amp-img\":true,\".footer-2022__logo amp-anim\":false},[\"margin-bottom:0\",\"padding-top:0\",\"border-top:none\"]],[true,{\".footer-2022__certificates-box-union\":true},[\"flex-direction:row\"]],[true,{\".footer-2022__text\":true},[\"margin-bottom:0\"]],[true,{\".footer-2022__certificates\":true},[\"margin-bottom:0\"]],[true,{\".footer-2022__social-media\":true},[\"margin-top:2rem\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1312,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/style.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"7408b05c90ec93467ae3ffd934b45823\",\"parse_time\":0.006227016448974609,\"shake_time\":2.6941299438476562e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".categories\":false},[\"list-style-type:none\",\"padding:20px\"]],[false,{\".grecaptcha-badge\":false},[\"display:none\"]],[false,{\"figcaption\":false},[\"font-size:12px\",\"text-align:center\"]],[false,{\".content-blog h1\":false},[\"font-size:45px\",\"line-height:45px\",\"margin-top:20px\",\"margin-bottom:30px\"]],[false,{\".content-blog strong\":false},[\"font-size:inherit\"]],[false,{\".content-blog h2\":false},[\"font-size:35px\",\"line-height:35px\",\"margin-top:20px\",\"margin-bottom:20px\",\"color:#23819d\"]],[false,{\".content-blog h3\":false},[\"font-size:30px\",\"line-height:30px\",\"margin-top:20px\",\"margin-bottom:20px\",\"color:inherit\",\"color:#000\"]],[false,{\".content-blog h4\":false},[\"position:relative\",\"font-family:\\\"Rajdhani\\\"\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"margin-top:10px\",\"margin-bottom:10px\"]],[false,{\".content-blog h5\":false},[\"position:relative\",\"font-family:\\\"Rajdhani\\\"\",\"font-weight:500\",\"line-height:20px\",\"font-size:20px\",\"margin-top:10px\",\"margin-bottom:0px\"]],[false,{\".content-blog h6\":false},[\"position:relative\",\"font-family:\\\"Rajdhani\\\"\",\"font-weight:500\",\"line-height:18px\",\"font-size:18px\",\"margin-top:10px\",\"margin-bottom:0px\"]],[false,{\".content-blog p a\":false},[\"color:#0693e3\",\"text-decoration:underline\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":155232,\"final_size\":10932,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/style-isk.css?v=135394517\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"6f68b4471d049368cf66b5fad21e7dbd\",\"parse_time\":2.7090110778808594,\"shake_time\":0.002801179885864258,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"body\":true},[\"background-color:#fff\",\"font-family:Raleway,sans-serif\",\"font-weight:400\",\"font-size:14px\",\"line-height:20px\",\"color:#152649\",\"-webkit-font-smoothing:subpixel-antialiased\",\"overflow-x:hidden\"]],[false,{\"sup\":false},[\"top:-.8em\",\"font-size:7px\",\"font-weight:800\"]],[false,{\".red\":false},[\"color:#ff555f\"]],[false,{\".grey\":false},[\"color:#7080a7\"]],[false,{\".turquouise\":false},[\"color:#28d9cb\"]],[false,{\".flourscent\":false},[\"color:#24c1ff\"]],[false,{\".g-d-none\":false},[\"display:none\"]],[true,{\".new-header\":true},[\"z-index:4\"]],[true,{\".new-header__nav--subtitle p\":true},[\"padding-left:16px\",\"font-size:14px\",\"letter-spacing:-.35px\"]],[true,{\"header nav .dropdown-menu p.new-header__nav--menu--text\":true},[\"max-width:180px\"]],[false,{\".custom-txt-img-sec.tek-world-scale .container-md\":false},[\"max-width:1406px\"]],[false,{\".custom-txt-img-sec .review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:0px\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner\":false},[\"position:relative\"]],[false,{\".c-application-development:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:30px\"]],[false,{\".c-application-development .custom-txt h2:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:25px\"]],[false,{\".cloud-native-application .custom-txt p span\":false},[\"color:#152649\"]],[false,{\".cloud-native-application .review_sec\":false},[\"margin-top:25px\"]],[false,{\".c-application-development .review_sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".c-application-development .cloud-native-application .custom-img amp-img\":false,\".c-application-development .cloud-native-application .custom-img amp-anim\":false},[\"width:94%\"]],[false,{\".cp-tek-teams-isk .title\":false},[\"margin-bottom:24px\"]],[false,{\".cp-tek-teams-isk .title p\":false},[\"margin:0\",\"color:#28d9cb\",\"font-size:16px\",\"text-transform:uppercase\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:400\"]],[false,{\".cp-tek-teams-isk p\":false},[\"font-size:24px\",\"color:#28d9cb\",\"margin:10px 0px 0px 0px\",\"font-weight:700\",\"line-height:normal\"]],[false,{\".cp-tek-teams-isk amp-img\":false,\".cp-tek-teams-isk amp-anim\":false},[\"min-height:350px\"]],[false,{\".cp-tek-teams-isk .inner-hero-text amp-img\":false,\".cp-tek-teams-isk .inner-hero-text amp-anim\":false},[\"min-height:unset\"]],[false,{\".review_sec\":false},[\"background:#f5f5f5\",\"padding:40px 56px\",\"margin-top:65px\",\"box-shadow:0px 20px 32px 0px rgba(0,0,0,.2)\",\"position:relative\",\"position:relative\",\"border-radius:24px\"]],[false,{\".review_sec amp-img\":false,\".review_sec amp-anim\":false},[\"position:absolute\",\"left:0px\"]],[false,{\".review_sec::after\":false},[\"content:\\\"\\\"\",\"display:block\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8578.png\\\")\",\"background-repeat:no-repeat\",\"width:40px\",\"height:40px\",\"position:absolute\",\"top:-20px\",\"left:56px\",\"background-size:cover\"]],[false,{\".review_sec .swiper-slide p\":false},[\"margin:0\",\"font-size:20px\",\"color:#707070\"]],[false,{\".review_sec .swiper-slide i\":false},[\"margin:20px 0px\",\"display:block\",\"color:#707070\",\"font-size:18px\",\"padding-left:70px\"]],[false,{\".review_sec .swiper-slide span\":false},[\"color:#152649\",\"font-weight:700\"]],[false,{\".review_sec .title p\":false},[\"font-size:20px\",\"font-weight:700\",\"color:#707070\"]],[false,{\".review_sec .title span\":false},[\"color:#28d9cb\"]],[false,{\".rebuild-and-replatform\":false},[\"background-color:#f1f1f1\",\"padding:120px 0px 192px 0px\"]],[false,{\".rebuild-and-replatform .txt label\":false},[\"display:block\",\"margin-bottom:40px\"]],[false,{\".rebuild-and-replatform .txt h2\":false},[\"margin-bottom:40px\"]],[false,{\".rebuild-and-replatform .txt h2 span\":false},[\"color:#28d9cb\"]],[false,{\".rebuild-and-replatform .txt p\":false},[\"color:#707070\",\"margin-bottom:30px\",\"font-size:20px\",\"line-height:1.6em\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content\":false},[\"display:none\",\"flex-wrap:wrap\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text p\":false},[\"font-size:20px\",\"line-height:1.6\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img\":false},[\"width:175px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-img\":false,\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-anim\":false},[\"width:100%\",\"object-fit:cover\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-boxs\":false},[\"margin-bottom:43px\",\"border-bottom:1px solid #dbdbdb\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text\":false},[\"padding-left:45px\",\"width:calc(100% - 175px)\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content.active\":false},[\"display:flex\",\"padding-bottom:37px\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec\":false},[\"margin:0\",\"box-shadow:unset\",\"background-color:transparent\",\"border-radius:unset\",\"padding:0\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec::after\":false},[\"display:none\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row\":false},[\"background-color:#fff\",\"padding:56px 76px\",\"border-radius:28px\",\"border:1px solid #dbdbdb\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul\":false},[\"list-style:none\",\"padding:0\",\"padding:8px\",\"display:flex\",\"background-color:#fff\",\"border-radius:36px\",\"margin:0px 0px 16px 0px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li\":false},[\"width:50%\",\"padding:16px\",\"border-radius:28px\",\"text-align:center\",\"transition:all .4s ease\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li a\":false},[\"font-size:20px\",\"color:#707070\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li.active\":false},[\"background-color:#f1f1f1\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li.active b\":false},[\"color:#152649\"]],[false,{\".custom-full-bg amp-img\":false,\".custom-full-bg amp-anim\":false},[\"width:100%\",\"display:block\"]],[false,{\".keeping-you-competitive\":false},[\"background-color:#152649\",\"padding:120px 0px 135px\"]],[false,{\".keeping-you-competitive label\":false},[\"color:#7080a7\"]],[false,{\".keeping-you-competitive .heading-box h2\":false},[\"color:#fff\",\"margin-bottom:40px\"]],[false,{\".keeping-you-competitive p\":false},[\"color:#fff\",\"font-family:Raleway,sans-serif\",\"font-size:20px\",\"line-height:1.4\"]],[false,{\".keeping-future\":false},[\"margin-top:40px\"]],[false,{\".keeping-future ul\":false},[\"list-style:none\",\"font-size:20px\",\"color:#24c1ff\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".keeping-future ul li\":false},[\"margin-bottom:32px\",\"font-style:italic\",\"border-bottom:#16365c solid 1px\",\"padding-bottom:30px\",\"width:26%\",\"margin-right:45px\",\"font-weight:500\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:11%\"]],[false,{\".keeping-future ul li:nth-child(8)\":false,\".keeping-future ul li:nth-child(4)\":false},[\"margin-right:0px\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(10)\":false,\".keeping-future ul li:nth-child(11)\":false},[\"border:none\"]],[false,{\".custom-qout-box\":false},[\"background-color:#f1f1f1\",\"padding:40px 0px 95px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-top:-11%\",\"margin-bottom:100px\",\"background-color:#fff\"]],[false,{\".custom-qout-box .review_sec i\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.4\",\"font-weight:400\",\"margin-bottom:24px\",\"display:block\"]],[false,{\".depending-on\":false},[\"display:flex\",\"align-items:center\",\"justify-content:space-between\"]],[false,{\".depending-img-box\":false},[\"width:15%\"]],[false,{\".depending-text\":false},[\"width:55%\"]],[false,{\".depending-text p\":false},[\"font-size:24px\",\"font-weight:bold\",\"line-height:1.4\"]],[false,{\".depending-btn\":false},[\"width:25%\"]],[false,{\".depending-btn .btn-blue\":false},[\"border-radius:50px\",\"padding:24px 30px\"]],[false,{\".native-applications-list\":false},[\"padding:120px 0px 100px\"]],[false,{\".native-applications-list .heading-box\":false},[\"margin-bottom:60px\"]],[false,{\".native-applications-list .heading-box h2 span\":false},[\"color:#28d9cb\"]],[false,{\".native-applications-list .swiper-wrapper\":false},[\"display:flex\",\"justify-content:space-between\"]],[false,{\".native-applications-list .swiper-slide\":false},[\"width:calc(50% - 50px)\"]],[false,{\".applications-col ul\":false},[\"list-style:none\"]],[false,{\".applications-col li\":false},[\"font-size:20px\",\"color:#707070\",\"font-weight:bold\",\"border-bottom:#dbdbdb solid 1px\",\"padding-bottom:25px\",\"margin-bottom:25px\",\"position:relative\",\"padding-left:37px\",\"line-height:1.4\"]],[false,{\".applications-col li::after\":false},[\"position:absolute\",\"left:0px\",\"top:0px\",\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8544.png\\\")\",\"background-repeat:no-repeat\",\"width:24px\",\"height:24px\"]],[false,{\".applications-col li:last-child\":false},[\"border:none\"]],[false,{\".native-applications-list-pagination\":false},[\"text-align:center\"]],[false,{\".native-applications-list-pagination .swiper-pagination-bullet\":false},[\"width:4px\",\"height:4px\",\"background-color:#dbdbdb\",\"opacity:1\"]],[false,{\".native-applications-list-pagination .swiper-pagination-bullet-active\":false},[\"width:24px\",\"height:4px\",\"border-radius:50px\",\"background-color:#28d9cb\"]],[false,{\".native-data-driven-top\":false},[\"background-color:#121d3d\",\"padding-bottom:80px\",\"margin-top:-2px\"]],[false,{\".native-data-driven-top .heading-box label\":false,\".native-data-driven-top .heading-box h2\":false},[\"color:#fff\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 190px\",\"background-color:#f1f1f1\"]],[false,{\".data-driven-application .swiper-slide\":false},[\"width:calc(33.333% - 44px)\"]],[false,{\".data-driven-application .swiper-wrapper\":false},[\"display:flex\",\"justify-content:space-between\"]],[false,{\".data-driven-application .swiper-button-next.swiper-button-disabled\":false,\".data-driven-application .swiper-button-prev.swiper-button-disabled\":false},[\"opacity:0\"]],[false,{\".data-driven-application .swiper-button-next:after\":false},[\"content:\\\"\\\"\",\"background-repeat:no-repeat\",\"width:26px\",\"height:16px\",\"display:none\"]],[false,{\".data-driven-application .swiper-button-next:after:not(#_#_#_#_#_#_#_#_)\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/right-arrow.png\\\")\"]],[false,{\".data-driven-application .swiper-button-prev:after\":false},[\"content:\\\"\\\"\",\"background-repeat:no-repeat\",\"width:26px\",\"height:20px\",\"display:none\"]],[false,{\".data-driven-application .swiper-button-prev:after:not(#_#_#_#_#_#_#_#_)\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/left-arrow-1.png\\\")\"]],[false,{\".data-driven-application .slider-nav\":false},[\"width:55%\",\"display:block\",\"height:20px\",\"margin:0px auto\",\"position:relative\"]],[false,{\".data-driven-application .swiper-pagination-bullet\":false},[\"width:4px\",\"border-radius:50px\",\"height:4px\",\"background-color:#24c1ff\",\"opacity:1\"]],[false,{\".data-driven-application .swiper-pagination-bullet-active\":false},[\"width:24px\",\"border-radius:50px\",\"height:4px\",\"background-color:#152649\"]],[false,{\".data-driven-application .applications-col\":false},[\"padding-bottom:15px\"]],[false,{\".data-driven-application .swiper-button-next\":false,\".data-driven-application .swiper-button-prev\":false},[\"bottom:0px\",\"top:auto\",\"position:absolute\"]],[false,{\".data-driven-application .applications-col li\":false},[\"border:none\",\"padding-bottom:0px\",\"margin-bottom:40px\",\"color:#152649\"]],[false,{\".data-driven-application .applications-col li::after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8556.png\\\")\"]],[false,{\".data-driven-application .applications-col li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8548.png\\\")\"]],[false,{\".data-driven-application .applications-col li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8549.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(1):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8550.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8551.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8552.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(4):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8553.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(3) li:nth-child(1):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8554.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(3) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8555.png\\\")\"]],[false,{\".clients-talk\":false},[\"background-color:#fff\",\"padding:120px 0px 120px\"]],[false,{\".lets-talk-box\":false},[\"background-color:#fff\",\"box-shadow:8px 0px 32px rgba(0,0,0,.1)\",\"padding:56px 0px 90px\",\"border-radius:16px\",\"margin-top:-19%\",\"text-align:center\"]],[false,{\".about-dev-ops .review_sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:100px\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:32px\",\"font-weight:bold\",\"color:#707070\",\"font-family:Raleway,sans-serif\",\"line-height:1.3\"]],[false,{\".lets-talk-box h3 span\":false},[\"color:#28d9cb\"]],[false,{\".clients-talk .btn-wrapper\":false},[\"width:316px\",\"margin:0px auto\",\"margin-top:-38px\"]],[false,{\".btn-gradient\":false},[\"border-radius:50px\",\"padding:18px 30px\",\"width:100%\",\"text-align:center\"]],[false,{\".build-wrapper .swiper-wrapper\":false},[\"display:flex\"]],[false,{\".build-wrapper .review_sec\":false},[\"margin-bottom:19px\",\"box-shadow:none\",\"margin-top:21px\"]],[false,{\".build-wrapper .review_sec:before\":false},[\"position:absolute\",\"bottom:6px\",\"content:\\\"\\\"\",\"width:96%\",\"margin:0px auto\",\"right:0\",\"z-index:-1\",\"left:0\",\"height:93px\",\"border-radius:50px\",\"box-shadow:rgba(0,0,0,.4) 0px 25px 20px -20px\"]],[false,{\".build-wrapper .heading-box\":false},[\"margin-bottom:24px\"]],[false,{\".build-wrapper .review_sec .swiper-slide p\":false},[\"padding-left:0\"]],[false,{\".build-wrapper .custom-txt p\":false},[\"margin-bottom:25px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt\":false},[\"width:49%\",\"margin-right:81px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-img\":false},[\"width:43%\",\"margin-left:0\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt p\":false},[\"margin-bottom:30px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt p:last-of-type\":false},[\"margin:0px\"]],[false,{\".text-grey-box\":false},[\"background-color:#f1f1f1\",\"padding:24px\",\"position:relative\",\"margin:40px 0px 32px\"]],[false,{\".text-grey-box p\":false},[\"padding-right:60px\"]],[false,{\".text-grey-box:after\":false},[\"position:absolute\",\"left:0\",\"top:0\",\"height:100%\",\"width:4px\",\"background:#152649\",\"content:\\\"\\\"\"]],[false,{\".journey-roadmap\":false},[\"margin-top:-253px\",\"background-color:#02163c\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:248px 0px 120px 0px\"]],[false,{\".review_sec2\":false},[\"padding:40px 30px 40px 50px\",\"margin-top:100px\",\"z-index:2\",\"position:relative\",\"box-shadow:none\"]],[false,{\".review_sec2::after\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8578-1.png\\\") no-repeat\"]],[false,{\".review_sec i\":false},[\"line-height:1.6\"]],[false,{\".review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:20px\"]],[false,{\".review_sec2 .title p\":false},[\"color:#152649\",\"line-height:1.2\"]],[false,{\".journey-roadmap-header\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\"]],[false,{\".journey-roadmap-logo\":false},[\"width:29%\"]],[false,{\".journey-roadmap-header .heading-box\":false},[\"width:66%\"]],[false,{\".journey-roadmap-header .heading-box h2\":false},[\"color:#fff\"]],[false,{\".journey-roadmap-header .heading-box h2 span\":false},[\"color:#28d9cb\"]],[false,{\".devops-services\":false},[\"padding-bottom:0\"]],[false,{\".devops-services .heading-box\":false},[\"margin-bottom:45px\"]],[false,{\".devops-services .heading-box h2\":false},[\"color:#28d9cb\"]],[false,{\".devops-services .applications-col ul\":false},[\"margin-bottom:37px\"]],[false,{\".devops-services .applications-col ul li\":false},[\"font-size:20px\",\"font-weight:normal\",\"border-bottom:none\",\"padding-bottom:0\",\"margin-bottom:0\",\"padding-left:37px\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:20px\",\"color:#152649\",\"line-height:1.6\",\"margin-bottom:24px\",\"position:relative\",\"padding-left:42px\",\"font-weight:bold\"]],[false,{\".devops-services .applications-col h5::before\":false},[\"position:absolute\",\"left:0px\",\"top:0px\",\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon1.png\\\")\",\"width:30px\",\"height:30px\",\"background-repeat:no-repeat\",\"margin-top:0px\"]],[false,{\".devops-services .applications-col ul li::after\":false},[\"content:none\"]],[false,{\".srvs-text-box\":false},[\"margin-bottom:37px\"]],[false,{\".srvs-text-box p\":false},[\"font-size:20px\",\"line-height:1.6\",\"padding-left:44px\"]],[false,{\".srvs-text-box:nth-child(1) p:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0\",\"left:0\",\"width:25px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8556.png\\\")\",\"height:25px\",\"margin-top:5px\"]],[false,{\".srvs-text-box:last-child h5\":false},[\"color:#707070\"]],[false,{\".srvs-text-box:last-child h5 span\":false},[\"font-weight:500\",\"color:#152649\"]],[false,{\".reliability-engineers\":false},[\"width:95%\",\"margin:0px auto\",\"background-color:#f5f5f5\",\"border-radius:24px\",\"padding:40px 30px 40px 92px\",\"position:relative\",\"margin-top:100px\",\"font-weight:bold\"]],[false,{\".reliability-engineers p\":false},[\"font-size:20px\",\"font-weight:bold\",\"margin-bottom:0px\"]],[false,{\".fortune-box\":false},[\"text-align:center\",\"display:flex\",\"align-items:flex-end\"]],[false,{\".tex-box\":false},[\"padding:11px 0px\",\"margin-top:25px\",\"line-height:1.6\",\"color:#152649\",\"width:49%\",\"border-radius:10px\",\"border:#707070 solid 1px\"]],[false,{\".right-short-text\":false},[\"margin-left:22px\"]],[false,{\".right-short-text p\":false},[\"font-size:14px\",\"font-weight:normal\",\"font-style:italic\",\"color:#707070\"]],[false,{\".mrdata-logo\":false},[\"position:absolute\",\"left:-58px\",\"top:0\",\"bottom:0\",\"display:flex\",\"align-items:center\"]],[false,{\".devops-services .applications-col:nth-child(1) h5:last-of-type::before\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon3.png\\\")\"]],[false,{\".native-applications-list .swiper-slide:nth-child(2) .srvs-text-box:nth-child(1) p:after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon2.png\\\")\",\"width:33px\"]],[false,{\".native-applications-list .swiper-slide:nth-child(2) .srvs-text-box:nth-child(2) h5::before\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon4.png\\\")\",\"margin-top:0px\"]],[false,{\".native-applications-list .swiper-slide:nth-child(2) .srvs-text-box:nth-child(3) h5::before\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon5.png\\\")\"]],[false,{\".kubernetes-sec\":false},[\"margin-top:-95px\"]],[false,{\".kubernetes-sec .container-md\":false},[\"padding:0px 0px\"]],[false,{\".kubernetes-sec .custom-txt\":false},[\"padding:0px 24px\"]],[false,{\".kubernetes-sec .heading-box h2\":false},[\"color:#fff\",\"margin-bottom:40px\"]],[false,{\".kubernetes-sec .scroll-img amp-img\":false,\".kubernetes-sec .scroll-img amp-anim\":false},[\"margin-bottom:120px\",\"text-align:center\"]],[false,{\".kubernetes-sec .scroll-img\":false},[\"text-align:center\"]],[false,{\".kubernetes-sec .custom-txt p\":false},[\"color:#fff\",\"font-size:20px\",\"line-height:1.6\"]],[false,{\".kubernetes-sec .custom-txt p span\":false},[\"color:#24c1ff\"]],[false,{\".book-cunsultaion-sec\":false},[\"padding:10px 0px 124px 0px\",\"background-color:#f1f1f1\"]],[false,{\".book-cunsultaion-sec a.btn-blue:hover\":false},[\"color:#fff\",\"background:#28d9cb\"]],[false,{\".top-btn\":false},[\"padding-bottom:124px\",\"margin-top:-39px\"]],[false,{\".col-row ul\":false},[\"list-style:none\",\"display:flex\",\"justify-content:space-between\",\"flex-wrap:wrap\"]],[false,{\".col-row ul li\":false},[\"font-size:20px\",\"font-weight:bold\",\"color:#152649\",\"margin-bottom:32px\",\"position:relative\",\"width:30%\",\"padding-left:46px\"]],[false,{\".col-row ul li::after\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"content:\\\"\\\"\",\"width:32px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/clck.png\\\")\",\"height:32px\"]],[false,{\".col-row ul li:nth-child(1)\":false,\".col-row ul li:nth-child(4)\":false},[\"width:35%\"]],[false,{\".col-row ul li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/cstmr.png\\\")\"]],[false,{\".col-row ul li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/wrld.png\\\")\"]],[false,{\".col-row ul li:nth-child(4):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/auto.png\\\")\"]],[false,{\".col-row ul li:nth-child(5):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/drive.png\\\")\"]],[false,{\".col-row ul li:nth-child(6):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/dlr.png\\\")\"]],[false,{\".cost-effective-sec\":false},[\"padding-bottom:0px\",\"padding-top:120px\"]],[false,{\".cost-effective-sec:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#fff\"]],[false,{\".cost-effective-sec .inner\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:end\",\"margin-bottom:80px\"]],[false,{\".cost-effective-sec .custom-txt\":false},[\"width:55%\"]],[false,{\".cost-effective-sec .left-text\":false},[\"width:43%\"]],[false,{\".cost-effective-sec .left-text p\":false},[\"font-size:20px\",\"line-height:1.6\",\"color:#707070\"]],[false,{\".cost-effective-sec .heading-box h2 span\":false},[\"color:#28d9cb\",\"display:block\"]],[false,{\".data-driven-devOps\":false},[\"display:flex\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col\":false},[\"padding-bottom:15px\",\"width:calc(50% - 38px)\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col li\":false},[\"border-bottom:#dbdbdb solid 1px\",\"padding-bottom:32px\",\"margin-bottom:32px\",\"line-height:1.6\",\"padding-left:50px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col li:after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/ppl.png\\\")\",\"width:32px\",\"height:32px\",\"margin-top:8px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(2) li:nth-child(1):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/loaction.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(2) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/icon.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(1) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/icon2.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(1) li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/icon3.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col ul li:last-child\":false},[\"border:none\"]],[false,{\".cost-effective-sec .review_sec2 .swiper-slide\":false},[\"width:100%\"]],[false,{\".cost-effective-sec .review_sec .swiper-slide i\":false},[\"padding-left:0px\"]],[false,{\".infrastructure-sec\":false},[\"margin-top:-100px\",\"background-color:#152649\",\"text-align:center\"]],[false,{\".infrastructure-sec:not(#_#_#_#_#_#_#_)\":false},[\"padding:0px 0 80px\"]],[false,{\".infrastructure-sec .bg-img::before\":false},[\"content:\\\"\\\"\",\"width:100%\",\"height:265px\",\"position:absolute\",\"left:0\",\"bottom:-3px\",\"background-image:linear-gradient(rgba(21,38,73,0),#152649)\"]],[false,{\".infrastructure-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".infrastructure-sec .container-md:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0px\"]],[false,{\".infrastructure-sec .heading-box h2\":false},[\"color:#fff\",\"margin:auto\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:93%\"]],[false,{\".infrastructure-sec .heading-box:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\",\"margin-top:40px\",\"width:100%\"]],[false,{\".infrastructure-sec .heading-box h2\":false},[\"color:#fff\",\"max-width:inherit\",\"text-align:center\"]],[false,{\".contact-wrapper-banner\":false},[\"z-index:2\"]],[false,{\".contact-form-left .calendly-inline-widget:not(#_#_#_#_#_#_#_)\":false},[\"overflow:hidden\"]],[false,{\".contact-wrapper-banner amp-img\":false,\".contact-wrapper-banner amp-anim\":false},[\"min-height:110px\"]],[false,{\".contact-wrapper-banner:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:28px\",\"height:28px\",\"background-color:#152649\",\"bottom:-13px\",\"left:18%\",\"z-index:-1\",\"transform:rotate(45deg)\",\"border-radius:4px\"]],[false,{\".change_bg .custom-contact-wrapper\":false},[\"background:#152649\",\"position:relative\",\"z-index:2\"]],[false,{\".about-map\":false},[\"position:relative\"]],[false,{\".c-full-map\":false},[\"position:absolute\",\"top:0\",\"width:100%\",\"height:100%\",\"z-index:1\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"width:100%\",\"height:100%\",\"object-fit:cover\"]],[false,{\".custom-contact-wrapper\":false},[\"padding:125px 0px 160px\",\"margin-top:0px\"]],[false,{\".about-map .c-full-map .wpgmza_map.wpgmza-auto-left:not(#_#_#_#_#_#_#_)\":false},[\"height:100%\"]],[false,{\".about-map .c-full-map .wpgmza-modern-store-locator>.wpgmza-inner\":false},[\"opacity:0\"]],[false,{\".schedule-box h1\":false},[\"display:none\"]],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"display:flex\",\"justify-content:space-between\",\"flex-wrap:wrap\",\"background:#fff\",\"box-shadow:8px 0px 32px rgba(0,0,0,.1)\",\"padding:0px\",\"border-radius:0px 26px 26px 26px\",\"position:relative\",\"z-index:2\"]],[false,{\".contact-form-left\":false},[\"width:57%\",\"padding:58px 0px 75px\"]],[false,{\".choose-option\":false},[\"padding-left:46px\"]],[false,{\".choose-option ul\":false},[\"display:flex\",\"flex-wrap:wrap\",\"justify-content:space-between\",\"list-style:none\",\"align-items:center\",\"margin-bottom:60px\"]],[false,{\".choose-option ul li\":false},[\"font-size:20px\",\"color:#152649\"]],[false,{\".choose-option ul li\":false},[\"padding:15px 33px\",\"border-radius:50px\",\"color:#707070\",\"background:#fff\",\"transition:all ease .5s\"]],[false,{\".choose-option ul li:hover\":false},[\"background:#f1f1f1\"]],[false,{\".choose-option ul li:nth-child(2)\":false},[\"font-weight:800\",\"padding:0px 20px\",\"background:transparent\",\"color:#121d3d\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box label\":false},[\"display:block\",\"font-size:18px\",\"color:#121d3d\",\"font-weight:bold\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control\":false},[\"width:100%\",\"display:block\",\"padding:14px 0px 8px\",\"border:0\",\"border-radius:0px\",\"outline:none\",\"background-color:#fff\",\"font-size:20px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:400\",\"color:#000\",\"resize:none\",\"-webkit-transition:.5s ease 0s\",\"transition:.5s ease 0s\",\"border-bottom:#e6e6e6 solid 1px\",\"margin-bottom:15px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .col-md-4\":false},[\"max-width:50%\",\"margin-bottom:15px\",\"flex:0 0 50%\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box::placeholder\":false},[\"font-size:16px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control::-webkit-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:16px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control::-ms-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:16px\",\"font-weight:normal\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control::placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:16px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea\":false},[\"margin-top:0\",\"height:130px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:55px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box input[type=\\\"submit\\\"]\":false},[\"background:linear-gradient(-90deg,#28d9cb 0,#a0f266 100%)\",\"font-size:18px\",\"height:70px\",\"font-weight:800\",\"cursor:pointer\",\"max-width:300px\",\"width:100%\",\"border-radius:50px\",\"margin:0\"]],[false,{\".change_bg .contact-form-info-right\":false},[\"background:linear-gradient(180deg,#28d9cb 0,#66f2a3 100%)\"]],[false,{\".change_bg .contact-form-info-right ul li a\":false,\".change_bg .contact-form-info-right ul li span a\":false,\".change_bg .contact-form-info-right ul li\":false,\".change_bg .contact-form-info-right ul li:first-of-type\":false,\".change_bg .contact-form-info-right h3\":false},[\"color:#152649\"]],[false,{\".change_bg .contact-form-info-right ul li\":false},[\"border-color:rgba(255,255,255,28%)\"]],[false,{\".btn-group button\":false},[\"border-radius:50px\",\"border:none\"]],[false,{\".contact-form-info-right\":false},[\"width:38%\",\"background-color:#152649\",\"border-radius:26px\",\"padding:50px 80px 119px\"]],[false,{\".contact-form-info-right h3\":false},[\"font-size:32px\",\"color:#28d9cb\",\"line-height:1.5\",\"margin-bottom:25px\",\"font-family:Raleway,sans-serif\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control:focus\":false},[\"outline:none\",\"box-shadow:none\"]],[false,{\".contact-form-info-right ul\":false},[\"list-style:none\",\"margin-bottom:70px\"]],[false,{\".contact-form-info-right ul li\":false},[\"border-bottom:#525c70 solid 1px\",\"padding:40px 0px 47px\",\"color:#bcc2ce\",\"font-size:17px\",\"position:relative\",\"display:flex\",\"align-items:center\",\"line-height:1.5\"]],[false,{\".contact-form-info-right ul li a\":false},[\"color:#28d9cb\",\"padding-left:15px\",\"text-decoration:underline\",\"display:block\"]],[false,{\".contact-form-info-right ul li:nth-of-type(1) a\":false},[\"text-decoration:none\"]],[false,{\".contact-form-info-right ul li:nth-of-type(2) a\":false},[\"color:#28d9cb\",\"padding-left:0px\"]],[false,{\".contact-form-info-right ul li:nth-of-type(2) span\":false},[\"padding-left:55px\",\"display:block\"]],[false,{\".contact-form-info-right ul li:last-child a\":false},[\"padding-left:55px\"]],[false,{\".contact-form-info-right ul li:first-of-type a\":false},[\"color:#fff\",\"font-size:32px\",\"font-weight:bold\",\"line-height:1.5\"]],[false,{\".contact-form-info-right ul li:last-child\":false},[\"border:none\"]],[false,{\".change_bg .contact-form-info-right ul .phone:before\":false,\".change_bg .contact-form-info-right ul .address:before\":false,\".change_bg .contact-form-info-right ul .email:before\":false,\".change_bg .btm-icon-line amp-img\":false,\".change_bg .btm-icon-line amp-anim\":false},[\"filter:brightness(100)\"]],[false,{\".contact-form-info-right ul .phone:before\":false},[\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/phone.svg\\\")\",\"background-size:cover\",\"background-repeat:no-repeat\",\"width:40px\",\"height:40px\",\"display:inline-block\",\"vertical-align:middle\"]],[false,{\".contact-form-info-right ul .address:before\":false},[\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/address.svg\\\")\",\"background-size:cover\",\"background-repeat:no-repeat\",\"width:41px\",\"height:45px\",\"display:inline-block\",\"vertical-align:middle\",\"padding-bottom:46px\",\"position:absolute\"]],[false,{\".contact-form-info-right ul .email:before\":false},[\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/email.svg\\\")\",\"background-size:cover\",\"background-repeat:no-repeat\",\"width:40px\",\"height:40px\",\"display:inline-block\",\"vertical-align:middle\",\"position:absolute\"]],[false,{\".change_bg .font-des\":false},[\"-webkit-text-fill-color:#fff\",\"border-image:unset\"]],[false,{\".font-des\":false},[\"font-size:25px\",\"color:#fff\",\"font-weight:bold\",\"border:4px solid\",\"padding:4px 5px\",\"background:linear-gradient(0deg,rgba(40,217,203,1) 0%,rgba(102,242,163,1) 100%)\",\"-webkit-background-clip:text\",\"-webkit-text-fill-color:transparent\",\"border-image:linear-gradient(0deg,rgba(40,217,203,1) 0%,rgba(102,242,163,1) 100%)\"]],[false,{\".btm-icon-line\":false},[\"position:relative\",\"display:flex\",\"justify-content:center\"]],[false,{\".choose-option ul li.tab\":false},[\"cursor:pointer\"]],[false,{\".choose-option ul li:last-child\":false},[\"margin-left:0px\"]],[false,{\".contact-form-left .tab-content\":false},[\"display:none\",\"padding-left:50px\"]],[false,{\".contact-form-left .tab-content.active\":false},[\"display:block\"]],[false,{\".btm-icon-line:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"left:0px\",\"bottom:0px\",\"margin:auto\",\"height:1px\",\"width:130px\",\"top:0\",\"background:#525c70\"]],[false,{\".btm-icon-line::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"right:0px\",\"bottom:0px\",\"margin:auto\",\"height:1px\",\"width:130px\",\"top:0\",\"background:#525c70\"]],[true,\"@media only screen and (min-width: 2751px) and (max-width: 3840px){\"],[true,{\".new-header\":true},[\"padding:0px 23%\"]],[true,\"}\"],[true,\"@media only screen and (min-width: 2200px) and (max-width: 2750px){\"],[true,{\".new-header\":true},[\"padding:0px 10%\"]],[true,\"}\"],[false,\"@media screen and (max-width: 1320px) and (min-width: 1025px){\"],[false,{\".contact-form-info-right\":false},[\"padding:50px 25px 119px\"]],[false,\"}\"],[true,\"@media only screen and (max-width: 1920px){\"],[true,{\".new-header .dropdown-menu>.container\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".new-header .mega-menu-right\":true},[\"padding:0px\",\"margin:0px\",\"flex:0 0 71.666667%\",\"max-width:71.666667%\"]],[true,{\".new-header .dropdown-menu .col-lg-4\":true},[\"padding:0\",\"flex:0 0 24.333333%\",\"max-width:24.333333%\"]],[true,{\".new-header .mega-menu-right .row .menu-widget\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".dropdown-menu\":true},[\"width:66%\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1024px){\"],[true,{\".new-header .dropdown-menu>.container\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".new-header .mega-menu-right\":true},[\"flex:0 0 78.666667%\",\"max-width:78.666667%\"]],[true,{\".new-header .dropdown-menu .col-lg-4\":true},[\"flex:0 0 21.333333%\",\"max-width:21.333333%\"]],[true,{\".new-header .mega-menu-right .row .menu-widget\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".dropdown-menu\":true},[\"width:66%\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-top:-16%\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:12%\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .mega-menu-right\":true},[\"flex:0 0 66.666667%\",\"max-width:66.666667%\",\"padding-right:71px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .mega-menu-right\":true},[\"flex:100%\",\"max-width:100%\",\"padding-right:20px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .dropdown-menu .col-lg-4\":true},[\"flex:100%\",\"max-width:100%\"]],[true,{\".new-header__nav--subtitle p\":true},[\"padding-left:0px\"]],[true,{\"a.new-header__nav--menu--button\":true},[\"margin-bottom:25px\"]],[true,{\".new-header__menu-item\":true},[\"padding-left:0\"]],[true,\"}\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 90px 0px 30px\"]],[true,\"@media only screen and (min-width: 1920px) and (max-width: 2129px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 50px 0px 30px\"]],[true,\"}\"],[true,\"@media (max-width: 1800px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 2.2rem\"]],[true,\"}\"],[true,\"@media (max-width: 1366px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 1rem 0rem 2.2rem\"]],[true,\"}\"],[true,\"@media (max-width: 1280px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 1.2rem\"]],[true,\"}\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link\":true},[\"font-size:16px\"]],[true,\"@media only screen and (max-width: 1920px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:16px\",\"padding:0px 17px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1680px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"padding:0px 6px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1440px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"padding:0px 11px\",\"font-size:14px\"]],[false,{\".native-applications-list\":false},[\"padding:120px 0px 120px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1366px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:13px\",\"padding:0px 11px\"]],[false,{\".depending-text p\":false},[\"font-size:23px\"]],[false,{\".applications-col li\":false},[\"font-size:18px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1024px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\",\"padding:0px 8px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:10px\",\"padding:.5rem 1rem\"]],[true,\"}\"],[false,{\".show>.dropdown-toggle::after\":false},[\"transform:rotate(45deg)\",\"text-align:left\",\"display:inline-block\"]],[false,{\".show>.dropdown-toggle::after:not(#_#_#_#_#_#_#_#_)\":false},[\"width:7px\",\"height:7px\",\"border:solid 1px #24c1ff\",\"border-left:0\",\"border-top:0\"]],[false,\"@media only screen and (max-width: 991px){\"],[false,{\".show>.dropdown-toggle::after\":false},[\"display:none\"]],[false,\"}\"],[true,{\"a.new-header__nav--menu--button\":true},[\"position:relative\",\"min-width:132px\",\"transition:all ease .5s\",\"transition:all .5s\",\"border:1px solid #9df168\",\"background:transparent\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"margin:0px\",\"display:flex\",\"text-align:left\",\"padding-left:10px\",\"padding-right:10px\",\"line-height:44px\",\"transform:scale(1)\",\"max-width:170px\"]],[true,\"@media (max-width: 992px){\"],[true,{\"a.new-header__nav--menu--button\":true},[\"width:150px\"]],[true,\"}\"],[true,\"@media (max-width: 991px){\"],[true,{\"a.new-header__nav--menu--button\":true},[\"margin-bottom:25px\"]],[true,\"}\"],[true,{\".new-header__nav--title h5\":true},[\"padding-right:40px\"]],[true,\"@media (max-width: 1680px){\"],[true,{\".new-header__nav--title h5\":true},[\"padding-right:0px\"]],[true,\"}\"],[true,{\"a.new-header__nav--menu--button:before\":true},[\"position:absolute\",\"right:30px\",\"top:43%\",\"width:10px\",\"height:10px\",\"border:#707070 solid 1px\",\"z-index:99\",\"content:\\\"\\\"\",\"transform:rotate(45deg)\",\"border-bottom:0\",\"border-left:0\",\"margin-left:15px\",\"display:none\"]],[true,{\"a.new-header__nav--menu--button:hover\":true},[\"transform:scale(1.1)\"]],[true,\"@keyframes pulse{\"],[true,\"0%{transform:scale(1)}\"],[true,\"100%{transform:scale(1.1)}\"],[true,\"}\"],[true,{\".new-header__nav--menu--button:hover\":true},[\"font-size:1rem\"]],[true,\"@media screen and (max-width: 992px){\"],[true,{\"a.new-header__nav--menu--button:after\":true},[\"width:110px\"]],[true,\"}\"],[true,{\"a.new-header__nav--menu--button:hover::after\":true},[\"width:100%\",\"transition:all ease .2s\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\"]],[true,{\".new-header__nav--menu--title\":true},[\"color:#152649\"]],[true,{\".new-header__nav--subtitle-icon amp-img\":true,\".new-header__nav--subtitle-icon amp-anim\":false},[\"width:25px\"]],[true,{\".new-header__nav--subtitle-icon\":true},[\"text-align:left\"]],[true,\"@media screen and (max-width: 1920px){\"],[true,{\".new-header__nav--menu--img\":true},[\"flex:0 0 23%\",\"max-width:23%\"]],[true,{\".col-md-10.menu-text\":true},[\"flex:0 0 77%\",\"max-width:77%\",\"padding-right:0px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1440px){\"],[true,{\".new-header__nav--menu--img\":true},[\"padding:0\",\"max-width:20%\",\"flex:0 0 20%\"]],[true,\"}\"],[true,{\".col-12.new-header__nav--subtitle\":true},[\"padding-right:20px\"]],[true,{\".dropdown-menu\":true},[\"border-top:1px solid #dfdfdf\"]],[true,\"@media only screen and (max-width: 1920px){\"],[true,{\".dropdown-menu\":true},[\"border-top:1px solid #dfdfdf\",\"width:64%\",\"padding-left:40px\",\"padding-top:20px\",\"padding-bottom:20px\"]],[true,{\".new-header__nav--list li .nav-link:not(#_#_#_#_#_#_#_#_)\":true},[\"padding-right:20px\",\"padding-left:20px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1680px){\"],[true,{\".dropdown-menu\":true},[\"width:70%\",\"padding-left:44px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1536px){\"],[true,{\".dropdown-menu\":true},[\"width:76%\",\"padding-left:44px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1440px){\"],[true,{\".new-header__nav--list li\":true},[\"padding:0px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 991px){\"],[true,{\".new-header__nav--list li\":true},[\"padding-left:1rem\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1440px){\"],[true,{\".dropdown-menu\":true},[\"width:83%\",\"padding-left:50px\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:44px\"]],[false,{\".review_sec2\":false},[\"margin-top:47px\"]],[false,{\".top-btn\":false},[\"padding-bottom:60px\"]],[false,{\".book-cunsultaion-sec\":false},[\"padding:10px 0px 60px 0px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1024px){\"],[true,{\".dropdown-menu\":true},[\"padding-left:25px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".dropdown-menu\":true},[\"width:100%\",\"padding-right:10px\",\"padding-left:1rem\",\"border-top:none\"]],[true,\"}\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:18px\",\"letter-spacing:-.43px\"]],[true,\"@media screen and (max-width: 1280px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:16px\"]],[false,{\".custom-qout-box .review_sec i\":false},[\"font-size:18px\"]],[false,{\".depending-text p\":false},[\"font-size:21px\"]],[false,{\".applications-col li\":false},[\"font-size:17px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1024px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:14px\"]],[false,{\".custom-qout-box .review_sec i\":false},[\"font-size:16px\"]],[false,{\".depending-text p\":false},[\"font-size:17px\"]],[false,{\".native-applications-list\":false},[\"padding:90px 0px 50px\"]],[false,{\".depending-btn .btn-blue\":false},[\"padding:15px 10px\"]],[false,{\".applications-col li\":false},[\"font-size:15px\"]],[false,{\".native-applications-list .swiper-slide\":false},[\"width:calc(50% - 19px)\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:26px\"]],[false,{\".lets-talk-box\":false},[\"margin-top:-25%\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 140px\"]],[false,{\".data-driven-application .swiper-slide\":false},[\"width:calc(33.333% - 10px)\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt\":false},[\"margin-right:0\"]],[true,\"}\"],[true,\"@media screen and (max-width: 991px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:1rem\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:18%\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:30px\",\"width:33%\"]],[false,{\".keeping-future ul li:nth-child(9)\\n.keeping-future ul li:nth-child(6)\":false,\".keeping-future ul li:nth-child(3)\":false},[\"margin-right:0px\"]],[false,{\".keeping-future ul li:nth-child(10)\":false,\".keeping-future ul li:nth-child(9)\":false},[\"border-bottom:#16365c solid 1px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 768px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:1.1rem\"]],[false,{\".keeping-you-competitive p\":false},[\"font-size:13px\"]],[false,{\".depending-on\":false},[\"flex-wrap:wrap\"]],[false,{\".depending-img-box\":false},[\"width:20%\"]],[false,{\".depending-text\":false},[\"width:75%\"]],[false,{\".depending-btn\":false},[\"width:100%\",\"text-align:center\"]],[false,{\".custom-qout-box\":false},[\"padding:40px 0px 60px\"]],[false,{\".depending-btn .btn-blue\":false},[\"padding:15px 30px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-top:-24%\",\"margin-bottom:55px\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 110px\"]],[false,{\".native-applications-list .heading-box h2\":false},[\"font-size:25px\"]],[false,{\".native-applications-list .heading-box\":false},[\"margin-bottom:35px\"]],[false,{\".applications-col li\":false},[\"font-size:12px\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:20px\"]],[false,{\".lets-talk-box\":false},[\"padding:35px 0px 60px\",\"margin-top:-29%\"]],[false,{\".clients-talk\":false},[\"padding:120px 0px 55px\"]],[false,{\".clients-talk .btn-gradient\":false},[\"font-size:27px\",\"padding:10px 30px\"]],[false,{\".clients-talk .btn-wrapper\":false},[\"width:245px\",\"margin-top:-27px\"]],[false,{\".keeping-future ul\":false},[\"justify-content:space-between\"]],[false,{\".keeping-future ul li\":false},[\"width:48%\"]],[false,{\".keeping-future ul li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:48%\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(10)\":false},[\"border-bottom:#16365c solid 1px\"]],[false,{\".tex-box\":false},[\"width:68%\"]],[true,\"}\"],[true,{\".new-header__nav--subtitle\":true,\".new-header__nav--subtitle .col-10\":true,\".new-header__nav--title .col-10\":true,\".new-header__nav--title\":true},[\"padding:0px\"]],[true,{\".new-header__nav--subtitle .row .col-12\":true},[\"padding:0px\"]],[true,{\".new-header__nav--menu--text\":true},[\"font-size:12px\",\"letter-spacing:-.29px\"]],[true,{\".new-header__nav--menu--img amp-img\":true,\".new-header__nav--menu--img amp-anim\":false},[\"max-width:100%\",\"width:48px\"]],[true,\"@media only screen and (max-width: 1400px){\"],[true,{\".new-header .dropdown-menu .menu-right\":false,\".new-header .dropdown-menu .menu-widget .row\":true,\".new-header .dropdown-menu .menu-widget\":true},[\"padding:0px\"]],[true,{\".mega-menu-right\":true},[\"padding:0px\"]],[true,{\".new-header__nav--menu--box\":true},[\"align-items:flex-start\"]],[true,{\".col-md-10.menu-text\":true},[\"padding:0px 2px 0px 9px\",\"max-width:80%\",\"flex:0 0 80%\"]],[true,\"}\"],[true,{\".footer-2022__social-media a\":true},[\"transition:all ease .5s\"]],[true,{\".footer-2022__social-media a:hover\":true},[\"margin-top:-10px\"]],[true,\"@media only screen and (min-width: 1800px) and (max-width: 3034px){\"],[true,{\"footer.footer-2022 .container\":true},[\"max-width:1545px\"]],[true,\"}\"],[true,\"@media (max-width: 600px){\"],[true,{\"footer.footer-2022 .container\":true},[\"padding:0px 44px\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec\":false},[\"padding:40px 0px 0px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row\":false},[\"padding:40px 25px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content.active\":false},[\"flex-wrap:wrap\",\"padding-bottom:28px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img\":false},[\"width:100%\",\"margin-bottom:32px\"]],[false,{\".rebuild-and-replatform\":false},[\"padding:120px 0px 120px 0px\"]],[false,{\".rebuild-and-replatform .txt .heading-box h2 br\":false},[\"display:none\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text\":false},[\"padding-left:0\",\"width:100%\"]],[false,{\".review_sec amp-img\":false,\".review_sec amp-anim\":false},[\"top:0\"]],[false,{\".review_sec .swiper-slide i\":false},[\"padding-left:0\"]],[false,{\".review_sec .swiper-slide i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-boxs\":false},[\"margin-bottom:8px\"]],[false,{\".reviewSwiper\":false},[\"padding-top:12px\"]],[false,{\".review_sec .swiper-slide p\":false},[\"padding-left:55px\"]],[false,{\".review_sec .title p\":false},[\"padding-left:0px\"]],[false,{\".review_sec .title p span\":false},[\"display:block\"]],[false,{\".review_sec2 .swiper-slide p:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:0px\"]],[true,\"}\"],[true,\"@media (max-width: 374px){\"],[true,{\"footer.footer-2022 .container\":true},[\"padding:0px 30px\"]],[true,\"}\"],[true,\"@media (max-width: 320px){\"],[true,{\"footer.footer-2022 .container\":true},[\"padding:0px 10px\"]],[true,\"}\"],[true,{\".footer-2022__copyright\":true},[\"letter-spacing:-.35px\"]],[false,{\".container-md\":false},[\"max-width:1272px\",\"margin:0 auto\",\"padding:0 20px\",\"width:90%\"]],[true,{\".footer-2022__menu--list h5:after\":true},[\"border-top:0px\",\"border-right:0\",\"border-left:0\"]],[true,\"@media (max-width: 768px){\"],[true,{\".footer-2022__menu--box\":true},[\"flex-direction:inherit\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[true,\"}\"],[true,\"@media (max-width: 767px){\"],[true,{\".footer-2022__box-end\":true},[\"letter-spacing:-.35px\"]],[true,{\".footer-2022__menu--box\":true},[\"flex-direction:column\"]],[false,{\".g-small-d-block\":false},[\"display:block\"]],[false,{\".g-small-d-none\":false},[\"display:none\"]],[false,{\".data-driven-application .swiper-button-next:after\":false},[\"display:block\"]],[false,{\".data-driven-application .swiper-button-prev:after\":false},[\"display:block\"]],[true,\"}\"],[true,\"@media (max-width: 767px){\"],[false,{\".container-md\":false},[\"width:100%\",\"padding:0 30px\"]],[false,{\".accordianNav .drop_arrow:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"z-index:0\",\"left:0\",\"top:0\",\"width:0\",\"height:100%\",\"background-color:#444\",\"background:rgba(244,244,244,.3)\",\"transition:all .3s ease-out\"]],[false,{\".accordianNav .drop_arrow:hover:before\":false,\".accordianNav .drop_arrow .active:before\":false},[\"width:2%\"]],[true,{\".footer-2022 .drop_arrow\":true},[\"position:relative\"]],[false,{\".drop_arrow.active h5\":false},[\"color:#fff\"]],[true,{\".footer-2022 .drop_arrow::before\":true},[\"content:\\\"\\\"\",\"width:6px\",\"height:6px\",\"border-bottom:2px solid #24c1ff\",\"border-right:2px solid #24c1ff\",\"float:right\",\"position:absolute\",\"top:12px\",\"right:0px\",\"transform:rotate(45deg)\",\"transform-origin:center\",\"transition:all .4s ease\"]],[false,{\".footer-2022 .drop_arrow.active::before\":false},[\"transform:rotate(225deg)\"]],[false,{\".footer-2022__menu--list .drop_arrow .active:after\":false},[\"transform:rotate(-135deg)\",\"border-color:#fff\"]],[true,{\".footer-2022__menu--list ul\":true},[\"margin-bottom:3rem\",\"display:none\"]],[false,{\".keeping-future ul\":false},[\"column-count:2\"]],[false,{\".applications-col li\":false},[\"font-size:14px\"]],[false,{\".data-driven-application .applications-col li\":false},[\"margin-bottom:24px\"]],[false,{\".applications-col li\":false},[\"padding-bottom:16px\",\"margin-bottom:16px\"]],[false,{\".custom-qout-box .review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".keeping-future ul li\":false},[\"margin-bottom:16px\",\"padding-bottom:16px\",\"font-size:14px\"]],[false,{\".review_sec .title p\":false},[\"font-size:14px\"]],[false,{\".keeping-you-competitive\":false},[\"padding:80px 0px 195px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-bottom:65px\",\"margin-top:-19%\"]],[false,{\".depending-text\":false},[\"text-align:center\",\"width:80%\",\"margin:0px auto 40px auto\"]],[false,{\".custom-qout-box\":false},[\"padding:40px 0px 80px\"]],[false,{\".native-applications-list\":false},[\"padding:80px 0px 50px\"]],[false,{\".native-applications-list .swiper-slide:nth-child(1) li:first-of-type\":false},[\"padding-right:80px\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:24px\",\"padding:0px 100px\"]],[false,{\".depending-img-box\":false},[\"width:100%\",\"text-align:center\"]],[false,{\".keeping-you-competitive p\":false},[\"font-size:14px\"]],[false,{\".keeping-future\":false},[\"margin-top:60px\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner:after\":false},[\"position:absolute\",\"bottom:0\",\"left:0\",\"content:\\\"\\\"\",\"width:30px\",\"height:30px\",\"background:#04061f\",\"transform:rotate(45deg)\",\"border-radius:2px\",\"margin-left:34px\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner.content_center\":false},[\"text-align:center\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner.content_center:after\":false},[\"margin:0px auto\",\"left:0px\",\"right:0px\"]],[false,{\".c-app-banner h2\":false},[\"font-size:32px\"]],[false,{\".c-app-banner p\":false},[\"font-size:16px\"]],[false,{\".infrastructure-sec .bg-img .full-img\":false},[\"height:500px\",\"object-fit:cover\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(1) ul li:last-child\":false},[\"border-bottom:#dbdbdb solid 1px\"]],[false,{\".reliability-engineers\":false},[\"width:100%\",\"border:#fff solid 1px\"]],[false,{\".fortune-box\":false},[\"flex-wrap:wrap\"]],[false,{\".tex-box\":false},[\"width:100%\",\"margin-top:15px\",\"margin-bottom:15px\"]],[false,{\".reliability-engineers p\":false},[\"line-height:15px\",\"margin:0px\"]],[false,{\".right-short-text\":false},[\"margin-left:0\",\"text-align:center\",\"width:100%\"]],[true,\"}\"],[false,\"@media (max-width: 575px){\"],[false,{\".container-md\":false},[\"padding:0 24px\"]],[false,{\".about-dev-ops .review_sec2:not(#_#_#_#_#_#_#_)\":false},[\"padding:20px 20px 25px 20px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"background-color:#f5f5f5\",\"margin-bottom:65px\",\"margin-top:-30%\"]],[false,{\".review_sec\":false},[\"padding:25px\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 200px\"]],[false,{\".depending-text p\":false},[\"font-size:16px\"]],[false,{\".lets-talk-box\":false},[\"padding:35px 0px 60px\",\"margin-top:-43%\"]],[false,{\".depending-text\":false},[\"width:96%\"]],[false,{\".lets-talk-box h3\":false},[\"padding:0px 45px\"]],[false,{\".clients-talk .btn-gradient\":false},[\"font-size:14px\",\"padding:16px 30px\"]],[false,{\".keeping-you-competitive:not(#_#_#_#_#_#_#_)\":false},[\"padding:80px 0px 160px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li\":false},[\"padding:5px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li a\":false},[\"font-size:14px\"]],[false,{\".review_sec::after\":false},[\"left:25px\"]],[false,{\".review_sec .swiper-slide i\":false},[\"margin:8px 0px 8px\",\"padding-right:10px\"]],[false,{\".review_sec .swiper-slide p\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform .txt p\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform:not(#_#_#_#_#_#_#_)\":false},[\"padding:65px 0px 120px 0px\"]],[false,{\".rebuild-and-replatform .txt label\":false},[\"margin-bottom:15px\"]],[false,{\".rebuild-and-replatform .heading-box h2\":false},[\"font-size:30px\",\"margin-bottom:30px\"]],[false,{\".rebuild-and-replatform .txt p:last-of-type\":false},[\"margin-bottom:55px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text p\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content.active\":false},[\"padding-bottom:40px\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec\":false},[\"padding:15px 0px 0px\"]],[false,{\".keeping-you-competitive .heading-box h2\":false},[\"font-size:30px\",\"margin-bottom:24px\"]],[false,{\".keeping-you-competitive .heading-box h2 br\":false},[\"display:none\"]],[false,{\".keeping-future ul li:nth-of-type(4)\":false},[\"order:11\",\"border:none\"]],[false,{\".keeping-future ul li:nth-of-type(8)\":false},[\"order:9\"]],[false,{\".keeping-future ul li\":false},[\"margin-bottom:10px\",\"padding-bottom:10px\"]],[false,{\".native-applications-list .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".clients-talk .btn-wrapper\":false},[\"width:132px\"]],[false,{\"section.custom-full-bg\":false},[\"display:none\"]],[false,{\".native-applications-list .heading-box label\":false},[\"letter-spacing:1.1px\"]],[false,{\".c-scroll-box\":false},[\"overflow:scroll\"]],[false,{\".c-scroll-box:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".scroll-img\":false},[\"width:250%\",\"position:relative\"]],[false,{\".scroll-img amp-img\":false,\".scroll-img amp-anim\":false},[\"max-width:unset\",\"width:100%\"]],[false,{\".scroll-img:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/sroll-l.png\\\")\",\"width:25px\",\"height:25px\",\"bottom:0\",\"margin:auto\",\"left:25%\"]],[false,{\".scroll-img::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/scroll-right.png\\\")\",\"width:25px\",\"height:25px\",\"bottom:0\",\"margin:auto\",\"right:27%\"]],[false,{\".journey-roadmap .scroll-img::after\":false,\".journey-roadmap .scroll-img::before\":false},[\"display:none\"]],[false,{\".native-data-driven-top\":false},[\"padding-top:80px\"]],[false,{\".native-data-driven-top .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".cost-effective-sec .review_sec .swiper-slide i:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".lets-talk-box\":false},[\"margin-top:-73%\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-bottom:65px\",\"margin-top:-54%\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner amp-img\":false,\"section.cp-tek-teams-isk.c-app-banner amp-anim\":false},[\"min-height:inherit\"]],[false,{\".c-app-banner .title\":false},[\"margin-bottom:14px\"]],[false,{\".c-app-banner p\":false},[\"font-size:16px\",\"padding-right:20px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-img\":false,\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-anim\":false},[\"max-width:185px\",\"object-fit:cover\",\"width:100%\",\"text-align:center\",\"display:block\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media (max-width: 360px){\"],[false,{\".lets-talk-box h3\":false},[\"padding:0px 26px\"]],[false,\"}\"],[true,{\"a\":true},[\"display:inline-block\"]],[true,{\"*\":true},[\"-webkit-box-sizing:border-box\",\"box-sizing:border-box\",\"margin:0\",\"padding:0\"]],[true,{\"amp-img\":true,\"amp-anim\":false},[\"max-width:100%\"]],[true,{\"a\":true},[\"text-decoration:none\"]],[false,{\".btn-blue\":false},[\"background-color:#24c1ff\",\"color:#152649\",\"border-radius:30px\",\"font-size:20px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding:15px 30px\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"border:1px solid #24c1ff\"]],[false,\"@media (max-width: 992px){\"],[false,{\".btn-blue\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".btn-blue\":false},[\"font-size:14px\",\"padding:15px 40px\"]],[false,\"}\"],[false,{\".btn-blue:hover\":false},[\"background-color:transparent\"]],[false,{\".btn-blue.dark-blue\":false},[\"background-color:#152649\",\"color:#24c1ff\",\"border:1px solid #152649\"]],[false,{\".btn-blue.dark-blue:hover\":false},[\"background-color:transparent\"]],[false,{\".btn-green\":false},[\"background-color:transparent\",\"border:1px solid #8bed78\",\"color:#8bed78\",\"border-radius:30px\",\"font-size:20px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding:15px 30px\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width: 992px){\"],[false,{\".btn-green\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".btn-green\":false},[\"font-size:14px\",\"padding:15px 40px\"]],[false,\"}\"],[false,{\".btn-green:hover\":false},[\"color:#152649\",\"background-color:#8bed78\"]],[false,{\".btn-gradient\":false},[\"background:-webkit-gradient(linear,left top,right top,color-stop(0,#28d9cb),to(#a0f266))\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"color:#152649\",\"border-radius:30px\",\"font-size:32px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding:15px 30px\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".btn-gradient:hover\":false},[\"background:-webkit-gradient(linear,right top,left top,color-stop(0,#28d9cb),to(#a0f266))\",\"background:linear-gradient(-90deg,#28d9cb 0,#a0f266 100%)\"]],[false,{\".heading-box label\":false},[\"font-size:18px\",\"color:#7080a7\",\"display:block\",\"margin-bottom:24px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"letter-spacing:1.8px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".heading-box label\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".heading-box label\":false},[\"font-size:14px\",\"letter-spacing:1.4px\",\"margin-bottom:16px\"]],[false,\"}\"],[false,{\".heading-box label i\":false},[\"margin-right:8px\"]],[false,{\".heading-box h2\":false},[\"color:#152649\",\"font-size:50px\",\"line-height:1\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\"]],[false,\"@media (max-width: 1377px){\"],[false,{\".keeping-future ul li\":false},[\"margin-right:43px\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".heading-box h2\":false},[\"font-size:45px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".heading-box h2\":false},[\"font-size:40px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".heading-box h2\":false},[\"font-size:32px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".heading-box h2\":false},[\"font-size:30px\"]],[false,\"}\"],[false,{\".heading-box h2 span\":false},[\"color:#24c1ff\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:80px\",\"text-align:center\",\"padding-top:60px\",\"padding-bottom:120px\",\"position:relative\",\"background-position:center bottom\",\"background-repeat:no-repeat\",\"background-size:cover\",\"min-height:500px\",\"max-height:55vh\"]],[false,\"@media (max-width: 480px){\"],[false,{\".cp-cloud-native-isk figure\":false},[\"max-width:24px\",\"margin:auto\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk p\":false},[\"color:#28d9cb\",\"font-size:16px\",\"letter-spacing:1.6px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"margin-top:15px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".cp-cloud-native-isk p\":false},[\"font-size:14px\",\"letter-spacing:1.4px\",\"margin-top:12px\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:60px\",\"color:#fff\",\"line-height:1\",\"font-family:Raleway,sans-serif\",\"margin-top:90px\",\"margin-bottom:30px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:50px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:40px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:32px\",\"line-height:34px\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk .btn\":false},[\"border:1px solid #28d9cb\",\"color:#28d9cb\",\"font-size:24px\",\"padding:7px 32px\",\"border-radius:30px\",\"background:transparent\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".cp-cloud-native-isk .btn\":false},[\"font-size:20px\",\"padding:10px 32px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".cp-cloud-native-isk .btn\":false},[\"font-size:14px\",\"padding:0px 32px\",\"font-weight:500\",\"width:210px\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk .btn:hover\":false},[\"background-color:#28d9cb\",\"color:#152649\"]],[false,{\".cp-cloud-native-isk .angle-down\":false},[\"position:absolute\",\"bottom:5px\",\"left:50%\",\"-webkit-transform:translateX(-50%)\",\"transform:translateX(-50%)\"]],[false,{\".cp-cloud-native-isk .angle-down a\":false},[\"font-size:15px\",\"color:#28d9cb\"]],[false,{\".custom-txt-img-sec\":false},[\"padding-top:140px\",\"padding-bottom:120px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".custom-txt-img-sec\":false},[\"padding-top:60px\",\"padding-bottom:60px\"]],[false,{\".heading-box h2\":false},[\"font-size:35px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .cutsom-hide-text\":false},[\"display:none\"]],[false,{\".custom-txt-img-sec .cutsom-hide-text p\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.5\",\"font-family:raleway,sans-serif\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-txt-img-sec\":false},[\"padding:50px 0 30px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:calc(50.5% - 81px)\",\"margin-right:81px\"]],[true,\"@media (max-width: 1024px){\"],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:50%\"]],[true,{\".new-header__nav--title h5\":true},[\"font-size:25px\",\"line-height:1.2\"]],[false,{\".keeping-future ul li\":false},[\"width:24%\"]],[false,{\".keeping-future ul li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-right:29px\"]],[false,{\".keeping-you-competitive\":false},[\"padding-bottom:165px\"]],[false,{\".rebuild-and-replatform\":false},[\"padding:120px 0px 120px 0px\"]],[true,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:100%\",\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt label\":false},[\"margin-bottom:24px\"]],[false,\"@media (max-width: 767px){\"],[false,{\"section.custom-txt-img-sec.c-application-development\":false},[\"position:relative\",\"z-index:1\"]],[false,{\".custom-txt-img-sec .custom-img figure amp-img\":false,\".custom-txt-img-sec .custom-img figure amp-anim\":false,\".custom-txt-img-sec .custom-img figure\":false},[\"width:100%\",\"mix-blend-mode:multiply\"]],[false,{\".custom-txt-img-sec .custom-txt label\":false},[\"margin-bottom:20px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-img\":false},[\"max-width:250px\",\"margin-left:auto\",\"width:100%\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"color:#152649\",\"margin-bottom:40px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"font-size:38px\"]],[false,{\".contact-tek-teams.custom-txt-img-sec .custom-txt h2\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"font-size:27px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"padding-right:0\"]],[false,{\".keeping-future ul\":false},[\"font-size:20px\"]],[false,{\".keeping-future ul li\":false},[\"width:47%\"]],[false,{\".keeping-future ul li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-right:0px\"]],[false,{\".keeping-future ul li:nth-child(11)\":false},[\"border-bottom:#16365c solid 1px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"margin-bottom:0px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt h2 span\":false},[\"color:#24c1ff\"]],[false,{\".tek-world-scale .custom-txt h2 span\":false},[\"color:#28d9cb\"]],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.5\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"@media (min-width: 1280px) and (max-width: 1680px){\"],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".c-application-development .custom-txt p span\":false,\".custom-txt-img-sec .custom-txt p\":false},[\"color:#152649\"]],[false,{\".c-application-development .custom-txt p\":false},[\"color:#707070\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"margin-bottom:25px\"]],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".contact-tek-teams .custom-img p\":false},[\"margin-bottom:30px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt .btn-blue\":false},[\"margin-top:48px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-txt-img-sec .custom-txt .btn-blue\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-img\":false},[\"width:calc(49.5% - 81px)\",\"margin-left:81px\",\"display:flex\",\"align-items:center\"]],[false,{\".custom-txt-img-sec .custom-img figure amp-img\":false,\".custom-txt-img-sec .custom-img figure amp-anim\":false,\".custom-txt-img-sec .custom-img figure\":false},[\"width:100%\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:calc(50.5% - 40px)\",\"margin-right:40px\"]],[false,{\".custom-txt-img-sec .custom-img\":false},[\"width:calc(49.5% - 40px)\",\"margin-left:40px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-txt-img-sec .custom-img\":false},[\"width:100%\",\"max-width:500px\",\"margin:25px auto 0\"]],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"margin-right:0\"]],[false,{\".custom-txt-img-sec .custom-txt:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".text-grey-box p:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".text-grey-box\":false},[\"margin-bottom:2px\"]],[false,{\".review_sec2 i\":false},[\"font-weight:500\"]],[false,{\".review_sec2 i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\",\"color:#152649\"]],[false,{\"section.custom-full-bg.journey-roadmap .container-md\":false},[\"padding:0px\"]],[false,{\".journey-roadmap-header\":false},[\"padding:0px 24px\"]],[false,{\".journey-roadmap-header\":false},[\"flex-wrap:wrap\"]],[false,{\".journey-roadmap-header .heading-box\":false},[\"width:100%\",\"text-align:center\",\"margin-bottom:32px\"]],[false,{\".journey-roadmap-header .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".journey-roadmap-logo\":false},[\"width:65%\",\"margin:0px auto\",\"margin-bottom:24px\"]],[false,{\".devops-services\":false},[\"padding:80px 0px 50px\",\"background-color:#f1f1f1\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:14px\"]],[false,{\".devops-services .applications-col h5\":false},[\"padding-left:31px\"]],[false,{\".devops-services .applications-col h5::before\":false},[\"margin-top:2px\"]],[false,{\".mrdata-logo\":false},[\"left:0\",\"top:-55px\",\"bottom:auto\",\"justify-content:center\",\"right:0\"]],[false,{\".reliability-engineers\":false},[\"text-align:center\"]],[false,{\".reliability-engineers:not(#_#_#_#_#_#_#_)\":false},[\"padding:85px 27px 40px 27px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-197px\"]],[false,{\".kubernetes-sec .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".kubernetes-sec .custom-txt p:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".kubernetes-sec .custom-txt p span\":false},[\"font-weight:500\"]],[false,{\".kubernetes-sec .custom-txt p br\":false},[\"display:none\"]],[false,{\".kubernetes-sec .heading-box h2\":false},[\"margin-bottom:24px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:192px 0px 104px 0px\"]],[false,{\".col-row ul\":false},[\"column-count:1\"]],[false,{\".col-row ul li\":false},[\"font-size:16px\",\"margin-bottom:15px\"]],[false,{\".cost-effective-sec .inner\":false},[\"flex-wrap:wrap\"]],[false,{\".cost-effective-sec .left-text\":false,\".cost-effective-sec .custom-txt\":false},[\"width:100%\"]],[false,{\".infrastructure-sec .heading-box h2\":false,\".cost-effective-sec .heading-box h2\":false},[\"margin-bottom:32px\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:30px\"]],[false,{\".cost-effective-sec .heading-box h2 span\":false},[\"display:inline\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col\":false},[\"padding-bottom:15px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".infrastructure-sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-190px\"]],[false,\"}\"],[false,{\".custom-colm-sec\":false},[\"background-color:#f1f1f1\",\"padding:120px 0\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".custom-colm-sec\":false},[\"padding:60px 0\"]],[false,{\".custom-txt-img-sec .custom-txt .btn-blue\":false},[\"margin-top:30px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".custom-colm-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"margin:45px -10px 40px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .inner\":false},[\"margin:40px -8px 20px\"]],[false,\"}\"],[false,{\".custom-colm-sec .slick-list\":false},[\"padding-bottom:20px\"]],[false,{\".custom-colm-sec .slick-track:not(#_#_#_#_#_#_#_)\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".custom-colm-sec .colm\":false},[\"border-radius:16px\",\"-webkit-box-shadow:0 8px 16px rgba(0,0,0,.1)\",\"box-shadow:0 8px 16px rgba(0,0,0,.1)\",\"width:calc(33.33% - 14px)\",\"background-color:#fff\",\"margin-right:10px\",\"margin-left:10px\",\"position:relative\"]],[false,{\".custom-colm-sec .colm:not(#_#_#_#_#_#_#_)\":false},[\"height:inherit\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-colm-sec .colm\":false},[\"display:flex\",\"flex-direction:column\",\"justify-content:space-between\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm\":false},[\"margin:0 8px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm:last-of-type\":false},[\"margin-right:0\"]],[false,{\".custom-colm-sec .colm .img-box amp-img\":false,\".custom-colm-sec .colm .img-box amp-anim\":false},[\"border-radius:16px\"]],[false,{\".custom-colm-sec .colm .txt-box\":false},[\"padding:22px 40px 20px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".custom-colm-sec .colm .txt-box\":false},[\"padding:20px 20px 20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box\":false},[\"padding:16px 13px 20px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:32px\",\"line-height:1\",\"color:#24c1ff\",\"margin-bottom:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:27px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:24px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:22px\",\"margin-bottom:11px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm .txt-box p\":false},[\"font-size:18px\",\"color:#707070\",\"line-height:1.6\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-colm-sec .colm .txt-box p\":false},[\"font-size:16px\",\"line-height:22px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box p\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm .txt-box .see-more\":false},[\"position:absolute\",\"font-size:22px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#152649\",\"text-decoration:underline\",\"line-height:1.5\",\"font-weight:bold\",\"right:40px\",\"bottom:27px\"]],[false,{\".custom-colm-sec .colm .txt-box .see-more:hover\":false},[\"color:#24c1ff\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-colm-sec .colm .txt-box .see-more\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box .see-more\":false},[\"font-size:16px\",\"bottom:20px\"]],[false,\"}\"],[false,{\".custom-colm-sec .btn-wrapper\":false},[\"text-align:center\"]],[false,{\".custom-colm-sec .btn-wrapper .btn\":false},[\"margin-top:48px\"]],[false,{\".demand-sec\":false},[\"padding-top:240px\",\"padding-bottom:200px\",\"text-align:center\",\"text-align:center\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/imagem_scale.png\\\")\",\"background-repeat:no-repeat\",\"background-size:100% 100%\",\"position:relative\",\"background-attachment:fixed\"]],[false,{\"section.demand-sec:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"height:100%\",\"width:100%\",\"background:#39dcce\",\"background-color:rgba(57,220,206,.1)\",\"top:0\",\"left:0\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".demand-sec\":false},[\"padding-top:150px\",\"padding-bottom:150px\"]],[false,\"}\"],[false,{\".demand-sec .btn-blue.dark-blue\":false},[\"color:#f7f7f7\"]],[false,{\".demand-sec .colm:nth-child(3) p\":false},[\"padding:0px 35px\"]],[false,{\".demand-sec .btn-blue.dark-blue:hover\":false},[\"color:#152649\"]],[false,{\"section.demand-sec .inner .slick-track\":false},[\"display:flex\"]],[false,{\"section.demand-sec .inner .slick-list\":false},[\"display:flex\"]],[false,\"@media (max-width: 992px){\"],[false,{\".demand-sec\":false},[\"padding:120px 0\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".demand-sec\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".demand-sec .heading-box\":false},[\"padding-bottom:45px\"]],[false,{\".demand-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".demand-sec .inner .slick-dots\":false},[\"position:absolute\",\"right:-5px\",\"top:50%\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\"]],[false,{\".demand-sec .inner .slick-slider .slick-list\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".demand-sec .inner .slick-slider .slick-track\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".demand-sec .inner .slick-dots li\":false},[\"list-style-type:none\",\"height:70px\",\"width:3px\",\"margin:4px 0\"]],[false,{\".demand-sec .inner .slick-dots li.slick-active button\":false},[\"background:linear-gradient(90deg,#23f2e2 0,#93f150 100%)\",\"outline:none\"]],[false,{\".demand-sec .inner .slick-dots li button\":false},[\"width:100%\",\"height:100%\",\"background-color:#fff\",\"border-radius:2px\",\"font-size:0\",\"border:none\",\"outline:none\"]],[false,{\".demand-sec .inner .slick-slide amp-img\":false,\".demand-sec .inner .slick-slide amp-anim\":false},[\"margin:0px auto\"]],[false,{\".demand-sec .colm\":false},[\"width:30%\",\"position:relative\",\"margin-bottom:40px\",\"display:flex\",\"flex-direction:column\"]],[false,\"@media (max-width: 992px){\"],[false,{\".demand-sec .colm\":false},[\"width:32%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".demand-sec .colm\":false},[\"width:100%\",\"padding-bottom:10px\"]],[false,\"}\"],[false,{\".demand-sec .colm figure\":false},[\"margin-bottom:50px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".demand-sec .colm figure\":false},[\"max-width:110px\",\"margin:0 auto 50px\"]],[false,\"}\"],[false,{\".demand-sec .colm h4\":false},[\"margin-bottom:18px\",\"font-size:30px\",\"line-height:1\",\"color:#152649\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".demand-sec .colm h4\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".demand-sec .colm p\":false},[\"color:#152649\",\"line-height:1.6\",\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"padding:0px 21px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".demand-sec .colm p\":false},[\"padding:0px 6px\"]],[false,{\".demand-sec .colm:nth-child(3) p\":false},[\"padding:0px 6px\"]],[false,{\".demand-sec .btn-blue.dark-blue\":false},[\"color:#f7f7f7\",\"padding:15px 30px\",\"font-size:15px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".demand-sec .btn-blue.dark-blue\":false},[\"padding:15px 29px\",\"font-size:11px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:14px\",\"padding:0px 25px\"]],[false,\"}\"],[false,{\".demand-sec .colm .btn-wrapper\":false},[\"margin:auto 0 0 0\"]],[false,{\".demand-sec .colm .btn-wrapper a\":false},[\"line-height:normal\"]],[false,\"@media (max-width: 767px){\"],[false,{\".demand-sec .colm .btn-wrapper\":false},[\"position:inherit\",\"bottom:inherit\",\"margin-top:40px\"]],[false,\"}\"],[false,{\".ecosystem-sec\":false},[\"padding:200px 0 240px\",\"background-color:#f9f9f9\"]],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec\":false},[\"padding:100px 0 150px\",\"background-color:#f9f9f9\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\"section.ecosystem-sec .slick-track:not(#_#_#_#_#_#_#_#_)\":false},[\"display:flex\"]],[false,{\".ecosystem-sec .inner .slick-slide:not(#_#_#_#_#_#_#_)\":false},[\"height:inherit\"]],[false,\"}\"],[false,\"@media (min-width: 620px) and (max-width: 767px){\"],[false,{\"section.ecosystem-sec .inner .slick-list\":false},[\"padding-right:180px\"]],[false,{\"section.ecosystem-sec .inner .inner-colm .slick-list\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner .inner-colm amp-img\":false,\".ecosystem-sec .inner .inner-colm amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec .inner .inner-colm amp-img\":false,\".ecosystem-sec .inner .inner-colm amp-anim\":false},[\"width:55%\",\"margin:auto\"]],[false,\"}\"],[false,\"@media (max-width: 766px){\"],[false,{\".ecosystem-sec .inner .inner-colm amp-img\":false,\".ecosystem-sec .inner .inner-colm amp-anim\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"font-size:24px\",\"font-weight:bold\",\"color:#1d2848\",\"margin-bottom:20px\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"font-size:20px\",\"margin-bottom:5px\"]],[false,\"}\"],[false,\"@media (min-width: 480px) and (max-width: 580px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"display:inline-block\",\"float:right\",\"vertical-align:middle\",\"margin-top:18px\",\"width:70px\",\"position:absolute\",\"right:0px\",\"top:0px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:18px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:23px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:-16px\"]],[false,{\".ecosystem-sec .inner\":false},[\"padding:150px 0 100px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec\":false},[\"padding:120px 0 0\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:20px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec\":false},[\"padding:80px 0 0\"]],[false,\"}\"],[false,{\".ecosystem-sec .heading-box\":false},[\"padding-bottom:75px\",\"text-align:center\"]],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .heading-box\":false},[\"padding-bottom:0px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .heading-box\":false},[\"padding-bottom:0\",\"text-align:left\",\"position:relative\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false},[\"width:68%\",\"position:relative\",\"margin-top:0px\",\"margin-bottom:22px\",\"float:left\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:35px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:28px\",\"width:50px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(5) .inner-colm .back-slide .icon\":false},[\"margin-top:32px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5) .inner-colm .back-slide .icon\":false},[\"margin-top:26px\",\"width:50px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .front-slide p\":false},[\"padding-right:40px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .front-slide p\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(1) .inner-colm .back-slide .left-img\":false},[\"display:none\"]],[false,{\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"float:left\",\"width:60%\",\"position:relative\",\"margin-top:0px\",\"margin-bottom:20px\"]],[false,{\".ecosystem-sec .heading-box h2\":false},[\"color:#28d9cb\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .heading-box h2\":false},[\"width:calc(100% - 118px)\"]],[false,{\".ecosystem-sec .colm .back-slide .left-img\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (min-width: 300px) and (max-width: 340px){\"],[false,{\".ecosystem-sec .heading-box h2\":false},[\"font-size:22px\"]],[false,\"}\"],[false,{\".ecosystem-sec .heading-box figure\":false},[\"display:none\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .heading-box figure\":false},[\"display:block\",\"position:absolute\",\"bottom:0\",\"right:20px\",\"max-width:115px\"]],[false,\"}\"],[false,\"@media (min-width: 300px) and (max-width: 340px){\"],[false,{\".ecosystem-sec .heading-box figure\":false},[\"bottom:-31px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"position:relative\",\"padding:150px 0 100px\",\"z-index:1\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .inner\":false},[\"padding:150px 70px 100px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .inner\":false},[\"padding:150px 0px 100px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .inner\":false},[\"padding:40px 0 80px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner::before\":false},[\"content:\\\"\\\"\",\"width:67%\",\"height:52%\",\"position:absolute\",\"border:1px solid #24c1ff\",\"left:16.5%\",\"top:23%\",\"z-index:-1\"]],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec.slick-list\":false},[\"padding:20px 0\"]],[false,{\".ecosystem-sec .inner::before\":false},[\"display:none\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm\":false},[\"border-radius:16px\",\"-webkit-box-shadow:8px 16px 32px rgba(0,0,0,.1)\",\"box-shadow:8px 16px 32px rgba(0,0,0,.1)\",\"background-color:#fff\",\"padding:25px 40px 25px 40px\",\"margin-bottom:40px\",\"width:30.2%\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"margin-bottom:30px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-bottom:30px\",\"width:32%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm\":false},[\"-webkit-box-shadow:0px 0px 5px rgba(0,0,0,.1)\",\"box-shadow:0px 0px 5px rgba(0,0,0,.1)\",\"width:32%\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .inner-colm .slick-track\":false},[\"display:flex\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"height:inherit\",\"padding-bottom:30px\",\"padding-top:10px\",\"display:flex\",\"flex-direction:column\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"height:inherit\",\"padding-bottom:30px\",\"padding-top:25px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"margin-top:auto\",\"position:relative\",\"top:28px\",\"max-width:180px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more:not(#_#_#_#_#_#_#_)\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false},[\"bottom:6px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm\":false},[\"padding:30px\"]],[false,\"}\"],[false,\"@media (max-width: 1100px){\"],[false,{\".ecosystem-sec .colm\":false},[\"padding:30px 20px\",\"width:31.5%\"]],[false,\"}\"],[false,\"@media (max-width: 1100px){\"],[false,{\".ecosystem-sec .colm\":false},[\"padding:15px 20px\",\"width:31.5%\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-left:10px\",\"margin-right:10px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-left:4px\",\"margin-right:4px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-53%)\",\"transform:translateY(-53%)\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-57%)\",\"transform:translateY(-57%)\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-55%)\",\"transform:translateY(-55%)\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-54%)\",\"transform:translateY(-54%)\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:unset\",\"transform:unset\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:translateY(55%)\",\"transform:translateY(55%)\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:translateY(51%)\",\"transform:translateY(51%)\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:translateY(50%)\",\"transform:translateY(50%)\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:unset\",\"transform:unset\"]],[false,\"}\"],[false,\"@media (min-width: 993px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"position:absolute\",\"left:0\",\"right:0\",\"top:49.5%\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\",\"margin-left:auto\",\"margin-right:auto\",\"width:28%\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:30%\"]],[false,\"@media (min-width: 1920px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:30%\"]],[false,\"}\"],[false,\"@media (min-width: 1440px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (min-width: 993px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"display:none\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"color:#152649\",\"font-size:20px\",\"line-height:1.2\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false,\".ecosystem-sec .colm h5:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:15px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:17px\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false,\".ecosystem-sec .colm h5:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm h4\":false},[\"font-size:24px\",\"padding-right:110px\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:25px\"]],[false,{\".ecosystem-sec .slick-track\":false},[\"display:flex\"]],[false,{\".ecosystem-sec .slick-track .slick-slide\":false},[\"height:inherit\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec .colm h4\":false},[\"font-size:20px\",\"padding-right:35px\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:30px\"]],[false,\"}\"],[false,\"@media (max-width: 380px){\"],[false,{\".ecosystem-sec .colm h4\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm h4\":false},[\"margin-bottom:30px\",\"font-weight:bold\"]],[false,{\".ecosystem-sec .colm h5\":false},[\"font-weight:900\",\"margin-top:50px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".ecosystem-sec .colm h5\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm p\":false},[\"font-size:16px\",\"line-height:1.5\",\"color:#707070\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"padding-top:0px\",\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm h5\":false},[\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm\":false},[\"height:fit-content\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm p b\":false},[\"font-size:13px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm p b\":false},[\"color:#24c1ff\",\"font-weight:bold\"]],[false,\"@media (min-width: 768px) and (max-width: 992px){\"],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:51px\"]],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm p b\":false},[\"color:#707070\"]],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 375px){\"],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .back-slide\":false},[\"position:relative\"]],[false,{\".ecosystem-sec .colm .back-slide h6\":false},[\"font-size:14px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#28d9cb\",\"margin-bottom:10px\"]],[false,{\".ecosystem-sec .colm .back-slide .left-img\":false},[\"max-width:190px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .right-img\":false},[\"margin-bottom:5px\",\"margin-top:15px\"]],[false,{\".ecosystem-sec .colm .back-slide .right-img\":false},[\"max-width:70px\",\"position:absolute\",\"bottom:60px\",\"right:0px\"]],[false,{\".ecosystem-sec .colm .back-slide p\":false},[\"max-width:100%\",\"display:inline-block\"]],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide p\":false},[\"max-width:calc(100% - 90px)\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide p\":false},[\"max-width:calc(100% - 67px)\"]],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide .right-img\":false},[\"margin:0px\"]],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide .right-img amp-img\":false,\".ecosystem-sec .colm:nth-child(2) .back-slide .right-img amp-anim\":false},[\"width:70%\",\"margin-left:auto\",\"margin-top:0\",\"top:0\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"color:#28d9cb\",\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:900\",\"margin-top:0px\",\"display:block\",\"text-decoration:underline\"]],[false,{\".ecosystem-sec .colm:nth-child(3) .back-slide .back_heading\":false,\".ecosystem-sec .colm:nth-child(6) .back-slide .back_heading\":false},[\"text-align:left\",\"width:75%\",\"float:right\"]],[false,{\".ecosystem-sec .colm:nth-child(3) .back-slide .icon\":false,\".ecosystem-sec .colm:nth-child(6) .back-slide .icon\":false},[\"float:left\",\"margin-top:18px\"]],[false,{\".ecosystem-sec .colm:nth-child(3) .back-slide .icon\":false},[\"margin-top:10px\"]],[false,{\".ecosystem-sec .colm .slick-dots\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"position:absolute\",\"right:25px\",\"bottom:11px\",\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm .slick-dots li\":false},[\"list-style-type:none\",\"width:4px\",\"height:4px\",\"margin:0 5px\"]],[false,{\".ecosystem-sec .colm .slick-dots li button\":false},[\"display:block\",\"width:100%\",\"height:100%\",\"border-radius:50%\",\"background-color:#c9c9c9\",\"border:none\",\"font-size:0\"]],[false,{\".ecosystem-sec .colm .slick-dots li.slick-active\":false},[\"width:8px\",\"height:8px\"]],[false,{\".ecosystem-sec .colm .slick-dots li.slick-active button\":false},[\"background-color:#28d9cb\"]],[false,{\".ecosystem-sec .colm .slick-arrow\":false},[\"border:none\",\"bottom:11px\",\"position:absolute\",\"background:transparent\",\"z-index:2\",\"cursor:pointer\",\"height:13px\"]],[false,{\".ecosystem-sec .colm .slick-arrow.slick-disabled\":false},[\"opacity:0\",\"visibility:hidden\"]],[false,{\".ecosystem-sec .colm .slick-arrow i\":false},[\"color:#28d9cb\"]],[false,{\".ecosystem-sec .colm .slick-arrow.slick-prev\":false},[\"right:90px\"]],[false,{\".ecosystem-sec .colm .slick-arrow.slick-next\":false},[\"right:0\"]],[false,{\".partner-sec\":false},[\"background-color:#152649\",\"text-align:center\",\"padding:0px 0 240px\",\"position:relative\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".partner-sec\":false},[\"padding:0px 0 120px\"]],[false,\"}\"],[false,{\".bg-img\":false},[\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".partner-sec\":false},[\"padding:0px 0 90px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".partner-sec\":false},[\"padding:0px 0 85px\"]],[false,\"}\"],[false,{\".back-slide .partner-sec .bg-img\":false},[\"position:absolute\",\"top:0\",\"width:100%\"]],[false,{\".partner-sec .bg-img::before\":false},[\"content:\\\"\\\"\",\"width:100%\",\"height:265px\",\"position:absolute\",\"left:0\",\"bottom:-3px\",\"background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(21,38,73,0)),to(#152649))\",\"background-image:linear-gradient(rgba(21,38,73,0),#152649)\"]],[false,{\".partner-sec .container-md\":false},[\"margin-top:-140px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".partner-sec .bg-img::before\":false},[\"height:165px\"]],[false,\"}\"],[false,{\".partner-sec .bg-img .for-desktop\":false},[\"display:block\"]],[false,{\"figure.for-desktop amp-img\":false,\"figure.for-desktop amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".partner-sec .bg-img .for-desktop\":false},[\"display:none\"]],[false,\"}\"],[false,{\".partner-sec .bg-img .for-mobile\":false},[\"display:none\",\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".partner-sec .bg-img .for-mobile\":false},[\"display:block\"]],[false,\"}\"],[false,{\".partner-sec .bg-img .for-mobile amp-img\":false,\".partner-sec .bg-img .for-mobile amp-anim\":false},[\"width:100%\"]],[false,{\".partner-sec .heading-box\":false},[\"padding-bottom:90px\",\"z-index:1\",\"position:relative\"]],[false,{\".partner-sec .heading-box h2\":false},[\"color:#fff\",\"max-width:600px\",\"margin:auto\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".partner-sec .heading-box h2\":false},[\"max-width:455px\"]],[false,\"}\"],[false,{\".partner-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".partner-sec .slick-track:not(#_#_#_#_#_#_#_)\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".partner-sec .slick-arrow\":false},[\"background:transparent\",\"color:#24c1ff\",\"border:none\",\"font-size:20px\",\"position:absolute\",\"top:calc(50% - 11px)\",\"z-index:1\"]],[false,{\".partner-sec .slick-arrow.slick-disabled\":false},[\"opacity:0\",\"visibility:hidden\"]],[false,{\".partner-sec .slick-arrow.slick-prev\":false},[\"left:0\"]],[false,{\".partner-sec .slick-arrow.slick-next\":false},[\"right:0\"]],[false,{\".partner-sec .colm\":false},[\"width:33.33%\",\"padding:0 40px\",\"border-right:1px solid rgba(112,128,167,.3)\"]],[false,{\".partner-sec .colm:not(#_#_#_#_#_#_#_)\":false},[\"height:inherit\"]],[false,\"@media (max-width: 992px){\"],[false,{\".partner-sec .colm\":false},[\"padding:0 20px\"]],[false,\"}\"],[false,\"@media (max-width: 540px){\"],[false,{\".partner-sec .colm\":false},[\"border-right:none\",\"padding:0\"]],[false,\"}\"],[false,{\".partner-sec .colm:last-of-type\":false},[\"border-right:none\"]],[false,{\".partner-sec .colm h6\":false},[\"font-size:20px\",\"line-height:1\",\"color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"min-height:64px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".partner-sec .colm h6\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".partner-sec .colm figure\":false},[\"margin:40px 0\"]],[false,{\".partner-sec .colm figure amp-img\":false,\".partner-sec .colm figure amp-anim\":false},[\"margin:auto\"]],[false,{\".partner-sec .colm p\":false},[\"font-size:16px\",\"line-height:22px\",\"color:#7080a7\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\"]],[false,{\".solution-sec\":false},[\"padding:240px 0\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".solution-sec\":false},[\"padding:130px 0\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec\":false},[\"padding:100px 0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec\":false},[\"background-color:#24c1ff\",\"padding:57px 18px 80px\"]],[false,\"}\"],[false,{\".solution-sec .heading-box\":false},[\"margin-bottom:47px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .heading-box label\":false},[\"color:#fff\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper table\":false},[\"width:100%\",\"border-collapse:collapse\"]],[false,{\".solution-sec .table-wrapper #data-more-btn\":false},[\"background:no-repeat\",\"border:none\",\"margin:0px auto\",\"display:block\",\"font-weight:bold\",\"color:#152649\",\"position:relative\",\"padding:0px 15px\"]],[false,{\".solution-sec .table-wrapper #data-more-btn::after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0px\",\"right:0\",\"width:6px\",\"height:6px\",\"bottom:0\",\"margin:auto\",\"transform:rotate(45deg)\",\"border:#152649 solid 2px\",\"border-left:0px\",\"border-top:0px\"]],[false,{\".solution-sec .table-wrapper table .accor-toggle-btn\":false},[\"position:absolute\",\"right:0px\",\"top:0\",\"width:8px\",\"height:8px\",\"border:#152649 solid 2px\",\"transform:rotate(45deg)\",\"border-top:none\",\"border-left:none\",\"display:none\",\"margin-top:10px\"]],[false,{\"span.accor-toggle-btn.active:not(#_#_#_#_#_#_#_#_)\":false},[\"transform:rotate(-135deg)\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper tr\":false},[\"display:flex\",\"flex-wrap:wrap\",\"border-top:1px solid #f1f1f1\",\"padding:15px 0\"]],[false,{\".solution-sec .table-wrapper tr td\":false},[\"display:block\",\"width:100%\"]],[false,{\".solution-sec .table-wrapper tr.table-head\":false},[\"display:none\"]],[false,{\".solution-sec .table-wrapper td:nth-child(1)\":false},[\"order:1\"]],[false,{\".solution-sec .table-wrapper td:nth-child(3)\":false},[\"order:2\"]],[false,{\".solution-sec .table-wrapper td:nth-child(2)\":false},[\"order:3\"]],[false,{\".solution-sec .table-wrapper table .accor-toggle-btn\":false},[\"display:block\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#152649\",\"line-height:1.16\",\"border-bottom:1px solid #c9c9c9\",\"text-align:left\"]],[false,{\".solution-sec .accor-wrapper th\":false,\".solution-sec .accor-wrapper td\":false},[\"border:none\"]],[false,{\".solution-sec .table-wrapper th:not(:first-of-type)\":false,\".solution-sec .table-wrapper td:not(:first-of-type)\":false},[\"padding-left:20px\"]],[false,{\".solution-sec .table-wrapper td:nth-child(4)\":false,\".solution-sec .table-wrapper td:nth-child(2)\":false,\".solution-sec .table-wrapper td:nth-child(3)\":false},[\"font-weight:bold\"]],[false,\"@media (min-width:767px){\"],[false,{\".solution-sec .accor-wrapper tr td:not(#_#_#_#_#_#_#_#_)\":false},[\"width:31%\",\"padding-left:0px\"]],[false,{\".solution-sec .accor-wrapper tr td:nth-last-child(1):not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:10px\"]],[false,\"}\"],[false,\"@media (min-width: 1280px) and (max-width: 1350px){\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec .table-wrapper th:not(:first-of-type)\":false,\".solution-sec .table-wrapper td:not(:first-of-type)\":false},[\"padding-left:15px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper th:not(:first-of-type)\":false,\".solution-sec .table-wrapper td:not(:first-of-type)\":false},[\"padding-left:0\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"font-size:14px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"border:none\",\"text-align:right\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper th\":false},[\"font-weight:bold\",\"padding:0 0 32px 0\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper th\":false},[\"display:none\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td\":false},[\"font-weight:500\",\"padding:16px 0\",\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td\":false},[\"display:block\",\"padding:5px 0\",\"position:relative\"]],[false,{\".solution-sec .table-wrapper table tbody tr td:nth-child(1)::before\":false},[\"display:none\"]],[false,{\".solution-sec .table-wrapper table tbody tr .accor-wrapper td:nth-child(1)::before\":false},[\"display:block\"]],[false,{\".solution-sec .table-wrapper td::before\":false},[\"content:attr(data-th)\",\"position:absolute\",\"left:0\",\"color:#152649\",\"font-weight:bold\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td.sometimes\":false},[\"color:#7080a7\",\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td.sometimes\":false},[\"color:#5970a8\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td.rare\":false},[\"color:#ff555f\",\"font-weight:bold\"]],[false,{\".solution-sec .table-wrapper td.always\":false},[\"color:#28d9cb\",\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td.always\":false},[\"color:#fff\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td:last-of-type\":false},[\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td:last-of-type:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".solution-sec .table-wrapper tr .accor-wrapper tr\":false},[\"border:none\",\"padding-top:0px\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td:last-of-type amp-img\":false,\".solution-sec .table-wrapper td:last-of-type amp-anim\":false},[\"width:23px\",\"margin-right:7px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td:last-of-type amp-img\":false,\".solution-sec .table-wrapper td:last-of-type amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td:first-of-type\":false},[\"width:35%\"]],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec .table-wrapper td:first-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td:first-of-type\":false},[\"width:100%\",\"text-align:revert\",\"font-weight:500\",\"padding-right:25px\"]],[false,{\".solution-sec .table-wrapper .accor-wrapper table tr td\":false},[\"padding-right:0px\",\"width:100%\"]],[false,\"}\"],[false,{\".future-vision-sec\":false},[\"background-color:#f9f9f9\",\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec\":false},[\"padding:0\",\"padding-bottom:190px\"]],[false,\"}\"],[false,{\".future-vision-sec .inner-vision-sec\":false},[\"background-color:#062b43\",\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .inner-vision-sec\":false},[\"padding:0\"]],[false,\"}\"],[false,{\".future-vision-sec .bg-img\":false},[\"position:relative\",\"width:39%\"]],[false,\"@media (max-width: 1800px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(18% + 45px)\",\"margin-right:-45px\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:35%\"]],[false,\"}\"],[false,\"@media (max-width: 1680px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:37%\"]],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(17% + 50px)\",\"margin-right:-50px\",\"z-index:1\"]],[false,\"}\"],[false,\"@media (max-width: 1536px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:35%\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:30%\",\"height:100%\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:286px\"]],[false,{\".future-vision-sec .bg-img amp-img\":false,\".future-vision-sec .bg-img amp-anim\":false},[\"object-fit:cover\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"position:inherit\",\"width:100%\",\"max-width:inherit\",\"margin:auto\",\"margin-bottom:-160px\"]],[false,\"}\"],[false,{\".future-vision-sec .bg-img amp-img\":false,\".future-vision-sec .bg-img amp-anim\":false},[\"width:100%\",\"height:100%\"]],[false,{\".future-vision-sec .bg-img::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"bottom:0\",\"width:100%\",\"height:256px\",\"background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(4,40,63,0)),to(#042941))\",\"background-image:linear-gradient(rgba(4,40,63,0),#042941)\",\"left:0\",\"display:none\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .bg-img::before\":false},[\"display:block\"]],[false,\"}\"],[false,{\".future-vision-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"position:relative\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .inner\":false},[\"height:460px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .inner\":false},[\"height:auto\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:45%\",\"padding-right:8%\"]],[false,\"@media (max-width: 1536px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"padding-right:7%\"]],[false,\"}\"],[false,{\".container-spacial\":false},[\"padding-left:17%\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".container-spacial\":false},[\"padding-left:12%\"]],[false,\"}\"],[false,\"@media (max-width: 1536px){\"],[false,{\".container-spacial\":false},[\"padding-left:9%\"]],[false,\"}\"],[false,\"@media (max-width: 1440px){\"],[false,{\".container-spacial\":false},[\"padding-left:7%\"]],[false,\"}\"],[false,\"@media (max-width: 1800px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:47%\"]],[false,\"}\"],[false,\"@media (max-width: 1440px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:50%\",\"padding-right:5%\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:31%\"]],[false,{\".kubernetes-sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-213px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".container-spacial\":false},[\"padding-left:0px\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:31%\"]],[false,{\".future-vision-sec .custom-txt\":false},[\"width:51%\",\"padding-right:4%\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"font-size:45px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:55%\",\"padding-right:7%\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:30%\"]],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:51%\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:30%\"]],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:29.8%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:100%\",\"order:-1\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:100%\",\"padding-right:20px\",\"padding-left:20px\",\"padding-bottom:34px\",\"border-bottom:1px solid rgba(241,241,241,.15)\",\"margin-bottom:38px\",\"z-index:1\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"color:#fff\",\"margin-bottom:40px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:175px\",\"font-size:30px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:71px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"font-size:20px\",\"padding-right:4px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"font-size:24px\",\"margin-bottom:34px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt h2 span\":false},[\"color:#24c1ff\"]],[false,{\".future-vision-sec .custom-txt p\":false},[\"color:#fff\",\"font-size:16px\",\"line-height:1.5\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"padding-right:30px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .custom-txt p\":false},[\"font-size:12px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-txt p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt p a\":false},[\"text-decoration:underline\",\"color:#24c1ff\"]],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(15.95% + 60px)\",\"margin-right:-60px\",\"z-index:1\"]],[false,\"@media (max-width: 1536px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(18% + 60px)\",\"margin-right:-60px\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(18% + 60px)\",\"margin-right:-60px\"]],[false,{\".review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:19px\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:19px\"]],[false,{\".kubernetes-sec .custom-txt p\":false},[\"font-size:19px\"]],[false,{\".col-row ul li\":false},[\"font-size:19px\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:44px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col\":false},[\"padding-bottom:15px\",\"width:calc(50% - 27px)\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col li\":false},[\"padding-bottom:20px\",\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(15% + 60px)\",\"margin-right:-60px\"]],[false,{\".reliability-engineers p\":false},[\"font-size:17px\",\"font-weight:bold\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:160px 0px 105px 0px\"]],[false,{\".col-row ul li\":false},[\"font-size:17px\",\"margin-bottom:15px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(19% + 60px)\"]],[false,{\".text-grey-box p:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:15px\"]],[false,{\".review_sec2 i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:16px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-183px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:192px 0px 84px 0px\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:15px\"]],[false,{\".reliability-engineers\":false},[\"padding:40px 30px 40px 78px\",\"margin-top:40px\"]],[false,{\".reliability-engineers p\":false},[\"font-size:15px\",\"font-weight:bold\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-137px\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:35px\"]],[false,{\".infrastructure-sec\":false},[\"margin-top:-234px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img amp-img\":false,\".future-vision-sec .custom-img amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:100%\",\"-webkit-box-orient:vertical\",\"-webkit-box-direction:reverse\",\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"padding:0px 25px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img .inner-img\":false},[\"position:relative\",\"margin-bottom:15px\"]],[false,{\".future-vision-sec .custom-img .inner-img h5\":false},[\"color:#fff\",\"position:absolute\",\"padding:40px 0px 0px 30px\",\"font-size:42px\",\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img .inner-img\":false},[\"margin-bottom:-155px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"position:absolute\",\"font-size:24px\",\"line-height:1.16\",\"color:#24c1ff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding-right:50px\",\"max-width:256px\",\"bottom:30px\",\"left:30px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:15px\"]],[false,{\".devops-services .applications-col ul li\":false},[\"font-size:14px\"]],[false,{\".srvs-text-box p\":false},[\"font-size:14px\"]],[false,{\".srvs-text-box\":false},[\"margin-bottom:15px\"]],[false,{\".devops-services .applications-col h5\":false},[\"margin-bottom:15px\"]],[false,{\".devops-services .applications-col ul\":false},[\"margin-bottom:15px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-186px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-167px\"]],[false,{\".reliability-engineers p\":false},[\"font-size:14px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:11px\"]],[false,{\".fortune-box\":false},[\"width:100%\"]],[false,{\".col-row ul li\":false},[\"font-size:15px\",\"margin-bottom:15px\"]],[false,{\".col-row ul\":false},[\"column-gap:0\"]],[false,{\".cost-effective-sec .left-text p\":false},[\"font-size:14px\",\"line-height:1.6\",\"color:#707070\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:29px\"]],[false,{\".cost-effective-sec .inner\":false},[\"margin-bottom:40px\"]],[false,{\".cost-effective-sec .review_sec2\":false},[\"margin-top:0\"]],[false,{\".cost-effective-sec .review_sec .swiper-slide i\":false},[\"margin:0 0px 10px\"]],[false,{\".infrastructure-sec\":false},[\"margin-top:-187px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:24px\"]],[false,{\".main-scroll-box\":false},[\"overflow:scroll\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".devops-consulting-banner .title\":false},[\"margin-bottom:10px\"]],[false,{\".devops-consulting-banner h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:32px\"]],[false,\"}\"],[false,\"@media (max-width: 380px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,{\".contact-form-info-right ul li\":false},[\"font-size:14px\"]],[false,{\".contact-form-info-right ul li:first-of-type:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:20px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img .overlay-txt i\":false},[\"position:absolute\",\"right:7px\",\"background:rgba(255,255,255,.2)\",\"width:24px\",\"height:24px\",\"border-radius:50%\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-webkit-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"font-size:18px\",\"top:calc(50% - 10px)\"]],[false,{\".future-vision-sec .custom-img p\":false},[\"font-size:14px\",\"color:#bebebe\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img p\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".lets-talk-sec\":false},[\"padding:55px 0\",\"-webkit-box-shadow:8px 0px 32px rgba(0,0,0,.1)\",\"box-shadow:8px 0px 32px rgba(0,0,0,.1)\"]],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec\":false},[\"padding:30px 0 0\"]],[false,\"}\"],[false,{\".lets-talk-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .inner\":false},[\"max-width:300px\",\"text-align:center\",\"margin:auto\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".lets-talk-sec .inner\":false},[\"max-width:250px\"]],[false,\"}\"],[false,{\".lets-talk-sec .heading-box\":false},[\"width:calc(100% - 370px)\"]],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .heading-box\":false},[\"width:calc(100% - 300px)\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .heading-box\":false},[\"width:100%\",\"margin-bottom:18px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".lets-talk-sec .heading-box h2\":false},[\"font-size:25px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".lets-talk-sec .heading-box h2\":false},[\"font-size:20px\"]],[false,\"}\"],[false,{\".lets-talk-sec .btn-wrapper\":false},[\"width:306px\"]],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"width:100%\",\"height:80px\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"border-radius:100px\"]],[false,\"@media (max-width:1780px){\"],[false,{\".lets-talk-sec .btn-wrapper\":false},[\"width:250px\"]],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"height:70px\",\"font-size:24px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".lets-talk-sec .btn-wrapper\":false},[\"max-width:250px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"height:60px\",\"font-size:25px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"width:132px\",\"height:40px\",\"font-size:20px\",\"padding:5px\",\"margin:auto\",\"margin-bottom:-20px\"]],[false,{\".tek-world-scale .inner .custom-img\":false},[\"margin:0px auto\",\"display:block\"]],[false,\"}\"],[false,{\".custom-grid-sec\":false},[\"background-color:#f1f1f1\",\"padding:100px 0px 110px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec\":false},[\"padding-right:120px 0\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm amp-img\":false,\".custom-grid-sec .inner .colm amp-anim\":false},[\"width:60px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec\":false},[\"padding-right:120px 0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-grid-sec\":false},[\"padding:120px 0 80px\",\"margin-top:-155px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"margin:0 -40px\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"width:calc(33.333% - 27px)\",\"margin-right:40px\",\"display:flex\",\"flex-direction:column\"]],[false,{\".custom-grid-sec .inner\":false},[\"margin:0\"]],[false,{\".custom-grid-sec .inner .colm:nth-child(3n)\":false},[\"margin-right:0\"]],[false,\"@media (max-width: 992){\"],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding-right:20px\",\"padding-left:20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding-right:40px\",\"padding-left:20px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm figure\":false},[\"display:inline-block\",\"margin-right:15px\"]],[false,{\".custom-grid-sec .inner .colm h4\":false},[\"display:-webkit-inline-box\",\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"margin-bottom:15px\",\"color:#152649\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:30px\",\"font-weight:bold\"]],[false,\"@media (max-width: 1366px){\"],[false,{\".custom-grid-sec .inner .colm h4\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm p\":false},[\"margin-bottom:30px\",\"font-size:18px\",\"color:#434343\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"line-height:1.6\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec .inner .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-grid-sec .inner .colm p\":false},[\"font-size:14px\",\"margin-bottom:24px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm a\":false},[\"color:#152649\",\"font-weight:bold\",\"font-family:\\\"Raleway\\\",sans-serif\",\"display:block\",\"font-size:24px\",\"margin-top:auto\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec .inner .colm a\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-grid-sec .inner .colm a\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm a i\":false},[\"margin-left:15px\",\"font-size:16px\"]],[false,{\".custom-grid-sec .slick-dots\":false},[\"position:absolute\",\"right:10px\",\"top:50%\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\"]],[false,{\".custom-grid-sec .slick-dots li\":false},[\"list-style-type:none\",\"height:70px\",\"width:3px\",\"margin:4px 0\"]],[false,{\".custom-grid-sec .slick-dots li.slick-active button\":false},[\"background-color:#28d9cb\"]],[false,{\".custom-grid-sec .slick-dots li button\":false},[\"width:100%\",\"height:100%\",\"background-color:#fff\",\"border-radius:2px\",\"font-size:0\",\"outline:none\",\"border:none\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".custom-trust-sec .inner\":false},[\"position:relative\"]],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:calc(55% - 30px)\",\"margin-right:30px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:70%\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".custom-trust-sec .custom-txt p\":false},[\"padding-right:57px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-trust-sec .custom-txt p\":false},[\"color:#152649\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec .custom-txt p\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".custom-trust-sec .custom-txt h2\":false},[\"max-width:calc(100% - 80px)\"]],[false,\"}\"],[false,{\".custom-trust-sec .custom-img\":false},[\"width:calc(45% - 30px)\",\"margin-right:0\",\"margin-left:30px\",\"text-align:right\"]],[false,{\".custom-trust-sec .custom-img amp-img\":false,\".custom-trust-sec .custom-img amp-anim\":false},[\"max-width:250px\",\"width:100%\",\"margin:0px auto\",\"display:block\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-trust-sec .custom-txt\":false},[\"margin-right:0\",\"width:55%\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec .custom-img\":false},[\"position:absolute\",\"right:0\",\"top:-20px\"]],[false,{\".custom-trust-sec .custom-img:not(#_#_#_#_#_#_#_)\":false},[\"width:56px\"]],[false,\"}\"],[false,{\".custom-case-studie\":false},[\"padding:0\",\"position:relative\",\"padding-top:618px\",\"background-color:#152649\"]],[false,\"@media (max-width:1780px){\"],[false,{\".custom-case-studie\":false},[\"padding-top:480px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".custom-case-studie\":false},[\"padding-top:442px\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img\":false},[\"background-repeat:no-repeat\",\"padding-bottom:0px\",\"position:absolute\",\"top:0\",\"width:100%\"]],[false,{\".custom-case-studie .bg-img::before\":false},[\"content:\\\"\\\"\",\"width:100%\",\"height:265px\",\"position:absolute\",\"left:0\",\"bottom:0\",\"background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(21,38,73,0)),to(#152649))\",\"background-image:linear-gradient(rgba(21,38,73,0),#152649)\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-case-studie .bg-img::before\":false},[\"height:165px\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img .for-desktop\":false},[\"display:block\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .bg-img .for-desktop\":false},[\"display:none\"]],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:100%\"]],[false,{\".custom-trust-sec .custom-img\":false},[\"width:100%\",\"margin-left:0\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img .for-mobile\":false},[\"display:none\",\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .bg-img .for-mobile\":false},[\"display:block\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img .for-mobile amp-img\":false,\".custom-case-studie .bg-img .for-mobile amp-anim\":false},[\"width:100%\"]],[false,{\".custom-case-studie .custom-bottm-sec\":false},[\"padding-bottom:160px\",\"padding-top:40px\",\"position:relative\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-case-studie .custom-bottm-sec\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,{\".custom-case-studie .custom-bottm-sec .inner\":false},[\"-webkit-box-align:end\",\"-ms-flex-align:end\",\"align-items:flex-end\",\"margin-top:-200px\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt\":false},[\"width:55%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt label\":false},[\"color:#f1f1f1\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt label i\":false},[\"color:#7080a7\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt h2\":false},[\"color:#fff\",\"margin-bottom:25px\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt h2 span\":false},[\"color:#8bed78\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt p\":false},[\"padding-right:57px\",\"color:#f1f1f1\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt p\":false},[\"padding-right:0\"]],[false,\"}\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-case-btn\":false},[\"width:38%\",\"margin-right:0\",\"text-align:left\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-case-btn\":false},[\"width:100%\",\"margin-top:15px\",\"text-align:left\"]],[false,\"}\"],[false,{\".custom-colm-blog\":false},[\"background-color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\".custom-colm-blog .heading-box h2 span\":false},[\"color:#28d9cb\"]],[false,{\".custom-colm-blog .colm\":false},[\"background-color:#f7f7f7\",\"border:#c9c9c9 solid 1px\",\"-webkit-box-shadow:none\",\"box-shadow:none\"]],[false,{\".custom-colm-blog .colm .txt-box\":false},[\"padding-bottom:35px\"]],[false,{\".custom-colm-blog .colm .txt-box h6\":false},[\"text-transform:uppercase\",\"color:#6f7070\",\"font-size:14px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"margin-bottom:15px\"]],[false,{\".custom-colm-blog .colm .txt-box h6 span\":false},[\"color:#c9c9c9\"]],[false,{\".custom-colm-blog .colm .txt-box h4\":false},[\"font-size:20px\",\"color:#152649\",\"margin-bottom:60px\",\"height:30px\"]],[false,{\".custom-colm-blog .colm .txt-box .custom-btm-text\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".custom-colm-blog .colm .txt-box .custom-btm-text a\":false},[\"color:#152649\",\"font-size:18px\",\"text-decoration:underline\",\"font-weight:bold\"]],[false,\"@media (max-width:767px){\"],[false,{\".custom-colm-blog .colm .txt-box .custom-btm-text a\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".custom-colm-blog .colm .img-box amp-img\":false,\".custom-colm-blog .colm .img-box amp-anim\":false},[\"height:160px\",\"-o-object-fit:cover\",\"object-fit:cover\",\"width:100%\"]],[true,\"@media (max-width:992px){\"],[true,{\"footer .container\":true},[\"max-width:90%\"]],[true,{\".footer-2022__menu--list\":true},[\"padding:0px 5px\"]],[true,{\"header nav .dropdown-menu p.new-header__nav--menu--text\":true},[\"max-width:unset\"]],[true,\"}\"],[true,\"@media (max-width:600px){\"],[true,{\"footer .container\":true},[\"max-width:540px\"]],[true,{\".footer-2022__menu--list\":true},[\"padding:0px\"]],[true,\"}\"],[true,{\".new-header__menu-item\":true},[\"background:#f7f7f7\"]],[true,\"@media (max-width:1280px){\"],[true,{\".new-header__menu-item\":true},[\"padding-left:15px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header__menu-item\":true},[\"padding-left:0\"]],[true,\"}\"],[false,{\".cp-tek-teams-isk\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"position:relative\",\"margin-top:100px\"]],[false,{\".cp-tek-teams-isk .inner-hero-text amp-img\":false,\".cp-tek-teams-isk .inner-hero-text amp-anim\":false},[\"width:48px\"]],[false,{\".cp-tek-teams-isk amp-img\":false,\".cp-tek-teams-isk amp-anim\":false},[\"width:100%\",\"object-fit:cover\",\"object-position:center\"]],[false,\"@media (max-width: 768px){\"],[false,{\".cp-tek-teams-isk\":false},[\"margin-top:70px\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk picture\":false},[\"padding-bottom:25px\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"position:relative\"]],[false,\"@media (max-width: 1366px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"padding-bottom:5px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"margin-bottom:0px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"margin-bottom:7px\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk picture p\":false},[\"color:#28d9cb\",\"margin-left:15px\",\"margin-bottom:0px\",\"font-size:16px\",\"line-height:1\"]],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk picture p\":false},[\"margin-left:0px\",\"color:#28d9cb\",\"font-size:12px\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk .inner-hero-text\":false},[\"position:absolute\",\"top:45%\",\"width:100%\",\"left:50%\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk .inner-hero-text picture\":false},[\"margin-bottom:5px\"]],[false,{\".cp-tek-teams-isk .inner-hero-text amp-img\":false,\".cp-tek-teams-isk .inner-hero-text amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:60px\",\"font-weight:bold\",\"color:rgba(255,255,255,1)\",\"line-height:1\",\"margin-bottom:6px\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"@media (max-width: 768px){\"],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:30px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:32px\"]],[false,\"}\"],[false,{\".contact-tek-teams\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"padding:80px 0px 120px\"]],[false,{\".contact-tek-teams .mobile-button\":false},[\"display:none\"]],[false,\"@media (max-width: 767px){\"],[false,{\".contact-tek-teams .desktop-button\":false},[\"display:none\"]],[false,{\".contact-tek-teams .mobile-button:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (max-width: 1680px){\"],[false,{\".contact-tek-teams\":false},[\"padding:80px 0px 90px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".contact-tek-teams\":false},[\"padding:80px 0px 80px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".contact-tek-teams\":false},[\"padding:60px 0px 60px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".contact-tek-teams\":false},[\"padding:40px 0px 0px\"]],[false,\"}\"],[false,{\".contact-tek-teams .inner\":false},[\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".contact-tek-teams .inner .custom-txt .btn-blue\":false},[\"margin-top:0px\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-txt\":false},[\"width:calc(50.5% - 0px)\",\"margin-right:0\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"width:54%\",\"margin-right:-12%\",\"margin-left:76px\"]],[false,\"@media (max-width: 1214px) and (max-width: 1280px){\"],[false,{\".contact-tek-teams .custom-img\":false},[\"margin-right:-7%\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".contact-tek-teams .custom-img\":false},[\"width:47%\",\"margin-right:0px\"]],[false,{\".contact-tek-teams .inner .custom-img p:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".contact-tek-teams .inner\":false},[\"flex-direction:column\",\"align-items:flex-start\"]],[false,{\".contact-tek-teams .custom-img\":false},[\"width:100%\",\"margin-right:0px\",\"margin-top:0px\",\"margin-left:0px\"]],[false,\"}\"],[false,{\".contact-tek-teams .inner .custom-img p\":false},[\"color:#707070\",\"line-height:32px\",\"padding-right:18%\",\"font-size:20px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".contact-tek-teams .inner .custom-img p\":false},[\"color:#707070\",\"line-height:2\",\"padding-right:0px\",\"font-size:14px\"]],[false,\"}\"],[false,{\".repeat-bg\":false},[\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".repeat-bg\":false},[\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".repeat-bg amp-img\":false,\".repeat-bg amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 600px){\"],[false,{\".repeat-bg amp-img\":false,\".repeat-bg amp-anim\":false},[\"height:207px\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".repeat-bg .c-btm-icon\":false},[\"position:absolute\",\"bottom:35px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".repeat-bg .c-btm-icon\":false},[\"left:0px\",\"bottom:13px\",\"width:100%\",\"padding:0px 25px\"]],[false,{\".repeat-bg .c-btm-icon amp-img\":false,\".repeat-bg .c-btm-icon amp-anim\":false},[\"width:auto\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".repeat-bg .c-btm-icon\":false},[\"left:0px\",\"bottom:0\",\"width:100%\",\"padding:0px 25px\",\"padding-bottom:25px\"]],[false,{\".repeat-bg .c-btm-icon amp-img\":false,\".repeat-bg .c-btm-icon amp-anim\":false},[\"height:inherit\",\"width:auto\",\"margin-bottom:0px\",\"margin-top:0\",\"padding-bottom:15px\"]],[false,\"}\"],[false,{\".repeat-bg .tek-teams-mob-heading\":false},[\"display:none\"]],[false,{\".repeat-bg .tek-teams-mob-heading h3\":false},[\"font-size:24px\",\"color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"line-height:1.3\"]],[false,\"@media (max-width: 600px){\"],[false,{\".repeat-bg .tek-teams-mob-heading\":false},[\"display:block\",\"padding-right:68px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".repeat-bg .tek-teams-mob-heading\":false},[\"display:block\",\"padding-right:0px\"]],[false,{\".repeat-bg .c-btm-icon\":false},[\"padding-bottom:10px\"]],[false,{\".repeat-bg .c-btm-icon amp-img\":false,\".repeat-bg .c-btm-icon amp-anim\":false},[\"padding-bottom:0px\"]],[false,\"}\"],[false,{\".tek-teams-heading\":false},[\"padding-top:80px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".tek-teams-heading\":false},[\"padding-top:20px\"]],[false,\"}\"],[false,{\".tek-teams-heading h3\":false},[\"font-size:30px\",\"line-height:1\",\"margin-bottom:40px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#707070\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek-teams-heading h3\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".tek-teams-heading\":false},[\"display:none\"]],[false,\"}\"],[false,{\".about-tek-wrapper\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"padding-bottom:120px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".about-tek-wrapper\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".about-tek-wrapper\":false},[\"padding-bottom:60px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".about-tek-wrapper\":false},[\"padding-top:50px\",\"padding-bottom:60px\"]],[false,\"}\"],[false,{\".about-tek-wrapper .about-tek-team\":false},[\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".about-tek-wrapper .about-tek-team .c-col\":false},[\"width:calc(50% - 40px)\"]],[false,{\".about-tek-wrapper .about-tek-team .c-col p b\":false,\".about-tek-wrapper .about-tek-team .c-col p strong\":false},[\"font-weight:bold\"]],[false,\"@media (max-width: 768px){\"],[false,{\".about-tek-wrapper .about-tek-team .c-col\":false},[\"width:calc(50% - 15px)\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".about-tek-wrapper .about-tek-team .c-col\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".about-tek-wrapper .about-tek-team .c-col p\":false},[\"padding-bottom:10px\",\"font-size:20px\",\"line-height:2\",\"color:#707070\"]],[false,\"@media (max-width: 768px){\"],[false,{\".about-tek-wrapper .about-tek-team .c-col p\":false},[\"font-size:15px\",\"padding-bottom:0px\",\"margin-bottom:10px\"]],[false,\"}\"],[false,{\".about-tek-wrapper .about-tek-team .c-col p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".development-team-sec\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"background-color:#f1f1f1\",\"padding-bottom:120px\"]],[false,{\".development-team-sec .text-short-box\":false},[\"padding-left:8px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".development-team-sec\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".development-team-sec\":false},[\"padding-bottom:60px\"]],[false,\"}\"],[false,{\".development-team-sec p\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.5\",\"margin-bottom:60px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec p\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec p\":false},[\"font-size:15px\",\"margin-bottom:25px\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .tek-teams-heading h3\":false},[\"color:#24c1ff\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"margin-bottom:20px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:30%\",\"margin-bottom:60px\"]],[false,\"@media (min-width: 1025px) and (max-width: 1280px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:32%\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"margin-bottom:20px\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"margin:0 0 0 40px\",\"width:calc(55% - 40px)\",\"padding:0\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-txt\":false},[\"width:45%\",\"margin:0\",\"padding:0\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img p\":false},[\"padding:0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:45%\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"margin:25px 0 0px 0px\",\"width:100%\",\"padding-bottom:10px\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-txt\":false},[\"width:100%\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:100%\",\"border-bottom:#e1e1e1 solid 1px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col:last-child\":false},[\"border-bottom:none\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:35px\",\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading figure\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"color:#152649\",\"padding-left:8px\",\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"margin-bottom:0px\"]],[false,\"@media only screen and (min-width: 1025px) and (max-width: 1279px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"font-size:14px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"padding-left:4px\",\"font-size:12px\",\"margin-bottom:0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"padding-left:4px\",\"font-size:14px\",\"margin-bottom:0\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:0px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span::before:not(#_#_#_#_#_#_#_#_)\":false},[\"content:none\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"font-size:18px\",\"line-height:1.3\",\"margin-bottom:25px\",\"color:#707070\",\"position:relative\",\"padding-left:20px\",\"padding-right:20px\",\"display:block\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"padding-right:0px\",\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"padding-left:10px\",\"font-size:13px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"font-size:14px\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span:last-child\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span::before\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p::before\":false},[\"position:absolute\",\"top:0\",\"left:0px\",\"content:\\\"-\\\"\",\"line-height:17px\"]],[false,\"@media (max-width: 600px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .col-heading::before\":false},[\"content:\\\"\\\"\",\"width:6px\",\"height:6px\",\"border-bottom:2px solid #24c1ff\",\"border-right:2px solid #24c1ff\",\"float:right\",\"position:absolute\",\"top:12px\",\"right:1px\",\"-webkit-transform:rotate(45deg)\",\"transform:rotate(45deg)\",\"-webkit-transform-origin:center\",\"transform-origin:center\",\"-webkit-transition:all .4s ease\",\"transition:all .4s ease\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .col-heading.active::before\":false},[\"-webkit-transform:rotate(225deg)\",\"transform:rotate(225deg)\",\"color:#24c1ff\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .col-heading .active:after\":false},[\"-webkit-transform:rotate(-135deg)\",\"transform:rotate(-135deg)\",\"border-color:#fff\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .text-short-box\":false},[\"display:none\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .btn-blue\":false},[\"padding:23px 0px\",\"text-align:center\",\"border-radius:50px\",\"width:360px\",\"margin:0px auto\",\"display:block\"]],[false,{\".benefits-sec\":false},[\"background-color:#fff\"]],[false,{\".team-structure-sec .tek-teams-heading h3\":false},[\"margin-bottom:25px\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"@media (max-width: 768px){\"],[false,{\".team-structure-sec .tek-teams-heading h3\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".team-structure-sec p\":false},[\"font-size:18px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".team-structure-sec p\":false},[\"font-size:14px\"]],[false,{\".custom-grid-sec .inner\":false},[\"margin:0\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding:25px 10px 25px 0px\",\"margin:0\"]],[false,{\".custom-grid-sec .slick-dots\":false},[\"right:0\"]],[false,\"}\"],[false,{\".dev-shop-team-sec\":false},[\"padding:120px 0px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".dev-shop-team-sec\":false},[\"padding:80px 0px\"]],[false,\"}\"],[false,{\".c-border-none td:not(#_#_#_#_#_#_#_#_)\":false},[\"border:none\"]],[false,{\".tekteams-tabel\":false},[\"background:none\"]],[false,{\".tekteams-tabel .heading-box label\":false},[\"color:#7080a7\"]],[true,\"@media (max-width: 1760px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:14px\",\"padding:0px 14px\"]],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:80px\"]],[true,{\".dropdown-menu\":true},[\"top:77px\"]],[false,{\".cp-tek-teams-isk:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:80px\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:50px\",\"width:75%\",\"margin-right:auto\",\"margin-left:auto\"]],[false,{\".demand-sec\":false},[\"padding:150px 0px 110px 0px\"]],[false,{\".ecosystem-sec\":false},[\"padding:150px 0px\"]],[false,{\".partner-sec .bg-img\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\"]],[false,{\".partner-sec\":false},[\"padding:240px 0px 240px 0px\"]],[false,{\".partner-sec .container-md\":false},[\"margin-top:0\"]],[false,{\".solution-sec\":false},[\"padding:160px 0px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:50px\"]],[false,{\".tek-teams-heading h3\":false},[\"margin-bottom:30px\"]],[false,{\".about-tek-wrapper .about-tek-team .c-col p\":false},[\"margin-bottom:5px\",\"line-height:1.5em\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"margin-bottom:30px\"]],[false,{\".development-team-sec .development-team-content .btn-blue\":false},[\"padding:16px 0px\",\"width:261px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:20px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:120px 0px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:79px\"]],[true,\"}\"],[true,\"@media (max-width: 1680px){\"],[false,{\".tekteams-tabel\":false},[\"padding:25px 0px 60px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"padding:0px 11px\"]],[true,{\".new-header__button a\":true},[\"font-size:16px\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:45px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:45px\"]],[false,{\".demand-sec\":false},[\"padding:100px 0px 60px 0px\"]],[false,{\".ecosystem-sec\":false},[\"padding:100px 0px 130px 0px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 200px 0px\"]],[false,{\".partner-sec .heading-box\":false},[\"padding-bottom:50px\"]],[false,{\".solution-sec\":false},[\"padding:130px 0px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:100px 0px\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:18px\"]],[false,{\".journey-roadmap\":false},[\"margin-top:-98px\"]],[false,{\".infrastructure-sec .heading-box h2\":false,\".cost-effective-sec .heading-box h2\":false},[\"font-size:50px\"]],[true,\"}\"],[true,\"@media (max-width: 1560px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\",\"padding:0px 9px\"]],[true,{\".new-header__button a\":true},[\"font-size:14px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 160px 0px\"]],[false,{\".solution-sec\":false},[\"padding:120px 0px\"]],[false,{\".journey-roadmap\":false},[\"margin-top:-200px\"]],[false,{\".kubernetes-sec\":false},[\"margin-top:-100px\"]],[true,\"}\"],[true,\"@media (max-width:1366px){\"],[false,{\".btn-blue\":false},[\"font-size:18px\"]],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:77px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:72px\"]],[false,{\".cp-tek-teams-isk:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:77px\"]],[true,{\".dropdown-menu\":true},[\"top:75px\"]],[false,{\".cp-cloud-native-isk h2\":false,\".cp-tek-teams-isk h2\":false},[\"font-size:40px\"]],[false,{\".heading-box h2\":false},[\"font-size:32px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 140px 0px\"]],[false,{\".solution-sec\":false},[\"padding:110px 0px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:80px 0px\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:16px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:140px\"]],[false,{\".keeping-future ul\":false},[\"font-size:18px\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:40px\"]],[false,{\".choose-option ul li:last-child\":false},[\"margin-left:0px\"]],[false,{\".choose-option ul li\":false},[\"padding:15px 20px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 70px 119px\"]],[false,{\".contact-form-info-right ul li\":false},[\"padding:25px 0px 25px\"]],[true,\"}\"],[true,\"@media (max-width:1280px){\"],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:60px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:60px\"]],[false,{\".cp-tek-teams-isk:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:59px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:60px\"]],[true,{\".dropdown-menu\":true},[\"top:57px\"]],[false,{\".heading-box h2\":false},[\"font-size:28px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 120px 0px\"]],[false,{\".choose-option\":false},[\"padding-left:40px\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:60px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:35px\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:14px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:120px\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:33px\"]],[false,{\".keeping-future ul\":false},[\"font-size:16px\"]],[false,{\".contact-form-info-right ul\":false},[\"margin-bottom:70px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 50px 119px\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"object-position:-256px 0px\"]],[true,\"}\"],[false,\"@media (max-width:1200px){\"],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:25px\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:45px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 30px 119px\"]],[false,\"}\"],[false,\"@media (max-width:1190px){\"],[false,{\".btn-blue\":false},[\"font-size:16px\"]],[false,\"}\"],[true,\"@media (max-width:1170px){\"],[true,{\".new-header__logo\":true},[\"min-width:200px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\",\"padding:0px 6px\"]],[false,{\".choose-option ul li\":false},[\"font-size:17px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:18px\"]],[true,\"}\"],[true,\"@media (max-width:1100px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:10px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 100px 0px\"]],[true,\"}\"],[true,\"@media (max-width:1028px){\"],[true,{\".new-header__logo\":true},[\"min-width:150px\"]],[true,\"}\"],[false,\"@media (max-width:1024px){\"],[false,{\".contact-form-left\":false},[\"width:53%\",\"padding:58px 0px 75px\"]],[false,{\".contact-form-info-right\":false},[\"width:44%\",\"padding:50px 18px 76px\"]],[false,{\".choose-option ul\":false},[\"flex-wrap:nowrap\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"object-position:75% 0px\"]],[false,\"}\"],[true,\"@media (max-width:992px){\"],[false,{\".btn-blue\":false},[\"font-size:18px\"]],[true,{\".new-header__button\":true},[\"width:20%\",\"justify-content:center\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"width:100%\"]],[false,{\".solution-sec\":false},[\"padding:90px 0px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:30px\"]],[false,{\".cp-cloud-native-isk .btn\":false},[\"width:unset\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:230px\"]],[true,{\".closeicon\":true},[\"width:14px\",\"display:none\",\"position:relative\",\"right:17px\",\"top:6px\"]],[true,{\".navbar-toggler .closeicon\":true},[\"display:block\"]],[true,{\".navbar-toggler amp-img:nth-child(1)\":true,\".navbar-toggler amp-anim:nth-child(1)\":false},[\"display:none\"]],[false,{\".navbar-toggler.collapsed .closeicon\":false},[\"display:none\"]],[false,{\".navbar-toggler.collapsed amp-img:nth-child(1)\":false,\".navbar-toggler.collapsed amp-anim:nth-child(1)\":false},[\"display:block\"]],[false,{\".text-grey-box p\":false},[\"padding-right:0px\"]],[true,\"}\"],[false,\"@media (max-width:980px){\"],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"padding:0px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:0\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:20px\"]],[false,{\".btm-icon-line\":false},[\"width:55%\",\"margin:0px auto\"]],[false,{\".custom-contact-wrapper\":false},[\"padding:85px 0px 100px\"]],[false,{\".contact-form-info-right ul li:last-child a\":false},[\"word-break:break-word\"]],[false,\"}\"],[false,\"@media (max-width: 769px){\"],[false,{\".contact-form-info-right ul li a\":false},[\"word-break:break-word\"]],[false,{\".contact-form-info-right ul li:first-of-type a\":false},[\"font-size:25px\"]],[false,{\".contact-form-info-right ul .phone:before\":false},[\"width:30px\",\"height:30px\"]],[false,{\".contact-form-info-right ul .address:before\":false},[\"background-size:100%\",\"width:30px\",\"height:30px\"]],[false,{\".contact-form-info-right ul li:nth-of-type(2) span\":false},[\"padding-left:43px\"]],[false,{\".contact-form-info-right ul li a\":false},[\"padding-left:10px\"]],[false,{\".btm-icon-line:after\":false,\".btm-icon-line::before\":false},[\"width:95px\"]],[false,{\".contact-form-info-right ul\":false},[\"margin-bottom:30px\"]],[false,{\".choose-option ul\":false},[\"margin-bottom:0px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 18px 50px\"]],[false,{\".contact-form-info-right h3\":false},[\"margin-bottom:0px\"]],[false,{\".btm-icon-line\":false},[\"width:100%\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea\":false},[\"height:100px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:27px\"]],[false,{\".contact-form-left\":false},[\"padding:58px 0px 30px\"]],[false,{\".choose-option ul li\":false},[\"font-size:17px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:18px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".col-row ul li:nth-child(1)\":false,\".col-row ul li:nth-child(4)\":false,\".col-row ul li\":false},[\"width:50%\"]],[false,{\".custom-contact-wrapper .container-md\":false},[\"padding:0px\",\"width:100%\"]],[false,{\".contact-wrapper-banner .inner-hero-text\":false},[\"top:45%\"]],[false,{\".contact-wrapper-banner .inner-hero-text h2\":false},[\"text-align:center\"]],[false,{\".custom-contact-wrapper\":false},[\"padding:0px\",\"margin-top:-1px\",\"border-radius:0px\"]],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"border-radius:0px\",\"padding:0px\"]],[false,{\".contact-form-info-right\":false},[\"border-radius:0px\",\"padding:40px 24px 0px\",\"width:100%\"]],[false,{\".contact-wrapper-banner\":false},[\"z-index:3\"]],[false,{\".contact-form-info-right h3\":false},[\"display:none\"]],[false,{\".contact-form-info-right ul li:first-of-type\":false},[\"font-size:30px\"]],[false,{\".contact-form-info-right ul li\":false},[\"padding:20px 0px 20px 0px\"]],[false,{\".contact-form-info-right ul li:first-of-type a\":false},[\"font-size:30px\"]],[false,{\".btm-icon-line\":false},[\"display:none\"]],[false,{\".contact-form-info-right ul\":false},[\"margin-bottom:60px\"]],[false,{\".choose-option ul\":false},[\"flex-wrap:nowrap\",\"margin-bottom:0\"]],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"background-color:transparent\",\"flex-direction:column-reverse\"]],[false,{\".choose-option\":false},[\"padding-left:0\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:0px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:0\"]],[false,{\".contact-form-left\":false},[\"padding:45px 24px 0px 24px\",\"background:#fff\",\"width:86%\",\"margin:85px auto 120px auto\",\"border-radius:0px 26px 26px 26px\",\"box-shadow:0px 20px 32px 0px rgba(0,0,0,.2)\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .col-md-4\":false},[\"max-width:100%\",\"margin-bottom:15px\",\"flex:0 0 100%\"]],[false,{\".form-group .form-control\":false},[\"padding:0px 0px 5px\"]],[false,{\".form-group label\":false},[\"font-size:14px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea\":false},[\"margin-bottom:32px\",\"margin-top:0px\",\"height:90px\"]],[false,{\".form-group::placeholder\":false},[\"font-size:16px\"]],[false,{\".form-control::-webkit-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:13px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".form-control::-ms-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:13px\",\"font-weight:normal\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".form-control::placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:13px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control\":false},[\"font-size:13px\",\"padding:0px 0px 5px\"]],[false,{\".choose-option ul li\":false},[\"font-size:15px\",\"padding:14px 8px\",\"color:#152649\"]],[false,{\".choose-option ul li.tab.active a\":false},[\"font-weight:bold\",\"color:#152649\"]],[false,{\".choose-option ul li:last-child\":false},[\"padding:15px 20px\",\"line-height:1\"]],[false,{\".choose-option ul li:nth-child(2)\":false},[\"font-weight:bold\",\"margin-right:0px\",\"margin-left:0px\"]],[false,{\".contact-wrapper-banner .inner-hero-text p\":false},[\"display:none\"]],[false,{\".contact-wrapper-banner:before\":false},[\"width:20px\",\"height:20px\",\"bottom:-7px\",\"left:7%\",\"background-color:#101f42\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .calendly-inline-widget:not(#_#_#_#_#_#_#_)\":false},[\"min-width:100%\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"object-position:82% 0px\"]],[false,\"}\"],[true,\"@media (max-width: 767px){\"],[false,{\".tekteams-tabel .heading-box label\":false},[\"margin-left:0px\"]],[false,{\".tekteams-tabel .table-wrapper td.always\":false},[\"color:#28d9cb\"]],[false,{\".tekteams-tabel .table-wrapper td:last-of-type\":false},[\"color:#24c1ff\",\"font-weight:700\"]],[false,{\".tekteams-tabel .table-wrapper tr\":false},[\"display:block\",\"border-top:1px solid #c9c9c9\",\"padding:15px 0\"]],[false,{\"section.demand-sec .inner .slick-track\":false},[\"display:unset\"]],[false,{\".demand-sec .inner .colm:not(#_#_#_#_#_#_#_)\":false},[\"margin:25px 10px 25px 0\",\"padding:0\"]],[false,{\".future-vision-sec .custom-img\":false},[\"width:90%\",\"margin:auto\"]],[true,{\".footer-2022__certificates\":true},[\"margin-top:30px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:70px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\"]],[false,{\".heading-box h2\":false},[\"font-size:24px\"]],[false,{\".demand-sec .heading-box\":false},[\"padding-bottom:20px\"]],[false,{\".ecosystem-sec .inner\":false},[\"padding-bottom:0\"]],[false,{\".ecosystem-sec\":false},[\"padding:100px 0px 100px 0px\"]],[false,{\".solution-sec\":false},[\"padding:70px 0px\"]],[false,{\".tek-teams-heading h3\":false},[\"margin-bottom:15px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:15px\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"display:block\",\"flex-direction:unset\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding:25px 10px 25px 0px\",\"margin:0\"]],[false,{\".custom-grid-sec .inner .slick-list\":false},[\"padding-bottom:25px\"]],[true,{\"header .new-header__menu-item\":true},[\"top:60px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link\":true},[\"line-height:normal\",\"font-weight:600\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:16px\",\"color:#152649\"]],[true,{\"header .new-header__nav--list li\":true},[\"margin-bottom:30px\",\"margin-left:18px\"]],[true,{\"header .new-header__nav--list\":true},[\"margin-top:46px\"]],[true,{\"header .new-header__nav--list li:nth-last-child(1)\":true},[\"margin-bottom:0\"]],[true,{\"header .dropdown-menu\":true},[\"top:0px\"]],[true,{\"header .new-header__nav--menu--title\":true},[\"font-size:14px\"]],[true,{\"header .new-header__nav--title h5\":true},[\"font-size:20px\"]],[false,{\"header .new-header__nav--list>.show\":false},[\"padding-top:10px\"]],[false,{\".c-application-development .review_sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:20px\"]],[true,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".reliability-engineers\":false},[\"margin-top:126px\"]],[false,{\".development-team-sec .development-team-content .btn-blue\":false},[\"margin:0px\",\"padding:16px 0px\",\"width:185px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:150px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,\"}\"],[false,\"@media (max-width:575px){\"],[false,{\".infrastructure-sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-309px\"]],[false,{\".col-row ul li\":false,\".col-row ul li:nth-child(1)\":false,\".col-row ul li:nth-child(4)\":false},[\"width:100%\",\"padding-left:25px\"]],[false,{\".col-row ul li::after\":false},[\"width:19px\",\"height:19px\",\"background-size:100%\"]],[false,{\".kubernetes-sec .container-md\":false},[\"padding:0px 0px\"]],[false,{\".kubernetes-sec .custom-txt\":false},[\"padding:0px 24px\"]],[false,{\".devops-services .applications-col h5::before\":false},[\"width:25px\",\"height:25px\",\"background-size:100%\"]],[false,{\".infrastructure-sec .heading-box:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0px\"]],[false,\"}\"],[true,\"@media (max-width:480px){\"],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"margin:0px 0 0px 0px\",\"padding-bottom:0px\"]],[true,{\".footer-2022__certificates\":true},[\"margin-top:0\",\"margin-bottom:20px\"]],[true,{\".footer-2022__box-end a\":true},[\"font-size:14px\"]],[true,{\".footer-2022__box-end a:nth-last-child(1)\":true},[\"margin-right:0\"]],[true,{\".row.footer-2022__mobile-items\":true},[\"padding-right:0\"]],[true,{\".footer-2022__copyright\":true},[\"font-size:14px\"]],[false,{\".future-vision-sec .custom-img\":false},[\"max-width:360px\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:32px\"]],[false,{\".demand-sec\":false},[\"padding:60px 0px 40px 0px\"]],[false,{\".ecosystem-sec\":false},[\"padding:60px 0px 35px 0px\"]],[false,{\".ecosystem-sec .heading-box figure\":false},[\"top:0\",\"right:0\"]],[false,{\".ecosystem-sec .heading-box figure amp-img\":false,\".ecosystem-sec .heading-box figure amp-anim\":false},[\"width:100%\",\"height:100%\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 80px 0px\"]],[false,{\".partner-sec .colm h6\":false},[\"min-height:unset\"]],[false,{\".partner-sec .heading-box\":false},[\"padding-bottom:40px\"]],[false,{\".solution-sec\":false},[\"padding:60px 0px\"]],[false,{\".cp-tek-teams-isk h2\":false,\".tek-teams-heading h3\":false},[\"font-size:26px\"]],[false,{\".c-app-banner h2\":false},[\"font-size:32px\"]],[false,{\".c-app-banner p\":false},[\"font-size:16px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:60px 0px\"]],[true,{\".footer-2022__social-media\":true},[\"margin-top:60px\"]],[true,{\".footer-2022__social-media a\":true},[\"margin:0px 30px 0px 0px\"]],[true,{\".footer-2022__social-media a:nth-last-child(1)\":true},[\"margin-right:0\"]],[true,\"}\"],[false,\"@media (max-width:420px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:100%\",\"margin:auto\"]],[false,{\".ecosystem-sec .heading-box figure\":false},[\"margin-bottom:0\",\"top:30px\",\"width:70px\",\"height:70px\"]],[false,{\".ecosystem-sec .heading-box h2\":false},[\"width:calc(100% - 70px)\"]],[false,\"}\"],[false,{\"body .devops-styles:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-top:75px\"]],[false,\"@media (max-width:1200px){\"],[false,{\"body .devops-styles:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-top:55px\"]],[false,{\".contact-wrapper-banner:before\":false},[\"left:7%\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:1135px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-bottom:25px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(36%)\"]],[false,{\".ecosystem-sec .colm:last-of-type figure\":false},[\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"max-width:200px\",\"display:block\",\"margin:auto\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:47%\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:1035px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"transform:translateY(-50%)\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(32%)\"]],[false,{\".ecosystem-sec .colm\":false},[\"padding:15px 30px 15px 30px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"margin-bottom:15px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"padding-right:30px\",\"font-size:20px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(38%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:48%\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:898px){\"],[false,{\".ecosystem-sec .colm p\":false},[\"font-size:14px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(38%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:49%\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:16px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:15px\"]],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:18px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"width:60px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:25px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"width:130px\"]],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"width:170px\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:770px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(26%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:48%\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:14px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:15px\"]],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:16px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"width:60px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:25px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"width:120px\"]],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"width:140px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false,\".ecosystem-sec .colm\":false},[\"margin-bottom:20px\",\"padding:15px 20px\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,{\".ecosystem-sec .colm p\":false},[\"font-size:12px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"padding-bottom:25px\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:700px){\"],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"width:110px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"transform:translateY(-41%)\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(25%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:49%\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"margin-bottom:10px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:10px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false,\".ecosystem-sec .colm\":false},[\"margin-bottom:20px\",\"padding:10px 20px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"padding-top:0\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":6539,\"final_size\":4429,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/kubernetes.css?v=1787594022\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"00ad41532091732506b79ad4852bdcbd\",\"parse_time\":0.055581092834472656,\"shake_time\":0.0001220703125,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"#gtx-trans\":true},[\"display:none\"]],[false,{\".kubernetes__banner__dark\":false},[\"background-color:#152649\",\"padding:85px 0px\"]],[true,{\".kubernetes__banner__light\":true},[\"background-color:#fff\",\"padding:120px 0px\"]],[true,{\".kubernetes__banner__grey\":true},[\"background-color:#f1f1f1\",\"padding:120px 0px\"]],[true,{\".kubernetes__banner__bottom\":true},[\"background-color:#fff\",\"padding:65px 0px\",\"box-shadow:inset 0px 11px 8px -10px rgba(0,0,0,.1),inset 0px -11px 8px -10px rgba(0,0,0,.1)\"]],[true,{\".text__light__blue\":true},[\"color:#28d9cb\"]],[true,{\".text__blue\":true},[\"color:#00c3fc\"]],[true,{\".kubernetes__section--1 .subtitle\":true},[\"font-family:Roboto\",\"font-size:16px\",\"text-transform:uppercase\",\"letter-spacing:1.6px\"]],[true,{\".kubernetes__section--1 .titlePage\":true},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:60px\"]],[true,{\".kubernetes .redirect__page\":true},[\"color:#7080a7\",\"align-items:center\"]],[true,{\".redirect__page > h6\":true},[\"font-family:Roboto\",\"font-size:18px\",\"margin-left:10px\",\"margin-bottom:0px\",\"color:#7080a7\"]],[false,{\".iconSmall\":false},[\"width:2px\",\"height:5px\",\"margin-right:10px\"]],[false,{\".iconMedium\":false},[\"width:15px\",\"height:13px\",\"margin-right:10px\"]],[true,{\".imgIcon\":true},[\"width:24px\",\"height:24px\",\"margin-right:10px\"]],[true,{\".kubernetes .wrap__kcsp .nav__services .service__name h6\":true},[\"color:#152649\",\"margin:0\",\"font-weight:bold\",\"font-family:Raleway\"]],[true,{\".kubernetes .titleSection\":true},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:50px\",\"line-height:50px\"]],[true,{\".kubernetes .titleSection__footer\":true},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:50px\",\"line-height:50px\"]],[true,{\".kubernetes .section_one_content\":true,\".kubernetes .section_three_content\":true,\".kubernetes .section_four_content\":true,\".kubernetes .section_five_content\":true},[\"font-size:20px\",\"line-height:32px\"]],[true,{\".kubernetes .nav__services\":true},[\"box-shadow:rgba(0,0,0,.45) 0px 25px 20px -20px\",\"border-radius:24px\",\"background-color:#f5f5f5\",\"border:1px solid #f5f5f5\",\"padding:26.5px 35.5px\",\"margin-top:40px\"]],[true,{\".kubernetes .nav__services h6\":true},[\"margin:0\"]],[true,{\".kubernetes .nav__services .service__name\":true},[\"font-family:Raleway\",\"font-size:16px\",\"font-weight:bold\",\"color:#152649\"]],[true,{\".kubernetes .nav__services .service__name .section_five_icon_text\":true},[\"font-size:14px\",\"line-height:32px\"]],[true,{\".service__name picture\":false,\".service__name source\":false,\".service__name div > amp-img\":true,\".service__name div > amp-anim\":false},[\"display:flex\",\"width:35px\"]],[true,{\".service__name div\":true},[\"display:flex\",\"justify-content:flex-start\",\"align-items:center\"]],[true,{\".service__name div h6\":true},[\"font-weight:bold\",\"font-size:18px\",\"font-family:Raleway\",\"margin:0\"]],[true,{\".kubernetes .btn__consultation\":true},[\"background-color:#00c3fc\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\"]],[true,{\".kubernetes .btn__consultation__light__blue\":true},[\"background-color:#28d9cb\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\"]],[true,{\".kubernetes .btn__linear\":true},[\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:40px\"]],[true,{\".kubernetes .wrap__Services .service__name\":true},[\"font-family:Raleway\",\"font-size:18px\",\"font-weight:bold\",\"color:#152649\",\"line-height:32px\"]],[true,{\".service__list\":true},[\"align-items:center\",\"border-bottom:1px solid #e1e1e1\",\"max-height:70px\"]],[true,{\".kubernetes .wrap__Services .service__list:last-child .service__name\":true},[\"border-bottom:none\"]],[false,{\".kubernetes .owl-carousel .owl-item .service__name\":false},[\"font-family:Raleway\",\"font-size:18px\",\"font-weight:bold\",\"color:#152649\",\"line-height:32px\"]],[true,{\".service__name i\":true},[\"color:#26c1ff\",\"font-size:15px\",\"margin-right:3px\"]],[false,{\".kubernetes .owl-carousel .owl-item .imgIcon\":false},[\"width:24px\",\"height:24px\",\"margin-right:10px\"]],[false,{\".kubernetes .owl-theme .owl-nav\":false},[\"display:none\"]],[false,{\".kubernetes .owl-theme .owl-dots .owl-dot span\":false},[\"width:4px\",\"height:4px\",\"background-color:#d6d6d6\"]],[false,{\".kubernetes .owl-theme .owl-dots .owl-dot.active span\":false},[\"width:24px\",\"height:4px\",\"border-radius:2px\",\"background-color:#28d9cb\"]],[true,{\".kubernetes .text\":true},[\"font-family:Raleway\",\"font-size:20px\",\"font-weight:bold\",\"color:#152649\",\"line-height:32px\"]],[true,{\".absolute__button\":true},[\"position:absolute\",\"bottom:-35px\",\"left:calc(( 100vw - 246px ) \\/ 2)\"]],[true,\"@media screen and (min-width: 1440px){\"],[true,{\".containerWidth\":true},[\"max-width:1210px\",\"margin:0px auto\"]],[true,\"}\"],[true,\"@media screen and (max-width: 991px){\"],[true,{\".kubernetes__banner__grey\":true},[\"padding:80px 0px\"]],[true,{\".kubernetes__banner__light\":true},[\"padding:50px 0px 80px 0px\"]],[true,{\".kubernetes__banner__bottom\":true},[\"padding:35px 0px\"]],[true,{\".kubernetes__section--1 .titlePage\":true},[\"font-size:32px\",\"line-height:34px\"]],[true,{\".kubernetes__section--1 .subtitle\":true},[\"font-size:12px\",\"letter-spacing:1.2px\"]],[true,{\".kubernetes .redirect__page h6\":true},[\"font-size:14px\",\"line-height:17px\",\"letter-spacing:1.4px\"]],[true,{\".kubernetes .section_one_content\":true},[\"font-size:14px\",\"line-height:22px\"]],[true,{\".kubernetes .wrap__kcsp .nav__services .service__name h6\":true},[\"font-size:14px\",\"line-height:16px\"]],[true,{\".kubernetes .owl-carousel .item .service__name .section_two_title\":true},[\"font-size:14px\",\"line-height:22px\"]],[true,{\".kubernetes .section_one_content\":true,\".kubernetes .section_three_content\":true,\".kubernetes .section_four_content\":true,\".kubernetes .section_five_content\":true},[\"font-size:14px\",\"line-height:22px\"]],[true,{\".kubernetes .text\":true},[\"font-size:14px\",\"line-height:22px\"]],[true,{\".owl-carousel .service__name:not(#_#_#_#_#_#_#_)\":true},[\"border-bottom:1px solid #e1e1e1\"]],[true,{\".kubernetes .titleSection__footer\":true},[\"font-size:20px\",\"line-height:24px\",\"padding:0px 58px\"]],[true,{\".kubernetes .btn__linear\":true},[\"font-size:20px\",\"padding:15px 28px\"]],[true,{\".absolute__button\":true},[\"position:absolute\",\"bottom:-25px\",\"left:calc(( 100vw - 150px ) \\/ 2)\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1439px){\"],[true,{\".containerWidth\":true},[\"max-width:calc(100vw * .87692307692)\",\"margin:0px auto\"]],[true,{\".kubernetes .titleSection\":true},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:30px\",\"line-height:30px\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":9248,\"final_size\":417,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/marchine.css?v=456129557\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"176294cfc3e123d8b5077b360bfaced0\",\"parse_time\":0.09802007675170898,\"shake_time\":0.0001659393310546875,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"*\":true},[\"font-family:Raleway\"]],[true,{\":root\":true},[\"--btn_color:#0e2748\",\"--main_color:#0e2748\"]],[true,{\"a:hover\":true},[\"color:var(--main_color)\"]],[false,{\".btn-consultation\":false},[\"background-color:#00c3fc\",\"border-radius:30px\",\"padding:25px 50px\",\"color:var(--btn_color)\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\",\"z-index:3\",\"white-space:nowrap\"]],[true,{\"h1\":true,\"h2\":false,\"h3\":true,\"h4\":false,\"h5\":true,\"h6\":true},[\"font-family:Raleway\"]],[false,{\".machine_banner h1\":false},[\"font-size:60px\",\"font-weight:bold\",\"text-align:left\",\"line-height:60px\"]],[false,{\".machine_banner p\":false},[\"color:#28d9cb\",\"margin-bottom:24px\",\"font-family:Roboto\",\"font-size:16px\",\"line-height:22px\",\"text-align:left\"]],[false,{\".service_machine_new\":false},[\"background-color:#fff\"]],[false,{\".machine_future\":false},[\"margin-top:100px\"]],[false,{\".text-strong\":false},[\"font-size:50px\",\"font-weight:bold\",\"white-space:nowrap\"]],[false,{\".text-strong\":false},[\"color:#24c1ff\"]],[false,{\".machine_future h2\":false},[\"line-height:50px\"]],[false,{\".machine_future h2\":false,\".machine_future amp-img\":false,\".machine_future amp-anim\":false},[\"margin:40px 0px\",\"font-family:Raleway\",\"font-size:50px\"]],[false,{\".machine_future amp-img\":false,\".machine_future amp-anim\":false},[\"background-size:cover\"]],[false,{\".machine_future i\":false},[\"color:rgba(112,128,167,1)\",\"font-size:16px\",\"margin-right:10px\"]],[false,{\".machine_future h6\":false},[\"color:#7080a7\",\"margin-bottom:0\",\"font-family:Roboto\",\"font-size:18px\"]],[false,{\".machine_text\":false},[\"color:#707070\",\"width:90%\",\"font-size:20px\",\"line-height:32px\",\"margin-bottom:80px\"]],[false,{\".about-service\":false},[\"padding-bottom:120px\"]],[false,{\".about-service .slider-about\":false},[\"padding:0\"]],[false,{\".slider-about > div\":false},[\"height:100%\"]],[false,{\".service-machine-selection\":false},[\"display:flex\",\"justify-content:space-around\",\"background-color:#f1f1f1\",\"padding:15px 15px\",\"margin:0px\",\"border-radius:40px\"]],[false,{\".service-machine-selection > a\":false},[\"border-radius:40px\",\"padding:10px\",\"width:100%\",\"flex:1\",\"text-align:center\",\"color:#707070\",\"font-weight:bold\",\"font-size:20px\"]],[false,{\".slider-about_problems\":false,\".slider-about_solutions\":false},[\"padding:0px 50px\"]],[false,{\".slider-about_problems h3\":false},[\"font-weight:bold\",\"font-size:32px\",\"text-align:left\",\"line-height:40px\"]],[false,{\".slider-about_problems h4\":false},[\"font-size:20px\",\"color:#434343\",\"font-family:Raleway\",\"font-weight:bold\",\"line-height:32px\",\"text-align:left\"]],[false,{\".slider-about_problems p\":false},[\"font-size:18px\",\"line-height:30px\",\"line-height:40px\",\"text-align:left\"]],[false,{\".item-carousel-1:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[false,{\".item-carousel-1 amp-img\":false,\".item-carousel-1 amp-anim\":false},[\"vertical-align:top\",\"margin:0\"]],[false,{\".slider-about_problems > div:last-child\":false},[\"font-size:32px\",\"display:flex\",\"justify-content:center\",\"color:#152649\",\"font-weight:bold\"]],[false,{\".first_solution > div\":false,\".second_solution > div\":false,\".last_solution > div\":false},[\"margin-bottom:50px\"]],[false,{\".slider-about_solutions h3\":false},[\"font-weight:bold\",\"font-size:32px\",\"text-align:left\",\"line-height:40px\"]],[false,{\".slider-about_solutions amp-img\":false,\".slider-about_solutions amp-anim\":false},[\"margin:0px\",\"margin-top:5px\",\"min-width:24px\",\"height:24px\"]],[false,{\".first_solution p:first-child\":false},[\"font-weight:bold\",\"font-size:20px\",\"line-height:32px\",\"color:#434343\",\"margin-bottom:50px\"]],[false,{\".first_solution p\":false,\".second_solution p\":false,\".last_solution p\":false},[\"color:#152649\",\"font-size:1.125rem\",\"line-height:30px\",\"text-align:left\"]],[false,{\".slider-about-text-strong\":false},[\"color:#28d9cb\"]],[false,{\".difference_slice\":false},[\"padding:0px 50px\"]],[false,{\".difference_slice div:first-child\":false},[\"align-items:center\"]],[false,{\".difference_slice div:first-child h3\":false},[\"text-align:left\",\"color:#152649\",\"font-size:32px\",\"font-weight:bold\",\"line-height:40px\"]],[false,{\".difference_slice div:last-child p\":false},[\"text-align:left\",\"color:#434343\",\"font-size:18px\",\"line-height:30px\"]],[false,{\".trusted-relationships\":false},[\"background-color:#f1f1f1\",\"padding-bottom:200px\"]],[false,{\".trusted-relationships h2\":false},[\"margin-top:156px\",\"margin-bottom:80px\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".btn-relationship\":false},[\"position:absolute\",\"margin:0\",\"margin-top:-35px\",\"background-color:#00c3fc\",\"border-radius:30px\",\"padding:25px 38px\",\"color:var(--main_color)\",\"width:auto\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\",\"display:inline\",\"left:0\",\"z-index:1\"]],[false,{\".card\":false},[\"background-color:transparent\",\"border-color:transparent\"]],[false,{\".card:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:20px\"]],[false,{\".card h3\":false},[\"cursor:pointer\",\"font-size:18px\",\"font-weight:bold\"]],[false,{\".card amp-img\":false,\".card amp-anim\":false},[\"width:24px\",\"height:24px\",\"margin:0px\",\"margin-top:2px\"]],[false,{\".card i\":false},[\"color:#24c1ff\",\"font-size:medium\",\"margin-left:10px\",\"margin-top:5px\",\"display:none\"]],[false,{\"#enterprise_and_fastest_content\":false},[\"position:absolute\",\"width:100%\"]],[false,{\"#enterprise_and_fastest_content:not(#_#_#_#_#_#_#_)\":false},[\"top:-130px\"]],[false,{\"#enterprise_and_fastest_content div\":false},[\"min-height:150px\",\"border-radius:24px\",\"display:flex\",\"justify-content:center\",\"padding:48px\"]],[false,{\"#enterprise_and_fastest_content div:first-child\":false},[\"background-color:#152649\",\"color:#24c1ff\"]],[false,{\"#enterprise_and_fastest_content div:first-child p\":false},[\"color:#24c1ff\",\"text-align:center\",\"font-size:24px\",\"font-weight:bold\",\"line-height:36px\"]],[false,{\"#enterprise_and_fastest_content div:nth-child(2) h2\":false},[\"font-size:50px\",\"line-height:50px\"]],[false,{\"#enterprise_and_fastest_content div:last-child\":false},[\"background-color:#f5f5f5\",\"box-shadow:rgba(0,0,0,.45) 0px 25px 20px -20px\",\"display:flex\",\"flex-direction:column\",\"justify-content:flex-start\"]],[false,{\"#enterprise_and_fastest_content div:last-child p\":false},[\"font-style:italic\",\"color:#707070\",\"text-align:left\",\"font-size:20px\"]],[false,{\"#enterprise_and_fastest_content div:last-child p:last-child\":false},[\"margin:0\",\"font-weight:bold\",\"font-style:normal\"]],[false,{\"#enterprise_and_fastest_content div:last-child amp-img\":false,\"#enterprise_and_fastest_content div:last-child amp-anim\":false},[\"width:40px\",\"height:40px\",\"left:45px\",\"top:-20px\"]],[false,{\".business\":false},[\"box-shadow:inset 0px 11px 8px -10px rgba(0,0,0,.1),inset 0px -11px 8px -10px rgba(0,0,0,.1)\"]],[false,{\".business-content\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\",\"align-items:center\",\"padding:50px 0px\",\"position:relative\"]],[false,{\".business-content a\":false},[\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:40px\",\"float:right\"]],[false,{\".business-content h2\":false},[\"text-align:center\",\"margin-bottom:0\",\"font-family:Raleway\",\"font-weight:bold\",\"font-size:50px\",\"line-height:50px\"]],[false,\"@media screen and (max-width: 992px){\"],[false,{\".card i\":false},[\"display:block\"]],[false,{\".card > div:last-child\":false},[\"display:none\"]],[false,{\".card\":false},[\"border-top:1px solid rgba(138,138,138,.34)\",\"padding:30px 0px 15px 0px\",\"border-radius:0\"]],[false,{\".business a\":false},[\"position:absolute\",\"bottom:-40px\",\"left:0\",\"right:0\",\"margin-left:auto\",\"margin-right:auto\",\"text-align:center\",\"width:306px\"]],[false,{\".btn-relationship\":false},[\"left:50%\",\"transform:translate(-50%,0%)\",\"white-space:nowrap\"]],[false,{\".business-content\":false},[\"flex-direction:column\"]],[false,\"}\"],[false,{\".selected\":false},[\"background-color:white\",\"border:none\"]],[false,{\".selected:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--main_color)\"]],[false,{\"#container\":false},[\"position:relative\",\"overflow:hidden\",\"clear:left\",\"padding:50px 0px\"]],[false,{\".box\":false},[\"position:absolute\",\"top:0\",\"left:0\"]],[false,{\"#first\":false},[\"top:0px\",\"left:0px\",\"width:100%\",\"display:flex\"]],[false,{\"#second\":false},[\"top:0px\",\"width:100%\"]],[false,{\"#third\":false},[\"top:0px\",\"width:100%\"]],[false,{\"#slide\":false},[\"transition:transform .5s ease-in-out 0s\",\"-moz-transition:-moz-transform .5s ease-in-out 0s\",\"-webkit-transition:-webkit-transform .5s ease-in-out 0s\",\"min-height:50px\"]],[false,{\".move-to-second\":false},[\"transform:translateX(var(--tab_second))\",\"-moz-transform:translateX(var(--tab_second))\",\"-webkit-transform:translateX(var(--tab_second))\"]],[false,{\".move-to-third\":false},[\"transform:translateX(var(--tab_third))\",\"-moz-transform:translateX(var(--tab_third))\",\"-webkit-transform:translateX(var(--tab_third))\"]],[false,{\".move-to-first\":false},[\"transform:translateX(0px)\",\"-moz-transform:translateX(0px)\",\"-webkit-transform:translateX(0px)\"]],[false,{\".machine_future_title h2\":false,\".machine_future_title span\":false,\".machine_future_title p\":false},[\"font-size:50px\"]],[false,\"@media screen and (max-width: 540px){\"],[false,{\".machine_text\":false},[\"width:100%\"]],[false,{\".difference_slice\":false},[\"padding:0px 20px\"]],[false,{\".first_solution > div\":false,\".second_solution > div\":false,\".last_solution > div\":false},[\"margin-bottom:0\"]],[false,{\"#third\":false},[\"padding:20px\"]],[false,{\"#first\":false,\"#second\":false,\"#third\":false},[\"background-color:#f1f1f1\",\"border-radius:24px\",\"box-shadow:rgba(0,0,0,.45) 0px 25px 20px -20px\"]],[false,{\"#first:not(#_#_#_#_#_#_#_)\":false,\"#second:not(#_#_#_#_#_#_#_)\":false,\"#third:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".service-machine-selection > a\":false},[\"font-size:17px\"]],[false,{\"#container\":false},[\"padding-top:15px\"]],[false,{\".btn-consultation\":false},[\"padding:25px 25px\"]],[false,{\".machine_future_title h2\":false,\".machine_future_title span\":false,\".machine_future_title p\":false},[\"font-size:45px\"]],[false,\"}\"],[true,\"@media screen and (min-width: 1440px){\"],[true,{\".containerWidth\":true},[\"max-width:1232px\",\"margin:0px auto\"]],[true,\"}\"],[true,\"@media screen and (min-width: 1440px){\"],[true,{\".containerWidth\":true},[\"max-width:1220px\",\"margin:0px auto\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1439px){\"],[true,{\".containerWidth\":true},[\"max-width:calc(100vw * .87692307692)\",\"margin:0px auto\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1776,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"type\":\"text\\/css\",\"href\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/slick-carousel@1.8.1\\/slick\\/slick.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"503d87b8e892b897f5d05df814fbc0c4\",\"parse_time\":0.008713960647583008,\"shake_time\":2.288818359375e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".slick-slider\":false},[\"position:relative\",\"display:block\",\"box-sizing:border-box\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\",\"-webkit-touch-callout:none\",\"-khtml-user-select:none\",\"-ms-touch-action:pan-y\",\"touch-action:pan-y\",\"-webkit-tap-highlight-color:transparent\"]],[false,{\".slick-list\":false},[\"position:relative\",\"display:block\",\"overflow:hidden\",\"margin:0\",\"padding:0\"]],[false,{\".slick-list:focus\":false},[\"outline:none\"]],[false,{\".slick-list.dragging\":false},[\"cursor:pointer\",\"cursor:hand\"]],[false,{\".slick-slider .slick-track\":false,\".slick-slider .slick-list\":false},[\"-webkit-transform:translate3d(0,0,0)\",\"-moz-transform:translate3d(0,0,0)\",\"-ms-transform:translate3d(0,0,0)\",\"-o-transform:translate3d(0,0,0)\",\"transform:translate3d(0,0,0)\"]],[false,{\".slick-track\":false},[\"position:relative\",\"top:0\",\"left:0\",\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".slick-track:before\":false,\".slick-track:after\":false},[\"display:table\",\"content:\\\"\\\"\"]],[false,{\".slick-track:after\":false},[\"clear:both\"]],[false,{\".slick-loading .slick-track\":false},[\"visibility:hidden\"]],[false,{\".slick-slide\":false},[\"display:none\",\"float:left\",\"height:100%\",\"min-height:1px\"]],[false,{\"[dir=\'rtl\'] .slick-slide\":false},[\"float:right\"]],[false,{\".slick-slide amp-img\":false,\".slick-slide amp-anim\":false},[\"display:block\"]],[false,{\".slick-slide.slick-loading amp-img\":false,\".slick-slide.slick-loading amp-anim\":false},[\"display:none\"]],[false,{\".slick-slide.dragging amp-img\":false,\".slick-slide.dragging amp-anim\":false},[\"pointer-events:none\"]],[false,{\".slick-initialized .slick-slide\":false},[\"display:block\"]],[false,{\".slick-loading .slick-slide\":false},[\"visibility:hidden\"]],[false,{\".slick-vertical .slick-slide\":false},[\"display:block\",\"height:auto\",\"border:1px solid transparent\"]],[false,{\".slick-arrow.slick-hidden\":false},[\"display:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":100701,\"final_size\":8611,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/css\\/all.min.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"2b9f797b620fd0348167564267b11933\",\"parse_time\":2.5145909786224365,\"shake_time\":0.06181216239929199,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-v4compatibility.woff2\"],\"shaken_tokens\":[[false,{\".fa\":false},[\"font-family:var(--fa-style-family,\\\"Font Awesome 6 Free\\\")\",\"font-weight:var(--fa-style,900)\"]],[true,{\".fa\":false,\".fa-brands\":false,\".fa-duotone\":false,\".fa-light\":false,\".fa-regular\":false,\".fa-solid\":true,\".fa-thin\":false,\".fab\":false,\".fad\":false,\".fal\":false,\".far\":false,\".fas\":false,\".fat\":false},[\"-moz-osx-font-smoothing:grayscale\",\"-webkit-font-smoothing:antialiased\",\"display:var(--fa-display,inline-block)\",\"font-style:normal\",\"font-variant:normal\",\"line-height:1\",\"text-rendering:auto\"]],[false,{\".fa-1x\":false},[\"font-size:1em\"]],[false,{\".fa-2x\":false},[\"font-size:2em\"]],[false,{\".fa-3x\":false},[\"font-size:3em\"]],[false,{\".fa-4x\":false},[\"font-size:4em\"]],[false,{\".fa-5x\":false},[\"font-size:5em\"]],[false,{\".fa-6x\":false},[\"font-size:6em\"]],[false,{\".fa-7x\":false},[\"font-size:7em\"]],[false,{\".fa-8x\":false},[\"font-size:8em\"]],[false,{\".fa-9x\":false},[\"font-size:9em\"]],[false,{\".fa-10x\":false},[\"font-size:10em\"]],[false,{\".fa-2xs\":false},[\"font-size:.625em\",\"line-height:.1em\",\"vertical-align:.225em\"]],[false,{\".fa-xs\":false},[\"font-size:.75em\",\"line-height:.08333em\",\"vertical-align:.125em\"]],[false,{\".fa-sm\":false},[\"font-size:.875em\",\"line-height:.07143em\",\"vertical-align:.05357em\"]],[false,{\".fa-lg\":false},[\"font-size:1.25em\",\"line-height:.05em\",\"vertical-align:-.075em\"]],[false,{\".fa-xl\":false},[\"font-size:1.5em\",\"line-height:.04167em\",\"vertical-align:-.125em\"]],[false,{\".fa-2xl\":false},[\"font-size:2em\",\"line-height:.03125em\",\"vertical-align:-.1875em\"]],[false,{\".fa-fw\":false},[\"text-align:center\",\"width:1.25em\"]],[false,{\".fa-ul\":false},[\"list-style-type:none\",\"margin-left:var(--fa-li-margin,2.5em)\",\"padding-left:0\"]],[false,{\".fa-ul>li\":false},[\"position:relative\"]],[false,{\".fa-li\":false},[\"left:calc(var(--fa-li-width,2em) * -1)\",\"position:absolute\",\"text-align:center\",\"width:var(--fa-li-width,2em)\",\"line-height:inherit\"]],[false,{\".fa-border\":false},[\"border-radius:var(--fa-border-radius,.1em)\",\"border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee)\",\"padding:var(--fa-border-padding,.2em .25em .15em)\"]],[false,{\".fa-pull-left\":false},[\"float:left\",\"margin-right:var(--fa-pull-margin,.3em)\"]],[false,{\".fa-pull-right\":false},[\"float:right\",\"margin-left:var(--fa-pull-margin,.3em)\"]],[false,{\".fa-beat\":false},[\"-webkit-animation-name:fa-beat\",\"animation-name:fa-beat\",\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out)\",\"animation-timing-function:var(--fa-animation-timing,ease-in-out)\"]],[false,{\".fa-bounce\":false},[\"-webkit-animation-name:fa-bounce\",\"animation-name:fa-bounce\",\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))\",\"animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))\"]],[false,{\".fa-fade\":false},[\"-webkit-animation-name:fa-fade\",\"animation-name:fa-fade\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\",\"animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\"]],[false,{\".fa-beat-fade\":false,\".fa-fade\":false},[\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\"]],[false,{\".fa-beat-fade\":false},[\"-webkit-animation-name:fa-beat-fade\",\"animation-name:fa-beat-fade\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\",\"animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\"]],[false,{\".fa-flip\":false},[\"-webkit-animation-name:fa-flip\",\"animation-name:fa-flip\",\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out)\",\"animation-timing-function:var(--fa-animation-timing,ease-in-out)\"]],[false,{\".fa-shake\":false},[\"-webkit-animation-name:fa-shake\",\"animation-name:fa-shake\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,linear)\",\"animation-timing-function:var(--fa-animation-timing,linear)\"]],[false,{\".fa-shake\":false,\".fa-spin\":false},[\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\"]],[false,{\".fa-spin\":false},[\"-webkit-animation-name:fa-spin\",\"animation-name:fa-spin\",\"-webkit-animation-duration:var(--fa-animation-duration,2s)\",\"animation-duration:var(--fa-animation-duration,2s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,linear)\",\"animation-timing-function:var(--fa-animation-timing,linear)\"]],[false,{\".fa-spin-reverse\":false},[\"--fa-animation-direction:reverse\"]],[false,{\".fa-pulse\":false,\".fa-spin-pulse\":false},[\"-webkit-animation-name:fa-spin\",\"animation-name:fa-spin\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,steps(8))\",\"animation-timing-function:var(--fa-animation-timing,steps(8))\"]],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".fa-beat\":false,\".fa-beat-fade\":false,\".fa-bounce\":false,\".fa-fade\":false,\".fa-flip\":false,\".fa-pulse\":false,\".fa-shake\":false,\".fa-spin\":false,\".fa-spin-pulse\":false},[\"-webkit-animation-delay:-1ms\",\"animation-delay:-1ms\",\"-webkit-animation-duration:1ms\",\"animation-duration:1ms\",\"-webkit-animation-iteration-count:1\",\"animation-iteration-count:1\",\"transition-delay:0s\",\"transition-duration:0s\"]],[false,\"}\"],[true,\"@-webkit-keyframes fa-beat{\"],[true,\"0%,90%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}\"],[true,\"}@keyframes fa-beat{\"],[true,\"0%,90%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}\"],[true,\"}@-webkit-keyframes fa-bounce{\"],[true,\"0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}\"],[true,\"30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}\"],[true,\"50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}\"],[true,\"57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}\"],[true,\"64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"}@keyframes fa-bounce{\"],[true,\"0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}\"],[true,\"30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}\"],[true,\"50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}\"],[true,\"57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}\"],[true,\"64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"}@-webkit-keyframes fa-fade{\"],[true,\"50%{opacity:var(--fa-fade-opacity,.4)}\"],[true,\"}@keyframes fa-fade{\"],[true,\"50%{opacity:var(--fa-fade-opacity,.4)}\"],[true,\"}@-webkit-keyframes fa-beat-fade{\"],[true,\"0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}\"],[true,\"}@keyframes fa-beat-fade{\"],[true,\"0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}\"],[true,\"}@-webkit-keyframes fa-flip{\"],[true,\"50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}\"],[true,\"}@keyframes fa-flip{\"],[true,\"50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}\"],[true,\"}@-webkit-keyframes fa-shake{\"],[true,\"0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}\"],[true,\"4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}\"],[true,\"12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}\"],[true,\"16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}\"],[true,\"20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}\"],[true,\"32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}\"],[true,\"36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}\"],[true,\"40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}@keyframes fa-shake{\"],[true,\"0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}\"],[true,\"4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}\"],[true,\"12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}\"],[true,\"16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}\"],[true,\"20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}\"],[true,\"32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}\"],[true,\"36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}\"],[true,\"40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}@-webkit-keyframes fa-spin{\"],[true,\"0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}\"],[true,\"}@keyframes fa-spin{\"],[true,\"0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}\"],[true,\"}\"],[false,{\".fa-rotate-90\":false},[\"-webkit-transform:rotate(90deg)\",\"transform:rotate(90deg)\"]],[false,{\".fa-rotate-180\":false},[\"-webkit-transform:rotate(180deg)\",\"transform:rotate(180deg)\"]],[false,{\".fa-rotate-270\":false},[\"-webkit-transform:rotate(270deg)\",\"transform:rotate(270deg)\"]],[false,{\".fa-flip-horizontal\":false},[\"-webkit-transform:scaleX(-1)\",\"transform:scaleX(-1)\"]],[false,{\".fa-flip-vertical\":false},[\"-webkit-transform:scaleY(-1)\",\"transform:scaleY(-1)\"]],[false,{\".fa-flip-both\":false,\".fa-flip-horizontal.fa-flip-vertical\":false},[\"-webkit-transform:scale(-1)\",\"transform:scale(-1)\"]],[false,{\".fa-rotate-by\":false},[\"-webkit-transform:rotate(var(--fa-rotate-angle,none))\",\"transform:rotate(var(--fa-rotate-angle,none))\"]],[false,{\".fa-stack\":false},[\"display:inline-block\",\"height:2em\",\"line-height:2em\",\"position:relative\",\"vertical-align:middle\",\"width:2.5em\"]],[false,{\".fa-stack-1x\":false,\".fa-stack-2x\":false},[\"left:0\",\"position:absolute\",\"text-align:center\",\"width:100%\",\"z-index:var(--fa-stack-z-index,auto)\"]],[false,{\".fa-stack-1x\":false},[\"line-height:inherit\"]],[false,{\".fa-stack-2x\":false},[\"font-size:2em\"]],[false,{\".fa-inverse\":false},[\"color:var(--fa-inverse,#fff)\"]],[false,{\".fa-0:before\":false},[\"content:\\\"0\\\"\"]],[false,{\".fa-1:before\":false},[\"content:\\\"1\\\"\"]],[false,{\".fa-2:before\":false},[\"content:\\\"2\\\"\"]],[false,{\".fa-3:before\":false},[\"content:\\\"3\\\"\"]],[false,{\".fa-4:before\":false},[\"content:\\\"4\\\"\"]],[false,{\".fa-5:before\":false},[\"content:\\\"5\\\"\"]],[false,{\".fa-6:before\":false},[\"content:\\\"6\\\"\"]],[false,{\".fa-7:before\":false},[\"content:\\\"7\\\"\"]],[false,{\".fa-8:before\":false},[\"content:\\\"8\\\"\"]],[false,{\".fa-9:before\":false},[\"content:\\\"9\\\"\"]],[false,{\".fa-a:before\":false},[\"content:\\\"A\\\"\"]],[false,{\".fa-address-book:before\":false,\".fa-contact-book:before\":false},[\"content:\\\"\\uf2b9\\\"\"]],[false,{\".fa-address-card:before\":false,\".fa-contact-card:before\":false,\".fa-vcard:before\":false},[\"content:\\\"\\uf2bb\\\"\"]],[false,{\".fa-align-center:before\":false},[\"content:\\\"\\uf037\\\"\"]],[false,{\".fa-align-justify:before\":false},[\"content:\\\"\\uf039\\\"\"]],[false,{\".fa-align-left:before\":false},[\"content:\\\"\\uf036\\\"\"]],[false,{\".fa-align-right:before\":false},[\"content:\\\"\\uf038\\\"\"]],[false,{\".fa-anchor:before\":false},[\"content:\\\"\\uf13d\\\"\"]],[false,{\".fa-anchor-circle-check:before\":false},[\"content:\\\"\\ue4aa\\\"\"]],[false,{\".fa-anchor-circle-exclamation:before\":false},[\"content:\\\"\\ue4ab\\\"\"]],[false,{\".fa-anchor-circle-xmark:before\":false},[\"content:\\\"\\ue4ac\\\"\"]],[false,{\".fa-anchor-lock:before\":false},[\"content:\\\"\\ue4ad\\\"\"]],[false,{\".fa-angle-down:before\":false},[\"content:\\\"\\uf107\\\"\"]],[false,{\".fa-angle-left:before\":false},[\"content:\\\"\\uf104\\\"\"]],[true,{\".fa-angle-right:before\":true},[\"content:\\\"\\uf105\\\"\"]],[false,{\".fa-angle-up:before\":false},[\"content:\\\"\\uf106\\\"\"]],[false,{\".fa-angle-double-down:before\":false,\".fa-angles-down:before\":false},[\"content:\\\"\\uf103\\\"\"]],[false,{\".fa-angle-double-left:before\":false,\".fa-angles-left:before\":false},[\"content:\\\"\\uf100\\\"\"]],[false,{\".fa-angle-double-right:before\":false,\".fa-angles-right:before\":false},[\"content:\\\"\\uf101\\\"\"]],[false,{\".fa-angle-double-up:before\":false,\".fa-angles-up:before\":false},[\"content:\\\"\\uf102\\\"\"]],[false,{\".fa-ankh:before\":false},[\"content:\\\"\\uf644\\\"\"]],[false,{\".fa-apple-alt:before\":false,\".fa-apple-whole:before\":false},[\"content:\\\"\\uf5d1\\\"\"]],[false,{\".fa-archway:before\":false},[\"content:\\\"\\uf557\\\"\"]],[false,{\".fa-arrow-down:before\":false},[\"content:\\\"\\uf063\\\"\"]],[false,{\".fa-arrow-down-1-9:before\":false,\".fa-sort-numeric-asc:before\":false,\".fa-sort-numeric-down:before\":false},[\"content:\\\"\\uf162\\\"\"]],[false,{\".fa-arrow-down-9-1:before\":false,\".fa-sort-numeric-desc:before\":false,\".fa-sort-numeric-down-alt:before\":false},[\"content:\\\"\\uf886\\\"\"]],[false,{\".fa-arrow-down-a-z:before\":false,\".fa-sort-alpha-asc:before\":false,\".fa-sort-alpha-down:before\":false},[\"content:\\\"\\uf15d\\\"\"]],[false,{\".fa-arrow-down-long:before\":false,\".fa-long-arrow-down:before\":false},[\"content:\\\"\\uf175\\\"\"]],[false,{\".fa-arrow-down-short-wide:before\":false,\".fa-sort-amount-desc:before\":false,\".fa-sort-amount-down-alt:before\":false},[\"content:\\\"\\uf884\\\"\"]],[false,{\".fa-arrow-down-up-across-line:before\":false},[\"content:\\\"\\ue4af\\\"\"]],[false,{\".fa-arrow-down-up-lock:before\":false},[\"content:\\\"\\ue4b0\\\"\"]],[false,{\".fa-arrow-down-wide-short:before\":false,\".fa-sort-amount-asc:before\":false,\".fa-sort-amount-down:before\":false},[\"content:\\\"\\uf160\\\"\"]],[false,{\".fa-arrow-down-z-a:before\":false,\".fa-sort-alpha-desc:before\":false,\".fa-sort-alpha-down-alt:before\":false},[\"content:\\\"\\uf881\\\"\"]],[false,{\".fa-arrow-left:before\":false},[\"content:\\\"\\uf060\\\"\"]],[false,{\".fa-arrow-left-long:before\":false,\".fa-long-arrow-left:before\":false},[\"content:\\\"\\uf177\\\"\"]],[false,{\".fa-arrow-pointer:before\":false,\".fa-mouse-pointer:before\":false},[\"content:\\\"\\uf245\\\"\"]],[false,{\".fa-arrow-right:before\":false},[\"content:\\\"\\uf061\\\"\"]],[false,{\".fa-arrow-right-arrow-left:before\":false,\".fa-exchange:before\":false},[\"content:\\\"\\uf0ec\\\"\"]],[false,{\".fa-arrow-right-from-bracket:before\":false,\".fa-sign-out:before\":false},[\"content:\\\"\\uf08b\\\"\"]],[false,{\".fa-arrow-right-long:before\":false,\".fa-long-arrow-right:before\":false},[\"content:\\\"\\uf178\\\"\"]],[false,{\".fa-arrow-right-to-bracket:before\":false,\".fa-sign-in:before\":false},[\"content:\\\"\\uf090\\\"\"]],[false,{\".fa-arrow-right-to-city:before\":false},[\"content:\\\"\\ue4b3\\\"\"]],[false,{\".fa-arrow-left-rotate:before\":false,\".fa-arrow-rotate-back:before\":false,\".fa-arrow-rotate-backward:before\":false,\".fa-arrow-rotate-left:before\":false,\".fa-undo:before\":false},[\"content:\\\"\\uf0e2\\\"\"]],[false,{\".fa-arrow-right-rotate:before\":false,\".fa-arrow-rotate-forward:before\":false,\".fa-arrow-rotate-right:before\":false,\".fa-redo:before\":false},[\"content:\\\"\\uf01e\\\"\"]],[false,{\".fa-arrow-trend-down:before\":false},[\"content:\\\"\\ue097\\\"\"]],[false,{\".fa-arrow-trend-up:before\":false},[\"content:\\\"\\ue098\\\"\"]],[false,{\".fa-arrow-turn-down:before\":false,\".fa-level-down:before\":false},[\"content:\\\"\\uf149\\\"\"]],[false,{\".fa-arrow-turn-up:before\":false,\".fa-level-up:before\":false},[\"content:\\\"\\uf148\\\"\"]],[false,{\".fa-arrow-up:before\":false},[\"content:\\\"\\uf062\\\"\"]],[false,{\".fa-arrow-up-1-9:before\":false,\".fa-sort-numeric-up:before\":false},[\"content:\\\"\\uf163\\\"\"]],[false,{\".fa-arrow-up-9-1:before\":false,\".fa-sort-numeric-up-alt:before\":false},[\"content:\\\"\\uf887\\\"\"]],[false,{\".fa-arrow-up-a-z:before\":false,\".fa-sort-alpha-up:before\":false},[\"content:\\\"\\uf15e\\\"\"]],[false,{\".fa-arrow-up-from-bracket:before\":false},[\"content:\\\"\\ue09a\\\"\"]],[false,{\".fa-arrow-up-from-ground-water:before\":false},[\"content:\\\"\\ue4b5\\\"\"]],[false,{\".fa-arrow-up-from-water-pump:before\":false},[\"content:\\\"\\ue4b6\\\"\"]],[false,{\".fa-arrow-up-long:before\":false,\".fa-long-arrow-up:before\":false},[\"content:\\\"\\uf176\\\"\"]],[false,{\".fa-arrow-up-right-dots:before\":false},[\"content:\\\"\\ue4b7\\\"\"]],[false,{\".fa-arrow-up-right-from-square:before\":false,\".fa-external-link:before\":false},[\"content:\\\"\\uf08e\\\"\"]],[false,{\".fa-arrow-up-short-wide:before\":false,\".fa-sort-amount-up-alt:before\":false},[\"content:\\\"\\uf885\\\"\"]],[false,{\".fa-arrow-up-wide-short:before\":false,\".fa-sort-amount-up:before\":false},[\"content:\\\"\\uf161\\\"\"]],[false,{\".fa-arrow-up-z-a:before\":false,\".fa-sort-alpha-up-alt:before\":false},[\"content:\\\"\\uf882\\\"\"]],[false,{\".fa-arrows-down-to-line:before\":false},[\"content:\\\"\\ue4b8\\\"\"]],[false,{\".fa-arrows-down-to-people:before\":false},[\"content:\\\"\\ue4b9\\\"\"]],[false,{\".fa-arrows-h:before\":false,\".fa-arrows-left-right:before\":false},[\"content:\\\"\\uf07e\\\"\"]],[false,{\".fa-arrows-left-right-to-line:before\":false},[\"content:\\\"\\ue4ba\\\"\"]],[false,{\".fa-arrows-rotate:before\":false,\".fa-refresh:before\":false,\".fa-sync:before\":false},[\"content:\\\"\\uf021\\\"\"]],[false,{\".fa-arrows-spin:before\":false},[\"content:\\\"\\ue4bb\\\"\"]],[false,{\".fa-arrows-split-up-and-left:before\":false},[\"content:\\\"\\ue4bc\\\"\"]],[false,{\".fa-arrows-to-circle:before\":false},[\"content:\\\"\\ue4bd\\\"\"]],[false,{\".fa-arrows-to-dot:before\":false},[\"content:\\\"\\ue4be\\\"\"]],[false,{\".fa-arrows-to-eye:before\":false},[\"content:\\\"\\ue4bf\\\"\"]],[false,{\".fa-arrows-turn-right:before\":false},[\"content:\\\"\\ue4c0\\\"\"]],[false,{\".fa-arrows-turn-to-dots:before\":false},[\"content:\\\"\\ue4c1\\\"\"]],[false,{\".fa-arrows-up-down:before\":false,\".fa-arrows-v:before\":false},[\"content:\\\"\\uf07d\\\"\"]],[false,{\".fa-arrows-up-down-left-right:before\":false,\".fa-arrows:before\":false},[\"content:\\\"\\uf047\\\"\"]],[false,{\".fa-arrows-up-to-line:before\":false},[\"content:\\\"\\ue4c2\\\"\"]],[false,{\".fa-asterisk:before\":false},[\"content:\\\"*\\\"\"]],[false,{\".fa-at:before\":false},[\"content:\\\"@\\\"\"]],[false,{\".fa-atom:before\":false},[\"content:\\\"\\uf5d2\\\"\"]],[false,{\".fa-audio-description:before\":false},[\"content:\\\"\\uf29e\\\"\"]],[false,{\".fa-austral-sign:before\":false},[\"content:\\\"\\ue0a9\\\"\"]],[false,{\".fa-award:before\":false},[\"content:\\\"\\uf559\\\"\"]],[false,{\".fa-b:before\":false},[\"content:\\\"B\\\"\"]],[false,{\".fa-baby:before\":false},[\"content:\\\"\\uf77c\\\"\"]],[false,{\".fa-baby-carriage:before\":false,\".fa-carriage-baby:before\":false},[\"content:\\\"\\uf77d\\\"\"]],[false,{\".fa-backward:before\":false},[\"content:\\\"\\uf04a\\\"\"]],[false,{\".fa-backward-fast:before\":false,\".fa-fast-backward:before\":false},[\"content:\\\"\\uf049\\\"\"]],[false,{\".fa-backward-step:before\":false,\".fa-step-backward:before\":false},[\"content:\\\"\\uf048\\\"\"]],[false,{\".fa-bacon:before\":false},[\"content:\\\"\\uf7e5\\\"\"]],[false,{\".fa-bacteria:before\":false},[\"content:\\\"\\ue059\\\"\"]],[false,{\".fa-bacterium:before\":false},[\"content:\\\"\\ue05a\\\"\"]],[false,{\".fa-bag-shopping:before\":false,\".fa-shopping-bag:before\":false},[\"content:\\\"\\uf290\\\"\"]],[false,{\".fa-bahai:before\":false},[\"content:\\\"\\uf666\\\"\"]],[false,{\".fa-baht-sign:before\":false},[\"content:\\\"\\ue0ac\\\"\"]],[false,{\".fa-ban:before\":false,\".fa-cancel:before\":false},[\"content:\\\"\\uf05e\\\"\"]],[false,{\".fa-ban-smoking:before\":false,\".fa-smoking-ban:before\":false},[\"content:\\\"\\uf54d\\\"\"]],[false,{\".fa-band-aid:before\":false,\".fa-bandage:before\":false},[\"content:\\\"\\uf462\\\"\"]],[false,{\".fa-barcode:before\":false},[\"content:\\\"\\uf02a\\\"\"]],[false,{\".fa-bars:before\":false,\".fa-navicon:before\":false},[\"content:\\\"\\uf0c9\\\"\"]],[false,{\".fa-bars-progress:before\":false,\".fa-tasks-alt:before\":false},[\"content:\\\"\\uf828\\\"\"]],[false,{\".fa-bars-staggered:before\":false,\".fa-reorder:before\":false,\".fa-stream:before\":false},[\"content:\\\"\\uf550\\\"\"]],[false,{\".fa-baseball-ball:before\":false,\".fa-baseball:before\":false},[\"content:\\\"\\uf433\\\"\"]],[false,{\".fa-baseball-bat-ball:before\":false},[\"content:\\\"\\uf432\\\"\"]],[false,{\".fa-basket-shopping:before\":false,\".fa-shopping-basket:before\":false},[\"content:\\\"\\uf291\\\"\"]],[false,{\".fa-basketball-ball:before\":false,\".fa-basketball:before\":false},[\"content:\\\"\\uf434\\\"\"]],[false,{\".fa-bath:before\":false,\".fa-bathtub:before\":false},[\"content:\\\"\\uf2cd\\\"\"]],[false,{\".fa-battery-0:before\":false,\".fa-battery-empty:before\":false},[\"content:\\\"\\uf244\\\"\"]],[false,{\".fa-battery-5:before\":false,\".fa-battery-full:before\":false,\".fa-battery:before\":false},[\"content:\\\"\\uf240\\\"\"]],[false,{\".fa-battery-3:before\":false,\".fa-battery-half:before\":false},[\"content:\\\"\\uf242\\\"\"]],[false,{\".fa-battery-2:before\":false,\".fa-battery-quarter:before\":false},[\"content:\\\"\\uf243\\\"\"]],[false,{\".fa-battery-4:before\":false,\".fa-battery-three-quarters:before\":false},[\"content:\\\"\\uf241\\\"\"]],[false,{\".fa-bed:before\":false},[\"content:\\\"\\uf236\\\"\"]],[false,{\".fa-bed-pulse:before\":false,\".fa-procedures:before\":false},[\"content:\\\"\\uf487\\\"\"]],[false,{\".fa-beer-mug-empty:before\":false,\".fa-beer:before\":false},[\"content:\\\"\\uf0fc\\\"\"]],[false,{\".fa-bell:before\":false},[\"content:\\\"\\uf0f3\\\"\"]],[false,{\".fa-bell-concierge:before\":false,\".fa-concierge-bell:before\":false},[\"content:\\\"\\uf562\\\"\"]],[false,{\".fa-bell-slash:before\":false},[\"content:\\\"\\uf1f6\\\"\"]],[false,{\".fa-bezier-curve:before\":false},[\"content:\\\"\\uf55b\\\"\"]],[false,{\".fa-bicycle:before\":false},[\"content:\\\"\\uf206\\\"\"]],[false,{\".fa-binoculars:before\":false},[\"content:\\\"\\uf1e5\\\"\"]],[false,{\".fa-biohazard:before\":false},[\"content:\\\"\\uf780\\\"\"]],[false,{\".fa-bitcoin-sign:before\":false},[\"content:\\\"\\ue0b4\\\"\"]],[false,{\".fa-blender:before\":false},[\"content:\\\"\\uf517\\\"\"]],[false,{\".fa-blender-phone:before\":false},[\"content:\\\"\\uf6b6\\\"\"]],[false,{\".fa-blog:before\":false},[\"content:\\\"\\uf781\\\"\"]],[false,{\".fa-bold:before\":false},[\"content:\\\"\\uf032\\\"\"]],[false,{\".fa-bolt:before\":false,\".fa-zap:before\":false},[\"content:\\\"\\uf0e7\\\"\"]],[false,{\".fa-bolt-lightning:before\":false},[\"content:\\\"\\ue0b7\\\"\"]],[false,{\".fa-bomb:before\":false},[\"content:\\\"\\uf1e2\\\"\"]],[false,{\".fa-bone:before\":false},[\"content:\\\"\\uf5d7\\\"\"]],[false,{\".fa-bong:before\":false},[\"content:\\\"\\uf55c\\\"\"]],[false,{\".fa-book:before\":false},[\"content:\\\"\\uf02d\\\"\"]],[false,{\".fa-atlas:before\":false,\".fa-book-atlas:before\":false},[\"content:\\\"\\uf558\\\"\"]],[false,{\".fa-bible:before\":false,\".fa-book-bible:before\":false},[\"content:\\\"\\uf647\\\"\"]],[false,{\".fa-book-bookmark:before\":false},[\"content:\\\"\\ue0bb\\\"\"]],[false,{\".fa-book-journal-whills:before\":false,\".fa-journal-whills:before\":false},[\"content:\\\"\\uf66a\\\"\"]],[false,{\".fa-book-medical:before\":false},[\"content:\\\"\\uf7e6\\\"\"]],[false,{\".fa-book-open:before\":false},[\"content:\\\"\\uf518\\\"\"]],[false,{\".fa-book-open-reader:before\":false,\".fa-book-reader:before\":false},[\"content:\\\"\\uf5da\\\"\"]],[false,{\".fa-book-quran:before\":false,\".fa-quran:before\":false},[\"content:\\\"\\uf687\\\"\"]],[false,{\".fa-book-dead:before\":false,\".fa-book-skull:before\":false},[\"content:\\\"\\uf6b7\\\"\"]],[false,{\".fa-bookmark:before\":false},[\"content:\\\"\\uf02e\\\"\"]],[false,{\".fa-border-all:before\":false},[\"content:\\\"\\uf84c\\\"\"]],[false,{\".fa-border-none:before\":false},[\"content:\\\"\\uf850\\\"\"]],[false,{\".fa-border-style:before\":false,\".fa-border-top-left:before\":false},[\"content:\\\"\\uf853\\\"\"]],[false,{\".fa-bore-hole:before\":false},[\"content:\\\"\\ue4c3\\\"\"]],[false,{\".fa-bottle-droplet:before\":false},[\"content:\\\"\\ue4c4\\\"\"]],[false,{\".fa-bottle-water:before\":false},[\"content:\\\"\\ue4c5\\\"\"]],[false,{\".fa-bowl-food:before\":false},[\"content:\\\"\\ue4c6\\\"\"]],[false,{\".fa-bowl-rice:before\":false},[\"content:\\\"\\ue2eb\\\"\"]],[false,{\".fa-bowling-ball:before\":false},[\"content:\\\"\\uf436\\\"\"]],[false,{\".fa-box:before\":false},[\"content:\\\"\\uf466\\\"\"]],[false,{\".fa-archive:before\":false,\".fa-box-archive:before\":false},[\"content:\\\"\\uf187\\\"\"]],[false,{\".fa-box-open:before\":false},[\"content:\\\"\\uf49e\\\"\"]],[false,{\".fa-box-tissue:before\":false},[\"content:\\\"\\ue05b\\\"\"]],[false,{\".fa-boxes-packing:before\":false},[\"content:\\\"\\ue4c7\\\"\"]],[false,{\".fa-boxes-alt:before\":false,\".fa-boxes-stacked:before\":false,\".fa-boxes:before\":false},[\"content:\\\"\\uf468\\\"\"]],[false,{\".fa-braille:before\":false},[\"content:\\\"\\uf2a1\\\"\"]],[false,{\".fa-brain:before\":false},[\"content:\\\"\\uf5dc\\\"\"]],[false,{\".fa-brazilian-real-sign:before\":false},[\"content:\\\"\\ue46c\\\"\"]],[false,{\".fa-bread-slice:before\":false},[\"content:\\\"\\uf7ec\\\"\"]],[false,{\".fa-bridge:before\":false},[\"content:\\\"\\ue4c8\\\"\"]],[false,{\".fa-bridge-circle-check:before\":false},[\"content:\\\"\\ue4c9\\\"\"]],[false,{\".fa-bridge-circle-exclamation:before\":false},[\"content:\\\"\\ue4ca\\\"\"]],[false,{\".fa-bridge-circle-xmark:before\":false},[\"content:\\\"\\ue4cb\\\"\"]],[false,{\".fa-bridge-lock:before\":false},[\"content:\\\"\\ue4cc\\\"\"]],[false,{\".fa-bridge-water:before\":false},[\"content:\\\"\\ue4ce\\\"\"]],[false,{\".fa-briefcase:before\":false},[\"content:\\\"\\uf0b1\\\"\"]],[false,{\".fa-briefcase-medical:before\":false},[\"content:\\\"\\uf469\\\"\"]],[false,{\".fa-broom:before\":false},[\"content:\\\"\\uf51a\\\"\"]],[false,{\".fa-broom-ball:before\":false,\".fa-quidditch-broom-ball:before\":false,\".fa-quidditch:before\":false},[\"content:\\\"\\uf458\\\"\"]],[false,{\".fa-brush:before\":false},[\"content:\\\"\\uf55d\\\"\"]],[false,{\".fa-bucket:before\":false},[\"content:\\\"\\ue4cf\\\"\"]],[false,{\".fa-bug:before\":false},[\"content:\\\"\\uf188\\\"\"]],[false,{\".fa-bug-slash:before\":false},[\"content:\\\"\\ue490\\\"\"]],[false,{\".fa-bugs:before\":false},[\"content:\\\"\\ue4d0\\\"\"]],[false,{\".fa-building:before\":false},[\"content:\\\"\\uf1ad\\\"\"]],[false,{\".fa-building-circle-arrow-right:before\":false},[\"content:\\\"\\ue4d1\\\"\"]],[false,{\".fa-building-circle-check:before\":false},[\"content:\\\"\\ue4d2\\\"\"]],[false,{\".fa-building-circle-exclamation:before\":false},[\"content:\\\"\\ue4d3\\\"\"]],[false,{\".fa-building-circle-xmark:before\":false},[\"content:\\\"\\ue4d4\\\"\"]],[false,{\".fa-bank:before\":false,\".fa-building-columns:before\":false,\".fa-institution:before\":false,\".fa-museum:before\":false,\".fa-university:before\":false},[\"content:\\\"\\uf19c\\\"\"]],[false,{\".fa-building-flag:before\":false},[\"content:\\\"\\ue4d5\\\"\"]],[false,{\".fa-building-lock:before\":false},[\"content:\\\"\\ue4d6\\\"\"]],[false,{\".fa-building-ngo:before\":false},[\"content:\\\"\\ue4d7\\\"\"]],[false,{\".fa-building-shield:before\":false},[\"content:\\\"\\ue4d8\\\"\"]],[false,{\".fa-building-un:before\":false},[\"content:\\\"\\ue4d9\\\"\"]],[false,{\".fa-building-user:before\":false},[\"content:\\\"\\ue4da\\\"\"]],[false,{\".fa-building-wheat:before\":false},[\"content:\\\"\\ue4db\\\"\"]],[false,{\".fa-bullhorn:before\":false},[\"content:\\\"\\uf0a1\\\"\"]],[false,{\".fa-bullseye:before\":false},[\"content:\\\"\\uf140\\\"\"]],[false,{\".fa-burger:before\":false,\".fa-hamburger:before\":false},[\"content:\\\"\\uf805\\\"\"]],[false,{\".fa-burst:before\":false},[\"content:\\\"\\ue4dc\\\"\"]],[false,{\".fa-bus:before\":false},[\"content:\\\"\\uf207\\\"\"]],[false,{\".fa-bus-alt:before\":false,\".fa-bus-simple:before\":false},[\"content:\\\"\\uf55e\\\"\"]],[false,{\".fa-briefcase-clock:before\":false,\".fa-business-time:before\":false},[\"content:\\\"\\uf64a\\\"\"]],[false,{\".fa-c:before\":false},[\"content:\\\"C\\\"\"]],[false,{\".fa-birthday-cake:before\":false,\".fa-cake-candles:before\":false,\".fa-cake:before\":false},[\"content:\\\"\\uf1fd\\\"\"]],[false,{\".fa-calculator:before\":false},[\"content:\\\"\\uf1ec\\\"\"]],[false,{\".fa-calendar:before\":false},[\"content:\\\"\\uf133\\\"\"]],[false,{\".fa-calendar-check:before\":false},[\"content:\\\"\\uf274\\\"\"]],[false,{\".fa-calendar-day:before\":false},[\"content:\\\"\\uf783\\\"\"]],[false,{\".fa-calendar-alt:before\":false,\".fa-calendar-days:before\":false},[\"content:\\\"\\uf073\\\"\"]],[false,{\".fa-calendar-minus:before\":false},[\"content:\\\"\\uf272\\\"\"]],[false,{\".fa-calendar-plus:before\":false},[\"content:\\\"\\uf271\\\"\"]],[false,{\".fa-calendar-week:before\":false},[\"content:\\\"\\uf784\\\"\"]],[false,{\".fa-calendar-times:before\":false,\".fa-calendar-xmark:before\":false},[\"content:\\\"\\uf273\\\"\"]],[false,{\".fa-camera-alt:before\":false,\".fa-camera:before\":false},[\"content:\\\"\\uf030\\\"\"]],[false,{\".fa-camera-retro:before\":false},[\"content:\\\"\\uf083\\\"\"]],[false,{\".fa-camera-rotate:before\":false},[\"content:\\\"\\ue0d8\\\"\"]],[false,{\".fa-campground:before\":false},[\"content:\\\"\\uf6bb\\\"\"]],[false,{\".fa-candy-cane:before\":false},[\"content:\\\"\\uf786\\\"\"]],[false,{\".fa-cannabis:before\":false},[\"content:\\\"\\uf55f\\\"\"]],[false,{\".fa-capsules:before\":false},[\"content:\\\"\\uf46b\\\"\"]],[false,{\".fa-automobile:before\":false,\".fa-car:before\":false},[\"content:\\\"\\uf1b9\\\"\"]],[false,{\".fa-battery-car:before\":false,\".fa-car-battery:before\":false},[\"content:\\\"\\uf5df\\\"\"]],[false,{\".fa-car-burst:before\":false,\".fa-car-crash:before\":false},[\"content:\\\"\\uf5e1\\\"\"]],[false,{\".fa-car-on:before\":false},[\"content:\\\"\\ue4dd\\\"\"]],[false,{\".fa-car-alt:before\":false,\".fa-car-rear:before\":false},[\"content:\\\"\\uf5de\\\"\"]],[false,{\".fa-car-side:before\":false},[\"content:\\\"\\uf5e4\\\"\"]],[false,{\".fa-car-tunnel:before\":false},[\"content:\\\"\\ue4de\\\"\"]],[false,{\".fa-caravan:before\":false},[\"content:\\\"\\uf8ff\\\"\"]],[false,{\".fa-caret-down:before\":false},[\"content:\\\"\\uf0d7\\\"\"]],[false,{\".fa-caret-left:before\":false},[\"content:\\\"\\uf0d9\\\"\"]],[false,{\".fa-caret-right:before\":false},[\"content:\\\"\\uf0da\\\"\"]],[false,{\".fa-caret-up:before\":false},[\"content:\\\"\\uf0d8\\\"\"]],[false,{\".fa-carrot:before\":false},[\"content:\\\"\\uf787\\\"\"]],[false,{\".fa-cart-arrow-down:before\":false},[\"content:\\\"\\uf218\\\"\"]],[false,{\".fa-cart-flatbed:before\":false,\".fa-dolly-flatbed:before\":false},[\"content:\\\"\\uf474\\\"\"]],[false,{\".fa-cart-flatbed-suitcase:before\":false,\".fa-luggage-cart:before\":false},[\"content:\\\"\\uf59d\\\"\"]],[false,{\".fa-cart-plus:before\":false},[\"content:\\\"\\uf217\\\"\"]],[false,{\".fa-cart-shopping:before\":false,\".fa-shopping-cart:before\":false},[\"content:\\\"\\uf07a\\\"\"]],[false,{\".fa-cash-register:before\":false},[\"content:\\\"\\uf788\\\"\"]],[false,{\".fa-cat:before\":false},[\"content:\\\"\\uf6be\\\"\"]],[false,{\".fa-cedi-sign:before\":false},[\"content:\\\"\\ue0df\\\"\"]],[false,{\".fa-cent-sign:before\":false},[\"content:\\\"\\ue3f5\\\"\"]],[false,{\".fa-certificate:before\":false},[\"content:\\\"\\uf0a3\\\"\"]],[false,{\".fa-chair:before\":false},[\"content:\\\"\\uf6c0\\\"\"]],[false,{\".fa-blackboard:before\":false,\".fa-chalkboard:before\":false},[\"content:\\\"\\uf51b\\\"\"]],[false,{\".fa-chalkboard-teacher:before\":false,\".fa-chalkboard-user:before\":false},[\"content:\\\"\\uf51c\\\"\"]],[false,{\".fa-champagne-glasses:before\":false,\".fa-glass-cheers:before\":false},[\"content:\\\"\\uf79f\\\"\"]],[false,{\".fa-charging-station:before\":false},[\"content:\\\"\\uf5e7\\\"\"]],[false,{\".fa-area-chart:before\":false,\".fa-chart-area:before\":false},[\"content:\\\"\\uf1fe\\\"\"]],[false,{\".fa-bar-chart:before\":false,\".fa-chart-bar:before\":false},[\"content:\\\"\\uf080\\\"\"]],[false,{\".fa-chart-column:before\":false},[\"content:\\\"\\ue0e3\\\"\"]],[false,{\".fa-chart-gantt:before\":false},[\"content:\\\"\\ue0e4\\\"\"]],[false,{\".fa-chart-line:before\":false,\".fa-line-chart:before\":false},[\"content:\\\"\\uf201\\\"\"]],[false,{\".fa-chart-pie:before\":false,\".fa-pie-chart:before\":false},[\"content:\\\"\\uf200\\\"\"]],[false,{\".fa-chart-simple:before\":false},[\"content:\\\"\\ue473\\\"\"]],[false,{\".fa-check:before\":false},[\"content:\\\"\\uf00c\\\"\"]],[false,{\".fa-check-double:before\":false},[\"content:\\\"\\uf560\\\"\"]],[false,{\".fa-check-to-slot:before\":false,\".fa-vote-yea:before\":false},[\"content:\\\"\\uf772\\\"\"]],[false,{\".fa-cheese:before\":false},[\"content:\\\"\\uf7ef\\\"\"]],[false,{\".fa-chess:before\":false},[\"content:\\\"\\uf439\\\"\"]],[false,{\".fa-chess-bishop:before\":false},[\"content:\\\"\\uf43a\\\"\"]],[false,{\".fa-chess-board:before\":false},[\"content:\\\"\\uf43c\\\"\"]],[false,{\".fa-chess-king:before\":false},[\"content:\\\"\\uf43f\\\"\"]],[false,{\".fa-chess-knight:before\":false},[\"content:\\\"\\uf441\\\"\"]],[false,{\".fa-chess-pawn:before\":false},[\"content:\\\"\\uf443\\\"\"]],[false,{\".fa-chess-queen:before\":false},[\"content:\\\"\\uf445\\\"\"]],[false,{\".fa-chess-rook:before\":false},[\"content:\\\"\\uf447\\\"\"]],[false,{\".fa-chevron-down:before\":false},[\"content:\\\"\\uf078\\\"\"]],[false,{\".fa-chevron-left:before\":false},[\"content:\\\"\\uf053\\\"\"]],[false,{\".fa-chevron-right:before\":false},[\"content:\\\"\\uf054\\\"\"]],[false,{\".fa-chevron-up:before\":false},[\"content:\\\"\\uf077\\\"\"]],[false,{\".fa-child:before\":false},[\"content:\\\"\\uf1ae\\\"\"]],[false,{\".fa-child-rifle:before\":false},[\"content:\\\"\\ue4e0\\\"\"]],[false,{\".fa-children:before\":false},[\"content:\\\"\\ue4e1\\\"\"]],[false,{\".fa-church:before\":false},[\"content:\\\"\\uf51d\\\"\"]],[false,{\".fa-circle:before\":false},[\"content:\\\"\\uf111\\\"\"]],[false,{\".fa-arrow-circle-down:before\":false,\".fa-circle-arrow-down:before\":false},[\"content:\\\"\\uf0ab\\\"\"]],[false,{\".fa-arrow-circle-left:before\":false,\".fa-circle-arrow-left:before\":false},[\"content:\\\"\\uf0a8\\\"\"]],[false,{\".fa-arrow-circle-right:before\":false,\".fa-circle-arrow-right:before\":false},[\"content:\\\"\\uf0a9\\\"\"]],[false,{\".fa-arrow-circle-up:before\":false,\".fa-circle-arrow-up:before\":false},[\"content:\\\"\\uf0aa\\\"\"]],[false,{\".fa-check-circle:before\":false,\".fa-circle-check:before\":false},[\"content:\\\"\\uf058\\\"\"]],[false,{\".fa-chevron-circle-down:before\":false,\".fa-circle-chevron-down:before\":false},[\"content:\\\"\\uf13a\\\"\"]],[false,{\".fa-chevron-circle-left:before\":false,\".fa-circle-chevron-left:before\":false},[\"content:\\\"\\uf137\\\"\"]],[false,{\".fa-chevron-circle-right:before\":false,\".fa-circle-chevron-right:before\":false},[\"content:\\\"\\uf138\\\"\"]],[false,{\".fa-chevron-circle-up:before\":false,\".fa-circle-chevron-up:before\":false},[\"content:\\\"\\uf139\\\"\"]],[false,{\".fa-circle-dollar-to-slot:before\":false,\".fa-donate:before\":false},[\"content:\\\"\\uf4b9\\\"\"]],[false,{\".fa-circle-dot:before\":false,\".fa-dot-circle:before\":false},[\"content:\\\"\\uf192\\\"\"]],[false,{\".fa-arrow-alt-circle-down:before\":false,\".fa-circle-down:before\":false},[\"content:\\\"\\uf358\\\"\"]],[false,{\".fa-circle-exclamation:before\":false,\".fa-exclamation-circle:before\":false},[\"content:\\\"\\uf06a\\\"\"]],[false,{\".fa-circle-h:before\":false,\".fa-hospital-symbol:before\":false},[\"content:\\\"\\uf47e\\\"\"]],[false,{\".fa-adjust:before\":false,\".fa-circle-half-stroke:before\":false},[\"content:\\\"\\uf042\\\"\"]],[false,{\".fa-circle-info:before\":false,\".fa-info-circle:before\":false},[\"content:\\\"\\uf05a\\\"\"]],[false,{\".fa-arrow-alt-circle-left:before\":false,\".fa-circle-left:before\":false},[\"content:\\\"\\uf359\\\"\"]],[false,{\".fa-circle-minus:before\":false,\".fa-minus-circle:before\":false},[\"content:\\\"\\uf056\\\"\"]],[false,{\".fa-circle-nodes:before\":false},[\"content:\\\"\\ue4e2\\\"\"]],[false,{\".fa-circle-notch:before\":false},[\"content:\\\"\\uf1ce\\\"\"]],[false,{\".fa-circle-pause:before\":false,\".fa-pause-circle:before\":false},[\"content:\\\"\\uf28b\\\"\"]],[false,{\".fa-circle-play:before\":false,\".fa-play-circle:before\":false},[\"content:\\\"\\uf144\\\"\"]],[false,{\".fa-circle-plus:before\":false,\".fa-plus-circle:before\":false},[\"content:\\\"\\uf055\\\"\"]],[false,{\".fa-circle-question:before\":false,\".fa-question-circle:before\":false},[\"content:\\\"\\uf059\\\"\"]],[false,{\".fa-circle-radiation:before\":false,\".fa-radiation-alt:before\":false},[\"content:\\\"\\uf7ba\\\"\"]],[false,{\".fa-arrow-alt-circle-right:before\":false,\".fa-circle-right:before\":false},[\"content:\\\"\\uf35a\\\"\"]],[false,{\".fa-circle-stop:before\":false,\".fa-stop-circle:before\":false},[\"content:\\\"\\uf28d\\\"\"]],[false,{\".fa-arrow-alt-circle-up:before\":false,\".fa-circle-up:before\":false},[\"content:\\\"\\uf35b\\\"\"]],[false,{\".fa-circle-user:before\":false,\".fa-user-circle:before\":false},[\"content:\\\"\\uf2bd\\\"\"]],[false,{\".fa-circle-xmark:before\":false,\".fa-times-circle:before\":false,\".fa-xmark-circle:before\":false},[\"content:\\\"\\uf057\\\"\"]],[false,{\".fa-city:before\":false},[\"content:\\\"\\uf64f\\\"\"]],[false,{\".fa-clapperboard:before\":false},[\"content:\\\"\\ue131\\\"\"]],[false,{\".fa-clipboard:before\":false},[\"content:\\\"\\uf328\\\"\"]],[false,{\".fa-clipboard-check:before\":false},[\"content:\\\"\\uf46c\\\"\"]],[false,{\".fa-clipboard-list:before\":false},[\"content:\\\"\\uf46d\\\"\"]],[false,{\".fa-clipboard-question:before\":false},[\"content:\\\"\\ue4e3\\\"\"]],[false,{\".fa-clipboard-user:before\":false},[\"content:\\\"\\uf7f3\\\"\"]],[false,{\".fa-clock-four:before\":false,\".fa-clock:before\":false},[\"content:\\\"\\uf017\\\"\"]],[false,{\".fa-clock-rotate-left:before\":false,\".fa-history:before\":false},[\"content:\\\"\\uf1da\\\"\"]],[false,{\".fa-clone:before\":false},[\"content:\\\"\\uf24d\\\"\"]],[false,{\".fa-closed-captioning:before\":false},[\"content:\\\"\\uf20a\\\"\"]],[false,{\".fa-cloud:before\":false},[\"content:\\\"\\uf0c2\\\"\"]],[false,{\".fa-cloud-arrow-down:before\":false,\".fa-cloud-download-alt:before\":false,\".fa-cloud-download:before\":false},[\"content:\\\"\\uf0ed\\\"\"]],[false,{\".fa-cloud-arrow-up:before\":false,\".fa-cloud-upload-alt:before\":false,\".fa-cloud-upload:before\":false},[\"content:\\\"\\uf0ee\\\"\"]],[false,{\".fa-cloud-bolt:before\":false,\".fa-thunderstorm:before\":false},[\"content:\\\"\\uf76c\\\"\"]],[false,{\".fa-cloud-meatball:before\":false},[\"content:\\\"\\uf73b\\\"\"]],[false,{\".fa-cloud-moon:before\":false},[\"content:\\\"\\uf6c3\\\"\"]],[false,{\".fa-cloud-moon-rain:before\":false},[\"content:\\\"\\uf73c\\\"\"]],[false,{\".fa-cloud-rain:before\":false},[\"content:\\\"\\uf73d\\\"\"]],[false,{\".fa-cloud-showers-heavy:before\":false},[\"content:\\\"\\uf740\\\"\"]],[false,{\".fa-cloud-showers-water:before\":false},[\"content:\\\"\\ue4e4\\\"\"]],[false,{\".fa-cloud-sun:before\":false},[\"content:\\\"\\uf6c4\\\"\"]],[false,{\".fa-cloud-sun-rain:before\":false},[\"content:\\\"\\uf743\\\"\"]],[false,{\".fa-clover:before\":false},[\"content:\\\"\\ue139\\\"\"]],[false,{\".fa-code:before\":false},[\"content:\\\"\\uf121\\\"\"]],[false,{\".fa-code-branch:before\":false},[\"content:\\\"\\uf126\\\"\"]],[false,{\".fa-code-commit:before\":false},[\"content:\\\"\\uf386\\\"\"]],[false,{\".fa-code-compare:before\":false},[\"content:\\\"\\ue13a\\\"\"]],[false,{\".fa-code-fork:before\":false},[\"content:\\\"\\ue13b\\\"\"]],[false,{\".fa-code-merge:before\":false},[\"content:\\\"\\uf387\\\"\"]],[false,{\".fa-code-pull-request:before\":false},[\"content:\\\"\\ue13c\\\"\"]],[false,{\".fa-coins:before\":false},[\"content:\\\"\\uf51e\\\"\"]],[false,{\".fa-colon-sign:before\":false},[\"content:\\\"\\ue140\\\"\"]],[false,{\".fa-comment:before\":false},[\"content:\\\"\\uf075\\\"\"]],[false,{\".fa-comment-dollar:before\":false},[\"content:\\\"\\uf651\\\"\"]],[false,{\".fa-comment-dots:before\":false,\".fa-commenting:before\":false},[\"content:\\\"\\uf4ad\\\"\"]],[false,{\".fa-comment-medical:before\":false},[\"content:\\\"\\uf7f5\\\"\"]],[false,{\".fa-comment-slash:before\":false},[\"content:\\\"\\uf4b3\\\"\"]],[false,{\".fa-comment-sms:before\":false,\".fa-sms:before\":false},[\"content:\\\"\\uf7cd\\\"\"]],[false,{\".fa-comments:before\":false},[\"content:\\\"\\uf086\\\"\"]],[false,{\".fa-comments-dollar:before\":false},[\"content:\\\"\\uf653\\\"\"]],[false,{\".fa-compact-disc:before\":false},[\"content:\\\"\\uf51f\\\"\"]],[false,{\".fa-compass:before\":false},[\"content:\\\"\\uf14e\\\"\"]],[false,{\".fa-compass-drafting:before\":false,\".fa-drafting-compass:before\":false},[\"content:\\\"\\uf568\\\"\"]],[false,{\".fa-compress:before\":false},[\"content:\\\"\\uf066\\\"\"]],[false,{\".fa-computer:before\":false},[\"content:\\\"\\ue4e5\\\"\"]],[false,{\".fa-computer-mouse:before\":false,\".fa-mouse:before\":false},[\"content:\\\"\\uf8cc\\\"\"]],[false,{\".fa-cookie:before\":false},[\"content:\\\"\\uf563\\\"\"]],[false,{\".fa-cookie-bite:before\":false},[\"content:\\\"\\uf564\\\"\"]],[false,{\".fa-copy:before\":false},[\"content:\\\"\\uf0c5\\\"\"]],[false,{\".fa-copyright:before\":false},[\"content:\\\"\\uf1f9\\\"\"]],[false,{\".fa-couch:before\":false},[\"content:\\\"\\uf4b8\\\"\"]],[false,{\".fa-cow:before\":false},[\"content:\\\"\\uf6c8\\\"\"]],[false,{\".fa-credit-card-alt:before\":false,\".fa-credit-card:before\":false},[\"content:\\\"\\uf09d\\\"\"]],[false,{\".fa-crop:before\":false},[\"content:\\\"\\uf125\\\"\"]],[false,{\".fa-crop-alt:before\":false,\".fa-crop-simple:before\":false},[\"content:\\\"\\uf565\\\"\"]],[false,{\".fa-cross:before\":false},[\"content:\\\"\\uf654\\\"\"]],[false,{\".fa-crosshairs:before\":false},[\"content:\\\"\\uf05b\\\"\"]],[false,{\".fa-crow:before\":false},[\"content:\\\"\\uf520\\\"\"]],[false,{\".fa-crown:before\":false},[\"content:\\\"\\uf521\\\"\"]],[false,{\".fa-crutch:before\":false},[\"content:\\\"\\uf7f7\\\"\"]],[false,{\".fa-cruzeiro-sign:before\":false},[\"content:\\\"\\ue152\\\"\"]],[false,{\".fa-cube:before\":false},[\"content:\\\"\\uf1b2\\\"\"]],[false,{\".fa-cubes:before\":false},[\"content:\\\"\\uf1b3\\\"\"]],[false,{\".fa-cubes-stacked:before\":false},[\"content:\\\"\\ue4e6\\\"\"]],[false,{\".fa-d:before\":false},[\"content:\\\"D\\\"\"]],[false,{\".fa-database:before\":false},[\"content:\\\"\\uf1c0\\\"\"]],[false,{\".fa-backspace:before\":false,\".fa-delete-left:before\":false},[\"content:\\\"\\uf55a\\\"\"]],[false,{\".fa-democrat:before\":false},[\"content:\\\"\\uf747\\\"\"]],[false,{\".fa-desktop-alt:before\":false,\".fa-desktop:before\":false},[\"content:\\\"\\uf390\\\"\"]],[false,{\".fa-dharmachakra:before\":false},[\"content:\\\"\\uf655\\\"\"]],[false,{\".fa-diagram-next:before\":false},[\"content:\\\"\\ue476\\\"\"]],[false,{\".fa-diagram-predecessor:before\":false},[\"content:\\\"\\ue477\\\"\"]],[false,{\".fa-diagram-project:before\":false,\".fa-project-diagram:before\":false},[\"content:\\\"\\uf542\\\"\"]],[false,{\".fa-diagram-successor:before\":false},[\"content:\\\"\\ue47a\\\"\"]],[false,{\".fa-diamond:before\":false},[\"content:\\\"\\uf219\\\"\"]],[false,{\".fa-diamond-turn-right:before\":false,\".fa-directions:before\":false},[\"content:\\\"\\uf5eb\\\"\"]],[false,{\".fa-dice:before\":false},[\"content:\\\"\\uf522\\\"\"]],[false,{\".fa-dice-d20:before\":false},[\"content:\\\"\\uf6cf\\\"\"]],[false,{\".fa-dice-d6:before\":false},[\"content:\\\"\\uf6d1\\\"\"]],[false,{\".fa-dice-five:before\":false},[\"content:\\\"\\uf523\\\"\"]],[false,{\".fa-dice-four:before\":false},[\"content:\\\"\\uf524\\\"\"]],[false,{\".fa-dice-one:before\":false},[\"content:\\\"\\uf525\\\"\"]],[false,{\".fa-dice-six:before\":false},[\"content:\\\"\\uf526\\\"\"]],[false,{\".fa-dice-three:before\":false},[\"content:\\\"\\uf527\\\"\"]],[false,{\".fa-dice-two:before\":false},[\"content:\\\"\\uf528\\\"\"]],[false,{\".fa-disease:before\":false},[\"content:\\\"\\uf7fa\\\"\"]],[false,{\".fa-display:before\":false},[\"content:\\\"\\ue163\\\"\"]],[false,{\".fa-divide:before\":false},[\"content:\\\"\\uf529\\\"\"]],[false,{\".fa-dna:before\":false},[\"content:\\\"\\uf471\\\"\"]],[false,{\".fa-dog:before\":false},[\"content:\\\"\\uf6d3\\\"\"]],[false,{\".fa-dollar-sign:before\":false,\".fa-dollar:before\":false,\".fa-usd:before\":false},[\"content:\\\"$\\\"\"]],[false,{\".fa-dolly-box:before\":false,\".fa-dolly:before\":false},[\"content:\\\"\\uf472\\\"\"]],[false,{\".fa-dong-sign:before\":false},[\"content:\\\"\\ue169\\\"\"]],[false,{\".fa-door-closed:before\":false},[\"content:\\\"\\uf52a\\\"\"]],[false,{\".fa-door-open:before\":false},[\"content:\\\"\\uf52b\\\"\"]],[false,{\".fa-dove:before\":false},[\"content:\\\"\\uf4ba\\\"\"]],[false,{\".fa-compress-alt:before\":false,\".fa-down-left-and-up-right-to-center:before\":false},[\"content:\\\"\\uf422\\\"\"]],[false,{\".fa-down-long:before\":false,\".fa-long-arrow-alt-down:before\":false},[\"content:\\\"\\uf309\\\"\"]],[false,{\".fa-download:before\":false},[\"content:\\\"\\uf019\\\"\"]],[false,{\".fa-dragon:before\":false},[\"content:\\\"\\uf6d5\\\"\"]],[false,{\".fa-draw-polygon:before\":false},[\"content:\\\"\\uf5ee\\\"\"]],[false,{\".fa-droplet:before\":false,\".fa-tint:before\":false},[\"content:\\\"\\uf043\\\"\"]],[false,{\".fa-droplet-slash:before\":false,\".fa-tint-slash:before\":false},[\"content:\\\"\\uf5c7\\\"\"]],[false,{\".fa-drum:before\":false},[\"content:\\\"\\uf569\\\"\"]],[false,{\".fa-drum-steelpan:before\":false},[\"content:\\\"\\uf56a\\\"\"]],[false,{\".fa-drumstick-bite:before\":false},[\"content:\\\"\\uf6d7\\\"\"]],[false,{\".fa-dumbbell:before\":false},[\"content:\\\"\\uf44b\\\"\"]],[false,{\".fa-dumpster:before\":false},[\"content:\\\"\\uf793\\\"\"]],[false,{\".fa-dumpster-fire:before\":false},[\"content:\\\"\\uf794\\\"\"]],[false,{\".fa-dungeon:before\":false},[\"content:\\\"\\uf6d9\\\"\"]],[false,{\".fa-e:before\":false},[\"content:\\\"E\\\"\"]],[false,{\".fa-deaf:before\":false,\".fa-deafness:before\":false,\".fa-ear-deaf:before\":false,\".fa-hard-of-hearing:before\":false},[\"content:\\\"\\uf2a4\\\"\"]],[false,{\".fa-assistive-listening-systems:before\":false,\".fa-ear-listen:before\":false},[\"content:\\\"\\uf2a2\\\"\"]],[false,{\".fa-earth-africa:before\":false,\".fa-globe-africa:before\":false},[\"content:\\\"\\uf57c\\\"\"]],[false,{\".fa-earth-america:before\":false,\".fa-earth-americas:before\":false,\".fa-earth:before\":false,\".fa-globe-americas:before\":false},[\"content:\\\"\\uf57d\\\"\"]],[false,{\".fa-earth-asia:before\":false,\".fa-globe-asia:before\":false},[\"content:\\\"\\uf57e\\\"\"]],[false,{\".fa-earth-europe:before\":false,\".fa-globe-europe:before\":false},[\"content:\\\"\\uf7a2\\\"\"]],[false,{\".fa-earth-oceania:before\":false,\".fa-globe-oceania:before\":false},[\"content:\\\"\\ue47b\\\"\"]],[false,{\".fa-egg:before\":false},[\"content:\\\"\\uf7fb\\\"\"]],[false,{\".fa-eject:before\":false},[\"content:\\\"\\uf052\\\"\"]],[false,{\".fa-elevator:before\":false},[\"content:\\\"\\ue16d\\\"\"]],[false,{\".fa-ellipsis-h:before\":false,\".fa-ellipsis:before\":false},[\"content:\\\"\\uf141\\\"\"]],[false,{\".fa-ellipsis-v:before\":false,\".fa-ellipsis-vertical:before\":false},[\"content:\\\"\\uf142\\\"\"]],[false,{\".fa-envelope:before\":false},[\"content:\\\"\\uf0e0\\\"\"]],[false,{\".fa-envelope-circle-check:before\":false},[\"content:\\\"\\ue4e8\\\"\"]],[false,{\".fa-envelope-open:before\":false},[\"content:\\\"\\uf2b6\\\"\"]],[false,{\".fa-envelope-open-text:before\":false},[\"content:\\\"\\uf658\\\"\"]],[false,{\".fa-envelopes-bulk:before\":false,\".fa-mail-bulk:before\":false},[\"content:\\\"\\uf674\\\"\"]],[false,{\".fa-equals:before\":false},[\"content:\\\"=\\\"\"]],[false,{\".fa-eraser:before\":false},[\"content:\\\"\\uf12d\\\"\"]],[false,{\".fa-ethernet:before\":false},[\"content:\\\"\\uf796\\\"\"]],[false,{\".fa-eur:before\":false,\".fa-euro-sign:before\":false,\".fa-euro:before\":false},[\"content:\\\"\\uf153\\\"\"]],[false,{\".fa-exclamation:before\":false},[\"content:\\\"!\\\"\"]],[false,{\".fa-expand:before\":false},[\"content:\\\"\\uf065\\\"\"]],[false,{\".fa-explosion:before\":false},[\"content:\\\"\\ue4e9\\\"\"]],[false,{\".fa-eye:before\":false},[\"content:\\\"\\uf06e\\\"\"]],[false,{\".fa-eye-dropper-empty:before\":false,\".fa-eye-dropper:before\":false,\".fa-eyedropper:before\":false},[\"content:\\\"\\uf1fb\\\"\"]],[false,{\".fa-eye-low-vision:before\":false,\".fa-low-vision:before\":false},[\"content:\\\"\\uf2a8\\\"\"]],[false,{\".fa-eye-slash:before\":false},[\"content:\\\"\\uf070\\\"\"]],[false,{\".fa-f:before\":false},[\"content:\\\"F\\\"\"]],[false,{\".fa-angry:before\":false,\".fa-face-angry:before\":false},[\"content:\\\"\\uf556\\\"\"]],[false,{\".fa-dizzy:before\":false,\".fa-face-dizzy:before\":false},[\"content:\\\"\\uf567\\\"\"]],[false,{\".fa-face-flushed:before\":false,\".fa-flushed:before\":false},[\"content:\\\"\\uf579\\\"\"]],[false,{\".fa-face-frown:before\":false,\".fa-frown:before\":false},[\"content:\\\"\\uf119\\\"\"]],[false,{\".fa-face-frown-open:before\":false,\".fa-frown-open:before\":false},[\"content:\\\"\\uf57a\\\"\"]],[false,{\".fa-face-grimace:before\":false,\".fa-grimace:before\":false},[\"content:\\\"\\uf57f\\\"\"]],[false,{\".fa-face-grin:before\":false,\".fa-grin:before\":false},[\"content:\\\"\\uf580\\\"\"]],[false,{\".fa-face-grin-beam:before\":false,\".fa-grin-beam:before\":false},[\"content:\\\"\\uf582\\\"\"]],[false,{\".fa-face-grin-beam-sweat:before\":false,\".fa-grin-beam-sweat:before\":false},[\"content:\\\"\\uf583\\\"\"]],[false,{\".fa-face-grin-hearts:before\":false,\".fa-grin-hearts:before\":false},[\"content:\\\"\\uf584\\\"\"]],[false,{\".fa-face-grin-squint:before\":false,\".fa-grin-squint:before\":false},[\"content:\\\"\\uf585\\\"\"]],[false,{\".fa-face-grin-squint-tears:before\":false,\".fa-grin-squint-tears:before\":false},[\"content:\\\"\\uf586\\\"\"]],[false,{\".fa-face-grin-stars:before\":false,\".fa-grin-stars:before\":false},[\"content:\\\"\\uf587\\\"\"]],[false,{\".fa-face-grin-tears:before\":false,\".fa-grin-tears:before\":false},[\"content:\\\"\\uf588\\\"\"]],[false,{\".fa-face-grin-tongue:before\":false,\".fa-grin-tongue:before\":false},[\"content:\\\"\\uf589\\\"\"]],[false,{\".fa-face-grin-tongue-squint:before\":false,\".fa-grin-tongue-squint:before\":false},[\"content:\\\"\\uf58a\\\"\"]],[false,{\".fa-face-grin-tongue-wink:before\":false,\".fa-grin-tongue-wink:before\":false},[\"content:\\\"\\uf58b\\\"\"]],[false,{\".fa-face-grin-wide:before\":false,\".fa-grin-alt:before\":false},[\"content:\\\"\\uf581\\\"\"]],[false,{\".fa-face-grin-wink:before\":false,\".fa-grin-wink:before\":false},[\"content:\\\"\\uf58c\\\"\"]],[false,{\".fa-face-kiss:before\":false,\".fa-kiss:before\":false},[\"content:\\\"\\uf596\\\"\"]],[false,{\".fa-face-kiss-beam:before\":false,\".fa-kiss-beam:before\":false},[\"content:\\\"\\uf597\\\"\"]],[false,{\".fa-face-kiss-wink-heart:before\":false,\".fa-kiss-wink-heart:before\":false},[\"content:\\\"\\uf598\\\"\"]],[false,{\".fa-face-laugh:before\":false,\".fa-laugh:before\":false},[\"content:\\\"\\uf599\\\"\"]],[false,{\".fa-face-laugh-beam:before\":false,\".fa-laugh-beam:before\":false},[\"content:\\\"\\uf59a\\\"\"]],[false,{\".fa-face-laugh-squint:before\":false,\".fa-laugh-squint:before\":false},[\"content:\\\"\\uf59b\\\"\"]],[false,{\".fa-face-laugh-wink:before\":false,\".fa-laugh-wink:before\":false},[\"content:\\\"\\uf59c\\\"\"]],[false,{\".fa-face-meh:before\":false,\".fa-meh:before\":false},[\"content:\\\"\\uf11a\\\"\"]],[false,{\".fa-face-meh-blank:before\":false,\".fa-meh-blank:before\":false},[\"content:\\\"\\uf5a4\\\"\"]],[false,{\".fa-face-rolling-eyes:before\":false,\".fa-meh-rolling-eyes:before\":false},[\"content:\\\"\\uf5a5\\\"\"]],[false,{\".fa-face-sad-cry:before\":false,\".fa-sad-cry:before\":false},[\"content:\\\"\\uf5b3\\\"\"]],[false,{\".fa-face-sad-tear:before\":false,\".fa-sad-tear:before\":false},[\"content:\\\"\\uf5b4\\\"\"]],[false,{\".fa-face-smile:before\":false,\".fa-smile:before\":false},[\"content:\\\"\\uf118\\\"\"]],[false,{\".fa-face-smile-beam:before\":false,\".fa-smile-beam:before\":false},[\"content:\\\"\\uf5b8\\\"\"]],[false,{\".fa-face-smile-wink:before\":false,\".fa-smile-wink:before\":false},[\"content:\\\"\\uf4da\\\"\"]],[false,{\".fa-face-surprise:before\":false,\".fa-surprise:before\":false},[\"content:\\\"\\uf5c2\\\"\"]],[false,{\".fa-face-tired:before\":false,\".fa-tired:before\":false},[\"content:\\\"\\uf5c8\\\"\"]],[false,{\".fa-fan:before\":false},[\"content:\\\"\\uf863\\\"\"]],[false,{\".fa-faucet:before\":false},[\"content:\\\"\\ue005\\\"\"]],[false,{\".fa-faucet-drip:before\":false},[\"content:\\\"\\ue006\\\"\"]],[false,{\".fa-fax:before\":false},[\"content:\\\"\\uf1ac\\\"\"]],[false,{\".fa-feather:before\":false},[\"content:\\\"\\uf52d\\\"\"]],[false,{\".fa-feather-alt:before\":false,\".fa-feather-pointed:before\":false},[\"content:\\\"\\uf56b\\\"\"]],[false,{\".fa-ferry:before\":false},[\"content:\\\"\\ue4ea\\\"\"]],[false,{\".fa-file:before\":false},[\"content:\\\"\\uf15b\\\"\"]],[false,{\".fa-file-arrow-down:before\":false,\".fa-file-download:before\":false},[\"content:\\\"\\uf56d\\\"\"]],[false,{\".fa-file-arrow-up:before\":false,\".fa-file-upload:before\":false},[\"content:\\\"\\uf574\\\"\"]],[false,{\".fa-file-audio:before\":false},[\"content:\\\"\\uf1c7\\\"\"]],[false,{\".fa-file-circle-check:before\":false},[\"content:\\\"\\ue493\\\"\"]],[false,{\".fa-file-circle-exclamation:before\":false},[\"content:\\\"\\ue4eb\\\"\"]],[false,{\".fa-file-circle-minus:before\":false},[\"content:\\\"\\ue4ed\\\"\"]],[false,{\".fa-file-circle-plus:before\":false},[\"content:\\\"\\ue4ee\\\"\"]],[false,{\".fa-file-circle-question:before\":false},[\"content:\\\"\\ue4ef\\\"\"]],[false,{\".fa-file-circle-xmark:before\":false},[\"content:\\\"\\ue494\\\"\"]],[false,{\".fa-file-code:before\":false},[\"content:\\\"\\uf1c9\\\"\"]],[false,{\".fa-file-contract:before\":false},[\"content:\\\"\\uf56c\\\"\"]],[false,{\".fa-file-csv:before\":false},[\"content:\\\"\\uf6dd\\\"\"]],[false,{\".fa-file-excel:before\":false},[\"content:\\\"\\uf1c3\\\"\"]],[false,{\".fa-arrow-right-from-file:before\":false,\".fa-file-export:before\":false},[\"content:\\\"\\uf56e\\\"\"]],[false,{\".fa-file-image:before\":false},[\"content:\\\"\\uf1c5\\\"\"]],[false,{\".fa-arrow-right-to-file:before\":false,\".fa-file-import:before\":false},[\"content:\\\"\\uf56f\\\"\"]],[false,{\".fa-file-invoice:before\":false},[\"content:\\\"\\uf570\\\"\"]],[false,{\".fa-file-invoice-dollar:before\":false},[\"content:\\\"\\uf571\\\"\"]],[false,{\".fa-file-alt:before\":false,\".fa-file-lines:before\":false,\".fa-file-text:before\":false},[\"content:\\\"\\uf15c\\\"\"]],[false,{\".fa-file-medical:before\":false},[\"content:\\\"\\uf477\\\"\"]],[false,{\".fa-file-pdf:before\":false},[\"content:\\\"\\uf1c1\\\"\"]],[false,{\".fa-file-edit:before\":false,\".fa-file-pen:before\":false},[\"content:\\\"\\uf31c\\\"\"]],[false,{\".fa-file-powerpoint:before\":false},[\"content:\\\"\\uf1c4\\\"\"]],[false,{\".fa-file-prescription:before\":false},[\"content:\\\"\\uf572\\\"\"]],[false,{\".fa-file-shield:before\":false},[\"content:\\\"\\ue4f0\\\"\"]],[false,{\".fa-file-signature:before\":false},[\"content:\\\"\\uf573\\\"\"]],[false,{\".fa-file-video:before\":false},[\"content:\\\"\\uf1c8\\\"\"]],[false,{\".fa-file-medical-alt:before\":false,\".fa-file-waveform:before\":false},[\"content:\\\"\\uf478\\\"\"]],[false,{\".fa-file-word:before\":false},[\"content:\\\"\\uf1c2\\\"\"]],[false,{\".fa-file-archive:before\":false,\".fa-file-zipper:before\":false},[\"content:\\\"\\uf1c6\\\"\"]],[false,{\".fa-fill:before\":false},[\"content:\\\"\\uf575\\\"\"]],[false,{\".fa-fill-drip:before\":false},[\"content:\\\"\\uf576\\\"\"]],[false,{\".fa-film:before\":false},[\"content:\\\"\\uf008\\\"\"]],[false,{\".fa-filter:before\":false},[\"content:\\\"\\uf0b0\\\"\"]],[false,{\".fa-filter-circle-dollar:before\":false,\".fa-funnel-dollar:before\":false},[\"content:\\\"\\uf662\\\"\"]],[false,{\".fa-filter-circle-xmark:before\":false},[\"content:\\\"\\ue17b\\\"\"]],[false,{\".fa-fingerprint:before\":false},[\"content:\\\"\\uf577\\\"\"]],[false,{\".fa-fire:before\":false},[\"content:\\\"\\uf06d\\\"\"]],[false,{\".fa-fire-burner:before\":false},[\"content:\\\"\\ue4f1\\\"\"]],[false,{\".fa-fire-extinguisher:before\":false},[\"content:\\\"\\uf134\\\"\"]],[false,{\".fa-fire-alt:before\":false,\".fa-fire-flame-curved:before\":false},[\"content:\\\"\\uf7e4\\\"\"]],[false,{\".fa-burn:before\":false,\".fa-fire-flame-simple:before\":false},[\"content:\\\"\\uf46a\\\"\"]],[false,{\".fa-fish:before\":false},[\"content:\\\"\\uf578\\\"\"]],[false,{\".fa-fish-fins:before\":false},[\"content:\\\"\\ue4f2\\\"\"]],[false,{\".fa-flag:before\":false},[\"content:\\\"\\uf024\\\"\"]],[false,{\".fa-flag-checkered:before\":false},[\"content:\\\"\\uf11e\\\"\"]],[false,{\".fa-flag-usa:before\":false},[\"content:\\\"\\uf74d\\\"\"]],[false,{\".fa-flask:before\":false},[\"content:\\\"\\uf0c3\\\"\"]],[false,{\".fa-flask-vial:before\":false},[\"content:\\\"\\ue4f3\\\"\"]],[false,{\".fa-floppy-disk:before\":false,\".fa-save:before\":false},[\"content:\\\"\\uf0c7\\\"\"]],[false,{\".fa-florin-sign:before\":false},[\"content:\\\"\\ue184\\\"\"]],[false,{\".fa-folder-blank:before\":false,\".fa-folder:before\":false},[\"content:\\\"\\uf07b\\\"\"]],[false,{\".fa-folder-closed:before\":false},[\"content:\\\"\\ue185\\\"\"]],[false,{\".fa-folder-minus:before\":false},[\"content:\\\"\\uf65d\\\"\"]],[false,{\".fa-folder-open:before\":false},[\"content:\\\"\\uf07c\\\"\"]],[false,{\".fa-folder-plus:before\":false},[\"content:\\\"\\uf65e\\\"\"]],[false,{\".fa-folder-tree:before\":false},[\"content:\\\"\\uf802\\\"\"]],[false,{\".fa-font:before\":false},[\"content:\\\"\\uf031\\\"\"]],[false,{\".fa-football-ball:before\":false,\".fa-football:before\":false},[\"content:\\\"\\uf44e\\\"\"]],[false,{\".fa-forward:before\":false},[\"content:\\\"\\uf04e\\\"\"]],[false,{\".fa-fast-forward:before\":false,\".fa-forward-fast:before\":false},[\"content:\\\"\\uf050\\\"\"]],[false,{\".fa-forward-step:before\":false,\".fa-step-forward:before\":false},[\"content:\\\"\\uf051\\\"\"]],[false,{\".fa-franc-sign:before\":false},[\"content:\\\"\\ue18f\\\"\"]],[false,{\".fa-frog:before\":false},[\"content:\\\"\\uf52e\\\"\"]],[false,{\".fa-futbol-ball:before\":false,\".fa-futbol:before\":false,\".fa-soccer-ball:before\":false},[\"content:\\\"\\uf1e3\\\"\"]],[false,{\".fa-g:before\":false},[\"content:\\\"G\\\"\"]],[false,{\".fa-gamepad:before\":false},[\"content:\\\"\\uf11b\\\"\"]],[false,{\".fa-gas-pump:before\":false},[\"content:\\\"\\uf52f\\\"\"]],[false,{\".fa-dashboard:before\":false,\".fa-gauge-med:before\":false,\".fa-gauge:before\":false,\".fa-tachometer-alt-average:before\":false},[\"content:\\\"\\uf624\\\"\"]],[false,{\".fa-gauge-high:before\":false,\".fa-tachometer-alt-fast:before\":false,\".fa-tachometer-alt:before\":false},[\"content:\\\"\\uf625\\\"\"]],[false,{\".fa-gauge-simple-med:before\":false,\".fa-gauge-simple:before\":false,\".fa-tachometer-average:before\":false},[\"content:\\\"\\uf629\\\"\"]],[false,{\".fa-gauge-simple-high:before\":false,\".fa-tachometer-fast:before\":false,\".fa-tachometer:before\":false},[\"content:\\\"\\uf62a\\\"\"]],[false,{\".fa-gavel:before\":false,\".fa-legal:before\":false},[\"content:\\\"\\uf0e3\\\"\"]],[false,{\".fa-cog:before\":false,\".fa-gear:before\":false},[\"content:\\\"\\uf013\\\"\"]],[false,{\".fa-cogs:before\":false,\".fa-gears:before\":false},[\"content:\\\"\\uf085\\\"\"]],[false,{\".fa-gem:before\":false},[\"content:\\\"\\uf3a5\\\"\"]],[false,{\".fa-genderless:before\":false},[\"content:\\\"\\uf22d\\\"\"]],[false,{\".fa-ghost:before\":false},[\"content:\\\"\\uf6e2\\\"\"]],[false,{\".fa-gift:before\":false},[\"content:\\\"\\uf06b\\\"\"]],[false,{\".fa-gifts:before\":false},[\"content:\\\"\\uf79c\\\"\"]],[false,{\".fa-glass-water:before\":false},[\"content:\\\"\\ue4f4\\\"\"]],[false,{\".fa-glass-water-droplet:before\":false},[\"content:\\\"\\ue4f5\\\"\"]],[false,{\".fa-glasses:before\":false},[\"content:\\\"\\uf530\\\"\"]],[false,{\".fa-globe:before\":false},[\"content:\\\"\\uf0ac\\\"\"]],[false,{\".fa-golf-ball-tee:before\":false,\".fa-golf-ball:before\":false},[\"content:\\\"\\uf450\\\"\"]],[false,{\".fa-gopuram:before\":false},[\"content:\\\"\\uf664\\\"\"]],[false,{\".fa-graduation-cap:before\":false,\".fa-mortar-board:before\":false},[\"content:\\\"\\uf19d\\\"\"]],[false,{\".fa-greater-than:before\":false},[\"content:\\\">\\\"\"]],[false,{\".fa-greater-than-equal:before\":false},[\"content:\\\"\\uf532\\\"\"]],[false,{\".fa-grip-horizontal:before\":false,\".fa-grip:before\":false},[\"content:\\\"\\uf58d\\\"\"]],[false,{\".fa-grip-lines:before\":false},[\"content:\\\"\\uf7a4\\\"\"]],[false,{\".fa-grip-lines-vertical:before\":false},[\"content:\\\"\\uf7a5\\\"\"]],[false,{\".fa-grip-vertical:before\":false},[\"content:\\\"\\uf58e\\\"\"]],[false,{\".fa-group-arrows-rotate:before\":false},[\"content:\\\"\\ue4f6\\\"\"]],[false,{\".fa-guarani-sign:before\":false},[\"content:\\\"\\ue19a\\\"\"]],[false,{\".fa-guitar:before\":false},[\"content:\\\"\\uf7a6\\\"\"]],[false,{\".fa-gun:before\":false},[\"content:\\\"\\ue19b\\\"\"]],[false,{\".fa-h:before\":false},[\"content:\\\"H\\\"\"]],[false,{\".fa-hammer:before\":false},[\"content:\\\"\\uf6e3\\\"\"]],[false,{\".fa-hamsa:before\":false},[\"content:\\\"\\uf665\\\"\"]],[false,{\".fa-hand-paper:before\":false,\".fa-hand:before\":false},[\"content:\\\"\\uf256\\\"\"]],[false,{\".fa-hand-back-fist:before\":false,\".fa-hand-rock:before\":false},[\"content:\\\"\\uf255\\\"\"]],[false,{\".fa-allergies:before\":false,\".fa-hand-dots:before\":false},[\"content:\\\"\\uf461\\\"\"]],[false,{\".fa-fist-raised:before\":false,\".fa-hand-fist:before\":false},[\"content:\\\"\\uf6de\\\"\"]],[false,{\".fa-hand-holding:before\":false},[\"content:\\\"\\uf4bd\\\"\"]],[false,{\".fa-hand-holding-dollar:before\":false,\".fa-hand-holding-usd:before\":false},[\"content:\\\"\\uf4c0\\\"\"]],[false,{\".fa-hand-holding-droplet:before\":false,\".fa-hand-holding-water:before\":false},[\"content:\\\"\\uf4c1\\\"\"]],[false,{\".fa-hand-holding-hand:before\":false},[\"content:\\\"\\ue4f7\\\"\"]],[false,{\".fa-hand-holding-heart:before\":false},[\"content:\\\"\\uf4be\\\"\"]],[false,{\".fa-hand-holding-medical:before\":false},[\"content:\\\"\\ue05c\\\"\"]],[false,{\".fa-hand-lizard:before\":false},[\"content:\\\"\\uf258\\\"\"]],[false,{\".fa-hand-middle-finger:before\":false},[\"content:\\\"\\uf806\\\"\"]],[false,{\".fa-hand-peace:before\":false},[\"content:\\\"\\uf25b\\\"\"]],[false,{\".fa-hand-point-down:before\":false},[\"content:\\\"\\uf0a7\\\"\"]],[false,{\".fa-hand-point-left:before\":false},[\"content:\\\"\\uf0a5\\\"\"]],[false,{\".fa-hand-point-right:before\":false},[\"content:\\\"\\uf0a4\\\"\"]],[false,{\".fa-hand-point-up:before\":false},[\"content:\\\"\\uf0a6\\\"\"]],[false,{\".fa-hand-pointer:before\":false},[\"content:\\\"\\uf25a\\\"\"]],[false,{\".fa-hand-scissors:before\":false},[\"content:\\\"\\uf257\\\"\"]],[false,{\".fa-hand-sparkles:before\":false},[\"content:\\\"\\ue05d\\\"\"]],[false,{\".fa-hand-spock:before\":false},[\"content:\\\"\\uf259\\\"\"]],[false,{\".fa-handcuffs:before\":false},[\"content:\\\"\\ue4f8\\\"\"]],[false,{\".fa-hands:before\":false,\".fa-sign-language:before\":false,\".fa-signing:before\":false},[\"content:\\\"\\uf2a7\\\"\"]],[false,{\".fa-american-sign-language-interpreting:before\":false,\".fa-asl-interpreting:before\":false,\".fa-hands-american-sign-language-interpreting:before\":false,\".fa-hands-asl-interpreting:before\":false},[\"content:\\\"\\uf2a3\\\"\"]],[false,{\".fa-hands-bound:before\":false},[\"content:\\\"\\ue4f9\\\"\"]],[false,{\".fa-hands-bubbles:before\":false,\".fa-hands-wash:before\":false},[\"content:\\\"\\ue05e\\\"\"]],[false,{\".fa-hands-clapping:before\":false},[\"content:\\\"\\ue1a8\\\"\"]],[false,{\".fa-hands-holding:before\":false},[\"content:\\\"\\uf4c2\\\"\"]],[false,{\".fa-hands-holding-child:before\":false},[\"content:\\\"\\ue4fa\\\"\"]],[false,{\".fa-hands-holding-circle:before\":false},[\"content:\\\"\\ue4fb\\\"\"]],[false,{\".fa-hands-praying:before\":false,\".fa-praying-hands:before\":false},[\"content:\\\"\\uf684\\\"\"]],[false,{\".fa-handshake:before\":false},[\"content:\\\"\\uf2b5\\\"\"]],[false,{\".fa-hands-helping:before\":false,\".fa-handshake-angle:before\":false},[\"content:\\\"\\uf4c4\\\"\"]],[false,{\".fa-handshake-alt:before\":false,\".fa-handshake-simple:before\":false},[\"content:\\\"\\uf4c6\\\"\"]],[false,{\".fa-handshake-alt-slash:before\":false,\".fa-handshake-simple-slash:before\":false},[\"content:\\\"\\ue05f\\\"\"]],[false,{\".fa-handshake-slash:before\":false},[\"content:\\\"\\ue060\\\"\"]],[false,{\".fa-hanukiah:before\":false},[\"content:\\\"\\uf6e6\\\"\"]],[false,{\".fa-hard-drive:before\":false,\".fa-hdd:before\":false},[\"content:\\\"\\uf0a0\\\"\"]],[false,{\".fa-hashtag:before\":false},[\"content:\\\"#\\\"\"]],[false,{\".fa-hat-cowboy:before\":false},[\"content:\\\"\\uf8c0\\\"\"]],[false,{\".fa-hat-cowboy-side:before\":false},[\"content:\\\"\\uf8c1\\\"\"]],[false,{\".fa-hat-wizard:before\":false},[\"content:\\\"\\uf6e8\\\"\"]],[false,{\".fa-head-side-cough:before\":false},[\"content:\\\"\\ue061\\\"\"]],[false,{\".fa-head-side-cough-slash:before\":false},[\"content:\\\"\\ue062\\\"\"]],[false,{\".fa-head-side-mask:before\":false},[\"content:\\\"\\ue063\\\"\"]],[false,{\".fa-head-side-virus:before\":false},[\"content:\\\"\\ue064\\\"\"]],[false,{\".fa-header:before\":false,\".fa-heading:before\":false},[\"content:\\\"\\uf1dc\\\"\"]],[false,{\".fa-headphones:before\":false},[\"content:\\\"\\uf025\\\"\"]],[false,{\".fa-headphones-alt:before\":false,\".fa-headphones-simple:before\":false},[\"content:\\\"\\uf58f\\\"\"]],[false,{\".fa-headset:before\":false},[\"content:\\\"\\uf590\\\"\"]],[false,{\".fa-heart:before\":false},[\"content:\\\"\\uf004\\\"\"]],[false,{\".fa-heart-circle-bolt:before\":false},[\"content:\\\"\\ue4fc\\\"\"]],[false,{\".fa-heart-circle-check:before\":false},[\"content:\\\"\\ue4fd\\\"\"]],[false,{\".fa-heart-circle-exclamation:before\":false},[\"content:\\\"\\ue4fe\\\"\"]],[false,{\".fa-heart-circle-minus:before\":false},[\"content:\\\"\\ue4ff\\\"\"]],[false,{\".fa-heart-circle-plus:before\":false},[\"content:\\\"\\ue500\\\"\"]],[false,{\".fa-heart-circle-xmark:before\":false},[\"content:\\\"\\ue501\\\"\"]],[false,{\".fa-heart-broken:before\":false,\".fa-heart-crack:before\":false},[\"content:\\\"\\uf7a9\\\"\"]],[false,{\".fa-heart-pulse:before\":false,\".fa-heartbeat:before\":false},[\"content:\\\"\\uf21e\\\"\"]],[false,{\".fa-helicopter:before\":false},[\"content:\\\"\\uf533\\\"\"]],[false,{\".fa-helicopter-symbol:before\":false},[\"content:\\\"\\ue502\\\"\"]],[false,{\".fa-hard-hat:before\":false,\".fa-hat-hard:before\":false,\".fa-helmet-safety:before\":false},[\"content:\\\"\\uf807\\\"\"]],[false,{\".fa-helmet-un:before\":false},[\"content:\\\"\\ue503\\\"\"]],[false,{\".fa-highlighter:before\":false},[\"content:\\\"\\uf591\\\"\"]],[false,{\".fa-hill-avalanche:before\":false},[\"content:\\\"\\ue507\\\"\"]],[false,{\".fa-hill-rockslide:before\":false},[\"content:\\\"\\ue508\\\"\"]],[false,{\".fa-hippo:before\":false},[\"content:\\\"\\uf6ed\\\"\"]],[false,{\".fa-hockey-puck:before\":false},[\"content:\\\"\\uf453\\\"\"]],[false,{\".fa-holly-berry:before\":false},[\"content:\\\"\\uf7aa\\\"\"]],[false,{\".fa-horse:before\":false},[\"content:\\\"\\uf6f0\\\"\"]],[false,{\".fa-horse-head:before\":false},[\"content:\\\"\\uf7ab\\\"\"]],[false,{\".fa-hospital-alt:before\":false,\".fa-hospital-wide:before\":false,\".fa-hospital:before\":false},[\"content:\\\"\\uf0f8\\\"\"]],[false,{\".fa-hospital-user:before\":false},[\"content:\\\"\\uf80d\\\"\"]],[false,{\".fa-hot-tub-person:before\":false,\".fa-hot-tub:before\":false},[\"content:\\\"\\uf593\\\"\"]],[false,{\".fa-hotdog:before\":false},[\"content:\\\"\\uf80f\\\"\"]],[false,{\".fa-hotel:before\":false},[\"content:\\\"\\uf594\\\"\"]],[false,{\".fa-hourglass-2:before\":false,\".fa-hourglass-half:before\":false,\".fa-hourglass:before\":false},[\"content:\\\"\\uf254\\\"\"]],[false,{\".fa-hourglass-empty:before\":false},[\"content:\\\"\\uf252\\\"\"]],[false,{\".fa-hourglass-3:before\":false,\".fa-hourglass-end:before\":false},[\"content:\\\"\\uf253\\\"\"]],[false,{\".fa-hourglass-1:before\":false,\".fa-hourglass-start:before\":false},[\"content:\\\"\\uf251\\\"\"]],[false,{\".fa-home-alt:before\":false,\".fa-home-lg-alt:before\":false,\".fa-home:before\":false,\".fa-house:before\":false},[\"content:\\\"\\uf015\\\"\"]],[false,{\".fa-home-lg:before\":false,\".fa-house-chimney:before\":false},[\"content:\\\"\\ue3af\\\"\"]],[false,{\".fa-house-chimney-crack:before\":false,\".fa-house-damage:before\":false},[\"content:\\\"\\uf6f1\\\"\"]],[false,{\".fa-clinic-medical:before\":false,\".fa-house-chimney-medical:before\":false},[\"content:\\\"\\uf7f2\\\"\"]],[false,{\".fa-house-chimney-user:before\":false},[\"content:\\\"\\ue065\\\"\"]],[false,{\".fa-house-chimney-window:before\":false},[\"content:\\\"\\ue00d\\\"\"]],[false,{\".fa-house-circle-check:before\":false},[\"content:\\\"\\ue509\\\"\"]],[false,{\".fa-house-circle-exclamation:before\":false},[\"content:\\\"\\ue50a\\\"\"]],[false,{\".fa-house-circle-xmark:before\":false},[\"content:\\\"\\ue50b\\\"\"]],[false,{\".fa-house-crack:before\":false},[\"content:\\\"\\ue3b1\\\"\"]],[false,{\".fa-house-fire:before\":false},[\"content:\\\"\\ue50c\\\"\"]],[false,{\".fa-house-flag:before\":false},[\"content:\\\"\\ue50d\\\"\"]],[false,{\".fa-house-flood-water:before\":false},[\"content:\\\"\\ue50e\\\"\"]],[false,{\".fa-house-flood-water-circle-arrow-right:before\":false},[\"content:\\\"\\ue50f\\\"\"]],[false,{\".fa-house-laptop:before\":false,\".fa-laptop-house:before\":false},[\"content:\\\"\\ue066\\\"\"]],[false,{\".fa-house-lock:before\":false},[\"content:\\\"\\ue510\\\"\"]],[false,{\".fa-house-medical:before\":false},[\"content:\\\"\\ue3b2\\\"\"]],[false,{\".fa-house-medical-circle-check:before\":false},[\"content:\\\"\\ue511\\\"\"]],[false,{\".fa-house-medical-circle-exclamation:before\":false},[\"content:\\\"\\ue512\\\"\"]],[false,{\".fa-house-medical-circle-xmark:before\":false},[\"content:\\\"\\ue513\\\"\"]],[false,{\".fa-house-medical-flag:before\":false},[\"content:\\\"\\ue514\\\"\"]],[false,{\".fa-house-signal:before\":false},[\"content:\\\"\\ue012\\\"\"]],[false,{\".fa-house-tsunami:before\":false},[\"content:\\\"\\ue515\\\"\"]],[false,{\".fa-home-user:before\":false,\".fa-house-user:before\":false},[\"content:\\\"\\ue1b0\\\"\"]],[false,{\".fa-hryvnia-sign:before\":false,\".fa-hryvnia:before\":false},[\"content:\\\"\\uf6f2\\\"\"]],[false,{\".fa-hurricane:before\":false},[\"content:\\\"\\uf751\\\"\"]],[false,{\".fa-i:before\":false},[\"content:\\\"I\\\"\"]],[false,{\".fa-i-cursor:before\":false},[\"content:\\\"\\uf246\\\"\"]],[false,{\".fa-ice-cream:before\":false},[\"content:\\\"\\uf810\\\"\"]],[false,{\".fa-icicles:before\":false},[\"content:\\\"\\uf7ad\\\"\"]],[false,{\".fa-heart-music-camera-bolt:before\":false,\".fa-icons:before\":false},[\"content:\\\"\\uf86d\\\"\"]],[false,{\".fa-id-badge:before\":false},[\"content:\\\"\\uf2c1\\\"\"]],[false,{\".fa-drivers-license:before\":false,\".fa-id-card:before\":false},[\"content:\\\"\\uf2c2\\\"\"]],[false,{\".fa-id-card-alt:before\":false,\".fa-id-card-clip:before\":false},[\"content:\\\"\\uf47f\\\"\"]],[false,{\".fa-igloo:before\":false},[\"content:\\\"\\uf7ae\\\"\"]],[false,{\".fa-image:before\":false},[\"content:\\\"\\uf03e\\\"\"]],[false,{\".fa-image-portrait:before\":false,\".fa-portrait:before\":false},[\"content:\\\"\\uf3e0\\\"\"]],[false,{\".fa-images:before\":false},[\"content:\\\"\\uf302\\\"\"]],[false,{\".fa-inbox:before\":false},[\"content:\\\"\\uf01c\\\"\"]],[false,{\".fa-indent:before\":false},[\"content:\\\"\\uf03c\\\"\"]],[false,{\".fa-indian-rupee-sign:before\":false,\".fa-indian-rupee:before\":false,\".fa-inr:before\":false},[\"content:\\\"\\ue1bc\\\"\"]],[false,{\".fa-industry:before\":false},[\"content:\\\"\\uf275\\\"\"]],[false,{\".fa-infinity:before\":false},[\"content:\\\"\\uf534\\\"\"]],[false,{\".fa-info:before\":false},[\"content:\\\"\\uf129\\\"\"]],[false,{\".fa-italic:before\":false},[\"content:\\\"\\uf033\\\"\"]],[false,{\".fa-j:before\":false},[\"content:\\\"J\\\"\"]],[false,{\".fa-jar:before\":false},[\"content:\\\"\\ue516\\\"\"]],[false,{\".fa-jar-wheat:before\":false},[\"content:\\\"\\ue517\\\"\"]],[false,{\".fa-jedi:before\":false},[\"content:\\\"\\uf669\\\"\"]],[false,{\".fa-fighter-jet:before\":false,\".fa-jet-fighter:before\":false},[\"content:\\\"\\uf0fb\\\"\"]],[false,{\".fa-jet-fighter-up:before\":false},[\"content:\\\"\\ue518\\\"\"]],[false,{\".fa-joint:before\":false},[\"content:\\\"\\uf595\\\"\"]],[false,{\".fa-jug-detergent:before\":false},[\"content:\\\"\\ue519\\\"\"]],[false,{\".fa-k:before\":false},[\"content:\\\"K\\\"\"]],[false,{\".fa-kaaba:before\":false},[\"content:\\\"\\uf66b\\\"\"]],[false,{\".fa-key:before\":false},[\"content:\\\"\\uf084\\\"\"]],[false,{\".fa-keyboard:before\":false},[\"content:\\\"\\uf11c\\\"\"]],[false,{\".fa-khanda:before\":false},[\"content:\\\"\\uf66d\\\"\"]],[false,{\".fa-kip-sign:before\":false},[\"content:\\\"\\ue1c4\\\"\"]],[false,{\".fa-first-aid:before\":false,\".fa-kit-medical:before\":false},[\"content:\\\"\\uf479\\\"\"]],[false,{\".fa-kitchen-set:before\":false},[\"content:\\\"\\ue51a\\\"\"]],[false,{\".fa-kiwi-bird:before\":false},[\"content:\\\"\\uf535\\\"\"]],[false,{\".fa-l:before\":false},[\"content:\\\"L\\\"\"]],[false,{\".fa-land-mine-on:before\":false},[\"content:\\\"\\ue51b\\\"\"]],[false,{\".fa-landmark:before\":false},[\"content:\\\"\\uf66f\\\"\"]],[false,{\".fa-landmark-alt:before\":false,\".fa-landmark-dome:before\":false},[\"content:\\\"\\uf752\\\"\"]],[false,{\".fa-landmark-flag:before\":false},[\"content:\\\"\\ue51c\\\"\"]],[false,{\".fa-language:before\":false},[\"content:\\\"\\uf1ab\\\"\"]],[false,{\".fa-laptop:before\":false},[\"content:\\\"\\uf109\\\"\"]],[false,{\".fa-laptop-code:before\":false},[\"content:\\\"\\uf5fc\\\"\"]],[false,{\".fa-laptop-file:before\":false},[\"content:\\\"\\ue51d\\\"\"]],[false,{\".fa-laptop-medical:before\":false},[\"content:\\\"\\uf812\\\"\"]],[false,{\".fa-lari-sign:before\":false},[\"content:\\\"\\ue1c8\\\"\"]],[false,{\".fa-layer-group:before\":false},[\"content:\\\"\\uf5fd\\\"\"]],[false,{\".fa-leaf:before\":false},[\"content:\\\"\\uf06c\\\"\"]],[false,{\".fa-left-long:before\":false,\".fa-long-arrow-alt-left:before\":false},[\"content:\\\"\\uf30a\\\"\"]],[false,{\".fa-arrows-alt-h:before\":false,\".fa-left-right:before\":false},[\"content:\\\"\\uf337\\\"\"]],[false,{\".fa-lemon:before\":false},[\"content:\\\"\\uf094\\\"\"]],[false,{\".fa-less-than:before\":false},[\"content:\\\"<\\\"\"]],[false,{\".fa-less-than-equal:before\":false},[\"content:\\\"\\uf537\\\"\"]],[false,{\".fa-life-ring:before\":false},[\"content:\\\"\\uf1cd\\\"\"]],[false,{\".fa-lightbulb:before\":false},[\"content:\\\"\\uf0eb\\\"\"]],[false,{\".fa-lines-leaning:before\":false},[\"content:\\\"\\ue51e\\\"\"]],[false,{\".fa-chain:before\":false,\".fa-link:before\":false},[\"content:\\\"\\uf0c1\\\"\"]],[false,{\".fa-chain-broken:before\":false,\".fa-chain-slash:before\":false,\".fa-link-slash:before\":false,\".fa-unlink:before\":false},[\"content:\\\"\\uf127\\\"\"]],[false,{\".fa-lira-sign:before\":false},[\"content:\\\"\\uf195\\\"\"]],[false,{\".fa-list-squares:before\":false,\".fa-list:before\":false},[\"content:\\\"\\uf03a\\\"\"]],[false,{\".fa-list-check:before\":false,\".fa-tasks:before\":false},[\"content:\\\"\\uf0ae\\\"\"]],[false,{\".fa-list-1-2:before\":false,\".fa-list-numeric:before\":false,\".fa-list-ol:before\":false},[\"content:\\\"\\uf0cb\\\"\"]],[false,{\".fa-list-dots:before\":false,\".fa-list-ul:before\":false},[\"content:\\\"\\uf0ca\\\"\"]],[false,{\".fa-litecoin-sign:before\":false},[\"content:\\\"\\ue1d3\\\"\"]],[false,{\".fa-location-arrow:before\":false},[\"content:\\\"\\uf124\\\"\"]],[false,{\".fa-location-crosshairs:before\":false,\".fa-location:before\":false},[\"content:\\\"\\uf601\\\"\"]],[false,{\".fa-location-dot:before\":false,\".fa-map-marker-alt:before\":false},[\"content:\\\"\\uf3c5\\\"\"]],[false,{\".fa-location-pin:before\":false,\".fa-map-marker:before\":false},[\"content:\\\"\\uf041\\\"\"]],[false,{\".fa-location-pin-lock:before\":false},[\"content:\\\"\\ue51f\\\"\"]],[false,{\".fa-lock:before\":false},[\"content:\\\"\\uf023\\\"\"]],[false,{\".fa-lock-open:before\":false},[\"content:\\\"\\uf3c1\\\"\"]],[false,{\".fa-locust:before\":false},[\"content:\\\"\\ue520\\\"\"]],[false,{\".fa-lungs:before\":false},[\"content:\\\"\\uf604\\\"\"]],[false,{\".fa-lungs-virus:before\":false},[\"content:\\\"\\ue067\\\"\"]],[false,{\".fa-m:before\":false},[\"content:\\\"M\\\"\"]],[false,{\".fa-magnet:before\":false},[\"content:\\\"\\uf076\\\"\"]],[false,{\".fa-magnifying-glass:before\":false,\".fa-search:before\":false},[\"content:\\\"\\uf002\\\"\"]],[false,{\".fa-magnifying-glass-arrow-right:before\":false},[\"content:\\\"\\ue521\\\"\"]],[false,{\".fa-magnifying-glass-chart:before\":false},[\"content:\\\"\\ue522\\\"\"]],[false,{\".fa-magnifying-glass-dollar:before\":false,\".fa-search-dollar:before\":false},[\"content:\\\"\\uf688\\\"\"]],[false,{\".fa-magnifying-glass-location:before\":false,\".fa-search-location:before\":false},[\"content:\\\"\\uf689\\\"\"]],[false,{\".fa-magnifying-glass-minus:before\":false,\".fa-search-minus:before\":false},[\"content:\\\"\\uf010\\\"\"]],[false,{\".fa-magnifying-glass-plus:before\":false,\".fa-search-plus:before\":false},[\"content:\\\"\\uf00e\\\"\"]],[false,{\".fa-manat-sign:before\":false},[\"content:\\\"\\ue1d5\\\"\"]],[false,{\".fa-map:before\":false},[\"content:\\\"\\uf279\\\"\"]],[false,{\".fa-map-location:before\":false,\".fa-map-marked:before\":false},[\"content:\\\"\\uf59f\\\"\"]],[false,{\".fa-map-location-dot:before\":false,\".fa-map-marked-alt:before\":false},[\"content:\\\"\\uf5a0\\\"\"]],[false,{\".fa-map-pin:before\":false},[\"content:\\\"\\uf276\\\"\"]],[false,{\".fa-marker:before\":false},[\"content:\\\"\\uf5a1\\\"\"]],[false,{\".fa-mars:before\":false},[\"content:\\\"\\uf222\\\"\"]],[false,{\".fa-mars-and-venus:before\":false},[\"content:\\\"\\uf224\\\"\"]],[false,{\".fa-mars-and-venus-burst:before\":false},[\"content:\\\"\\ue523\\\"\"]],[false,{\".fa-mars-double:before\":false},[\"content:\\\"\\uf227\\\"\"]],[false,{\".fa-mars-stroke:before\":false},[\"content:\\\"\\uf229\\\"\"]],[false,{\".fa-mars-stroke-h:before\":false,\".fa-mars-stroke-right:before\":false},[\"content:\\\"\\uf22b\\\"\"]],[false,{\".fa-mars-stroke-up:before\":false,\".fa-mars-stroke-v:before\":false},[\"content:\\\"\\uf22a\\\"\"]],[false,{\".fa-glass-martini-alt:before\":false,\".fa-martini-glass:before\":false},[\"content:\\\"\\uf57b\\\"\"]],[false,{\".fa-cocktail:before\":false,\".fa-martini-glass-citrus:before\":false},[\"content:\\\"\\uf561\\\"\"]],[false,{\".fa-glass-martini:before\":false,\".fa-martini-glass-empty:before\":false},[\"content:\\\"\\uf000\\\"\"]],[false,{\".fa-mask:before\":false},[\"content:\\\"\\uf6fa\\\"\"]],[false,{\".fa-mask-face:before\":false},[\"content:\\\"\\ue1d7\\\"\"]],[false,{\".fa-mask-ventilator:before\":false},[\"content:\\\"\\ue524\\\"\"]],[false,{\".fa-masks-theater:before\":false,\".fa-theater-masks:before\":false},[\"content:\\\"\\uf630\\\"\"]],[false,{\".fa-mattress-pillow:before\":false},[\"content:\\\"\\ue525\\\"\"]],[false,{\".fa-expand-arrows-alt:before\":false,\".fa-maximize:before\":false},[\"content:\\\"\\uf31e\\\"\"]],[false,{\".fa-medal:before\":false},[\"content:\\\"\\uf5a2\\\"\"]],[false,{\".fa-memory:before\":false},[\"content:\\\"\\uf538\\\"\"]],[false,{\".fa-menorah:before\":false},[\"content:\\\"\\uf676\\\"\"]],[false,{\".fa-mercury:before\":false},[\"content:\\\"\\uf223\\\"\"]],[false,{\".fa-comment-alt:before\":false,\".fa-message:before\":false},[\"content:\\\"\\uf27a\\\"\"]],[false,{\".fa-meteor:before\":false},[\"content:\\\"\\uf753\\\"\"]],[false,{\".fa-microchip:before\":false},[\"content:\\\"\\uf2db\\\"\"]],[false,{\".fa-microphone:before\":false},[\"content:\\\"\\uf130\\\"\"]],[false,{\".fa-microphone-alt:before\":false,\".fa-microphone-lines:before\":false},[\"content:\\\"\\uf3c9\\\"\"]],[false,{\".fa-microphone-alt-slash:before\":false,\".fa-microphone-lines-slash:before\":false},[\"content:\\\"\\uf539\\\"\"]],[false,{\".fa-microphone-slash:before\":false},[\"content:\\\"\\uf131\\\"\"]],[false,{\".fa-microscope:before\":false},[\"content:\\\"\\uf610\\\"\"]],[false,{\".fa-mill-sign:before\":false},[\"content:\\\"\\ue1ed\\\"\"]],[false,{\".fa-compress-arrows-alt:before\":false,\".fa-minimize:before\":false},[\"content:\\\"\\uf78c\\\"\"]],[false,{\".fa-minus:before\":false,\".fa-subtract:before\":false},[\"content:\\\"\\uf068\\\"\"]],[false,{\".fa-mitten:before\":false},[\"content:\\\"\\uf7b5\\\"\"]],[false,{\".fa-mobile-android:before\":false,\".fa-mobile-phone:before\":false,\".fa-mobile:before\":false},[\"content:\\\"\\uf3ce\\\"\"]],[false,{\".fa-mobile-button:before\":false},[\"content:\\\"\\uf10b\\\"\"]],[false,{\".fa-mobile-retro:before\":false},[\"content:\\\"\\ue527\\\"\"]],[false,{\".fa-mobile-android-alt:before\":false,\".fa-mobile-screen:before\":false},[\"content:\\\"\\uf3cf\\\"\"]],[false,{\".fa-mobile-alt:before\":false,\".fa-mobile-screen-button:before\":false},[\"content:\\\"\\uf3cd\\\"\"]],[false,{\".fa-money-bill:before\":false},[\"content:\\\"\\uf0d6\\\"\"]],[false,{\".fa-money-bill-1:before\":false,\".fa-money-bill-alt:before\":false},[\"content:\\\"\\uf3d1\\\"\"]],[false,{\".fa-money-bill-1-wave:before\":false,\".fa-money-bill-wave-alt:before\":false},[\"content:\\\"\\uf53b\\\"\"]],[false,{\".fa-money-bill-transfer:before\":false},[\"content:\\\"\\ue528\\\"\"]],[false,{\".fa-money-bill-trend-up:before\":false},[\"content:\\\"\\ue529\\\"\"]],[false,{\".fa-money-bill-wave:before\":false},[\"content:\\\"\\uf53a\\\"\"]],[false,{\".fa-money-bill-wheat:before\":false},[\"content:\\\"\\ue52a\\\"\"]],[false,{\".fa-money-bills:before\":false},[\"content:\\\"\\ue1f3\\\"\"]],[false,{\".fa-money-check:before\":false},[\"content:\\\"\\uf53c\\\"\"]],[false,{\".fa-money-check-alt:before\":false,\".fa-money-check-dollar:before\":false},[\"content:\\\"\\uf53d\\\"\"]],[false,{\".fa-monument:before\":false},[\"content:\\\"\\uf5a6\\\"\"]],[false,{\".fa-moon:before\":false},[\"content:\\\"\\uf186\\\"\"]],[false,{\".fa-mortar-pestle:before\":false},[\"content:\\\"\\uf5a7\\\"\"]],[false,{\".fa-mosque:before\":false},[\"content:\\\"\\uf678\\\"\"]],[false,{\".fa-mosquito:before\":false},[\"content:\\\"\\ue52b\\\"\"]],[false,{\".fa-mosquito-net:before\":false},[\"content:\\\"\\ue52c\\\"\"]],[false,{\".fa-motorcycle:before\":false},[\"content:\\\"\\uf21c\\\"\"]],[false,{\".fa-mound:before\":false},[\"content:\\\"\\ue52d\\\"\"]],[false,{\".fa-mountain:before\":false},[\"content:\\\"\\uf6fc\\\"\"]],[false,{\".fa-mountain-city:before\":false},[\"content:\\\"\\ue52e\\\"\"]],[false,{\".fa-mountain-sun:before\":false},[\"content:\\\"\\ue52f\\\"\"]],[false,{\".fa-mug-hot:before\":false},[\"content:\\\"\\uf7b6\\\"\"]],[false,{\".fa-coffee:before\":false,\".fa-mug-saucer:before\":false},[\"content:\\\"\\uf0f4\\\"\"]],[false,{\".fa-music:before\":false},[\"content:\\\"\\uf001\\\"\"]],[false,{\".fa-n:before\":false},[\"content:\\\"N\\\"\"]],[false,{\".fa-naira-sign:before\":false},[\"content:\\\"\\ue1f6\\\"\"]],[false,{\".fa-network-wired:before\":false},[\"content:\\\"\\uf6ff\\\"\"]],[false,{\".fa-neuter:before\":false},[\"content:\\\"\\uf22c\\\"\"]],[false,{\".fa-newspaper:before\":false},[\"content:\\\"\\uf1ea\\\"\"]],[false,{\".fa-not-equal:before\":false},[\"content:\\\"\\uf53e\\\"\"]],[false,{\".fa-note-sticky:before\":false,\".fa-sticky-note:before\":false},[\"content:\\\"\\uf249\\\"\"]],[false,{\".fa-notes-medical:before\":false},[\"content:\\\"\\uf481\\\"\"]],[false,{\".fa-o:before\":false},[\"content:\\\"O\\\"\"]],[false,{\".fa-object-group:before\":false},[\"content:\\\"\\uf247\\\"\"]],[false,{\".fa-object-ungroup:before\":false},[\"content:\\\"\\uf248\\\"\"]],[false,{\".fa-oil-can:before\":false},[\"content:\\\"\\uf613\\\"\"]],[false,{\".fa-oil-well:before\":false},[\"content:\\\"\\ue532\\\"\"]],[false,{\".fa-om:before\":false},[\"content:\\\"\\uf679\\\"\"]],[false,{\".fa-otter:before\":false},[\"content:\\\"\\uf700\\\"\"]],[false,{\".fa-dedent:before\":false,\".fa-outdent:before\":false},[\"content:\\\"\\uf03b\\\"\"]],[false,{\".fa-p:before\":false},[\"content:\\\"P\\\"\"]],[false,{\".fa-pager:before\":false},[\"content:\\\"\\uf815\\\"\"]],[false,{\".fa-paint-roller:before\":false},[\"content:\\\"\\uf5aa\\\"\"]],[false,{\".fa-paint-brush:before\":false,\".fa-paintbrush:before\":false},[\"content:\\\"\\uf1fc\\\"\"]],[false,{\".fa-palette:before\":false},[\"content:\\\"\\uf53f\\\"\"]],[false,{\".fa-pallet:before\":false},[\"content:\\\"\\uf482\\\"\"]],[false,{\".fa-panorama:before\":false},[\"content:\\\"\\ue209\\\"\"]],[false,{\".fa-paper-plane:before\":false},[\"content:\\\"\\uf1d8\\\"\"]],[false,{\".fa-paperclip:before\":false},[\"content:\\\"\\uf0c6\\\"\"]],[false,{\".fa-parachute-box:before\":false},[\"content:\\\"\\uf4cd\\\"\"]],[false,{\".fa-paragraph:before\":false},[\"content:\\\"\\uf1dd\\\"\"]],[false,{\".fa-passport:before\":false},[\"content:\\\"\\uf5ab\\\"\"]],[false,{\".fa-file-clipboard:before\":false,\".fa-paste:before\":false},[\"content:\\\"\\uf0ea\\\"\"]],[false,{\".fa-pause:before\":false},[\"content:\\\"\\uf04c\\\"\"]],[false,{\".fa-paw:before\":false},[\"content:\\\"\\uf1b0\\\"\"]],[false,{\".fa-peace:before\":false},[\"content:\\\"\\uf67c\\\"\"]],[false,{\".fa-pen:before\":false},[\"content:\\\"\\uf304\\\"\"]],[false,{\".fa-pen-alt:before\":false,\".fa-pen-clip:before\":false},[\"content:\\\"\\uf305\\\"\"]],[false,{\".fa-pen-fancy:before\":false},[\"content:\\\"\\uf5ac\\\"\"]],[false,{\".fa-pen-nib:before\":false},[\"content:\\\"\\uf5ad\\\"\"]],[false,{\".fa-pen-ruler:before\":false,\".fa-pencil-ruler:before\":false},[\"content:\\\"\\uf5ae\\\"\"]],[false,{\".fa-edit:before\":false,\".fa-pen-to-square:before\":false},[\"content:\\\"\\uf044\\\"\"]],[false,{\".fa-pencil-alt:before\":false,\".fa-pencil:before\":false},[\"content:\\\"\\uf303\\\"\"]],[false,{\".fa-people-arrows-left-right:before\":false,\".fa-people-arrows:before\":false},[\"content:\\\"\\ue068\\\"\"]],[false,{\".fa-people-carry-box:before\":false,\".fa-people-carry:before\":false},[\"content:\\\"\\uf4ce\\\"\"]],[false,{\".fa-people-group:before\":false},[\"content:\\\"\\ue533\\\"\"]],[false,{\".fa-people-line:before\":false},[\"content:\\\"\\ue534\\\"\"]],[false,{\".fa-people-pulling:before\":false},[\"content:\\\"\\ue535\\\"\"]],[false,{\".fa-people-robbery:before\":false},[\"content:\\\"\\ue536\\\"\"]],[false,{\".fa-people-roof:before\":false},[\"content:\\\"\\ue537\\\"\"]],[false,{\".fa-pepper-hot:before\":false},[\"content:\\\"\\uf816\\\"\"]],[false,{\".fa-percent:before\":false,\".fa-percentage:before\":false},[\"content:\\\"%\\\"\"]],[false,{\".fa-male:before\":false,\".fa-person:before\":false},[\"content:\\\"\\uf183\\\"\"]],[false,{\".fa-person-arrow-down-to-line:before\":false},[\"content:\\\"\\ue538\\\"\"]],[false,{\".fa-person-arrow-up-from-line:before\":false},[\"content:\\\"\\ue539\\\"\"]],[false,{\".fa-biking:before\":false,\".fa-person-biking:before\":false},[\"content:\\\"\\uf84a\\\"\"]],[false,{\".fa-person-booth:before\":false},[\"content:\\\"\\uf756\\\"\"]],[false,{\".fa-person-breastfeeding:before\":false},[\"content:\\\"\\ue53a\\\"\"]],[false,{\".fa-person-burst:before\":false},[\"content:\\\"\\ue53b\\\"\"]],[false,{\".fa-person-cane:before\":false},[\"content:\\\"\\ue53c\\\"\"]],[false,{\".fa-person-chalkboard:before\":false},[\"content:\\\"\\ue53d\\\"\"]],[false,{\".fa-person-circle-check:before\":false},[\"content:\\\"\\ue53e\\\"\"]],[false,{\".fa-person-circle-exclamation:before\":false},[\"content:\\\"\\ue53f\\\"\"]],[false,{\".fa-person-circle-minus:before\":false},[\"content:\\\"\\ue540\\\"\"]],[false,{\".fa-person-circle-plus:before\":false},[\"content:\\\"\\ue541\\\"\"]],[false,{\".fa-person-circle-question:before\":false},[\"content:\\\"\\ue542\\\"\"]],[false,{\".fa-person-circle-xmark:before\":false},[\"content:\\\"\\ue543\\\"\"]],[false,{\".fa-digging:before\":false,\".fa-person-digging:before\":false},[\"content:\\\"\\uf85e\\\"\"]],[false,{\".fa-diagnoses:before\":false,\".fa-person-dots-from-line:before\":false},[\"content:\\\"\\uf470\\\"\"]],[false,{\".fa-female:before\":false,\".fa-person-dress:before\":false},[\"content:\\\"\\uf182\\\"\"]],[false,{\".fa-person-dress-burst:before\":false},[\"content:\\\"\\ue544\\\"\"]],[false,{\".fa-person-drowning:before\":false},[\"content:\\\"\\ue545\\\"\"]],[false,{\".fa-person-falling:before\":false},[\"content:\\\"\\ue546\\\"\"]],[false,{\".fa-person-falling-burst:before\":false},[\"content:\\\"\\ue547\\\"\"]],[false,{\".fa-person-half-dress:before\":false},[\"content:\\\"\\ue548\\\"\"]],[false,{\".fa-person-harassing:before\":false},[\"content:\\\"\\ue549\\\"\"]],[false,{\".fa-hiking:before\":false,\".fa-person-hiking:before\":false},[\"content:\\\"\\uf6ec\\\"\"]],[false,{\".fa-person-military-pointing:before\":false},[\"content:\\\"\\ue54a\\\"\"]],[false,{\".fa-person-military-rifle:before\":false},[\"content:\\\"\\ue54b\\\"\"]],[false,{\".fa-person-military-to-person:before\":false},[\"content:\\\"\\ue54c\\\"\"]],[false,{\".fa-person-praying:before\":false,\".fa-pray:before\":false},[\"content:\\\"\\uf683\\\"\"]],[false,{\".fa-person-pregnant:before\":false},[\"content:\\\"\\ue31e\\\"\"]],[false,{\".fa-person-rays:before\":false},[\"content:\\\"\\ue54d\\\"\"]],[false,{\".fa-person-rifle:before\":false},[\"content:\\\"\\ue54e\\\"\"]],[false,{\".fa-person-running:before\":false,\".fa-running:before\":false},[\"content:\\\"\\uf70c\\\"\"]],[false,{\".fa-person-shelter:before\":false},[\"content:\\\"\\ue54f\\\"\"]],[false,{\".fa-person-skating:before\":false,\".fa-skating:before\":false},[\"content:\\\"\\uf7c5\\\"\"]],[false,{\".fa-person-skiing:before\":false,\".fa-skiing:before\":false},[\"content:\\\"\\uf7c9\\\"\"]],[false,{\".fa-person-skiing-nordic:before\":false,\".fa-skiing-nordic:before\":false},[\"content:\\\"\\uf7ca\\\"\"]],[false,{\".fa-person-snowboarding:before\":false,\".fa-snowboarding:before\":false},[\"content:\\\"\\uf7ce\\\"\"]],[false,{\".fa-person-swimming:before\":false,\".fa-swimmer:before\":false},[\"content:\\\"\\uf5c4\\\"\"]],[false,{\".fa-person-through-window:before\":false},[\"content:\\\"\\ue433\\\"\"]],[false,{\".fa-person-walking:before\":false,\".fa-walking:before\":false},[\"content:\\\"\\uf554\\\"\"]],[false,{\".fa-person-walking-arrow-loop-left:before\":false},[\"content:\\\"\\ue551\\\"\"]],[false,{\".fa-person-walking-arrow-right:before\":false},[\"content:\\\"\\ue552\\\"\"]],[false,{\".fa-person-walking-dashed-line-arrow-right:before\":false},[\"content:\\\"\\ue553\\\"\"]],[false,{\".fa-person-walking-luggage:before\":false},[\"content:\\\"\\ue554\\\"\"]],[false,{\".fa-blind:before\":false,\".fa-person-walking-with-cane:before\":false},[\"content:\\\"\\uf29d\\\"\"]],[false,{\".fa-peseta-sign:before\":false},[\"content:\\\"\\ue221\\\"\"]],[false,{\".fa-peso-sign:before\":false},[\"content:\\\"\\ue222\\\"\"]],[false,{\".fa-phone:before\":false},[\"content:\\\"\\uf095\\\"\"]],[false,{\".fa-phone-alt:before\":false,\".fa-phone-flip:before\":false},[\"content:\\\"\\uf879\\\"\"]],[false,{\".fa-phone-slash:before\":false},[\"content:\\\"\\uf3dd\\\"\"]],[false,{\".fa-phone-volume:before\":false,\".fa-volume-control-phone:before\":false},[\"content:\\\"\\uf2a0\\\"\"]],[false,{\".fa-photo-film:before\":false,\".fa-photo-video:before\":false},[\"content:\\\"\\uf87c\\\"\"]],[false,{\".fa-piggy-bank:before\":false},[\"content:\\\"\\uf4d3\\\"\"]],[false,{\".fa-pills:before\":false},[\"content:\\\"\\uf484\\\"\"]],[false,{\".fa-pizza-slice:before\":false},[\"content:\\\"\\uf818\\\"\"]],[false,{\".fa-place-of-worship:before\":false},[\"content:\\\"\\uf67f\\\"\"]],[false,{\".fa-plane:before\":false},[\"content:\\\"\\uf072\\\"\"]],[false,{\".fa-plane-arrival:before\":false},[\"content:\\\"\\uf5af\\\"\"]],[false,{\".fa-plane-circle-check:before\":false},[\"content:\\\"\\ue555\\\"\"]],[false,{\".fa-plane-circle-exclamation:before\":false},[\"content:\\\"\\ue556\\\"\"]],[false,{\".fa-plane-circle-xmark:before\":false},[\"content:\\\"\\ue557\\\"\"]],[false,{\".fa-plane-departure:before\":false},[\"content:\\\"\\uf5b0\\\"\"]],[false,{\".fa-plane-lock:before\":false},[\"content:\\\"\\ue558\\\"\"]],[false,{\".fa-plane-slash:before\":false},[\"content:\\\"\\ue069\\\"\"]],[false,{\".fa-plane-up:before\":false},[\"content:\\\"\\ue22d\\\"\"]],[false,{\".fa-plant-wilt:before\":false},[\"content:\\\"\\ue43b\\\"\"]],[false,{\".fa-plate-wheat:before\":false},[\"content:\\\"\\ue55a\\\"\"]],[false,{\".fa-play:before\":false},[\"content:\\\"\\uf04b\\\"\"]],[false,{\".fa-plug:before\":false},[\"content:\\\"\\uf1e6\\\"\"]],[false,{\".fa-plug-circle-bolt:before\":false},[\"content:\\\"\\ue55b\\\"\"]],[false,{\".fa-plug-circle-check:before\":false},[\"content:\\\"\\ue55c\\\"\"]],[false,{\".fa-plug-circle-exclamation:before\":false},[\"content:\\\"\\ue55d\\\"\"]],[false,{\".fa-plug-circle-minus:before\":false},[\"content:\\\"\\ue55e\\\"\"]],[false,{\".fa-plug-circle-plus:before\":false},[\"content:\\\"\\ue55f\\\"\"]],[false,{\".fa-plug-circle-xmark:before\":false},[\"content:\\\"\\ue560\\\"\"]],[false,{\".fa-add:before\":false,\".fa-plus:before\":false},[\"content:\\\"+\\\"\"]],[false,{\".fa-plus-minus:before\":false},[\"content:\\\"\\ue43c\\\"\"]],[false,{\".fa-podcast:before\":false},[\"content:\\\"\\uf2ce\\\"\"]],[false,{\".fa-poo:before\":false},[\"content:\\\"\\uf2fe\\\"\"]],[false,{\".fa-poo-bolt:before\":false,\".fa-poo-storm:before\":false},[\"content:\\\"\\uf75a\\\"\"]],[false,{\".fa-poop:before\":false},[\"content:\\\"\\uf619\\\"\"]],[false,{\".fa-power-off:before\":false},[\"content:\\\"\\uf011\\\"\"]],[false,{\".fa-prescription:before\":false},[\"content:\\\"\\uf5b1\\\"\"]],[false,{\".fa-prescription-bottle:before\":false},[\"content:\\\"\\uf485\\\"\"]],[false,{\".fa-prescription-bottle-alt:before\":false,\".fa-prescription-bottle-medical:before\":false},[\"content:\\\"\\uf486\\\"\"]],[false,{\".fa-print:before\":false},[\"content:\\\"\\uf02f\\\"\"]],[false,{\".fa-pump-medical:before\":false},[\"content:\\\"\\ue06a\\\"\"]],[false,{\".fa-pump-soap:before\":false},[\"content:\\\"\\ue06b\\\"\"]],[false,{\".fa-puzzle-piece:before\":false},[\"content:\\\"\\uf12e\\\"\"]],[false,{\".fa-q:before\":false},[\"content:\\\"Q\\\"\"]],[false,{\".fa-qrcode:before\":false},[\"content:\\\"\\uf029\\\"\"]],[false,{\".fa-question:before\":false},[\"content:\\\"?\\\"\"]],[false,{\".fa-quote-left-alt:before\":false,\".fa-quote-left:before\":false},[\"content:\\\"\\uf10d\\\"\"]],[false,{\".fa-quote-right-alt:before\":false,\".fa-quote-right:before\":false},[\"content:\\\"\\uf10e\\\"\"]],[false,{\".fa-r:before\":false},[\"content:\\\"R\\\"\"]],[false,{\".fa-radiation:before\":false},[\"content:\\\"\\uf7b9\\\"\"]],[false,{\".fa-radio:before\":false},[\"content:\\\"\\uf8d7\\\"\"]],[false,{\".fa-rainbow:before\":false},[\"content:\\\"\\uf75b\\\"\"]],[false,{\".fa-ranking-star:before\":false},[\"content:\\\"\\ue561\\\"\"]],[false,{\".fa-receipt:before\":false},[\"content:\\\"\\uf543\\\"\"]],[false,{\".fa-record-vinyl:before\":false},[\"content:\\\"\\uf8d9\\\"\"]],[false,{\".fa-ad:before\":false,\".fa-rectangle-ad:before\":false},[\"content:\\\"\\uf641\\\"\"]],[false,{\".fa-list-alt:before\":false,\".fa-rectangle-list:before\":false},[\"content:\\\"\\uf022\\\"\"]],[false,{\".fa-rectangle-times:before\":false,\".fa-rectangle-xmark:before\":false,\".fa-times-rectangle:before\":false,\".fa-window-close:before\":false},[\"content:\\\"\\uf410\\\"\"]],[false,{\".fa-recycle:before\":false},[\"content:\\\"\\uf1b8\\\"\"]],[false,{\".fa-registered:before\":false},[\"content:\\\"\\uf25d\\\"\"]],[false,{\".fa-repeat:before\":false},[\"content:\\\"\\uf363\\\"\"]],[false,{\".fa-mail-reply:before\":false,\".fa-reply:before\":false},[\"content:\\\"\\uf3e5\\\"\"]],[false,{\".fa-mail-reply-all:before\":false,\".fa-reply-all:before\":false},[\"content:\\\"\\uf122\\\"\"]],[false,{\".fa-republican:before\":false},[\"content:\\\"\\uf75e\\\"\"]],[false,{\".fa-restroom:before\":false},[\"content:\\\"\\uf7bd\\\"\"]],[false,{\".fa-retweet:before\":false},[\"content:\\\"\\uf079\\\"\"]],[false,{\".fa-ribbon:before\":false},[\"content:\\\"\\uf4d6\\\"\"]],[false,{\".fa-right-from-bracket:before\":false,\".fa-sign-out-alt:before\":false},[\"content:\\\"\\uf2f5\\\"\"]],[false,{\".fa-exchange-alt:before\":false,\".fa-right-left:before\":false},[\"content:\\\"\\uf362\\\"\"]],[true,{\".fa-long-arrow-alt-right:before\":false,\".fa-right-long:before\":true},[\"content:\\\"\\uf30b\\\"\"]],[false,{\".fa-right-to-bracket:before\":false,\".fa-sign-in-alt:before\":false},[\"content:\\\"\\uf2f6\\\"\"]],[false,{\".fa-ring:before\":false},[\"content:\\\"\\uf70b\\\"\"]],[false,{\".fa-road:before\":false},[\"content:\\\"\\uf018\\\"\"]],[false,{\".fa-road-barrier:before\":false},[\"content:\\\"\\ue562\\\"\"]],[false,{\".fa-road-bridge:before\":false},[\"content:\\\"\\ue563\\\"\"]],[false,{\".fa-road-circle-check:before\":false},[\"content:\\\"\\ue564\\\"\"]],[false,{\".fa-road-circle-exclamation:before\":false},[\"content:\\\"\\ue565\\\"\"]],[false,{\".fa-road-circle-xmark:before\":false},[\"content:\\\"\\ue566\\\"\"]],[false,{\".fa-road-lock:before\":false},[\"content:\\\"\\ue567\\\"\"]],[false,{\".fa-road-spikes:before\":false},[\"content:\\\"\\ue568\\\"\"]],[false,{\".fa-robot:before\":false},[\"content:\\\"\\uf544\\\"\"]],[false,{\".fa-rocket:before\":false},[\"content:\\\"\\uf135\\\"\"]],[false,{\".fa-rotate:before\":false,\".fa-sync-alt:before\":false},[\"content:\\\"\\uf2f1\\\"\"]],[false,{\".fa-rotate-back:before\":false,\".fa-rotate-backward:before\":false,\".fa-rotate-left:before\":false,\".fa-undo-alt:before\":false},[\"content:\\\"\\uf2ea\\\"\"]],[false,{\".fa-redo-alt:before\":false,\".fa-rotate-forward:before\":false,\".fa-rotate-right:before\":false},[\"content:\\\"\\uf2f9\\\"\"]],[false,{\".fa-route:before\":false},[\"content:\\\"\\uf4d7\\\"\"]],[false,{\".fa-feed:before\":false,\".fa-rss:before\":false},[\"content:\\\"\\uf09e\\\"\"]],[false,{\".fa-rouble:before\":false,\".fa-rub:before\":false,\".fa-ruble-sign:before\":false,\".fa-ruble:before\":false},[\"content:\\\"\\uf158\\\"\"]],[false,{\".fa-rug:before\":false},[\"content:\\\"\\ue569\\\"\"]],[false,{\".fa-ruler:before\":false},[\"content:\\\"\\uf545\\\"\"]],[false,{\".fa-ruler-combined:before\":false},[\"content:\\\"\\uf546\\\"\"]],[false,{\".fa-ruler-horizontal:before\":false},[\"content:\\\"\\uf547\\\"\"]],[false,{\".fa-ruler-vertical:before\":false},[\"content:\\\"\\uf548\\\"\"]],[false,{\".fa-rupee-sign:before\":false,\".fa-rupee:before\":false},[\"content:\\\"\\uf156\\\"\"]],[false,{\".fa-rupiah-sign:before\":false},[\"content:\\\"\\ue23d\\\"\"]],[false,{\".fa-s:before\":false},[\"content:\\\"S\\\"\"]],[false,{\".fa-sack-dollar:before\":false},[\"content:\\\"\\uf81d\\\"\"]],[false,{\".fa-sack-xmark:before\":false},[\"content:\\\"\\ue56a\\\"\"]],[false,{\".fa-sailboat:before\":false},[\"content:\\\"\\ue445\\\"\"]],[false,{\".fa-satellite:before\":false},[\"content:\\\"\\uf7bf\\\"\"]],[false,{\".fa-satellite-dish:before\":false},[\"content:\\\"\\uf7c0\\\"\"]],[false,{\".fa-balance-scale:before\":false,\".fa-scale-balanced:before\":false},[\"content:\\\"\\uf24e\\\"\"]],[false,{\".fa-balance-scale-left:before\":false,\".fa-scale-unbalanced:before\":false},[\"content:\\\"\\uf515\\\"\"]],[false,{\".fa-balance-scale-right:before\":false,\".fa-scale-unbalanced-flip:before\":false},[\"content:\\\"\\uf516\\\"\"]],[false,{\".fa-school:before\":false},[\"content:\\\"\\uf549\\\"\"]],[false,{\".fa-school-circle-check:before\":false},[\"content:\\\"\\ue56b\\\"\"]],[false,{\".fa-school-circle-exclamation:before\":false},[\"content:\\\"\\ue56c\\\"\"]],[false,{\".fa-school-circle-xmark:before\":false},[\"content:\\\"\\ue56d\\\"\"]],[false,{\".fa-school-flag:before\":false},[\"content:\\\"\\ue56e\\\"\"]],[false,{\".fa-school-lock:before\":false},[\"content:\\\"\\ue56f\\\"\"]],[false,{\".fa-cut:before\":false,\".fa-scissors:before\":false},[\"content:\\\"\\uf0c4\\\"\"]],[false,{\".fa-screwdriver:before\":false},[\"content:\\\"\\uf54a\\\"\"]],[false,{\".fa-screwdriver-wrench:before\":false,\".fa-tools:before\":false},[\"content:\\\"\\uf7d9\\\"\"]],[false,{\".fa-scroll:before\":false},[\"content:\\\"\\uf70e\\\"\"]],[false,{\".fa-scroll-torah:before\":false,\".fa-torah:before\":false},[\"content:\\\"\\uf6a0\\\"\"]],[false,{\".fa-sd-card:before\":false},[\"content:\\\"\\uf7c2\\\"\"]],[false,{\".fa-section:before\":false},[\"content:\\\"\\ue447\\\"\"]],[false,{\".fa-seedling:before\":false,\".fa-sprout:before\":false},[\"content:\\\"\\uf4d8\\\"\"]],[false,{\".fa-server:before\":false},[\"content:\\\"\\uf233\\\"\"]],[false,{\".fa-shapes:before\":false,\".fa-triangle-circle-square:before\":false},[\"content:\\\"\\uf61f\\\"\"]],[false,{\".fa-arrow-turn-right:before\":false,\".fa-mail-forward:before\":false,\".fa-share:before\":false},[\"content:\\\"\\uf064\\\"\"]],[false,{\".fa-share-from-square:before\":false,\".fa-share-square:before\":false},[\"content:\\\"\\uf14d\\\"\"]],[false,{\".fa-share-alt:before\":false,\".fa-share-nodes:before\":false},[\"content:\\\"\\uf1e0\\\"\"]],[false,{\".fa-sheet-plastic:before\":false},[\"content:\\\"\\ue571\\\"\"]],[false,{\".fa-ils:before\":false,\".fa-shekel-sign:before\":false,\".fa-shekel:before\":false,\".fa-sheqel-sign:before\":false,\".fa-sheqel:before\":false},[\"content:\\\"\\uf20b\\\"\"]],[false,{\".fa-shield-blank:before\":false,\".fa-shield:before\":false},[\"content:\\\"\\uf132\\\"\"]],[false,{\".fa-shield-cat:before\":false},[\"content:\\\"\\ue572\\\"\"]],[false,{\".fa-shield-dog:before\":false},[\"content:\\\"\\ue573\\\"\"]],[false,{\".fa-shield-alt:before\":false,\".fa-shield-halved:before\":false},[\"content:\\\"\\uf3ed\\\"\"]],[false,{\".fa-shield-heart:before\":false},[\"content:\\\"\\ue574\\\"\"]],[false,{\".fa-shield-virus:before\":false},[\"content:\\\"\\ue06c\\\"\"]],[false,{\".fa-ship:before\":false},[\"content:\\\"\\uf21a\\\"\"]],[false,{\".fa-shirt:before\":false,\".fa-t-shirt:before\":false,\".fa-tshirt:before\":false},[\"content:\\\"\\uf553\\\"\"]],[false,{\".fa-shoe-prints:before\":false},[\"content:\\\"\\uf54b\\\"\"]],[false,{\".fa-shop:before\":false,\".fa-store-alt:before\":false},[\"content:\\\"\\uf54f\\\"\"]],[false,{\".fa-shop-lock:before\":false},[\"content:\\\"\\ue4a5\\\"\"]],[false,{\".fa-shop-slash:before\":false,\".fa-store-alt-slash:before\":false},[\"content:\\\"\\ue070\\\"\"]],[false,{\".fa-shower:before\":false},[\"content:\\\"\\uf2cc\\\"\"]],[false,{\".fa-shrimp:before\":false},[\"content:\\\"\\ue448\\\"\"]],[false,{\".fa-random:before\":false,\".fa-shuffle:before\":false},[\"content:\\\"\\uf074\\\"\"]],[false,{\".fa-shuttle-space:before\":false,\".fa-space-shuttle:before\":false},[\"content:\\\"\\uf197\\\"\"]],[false,{\".fa-sign-hanging:before\":false,\".fa-sign:before\":false},[\"content:\\\"\\uf4d9\\\"\"]],[false,{\".fa-signal-5:before\":false,\".fa-signal-perfect:before\":false,\".fa-signal:before\":false},[\"content:\\\"\\uf012\\\"\"]],[false,{\".fa-signature:before\":false},[\"content:\\\"\\uf5b7\\\"\"]],[false,{\".fa-map-signs:before\":false,\".fa-signs-post:before\":false},[\"content:\\\"\\uf277\\\"\"]],[false,{\".fa-sim-card:before\":false},[\"content:\\\"\\uf7c4\\\"\"]],[false,{\".fa-sink:before\":false},[\"content:\\\"\\ue06d\\\"\"]],[false,{\".fa-sitemap:before\":false},[\"content:\\\"\\uf0e8\\\"\"]],[false,{\".fa-skull:before\":false},[\"content:\\\"\\uf54c\\\"\"]],[false,{\".fa-skull-crossbones:before\":false},[\"content:\\\"\\uf714\\\"\"]],[false,{\".fa-slash:before\":false},[\"content:\\\"\\uf715\\\"\"]],[false,{\".fa-sleigh:before\":false},[\"content:\\\"\\uf7cc\\\"\"]],[false,{\".fa-sliders-h:before\":false,\".fa-sliders:before\":false},[\"content:\\\"\\uf1de\\\"\"]],[false,{\".fa-smog:before\":false},[\"content:\\\"\\uf75f\\\"\"]],[false,{\".fa-smoking:before\":false},[\"content:\\\"\\uf48d\\\"\"]],[false,{\".fa-snowflake:before\":false},[\"content:\\\"\\uf2dc\\\"\"]],[false,{\".fa-snowman:before\":false},[\"content:\\\"\\uf7d0\\\"\"]],[false,{\".fa-snowplow:before\":false},[\"content:\\\"\\uf7d2\\\"\"]],[false,{\".fa-soap:before\":false},[\"content:\\\"\\ue06e\\\"\"]],[false,{\".fa-socks:before\":false},[\"content:\\\"\\uf696\\\"\"]],[false,{\".fa-solar-panel:before\":false},[\"content:\\\"\\uf5ba\\\"\"]],[false,{\".fa-sort:before\":false,\".fa-unsorted:before\":false},[\"content:\\\"\\uf0dc\\\"\"]],[false,{\".fa-sort-desc:before\":false,\".fa-sort-down:before\":false},[\"content:\\\"\\uf0dd\\\"\"]],[false,{\".fa-sort-asc:before\":false,\".fa-sort-up:before\":false},[\"content:\\\"\\uf0de\\\"\"]],[false,{\".fa-spa:before\":false},[\"content:\\\"\\uf5bb\\\"\"]],[false,{\".fa-pastafarianism:before\":false,\".fa-spaghetti-monster-flying:before\":false},[\"content:\\\"\\uf67b\\\"\"]],[false,{\".fa-spell-check:before\":false},[\"content:\\\"\\uf891\\\"\"]],[false,{\".fa-spider:before\":false},[\"content:\\\"\\uf717\\\"\"]],[false,{\".fa-spinner:before\":false},[\"content:\\\"\\uf110\\\"\"]],[false,{\".fa-splotch:before\":false},[\"content:\\\"\\uf5bc\\\"\"]],[false,{\".fa-spoon:before\":false,\".fa-utensil-spoon:before\":false},[\"content:\\\"\\uf2e5\\\"\"]],[false,{\".fa-spray-can:before\":false},[\"content:\\\"\\uf5bd\\\"\"]],[false,{\".fa-air-freshener:before\":false,\".fa-spray-can-sparkles:before\":false},[\"content:\\\"\\uf5d0\\\"\"]],[false,{\".fa-square:before\":false},[\"content:\\\"\\uf0c8\\\"\"]],[false,{\".fa-external-link-square:before\":false,\".fa-square-arrow-up-right:before\":false},[\"content:\\\"\\uf14c\\\"\"]],[false,{\".fa-caret-square-down:before\":false,\".fa-square-caret-down:before\":false},[\"content:\\\"\\uf150\\\"\"]],[false,{\".fa-caret-square-left:before\":false,\".fa-square-caret-left:before\":false},[\"content:\\\"\\uf191\\\"\"]],[false,{\".fa-caret-square-right:before\":false,\".fa-square-caret-right:before\":false},[\"content:\\\"\\uf152\\\"\"]],[false,{\".fa-caret-square-up:before\":false,\".fa-square-caret-up:before\":false},[\"content:\\\"\\uf151\\\"\"]],[false,{\".fa-check-square:before\":false,\".fa-square-check:before\":false},[\"content:\\\"\\uf14a\\\"\"]],[false,{\".fa-envelope-square:before\":false,\".fa-square-envelope:before\":false},[\"content:\\\"\\uf199\\\"\"]],[false,{\".fa-square-full:before\":false},[\"content:\\\"\\uf45c\\\"\"]],[false,{\".fa-h-square:before\":false,\".fa-square-h:before\":false},[\"content:\\\"\\uf0fd\\\"\"]],[false,{\".fa-minus-square:before\":false,\".fa-square-minus:before\":false},[\"content:\\\"\\uf146\\\"\"]],[false,{\".fa-square-nfi:before\":false},[\"content:\\\"\\ue576\\\"\"]],[false,{\".fa-parking:before\":false,\".fa-square-parking:before\":false},[\"content:\\\"\\uf540\\\"\"]],[false,{\".fa-pen-square:before\":false,\".fa-pencil-square:before\":false,\".fa-square-pen:before\":false},[\"content:\\\"\\uf14b\\\"\"]],[false,{\".fa-square-person-confined:before\":false},[\"content:\\\"\\ue577\\\"\"]],[false,{\".fa-phone-square:before\":false,\".fa-square-phone:before\":false},[\"content:\\\"\\uf098\\\"\"]],[false,{\".fa-phone-square-alt:before\":false,\".fa-square-phone-flip:before\":false},[\"content:\\\"\\uf87b\\\"\"]],[false,{\".fa-plus-square:before\":false,\".fa-square-plus:before\":false},[\"content:\\\"\\uf0fe\\\"\"]],[false,{\".fa-poll-h:before\":false,\".fa-square-poll-horizontal:before\":false},[\"content:\\\"\\uf682\\\"\"]],[false,{\".fa-poll:before\":false,\".fa-square-poll-vertical:before\":false},[\"content:\\\"\\uf681\\\"\"]],[false,{\".fa-square-root-alt:before\":false,\".fa-square-root-variable:before\":false},[\"content:\\\"\\uf698\\\"\"]],[false,{\".fa-rss-square:before\":false,\".fa-square-rss:before\":false},[\"content:\\\"\\uf143\\\"\"]],[false,{\".fa-share-alt-square:before\":false,\".fa-square-share-nodes:before\":false},[\"content:\\\"\\uf1e1\\\"\"]],[false,{\".fa-external-link-square-alt:before\":false,\".fa-square-up-right:before\":false},[\"content:\\\"\\uf360\\\"\"]],[false,{\".fa-square-virus:before\":false},[\"content:\\\"\\ue578\\\"\"]],[false,{\".fa-square-xmark:before\":false,\".fa-times-square:before\":false,\".fa-xmark-square:before\":false},[\"content:\\\"\\uf2d3\\\"\"]],[false,{\".fa-rod-asclepius:before\":false,\".fa-rod-snake:before\":false,\".fa-staff-aesculapius:before\":false,\".fa-staff-snake:before\":false},[\"content:\\\"\\ue579\\\"\"]],[false,{\".fa-stairs:before\":false},[\"content:\\\"\\ue289\\\"\"]],[false,{\".fa-stamp:before\":false},[\"content:\\\"\\uf5bf\\\"\"]],[false,{\".fa-star:before\":false},[\"content:\\\"\\uf005\\\"\"]],[false,{\".fa-star-and-crescent:before\":false},[\"content:\\\"\\uf699\\\"\"]],[false,{\".fa-star-half:before\":false},[\"content:\\\"\\uf089\\\"\"]],[false,{\".fa-star-half-alt:before\":false,\".fa-star-half-stroke:before\":false},[\"content:\\\"\\uf5c0\\\"\"]],[false,{\".fa-star-of-david:before\":false},[\"content:\\\"\\uf69a\\\"\"]],[false,{\".fa-star-of-life:before\":false},[\"content:\\\"\\uf621\\\"\"]],[false,{\".fa-gbp:before\":false,\".fa-pound-sign:before\":false,\".fa-sterling-sign:before\":false},[\"content:\\\"\\uf154\\\"\"]],[false,{\".fa-stethoscope:before\":false},[\"content:\\\"\\uf0f1\\\"\"]],[false,{\".fa-stop:before\":false},[\"content:\\\"\\uf04d\\\"\"]],[false,{\".fa-stopwatch:before\":false},[\"content:\\\"\\uf2f2\\\"\"]],[false,{\".fa-stopwatch-20:before\":false},[\"content:\\\"\\ue06f\\\"\"]],[false,{\".fa-store:before\":false},[\"content:\\\"\\uf54e\\\"\"]],[false,{\".fa-store-slash:before\":false},[\"content:\\\"\\ue071\\\"\"]],[false,{\".fa-street-view:before\":false},[\"content:\\\"\\uf21d\\\"\"]],[false,{\".fa-strikethrough:before\":false},[\"content:\\\"\\uf0cc\\\"\"]],[false,{\".fa-stroopwafel:before\":false},[\"content:\\\"\\uf551\\\"\"]],[false,{\".fa-subscript:before\":false},[\"content:\\\"\\uf12c\\\"\"]],[false,{\".fa-suitcase:before\":false},[\"content:\\\"\\uf0f2\\\"\"]],[false,{\".fa-medkit:before\":false,\".fa-suitcase-medical:before\":false},[\"content:\\\"\\uf0fa\\\"\"]],[false,{\".fa-suitcase-rolling:before\":false},[\"content:\\\"\\uf5c1\\\"\"]],[false,{\".fa-sun:before\":false},[\"content:\\\"\\uf185\\\"\"]],[false,{\".fa-sun-plant-wilt:before\":false},[\"content:\\\"\\ue57a\\\"\"]],[false,{\".fa-superscript:before\":false},[\"content:\\\"\\uf12b\\\"\"]],[false,{\".fa-swatchbook:before\":false},[\"content:\\\"\\uf5c3\\\"\"]],[false,{\".fa-synagogue:before\":false},[\"content:\\\"\\uf69b\\\"\"]],[false,{\".fa-syringe:before\":false},[\"content:\\\"\\uf48e\\\"\"]],[false,{\".fa-t:before\":false},[\"content:\\\"T\\\"\"]],[false,{\".fa-table:before\":false},[\"content:\\\"\\uf0ce\\\"\"]],[false,{\".fa-table-cells:before\":false,\".fa-th:before\":false},[\"content:\\\"\\uf00a\\\"\"]],[false,{\".fa-table-cells-large:before\":false,\".fa-th-large:before\":false},[\"content:\\\"\\uf009\\\"\"]],[false,{\".fa-columns:before\":false,\".fa-table-columns:before\":false},[\"content:\\\"\\uf0db\\\"\"]],[false,{\".fa-table-list:before\":false,\".fa-th-list:before\":false},[\"content:\\\"\\uf00b\\\"\"]],[false,{\".fa-ping-pong-paddle-ball:before\":false,\".fa-table-tennis-paddle-ball:before\":false,\".fa-table-tennis:before\":false},[\"content:\\\"\\uf45d\\\"\"]],[false,{\".fa-tablet-android:before\":false,\".fa-tablet:before\":false},[\"content:\\\"\\uf3fb\\\"\"]],[false,{\".fa-tablet-button:before\":false},[\"content:\\\"\\uf10a\\\"\"]],[false,{\".fa-tablet-alt:before\":false,\".fa-tablet-screen-button:before\":false},[\"content:\\\"\\uf3fa\\\"\"]],[false,{\".fa-tablets:before\":false},[\"content:\\\"\\uf490\\\"\"]],[false,{\".fa-digital-tachograph:before\":false,\".fa-tachograph-digital:before\":false},[\"content:\\\"\\uf566\\\"\"]],[false,{\".fa-tag:before\":false},[\"content:\\\"\\uf02b\\\"\"]],[false,{\".fa-tags:before\":false},[\"content:\\\"\\uf02c\\\"\"]],[false,{\".fa-tape:before\":false},[\"content:\\\"\\uf4db\\\"\"]],[false,{\".fa-tarp:before\":false},[\"content:\\\"\\ue57b\\\"\"]],[false,{\".fa-tarp-droplet:before\":false},[\"content:\\\"\\ue57c\\\"\"]],[false,{\".fa-cab:before\":false,\".fa-taxi:before\":false},[\"content:\\\"\\uf1ba\\\"\"]],[false,{\".fa-teeth:before\":false},[\"content:\\\"\\uf62e\\\"\"]],[false,{\".fa-teeth-open:before\":false},[\"content:\\\"\\uf62f\\\"\"]],[false,{\".fa-temperature-arrow-down:before\":false,\".fa-temperature-down:before\":false},[\"content:\\\"\\ue03f\\\"\"]],[false,{\".fa-temperature-arrow-up:before\":false,\".fa-temperature-up:before\":false},[\"content:\\\"\\ue040\\\"\"]],[false,{\".fa-temperature-0:before\":false,\".fa-temperature-empty:before\":false,\".fa-thermometer-0:before\":false,\".fa-thermometer-empty:before\":false},[\"content:\\\"\\uf2cb\\\"\"]],[false,{\".fa-temperature-4:before\":false,\".fa-temperature-full:before\":false,\".fa-thermometer-4:before\":false,\".fa-thermometer-full:before\":false},[\"content:\\\"\\uf2c7\\\"\"]],[false,{\".fa-temperature-2:before\":false,\".fa-temperature-half:before\":false,\".fa-thermometer-2:before\":false,\".fa-thermometer-half:before\":false},[\"content:\\\"\\uf2c9\\\"\"]],[false,{\".fa-temperature-high:before\":false},[\"content:\\\"\\uf769\\\"\"]],[false,{\".fa-temperature-low:before\":false},[\"content:\\\"\\uf76b\\\"\"]],[false,{\".fa-temperature-1:before\":false,\".fa-temperature-quarter:before\":false,\".fa-thermometer-1:before\":false,\".fa-thermometer-quarter:before\":false},[\"content:\\\"\\uf2ca\\\"\"]],[false,{\".fa-temperature-3:before\":false,\".fa-temperature-three-quarters:before\":false,\".fa-thermometer-3:before\":false,\".fa-thermometer-three-quarters:before\":false},[\"content:\\\"\\uf2c8\\\"\"]],[false,{\".fa-tenge-sign:before\":false,\".fa-tenge:before\":false},[\"content:\\\"\\uf7d7\\\"\"]],[false,{\".fa-tent:before\":false},[\"content:\\\"\\ue57d\\\"\"]],[false,{\".fa-tent-arrow-down-to-line:before\":false},[\"content:\\\"\\ue57e\\\"\"]],[false,{\".fa-tent-arrow-left-right:before\":false},[\"content:\\\"\\ue57f\\\"\"]],[false,{\".fa-tent-arrow-turn-left:before\":false},[\"content:\\\"\\ue580\\\"\"]],[false,{\".fa-tent-arrows-down:before\":false},[\"content:\\\"\\ue581\\\"\"]],[false,{\".fa-tents:before\":false},[\"content:\\\"\\ue582\\\"\"]],[false,{\".fa-terminal:before\":false},[\"content:\\\"\\uf120\\\"\"]],[false,{\".fa-text-height:before\":false},[\"content:\\\"\\uf034\\\"\"]],[false,{\".fa-remove-format:before\":false,\".fa-text-slash:before\":false},[\"content:\\\"\\uf87d\\\"\"]],[false,{\".fa-text-width:before\":false},[\"content:\\\"\\uf035\\\"\"]],[false,{\".fa-thermometer:before\":false},[\"content:\\\"\\uf491\\\"\"]],[false,{\".fa-thumbs-down:before\":false},[\"content:\\\"\\uf165\\\"\"]],[false,{\".fa-thumbs-up:before\":false},[\"content:\\\"\\uf164\\\"\"]],[false,{\".fa-thumb-tack:before\":false,\".fa-thumbtack:before\":false},[\"content:\\\"\\uf08d\\\"\"]],[false,{\".fa-ticket:before\":false},[\"content:\\\"\\uf145\\\"\"]],[false,{\".fa-ticket-alt:before\":false,\".fa-ticket-simple:before\":false},[\"content:\\\"\\uf3ff\\\"\"]],[false,{\".fa-timeline:before\":false},[\"content:\\\"\\ue29c\\\"\"]],[false,{\".fa-toggle-off:before\":false},[\"content:\\\"\\uf204\\\"\"]],[false,{\".fa-toggle-on:before\":false},[\"content:\\\"\\uf205\\\"\"]],[false,{\".fa-toilet:before\":false},[\"content:\\\"\\uf7d8\\\"\"]],[false,{\".fa-toilet-paper:before\":false},[\"content:\\\"\\uf71e\\\"\"]],[false,{\".fa-toilet-paper-slash:before\":false},[\"content:\\\"\\ue072\\\"\"]],[false,{\".fa-toilet-portable:before\":false},[\"content:\\\"\\ue583\\\"\"]],[false,{\".fa-toilets-portable:before\":false},[\"content:\\\"\\ue584\\\"\"]],[false,{\".fa-toolbox:before\":false},[\"content:\\\"\\uf552\\\"\"]],[false,{\".fa-tooth:before\":false},[\"content:\\\"\\uf5c9\\\"\"]],[false,{\".fa-torii-gate:before\":false},[\"content:\\\"\\uf6a1\\\"\"]],[false,{\".fa-tornado:before\":false},[\"content:\\\"\\uf76f\\\"\"]],[false,{\".fa-broadcast-tower:before\":false,\".fa-tower-broadcast:before\":false},[\"content:\\\"\\uf519\\\"\"]],[false,{\".fa-tower-cell:before\":false},[\"content:\\\"\\ue585\\\"\"]],[false,{\".fa-tower-observation:before\":false},[\"content:\\\"\\ue586\\\"\"]],[false,{\".fa-tractor:before\":false},[\"content:\\\"\\uf722\\\"\"]],[false,{\".fa-trademark:before\":false},[\"content:\\\"\\uf25c\\\"\"]],[false,{\".fa-traffic-light:before\":false},[\"content:\\\"\\uf637\\\"\"]],[false,{\".fa-trailer:before\":false},[\"content:\\\"\\ue041\\\"\"]],[false,{\".fa-train:before\":false},[\"content:\\\"\\uf238\\\"\"]],[false,{\".fa-subway:before\":false,\".fa-train-subway:before\":false},[\"content:\\\"\\uf239\\\"\"]],[false,{\".fa-train-tram:before\":false,\".fa-tram:before\":false},[\"content:\\\"\\uf7da\\\"\"]],[false,{\".fa-transgender-alt:before\":false,\".fa-transgender:before\":false},[\"content:\\\"\\uf225\\\"\"]],[false,{\".fa-trash:before\":false},[\"content:\\\"\\uf1f8\\\"\"]],[false,{\".fa-trash-arrow-up:before\":false,\".fa-trash-restore:before\":false},[\"content:\\\"\\uf829\\\"\"]],[false,{\".fa-trash-alt:before\":false,\".fa-trash-can:before\":false},[\"content:\\\"\\uf2ed\\\"\"]],[false,{\".fa-trash-can-arrow-up:before\":false,\".fa-trash-restore-alt:before\":false},[\"content:\\\"\\uf82a\\\"\"]],[false,{\".fa-tree:before\":false},[\"content:\\\"\\uf1bb\\\"\"]],[false,{\".fa-tree-city:before\":false},[\"content:\\\"\\ue587\\\"\"]],[false,{\".fa-exclamation-triangle:before\":false,\".fa-triangle-exclamation:before\":false,\".fa-warning:before\":false},[\"content:\\\"\\uf071\\\"\"]],[false,{\".fa-trophy:before\":false},[\"content:\\\"\\uf091\\\"\"]],[false,{\".fa-trowel:before\":false},[\"content:\\\"\\ue589\\\"\"]],[false,{\".fa-trowel-bricks:before\":false},[\"content:\\\"\\ue58a\\\"\"]],[false,{\".fa-truck:before\":false},[\"content:\\\"\\uf0d1\\\"\"]],[false,{\".fa-truck-arrow-right:before\":false},[\"content:\\\"\\ue58b\\\"\"]],[false,{\".fa-truck-droplet:before\":false},[\"content:\\\"\\ue58c\\\"\"]],[false,{\".fa-shipping-fast:before\":false,\".fa-truck-fast:before\":false},[\"content:\\\"\\uf48b\\\"\"]],[false,{\".fa-truck-field:before\":false},[\"content:\\\"\\ue58d\\\"\"]],[false,{\".fa-truck-field-un:before\":false},[\"content:\\\"\\ue58e\\\"\"]],[false,{\".fa-truck-front:before\":false},[\"content:\\\"\\ue2b7\\\"\"]],[false,{\".fa-ambulance:before\":false,\".fa-truck-medical:before\":false},[\"content:\\\"\\uf0f9\\\"\"]],[false,{\".fa-truck-monster:before\":false},[\"content:\\\"\\uf63b\\\"\"]],[false,{\".fa-truck-moving:before\":false},[\"content:\\\"\\uf4df\\\"\"]],[false,{\".fa-truck-pickup:before\":false},[\"content:\\\"\\uf63c\\\"\"]],[false,{\".fa-truck-plane:before\":false},[\"content:\\\"\\ue58f\\\"\"]],[false,{\".fa-truck-loading:before\":false,\".fa-truck-ramp-box:before\":false},[\"content:\\\"\\uf4de\\\"\"]],[false,{\".fa-teletype:before\":false,\".fa-tty:before\":false},[\"content:\\\"\\uf1e4\\\"\"]],[false,{\".fa-try:before\":false,\".fa-turkish-lira-sign:before\":false,\".fa-turkish-lira:before\":false},[\"content:\\\"\\ue2bb\\\"\"]],[false,{\".fa-level-down-alt:before\":false,\".fa-turn-down:before\":false},[\"content:\\\"\\uf3be\\\"\"]],[false,{\".fa-level-up-alt:before\":false,\".fa-turn-up:before\":false},[\"content:\\\"\\uf3bf\\\"\"]],[false,{\".fa-television:before\":false,\".fa-tv-alt:before\":false,\".fa-tv:before\":false},[\"content:\\\"\\uf26c\\\"\"]],[false,{\".fa-u:before\":false},[\"content:\\\"U\\\"\"]],[false,{\".fa-umbrella:before\":false},[\"content:\\\"\\uf0e9\\\"\"]],[false,{\".fa-umbrella-beach:before\":false},[\"content:\\\"\\uf5ca\\\"\"]],[false,{\".fa-underline:before\":false},[\"content:\\\"\\uf0cd\\\"\"]],[false,{\".fa-universal-access:before\":false},[\"content:\\\"\\uf29a\\\"\"]],[false,{\".fa-unlock:before\":false},[\"content:\\\"\\uf09c\\\"\"]],[false,{\".fa-unlock-alt:before\":false,\".fa-unlock-keyhole:before\":false},[\"content:\\\"\\uf13e\\\"\"]],[false,{\".fa-arrows-alt-v:before\":false,\".fa-up-down:before\":false},[\"content:\\\"\\uf338\\\"\"]],[false,{\".fa-arrows-alt:before\":false,\".fa-up-down-left-right:before\":false},[\"content:\\\"\\uf0b2\\\"\"]],[false,{\".fa-long-arrow-alt-up:before\":false,\".fa-up-long:before\":false},[\"content:\\\"\\uf30c\\\"\"]],[false,{\".fa-expand-alt:before\":false,\".fa-up-right-and-down-left-from-center:before\":false},[\"content:\\\"\\uf424\\\"\"]],[false,{\".fa-external-link-alt:before\":false,\".fa-up-right-from-square:before\":false},[\"content:\\\"\\uf35d\\\"\"]],[false,{\".fa-upload:before\":false},[\"content:\\\"\\uf093\\\"\"]],[false,{\".fa-user:before\":false},[\"content:\\\"\\uf007\\\"\"]],[false,{\".fa-user-astronaut:before\":false},[\"content:\\\"\\uf4fb\\\"\"]],[false,{\".fa-user-check:before\":false},[\"content:\\\"\\uf4fc\\\"\"]],[false,{\".fa-user-clock:before\":false},[\"content:\\\"\\uf4fd\\\"\"]],[false,{\".fa-user-doctor:before\":false,\".fa-user-md:before\":false},[\"content:\\\"\\uf0f0\\\"\"]],[false,{\".fa-user-cog:before\":false,\".fa-user-gear:before\":false},[\"content:\\\"\\uf4fe\\\"\"]],[false,{\".fa-user-graduate:before\":false},[\"content:\\\"\\uf501\\\"\"]],[false,{\".fa-user-friends:before\":false,\".fa-user-group:before\":false},[\"content:\\\"\\uf500\\\"\"]],[false,{\".fa-user-injured:before\":false},[\"content:\\\"\\uf728\\\"\"]],[false,{\".fa-user-alt:before\":false,\".fa-user-large:before\":false},[\"content:\\\"\\uf406\\\"\"]],[false,{\".fa-user-alt-slash:before\":false,\".fa-user-large-slash:before\":false},[\"content:\\\"\\uf4fa\\\"\"]],[false,{\".fa-user-lock:before\":false},[\"content:\\\"\\uf502\\\"\"]],[false,{\".fa-user-minus:before\":false},[\"content:\\\"\\uf503\\\"\"]],[false,{\".fa-user-ninja:before\":false},[\"content:\\\"\\uf504\\\"\"]],[false,{\".fa-user-nurse:before\":false},[\"content:\\\"\\uf82f\\\"\"]],[false,{\".fa-user-edit:before\":false,\".fa-user-pen:before\":false},[\"content:\\\"\\uf4ff\\\"\"]],[false,{\".fa-user-plus:before\":false},[\"content:\\\"\\uf234\\\"\"]],[false,{\".fa-user-secret:before\":false},[\"content:\\\"\\uf21b\\\"\"]],[false,{\".fa-user-shield:before\":false},[\"content:\\\"\\uf505\\\"\"]],[false,{\".fa-user-slash:before\":false},[\"content:\\\"\\uf506\\\"\"]],[false,{\".fa-user-tag:before\":false},[\"content:\\\"\\uf507\\\"\"]],[false,{\".fa-user-tie:before\":false},[\"content:\\\"\\uf508\\\"\"]],[false,{\".fa-user-times:before\":false,\".fa-user-xmark:before\":false},[\"content:\\\"\\uf235\\\"\"]],[false,{\".fa-users:before\":false},[\"content:\\\"\\uf0c0\\\"\"]],[false,{\".fa-users-between-lines:before\":false},[\"content:\\\"\\ue591\\\"\"]],[false,{\".fa-users-cog:before\":false,\".fa-users-gear:before\":false},[\"content:\\\"\\uf509\\\"\"]],[false,{\".fa-users-line:before\":false},[\"content:\\\"\\ue592\\\"\"]],[false,{\".fa-users-rays:before\":false},[\"content:\\\"\\ue593\\\"\"]],[false,{\".fa-users-rectangle:before\":false},[\"content:\\\"\\ue594\\\"\"]],[false,{\".fa-users-slash:before\":false},[\"content:\\\"\\ue073\\\"\"]],[false,{\".fa-users-viewfinder:before\":false},[\"content:\\\"\\ue595\\\"\"]],[false,{\".fa-cutlery:before\":false,\".fa-utensils:before\":false},[\"content:\\\"\\uf2e7\\\"\"]],[false,{\".fa-v:before\":false},[\"content:\\\"V\\\"\"]],[false,{\".fa-shuttle-van:before\":false,\".fa-van-shuttle:before\":false},[\"content:\\\"\\uf5b6\\\"\"]],[false,{\".fa-vault:before\":false},[\"content:\\\"\\ue2c5\\\"\"]],[false,{\".fa-vector-square:before\":false},[\"content:\\\"\\uf5cb\\\"\"]],[false,{\".fa-venus:before\":false},[\"content:\\\"\\uf221\\\"\"]],[false,{\".fa-venus-double:before\":false},[\"content:\\\"\\uf226\\\"\"]],[false,{\".fa-venus-mars:before\":false},[\"content:\\\"\\uf228\\\"\"]],[false,{\".fa-vest:before\":false},[\"content:\\\"\\ue085\\\"\"]],[false,{\".fa-vest-patches:before\":false},[\"content:\\\"\\ue086\\\"\"]],[false,{\".fa-vial:before\":false},[\"content:\\\"\\uf492\\\"\"]],[false,{\".fa-vial-circle-check:before\":false},[\"content:\\\"\\ue596\\\"\"]],[false,{\".fa-vial-virus:before\":false},[\"content:\\\"\\ue597\\\"\"]],[false,{\".fa-vials:before\":false},[\"content:\\\"\\uf493\\\"\"]],[false,{\".fa-video-camera:before\":false,\".fa-video:before\":false},[\"content:\\\"\\uf03d\\\"\"]],[false,{\".fa-video-slash:before\":false},[\"content:\\\"\\uf4e2\\\"\"]],[false,{\".fa-vihara:before\":false},[\"content:\\\"\\uf6a7\\\"\"]],[false,{\".fa-virus:before\":false},[\"content:\\\"\\ue074\\\"\"]],[false,{\".fa-virus-covid:before\":false},[\"content:\\\"\\ue4a8\\\"\"]],[false,{\".fa-virus-covid-slash:before\":false},[\"content:\\\"\\ue4a9\\\"\"]],[false,{\".fa-virus-slash:before\":false},[\"content:\\\"\\ue075\\\"\"]],[false,{\".fa-viruses:before\":false},[\"content:\\\"\\ue076\\\"\"]],[false,{\".fa-voicemail:before\":false},[\"content:\\\"\\uf897\\\"\"]],[false,{\".fa-volcano:before\":false},[\"content:\\\"\\uf770\\\"\"]],[false,{\".fa-volleyball-ball:before\":false,\".fa-volleyball:before\":false},[\"content:\\\"\\uf45f\\\"\"]],[false,{\".fa-volume-high:before\":false,\".fa-volume-up:before\":false},[\"content:\\\"\\uf028\\\"\"]],[false,{\".fa-volume-down:before\":false,\".fa-volume-low:before\":false},[\"content:\\\"\\uf027\\\"\"]],[false,{\".fa-volume-off:before\":false},[\"content:\\\"\\uf026\\\"\"]],[false,{\".fa-volume-mute:before\":false,\".fa-volume-times:before\":false,\".fa-volume-xmark:before\":false},[\"content:\\\"\\uf6a9\\\"\"]],[false,{\".fa-vr-cardboard:before\":false},[\"content:\\\"\\uf729\\\"\"]],[false,{\".fa-w:before\":false},[\"content:\\\"W\\\"\"]],[false,{\".fa-walkie-talkie:before\":false},[\"content:\\\"\\uf8ef\\\"\"]],[false,{\".fa-wallet:before\":false},[\"content:\\\"\\uf555\\\"\"]],[false,{\".fa-magic:before\":false,\".fa-wand-magic:before\":false},[\"content:\\\"\\uf0d0\\\"\"]],[false,{\".fa-magic-wand-sparkles:before\":false,\".fa-wand-magic-sparkles:before\":false},[\"content:\\\"\\ue2ca\\\"\"]],[false,{\".fa-wand-sparkles:before\":false},[\"content:\\\"\\uf72b\\\"\"]],[false,{\".fa-warehouse:before\":false},[\"content:\\\"\\uf494\\\"\"]],[false,{\".fa-water:before\":false},[\"content:\\\"\\uf773\\\"\"]],[false,{\".fa-ladder-water:before\":false,\".fa-swimming-pool:before\":false,\".fa-water-ladder:before\":false},[\"content:\\\"\\uf5c5\\\"\"]],[false,{\".fa-wave-square:before\":false},[\"content:\\\"\\uf83e\\\"\"]],[false,{\".fa-weight-hanging:before\":false},[\"content:\\\"\\uf5cd\\\"\"]],[false,{\".fa-weight-scale:before\":false,\".fa-weight:before\":false},[\"content:\\\"\\uf496\\\"\"]],[false,{\".fa-wheat-alt:before\":false,\".fa-wheat-awn:before\":false},[\"content:\\\"\\ue2cd\\\"\"]],[false,{\".fa-wheat-awn-circle-exclamation:before\":false},[\"content:\\\"\\ue598\\\"\"]],[false,{\".fa-wheelchair:before\":false},[\"content:\\\"\\uf193\\\"\"]],[false,{\".fa-wheelchair-alt:before\":false,\".fa-wheelchair-move:before\":false},[\"content:\\\"\\ue2ce\\\"\"]],[false,{\".fa-glass-whiskey:before\":false,\".fa-whiskey-glass:before\":false},[\"content:\\\"\\uf7a0\\\"\"]],[false,{\".fa-wifi-3:before\":false,\".fa-wifi-strong:before\":false,\".fa-wifi:before\":false},[\"content:\\\"\\uf1eb\\\"\"]],[false,{\".fa-wind:before\":false},[\"content:\\\"\\uf72e\\\"\"]],[false,{\".fa-window-maximize:before\":false},[\"content:\\\"\\uf2d0\\\"\"]],[false,{\".fa-window-minimize:before\":false},[\"content:\\\"\\uf2d1\\\"\"]],[false,{\".fa-window-restore:before\":false},[\"content:\\\"\\uf2d2\\\"\"]],[false,{\".fa-wine-bottle:before\":false},[\"content:\\\"\\uf72f\\\"\"]],[false,{\".fa-wine-glass:before\":false},[\"content:\\\"\\uf4e3\\\"\"]],[false,{\".fa-wine-glass-alt:before\":false,\".fa-wine-glass-empty:before\":false},[\"content:\\\"\\uf5ce\\\"\"]],[false,{\".fa-krw:before\":false,\".fa-won-sign:before\":false,\".fa-won:before\":false},[\"content:\\\"\\uf159\\\"\"]],[false,{\".fa-worm:before\":false},[\"content:\\\"\\ue599\\\"\"]],[false,{\".fa-wrench:before\":false},[\"content:\\\"\\uf0ad\\\"\"]],[false,{\".fa-x:before\":false},[\"content:\\\"X\\\"\"]],[false,{\".fa-x-ray:before\":false},[\"content:\\\"\\uf497\\\"\"]],[false,{\".fa-close:before\":false,\".fa-multiply:before\":false,\".fa-remove:before\":false,\".fa-times:before\":false,\".fa-xmark:before\":false},[\"content:\\\"\\uf00d\\\"\"]],[false,{\".fa-xmarks-lines:before\":false},[\"content:\\\"\\ue59a\\\"\"]],[false,{\".fa-y:before\":false},[\"content:\\\"Y\\\"\"]],[false,{\".fa-cny:before\":false,\".fa-jpy:before\":false,\".fa-rmb:before\":false,\".fa-yen-sign:before\":false,\".fa-yen:before\":false},[\"content:\\\"\\uf157\\\"\"]],[false,{\".fa-yin-yang:before\":false},[\"content:\\\"\\uf6ad\\\"\"]],[false,{\".fa-z:before\":false},[\"content:\\\"Z\\\"\"]],[false,{\".fa-sr-only\":false,\".fa-sr-only-focusable:not(:focus)\":false,\".sr-only\":false,\".sr-only-focusable:not(:focus)\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"white-space:nowrap\",\"border-width:0\"]],[true,{\":host\":true,\":root\":true},[\"--fa-font-brands:normal 400 1em\\/1 \\\"Font Awesome 6 Brands\\\"\"]],[true,\"@font-face{font-family:\\\"Font Awesome 6 Brands\\\";font-style:normal;font-weight:400;font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\")}\"],[false,{\".fa-brands\":false,\".fab\":false},[\"font-family:\\\"Font Awesome 6 Brands\\\"\",\"font-weight:400\"]],[false,{\".fa-42-group:before\":false,\".fa-innosoft:before\":false},[\"content:\\\"\\ue080\\\"\"]],[false,{\".fa-500px:before\":false},[\"content:\\\"\\uf26e\\\"\"]],[false,{\".fa-accessible-icon:before\":false},[\"content:\\\"\\uf368\\\"\"]],[false,{\".fa-accusoft:before\":false},[\"content:\\\"\\uf369\\\"\"]],[false,{\".fa-adn:before\":false},[\"content:\\\"\\uf170\\\"\"]],[false,{\".fa-adversal:before\":false},[\"content:\\\"\\uf36a\\\"\"]],[false,{\".fa-affiliatetheme:before\":false},[\"content:\\\"\\uf36b\\\"\"]],[false,{\".fa-airbnb:before\":false},[\"content:\\\"\\uf834\\\"\"]],[false,{\".fa-algolia:before\":false},[\"content:\\\"\\uf36c\\\"\"]],[false,{\".fa-alipay:before\":false},[\"content:\\\"\\uf642\\\"\"]],[false,{\".fa-amazon:before\":false},[\"content:\\\"\\uf270\\\"\"]],[false,{\".fa-amazon-pay:before\":false},[\"content:\\\"\\uf42c\\\"\"]],[false,{\".fa-amilia:before\":false},[\"content:\\\"\\uf36d\\\"\"]],[false,{\".fa-android:before\":false},[\"content:\\\"\\uf17b\\\"\"]],[false,{\".fa-angellist:before\":false},[\"content:\\\"\\uf209\\\"\"]],[false,{\".fa-angrycreative:before\":false},[\"content:\\\"\\uf36e\\\"\"]],[false,{\".fa-angular:before\":false},[\"content:\\\"\\uf420\\\"\"]],[false,{\".fa-app-store:before\":false},[\"content:\\\"\\uf36f\\\"\"]],[false,{\".fa-app-store-ios:before\":false},[\"content:\\\"\\uf370\\\"\"]],[false,{\".fa-apper:before\":false},[\"content:\\\"\\uf371\\\"\"]],[false,{\".fa-apple:before\":false},[\"content:\\\"\\uf179\\\"\"]],[false,{\".fa-apple-pay:before\":false},[\"content:\\\"\\uf415\\\"\"]],[false,{\".fa-artstation:before\":false},[\"content:\\\"\\uf77a\\\"\"]],[false,{\".fa-asymmetrik:before\":false},[\"content:\\\"\\uf372\\\"\"]],[false,{\".fa-atlassian:before\":false},[\"content:\\\"\\uf77b\\\"\"]],[false,{\".fa-audible:before\":false},[\"content:\\\"\\uf373\\\"\"]],[false,{\".fa-autoprefixer:before\":false},[\"content:\\\"\\uf41c\\\"\"]],[false,{\".fa-avianex:before\":false},[\"content:\\\"\\uf374\\\"\"]],[false,{\".fa-aviato:before\":false},[\"content:\\\"\\uf421\\\"\"]],[false,{\".fa-aws:before\":false},[\"content:\\\"\\uf375\\\"\"]],[false,{\".fa-bandcamp:before\":false},[\"content:\\\"\\uf2d5\\\"\"]],[false,{\".fa-battle-net:before\":false},[\"content:\\\"\\uf835\\\"\"]],[false,{\".fa-behance:before\":false},[\"content:\\\"\\uf1b4\\\"\"]],[false,{\".fa-behance-square:before\":false},[\"content:\\\"\\uf1b5\\\"\"]],[false,{\".fa-bilibili:before\":false},[\"content:\\\"\\ue3d9\\\"\"]],[false,{\".fa-bimobject:before\":false},[\"content:\\\"\\uf378\\\"\"]],[false,{\".fa-bitbucket:before\":false},[\"content:\\\"\\uf171\\\"\"]],[false,{\".fa-bitcoin:before\":false},[\"content:\\\"\\uf379\\\"\"]],[false,{\".fa-bity:before\":false},[\"content:\\\"\\uf37a\\\"\"]],[false,{\".fa-black-tie:before\":false},[\"content:\\\"\\uf27e\\\"\"]],[false,{\".fa-blackberry:before\":false},[\"content:\\\"\\uf37b\\\"\"]],[false,{\".fa-blogger:before\":false},[\"content:\\\"\\uf37c\\\"\"]],[false,{\".fa-blogger-b:before\":false},[\"content:\\\"\\uf37d\\\"\"]],[false,{\".fa-bluetooth:before\":false},[\"content:\\\"\\uf293\\\"\"]],[false,{\".fa-bluetooth-b:before\":false},[\"content:\\\"\\uf294\\\"\"]],[false,{\".fa-bootstrap:before\":false},[\"content:\\\"\\uf836\\\"\"]],[false,{\".fa-bots:before\":false},[\"content:\\\"\\ue340\\\"\"]],[false,{\".fa-btc:before\":false},[\"content:\\\"\\uf15a\\\"\"]],[false,{\".fa-buffer:before\":false},[\"content:\\\"\\uf837\\\"\"]],[false,{\".fa-buromobelexperte:before\":false},[\"content:\\\"\\uf37f\\\"\"]],[false,{\".fa-buy-n-large:before\":false},[\"content:\\\"\\uf8a6\\\"\"]],[false,{\".fa-buysellads:before\":false},[\"content:\\\"\\uf20d\\\"\"]],[false,{\".fa-canadian-maple-leaf:before\":false},[\"content:\\\"\\uf785\\\"\"]],[false,{\".fa-cc-amazon-pay:before\":false},[\"content:\\\"\\uf42d\\\"\"]],[false,{\".fa-cc-amex:before\":false},[\"content:\\\"\\uf1f3\\\"\"]],[false,{\".fa-cc-apple-pay:before\":false},[\"content:\\\"\\uf416\\\"\"]],[false,{\".fa-cc-diners-club:before\":false},[\"content:\\\"\\uf24c\\\"\"]],[false,{\".fa-cc-discover:before\":false},[\"content:\\\"\\uf1f2\\\"\"]],[false,{\".fa-cc-jcb:before\":false},[\"content:\\\"\\uf24b\\\"\"]],[false,{\".fa-cc-mastercard:before\":false},[\"content:\\\"\\uf1f1\\\"\"]],[false,{\".fa-cc-paypal:before\":false},[\"content:\\\"\\uf1f4\\\"\"]],[false,{\".fa-cc-stripe:before\":false},[\"content:\\\"\\uf1f5\\\"\"]],[false,{\".fa-cc-visa:before\":false},[\"content:\\\"\\uf1f0\\\"\"]],[false,{\".fa-centercode:before\":false},[\"content:\\\"\\uf380\\\"\"]],[false,{\".fa-centos:before\":false},[\"content:\\\"\\uf789\\\"\"]],[false,{\".fa-chrome:before\":false},[\"content:\\\"\\uf268\\\"\"]],[false,{\".fa-chromecast:before\":false},[\"content:\\\"\\uf838\\\"\"]],[false,{\".fa-cloudflare:before\":false},[\"content:\\\"\\ue07d\\\"\"]],[false,{\".fa-cloudscale:before\":false},[\"content:\\\"\\uf383\\\"\"]],[false,{\".fa-cloudsmith:before\":false},[\"content:\\\"\\uf384\\\"\"]],[false,{\".fa-cloudversify:before\":false},[\"content:\\\"\\uf385\\\"\"]],[false,{\".fa-cmplid:before\":false},[\"content:\\\"\\ue360\\\"\"]],[false,{\".fa-codepen:before\":false},[\"content:\\\"\\uf1cb\\\"\"]],[false,{\".fa-codiepie:before\":false},[\"content:\\\"\\uf284\\\"\"]],[false,{\".fa-confluence:before\":false},[\"content:\\\"\\uf78d\\\"\"]],[false,{\".fa-connectdevelop:before\":false},[\"content:\\\"\\uf20e\\\"\"]],[false,{\".fa-contao:before\":false},[\"content:\\\"\\uf26d\\\"\"]],[false,{\".fa-cotton-bureau:before\":false},[\"content:\\\"\\uf89e\\\"\"]],[false,{\".fa-cpanel:before\":false},[\"content:\\\"\\uf388\\\"\"]],[false,{\".fa-creative-commons:before\":false},[\"content:\\\"\\uf25e\\\"\"]],[false,{\".fa-creative-commons-by:before\":false},[\"content:\\\"\\uf4e7\\\"\"]],[false,{\".fa-creative-commons-nc:before\":false},[\"content:\\\"\\uf4e8\\\"\"]],[false,{\".fa-creative-commons-nc-eu:before\":false},[\"content:\\\"\\uf4e9\\\"\"]],[false,{\".fa-creative-commons-nc-jp:before\":false},[\"content:\\\"\\uf4ea\\\"\"]],[false,{\".fa-creative-commons-nd:before\":false},[\"content:\\\"\\uf4eb\\\"\"]],[false,{\".fa-creative-commons-pd:before\":false},[\"content:\\\"\\uf4ec\\\"\"]],[false,{\".fa-creative-commons-pd-alt:before\":false},[\"content:\\\"\\uf4ed\\\"\"]],[false,{\".fa-creative-commons-remix:before\":false},[\"content:\\\"\\uf4ee\\\"\"]],[false,{\".fa-creative-commons-sa:before\":false},[\"content:\\\"\\uf4ef\\\"\"]],[false,{\".fa-creative-commons-sampling:before\":false},[\"content:\\\"\\uf4f0\\\"\"]],[false,{\".fa-creative-commons-sampling-plus:before\":false},[\"content:\\\"\\uf4f1\\\"\"]],[false,{\".fa-creative-commons-share:before\":false},[\"content:\\\"\\uf4f2\\\"\"]],[false,{\".fa-creative-commons-zero:before\":false},[\"content:\\\"\\uf4f3\\\"\"]],[false,{\".fa-critical-role:before\":false},[\"content:\\\"\\uf6c9\\\"\"]],[false,{\".fa-css3:before\":false},[\"content:\\\"\\uf13c\\\"\"]],[false,{\".fa-css3-alt:before\":false},[\"content:\\\"\\uf38b\\\"\"]],[false,{\".fa-cuttlefish:before\":false},[\"content:\\\"\\uf38c\\\"\"]],[false,{\".fa-d-and-d:before\":false},[\"content:\\\"\\uf38d\\\"\"]],[false,{\".fa-d-and-d-beyond:before\":false},[\"content:\\\"\\uf6ca\\\"\"]],[false,{\".fa-dailymotion:before\":false},[\"content:\\\"\\ue052\\\"\"]],[false,{\".fa-dashcube:before\":false},[\"content:\\\"\\uf210\\\"\"]],[false,{\".fa-deezer:before\":false},[\"content:\\\"\\ue077\\\"\"]],[false,{\".fa-delicious:before\":false},[\"content:\\\"\\uf1a5\\\"\"]],[false,{\".fa-deploydog:before\":false},[\"content:\\\"\\uf38e\\\"\"]],[false,{\".fa-deskpro:before\":false},[\"content:\\\"\\uf38f\\\"\"]],[false,{\".fa-dev:before\":false},[\"content:\\\"\\uf6cc\\\"\"]],[false,{\".fa-deviantart:before\":false},[\"content:\\\"\\uf1bd\\\"\"]],[false,{\".fa-dhl:before\":false},[\"content:\\\"\\uf790\\\"\"]],[false,{\".fa-diaspora:before\":false},[\"content:\\\"\\uf791\\\"\"]],[false,{\".fa-digg:before\":false},[\"content:\\\"\\uf1a6\\\"\"]],[false,{\".fa-digital-ocean:before\":false},[\"content:\\\"\\uf391\\\"\"]],[false,{\".fa-discord:before\":false},[\"content:\\\"\\uf392\\\"\"]],[false,{\".fa-discourse:before\":false},[\"content:\\\"\\uf393\\\"\"]],[false,{\".fa-dochub:before\":false},[\"content:\\\"\\uf394\\\"\"]],[false,{\".fa-docker:before\":false},[\"content:\\\"\\uf395\\\"\"]],[false,{\".fa-draft2digital:before\":false},[\"content:\\\"\\uf396\\\"\"]],[false,{\".fa-dribbble:before\":false},[\"content:\\\"\\uf17d\\\"\"]],[false,{\".fa-dribbble-square:before\":false},[\"content:\\\"\\uf397\\\"\"]],[false,{\".fa-dropbox:before\":false},[\"content:\\\"\\uf16b\\\"\"]],[false,{\".fa-drupal:before\":false},[\"content:\\\"\\uf1a9\\\"\"]],[false,{\".fa-dyalog:before\":false},[\"content:\\\"\\uf399\\\"\"]],[false,{\".fa-earlybirds:before\":false},[\"content:\\\"\\uf39a\\\"\"]],[false,{\".fa-ebay:before\":false},[\"content:\\\"\\uf4f4\\\"\"]],[false,{\".fa-edge:before\":false},[\"content:\\\"\\uf282\\\"\"]],[false,{\".fa-edge-legacy:before\":false},[\"content:\\\"\\ue078\\\"\"]],[false,{\".fa-elementor:before\":false},[\"content:\\\"\\uf430\\\"\"]],[false,{\".fa-ello:before\":false},[\"content:\\\"\\uf5f1\\\"\"]],[false,{\".fa-ember:before\":false},[\"content:\\\"\\uf423\\\"\"]],[false,{\".fa-empire:before\":false},[\"content:\\\"\\uf1d1\\\"\"]],[false,{\".fa-envira:before\":false},[\"content:\\\"\\uf299\\\"\"]],[false,{\".fa-erlang:before\":false},[\"content:\\\"\\uf39d\\\"\"]],[false,{\".fa-ethereum:before\":false},[\"content:\\\"\\uf42e\\\"\"]],[false,{\".fa-etsy:before\":false},[\"content:\\\"\\uf2d7\\\"\"]],[false,{\".fa-evernote:before\":false},[\"content:\\\"\\uf839\\\"\"]],[false,{\".fa-expeditedssl:before\":false},[\"content:\\\"\\uf23e\\\"\"]],[false,{\".fa-facebook:before\":false},[\"content:\\\"\\uf09a\\\"\"]],[false,{\".fa-facebook-f:before\":false},[\"content:\\\"\\uf39e\\\"\"]],[false,{\".fa-facebook-messenger:before\":false},[\"content:\\\"\\uf39f\\\"\"]],[false,{\".fa-facebook-square:before\":false},[\"content:\\\"\\uf082\\\"\"]],[false,{\".fa-fantasy-flight-games:before\":false},[\"content:\\\"\\uf6dc\\\"\"]],[false,{\".fa-fedex:before\":false},[\"content:\\\"\\uf797\\\"\"]],[false,{\".fa-fedora:before\":false},[\"content:\\\"\\uf798\\\"\"]],[false,{\".fa-figma:before\":false},[\"content:\\\"\\uf799\\\"\"]],[false,{\".fa-firefox:before\":false},[\"content:\\\"\\uf269\\\"\"]],[false,{\".fa-firefox-browser:before\":false},[\"content:\\\"\\ue007\\\"\"]],[false,{\".fa-first-order:before\":false},[\"content:\\\"\\uf2b0\\\"\"]],[false,{\".fa-first-order-alt:before\":false},[\"content:\\\"\\uf50a\\\"\"]],[false,{\".fa-firstdraft:before\":false},[\"content:\\\"\\uf3a1\\\"\"]],[false,{\".fa-flickr:before\":false},[\"content:\\\"\\uf16e\\\"\"]],[false,{\".fa-flipboard:before\":false},[\"content:\\\"\\uf44d\\\"\"]],[false,{\".fa-fly:before\":false},[\"content:\\\"\\uf417\\\"\"]],[false,{\".fa-font-awesome-flag:before\":false,\".fa-font-awesome-logo-full:before\":false,\".fa-font-awesome:before\":false},[\"content:\\\"\\uf2b4\\\"\"]],[false,{\".fa-fonticons:before\":false},[\"content:\\\"\\uf280\\\"\"]],[false,{\".fa-fonticons-fi:before\":false},[\"content:\\\"\\uf3a2\\\"\"]],[false,{\".fa-fort-awesome:before\":false},[\"content:\\\"\\uf286\\\"\"]],[false,{\".fa-fort-awesome-alt:before\":false},[\"content:\\\"\\uf3a3\\\"\"]],[false,{\".fa-forumbee:before\":false},[\"content:\\\"\\uf211\\\"\"]],[false,{\".fa-foursquare:before\":false},[\"content:\\\"\\uf180\\\"\"]],[false,{\".fa-free-code-camp:before\":false},[\"content:\\\"\\uf2c5\\\"\"]],[false,{\".fa-freebsd:before\":false},[\"content:\\\"\\uf3a4\\\"\"]],[false,{\".fa-fulcrum:before\":false},[\"content:\\\"\\uf50b\\\"\"]],[false,{\".fa-galactic-republic:before\":false},[\"content:\\\"\\uf50c\\\"\"]],[false,{\".fa-galactic-senate:before\":false},[\"content:\\\"\\uf50d\\\"\"]],[false,{\".fa-get-pocket:before\":false},[\"content:\\\"\\uf265\\\"\"]],[false,{\".fa-gg:before\":false},[\"content:\\\"\\uf260\\\"\"]],[false,{\".fa-gg-circle:before\":false},[\"content:\\\"\\uf261\\\"\"]],[false,{\".fa-git:before\":false},[\"content:\\\"\\uf1d3\\\"\"]],[false,{\".fa-git-alt:before\":false},[\"content:\\\"\\uf841\\\"\"]],[false,{\".fa-git-square:before\":false},[\"content:\\\"\\uf1d2\\\"\"]],[false,{\".fa-github:before\":false},[\"content:\\\"\\uf09b\\\"\"]],[false,{\".fa-github-alt:before\":false},[\"content:\\\"\\uf113\\\"\"]],[false,{\".fa-github-square:before\":false},[\"content:\\\"\\uf092\\\"\"]],[false,{\".fa-gitkraken:before\":false},[\"content:\\\"\\uf3a6\\\"\"]],[false,{\".fa-gitlab:before\":false},[\"content:\\\"\\uf296\\\"\"]],[false,{\".fa-gitter:before\":false},[\"content:\\\"\\uf426\\\"\"]],[false,{\".fa-glide:before\":false},[\"content:\\\"\\uf2a5\\\"\"]],[false,{\".fa-glide-g:before\":false},[\"content:\\\"\\uf2a6\\\"\"]],[false,{\".fa-gofore:before\":false},[\"content:\\\"\\uf3a7\\\"\"]],[false,{\".fa-golang:before\":false},[\"content:\\\"\\ue40f\\\"\"]],[false,{\".fa-goodreads:before\":false},[\"content:\\\"\\uf3a8\\\"\"]],[false,{\".fa-goodreads-g:before\":false},[\"content:\\\"\\uf3a9\\\"\"]],[false,{\".fa-google:before\":false},[\"content:\\\"\\uf1a0\\\"\"]],[false,{\".fa-google-drive:before\":false},[\"content:\\\"\\uf3aa\\\"\"]],[false,{\".fa-google-pay:before\":false},[\"content:\\\"\\ue079\\\"\"]],[false,{\".fa-google-play:before\":false},[\"content:\\\"\\uf3ab\\\"\"]],[false,{\".fa-google-plus:before\":false},[\"content:\\\"\\uf2b3\\\"\"]],[false,{\".fa-google-plus-g:before\":false},[\"content:\\\"\\uf0d5\\\"\"]],[false,{\".fa-google-plus-square:before\":false},[\"content:\\\"\\uf0d4\\\"\"]],[false,{\".fa-google-wallet:before\":false},[\"content:\\\"\\uf1ee\\\"\"]],[false,{\".fa-gratipay:before\":false},[\"content:\\\"\\uf184\\\"\"]],[false,{\".fa-grav:before\":false},[\"content:\\\"\\uf2d6\\\"\"]],[false,{\".fa-gripfire:before\":false},[\"content:\\\"\\uf3ac\\\"\"]],[false,{\".fa-grunt:before\":false},[\"content:\\\"\\uf3ad\\\"\"]],[false,{\".fa-guilded:before\":false},[\"content:\\\"\\ue07e\\\"\"]],[false,{\".fa-gulp:before\":false},[\"content:\\\"\\uf3ae\\\"\"]],[false,{\".fa-hacker-news:before\":false},[\"content:\\\"\\uf1d4\\\"\"]],[false,{\".fa-hacker-news-square:before\":false},[\"content:\\\"\\uf3af\\\"\"]],[false,{\".fa-hackerrank:before\":false},[\"content:\\\"\\uf5f7\\\"\"]],[false,{\".fa-hashnode:before\":false},[\"content:\\\"\\ue499\\\"\"]],[false,{\".fa-hips:before\":false},[\"content:\\\"\\uf452\\\"\"]],[false,{\".fa-hire-a-helper:before\":false},[\"content:\\\"\\uf3b0\\\"\"]],[false,{\".fa-hive:before\":false},[\"content:\\\"\\ue07f\\\"\"]],[false,{\".fa-hooli:before\":false},[\"content:\\\"\\uf427\\\"\"]],[false,{\".fa-hornbill:before\":false},[\"content:\\\"\\uf592\\\"\"]],[false,{\".fa-hotjar:before\":false},[\"content:\\\"\\uf3b1\\\"\"]],[false,{\".fa-houzz:before\":false},[\"content:\\\"\\uf27c\\\"\"]],[false,{\".fa-html5:before\":false},[\"content:\\\"\\uf13b\\\"\"]],[false,{\".fa-hubspot:before\":false},[\"content:\\\"\\uf3b2\\\"\"]],[false,{\".fa-ideal:before\":false},[\"content:\\\"\\ue013\\\"\"]],[false,{\".fa-imdb:before\":false},[\"content:\\\"\\uf2d8\\\"\"]],[false,{\".fa-instagram:before\":false},[\"content:\\\"\\uf16d\\\"\"]],[false,{\".fa-instagram-square:before\":false},[\"content:\\\"\\ue055\\\"\"]],[false,{\".fa-instalod:before\":false},[\"content:\\\"\\ue081\\\"\"]],[false,{\".fa-intercom:before\":false},[\"content:\\\"\\uf7af\\\"\"]],[false,{\".fa-internet-explorer:before\":false},[\"content:\\\"\\uf26b\\\"\"]],[false,{\".fa-invision:before\":false},[\"content:\\\"\\uf7b0\\\"\"]],[false,{\".fa-ioxhost:before\":false},[\"content:\\\"\\uf208\\\"\"]],[false,{\".fa-itch-io:before\":false},[\"content:\\\"\\uf83a\\\"\"]],[false,{\".fa-itunes:before\":false},[\"content:\\\"\\uf3b4\\\"\"]],[false,{\".fa-itunes-note:before\":false},[\"content:\\\"\\uf3b5\\\"\"]],[false,{\".fa-java:before\":false},[\"content:\\\"\\uf4e4\\\"\"]],[false,{\".fa-jedi-order:before\":false},[\"content:\\\"\\uf50e\\\"\"]],[false,{\".fa-jenkins:before\":false},[\"content:\\\"\\uf3b6\\\"\"]],[false,{\".fa-jira:before\":false},[\"content:\\\"\\uf7b1\\\"\"]],[false,{\".fa-joget:before\":false},[\"content:\\\"\\uf3b7\\\"\"]],[false,{\".fa-joomla:before\":false},[\"content:\\\"\\uf1aa\\\"\"]],[false,{\".fa-js:before\":false},[\"content:\\\"\\uf3b8\\\"\"]],[false,{\".fa-js-square:before\":false},[\"content:\\\"\\uf3b9\\\"\"]],[false,{\".fa-jsfiddle:before\":false},[\"content:\\\"\\uf1cc\\\"\"]],[false,{\".fa-kaggle:before\":false},[\"content:\\\"\\uf5fa\\\"\"]],[false,{\".fa-keybase:before\":false},[\"content:\\\"\\uf4f5\\\"\"]],[false,{\".fa-keycdn:before\":false},[\"content:\\\"\\uf3ba\\\"\"]],[false,{\".fa-kickstarter:before\":false},[\"content:\\\"\\uf3bb\\\"\"]],[false,{\".fa-kickstarter-k:before\":false},[\"content:\\\"\\uf3bc\\\"\"]],[false,{\".fa-korvue:before\":false},[\"content:\\\"\\uf42f\\\"\"]],[false,{\".fa-laravel:before\":false},[\"content:\\\"\\uf3bd\\\"\"]],[false,{\".fa-lastfm:before\":false},[\"content:\\\"\\uf202\\\"\"]],[false,{\".fa-lastfm-square:before\":false},[\"content:\\\"\\uf203\\\"\"]],[false,{\".fa-leanpub:before\":false},[\"content:\\\"\\uf212\\\"\"]],[false,{\".fa-less:before\":false},[\"content:\\\"\\uf41d\\\"\"]],[false,{\".fa-line:before\":false},[\"content:\\\"\\uf3c0\\\"\"]],[false,{\".fa-linkedin:before\":false},[\"content:\\\"\\uf08c\\\"\"]],[false,{\".fa-linkedin-in:before\":false},[\"content:\\\"\\uf0e1\\\"\"]],[false,{\".fa-linode:before\":false},[\"content:\\\"\\uf2b8\\\"\"]],[false,{\".fa-linux:before\":false},[\"content:\\\"\\uf17c\\\"\"]],[false,{\".fa-lyft:before\":false},[\"content:\\\"\\uf3c3\\\"\"]],[false,{\".fa-magento:before\":false},[\"content:\\\"\\uf3c4\\\"\"]],[false,{\".fa-mailchimp:before\":false},[\"content:\\\"\\uf59e\\\"\"]],[false,{\".fa-mandalorian:before\":false},[\"content:\\\"\\uf50f\\\"\"]],[false,{\".fa-markdown:before\":false},[\"content:\\\"\\uf60f\\\"\"]],[false,{\".fa-mastodon:before\":false},[\"content:\\\"\\uf4f6\\\"\"]],[false,{\".fa-maxcdn:before\":false},[\"content:\\\"\\uf136\\\"\"]],[false,{\".fa-mdb:before\":false},[\"content:\\\"\\uf8ca\\\"\"]],[false,{\".fa-medapps:before\":false},[\"content:\\\"\\uf3c6\\\"\"]],[false,{\".fa-medium-m:before\":false,\".fa-medium:before\":false},[\"content:\\\"\\uf23a\\\"\"]],[false,{\".fa-medrt:before\":false},[\"content:\\\"\\uf3c8\\\"\"]],[false,{\".fa-meetup:before\":false},[\"content:\\\"\\uf2e0\\\"\"]],[false,{\".fa-megaport:before\":false},[\"content:\\\"\\uf5a3\\\"\"]],[false,{\".fa-mendeley:before\":false},[\"content:\\\"\\uf7b3\\\"\"]],[false,{\".fa-microblog:before\":false},[\"content:\\\"\\ue01a\\\"\"]],[false,{\".fa-microsoft:before\":false},[\"content:\\\"\\uf3ca\\\"\"]],[false,{\".fa-mix:before\":false},[\"content:\\\"\\uf3cb\\\"\"]],[false,{\".fa-mixcloud:before\":false},[\"content:\\\"\\uf289\\\"\"]],[false,{\".fa-mixer:before\":false},[\"content:\\\"\\ue056\\\"\"]],[false,{\".fa-mizuni:before\":false},[\"content:\\\"\\uf3cc\\\"\"]],[false,{\".fa-modx:before\":false},[\"content:\\\"\\uf285\\\"\"]],[false,{\".fa-monero:before\":false},[\"content:\\\"\\uf3d0\\\"\"]],[false,{\".fa-napster:before\":false},[\"content:\\\"\\uf3d2\\\"\"]],[false,{\".fa-neos:before\":false},[\"content:\\\"\\uf612\\\"\"]],[false,{\".fa-nfc-directional:before\":false},[\"content:\\\"\\ue530\\\"\"]],[false,{\".fa-nfc-symbol:before\":false},[\"content:\\\"\\ue531\\\"\"]],[false,{\".fa-nimblr:before\":false},[\"content:\\\"\\uf5a8\\\"\"]],[false,{\".fa-node:before\":false},[\"content:\\\"\\uf419\\\"\"]],[false,{\".fa-node-js:before\":false},[\"content:\\\"\\uf3d3\\\"\"]],[false,{\".fa-npm:before\":false},[\"content:\\\"\\uf3d4\\\"\"]],[false,{\".fa-ns8:before\":false},[\"content:\\\"\\uf3d5\\\"\"]],[false,{\".fa-nutritionix:before\":false},[\"content:\\\"\\uf3d6\\\"\"]],[false,{\".fa-octopus-deploy:before\":false},[\"content:\\\"\\ue082\\\"\"]],[false,{\".fa-odnoklassniki:before\":false},[\"content:\\\"\\uf263\\\"\"]],[false,{\".fa-odnoklassniki-square:before\":false},[\"content:\\\"\\uf264\\\"\"]],[false,{\".fa-old-republic:before\":false},[\"content:\\\"\\uf510\\\"\"]],[false,{\".fa-opencart:before\":false},[\"content:\\\"\\uf23d\\\"\"]],[false,{\".fa-openid:before\":false},[\"content:\\\"\\uf19b\\\"\"]],[false,{\".fa-opera:before\":false},[\"content:\\\"\\uf26a\\\"\"]],[false,{\".fa-optin-monster:before\":false},[\"content:\\\"\\uf23c\\\"\"]],[false,{\".fa-orcid:before\":false},[\"content:\\\"\\uf8d2\\\"\"]],[false,{\".fa-osi:before\":false},[\"content:\\\"\\uf41a\\\"\"]],[false,{\".fa-padlet:before\":false},[\"content:\\\"\\ue4a0\\\"\"]],[false,{\".fa-page4:before\":false},[\"content:\\\"\\uf3d7\\\"\"]],[false,{\".fa-pagelines:before\":false},[\"content:\\\"\\uf18c\\\"\"]],[false,{\".fa-palfed:before\":false},[\"content:\\\"\\uf3d8\\\"\"]],[false,{\".fa-patreon:before\":false},[\"content:\\\"\\uf3d9\\\"\"]],[false,{\".fa-paypal:before\":false},[\"content:\\\"\\uf1ed\\\"\"]],[false,{\".fa-perbyte:before\":false},[\"content:\\\"\\ue083\\\"\"]],[false,{\".fa-periscope:before\":false},[\"content:\\\"\\uf3da\\\"\"]],[false,{\".fa-phabricator:before\":false},[\"content:\\\"\\uf3db\\\"\"]],[false,{\".fa-phoenix-framework:before\":false},[\"content:\\\"\\uf3dc\\\"\"]],[false,{\".fa-phoenix-squadron:before\":false},[\"content:\\\"\\uf511\\\"\"]],[false,{\".fa-php:before\":false},[\"content:\\\"\\uf457\\\"\"]],[false,{\".fa-pied-piper:before\":false},[\"content:\\\"\\uf2ae\\\"\"]],[false,{\".fa-pied-piper-alt:before\":false},[\"content:\\\"\\uf1a8\\\"\"]],[false,{\".fa-pied-piper-hat:before\":false},[\"content:\\\"\\uf4e5\\\"\"]],[false,{\".fa-pied-piper-pp:before\":false},[\"content:\\\"\\uf1a7\\\"\"]],[false,{\".fa-pied-piper-square:before\":false},[\"content:\\\"\\ue01e\\\"\"]],[false,{\".fa-pinterest:before\":false},[\"content:\\\"\\uf0d2\\\"\"]],[false,{\".fa-pinterest-p:before\":false},[\"content:\\\"\\uf231\\\"\"]],[false,{\".fa-pinterest-square:before\":false},[\"content:\\\"\\uf0d3\\\"\"]],[false,{\".fa-pix:before\":false},[\"content:\\\"\\ue43a\\\"\"]],[false,{\".fa-playstation:before\":false},[\"content:\\\"\\uf3df\\\"\"]],[false,{\".fa-product-hunt:before\":false},[\"content:\\\"\\uf288\\\"\"]],[false,{\".fa-pushed:before\":false},[\"content:\\\"\\uf3e1\\\"\"]],[false,{\".fa-python:before\":false},[\"content:\\\"\\uf3e2\\\"\"]],[false,{\".fa-qq:before\":false},[\"content:\\\"\\uf1d6\\\"\"]],[false,{\".fa-quinscape:before\":false},[\"content:\\\"\\uf459\\\"\"]],[false,{\".fa-quora:before\":false},[\"content:\\\"\\uf2c4\\\"\"]],[false,{\".fa-r-project:before\":false},[\"content:\\\"\\uf4f7\\\"\"]],[false,{\".fa-raspberry-pi:before\":false},[\"content:\\\"\\uf7bb\\\"\"]],[false,{\".fa-ravelry:before\":false},[\"content:\\\"\\uf2d9\\\"\"]],[false,{\".fa-react:before\":false},[\"content:\\\"\\uf41b\\\"\"]],[false,{\".fa-reacteurope:before\":false},[\"content:\\\"\\uf75d\\\"\"]],[false,{\".fa-readme:before\":false},[\"content:\\\"\\uf4d5\\\"\"]],[false,{\".fa-rebel:before\":false},[\"content:\\\"\\uf1d0\\\"\"]],[false,{\".fa-red-river:before\":false},[\"content:\\\"\\uf3e3\\\"\"]],[false,{\".fa-reddit:before\":false},[\"content:\\\"\\uf1a1\\\"\"]],[false,{\".fa-reddit-alien:before\":false},[\"content:\\\"\\uf281\\\"\"]],[false,{\".fa-reddit-square:before\":false},[\"content:\\\"\\uf1a2\\\"\"]],[false,{\".fa-redhat:before\":false},[\"content:\\\"\\uf7bc\\\"\"]],[false,{\".fa-renren:before\":false},[\"content:\\\"\\uf18b\\\"\"]],[false,{\".fa-replyd:before\":false},[\"content:\\\"\\uf3e6\\\"\"]],[false,{\".fa-researchgate:before\":false},[\"content:\\\"\\uf4f8\\\"\"]],[false,{\".fa-resolving:before\":false},[\"content:\\\"\\uf3e7\\\"\"]],[false,{\".fa-rev:before\":false},[\"content:\\\"\\uf5b2\\\"\"]],[false,{\".fa-rocketchat:before\":false},[\"content:\\\"\\uf3e8\\\"\"]],[false,{\".fa-rockrms:before\":false},[\"content:\\\"\\uf3e9\\\"\"]],[false,{\".fa-rust:before\":false},[\"content:\\\"\\ue07a\\\"\"]],[false,{\".fa-safari:before\":false},[\"content:\\\"\\uf267\\\"\"]],[false,{\".fa-salesforce:before\":false},[\"content:\\\"\\uf83b\\\"\"]],[false,{\".fa-sass:before\":false},[\"content:\\\"\\uf41e\\\"\"]],[false,{\".fa-schlix:before\":false},[\"content:\\\"\\uf3ea\\\"\"]],[false,{\".fa-screenpal:before\":false},[\"content:\\\"\\ue570\\\"\"]],[false,{\".fa-scribd:before\":false},[\"content:\\\"\\uf28a\\\"\"]],[false,{\".fa-searchengin:before\":false},[\"content:\\\"\\uf3eb\\\"\"]],[false,{\".fa-sellcast:before\":false},[\"content:\\\"\\uf2da\\\"\"]],[false,{\".fa-sellsy:before\":false},[\"content:\\\"\\uf213\\\"\"]],[false,{\".fa-servicestack:before\":false},[\"content:\\\"\\uf3ec\\\"\"]],[false,{\".fa-shirtsinbulk:before\":false},[\"content:\\\"\\uf214\\\"\"]],[false,{\".fa-shopify:before\":false},[\"content:\\\"\\ue057\\\"\"]],[false,{\".fa-shopware:before\":false},[\"content:\\\"\\uf5b5\\\"\"]],[false,{\".fa-simplybuilt:before\":false},[\"content:\\\"\\uf215\\\"\"]],[false,{\".fa-sistrix:before\":false},[\"content:\\\"\\uf3ee\\\"\"]],[false,{\".fa-sith:before\":false},[\"content:\\\"\\uf512\\\"\"]],[false,{\".fa-sitrox:before\":false},[\"content:\\\"\\ue44a\\\"\"]],[false,{\".fa-sketch:before\":false},[\"content:\\\"\\uf7c6\\\"\"]],[false,{\".fa-skyatlas:before\":false},[\"content:\\\"\\uf216\\\"\"]],[false,{\".fa-skype:before\":false},[\"content:\\\"\\uf17e\\\"\"]],[false,{\".fa-slack-hash:before\":false,\".fa-slack:before\":false},[\"content:\\\"\\uf198\\\"\"]],[false,{\".fa-slideshare:before\":false},[\"content:\\\"\\uf1e7\\\"\"]],[false,{\".fa-snapchat-ghost:before\":false,\".fa-snapchat:before\":false},[\"content:\\\"\\uf2ab\\\"\"]],[false,{\".fa-snapchat-square:before\":false},[\"content:\\\"\\uf2ad\\\"\"]],[false,{\".fa-soundcloud:before\":false},[\"content:\\\"\\uf1be\\\"\"]],[false,{\".fa-sourcetree:before\":false},[\"content:\\\"\\uf7d3\\\"\"]],[false,{\".fa-speakap:before\":false},[\"content:\\\"\\uf3f3\\\"\"]],[false,{\".fa-speaker-deck:before\":false},[\"content:\\\"\\uf83c\\\"\"]],[false,{\".fa-spotify:before\":false},[\"content:\\\"\\uf1bc\\\"\"]],[false,{\".fa-square-font-awesome:before\":false},[\"content:\\\"\\uf425\\\"\"]],[false,{\".fa-font-awesome-alt:before\":false,\".fa-square-font-awesome-stroke:before\":false},[\"content:\\\"\\uf35c\\\"\"]],[false,{\".fa-squarespace:before\":false},[\"content:\\\"\\uf5be\\\"\"]],[false,{\".fa-stack-exchange:before\":false},[\"content:\\\"\\uf18d\\\"\"]],[false,{\".fa-stack-overflow:before\":false},[\"content:\\\"\\uf16c\\\"\"]],[false,{\".fa-stackpath:before\":false},[\"content:\\\"\\uf842\\\"\"]],[false,{\".fa-staylinked:before\":false},[\"content:\\\"\\uf3f5\\\"\"]],[false,{\".fa-steam:before\":false},[\"content:\\\"\\uf1b6\\\"\"]],[false,{\".fa-steam-square:before\":false},[\"content:\\\"\\uf1b7\\\"\"]],[false,{\".fa-steam-symbol:before\":false},[\"content:\\\"\\uf3f6\\\"\"]],[false,{\".fa-sticker-mule:before\":false},[\"content:\\\"\\uf3f7\\\"\"]],[false,{\".fa-strava:before\":false},[\"content:\\\"\\uf428\\\"\"]],[false,{\".fa-stripe:before\":false},[\"content:\\\"\\uf429\\\"\"]],[false,{\".fa-stripe-s:before\":false},[\"content:\\\"\\uf42a\\\"\"]],[false,{\".fa-studiovinari:before\":false},[\"content:\\\"\\uf3f8\\\"\"]],[false,{\".fa-stumbleupon:before\":false},[\"content:\\\"\\uf1a4\\\"\"]],[false,{\".fa-stumbleupon-circle:before\":false},[\"content:\\\"\\uf1a3\\\"\"]],[false,{\".fa-superpowers:before\":false},[\"content:\\\"\\uf2dd\\\"\"]],[false,{\".fa-supple:before\":false},[\"content:\\\"\\uf3f9\\\"\"]],[false,{\".fa-suse:before\":false},[\"content:\\\"\\uf7d6\\\"\"]],[false,{\".fa-swift:before\":false},[\"content:\\\"\\uf8e1\\\"\"]],[false,{\".fa-symfony:before\":false},[\"content:\\\"\\uf83d\\\"\"]],[false,{\".fa-teamspeak:before\":false},[\"content:\\\"\\uf4f9\\\"\"]],[false,{\".fa-telegram-plane:before\":false,\".fa-telegram:before\":false},[\"content:\\\"\\uf2c6\\\"\"]],[false,{\".fa-tencent-weibo:before\":false},[\"content:\\\"\\uf1d5\\\"\"]],[false,{\".fa-the-red-yeti:before\":false},[\"content:\\\"\\uf69d\\\"\"]],[false,{\".fa-themeco:before\":false},[\"content:\\\"\\uf5c6\\\"\"]],[false,{\".fa-themeisle:before\":false},[\"content:\\\"\\uf2b2\\\"\"]],[false,{\".fa-think-peaks:before\":false},[\"content:\\\"\\uf731\\\"\"]],[false,{\".fa-tiktok:before\":false},[\"content:\\\"\\ue07b\\\"\"]],[false,{\".fa-trade-federation:before\":false},[\"content:\\\"\\uf513\\\"\"]],[false,{\".fa-trello:before\":false},[\"content:\\\"\\uf181\\\"\"]],[false,{\".fa-tumblr:before\":false},[\"content:\\\"\\uf173\\\"\"]],[false,{\".fa-tumblr-square:before\":false},[\"content:\\\"\\uf174\\\"\"]],[false,{\".fa-twitch:before\":false},[\"content:\\\"\\uf1e8\\\"\"]],[false,{\".fa-twitter:before\":false},[\"content:\\\"\\uf099\\\"\"]],[false,{\".fa-twitter-square:before\":false},[\"content:\\\"\\uf081\\\"\"]],[false,{\".fa-typo3:before\":false},[\"content:\\\"\\uf42b\\\"\"]],[false,{\".fa-uber:before\":false},[\"content:\\\"\\uf402\\\"\"]],[false,{\".fa-ubuntu:before\":false},[\"content:\\\"\\uf7df\\\"\"]],[false,{\".fa-uikit:before\":false},[\"content:\\\"\\uf403\\\"\"]],[false,{\".fa-umbraco:before\":false},[\"content:\\\"\\uf8e8\\\"\"]],[false,{\".fa-uncharted:before\":false},[\"content:\\\"\\ue084\\\"\"]],[false,{\".fa-uniregistry:before\":false},[\"content:\\\"\\uf404\\\"\"]],[false,{\".fa-unity:before\":false},[\"content:\\\"\\ue049\\\"\"]],[false,{\".fa-unsplash:before\":false},[\"content:\\\"\\ue07c\\\"\"]],[false,{\".fa-untappd:before\":false},[\"content:\\\"\\uf405\\\"\"]],[false,{\".fa-ups:before\":false},[\"content:\\\"\\uf7e0\\\"\"]],[false,{\".fa-usb:before\":false},[\"content:\\\"\\uf287\\\"\"]],[false,{\".fa-usps:before\":false},[\"content:\\\"\\uf7e1\\\"\"]],[false,{\".fa-ussunnah:before\":false},[\"content:\\\"\\uf407\\\"\"]],[false,{\".fa-vaadin:before\":false},[\"content:\\\"\\uf408\\\"\"]],[false,{\".fa-viacoin:before\":false},[\"content:\\\"\\uf237\\\"\"]],[false,{\".fa-viadeo:before\":false},[\"content:\\\"\\uf2a9\\\"\"]],[false,{\".fa-viadeo-square:before\":false},[\"content:\\\"\\uf2aa\\\"\"]],[false,{\".fa-viber:before\":false},[\"content:\\\"\\uf409\\\"\"]],[false,{\".fa-vimeo:before\":false},[\"content:\\\"\\uf40a\\\"\"]],[false,{\".fa-vimeo-square:before\":false},[\"content:\\\"\\uf194\\\"\"]],[false,{\".fa-vimeo-v:before\":false},[\"content:\\\"\\uf27d\\\"\"]],[false,{\".fa-vine:before\":false},[\"content:\\\"\\uf1ca\\\"\"]],[false,{\".fa-vk:before\":false},[\"content:\\\"\\uf189\\\"\"]],[false,{\".fa-vnv:before\":false},[\"content:\\\"\\uf40b\\\"\"]],[false,{\".fa-vuejs:before\":false},[\"content:\\\"\\uf41f\\\"\"]],[false,{\".fa-watchman-monitoring:before\":false},[\"content:\\\"\\ue087\\\"\"]],[false,{\".fa-waze:before\":false},[\"content:\\\"\\uf83f\\\"\"]],[false,{\".fa-weebly:before\":false},[\"content:\\\"\\uf5cc\\\"\"]],[false,{\".fa-weibo:before\":false},[\"content:\\\"\\uf18a\\\"\"]],[false,{\".fa-weixin:before\":false},[\"content:\\\"\\uf1d7\\\"\"]],[false,{\".fa-whatsapp:before\":false},[\"content:\\\"\\uf232\\\"\"]],[false,{\".fa-whatsapp-square:before\":false},[\"content:\\\"\\uf40c\\\"\"]],[false,{\".fa-whmcs:before\":false},[\"content:\\\"\\uf40d\\\"\"]],[false,{\".fa-wikipedia-w:before\":false},[\"content:\\\"\\uf266\\\"\"]],[false,{\".fa-windows:before\":false},[\"content:\\\"\\uf17a\\\"\"]],[false,{\".fa-wirsindhandwerk:before\":false,\".fa-wsh:before\":false},[\"content:\\\"\\ue2d0\\\"\"]],[false,{\".fa-wix:before\":false},[\"content:\\\"\\uf5cf\\\"\"]],[false,{\".fa-wizards-of-the-coast:before\":false},[\"content:\\\"\\uf730\\\"\"]],[false,{\".fa-wodu:before\":false},[\"content:\\\"\\ue088\\\"\"]],[false,{\".fa-wolf-pack-battalion:before\":false},[\"content:\\\"\\uf514\\\"\"]],[false,{\".fa-wordpress:before\":false},[\"content:\\\"\\uf19a\\\"\"]],[false,{\".fa-wordpress-simple:before\":false},[\"content:\\\"\\uf411\\\"\"]],[false,{\".fa-wpbeginner:before\":false},[\"content:\\\"\\uf297\\\"\"]],[false,{\".fa-wpexplorer:before\":false},[\"content:\\\"\\uf2de\\\"\"]],[false,{\".fa-wpforms:before\":false},[\"content:\\\"\\uf298\\\"\"]],[false,{\".fa-wpressr:before\":false},[\"content:\\\"\\uf3e4\\\"\"]],[false,{\".fa-xbox:before\":false},[\"content:\\\"\\uf412\\\"\"]],[false,{\".fa-xing:before\":false},[\"content:\\\"\\uf168\\\"\"]],[false,{\".fa-xing-square:before\":false},[\"content:\\\"\\uf169\\\"\"]],[false,{\".fa-y-combinator:before\":false},[\"content:\\\"\\uf23b\\\"\"]],[false,{\".fa-yahoo:before\":false},[\"content:\\\"\\uf19e\\\"\"]],[false,{\".fa-yammer:before\":false},[\"content:\\\"\\uf840\\\"\"]],[false,{\".fa-yandex:before\":false},[\"content:\\\"\\uf413\\\"\"]],[false,{\".fa-yandex-international:before\":false},[\"content:\\\"\\uf414\\\"\"]],[false,{\".fa-yarn:before\":false},[\"content:\\\"\\uf7e3\\\"\"]],[false,{\".fa-yelp:before\":false},[\"content:\\\"\\uf1e9\\\"\"]],[false,{\".fa-yoast:before\":false},[\"content:\\\"\\uf2b1\\\"\"]],[false,{\".fa-youtube:before\":false},[\"content:\\\"\\uf167\\\"\"]],[false,{\".fa-youtube-square:before\":false},[\"content:\\\"\\uf431\\\"\"]],[false,{\".fa-zhihu:before\":false},[\"content:\\\"\\uf63f\\\"\"]],[true,{\":host\":true,\":root\":true},[\"--fa-font-regular:normal 400 1em\\/1 \\\"Font Awesome 6 Free\\\"\"]],[true,\"@font-face{font-family:\\\"Font Awesome 6 Free\\\";font-style:normal;font-weight:400;font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\")}\"],[false,{\".fa-regular\":false,\".far\":false},[\"font-family:\\\"Font Awesome 6 Free\\\"\",\"font-weight:400\"]],[true,{\":host\":true,\":root\":true},[\"--fa-font-solid:normal 900 1em\\/1 \\\"Font Awesome 6 Free\\\"\"]],[true,\"@font-face{font-family:\\\"Font Awesome 6 Free\\\";font-style:normal;font-weight:900;font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\")}\"],[true,{\".fa-solid\":true,\".fas\":false},[\"font-family:\\\"Font Awesome 6 Free\\\"\",\"font-weight:900\"]],[true,\"@font-face{font-family:\\\"Font Awesome 5 Brands\\\";font-display:block;font-weight:400;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-display:block;font-weight:900;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-display:block;font-weight:400;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-v4compatibility.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-v4compatibility.ttf\\\") format(\\\"truetype\\\")}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":16466,\"final_size\":2468,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"f525e508f09233d1bbad77f319ca5b46\",\"parse_time\":0.25615501403808594,\"shake_time\":0.00017404556274414062,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,\"@font-face{font-family:swiper-icons;src:url(\\\"data:application\\/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj\\/\\/wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA\\/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu\\/j+W2+MnAzMYDAzaX6QjD6\\/4\\/\\/Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+\\/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg\\/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4\\/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9\\/w8UBfEMgLzE\\/\\/\\/\\/P\\/5\\/\\/f\\/V\\/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA\\/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP\\/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj\\/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB\\/yIY09An6AH2Bdu\\/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z\\/PEJ6YOB5hKh4dj3EvXhxPqH\\/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN\\/d\\/gczfEimrE\\/fs\\/bOuq29Zmn8tloORaXgZgGa78yO9\\/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i\\/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH\\/\\/wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv\\/H9ezGI6Z5XBAw8CBK\\/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow\\/P\\/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA\\\");font-weight:400;font-style:normal}\"],[true,{\":root\":true},[\"--swiper-theme-color:#007aff\"]],[false,{\".swiper\":false},[\"margin-left:auto\",\"margin-right:auto\",\"position:relative\",\"overflow:hidden\",\"list-style:none\",\"padding:0\",\"z-index:1\"]],[false,{\".swiper-vertical>.swiper-wrapper\":false},[\"flex-direction:column\"]],[false,{\".swiper-wrapper\":false},[\"position:relative\",\"width:100%\",\"height:100%\",\"z-index:1\",\"display:flex\",\"transition-property:transform\",\"box-sizing:content-box\"]],[false,{\".swiper-android .swiper-slide\":false,\".swiper-wrapper\":false},[\"transform:translate3d(0px,0,0)\"]],[false,{\".swiper-pointer-events\":false},[\"touch-action:pan-y\"]],[false,{\".swiper-pointer-events.swiper-vertical\":false},[\"touch-action:pan-x\"]],[false,{\".swiper-slide\":false},[\"flex-shrink:0\",\"width:100%\",\"height:100%\",\"position:relative\",\"transition-property:transform\"]],[false,{\".swiper-slide-invisible-blank\":false},[\"visibility:hidden\"]],[false,{\".swiper-autoheight\":false,\".swiper-autoheight .swiper-slide\":false},[\"height:auto\"]],[false,{\".swiper-autoheight .swiper-wrapper\":false},[\"align-items:flex-start\",\"transition-property:transform,height\"]],[false,{\".swiper-backface-hidden .swiper-slide\":false},[\"transform:translateZ(0)\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".swiper-3d\":false,\".swiper-3d.swiper-css-mode .swiper-wrapper\":false},[\"perspective:1200px\"]],[false,{\".swiper-3d .swiper-cube-shadow\":false,\".swiper-3d .swiper-slide\":false,\".swiper-3d .swiper-slide-shadow\":false,\".swiper-3d .swiper-slide-shadow-bottom\":false,\".swiper-3d .swiper-slide-shadow-left\":false,\".swiper-3d .swiper-slide-shadow-right\":false,\".swiper-3d .swiper-slide-shadow-top\":false,\".swiper-3d .swiper-wrapper\":false},[\"transform-style:preserve-3d\"]],[false,{\".swiper-3d .swiper-slide-shadow\":false,\".swiper-3d .swiper-slide-shadow-bottom\":false,\".swiper-3d .swiper-slide-shadow-left\":false,\".swiper-3d .swiper-slide-shadow-right\":false,\".swiper-3d .swiper-slide-shadow-top\":false},[\"position:absolute\",\"left:0\",\"top:0\",\"width:100%\",\"height:100%\",\"pointer-events:none\",\"z-index:10\"]],[false,{\".swiper-3d .swiper-slide-shadow\":false},[\"background:rgba(0,0,0,.15)\"]],[false,{\".swiper-3d .swiper-slide-shadow-left\":false},[\"background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-3d .swiper-slide-shadow-right\":false},[\"background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-3d .swiper-slide-shadow-top\":false},[\"background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-3d .swiper-slide-shadow-bottom\":false},[\"background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-css-mode>.swiper-wrapper\":false},[\"overflow:auto\",\"scrollbar-width:none\",\"-ms-overflow-style:none\"]],[false,{\".swiper-css-mode>.swiper-wrapper::-webkit-scrollbar\":false},[\"display:none\"]],[false,{\".swiper-css-mode>.swiper-wrapper>.swiper-slide\":false},[\"scroll-snap-align:start start\"]],[false,{\".swiper-horizontal.swiper-css-mode>.swiper-wrapper\":false},[\"scroll-snap-type:x mandatory\"]],[false,{\".swiper-vertical.swiper-css-mode>.swiper-wrapper\":false},[\"scroll-snap-type:y mandatory\"]],[false,{\".swiper-centered>.swiper-wrapper::before\":false},[\"content:\\\"\\\"\",\"flex-shrink:0\",\"order:9999\"]],[false,{\".swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child\":false},[\"margin-inline-start:var(--swiper-centered-offset-before)\"]],[false,{\".swiper-centered.swiper-horizontal>.swiper-wrapper::before\":false},[\"height:100%\",\"min-height:1px\",\"width:var(--swiper-centered-offset-after)\"]],[false,{\".swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child\":false},[\"margin-block-start:var(--swiper-centered-offset-before)\"]],[false,{\".swiper-centered.swiper-vertical>.swiper-wrapper::before\":false},[\"width:100%\",\"min-width:1px\",\"height:var(--swiper-centered-offset-after)\"]],[false,{\".swiper-centered>.swiper-wrapper>.swiper-slide\":false},[\"scroll-snap-align:center center\"]],[false,{\".swiper-virtual .swiper-slide\":false},[\"-webkit-backface-visibility:hidden\",\"transform:translateZ(0)\"]],[false,{\".swiper-virtual.swiper-css-mode .swiper-wrapper::after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"left:0\",\"top:0\",\"pointer-events:none\"]],[false,{\".swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after\":false},[\"height:1px\",\"width:var(--swiper-virtual-size)\"]],[false,{\".swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after\":false},[\"width:1px\",\"height:var(--swiper-virtual-size)\"]],[true,{\":root\":true},[\"--swiper-navigation-size:44px\"]],[false,{\".swiper-button-next\":false,\".swiper-button-prev\":false},[\"position:absolute\",\"top:50%\",\"width:calc(var(--swiper-navigation-size) \\/ 44 * 27)\",\"height:var(--swiper-navigation-size)\",\"margin-top:calc(0px - ( var(--swiper-navigation-size) \\/ 2 ))\",\"z-index:10\",\"cursor:pointer\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"color:var(--swiper-navigation-color,var(--swiper-theme-color))\"]],[false,{\".swiper-button-next.swiper-button-disabled\":false,\".swiper-button-prev.swiper-button-disabled\":false},[\"opacity:.35\",\"cursor:auto\",\"pointer-events:none\"]],[false,{\".swiper-button-next.swiper-button-hidden\":false,\".swiper-button-prev.swiper-button-hidden\":false},[\"opacity:0\",\"cursor:auto\",\"pointer-events:none\"]],[false,{\".swiper-navigation-disabled .swiper-button-next:not(#_#_#_#_#_#_#_)\":false,\".swiper-navigation-disabled .swiper-button-prev:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-button-next:after\":false,\".swiper-button-prev:after\":false},[\"font-family:swiper-icons\",\"font-size:var(--swiper-navigation-size)\",\"letter-spacing:0\",\"font-variant:initial\",\"line-height:1\"]],[false,{\".swiper-button-next:after:not(#_#_#_#_#_#_#_#_)\":false,\".swiper-button-prev:after:not(#_#_#_#_#_#_#_#_)\":false},[\"text-transform:none\"]],[false,{\".swiper-button-prev\":false,\".swiper-rtl .swiper-button-next\":false},[\"left:10px\",\"right:auto\"]],[false,{\".swiper-button-prev:after\":false,\".swiper-rtl .swiper-button-next:after\":false},[\"content:\\\"prev\\\"\"]],[false,{\".swiper-button-next\":false,\".swiper-rtl .swiper-button-prev\":false},[\"right:10px\",\"left:auto\"]],[false,{\".swiper-button-next:after\":false,\".swiper-rtl .swiper-button-prev:after\":false},[\"content:\\\"next\\\"\"]],[false,{\".swiper-button-lock\":false},[\"display:none\"]],[false,{\".swiper-pagination\":false},[\"position:absolute\",\"text-align:center\",\"transition:.3s opacity\",\"transform:translate3d(0,0,0)\",\"z-index:10\"]],[false,{\".swiper-pagination.swiper-pagination-hidden\":false},[\"opacity:0\"]],[false,{\".swiper-pagination-disabled>.swiper-pagination:not(#_#_#_#_#_#_#_)\":false,\".swiper-pagination.swiper-pagination-disabled:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets\":false,\".swiper-pagination-bullets.swiper-pagination-horizontal\":false,\".swiper-pagination-custom\":false,\".swiper-pagination-fraction\":false},[\"bottom:10px\",\"left:0\",\"width:100%\"]],[false,{\".swiper-pagination-bullets-dynamic\":false},[\"overflow:hidden\",\"font-size:0\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"transform:scale(.33)\",\"position:relative\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active\":false},[\"transform:scale(1)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main\":false},[\"transform:scale(1)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev\":false},[\"transform:scale(.66)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev\":false},[\"transform:scale(.33)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next\":false},[\"transform:scale(.66)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next\":false},[\"transform:scale(.33)\"]],[false,{\".swiper-pagination-bullet\":false},[\"width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px))\",\"height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px))\",\"display:inline-block\",\"border-radius:50%\",\"background:var(--swiper-pagination-bullet-inactive-color,#000)\",\"opacity:var(--swiper-pagination-bullet-inactive-opacity,.2)\"]],[false,{\"button.swiper-pagination-bullet\":false},[\"border:none\",\"margin:0\",\"padding:0\",\"box-shadow:none\",\"-webkit-appearance:none\",\"appearance:none\"]],[false,{\".swiper-pagination-clickable .swiper-pagination-bullet\":false},[\"cursor:pointer\"]],[false,{\".swiper-pagination-bullet:only-child:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-pagination-bullet-active\":false},[\"opacity:var(--swiper-pagination-bullet-opacity,1)\",\"background:var(--swiper-pagination-color,var(--swiper-theme-color))\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets\":false,\".swiper-vertical>.swiper-pagination-bullets\":false},[\"right:10px\",\"top:50%\",\"transform:translate3d(0px,-50%,0)\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet\":false,\".swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet\":false},[\"margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0\",\"display:block\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false,\".swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false},[\"top:50%\",\"transform:translateY(-50%)\",\"width:8px\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false,\".swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"display:inline-block\",\"transition:.2s transform,.2s top\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet\":false,\".swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet\":false},[\"margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false,\".swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false},[\"left:50%\",\"transform:translateX(-50%)\",\"white-space:nowrap\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false,\".swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"transition:.2s transform,.2s left\"]],[false,{\".swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"transition:.2s transform,.2s right\"]],[false,{\".swiper-pagination-progressbar\":false},[\"background:rgba(0,0,0,.25)\",\"position:absolute\"]],[false,{\".swiper-pagination-progressbar .swiper-pagination-progressbar-fill\":false},[\"background:var(--swiper-pagination-color,var(--swiper-theme-color))\",\"position:absolute\",\"left:0\",\"top:0\",\"width:100%\",\"height:100%\",\"transform:scale(0)\",\"transform-origin:left top\"]],[false,{\".swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill\":false},[\"transform-origin:right top\"]],[false,{\".swiper-horizontal>.swiper-pagination-progressbar\":false,\".swiper-pagination-progressbar.swiper-pagination-horizontal\":false,\".swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite\":false,\".swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite\":false},[\"width:100%\",\"height:4px\",\"left:0\",\"top:0\"]],[false,{\".swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite\":false,\".swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite\":false,\".swiper-pagination-progressbar.swiper-pagination-vertical\":false,\".swiper-vertical>.swiper-pagination-progressbar\":false},[\"width:4px\",\"height:100%\",\"left:0\",\"top:0\"]],[false,{\".swiper-pagination-lock\":false},[\"display:none\"]],[false,{\".swiper-scrollbar\":false},[\"border-radius:10px\",\"position:relative\",\"-ms-touch-action:none\",\"background:rgba(0,0,0,.1)\"]],[false,{\".swiper-scrollbar-disabled>.swiper-scrollbar:not(#_#_#_#_#_#_#_)\":false,\".swiper-scrollbar.swiper-scrollbar-disabled:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-horizontal>.swiper-scrollbar\":false,\".swiper-scrollbar.swiper-scrollbar-horizontal\":false},[\"position:absolute\",\"left:1%\",\"bottom:3px\",\"z-index:50\",\"height:5px\",\"width:98%\"]],[false,{\".swiper-scrollbar.swiper-scrollbar-vertical\":false,\".swiper-vertical>.swiper-scrollbar\":false},[\"position:absolute\",\"right:3px\",\"top:1%\",\"z-index:50\",\"width:5px\",\"height:98%\"]],[false,{\".swiper-scrollbar-drag\":false},[\"height:100%\",\"width:100%\",\"position:relative\",\"background:rgba(0,0,0,.5)\",\"border-radius:10px\",\"left:0\",\"top:0\"]],[false,{\".swiper-scrollbar-cursor-drag\":false},[\"cursor:move\"]],[false,{\".swiper-scrollbar-lock\":false},[\"display:none\"]],[false,{\".swiper-zoom-container\":false},[\"width:100%\",\"height:100%\",\"display:flex\",\"justify-content:center\",\"align-items:center\",\"text-align:center\"]],[false,{\".swiper-zoom-container>canvas\":false,\".swiper-zoom-container>amp-img\":false,\".swiper-zoom-container>amp-anim\":false,\".swiper-zoom-container>svg\":false},[\"max-width:100%\",\"max-height:100%\",\"object-fit:contain\"]],[false,{\".swiper-slide-zoomed\":false},[\"cursor:move\"]],[false,{\".swiper-lazy-preloader\":false},[\"width:42px\",\"height:42px\",\"position:absolute\",\"left:50%\",\"top:50%\",\"margin-left:-21px\",\"margin-top:-21px\",\"z-index:10\",\"transform-origin:50%\",\"box-sizing:border-box\",\"border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color))\",\"border-radius:50%\",\"border-top-color:transparent\"]],[false,{\".swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader\":false,\".swiper:not(.swiper-watch-progress) .swiper-lazy-preloader\":false},[\"animation:swiper-preloader-spin 1s infinite linear\"]],[false,{\".swiper-lazy-preloader-white\":false},[\"--swiper-preloader-color:#fff\"]],[false,{\".swiper-lazy-preloader-black\":false},[\"--swiper-preloader-color:#000\"]],[true,\"@keyframes swiper-preloader-spin{\"],[true,\"0%{transform:rotate(0deg)}\"],[true,\"100%{transform:rotate(360deg)}\"],[true,\"}\"],[false,{\".swiper .swiper-notification\":false},[\"position:absolute\",\"left:0\",\"top:0\",\"pointer-events:none\",\"opacity:0\",\"z-index:-1000\"]],[false,{\".swiper-free-mode>.swiper-wrapper\":false},[\"transition-timing-function:ease-out\",\"margin:0 auto\"]],[false,{\".swiper-grid>.swiper-wrapper\":false},[\"flex-wrap:wrap\"]],[false,{\".swiper-grid-column>.swiper-wrapper\":false},[\"flex-wrap:wrap\",\"flex-direction:column\"]],[false,{\".swiper-fade.swiper-free-mode .swiper-slide\":false},[\"transition-timing-function:ease-out\"]],[false,{\".swiper-fade .swiper-slide\":false},[\"pointer-events:none\",\"transition-property:opacity\"]],[false,{\".swiper-fade .swiper-slide .swiper-slide\":false},[\"pointer-events:none\"]],[false,{\".swiper-fade .swiper-slide-active\":false,\".swiper-fade .swiper-slide-active .swiper-slide-active\":false},[\"pointer-events:auto\"]],[false,{\".swiper-cube\":false},[\"overflow:visible\"]],[false,{\".swiper-cube .swiper-slide\":false},[\"pointer-events:none\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"z-index:1\",\"visibility:hidden\",\"transform-origin:0 0\",\"width:100%\",\"height:100%\"]],[false,{\".swiper-cube .swiper-slide .swiper-slide\":false},[\"pointer-events:none\"]],[false,{\".swiper-cube.swiper-rtl .swiper-slide\":false},[\"transform-origin:100% 0\"]],[false,{\".swiper-cube .swiper-slide-active\":false,\".swiper-cube .swiper-slide-active .swiper-slide-active\":false},[\"pointer-events:auto\"]],[false,{\".swiper-cube .swiper-slide-active\":false,\".swiper-cube .swiper-slide-next\":false,\".swiper-cube .swiper-slide-next+.swiper-slide\":false,\".swiper-cube .swiper-slide-prev\":false},[\"pointer-events:auto\",\"visibility:visible\"]],[false,{\".swiper-cube .swiper-slide-shadow-bottom\":false,\".swiper-cube .swiper-slide-shadow-left\":false,\".swiper-cube .swiper-slide-shadow-right\":false,\".swiper-cube .swiper-slide-shadow-top\":false},[\"z-index:0\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".swiper-cube .swiper-cube-shadow\":false},[\"position:absolute\",\"left:0\",\"bottom:0px\",\"width:100%\",\"height:100%\",\"opacity:.6\",\"z-index:0\"]],[false,{\".swiper-cube .swiper-cube-shadow:before\":false},[\"content:\\\"\\\"\",\"background:#000\",\"position:absolute\",\"left:0\",\"top:0\",\"bottom:0\",\"right:0\",\"filter:blur(50px)\"]],[false,{\".swiper-flip\":false},[\"overflow:visible\"]],[false,{\".swiper-flip .swiper-slide\":false},[\"pointer-events:none\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"z-index:1\"]],[false,{\".swiper-flip .swiper-slide .swiper-slide\":false},[\"pointer-events:none\"]],[false,{\".swiper-flip .swiper-slide-active\":false,\".swiper-flip .swiper-slide-active .swiper-slide-active\":false},[\"pointer-events:auto\"]],[false,{\".swiper-flip .swiper-slide-shadow-bottom\":false,\".swiper-flip .swiper-slide-shadow-left\":false,\".swiper-flip .swiper-slide-shadow-right\":false,\".swiper-flip .swiper-slide-shadow-top\":false},[\"z-index:0\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".swiper-creative .swiper-slide\":false},[\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"overflow:hidden\",\"transition-property:transform,opacity,height\"]],[false,{\".swiper-cards\":false},[\"overflow:visible\"]],[false,{\".swiper-cards .swiper-slide\":false},[\"transform-origin:center bottom\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"overflow:hidden\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":810,\"final_size\":766,\"element\":{\"name\":\"style\",\"attributes\":[]},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Header_Output.php\",\"line\":69,\"function\":\"SWP_Header_Output::add_header_output\",\"hook\":\"wp_head\",\"priority\":1}],\"priority\":70,\"hash\":\"0a9255310f1740c2ab6cffd5f5a29640\",\"parse_time\":0.0011060237884521484,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0#iefix\"],\"shaken_tokens\":[[true,\"@font-face{font-family:\\\"sw-icon-font\\\";src:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0\\\");src:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.woff?ver=4.3.0\\\") format(\\\"woff\\\"),url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.ttf?ver=4.3.0\\\") format(\\\"truetype\\\"),url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.svg?ver=4.3.0#1445203416\\\") format(\\\"svg\\\");font-weight:normal;font-style:normal;font-display:block}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2209,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"social-warfare-block-css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/js\\/post-editor\\/dist\\/blocks.style.build.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"assets\\/js\\/post-editor\\/blocks.php\",\"line\":20,\"function\":\"register_gutenberg_blocks\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social-warfare-block-css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"c542eecf74fba8e6b26c437634e5223e\",\"parse_time\":0.010244131088256836,\"shake_time\":2.9802322387695312e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".social-warfare-admin-block\":false},[\"font-family:\\\"SF Pro Text\\\",\\\"Helvetica\\\",sans-serif\",\"font-size:13px\"]],[false,{\".social-warfare-admin-block .head\":false},[\"width:100%\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".social-warfare-admin-block .head p\":false},[\"font-weight:bold\"]],[false,{\".social-warfare-admin-block .swp-block-icon\":false},[\"margin:0 28px 0 14px\",\"font-size:18px\",\"width:32px\",\"height:32px\"]],[false,{\".social-warfare-block-wrap input\":false,\".social-warfare-block-wrap select\":false},[\"width:100%\"]],[false,{\".swp-active-block\":false},[\"height:100%\"]],[false,{\".swp-active-block input\":false,\".swp-active-block select\":false,\".swp-active-block textarea\":false},[\"display:block\",\"width:100%\",\"padding:5px\",\"height:42px\",\"border:1px solid #e2e4e7\"]],[false,{\".swp-active-block textarea\":false},[\"height:64px\"]],[false,{\".swp-active-block .swp-inner-block-50\":false},[\"width:50%\",\"display:inline-block\",\"padding:0 1px\"]],[false,{\".swp-active-block .head>div\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row no-wrap\",\"flex-flow:row no-wrap\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".swp-active-block .head .swp-block-icon\":false,\".swp-active-block .head .swp-block-title\":false},[\"display:inline-block\"]],[false,{\".swp-active-block p\":false},[\"margin:25px 0 5px 0\"]],[false,{\".swp-active-block .head p\":false},[\"margin:initial\"]],[false,{\".swp-inactive-block\":false},[\"min-height:50px\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".swp-inactive-block code\":false},[\"display:block\",\"width:100%\",\"padding:5px\",\"height:42px\"]],[false,{\".swp-inactive-block .swp-preview\":false},[\"background:#f5f5f5\",\"width:100%\",\"display:block\",\"font-family:\\\"SF Pro Text\\\",\\\"Helvetica\\\",sans-sans-serif\",\"font-size:13px\",\"padding:15px\",\"border-radius:4px\"]],[false,{\".swp-inactive-block .swp-dashicon\":false},[\"margin:0 14px\"]],[false,{\".click-to-tweet-block-wrap textarea[name=\\\"tweetText\\\"]\":false},[\"border-top-right-radius:0px\"]],[false,{\".click-to-tweet-block-wrap .block-characters-remaining\":false},[\"font-size:16px\",\"font-size:13px\",\"font-weight:normal\",\"color:white\",\"padding:5px\",\"padding:5px 15px\",\"border-top-right-radius:4px\",\"border-top-left-radius:4px\",\"background:#30394f\",\"margin:0\",\"float:right\",\"max-width:200px\",\"position:relative\",\"-webkit-transition:all 300ms\",\"-o-transition:all 300ms\",\"transition:all 300ms\"]],[false,{\".click-to-tweet-block-wrap .block-characters-remaining.over-limit\":false},[\"background:#ee464f\",\"color:#fff\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1388,\"final_size\":216,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=2.3.0\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1020,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2261,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"82cd798ece835d3c574519b60ef930fe\",\"parse_time\":0.0071032047271728516,\"shake_time\":0.00025916099548339844,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-unknown-size\":false,\"amp-anim.amp-wp-enforced-sizes\":false,\"amp-img.amp-wp-enforced-sizes\":true},[\"-o-object-fit:contain\",\"object-fit:contain\"]],[false,{\"body amp-audio:not([controls])\":false},[\"display:inline-block\",\"height:auto\"]],[false,{\".amp-wp-default-form-message>p\":false},[\"margin:1em 0\",\"padding:.5em\"]],[false,{\".amp-wp-default-form-message[submit-success]>p.amp-wp-form-redirecting\":false,\".amp-wp-default-form-message[submitting]>p\":false},[\"font-style:italic\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:not(.amp-wp-form-redirecting)\":false},[\"background-color:#90ee90\",\"border:1px solid green\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-error]>p\":false},[\"background-color:#ffb6c1\",\"border:1px solid red\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:empty\":false},[\"display:none\"]],[false,{\"amp-carousel .amp-wp-gallery-caption\":false},[\"background-color:rgba(0,0,0,.5)\",\"bottom:0\",\"color:#fff\",\"left:0\",\"margin-bottom:0\",\"padding:1rem\",\"position:absolute\",\"right:0\",\"text-align:center\"]],[false,{\"amp-carousel .amp-wp-gallery-caption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery[data-amp-carousel=true]\":false,\".wp-block-gallery[data-amp-carousel=true].has-nested-images\":false},[\"display:block\",\"flex-wrap:unset\"]],[false,{\".wp-video\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"height:auto\"]],[false,{\"button[overflow]\":false},[\"bottom:0\"]],[true,{\"amp-anim img\":false,\"amp-anim noscript\":false,\"amp-iframe iframe\":false,\"amp-iframe noscript\":false,\"amp-img img\":true,\"amp-img noscript\":true,\"amp-video noscript\":false,\"amp-video video\":false},[\"image-rendering:inherit\",\"-o-object-fit:inherit\",\"object-fit:inherit\",\"-o-object-position:inherit\",\"object-position:inherit\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":80574,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"wp-block-library-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/css\\/dist\\/block-library\\/style.min.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":1381,\"function\":\"wp_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2246,\"function\":\"wp_common_block_scripts_and_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":20,\"hash\":\"db08bb47cd026dcad266bd62ddc38fd8\",\"parse_time\":1.007054090499878,\"shake_time\":0.0011229515075683594,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\"#start-resizable-editor-section\":false},[\"display:none\"]],[false,{\".wp-block-audio\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-audio figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-audio amp-audio\":false},[\"width:100%\",\"min-width:300px\"]],[false,{\".wp-block-button__link\":false},[\"color:#fff\",\"background-color:#32373c\",\"border-radius:9999px\",\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"font-size:1.125em\",\"padding:calc(.667em + 2px) calc(1.333em + 2px)\",\"text-align:center\",\"text-decoration:none\",\"overflow-wrap:break-word\",\"box-sizing:border-box\"]],[false,{\".wp-block-button__link:active\":false,\".wp-block-button__link:focus\":false,\".wp-block-button__link:hover\":false,\".wp-block-button__link:visited\":false},[\"color:#fff\"]],[false,{\".wp-block-button__link.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-button__link.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width\":false},[\"max-width:none\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"width:calc(100% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100:only-child\":false},[\"margin-right:0\",\"width:100%\"]],[false,\"@supports (column-gap:0.5em){\"],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button.wp-block-button\":false,\".wp-block-buttons>.wp-block-button.wp-block-button\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - .375em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - .25em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - .125em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"width:auto\",\"flex-basis:100%\"]],[false,\"}\"],[false,{\".wp-block-button.is-style-squared\":false,\".wp-block-button__link.wp-block-button.is-style-squared\":false},[\"border-radius:0\"]],[false,{\".wp-block-button.no-border-radius:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button__link.no-border-radius:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[false,{\".is-style-outline>.wp-block-button__link\":false,\".wp-block-button__link.is-style-outline\":false},[\"border:2px solid\",\"padding:.667em 1.333em\"]],[false,{\".is-style-outline>.wp-block-button__link:not(.has-text-color)\":false,\".wp-block-button__link.is-style-outline:not(.has-text-color)\":false},[\"color:currentColor\"]],[false,{\".is-style-outline>.wp-block-button__link:not(.has-background)\":false,\".wp-block-button__link.is-style-outline:not(.has-background)\":false},[\"background-color:transparent\"]],[false,{\".wp-block-buttons\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\",\"column-gap:.5em\"]],[false,{\".wp-block-buttons.is-vertical\":false},[\"flex-direction:column\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-buttons>.wp-block-button\":false},[\"display:inline-block\",\"margin-left:0\",\"margin-right:.5em\",\"margin-bottom:.5em\"]],[false,{\".wp-block-buttons>.wp-block-button:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.is-content-justification-left\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-left.is-vertical\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-center\":false},[\"justify-content:center\"]],[false,{\".wp-block-buttons.is-content-justification-center.is-vertical\":false},[\"align-items:center\"]],[false,{\".wp-block-buttons.is-content-justification-right\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button\":false},[\"margin-left:.5em\",\"margin-right:0\"]],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-buttons.is-content-justification-right.is-vertical\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-space-between\":false},[\"justify-content:space-between\"]],[false,{\".wp-block-buttons.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-buttons.alignleft .wp-block-button\":false},[\"margin-left:0\",\"margin-right:.5em\"]],[false,{\".wp-block-buttons.alignleft .wp-block-button:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.alignright .wp-block-button\":false},[\"margin-right:0\",\"margin-left:.5em\"]],[false,{\".wp-block-buttons.alignright .wp-block-button:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-button.aligncenter\":false,\".wp-block-calendar\":false},[\"text-align:center\"]],[false,{\".wp-block-calendar tbody td\":false,\".wp-block-calendar th\":false},[\"padding:.25em\",\"border:1px solid #ddd\"]],[false,{\".wp-block-calendar tfoot td\":false},[\"border:none\"]],[false,{\".wp-block-calendar table\":false},[\"width:100%\",\"border-collapse:collapse\"]],[false,{\".wp-block-calendar table th\":false},[\"font-weight:400\",\"background:#ddd\"]],[false,{\".wp-block-calendar a\":false},[\"text-decoration:underline\"]],[false,{\".wp-block-calendar table caption\":false,\".wp-block-calendar table tbody\":false},[\"color:#40464d\"]],[false,{\".wp-block-categories.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-categories.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-code code\":false},[\"display:block\",\"white-space:pre-wrap\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-columns\":false},[\"display:flex\",\"margin-bottom:1.75em\",\"box-sizing:border-box\",\"flex-wrap:wrap\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns\":false},[\"flex-wrap:nowrap\"]],[false,\"}\"],[false,{\".wp-block-columns.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-columns.are-vertically-aligned-top\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-columns.are-vertically-aligned-center\":false},[\"align-items:center\"]],[false,{\".wp-block-columns.are-vertically-aligned-bottom\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-column\":false},[\"flex-grow:1\",\"min-width:0\",\"word-break:break-word\",\"overflow-wrap:break-word\"]],[false,\"@media (max-width:599px){\"],[false,{\".wp-block-column:not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:100%\"]],[false,\"}\"],[false,\"@media (min-width:600px) and (max-width:781px){\"],[false,{\".wp-block-column:not(:only-child)\":false},[\"flex-grow:0\"]],[false,{\".wp-block-column:not(:only-child):not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:calc(50% - 1em)\"]],[false,{\".wp-block-column:nth-child(2n)\":false},[\"margin-left:2em\"]],[false,\"}\"],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[false,{\".wp-block-column:not(:first-child)\":false},[\"margin-left:2em\"]],[false,\"}\"],[false,{\".wp-block-column.is-vertically-aligned-top\":false},[\"align-self:flex-start\"]],[false,{\".wp-block-column.is-vertically-aligned-center\":false},[\"align-self:center\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false},[\"align-self:flex-end\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false,\".wp-block-column.is-vertically-aligned-center\":false,\".wp-block-column.is-vertically-aligned-top\":false},[\"width:100%\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"position:relative\",\"background-size:cover\",\"background-position:50%\",\"min-height:430px\",\"width:100%\",\"display:flex\",\"justify-content:center\",\"align-items:center\",\"padding:1em\",\"box-sizing:border-box\"]],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:fixed\"]],[false,\"@supports (-webkit-overflow-scrolling:touch){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,{\".wp-block-cover-image.is-repeated\":false,\".wp-block-cover.is-repeated\":false},[\"background-repeat:repeat\",\"background-size:auto\"]],[false,{\".wp-block-cover-image.has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover.has-background-dim:not([class*=-background-color])\":false},[\"background-color:#000\"]],[false,{\".wp-block-cover-image.has-background-dim:before\":false,\".wp-block-cover.has-background-dim:before\":false},[\"content:\\\"\\\"\",\"background-color:inherit\"]],[false,{\".wp-block-cover-image.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover-image .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover .wp-block-cover__gradient-background\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"bottom:0\",\"right:0\",\"z-index:1\",\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false},[\"opacity:1\"]],[false,{\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-cover-image:after\":false,\".wp-block-cover:after\":false},[\"display:block\",\"content:\\\"\\\"\",\"font-size:0\",\"min-height:inherit\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-cover-image:after\":false,\".wp-block-cover:after\":false},[\"content:none\"]],[false,\"}\"],[false,{\".wp-block-cover-image.aligncenter\":false,\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.aligncenter\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"display:flex\"]],[false,{\".wp-block-cover-image .wp-block-cover__inner-container\":false,\".wp-block-cover .wp-block-cover__inner-container\":false},[\"width:100%\",\"z-index:1\",\"color:#fff\"]],[false,{\".wp-block-cover-image h1:not(.has-text-color)\":false,\".wp-block-cover-image h2:not(.has-text-color)\":false,\".wp-block-cover-image h3:not(.has-text-color)\":false,\".wp-block-cover-image h4:not(.has-text-color)\":false,\".wp-block-cover-image h5:not(.has-text-color)\":false,\".wp-block-cover-image h6:not(.has-text-color)\":false,\".wp-block-cover-image p:not(.has-text-color)\":false,\".wp-block-cover h1:not(.has-text-color)\":false,\".wp-block-cover h2:not(.has-text-color)\":false,\".wp-block-cover h3:not(.has-text-color)\":false,\".wp-block-cover h4:not(.has-text-color)\":false,\".wp-block-cover h5:not(.has-text-color)\":false,\".wp-block-cover h6:not(.has-text-color)\":false,\".wp-block-cover p:not(.has-text-color)\":false},[\"color:inherit\"]],[false,{\".wp-block-cover-image.is-position-top-left\":false,\".wp-block-cover.is-position-top-left\":false},[\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-top-center\":false,\".wp-block-cover.is-position-top-center\":false},[\"align-items:flex-start\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-top-right\":false,\".wp-block-cover.is-position-top-right\":false},[\"align-items:flex-start\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-center-left\":false,\".wp-block-cover.is-position-center-left\":false},[\"align-items:center\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-center-center\":false,\".wp-block-cover.is-position-center-center\":false},[\"align-items:center\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-center-right\":false,\".wp-block-cover.is-position-center-right\":false},[\"align-items:center\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-bottom-left\":false,\".wp-block-cover.is-position-bottom-left\":false},[\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-bottom-center\":false,\".wp-block-cover.is-position-bottom-center\":false},[\"align-items:flex-end\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-bottom-right\":false,\".wp-block-cover.is-position-bottom-right\":false},[\"align-items:flex-end\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false},[\"margin:0\",\"width:auto\"]],[false,{\".wp-block-cover-image amp-img.wp-block-cover__image-background\":false,\".wp-block-cover-image amp-anim.wp-block-cover__image-background\":false,\".wp-block-cover-image amp-video.wp-block-cover__video-background\":false,\".wp-block-cover-image amp-youtube.wp-block-cover__video-background\":false,\".wp-block-cover amp-img.wp-block-cover__image-background\":false,\".wp-block-cover amp-anim.wp-block-cover__image-background\":false,\".wp-block-cover amp-video.wp-block-cover__video-background\":false,\".wp-block-cover amp-youtube.wp-block-cover__video-background\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"margin:0\",\"padding:0\",\"width:100%\",\"height:100%\",\"max-width:none\",\"max-height:none\",\"-o-object-fit:cover\",\"object-fit:cover\",\"outline:none\",\"border:none\",\"box-shadow:none\"]],[false,{\".wp-block-cover__image-background\":false,\".wp-block-cover__video-background\":false},[\"z-index:0\"]],[false,{\".wp-block-cover-image-text\":false,\".wp-block-cover-image-text a\":false,\".wp-block-cover-image-text a:active\":false,\".wp-block-cover-image-text a:focus\":false,\".wp-block-cover-image-text a:hover\":false,\".wp-block-cover-text\":false,\".wp-block-cover-text a\":false,\".wp-block-cover-text a:active\":false,\".wp-block-cover-text a:focus\":false,\".wp-block-cover-text a:hover\":false,\"section.wp-block-cover-image h2\":false,\"section.wp-block-cover-image h2 a\":false,\"section.wp-block-cover-image h2 a:active\":false,\"section.wp-block-cover-image h2 a:focus\":false,\"section.wp-block-cover-image h2 a:hover\":false},[\"color:#fff\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-left-content\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-right-content\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-left-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-left-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-left-content>h2\":false},[\"margin-left:0\",\"text-align:left\"]],[false,{\".wp-block-cover-image.has-right-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-right-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-right-content>h2\":false},[\"margin-right:0\",\"text-align:right\"]],[false,{\".wp-block-cover-image .wp-block-cover-image-text\":false,\".wp-block-cover .wp-block-cover-text\":false,\"section.wp-block-cover-image>h2\":false},[\"font-size:2em\",\"line-height:1.25\",\"z-index:1\",\"margin-bottom:0\",\"max-width:840px\",\"padding:.44em\",\"text-align:center\"]],[false,{\".wp-block-embed.alignleft\":false,\".wp-block-embed.alignright\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"]\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"]\":false},[\"max-width:360px\",\"width:100%\"]],[false,{\".wp-block-embed.alignleft .wp-block-embed__wrapper\":false,\".wp-block-embed.alignright .wp-block-embed__wrapper\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false},[\"min-width:280px\"]],[false,{\".wp-block-cover .wp-block-embed\":false},[\"min-width:320px\",\"min-height:240px\"]],[false,{\".wp-block-embed\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-embed figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-embed amp-iframe\":false},[\"max-width:100%\"]],[false,{\".wp-block-embed__wrapper\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio amp-iframe\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"height:100%\",\"width:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:42.85%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:56.25%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before\":false},[\"padding-top:75%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before\":false},[\"padding-top:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before\":false},[\"padding-top:177.77%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before\":false},[\"padding-top:200%\"]],[false,{\".wp-block-file\":false},[\"margin-bottom:1.5em\"]],[false,{\".wp-block-file.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-file.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-file .wp-block-file__embed\":false},[\"margin-bottom:1em\"]],[false,{\".wp-block-file .wp-block-file__button\":false},[\"background:#32373c\",\"border-radius:2em\",\"color:#fff\",\"font-size:.8em\",\"padding:.5em 1em\"]],[false,{\".wp-block-file a.wp-block-file__button\":false},[\"text-decoration:none\"]],[false,{\".wp-block-file a.wp-block-file__button:active\":false,\".wp-block-file a.wp-block-file__button:focus\":false,\".wp-block-file a.wp-block-file__button:hover\":false,\".wp-block-file a.wp-block-file__button:visited\":false},[\"box-shadow:none\",\"color:#fff\",\"opacity:.85\",\"text-decoration:none\"]],[false,{\".wp-block-file *+.wp-block-file__button\":false},[\"margin-left:.75em\"]],[false,{\".blocks-gallery-grid\":false,\".wp-block-gallery\":false},[\"display:flex\",\"flex-wrap:wrap\",\"list-style-type:none\",\"padding:0\",\"margin:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image\":false,\".blocks-gallery-grid .blocks-gallery-item\":false,\".wp-block-gallery .blocks-gallery-image\":false,\".wp-block-gallery .blocks-gallery-item\":false},[\"margin:0 1em 1em 0\",\"display:flex\",\"flex-grow:1\",\"flex-direction:column\",\"justify-content:center\",\"position:relative\",\"align-self:flex-start\",\"width:calc(50% - 1em)\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery .blocks-gallery-item:nth-of-type(2n)\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image figure\":false,\".blocks-gallery-grid .blocks-gallery-item figure\":false,\".wp-block-gallery .blocks-gallery-image figure\":false,\".wp-block-gallery .blocks-gallery-item figure\":false},[\"margin:0\",\"height:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid .blocks-gallery-image figure\":false,\".blocks-gallery-grid .blocks-gallery-item figure\":false,\".wp-block-gallery .blocks-gallery-image figure\":false,\".wp-block-gallery .blocks-gallery-item figure\":false},[\"display:flex\",\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item amp-anim\":false,\".wp-block-gallery .blocks-gallery-image amp-img\":false,\".wp-block-gallery .blocks-gallery-image amp-anim\":false,\".wp-block-gallery .blocks-gallery-item amp-img\":false,\".wp-block-gallery .blocks-gallery-item amp-anim\":false},[\"display:block\",\"max-width:100%\",\"height:auto\",\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item amp-anim\":false,\".wp-block-gallery .blocks-gallery-image amp-img\":false,\".wp-block-gallery .blocks-gallery-image amp-anim\":false,\".wp-block-gallery .blocks-gallery-item amp-img\":false,\".wp-block-gallery .blocks-gallery-item amp-anim\":false},[\"width:auto\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image figcaption\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption\":false,\".wp-block-gallery .blocks-gallery-image figcaption\":false,\".wp-block-gallery .blocks-gallery-item figcaption\":false},[\"position:absolute\",\"bottom:0\",\"width:100%\",\"max-height:100%\",\"overflow:auto\",\"padding:3em .77em .7em\",\"color:#fff\",\"text-align:center\",\"font-size:.8em\",\"background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent)\",\"box-sizing:border-box\",\"margin:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image figcaption amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image figcaption amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption amp-anim\":false,\".wp-block-gallery .blocks-gallery-image figcaption amp-img\":false,\".wp-block-gallery .blocks-gallery-image figcaption amp-anim\":false,\".wp-block-gallery .blocks-gallery-item figcaption amp-img\":false,\".wp-block-gallery .blocks-gallery-item figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".blocks-gallery-grid figcaption\":false,\".wp-block-gallery figcaption\":false},[\"flex-grow:1\"]],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item\":false},[\"align-self:inherit\"]],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-anim\":false},[\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-anim\":false},[\"height:100%\",\"flex:1\",\"-o-object-fit:cover\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".blocks-gallery-grid.columns-1 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-1 .blocks-gallery-item\":false,\".wp-block-gallery.columns-1 .blocks-gallery-image\":false,\".wp-block-gallery.columns-1 .blocks-gallery-item\":false},[\"width:100%\",\"margin-right:0\"]],[false,\"@media (min-width:600px){\"],[false,{\".blocks-gallery-grid.columns-3 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-item\":false,\".wp-block-gallery.columns-3 .blocks-gallery-image\":false,\".wp-block-gallery.columns-3 .blocks-gallery-item\":false},[\"width:calc(33.33333% - .66667em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-4 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-item\":false,\".wp-block-gallery.columns-4 .blocks-gallery-image\":false,\".wp-block-gallery.columns-4 .blocks-gallery-item\":false},[\"width:calc(25% - .75em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-5 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-item\":false,\".wp-block-gallery.columns-5 .blocks-gallery-image\":false,\".wp-block-gallery.columns-5 .blocks-gallery-item\":false},[\"width:calc(20% - .8em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-6 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-item\":false,\".wp-block-gallery.columns-6 .blocks-gallery-image\":false,\".wp-block-gallery.columns-6 .blocks-gallery-item\":false},[\"width:calc(16.66667% - .83333em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-7 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-item\":false,\".wp-block-gallery.columns-7 .blocks-gallery-image\":false,\".wp-block-gallery.columns-7 .blocks-gallery-item\":false},[\"width:calc(14.28571% - .85714em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-8 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-item\":false,\".wp-block-gallery.columns-8 .blocks-gallery-image\":false,\".wp-block-gallery.columns-8 .blocks-gallery-item\":false},[\"width:calc(12.5% - .875em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n)\":false,\".wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image:last-child\":false,\".blocks-gallery-grid .blocks-gallery-item:last-child\":false,\".wp-block-gallery .blocks-gallery-image:last-child\":false,\".wp-block-gallery .blocks-gallery-item:last-child\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid.alignleft\":false,\".blocks-gallery-grid.alignright\":false,\".wp-block-gallery.alignleft\":false,\".wp-block-gallery.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".blocks-gallery-grid.aligncenter .blocks-gallery-item figure\":false,\".wp-block-gallery.aligncenter .blocks-gallery-item figure\":false},[\"justify-content:center\"]],[false,{\".wp-block-group\":false},[\"box-sizing:border-box\"]],[false,{\"h1.has-background\":false,\"h2.has-background\":false,\"h3.has-background\":false,\"h4.has-background\":false,\"h5.has-background\":false,\"h6.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-image\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-image amp-img\":false,\".wp-block-image amp-anim\":false},[\"max-width:100%\"]],[false,{\".wp-block-image:not(.is-style-rounded) amp-img\":false,\".wp-block-image:not(.is-style-rounded) amp-anim\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-image.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-image.alignfull amp-img\":false,\".wp-block-image.alignfull amp-anim\":false,\".wp-block-image.alignwide amp-img\":false,\".wp-block-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\".wp-block-image .aligncenter\":false,\".wp-block-image .alignleft\":false,\".wp-block-image .alignright\":false},[\"display:table\"]],[false,{\".wp-block-image .aligncenter>figcaption\":false,\".wp-block-image .alignleft>figcaption\":false,\".wp-block-image .alignright>figcaption\":false},[\"display:table-caption\",\"caption-side:bottom\"]],[false,{\".wp-block-image .alignleft\":false},[\"float:left\",\"margin:.5em 1em .5em 0\"]],[false,{\".wp-block-image .alignright\":false},[\"float:right\",\"margin:.5em 0 .5em 1em\"]],[false,{\".wp-block-image .aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-block-image figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false,\".wp-block-image.is-style-rounded amp-img\":false,\".wp-block-image.is-style-rounded amp-anim\":false},[\"border-radius:9999px\"]],[false,\"@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){\"],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"-webkit-mask-image:url(\\\"data:image\\/svg+xml;utf8,<\\/svg>\\\")\",\"mask-image:url(\\\"data:image\\/svg+xml;utf8,<\\/svg>\\\")\",\"mask-mode:alpha\",\"-webkit-mask-repeat:no-repeat\",\"mask-repeat:no-repeat\",\"-webkit-mask-size:contain\",\"mask-size:contain\",\"-webkit-mask-position:center\",\"mask-position:center\",\"border-radius:0\"]],[false,\"}\"],[false,{\".wp-block-image figure\":false},[\"margin:0\"]],[false,{\"ol.wp-block-latest-comments\":false},[\"margin-left:0\"]],[false,{\".wp-block-latest-comments .wp-block-latest-comments\":false},[\"padding-left:0\"]],[false,{\".wp-block-latest-comments__comment\":false},[\"line-height:1.1\",\"list-style:none\",\"margin-bottom:1em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment\":false},[\"min-height:2.25em\",\"list-style:none\"]],[false,{\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt\":false,\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta\":false},[\"margin-left:3.25em\"]],[false,{\".has-dates .wp-block-latest-comments__comment\":false,\".has-excerpts .wp-block-latest-comments__comment\":false},[\"line-height:1.5\"]],[false,{\".wp-block-latest-comments__comment-excerpt p\":false},[\"font-size:.875em\",\"line-height:1.8\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-latest-comments__comment-date\":false},[\"display:block\",\"font-size:.75em\"]],[false,{\".wp-block-latest-comments .avatar\":false,\".wp-block-latest-comments__comment-avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-latest-posts.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-latest-posts.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list\":false},[\"list-style:none\",\"padding-left:0\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list li\":false},[\"clear:both\"]],[false,{\".wp-block-latest-posts.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\"]],[false,{\".wp-block-latest-posts.is-grid li\":false},[\"margin:0 1.25em 1.25em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-latest-posts.columns-2 li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-latest-posts.columns-2 li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-3 li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-latest-posts.columns-3 li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-4 li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-latest-posts.columns-4 li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-latest-posts.columns-5 li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-6 li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-latest-posts.columns-6 li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".wp-block-latest-posts__post-author\":false,\".wp-block-latest-posts__post-date\":false},[\"display:block\",\"color:#555\",\"font-size:.8125em\"]],[false,{\".wp-block-latest-posts__post-excerpt\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-latest-posts__featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-latest-posts__featured-image amp-img\":false,\".wp-block-latest-posts__featured-image amp-anim\":false},[\"height:auto\",\"width:auto\",\"max-width:100%\"]],[false,{\".wp-block-latest-posts__featured-image.alignleft\":false},[\"margin-right:1em\"]],[false,{\".wp-block-latest-posts__featured-image.alignright\":false},[\"margin-left:1em\"]],[false,{\".wp-block-latest-posts__featured-image.aligncenter\":false},[\"margin-bottom:1em\",\"text-align:center\"]],[false,{\".block-editor-image-alignment-control__row .components-base-control__field\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\"]],[false,{\".block-editor-image-alignment-control__row .components-base-control__field .components-base-control__label\":false},[\"margin-bottom:0\"]],[false,{\"ol.has-background\":false,\"ul.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-media-text\":false},[\"direction:ltr\",\"display:grid\",\"grid-template-columns:50% 1fr\",\"grid-template-rows:auto\"]],[false,{\".wp-block-media-text.has-media-on-the-right\":false},[\"grid-template-columns:1fr 50%\"]],[false,{\".wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media\":false},[\"align-self:start\"]],[false,{\".wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media\":false,\".wp-block-media-text .wp-block-media-text__content\":false,\".wp-block-media-text .wp-block-media-text__media\":false},[\"align-self:center\"]],[false,{\".wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media\":false},[\"align-self:end\"]],[false,{\".wp-block-media-text .wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\",\"margin:0\"]],[false,{\".wp-block-media-text .wp-block-media-text__content\":false},[\"direction:ltr\",\"grid-column:2\",\"grid-row:1\",\"padding:0 8%\",\"word-break:break-word\"]],[false,{\".wp-block-media-text.has-media-on-the-right .wp-block-media-text__media\":false},[\"grid-column:2\",\"grid-row:1\"]],[false,{\".wp-block-media-text.has-media-on-the-right .wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"max-width:unset\",\"width:100%\",\"vertical-align:middle\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media\":false},[\"height:100%\",\"min-height:250px\",\"background-size:cover\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill .wp-block-media-text__media amp-anim\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-media-text.is-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"grid-template-columns:100%\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:2\"]],[false,\"}\"],[false,{\".wp-block-navigation\":false},[\"position:relative\"]],[false,{\".wp-block-navigation ul\":false,\".wp-block-navigation ul li\":false},[\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-navigation-link\":false,\".wp-block-navigation .wp-block-pages-list__item\":false},[\"display:flex\",\"align-items:center\",\"position:relative\"]],[false,{\".wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__container:empty\":false,\".wp-block-navigation .wp-block-pages-list__item .wp-block-navigation-link__container:empty\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__content\":false,\".wp-block-navigation .wp-block-pages-list__item__link\":false},[\"color:inherit\",\"display:block\"]],[false,{\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__container\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content:focus\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link:focus\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content:focus\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link:focus\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .wp-block-page-list__submenu-icon\":false},[\"height:inherit\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .wp-block-page-list__submenu-icon svg\":false},[\"stroke:currentColor\"]],[false,{\".wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__content.wp-block-navigation-link__content.wp-block-navigation-link__content\":false,\".wp-block-navigation .wp-block-pages-list__item .wp-block-pages-list__item__link\":false},[\"padding:0\"]],[false,{\".wp-block-navigation .has-child>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child>.wp-block-pages-list__item__link\":false},[\"margin-right:.5em\"]],[false,{\".wp-block-navigation .has-child .submenu-container\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container\":false},[\"background-color:inherit\",\"color:inherit\",\"position:absolute\",\"z-index:2\",\"flex-direction:column\",\"align-items:normal\",\"min-width:200px\",\"display:none\",\"opacity:0\",\"transition:opacity .1s linear\",\"visibility:hidden\"]],[false,{\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-pages-list__item__link\":false},[\"flex-grow:1\"]],[false,{\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-page-list__submenu-icon\":false},[\"padding-right:.5em\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation .has-child .submenu-container .submenu-container:before\":false,\".wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container:before\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container:before\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"right:100%\",\"height:100%\",\"display:block\",\"width:.5em\",\"background:transparent\"]],[false,{\".wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .has-child .submenu-container .wp-block-page-list__submenu-icon svg\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-page-list__submenu-icon svg\":false},[\"transform:rotate(-90deg)\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child:hover>.wp-block-navigation-link__container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:focus-within>.wp-block-navigation-link__container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:hover\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation .has-child:hover>.submenu-container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:focus-within\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation .has-child:focus-within>.submenu-container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container\":false},[\"left:auto\",\"right:0\"]],[false,{\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:auto\",\"right:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation .wp-block-navigation__container>.wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list>.wp-block-pages-list__item\":false},[\"margin:0 2em 0 0\"]],[false,{\".wp-block-navigation.wp-block-navigation .wp-block-navigation__container>.wp-block-navigation-link:last-child\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list:last-child\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list>.wp-block-pages-list__item:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .wp-block-navigation__container>.wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list>.wp-block-pages-list__item\":false},[\"margin:0 .5em 0 0\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .wp-block-navigation__container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list .wp-block-pages-list__item__link\":false},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container\":false},[\"left:-1em\",\"top:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-pages-list__item\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-pages-list__item\":false},[\"margin:0\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-pages-list__item__link\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-pages-list__item__link\":false},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:-1px\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:100%\",\"top:-1px\"]],[false,\"}\"],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container\":false},[\"left:0\",\"top:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:0\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:100%\",\"top:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .submenu-container\":false,\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-navigation-link__container\":false},[\"background-color:#fff\",\"color:#000\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation__container\":false},[\"align-items:center\",\"list-style:none\",\"margin:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation__container .is-responsive\":false},[\"display:none\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__container\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".is-vertical .wp-block-navigation__container\":false},[\"display:block\",\"flex-direction:column\",\"align-items:flex-start\"]],[false,\"}\"],[false,{\".items-justified-center .wp-block-navigation__container\":false},[\"justify-content:center\"]],[false,{\".items-justified-right .wp-block-navigation__container\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between .wp-block-navigation__container\":false},[\"justify-content:space-between\"]],[false,{\".is-vertical.items-justified-center>ul\":false},[\"align-items:center\"]],[false,{\".is-vertical.items-justified-right>ul\":false},[\"align-items:flex-end\"]],[false,{\".is-vertical.items-justified-right>ul .wp-block-navigation-link\":false,\".is-vertical.items-justified-right>ul .wp-block-pages-list__item\":false},[\"margin-right:0\",\"justify-content:flex-end\"]],[false,{\".wp-block-navigation__responsive-container\":false},[\"display:none\",\"position:fixed\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"z-index:1\",\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"display:flex\",\"flex-direction:column\",\"overflow:auto\",\"z-index:100000\",\"padding:24px\",\"background-color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container\":false},[\"display:flex\",\"flex-direction:column\",\"margin-left:auto\",\"margin-right:auto\",\"align-items:flex-start\",\"line-height:48px\",\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container .wp-block-page-list\":false},[\"flex-direction:column\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link .wp-block-navigation-link__container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item .submenu-container:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open)\":false},[\"display:flex\",\"flex-direction:row\",\"position:relative\",\"background-color:inherit\"]],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__responsive-container-close\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .submenu-container.submenu-container.submenu-container.submenu-container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link__container.wp-block-navigation-link__container.wp-block-navigation-link__container.wp-block-navigation-link__container\":false},[\"left:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:#fff\",\"color:#000\"]],[false,{\".wp-block-navigation__responsive-container-close\":false,\".wp-block-navigation__responsive-container-open\":false},[\"vertical-align:middle\",\"cursor:pointer\",\"color:currentColor\",\"background:transparent\",\"border:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container-close svg\":false,\".wp-block-navigation__responsive-container-open svg\":false},[\"fill:currentColor\",\"pointer-events:none\",\"display:block\",\"width:24px\",\"height:24px\"]],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:flex\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:none\"]],[false,\"}\"],[false,{\".items-justified-left .wp-block-navigation__responsive-container-open\":false},[\"margin-left:0\",\"margin-right:auto\"]],[false,{\".items-justified-center .wp-block-navigation__responsive-container-open\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".items-justified-right .wp-block-navigation__responsive-container-open\":false},[\"margin-left:auto\",\"margin-right:0\"]],[false,{\".wp-block-navigation__responsive-container-close\":false},[\"position:absolute\",\"top:24px\",\"right:24px\",\"z-index:2\"]],[false,{\".wp-block-navigation__responsive-close\":false},[\"width:100%\"]],[false,{\".is-menu-open .wp-block-navigation__responsive-close\":false,\".is-menu-open .wp-block-navigation__responsive-container-content\":false,\".is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"width:100%\",\"height:100%\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list__submenu-icon\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .has-child .submenu-container\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .has-child .wp-block-navigation-link__container\":false},[\"position:relative\",\"opacity:1\",\"visibility:visible\",\"padding:0 0 0 32px\",\"border:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item\":false},[\"flex-direction:column\",\"align-items:flex-start\"]],[false,{\"html.has-modal-open\":false},[\"overflow:hidden\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__label\":false},[\"word-break:normal\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-navigation .wp-block-home-link__content\":false},[\"color:inherit\",\"display:block\",\"padding:.5em 1em\"]],[false,{\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content:focus\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content:focus\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-home-link__container\":false},[\"background-color:#fff\",\"color:#000\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-home-link__container .wp-block-home-link__container\":false},[\"top:-1px\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false},[\"display:flex\",\"flex-wrap:wrap\",\"background-color:inherit\"]],[false,{\".wp-block-navigation .wp-block-pages-list__item\":false},[\"background-color:inherit\"]],[false,{\".wp-block-navigation .wp-block-page-list__submenu-icon\":false},[\"display:none\"]],[false,{\".is-open .wp-block-navigation__container .wp-block-page-list\":false,\".is-vertical .wp-block-navigation__container .wp-block-page-list\":false,\".wp-block-navigation .show-submenu-icons .wp-block-page-list__submenu-icon\":false},[\"display:block\"]],[false,\"@media (min-width:480px){\"],[false,{\".is-open .wp-block-navigation__container .wp-block-page-list\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".items-justified-space-between .wp-block-page-list\":false},[\"display:contents\"]],[false,{\".is-small-text\":false},[\"font-size:.875em\"]],[false,{\".is-regular-text\":false},[\"font-size:1em\"]],[false,{\".is-large-text\":false},[\"font-size:2.25em\"]],[false,{\".is-larger-text\":false},[\"font-size:3em\"]],[false,{\".has-drop-cap:not(:focus):first-letter\":false},[\"float:left\",\"font-size:8.4em\",\"line-height:.68\",\"font-weight:100\",\"margin:.05em .1em 0 0\",\"text-transform:uppercase\",\"font-style:normal\"]],[false,{\"p.has-drop-cap.has-background\":false},[\"overflow:hidden\"]],[false,{\"p.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\"p.has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-post-author\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-author__byline\":false},[\"width:100%\",\"margin-top:0\",\"margin-bottom:0\",\"font-size:.5em\"]],[false,{\".wp-block-post-author__avatar\":false},[\"margin-right:1em\"]],[false,{\".wp-block-post-author__bio\":false},[\"margin-bottom:.7em\",\"font-size:.7em\"]],[false,{\".wp-block-post-author__content\":false},[\"flex-grow:1\",\"flex-basis:0\"]],[false,{\".wp-block-post-author__name\":false},[\"font-weight:700\",\"margin:0\"]],[false,{\".wp-block-post-comments .commentlist\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .commentlist .comment\":false},[\"min-height:2.25em\",\"padding-left:3.25em\"]],[false,{\".wp-block-post-comments .commentlist .comment p\":false},[\"font-size:.875em\",\"line-height:1.8\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-post-comments .commentlist .children\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .comment-author\":false},[\"line-height:1.5\",\"margin-left:-3.25em\"]],[false,{\".wp-block-post-comments .comment-author .avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-post-comments .comment-author cite\":false},[\"font-style:normal\"]],[false,{\".wp-block-post-comments .comment-meta\":false},[\"line-height:1.5\",\"margin-left:-3.25em\"]],[false,{\".wp-block-post-comments .comment-body .commentmetadata\":false},[\"font-size:.75em\"]],[false,{\".wp-block-post-comments .comment-form-author label\":false,\".wp-block-post-comments .comment-form-comment label\":false,\".wp-block-post-comments .comment-form-email label\":false,\".wp-block-post-comments .comment-form-url label\":false},[\"display:block\"]],[false,{\".wp-block-post-comments .comment-form-comment textarea\":false},[\"box-sizing:border-box\",\"width:100%\"]],[false,{\".wp-block-post-comments .reply\":false},[\"font-size:.75em\",\"margin-bottom:1.4em\"]],[false,{\".wp-block-post-comments input\":false,\".wp-block-post-comments textarea\":false},[\"border:1px solid #949494\"]],[false,{\".wp-block-post-comments-form input[type=submit]\":false},[\"border:none\",\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"text-align:center\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-post-excerpt__more-link\":false,\".wp-block-post-title a\":false},[\"display:inline-block\"]],[false,{\".wp-block-preformatted\":false},[\"white-space:pre-wrap\"]],[false,{\".wp-block-preformatted.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-pullquote\":false},[\"margin:0 0 1em\",\"padding:3em 0\",\"text-align:center\"]],[false,{\".wp-block-pullquote.alignleft\":false,\".wp-block-pullquote.alignright\":false},[\"max-width:420px\"]],[false,{\".wp-block-pullquote.alignleft p\":false,\".wp-block-pullquote.alignright p\":false},[\"font-size:1.25em\"]],[false,{\".wp-block-pullquote p\":false},[\"font-size:1.75em\",\"line-height:1.6\"]],[false,{\".wp-block-pullquote cite\":false,\".wp-block-pullquote footer\":false},[\"position:relative\"]],[false,{\".wp-block-pullquote .has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote:not(.is-style-solid-color)\":false},[\"background:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color\":false},[\"border:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote\":false},[\"margin-left:auto\",\"margin-right:auto\",\"text-align:left\",\"max-width:60%\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote p\":false},[\"margin-top:0\",\"margin-bottom:0\",\"font-size:2em\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote cite\":false},[\"text-transform:none\",\"font-style:normal\"]],[false,{\".wp-block-pullquote cite\":false},[\"color:inherit\"]],[false,{\".wp-block-post-template\":false,\".wp-block-query-loop\":false},[\"max-width:100%\",\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-post-template li\":false,\".wp-block-query-loop li\":false},[\"clear:both\"]],[false,{\".wp-block-post-template.is-flex-container\":false,\".wp-block-query-loop.is-flex-container\":false},[\"flex-direction:row\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-template.is-flex-container li\":false,\".wp-block-query-loop.is-flex-container li\":false},[\"margin:0 0 1.25em\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-post-template.is-flex-container li\":false,\".wp-block-query-loop.is-flex-container li\":false},[\"margin-right:1.25em\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li:nth-child(2n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li:nth-child(3n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li:nth-child(4n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li:nth-child(5n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li:nth-child(6n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".wp-block-query-pagination\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\"]],[false,{\".wp-block-query-pagination>.wp-block-query-pagination-next\":false,\".wp-block-query-pagination>.wp-block-query-pagination-numbers\":false,\".wp-block-query-pagination>.wp-block-query-pagination-previous\":false},[\"display:inline-block\",\"margin-right:.5em\",\"margin-bottom:.5em\"]],[false,{\".wp-block-query-pagination>.wp-block-query-pagination-next:last-child\":false,\".wp-block-query-pagination>.wp-block-query-pagination-numbers:last-child\":false,\".wp-block-query-pagination>.wp-block-query-pagination-previous:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-quote.is-large\":false,\".wp-block-quote.is-style-large\":false},[\"margin-bottom:1em\",\"padding:0 1em\"]],[false,{\".wp-block-quote.is-large p\":false,\".wp-block-quote.is-style-large p\":false},[\"font-size:1.5em\",\"font-style:italic\",\"line-height:1.6\"]],[false,{\".wp-block-quote.is-large cite\":false,\".wp-block-quote.is-large footer\":false,\".wp-block-quote.is-style-large cite\":false,\".wp-block-quote.is-style-large footer\":false},[\"font-size:1.125em\",\"text-align:right\"]],[false,{\".wp-block-rss.wp-block-rss\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-rss.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-rss.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-rss.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\",\"list-style:none\"]],[false,{\".wp-block-rss.is-grid li\":false},[\"margin:0 1em 1em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-rss.columns-2 li\":false},[\"width:calc(50% - 1em)\"]],[false,{\".wp-block-rss.columns-3 li\":false},[\"width:calc(33.33333% - 1em)\"]],[false,{\".wp-block-rss.columns-4 li\":false},[\"width:calc(25% - 1em)\"]],[false,{\".wp-block-rss.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-rss.columns-6 li\":false},[\"width:calc(16.66667% - 1em)\"]],[false,\"}\"],[false,{\".wp-block-rss__item-author\":false,\".wp-block-rss__item-publish-date\":false},[\"display:block\",\"color:#555\",\"font-size:.8125em\"]],[false,{\".wp-block-search .wp-block-search__button\":false},[\"background:#f7f7f7\",\"border:1px solid #ccc\",\"padding:.375em .625em\",\"color:#32373c\",\"margin-left:.625em\",\"word-break:normal\"]],[false,{\".wp-block-search .wp-block-search__button.has-icon\":false},[\"line-height:0\"]],[false,{\".wp-block-search .wp-block-search__button svg\":false},[\"min-width:1.5em\",\"min-height:1.5em\"]],[false,{\".wp-block-search .wp-block-search__inside-wrapper\":false},[\"display:flex\",\"flex:auto\",\"flex-wrap:nowrap\",\"max-width:100%\"]],[false,{\".wp-block-search .wp-block-search__label\":false},[\"width:100%\"]],[false,{\".wp-block-search .wp-block-search__input\":false},[\"flex-grow:1\",\"min-width:3em\",\"border:1px solid #949494\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__button\":false},[\"margin-left:0\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper\":false},[\"padding:4px\",\"border:1px solid #949494\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input\":false},[\"border-radius:0\",\"border:none\",\"padding:0 0 0 .25em\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus\":false},[\"outline:none\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button\":false},[\"padding:.125em .5em\"]],[false,{\".wp-block-search.aligncenter .wp-block-search__inside-wrapper\":false},[\"margin:auto\"]],[false,{\".wp-block-separator\":false},[\"border-top:1px solid\",\"border-bottom:1px solid\"]],[false,{\".wp-block-separator.is-style-wide\":false},[\"border-bottom-width:1px\"]],[false,{\".wp-block-separator.is-style-dots\":false},[\"border:none\",\"text-align:center\",\"width:none\",\"line-height:1\",\"height:auto\"]],[false,{\".wp-block-separator.is-style-dots:not(#_#_#_#_#_#_#_)\":false},[\"background:none\"]],[false,{\".wp-block-separator.is-style-dots:before\":false},[\"content:\\\"\\u00b7\\u00b7\\u00b7\\\"\",\"color:currentColor\",\"font-size:1.5em\",\"letter-spacing:2em\",\"padding-left:2em\",\"font-family:serif\"]],[false,{\".wp-block-site-logo\":false},[\"line-height:0\"]],[false,{\".wp-block-site-logo a\":false},[\"display:inline-block\"]],[false,{\".wp-block-site-logo.is-default-size amp-img\":false,\".wp-block-site-logo.is-default-size amp-anim\":false},[\"width:120px\",\"height:auto\"]],[false,{\".wp-block-site-logo .aligncenter\":false},[\"display:table\"]],[false,{\".wp-block-site-logo.is-style-rounded amp-img\":false,\".wp-block-site-logo.is-style-rounded amp-anim\":false},[\"border-radius:9999px\"]],[false,{\".wp-block-social-links\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding-left:0\",\"padding-right:0\",\"text-indent:0\",\"margin-left:0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false,\".wp-block-social-links .wp-social-link a:hover\":false},[\"text-decoration:none\",\"border-bottom:0\",\"box-shadow:none\"]],[false,{\".wp-block-social-links .wp-social-link.wp-social-link.wp-social-link\":false},[\"margin:4px 8px 4px 0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false},[\"padding:.25em\"]],[false,{\".wp-block-social-links .wp-social-link svg\":false},[\"width:1em\",\"height:1em\"]],[false,{\".wp-block-social-links.has-small-icon-size\":false},[\"font-size:16px\"]],[false,{\".wp-block-social-links\":false,\".wp-block-social-links.has-normal-icon-size\":false},[\"font-size:24px\"]],[false,{\".wp-block-social-links.has-large-icon-size\":false},[\"font-size:36px\"]],[false,{\".wp-block-social-links.has-huge-icon-size\":false},[\"font-size:48px\"]],[false,{\".wp-block-social-links.aligncenter\":false},[\"justify-content:center\",\"display:flex\"]],[false,{\".wp-block-social-links.alignright\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-social-link\":false},[\"display:block\",\"border-radius:9999px\",\"transition:transform .1s ease\",\"height:auto\"]],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-social-link\":false},[\"transition-duration:0s\",\"transition-delay:0s\"]],[false,\"}\"],[false,{\".wp-block-social-link a\":false},[\"display:block\",\"line-height:0\",\"transition:transform .1s ease\"]],[false,{\".wp-block-social-link:hover\":false},[\"transform:scale(1.1)\"]],[false,{\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:active\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:hover\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:visited\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg\":false},[\"color:currentColor\",\"fill:currentColor\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link\":false},[\"background-color:#f0f0f0\",\"color:#444\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon\":false},[\"background-color:#f90\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp\":false},[\"background-color:#1ea0c3\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance\":false},[\"background-color:#0757fe\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen\":false},[\"background-color:#1e1f26\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart\":false},[\"background-color:#02e49b\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble\":false},[\"background-color:#e94c89\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox\":false},[\"background-color:#4280ff\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy\":false},[\"background-color:#f45800\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook\":false},[\"background-color:#1778f2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr\":false},[\"background-color:#0461dd\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare\":false},[\"background-color:#e65678\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github\":false},[\"background-color:#24292d\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads\":false},[\"background-color:#eceadd\",\"color:#382110\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google\":false},[\"background-color:#ea4434\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram\":false},[\"background-color:#f00075\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm\":false},[\"background-color:#e21b24\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin\":false},[\"background-color:#0d66c2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon\":false},[\"background-color:#3288d4\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium\":false},[\"background-color:#02ab6c\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup\":false},[\"background-color:#f6405f\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon\":false},[\"background-color:#ff424d\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest\":false},[\"background-color:#e60122\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket\":false},[\"background-color:#ef4155\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit\":false},[\"background-color:#fe4500\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype\":false},[\"background-color:#0478d7\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat\":false},[\"background-color:#fefc00\",\"color:#fff\",\"stroke:#000\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud\":false},[\"background-color:#ff5600\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify\":false},[\"background-color:#1bd760\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram\":false},[\"background-color:#2aabee\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr\":false},[\"background-color:#011835\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch\":false},[\"background-color:#6440a4\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter\":false},[\"background-color:#1da1f2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo\":false},[\"background-color:#1eb7ea\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk\":false},[\"background-color:#4680c2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress\":false},[\"background-color:#3499cd\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp\":false},[\"background-color:#d32422\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube\":false},[\"background-color:red\",\"color:#fff\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link\":false},[\"background:none\",\"padding:4px\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-amazon\":false},[\"color:#f90\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp\":false},[\"color:#1ea0c3\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-behance\":false},[\"color:#0757fe\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-codepen\":false},[\"color:#1e1f26\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-deviantart\":false},[\"color:#02e49b\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-dribbble\":false},[\"color:#e94c89\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-dropbox\":false},[\"color:#4280ff\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-etsy\":false},[\"color:#f45800\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-facebook\":false},[\"color:#1778f2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx\":false},[\"color:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-flickr\":false},[\"color:#0461dd\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-foursquare\":false},[\"color:#e65678\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-github\":false},[\"color:#24292d\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-goodreads\":false},[\"color:#382110\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-google\":false},[\"color:#ea4434\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-instagram\":false},[\"color:#f00075\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-lastfm\":false},[\"color:#e21b24\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-linkedin\":false},[\"color:#0d66c2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-mastodon\":false},[\"color:#3288d4\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-medium\":false},[\"color:#02ab6c\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-meetup\":false},[\"color:#f6405f\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-patreon\":false},[\"color:#ff424d\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-pinterest\":false},[\"color:#e60122\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-pocket\":false},[\"color:#ef4155\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-reddit\":false},[\"color:#fe4500\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-skype\":false},[\"color:#0478d7\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-snapchat\":false},[\"color:#fff\",\"stroke:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud\":false},[\"color:#ff5600\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-spotify\":false},[\"color:#1bd760\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-telegram\":false},[\"color:#2aabee\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-tiktok\":false},[\"color:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-tumblr\":false},[\"color:#011835\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-twitch\":false},[\"color:#6440a4\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-twitter\":false},[\"color:#1da1f2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-vimeo\":false},[\"color:#1eb7ea\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-vk\":false},[\"color:#4680c2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-wordpress\":false},[\"color:#3499cd\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-yelp\":false},[\"color:#d32422\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-youtube\":false},[\"color:red\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link\":false},[\"width:auto\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link a\":false},[\"padding-left:.66667em\",\"padding-right:.66667em\"]],[false,{\".wp-block-spacer\":false},[\"clear:both\"]],[false,{\".wp-block-tag-cloud.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-tag-cloud.alignfull\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".wp-block-table\":false},[\"margin:0 0 1em\",\"overflow-x:auto\"]],[false,{\".wp-block-table table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout\":false},[\"table-layout:fixed\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout td\":false,\".wp-block-table .has-fixed-layout th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table.aligncenter\":false,\".wp-block-table.alignleft\":false,\".wp-block-table.alignright\":false},[\"display:table\",\"width:auto\"]],[false,{\".wp-block-table.aligncenter td\":false,\".wp-block-table.aligncenter th\":false,\".wp-block-table.alignleft td\":false,\".wp-block-table.alignleft th\":false,\".wp-block-table.alignright td\":false,\".wp-block-table.alignright th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table .has-subtle-light-gray-background-color\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table .has-subtle-pale-green-background-color\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table .has-subtle-pale-blue-background-color\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table .has-subtle-pale-pink-background-color\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes\":false},[\"border-spacing:0\",\"border-collapse:inherit\",\"background-color:transparent\",\"border-bottom:1px solid #f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes tbody tr:nth-child(odd)\":false},[\"background-color:#f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes td\":false,\".wp-block-table.is-style-stripes th\":false},[\"border-color:transparent\"]],[false,{\".wp-block-table .has-border-color>*\":false,\".wp-block-table .has-border-color td\":false,\".wp-block-table .has-border-color th\":false,\".wp-block-table .has-border-color tr\":false},[\"border-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-style]>*\":false,\".wp-block-table table[data-amp-original-style*=border-style] td\":false,\".wp-block-table table[data-amp-original-style*=border-style] th\":false,\".wp-block-table table[data-amp-original-style*=border-style] tr\":false},[\"border-style:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-width]>*\":false,\".wp-block-table table[data-amp-original-style*=border-width] td\":false,\".wp-block-table table[data-amp-original-style*=border-width] th\":false,\".wp-block-table table[data-amp-original-style*=border-width] tr\":false},[\"border-width:inherit\"]],[false,{\".wp-block-text-columns\":false,\".wp-block-text-columns.aligncenter\":false},[\"display:flex\"]],[false,{\".wp-block-text-columns .wp-block-column\":false},[\"margin:0 1em\",\"padding:0\"]],[false,{\".wp-block-text-columns .wp-block-column:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-text-columns .wp-block-column:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-text-columns.columns-2 .wp-block-column\":false},[\"width:50%\"]],[false,{\".wp-block-text-columns.columns-3 .wp-block-column\":false},[\"width:33.33333%\"]],[false,{\".wp-block-text-columns.columns-4 .wp-block-column\":false},[\"width:25%\"]],[false,{\"pre.wp-block-verse\":false},[\"font-family:inherit\",\"overflow:auto\",\"white-space:pre-wrap\"]],[false,{\".wp-block-video\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-video [poster]\":false},[\"-o-object-fit:cover\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".wp-block-video.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-video figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-post-featured-image\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".wp-block-post-featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-post-featured-image amp-img\":false,\".wp-block-post-featured-image amp-anim\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".wp-block-post-featured-image.alignfull amp-img\":false,\".wp-block-post-featured-image.alignfull amp-anim\":false,\".wp-block-post-featured-image.alignwide amp-img\":false,\".wp-block-post-featured-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\":root .has-pale-pink-background-color\":false},[\"background-color:#f78da7\"]],[false,{\":root .has-vivid-red-background-color\":false},[\"background-color:#cf2e2e\"]],[false,{\":root .has-luminous-vivid-orange-background-color\":false},[\"background-color:#ff6900\"]],[false,{\":root .has-luminous-vivid-amber-background-color\":false},[\"background-color:#fcb900\"]],[false,{\":root .has-light-green-cyan-background-color\":false},[\"background-color:#7bdcb5\"]],[false,{\":root .has-vivid-green-cyan-background-color\":false},[\"background-color:#00d084\"]],[false,{\":root .has-pale-cyan-blue-background-color\":false},[\"background-color:#8ed1fc\"]],[false,{\":root .has-vivid-cyan-blue-background-color\":false},[\"background-color:#0693e3\"]],[false,{\":root .has-vivid-purple-background-color\":false},[\"background-color:#9b51e0\"]],[false,{\":root .has-white-background-color\":false},[\"background-color:#fff\"]],[false,{\":root .has-very-light-gray-background-color\":false},[\"background-color:#eee\"]],[false,{\":root .has-cyan-bluish-gray-background-color\":false},[\"background-color:#abb8c3\"]],[false,{\":root .has-very-dark-gray-background-color\":false},[\"background-color:#313131\"]],[false,{\":root .has-black-background-color\":false},[\"background-color:#000\"]],[false,{\":root .has-pale-pink-color\":false},[\"color:#f78da7\"]],[false,{\":root .has-vivid-red-color\":false},[\"color:#cf2e2e\"]],[false,{\":root .has-luminous-vivid-orange-color\":false},[\"color:#ff6900\"]],[false,{\":root .has-luminous-vivid-amber-color\":false},[\"color:#fcb900\"]],[false,{\":root .has-light-green-cyan-color\":false},[\"color:#7bdcb5\"]],[false,{\":root .has-vivid-green-cyan-color\":false},[\"color:#00d084\"]],[false,{\":root .has-pale-cyan-blue-color\":false},[\"color:#8ed1fc\"]],[false,{\":root .has-vivid-cyan-blue-color\":false},[\"color:#0693e3\"]],[false,{\":root .has-vivid-purple-color\":false},[\"color:#9b51e0\"]],[false,{\":root .has-white-color\":false},[\"color:#fff\"]],[false,{\":root .has-very-light-gray-color\":false},[\"color:#eee\"]],[false,{\":root .has-cyan-bluish-gray-color\":false},[\"color:#abb8c3\"]],[false,{\":root .has-very-dark-gray-color\":false},[\"color:#313131\"]],[false,{\":root .has-black-color\":false},[\"color:#000\"]],[false,{\":root .has-vivid-cyan-blue-to-vivid-purple-gradient-background\":false},[\"background:linear-gradient(135deg,#0693e3,#9b51e0)\"]],[false,{\":root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background\":false},[\"background:linear-gradient(135deg,#00d084,#0693e3)\"]],[false,{\":root .has-light-green-cyan-to-vivid-green-cyan-gradient-background\":false},[\"background:linear-gradient(135deg,#7adcb4,#00d082)\"]],[false,{\":root .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background\":false},[\"background:linear-gradient(135deg,#fcb900,#ff6900)\"]],[false,{\":root .has-luminous-vivid-orange-to-vivid-red-gradient-background\":false},[\"background:linear-gradient(135deg,#ff6900,#cf2e2e)\"]],[false,{\":root .has-very-light-gray-to-cyan-bluish-gray-gradient-background\":false},[\"background:linear-gradient(135deg,#eee,#a9b8c3)\"]],[false,{\":root .has-cool-to-warm-spectrum-gradient-background\":false},[\"background:linear-gradient(135deg,#4aeadc,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c)\"]],[false,{\":root .has-blush-light-purple-gradient-background\":false},[\"background:linear-gradient(135deg,#ffceec,#9896f0)\"]],[false,{\":root .has-blush-bordeaux-gradient-background\":false},[\"background:linear-gradient(135deg,#fecda5,#fe2d2d 50%,#6b003e)\"]],[false,{\":root .has-purple-crush-gradient-background\":false},[\"background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)\"]],[false,{\":root .has-luminous-dusk-gradient-background\":false},[\"background:linear-gradient(135deg,#ffcb70,#c751c0 50%,#4158d0)\"]],[false,{\":root .has-hazy-dawn-gradient-background\":false},[\"background:linear-gradient(135deg,#faaca8,#dad0ec)\"]],[false,{\":root .has-pale-ocean-gradient-background\":false},[\"background:linear-gradient(135deg,#fff5cb,#b6e3d4 50%,#33a7b5)\"]],[false,{\":root .has-electric-grass-gradient-background\":false},[\"background:linear-gradient(135deg,#caf880,#71ce7e)\"]],[false,{\":root .has-subdued-olive-gradient-background\":false},[\"background:linear-gradient(135deg,#fafae1,#67a671)\"]],[false,{\":root .has-atomic-cream-gradient-background\":false},[\"background:linear-gradient(135deg,#fdd79a,#004a59)\"]],[false,{\":root .has-nightshade-gradient-background\":false},[\"background:linear-gradient(135deg,#330968,#31cdcf)\"]],[false,{\":root .has-midnight-gradient-background\":false},[\"background:linear-gradient(135deg,#020381,#2874fc)\"]],[false,{\".has-small-font-size\":false},[\"font-size:.8125em\"]],[false,{\".has-normal-font-size\":false,\".has-regular-font-size\":false},[\"font-size:1em\"]],[false,{\".has-medium-font-size\":false},[\"font-size:1.25em\"]],[false,{\".has-large-font-size\":false},[\"font-size:2.25em\"]],[false,{\".has-huge-font-size\":false,\".has-larger-font-size\":false},[\"font-size:2.625em\"]],[false,{\".has-text-align-center\":false},[\"text-align:center\"]],[false,{\".has-text-align-left\":false},[\"text-align:left\"]],[false,{\".has-text-align-right\":false},[\"text-align:right\"]],[false,{\"#end-resizable-editor-section\":false},[\"display:none\"]],[false,{\".aligncenter\":false},[\"clear:both\"]],[false,{\".items-justified-left\":false},[\"justify-content:flex-start\"]],[false,{\".items-justified-center\":false},[\"justify-content:center\"]],[false,{\".items-justified-right\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between\":false},[\"justify-content:space-between\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip:rect(1px,1px,1px,1px)\",\"-webkit-clip-path:inset(50%)\",\"clip-path:inset(50%)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#ddd\",\"-webkit-clip-path:none\",\"clip-path:none\",\"color:#444\",\"display:block\",\"font-size:1em\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[false,{\".screen-reader-text:focus:not(#_#_#_#_#_#_#_)\":false},[\"clip:auto\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2731,\"final_size\":133,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"contact-form-7-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/css\\/styles.css?ver=5.5.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"212b20af9d955c5d566d0549c68d0998\",\"parse_time\":0.03908491134643555,\"shake_time\":5.412101745605469e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".wpcf7 .screen-reader-response\":false},[\"position:absolute\",\"overflow:hidden\",\"clip:rect(1px,1px,1px,1px)\",\"clip-path:inset(50%)\",\"height:1px\",\"width:1px\",\"margin:-1px\",\"padding:0\",\"border:0\"]],[false,{\".wpcf7 .screen-reader-response:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".wpcf7 form .wpcf7-response-output\":false},[\"margin:2em .5em 1em\",\"padding:.2em 1em\",\"border:2px solid #00a0d2\"]],[false,{\".wpcf7 form.init .wpcf7-response-output\":false,\".wpcf7 form.resetting .wpcf7-response-output\":false,\".wpcf7 form.submitting .wpcf7-response-output\":false},[\"display:none\"]],[false,{\".wpcf7 form.sent .wpcf7-response-output\":false},[\"border-color:#46b450\"]],[false,{\".wpcf7 form.failed .wpcf7-response-output\":false,\".wpcf7 form.aborted .wpcf7-response-output\":false},[\"border-color:#dc3232\"]],[false,{\".wpcf7 form.spam .wpcf7-response-output\":false},[\"border-color:#f56e28\"]],[false,{\".wpcf7 form.invalid .wpcf7-response-output\":false,\".wpcf7 form.unaccepted .wpcf7-response-output\":false,\".wpcf7 form.payment-required .wpcf7-response-output\":false},[\"border-color:#ffb900\"]],[false,{\".wpcf7-form-control-wrap\":false},[\"position:relative\"]],[false,{\".wpcf7-not-valid-tip\":false},[\"color:#dc3232\",\"font-size:1em\",\"font-weight:normal\",\"display:block\"]],[false,{\".use-floating-validation-tip .wpcf7-not-valid-tip\":false},[\"position:relative\",\"top:-2ex\",\"left:1em\",\"z-index:100\",\"border:1px solid #dc3232\",\"background:#fff\",\"padding:.2em .8em\",\"width:24em\"]],[false,{\".wpcf7-list-item\":false},[\"display:inline-block\",\"margin:0 0 0 1em\"]],[false,{\".wpcf7-list-item-label::before\":false,\".wpcf7-list-item-label::after\":false},[\"content:\\\" \\\"\"]],[false,{\".wpcf7-spinner\":false},[\"visibility:hidden\",\"display:inline-block\",\"background-color:#23282d\",\"opacity:.75\",\"width:24px\",\"height:24px\",\"border:none\",\"border-radius:100%\",\"padding:0\",\"margin:0 24px\",\"position:relative\"]],[false,{\"form.submitting .wpcf7-spinner\":false},[\"visibility:visible\"]],[false,{\".wpcf7-spinner::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"background-color:#fbfbfc\",\"top:4px\",\"left:4px\",\"width:6px\",\"height:6px\",\"border:none\",\"border-radius:100%\",\"transform-origin:8px 8px\",\"animation-name:spin\",\"animation-duration:1000ms\",\"animation-timing-function:linear\",\"animation-iteration-count:infinite\"]],[false,\"@media (prefers-reduced-motion: reduce){\"],[false,{\".wpcf7-spinner::before\":false},[\"animation-name:blink\",\"animation-duration:2000ms\"]],[false,\"}\"],[true,\"@keyframes spin{\"],[true,\"from{transform:rotate(0deg)}\"],[true,\"to{transform:rotate(360deg)}\"],[true,\"}@keyframes blink{\"],[true,\"from{opacity:0}\"],[true,\"50%{opacity:1}\"],[true,\"to{opacity:0}\"],[true,\"}\"],[false,{\".wpcf7 input[type=\\\"file\\\"]\":false},[\"cursor:pointer\"]],[false,{\".wpcf7 input[type=\\\"file\\\"]:disabled\":false},[\"cursor:default\"]],[false,{\".wpcf7 .wpcf7-submit:disabled\":false},[\"cursor:not-allowed\"]],[false,{\".wpcf7 input[type=\\\"url\\\"]\":false,\".wpcf7 input[type=\\\"email\\\"]\":false,\".wpcf7 input[type=\\\"tel\\\"]\":false},[\"direction:ltr\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":3027,\"final_size\":290,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"emcs_calendly_css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/embed-calendly-scheduling\\/assets\\/css\\/widget.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"embed-calendly-scheduling\",\"file\":\"embed-calendly-scheduling.php\",\"line\":39,\"function\":\"emcs_calendly_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"99d6ad74e1d82f040a9c3a773af31054\",\"parse_time\":0.053494930267333984,\"shake_time\":5.2928924560546875e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".calendly-inline-widget\":false,\".calendly-inline-widget *\":false,\".calendly-badge-widget\":false,\".calendly-badge-widget *\":false,\".calendly-overlay\":false,\".calendly-overlay *\":false},[\"font-size:16px\",\"line-height:1.2em\"]],[false,{\".calendly-inline-widget amp-iframe\":false,\".calendly-badge-widget amp-iframe\":false,\".calendly-overlay amp-iframe\":false},[\"display:inline\",\"width:100%\",\"height:100%\"]],[false,{\".calendly-popup-content\":false},[\"position:relative\"]],[false,{\".calendly-popup-content.calendly-mobile\":false},[\"-webkit-overflow-scrolling:touch\",\"overflow-y:auto\"]],[false,{\".calendly-overlay\":false},[\"position:fixed\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"overflow:hidden\",\"z-index:9999\",\"background-color:#a5a5a5\",\"background-color:rgba(31,31,31,.4)\"]],[false,{\".calendly-overlay .calendly-close-overlay\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\"]],[false,{\".calendly-overlay .calendly-popup\":false},[\"box-sizing:border-box\",\"position:absolute\",\"top:50%\",\"left:50%\",\"-webkit-transform:translateY(-50%) translateX(-50%)\",\"transform:translateY(-50%) translateX(-50%)\",\"width:80%\",\"min-width:900px\",\"max-width:1000px\",\"height:90%\",\"max-height:680px\"]],[false,\"@media (max-width:975px){\"],[false,{\".calendly-overlay .calendly-popup\":false},[\"position:fixed\",\"top:50px\",\"left:0\",\"right:0\",\"bottom:0\",\"-webkit-transform:none\",\"transform:none\",\"width:100%\",\"height:auto\",\"min-width:0\",\"max-height:none\"]],[false,\"}\"],[false,{\".calendly-overlay .calendly-popup .calendly-popup-content\":false},[\"height:100%\"]],[false,{\".calendly-overlay .calendly-popup-close\":false},[\"position:absolute\",\"top:25px\",\"right:25px\",\"color:#fff\",\"width:19px\",\"height:19px\",\"cursor:pointer\",\"background:url(\\\"\\/assets\\/external\\/close-icon.svg\\\") no-repeat\",\"background-size:contain\"]],[false,\"@media (max-width:975px){\"],[false,{\".calendly-overlay .calendly-popup-close\":false},[\"top:15px\",\"right:15px\"]],[false,\"}\"],[false,{\".calendly-badge-widget\":false},[\"position:fixed\",\"right:20px\",\"bottom:15px\",\"z-index:9998\"]],[false,{\".calendly-badge-widget .calendly-badge-content\":false},[\"display:table-cell\",\"width:auto\",\"height:45px\",\"padding:0 30px\",\"border-radius:25px\",\"box-shadow:rgba(0,0,0,.25) 0 2px 5px\",\"font-family:sans-serif\",\"text-align:center\",\"vertical-align:middle\",\"font-weight:700\",\"font-size:14px\",\"color:#fff\",\"cursor:pointer\"]],[false,{\".calendly-badge-widget .calendly-badge-content.calendly-white\":false},[\"color:#666a73\"]],[false,{\".calendly-badge-widget .calendly-badge-content span\":false},[\"display:block\",\"font-size:12px\"]],[false,{\".calendly-spinner\":false},[\"position:absolute\",\"top:50%\",\"left:0\",\"right:0\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\",\"text-align:center\",\"z-index:-1\"]],[false,{\".calendly-spinner>div\":false},[\"display:inline-block\",\"width:18px\",\"height:18px\",\"background-color:#e1e1e1\",\"border-radius:50%\",\"vertical-align:middle\",\"-webkit-animation:calendly-bouncedelay 1.4s infinite ease-in-out\",\"animation:calendly-bouncedelay 1.4s infinite ease-in-out\",\"-webkit-animation-fill-mode:both\",\"animation-fill-mode:both\"]],[false,{\".calendly-spinner .calendly-bounce1\":false},[\"-webkit-animation-delay:-.32s\",\"animation-delay:-.32s\"]],[false,{\".calendly-spinner .calendly-bounce2\":false},[\"-webkit-animation-delay:-.16s\",\"animation-delay:-.16s\"]],[true,\"@-webkit-keyframes calendly-bouncedelay{\"],[true,\"0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}\"],[true,\"40%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes calendly-bouncedelay{\"],[true,\"0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}\"],[true,\"40%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,\"@media only screen and (max-device-width :768px){\"],[false,{\"#calendly-inline-widget:not(#_#_#_#_#_#_#_)\":false},[\"min-width:auto\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":89113,\"final_size\":5273,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"social_warfare-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/css\\/style.min.css?ver=4.3.0\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Script.php\",\"line\":94,\"function\":\"SWP_Script::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"e220b783a5a07d3a59270f77ece9859a\",\"parse_time\":1.1959950923919678,\"shake_time\":0.0014960765838623047,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".swp_social_panel.swp_default_full_color a\":true,\"html body .swp_social_panel.swp_individual_full_color .nc_tweetContainer:hover a\":true,\"body .swp_social_panel.swp_other_full_color:hover a\":true},[\"color:white\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_blogger\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_blogger:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_blogger:not(:hover)\":false},[\"border:1px solid #ff5722\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_blogger\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_blogger:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_blogger\":false},[\"background:#ff5722\",\"border:1px solid #ee3900\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_blogger\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_blogger:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_blogger\":false},[\"border-bottom:3px solid #ee3900\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_blogger a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_blogger a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_blogger a\":false},[\"color:#ff5722\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_blogger\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_blogger:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_blogger\":false},[\"background:transparent\",\"border:1px solid #ff5722\"]],[false,{\".swp-blogger\":false},[\"background:#ff5722\",\"border-color:#ee3900\"]],[false,{\".swp-blogger a\":false},[\"color:#ff5722\"]],[false,{\".swp-blogger a:hover\":false},[\"background:#ee3900\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_buffer\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_buffer:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_buffer:not(:hover)\":false},[\"border:1px solid #323b43\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_buffer\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_buffer:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_buffer\":false},[\"background:#323b43\",\"border:1px solid #1c2126\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_buffer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_buffer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_buffer\":false},[\"border-bottom:3px solid #1c2126\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_buffer a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_buffer a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_buffer a\":false},[\"color:#323b43\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_buffer\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_buffer:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_buffer\":false},[\"background:transparent\",\"border:1px solid #323b43\"]],[false,{\".swp-buffer\":false},[\"background:#323b43\",\"border-color:#1c2126\"]],[false,{\".swp-buffer a\":false},[\"color:#323b43\"]],[false,{\".swp-buffer a:hover\":false},[\"background:#1c2126\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_ello\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_ello:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_ello:not(:hover)\":false},[\"border:1px solid #000\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_ello\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_ello:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_ello\":false},[\"background:#000\",\"border:1px solid #000\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_ello\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_ello:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_ello\":false},[\"border-bottom:3px solid #000\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_ello a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_ello a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_ello a\":false},[\"color:#000\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_ello\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_ello:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_ello\":false},[\"background:transparent\",\"border:1px solid #000\"]],[false,{\".swp-ello\":false},[\"background:#000\",\"border-color:#000\"]],[false,{\".swp-ello a\":false},[\"color:#000\"]],[false,{\".swp-ello a:hover\":false},[\"background:#000\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_email\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_email:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_email:not(:hover)\":false},[\"border:1px solid #6bcce9\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_email\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_email:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_email\":false},[\"background:#6bcce9\",\"border:1px solid #3fbde2\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_email\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_email:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_email\":false},[\"border-bottom:3px solid #3fbde2\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_email a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_email a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_email a\":false},[\"color:#6bcce9\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_email\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_email:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_email\":false},[\"background:transparent\",\"border:1px solid #6bcce9\"]],[false,{\".swp-email\":false},[\"background:#6bcce9\",\"border-color:#3fbde2\"]],[false,{\".swp-email a\":false},[\"color:#6bcce9\"]],[false,{\".swp-email a:hover\":false},[\"background:#3fbde2\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_evernote\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_evernote:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_evernote:not(:hover)\":false},[\"border:1px solid #2dbe60\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_evernote\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_evernote:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_evernote\":false},[\"background:#2dbe60\",\"border:1px solid #23954b\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_evernote\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_evernote:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_evernote\":false},[\"border-bottom:3px solid #23954b\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_evernote a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_evernote a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_evernote a\":false},[\"color:#2dbe60\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_evernote\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_evernote:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_evernote\":false},[\"background:transparent\",\"border:1px solid #2dbe60\"]],[false,{\".swp-evernote\":false},[\"background:#2dbe60\",\"border-color:#23954b\"]],[false,{\".swp-evernote a\":false},[\"color:#2dbe60\"]],[false,{\".swp-evernote a:hover\":false},[\"background:#23954b\",\"color:#fff\"]],[true,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_facebook\":true,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_facebook:hover\":true,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_facebook:not(:hover)\":true},[\"border:1px solid #1877f2\"]],[true,{\".swp_social_panel.swp_default_full_color .swp_facebook\":true,\"html body .swp_social_panel.swp_individual_full_color .swp_facebook:hover\":true,\"body .swp_social_panel.swp_other_full_color:hover .swp_facebook\":true},[\"background:#1877f2\",\"border:1px solid #0b5fcc\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_facebook\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_facebook:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_facebook\":false},[\"border-bottom:3px solid #0b5fcc\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_facebook a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_facebook a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_facebook a\":false},[\"color:#1877f2\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_facebook\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_facebook:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_facebook\":false},[\"background:transparent\",\"border:1px solid #1877f2\"]],[false,{\".swp-facebook\":false},[\"background:#1877f2\",\"border-color:#0b5fcc\"]],[false,{\".swp-facebook a\":false},[\"color:#1877f2\"]],[false,{\".swp-facebook a:hover\":false},[\"background:#0b5fcc\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_flickr\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_flickr:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_flickr:not(:hover)\":false},[\"border:1px solid #ff0084\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_flickr\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_flickr:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_flickr\":false},[\"background:#ff0084\",\"border:1px solid #cc006a\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_flickr\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_flickr:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_flickr\":false},[\"border-bottom:3px solid #cc006a\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flickr a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flickr a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flickr a\":false},[\"color:#ff0084\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flickr\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flickr:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flickr\":false},[\"background:transparent\",\"border:1px solid #ff0084\"]],[false,{\".swp-flickr\":false},[\"background:#ff0084\",\"border-color:#cc006a\"]],[false,{\".swp-flickr a\":false},[\"color:#ff0084\"]],[false,{\".swp-flickr a:hover\":false},[\"background:#cc006a\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_flipboard\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_flipboard:not(:hover)\":false},[\"border:1px solid #bf2626\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_flipboard\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_flipboard\":false},[\"background:#bf2626\",\"border:1px solid #941e1e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_flipboard\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_flipboard\":false},[\"border-bottom:3px solid #941e1e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flipboard a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flipboard a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flipboard a\":false},[\"color:#bf2626\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flipboard\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flipboard\":false},[\"background:transparent\",\"border:1px solid #bf2626\"]],[false,{\".swp-flipboard\":false},[\"background:#bf2626\",\"border-color:#941e1e\"]],[false,{\".swp-flipboard a\":false},[\"color:#bf2626\"]],[false,{\".swp-flipboard a:hover\":false},[\"background:#941e1e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_hacker_news\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_hacker_news:not(:hover)\":false},[\"border:1px solid #d85623\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_hacker_news\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_hacker_news\":false},[\"background:#d85623\",\"border:1px solid #ac451c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_hacker_news\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_hacker_news\":false},[\"border-bottom:3px solid #ac451c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_hacker_news a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_hacker_news a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_hacker_news a\":false},[\"color:#d85623\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_hacker_news\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_hacker_news\":false},[\"background:transparent\",\"border:1px solid #d85623\"]],[false,{\".swp-hacker_news\":false},[\"background:#d85623\",\"border-color:#ac451c\"]],[false,{\".swp-hacker_news a\":false},[\"color:#d85623\"]],[false,{\".swp-hacker_news a:hover\":false},[\"background:#ac451c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_instagram\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_instagram:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_instagram:not(:hover)\":false},[\"border:1px solid #ea2454\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_instagram\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_instagram:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_instagram\":false},[\"background:#ea2454\",\"border:1px solid #c8133f\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_instagram\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_instagram:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_instagram\":false},[\"border-bottom:3px solid #c8133f\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_instagram a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_instagram a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_instagram a\":false},[\"color:#ea2454\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_instagram\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_instagram:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_instagram\":false},[\"background:transparent\",\"border:1px solid #ea2454\"]],[false,{\".swp-instagram\":false},[\"background:#ea2454\",\"border-color:#c8133f\"]],[false,{\".swp-instagram a\":false},[\"color:#ea2454\"]],[false,{\".swp-instagram a:hover\":false},[\"background:#c8133f\",\"color:#fff\"]],[true,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_linkedin\":true,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_linkedin:hover\":true,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_linkedin:not(:hover)\":true},[\"border:1px solid #2767b1\"]],[true,{\".swp_social_panel.swp_default_full_color .swp_linkedin\":true,\"html body .swp_social_panel.swp_individual_full_color .swp_linkedin:hover\":true,\"body .swp_social_panel.swp_other_full_color:hover .swp_linkedin\":true},[\"background:#2767b1\",\"border:1px solid #1e4f87\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_linkedin\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_linkedin\":false},[\"border-bottom:3px solid #1e4f87\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_linkedin a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_linkedin a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_linkedin a\":false},[\"color:#2767b1\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_linkedin\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_linkedin\":false},[\"background:transparent\",\"border:1px solid #2767b1\"]],[false,{\".swp-linkedin\":false},[\"background:#2767b1\",\"border-color:#1e4f87\"]],[false,{\".swp-linkedin a\":false},[\"color:#2767b1\"]],[false,{\".swp-linkedin a:hover\":false},[\"background:#1e4f87\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_medium\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_medium:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_medium:not(:hover)\":false},[\"border:1px solid #00ab6c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_medium\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_medium:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_medium\":false},[\"background:#00ab6c\",\"border:1px solid #00784c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_medium\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_medium:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_medium\":false},[\"border-bottom:3px solid #00784c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_medium a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_medium a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_medium a\":false},[\"color:#00ab6c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_medium\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_medium:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_medium\":false},[\"background:transparent\",\"border:1px solid #00ab6c\"]],[false,{\".swp-medium\":false},[\"background:#00ab6c\",\"border-color:#00784c\"]],[false,{\".swp-medium a\":false},[\"color:#00ab6c\"]],[false,{\".swp-medium a:hover\":false},[\"background:#00784c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_mix\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_mix:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_mix:not(:hover)\":false},[\"border:1px solid #f4812c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_mix\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_mix:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_mix\":false},[\"background:#f4812c\",\"border:1px solid #e1660c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_mix\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_mix:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_mix\":false},[\"border-bottom:3px solid #e1660c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_mix a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_mix a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_mix a\":false},[\"color:#f4812c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_mix\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_mix:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_mix\":false},[\"background:transparent\",\"border:1px solid #f4812c\"]],[false,{\".swp-mix\":false},[\"background:#f4812c\",\"border-color:#e1660c\"]],[false,{\".swp-mix a\":false},[\"color:#f4812c\"]],[false,{\".swp-mix a:hover\":false},[\"background:#e1660c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_more\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_more:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_more:not(:hover)\":false},[\"border:1px solid #ee464f\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_more\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_more:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_more\":false},[\"background:#ee464f\",\"border:1px solid #ea1723\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_more\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_more:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_more\":false},[\"border-bottom:3px solid #ea1723\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_more a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_more a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_more a\":false},[\"color:#ee464f\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_more\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_more:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_more\":false},[\"background:transparent\",\"border:1px solid #ee464f\"]],[false,{\".swp-more\":false},[\"background:#ee464f\",\"border-color:#ea1723\"]],[false,{\".swp-more a\":false},[\"color:#ee464f\"]],[false,{\".swp-more a:hover\":false},[\"background:#ea1723\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_parler\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_parler:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_parler:not(:hover)\":false},[\"border:1px solid #be1e2c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_parler\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_parler:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_parler\":false},[\"background:#be1e2c\",\"border:1px solid #921722\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_parler\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_parler:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_parler\":false},[\"border-bottom:3px solid #921722\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_parler a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_parler a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_parler a\":false},[\"color:#be1e2c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_parler\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_parler:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_parler\":false},[\"background:transparent\",\"border:1px solid #be1e2c\"]],[false,{\".swp-parler\":false},[\"background:#be1e2c\",\"border-color:#921722\"]],[false,{\".swp-parler a\":false},[\"color:#be1e2c\"]],[false,{\".swp-parler a:hover\":false},[\"background:#921722\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_periscope\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_periscope:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_periscope:not(:hover)\":false},[\"border:1px solid #3aa4c6\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_periscope\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_periscope:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_periscope\":false},[\"background:#3aa4c6\",\"border:1px solid #2e849f\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_periscope\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_periscope:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_periscope\":false},[\"border-bottom:3px solid #2e849f\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_periscope a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_periscope a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_periscope a\":false},[\"color:#3aa4c6\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_periscope\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_periscope:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_periscope\":false},[\"background:transparent\",\"border:1px solid #3aa4c6\"]],[false,{\".swp-periscope\":false},[\"background:#3aa4c6\",\"border-color:#2e849f\"]],[false,{\".swp-periscope a\":false},[\"color:#3aa4c6\"]],[false,{\".swp-periscope a:hover\":false},[\"background:#2e849f\",\"color:#fff\"]],[true,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_pinterest\":true,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_pinterest:hover\":true,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_pinterest:not(:hover)\":true},[\"border:1px solid #e60023\"]],[true,{\".swp_social_panel.swp_default_full_color .swp_pinterest\":true,\"html body .swp_social_panel.swp_individual_full_color .swp_pinterest:hover\":true,\"body .swp_social_panel.swp_other_full_color:hover .swp_pinterest\":true},[\"background:#e60023\",\"border:1px solid #b3001b\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_pinterest\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_pinterest\":false},[\"border-bottom:3px solid #b3001b\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pinterest a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pinterest a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pinterest a\":false},[\"color:#e60023\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pinterest\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pinterest\":false},[\"background:transparent\",\"border:1px solid #e60023\"]],[false,{\".swp-pinterest\":false},[\"background:#e60023\",\"border-color:#b3001b\"]],[false,{\".swp-pinterest a\":false},[\"color:#e60023\"]],[false,{\".swp-pinterest a:hover\":false},[\"background:#b3001b\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_pocket\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_pocket:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_pocket:not(:hover)\":false},[\"border:1px solid #ef4056\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_pocket\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_pocket:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_pocket\":false},[\"background:#ef4056\",\"border:1px solid #e9132e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_pocket\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_pocket:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_pocket\":false},[\"border-bottom:3px solid #e9132e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pocket a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pocket a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pocket a\":false},[\"color:#ef4056\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pocket\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pocket:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pocket\":false},[\"background:transparent\",\"border:1px solid #ef4056\"]],[false,{\".swp-pocket\":false},[\"background:#ef4056\",\"border-color:#e9132e\"]],[false,{\".swp-pocket a\":false},[\"color:#ef4056\"]],[false,{\".swp-pocket a:hover\":false},[\"background:#e9132e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_print\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_print:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_print:not(:hover)\":false},[\"border:1px solid #777\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_print\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_print:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_print\":false},[\"background:#777\",\"border:1px solid #5e5e5e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_print\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_print:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_print\":false},[\"border-bottom:3px solid #5e5e5e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_print a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_print a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_print a\":false},[\"color:#777\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_print\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_print:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_print\":false},[\"background:transparent\",\"border:1px solid #777\"]],[false,{\".swp-print\":false},[\"background:#777\",\"border-color:#5e5e5e\"]],[false,{\".swp-print a\":false},[\"color:#777\"]],[false,{\".swp-print a:hover\":false},[\"background:#5e5e5e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_reddit\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_reddit:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_reddit:not(:hover)\":false},[\"border:1px solid #f04b23\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_reddit\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_reddit:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_reddit\":false},[\"background:#f04b23\",\"border:1px solid #d2340e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_reddit\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_reddit:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_reddit\":false},[\"border-bottom:3px solid #d2340e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_reddit a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_reddit a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_reddit a\":false},[\"color:#f04b23\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_reddit\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_reddit:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_reddit\":false},[\"background:transparent\",\"border:1px solid #f04b23\"]],[false,{\".swp-reddit\":false},[\"background:#f04b23\",\"border-color:#d2340e\"]],[false,{\".swp-reddit a\":false},[\"color:#f04b23\"]],[false,{\".swp-reddit a:hover\":false},[\"background:#d2340e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_snapchat\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_snapchat:not(:hover)\":false},[\"border:1px solid #fffc00\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_snapchat\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_snapchat\":false},[\"background:#fffc00\",\"border:1px solid #ccca00\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_snapchat\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_snapchat\":false},[\"border-bottom:3px solid #ccca00\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_snapchat a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_snapchat a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_snapchat a\":false},[\"color:#fffc00\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_snapchat\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_snapchat\":false},[\"background:transparent\",\"border:1px solid #fffc00\"]],[false,{\".swp-snapchat\":false},[\"background:#fffc00\",\"border-color:#ccca00\"]],[false,{\".swp-snapchat a\":false},[\"color:#fffc00\"]],[false,{\".swp-snapchat a:hover\":false},[\"background:#ccca00\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_telegram\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_telegram:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_telegram:not(:hover)\":false},[\"border:1px solid #08c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_telegram\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_telegram:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_telegram\":false},[\"background:#08c\",\"border:1px solid #069\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_telegram\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_telegram:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_telegram\":false},[\"border-bottom:3px solid #069\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_telegram a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_telegram a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_telegram a\":false},[\"color:#08c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_telegram\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_telegram:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_telegram\":false},[\"background:transparent\",\"border:1px solid #08c\"]],[false,{\".swp-telegram\":false},[\"background:#08c\",\"border-color:#069\"]],[false,{\".swp-telegram a\":false},[\"color:#08c\"]],[false,{\".swp-telegram a:hover\":false},[\"background:#069\",\"color:#fff\"]],[true,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_twitter\":true,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_twitter:hover\":true,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_twitter:not(:hover)\":true},[\"border:1px solid #1da1f2\"]],[true,{\".swp_social_panel.swp_default_full_color .swp_twitter\":true,\"html body .swp_social_panel.swp_individual_full_color .swp_twitter:hover\":true,\"body .swp_social_panel.swp_other_full_color:hover .swp_twitter\":true},[\"background:#1da1f2\",\"border:1px solid #0c85d0\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_twitter\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_twitter:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_twitter\":false},[\"border-bottom:3px solid #0c85d0\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_twitter a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_twitter a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_twitter a\":false},[\"color:#1da1f2\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_twitter\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_twitter:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_twitter\":false},[\"background:transparent\",\"border:1px solid #1da1f2\"]],[false,{\".swp-twitter\":false},[\"background:#1da1f2\",\"border-color:#0c85d0\"]],[false,{\".swp-twitter a\":false},[\"color:#1da1f2\"]],[false,{\".swp-twitter a:hover\":false},[\"background:#0c85d0\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_tumblr\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_tumblr:not(:hover)\":false},[\"border:1px solid #39475d\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_tumblr\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_tumblr\":false},[\"background:#39475d\",\"border:1px solid #262f3d\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_tumblr\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_tumblr\":false},[\"border-bottom:3px solid #262f3d\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_tumblr a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_tumblr a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_tumblr a\":false},[\"color:#39475d\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_tumblr\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_tumblr\":false},[\"background:transparent\",\"border:1px solid #39475d\"]],[false,{\".swp-tumblr\":false},[\"background:#39475d\",\"border-color:#262f3d\"]],[false,{\".swp-tumblr a\":false},[\"color:#39475d\"]],[false,{\".swp-tumblr a:hover\":false},[\"background:#262f3d\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_vimeo\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_vimeo:not(:hover)\":false},[\"border:1px solid #162221\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_vimeo\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_vimeo\":false},[\"background:#162221\",\"border:1px solid #020303\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_vimeo\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_vimeo\":false},[\"border-bottom:3px solid #020303\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vimeo a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vimeo a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vimeo a\":false},[\"color:#162221\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vimeo\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vimeo\":false},[\"background:transparent\",\"border:1px solid #162221\"]],[false,{\".swp-vimeo\":false},[\"background:#162221\",\"border-color:#020303\"]],[false,{\".swp-vimeo a\":false},[\"color:#162221\"]],[false,{\".swp-vimeo a:hover\":false},[\"background:#020303\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_viber\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_viber:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_viber:not(:hover)\":false},[\"border:1px solid #8f5db7\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_viber\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_viber:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_viber\":false},[\"background:#8f5db7\",\"border:1px solid #75459c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_viber\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_viber:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_viber\":false},[\"border-bottom:3px solid #75459c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_viber a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_viber a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_viber a\":false},[\"color:#8f5db7\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_viber\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_viber:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_viber\":false},[\"background:transparent\",\"border:1px solid #8f5db7\"]],[false,{\".swp-viber\":false},[\"background:#8f5db7\",\"border-color:#75459c\"]],[false,{\".swp-viber a\":false},[\"color:#8f5db7\"]],[false,{\".swp-viber a:hover\":false},[\"background:#75459c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_vk\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_vk:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_vk:not(:hover)\":false},[\"border:1px solid #4a76a8\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_vk\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_vk:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_vk\":false},[\"background:#4a76a8\",\"border:1px solid #3a5d85\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_vk\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_vk:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_vk\":false},[\"border-bottom:3px solid #3a5d85\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vk a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vk a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vk a\":false},[\"color:#4a76a8\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vk\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vk:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vk\":false},[\"background:transparent\",\"border:1px solid #4a76a8\"]],[false,{\".swp-vk\":false},[\"background:#4a76a8\",\"border-color:#3a5d85\"]],[false,{\".swp-vk a\":false},[\"color:#4a76a8\"]],[false,{\".swp-vk a:hover\":false},[\"background:#3a5d85\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_whatsapp\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_whatsapp:not(:hover)\":false},[\"border:1px solid #71c169\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_whatsapp\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_whatsapp\":false},[\"background:#71c169\",\"border:1px solid #52af48\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_whatsapp\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_whatsapp\":false},[\"border-bottom:3px solid #52af48\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_whatsapp a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_whatsapp a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_whatsapp a\":false},[\"color:#71c169\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_whatsapp\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_whatsapp\":false},[\"background:transparent\",\"border:1px solid #71c169\"]],[false,{\".swp-whatsapp\":false},[\"background:#71c169\",\"border-color:#52af48\"]],[false,{\".swp-whatsapp a\":false},[\"color:#71c169\"]],[false,{\".swp-whatsapp a:hover\":false},[\"background:#52af48\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_xing\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_xing:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_xing:not(:hover)\":false},[\"border:1px solid #026466\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_xing\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_xing:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_xing\":false},[\"background:#026466\",\"border:1px solid #013334\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_xing\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_xing:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_xing\":false},[\"border-bottom:3px solid #013334\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_xing a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_xing a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_xing a\":false},[\"color:#026466\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_xing\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_xing:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_xing\":false},[\"background:transparent\",\"border:1px solid #026466\"]],[false,{\".swp-xing\":false},[\"background:#026466\",\"border-color:#013334\"]],[false,{\".swp-xing a\":false},[\"color:#026466\"]],[false,{\".swp-xing a:hover\":false},[\"background:#013334\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_yummly\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_yummly:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_yummly:not(:hover)\":false},[\"border:1px solid #e26426\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_yummly\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_yummly:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_yummly\":false},[\"background:#e26426\",\"border:1px solid #bc4f19\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_yummly\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_yummly:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_yummly\":false},[\"border-bottom:3px solid #bc4f19\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_yummly a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_yummly a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_yummly a\":false},[\"color:#e26426\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_yummly\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_yummly:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_yummly\":false},[\"background:transparent\",\"border:1px solid #e26426\"]],[false,{\".swp-yummly\":false},[\"background:#e26426\",\"border-color:#bc4f19\"]],[false,{\".swp-yummly a\":false},[\"color:#e26426\"]],[false,{\".swp-yummly a:hover\":false},[\"background:#bc4f19\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_default_light_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_light_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_light_gray:hover .nc_tweetContainer\":false},[\"background-color:#ccc\",\"border:1px solid #ccc\"]],[false,{\".swp_social_panel.swp_default_light_gray .nc_tweetContainer a\":false,\"html body .swp_social_panel.swp_individual_light_gray .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_light_gray:hover .nc_tweetContainer a\":false},[\"color:#fff\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_light_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_light_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_light_gray .nc_tweetContainer:hover\":false},[\"border-bottom:3px solid #b3b3b3\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_light_gray .nc_tweetContainer.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_light_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false,\"body .swp_social_panel.swp_three_dee.swp_other_light_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:none\"]],[false,{\".swp_social_panel.swp_default_light_gray_outlines a\":false,\"html body .swp_social_panel.swp_individual_light_gray_outlines a:hover\":false,\"body .swp_social_panel.swp_other_light_gray_outlines:hover a\":false},[\"color:#ccc\"]],[false,{\".swp_social_panel.swp_default_light_gray_outlines .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_light_gray_outlines .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_light_gray_outlines:hover .nc_tweetContainer\":false},[\"background:transparent\",\"border:1px solid #ccc\"]],[false,{\".swp_social_panel.swp_default_medium_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_medium_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_medium_gray:hover .nc_tweetContainer\":false},[\"background-color:#999\",\"border:1px solid #999\"]],[false,{\".swp_social_panel.swp_default_medium_gray .nc_tweetContainer a\":false,\"html body .swp_social_panel.swp_individual_medium_gray .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_medium_gray:hover .nc_tweetContainer a\":false},[\"color:#fff\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_medium_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_medium_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_medium_gray .nc_tweetContainer:hover\":false},[\"border-bottom:3px solid gray\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_medium_gray .nc_tweetContainer.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_medium_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false,\"body .swp_social_panel.swp_three_dee.swp_other_medium_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:none\"]],[false,{\".swp_social_panel.swp_default_medium_gray_outlines a\":false,\"html body .swp_social_panel.swp_individual_medium_gray_outlines a:hover\":false,\"body .swp_social_panel.swp_other_medium_gray_outlines:hover a\":false},[\"color:#999\"]],[false,{\".swp_social_panel.swp_default_medium_gray_outlines .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_medium_gray_outlines .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_medium_gray_outlines:hover .nc_tweetContainer\":false},[\"background:transparent\",\"border:1px solid #999\"]],[false,{\".swp_social_panel.swp_default_dark_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_dark_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_dark_gray:hover .nc_tweetContainer\":false},[\"background-color:#444\",\"border:1px solid #444\"]],[false,{\".swp_social_panel.swp_default_dark_gray .nc_tweetContainer a\":false,\"html body .swp_social_panel.swp_individual_dark_gray .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_dark_gray:hover .nc_tweetContainer a\":false},[\"color:#fff\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_dark_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_dark_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_dark_gray .nc_tweetContainer:hover\":false},[\"border-bottom:3px solid #2b2b2b\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_dark_gray .nc_tweetContainer.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_dark_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false,\"body .swp_social_panel.swp_three_dee.swp_other_dark_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:none\"]],[false,{\".swp_social_panel.swp_default_dark_gray_outlines a\":false,\"html body .swp_social_panel.swp_individual_dark_gray_outlines a:hover\":false,\"body .swp_social_panel.swp_other_dark_gray_outlines:hover a\":false},[\"color:#444\"]],[false,{\".swp_social_panel.swp_default_dark_gray_outlines .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_dark_gray_outlines .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_dark_gray_outlines:hover .nc_tweetContainer\":false},[\"background:transparent\",\"border:1px solid #444\"]],[false,{\".swp_social_panel.swp_modern\":false,\".swp_social_panel.swp_dark\":false},[\"background:#fff\",\"height:62px\",\"padding:0\",\"border-radius:8px\",\"border:1px solid #eee\",\"box-shadow:0 2px 4px 0 rgba(0,0,0,.01),0 4px 5px 0 rgba(0,0,0,.014),0 4px 15px 0 rgba(0,0,0,.09)\"]],[false,{\".swp_social_panel.swp_modern .swp_share_button\":false,\".swp_social_panel.swp_dark .swp_share_button\":false},[\"padding-bottom:1px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_button:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .swp_share_button:not(#_#_#_#_#_#_#_)\":false},[\"border:none\",\"border-radius:0\",\"margin:0\",\"height:61px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_button.total_shares.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .swp_share_button.total_shares.total_sharesalt:not(#_#_#_#_#_#_#_)\":false},[\"padding:15px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_link\":false,\".swp_social_panel.swp_dark .swp_share_link\":false},[\"border-radius:0\",\"padding:15px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_link:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .swp_share_link:not(#_#_#_#_#_#_#_)\":false},[\"height:61px\"]],[false,{\".swp_social_panel.swp_modern .iconFiller:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .iconFiller:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:10px\"]],[false,{\".swp_social_panel.swp_modern .nc_wrapper.bottom:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .nc_wrapper.bottom:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\"]],[false,{\".swp_dark .swp_share_button:not(#_#_#_#_#_#_#_)\":false},[\"background:#222\",\"border-color:#222\",\"margin:0\",\"height:62px\"]],[false,{\".swp_dark .swp_share_link:hover\":false},[\"background:#444\"]],[false,{\".scale-70\":false},[\"transform:scale(.7)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-70.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:142.85714%\"]],[false,{\".scale-80\":false},[\"transform:scale(.8)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-80.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:125%\"]],[false,{\".scale-90\":false},[\"transform:scale(.9)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-90.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:111.11111%\"]],[true,{\".scale-100\":true},[\"transform:scale(1)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-100.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".scale-110\":false},[\"transform:scale(1.1)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-110.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:90.90909%\"]],[false,{\".scale-120\":false},[\"transform:scale(1.2)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-120.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:83.33333%\"]],[false,{\".scale-130\":false},[\"transform:scale(1.3)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-130.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:76.92308%\"]],[false,{\".scale-140\":false},[\"transform:scale(1.4)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-140.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:71.42857%\"]],[false,{\".scale-left\":false},[\"transform-origin:left\"]],[false,{\".scale-center\":false},[\"transform-origin:center\"]],[false,{\".scale-right\":false},[\"transform-origin:right\"]],[false,{\".scale-full_width\":false},[\"transform-origin:left\"]],[false,{\"div.swp_social_panel .nc_tweetContainer.swp_emphasize\":false},[\"flex:2\"]],[true,\"@media print{\"],[true,{\".swp_social_panel\":true},[\"display:none\",\"opacity:0\",\"visibility:collapse\"]],[true,\"}\"],[false,{\"html[lang] .site * i.sw:not(#_#_#_#_#_#_#_#_)\":false},[\"font-family:sw-icon-font\"]],[true,{\".swp_social_panel\":true},[\"clear:both\",\"display:flex\",\"height:34px\",\"line-height:1\",\"overflow:hidden\",\"padding:0\",\"align-items:stretch\",\"-webkit-box-align:stretch\",\"-moz-box-align:stretch\",\"-webkit-box-pack:justify\",\"-moz-box-pack:justify\",\"direction:ltr\",\"-ms-flex-align:stretch\",\"-ms-flex-line-pack:center\",\"-ms-flex-pack:justify\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[true,{\".swp_social_panel:not(#_#_#_#_#_#_#_)\":true},[\"margin-bottom:20px\",\"margin-top:20px\"]],[true,{\".swp_social_panel .nc_tweetContainer a.nc_tweet\":true,\".swp_social_panel .nc_tweetContainer.total_shares .swp_count\":false},[\"display:block\",\"display:flex\",\"font-family:Lato,sans-serif\",\"font-weight:bold\",\"height:30px\",\"text-transform:none\",\"flex-flow:row wrap\",\"box-shadow:none\"]],[true,{\".swp_social_panel .nc_tweetContainer a.nc_tweet:not(#_#_#_#_#_#_#_#_)\":true,\".swp_social_panel .nc_tweetContainer.total_shares .swp_count:not(#_#_#_#_#_#_#_)\":false},[\"font-size:18px\",\"text-decoration:none\"]],[true,{\".swp_social_panel .nc_tweetContainer:not(.total_shares):not(.total_sharesalt)\":true},[\"border-radius:2px\",\"cursor:pointer\",\"float:left\",\"font-family:Lato\",\"height:32px\",\"margin:0 5px 3px 5px\",\"min-width:34px\",\"overflow:hidden\",\"text-align:center\",\"transition:all .1s linear\"]],[true,{\".swp_social_panel .nc_tweetContainer .spaceManWilly\":true},[\"display:block\",\"width:120px\"]],[false,{\".swp_social_panel .swp_label\":false},[\"display:block\",\"margin-top:13px\",\"position:absolute\",\"text-transform:uppercase\"]],[false,{\".swp_social_panel .swp_label:not(#_#_#_#_#_#_#_)\":false},[\"font-size:9px\",\"text-align:center\"]],[true,{\".swp_social_panel .swp_share\":true},[\"display:block\",\"float:right\",\"float:left\",\"font-size:14px\",\"font-weight:normal\",\"height:30px\",\"line-height:32px\",\"margin:0 0 0 6px\"]],[true,{\".swp_social_panel .swp_share:not(#_#_#_#_#_#_#_)\":true},[\"max-width:none\"]],[false,{\".swp_social_panel .total_shares\":false},[\"border-radius:2px\",\"color:white\",\"cursor:default\",\"display:block\",\"font-size:19px\",\"padding:0 10px\"]],[false,{\".swp_social_panel .total_shares:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\",\"border:none\",\"flex:none\"]],[false,{\".swp_social_panel .total_shares .swp_count\":false},[\"line-height:30px\"]],[false,{\".swp_social_panel .total_shares .swp_label\":false},[\"font-size:10px\",\"vertical-align:middle\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\",\"border:none\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt:before\":false},[\"content:\\\"G\\\"\",\"display:inline-block\",\"font-family:sw-icon-font\",\"margin-top:7px\",\"vertical-align:top\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt.total_sharesalt\":false,\".swp_social_panel .total_shares.total_sharesalt:not(:nth-child(1))\":false},[\"border:none\",\"color:#474b4d\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel .total_shares.total_sharesalt:not(:nth-child(1)):not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\",\"margin-left:0\",\"margin-bottom:10px\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt .swp_count\":false},[\"color:#474b4d\",\"font-size:24px\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt .swp_label\":false},[\"color:#474b4d\",\"letter-spacing:0\",\"min-width:40px\"]],[true,{\".swp_social_panel a .swp_count\":true},[\"font-size:14px\"]],[true,{\".swp_social_panel a .swp_count:not(.swp_hide)\":true},[\"display:inline-block\",\"line-height:32px\",\"margin:0\",\"padding:0 5px\",\"flex:1\"]],[true,{\".swp_social_panel a .swp_count.swp_hide\":true},[\"margin:0 auto\",\"width:auto\"]],[true,{\".swp_social_panel:not(.nc_floater):not(.swp_social_panelSide):not(#_#_#_#_#_#_#_)\":true},[\"width:100%\"]],[false,{\".swp_social_panel:not(.nc_floater):not(.swp_social_panelSide).swp_shift\":false},[\"padding:0 10px\"]],[true,{\".swp_social_panel:not(.swp_social_panelSide)\":true},[\"transition:opacity .2s ease-in-out\"]],[true,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer\":true},[\"flex:1\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer.swp-emphasize\":false},[\"flex:2\"]],[true,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer:nth-child(1)\":true},[\"margin-left:0\"]],[true,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer:nth-last-child(1)\":true},[\"margin-right:0\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt:before\":false},[\"content:\\\"G\\\"\",\"display:inline-block\",\"font-family:sw-icon-font\",\"margin-top:7px\",\"vertical-align:top\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt .swp_count\":false},[\"display:inline-block\",\"line-height:0\",\"margin-left:8px\",\"margin-top:12px\",\"min-width:45px\",\"position:relative\",\"vertical-align:middle\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt:nth-child(1)\":false},[\"margin-left:0\",\"margin-right:15px\",\"padding-left:0\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt:nth-last-child(1)\":false},[\"margin-right:0\",\"padding-right:0\"]],[true,{\".swp_social_panel span:before:not(#_#_#_#_#_#_#_#_)\":true},[\"content:initial\"]],[true,{\".swp_social_panel .iconFiller\":true},[\"font-size:18px\",\"margin:0 auto\",\"display:block\",\"float:left\",\"height:30px\",\"overflow:hidden\",\"transition:width .1s linear\",\"width:30px\"]],[true,{\".swp_social_panel .sw\":true},[\"float:left\",\"height:30px\",\"line-height:32px\",\"margin:1px 5px 0\",\"width:20px\"]],[true,{\".swp_social_panel .sw:not(#_#_#_#_#_#_#_)\":true},[\"text-shadow:none\"]],[false,{\".swp_social_panel.notMobile .nc_tweetContainer:nth-child(1)\":false},[\"margin-left:0\"]],[false,{\".swp_social_panel:hover .total_shares\":false,\".swp_social_panel.swp_full_color .total_shares\":false,\".swp_social_panel.swp_fade .total_shares\":false,\".swp_social_panel.swp_customFull:hover .total_shares\":false},[\"background:#e08a0f\"]],[false,{\".swp_social_panel.swp_leaf .nc_tweetContainer\":false},[\"border-width:1px\"]],[false,{\".swp_social_panel.swp_leaf .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:15px 0\"]],[false,{\".swp_social_panel.swp_pill .nc_tweetContainer\":false},[\"border-width:1px\"]],[false,{\".swp_social_panel.swp_pill .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:50px\"]],[false,{\".swp_social_panel.swp_shift .nc_tweetContainer:not(.total_shares)\":false},[\"border-width:1px\",\"transform:skew(-25deg)\"]],[false,{\".swp_social_panel.swp_shift .nc_tweetContainer a\":false},[\"transform:skew(25deg)\"]],[false,{\".swp_social_panel.swp_connected:hover .nc_tweetContainer\":false,\".swp_social_panel.swp_connected .nc_tweetContainer\":false,\".swp_social_panel.swp_connected .nc_tweetContainer:hover\":false},[\"border-width:1px\"]],[false,{\".swp_social_panel.swp_connected:hover .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_connected .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_connected .nc_tweetContainer:hover:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\",\"margin:0\"]],[false,{\".swp_social_panel.mobile .iconFiller ~ .swp_count\":false,\".sw-content-locator\":false},[\"display:none\"]],[true,{\"div[class*=custom_color][class^=_wrapper]\":true},[\"display:none\"]],[false,{\"pre.swp_debug_data\":false},[\"white-space:pre-wrap\",\"padding:0 25px\",\"max-width:1000px\",\"margin:0 auto 50px auto\",\"border:3px solid #666\"]],[false,{\".wp-editor-container .swp_twitter:before\":false},[\"color:#429cd6\"]],[false,{\".swp_powered_by\":false},[\"font-family:helvetica,arial,sans-serif\",\"color:black\"]],[false,{\".swp_powered_by span\":false},[\"clear:both\",\"width:100%\",\"display:block\",\"margin:36px 0px -30px 0\"]],[false,{\".swp_powered_by a\":false},[\"color:black\",\"text-decoration:none\"]],[false,{\".swp_powered_by amp-img\":false,\".swp_powered_by amp-anim\":false},[\"max-height:40px\",\"margin-top:30px\"]],[true,{\".sw\":true},[\"display:inline-block\",\"font-size:inherit\",\"-moz-osx-font-smoothing:grayscale\",\"-webkit-font-smoothing:antialiased\",\"font-style:normal\",\"font-weight:normal\",\"text-rendering:auto\",\"transform:translate(0,0)\",\"transform:translate(0,0)\",\"-webkit-transform:translate(0,0)\",\"-moz-transform:translate(0,0)\",\"-ms-transform:translate(0,0)\",\"-o-transform:translate(0,0)\"]],[true,{\".sw:not(#_#_#_#_#_#_#_)\":true},[\"font-family:sw-icon-font\",\"text-transform:none\"]],[true,{\".sw:before:not(#_#_#_#_#_#_#_#_)\":true},[\"display:block\"]],[false,{\"i.swp_blogger_icon:before\":false},[\"content:\\\"c\\\"\"]],[false,{\"i.swp_buffer_icon:before\":false},[\"content:\\\"d\\\"\"]],[false,{\"i.swp_ello_icon:before\":false},[\"content:\\\"h\\\"\"]],[false,{\"i.swp_email_icon:before\":false},[\"content:\\\"i\\\"\"]],[false,{\"i.swp_evernote_icon:before\":false},[\"content:\\\"j\\\"\"]],[true,{\"i.swp_facebook_icon:before\":true},[\"content:\\\"k\\\"\"]],[false,{\"i.swp_flickr_icon:before\":false},[\"content:\\\"l\\\"\"]],[false,{\"i.swp_flipboard_icon:before\":false},[\"content:\\\"m\\\"\"]],[false,{\"i.swp_hacker_news_icon:before\":false},[\"content:\\\"o\\\"\"]],[false,{\"i.swp_instagram_icon:before\":false},[\"content:\\\"q\\\"\"]],[true,{\"i.swp_linkedin_icon:before\":true},[\"content:\\\"s\\\"\"]],[false,{\"i.swp_medium_icon:before\":false},[\"content:\\\"u\\\"\"]],[false,{\"i.swp_mix_icon:before\":false},[\"content:\\\"w\\\"\"]],[false,{\"i.swp_more_icon:before\":false},[\"content:\\\"B\\\"\"]],[false,{\"i.swp_parler_icon:before\":false},[\"content:\\\"0\\\"\"]],[false,{\"i.swp_periscope_icon:before\":false},[\"content:\\\"y\\\"\"]],[true,{\"i.swp_pinterest_icon:before\":true},[\"content:\\\"A\\\"\"]],[false,{\"i.swp_pin_icon:before\":false},[\"content:\\\"z\\\"\"]],[false,{\"i.swp_pocket_icon:before\":false},[\"content:\\\"C\\\"\"]],[false,{\"i.swp_print_icon:before\":false},[\"content:\\\"D\\\"\"]],[false,{\"i.swp_reddit_icon:before\":false},[\"content:\\\"E\\\"\"]],[false,{\"i.swp_share_icon:before\":false},[\"content:\\\"G\\\"\"]],[false,{\"i.swp_social-warfare_icon:before\":false},[\"content:\\\"K\\\"\"]],[false,{\"i.swp_snapchat_icon:before\":false},[\"content:\\\"J\\\"\"]],[false,{\"i.swp_telegram_icon:before\":false},[\"content:\\\"L\\\"\"]],[false,{\"i.swp_tumblr_icon:before\":false},[\"content:\\\"M\\\"\"]],[true,{\"i.swp_twitter_icon:before\":true},[\"content:\\\"N\\\"\"]],[false,{\"i.swp_viber_icon:before\":false},[\"content:\\\"O\\\"\"]],[false,{\"i.swp_vimeo_icon:before\":false},[\"content:\\\"P\\\"\"]],[false,{\"i.swp_vk_icon:before\":false},[\"content:\\\"R\\\"\"]],[false,{\"i.swp_warfare-plugins_icon:before\":false},[\"content:\\\"Z\\\"\"]],[false,{\"i.swp_whatsapp_icon:before\":false},[\"content:\\\"T\\\"\"]],[false,{\"i.swp_xing_icon:before\":false},[\"content:\\\"V\\\"\"]],[false,{\"i.swp_yummly_icon:before\":false},[\"content:\\\"Y\\\"\"]],[false,{\".sw-social-warfare:before\":false},[\"content:\\\"K\\\"\"]],[false,{\".wp-editor-container .sw:before\":false},[\"font-size:18px\",\"line-height:22px\"]],[false,{\".wp-editor-container .sw-social-warfare:before\":false,\".mce-ico.sw-social-warfare:before\":false,\".mce-ico.sw-social-warfare\":false},[\"color:#ee464f\"]],[false,{\".mce-container .sw-social-warfare\":false},[\"color:#ee464f\",\"font-size:20px\",\"margin-right:15px\",\"vertical-align:middle\"]],[false,{\".swp_social_panelSide\":false},[\"transition:all .2s linear\",\"flex-direction:column\",\"height:auto\",\"overflow:visible\",\"z-index:9998\",\"padding:0\"]],[false,{\".swp_social_panelSide:not(#_#_#_#_#_#_#_)\":false},[\"margin:10px 5px\"]],[false,{\".swp_social_panelSide.slide\":false,\".swp_social_panelSide.fade\":false},[\"transition:all .2s linear\",\"position:fixed\"]],[false,{\".swp_social_panelSide.fade\":false},[\"display:none\"]],[false,{\".swp_social_panelSide.fade .swp_float_left\":false},[\"left:5px\"]],[false,{\".swp_social_panelSide.fade .swp_float_right\":false},[\"right:5px\"]],[false,{\".swp_social_panelSide.hideCounts a\":false},[\"text-align:center\"]],[false,{\".swp_social_panelSide.hideCounts .iconFiller\":false},[\"float:none\",\"text-align:left\"]],[false,{\".swp_social_panelSide[class*=swp_side]\":false},[\"height:auto\",\"display:flex\",\"position:fixed\",\"padding:30px 0\"]],[false,{\".swp_social_panelSide.swp_float_right\":false},[\"align-content:flex-end\"]],[false,{\".swp_social_panelSide.swp_side_top\":false},[\"top:15px\"]],[false,{\".swp_social_panelSide.swp_side_bottom\":false},[\"bottom:15px\"]],[false,{\".swp_social_panelSide.swp_default .nc_tweetContainer .sw\":false},[\"line-height:32px\"]],[false,{\".swp_social_panelSide.swp_default .nc_tweetContainer .swp_share\":false},[\"line-height:32px\"]],[false,{\".swp_social_panelSide span.swp_label\":false},[\"margin-top:0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer\":false},[\"transition:all .1s linear\",\"border-radius:3px\",\"clear:both\",\"display:block\",\"font-family:Lato,sans-serif\",\"height:32px\",\"overflow:hidden\",\"padding:0\",\"width:90px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"margin:3px 0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares\":false},[\"background:rgba(0,0,0,0)\",\"font-weight:800\",\"height:55px\",\"margin:0\",\"padding:0\",\"text-align:center\",\"width:90px\",\"order:-100\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares:not(#_#_#_#_#_#_#_)\":false},[\"border:0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares .swp_count\":false},[\"color:#444\",\"display:block\",\"font-family:Lato,sans-serif\",\"height:28px\",\"text-align:center\",\"width:100%\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares .swp_label\":false},[\"color:#444\",\"display:block\",\"font-family:Lato,sans-serif\",\"font-size:50%\",\"position:relative\",\"text-align:center\",\"width:100%\"]],[false,{\".swp_social_panelSide .nc_tweetContainer:not(.total_shares)\":false},[\"line-height:34px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer:hover\":false,\".swp_social_panelSide .nc_tweetContainer:hover .iconFiller\":false,\".swp_social_panelSide .nc_tweetContainer:hover .swp_count\":false},[\"transition:all .1s linear\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .iconFiller\":false},[\"transition:all .1s linear\",\"display:inline-block\",\"height:40px\",\"margin:0 6px\",\"padding:0\",\"vertical-align:middle\",\"width:21px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .swp_count\":false},[\"transition:all .1s linear\",\"display:inline-block\",\"font-size:14px\",\"height:32px\",\"line-height:16px\",\"margin:0\",\"padding:0\",\"overflow:hidden\",\"text-align:right\",\"vertical-align:top\",\"width:0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer a\":false},[\"transition:all .1s linear\",\"cursor:pointer\",\"display:block\",\"font-weight:500\",\"height:36px\",\"margin:0\",\"padding:0\",\"text-decoration:none\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .sw\":false,\".swp_social_panelSide .nc_tweetContainer .swp_share\":false},[\"float:left\",\"line-height:34px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .swp_share\":false},[\"font-size:13px\",\"margin:0\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer\":false},[\"margin-bottom:5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer a\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer a\":false},[\"width:67.5px\",\"position:relative\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer a:not(#_#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer a:not(#_#_#_#_#_#_#_#_)\":false},[\"height:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .total_shares\":false,\".swp_social_panelSide.swp_circles .total_shares\":false},[\"padding:0\"]],[false,{\".swp_social_panelSide.swp_boxed .total_shares:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .total_shares:not(#_#_#_#_#_#_#_)\":false},[\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer span.iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer span.iconFiller\":false},[\"height:40px\",\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer i.sw\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer i.sw\":false},[\"font-size:27px\",\"height:40px\",\"margin:0\",\"padding-top:10px\",\"text-align:center\",\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_share\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) span.swp_share\":false},[\"height:35px\",\"opacity:0\",\"position:absolute\",\"bottom:0\",\"left:0\",\"text-align:center\",\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_count\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) span.swp_count\":false},[\"height:35px\",\"margin:0\",\"padding:0\",\"position:absolute\",\"bottom:0\",\"left:0\",\"text-align:center\",\"transition:padding .1s linear\",\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_hide span.swp_share\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover span.swp_share:not(.swp_hide)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_hide span.swp_share\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):hover span.swp_share:not(.swp_hide)\":false},[\"opacity:1\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover span.swp_count:not(.swp_hide)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):hover span.swp_count:not(.swp_hide)\":false},[\"opacity:0\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_count\":false},[\"padding:0 8px\",\"width:48px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide\":false},[\"padding:0\",\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide .iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide .iconFiller\":false},[\"display:block\",\"float:none\",\"margin:0 auto\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover .iconFiller\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .spaceManWilly\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):hover .iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .spaceManWilly\":false},[\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_count.swp_hide\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer span.swp_hide .iconFiller\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer span.swp_hide .spaceManWilly\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) span.swp_count.swp_hide\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer span.swp_hide .iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer span.swp_hide .spaceManWilly\":false},[\"height:67.5px\",\"opacity:1\"]],[false,{\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) a:not(#_#_#_#_#_#_#_#_)\":false},[\"border-radius:50%\"]],[false,{\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares) .iconFiller\":false},[\"margin-left:2px\",\"width:30px\"]],[false,{\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares)[data-network]:not(.total_shares):hover span.iconFiller\":false,\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares):not(.total_shares) .spaceManWilly\":false},[\"width:90px\"]],[false,{\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares):hover\":false},[\"width:150px\"]],[false,{\".nc_wrapper\":false},[\"background:white\",\"position:fixed\",\"transition:top .5s bottom .5s\",\"width:100%\",\"z-index:99999\"]],[false,{\".nc_wrapper.bottom\":false},[\"bottom:0\",\"left:0\"]],[false,{\".nc_wrapper.top\":false},[\"top:0\",\"left:0\"]],[false,{\".nc_wrapper .swp_social_panel:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:10px\",\"margin-top:10px\"]],[false,{\".nc_floater\":false},[\"margin:10px 0\",\"position:relative\"]],[false,{\".float-position-top-left\":false},[\"transform-origin:top left\"]],[false,{\".float-position-center-left\":false},[\"transform-origin:center left\"]],[false,{\".float-position-bottom-left\":false},[\"transform-origin:bottom left\"]],[false,{\".float-position-top-right\":false},[\"transform-origin:top right\"]],[false,{\".float-position-center-right\":false},[\"transform-origin:center right\"]],[false,{\".float-position-bottom-right\":false},[\"transform-origin:bottom right\"]],[false,{\".sw-tweet-clear\":false},[\"zoom:1\"]],[false,{\".sw-tweet-clear:after\":false},[\"clear:both\",\"content:\\\".\\\"\",\"display:block\",\"height:0\",\"visibility:hidden\"]],[false,{\"a.swp_CTT\":false},[\"cursor:pointer\"]],[false,{\"a.swp_CTT:not(#_#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\"a.swp_CTT .sw-click-to-tweet\":false},[\"display:block\",\"margin:15px 0\",\"padding:15px 30px\",\"position:relative\"]],[false,{\"a.swp_CTT .sw-click-to-tweet:after\":false},[\"clear:both\",\"content:\\\".\\\"\",\"display:block\",\"height:0\",\"line-height:0\",\"visibility:hidden\"]],[false,{\"a.swp_CTT .sw-click-to-tweet .sw-ctt-text\":false},[\"margin:0 0 10px\",\"margin:0\",\"padding:0\",\"padding:0\",\"position:relative\",\"position:relative\",\"word-wrap:break-word\",\"display:block\",\"font-size:24px\",\"font-weight:500\",\"line-height:140%\",\"text-decoration:none\",\"text-transform:none\"]],[false,{\"a.swp_CTT .sw-click-to-tweet .sw-ctt-btn\":false},[\"display:block\",\"float:right\",\"font-family:\\\"Helvetica Neue\\\",Helvetica,Arial,sans-serif\",\"font-size:12px\",\"font-weight:bold\",\"line-height:100%\",\"margin:10px 0 0\",\"padding:3px 5px 3px 3px\",\"position:relative\",\"text-decoration:none\",\"text-transform:uppercase\"]],[false,{\"a.swp_CTT .sw-click-to-tweet i.swp_twitter_icon\":false},[\"float:right\",\"font-size:21px\",\"margin-top:2px\",\"text-transform:none\"]],[false,{\"a.swp_CTT .sw-click-to-tweet i.swp_twitter_icon:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-left:15px\"]],[false,{\"a.swp_CTT.style1 .sw-click-to-tweet\":false},[\"background-color:#fff\",\"border:1px solid #ddd\",\"border-radius:4px\"]],[false,{\"a.swp_CTT.style1 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#1da1f2\"]],[false,{\"a.swp_CTT.style1 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style1 .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#999\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style1:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style1:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#666\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style2 .sw-click-to-tweet\":false},[\"background-color:#fff\",\"border:4px double #ddd\",\"border-radius:0\"]],[false,{\"a.swp_CTT.style2 .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#1da1f2\"]],[false,{\"a.swp_CTT.style2 .sw-click-to-tweet .sw-ctt-text\":false},[\"color:#666\",\"font-style:italic\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style2:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style2:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#666\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style3 .sw-click-to-tweet\":false},[\"background-color:#1da1f2\",\"border:none\",\"border-left:10px solid #15202b\",\"border-radius:0\",\"padding-right:20px\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style3 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style3 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style3 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style3 .sw-click-to-tweet .sw-ctt-text\":false},[\"font-style:italic\"]],[false,{\"a.swp_CTT.style3:hover .sw-click-to-tweet\":false},[\"border-left:10px solid #15202b\",\"padding-right:20px\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style3:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style3:hover .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style3:hover .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style4 .sw-click-to-tweet\":false},[\"background-color:#333\",\"border-left:10px solid #c33\",\"border-radius:0\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style4 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style4 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style4 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style4:hover .sw-click-to-tweet\":false},[\"border-left:10px solid #3c87b2\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style4:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style4:hover .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style4:hover .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style5 .sw-click-to-tweet\":false},[\"background-color:#30394f\",\"border-left:10px solid #d34250\",\"border-radius:0\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style5 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style5 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style5 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style5:hover .sw-click-to-tweet\":false},[\"background-color:#d34250\",\"border-left:10px solid #30394f\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style5:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style5:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style6 .sw-click-to-tweet\":false},[\"background-color:#eee\",\"border-left:10px solid #d34250\",\"border-radius:0\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style6 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style6 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style6 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#30394f\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style6:hover .sw-click-to-tweet\":false},[\"background-color:#ced3dc\",\"border-left:10px solid #d34250\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style6:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style6:hover .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style6:hover .sw-click-to-tweet i.swp_twitter\":false},[\"color:#2a2d34\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style7 .sw-click-to-tweet\":false},[\"transition:all .2s linear\",\"background:#f9f9f9\",\"color:#1da1f2\",\"border-radius:10px\",\"transform:skewX(-15deg)\",\"border:7px dashed #e5e5e5\"]],[false,{\"a.swp_CTT.style7 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style7 .sw-click-to-tweet .sw-ctt-btn\":false},[\"transition:all .2s linear\",\"transform:skewX(15deg)\"]],[false,{\"a.swp_CTT.style7:hover .sw-click-to-tweet\":false},[\"transition:all .2s linear\",\"background:#fff\",\"border-color:#ddd\",\"transform:skewX(-10deg) scale(1.02)\"]],[false,{\"a.swp_CTT.style7:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style7:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"transition:all .2s linear\",\"transform:skewX(10deg)\"]],[false,{\".swfw-follow-container\":false},[\"display:flex\",\"position:relative\"]],[false,{\".swfw-follow-container .swfw-container-message\":false},[\"font-weight:bold\"]],[false,{\".swfw-follow-container.swfw_square_container\":false},[\"flex-flow:row wrap\"]],[false,{\".swfw-follow-container.swfw_buttons_container\":false},[\"flex-flow:column nowrap\",\"justify-content:flex-start\",\"align-items:space-between\"]],[false,{\".swfw-follow-container.swfw_block_container\":false},[\"flex-flow:column nowrap\",\"justify-content:flex-start\",\"align-items:flex-start\"]],[false,{\".swfw-follow-container a\":false},[\"text-decoration:none\"]],[false,{\"div.swp-blogger\":false},[\"background:#ff5722\",\"border-color:#ee3900\"]],[false,{\"div.swp-blogger a\":false},[\"color:#ff5722\"]],[false,{\"div.swp-blogger a:hover\":false},[\"background:#ee3900\",\"color:#fff\"]],[false,{\"div.swp-buffer\":false},[\"background:#323b43\",\"border-color:#1c2126\"]],[false,{\"div.swp-buffer a\":false},[\"color:#323b43\"]],[false,{\"div.swp-buffer a:hover\":false},[\"background:#1c2126\",\"color:#fff\"]],[false,{\"div.swp-ello\":false},[\"background:#000\",\"border-color:#000\"]],[false,{\"div.swp-ello a\":false},[\"color:#000\"]],[false,{\"div.swp-ello a:hover\":false},[\"background:#000\",\"color:#fff\"]],[false,{\"div.swp-email\":false},[\"background:#6bcce9\",\"border-color:#3fbde2\"]],[false,{\"div.swp-email a\":false},[\"color:#6bcce9\"]],[false,{\"div.swp-email a:hover\":false},[\"background:#3fbde2\",\"color:#fff\"]],[false,{\"div.swp-evernote\":false},[\"background:#2dbe60\",\"border-color:#23954b\"]],[false,{\"div.swp-evernote a\":false},[\"color:#2dbe60\"]],[false,{\"div.swp-evernote a:hover\":false},[\"background:#23954b\",\"color:#fff\"]],[false,{\"div.swp-facebook\":false},[\"background:#1877f2\",\"border-color:#0b5fcc\"]],[false,{\"div.swp-facebook a\":false},[\"color:#1877f2\"]],[false,{\"div.swp-facebook a:hover\":false},[\"background:#0b5fcc\",\"color:#fff\"]],[false,{\"div.swp-flickr\":false},[\"background:#ff0084\",\"border-color:#cc006a\"]],[false,{\"div.swp-flickr a\":false},[\"color:#ff0084\"]],[false,{\"div.swp-flickr a:hover\":false},[\"background:#cc006a\",\"color:#fff\"]],[false,{\"div.swp-flipboard\":false},[\"background:#bf2626\",\"border-color:#941e1e\"]],[false,{\"div.swp-flipboard a\":false},[\"color:#bf2626\"]],[false,{\"div.swp-flipboard a:hover\":false},[\"background:#941e1e\",\"color:#fff\"]],[false,{\"div.swp-hacker_news\":false},[\"background:#d85623\",\"border-color:#ac451c\"]],[false,{\"div.swp-hacker_news a\":false},[\"color:#d85623\"]],[false,{\"div.swp-hacker_news a:hover\":false},[\"background:#ac451c\",\"color:#fff\"]],[false,{\"div.swp-instagram\":false},[\"background:#ea2454\",\"border-color:#c8133f\"]],[false,{\"div.swp-instagram a\":false},[\"color:#ea2454\"]],[false,{\"div.swp-instagram a:hover\":false},[\"background:#c8133f\",\"color:#fff\"]],[false,{\"div.swp-linkedin\":false},[\"background:#2767b1\",\"border-color:#1e4f87\"]],[false,{\"div.swp-linkedin a\":false},[\"color:#2767b1\"]],[false,{\"div.swp-linkedin a:hover\":false},[\"background:#1e4f87\",\"color:#fff\"]],[false,{\"div.swp-medium\":false},[\"background:#00ab6c\",\"border-color:#00784c\"]],[false,{\"div.swp-medium a\":false},[\"color:#00ab6c\"]],[false,{\"div.swp-medium a:hover\":false},[\"background:#00784c\",\"color:#fff\"]],[false,{\"div.swp-mix\":false},[\"background:#f4812c\",\"border-color:#e1660c\"]],[false,{\"div.swp-mix a\":false},[\"color:#f4812c\"]],[false,{\"div.swp-mix a:hover\":false},[\"background:#e1660c\",\"color:#fff\"]],[false,{\"div.swp-more\":false},[\"background:#ee464f\",\"border-color:#ea1723\"]],[false,{\"div.swp-more a\":false},[\"color:#ee464f\"]],[false,{\"div.swp-more a:hover\":false},[\"background:#ea1723\",\"color:#fff\"]],[false,{\"div.swp-parler\":false},[\"background:#be1e2c\",\"border-color:#921722\"]],[false,{\"div.swp-parler a\":false},[\"color:#be1e2c\"]],[false,{\"div.swp-parler a:hover\":false},[\"background:#921722\",\"color:#fff\"]],[false,{\"div.swp-periscope\":false},[\"background:#3aa4c6\",\"border-color:#2e849f\"]],[false,{\"div.swp-periscope a\":false},[\"color:#3aa4c6\"]],[false,{\"div.swp-periscope a:hover\":false},[\"background:#2e849f\",\"color:#fff\"]],[false,{\"div.swp-pinterest\":false},[\"background:#e60023\",\"border-color:#b3001b\"]],[false,{\"div.swp-pinterest a\":false},[\"color:#e60023\"]],[false,{\"div.swp-pinterest a:hover\":false},[\"background:#b3001b\",\"color:#fff\"]],[false,{\"div.swp-pocket\":false},[\"background:#ef4056\",\"border-color:#e9132e\"]],[false,{\"div.swp-pocket a\":false},[\"color:#ef4056\"]],[false,{\"div.swp-pocket a:hover\":false},[\"background:#e9132e\",\"color:#fff\"]],[false,{\"div.swp-print\":false},[\"background:#777\",\"border-color:#5e5e5e\"]],[false,{\"div.swp-print a\":false},[\"color:#777\"]],[false,{\"div.swp-print a:hover\":false},[\"background:#5e5e5e\",\"color:#fff\"]],[false,{\"div.swp-reddit\":false},[\"background:#f04b23\",\"border-color:#d2340e\"]],[false,{\"div.swp-reddit a\":false},[\"color:#f04b23\"]],[false,{\"div.swp-reddit a:hover\":false},[\"background:#d2340e\",\"color:#fff\"]],[false,{\"div.swp-snapchat\":false},[\"background:#fffc00\",\"border-color:#ccca00\"]],[false,{\"div.swp-snapchat a\":false},[\"color:#fffc00\"]],[false,{\"div.swp-snapchat a:hover\":false},[\"background:#ccca00\",\"color:#fff\"]],[false,{\"div.swp-telegram\":false},[\"background:#08c\",\"border-color:#069\"]],[false,{\"div.swp-telegram a\":false},[\"color:#08c\"]],[false,{\"div.swp-telegram a:hover\":false},[\"background:#069\",\"color:#fff\"]],[false,{\"div.swp-twitter\":false},[\"background:#1da1f2\",\"border-color:#0c85d0\"]],[false,{\"div.swp-twitter a\":false},[\"color:#1da1f2\"]],[false,{\"div.swp-twitter a:hover\":false},[\"background:#0c85d0\",\"color:#fff\"]],[false,{\"div.swp-tumblr\":false},[\"background:#39475d\",\"border-color:#262f3d\"]],[false,{\"div.swp-tumblr a\":false},[\"color:#39475d\"]],[false,{\"div.swp-tumblr a:hover\":false},[\"background:#262f3d\",\"color:#fff\"]],[false,{\"div.swp-vimeo\":false},[\"background:#162221\",\"border-color:#020303\"]],[false,{\"div.swp-vimeo a\":false},[\"color:#162221\"]],[false,{\"div.swp-vimeo a:hover\":false},[\"background:#020303\",\"color:#fff\"]],[false,{\"div.swp-viber\":false},[\"background:#8f5db7\",\"border-color:#75459c\"]],[false,{\"div.swp-viber a\":false},[\"color:#8f5db7\"]],[false,{\"div.swp-viber a:hover\":false},[\"background:#75459c\",\"color:#fff\"]],[false,{\"div.swp-vk\":false},[\"background:#4a76a8\",\"border-color:#3a5d85\"]],[false,{\"div.swp-vk a\":false},[\"color:#4a76a8\"]],[false,{\"div.swp-vk a:hover\":false},[\"background:#3a5d85\",\"color:#fff\"]],[false,{\"div.swp-whatsapp\":false},[\"background:#71c169\",\"border-color:#52af48\"]],[false,{\"div.swp-whatsapp a\":false},[\"color:#71c169\"]],[false,{\"div.swp-whatsapp a:hover\":false},[\"background:#52af48\",\"color:#fff\"]],[false,{\"div.swp-xing\":false},[\"background:#026466\",\"border-color:#013334\"]],[false,{\"div.swp-xing a\":false},[\"color:#026466\"]],[false,{\"div.swp-xing a:hover\":false},[\"background:#013334\",\"color:#fff\"]],[false,{\"div.swp-yummly\":false},[\"background:#e26426\",\"border-color:#bc4f19\"]],[false,{\"div.swp-yummly a\":false},[\"color:#e26426\"]],[false,{\"div.swp-yummly a:hover\":false},[\"background:#bc4f19\",\"color:#fff\"]],[false,{\".swfw-follow-button\":false,\".swfw_square_button\":false,\".swfw_buttons_button\":false,\".swfw_block_button\":false,\".swfw-follow-button.swfw_leaf_button\":false,\".swfw-follow-button.swfw_pill_button\":false,\".swfw-follow-button.swfw_shift_button\":false},[\"align-items:center\",\"border-radius:8px\",\"display:flex\",\"color:white\",\"font-family:\\\"Helvetica\\\",sans-serif\",\"font-size:initial\",\"justify-content:space-between\",\"line-height:1\",\"margin-bottom:10px\",\"padding:15px 5%\",\"width:90%\"]],[false,{\".swfw-follow-button.swp-snapchat\":false,\".swp-snapchat.swfw_square_button\":false,\".swp-snapchat.swfw_buttons_button\":false,\".swp-snapchat.swfw_block_button\":false,\".swfw-follow-button.swp-snapchat a\":false,\".swp-snapchat.swfw_square_button a\":false,\".swp-snapchat.swfw_buttons_button a\":false,\".swp-snapchat.swfw_block_button a\":false},[\"color:black\"]],[false,{\".swfw-follow-button a\":false,\".swfw_square_button a\":false,\".swfw_buttons_button a\":false,\".swfw_block_button a\":false,\".swfw-follow-button.swfw_leaf_button a\":false,\".swfw-follow-button.swfw_pill_button a\":false,\".swfw-follow-button.swfw_shift_button a\":false},[\"background:#fff\",\"border-radius:4px\",\"transition:all .2s ease-in-out\"]],[false,{\".swfw-follow-button a :hover\":false,\".swfw_square_button a :hover\":false,\".swfw_buttons_button a :hover\":false,\".swfw_block_button a :hover\":false},[\"color:white\"]],[false,{\".swfw-follow-button a :hover.swp-snapchat\":false,\".swfw_square_button a :hover.swp-snapchat\":false,\".swfw_buttons_button a :hover.swp-snapchat\":false,\".swfw_block_button a :hover.swp-snapchat\":false},[\"color:black\"]],[false,{\".swfw-follow-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_square_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_block_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_leaf_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_pill_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_shift_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw-follow-button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw-follow-button .swfw-count:not(#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-count:not(#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-count:not(#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-count:not(#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\".swfw-follow-button .swfw-network-icon i\":false,\".swfw_square_button .swfw-network-icon i\":false,\".swfw_buttons_button .swfw-network-icon i\":false,\".swfw_block_button .swfw-network-icon i\":false},[\"width:32px\",\"height:32px\",\"border-radius:100px\",\"font-size:24px\",\"line-height:32px\"]],[false,{\".swfw-follow-button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\".swfw_square_button\":false},[\"width:60px\",\"height:60px\",\"position:relative\",\"display:flex\",\"flex-flow:column nowrap\",\"align-items:center\",\"text-align:center\",\"margin:5px\",\"padding:0\",\"justify-content:center\",\"border-radius:4px\"]],[false,{\".swfw_square_button .swfw-network-icon\":false},[\"margin-top:-12px\"]],[false,{\".swfw_square_button .swfw-text\":false},[\"width:100%\"]],[false,{\".swfw_square_button .swfw-cta\":false,\".swfw_square_button .swfw-count\":false},[\"display:block\",\"width:100%\",\"position:absolute\"]],[false,{\".swfw_square_button .swfw-count\":false},[\"opacity:1\",\"transition:opacity 120ms 0\",\"font-size:12px\"]],[false,{\".swfw_square_button .swfw-cta\":false},[\"opacity:0\",\"transition:opacity 120ms 0\",\"font-size:12px\"]],[false,{\".swfw_square_button:hover .swfw-count\":false},[\"opacity:0\",\"transition:opacity 120ms 120ms\"]],[false,{\".swfw_square_button:hover .swfw-cta\":false},[\"opacity:1\",\"transition:opacity 120ms 120ms\"]],[false,{\".swfw_buttons_button\":false},[\"display:flex\",\"flex-flow:row nowrap\",\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\",\"margin:10px 5px\",\"border-radius:4px\",\"padding:5px 15px\",\"color:white\"]],[false,{\".swfw_buttons_button .swfw-network-icon\":false},[\"padding:0\",\"font-size:32px\"]],[false,{\".swfw_buttons_button .swfw-text\":false},[\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\",\"margin:0 10px\",\"transition:margin 300ms\",\"display:flex\",\"justify-content:center\",\"line-height:32px\",\"color:white\"]],[false,{\".swfw_buttons_button .swfw-text .swfw-cta\":false,\".swfw_buttons_button .swfw-text .swfw-count\":false},[\"display:inline\",\"position:relative\",\"transition:all 300ms\"]],[false,{\".swfw_buttons_button .swfw-text .swfw-cta\":false},[\"width:0\",\"overflow-x:hidden\",\"position:absolute\",\"color:transparent\",\"margin-right:0\",\"font-weight:normal\"]],[false,{\".swfw_buttons_button .swfw-text:hover .swfw-cta\":false},[\"color:white\"]],[false,{\".swfw_buttons_button.swp-snapchat .swfw-text\":false},[\"color:black\"]],[false,{\".swfw_buttons_button.swp-snapchat .swfw-text:hover .swfw-cta\":false},[\"color:black\"]],[false,{\".swfw_buttons_button:hover .swfw-text\":false},[\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\"]],[false,{\".swfw_buttons_button:hover .swfw-text .swfw-cta\":false},[\"width:-moz-min-content\",\"width:-webkit-min-content\",\"width:min-content\",\"overflow-x:visible\",\"position:relative\",\"margin-right:10px\",\"color:white\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_pill_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_shift_button .swfw-network-icon\":false},[\"margin-left:10px\",\"flex:1\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-text\":false,\".swfw-follow-button.swfw_pill_button .swfw-text\":false,\".swfw-follow-button.swfw_shift_button .swfw-text\":false},[\"flex:2\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button\":false},[\"flex:1\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a\":false},[\"padding:none\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a div\":false},[\"padding:10px 30px\",\"background:white\",\"border-radius:2px\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a:hover div\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a:hover div\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a:hover div\":false},[\"background:rgba(33,33,33,.3)\"]],[false,{\".swfw_block_button\":false,\".swfw-follow-button.swfw_leaf_button\":false,\".swfw-follow-button.swfw_pill_button\":false,\".swfw-follow-button.swfw_shift_button\":false},[\"flex-flow:row nowrap\",\"align-items:center\",\"justify-content:space-between\",\"cursor:initial\",\"position:relative\"]],[false,{\".swfw_block_button>*\":false,\".swfw-follow-button.swfw_leaf_button>*\":false,\".swfw-follow-button.swfw_pill_button>*\":false,\".swfw-follow-button.swfw_shift_button>*\":false},[\"width:-moz-min-content\",\"width:-webkit-min-content\",\"width:min-content\"]],[false,{\".swfw_block_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_leaf_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_pill_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_shift_button .swfw-network-icon\":false},[\"margin-left:10px\"]],[false,{\".swfw_block_button .swfw-text\":false,\".swfw-follow-button.swfw_leaf_button .swfw-text\":false,\".swfw-follow-button.swfw_pill_button .swfw-text\":false,\".swfw-follow-button.swfw_shift_button .swfw-text\":false},[\"font-size:12px\",\"line-height:24px\",\"left:calc(10px + 60px)\",\"color:white\",\"text-align:center\"]],[false,{\".swfw_block_button .swfw-text .swfw-count\":false,\".swfw-follow-button.swfw_leaf_button .swfw-text .swfw-count\":false,\".swfw-follow-button.swfw_pill_button .swfw-text .swfw-count\":false,\".swfw-follow-button.swfw_shift_button .swfw-text .swfw-count\":false},[\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\",\"font-size:15px\"]],[false,{\".swfw_block_button.swp-snapchat .swfw-text\":false,\".swp-snapchat.swfw-follow-button.swfw_leaf_button .swfw-text\":false,\".swp-snapchat.swfw-follow-button.swfw_pill_button .swfw-text\":false,\".swp-snapchat.swfw-follow-button.swfw_shift_button .swfw-text\":false},[\"color:black\"]],[false,{\".swfw_block_button .swfw-cta\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta\":false},[\"border-radius:3px\"]],[false,{\".swfw_block_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button\":false},[\"font-size:24px\",\"padding:5px\",\"line-height:24px\",\"border-radius:4px\",\"text-align:center\",\"right:0\"]],[false,{\".swfw_block_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\".swfw_block_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a div\":false},[\"font-size:14px\",\"min-width:100px\",\"border-radius:3px\",\"background:white\",\"padding:5px 15px\"]],[false,{\".swfw_block_button .swfw-cta-button a div:hover\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a div:hover\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a div:hover\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a div:hover\":false},[\"transition:opacity 200ms\",\"background:rgba(30,30,30,.3)\",\"cursor:pointer\",\"color:white\"]],[false,{\".swfw_leaf_button.swfw_square_button\":false,\".swfw_leaf_button.swfw_buttons_button\":false,\".swfw_leaf_button.swfw_block_button\":false,\".swfw_leaf_button.swfw-follow-button\":false},[\"border-top-left-radius:21px\",\"border-top-right-radius:3px\",\"border-bottom-left-radius:3px\",\"border-bottom-right-radius:21px\"]],[false,{\".swfw_leaf_button.swfw_square_button .swfw-network-icon\":false,\".swfw_leaf_button.swfw_buttons_button .swfw-network-icon\":false,\".swfw_leaf_button.swfw_block_button .swfw-network-icon\":false,\".swfw_leaf_button.swfw-follow-button .swfw-network-icon\":false},[\"margin-left:10px\"]],[false,{\".swfw_pill_button.swfw_square_button\":false,\".swfw_pill_button.swfw_buttons_button\":false,\".swfw_pill_button.swfw_block_button\":false,\".swfw_pill_button.swfw-follow-button\":false},[\"border-radius:50px\",\"padding:20px\"]],[false,{\".swfw_pill_button.swfw_square_button .swfw-network-icon\":false,\".swfw_pill_button.swfw_buttons_button .swfw-network-icon\":false,\".swfw_pill_button.swfw_block_button .swfw-network-icon\":false,\".swfw_pill_button.swfw-follow-button .swfw-network-icon\":false},[\"margin-left:10px\"]],[false,{\".swfw_pill_button.swfw_square_button .swfw-cta-button a\":false,\".swfw_pill_button.swfw_buttons_button .swfw-cta-button a\":false,\".swfw_pill_button.swfw_block_button .swfw-cta-button a\":false,\".swfw_pill_button.swfw-follow-button .swfw-cta-button a\":false},[\"border-radius:50px\"]],[false,{\".swfw_pill_button.swfw_square_button .swfw-cta-button a div\":false,\".swfw_pill_button.swfw_buttons_button .swfw-cta-button a div\":false,\".swfw_pill_button.swfw_block_button .swfw-cta-button a div\":false,\".swfw_pill_button.swfw-follow-button .swfw-cta-button a div\":false},[\"border-radius:50px\"]],[false,{\".swfw_shift_button.swfw_square_button\":false,\".swfw_shift_button.swfw_buttons_button\":false,\".swfw_shift_button.swfw_block_button\":false,\".swfw_shift_button.swfw-follow-button\":false},[\"transform:skew(-20deg)\",\"-moz-transform:skew(-20deg)\",\"-o-transform:skew(-20deg)\",\"-webkit-transform:skew(-20deg)\"]],[false,{\".swfw_shift_button.swfw_square_button div\":false,\".swfw_shift_button.swfw_buttons_button div\":false,\".swfw_shift_button.swfw_block_button div\":false,\".swfw_shift_button.swfw-follow-button div\":false},[\"transform:skew(20deg)\",\"-moz-transform:skew(20deg)\",\"-o-transform:skew(20deg)\",\"-webkit-transform:skew(20deg)\",\"align-items:center\",\"display:flex\",\"justify-content:space-around\",\"width:100%\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button\":false},[\"transform:skew(0deg)\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a\":false},[\"padding:none\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a:hover\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a:hover\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a:hover\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a:hover\":false},[\"background:rgba(33,33,33,.3)\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a div\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a div\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a div\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a div\":false},[\"background:none\",\"transform:skew(20deg)\",\"padding:10px 30px\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a div:hover\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a div:hover\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a div:hover\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a div:hover\":false},[\"background:none\"]],[false,{\".swfw-revoke-button\":false,\".swfw-authorization-button\":false},[\"width:70%\",\"text-align:center\",\"max-width:200px\"]],[false,{\".swfw-input-field\":false,\".swfw-follow-field\":false},[\"display:flex\",\"flex-flow:row nowrap\",\"justify-content:space-between\",\"align-items:center\",\"height:50px\",\"margin:15px auto\"]],[false,{\".swfw-follow-field.swfw-inactive a\":false},[\"cursor:initial\"]],[false,{\".swfw-follow-field.swfw-active a\":false},[\"cursor:pointer\"]],[false,{\".swfw-follow-field-icon\":false},[\"color:black\",\"width:40px\",\"font-size:40px\",\"line-height:42px\",\"font-weight:bold\",\"transition:all 200ms\",\"border-radius:3px\",\"height:40px\",\"text-align:center\",\"padding:2px\"]],[false,{\".swfw-widget label\":false},[\"font-size:14px\",\"width:100px\"]],[false,{\".swfw-follow-field label\":false},[\"text-align:right\"]],[false,{\".swfw-input-field input\":false,\".swfw-input-field select\":false,\".swfw-follow-field input\":false},[\"padding:10px\",\"width:50%\",\"height:100%\",\"border-radius:4px\"]],[false,{\".swfw-follow-field.swfw-inactive div\":false},[\"background:white\"]],[false,{\".swfw-follow-field.swfw-active div\":false},[\"color:white\"]],[false,{\"a.swp-hover-pin-button\":false},[\"background:#cd2029\",\"border:1px solid #aa1b29\",\"border:0\",\"border-bottom:none\",\"border-radius:3px\",\"box-shadow:none\",\"color:#fff\",\"font-family:Lato,sans-serif\",\"font-size:15px\",\"height:32px\",\"line-height:32px\",\"padding:0 20px\",\"position:absolute\",\"position:absolute\",\"text-decoration:none\",\"text-align:center\",\"transition:opacity .5s\",\"z-index:3200\",\"cursor:pointer\"]],[false,{\"a.swp-hover-pin-button:not(#_#_#_#_#_#_#_#_)\":false},[\"width:120px\"]],[false,{\"a.swp-hover-pin-button::before\":false},[\"content:\\\"A\\\"\",\"color:#fff\",\"float:left\",\"font-family:sw-icon-font\",\"font-size:20px\",\"font-weight:400\",\"line-height:36px\",\"margin-left:-5px\",\"margin-right:10px\"]],[false,{\"a.swp-hover-pin-button:hover::before\":false},[\"content:\\\"z\\\"\"]],[false,{\"a.swp-hover-pin-button:hover\":false,\"a.swp-hover-pin-button:focus\":false},[\"background:#aa1b29\",\"color:#fff\",\"text-decoration:none\"]],[false,{\".swp-pinterest-image-top\":false},[\"margin-bottom:20px\"]],[false,{\".swp-pinterest-image-bottom\":false},[\"margin-top:20px\"]],[false,{\".swp_pop_thumb\":false},[\"border-radius:3px\",\"float:left\",\"height:100px\",\"margin:5px 25px 5px 0\",\"width:100px\"]],[false,{\".swp_popular_post\":false},[\"clear:both\"]],[false,{\".swp_popular_post a.swp_popularity\":false},[\"border:none\",\"display:block\",\"line-height:1.5\",\"margin:20px 0\"]],[false,{\".swp_clearfix:after\":false},[\"clear:both\",\"content:\\\" \\\"\",\"display:block\",\"height:0\",\"visibility:hidden\"]],[false,{\"span.swp_pop_count\":false},[\"display:block\",\"font-size:70%\"]],[false,{\".swp_widget_box\":false},[\"border-radius:3px\"]],[false,{\".swp_hidden_pin_image\":false},[\"height:0\",\"opacity:0\",\"position:absolute\",\"top:0\",\"width:0\",\"z-index:-10\"]],[false,{\".swp-content-locator:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"margin:0\"]],[false,{\".swp-lightbox-wrapper\":false},[\"width:100%\",\"height:100%\",\"position:fixed\",\"top:0\",\"background:#fff\",\"z-index:999999\"]],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner\":false},[\"width:50%\",\"left:25%\",\"position:relative\",\"text-align:center\",\"top:10%\",\"background:#fff\",\"padding:35px\",\"border-radius:10px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner\":false},[\"width:80%\",\"left:10%\"]],[false,\"}\"],[false,\"@media (max-width: 450px){\"],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner\":false},[\"width:90%\",\"left:5%\"]],[false,\"}\"],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner h5\":false},[\"font-family:Lato,sans-serif\",\"font-size:25px\",\"margin-bottom:40px\",\"text-align:center\"]],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner .swp-lightbox-close\":false},[\"font-weight:bold\",\"height:20px\",\"width:20px\",\"cursor:pointer\",\"color:#30394f\",\"text-align:right\",\"transform:rotate(45deg)\",\"display:inline-block\",\"float:right\",\"margin:-30px\",\"font-size:25px\"]],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner .swp-lightbox-close:before\":false},[\"content:\\\"+\\\"\",\"font-family:arial\"]],[false,\"@media print{\"],[false,{\".swp-lightbox-wrapper\":false},[\"display:none\"]],[false,\"}\"],[false,{\".swp-lightbox-wrapper .swp_pinterest_icon.top_icon\":false,\".swp-lightbox-wrapper .swp_share_icon\":false},[\"color:#cd2029\",\"font-size:45px\",\"margin:0\",\"padding:0\",\"line-height:0\"]],[false,{\".swp-lightbox-wrapper .swp_share_icon\":false},[\"color:#000\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .swp-lightbox-inner\":false},[\"width:70%\",\"left:15%\",\"height:80%\",\"overflow-y:auto\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .swp-lightbox-inner h5\":false},[\"margin-bottom:40px\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper\":false},[\"text-align:center\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper\":false},[\"display:inline-block\",\"width:24%\",\"margin-right:1%\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper amp-img\":false,\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper amp-anim\":false},[\"border-radius:3px\",\"max-width:100%\",\"height:auto\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper .swp-hover-pin-button\":false},[\"position:initial\",\"display:block\",\"margin-top:10px\",\"margin-bottom:40px\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper .swp-hover-pin-button:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":8320,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"__EPYT__style-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/styles\\/ytprefs.min.css?ver=14.1.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"style\",\"handle\":\"__EPYT__style\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"__EPYT__style\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"9c3e04efd2df5c19054e5b96b851efb8\",\"parse_time\":0.0915369987487793,\"shake_time\":0.00010204315185546875,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".epyt-debug\":false},[\"cursor:pointer\",\"text-align:left\",\"background-color:#ddd\",\"color:#000\"]],[false,{\"amp-iframe.__youtube_prefs__\":false},[\"border-width:0\"]],[false,{\".epyt-gallery\":false},[\"text-align:center\"]],[false,{\".epyt-gallery .epyt-figure\":false},[\"margin-inline:0\",\"margin-block:0\"]],[false,{\".epyt-gallery amp-iframe\":false},[\"margin-bottom:0\"]],[false,{\".epyt-gallery.epyt-lb amp-iframe\":false},[\"display:none\"]],[false,{\".epyt-gallery.epyt-lb amp-iframe:not(#_#_#_#_#_#_#_#_)\":false},[\"height:0\"]],[false,{\".epyt-gallery-list\":false},[\"margin:0 -8px 0 -8px\",\"position:relative\",\"transition:opacity ease-out .3s\",\"display:block\"]],[false,{\".epyt-gallery-list .epyt-gallery-thumb\":false},[\"box-sizing:border-box\"]],[false,{\".epyt-gallery-list p\":false},[\"display:none\"]],[false,{\".epyt-gallery-clear\":false},[\"clear:both\"]],[false,{\".epyt-gallery-list.epyt-loading\":false},[\"opacity:.5\",\"transition:opacity ease-out .3s\"]],[false,{\".epyt-gallery-thumb\":false},[\"position:relative\",\"box-sizing:border-box\",\"overflow-y:hidden\",\"cursor:pointer\",\"opacity:1\",\"float:left\",\"padding:0 8px 10px 8px\",\"height:auto\"]],[false,{\".epyt-gallery-thumb:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".epyt-gallery-thumb.hover\":false},[\"position:relative\",\"opacity:1\",\"transition:opacity ease-out .3s\",\"height:auto\"]],[false,{\".epyt-gallery-img-box\":false},[\"width:100%\"]],[false,{\".epyt-gallery-img\":false},[\"height:0\",\"width:100%\",\"position:relative\"]],[false,{\".epyt-gallery-img:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:56.25%\",\"overflow:hidden\",\"background-size:cover\",\"background-position:center\"]],[false,{\".epyt-gallery-playhover\":false},[\"opacity:0\",\"position:absolute\",\"top:-10px\",\"left:0\",\"width:100%\",\"height:100%\",\"vertical-align:middle\",\"text-align:center\",\"transition:opacity ease-out .3s\"]],[false,{\".epyt-gallery-thumb.hover .epyt-gallery-playhover\":false,\".epyt-gallery-thumb.epyt-current-video .epyt-gallery-playhover\":false},[\"opacity:1\",\"top:0\",\"transition:all ease-out .3s\"]],[false,{\".epyt-gallery-thumb .epyt-gallery-playcrutch\":false},[\"display:inline-block\",\"height:100%\",\"vertical-align:middle\",\"width:0\"]],[false,{\".epyt-gallery-playhover .epyt-play-img\":false},[\"width:auto\",\"border:0\",\"box-sizing:border-box\"]],[false,{\".epyt-gallery-playhover .epyt-play-img:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\",\"max-width:15%\",\"padding:0\",\"margin:0\",\"min-width:30px\",\"vertical-align:middle\",\"display:inline-block\"]],[false,{\".epyt-gallery-title\":false},[\"font-size:80%\",\"line-height:120%\",\"padding:10px\"]],[false,{\".epyt-gallery-notitle\":false},[\"padding:4px\"]],[false,{\".epyt-gallery-notitle span\":false},[\"display:none\"]],[false,{\".epyt-gallery-rowtitle\":false},[\"text-align:center\",\"width:100%\",\"position:absolute\",\"left:0\",\"top:100%\",\"opacity:0\",\"z-index:10\",\"overflow-x:hidden\",\"text-overflow:ellipsis\",\"white-space:nowrap\"]],[false,{\".epyt-gallery-rowtitle.hover\":false},[\"opacity:1\",\"transition:opacity linear .2s\"]],[false,{\".epyt-gallery-rowbreak\":false},[\"clear:both\"]],[false,{\".epyt-pagination\":false},[\"clear:both\",\"text-align:center\",\"padding:10px 8px 10px 8px\"]],[false,{\".epyt-pagination.epyt-hide-pagination *:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".epyt-pagination>div\":false,\".epyt-pagenumbers>div\":false},[\"display:inline-block\",\"padding:0 2px 0 2px\",\"vertical-align:middle\"]],[false,{\".epyt-pagination .epyt-pagebutton\":false},[\"cursor:pointer\",\"display:inline-block\",\"padding:0 10px 0 10px\"]],[false,{\".epyt-pagebutton>div\":false},[\"display:inline\"]],[false,{\".epyt-pagination .epyt-loader\":false},[\"display:none\"]],[false,{\".epyt-gallery-list.epyt-loading .epyt-pagination .epyt-loader\":false},[\"display:inline-block\"]],[false,{\"body .lity-container\":false},[\"width:100%\",\"max-width:964px\"]],[false,{\".epyt-curtain .lity-opened amp-iframe\":false},[\"opacity:0\",\"transition:opacity .3s linear .5s\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-1 .epyt-gallery-thumb\":false},[\"width:100%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-2 .epyt-gallery-thumb\":false},[\"width:50%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-3 .epyt-gallery-thumb\":false},[\"width:33.333%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-4 .epyt-gallery-thumb\":false},[\"width:25%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-5 .epyt-gallery-thumb\":false},[\"width:20%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-6 .epyt-gallery-thumb\":false},[\"width:16.666%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-7 .epyt-gallery-thumb\":false},[\"width:14.285%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-8 .epyt-gallery-thumb\":false},[\"width:12.5%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-9 .epyt-gallery-thumb\":false},[\"width:11.111%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-10 .epyt-gallery-thumb\":false},[\"width:10%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-11 .epyt-gallery-thumb\":false},[\"width:9.09%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-12 .epyt-gallery-thumb\":false},[\"width:8.333%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-13 .epyt-gallery-thumb\":false},[\"width:7.692%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-14 .epyt-gallery-thumb\":false},[\"width:7.142%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-15 .epyt-gallery-thumb\":false},[\"width:6.666%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-16 .epyt-gallery-thumb\":false},[\"width:6.25%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-17 .epyt-gallery-thumb\":false},[\"width:5.882%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-18 .epyt-gallery-thumb\":false},[\"width:5.555%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-19 .epyt-gallery-thumb\":false},[\"width:5.263%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-20 .epyt-gallery-thumb\":false},[\"width:5%\"]],[false,{\".epyt-pagebutton.hide:not(#_#_#_#_#_#_#_)\":false,\".epyt-pagenumbers.hide:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"opacity:0\",\"visibility:hidden\"]],[false,{\".epyt-gallery-subscribe\":false},[\"text-align:center\",\"padding:15px 0 10px 0\",\"clear:both\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton:hover\":false},[\"display:inline-block\",\"padding:5px 10px\",\"border-radius:3px\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton:not(#_#_#_#_#_#_#_#_)\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#e62117\",\"color:#fff\",\"text-decoration:none\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-img\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-anim\":false},[\"padding:0 6px 3px 0\",\"display:inline-block\",\"background:transparent\",\"-webkit-box-shadow:none\",\"box-shadow:none\",\"margin:0\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:20px\",\"height:auto\",\"vertical-align:middle\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__\":false},[\"background-color:#000\",\"background-image:-webkit-linear-gradient(top,#000,#444)\",\"background-image:linear-gradient(to bottom,#000,#444)\",\"padding:25px\",\"height:auto\",\"text-align:left\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ *:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#e3e3e3\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ a\":false},[\"text-decoration:underline\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:hover\":false},[\"display:inline-block\",\"padding:5px 10px\",\"border-radius:3px\",\"font-weight:normal\",\"border-width:0\",\"box-sizing:border-box\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:not(#_#_#_#_#_#_#_#_)\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#e62117\",\"color:#fff\",\"text-decoration:none\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-img\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-anim\":false},[\"padding:0 6px 3px 0\",\"display:inline-block\",\"background:transparent\",\"-webkit-box-shadow:none\",\"box-shadow:none\",\"margin-left:8px\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-img:not(#_#_#_#_#_#_#_#_)\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:20px\",\"height:auto\",\"vertical-align:middle\"]],[false,{\"body .epyt-gallery-img-gdpr\":false},[\"background-color:#000\",\"background-image:-webkit-linear-gradient(top,#000,#444)\",\"background-image:linear-gradient(to bottom,#000,#444)\"]],[false,{\".epyt-facade\":false},[\"position:relative\",\"padding-bottom:56.25%\",\"height:0\",\"overflow:hidden\",\"max-width:100%\",\"-webkit-transition:.4s all\",\"-moz-transition:.4s all\",\"transition:.4s all\"]],[false,{\".epyt-facade:hover\":false},[\"-webkit-filter:brightness(90%)\",\"-moz-filter:brightness(90%)\",\"filter:brightness(90%)\"]],[false,{\".epyt-facade amp-img.epyt-facade-poster\":false,\".epyt-facade amp-anim.epyt-facade-poster\":false},[\"display:block\",\"margin:0\",\"max-width:100%\",\"width:100%\",\"position:absolute\",\"top:50%\",\"left:50%\",\"transform:translate(-50%,-50%)\",\"border:0\",\"height:auto\",\"cursor:pointer\"]],[false,{\".epyt-facade button.epyt-facade-play\":false},[\"position:absolute\",\"left:50%\",\"top:50%\",\"width:68px\",\"height:48px\",\"margin-left:-34px\",\"margin-top:-24px\",\"-webkit-transition:opacity .25s cubic-bezier(0,0,.2,1)\",\"transition:opacity .25s cubic-bezier(0,0,.2,1)\",\"cursor:pointer\"]],[false,{\".epyt-facade button.epyt-facade-play:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:transparent\",\"border-width:0\"]],[false,{\".epyt-facade button.epyt-facade-play svg\":false},[\"height:100%\",\"left:0\",\"position:absolute\",\"top:0\",\"width:100%\",\"pointer-events:none\"]],[false,{\".epyt-facade button.epyt-facade-play svg .ytp-large-play-button-bg\":false},[\"-webkit-transition:fill .1s cubic-bezier(.4,0,1,1),fill-opacity .1s cubic-bezier(.4,0,1,1)\",\"transition:fill .1s cubic-bezier(.4,0,1,1),fill-opacity .1s cubic-bezier(.4,0,1,1)\",\"fill:#212121\",\"fill-opacity:.8\"]],[false,{\".epyt-facade:hover button.epyt-facade-play svg .ytp-large-play-button-bg\":false},[\"-webkit-transition:fill .1s cubic-bezier(0,0,.2,1),fill-opacity .1s cubic-bezier(0,0,.2,1)\",\"transition:fill .1s cubic-bezier(0,0,.2,1),fill-opacity .1s cubic-bezier(0,0,.2,1)\",\"fill:#f00\",\"fill-opacity:1\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.epyt-facade\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\"]],[false,{\".wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.__youtube_prefs_gdpr__\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.__youtube_prefs_gdpr__\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"overflow-y:auto\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper.epyt-is-override__wrapper:before\":false},[\"padding:0\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper.epyt-is-override__wrapper .epyt-is-override.__youtube_prefs_gdpr__\":false},[\"position:relative\",\"top:unset\",\"right:unset\",\"bottom:unset\",\"left:unset\"]],[false,{\".ytvi-story-container\":false},[\"display:block\",\"max-width:100%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":81,\"final_size\":0,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"__EPYT__style-inline-css\",\"type\":\"text\\/css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"\\r\\n .epyt-gallery-thumb {\\r\\n width: 33.333%;\\r\\n }\\r\\n \",\"handle\":\"__EPYT__style\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"\\r\\n .epyt-gallery-thumb {\\r\\n width: 33.333%;\\r\\n }\\r\\n \",\"handle\":\"__EPYT__style\"}],\"priority\":70,\"hash\":\"c0787a0c009a93e8e21ea0b9ce09b54f\",\"parse_time\":0.0006740093231201172,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".epyt-gallery-thumb\":false},[\"width:33.333%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":323,\"final_size\":64,\"element\":{\"name\":\"style\",\"attributes\":{\"type\":\"text\\/css\",\"id\":\"wp-custom-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"theme.php\",\"line\":1824,\"function\":\"wp_custom_css_cb\",\"hook\":\"wp_head\",\"priority\":101}],\"priority\":60,\"hash\":\"ed93f9bffe93712a600c426300d64207\",\"parse_time\":0.002050161361694336,\"shake_time\":1.1920928955078125e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".tek-ai\":false},[\"height:auto\"]],[false,{\".tek-ai amp-img\":false,\".tek-ai amp-anim\":false},[\"max-height:570px\"]],[false,{\".tek-ai amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".tek-ai amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[false,\"@media (max-width:992px){\"],[false,{\".tek-ai\":false},[\"height:auto\"]],[false,{\".tek-ai:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width: 1400px){\"],[false,{\".tek-ai\":false},[\"height:auto\"]],[false,\"}\"],[true,{\".footer-2022__menu--list.footer_links:nth-child(4)\":true},[\"display:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":32514,\"final_size\":560,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/new-styles.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"027619c7f9b61a6c4dcfcb8a6160ac60\",\"parse_time\":0.4198160171508789,\"shake_time\":0.0005960464477539062,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"body\":true},[\"background-color:#f7f7f7\"]],[true,{\"body:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".no-overflow\":false},[\"overflow:hidden\"]],[true,{\"h1\":true},[\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\"h2\":false},[\"font-size:32px\",\"line-height:32px\",\"font-family:\\\"Rajdhani\\\",sans-serif\",\"font-weight:400\",\"color:#182647\",\"margin-bottom:20px\",\"padding-bottom:20px\"]],[false,{\"h2 strong\":false},[\"color:#182647\",\"font-weight:700\"]],[false,{\"h2:after\":false},[\"width:470px\",\"max-width:100%\",\"height:1px\",\"left:0\",\"bottom:0\",\"content:\\\"\\\"\",\"background-color:#182647\",\"position:absolute\",\"box-shadow:3px 3px 12px rgba(24,38,71,.4)\"]],[false,{\"h2.bolder\":false},[\"text-transform:uppercase\",\"font-weight:700\"]],[true,{\"h3\":true},[\"font-size:40px\",\"line-height:40px\",\"text-transform:uppercase\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:700\",\"color:#182647\"]],[true,\"@media (max-width: 1024px){\"],[true,{\"h3\":true},[\"font-size:30px\",\"line-height:30px\"]],[true,\"}\"],[false,{\".container-fluid\":false},[\"max-width:unset\"]],[false,{\".container-fluid:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".new-home__top\":false},[\"width:100%\",\"height:600px\",\"background-color:#121d3d\",\"margin-top:100px\",\"color:#182647\",\"font-size:24px\",\"line-height:30px\"]],[false,{\".new-home__top:not(#_#_#_#_#_#_#_)\":false},[\"opacity:0\"]],[false,{\".new-home__top .owl-nav\":false},[\"position:absolute\",\"width:calc(100%)\",\"text-align:center\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"margin-top:-50px\"]],[false,{\".new-home__top .owl-prev\":false,\".new-home__top .owl-next\":false},[\"width:30px\",\"height:30px\",\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[false,{\".new-home__top .owl-prev:not(#_#_#_#_#_#_#_)\":false,\".new-home__top .owl-next:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\",\"border:2px solid #fff\",\"font-size:15px\",\"line-height:15px\"]],[false,{\".new-home__top .owl-prev\":false},[\"margin-right:10px\"]],[false,{\".new-home__top h1\":false},[\"font-size:90px\",\"line-height:90px\",\"color:#fff\",\"font-weight:700\",\"margin:0 0 15px\"]],[false,{\".new-home__top .color-point\":false},[\"color:#24ffff\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__top h1\":false},[\"font-size:45px\",\"line-height:45px\"]],[false,\"}\"],[false,{\".new-home__top h2\":false},[\"line-height:23px\",\"color:#24c1ff\",\"margin:0 0 20px\",\"text-transform:uppercase\",\"border:1px solid #24c1ff\",\"padding:8px 15px\",\"display:inline-block\"]],[false,{\".new-home__top h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-family:\\\"Rajdhani\\\",sans-serif\",\"font-size:20px\",\"font-weight:500\"]],[false,{\".new-home__top h2:after\":false},[\"display:none\"]],[false,{\".new-home__top h3\":false},[\"color:#24c1ff\",\"font-size:23px\",\"line-height:28px\",\"text-transform:inherit\",\"margin-bottom:20px\"]],[false,{\".new-home__top p\":false},[\"color:#fff\",\"font-size:17px\",\"line-height:23px\",\"font-weight:300\"]],[false,{\".new-home__top p a\":false},[\"text-decoration:underline\"]],[false,{\".new-home__top-button\":false},[\"width:250px\",\"height:45px\",\"border:0\",\"background-color:#fff\",\"color:#000\",\"text-transform:uppercase\",\"font-size:15px\",\"font-weight:600\",\"margin-top:20px\"]],[false,{\".new-home__top .owl-dots\":false},[\"position:absolute\",\"bottom:100px\",\"right:15px\"]],[false,{\".new-home__top .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".new-home__top .owl-dot\":false},[\"width:10px\",\"height:10px\",\"border:0\",\"border-radius:50%\",\"display:block\",\"margin:8px 0\"]],[false,{\".new-home__top .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#dbdbde\"]],[false,{\".new-home__top .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#adef7f\"]],[false,{\".new-home__item\":false},[\"background-position:right center\",\"background-size:auto 100%\",\"background-repeat:no-repeat\",\"height:600px\",\"background-color:#121d3d\",\"max-width:1990px\",\"margin:0 auto\",\"position:relative\"]],[false,\"@media (max-width: 1200px){\"],[false,{\".new-home__item\":false},[\"background-size:auto 70%\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__item:not(#_#_#_#_#_#_#_)\":false},[\"background-image:unset\"]],[false,\"}\"],[false,\"@media (max-width: 1000px) and (orientation: landscape){\"],[false,{\".new-home__item:not(#_#_#_#_#_#_#_)\":false},[\"background-image:unset\"]],[false,\"}\"],[false,{\".new-home__top .dot\":false},[\"display:inline-block\",\"color:#b7f254\",\"animation:blinker 1s linear infinite\"]],[false,{\".new-home__video\":false},[\"max-width:55%\",\"height:100%\",\"position:absolute\",\"right:0\",\"top:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__video\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (max-width: 1200px){\"],[false,{\".new-home__video\":false},[\"max-width:50%\"]],[false,\"}\"],[false,\"@media (max-width: 1000px) and (orientation: landscape){\"],[false,{\".new-home__video\":false},[\"display:none\"]],[false,\"}\"],[false,{\".new-home__item .container\":false,\".new-home__item .row\":false},[\"height:100%\"]],[false,{\".new-home__features\":false},[\"width:100%\",\"background-color:#f7f7f7\",\"padding-top:50px\",\"padding-bottom:80px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__features-item\":false},[\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".new-home__post-item\":false},[\"width:100%\",\"height:250px\",\"background-color:#182647\",\"color:#fff\",\"font-size:20px\",\"line-height:25px\",\"padding:25px\"]],[false,{\".new-home__post-button\":false},[\"width:130px\",\"height:40px\",\"border:0\",\"background-color:#182647\",\"color:#fff\",\"text-transform:uppercase\",\"font-size:14px\",\"margin-top:25px\"]],[false,{\".new-home__features-item:nth-child(even)\":false},[\"display:flex\",\"flex-direction:column\"]],[false,{\".new-home__features-item:nth-child(even) .new-home__post-item\":false},[\"background-color:#adef7f\",\"color:#182647\",\"order:2\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__features-item:nth-child(even) .new-home__post-item\":false},[\"order:1\"]],[false,\"}\"],[false,{\".new-home__features-item:nth-child(even) .new-home__post-button\":false},[\"order:1\",\"margin:0 0 25px auto\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__features-item:nth-child(even) .new-home__post-button\":false},[\"order:2\",\"margin:25px 0 0 0\"]],[false,\"}\"],[false,{\".new-home__process\":false},[\"width:100%\",\"background-color:#e6e6e6\",\"padding-bottom:50px\",\"font-size:24px\",\"line-height:30px\",\"color:#182647\"]],[false,{\".new-home__service\":false},[\"padding-bottom:80px\",\"background-color:#f7f7f7\",\"position:relative\",\"overflow:hidden\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".new-home__service\":false},[\"padding-bottom:0\"]],[false,\"}\"],[false,{\".new-home__service h2\":false},[\"color:#6a4896\",\"text-transform:uppercase\",\"font-weight:700\"]],[false,{\".new-home__service-text\":false},[\"background-color:#dbdbde\",\"min-height:470px\",\"padding:80px 15% 80px 15px\",\"font-size:24px\",\"line-height:30px\"]],[false,{\".new-home__service:nth-child(even) .new-home__service-text:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:50vw\",\"height:100%\",\"top:0\",\"left:-50vw\",\"background-color:#dbdbde\",\"z-index:-1\"]],[false,{\".new-home__service:nth-child(odd) .new-home__service-text\":false},[\"padding:80px 15px 80px 15%\"]],[false,{\".new-home__service:nth-child(odd) .new-home__service-text:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:50vw\",\"height:100%\",\"top:0\",\"right:-50vw\",\"background-color:#dbdbde\",\"z-index:-1\"]],[false,\"@media (max-width: 1400px){\"],[false,{\".new-home__service-text\":false},[\"min-height:430px\",\"padding:70px 15%\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".new-home__service-text:not(#_#_#_#_#_#_#_)\":false},[\"padding:70px 10%\"]],[false,{\".new-home__service:nth-child(odd) .new-home__service-text\":false},[\"background-color:#f7f7f7\"]],[false,\"}\"],[false,{\".new-home__service-button\":false},[\"width:130px\",\"height:40px\",\"border:0\",\"background-color:#182647\",\"color:#fff\",\"text-transform:uppercase\",\"font-size:14px\",\"margin-top:100px\"]],[false,{\".new-home__service-image\":false},[\"padding:40px 0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__service-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".new-home__service-image amp-img\":false,\".new-home__service-image amp-anim\":false},[\"background-color:#fff\",\"max-height:390px\",\"margin-left:-25%\",\"box-shadow:4px 4px 8px rgba(173,239,127,.5)\"]],[false,{\".new-home__service:nth-child(odd) .new-home__service-image amp-img\":false,\".new-home__service:nth-child(odd) .new-home__service-image amp-anim\":false},[\"margin-right:-25%\",\"margin-left:auto\",\"box-shadow:-4px 4px 8px rgba(173,239,127,.5)\"]],[false,{\".new-home__case-study\":false},[\"background-color:#c4c4c4\"]],[false,{\".new-home__case-text\":false},[\"padding:80px 15px\",\"font-size:24px\",\"line-height:30px\"]],[false,{\".new-home__case-text .preh\":false},[\"font-size:32px\",\"line-height:37px\",\"color:#6a4896\",\"text-transform:uppercase\",\"margin-bottom:15px\",\"display:block\"]],[false,{\".new-home__case-text h2\":false},[\"font-size:40px\",\"line-height:47px\"]],[false,{\".new-home__case-button\":false},[\"width:130px\",\"height:40px\",\"border:0\",\"background-color:#182647\",\"color:#fff\",\"text-transform:uppercase\",\"font-size:14px\",\"margin-top:25px\"]],[false,{\".new-home__case-img\":false},[\"height:410px\",\"margin:30px 0\"]],[false,{\".new-home__clients\":false},[\"width:100%\",\"background-color:#f7f7f7\",\"padding-top:80px\",\"padding-bottom:40px\"]],[false,{\".new-home__clients .owl-item\":false},[\"box-shadow:4px 7px 7px rgba(196,196,196,.6)\",\"margin-bottom:30px\"]],[false,{\".new-home__clients .item\":false},[\"background-color:#fff\",\"display:flex\",\"justify-content:center\",\"align-items:center\",\"height:145px\"]],[false,{\".new-home__clients .item amp-img\":false,\".new-home__clients .item amp-anim\":false},[\"width:auto\",\"max-width:90%\",\"max-height:90%\"]],[false,{\".new-home__clients .owl-dots\":false},[\"text-align:center\"]],[false,{\".new-home__clients .owl-dot\":false},[\"width:10px\",\"height:10px\",\"border-radius:50%\",\"margin:0 4px\"]],[false,{\".new-home__clients .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#bbb\"]],[false,{\".new-home__clients .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#5b5b5b\"]],[false,{\".new-home__contact\":false},[\"width:100%\",\"background-color:#f7f7f7\",\"padding-top:20px\"]],[false,{\".new-home__contact--intern\":false},[\"background-color:#182647\",\"padding-top:0px\"]],[false,{\".new-home__contact--intern .wpcf7-response-output\":false},[\"color:#fff\"]],[false,{\".new-home__contact-form\":false},[\"padding:20px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__contact-form\":false},[\"margin-right:15px\",\"max-width:100%\"]],[false,\"}\"],[false,{\".new-home__contact-form .row\":false},[\"margin-left:-10px\",\"margin-right:-10px\"]],[false,{\".new-home__contact-form .col-lg-6\":false,\".new-home__contact-form .col-12\":false},[\"padding-right:10px\",\"padding-left:10px\"]],[false,{\".new-home__input\":false},[\"height:40px\",\"width:100%\",\"background:#f7f7f7\",\"color:#182647\",\"line-height:40px\",\"border:0\",\"margin-bottom:20px\",\"border-radius:0\",\"padding:0 10px\"]],[false,{\".new-home__textarea\":false},[\"height:145px\",\"width:100%\",\"background:#f7f7f7\",\"color:#182647\",\"border:0\",\"margin-bottom:15px\",\"border-radius:0\",\"padding:5px 10px\"]],[false,{\".new-home__input-btn\":false},[\"width:80px\",\"height:40px\",\"background-color:#f7f7f7\",\"color:#182647\",\"border:0\",\"text-transform:uppercase\",\"font-size:14px\"]],[false,{\"#wpgmza_map:not(#_#_#_#_#_#_#_)\":false},[\"height:100%\"]],[false,\"@media (max-width: 768px){\"],[false,{\"#wpgmza_map\":false},[\"margin-left:15px\"]],[false,{\"#wpgmza_map:not(#_#_#_#_#_#_#_)\":false},[\"height:301px\",\"width:calc(100% - 30px)\"]],[false,\"}\"],[false,{\".what__top\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"padding-top:100px\"]],[false,{\".what__top--carousel\":false},[\"height:auto\"]],[false,{\".what__top--desktop:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".what__top--mobile:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".what__top .owl-dots\":false},[\"position:absolute\",\"bottom:100px\",\"right:15px\",\"height:auto\"]],[false,{\".what__top .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".what__top .owl-dot\":false},[\"width:10px\",\"height:10px\",\"border:0\",\"border-radius:50%\",\"display:block\",\"margin:8px 0\"]],[false,{\".what__top .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#dbdbde\"]],[false,{\".what__top .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#adef7f\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".what__top--desktop:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".what__top--mobile:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,\"}\"],[false,{\".what__top div\":false},[\"height:100%\"]],[false,{\".what__featured\":false},[\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[false,{\".what__featured amp-img\":false,\".what__featured amp-anim\":false},[\"max-height:100%\"]],[false,{\".what__content\":false},[\"background-color:#f7f7f7\",\"padding:40px 0 0\",\"color:#182647\",\"font-size:20px\",\"line-height:24px\"]],[false,{\".what__content .wp-block-button__link\":false},[\"width:auto\",\"border:0\",\"background-color:#182647\",\"text-transform:uppercase\",\"font-size:14px\",\"line-height:20px\",\"border-radius:0\",\"margin-bottom:25px\"]],[false,{\".what__content .wp-block-button__link:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".what__clients\":false},[\"background-color:#f7f7f7\",\"padding:0 0 40px\",\"color:#182647\",\"font-size:20px\",\"line-height:30px\"]],[false,{\".what__content h1\":false},[\"font-size:40px\",\"line-height:40px\",\"color:#182647\",\"margin-bottom:20px\",\"padding-bottom:20px\",\"font-weight:700\"]],[false,{\".what__content h1:after\":false},[\"width:470px\",\"max-width:100%\",\"height:1px\",\"left:0\",\"bottom:0\",\"content:\\\"\\\"\",\"background-color:#182647\",\"position:absolute\",\"box-shadow:3px 3px 12px rgba(24,38,71,.4)\"]],[false,{\".what__content h2\":false,\".what__clients h2\":false},[\"font-weight:700\"]],[false,{\".what__content h3\":false,\".what__clients h3\":false},[\"font-size:24px\",\"line-height:30px\"]],[false,{\".what__content h4\":false},[\"margin-bottom:40px\"]],[false,{\".what__content p\":false},[\"margin-bottom:25px\"]],[false,{\".what__content p amp-img\":false,\".what__content p amp-anim\":false},[\"vertical-align:bottom\"]],[false,{\".what__content p + h2\":false},[\"margin-top:40px\"]],[false,{\".what__content amp-img\":false,\".what__content amp-anim\":false},[\"width:100%\"]],[false,{\".client-testimonial\":false},[\"width:calc(50% - 30px)\",\"max-width:50%\",\"position:relative\",\"min-height:1px\",\"margin-right:15px\",\"margin-left:15px\",\"padding:15px\",\"box-shadow:4px 7px 7px rgba(196,196,196,.6)\",\"margin-bottom:40px\"]],[false,\"@media (max-width: 960px){\"],[false,{\".client-testimonial\":false},[\"width:calc(100% - 30px)\",\"max-width:unset\"]],[false,\"}\"],[false,{\".client-testimonial p\":false},[\"margin-bottom:0\"]],[false,{\".client-testimonial p + strong\":false},[\"margin-top:20px\",\"display:block\"]],[false,{\".client-testimonial:nth-child(even)\":false},[\"color:#182647\",\"background-color:#adef7f\"]],[false,{\".client-testimonial:nth-child(odd)\":false},[\"background-color:#182647\",\"color:#adef7f\"]],[false,{\".whats-next__img\":false},[\"width:100%\",\"height:230px\",\"background-color:#c4c4c4\",\"margin-bottom:25px\"]],[false,{\".green-background\":false},[\"background-color:#adef7f\",\"padding:40px 0\",\"margin-bottom:40px\"]],[false,{\".green-background h4\":false},[\"margin-bottom:0\",\"line-height:34px\"]],[false,{\".wp-block-quote\":false},[\"background-color:#fff\",\"padding:25px 100px\",\"margin:40px auto\"]],[false,{\".wp-block-quote p\":false},[\"color:#6a4896\",\"font-weight:700\",\"font-size:28px\",\"line-height:32px\"]],[false,{\".wp-block-quote cite\":false},[\"font-style:inherit\",\"font-size:14px\"]],[false,{\".wp-block-quote cite amp-img\":false,\".wp-block-quote cite amp-anim\":false},[\"vertical-align:bottom\"]],[false,{\".wp-block-columns\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-columns.nospace:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".wp-block-columns .wp-block-image\":false,\".wp-block-columns .mrdata\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-columns .mrdata\":false},[\"line-height:38px\"]],[false,{\".wp-block-columns .mrdata amp-img\":false,\".wp-block-columns .mrdata amp-anim\":false},[\"width:auto\"]],[false,{\".kubernetes__section\":false},[\"color:white\",\"width:100%\",\"position:relative\",\"padding:0\",\"border-bottom:1px solid #6490eb\",\"background-repeat:no-repeat\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__section\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,{\".kubernetes__section h1\":false},[\"position:relative\",\"font-weight:700\",\"line-height:50px\",\"font-size:50px\",\"color:#fff\",\"margin:0 0 20px\",\"padding-top:30px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__section h1\":false},[\"line-height:30px\",\"font-size:30px\"]],[false,\"}\"],[false,{\".kubernetes__section h1:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".kubernetes__section h1:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__section h1:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".kubernetes__section h2\":false},[\"position:relative\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"color:#fff\",\"margin:0 0 5px\"]],[false,{\".kubernetes__section h2:after\":false},[\"display:none\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__section .wrap-image\":false},[\"margin-top:100px\",\"position:relative\"]],[false,{\".kubernetes__section .wrap-image:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".kubernetes__section .wrap-image:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"}\"],[false,{\".kubernetes__section .service-padding\":false},[\"padding:100px 0\",\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__section .service-padding\":false},[\"padding:0 0 100px\"]],[false,\"}\"],[false,{\".kubernetes__section .subitems .item\":false},[\"color:#fff\",\"font-family:\\\"Rajdhani\\\"\"]],[false,{\".kubernetes__section button\":false},[\"height:40px\",\"border:0\",\"background-color:#fff\",\"color:#182647\",\"text-transform:uppercase\",\"font-size:14px\",\"font-weight:600\",\"vertical-align:top\",\"padding:0 20px\"]],[false,{\".kubernetes__services\":false},[\"margin-bottom:100px\"]],[false,{\".kubernetes__service\":false},[\"margin-bottom:10px\"]],[true,{\".kubernetes__section--1\":true},[\"background-color:#03173c\",\"margin-top:100px\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/03\\/watermark-1.png\\\")\",\"background-position:top 30px right\"]],[false,{\".kubernetes__section--2\":false},[\"background-color:#142453\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/03\\/watermark-4.png\\\")\",\"background-position:top 30px left 30px\"]],[false,{\".kubernetes__section--3\":false},[\"background-color:#03173c\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/03\\/watermark-2.png\\\")\",\"background-position:top -100px right -50px\"]],[false,{\".kubernetes__section--4\":false},[\"background-color:#142453\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/03\\/watermark-3.png\\\")\",\"background-position:top 30px left 30px\"]],[false,{\".tek__section\":false},[\"width:100%\",\"position:relative\",\"padding:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek__section\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,{\".tek__section h1\":false},[\"position:relative\",\"font-weight:700\",\"line-height:50px\",\"font-size:50px\",\"color:#152649\",\"margin:0 0 20px\",\"padding-top:30px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek__section h1\":false},[\"line-height:30px\",\"font-size:30px\"]],[false,\"}\"],[false,{\".tek__section h1:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".tek__section h1:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek__section h1:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".tek__section h2\":false},[\"position:relative\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"margin:0 0 5px\"]],[false,{\".tek__section h2:after\":false},[\"display:none\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek__section .wrap-image\":false},[\"margin-top:100px\",\"position:relative\"]],[false,{\".tek__section .wrap-image:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"transition:all .3s ease-in-out\",\"top:-20px\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".tek__section .wrap-image:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"}\"],[false,{\".tek__section .service-padding\":false},[\"padding:100px 0\",\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek__section .service-padding\":false},[\"padding:0 0 100px\"]],[false,\"}\"],[false,{\".tek__section--1\":false},[\"margin-top:100px\"]],[false,{\".tek__section--2\":false},[\"background-color:#efefef\"]],[false,{\".tek__section--4\":false},[\"background-color:#efefef\"]],[false,{\".tek__section--6\":false},[\"background-color:#efefef\"]],[false,{\".devops-styles\":false},[\"font-size:21px\",\"line-height:30px\"]],[false,{\".devops-styles h2\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:40px\",\"font-weight:600\"]],[false,{\".devops-styles h2:after\":false},[\"display:none\"]],[false,{\".devops-styles .what__top\":false},[\"padding-top:0\"]],[false,{\".devops__top\":false},[\"width:100%\",\"position:relative\",\"background-color:#03173c\",\"margin-top:100px\"]],[false,{\".devops__top-title\":false},[\"position:absolute\",\"z-index:1\",\"top:0\",\"left:50%\",\"display:flex\",\"height:100%\",\"align-items:center\"]],[false,{\".devops__top-title--noshow\":false},[\"pointer-events:none\"]],[false,{\".devops__top-title--noshow:not(#_#_#_#_#_#_#_)\":false},[\"opacity:0\"]],[false,{\".devops__top-title h1:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__top-title h1\":false},[\"font-size:23px\",\"line-height:28px\"]],[false,\"}\"],[false,{\".devops__content\":false},[\"padding:70px 0 20px\",\"color:#787878\"]],[false,{\".devops__content h1\":false},[\"color:#182647\",\"font-size:40px\"]],[false,{\".devops__content .mr-data\":false},[\"margin:40px auto 0\"]],[false,{\".devops__content .mr-data amp-img\":false,\".devops__content .mr-data amp-anim\":false},[\"width:100%\",\"height:auto\",\"max-height:100%\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__content .mr-data amp-img\":false,\".devops__content .mr-data amp-anim\":false},[\"width:50%\",\"margin-bottom:20px\"]],[false,\"}\"],[false,{\".devops__content .mr-data strong\":false},[\"color:#09aeec\"]],[false,{\".devops__quote\":false},[\"background-color:#e6e6e6\",\"padding:70px 0\",\"text-align:center\",\"position:relative\",\"color:#03173c\"]],[false,{\".devops__quote-button\":false},[\"width:350px\",\"height:45px\",\"color:#fff\",\"border:0\",\"background-color:#09aeec\",\"text-transform:uppercase\",\"font-weight:600\",\"position:absolute\",\"bottom:-25px\",\"left:calc(50% - 175px)\",\"z-index:1\"]],[false,{\".devops__author amp-img\":false,\".devops__author amp-anim\":false},[\"height:25px\",\"margin-right:10px\"]],[false,{\".devops__solution\":false},[\"padding:0 0 70px\",\"color:#787878\"]],[false,{\".devops__solution .blue\":false},[\"color:#09aeec\"]],[false,{\".devops__solution small\":false},[\"display:block\",\"padding-left:20px\",\"border-left:9px solid #09aeec\",\"font-size:20px\"]],[false,{\".devops__roadmap\":false},[\"padding:80px 0 70px\"]],[false,{\".devops__services\":false},[\"padding:120px 0 150px\",\"background-color:#e6e6e6\",\"margin-top:-150px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__services\":false},[\"padding:50px 0\",\"background-color:#e6e6e6\",\"margin-top:0\"]],[false,\"}\"],[false,{\".devops__services .border-item\":false},[\"border-left:5px solid #09aeec\",\"padding-left:10px\",\"margin-top:20px\",\"line-height:21px\"]],[false,{\".devops__services .list-item\":false},[\"padding-left:20px\"]],[false,{\".devops__phrase\":false},[\"position:relative\",\"color:#03173c\"]],[false,{\".devops__phrase .container\":false},[\"position:relative\"]],[false,{\".devops__phrase .row\":false},[\"background-color:#fff\",\"border-radius:10px\",\"padding:30px\",\"top:-110px\",\"position:absolute\",\"z-index:1\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__phrase .row\":false},[\"position:relative\",\"top:0\",\"border-radius:0\"]],[false,\"}\"],[false,{\".devops__ready-to-compete\":false},[\"padding:150px 0 70px\",\"background-color:#03173c\",\"position:relative\",\"color:#fff\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__ready-to-compete\":false},[\"padding:50px 0\"]],[false,\"}\"],[false,{\".devops__ready-to-compete h3\":false},[\"text-transform:none\",\"color:#fff\",\"font-weight:400\",\"margin-bottom:30px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".devops__tags\":false},[\"background-color:#e6e6e6\",\"padding:70px 0\",\"text-align:center\",\"position:relative\"]],[false,{\".devops__tag\":false},[\"display:inline-block\",\"margin:0 0 10px 20px\",\"padding-left:20px\",\"border-left:1px solid #03173c\",\"font-weight:600\",\"color:#03173c\"]],[false,{\".devops__tag:first-child\":false,\".devops__tag:nth-child(3n + 4)\":false},[\"border-left:0\",\"margin-left:0\",\"padding-left:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__tag\":false},[\"width:100%\",\"display:block\"]],[false,{\".devops__tag:not(#_#_#_#_#_#_#_)\":false},[\"border:0\",\"margin:20px 0\"]],[false,\"}\"],[false,{\".devops__services2\":false},[\"padding:70px 0\",\"color:#787878\"]],[false,{\".devops__services2 .p-bg\":false},[\"background-color:#b7bbc4\",\"color:#fff\",\"padding:10px 0\",\"margin-bottom:40px\"]],[false,{\".devopos__service-item\":false},[\"border-bottom:1px solid #b7bbc4\",\"padding-bottom:10px\",\"margin-bottom:10px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devopos__service-item:first-child\":false},[\"margin-top:30px\"]],[false,\"}\"],[false,{\".devops-styles .phrase\":false},[\"padding:0\"]],[false,{\".devops-styles .phrase h2\":false},[\"color:#fff\",\"font-weight:500\",\"line-height:44px\"]],[false,{\".devops-styles .phrase__wrap-content\":false},[\"bottom:230px\"]],[false,{\".app__about\":false},[\"background-color:#fafafa\",\"padding:70px 0 100px\"]],[false,{\".app__about h1\":false},[\"color:#182647\",\"font-size:40px\"]],[false,{\".app__about .top-section strong\":false},[\"color:#8218e5\"]],[false,{\".app__about .gray-bg\":false},[\"background-color:#e6e6e6\",\"color:#787878\",\"text-align:center\",\"padding:10px\",\"margin-bottom:40px\"]],[false,{\".app__about .gray-bg strong\":false},[\"color:#787878\"]],[false,{\".app__about h3\":false},[\"color:#8218e5\",\"font-size:35px\",\"line-height:35px\",\"text-transform:inherit\"]],[false,{\".app__about .blue\":false,\".app__about .blue strong\":false},[\"color:#182647\"]],[false,{\".app__slider\":false},[\"background-color:#fff\",\"position:relative\"]],[false,{\".app__slider h2.link-to\":false},[\"padding-bottom:0\",\"font-size:30px\",\"clear:both\",\"margin-bottom:0\",\"margin-top:40px\"]],[false,{\".app__slider h2.link-to amp-img\":false,\".app__slider h2.link-to amp-anim\":false},[\"height:35px\",\"float:left\",\"margin-right:20px\"]],[false,{\".app__slider h2.pink\":false},[\"color:#8218e5\"]],[false,{\".app__slider h2.blue\":false},[\"color:#2678f2\"]],[false,{\".app__slider .side-img\":false},[\"height:700px\"]],[false,{\".app__slider .side-img:not(#_#_#_#_#_#_#_)\":false},[\"width:auto\"]],[false,{\".app__slider .icon-img\":false},[\"margin-bottom:30px\"]],[false,{\".app__slider .icon-img:not(#_#_#_#_#_#_#_)\":false},[\"width:auto\"]],[false,{\".app__slider .owl-nav\":false},[\"position:relative\",\"width:50%\",\"margin:-50px auto 20px\",\"text-align:right\",\"padding-left:15px\",\"padding-right:10px\",\"display:inline-flex\",\"align-items:center\",\"justify-content:flex-end\"]],[false,{\".app__slider .owl-prev\":false,\".app__slider .owl-next\":false},[\"width:30px\",\"height:30px\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"margin-bottom:10px\"]],[false,{\".app__slider .owl-prev:not(#_#_#_#_#_#_#_)\":false,\".app__slider .owl-next:not(#_#_#_#_#_#_#_)\":false},[\"color:#152649\",\"border:2px solid #152649\",\"font-size:15px\",\"line-height:15px\"]],[false,{\".app__slider .owl-prev\":false},[\"margin-right:10px\"]],[false,{\".app__slider .owl-dots\":false},[\"width:50%\",\"margin:-50px auto 20px\",\"text-align:left\",\"position:relative\",\"display:inline-block\",\"padding-left:10px\"]],[false,{\".app__slider .owl-dot\":false},[\"width:15px\",\"height:15px\",\"border-radius:50%\",\"margin-right:30px\"]],[false,{\".app__slider .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#e0e0e0\"]],[false,{\".app__slider .owl-dot:last-child\":false},[\"margin:0\"]],[false,{\".app__slider .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#182647\"]],[false,\"@media (max-width: 1020px){\"],[false,{\".app__slider .hide-mobile\":false},[\"display:none\"]],[false,\"}\"],[false,{\".app__image1\":false},[\"padding:70px 0 0\",\"background-color:#fff\"]],[false,{\".app__image1 h4\":false},[\"font-size:31px\",\"line-height:40px\",\"font-weight:600\",\"margin-bottom:25px\"]],[false,{\".app__tags\":false},[\"text-align:center\",\"margin-top:20px\",\"margin-bottom:50px\",\"color:#09aeec\",\"font-weight:700\"]],[false,{\".app__quote\":false},[\"background-color:#e6e6e6\",\"padding:100px 0 70px\",\"margin-top:-80px\",\"color:#182647\"]],[false,{\".app__quote .gray\":false},[\"margin-bottom:40px\",\"color:#818181\"]],[false,{\".app__image2\":false},[\"padding:70px 0 0\"]],[false,{\".app__image2 h4\":false},[\"font-size:28px\",\"line-height:37px\",\"font-weight:600\",\"margin-bottom:25px\",\"text-align:center\"]],[false,{\".app__solutions\":false},[\"background-color:#e6e6e6\",\"padding:200px 0 70px\",\"margin-top:-150px\",\"color:#182647\"]],[false,{\".app__solutions .quote-button\":false},[\"width:350px\",\"height:45px\",\"color:#fff\",\"border:0\",\"background-color:#09aeec\",\"text-transform:uppercase\",\"font-weight:600\",\"margin-bottom:40px\"]],[false,{\".app__solutions .upper-space\":false},[\"margin-top:80px\"]],[false,{\".app__solutions strong\":false},[\"color:#09aeec\"]],[false,{\".app__values\":false},[\"padding:70px 0 200px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".app__values\":false},[\"padding:50px 0\"]],[false,\"}\"],[false,{\".app__values strong\":false,\".app__values i\":false},[\"color:#09aeec\"]],[false,{\".app__values i\":false},[\"margin-right:10px\"]],[false,{\".app__values .blue\":false},[\"color:#182647\",\"font-weight:700\",\"margin-bottom:30px\"]],[false,{\".app__values-phrase\":false},[\"margin-top:50px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:30px\",\"font-weight:600\",\"color:#182647\"]],[false,{\".new-home__posts-upper-title\":false},[\"background-color:#fff\",\"padding:50px 0 200px\",\"color:#182647\",\"font-size:40px\",\"line-height:45px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".new-home__posts-upper-title\":false},[\"padding:50px 0\"]],[false,\"}\"],[false,{\".new-home__posts\":false},[\"width:100%\",\"background-color:#e6e6e6\",\"padding-bottom:80px\"]],[false,{\".new-home__process h2\":false},[\"position:relative\",\"overflow:hidden\"]],[false,{\".new-home__process h2:after\":false},[\"width:100%\",\"height:1px\",\"background-color:#182647\",\"top:18px\",\"left:280px\",\"position:absolute\",\"content:\\\"\\\"\"]],[false,{\".new-home__process h2:after:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".new-home__posts-wrap\":false},[\"display:grid\"]],[false,{\".new-home__posts-item\":false},[\"margin-top:-150px\",\"width:100%\",\"background-color:#fff\",\"color:#787878\",\"font-size:18px\",\"line-height:30px\",\"padding:25px\",\"border-top:10px solid #09aeec\",\"border-radius:0 0 10px 10px\",\"box-shadow:4px 7px 7px rgba(196,196,196,.6)\",\"display:flex\",\"flex-direction:column\",\"justify-content:space-between\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".new-home__posts-item\":false},[\"margin-top:0\",\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".new-home__posts-title\":false},[\"color:#09aeec\",\"font-size:25px\",\"line-height:30px\",\"font-weight:800\",\"margin-bottom:15px\"]],[false,{\".new-home__posts-button\":false},[\"width:130px\",\"height:40px\",\"border:0\",\"background-color:#09aeec\",\"color:#fff\",\"text-transform:uppercase\",\"font-size:14px\",\"margin-top:25px\",\"font-weight:700\"]],[false,{\".new-home__posts-wrap:nth-child(even) .new-home__posts-item\":false},[\"border-top:10px solid #182647\"]],[false,{\".new-home__posts-wrap:nth-child(even) .new-home__posts-title\":false},[\"color:#182647\"]],[false,{\".new-home__posts-wrap:nth-child(even) .new-home__posts-button\":false},[\"background-color:#182647\"]],[false,{\".new-home__process\":false},[\"padding:0 0 250px\",\"color:#787878\",\"font-size:18px\",\"line-height:30px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".new-home__process\":false},[\"padding:0 0 50px\"]],[false,\"}\"],[false,{\".new-home__process h3\":false},[\"color:#182647\",\"font-size:25px\",\"line-height:30px\",\"font-weight:800\",\"margin-bottom:15px\",\"text-transform:none\"]],[false,{\".new-home__process a\":false},[\"color:#09aeec\",\"text-decoration:underline\"]],[false,{\".new-home__services\":false},[\"background-color:#fff\",\"padding:0 0 200px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".new-home__services\":false},[\"padding:50px 20px\"]],[false,\"}\"],[false,{\".new-home__service-item\":false},[\"background-color:#fff\",\"border-bottom:10px solid #09aeec\",\"border-radius:10px 10px 0 0\",\"box-shadow:7px 3px 18px rgba(196,196,196,.6)\",\"margin-bottom:40px\",\"padding:10px 10px 0\"]],[false,{\".new-home__service-item:nth-child(odd) .new-home__service-item-text\":false},[\"padding:50px 0 50px 80px\"]],[false,{\".new-home__service-item:nth-child(even) .new-home__service-item-text\":false},[\"padding:50px 80px 50px 0\"]],[false,{\".new-home__service-item .different-icon\":false},[\"float:left\",\"margin-right:13px\",\"margin-top:10px\"]],[false,{\".new-home__service-item strong\":false},[\"color:#09aeec\"]],[false,{\".new-home__service-item button\":false},[\"margin-bottom:20px\"]],[false,{\".new-home__service-item--1\":false},[\"margin-top:-150px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".new-home__service-item-text:not(#_#_#_#_#_#_#_)\":false},[\"padding:30px\"]],[false,{\".new-home__service-item-text amp-img\":false,\".new-home__service-item-text amp-anim\":false},[\"display:none\"]],[false,{\".new-home__service-item--1\":false},[\"margin-top:0\"]],[false,\"}\"],[false,{\".partners--new\":false},[\"padding:50px 0 40px\"]],[false,{\".partners--new .owl-dots .owl-dot\":false},[\"width:10px\",\"height:10px\",\"border-radius:50%\"]],[false,{\".partners--new .owl-dots .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#e5e5e5\"]],[false,{\".partners--new .owl-dots .owl-dot.active\":false},[\"width:10px\",\"height:10px\"]],[false,{\".partners--new .owl-dots .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#00abeb\"]],[false,{\".new-home__process--img\":false},[\"width:56px\",\"height:62px\"]],[false,{\".new-home__services--img\":false},[\"width:50px\",\"height:55px\"]],[true,{\".new-header__logo amp-img\":true,\".new-header__logo amp-anim\":false},[\"width:100%\",\"height:100%\"]],[false,{\".revslider-subtitle-home:not(#_#_#_#_#_#_#_)\":false},[\"background-color:red\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":57925,\"final_size\":6783,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"rs-plugin-settings-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/rs6.css?ver=6.5.23\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":134,\"function\":\"RevSliderFront::add_inline_css\",\"hook\":\"wp_footer\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"rs-plugin-settings\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}],\"priority\":30,\"hash\":\"4a682d94bb410f9ebfc91fae35d45117\",\"parse_time\":0.7066469192504883,\"shake_time\":0.02327585220336914,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.eot?5510888#iefix\"],\"shaken_tokens\":[[false,{\".rs-p-wp-fix:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"margin:0\",\"height:0px\"]],[false,{\".wp-block-themepunch-revslider\":false},[\"position:relative\"]],[false,{\"rs-modal:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"z-index:9999999\",\"pointer-events:none\"]],[false,{\"rs-modal.rs-modal-auto\":false},[\"top:auto\",\"bottom:auto\",\"left:auto\",\"right:auto\"]],[false,{\"rs-modal.rs-modal-fullwidth\":false,\"rs-modal.rs-modal-fullscreen\":false},[\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\"]],[false,{\"rs-modal rs-fullwidth-wrap\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"height:100%\"]],[false,{\"rs-module-wrap.rs-modal\":false},[\"display:none\"]],[false,{\"rs-module-wrap.rs-modal:not(#_#_#_#_#_#_#_#_)\":false},[\"max-height:100%\",\"overflow:auto\",\"pointer-events:auto\"]],[false,{\"rs-module-wrap.hideallscrollbars.rs-modal:not(#_#_#_#_#_#_#_#_)\":false},[\"overflow:hidden\",\"max-width:100%\"]],[false,{\"rs-modal-cover\":false},[\"width:100%\",\"height:100%\",\"z-index:0\",\"background:transparent\",\"position:absolute\",\"top:0px\",\"left:0px\",\"cursor:pointer\",\"pointer-events:auto\"]],[false,{\"body>rs-modal-cover\":false},[\"position:fixed\"]],[false,{\"body>rs-modal-cover:not(#_#_#_#_#_#_#_#_)\":false},[\"z-index:9999995\"]],[false,{\"rs-sbg-px\":false},[\"pointer-events:none\"]],[false,{\".rs-forceuntouchable:not(#_#_#_#_#_#_#_)\":false,\".rs-forceuntouchable *:not(#_#_#_#_#_#_#_)\":false},[\"pointer-events:none\"]],[false,{\".rs-forcehidden *:not(#_#_#_#_#_#_#_)\":false},[\"visibility:hidden\"]],[false,{\".rs_splitted_lines\":false},[\"display:block\"]],[false,{\".rs_splitted_lines:not(#_#_#_#_#_#_#_)\":false},[\"white-space:nowrap\"]],[false,{\".rs-go-fullscreen\":false},[\"background:#fff\"]],[false,{\".rs-go-fullscreen:not(#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\",\"z-index:9999999\"]],[false,{\".rtl\":false},[\"direction:rtl\"]],[true,\"@font-face{font-family:\\\"revicons\\\";src:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.eot?5510888\\\");src:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.eot?5510888#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.woff?5510888\\\") format(\\\"woff\\\"),url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.ttf?5510888\\\") format(\\\"truetype\\\"),url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.svg?5510888#revicons\\\") format(\\\"svg\\\");font-weight:normal;font-style:normal;font-display:swap}\"],[true,{\"[class^=\\\"revicon-\\\"]:before\":true,\"[class*=\\\" revicon-\\\"]:before\":true},[\"font-family:\\\"revicons\\\"\",\"font-style:normal\",\"font-weight:normal\",\"speak:never\",\"speak-as:spell-out\",\"display:inline-block\",\"text-decoration:inherit\",\"width:1em\",\"margin-right:.2em\",\"text-align:center\",\"font-variant:normal\",\"text-transform:none\",\"line-height:1em\",\"margin-left:.2em\"]],[false,{\"rs-module i[class^=\\\"fa-\\\"]\":false,\"rs-module i[class*=\\\" fa-\\\"]\":false,\".rb-modal-wrapper i[class^=\\\"fa-\\\"]\":false,\".rb-modal-wrapper i[class*=\\\" fa-\\\"]\":false,\"#waitaminute i[class^=\\\"fa-\\\"]\":false,\"#waitaminute i[class*=\\\" fa-\\\"]\":false,\"#objectlibrary i[class^=\\\"fa-\\\"]\":false,\"#objectlibrary i[class*=\\\" fa-\\\"]\":false,\"#rs_overview i[class^=\\\"fa-\\\"]\":false,\"#rs_overview i[class*=\\\" fa-\\\"]\":false,\"#rs_overview_menu i[class^=\\\"fa-\\\"]\":false,\"#rs_overview_menu i[class*=\\\" fa-\\\"]\":false,\"#builderView i[class^=\\\"fa-\\\"]\":false,\"#builderView i[class*=\\\" fa-\\\"]\":false},[\"display:inline-block\",\"font:normal normal normal 14px\\/1 FontAwesome\",\"font-size:inherit\",\"text-rendering:auto\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\"]],[false,{\"rs-module [class^=\\\"fa-\\\"]:before\":false,\"rs-module [class*=\\\" fa-\\\"]:before\":false,\".rb-modal-wrapper [class^=\\\"fa-\\\"]:before\":false,\".rb-modal-wrapper [class*=\\\" fa-\\\"]:before\":false,\"#rs_overview [class^=\\\"fa-\\\"]:before\":false,\"#rs_overview [class*=\\\" fa-\\\"]:before\":false,\"#objectlibrary [class^=\\\"fa-\\\"]:before\":false,\"#objectlibrary [class*=\\\" fa-\\\"]:before\":false,\"#waitaminute [class^=\\\"fa-\\\"]:before\":false,\"#waitaminute [class*=\\\" fa-\\\"]:before\":false,\"#rs_overview_menu [class^=\\\"fa-\\\"]:before\":false,\"#rs_overview_menu [class*=\\\" fa-\\\"]:before\":false,\"#builderView [class^=\\\"fa-\\\"]:before\":false,\"#builderView [class*=\\\" fa-\\\"]:before\":false},[\"font-family:FontAwesome\",\"font-style:normal\",\"font-weight:400\",\"speak:never\",\"speak-as:spell-out\",\"display:inline-block\",\"text-decoration:inherit\",\"width:auto\",\"margin-right:0\",\"text-align:center\",\"font-variant:normal\",\"text-transform:none\",\"line-height:inherit\",\"margin-left:0\"]],[false,{\"rs-module .sr-only\":false,\"#objectlibrary .sr-only\":false,\"#waitaminute .sr-only\":false,\"#rs_overview .sr-only\":false,\"#rs_overview_menu .sr-only\":false,\".rb-modal-wrapper .sr-only\":false,\"#builderView .sr-only\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,{\"rs-module .sr-only-focusable:active\":false,\"rs-module .sr-only-focusable:focus\":false,\"#waitaminute .sr-only-focusable:active\":false,\"#waitaminute .sr-only-focusable:focus\":false,\"#objectlibrary .sr-only-focusable:active\":false,\"#objectlibrary .sr-only-focusable:focus\":false,\"#rs_overview .sr-only-focusable:active\":false,\"#rs_overview .sr-only-focusable:focus\":false,\"#rs_overview_menu .sr-only-focusable:active\":false,\"#rs_overview_menu .sr-only-focusable:focus\":false,\".rb-modal-wrapper .sr-only-focusable:active\":false,\".rb-modal-wrapper .sr-only-focusable:focus\":false,\"#builderView .sr-only-focusable:active\":false,\"#builderView .sr-only-focusable:focus\":false},[\"position:static\",\"width:auto\",\"height:auto\",\"margin:0\",\"overflow:visible\",\"clip:auto\"]],[false,{\".revicon-search-1:before\":false},[\"content:\\\"\\ue802\\\"\"]],[false,{\".revicon-pencil-1:before\":false},[\"content:\\\"\\ue831\\\"\"]],[false,{\".revicon-picture-1:before\":false},[\"content:\\\"\\ue803\\\"\"]],[false,{\".revicon-cancel:before\":false},[\"content:\\\"\\ue80a\\\"\"]],[false,{\".revicon-info-circled:before\":false},[\"content:\\\"\\ue80f\\\"\"]],[false,{\".revicon-trash:before\":false},[\"content:\\\"\\ue801\\\"\"]],[false,{\".revicon-left-dir:before\":false},[\"content:\\\"\\ue817\\\"\"]],[false,{\".revicon-right-dir:before\":false},[\"content:\\\"\\ue818\\\"\"]],[false,{\".revicon-down-open:before\":false},[\"content:\\\"\\ue83b\\\"\"]],[false,{\".revicon-left-open:before\":false},[\"content:\\\"\\ue819\\\"\"]],[false,{\".revicon-right-open:before\":false},[\"content:\\\"\\ue81a\\\"\"]],[false,{\".revicon-angle-left:before\":false},[\"content:\\\"\\ue820\\\"\"]],[false,{\".revicon-angle-right:before\":false},[\"content:\\\"\\ue81d\\\"\"]],[false,{\".revicon-left-big:before\":false},[\"content:\\\"\\ue81f\\\"\"]],[false,{\".revicon-right-big:before\":false},[\"content:\\\"\\ue81e\\\"\"]],[false,{\".revicon-magic:before\":false},[\"content:\\\"\\ue807\\\"\"]],[false,{\".revicon-picture:before\":false},[\"content:\\\"\\ue800\\\"\"]],[false,{\".revicon-export:before\":false},[\"content:\\\"\\ue80b\\\"\"]],[false,{\".revicon-cog:before\":false},[\"content:\\\"\\ue832\\\"\"]],[false,{\".revicon-login:before\":false},[\"content:\\\"\\ue833\\\"\"]],[false,{\".revicon-logout:before\":false},[\"content:\\\"\\ue834\\\"\"]],[false,{\".revicon-video:before\":false},[\"content:\\\"\\ue805\\\"\"]],[false,{\".revicon-arrow-combo:before\":false},[\"content:\\\"\\ue827\\\"\"]],[false,{\".revicon-left-open-1:before\":false},[\"content:\\\"\\ue82a\\\"\"]],[false,{\".revicon-right-open-1:before\":false},[\"content:\\\"\\ue82b\\\"\"]],[false,{\".revicon-left-open-mini:before\":false},[\"content:\\\"\\ue822\\\"\"]],[false,{\".revicon-right-open-mini:before\":false},[\"content:\\\"\\ue823\\\"\"]],[false,{\".revicon-left-open-big:before\":false},[\"content:\\\"\\ue824\\\"\"]],[false,{\".revicon-right-open-big:before\":false},[\"content:\\\"\\ue825\\\"\"]],[false,{\".revicon-left:before\":false},[\"content:\\\"\\ue836\\\"\"]],[false,{\".revicon-right:before\":false},[\"content:\\\"\\ue826\\\"\"]],[false,{\".revicon-ccw:before\":false},[\"content:\\\"\\ue808\\\"\"]],[false,{\".revicon-arrows-ccw:before\":false},[\"content:\\\"\\ue806\\\"\"]],[false,{\".revicon-palette:before\":false},[\"content:\\\"\\ue829\\\"\"]],[false,{\".revicon-list-add:before\":false},[\"content:\\\"\\ue80c\\\"\"]],[false,{\".revicon-doc:before\":false},[\"content:\\\"\\ue809\\\"\"]],[false,{\".revicon-left-open-outline:before\":false},[\"content:\\\"\\ue82e\\\"\"]],[false,{\".revicon-left-open-2:before\":false},[\"content:\\\"\\ue82c\\\"\"]],[false,{\".revicon-right-open-outline:before\":false},[\"content:\\\"\\ue82f\\\"\"]],[false,{\".revicon-right-open-2:before\":false},[\"content:\\\"\\ue82d\\\"\"]],[false,{\".revicon-equalizer:before\":false},[\"content:\\\"\\ue83a\\\"\"]],[false,{\".revicon-layers-alt:before\":false},[\"content:\\\"\\ue804\\\"\"]],[false,{\".revicon-popup:before\":false},[\"content:\\\"\\ue828\\\"\"]],[false,{\".tp-fullwidth-forcer\":false},[\"z-index:0\",\"pointer-events:none\"]],[false,{\"rs-module-wrap\":false},[\"visibility:hidden\"]],[false,{\"rs-module-wrap\":false,\"rs-module-wrap *\":false},[\"box-sizing:border-box\",\"-webkit-tap-highlight-color:rgba(0,0,0,0)\"]],[false,{\"rs-module-wrap\":false},[\"position:relative\",\"z-index:1\",\"width:100%\",\"display:block\"]],[false,{\".rs-fixedscrollon rs-module-wrap\":false},[\"z-index:1000\"]],[false,{\".rs-fixedscrollon rs-module-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0px\",\"left:0\"]],[false,{\".rs-stickyscrollon rs-module-wrap\":false},[\"top:0px\",\"z-index:1000\"]],[false,{\".rs-stickyscrollon rs-module-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"position:sticky\"]],[false,{\".rs-stickyscrollon:not(#_#_#_#_#_#_#_)\":false},[\"overflow:visible\"]],[false,{\"rs-fw-forcer\":false},[\"display:block\",\"width:100%\",\"pointer-events:none\"]],[false,{\"rs-module\":false},[\"position:relative\",\"overflow:hidden\",\"display:block\"]],[false,{\"rs-module.disableVerticalScroll\":false},[\"-ms-touch-action:pan-x\",\"touch-action:pan-x\"]],[false,{\"rs-pzimg-wrap\":false,\"rs-sbg-effectwrap\":false,\"rs-sbg\":false},[\"display:block\",\"pointer-events:none\"]],[false,{\"rs-sbg-effectwrap\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\"]],[false,{\"rs-carousel-wrap rs-column rs-layer amp-img\":false,\"rs-carousel-wrap rs-column rs-layer amp-anim\":false},[\"width:0px\",\"height:0px\"]],[false,{\"rs-sbg-px\":false,\"rs-sbg-wrap\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"z-index:0\",\"width:100%\",\"height:100%\",\"display:block\"]],[false,{\"a.rs-layer\":false,\"a.rs-layer:-webkit-any-link\":false},[\"text-decoration:none\"]],[false,{\"a[x-apple-data-detectors]:not(#_#_#_#_#_#_#_#_)\":false},[\"color:inherit\",\"text-decoration:none\",\"font-size:inherit\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:inherit\"]],[false,{\".entry-content rs-module a\":false,\"rs-module a\":false},[\"box-shadow:none\"]],[false,{\".rs-ov-hidden:not(#_#_#_#_#_#_#_)\":false},[\"overflow:hidden\"]],[false,{\".rs-forceoverflow:not(#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-module-wrap:not(#_#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-module:not(#_#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-slides:not(#_#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-slide:not(#_#_#_#_#_#_#_#_)\":false},[\"overflow:visible\"]],[false,{\".tp-simpleresponsive amp-img\":false,\".tp-simpleresponsive amp-anim\":false,\"rs-module amp-img\":false,\"rs-module amp-anim\":false},[\"transition:none\",\"margin:0px\",\"padding:0px\",\"border:none\"]],[false,{\".tp-simpleresponsive amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".tp-simpleresponsive amp-anim:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-img:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\"rs-module .no-slides-text\":false},[\"font-weight:bold\",\"text-align:center\",\"padding-top:80px\"]],[false,{\"rs-slides\":false,\"rs-slide\":false,\"rs-slide:before\":false},[\"position:absolute\",\"text-indent:0em\",\"top:0px\",\"left:0px\"]],[false,{\"rs-slide\":false,\"rs-slide:before\":false},[\"display:block\",\"visibility:hidden\"]],[false,{\".rs-layer .rs-untoggled-content\":false},[\"display:block\"]],[false,{\".rs-layer .rs-toggled-content\":false},[\"display:none\"]],[false,{\".rs-tc-active.rs-layer > .rs-toggled-content\":false},[\"display:block\"]],[false,{\".rs-tc-active.rs-layer > .rs-untoggled-content\":false},[\"display:none\"]],[false,{\".rs-layer-video\":false},[\"overflow:hidden\"]],[false,{\".rs_html5vidbasicstyles\":false},[\"position:relative\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"overflow:hidden\"]],[false,{\"rs-module rs-layer\":false,\"rs-module .rs-layer\":false},[\"opacity:0\",\"position:relative\",\"visibility:hidden\",\"display:block\",\"-webkit-tap-highlight-color:rgba(0,0,0,0)\",\"-moz-osx-font-smoothing:grayscale\",\"z-index:1\",\"font-display:swap\"]],[false,{\"rs-module rs-layer:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module .rs-layer:not(#_#_#_#_#_#_#_#_)\":false},[\"-webkit-font-smoothing:antialiased\"]],[false,{\"rs-layer-wrap\":false,\"rs-mask\":false,\"rs-module-wrap\":false,\"rs-module .rs-layer\":false,\"rs-module amp-img\":false,\"rs-module amp-anim\":false},[\"user-select:none\"]],[false,{\"rs-module rs-mask-wrap .rs-layer\":false,\"rs-module rs-mask-wrap *:last-child\":false,\".wpb_text_column rs-module rs-mask-wrap .rs-layer\":false,\".wpb_text_column rs-module rs-mask-wrap *:last-child\":false},[\"margin-bottom:0\"]],[false,{\".rs-svg svg\":false},[\"width:100%\",\"height:100%\",\"position:relative\",\"vertical-align:top\"]],[false,{\"rs-layer:not(.rs-wtbindex):not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer:not(.rs-wtbindex):not(#_#_#_#_#_#_#_)\":false,\"rs-alyer *:not(.rs-wtbindex):not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer *:not(.rs-wtbindex):not(#_#_#_#_#_#_#_)\":false},[\"outline:none\"]],[false,{\"rs-carousel-wrap\":false},[\"cursor:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/openhand.cur\\\"),move\"]],[false,{\"rs-carousel-wrap.dragged\":false},[\"cursor:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/closedhand.cur\\\"),move\"]],[false,{\"rs-carousel-wrap.noswipe\":false},[\"cursor:default\"]],[false,{\"rs-carousel-wrap\":false},[\"position:absolute\",\"overflow:hidden\",\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\"]],[false,{\"rs-carousel-space\":false},[\"clear:both\",\"display:block\",\"width:100%\",\"height:0px\",\"position:relative\"]],[false,{\".tp_inner_padding\":false},[\"box-sizing:border-box\"]],[false,{\".tp_inner_padding:not(#_#_#_#_#_#_#_)\":false},[\"max-height:none\"]],[false,{\".rs-layer.rs-selectable\":false},[\"user-select:text\"]],[false,{\"rs-px-mask\":false},[\"overflow:hidden\",\"display:block\",\"width:100%\",\"height:100%\",\"position:relative\"]],[false,{\"rs-module embed\":false,\"rs-module amp-iframe\":false,\"rs-module amp-google-document-embed\":false,\"rs-module amp-audio\":false,\"rs-module amp-video\":false,\"rs-module amp-youtube\":false},[\"border:none\"]],[false,{\"rs-module embed:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-iframe:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-google-document-embed:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-audio:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-video:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-youtube:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\"rs-bg-elem\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"z-index:0\",\"display:block\",\"pointer-events:none\"]],[false,{\".tp-blockmask\":false,\".tp-blockmask_in\":false,\".tp-blockmask_out\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"background:#fff\",\"z-index:1000\",\"transform:scaleX(0) scaleY(0)\"]],[false,{\"rs-zone\":false},[\"position:absolute\",\"width:100%\",\"left:0px\",\"box-sizing:border-box\",\"min-height:50px\",\"font-size:0px\",\"pointer-events:none\"]],[false,{\"rs-row-wrap\":false,\"rs-column\":false,\"rs-cbg-mask-wrap\":false},[\"display:block\",\"visibility:hidden\"]],[false,{\"rs-layer-wrap\":false,\"rs-parallax-wrap\":false,\"rs-loop-wrap\":false,\"rs-mask-wrap\":false},[\"display:block\"]],[false,{\"rs-column-wrap>rs-loop-wrap\":false},[\"z-index:1\"]],[false,{\"rs-layer-wrap\":false,\"rs-mask-wrap\":false,\"rs-cbg-mask-wrap\":false},[\"transform-style:flat\"]],[false,\"@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0){\"],[false,{\"rs-carousel-wrap rs-layer-wrap\":false,\"rs-carousel-wrap rs-loop-wrap\":false},[\"backface-visibility:hidden\",\"transform-style:preserve-3d\"]],[false,\"}\"],[false,{\".safarifix rs-layer-wrap\":false},[\"perspective:1000000\"]],[false,\"@-moz-document url-prefix(){\"],[false,{\"rs-layer-wrap\":false,\"rs-mask-wrap\":false,\"rs-cbg-mask-wrap\":false},[\"perspective:none\"]],[false,\"}\"],[false,{\"rs-mask-wrap\":false},[\"overflow:hidden\"]],[false,{\"rs-fullwidth-wrap\":false},[\"position:relative\",\"width:100%\",\"height:auto\",\"display:block\",\"overflow:visible\"]],[false,{\"rs-fullwidth-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\".rev_row_zone_top\":false},[\"top:0px\"]],[false,{\".rev_row_zone_bottom\":false},[\"bottom:0px\"]],[false,{\".rev_row_zone_middle\":false},[\"top:0px\"]],[false,{\"rs-column-wrap .rs-parallax-wrap\":false},[\"vertical-align:top\"]],[false,{\".rs-layer amp-img\":false,\".rs-layer amp-anim\":false,\"rs-layer amp-img\":false,\"rs-layer amp-anim\":false},[\"vertical-align:top\"]],[false,{\"rs-row\":false,\"rs-row.rs-layer\":false},[\"display:table\",\"position:relative\",\"table-layout:fixed\",\"box-sizing:border-box\",\"vertical-align:top\",\"height:auto\",\"font-size:0px\"]],[false,{\"rs-row:not(#_#_#_#_#_#_#_#_)\":false,\"rs-row.rs-layer:not(#_#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".rs-layer.rs-waction.iospermaccwait.permanenthidden:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"visibility:hidden\",\"pointer-events:none\"]],[false,{\"rs-column-wrap\":false},[\"display:table-cell\",\"position:relative\",\"vertical-align:top\",\"height:auto\",\"box-sizing:border-box\",\"font-size:0px\"]],[false,{\"rs-column\":false},[\"box-sizing:border-box\",\"display:block\",\"position:relative\"]],[false,{\"rs-column:not(#_#_#_#_#_#_#_#_)\":false},[\"width:100%\",\"height:auto\",\"white-space:normal\"]],[false,{\"rs-cbg-mask-wrap\":false},[\"position:absolute\",\"z-index:0\",\"box-sizing:border-box\"]],[false,{\"rs-column-wrap rs-cbg-mask-wrap\":false},[\"top:0px\",\"left:0px\",\"bottom:0px\",\"right:0px\"]],[false,{\"rs-column-bg\":false},[\"position:absolute\",\"z-index:0\",\"box-sizing:border-box\",\"width:100%\",\"height:100%\"]],[false,{\".rs-pelock *:not(#_#_#_#_#_#_#_)\":false},[\"pointer-events:none\"]],[false,{\"rs-column .rs-parallax-wrap\":false,\"rs-column rs-loop-wrap\":false,\"rs-column rs-mask-wrap\":false},[\"text-align:inherit\"]],[false,{\"rs-column rs-mask-wrap\":false},[\"display:inline-block\"]],[false,{\"rs-column .rs-parallax-wrap rs-loop-wrap\":false,\"rs-column .rs-parallax-wrap rs-mask-wrap\":false,\"rs-column .rs-parallax-wrap\":false},[\"line-height:0px\"]],[false,{\"rs-column .rs-parallax-wrap rs-loop-wrap:not(#_#_#_#_#_#_#_#_)\":false,\"rs-column .rs-parallax-wrap rs-mask-wrap:not(#_#_#_#_#_#_#_#_)\":false,\"rs-column .rs-parallax-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"position:relative\",\"left:auto\",\"top:auto\"]],[false,{\"rs-column .rs-parallax-wrap rs-loop-wrap\":false,\"rs-column .rs-parallax-wrap rs-mask-wrap\":false,\"rs-column .rs-parallax-wrap\":false,\"rs-column .rev_layer_in_column\":false},[\"vertical-align:top\"]],[false,{\".rev_break_columns:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".rev_break_columns rs-column-wrap.rs-parallax-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\",\"width:100%\"]],[false,{\".rev_break_columns rs-column-wrap.rs-parallax-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_#_)\":false,\".tp-forcenotvisible:not(#_#_#_#_#_#_#_)\":false,\".tp-hide-revslider:not(#_#_#_#_#_#_#_)\":false,\"rs-row-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_#_)\":false,\"rs-column-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer.rs-layer-hidden:not(#_#_#_#_#_#_#_)\":false,\".rs-layer-audio.rs-layer-hidden:not(#_#_#_#_#_#_#_)\":false,\".rs-parallax-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_)\":false},[\"visibility:hidden\",\"display:none\"]],[false,{\"a.rs-layer.rs-nointeraction >.div:not(#_#_#_#_#_#_#_#_)\":false,\"rs-layer.rs-nointeraction:not(a):not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer.rs-nointeraction:not(a):not(#_#_#_#_#_#_#_)\":false},[\"pointer-events:none\"]],[false,{\"rs-static-layers\":false},[\"position:absolute\",\"z-index:101\",\"top:0px\",\"left:0px\",\"display:block\",\"width:100%\",\"height:100%\",\"pointer-events:none\",\"overflow:hidden\"]],[false,{\"rs-static-layers.rs-stl-back\":false},[\"z-index:0\"]],[false,{\".rs-stl-visible:not(#_#_#_#_#_#_#_)\":false},[\"overflow:visible\"]],[false,{\".rs-layer rs-fcr\":false},[\"width:0\",\"height:0\",\"border-left:40px solid transparent\",\"border-right:0px solid transparent\",\"border-top:40px solid #00a8ff\",\"position:absolute\",\"right:100%\",\"top:0px\"]],[false,{\".rs-layer rs-fcrt\":false},[\"width:0\",\"height:0\",\"border-left:40px solid transparent\",\"border-right:0px solid transparent\",\"border-bottom:40px solid #00a8ff\",\"position:absolute\",\"right:100%\",\"top:0px\"]],[false,{\".rs-layer rs-bcr\":false},[\"width:0\",\"height:0\",\"border-left:0px solid transparent\",\"border-right:40px solid transparent\",\"border-bottom:40px solid #00a8ff\",\"position:absolute\",\"left:100%\",\"top:0px\"]],[false,{\".rs-layer rs-bcrt\":false},[\"width:0\",\"height:0\",\"border-left:0px solid transparent\",\"border-right:40px solid transparent\",\"border-top:40px solid #00a8ff\",\"position:absolute\",\"left:100%\",\"top:0px\"]],[false,{\".tp-layer-inner-rotation:not(#_#_#_#_#_#_#_)\":false},[\"position:relative\"]],[false,{\"amp-img.tp-slider-alternative-image\":false,\"amp-anim.tp-slider-alternative-image\":false},[\"width:100%\",\"height:auto\"]],[false,{\".noFilterClass:not(#_#_#_#_#_#_#_)\":false},[\"filter:none\"]],[false,{\"rs-bgvideo\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"z-index:0\",\"display:block\"]],[false,{\".rs-layer.rs-fsv\":false},[\"top:0px\",\"left:0px\",\"position:absolute\",\"width:100%\",\"height:100%\"]],[false,{\".rs-layer.rs-fsv amp-audio\":false,\".rs-layer.rs-fsv amp-video\":false,\".rs-layer.rs-fsv amp-youtube\":false,\".rs-layer.rs-fsv amp-iframe\":false,\".rs-layer.rs-fsv amp-iframe amp-audio\":false,\".rs-layer.rs-fsv amp-iframe amp-video\":false,\".rs-layer.rs-fsv amp-iframe amp-youtube\":false},[\"width:100%\",\"height:100%\"]],[false,{\".rs-fsv amp-video\":false,\".rs-fsv amp-youtube\":false},[\"background:#000\"]],[false,{\".fullcoveredvideo rs-poster\":false},[\"background-position:center center\",\"background-size:cover\",\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\"]],[false,{\".videoisplaying .html5vid rs-poster\":false},[\"display:none\"]],[false,{\".tp-video-play-button\":false},[\"background:#000\",\"background:rgba(0,0,0,.3)\",\"border-radius:5px\",\"position:absolute\",\"top:50%\",\"left:50%\",\"color:#fff\",\"z-index:3\",\"z-index:4\",\"margin-top:-25px\",\"margin-left:-25px\",\"text-align:center\",\"cursor:pointer\",\"width:50px\",\"height:50px\",\"box-sizing:border-box\",\"display:inline-block\",\"vertical-align:top\",\"opacity:0\"]],[false,{\".tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"line-height:50px\",\"transition:opacity 300ms ease-out\"]],[false,{\".rs-ISM .tp-video-play-button\":false},[\"opacity:1\",\"z-index:6\"]],[false,{\".rs-ISM .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"transition:none\"]],[false,{\".rs-audio .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".rs-layer .html5vid:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\",\"height:100%\"]],[false,{\".tp-video-play-button i\":false},[\"width:50px\",\"height:50px\",\"display:inline-block\",\"vertical-align:top\"]],[false,{\".tp-video-play-button i:not(#_#_#_#_#_#_#_#_)\":false},[\"text-align:center\",\"line-height:50px\",\"font-size:30px\"]],[false,{\".rs-layer:hover .tp-video-play-button\":false},[\"opacity:1\",\"display:block\",\"z-index:6\"]],[false,{\".rs-layer .tp-revstop\":false},[\"display:none\",\"width:15px\",\"transform:translateX(50%) translateY(50%)\",\"height:20px\"]],[false,{\".rs-layer .tp-revstop:not(#_#_#_#_#_#_#_)\":false},[\"border-right:5px solid #fff\",\"border-left:5px solid #fff\",\"margin-left:11px\",\"margin-top:5px\"]],[false,{\".videoisplaying .revicon-right-dir\":false},[\"display:none\"]],[false,{\".videoisplaying .tp-revstop\":false},[\"display:block\"]],[false,{\".videoisplaying .tp-video-play-button\":false},[\"display:none\"]],[false,{\".fullcoveredvideo .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".rs-fsv .rs-fsv amp-audio:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:contain\"]],[false,{\".rs-fsv .rs-fsv amp-video:not(#_#_#_#_#_#_#_#_)\":false,\".rs-fsv .rs-fsv amp-youtube:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:contain\"]],[false,{\".rs-layer-video .html5vid.hidefullscreen amp-video::-webkit-media-controls-fullscreen-button\":false,\".rs-layer-video .html5vid.hidefullscreen amp-youtube::-webkit-media-controls-fullscreen-button\":false},[\"display:none\"]],[false,\"@supports not (-ms-high-contrast:none){\"],[false,{\".rs-fsv .fullcoveredvideo amp-audio:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:cover\"]],[false,{\".rs-fsv .fullcoveredvideo amp-video:not(#_#_#_#_#_#_#_#_)\":false,\".rs-fsv .fullcoveredvideo amp-youtube:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:cover\"]],[false,\"}\"],[false,{\".rs-fullvideo-cover\":false},[\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\",\"position:absolute\",\"background:transparent\",\"z-index:5\"]],[false,{\".rs-nolc .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-video::-webkit-media-controls-start-playback-button:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-youtube::-webkit-media-controls-start-playback-button:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-video::-webkit-media-controls:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-youtube::-webkit-media-controls:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-audio::-webkit-media-controls:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".rs-audio .tp-video-controls:not(#_#_#_#_#_#_#_)\":false},[\"opacity:1\",\"visibility:visible\"]],[false,{\"rs-module h1.rs-layer\":false,\"rs-module h2.rs-layer\":false,\"rs-module h3.rs-layer\":false,\"rs-module h4.rs-layer\":false,\"rs-module h5.rs-layer\":false,\"rs-module h6.rs-layer\":false,\"rs-module div.rs-layer\":false,\"rs-module span.rs-layer\":false,\"rs-module p.rs-layer\":false},[\"margin:0\",\"padding:0\",\"margin-block-start:0\",\"margin-block-end:0\",\"margin-inline-start:0\",\"margin-inline-end:0\"]],[false,{\"rs-module h1.rs-layer:before\":false,\"rs-module h2.rs-layer:before\":false,\"rs-module h3.rs-layer:before\":false,\"rs-module h4.rs-layer:before\":false,\"rs-module h5.rs-layer:before\":false,\"rs-module h6.rs-layer:before\":false},[\"content:none\"]],[false,{\"rs-dotted\":false},[\"background-repeat:repeat\",\"width:100%\",\"height:100%\",\"position:absolute\",\"top:0px\",\"left:0px\",\"z-index:3\",\"display:block\",\"pointer-events:none\"]],[false,{\"rs-sbg-wrap rs-dotted\":false},[\"z-index:31\"]],[false,{\"rs-dotted.twoxtwo\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile.png\\\")\"]],[false,{\"rs-dotted.twoxtwowhite\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile_white.png\\\")\"]],[false,{\"rs-dotted.threexthree\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile_3x3.png\\\")\"]],[false,{\"rs-dotted.threexthreewhite\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile_3x3_white.png\\\")\"]],[false,{\".tp-shadowcover\":false},[\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\",\"background:#fff\",\"position:absolute\",\"z-index:-1\"]],[false,{\".tp-shadow1\":false},[\"box-shadow:0 10px 6px -6px rgba(0,0,0,.8)\"]],[false,{\".tp-shadow2:before\":false,\".tp-shadow2:after\":false,\".tp-shadow3:before\":false,\".tp-shadow4:after\":false},[\"z-index:-2\",\"position:absolute\",\"content:\\\"\\\"\",\"bottom:10px\",\"left:10px\",\"width:50%\",\"top:85%\",\"max-width:300px\",\"background:transparent\",\"box-shadow:0 15px 10px rgba(0,0,0,.8)\",\"transform:rotate(-3deg)\"]],[false,{\".tp-shadow2:after\":false,\".tp-shadow4:after\":false},[\"transform:rotate(3deg)\",\"right:10px\",\"left:auto\"]],[false,{\".tp-shadow5\":false},[\"position:relative\",\"box-shadow:0 1px 4px rgba(0,0,0,.3),0 0 40px rgba(0,0,0,.1) inset\"]],[false,{\".tp-shadow5:before\":false,\".tp-shadow5:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"z-index:-2\",\"box-shadow:0 0 25px 0px rgba(0,0,0,.6)\",\"top:30%\",\"bottom:0\",\"left:20px\",\"right:20px\",\"border-radius:100px\\/20px\"]],[false,{\".rev-btn\":false,\".rev-btn:visited\":false},[\"box-shadow:none\",\"box-sizing:border-box\",\"cursor:pointer\"]],[false,{\".rev-btn:not(#_#_#_#_#_#_#_)\":false,\".rev-btn:visited:not(#_#_#_#_#_#_#_)\":false},[\"outline:none\",\"text-decoration:none\"]],[false,{\".rev-btn.rev-uppercase\":false,\".rev-btn.rev-uppercase:visited\":false},[\"text-transform:uppercase\"]],[false,{\".rev-btn i\":false},[\"font-size:inherit\",\"font-weight:normal\",\"position:relative\",\"top:0px\",\"transition:opacity .2s ease-out,margin .2s ease-out\",\"margin-left:0px\",\"line-height:inherit\"]],[false,{\".rev-btn.rev-hiddenicon i\":false},[\"font-size:inherit\",\"font-weight:normal\",\"position:relative\",\"top:0px\",\"transition:opacity .2s ease-out,margin .2s ease-out\",\"opacity:0\"]],[false,{\".rev-btn.rev-hiddenicon i:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-left:0px\",\"width:0px\"]],[false,{\".rev-btn.rev-hiddenicon:hover i:not(#_#_#_#_#_#_#_#_)\":false},[\"opacity:1\",\"margin-left:10px\",\"width:auto\"]],[false,{\".rev-burger\":false},[\"position:relative\",\"box-sizing:border-box\",\"padding:22px 14px 22px 14px\",\"border-radius:50%\",\"border:1px solid rgba(51,51,51,.25)\",\"-webkit-tap-highlight-color:rgba(0,0,0,0)\",\"-webkit-tap-highlight-color:transparent\",\"cursor:pointer\"]],[false,{\".rev-burger span\":false},[\"display:block\",\"width:30px\",\"height:3px\",\"background:#333\",\"transition:.7s\",\"pointer-events:none\"]],[false,{\".rev-burger span:not(#_#_#_#_#_#_#_#_)\":false},[\"transform-style:flat\"]],[false,{\".rev-burger span:nth-child(2)\":false},[\"margin:3px 0\"]],[false,{\".quick_style_example_wrap .rev-burger:hover :first-child\":false,\"#dialog_addbutton .rev-burger:hover :first-child\":false,\".open .rev-burger :first-child\":false,\".open.rev-burger :first-child\":false},[\"transform:translateY(6px) rotate(-45deg)\"]],[false,{\".quick_style_example_wrap .rev-burger:hover :nth-child(2)\":false,\"#dialog_addbutton .rev-burger:hover :nth-child(2)\":false,\".open .rev-burger :nth-child(2)\":false,\".open.rev-burger :nth-child(2)\":false},[\"transform:rotate(-45deg)\",\"opacity:0\"]],[false,{\".quick_style_example_wrap .rev-burger:hover :last-child\":false,\"#dialog_addbutton .rev-burger:hover :last-child\":false,\".open .rev-burger :last-child\":false,\".open.rev-burger :last-child\":false},[\"transform:translateY(-6px) rotate(-135deg)\"]],[false,{\".rev-burger.revb-white\":false},[\"border:2px solid rgba(255,255,255,.2)\"]],[false,{\".rev-b-span-light span\":false,\".rev-burger.revb-white span\":false},[\"background:#fff\"]],[false,{\".rev-burger.revb-whitenoborder\":false},[\"border:0\"]],[false,{\".rev-burger.revb-whitenoborder span\":false},[\"background:#fff\"]],[false,{\".rev-burger.revb-darknoborder\":false},[\"border:0\"]],[false,{\".rev-b-span-dark span\":false,\".rev-burger.revb-darknoborder span\":false},[\"background:#333\"]],[false,{\".rev-burger.revb-whitefull\":false},[\"background:#fff\",\"border:none\"]],[false,{\".rev-burger.revb-whitefull span\":false},[\"background:#333\"]],[false,{\".rev-burger.revb-darkfull\":false},[\"background:#333\",\"border:none\"]],[false,{\".rev-burger.revb-darkfull span\":false},[\"background:#fff\"]],[true,\"@keyframes rev-ani-mouse{\"],[true,\"0%{opacity:1;top:29%}\"],[true,\"15%{opacity:1;top:70%}\"],[true,\"50%{opacity:0;top:70%}\"],[true,\"100%{opacity:0;top:29%}\"],[true,\"}\"],[false,{\".rev-scroll-btn\":false},[\"display:inline-block\",\"position:relative\",\"left:0\",\"right:0\",\"text-align:center\",\"cursor:pointer\",\"width:35px\",\"height:55px\",\"box-sizing:border-box\",\"border:3px solid white\",\"border-radius:23px\"]],[false,{\".rev-scroll-btn > *\":false},[\"display:inline-block\",\"line-height:18px\",\"font-size:13px\",\"font-weight:normal\",\"color:#7f8c8d\",\"color:#fff\",\"font-family:\\\"proxima-nova\\\",\\\"Helvetica Neue\\\",Helvetica,Arial,sans-serif\",\"letter-spacing:2px\"]],[false,{\".rev-scroll-btn > *:hover\":false,\".rev-scroll-btn > *:focus\":false,\".rev-scroll-btn > *.active\":false},[\"color:#fff\"]],[false,{\".rev-scroll-btn > *:hover\":false,\".rev-scroll-btn > *:focus\":false,\".rev-scroll-btn > *:active\":false,\".rev-scroll-btn > *.active\":false},[\"opacity:.8\"]],[false,{\".rev-scroll-btn.revs-fullwhite\":false},[\"background:#fff\"]],[false,{\".rev-scroll-btn.revs-fullwhite span\":false},[\"background:#333\"]],[false,{\".rev-scroll-btn.revs-fulldark\":false},[\"background:#333\",\"border:none\"]],[false,{\".rev-scroll-btn.revs-fulldark span\":false},[\"background:#fff\"]],[false,{\".rev-scroll-btn span\":false},[\"position:absolute\",\"display:block\",\"top:29%\",\"left:50%\",\"width:8px\",\"height:8px\",\"margin:-4px 0 0 -4px\",\"border-radius:50%\",\"animation:rev-ani-mouse 2.5s linear infinite\",\"background:#fff\"]],[false,{\".rev-scroll-btn.rev-b-span-dark\":false},[\"border-color:#333\"]],[false,{\".rev-scroll-btn.rev-b-span-dark span\":false,\".rev-scroll-btn.revs-dark span\":false},[\"background:#333\"]],[false,{\".rev-control-btn\":false},[\"position:relative\",\"display:inline-block\",\"z-index:5\",\"color:#fff\",\"font-size:20px\",\"line-height:60px\",\"font-weight:400\",\"font-style:normal\",\"font-family:Raleway\",\"text-decoration:none\",\"text-align:center\",\"background-color:#000\",\"background-color:rgba(0,0,0,.5)\",\"border-radius:50px\",\"text-shadow:none\",\"width:60px\",\"height:60px\",\"box-sizing:border-box\",\"cursor:pointer\"]],[false,{\".rev-cbutton-dark-sr\":false},[\"border-radius:3px\"]],[false,{\".rev-cbutton-light\":false},[\"color:#333\",\"background-color:rgba(255,255,255,.75)\"]],[false,{\".rev-cbutton-light-sr\":false},[\"color:#333\",\"border-radius:3px\",\"background-color:rgba(255,255,255,.75)\"]],[false,{\".rev-sbutton\":false},[\"line-height:37px\",\"width:37px\",\"height:37px\"]],[false,{\".rev-sbutton-blue\":false},[\"background-color:#3b5998\"]],[false,{\".rev-sbutton-lightblue\":false},[\"background-color:#00a0d1\"]],[false,{\".rev-sbutton-red\":false},[\"background-color:#dd4b39\"]],[false,{\"rs-progress\":false},[\"visibility:hidden\",\"position:absolute\",\"z-index:200\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-bar\":false,\".rs-progress-bar\":false},[\"display:block\",\"z-index:20\",\"box-sizing:border-box\",\"background-clip:content-box\",\"position:absolute\",\"line-height:0px\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-bgs\":false},[\"display:block\",\"z-index:15\",\"box-sizing:border-box\",\"width:100%\",\"position:absolute\",\"height:100%\",\"top:0px\",\"left:0px\"]],[false,{\"rs-progress-bg\":false},[\"display:block\",\"background-clip:content-box\",\"position:absolute\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-gap\":false},[\"display:block\",\"background-clip:content-box\",\"position:absolute\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-vis\":false},[\"display:block\",\"width:100%\",\"height:100%\",\"position:absolute\",\"top:0px\",\"left:0px\"]],[false,{\".rs-layer amp-img\":false,\".rs-layer amp-anim\":false},[\"background:transparent\",\"-ms-filter:\\\"progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)\\\"\",\"filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=rgba(0,255,255,1),endColorstr=rgba(0,255,255,1))\"]],[false,{\".rs-layer.slidelink\":false},[\"cursor:pointer\",\"width:100%\",\"height:100%\"]],[false,{\".rs-layer.slidelink a\":false},[\"width:100%\",\"height:100%\",\"display:block\"]],[false,{\".rs-layer.slidelink a div\":false},[\"width:3000px\",\"height:1500px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/coloredbg.png\\\") repeat\"]],[false,{\".rs-layer.slidelink a span\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/coloredbg.png\\\") repeat\",\"width:100%\",\"height:100%\",\"display:block\"]],[false,{\".rs-layer .rs-starring\":false},[\"display:inline-block\"]],[false,{\".rs-layer .rs-starring .star-rating\":false},[\"float:none\",\"display:inline-block\",\"vertical-align:top\"]],[false,{\".rs-layer .rs-starring .star-rating:not(#_#_#_#_#_#_#_)\":false},[\"color:#ffc321\"]],[false,{\".rs-layer .rs-starring .star-rating\":false,\".rs-layer .rs-starring-page .star-rating\":false},[\"position:relative\",\"height:1em\",\"width:5.4em\",\"font-family:star\"]],[false,{\".rs-layer .rs-starring .star-rating:not(#_#_#_#_#_#_#_)\":false,\".rs-layer .rs-starring-page .star-rating:not(#_#_#_#_#_#_#_)\":false},[\"font-size:1em\"]],[false,{\".rs-layer .rs-starring .star-rating:before\":false,\".rs-layer .rs-starring-page .star-rating:before\":false},[\"content:\\\"sssss\\\"\",\"color:#e0dadf\",\"float:left\",\"top:0\",\"left:0\",\"position:absolute\"]],[false,{\".rs-layer .rs-starring .star-rating span\":false},[\"overflow:hidden\",\"float:left\",\"top:0\",\"left:0\",\"position:absolute\",\"padding-top:1.5em\"]],[false,{\".rs-layer .rs-starring .star-rating span:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:1em\"]],[false,{\".rs-layer .rs-starring .star-rating span:before\":false},[\"content:\\\"SSSSS\\\"\",\"top:0\",\"position:absolute\",\"left:0\"]],[false,{\"rs-loader\":false},[\"top:50%\",\"left:50%\",\"z-index:10000\",\"position:absolute\"]],[false,{\"rs-loader.off:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"rs-loader.spinner0\":false},[\"width:40px\",\"height:40px\",\"background-color:#fff\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/loader.gif\\\")\",\"background-repeat:no-repeat\",\"background-position:center center\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"margin-top:-20px\",\"margin-left:-20px\",\"animation:tp-rotateplane 1.2s infinite ease-in-out\",\"border-radius:3px\"]],[false,{\"rs-loader.spinner1\":false},[\"width:40px\",\"height:40px\",\"background-color:#fff\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"margin-top:-20px\",\"margin-left:-20px\",\"animation:tp-rotateplane 1.2s infinite ease-in-out\",\"border-radius:3px\"]],[false,{\"rs-loader.spinner5\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/loader.gif\\\")\",\"background-repeat:no-repeat\",\"background-position:10px 10px\",\"background-color:#fff\",\"margin:-22px -22px\",\"width:44px\",\"height:44px\",\"border-radius:3px\"]],[true,\"@keyframes tp-rotateplane{\"],[true,\"0%{transform:perspective(120px) rotateX(0deg) rotateY(0deg)}\"],[true,\"50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0deg)}\"],[true,\"100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner2\":false},[\"width:40px\",\"height:40px\",\"margin-top:-20px\",\"margin-left:-20px\",\"background-color:#f00\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"border-radius:100%\",\"animation:tp-scaleout 1s infinite ease-in-out\"]],[true,\"@keyframes tp-scaleout{\"],[true,\"0%{transform:scale(0)}\"],[true,\"100%{transform:scale(1);opacity:0}\"],[true,\"}\"],[false,{\"rs-loader.spinner3\":false},[\"margin:-9px 0px 0px -35px\",\"width:70px\",\"text-align:center\"]],[false,{\"rs-loader.spinner3 .bounce1\":false,\"rs-loader.spinner3 .bounce2\":false,\"rs-loader.spinner3 .bounce3\":false},[\"width:18px\",\"height:18px\",\"background-color:#fff\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"border-radius:100%\",\"display:inline-block\",\"animation:tp-bouncedelay 1.4s infinite ease-in-out\",\"animation-fill-mode:both\"]],[false,{\"rs-loader.spinner3 .bounce1\":false},[\"animation-delay:-.32s\"]],[false,{\"rs-loader.spinner3 .bounce2\":false},[\"animation-delay:-.16s\"]],[true,\"@keyframes tp-bouncedelay{\"],[true,\"0%,80%,100%{transform:scale(0)}\"],[true,\"40%{transform:scale(1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner4\":false},[\"margin:-20px 0px 0px -20px\",\"width:40px\",\"height:40px\",\"text-align:center\",\"animation:tp-rotate 2s infinite linear\"]],[false,{\"rs-loader.spinner4 .dot1\":false,\"rs-loader.spinner4 .dot2\":false},[\"width:60%\",\"height:60%\",\"display:inline-block\",\"position:absolute\",\"top:0\",\"background-color:#fff\",\"border-radius:100%\",\"animation:tp-bounce 2s infinite ease-in-out\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\"]],[false,{\"rs-loader.spinner4 .dot2\":false},[\"top:auto\",\"bottom:0px\",\"animation-delay:-1s\"]],[true,\"@keyframes tp-rotate{\"],[true,\"100%{transform:rotate(360deg)}\"],[true,\"}@keyframes tp-bounce{\"],[true,\"0%,100%{transform:scale(0)}\"],[true,\"50%{transform:scale(1)}\"],[true,\"}\"],[false,{\"rs-layer amp-iframe\":false},[\"visibility:hidden\"]],[false,{\"rs-layer.rs-ii-o amp-iframe\":false},[\"visibility:visible\"]],[false,{\"rs-layer input[type=\\\"text\\\"]\":false,\"rs-layer input[type=\\\"email\\\"]\":false,\"rs-layer input[type=\\\"url\\\"]\":false,\"rs-layer input[type=\\\"password\\\"]\":false,\"rs-layer input[type=\\\"search\\\"]\":false,\"rs-layer input[type=\\\"number\\\"]\":false,\"rs-layer input[type=\\\"tel\\\"]\":false,\"rs-layer input[type=\\\"range\\\"]\":false,\"rs-layer input[type=\\\"date\\\"]\":false,\"rs-layer input[type=\\\"month\\\"]\":false,\"rs-layer input[type=\\\"week\\\"]\":false,\"rs-layer input[type=\\\"time\\\"]\":false,\"rs-layer input[type=\\\"datetime\\\"]\":false,\"rs-layer input[type=\\\"datetime-local\\\"]\":false},[\"display:inline-block\"]],[false,{\"rs-layer input::placeholder\":false},[\"vertical-align:middle\"]],[false,{\"rs-layer input::placeholder:not(#_#_#_#_#_#_#_#_)\":false},[\"line-height:inherit\"]],[false,{\"a.rs-layer\":false},[\"transition:none\"]],[false,{\"rs-thumbs-wrap\":false,\"rs-tabs-wrap\":false,\"rs-thumbs\":false,\"rs-thumb\":false,\"rs-tab\":false,\"rs-bullet\":false,\"rs-bullets\":false,\"rs-navmask\":false,\"rs-tabs\":false,\"rs-arrow\":false},[\"display:block\",\"pointer-events:all\"]],[false,{\".tp-thumbs.navbar\":false,\".tp-bullets.navbar\":false,\".tp-tabs.navbar\":false},[\"border:none\",\"min-height:0\",\"margin:0\",\"border-radius:0\"]],[false,{\".tp-tabs\":false,\".tp-thumbs\":false,\".tp-bullets\":false},[\"position:absolute\",\"display:block\",\"z-index:1000\",\"top:0px\",\"left:0px\"]],[false,{\".tp-tab\":false,\".tp-thumb\":false},[\"cursor:pointer\",\"position:absolute\",\"opacity:.5\",\"box-sizing:border-box\"]],[false,{\".tp-arr-imgholder\":false,\"rs-poster\":false,\".tp-thumb-image\":false,\".tp-tab-image\":false},[\"background-position:center center\",\"background-size:cover\",\"width:100%\",\"height:100%\",\"display:block\",\"position:absolute\",\"top:0px\",\"left:0px\"]],[false,{\"rs-poster\":false},[\"cursor:pointer\",\"z-index:3\"]],[false,{\".tp-tab.rs-touchhover\":false,\".tp-tab.selected\":false,\".tp-thumb.rs-touchhover\":false,\".tp-thumb.selected\":false},[\"opacity:1\"]],[false,{\".tp-tab-mask:not(#_#_#_#_#_#_#_)\":false,\".tp-thumb-mask:not(#_#_#_#_#_#_#_)\":false},[\"box-sizing:border-box\"]],[false,{\".tp-tabs:not(#_#_#_#_#_#_#_)\":false,\".tp-thumbs:not(#_#_#_#_#_#_#_)\":false},[\"box-sizing:content-box\"]],[false,{\".tp-bullet\":false},[\"width:15px\",\"height:15px\",\"position:absolute\",\"background:#fff\",\"background:rgba(255,255,255,.3)\",\"cursor:pointer\"]],[false,{\".tp-bullet.selected\":false,\".tp-bullet.rs-touchhover\":false},[\"background:#fff\"]],[false,{\".tparrows\":false},[\"cursor:pointer\",\"background:#000\",\"background:rgba(0,0,0,.5)\",\"width:40px\",\"height:40px\",\"position:absolute\",\"display:block\",\"z-index:1000\"]],[false,{\".tparrows.rs-touchhover\":false},[\"background:#000\"]],[false,{\".tparrows:before\":false},[\"font-family:\\\"revicons\\\"\",\"font-size:15px\",\"color:#fff\",\"display:block\",\"line-height:40px\",\"text-align:center\"]],[false,{\".tparrows.tp-leftarrow:before\":false},[\"content:\\\"\\ue824\\\"\"]],[false,{\".tparrows.tp-rightarrow:before\":false},[\"content:\\\"\\ue825\\\"\"]],[false,{\".rs-layer [class^=\\\"pe-7s-\\\"]:before\":false,\".rs-layer [class*=\\\" pe-7s-\\\"]:before\":false,\".rs-layer [class^=\\\"pe-7s-\\\"]\":false,\".rs-layer [class*=\\\" pe-7s-\\\"]\":false},[\"width:auto\",\"margin:0\",\"line-height:inherit\",\"box-sizing:inherit\"]],[false,{\"rs-pzimg-wrap\":false},[\"display:block\"]],[false,{\"body.rtl .rs-pzimg:not(#_#_#_#_#_#_#_#_)\":false},[\"left:0\"]],[false,{\".rs_fake_cube\":false},[\"transform-style:preserve-3d\"]],[false,{\".rs_fake_cube\":false,\".rs_fake_cube_wall\":false},[\"position:absolute\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"left:0px\",\"top:0px\",\"z-index:0\"]],[false,{\".rs-builder-mode rs-sbg-wrap canvas\":false,\"rs-sbg canvas\":false},[\"overflow:hidden\",\"z-index:5\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".dddwrappershadow\":false},[\"box-shadow:0 45px 100px rgba(0,0,0,.4)\"]],[false,{\".dddwrapper\":false},[\"transform-style:flat\",\"perspective:10000px\"]],[false,{\".rs_error_message_box\":false},[\"background:#111\",\"width:800px\",\"margin:40px auto\",\"padding:40px 20px\",\"text-align:center\",\"font-family:\\\"Open Sans\\\",sans-serif\"]],[false,{\".rs_error_message_oops\":false},[\"margin:0px 0px 20px\",\"line-height:60px\",\"font-size:34px\",\"color:#fff\"]],[false,{\".rs_error_message_content\":false},[\"margin:0px 0px 20px\",\"line-height:25px\",\"font-size:17px\",\"color:#fff\"]],[false,{\".rs_error_message_button\":false},[\"background:#333\",\"display:inline-block\",\"padding:10px 15px\",\"text-align:right\",\"border-radius:5px\",\"cursor:pointer\"]],[false,{\".rs_error_message_button:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\".rs_error_message_button:hover\":false},[\"background:#5e35b1\"]],[false,{\".hglayerinfo\":false},[\"position:fixed\",\"bottom:0px\",\"left:0px\",\"color:#fff\",\"font-size:12px\",\"line-height:20px\",\"font-weight:600\",\"background:rgba(0,0,0,.75)\",\"padding:5px 10px\",\"z-index:2000\",\"white-space:normal\"]],[false,{\".hginfo\":false},[\"position:absolute\",\"top:-2px\",\"left:-2px\",\"color:#e74c3c\",\"font-size:12px\",\"font-weight:600\",\"background:#000\",\"padding:2px 5px\"]],[false,{\".indebugmode .rs-layer:hover:not(#_#_#_#_#_#_#_)\":false},[\"border:1px dashed #c0392b\"]],[false,{\".helpgrid\":false},[\"border:2px dashed #c0392b\",\"position:absolute\",\"top:0px\",\"left:0px\",\"z-index:0\"]],[false,{\"#revsliderlogloglog\":false},[\"padding:15px\",\"color:#fff\",\"position:fixed\",\"top:0px\",\"left:0px\",\"width:200px\",\"height:150px\",\"background:rgba(0,0,0,.7)\",\"z-index:100000\",\"font-size:10px\",\"overflow:scroll\"]],[false,{\".aden\":false},[\"filter:hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2)\"]],[false,{\".aden::after\":false},[\"background:linear-gradient(to right,rgba(66,10,14,.2),transparent)\",\"mix-blend-mode:darken\"]],[false,{\".perpetua::after\":false,\".reyes::after\":false},[\"mix-blend-mode:soft-light\",\"opacity:.5\"]],[false,{\".inkwell\":false},[\"filter:sepia(.3) contrast(1.1) brightness(1.1) grayscale(1)\"]],[false,{\".perpetua::after\":false},[\"background:linear-gradient(to bottom,#005b9a,#e6c13d)\"]],[false,{\".reyes\":false},[\"filter:sepia(.22) brightness(1.1) contrast(.85) saturate(.75)\"]],[false,{\".reyes::after\":false},[\"background:#efcdad\"]],[false,{\".gingham\":false},[\"filter:brightness(1.05) hue-rotate(-10deg)\"]],[false,{\".gingham::after\":false},[\"background:linear-gradient(to right,rgba(66,10,14,.2),transparent)\",\"mix-blend-mode:darken\"]],[false,{\".toaster\":false},[\"filter:contrast(1.5) brightness(.9)\"]],[false,{\".toaster::after\":false},[\"background:radial-gradient(circle,#804e0f,#3b003b)\",\"mix-blend-mode:screen\"]],[false,{\".walden\":false},[\"filter:brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6)\"]],[false,{\".walden::after\":false},[\"background:#04c\",\"mix-blend-mode:screen\",\"opacity:.3\"]],[false,{\".hudson\":false},[\"filter:brightness(1.2) contrast(.9) saturate(1.1)\"]],[false,{\".hudson::after\":false},[\"background:radial-gradient(circle,#a6b1ff 50%,#342134)\",\"mix-blend-mode:multiply\",\"opacity:.5\"]],[false,{\".earlybird\":false},[\"filter:contrast(.9) sepia(.2)\"]],[false,{\".earlybird::after\":false},[\"background:radial-gradient(circle,#d0ba8e 20%,#360309 85%,#1d0210 100%)\",\"mix-blend-mode:overlay\"]],[false,{\".mayfair\":false},[\"filter:contrast(1.1) saturate(1.1)\"]],[false,{\".mayfair::after\":false},[\"background:radial-gradient(circle at 40% 40%,rgba(255,255,255,.8),rgba(255,200,200,.6),#111 60%)\",\"mix-blend-mode:overlay\",\"opacity:.4\"]],[false,{\".lofi\":false},[\"filter:saturate(1.1) contrast(1.5)\"]],[false,{\".lofi::after\":false},[\"background:radial-gradient(circle,transparent 70%,#222 150%)\",\"mix-blend-mode:multiply\"]],[false,{\"._1977\":false},[\"filter:contrast(1.1) brightness(1.1) saturate(1.3)\"]],[false,{\"._1977:after\":false},[\"background:rgba(243,106,188,.3)\",\"mix-blend-mode:screen\"]],[false,{\".brooklyn\":false},[\"filter:contrast(.9) brightness(1.1)\"]],[false,{\".brooklyn::after\":false},[\"background:radial-gradient(circle,rgba(168,223,193,.4) 70%,#c4b7c8)\",\"mix-blend-mode:overlay\"]],[false,{\".xpro2\":false},[\"filter:sepia(.3)\"]],[false,{\".xpro2::after\":false},[\"background:radial-gradient(circle,#e6e7e0 40%,rgba(43,42,161,.6) 110%)\",\"mix-blend-mode:color-burn\"]],[false,{\".nashville\":false},[\"filter:sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2)\"]],[false,{\".nashville::after\":false},[\"background:rgba(0,70,150,.4)\",\"mix-blend-mode:lighten\"]],[false,{\".nashville::before\":false},[\"background:rgba(247,176,153,.56)\",\"mix-blend-mode:darken\"]],[false,{\".lark\":false},[\"filter:contrast(.9)\"]],[false,{\".lark::after\":false},[\"background:rgba(242,242,242,.8)\",\"mix-blend-mode:darken\"]],[false,{\".lark::before\":false},[\"background:#22253f\",\"mix-blend-mode:color-dodge\"]],[false,{\".moon\":false},[\"filter:grayscale(1) contrast(1.1) brightness(1.1)\"]],[false,{\".moon::before\":false},[\"background:#a0a0a0\",\"mix-blend-mode:soft-light\"]],[false,{\".moon::after\":false},[\"background:#383838\",\"mix-blend-mode:lighten\"]],[false,{\".clarendon\":false},[\"filter:contrast(1.2) saturate(1.35)\"]],[false,{\".clarendon:before\":false},[\"background:rgba(127,187,227,.2)\",\"mix-blend-mode:overlay\"]],[false,{\".willow\":false},[\"filter:grayscale(.5) contrast(.95) brightness(.9)\"]],[false,{\".willow::before\":false},[\"background-image:radial-gradient(circle,40%,#d4a9af 55%,#000 150%)\",\"mix-blend-mode:overlay\"]],[false,{\".rise\":false},[\"filter:brightness(1.05) sepia(.2) contrast(.9) saturate(.9)\"]],[false,{\".rise::after\":false},[\"background:radial-gradient(circle,rgba(232,197,152,.8),transparent 90%)\",\"mix-blend-mode:overlay\",\"opacity:.6\"]],[false,{\".rise::before\":false},[\"background:radial-gradient(circle,rgba(236,205,169,.15) 55%,rgba(50,30,7,.4))\",\"mix-blend-mode:multiply\"]],[false,{\"._1977:after\":false,\"._1977:before\":false,\"rs-pzimg-wrap.aden:after\":false,\".aden:before\":false,\".brooklyn:after\":false,\".brooklyn:before\":false,\".clarendon:after\":false,\".clarendon:before\":false,\".earlybird:after\":false,\".earlybird:before\":false,\".gingham:after\":false,\".gingham:before\":false,\".hudson:after\":false,\".hudson:before\":false,\".inkwell:after\":false,\".inkwell:before\":false,\".lark:after\":false,\".lark:before\":false,\".lofi:after\":false,\".lofi:before\":false,\".mayfair:after\":false,\".mayfair:before\":false,\".moon:after\":false,\".moon:before\":false,\".nashville:after\":false,\".nashville:before\":false,\".perpetua:after\":false,\".perpetua:before\":false,\".reyes:after\":false,\".reyes:before\":false,\".rise:after\":false,\".rise:before\":false,\".slumber:after\":false,\".slumber:before\":false,\".toaster:after\":false,\".toaster:before\":false,\".walden:after\":false,\".walden:before\":false,\".willow:after\":false,\".willow:before\":false,\".xpro2:after\":false,\".xpro2:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"height:100%\",\"width:100%\",\"top:0\",\"left:0\",\"position:absolute\",\"pointer-events:none\"]],[false,{\"._1977\":false,\".aden\":false,\".brooklyn\":false,\".clarendon\":false,\".earlybird\":false,\".gingham\":false,\".hudson\":false,\".inkwell\":false,\".lark\":false,\".lofi\":false,\".mayfair\":false,\".moon\":false,\".nashville\":false,\".perpetua\":false,\".reyes\":false,\".rise\":false,\".slumber\":false,\".toaster\":false,\".walden\":false,\".willow\":false,\".xpro2\":false},[\"position:absolute\"]],[false,{\"._1977:before\":false,\".aden:before\":false,\".brooklyn:before\":false,\".clarendon:before\":false,\".earlybird:before\":false,\".gingham:before\":false,\".hudson:before\":false,\".inkwell:before\":false,\".lark:before\":false,\".lofi:before\":false,\".mayfair:before\":false,\".moon:before\":false,\".nashville:before\":false,\".perpetua:before\":false,\".reyes:before\":false,\".rise:before\":false,\".slumber:before\":false,\".toaster:before\":false,\".walden:before\":false,\".willow:before\":false,\".xpro2:before\":false},[\"z-index:30\"]],[false,{\"._1977:after\":false,\".aden:after\":false,\".brooklyn:after\":false,\".clarendon:after\":false,\".earlybird:after\":false,\".gingham:after\":false,\".hudson:after\":false,\".inkwell:after\":false,\".lark:after\":false,\".lofi:after\":false,\".mayfair:after\":false,\".moon:after\":false,\".nashville:after\":false,\".perpetua:after\":false,\".reyes:after\":false,\".rise:after\":false,\".slumber:after\":false,\".toaster:after\":false,\".walden:after\":false,\".willow:after\":false,\".xpro2:after\":false},[\"z-index:40\"]],[false,{\".slumber\":false},[\"filter:saturate(.66) brightness(1.05)\"]],[false,{\".slumber::after\":false},[\"background:rgba(125,105,24,.5)\",\"mix-blend-mode:soft-light\"]],[false,{\".slumber::before\":false},[\"background:rgba(69,41,12,.4)\",\"mix-blend-mode:lighten\"]],[false,{\".willow::after\":false},[\"background-color:#d8cdcb\",\"mix-blend-mode:color\"]],[false,\"@media not all and (min-resolution:.001dpcm){\"],[false,\"@supports (-webkit-appearance:none){\"],[false,{\".willow\":false},[\"filter:grayscale(1) contrast(.95) brightness(.9)\"]],[false,{\".willow::after\":false},[\"background-color:transparent\"]],[false,\"}\"],[false,\"}\"],[false,{\"rs-pzimg-wrap.perpetua:before\":false,\"rs-pzimg-wrap.perpetua:after\":false,\"rs-pzimg-wrap.nashville:before\":false,\"rs-pzimg-wrap.nashville:after\":false,\"rs-pzimg-wrap.xpro2:before\":false,\"rs-pzimg-wrap.xpro2:after\":false,\"rs-pzimg-wrap._1977:after\":false,\"rs-pzimg-wrap._1977:before\":false,\"rs-pzimg-wrap.aden:after\":false,\"rs-pzimg-wrap.aden:before\":false,\"rs-pzimg-wrap.brooklyn:after\":false,\"rs-pzimg-wrap.brooklyn:before\":false,\"rs-pzimg-wrap.clarendon:after\":false,\"rs-pzimg-wrap.clarendon:before\":false,\"rs-pzimg-wrap.earlybird:after\":false,\"rs-pzimg-wrap.earlybird:before\":false,\"rs-pzimg-wrap.gingham:after\":false,\"rs-pzimg-wrap.gingham:before\":false,\"rs-pzimg-wrap.hudson:after\":false,\"rs-pzimg-wrap.hudson:before\":false,\"rs-pzimg-wrap.inkwell:after\":false,\"rs-pzimg-wrap.inkwell:before\":false,\"rs-pzimg-wrap.lark:after\":false,\"rs-pzimg-wrap.lark:before\":false,\"rs-pzimg-wrap.lofi:after\":false,\"rs-pzimg-wrap.lofi:before\":false,\"rs-pzimg-wrap.mayfair:after\":false,\"rs-pzimg-wrap.mayfair:before\":false,\"rs-pzimg-wrap.moon:after\":false,\"rs-pzimg-wrap.moon:before\":false,\"rs-pzimg-wrap.reyes:after\":false,\"rs-pzimg-wrap.reyes:before\":false,\"rs-pzimg-wrap.rise:after\":false,\"rs-pzimg-wrap.rise:before\":false,\"rs-pzimg-wrap.slumber:after\":false,\"rs-pzimg-wrap.slumber:before\":false,\"rs-pzimg-wrap.toaster:after\":false,\"rs-pzimg-wrap.toaster:before\":false,\"rs-pzimg-wrap.walden:after\":false,\"rs-pzimg-wrap.walden:before\":false,\"rs-pzimg-wrap.willow:after\":false,\"rs-pzimg-wrap.willow:before\":false,\"rs-pzimg-wrap:before\":false,\"rs-pzimg-wrap:after\":false},[\"height:500%\",\"width:500%\"]],[false,{\"rs-loader.spinner6\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"display:inline-block\",\"-webkit-animation:rs-revealer-6 1.4s linear infinite\",\"animation:rs-revealer-6 1.4s linear infinite\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span\":false},[\"position:absolute\",\"vertical-align:top\",\"border-radius:100%\",\"display:inline-block\",\"width:8px\",\"height:8px\",\"margin-left:16px\",\"transform-origin:center 20px\",\"-webkit-transform-origin:center 20px\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(2)\":false},[\"transform:rotate(36deg)\",\"-webkit-transform:rotate(36deg)\",\"opacity:.1\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(3)\":false},[\"transform:rotate(72deg)\",\"-webkit-transform:rotate(72deg)\",\"opacity:.2\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(4)\":false},[\"transform:rotate(108deg)\",\"-webkit-transform:rotate(108deg)\",\"opacity:.3\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(5)\":false},[\"transform:rotate(144deg)\",\"-webkit-transform:rotate(144deg)\",\"opacity:.4\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(6)\":false},[\"transform:rotate(180deg)\",\"-webkit-transform:rotate(180deg)\",\"opacity:.5\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(7)\":false},[\"transform:rotate(216deg)\",\"-webkit-transform:rotate(216deg)\",\"opacity:.6\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(8)\":false},[\"transform:rotate(252deg)\",\"-webkit-transform:rotate(252deg)\",\"opacity:.7\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(9)\":false},[\"transform:rotate(288deg)\",\"-webkit-transform:rotate(288deg)\",\"opacity:.8\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(10)\":false},[\"transform:rotate(324deg)\",\"-webkit-transform:rotate(324deg)\",\"opacity:.9\"]],[true,\"@keyframes rs-revealer-6{\"],[true,\"from{transform:rotate(0)}\"],[true,\"to{transform:rotate(360deg)}\"],[true,\"}@-webkit-keyframes rs-revealer-6{\"],[true,\"from{-webkit-transform:rotate(0)}\"],[true,\"to{-webkit-transform:rotate(360deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner7\":false},[\"width:35px\",\"height:35px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner7 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"display:inline-block\",\"padding:0\",\"border-radius:100%\",\"border:2px solid\",\"-webkit-animation:rs-revealer-7 .8s linear infinite\",\"animation:rs-revealer-7 .8s linear infinite\"]],[true,\"@keyframes rs-revealer-7{\"],[true,\"from{transform:rotate(0)}\"],[true,\"to{transform:rotate(360deg)}\"],[true,\"}@-webkit-keyframes rs-revealer-7{\"],[true,\"from{-webkit-transform:rotate(0)}\"],[true,\"to{-webkit-transform:rotate(360deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner8\":false},[\"width:50px\",\"height:50px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner8 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"display:inline-block\",\"padding:0\",\"text-align:left\"]],[false,{\"rs-loader.spinner8 .rs-spinner-inner span\":false},[\"position:absolute\",\"display:inline-block\",\"width:100%\",\"height:100%\",\"border-radius:100%\",\"-webkit-animation:rs-revealer-8 1.6s linear infinite\",\"animation:rs-revealer-8 1.6s linear infinite\"]],[false,{\"rs-loader.spinner8 .rs-spinner-inner span:last-child\":false},[\"animation-delay:-.8s\",\"-webkit-animation-delay:-.8s\"]],[true,\"@keyframes rs-revealer-8{\"],[true,\"0%{transform:scale(0,0);opacity:.5}\"],[true,\"100%{transform:scale(1,1);opacity:0}\"],[true,\"}@-webkit-keyframes rs-revealer-8{\"],[true,\"0%{-webkit-transform:scale(0,0);opacity:.5}\"],[true,\"100%{-webkit-transform:scale(1,1);opacity:0}\"],[true,\"}\"],[false,{\"rs-loader.spinner9\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner9 .rs-spinner-inner span\":false},[\"display:block\",\"width:100%\",\"height:100%\",\"border-radius:50%\",\"opacity:.6\",\"position:absolute\",\"top:0\",\"left:0\",\"-webkit-animation:rs-revealer-9 2s infinite ease-in-out\",\"animation:rs-revealer-9 2s infinite ease-in-out\"]],[false,{\"rs-loader.spinner9 .rs-spinner-inner span:last-child\":false},[\"-webkit-animation-delay:-1s\",\"animation-delay:-1s\"]],[true,\"@-webkit-keyframes rs-revealer-9{\"],[true,\"0%,100%{-webkit-transform:scale(0)}\"],[true,\"50%{-webkit-transform:scale(1)}\"],[true,\"}@keyframes rs-revealer-9{\"],[true,\"0%,100%{transform:scale(0);-webkit-transform:scale(0)}\"],[true,\"50%{transform:scale(1);-webkit-transform:scale(1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner10\":false},[\"width:54px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"text-align:center\",\"font-size:10px\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span\":false},[\"display:block\",\"display:inline-block\",\"height:100%\",\"width:6px\",\"-webkit-animation:rs-revealer-10 1.2s infinite ease-in-out\",\"animation:rs-revealer-10 1.2s infinite ease-in-out\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(2)\":false},[\"-webkit-animation-delay:-1.1s\",\"animation-delay:-1.1s\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(3)\":false},[\"-webkit-animation-delay:-1s\",\"animation-delay:-1s\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(4)\":false},[\"-webkit-animation-delay:-.9s\",\"animation-delay:-.9s\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(5)\":false},[\"-webkit-animation-delay:-.8s\",\"animation-delay:-.8s\"]],[true,\"@-webkit-keyframes rs-revealer-10{\"],[true,\"0%,100%,40%{-webkit-transform:scaleY(.4)}\"],[true,\"20%{-webkit-transform:scaleY(1)}\"],[true,\"}@keyframes rs-revealer-10{\"],[true,\"0%,100%,40%{transform:scaleY(.4);-webkit-transform:scaleY(.4)}\"],[true,\"20%{transform:scaleY(1);-webkit-transform:scaleY(1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner11\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span\":false},[\"display:block\",\"width:33%\",\"height:33%\",\"background-color:#333\",\"float:left\",\"-webkit-animation:rs-revealer-11 1.3s infinite ease-in-out\",\"animation:rs-revealer-11 1.3s infinite ease-in-out\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(1)\":false},[\"-webkit-animation-delay:.2s\",\"animation-delay:.2s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(2)\":false},[\"-webkit-animation-delay:.3s\",\"animation-delay:.3s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(3)\":false},[\"-webkit-animation-delay:.4s\",\"animation-delay:.4s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(4)\":false},[\"-webkit-animation-delay:.1s\",\"animation-delay:.1s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(5)\":false},[\"-webkit-animation-delay:.2s\",\"animation-delay:.2s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(6)\":false},[\"-webkit-animation-delay:.3s\",\"animation-delay:.3s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(7)\":false},[\"-webkit-animation-delay:0s\",\"animation-delay:0s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(8)\":false},[\"-webkit-animation-delay:.1s\",\"animation-delay:.1s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(9)\":false},[\"-webkit-animation-delay:.2s\",\"animation-delay:.2s\"]],[true,\"@-webkit-keyframes rs-revealer-11{\"],[true,\"0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}\"],[true,\"35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}\"],[true,\"}@keyframes rs-revealer-11{\"],[true,\"0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}\"],[true,\"35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner12\":false},[\"width:35px\",\"height:35px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner12 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"-webkit-animation:rs-revealer-12 1s infinite linear\",\"animation:rs-revealer-12 1s infinite linear\"]],[true,\"@-webkit-keyframes rs-revealer-12{\"],[true,\"0%{-webkit-transform:rotate(0)}\"],[true,\"100%{-webkit-transform:rotate(360deg)}\"],[true,\"}@keyframes rs-revealer-12{\"],[true,\"0%{transform:rotate(0)}\"],[true,\"100%{transform:rotate(360deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner13\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span\":false},[\"display:block\",\"width:40%\",\"height:40%\",\"position:absolute\",\"border-radius:50%\",\"-webkit-animation:rs-revealer-13 2s ease infinite\",\"animation:rs-revealer-13 2s ease infinite\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span:nth-child(1)\":false},[\"animation-delay:-1.5s\",\"-webkit-animation-delay:-1.5s\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span:nth-child(2)\":false},[\"animation-delay:-1s\",\"-webkit-animation-delay:-1s\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span:nth-child(3)\":false},[\"animation-delay:-.5s\",\"-webkit-animation-delay:-.5s\"]],[true,\"@keyframes rs-revealer-13{\"],[true,\"0%,100%{transform:translate(0)}\"],[true,\"25%{transform:translate(160%)}\"],[true,\"50%{transform:translate(160%,160%)}\"],[true,\"75%{transform:translate(0,160%)}\"],[true,\"}@-webkit-keyframes rs-revealer-13{\"],[true,\"0%,100%{-webkit-transform:translate(0)}\"],[true,\"25%{-webkit-transform:translate(160%)}\"],[true,\"50%{-webkit-transform:translate(160%,160%)}\"],[true,\"75%{-webkit-transform:translate(0,160%)}\"],[true,\"}\"],[false,{\"rs-loader.spinner14\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"animation:rs-revealer-14 1s infinite linear\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span\":false},[\"display:block\",\"position:absolute\",\"top:50%\",\"left:50%\",\"width:16px\",\"height:16px\",\"border-radius:50%\",\"margin:-8px\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(1)\":false},[\"-webkit-animation:rs-revealer-14-1 2s infinite\",\"animation:rs-revealer-14-1 2s infinite\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(2)\":false},[\"-webkit-animation:rs-revealer-14-2 2s infinite\",\"animation:rs-revealer-14-2 2s infinite\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(3)\":false},[\"-webkit-animation:rs-revealer-14-3 2s infinite\",\"animation:rs-revealer-14-3 2s infinite\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(4)\":false},[\"-webkit-animation:rs-revealer-14-4 2s infinite\",\"animation:rs-revealer-14-4 2s infinite\"]],[true,\"@-webkit-keyframes rs-revealer-14-1{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(80%,80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(80%,80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@-webkit-keyframes rs-revealer-14-2{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(80%,-80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(80%,-80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@-webkit-keyframes rs-revealer-14-3{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(-80%,-80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(-80%,-80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@-webkit-keyframes rs-revealer-14-4{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(-80%,80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(-80%,80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-1{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(80%,80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(80%,80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-2{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(80%,-80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(80%,-80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-3{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(-80%,-80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(-80%,-80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-4{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(-80%,80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(-80%,80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}\"],[false,{\"rs-loader.spinner15\":false},[\"width:40px\",\"height:40px\",\"margin-top:-4px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner15 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\"]],[false,{\"rs-loader.spinner15 .rs-spinner-inner span\":false},[\"display:block\",\"width:20px\",\"height:20px\",\"position:absolute\",\"top:0\",\"left:0\",\"-webkit-animation:rs-revealer-15 1.8s infinite ease-in-out\",\"animation:rs-revealer-15 1.8s infinite ease-in-out\"]],[false,{\"rs-loader.spinner15 .rs-spinner-inner:last-child\":false},[\"-webkit-animation-delay:-.9s\",\"animation-delay:-.9s\"]],[true,\"@-webkit-keyframes rs-revealer-15{\"],[true,\"25%{-webkit-transform:translateX(30px) rotate(-90deg) scale(.5)}\"],[true,\"50%{-webkit-transform:translateX(30px) translateY(30px) rotate(-180deg)}\"],[true,\"75%{-webkit-transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5)}\"],[true,\"100%{-webkit-transform:rotate(-360deg)}\"],[true,\"}@keyframes rs-revealer-15{\"],[true,\"25%{transform:translateX(30px) rotate(-90deg) scale(.5);-webkit-transform:translateX(30px) rotate(-90deg) scale(.5)}\"],[true,\"50%{transform:translateX(30px) translateY(30px) rotate(-179deg);-webkit-transform:translateX(30px) translateY(30px) rotate(-179deg)}\"],[true,\"50.1%{transform:translateX(30px) translateY(30px) rotate(-180deg);-webkit-transform:translateX(30px) translateY(30px) rotate(-180deg)}\"],[true,\"75%{transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5);-webkit-transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5)}\"],[true,\"100%{transform:rotate(-360deg);-webkit-transform:rotate(-360deg)}\"],[true,\"}\"],[false,{\".bgcanvas\":false},[\"display:none\",\"position:absolute\",\"overflow:hidden\"]],[false,{\".RSscrollbar-measure\":false},[\"width:100px\",\"height:100px\",\"overflow:scroll\",\"position:absolute\",\"top:-9999px\"]],[false,{\".avada-has-rev-slider-styles .rev_slider_wrapper\":false},[\"transform:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":14,\"final_size\":0,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"rs-plugin-settings-inline-css\",\"type\":\"text\\/css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":134,\"function\":\"RevSliderFront::add_inline_css\",\"hook\":\"wp_footer\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"#rs-demo-id {}\",\"handle\":\"rs-plugin-settings\"}],\"priority\":70,\"hash\":\"d751713988987e9331980363e24189ce\",\"parse_time\":0.00037407875061035156,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":48,\"final_size\":43,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"color: #999999;\",\"class\":\"amp-wp-2111d24\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"871937f5f4b11c3f050c63c4c191ab63\",\"parse_time\":0.0005919933319091797,\"shake_time\":5.9604644775390625e-6,\"cached\":false,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-2111d24:not(#_#_#_#_#_)\":true},[\"color:#999\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":48,\"final_size\":46,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"color: #707070;\",\"class\":\"amp-wp-309e5e2\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"9bad1d2e6d311e743277b44894ea328c\",\"parse_time\":0.0006909370422363281,\"shake_time\":3.0994415283203125e-6,\"cached\":false,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-309e5e2:not(#_#_#_#_#_)\":true},[\"color:#707070\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":77,\"final_size\":71,\"element\":{\"name\":\"div\",\"attributes\":{\"id\":\"gtx-trans\",\"data-amp-original-style\":\"position: absolute; left: 1149px; top: 62px;\",\"class\":\"amp-wp-4c18308\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"2b2314161964ed48548b17d7f27de16a\",\"parse_time\":0.0008060932159423828,\"shake_time\":3.0994415283203125e-6,\"cached\":false,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-4c18308:not(#_#_#_#_#_)\":true},[\"position:absolute\",\"left:1149px\",\"top:62px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":48,\"final_size\":46,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"color: #707070;\",\"class\":\"amp-wp-309e5e2\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"9bad1d2e6d311e743277b44894ea328c\",\"parse_time\":0.0006909370422363281,\"shake_time\":5.0067901611328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-309e5e2:not(#_#_#_#_#_)\":true},[\"color:#707070\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":77,\"final_size\":71,\"element\":{\"name\":\"div\",\"attributes\":{\"id\":\"gtx-trans\",\"data-amp-original-style\":\"position: absolute; left: -46px; top: -10px;\",\"class\":\"amp-wp-2a0531c\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"bdc8f8748d10dfbedab91b7f8885390f\",\"parse_time\":0.0007739067077636719,\"shake_time\":1.0967254638671875e-5,\"cached\":false,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-2a0531c:not(#_#_#_#_#_)\":true},[\"position:absolute\",\"left:-46px\",\"top:-10px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":48,\"final_size\":46,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"color: #707070;\",\"class\":\"amp-wp-309e5e2\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"9bad1d2e6d311e743277b44894ea328c\",\"parse_time\":0.0006909370422363281,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-309e5e2:not(#_#_#_#_#_)\":true},[\"color:#707070\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":78,\"final_size\":72,\"element\":{\"name\":\"div\",\"attributes\":{\"id\":\"gtx-trans\",\"data-amp-original-style\":\"position: absolute; left: -113px; top: -10px;\",\"class\":\"amp-wp-47fc5b1\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"1eef9088d6ddb6fa4b3d5844f0d1f458\",\"parse_time\":0.0008518695831298828,\"shake_time\":1.9073486328125e-6,\"cached\":false,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-47fc5b1:not(#_#_#_#_#_)\":true},[\"position:absolute\",\"left:-113px\",\"top:-10px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":48,\"final_size\":46,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"color: #707070;\",\"class\":\"amp-wp-309e5e2\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"9bad1d2e6d311e743277b44894ea328c\",\"parse_time\":0.0006909370422363281,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-309e5e2:not(#_#_#_#_#_)\":true},[\"color:#707070\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":52,\"final_size\":50,\"element\":{\"name\":\"p\",\"attributes\":{\"data-amp-original-style\":\"margin-bottom: 0px;\",\"class\":\"amp-wp-7ba55e4\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"35534527ae6379dd803899435cc72b9a\",\"parse_time\":0.0007109642028808594,\"shake_time\":1.9073486328125e-6,\"cached\":false,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-7ba55e4:not(#_#_#_#_#_)\":true},[\"margin-bottom:0px\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":48,\"final_size\":46,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"color: #707070;\",\"class\":\"amp-wp-309e5e2\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"9bad1d2e6d311e743277b44894ea328c\",\"parse_time\":0.0006909370422363281,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-309e5e2:not(#_#_#_#_#_)\":true},[\"color:#707070\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":48,\"final_size\":43,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"color: #000000;\",\"class\":\"amp-wp-5443cfc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"efa99fc317e59bb34be0cc2634920fcc\",\"parse_time\":0.0006110668182373047,\"shake_time\":2.86102294921875e-6,\"cached\":false,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-5443cfc:not(#_#_#_#_#_)\":true},[\"color:#000\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":52,\"final_size\":50,\"element\":{\"name\":\"p\",\"attributes\":{\"data-amp-original-style\":\"margin-bottom: 0px;\",\"class\":\"amp-wp-7ba55e4\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"35534527ae6379dd803899435cc72b9a\",\"parse_time\":0.0007109642028808594,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-7ba55e4:not(#_#_#_#_#_)\":true},[\"margin-bottom:0px\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":48,\"final_size\":46,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"color: #707070;\",\"class\":\"amp-wp-309e5e2\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"9bad1d2e6d311e743277b44894ea328c\",\"parse_time\":0.0006909370422363281,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-309e5e2:not(#_#_#_#_#_)\":true},[\"color:#707070\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":48,\"final_size\":43,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"color: #000000;\",\"class\":\"amp-wp-5443cfc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"efa99fc317e59bb34be0cc2634920fcc\",\"parse_time\":0.0006110668182373047,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-5443cfc:not(#_#_#_#_#_)\":true},[\"color:#000\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":52,\"final_size\":50,\"element\":{\"name\":\"p\",\"attributes\":{\"data-amp-original-style\":\"margin-bottom: 0px;\",\"class\":\"amp-wp-7ba55e4\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"35534527ae6379dd803899435cc72b9a\",\"parse_time\":0.0007109642028808594,\"shake_time\":3.0994415283203125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-7ba55e4:not(#_#_#_#_#_)\":true},[\"margin-bottom:0px\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":48,\"final_size\":46,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"color: #707070;\",\"class\":\"amp-wp-309e5e2\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"9bad1d2e6d311e743277b44894ea328c\",\"parse_time\":0.0006909370422363281,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-309e5e2:not(#_#_#_#_#_)\":true},[\"color:#707070\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":48,\"final_size\":43,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"color: #000000;\",\"class\":\"amp-wp-5443cfc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"efa99fc317e59bb34be0cc2634920fcc\",\"parse_time\":0.0006110668182373047,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-5443cfc:not(#_#_#_#_#_)\":true},[\"color:#000\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":52,\"final_size\":50,\"element\":{\"name\":\"p\",\"attributes\":{\"data-amp-original-style\":\"margin-bottom: 0px;\",\"class\":\"amp-wp-7ba55e4\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"35534527ae6379dd803899435cc72b9a\",\"parse_time\":0.0007109642028808594,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-7ba55e4:not(#_#_#_#_#_)\":true},[\"margin-bottom:0px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":48,\"final_size\":46,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"color: #707070;\",\"class\":\"amp-wp-309e5e2\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"9bad1d2e6d311e743277b44894ea328c\",\"parse_time\":0.0006909370422363281,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-309e5e2:not(#_#_#_#_#_)\":true},[\"color:#707070\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":48,\"final_size\":43,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"color: #000000;\",\"class\":\"amp-wp-5443cfc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"efa99fc317e59bb34be0cc2634920fcc\",\"parse_time\":0.0006110668182373047,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-5443cfc:not(#_#_#_#_#_)\":true},[\"color:#000\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":80,\"final_size\":75,\"element\":{\"name\":\"div\",\"attributes\":{\"class\":\"swp-hidden-panel-wrap amp-wp-041e5bc\",\"data-amp-original-style\":\"display: none; visibility: collapse; opacity: 0\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":254,\"function\":\"SWP_Buttons_panel_Loader::add_static_panel_fallback_footer\",\"hook\":\"wp_footer\",\"priority\":20}],\"priority\":70,\"hash\":\"576b83c347727d51f3e6a84af74e369e\",\"parse_time\":0.0005772113800048828,\"shake_time\":1.2159347534179688e-5,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-041e5bc:not(#_#_#_#_#_)\":true},[\"display:none\",\"visibility:collapse\",\"opacity:0\"]]],\"included\":true}]'); INSERT INTO `wp_postmeta` VALUES (169800,4800,'_amp_stylesheets','[{\"group\":\"amp-custom\",\"original_size\":140936,\"final_size\":9064,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/bootstrap.min.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"834eec339f2b2b8368c90e8ee4e0c6d0\",\"parse_time\":1.5320749282836914,\"shake_time\":0.2860829830169678,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\":root\":true},[\"--blue:#007bff\",\"--indigo:#6610f2\",\"--purple:#6f42c1\",\"--pink:#e83e8c\",\"--red:#dc3545\",\"--orange:#fd7e14\",\"--yellow:#ffc107\",\"--green:#28a745\",\"--teal:#20c997\",\"--cyan:#17a2b8\",\"--white:#fff\",\"--gray:#6c757d\",\"--gray-dark:#343a40\",\"--primary:#007bff\",\"--secondary:#6c757d\",\"--success:#28a745\",\"--info:#17a2b8\",\"--warning:#ffc107\",\"--danger:#dc3545\",\"--light:#f8f9fa\",\"--dark:#343a40\",\"--breakpoint-xs:0\",\"--breakpoint-sm:576px\",\"--breakpoint-md:768px\",\"--breakpoint-lg:992px\",\"--breakpoint-xl:1200px\",\"--font-family-sans-serif:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,\\\"Liberation Mono\\\",\\\"Courier New\\\",monospace\"]],[true,{\"*\":true,\"::after\":true,\"::before\":true},[\"box-sizing:border-box\"]],[true,{\"html\":true},[\"font-family:sans-serif\",\"line-height:1.15\",\"-webkit-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\",\"-ms-overflow-style:scrollbar\",\"-webkit-tap-highlight-color:transparent\"]],[true,{\"article\":false,\"aside\":false,\"figcaption\":false,\"figure\":false,\"footer\":true,\"header\":true,\"hgroup\":false,\"main\":false,\"nav\":true,\"section\":true},[\"display:block\"]],[true,{\"body\":true},[\"margin:0\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"font-size:1rem\",\"font-weight:400\",\"line-height:1.5\",\"color:#212529\",\"text-align:left\",\"background-color:#fff\"]],[false,{\"[tabindex=\\\"-1\\\"]:focus:not(#_#_#_#_#_#_#_)\":false},[\"outline:0\"]],[false,{\"hr\":false},[\"box-sizing:content-box\",\"height:0\",\"overflow:visible\"]],[true,{\"h1\":true,\"h2\":false,\"h3\":true,\"h4\":false,\"h5\":true,\"h6\":true},[\"margin-top:0\",\"margin-bottom:.5rem\"]],[true,{\"p\":true},[\"margin-top:0\",\"margin-bottom:1rem\"]],[false,{\"abbr[data-original-title]\":false,\"abbr[title]\":false},[\"text-decoration:underline\",\"text-decoration:underline dotted\",\"-webkit-text-decoration:underline dotted\",\"cursor:help\",\"border-bottom:0\"]],[false,{\"address\":false},[\"margin-bottom:1rem\",\"font-style:normal\",\"line-height:inherit\"]],[true,{\"dl\":false,\"ol\":false,\"ul\":true},[\"margin-top:0\",\"margin-bottom:1rem\"]],[true,{\"ol ol\":false,\"ol ul\":false,\"ul ol\":false,\"ul ul\":true},[\"margin-bottom:0\"]],[false,{\"dt\":false},[\"font-weight:700\"]],[false,{\"dd\":false},[\"margin-bottom:.5rem\",\"margin-left:0\"]],[false,{\"blockquote\":false},[\"margin:0 0 1rem\"]],[false,{\"dfn\":false},[\"font-style:italic\"]],[true,{\"b\":false,\"strong\":true},[\"font-weight:bolder\"]],[false,{\"small\":false},[\"font-size:80%\"]],[false,{\"sub\":false,\"sup\":false},[\"position:relative\",\"font-size:75%\",\"line-height:0\",\"vertical-align:baseline\"]],[false,{\"sub\":false},[\"bottom:-.25em\"]],[false,{\"sup\":false},[\"top:-.5em\"]],[true,{\"a\":true},[\"color:#007bff\",\"text-decoration:none\",\"background-color:transparent\",\"-webkit-text-decoration-skip:objects\"]],[true,{\"a:hover\":true},[\"color:#0056b3\",\"text-decoration:underline\"]],[true,{\"a:not([href]):not([tabindex])\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"a:not([href]):not([tabindex]):focus\":true,\"a:not([href]):not([tabindex]):hover\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"a:not([href]):not([tabindex]):focus\":true},[\"outline:0\"]],[false,{\"code\":false,\"kbd\":false,\"pre\":false,\"samp\":false},[\"font-family:SFMono-Regular,Menlo,Monaco,Consolas,\\\"Liberation Mono\\\",\\\"Courier New\\\",monospace\",\"font-size:1em\"]],[false,{\"pre\":false},[\"margin-top:0\",\"margin-bottom:1rem\",\"overflow:auto\",\"-ms-overflow-style:scrollbar\"]],[false,{\"figure\":false},[\"margin:0 0 1rem\"]],[true,{\"amp-img\":true,\"amp-anim\":false},[\"vertical-align:middle\",\"border-style:none\"]],[false,{\"svg\":false},[\"overflow:hidden\",\"vertical-align:middle\"]],[false,{\"table\":false},[\"border-collapse:collapse\"]],[false,{\"caption\":false},[\"padding-top:.75rem\",\"padding-bottom:.75rem\",\"color:#6c757d\",\"text-align:left\",\"caption-side:bottom\"]],[false,{\"th\":false},[\"text-align:inherit\"]],[false,{\"label\":false},[\"display:inline-block\",\"margin-bottom:.5rem\"]],[true,{\"button\":true},[\"border-radius:0\"]],[true,{\"button:focus\":true},[\"outline:1px dotted\",\"outline:5px auto -webkit-focus-ring-color\"]],[true,{\"button\":true,\"input\":false,\"optgroup\":false,\"select\":false,\"textarea\":false},[\"margin:0\",\"font-family:inherit\",\"font-size:inherit\",\"line-height:inherit\"]],[true,{\"button\":true,\"input\":false},[\"overflow:visible\"]],[true,{\"button\":true,\"select\":false},[\"text-transform:none\"]],[true,{\"[type=reset]\":true,\"[type=submit]\":true,\"button\":true,\"html [type=button]\":true},[\"-webkit-appearance:button\"]],[true,{\"[type=button]::-moz-focus-inner\":true,\"[type=reset]::-moz-focus-inner\":true,\"[type=submit]::-moz-focus-inner\":true,\"button::-moz-focus-inner\":true},[\"padding:0\",\"border-style:none\"]],[false,{\"input[type=checkbox]\":false,\"input[type=radio]\":false},[\"box-sizing:border-box\",\"padding:0\"]],[false,{\"input[type=date]\":false,\"input[type=datetime-local]\":false,\"input[type=month]\":false,\"input[type=time]\":false},[\"-webkit-appearance:listbox\"]],[false,{\"textarea\":false},[\"overflow:auto\",\"resize:vertical\"]],[false,{\"fieldset\":false},[\"min-width:0\",\"padding:0\",\"margin:0\",\"border:0\"]],[false,{\"legend\":false},[\"display:block\",\"width:100%\",\"max-width:100%\",\"padding:0\",\"margin-bottom:.5rem\",\"font-size:1.5rem\",\"line-height:inherit\",\"color:inherit\",\"white-space:normal\"]],[false,{\"progress\":false},[\"vertical-align:baseline\"]],[true,{\"[type=number]::-webkit-inner-spin-button\":true,\"[type=number]::-webkit-outer-spin-button\":true},[\"height:auto\"]],[true,{\"[type=search]\":true},[\"outline-offset:-2px\",\"-webkit-appearance:none\"]],[true,{\"[type=search]::-webkit-search-cancel-button\":true,\"[type=search]::-webkit-search-decoration\":true},[\"-webkit-appearance:none\"]],[true,{\"::-webkit-file-upload-button\":true},[\"font:inherit\",\"-webkit-appearance:button\"]],[false,{\"output\":false},[\"display:inline-block\"]],[false,{\"summary\":false},[\"display:list-item\",\"cursor:pointer\"]],[false,{\"template\":false},[\"display:none\"]],[true,{\"[hidden]:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".h1\":false,\".h2\":false,\".h3\":false,\".h4\":false,\".h5\":false,\".h6\":false,\"h1\":true,\"h2\":false,\"h3\":true,\"h4\":false,\"h5\":true,\"h6\":true},[\"margin-bottom:.5rem\",\"font-family:inherit\",\"font-weight:500\",\"line-height:1.2\",\"color:inherit\"]],[true,{\".h1\":false,\"h1\":true},[\"font-size:2.5rem\"]],[false,{\".h2\":false,\"h2\":false},[\"font-size:2rem\"]],[true,{\".h3\":false,\"h3\":true},[\"font-size:1.75rem\"]],[false,{\".h4\":false,\"h4\":false},[\"font-size:1.5rem\"]],[true,{\".h5\":false,\"h5\":true},[\"font-size:1.25rem\"]],[true,{\".h6\":false,\"h6\":true},[\"font-size:1rem\"]],[false,{\".lead\":false},[\"font-size:1.25rem\",\"font-weight:300\"]],[false,{\".display-1\":false},[\"font-size:6rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\".display-2\":false},[\"font-size:5.5rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\".display-3\":false},[\"font-size:4.5rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\".display-4\":false},[\"font-size:3.5rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\"hr\":false},[\"margin-top:1rem\",\"margin-bottom:1rem\",\"border:0\",\"border-top:1px solid rgba(0,0,0,.1)\"]],[false,{\".small\":false,\"small\":false},[\"font-size:80%\",\"font-weight:400\"]],[false,{\".mark\":false,\"mark\":false},[\"padding:.2em\",\"background-color:#fcf8e3\"]],[false,{\".list-unstyled\":false},[\"padding-left:0\",\"list-style:none\"]],[false,{\".list-inline\":false},[\"padding-left:0\",\"list-style:none\"]],[false,{\".list-inline-item\":false},[\"display:inline-block\"]],[false,{\".list-inline-item:not(:last-child)\":false},[\"margin-right:.5rem\"]],[false,{\".initialism\":false},[\"font-size:90%\",\"text-transform:uppercase\"]],[false,{\".blockquote\":false},[\"margin-bottom:1rem\",\"font-size:1.25rem\"]],[false,{\".blockquote-footer\":false},[\"display:block\",\"font-size:80%\",\"color:#6c757d\"]],[false,{\".blockquote-footer::before\":false},[\"content:\\\"\\u2014\\u00a0\\\"\"]],[false,{\".img-fluid\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".img-thumbnail\":false},[\"padding:.25rem\",\"background-color:#fff\",\"border:1px solid #dee2e6\",\"border-radius:.25rem\",\"max-width:100%\",\"height:auto\"]],[false,{\".figure\":false},[\"display:inline-block\"]],[false,{\".figure-img\":false},[\"margin-bottom:.5rem\",\"line-height:1\"]],[false,{\".figure-caption\":false},[\"font-size:90%\",\"color:#6c757d\"]],[false,{\"code\":false},[\"font-size:87.5%\",\"color:#e83e8c\",\"word-break:break-word\"]],[false,{\"a>code\":false},[\"color:inherit\"]],[false,{\"kbd\":false},[\"padding:.2rem .4rem\",\"font-size:87.5%\",\"color:#fff\",\"background-color:#212529\",\"border-radius:.2rem\"]],[false,{\"kbd kbd\":false},[\"padding:0\",\"font-size:100%\",\"font-weight:700\"]],[false,{\"pre\":false},[\"display:block\",\"font-size:87.5%\",\"color:#212529\"]],[false,{\"pre code\":false},[\"font-size:inherit\",\"color:inherit\",\"word-break:normal\"]],[false,{\".pre-scrollable\":false},[\"max-height:340px\",\"overflow-y:scroll\"]],[true,{\".container\":true},[\"width:100%\",\"padding-right:15px\",\"padding-left:15px\",\"margin-right:auto\",\"margin-left:auto\"]],[true,\"@media (min-width:576px){\"],[true,{\".container\":true},[\"max-width:540px\"]],[true,\"}\"],[true,\"@media (min-width:768px){\"],[true,{\".container\":true},[\"max-width:720px\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[true,{\".container\":true},[\"max-width:960px\"]],[true,\"}\"],[true,\"@media (min-width:1200px){\"],[true,{\".container\":true},[\"max-width:1140px\"]],[true,\"}\"],[true,{\".container-fluid\":true},[\"width:100%\",\"padding-right:15px\",\"padding-left:15px\",\"margin-right:auto\",\"margin-left:auto\"]],[true,{\".row\":true},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"margin-right:-15px\",\"margin-left:-15px\"]],[false,{\".no-gutters\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".no-gutters>.col\":false,\".no-gutters>[class*=col-]\":false},[\"padding-right:0\",\"padding-left:0\"]],[true,{\".col\":false,\".col-1\":false,\".col-10\":true,\".col-11\":false,\".col-12\":true,\".col-2\":true,\".col-3\":false,\".col-4\":false,\".col-5\":false,\".col-6\":false,\".col-7\":false,\".col-8\":false,\".col-9\":false,\".col-auto\":false,\".col-lg\":false,\".col-lg-1\":false,\".col-lg-10\":false,\".col-lg-11\":false,\".col-lg-12\":true,\".col-lg-2\":true,\".col-lg-3\":true,\".col-lg-4\":true,\".col-lg-5\":false,\".col-lg-6\":true,\".col-lg-7\":false,\".col-lg-8\":true,\".col-lg-9\":true,\".col-lg-auto\":false,\".col-md\":false,\".col-md-1\":false,\".col-md-10\":true,\".col-md-11\":false,\".col-md-12\":true,\".col-md-2\":true,\".col-md-3\":false,\".col-md-4\":true,\".col-md-5\":false,\".col-md-6\":true,\".col-md-7\":false,\".col-md-8\":true,\".col-md-9\":false,\".col-md-auto\":false,\".col-sm\":false,\".col-sm-1\":false,\".col-sm-10\":false,\".col-sm-11\":false,\".col-sm-12\":true,\".col-sm-2\":false,\".col-sm-3\":false,\".col-sm-4\":false,\".col-sm-5\":false,\".col-sm-6\":false,\".col-sm-7\":false,\".col-sm-8\":false,\".col-sm-9\":false,\".col-sm-auto\":false,\".col-xl\":false,\".col-xl-1\":false,\".col-xl-10\":true,\".col-xl-11\":false,\".col-xl-12\":false,\".col-xl-2\":true,\".col-xl-3\":false,\".col-xl-4\":false,\".col-xl-5\":false,\".col-xl-6\":false,\".col-xl-7\":false,\".col-xl-8\":false,\".col-xl-9\":false,\".col-xl-auto\":false},[\"position:relative\",\"width:100%\",\"min-height:1px\",\"padding-right:15px\",\"padding-left:15px\"]],[false,{\".col\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[false,{\".col-4\":false},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[false,{\".col-6\":false},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[true,{\".col-10\":true},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-3\":false},[\"margin-left:25%\"]],[false,{\".offset-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-6\":false},[\"margin-left:50%\"]],[false,{\".offset-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-9\":false},[\"margin-left:75%\"]],[false,{\".offset-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-11\":false},[\"margin-left:91.666667%\"]],[true,\"@media (min-width:576px){\"],[false,{\".col-sm\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-sm-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-sm-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[false,{\".col-sm-2\":false},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-sm-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[false,{\".col-sm-4\":false},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-sm-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[false,{\".col-sm-6\":false},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-sm-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-sm-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-sm-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[false,{\".col-sm-10\":false},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-sm-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-sm-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-sm-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-sm-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-sm-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-sm-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-sm-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-sm-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-sm-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-sm-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-sm-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-sm-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-sm-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-sm-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-sm-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-sm-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-sm-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-sm-0\":false},[\"margin-left:0\"]],[false,{\".offset-sm-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-sm-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-sm-3\":false},[\"margin-left:25%\"]],[false,{\".offset-sm-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-sm-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-sm-6\":false},[\"margin-left:50%\"]],[false,{\".offset-sm-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-sm-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-sm-9\":false},[\"margin-left:75%\"]],[false,{\".offset-sm-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-sm-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[true,\"@media (min-width:768px){\"],[false,{\".col-md\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-md-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-md-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-md-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-md-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[true,{\".col-md-4\":true},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-md-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[true,{\".col-md-6\":true},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-md-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[true,{\".col-md-8\":true},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-md-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[true,{\".col-md-10\":true},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-md-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-md-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-md-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-md-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-md-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-md-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-md-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-md-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-md-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-md-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-md-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-md-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-md-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-md-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-md-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-md-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-md-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-md-0\":false},[\"margin-left:0\"]],[false,{\".offset-md-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-md-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-md-3\":false},[\"margin-left:25%\"]],[false,{\".offset-md-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-md-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-md-6\":false},[\"margin-left:50%\"]],[false,{\".offset-md-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-md-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-md-9\":false},[\"margin-left:75%\"]],[false,{\".offset-md-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-md-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[false,{\".col-lg\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-lg-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-lg-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-lg-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[true,{\".col-lg-3\":true},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[true,{\".col-lg-4\":true},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-lg-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[true,{\".col-lg-6\":true},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-lg-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[true,{\".col-lg-8\":true},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[true,{\".col-lg-9\":true},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[false,{\".col-lg-10\":false},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-lg-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-lg-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-lg-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-lg-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-lg-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-lg-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-lg-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-lg-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-lg-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-lg-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-lg-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-lg-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-lg-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-lg-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-lg-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-lg-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-lg-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-lg-0\":false},[\"margin-left:0\"]],[false,{\".offset-lg-1\":false},[\"margin-left:8.333333%\"]],[true,{\".offset-lg-2\":true},[\"margin-left:16.666667%\"]],[false,{\".offset-lg-3\":false},[\"margin-left:25%\"]],[false,{\".offset-lg-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-lg-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-lg-6\":false},[\"margin-left:50%\"]],[false,{\".offset-lg-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-lg-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-lg-9\":false},[\"margin-left:75%\"]],[false,{\".offset-lg-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-lg-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[true,\"@media (min-width:1200px){\"],[false,{\".col-xl\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-xl-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-xl-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-xl-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-xl-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[false,{\".col-xl-4\":false},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-xl-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[false,{\".col-xl-6\":false},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-xl-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-xl-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-xl-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[true,{\".col-xl-10\":true},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-xl-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[false,{\".col-xl-12\":false},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-xl-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-xl-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-xl-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-xl-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-xl-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-xl-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-xl-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-xl-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-xl-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-xl-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-xl-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-xl-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-xl-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-xl-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-xl-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-xl-0\":false},[\"margin-left:0\"]],[false,{\".offset-xl-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-xl-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-xl-3\":false},[\"margin-left:25%\"]],[false,{\".offset-xl-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-xl-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-xl-6\":false},[\"margin-left:50%\"]],[false,{\".offset-xl-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-xl-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-xl-9\":false},[\"margin-left:75%\"]],[false,{\".offset-xl-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-xl-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[false,{\".table\":false},[\"width:100%\",\"margin-bottom:1rem\",\"background-color:transparent\"]],[false,{\".table td\":false,\".table th\":false},[\"padding:.75rem\",\"vertical-align:top\",\"border-top:1px solid #dee2e6\"]],[false,{\".table thead th\":false},[\"vertical-align:bottom\",\"border-bottom:2px solid #dee2e6\"]],[false,{\".table tbody+tbody\":false},[\"border-top:2px solid #dee2e6\"]],[false,{\".table .table\":false},[\"background-color:#fff\"]],[false,{\".table-sm td\":false,\".table-sm th\":false},[\"padding:.3rem\"]],[false,{\".table-bordered\":false},[\"border:1px solid #dee2e6\"]],[false,{\".table-bordered td\":false,\".table-bordered th\":false},[\"border:1px solid #dee2e6\"]],[false,{\".table-bordered thead td\":false,\".table-bordered thead th\":false},[\"border-bottom-width:2px\"]],[false,{\".table-borderless tbody+tbody\":false,\".table-borderless td\":false,\".table-borderless th\":false,\".table-borderless thead th\":false},[\"border:0\"]],[false,{\".table-striped tbody tr:nth-of-type(odd)\":false},[\"background-color:rgba(0,0,0,.05)\"]],[false,{\".table-hover tbody tr:hover\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table-primary\":false,\".table-primary>td\":false,\".table-primary>th\":false},[\"background-color:#b8daff\"]],[false,{\".table-hover .table-primary:hover\":false},[\"background-color:#9fcdff\"]],[false,{\".table-hover .table-primary:hover>td\":false,\".table-hover .table-primary:hover>th\":false},[\"background-color:#9fcdff\"]],[false,{\".table-secondary\":false,\".table-secondary>td\":false,\".table-secondary>th\":false},[\"background-color:#d6d8db\"]],[false,{\".table-hover .table-secondary:hover\":false},[\"background-color:#c8cbcf\"]],[false,{\".table-hover .table-secondary:hover>td\":false,\".table-hover .table-secondary:hover>th\":false},[\"background-color:#c8cbcf\"]],[false,{\".table-success\":false,\".table-success>td\":false,\".table-success>th\":false},[\"background-color:#c3e6cb\"]],[false,{\".table-hover .table-success:hover\":false},[\"background-color:#b1dfbb\"]],[false,{\".table-hover .table-success:hover>td\":false,\".table-hover .table-success:hover>th\":false},[\"background-color:#b1dfbb\"]],[false,{\".table-info\":false,\".table-info>td\":false,\".table-info>th\":false},[\"background-color:#bee5eb\"]],[false,{\".table-hover .table-info:hover\":false},[\"background-color:#abdde5\"]],[false,{\".table-hover .table-info:hover>td\":false,\".table-hover .table-info:hover>th\":false},[\"background-color:#abdde5\"]],[false,{\".table-warning\":false,\".table-warning>td\":false,\".table-warning>th\":false},[\"background-color:#ffeeba\"]],[false,{\".table-hover .table-warning:hover\":false},[\"background-color:#ffe8a1\"]],[false,{\".table-hover .table-warning:hover>td\":false,\".table-hover .table-warning:hover>th\":false},[\"background-color:#ffe8a1\"]],[false,{\".table-danger\":false,\".table-danger>td\":false,\".table-danger>th\":false},[\"background-color:#f5c6cb\"]],[false,{\".table-hover .table-danger:hover\":false},[\"background-color:#f1b0b7\"]],[false,{\".table-hover .table-danger:hover>td\":false,\".table-hover .table-danger:hover>th\":false},[\"background-color:#f1b0b7\"]],[false,{\".table-light\":false,\".table-light>td\":false,\".table-light>th\":false},[\"background-color:#fdfdfe\"]],[false,{\".table-hover .table-light:hover\":false},[\"background-color:#ececf6\"]],[false,{\".table-hover .table-light:hover>td\":false,\".table-hover .table-light:hover>th\":false},[\"background-color:#ececf6\"]],[false,{\".table-dark\":false,\".table-dark>td\":false,\".table-dark>th\":false},[\"background-color:#c6c8ca\"]],[false,{\".table-hover .table-dark:hover\":false},[\"background-color:#b9bbbe\"]],[false,{\".table-hover .table-dark:hover>td\":false,\".table-hover .table-dark:hover>th\":false},[\"background-color:#b9bbbe\"]],[false,{\".table-active\":false,\".table-active>td\":false,\".table-active>th\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table-hover .table-active:hover\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table-hover .table-active:hover>td\":false,\".table-hover .table-active:hover>th\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table .thead-dark th\":false},[\"color:#fff\",\"background-color:#212529\",\"border-color:#32383e\"]],[false,{\".table .thead-light th\":false},[\"color:#495057\",\"background-color:#e9ecef\",\"border-color:#dee2e6\"]],[false,{\".table-dark\":false},[\"color:#fff\",\"background-color:#212529\"]],[false,{\".table-dark td\":false,\".table-dark th\":false,\".table-dark thead th\":false},[\"border-color:#32383e\"]],[false,{\".table-dark.table-bordered\":false},[\"border:0\"]],[false,{\".table-dark.table-striped tbody tr:nth-of-type(odd)\":false},[\"background-color:rgba(255,255,255,.05)\"]],[false,{\".table-dark.table-hover tbody tr:hover\":false},[\"background-color:rgba(255,255,255,.075)\"]],[false,\"@media (max-width:575.98px){\"],[false,{\".table-responsive-sm\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-sm>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:767.98px){\"],[false,{\".table-responsive-md\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-md>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:991.98px){\"],[false,{\".table-responsive-lg\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-lg>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:1199.98px){\"],[false,{\".table-responsive-xl\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-xl>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,{\".table-responsive\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive>.table-bordered\":false},[\"border:0\"]],[false,{\".form-control\":false},[\"display:block\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"padding:.375rem .75rem\",\"font-size:1rem\",\"line-height:1.5\",\"color:#495057\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid #ced4da\",\"border-radius:.25rem\",\"transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".form-control\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".form-control::-ms-expand\":false},[\"background-color:transparent\",\"border:0\"]],[false,{\".form-control:focus\":false},[\"color:#495057\",\"background-color:#fff\",\"border-color:#80bdff\",\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".form-control::-webkit-input-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control::-moz-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control:-ms-input-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control::-ms-input-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control::placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control:disabled\":false,\".form-control[readonly]\":false},[\"background-color:#e9ecef\",\"opacity:1\"]],[false,{\"select.form-control:focus::-ms-value\":false},[\"color:#495057\",\"background-color:#fff\"]],[false,{\".form-control-file\":false,\".form-control-range\":false},[\"display:block\",\"width:100%\"]],[false,{\".col-form-label\":false},[\"padding-top:calc(.375rem + 1px)\",\"padding-bottom:calc(.375rem + 1px)\",\"margin-bottom:0\",\"font-size:inherit\",\"line-height:1.5\"]],[false,{\".col-form-label-lg\":false},[\"padding-top:calc(.5rem + 1px)\",\"padding-bottom:calc(.5rem + 1px)\",\"font-size:1.25rem\",\"line-height:1.5\"]],[false,{\".col-form-label-sm\":false},[\"padding-top:calc(.25rem + 1px)\",\"padding-bottom:calc(.25rem + 1px)\",\"font-size:.875rem\",\"line-height:1.5\"]],[false,{\".form-control-plaintext\":false},[\"display:block\",\"width:100%\",\"padding-top:.375rem\",\"padding-bottom:.375rem\",\"margin-bottom:0\",\"line-height:1.5\",\"color:#212529\",\"background-color:transparent\",\"border:solid transparent\",\"border-width:1px 0\"]],[false,{\".form-control-plaintext.form-control-lg\":false,\".form-control-plaintext.form-control-sm\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,{\".form-control-sm\":false},[\"height:calc(1.8125rem + 2px)\",\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\",\"border-radius:.2rem\"]],[false,{\".form-control-lg\":false},[\"height:calc(2.875rem + 2px)\",\"padding:.5rem 1rem\",\"font-size:1.25rem\",\"line-height:1.5\",\"border-radius:.3rem\"]],[false,{\"select.form-control[multiple]\":false,\"select.form-control[size]\":false},[\"height:auto\"]],[false,{\"textarea.form-control\":false},[\"height:auto\"]],[false,{\".form-group\":false},[\"margin-bottom:1rem\"]],[false,{\".form-text\":false},[\"display:block\",\"margin-top:.25rem\"]],[false,{\".form-row\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"margin-right:-5px\",\"margin-left:-5px\"]],[false,{\".form-row>.col\":false,\".form-row>[class*=col-]\":false},[\"padding-right:5px\",\"padding-left:5px\"]],[false,{\".form-check\":false},[\"position:relative\",\"display:block\",\"padding-left:1.25rem\"]],[false,{\".form-check-input\":false},[\"position:absolute\",\"margin-top:.3rem\",\"margin-left:-1.25rem\"]],[false,{\".form-check-input:disabled~.form-check-label\":false},[\"color:#6c757d\"]],[false,{\".form-check-label\":false},[\"margin-bottom:0\"]],[false,{\".form-check-inline\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"-ms-flex-align:center\",\"align-items:center\",\"padding-left:0\",\"margin-right:.75rem\"]],[false,{\".form-check-inline .form-check-input\":false},[\"position:static\",\"margin-top:0\",\"margin-right:.3125rem\",\"margin-left:0\"]],[false,{\".valid-feedback\":false},[\"display:none\",\"width:100%\",\"margin-top:.25rem\",\"font-size:80%\",\"color:#28a745\"]],[false,{\".valid-tooltip\":false},[\"position:absolute\",\"top:100%\",\"z-index:5\",\"display:none\",\"max-width:100%\",\"padding:.25rem .5rem\",\"margin-top:.1rem\",\"font-size:.875rem\",\"line-height:1.5\",\"color:#fff\",\"background-color:rgba(40,167,69,.9)\",\"border-radius:.25rem\"]],[false,{\".custom-select.is-valid\":false,\".form-control.is-valid\":false,\".was-validated .custom-select:valid\":false,\".was-validated .form-control:valid\":false},[\"border-color:#28a745\"]],[false,{\".custom-select.is-valid:focus\":false,\".form-control.is-valid:focus\":false,\".was-validated .custom-select:valid:focus\":false,\".was-validated .form-control:valid:focus\":false},[\"border-color:#28a745\",\"box-shadow:0 0 0 .2rem rgba(40,167,69,.25)\"]],[false,{\".custom-select.is-valid~.valid-feedback\":false,\".custom-select.is-valid~.valid-tooltip\":false,\".form-control.is-valid~.valid-feedback\":false,\".form-control.is-valid~.valid-tooltip\":false,\".was-validated .custom-select:valid~.valid-feedback\":false,\".was-validated .custom-select:valid~.valid-tooltip\":false,\".was-validated .form-control:valid~.valid-feedback\":false,\".was-validated .form-control:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".form-control-file.is-valid~.valid-feedback\":false,\".form-control-file.is-valid~.valid-tooltip\":false,\".was-validated .form-control-file:valid~.valid-feedback\":false,\".was-validated .form-control-file:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".form-check-input.is-valid~.form-check-label\":false,\".was-validated .form-check-input:valid~.form-check-label\":false},[\"color:#28a745\"]],[false,{\".form-check-input.is-valid~.valid-feedback\":false,\".form-check-input.is-valid~.valid-tooltip\":false,\".was-validated .form-check-input:valid~.valid-feedback\":false,\".was-validated .form-check-input:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-valid~.custom-control-label\":false,\".was-validated .custom-control-input:valid~.custom-control-label\":false},[\"color:#28a745\"]],[false,{\".custom-control-input.is-valid~.custom-control-label::before\":false,\".was-validated .custom-control-input:valid~.custom-control-label::before\":false},[\"background-color:#71dd8a\"]],[false,{\".custom-control-input.is-valid~.valid-feedback\":false,\".custom-control-input.is-valid~.valid-tooltip\":false,\".was-validated .custom-control-input:valid~.valid-feedback\":false,\".was-validated .custom-control-input:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-valid:checked~.custom-control-label::before\":false,\".was-validated .custom-control-input:valid:checked~.custom-control-label::before\":false},[\"background-color:#34ce57\"]],[false,{\".custom-control-input.is-valid:focus~.custom-control-label::before\":false,\".was-validated .custom-control-input:valid:focus~.custom-control-label::before\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(40,167,69,.25)\"]],[false,{\".custom-file-input.is-valid~.custom-file-label\":false,\".was-validated .custom-file-input:valid~.custom-file-label\":false},[\"border-color:#28a745\"]],[false,{\".custom-file-input.is-valid~.custom-file-label::after\":false,\".was-validated .custom-file-input:valid~.custom-file-label::after\":false},[\"border-color:inherit\"]],[false,{\".custom-file-input.is-valid~.valid-feedback\":false,\".custom-file-input.is-valid~.valid-tooltip\":false,\".was-validated .custom-file-input:valid~.valid-feedback\":false,\".was-validated .custom-file-input:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".custom-file-input.is-valid:focus~.custom-file-label\":false,\".was-validated .custom-file-input:valid:focus~.custom-file-label\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.25)\"]],[false,{\".invalid-feedback\":false},[\"display:none\",\"width:100%\",\"margin-top:.25rem\",\"font-size:80%\",\"color:#dc3545\"]],[false,{\".invalid-tooltip\":false},[\"position:absolute\",\"top:100%\",\"z-index:5\",\"display:none\",\"max-width:100%\",\"padding:.25rem .5rem\",\"margin-top:.1rem\",\"font-size:.875rem\",\"line-height:1.5\",\"color:#fff\",\"background-color:rgba(220,53,69,.9)\",\"border-radius:.25rem\"]],[false,{\".custom-select.is-invalid\":false,\".form-control.is-invalid\":false,\".was-validated .custom-select:invalid\":false,\".was-validated .form-control:invalid\":false},[\"border-color:#dc3545\"]],[false,{\".custom-select.is-invalid:focus\":false,\".form-control.is-invalid:focus\":false,\".was-validated .custom-select:invalid:focus\":false,\".was-validated .form-control:invalid:focus\":false},[\"border-color:#dc3545\",\"box-shadow:0 0 0 .2rem rgba(220,53,69,.25)\"]],[false,{\".custom-select.is-invalid~.invalid-feedback\":false,\".custom-select.is-invalid~.invalid-tooltip\":false,\".form-control.is-invalid~.invalid-feedback\":false,\".form-control.is-invalid~.invalid-tooltip\":false,\".was-validated .custom-select:invalid~.invalid-feedback\":false,\".was-validated .custom-select:invalid~.invalid-tooltip\":false,\".was-validated .form-control:invalid~.invalid-feedback\":false,\".was-validated .form-control:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".form-control-file.is-invalid~.invalid-feedback\":false,\".form-control-file.is-invalid~.invalid-tooltip\":false,\".was-validated .form-control-file:invalid~.invalid-feedback\":false,\".was-validated .form-control-file:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".form-check-input.is-invalid~.form-check-label\":false,\".was-validated .form-check-input:invalid~.form-check-label\":false},[\"color:#dc3545\"]],[false,{\".form-check-input.is-invalid~.invalid-feedback\":false,\".form-check-input.is-invalid~.invalid-tooltip\":false,\".was-validated .form-check-input:invalid~.invalid-feedback\":false,\".was-validated .form-check-input:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-invalid~.custom-control-label\":false,\".was-validated .custom-control-input:invalid~.custom-control-label\":false},[\"color:#dc3545\"]],[false,{\".custom-control-input.is-invalid~.custom-control-label::before\":false,\".was-validated .custom-control-input:invalid~.custom-control-label::before\":false},[\"background-color:#efa2a9\"]],[false,{\".custom-control-input.is-invalid~.invalid-feedback\":false,\".custom-control-input.is-invalid~.invalid-tooltip\":false,\".was-validated .custom-control-input:invalid~.invalid-feedback\":false,\".was-validated .custom-control-input:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-invalid:checked~.custom-control-label::before\":false,\".was-validated .custom-control-input:invalid:checked~.custom-control-label::before\":false},[\"background-color:#e4606d\"]],[false,{\".custom-control-input.is-invalid:focus~.custom-control-label::before\":false,\".was-validated .custom-control-input:invalid:focus~.custom-control-label::before\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(220,53,69,.25)\"]],[false,{\".custom-file-input.is-invalid~.custom-file-label\":false,\".was-validated .custom-file-input:invalid~.custom-file-label\":false},[\"border-color:#dc3545\"]],[false,{\".custom-file-input.is-invalid~.custom-file-label::after\":false,\".was-validated .custom-file-input:invalid~.custom-file-label::after\":false},[\"border-color:inherit\"]],[false,{\".custom-file-input.is-invalid~.invalid-feedback\":false,\".custom-file-input.is-invalid~.invalid-tooltip\":false,\".was-validated .custom-file-input:invalid~.invalid-feedback\":false,\".was-validated .custom-file-input:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".custom-file-input.is-invalid:focus~.custom-file-label\":false,\".was-validated .custom-file-input:invalid:focus~.custom-file-label\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.25)\"]],[false,{\".form-inline\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".form-inline .form-check\":false},[\"width:100%\"]],[false,\"@media (min-width:576px){\"],[false,{\".form-inline label\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"margin-bottom:0\"]],[false,{\".form-inline .form-group\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\",\"-ms-flex-align:center\",\"align-items:center\",\"margin-bottom:0\"]],[false,{\".form-inline .form-control\":false},[\"display:inline-block\",\"width:auto\",\"vertical-align:middle\"]],[false,{\".form-inline .form-control-plaintext\":false},[\"display:inline-block\"]],[false,{\".form-inline .custom-select\":false,\".form-inline .input-group\":false},[\"width:auto\"]],[false,{\".form-inline .form-check\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"width:auto\",\"padding-left:0\"]],[false,{\".form-inline .form-check-input\":false},[\"position:relative\",\"margin-top:0\",\"margin-right:.25rem\",\"margin-left:0\"]],[false,{\".form-inline .custom-control\":false},[\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".form-inline .custom-control-label\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".btn\":false},[\"display:inline-block\",\"font-weight:400\",\"text-align:center\",\"white-space:nowrap\",\"vertical-align:middle\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\",\"border:1px solid transparent\",\"padding:.375rem .75rem\",\"font-size:1rem\",\"line-height:1.5\",\"border-radius:.25rem\",\"transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".btn\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".btn:focus\":false,\".btn:hover\":false},[\"text-decoration:none\"]],[false,{\".btn:focus-within\":false,\".btn:focus\":false},[\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".btn.disabled\":false,\".btn:disabled\":false},[\"opacity:.65\"]],[false,{\".btn:not(:disabled):not(.disabled)\":false},[\"cursor:pointer\"]],[false,{\"a.btn.disabled\":false,\"fieldset:disabled a.btn\":false},[\"pointer-events:none\"]],[false,{\".btn-primary\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-primary:hover\":false},[\"color:#fff\",\"background-color:#0069d9\",\"border-color:#0062cc\"]],[false,{\".btn-primary:focus-within\":false,\".btn-primary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-primary.disabled\":false,\".btn-primary:disabled\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-primary:not(:disabled):not(.disabled).active\":false,\".btn-primary:not(:disabled):not(.disabled):active\":false,\".show>.btn-primary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#0062cc\",\"border-color:#005cbf\"]],[false,{\".btn-primary:not(:disabled):not(.disabled).active:focus\":false,\".btn-primary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-primary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-secondary\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-secondary:hover\":false},[\"color:#fff\",\"background-color:#5a6268\",\"border-color:#545b62\"]],[false,{\".btn-secondary:focus-within\":false,\".btn-secondary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-secondary.disabled\":false,\".btn-secondary:disabled\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-secondary:not(:disabled):not(.disabled).active\":false,\".btn-secondary:not(:disabled):not(.disabled):active\":false,\".show>.btn-secondary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#545b62\",\"border-color:#4e555b\"]],[false,{\".btn-secondary:not(:disabled):not(.disabled).active:focus\":false,\".btn-secondary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-secondary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-success\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-success:hover\":false},[\"color:#fff\",\"background-color:#218838\",\"border-color:#1e7e34\"]],[false,{\".btn-success:focus-within\":false,\".btn-success:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-success.disabled\":false,\".btn-success:disabled\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-success:not(:disabled):not(.disabled).active\":false,\".btn-success:not(:disabled):not(.disabled):active\":false,\".show>.btn-success.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#1e7e34\",\"border-color:#1c7430\"]],[false,{\".btn-success:not(:disabled):not(.disabled).active:focus\":false,\".btn-success:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-success.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-info\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-info:hover\":false},[\"color:#fff\",\"background-color:#138496\",\"border-color:#117a8b\"]],[false,{\".btn-info:focus-within\":false,\".btn-info:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-info.disabled\":false,\".btn-info:disabled\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-info:not(:disabled):not(.disabled).active\":false,\".btn-info:not(:disabled):not(.disabled):active\":false,\".show>.btn-info.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#117a8b\",\"border-color:#10707f\"]],[false,{\".btn-info:not(:disabled):not(.disabled).active:focus\":false,\".btn-info:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-info.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-warning\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-warning:hover\":false},[\"color:#212529\",\"background-color:#e0a800\",\"border-color:#d39e00\"]],[false,{\".btn-warning:focus-within\":false,\".btn-warning:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-warning.disabled\":false,\".btn-warning:disabled\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-warning:not(:disabled):not(.disabled).active\":false,\".btn-warning:not(:disabled):not(.disabled):active\":false,\".show>.btn-warning.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#d39e00\",\"border-color:#c69500\"]],[false,{\".btn-warning:not(:disabled):not(.disabled).active:focus\":false,\".btn-warning:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-warning.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-danger\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-danger:hover\":false},[\"color:#fff\",\"background-color:#c82333\",\"border-color:#bd2130\"]],[false,{\".btn-danger:focus-within\":false,\".btn-danger:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-danger.disabled\":false,\".btn-danger:disabled\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-danger:not(:disabled):not(.disabled).active\":false,\".btn-danger:not(:disabled):not(.disabled):active\":false,\".show>.btn-danger.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#bd2130\",\"border-color:#b21f2d\"]],[false,{\".btn-danger:not(:disabled):not(.disabled).active:focus\":false,\".btn-danger:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-danger.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-light\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-light:hover\":false},[\"color:#212529\",\"background-color:#e2e6ea\",\"border-color:#dae0e5\"]],[false,{\".btn-light:focus-within\":false,\".btn-light:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-light.disabled\":false,\".btn-light:disabled\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-light:not(:disabled):not(.disabled).active\":false,\".btn-light:not(:disabled):not(.disabled):active\":false,\".show>.btn-light.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#dae0e5\",\"border-color:#d3d9df\"]],[false,{\".btn-light:not(:disabled):not(.disabled).active:focus\":false,\".btn-light:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-light.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-dark\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-dark:hover\":false},[\"color:#fff\",\"background-color:#23272b\",\"border-color:#1d2124\"]],[false,{\".btn-dark:focus-within\":false,\".btn-dark:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-dark.disabled\":false,\".btn-dark:disabled\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-dark:not(:disabled):not(.disabled).active\":false,\".btn-dark:not(:disabled):not(.disabled):active\":false,\".show>.btn-dark.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#1d2124\",\"border-color:#171a1d\"]],[false,{\".btn-dark:not(:disabled):not(.disabled).active:focus\":false,\".btn-dark:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-dark.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-outline-primary\":false},[\"color:#007bff\",\"background-color:transparent\",\"background-image:none\",\"border-color:#007bff\"]],[false,{\".btn-outline-primary:hover\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-outline-primary:focus-within\":false,\".btn-outline-primary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-outline-primary.disabled\":false,\".btn-outline-primary:disabled\":false},[\"color:#007bff\",\"background-color:transparent\"]],[false,{\".btn-outline-primary:not(:disabled):not(.disabled).active\":false,\".btn-outline-primary:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-primary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-outline-primary:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-primary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-primary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-outline-secondary\":false},[\"color:#6c757d\",\"background-color:transparent\",\"background-image:none\",\"border-color:#6c757d\"]],[false,{\".btn-outline-secondary:hover\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-outline-secondary:focus-within\":false,\".btn-outline-secondary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-outline-secondary.disabled\":false,\".btn-outline-secondary:disabled\":false},[\"color:#6c757d\",\"background-color:transparent\"]],[false,{\".btn-outline-secondary:not(:disabled):not(.disabled).active\":false,\".btn-outline-secondary:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-secondary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-outline-secondary:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-secondary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-secondary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-outline-success\":false},[\"color:#28a745\",\"background-color:transparent\",\"background-image:none\",\"border-color:#28a745\"]],[false,{\".btn-outline-success:hover\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-outline-success:focus-within\":false,\".btn-outline-success:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-outline-success.disabled\":false,\".btn-outline-success:disabled\":false},[\"color:#28a745\",\"background-color:transparent\"]],[false,{\".btn-outline-success:not(:disabled):not(.disabled).active\":false,\".btn-outline-success:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-success.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-outline-success:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-success:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-success.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-outline-info\":false},[\"color:#17a2b8\",\"background-color:transparent\",\"background-image:none\",\"border-color:#17a2b8\"]],[false,{\".btn-outline-info:hover\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-outline-info:focus-within\":false,\".btn-outline-info:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-outline-info.disabled\":false,\".btn-outline-info:disabled\":false},[\"color:#17a2b8\",\"background-color:transparent\"]],[false,{\".btn-outline-info:not(:disabled):not(.disabled).active\":false,\".btn-outline-info:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-info.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-outline-info:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-info:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-info.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-outline-warning\":false},[\"color:#ffc107\",\"background-color:transparent\",\"background-image:none\",\"border-color:#ffc107\"]],[false,{\".btn-outline-warning:hover\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-outline-warning:focus-within\":false,\".btn-outline-warning:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-outline-warning.disabled\":false,\".btn-outline-warning:disabled\":false},[\"color:#ffc107\",\"background-color:transparent\"]],[false,{\".btn-outline-warning:not(:disabled):not(.disabled).active\":false,\".btn-outline-warning:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-warning.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-outline-warning:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-warning:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-warning.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-outline-danger\":false},[\"color:#dc3545\",\"background-color:transparent\",\"background-image:none\",\"border-color:#dc3545\"]],[false,{\".btn-outline-danger:hover\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-outline-danger:focus-within\":false,\".btn-outline-danger:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-outline-danger.disabled\":false,\".btn-outline-danger:disabled\":false},[\"color:#dc3545\",\"background-color:transparent\"]],[false,{\".btn-outline-danger:not(:disabled):not(.disabled).active\":false,\".btn-outline-danger:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-danger.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-outline-danger:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-danger:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-danger.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-outline-light\":false},[\"color:#f8f9fa\",\"background-color:transparent\",\"background-image:none\",\"border-color:#f8f9fa\"]],[false,{\".btn-outline-light:hover\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-outline-light:focus-within\":false,\".btn-outline-light:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-outline-light.disabled\":false,\".btn-outline-light:disabled\":false},[\"color:#f8f9fa\",\"background-color:transparent\"]],[false,{\".btn-outline-light:not(:disabled):not(.disabled).active\":false,\".btn-outline-light:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-light.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-outline-light:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-light:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-light.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-outline-dark\":false},[\"color:#343a40\",\"background-color:transparent\",\"background-image:none\",\"border-color:#343a40\"]],[false,{\".btn-outline-dark:hover\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-outline-dark:focus-within\":false,\".btn-outline-dark:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-outline-dark.disabled\":false,\".btn-outline-dark:disabled\":false},[\"color:#343a40\",\"background-color:transparent\"]],[false,{\".btn-outline-dark:not(:disabled):not(.disabled).active\":false,\".btn-outline-dark:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-dark.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-outline-dark:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-dark:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-dark.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-link\":false},[\"font-weight:400\",\"color:#007bff\",\"background-color:transparent\"]],[false,{\".btn-link:hover\":false},[\"color:#0056b3\",\"text-decoration:underline\",\"background-color:transparent\",\"border-color:transparent\"]],[false,{\".btn-link:focus-within\":false,\".btn-link:focus\":false},[\"text-decoration:underline\",\"border-color:transparent\",\"box-shadow:none\"]],[false,{\".btn-link.disabled\":false,\".btn-link:disabled\":false},[\"color:#6c757d\",\"pointer-events:none\"]],[false,{\".btn-group-lg>.btn\":false,\".btn-lg\":false},[\"padding:.5rem 1rem\",\"font-size:1.25rem\",\"line-height:1.5\",\"border-radius:.3rem\"]],[false,{\".btn-group-sm>.btn\":false,\".btn-sm\":false},[\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\",\"border-radius:.2rem\"]],[false,{\".btn-block\":false},[\"display:block\",\"width:100%\"]],[false,{\".btn-block+.btn-block\":false},[\"margin-top:.5rem\"]],[false,{\"input[type=button].btn-block\":false,\"input[type=reset].btn-block\":false,\"input[type=submit].btn-block\":false},[\"width:100%\"]],[false,{\".fade\":false},[\"transition:opacity .15s linear\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".fade\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".fade:not(.show)\":false},[\"opacity:0\"]],[true,{\".collapse:not(.show)\":true},[\"display:none\"]],[false,{\".collapsing\":false},[\"position:relative\",\"height:0\",\"overflow:hidden\",\"transition:height .35s ease\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".collapsing\":false},[\"transition:none\"]],[false,\"}\"],[true,{\".dropdown\":true,\".dropleft\":false,\".dropright\":false,\".dropup\":false},[\"position:relative\"]],[true,{\".dropdown-toggle::after\":true},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:.3em solid\",\"border-right:.3em solid transparent\",\"border-bottom:0\",\"border-left:.3em solid transparent\"]],[true,{\".dropdown-toggle:empty::after\":true},[\"margin-left:0\"]],[true,{\".dropdown-menu\":true},[\"position:absolute\",\"top:100%\",\"left:0\",\"z-index:1000\",\"display:none\",\"float:left\",\"min-width:10rem\",\"padding:.5rem 0\",\"margin:.125rem 0 0\",\"font-size:1rem\",\"color:#212529\",\"text-align:left\",\"list-style:none\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid rgba(0,0,0,.15)\",\"border-radius:.25rem\"]],[false,{\".dropdown-menu-right\":false},[\"right:0\",\"left:auto\"]],[false,{\".dropup .dropdown-menu\":false},[\"top:auto\",\"bottom:100%\",\"margin-top:0\",\"margin-bottom:.125rem\"]],[false,{\".dropup .dropdown-toggle::after\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:0\",\"border-right:.3em solid transparent\",\"border-bottom:.3em solid\",\"border-left:.3em solid transparent\"]],[false,{\".dropup .dropdown-toggle:empty::after\":false},[\"margin-left:0\"]],[false,{\".dropright .dropdown-menu\":false},[\"top:0\",\"right:auto\",\"left:100%\",\"margin-top:0\",\"margin-left:.125rem\"]],[false,{\".dropright .dropdown-toggle::after\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:.3em solid transparent\",\"border-right:0\",\"border-bottom:.3em solid transparent\",\"border-left:.3em solid\"]],[false,{\".dropright .dropdown-toggle:empty::after\":false},[\"margin-left:0\"]],[false,{\".dropright .dropdown-toggle::after\":false},[\"vertical-align:0\"]],[false,{\".dropleft .dropdown-menu\":false},[\"top:0\",\"right:100%\",\"left:auto\",\"margin-top:0\",\"margin-right:.125rem\"]],[false,{\".dropleft .dropdown-toggle::after\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\"]],[false,{\".dropleft .dropdown-toggle::after\":false},[\"display:none\"]],[false,{\".dropleft .dropdown-toggle::before\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-right:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:.3em solid transparent\",\"border-right:.3em solid\",\"border-bottom:.3em solid transparent\"]],[false,{\".dropleft .dropdown-toggle:empty::after\":false},[\"margin-left:0\"]],[false,{\".dropleft .dropdown-toggle::before\":false},[\"vertical-align:0\"]],[false,{\".dropdown-menu[x-placement^=bottom]\":false,\".dropdown-menu[x-placement^=left]\":false,\".dropdown-menu[x-placement^=right]\":false,\".dropdown-menu[x-placement^=top]\":false},[\"right:auto\",\"bottom:auto\"]],[false,{\".dropdown-divider\":false},[\"height:0\",\"margin:.5rem 0\",\"overflow:hidden\",\"border-top:1px solid #e9ecef\"]],[false,{\".dropdown-item\":false},[\"display:block\",\"width:100%\",\"padding:.25rem 1.5rem\",\"clear:both\",\"font-weight:400\",\"color:#212529\",\"text-align:inherit\",\"white-space:nowrap\",\"background-color:transparent\",\"border:0\"]],[false,{\".dropdown-item:focus\":false,\".dropdown-item:hover\":false},[\"color:#16181b\",\"text-decoration:none\",\"background-color:#f8f9fa\"]],[false,{\".dropdown-item.active\":false,\".dropdown-item:active\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#007bff\"]],[false,{\".dropdown-item.disabled\":false,\".dropdown-item:disabled\":false},[\"color:#6c757d\",\"background-color:transparent\"]],[false,{\".dropdown-menu.show\":false},[\"display:block\"]],[false,{\".dropdown-header\":false},[\"display:block\",\"padding:.5rem 1.5rem\",\"margin-bottom:0\",\"font-size:.875rem\",\"color:#6c757d\",\"white-space:nowrap\"]],[false,{\".dropdown-item-text\":false},[\"display:block\",\"padding:.25rem 1.5rem\",\"color:#212529\"]],[false,{\".btn-group\":false,\".btn-group-vertical\":false},[\"position:relative\",\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"vertical-align:middle\"]],[false,{\".btn-group-vertical>.btn\":false,\".btn-group>.btn\":false},[\"position:relative\",\"-ms-flex:0 1 auto\",\"flex:0 1 auto\"]],[false,{\".btn-group-vertical>.btn:hover\":false,\".btn-group>.btn:hover\":false},[\"z-index:1\"]],[false,{\".btn-group-vertical>.btn.active\":false,\".btn-group-vertical>.btn:active\":false,\".btn-group-vertical>.btn:focus\":false,\".btn-group>.btn.active\":false,\".btn-group>.btn:active\":false,\".btn-group>.btn:focus\":false},[\"z-index:1\"]],[false,{\".btn-group .btn+.btn\":false,\".btn-group .btn+.btn-group\":false,\".btn-group .btn-group+.btn\":false,\".btn-group .btn-group+.btn-group\":false,\".btn-group-vertical .btn+.btn\":false,\".btn-group-vertical .btn+.btn-group\":false,\".btn-group-vertical .btn-group+.btn\":false,\".btn-group-vertical .btn-group+.btn-group\":false},[\"margin-left:-1px\"]],[false,{\".btn-toolbar\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".btn-toolbar .input-group\":false},[\"width:auto\"]],[false,{\".btn-group>.btn:first-child\":false},[\"margin-left:0\"]],[false,{\".btn-group>.btn-group:not(:last-child)>.btn\":false,\".btn-group>.btn:not(:last-child):not(.dropdown-toggle)\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".btn-group>.btn-group:not(:first-child)>.btn\":false,\".btn-group>.btn:not(:first-child)\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".dropdown-toggle-split\":false},[\"padding-right:.5625rem\",\"padding-left:.5625rem\"]],[false,{\".dropdown-toggle-split::after\":false,\".dropright .dropdown-toggle-split::after\":false,\".dropup .dropdown-toggle-split::after\":false},[\"margin-left:0\"]],[false,{\".dropleft .dropdown-toggle-split::before\":false},[\"margin-right:0\"]],[false,{\".btn-group-sm>.btn+.dropdown-toggle-split\":false,\".btn-sm+.dropdown-toggle-split\":false},[\"padding-right:.375rem\",\"padding-left:.375rem\"]],[false,{\".btn-group-lg>.btn+.dropdown-toggle-split\":false,\".btn-lg+.dropdown-toggle-split\":false},[\"padding-right:.75rem\",\"padding-left:.75rem\"]],[false,{\".btn-group-vertical\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\",\"-ms-flex-align:start\",\"align-items:flex-start\",\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".btn-group-vertical .btn\":false,\".btn-group-vertical .btn-group\":false},[\"width:100%\"]],[false,{\".btn-group-vertical>.btn+.btn\":false,\".btn-group-vertical>.btn+.btn-group\":false,\".btn-group-vertical>.btn-group+.btn\":false,\".btn-group-vertical>.btn-group+.btn-group\":false},[\"margin-top:-1px\",\"margin-left:0\"]],[false,{\".btn-group-vertical>.btn-group:not(:last-child)>.btn\":false,\".btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle)\":false},[\"border-bottom-right-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".btn-group-vertical>.btn-group:not(:first-child)>.btn\":false,\".btn-group-vertical>.btn:not(:first-child)\":false},[\"border-top-left-radius:0\",\"border-top-right-radius:0\"]],[false,{\".btn-group-toggle>.btn\":false,\".btn-group-toggle>.btn-group>.btn\":false},[\"margin-bottom:0\"]],[false,{\".btn-group-toggle>.btn input[type=checkbox]\":false,\".btn-group-toggle>.btn input[type=radio]\":false,\".btn-group-toggle>.btn-group>.btn input[type=checkbox]\":false,\".btn-group-toggle>.btn-group>.btn input[type=radio]\":false},[\"position:absolute\",\"clip:rect(0,0,0,0)\",\"pointer-events:none\"]],[false,{\".input-group\":false},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-align:stretch\",\"align-items:stretch\",\"width:100%\"]],[false,{\".input-group>.custom-file\":false,\".input-group>.custom-select\":false,\".input-group>.form-control\":false},[\"position:relative\",\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"width:1%\",\"margin-bottom:0\"]],[false,{\".input-group>.custom-file+.custom-file\":false,\".input-group>.custom-file+.custom-select\":false,\".input-group>.custom-file+.form-control\":false,\".input-group>.custom-select+.custom-file\":false,\".input-group>.custom-select+.custom-select\":false,\".input-group>.custom-select+.form-control\":false,\".input-group>.form-control+.custom-file\":false,\".input-group>.form-control+.custom-select\":false,\".input-group>.form-control+.form-control\":false},[\"margin-left:-1px\"]],[false,{\".input-group>.custom-file .custom-file-input:focus~.custom-file-label\":false,\".input-group>.custom-select:focus\":false,\".input-group>.form-control:focus\":false},[\"z-index:3\"]],[false,{\".input-group>.custom-file .custom-file-input:focus\":false},[\"z-index:4\"]],[false,{\".input-group>.custom-select:not(:last-child)\":false,\".input-group>.form-control:not(:last-child)\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".input-group>.custom-select:not(:first-child)\":false,\".input-group>.form-control:not(:first-child)\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".input-group>.custom-file\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".input-group>.custom-file:not(:last-child) .custom-file-label\":false,\".input-group>.custom-file:not(:last-child) .custom-file-label::after\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".input-group>.custom-file:not(:first-child) .custom-file-label\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".input-group-append\":false,\".input-group-prepend\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".input-group-append .btn\":false,\".input-group-prepend .btn\":false},[\"position:relative\",\"z-index:2\"]],[false,{\".input-group-append .btn+.btn\":false,\".input-group-append .btn+.input-group-text\":false,\".input-group-append .input-group-text+.btn\":false,\".input-group-append .input-group-text+.input-group-text\":false,\".input-group-prepend .btn+.btn\":false,\".input-group-prepend .btn+.input-group-text\":false,\".input-group-prepend .input-group-text+.btn\":false,\".input-group-prepend .input-group-text+.input-group-text\":false},[\"margin-left:-1px\"]],[false,{\".input-group-prepend\":false},[\"margin-right:-1px\"]],[false,{\".input-group-append\":false},[\"margin-left:-1px\"]],[false,{\".input-group-text\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"padding:.375rem .75rem\",\"margin-bottom:0\",\"font-size:1rem\",\"font-weight:400\",\"line-height:1.5\",\"color:#495057\",\"text-align:center\",\"white-space:nowrap\",\"background-color:#e9ecef\",\"border:1px solid #ced4da\",\"border-radius:.25rem\"]],[false,{\".input-group-text input[type=checkbox]\":false,\".input-group-text input[type=radio]\":false},[\"margin-top:0\"]],[false,{\".input-group-lg>.form-control\":false,\".input-group-lg>.input-group-append>.btn\":false,\".input-group-lg>.input-group-append>.input-group-text\":false,\".input-group-lg>.input-group-prepend>.btn\":false,\".input-group-lg>.input-group-prepend>.input-group-text\":false},[\"height:calc(2.875rem + 2px)\",\"padding:.5rem 1rem\",\"font-size:1.25rem\",\"line-height:1.5\",\"border-radius:.3rem\"]],[false,{\".input-group-sm>.form-control\":false,\".input-group-sm>.input-group-append>.btn\":false,\".input-group-sm>.input-group-append>.input-group-text\":false,\".input-group-sm>.input-group-prepend>.btn\":false,\".input-group-sm>.input-group-prepend>.input-group-text\":false},[\"height:calc(1.8125rem + 2px)\",\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\",\"border-radius:.2rem\"]],[false,{\".input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle)\":false,\".input-group>.input-group-append:last-child>.input-group-text:not(:last-child)\":false,\".input-group>.input-group-append:not(:last-child)>.btn\":false,\".input-group>.input-group-append:not(:last-child)>.input-group-text\":false,\".input-group>.input-group-prepend>.btn\":false,\".input-group>.input-group-prepend>.input-group-text\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".input-group>.input-group-append>.btn\":false,\".input-group>.input-group-append>.input-group-text\":false,\".input-group>.input-group-prepend:first-child>.btn:not(:first-child)\":false,\".input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child)\":false,\".input-group>.input-group-prepend:not(:first-child)>.btn\":false,\".input-group>.input-group-prepend:not(:first-child)>.input-group-text\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".custom-control\":false},[\"position:relative\",\"display:block\",\"min-height:1.5rem\",\"padding-left:1.5rem\"]],[false,{\".custom-control-inline\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"margin-right:1rem\"]],[false,{\".custom-control-input\":false},[\"position:absolute\",\"z-index:-1\",\"opacity:0\"]],[false,{\".custom-control-input:checked~.custom-control-label::before\":false},[\"color:#fff\",\"background-color:#007bff\"]],[false,{\".custom-control-input:focus~.custom-control-label::before\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-control-input:active~.custom-control-label::before\":false},[\"color:#fff\",\"background-color:#b3d7ff\"]],[false,{\".custom-control-input:disabled~.custom-control-label\":false},[\"color:#6c757d\"]],[false,{\".custom-control-input:disabled~.custom-control-label::before\":false},[\"background-color:#e9ecef\"]],[false,{\".custom-control-label\":false},[\"position:relative\",\"margin-bottom:0\"]],[false,{\".custom-control-label::before\":false},[\"position:absolute\",\"top:.25rem\",\"left:-1.5rem\",\"display:block\",\"width:1rem\",\"height:1rem\",\"pointer-events:none\",\"content:\\\"\\\"\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\",\"background-color:#dee2e6\"]],[false,{\".custom-control-label::after\":false},[\"position:absolute\",\"top:.25rem\",\"left:-1.5rem\",\"display:block\",\"width:1rem\",\"height:1rem\",\"content:\\\"\\\"\",\"background-repeat:no-repeat\",\"background-position:center center\",\"background-size:50% 50%\"]],[false,{\".custom-checkbox .custom-control-label::before\":false},[\"border-radius:.25rem\"]],[false,{\".custom-checkbox .custom-control-input:checked~.custom-control-label::before\":false},[\"background-color:#007bff\"]],[false,{\".custom-checkbox .custom-control-input:checked~.custom-control-label::after\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'0 0 8 8\\\\\'%3E%3Cpath fill=\\\\\'%23fff\\\\\' d=\\\\\'M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before\":false},[\"background-color:#007bff\"]],[false,{\".custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'0 0 4 4\\\\\'%3E%3Cpath stroke=\\\\\'%23fff\\\\\' d=\\\\\'M0 2h4\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before\":false},[\"background-color:rgba(0,123,255,.5)\"]],[false,{\".custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before\":false},[\"background-color:rgba(0,123,255,.5)\"]],[false,{\".custom-radio .custom-control-label::before\":false},[\"border-radius:50%\"]],[false,{\".custom-radio .custom-control-input:checked~.custom-control-label::before\":false},[\"background-color:#007bff\"]],[false,{\".custom-radio .custom-control-input:checked~.custom-control-label::after\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'-4 -4 8 8\\\\\'%3E%3Ccircle r=\\\\\'3\\\\\' fill=\\\\\'%23fff\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".custom-radio .custom-control-input:disabled:checked~.custom-control-label::before\":false},[\"background-color:rgba(0,123,255,.5)\"]],[false,{\".custom-select\":false},[\"display:inline-block\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"padding:.375rem 1.75rem .375rem .75rem\",\"line-height:1.5\",\"color:#495057\",\"vertical-align:middle\",\"background:#fff url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'0 0 4 5\\\\\'%3E%3Cpath fill=\\\\\'%23343a40\\\\\' d=\\\\\'M2 0L0 2h4zm0 5L0 3h4z\\\\\'\\/%3E%3C\\/svg%3E\\\") no-repeat right .75rem center\",\"background-size:8px 10px\",\"border:1px solid #ced4da\",\"border-radius:.25rem\",\"-webkit-appearance:none\",\"-moz-appearance:none\",\"appearance:none\"]],[false,{\".custom-select:focus\":false},[\"border-color:#80bdff\",\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(128,189,255,.5)\"]],[false,{\".custom-select:focus::-ms-value\":false},[\"color:#495057\",\"background-color:#fff\"]],[false,{\".custom-select[multiple]\":false,\".custom-select[size]:not([size=\\\"1\\\"])\":false},[\"height:auto\",\"padding-right:.75rem\",\"background-image:none\"]],[false,{\".custom-select:disabled\":false},[\"color:#6c757d\",\"background-color:#e9ecef\"]],[false,{\".custom-select::-ms-expand\":false},[\"opacity:0\"]],[false,{\".custom-select-sm\":false},[\"height:calc(1.8125rem + 2px)\",\"padding-top:.375rem\",\"padding-bottom:.375rem\",\"font-size:75%\"]],[false,{\".custom-select-lg\":false},[\"height:calc(2.875rem + 2px)\",\"padding-top:.375rem\",\"padding-bottom:.375rem\",\"font-size:125%\"]],[false,{\".custom-file\":false},[\"position:relative\",\"display:inline-block\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"margin-bottom:0\"]],[false,{\".custom-file-input\":false},[\"position:relative\",\"z-index:2\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"margin:0\",\"opacity:0\"]],[false,{\".custom-file-input:focus~.custom-file-label\":false},[\"border-color:#80bdff\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-file-input:focus~.custom-file-label::after\":false},[\"border-color:#80bdff\"]],[false,{\".custom-file-input:disabled~.custom-file-label\":false},[\"background-color:#e9ecef\"]],[false,{\".custom-file-input:lang(en)~.custom-file-label::after\":false},[\"content:\\\"Browse\\\"\"]],[false,{\".custom-file-label\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"left:0\",\"z-index:1\",\"height:calc(2.25rem + 2px)\",\"padding:.375rem .75rem\",\"line-height:1.5\",\"color:#495057\",\"background-color:#fff\",\"border:1px solid #ced4da\",\"border-radius:.25rem\"]],[false,{\".custom-file-label::after\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"z-index:3\",\"display:block\",\"height:2.25rem\",\"padding:.375rem .75rem\",\"line-height:1.5\",\"color:#495057\",\"content:\\\"Browse\\\"\",\"background-color:#e9ecef\",\"border-left:1px solid #ced4da\",\"border-radius:0 .25rem .25rem 0\"]],[false,{\".custom-range\":false},[\"width:100%\",\"padding-left:0\",\"background-color:transparent\",\"-webkit-appearance:none\",\"-moz-appearance:none\",\"appearance:none\"]],[false,{\".custom-range:focus\":false},[\"outline:0\"]],[false,{\".custom-range:focus::-webkit-slider-thumb\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-range:focus::-moz-range-thumb\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-range:focus::-ms-thumb\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-range::-moz-focus-outer\":false},[\"border:0\"]],[false,{\".custom-range::-webkit-slider-thumb\":false},[\"width:1rem\",\"height:1rem\",\"margin-top:-.25rem\",\"background-color:#007bff\",\"border:0\",\"border-radius:1rem\",\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\",\"-webkit-appearance:none\",\"appearance:none\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-range::-webkit-slider-thumb\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".custom-range::-webkit-slider-thumb:active\":false},[\"background-color:#b3d7ff\"]],[false,{\".custom-range::-webkit-slider-runnable-track\":false},[\"width:100%\",\"height:.5rem\",\"color:transparent\",\"cursor:pointer\",\"background-color:#dee2e6\",\"border-color:transparent\",\"border-radius:1rem\"]],[false,{\".custom-range::-moz-range-thumb\":false},[\"width:1rem\",\"height:1rem\",\"background-color:#007bff\",\"border:0\",\"border-radius:1rem\",\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\",\"-moz-appearance:none\",\"appearance:none\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-range::-moz-range-thumb\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".custom-range::-moz-range-thumb:active\":false},[\"background-color:#b3d7ff\"]],[false,{\".custom-range::-moz-range-track\":false},[\"width:100%\",\"height:.5rem\",\"color:transparent\",\"cursor:pointer\",\"background-color:#dee2e6\",\"border-color:transparent\",\"border-radius:1rem\"]],[false,{\".custom-range::-ms-thumb\":false},[\"width:1rem\",\"height:1rem\",\"margin-top:0\",\"margin-right:.2rem\",\"margin-left:.2rem\",\"background-color:#007bff\",\"border:0\",\"border-radius:1rem\",\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\",\"appearance:none\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-range::-ms-thumb\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".custom-range::-ms-thumb:active\":false},[\"background-color:#b3d7ff\"]],[false,{\".custom-range::-ms-track\":false},[\"width:100%\",\"height:.5rem\",\"color:transparent\",\"cursor:pointer\",\"background-color:transparent\",\"border-color:transparent\",\"border-width:.5rem\"]],[false,{\".custom-range::-ms-fill-lower\":false},[\"background-color:#dee2e6\",\"border-radius:1rem\"]],[false,{\".custom-range::-ms-fill-upper\":false},[\"margin-right:15px\",\"background-color:#dee2e6\",\"border-radius:1rem\"]],[false,{\".custom-control-label::before\":false,\".custom-file-label\":false,\".custom-select\":false},[\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-control-label::before\":false,\".custom-file-label\":false,\".custom-select\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".nav\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"padding-left:0\",\"margin-bottom:0\",\"list-style:none\"]],[true,{\".nav-link\":true},[\"display:block\",\"padding:.5rem 1rem\"]],[true,{\".nav-link:focus\":true,\".nav-link:hover\":true},[\"text-decoration:none\"]],[false,{\".nav-link.disabled\":false},[\"color:#6c757d\"]],[false,{\".nav-tabs\":false},[\"border-bottom:1px solid #dee2e6\"]],[false,{\".nav-tabs .nav-item\":false},[\"margin-bottom:-1px\"]],[false,{\".nav-tabs .nav-link\":false},[\"border:1px solid transparent\",\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".nav-tabs .nav-link:focus\":false,\".nav-tabs .nav-link:hover\":false},[\"border-color:#e9ecef #e9ecef #dee2e6\"]],[false,{\".nav-tabs .nav-link.disabled\":false},[\"color:#6c757d\",\"background-color:transparent\",\"border-color:transparent\"]],[false,{\".nav-tabs .nav-item.show .nav-link\":false,\".nav-tabs .nav-link.active\":false},[\"color:#495057\",\"background-color:#fff\",\"border-color:#dee2e6 #dee2e6 #fff\"]],[false,{\".nav-tabs .dropdown-menu\":false},[\"margin-top:-1px\",\"border-top-left-radius:0\",\"border-top-right-radius:0\"]],[false,{\".nav-pills .nav-link\":false},[\"border-radius:.25rem\"]],[false,{\".nav-pills .nav-link.active\":false,\".nav-pills .show>.nav-link\":false},[\"color:#fff\",\"background-color:#007bff\"]],[false,{\".nav-fill .nav-item\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"text-align:center\"]],[false,{\".nav-justified .nav-item\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"text-align:center\"]],[false,{\".tab-content>.tab-pane\":false},[\"display:none\"]],[false,{\".tab-content>.active\":false},[\"display:block\"]],[true,{\".navbar\":true},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"padding:.5rem 1rem\"]],[true,{\".navbar>.container\":true,\".navbar>.container-fluid\":true},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".navbar-brand\":false},[\"display:inline-block\",\"padding-top:.3125rem\",\"padding-bottom:.3125rem\",\"margin-right:1rem\",\"font-size:1.25rem\",\"line-height:inherit\",\"white-space:nowrap\"]],[false,{\".navbar-brand:focus\":false,\".navbar-brand:hover\":false},[\"text-decoration:none\"]],[true,{\".navbar-nav\":true},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"padding-left:0\",\"margin-bottom:0\",\"list-style:none\"]],[true,{\".navbar-nav .nav-link\":true},[\"padding-right:0\",\"padding-left:0\"]],[true,{\".navbar-nav .dropdown-menu\":true},[\"position:static\",\"float:none\"]],[false,{\".navbar-text\":false},[\"display:inline-block\",\"padding-top:.5rem\",\"padding-bottom:.5rem\"]],[true,{\".navbar-collapse\":true},[\"-ms-flex-preferred-size:100%\",\"flex-basis:100%\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"-ms-flex-align:center\",\"align-items:center\"]],[true,{\".navbar-toggler\":true},[\"padding:.25rem .75rem\",\"font-size:1.25rem\",\"line-height:1\",\"background-color:transparent\",\"border:1px solid transparent\",\"border-radius:.25rem\"]],[true,{\".navbar-toggler:focus\":true,\".navbar-toggler:hover\":true},[\"text-decoration:none\"]],[true,{\".navbar-toggler:not(:disabled):not(.disabled)\":true},[\"cursor:pointer\"]],[false,{\".navbar-toggler-icon\":false},[\"display:inline-block\",\"width:1.5em\",\"height:1.5em\",\"vertical-align:middle\",\"content:\\\"\\\"\",\"background:no-repeat center center\",\"background-size:100% 100%\"]],[false,\"@media (max-width:575.98px){\"],[false,{\".navbar-expand-sm>.container\":false,\".navbar-expand-sm>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,\"}\"],[false,\"@media (min-width:576px){\"],[false,{\".navbar-expand-sm\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand-sm .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand-sm .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand-sm .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand-sm>.container\":false,\".navbar-expand-sm>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand-sm .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand-sm .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand-sm .navbar-toggler\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (max-width:767.98px){\"],[false,{\".navbar-expand-md>.container\":false,\".navbar-expand-md>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".navbar-expand-md\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand-md .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand-md .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand-md .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand-md>.container\":false,\".navbar-expand-md>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand-md .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand-md .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand-md .navbar-toggler\":false},[\"display:none\"]],[false,\"}\"],[true,\"@media (max-width:991.98px){\"],[true,{\".navbar-expand-lg>.container\":true,\".navbar-expand-lg>.container-fluid\":true},[\"padding-right:0\",\"padding-left:0\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[true,{\".navbar-expand-lg\":true},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[true,{\".navbar-expand-lg .navbar-nav\":true},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[true,{\".navbar-expand-lg .navbar-nav .dropdown-menu\":true},[\"position:absolute\"]],[true,{\".navbar-expand-lg .navbar-nav .nav-link\":true},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[true,{\".navbar-expand-lg>.container\":true,\".navbar-expand-lg>.container-fluid\":true},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[true,{\".navbar-expand-lg .navbar-collapse\":true},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[true,{\".navbar-expand-lg .navbar-collapse:not(#_#_#_#_#_#_#_)\":true},[\"display:-ms-flexbox\",\"display:flex\"]],[true,{\".navbar-expand-lg .navbar-toggler\":true},[\"display:none\"]],[true,\"}\"],[false,\"@media (max-width:1199.98px){\"],[false,{\".navbar-expand-xl>.container\":false,\".navbar-expand-xl>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".navbar-expand-xl\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand-xl .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand-xl .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand-xl .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand-xl>.container\":false,\".navbar-expand-xl>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand-xl .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand-xl .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand-xl .navbar-toggler\":false},[\"display:none\"]],[false,\"}\"],[false,{\".navbar-expand\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand>.container\":false,\".navbar-expand>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,{\".navbar-expand .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand>.container\":false,\".navbar-expand>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand .navbar-toggler\":false},[\"display:none\"]],[false,{\".navbar-light .navbar-brand\":false},[\"color:rgba(0,0,0,.9)\"]],[false,{\".navbar-light .navbar-brand:focus\":false,\".navbar-light .navbar-brand:hover\":false},[\"color:rgba(0,0,0,.9)\"]],[true,{\".navbar-light .navbar-nav .nav-link\":true},[\"color:rgba(0,0,0,.5)\"]],[true,{\".navbar-light .navbar-nav .nav-link:focus\":true,\".navbar-light .navbar-nav .nav-link:hover\":true},[\"color:rgba(0,0,0,.7)\"]],[false,{\".navbar-light .navbar-nav .nav-link.disabled\":false},[\"color:rgba(0,0,0,.3)\"]],[false,{\".navbar-light .navbar-nav .active>.nav-link\":false,\".navbar-light .navbar-nav .nav-link.active\":false,\".navbar-light .navbar-nav .nav-link.show\":false,\".navbar-light .navbar-nav .show>.nav-link\":false},[\"color:rgba(0,0,0,.9)\"]],[true,{\".navbar-light .navbar-toggler\":true},[\"color:rgba(0,0,0,.5)\",\"border-color:rgba(0,0,0,.1)\"]],[false,{\".navbar-light .navbar-toggler-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg viewBox=\\\\\'0 0 30 30\\\\\' xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\'%3E%3Cpath stroke=\\\\\'rgba(0, 0, 0, 0.5)\\\\\' stroke-width=\\\\\'2\\\\\' stroke-linecap=\\\\\'round\\\\\' stroke-miterlimit=\\\\\'10\\\\\' d=\\\\\'M4 7h22M4 15h22M4 23h22\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".navbar-light .navbar-text\":false},[\"color:rgba(0,0,0,.5)\"]],[false,{\".navbar-light .navbar-text a\":false},[\"color:rgba(0,0,0,.9)\"]],[false,{\".navbar-light .navbar-text a:focus\":false,\".navbar-light .navbar-text a:hover\":false},[\"color:rgba(0,0,0,.9)\"]],[false,{\".navbar-dark .navbar-brand\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-brand:focus\":false,\".navbar-dark .navbar-brand:hover\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-nav .nav-link\":false},[\"color:rgba(255,255,255,.5)\"]],[false,{\".navbar-dark .navbar-nav .nav-link:focus\":false,\".navbar-dark .navbar-nav .nav-link:hover\":false},[\"color:rgba(255,255,255,.75)\"]],[false,{\".navbar-dark .navbar-nav .nav-link.disabled\":false},[\"color:rgba(255,255,255,.25)\"]],[false,{\".navbar-dark .navbar-nav .active>.nav-link\":false,\".navbar-dark .navbar-nav .nav-link.active\":false,\".navbar-dark .navbar-nav .nav-link.show\":false,\".navbar-dark .navbar-nav .show>.nav-link\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-toggler\":false},[\"color:rgba(255,255,255,.5)\",\"border-color:rgba(255,255,255,.1)\"]],[false,{\".navbar-dark .navbar-toggler-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg viewBox=\\\\\'0 0 30 30\\\\\' xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\'%3E%3Cpath stroke=\\\\\'rgba(255, 255, 255, 0.5)\\\\\' stroke-width=\\\\\'2\\\\\' stroke-linecap=\\\\\'round\\\\\' stroke-miterlimit=\\\\\'10\\\\\' d=\\\\\'M4 7h22M4 15h22M4 23h22\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".navbar-dark .navbar-text\":false},[\"color:rgba(255,255,255,.5)\"]],[false,{\".navbar-dark .navbar-text a\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-text a:focus\":false,\".navbar-dark .navbar-text a:hover\":false},[\"color:#fff\"]],[false,{\".card\":false},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"min-width:0\",\"word-wrap:break-word\",\"background-color:#fff\",\"background-clip:border-box\",\"border:1px solid rgba(0,0,0,.125)\",\"border-radius:.25rem\"]],[false,{\".card>hr\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".card>.list-group:first-child .list-group-item:first-child\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".card>.list-group:last-child .list-group-item:last-child\":false},[\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".card-body\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"padding:1.25rem\"]],[false,{\".card-title\":false},[\"margin-bottom:.75rem\"]],[false,{\".card-subtitle\":false},[\"margin-top:-.375rem\",\"margin-bottom:0\"]],[false,{\".card-text:last-child\":false},[\"margin-bottom:0\"]],[false,{\".card-link:hover\":false},[\"text-decoration:none\"]],[false,{\".card-link+.card-link\":false},[\"margin-left:1.25rem\"]],[false,{\".card-header\":false},[\"padding:.75rem 1.25rem\",\"margin-bottom:0\",\"background-color:rgba(0,0,0,.03)\",\"border-bottom:1px solid rgba(0,0,0,.125)\"]],[false,{\".card-header:first-child\":false},[\"border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0\"]],[false,{\".card-header+.list-group .list-group-item:first-child\":false},[\"border-top:0\"]],[false,{\".card-footer\":false},[\"padding:.75rem 1.25rem\",\"background-color:rgba(0,0,0,.03)\",\"border-top:1px solid rgba(0,0,0,.125)\"]],[false,{\".card-footer:last-child\":false},[\"border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)\"]],[false,{\".card-header-tabs\":false},[\"margin-right:-.625rem\",\"margin-bottom:-.75rem\",\"margin-left:-.625rem\",\"border-bottom:0\"]],[false,{\".card-header-pills\":false},[\"margin-right:-.625rem\",\"margin-left:-.625rem\"]],[false,{\".card-img-overlay\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"padding:1.25rem\"]],[false,{\".card-img\":false},[\"width:100%\",\"border-radius:calc(.25rem - 1px)\"]],[false,{\".card-img-top\":false},[\"width:100%\",\"border-top-left-radius:calc(.25rem - 1px)\",\"border-top-right-radius:calc(.25rem - 1px)\"]],[false,{\".card-img-bottom\":false},[\"width:100%\",\"border-bottom-right-radius:calc(.25rem - 1px)\",\"border-bottom-left-radius:calc(.25rem - 1px)\"]],[false,{\".card-deck\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".card-deck .card\":false},[\"margin-bottom:15px\"]],[false,\"@media (min-width:576px){\"],[false,{\".card-deck\":false},[\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\",\"margin-right:-15px\",\"margin-left:-15px\"]],[false,{\".card-deck .card\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex:1 0 0%\",\"flex:1 0 0%\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"margin-right:15px\",\"margin-bottom:0\",\"margin-left:15px\"]],[false,\"}\"],[false,{\".card-group\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".card-group>.card\":false},[\"margin-bottom:15px\"]],[false,\"@media (min-width:576px){\"],[false,{\".card-group\":false},[\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\"]],[false,{\".card-group>.card\":false},[\"-ms-flex:1 0 0%\",\"flex:1 0 0%\",\"margin-bottom:0\"]],[false,{\".card-group>.card+.card\":false},[\"margin-left:0\",\"border-left:0\"]],[false,{\".card-group>.card:first-child\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".card-group>.card:first-child .card-header\":false,\".card-group>.card:first-child .card-img-top\":false},[\"border-top-right-radius:0\"]],[false,{\".card-group>.card:first-child .card-footer\":false,\".card-group>.card:first-child .card-img-bottom\":false},[\"border-bottom-right-radius:0\"]],[false,{\".card-group>.card:last-child\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".card-group>.card:last-child .card-header\":false,\".card-group>.card:last-child .card-img-top\":false},[\"border-top-left-radius:0\"]],[false,{\".card-group>.card:last-child .card-footer\":false,\".card-group>.card:last-child .card-img-bottom\":false},[\"border-bottom-left-radius:0\"]],[false,{\".card-group>.card:only-child\":false},[\"border-radius:.25rem\"]],[false,{\".card-group>.card:only-child .card-header\":false,\".card-group>.card:only-child .card-img-top\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".card-group>.card:only-child .card-footer\":false,\".card-group>.card:only-child .card-img-bottom\":false},[\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".card-group>.card:not(:first-child):not(:last-child):not(:only-child)\":false},[\"border-radius:0\"]],[false,{\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer\":false,\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header\":false,\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom\":false,\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top\":false},[\"border-radius:0\"]],[false,\"}\"],[false,{\".card-columns .card\":false},[\"margin-bottom:.75rem\"]],[false,\"@media (min-width:576px){\"],[false,{\".card-columns\":false},[\"-webkit-column-count:3\",\"-moz-column-count:3\",\"column-count:3\",\"-webkit-column-gap:1.25rem\",\"-moz-column-gap:1.25rem\",\"column-gap:1.25rem\",\"orphans:1\",\"widows:1\"]],[false,{\".card-columns .card\":false},[\"display:inline-block\",\"width:100%\"]],[false,\"}\"],[false,{\".accordion .card:not(:first-of-type):not(:last-of-type)\":false},[\"border-bottom:0\",\"border-radius:0\"]],[false,{\".accordion .card:not(:first-of-type) .card-header:first-child\":false},[\"border-radius:0\"]],[false,{\".accordion .card:first-of-type\":false},[\"border-bottom:0\",\"border-bottom-right-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".accordion .card:last-of-type\":false},[\"border-top-left-radius:0\",\"border-top-right-radius:0\"]],[false,{\".breadcrumb\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"padding:.75rem 1rem\",\"margin-bottom:1rem\",\"list-style:none\",\"background-color:#e9ecef\",\"border-radius:.25rem\"]],[false,{\".breadcrumb-item+.breadcrumb-item\":false},[\"padding-left:.5rem\"]],[false,{\".breadcrumb-item+.breadcrumb-item::before\":false},[\"display:inline-block\",\"padding-right:.5rem\",\"color:#6c757d\",\"content:\\\"\\/\\\"\"]],[false,{\".breadcrumb-item+.breadcrumb-item:hover::before\":false},[\"text-decoration:underline\"]],[false,{\".breadcrumb-item+.breadcrumb-item:hover::before\":false},[\"text-decoration:none\"]],[false,{\".breadcrumb-item.active\":false},[\"color:#6c757d\"]],[false,{\".pagination\":false},[\"display:-ms-flexbox\",\"display:flex\",\"padding-left:0\",\"list-style:none\",\"border-radius:.25rem\"]],[false,{\".page-link\":false},[\"position:relative\",\"display:block\",\"padding:.5rem .75rem\",\"margin-left:-1px\",\"line-height:1.25\",\"color:#007bff\",\"background-color:#fff\",\"border:1px solid #dee2e6\"]],[false,{\".page-link:hover\":false},[\"z-index:2\",\"color:#0056b3\",\"text-decoration:none\",\"background-color:#e9ecef\",\"border-color:#dee2e6\"]],[false,{\".page-link:focus\":false},[\"z-index:2\",\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".page-link:not(:disabled):not(.disabled)\":false},[\"cursor:pointer\"]],[false,{\".page-item:first-child .page-link\":false},[\"margin-left:0\",\"border-top-left-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".page-item:last-child .page-link\":false},[\"border-top-right-radius:.25rem\",\"border-bottom-right-radius:.25rem\"]],[false,{\".page-item.active .page-link\":false},[\"z-index:1\",\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".page-item.disabled .page-link\":false},[\"color:#6c757d\",\"pointer-events:none\",\"cursor:auto\",\"background-color:#fff\",\"border-color:#dee2e6\"]],[false,{\".pagination-lg .page-link\":false},[\"padding:.75rem 1.5rem\",\"font-size:1.25rem\",\"line-height:1.5\"]],[false,{\".pagination-lg .page-item:first-child .page-link\":false},[\"border-top-left-radius:.3rem\",\"border-bottom-left-radius:.3rem\"]],[false,{\".pagination-lg .page-item:last-child .page-link\":false},[\"border-top-right-radius:.3rem\",\"border-bottom-right-radius:.3rem\"]],[false,{\".pagination-sm .page-link\":false},[\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\"]],[false,{\".pagination-sm .page-item:first-child .page-link\":false},[\"border-top-left-radius:.2rem\",\"border-bottom-left-radius:.2rem\"]],[false,{\".pagination-sm .page-item:last-child .page-link\":false},[\"border-top-right-radius:.2rem\",\"border-bottom-right-radius:.2rem\"]],[false,{\".badge\":false},[\"display:inline-block\",\"padding:.25em .4em\",\"font-size:75%\",\"font-weight:700\",\"line-height:1\",\"text-align:center\",\"white-space:nowrap\",\"vertical-align:baseline\",\"border-radius:.25rem\"]],[false,{\".badge:empty\":false},[\"display:none\"]],[false,{\".btn .badge\":false},[\"position:relative\",\"top:-1px\"]],[false,{\".badge-pill\":false},[\"padding-right:.6em\",\"padding-left:.6em\",\"border-radius:10rem\"]],[false,{\".badge-primary\":false},[\"color:#fff\",\"background-color:#007bff\"]],[false,{\".badge-primary[href]:focus\":false,\".badge-primary[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#0062cc\"]],[false,{\".badge-secondary\":false},[\"color:#fff\",\"background-color:#6c757d\"]],[false,{\".badge-secondary[href]:focus\":false,\".badge-secondary[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#545b62\"]],[false,{\".badge-success\":false},[\"color:#fff\",\"background-color:#28a745\"]],[false,{\".badge-success[href]:focus\":false,\".badge-success[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#1e7e34\"]],[false,{\".badge-info\":false},[\"color:#fff\",\"background-color:#17a2b8\"]],[false,{\".badge-info[href]:focus\":false,\".badge-info[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#117a8b\"]],[false,{\".badge-warning\":false},[\"color:#212529\",\"background-color:#ffc107\"]],[false,{\".badge-warning[href]:focus\":false,\".badge-warning[href]:hover\":false},[\"color:#212529\",\"text-decoration:none\",\"background-color:#d39e00\"]],[false,{\".badge-danger\":false},[\"color:#fff\",\"background-color:#dc3545\"]],[false,{\".badge-danger[href]:focus\":false,\".badge-danger[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#bd2130\"]],[false,{\".badge-light\":false},[\"color:#212529\",\"background-color:#f8f9fa\"]],[false,{\".badge-light[href]:focus\":false,\".badge-light[href]:hover\":false},[\"color:#212529\",\"text-decoration:none\",\"background-color:#dae0e5\"]],[false,{\".badge-dark\":false},[\"color:#fff\",\"background-color:#343a40\"]],[false,{\".badge-dark[href]:focus\":false,\".badge-dark[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#1d2124\"]],[false,{\".jumbotron\":false},[\"padding:2rem 1rem\",\"margin-bottom:2rem\",\"background-color:#e9ecef\",\"border-radius:.3rem\"]],[false,\"@media (min-width:576px){\"],[false,{\".jumbotron\":false},[\"padding:4rem 2rem\"]],[false,\"}\"],[false,{\".jumbotron-fluid\":false},[\"padding-right:0\",\"padding-left:0\",\"border-radius:0\"]],[false,{\".alert\":false},[\"position:relative\",\"padding:.75rem 1.25rem\",\"margin-bottom:1rem\",\"border:1px solid transparent\",\"border-radius:.25rem\"]],[false,{\".alert-heading\":false},[\"color:inherit\"]],[false,{\".alert-link\":false},[\"font-weight:700\"]],[false,{\".alert-dismissible\":false},[\"padding-right:4rem\"]],[false,{\".alert-dismissible .close\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"padding:.75rem 1.25rem\",\"color:inherit\"]],[false,{\".alert-primary\":false},[\"color:#004085\",\"background-color:#cce5ff\",\"border-color:#b8daff\"]],[false,{\".alert-primary hr\":false},[\"border-top-color:#9fcdff\"]],[false,{\".alert-primary .alert-link\":false},[\"color:#002752\"]],[false,{\".alert-secondary\":false},[\"color:#383d41\",\"background-color:#e2e3e5\",\"border-color:#d6d8db\"]],[false,{\".alert-secondary hr\":false},[\"border-top-color:#c8cbcf\"]],[false,{\".alert-secondary .alert-link\":false},[\"color:#202326\"]],[false,{\".alert-success\":false},[\"color:#155724\",\"background-color:#d4edda\",\"border-color:#c3e6cb\"]],[false,{\".alert-success hr\":false},[\"border-top-color:#b1dfbb\"]],[false,{\".alert-success .alert-link\":false},[\"color:#0b2e13\"]],[false,{\".alert-info\":false},[\"color:#0c5460\",\"background-color:#d1ecf1\",\"border-color:#bee5eb\"]],[false,{\".alert-info hr\":false},[\"border-top-color:#abdde5\"]],[false,{\".alert-info .alert-link\":false},[\"color:#062c33\"]],[false,{\".alert-warning\":false},[\"color:#856404\",\"background-color:#fff3cd\",\"border-color:#ffeeba\"]],[false,{\".alert-warning hr\":false},[\"border-top-color:#ffe8a1\"]],[false,{\".alert-warning .alert-link\":false},[\"color:#533f03\"]],[false,{\".alert-danger\":false},[\"color:#721c24\",\"background-color:#f8d7da\",\"border-color:#f5c6cb\"]],[false,{\".alert-danger hr\":false},[\"border-top-color:#f1b0b7\"]],[false,{\".alert-danger .alert-link\":false},[\"color:#491217\"]],[false,{\".alert-light\":false},[\"color:#818182\",\"background-color:#fefefe\",\"border-color:#fdfdfe\"]],[false,{\".alert-light hr\":false},[\"border-top-color:#ececf6\"]],[false,{\".alert-light .alert-link\":false},[\"color:#686868\"]],[false,{\".alert-dark\":false},[\"color:#1b1e21\",\"background-color:#d6d8d9\",\"border-color:#c6c8ca\"]],[false,{\".alert-dark hr\":false},[\"border-top-color:#b9bbbe\"]],[false,{\".alert-dark .alert-link\":false},[\"color:#040505\"]],[true,\"@-webkit-keyframes progress-bar-stripes{\"],[true,\"from{background-position:1rem 0}\"],[true,\"to{background-position:0 0}\"],[true,\"}@keyframes progress-bar-stripes{\"],[true,\"from{background-position:1rem 0}\"],[true,\"to{background-position:0 0}\"],[true,\"}\"],[false,{\".progress\":false},[\"display:-ms-flexbox\",\"display:flex\",\"height:1rem\",\"overflow:hidden\",\"font-size:.75rem\",\"background-color:#e9ecef\",\"border-radius:.25rem\"]],[false,{\".progress-bar\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"-ms-flex-pack:center\",\"justify-content:center\",\"color:#fff\",\"text-align:center\",\"white-space:nowrap\",\"background-color:#007bff\",\"transition:width .6s ease\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".progress-bar\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".progress-bar-striped\":false},[\"background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)\",\"background-size:1rem 1rem\"]],[false,{\".progress-bar-animated\":false},[\"-webkit-animation:progress-bar-stripes 1s linear infinite\",\"animation:progress-bar-stripes 1s linear infinite\"]],[false,{\".media\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".media-body\":false},[\"-ms-flex:1\",\"flex:1\"]],[false,{\".list-group\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"padding-left:0\",\"margin-bottom:0\"]],[false,{\".list-group-item-action\":false},[\"width:100%\",\"color:#495057\",\"text-align:inherit\"]],[false,{\".list-group-item-action:focus\":false,\".list-group-item-action:hover\":false},[\"color:#495057\",\"text-decoration:none\",\"background-color:#f8f9fa\"]],[false,{\".list-group-item-action:active\":false},[\"color:#212529\",\"background-color:#e9ecef\"]],[false,{\".list-group-item\":false},[\"position:relative\",\"display:block\",\"padding:.75rem 1.25rem\",\"margin-bottom:-1px\",\"background-color:#fff\",\"border:1px solid rgba(0,0,0,.125)\"]],[false,{\".list-group-item:first-child\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".list-group-item:last-child\":false},[\"margin-bottom:0\",\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".list-group-item:focus\":false,\".list-group-item:hover\":false},[\"z-index:1\",\"text-decoration:none\"]],[false,{\".list-group-item.disabled\":false,\".list-group-item:disabled\":false},[\"color:#6c757d\",\"background-color:#fff\"]],[false,{\".list-group-item.active\":false},[\"z-index:2\",\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".list-group-flush .list-group-item\":false},[\"border-right:0\",\"border-left:0\",\"border-radius:0\"]],[false,{\".list-group-flush:first-child .list-group-item:first-child\":false},[\"border-top:0\"]],[false,{\".list-group-flush:last-child .list-group-item:last-child\":false},[\"border-bottom:0\"]],[false,{\".list-group-item-primary\":false},[\"color:#004085\",\"background-color:#b8daff\"]],[false,{\".list-group-item-primary.list-group-item-action:focus\":false,\".list-group-item-primary.list-group-item-action:hover\":false},[\"color:#004085\",\"background-color:#9fcdff\"]],[false,{\".list-group-item-primary.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#004085\",\"border-color:#004085\"]],[false,{\".list-group-item-secondary\":false},[\"color:#383d41\",\"background-color:#d6d8db\"]],[false,{\".list-group-item-secondary.list-group-item-action:focus\":false,\".list-group-item-secondary.list-group-item-action:hover\":false},[\"color:#383d41\",\"background-color:#c8cbcf\"]],[false,{\".list-group-item-secondary.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#383d41\",\"border-color:#383d41\"]],[false,{\".list-group-item-success\":false},[\"color:#155724\",\"background-color:#c3e6cb\"]],[false,{\".list-group-item-success.list-group-item-action:focus\":false,\".list-group-item-success.list-group-item-action:hover\":false},[\"color:#155724\",\"background-color:#b1dfbb\"]],[false,{\".list-group-item-success.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#155724\",\"border-color:#155724\"]],[false,{\".list-group-item-info\":false},[\"color:#0c5460\",\"background-color:#bee5eb\"]],[false,{\".list-group-item-info.list-group-item-action:focus\":false,\".list-group-item-info.list-group-item-action:hover\":false},[\"color:#0c5460\",\"background-color:#abdde5\"]],[false,{\".list-group-item-info.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#0c5460\",\"border-color:#0c5460\"]],[false,{\".list-group-item-warning\":false},[\"color:#856404\",\"background-color:#ffeeba\"]],[false,{\".list-group-item-warning.list-group-item-action:focus\":false,\".list-group-item-warning.list-group-item-action:hover\":false},[\"color:#856404\",\"background-color:#ffe8a1\"]],[false,{\".list-group-item-warning.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#856404\",\"border-color:#856404\"]],[false,{\".list-group-item-danger\":false},[\"color:#721c24\",\"background-color:#f5c6cb\"]],[false,{\".list-group-item-danger.list-group-item-action:focus\":false,\".list-group-item-danger.list-group-item-action:hover\":false},[\"color:#721c24\",\"background-color:#f1b0b7\"]],[false,{\".list-group-item-danger.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#721c24\",\"border-color:#721c24\"]],[false,{\".list-group-item-light\":false},[\"color:#818182\",\"background-color:#fdfdfe\"]],[false,{\".list-group-item-light.list-group-item-action:focus\":false,\".list-group-item-light.list-group-item-action:hover\":false},[\"color:#818182\",\"background-color:#ececf6\"]],[false,{\".list-group-item-light.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#818182\",\"border-color:#818182\"]],[false,{\".list-group-item-dark\":false},[\"color:#1b1e21\",\"background-color:#c6c8ca\"]],[false,{\".list-group-item-dark.list-group-item-action:focus\":false,\".list-group-item-dark.list-group-item-action:hover\":false},[\"color:#1b1e21\",\"background-color:#b9bbbe\"]],[false,{\".list-group-item-dark.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#1b1e21\",\"border-color:#1b1e21\"]],[false,{\".close\":false},[\"float:right\",\"font-size:1.5rem\",\"font-weight:700\",\"line-height:1\",\"color:#000\",\"text-shadow:0 1px 0 #fff\",\"opacity:.5\"]],[false,{\".close:not(:disabled):not(.disabled)\":false},[\"cursor:pointer\"]],[false,{\".close:not(:disabled):not(.disabled):focus\":false,\".close:not(:disabled):not(.disabled):hover\":false},[\"color:#000\",\"text-decoration:none\",\"opacity:.75\"]],[false,{\"button.close\":false},[\"padding:0\",\"background-color:transparent\",\"border:0\",\"-webkit-appearance:none\"]],[false,{\".modal-open\":false},[\"overflow:hidden\"]],[false,{\".modal-open .modal\":false},[\"overflow-x:hidden\",\"overflow-y:auto\"]],[false,{\".modal\":false},[\"position:fixed\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"z-index:1050\",\"display:none\",\"overflow:hidden\",\"outline:0\"]],[false,{\".modal-dialog\":false},[\"position:relative\",\"width:auto\",\"margin:.5rem\",\"pointer-events:none\"]],[false,{\".modal.fade .modal-dialog\":false},[\"transition:-webkit-transform .3s ease-out\",\"transition:transform .3s ease-out\",\"transition:transform .3s ease-out,-webkit-transform .3s ease-out\",\"-webkit-transform:translate(0,-25%)\",\"transform:translate(0,-25%)\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".modal.fade .modal-dialog\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".modal.show .modal-dialog\":false},[\"-webkit-transform:translate(0,0)\",\"transform:translate(0,0)\"]],[false,{\".modal-dialog-centered\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"min-height:calc(100% - ( .5rem * 2 ))\"]],[false,{\".modal-dialog-centered::before\":false},[\"display:block\",\"height:calc(100vh - ( .5rem * 2 ))\",\"content:\\\"\\\"\"]],[false,{\".modal-content\":false},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"width:100%\",\"pointer-events:auto\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid rgba(0,0,0,.2)\",\"border-radius:.3rem\",\"outline:0\"]],[false,{\".modal-backdrop\":false},[\"position:fixed\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"z-index:1040\",\"background-color:#000\"]],[false,{\".modal-backdrop.fade\":false},[\"opacity:0\"]],[false,{\".modal-backdrop.show\":false},[\"opacity:.5\"]],[false,{\".modal-header\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:start\",\"align-items:flex-start\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"padding:1rem\",\"border-bottom:1px solid #e9ecef\",\"border-top-left-radius:.3rem\",\"border-top-right-radius:.3rem\"]],[false,{\".modal-header .close\":false},[\"padding:1rem\",\"margin:-1rem -1rem -1rem auto\"]],[false,{\".modal-title\":false},[\"margin-bottom:0\",\"line-height:1.5\"]],[false,{\".modal-body\":false},[\"position:relative\",\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"padding:1rem\"]],[false,{\".modal-footer\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:end\",\"justify-content:flex-end\",\"padding:1rem\",\"border-top:1px solid #e9ecef\"]],[false,{\".modal-footer>:not(:first-child)\":false},[\"margin-left:.25rem\"]],[false,{\".modal-footer>:not(:last-child)\":false},[\"margin-right:.25rem\"]],[false,{\".modal-scrollbar-measure\":false},[\"position:absolute\",\"top:-9999px\",\"width:50px\",\"height:50px\",\"overflow:scroll\"]],[false,\"@media (min-width:576px){\"],[false,{\".modal-dialog\":false},[\"max-width:500px\",\"margin:1.75rem auto\"]],[false,{\".modal-dialog-centered\":false},[\"min-height:calc(100% - ( 1.75rem * 2 ))\"]],[false,{\".modal-dialog-centered::before\":false},[\"height:calc(100vh - ( 1.75rem * 2 ))\"]],[false,{\".modal-sm\":false},[\"max-width:300px\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".modal-lg\":false},[\"max-width:800px\"]],[false,\"}\"],[false,{\".tooltip\":false},[\"position:absolute\",\"z-index:1070\",\"display:block\",\"margin:0\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"font-style:normal\",\"font-weight:400\",\"line-height:1.5\",\"text-align:left\",\"text-align:start\",\"text-decoration:none\",\"text-shadow:none\",\"text-transform:none\",\"letter-spacing:normal\",\"word-break:normal\",\"word-spacing:normal\",\"white-space:normal\",\"line-break:auto\",\"font-size:.875rem\",\"word-wrap:break-word\",\"opacity:0\"]],[false,{\".tooltip.show\":false},[\"opacity:.9\"]],[false,{\".tooltip .arrow\":false},[\"position:absolute\",\"display:block\",\"width:.8rem\",\"height:.4rem\"]],[false,{\".tooltip .arrow::before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"border-color:transparent\",\"border-style:solid\"]],[false,{\".bs-tooltip-auto[x-placement^=top]\":false,\".bs-tooltip-top\":false},[\"padding:.4rem 0\"]],[false,{\".bs-tooltip-auto[x-placement^=top] .arrow\":false,\".bs-tooltip-top .arrow\":false},[\"bottom:0\"]],[false,{\".bs-tooltip-auto[x-placement^=top] .arrow::before\":false,\".bs-tooltip-top .arrow::before\":false},[\"top:0\",\"border-width:.4rem .4rem 0\",\"border-top-color:#000\"]],[false,{\".bs-tooltip-auto[x-placement^=right]\":false,\".bs-tooltip-right\":false},[\"padding:0 .4rem\"]],[false,{\".bs-tooltip-auto[x-placement^=right] .arrow\":false,\".bs-tooltip-right .arrow\":false},[\"left:0\",\"width:.4rem\",\"height:.8rem\"]],[false,{\".bs-tooltip-auto[x-placement^=right] .arrow::before\":false,\".bs-tooltip-right .arrow::before\":false},[\"right:0\",\"border-width:.4rem .4rem .4rem 0\",\"border-right-color:#000\"]],[false,{\".bs-tooltip-auto[x-placement^=bottom]\":false,\".bs-tooltip-bottom\":false},[\"padding:.4rem 0\"]],[false,{\".bs-tooltip-auto[x-placement^=bottom] .arrow\":false,\".bs-tooltip-bottom .arrow\":false},[\"top:0\"]],[false,{\".bs-tooltip-auto[x-placement^=bottom] .arrow::before\":false,\".bs-tooltip-bottom .arrow::before\":false},[\"bottom:0\",\"border-width:0 .4rem .4rem\",\"border-bottom-color:#000\"]],[false,{\".bs-tooltip-auto[x-placement^=left]\":false,\".bs-tooltip-left\":false},[\"padding:0 .4rem\"]],[false,{\".bs-tooltip-auto[x-placement^=left] .arrow\":false,\".bs-tooltip-left .arrow\":false},[\"right:0\",\"width:.4rem\",\"height:.8rem\"]],[false,{\".bs-tooltip-auto[x-placement^=left] .arrow::before\":false,\".bs-tooltip-left .arrow::before\":false},[\"left:0\",\"border-width:.4rem 0 .4rem .4rem\",\"border-left-color:#000\"]],[false,{\".tooltip-inner\":false},[\"max-width:200px\",\"padding:.25rem .5rem\",\"color:#fff\",\"text-align:center\",\"background-color:#000\",\"border-radius:.25rem\"]],[false,{\".popover\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"z-index:1060\",\"display:block\",\"max-width:276px\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"font-style:normal\",\"font-weight:400\",\"line-height:1.5\",\"text-align:left\",\"text-align:start\",\"text-decoration:none\",\"text-shadow:none\",\"text-transform:none\",\"letter-spacing:normal\",\"word-break:normal\",\"word-spacing:normal\",\"white-space:normal\",\"line-break:auto\",\"font-size:.875rem\",\"word-wrap:break-word\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid rgba(0,0,0,.2)\",\"border-radius:.3rem\"]],[false,{\".popover .arrow\":false},[\"position:absolute\",\"display:block\",\"width:1rem\",\"height:.5rem\",\"margin:0 .3rem\"]],[false,{\".popover .arrow::after\":false,\".popover .arrow::before\":false},[\"position:absolute\",\"display:block\",\"content:\\\"\\\"\",\"border-color:transparent\",\"border-style:solid\"]],[false,{\".bs-popover-auto[x-placement^=top]\":false,\".bs-popover-top\":false},[\"margin-bottom:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow\":false,\".bs-popover-top .arrow\":false},[\"bottom:calc(( .5rem + 1px ) * -1)\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow::after\":false,\".bs-popover-auto[x-placement^=top] .arrow::before\":false,\".bs-popover-top .arrow::after\":false,\".bs-popover-top .arrow::before\":false},[\"border-width:.5rem .5rem 0\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow::before\":false,\".bs-popover-top .arrow::before\":false},[\"bottom:0\",\"border-top-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow::after\":false,\".bs-popover-top .arrow::after\":false},[\"bottom:1px\",\"border-top-color:#fff\"]],[false,{\".bs-popover-auto[x-placement^=right]\":false,\".bs-popover-right\":false},[\"margin-left:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow\":false,\".bs-popover-right .arrow\":false},[\"left:calc(( .5rem + 1px ) * -1)\",\"width:.5rem\",\"height:1rem\",\"margin:.3rem 0\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow::after\":false,\".bs-popover-auto[x-placement^=right] .arrow::before\":false,\".bs-popover-right .arrow::after\":false,\".bs-popover-right .arrow::before\":false},[\"border-width:.5rem .5rem .5rem 0\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow::before\":false,\".bs-popover-right .arrow::before\":false},[\"left:0\",\"border-right-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow::after\":false,\".bs-popover-right .arrow::after\":false},[\"left:1px\",\"border-right-color:#fff\"]],[false,{\".bs-popover-auto[x-placement^=bottom]\":false,\".bs-popover-bottom\":false},[\"margin-top:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow\":false,\".bs-popover-bottom .arrow\":false},[\"top:calc(( .5rem + 1px ) * -1)\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow::after\":false,\".bs-popover-auto[x-placement^=bottom] .arrow::before\":false,\".bs-popover-bottom .arrow::after\":false,\".bs-popover-bottom .arrow::before\":false},[\"border-width:0 .5rem .5rem .5rem\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow::before\":false,\".bs-popover-bottom .arrow::before\":false},[\"top:0\",\"border-bottom-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow::after\":false,\".bs-popover-bottom .arrow::after\":false},[\"top:1px\",\"border-bottom-color:#fff\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .popover-header::before\":false,\".bs-popover-bottom .popover-header::before\":false},[\"position:absolute\",\"top:0\",\"left:50%\",\"display:block\",\"width:1rem\",\"margin-left:-.5rem\",\"content:\\\"\\\"\",\"border-bottom:1px solid #f7f7f7\"]],[false,{\".bs-popover-auto[x-placement^=left]\":false,\".bs-popover-left\":false},[\"margin-right:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow\":false,\".bs-popover-left .arrow\":false},[\"right:calc(( .5rem + 1px ) * -1)\",\"width:.5rem\",\"height:1rem\",\"margin:.3rem 0\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow::after\":false,\".bs-popover-auto[x-placement^=left] .arrow::before\":false,\".bs-popover-left .arrow::after\":false,\".bs-popover-left .arrow::before\":false},[\"border-width:.5rem 0 .5rem .5rem\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow::before\":false,\".bs-popover-left .arrow::before\":false},[\"right:0\",\"border-left-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow::after\":false,\".bs-popover-left .arrow::after\":false},[\"right:1px\",\"border-left-color:#fff\"]],[false,{\".popover-header\":false},[\"padding:.5rem .75rem\",\"margin-bottom:0\",\"font-size:1rem\",\"color:inherit\",\"background-color:#f7f7f7\",\"border-bottom:1px solid #ebebeb\",\"border-top-left-radius:calc(.3rem - 1px)\",\"border-top-right-radius:calc(.3rem - 1px)\"]],[false,{\".popover-header:empty\":false},[\"display:none\"]],[false,{\".popover-body\":false},[\"padding:.5rem .75rem\",\"color:#212529\"]],[false,{\".carousel\":false},[\"position:relative\"]],[false,{\".carousel-inner\":false},[\"position:relative\",\"width:100%\",\"overflow:hidden\"]],[false,{\".carousel-item\":false},[\"position:relative\",\"display:none\",\"-ms-flex-align:center\",\"align-items:center\",\"width:100%\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"-webkit-perspective:1000px\",\"perspective:1000px\"]],[false,{\".carousel-item-next\":false,\".carousel-item-prev\":false,\".carousel-item.active\":false},[\"display:block\",\"transition:-webkit-transform .6s ease\",\"transition:transform .6s ease\",\"transition:transform .6s ease,-webkit-transform .6s ease\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".carousel-item-next\":false,\".carousel-item-prev\":false,\".carousel-item.active\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".carousel-item-next\":false,\".carousel-item-prev\":false},[\"position:absolute\",\"top:0\"]],[false,{\".carousel-item-next.carousel-item-left\":false,\".carousel-item-prev.carousel-item-right\":false},[\"-webkit-transform:translateX(0)\",\"transform:translateX(0)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".carousel-item-next.carousel-item-left\":false,\".carousel-item-prev.carousel-item-right\":false},[\"-webkit-transform:translate3d(0,0,0)\",\"transform:translate3d(0,0,0)\"]],[false,\"}\"],[false,{\".active.carousel-item-right\":false,\".carousel-item-next\":false},[\"-webkit-transform:translateX(100%)\",\"transform:translateX(100%)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".active.carousel-item-right\":false,\".carousel-item-next\":false},[\"-webkit-transform:translate3d(100%,0,0)\",\"transform:translate3d(100%,0,0)\"]],[false,\"}\"],[false,{\".active.carousel-item-left\":false,\".carousel-item-prev\":false},[\"-webkit-transform:translateX(-100%)\",\"transform:translateX(-100%)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".active.carousel-item-left\":false,\".carousel-item-prev\":false},[\"-webkit-transform:translate3d(-100%,0,0)\",\"transform:translate3d(-100%,0,0)\"]],[false,\"}\"],[false,{\".carousel-fade .carousel-item\":false},[\"opacity:0\",\"transition-duration:.6s\",\"transition-property:opacity\"]],[false,{\".carousel-fade .carousel-item-next.carousel-item-left\":false,\".carousel-fade .carousel-item-prev.carousel-item-right\":false,\".carousel-fade .carousel-item.active\":false},[\"opacity:1\"]],[false,{\".carousel-fade .active.carousel-item-left\":false,\".carousel-fade .active.carousel-item-right\":false},[\"opacity:0\"]],[false,{\".carousel-fade .active.carousel-item-left\":false,\".carousel-fade .active.carousel-item-prev\":false,\".carousel-fade .carousel-item-next\":false,\".carousel-fade .carousel-item-prev\":false,\".carousel-fade .carousel-item.active\":false},[\"-webkit-transform:translateX(0)\",\"transform:translateX(0)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".carousel-fade .active.carousel-item-left\":false,\".carousel-fade .active.carousel-item-prev\":false,\".carousel-fade .carousel-item-next\":false,\".carousel-fade .carousel-item-prev\":false,\".carousel-fade .carousel-item.active\":false},[\"-webkit-transform:translate3d(0,0,0)\",\"transform:translate3d(0,0,0)\"]],[false,\"}\"],[false,{\".carousel-control-next\":false,\".carousel-control-prev\":false},[\"position:absolute\",\"top:0\",\"bottom:0\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"width:15%\",\"color:#fff\",\"text-align:center\",\"opacity:.5\"]],[false,{\".carousel-control-next:focus\":false,\".carousel-control-next:hover\":false,\".carousel-control-prev:focus\":false,\".carousel-control-prev:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"outline:0\",\"opacity:.9\"]],[false,{\".carousel-control-prev\":false},[\"left:0\"]],[false,{\".carousel-control-next\":false},[\"right:0\"]],[false,{\".carousel-control-next-icon\":false,\".carousel-control-prev-icon\":false},[\"display:inline-block\",\"width:20px\",\"height:20px\",\"background:transparent no-repeat center center\",\"background-size:100% 100%\"]],[false,{\".carousel-control-prev-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' fill=\\\\\'%23fff\\\\\' viewBox=\\\\\'0 0 8 8\\\\\'%3E%3Cpath d=\\\\\'M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".carousel-control-next-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' fill=\\\\\'%23fff\\\\\' viewBox=\\\\\'0 0 8 8\\\\\'%3E%3Cpath d=\\\\\'M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".carousel-indicators\":false},[\"position:absolute\",\"right:0\",\"bottom:10px\",\"left:0\",\"z-index:15\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-pack:center\",\"justify-content:center\",\"padding-left:0\",\"margin-right:15%\",\"margin-left:15%\",\"list-style:none\"]],[false,{\".carousel-indicators li\":false},[\"position:relative\",\"-ms-flex:0 1 auto\",\"flex:0 1 auto\",\"width:30px\",\"height:3px\",\"margin-right:3px\",\"margin-left:3px\",\"text-indent:-999px\",\"cursor:pointer\",\"background-color:rgba(255,255,255,.5)\"]],[false,{\".carousel-indicators li::before\":false},[\"position:absolute\",\"top:-10px\",\"left:0\",\"display:inline-block\",\"width:100%\",\"height:10px\",\"content:\\\"\\\"\"]],[false,{\".carousel-indicators li::after\":false},[\"position:absolute\",\"bottom:-10px\",\"left:0\",\"display:inline-block\",\"width:100%\",\"height:10px\",\"content:\\\"\\\"\"]],[false,{\".carousel-indicators .active\":false},[\"background-color:#fff\"]],[false,{\".carousel-caption\":false},[\"position:absolute\",\"right:15%\",\"bottom:20px\",\"left:15%\",\"z-index:10\",\"padding-top:20px\",\"padding-bottom:20px\",\"color:#fff\",\"text-align:center\"]],[false,{\".align-baseline:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:baseline\"]],[false,{\".align-top:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:top\"]],[false,{\".align-middle:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:middle\"]],[false,{\".align-bottom:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:bottom\"]],[false,{\".align-text-bottom:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:text-bottom\"]],[false,{\".align-text-top:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:text-top\"]],[false,{\".bg-primary:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#007bff\"]],[false,{\"a.bg-primary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-primary:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-primary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-primary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#0062cc\"]],[false,{\".bg-secondary:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#6c757d\"]],[false,{\"a.bg-secondary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-secondary:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-secondary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-secondary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#545b62\"]],[false,{\".bg-success:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#28a745\"]],[false,{\"a.bg-success:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-success:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-success:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-success:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#1e7e34\"]],[false,{\".bg-info:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#17a2b8\"]],[false,{\"a.bg-info:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-info:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-info:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-info:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#117a8b\"]],[false,{\".bg-warning:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#ffc107\"]],[false,{\"a.bg-warning:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-warning:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-warning:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-warning:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#d39e00\"]],[false,{\".bg-danger:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#dc3545\"]],[false,{\"a.bg-danger:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-danger:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-danger:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-danger:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#bd2130\"]],[true,{\".bg-light:not(#_#_#_#_#_#_#_)\":true},[\"background-color:#f8f9fa\"]],[true,{\"a.bg-light:focus:not(#_#_#_#_#_#_#_#_)\":true,\"a.bg-light:hover:not(#_#_#_#_#_#_#_#_)\":true,\"button.bg-light:focus:not(#_#_#_#_#_#_#_#_)\":true,\"button.bg-light:hover:not(#_#_#_#_#_#_#_#_)\":true},[\"background-color:#dae0e5\"]],[false,{\".bg-dark:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#343a40\"]],[false,{\"a.bg-dark:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-dark:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-dark:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-dark:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#1d2124\"]],[false,{\".bg-white:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#fff\"]],[false,{\".bg-transparent:not(#_#_#_#_#_#_#_)\":false},[\"background-color:transparent\"]],[false,{\".border:not(#_#_#_#_#_#_#_)\":false},[\"border:1px solid #dee2e6\"]],[false,{\".border-top:not(#_#_#_#_#_#_#_)\":false},[\"border-top:1px solid #dee2e6\"]],[false,{\".border-right:not(#_#_#_#_#_#_#_)\":false},[\"border-right:1px solid #dee2e6\"]],[false,{\".border-bottom:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom:1px solid #dee2e6\"]],[false,{\".border-left:not(#_#_#_#_#_#_#_)\":false},[\"border-left:1px solid #dee2e6\"]],[false,{\".border-0:not(#_#_#_#_#_#_#_)\":false},[\"border:0\"]],[false,{\".border-top-0:not(#_#_#_#_#_#_#_)\":false},[\"border-top:0\"]],[false,{\".border-right-0:not(#_#_#_#_#_#_#_)\":false},[\"border-right:0\"]],[false,{\".border-bottom-0:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom:0\"]],[false,{\".border-left-0:not(#_#_#_#_#_#_#_)\":false},[\"border-left:0\"]],[false,{\".border-primary:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#007bff\"]],[false,{\".border-secondary:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#6c757d\"]],[false,{\".border-success:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#28a745\"]],[false,{\".border-info:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#17a2b8\"]],[false,{\".border-warning:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#ffc107\"]],[false,{\".border-danger:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#dc3545\"]],[false,{\".border-light:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#f8f9fa\"]],[false,{\".border-dark:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#343a40\"]],[false,{\".border-white:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#fff\"]],[false,{\".rounded:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:.25rem\"]],[false,{\".rounded-top:not(#_#_#_#_#_#_#_)\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".rounded-right:not(#_#_#_#_#_#_#_)\":false},[\"border-top-right-radius:.25rem\",\"border-bottom-right-radius:.25rem\"]],[false,{\".rounded-bottom:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".rounded-left:not(#_#_#_#_#_#_#_)\":false},[\"border-top-left-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".rounded-circle:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:50%\"]],[false,{\".rounded-0:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[false,{\".clearfix::after\":false},[\"display:block\",\"clear:both\",\"content:\\\"\\\"\"]],[false,{\".d-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"@media (min-width:576px){\"],[false,{\".d-sm-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-sm-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-sm-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-sm-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-sm-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-sm-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-sm-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-sm-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-sm-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".d-md-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-md-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-md-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-md-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-md-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-md-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-md-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-md-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-md-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".d-lg-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-lg-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-lg-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-lg-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-lg-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-lg-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-lg-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-lg-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-lg-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".d-xl-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-xl-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-xl-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-xl-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-xl-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-xl-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-xl-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-xl-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-xl-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media print{\"],[false,{\".d-print-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-print-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-print-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-print-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-print-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-print-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-print-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-print-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-print-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,{\".embed-responsive\":false},[\"position:relative\",\"display:block\",\"width:100%\",\"padding:0\",\"overflow:hidden\"]],[false,{\".embed-responsive::before\":false},[\"display:block\",\"content:\\\"\\\"\"]],[false,{\".embed-responsive .embed-responsive-item\":false,\".embed-responsive embed\":false,\".embed-responsive amp-iframe\":false,\".embed-responsive amp-google-document-embed\":false,\".embed-responsive amp-video\":false,\".embed-responsive amp-youtube\":false},[\"position:absolute\",\"top:0\",\"bottom:0\",\"left:0\",\"width:100%\",\"height:100%\",\"border:0\"]],[false,{\".embed-responsive-21by9::before\":false},[\"padding-top:42.857143%\"]],[false,{\".embed-responsive-16by9::before\":false},[\"padding-top:56.25%\"]],[false,{\".embed-responsive-4by3::before\":false},[\"padding-top:75%\"]],[false,{\".embed-responsive-1by1::before\":false},[\"padding-top:100%\"]],[false,{\".flex-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[true,{\".flex-column-reverse:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[true,{\".align-items-center:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"@media (min-width:576px){\"],[false,{\".flex-sm-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-sm-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-sm-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-sm-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-sm-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-sm-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-sm-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-sm-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-sm-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-sm-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-sm-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-sm-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-sm-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-sm-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-sm-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-sm-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-sm-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-sm-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-sm-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-sm-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-sm-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".flex-md-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-md-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-md-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-md-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-md-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-md-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-md-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-md-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-md-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-md-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-md-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-md-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-md-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-md-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-md-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-md-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-md-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-md-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-md-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-md-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-md-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[true,\"@media (min-width:992px){\"],[true,{\".flex-lg-row:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-lg-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-lg-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-lg-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-lg-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-lg-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-lg-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-lg-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-lg-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-lg-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-lg-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-lg-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-lg-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-lg-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-lg-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-lg-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-lg-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-lg-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-lg-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-lg-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-lg-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[true,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".flex-xl-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-xl-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-xl-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-xl-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-xl-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-xl-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-xl-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-xl-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-xl-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-xl-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-xl-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-xl-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-xl-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-xl-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-xl-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-xl-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-xl-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-xl-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-xl-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-xl-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-xl-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[false,{\".float-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"@media (min-width:576px){\"],[false,{\".float-sm-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-sm-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-sm-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".float-md-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-md-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-md-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".float-lg-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-lg-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-lg-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".float-xl-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-xl-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-xl-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,{\".position-static:not(#_#_#_#_#_#_#_)\":false},[\"position:static\"]],[false,{\".position-relative:not(#_#_#_#_#_#_#_)\":false},[\"position:relative\"]],[false,{\".position-absolute:not(#_#_#_#_#_#_#_)\":false},[\"position:absolute\"]],[false,{\".position-fixed:not(#_#_#_#_#_#_#_)\":false},[\"position:fixed\"]],[false,{\".position-sticky:not(#_#_#_#_#_#_#_)\":false},[\"position:-webkit-sticky\",\"position:sticky\"]],[false,{\".fixed-top\":false},[\"position:fixed\",\"top:0\",\"right:0\",\"left:0\",\"z-index:1030\"]],[false,{\".fixed-bottom\":false},[\"position:fixed\",\"right:0\",\"bottom:0\",\"left:0\",\"z-index:1030\"]],[false,\"@supports ((position:-webkit-sticky) or (position:sticky)){\"],[false,{\".sticky-top\":false},[\"position:-webkit-sticky\",\"position:sticky\",\"top:0\",\"z-index:1020\"]],[false,\"}\"],[false,{\".sr-only\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"white-space:nowrap\",\"border:0\"]],[false,{\".sr-only-focusable:active\":false,\".sr-only-focusable:focus\":false},[\"position:static\",\"width:auto\",\"height:auto\",\"overflow:visible\",\"clip:auto\",\"white-space:normal\"]],[false,{\".shadow-sm:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:0 .125rem .25rem rgba(0,0,0,.075)\"]],[false,{\".shadow:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:0 .5rem 1rem rgba(0,0,0,.15)\"]],[false,{\".shadow-lg:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:0 1rem 3rem rgba(0,0,0,.175)\"]],[false,{\".shadow-none:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:none\"]],[false,{\".w-25:not(#_#_#_#_#_#_#_)\":false},[\"width:25%\"]],[false,{\".w-50:not(#_#_#_#_#_#_#_)\":false},[\"width:50%\"]],[false,{\".w-75:not(#_#_#_#_#_#_#_)\":false},[\"width:75%\"]],[false,{\".w-100:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".w-auto:not(#_#_#_#_#_#_#_)\":false},[\"width:auto\"]],[false,{\".h-25:not(#_#_#_#_#_#_#_)\":false},[\"height:25%\"]],[false,{\".h-50:not(#_#_#_#_#_#_#_)\":false},[\"height:50%\"]],[false,{\".h-75:not(#_#_#_#_#_#_#_)\":false},[\"height:75%\"]],[false,{\".h-100:not(#_#_#_#_#_#_#_)\":false},[\"height:100%\"]],[false,{\".h-auto:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[false,{\".mw-100:not(#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".mh-100:not(#_#_#_#_#_#_#_)\":false},[\"max-height:100%\"]],[false,{\".m-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-0:not(#_#_#_#_#_#_#_)\":false,\".my-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-0:not(#_#_#_#_#_#_#_)\":false,\".mx-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-0:not(#_#_#_#_#_#_#_)\":false,\".my-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-0:not(#_#_#_#_#_#_#_)\":false,\".mx-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-1:not(#_#_#_#_#_#_#_)\":false,\".my-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-1:not(#_#_#_#_#_#_#_)\":false,\".mx-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-1:not(#_#_#_#_#_#_#_)\":false,\".my-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-1:not(#_#_#_#_#_#_#_)\":false,\".mx-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-2:not(#_#_#_#_#_#_#_)\":false,\".my-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-2:not(#_#_#_#_#_#_#_)\":false,\".mx-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-2:not(#_#_#_#_#_#_#_)\":false,\".my-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[true,{\".ml-2:not(#_#_#_#_#_#_#_)\":true,\".mx-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-3:not(#_#_#_#_#_#_#_)\":false,\".my-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-3:not(#_#_#_#_#_#_#_)\":false,\".mx-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-3:not(#_#_#_#_#_#_#_)\":false,\".my-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-3:not(#_#_#_#_#_#_#_)\":false,\".mx-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-4:not(#_#_#_#_#_#_#_)\":false,\".my-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-4:not(#_#_#_#_#_#_#_)\":false,\".mx-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-4:not(#_#_#_#_#_#_#_)\":false,\".my-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-4:not(#_#_#_#_#_#_#_)\":false,\".mx-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-5:not(#_#_#_#_#_#_#_)\":false,\".my-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-5:not(#_#_#_#_#_#_#_)\":false,\".mx-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-5:not(#_#_#_#_#_#_#_)\":false,\".my-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-5:not(#_#_#_#_#_#_#_)\":false,\".mx-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-0:not(#_#_#_#_#_#_#_)\":false,\".py-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-0:not(#_#_#_#_#_#_#_)\":false,\".px-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-0:not(#_#_#_#_#_#_#_)\":false,\".py-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-0:not(#_#_#_#_#_#_#_)\":false,\".px-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-1:not(#_#_#_#_#_#_#_)\":false,\".py-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-1:not(#_#_#_#_#_#_#_)\":false,\".px-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-1:not(#_#_#_#_#_#_#_)\":false,\".py-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-1:not(#_#_#_#_#_#_#_)\":false,\".px-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-2:not(#_#_#_#_#_#_#_)\":false,\".py-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-2:not(#_#_#_#_#_#_#_)\":false,\".px-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-2:not(#_#_#_#_#_#_#_)\":false,\".py-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-2:not(#_#_#_#_#_#_#_)\":false,\".px-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-3:not(#_#_#_#_#_#_#_)\":false,\".py-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-3:not(#_#_#_#_#_#_#_)\":false,\".px-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-3:not(#_#_#_#_#_#_#_)\":false,\".py-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-3:not(#_#_#_#_#_#_#_)\":false,\".px-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-4:not(#_#_#_#_#_#_#_)\":false,\".py-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-4:not(#_#_#_#_#_#_#_)\":false,\".px-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-4:not(#_#_#_#_#_#_#_)\":false,\".py-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-4:not(#_#_#_#_#_#_#_)\":false,\".px-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-5:not(#_#_#_#_#_#_#_)\":false,\".py-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-5:not(#_#_#_#_#_#_#_)\":false,\".px-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-5:not(#_#_#_#_#_#_#_)\":false,\".py-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-5:not(#_#_#_#_#_#_#_)\":false,\".px-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-auto:not(#_#_#_#_#_#_#_)\":false,\".my-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[true,{\".mr-auto:not(#_#_#_#_#_#_#_)\":true,\".mx-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-auto:not(#_#_#_#_#_#_#_)\":false,\".my-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"@media (min-width:576px){\"],[false,{\".m-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-sm-0:not(#_#_#_#_#_#_#_)\":false,\".my-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-sm-0:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-sm-0:not(#_#_#_#_#_#_#_)\":false,\".my-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-sm-0:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-sm-1:not(#_#_#_#_#_#_#_)\":false,\".my-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-sm-1:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-sm-1:not(#_#_#_#_#_#_#_)\":false,\".my-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-sm-1:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-sm-2:not(#_#_#_#_#_#_#_)\":false,\".my-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-sm-2:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-sm-2:not(#_#_#_#_#_#_#_)\":false,\".my-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-sm-2:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-sm-3:not(#_#_#_#_#_#_#_)\":false,\".my-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-sm-3:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-sm-3:not(#_#_#_#_#_#_#_)\":false,\".my-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-sm-3:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-sm-4:not(#_#_#_#_#_#_#_)\":false,\".my-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-sm-4:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-sm-4:not(#_#_#_#_#_#_#_)\":false,\".my-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-sm-4:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-sm-5:not(#_#_#_#_#_#_#_)\":false,\".my-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-sm-5:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-sm-5:not(#_#_#_#_#_#_#_)\":false,\".my-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-sm-5:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-sm-0:not(#_#_#_#_#_#_#_)\":false,\".py-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-sm-0:not(#_#_#_#_#_#_#_)\":false,\".px-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-sm-0:not(#_#_#_#_#_#_#_)\":false,\".py-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-sm-0:not(#_#_#_#_#_#_#_)\":false,\".px-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-sm-1:not(#_#_#_#_#_#_#_)\":false,\".py-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-sm-1:not(#_#_#_#_#_#_#_)\":false,\".px-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-sm-1:not(#_#_#_#_#_#_#_)\":false,\".py-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-sm-1:not(#_#_#_#_#_#_#_)\":false,\".px-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-sm-2:not(#_#_#_#_#_#_#_)\":false,\".py-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-sm-2:not(#_#_#_#_#_#_#_)\":false,\".px-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-sm-2:not(#_#_#_#_#_#_#_)\":false,\".py-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-sm-2:not(#_#_#_#_#_#_#_)\":false,\".px-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-sm-3:not(#_#_#_#_#_#_#_)\":false,\".py-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-sm-3:not(#_#_#_#_#_#_#_)\":false,\".px-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-sm-3:not(#_#_#_#_#_#_#_)\":false,\".py-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-sm-3:not(#_#_#_#_#_#_#_)\":false,\".px-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-sm-4:not(#_#_#_#_#_#_#_)\":false,\".py-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-sm-4:not(#_#_#_#_#_#_#_)\":false,\".px-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-sm-4:not(#_#_#_#_#_#_#_)\":false,\".py-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-sm-4:not(#_#_#_#_#_#_#_)\":false,\".px-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-sm-5:not(#_#_#_#_#_#_#_)\":false,\".py-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-sm-5:not(#_#_#_#_#_#_#_)\":false,\".px-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-sm-5:not(#_#_#_#_#_#_#_)\":false,\".py-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-sm-5:not(#_#_#_#_#_#_#_)\":false,\".px-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".my-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".my-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".m-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-md-0:not(#_#_#_#_#_#_#_)\":false,\".my-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-md-0:not(#_#_#_#_#_#_#_)\":false,\".mx-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-md-0:not(#_#_#_#_#_#_#_)\":false,\".my-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-md-0:not(#_#_#_#_#_#_#_)\":false,\".mx-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-md-1:not(#_#_#_#_#_#_#_)\":false,\".my-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-md-1:not(#_#_#_#_#_#_#_)\":false,\".mx-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-md-1:not(#_#_#_#_#_#_#_)\":false,\".my-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-md-1:not(#_#_#_#_#_#_#_)\":false,\".mx-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-md-2:not(#_#_#_#_#_#_#_)\":false,\".my-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-md-2:not(#_#_#_#_#_#_#_)\":false,\".mx-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-md-2:not(#_#_#_#_#_#_#_)\":false,\".my-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-md-2:not(#_#_#_#_#_#_#_)\":false,\".mx-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-md-3:not(#_#_#_#_#_#_#_)\":false,\".my-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-md-3:not(#_#_#_#_#_#_#_)\":false,\".mx-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-md-3:not(#_#_#_#_#_#_#_)\":false,\".my-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-md-3:not(#_#_#_#_#_#_#_)\":false,\".mx-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-md-4:not(#_#_#_#_#_#_#_)\":false,\".my-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-md-4:not(#_#_#_#_#_#_#_)\":false,\".mx-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-md-4:not(#_#_#_#_#_#_#_)\":false,\".my-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-md-4:not(#_#_#_#_#_#_#_)\":false,\".mx-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-md-5:not(#_#_#_#_#_#_#_)\":false,\".my-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-md-5:not(#_#_#_#_#_#_#_)\":false,\".mx-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-md-5:not(#_#_#_#_#_#_#_)\":false,\".my-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-md-5:not(#_#_#_#_#_#_#_)\":false,\".mx-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-md-0:not(#_#_#_#_#_#_#_)\":false,\".py-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-md-0:not(#_#_#_#_#_#_#_)\":false,\".px-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-md-0:not(#_#_#_#_#_#_#_)\":false,\".py-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-md-0:not(#_#_#_#_#_#_#_)\":false,\".px-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-md-1:not(#_#_#_#_#_#_#_)\":false,\".py-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-md-1:not(#_#_#_#_#_#_#_)\":false,\".px-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-md-1:not(#_#_#_#_#_#_#_)\":false,\".py-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-md-1:not(#_#_#_#_#_#_#_)\":false,\".px-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-md-2:not(#_#_#_#_#_#_#_)\":false,\".py-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-md-2:not(#_#_#_#_#_#_#_)\":false,\".px-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-md-2:not(#_#_#_#_#_#_#_)\":false,\".py-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-md-2:not(#_#_#_#_#_#_#_)\":false,\".px-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-md-3:not(#_#_#_#_#_#_#_)\":false,\".py-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-md-3:not(#_#_#_#_#_#_#_)\":false,\".px-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-md-3:not(#_#_#_#_#_#_#_)\":false,\".py-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-md-3:not(#_#_#_#_#_#_#_)\":false,\".px-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-md-4:not(#_#_#_#_#_#_#_)\":false,\".py-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-md-4:not(#_#_#_#_#_#_#_)\":false,\".px-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-md-4:not(#_#_#_#_#_#_#_)\":false,\".py-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-md-4:not(#_#_#_#_#_#_#_)\":false,\".px-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-md-5:not(#_#_#_#_#_#_#_)\":false,\".py-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-md-5:not(#_#_#_#_#_#_#_)\":false,\".px-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-md-5:not(#_#_#_#_#_#_#_)\":false,\".py-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-md-5:not(#_#_#_#_#_#_#_)\":false,\".px-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-md-auto:not(#_#_#_#_#_#_#_)\":false,\".my-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-md-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-md-auto:not(#_#_#_#_#_#_#_)\":false,\".my-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-md-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".m-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-lg-0:not(#_#_#_#_#_#_#_)\":false,\".my-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-lg-0:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-lg-0:not(#_#_#_#_#_#_#_)\":false,\".my-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-lg-0:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-lg-1:not(#_#_#_#_#_#_#_)\":false,\".my-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-lg-1:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-lg-1:not(#_#_#_#_#_#_#_)\":false,\".my-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-lg-1:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-lg-2:not(#_#_#_#_#_#_#_)\":false,\".my-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-lg-2:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-lg-2:not(#_#_#_#_#_#_#_)\":false,\".my-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-lg-2:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-lg-3:not(#_#_#_#_#_#_#_)\":false,\".my-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-lg-3:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-lg-3:not(#_#_#_#_#_#_#_)\":false,\".my-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-lg-3:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-lg-4:not(#_#_#_#_#_#_#_)\":false,\".my-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-lg-4:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-lg-4:not(#_#_#_#_#_#_#_)\":false,\".my-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-lg-4:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-lg-5:not(#_#_#_#_#_#_#_)\":false,\".my-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-lg-5:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-lg-5:not(#_#_#_#_#_#_#_)\":false,\".my-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-lg-5:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-lg-0:not(#_#_#_#_#_#_#_)\":false,\".py-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-lg-0:not(#_#_#_#_#_#_#_)\":false,\".px-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-lg-0:not(#_#_#_#_#_#_#_)\":false,\".py-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-lg-0:not(#_#_#_#_#_#_#_)\":false,\".px-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-lg-1:not(#_#_#_#_#_#_#_)\":false,\".py-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-lg-1:not(#_#_#_#_#_#_#_)\":false,\".px-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-lg-1:not(#_#_#_#_#_#_#_)\":false,\".py-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-lg-1:not(#_#_#_#_#_#_#_)\":false,\".px-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-lg-2:not(#_#_#_#_#_#_#_)\":false,\".py-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-lg-2:not(#_#_#_#_#_#_#_)\":false,\".px-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-lg-2:not(#_#_#_#_#_#_#_)\":false,\".py-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-lg-2:not(#_#_#_#_#_#_#_)\":false,\".px-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-lg-3:not(#_#_#_#_#_#_#_)\":false,\".py-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-lg-3:not(#_#_#_#_#_#_#_)\":false,\".px-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-lg-3:not(#_#_#_#_#_#_#_)\":false,\".py-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-lg-3:not(#_#_#_#_#_#_#_)\":false,\".px-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-lg-4:not(#_#_#_#_#_#_#_)\":false,\".py-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-lg-4:not(#_#_#_#_#_#_#_)\":false,\".px-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-lg-4:not(#_#_#_#_#_#_#_)\":false,\".py-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-lg-4:not(#_#_#_#_#_#_#_)\":false,\".px-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-lg-5:not(#_#_#_#_#_#_#_)\":false,\".py-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-lg-5:not(#_#_#_#_#_#_#_)\":false,\".px-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-lg-5:not(#_#_#_#_#_#_#_)\":false,\".py-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-lg-5:not(#_#_#_#_#_#_#_)\":false,\".px-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".my-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".my-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".m-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-xl-0:not(#_#_#_#_#_#_#_)\":false,\".my-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-xl-0:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-xl-0:not(#_#_#_#_#_#_#_)\":false,\".my-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-xl-0:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-xl-1:not(#_#_#_#_#_#_#_)\":false,\".my-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-xl-1:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-xl-1:not(#_#_#_#_#_#_#_)\":false,\".my-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-xl-1:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-xl-2:not(#_#_#_#_#_#_#_)\":false,\".my-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-xl-2:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-xl-2:not(#_#_#_#_#_#_#_)\":false,\".my-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-xl-2:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-xl-3:not(#_#_#_#_#_#_#_)\":false,\".my-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-xl-3:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-xl-3:not(#_#_#_#_#_#_#_)\":false,\".my-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-xl-3:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-xl-4:not(#_#_#_#_#_#_#_)\":false,\".my-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-xl-4:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-xl-4:not(#_#_#_#_#_#_#_)\":false,\".my-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-xl-4:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-xl-5:not(#_#_#_#_#_#_#_)\":false,\".my-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-xl-5:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-xl-5:not(#_#_#_#_#_#_#_)\":false,\".my-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-xl-5:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-xl-0:not(#_#_#_#_#_#_#_)\":false,\".py-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-xl-0:not(#_#_#_#_#_#_#_)\":false,\".px-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-xl-0:not(#_#_#_#_#_#_#_)\":false,\".py-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-xl-0:not(#_#_#_#_#_#_#_)\":false,\".px-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-xl-1:not(#_#_#_#_#_#_#_)\":false,\".py-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-xl-1:not(#_#_#_#_#_#_#_)\":false,\".px-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-xl-1:not(#_#_#_#_#_#_#_)\":false,\".py-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-xl-1:not(#_#_#_#_#_#_#_)\":false,\".px-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-xl-2:not(#_#_#_#_#_#_#_)\":false,\".py-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-xl-2:not(#_#_#_#_#_#_#_)\":false,\".px-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-xl-2:not(#_#_#_#_#_#_#_)\":false,\".py-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-xl-2:not(#_#_#_#_#_#_#_)\":false,\".px-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-xl-3:not(#_#_#_#_#_#_#_)\":false,\".py-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-xl-3:not(#_#_#_#_#_#_#_)\":false,\".px-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-xl-3:not(#_#_#_#_#_#_#_)\":false,\".py-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-xl-3:not(#_#_#_#_#_#_#_)\":false,\".px-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-xl-4:not(#_#_#_#_#_#_#_)\":false,\".py-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-xl-4:not(#_#_#_#_#_#_#_)\":false,\".px-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-xl-4:not(#_#_#_#_#_#_#_)\":false,\".py-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-xl-4:not(#_#_#_#_#_#_#_)\":false,\".px-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-xl-5:not(#_#_#_#_#_#_#_)\":false,\".py-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-xl-5:not(#_#_#_#_#_#_#_)\":false,\".px-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-xl-5:not(#_#_#_#_#_#_#_)\":false,\".py-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-xl-5:not(#_#_#_#_#_#_#_)\":false,\".px-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".my-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".my-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,{\".text-monospace\":false},[\"font-family:SFMono-Regular,Menlo,Monaco,Consolas,\\\"Liberation Mono\\\",\\\"Courier New\\\",monospace\"]],[false,{\".text-justify:not(#_#_#_#_#_#_#_)\":false},[\"text-align:justify\"]],[false,{\".text-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"white-space:nowrap\"]],[false,{\".text-truncate\":false},[\"overflow:hidden\",\"text-overflow:ellipsis\",\"white-space:nowrap\"]],[false,{\".text-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"@media (min-width:576px){\"],[false,{\".text-sm-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-sm-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".text-md-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-md-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-md-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".text-lg-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-lg-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".text-xl-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-xl-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".text-lowercase:not(#_#_#_#_#_#_#_)\":false},[\"text-transform:lowercase\"]],[false,{\".text-uppercase:not(#_#_#_#_#_#_#_)\":false},[\"text-transform:uppercase\"]],[false,{\".text-capitalize:not(#_#_#_#_#_#_#_)\":false},[\"text-transform:capitalize\"]],[false,{\".font-weight-light:not(#_#_#_#_#_#_#_)\":false},[\"font-weight:300\"]],[false,{\".font-weight-normal:not(#_#_#_#_#_#_#_)\":false},[\"font-weight:400\"]],[false,{\".font-weight-bold:not(#_#_#_#_#_#_#_)\":false},[\"font-weight:700\"]],[false,{\".font-italic:not(#_#_#_#_#_#_#_)\":false},[\"font-style:italic\"]],[false,{\".text-white:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".text-primary:not(#_#_#_#_#_#_#_)\":false},[\"color:#007bff\"]],[false,{\"a.text-primary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-primary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#0062cc\"]],[false,{\".text-secondary:not(#_#_#_#_#_#_#_)\":false},[\"color:#6c757d\"]],[false,{\"a.text-secondary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-secondary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#545b62\"]],[false,{\".text-success:not(#_#_#_#_#_#_#_)\":false},[\"color:#28a745\"]],[false,{\"a.text-success:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-success:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#1e7e34\"]],[false,{\".text-info:not(#_#_#_#_#_#_#_)\":false},[\"color:#17a2b8\"]],[false,{\"a.text-info:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-info:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#117a8b\"]],[false,{\".text-warning:not(#_#_#_#_#_#_#_)\":false},[\"color:#ffc107\"]],[false,{\"a.text-warning:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-warning:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#d39e00\"]],[false,{\".text-danger:not(#_#_#_#_#_#_#_)\":false},[\"color:#dc3545\"]],[false,{\"a.text-danger:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-danger:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#bd2130\"]],[false,{\".text-light:not(#_#_#_#_#_#_#_)\":false},[\"color:#f8f9fa\"]],[false,{\"a.text-light:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-light:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#dae0e5\"]],[false,{\".text-dark:not(#_#_#_#_#_#_#_)\":false},[\"color:#343a40\"]],[false,{\"a.text-dark:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-dark:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#1d2124\"]],[false,{\".text-body:not(#_#_#_#_#_#_#_)\":false},[\"color:#212529\"]],[false,{\".text-muted:not(#_#_#_#_#_#_#_)\":false},[\"color:#6c757d\"]],[false,{\".text-black-50:not(#_#_#_#_#_#_#_)\":false},[\"color:rgba(0,0,0,.5)\"]],[false,{\".text-white-50:not(#_#_#_#_#_#_#_)\":false},[\"color:rgba(255,255,255,.5)\"]],[false,{\".text-hide\":false},[\"font:0\\/0 a\",\"color:transparent\",\"text-shadow:none\",\"background-color:transparent\",\"border:0\"]],[false,{\".visible:not(#_#_#_#_#_#_#_)\":false},[\"visibility:visible\"]],[false,{\".invisible:not(#_#_#_#_#_#_#_)\":false},[\"visibility:hidden\"]],[true,\"@media print{\"],[true,{\"*:not(#_#_#_#_#_#_)\":true,\"::after:not(#_#_#_#_#_#_#_#_)\":true,\"::before:not(#_#_#_#_#_#_#_#_)\":true},[\"text-shadow:none\",\"box-shadow:none\"]],[true,{\"a:not(.btn)\":true},[\"text-decoration:underline\"]],[false,{\"abbr[title]::after\":false},[\"content:\\\" (\\\" attr(title) \\\")\\\"\"]],[false,{\"pre:not(#_#_#_#_#_#_#_#_)\":false},[\"white-space:pre-wrap\"]],[false,{\"blockquote\":false,\"pre\":false},[\"border:1px solid #adb5bd\",\"page-break-inside:avoid\"]],[false,{\"thead\":false},[\"display:table-header-group\"]],[true,{\"amp-img\":true,\"amp-anim\":false,\"tr\":false},[\"page-break-inside:avoid\"]],[true,{\"h2\":false,\"h3\":true,\"p\":true},[\"orphans:3\",\"widows:3\"]],[true,{\"h2\":false,\"h3\":true},[\"page-break-after:avoid\"]],[true,\"@page{size:a3}\"],[true,{\"body:not(#_#_#_#_#_#_#_#_)\":true},[\"min-width:992px\"]],[true,{\".container:not(#_#_#_#_#_#_#_)\":true},[\"min-width:992px\"]],[true,{\".navbar\":true},[\"display:none\"]],[false,{\".badge\":false},[\"border:1px solid #000\"]],[false,{\".table:not(#_#_#_#_#_#_#_)\":false},[\"border-collapse:collapse\"]],[false,{\".table td:not(#_#_#_#_#_#_#_#_)\":false,\".table th:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#fff\"]],[false,{\".table-bordered td:not(#_#_#_#_#_#_#_#_)\":false,\".table-bordered th:not(#_#_#_#_#_#_#_#_)\":false},[\"border:1px solid #dee2e6\"]],[false,{\".table-dark\":false},[\"color:inherit\"]],[false,{\".table-dark tbody+tbody\":false,\".table-dark td\":false,\".table-dark th\":false,\".table-dark thead th\":false},[\"border-color:#dee2e6\"]],[false,{\".table .thead-dark th\":false},[\"color:inherit\",\"border-color:#dee2e6\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":68760,\"final_size\":48135,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/animate.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"a2e2915566ab9cb1c9ab842793acd3f3\",\"parse_time\":0.38850998878479004,\"shake_time\":0.00039005279541015625,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".animated\":false},[\"-webkit-animation-duration:1s\",\"animation-duration:1s\",\"-webkit-animation-fill-mode:both\",\"animation-fill-mode:both\"]],[false,{\".animated.infinite\":false},[\"-webkit-animation-iteration-count:infinite\",\"animation-iteration-count:infinite\"]],[false,{\".animated.hinge\":false},[\"-webkit-animation-duration:2s\",\"animation-duration:2s\"]],[true,\"@-webkit-keyframes bounce{\"],[true,\"0%,20%,50%,80%,100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}\"],[true,\"}@keyframes bounce{\"],[true,\"0%,20%,50%,80%,100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"40%{-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"60%{-webkit-transform:translateY(-15px);-ms-transform:translateY(-15px);transform:translateY(-15px)}\"],[true,\"}\"],[false,{\".bounce\":false},[\"-webkit-animation-name:bounce\",\"animation-name:bounce\"]],[true,\"@-webkit-keyframes flash{\"],[true,\"0%,50%,100%{opacity:1}\"],[true,\"25%,75%{opacity:0}\"],[true,\"}@keyframes flash{\"],[true,\"0%,50%,100%{opacity:1}\"],[true,\"25%,75%{opacity:0}\"],[true,\"}\"],[false,{\".flash\":false},[\"-webkit-animation-name:flash\",\"animation-name:flash\"]],[true,\"@-webkit-keyframes pulse{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{-webkit-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes pulse{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"50%{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,{\".pulse\":false},[\"-webkit-animation-name:pulse\",\"animation-name:pulse\"]],[true,\"@-webkit-keyframes rubberBand{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"30%{-webkit-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}\"],[true,\"40%{-webkit-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}\"],[true,\"60%{-webkit-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}\"],[true,\"100%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes rubberBand{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"30%{-webkit-transform:scaleX(1.25) scaleY(.75);-ms-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}\"],[true,\"40%{-webkit-transform:scaleX(.75) scaleY(1.25);-ms-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}\"],[true,\"60%{-webkit-transform:scaleX(1.15) scaleY(.85);-ms-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}\"],[true,\"100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,{\".rubberBand\":false},[\"-webkit-animation-name:rubberBand\",\"animation-name:rubberBand\"]],[true,\"@-webkit-keyframes shake{\"],[true,\"0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"}@keyframes shake{\"],[true,\"0%,100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"20%,40%,60%,80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"}\"],[false,{\".shake\":false},[\"-webkit-animation-name:shake\",\"animation-name:shake\"]],[true,\"@-webkit-keyframes swing{\"],[true,\"20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}\"],[true,\"60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}\"],[true,\"80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}\"],[true,\"100%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}@keyframes swing{\"],[true,\"20%{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"40%{-webkit-transform:rotate(-10deg);-ms-transform:rotate(-10deg);transform:rotate(-10deg)}\"],[true,\"60%{-webkit-transform:rotate(5deg);-ms-transform:rotate(5deg);transform:rotate(5deg)}\"],[true,\"80%{-webkit-transform:rotate(-5deg);-ms-transform:rotate(-5deg);transform:rotate(-5deg)}\"],[true,\"100%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}\"],[false,{\".swing\":false},[\"-webkit-transform-origin:top center\",\"-ms-transform-origin:top center\",\"transform-origin:top center\",\"-webkit-animation-name:swing\",\"animation-name:swing\"]],[true,\"@-webkit-keyframes tada{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}\"],[true,\"30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}\"],[true,\"40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}\"],[true,\"100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}\"],[true,\"}@keyframes tada{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"10%,20%{-webkit-transform:scale(.9) rotate(-3deg);-ms-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}\"],[true,\"30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);-ms-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}\"],[true,\"40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);-ms-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}\"],[true,\"100%{-webkit-transform:scale(1) rotate(0);-ms-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}\"],[true,\"}\"],[false,{\".tada\":false},[\"-webkit-animation-name:tada\",\"animation-name:tada\"]],[true,\"@-webkit-keyframes wobble{\"],[true,\"0%{-webkit-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"15%{-webkit-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}\"],[true,\"30%{-webkit-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}\"],[true,\"45%{-webkit-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}\"],[true,\"60%{-webkit-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}\"],[true,\"75%{-webkit-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}\"],[true,\"100%{-webkit-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"}@keyframes wobble{\"],[true,\"0%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"15%{-webkit-transform:translateX(-25%) rotate(-5deg);-ms-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}\"],[true,\"30%{-webkit-transform:translateX(20%) rotate(3deg);-ms-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}\"],[true,\"45%{-webkit-transform:translateX(-15%) rotate(-3deg);-ms-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}\"],[true,\"60%{-webkit-transform:translateX(10%) rotate(2deg);-ms-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}\"],[true,\"75%{-webkit-transform:translateX(-5%) rotate(-1deg);-ms-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}\"],[true,\"100%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"}\"],[false,{\".wobble\":false},[\"-webkit-animation-name:wobble\",\"animation-name:wobble\"]],[true,\"@-webkit-keyframes bounceIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}\"],[true,\"70%{-webkit-transform:scale(.9);transform:scale(.9)}\"],[true,\"100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes bounceIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}\"],[true,\"70%{-webkit-transform:scale(.9);-ms-transform:scale(.9);transform:scale(.9)}\"],[true,\"100%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,{\".bounceIn\":false},[\"-webkit-animation-name:bounceIn\",\"animation-name:bounceIn\"]],[true,\"@-webkit-keyframes bounceInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}\"],[true,\"80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}\"],[true,\"100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes bounceInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px)}\"],[true,\"80%{-webkit-transform:translateY(-10px);-ms-transform:translateY(-10px);transform:translateY(-10px)}\"],[true,\"100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".bounceInDown\":false},[\"-webkit-animation-name:bounceInDown\",\"animation-name:bounceInDown\"]],[true,\"@-webkit-keyframes bounceInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(30px);transform:translateX(30px)}\"],[true,\"80%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes bounceInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(30px);-ms-transform:translateX(30px);transform:translateX(30px)}\"],[true,\"80%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".bounceInLeft\":false},[\"-webkit-animation-name:bounceInLeft\",\"animation-name:bounceInLeft\"]],[true,\"@-webkit-keyframes bounceInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(-30px);transform:translateX(-30px)}\"],[true,\"80%{-webkit-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes bounceInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(-30px);-ms-transform:translateX(-30px);transform:translateX(-30px)}\"],[true,\"80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".bounceInRight\":false},[\"-webkit-animation-name:bounceInRight\",\"animation-name:bounceInRight\"]],[true,\"@-webkit-keyframes bounceInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"80%{-webkit-transform:translateY(10px);transform:translateY(10px)}\"],[true,\"100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes bounceInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"80%{-webkit-transform:translateY(10px);-ms-transform:translateY(10px);transform:translateY(10px)}\"],[true,\"100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".bounceInUp\":false},[\"-webkit-animation-name:bounceInUp\",\"animation-name:bounceInUp\"]],[true,\"@-webkit-keyframes bounceOut{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"25%{-webkit-transform:scale(.95);transform:scale(.95)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"}@keyframes bounceOut{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"25%{-webkit-transform:scale(.95);-ms-transform:scale(.95);transform:scale(.95)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"}\"],[false,{\".bounceOut\":false},[\"-webkit-animation-name:bounceOut\",\"animation-name:bounceOut\"]],[true,\"@-webkit-keyframes bounceOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}@keyframes bounceOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}\"],[false,{\".bounceOutDown\":false},[\"-webkit-animation-name:bounceOutDown\",\"animation-name:bounceOutDown\"]],[true,\"@-webkit-keyframes bounceOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}@keyframes bounceOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}\"],[false,{\".bounceOutLeft\":false},[\"-webkit-animation-name:bounceOutLeft\",\"animation-name:bounceOutLeft\"]],[true,\"@-webkit-keyframes bounceOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}@keyframes bounceOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}\"],[false,{\".bounceOutRight\":false},[\"-webkit-animation-name:bounceOutRight\",\"animation-name:bounceOutRight\"]],[true,\"@-webkit-keyframes bounceOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}@keyframes bounceOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}\"],[false,{\".bounceOutUp\":false},[\"-webkit-animation-name:bounceOutUp\",\"animation-name:bounceOutUp\"]],[true,\"@-webkit-keyframes fadeIn{\"],[true,\"0%{opacity:0}\"],[true,\"100%{opacity:1}\"],[true,\"}@keyframes fadeIn{\"],[true,\"0%{opacity:0}\"],[true,\"100%{opacity:1}\"],[true,\"}\"],[false,{\".fadeIn\":false},[\"-webkit-animation-name:fadeIn\",\"animation-name:fadeIn\"]],[true,\"@-webkit-keyframes fadeInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInDown\":false},[\"-webkit-animation-name:fadeInDown\",\"animation-name:fadeInDown\"]],[true,\"@-webkit-keyframes fadeInDownBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInDownBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInDownBig\":false},[\"-webkit-animation-name:fadeInDownBig\",\"animation-name:fadeInDownBig\"]],[true,\"@-webkit-keyframes fadeInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInLeft\":false},[\"-webkit-animation-name:fadeInLeft\",\"animation-name:fadeInLeft\"]],[true,\"@-webkit-keyframes fadeInLeftBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInLeftBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInLeftBig\":false},[\"-webkit-animation-name:fadeInLeftBig\",\"animation-name:fadeInLeftBig\"]],[true,\"@-webkit-keyframes fadeInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInRight\":false},[\"-webkit-animation-name:fadeInRight\",\"animation-name:fadeInRight\"]],[true,\"@-webkit-keyframes fadeInRightBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInRightBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInRightBig\":false},[\"-webkit-animation-name:fadeInRightBig\",\"animation-name:fadeInRightBig\"]],[true,\"@-webkit-keyframes fadeInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInUp\":false},[\"-webkit-animation-name:fadeInUp\",\"animation-name:fadeInUp\"]],[true,\"@-webkit-keyframes fadeInUpBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInUpBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInUpBig\":false},[\"-webkit-animation-name:fadeInUpBig\",\"animation-name:fadeInUpBig\"]],[true,\"@-webkit-keyframes fadeOut{\"],[true,\"0%{opacity:1}\"],[true,\"100%{opacity:0}\"],[true,\"}@keyframes fadeOut{\"],[true,\"0%{opacity:1}\"],[true,\"100%{opacity:0}\"],[true,\"}\"],[false,{\".fadeOut\":false},[\"-webkit-animation-name:fadeOut\",\"animation-name:fadeOut\"]],[true,\"@-webkit-keyframes fadeOutDown{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"}@keyframes fadeOutDown{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"}\"],[false,{\".fadeOutDown\":false},[\"-webkit-animation-name:fadeOutDown\",\"animation-name:fadeOutDown\"]],[true,\"@-webkit-keyframes fadeOutDownBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}@keyframes fadeOutDownBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}\"],[false,{\".fadeOutDownBig\":false},[\"-webkit-animation-name:fadeOutDownBig\",\"animation-name:fadeOutDownBig\"]],[true,\"@-webkit-keyframes fadeOutLeft{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"}@keyframes fadeOutLeft{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"}\"],[false,{\".fadeOutLeft\":false},[\"-webkit-animation-name:fadeOutLeft\",\"animation-name:fadeOutLeft\"]],[true,\"@-webkit-keyframes fadeOutLeftBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}@keyframes fadeOutLeftBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}\"],[false,{\".fadeOutLeftBig\":false},[\"-webkit-animation-name:fadeOutLeftBig\",\"animation-name:fadeOutLeftBig\"]],[true,\"@-webkit-keyframes fadeOutRight{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"}@keyframes fadeOutRight{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"}\"],[false,{\".fadeOutRight\":false},[\"-webkit-animation-name:fadeOutRight\",\"animation-name:fadeOutRight\"]],[true,\"@-webkit-keyframes fadeOutRightBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}@keyframes fadeOutRightBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}\"],[false,{\".fadeOutRightBig\":false},[\"-webkit-animation-name:fadeOutRightBig\",\"animation-name:fadeOutRightBig\"]],[true,\"@-webkit-keyframes fadeOutUp{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"}@keyframes fadeOutUp{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"}\"],[false,{\".fadeOutUp\":false},[\"-webkit-animation-name:fadeOutUp\",\"animation-name:fadeOutUp\"]],[true,\"@-webkit-keyframes fadeOutUpBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}@keyframes fadeOutUpBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}\"],[false,{\".fadeOutUpBig\":false},[\"-webkit-animation-name:fadeOutUpBig\",\"animation-name:fadeOutUpBig\"]],[true,\"@-webkit-keyframes flip{\"],[true,\"0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"}@keyframes flip{\"],[true,\"0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);-ms-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"}\"],[false,{\".animated.flip\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\",\"-webkit-animation-name:flip\",\"animation-name:flip\"]],[true,\"@-webkit-keyframes flipInX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"}@keyframes flipInX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateX(-10deg);-ms-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateX(10deg);-ms-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"}\"],[false,{\".flipInX\":false},[\"-webkit-animation-name:flipInX\",\"animation-name:flipInX\"]],[false,{\".flipInX:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes flipInY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"}@keyframes flipInY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateY(-10deg);-ms-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateY(10deg);-ms-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"}\"],[false,{\".flipInY\":false},[\"-webkit-animation-name:flipInY\",\"animation-name:flipInY\"]],[false,{\".flipInY:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes flipOutX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"}@keyframes flipOutX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"}\"],[false,{\".flipOutX\":false},[\"-webkit-animation-name:flipOutX\",\"animation-name:flipOutX\"]],[false,{\".flipOutX:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes flipOutY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"}@keyframes flipOutY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"}\"],[false,{\".flipOutY\":false},[\"-webkit-animation-name:flipOutY\",\"animation-name:flipOutY\"]],[false,{\".flipOutY:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes lightSpeedIn{\"],[true,\"0%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"60%{-webkit-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}\"],[true,\"80%{-webkit-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"}@keyframes lightSpeedIn{\"],[true,\"0%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"60%{-webkit-transform:translateX(-20%) skewX(30deg);-ms-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}\"],[true,\"80%{-webkit-transform:translateX(0%) skewX(-15deg);-ms-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"}\"],[false,{\".lightSpeedIn\":false},[\"-webkit-animation-name:lightSpeedIn\",\"animation-name:lightSpeedIn\",\"-webkit-animation-timing-function:ease-out\",\"animation-timing-function:ease-out\"]],[true,\"@-webkit-keyframes lightSpeedOut{\"],[true,\"0%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"}@keyframes lightSpeedOut{\"],[true,\"0%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"}\"],[false,{\".lightSpeedOut\":false},[\"-webkit-animation-name:lightSpeedOut\",\"animation-name:lightSpeedOut\",\"-webkit-animation-timing-function:ease-in\",\"animation-timing-function:ease-in\"]],[true,\"@-webkit-keyframes rotateIn{\"],[true,\"0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateIn{\"],[true,\"0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);-ms-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateIn\":false},[\"-webkit-animation-name:rotateIn\",\"animation-name:rotateIn\"]],[true,\"@-webkit-keyframes rotateInDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInDownLeft\":false},[\"-webkit-animation-name:rotateInDownLeft\",\"animation-name:rotateInDownLeft\"]],[true,\"@-webkit-keyframes rotateInDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInDownRight\":false},[\"-webkit-animation-name:rotateInDownRight\",\"animation-name:rotateInDownRight\"]],[true,\"@-webkit-keyframes rotateInUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInUpLeft\":false},[\"-webkit-animation-name:rotateInUpLeft\",\"animation-name:rotateInUpLeft\"]],[true,\"@-webkit-keyframes rotateInUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInUpRight\":false},[\"-webkit-animation-name:rotateInUpRight\",\"animation-name:rotateInUpRight\"]],[true,\"@-webkit-keyframes rotateOut{\"],[true,\"0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}\"],[true,\"}@keyframes rotateOut{\"],[true,\"0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);-ms-transform:rotate(200deg);transform:rotate(200deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOut\":false},[\"-webkit-animation-name:rotateOut\",\"animation-name:rotateOut\"]],[true,\"@-webkit-keyframes rotateOutDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}@keyframes rotateOutDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutDownLeft\":false},[\"-webkit-animation-name:rotateOutDownLeft\",\"animation-name:rotateOutDownLeft\"]],[true,\"@-webkit-keyframes rotateOutDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}@keyframes rotateOutDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutDownRight\":false},[\"-webkit-animation-name:rotateOutDownRight\",\"animation-name:rotateOutDownRight\"]],[true,\"@-webkit-keyframes rotateOutUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}@keyframes rotateOutUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutUpLeft\":false},[\"-webkit-animation-name:rotateOutUpLeft\",\"animation-name:rotateOutUpLeft\"]],[true,\"@-webkit-keyframes rotateOutUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}@keyframes rotateOutUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutUpRight\":false},[\"-webkit-animation-name:rotateOutUpRight\",\"animation-name:rotateOutUpRight\"]],[true,\"@-webkit-keyframes slideInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes slideInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".slideInDown\":false},[\"-webkit-animation-name:slideInDown\",\"animation-name:slideInDown\"]],[true,\"@-webkit-keyframes slideInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes slideInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".slideInLeft\":false},[\"-webkit-animation-name:slideInLeft\",\"animation-name:slideInLeft\"]],[true,\"@-webkit-keyframes slideInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes slideInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".slideInRight\":false},[\"-webkit-animation-name:slideInRight\",\"animation-name:slideInRight\"]],[true,\"@-webkit-keyframes slideOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}@keyframes slideOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}\"],[false,{\".slideOutLeft\":false},[\"-webkit-animation-name:slideOutLeft\",\"animation-name:slideOutLeft\"]],[true,\"@-webkit-keyframes slideOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}@keyframes slideOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}\"],[false,{\".slideOutRight\":false},[\"-webkit-animation-name:slideOutRight\",\"animation-name:slideOutRight\"]],[true,\"@-webkit-keyframes slideOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}@keyframes slideOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}\"],[false,{\".slideOutUp\":false},[\"-webkit-animation-name:slideOutUp\",\"animation-name:slideOutUp\"]],[true,\"@-webkit-keyframes slideInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes slideInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".slideInUp\":false},[\"-webkit-animation-name:slideInUp\",\"animation-name:slideInUp\"]],[true,\"@-webkit-keyframes slideOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}@keyframes slideOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}\"],[false,{\".slideOutDown\":false},[\"-webkit-animation-name:slideOutDown\",\"animation-name:slideOutDown\"]],[true,\"@-webkit-keyframes hinge{\"],[true,\"0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"40%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"80%{-webkit-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}\"],[true,\"100%{-webkit-transform:translateY(700px);transform:translateY(700px);opacity:0}\"],[true,\"}@keyframes hinge{\"],[true,\"0%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"20%,60%{-webkit-transform:rotate(80deg);-ms-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"40%{-webkit-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"80%{-webkit-transform:rotate(60deg) translateY(0);-ms-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}\"],[true,\"100%{-webkit-transform:translateY(700px);-ms-transform:translateY(700px);transform:translateY(700px);opacity:0}\"],[true,\"}\"],[false,{\".hinge\":false},[\"-webkit-animation-name:hinge\",\"animation-name:hinge\"]],[true,\"@-webkit-keyframes rollIn{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"}@keyframes rollIn{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);-ms-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);-ms-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"}\"],[false,{\".rollIn\":false},[\"-webkit-animation-name:rollIn\",\"animation-name:rollIn\"]],[true,\"@-webkit-keyframes rollOut{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}\"],[true,\"}@keyframes rollOut{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);-ms-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);-ms-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}\"],[true,\"}\"],[false,{\".rollOut\":false},[\"-webkit-animation-name:rollOut\",\"animation-name:rollOut\"]],[true,\"@-webkit-keyframes zoomIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1}\"],[true,\"}@keyframes zoomIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1}\"],[true,\"}\"],[false,{\".zoomIn\":false},[\"-webkit-animation-name:zoomIn\",\"animation-name:zoomIn\"]],[true,\"@-webkit-keyframes zoomInDown{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInDown{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInDown\":false},[\"-webkit-animation-name:zoomInDown\",\"animation-name:zoomInDown\"]],[true,\"@-webkit-keyframes zoomInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);-ms-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInLeft\":false},[\"-webkit-animation-name:zoomInLeft\",\"animation-name:zoomInLeft\"]],[true,\"@-webkit-keyframes zoomInRight{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(-48px);transform:scale(.475) translateX(-48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInRight{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);-ms-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(-48px);-ms-transform:scale(.475) translateX(-48px);transform:scale(.475) translateX(-48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInRight\":false},[\"-webkit-animation-name:zoomInRight\",\"animation-name:zoomInRight\"]],[true,\"@-webkit-keyframes zoomInUp{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInUp{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);-ms-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);-ms-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInUp\":false},[\"-webkit-animation-name:zoomInUp\",\"animation-name:zoomInUp\"]],[true,\"@-webkit-keyframes zoomOut{\"],[true,\"0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"100%{opacity:0}\"],[true,\"}@keyframes zoomOut{\"],[true,\"0%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"100%{opacity:0}\"],[true,\"}\"],[false,{\".zoomOut\":false},[\"-webkit-animation-name:zoomOut\",\"animation-name:zoomOut\"]],[true,\"@-webkit-keyframes zoomOutDown{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-transform-origin:center bottom;transform-origin:center bottom}\"],[true,\"}@keyframes zoomOutDown{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);-ms-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);-ms-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-transform-origin:center bottom;-ms-transform-origin:center bottom;transform-origin:center bottom}\"],[true,\"}\"],[false,{\".zoomOutDown\":false},[\"-webkit-animation-name:zoomOutDown\",\"animation-name:zoomOutDown\"]],[true,\"@-webkit-keyframes zoomOutLeft{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(42px);transform:scale(.475) translateX(42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-transform-origin:left center;transform-origin:left center}\"],[true,\"}@keyframes zoomOutLeft{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(42px);-ms-transform:scale(.475) translateX(42px);transform:scale(.475) translateX(42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-transform-origin:left center;-ms-transform-origin:left center;transform-origin:left center}\"],[true,\"}\"],[false,{\".zoomOutLeft\":false},[\"-webkit-animation-name:zoomOutLeft\",\"animation-name:zoomOutLeft\"]],[true,\"@-webkit-keyframes zoomOutRight{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(-42px);transform:scale(.475) translateX(-42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-transform-origin:right center;transform-origin:right center}\"],[true,\"}@keyframes zoomOutRight{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(-42px);-ms-transform:scale(.475) translateX(-42px);transform:scale(.475) translateX(-42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);-ms-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-transform-origin:right center;-ms-transform-origin:right center;transform-origin:right center}\"],[true,\"}\"],[false,{\".zoomOutRight\":false},[\"-webkit-animation-name:zoomOutRight\",\"animation-name:zoomOutRight\"]],[true,\"@-webkit-keyframes zoomOutUp{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-transform-origin:center top;transform-origin:center top}\"],[true,\"}@keyframes zoomOutUp{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-transform-origin:center top;-ms-transform-origin:center top;transform-origin:center top}\"],[true,\"}\"],[false,{\".zoomOutUp\":false},[\"-webkit-animation-name:zoomOutUp\",\"animation-name:zoomOutUp\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":4744,\"final_size\":48,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/css\\/owl.carousel.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"321729c807ca4dee8c7fcd62f722c92a\",\"parse_time\":0.016955852508544922,\"shake_time\":3.600120544433594e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".owl-carousel\":false},[\"display:none\",\"width:100%\",\"-webkit-tap-highlight-color:transparent\",\"position:relative\",\"z-index:1\"]],[false,{\".owl-carousel .owl-stage\":false},[\"position:relative\",\"-ms-touch-action:pan-Y\",\"touch-action:manipulation\",\"-moz-backface-visibility:hidden\"]],[false,{\".owl-carousel .owl-stage:after\":false},[\"content:\\\".\\\"\",\"display:block\",\"clear:both\",\"visibility:hidden\",\"line-height:0\",\"height:0\"]],[false,{\".owl-carousel .owl-stage-outer\":false},[\"position:relative\",\"overflow:hidden\",\"-webkit-transform:translate3d(0px,0px,0px)\"]],[false,{\".owl-carousel .owl-wrapper\":false,\".owl-carousel .owl-item\":false},[\"-webkit-backface-visibility:hidden\",\"-moz-backface-visibility:hidden\",\"-ms-backface-visibility:hidden\",\"-webkit-transform:translate3d(0,0,0)\",\"-moz-transform:translate3d(0,0,0)\",\"-ms-transform:translate3d(0,0,0)\"]],[false,{\".owl-carousel .owl-item\":false},[\"position:relative\",\"min-height:1px\",\"float:left\",\"-webkit-backface-visibility:hidden\",\"-webkit-tap-highlight-color:transparent\",\"-webkit-touch-callout:none\"]],[false,{\".owl-carousel .owl-item amp-img\":false,\".owl-carousel .owl-item amp-anim\":false},[\"display:block\",\"width:100%\"]],[false,{\".owl-carousel .owl-nav.disabled\":false,\".owl-carousel .owl-dots.disabled\":false},[\"display:none\"]],[false,{\".owl-carousel .owl-nav .owl-prev\":false,\".owl-carousel .owl-nav .owl-next\":false,\".owl-carousel .owl-dot\":false},[\"cursor:pointer\",\"-webkit-user-select:none\",\"-khtml-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\"]],[false,{\".owl-carousel .owl-nav button.owl-prev\":false,\".owl-carousel .owl-nav button.owl-next\":false,\".owl-carousel button.owl-dot\":false},[\"background:none\",\"color:inherit\",\"border:none\",\"font:inherit\"]],[false,{\".owl-carousel .owl-nav button.owl-prev:not(#_#_#_#_#_#_#_#_)\":false,\".owl-carousel .owl-nav button.owl-next:not(#_#_#_#_#_#_#_#_)\":false,\".owl-carousel button.owl-dot:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".owl-carousel.owl-loaded\":false},[\"display:block\"]],[false,{\".owl-carousel.owl-loading\":false},[\"opacity:0\",\"display:block\"]],[false,{\".owl-carousel.owl-hidden\":false},[\"opacity:0\"]],[false,{\".owl-carousel.owl-refresh .owl-item\":false},[\"visibility:hidden\"]],[false,{\".owl-carousel.owl-drag .owl-item\":false},[\"-ms-touch-action:pan-y\",\"touch-action:pan-y\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\"]],[false,{\".owl-carousel.owl-grab\":false},[\"cursor:move\",\"cursor:grab\"]],[false,{\".owl-carousel.owl-rtl\":false},[\"direction:rtl\"]],[false,{\".owl-carousel.owl-rtl .owl-item\":false},[\"float:right\"]],[false,{\".no-js .owl-carousel\":false},[\"display:block\"]],[false,{\".owl-carousel .animated\":false},[\"animation-duration:1000ms\",\"animation-fill-mode:both\"]],[false,{\".owl-carousel .owl-animated-in\":false},[\"z-index:0\"]],[false,{\".owl-carousel .owl-animated-out\":false},[\"z-index:1\"]],[false,{\".owl-carousel .fadeOut\":false},[\"animation-name:fadeOut\"]],[true,\"@keyframes fadeOut{\"],[true,\"0%{opacity:1}\"],[true,\"100%{opacity:0}\"],[true,\"}\"],[false,{\".owl-height\":false},[\"transition:height 500ms ease-in-out\"]],[false,{\".owl-carousel .owl-item .owl-lazy\":false},[\"opacity:0\",\"transition:opacity 400ms ease\"]],[false,{\".owl-carousel .owl-item .owl-lazy[src^=\\\"\\\"]\":false,\".owl-carousel .owl-item .owl-lazy:not([src])\":false},[\"max-height:0\"]],[false,{\".owl-carousel .owl-item amp-img.owl-lazy\":false,\".owl-carousel .owl-item amp-anim.owl-lazy\":false},[\"transform-style:preserve-3d\"]],[false,{\".owl-carousel .owl-video-wrapper\":false},[\"position:relative\",\"height:100%\",\"background:#000\"]],[false,{\".owl-carousel .owl-video-play-icon\":false},[\"position:absolute\",\"height:80px\",\"width:80px\",\"left:50%\",\"top:50%\",\"margin-left:-40px\",\"margin-top:-40px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/css\\/owl.video.play.png\\\") no-repeat\",\"cursor:pointer\",\"z-index:1\",\"-webkit-backface-visibility:hidden\",\"transition:transform 100ms ease\"]],[false,{\".owl-carousel .owl-video-play-icon:hover\":false},[\"-ms-transform:scale(1.3,1.3)\",\"transform:scale(1.3,1.3)\"]],[false,{\".owl-carousel .owl-video-playing .owl-video-tn\":false,\".owl-carousel .owl-video-playing .owl-video-play-icon\":false},[\"display:none\"]],[false,{\".owl-carousel .owl-video-tn\":false},[\"opacity:0\",\"height:100%\",\"background-position:center center\",\"background-repeat:no-repeat\",\"background-size:contain\",\"transition:opacity 400ms ease\"]],[false,{\".owl-carousel .owl-video-frame\":false},[\"position:relative\",\"z-index:1\",\"height:100%\",\"width:100%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1013,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/owlcarousel2.github.io\\/OwlCarousel2\\/assets\\/owlcarousel\\/assets\\/owl.theme.default.min.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"547aa8bb20ab8306b3b739fab5e4aa08\",\"parse_time\":0.004403114318847656,\"shake_time\":1.1920928955078125e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".owl-theme .owl-dots\":false,\".owl-theme .owl-nav\":false},[\"text-align:center\",\"-webkit-tap-highlight-color:transparent\"]],[false,{\".owl-theme .owl-nav\":false},[\"margin-top:10px\"]],[false,{\".owl-theme .owl-nav [class*=owl-]\":false},[\"color:#fff\",\"font-size:14px\",\"margin:5px\",\"padding:4px 7px\",\"background:#d6d6d6\",\"display:inline-block\",\"cursor:pointer\",\"border-radius:3px\"]],[false,{\".owl-theme .owl-nav [class*=owl-]:hover\":false},[\"background:#869791\",\"color:#fff\",\"text-decoration:none\"]],[false,{\".owl-theme .owl-nav .disabled\":false},[\"opacity:.5\",\"cursor:default\"]],[false,{\".owl-theme .owl-nav.disabled+.owl-dots\":false},[\"margin-top:10px\"]],[false,{\".owl-theme .owl-dots .owl-dot\":false},[\"display:inline-block\",\"zoom:1\"]],[false,{\".owl-theme .owl-dots .owl-dot span\":false},[\"width:10px\",\"height:10px\",\"margin:5px 7px\",\"background:#d6d6d6\",\"display:block\",\"-webkit-backface-visibility:visible\",\"transition:opacity .2s ease\",\"border-radius:30px\"]],[false,{\".owl-theme .owl-dots .owl-dot.active span\":false,\".owl-theme .owl-dots .owl-dot:hover span\":false},[\"background:#869791\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":65448,\"final_size\":8353,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/styles.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"7827cda6edfe62811923d93e516ee494\",\"parse_time\":0.6045119762420654,\"shake_time\":0.0009539127349853516,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".texto\":false},[\"font-family:Raleway,sans-serif\",\"font-weight:400\",\"font-size:14px\",\"line-height:20px\",\"color:#152649\"]],[false,\"@media (min-width:1400px){\"],[false,{\".texto\":false},[\"font-size:18px\",\"line-height:24px\"]],[false,\"}\"],[false,{\".bg-cover\":false},[\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\"]],[false,{\".box-shadow\":false},[\"-webkit-box-shadow:0 2px 6px 0 rgba(50,50,50,.3)\",\"-moz-box-shadow:0 2px 6px 0 rgba(50,50,50,.3)\",\"box-shadow:0 2px 6px 0 rgba(50,50,50,.3)\"]],[true,{\"html\":true},[\"-webkit-font-smoothing:antialiased\",\"background-color:#fff\"]],[true,{\"body\":true},[\"background-color:#fff\",\"font-family:Raleway,sans-serif\",\"font-weight:400\",\"font-size:14px\",\"line-height:20px\",\"color:#152649\",\"-webkit-font-smoothing:subpixel-antialiased\",\"overflow-x:hidden\"]],[true,\"@media (min-width:1400px){\"],[true,{\"body\":true},[\"font-size:18px\",\"line-height:24px\"]],[true,\"}\"],[true,{\"a\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"a:hover\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"strong\":true},[\"font-weight:700\"]],[true,{\"amp-img\":true,\"amp-anim\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".error\":false},[\"width:100%\"]],[false,{\".error:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:20px\",\"text-align:left\",\"left:0\",\"color:#c00\",\"font-weight:500\"]],[false,{\"label.error:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".wpcf7-not-valid-tip:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".wpcf7-not-valid:not(#_#_#_#_#_#_#_)\":false},[\"border:1px solid red\"]],[true,{\".nospace\":true},[\"margin:0\",\"padding:0\"]],[false,{\".nopadding\":false},[\"padding:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".nopadding\":false},[\"padding:0\",\"margin:0\"]],[false,\"}\"],[false,{\"input:focus\":false},[\"outline-color:transparent\",\"outline-style:none\"]],[false,{\"textarea:focus\":false},[\"outline-color:transparent\",\"outline-style:none\"]],[false,{\"input.form-control\":false},[\"font-family:Raleway,sans-serif\",\"font-weight:500\",\"width:100%\",\"font-size:12px\",\"background:#dfdfdf\",\"color:grey\",\"height:40px\",\"line-height:40px\",\"border:0 solid #343636\",\"margin-bottom:10px\",\"border-radius:0\",\"-moz-border-radius:0\",\"-webkit-border-radius:0\",\"-webkit-box-shadow:inset 0 0 0 transparent\",\"box-shadow:inset 0 0 0 transparent\",\"padding:0 10px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"input.form-control\":false},[\"font-size:14px\",\"height:45px\",\"line-height:45px\"]],[false,\"}\"],[false,{\"textarea.form-control\":false},[\"font-family:Raleway,sans-serif\",\"font-weight:500\",\"width:100%\",\"font-size:12px\",\"background:#dfdfdf\",\"color:grey\",\"height:140px\",\"border:0 solid #343636\",\"margin-bottom:10px\",\"border-radius:0\",\"-moz-border-radius:0\",\"-webkit-border-radius:0\",\"-webkit-box-shadow:inset 0 0 0 transparent\",\"box-shadow:inset 0 0 0 transparent\",\"padding:10px\",\"resize:none\"]],[false,\"@media (min-width:1400px){\"],[false,{\"textarea.form-control\":false},[\"font-size:14px\"]],[false,\"}\"],[false,{\".btn\":false},[\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"border-radius:0\",\"-moz-border-radius:0\",\"-webkit-border-radius:0\",\"font-family:Raleway,sans-serif\",\"display:inline-block\",\"display:inline-block\",\"line-height:40px\",\"color:#fff\",\"border:0 solid #343636\",\"background-color:#152649\",\"font-size:14px\",\"font-weight:500\",\"text-align:center\",\"padding:0 20px\",\"margin-bottom:50px\"]],[false,\"@media (max-width:992px){\"],[false,{\".btn\":false},[\"width:100%\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".btn\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".btn:hover\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".btn1\":false},[\"display:inline-block\",\"background:#90f247\",\"background:-moz-linear-gradient(left,#90f247 0,#00debb 100%)\",\"background:-webkit-linear-gradient(left,#90f247 0,#00debb 100%)\",\"background:linear-gradient(to right,#90f247 0,#00debb 100%)\",\"padding:2px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\"]],[false,{\".btn1 .mask-btn\":false},[\"width:100%\",\"padding:10px 9px 10px 9px\",\"background-color:#fff\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:15px\",\"font-size:16px\",\"color:#152649\",\"-webkit-transition:all .4s ease-in-out\",\"-moz-transition:all .4s ease-in-out\",\"transition:all .4s ease-in-out\"]],[false,{\".btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,\"@media (min-width:1400px){\"],[false,{\".btn1 .mask-btn\":false},[\"padding:20px 20px 20px 19px\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\",\"line-height:17px\",\"font-size:18px\"]],[false,\"}\"],[false,{\".btn-learn\":false},[\"width:auto\",\"display:inline-block\",\"padding:10px 20px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"background-color:#152649\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:15px\",\"font-size:16px\",\"color:#fff\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".btn-learn:hover\":false},[\"background-color:#0c1832\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".btn-learn\":false},[\"padding:20px 30px\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\",\"line-height:17px\",\"font-size:18px\"]],[false,{\".btn-learn:hover\":false},[\"border-radius:8px\",\"-moz-border-radius:8px\",\"-webkit-border-radius:8px\"]],[false,\"}\"],[false,{\".btn-how\":false},[\"width:auto\",\"display:inline-block\",\"padding:10px 20px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"background-color:#fff\",\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:15px\",\"font-size:16px\",\"color:#3e3e3e\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"margin-top:10px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".btn-how:hover\":false},[\"background-color:#0c1832\",\"color:#fff\"]],[false,\"@media (min-width:1400px){\"],[false,{\".btn-how\":false},[\"padding:20px 30px\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\",\"line-height:17px\",\"font-size:18px\",\"font-weight:600\"]],[false,{\".btn-how:hover\":false},[\"border-radius:8px\",\"-moz-border-radius:8px\",\"-webkit-border-radius:8px\"]],[false,\"}\"],[false,{\".ajax-loader:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[true,{\"::-webkit-input-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\":-moz-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\"::-moz-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\":-ms-input-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\"header\":true},[\"top:0\",\"width:100%\",\"height:100px\",\"position:fixed\",\"background-color:#fff\",\"z-index:3\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[true,{\"header .row\":true},[\"margin:0\"]],[true,\"@media (min-width:1400px){\"],[true,{\"header\":true},[\"height:120px\"]],[true,\"}\"],[false,{\"header .logo\":false},[\"line-height:100px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header .logo amp-img\":false,\"header .logo amp-anim\":false},[\"height:30px\",\"margin-left:15px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header .logo\":false},[\"line-height:120px\"]],[false,{\"header .logo amp-img\":false,\"header .logo amp-anim\":false},[\"height:50px\"]],[false,\"}\"],[false,{\"header .min-header\":false},[\"color:#152649\",\"font-size:30px\",\"text-align:right\",\"line-height:100px\",\"display:none\",\"cursor:pointer\",\"margin-right:15px\"]],[false,\"@media (max-width:992px){\"],[false,{\"header .min-header\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header .min-header\":false},[\"line-height:120px\",\"font-size:50px\"]],[false,\"}\"],[false,{\"header .divmenu\":false},[\"text-align:right\"]],[false,{\"header .menu-menu-interna-container\":false,\"header .menu-menu-principal-container\":false},[\"display:inline-block\"]],[false,{\"header #menu\":false},[\"width:100%\",\"margin:0\",\"padding:0\",\"text-align:right\"]],[false,{\"header #menu li\":false},[\"position:relative\",\"list-style:none\",\"display:inline-block\",\"color:#152649\",\"font-size:13px\",\"padding:0 15px\",\"line-height:100px\",\"text-align:center\",\"font-weight:700\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header #menu li:after\":false},[\"width:0\",\"height:7px\",\"top:50%\",\"margin-top:-3px\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background:#adf231\",\"background:-webkit-linear-gradient(left,#adf231 0,#00dbc5 100%)\",\"background:-o-linear-gradient(left,#adf231 0,#00dbc5 100%)\",\"background:linear-gradient(to right,#adf231 0,#00dbc5 100%)\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"z-index:-1\"]],[false,{\"header #menu li.current-menu-ancestor:after\":false,\"header #menu li.current_page_item:after\":false},[\"width:100%\"]],[false,{\"header #menu li:hover:after\":false},[\"width:100%\"]],[false,\"@media (max-width:992px){\"],[false,{\"header #menu\":false},[\"background-color:#fff\",\"display:none\",\"width:200%\",\"right:0\",\"top:100px\",\"position:absolute\"]],[false,{\"header #menu li\":false},[\"width:100%\",\"display:block\",\"line-height:40px\"]],[false,{\"header #menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header #menu\":false},[\"top:120px\"]],[false,{\"header #menu li\":false},[\"line-height:120px\",\"font-size:15px\"]],[false,\"}\"],[false,{\"header #menu .sub-menu\":false},[\"width:200px\",\"background-color:#fff\",\"display:none\",\"position:absolute\",\"padding:0\",\"text-align:left\",\"margin-left:-15px\",\"margin-top:-20px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header #menu .sub-menu li\":false},[\"display:block\",\"color:#727272\",\"font-weight:400\",\"padding:0 15px\",\"text-align:left\"]],[false,{\"header #menu .sub-menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"line-height:18px\",\"margin:15px 0\"]],[false,{\"header #menu .sub-menu li:hover\":false},[\"color:#00debb\"]],[false,\"@media (max-width:992px){\"],[false,{\"header #menu .sub-menu\":false},[\"position:relative\",\"width:100%\"]],[false,{\"header #menu .sub-menu:not(#_#_#_#_#_#_#_#_#_)\":false},[\"display:block\",\"margin:0\",\"padding:0\"]],[false,{\"header #menu .sub-menu li\":false},[\"color:#152649\",\"font-size:13px\",\"line-height:18px\",\"text-align:center\",\"font-weight:700\",\"margin:15px 0\"]],[false,{\"header #menu .sub-menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header #menu .sub-menu li\":false},[\"line-height:60px\",\"font-size:15px\"]],[false,\"}\"],[false,{\"header .menu-item-has-children:hover .sub-menu:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\"header.mini\":false},[\"height:80px\",\"-webkit-box-shadow:0 0 20px 1px rgba(0,0,0,.1)\",\"box-shadow:0 0 20px 1px rgba(0,0,0,.1)\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini\":false},[\"height:100px\"]],[false,\"}\"],[false,{\"header.mini .logo\":false},[\"line-height:80px\"]],[false,{\"header.mini .logo amp-img\":false,\"header.mini .logo amp-anim\":false},[\"height:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini .logo\":false},[\"line-height:100px\"]],[false,{\"header.mini .logo amp-img\":false,\"header.mini .logo amp-anim\":false},[\"height:40px\"]],[false,\"}\"],[false,{\"header.mini .min-header\":false},[\"line-height:80px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini .min-header\":false},[\"line-height:100px\"]],[false,\"}\"],[false,{\"header.mini #menu li\":false},[\"line-height:80px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini #menu li\":false},[\"line-height:100px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\"header.mini #menu\":false},[\"top:80px\"]],[false,{\"header.mini #menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"line-height:50px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini #menu\":false},[\"top:100px\"]],[false,{\"header.mini #menu li\":false},[\"line-height:100px\"]],[false,\"}\"],[false,{\"header.mini .sub-menu\":false},[\"width:200px\",\"background-color:#fff\",\"display:none\",\"position:absolute\",\"padding:0\",\"text-align:left\",\"margin-left:-15px\",\"margin-top:40px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header.mini .sub-menu:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-bottom:10px\"]],[false,{\"header.mini .sub-menu li\":false},[\"display:block\",\"color:#727272\",\"font-weight:400\",\"text-align:left\",\"margin:15px 0\"]],[false,{\"header.mini .sub-menu li:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:0 15px\",\"line-height:15px\",\"line-height:40px\"]],[false,\"@media (max-width:992px){\"],[false,{\"header.mini .sub-menu li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\"header #menu-item-42>a:not(#_#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,\"}\"],[true,{\"h1\":true},[\"position:relative\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:90px\",\"font-size:90px\",\"color:#152649\",\"margin:0 0 5px\"]],[true,\"@media (min-width:1400px){\"],[true,{\"h1\":true},[\"font-size:110px\",\"line-height:110px\"]],[true,\"}\"],[false,{\"h2\":false},[\"position:relative\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:40px\",\"font-size:40px\",\"color:#152649\",\"margin:0 0 5px\"]],[false,{\"h2 small\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:40px\",\"font-size:40px\"]],[false,{\"h2.white\":false},[\"color:#fff\",\"margin-top:20px\",\"margin-bottom:10px\"]],[false,{\"h2 strong\":false},[\"color:#a1f350\"]],[false,\"@media (min-width:1400px){\"],[false,{\"h2\":false},[\"font-size:60px\",\"line-height:60px\"]],[false,{\"h2 small\":false},[\"font-size:60px\",\"line-height:60px\"]],[false,\"}\"],[true,{\"h3\":true},[\"position:relative\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"color:#152649\",\"margin:0 0 5px\"]],[false,{\"h3.topspace\":false},[\"margin-top:90px\",\"margin-bottom:40px\"]],[true,{\".top-info\":true},[\"width:100%\",\"height:1px\",\"background:-moz-linear-gradient(left,rgba(43,154,199,0) 0,rgba(43,154,199,.84) 21%,#48a8cf 25%,#ccc 50%,#bff466 75%,rgba(183,243,84,.88) 78%,rgba(183,243,84,0) 100%)\",\"background:-webkit-linear-gradient(left,rgba(43,154,199,0) 0,rgba(43,154,199,.84) 21%,#48a8cf 25%,#ccc 50%,#bff466 75%,rgba(183,243,84,.88) 78%,rgba(183,243,84,0) 100%)\",\"background:linear-gradient(to right,rgba(43,154,199,0) 0,rgba(43,154,199,.84) 21%,#48a8cf 25%,#ccc 50%,#bff466 75%,rgba(183,243,84,.88) 78%,rgba(183,243,84,0) 100%)\"]],[false,{\".top-info-devops\":false},[\"width:100%\",\"height:1px\",\"background:#2c9ac7\",\"background:-moz-linear-gradient(left,#2c9ac7 0,#fff 100%)\",\"background:-webkit-linear-gradient(left,#2c9ac7 0,#fff 100%)\",\"background:linear-gradient(to right,#2c9ac7 0,#fff 100%)\",\"margin-bottom:25px\"]],[false,{\".line-gray\":false},[\"width:100%\",\"height:1px\",\"background-color:#ccc\",\"margin:50px 0\"]],[false,{\".top\":false},[\"width:100%\",\"position:relative\",\"margin-top:100px\",\"background-color:#fff\",\"color:#a3a3a3\",\"display:table\"]],[false,{\".top .wrap-top\":false},[\"display:table-row\",\"width:100%\",\"height:100%\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,{\".top .wrap-top .content\":false},[\"display:table-cell\",\"width:100%\",\"height:100%\",\"vertical-align:middle\"]],[false,{\".top-home h2\":false},[\"position:relative\",\"margin-top:30px\",\"padding-top:30px\"]],[false,{\".top-home h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#6ecff4\"]],[false,{\".top-home h2:hover:after\":false},[\"width:70px\",\"background-color:#b7f254\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-home h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".top-home .wrap-top\":false},[\"text-align:center\"]],[false,{\".top-home .wrap-top:not(#_#_#_#_#_#_#_)\":false},[\"background-image:none\"]],[false,\"}\"],[false,{\".services\":false},[\"width:100%\",\"position:relative\",\"background-color:#f8f8f8\",\"padding-bottom:100px\"]],[false,\"@media (max-width:992px){\"],[false,{\".services\":false},[\"padding-bottom:50px\"]],[false,\"}\"],[false,{\".services .top-info\":false},[\"margin-bottom:100px\"]],[false,{\".services .info-text\":false},[\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:35px\",\"font-size:25px\",\"color:#8c8c8c\",\"text-align:center\",\"margin-bottom:100px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".services .info-text\":false},[\"line-height:43px\",\"font-size:33px\"]],[false,\"}\"],[false,{\".services .service\":false},[\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:35px\",\"font-size:25px\",\"color:#152649\",\"text-align:center\"]],[false,{\".services .service .icon\":false},[\"text-align:center\",\"border-right:1px solid #ccc\",\"margin-bottom:50px\"]],[false,{\".services .service .icon.last\":false},[\"border:0\"]],[false,{\".services .service .icon amp-img\":false,\".services .service .icon amp-anim\":false},[\"max-height:140px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".services .service .icon amp-img\":false,\".services .service .icon amp-anim\":false},[\"max-height:170px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".services .service .icon\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".services .service\":false},[\"margin-bottom:50px\"]],[false,\"}\"],[true,{\".wephrase\":true},[\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:60px\",\"font-size:60px\",\"color:#152649\"]],[true,{\".wephrase .wrap-phrase\":true},[\"display:inline-block\"]],[false,{\".wephrase .dot\":false},[\"display:inline-block\",\"color:#b7f254\",\"animation:blinker 1s linear infinite\"]],[true,\"@keyframes blinker{\"],[true,\"50%{opacity:0}\"],[true,\"}\"],[false,{\".microservices\":false},[\"width:100%\",\"position:relative\",\"background-color:#efefef\",\"-webkit-box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices\":false},[\"height:auto\"]],[false,{\".microservices:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".microservices\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".microservices .service-padding\":false},[\"padding:100px 0\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-microservices.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top -30px right\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".microservices amp-img\":false,\".microservices amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices amp-img\":false,\".microservices amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".microservices amp-img\":false,\".microservices amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,{\".microservices h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".microservices h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#b8b8b8\"]],[false,{\".microservices h2:hover:after\":false},[\"width:70px\",\"background-color:#b7f254\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".microservices .btn1 .mask-btn\":false},[\"background-color:#efefef\"]],[false,{\".microservices .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".machine_learning\":false},[\"width:100%\",\"position:relative\",\"background-color:#f2f2f2\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning\":false},[\"height:auto\"]],[false,{\".machine_learning:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".machine_learning\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".machine_learning h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".machine_learning h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#b993e7\"]],[false,{\".machine_learning h2:hover:after\":false},[\"width:70px\",\"background-color:#1ab7d5\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".machine_learning .btn1\":false},[\"background:#9061d7\",\"background:-moz-linear-gradient(left,#9061d7 0,#2c99c8 100%)\",\"background:-webkit-linear-gradient(left,#9061d7 0,#2c99c8 100%)\",\"background:linear-gradient(to right,#9061d7 0,#2c99c8 100%)\"]],[false,{\".machine_learning .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\"]],[false,{\".machine_learning .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".machine_learning .service-padding\":false},[\"padding:100px 0\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-ml.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top -10px right\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".machine_learning .wrap-image\":false},[\"text-align:right\"]],[false,{\".machine_learning amp-img\":false,\".machine_learning amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning amp-img\":false,\".machine_learning amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".machine_learning amp-img\":false,\".machine_learning amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,{\".machine_learning .subitems .item:after\":false},[\"background:#2c99c8\",\"background:-moz-linear-gradient(top,#2c99c8 0,#9061d7 100%)\",\"background:-webkit-linear-gradient(top,#2c99c8 0,#9061d7 100%)\",\"background:linear-gradient(to bottom,#2c99c8 0,#9061d7 100%)\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".digital_transformation\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation\":false},[\"height:auto\"]],[false,{\".digital_transformation:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".digital_transformation\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".digital_transformation h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".digital_transformation h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".digital_transformation h2:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".digital_transformation .btn1\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to right,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".digital_transformation .btn1 .mask-btn\":false},[\"background-color:#fff\"]],[false,{\".digital_transformation .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".digital_transformation .service-padding\":false},[\"padding:100px 0\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".digital_transformation .wrap-image\":false},[\"text-align:right\"]],[false,{\".digital_transformation amp-img\":false,\".digital_transformation amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation amp-img\":false,\".digital_transformation amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".digital_transformation amp-img\":false,\".digital_transformation amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,{\".digital_transformation .subitems .item:after\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to bottom,#02c6d9 0,#05d2d9 100%)\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".devops\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"-webkit-box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops\":false},[\"height:auto\"]],[false,{\".devops:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".devops\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".devops h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".devops h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#95f896\"]],[false,{\".devops h2:hover:after\":false},[\"width:70px\",\"background-color:#2d98c6\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".devops .service-padding\":false},[\"padding:100px 0\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-devops.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top right\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".devops amp-img\":false,\".devops amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops amp-img\":false,\".devops amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".devops amp-img\":false,\".devops amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".devops .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".call_to_action\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"text-align:center\",\"padding:50px 0\"]],[false,{\".call_to_action.about-box\":false},[\"background-color:#f7f7f7\",\"-webkit-box-shadow:inset 0 -10px 30px -10px rgba(0,0,0,.3)\",\"box-shadow:inset 0 -10px 30px -10px rgba(0,0,0,.3)\"]],[false,{\".call_to_action.about-box .btn1 .mask-btn\":false},[\"background-color:#f7f7f7\"]],[false,{\".call_to_action.about-box .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process\":false},[\"width:100%\",\"position:relative\",\"background-color:#ccc\",\"overflow:hidden\"]],[false,{\".process .process-item\":false},[\"width:100%\",\"padding:80px\",\"height:500px\"]],[false,{\".process .process-item p\":false},[\"height:100px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process .process-item p\":false},[\"height:130px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item:not(#_#_#_#_#_#_#_)\":false},[\"padding:80px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".process .process-item\":false},[\"height:600px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".process\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".process .process-item-1\":false},[\"position:relative\",\"background:#15a3cc\",\"background:-moz-linear-gradient(left,#15a3cc 0,#15b5d5 100%)\",\"background:-webkit-linear-gradient(left,#15a3cc 0,#15b5d5 100%)\",\"background:linear-gradient(to right,#15a3cc 0,#15b5d5 100%)\"]],[false,{\".process .process-item-1:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:28px\",\"height:97px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrow1.png\\\")\",\"top:3px\",\"right:-28px\",\"z-index:2\"]],[false,{\".process .process-item-1 h2.white\":false},[\"position:relative\",\"padding-top:30px\"]],[false,{\".process .process-item-1 h2.white:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#6ecff4\"]],[false,{\".process .process-item-1 h2.white:hover:after\":false},[\"width:70px\",\"background-color:#152649\"]],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item-1 h2.white:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process .process-item-2\":false},[\"position:relative\",\"padding-top:125px\",\"background:#c4c4c4\",\"background:-moz-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:-webkit-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:linear-gradient(to right,#c4c4c4 0,#ccc 100%)\"]],[false,{\".process .process-item-2:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:28px\",\"height:97px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrow2.png\\\")\",\"top:3px\",\"right:-28px\",\"z-index:2\"]],[false,{\".process .process-item-2 h2.white\":false},[\"position:relative\",\"padding-top:30px\"]],[false,{\".process .process-item-2 h2.white:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background:#878787\",\"background:-moz-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:-webkit-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:linear-gradient(to right,#878787 0,#aeaeae 100%)\"]],[false,{\".process .process-item-2 h2.white:hover:after\":false},[\"width:70px\",\"background-color:#878787\"]],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item-2 h2.white:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process .process-item-3\":false},[\"position:relative\",\"padding-top:125px\",\"background:-moz-linear-gradient(left,#00debb 0,#90f247 100%)\",\"background:-webkit-linear-gradient(left,#00debb 0,#90f247 100%)\",\"background:linear-gradient(to right,#00debb 0,#90f247 100%)\"]],[false,{\".process .process-item-3 h2.white\":false},[\"position:relative\",\"padding-top:30px\"]],[false,{\".process .process-item-3 h2.white:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#6ecff4\"]],[false,{\".process .process-item-3 h2.white:hover:after\":false},[\"width:70px\",\"background-color:#152649\"]],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item-3 h2.white:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".case_study\":false},[\"width:100%\",\"position:relative\",\"background-color:#f1f1f1\",\"padding:100px 0 70px\"]],[false,\"@media (max-width:992px){\"],[false,{\".case_study\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".case_study h2\":false},[\"margin-bottom:20px\",\"position:relative\",\"padding-top:50px\"]],[false,{\".case_study h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#b8b8b8\"]],[false,{\".case_study h2:hover:after\":false},[\"width:70px\"]],[false,\"@media (max-width:992px){\"],[false,{\".case_study h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".case_study .btn1\":false},[\"margin-top:30px\"]],[false,{\".case_study .btn1 .mask-btn\":false},[\"background-color:#f1f1f1\"]],[false,{\".case_study .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".case_study .wrap-image\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-case-home.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top center\",\"background-size:100% auto\"]],[false,\"@media (max-width:992px){\"],[false,{\".case_study .wrap-image\":false},[\"margin-top:40px\"]],[false,\"}\"],[false,{\".partners\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"text-align:center\",\"padding:50px 0\"]],[false,{\".partners .owl-dots\":false},[\"width:100%\",\"position:relative\",\"text-align:center\"]],[false,{\".partners .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".partners .owl-dots .owl-dot\":false},[\"width:6px\",\"height:6px\",\"background-color:#ccc\",\"display:inline-block\",\"margin:0 10px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\"]],[false,{\".partners .owl-dots .owl-dot.active\":false},[\"background-color:#3b3b3b\"]],[false,{\".about-intern\":false},[\"background-color:#f7f7f7\",\"color:#152649\",\"font-size:13px\"]],[false,{\".about-intern h1\":false},[\"font-size:50px\",\"line-height:50px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-intern\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".about-intern .btn1\":false},[\"margin-bottom:20px\"]],[false,{\".about-intern .btn1 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".about-intern .wrap-top\":false},[\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:bottom center\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-intern .wrap-top\":false},[\"text-align:center\"]],[false,{\".about-intern .wrap-top:not(#_#_#_#_#_#_#_)\":false},[\"background-image:none\"]],[false,\"}\"],[false,{\".cases-intern\":false},[\"background-color:#fff\",\"color:#fff\",\"font-size:13px\",\"background-position:right\",\"background-repeat:no-repeat\",\"background-size:auto 100%\"]],[false,\"@media (max-width:992px){\"],[false,{\".cases-intern\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".cases-intern\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".cases-intern h1\":false},[\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:40px\",\"font-size:40px\",\"color:#fff\",\"margin:0 0 5px\"]],[false,{\".cases-intern h1 small\":false},[\"color:#00ddbd\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:20px\",\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".cases-intern h1\":false},[\"line-height:50px\",\"font-size:50px\"]],[false,{\".cases-intern h1 small\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".cases-intern .wrap-top\":false},[\"background:-moz-linear-gradient(left,#002048 0,rgba(0,32,72,.1) 50%,rgba(0,32,72,0) 65%,rgba(0,32,72,0) 100%)\",\"background:-webkit-linear-gradient(left,#002048 0,#002048 50%,rgba(0,32,72,0) 65%,rgba(0,32,72,0) 100%)\",\"background:linear-gradient(to right,#002048 0,#002048 50%,rgba(0,32,72,0) 65%,rgba(0,32,72,0) 100%)\"]],[false,\"@media (max-width:992px){\"],[false,{\".cases-intern .wrap-top\":false},[\"background:#002048\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".content-cases\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".content-cases .gray\":false},[\"font-size:14px\",\"background-color:#f7f7f7\",\"color:#6b6b6b\",\"padding:40px 40px 20px\",\"margin-top:-60px\",\"margin-bottom:50px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".content-cases .gray\":false},[\"font-size:16px\",\"line-height:18px\"]],[false,\"}\"],[false,{\".content-cases h3\":false},[\"color:#6b6b6b\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:20px\",\"font-size:20px\",\"margin-bottom:10px\"]],[false,{\".content-cases .content-cases2\":false},[\"color:#6b6b6b\",\"padding:50px 0 30px\"]],[false,{\".content-cases .bg-gray\":false},[\"font-size:14px\",\"background-color:#f7f7f7\",\"color:#6b6b6b\",\"padding:15px\",\"margin-bottom:50px\"]],[false,{\".content-cases .content-downgray\":false},[\"text-align:center\"]],[false,{\".content-cases .content-downgray amp-img\":false,\".content-cases .content-downgray amp-anim\":false},[\"max-width:60%\"]],[false,{\".content-cases .content-downgray .top-info\":false},[\"margin:70px 0\"]],[false,{\".content-cases .owl-dots\":false},[\"margin-top:20px\",\"width:100%\",\"position:relative\",\"text-align:center\"]],[false,{\".content-cases .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".content-cases .owl-dots .owl-dot\":false},[\"width:6px\",\"height:6px\",\"background-color:#ccc\",\"display:inline-block\",\"margin:0 10px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\"]],[false,{\".content-cases .owl-dots .owl-dot.active\":false},[\"background-color:#3b3b3b\"]],[false,{\".content-cases .gallery-cases\":false},[\"margin-top:70px\"]],[false,{\".content-cases .gallery-cases amp-img\":false,\".content-cases .gallery-cases amp-anim\":false},[\"border:2px solid #ccc\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\"]],[false,{\".content-cases .gallery-cases amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".content-cases .gallery-cases amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".process-intern\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"color:#b2b2b2\",\"font-size:20px\",\"line-height:40px\",\"font-family:Rajdhani\",\"font-weight:700\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process-intern\":false},[\"font-size:30px\",\"line-height:50px\"]],[false,\"}\"],[false,{\".process-intern .wrap-top\":false},[\"background-position:bottom center\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\"]],[false,\"@media (max-width:992px){\"],[false,{\".process-intern .wrap-top\":false},[\"background-position:bottom center\",\"text-align:center\"]],[false,{\".process-intern .wrap-top:not(#_#_#_#_#_#_#_)\":false},[\"background-image:none\"]],[false,\"}\"],[false,{\".about-process\":false},[\"width:100%\",\"position:relative\",\"background-color:#f1f1f1\",\"padding:70px 0\",\"text-align:center\"]],[false,{\".about-process .wephrase\":false},[\"font-size:35px\",\"line-height:35px\",\"margin-bottom:30px\"]],[false,{\".about-process .top-info\":false},[\"margin-top:100px\"]],[false,{\".line-process\":false},[\"width:60%\",\"height:1px\",\"margin:50px 20%\",\"background:#2b9ac7\",\"background:-moz-linear-gradient(left,#2b9ac7 0,#fff 100%)\",\"background:-webkit-linear-gradient(left,#2b9ac7 0,#fff 100%)\",\"background:linear-gradient(to right,#2b9ac7 0,#fff 100%)\"]],[false,{\".process-part\":false},[\"width:100%\",\"position:relative\",\"padding:70px 0\",\"font-size:13px\"]],[false,\"@media (max-width:992px){\"],[false,{\".process-part .btn1\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".process-part\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".process1\":false},[\"background-color:#15a7ce\",\"color:#002048\",\"font-weight:500\"]],[false,{\".process1 h2\":false},[\"color:#fff\",\"line-height:20px\"]],[false,{\".process1 h2 small\":false},[\"color:#98e36c\",\"font-size:18px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process1 h2\":false},[\"line-height:50px\"]],[false,{\".process1 h2 small\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".process1 h3\":false},[\"color:#fff\",\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process1 h3\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".process1 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process1:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:70px\",\"height:35px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrowd1.png\\\")\",\"background-position:bottom center\",\"bottom:-35px\",\"margin-left:50%\",\"left:-35px\",\"z-index:2\"]],[false,{\".process1 .lineb\":false},[\"width:2px\",\"height:600px\",\"margin:0 auto\",\"background-color:rgba(255,255,255,.2)\"]],[false,{\".process1 .centro\":false},[\"text-align:center\"]],[false,{\".process1 .centro amp-img\":false,\".process1 .centro amp-anim\":false},[\"max-width:100px\"]],[false,\"@media (max-width:992px){\"],[false,{\".process1 .centro\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process2\":false},[\"background-color:#d7d7d7\",\"color:#565656\",\"font-weight:500\"]],[false,{\".process2 h2\":false},[\"margin-bottom:30px\"]],[false,{\".process2 h3\":false},[\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process2 h3\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".process2 .check-items\":false},[\"margin:20px 0\"]],[false,{\".process2 .check-items .icheck\":false},[\"position:relative\",\"padding-left:30px\",\"min-height:30px\",\"font-size:20px\",\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:20px\",\"padding-top:5px\"]],[false,{\".process2 .check-items .icheck:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:20px\",\"height:100%\",\"top:0\",\"left:0\",\"background-repeat:no-repeat\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/checkb.png\\\")\",\"background-position:center\",\"background-size:100% auto\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process2 .check-items .icheck\":false},[\"font-size:23px\",\"line-height:23px\"]],[false,\"}\"],[false,{\".process2 .btn1\":false},[\"background:#c4c4c4\",\"background:-moz-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:-webkit-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:linear-gradient(to right,#c4c4c4 0,#ccc 100%)\"]],[false,{\".process2 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process2:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:70px\",\"height:35px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrowd2.png\\\")\",\"background-position:bottom center\",\"bottom:-35px\",\"margin-left:50%\",\"left:-35px\",\"z-index:2\"]],[false,\"@media (max-width:992px){\"],[false,{\".process2 amp-img\":false,\".process2 amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process3\":false},[\"color:#002048\",\"background:#38cea3\",\"background:-moz-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:-webkit-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:linear-gradient(to right,#38cea3 0,#75e168 100%)\",\"font-weight:500\"]],[false,{\".process3 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process3 h2\":false},[\"color:#fff\"]],[false,{\".process3 .check-items\":false},[\"margin:20px 0\"]],[false,{\".process3 .check-items .icheck\":false},[\"position:relative\",\"padding-left:15px\",\"padding-left:10px\",\"margin-left:35px\",\"min-height:30px\",\"font-size:14px\",\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:20px\",\"margin-bottom:20px\",\"border-left:1px solid #fff\"]],[false,{\".process3 .check-items .icheck:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:20px\",\"height:100%\",\"top:0\",\"left:-35px\",\"background-repeat:no-repeat\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/checkb.png\\\")\",\"background-position:left center\",\"background-size:100% auto\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process3 .check-items .icheck\":false},[\"font-size:23px\",\"line-height:23px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".process3 amp-img\":false,\".process3 amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".end-process\":false},[\"width:100%\",\"position:relative\",\"background-color:#f6f6f6\",\"padding:70px 0\",\"text-align:center\"]],[false,{\".end-process .wephrase\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,{\".end-process .logos\":false},[\"text-align:center\",\"margin-top:50px\"]],[false,{\".end-process .logos amp-img\":false,\".end-process .logos amp-anim\":false},[\"display:inline-block\",\"height:90px\",\"margin:0 30px\",\"-webkit-transition:all .2s ease-in-out\",\"-moz-transition:all .2s ease-in-out\",\"transition:all .2s ease-in-out\",\"-webkit-filter:grayscale(100%)\"]],[false,{\".end-process .logos amp-img:hover\":false,\".end-process .logos amp-anim:hover\":false},[\"-webkit-filter:grayscale(0)\"]],[false,{\".end-process .logos amp-img.menor\":false,\".end-process .logos amp-anim.menor\":false},[\"height:80px\"]],[false,\"@media (max-width:992px){\"],[false,{\".end-process .logos amp-img\":false,\".end-process .logos amp-anim\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".end-process .logos amp-img\":false,\".end-process .logos amp-anim\":false},[\"height:120px\"]],[false,{\".end-process .logos amp-img.menor\":false,\".end-process .logos amp-anim.menor\":false},[\"height:110px\"]],[false,\"}\"],[false,{\".top-service\":false},[\"width:100%\",\"height:370px\",\"position:relative\",\"margin-top:120px\",\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"color:#fff\",\"display:table\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".top-service .wrap-top\":false},[\"display:table-row\",\"width:100%\",\"height:100%\"]],[false,{\".top-service .wrap-top .content\":false},[\"display:table-cell\",\"width:100%\",\"height:100%\",\"vertical-align:middle\",\"font-size:12px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".top-service .wrap-top .content\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".top-service .logo\":false},[\"margin-left:-10px\",\"margin-bottom:10px\"]],[false,{\".top-service .logo amp-google-document-embed\":false},[\"width:110px\"]],[false,{\".top-service .logo amp-img\":false,\".top-service .logo amp-anim\":false},[\"width:110px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".top-service .logo amp-img\":false,\".top-service .logo amp-anim\":false},[\"width:150px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".top-service .logo\":false},[\"margin-left:0\"]],[false,\"}\"],[false,{\".top-service h1\":false},[\"color:#fff\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".top-service.service-devops\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-devops\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-machine\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-machine\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-micro\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-micro\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-digital\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\",\"color:#152649\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-digital\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-digital h1\":false},[\"color:#152649\"]],[false,{\".disclaimer\":false},[\"width:100%\",\"position:relative\",\"padding:45px 0\"]],[false,{\".disclaimer.service-devops\":false},[\"background-color:#b7f254\",\"text-align:center\",\"font-size:13px\"]],[false,{\".disclaimer.service-devops .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-devops .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-devops\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".disclaimer.service-machine\":false},[\"background-color:#83adfb\",\"text-align:center\",\"font-size:13px\"]],[false,{\".disclaimer.service-machine .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-machine .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-machine\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".disclaimer.service-micro\":false},[\"background-color:#152649\",\"text-align:center\",\"font-size:13px\",\"color:#fff\"]],[false,{\".disclaimer.service-micro .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-micro .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-micro\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".disclaimer.service-digital\":false},[\"background-color:#05bed4\",\"text-align:center\",\"font-size:13px\",\"color:#fff\"]],[false,{\".disclaimer.service-digital .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-digital .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-digital\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".about-service\":false},[\"width:100%\",\"position:relative\",\"padding:0\",\"margin:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .btn:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".about-service .wrap-image\":false},[\"text-align:left\",\"padding-top:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".about-service ul\":false},[\"margin:0\",\"padding:0\"]],[false,{\".about-service li\":false},[\"list-style:none\",\"position:relative\",\"padding-left:30px\",\"min-height:30px\",\"font-size:14px\",\"font-family:Raleway\",\"font-weight:500\",\"line-height:18px\",\"padding-top:5px\",\"margin-bottom:20px\"]],[false,{\".about-service li:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:20px\",\"height:100%\",\"top:0\",\"left:0\",\"background-repeat:no-repeat\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/checkc.png\\\")\",\"background-position:center\",\"background-size:100% auto\"]],[false,{\".about-service.service-devops\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-devops .btn1\":false},[\"background:#cce191\",\"background:-moz-linear-gradient(left,#cce191 0,#ccc 50%,#7cb1cc 100%)\",\"background:-webkit-linear-gradient(left,#cce191 0,#ccc 50%,#7cb1cc 100%)\",\"background:linear-gradient(to right,#cce191 0,#ccc 50%,#7cb1cc 100%)\",\"margin-bottom:20px\"]],[false,{\".about-service.service-devops .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#767e8e\"]],[false,{\".about-service.service-devops .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service.service-machine\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-machine .btn1\":false},[\"background:#4e2e7c\",\"background:-moz-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:-webkit-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:linear-gradient(to right,#4e2e7c 0,#38a3cc 100%)\",\"margin-bottom:20px\"]],[false,{\".about-service.service-machine .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#767e8e\"]],[false,{\".about-service.service-machine .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service.service-micro\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-micro .btn1\":false},[\"background:#878787\",\"background:-moz-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:-webkit-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:linear-gradient(to right,#878787 0,#aeaeae 100%)\",\"margin-bottom:20px\"]],[false,{\".about-service.service-micro .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#767e8e\"]],[false,{\".about-service.service-micro .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service.service-digital\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-digital .btn1\":false},[\"margin-bottom:20px\",\"background:#02c6d9\",\"background:-moz-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to right,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".about-service.service-digital .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#2d98c6\"]],[false,{\".about-service.service-digital .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about\":false},[\"padding:0\",\"color:#8c8c8c\",\"overflow:hidden\",\"position:relative\"]],[false,{\".about-service .content-about .clearfix\":false},[\"width:100%\"]],[false,{\".about-service .content-about .menu-items\":false},[\"margin-top:0\",\"margin-bottom:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .content-about .menu-items\":false},[\"margin:30px 0\",\"text-align:center\"]],[false,\"}\"],[false,{\".about-service .content-about .menu-items .btn\":false},[\"width:100%\",\"text-align:center\",\"line-height:50px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"font-family:Rajdhani\",\"font-weight:400\",\"margin-bottom:0\",\"margin-top:0\",\"font-size:20px\",\"text-transform:uppercase\"]],[false,{\".about-service .content-about .menu-items .active .btn\":false},[\"font-weight:700\"]],[false,{\".about-service .content-about .menu-items.service-devops\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-devops .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-devops .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-devops a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-devops a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-machine\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-machine .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-machine .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-machine a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-machine a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-micro\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-micro .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-micro .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-micro a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-micro a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-digital\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-digital .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-digital .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-digital a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-digital a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .slider-about\":false},[\"line-height:16px\",\"padding-top:70px\"]],[false,{\".about-service .slider-about:not(#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-service .slider-about\":false},[\"line-height:18px\"]],[false,{\".about-service .slider-about:not(#_#_#_#_#_#_#_)\":false},[\"font-size:15px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".about-service .slider-about\":false},[\"text-align:center\"]],[false,{\".about-service .slider-about:not(#_#_#_#_#_#_#_)\":false},[\"font-size:13px\"]],[false,\"}\"],[false,{\".about-service .slider-about h3\":false},[\"font-size:22px\",\"line-height:22px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-service .slider-about h3\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".about-service .slider-about .hand-call\":false},[\"border-top:1px solid #143260\",\"padding-top:30px\",\"margin-top:10px\",\"display:inline-block\"]],[false,{\".about-service .slider-about .border\":false},[\"width:80%\",\"margin-top:20px\",\"margin-bottom:40px\",\"margin-left:10%\"]],[false,{\".about-service .slider-about .border:not(#_#_#_#_#_#_#_)\":false},[\"border:0\",\"border-bottom:1px solid #ccc\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .row\":false},[\"margin:0\"]],[false,\"}\"],[true,{\".intern-about\":true},[\"width:100%\",\"position:relative\",\"padding:70px 0\",\"background-color:#fff\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-intern.jpg\\\")\",\"background-position:bottom center\",\"background-repeat:no-repeat\",\"background-size:100% auto\",\"text-align:center\",\"color:#8c8c8c\",\"font-family:Rajdhani\",\"font-weight:400\",\"font-size:20px\",\"line-height:20px\"]],[true,\"@media (min-width:1400px){\"],[true,{\".intern-about\":true},[\"font-size:25px\",\"line-height:25px\"]],[true,\"}\"],[true,{\".intern-about .logos\":true},[\"text-align:center\",\"margin-top:50px\"]],[true,{\".intern-about .logos amp-img\":true,\".intern-about .logos amp-anim\":false},[\"display:inline-block\",\"height:90px\",\"margin:0 30px\",\"-webkit-transition:all .2s ease-in-out\",\"-moz-transition:all .2s ease-in-out\",\"transition:all .2s ease-in-out\",\"-webkit-filter:grayscale(100%)\"]],[true,{\".intern-about .logos amp-img:hover\":true,\".intern-about .logos amp-anim:hover\":false},[\"-webkit-filter:grayscale(0)\"]],[true,{\".intern-about .logos amp-img.menor\":true,\".intern-about .logos amp-anim.menor\":false},[\"height:80px\"]],[true,\"@media (max-width:992px){\"],[true,{\".intern-about .logos amp-img\":true,\".intern-about .logos amp-anim\":false},[\"margin-bottom:20px\"]],[true,\"}\"],[true,\"@media (min-width:1400px){\"],[true,{\".intern-about .logos amp-img\":true,\".intern-about .logos amp-anim\":false},[\"height:120px\"]],[true,{\".intern-about .logos amp-img.menor\":true,\".intern-about .logos amp-anim.menor\":false},[\"height:110px\"]],[true,\"}\"],[false,{\".items-service\":false},[\"width:100%\",\"padding:0\",\"margin:0\",\"position:relative\"]],[false,{\".items-service.service-devops\":false},[\"background:#38cea3\",\"background:-moz-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:-webkit-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:linear-gradient(to right,#38cea3 0,#75e168 100%)\"]],[false,{\".items-service.service-machine\":false},[\"background:#4e2e7c\",\"background:-moz-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:-webkit-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:linear-gradient(to right,#4e2e7c 0,#38a3cc 100%)\"]],[false,{\".items-service.service-micro\":false},[\"background:#13203c\",\"background:-moz-linear-gradient(left,#13203c 0,#9d9c9c 100%)\",\"background:-webkit-linear-gradient(left,#13203c 0,#9d9c9c 100%)\",\"background:linear-gradient(to right,#13203c 0,#9d9c9c 100%)\"]],[false,{\".items-service.service-digital\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to right,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".items-service .box-item\":false},[\"position:relative\",\"height:300px\",\"overflow:hidden\"]],[false,\"@media (min-width:1400px){\"],[false,{\".items-service .box-item\":false},[\"height:350px\"]],[false,\"}\"],[false,{\".items-service .box-item .up\":false},[\"position:relative\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"width:100%\",\"height:300px\",\"padding:0\"]],[false,\"@media (min-width:1400px){\"],[false,{\".items-service .box-item .up\":false},[\"height:350px\"]],[false,\"}\"],[false,{\".items-service .box-item .up .bg-image\":false},[\"opacity:.5\",\"background-size:auto 110%\",\"background-position:center\",\"background-repeat:no-repeat\",\"width:100%\",\"height:100%\",\"position:absolute\",\"left:0\",\"top:0\",\"z-index:0\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".items-service .box-item .up .bg-image2\":false},[\"opacity:.5\",\"background-size:auto 110%\",\"background-position:center\",\"background-repeat:no-repeat\",\"width:100%\",\"height:100%\",\"position:absolute\",\"left:0\",\"top:0\",\"z-index:0\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".items-service .box-item .up .wrap-absol\":false},[\"width:100%\",\"height:100%\",\"position:absolute\",\"left:0\",\"top:0\",\"z-index:1\",\"display:table\",\"padding:20px\"]],[false,{\".items-service .box-item .up .wrap-content\":false},[\"display:table-row\",\"width:100%\",\"height:100%\",\"position:relative\"]],[false,{\".items-service .box-item .up .wrap-content .button\":false},[\"width:100%\",\"height:100%\",\"display:table-cell\",\"vertical-align:middle\",\"text-align:center\"]],[false,{\".items-service .box-item .up .wrap-content .btn1\":false},[\"background:0\"]],[false,{\".items-service .box-item .up .wrap-content .btn1:not(#_#_#_#_#_#_#_)\":false},[\"background-color:rgba(0,0,0,0)\"]],[false,{\".items-service .box-item .up .wrap-content .btn1 .mask-btn\":false},[\"border:1px solid #fff\",\"font-weight:500\",\"background-color:rgba(255,255,255,.3)\",\"color:#fff\"]],[false,{\".items-service .box-item .up .wrap-content .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".items-service .box-item .up:hover .bg-image\":false,\".items-service .box-item .up:hover .bg-image2\":false},[\"background-size:auto 130%\"]],[false,{\".items-service .box-item .down\":false},[\"background:#38cea3\",\"background:-webkit-linear-gradient(top,#38cea3 0,#75e168 100%)\",\"background:-o-linear-gradient(top,#38cea3 0,#75e168 100%)\",\"background:linear-gradient(to bottom,#38cea3 0,#75e168 100%)\",\"width:100%\",\"height:300px\",\"padding:20px\",\"color:#fff\",\"font-size:13px\"]],[false,{\".items-service .box-item .down .wrap-all\":false},[\"width:100%\",\"height:260px\"]],[false,{\".items-service.service-machine .down\":false},[\"background:#4e2e7c\",\"background:-moz-linear-gradient(top,#4e2e7c 0,#38a3cc 100%)\",\"background:-webkit-linear-gradient(top,#4e2e7c 0,#38a3cc 100%)\",\"background:linear-gradient(to bottom,#4e2e7c 0,#38a3cc 100%)\"]],[false,{\".items-service.service-micro .down\":false},[\"background:#13203c\",\"background:-moz-linear-gradient(top,#13203c 0,#9d9c9c 100%)\",\"background:-webkit-linear-gradient(top,#13203c 0,#9d9c9c 100%)\",\"background:linear-gradient(to bottom,#13203c 0,#9d9c9c 100%)\"]],[false,{\".items-service.service-digital .down\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to bottom,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".phrase\":false},[\"width:100%\",\"position:relative\",\"padding:50px 0\",\"background-color:#ededed\",\"text-align:center\",\"font-family:Rajdhani\",\"font-weight:400\",\"font-size:20px\",\"line-height:20px\",\"color:#152649\"]],[false,{\".phrase .author\":false},[\"font-size:11px\",\"line-height:11px\",\"color:#9c9c9c\",\"text-transform:uppercase\",\"letter-spacing:5px\",\"margin-top:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".phrase\":false},[\"font-size:25px\",\"line-height:25px\"]],[false,{\".phrase .author\":false},[\"font-size:14px\",\"line-height:14px\"]],[false,\"}\"],[false,{\".about-idea\":false},[\"width:100%\",\"position:relative\",\"padding:50px 0\",\"background-color:#fff\"]],[false,{\".about-idea amp-img\":false,\".about-idea amp-anim\":false},[\"margin-top:35px\",\"margin-bottom:35px\"]],[false,{\".about-idea .btn1\":false},[\"width:100%\",\"text-align:center\"]],[false,{\".about-idea .btn1 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-idea .btn1\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,{\".about-idea .top-info\":false},[\"margin:50px 0\"]],[false,{\".about-idea .withborder\":false},[\"border-left:1px solid #ccc\",\"padding-top:10px\",\"margin-bottom:70px\",\"font-size:17px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-idea .withborder\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,\"}\"],[false,{\".about-idea .big\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"font-size:20px\",\"line-height:20px\",\"color:#152649\",\"margin-top:40px\",\"text-align:center\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-idea .big\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".about-idea\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".hand-call\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:22px\",\"font-size:22px\",\"color:#152649\",\"text-align:left\"]],[false,\"@media (min-width:1400px){\"],[false,{\".hand-call\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".hand-call .border-call\":false},[\"padding-left:20px\",\"margin-bottom:20px\",\"position:relative\"]],[false,{\".hand-call .border-call:before\":false},[\"width:1px\",\"height:100%\",\"position:absolute\",\"content:\\\"\\\"\",\"left:0\",\"top:0\",\"background:#b5f155\",\"background:-moz-linear-gradient(top,#b5f155 0,#2e9cc5 100%)\",\"background:-webkit-linear-gradient(top,#b5f155 0,#2e9cc5 100%)\",\"background:linear-gradient(to bottom,#b5f155 0,#2e9cc5 100%)\"]],[false,{\".hand-call .arrow\":false},[\"padding-left:50px\",\"position:relative\",\"position:relative\"]],[false,{\".hand-call .arrow:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"top:0\",\"left:0\",\"width:30px\",\"height:44px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrow.png\\\")\"]],[false,{\".qualities\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"padding:50px 0\"]],[false,{\".qualities .hand-call\":false},[\"text-align:center\"]],[false,{\".qualities .hand-call .border-call\":false},[\"display:inline-block\",\"text-align:left\"]],[false,{\".qualities .hand-call .arrow\":false},[\"margin-left:20px\",\"display:inline-block\",\"text-align:left\"]],[false,{\".qualities .circles-menu\":false},[\"margin-top:0\",\"margin-bottom:50px\"]],[false,{\".qualities .circles-menu .text-circle:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".qualities .ctext\":false},[\"text-align:center\",\"font-size:13px\",\"font-weight:500\",\"margin-top:30px\",\"padding-top:30px\",\"position:relative\"]],[false,{\".qualities .ctext:after\":false},[\"width:70px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"margin-left:50%\",\"left:-35px\",\"position:absolute\",\"content:\\\"\\\"\"]],[false,{\".qualities .ctext.text1:after\":false},[\"background-color:#9ef34b\"]],[false,{\".qualities .ctext.text2:after\":false},[\"background-color:#d1d1d1\"]],[false,{\".qualities .ctext.text3:after\":false},[\"background-color:#13b5d6\"]],[false,{\".gallery-logos .item\":false},[\"display:table\",\"width:100%\",\"height:100px\"]],[false,{\".gallery-logos .item .wrap-item\":false},[\"width:100%\",\"height:100%\",\"display:table-row\"]],[false,{\".gallery-logos .item .wrap-item .image\":false},[\"width:100%\",\"height:100%\",\"display:table-cell\",\"vertical-align:middle\",\"text-align:center\"]],[false,{\".gallery-logos .item .wrap-item .image amp-img\":false,\".gallery-logos .item .wrap-item .image amp-anim\":false},[\"max-width:80%\",\"width:auto\",\"max-height:50px\",\"height:auto\",\"display:inline-block\"]],[false,\"@media (min-width:1400px){\"],[false,{\".gallery-logos .item .wrap-item .image amp-img\":false,\".gallery-logos .item .wrap-item .image amp-anim\":false},[\"max-height:70px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".contact\":false,\".text-contact\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".top-contact\":false},[\"line-height:90px\",\"position:relative\",\"width:100%\",\"margin-top:100px\",\"background:#75e168\",\"background:-moz-linear-gradient(top,#75e168 0,#38cea3 100%)\",\"background:-webkit-linear-gradient(top,#75e168 0,#38cea3 100%)\",\"background:linear-gradient(to bottom,#75e168 0,#38cea3 100%)\",\"padding:70px 0\"]],[false,{\".top-contact h1\":false},[\"margin:0\",\"font-size:50px\"]],[false,{\".top-contact h2\":false},[\"margin:0\",\"font-size:40px\",\"line-height:90px\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-contact h2\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".top-contact amp-google-document-embed\":false},[\"width:100%\",\"margin-top:20px\"]],[false,{\".subitems\":false},[\"margin:30px 0\"]],[false,{\".subitems .item\":false},[\"position:relative\",\"display:inline-block\",\"color:#152649\",\"font-family:Rajdhani\",\"font-weight:700\",\"padding:0 10px 0 0\",\"margin-right:10px\",\"margin-bottom:5px\"]],[false,{\".subitems .item:after\":false},[\"width:1px\",\"height:100%\",\"position:absolute\",\"content:\\\"\\\"\",\"right:0\",\"top:0\",\"background:#2b9ac7\",\"background:-moz-linear-gradient(top,#2b9ac7 0,#b9f05a 100%)\",\"background:-webkit-linear-gradient(top,#2b9ac7 0,#b9f05a 100%)\",\"background:linear-gradient(to bottom,#2b9ac7 0,#b9f05a 100%)\"]],[false,{\".subitems .item:first-child\":false},[\"padding-left:0\"]],[false,{\".subitems .item:last-child\":false},[\"padding-right:0\"]],[false,{\".subitems .item:last-child:after\":false},[\"display:none\"]],[false,{\".circles-menu\":false},[\"margin-top:-100px\",\"position:relative\",\"text-align:center\"]],[false,\"@media (min-width:1400px){\"],[false,{\".circles-menu\":false},[\"margin-top:-125px\"]],[false,\"}\"],[false,{\".circles-menu .circle\":false},[\"margin:0 auto 30px\",\"display:table\",\"width:200px\",\"height:200px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"border-radius:100px\",\"-moz-border-radius:100px\",\"-webkit-border-radius:100px\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (min-width:1400px){\"],[false,{\".circles-menu .circle\":false},[\"width:250px\",\"height:250px\",\"border-radius:125px\",\"-moz-border-radius:125px\",\"-webkit-border-radius:125px\"]],[false,\"}\"],[false,{\".circles-menu .circle .wrap\":false},[\"display:table-row\",\"width:100%\",\"height:100%\"]],[false,{\".circles-menu .circle .wrap .text-circle\":false},[\"display:table-cell\",\"width:100%\",\"height:100%\",\"vertical-align:middle\",\"font-family:Rajdhani\",\"font-weight:700\",\"color:#002048\",\"font-size:25px\",\"line-height:25px\"]],[false,{\".circles-menu .circle.circle1\":false},[\"background-color:#00a2c3\",\"border:3px solid #00a2c3\"]],[false,{\".circles-menu .circle.circle1:hover\":false},[\"background-color:#fff\"]],[false,{\".circles-menu .circle.circle2\":false},[\"background-color:#d0d0d0\",\"border:3px solid #d0d0d0\"]],[false,{\".circles-menu .circle.circle2:hover\":false},[\"background-color:#fff\"]],[false,{\".circles-menu .circle.circle3\":false},[\"background-color:#91e63e\",\"border:3px solid #91e63e\"]],[false,{\".circles-menu .circle.circle3:hover\":false},[\"background-color:#fff\"]],[false,{\".map\":false},[\"margin:0\",\"padding:0\",\"position:relative\",\"width:100%\",\"background-color:#e8e8e8\",\"color:grey\"]],[false,{\".map .info\":false},[\"width:620px\",\"position:absolute\",\"margin-left:50%\",\"left:-310px\",\"top:-60px\",\"background-color:#fff\",\"padding:20px\",\"color:#152649\",\"font-size:13px\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info\":false},[\"width:90%\",\"margin:0 5%\",\"left:0\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".map .info\":false},[\"width:620px\",\"left:-310px\",\"font-size:15px\"]],[false,\"}\"],[false,{\".map .info .local\":false},[\"width:40%\",\"float:left\",\"padding-right:20px\"]],[false,{\".map .info .local .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info .local .ltext\":false},[\"float:left\",\"text-align:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info .local\":false},[\"width:100%\",\"padding:0\"]],[false,\"}\"],[false,{\".map .info .mail\":false},[\"width:60%\",\"float:left\",\"padding-left:20px\",\"border-left:1px solid #ccc\"]],[false,{\".map .info .mail .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info .mail .ltext\":false},[\"float:left\",\"line-height:40px\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info .mail\":false},[\"width:100%\",\"padding:0\",\"border:0\",\"margin-top:20px\"]],[false,\"}\"],[false,{\".map .info2\":false},[\"width:500px\",\"position:absolute\",\"margin-left:50%\",\"left:-250px\",\"top:40px\",\"background-color:#fff\",\"padding:20px\",\"color:#152649\",\"font-size:13px\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info2\":false},[\"width:90%\",\"margin:0 5%\",\"left:0\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".map .info2\":false},[\"width:600px\",\"left:-300px\",\"font-size:15px\"]],[false,\"}\"],[false,{\".map .info2 .local\":false},[\"width:40%\",\"float:left\",\"padding-right:20px\"]],[false,{\".map .info2 .local .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info2 .local .ltext\":false},[\"float:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info2 .local\":false},[\"width:100%\",\"padding:0\"]],[false,\"}\"],[false,{\".map .info2 .mail\":false},[\"width:60%\",\"float:left\",\"padding-left:20px\",\"border-left:1px solid #ccc\"]],[false,{\".map .info2 .mail .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info2 .mail .ltext\":false},[\"float:left\",\"line-height:40px\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info2 .mail\":false},[\"width:100%\",\"padding:0\",\"border:0\",\"margin-top:20px\"]],[false,\"}\"],[false,{\".map h2\":false},[\"margin-top:70px\"]],[false,{\".panel\":false},[\"position:relative\",\"text-align:center\",\"margin-top:-13%\"]],[false,{\".panel .panel-img\":false},[\"position:absolute\"]],[false,{\".panel .panel-img amp-img\":false,\".panel .panel-img amp-anim\":false},[\"width:40px\"]],[false,{\".panel #panel1\":false},[\"top:100px\",\"left:0\"]],[false,{\".panel #panel2\":false},[\"top:80px\",\"left:40px\"]],[false,{\".panel #panel3\":false},[\"top:100px\",\"left:80px\"]],[false,{\".panel #panel4\":false},[\"top:0\",\"left:120px\"]],[false,{\".panel #panel5\":false},[\"top:70px\",\"left:160px\"]],[false,{\".panel #panel6\":false},[\"top:90px\",\"left:200px\"]],[false,{\".panel #panel7\":false},[\"top:70px\",\"left:240px\"]],[false,{\".panel #panel8\":false},[\"top:50px\",\"left:280px\"]],[false,{\".panel #panel9\":false},[\"top:70px\",\"left:320px\"]],[false,{\".panel #panel10\":false},[\"top:130px\",\"left:360px\"]],[false,{\".hidden\":false},[\"opacity:0\"]],[false,{\".visible\":false},[\"opacity:1\"]],[false,\"@media (max-width:992px){\"],[false,{\".text-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".desktop\":false},[\"display:block\"]],[false,\"@media (max-width:992px){\"],[false,{\".desktop\":false},[\"display:none\"]],[false,\"}\"],[false,{\".mobile\":false},[\"display:none\"]],[false,\"@media (max-width:992px){\"],[false,{\".mobile\":false},[\"display:block\"]],[false,\"}\"],[false,{\".mbottom\":false},[\"margin-bottom:-50px\"]],[true,\"@media (max-width:1400px){\"],[true,{\".container-fluid\":true},[\"max-width:1140px\"]],[true,\"}\"],[true,\"@media (min-width:1400px){\"],[true,{\".container-fluid\":true},[\"width:90%\"]],[true,\"}\"],[false,{\".bg-middle\":false},[\"background-position:left center\",\"background-size:auto 95%\",\"background-repeat:no-repeat\"]],[false,{\".bg-bottom\":false},[\"background-position:bottom center\",\"background-size:auto 95%\",\"background-repeat:no-repeat\"]],[false,\"@media (max-width:992px){\"],[false,{\".item-carousel-1\":false,\".item-carousel-2\":false},[\"text-align:center\"]],[false,{\".item-carousel-1:not(#_#_#_#_#_#_#_)\":false,\".item-carousel-2:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\",\"background-image:none\"]],[false,\"}\"],[false,{\".item-carousel-3\":false},[\"text-align:center\"]],[false,{\".add-top\":false},[\"padding-top:150px\"]],[false,{\".add-top-2\":false},[\"margin-top:100px\"]],[true,{\".blog-color\":true},[\"background-color:#f8f8f8\",\"line-height:50px\",\"position:relative\",\"width:100%\",\"margin-top:100px\"]],[true,{\".blog-color h1\":true},[\"margin:0\",\"font-size:50px\",\"line-height:50px\"]],[true,{\".blog-color .info-text\":true},[\"font-family:Rajdhani\",\"font-weight:300\",\"line-height:20px\",\"font-size:16px\",\"color:#8c8c8c\"]],[true,{\".blog-title-main\":true},[\"padding:90px 50px\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:left center\"]],[true,\"@media (max-width:992px){\"],[true,{\".blog-title-main\":true},[\"padding:30px\"]],[true,\"}\"],[true,{\".blog-main\":true},[\"position:relative\",\"background-color:#fff\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\"]],[true,\"@media (max-width:992px){\"],[true,{\".blog-main\":true},[\"display:none\"]],[true,\"}\"],[true,{\".blog-main .blog-mask\":true},[\"padding:0 50px\",\"position:absolute\",\"width:100%\",\"height:100%\",\"left:0\",\"top:0\",\"background:-moz-linear-gradient(left,rgba(50,143,194,.95) 0,rgba(204,204,204,.95) 100%)\",\"background:-webkit-linear-gradient(left,rgba(50,143,194,.95) 0,rgba(204,204,204,.95) 100%)\",\"background:linear-gradient(to right,rgba(50,143,194,.95) 0,rgba(204,204,204,.95) 100%)\",\"color:#152649\",\"display:flex\",\"align-content:center\",\"align-content:center\",\"flex-wrap:wrap\",\"flex-direction:column\",\"justify-content:center\"]],[true,{\".blog-main .blog-main-content\":true},[\"width:100%\"]],[true,{\".blog-main .blog-main-content .blog-date\":true},[\"line-height:25px\",\"margin-bottom:0\"]],[true,{\".blog-main .blog-main-content .blog-title\":true},[\"font-size:20px\",\"line-height:25px\",\"font-weight:700\",\"display:block\"]],[true,\"@media (min-width:1400px){\"],[true,{\".blog-main .blog-main-content .blog-title\":true},[\"font-size:25px\",\"line-height:30px\",\"max-width:400px\"]],[true,\"}\"],[true,{\".blog-main .blog-main-content .blog-info\":true},[\"color:#152649\",\"font-size:14px\",\"line-height:25px\",\"margin-bottom:0\"]],[true,\"@media (min-width:1400px){\"],[true,{\".blog-main .blog-main-content .blog-info\":true},[\"font-size:16px\"]],[true,\"}\"],[true,{\".blog-main .blog-main-content .blog-read\":true},[\"background-color:#9d7c23\",\"color:#fff\",\"font-family:Rajdhani\",\"font-size:14px\",\"font-weight:500\",\"padding:5px 25px\",\"border-radius:2px\",\"-webkit-box-shadow:2px 2px 10px 0 transparent\",\"box-shadow:2px 2px 10px 0 transparent\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[true,\"@media (min-width:1400px){\"],[true,{\".blog-main .blog-main-content .blog-read\":true},[\"font-size:17px\"]],[true,\"}\"],[true,{\".blog-main .blog-main-content .blog-read:hover\":true},[\"-webkit-box-shadow:2px 2px 10px 0 rgba(0,0,0,.5)\",\"box-shadow:2px 2px 10px 0 rgba(0,0,0,.5)\"]],[true,{\".blog-main .blog-main-content .blog-tags\":true},[\"line-height:15px\",\"margin-bottom:0\",\"color:#152649\",\"margin-top:10px\"]],[true,{\".blog-main .blog-main-content .blog-tags a\":true},[\"border-color:#346a8f\"]],[true,{\".content-blog\":true},[\"position:relative\",\"width:100%\",\"background-color:#f3f3f3\",\"padding:50px 0\",\"color:grey\",\"font-size:16px\",\"line-height:25px\"]],[true,\"@media (max-width:992px){\"],[true,{\".content-blog\":true},[\"background-color:#fff\"]],[true,\"}\"],[true,{\".content-blog strong\":true},[\"color:#23819d\",\"font-size:23px\"]],[false,{\".content-blog small\":false},[\"font-weight:700\"]],[true,{\".content-blog amp-img\":true,\".content-blog amp-anim\":false},[\"width:100%\",\"max-width:100%\"]],[false,{\".content-blog .capa-blog\":false},[\"width:100%\",\"margin-top:-50px\",\"margin-bottom:30px\"]],[false,{\".pagination\":false},[\"width:100%\",\"text-align:center\",\"display:block\"]],[false,{\".pagination a\":false},[\"border:1px solid #999\",\"color:#999\",\"margin:0 20px\",\"border-radius:5px\",\"padding:10px 15px\",\"font-family:Rajdhani\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".pagination a:hover\":false},[\"color:#152649\",\"border:1px solid #152649\"]],[false,{\".arrow-wrap\":false},[\"justify-content:center\",\"display:flex\",\"align-items:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".arrow-wrap--top\":false},[\"margin-bottom:30px\"]],[false,\"}\"],[false,{\".back-arrow\":false},[\"color:#152649\",\"text-transform:uppercase\",\"font-weight:200\",\"font-family:Rajdhani\",\"font-size:14px\",\"margin-top:20px\"]],[true,{\".blog-tags\":true},[\"font-size:12px\",\"color:#23819d\"]],[true,\"@media (min-width:1400px){\"],[true,{\".blog-tags\":true},[\"font-size:15px\"]],[true,\"}\"],[true,{\".blog-tags a\":true},[\"border-right:1px solid #ccc\",\"margin-left:10px\",\"padding-right:10px\"]],[true,{\".blog-tags a:last-child\":true},[\"border:0\",\"padding:0\"]],[true,{\".blog-tags a:first-child\":true},[\"margin:0\"]],[false,{\".top-blog-single\":false},[\"position:relative\",\"width:100%\",\"margin-top:100px\",\"padding:70px 0\",\"background-color:#fff\"]],[false,{\".top-blog-single a:hover\":false},[\"text-decoration:underline\"]],[false,{\".top-blog-single h1\":false},[\"margin:0 0 10px\",\"font-size:45px\",\"line-height:45px\",\"font-family:Raleway\"]],[false,{\".top-blog-single .blog-title\":false},[\"line-height:55px\",\"color:#152649\"]],[false,{\".top-blog-single .wrap-blog-info\":false},[\"margin-top:-45px\",\"margin-bottom:30px\"]],[false,{\".top-blog-single .back-arrow\":false},[\"font-size:35px\",\"margin:0\"]],[false,{\".top-blog-single .back-arrow a:hover\":false},[\"text-decoration:none\"]],[false,{\".top-blog-single .blog-tags\":false},[\"margin-bottom:-30px\",\"margin-top:30px\"]],[true,{\".blog-info\":true},[\"font-family:Rajdhani\",\"font-size:17px\",\"line-height:25px\",\"color:#23819d\",\"font-weight:500\"]],[true,{\".blog-date\":true},[\"color:#152649\",\"font-family:Rajdhani\",\"font-size:14px\",\"margin-bottom:10px\",\"text-transform:uppercase\",\"font-weight:500\"]],[true,\"@media (min-width:1400px){\"],[true,{\".blog-date\":true},[\"font-size:20px\"]],[true,\"}\"],[false,{\".blog-date--text\":false},[\"color:#23819d\",\"margin-top:20px\"]],[false,{\".box-post-intern\":false},[\"padding:20px\",\"background-color:#f0f0f0\",\"border:1px solid #c2c2c2\",\"border-radius:2px\",\"height:100%\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width:992px){\"],[false,{\".box-post-intern\":false},[\"margin-bottom:30px\",\"height:auto\"]],[false,\"}\"],[false,{\".box-post-intern:hover\":false},[\"background-color:#fff\"]],[false,{\".box-post-intern .blog-date\":false},[\"color:#23819d\",\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"margin-bottom:10px\",\"text-transform:uppercase\",\"font-weight:500\"]],[false,{\".box-post-intern .blog-title\":false},[\"font-size:20px\",\"line-height:25px\",\"color:#23819d\",\"font-weight:700\"]],[false,{\".box-post-intern .blog-info\":false},[\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"color:#23819d\",\"font-weight:500\",\"margin-top:15px\"]],[false,{\".box-post-intern .blog-tags\":false},[\"margin-bottom:0\"]],[true,{\".box-post\":true},[\"height:calc(100% - 30px)\",\"overflow:hidden\",\"position:relative\",\"padding:30px\",\"margin-bottom:30px\",\"background-color:#f0f0f0\",\"border:1px solid #c2c2c2\",\"border-radius:2px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[true,\"@media (max-width:992px){\"],[true,{\".box-post\":true},[\"height:auto\"]],[true,\"}\"],[true,{\".box-post:hover\":true},[\"background-color:#fff\"]],[false,{\".box-post .capa-post\":false},[\"width:calc(100% + 60px)\",\"height:200px\",\"margin-top:-30px\",\"margin-left:-30px\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:top center\",\"margin-bottom:30px\"]],[true,{\".box-post .blog-date\":true},[\"color:#23819d\",\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"margin-bottom:30px\",\"text-transform:uppercase\",\"font-weight:500\"]],[true,\"@media (min-width:1400px){\"],[true,{\".box-post .blog-date\":true},[\"font-size:16px\"]],[true,\"}\"],[true,{\".box-post .blog-title\":true},[\"font-size:20px\",\"line-height:25px\",\"color:#23819d\",\"font-weight:700\"]],[true,\"@media (min-width:1400px){\"],[true,{\".box-post .blog-title\":true},[\"font-size:25px\",\"line-height:30px\"]],[true,\"}\"],[true,{\".box-post .blog-info\":true},[\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"color:#23819d\",\"font-weight:500\",\"margin-top:10px\"]],[true,\"@media (min-width:1400px){\"],[true,{\".box-post .blog-info\":true},[\"font-size:16px\"]],[true,\"}\"],[true,{\".box-post .blog-excerpt\":true},[\"font-size:12px\",\"line-height:18px\"]],[true,\"@media (min-width:1400px){\"],[true,{\".box-post .blog-excerpt\":true},[\"font-size:15px\"]],[true,\"}\"],[true,{\".box-post .blog-read\":true},[\"font-family:Rajdhani\",\"color:#9d7c23\",\"font-size:13px\",\"line-height:15px\",\"font-weight:500\"]],[true,\"@media (min-width:1400px){\"],[true,{\".box-post .blog-read\":true},[\"font-size:16px\"]],[true,\"}\"],[true,{\".box-post .blog-tags\":true},[\"margin-top:20px\",\"margin-bottom:0\"]],[false,{\".more-section\":false},[\"margin-top:30px\"]],[true,{\"li.categories\":true},[\"font-family:Rajdhani\",\"text-transform:uppercase\",\"list-style:none\",\"margin-bottom:70px\",\"font-weight:500\",\"color:#23819d\",\"font-size:20px\"]],[true,\"@media (min-width:1400px){\"],[true,{\"li.categories\":true},[\"font-size:25px\"]],[true,\"}\"],[true,\"@media (max-width:992px){\"],[true,{\"li.categories\":true},[\"margin-top:50px\",\"margin-bottom:0\"]],[true,\"}\"],[true,{\"li.categories ul\":true},[\"list-style:none\",\"padding:0\",\"margin-top:30px\"]],[true,{\"li.categories ul li\":true},[\"margin-bottom:15px\",\"text-transform:none\",\"font-size:13px\",\"font-family:Raleway\",\"font-weight:300\"]],[true,\"@media (min-width:1400px){\"],[true,{\"li.categories ul li\":true},[\"font-size:15px\"]],[true,\"}\"],[true,{\".icon-main-blog\":true},[\"width:80px\",\"margin-top:-20px\",\"margin-left:-15px\"]],[true,{\".icon-main-blog amp-img\":true,\".icon-main-blog amp-anim\":false},[\"width:100%\"]],[false,{\"#paginator\":false},[\"width:100%\",\"padding:0 15px\",\"margin:25px 0\",\"text-align:center\"]],[false,{\"#paginator li\":false},[\"list-style:none\",\"display:inline-block\",\"width:30px\",\"line-height:30px\",\"border:1px solid #ccc\",\"border-radius:5px\",\"color:#999\",\"margin:5px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"#paginator li.current\":false,\"#paginator li:hover\":false},[\"color:#152649\",\"border:1px solid #152649\",\"font-weight:700\"]],[false,{\"#paginator li a\":false},[\"display:block\"]],[false,{\".footer-media a\":false},[\"color:#999\",\"margin-left:20px\"]],[true,{\".avatar-20:not(#_#_#_#_#_#_#_)\":true},[\"width:20px\"]],[false,{\".mobile-address\":false},[\"padding-top:30px\"]],[false,\"@media (max-width:1000px) and (orientation:landscape){\"],[false,{\".about-intern\":false},[\"padding-bottom:30px\"]],[false,{\".circles-menu\":false},[\"margin-top:30px\"]],[false,\"}\"],[false,\"@media (max-width:1000px){\"],[false,{\".box-post .capa-post\":false},[\"height:170px\"]],[false,\"}\"],[true,{\".box-post\":true},[\"padding:0\",\"margin-bottom:0\"]],[true,{\".box-post:not(#_#_#_#_#_#_#_)\":true},[\"height:100%\"]],[true,{\".box-post-text\":true},[\"padding:30px\"]],[true,{\".div-post\":true},[\"margin-bottom:30px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":9996,\"final_size\":9501,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/shared.css?v=1602747630\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"c90d28f47007b3c5d58885a57c053d63\",\"parse_time\":0.1414201259613037,\"shake_time\":0.00023412704467773438,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".new-header__nav--list\":true},[\"margin:0\",\"padding:0\",\"display:contents\"]],[true,{\".new-header__nav--list li\":true},[\"list-style:none\",\"color:#152649\",\"font-size:15px\",\"font-weight:900\",\"line-height:30px\",\"text-transform:uppercase\",\"padding:0 .5rem\"]],[true,{\".new-header__nav--list li:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".new-header__nav--list li .nav-link:not(#_#_#_#_#_#_#_#_)\":true},[\"padding-right:10px\",\"padding-left:10px\",\"white-space:nowrap\"]],[true,{\".new-header__nav--list li .nav-link:hover:not(#_#_#_#_#_#_#_#_)\":true},[\"color:#24c1ff\"]],[true,\"@media (max-width:992px){\"],[true,{\".new-header__nav--list li .nav-link:not(#_#_#_#_#_#_#_#_)\":true},[\"padding-right:5px\",\"padding-left:5px\"]],[true,\"}\"],[true,{\".new-header__button\":true},[\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"float:right\",\"width:15%\"]],[true,{\".new-header__button:not(#_#_#_#_#_#_#_)\":true},[\"color:#152649\"]],[true,{\".new-header__button a\":true},[\"background:0 0\",\"border:none\",\"color:#152649\",\"font-family:raleway,sans-serif\",\"font-weight:900\",\"font-size:18px\"]],[true,{\".new-header__button a:hover\":true},[\"text-decoration:none\"]],[true,{\".dropdown-menu\":true},[\"background:#f7f7f7\",\"top:97px\",\"left:50%\",\"transform:translateX(-50%)\",\"width:70%\",\"border-radius:0\",\"border-top:none\",\"cursor:auto\"]],[true,{\".dropdown-menu:not(#_#_#_#_#_#_#_)\":true},[\"position:fixed\"]],[true,{\".dropdown-menu>.container\":true},[\"display:flex\",\"align-items:center\",\"justify-content:center\",\"min-height:270px\",\"padding:2.5rem 1.5rem 3rem\"]],[true,{\".nav-link\":true},[\"display:flex\",\"flex-direction:column\",\"align-items:center\"]],[true,{\".nav-link:not(#_#_#_#_#_#_#_)\":true},[\"color:#152649\"]],[true,{\".dropdown-toggle::after:not(#_#_#_#_#_#_#_#_)\":true},[\"color:#24c1ff\",\"border:1px solid #24c1ff\",\"width:10px\"]],[false,{\".show>.dropdown-toggle::after:not(#_#_#_#_#_#_#_#_)\":false},[\"border-top:.3em solid\",\"border-right:.3em solid transparent\",\"border-bottom:0\",\"border-left:.3em solid transparent\",\"width:0\"]],[true,{\".new-header__nav--title h5\":true},[\"font-size:2.3rem\",\"text-transform:initial\",\"font-family:raleway,sans-serif\",\"font-weight:800\",\"color:#152649\",\"line-height:38px\"]],[true,{\".new-header__nav--title h5:after\":true},[\"content:\\\"-\\\"\",\"border-bottom:0 solid\",\"border-image-slice:1\",\"border-width:5px\",\"display:block\",\"color:transparent\",\"height:25px\",\"width:65px\",\"margin-bottom:2rem\"]],[true,{\".new-header__nav--subtitle p\":true},[\"margin:0\",\"font-size:.8rem\",\"color:#152649\",\"font-weight:400\",\"text-transform:initial\",\"margin-bottom:2rem\",\"line-height:15px\"]],[true,{\".new-header__nav--subtitle p:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".new-header__nav--right-edge\":true},[\"border-right:1px solid #c9c9c9\"]],[true,{\".new-header__nav--menu--img\":true},[\"padding:0\",\"text-align:center\"]],[true,{\".new-header__nav--menu--img amp-img\":true,\".new-header__nav--menu--img amp-anim\":false},[\"max-width:100%\"]],[true,{\".new-header__nav--menu--title\":true},[\"color:#152649\",\"text-transform:capitalize\",\"font-weight:800\",\"font-family:raleway,sans-serif\",\"font-size:1.1rem\",\"margin-bottom:.3rem\"]],[true,{\".new-header__nav--menu--text\":true},[\"color:#6f7070\",\"font-weight:400\",\"text-transform:initial\",\"font-size:.8rem\",\"margin:0\",\"line-height:15px\"]],[true,{\".new-header__nav--menu--text:not(#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".new-header__nav--menu--link:hover>.new-header__nav--menu--title\":true},[\"color:#24c1ff\"]],[true,{\".new-header__nav--menu--link:hover>.new-header__nav--menu--text\":true},[\"color:#24c1ff\"]],[true,{\".new-header__nav--menu--link:hover\":true},[\"text-decoration:none\"]],[true,{\".new-header__nav--menu--box:not(#_#_#_#_#_#_#_)\":true},[\"margin-bottom:1.5rem\"]],[true,{\".new-header__nav--menu--button\":true},[\"width:65%\",\"border-radius:35px\",\"border:1px solid #9df168\",\"position:relative\",\"display:flex\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"text-align:center\",\"font-size:1rem\",\"transition:font .3s\",\"height:45px\",\"align-items:center\",\"justify-content:center\"]],[true,{\".new-header__nav--menu--button:hover\":true},[\"text-decoration:none\",\"font-size:1.2rem\"]],[true,{\".new-header__nav--menu--button--link\":true},[\"color:#152649\",\"text-transform:initial\",\"font-family:raleway,sans-serif\",\"font-weight:900\"]],[true,{\".new-header__nav--title-color\":true},[\"color:#24c1ff\"]],[true,{\".new-header__nav--menu--whatsIs\":true},[\"font-weight:400\",\"color:#24c1ff\",\"text-transform:initial\",\"font-size:.9rem\"]],[true,{\".new-header__nav--menu--whatsIs:not(#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".bg-light\":true},[\"width:85%\"]],[true,{\".bg-light:not(#_#_#_#_#_#_#_)\":true},[\"background-color:transparent\"]],[true,{\".new-header__nav--subtitle-icon\":true},[\"padding:0\",\"text-align:right\"]],[true,{\".new-header__nav--subtitle-icon:not(#_#_#_#_#_#_#_)\":true},[\"width:90%\"]],[true,{\".new-header__logo\":true},[\"width:20%\"]],[true,{\".new-header__menu-item\":true},[\"justify-content:flex-end\"]],[true,{\".new-header\":true},[\"top:0\",\"width:100%\",\"position:fixed\",\"background-color:#f7f7f7\",\"z-index:3\",\"transition:all .3s ease-in-out\",\"display:flex\",\"margin:0\",\"padding:0\",\"justify-content:center\"]],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:100px\"]],[true,{\".navbar-toggler:not(#_#_#_#_#_#_#_)\":true},[\"padding:0\",\"border:none\",\"outline:0\"]],[false,{\".devops-styles:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:100px\"]],[true,\"@media (min-width:300px) and (max-width:768px){\"],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:70px\"]],[false,{\".devops-styles:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:70px\"]],[true,{\".new-header__menu-item\":true},[\"background:#f7f7f7\",\"margin:0\",\"padding:0\",\"width:100%\",\"position:absolute\",\"top:70px\",\"left:0\",\"z-index:9\",\"overflow:scroll\",\"height:650px\",\"padding-bottom:2rem\"]],[true,{\".new-header__logo\":true},[\"width:50%\"]],[true,{\".new-header__button:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".new-header__nav--list\":true},[\"display:flex\",\"align-items:flex-start\"]],[true,{\".new-header__nav--list li\":true},[\"padding-left:1rem\"]],[false,{\".new-header__nav--list>.show\":false},[\"width:100%\",\"border:1px #ccc solid\",\"padding-bottom:1rem\"]],[true,{\".dropdown-toggle::after\":true},[\"display:none\"]],[false,{\".show>.dropdown-toggle:not(#_#_#_#_#_#_#_)\":false},[\"color:#24c1ff\"]],[false,{\".show>.dropdown-toggle::before:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:.3em solid\",\"border-top:0\"]],[true,{\".new-header__nav--list li .nav-link\":true},[\"display:block\"]],[true,{\".dropdown-toggle::before\":true},[\"display:inline-block\",\"margin-right:.5rem\",\"vertical-align:.255em\",\"content:\\\"\\\"\"]],[true,{\".dropdown-toggle::before:not(#_#_#_#_#_#_#_#_)\":true},[\"border-top:.3em solid\",\"border-right:.3em solid transparent\",\"border-bottom:0\",\"border-left:.3em solid transparent\",\"color:#24c1ff\"]],[true,{\".dropdown-menu\":true},[\"width:100%\",\"top:0\",\"left:0\",\"transform:none\",\"padding:0\",\"border:none\"]],[true,{\".dropdown-menu:not(#_#_#_#_#_#_#_)\":true},[\"position:relative\"]],[true,{\".dropdown-menu>.container\":true},[\"padding:0\"]],[true,{\".dropdown-menu>.container>.row\":true},[\"width:100%\"]],[true,{\".new-header__nav--title h5\":true},[\"font-size:1.5rem\"]],[true,{\".new-header__nav--title h5:after\":true},[\"display:none\"]],[true,{\".new-header__nav--menu--img\":true},[\"display:none\"]],[true,{\".align-items-center>.col-md-8\":true},[\"padding:0\"]],[true,{\".bg-light\":true},[\"width:100%\"]],[true,{\".new-header__nav--menu--title\":true},[\"display:flex\",\"align-items:center\"]],[true,{\".new-header__nav--menu--title::after\":true},[\"display:inline-block\",\"margin-left:.5rem\",\"vertical-align:.255em\",\"content:\\\"\\\"\"]],[true,{\".new-header__nav--menu--title::after:not(#_#_#_#_#_#_#_#_)\":true},[\"border-top:.3em solid transparent\",\"border-right:0\",\"border-bottom:.3em solid transparent\",\"border-left:.3em solid\",\"color:#24c1ff\"]],[true,{\".new-header__nav--right-edge\":true},[\"border-right:none\"]],[true,{\".new-header__nav--menu--button\":true},[\"margin-bottom:2rem\",\"display:flex\",\"width:50%\"]],[true,\"}\"],[true,\"@media (min-width:600px) and (max-width:768px){\"],[true,{\".new-header__button:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".new-header__logo amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".new-header__logo amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:60%\"]],[true,\"}\"],[true,\"@media (min-width:768px) and (max-width:1024px){\"],[true,{\".new-header__nav--list li\":true},[\"font-size:10px\"]],[true,{\".new-header__button a\":true},[\"font-size:13px\"]],[true,\"}\"],[true,{\".footer-2022\":true},[\"background-color:#152649\",\"color:#c1c1c1\",\"padding:5rem 0 5rem\",\"font-weight:400\"]],[true,{\".footer-2022:not(#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".footer-2022__logo amp-img\":true,\".footer-2022__logo amp-anim\":false},[\"width:100%\"]],[true,{\".footer-2022__text\":true},[\"font-size:.9rem\",\"text-align:end\",\"line-height:15px\"]],[true,{\".footer-2022__certificates\":true},[\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[true,{\".footer-2022__certificates-box-union\":true},[\"display:flex\"]],[true,{\".footer-2022__certificates--kubernetes a amp-img\":true,\".footer-2022__certificates--kubernetes a amp-anim\":false},[\"width:100%\",\"padding:0 1rem\"]],[true,{\".footer-2022__certificates--cloud-native a amp-img\":true,\".footer-2022__certificates--cloud-native a amp-anim\":false},[\"width:100%\",\"padding:0 1rem\"]],[true,{\".footer-2022__certificates--linux-foundation a amp-img\":true,\".footer-2022__certificates--linux-foundation a amp-anim\":false},[\"width:100%\",\"padding:0 1rem\"]],[true,{\".footer-2022__social-media\":true},[\"display:flex\",\"align-items:center\",\"justify-content:end\"]],[true,{\".footer-2022__social-media a\":true},[\"margin:0 .5rem\",\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[true,{\".footer-2022__social-media a amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".footer-2022__social-media a amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[true,{\".footer-2022__menu\":true},[\"margin-top:6rem\",\"margin-bottom:5rem\"]],[true,{\".footer-2022__menu--box\":true},[\"display:flex\",\"flex-direction:row\",\"width:100%\",\"padding:0\"]],[true,{\".footer-2022__menu--list\":true},[\"flex-grow:1\"]],[true,{\".footer-2022__menu--list h5\":true},[\"color:#59657e\",\"margin-bottom:1rem\",\"font-size:1rem\"]],[true,{\".footer-2022__menu--list h5:after\":true},[\"content:\\\"-\\\"\",\"border-bottom:0 solid\",\"border-image-slice:1\",\"border-width:4px\",\"display:block\",\"color:transparent\",\"height:20px\",\"width:65px\",\"margin-bottom:1.5rem\"]],[true,{\".footer-2022__menu--list ul\":true},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[true,{\".footer-2022__menu--list ul li\":true},[\"margin-bottom:.5rem\"]],[true,{\".footer-2022__menu--list ul li strong\":true},[\"color:#24c1ff\",\"font-weight:900\",\"font-family:raleway,sans-serif\",\"padding-bottom:.5rem\",\"display:block\"]],[true,{\".footer-2022__menu--list ul li a\":true},[\"color:#24c1ff\",\"font-weight:500\",\"font-family:raleway,sans-serif\",\"font-size:.9rem\"]],[true,{\".footer-2022__menu--list ul li a:hover\":true},[\"text-decoration:none\",\"-webkit-background-clip:text\",\"-webkit-text-fill-color:transparent\"]],[true,{\".footer-2022__box-end\":true},[\"font-size:.9rem\"]],[true,{\".footer-2022__box-end--privacy-policy\":true},[\"text-decoration:underline\",\"color:#c9c9c9\",\"padding-right:1rem\",\"border-right:1px solid #c9c9c9\"]],[true,{\".footer-2022__box-end--privacy-policy:hover\":true},[\"color:#24c1ff\"]],[true,{\".footer-2022__box-end--terms-of-use\":true},[\"text-decoration:underline\",\"color:#c9c9c9\",\"margin-left:1rem\",\"margin-right:3rem\"]],[true,{\".footer-2022__box-end--terms-of-use:hover\":true},[\"color:#24c1ff\"]],[true,{\".footer-2022__copyright\":true},[\"font-size:.9rem\",\"color:#c9c9c9\"]],[true,\"@media (min-width:300px) and (max-width:768px){\"],[true,{\".footer-2022__logo amp-img\":true,\".footer-2022__logo amp-anim\":false},[\"margin-bottom:3rem\",\"padding-top:5rem\",\"border-top:2px solid #486091\"]],[true,{\".footer-2022__text\":true},[\"text-align:left\",\"margin-bottom:2rem\"]],[true,{\".footer-2022__certificates\":true},[\"margin-bottom:4rem\"]],[true,{\".footer-2022__social-media\":true},[\"justify-content:flex-start\"]],[true,{\".footer-2022__certificates-box-union\":true},[\"display:flex\",\"flex-direction:column-reverse\"]],[true,{\".footer-2022__certificates--cloud-native a amp-img\":true,\".footer-2022__certificates--cloud-native a amp-anim\":false},[\"margin-bottom:1rem\"]],[true,{\".footer-2022__certificates--kubernetes a amp-img\":true,\".footer-2022__certificates--kubernetes a amp-anim\":false},[\"padding:0 .2rem\"]],[true,{\".footer-2022__certificates--linux-foundation a amp-img\":true,\".footer-2022__certificates--linux-foundation a amp-anim\":false},[\"width:80%\",\"margin-bottom:1rem\"]],[true,{\".footer-2022__menu\":true},[\"margin-top:5rem\",\"margin-bottom:3rem\",\"margin-left:15px\",\"margin-right:15px\"]],[true,{\".footer-2022__menu--box\":true},[\"flex-direction:column\"]],[true,{\".footer-2022__menu--list ul\":true},[\"margin-bottom:3rem\"]],[true,{\".footer-2022__mobile-items\":true},[\"width:100%\",\"padding-right:15px\",\"padding-left:15px\",\"margin-right:auto\",\"margin-left:auto\"]],[true,{\".footer-2022__box-end\":true},[\"margin-bottom:.5rem\"]],[true,\"}\"],[true,\"@media (min-width:600px) and (max-width:768px){\"],[true,{\".footer-2022__logo amp-img\":true,\".footer-2022__logo amp-anim\":false},[\"margin-bottom:0\",\"padding-top:0\",\"border-top:none\"]],[true,{\".footer-2022__certificates-box-union\":true},[\"flex-direction:row\"]],[true,{\".footer-2022__text\":true},[\"margin-bottom:0\"]],[true,{\".footer-2022__certificates\":true},[\"margin-bottom:0\"]],[true,{\".footer-2022__social-media\":true},[\"margin-top:2rem\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1312,\"final_size\":616,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/style.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"7408b05c90ec93467ae3ffd934b45823\",\"parse_time\":0.006227016448974609,\"shake_time\":2.09808349609375e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".categories\":true},[\"list-style-type:none\",\"padding:20px\"]],[false,{\".grecaptcha-badge\":false},[\"display:none\"]],[false,{\"figcaption\":false},[\"font-size:12px\",\"text-align:center\"]],[true,{\".content-blog h1\":true},[\"font-size:45px\",\"line-height:45px\",\"margin-top:20px\",\"margin-bottom:30px\"]],[true,{\".content-blog strong\":true},[\"font-size:inherit\"]],[false,{\".content-blog h2\":false},[\"font-size:35px\",\"line-height:35px\",\"margin-top:20px\",\"margin-bottom:20px\",\"color:#23819d\"]],[true,{\".content-blog h3\":true},[\"font-size:30px\",\"line-height:30px\",\"margin-top:20px\",\"margin-bottom:20px\",\"color:inherit\",\"color:#000\"]],[false,{\".content-blog h4\":false},[\"position:relative\",\"font-family:\\\"Rajdhani\\\"\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"margin-top:10px\",\"margin-bottom:10px\"]],[true,{\".content-blog h5\":true},[\"position:relative\",\"font-family:\\\"Rajdhani\\\"\",\"font-weight:500\",\"line-height:20px\",\"font-size:20px\",\"margin-top:10px\",\"margin-bottom:0px\"]],[true,{\".content-blog h6\":true},[\"position:relative\",\"font-family:\\\"Rajdhani\\\"\",\"font-weight:500\",\"line-height:18px\",\"font-size:18px\",\"margin-top:10px\",\"margin-bottom:0px\"]],[true,{\".content-blog p a\":true},[\"color:#0693e3\",\"text-decoration:underline\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":155232,\"final_size\":10932,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/style-isk.css?v=1059518401\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"6f68b4471d049368cf66b5fad21e7dbd\",\"parse_time\":2.883708953857422,\"shake_time\":0.002376079559326172,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"body\":true},[\"background-color:#fff\",\"font-family:Raleway,sans-serif\",\"font-weight:400\",\"font-size:14px\",\"line-height:20px\",\"color:#152649\",\"-webkit-font-smoothing:subpixel-antialiased\",\"overflow-x:hidden\"]],[false,{\"sup\":false},[\"top:-.8em\",\"font-size:7px\",\"font-weight:800\"]],[false,{\".red\":false},[\"color:#ff555f\"]],[false,{\".grey\":false},[\"color:#7080a7\"]],[false,{\".turquouise\":false},[\"color:#28d9cb\"]],[false,{\".flourscent\":false},[\"color:#24c1ff\"]],[false,{\".g-d-none\":false},[\"display:none\"]],[true,{\".new-header\":true},[\"z-index:4\"]],[true,{\".new-header__nav--subtitle p\":true},[\"padding-left:16px\",\"font-size:14px\",\"letter-spacing:-.35px\"]],[true,{\"header nav .dropdown-menu p.new-header__nav--menu--text\":true},[\"max-width:180px\"]],[false,{\".custom-txt-img-sec.tek-world-scale .container-md\":false},[\"max-width:1406px\"]],[false,{\".custom-txt-img-sec .review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:0px\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner\":false},[\"position:relative\"]],[false,{\".c-application-development:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:30px\"]],[false,{\".c-application-development .custom-txt h2:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:25px\"]],[false,{\".cloud-native-application .custom-txt p span\":false},[\"color:#152649\"]],[false,{\".cloud-native-application .review_sec\":false},[\"margin-top:25px\"]],[false,{\".c-application-development .review_sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".c-application-development .cloud-native-application .custom-img amp-img\":false,\".c-application-development .cloud-native-application .custom-img amp-anim\":false},[\"width:94%\"]],[false,{\".cp-tek-teams-isk .title\":false},[\"margin-bottom:24px\"]],[false,{\".cp-tek-teams-isk .title p\":false},[\"margin:0\",\"color:#28d9cb\",\"font-size:16px\",\"text-transform:uppercase\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:400\"]],[false,{\".cp-tek-teams-isk p\":false},[\"font-size:24px\",\"color:#28d9cb\",\"margin:10px 0px 0px 0px\",\"font-weight:700\",\"line-height:normal\"]],[false,{\".cp-tek-teams-isk amp-img\":false,\".cp-tek-teams-isk amp-anim\":false},[\"min-height:350px\"]],[false,{\".cp-tek-teams-isk .inner-hero-text amp-img\":false,\".cp-tek-teams-isk .inner-hero-text amp-anim\":false},[\"min-height:unset\"]],[false,{\".review_sec\":false},[\"background:#f5f5f5\",\"padding:40px 56px\",\"margin-top:65px\",\"box-shadow:0px 20px 32px 0px rgba(0,0,0,.2)\",\"position:relative\",\"position:relative\",\"border-radius:24px\"]],[false,{\".review_sec amp-img\":false,\".review_sec amp-anim\":false},[\"position:absolute\",\"left:0px\"]],[false,{\".review_sec::after\":false},[\"content:\\\"\\\"\",\"display:block\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8578.png\\\")\",\"background-repeat:no-repeat\",\"width:40px\",\"height:40px\",\"position:absolute\",\"top:-20px\",\"left:56px\",\"background-size:cover\"]],[false,{\".review_sec .swiper-slide p\":false},[\"margin:0\",\"font-size:20px\",\"color:#707070\"]],[false,{\".review_sec .swiper-slide i\":false},[\"margin:20px 0px\",\"display:block\",\"color:#707070\",\"font-size:18px\",\"padding-left:70px\"]],[false,{\".review_sec .swiper-slide span\":false},[\"color:#152649\",\"font-weight:700\"]],[false,{\".review_sec .title p\":false},[\"font-size:20px\",\"font-weight:700\",\"color:#707070\"]],[false,{\".review_sec .title span\":false},[\"color:#28d9cb\"]],[false,{\".rebuild-and-replatform\":false},[\"background-color:#f1f1f1\",\"padding:120px 0px 192px 0px\"]],[false,{\".rebuild-and-replatform .txt label\":false},[\"display:block\",\"margin-bottom:40px\"]],[false,{\".rebuild-and-replatform .txt h2\":false},[\"margin-bottom:40px\"]],[false,{\".rebuild-and-replatform .txt h2 span\":false},[\"color:#28d9cb\"]],[false,{\".rebuild-and-replatform .txt p\":false},[\"color:#707070\",\"margin-bottom:30px\",\"font-size:20px\",\"line-height:1.6em\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content\":false},[\"display:none\",\"flex-wrap:wrap\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text p\":false},[\"font-size:20px\",\"line-height:1.6\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img\":false},[\"width:175px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-img\":false,\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-anim\":false},[\"width:100%\",\"object-fit:cover\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-boxs\":false},[\"margin-bottom:43px\",\"border-bottom:1px solid #dbdbdb\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text\":false},[\"padding-left:45px\",\"width:calc(100% - 175px)\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content.active\":false},[\"display:flex\",\"padding-bottom:37px\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec\":false},[\"margin:0\",\"box-shadow:unset\",\"background-color:transparent\",\"border-radius:unset\",\"padding:0\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec::after\":false},[\"display:none\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row\":false},[\"background-color:#fff\",\"padding:56px 76px\",\"border-radius:28px\",\"border:1px solid #dbdbdb\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul\":false},[\"list-style:none\",\"padding:0\",\"padding:8px\",\"display:flex\",\"background-color:#fff\",\"border-radius:36px\",\"margin:0px 0px 16px 0px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li\":false},[\"width:50%\",\"padding:16px\",\"border-radius:28px\",\"text-align:center\",\"transition:all .4s ease\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li a\":false},[\"font-size:20px\",\"color:#707070\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li.active\":false},[\"background-color:#f1f1f1\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li.active b\":false},[\"color:#152649\"]],[false,{\".custom-full-bg amp-img\":false,\".custom-full-bg amp-anim\":false},[\"width:100%\",\"display:block\"]],[false,{\".keeping-you-competitive\":false},[\"background-color:#152649\",\"padding:120px 0px 135px\"]],[false,{\".keeping-you-competitive label\":false},[\"color:#7080a7\"]],[false,{\".keeping-you-competitive .heading-box h2\":false},[\"color:#fff\",\"margin-bottom:40px\"]],[false,{\".keeping-you-competitive p\":false},[\"color:#fff\",\"font-family:Raleway,sans-serif\",\"font-size:20px\",\"line-height:1.4\"]],[false,{\".keeping-future\":false},[\"margin-top:40px\"]],[false,{\".keeping-future ul\":false},[\"list-style:none\",\"font-size:20px\",\"color:#24c1ff\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".keeping-future ul li\":false},[\"margin-bottom:32px\",\"font-style:italic\",\"border-bottom:#16365c solid 1px\",\"padding-bottom:30px\",\"width:26%\",\"margin-right:45px\",\"font-weight:500\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:11%\"]],[false,{\".keeping-future ul li:nth-child(8)\":false,\".keeping-future ul li:nth-child(4)\":false},[\"margin-right:0px\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(10)\":false,\".keeping-future ul li:nth-child(11)\":false},[\"border:none\"]],[false,{\".custom-qout-box\":false},[\"background-color:#f1f1f1\",\"padding:40px 0px 95px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-top:-11%\",\"margin-bottom:100px\",\"background-color:#fff\"]],[false,{\".custom-qout-box .review_sec i\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.4\",\"font-weight:400\",\"margin-bottom:24px\",\"display:block\"]],[false,{\".depending-on\":false},[\"display:flex\",\"align-items:center\",\"justify-content:space-between\"]],[false,{\".depending-img-box\":false},[\"width:15%\"]],[false,{\".depending-text\":false},[\"width:55%\"]],[false,{\".depending-text p\":false},[\"font-size:24px\",\"font-weight:bold\",\"line-height:1.4\"]],[false,{\".depending-btn\":false},[\"width:25%\"]],[false,{\".depending-btn .btn-blue\":false},[\"border-radius:50px\",\"padding:24px 30px\"]],[false,{\".native-applications-list\":false},[\"padding:120px 0px 100px\"]],[false,{\".native-applications-list .heading-box\":false},[\"margin-bottom:60px\"]],[false,{\".native-applications-list .heading-box h2 span\":false},[\"color:#28d9cb\"]],[false,{\".native-applications-list .swiper-wrapper\":false},[\"display:flex\",\"justify-content:space-between\"]],[false,{\".native-applications-list .swiper-slide\":false},[\"width:calc(50% - 50px)\"]],[false,{\".applications-col ul\":false},[\"list-style:none\"]],[false,{\".applications-col li\":false},[\"font-size:20px\",\"color:#707070\",\"font-weight:bold\",\"border-bottom:#dbdbdb solid 1px\",\"padding-bottom:25px\",\"margin-bottom:25px\",\"position:relative\",\"padding-left:37px\",\"line-height:1.4\"]],[false,{\".applications-col li::after\":false},[\"position:absolute\",\"left:0px\",\"top:0px\",\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8544.png\\\")\",\"background-repeat:no-repeat\",\"width:24px\",\"height:24px\"]],[false,{\".applications-col li:last-child\":false},[\"border:none\"]],[false,{\".native-applications-list-pagination\":false},[\"text-align:center\"]],[false,{\".native-applications-list-pagination .swiper-pagination-bullet\":false},[\"width:4px\",\"height:4px\",\"background-color:#dbdbdb\",\"opacity:1\"]],[false,{\".native-applications-list-pagination .swiper-pagination-bullet-active\":false},[\"width:24px\",\"height:4px\",\"border-radius:50px\",\"background-color:#28d9cb\"]],[false,{\".native-data-driven-top\":false},[\"background-color:#121d3d\",\"padding-bottom:80px\",\"margin-top:-2px\"]],[false,{\".native-data-driven-top .heading-box label\":false,\".native-data-driven-top .heading-box h2\":false},[\"color:#fff\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 190px\",\"background-color:#f1f1f1\"]],[false,{\".data-driven-application .swiper-slide\":false},[\"width:calc(33.333% - 44px)\"]],[false,{\".data-driven-application .swiper-wrapper\":false},[\"display:flex\",\"justify-content:space-between\"]],[false,{\".data-driven-application .swiper-button-next.swiper-button-disabled\":false,\".data-driven-application .swiper-button-prev.swiper-button-disabled\":false},[\"opacity:0\"]],[false,{\".data-driven-application .swiper-button-next:after\":false},[\"content:\\\"\\\"\",\"background-repeat:no-repeat\",\"width:26px\",\"height:16px\",\"display:none\"]],[false,{\".data-driven-application .swiper-button-next:after:not(#_#_#_#_#_#_#_#_)\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/right-arrow.png\\\")\"]],[false,{\".data-driven-application .swiper-button-prev:after\":false},[\"content:\\\"\\\"\",\"background-repeat:no-repeat\",\"width:26px\",\"height:20px\",\"display:none\"]],[false,{\".data-driven-application .swiper-button-prev:after:not(#_#_#_#_#_#_#_#_)\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/left-arrow-1.png\\\")\"]],[false,{\".data-driven-application .slider-nav\":false},[\"width:55%\",\"display:block\",\"height:20px\",\"margin:0px auto\",\"position:relative\"]],[false,{\".data-driven-application .swiper-pagination-bullet\":false},[\"width:4px\",\"border-radius:50px\",\"height:4px\",\"background-color:#24c1ff\",\"opacity:1\"]],[false,{\".data-driven-application .swiper-pagination-bullet-active\":false},[\"width:24px\",\"border-radius:50px\",\"height:4px\",\"background-color:#152649\"]],[false,{\".data-driven-application .applications-col\":false},[\"padding-bottom:15px\"]],[false,{\".data-driven-application .swiper-button-next\":false,\".data-driven-application .swiper-button-prev\":false},[\"bottom:0px\",\"top:auto\",\"position:absolute\"]],[false,{\".data-driven-application .applications-col li\":false},[\"border:none\",\"padding-bottom:0px\",\"margin-bottom:40px\",\"color:#152649\"]],[false,{\".data-driven-application .applications-col li::after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8556.png\\\")\"]],[false,{\".data-driven-application .applications-col li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8548.png\\\")\"]],[false,{\".data-driven-application .applications-col li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8549.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(1):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8550.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8551.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8552.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(4):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8553.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(3) li:nth-child(1):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8554.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(3) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8555.png\\\")\"]],[false,{\".clients-talk\":false},[\"background-color:#fff\",\"padding:120px 0px 120px\"]],[false,{\".lets-talk-box\":false},[\"background-color:#fff\",\"box-shadow:8px 0px 32px rgba(0,0,0,.1)\",\"padding:56px 0px 90px\",\"border-radius:16px\",\"margin-top:-19%\",\"text-align:center\"]],[false,{\".about-dev-ops .review_sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:100px\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:32px\",\"font-weight:bold\",\"color:#707070\",\"font-family:Raleway,sans-serif\",\"line-height:1.3\"]],[false,{\".lets-talk-box h3 span\":false},[\"color:#28d9cb\"]],[false,{\".clients-talk .btn-wrapper\":false},[\"width:316px\",\"margin:0px auto\",\"margin-top:-38px\"]],[false,{\".btn-gradient\":false},[\"border-radius:50px\",\"padding:18px 30px\",\"width:100%\",\"text-align:center\"]],[false,{\".build-wrapper .swiper-wrapper\":false},[\"display:flex\"]],[false,{\".build-wrapper .review_sec\":false},[\"margin-bottom:19px\",\"box-shadow:none\",\"margin-top:21px\"]],[false,{\".build-wrapper .review_sec:before\":false},[\"position:absolute\",\"bottom:6px\",\"content:\\\"\\\"\",\"width:96%\",\"margin:0px auto\",\"right:0\",\"z-index:-1\",\"left:0\",\"height:93px\",\"border-radius:50px\",\"box-shadow:rgba(0,0,0,.4) 0px 25px 20px -20px\"]],[false,{\".build-wrapper .heading-box\":false},[\"margin-bottom:24px\"]],[false,{\".build-wrapper .review_sec .swiper-slide p\":false},[\"padding-left:0\"]],[false,{\".build-wrapper .custom-txt p\":false},[\"margin-bottom:25px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt\":false},[\"width:49%\",\"margin-right:81px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-img\":false},[\"width:43%\",\"margin-left:0\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt p\":false},[\"margin-bottom:30px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt p:last-of-type\":false},[\"margin:0px\"]],[false,{\".text-grey-box\":false},[\"background-color:#f1f1f1\",\"padding:24px\",\"position:relative\",\"margin:40px 0px 32px\"]],[false,{\".text-grey-box p\":false},[\"padding-right:60px\"]],[false,{\".text-grey-box:after\":false},[\"position:absolute\",\"left:0\",\"top:0\",\"height:100%\",\"width:4px\",\"background:#152649\",\"content:\\\"\\\"\"]],[false,{\".journey-roadmap\":false},[\"margin-top:-253px\",\"background-color:#02163c\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:248px 0px 120px 0px\"]],[false,{\".review_sec2\":false},[\"padding:40px 30px 40px 50px\",\"margin-top:100px\",\"z-index:2\",\"position:relative\",\"box-shadow:none\"]],[false,{\".review_sec2::after\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8578-1.png\\\") no-repeat\"]],[false,{\".review_sec i\":false},[\"line-height:1.6\"]],[false,{\".review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:20px\"]],[false,{\".review_sec2 .title p\":false},[\"color:#152649\",\"line-height:1.2\"]],[false,{\".journey-roadmap-header\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\"]],[false,{\".journey-roadmap-logo\":false},[\"width:29%\"]],[false,{\".journey-roadmap-header .heading-box\":false},[\"width:66%\"]],[false,{\".journey-roadmap-header .heading-box h2\":false},[\"color:#fff\"]],[false,{\".journey-roadmap-header .heading-box h2 span\":false},[\"color:#28d9cb\"]],[false,{\".devops-services\":false},[\"padding-bottom:0\"]],[false,{\".devops-services .heading-box\":false},[\"margin-bottom:45px\"]],[false,{\".devops-services .heading-box h2\":false},[\"color:#28d9cb\"]],[false,{\".devops-services .applications-col ul\":false},[\"margin-bottom:37px\"]],[false,{\".devops-services .applications-col ul li\":false},[\"font-size:20px\",\"font-weight:normal\",\"border-bottom:none\",\"padding-bottom:0\",\"margin-bottom:0\",\"padding-left:37px\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:20px\",\"color:#152649\",\"line-height:1.6\",\"margin-bottom:24px\",\"position:relative\",\"padding-left:42px\",\"font-weight:bold\"]],[false,{\".devops-services .applications-col h5::before\":false},[\"position:absolute\",\"left:0px\",\"top:0px\",\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon1.png\\\")\",\"width:30px\",\"height:30px\",\"background-repeat:no-repeat\",\"margin-top:0px\"]],[false,{\".devops-services .applications-col ul li::after\":false},[\"content:none\"]],[false,{\".srvs-text-box\":false},[\"margin-bottom:37px\"]],[false,{\".srvs-text-box p\":false},[\"font-size:20px\",\"line-height:1.6\",\"padding-left:44px\"]],[false,{\".srvs-text-box:nth-child(1) p:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0\",\"left:0\",\"width:25px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8556.png\\\")\",\"height:25px\",\"margin-top:5px\"]],[false,{\".srvs-text-box:last-child h5\":false},[\"color:#707070\"]],[false,{\".srvs-text-box:last-child h5 span\":false},[\"font-weight:500\",\"color:#152649\"]],[false,{\".reliability-engineers\":false},[\"width:95%\",\"margin:0px auto\",\"background-color:#f5f5f5\",\"border-radius:24px\",\"padding:40px 30px 40px 92px\",\"position:relative\",\"margin-top:100px\",\"font-weight:bold\"]],[false,{\".reliability-engineers p\":false},[\"font-size:20px\",\"font-weight:bold\",\"margin-bottom:0px\"]],[false,{\".fortune-box\":false},[\"text-align:center\",\"display:flex\",\"align-items:flex-end\"]],[false,{\".tex-box\":false},[\"padding:11px 0px\",\"margin-top:25px\",\"line-height:1.6\",\"color:#152649\",\"width:49%\",\"border-radius:10px\",\"border:#707070 solid 1px\"]],[false,{\".right-short-text\":false},[\"margin-left:22px\"]],[false,{\".right-short-text p\":false},[\"font-size:14px\",\"font-weight:normal\",\"font-style:italic\",\"color:#707070\"]],[false,{\".mrdata-logo\":false},[\"position:absolute\",\"left:-58px\",\"top:0\",\"bottom:0\",\"display:flex\",\"align-items:center\"]],[false,{\".devops-services .applications-col:nth-child(1) h5:last-of-type::before\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon3.png\\\")\"]],[false,{\".native-applications-list .swiper-slide:nth-child(2) .srvs-text-box:nth-child(1) p:after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon2.png\\\")\",\"width:33px\"]],[false,{\".native-applications-list .swiper-slide:nth-child(2) .srvs-text-box:nth-child(2) h5::before\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon4.png\\\")\",\"margin-top:0px\"]],[false,{\".native-applications-list .swiper-slide:nth-child(2) .srvs-text-box:nth-child(3) h5::before\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon5.png\\\")\"]],[false,{\".kubernetes-sec\":false},[\"margin-top:-95px\"]],[false,{\".kubernetes-sec .container-md\":false},[\"padding:0px 0px\"]],[false,{\".kubernetes-sec .custom-txt\":false},[\"padding:0px 24px\"]],[false,{\".kubernetes-sec .heading-box h2\":false},[\"color:#fff\",\"margin-bottom:40px\"]],[false,{\".kubernetes-sec .scroll-img amp-img\":false,\".kubernetes-sec .scroll-img amp-anim\":false},[\"margin-bottom:120px\",\"text-align:center\"]],[false,{\".kubernetes-sec .scroll-img\":false},[\"text-align:center\"]],[false,{\".kubernetes-sec .custom-txt p\":false},[\"color:#fff\",\"font-size:20px\",\"line-height:1.6\"]],[false,{\".kubernetes-sec .custom-txt p span\":false},[\"color:#24c1ff\"]],[false,{\".book-cunsultaion-sec\":false},[\"padding:10px 0px 124px 0px\",\"background-color:#f1f1f1\"]],[false,{\".book-cunsultaion-sec a.btn-blue:hover\":false},[\"color:#fff\",\"background:#28d9cb\"]],[false,{\".top-btn\":false},[\"padding-bottom:124px\",\"margin-top:-39px\"]],[false,{\".col-row ul\":false},[\"list-style:none\",\"display:flex\",\"justify-content:space-between\",\"flex-wrap:wrap\"]],[false,{\".col-row ul li\":false},[\"font-size:20px\",\"font-weight:bold\",\"color:#152649\",\"margin-bottom:32px\",\"position:relative\",\"width:30%\",\"padding-left:46px\"]],[false,{\".col-row ul li::after\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"content:\\\"\\\"\",\"width:32px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/clck.png\\\")\",\"height:32px\"]],[false,{\".col-row ul li:nth-child(1)\":false,\".col-row ul li:nth-child(4)\":false},[\"width:35%\"]],[false,{\".col-row ul li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/cstmr.png\\\")\"]],[false,{\".col-row ul li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/wrld.png\\\")\"]],[false,{\".col-row ul li:nth-child(4):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/auto.png\\\")\"]],[false,{\".col-row ul li:nth-child(5):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/drive.png\\\")\"]],[false,{\".col-row ul li:nth-child(6):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/dlr.png\\\")\"]],[false,{\".cost-effective-sec\":false},[\"padding-bottom:0px\",\"padding-top:120px\"]],[false,{\".cost-effective-sec:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#fff\"]],[false,{\".cost-effective-sec .inner\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:end\",\"margin-bottom:80px\"]],[false,{\".cost-effective-sec .custom-txt\":false},[\"width:55%\"]],[false,{\".cost-effective-sec .left-text\":false},[\"width:43%\"]],[false,{\".cost-effective-sec .left-text p\":false},[\"font-size:20px\",\"line-height:1.6\",\"color:#707070\"]],[false,{\".cost-effective-sec .heading-box h2 span\":false},[\"color:#28d9cb\",\"display:block\"]],[false,{\".data-driven-devOps\":false},[\"display:flex\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col\":false},[\"padding-bottom:15px\",\"width:calc(50% - 38px)\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col li\":false},[\"border-bottom:#dbdbdb solid 1px\",\"padding-bottom:32px\",\"margin-bottom:32px\",\"line-height:1.6\",\"padding-left:50px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col li:after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/ppl.png\\\")\",\"width:32px\",\"height:32px\",\"margin-top:8px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(2) li:nth-child(1):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/loaction.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(2) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/icon.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(1) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/icon2.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(1) li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/icon3.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col ul li:last-child\":false},[\"border:none\"]],[false,{\".cost-effective-sec .review_sec2 .swiper-slide\":false},[\"width:100%\"]],[false,{\".cost-effective-sec .review_sec .swiper-slide i\":false},[\"padding-left:0px\"]],[false,{\".infrastructure-sec\":false},[\"margin-top:-100px\",\"background-color:#152649\",\"text-align:center\"]],[false,{\".infrastructure-sec:not(#_#_#_#_#_#_#_)\":false},[\"padding:0px 0 80px\"]],[false,{\".infrastructure-sec .bg-img::before\":false},[\"content:\\\"\\\"\",\"width:100%\",\"height:265px\",\"position:absolute\",\"left:0\",\"bottom:-3px\",\"background-image:linear-gradient(rgba(21,38,73,0),#152649)\"]],[false,{\".infrastructure-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".infrastructure-sec .container-md:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0px\"]],[false,{\".infrastructure-sec .heading-box h2\":false},[\"color:#fff\",\"margin:auto\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:93%\"]],[false,{\".infrastructure-sec .heading-box:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\",\"margin-top:40px\",\"width:100%\"]],[false,{\".infrastructure-sec .heading-box h2\":false},[\"color:#fff\",\"max-width:inherit\",\"text-align:center\"]],[false,{\".contact-wrapper-banner\":false},[\"z-index:2\"]],[false,{\".contact-form-left .calendly-inline-widget:not(#_#_#_#_#_#_#_)\":false},[\"overflow:hidden\"]],[false,{\".contact-wrapper-banner amp-img\":false,\".contact-wrapper-banner amp-anim\":false},[\"min-height:110px\"]],[false,{\".contact-wrapper-banner:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:28px\",\"height:28px\",\"background-color:#152649\",\"bottom:-13px\",\"left:18%\",\"z-index:-1\",\"transform:rotate(45deg)\",\"border-radius:4px\"]],[false,{\".change_bg .custom-contact-wrapper\":false},[\"background:#152649\",\"position:relative\",\"z-index:2\"]],[false,{\".about-map\":false},[\"position:relative\"]],[false,{\".c-full-map\":false},[\"position:absolute\",\"top:0\",\"width:100%\",\"height:100%\",\"z-index:1\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"width:100%\",\"height:100%\",\"object-fit:cover\"]],[false,{\".custom-contact-wrapper\":false},[\"padding:125px 0px 160px\",\"margin-top:0px\"]],[false,{\".about-map .c-full-map .wpgmza_map.wpgmza-auto-left:not(#_#_#_#_#_#_#_)\":false},[\"height:100%\"]],[false,{\".about-map .c-full-map .wpgmza-modern-store-locator>.wpgmza-inner\":false},[\"opacity:0\"]],[false,{\".schedule-box h1\":false},[\"display:none\"]],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"display:flex\",\"justify-content:space-between\",\"flex-wrap:wrap\",\"background:#fff\",\"box-shadow:8px 0px 32px rgba(0,0,0,.1)\",\"padding:0px\",\"border-radius:0px 26px 26px 26px\",\"position:relative\",\"z-index:2\"]],[false,{\".contact-form-left\":false},[\"width:57%\",\"padding:58px 0px 75px\"]],[false,{\".choose-option\":false},[\"padding-left:46px\"]],[false,{\".choose-option ul\":false},[\"display:flex\",\"flex-wrap:wrap\",\"justify-content:space-between\",\"list-style:none\",\"align-items:center\",\"margin-bottom:60px\"]],[false,{\".choose-option ul li\":false},[\"font-size:20px\",\"color:#152649\"]],[false,{\".choose-option ul li\":false},[\"padding:15px 33px\",\"border-radius:50px\",\"color:#707070\",\"background:#fff\",\"transition:all ease .5s\"]],[false,{\".choose-option ul li:hover\":false},[\"background:#f1f1f1\"]],[false,{\".choose-option ul li:nth-child(2)\":false},[\"font-weight:800\",\"padding:0px 20px\",\"background:transparent\",\"color:#121d3d\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box label\":false},[\"display:block\",\"font-size:18px\",\"color:#121d3d\",\"font-weight:bold\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control\":false},[\"width:100%\",\"display:block\",\"padding:14px 0px 8px\",\"border:0\",\"border-radius:0px\",\"outline:none\",\"background-color:#fff\",\"font-size:20px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:400\",\"color:#000\",\"resize:none\",\"-webkit-transition:.5s ease 0s\",\"transition:.5s ease 0s\",\"border-bottom:#e6e6e6 solid 1px\",\"margin-bottom:15px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .col-md-4\":false},[\"max-width:50%\",\"margin-bottom:15px\",\"flex:0 0 50%\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box::placeholder\":false},[\"font-size:16px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control::-webkit-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:16px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control::-ms-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:16px\",\"font-weight:normal\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control::placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:16px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea\":false},[\"margin-top:0\",\"height:130px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:55px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box input[type=\\\"submit\\\"]\":false},[\"background:linear-gradient(-90deg,#28d9cb 0,#a0f266 100%)\",\"font-size:18px\",\"height:70px\",\"font-weight:800\",\"cursor:pointer\",\"max-width:300px\",\"width:100%\",\"border-radius:50px\",\"margin:0\"]],[false,{\".change_bg .contact-form-info-right\":false},[\"background:linear-gradient(180deg,#28d9cb 0,#66f2a3 100%)\"]],[false,{\".change_bg .contact-form-info-right ul li a\":false,\".change_bg .contact-form-info-right ul li span a\":false,\".change_bg .contact-form-info-right ul li\":false,\".change_bg .contact-form-info-right ul li:first-of-type\":false,\".change_bg .contact-form-info-right h3\":false},[\"color:#152649\"]],[false,{\".change_bg .contact-form-info-right ul li\":false},[\"border-color:rgba(255,255,255,28%)\"]],[false,{\".btn-group button\":false},[\"border-radius:50px\",\"border:none\"]],[false,{\".contact-form-info-right\":false},[\"width:38%\",\"background-color:#152649\",\"border-radius:26px\",\"padding:50px 80px 119px\"]],[false,{\".contact-form-info-right h3\":false},[\"font-size:32px\",\"color:#28d9cb\",\"line-height:1.5\",\"margin-bottom:25px\",\"font-family:Raleway,sans-serif\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control:focus\":false},[\"outline:none\",\"box-shadow:none\"]],[false,{\".contact-form-info-right ul\":false},[\"list-style:none\",\"margin-bottom:70px\"]],[false,{\".contact-form-info-right ul li\":false},[\"border-bottom:#525c70 solid 1px\",\"padding:40px 0px 47px\",\"color:#bcc2ce\",\"font-size:17px\",\"position:relative\",\"display:flex\",\"align-items:center\",\"line-height:1.5\"]],[false,{\".contact-form-info-right ul li a\":false},[\"color:#28d9cb\",\"padding-left:15px\",\"text-decoration:underline\",\"display:block\"]],[false,{\".contact-form-info-right ul li:nth-of-type(1) a\":false},[\"text-decoration:none\"]],[false,{\".contact-form-info-right ul li:nth-of-type(2) a\":false},[\"color:#28d9cb\",\"padding-left:0px\"]],[false,{\".contact-form-info-right ul li:nth-of-type(2) span\":false},[\"padding-left:55px\",\"display:block\"]],[false,{\".contact-form-info-right ul li:last-child a\":false},[\"padding-left:55px\"]],[false,{\".contact-form-info-right ul li:first-of-type a\":false},[\"color:#fff\",\"font-size:32px\",\"font-weight:bold\",\"line-height:1.5\"]],[false,{\".contact-form-info-right ul li:last-child\":false},[\"border:none\"]],[false,{\".change_bg .contact-form-info-right ul .phone:before\":false,\".change_bg .contact-form-info-right ul .address:before\":false,\".change_bg .contact-form-info-right ul .email:before\":false,\".change_bg .btm-icon-line amp-img\":false,\".change_bg .btm-icon-line amp-anim\":false},[\"filter:brightness(100)\"]],[false,{\".contact-form-info-right ul .phone:before\":false},[\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/phone.svg\\\")\",\"background-size:cover\",\"background-repeat:no-repeat\",\"width:40px\",\"height:40px\",\"display:inline-block\",\"vertical-align:middle\"]],[false,{\".contact-form-info-right ul .address:before\":false},[\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/address.svg\\\")\",\"background-size:cover\",\"background-repeat:no-repeat\",\"width:41px\",\"height:45px\",\"display:inline-block\",\"vertical-align:middle\",\"padding-bottom:46px\",\"position:absolute\"]],[false,{\".contact-form-info-right ul .email:before\":false},[\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/email.svg\\\")\",\"background-size:cover\",\"background-repeat:no-repeat\",\"width:40px\",\"height:40px\",\"display:inline-block\",\"vertical-align:middle\",\"position:absolute\"]],[false,{\".change_bg .font-des\":false},[\"-webkit-text-fill-color:#fff\",\"border-image:unset\"]],[false,{\".font-des\":false},[\"font-size:25px\",\"color:#fff\",\"font-weight:bold\",\"border:4px solid\",\"padding:4px 5px\",\"background:linear-gradient(0deg,rgba(40,217,203,1) 0%,rgba(102,242,163,1) 100%)\",\"-webkit-background-clip:text\",\"-webkit-text-fill-color:transparent\",\"border-image:linear-gradient(0deg,rgba(40,217,203,1) 0%,rgba(102,242,163,1) 100%)\"]],[false,{\".btm-icon-line\":false},[\"position:relative\",\"display:flex\",\"justify-content:center\"]],[false,{\".choose-option ul li.tab\":false},[\"cursor:pointer\"]],[false,{\".choose-option ul li:last-child\":false},[\"margin-left:0px\"]],[false,{\".contact-form-left .tab-content\":false},[\"display:none\",\"padding-left:50px\"]],[false,{\".contact-form-left .tab-content.active\":false},[\"display:block\"]],[false,{\".btm-icon-line:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"left:0px\",\"bottom:0px\",\"margin:auto\",\"height:1px\",\"width:130px\",\"top:0\",\"background:#525c70\"]],[false,{\".btm-icon-line::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"right:0px\",\"bottom:0px\",\"margin:auto\",\"height:1px\",\"width:130px\",\"top:0\",\"background:#525c70\"]],[true,\"@media only screen and (min-width: 2751px) and (max-width: 3840px){\"],[true,{\".new-header\":true},[\"padding:0px 23%\"]],[true,\"}\"],[true,\"@media only screen and (min-width: 2200px) and (max-width: 2750px){\"],[true,{\".new-header\":true},[\"padding:0px 10%\"]],[true,\"}\"],[false,\"@media screen and (max-width: 1320px) and (min-width: 1025px){\"],[false,{\".contact-form-info-right\":false},[\"padding:50px 25px 119px\"]],[false,\"}\"],[true,\"@media only screen and (max-width: 1920px){\"],[true,{\".new-header .dropdown-menu>.container\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".new-header .mega-menu-right\":true},[\"padding:0px\",\"margin:0px\",\"flex:0 0 71.666667%\",\"max-width:71.666667%\"]],[true,{\".new-header .dropdown-menu .col-lg-4\":true},[\"padding:0\",\"flex:0 0 24.333333%\",\"max-width:24.333333%\"]],[true,{\".new-header .mega-menu-right .row .menu-widget\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".dropdown-menu\":true},[\"width:66%\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1024px){\"],[true,{\".new-header .dropdown-menu>.container\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".new-header .mega-menu-right\":true},[\"flex:0 0 78.666667%\",\"max-width:78.666667%\"]],[true,{\".new-header .dropdown-menu .col-lg-4\":true},[\"flex:0 0 21.333333%\",\"max-width:21.333333%\"]],[true,{\".new-header .mega-menu-right .row .menu-widget\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".dropdown-menu\":true},[\"width:66%\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-top:-16%\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:12%\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .mega-menu-right\":true},[\"flex:0 0 66.666667%\",\"max-width:66.666667%\",\"padding-right:71px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .mega-menu-right\":true},[\"flex:100%\",\"max-width:100%\",\"padding-right:20px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .dropdown-menu .col-lg-4\":true},[\"flex:100%\",\"max-width:100%\"]],[true,{\".new-header__nav--subtitle p\":true},[\"padding-left:0px\"]],[true,{\"a.new-header__nav--menu--button\":true},[\"margin-bottom:25px\"]],[true,{\".new-header__menu-item\":true},[\"padding-left:0\"]],[true,\"}\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 90px 0px 30px\"]],[true,\"@media only screen and (min-width: 1920px) and (max-width: 2129px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 50px 0px 30px\"]],[true,\"}\"],[true,\"@media (max-width: 1800px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 2.2rem\"]],[true,\"}\"],[true,\"@media (max-width: 1366px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 1rem 0rem 2.2rem\"]],[true,\"}\"],[true,\"@media (max-width: 1280px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 1.2rem\"]],[true,\"}\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link\":true},[\"font-size:16px\"]],[true,\"@media only screen and (max-width: 1920px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:16px\",\"padding:0px 17px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1680px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"padding:0px 6px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1440px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"padding:0px 11px\",\"font-size:14px\"]],[false,{\".native-applications-list\":false},[\"padding:120px 0px 120px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1366px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:13px\",\"padding:0px 11px\"]],[false,{\".depending-text p\":false},[\"font-size:23px\"]],[false,{\".applications-col li\":false},[\"font-size:18px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1024px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\",\"padding:0px 8px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:10px\",\"padding:.5rem 1rem\"]],[true,\"}\"],[false,{\".show>.dropdown-toggle::after\":false},[\"transform:rotate(45deg)\",\"text-align:left\",\"display:inline-block\"]],[false,{\".show>.dropdown-toggle::after:not(#_#_#_#_#_#_#_#_)\":false},[\"width:7px\",\"height:7px\",\"border:solid 1px #24c1ff\",\"border-left:0\",\"border-top:0\"]],[false,\"@media only screen and (max-width: 991px){\"],[false,{\".show>.dropdown-toggle::after\":false},[\"display:none\"]],[false,\"}\"],[true,{\"a.new-header__nav--menu--button\":true},[\"position:relative\",\"min-width:132px\",\"transition:all ease .5s\",\"transition:all .5s\",\"border:1px solid #9df168\",\"background:transparent\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"margin:0px\",\"display:flex\",\"text-align:left\",\"padding-left:10px\",\"padding-right:10px\",\"line-height:44px\",\"transform:scale(1)\",\"max-width:170px\"]],[true,\"@media (max-width: 992px){\"],[true,{\"a.new-header__nav--menu--button\":true},[\"width:150px\"]],[true,\"}\"],[true,\"@media (max-width: 991px){\"],[true,{\"a.new-header__nav--menu--button\":true},[\"margin-bottom:25px\"]],[true,\"}\"],[true,{\".new-header__nav--title h5\":true},[\"padding-right:40px\"]],[true,\"@media (max-width: 1680px){\"],[true,{\".new-header__nav--title h5\":true},[\"padding-right:0px\"]],[true,\"}\"],[true,{\"a.new-header__nav--menu--button:before\":true},[\"position:absolute\",\"right:30px\",\"top:43%\",\"width:10px\",\"height:10px\",\"border:#707070 solid 1px\",\"z-index:99\",\"content:\\\"\\\"\",\"transform:rotate(45deg)\",\"border-bottom:0\",\"border-left:0\",\"margin-left:15px\",\"display:none\"]],[true,{\"a.new-header__nav--menu--button:hover\":true},[\"transform:scale(1.1)\"]],[true,\"@keyframes pulse{\"],[true,\"0%{transform:scale(1)}\"],[true,\"100%{transform:scale(1.1)}\"],[true,\"}\"],[true,{\".new-header__nav--menu--button:hover\":true},[\"font-size:1rem\"]],[true,\"@media screen and (max-width: 992px){\"],[true,{\"a.new-header__nav--menu--button:after\":true},[\"width:110px\"]],[true,\"}\"],[true,{\"a.new-header__nav--menu--button:hover::after\":true},[\"width:100%\",\"transition:all ease .2s\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\"]],[true,{\".new-header__nav--menu--title\":true},[\"color:#152649\"]],[true,{\".new-header__nav--subtitle-icon amp-img\":true,\".new-header__nav--subtitle-icon amp-anim\":false},[\"width:25px\"]],[true,{\".new-header__nav--subtitle-icon\":true},[\"text-align:left\"]],[true,\"@media screen and (max-width: 1920px){\"],[true,{\".new-header__nav--menu--img\":true},[\"flex:0 0 23%\",\"max-width:23%\"]],[true,{\".col-md-10.menu-text\":true},[\"flex:0 0 77%\",\"max-width:77%\",\"padding-right:0px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1440px){\"],[true,{\".new-header__nav--menu--img\":true},[\"padding:0\",\"max-width:20%\",\"flex:0 0 20%\"]],[true,\"}\"],[true,{\".col-12.new-header__nav--subtitle\":true},[\"padding-right:20px\"]],[true,{\".dropdown-menu\":true},[\"border-top:1px solid #dfdfdf\"]],[true,\"@media only screen and (max-width: 1920px){\"],[true,{\".dropdown-menu\":true},[\"border-top:1px solid #dfdfdf\",\"width:64%\",\"padding-left:40px\",\"padding-top:20px\",\"padding-bottom:20px\"]],[true,{\".new-header__nav--list li .nav-link:not(#_#_#_#_#_#_#_#_)\":true},[\"padding-right:20px\",\"padding-left:20px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1680px){\"],[true,{\".dropdown-menu\":true},[\"width:70%\",\"padding-left:44px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1536px){\"],[true,{\".dropdown-menu\":true},[\"width:76%\",\"padding-left:44px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1440px){\"],[true,{\".new-header__nav--list li\":true},[\"padding:0px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 991px){\"],[true,{\".new-header__nav--list li\":true},[\"padding-left:1rem\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1440px){\"],[true,{\".dropdown-menu\":true},[\"width:83%\",\"padding-left:50px\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:44px\"]],[false,{\".review_sec2\":false},[\"margin-top:47px\"]],[false,{\".top-btn\":false},[\"padding-bottom:60px\"]],[false,{\".book-cunsultaion-sec\":false},[\"padding:10px 0px 60px 0px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1024px){\"],[true,{\".dropdown-menu\":true},[\"padding-left:25px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".dropdown-menu\":true},[\"width:100%\",\"padding-right:10px\",\"padding-left:1rem\",\"border-top:none\"]],[true,\"}\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:18px\",\"letter-spacing:-.43px\"]],[true,\"@media screen and (max-width: 1280px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:16px\"]],[false,{\".custom-qout-box .review_sec i\":false},[\"font-size:18px\"]],[false,{\".depending-text p\":false},[\"font-size:21px\"]],[false,{\".applications-col li\":false},[\"font-size:17px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1024px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:14px\"]],[false,{\".custom-qout-box .review_sec i\":false},[\"font-size:16px\"]],[false,{\".depending-text p\":false},[\"font-size:17px\"]],[false,{\".native-applications-list\":false},[\"padding:90px 0px 50px\"]],[false,{\".depending-btn .btn-blue\":false},[\"padding:15px 10px\"]],[false,{\".applications-col li\":false},[\"font-size:15px\"]],[false,{\".native-applications-list .swiper-slide\":false},[\"width:calc(50% - 19px)\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:26px\"]],[false,{\".lets-talk-box\":false},[\"margin-top:-25%\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 140px\"]],[false,{\".data-driven-application .swiper-slide\":false},[\"width:calc(33.333% - 10px)\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt\":false},[\"margin-right:0\"]],[true,\"}\"],[true,\"@media screen and (max-width: 991px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:1rem\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:18%\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:30px\",\"width:33%\"]],[false,{\".keeping-future ul li:nth-child(9)\\n.keeping-future ul li:nth-child(6)\":false,\".keeping-future ul li:nth-child(3)\":false},[\"margin-right:0px\"]],[false,{\".keeping-future ul li:nth-child(10)\":false,\".keeping-future ul li:nth-child(9)\":false},[\"border-bottom:#16365c solid 1px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 768px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:1.1rem\"]],[false,{\".keeping-you-competitive p\":false},[\"font-size:13px\"]],[false,{\".depending-on\":false},[\"flex-wrap:wrap\"]],[false,{\".depending-img-box\":false},[\"width:20%\"]],[false,{\".depending-text\":false},[\"width:75%\"]],[false,{\".depending-btn\":false},[\"width:100%\",\"text-align:center\"]],[false,{\".custom-qout-box\":false},[\"padding:40px 0px 60px\"]],[false,{\".depending-btn .btn-blue\":false},[\"padding:15px 30px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-top:-24%\",\"margin-bottom:55px\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 110px\"]],[false,{\".native-applications-list .heading-box h2\":false},[\"font-size:25px\"]],[false,{\".native-applications-list .heading-box\":false},[\"margin-bottom:35px\"]],[false,{\".applications-col li\":false},[\"font-size:12px\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:20px\"]],[false,{\".lets-talk-box\":false},[\"padding:35px 0px 60px\",\"margin-top:-29%\"]],[false,{\".clients-talk\":false},[\"padding:120px 0px 55px\"]],[false,{\".clients-talk .btn-gradient\":false},[\"font-size:27px\",\"padding:10px 30px\"]],[false,{\".clients-talk .btn-wrapper\":false},[\"width:245px\",\"margin-top:-27px\"]],[false,{\".keeping-future ul\":false},[\"justify-content:space-between\"]],[false,{\".keeping-future ul li\":false},[\"width:48%\"]],[false,{\".keeping-future ul li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:48%\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(10)\":false},[\"border-bottom:#16365c solid 1px\"]],[false,{\".tex-box\":false},[\"width:68%\"]],[true,\"}\"],[true,{\".new-header__nav--subtitle\":true,\".new-header__nav--subtitle .col-10\":true,\".new-header__nav--title .col-10\":true,\".new-header__nav--title\":true},[\"padding:0px\"]],[true,{\".new-header__nav--subtitle .row .col-12\":true},[\"padding:0px\"]],[true,{\".new-header__nav--menu--text\":true},[\"font-size:12px\",\"letter-spacing:-.29px\"]],[true,{\".new-header__nav--menu--img amp-img\":true,\".new-header__nav--menu--img amp-anim\":false},[\"max-width:100%\",\"width:48px\"]],[true,\"@media only screen and (max-width: 1400px){\"],[true,{\".new-header .dropdown-menu .menu-right\":false,\".new-header .dropdown-menu .menu-widget .row\":true,\".new-header .dropdown-menu .menu-widget\":true},[\"padding:0px\"]],[true,{\".mega-menu-right\":true},[\"padding:0px\"]],[true,{\".new-header__nav--menu--box\":true},[\"align-items:flex-start\"]],[true,{\".col-md-10.menu-text\":true},[\"padding:0px 2px 0px 9px\",\"max-width:80%\",\"flex:0 0 80%\"]],[true,\"}\"],[true,{\".footer-2022__social-media a\":true},[\"transition:all ease .5s\"]],[true,{\".footer-2022__social-media a:hover\":true},[\"margin-top:-10px\"]],[true,\"@media only screen and (min-width: 1800px) and (max-width: 3034px){\"],[true,{\"footer.footer-2022 .container\":true},[\"max-width:1545px\"]],[true,\"}\"],[true,\"@media (max-width: 600px){\"],[true,{\"footer.footer-2022 .container\":true},[\"padding:0px 44px\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec\":false},[\"padding:40px 0px 0px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row\":false},[\"padding:40px 25px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content.active\":false},[\"flex-wrap:wrap\",\"padding-bottom:28px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img\":false},[\"width:100%\",\"margin-bottom:32px\"]],[false,{\".rebuild-and-replatform\":false},[\"padding:120px 0px 120px 0px\"]],[false,{\".rebuild-and-replatform .txt .heading-box h2 br\":false},[\"display:none\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text\":false},[\"padding-left:0\",\"width:100%\"]],[false,{\".review_sec amp-img\":false,\".review_sec amp-anim\":false},[\"top:0\"]],[false,{\".review_sec .swiper-slide i\":false},[\"padding-left:0\"]],[false,{\".review_sec .swiper-slide i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-boxs\":false},[\"margin-bottom:8px\"]],[false,{\".reviewSwiper\":false},[\"padding-top:12px\"]],[false,{\".review_sec .swiper-slide p\":false},[\"padding-left:55px\"]],[false,{\".review_sec .title p\":false},[\"padding-left:0px\"]],[false,{\".review_sec .title p span\":false},[\"display:block\"]],[false,{\".review_sec2 .swiper-slide p:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:0px\"]],[true,\"}\"],[true,\"@media (max-width: 374px){\"],[true,{\"footer.footer-2022 .container\":true},[\"padding:0px 30px\"]],[true,\"}\"],[true,\"@media (max-width: 320px){\"],[true,{\"footer.footer-2022 .container\":true},[\"padding:0px 10px\"]],[true,\"}\"],[true,{\".footer-2022__copyright\":true},[\"letter-spacing:-.35px\"]],[false,{\".container-md\":false},[\"max-width:1272px\",\"margin:0 auto\",\"padding:0 20px\",\"width:90%\"]],[true,{\".footer-2022__menu--list h5:after\":true},[\"border-top:0px\",\"border-right:0\",\"border-left:0\"]],[true,\"@media (max-width: 768px){\"],[true,{\".footer-2022__menu--box\":true},[\"flex-direction:inherit\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[true,\"}\"],[true,\"@media (max-width: 767px){\"],[true,{\".footer-2022__box-end\":true},[\"letter-spacing:-.35px\"]],[true,{\".footer-2022__menu--box\":true},[\"flex-direction:column\"]],[false,{\".g-small-d-block\":false},[\"display:block\"]],[false,{\".g-small-d-none\":false},[\"display:none\"]],[false,{\".data-driven-application .swiper-button-next:after\":false},[\"display:block\"]],[false,{\".data-driven-application .swiper-button-prev:after\":false},[\"display:block\"]],[true,\"}\"],[true,\"@media (max-width: 767px){\"],[false,{\".container-md\":false},[\"width:100%\",\"padding:0 30px\"]],[false,{\".accordianNav .drop_arrow:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"z-index:0\",\"left:0\",\"top:0\",\"width:0\",\"height:100%\",\"background-color:#444\",\"background:rgba(244,244,244,.3)\",\"transition:all .3s ease-out\"]],[false,{\".accordianNav .drop_arrow:hover:before\":false,\".accordianNav .drop_arrow .active:before\":false},[\"width:2%\"]],[true,{\".footer-2022 .drop_arrow\":true},[\"position:relative\"]],[false,{\".drop_arrow.active h5\":false},[\"color:#fff\"]],[true,{\".footer-2022 .drop_arrow::before\":true},[\"content:\\\"\\\"\",\"width:6px\",\"height:6px\",\"border-bottom:2px solid #24c1ff\",\"border-right:2px solid #24c1ff\",\"float:right\",\"position:absolute\",\"top:12px\",\"right:0px\",\"transform:rotate(45deg)\",\"transform-origin:center\",\"transition:all .4s ease\"]],[false,{\".footer-2022 .drop_arrow.active::before\":false},[\"transform:rotate(225deg)\"]],[false,{\".footer-2022__menu--list .drop_arrow .active:after\":false},[\"transform:rotate(-135deg)\",\"border-color:#fff\"]],[true,{\".footer-2022__menu--list ul\":true},[\"margin-bottom:3rem\",\"display:none\"]],[false,{\".keeping-future ul\":false},[\"column-count:2\"]],[false,{\".applications-col li\":false},[\"font-size:14px\"]],[false,{\".data-driven-application .applications-col li\":false},[\"margin-bottom:24px\"]],[false,{\".applications-col li\":false},[\"padding-bottom:16px\",\"margin-bottom:16px\"]],[false,{\".custom-qout-box .review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".keeping-future ul li\":false},[\"margin-bottom:16px\",\"padding-bottom:16px\",\"font-size:14px\"]],[false,{\".review_sec .title p\":false},[\"font-size:14px\"]],[false,{\".keeping-you-competitive\":false},[\"padding:80px 0px 195px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-bottom:65px\",\"margin-top:-19%\"]],[false,{\".depending-text\":false},[\"text-align:center\",\"width:80%\",\"margin:0px auto 40px auto\"]],[false,{\".custom-qout-box\":false},[\"padding:40px 0px 80px\"]],[false,{\".native-applications-list\":false},[\"padding:80px 0px 50px\"]],[false,{\".native-applications-list .swiper-slide:nth-child(1) li:first-of-type\":false},[\"padding-right:80px\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:24px\",\"padding:0px 100px\"]],[false,{\".depending-img-box\":false},[\"width:100%\",\"text-align:center\"]],[false,{\".keeping-you-competitive p\":false},[\"font-size:14px\"]],[false,{\".keeping-future\":false},[\"margin-top:60px\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner:after\":false},[\"position:absolute\",\"bottom:0\",\"left:0\",\"content:\\\"\\\"\",\"width:30px\",\"height:30px\",\"background:#04061f\",\"transform:rotate(45deg)\",\"border-radius:2px\",\"margin-left:34px\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner.content_center\":false},[\"text-align:center\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner.content_center:after\":false},[\"margin:0px auto\",\"left:0px\",\"right:0px\"]],[false,{\".c-app-banner h2\":false},[\"font-size:32px\"]],[false,{\".c-app-banner p\":false},[\"font-size:16px\"]],[false,{\".infrastructure-sec .bg-img .full-img\":false},[\"height:500px\",\"object-fit:cover\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(1) ul li:last-child\":false},[\"border-bottom:#dbdbdb solid 1px\"]],[false,{\".reliability-engineers\":false},[\"width:100%\",\"border:#fff solid 1px\"]],[false,{\".fortune-box\":false},[\"flex-wrap:wrap\"]],[false,{\".tex-box\":false},[\"width:100%\",\"margin-top:15px\",\"margin-bottom:15px\"]],[false,{\".reliability-engineers p\":false},[\"line-height:15px\",\"margin:0px\"]],[false,{\".right-short-text\":false},[\"margin-left:0\",\"text-align:center\",\"width:100%\"]],[true,\"}\"],[false,\"@media (max-width: 575px){\"],[false,{\".container-md\":false},[\"padding:0 24px\"]],[false,{\".about-dev-ops .review_sec2:not(#_#_#_#_#_#_#_)\":false},[\"padding:20px 20px 25px 20px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"background-color:#f5f5f5\",\"margin-bottom:65px\",\"margin-top:-30%\"]],[false,{\".review_sec\":false},[\"padding:25px\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 200px\"]],[false,{\".depending-text p\":false},[\"font-size:16px\"]],[false,{\".lets-talk-box\":false},[\"padding:35px 0px 60px\",\"margin-top:-43%\"]],[false,{\".depending-text\":false},[\"width:96%\"]],[false,{\".lets-talk-box h3\":false},[\"padding:0px 45px\"]],[false,{\".clients-talk .btn-gradient\":false},[\"font-size:14px\",\"padding:16px 30px\"]],[false,{\".keeping-you-competitive:not(#_#_#_#_#_#_#_)\":false},[\"padding:80px 0px 160px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li\":false},[\"padding:5px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li a\":false},[\"font-size:14px\"]],[false,{\".review_sec::after\":false},[\"left:25px\"]],[false,{\".review_sec .swiper-slide i\":false},[\"margin:8px 0px 8px\",\"padding-right:10px\"]],[false,{\".review_sec .swiper-slide p\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform .txt p\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform:not(#_#_#_#_#_#_#_)\":false},[\"padding:65px 0px 120px 0px\"]],[false,{\".rebuild-and-replatform .txt label\":false},[\"margin-bottom:15px\"]],[false,{\".rebuild-and-replatform .heading-box h2\":false},[\"font-size:30px\",\"margin-bottom:30px\"]],[false,{\".rebuild-and-replatform .txt p:last-of-type\":false},[\"margin-bottom:55px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text p\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content.active\":false},[\"padding-bottom:40px\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec\":false},[\"padding:15px 0px 0px\"]],[false,{\".keeping-you-competitive .heading-box h2\":false},[\"font-size:30px\",\"margin-bottom:24px\"]],[false,{\".keeping-you-competitive .heading-box h2 br\":false},[\"display:none\"]],[false,{\".keeping-future ul li:nth-of-type(4)\":false},[\"order:11\",\"border:none\"]],[false,{\".keeping-future ul li:nth-of-type(8)\":false},[\"order:9\"]],[false,{\".keeping-future ul li\":false},[\"margin-bottom:10px\",\"padding-bottom:10px\"]],[false,{\".native-applications-list .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".clients-talk .btn-wrapper\":false},[\"width:132px\"]],[false,{\"section.custom-full-bg\":false},[\"display:none\"]],[false,{\".native-applications-list .heading-box label\":false},[\"letter-spacing:1.1px\"]],[false,{\".c-scroll-box\":false},[\"overflow:scroll\"]],[false,{\".c-scroll-box:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".scroll-img\":false},[\"width:250%\",\"position:relative\"]],[false,{\".scroll-img amp-img\":false,\".scroll-img amp-anim\":false},[\"max-width:unset\",\"width:100%\"]],[false,{\".scroll-img:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/sroll-l.png\\\")\",\"width:25px\",\"height:25px\",\"bottom:0\",\"margin:auto\",\"left:25%\"]],[false,{\".scroll-img::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/scroll-right.png\\\")\",\"width:25px\",\"height:25px\",\"bottom:0\",\"margin:auto\",\"right:27%\"]],[false,{\".journey-roadmap .scroll-img::after\":false,\".journey-roadmap .scroll-img::before\":false},[\"display:none\"]],[false,{\".native-data-driven-top\":false},[\"padding-top:80px\"]],[false,{\".native-data-driven-top .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".cost-effective-sec .review_sec .swiper-slide i:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".lets-talk-box\":false},[\"margin-top:-73%\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-bottom:65px\",\"margin-top:-54%\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner amp-img\":false,\"section.cp-tek-teams-isk.c-app-banner amp-anim\":false},[\"min-height:inherit\"]],[false,{\".c-app-banner .title\":false},[\"margin-bottom:14px\"]],[false,{\".c-app-banner p\":false},[\"font-size:16px\",\"padding-right:20px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-img\":false,\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-anim\":false},[\"max-width:185px\",\"object-fit:cover\",\"width:100%\",\"text-align:center\",\"display:block\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media (max-width: 360px){\"],[false,{\".lets-talk-box h3\":false},[\"padding:0px 26px\"]],[false,\"}\"],[true,{\"a\":true},[\"display:inline-block\"]],[true,{\"*\":true},[\"-webkit-box-sizing:border-box\",\"box-sizing:border-box\",\"margin:0\",\"padding:0\"]],[true,{\"amp-img\":true,\"amp-anim\":false},[\"max-width:100%\"]],[true,{\"a\":true},[\"text-decoration:none\"]],[false,{\".btn-blue\":false},[\"background-color:#24c1ff\",\"color:#152649\",\"border-radius:30px\",\"font-size:20px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding:15px 30px\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"border:1px solid #24c1ff\"]],[false,\"@media (max-width: 992px){\"],[false,{\".btn-blue\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".btn-blue\":false},[\"font-size:14px\",\"padding:15px 40px\"]],[false,\"}\"],[false,{\".btn-blue:hover\":false},[\"background-color:transparent\"]],[false,{\".btn-blue.dark-blue\":false},[\"background-color:#152649\",\"color:#24c1ff\",\"border:1px solid #152649\"]],[false,{\".btn-blue.dark-blue:hover\":false},[\"background-color:transparent\"]],[false,{\".btn-green\":false},[\"background-color:transparent\",\"border:1px solid #8bed78\",\"color:#8bed78\",\"border-radius:30px\",\"font-size:20px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding:15px 30px\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width: 992px){\"],[false,{\".btn-green\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".btn-green\":false},[\"font-size:14px\",\"padding:15px 40px\"]],[false,\"}\"],[false,{\".btn-green:hover\":false},[\"color:#152649\",\"background-color:#8bed78\"]],[false,{\".btn-gradient\":false},[\"background:-webkit-gradient(linear,left top,right top,color-stop(0,#28d9cb),to(#a0f266))\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"color:#152649\",\"border-radius:30px\",\"font-size:32px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding:15px 30px\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".btn-gradient:hover\":false},[\"background:-webkit-gradient(linear,right top,left top,color-stop(0,#28d9cb),to(#a0f266))\",\"background:linear-gradient(-90deg,#28d9cb 0,#a0f266 100%)\"]],[false,{\".heading-box label\":false},[\"font-size:18px\",\"color:#7080a7\",\"display:block\",\"margin-bottom:24px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"letter-spacing:1.8px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".heading-box label\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".heading-box label\":false},[\"font-size:14px\",\"letter-spacing:1.4px\",\"margin-bottom:16px\"]],[false,\"}\"],[false,{\".heading-box label i\":false},[\"margin-right:8px\"]],[false,{\".heading-box h2\":false},[\"color:#152649\",\"font-size:50px\",\"line-height:1\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\"]],[false,\"@media (max-width: 1377px){\"],[false,{\".keeping-future ul li\":false},[\"margin-right:43px\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".heading-box h2\":false},[\"font-size:45px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".heading-box h2\":false},[\"font-size:40px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".heading-box h2\":false},[\"font-size:32px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".heading-box h2\":false},[\"font-size:30px\"]],[false,\"}\"],[false,{\".heading-box h2 span\":false},[\"color:#24c1ff\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:80px\",\"text-align:center\",\"padding-top:60px\",\"padding-bottom:120px\",\"position:relative\",\"background-position:center bottom\",\"background-repeat:no-repeat\",\"background-size:cover\",\"min-height:500px\",\"max-height:55vh\"]],[false,\"@media (max-width: 480px){\"],[false,{\".cp-cloud-native-isk figure\":false},[\"max-width:24px\",\"margin:auto\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk p\":false},[\"color:#28d9cb\",\"font-size:16px\",\"letter-spacing:1.6px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"margin-top:15px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".cp-cloud-native-isk p\":false},[\"font-size:14px\",\"letter-spacing:1.4px\",\"margin-top:12px\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:60px\",\"color:#fff\",\"line-height:1\",\"font-family:Raleway,sans-serif\",\"margin-top:90px\",\"margin-bottom:30px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:50px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:40px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:32px\",\"line-height:34px\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk .btn\":false},[\"border:1px solid #28d9cb\",\"color:#28d9cb\",\"font-size:24px\",\"padding:7px 32px\",\"border-radius:30px\",\"background:transparent\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".cp-cloud-native-isk .btn\":false},[\"font-size:20px\",\"padding:10px 32px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".cp-cloud-native-isk .btn\":false},[\"font-size:14px\",\"padding:0px 32px\",\"font-weight:500\",\"width:210px\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk .btn:hover\":false},[\"background-color:#28d9cb\",\"color:#152649\"]],[false,{\".cp-cloud-native-isk .angle-down\":false},[\"position:absolute\",\"bottom:5px\",\"left:50%\",\"-webkit-transform:translateX(-50%)\",\"transform:translateX(-50%)\"]],[false,{\".cp-cloud-native-isk .angle-down a\":false},[\"font-size:15px\",\"color:#28d9cb\"]],[false,{\".custom-txt-img-sec\":false},[\"padding-top:140px\",\"padding-bottom:120px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".custom-txt-img-sec\":false},[\"padding-top:60px\",\"padding-bottom:60px\"]],[false,{\".heading-box h2\":false},[\"font-size:35px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .cutsom-hide-text\":false},[\"display:none\"]],[false,{\".custom-txt-img-sec .cutsom-hide-text p\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.5\",\"font-family:raleway,sans-serif\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-txt-img-sec\":false},[\"padding:50px 0 30px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:calc(50.5% - 81px)\",\"margin-right:81px\"]],[true,\"@media (max-width: 1024px){\"],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:50%\"]],[true,{\".new-header__nav--title h5\":true},[\"font-size:25px\",\"line-height:1.2\"]],[false,{\".keeping-future ul li\":false},[\"width:24%\"]],[false,{\".keeping-future ul li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-right:29px\"]],[false,{\".keeping-you-competitive\":false},[\"padding-bottom:165px\"]],[false,{\".rebuild-and-replatform\":false},[\"padding:120px 0px 120px 0px\"]],[true,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:100%\",\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt label\":false},[\"margin-bottom:24px\"]],[false,\"@media (max-width: 767px){\"],[false,{\"section.custom-txt-img-sec.c-application-development\":false},[\"position:relative\",\"z-index:1\"]],[false,{\".custom-txt-img-sec .custom-img figure amp-img\":false,\".custom-txt-img-sec .custom-img figure amp-anim\":false,\".custom-txt-img-sec .custom-img figure\":false},[\"width:100%\",\"mix-blend-mode:multiply\"]],[false,{\".custom-txt-img-sec .custom-txt label\":false},[\"margin-bottom:20px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-img\":false},[\"max-width:250px\",\"margin-left:auto\",\"width:100%\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"color:#152649\",\"margin-bottom:40px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"font-size:38px\"]],[false,{\".contact-tek-teams.custom-txt-img-sec .custom-txt h2\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"font-size:27px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"padding-right:0\"]],[false,{\".keeping-future ul\":false},[\"font-size:20px\"]],[false,{\".keeping-future ul li\":false},[\"width:47%\"]],[false,{\".keeping-future ul li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-right:0px\"]],[false,{\".keeping-future ul li:nth-child(11)\":false},[\"border-bottom:#16365c solid 1px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"margin-bottom:0px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt h2 span\":false},[\"color:#24c1ff\"]],[false,{\".tek-world-scale .custom-txt h2 span\":false},[\"color:#28d9cb\"]],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.5\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"@media (min-width: 1280px) and (max-width: 1680px){\"],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".c-application-development .custom-txt p span\":false,\".custom-txt-img-sec .custom-txt p\":false},[\"color:#152649\"]],[false,{\".c-application-development .custom-txt p\":false},[\"color:#707070\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"margin-bottom:25px\"]],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".contact-tek-teams .custom-img p\":false},[\"margin-bottom:30px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt .btn-blue\":false},[\"margin-top:48px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-txt-img-sec .custom-txt .btn-blue\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-img\":false},[\"width:calc(49.5% - 81px)\",\"margin-left:81px\",\"display:flex\",\"align-items:center\"]],[false,{\".custom-txt-img-sec .custom-img figure amp-img\":false,\".custom-txt-img-sec .custom-img figure amp-anim\":false,\".custom-txt-img-sec .custom-img figure\":false},[\"width:100%\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:calc(50.5% - 40px)\",\"margin-right:40px\"]],[false,{\".custom-txt-img-sec .custom-img\":false},[\"width:calc(49.5% - 40px)\",\"margin-left:40px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-txt-img-sec .custom-img\":false},[\"width:100%\",\"max-width:500px\",\"margin:25px auto 0\"]],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"margin-right:0\"]],[false,{\".custom-txt-img-sec .custom-txt:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".text-grey-box p:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".text-grey-box\":false},[\"margin-bottom:2px\"]],[false,{\".review_sec2 i\":false},[\"font-weight:500\"]],[false,{\".review_sec2 i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\",\"color:#152649\"]],[false,{\"section.custom-full-bg.journey-roadmap .container-md\":false},[\"padding:0px\"]],[false,{\".journey-roadmap-header\":false},[\"padding:0px 24px\"]],[false,{\".journey-roadmap-header\":false},[\"flex-wrap:wrap\"]],[false,{\".journey-roadmap-header .heading-box\":false},[\"width:100%\",\"text-align:center\",\"margin-bottom:32px\"]],[false,{\".journey-roadmap-header .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".journey-roadmap-logo\":false},[\"width:65%\",\"margin:0px auto\",\"margin-bottom:24px\"]],[false,{\".devops-services\":false},[\"padding:80px 0px 50px\",\"background-color:#f1f1f1\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:14px\"]],[false,{\".devops-services .applications-col h5\":false},[\"padding-left:31px\"]],[false,{\".devops-services .applications-col h5::before\":false},[\"margin-top:2px\"]],[false,{\".mrdata-logo\":false},[\"left:0\",\"top:-55px\",\"bottom:auto\",\"justify-content:center\",\"right:0\"]],[false,{\".reliability-engineers\":false},[\"text-align:center\"]],[false,{\".reliability-engineers:not(#_#_#_#_#_#_#_)\":false},[\"padding:85px 27px 40px 27px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-197px\"]],[false,{\".kubernetes-sec .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".kubernetes-sec .custom-txt p:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".kubernetes-sec .custom-txt p span\":false},[\"font-weight:500\"]],[false,{\".kubernetes-sec .custom-txt p br\":false},[\"display:none\"]],[false,{\".kubernetes-sec .heading-box h2\":false},[\"margin-bottom:24px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:192px 0px 104px 0px\"]],[false,{\".col-row ul\":false},[\"column-count:1\"]],[false,{\".col-row ul li\":false},[\"font-size:16px\",\"margin-bottom:15px\"]],[false,{\".cost-effective-sec .inner\":false},[\"flex-wrap:wrap\"]],[false,{\".cost-effective-sec .left-text\":false,\".cost-effective-sec .custom-txt\":false},[\"width:100%\"]],[false,{\".infrastructure-sec .heading-box h2\":false,\".cost-effective-sec .heading-box h2\":false},[\"margin-bottom:32px\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:30px\"]],[false,{\".cost-effective-sec .heading-box h2 span\":false},[\"display:inline\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col\":false},[\"padding-bottom:15px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".infrastructure-sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-190px\"]],[false,\"}\"],[false,{\".custom-colm-sec\":false},[\"background-color:#f1f1f1\",\"padding:120px 0\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".custom-colm-sec\":false},[\"padding:60px 0\"]],[false,{\".custom-txt-img-sec .custom-txt .btn-blue\":false},[\"margin-top:30px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".custom-colm-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"margin:45px -10px 40px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .inner\":false},[\"margin:40px -8px 20px\"]],[false,\"}\"],[false,{\".custom-colm-sec .slick-list\":false},[\"padding-bottom:20px\"]],[false,{\".custom-colm-sec .slick-track:not(#_#_#_#_#_#_#_)\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".custom-colm-sec .colm\":false},[\"border-radius:16px\",\"-webkit-box-shadow:0 8px 16px rgba(0,0,0,.1)\",\"box-shadow:0 8px 16px rgba(0,0,0,.1)\",\"width:calc(33.33% - 14px)\",\"background-color:#fff\",\"margin-right:10px\",\"margin-left:10px\",\"position:relative\"]],[false,{\".custom-colm-sec .colm:not(#_#_#_#_#_#_#_)\":false},[\"height:inherit\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-colm-sec .colm\":false},[\"display:flex\",\"flex-direction:column\",\"justify-content:space-between\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm\":false},[\"margin:0 8px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm:last-of-type\":false},[\"margin-right:0\"]],[false,{\".custom-colm-sec .colm .img-box amp-img\":false,\".custom-colm-sec .colm .img-box amp-anim\":false},[\"border-radius:16px\"]],[false,{\".custom-colm-sec .colm .txt-box\":false},[\"padding:22px 40px 20px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".custom-colm-sec .colm .txt-box\":false},[\"padding:20px 20px 20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box\":false},[\"padding:16px 13px 20px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:32px\",\"line-height:1\",\"color:#24c1ff\",\"margin-bottom:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:27px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:24px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:22px\",\"margin-bottom:11px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm .txt-box p\":false},[\"font-size:18px\",\"color:#707070\",\"line-height:1.6\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-colm-sec .colm .txt-box p\":false},[\"font-size:16px\",\"line-height:22px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box p\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm .txt-box .see-more\":false},[\"position:absolute\",\"font-size:22px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#152649\",\"text-decoration:underline\",\"line-height:1.5\",\"font-weight:bold\",\"right:40px\",\"bottom:27px\"]],[false,{\".custom-colm-sec .colm .txt-box .see-more:hover\":false},[\"color:#24c1ff\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-colm-sec .colm .txt-box .see-more\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box .see-more\":false},[\"font-size:16px\",\"bottom:20px\"]],[false,\"}\"],[false,{\".custom-colm-sec .btn-wrapper\":false},[\"text-align:center\"]],[false,{\".custom-colm-sec .btn-wrapper .btn\":false},[\"margin-top:48px\"]],[false,{\".demand-sec\":false},[\"padding-top:240px\",\"padding-bottom:200px\",\"text-align:center\",\"text-align:center\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/imagem_scale.png\\\")\",\"background-repeat:no-repeat\",\"background-size:100% 100%\",\"position:relative\",\"background-attachment:fixed\"]],[false,{\"section.demand-sec:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"height:100%\",\"width:100%\",\"background:#39dcce\",\"background-color:rgba(57,220,206,.1)\",\"top:0\",\"left:0\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".demand-sec\":false},[\"padding-top:150px\",\"padding-bottom:150px\"]],[false,\"}\"],[false,{\".demand-sec .btn-blue.dark-blue\":false},[\"color:#f7f7f7\"]],[false,{\".demand-sec .colm:nth-child(3) p\":false},[\"padding:0px 35px\"]],[false,{\".demand-sec .btn-blue.dark-blue:hover\":false},[\"color:#152649\"]],[false,{\"section.demand-sec .inner .slick-track\":false},[\"display:flex\"]],[false,{\"section.demand-sec .inner .slick-list\":false},[\"display:flex\"]],[false,\"@media (max-width: 992px){\"],[false,{\".demand-sec\":false},[\"padding:120px 0\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".demand-sec\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".demand-sec .heading-box\":false},[\"padding-bottom:45px\"]],[false,{\".demand-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".demand-sec .inner .slick-dots\":false},[\"position:absolute\",\"right:-5px\",\"top:50%\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\"]],[false,{\".demand-sec .inner .slick-slider .slick-list\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".demand-sec .inner .slick-slider .slick-track\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".demand-sec .inner .slick-dots li\":false},[\"list-style-type:none\",\"height:70px\",\"width:3px\",\"margin:4px 0\"]],[false,{\".demand-sec .inner .slick-dots li.slick-active button\":false},[\"background:linear-gradient(90deg,#23f2e2 0,#93f150 100%)\",\"outline:none\"]],[false,{\".demand-sec .inner .slick-dots li button\":false},[\"width:100%\",\"height:100%\",\"background-color:#fff\",\"border-radius:2px\",\"font-size:0\",\"border:none\",\"outline:none\"]],[false,{\".demand-sec .inner .slick-slide amp-img\":false,\".demand-sec .inner .slick-slide amp-anim\":false},[\"margin:0px auto\"]],[false,{\".demand-sec .colm\":false},[\"width:30%\",\"position:relative\",\"margin-bottom:40px\",\"display:flex\",\"flex-direction:column\"]],[false,\"@media (max-width: 992px){\"],[false,{\".demand-sec .colm\":false},[\"width:32%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".demand-sec .colm\":false},[\"width:100%\",\"padding-bottom:10px\"]],[false,\"}\"],[false,{\".demand-sec .colm figure\":false},[\"margin-bottom:50px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".demand-sec .colm figure\":false},[\"max-width:110px\",\"margin:0 auto 50px\"]],[false,\"}\"],[false,{\".demand-sec .colm h4\":false},[\"margin-bottom:18px\",\"font-size:30px\",\"line-height:1\",\"color:#152649\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".demand-sec .colm h4\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".demand-sec .colm p\":false},[\"color:#152649\",\"line-height:1.6\",\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"padding:0px 21px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".demand-sec .colm p\":false},[\"padding:0px 6px\"]],[false,{\".demand-sec .colm:nth-child(3) p\":false},[\"padding:0px 6px\"]],[false,{\".demand-sec .btn-blue.dark-blue\":false},[\"color:#f7f7f7\",\"padding:15px 30px\",\"font-size:15px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".demand-sec .btn-blue.dark-blue\":false},[\"padding:15px 29px\",\"font-size:11px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:14px\",\"padding:0px 25px\"]],[false,\"}\"],[false,{\".demand-sec .colm .btn-wrapper\":false},[\"margin:auto 0 0 0\"]],[false,{\".demand-sec .colm .btn-wrapper a\":false},[\"line-height:normal\"]],[false,\"@media (max-width: 767px){\"],[false,{\".demand-sec .colm .btn-wrapper\":false},[\"position:inherit\",\"bottom:inherit\",\"margin-top:40px\"]],[false,\"}\"],[false,{\".ecosystem-sec\":false},[\"padding:200px 0 240px\",\"background-color:#f9f9f9\"]],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec\":false},[\"padding:100px 0 150px\",\"background-color:#f9f9f9\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\"section.ecosystem-sec .slick-track:not(#_#_#_#_#_#_#_#_)\":false},[\"display:flex\"]],[false,{\".ecosystem-sec .inner .slick-slide:not(#_#_#_#_#_#_#_)\":false},[\"height:inherit\"]],[false,\"}\"],[false,\"@media (min-width: 620px) and (max-width: 767px){\"],[false,{\"section.ecosystem-sec .inner .slick-list\":false},[\"padding-right:180px\"]],[false,{\"section.ecosystem-sec .inner .inner-colm .slick-list\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner .inner-colm amp-img\":false,\".ecosystem-sec .inner .inner-colm amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec .inner .inner-colm amp-img\":false,\".ecosystem-sec .inner .inner-colm amp-anim\":false},[\"width:55%\",\"margin:auto\"]],[false,\"}\"],[false,\"@media (max-width: 766px){\"],[false,{\".ecosystem-sec .inner .inner-colm amp-img\":false,\".ecosystem-sec .inner .inner-colm amp-anim\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"font-size:24px\",\"font-weight:bold\",\"color:#1d2848\",\"margin-bottom:20px\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"font-size:20px\",\"margin-bottom:5px\"]],[false,\"}\"],[false,\"@media (min-width: 480px) and (max-width: 580px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"display:inline-block\",\"float:right\",\"vertical-align:middle\",\"margin-top:18px\",\"width:70px\",\"position:absolute\",\"right:0px\",\"top:0px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:18px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:23px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:-16px\"]],[false,{\".ecosystem-sec .inner\":false},[\"padding:150px 0 100px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec\":false},[\"padding:120px 0 0\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:20px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec\":false},[\"padding:80px 0 0\"]],[false,\"}\"],[false,{\".ecosystem-sec .heading-box\":false},[\"padding-bottom:75px\",\"text-align:center\"]],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .heading-box\":false},[\"padding-bottom:0px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .heading-box\":false},[\"padding-bottom:0\",\"text-align:left\",\"position:relative\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false},[\"width:68%\",\"position:relative\",\"margin-top:0px\",\"margin-bottom:22px\",\"float:left\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:35px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:28px\",\"width:50px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(5) .inner-colm .back-slide .icon\":false},[\"margin-top:32px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5) .inner-colm .back-slide .icon\":false},[\"margin-top:26px\",\"width:50px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .front-slide p\":false},[\"padding-right:40px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .front-slide p\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(1) .inner-colm .back-slide .left-img\":false},[\"display:none\"]],[false,{\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"float:left\",\"width:60%\",\"position:relative\",\"margin-top:0px\",\"margin-bottom:20px\"]],[false,{\".ecosystem-sec .heading-box h2\":false},[\"color:#28d9cb\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .heading-box h2\":false},[\"width:calc(100% - 118px)\"]],[false,{\".ecosystem-sec .colm .back-slide .left-img\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (min-width: 300px) and (max-width: 340px){\"],[false,{\".ecosystem-sec .heading-box h2\":false},[\"font-size:22px\"]],[false,\"}\"],[false,{\".ecosystem-sec .heading-box figure\":false},[\"display:none\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .heading-box figure\":false},[\"display:block\",\"position:absolute\",\"bottom:0\",\"right:20px\",\"max-width:115px\"]],[false,\"}\"],[false,\"@media (min-width: 300px) and (max-width: 340px){\"],[false,{\".ecosystem-sec .heading-box figure\":false},[\"bottom:-31px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"position:relative\",\"padding:150px 0 100px\",\"z-index:1\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .inner\":false},[\"padding:150px 70px 100px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .inner\":false},[\"padding:150px 0px 100px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .inner\":false},[\"padding:40px 0 80px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner::before\":false},[\"content:\\\"\\\"\",\"width:67%\",\"height:52%\",\"position:absolute\",\"border:1px solid #24c1ff\",\"left:16.5%\",\"top:23%\",\"z-index:-1\"]],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec.slick-list\":false},[\"padding:20px 0\"]],[false,{\".ecosystem-sec .inner::before\":false},[\"display:none\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm\":false},[\"border-radius:16px\",\"-webkit-box-shadow:8px 16px 32px rgba(0,0,0,.1)\",\"box-shadow:8px 16px 32px rgba(0,0,0,.1)\",\"background-color:#fff\",\"padding:25px 40px 25px 40px\",\"margin-bottom:40px\",\"width:30.2%\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"margin-bottom:30px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-bottom:30px\",\"width:32%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm\":false},[\"-webkit-box-shadow:0px 0px 5px rgba(0,0,0,.1)\",\"box-shadow:0px 0px 5px rgba(0,0,0,.1)\",\"width:32%\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .inner-colm .slick-track\":false},[\"display:flex\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"height:inherit\",\"padding-bottom:30px\",\"padding-top:10px\",\"display:flex\",\"flex-direction:column\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"height:inherit\",\"padding-bottom:30px\",\"padding-top:25px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"margin-top:auto\",\"position:relative\",\"top:28px\",\"max-width:180px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more:not(#_#_#_#_#_#_#_)\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false},[\"bottom:6px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm\":false},[\"padding:30px\"]],[false,\"}\"],[false,\"@media (max-width: 1100px){\"],[false,{\".ecosystem-sec .colm\":false},[\"padding:30px 20px\",\"width:31.5%\"]],[false,\"}\"],[false,\"@media (max-width: 1100px){\"],[false,{\".ecosystem-sec .colm\":false},[\"padding:15px 20px\",\"width:31.5%\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-left:10px\",\"margin-right:10px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-left:4px\",\"margin-right:4px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-53%)\",\"transform:translateY(-53%)\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-57%)\",\"transform:translateY(-57%)\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-55%)\",\"transform:translateY(-55%)\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-54%)\",\"transform:translateY(-54%)\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:unset\",\"transform:unset\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:translateY(55%)\",\"transform:translateY(55%)\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:translateY(51%)\",\"transform:translateY(51%)\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:translateY(50%)\",\"transform:translateY(50%)\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:unset\",\"transform:unset\"]],[false,\"}\"],[false,\"@media (min-width: 993px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"position:absolute\",\"left:0\",\"right:0\",\"top:49.5%\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\",\"margin-left:auto\",\"margin-right:auto\",\"width:28%\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:30%\"]],[false,\"@media (min-width: 1920px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:30%\"]],[false,\"}\"],[false,\"@media (min-width: 1440px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (min-width: 993px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"display:none\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"color:#152649\",\"font-size:20px\",\"line-height:1.2\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false,\".ecosystem-sec .colm h5:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:15px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:17px\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false,\".ecosystem-sec .colm h5:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm h4\":false},[\"font-size:24px\",\"padding-right:110px\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:25px\"]],[false,{\".ecosystem-sec .slick-track\":false},[\"display:flex\"]],[false,{\".ecosystem-sec .slick-track .slick-slide\":false},[\"height:inherit\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec .colm h4\":false},[\"font-size:20px\",\"padding-right:35px\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:30px\"]],[false,\"}\"],[false,\"@media (max-width: 380px){\"],[false,{\".ecosystem-sec .colm h4\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm h4\":false},[\"margin-bottom:30px\",\"font-weight:bold\"]],[false,{\".ecosystem-sec .colm h5\":false},[\"font-weight:900\",\"margin-top:50px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".ecosystem-sec .colm h5\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm p\":false},[\"font-size:16px\",\"line-height:1.5\",\"color:#707070\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"padding-top:0px\",\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm h5\":false},[\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm\":false},[\"height:fit-content\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm p b\":false},[\"font-size:13px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm p b\":false},[\"color:#24c1ff\",\"font-weight:bold\"]],[false,\"@media (min-width: 768px) and (max-width: 992px){\"],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:51px\"]],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm p b\":false},[\"color:#707070\"]],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 375px){\"],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .back-slide\":false},[\"position:relative\"]],[false,{\".ecosystem-sec .colm .back-slide h6\":false},[\"font-size:14px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#28d9cb\",\"margin-bottom:10px\"]],[false,{\".ecosystem-sec .colm .back-slide .left-img\":false},[\"max-width:190px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .right-img\":false},[\"margin-bottom:5px\",\"margin-top:15px\"]],[false,{\".ecosystem-sec .colm .back-slide .right-img\":false},[\"max-width:70px\",\"position:absolute\",\"bottom:60px\",\"right:0px\"]],[false,{\".ecosystem-sec .colm .back-slide p\":false},[\"max-width:100%\",\"display:inline-block\"]],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide p\":false},[\"max-width:calc(100% - 90px)\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide p\":false},[\"max-width:calc(100% - 67px)\"]],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide .right-img\":false},[\"margin:0px\"]],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide .right-img amp-img\":false,\".ecosystem-sec .colm:nth-child(2) .back-slide .right-img amp-anim\":false},[\"width:70%\",\"margin-left:auto\",\"margin-top:0\",\"top:0\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"color:#28d9cb\",\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:900\",\"margin-top:0px\",\"display:block\",\"text-decoration:underline\"]],[false,{\".ecosystem-sec .colm:nth-child(3) .back-slide .back_heading\":false,\".ecosystem-sec .colm:nth-child(6) .back-slide .back_heading\":false},[\"text-align:left\",\"width:75%\",\"float:right\"]],[false,{\".ecosystem-sec .colm:nth-child(3) .back-slide .icon\":false,\".ecosystem-sec .colm:nth-child(6) .back-slide .icon\":false},[\"float:left\",\"margin-top:18px\"]],[false,{\".ecosystem-sec .colm:nth-child(3) .back-slide .icon\":false},[\"margin-top:10px\"]],[false,{\".ecosystem-sec .colm .slick-dots\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"position:absolute\",\"right:25px\",\"bottom:11px\",\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm .slick-dots li\":false},[\"list-style-type:none\",\"width:4px\",\"height:4px\",\"margin:0 5px\"]],[false,{\".ecosystem-sec .colm .slick-dots li button\":false},[\"display:block\",\"width:100%\",\"height:100%\",\"border-radius:50%\",\"background-color:#c9c9c9\",\"border:none\",\"font-size:0\"]],[false,{\".ecosystem-sec .colm .slick-dots li.slick-active\":false},[\"width:8px\",\"height:8px\"]],[false,{\".ecosystem-sec .colm .slick-dots li.slick-active button\":false},[\"background-color:#28d9cb\"]],[false,{\".ecosystem-sec .colm .slick-arrow\":false},[\"border:none\",\"bottom:11px\",\"position:absolute\",\"background:transparent\",\"z-index:2\",\"cursor:pointer\",\"height:13px\"]],[false,{\".ecosystem-sec .colm .slick-arrow.slick-disabled\":false},[\"opacity:0\",\"visibility:hidden\"]],[false,{\".ecosystem-sec .colm .slick-arrow i\":false},[\"color:#28d9cb\"]],[false,{\".ecosystem-sec .colm .slick-arrow.slick-prev\":false},[\"right:90px\"]],[false,{\".ecosystem-sec .colm .slick-arrow.slick-next\":false},[\"right:0\"]],[false,{\".partner-sec\":false},[\"background-color:#152649\",\"text-align:center\",\"padding:0px 0 240px\",\"position:relative\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".partner-sec\":false},[\"padding:0px 0 120px\"]],[false,\"}\"],[false,{\".bg-img\":false},[\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".partner-sec\":false},[\"padding:0px 0 90px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".partner-sec\":false},[\"padding:0px 0 85px\"]],[false,\"}\"],[false,{\".back-slide .partner-sec .bg-img\":false},[\"position:absolute\",\"top:0\",\"width:100%\"]],[false,{\".partner-sec .bg-img::before\":false},[\"content:\\\"\\\"\",\"width:100%\",\"height:265px\",\"position:absolute\",\"left:0\",\"bottom:-3px\",\"background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(21,38,73,0)),to(#152649))\",\"background-image:linear-gradient(rgba(21,38,73,0),#152649)\"]],[false,{\".partner-sec .container-md\":false},[\"margin-top:-140px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".partner-sec .bg-img::before\":false},[\"height:165px\"]],[false,\"}\"],[false,{\".partner-sec .bg-img .for-desktop\":false},[\"display:block\"]],[false,{\"figure.for-desktop amp-img\":false,\"figure.for-desktop amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".partner-sec .bg-img .for-desktop\":false},[\"display:none\"]],[false,\"}\"],[false,{\".partner-sec .bg-img .for-mobile\":false},[\"display:none\",\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".partner-sec .bg-img .for-mobile\":false},[\"display:block\"]],[false,\"}\"],[false,{\".partner-sec .bg-img .for-mobile amp-img\":false,\".partner-sec .bg-img .for-mobile amp-anim\":false},[\"width:100%\"]],[false,{\".partner-sec .heading-box\":false},[\"padding-bottom:90px\",\"z-index:1\",\"position:relative\"]],[false,{\".partner-sec .heading-box h2\":false},[\"color:#fff\",\"max-width:600px\",\"margin:auto\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".partner-sec .heading-box h2\":false},[\"max-width:455px\"]],[false,\"}\"],[false,{\".partner-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".partner-sec .slick-track:not(#_#_#_#_#_#_#_)\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".partner-sec .slick-arrow\":false},[\"background:transparent\",\"color:#24c1ff\",\"border:none\",\"font-size:20px\",\"position:absolute\",\"top:calc(50% - 11px)\",\"z-index:1\"]],[false,{\".partner-sec .slick-arrow.slick-disabled\":false},[\"opacity:0\",\"visibility:hidden\"]],[false,{\".partner-sec .slick-arrow.slick-prev\":false},[\"left:0\"]],[false,{\".partner-sec .slick-arrow.slick-next\":false},[\"right:0\"]],[false,{\".partner-sec .colm\":false},[\"width:33.33%\",\"padding:0 40px\",\"border-right:1px solid rgba(112,128,167,.3)\"]],[false,{\".partner-sec .colm:not(#_#_#_#_#_#_#_)\":false},[\"height:inherit\"]],[false,\"@media (max-width: 992px){\"],[false,{\".partner-sec .colm\":false},[\"padding:0 20px\"]],[false,\"}\"],[false,\"@media (max-width: 540px){\"],[false,{\".partner-sec .colm\":false},[\"border-right:none\",\"padding:0\"]],[false,\"}\"],[false,{\".partner-sec .colm:last-of-type\":false},[\"border-right:none\"]],[false,{\".partner-sec .colm h6\":false},[\"font-size:20px\",\"line-height:1\",\"color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"min-height:64px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".partner-sec .colm h6\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".partner-sec .colm figure\":false},[\"margin:40px 0\"]],[false,{\".partner-sec .colm figure amp-img\":false,\".partner-sec .colm figure amp-anim\":false},[\"margin:auto\"]],[false,{\".partner-sec .colm p\":false},[\"font-size:16px\",\"line-height:22px\",\"color:#7080a7\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\"]],[false,{\".solution-sec\":false},[\"padding:240px 0\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".solution-sec\":false},[\"padding:130px 0\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec\":false},[\"padding:100px 0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec\":false},[\"background-color:#24c1ff\",\"padding:57px 18px 80px\"]],[false,\"}\"],[false,{\".solution-sec .heading-box\":false},[\"margin-bottom:47px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .heading-box label\":false},[\"color:#fff\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper table\":false},[\"width:100%\",\"border-collapse:collapse\"]],[false,{\".solution-sec .table-wrapper #data-more-btn\":false},[\"background:no-repeat\",\"border:none\",\"margin:0px auto\",\"display:block\",\"font-weight:bold\",\"color:#152649\",\"position:relative\",\"padding:0px 15px\"]],[false,{\".solution-sec .table-wrapper #data-more-btn::after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0px\",\"right:0\",\"width:6px\",\"height:6px\",\"bottom:0\",\"margin:auto\",\"transform:rotate(45deg)\",\"border:#152649 solid 2px\",\"border-left:0px\",\"border-top:0px\"]],[false,{\".solution-sec .table-wrapper table .accor-toggle-btn\":false},[\"position:absolute\",\"right:0px\",\"top:0\",\"width:8px\",\"height:8px\",\"border:#152649 solid 2px\",\"transform:rotate(45deg)\",\"border-top:none\",\"border-left:none\",\"display:none\",\"margin-top:10px\"]],[false,{\"span.accor-toggle-btn.active:not(#_#_#_#_#_#_#_#_)\":false},[\"transform:rotate(-135deg)\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper tr\":false},[\"display:flex\",\"flex-wrap:wrap\",\"border-top:1px solid #f1f1f1\",\"padding:15px 0\"]],[false,{\".solution-sec .table-wrapper tr td\":false},[\"display:block\",\"width:100%\"]],[false,{\".solution-sec .table-wrapper tr.table-head\":false},[\"display:none\"]],[false,{\".solution-sec .table-wrapper td:nth-child(1)\":false},[\"order:1\"]],[false,{\".solution-sec .table-wrapper td:nth-child(3)\":false},[\"order:2\"]],[false,{\".solution-sec .table-wrapper td:nth-child(2)\":false},[\"order:3\"]],[false,{\".solution-sec .table-wrapper table .accor-toggle-btn\":false},[\"display:block\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#152649\",\"line-height:1.16\",\"border-bottom:1px solid #c9c9c9\",\"text-align:left\"]],[false,{\".solution-sec .accor-wrapper th\":false,\".solution-sec .accor-wrapper td\":false},[\"border:none\"]],[false,{\".solution-sec .table-wrapper th:not(:first-of-type)\":false,\".solution-sec .table-wrapper td:not(:first-of-type)\":false},[\"padding-left:20px\"]],[false,{\".solution-sec .table-wrapper td:nth-child(4)\":false,\".solution-sec .table-wrapper td:nth-child(2)\":false,\".solution-sec .table-wrapper td:nth-child(3)\":false},[\"font-weight:bold\"]],[false,\"@media (min-width:767px){\"],[false,{\".solution-sec .accor-wrapper tr td:not(#_#_#_#_#_#_#_#_)\":false},[\"width:31%\",\"padding-left:0px\"]],[false,{\".solution-sec .accor-wrapper tr td:nth-last-child(1):not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:10px\"]],[false,\"}\"],[false,\"@media (min-width: 1280px) and (max-width: 1350px){\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec .table-wrapper th:not(:first-of-type)\":false,\".solution-sec .table-wrapper td:not(:first-of-type)\":false},[\"padding-left:15px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper th:not(:first-of-type)\":false,\".solution-sec .table-wrapper td:not(:first-of-type)\":false},[\"padding-left:0\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"font-size:14px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"border:none\",\"text-align:right\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper th\":false},[\"font-weight:bold\",\"padding:0 0 32px 0\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper th\":false},[\"display:none\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td\":false},[\"font-weight:500\",\"padding:16px 0\",\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td\":false},[\"display:block\",\"padding:5px 0\",\"position:relative\"]],[false,{\".solution-sec .table-wrapper table tbody tr td:nth-child(1)::before\":false},[\"display:none\"]],[false,{\".solution-sec .table-wrapper table tbody tr .accor-wrapper td:nth-child(1)::before\":false},[\"display:block\"]],[false,{\".solution-sec .table-wrapper td::before\":false},[\"content:attr(data-th)\",\"position:absolute\",\"left:0\",\"color:#152649\",\"font-weight:bold\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td.sometimes\":false},[\"color:#7080a7\",\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td.sometimes\":false},[\"color:#5970a8\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td.rare\":false},[\"color:#ff555f\",\"font-weight:bold\"]],[false,{\".solution-sec .table-wrapper td.always\":false},[\"color:#28d9cb\",\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td.always\":false},[\"color:#fff\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td:last-of-type\":false},[\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td:last-of-type:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".solution-sec .table-wrapper tr .accor-wrapper tr\":false},[\"border:none\",\"padding-top:0px\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td:last-of-type amp-img\":false,\".solution-sec .table-wrapper td:last-of-type amp-anim\":false},[\"width:23px\",\"margin-right:7px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td:last-of-type amp-img\":false,\".solution-sec .table-wrapper td:last-of-type amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td:first-of-type\":false},[\"width:35%\"]],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec .table-wrapper td:first-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td:first-of-type\":false},[\"width:100%\",\"text-align:revert\",\"font-weight:500\",\"padding-right:25px\"]],[false,{\".solution-sec .table-wrapper .accor-wrapper table tr td\":false},[\"padding-right:0px\",\"width:100%\"]],[false,\"}\"],[false,{\".future-vision-sec\":false},[\"background-color:#f9f9f9\",\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec\":false},[\"padding:0\",\"padding-bottom:190px\"]],[false,\"}\"],[false,{\".future-vision-sec .inner-vision-sec\":false},[\"background-color:#062b43\",\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .inner-vision-sec\":false},[\"padding:0\"]],[false,\"}\"],[false,{\".future-vision-sec .bg-img\":false},[\"position:relative\",\"width:39%\"]],[false,\"@media (max-width: 1800px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(18% + 45px)\",\"margin-right:-45px\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:35%\"]],[false,\"}\"],[false,\"@media (max-width: 1680px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:37%\"]],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(17% + 50px)\",\"margin-right:-50px\",\"z-index:1\"]],[false,\"}\"],[false,\"@media (max-width: 1536px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:35%\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:30%\",\"height:100%\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:286px\"]],[false,{\".future-vision-sec .bg-img amp-img\":false,\".future-vision-sec .bg-img amp-anim\":false},[\"object-fit:cover\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"position:inherit\",\"width:100%\",\"max-width:inherit\",\"margin:auto\",\"margin-bottom:-160px\"]],[false,\"}\"],[false,{\".future-vision-sec .bg-img amp-img\":false,\".future-vision-sec .bg-img amp-anim\":false},[\"width:100%\",\"height:100%\"]],[false,{\".future-vision-sec .bg-img::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"bottom:0\",\"width:100%\",\"height:256px\",\"background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(4,40,63,0)),to(#042941))\",\"background-image:linear-gradient(rgba(4,40,63,0),#042941)\",\"left:0\",\"display:none\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .bg-img::before\":false},[\"display:block\"]],[false,\"}\"],[false,{\".future-vision-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"position:relative\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .inner\":false},[\"height:460px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .inner\":false},[\"height:auto\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:45%\",\"padding-right:8%\"]],[false,\"@media (max-width: 1536px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"padding-right:7%\"]],[false,\"}\"],[false,{\".container-spacial\":false},[\"padding-left:17%\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".container-spacial\":false},[\"padding-left:12%\"]],[false,\"}\"],[false,\"@media (max-width: 1536px){\"],[false,{\".container-spacial\":false},[\"padding-left:9%\"]],[false,\"}\"],[false,\"@media (max-width: 1440px){\"],[false,{\".container-spacial\":false},[\"padding-left:7%\"]],[false,\"}\"],[false,\"@media (max-width: 1800px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:47%\"]],[false,\"}\"],[false,\"@media (max-width: 1440px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:50%\",\"padding-right:5%\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:31%\"]],[false,{\".kubernetes-sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-213px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".container-spacial\":false},[\"padding-left:0px\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:31%\"]],[false,{\".future-vision-sec .custom-txt\":false},[\"width:51%\",\"padding-right:4%\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"font-size:45px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:55%\",\"padding-right:7%\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:30%\"]],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:51%\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:30%\"]],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:29.8%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:100%\",\"order:-1\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:100%\",\"padding-right:20px\",\"padding-left:20px\",\"padding-bottom:34px\",\"border-bottom:1px solid rgba(241,241,241,.15)\",\"margin-bottom:38px\",\"z-index:1\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"color:#fff\",\"margin-bottom:40px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:175px\",\"font-size:30px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:71px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"font-size:20px\",\"padding-right:4px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"font-size:24px\",\"margin-bottom:34px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt h2 span\":false},[\"color:#24c1ff\"]],[false,{\".future-vision-sec .custom-txt p\":false},[\"color:#fff\",\"font-size:16px\",\"line-height:1.5\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"padding-right:30px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .custom-txt p\":false},[\"font-size:12px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-txt p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt p a\":false},[\"text-decoration:underline\",\"color:#24c1ff\"]],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(15.95% + 60px)\",\"margin-right:-60px\",\"z-index:1\"]],[false,\"@media (max-width: 1536px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(18% + 60px)\",\"margin-right:-60px\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(18% + 60px)\",\"margin-right:-60px\"]],[false,{\".review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:19px\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:19px\"]],[false,{\".kubernetes-sec .custom-txt p\":false},[\"font-size:19px\"]],[false,{\".col-row ul li\":false},[\"font-size:19px\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:44px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col\":false},[\"padding-bottom:15px\",\"width:calc(50% - 27px)\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col li\":false},[\"padding-bottom:20px\",\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(15% + 60px)\",\"margin-right:-60px\"]],[false,{\".reliability-engineers p\":false},[\"font-size:17px\",\"font-weight:bold\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:160px 0px 105px 0px\"]],[false,{\".col-row ul li\":false},[\"font-size:17px\",\"margin-bottom:15px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(19% + 60px)\"]],[false,{\".text-grey-box p:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:15px\"]],[false,{\".review_sec2 i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:16px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-183px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:192px 0px 84px 0px\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:15px\"]],[false,{\".reliability-engineers\":false},[\"padding:40px 30px 40px 78px\",\"margin-top:40px\"]],[false,{\".reliability-engineers p\":false},[\"font-size:15px\",\"font-weight:bold\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-137px\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:35px\"]],[false,{\".infrastructure-sec\":false},[\"margin-top:-234px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img amp-img\":false,\".future-vision-sec .custom-img amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:100%\",\"-webkit-box-orient:vertical\",\"-webkit-box-direction:reverse\",\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"padding:0px 25px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img .inner-img\":false},[\"position:relative\",\"margin-bottom:15px\"]],[false,{\".future-vision-sec .custom-img .inner-img h5\":false},[\"color:#fff\",\"position:absolute\",\"padding:40px 0px 0px 30px\",\"font-size:42px\",\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img .inner-img\":false},[\"margin-bottom:-155px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"position:absolute\",\"font-size:24px\",\"line-height:1.16\",\"color:#24c1ff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding-right:50px\",\"max-width:256px\",\"bottom:30px\",\"left:30px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:15px\"]],[false,{\".devops-services .applications-col ul li\":false},[\"font-size:14px\"]],[false,{\".srvs-text-box p\":false},[\"font-size:14px\"]],[false,{\".srvs-text-box\":false},[\"margin-bottom:15px\"]],[false,{\".devops-services .applications-col h5\":false},[\"margin-bottom:15px\"]],[false,{\".devops-services .applications-col ul\":false},[\"margin-bottom:15px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-186px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-167px\"]],[false,{\".reliability-engineers p\":false},[\"font-size:14px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:11px\"]],[false,{\".fortune-box\":false},[\"width:100%\"]],[false,{\".col-row ul li\":false},[\"font-size:15px\",\"margin-bottom:15px\"]],[false,{\".col-row ul\":false},[\"column-gap:0\"]],[false,{\".cost-effective-sec .left-text p\":false},[\"font-size:14px\",\"line-height:1.6\",\"color:#707070\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:29px\"]],[false,{\".cost-effective-sec .inner\":false},[\"margin-bottom:40px\"]],[false,{\".cost-effective-sec .review_sec2\":false},[\"margin-top:0\"]],[false,{\".cost-effective-sec .review_sec .swiper-slide i\":false},[\"margin:0 0px 10px\"]],[false,{\".infrastructure-sec\":false},[\"margin-top:-187px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:24px\"]],[false,{\".main-scroll-box\":false},[\"overflow:scroll\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".devops-consulting-banner .title\":false},[\"margin-bottom:10px\"]],[false,{\".devops-consulting-banner h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:32px\"]],[false,\"}\"],[false,\"@media (max-width: 380px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,{\".contact-form-info-right ul li\":false},[\"font-size:14px\"]],[false,{\".contact-form-info-right ul li:first-of-type:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:20px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img .overlay-txt i\":false},[\"position:absolute\",\"right:7px\",\"background:rgba(255,255,255,.2)\",\"width:24px\",\"height:24px\",\"border-radius:50%\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-webkit-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"font-size:18px\",\"top:calc(50% - 10px)\"]],[false,{\".future-vision-sec .custom-img p\":false},[\"font-size:14px\",\"color:#bebebe\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img p\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".lets-talk-sec\":false},[\"padding:55px 0\",\"-webkit-box-shadow:8px 0px 32px rgba(0,0,0,.1)\",\"box-shadow:8px 0px 32px rgba(0,0,0,.1)\"]],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec\":false},[\"padding:30px 0 0\"]],[false,\"}\"],[false,{\".lets-talk-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .inner\":false},[\"max-width:300px\",\"text-align:center\",\"margin:auto\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".lets-talk-sec .inner\":false},[\"max-width:250px\"]],[false,\"}\"],[false,{\".lets-talk-sec .heading-box\":false},[\"width:calc(100% - 370px)\"]],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .heading-box\":false},[\"width:calc(100% - 300px)\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .heading-box\":false},[\"width:100%\",\"margin-bottom:18px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".lets-talk-sec .heading-box h2\":false},[\"font-size:25px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".lets-talk-sec .heading-box h2\":false},[\"font-size:20px\"]],[false,\"}\"],[false,{\".lets-talk-sec .btn-wrapper\":false},[\"width:306px\"]],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"width:100%\",\"height:80px\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"border-radius:100px\"]],[false,\"@media (max-width:1780px){\"],[false,{\".lets-talk-sec .btn-wrapper\":false},[\"width:250px\"]],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"height:70px\",\"font-size:24px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".lets-talk-sec .btn-wrapper\":false},[\"max-width:250px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"height:60px\",\"font-size:25px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"width:132px\",\"height:40px\",\"font-size:20px\",\"padding:5px\",\"margin:auto\",\"margin-bottom:-20px\"]],[false,{\".tek-world-scale .inner .custom-img\":false},[\"margin:0px auto\",\"display:block\"]],[false,\"}\"],[false,{\".custom-grid-sec\":false},[\"background-color:#f1f1f1\",\"padding:100px 0px 110px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec\":false},[\"padding-right:120px 0\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm amp-img\":false,\".custom-grid-sec .inner .colm amp-anim\":false},[\"width:60px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec\":false},[\"padding-right:120px 0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-grid-sec\":false},[\"padding:120px 0 80px\",\"margin-top:-155px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"margin:0 -40px\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"width:calc(33.333% - 27px)\",\"margin-right:40px\",\"display:flex\",\"flex-direction:column\"]],[false,{\".custom-grid-sec .inner\":false},[\"margin:0\"]],[false,{\".custom-grid-sec .inner .colm:nth-child(3n)\":false},[\"margin-right:0\"]],[false,\"@media (max-width: 992){\"],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding-right:20px\",\"padding-left:20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding-right:40px\",\"padding-left:20px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm figure\":false},[\"display:inline-block\",\"margin-right:15px\"]],[false,{\".custom-grid-sec .inner .colm h4\":false},[\"display:-webkit-inline-box\",\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"margin-bottom:15px\",\"color:#152649\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:30px\",\"font-weight:bold\"]],[false,\"@media (max-width: 1366px){\"],[false,{\".custom-grid-sec .inner .colm h4\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm p\":false},[\"margin-bottom:30px\",\"font-size:18px\",\"color:#434343\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"line-height:1.6\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec .inner .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-grid-sec .inner .colm p\":false},[\"font-size:14px\",\"margin-bottom:24px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm a\":false},[\"color:#152649\",\"font-weight:bold\",\"font-family:\\\"Raleway\\\",sans-serif\",\"display:block\",\"font-size:24px\",\"margin-top:auto\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec .inner .colm a\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-grid-sec .inner .colm a\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm a i\":false},[\"margin-left:15px\",\"font-size:16px\"]],[false,{\".custom-grid-sec .slick-dots\":false},[\"position:absolute\",\"right:10px\",\"top:50%\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\"]],[false,{\".custom-grid-sec .slick-dots li\":false},[\"list-style-type:none\",\"height:70px\",\"width:3px\",\"margin:4px 0\"]],[false,{\".custom-grid-sec .slick-dots li.slick-active button\":false},[\"background-color:#28d9cb\"]],[false,{\".custom-grid-sec .slick-dots li button\":false},[\"width:100%\",\"height:100%\",\"background-color:#fff\",\"border-radius:2px\",\"font-size:0\",\"outline:none\",\"border:none\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".custom-trust-sec .inner\":false},[\"position:relative\"]],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:calc(55% - 30px)\",\"margin-right:30px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:70%\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".custom-trust-sec .custom-txt p\":false},[\"padding-right:57px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-trust-sec .custom-txt p\":false},[\"color:#152649\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec .custom-txt p\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".custom-trust-sec .custom-txt h2\":false},[\"max-width:calc(100% - 80px)\"]],[false,\"}\"],[false,{\".custom-trust-sec .custom-img\":false},[\"width:calc(45% - 30px)\",\"margin-right:0\",\"margin-left:30px\",\"text-align:right\"]],[false,{\".custom-trust-sec .custom-img amp-img\":false,\".custom-trust-sec .custom-img amp-anim\":false},[\"max-width:250px\",\"width:100%\",\"margin:0px auto\",\"display:block\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-trust-sec .custom-txt\":false},[\"margin-right:0\",\"width:55%\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec .custom-img\":false},[\"position:absolute\",\"right:0\",\"top:-20px\"]],[false,{\".custom-trust-sec .custom-img:not(#_#_#_#_#_#_#_)\":false},[\"width:56px\"]],[false,\"}\"],[false,{\".custom-case-studie\":false},[\"padding:0\",\"position:relative\",\"padding-top:618px\",\"background-color:#152649\"]],[false,\"@media (max-width:1780px){\"],[false,{\".custom-case-studie\":false},[\"padding-top:480px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".custom-case-studie\":false},[\"padding-top:442px\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img\":false},[\"background-repeat:no-repeat\",\"padding-bottom:0px\",\"position:absolute\",\"top:0\",\"width:100%\"]],[false,{\".custom-case-studie .bg-img::before\":false},[\"content:\\\"\\\"\",\"width:100%\",\"height:265px\",\"position:absolute\",\"left:0\",\"bottom:0\",\"background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(21,38,73,0)),to(#152649))\",\"background-image:linear-gradient(rgba(21,38,73,0),#152649)\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-case-studie .bg-img::before\":false},[\"height:165px\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img .for-desktop\":false},[\"display:block\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .bg-img .for-desktop\":false},[\"display:none\"]],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:100%\"]],[false,{\".custom-trust-sec .custom-img\":false},[\"width:100%\",\"margin-left:0\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img .for-mobile\":false},[\"display:none\",\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .bg-img .for-mobile\":false},[\"display:block\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img .for-mobile amp-img\":false,\".custom-case-studie .bg-img .for-mobile amp-anim\":false},[\"width:100%\"]],[false,{\".custom-case-studie .custom-bottm-sec\":false},[\"padding-bottom:160px\",\"padding-top:40px\",\"position:relative\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-case-studie .custom-bottm-sec\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,{\".custom-case-studie .custom-bottm-sec .inner\":false},[\"-webkit-box-align:end\",\"-ms-flex-align:end\",\"align-items:flex-end\",\"margin-top:-200px\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt\":false},[\"width:55%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt label\":false},[\"color:#f1f1f1\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt label i\":false},[\"color:#7080a7\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt h2\":false},[\"color:#fff\",\"margin-bottom:25px\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt h2 span\":false},[\"color:#8bed78\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt p\":false},[\"padding-right:57px\",\"color:#f1f1f1\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt p\":false},[\"padding-right:0\"]],[false,\"}\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-case-btn\":false},[\"width:38%\",\"margin-right:0\",\"text-align:left\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-case-btn\":false},[\"width:100%\",\"margin-top:15px\",\"text-align:left\"]],[false,\"}\"],[false,{\".custom-colm-blog\":false},[\"background-color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\".custom-colm-blog .heading-box h2 span\":false},[\"color:#28d9cb\"]],[false,{\".custom-colm-blog .colm\":false},[\"background-color:#f7f7f7\",\"border:#c9c9c9 solid 1px\",\"-webkit-box-shadow:none\",\"box-shadow:none\"]],[false,{\".custom-colm-blog .colm .txt-box\":false},[\"padding-bottom:35px\"]],[false,{\".custom-colm-blog .colm .txt-box h6\":false},[\"text-transform:uppercase\",\"color:#6f7070\",\"font-size:14px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"margin-bottom:15px\"]],[false,{\".custom-colm-blog .colm .txt-box h6 span\":false},[\"color:#c9c9c9\"]],[false,{\".custom-colm-blog .colm .txt-box h4\":false},[\"font-size:20px\",\"color:#152649\",\"margin-bottom:60px\",\"height:30px\"]],[false,{\".custom-colm-blog .colm .txt-box .custom-btm-text\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".custom-colm-blog .colm .txt-box .custom-btm-text a\":false},[\"color:#152649\",\"font-size:18px\",\"text-decoration:underline\",\"font-weight:bold\"]],[false,\"@media (max-width:767px){\"],[false,{\".custom-colm-blog .colm .txt-box .custom-btm-text a\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".custom-colm-blog .colm .img-box amp-img\":false,\".custom-colm-blog .colm .img-box amp-anim\":false},[\"height:160px\",\"-o-object-fit:cover\",\"object-fit:cover\",\"width:100%\"]],[true,\"@media (max-width:992px){\"],[true,{\"footer .container\":true},[\"max-width:90%\"]],[true,{\".footer-2022__menu--list\":true},[\"padding:0px 5px\"]],[true,{\"header nav .dropdown-menu p.new-header__nav--menu--text\":true},[\"max-width:unset\"]],[true,\"}\"],[true,\"@media (max-width:600px){\"],[true,{\"footer .container\":true},[\"max-width:540px\"]],[true,{\".footer-2022__menu--list\":true},[\"padding:0px\"]],[true,\"}\"],[true,{\".new-header__menu-item\":true},[\"background:#f7f7f7\"]],[true,\"@media (max-width:1280px){\"],[true,{\".new-header__menu-item\":true},[\"padding-left:15px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header__menu-item\":true},[\"padding-left:0\"]],[true,\"}\"],[false,{\".cp-tek-teams-isk\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"position:relative\",\"margin-top:100px\"]],[false,{\".cp-tek-teams-isk .inner-hero-text amp-img\":false,\".cp-tek-teams-isk .inner-hero-text amp-anim\":false},[\"width:48px\"]],[false,{\".cp-tek-teams-isk amp-img\":false,\".cp-tek-teams-isk amp-anim\":false},[\"width:100%\",\"object-fit:cover\",\"object-position:center\"]],[false,\"@media (max-width: 768px){\"],[false,{\".cp-tek-teams-isk\":false},[\"margin-top:70px\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk picture\":false},[\"padding-bottom:25px\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"position:relative\"]],[false,\"@media (max-width: 1366px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"padding-bottom:5px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"margin-bottom:0px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"margin-bottom:7px\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk picture p\":false},[\"color:#28d9cb\",\"margin-left:15px\",\"margin-bottom:0px\",\"font-size:16px\",\"line-height:1\"]],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk picture p\":false},[\"margin-left:0px\",\"color:#28d9cb\",\"font-size:12px\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk .inner-hero-text\":false},[\"position:absolute\",\"top:45%\",\"width:100%\",\"left:50%\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk .inner-hero-text picture\":false},[\"margin-bottom:5px\"]],[false,{\".cp-tek-teams-isk .inner-hero-text amp-img\":false,\".cp-tek-teams-isk .inner-hero-text amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:60px\",\"font-weight:bold\",\"color:rgba(255,255,255,1)\",\"line-height:1\",\"margin-bottom:6px\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"@media (max-width: 768px){\"],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:30px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:32px\"]],[false,\"}\"],[false,{\".contact-tek-teams\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"padding:80px 0px 120px\"]],[false,{\".contact-tek-teams .mobile-button\":false},[\"display:none\"]],[false,\"@media (max-width: 767px){\"],[false,{\".contact-tek-teams .desktop-button\":false},[\"display:none\"]],[false,{\".contact-tek-teams .mobile-button:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (max-width: 1680px){\"],[false,{\".contact-tek-teams\":false},[\"padding:80px 0px 90px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".contact-tek-teams\":false},[\"padding:80px 0px 80px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".contact-tek-teams\":false},[\"padding:60px 0px 60px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".contact-tek-teams\":false},[\"padding:40px 0px 0px\"]],[false,\"}\"],[false,{\".contact-tek-teams .inner\":false},[\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".contact-tek-teams .inner .custom-txt .btn-blue\":false},[\"margin-top:0px\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-txt\":false},[\"width:calc(50.5% - 0px)\",\"margin-right:0\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"width:54%\",\"margin-right:-12%\",\"margin-left:76px\"]],[false,\"@media (max-width: 1214px) and (max-width: 1280px){\"],[false,{\".contact-tek-teams .custom-img\":false},[\"margin-right:-7%\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".contact-tek-teams .custom-img\":false},[\"width:47%\",\"margin-right:0px\"]],[false,{\".contact-tek-teams .inner .custom-img p:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".contact-tek-teams .inner\":false},[\"flex-direction:column\",\"align-items:flex-start\"]],[false,{\".contact-tek-teams .custom-img\":false},[\"width:100%\",\"margin-right:0px\",\"margin-top:0px\",\"margin-left:0px\"]],[false,\"}\"],[false,{\".contact-tek-teams .inner .custom-img p\":false},[\"color:#707070\",\"line-height:32px\",\"padding-right:18%\",\"font-size:20px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".contact-tek-teams .inner .custom-img p\":false},[\"color:#707070\",\"line-height:2\",\"padding-right:0px\",\"font-size:14px\"]],[false,\"}\"],[false,{\".repeat-bg\":false},[\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".repeat-bg\":false},[\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".repeat-bg amp-img\":false,\".repeat-bg amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 600px){\"],[false,{\".repeat-bg amp-img\":false,\".repeat-bg amp-anim\":false},[\"height:207px\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".repeat-bg .c-btm-icon\":false},[\"position:absolute\",\"bottom:35px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".repeat-bg .c-btm-icon\":false},[\"left:0px\",\"bottom:13px\",\"width:100%\",\"padding:0px 25px\"]],[false,{\".repeat-bg .c-btm-icon amp-img\":false,\".repeat-bg .c-btm-icon amp-anim\":false},[\"width:auto\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".repeat-bg .c-btm-icon\":false},[\"left:0px\",\"bottom:0\",\"width:100%\",\"padding:0px 25px\",\"padding-bottom:25px\"]],[false,{\".repeat-bg .c-btm-icon amp-img\":false,\".repeat-bg .c-btm-icon amp-anim\":false},[\"height:inherit\",\"width:auto\",\"margin-bottom:0px\",\"margin-top:0\",\"padding-bottom:15px\"]],[false,\"}\"],[false,{\".repeat-bg .tek-teams-mob-heading\":false},[\"display:none\"]],[false,{\".repeat-bg .tek-teams-mob-heading h3\":false},[\"font-size:24px\",\"color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"line-height:1.3\"]],[false,\"@media (max-width: 600px){\"],[false,{\".repeat-bg .tek-teams-mob-heading\":false},[\"display:block\",\"padding-right:68px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".repeat-bg .tek-teams-mob-heading\":false},[\"display:block\",\"padding-right:0px\"]],[false,{\".repeat-bg .c-btm-icon\":false},[\"padding-bottom:10px\"]],[false,{\".repeat-bg .c-btm-icon amp-img\":false,\".repeat-bg .c-btm-icon amp-anim\":false},[\"padding-bottom:0px\"]],[false,\"}\"],[false,{\".tek-teams-heading\":false},[\"padding-top:80px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".tek-teams-heading\":false},[\"padding-top:20px\"]],[false,\"}\"],[false,{\".tek-teams-heading h3\":false},[\"font-size:30px\",\"line-height:1\",\"margin-bottom:40px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#707070\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek-teams-heading h3\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".tek-teams-heading\":false},[\"display:none\"]],[false,\"}\"],[false,{\".about-tek-wrapper\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"padding-bottom:120px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".about-tek-wrapper\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".about-tek-wrapper\":false},[\"padding-bottom:60px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".about-tek-wrapper\":false},[\"padding-top:50px\",\"padding-bottom:60px\"]],[false,\"}\"],[false,{\".about-tek-wrapper .about-tek-team\":false},[\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".about-tek-wrapper .about-tek-team .c-col\":false},[\"width:calc(50% - 40px)\"]],[false,{\".about-tek-wrapper .about-tek-team .c-col p b\":false,\".about-tek-wrapper .about-tek-team .c-col p strong\":false},[\"font-weight:bold\"]],[false,\"@media (max-width: 768px){\"],[false,{\".about-tek-wrapper .about-tek-team .c-col\":false},[\"width:calc(50% - 15px)\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".about-tek-wrapper .about-tek-team .c-col\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".about-tek-wrapper .about-tek-team .c-col p\":false},[\"padding-bottom:10px\",\"font-size:20px\",\"line-height:2\",\"color:#707070\"]],[false,\"@media (max-width: 768px){\"],[false,{\".about-tek-wrapper .about-tek-team .c-col p\":false},[\"font-size:15px\",\"padding-bottom:0px\",\"margin-bottom:10px\"]],[false,\"}\"],[false,{\".about-tek-wrapper .about-tek-team .c-col p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".development-team-sec\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"background-color:#f1f1f1\",\"padding-bottom:120px\"]],[false,{\".development-team-sec .text-short-box\":false},[\"padding-left:8px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".development-team-sec\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".development-team-sec\":false},[\"padding-bottom:60px\"]],[false,\"}\"],[false,{\".development-team-sec p\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.5\",\"margin-bottom:60px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec p\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec p\":false},[\"font-size:15px\",\"margin-bottom:25px\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .tek-teams-heading h3\":false},[\"color:#24c1ff\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"margin-bottom:20px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:30%\",\"margin-bottom:60px\"]],[false,\"@media (min-width: 1025px) and (max-width: 1280px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:32%\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"margin-bottom:20px\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"margin:0 0 0 40px\",\"width:calc(55% - 40px)\",\"padding:0\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-txt\":false},[\"width:45%\",\"margin:0\",\"padding:0\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img p\":false},[\"padding:0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:45%\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"margin:25px 0 0px 0px\",\"width:100%\",\"padding-bottom:10px\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-txt\":false},[\"width:100%\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:100%\",\"border-bottom:#e1e1e1 solid 1px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col:last-child\":false},[\"border-bottom:none\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:35px\",\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading figure\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"color:#152649\",\"padding-left:8px\",\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"margin-bottom:0px\"]],[false,\"@media only screen and (min-width: 1025px) and (max-width: 1279px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"font-size:14px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"padding-left:4px\",\"font-size:12px\",\"margin-bottom:0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"padding-left:4px\",\"font-size:14px\",\"margin-bottom:0\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:0px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span::before:not(#_#_#_#_#_#_#_#_)\":false},[\"content:none\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"font-size:18px\",\"line-height:1.3\",\"margin-bottom:25px\",\"color:#707070\",\"position:relative\",\"padding-left:20px\",\"padding-right:20px\",\"display:block\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"padding-right:0px\",\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"padding-left:10px\",\"font-size:13px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"font-size:14px\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span:last-child\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span::before\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p::before\":false},[\"position:absolute\",\"top:0\",\"left:0px\",\"content:\\\"-\\\"\",\"line-height:17px\"]],[false,\"@media (max-width: 600px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .col-heading::before\":false},[\"content:\\\"\\\"\",\"width:6px\",\"height:6px\",\"border-bottom:2px solid #24c1ff\",\"border-right:2px solid #24c1ff\",\"float:right\",\"position:absolute\",\"top:12px\",\"right:1px\",\"-webkit-transform:rotate(45deg)\",\"transform:rotate(45deg)\",\"-webkit-transform-origin:center\",\"transform-origin:center\",\"-webkit-transition:all .4s ease\",\"transition:all .4s ease\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .col-heading.active::before\":false},[\"-webkit-transform:rotate(225deg)\",\"transform:rotate(225deg)\",\"color:#24c1ff\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .col-heading .active:after\":false},[\"-webkit-transform:rotate(-135deg)\",\"transform:rotate(-135deg)\",\"border-color:#fff\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .text-short-box\":false},[\"display:none\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .btn-blue\":false},[\"padding:23px 0px\",\"text-align:center\",\"border-radius:50px\",\"width:360px\",\"margin:0px auto\",\"display:block\"]],[false,{\".benefits-sec\":false},[\"background-color:#fff\"]],[false,{\".team-structure-sec .tek-teams-heading h3\":false},[\"margin-bottom:25px\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"@media (max-width: 768px){\"],[false,{\".team-structure-sec .tek-teams-heading h3\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".team-structure-sec p\":false},[\"font-size:18px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".team-structure-sec p\":false},[\"font-size:14px\"]],[false,{\".custom-grid-sec .inner\":false},[\"margin:0\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding:25px 10px 25px 0px\",\"margin:0\"]],[false,{\".custom-grid-sec .slick-dots\":false},[\"right:0\"]],[false,\"}\"],[false,{\".dev-shop-team-sec\":false},[\"padding:120px 0px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".dev-shop-team-sec\":false},[\"padding:80px 0px\"]],[false,\"}\"],[false,{\".c-border-none td:not(#_#_#_#_#_#_#_#_)\":false},[\"border:none\"]],[false,{\".tekteams-tabel\":false},[\"background:none\"]],[false,{\".tekteams-tabel .heading-box label\":false},[\"color:#7080a7\"]],[true,\"@media (max-width: 1760px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:14px\",\"padding:0px 14px\"]],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:80px\"]],[true,{\".dropdown-menu\":true},[\"top:77px\"]],[false,{\".cp-tek-teams-isk:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:80px\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:50px\",\"width:75%\",\"margin-right:auto\",\"margin-left:auto\"]],[false,{\".demand-sec\":false},[\"padding:150px 0px 110px 0px\"]],[false,{\".ecosystem-sec\":false},[\"padding:150px 0px\"]],[false,{\".partner-sec .bg-img\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\"]],[false,{\".partner-sec\":false},[\"padding:240px 0px 240px 0px\"]],[false,{\".partner-sec .container-md\":false},[\"margin-top:0\"]],[false,{\".solution-sec\":false},[\"padding:160px 0px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:50px\"]],[false,{\".tek-teams-heading h3\":false},[\"margin-bottom:30px\"]],[false,{\".about-tek-wrapper .about-tek-team .c-col p\":false},[\"margin-bottom:5px\",\"line-height:1.5em\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"margin-bottom:30px\"]],[false,{\".development-team-sec .development-team-content .btn-blue\":false},[\"padding:16px 0px\",\"width:261px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:20px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:120px 0px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:79px\"]],[true,\"}\"],[true,\"@media (max-width: 1680px){\"],[false,{\".tekteams-tabel\":false},[\"padding:25px 0px 60px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"padding:0px 11px\"]],[true,{\".new-header__button a\":true},[\"font-size:16px\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:45px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:45px\"]],[false,{\".demand-sec\":false},[\"padding:100px 0px 60px 0px\"]],[false,{\".ecosystem-sec\":false},[\"padding:100px 0px 130px 0px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 200px 0px\"]],[false,{\".partner-sec .heading-box\":false},[\"padding-bottom:50px\"]],[false,{\".solution-sec\":false},[\"padding:130px 0px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:100px 0px\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:18px\"]],[false,{\".journey-roadmap\":false},[\"margin-top:-98px\"]],[false,{\".infrastructure-sec .heading-box h2\":false,\".cost-effective-sec .heading-box h2\":false},[\"font-size:50px\"]],[true,\"}\"],[true,\"@media (max-width: 1560px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\",\"padding:0px 9px\"]],[true,{\".new-header__button a\":true},[\"font-size:14px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 160px 0px\"]],[false,{\".solution-sec\":false},[\"padding:120px 0px\"]],[false,{\".journey-roadmap\":false},[\"margin-top:-200px\"]],[false,{\".kubernetes-sec\":false},[\"margin-top:-100px\"]],[true,\"}\"],[true,\"@media (max-width:1366px){\"],[false,{\".btn-blue\":false},[\"font-size:18px\"]],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:77px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:72px\"]],[false,{\".cp-tek-teams-isk:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:77px\"]],[true,{\".dropdown-menu\":true},[\"top:75px\"]],[false,{\".cp-cloud-native-isk h2\":false,\".cp-tek-teams-isk h2\":false},[\"font-size:40px\"]],[false,{\".heading-box h2\":false},[\"font-size:32px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 140px 0px\"]],[false,{\".solution-sec\":false},[\"padding:110px 0px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:80px 0px\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:16px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:140px\"]],[false,{\".keeping-future ul\":false},[\"font-size:18px\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:40px\"]],[false,{\".choose-option ul li:last-child\":false},[\"margin-left:0px\"]],[false,{\".choose-option ul li\":false},[\"padding:15px 20px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 70px 119px\"]],[false,{\".contact-form-info-right ul li\":false},[\"padding:25px 0px 25px\"]],[true,\"}\"],[true,\"@media (max-width:1280px){\"],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:60px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:60px\"]],[false,{\".cp-tek-teams-isk:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:59px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:60px\"]],[true,{\".dropdown-menu\":true},[\"top:57px\"]],[false,{\".heading-box h2\":false},[\"font-size:28px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 120px 0px\"]],[false,{\".choose-option\":false},[\"padding-left:40px\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:60px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:35px\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:14px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:120px\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:33px\"]],[false,{\".keeping-future ul\":false},[\"font-size:16px\"]],[false,{\".contact-form-info-right ul\":false},[\"margin-bottom:70px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 50px 119px\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"object-position:-256px 0px\"]],[true,\"}\"],[false,\"@media (max-width:1200px){\"],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:25px\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:45px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 30px 119px\"]],[false,\"}\"],[false,\"@media (max-width:1190px){\"],[false,{\".btn-blue\":false},[\"font-size:16px\"]],[false,\"}\"],[true,\"@media (max-width:1170px){\"],[true,{\".new-header__logo\":true},[\"min-width:200px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\",\"padding:0px 6px\"]],[false,{\".choose-option ul li\":false},[\"font-size:17px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:18px\"]],[true,\"}\"],[true,\"@media (max-width:1100px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:10px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 100px 0px\"]],[true,\"}\"],[true,\"@media (max-width:1028px){\"],[true,{\".new-header__logo\":true},[\"min-width:150px\"]],[true,\"}\"],[false,\"@media (max-width:1024px){\"],[false,{\".contact-form-left\":false},[\"width:53%\",\"padding:58px 0px 75px\"]],[false,{\".contact-form-info-right\":false},[\"width:44%\",\"padding:50px 18px 76px\"]],[false,{\".choose-option ul\":false},[\"flex-wrap:nowrap\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"object-position:75% 0px\"]],[false,\"}\"],[true,\"@media (max-width:992px){\"],[false,{\".btn-blue\":false},[\"font-size:18px\"]],[true,{\".new-header__button\":true},[\"width:20%\",\"justify-content:center\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"width:100%\"]],[false,{\".solution-sec\":false},[\"padding:90px 0px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:30px\"]],[false,{\".cp-cloud-native-isk .btn\":false},[\"width:unset\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:230px\"]],[true,{\".closeicon\":true},[\"width:14px\",\"display:none\",\"position:relative\",\"right:17px\",\"top:6px\"]],[true,{\".navbar-toggler .closeicon\":true},[\"display:block\"]],[true,{\".navbar-toggler amp-img:nth-child(1)\":true,\".navbar-toggler amp-anim:nth-child(1)\":false},[\"display:none\"]],[false,{\".navbar-toggler.collapsed .closeicon\":false},[\"display:none\"]],[false,{\".navbar-toggler.collapsed amp-img:nth-child(1)\":false,\".navbar-toggler.collapsed amp-anim:nth-child(1)\":false},[\"display:block\"]],[false,{\".text-grey-box p\":false},[\"padding-right:0px\"]],[true,\"}\"],[false,\"@media (max-width:980px){\"],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"padding:0px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:0\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:20px\"]],[false,{\".btm-icon-line\":false},[\"width:55%\",\"margin:0px auto\"]],[false,{\".custom-contact-wrapper\":false},[\"padding:85px 0px 100px\"]],[false,{\".contact-form-info-right ul li:last-child a\":false},[\"word-break:break-word\"]],[false,\"}\"],[false,\"@media (max-width: 769px){\"],[false,{\".contact-form-info-right ul li a\":false},[\"word-break:break-word\"]],[false,{\".contact-form-info-right ul li:first-of-type a\":false},[\"font-size:25px\"]],[false,{\".contact-form-info-right ul .phone:before\":false},[\"width:30px\",\"height:30px\"]],[false,{\".contact-form-info-right ul .address:before\":false},[\"background-size:100%\",\"width:30px\",\"height:30px\"]],[false,{\".contact-form-info-right ul li:nth-of-type(2) span\":false},[\"padding-left:43px\"]],[false,{\".contact-form-info-right ul li a\":false},[\"padding-left:10px\"]],[false,{\".btm-icon-line:after\":false,\".btm-icon-line::before\":false},[\"width:95px\"]],[false,{\".contact-form-info-right ul\":false},[\"margin-bottom:30px\"]],[false,{\".choose-option ul\":false},[\"margin-bottom:0px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 18px 50px\"]],[false,{\".contact-form-info-right h3\":false},[\"margin-bottom:0px\"]],[false,{\".btm-icon-line\":false},[\"width:100%\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea\":false},[\"height:100px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:27px\"]],[false,{\".contact-form-left\":false},[\"padding:58px 0px 30px\"]],[false,{\".choose-option ul li\":false},[\"font-size:17px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:18px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".col-row ul li:nth-child(1)\":false,\".col-row ul li:nth-child(4)\":false,\".col-row ul li\":false},[\"width:50%\"]],[false,{\".custom-contact-wrapper .container-md\":false},[\"padding:0px\",\"width:100%\"]],[false,{\".contact-wrapper-banner .inner-hero-text\":false},[\"top:45%\"]],[false,{\".contact-wrapper-banner .inner-hero-text h2\":false},[\"text-align:center\"]],[false,{\".custom-contact-wrapper\":false},[\"padding:0px\",\"margin-top:-1px\",\"border-radius:0px\"]],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"border-radius:0px\",\"padding:0px\"]],[false,{\".contact-form-info-right\":false},[\"border-radius:0px\",\"padding:40px 24px 0px\",\"width:100%\"]],[false,{\".contact-wrapper-banner\":false},[\"z-index:3\"]],[false,{\".contact-form-info-right h3\":false},[\"display:none\"]],[false,{\".contact-form-info-right ul li:first-of-type\":false},[\"font-size:30px\"]],[false,{\".contact-form-info-right ul li\":false},[\"padding:20px 0px 20px 0px\"]],[false,{\".contact-form-info-right ul li:first-of-type a\":false},[\"font-size:30px\"]],[false,{\".btm-icon-line\":false},[\"display:none\"]],[false,{\".contact-form-info-right ul\":false},[\"margin-bottom:60px\"]],[false,{\".choose-option ul\":false},[\"flex-wrap:nowrap\",\"margin-bottom:0\"]],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"background-color:transparent\",\"flex-direction:column-reverse\"]],[false,{\".choose-option\":false},[\"padding-left:0\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:0px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:0\"]],[false,{\".contact-form-left\":false},[\"padding:45px 24px 0px 24px\",\"background:#fff\",\"width:86%\",\"margin:85px auto 120px auto\",\"border-radius:0px 26px 26px 26px\",\"box-shadow:0px 20px 32px 0px rgba(0,0,0,.2)\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .col-md-4\":false},[\"max-width:100%\",\"margin-bottom:15px\",\"flex:0 0 100%\"]],[false,{\".form-group .form-control\":false},[\"padding:0px 0px 5px\"]],[false,{\".form-group label\":false},[\"font-size:14px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea\":false},[\"margin-bottom:32px\",\"margin-top:0px\",\"height:90px\"]],[false,{\".form-group::placeholder\":false},[\"font-size:16px\"]],[false,{\".form-control::-webkit-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:13px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".form-control::-ms-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:13px\",\"font-weight:normal\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".form-control::placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:13px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control\":false},[\"font-size:13px\",\"padding:0px 0px 5px\"]],[false,{\".choose-option ul li\":false},[\"font-size:15px\",\"padding:14px 8px\",\"color:#152649\"]],[false,{\".choose-option ul li.tab.active a\":false},[\"font-weight:bold\",\"color:#152649\"]],[false,{\".choose-option ul li:last-child\":false},[\"padding:15px 20px\",\"line-height:1\"]],[false,{\".choose-option ul li:nth-child(2)\":false},[\"font-weight:bold\",\"margin-right:0px\",\"margin-left:0px\"]],[false,{\".contact-wrapper-banner .inner-hero-text p\":false},[\"display:none\"]],[false,{\".contact-wrapper-banner:before\":false},[\"width:20px\",\"height:20px\",\"bottom:-7px\",\"left:7%\",\"background-color:#101f42\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .calendly-inline-widget:not(#_#_#_#_#_#_#_)\":false},[\"min-width:100%\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"object-position:82% 0px\"]],[false,\"}\"],[true,\"@media (max-width: 767px){\"],[false,{\".tekteams-tabel .heading-box label\":false},[\"margin-left:0px\"]],[false,{\".tekteams-tabel .table-wrapper td.always\":false},[\"color:#28d9cb\"]],[false,{\".tekteams-tabel .table-wrapper td:last-of-type\":false},[\"color:#24c1ff\",\"font-weight:700\"]],[false,{\".tekteams-tabel .table-wrapper tr\":false},[\"display:block\",\"border-top:1px solid #c9c9c9\",\"padding:15px 0\"]],[false,{\"section.demand-sec .inner .slick-track\":false},[\"display:unset\"]],[false,{\".demand-sec .inner .colm:not(#_#_#_#_#_#_#_)\":false},[\"margin:25px 10px 25px 0\",\"padding:0\"]],[false,{\".future-vision-sec .custom-img\":false},[\"width:90%\",\"margin:auto\"]],[true,{\".footer-2022__certificates\":true},[\"margin-top:30px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:70px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\"]],[false,{\".heading-box h2\":false},[\"font-size:24px\"]],[false,{\".demand-sec .heading-box\":false},[\"padding-bottom:20px\"]],[false,{\".ecosystem-sec .inner\":false},[\"padding-bottom:0\"]],[false,{\".ecosystem-sec\":false},[\"padding:100px 0px 100px 0px\"]],[false,{\".solution-sec\":false},[\"padding:70px 0px\"]],[false,{\".tek-teams-heading h3\":false},[\"margin-bottom:15px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:15px\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"display:block\",\"flex-direction:unset\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding:25px 10px 25px 0px\",\"margin:0\"]],[false,{\".custom-grid-sec .inner .slick-list\":false},[\"padding-bottom:25px\"]],[true,{\"header .new-header__menu-item\":true},[\"top:60px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link\":true},[\"line-height:normal\",\"font-weight:600\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:16px\",\"color:#152649\"]],[true,{\"header .new-header__nav--list li\":true},[\"margin-bottom:30px\",\"margin-left:18px\"]],[true,{\"header .new-header__nav--list\":true},[\"margin-top:46px\"]],[true,{\"header .new-header__nav--list li:nth-last-child(1)\":true},[\"margin-bottom:0\"]],[true,{\"header .dropdown-menu\":true},[\"top:0px\"]],[true,{\"header .new-header__nav--menu--title\":true},[\"font-size:14px\"]],[true,{\"header .new-header__nav--title h5\":true},[\"font-size:20px\"]],[false,{\"header .new-header__nav--list>.show\":false},[\"padding-top:10px\"]],[false,{\".c-application-development .review_sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:20px\"]],[true,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".reliability-engineers\":false},[\"margin-top:126px\"]],[false,{\".development-team-sec .development-team-content .btn-blue\":false},[\"margin:0px\",\"padding:16px 0px\",\"width:185px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:150px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,\"}\"],[false,\"@media (max-width:575px){\"],[false,{\".infrastructure-sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-309px\"]],[false,{\".col-row ul li\":false,\".col-row ul li:nth-child(1)\":false,\".col-row ul li:nth-child(4)\":false},[\"width:100%\",\"padding-left:25px\"]],[false,{\".col-row ul li::after\":false},[\"width:19px\",\"height:19px\",\"background-size:100%\"]],[false,{\".kubernetes-sec .container-md\":false},[\"padding:0px 0px\"]],[false,{\".kubernetes-sec .custom-txt\":false},[\"padding:0px 24px\"]],[false,{\".devops-services .applications-col h5::before\":false},[\"width:25px\",\"height:25px\",\"background-size:100%\"]],[false,{\".infrastructure-sec .heading-box:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0px\"]],[false,\"}\"],[true,\"@media (max-width:480px){\"],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"margin:0px 0 0px 0px\",\"padding-bottom:0px\"]],[true,{\".footer-2022__certificates\":true},[\"margin-top:0\",\"margin-bottom:20px\"]],[true,{\".footer-2022__box-end a\":true},[\"font-size:14px\"]],[true,{\".footer-2022__box-end a:nth-last-child(1)\":true},[\"margin-right:0\"]],[true,{\".row.footer-2022__mobile-items\":true},[\"padding-right:0\"]],[true,{\".footer-2022__copyright\":true},[\"font-size:14px\"]],[false,{\".future-vision-sec .custom-img\":false},[\"max-width:360px\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:32px\"]],[false,{\".demand-sec\":false},[\"padding:60px 0px 40px 0px\"]],[false,{\".ecosystem-sec\":false},[\"padding:60px 0px 35px 0px\"]],[false,{\".ecosystem-sec .heading-box figure\":false},[\"top:0\",\"right:0\"]],[false,{\".ecosystem-sec .heading-box figure amp-img\":false,\".ecosystem-sec .heading-box figure amp-anim\":false},[\"width:100%\",\"height:100%\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 80px 0px\"]],[false,{\".partner-sec .colm h6\":false},[\"min-height:unset\"]],[false,{\".partner-sec .heading-box\":false},[\"padding-bottom:40px\"]],[false,{\".solution-sec\":false},[\"padding:60px 0px\"]],[false,{\".cp-tek-teams-isk h2\":false,\".tek-teams-heading h3\":false},[\"font-size:26px\"]],[false,{\".c-app-banner h2\":false},[\"font-size:32px\"]],[false,{\".c-app-banner p\":false},[\"font-size:16px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:60px 0px\"]],[true,{\".footer-2022__social-media\":true},[\"margin-top:60px\"]],[true,{\".footer-2022__social-media a\":true},[\"margin:0px 30px 0px 0px\"]],[true,{\".footer-2022__social-media a:nth-last-child(1)\":true},[\"margin-right:0\"]],[true,\"}\"],[false,\"@media (max-width:420px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:100%\",\"margin:auto\"]],[false,{\".ecosystem-sec .heading-box figure\":false},[\"margin-bottom:0\",\"top:30px\",\"width:70px\",\"height:70px\"]],[false,{\".ecosystem-sec .heading-box h2\":false},[\"width:calc(100% - 70px)\"]],[false,\"}\"],[false,{\"body .devops-styles:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-top:75px\"]],[false,\"@media (max-width:1200px){\"],[false,{\"body .devops-styles:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-top:55px\"]],[false,{\".contact-wrapper-banner:before\":false},[\"left:7%\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:1135px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-bottom:25px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(36%)\"]],[false,{\".ecosystem-sec .colm:last-of-type figure\":false},[\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"max-width:200px\",\"display:block\",\"margin:auto\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:47%\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:1035px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"transform:translateY(-50%)\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(32%)\"]],[false,{\".ecosystem-sec .colm\":false},[\"padding:15px 30px 15px 30px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"margin-bottom:15px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"padding-right:30px\",\"font-size:20px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(38%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:48%\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:898px){\"],[false,{\".ecosystem-sec .colm p\":false},[\"font-size:14px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(38%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:49%\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:16px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:15px\"]],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:18px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"width:60px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:25px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"width:130px\"]],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"width:170px\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:770px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(26%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:48%\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:14px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:15px\"]],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:16px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"width:60px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:25px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"width:120px\"]],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"width:140px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false,\".ecosystem-sec .colm\":false},[\"margin-bottom:20px\",\"padding:15px 20px\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,{\".ecosystem-sec .colm p\":false},[\"font-size:12px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"padding-bottom:25px\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:700px){\"],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"width:110px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"transform:translateY(-41%)\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(25%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:49%\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"margin-bottom:10px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:10px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false,\".ecosystem-sec .colm\":false},[\"margin-bottom:20px\",\"padding:10px 20px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"padding-top:0\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":6539,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/kubernetes.css?v=389035330\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"00ad41532091732506b79ad4852bdcbd\",\"parse_time\":0.25791120529174805,\"shake_time\":7.295608520507812e-5,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\"#gtx-trans\":false},[\"display:none\"]],[false,{\".kubernetes__banner__dark\":false},[\"background-color:#152649\",\"padding:85px 0px\"]],[false,{\".kubernetes__banner__light\":false},[\"background-color:#fff\",\"padding:120px 0px\"]],[false,{\".kubernetes__banner__grey\":false},[\"background-color:#f1f1f1\",\"padding:120px 0px\"]],[false,{\".kubernetes__banner__bottom\":false},[\"background-color:#fff\",\"padding:65px 0px\",\"box-shadow:inset 0px 11px 8px -10px rgba(0,0,0,.1),inset 0px -11px 8px -10px rgba(0,0,0,.1)\"]],[false,{\".text__light__blue\":false},[\"color:#28d9cb\"]],[false,{\".text__blue\":false},[\"color:#00c3fc\"]],[false,{\".kubernetes__section--1 .subtitle\":false},[\"font-family:Roboto\",\"font-size:16px\",\"text-transform:uppercase\",\"letter-spacing:1.6px\"]],[false,{\".kubernetes__section--1 .titlePage\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:60px\"]],[false,{\".kubernetes .redirect__page\":false},[\"color:#7080a7\",\"align-items:center\"]],[false,{\".redirect__page > h6\":false},[\"font-family:Roboto\",\"font-size:18px\",\"margin-left:10px\",\"margin-bottom:0px\",\"color:#7080a7\"]],[false,{\".iconSmall\":false},[\"width:2px\",\"height:5px\",\"margin-right:10px\"]],[false,{\".iconMedium\":false},[\"width:15px\",\"height:13px\",\"margin-right:10px\"]],[false,{\".imgIcon\":false},[\"width:24px\",\"height:24px\",\"margin-right:10px\"]],[false,{\".kubernetes .wrap__kcsp .nav__services .service__name h6\":false},[\"color:#152649\",\"margin:0\",\"font-weight:bold\",\"font-family:Raleway\"]],[false,{\".kubernetes .titleSection\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".kubernetes .titleSection__footer\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".kubernetes .section_one_content\":false,\".kubernetes .section_three_content\":false,\".kubernetes .section_four_content\":false,\".kubernetes .section_five_content\":false},[\"font-size:20px\",\"line-height:32px\"]],[false,{\".kubernetes .nav__services\":false},[\"box-shadow:rgba(0,0,0,.45) 0px 25px 20px -20px\",\"border-radius:24px\",\"background-color:#f5f5f5\",\"border:1px solid #f5f5f5\",\"padding:26.5px 35.5px\",\"margin-top:40px\"]],[false,{\".kubernetes .nav__services h6\":false},[\"margin:0\"]],[false,{\".kubernetes .nav__services .service__name\":false},[\"font-family:Raleway\",\"font-size:16px\",\"font-weight:bold\",\"color:#152649\"]],[false,{\".kubernetes .nav__services .service__name .section_five_icon_text\":false},[\"font-size:14px\",\"line-height:32px\"]],[false,{\".service__name picture\":false,\".service__name source\":false,\".service__name div > amp-img\":false,\".service__name div > amp-anim\":false},[\"display:flex\",\"width:35px\"]],[false,{\".service__name div\":false},[\"display:flex\",\"justify-content:flex-start\",\"align-items:center\"]],[false,{\".service__name div h6\":false},[\"font-weight:bold\",\"font-size:18px\",\"font-family:Raleway\",\"margin:0\"]],[false,{\".kubernetes .btn__consultation\":false},[\"background-color:#00c3fc\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\"]],[false,{\".kubernetes .btn__consultation__light__blue\":false},[\"background-color:#28d9cb\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\"]],[false,{\".kubernetes .btn__linear\":false},[\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:40px\"]],[false,{\".kubernetes .wrap__Services .service__name\":false},[\"font-family:Raleway\",\"font-size:18px\",\"font-weight:bold\",\"color:#152649\",\"line-height:32px\"]],[false,{\".service__list\":false},[\"align-items:center\",\"border-bottom:1px solid #e1e1e1\",\"max-height:70px\"]],[false,{\".kubernetes .wrap__Services .service__list:last-child .service__name\":false},[\"border-bottom:none\"]],[false,{\".kubernetes .owl-carousel .owl-item .service__name\":false},[\"font-family:Raleway\",\"font-size:18px\",\"font-weight:bold\",\"color:#152649\",\"line-height:32px\"]],[false,{\".service__name i\":false},[\"color:#26c1ff\",\"font-size:15px\",\"margin-right:3px\"]],[false,{\".kubernetes .owl-carousel .owl-item .imgIcon\":false},[\"width:24px\",\"height:24px\",\"margin-right:10px\"]],[false,{\".kubernetes .owl-theme .owl-nav\":false},[\"display:none\"]],[false,{\".kubernetes .owl-theme .owl-dots .owl-dot span\":false},[\"width:4px\",\"height:4px\",\"background-color:#d6d6d6\"]],[false,{\".kubernetes .owl-theme .owl-dots .owl-dot.active span\":false},[\"width:24px\",\"height:4px\",\"border-radius:2px\",\"background-color:#28d9cb\"]],[false,{\".kubernetes .text\":false},[\"font-family:Raleway\",\"font-size:20px\",\"font-weight:bold\",\"color:#152649\",\"line-height:32px\"]],[false,{\".absolute__button\":false},[\"position:absolute\",\"bottom:-35px\",\"left:calc(( 100vw - 246px ) \\/ 2)\"]],[false,\"@media screen and (min-width: 1440px){\"],[false,{\".containerWidth\":false},[\"max-width:1210px\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media screen and (max-width: 991px){\"],[false,{\".kubernetes__banner__grey\":false},[\"padding:80px 0px\"]],[false,{\".kubernetes__banner__light\":false},[\"padding:50px 0px 80px 0px\"]],[false,{\".kubernetes__banner__bottom\":false},[\"padding:35px 0px\"]],[false,{\".kubernetes__section--1 .titlePage\":false},[\"font-size:32px\",\"line-height:34px\"]],[false,{\".kubernetes__section--1 .subtitle\":false},[\"font-size:12px\",\"letter-spacing:1.2px\"]],[false,{\".kubernetes .redirect__page h6\":false},[\"font-size:14px\",\"line-height:17px\",\"letter-spacing:1.4px\"]],[false,{\".kubernetes .section_one_content\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".kubernetes .wrap__kcsp .nav__services .service__name h6\":false},[\"font-size:14px\",\"line-height:16px\"]],[false,{\".kubernetes .owl-carousel .item .service__name .section_two_title\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".kubernetes .section_one_content\":false,\".kubernetes .section_three_content\":false,\".kubernetes .section_four_content\":false,\".kubernetes .section_five_content\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".kubernetes .text\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".owl-carousel .service__name:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom:1px solid #e1e1e1\"]],[false,{\".kubernetes .titleSection__footer\":false},[\"font-size:20px\",\"line-height:24px\",\"padding:0px 58px\"]],[false,{\".kubernetes .btn__linear\":false},[\"font-size:20px\",\"padding:15px 28px\"]],[false,{\".absolute__button\":false},[\"position:absolute\",\"bottom:-25px\",\"left:calc(( 100vw - 150px ) \\/ 2)\"]],[false,\"}\"],[false,\"@media screen and (max-width: 1439px){\"],[false,{\".containerWidth\":false},[\"max-width:calc(100vw * .87692307692)\",\"margin:0px auto\"]],[false,{\".kubernetes .titleSection\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":9248,\"final_size\":133,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/marchine.css?v=297709549\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"176294cfc3e123d8b5077b360bfaced0\",\"parse_time\":0.40743303298950195,\"shake_time\":0.0001499652862548828,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"*\":true},[\"font-family:Raleway\"]],[true,{\":root\":true},[\"--btn_color:#0e2748\",\"--main_color:#0e2748\"]],[true,{\"a:hover\":true},[\"color:var(--main_color)\"]],[false,{\".btn-consultation\":false},[\"background-color:#00c3fc\",\"border-radius:30px\",\"padding:25px 50px\",\"color:var(--btn_color)\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\",\"z-index:3\",\"white-space:nowrap\"]],[true,{\"h1\":true,\"h2\":false,\"h3\":true,\"h4\":false,\"h5\":true,\"h6\":true},[\"font-family:Raleway\"]],[false,{\".machine_banner h1\":false},[\"font-size:60px\",\"font-weight:bold\",\"text-align:left\",\"line-height:60px\"]],[false,{\".machine_banner p\":false},[\"color:#28d9cb\",\"margin-bottom:24px\",\"font-family:Roboto\",\"font-size:16px\",\"line-height:22px\",\"text-align:left\"]],[false,{\".service_machine_new\":false},[\"background-color:#fff\"]],[false,{\".machine_future\":false},[\"margin-top:100px\"]],[false,{\".text-strong\":false},[\"font-size:50px\",\"font-weight:bold\",\"white-space:nowrap\"]],[false,{\".text-strong\":false},[\"color:#24c1ff\"]],[false,{\".machine_future h2\":false},[\"line-height:50px\"]],[false,{\".machine_future h2\":false,\".machine_future amp-img\":false,\".machine_future amp-anim\":false},[\"margin:40px 0px\",\"font-family:Raleway\",\"font-size:50px\"]],[false,{\".machine_future amp-img\":false,\".machine_future amp-anim\":false},[\"background-size:cover\"]],[false,{\".machine_future i\":false},[\"color:rgba(112,128,167,1)\",\"font-size:16px\",\"margin-right:10px\"]],[false,{\".machine_future h6\":false},[\"color:#7080a7\",\"margin-bottom:0\",\"font-family:Roboto\",\"font-size:18px\"]],[false,{\".machine_text\":false},[\"color:#707070\",\"width:90%\",\"font-size:20px\",\"line-height:32px\",\"margin-bottom:80px\"]],[false,{\".about-service\":false},[\"padding-bottom:120px\"]],[false,{\".about-service .slider-about\":false},[\"padding:0\"]],[false,{\".slider-about > div\":false},[\"height:100%\"]],[false,{\".service-machine-selection\":false},[\"display:flex\",\"justify-content:space-around\",\"background-color:#f1f1f1\",\"padding:15px 15px\",\"margin:0px\",\"border-radius:40px\"]],[false,{\".service-machine-selection > a\":false},[\"border-radius:40px\",\"padding:10px\",\"width:100%\",\"flex:1\",\"text-align:center\",\"color:#707070\",\"font-weight:bold\",\"font-size:20px\"]],[false,{\".slider-about_problems\":false,\".slider-about_solutions\":false},[\"padding:0px 50px\"]],[false,{\".slider-about_problems h3\":false},[\"font-weight:bold\",\"font-size:32px\",\"text-align:left\",\"line-height:40px\"]],[false,{\".slider-about_problems h4\":false},[\"font-size:20px\",\"color:#434343\",\"font-family:Raleway\",\"font-weight:bold\",\"line-height:32px\",\"text-align:left\"]],[false,{\".slider-about_problems p\":false},[\"font-size:18px\",\"line-height:30px\",\"line-height:40px\",\"text-align:left\"]],[false,{\".item-carousel-1:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[false,{\".item-carousel-1 amp-img\":false,\".item-carousel-1 amp-anim\":false},[\"vertical-align:top\",\"margin:0\"]],[false,{\".slider-about_problems > div:last-child\":false},[\"font-size:32px\",\"display:flex\",\"justify-content:center\",\"color:#152649\",\"font-weight:bold\"]],[false,{\".first_solution > div\":false,\".second_solution > div\":false,\".last_solution > div\":false},[\"margin-bottom:50px\"]],[false,{\".slider-about_solutions h3\":false},[\"font-weight:bold\",\"font-size:32px\",\"text-align:left\",\"line-height:40px\"]],[false,{\".slider-about_solutions amp-img\":false,\".slider-about_solutions amp-anim\":false},[\"margin:0px\",\"margin-top:5px\",\"min-width:24px\",\"height:24px\"]],[false,{\".first_solution p:first-child\":false},[\"font-weight:bold\",\"font-size:20px\",\"line-height:32px\",\"color:#434343\",\"margin-bottom:50px\"]],[false,{\".first_solution p\":false,\".second_solution p\":false,\".last_solution p\":false},[\"color:#152649\",\"font-size:1.125rem\",\"line-height:30px\",\"text-align:left\"]],[false,{\".slider-about-text-strong\":false},[\"color:#28d9cb\"]],[false,{\".difference_slice\":false},[\"padding:0px 50px\"]],[false,{\".difference_slice div:first-child\":false},[\"align-items:center\"]],[false,{\".difference_slice div:first-child h3\":false},[\"text-align:left\",\"color:#152649\",\"font-size:32px\",\"font-weight:bold\",\"line-height:40px\"]],[false,{\".difference_slice div:last-child p\":false},[\"text-align:left\",\"color:#434343\",\"font-size:18px\",\"line-height:30px\"]],[false,{\".trusted-relationships\":false},[\"background-color:#f1f1f1\",\"padding-bottom:200px\"]],[false,{\".trusted-relationships h2\":false},[\"margin-top:156px\",\"margin-bottom:80px\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".btn-relationship\":false},[\"position:absolute\",\"margin:0\",\"margin-top:-35px\",\"background-color:#00c3fc\",\"border-radius:30px\",\"padding:25px 38px\",\"color:var(--main_color)\",\"width:auto\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\",\"display:inline\",\"left:0\",\"z-index:1\"]],[false,{\".card\":false},[\"background-color:transparent\",\"border-color:transparent\"]],[false,{\".card:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:20px\"]],[false,{\".card h3\":false},[\"cursor:pointer\",\"font-size:18px\",\"font-weight:bold\"]],[false,{\".card amp-img\":false,\".card amp-anim\":false},[\"width:24px\",\"height:24px\",\"margin:0px\",\"margin-top:2px\"]],[false,{\".card i\":false},[\"color:#24c1ff\",\"font-size:medium\",\"margin-left:10px\",\"margin-top:5px\",\"display:none\"]],[false,{\"#enterprise_and_fastest_content\":false},[\"position:absolute\",\"width:100%\"]],[false,{\"#enterprise_and_fastest_content:not(#_#_#_#_#_#_#_)\":false},[\"top:-130px\"]],[false,{\"#enterprise_and_fastest_content div\":false},[\"min-height:150px\",\"border-radius:24px\",\"display:flex\",\"justify-content:center\",\"padding:48px\"]],[false,{\"#enterprise_and_fastest_content div:first-child\":false},[\"background-color:#152649\",\"color:#24c1ff\"]],[false,{\"#enterprise_and_fastest_content div:first-child p\":false},[\"color:#24c1ff\",\"text-align:center\",\"font-size:24px\",\"font-weight:bold\",\"line-height:36px\"]],[false,{\"#enterprise_and_fastest_content div:nth-child(2) h2\":false},[\"font-size:50px\",\"line-height:50px\"]],[false,{\"#enterprise_and_fastest_content div:last-child\":false},[\"background-color:#f5f5f5\",\"box-shadow:rgba(0,0,0,.45) 0px 25px 20px -20px\",\"display:flex\",\"flex-direction:column\",\"justify-content:flex-start\"]],[false,{\"#enterprise_and_fastest_content div:last-child p\":false},[\"font-style:italic\",\"color:#707070\",\"text-align:left\",\"font-size:20px\"]],[false,{\"#enterprise_and_fastest_content div:last-child p:last-child\":false},[\"margin:0\",\"font-weight:bold\",\"font-style:normal\"]],[false,{\"#enterprise_and_fastest_content div:last-child amp-img\":false,\"#enterprise_and_fastest_content div:last-child amp-anim\":false},[\"width:40px\",\"height:40px\",\"left:45px\",\"top:-20px\"]],[false,{\".business\":false},[\"box-shadow:inset 0px 11px 8px -10px rgba(0,0,0,.1),inset 0px -11px 8px -10px rgba(0,0,0,.1)\"]],[false,{\".business-content\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\",\"align-items:center\",\"padding:50px 0px\",\"position:relative\"]],[false,{\".business-content a\":false},[\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:40px\",\"float:right\"]],[false,{\".business-content h2\":false},[\"text-align:center\",\"margin-bottom:0\",\"font-family:Raleway\",\"font-weight:bold\",\"font-size:50px\",\"line-height:50px\"]],[false,\"@media screen and (max-width: 992px){\"],[false,{\".card i\":false},[\"display:block\"]],[false,{\".card > div:last-child\":false},[\"display:none\"]],[false,{\".card\":false},[\"border-top:1px solid rgba(138,138,138,.34)\",\"padding:30px 0px 15px 0px\",\"border-radius:0\"]],[false,{\".business a\":false},[\"position:absolute\",\"bottom:-40px\",\"left:0\",\"right:0\",\"margin-left:auto\",\"margin-right:auto\",\"text-align:center\",\"width:306px\"]],[false,{\".btn-relationship\":false},[\"left:50%\",\"transform:translate(-50%,0%)\",\"white-space:nowrap\"]],[false,{\".business-content\":false},[\"flex-direction:column\"]],[false,\"}\"],[false,{\".selected\":false},[\"background-color:white\",\"border:none\"]],[false,{\".selected:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--main_color)\"]],[false,{\"#container\":false},[\"position:relative\",\"overflow:hidden\",\"clear:left\",\"padding:50px 0px\"]],[false,{\".box\":false},[\"position:absolute\",\"top:0\",\"left:0\"]],[false,{\"#first\":false},[\"top:0px\",\"left:0px\",\"width:100%\",\"display:flex\"]],[false,{\"#second\":false},[\"top:0px\",\"width:100%\"]],[false,{\"#third\":false},[\"top:0px\",\"width:100%\"]],[false,{\"#slide\":false},[\"transition:transform .5s ease-in-out 0s\",\"-moz-transition:-moz-transform .5s ease-in-out 0s\",\"-webkit-transition:-webkit-transform .5s ease-in-out 0s\",\"min-height:50px\"]],[false,{\".move-to-second\":false},[\"transform:translateX(var(--tab_second))\",\"-moz-transform:translateX(var(--tab_second))\",\"-webkit-transform:translateX(var(--tab_second))\"]],[false,{\".move-to-third\":false},[\"transform:translateX(var(--tab_third))\",\"-moz-transform:translateX(var(--tab_third))\",\"-webkit-transform:translateX(var(--tab_third))\"]],[false,{\".move-to-first\":false},[\"transform:translateX(0px)\",\"-moz-transform:translateX(0px)\",\"-webkit-transform:translateX(0px)\"]],[false,{\".machine_future_title h2\":false,\".machine_future_title span\":false,\".machine_future_title p\":false},[\"font-size:50px\"]],[false,\"@media screen and (max-width: 540px){\"],[false,{\".machine_text\":false},[\"width:100%\"]],[false,{\".difference_slice\":false},[\"padding:0px 20px\"]],[false,{\".first_solution > div\":false,\".second_solution > div\":false,\".last_solution > div\":false},[\"margin-bottom:0\"]],[false,{\"#third\":false},[\"padding:20px\"]],[false,{\"#first\":false,\"#second\":false,\"#third\":false},[\"background-color:#f1f1f1\",\"border-radius:24px\",\"box-shadow:rgba(0,0,0,.45) 0px 25px 20px -20px\"]],[false,{\"#first:not(#_#_#_#_#_#_#_)\":false,\"#second:not(#_#_#_#_#_#_#_)\":false,\"#third:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".service-machine-selection > a\":false},[\"font-size:17px\"]],[false,{\"#container\":false},[\"padding-top:15px\"]],[false,{\".btn-consultation\":false},[\"padding:25px 25px\"]],[false,{\".machine_future_title h2\":false,\".machine_future_title span\":false,\".machine_future_title p\":false},[\"font-size:45px\"]],[false,\"}\"],[false,\"@media screen and (min-width: 1440px){\"],[false,{\".containerWidth\":false},[\"max-width:1232px\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media screen and (min-width: 1440px){\"],[false,{\".containerWidth\":false},[\"max-width:1220px\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media screen and (max-width: 1439px){\"],[false,{\".containerWidth\":false},[\"max-width:calc(100vw * .87692307692)\",\"margin:0px auto\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1776,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"type\":\"text\\/css\",\"href\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/slick-carousel@1.8.1\\/slick\\/slick.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"503d87b8e892b897f5d05df814fbc0c4\",\"parse_time\":0.008713960647583008,\"shake_time\":3.314018249511719e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".slick-slider\":false},[\"position:relative\",\"display:block\",\"box-sizing:border-box\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\",\"-webkit-touch-callout:none\",\"-khtml-user-select:none\",\"-ms-touch-action:pan-y\",\"touch-action:pan-y\",\"-webkit-tap-highlight-color:transparent\"]],[false,{\".slick-list\":false},[\"position:relative\",\"display:block\",\"overflow:hidden\",\"margin:0\",\"padding:0\"]],[false,{\".slick-list:focus\":false},[\"outline:none\"]],[false,{\".slick-list.dragging\":false},[\"cursor:pointer\",\"cursor:hand\"]],[false,{\".slick-slider .slick-track\":false,\".slick-slider .slick-list\":false},[\"-webkit-transform:translate3d(0,0,0)\",\"-moz-transform:translate3d(0,0,0)\",\"-ms-transform:translate3d(0,0,0)\",\"-o-transform:translate3d(0,0,0)\",\"transform:translate3d(0,0,0)\"]],[false,{\".slick-track\":false},[\"position:relative\",\"top:0\",\"left:0\",\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".slick-track:before\":false,\".slick-track:after\":false},[\"display:table\",\"content:\\\"\\\"\"]],[false,{\".slick-track:after\":false},[\"clear:both\"]],[false,{\".slick-loading .slick-track\":false},[\"visibility:hidden\"]],[false,{\".slick-slide\":false},[\"display:none\",\"float:left\",\"height:100%\",\"min-height:1px\"]],[false,{\"[dir=\'rtl\'] .slick-slide\":false},[\"float:right\"]],[false,{\".slick-slide amp-img\":false,\".slick-slide amp-anim\":false},[\"display:block\"]],[false,{\".slick-slide.slick-loading amp-img\":false,\".slick-slide.slick-loading amp-anim\":false},[\"display:none\"]],[false,{\".slick-slide.dragging amp-img\":false,\".slick-slide.dragging amp-anim\":false},[\"pointer-events:none\"]],[false,{\".slick-initialized .slick-slide\":false},[\"display:block\"]],[false,{\".slick-loading .slick-slide\":false},[\"visibility:hidden\"]],[false,{\".slick-vertical .slick-slide\":false},[\"display:block\",\"height:auto\",\"border:1px solid transparent\"]],[false,{\".slick-arrow.slick-hidden\":false},[\"display:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":100701,\"final_size\":8288,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/css\\/all.min.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"2b9f797b620fd0348167564267b11933\",\"parse_time\":2.5145909786224365,\"shake_time\":0.07993698120117188,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-v4compatibility.woff2\"],\"shaken_tokens\":[[false,{\".fa\":false},[\"font-family:var(--fa-style-family,\\\"Font Awesome 6 Free\\\")\",\"font-weight:var(--fa-style,900)\"]],[false,{\".fa\":false,\".fa-brands\":false,\".fa-duotone\":false,\".fa-light\":false,\".fa-regular\":false,\".fa-solid\":false,\".fa-thin\":false,\".fab\":false,\".fad\":false,\".fal\":false,\".far\":false,\".fas\":false,\".fat\":false},[\"-moz-osx-font-smoothing:grayscale\",\"-webkit-font-smoothing:antialiased\",\"display:var(--fa-display,inline-block)\",\"font-style:normal\",\"font-variant:normal\",\"line-height:1\",\"text-rendering:auto\"]],[false,{\".fa-1x\":false},[\"font-size:1em\"]],[false,{\".fa-2x\":false},[\"font-size:2em\"]],[false,{\".fa-3x\":false},[\"font-size:3em\"]],[false,{\".fa-4x\":false},[\"font-size:4em\"]],[false,{\".fa-5x\":false},[\"font-size:5em\"]],[false,{\".fa-6x\":false},[\"font-size:6em\"]],[false,{\".fa-7x\":false},[\"font-size:7em\"]],[false,{\".fa-8x\":false},[\"font-size:8em\"]],[false,{\".fa-9x\":false},[\"font-size:9em\"]],[false,{\".fa-10x\":false},[\"font-size:10em\"]],[false,{\".fa-2xs\":false},[\"font-size:.625em\",\"line-height:.1em\",\"vertical-align:.225em\"]],[false,{\".fa-xs\":false},[\"font-size:.75em\",\"line-height:.08333em\",\"vertical-align:.125em\"]],[false,{\".fa-sm\":false},[\"font-size:.875em\",\"line-height:.07143em\",\"vertical-align:.05357em\"]],[false,{\".fa-lg\":false},[\"font-size:1.25em\",\"line-height:.05em\",\"vertical-align:-.075em\"]],[false,{\".fa-xl\":false},[\"font-size:1.5em\",\"line-height:.04167em\",\"vertical-align:-.125em\"]],[false,{\".fa-2xl\":false},[\"font-size:2em\",\"line-height:.03125em\",\"vertical-align:-.1875em\"]],[false,{\".fa-fw\":false},[\"text-align:center\",\"width:1.25em\"]],[false,{\".fa-ul\":false},[\"list-style-type:none\",\"margin-left:var(--fa-li-margin,2.5em)\",\"padding-left:0\"]],[false,{\".fa-ul>li\":false},[\"position:relative\"]],[false,{\".fa-li\":false},[\"left:calc(var(--fa-li-width,2em) * -1)\",\"position:absolute\",\"text-align:center\",\"width:var(--fa-li-width,2em)\",\"line-height:inherit\"]],[false,{\".fa-border\":false},[\"border-radius:var(--fa-border-radius,.1em)\",\"border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee)\",\"padding:var(--fa-border-padding,.2em .25em .15em)\"]],[false,{\".fa-pull-left\":false},[\"float:left\",\"margin-right:var(--fa-pull-margin,.3em)\"]],[false,{\".fa-pull-right\":false},[\"float:right\",\"margin-left:var(--fa-pull-margin,.3em)\"]],[false,{\".fa-beat\":false},[\"-webkit-animation-name:fa-beat\",\"animation-name:fa-beat\",\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out)\",\"animation-timing-function:var(--fa-animation-timing,ease-in-out)\"]],[false,{\".fa-bounce\":false},[\"-webkit-animation-name:fa-bounce\",\"animation-name:fa-bounce\",\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))\",\"animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))\"]],[false,{\".fa-fade\":false},[\"-webkit-animation-name:fa-fade\",\"animation-name:fa-fade\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\",\"animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\"]],[false,{\".fa-beat-fade\":false,\".fa-fade\":false},[\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\"]],[false,{\".fa-beat-fade\":false},[\"-webkit-animation-name:fa-beat-fade\",\"animation-name:fa-beat-fade\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\",\"animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\"]],[false,{\".fa-flip\":false},[\"-webkit-animation-name:fa-flip\",\"animation-name:fa-flip\",\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out)\",\"animation-timing-function:var(--fa-animation-timing,ease-in-out)\"]],[false,{\".fa-shake\":false},[\"-webkit-animation-name:fa-shake\",\"animation-name:fa-shake\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,linear)\",\"animation-timing-function:var(--fa-animation-timing,linear)\"]],[false,{\".fa-shake\":false,\".fa-spin\":false},[\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\"]],[false,{\".fa-spin\":false},[\"-webkit-animation-name:fa-spin\",\"animation-name:fa-spin\",\"-webkit-animation-duration:var(--fa-animation-duration,2s)\",\"animation-duration:var(--fa-animation-duration,2s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,linear)\",\"animation-timing-function:var(--fa-animation-timing,linear)\"]],[false,{\".fa-spin-reverse\":false},[\"--fa-animation-direction:reverse\"]],[false,{\".fa-pulse\":false,\".fa-spin-pulse\":false},[\"-webkit-animation-name:fa-spin\",\"animation-name:fa-spin\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,steps(8))\",\"animation-timing-function:var(--fa-animation-timing,steps(8))\"]],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".fa-beat\":false,\".fa-beat-fade\":false,\".fa-bounce\":false,\".fa-fade\":false,\".fa-flip\":false,\".fa-pulse\":false,\".fa-shake\":false,\".fa-spin\":false,\".fa-spin-pulse\":false},[\"-webkit-animation-delay:-1ms\",\"animation-delay:-1ms\",\"-webkit-animation-duration:1ms\",\"animation-duration:1ms\",\"-webkit-animation-iteration-count:1\",\"animation-iteration-count:1\",\"transition-delay:0s\",\"transition-duration:0s\"]],[false,\"}\"],[true,\"@-webkit-keyframes fa-beat{\"],[true,\"0%,90%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}\"],[true,\"}@keyframes fa-beat{\"],[true,\"0%,90%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}\"],[true,\"}@-webkit-keyframes fa-bounce{\"],[true,\"0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}\"],[true,\"30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}\"],[true,\"50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}\"],[true,\"57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}\"],[true,\"64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"}@keyframes fa-bounce{\"],[true,\"0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}\"],[true,\"30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}\"],[true,\"50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}\"],[true,\"57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}\"],[true,\"64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"}@-webkit-keyframes fa-fade{\"],[true,\"50%{opacity:var(--fa-fade-opacity,.4)}\"],[true,\"}@keyframes fa-fade{\"],[true,\"50%{opacity:var(--fa-fade-opacity,.4)}\"],[true,\"}@-webkit-keyframes fa-beat-fade{\"],[true,\"0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}\"],[true,\"}@keyframes fa-beat-fade{\"],[true,\"0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}\"],[true,\"}@-webkit-keyframes fa-flip{\"],[true,\"50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}\"],[true,\"}@keyframes fa-flip{\"],[true,\"50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}\"],[true,\"}@-webkit-keyframes fa-shake{\"],[true,\"0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}\"],[true,\"4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}\"],[true,\"12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}\"],[true,\"16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}\"],[true,\"20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}\"],[true,\"32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}\"],[true,\"36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}\"],[true,\"40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}@keyframes fa-shake{\"],[true,\"0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}\"],[true,\"4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}\"],[true,\"12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}\"],[true,\"16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}\"],[true,\"20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}\"],[true,\"32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}\"],[true,\"36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}\"],[true,\"40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}@-webkit-keyframes fa-spin{\"],[true,\"0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}\"],[true,\"}@keyframes fa-spin{\"],[true,\"0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}\"],[true,\"}\"],[false,{\".fa-rotate-90\":false},[\"-webkit-transform:rotate(90deg)\",\"transform:rotate(90deg)\"]],[false,{\".fa-rotate-180\":false},[\"-webkit-transform:rotate(180deg)\",\"transform:rotate(180deg)\"]],[false,{\".fa-rotate-270\":false},[\"-webkit-transform:rotate(270deg)\",\"transform:rotate(270deg)\"]],[false,{\".fa-flip-horizontal\":false},[\"-webkit-transform:scaleX(-1)\",\"transform:scaleX(-1)\"]],[false,{\".fa-flip-vertical\":false},[\"-webkit-transform:scaleY(-1)\",\"transform:scaleY(-1)\"]],[false,{\".fa-flip-both\":false,\".fa-flip-horizontal.fa-flip-vertical\":false},[\"-webkit-transform:scale(-1)\",\"transform:scale(-1)\"]],[false,{\".fa-rotate-by\":false},[\"-webkit-transform:rotate(var(--fa-rotate-angle,none))\",\"transform:rotate(var(--fa-rotate-angle,none))\"]],[false,{\".fa-stack\":false},[\"display:inline-block\",\"height:2em\",\"line-height:2em\",\"position:relative\",\"vertical-align:middle\",\"width:2.5em\"]],[false,{\".fa-stack-1x\":false,\".fa-stack-2x\":false},[\"left:0\",\"position:absolute\",\"text-align:center\",\"width:100%\",\"z-index:var(--fa-stack-z-index,auto)\"]],[false,{\".fa-stack-1x\":false},[\"line-height:inherit\"]],[false,{\".fa-stack-2x\":false},[\"font-size:2em\"]],[false,{\".fa-inverse\":false},[\"color:var(--fa-inverse,#fff)\"]],[false,{\".fa-0:before\":false},[\"content:\\\"0\\\"\"]],[false,{\".fa-1:before\":false},[\"content:\\\"1\\\"\"]],[false,{\".fa-2:before\":false},[\"content:\\\"2\\\"\"]],[false,{\".fa-3:before\":false},[\"content:\\\"3\\\"\"]],[false,{\".fa-4:before\":false},[\"content:\\\"4\\\"\"]],[false,{\".fa-5:before\":false},[\"content:\\\"5\\\"\"]],[false,{\".fa-6:before\":false},[\"content:\\\"6\\\"\"]],[false,{\".fa-7:before\":false},[\"content:\\\"7\\\"\"]],[false,{\".fa-8:before\":false},[\"content:\\\"8\\\"\"]],[false,{\".fa-9:before\":false},[\"content:\\\"9\\\"\"]],[false,{\".fa-a:before\":false},[\"content:\\\"A\\\"\"]],[false,{\".fa-address-book:before\":false,\".fa-contact-book:before\":false},[\"content:\\\"\\uf2b9\\\"\"]],[false,{\".fa-address-card:before\":false,\".fa-contact-card:before\":false,\".fa-vcard:before\":false},[\"content:\\\"\\uf2bb\\\"\"]],[false,{\".fa-align-center:before\":false},[\"content:\\\"\\uf037\\\"\"]],[false,{\".fa-align-justify:before\":false},[\"content:\\\"\\uf039\\\"\"]],[false,{\".fa-align-left:before\":false},[\"content:\\\"\\uf036\\\"\"]],[false,{\".fa-align-right:before\":false},[\"content:\\\"\\uf038\\\"\"]],[false,{\".fa-anchor:before\":false},[\"content:\\\"\\uf13d\\\"\"]],[false,{\".fa-anchor-circle-check:before\":false},[\"content:\\\"\\ue4aa\\\"\"]],[false,{\".fa-anchor-circle-exclamation:before\":false},[\"content:\\\"\\ue4ab\\\"\"]],[false,{\".fa-anchor-circle-xmark:before\":false},[\"content:\\\"\\ue4ac\\\"\"]],[false,{\".fa-anchor-lock:before\":false},[\"content:\\\"\\ue4ad\\\"\"]],[false,{\".fa-angle-down:before\":false},[\"content:\\\"\\uf107\\\"\"]],[false,{\".fa-angle-left:before\":false},[\"content:\\\"\\uf104\\\"\"]],[false,{\".fa-angle-right:before\":false},[\"content:\\\"\\uf105\\\"\"]],[false,{\".fa-angle-up:before\":false},[\"content:\\\"\\uf106\\\"\"]],[false,{\".fa-angle-double-down:before\":false,\".fa-angles-down:before\":false},[\"content:\\\"\\uf103\\\"\"]],[false,{\".fa-angle-double-left:before\":false,\".fa-angles-left:before\":false},[\"content:\\\"\\uf100\\\"\"]],[false,{\".fa-angle-double-right:before\":false,\".fa-angles-right:before\":false},[\"content:\\\"\\uf101\\\"\"]],[false,{\".fa-angle-double-up:before\":false,\".fa-angles-up:before\":false},[\"content:\\\"\\uf102\\\"\"]],[false,{\".fa-ankh:before\":false},[\"content:\\\"\\uf644\\\"\"]],[false,{\".fa-apple-alt:before\":false,\".fa-apple-whole:before\":false},[\"content:\\\"\\uf5d1\\\"\"]],[false,{\".fa-archway:before\":false},[\"content:\\\"\\uf557\\\"\"]],[false,{\".fa-arrow-down:before\":false},[\"content:\\\"\\uf063\\\"\"]],[false,{\".fa-arrow-down-1-9:before\":false,\".fa-sort-numeric-asc:before\":false,\".fa-sort-numeric-down:before\":false},[\"content:\\\"\\uf162\\\"\"]],[false,{\".fa-arrow-down-9-1:before\":false,\".fa-sort-numeric-desc:before\":false,\".fa-sort-numeric-down-alt:before\":false},[\"content:\\\"\\uf886\\\"\"]],[false,{\".fa-arrow-down-a-z:before\":false,\".fa-sort-alpha-asc:before\":false,\".fa-sort-alpha-down:before\":false},[\"content:\\\"\\uf15d\\\"\"]],[false,{\".fa-arrow-down-long:before\":false,\".fa-long-arrow-down:before\":false},[\"content:\\\"\\uf175\\\"\"]],[false,{\".fa-arrow-down-short-wide:before\":false,\".fa-sort-amount-desc:before\":false,\".fa-sort-amount-down-alt:before\":false},[\"content:\\\"\\uf884\\\"\"]],[false,{\".fa-arrow-down-up-across-line:before\":false},[\"content:\\\"\\ue4af\\\"\"]],[false,{\".fa-arrow-down-up-lock:before\":false},[\"content:\\\"\\ue4b0\\\"\"]],[false,{\".fa-arrow-down-wide-short:before\":false,\".fa-sort-amount-asc:before\":false,\".fa-sort-amount-down:before\":false},[\"content:\\\"\\uf160\\\"\"]],[false,{\".fa-arrow-down-z-a:before\":false,\".fa-sort-alpha-desc:before\":false,\".fa-sort-alpha-down-alt:before\":false},[\"content:\\\"\\uf881\\\"\"]],[false,{\".fa-arrow-left:before\":false},[\"content:\\\"\\uf060\\\"\"]],[false,{\".fa-arrow-left-long:before\":false,\".fa-long-arrow-left:before\":false},[\"content:\\\"\\uf177\\\"\"]],[false,{\".fa-arrow-pointer:before\":false,\".fa-mouse-pointer:before\":false},[\"content:\\\"\\uf245\\\"\"]],[false,{\".fa-arrow-right:before\":false},[\"content:\\\"\\uf061\\\"\"]],[false,{\".fa-arrow-right-arrow-left:before\":false,\".fa-exchange:before\":false},[\"content:\\\"\\uf0ec\\\"\"]],[false,{\".fa-arrow-right-from-bracket:before\":false,\".fa-sign-out:before\":false},[\"content:\\\"\\uf08b\\\"\"]],[false,{\".fa-arrow-right-long:before\":false,\".fa-long-arrow-right:before\":false},[\"content:\\\"\\uf178\\\"\"]],[false,{\".fa-arrow-right-to-bracket:before\":false,\".fa-sign-in:before\":false},[\"content:\\\"\\uf090\\\"\"]],[false,{\".fa-arrow-right-to-city:before\":false},[\"content:\\\"\\ue4b3\\\"\"]],[false,{\".fa-arrow-left-rotate:before\":false,\".fa-arrow-rotate-back:before\":false,\".fa-arrow-rotate-backward:before\":false,\".fa-arrow-rotate-left:before\":false,\".fa-undo:before\":false},[\"content:\\\"\\uf0e2\\\"\"]],[false,{\".fa-arrow-right-rotate:before\":false,\".fa-arrow-rotate-forward:before\":false,\".fa-arrow-rotate-right:before\":false,\".fa-redo:before\":false},[\"content:\\\"\\uf01e\\\"\"]],[false,{\".fa-arrow-trend-down:before\":false},[\"content:\\\"\\ue097\\\"\"]],[false,{\".fa-arrow-trend-up:before\":false},[\"content:\\\"\\ue098\\\"\"]],[false,{\".fa-arrow-turn-down:before\":false,\".fa-level-down:before\":false},[\"content:\\\"\\uf149\\\"\"]],[false,{\".fa-arrow-turn-up:before\":false,\".fa-level-up:before\":false},[\"content:\\\"\\uf148\\\"\"]],[false,{\".fa-arrow-up:before\":false},[\"content:\\\"\\uf062\\\"\"]],[false,{\".fa-arrow-up-1-9:before\":false,\".fa-sort-numeric-up:before\":false},[\"content:\\\"\\uf163\\\"\"]],[false,{\".fa-arrow-up-9-1:before\":false,\".fa-sort-numeric-up-alt:before\":false},[\"content:\\\"\\uf887\\\"\"]],[false,{\".fa-arrow-up-a-z:before\":false,\".fa-sort-alpha-up:before\":false},[\"content:\\\"\\uf15e\\\"\"]],[false,{\".fa-arrow-up-from-bracket:before\":false},[\"content:\\\"\\ue09a\\\"\"]],[false,{\".fa-arrow-up-from-ground-water:before\":false},[\"content:\\\"\\ue4b5\\\"\"]],[false,{\".fa-arrow-up-from-water-pump:before\":false},[\"content:\\\"\\ue4b6\\\"\"]],[false,{\".fa-arrow-up-long:before\":false,\".fa-long-arrow-up:before\":false},[\"content:\\\"\\uf176\\\"\"]],[false,{\".fa-arrow-up-right-dots:before\":false},[\"content:\\\"\\ue4b7\\\"\"]],[false,{\".fa-arrow-up-right-from-square:before\":false,\".fa-external-link:before\":false},[\"content:\\\"\\uf08e\\\"\"]],[false,{\".fa-arrow-up-short-wide:before\":false,\".fa-sort-amount-up-alt:before\":false},[\"content:\\\"\\uf885\\\"\"]],[false,{\".fa-arrow-up-wide-short:before\":false,\".fa-sort-amount-up:before\":false},[\"content:\\\"\\uf161\\\"\"]],[false,{\".fa-arrow-up-z-a:before\":false,\".fa-sort-alpha-up-alt:before\":false},[\"content:\\\"\\uf882\\\"\"]],[false,{\".fa-arrows-down-to-line:before\":false},[\"content:\\\"\\ue4b8\\\"\"]],[false,{\".fa-arrows-down-to-people:before\":false},[\"content:\\\"\\ue4b9\\\"\"]],[false,{\".fa-arrows-h:before\":false,\".fa-arrows-left-right:before\":false},[\"content:\\\"\\uf07e\\\"\"]],[false,{\".fa-arrows-left-right-to-line:before\":false},[\"content:\\\"\\ue4ba\\\"\"]],[false,{\".fa-arrows-rotate:before\":false,\".fa-refresh:before\":false,\".fa-sync:before\":false},[\"content:\\\"\\uf021\\\"\"]],[false,{\".fa-arrows-spin:before\":false},[\"content:\\\"\\ue4bb\\\"\"]],[false,{\".fa-arrows-split-up-and-left:before\":false},[\"content:\\\"\\ue4bc\\\"\"]],[false,{\".fa-arrows-to-circle:before\":false},[\"content:\\\"\\ue4bd\\\"\"]],[false,{\".fa-arrows-to-dot:before\":false},[\"content:\\\"\\ue4be\\\"\"]],[false,{\".fa-arrows-to-eye:before\":false},[\"content:\\\"\\ue4bf\\\"\"]],[false,{\".fa-arrows-turn-right:before\":false},[\"content:\\\"\\ue4c0\\\"\"]],[false,{\".fa-arrows-turn-to-dots:before\":false},[\"content:\\\"\\ue4c1\\\"\"]],[false,{\".fa-arrows-up-down:before\":false,\".fa-arrows-v:before\":false},[\"content:\\\"\\uf07d\\\"\"]],[false,{\".fa-arrows-up-down-left-right:before\":false,\".fa-arrows:before\":false},[\"content:\\\"\\uf047\\\"\"]],[false,{\".fa-arrows-up-to-line:before\":false},[\"content:\\\"\\ue4c2\\\"\"]],[false,{\".fa-asterisk:before\":false},[\"content:\\\"*\\\"\"]],[false,{\".fa-at:before\":false},[\"content:\\\"@\\\"\"]],[false,{\".fa-atom:before\":false},[\"content:\\\"\\uf5d2\\\"\"]],[false,{\".fa-audio-description:before\":false},[\"content:\\\"\\uf29e\\\"\"]],[false,{\".fa-austral-sign:before\":false},[\"content:\\\"\\ue0a9\\\"\"]],[false,{\".fa-award:before\":false},[\"content:\\\"\\uf559\\\"\"]],[false,{\".fa-b:before\":false},[\"content:\\\"B\\\"\"]],[false,{\".fa-baby:before\":false},[\"content:\\\"\\uf77c\\\"\"]],[false,{\".fa-baby-carriage:before\":false,\".fa-carriage-baby:before\":false},[\"content:\\\"\\uf77d\\\"\"]],[false,{\".fa-backward:before\":false},[\"content:\\\"\\uf04a\\\"\"]],[false,{\".fa-backward-fast:before\":false,\".fa-fast-backward:before\":false},[\"content:\\\"\\uf049\\\"\"]],[false,{\".fa-backward-step:before\":false,\".fa-step-backward:before\":false},[\"content:\\\"\\uf048\\\"\"]],[false,{\".fa-bacon:before\":false},[\"content:\\\"\\uf7e5\\\"\"]],[false,{\".fa-bacteria:before\":false},[\"content:\\\"\\ue059\\\"\"]],[false,{\".fa-bacterium:before\":false},[\"content:\\\"\\ue05a\\\"\"]],[false,{\".fa-bag-shopping:before\":false,\".fa-shopping-bag:before\":false},[\"content:\\\"\\uf290\\\"\"]],[false,{\".fa-bahai:before\":false},[\"content:\\\"\\uf666\\\"\"]],[false,{\".fa-baht-sign:before\":false},[\"content:\\\"\\ue0ac\\\"\"]],[false,{\".fa-ban:before\":false,\".fa-cancel:before\":false},[\"content:\\\"\\uf05e\\\"\"]],[false,{\".fa-ban-smoking:before\":false,\".fa-smoking-ban:before\":false},[\"content:\\\"\\uf54d\\\"\"]],[false,{\".fa-band-aid:before\":false,\".fa-bandage:before\":false},[\"content:\\\"\\uf462\\\"\"]],[false,{\".fa-barcode:before\":false},[\"content:\\\"\\uf02a\\\"\"]],[false,{\".fa-bars:before\":false,\".fa-navicon:before\":false},[\"content:\\\"\\uf0c9\\\"\"]],[false,{\".fa-bars-progress:before\":false,\".fa-tasks-alt:before\":false},[\"content:\\\"\\uf828\\\"\"]],[false,{\".fa-bars-staggered:before\":false,\".fa-reorder:before\":false,\".fa-stream:before\":false},[\"content:\\\"\\uf550\\\"\"]],[false,{\".fa-baseball-ball:before\":false,\".fa-baseball:before\":false},[\"content:\\\"\\uf433\\\"\"]],[false,{\".fa-baseball-bat-ball:before\":false},[\"content:\\\"\\uf432\\\"\"]],[false,{\".fa-basket-shopping:before\":false,\".fa-shopping-basket:before\":false},[\"content:\\\"\\uf291\\\"\"]],[false,{\".fa-basketball-ball:before\":false,\".fa-basketball:before\":false},[\"content:\\\"\\uf434\\\"\"]],[false,{\".fa-bath:before\":false,\".fa-bathtub:before\":false},[\"content:\\\"\\uf2cd\\\"\"]],[false,{\".fa-battery-0:before\":false,\".fa-battery-empty:before\":false},[\"content:\\\"\\uf244\\\"\"]],[false,{\".fa-battery-5:before\":false,\".fa-battery-full:before\":false,\".fa-battery:before\":false},[\"content:\\\"\\uf240\\\"\"]],[false,{\".fa-battery-3:before\":false,\".fa-battery-half:before\":false},[\"content:\\\"\\uf242\\\"\"]],[false,{\".fa-battery-2:before\":false,\".fa-battery-quarter:before\":false},[\"content:\\\"\\uf243\\\"\"]],[false,{\".fa-battery-4:before\":false,\".fa-battery-three-quarters:before\":false},[\"content:\\\"\\uf241\\\"\"]],[false,{\".fa-bed:before\":false},[\"content:\\\"\\uf236\\\"\"]],[false,{\".fa-bed-pulse:before\":false,\".fa-procedures:before\":false},[\"content:\\\"\\uf487\\\"\"]],[false,{\".fa-beer-mug-empty:before\":false,\".fa-beer:before\":false},[\"content:\\\"\\uf0fc\\\"\"]],[false,{\".fa-bell:before\":false},[\"content:\\\"\\uf0f3\\\"\"]],[false,{\".fa-bell-concierge:before\":false,\".fa-concierge-bell:before\":false},[\"content:\\\"\\uf562\\\"\"]],[false,{\".fa-bell-slash:before\":false},[\"content:\\\"\\uf1f6\\\"\"]],[false,{\".fa-bezier-curve:before\":false},[\"content:\\\"\\uf55b\\\"\"]],[false,{\".fa-bicycle:before\":false},[\"content:\\\"\\uf206\\\"\"]],[false,{\".fa-binoculars:before\":false},[\"content:\\\"\\uf1e5\\\"\"]],[false,{\".fa-biohazard:before\":false},[\"content:\\\"\\uf780\\\"\"]],[false,{\".fa-bitcoin-sign:before\":false},[\"content:\\\"\\ue0b4\\\"\"]],[false,{\".fa-blender:before\":false},[\"content:\\\"\\uf517\\\"\"]],[false,{\".fa-blender-phone:before\":false},[\"content:\\\"\\uf6b6\\\"\"]],[false,{\".fa-blog:before\":false},[\"content:\\\"\\uf781\\\"\"]],[false,{\".fa-bold:before\":false},[\"content:\\\"\\uf032\\\"\"]],[false,{\".fa-bolt:before\":false,\".fa-zap:before\":false},[\"content:\\\"\\uf0e7\\\"\"]],[false,{\".fa-bolt-lightning:before\":false},[\"content:\\\"\\ue0b7\\\"\"]],[false,{\".fa-bomb:before\":false},[\"content:\\\"\\uf1e2\\\"\"]],[false,{\".fa-bone:before\":false},[\"content:\\\"\\uf5d7\\\"\"]],[false,{\".fa-bong:before\":false},[\"content:\\\"\\uf55c\\\"\"]],[false,{\".fa-book:before\":false},[\"content:\\\"\\uf02d\\\"\"]],[false,{\".fa-atlas:before\":false,\".fa-book-atlas:before\":false},[\"content:\\\"\\uf558\\\"\"]],[false,{\".fa-bible:before\":false,\".fa-book-bible:before\":false},[\"content:\\\"\\uf647\\\"\"]],[false,{\".fa-book-bookmark:before\":false},[\"content:\\\"\\ue0bb\\\"\"]],[false,{\".fa-book-journal-whills:before\":false,\".fa-journal-whills:before\":false},[\"content:\\\"\\uf66a\\\"\"]],[false,{\".fa-book-medical:before\":false},[\"content:\\\"\\uf7e6\\\"\"]],[false,{\".fa-book-open:before\":false},[\"content:\\\"\\uf518\\\"\"]],[false,{\".fa-book-open-reader:before\":false,\".fa-book-reader:before\":false},[\"content:\\\"\\uf5da\\\"\"]],[false,{\".fa-book-quran:before\":false,\".fa-quran:before\":false},[\"content:\\\"\\uf687\\\"\"]],[false,{\".fa-book-dead:before\":false,\".fa-book-skull:before\":false},[\"content:\\\"\\uf6b7\\\"\"]],[false,{\".fa-bookmark:before\":false},[\"content:\\\"\\uf02e\\\"\"]],[false,{\".fa-border-all:before\":false},[\"content:\\\"\\uf84c\\\"\"]],[false,{\".fa-border-none:before\":false},[\"content:\\\"\\uf850\\\"\"]],[false,{\".fa-border-style:before\":false,\".fa-border-top-left:before\":false},[\"content:\\\"\\uf853\\\"\"]],[false,{\".fa-bore-hole:before\":false},[\"content:\\\"\\ue4c3\\\"\"]],[false,{\".fa-bottle-droplet:before\":false},[\"content:\\\"\\ue4c4\\\"\"]],[false,{\".fa-bottle-water:before\":false},[\"content:\\\"\\ue4c5\\\"\"]],[false,{\".fa-bowl-food:before\":false},[\"content:\\\"\\ue4c6\\\"\"]],[false,{\".fa-bowl-rice:before\":false},[\"content:\\\"\\ue2eb\\\"\"]],[false,{\".fa-bowling-ball:before\":false},[\"content:\\\"\\uf436\\\"\"]],[false,{\".fa-box:before\":false},[\"content:\\\"\\uf466\\\"\"]],[false,{\".fa-archive:before\":false,\".fa-box-archive:before\":false},[\"content:\\\"\\uf187\\\"\"]],[false,{\".fa-box-open:before\":false},[\"content:\\\"\\uf49e\\\"\"]],[false,{\".fa-box-tissue:before\":false},[\"content:\\\"\\ue05b\\\"\"]],[false,{\".fa-boxes-packing:before\":false},[\"content:\\\"\\ue4c7\\\"\"]],[false,{\".fa-boxes-alt:before\":false,\".fa-boxes-stacked:before\":false,\".fa-boxes:before\":false},[\"content:\\\"\\uf468\\\"\"]],[false,{\".fa-braille:before\":false},[\"content:\\\"\\uf2a1\\\"\"]],[false,{\".fa-brain:before\":false},[\"content:\\\"\\uf5dc\\\"\"]],[false,{\".fa-brazilian-real-sign:before\":false},[\"content:\\\"\\ue46c\\\"\"]],[false,{\".fa-bread-slice:before\":false},[\"content:\\\"\\uf7ec\\\"\"]],[false,{\".fa-bridge:before\":false},[\"content:\\\"\\ue4c8\\\"\"]],[false,{\".fa-bridge-circle-check:before\":false},[\"content:\\\"\\ue4c9\\\"\"]],[false,{\".fa-bridge-circle-exclamation:before\":false},[\"content:\\\"\\ue4ca\\\"\"]],[false,{\".fa-bridge-circle-xmark:before\":false},[\"content:\\\"\\ue4cb\\\"\"]],[false,{\".fa-bridge-lock:before\":false},[\"content:\\\"\\ue4cc\\\"\"]],[false,{\".fa-bridge-water:before\":false},[\"content:\\\"\\ue4ce\\\"\"]],[false,{\".fa-briefcase:before\":false},[\"content:\\\"\\uf0b1\\\"\"]],[false,{\".fa-briefcase-medical:before\":false},[\"content:\\\"\\uf469\\\"\"]],[false,{\".fa-broom:before\":false},[\"content:\\\"\\uf51a\\\"\"]],[false,{\".fa-broom-ball:before\":false,\".fa-quidditch-broom-ball:before\":false,\".fa-quidditch:before\":false},[\"content:\\\"\\uf458\\\"\"]],[false,{\".fa-brush:before\":false},[\"content:\\\"\\uf55d\\\"\"]],[false,{\".fa-bucket:before\":false},[\"content:\\\"\\ue4cf\\\"\"]],[false,{\".fa-bug:before\":false},[\"content:\\\"\\uf188\\\"\"]],[false,{\".fa-bug-slash:before\":false},[\"content:\\\"\\ue490\\\"\"]],[false,{\".fa-bugs:before\":false},[\"content:\\\"\\ue4d0\\\"\"]],[false,{\".fa-building:before\":false},[\"content:\\\"\\uf1ad\\\"\"]],[false,{\".fa-building-circle-arrow-right:before\":false},[\"content:\\\"\\ue4d1\\\"\"]],[false,{\".fa-building-circle-check:before\":false},[\"content:\\\"\\ue4d2\\\"\"]],[false,{\".fa-building-circle-exclamation:before\":false},[\"content:\\\"\\ue4d3\\\"\"]],[false,{\".fa-building-circle-xmark:before\":false},[\"content:\\\"\\ue4d4\\\"\"]],[false,{\".fa-bank:before\":false,\".fa-building-columns:before\":false,\".fa-institution:before\":false,\".fa-museum:before\":false,\".fa-university:before\":false},[\"content:\\\"\\uf19c\\\"\"]],[false,{\".fa-building-flag:before\":false},[\"content:\\\"\\ue4d5\\\"\"]],[false,{\".fa-building-lock:before\":false},[\"content:\\\"\\ue4d6\\\"\"]],[false,{\".fa-building-ngo:before\":false},[\"content:\\\"\\ue4d7\\\"\"]],[false,{\".fa-building-shield:before\":false},[\"content:\\\"\\ue4d8\\\"\"]],[false,{\".fa-building-un:before\":false},[\"content:\\\"\\ue4d9\\\"\"]],[false,{\".fa-building-user:before\":false},[\"content:\\\"\\ue4da\\\"\"]],[false,{\".fa-building-wheat:before\":false},[\"content:\\\"\\ue4db\\\"\"]],[false,{\".fa-bullhorn:before\":false},[\"content:\\\"\\uf0a1\\\"\"]],[false,{\".fa-bullseye:before\":false},[\"content:\\\"\\uf140\\\"\"]],[false,{\".fa-burger:before\":false,\".fa-hamburger:before\":false},[\"content:\\\"\\uf805\\\"\"]],[false,{\".fa-burst:before\":false},[\"content:\\\"\\ue4dc\\\"\"]],[false,{\".fa-bus:before\":false},[\"content:\\\"\\uf207\\\"\"]],[false,{\".fa-bus-alt:before\":false,\".fa-bus-simple:before\":false},[\"content:\\\"\\uf55e\\\"\"]],[false,{\".fa-briefcase-clock:before\":false,\".fa-business-time:before\":false},[\"content:\\\"\\uf64a\\\"\"]],[false,{\".fa-c:before\":false},[\"content:\\\"C\\\"\"]],[false,{\".fa-birthday-cake:before\":false,\".fa-cake-candles:before\":false,\".fa-cake:before\":false},[\"content:\\\"\\uf1fd\\\"\"]],[false,{\".fa-calculator:before\":false},[\"content:\\\"\\uf1ec\\\"\"]],[false,{\".fa-calendar:before\":false},[\"content:\\\"\\uf133\\\"\"]],[false,{\".fa-calendar-check:before\":false},[\"content:\\\"\\uf274\\\"\"]],[false,{\".fa-calendar-day:before\":false},[\"content:\\\"\\uf783\\\"\"]],[false,{\".fa-calendar-alt:before\":false,\".fa-calendar-days:before\":false},[\"content:\\\"\\uf073\\\"\"]],[false,{\".fa-calendar-minus:before\":false},[\"content:\\\"\\uf272\\\"\"]],[false,{\".fa-calendar-plus:before\":false},[\"content:\\\"\\uf271\\\"\"]],[false,{\".fa-calendar-week:before\":false},[\"content:\\\"\\uf784\\\"\"]],[false,{\".fa-calendar-times:before\":false,\".fa-calendar-xmark:before\":false},[\"content:\\\"\\uf273\\\"\"]],[false,{\".fa-camera-alt:before\":false,\".fa-camera:before\":false},[\"content:\\\"\\uf030\\\"\"]],[false,{\".fa-camera-retro:before\":false},[\"content:\\\"\\uf083\\\"\"]],[false,{\".fa-camera-rotate:before\":false},[\"content:\\\"\\ue0d8\\\"\"]],[false,{\".fa-campground:before\":false},[\"content:\\\"\\uf6bb\\\"\"]],[false,{\".fa-candy-cane:before\":false},[\"content:\\\"\\uf786\\\"\"]],[false,{\".fa-cannabis:before\":false},[\"content:\\\"\\uf55f\\\"\"]],[false,{\".fa-capsules:before\":false},[\"content:\\\"\\uf46b\\\"\"]],[false,{\".fa-automobile:before\":false,\".fa-car:before\":false},[\"content:\\\"\\uf1b9\\\"\"]],[false,{\".fa-battery-car:before\":false,\".fa-car-battery:before\":false},[\"content:\\\"\\uf5df\\\"\"]],[false,{\".fa-car-burst:before\":false,\".fa-car-crash:before\":false},[\"content:\\\"\\uf5e1\\\"\"]],[false,{\".fa-car-on:before\":false},[\"content:\\\"\\ue4dd\\\"\"]],[false,{\".fa-car-alt:before\":false,\".fa-car-rear:before\":false},[\"content:\\\"\\uf5de\\\"\"]],[false,{\".fa-car-side:before\":false},[\"content:\\\"\\uf5e4\\\"\"]],[false,{\".fa-car-tunnel:before\":false},[\"content:\\\"\\ue4de\\\"\"]],[false,{\".fa-caravan:before\":false},[\"content:\\\"\\uf8ff\\\"\"]],[false,{\".fa-caret-down:before\":false},[\"content:\\\"\\uf0d7\\\"\"]],[false,{\".fa-caret-left:before\":false},[\"content:\\\"\\uf0d9\\\"\"]],[false,{\".fa-caret-right:before\":false},[\"content:\\\"\\uf0da\\\"\"]],[false,{\".fa-caret-up:before\":false},[\"content:\\\"\\uf0d8\\\"\"]],[false,{\".fa-carrot:before\":false},[\"content:\\\"\\uf787\\\"\"]],[false,{\".fa-cart-arrow-down:before\":false},[\"content:\\\"\\uf218\\\"\"]],[false,{\".fa-cart-flatbed:before\":false,\".fa-dolly-flatbed:before\":false},[\"content:\\\"\\uf474\\\"\"]],[false,{\".fa-cart-flatbed-suitcase:before\":false,\".fa-luggage-cart:before\":false},[\"content:\\\"\\uf59d\\\"\"]],[false,{\".fa-cart-plus:before\":false},[\"content:\\\"\\uf217\\\"\"]],[false,{\".fa-cart-shopping:before\":false,\".fa-shopping-cart:before\":false},[\"content:\\\"\\uf07a\\\"\"]],[false,{\".fa-cash-register:before\":false},[\"content:\\\"\\uf788\\\"\"]],[false,{\".fa-cat:before\":false},[\"content:\\\"\\uf6be\\\"\"]],[false,{\".fa-cedi-sign:before\":false},[\"content:\\\"\\ue0df\\\"\"]],[false,{\".fa-cent-sign:before\":false},[\"content:\\\"\\ue3f5\\\"\"]],[false,{\".fa-certificate:before\":false},[\"content:\\\"\\uf0a3\\\"\"]],[false,{\".fa-chair:before\":false},[\"content:\\\"\\uf6c0\\\"\"]],[false,{\".fa-blackboard:before\":false,\".fa-chalkboard:before\":false},[\"content:\\\"\\uf51b\\\"\"]],[false,{\".fa-chalkboard-teacher:before\":false,\".fa-chalkboard-user:before\":false},[\"content:\\\"\\uf51c\\\"\"]],[false,{\".fa-champagne-glasses:before\":false,\".fa-glass-cheers:before\":false},[\"content:\\\"\\uf79f\\\"\"]],[false,{\".fa-charging-station:before\":false},[\"content:\\\"\\uf5e7\\\"\"]],[false,{\".fa-area-chart:before\":false,\".fa-chart-area:before\":false},[\"content:\\\"\\uf1fe\\\"\"]],[false,{\".fa-bar-chart:before\":false,\".fa-chart-bar:before\":false},[\"content:\\\"\\uf080\\\"\"]],[false,{\".fa-chart-column:before\":false},[\"content:\\\"\\ue0e3\\\"\"]],[false,{\".fa-chart-gantt:before\":false},[\"content:\\\"\\ue0e4\\\"\"]],[false,{\".fa-chart-line:before\":false,\".fa-line-chart:before\":false},[\"content:\\\"\\uf201\\\"\"]],[false,{\".fa-chart-pie:before\":false,\".fa-pie-chart:before\":false},[\"content:\\\"\\uf200\\\"\"]],[false,{\".fa-chart-simple:before\":false},[\"content:\\\"\\ue473\\\"\"]],[false,{\".fa-check:before\":false},[\"content:\\\"\\uf00c\\\"\"]],[false,{\".fa-check-double:before\":false},[\"content:\\\"\\uf560\\\"\"]],[false,{\".fa-check-to-slot:before\":false,\".fa-vote-yea:before\":false},[\"content:\\\"\\uf772\\\"\"]],[false,{\".fa-cheese:before\":false},[\"content:\\\"\\uf7ef\\\"\"]],[false,{\".fa-chess:before\":false},[\"content:\\\"\\uf439\\\"\"]],[false,{\".fa-chess-bishop:before\":false},[\"content:\\\"\\uf43a\\\"\"]],[false,{\".fa-chess-board:before\":false},[\"content:\\\"\\uf43c\\\"\"]],[false,{\".fa-chess-king:before\":false},[\"content:\\\"\\uf43f\\\"\"]],[false,{\".fa-chess-knight:before\":false},[\"content:\\\"\\uf441\\\"\"]],[false,{\".fa-chess-pawn:before\":false},[\"content:\\\"\\uf443\\\"\"]],[false,{\".fa-chess-queen:before\":false},[\"content:\\\"\\uf445\\\"\"]],[false,{\".fa-chess-rook:before\":false},[\"content:\\\"\\uf447\\\"\"]],[false,{\".fa-chevron-down:before\":false},[\"content:\\\"\\uf078\\\"\"]],[false,{\".fa-chevron-left:before\":false},[\"content:\\\"\\uf053\\\"\"]],[false,{\".fa-chevron-right:before\":false},[\"content:\\\"\\uf054\\\"\"]],[false,{\".fa-chevron-up:before\":false},[\"content:\\\"\\uf077\\\"\"]],[false,{\".fa-child:before\":false},[\"content:\\\"\\uf1ae\\\"\"]],[false,{\".fa-child-rifle:before\":false},[\"content:\\\"\\ue4e0\\\"\"]],[false,{\".fa-children:before\":false},[\"content:\\\"\\ue4e1\\\"\"]],[false,{\".fa-church:before\":false},[\"content:\\\"\\uf51d\\\"\"]],[false,{\".fa-circle:before\":false},[\"content:\\\"\\uf111\\\"\"]],[false,{\".fa-arrow-circle-down:before\":false,\".fa-circle-arrow-down:before\":false},[\"content:\\\"\\uf0ab\\\"\"]],[false,{\".fa-arrow-circle-left:before\":false,\".fa-circle-arrow-left:before\":false},[\"content:\\\"\\uf0a8\\\"\"]],[false,{\".fa-arrow-circle-right:before\":false,\".fa-circle-arrow-right:before\":false},[\"content:\\\"\\uf0a9\\\"\"]],[false,{\".fa-arrow-circle-up:before\":false,\".fa-circle-arrow-up:before\":false},[\"content:\\\"\\uf0aa\\\"\"]],[false,{\".fa-check-circle:before\":false,\".fa-circle-check:before\":false},[\"content:\\\"\\uf058\\\"\"]],[false,{\".fa-chevron-circle-down:before\":false,\".fa-circle-chevron-down:before\":false},[\"content:\\\"\\uf13a\\\"\"]],[false,{\".fa-chevron-circle-left:before\":false,\".fa-circle-chevron-left:before\":false},[\"content:\\\"\\uf137\\\"\"]],[false,{\".fa-chevron-circle-right:before\":false,\".fa-circle-chevron-right:before\":false},[\"content:\\\"\\uf138\\\"\"]],[false,{\".fa-chevron-circle-up:before\":false,\".fa-circle-chevron-up:before\":false},[\"content:\\\"\\uf139\\\"\"]],[false,{\".fa-circle-dollar-to-slot:before\":false,\".fa-donate:before\":false},[\"content:\\\"\\uf4b9\\\"\"]],[false,{\".fa-circle-dot:before\":false,\".fa-dot-circle:before\":false},[\"content:\\\"\\uf192\\\"\"]],[false,{\".fa-arrow-alt-circle-down:before\":false,\".fa-circle-down:before\":false},[\"content:\\\"\\uf358\\\"\"]],[false,{\".fa-circle-exclamation:before\":false,\".fa-exclamation-circle:before\":false},[\"content:\\\"\\uf06a\\\"\"]],[false,{\".fa-circle-h:before\":false,\".fa-hospital-symbol:before\":false},[\"content:\\\"\\uf47e\\\"\"]],[false,{\".fa-adjust:before\":false,\".fa-circle-half-stroke:before\":false},[\"content:\\\"\\uf042\\\"\"]],[false,{\".fa-circle-info:before\":false,\".fa-info-circle:before\":false},[\"content:\\\"\\uf05a\\\"\"]],[false,{\".fa-arrow-alt-circle-left:before\":false,\".fa-circle-left:before\":false},[\"content:\\\"\\uf359\\\"\"]],[false,{\".fa-circle-minus:before\":false,\".fa-minus-circle:before\":false},[\"content:\\\"\\uf056\\\"\"]],[false,{\".fa-circle-nodes:before\":false},[\"content:\\\"\\ue4e2\\\"\"]],[false,{\".fa-circle-notch:before\":false},[\"content:\\\"\\uf1ce\\\"\"]],[false,{\".fa-circle-pause:before\":false,\".fa-pause-circle:before\":false},[\"content:\\\"\\uf28b\\\"\"]],[false,{\".fa-circle-play:before\":false,\".fa-play-circle:before\":false},[\"content:\\\"\\uf144\\\"\"]],[false,{\".fa-circle-plus:before\":false,\".fa-plus-circle:before\":false},[\"content:\\\"\\uf055\\\"\"]],[false,{\".fa-circle-question:before\":false,\".fa-question-circle:before\":false},[\"content:\\\"\\uf059\\\"\"]],[false,{\".fa-circle-radiation:before\":false,\".fa-radiation-alt:before\":false},[\"content:\\\"\\uf7ba\\\"\"]],[false,{\".fa-arrow-alt-circle-right:before\":false,\".fa-circle-right:before\":false},[\"content:\\\"\\uf35a\\\"\"]],[false,{\".fa-circle-stop:before\":false,\".fa-stop-circle:before\":false},[\"content:\\\"\\uf28d\\\"\"]],[false,{\".fa-arrow-alt-circle-up:before\":false,\".fa-circle-up:before\":false},[\"content:\\\"\\uf35b\\\"\"]],[false,{\".fa-circle-user:before\":false,\".fa-user-circle:before\":false},[\"content:\\\"\\uf2bd\\\"\"]],[false,{\".fa-circle-xmark:before\":false,\".fa-times-circle:before\":false,\".fa-xmark-circle:before\":false},[\"content:\\\"\\uf057\\\"\"]],[false,{\".fa-city:before\":false},[\"content:\\\"\\uf64f\\\"\"]],[false,{\".fa-clapperboard:before\":false},[\"content:\\\"\\ue131\\\"\"]],[false,{\".fa-clipboard:before\":false},[\"content:\\\"\\uf328\\\"\"]],[false,{\".fa-clipboard-check:before\":false},[\"content:\\\"\\uf46c\\\"\"]],[false,{\".fa-clipboard-list:before\":false},[\"content:\\\"\\uf46d\\\"\"]],[false,{\".fa-clipboard-question:before\":false},[\"content:\\\"\\ue4e3\\\"\"]],[false,{\".fa-clipboard-user:before\":false},[\"content:\\\"\\uf7f3\\\"\"]],[false,{\".fa-clock-four:before\":false,\".fa-clock:before\":false},[\"content:\\\"\\uf017\\\"\"]],[false,{\".fa-clock-rotate-left:before\":false,\".fa-history:before\":false},[\"content:\\\"\\uf1da\\\"\"]],[false,{\".fa-clone:before\":false},[\"content:\\\"\\uf24d\\\"\"]],[false,{\".fa-closed-captioning:before\":false},[\"content:\\\"\\uf20a\\\"\"]],[false,{\".fa-cloud:before\":false},[\"content:\\\"\\uf0c2\\\"\"]],[false,{\".fa-cloud-arrow-down:before\":false,\".fa-cloud-download-alt:before\":false,\".fa-cloud-download:before\":false},[\"content:\\\"\\uf0ed\\\"\"]],[false,{\".fa-cloud-arrow-up:before\":false,\".fa-cloud-upload-alt:before\":false,\".fa-cloud-upload:before\":false},[\"content:\\\"\\uf0ee\\\"\"]],[false,{\".fa-cloud-bolt:before\":false,\".fa-thunderstorm:before\":false},[\"content:\\\"\\uf76c\\\"\"]],[false,{\".fa-cloud-meatball:before\":false},[\"content:\\\"\\uf73b\\\"\"]],[false,{\".fa-cloud-moon:before\":false},[\"content:\\\"\\uf6c3\\\"\"]],[false,{\".fa-cloud-moon-rain:before\":false},[\"content:\\\"\\uf73c\\\"\"]],[false,{\".fa-cloud-rain:before\":false},[\"content:\\\"\\uf73d\\\"\"]],[false,{\".fa-cloud-showers-heavy:before\":false},[\"content:\\\"\\uf740\\\"\"]],[false,{\".fa-cloud-showers-water:before\":false},[\"content:\\\"\\ue4e4\\\"\"]],[false,{\".fa-cloud-sun:before\":false},[\"content:\\\"\\uf6c4\\\"\"]],[false,{\".fa-cloud-sun-rain:before\":false},[\"content:\\\"\\uf743\\\"\"]],[false,{\".fa-clover:before\":false},[\"content:\\\"\\ue139\\\"\"]],[false,{\".fa-code:before\":false},[\"content:\\\"\\uf121\\\"\"]],[false,{\".fa-code-branch:before\":false},[\"content:\\\"\\uf126\\\"\"]],[false,{\".fa-code-commit:before\":false},[\"content:\\\"\\uf386\\\"\"]],[false,{\".fa-code-compare:before\":false},[\"content:\\\"\\ue13a\\\"\"]],[false,{\".fa-code-fork:before\":false},[\"content:\\\"\\ue13b\\\"\"]],[false,{\".fa-code-merge:before\":false},[\"content:\\\"\\uf387\\\"\"]],[false,{\".fa-code-pull-request:before\":false},[\"content:\\\"\\ue13c\\\"\"]],[false,{\".fa-coins:before\":false},[\"content:\\\"\\uf51e\\\"\"]],[false,{\".fa-colon-sign:before\":false},[\"content:\\\"\\ue140\\\"\"]],[false,{\".fa-comment:before\":false},[\"content:\\\"\\uf075\\\"\"]],[false,{\".fa-comment-dollar:before\":false},[\"content:\\\"\\uf651\\\"\"]],[false,{\".fa-comment-dots:before\":false,\".fa-commenting:before\":false},[\"content:\\\"\\uf4ad\\\"\"]],[false,{\".fa-comment-medical:before\":false},[\"content:\\\"\\uf7f5\\\"\"]],[false,{\".fa-comment-slash:before\":false},[\"content:\\\"\\uf4b3\\\"\"]],[false,{\".fa-comment-sms:before\":false,\".fa-sms:before\":false},[\"content:\\\"\\uf7cd\\\"\"]],[false,{\".fa-comments:before\":false},[\"content:\\\"\\uf086\\\"\"]],[false,{\".fa-comments-dollar:before\":false},[\"content:\\\"\\uf653\\\"\"]],[false,{\".fa-compact-disc:before\":false},[\"content:\\\"\\uf51f\\\"\"]],[false,{\".fa-compass:before\":false},[\"content:\\\"\\uf14e\\\"\"]],[false,{\".fa-compass-drafting:before\":false,\".fa-drafting-compass:before\":false},[\"content:\\\"\\uf568\\\"\"]],[false,{\".fa-compress:before\":false},[\"content:\\\"\\uf066\\\"\"]],[false,{\".fa-computer:before\":false},[\"content:\\\"\\ue4e5\\\"\"]],[false,{\".fa-computer-mouse:before\":false,\".fa-mouse:before\":false},[\"content:\\\"\\uf8cc\\\"\"]],[false,{\".fa-cookie:before\":false},[\"content:\\\"\\uf563\\\"\"]],[false,{\".fa-cookie-bite:before\":false},[\"content:\\\"\\uf564\\\"\"]],[false,{\".fa-copy:before\":false},[\"content:\\\"\\uf0c5\\\"\"]],[false,{\".fa-copyright:before\":false},[\"content:\\\"\\uf1f9\\\"\"]],[false,{\".fa-couch:before\":false},[\"content:\\\"\\uf4b8\\\"\"]],[false,{\".fa-cow:before\":false},[\"content:\\\"\\uf6c8\\\"\"]],[false,{\".fa-credit-card-alt:before\":false,\".fa-credit-card:before\":false},[\"content:\\\"\\uf09d\\\"\"]],[false,{\".fa-crop:before\":false},[\"content:\\\"\\uf125\\\"\"]],[false,{\".fa-crop-alt:before\":false,\".fa-crop-simple:before\":false},[\"content:\\\"\\uf565\\\"\"]],[false,{\".fa-cross:before\":false},[\"content:\\\"\\uf654\\\"\"]],[false,{\".fa-crosshairs:before\":false},[\"content:\\\"\\uf05b\\\"\"]],[false,{\".fa-crow:before\":false},[\"content:\\\"\\uf520\\\"\"]],[false,{\".fa-crown:before\":false},[\"content:\\\"\\uf521\\\"\"]],[false,{\".fa-crutch:before\":false},[\"content:\\\"\\uf7f7\\\"\"]],[false,{\".fa-cruzeiro-sign:before\":false},[\"content:\\\"\\ue152\\\"\"]],[false,{\".fa-cube:before\":false},[\"content:\\\"\\uf1b2\\\"\"]],[false,{\".fa-cubes:before\":false},[\"content:\\\"\\uf1b3\\\"\"]],[false,{\".fa-cubes-stacked:before\":false},[\"content:\\\"\\ue4e6\\\"\"]],[false,{\".fa-d:before\":false},[\"content:\\\"D\\\"\"]],[false,{\".fa-database:before\":false},[\"content:\\\"\\uf1c0\\\"\"]],[false,{\".fa-backspace:before\":false,\".fa-delete-left:before\":false},[\"content:\\\"\\uf55a\\\"\"]],[false,{\".fa-democrat:before\":false},[\"content:\\\"\\uf747\\\"\"]],[false,{\".fa-desktop-alt:before\":false,\".fa-desktop:before\":false},[\"content:\\\"\\uf390\\\"\"]],[false,{\".fa-dharmachakra:before\":false},[\"content:\\\"\\uf655\\\"\"]],[false,{\".fa-diagram-next:before\":false},[\"content:\\\"\\ue476\\\"\"]],[false,{\".fa-diagram-predecessor:before\":false},[\"content:\\\"\\ue477\\\"\"]],[false,{\".fa-diagram-project:before\":false,\".fa-project-diagram:before\":false},[\"content:\\\"\\uf542\\\"\"]],[false,{\".fa-diagram-successor:before\":false},[\"content:\\\"\\ue47a\\\"\"]],[false,{\".fa-diamond:before\":false},[\"content:\\\"\\uf219\\\"\"]],[false,{\".fa-diamond-turn-right:before\":false,\".fa-directions:before\":false},[\"content:\\\"\\uf5eb\\\"\"]],[false,{\".fa-dice:before\":false},[\"content:\\\"\\uf522\\\"\"]],[false,{\".fa-dice-d20:before\":false},[\"content:\\\"\\uf6cf\\\"\"]],[false,{\".fa-dice-d6:before\":false},[\"content:\\\"\\uf6d1\\\"\"]],[false,{\".fa-dice-five:before\":false},[\"content:\\\"\\uf523\\\"\"]],[false,{\".fa-dice-four:before\":false},[\"content:\\\"\\uf524\\\"\"]],[false,{\".fa-dice-one:before\":false},[\"content:\\\"\\uf525\\\"\"]],[false,{\".fa-dice-six:before\":false},[\"content:\\\"\\uf526\\\"\"]],[false,{\".fa-dice-three:before\":false},[\"content:\\\"\\uf527\\\"\"]],[false,{\".fa-dice-two:before\":false},[\"content:\\\"\\uf528\\\"\"]],[false,{\".fa-disease:before\":false},[\"content:\\\"\\uf7fa\\\"\"]],[false,{\".fa-display:before\":false},[\"content:\\\"\\ue163\\\"\"]],[false,{\".fa-divide:before\":false},[\"content:\\\"\\uf529\\\"\"]],[false,{\".fa-dna:before\":false},[\"content:\\\"\\uf471\\\"\"]],[false,{\".fa-dog:before\":false},[\"content:\\\"\\uf6d3\\\"\"]],[false,{\".fa-dollar-sign:before\":false,\".fa-dollar:before\":false,\".fa-usd:before\":false},[\"content:\\\"$\\\"\"]],[false,{\".fa-dolly-box:before\":false,\".fa-dolly:before\":false},[\"content:\\\"\\uf472\\\"\"]],[false,{\".fa-dong-sign:before\":false},[\"content:\\\"\\ue169\\\"\"]],[false,{\".fa-door-closed:before\":false},[\"content:\\\"\\uf52a\\\"\"]],[false,{\".fa-door-open:before\":false},[\"content:\\\"\\uf52b\\\"\"]],[false,{\".fa-dove:before\":false},[\"content:\\\"\\uf4ba\\\"\"]],[false,{\".fa-compress-alt:before\":false,\".fa-down-left-and-up-right-to-center:before\":false},[\"content:\\\"\\uf422\\\"\"]],[false,{\".fa-down-long:before\":false,\".fa-long-arrow-alt-down:before\":false},[\"content:\\\"\\uf309\\\"\"]],[false,{\".fa-download:before\":false},[\"content:\\\"\\uf019\\\"\"]],[false,{\".fa-dragon:before\":false},[\"content:\\\"\\uf6d5\\\"\"]],[false,{\".fa-draw-polygon:before\":false},[\"content:\\\"\\uf5ee\\\"\"]],[false,{\".fa-droplet:before\":false,\".fa-tint:before\":false},[\"content:\\\"\\uf043\\\"\"]],[false,{\".fa-droplet-slash:before\":false,\".fa-tint-slash:before\":false},[\"content:\\\"\\uf5c7\\\"\"]],[false,{\".fa-drum:before\":false},[\"content:\\\"\\uf569\\\"\"]],[false,{\".fa-drum-steelpan:before\":false},[\"content:\\\"\\uf56a\\\"\"]],[false,{\".fa-drumstick-bite:before\":false},[\"content:\\\"\\uf6d7\\\"\"]],[false,{\".fa-dumbbell:before\":false},[\"content:\\\"\\uf44b\\\"\"]],[false,{\".fa-dumpster:before\":false},[\"content:\\\"\\uf793\\\"\"]],[false,{\".fa-dumpster-fire:before\":false},[\"content:\\\"\\uf794\\\"\"]],[false,{\".fa-dungeon:before\":false},[\"content:\\\"\\uf6d9\\\"\"]],[false,{\".fa-e:before\":false},[\"content:\\\"E\\\"\"]],[false,{\".fa-deaf:before\":false,\".fa-deafness:before\":false,\".fa-ear-deaf:before\":false,\".fa-hard-of-hearing:before\":false},[\"content:\\\"\\uf2a4\\\"\"]],[false,{\".fa-assistive-listening-systems:before\":false,\".fa-ear-listen:before\":false},[\"content:\\\"\\uf2a2\\\"\"]],[false,{\".fa-earth-africa:before\":false,\".fa-globe-africa:before\":false},[\"content:\\\"\\uf57c\\\"\"]],[false,{\".fa-earth-america:before\":false,\".fa-earth-americas:before\":false,\".fa-earth:before\":false,\".fa-globe-americas:before\":false},[\"content:\\\"\\uf57d\\\"\"]],[false,{\".fa-earth-asia:before\":false,\".fa-globe-asia:before\":false},[\"content:\\\"\\uf57e\\\"\"]],[false,{\".fa-earth-europe:before\":false,\".fa-globe-europe:before\":false},[\"content:\\\"\\uf7a2\\\"\"]],[false,{\".fa-earth-oceania:before\":false,\".fa-globe-oceania:before\":false},[\"content:\\\"\\ue47b\\\"\"]],[false,{\".fa-egg:before\":false},[\"content:\\\"\\uf7fb\\\"\"]],[false,{\".fa-eject:before\":false},[\"content:\\\"\\uf052\\\"\"]],[false,{\".fa-elevator:before\":false},[\"content:\\\"\\ue16d\\\"\"]],[false,{\".fa-ellipsis-h:before\":false,\".fa-ellipsis:before\":false},[\"content:\\\"\\uf141\\\"\"]],[false,{\".fa-ellipsis-v:before\":false,\".fa-ellipsis-vertical:before\":false},[\"content:\\\"\\uf142\\\"\"]],[false,{\".fa-envelope:before\":false},[\"content:\\\"\\uf0e0\\\"\"]],[false,{\".fa-envelope-circle-check:before\":false},[\"content:\\\"\\ue4e8\\\"\"]],[false,{\".fa-envelope-open:before\":false},[\"content:\\\"\\uf2b6\\\"\"]],[false,{\".fa-envelope-open-text:before\":false},[\"content:\\\"\\uf658\\\"\"]],[false,{\".fa-envelopes-bulk:before\":false,\".fa-mail-bulk:before\":false},[\"content:\\\"\\uf674\\\"\"]],[false,{\".fa-equals:before\":false},[\"content:\\\"=\\\"\"]],[false,{\".fa-eraser:before\":false},[\"content:\\\"\\uf12d\\\"\"]],[false,{\".fa-ethernet:before\":false},[\"content:\\\"\\uf796\\\"\"]],[false,{\".fa-eur:before\":false,\".fa-euro-sign:before\":false,\".fa-euro:before\":false},[\"content:\\\"\\uf153\\\"\"]],[false,{\".fa-exclamation:before\":false},[\"content:\\\"!\\\"\"]],[false,{\".fa-expand:before\":false},[\"content:\\\"\\uf065\\\"\"]],[false,{\".fa-explosion:before\":false},[\"content:\\\"\\ue4e9\\\"\"]],[false,{\".fa-eye:before\":false},[\"content:\\\"\\uf06e\\\"\"]],[false,{\".fa-eye-dropper-empty:before\":false,\".fa-eye-dropper:before\":false,\".fa-eyedropper:before\":false},[\"content:\\\"\\uf1fb\\\"\"]],[false,{\".fa-eye-low-vision:before\":false,\".fa-low-vision:before\":false},[\"content:\\\"\\uf2a8\\\"\"]],[false,{\".fa-eye-slash:before\":false},[\"content:\\\"\\uf070\\\"\"]],[false,{\".fa-f:before\":false},[\"content:\\\"F\\\"\"]],[false,{\".fa-angry:before\":false,\".fa-face-angry:before\":false},[\"content:\\\"\\uf556\\\"\"]],[false,{\".fa-dizzy:before\":false,\".fa-face-dizzy:before\":false},[\"content:\\\"\\uf567\\\"\"]],[false,{\".fa-face-flushed:before\":false,\".fa-flushed:before\":false},[\"content:\\\"\\uf579\\\"\"]],[false,{\".fa-face-frown:before\":false,\".fa-frown:before\":false},[\"content:\\\"\\uf119\\\"\"]],[false,{\".fa-face-frown-open:before\":false,\".fa-frown-open:before\":false},[\"content:\\\"\\uf57a\\\"\"]],[false,{\".fa-face-grimace:before\":false,\".fa-grimace:before\":false},[\"content:\\\"\\uf57f\\\"\"]],[false,{\".fa-face-grin:before\":false,\".fa-grin:before\":false},[\"content:\\\"\\uf580\\\"\"]],[false,{\".fa-face-grin-beam:before\":false,\".fa-grin-beam:before\":false},[\"content:\\\"\\uf582\\\"\"]],[false,{\".fa-face-grin-beam-sweat:before\":false,\".fa-grin-beam-sweat:before\":false},[\"content:\\\"\\uf583\\\"\"]],[false,{\".fa-face-grin-hearts:before\":false,\".fa-grin-hearts:before\":false},[\"content:\\\"\\uf584\\\"\"]],[false,{\".fa-face-grin-squint:before\":false,\".fa-grin-squint:before\":false},[\"content:\\\"\\uf585\\\"\"]],[false,{\".fa-face-grin-squint-tears:before\":false,\".fa-grin-squint-tears:before\":false},[\"content:\\\"\\uf586\\\"\"]],[false,{\".fa-face-grin-stars:before\":false,\".fa-grin-stars:before\":false},[\"content:\\\"\\uf587\\\"\"]],[false,{\".fa-face-grin-tears:before\":false,\".fa-grin-tears:before\":false},[\"content:\\\"\\uf588\\\"\"]],[false,{\".fa-face-grin-tongue:before\":false,\".fa-grin-tongue:before\":false},[\"content:\\\"\\uf589\\\"\"]],[false,{\".fa-face-grin-tongue-squint:before\":false,\".fa-grin-tongue-squint:before\":false},[\"content:\\\"\\uf58a\\\"\"]],[false,{\".fa-face-grin-tongue-wink:before\":false,\".fa-grin-tongue-wink:before\":false},[\"content:\\\"\\uf58b\\\"\"]],[false,{\".fa-face-grin-wide:before\":false,\".fa-grin-alt:before\":false},[\"content:\\\"\\uf581\\\"\"]],[false,{\".fa-face-grin-wink:before\":false,\".fa-grin-wink:before\":false},[\"content:\\\"\\uf58c\\\"\"]],[false,{\".fa-face-kiss:before\":false,\".fa-kiss:before\":false},[\"content:\\\"\\uf596\\\"\"]],[false,{\".fa-face-kiss-beam:before\":false,\".fa-kiss-beam:before\":false},[\"content:\\\"\\uf597\\\"\"]],[false,{\".fa-face-kiss-wink-heart:before\":false,\".fa-kiss-wink-heart:before\":false},[\"content:\\\"\\uf598\\\"\"]],[false,{\".fa-face-laugh:before\":false,\".fa-laugh:before\":false},[\"content:\\\"\\uf599\\\"\"]],[false,{\".fa-face-laugh-beam:before\":false,\".fa-laugh-beam:before\":false},[\"content:\\\"\\uf59a\\\"\"]],[false,{\".fa-face-laugh-squint:before\":false,\".fa-laugh-squint:before\":false},[\"content:\\\"\\uf59b\\\"\"]],[false,{\".fa-face-laugh-wink:before\":false,\".fa-laugh-wink:before\":false},[\"content:\\\"\\uf59c\\\"\"]],[false,{\".fa-face-meh:before\":false,\".fa-meh:before\":false},[\"content:\\\"\\uf11a\\\"\"]],[false,{\".fa-face-meh-blank:before\":false,\".fa-meh-blank:before\":false},[\"content:\\\"\\uf5a4\\\"\"]],[false,{\".fa-face-rolling-eyes:before\":false,\".fa-meh-rolling-eyes:before\":false},[\"content:\\\"\\uf5a5\\\"\"]],[false,{\".fa-face-sad-cry:before\":false,\".fa-sad-cry:before\":false},[\"content:\\\"\\uf5b3\\\"\"]],[false,{\".fa-face-sad-tear:before\":false,\".fa-sad-tear:before\":false},[\"content:\\\"\\uf5b4\\\"\"]],[false,{\".fa-face-smile:before\":false,\".fa-smile:before\":false},[\"content:\\\"\\uf118\\\"\"]],[false,{\".fa-face-smile-beam:before\":false,\".fa-smile-beam:before\":false},[\"content:\\\"\\uf5b8\\\"\"]],[false,{\".fa-face-smile-wink:before\":false,\".fa-smile-wink:before\":false},[\"content:\\\"\\uf4da\\\"\"]],[false,{\".fa-face-surprise:before\":false,\".fa-surprise:before\":false},[\"content:\\\"\\uf5c2\\\"\"]],[false,{\".fa-face-tired:before\":false,\".fa-tired:before\":false},[\"content:\\\"\\uf5c8\\\"\"]],[false,{\".fa-fan:before\":false},[\"content:\\\"\\uf863\\\"\"]],[false,{\".fa-faucet:before\":false},[\"content:\\\"\\ue005\\\"\"]],[false,{\".fa-faucet-drip:before\":false},[\"content:\\\"\\ue006\\\"\"]],[false,{\".fa-fax:before\":false},[\"content:\\\"\\uf1ac\\\"\"]],[false,{\".fa-feather:before\":false},[\"content:\\\"\\uf52d\\\"\"]],[false,{\".fa-feather-alt:before\":false,\".fa-feather-pointed:before\":false},[\"content:\\\"\\uf56b\\\"\"]],[false,{\".fa-ferry:before\":false},[\"content:\\\"\\ue4ea\\\"\"]],[false,{\".fa-file:before\":false},[\"content:\\\"\\uf15b\\\"\"]],[false,{\".fa-file-arrow-down:before\":false,\".fa-file-download:before\":false},[\"content:\\\"\\uf56d\\\"\"]],[false,{\".fa-file-arrow-up:before\":false,\".fa-file-upload:before\":false},[\"content:\\\"\\uf574\\\"\"]],[false,{\".fa-file-audio:before\":false},[\"content:\\\"\\uf1c7\\\"\"]],[false,{\".fa-file-circle-check:before\":false},[\"content:\\\"\\ue493\\\"\"]],[false,{\".fa-file-circle-exclamation:before\":false},[\"content:\\\"\\ue4eb\\\"\"]],[false,{\".fa-file-circle-minus:before\":false},[\"content:\\\"\\ue4ed\\\"\"]],[false,{\".fa-file-circle-plus:before\":false},[\"content:\\\"\\ue4ee\\\"\"]],[false,{\".fa-file-circle-question:before\":false},[\"content:\\\"\\ue4ef\\\"\"]],[false,{\".fa-file-circle-xmark:before\":false},[\"content:\\\"\\ue494\\\"\"]],[false,{\".fa-file-code:before\":false},[\"content:\\\"\\uf1c9\\\"\"]],[false,{\".fa-file-contract:before\":false},[\"content:\\\"\\uf56c\\\"\"]],[false,{\".fa-file-csv:before\":false},[\"content:\\\"\\uf6dd\\\"\"]],[false,{\".fa-file-excel:before\":false},[\"content:\\\"\\uf1c3\\\"\"]],[false,{\".fa-arrow-right-from-file:before\":false,\".fa-file-export:before\":false},[\"content:\\\"\\uf56e\\\"\"]],[false,{\".fa-file-image:before\":false},[\"content:\\\"\\uf1c5\\\"\"]],[false,{\".fa-arrow-right-to-file:before\":false,\".fa-file-import:before\":false},[\"content:\\\"\\uf56f\\\"\"]],[false,{\".fa-file-invoice:before\":false},[\"content:\\\"\\uf570\\\"\"]],[false,{\".fa-file-invoice-dollar:before\":false},[\"content:\\\"\\uf571\\\"\"]],[false,{\".fa-file-alt:before\":false,\".fa-file-lines:before\":false,\".fa-file-text:before\":false},[\"content:\\\"\\uf15c\\\"\"]],[false,{\".fa-file-medical:before\":false},[\"content:\\\"\\uf477\\\"\"]],[false,{\".fa-file-pdf:before\":false},[\"content:\\\"\\uf1c1\\\"\"]],[false,{\".fa-file-edit:before\":false,\".fa-file-pen:before\":false},[\"content:\\\"\\uf31c\\\"\"]],[false,{\".fa-file-powerpoint:before\":false},[\"content:\\\"\\uf1c4\\\"\"]],[false,{\".fa-file-prescription:before\":false},[\"content:\\\"\\uf572\\\"\"]],[false,{\".fa-file-shield:before\":false},[\"content:\\\"\\ue4f0\\\"\"]],[false,{\".fa-file-signature:before\":false},[\"content:\\\"\\uf573\\\"\"]],[false,{\".fa-file-video:before\":false},[\"content:\\\"\\uf1c8\\\"\"]],[false,{\".fa-file-medical-alt:before\":false,\".fa-file-waveform:before\":false},[\"content:\\\"\\uf478\\\"\"]],[false,{\".fa-file-word:before\":false},[\"content:\\\"\\uf1c2\\\"\"]],[false,{\".fa-file-archive:before\":false,\".fa-file-zipper:before\":false},[\"content:\\\"\\uf1c6\\\"\"]],[false,{\".fa-fill:before\":false},[\"content:\\\"\\uf575\\\"\"]],[false,{\".fa-fill-drip:before\":false},[\"content:\\\"\\uf576\\\"\"]],[false,{\".fa-film:before\":false},[\"content:\\\"\\uf008\\\"\"]],[false,{\".fa-filter:before\":false},[\"content:\\\"\\uf0b0\\\"\"]],[false,{\".fa-filter-circle-dollar:before\":false,\".fa-funnel-dollar:before\":false},[\"content:\\\"\\uf662\\\"\"]],[false,{\".fa-filter-circle-xmark:before\":false},[\"content:\\\"\\ue17b\\\"\"]],[false,{\".fa-fingerprint:before\":false},[\"content:\\\"\\uf577\\\"\"]],[false,{\".fa-fire:before\":false},[\"content:\\\"\\uf06d\\\"\"]],[false,{\".fa-fire-burner:before\":false},[\"content:\\\"\\ue4f1\\\"\"]],[false,{\".fa-fire-extinguisher:before\":false},[\"content:\\\"\\uf134\\\"\"]],[false,{\".fa-fire-alt:before\":false,\".fa-fire-flame-curved:before\":false},[\"content:\\\"\\uf7e4\\\"\"]],[false,{\".fa-burn:before\":false,\".fa-fire-flame-simple:before\":false},[\"content:\\\"\\uf46a\\\"\"]],[false,{\".fa-fish:before\":false},[\"content:\\\"\\uf578\\\"\"]],[false,{\".fa-fish-fins:before\":false},[\"content:\\\"\\ue4f2\\\"\"]],[false,{\".fa-flag:before\":false},[\"content:\\\"\\uf024\\\"\"]],[false,{\".fa-flag-checkered:before\":false},[\"content:\\\"\\uf11e\\\"\"]],[false,{\".fa-flag-usa:before\":false},[\"content:\\\"\\uf74d\\\"\"]],[false,{\".fa-flask:before\":false},[\"content:\\\"\\uf0c3\\\"\"]],[false,{\".fa-flask-vial:before\":false},[\"content:\\\"\\ue4f3\\\"\"]],[false,{\".fa-floppy-disk:before\":false,\".fa-save:before\":false},[\"content:\\\"\\uf0c7\\\"\"]],[false,{\".fa-florin-sign:before\":false},[\"content:\\\"\\ue184\\\"\"]],[false,{\".fa-folder-blank:before\":false,\".fa-folder:before\":false},[\"content:\\\"\\uf07b\\\"\"]],[false,{\".fa-folder-closed:before\":false},[\"content:\\\"\\ue185\\\"\"]],[false,{\".fa-folder-minus:before\":false},[\"content:\\\"\\uf65d\\\"\"]],[false,{\".fa-folder-open:before\":false},[\"content:\\\"\\uf07c\\\"\"]],[false,{\".fa-folder-plus:before\":false},[\"content:\\\"\\uf65e\\\"\"]],[false,{\".fa-folder-tree:before\":false},[\"content:\\\"\\uf802\\\"\"]],[false,{\".fa-font:before\":false},[\"content:\\\"\\uf031\\\"\"]],[false,{\".fa-football-ball:before\":false,\".fa-football:before\":false},[\"content:\\\"\\uf44e\\\"\"]],[false,{\".fa-forward:before\":false},[\"content:\\\"\\uf04e\\\"\"]],[false,{\".fa-fast-forward:before\":false,\".fa-forward-fast:before\":false},[\"content:\\\"\\uf050\\\"\"]],[false,{\".fa-forward-step:before\":false,\".fa-step-forward:before\":false},[\"content:\\\"\\uf051\\\"\"]],[false,{\".fa-franc-sign:before\":false},[\"content:\\\"\\ue18f\\\"\"]],[false,{\".fa-frog:before\":false},[\"content:\\\"\\uf52e\\\"\"]],[false,{\".fa-futbol-ball:before\":false,\".fa-futbol:before\":false,\".fa-soccer-ball:before\":false},[\"content:\\\"\\uf1e3\\\"\"]],[false,{\".fa-g:before\":false},[\"content:\\\"G\\\"\"]],[false,{\".fa-gamepad:before\":false},[\"content:\\\"\\uf11b\\\"\"]],[false,{\".fa-gas-pump:before\":false},[\"content:\\\"\\uf52f\\\"\"]],[false,{\".fa-dashboard:before\":false,\".fa-gauge-med:before\":false,\".fa-gauge:before\":false,\".fa-tachometer-alt-average:before\":false},[\"content:\\\"\\uf624\\\"\"]],[false,{\".fa-gauge-high:before\":false,\".fa-tachometer-alt-fast:before\":false,\".fa-tachometer-alt:before\":false},[\"content:\\\"\\uf625\\\"\"]],[false,{\".fa-gauge-simple-med:before\":false,\".fa-gauge-simple:before\":false,\".fa-tachometer-average:before\":false},[\"content:\\\"\\uf629\\\"\"]],[false,{\".fa-gauge-simple-high:before\":false,\".fa-tachometer-fast:before\":false,\".fa-tachometer:before\":false},[\"content:\\\"\\uf62a\\\"\"]],[false,{\".fa-gavel:before\":false,\".fa-legal:before\":false},[\"content:\\\"\\uf0e3\\\"\"]],[false,{\".fa-cog:before\":false,\".fa-gear:before\":false},[\"content:\\\"\\uf013\\\"\"]],[false,{\".fa-cogs:before\":false,\".fa-gears:before\":false},[\"content:\\\"\\uf085\\\"\"]],[false,{\".fa-gem:before\":false},[\"content:\\\"\\uf3a5\\\"\"]],[false,{\".fa-genderless:before\":false},[\"content:\\\"\\uf22d\\\"\"]],[false,{\".fa-ghost:before\":false},[\"content:\\\"\\uf6e2\\\"\"]],[false,{\".fa-gift:before\":false},[\"content:\\\"\\uf06b\\\"\"]],[false,{\".fa-gifts:before\":false},[\"content:\\\"\\uf79c\\\"\"]],[false,{\".fa-glass-water:before\":false},[\"content:\\\"\\ue4f4\\\"\"]],[false,{\".fa-glass-water-droplet:before\":false},[\"content:\\\"\\ue4f5\\\"\"]],[false,{\".fa-glasses:before\":false},[\"content:\\\"\\uf530\\\"\"]],[false,{\".fa-globe:before\":false},[\"content:\\\"\\uf0ac\\\"\"]],[false,{\".fa-golf-ball-tee:before\":false,\".fa-golf-ball:before\":false},[\"content:\\\"\\uf450\\\"\"]],[false,{\".fa-gopuram:before\":false},[\"content:\\\"\\uf664\\\"\"]],[false,{\".fa-graduation-cap:before\":false,\".fa-mortar-board:before\":false},[\"content:\\\"\\uf19d\\\"\"]],[false,{\".fa-greater-than:before\":false},[\"content:\\\">\\\"\"]],[false,{\".fa-greater-than-equal:before\":false},[\"content:\\\"\\uf532\\\"\"]],[false,{\".fa-grip-horizontal:before\":false,\".fa-grip:before\":false},[\"content:\\\"\\uf58d\\\"\"]],[false,{\".fa-grip-lines:before\":false},[\"content:\\\"\\uf7a4\\\"\"]],[false,{\".fa-grip-lines-vertical:before\":false},[\"content:\\\"\\uf7a5\\\"\"]],[false,{\".fa-grip-vertical:before\":false},[\"content:\\\"\\uf58e\\\"\"]],[false,{\".fa-group-arrows-rotate:before\":false},[\"content:\\\"\\ue4f6\\\"\"]],[false,{\".fa-guarani-sign:before\":false},[\"content:\\\"\\ue19a\\\"\"]],[false,{\".fa-guitar:before\":false},[\"content:\\\"\\uf7a6\\\"\"]],[false,{\".fa-gun:before\":false},[\"content:\\\"\\ue19b\\\"\"]],[false,{\".fa-h:before\":false},[\"content:\\\"H\\\"\"]],[false,{\".fa-hammer:before\":false},[\"content:\\\"\\uf6e3\\\"\"]],[false,{\".fa-hamsa:before\":false},[\"content:\\\"\\uf665\\\"\"]],[false,{\".fa-hand-paper:before\":false,\".fa-hand:before\":false},[\"content:\\\"\\uf256\\\"\"]],[false,{\".fa-hand-back-fist:before\":false,\".fa-hand-rock:before\":false},[\"content:\\\"\\uf255\\\"\"]],[false,{\".fa-allergies:before\":false,\".fa-hand-dots:before\":false},[\"content:\\\"\\uf461\\\"\"]],[false,{\".fa-fist-raised:before\":false,\".fa-hand-fist:before\":false},[\"content:\\\"\\uf6de\\\"\"]],[false,{\".fa-hand-holding:before\":false},[\"content:\\\"\\uf4bd\\\"\"]],[false,{\".fa-hand-holding-dollar:before\":false,\".fa-hand-holding-usd:before\":false},[\"content:\\\"\\uf4c0\\\"\"]],[false,{\".fa-hand-holding-droplet:before\":false,\".fa-hand-holding-water:before\":false},[\"content:\\\"\\uf4c1\\\"\"]],[false,{\".fa-hand-holding-hand:before\":false},[\"content:\\\"\\ue4f7\\\"\"]],[false,{\".fa-hand-holding-heart:before\":false},[\"content:\\\"\\uf4be\\\"\"]],[false,{\".fa-hand-holding-medical:before\":false},[\"content:\\\"\\ue05c\\\"\"]],[false,{\".fa-hand-lizard:before\":false},[\"content:\\\"\\uf258\\\"\"]],[false,{\".fa-hand-middle-finger:before\":false},[\"content:\\\"\\uf806\\\"\"]],[false,{\".fa-hand-peace:before\":false},[\"content:\\\"\\uf25b\\\"\"]],[false,{\".fa-hand-point-down:before\":false},[\"content:\\\"\\uf0a7\\\"\"]],[false,{\".fa-hand-point-left:before\":false},[\"content:\\\"\\uf0a5\\\"\"]],[false,{\".fa-hand-point-right:before\":false},[\"content:\\\"\\uf0a4\\\"\"]],[false,{\".fa-hand-point-up:before\":false},[\"content:\\\"\\uf0a6\\\"\"]],[false,{\".fa-hand-pointer:before\":false},[\"content:\\\"\\uf25a\\\"\"]],[false,{\".fa-hand-scissors:before\":false},[\"content:\\\"\\uf257\\\"\"]],[false,{\".fa-hand-sparkles:before\":false},[\"content:\\\"\\ue05d\\\"\"]],[false,{\".fa-hand-spock:before\":false},[\"content:\\\"\\uf259\\\"\"]],[false,{\".fa-handcuffs:before\":false},[\"content:\\\"\\ue4f8\\\"\"]],[false,{\".fa-hands:before\":false,\".fa-sign-language:before\":false,\".fa-signing:before\":false},[\"content:\\\"\\uf2a7\\\"\"]],[false,{\".fa-american-sign-language-interpreting:before\":false,\".fa-asl-interpreting:before\":false,\".fa-hands-american-sign-language-interpreting:before\":false,\".fa-hands-asl-interpreting:before\":false},[\"content:\\\"\\uf2a3\\\"\"]],[false,{\".fa-hands-bound:before\":false},[\"content:\\\"\\ue4f9\\\"\"]],[false,{\".fa-hands-bubbles:before\":false,\".fa-hands-wash:before\":false},[\"content:\\\"\\ue05e\\\"\"]],[false,{\".fa-hands-clapping:before\":false},[\"content:\\\"\\ue1a8\\\"\"]],[false,{\".fa-hands-holding:before\":false},[\"content:\\\"\\uf4c2\\\"\"]],[false,{\".fa-hands-holding-child:before\":false},[\"content:\\\"\\ue4fa\\\"\"]],[false,{\".fa-hands-holding-circle:before\":false},[\"content:\\\"\\ue4fb\\\"\"]],[false,{\".fa-hands-praying:before\":false,\".fa-praying-hands:before\":false},[\"content:\\\"\\uf684\\\"\"]],[false,{\".fa-handshake:before\":false},[\"content:\\\"\\uf2b5\\\"\"]],[false,{\".fa-hands-helping:before\":false,\".fa-handshake-angle:before\":false},[\"content:\\\"\\uf4c4\\\"\"]],[false,{\".fa-handshake-alt:before\":false,\".fa-handshake-simple:before\":false},[\"content:\\\"\\uf4c6\\\"\"]],[false,{\".fa-handshake-alt-slash:before\":false,\".fa-handshake-simple-slash:before\":false},[\"content:\\\"\\ue05f\\\"\"]],[false,{\".fa-handshake-slash:before\":false},[\"content:\\\"\\ue060\\\"\"]],[false,{\".fa-hanukiah:before\":false},[\"content:\\\"\\uf6e6\\\"\"]],[false,{\".fa-hard-drive:before\":false,\".fa-hdd:before\":false},[\"content:\\\"\\uf0a0\\\"\"]],[false,{\".fa-hashtag:before\":false},[\"content:\\\"#\\\"\"]],[false,{\".fa-hat-cowboy:before\":false},[\"content:\\\"\\uf8c0\\\"\"]],[false,{\".fa-hat-cowboy-side:before\":false},[\"content:\\\"\\uf8c1\\\"\"]],[false,{\".fa-hat-wizard:before\":false},[\"content:\\\"\\uf6e8\\\"\"]],[false,{\".fa-head-side-cough:before\":false},[\"content:\\\"\\ue061\\\"\"]],[false,{\".fa-head-side-cough-slash:before\":false},[\"content:\\\"\\ue062\\\"\"]],[false,{\".fa-head-side-mask:before\":false},[\"content:\\\"\\ue063\\\"\"]],[false,{\".fa-head-side-virus:before\":false},[\"content:\\\"\\ue064\\\"\"]],[false,{\".fa-header:before\":false,\".fa-heading:before\":false},[\"content:\\\"\\uf1dc\\\"\"]],[false,{\".fa-headphones:before\":false},[\"content:\\\"\\uf025\\\"\"]],[false,{\".fa-headphones-alt:before\":false,\".fa-headphones-simple:before\":false},[\"content:\\\"\\uf58f\\\"\"]],[false,{\".fa-headset:before\":false},[\"content:\\\"\\uf590\\\"\"]],[false,{\".fa-heart:before\":false},[\"content:\\\"\\uf004\\\"\"]],[false,{\".fa-heart-circle-bolt:before\":false},[\"content:\\\"\\ue4fc\\\"\"]],[false,{\".fa-heart-circle-check:before\":false},[\"content:\\\"\\ue4fd\\\"\"]],[false,{\".fa-heart-circle-exclamation:before\":false},[\"content:\\\"\\ue4fe\\\"\"]],[false,{\".fa-heart-circle-minus:before\":false},[\"content:\\\"\\ue4ff\\\"\"]],[false,{\".fa-heart-circle-plus:before\":false},[\"content:\\\"\\ue500\\\"\"]],[false,{\".fa-heart-circle-xmark:before\":false},[\"content:\\\"\\ue501\\\"\"]],[false,{\".fa-heart-broken:before\":false,\".fa-heart-crack:before\":false},[\"content:\\\"\\uf7a9\\\"\"]],[false,{\".fa-heart-pulse:before\":false,\".fa-heartbeat:before\":false},[\"content:\\\"\\uf21e\\\"\"]],[false,{\".fa-helicopter:before\":false},[\"content:\\\"\\uf533\\\"\"]],[false,{\".fa-helicopter-symbol:before\":false},[\"content:\\\"\\ue502\\\"\"]],[false,{\".fa-hard-hat:before\":false,\".fa-hat-hard:before\":false,\".fa-helmet-safety:before\":false},[\"content:\\\"\\uf807\\\"\"]],[false,{\".fa-helmet-un:before\":false},[\"content:\\\"\\ue503\\\"\"]],[false,{\".fa-highlighter:before\":false},[\"content:\\\"\\uf591\\\"\"]],[false,{\".fa-hill-avalanche:before\":false},[\"content:\\\"\\ue507\\\"\"]],[false,{\".fa-hill-rockslide:before\":false},[\"content:\\\"\\ue508\\\"\"]],[false,{\".fa-hippo:before\":false},[\"content:\\\"\\uf6ed\\\"\"]],[false,{\".fa-hockey-puck:before\":false},[\"content:\\\"\\uf453\\\"\"]],[false,{\".fa-holly-berry:before\":false},[\"content:\\\"\\uf7aa\\\"\"]],[false,{\".fa-horse:before\":false},[\"content:\\\"\\uf6f0\\\"\"]],[false,{\".fa-horse-head:before\":false},[\"content:\\\"\\uf7ab\\\"\"]],[false,{\".fa-hospital-alt:before\":false,\".fa-hospital-wide:before\":false,\".fa-hospital:before\":false},[\"content:\\\"\\uf0f8\\\"\"]],[false,{\".fa-hospital-user:before\":false},[\"content:\\\"\\uf80d\\\"\"]],[false,{\".fa-hot-tub-person:before\":false,\".fa-hot-tub:before\":false},[\"content:\\\"\\uf593\\\"\"]],[false,{\".fa-hotdog:before\":false},[\"content:\\\"\\uf80f\\\"\"]],[false,{\".fa-hotel:before\":false},[\"content:\\\"\\uf594\\\"\"]],[false,{\".fa-hourglass-2:before\":false,\".fa-hourglass-half:before\":false,\".fa-hourglass:before\":false},[\"content:\\\"\\uf254\\\"\"]],[false,{\".fa-hourglass-empty:before\":false},[\"content:\\\"\\uf252\\\"\"]],[false,{\".fa-hourglass-3:before\":false,\".fa-hourglass-end:before\":false},[\"content:\\\"\\uf253\\\"\"]],[false,{\".fa-hourglass-1:before\":false,\".fa-hourglass-start:before\":false},[\"content:\\\"\\uf251\\\"\"]],[false,{\".fa-home-alt:before\":false,\".fa-home-lg-alt:before\":false,\".fa-home:before\":false,\".fa-house:before\":false},[\"content:\\\"\\uf015\\\"\"]],[false,{\".fa-home-lg:before\":false,\".fa-house-chimney:before\":false},[\"content:\\\"\\ue3af\\\"\"]],[false,{\".fa-house-chimney-crack:before\":false,\".fa-house-damage:before\":false},[\"content:\\\"\\uf6f1\\\"\"]],[false,{\".fa-clinic-medical:before\":false,\".fa-house-chimney-medical:before\":false},[\"content:\\\"\\uf7f2\\\"\"]],[false,{\".fa-house-chimney-user:before\":false},[\"content:\\\"\\ue065\\\"\"]],[false,{\".fa-house-chimney-window:before\":false},[\"content:\\\"\\ue00d\\\"\"]],[false,{\".fa-house-circle-check:before\":false},[\"content:\\\"\\ue509\\\"\"]],[false,{\".fa-house-circle-exclamation:before\":false},[\"content:\\\"\\ue50a\\\"\"]],[false,{\".fa-house-circle-xmark:before\":false},[\"content:\\\"\\ue50b\\\"\"]],[false,{\".fa-house-crack:before\":false},[\"content:\\\"\\ue3b1\\\"\"]],[false,{\".fa-house-fire:before\":false},[\"content:\\\"\\ue50c\\\"\"]],[false,{\".fa-house-flag:before\":false},[\"content:\\\"\\ue50d\\\"\"]],[false,{\".fa-house-flood-water:before\":false},[\"content:\\\"\\ue50e\\\"\"]],[false,{\".fa-house-flood-water-circle-arrow-right:before\":false},[\"content:\\\"\\ue50f\\\"\"]],[false,{\".fa-house-laptop:before\":false,\".fa-laptop-house:before\":false},[\"content:\\\"\\ue066\\\"\"]],[false,{\".fa-house-lock:before\":false},[\"content:\\\"\\ue510\\\"\"]],[false,{\".fa-house-medical:before\":false},[\"content:\\\"\\ue3b2\\\"\"]],[false,{\".fa-house-medical-circle-check:before\":false},[\"content:\\\"\\ue511\\\"\"]],[false,{\".fa-house-medical-circle-exclamation:before\":false},[\"content:\\\"\\ue512\\\"\"]],[false,{\".fa-house-medical-circle-xmark:before\":false},[\"content:\\\"\\ue513\\\"\"]],[false,{\".fa-house-medical-flag:before\":false},[\"content:\\\"\\ue514\\\"\"]],[false,{\".fa-house-signal:before\":false},[\"content:\\\"\\ue012\\\"\"]],[false,{\".fa-house-tsunami:before\":false},[\"content:\\\"\\ue515\\\"\"]],[false,{\".fa-home-user:before\":false,\".fa-house-user:before\":false},[\"content:\\\"\\ue1b0\\\"\"]],[false,{\".fa-hryvnia-sign:before\":false,\".fa-hryvnia:before\":false},[\"content:\\\"\\uf6f2\\\"\"]],[false,{\".fa-hurricane:before\":false},[\"content:\\\"\\uf751\\\"\"]],[false,{\".fa-i:before\":false},[\"content:\\\"I\\\"\"]],[false,{\".fa-i-cursor:before\":false},[\"content:\\\"\\uf246\\\"\"]],[false,{\".fa-ice-cream:before\":false},[\"content:\\\"\\uf810\\\"\"]],[false,{\".fa-icicles:before\":false},[\"content:\\\"\\uf7ad\\\"\"]],[false,{\".fa-heart-music-camera-bolt:before\":false,\".fa-icons:before\":false},[\"content:\\\"\\uf86d\\\"\"]],[false,{\".fa-id-badge:before\":false},[\"content:\\\"\\uf2c1\\\"\"]],[false,{\".fa-drivers-license:before\":false,\".fa-id-card:before\":false},[\"content:\\\"\\uf2c2\\\"\"]],[false,{\".fa-id-card-alt:before\":false,\".fa-id-card-clip:before\":false},[\"content:\\\"\\uf47f\\\"\"]],[false,{\".fa-igloo:before\":false},[\"content:\\\"\\uf7ae\\\"\"]],[false,{\".fa-image:before\":false},[\"content:\\\"\\uf03e\\\"\"]],[false,{\".fa-image-portrait:before\":false,\".fa-portrait:before\":false},[\"content:\\\"\\uf3e0\\\"\"]],[false,{\".fa-images:before\":false},[\"content:\\\"\\uf302\\\"\"]],[false,{\".fa-inbox:before\":false},[\"content:\\\"\\uf01c\\\"\"]],[false,{\".fa-indent:before\":false},[\"content:\\\"\\uf03c\\\"\"]],[false,{\".fa-indian-rupee-sign:before\":false,\".fa-indian-rupee:before\":false,\".fa-inr:before\":false},[\"content:\\\"\\ue1bc\\\"\"]],[false,{\".fa-industry:before\":false},[\"content:\\\"\\uf275\\\"\"]],[false,{\".fa-infinity:before\":false},[\"content:\\\"\\uf534\\\"\"]],[false,{\".fa-info:before\":false},[\"content:\\\"\\uf129\\\"\"]],[false,{\".fa-italic:before\":false},[\"content:\\\"\\uf033\\\"\"]],[false,{\".fa-j:before\":false},[\"content:\\\"J\\\"\"]],[false,{\".fa-jar:before\":false},[\"content:\\\"\\ue516\\\"\"]],[false,{\".fa-jar-wheat:before\":false},[\"content:\\\"\\ue517\\\"\"]],[false,{\".fa-jedi:before\":false},[\"content:\\\"\\uf669\\\"\"]],[false,{\".fa-fighter-jet:before\":false,\".fa-jet-fighter:before\":false},[\"content:\\\"\\uf0fb\\\"\"]],[false,{\".fa-jet-fighter-up:before\":false},[\"content:\\\"\\ue518\\\"\"]],[false,{\".fa-joint:before\":false},[\"content:\\\"\\uf595\\\"\"]],[false,{\".fa-jug-detergent:before\":false},[\"content:\\\"\\ue519\\\"\"]],[false,{\".fa-k:before\":false},[\"content:\\\"K\\\"\"]],[false,{\".fa-kaaba:before\":false},[\"content:\\\"\\uf66b\\\"\"]],[false,{\".fa-key:before\":false},[\"content:\\\"\\uf084\\\"\"]],[false,{\".fa-keyboard:before\":false},[\"content:\\\"\\uf11c\\\"\"]],[false,{\".fa-khanda:before\":false},[\"content:\\\"\\uf66d\\\"\"]],[false,{\".fa-kip-sign:before\":false},[\"content:\\\"\\ue1c4\\\"\"]],[false,{\".fa-first-aid:before\":false,\".fa-kit-medical:before\":false},[\"content:\\\"\\uf479\\\"\"]],[false,{\".fa-kitchen-set:before\":false},[\"content:\\\"\\ue51a\\\"\"]],[false,{\".fa-kiwi-bird:before\":false},[\"content:\\\"\\uf535\\\"\"]],[false,{\".fa-l:before\":false},[\"content:\\\"L\\\"\"]],[false,{\".fa-land-mine-on:before\":false},[\"content:\\\"\\ue51b\\\"\"]],[false,{\".fa-landmark:before\":false},[\"content:\\\"\\uf66f\\\"\"]],[false,{\".fa-landmark-alt:before\":false,\".fa-landmark-dome:before\":false},[\"content:\\\"\\uf752\\\"\"]],[false,{\".fa-landmark-flag:before\":false},[\"content:\\\"\\ue51c\\\"\"]],[false,{\".fa-language:before\":false},[\"content:\\\"\\uf1ab\\\"\"]],[false,{\".fa-laptop:before\":false},[\"content:\\\"\\uf109\\\"\"]],[false,{\".fa-laptop-code:before\":false},[\"content:\\\"\\uf5fc\\\"\"]],[false,{\".fa-laptop-file:before\":false},[\"content:\\\"\\ue51d\\\"\"]],[false,{\".fa-laptop-medical:before\":false},[\"content:\\\"\\uf812\\\"\"]],[false,{\".fa-lari-sign:before\":false},[\"content:\\\"\\ue1c8\\\"\"]],[false,{\".fa-layer-group:before\":false},[\"content:\\\"\\uf5fd\\\"\"]],[false,{\".fa-leaf:before\":false},[\"content:\\\"\\uf06c\\\"\"]],[false,{\".fa-left-long:before\":false,\".fa-long-arrow-alt-left:before\":false},[\"content:\\\"\\uf30a\\\"\"]],[false,{\".fa-arrows-alt-h:before\":false,\".fa-left-right:before\":false},[\"content:\\\"\\uf337\\\"\"]],[false,{\".fa-lemon:before\":false},[\"content:\\\"\\uf094\\\"\"]],[false,{\".fa-less-than:before\":false},[\"content:\\\"<\\\"\"]],[false,{\".fa-less-than-equal:before\":false},[\"content:\\\"\\uf537\\\"\"]],[false,{\".fa-life-ring:before\":false},[\"content:\\\"\\uf1cd\\\"\"]],[false,{\".fa-lightbulb:before\":false},[\"content:\\\"\\uf0eb\\\"\"]],[false,{\".fa-lines-leaning:before\":false},[\"content:\\\"\\ue51e\\\"\"]],[false,{\".fa-chain:before\":false,\".fa-link:before\":false},[\"content:\\\"\\uf0c1\\\"\"]],[false,{\".fa-chain-broken:before\":false,\".fa-chain-slash:before\":false,\".fa-link-slash:before\":false,\".fa-unlink:before\":false},[\"content:\\\"\\uf127\\\"\"]],[false,{\".fa-lira-sign:before\":false},[\"content:\\\"\\uf195\\\"\"]],[false,{\".fa-list-squares:before\":false,\".fa-list:before\":false},[\"content:\\\"\\uf03a\\\"\"]],[false,{\".fa-list-check:before\":false,\".fa-tasks:before\":false},[\"content:\\\"\\uf0ae\\\"\"]],[false,{\".fa-list-1-2:before\":false,\".fa-list-numeric:before\":false,\".fa-list-ol:before\":false},[\"content:\\\"\\uf0cb\\\"\"]],[false,{\".fa-list-dots:before\":false,\".fa-list-ul:before\":false},[\"content:\\\"\\uf0ca\\\"\"]],[false,{\".fa-litecoin-sign:before\":false},[\"content:\\\"\\ue1d3\\\"\"]],[false,{\".fa-location-arrow:before\":false},[\"content:\\\"\\uf124\\\"\"]],[false,{\".fa-location-crosshairs:before\":false,\".fa-location:before\":false},[\"content:\\\"\\uf601\\\"\"]],[false,{\".fa-location-dot:before\":false,\".fa-map-marker-alt:before\":false},[\"content:\\\"\\uf3c5\\\"\"]],[false,{\".fa-location-pin:before\":false,\".fa-map-marker:before\":false},[\"content:\\\"\\uf041\\\"\"]],[false,{\".fa-location-pin-lock:before\":false},[\"content:\\\"\\ue51f\\\"\"]],[false,{\".fa-lock:before\":false},[\"content:\\\"\\uf023\\\"\"]],[false,{\".fa-lock-open:before\":false},[\"content:\\\"\\uf3c1\\\"\"]],[false,{\".fa-locust:before\":false},[\"content:\\\"\\ue520\\\"\"]],[false,{\".fa-lungs:before\":false},[\"content:\\\"\\uf604\\\"\"]],[false,{\".fa-lungs-virus:before\":false},[\"content:\\\"\\ue067\\\"\"]],[false,{\".fa-m:before\":false},[\"content:\\\"M\\\"\"]],[false,{\".fa-magnet:before\":false},[\"content:\\\"\\uf076\\\"\"]],[false,{\".fa-magnifying-glass:before\":false,\".fa-search:before\":false},[\"content:\\\"\\uf002\\\"\"]],[false,{\".fa-magnifying-glass-arrow-right:before\":false},[\"content:\\\"\\ue521\\\"\"]],[false,{\".fa-magnifying-glass-chart:before\":false},[\"content:\\\"\\ue522\\\"\"]],[false,{\".fa-magnifying-glass-dollar:before\":false,\".fa-search-dollar:before\":false},[\"content:\\\"\\uf688\\\"\"]],[false,{\".fa-magnifying-glass-location:before\":false,\".fa-search-location:before\":false},[\"content:\\\"\\uf689\\\"\"]],[false,{\".fa-magnifying-glass-minus:before\":false,\".fa-search-minus:before\":false},[\"content:\\\"\\uf010\\\"\"]],[false,{\".fa-magnifying-glass-plus:before\":false,\".fa-search-plus:before\":false},[\"content:\\\"\\uf00e\\\"\"]],[false,{\".fa-manat-sign:before\":false},[\"content:\\\"\\ue1d5\\\"\"]],[false,{\".fa-map:before\":false},[\"content:\\\"\\uf279\\\"\"]],[false,{\".fa-map-location:before\":false,\".fa-map-marked:before\":false},[\"content:\\\"\\uf59f\\\"\"]],[false,{\".fa-map-location-dot:before\":false,\".fa-map-marked-alt:before\":false},[\"content:\\\"\\uf5a0\\\"\"]],[false,{\".fa-map-pin:before\":false},[\"content:\\\"\\uf276\\\"\"]],[false,{\".fa-marker:before\":false},[\"content:\\\"\\uf5a1\\\"\"]],[false,{\".fa-mars:before\":false},[\"content:\\\"\\uf222\\\"\"]],[false,{\".fa-mars-and-venus:before\":false},[\"content:\\\"\\uf224\\\"\"]],[false,{\".fa-mars-and-venus-burst:before\":false},[\"content:\\\"\\ue523\\\"\"]],[false,{\".fa-mars-double:before\":false},[\"content:\\\"\\uf227\\\"\"]],[false,{\".fa-mars-stroke:before\":false},[\"content:\\\"\\uf229\\\"\"]],[false,{\".fa-mars-stroke-h:before\":false,\".fa-mars-stroke-right:before\":false},[\"content:\\\"\\uf22b\\\"\"]],[false,{\".fa-mars-stroke-up:before\":false,\".fa-mars-stroke-v:before\":false},[\"content:\\\"\\uf22a\\\"\"]],[false,{\".fa-glass-martini-alt:before\":false,\".fa-martini-glass:before\":false},[\"content:\\\"\\uf57b\\\"\"]],[false,{\".fa-cocktail:before\":false,\".fa-martini-glass-citrus:before\":false},[\"content:\\\"\\uf561\\\"\"]],[false,{\".fa-glass-martini:before\":false,\".fa-martini-glass-empty:before\":false},[\"content:\\\"\\uf000\\\"\"]],[false,{\".fa-mask:before\":false},[\"content:\\\"\\uf6fa\\\"\"]],[false,{\".fa-mask-face:before\":false},[\"content:\\\"\\ue1d7\\\"\"]],[false,{\".fa-mask-ventilator:before\":false},[\"content:\\\"\\ue524\\\"\"]],[false,{\".fa-masks-theater:before\":false,\".fa-theater-masks:before\":false},[\"content:\\\"\\uf630\\\"\"]],[false,{\".fa-mattress-pillow:before\":false},[\"content:\\\"\\ue525\\\"\"]],[false,{\".fa-expand-arrows-alt:before\":false,\".fa-maximize:before\":false},[\"content:\\\"\\uf31e\\\"\"]],[false,{\".fa-medal:before\":false},[\"content:\\\"\\uf5a2\\\"\"]],[false,{\".fa-memory:before\":false},[\"content:\\\"\\uf538\\\"\"]],[false,{\".fa-menorah:before\":false},[\"content:\\\"\\uf676\\\"\"]],[false,{\".fa-mercury:before\":false},[\"content:\\\"\\uf223\\\"\"]],[false,{\".fa-comment-alt:before\":false,\".fa-message:before\":false},[\"content:\\\"\\uf27a\\\"\"]],[false,{\".fa-meteor:before\":false},[\"content:\\\"\\uf753\\\"\"]],[false,{\".fa-microchip:before\":false},[\"content:\\\"\\uf2db\\\"\"]],[false,{\".fa-microphone:before\":false},[\"content:\\\"\\uf130\\\"\"]],[false,{\".fa-microphone-alt:before\":false,\".fa-microphone-lines:before\":false},[\"content:\\\"\\uf3c9\\\"\"]],[false,{\".fa-microphone-alt-slash:before\":false,\".fa-microphone-lines-slash:before\":false},[\"content:\\\"\\uf539\\\"\"]],[false,{\".fa-microphone-slash:before\":false},[\"content:\\\"\\uf131\\\"\"]],[false,{\".fa-microscope:before\":false},[\"content:\\\"\\uf610\\\"\"]],[false,{\".fa-mill-sign:before\":false},[\"content:\\\"\\ue1ed\\\"\"]],[false,{\".fa-compress-arrows-alt:before\":false,\".fa-minimize:before\":false},[\"content:\\\"\\uf78c\\\"\"]],[false,{\".fa-minus:before\":false,\".fa-subtract:before\":false},[\"content:\\\"\\uf068\\\"\"]],[false,{\".fa-mitten:before\":false},[\"content:\\\"\\uf7b5\\\"\"]],[false,{\".fa-mobile-android:before\":false,\".fa-mobile-phone:before\":false,\".fa-mobile:before\":false},[\"content:\\\"\\uf3ce\\\"\"]],[false,{\".fa-mobile-button:before\":false},[\"content:\\\"\\uf10b\\\"\"]],[false,{\".fa-mobile-retro:before\":false},[\"content:\\\"\\ue527\\\"\"]],[false,{\".fa-mobile-android-alt:before\":false,\".fa-mobile-screen:before\":false},[\"content:\\\"\\uf3cf\\\"\"]],[false,{\".fa-mobile-alt:before\":false,\".fa-mobile-screen-button:before\":false},[\"content:\\\"\\uf3cd\\\"\"]],[false,{\".fa-money-bill:before\":false},[\"content:\\\"\\uf0d6\\\"\"]],[false,{\".fa-money-bill-1:before\":false,\".fa-money-bill-alt:before\":false},[\"content:\\\"\\uf3d1\\\"\"]],[false,{\".fa-money-bill-1-wave:before\":false,\".fa-money-bill-wave-alt:before\":false},[\"content:\\\"\\uf53b\\\"\"]],[false,{\".fa-money-bill-transfer:before\":false},[\"content:\\\"\\ue528\\\"\"]],[false,{\".fa-money-bill-trend-up:before\":false},[\"content:\\\"\\ue529\\\"\"]],[false,{\".fa-money-bill-wave:before\":false},[\"content:\\\"\\uf53a\\\"\"]],[false,{\".fa-money-bill-wheat:before\":false},[\"content:\\\"\\ue52a\\\"\"]],[false,{\".fa-money-bills:before\":false},[\"content:\\\"\\ue1f3\\\"\"]],[false,{\".fa-money-check:before\":false},[\"content:\\\"\\uf53c\\\"\"]],[false,{\".fa-money-check-alt:before\":false,\".fa-money-check-dollar:before\":false},[\"content:\\\"\\uf53d\\\"\"]],[false,{\".fa-monument:before\":false},[\"content:\\\"\\uf5a6\\\"\"]],[false,{\".fa-moon:before\":false},[\"content:\\\"\\uf186\\\"\"]],[false,{\".fa-mortar-pestle:before\":false},[\"content:\\\"\\uf5a7\\\"\"]],[false,{\".fa-mosque:before\":false},[\"content:\\\"\\uf678\\\"\"]],[false,{\".fa-mosquito:before\":false},[\"content:\\\"\\ue52b\\\"\"]],[false,{\".fa-mosquito-net:before\":false},[\"content:\\\"\\ue52c\\\"\"]],[false,{\".fa-motorcycle:before\":false},[\"content:\\\"\\uf21c\\\"\"]],[false,{\".fa-mound:before\":false},[\"content:\\\"\\ue52d\\\"\"]],[false,{\".fa-mountain:before\":false},[\"content:\\\"\\uf6fc\\\"\"]],[false,{\".fa-mountain-city:before\":false},[\"content:\\\"\\ue52e\\\"\"]],[false,{\".fa-mountain-sun:before\":false},[\"content:\\\"\\ue52f\\\"\"]],[false,{\".fa-mug-hot:before\":false},[\"content:\\\"\\uf7b6\\\"\"]],[false,{\".fa-coffee:before\":false,\".fa-mug-saucer:before\":false},[\"content:\\\"\\uf0f4\\\"\"]],[false,{\".fa-music:before\":false},[\"content:\\\"\\uf001\\\"\"]],[false,{\".fa-n:before\":false},[\"content:\\\"N\\\"\"]],[false,{\".fa-naira-sign:before\":false},[\"content:\\\"\\ue1f6\\\"\"]],[false,{\".fa-network-wired:before\":false},[\"content:\\\"\\uf6ff\\\"\"]],[false,{\".fa-neuter:before\":false},[\"content:\\\"\\uf22c\\\"\"]],[false,{\".fa-newspaper:before\":false},[\"content:\\\"\\uf1ea\\\"\"]],[false,{\".fa-not-equal:before\":false},[\"content:\\\"\\uf53e\\\"\"]],[false,{\".fa-note-sticky:before\":false,\".fa-sticky-note:before\":false},[\"content:\\\"\\uf249\\\"\"]],[false,{\".fa-notes-medical:before\":false},[\"content:\\\"\\uf481\\\"\"]],[false,{\".fa-o:before\":false},[\"content:\\\"O\\\"\"]],[false,{\".fa-object-group:before\":false},[\"content:\\\"\\uf247\\\"\"]],[false,{\".fa-object-ungroup:before\":false},[\"content:\\\"\\uf248\\\"\"]],[false,{\".fa-oil-can:before\":false},[\"content:\\\"\\uf613\\\"\"]],[false,{\".fa-oil-well:before\":false},[\"content:\\\"\\ue532\\\"\"]],[false,{\".fa-om:before\":false},[\"content:\\\"\\uf679\\\"\"]],[false,{\".fa-otter:before\":false},[\"content:\\\"\\uf700\\\"\"]],[false,{\".fa-dedent:before\":false,\".fa-outdent:before\":false},[\"content:\\\"\\uf03b\\\"\"]],[false,{\".fa-p:before\":false},[\"content:\\\"P\\\"\"]],[false,{\".fa-pager:before\":false},[\"content:\\\"\\uf815\\\"\"]],[false,{\".fa-paint-roller:before\":false},[\"content:\\\"\\uf5aa\\\"\"]],[false,{\".fa-paint-brush:before\":false,\".fa-paintbrush:before\":false},[\"content:\\\"\\uf1fc\\\"\"]],[false,{\".fa-palette:before\":false},[\"content:\\\"\\uf53f\\\"\"]],[false,{\".fa-pallet:before\":false},[\"content:\\\"\\uf482\\\"\"]],[false,{\".fa-panorama:before\":false},[\"content:\\\"\\ue209\\\"\"]],[false,{\".fa-paper-plane:before\":false},[\"content:\\\"\\uf1d8\\\"\"]],[false,{\".fa-paperclip:before\":false},[\"content:\\\"\\uf0c6\\\"\"]],[false,{\".fa-parachute-box:before\":false},[\"content:\\\"\\uf4cd\\\"\"]],[false,{\".fa-paragraph:before\":false},[\"content:\\\"\\uf1dd\\\"\"]],[false,{\".fa-passport:before\":false},[\"content:\\\"\\uf5ab\\\"\"]],[false,{\".fa-file-clipboard:before\":false,\".fa-paste:before\":false},[\"content:\\\"\\uf0ea\\\"\"]],[false,{\".fa-pause:before\":false},[\"content:\\\"\\uf04c\\\"\"]],[false,{\".fa-paw:before\":false},[\"content:\\\"\\uf1b0\\\"\"]],[false,{\".fa-peace:before\":false},[\"content:\\\"\\uf67c\\\"\"]],[false,{\".fa-pen:before\":false},[\"content:\\\"\\uf304\\\"\"]],[false,{\".fa-pen-alt:before\":false,\".fa-pen-clip:before\":false},[\"content:\\\"\\uf305\\\"\"]],[false,{\".fa-pen-fancy:before\":false},[\"content:\\\"\\uf5ac\\\"\"]],[false,{\".fa-pen-nib:before\":false},[\"content:\\\"\\uf5ad\\\"\"]],[false,{\".fa-pen-ruler:before\":false,\".fa-pencil-ruler:before\":false},[\"content:\\\"\\uf5ae\\\"\"]],[false,{\".fa-edit:before\":false,\".fa-pen-to-square:before\":false},[\"content:\\\"\\uf044\\\"\"]],[false,{\".fa-pencil-alt:before\":false,\".fa-pencil:before\":false},[\"content:\\\"\\uf303\\\"\"]],[false,{\".fa-people-arrows-left-right:before\":false,\".fa-people-arrows:before\":false},[\"content:\\\"\\ue068\\\"\"]],[false,{\".fa-people-carry-box:before\":false,\".fa-people-carry:before\":false},[\"content:\\\"\\uf4ce\\\"\"]],[false,{\".fa-people-group:before\":false},[\"content:\\\"\\ue533\\\"\"]],[false,{\".fa-people-line:before\":false},[\"content:\\\"\\ue534\\\"\"]],[false,{\".fa-people-pulling:before\":false},[\"content:\\\"\\ue535\\\"\"]],[false,{\".fa-people-robbery:before\":false},[\"content:\\\"\\ue536\\\"\"]],[false,{\".fa-people-roof:before\":false},[\"content:\\\"\\ue537\\\"\"]],[false,{\".fa-pepper-hot:before\":false},[\"content:\\\"\\uf816\\\"\"]],[false,{\".fa-percent:before\":false,\".fa-percentage:before\":false},[\"content:\\\"%\\\"\"]],[false,{\".fa-male:before\":false,\".fa-person:before\":false},[\"content:\\\"\\uf183\\\"\"]],[false,{\".fa-person-arrow-down-to-line:before\":false},[\"content:\\\"\\ue538\\\"\"]],[false,{\".fa-person-arrow-up-from-line:before\":false},[\"content:\\\"\\ue539\\\"\"]],[false,{\".fa-biking:before\":false,\".fa-person-biking:before\":false},[\"content:\\\"\\uf84a\\\"\"]],[false,{\".fa-person-booth:before\":false},[\"content:\\\"\\uf756\\\"\"]],[false,{\".fa-person-breastfeeding:before\":false},[\"content:\\\"\\ue53a\\\"\"]],[false,{\".fa-person-burst:before\":false},[\"content:\\\"\\ue53b\\\"\"]],[false,{\".fa-person-cane:before\":false},[\"content:\\\"\\ue53c\\\"\"]],[false,{\".fa-person-chalkboard:before\":false},[\"content:\\\"\\ue53d\\\"\"]],[false,{\".fa-person-circle-check:before\":false},[\"content:\\\"\\ue53e\\\"\"]],[false,{\".fa-person-circle-exclamation:before\":false},[\"content:\\\"\\ue53f\\\"\"]],[false,{\".fa-person-circle-minus:before\":false},[\"content:\\\"\\ue540\\\"\"]],[false,{\".fa-person-circle-plus:before\":false},[\"content:\\\"\\ue541\\\"\"]],[false,{\".fa-person-circle-question:before\":false},[\"content:\\\"\\ue542\\\"\"]],[false,{\".fa-person-circle-xmark:before\":false},[\"content:\\\"\\ue543\\\"\"]],[false,{\".fa-digging:before\":false,\".fa-person-digging:before\":false},[\"content:\\\"\\uf85e\\\"\"]],[false,{\".fa-diagnoses:before\":false,\".fa-person-dots-from-line:before\":false},[\"content:\\\"\\uf470\\\"\"]],[false,{\".fa-female:before\":false,\".fa-person-dress:before\":false},[\"content:\\\"\\uf182\\\"\"]],[false,{\".fa-person-dress-burst:before\":false},[\"content:\\\"\\ue544\\\"\"]],[false,{\".fa-person-drowning:before\":false},[\"content:\\\"\\ue545\\\"\"]],[false,{\".fa-person-falling:before\":false},[\"content:\\\"\\ue546\\\"\"]],[false,{\".fa-person-falling-burst:before\":false},[\"content:\\\"\\ue547\\\"\"]],[false,{\".fa-person-half-dress:before\":false},[\"content:\\\"\\ue548\\\"\"]],[false,{\".fa-person-harassing:before\":false},[\"content:\\\"\\ue549\\\"\"]],[false,{\".fa-hiking:before\":false,\".fa-person-hiking:before\":false},[\"content:\\\"\\uf6ec\\\"\"]],[false,{\".fa-person-military-pointing:before\":false},[\"content:\\\"\\ue54a\\\"\"]],[false,{\".fa-person-military-rifle:before\":false},[\"content:\\\"\\ue54b\\\"\"]],[false,{\".fa-person-military-to-person:before\":false},[\"content:\\\"\\ue54c\\\"\"]],[false,{\".fa-person-praying:before\":false,\".fa-pray:before\":false},[\"content:\\\"\\uf683\\\"\"]],[false,{\".fa-person-pregnant:before\":false},[\"content:\\\"\\ue31e\\\"\"]],[false,{\".fa-person-rays:before\":false},[\"content:\\\"\\ue54d\\\"\"]],[false,{\".fa-person-rifle:before\":false},[\"content:\\\"\\ue54e\\\"\"]],[false,{\".fa-person-running:before\":false,\".fa-running:before\":false},[\"content:\\\"\\uf70c\\\"\"]],[false,{\".fa-person-shelter:before\":false},[\"content:\\\"\\ue54f\\\"\"]],[false,{\".fa-person-skating:before\":false,\".fa-skating:before\":false},[\"content:\\\"\\uf7c5\\\"\"]],[false,{\".fa-person-skiing:before\":false,\".fa-skiing:before\":false},[\"content:\\\"\\uf7c9\\\"\"]],[false,{\".fa-person-skiing-nordic:before\":false,\".fa-skiing-nordic:before\":false},[\"content:\\\"\\uf7ca\\\"\"]],[false,{\".fa-person-snowboarding:before\":false,\".fa-snowboarding:before\":false},[\"content:\\\"\\uf7ce\\\"\"]],[false,{\".fa-person-swimming:before\":false,\".fa-swimmer:before\":false},[\"content:\\\"\\uf5c4\\\"\"]],[false,{\".fa-person-through-window:before\":false},[\"content:\\\"\\ue433\\\"\"]],[false,{\".fa-person-walking:before\":false,\".fa-walking:before\":false},[\"content:\\\"\\uf554\\\"\"]],[false,{\".fa-person-walking-arrow-loop-left:before\":false},[\"content:\\\"\\ue551\\\"\"]],[false,{\".fa-person-walking-arrow-right:before\":false},[\"content:\\\"\\ue552\\\"\"]],[false,{\".fa-person-walking-dashed-line-arrow-right:before\":false},[\"content:\\\"\\ue553\\\"\"]],[false,{\".fa-person-walking-luggage:before\":false},[\"content:\\\"\\ue554\\\"\"]],[false,{\".fa-blind:before\":false,\".fa-person-walking-with-cane:before\":false},[\"content:\\\"\\uf29d\\\"\"]],[false,{\".fa-peseta-sign:before\":false},[\"content:\\\"\\ue221\\\"\"]],[false,{\".fa-peso-sign:before\":false},[\"content:\\\"\\ue222\\\"\"]],[false,{\".fa-phone:before\":false},[\"content:\\\"\\uf095\\\"\"]],[false,{\".fa-phone-alt:before\":false,\".fa-phone-flip:before\":false},[\"content:\\\"\\uf879\\\"\"]],[false,{\".fa-phone-slash:before\":false},[\"content:\\\"\\uf3dd\\\"\"]],[false,{\".fa-phone-volume:before\":false,\".fa-volume-control-phone:before\":false},[\"content:\\\"\\uf2a0\\\"\"]],[false,{\".fa-photo-film:before\":false,\".fa-photo-video:before\":false},[\"content:\\\"\\uf87c\\\"\"]],[false,{\".fa-piggy-bank:before\":false},[\"content:\\\"\\uf4d3\\\"\"]],[false,{\".fa-pills:before\":false},[\"content:\\\"\\uf484\\\"\"]],[false,{\".fa-pizza-slice:before\":false},[\"content:\\\"\\uf818\\\"\"]],[false,{\".fa-place-of-worship:before\":false},[\"content:\\\"\\uf67f\\\"\"]],[false,{\".fa-plane:before\":false},[\"content:\\\"\\uf072\\\"\"]],[false,{\".fa-plane-arrival:before\":false},[\"content:\\\"\\uf5af\\\"\"]],[false,{\".fa-plane-circle-check:before\":false},[\"content:\\\"\\ue555\\\"\"]],[false,{\".fa-plane-circle-exclamation:before\":false},[\"content:\\\"\\ue556\\\"\"]],[false,{\".fa-plane-circle-xmark:before\":false},[\"content:\\\"\\ue557\\\"\"]],[false,{\".fa-plane-departure:before\":false},[\"content:\\\"\\uf5b0\\\"\"]],[false,{\".fa-plane-lock:before\":false},[\"content:\\\"\\ue558\\\"\"]],[false,{\".fa-plane-slash:before\":false},[\"content:\\\"\\ue069\\\"\"]],[false,{\".fa-plane-up:before\":false},[\"content:\\\"\\ue22d\\\"\"]],[false,{\".fa-plant-wilt:before\":false},[\"content:\\\"\\ue43b\\\"\"]],[false,{\".fa-plate-wheat:before\":false},[\"content:\\\"\\ue55a\\\"\"]],[false,{\".fa-play:before\":false},[\"content:\\\"\\uf04b\\\"\"]],[false,{\".fa-plug:before\":false},[\"content:\\\"\\uf1e6\\\"\"]],[false,{\".fa-plug-circle-bolt:before\":false},[\"content:\\\"\\ue55b\\\"\"]],[false,{\".fa-plug-circle-check:before\":false},[\"content:\\\"\\ue55c\\\"\"]],[false,{\".fa-plug-circle-exclamation:before\":false},[\"content:\\\"\\ue55d\\\"\"]],[false,{\".fa-plug-circle-minus:before\":false},[\"content:\\\"\\ue55e\\\"\"]],[false,{\".fa-plug-circle-plus:before\":false},[\"content:\\\"\\ue55f\\\"\"]],[false,{\".fa-plug-circle-xmark:before\":false},[\"content:\\\"\\ue560\\\"\"]],[false,{\".fa-add:before\":false,\".fa-plus:before\":false},[\"content:\\\"+\\\"\"]],[false,{\".fa-plus-minus:before\":false},[\"content:\\\"\\ue43c\\\"\"]],[false,{\".fa-podcast:before\":false},[\"content:\\\"\\uf2ce\\\"\"]],[false,{\".fa-poo:before\":false},[\"content:\\\"\\uf2fe\\\"\"]],[false,{\".fa-poo-bolt:before\":false,\".fa-poo-storm:before\":false},[\"content:\\\"\\uf75a\\\"\"]],[false,{\".fa-poop:before\":false},[\"content:\\\"\\uf619\\\"\"]],[false,{\".fa-power-off:before\":false},[\"content:\\\"\\uf011\\\"\"]],[false,{\".fa-prescription:before\":false},[\"content:\\\"\\uf5b1\\\"\"]],[false,{\".fa-prescription-bottle:before\":false},[\"content:\\\"\\uf485\\\"\"]],[false,{\".fa-prescription-bottle-alt:before\":false,\".fa-prescription-bottle-medical:before\":false},[\"content:\\\"\\uf486\\\"\"]],[false,{\".fa-print:before\":false},[\"content:\\\"\\uf02f\\\"\"]],[false,{\".fa-pump-medical:before\":false},[\"content:\\\"\\ue06a\\\"\"]],[false,{\".fa-pump-soap:before\":false},[\"content:\\\"\\ue06b\\\"\"]],[false,{\".fa-puzzle-piece:before\":false},[\"content:\\\"\\uf12e\\\"\"]],[false,{\".fa-q:before\":false},[\"content:\\\"Q\\\"\"]],[false,{\".fa-qrcode:before\":false},[\"content:\\\"\\uf029\\\"\"]],[false,{\".fa-question:before\":false},[\"content:\\\"?\\\"\"]],[false,{\".fa-quote-left-alt:before\":false,\".fa-quote-left:before\":false},[\"content:\\\"\\uf10d\\\"\"]],[false,{\".fa-quote-right-alt:before\":false,\".fa-quote-right:before\":false},[\"content:\\\"\\uf10e\\\"\"]],[false,{\".fa-r:before\":false},[\"content:\\\"R\\\"\"]],[false,{\".fa-radiation:before\":false},[\"content:\\\"\\uf7b9\\\"\"]],[false,{\".fa-radio:before\":false},[\"content:\\\"\\uf8d7\\\"\"]],[false,{\".fa-rainbow:before\":false},[\"content:\\\"\\uf75b\\\"\"]],[false,{\".fa-ranking-star:before\":false},[\"content:\\\"\\ue561\\\"\"]],[false,{\".fa-receipt:before\":false},[\"content:\\\"\\uf543\\\"\"]],[false,{\".fa-record-vinyl:before\":false},[\"content:\\\"\\uf8d9\\\"\"]],[false,{\".fa-ad:before\":false,\".fa-rectangle-ad:before\":false},[\"content:\\\"\\uf641\\\"\"]],[false,{\".fa-list-alt:before\":false,\".fa-rectangle-list:before\":false},[\"content:\\\"\\uf022\\\"\"]],[false,{\".fa-rectangle-times:before\":false,\".fa-rectangle-xmark:before\":false,\".fa-times-rectangle:before\":false,\".fa-window-close:before\":false},[\"content:\\\"\\uf410\\\"\"]],[false,{\".fa-recycle:before\":false},[\"content:\\\"\\uf1b8\\\"\"]],[false,{\".fa-registered:before\":false},[\"content:\\\"\\uf25d\\\"\"]],[false,{\".fa-repeat:before\":false},[\"content:\\\"\\uf363\\\"\"]],[false,{\".fa-mail-reply:before\":false,\".fa-reply:before\":false},[\"content:\\\"\\uf3e5\\\"\"]],[false,{\".fa-mail-reply-all:before\":false,\".fa-reply-all:before\":false},[\"content:\\\"\\uf122\\\"\"]],[false,{\".fa-republican:before\":false},[\"content:\\\"\\uf75e\\\"\"]],[false,{\".fa-restroom:before\":false},[\"content:\\\"\\uf7bd\\\"\"]],[false,{\".fa-retweet:before\":false},[\"content:\\\"\\uf079\\\"\"]],[false,{\".fa-ribbon:before\":false},[\"content:\\\"\\uf4d6\\\"\"]],[false,{\".fa-right-from-bracket:before\":false,\".fa-sign-out-alt:before\":false},[\"content:\\\"\\uf2f5\\\"\"]],[false,{\".fa-exchange-alt:before\":false,\".fa-right-left:before\":false},[\"content:\\\"\\uf362\\\"\"]],[false,{\".fa-long-arrow-alt-right:before\":false,\".fa-right-long:before\":false},[\"content:\\\"\\uf30b\\\"\"]],[false,{\".fa-right-to-bracket:before\":false,\".fa-sign-in-alt:before\":false},[\"content:\\\"\\uf2f6\\\"\"]],[false,{\".fa-ring:before\":false},[\"content:\\\"\\uf70b\\\"\"]],[false,{\".fa-road:before\":false},[\"content:\\\"\\uf018\\\"\"]],[false,{\".fa-road-barrier:before\":false},[\"content:\\\"\\ue562\\\"\"]],[false,{\".fa-road-bridge:before\":false},[\"content:\\\"\\ue563\\\"\"]],[false,{\".fa-road-circle-check:before\":false},[\"content:\\\"\\ue564\\\"\"]],[false,{\".fa-road-circle-exclamation:before\":false},[\"content:\\\"\\ue565\\\"\"]],[false,{\".fa-road-circle-xmark:before\":false},[\"content:\\\"\\ue566\\\"\"]],[false,{\".fa-road-lock:before\":false},[\"content:\\\"\\ue567\\\"\"]],[false,{\".fa-road-spikes:before\":false},[\"content:\\\"\\ue568\\\"\"]],[false,{\".fa-robot:before\":false},[\"content:\\\"\\uf544\\\"\"]],[false,{\".fa-rocket:before\":false},[\"content:\\\"\\uf135\\\"\"]],[false,{\".fa-rotate:before\":false,\".fa-sync-alt:before\":false},[\"content:\\\"\\uf2f1\\\"\"]],[false,{\".fa-rotate-back:before\":false,\".fa-rotate-backward:before\":false,\".fa-rotate-left:before\":false,\".fa-undo-alt:before\":false},[\"content:\\\"\\uf2ea\\\"\"]],[false,{\".fa-redo-alt:before\":false,\".fa-rotate-forward:before\":false,\".fa-rotate-right:before\":false},[\"content:\\\"\\uf2f9\\\"\"]],[false,{\".fa-route:before\":false},[\"content:\\\"\\uf4d7\\\"\"]],[false,{\".fa-feed:before\":false,\".fa-rss:before\":false},[\"content:\\\"\\uf09e\\\"\"]],[false,{\".fa-rouble:before\":false,\".fa-rub:before\":false,\".fa-ruble-sign:before\":false,\".fa-ruble:before\":false},[\"content:\\\"\\uf158\\\"\"]],[false,{\".fa-rug:before\":false},[\"content:\\\"\\ue569\\\"\"]],[false,{\".fa-ruler:before\":false},[\"content:\\\"\\uf545\\\"\"]],[false,{\".fa-ruler-combined:before\":false},[\"content:\\\"\\uf546\\\"\"]],[false,{\".fa-ruler-horizontal:before\":false},[\"content:\\\"\\uf547\\\"\"]],[false,{\".fa-ruler-vertical:before\":false},[\"content:\\\"\\uf548\\\"\"]],[false,{\".fa-rupee-sign:before\":false,\".fa-rupee:before\":false},[\"content:\\\"\\uf156\\\"\"]],[false,{\".fa-rupiah-sign:before\":false},[\"content:\\\"\\ue23d\\\"\"]],[false,{\".fa-s:before\":false},[\"content:\\\"S\\\"\"]],[false,{\".fa-sack-dollar:before\":false},[\"content:\\\"\\uf81d\\\"\"]],[false,{\".fa-sack-xmark:before\":false},[\"content:\\\"\\ue56a\\\"\"]],[false,{\".fa-sailboat:before\":false},[\"content:\\\"\\ue445\\\"\"]],[false,{\".fa-satellite:before\":false},[\"content:\\\"\\uf7bf\\\"\"]],[false,{\".fa-satellite-dish:before\":false},[\"content:\\\"\\uf7c0\\\"\"]],[false,{\".fa-balance-scale:before\":false,\".fa-scale-balanced:before\":false},[\"content:\\\"\\uf24e\\\"\"]],[false,{\".fa-balance-scale-left:before\":false,\".fa-scale-unbalanced:before\":false},[\"content:\\\"\\uf515\\\"\"]],[false,{\".fa-balance-scale-right:before\":false,\".fa-scale-unbalanced-flip:before\":false},[\"content:\\\"\\uf516\\\"\"]],[false,{\".fa-school:before\":false},[\"content:\\\"\\uf549\\\"\"]],[false,{\".fa-school-circle-check:before\":false},[\"content:\\\"\\ue56b\\\"\"]],[false,{\".fa-school-circle-exclamation:before\":false},[\"content:\\\"\\ue56c\\\"\"]],[false,{\".fa-school-circle-xmark:before\":false},[\"content:\\\"\\ue56d\\\"\"]],[false,{\".fa-school-flag:before\":false},[\"content:\\\"\\ue56e\\\"\"]],[false,{\".fa-school-lock:before\":false},[\"content:\\\"\\ue56f\\\"\"]],[false,{\".fa-cut:before\":false,\".fa-scissors:before\":false},[\"content:\\\"\\uf0c4\\\"\"]],[false,{\".fa-screwdriver:before\":false},[\"content:\\\"\\uf54a\\\"\"]],[false,{\".fa-screwdriver-wrench:before\":false,\".fa-tools:before\":false},[\"content:\\\"\\uf7d9\\\"\"]],[false,{\".fa-scroll:before\":false},[\"content:\\\"\\uf70e\\\"\"]],[false,{\".fa-scroll-torah:before\":false,\".fa-torah:before\":false},[\"content:\\\"\\uf6a0\\\"\"]],[false,{\".fa-sd-card:before\":false},[\"content:\\\"\\uf7c2\\\"\"]],[false,{\".fa-section:before\":false},[\"content:\\\"\\ue447\\\"\"]],[false,{\".fa-seedling:before\":false,\".fa-sprout:before\":false},[\"content:\\\"\\uf4d8\\\"\"]],[false,{\".fa-server:before\":false},[\"content:\\\"\\uf233\\\"\"]],[false,{\".fa-shapes:before\":false,\".fa-triangle-circle-square:before\":false},[\"content:\\\"\\uf61f\\\"\"]],[false,{\".fa-arrow-turn-right:before\":false,\".fa-mail-forward:before\":false,\".fa-share:before\":false},[\"content:\\\"\\uf064\\\"\"]],[false,{\".fa-share-from-square:before\":false,\".fa-share-square:before\":false},[\"content:\\\"\\uf14d\\\"\"]],[false,{\".fa-share-alt:before\":false,\".fa-share-nodes:before\":false},[\"content:\\\"\\uf1e0\\\"\"]],[false,{\".fa-sheet-plastic:before\":false},[\"content:\\\"\\ue571\\\"\"]],[false,{\".fa-ils:before\":false,\".fa-shekel-sign:before\":false,\".fa-shekel:before\":false,\".fa-sheqel-sign:before\":false,\".fa-sheqel:before\":false},[\"content:\\\"\\uf20b\\\"\"]],[false,{\".fa-shield-blank:before\":false,\".fa-shield:before\":false},[\"content:\\\"\\uf132\\\"\"]],[false,{\".fa-shield-cat:before\":false},[\"content:\\\"\\ue572\\\"\"]],[false,{\".fa-shield-dog:before\":false},[\"content:\\\"\\ue573\\\"\"]],[false,{\".fa-shield-alt:before\":false,\".fa-shield-halved:before\":false},[\"content:\\\"\\uf3ed\\\"\"]],[false,{\".fa-shield-heart:before\":false},[\"content:\\\"\\ue574\\\"\"]],[false,{\".fa-shield-virus:before\":false},[\"content:\\\"\\ue06c\\\"\"]],[false,{\".fa-ship:before\":false},[\"content:\\\"\\uf21a\\\"\"]],[false,{\".fa-shirt:before\":false,\".fa-t-shirt:before\":false,\".fa-tshirt:before\":false},[\"content:\\\"\\uf553\\\"\"]],[false,{\".fa-shoe-prints:before\":false},[\"content:\\\"\\uf54b\\\"\"]],[false,{\".fa-shop:before\":false,\".fa-store-alt:before\":false},[\"content:\\\"\\uf54f\\\"\"]],[false,{\".fa-shop-lock:before\":false},[\"content:\\\"\\ue4a5\\\"\"]],[false,{\".fa-shop-slash:before\":false,\".fa-store-alt-slash:before\":false},[\"content:\\\"\\ue070\\\"\"]],[false,{\".fa-shower:before\":false},[\"content:\\\"\\uf2cc\\\"\"]],[false,{\".fa-shrimp:before\":false},[\"content:\\\"\\ue448\\\"\"]],[false,{\".fa-random:before\":false,\".fa-shuffle:before\":false},[\"content:\\\"\\uf074\\\"\"]],[false,{\".fa-shuttle-space:before\":false,\".fa-space-shuttle:before\":false},[\"content:\\\"\\uf197\\\"\"]],[false,{\".fa-sign-hanging:before\":false,\".fa-sign:before\":false},[\"content:\\\"\\uf4d9\\\"\"]],[false,{\".fa-signal-5:before\":false,\".fa-signal-perfect:before\":false,\".fa-signal:before\":false},[\"content:\\\"\\uf012\\\"\"]],[false,{\".fa-signature:before\":false},[\"content:\\\"\\uf5b7\\\"\"]],[false,{\".fa-map-signs:before\":false,\".fa-signs-post:before\":false},[\"content:\\\"\\uf277\\\"\"]],[false,{\".fa-sim-card:before\":false},[\"content:\\\"\\uf7c4\\\"\"]],[false,{\".fa-sink:before\":false},[\"content:\\\"\\ue06d\\\"\"]],[false,{\".fa-sitemap:before\":false},[\"content:\\\"\\uf0e8\\\"\"]],[false,{\".fa-skull:before\":false},[\"content:\\\"\\uf54c\\\"\"]],[false,{\".fa-skull-crossbones:before\":false},[\"content:\\\"\\uf714\\\"\"]],[false,{\".fa-slash:before\":false},[\"content:\\\"\\uf715\\\"\"]],[false,{\".fa-sleigh:before\":false},[\"content:\\\"\\uf7cc\\\"\"]],[false,{\".fa-sliders-h:before\":false,\".fa-sliders:before\":false},[\"content:\\\"\\uf1de\\\"\"]],[false,{\".fa-smog:before\":false},[\"content:\\\"\\uf75f\\\"\"]],[false,{\".fa-smoking:before\":false},[\"content:\\\"\\uf48d\\\"\"]],[false,{\".fa-snowflake:before\":false},[\"content:\\\"\\uf2dc\\\"\"]],[false,{\".fa-snowman:before\":false},[\"content:\\\"\\uf7d0\\\"\"]],[false,{\".fa-snowplow:before\":false},[\"content:\\\"\\uf7d2\\\"\"]],[false,{\".fa-soap:before\":false},[\"content:\\\"\\ue06e\\\"\"]],[false,{\".fa-socks:before\":false},[\"content:\\\"\\uf696\\\"\"]],[false,{\".fa-solar-panel:before\":false},[\"content:\\\"\\uf5ba\\\"\"]],[false,{\".fa-sort:before\":false,\".fa-unsorted:before\":false},[\"content:\\\"\\uf0dc\\\"\"]],[false,{\".fa-sort-desc:before\":false,\".fa-sort-down:before\":false},[\"content:\\\"\\uf0dd\\\"\"]],[false,{\".fa-sort-asc:before\":false,\".fa-sort-up:before\":false},[\"content:\\\"\\uf0de\\\"\"]],[false,{\".fa-spa:before\":false},[\"content:\\\"\\uf5bb\\\"\"]],[false,{\".fa-pastafarianism:before\":false,\".fa-spaghetti-monster-flying:before\":false},[\"content:\\\"\\uf67b\\\"\"]],[false,{\".fa-spell-check:before\":false},[\"content:\\\"\\uf891\\\"\"]],[false,{\".fa-spider:before\":false},[\"content:\\\"\\uf717\\\"\"]],[false,{\".fa-spinner:before\":false},[\"content:\\\"\\uf110\\\"\"]],[false,{\".fa-splotch:before\":false},[\"content:\\\"\\uf5bc\\\"\"]],[false,{\".fa-spoon:before\":false,\".fa-utensil-spoon:before\":false},[\"content:\\\"\\uf2e5\\\"\"]],[false,{\".fa-spray-can:before\":false},[\"content:\\\"\\uf5bd\\\"\"]],[false,{\".fa-air-freshener:before\":false,\".fa-spray-can-sparkles:before\":false},[\"content:\\\"\\uf5d0\\\"\"]],[false,{\".fa-square:before\":false},[\"content:\\\"\\uf0c8\\\"\"]],[false,{\".fa-external-link-square:before\":false,\".fa-square-arrow-up-right:before\":false},[\"content:\\\"\\uf14c\\\"\"]],[false,{\".fa-caret-square-down:before\":false,\".fa-square-caret-down:before\":false},[\"content:\\\"\\uf150\\\"\"]],[false,{\".fa-caret-square-left:before\":false,\".fa-square-caret-left:before\":false},[\"content:\\\"\\uf191\\\"\"]],[false,{\".fa-caret-square-right:before\":false,\".fa-square-caret-right:before\":false},[\"content:\\\"\\uf152\\\"\"]],[false,{\".fa-caret-square-up:before\":false,\".fa-square-caret-up:before\":false},[\"content:\\\"\\uf151\\\"\"]],[false,{\".fa-check-square:before\":false,\".fa-square-check:before\":false},[\"content:\\\"\\uf14a\\\"\"]],[false,{\".fa-envelope-square:before\":false,\".fa-square-envelope:before\":false},[\"content:\\\"\\uf199\\\"\"]],[false,{\".fa-square-full:before\":false},[\"content:\\\"\\uf45c\\\"\"]],[false,{\".fa-h-square:before\":false,\".fa-square-h:before\":false},[\"content:\\\"\\uf0fd\\\"\"]],[false,{\".fa-minus-square:before\":false,\".fa-square-minus:before\":false},[\"content:\\\"\\uf146\\\"\"]],[false,{\".fa-square-nfi:before\":false},[\"content:\\\"\\ue576\\\"\"]],[false,{\".fa-parking:before\":false,\".fa-square-parking:before\":false},[\"content:\\\"\\uf540\\\"\"]],[false,{\".fa-pen-square:before\":false,\".fa-pencil-square:before\":false,\".fa-square-pen:before\":false},[\"content:\\\"\\uf14b\\\"\"]],[false,{\".fa-square-person-confined:before\":false},[\"content:\\\"\\ue577\\\"\"]],[false,{\".fa-phone-square:before\":false,\".fa-square-phone:before\":false},[\"content:\\\"\\uf098\\\"\"]],[false,{\".fa-phone-square-alt:before\":false,\".fa-square-phone-flip:before\":false},[\"content:\\\"\\uf87b\\\"\"]],[false,{\".fa-plus-square:before\":false,\".fa-square-plus:before\":false},[\"content:\\\"\\uf0fe\\\"\"]],[false,{\".fa-poll-h:before\":false,\".fa-square-poll-horizontal:before\":false},[\"content:\\\"\\uf682\\\"\"]],[false,{\".fa-poll:before\":false,\".fa-square-poll-vertical:before\":false},[\"content:\\\"\\uf681\\\"\"]],[false,{\".fa-square-root-alt:before\":false,\".fa-square-root-variable:before\":false},[\"content:\\\"\\uf698\\\"\"]],[false,{\".fa-rss-square:before\":false,\".fa-square-rss:before\":false},[\"content:\\\"\\uf143\\\"\"]],[false,{\".fa-share-alt-square:before\":false,\".fa-square-share-nodes:before\":false},[\"content:\\\"\\uf1e1\\\"\"]],[false,{\".fa-external-link-square-alt:before\":false,\".fa-square-up-right:before\":false},[\"content:\\\"\\uf360\\\"\"]],[false,{\".fa-square-virus:before\":false},[\"content:\\\"\\ue578\\\"\"]],[false,{\".fa-square-xmark:before\":false,\".fa-times-square:before\":false,\".fa-xmark-square:before\":false},[\"content:\\\"\\uf2d3\\\"\"]],[false,{\".fa-rod-asclepius:before\":false,\".fa-rod-snake:before\":false,\".fa-staff-aesculapius:before\":false,\".fa-staff-snake:before\":false},[\"content:\\\"\\ue579\\\"\"]],[false,{\".fa-stairs:before\":false},[\"content:\\\"\\ue289\\\"\"]],[false,{\".fa-stamp:before\":false},[\"content:\\\"\\uf5bf\\\"\"]],[false,{\".fa-star:before\":false},[\"content:\\\"\\uf005\\\"\"]],[false,{\".fa-star-and-crescent:before\":false},[\"content:\\\"\\uf699\\\"\"]],[false,{\".fa-star-half:before\":false},[\"content:\\\"\\uf089\\\"\"]],[false,{\".fa-star-half-alt:before\":false,\".fa-star-half-stroke:before\":false},[\"content:\\\"\\uf5c0\\\"\"]],[false,{\".fa-star-of-david:before\":false},[\"content:\\\"\\uf69a\\\"\"]],[false,{\".fa-star-of-life:before\":false},[\"content:\\\"\\uf621\\\"\"]],[false,{\".fa-gbp:before\":false,\".fa-pound-sign:before\":false,\".fa-sterling-sign:before\":false},[\"content:\\\"\\uf154\\\"\"]],[false,{\".fa-stethoscope:before\":false},[\"content:\\\"\\uf0f1\\\"\"]],[false,{\".fa-stop:before\":false},[\"content:\\\"\\uf04d\\\"\"]],[false,{\".fa-stopwatch:before\":false},[\"content:\\\"\\uf2f2\\\"\"]],[false,{\".fa-stopwatch-20:before\":false},[\"content:\\\"\\ue06f\\\"\"]],[false,{\".fa-store:before\":false},[\"content:\\\"\\uf54e\\\"\"]],[false,{\".fa-store-slash:before\":false},[\"content:\\\"\\ue071\\\"\"]],[false,{\".fa-street-view:before\":false},[\"content:\\\"\\uf21d\\\"\"]],[false,{\".fa-strikethrough:before\":false},[\"content:\\\"\\uf0cc\\\"\"]],[false,{\".fa-stroopwafel:before\":false},[\"content:\\\"\\uf551\\\"\"]],[false,{\".fa-subscript:before\":false},[\"content:\\\"\\uf12c\\\"\"]],[false,{\".fa-suitcase:before\":false},[\"content:\\\"\\uf0f2\\\"\"]],[false,{\".fa-medkit:before\":false,\".fa-suitcase-medical:before\":false},[\"content:\\\"\\uf0fa\\\"\"]],[false,{\".fa-suitcase-rolling:before\":false},[\"content:\\\"\\uf5c1\\\"\"]],[false,{\".fa-sun:before\":false},[\"content:\\\"\\uf185\\\"\"]],[false,{\".fa-sun-plant-wilt:before\":false},[\"content:\\\"\\ue57a\\\"\"]],[false,{\".fa-superscript:before\":false},[\"content:\\\"\\uf12b\\\"\"]],[false,{\".fa-swatchbook:before\":false},[\"content:\\\"\\uf5c3\\\"\"]],[false,{\".fa-synagogue:before\":false},[\"content:\\\"\\uf69b\\\"\"]],[false,{\".fa-syringe:before\":false},[\"content:\\\"\\uf48e\\\"\"]],[false,{\".fa-t:before\":false},[\"content:\\\"T\\\"\"]],[false,{\".fa-table:before\":false},[\"content:\\\"\\uf0ce\\\"\"]],[false,{\".fa-table-cells:before\":false,\".fa-th:before\":false},[\"content:\\\"\\uf00a\\\"\"]],[false,{\".fa-table-cells-large:before\":false,\".fa-th-large:before\":false},[\"content:\\\"\\uf009\\\"\"]],[false,{\".fa-columns:before\":false,\".fa-table-columns:before\":false},[\"content:\\\"\\uf0db\\\"\"]],[false,{\".fa-table-list:before\":false,\".fa-th-list:before\":false},[\"content:\\\"\\uf00b\\\"\"]],[false,{\".fa-ping-pong-paddle-ball:before\":false,\".fa-table-tennis-paddle-ball:before\":false,\".fa-table-tennis:before\":false},[\"content:\\\"\\uf45d\\\"\"]],[false,{\".fa-tablet-android:before\":false,\".fa-tablet:before\":false},[\"content:\\\"\\uf3fb\\\"\"]],[false,{\".fa-tablet-button:before\":false},[\"content:\\\"\\uf10a\\\"\"]],[false,{\".fa-tablet-alt:before\":false,\".fa-tablet-screen-button:before\":false},[\"content:\\\"\\uf3fa\\\"\"]],[false,{\".fa-tablets:before\":false},[\"content:\\\"\\uf490\\\"\"]],[false,{\".fa-digital-tachograph:before\":false,\".fa-tachograph-digital:before\":false},[\"content:\\\"\\uf566\\\"\"]],[false,{\".fa-tag:before\":false},[\"content:\\\"\\uf02b\\\"\"]],[false,{\".fa-tags:before\":false},[\"content:\\\"\\uf02c\\\"\"]],[false,{\".fa-tape:before\":false},[\"content:\\\"\\uf4db\\\"\"]],[false,{\".fa-tarp:before\":false},[\"content:\\\"\\ue57b\\\"\"]],[false,{\".fa-tarp-droplet:before\":false},[\"content:\\\"\\ue57c\\\"\"]],[false,{\".fa-cab:before\":false,\".fa-taxi:before\":false},[\"content:\\\"\\uf1ba\\\"\"]],[false,{\".fa-teeth:before\":false},[\"content:\\\"\\uf62e\\\"\"]],[false,{\".fa-teeth-open:before\":false},[\"content:\\\"\\uf62f\\\"\"]],[false,{\".fa-temperature-arrow-down:before\":false,\".fa-temperature-down:before\":false},[\"content:\\\"\\ue03f\\\"\"]],[false,{\".fa-temperature-arrow-up:before\":false,\".fa-temperature-up:before\":false},[\"content:\\\"\\ue040\\\"\"]],[false,{\".fa-temperature-0:before\":false,\".fa-temperature-empty:before\":false,\".fa-thermometer-0:before\":false,\".fa-thermometer-empty:before\":false},[\"content:\\\"\\uf2cb\\\"\"]],[false,{\".fa-temperature-4:before\":false,\".fa-temperature-full:before\":false,\".fa-thermometer-4:before\":false,\".fa-thermometer-full:before\":false},[\"content:\\\"\\uf2c7\\\"\"]],[false,{\".fa-temperature-2:before\":false,\".fa-temperature-half:before\":false,\".fa-thermometer-2:before\":false,\".fa-thermometer-half:before\":false},[\"content:\\\"\\uf2c9\\\"\"]],[false,{\".fa-temperature-high:before\":false},[\"content:\\\"\\uf769\\\"\"]],[false,{\".fa-temperature-low:before\":false},[\"content:\\\"\\uf76b\\\"\"]],[false,{\".fa-temperature-1:before\":false,\".fa-temperature-quarter:before\":false,\".fa-thermometer-1:before\":false,\".fa-thermometer-quarter:before\":false},[\"content:\\\"\\uf2ca\\\"\"]],[false,{\".fa-temperature-3:before\":false,\".fa-temperature-three-quarters:before\":false,\".fa-thermometer-3:before\":false,\".fa-thermometer-three-quarters:before\":false},[\"content:\\\"\\uf2c8\\\"\"]],[false,{\".fa-tenge-sign:before\":false,\".fa-tenge:before\":false},[\"content:\\\"\\uf7d7\\\"\"]],[false,{\".fa-tent:before\":false},[\"content:\\\"\\ue57d\\\"\"]],[false,{\".fa-tent-arrow-down-to-line:before\":false},[\"content:\\\"\\ue57e\\\"\"]],[false,{\".fa-tent-arrow-left-right:before\":false},[\"content:\\\"\\ue57f\\\"\"]],[false,{\".fa-tent-arrow-turn-left:before\":false},[\"content:\\\"\\ue580\\\"\"]],[false,{\".fa-tent-arrows-down:before\":false},[\"content:\\\"\\ue581\\\"\"]],[false,{\".fa-tents:before\":false},[\"content:\\\"\\ue582\\\"\"]],[false,{\".fa-terminal:before\":false},[\"content:\\\"\\uf120\\\"\"]],[false,{\".fa-text-height:before\":false},[\"content:\\\"\\uf034\\\"\"]],[false,{\".fa-remove-format:before\":false,\".fa-text-slash:before\":false},[\"content:\\\"\\uf87d\\\"\"]],[false,{\".fa-text-width:before\":false},[\"content:\\\"\\uf035\\\"\"]],[false,{\".fa-thermometer:before\":false},[\"content:\\\"\\uf491\\\"\"]],[false,{\".fa-thumbs-down:before\":false},[\"content:\\\"\\uf165\\\"\"]],[false,{\".fa-thumbs-up:before\":false},[\"content:\\\"\\uf164\\\"\"]],[false,{\".fa-thumb-tack:before\":false,\".fa-thumbtack:before\":false},[\"content:\\\"\\uf08d\\\"\"]],[false,{\".fa-ticket:before\":false},[\"content:\\\"\\uf145\\\"\"]],[false,{\".fa-ticket-alt:before\":false,\".fa-ticket-simple:before\":false},[\"content:\\\"\\uf3ff\\\"\"]],[false,{\".fa-timeline:before\":false},[\"content:\\\"\\ue29c\\\"\"]],[false,{\".fa-toggle-off:before\":false},[\"content:\\\"\\uf204\\\"\"]],[false,{\".fa-toggle-on:before\":false},[\"content:\\\"\\uf205\\\"\"]],[false,{\".fa-toilet:before\":false},[\"content:\\\"\\uf7d8\\\"\"]],[false,{\".fa-toilet-paper:before\":false},[\"content:\\\"\\uf71e\\\"\"]],[false,{\".fa-toilet-paper-slash:before\":false},[\"content:\\\"\\ue072\\\"\"]],[false,{\".fa-toilet-portable:before\":false},[\"content:\\\"\\ue583\\\"\"]],[false,{\".fa-toilets-portable:before\":false},[\"content:\\\"\\ue584\\\"\"]],[false,{\".fa-toolbox:before\":false},[\"content:\\\"\\uf552\\\"\"]],[false,{\".fa-tooth:before\":false},[\"content:\\\"\\uf5c9\\\"\"]],[false,{\".fa-torii-gate:before\":false},[\"content:\\\"\\uf6a1\\\"\"]],[false,{\".fa-tornado:before\":false},[\"content:\\\"\\uf76f\\\"\"]],[false,{\".fa-broadcast-tower:before\":false,\".fa-tower-broadcast:before\":false},[\"content:\\\"\\uf519\\\"\"]],[false,{\".fa-tower-cell:before\":false},[\"content:\\\"\\ue585\\\"\"]],[false,{\".fa-tower-observation:before\":false},[\"content:\\\"\\ue586\\\"\"]],[false,{\".fa-tractor:before\":false},[\"content:\\\"\\uf722\\\"\"]],[false,{\".fa-trademark:before\":false},[\"content:\\\"\\uf25c\\\"\"]],[false,{\".fa-traffic-light:before\":false},[\"content:\\\"\\uf637\\\"\"]],[false,{\".fa-trailer:before\":false},[\"content:\\\"\\ue041\\\"\"]],[false,{\".fa-train:before\":false},[\"content:\\\"\\uf238\\\"\"]],[false,{\".fa-subway:before\":false,\".fa-train-subway:before\":false},[\"content:\\\"\\uf239\\\"\"]],[false,{\".fa-train-tram:before\":false,\".fa-tram:before\":false},[\"content:\\\"\\uf7da\\\"\"]],[false,{\".fa-transgender-alt:before\":false,\".fa-transgender:before\":false},[\"content:\\\"\\uf225\\\"\"]],[false,{\".fa-trash:before\":false},[\"content:\\\"\\uf1f8\\\"\"]],[false,{\".fa-trash-arrow-up:before\":false,\".fa-trash-restore:before\":false},[\"content:\\\"\\uf829\\\"\"]],[false,{\".fa-trash-alt:before\":false,\".fa-trash-can:before\":false},[\"content:\\\"\\uf2ed\\\"\"]],[false,{\".fa-trash-can-arrow-up:before\":false,\".fa-trash-restore-alt:before\":false},[\"content:\\\"\\uf82a\\\"\"]],[false,{\".fa-tree:before\":false},[\"content:\\\"\\uf1bb\\\"\"]],[false,{\".fa-tree-city:before\":false},[\"content:\\\"\\ue587\\\"\"]],[false,{\".fa-exclamation-triangle:before\":false,\".fa-triangle-exclamation:before\":false,\".fa-warning:before\":false},[\"content:\\\"\\uf071\\\"\"]],[false,{\".fa-trophy:before\":false},[\"content:\\\"\\uf091\\\"\"]],[false,{\".fa-trowel:before\":false},[\"content:\\\"\\ue589\\\"\"]],[false,{\".fa-trowel-bricks:before\":false},[\"content:\\\"\\ue58a\\\"\"]],[false,{\".fa-truck:before\":false},[\"content:\\\"\\uf0d1\\\"\"]],[false,{\".fa-truck-arrow-right:before\":false},[\"content:\\\"\\ue58b\\\"\"]],[false,{\".fa-truck-droplet:before\":false},[\"content:\\\"\\ue58c\\\"\"]],[false,{\".fa-shipping-fast:before\":false,\".fa-truck-fast:before\":false},[\"content:\\\"\\uf48b\\\"\"]],[false,{\".fa-truck-field:before\":false},[\"content:\\\"\\ue58d\\\"\"]],[false,{\".fa-truck-field-un:before\":false},[\"content:\\\"\\ue58e\\\"\"]],[false,{\".fa-truck-front:before\":false},[\"content:\\\"\\ue2b7\\\"\"]],[false,{\".fa-ambulance:before\":false,\".fa-truck-medical:before\":false},[\"content:\\\"\\uf0f9\\\"\"]],[false,{\".fa-truck-monster:before\":false},[\"content:\\\"\\uf63b\\\"\"]],[false,{\".fa-truck-moving:before\":false},[\"content:\\\"\\uf4df\\\"\"]],[false,{\".fa-truck-pickup:before\":false},[\"content:\\\"\\uf63c\\\"\"]],[false,{\".fa-truck-plane:before\":false},[\"content:\\\"\\ue58f\\\"\"]],[false,{\".fa-truck-loading:before\":false,\".fa-truck-ramp-box:before\":false},[\"content:\\\"\\uf4de\\\"\"]],[false,{\".fa-teletype:before\":false,\".fa-tty:before\":false},[\"content:\\\"\\uf1e4\\\"\"]],[false,{\".fa-try:before\":false,\".fa-turkish-lira-sign:before\":false,\".fa-turkish-lira:before\":false},[\"content:\\\"\\ue2bb\\\"\"]],[false,{\".fa-level-down-alt:before\":false,\".fa-turn-down:before\":false},[\"content:\\\"\\uf3be\\\"\"]],[false,{\".fa-level-up-alt:before\":false,\".fa-turn-up:before\":false},[\"content:\\\"\\uf3bf\\\"\"]],[false,{\".fa-television:before\":false,\".fa-tv-alt:before\":false,\".fa-tv:before\":false},[\"content:\\\"\\uf26c\\\"\"]],[false,{\".fa-u:before\":false},[\"content:\\\"U\\\"\"]],[false,{\".fa-umbrella:before\":false},[\"content:\\\"\\uf0e9\\\"\"]],[false,{\".fa-umbrella-beach:before\":false},[\"content:\\\"\\uf5ca\\\"\"]],[false,{\".fa-underline:before\":false},[\"content:\\\"\\uf0cd\\\"\"]],[false,{\".fa-universal-access:before\":false},[\"content:\\\"\\uf29a\\\"\"]],[false,{\".fa-unlock:before\":false},[\"content:\\\"\\uf09c\\\"\"]],[false,{\".fa-unlock-alt:before\":false,\".fa-unlock-keyhole:before\":false},[\"content:\\\"\\uf13e\\\"\"]],[false,{\".fa-arrows-alt-v:before\":false,\".fa-up-down:before\":false},[\"content:\\\"\\uf338\\\"\"]],[false,{\".fa-arrows-alt:before\":false,\".fa-up-down-left-right:before\":false},[\"content:\\\"\\uf0b2\\\"\"]],[false,{\".fa-long-arrow-alt-up:before\":false,\".fa-up-long:before\":false},[\"content:\\\"\\uf30c\\\"\"]],[false,{\".fa-expand-alt:before\":false,\".fa-up-right-and-down-left-from-center:before\":false},[\"content:\\\"\\uf424\\\"\"]],[false,{\".fa-external-link-alt:before\":false,\".fa-up-right-from-square:before\":false},[\"content:\\\"\\uf35d\\\"\"]],[false,{\".fa-upload:before\":false},[\"content:\\\"\\uf093\\\"\"]],[false,{\".fa-user:before\":false},[\"content:\\\"\\uf007\\\"\"]],[false,{\".fa-user-astronaut:before\":false},[\"content:\\\"\\uf4fb\\\"\"]],[false,{\".fa-user-check:before\":false},[\"content:\\\"\\uf4fc\\\"\"]],[false,{\".fa-user-clock:before\":false},[\"content:\\\"\\uf4fd\\\"\"]],[false,{\".fa-user-doctor:before\":false,\".fa-user-md:before\":false},[\"content:\\\"\\uf0f0\\\"\"]],[false,{\".fa-user-cog:before\":false,\".fa-user-gear:before\":false},[\"content:\\\"\\uf4fe\\\"\"]],[false,{\".fa-user-graduate:before\":false},[\"content:\\\"\\uf501\\\"\"]],[false,{\".fa-user-friends:before\":false,\".fa-user-group:before\":false},[\"content:\\\"\\uf500\\\"\"]],[false,{\".fa-user-injured:before\":false},[\"content:\\\"\\uf728\\\"\"]],[false,{\".fa-user-alt:before\":false,\".fa-user-large:before\":false},[\"content:\\\"\\uf406\\\"\"]],[false,{\".fa-user-alt-slash:before\":false,\".fa-user-large-slash:before\":false},[\"content:\\\"\\uf4fa\\\"\"]],[false,{\".fa-user-lock:before\":false},[\"content:\\\"\\uf502\\\"\"]],[false,{\".fa-user-minus:before\":false},[\"content:\\\"\\uf503\\\"\"]],[false,{\".fa-user-ninja:before\":false},[\"content:\\\"\\uf504\\\"\"]],[false,{\".fa-user-nurse:before\":false},[\"content:\\\"\\uf82f\\\"\"]],[false,{\".fa-user-edit:before\":false,\".fa-user-pen:before\":false},[\"content:\\\"\\uf4ff\\\"\"]],[false,{\".fa-user-plus:before\":false},[\"content:\\\"\\uf234\\\"\"]],[false,{\".fa-user-secret:before\":false},[\"content:\\\"\\uf21b\\\"\"]],[false,{\".fa-user-shield:before\":false},[\"content:\\\"\\uf505\\\"\"]],[false,{\".fa-user-slash:before\":false},[\"content:\\\"\\uf506\\\"\"]],[false,{\".fa-user-tag:before\":false},[\"content:\\\"\\uf507\\\"\"]],[false,{\".fa-user-tie:before\":false},[\"content:\\\"\\uf508\\\"\"]],[false,{\".fa-user-times:before\":false,\".fa-user-xmark:before\":false},[\"content:\\\"\\uf235\\\"\"]],[false,{\".fa-users:before\":false},[\"content:\\\"\\uf0c0\\\"\"]],[false,{\".fa-users-between-lines:before\":false},[\"content:\\\"\\ue591\\\"\"]],[false,{\".fa-users-cog:before\":false,\".fa-users-gear:before\":false},[\"content:\\\"\\uf509\\\"\"]],[false,{\".fa-users-line:before\":false},[\"content:\\\"\\ue592\\\"\"]],[false,{\".fa-users-rays:before\":false},[\"content:\\\"\\ue593\\\"\"]],[false,{\".fa-users-rectangle:before\":false},[\"content:\\\"\\ue594\\\"\"]],[false,{\".fa-users-slash:before\":false},[\"content:\\\"\\ue073\\\"\"]],[false,{\".fa-users-viewfinder:before\":false},[\"content:\\\"\\ue595\\\"\"]],[false,{\".fa-cutlery:before\":false,\".fa-utensils:before\":false},[\"content:\\\"\\uf2e7\\\"\"]],[false,{\".fa-v:before\":false},[\"content:\\\"V\\\"\"]],[false,{\".fa-shuttle-van:before\":false,\".fa-van-shuttle:before\":false},[\"content:\\\"\\uf5b6\\\"\"]],[false,{\".fa-vault:before\":false},[\"content:\\\"\\ue2c5\\\"\"]],[false,{\".fa-vector-square:before\":false},[\"content:\\\"\\uf5cb\\\"\"]],[false,{\".fa-venus:before\":false},[\"content:\\\"\\uf221\\\"\"]],[false,{\".fa-venus-double:before\":false},[\"content:\\\"\\uf226\\\"\"]],[false,{\".fa-venus-mars:before\":false},[\"content:\\\"\\uf228\\\"\"]],[false,{\".fa-vest:before\":false},[\"content:\\\"\\ue085\\\"\"]],[false,{\".fa-vest-patches:before\":false},[\"content:\\\"\\ue086\\\"\"]],[false,{\".fa-vial:before\":false},[\"content:\\\"\\uf492\\\"\"]],[false,{\".fa-vial-circle-check:before\":false},[\"content:\\\"\\ue596\\\"\"]],[false,{\".fa-vial-virus:before\":false},[\"content:\\\"\\ue597\\\"\"]],[false,{\".fa-vials:before\":false},[\"content:\\\"\\uf493\\\"\"]],[false,{\".fa-video-camera:before\":false,\".fa-video:before\":false},[\"content:\\\"\\uf03d\\\"\"]],[false,{\".fa-video-slash:before\":false},[\"content:\\\"\\uf4e2\\\"\"]],[false,{\".fa-vihara:before\":false},[\"content:\\\"\\uf6a7\\\"\"]],[false,{\".fa-virus:before\":false},[\"content:\\\"\\ue074\\\"\"]],[false,{\".fa-virus-covid:before\":false},[\"content:\\\"\\ue4a8\\\"\"]],[false,{\".fa-virus-covid-slash:before\":false},[\"content:\\\"\\ue4a9\\\"\"]],[false,{\".fa-virus-slash:before\":false},[\"content:\\\"\\ue075\\\"\"]],[false,{\".fa-viruses:before\":false},[\"content:\\\"\\ue076\\\"\"]],[false,{\".fa-voicemail:before\":false},[\"content:\\\"\\uf897\\\"\"]],[false,{\".fa-volcano:before\":false},[\"content:\\\"\\uf770\\\"\"]],[false,{\".fa-volleyball-ball:before\":false,\".fa-volleyball:before\":false},[\"content:\\\"\\uf45f\\\"\"]],[false,{\".fa-volume-high:before\":false,\".fa-volume-up:before\":false},[\"content:\\\"\\uf028\\\"\"]],[false,{\".fa-volume-down:before\":false,\".fa-volume-low:before\":false},[\"content:\\\"\\uf027\\\"\"]],[false,{\".fa-volume-off:before\":false},[\"content:\\\"\\uf026\\\"\"]],[false,{\".fa-volume-mute:before\":false,\".fa-volume-times:before\":false,\".fa-volume-xmark:before\":false},[\"content:\\\"\\uf6a9\\\"\"]],[false,{\".fa-vr-cardboard:before\":false},[\"content:\\\"\\uf729\\\"\"]],[false,{\".fa-w:before\":false},[\"content:\\\"W\\\"\"]],[false,{\".fa-walkie-talkie:before\":false},[\"content:\\\"\\uf8ef\\\"\"]],[false,{\".fa-wallet:before\":false},[\"content:\\\"\\uf555\\\"\"]],[false,{\".fa-magic:before\":false,\".fa-wand-magic:before\":false},[\"content:\\\"\\uf0d0\\\"\"]],[false,{\".fa-magic-wand-sparkles:before\":false,\".fa-wand-magic-sparkles:before\":false},[\"content:\\\"\\ue2ca\\\"\"]],[false,{\".fa-wand-sparkles:before\":false},[\"content:\\\"\\uf72b\\\"\"]],[false,{\".fa-warehouse:before\":false},[\"content:\\\"\\uf494\\\"\"]],[false,{\".fa-water:before\":false},[\"content:\\\"\\uf773\\\"\"]],[false,{\".fa-ladder-water:before\":false,\".fa-swimming-pool:before\":false,\".fa-water-ladder:before\":false},[\"content:\\\"\\uf5c5\\\"\"]],[false,{\".fa-wave-square:before\":false},[\"content:\\\"\\uf83e\\\"\"]],[false,{\".fa-weight-hanging:before\":false},[\"content:\\\"\\uf5cd\\\"\"]],[false,{\".fa-weight-scale:before\":false,\".fa-weight:before\":false},[\"content:\\\"\\uf496\\\"\"]],[false,{\".fa-wheat-alt:before\":false,\".fa-wheat-awn:before\":false},[\"content:\\\"\\ue2cd\\\"\"]],[false,{\".fa-wheat-awn-circle-exclamation:before\":false},[\"content:\\\"\\ue598\\\"\"]],[false,{\".fa-wheelchair:before\":false},[\"content:\\\"\\uf193\\\"\"]],[false,{\".fa-wheelchair-alt:before\":false,\".fa-wheelchair-move:before\":false},[\"content:\\\"\\ue2ce\\\"\"]],[false,{\".fa-glass-whiskey:before\":false,\".fa-whiskey-glass:before\":false},[\"content:\\\"\\uf7a0\\\"\"]],[false,{\".fa-wifi-3:before\":false,\".fa-wifi-strong:before\":false,\".fa-wifi:before\":false},[\"content:\\\"\\uf1eb\\\"\"]],[false,{\".fa-wind:before\":false},[\"content:\\\"\\uf72e\\\"\"]],[false,{\".fa-window-maximize:before\":false},[\"content:\\\"\\uf2d0\\\"\"]],[false,{\".fa-window-minimize:before\":false},[\"content:\\\"\\uf2d1\\\"\"]],[false,{\".fa-window-restore:before\":false},[\"content:\\\"\\uf2d2\\\"\"]],[false,{\".fa-wine-bottle:before\":false},[\"content:\\\"\\uf72f\\\"\"]],[false,{\".fa-wine-glass:before\":false},[\"content:\\\"\\uf4e3\\\"\"]],[false,{\".fa-wine-glass-alt:before\":false,\".fa-wine-glass-empty:before\":false},[\"content:\\\"\\uf5ce\\\"\"]],[false,{\".fa-krw:before\":false,\".fa-won-sign:before\":false,\".fa-won:before\":false},[\"content:\\\"\\uf159\\\"\"]],[false,{\".fa-worm:before\":false},[\"content:\\\"\\ue599\\\"\"]],[false,{\".fa-wrench:before\":false},[\"content:\\\"\\uf0ad\\\"\"]],[false,{\".fa-x:before\":false},[\"content:\\\"X\\\"\"]],[false,{\".fa-x-ray:before\":false},[\"content:\\\"\\uf497\\\"\"]],[false,{\".fa-close:before\":false,\".fa-multiply:before\":false,\".fa-remove:before\":false,\".fa-times:before\":false,\".fa-xmark:before\":false},[\"content:\\\"\\uf00d\\\"\"]],[false,{\".fa-xmarks-lines:before\":false},[\"content:\\\"\\ue59a\\\"\"]],[false,{\".fa-y:before\":false},[\"content:\\\"Y\\\"\"]],[false,{\".fa-cny:before\":false,\".fa-jpy:before\":false,\".fa-rmb:before\":false,\".fa-yen-sign:before\":false,\".fa-yen:before\":false},[\"content:\\\"\\uf157\\\"\"]],[false,{\".fa-yin-yang:before\":false},[\"content:\\\"\\uf6ad\\\"\"]],[false,{\".fa-z:before\":false},[\"content:\\\"Z\\\"\"]],[false,{\".fa-sr-only\":false,\".fa-sr-only-focusable:not(:focus)\":false,\".sr-only\":false,\".sr-only-focusable:not(:focus)\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"white-space:nowrap\",\"border-width:0\"]],[true,{\":host\":true,\":root\":true},[\"--fa-font-brands:normal 400 1em\\/1 \\\"Font Awesome 6 Brands\\\"\"]],[true,\"@font-face{font-family:\\\"Font Awesome 6 Brands\\\";font-style:normal;font-weight:400;font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\")}\"],[false,{\".fa-brands\":false,\".fab\":false},[\"font-family:\\\"Font Awesome 6 Brands\\\"\",\"font-weight:400\"]],[false,{\".fa-42-group:before\":false,\".fa-innosoft:before\":false},[\"content:\\\"\\ue080\\\"\"]],[false,{\".fa-500px:before\":false},[\"content:\\\"\\uf26e\\\"\"]],[false,{\".fa-accessible-icon:before\":false},[\"content:\\\"\\uf368\\\"\"]],[false,{\".fa-accusoft:before\":false},[\"content:\\\"\\uf369\\\"\"]],[false,{\".fa-adn:before\":false},[\"content:\\\"\\uf170\\\"\"]],[false,{\".fa-adversal:before\":false},[\"content:\\\"\\uf36a\\\"\"]],[false,{\".fa-affiliatetheme:before\":false},[\"content:\\\"\\uf36b\\\"\"]],[false,{\".fa-airbnb:before\":false},[\"content:\\\"\\uf834\\\"\"]],[false,{\".fa-algolia:before\":false},[\"content:\\\"\\uf36c\\\"\"]],[false,{\".fa-alipay:before\":false},[\"content:\\\"\\uf642\\\"\"]],[false,{\".fa-amazon:before\":false},[\"content:\\\"\\uf270\\\"\"]],[false,{\".fa-amazon-pay:before\":false},[\"content:\\\"\\uf42c\\\"\"]],[false,{\".fa-amilia:before\":false},[\"content:\\\"\\uf36d\\\"\"]],[false,{\".fa-android:before\":false},[\"content:\\\"\\uf17b\\\"\"]],[false,{\".fa-angellist:before\":false},[\"content:\\\"\\uf209\\\"\"]],[false,{\".fa-angrycreative:before\":false},[\"content:\\\"\\uf36e\\\"\"]],[false,{\".fa-angular:before\":false},[\"content:\\\"\\uf420\\\"\"]],[false,{\".fa-app-store:before\":false},[\"content:\\\"\\uf36f\\\"\"]],[false,{\".fa-app-store-ios:before\":false},[\"content:\\\"\\uf370\\\"\"]],[false,{\".fa-apper:before\":false},[\"content:\\\"\\uf371\\\"\"]],[false,{\".fa-apple:before\":false},[\"content:\\\"\\uf179\\\"\"]],[false,{\".fa-apple-pay:before\":false},[\"content:\\\"\\uf415\\\"\"]],[false,{\".fa-artstation:before\":false},[\"content:\\\"\\uf77a\\\"\"]],[false,{\".fa-asymmetrik:before\":false},[\"content:\\\"\\uf372\\\"\"]],[false,{\".fa-atlassian:before\":false},[\"content:\\\"\\uf77b\\\"\"]],[false,{\".fa-audible:before\":false},[\"content:\\\"\\uf373\\\"\"]],[false,{\".fa-autoprefixer:before\":false},[\"content:\\\"\\uf41c\\\"\"]],[false,{\".fa-avianex:before\":false},[\"content:\\\"\\uf374\\\"\"]],[false,{\".fa-aviato:before\":false},[\"content:\\\"\\uf421\\\"\"]],[false,{\".fa-aws:before\":false},[\"content:\\\"\\uf375\\\"\"]],[false,{\".fa-bandcamp:before\":false},[\"content:\\\"\\uf2d5\\\"\"]],[false,{\".fa-battle-net:before\":false},[\"content:\\\"\\uf835\\\"\"]],[false,{\".fa-behance:before\":false},[\"content:\\\"\\uf1b4\\\"\"]],[false,{\".fa-behance-square:before\":false},[\"content:\\\"\\uf1b5\\\"\"]],[false,{\".fa-bilibili:before\":false},[\"content:\\\"\\ue3d9\\\"\"]],[false,{\".fa-bimobject:before\":false},[\"content:\\\"\\uf378\\\"\"]],[false,{\".fa-bitbucket:before\":false},[\"content:\\\"\\uf171\\\"\"]],[false,{\".fa-bitcoin:before\":false},[\"content:\\\"\\uf379\\\"\"]],[false,{\".fa-bity:before\":false},[\"content:\\\"\\uf37a\\\"\"]],[false,{\".fa-black-tie:before\":false},[\"content:\\\"\\uf27e\\\"\"]],[false,{\".fa-blackberry:before\":false},[\"content:\\\"\\uf37b\\\"\"]],[false,{\".fa-blogger:before\":false},[\"content:\\\"\\uf37c\\\"\"]],[false,{\".fa-blogger-b:before\":false},[\"content:\\\"\\uf37d\\\"\"]],[false,{\".fa-bluetooth:before\":false},[\"content:\\\"\\uf293\\\"\"]],[false,{\".fa-bluetooth-b:before\":false},[\"content:\\\"\\uf294\\\"\"]],[false,{\".fa-bootstrap:before\":false},[\"content:\\\"\\uf836\\\"\"]],[false,{\".fa-bots:before\":false},[\"content:\\\"\\ue340\\\"\"]],[false,{\".fa-btc:before\":false},[\"content:\\\"\\uf15a\\\"\"]],[false,{\".fa-buffer:before\":false},[\"content:\\\"\\uf837\\\"\"]],[false,{\".fa-buromobelexperte:before\":false},[\"content:\\\"\\uf37f\\\"\"]],[false,{\".fa-buy-n-large:before\":false},[\"content:\\\"\\uf8a6\\\"\"]],[false,{\".fa-buysellads:before\":false},[\"content:\\\"\\uf20d\\\"\"]],[false,{\".fa-canadian-maple-leaf:before\":false},[\"content:\\\"\\uf785\\\"\"]],[false,{\".fa-cc-amazon-pay:before\":false},[\"content:\\\"\\uf42d\\\"\"]],[false,{\".fa-cc-amex:before\":false},[\"content:\\\"\\uf1f3\\\"\"]],[false,{\".fa-cc-apple-pay:before\":false},[\"content:\\\"\\uf416\\\"\"]],[false,{\".fa-cc-diners-club:before\":false},[\"content:\\\"\\uf24c\\\"\"]],[false,{\".fa-cc-discover:before\":false},[\"content:\\\"\\uf1f2\\\"\"]],[false,{\".fa-cc-jcb:before\":false},[\"content:\\\"\\uf24b\\\"\"]],[false,{\".fa-cc-mastercard:before\":false},[\"content:\\\"\\uf1f1\\\"\"]],[false,{\".fa-cc-paypal:before\":false},[\"content:\\\"\\uf1f4\\\"\"]],[false,{\".fa-cc-stripe:before\":false},[\"content:\\\"\\uf1f5\\\"\"]],[false,{\".fa-cc-visa:before\":false},[\"content:\\\"\\uf1f0\\\"\"]],[false,{\".fa-centercode:before\":false},[\"content:\\\"\\uf380\\\"\"]],[false,{\".fa-centos:before\":false},[\"content:\\\"\\uf789\\\"\"]],[false,{\".fa-chrome:before\":false},[\"content:\\\"\\uf268\\\"\"]],[false,{\".fa-chromecast:before\":false},[\"content:\\\"\\uf838\\\"\"]],[false,{\".fa-cloudflare:before\":false},[\"content:\\\"\\ue07d\\\"\"]],[false,{\".fa-cloudscale:before\":false},[\"content:\\\"\\uf383\\\"\"]],[false,{\".fa-cloudsmith:before\":false},[\"content:\\\"\\uf384\\\"\"]],[false,{\".fa-cloudversify:before\":false},[\"content:\\\"\\uf385\\\"\"]],[false,{\".fa-cmplid:before\":false},[\"content:\\\"\\ue360\\\"\"]],[false,{\".fa-codepen:before\":false},[\"content:\\\"\\uf1cb\\\"\"]],[false,{\".fa-codiepie:before\":false},[\"content:\\\"\\uf284\\\"\"]],[false,{\".fa-confluence:before\":false},[\"content:\\\"\\uf78d\\\"\"]],[false,{\".fa-connectdevelop:before\":false},[\"content:\\\"\\uf20e\\\"\"]],[false,{\".fa-contao:before\":false},[\"content:\\\"\\uf26d\\\"\"]],[false,{\".fa-cotton-bureau:before\":false},[\"content:\\\"\\uf89e\\\"\"]],[false,{\".fa-cpanel:before\":false},[\"content:\\\"\\uf388\\\"\"]],[false,{\".fa-creative-commons:before\":false},[\"content:\\\"\\uf25e\\\"\"]],[false,{\".fa-creative-commons-by:before\":false},[\"content:\\\"\\uf4e7\\\"\"]],[false,{\".fa-creative-commons-nc:before\":false},[\"content:\\\"\\uf4e8\\\"\"]],[false,{\".fa-creative-commons-nc-eu:before\":false},[\"content:\\\"\\uf4e9\\\"\"]],[false,{\".fa-creative-commons-nc-jp:before\":false},[\"content:\\\"\\uf4ea\\\"\"]],[false,{\".fa-creative-commons-nd:before\":false},[\"content:\\\"\\uf4eb\\\"\"]],[false,{\".fa-creative-commons-pd:before\":false},[\"content:\\\"\\uf4ec\\\"\"]],[false,{\".fa-creative-commons-pd-alt:before\":false},[\"content:\\\"\\uf4ed\\\"\"]],[false,{\".fa-creative-commons-remix:before\":false},[\"content:\\\"\\uf4ee\\\"\"]],[false,{\".fa-creative-commons-sa:before\":false},[\"content:\\\"\\uf4ef\\\"\"]],[false,{\".fa-creative-commons-sampling:before\":false},[\"content:\\\"\\uf4f0\\\"\"]],[false,{\".fa-creative-commons-sampling-plus:before\":false},[\"content:\\\"\\uf4f1\\\"\"]],[false,{\".fa-creative-commons-share:before\":false},[\"content:\\\"\\uf4f2\\\"\"]],[false,{\".fa-creative-commons-zero:before\":false},[\"content:\\\"\\uf4f3\\\"\"]],[false,{\".fa-critical-role:before\":false},[\"content:\\\"\\uf6c9\\\"\"]],[false,{\".fa-css3:before\":false},[\"content:\\\"\\uf13c\\\"\"]],[false,{\".fa-css3-alt:before\":false},[\"content:\\\"\\uf38b\\\"\"]],[false,{\".fa-cuttlefish:before\":false},[\"content:\\\"\\uf38c\\\"\"]],[false,{\".fa-d-and-d:before\":false},[\"content:\\\"\\uf38d\\\"\"]],[false,{\".fa-d-and-d-beyond:before\":false},[\"content:\\\"\\uf6ca\\\"\"]],[false,{\".fa-dailymotion:before\":false},[\"content:\\\"\\ue052\\\"\"]],[false,{\".fa-dashcube:before\":false},[\"content:\\\"\\uf210\\\"\"]],[false,{\".fa-deezer:before\":false},[\"content:\\\"\\ue077\\\"\"]],[false,{\".fa-delicious:before\":false},[\"content:\\\"\\uf1a5\\\"\"]],[false,{\".fa-deploydog:before\":false},[\"content:\\\"\\uf38e\\\"\"]],[false,{\".fa-deskpro:before\":false},[\"content:\\\"\\uf38f\\\"\"]],[false,{\".fa-dev:before\":false},[\"content:\\\"\\uf6cc\\\"\"]],[false,{\".fa-deviantart:before\":false},[\"content:\\\"\\uf1bd\\\"\"]],[false,{\".fa-dhl:before\":false},[\"content:\\\"\\uf790\\\"\"]],[false,{\".fa-diaspora:before\":false},[\"content:\\\"\\uf791\\\"\"]],[false,{\".fa-digg:before\":false},[\"content:\\\"\\uf1a6\\\"\"]],[false,{\".fa-digital-ocean:before\":false},[\"content:\\\"\\uf391\\\"\"]],[false,{\".fa-discord:before\":false},[\"content:\\\"\\uf392\\\"\"]],[false,{\".fa-discourse:before\":false},[\"content:\\\"\\uf393\\\"\"]],[false,{\".fa-dochub:before\":false},[\"content:\\\"\\uf394\\\"\"]],[false,{\".fa-docker:before\":false},[\"content:\\\"\\uf395\\\"\"]],[false,{\".fa-draft2digital:before\":false},[\"content:\\\"\\uf396\\\"\"]],[false,{\".fa-dribbble:before\":false},[\"content:\\\"\\uf17d\\\"\"]],[false,{\".fa-dribbble-square:before\":false},[\"content:\\\"\\uf397\\\"\"]],[false,{\".fa-dropbox:before\":false},[\"content:\\\"\\uf16b\\\"\"]],[false,{\".fa-drupal:before\":false},[\"content:\\\"\\uf1a9\\\"\"]],[false,{\".fa-dyalog:before\":false},[\"content:\\\"\\uf399\\\"\"]],[false,{\".fa-earlybirds:before\":false},[\"content:\\\"\\uf39a\\\"\"]],[false,{\".fa-ebay:before\":false},[\"content:\\\"\\uf4f4\\\"\"]],[false,{\".fa-edge:before\":false},[\"content:\\\"\\uf282\\\"\"]],[false,{\".fa-edge-legacy:before\":false},[\"content:\\\"\\ue078\\\"\"]],[false,{\".fa-elementor:before\":false},[\"content:\\\"\\uf430\\\"\"]],[false,{\".fa-ello:before\":false},[\"content:\\\"\\uf5f1\\\"\"]],[false,{\".fa-ember:before\":false},[\"content:\\\"\\uf423\\\"\"]],[false,{\".fa-empire:before\":false},[\"content:\\\"\\uf1d1\\\"\"]],[false,{\".fa-envira:before\":false},[\"content:\\\"\\uf299\\\"\"]],[false,{\".fa-erlang:before\":false},[\"content:\\\"\\uf39d\\\"\"]],[false,{\".fa-ethereum:before\":false},[\"content:\\\"\\uf42e\\\"\"]],[false,{\".fa-etsy:before\":false},[\"content:\\\"\\uf2d7\\\"\"]],[false,{\".fa-evernote:before\":false},[\"content:\\\"\\uf839\\\"\"]],[false,{\".fa-expeditedssl:before\":false},[\"content:\\\"\\uf23e\\\"\"]],[false,{\".fa-facebook:before\":false},[\"content:\\\"\\uf09a\\\"\"]],[false,{\".fa-facebook-f:before\":false},[\"content:\\\"\\uf39e\\\"\"]],[false,{\".fa-facebook-messenger:before\":false},[\"content:\\\"\\uf39f\\\"\"]],[false,{\".fa-facebook-square:before\":false},[\"content:\\\"\\uf082\\\"\"]],[false,{\".fa-fantasy-flight-games:before\":false},[\"content:\\\"\\uf6dc\\\"\"]],[false,{\".fa-fedex:before\":false},[\"content:\\\"\\uf797\\\"\"]],[false,{\".fa-fedora:before\":false},[\"content:\\\"\\uf798\\\"\"]],[false,{\".fa-figma:before\":false},[\"content:\\\"\\uf799\\\"\"]],[false,{\".fa-firefox:before\":false},[\"content:\\\"\\uf269\\\"\"]],[false,{\".fa-firefox-browser:before\":false},[\"content:\\\"\\ue007\\\"\"]],[false,{\".fa-first-order:before\":false},[\"content:\\\"\\uf2b0\\\"\"]],[false,{\".fa-first-order-alt:before\":false},[\"content:\\\"\\uf50a\\\"\"]],[false,{\".fa-firstdraft:before\":false},[\"content:\\\"\\uf3a1\\\"\"]],[false,{\".fa-flickr:before\":false},[\"content:\\\"\\uf16e\\\"\"]],[false,{\".fa-flipboard:before\":false},[\"content:\\\"\\uf44d\\\"\"]],[false,{\".fa-fly:before\":false},[\"content:\\\"\\uf417\\\"\"]],[false,{\".fa-font-awesome-flag:before\":false,\".fa-font-awesome-logo-full:before\":false,\".fa-font-awesome:before\":false},[\"content:\\\"\\uf2b4\\\"\"]],[false,{\".fa-fonticons:before\":false},[\"content:\\\"\\uf280\\\"\"]],[false,{\".fa-fonticons-fi:before\":false},[\"content:\\\"\\uf3a2\\\"\"]],[false,{\".fa-fort-awesome:before\":false},[\"content:\\\"\\uf286\\\"\"]],[false,{\".fa-fort-awesome-alt:before\":false},[\"content:\\\"\\uf3a3\\\"\"]],[false,{\".fa-forumbee:before\":false},[\"content:\\\"\\uf211\\\"\"]],[false,{\".fa-foursquare:before\":false},[\"content:\\\"\\uf180\\\"\"]],[false,{\".fa-free-code-camp:before\":false},[\"content:\\\"\\uf2c5\\\"\"]],[false,{\".fa-freebsd:before\":false},[\"content:\\\"\\uf3a4\\\"\"]],[false,{\".fa-fulcrum:before\":false},[\"content:\\\"\\uf50b\\\"\"]],[false,{\".fa-galactic-republic:before\":false},[\"content:\\\"\\uf50c\\\"\"]],[false,{\".fa-galactic-senate:before\":false},[\"content:\\\"\\uf50d\\\"\"]],[false,{\".fa-get-pocket:before\":false},[\"content:\\\"\\uf265\\\"\"]],[false,{\".fa-gg:before\":false},[\"content:\\\"\\uf260\\\"\"]],[false,{\".fa-gg-circle:before\":false},[\"content:\\\"\\uf261\\\"\"]],[false,{\".fa-git:before\":false},[\"content:\\\"\\uf1d3\\\"\"]],[false,{\".fa-git-alt:before\":false},[\"content:\\\"\\uf841\\\"\"]],[false,{\".fa-git-square:before\":false},[\"content:\\\"\\uf1d2\\\"\"]],[false,{\".fa-github:before\":false},[\"content:\\\"\\uf09b\\\"\"]],[false,{\".fa-github-alt:before\":false},[\"content:\\\"\\uf113\\\"\"]],[false,{\".fa-github-square:before\":false},[\"content:\\\"\\uf092\\\"\"]],[false,{\".fa-gitkraken:before\":false},[\"content:\\\"\\uf3a6\\\"\"]],[false,{\".fa-gitlab:before\":false},[\"content:\\\"\\uf296\\\"\"]],[false,{\".fa-gitter:before\":false},[\"content:\\\"\\uf426\\\"\"]],[false,{\".fa-glide:before\":false},[\"content:\\\"\\uf2a5\\\"\"]],[false,{\".fa-glide-g:before\":false},[\"content:\\\"\\uf2a6\\\"\"]],[false,{\".fa-gofore:before\":false},[\"content:\\\"\\uf3a7\\\"\"]],[false,{\".fa-golang:before\":false},[\"content:\\\"\\ue40f\\\"\"]],[false,{\".fa-goodreads:before\":false},[\"content:\\\"\\uf3a8\\\"\"]],[false,{\".fa-goodreads-g:before\":false},[\"content:\\\"\\uf3a9\\\"\"]],[false,{\".fa-google:before\":false},[\"content:\\\"\\uf1a0\\\"\"]],[false,{\".fa-google-drive:before\":false},[\"content:\\\"\\uf3aa\\\"\"]],[false,{\".fa-google-pay:before\":false},[\"content:\\\"\\ue079\\\"\"]],[false,{\".fa-google-play:before\":false},[\"content:\\\"\\uf3ab\\\"\"]],[false,{\".fa-google-plus:before\":false},[\"content:\\\"\\uf2b3\\\"\"]],[false,{\".fa-google-plus-g:before\":false},[\"content:\\\"\\uf0d5\\\"\"]],[false,{\".fa-google-plus-square:before\":false},[\"content:\\\"\\uf0d4\\\"\"]],[false,{\".fa-google-wallet:before\":false},[\"content:\\\"\\uf1ee\\\"\"]],[false,{\".fa-gratipay:before\":false},[\"content:\\\"\\uf184\\\"\"]],[false,{\".fa-grav:before\":false},[\"content:\\\"\\uf2d6\\\"\"]],[false,{\".fa-gripfire:before\":false},[\"content:\\\"\\uf3ac\\\"\"]],[false,{\".fa-grunt:before\":false},[\"content:\\\"\\uf3ad\\\"\"]],[false,{\".fa-guilded:before\":false},[\"content:\\\"\\ue07e\\\"\"]],[false,{\".fa-gulp:before\":false},[\"content:\\\"\\uf3ae\\\"\"]],[false,{\".fa-hacker-news:before\":false},[\"content:\\\"\\uf1d4\\\"\"]],[false,{\".fa-hacker-news-square:before\":false},[\"content:\\\"\\uf3af\\\"\"]],[false,{\".fa-hackerrank:before\":false},[\"content:\\\"\\uf5f7\\\"\"]],[false,{\".fa-hashnode:before\":false},[\"content:\\\"\\ue499\\\"\"]],[false,{\".fa-hips:before\":false},[\"content:\\\"\\uf452\\\"\"]],[false,{\".fa-hire-a-helper:before\":false},[\"content:\\\"\\uf3b0\\\"\"]],[false,{\".fa-hive:before\":false},[\"content:\\\"\\ue07f\\\"\"]],[false,{\".fa-hooli:before\":false},[\"content:\\\"\\uf427\\\"\"]],[false,{\".fa-hornbill:before\":false},[\"content:\\\"\\uf592\\\"\"]],[false,{\".fa-hotjar:before\":false},[\"content:\\\"\\uf3b1\\\"\"]],[false,{\".fa-houzz:before\":false},[\"content:\\\"\\uf27c\\\"\"]],[false,{\".fa-html5:before\":false},[\"content:\\\"\\uf13b\\\"\"]],[false,{\".fa-hubspot:before\":false},[\"content:\\\"\\uf3b2\\\"\"]],[false,{\".fa-ideal:before\":false},[\"content:\\\"\\ue013\\\"\"]],[false,{\".fa-imdb:before\":false},[\"content:\\\"\\uf2d8\\\"\"]],[false,{\".fa-instagram:before\":false},[\"content:\\\"\\uf16d\\\"\"]],[false,{\".fa-instagram-square:before\":false},[\"content:\\\"\\ue055\\\"\"]],[false,{\".fa-instalod:before\":false},[\"content:\\\"\\ue081\\\"\"]],[false,{\".fa-intercom:before\":false},[\"content:\\\"\\uf7af\\\"\"]],[false,{\".fa-internet-explorer:before\":false},[\"content:\\\"\\uf26b\\\"\"]],[false,{\".fa-invision:before\":false},[\"content:\\\"\\uf7b0\\\"\"]],[false,{\".fa-ioxhost:before\":false},[\"content:\\\"\\uf208\\\"\"]],[false,{\".fa-itch-io:before\":false},[\"content:\\\"\\uf83a\\\"\"]],[false,{\".fa-itunes:before\":false},[\"content:\\\"\\uf3b4\\\"\"]],[false,{\".fa-itunes-note:before\":false},[\"content:\\\"\\uf3b5\\\"\"]],[false,{\".fa-java:before\":false},[\"content:\\\"\\uf4e4\\\"\"]],[false,{\".fa-jedi-order:before\":false},[\"content:\\\"\\uf50e\\\"\"]],[false,{\".fa-jenkins:before\":false},[\"content:\\\"\\uf3b6\\\"\"]],[false,{\".fa-jira:before\":false},[\"content:\\\"\\uf7b1\\\"\"]],[false,{\".fa-joget:before\":false},[\"content:\\\"\\uf3b7\\\"\"]],[false,{\".fa-joomla:before\":false},[\"content:\\\"\\uf1aa\\\"\"]],[false,{\".fa-js:before\":false},[\"content:\\\"\\uf3b8\\\"\"]],[false,{\".fa-js-square:before\":false},[\"content:\\\"\\uf3b9\\\"\"]],[false,{\".fa-jsfiddle:before\":false},[\"content:\\\"\\uf1cc\\\"\"]],[false,{\".fa-kaggle:before\":false},[\"content:\\\"\\uf5fa\\\"\"]],[false,{\".fa-keybase:before\":false},[\"content:\\\"\\uf4f5\\\"\"]],[false,{\".fa-keycdn:before\":false},[\"content:\\\"\\uf3ba\\\"\"]],[false,{\".fa-kickstarter:before\":false},[\"content:\\\"\\uf3bb\\\"\"]],[false,{\".fa-kickstarter-k:before\":false},[\"content:\\\"\\uf3bc\\\"\"]],[false,{\".fa-korvue:before\":false},[\"content:\\\"\\uf42f\\\"\"]],[false,{\".fa-laravel:before\":false},[\"content:\\\"\\uf3bd\\\"\"]],[false,{\".fa-lastfm:before\":false},[\"content:\\\"\\uf202\\\"\"]],[false,{\".fa-lastfm-square:before\":false},[\"content:\\\"\\uf203\\\"\"]],[false,{\".fa-leanpub:before\":false},[\"content:\\\"\\uf212\\\"\"]],[false,{\".fa-less:before\":false},[\"content:\\\"\\uf41d\\\"\"]],[false,{\".fa-line:before\":false},[\"content:\\\"\\uf3c0\\\"\"]],[false,{\".fa-linkedin:before\":false},[\"content:\\\"\\uf08c\\\"\"]],[false,{\".fa-linkedin-in:before\":false},[\"content:\\\"\\uf0e1\\\"\"]],[false,{\".fa-linode:before\":false},[\"content:\\\"\\uf2b8\\\"\"]],[false,{\".fa-linux:before\":false},[\"content:\\\"\\uf17c\\\"\"]],[false,{\".fa-lyft:before\":false},[\"content:\\\"\\uf3c3\\\"\"]],[false,{\".fa-magento:before\":false},[\"content:\\\"\\uf3c4\\\"\"]],[false,{\".fa-mailchimp:before\":false},[\"content:\\\"\\uf59e\\\"\"]],[false,{\".fa-mandalorian:before\":false},[\"content:\\\"\\uf50f\\\"\"]],[false,{\".fa-markdown:before\":false},[\"content:\\\"\\uf60f\\\"\"]],[false,{\".fa-mastodon:before\":false},[\"content:\\\"\\uf4f6\\\"\"]],[false,{\".fa-maxcdn:before\":false},[\"content:\\\"\\uf136\\\"\"]],[false,{\".fa-mdb:before\":false},[\"content:\\\"\\uf8ca\\\"\"]],[false,{\".fa-medapps:before\":false},[\"content:\\\"\\uf3c6\\\"\"]],[false,{\".fa-medium-m:before\":false,\".fa-medium:before\":false},[\"content:\\\"\\uf23a\\\"\"]],[false,{\".fa-medrt:before\":false},[\"content:\\\"\\uf3c8\\\"\"]],[false,{\".fa-meetup:before\":false},[\"content:\\\"\\uf2e0\\\"\"]],[false,{\".fa-megaport:before\":false},[\"content:\\\"\\uf5a3\\\"\"]],[false,{\".fa-mendeley:before\":false},[\"content:\\\"\\uf7b3\\\"\"]],[false,{\".fa-microblog:before\":false},[\"content:\\\"\\ue01a\\\"\"]],[false,{\".fa-microsoft:before\":false},[\"content:\\\"\\uf3ca\\\"\"]],[false,{\".fa-mix:before\":false},[\"content:\\\"\\uf3cb\\\"\"]],[false,{\".fa-mixcloud:before\":false},[\"content:\\\"\\uf289\\\"\"]],[false,{\".fa-mixer:before\":false},[\"content:\\\"\\ue056\\\"\"]],[false,{\".fa-mizuni:before\":false},[\"content:\\\"\\uf3cc\\\"\"]],[false,{\".fa-modx:before\":false},[\"content:\\\"\\uf285\\\"\"]],[false,{\".fa-monero:before\":false},[\"content:\\\"\\uf3d0\\\"\"]],[false,{\".fa-napster:before\":false},[\"content:\\\"\\uf3d2\\\"\"]],[false,{\".fa-neos:before\":false},[\"content:\\\"\\uf612\\\"\"]],[false,{\".fa-nfc-directional:before\":false},[\"content:\\\"\\ue530\\\"\"]],[false,{\".fa-nfc-symbol:before\":false},[\"content:\\\"\\ue531\\\"\"]],[false,{\".fa-nimblr:before\":false},[\"content:\\\"\\uf5a8\\\"\"]],[false,{\".fa-node:before\":false},[\"content:\\\"\\uf419\\\"\"]],[false,{\".fa-node-js:before\":false},[\"content:\\\"\\uf3d3\\\"\"]],[false,{\".fa-npm:before\":false},[\"content:\\\"\\uf3d4\\\"\"]],[false,{\".fa-ns8:before\":false},[\"content:\\\"\\uf3d5\\\"\"]],[false,{\".fa-nutritionix:before\":false},[\"content:\\\"\\uf3d6\\\"\"]],[false,{\".fa-octopus-deploy:before\":false},[\"content:\\\"\\ue082\\\"\"]],[false,{\".fa-odnoklassniki:before\":false},[\"content:\\\"\\uf263\\\"\"]],[false,{\".fa-odnoklassniki-square:before\":false},[\"content:\\\"\\uf264\\\"\"]],[false,{\".fa-old-republic:before\":false},[\"content:\\\"\\uf510\\\"\"]],[false,{\".fa-opencart:before\":false},[\"content:\\\"\\uf23d\\\"\"]],[false,{\".fa-openid:before\":false},[\"content:\\\"\\uf19b\\\"\"]],[false,{\".fa-opera:before\":false},[\"content:\\\"\\uf26a\\\"\"]],[false,{\".fa-optin-monster:before\":false},[\"content:\\\"\\uf23c\\\"\"]],[false,{\".fa-orcid:before\":false},[\"content:\\\"\\uf8d2\\\"\"]],[false,{\".fa-osi:before\":false},[\"content:\\\"\\uf41a\\\"\"]],[false,{\".fa-padlet:before\":false},[\"content:\\\"\\ue4a0\\\"\"]],[false,{\".fa-page4:before\":false},[\"content:\\\"\\uf3d7\\\"\"]],[false,{\".fa-pagelines:before\":false},[\"content:\\\"\\uf18c\\\"\"]],[false,{\".fa-palfed:before\":false},[\"content:\\\"\\uf3d8\\\"\"]],[false,{\".fa-patreon:before\":false},[\"content:\\\"\\uf3d9\\\"\"]],[false,{\".fa-paypal:before\":false},[\"content:\\\"\\uf1ed\\\"\"]],[false,{\".fa-perbyte:before\":false},[\"content:\\\"\\ue083\\\"\"]],[false,{\".fa-periscope:before\":false},[\"content:\\\"\\uf3da\\\"\"]],[false,{\".fa-phabricator:before\":false},[\"content:\\\"\\uf3db\\\"\"]],[false,{\".fa-phoenix-framework:before\":false},[\"content:\\\"\\uf3dc\\\"\"]],[false,{\".fa-phoenix-squadron:before\":false},[\"content:\\\"\\uf511\\\"\"]],[false,{\".fa-php:before\":false},[\"content:\\\"\\uf457\\\"\"]],[false,{\".fa-pied-piper:before\":false},[\"content:\\\"\\uf2ae\\\"\"]],[false,{\".fa-pied-piper-alt:before\":false},[\"content:\\\"\\uf1a8\\\"\"]],[false,{\".fa-pied-piper-hat:before\":false},[\"content:\\\"\\uf4e5\\\"\"]],[false,{\".fa-pied-piper-pp:before\":false},[\"content:\\\"\\uf1a7\\\"\"]],[false,{\".fa-pied-piper-square:before\":false},[\"content:\\\"\\ue01e\\\"\"]],[false,{\".fa-pinterest:before\":false},[\"content:\\\"\\uf0d2\\\"\"]],[false,{\".fa-pinterest-p:before\":false},[\"content:\\\"\\uf231\\\"\"]],[false,{\".fa-pinterest-square:before\":false},[\"content:\\\"\\uf0d3\\\"\"]],[false,{\".fa-pix:before\":false},[\"content:\\\"\\ue43a\\\"\"]],[false,{\".fa-playstation:before\":false},[\"content:\\\"\\uf3df\\\"\"]],[false,{\".fa-product-hunt:before\":false},[\"content:\\\"\\uf288\\\"\"]],[false,{\".fa-pushed:before\":false},[\"content:\\\"\\uf3e1\\\"\"]],[false,{\".fa-python:before\":false},[\"content:\\\"\\uf3e2\\\"\"]],[false,{\".fa-qq:before\":false},[\"content:\\\"\\uf1d6\\\"\"]],[false,{\".fa-quinscape:before\":false},[\"content:\\\"\\uf459\\\"\"]],[false,{\".fa-quora:before\":false},[\"content:\\\"\\uf2c4\\\"\"]],[false,{\".fa-r-project:before\":false},[\"content:\\\"\\uf4f7\\\"\"]],[false,{\".fa-raspberry-pi:before\":false},[\"content:\\\"\\uf7bb\\\"\"]],[false,{\".fa-ravelry:before\":false},[\"content:\\\"\\uf2d9\\\"\"]],[false,{\".fa-react:before\":false},[\"content:\\\"\\uf41b\\\"\"]],[false,{\".fa-reacteurope:before\":false},[\"content:\\\"\\uf75d\\\"\"]],[false,{\".fa-readme:before\":false},[\"content:\\\"\\uf4d5\\\"\"]],[false,{\".fa-rebel:before\":false},[\"content:\\\"\\uf1d0\\\"\"]],[false,{\".fa-red-river:before\":false},[\"content:\\\"\\uf3e3\\\"\"]],[false,{\".fa-reddit:before\":false},[\"content:\\\"\\uf1a1\\\"\"]],[false,{\".fa-reddit-alien:before\":false},[\"content:\\\"\\uf281\\\"\"]],[false,{\".fa-reddit-square:before\":false},[\"content:\\\"\\uf1a2\\\"\"]],[false,{\".fa-redhat:before\":false},[\"content:\\\"\\uf7bc\\\"\"]],[false,{\".fa-renren:before\":false},[\"content:\\\"\\uf18b\\\"\"]],[false,{\".fa-replyd:before\":false},[\"content:\\\"\\uf3e6\\\"\"]],[false,{\".fa-researchgate:before\":false},[\"content:\\\"\\uf4f8\\\"\"]],[false,{\".fa-resolving:before\":false},[\"content:\\\"\\uf3e7\\\"\"]],[false,{\".fa-rev:before\":false},[\"content:\\\"\\uf5b2\\\"\"]],[false,{\".fa-rocketchat:before\":false},[\"content:\\\"\\uf3e8\\\"\"]],[false,{\".fa-rockrms:before\":false},[\"content:\\\"\\uf3e9\\\"\"]],[false,{\".fa-rust:before\":false},[\"content:\\\"\\ue07a\\\"\"]],[false,{\".fa-safari:before\":false},[\"content:\\\"\\uf267\\\"\"]],[false,{\".fa-salesforce:before\":false},[\"content:\\\"\\uf83b\\\"\"]],[false,{\".fa-sass:before\":false},[\"content:\\\"\\uf41e\\\"\"]],[false,{\".fa-schlix:before\":false},[\"content:\\\"\\uf3ea\\\"\"]],[false,{\".fa-screenpal:before\":false},[\"content:\\\"\\ue570\\\"\"]],[false,{\".fa-scribd:before\":false},[\"content:\\\"\\uf28a\\\"\"]],[false,{\".fa-searchengin:before\":false},[\"content:\\\"\\uf3eb\\\"\"]],[false,{\".fa-sellcast:before\":false},[\"content:\\\"\\uf2da\\\"\"]],[false,{\".fa-sellsy:before\":false},[\"content:\\\"\\uf213\\\"\"]],[false,{\".fa-servicestack:before\":false},[\"content:\\\"\\uf3ec\\\"\"]],[false,{\".fa-shirtsinbulk:before\":false},[\"content:\\\"\\uf214\\\"\"]],[false,{\".fa-shopify:before\":false},[\"content:\\\"\\ue057\\\"\"]],[false,{\".fa-shopware:before\":false},[\"content:\\\"\\uf5b5\\\"\"]],[false,{\".fa-simplybuilt:before\":false},[\"content:\\\"\\uf215\\\"\"]],[false,{\".fa-sistrix:before\":false},[\"content:\\\"\\uf3ee\\\"\"]],[false,{\".fa-sith:before\":false},[\"content:\\\"\\uf512\\\"\"]],[false,{\".fa-sitrox:before\":false},[\"content:\\\"\\ue44a\\\"\"]],[false,{\".fa-sketch:before\":false},[\"content:\\\"\\uf7c6\\\"\"]],[false,{\".fa-skyatlas:before\":false},[\"content:\\\"\\uf216\\\"\"]],[false,{\".fa-skype:before\":false},[\"content:\\\"\\uf17e\\\"\"]],[false,{\".fa-slack-hash:before\":false,\".fa-slack:before\":false},[\"content:\\\"\\uf198\\\"\"]],[false,{\".fa-slideshare:before\":false},[\"content:\\\"\\uf1e7\\\"\"]],[false,{\".fa-snapchat-ghost:before\":false,\".fa-snapchat:before\":false},[\"content:\\\"\\uf2ab\\\"\"]],[false,{\".fa-snapchat-square:before\":false},[\"content:\\\"\\uf2ad\\\"\"]],[false,{\".fa-soundcloud:before\":false},[\"content:\\\"\\uf1be\\\"\"]],[false,{\".fa-sourcetree:before\":false},[\"content:\\\"\\uf7d3\\\"\"]],[false,{\".fa-speakap:before\":false},[\"content:\\\"\\uf3f3\\\"\"]],[false,{\".fa-speaker-deck:before\":false},[\"content:\\\"\\uf83c\\\"\"]],[false,{\".fa-spotify:before\":false},[\"content:\\\"\\uf1bc\\\"\"]],[false,{\".fa-square-font-awesome:before\":false},[\"content:\\\"\\uf425\\\"\"]],[false,{\".fa-font-awesome-alt:before\":false,\".fa-square-font-awesome-stroke:before\":false},[\"content:\\\"\\uf35c\\\"\"]],[false,{\".fa-squarespace:before\":false},[\"content:\\\"\\uf5be\\\"\"]],[false,{\".fa-stack-exchange:before\":false},[\"content:\\\"\\uf18d\\\"\"]],[false,{\".fa-stack-overflow:before\":false},[\"content:\\\"\\uf16c\\\"\"]],[false,{\".fa-stackpath:before\":false},[\"content:\\\"\\uf842\\\"\"]],[false,{\".fa-staylinked:before\":false},[\"content:\\\"\\uf3f5\\\"\"]],[false,{\".fa-steam:before\":false},[\"content:\\\"\\uf1b6\\\"\"]],[false,{\".fa-steam-square:before\":false},[\"content:\\\"\\uf1b7\\\"\"]],[false,{\".fa-steam-symbol:before\":false},[\"content:\\\"\\uf3f6\\\"\"]],[false,{\".fa-sticker-mule:before\":false},[\"content:\\\"\\uf3f7\\\"\"]],[false,{\".fa-strava:before\":false},[\"content:\\\"\\uf428\\\"\"]],[false,{\".fa-stripe:before\":false},[\"content:\\\"\\uf429\\\"\"]],[false,{\".fa-stripe-s:before\":false},[\"content:\\\"\\uf42a\\\"\"]],[false,{\".fa-studiovinari:before\":false},[\"content:\\\"\\uf3f8\\\"\"]],[false,{\".fa-stumbleupon:before\":false},[\"content:\\\"\\uf1a4\\\"\"]],[false,{\".fa-stumbleupon-circle:before\":false},[\"content:\\\"\\uf1a3\\\"\"]],[false,{\".fa-superpowers:before\":false},[\"content:\\\"\\uf2dd\\\"\"]],[false,{\".fa-supple:before\":false},[\"content:\\\"\\uf3f9\\\"\"]],[false,{\".fa-suse:before\":false},[\"content:\\\"\\uf7d6\\\"\"]],[false,{\".fa-swift:before\":false},[\"content:\\\"\\uf8e1\\\"\"]],[false,{\".fa-symfony:before\":false},[\"content:\\\"\\uf83d\\\"\"]],[false,{\".fa-teamspeak:before\":false},[\"content:\\\"\\uf4f9\\\"\"]],[false,{\".fa-telegram-plane:before\":false,\".fa-telegram:before\":false},[\"content:\\\"\\uf2c6\\\"\"]],[false,{\".fa-tencent-weibo:before\":false},[\"content:\\\"\\uf1d5\\\"\"]],[false,{\".fa-the-red-yeti:before\":false},[\"content:\\\"\\uf69d\\\"\"]],[false,{\".fa-themeco:before\":false},[\"content:\\\"\\uf5c6\\\"\"]],[false,{\".fa-themeisle:before\":false},[\"content:\\\"\\uf2b2\\\"\"]],[false,{\".fa-think-peaks:before\":false},[\"content:\\\"\\uf731\\\"\"]],[false,{\".fa-tiktok:before\":false},[\"content:\\\"\\ue07b\\\"\"]],[false,{\".fa-trade-federation:before\":false},[\"content:\\\"\\uf513\\\"\"]],[false,{\".fa-trello:before\":false},[\"content:\\\"\\uf181\\\"\"]],[false,{\".fa-tumblr:before\":false},[\"content:\\\"\\uf173\\\"\"]],[false,{\".fa-tumblr-square:before\":false},[\"content:\\\"\\uf174\\\"\"]],[false,{\".fa-twitch:before\":false},[\"content:\\\"\\uf1e8\\\"\"]],[false,{\".fa-twitter:before\":false},[\"content:\\\"\\uf099\\\"\"]],[false,{\".fa-twitter-square:before\":false},[\"content:\\\"\\uf081\\\"\"]],[false,{\".fa-typo3:before\":false},[\"content:\\\"\\uf42b\\\"\"]],[false,{\".fa-uber:before\":false},[\"content:\\\"\\uf402\\\"\"]],[false,{\".fa-ubuntu:before\":false},[\"content:\\\"\\uf7df\\\"\"]],[false,{\".fa-uikit:before\":false},[\"content:\\\"\\uf403\\\"\"]],[false,{\".fa-umbraco:before\":false},[\"content:\\\"\\uf8e8\\\"\"]],[false,{\".fa-uncharted:before\":false},[\"content:\\\"\\ue084\\\"\"]],[false,{\".fa-uniregistry:before\":false},[\"content:\\\"\\uf404\\\"\"]],[false,{\".fa-unity:before\":false},[\"content:\\\"\\ue049\\\"\"]],[false,{\".fa-unsplash:before\":false},[\"content:\\\"\\ue07c\\\"\"]],[false,{\".fa-untappd:before\":false},[\"content:\\\"\\uf405\\\"\"]],[false,{\".fa-ups:before\":false},[\"content:\\\"\\uf7e0\\\"\"]],[false,{\".fa-usb:before\":false},[\"content:\\\"\\uf287\\\"\"]],[false,{\".fa-usps:before\":false},[\"content:\\\"\\uf7e1\\\"\"]],[false,{\".fa-ussunnah:before\":false},[\"content:\\\"\\uf407\\\"\"]],[false,{\".fa-vaadin:before\":false},[\"content:\\\"\\uf408\\\"\"]],[false,{\".fa-viacoin:before\":false},[\"content:\\\"\\uf237\\\"\"]],[false,{\".fa-viadeo:before\":false},[\"content:\\\"\\uf2a9\\\"\"]],[false,{\".fa-viadeo-square:before\":false},[\"content:\\\"\\uf2aa\\\"\"]],[false,{\".fa-viber:before\":false},[\"content:\\\"\\uf409\\\"\"]],[false,{\".fa-vimeo:before\":false},[\"content:\\\"\\uf40a\\\"\"]],[false,{\".fa-vimeo-square:before\":false},[\"content:\\\"\\uf194\\\"\"]],[false,{\".fa-vimeo-v:before\":false},[\"content:\\\"\\uf27d\\\"\"]],[false,{\".fa-vine:before\":false},[\"content:\\\"\\uf1ca\\\"\"]],[false,{\".fa-vk:before\":false},[\"content:\\\"\\uf189\\\"\"]],[false,{\".fa-vnv:before\":false},[\"content:\\\"\\uf40b\\\"\"]],[false,{\".fa-vuejs:before\":false},[\"content:\\\"\\uf41f\\\"\"]],[false,{\".fa-watchman-monitoring:before\":false},[\"content:\\\"\\ue087\\\"\"]],[false,{\".fa-waze:before\":false},[\"content:\\\"\\uf83f\\\"\"]],[false,{\".fa-weebly:before\":false},[\"content:\\\"\\uf5cc\\\"\"]],[false,{\".fa-weibo:before\":false},[\"content:\\\"\\uf18a\\\"\"]],[false,{\".fa-weixin:before\":false},[\"content:\\\"\\uf1d7\\\"\"]],[false,{\".fa-whatsapp:before\":false},[\"content:\\\"\\uf232\\\"\"]],[false,{\".fa-whatsapp-square:before\":false},[\"content:\\\"\\uf40c\\\"\"]],[false,{\".fa-whmcs:before\":false},[\"content:\\\"\\uf40d\\\"\"]],[false,{\".fa-wikipedia-w:before\":false},[\"content:\\\"\\uf266\\\"\"]],[false,{\".fa-windows:before\":false},[\"content:\\\"\\uf17a\\\"\"]],[false,{\".fa-wirsindhandwerk:before\":false,\".fa-wsh:before\":false},[\"content:\\\"\\ue2d0\\\"\"]],[false,{\".fa-wix:before\":false},[\"content:\\\"\\uf5cf\\\"\"]],[false,{\".fa-wizards-of-the-coast:before\":false},[\"content:\\\"\\uf730\\\"\"]],[false,{\".fa-wodu:before\":false},[\"content:\\\"\\ue088\\\"\"]],[false,{\".fa-wolf-pack-battalion:before\":false},[\"content:\\\"\\uf514\\\"\"]],[false,{\".fa-wordpress:before\":false},[\"content:\\\"\\uf19a\\\"\"]],[false,{\".fa-wordpress-simple:before\":false},[\"content:\\\"\\uf411\\\"\"]],[false,{\".fa-wpbeginner:before\":false},[\"content:\\\"\\uf297\\\"\"]],[false,{\".fa-wpexplorer:before\":false},[\"content:\\\"\\uf2de\\\"\"]],[false,{\".fa-wpforms:before\":false},[\"content:\\\"\\uf298\\\"\"]],[false,{\".fa-wpressr:before\":false},[\"content:\\\"\\uf3e4\\\"\"]],[false,{\".fa-xbox:before\":false},[\"content:\\\"\\uf412\\\"\"]],[false,{\".fa-xing:before\":false},[\"content:\\\"\\uf168\\\"\"]],[false,{\".fa-xing-square:before\":false},[\"content:\\\"\\uf169\\\"\"]],[false,{\".fa-y-combinator:before\":false},[\"content:\\\"\\uf23b\\\"\"]],[false,{\".fa-yahoo:before\":false},[\"content:\\\"\\uf19e\\\"\"]],[false,{\".fa-yammer:before\":false},[\"content:\\\"\\uf840\\\"\"]],[false,{\".fa-yandex:before\":false},[\"content:\\\"\\uf413\\\"\"]],[false,{\".fa-yandex-international:before\":false},[\"content:\\\"\\uf414\\\"\"]],[false,{\".fa-yarn:before\":false},[\"content:\\\"\\uf7e3\\\"\"]],[false,{\".fa-yelp:before\":false},[\"content:\\\"\\uf1e9\\\"\"]],[false,{\".fa-yoast:before\":false},[\"content:\\\"\\uf2b1\\\"\"]],[false,{\".fa-youtube:before\":false},[\"content:\\\"\\uf167\\\"\"]],[false,{\".fa-youtube-square:before\":false},[\"content:\\\"\\uf431\\\"\"]],[false,{\".fa-zhihu:before\":false},[\"content:\\\"\\uf63f\\\"\"]],[true,{\":host\":true,\":root\":true},[\"--fa-font-regular:normal 400 1em\\/1 \\\"Font Awesome 6 Free\\\"\"]],[true,\"@font-face{font-family:\\\"Font Awesome 6 Free\\\";font-style:normal;font-weight:400;font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\")}\"],[false,{\".fa-regular\":false,\".far\":false},[\"font-family:\\\"Font Awesome 6 Free\\\"\",\"font-weight:400\"]],[true,{\":host\":true,\":root\":true},[\"--fa-font-solid:normal 900 1em\\/1 \\\"Font Awesome 6 Free\\\"\"]],[true,\"@font-face{font-family:\\\"Font Awesome 6 Free\\\";font-style:normal;font-weight:900;font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\")}\"],[false,{\".fa-solid\":false,\".fas\":false},[\"font-family:\\\"Font Awesome 6 Free\\\"\",\"font-weight:900\"]],[true,\"@font-face{font-family:\\\"Font Awesome 5 Brands\\\";font-display:block;font-weight:400;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-display:block;font-weight:900;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-display:block;font-weight:400;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-v4compatibility.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-v4compatibility.ttf\\\") format(\\\"truetype\\\")}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":16466,\"final_size\":2468,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"f525e508f09233d1bbad77f319ca5b46\",\"parse_time\":0.25615501403808594,\"shake_time\":0.00019502639770507812,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,\"@font-face{font-family:swiper-icons;src:url(\\\"data:application\\/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj\\/\\/wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA\\/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu\\/j+W2+MnAzMYDAzaX6QjD6\\/4\\/\\/Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+\\/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg\\/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4\\/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9\\/w8UBfEMgLzE\\/\\/\\/\\/P\\/5\\/\\/f\\/V\\/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA\\/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP\\/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj\\/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB\\/yIY09An6AH2Bdu\\/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z\\/PEJ6YOB5hKh4dj3EvXhxPqH\\/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN\\/d\\/gczfEimrE\\/fs\\/bOuq29Zmn8tloORaXgZgGa78yO9\\/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i\\/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH\\/\\/wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv\\/H9ezGI6Z5XBAw8CBK\\/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow\\/P\\/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA\\\");font-weight:400;font-style:normal}\"],[true,{\":root\":true},[\"--swiper-theme-color:#007aff\"]],[false,{\".swiper\":false},[\"margin-left:auto\",\"margin-right:auto\",\"position:relative\",\"overflow:hidden\",\"list-style:none\",\"padding:0\",\"z-index:1\"]],[false,{\".swiper-vertical>.swiper-wrapper\":false},[\"flex-direction:column\"]],[false,{\".swiper-wrapper\":false},[\"position:relative\",\"width:100%\",\"height:100%\",\"z-index:1\",\"display:flex\",\"transition-property:transform\",\"box-sizing:content-box\"]],[false,{\".swiper-android .swiper-slide\":false,\".swiper-wrapper\":false},[\"transform:translate3d(0px,0,0)\"]],[false,{\".swiper-pointer-events\":false},[\"touch-action:pan-y\"]],[false,{\".swiper-pointer-events.swiper-vertical\":false},[\"touch-action:pan-x\"]],[false,{\".swiper-slide\":false},[\"flex-shrink:0\",\"width:100%\",\"height:100%\",\"position:relative\",\"transition-property:transform\"]],[false,{\".swiper-slide-invisible-blank\":false},[\"visibility:hidden\"]],[false,{\".swiper-autoheight\":false,\".swiper-autoheight .swiper-slide\":false},[\"height:auto\"]],[false,{\".swiper-autoheight .swiper-wrapper\":false},[\"align-items:flex-start\",\"transition-property:transform,height\"]],[false,{\".swiper-backface-hidden .swiper-slide\":false},[\"transform:translateZ(0)\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".swiper-3d\":false,\".swiper-3d.swiper-css-mode .swiper-wrapper\":false},[\"perspective:1200px\"]],[false,{\".swiper-3d .swiper-cube-shadow\":false,\".swiper-3d .swiper-slide\":false,\".swiper-3d .swiper-slide-shadow\":false,\".swiper-3d .swiper-slide-shadow-bottom\":false,\".swiper-3d .swiper-slide-shadow-left\":false,\".swiper-3d .swiper-slide-shadow-right\":false,\".swiper-3d .swiper-slide-shadow-top\":false,\".swiper-3d .swiper-wrapper\":false},[\"transform-style:preserve-3d\"]],[false,{\".swiper-3d .swiper-slide-shadow\":false,\".swiper-3d .swiper-slide-shadow-bottom\":false,\".swiper-3d .swiper-slide-shadow-left\":false,\".swiper-3d .swiper-slide-shadow-right\":false,\".swiper-3d .swiper-slide-shadow-top\":false},[\"position:absolute\",\"left:0\",\"top:0\",\"width:100%\",\"height:100%\",\"pointer-events:none\",\"z-index:10\"]],[false,{\".swiper-3d .swiper-slide-shadow\":false},[\"background:rgba(0,0,0,.15)\"]],[false,{\".swiper-3d .swiper-slide-shadow-left\":false},[\"background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-3d .swiper-slide-shadow-right\":false},[\"background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-3d .swiper-slide-shadow-top\":false},[\"background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-3d .swiper-slide-shadow-bottom\":false},[\"background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-css-mode>.swiper-wrapper\":false},[\"overflow:auto\",\"scrollbar-width:none\",\"-ms-overflow-style:none\"]],[false,{\".swiper-css-mode>.swiper-wrapper::-webkit-scrollbar\":false},[\"display:none\"]],[false,{\".swiper-css-mode>.swiper-wrapper>.swiper-slide\":false},[\"scroll-snap-align:start start\"]],[false,{\".swiper-horizontal.swiper-css-mode>.swiper-wrapper\":false},[\"scroll-snap-type:x mandatory\"]],[false,{\".swiper-vertical.swiper-css-mode>.swiper-wrapper\":false},[\"scroll-snap-type:y mandatory\"]],[false,{\".swiper-centered>.swiper-wrapper::before\":false},[\"content:\\\"\\\"\",\"flex-shrink:0\",\"order:9999\"]],[false,{\".swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child\":false},[\"margin-inline-start:var(--swiper-centered-offset-before)\"]],[false,{\".swiper-centered.swiper-horizontal>.swiper-wrapper::before\":false},[\"height:100%\",\"min-height:1px\",\"width:var(--swiper-centered-offset-after)\"]],[false,{\".swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child\":false},[\"margin-block-start:var(--swiper-centered-offset-before)\"]],[false,{\".swiper-centered.swiper-vertical>.swiper-wrapper::before\":false},[\"width:100%\",\"min-width:1px\",\"height:var(--swiper-centered-offset-after)\"]],[false,{\".swiper-centered>.swiper-wrapper>.swiper-slide\":false},[\"scroll-snap-align:center center\"]],[false,{\".swiper-virtual .swiper-slide\":false},[\"-webkit-backface-visibility:hidden\",\"transform:translateZ(0)\"]],[false,{\".swiper-virtual.swiper-css-mode .swiper-wrapper::after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"left:0\",\"top:0\",\"pointer-events:none\"]],[false,{\".swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after\":false},[\"height:1px\",\"width:var(--swiper-virtual-size)\"]],[false,{\".swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after\":false},[\"width:1px\",\"height:var(--swiper-virtual-size)\"]],[true,{\":root\":true},[\"--swiper-navigation-size:44px\"]],[false,{\".swiper-button-next\":false,\".swiper-button-prev\":false},[\"position:absolute\",\"top:50%\",\"width:calc(var(--swiper-navigation-size) \\/ 44 * 27)\",\"height:var(--swiper-navigation-size)\",\"margin-top:calc(0px - ( var(--swiper-navigation-size) \\/ 2 ))\",\"z-index:10\",\"cursor:pointer\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"color:var(--swiper-navigation-color,var(--swiper-theme-color))\"]],[false,{\".swiper-button-next.swiper-button-disabled\":false,\".swiper-button-prev.swiper-button-disabled\":false},[\"opacity:.35\",\"cursor:auto\",\"pointer-events:none\"]],[false,{\".swiper-button-next.swiper-button-hidden\":false,\".swiper-button-prev.swiper-button-hidden\":false},[\"opacity:0\",\"cursor:auto\",\"pointer-events:none\"]],[false,{\".swiper-navigation-disabled .swiper-button-next:not(#_#_#_#_#_#_#_)\":false,\".swiper-navigation-disabled .swiper-button-prev:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-button-next:after\":false,\".swiper-button-prev:after\":false},[\"font-family:swiper-icons\",\"font-size:var(--swiper-navigation-size)\",\"letter-spacing:0\",\"font-variant:initial\",\"line-height:1\"]],[false,{\".swiper-button-next:after:not(#_#_#_#_#_#_#_#_)\":false,\".swiper-button-prev:after:not(#_#_#_#_#_#_#_#_)\":false},[\"text-transform:none\"]],[false,{\".swiper-button-prev\":false,\".swiper-rtl .swiper-button-next\":false},[\"left:10px\",\"right:auto\"]],[false,{\".swiper-button-prev:after\":false,\".swiper-rtl .swiper-button-next:after\":false},[\"content:\\\"prev\\\"\"]],[false,{\".swiper-button-next\":false,\".swiper-rtl .swiper-button-prev\":false},[\"right:10px\",\"left:auto\"]],[false,{\".swiper-button-next:after\":false,\".swiper-rtl .swiper-button-prev:after\":false},[\"content:\\\"next\\\"\"]],[false,{\".swiper-button-lock\":false},[\"display:none\"]],[false,{\".swiper-pagination\":false},[\"position:absolute\",\"text-align:center\",\"transition:.3s opacity\",\"transform:translate3d(0,0,0)\",\"z-index:10\"]],[false,{\".swiper-pagination.swiper-pagination-hidden\":false},[\"opacity:0\"]],[false,{\".swiper-pagination-disabled>.swiper-pagination:not(#_#_#_#_#_#_#_)\":false,\".swiper-pagination.swiper-pagination-disabled:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets\":false,\".swiper-pagination-bullets.swiper-pagination-horizontal\":false,\".swiper-pagination-custom\":false,\".swiper-pagination-fraction\":false},[\"bottom:10px\",\"left:0\",\"width:100%\"]],[false,{\".swiper-pagination-bullets-dynamic\":false},[\"overflow:hidden\",\"font-size:0\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"transform:scale(.33)\",\"position:relative\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active\":false},[\"transform:scale(1)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main\":false},[\"transform:scale(1)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev\":false},[\"transform:scale(.66)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev\":false},[\"transform:scale(.33)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next\":false},[\"transform:scale(.66)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next\":false},[\"transform:scale(.33)\"]],[false,{\".swiper-pagination-bullet\":false},[\"width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px))\",\"height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px))\",\"display:inline-block\",\"border-radius:50%\",\"background:var(--swiper-pagination-bullet-inactive-color,#000)\",\"opacity:var(--swiper-pagination-bullet-inactive-opacity,.2)\"]],[false,{\"button.swiper-pagination-bullet\":false},[\"border:none\",\"margin:0\",\"padding:0\",\"box-shadow:none\",\"-webkit-appearance:none\",\"appearance:none\"]],[false,{\".swiper-pagination-clickable .swiper-pagination-bullet\":false},[\"cursor:pointer\"]],[false,{\".swiper-pagination-bullet:only-child:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-pagination-bullet-active\":false},[\"opacity:var(--swiper-pagination-bullet-opacity,1)\",\"background:var(--swiper-pagination-color,var(--swiper-theme-color))\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets\":false,\".swiper-vertical>.swiper-pagination-bullets\":false},[\"right:10px\",\"top:50%\",\"transform:translate3d(0px,-50%,0)\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet\":false,\".swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet\":false},[\"margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0\",\"display:block\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false,\".swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false},[\"top:50%\",\"transform:translateY(-50%)\",\"width:8px\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false,\".swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"display:inline-block\",\"transition:.2s transform,.2s top\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet\":false,\".swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet\":false},[\"margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false,\".swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false},[\"left:50%\",\"transform:translateX(-50%)\",\"white-space:nowrap\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false,\".swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"transition:.2s transform,.2s left\"]],[false,{\".swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"transition:.2s transform,.2s right\"]],[false,{\".swiper-pagination-progressbar\":false},[\"background:rgba(0,0,0,.25)\",\"position:absolute\"]],[false,{\".swiper-pagination-progressbar .swiper-pagination-progressbar-fill\":false},[\"background:var(--swiper-pagination-color,var(--swiper-theme-color))\",\"position:absolute\",\"left:0\",\"top:0\",\"width:100%\",\"height:100%\",\"transform:scale(0)\",\"transform-origin:left top\"]],[false,{\".swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill\":false},[\"transform-origin:right top\"]],[false,{\".swiper-horizontal>.swiper-pagination-progressbar\":false,\".swiper-pagination-progressbar.swiper-pagination-horizontal\":false,\".swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite\":false,\".swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite\":false},[\"width:100%\",\"height:4px\",\"left:0\",\"top:0\"]],[false,{\".swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite\":false,\".swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite\":false,\".swiper-pagination-progressbar.swiper-pagination-vertical\":false,\".swiper-vertical>.swiper-pagination-progressbar\":false},[\"width:4px\",\"height:100%\",\"left:0\",\"top:0\"]],[false,{\".swiper-pagination-lock\":false},[\"display:none\"]],[false,{\".swiper-scrollbar\":false},[\"border-radius:10px\",\"position:relative\",\"-ms-touch-action:none\",\"background:rgba(0,0,0,.1)\"]],[false,{\".swiper-scrollbar-disabled>.swiper-scrollbar:not(#_#_#_#_#_#_#_)\":false,\".swiper-scrollbar.swiper-scrollbar-disabled:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-horizontal>.swiper-scrollbar\":false,\".swiper-scrollbar.swiper-scrollbar-horizontal\":false},[\"position:absolute\",\"left:1%\",\"bottom:3px\",\"z-index:50\",\"height:5px\",\"width:98%\"]],[false,{\".swiper-scrollbar.swiper-scrollbar-vertical\":false,\".swiper-vertical>.swiper-scrollbar\":false},[\"position:absolute\",\"right:3px\",\"top:1%\",\"z-index:50\",\"width:5px\",\"height:98%\"]],[false,{\".swiper-scrollbar-drag\":false},[\"height:100%\",\"width:100%\",\"position:relative\",\"background:rgba(0,0,0,.5)\",\"border-radius:10px\",\"left:0\",\"top:0\"]],[false,{\".swiper-scrollbar-cursor-drag\":false},[\"cursor:move\"]],[false,{\".swiper-scrollbar-lock\":false},[\"display:none\"]],[false,{\".swiper-zoom-container\":false},[\"width:100%\",\"height:100%\",\"display:flex\",\"justify-content:center\",\"align-items:center\",\"text-align:center\"]],[false,{\".swiper-zoom-container>canvas\":false,\".swiper-zoom-container>amp-img\":false,\".swiper-zoom-container>amp-anim\":false,\".swiper-zoom-container>svg\":false},[\"max-width:100%\",\"max-height:100%\",\"object-fit:contain\"]],[false,{\".swiper-slide-zoomed\":false},[\"cursor:move\"]],[false,{\".swiper-lazy-preloader\":false},[\"width:42px\",\"height:42px\",\"position:absolute\",\"left:50%\",\"top:50%\",\"margin-left:-21px\",\"margin-top:-21px\",\"z-index:10\",\"transform-origin:50%\",\"box-sizing:border-box\",\"border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color))\",\"border-radius:50%\",\"border-top-color:transparent\"]],[false,{\".swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader\":false,\".swiper:not(.swiper-watch-progress) .swiper-lazy-preloader\":false},[\"animation:swiper-preloader-spin 1s infinite linear\"]],[false,{\".swiper-lazy-preloader-white\":false},[\"--swiper-preloader-color:#fff\"]],[false,{\".swiper-lazy-preloader-black\":false},[\"--swiper-preloader-color:#000\"]],[true,\"@keyframes swiper-preloader-spin{\"],[true,\"0%{transform:rotate(0deg)}\"],[true,\"100%{transform:rotate(360deg)}\"],[true,\"}\"],[false,{\".swiper .swiper-notification\":false},[\"position:absolute\",\"left:0\",\"top:0\",\"pointer-events:none\",\"opacity:0\",\"z-index:-1000\"]],[false,{\".swiper-free-mode>.swiper-wrapper\":false},[\"transition-timing-function:ease-out\",\"margin:0 auto\"]],[false,{\".swiper-grid>.swiper-wrapper\":false},[\"flex-wrap:wrap\"]],[false,{\".swiper-grid-column>.swiper-wrapper\":false},[\"flex-wrap:wrap\",\"flex-direction:column\"]],[false,{\".swiper-fade.swiper-free-mode .swiper-slide\":false},[\"transition-timing-function:ease-out\"]],[false,{\".swiper-fade .swiper-slide\":false},[\"pointer-events:none\",\"transition-property:opacity\"]],[false,{\".swiper-fade .swiper-slide .swiper-slide\":false},[\"pointer-events:none\"]],[false,{\".swiper-fade .swiper-slide-active\":false,\".swiper-fade .swiper-slide-active .swiper-slide-active\":false},[\"pointer-events:auto\"]],[false,{\".swiper-cube\":false},[\"overflow:visible\"]],[false,{\".swiper-cube .swiper-slide\":false},[\"pointer-events:none\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"z-index:1\",\"visibility:hidden\",\"transform-origin:0 0\",\"width:100%\",\"height:100%\"]],[false,{\".swiper-cube .swiper-slide .swiper-slide\":false},[\"pointer-events:none\"]],[false,{\".swiper-cube.swiper-rtl .swiper-slide\":false},[\"transform-origin:100% 0\"]],[false,{\".swiper-cube .swiper-slide-active\":false,\".swiper-cube .swiper-slide-active .swiper-slide-active\":false},[\"pointer-events:auto\"]],[false,{\".swiper-cube .swiper-slide-active\":false,\".swiper-cube .swiper-slide-next\":false,\".swiper-cube .swiper-slide-next+.swiper-slide\":false,\".swiper-cube .swiper-slide-prev\":false},[\"pointer-events:auto\",\"visibility:visible\"]],[false,{\".swiper-cube .swiper-slide-shadow-bottom\":false,\".swiper-cube .swiper-slide-shadow-left\":false,\".swiper-cube .swiper-slide-shadow-right\":false,\".swiper-cube .swiper-slide-shadow-top\":false},[\"z-index:0\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".swiper-cube .swiper-cube-shadow\":false},[\"position:absolute\",\"left:0\",\"bottom:0px\",\"width:100%\",\"height:100%\",\"opacity:.6\",\"z-index:0\"]],[false,{\".swiper-cube .swiper-cube-shadow:before\":false},[\"content:\\\"\\\"\",\"background:#000\",\"position:absolute\",\"left:0\",\"top:0\",\"bottom:0\",\"right:0\",\"filter:blur(50px)\"]],[false,{\".swiper-flip\":false},[\"overflow:visible\"]],[false,{\".swiper-flip .swiper-slide\":false},[\"pointer-events:none\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"z-index:1\"]],[false,{\".swiper-flip .swiper-slide .swiper-slide\":false},[\"pointer-events:none\"]],[false,{\".swiper-flip .swiper-slide-active\":false,\".swiper-flip .swiper-slide-active .swiper-slide-active\":false},[\"pointer-events:auto\"]],[false,{\".swiper-flip .swiper-slide-shadow-bottom\":false,\".swiper-flip .swiper-slide-shadow-left\":false,\".swiper-flip .swiper-slide-shadow-right\":false,\".swiper-flip .swiper-slide-shadow-top\":false},[\"z-index:0\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".swiper-creative .swiper-slide\":false},[\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"overflow:hidden\",\"transition-property:transform,opacity,height\"]],[false,{\".swiper-cards\":false},[\"overflow:visible\"]],[false,{\".swiper-cards .swiper-slide\":false},[\"transform-origin:center bottom\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"overflow:hidden\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":810,\"final_size\":766,\"element\":{\"name\":\"style\",\"attributes\":[]},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Header_Output.php\",\"line\":69,\"function\":\"SWP_Header_Output::add_header_output\",\"hook\":\"wp_head\",\"priority\":1}],\"priority\":70,\"hash\":\"0a9255310f1740c2ab6cffd5f5a29640\",\"parse_time\":0.0011060237884521484,\"shake_time\":3.0994415283203125e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0#iefix\"],\"shaken_tokens\":[[true,\"@font-face{font-family:\\\"sw-icon-font\\\";src:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0\\\");src:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.woff?ver=4.3.0\\\") format(\\\"woff\\\"),url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.ttf?ver=4.3.0\\\") format(\\\"truetype\\\"),url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.svg?ver=4.3.0#1445203416\\\") format(\\\"svg\\\");font-weight:normal;font-style:normal;font-display:block}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2209,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"social-warfare-block-css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/js\\/post-editor\\/dist\\/blocks.style.build.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"assets\\/js\\/post-editor\\/blocks.php\",\"line\":20,\"function\":\"register_gutenberg_blocks\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social-warfare-block-css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"c542eecf74fba8e6b26c437634e5223e\",\"parse_time\":0.010244131088256836,\"shake_time\":4.100799560546875e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".social-warfare-admin-block\":false},[\"font-family:\\\"SF Pro Text\\\",\\\"Helvetica\\\",sans-serif\",\"font-size:13px\"]],[false,{\".social-warfare-admin-block .head\":false},[\"width:100%\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".social-warfare-admin-block .head p\":false},[\"font-weight:bold\"]],[false,{\".social-warfare-admin-block .swp-block-icon\":false},[\"margin:0 28px 0 14px\",\"font-size:18px\",\"width:32px\",\"height:32px\"]],[false,{\".social-warfare-block-wrap input\":false,\".social-warfare-block-wrap select\":false},[\"width:100%\"]],[false,{\".swp-active-block\":false},[\"height:100%\"]],[false,{\".swp-active-block input\":false,\".swp-active-block select\":false,\".swp-active-block textarea\":false},[\"display:block\",\"width:100%\",\"padding:5px\",\"height:42px\",\"border:1px solid #e2e4e7\"]],[false,{\".swp-active-block textarea\":false},[\"height:64px\"]],[false,{\".swp-active-block .swp-inner-block-50\":false},[\"width:50%\",\"display:inline-block\",\"padding:0 1px\"]],[false,{\".swp-active-block .head>div\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row no-wrap\",\"flex-flow:row no-wrap\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".swp-active-block .head .swp-block-icon\":false,\".swp-active-block .head .swp-block-title\":false},[\"display:inline-block\"]],[false,{\".swp-active-block p\":false},[\"margin:25px 0 5px 0\"]],[false,{\".swp-active-block .head p\":false},[\"margin:initial\"]],[false,{\".swp-inactive-block\":false},[\"min-height:50px\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".swp-inactive-block code\":false},[\"display:block\",\"width:100%\",\"padding:5px\",\"height:42px\"]],[false,{\".swp-inactive-block .swp-preview\":false},[\"background:#f5f5f5\",\"width:100%\",\"display:block\",\"font-family:\\\"SF Pro Text\\\",\\\"Helvetica\\\",sans-sans-serif\",\"font-size:13px\",\"padding:15px\",\"border-radius:4px\"]],[false,{\".swp-inactive-block .swp-dashicon\":false},[\"margin:0 14px\"]],[false,{\".click-to-tweet-block-wrap textarea[name=\\\"tweetText\\\"]\":false},[\"border-top-right-radius:0px\"]],[false,{\".click-to-tweet-block-wrap .block-characters-remaining\":false},[\"font-size:16px\",\"font-size:13px\",\"font-weight:normal\",\"color:white\",\"padding:5px\",\"padding:5px 15px\",\"border-top-right-radius:4px\",\"border-top-left-radius:4px\",\"background:#30394f\",\"margin:0\",\"float:right\",\"max-width:200px\",\"position:relative\",\"-webkit-transition:all 300ms\",\"-o-transition:all 300ms\",\"transition:all 300ms\"]],[false,{\".click-to-tweet-block-wrap .block-characters-remaining.over-limit\":false},[\"background:#ee464f\",\"color:#fff\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1388,\"final_size\":216,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=2.3.0\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1020,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2261,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"82cd798ece835d3c574519b60ef930fe\",\"parse_time\":0.0071032047271728516,\"shake_time\":0.15865612030029297,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-unknown-size\":false,\"amp-anim.amp-wp-enforced-sizes\":false,\"amp-img.amp-wp-enforced-sizes\":true},[\"-o-object-fit:contain\",\"object-fit:contain\"]],[false,{\"body amp-audio:not([controls])\":false},[\"display:inline-block\",\"height:auto\"]],[false,{\".amp-wp-default-form-message>p\":false},[\"margin:1em 0\",\"padding:.5em\"]],[false,{\".amp-wp-default-form-message[submit-success]>p.amp-wp-form-redirecting\":false,\".amp-wp-default-form-message[submitting]>p\":false},[\"font-style:italic\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:not(.amp-wp-form-redirecting)\":false},[\"background-color:#90ee90\",\"border:1px solid green\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-error]>p\":false},[\"background-color:#ffb6c1\",\"border:1px solid red\",\"color:#000\"]],[false,{\".amp-wp-default-form-message[submit-success]>p:empty\":false},[\"display:none\"]],[false,{\"amp-carousel .amp-wp-gallery-caption\":false},[\"background-color:rgba(0,0,0,.5)\",\"bottom:0\",\"color:#fff\",\"left:0\",\"margin-bottom:0\",\"padding:1rem\",\"position:absolute\",\"right:0\",\"text-align:center\"]],[false,{\"amp-carousel .amp-wp-gallery-caption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery[data-amp-carousel=true]\":false,\".wp-block-gallery[data-amp-carousel=true].has-nested-images\":false},[\"display:block\",\"flex-wrap:unset\"]],[false,{\".wp-video\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"height:auto\"]],[false,{\"button[overflow]\":false},[\"bottom:0\"]],[true,{\"amp-anim img\":false,\"amp-anim noscript\":false,\"amp-iframe iframe\":false,\"amp-iframe noscript\":false,\"amp-img img\":true,\"amp-img noscript\":true,\"amp-video noscript\":false,\"amp-video video\":false},[\"image-rendering:inherit\",\"-o-object-fit:inherit\",\"object-fit:inherit\",\"-o-object-position:inherit\",\"object-position:inherit\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":80574,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"wp-block-library-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/css\\/dist\\/block-library\\/style.min.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":1381,\"function\":\"wp_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2246,\"function\":\"wp_common_block_scripts_and_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":20,\"hash\":\"db08bb47cd026dcad266bd62ddc38fd8\",\"parse_time\":1.007054090499878,\"shake_time\":0.011003971099853516,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\"#start-resizable-editor-section\":false},[\"display:none\"]],[false,{\".wp-block-audio\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-audio figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-audio amp-audio\":false},[\"width:100%\",\"min-width:300px\"]],[false,{\".wp-block-button__link\":false},[\"color:#fff\",\"background-color:#32373c\",\"border-radius:9999px\",\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"font-size:1.125em\",\"padding:calc(.667em + 2px) calc(1.333em + 2px)\",\"text-align:center\",\"text-decoration:none\",\"overflow-wrap:break-word\",\"box-sizing:border-box\"]],[false,{\".wp-block-button__link:active\":false,\".wp-block-button__link:focus\":false,\".wp-block-button__link:hover\":false,\".wp-block-button__link:visited\":false},[\"color:#fff\"]],[false,{\".wp-block-button__link.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-button__link.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width\":false},[\"max-width:none\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"width:calc(100% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100:only-child\":false},[\"margin-right:0\",\"width:100%\"]],[false,\"@supports (column-gap:0.5em){\"],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button.wp-block-button\":false,\".wp-block-buttons>.wp-block-button.wp-block-button\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - .375em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - .25em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - .125em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"width:auto\",\"flex-basis:100%\"]],[false,\"}\"],[false,{\".wp-block-button.is-style-squared\":false,\".wp-block-button__link.wp-block-button.is-style-squared\":false},[\"border-radius:0\"]],[false,{\".wp-block-button.no-border-radius:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button__link.no-border-radius:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[false,{\".is-style-outline>.wp-block-button__link\":false,\".wp-block-button__link.is-style-outline\":false},[\"border:2px solid\",\"padding:.667em 1.333em\"]],[false,{\".is-style-outline>.wp-block-button__link:not(.has-text-color)\":false,\".wp-block-button__link.is-style-outline:not(.has-text-color)\":false},[\"color:currentColor\"]],[false,{\".is-style-outline>.wp-block-button__link:not(.has-background)\":false,\".wp-block-button__link.is-style-outline:not(.has-background)\":false},[\"background-color:transparent\"]],[false,{\".wp-block-buttons\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\",\"column-gap:.5em\"]],[false,{\".wp-block-buttons.is-vertical\":false},[\"flex-direction:column\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-buttons>.wp-block-button\":false},[\"display:inline-block\",\"margin-left:0\",\"margin-right:.5em\",\"margin-bottom:.5em\"]],[false,{\".wp-block-buttons>.wp-block-button:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.is-content-justification-left\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-left.is-vertical\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-center\":false},[\"justify-content:center\"]],[false,{\".wp-block-buttons.is-content-justification-center.is-vertical\":false},[\"align-items:center\"]],[false,{\".wp-block-buttons.is-content-justification-right\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button\":false},[\"margin-left:.5em\",\"margin-right:0\"]],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-buttons.is-content-justification-right.is-vertical\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-space-between\":false},[\"justify-content:space-between\"]],[false,{\".wp-block-buttons.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-buttons.alignleft .wp-block-button\":false},[\"margin-left:0\",\"margin-right:.5em\"]],[false,{\".wp-block-buttons.alignleft .wp-block-button:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.alignright .wp-block-button\":false},[\"margin-right:0\",\"margin-left:.5em\"]],[false,{\".wp-block-buttons.alignright .wp-block-button:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-button.aligncenter\":false,\".wp-block-calendar\":false},[\"text-align:center\"]],[false,{\".wp-block-calendar tbody td\":false,\".wp-block-calendar th\":false},[\"padding:.25em\",\"border:1px solid #ddd\"]],[false,{\".wp-block-calendar tfoot td\":false},[\"border:none\"]],[false,{\".wp-block-calendar table\":false},[\"width:100%\",\"border-collapse:collapse\"]],[false,{\".wp-block-calendar table th\":false},[\"font-weight:400\",\"background:#ddd\"]],[false,{\".wp-block-calendar a\":false},[\"text-decoration:underline\"]],[false,{\".wp-block-calendar table caption\":false,\".wp-block-calendar table tbody\":false},[\"color:#40464d\"]],[false,{\".wp-block-categories.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-categories.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-code code\":false},[\"display:block\",\"white-space:pre-wrap\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-columns\":false},[\"display:flex\",\"margin-bottom:1.75em\",\"box-sizing:border-box\",\"flex-wrap:wrap\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns\":false},[\"flex-wrap:nowrap\"]],[false,\"}\"],[false,{\".wp-block-columns.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-columns.are-vertically-aligned-top\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-columns.are-vertically-aligned-center\":false},[\"align-items:center\"]],[false,{\".wp-block-columns.are-vertically-aligned-bottom\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-column\":false},[\"flex-grow:1\",\"min-width:0\",\"word-break:break-word\",\"overflow-wrap:break-word\"]],[false,\"@media (max-width:599px){\"],[false,{\".wp-block-column:not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:100%\"]],[false,\"}\"],[false,\"@media (min-width:600px) and (max-width:781px){\"],[false,{\".wp-block-column:not(:only-child)\":false},[\"flex-grow:0\"]],[false,{\".wp-block-column:not(:only-child):not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:calc(50% - 1em)\"]],[false,{\".wp-block-column:nth-child(2n)\":false},[\"margin-left:2em\"]],[false,\"}\"],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[false,{\".wp-block-column:not(:first-child)\":false},[\"margin-left:2em\"]],[false,\"}\"],[false,{\".wp-block-column.is-vertically-aligned-top\":false},[\"align-self:flex-start\"]],[false,{\".wp-block-column.is-vertically-aligned-center\":false},[\"align-self:center\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false},[\"align-self:flex-end\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false,\".wp-block-column.is-vertically-aligned-center\":false,\".wp-block-column.is-vertically-aligned-top\":false},[\"width:100%\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"position:relative\",\"background-size:cover\",\"background-position:50%\",\"min-height:430px\",\"width:100%\",\"display:flex\",\"justify-content:center\",\"align-items:center\",\"padding:1em\",\"box-sizing:border-box\"]],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:fixed\"]],[false,\"@supports (-webkit-overflow-scrolling:touch){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,{\".wp-block-cover-image.is-repeated\":false,\".wp-block-cover.is-repeated\":false},[\"background-repeat:repeat\",\"background-size:auto\"]],[false,{\".wp-block-cover-image.has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover.has-background-dim:not([class*=-background-color])\":false},[\"background-color:#000\"]],[false,{\".wp-block-cover-image.has-background-dim:before\":false,\".wp-block-cover.has-background-dim:before\":false},[\"content:\\\"\\\"\",\"background-color:inherit\"]],[false,{\".wp-block-cover-image.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover-image .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover .wp-block-cover__gradient-background\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"bottom:0\",\"right:0\",\"z-index:1\",\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false},[\"opacity:1\"]],[false,{\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-cover-image:after\":false,\".wp-block-cover:after\":false},[\"display:block\",\"content:\\\"\\\"\",\"font-size:0\",\"min-height:inherit\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-cover-image:after\":false,\".wp-block-cover:after\":false},[\"content:none\"]],[false,\"}\"],[false,{\".wp-block-cover-image.aligncenter\":false,\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.aligncenter\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"display:flex\"]],[false,{\".wp-block-cover-image .wp-block-cover__inner-container\":false,\".wp-block-cover .wp-block-cover__inner-container\":false},[\"width:100%\",\"z-index:1\",\"color:#fff\"]],[false,{\".wp-block-cover-image h1:not(.has-text-color)\":false,\".wp-block-cover-image h2:not(.has-text-color)\":false,\".wp-block-cover-image h3:not(.has-text-color)\":false,\".wp-block-cover-image h4:not(.has-text-color)\":false,\".wp-block-cover-image h5:not(.has-text-color)\":false,\".wp-block-cover-image h6:not(.has-text-color)\":false,\".wp-block-cover-image p:not(.has-text-color)\":false,\".wp-block-cover h1:not(.has-text-color)\":false,\".wp-block-cover h2:not(.has-text-color)\":false,\".wp-block-cover h3:not(.has-text-color)\":false,\".wp-block-cover h4:not(.has-text-color)\":false,\".wp-block-cover h5:not(.has-text-color)\":false,\".wp-block-cover h6:not(.has-text-color)\":false,\".wp-block-cover p:not(.has-text-color)\":false},[\"color:inherit\"]],[false,{\".wp-block-cover-image.is-position-top-left\":false,\".wp-block-cover.is-position-top-left\":false},[\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-top-center\":false,\".wp-block-cover.is-position-top-center\":false},[\"align-items:flex-start\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-top-right\":false,\".wp-block-cover.is-position-top-right\":false},[\"align-items:flex-start\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-center-left\":false,\".wp-block-cover.is-position-center-left\":false},[\"align-items:center\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-center-center\":false,\".wp-block-cover.is-position-center-center\":false},[\"align-items:center\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-center-right\":false,\".wp-block-cover.is-position-center-right\":false},[\"align-items:center\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-bottom-left\":false,\".wp-block-cover.is-position-bottom-left\":false},[\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-bottom-center\":false,\".wp-block-cover.is-position-bottom-center\":false},[\"align-items:flex-end\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-bottom-right\":false,\".wp-block-cover.is-position-bottom-right\":false},[\"align-items:flex-end\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false},[\"margin:0\",\"width:auto\"]],[false,{\".wp-block-cover-image amp-img.wp-block-cover__image-background\":false,\".wp-block-cover-image amp-anim.wp-block-cover__image-background\":false,\".wp-block-cover-image amp-video.wp-block-cover__video-background\":false,\".wp-block-cover-image amp-youtube.wp-block-cover__video-background\":false,\".wp-block-cover amp-img.wp-block-cover__image-background\":false,\".wp-block-cover amp-anim.wp-block-cover__image-background\":false,\".wp-block-cover amp-video.wp-block-cover__video-background\":false,\".wp-block-cover amp-youtube.wp-block-cover__video-background\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"margin:0\",\"padding:0\",\"width:100%\",\"height:100%\",\"max-width:none\",\"max-height:none\",\"-o-object-fit:cover\",\"object-fit:cover\",\"outline:none\",\"border:none\",\"box-shadow:none\"]],[false,{\".wp-block-cover__image-background\":false,\".wp-block-cover__video-background\":false},[\"z-index:0\"]],[false,{\".wp-block-cover-image-text\":false,\".wp-block-cover-image-text a\":false,\".wp-block-cover-image-text a:active\":false,\".wp-block-cover-image-text a:focus\":false,\".wp-block-cover-image-text a:hover\":false,\".wp-block-cover-text\":false,\".wp-block-cover-text a\":false,\".wp-block-cover-text a:active\":false,\".wp-block-cover-text a:focus\":false,\".wp-block-cover-text a:hover\":false,\"section.wp-block-cover-image h2\":false,\"section.wp-block-cover-image h2 a\":false,\"section.wp-block-cover-image h2 a:active\":false,\"section.wp-block-cover-image h2 a:focus\":false,\"section.wp-block-cover-image h2 a:hover\":false},[\"color:#fff\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-left-content\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-right-content\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-left-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-left-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-left-content>h2\":false},[\"margin-left:0\",\"text-align:left\"]],[false,{\".wp-block-cover-image.has-right-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-right-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-right-content>h2\":false},[\"margin-right:0\",\"text-align:right\"]],[false,{\".wp-block-cover-image .wp-block-cover-image-text\":false,\".wp-block-cover .wp-block-cover-text\":false,\"section.wp-block-cover-image>h2\":false},[\"font-size:2em\",\"line-height:1.25\",\"z-index:1\",\"margin-bottom:0\",\"max-width:840px\",\"padding:.44em\",\"text-align:center\"]],[false,{\".wp-block-embed.alignleft\":false,\".wp-block-embed.alignright\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"]\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"]\":false},[\"max-width:360px\",\"width:100%\"]],[false,{\".wp-block-embed.alignleft .wp-block-embed__wrapper\":false,\".wp-block-embed.alignright .wp-block-embed__wrapper\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false},[\"min-width:280px\"]],[false,{\".wp-block-cover .wp-block-embed\":false},[\"min-width:320px\",\"min-height:240px\"]],[false,{\".wp-block-embed\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-embed figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-embed amp-iframe\":false},[\"max-width:100%\"]],[false,{\".wp-block-embed__wrapper\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio amp-iframe\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"height:100%\",\"width:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:42.85%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:56.25%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before\":false},[\"padding-top:75%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before\":false},[\"padding-top:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before\":false},[\"padding-top:177.77%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before\":false},[\"padding-top:200%\"]],[false,{\".wp-block-file\":false},[\"margin-bottom:1.5em\"]],[false,{\".wp-block-file.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-file.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-file .wp-block-file__embed\":false},[\"margin-bottom:1em\"]],[false,{\".wp-block-file .wp-block-file__button\":false},[\"background:#32373c\",\"border-radius:2em\",\"color:#fff\",\"font-size:.8em\",\"padding:.5em 1em\"]],[false,{\".wp-block-file a.wp-block-file__button\":false},[\"text-decoration:none\"]],[false,{\".wp-block-file a.wp-block-file__button:active\":false,\".wp-block-file a.wp-block-file__button:focus\":false,\".wp-block-file a.wp-block-file__button:hover\":false,\".wp-block-file a.wp-block-file__button:visited\":false},[\"box-shadow:none\",\"color:#fff\",\"opacity:.85\",\"text-decoration:none\"]],[false,{\".wp-block-file *+.wp-block-file__button\":false},[\"margin-left:.75em\"]],[false,{\".blocks-gallery-grid\":false,\".wp-block-gallery\":false},[\"display:flex\",\"flex-wrap:wrap\",\"list-style-type:none\",\"padding:0\",\"margin:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image\":false,\".blocks-gallery-grid .blocks-gallery-item\":false,\".wp-block-gallery .blocks-gallery-image\":false,\".wp-block-gallery .blocks-gallery-item\":false},[\"margin:0 1em 1em 0\",\"display:flex\",\"flex-grow:1\",\"flex-direction:column\",\"justify-content:center\",\"position:relative\",\"align-self:flex-start\",\"width:calc(50% - 1em)\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery .blocks-gallery-item:nth-of-type(2n)\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image figure\":false,\".blocks-gallery-grid .blocks-gallery-item figure\":false,\".wp-block-gallery .blocks-gallery-image figure\":false,\".wp-block-gallery .blocks-gallery-item figure\":false},[\"margin:0\",\"height:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid .blocks-gallery-image figure\":false,\".blocks-gallery-grid .blocks-gallery-item figure\":false,\".wp-block-gallery .blocks-gallery-image figure\":false,\".wp-block-gallery .blocks-gallery-item figure\":false},[\"display:flex\",\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item amp-anim\":false,\".wp-block-gallery .blocks-gallery-image amp-img\":false,\".wp-block-gallery .blocks-gallery-image amp-anim\":false,\".wp-block-gallery .blocks-gallery-item amp-img\":false,\".wp-block-gallery .blocks-gallery-item amp-anim\":false},[\"display:block\",\"max-width:100%\",\"height:auto\",\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item amp-anim\":false,\".wp-block-gallery .blocks-gallery-image amp-img\":false,\".wp-block-gallery .blocks-gallery-image amp-anim\":false,\".wp-block-gallery .blocks-gallery-item amp-img\":false,\".wp-block-gallery .blocks-gallery-item amp-anim\":false},[\"width:auto\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image figcaption\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption\":false,\".wp-block-gallery .blocks-gallery-image figcaption\":false,\".wp-block-gallery .blocks-gallery-item figcaption\":false},[\"position:absolute\",\"bottom:0\",\"width:100%\",\"max-height:100%\",\"overflow:auto\",\"padding:3em .77em .7em\",\"color:#fff\",\"text-align:center\",\"font-size:.8em\",\"background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent)\",\"box-sizing:border-box\",\"margin:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image figcaption amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image figcaption amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption amp-anim\":false,\".wp-block-gallery .blocks-gallery-image figcaption amp-img\":false,\".wp-block-gallery .blocks-gallery-image figcaption amp-anim\":false,\".wp-block-gallery .blocks-gallery-item figcaption amp-img\":false,\".wp-block-gallery .blocks-gallery-item figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".blocks-gallery-grid figcaption\":false,\".wp-block-gallery figcaption\":false},[\"flex-grow:1\"]],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item\":false},[\"align-self:inherit\"]],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-anim\":false},[\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-anim\":false},[\"height:100%\",\"flex:1\",\"-o-object-fit:cover\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".blocks-gallery-grid.columns-1 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-1 .blocks-gallery-item\":false,\".wp-block-gallery.columns-1 .blocks-gallery-image\":false,\".wp-block-gallery.columns-1 .blocks-gallery-item\":false},[\"width:100%\",\"margin-right:0\"]],[false,\"@media (min-width:600px){\"],[false,{\".blocks-gallery-grid.columns-3 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-item\":false,\".wp-block-gallery.columns-3 .blocks-gallery-image\":false,\".wp-block-gallery.columns-3 .blocks-gallery-item\":false},[\"width:calc(33.33333% - .66667em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-4 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-item\":false,\".wp-block-gallery.columns-4 .blocks-gallery-image\":false,\".wp-block-gallery.columns-4 .blocks-gallery-item\":false},[\"width:calc(25% - .75em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-5 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-item\":false,\".wp-block-gallery.columns-5 .blocks-gallery-image\":false,\".wp-block-gallery.columns-5 .blocks-gallery-item\":false},[\"width:calc(20% - .8em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-6 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-item\":false,\".wp-block-gallery.columns-6 .blocks-gallery-image\":false,\".wp-block-gallery.columns-6 .blocks-gallery-item\":false},[\"width:calc(16.66667% - .83333em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-7 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-item\":false,\".wp-block-gallery.columns-7 .blocks-gallery-image\":false,\".wp-block-gallery.columns-7 .blocks-gallery-item\":false},[\"width:calc(14.28571% - .85714em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-8 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-item\":false,\".wp-block-gallery.columns-8 .blocks-gallery-image\":false,\".wp-block-gallery.columns-8 .blocks-gallery-item\":false},[\"width:calc(12.5% - .875em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n)\":false,\".wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image:last-child\":false,\".blocks-gallery-grid .blocks-gallery-item:last-child\":false,\".wp-block-gallery .blocks-gallery-image:last-child\":false,\".wp-block-gallery .blocks-gallery-item:last-child\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid.alignleft\":false,\".blocks-gallery-grid.alignright\":false,\".wp-block-gallery.alignleft\":false,\".wp-block-gallery.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".blocks-gallery-grid.aligncenter .blocks-gallery-item figure\":false,\".wp-block-gallery.aligncenter .blocks-gallery-item figure\":false},[\"justify-content:center\"]],[false,{\".wp-block-group\":false},[\"box-sizing:border-box\"]],[false,{\"h1.has-background\":false,\"h2.has-background\":false,\"h3.has-background\":false,\"h4.has-background\":false,\"h5.has-background\":false,\"h6.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-image\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-image amp-img\":false,\".wp-block-image amp-anim\":false},[\"max-width:100%\"]],[false,{\".wp-block-image:not(.is-style-rounded) amp-img\":false,\".wp-block-image:not(.is-style-rounded) amp-anim\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-image.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-image.alignfull amp-img\":false,\".wp-block-image.alignfull amp-anim\":false,\".wp-block-image.alignwide amp-img\":false,\".wp-block-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\".wp-block-image .aligncenter\":false,\".wp-block-image .alignleft\":false,\".wp-block-image .alignright\":false},[\"display:table\"]],[false,{\".wp-block-image .aligncenter>figcaption\":false,\".wp-block-image .alignleft>figcaption\":false,\".wp-block-image .alignright>figcaption\":false},[\"display:table-caption\",\"caption-side:bottom\"]],[false,{\".wp-block-image .alignleft\":false},[\"float:left\",\"margin:.5em 1em .5em 0\"]],[false,{\".wp-block-image .alignright\":false},[\"float:right\",\"margin:.5em 0 .5em 1em\"]],[false,{\".wp-block-image .aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-block-image figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false,\".wp-block-image.is-style-rounded amp-img\":false,\".wp-block-image.is-style-rounded amp-anim\":false},[\"border-radius:9999px\"]],[false,\"@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){\"],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"-webkit-mask-image:url(\\\"data:image\\/svg+xml;utf8,<\\/svg>\\\")\",\"mask-image:url(\\\"data:image\\/svg+xml;utf8,<\\/svg>\\\")\",\"mask-mode:alpha\",\"-webkit-mask-repeat:no-repeat\",\"mask-repeat:no-repeat\",\"-webkit-mask-size:contain\",\"mask-size:contain\",\"-webkit-mask-position:center\",\"mask-position:center\",\"border-radius:0\"]],[false,\"}\"],[false,{\".wp-block-image figure\":false},[\"margin:0\"]],[false,{\"ol.wp-block-latest-comments\":false},[\"margin-left:0\"]],[false,{\".wp-block-latest-comments .wp-block-latest-comments\":false},[\"padding-left:0\"]],[false,{\".wp-block-latest-comments__comment\":false},[\"line-height:1.1\",\"list-style:none\",\"margin-bottom:1em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment\":false},[\"min-height:2.25em\",\"list-style:none\"]],[false,{\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt\":false,\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta\":false},[\"margin-left:3.25em\"]],[false,{\".has-dates .wp-block-latest-comments__comment\":false,\".has-excerpts .wp-block-latest-comments__comment\":false},[\"line-height:1.5\"]],[false,{\".wp-block-latest-comments__comment-excerpt p\":false},[\"font-size:.875em\",\"line-height:1.8\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-latest-comments__comment-date\":false},[\"display:block\",\"font-size:.75em\"]],[false,{\".wp-block-latest-comments .avatar\":false,\".wp-block-latest-comments__comment-avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-latest-posts.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-latest-posts.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list\":false},[\"list-style:none\",\"padding-left:0\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list li\":false},[\"clear:both\"]],[false,{\".wp-block-latest-posts.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\"]],[false,{\".wp-block-latest-posts.is-grid li\":false},[\"margin:0 1.25em 1.25em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-latest-posts.columns-2 li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-latest-posts.columns-2 li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-3 li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-latest-posts.columns-3 li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-4 li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-latest-posts.columns-4 li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-latest-posts.columns-5 li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-6 li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-latest-posts.columns-6 li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".wp-block-latest-posts__post-author\":false,\".wp-block-latest-posts__post-date\":false},[\"display:block\",\"color:#555\",\"font-size:.8125em\"]],[false,{\".wp-block-latest-posts__post-excerpt\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-latest-posts__featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-latest-posts__featured-image amp-img\":false,\".wp-block-latest-posts__featured-image amp-anim\":false},[\"height:auto\",\"width:auto\",\"max-width:100%\"]],[false,{\".wp-block-latest-posts__featured-image.alignleft\":false},[\"margin-right:1em\"]],[false,{\".wp-block-latest-posts__featured-image.alignright\":false},[\"margin-left:1em\"]],[false,{\".wp-block-latest-posts__featured-image.aligncenter\":false},[\"margin-bottom:1em\",\"text-align:center\"]],[false,{\".block-editor-image-alignment-control__row .components-base-control__field\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\"]],[false,{\".block-editor-image-alignment-control__row .components-base-control__field .components-base-control__label\":false},[\"margin-bottom:0\"]],[false,{\"ol.has-background\":false,\"ul.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-media-text\":false},[\"direction:ltr\",\"display:grid\",\"grid-template-columns:50% 1fr\",\"grid-template-rows:auto\"]],[false,{\".wp-block-media-text.has-media-on-the-right\":false},[\"grid-template-columns:1fr 50%\"]],[false,{\".wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media\":false},[\"align-self:start\"]],[false,{\".wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media\":false,\".wp-block-media-text .wp-block-media-text__content\":false,\".wp-block-media-text .wp-block-media-text__media\":false},[\"align-self:center\"]],[false,{\".wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media\":false},[\"align-self:end\"]],[false,{\".wp-block-media-text .wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\",\"margin:0\"]],[false,{\".wp-block-media-text .wp-block-media-text__content\":false},[\"direction:ltr\",\"grid-column:2\",\"grid-row:1\",\"padding:0 8%\",\"word-break:break-word\"]],[false,{\".wp-block-media-text.has-media-on-the-right .wp-block-media-text__media\":false},[\"grid-column:2\",\"grid-row:1\"]],[false,{\".wp-block-media-text.has-media-on-the-right .wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"max-width:unset\",\"width:100%\",\"vertical-align:middle\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media\":false},[\"height:100%\",\"min-height:250px\",\"background-size:cover\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill .wp-block-media-text__media amp-anim\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-media-text.is-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"grid-template-columns:100%\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:2\"]],[false,\"}\"],[false,{\".wp-block-navigation\":false},[\"position:relative\"]],[false,{\".wp-block-navigation ul\":false,\".wp-block-navigation ul li\":false},[\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-navigation-link\":false,\".wp-block-navigation .wp-block-pages-list__item\":false},[\"display:flex\",\"align-items:center\",\"position:relative\"]],[false,{\".wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__container:empty\":false,\".wp-block-navigation .wp-block-pages-list__item .wp-block-navigation-link__container:empty\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__content\":false,\".wp-block-navigation .wp-block-pages-list__item__link\":false},[\"color:inherit\",\"display:block\"]],[false,{\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__container\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content:focus\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link:focus\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content:focus\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link:focus\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .wp-block-page-list__submenu-icon\":false},[\"height:inherit\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .wp-block-page-list__submenu-icon svg\":false},[\"stroke:currentColor\"]],[false,{\".wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__content.wp-block-navigation-link__content.wp-block-navigation-link__content\":false,\".wp-block-navigation .wp-block-pages-list__item .wp-block-pages-list__item__link\":false},[\"padding:0\"]],[false,{\".wp-block-navigation .has-child>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child>.wp-block-pages-list__item__link\":false},[\"margin-right:.5em\"]],[false,{\".wp-block-navigation .has-child .submenu-container\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container\":false},[\"background-color:inherit\",\"color:inherit\",\"position:absolute\",\"z-index:2\",\"flex-direction:column\",\"align-items:normal\",\"min-width:200px\",\"display:none\",\"opacity:0\",\"transition:opacity .1s linear\",\"visibility:hidden\"]],[false,{\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-pages-list__item__link\":false},[\"flex-grow:1\"]],[false,{\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-page-list__submenu-icon\":false},[\"padding-right:.5em\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation .has-child .submenu-container .submenu-container:before\":false,\".wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container:before\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container:before\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"right:100%\",\"height:100%\",\"display:block\",\"width:.5em\",\"background:transparent\"]],[false,{\".wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .has-child .submenu-container .wp-block-page-list__submenu-icon svg\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-page-list__submenu-icon svg\":false},[\"transform:rotate(-90deg)\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child:hover>.wp-block-navigation-link__container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:focus-within>.wp-block-navigation-link__container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:hover\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation .has-child:hover>.submenu-container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:focus-within\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation .has-child:focus-within>.submenu-container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container\":false},[\"left:auto\",\"right:0\"]],[false,{\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:auto\",\"right:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation .wp-block-navigation__container>.wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list>.wp-block-pages-list__item\":false},[\"margin:0 2em 0 0\"]],[false,{\".wp-block-navigation.wp-block-navigation .wp-block-navigation__container>.wp-block-navigation-link:last-child\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list:last-child\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list>.wp-block-pages-list__item:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .wp-block-navigation__container>.wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list>.wp-block-pages-list__item\":false},[\"margin:0 .5em 0 0\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .wp-block-navigation__container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list .wp-block-pages-list__item__link\":false},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container\":false},[\"left:-1em\",\"top:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-pages-list__item\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-pages-list__item\":false},[\"margin:0\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-pages-list__item__link\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-pages-list__item__link\":false},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:-1px\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:100%\",\"top:-1px\"]],[false,\"}\"],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container\":false},[\"left:0\",\"top:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:0\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:100%\",\"top:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .submenu-container\":false,\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-navigation-link__container\":false},[\"background-color:#fff\",\"color:#000\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation__container\":false},[\"align-items:center\",\"list-style:none\",\"margin:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation__container .is-responsive\":false},[\"display:none\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__container\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".is-vertical .wp-block-navigation__container\":false},[\"display:block\",\"flex-direction:column\",\"align-items:flex-start\"]],[false,\"}\"],[false,{\".items-justified-center .wp-block-navigation__container\":false},[\"justify-content:center\"]],[false,{\".items-justified-right .wp-block-navigation__container\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between .wp-block-navigation__container\":false},[\"justify-content:space-between\"]],[false,{\".is-vertical.items-justified-center>ul\":false},[\"align-items:center\"]],[false,{\".is-vertical.items-justified-right>ul\":false},[\"align-items:flex-end\"]],[false,{\".is-vertical.items-justified-right>ul .wp-block-navigation-link\":false,\".is-vertical.items-justified-right>ul .wp-block-pages-list__item\":false},[\"margin-right:0\",\"justify-content:flex-end\"]],[false,{\".wp-block-navigation__responsive-container\":false},[\"display:none\",\"position:fixed\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"z-index:1\",\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"display:flex\",\"flex-direction:column\",\"overflow:auto\",\"z-index:100000\",\"padding:24px\",\"background-color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container\":false},[\"display:flex\",\"flex-direction:column\",\"margin-left:auto\",\"margin-right:auto\",\"align-items:flex-start\",\"line-height:48px\",\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container .wp-block-page-list\":false},[\"flex-direction:column\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link .wp-block-navigation-link__container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item .submenu-container:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open)\":false},[\"display:flex\",\"flex-direction:row\",\"position:relative\",\"background-color:inherit\"]],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__responsive-container-close\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .submenu-container.submenu-container.submenu-container.submenu-container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link__container.wp-block-navigation-link__container.wp-block-navigation-link__container.wp-block-navigation-link__container\":false},[\"left:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:#fff\",\"color:#000\"]],[false,{\".wp-block-navigation__responsive-container-close\":false,\".wp-block-navigation__responsive-container-open\":false},[\"vertical-align:middle\",\"cursor:pointer\",\"color:currentColor\",\"background:transparent\",\"border:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container-close svg\":false,\".wp-block-navigation__responsive-container-open svg\":false},[\"fill:currentColor\",\"pointer-events:none\",\"display:block\",\"width:24px\",\"height:24px\"]],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:flex\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:none\"]],[false,\"}\"],[false,{\".items-justified-left .wp-block-navigation__responsive-container-open\":false},[\"margin-left:0\",\"margin-right:auto\"]],[false,{\".items-justified-center .wp-block-navigation__responsive-container-open\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".items-justified-right .wp-block-navigation__responsive-container-open\":false},[\"margin-left:auto\",\"margin-right:0\"]],[false,{\".wp-block-navigation__responsive-container-close\":false},[\"position:absolute\",\"top:24px\",\"right:24px\",\"z-index:2\"]],[false,{\".wp-block-navigation__responsive-close\":false},[\"width:100%\"]],[false,{\".is-menu-open .wp-block-navigation__responsive-close\":false,\".is-menu-open .wp-block-navigation__responsive-container-content\":false,\".is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"width:100%\",\"height:100%\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list__submenu-icon\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .has-child .submenu-container\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .has-child .wp-block-navigation-link__container\":false},[\"position:relative\",\"opacity:1\",\"visibility:visible\",\"padding:0 0 0 32px\",\"border:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item\":false},[\"flex-direction:column\",\"align-items:flex-start\"]],[false,{\"html.has-modal-open\":false},[\"overflow:hidden\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__label\":false},[\"word-break:normal\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-navigation .wp-block-home-link__content\":false},[\"color:inherit\",\"display:block\",\"padding:.5em 1em\"]],[false,{\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content:focus\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content:focus\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-home-link__container\":false},[\"background-color:#fff\",\"color:#000\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-home-link__container .wp-block-home-link__container\":false},[\"top:-1px\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false},[\"display:flex\",\"flex-wrap:wrap\",\"background-color:inherit\"]],[false,{\".wp-block-navigation .wp-block-pages-list__item\":false},[\"background-color:inherit\"]],[false,{\".wp-block-navigation .wp-block-page-list__submenu-icon\":false},[\"display:none\"]],[false,{\".is-open .wp-block-navigation__container .wp-block-page-list\":false,\".is-vertical .wp-block-navigation__container .wp-block-page-list\":false,\".wp-block-navigation .show-submenu-icons .wp-block-page-list__submenu-icon\":false},[\"display:block\"]],[false,\"@media (min-width:480px){\"],[false,{\".is-open .wp-block-navigation__container .wp-block-page-list\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".items-justified-space-between .wp-block-page-list\":false},[\"display:contents\"]],[false,{\".is-small-text\":false},[\"font-size:.875em\"]],[false,{\".is-regular-text\":false},[\"font-size:1em\"]],[false,{\".is-large-text\":false},[\"font-size:2.25em\"]],[false,{\".is-larger-text\":false},[\"font-size:3em\"]],[false,{\".has-drop-cap:not(:focus):first-letter\":false},[\"float:left\",\"font-size:8.4em\",\"line-height:.68\",\"font-weight:100\",\"margin:.05em .1em 0 0\",\"text-transform:uppercase\",\"font-style:normal\"]],[false,{\"p.has-drop-cap.has-background\":false},[\"overflow:hidden\"]],[false,{\"p.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\"p.has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-post-author\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-author__byline\":false},[\"width:100%\",\"margin-top:0\",\"margin-bottom:0\",\"font-size:.5em\"]],[false,{\".wp-block-post-author__avatar\":false},[\"margin-right:1em\"]],[false,{\".wp-block-post-author__bio\":false},[\"margin-bottom:.7em\",\"font-size:.7em\"]],[false,{\".wp-block-post-author__content\":false},[\"flex-grow:1\",\"flex-basis:0\"]],[false,{\".wp-block-post-author__name\":false},[\"font-weight:700\",\"margin:0\"]],[false,{\".wp-block-post-comments .commentlist\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .commentlist .comment\":false},[\"min-height:2.25em\",\"padding-left:3.25em\"]],[false,{\".wp-block-post-comments .commentlist .comment p\":false},[\"font-size:.875em\",\"line-height:1.8\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-post-comments .commentlist .children\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .comment-author\":false},[\"line-height:1.5\",\"margin-left:-3.25em\"]],[false,{\".wp-block-post-comments .comment-author .avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-post-comments .comment-author cite\":false},[\"font-style:normal\"]],[false,{\".wp-block-post-comments .comment-meta\":false},[\"line-height:1.5\",\"margin-left:-3.25em\"]],[false,{\".wp-block-post-comments .comment-body .commentmetadata\":false},[\"font-size:.75em\"]],[false,{\".wp-block-post-comments .comment-form-author label\":false,\".wp-block-post-comments .comment-form-comment label\":false,\".wp-block-post-comments .comment-form-email label\":false,\".wp-block-post-comments .comment-form-url label\":false},[\"display:block\"]],[false,{\".wp-block-post-comments .comment-form-comment textarea\":false},[\"box-sizing:border-box\",\"width:100%\"]],[false,{\".wp-block-post-comments .reply\":false},[\"font-size:.75em\",\"margin-bottom:1.4em\"]],[false,{\".wp-block-post-comments input\":false,\".wp-block-post-comments textarea\":false},[\"border:1px solid #949494\"]],[false,{\".wp-block-post-comments-form input[type=submit]\":false},[\"border:none\",\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"text-align:center\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-post-excerpt__more-link\":false,\".wp-block-post-title a\":false},[\"display:inline-block\"]],[false,{\".wp-block-preformatted\":false},[\"white-space:pre-wrap\"]],[false,{\".wp-block-preformatted.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-pullquote\":false},[\"margin:0 0 1em\",\"padding:3em 0\",\"text-align:center\"]],[false,{\".wp-block-pullquote.alignleft\":false,\".wp-block-pullquote.alignright\":false},[\"max-width:420px\"]],[false,{\".wp-block-pullquote.alignleft p\":false,\".wp-block-pullquote.alignright p\":false},[\"font-size:1.25em\"]],[false,{\".wp-block-pullquote p\":false},[\"font-size:1.75em\",\"line-height:1.6\"]],[false,{\".wp-block-pullquote cite\":false,\".wp-block-pullquote footer\":false},[\"position:relative\"]],[false,{\".wp-block-pullquote .has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote:not(.is-style-solid-color)\":false},[\"background:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color\":false},[\"border:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote\":false},[\"margin-left:auto\",\"margin-right:auto\",\"text-align:left\",\"max-width:60%\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote p\":false},[\"margin-top:0\",\"margin-bottom:0\",\"font-size:2em\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote cite\":false},[\"text-transform:none\",\"font-style:normal\"]],[false,{\".wp-block-pullquote cite\":false},[\"color:inherit\"]],[false,{\".wp-block-post-template\":false,\".wp-block-query-loop\":false},[\"max-width:100%\",\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-post-template li\":false,\".wp-block-query-loop li\":false},[\"clear:both\"]],[false,{\".wp-block-post-template.is-flex-container\":false,\".wp-block-query-loop.is-flex-container\":false},[\"flex-direction:row\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-template.is-flex-container li\":false,\".wp-block-query-loop.is-flex-container li\":false},[\"margin:0 0 1.25em\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-post-template.is-flex-container li\":false,\".wp-block-query-loop.is-flex-container li\":false},[\"margin-right:1.25em\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li:nth-child(2n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li:nth-child(3n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li:nth-child(4n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li:nth-child(5n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li:nth-child(6n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".wp-block-query-pagination\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\"]],[false,{\".wp-block-query-pagination>.wp-block-query-pagination-next\":false,\".wp-block-query-pagination>.wp-block-query-pagination-numbers\":false,\".wp-block-query-pagination>.wp-block-query-pagination-previous\":false},[\"display:inline-block\",\"margin-right:.5em\",\"margin-bottom:.5em\"]],[false,{\".wp-block-query-pagination>.wp-block-query-pagination-next:last-child\":false,\".wp-block-query-pagination>.wp-block-query-pagination-numbers:last-child\":false,\".wp-block-query-pagination>.wp-block-query-pagination-previous:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-quote.is-large\":false,\".wp-block-quote.is-style-large\":false},[\"margin-bottom:1em\",\"padding:0 1em\"]],[false,{\".wp-block-quote.is-large p\":false,\".wp-block-quote.is-style-large p\":false},[\"font-size:1.5em\",\"font-style:italic\",\"line-height:1.6\"]],[false,{\".wp-block-quote.is-large cite\":false,\".wp-block-quote.is-large footer\":false,\".wp-block-quote.is-style-large cite\":false,\".wp-block-quote.is-style-large footer\":false},[\"font-size:1.125em\",\"text-align:right\"]],[false,{\".wp-block-rss.wp-block-rss\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-rss.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-rss.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-rss.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\",\"list-style:none\"]],[false,{\".wp-block-rss.is-grid li\":false},[\"margin:0 1em 1em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-rss.columns-2 li\":false},[\"width:calc(50% - 1em)\"]],[false,{\".wp-block-rss.columns-3 li\":false},[\"width:calc(33.33333% - 1em)\"]],[false,{\".wp-block-rss.columns-4 li\":false},[\"width:calc(25% - 1em)\"]],[false,{\".wp-block-rss.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-rss.columns-6 li\":false},[\"width:calc(16.66667% - 1em)\"]],[false,\"}\"],[false,{\".wp-block-rss__item-author\":false,\".wp-block-rss__item-publish-date\":false},[\"display:block\",\"color:#555\",\"font-size:.8125em\"]],[false,{\".wp-block-search .wp-block-search__button\":false},[\"background:#f7f7f7\",\"border:1px solid #ccc\",\"padding:.375em .625em\",\"color:#32373c\",\"margin-left:.625em\",\"word-break:normal\"]],[false,{\".wp-block-search .wp-block-search__button.has-icon\":false},[\"line-height:0\"]],[false,{\".wp-block-search .wp-block-search__button svg\":false},[\"min-width:1.5em\",\"min-height:1.5em\"]],[false,{\".wp-block-search .wp-block-search__inside-wrapper\":false},[\"display:flex\",\"flex:auto\",\"flex-wrap:nowrap\",\"max-width:100%\"]],[false,{\".wp-block-search .wp-block-search__label\":false},[\"width:100%\"]],[false,{\".wp-block-search .wp-block-search__input\":false},[\"flex-grow:1\",\"min-width:3em\",\"border:1px solid #949494\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__button\":false},[\"margin-left:0\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper\":false},[\"padding:4px\",\"border:1px solid #949494\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input\":false},[\"border-radius:0\",\"border:none\",\"padding:0 0 0 .25em\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus\":false},[\"outline:none\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button\":false},[\"padding:.125em .5em\"]],[false,{\".wp-block-search.aligncenter .wp-block-search__inside-wrapper\":false},[\"margin:auto\"]],[false,{\".wp-block-separator\":false},[\"border-top:1px solid\",\"border-bottom:1px solid\"]],[false,{\".wp-block-separator.is-style-wide\":false},[\"border-bottom-width:1px\"]],[false,{\".wp-block-separator.is-style-dots\":false},[\"border:none\",\"text-align:center\",\"width:none\",\"line-height:1\",\"height:auto\"]],[false,{\".wp-block-separator.is-style-dots:not(#_#_#_#_#_#_#_)\":false},[\"background:none\"]],[false,{\".wp-block-separator.is-style-dots:before\":false},[\"content:\\\"\\u00b7\\u00b7\\u00b7\\\"\",\"color:currentColor\",\"font-size:1.5em\",\"letter-spacing:2em\",\"padding-left:2em\",\"font-family:serif\"]],[false,{\".wp-block-site-logo\":false},[\"line-height:0\"]],[false,{\".wp-block-site-logo a\":false},[\"display:inline-block\"]],[false,{\".wp-block-site-logo.is-default-size amp-img\":false,\".wp-block-site-logo.is-default-size amp-anim\":false},[\"width:120px\",\"height:auto\"]],[false,{\".wp-block-site-logo .aligncenter\":false},[\"display:table\"]],[false,{\".wp-block-site-logo.is-style-rounded amp-img\":false,\".wp-block-site-logo.is-style-rounded amp-anim\":false},[\"border-radius:9999px\"]],[false,{\".wp-block-social-links\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding-left:0\",\"padding-right:0\",\"text-indent:0\",\"margin-left:0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false,\".wp-block-social-links .wp-social-link a:hover\":false},[\"text-decoration:none\",\"border-bottom:0\",\"box-shadow:none\"]],[false,{\".wp-block-social-links .wp-social-link.wp-social-link.wp-social-link\":false},[\"margin:4px 8px 4px 0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false},[\"padding:.25em\"]],[false,{\".wp-block-social-links .wp-social-link svg\":false},[\"width:1em\",\"height:1em\"]],[false,{\".wp-block-social-links.has-small-icon-size\":false},[\"font-size:16px\"]],[false,{\".wp-block-social-links\":false,\".wp-block-social-links.has-normal-icon-size\":false},[\"font-size:24px\"]],[false,{\".wp-block-social-links.has-large-icon-size\":false},[\"font-size:36px\"]],[false,{\".wp-block-social-links.has-huge-icon-size\":false},[\"font-size:48px\"]],[false,{\".wp-block-social-links.aligncenter\":false},[\"justify-content:center\",\"display:flex\"]],[false,{\".wp-block-social-links.alignright\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-social-link\":false},[\"display:block\",\"border-radius:9999px\",\"transition:transform .1s ease\",\"height:auto\"]],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-social-link\":false},[\"transition-duration:0s\",\"transition-delay:0s\"]],[false,\"}\"],[false,{\".wp-block-social-link a\":false},[\"display:block\",\"line-height:0\",\"transition:transform .1s ease\"]],[false,{\".wp-block-social-link:hover\":false},[\"transform:scale(1.1)\"]],[false,{\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:active\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:hover\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:visited\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg\":false},[\"color:currentColor\",\"fill:currentColor\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link\":false},[\"background-color:#f0f0f0\",\"color:#444\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon\":false},[\"background-color:#f90\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp\":false},[\"background-color:#1ea0c3\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance\":false},[\"background-color:#0757fe\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen\":false},[\"background-color:#1e1f26\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart\":false},[\"background-color:#02e49b\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble\":false},[\"background-color:#e94c89\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox\":false},[\"background-color:#4280ff\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy\":false},[\"background-color:#f45800\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook\":false},[\"background-color:#1778f2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr\":false},[\"background-color:#0461dd\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare\":false},[\"background-color:#e65678\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github\":false},[\"background-color:#24292d\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads\":false},[\"background-color:#eceadd\",\"color:#382110\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google\":false},[\"background-color:#ea4434\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram\":false},[\"background-color:#f00075\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm\":false},[\"background-color:#e21b24\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin\":false},[\"background-color:#0d66c2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon\":false},[\"background-color:#3288d4\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium\":false},[\"background-color:#02ab6c\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup\":false},[\"background-color:#f6405f\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon\":false},[\"background-color:#ff424d\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest\":false},[\"background-color:#e60122\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket\":false},[\"background-color:#ef4155\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit\":false},[\"background-color:#fe4500\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype\":false},[\"background-color:#0478d7\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat\":false},[\"background-color:#fefc00\",\"color:#fff\",\"stroke:#000\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud\":false},[\"background-color:#ff5600\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify\":false},[\"background-color:#1bd760\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram\":false},[\"background-color:#2aabee\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr\":false},[\"background-color:#011835\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch\":false},[\"background-color:#6440a4\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter\":false},[\"background-color:#1da1f2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo\":false},[\"background-color:#1eb7ea\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk\":false},[\"background-color:#4680c2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress\":false},[\"background-color:#3499cd\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp\":false},[\"background-color:#d32422\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube\":false},[\"background-color:red\",\"color:#fff\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link\":false},[\"background:none\",\"padding:4px\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-amazon\":false},[\"color:#f90\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp\":false},[\"color:#1ea0c3\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-behance\":false},[\"color:#0757fe\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-codepen\":false},[\"color:#1e1f26\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-deviantart\":false},[\"color:#02e49b\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-dribbble\":false},[\"color:#e94c89\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-dropbox\":false},[\"color:#4280ff\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-etsy\":false},[\"color:#f45800\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-facebook\":false},[\"color:#1778f2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx\":false},[\"color:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-flickr\":false},[\"color:#0461dd\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-foursquare\":false},[\"color:#e65678\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-github\":false},[\"color:#24292d\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-goodreads\":false},[\"color:#382110\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-google\":false},[\"color:#ea4434\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-instagram\":false},[\"color:#f00075\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-lastfm\":false},[\"color:#e21b24\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-linkedin\":false},[\"color:#0d66c2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-mastodon\":false},[\"color:#3288d4\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-medium\":false},[\"color:#02ab6c\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-meetup\":false},[\"color:#f6405f\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-patreon\":false},[\"color:#ff424d\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-pinterest\":false},[\"color:#e60122\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-pocket\":false},[\"color:#ef4155\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-reddit\":false},[\"color:#fe4500\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-skype\":false},[\"color:#0478d7\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-snapchat\":false},[\"color:#fff\",\"stroke:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud\":false},[\"color:#ff5600\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-spotify\":false},[\"color:#1bd760\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-telegram\":false},[\"color:#2aabee\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-tiktok\":false},[\"color:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-tumblr\":false},[\"color:#011835\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-twitch\":false},[\"color:#6440a4\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-twitter\":false},[\"color:#1da1f2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-vimeo\":false},[\"color:#1eb7ea\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-vk\":false},[\"color:#4680c2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-wordpress\":false},[\"color:#3499cd\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-yelp\":false},[\"color:#d32422\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-youtube\":false},[\"color:red\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link\":false},[\"width:auto\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link a\":false},[\"padding-left:.66667em\",\"padding-right:.66667em\"]],[false,{\".wp-block-spacer\":false},[\"clear:both\"]],[false,{\".wp-block-tag-cloud.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-tag-cloud.alignfull\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".wp-block-table\":false},[\"margin:0 0 1em\",\"overflow-x:auto\"]],[false,{\".wp-block-table table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout\":false},[\"table-layout:fixed\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout td\":false,\".wp-block-table .has-fixed-layout th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table.aligncenter\":false,\".wp-block-table.alignleft\":false,\".wp-block-table.alignright\":false},[\"display:table\",\"width:auto\"]],[false,{\".wp-block-table.aligncenter td\":false,\".wp-block-table.aligncenter th\":false,\".wp-block-table.alignleft td\":false,\".wp-block-table.alignleft th\":false,\".wp-block-table.alignright td\":false,\".wp-block-table.alignright th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table .has-subtle-light-gray-background-color\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table .has-subtle-pale-green-background-color\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table .has-subtle-pale-blue-background-color\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table .has-subtle-pale-pink-background-color\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes\":false},[\"border-spacing:0\",\"border-collapse:inherit\",\"background-color:transparent\",\"border-bottom:1px solid #f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes tbody tr:nth-child(odd)\":false},[\"background-color:#f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes td\":false,\".wp-block-table.is-style-stripes th\":false},[\"border-color:transparent\"]],[false,{\".wp-block-table .has-border-color>*\":false,\".wp-block-table .has-border-color td\":false,\".wp-block-table .has-border-color th\":false,\".wp-block-table .has-border-color tr\":false},[\"border-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-style]>*\":false,\".wp-block-table table[data-amp-original-style*=border-style] td\":false,\".wp-block-table table[data-amp-original-style*=border-style] th\":false,\".wp-block-table table[data-amp-original-style*=border-style] tr\":false},[\"border-style:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-width]>*\":false,\".wp-block-table table[data-amp-original-style*=border-width] td\":false,\".wp-block-table table[data-amp-original-style*=border-width] th\":false,\".wp-block-table table[data-amp-original-style*=border-width] tr\":false},[\"border-width:inherit\"]],[false,{\".wp-block-text-columns\":false,\".wp-block-text-columns.aligncenter\":false},[\"display:flex\"]],[false,{\".wp-block-text-columns .wp-block-column\":false},[\"margin:0 1em\",\"padding:0\"]],[false,{\".wp-block-text-columns .wp-block-column:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-text-columns .wp-block-column:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-text-columns.columns-2 .wp-block-column\":false},[\"width:50%\"]],[false,{\".wp-block-text-columns.columns-3 .wp-block-column\":false},[\"width:33.33333%\"]],[false,{\".wp-block-text-columns.columns-4 .wp-block-column\":false},[\"width:25%\"]],[false,{\"pre.wp-block-verse\":false},[\"font-family:inherit\",\"overflow:auto\",\"white-space:pre-wrap\"]],[false,{\".wp-block-video\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-video [poster]\":false},[\"-o-object-fit:cover\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".wp-block-video.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-video figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-post-featured-image\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".wp-block-post-featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-post-featured-image amp-img\":false,\".wp-block-post-featured-image amp-anim\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".wp-block-post-featured-image.alignfull amp-img\":false,\".wp-block-post-featured-image.alignfull amp-anim\":false,\".wp-block-post-featured-image.alignwide amp-img\":false,\".wp-block-post-featured-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\":root .has-pale-pink-background-color\":false},[\"background-color:#f78da7\"]],[false,{\":root .has-vivid-red-background-color\":false},[\"background-color:#cf2e2e\"]],[false,{\":root .has-luminous-vivid-orange-background-color\":false},[\"background-color:#ff6900\"]],[false,{\":root .has-luminous-vivid-amber-background-color\":false},[\"background-color:#fcb900\"]],[false,{\":root .has-light-green-cyan-background-color\":false},[\"background-color:#7bdcb5\"]],[false,{\":root .has-vivid-green-cyan-background-color\":false},[\"background-color:#00d084\"]],[false,{\":root .has-pale-cyan-blue-background-color\":false},[\"background-color:#8ed1fc\"]],[false,{\":root .has-vivid-cyan-blue-background-color\":false},[\"background-color:#0693e3\"]],[false,{\":root .has-vivid-purple-background-color\":false},[\"background-color:#9b51e0\"]],[false,{\":root .has-white-background-color\":false},[\"background-color:#fff\"]],[false,{\":root .has-very-light-gray-background-color\":false},[\"background-color:#eee\"]],[false,{\":root .has-cyan-bluish-gray-background-color\":false},[\"background-color:#abb8c3\"]],[false,{\":root .has-very-dark-gray-background-color\":false},[\"background-color:#313131\"]],[false,{\":root .has-black-background-color\":false},[\"background-color:#000\"]],[false,{\":root .has-pale-pink-color\":false},[\"color:#f78da7\"]],[false,{\":root .has-vivid-red-color\":false},[\"color:#cf2e2e\"]],[false,{\":root .has-luminous-vivid-orange-color\":false},[\"color:#ff6900\"]],[false,{\":root .has-luminous-vivid-amber-color\":false},[\"color:#fcb900\"]],[false,{\":root .has-light-green-cyan-color\":false},[\"color:#7bdcb5\"]],[false,{\":root .has-vivid-green-cyan-color\":false},[\"color:#00d084\"]],[false,{\":root .has-pale-cyan-blue-color\":false},[\"color:#8ed1fc\"]],[false,{\":root .has-vivid-cyan-blue-color\":false},[\"color:#0693e3\"]],[false,{\":root .has-vivid-purple-color\":false},[\"color:#9b51e0\"]],[false,{\":root .has-white-color\":false},[\"color:#fff\"]],[false,{\":root .has-very-light-gray-color\":false},[\"color:#eee\"]],[false,{\":root .has-cyan-bluish-gray-color\":false},[\"color:#abb8c3\"]],[false,{\":root .has-very-dark-gray-color\":false},[\"color:#313131\"]],[false,{\":root .has-black-color\":false},[\"color:#000\"]],[false,{\":root .has-vivid-cyan-blue-to-vivid-purple-gradient-background\":false},[\"background:linear-gradient(135deg,#0693e3,#9b51e0)\"]],[false,{\":root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background\":false},[\"background:linear-gradient(135deg,#00d084,#0693e3)\"]],[false,{\":root .has-light-green-cyan-to-vivid-green-cyan-gradient-background\":false},[\"background:linear-gradient(135deg,#7adcb4,#00d082)\"]],[false,{\":root .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background\":false},[\"background:linear-gradient(135deg,#fcb900,#ff6900)\"]],[false,{\":root .has-luminous-vivid-orange-to-vivid-red-gradient-background\":false},[\"background:linear-gradient(135deg,#ff6900,#cf2e2e)\"]],[false,{\":root .has-very-light-gray-to-cyan-bluish-gray-gradient-background\":false},[\"background:linear-gradient(135deg,#eee,#a9b8c3)\"]],[false,{\":root .has-cool-to-warm-spectrum-gradient-background\":false},[\"background:linear-gradient(135deg,#4aeadc,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c)\"]],[false,{\":root .has-blush-light-purple-gradient-background\":false},[\"background:linear-gradient(135deg,#ffceec,#9896f0)\"]],[false,{\":root .has-blush-bordeaux-gradient-background\":false},[\"background:linear-gradient(135deg,#fecda5,#fe2d2d 50%,#6b003e)\"]],[false,{\":root .has-purple-crush-gradient-background\":false},[\"background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)\"]],[false,{\":root .has-luminous-dusk-gradient-background\":false},[\"background:linear-gradient(135deg,#ffcb70,#c751c0 50%,#4158d0)\"]],[false,{\":root .has-hazy-dawn-gradient-background\":false},[\"background:linear-gradient(135deg,#faaca8,#dad0ec)\"]],[false,{\":root .has-pale-ocean-gradient-background\":false},[\"background:linear-gradient(135deg,#fff5cb,#b6e3d4 50%,#33a7b5)\"]],[false,{\":root .has-electric-grass-gradient-background\":false},[\"background:linear-gradient(135deg,#caf880,#71ce7e)\"]],[false,{\":root .has-subdued-olive-gradient-background\":false},[\"background:linear-gradient(135deg,#fafae1,#67a671)\"]],[false,{\":root .has-atomic-cream-gradient-background\":false},[\"background:linear-gradient(135deg,#fdd79a,#004a59)\"]],[false,{\":root .has-nightshade-gradient-background\":false},[\"background:linear-gradient(135deg,#330968,#31cdcf)\"]],[false,{\":root .has-midnight-gradient-background\":false},[\"background:linear-gradient(135deg,#020381,#2874fc)\"]],[false,{\".has-small-font-size\":false},[\"font-size:.8125em\"]],[false,{\".has-normal-font-size\":false,\".has-regular-font-size\":false},[\"font-size:1em\"]],[false,{\".has-medium-font-size\":false},[\"font-size:1.25em\"]],[false,{\".has-large-font-size\":false},[\"font-size:2.25em\"]],[false,{\".has-huge-font-size\":false,\".has-larger-font-size\":false},[\"font-size:2.625em\"]],[false,{\".has-text-align-center\":false},[\"text-align:center\"]],[false,{\".has-text-align-left\":false},[\"text-align:left\"]],[false,{\".has-text-align-right\":false},[\"text-align:right\"]],[false,{\"#end-resizable-editor-section\":false},[\"display:none\"]],[false,{\".aligncenter\":false},[\"clear:both\"]],[false,{\".items-justified-left\":false},[\"justify-content:flex-start\"]],[false,{\".items-justified-center\":false},[\"justify-content:center\"]],[false,{\".items-justified-right\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between\":false},[\"justify-content:space-between\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip:rect(1px,1px,1px,1px)\",\"-webkit-clip-path:inset(50%)\",\"clip-path:inset(50%)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#ddd\",\"-webkit-clip-path:none\",\"clip-path:none\",\"color:#444\",\"display:block\",\"font-size:1em\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[false,{\".screen-reader-text:focus:not(#_#_#_#_#_#_#_)\":false},[\"clip:auto\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2731,\"final_size\":133,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"contact-form-7-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/css\\/styles.css?ver=5.5.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"212b20af9d955c5d566d0549c68d0998\",\"parse_time\":0.03908491134643555,\"shake_time\":5.0067901611328125e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".wpcf7 .screen-reader-response\":false},[\"position:absolute\",\"overflow:hidden\",\"clip:rect(1px,1px,1px,1px)\",\"clip-path:inset(50%)\",\"height:1px\",\"width:1px\",\"margin:-1px\",\"padding:0\",\"border:0\"]],[false,{\".wpcf7 .screen-reader-response:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".wpcf7 form .wpcf7-response-output\":false},[\"margin:2em .5em 1em\",\"padding:.2em 1em\",\"border:2px solid #00a0d2\"]],[false,{\".wpcf7 form.init .wpcf7-response-output\":false,\".wpcf7 form.resetting .wpcf7-response-output\":false,\".wpcf7 form.submitting .wpcf7-response-output\":false},[\"display:none\"]],[false,{\".wpcf7 form.sent .wpcf7-response-output\":false},[\"border-color:#46b450\"]],[false,{\".wpcf7 form.failed .wpcf7-response-output\":false,\".wpcf7 form.aborted .wpcf7-response-output\":false},[\"border-color:#dc3232\"]],[false,{\".wpcf7 form.spam .wpcf7-response-output\":false},[\"border-color:#f56e28\"]],[false,{\".wpcf7 form.invalid .wpcf7-response-output\":false,\".wpcf7 form.unaccepted .wpcf7-response-output\":false,\".wpcf7 form.payment-required .wpcf7-response-output\":false},[\"border-color:#ffb900\"]],[false,{\".wpcf7-form-control-wrap\":false},[\"position:relative\"]],[false,{\".wpcf7-not-valid-tip\":false},[\"color:#dc3232\",\"font-size:1em\",\"font-weight:normal\",\"display:block\"]],[false,{\".use-floating-validation-tip .wpcf7-not-valid-tip\":false},[\"position:relative\",\"top:-2ex\",\"left:1em\",\"z-index:100\",\"border:1px solid #dc3232\",\"background:#fff\",\"padding:.2em .8em\",\"width:24em\"]],[false,{\".wpcf7-list-item\":false},[\"display:inline-block\",\"margin:0 0 0 1em\"]],[false,{\".wpcf7-list-item-label::before\":false,\".wpcf7-list-item-label::after\":false},[\"content:\\\" \\\"\"]],[false,{\".wpcf7-spinner\":false},[\"visibility:hidden\",\"display:inline-block\",\"background-color:#23282d\",\"opacity:.75\",\"width:24px\",\"height:24px\",\"border:none\",\"border-radius:100%\",\"padding:0\",\"margin:0 24px\",\"position:relative\"]],[false,{\"form.submitting .wpcf7-spinner\":false},[\"visibility:visible\"]],[false,{\".wpcf7-spinner::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"background-color:#fbfbfc\",\"top:4px\",\"left:4px\",\"width:6px\",\"height:6px\",\"border:none\",\"border-radius:100%\",\"transform-origin:8px 8px\",\"animation-name:spin\",\"animation-duration:1000ms\",\"animation-timing-function:linear\",\"animation-iteration-count:infinite\"]],[false,\"@media (prefers-reduced-motion: reduce){\"],[false,{\".wpcf7-spinner::before\":false},[\"animation-name:blink\",\"animation-duration:2000ms\"]],[false,\"}\"],[true,\"@keyframes spin{\"],[true,\"from{transform:rotate(0deg)}\"],[true,\"to{transform:rotate(360deg)}\"],[true,\"}@keyframes blink{\"],[true,\"from{opacity:0}\"],[true,\"50%{opacity:1}\"],[true,\"to{opacity:0}\"],[true,\"}\"],[false,{\".wpcf7 input[type=\\\"file\\\"]\":false},[\"cursor:pointer\"]],[false,{\".wpcf7 input[type=\\\"file\\\"]:disabled\":false},[\"cursor:default\"]],[false,{\".wpcf7 .wpcf7-submit:disabled\":false},[\"cursor:not-allowed\"]],[false,{\".wpcf7 input[type=\\\"url\\\"]\":false,\".wpcf7 input[type=\\\"email\\\"]\":false,\".wpcf7 input[type=\\\"tel\\\"]\":false},[\"direction:ltr\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":3027,\"final_size\":290,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"emcs_calendly_css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/embed-calendly-scheduling\\/assets\\/css\\/widget.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"embed-calendly-scheduling\",\"file\":\"embed-calendly-scheduling.php\",\"line\":39,\"function\":\"emcs_calendly_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"99d6ad74e1d82f040a9c3a773af31054\",\"parse_time\":0.053494930267333984,\"shake_time\":3.1948089599609375e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".calendly-inline-widget\":false,\".calendly-inline-widget *\":false,\".calendly-badge-widget\":false,\".calendly-badge-widget *\":false,\".calendly-overlay\":false,\".calendly-overlay *\":false},[\"font-size:16px\",\"line-height:1.2em\"]],[false,{\".calendly-inline-widget amp-iframe\":false,\".calendly-badge-widget amp-iframe\":false,\".calendly-overlay amp-iframe\":false},[\"display:inline\",\"width:100%\",\"height:100%\"]],[false,{\".calendly-popup-content\":false},[\"position:relative\"]],[false,{\".calendly-popup-content.calendly-mobile\":false},[\"-webkit-overflow-scrolling:touch\",\"overflow-y:auto\"]],[false,{\".calendly-overlay\":false},[\"position:fixed\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"overflow:hidden\",\"z-index:9999\",\"background-color:#a5a5a5\",\"background-color:rgba(31,31,31,.4)\"]],[false,{\".calendly-overlay .calendly-close-overlay\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\"]],[false,{\".calendly-overlay .calendly-popup\":false},[\"box-sizing:border-box\",\"position:absolute\",\"top:50%\",\"left:50%\",\"-webkit-transform:translateY(-50%) translateX(-50%)\",\"transform:translateY(-50%) translateX(-50%)\",\"width:80%\",\"min-width:900px\",\"max-width:1000px\",\"height:90%\",\"max-height:680px\"]],[false,\"@media (max-width:975px){\"],[false,{\".calendly-overlay .calendly-popup\":false},[\"position:fixed\",\"top:50px\",\"left:0\",\"right:0\",\"bottom:0\",\"-webkit-transform:none\",\"transform:none\",\"width:100%\",\"height:auto\",\"min-width:0\",\"max-height:none\"]],[false,\"}\"],[false,{\".calendly-overlay .calendly-popup .calendly-popup-content\":false},[\"height:100%\"]],[false,{\".calendly-overlay .calendly-popup-close\":false},[\"position:absolute\",\"top:25px\",\"right:25px\",\"color:#fff\",\"width:19px\",\"height:19px\",\"cursor:pointer\",\"background:url(\\\"\\/assets\\/external\\/close-icon.svg\\\") no-repeat\",\"background-size:contain\"]],[false,\"@media (max-width:975px){\"],[false,{\".calendly-overlay .calendly-popup-close\":false},[\"top:15px\",\"right:15px\"]],[false,\"}\"],[false,{\".calendly-badge-widget\":false},[\"position:fixed\",\"right:20px\",\"bottom:15px\",\"z-index:9998\"]],[false,{\".calendly-badge-widget .calendly-badge-content\":false},[\"display:table-cell\",\"width:auto\",\"height:45px\",\"padding:0 30px\",\"border-radius:25px\",\"box-shadow:rgba(0,0,0,.25) 0 2px 5px\",\"font-family:sans-serif\",\"text-align:center\",\"vertical-align:middle\",\"font-weight:700\",\"font-size:14px\",\"color:#fff\",\"cursor:pointer\"]],[false,{\".calendly-badge-widget .calendly-badge-content.calendly-white\":false},[\"color:#666a73\"]],[false,{\".calendly-badge-widget .calendly-badge-content span\":false},[\"display:block\",\"font-size:12px\"]],[false,{\".calendly-spinner\":false},[\"position:absolute\",\"top:50%\",\"left:0\",\"right:0\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\",\"text-align:center\",\"z-index:-1\"]],[false,{\".calendly-spinner>div\":false},[\"display:inline-block\",\"width:18px\",\"height:18px\",\"background-color:#e1e1e1\",\"border-radius:50%\",\"vertical-align:middle\",\"-webkit-animation:calendly-bouncedelay 1.4s infinite ease-in-out\",\"animation:calendly-bouncedelay 1.4s infinite ease-in-out\",\"-webkit-animation-fill-mode:both\",\"animation-fill-mode:both\"]],[false,{\".calendly-spinner .calendly-bounce1\":false},[\"-webkit-animation-delay:-.32s\",\"animation-delay:-.32s\"]],[false,{\".calendly-spinner .calendly-bounce2\":false},[\"-webkit-animation-delay:-.16s\",\"animation-delay:-.16s\"]],[true,\"@-webkit-keyframes calendly-bouncedelay{\"],[true,\"0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}\"],[true,\"40%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes calendly-bouncedelay{\"],[true,\"0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}\"],[true,\"40%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,\"@media only screen and (max-device-width :768px){\"],[false,{\"#calendly-inline-widget:not(#_#_#_#_#_#_#_)\":false},[\"min-width:auto\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":89113,\"final_size\":55,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"social_warfare-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/css\\/style.min.css?ver=4.3.0\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Script.php\",\"line\":94,\"function\":\"SWP_Script::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"e220b783a5a07d3a59270f77ece9859a\",\"parse_time\":1.1959950923919678,\"shake_time\":0.5346651077270508,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".swp_social_panel.swp_default_full_color a\":false,\"html body .swp_social_panel.swp_individual_full_color .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_full_color:hover a\":false},[\"color:white\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_blogger\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_blogger:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_blogger:not(:hover)\":false},[\"border:1px solid #ff5722\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_blogger\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_blogger:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_blogger\":false},[\"background:#ff5722\",\"border:1px solid #ee3900\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_blogger\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_blogger:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_blogger\":false},[\"border-bottom:3px solid #ee3900\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_blogger a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_blogger a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_blogger a\":false},[\"color:#ff5722\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_blogger\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_blogger:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_blogger\":false},[\"background:transparent\",\"border:1px solid #ff5722\"]],[false,{\".swp-blogger\":false},[\"background:#ff5722\",\"border-color:#ee3900\"]],[false,{\".swp-blogger a\":false},[\"color:#ff5722\"]],[false,{\".swp-blogger a:hover\":false},[\"background:#ee3900\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_buffer\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_buffer:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_buffer:not(:hover)\":false},[\"border:1px solid #323b43\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_buffer\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_buffer:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_buffer\":false},[\"background:#323b43\",\"border:1px solid #1c2126\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_buffer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_buffer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_buffer\":false},[\"border-bottom:3px solid #1c2126\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_buffer a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_buffer a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_buffer a\":false},[\"color:#323b43\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_buffer\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_buffer:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_buffer\":false},[\"background:transparent\",\"border:1px solid #323b43\"]],[false,{\".swp-buffer\":false},[\"background:#323b43\",\"border-color:#1c2126\"]],[false,{\".swp-buffer a\":false},[\"color:#323b43\"]],[false,{\".swp-buffer a:hover\":false},[\"background:#1c2126\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_ello\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_ello:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_ello:not(:hover)\":false},[\"border:1px solid #000\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_ello\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_ello:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_ello\":false},[\"background:#000\",\"border:1px solid #000\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_ello\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_ello:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_ello\":false},[\"border-bottom:3px solid #000\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_ello a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_ello a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_ello a\":false},[\"color:#000\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_ello\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_ello:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_ello\":false},[\"background:transparent\",\"border:1px solid #000\"]],[false,{\".swp-ello\":false},[\"background:#000\",\"border-color:#000\"]],[false,{\".swp-ello a\":false},[\"color:#000\"]],[false,{\".swp-ello a:hover\":false},[\"background:#000\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_email\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_email:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_email:not(:hover)\":false},[\"border:1px solid #6bcce9\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_email\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_email:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_email\":false},[\"background:#6bcce9\",\"border:1px solid #3fbde2\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_email\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_email:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_email\":false},[\"border-bottom:3px solid #3fbde2\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_email a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_email a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_email a\":false},[\"color:#6bcce9\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_email\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_email:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_email\":false},[\"background:transparent\",\"border:1px solid #6bcce9\"]],[false,{\".swp-email\":false},[\"background:#6bcce9\",\"border-color:#3fbde2\"]],[false,{\".swp-email a\":false},[\"color:#6bcce9\"]],[false,{\".swp-email a:hover\":false},[\"background:#3fbde2\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_evernote\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_evernote:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_evernote:not(:hover)\":false},[\"border:1px solid #2dbe60\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_evernote\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_evernote:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_evernote\":false},[\"background:#2dbe60\",\"border:1px solid #23954b\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_evernote\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_evernote:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_evernote\":false},[\"border-bottom:3px solid #23954b\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_evernote a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_evernote a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_evernote a\":false},[\"color:#2dbe60\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_evernote\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_evernote:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_evernote\":false},[\"background:transparent\",\"border:1px solid #2dbe60\"]],[false,{\".swp-evernote\":false},[\"background:#2dbe60\",\"border-color:#23954b\"]],[false,{\".swp-evernote a\":false},[\"color:#2dbe60\"]],[false,{\".swp-evernote a:hover\":false},[\"background:#23954b\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_facebook\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_facebook:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_facebook:not(:hover)\":false},[\"border:1px solid #1877f2\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_facebook\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_facebook:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_facebook\":false},[\"background:#1877f2\",\"border:1px solid #0b5fcc\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_facebook\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_facebook:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_facebook\":false},[\"border-bottom:3px solid #0b5fcc\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_facebook a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_facebook a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_facebook a\":false},[\"color:#1877f2\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_facebook\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_facebook:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_facebook\":false},[\"background:transparent\",\"border:1px solid #1877f2\"]],[false,{\".swp-facebook\":false},[\"background:#1877f2\",\"border-color:#0b5fcc\"]],[false,{\".swp-facebook a\":false},[\"color:#1877f2\"]],[false,{\".swp-facebook a:hover\":false},[\"background:#0b5fcc\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_flickr\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_flickr:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_flickr:not(:hover)\":false},[\"border:1px solid #ff0084\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_flickr\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_flickr:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_flickr\":false},[\"background:#ff0084\",\"border:1px solid #cc006a\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_flickr\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_flickr:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_flickr\":false},[\"border-bottom:3px solid #cc006a\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flickr a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flickr a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flickr a\":false},[\"color:#ff0084\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flickr\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flickr:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flickr\":false},[\"background:transparent\",\"border:1px solid #ff0084\"]],[false,{\".swp-flickr\":false},[\"background:#ff0084\",\"border-color:#cc006a\"]],[false,{\".swp-flickr a\":false},[\"color:#ff0084\"]],[false,{\".swp-flickr a:hover\":false},[\"background:#cc006a\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_flipboard\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_flipboard:not(:hover)\":false},[\"border:1px solid #bf2626\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_flipboard\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_flipboard\":false},[\"background:#bf2626\",\"border:1px solid #941e1e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_flipboard\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_flipboard\":false},[\"border-bottom:3px solid #941e1e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flipboard a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flipboard a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flipboard a\":false},[\"color:#bf2626\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flipboard\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flipboard\":false},[\"background:transparent\",\"border:1px solid #bf2626\"]],[false,{\".swp-flipboard\":false},[\"background:#bf2626\",\"border-color:#941e1e\"]],[false,{\".swp-flipboard a\":false},[\"color:#bf2626\"]],[false,{\".swp-flipboard a:hover\":false},[\"background:#941e1e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_hacker_news\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_hacker_news:not(:hover)\":false},[\"border:1px solid #d85623\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_hacker_news\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_hacker_news\":false},[\"background:#d85623\",\"border:1px solid #ac451c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_hacker_news\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_hacker_news\":false},[\"border-bottom:3px solid #ac451c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_hacker_news a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_hacker_news a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_hacker_news a\":false},[\"color:#d85623\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_hacker_news\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_hacker_news\":false},[\"background:transparent\",\"border:1px solid #d85623\"]],[false,{\".swp-hacker_news\":false},[\"background:#d85623\",\"border-color:#ac451c\"]],[false,{\".swp-hacker_news a\":false},[\"color:#d85623\"]],[false,{\".swp-hacker_news a:hover\":false},[\"background:#ac451c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_instagram\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_instagram:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_instagram:not(:hover)\":false},[\"border:1px solid #ea2454\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_instagram\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_instagram:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_instagram\":false},[\"background:#ea2454\",\"border:1px solid #c8133f\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_instagram\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_instagram:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_instagram\":false},[\"border-bottom:3px solid #c8133f\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_instagram a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_instagram a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_instagram a\":false},[\"color:#ea2454\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_instagram\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_instagram:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_instagram\":false},[\"background:transparent\",\"border:1px solid #ea2454\"]],[false,{\".swp-instagram\":false},[\"background:#ea2454\",\"border-color:#c8133f\"]],[false,{\".swp-instagram a\":false},[\"color:#ea2454\"]],[false,{\".swp-instagram a:hover\":false},[\"background:#c8133f\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_linkedin\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_linkedin:not(:hover)\":false},[\"border:1px solid #2767b1\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_linkedin\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_linkedin\":false},[\"background:#2767b1\",\"border:1px solid #1e4f87\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_linkedin\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_linkedin\":false},[\"border-bottom:3px solid #1e4f87\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_linkedin a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_linkedin a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_linkedin a\":false},[\"color:#2767b1\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_linkedin\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_linkedin\":false},[\"background:transparent\",\"border:1px solid #2767b1\"]],[false,{\".swp-linkedin\":false},[\"background:#2767b1\",\"border-color:#1e4f87\"]],[false,{\".swp-linkedin a\":false},[\"color:#2767b1\"]],[false,{\".swp-linkedin a:hover\":false},[\"background:#1e4f87\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_medium\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_medium:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_medium:not(:hover)\":false},[\"border:1px solid #00ab6c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_medium\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_medium:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_medium\":false},[\"background:#00ab6c\",\"border:1px solid #00784c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_medium\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_medium:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_medium\":false},[\"border-bottom:3px solid #00784c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_medium a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_medium a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_medium a\":false},[\"color:#00ab6c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_medium\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_medium:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_medium\":false},[\"background:transparent\",\"border:1px solid #00ab6c\"]],[false,{\".swp-medium\":false},[\"background:#00ab6c\",\"border-color:#00784c\"]],[false,{\".swp-medium a\":false},[\"color:#00ab6c\"]],[false,{\".swp-medium a:hover\":false},[\"background:#00784c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_mix\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_mix:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_mix:not(:hover)\":false},[\"border:1px solid #f4812c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_mix\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_mix:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_mix\":false},[\"background:#f4812c\",\"border:1px solid #e1660c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_mix\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_mix:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_mix\":false},[\"border-bottom:3px solid #e1660c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_mix a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_mix a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_mix a\":false},[\"color:#f4812c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_mix\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_mix:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_mix\":false},[\"background:transparent\",\"border:1px solid #f4812c\"]],[false,{\".swp-mix\":false},[\"background:#f4812c\",\"border-color:#e1660c\"]],[false,{\".swp-mix a\":false},[\"color:#f4812c\"]],[false,{\".swp-mix a:hover\":false},[\"background:#e1660c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_more\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_more:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_more:not(:hover)\":false},[\"border:1px solid #ee464f\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_more\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_more:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_more\":false},[\"background:#ee464f\",\"border:1px solid #ea1723\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_more\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_more:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_more\":false},[\"border-bottom:3px solid #ea1723\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_more a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_more a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_more a\":false},[\"color:#ee464f\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_more\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_more:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_more\":false},[\"background:transparent\",\"border:1px solid #ee464f\"]],[false,{\".swp-more\":false},[\"background:#ee464f\",\"border-color:#ea1723\"]],[false,{\".swp-more a\":false},[\"color:#ee464f\"]],[false,{\".swp-more a:hover\":false},[\"background:#ea1723\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_parler\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_parler:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_parler:not(:hover)\":false},[\"border:1px solid #be1e2c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_parler\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_parler:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_parler\":false},[\"background:#be1e2c\",\"border:1px solid #921722\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_parler\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_parler:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_parler\":false},[\"border-bottom:3px solid #921722\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_parler a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_parler a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_parler a\":false},[\"color:#be1e2c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_parler\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_parler:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_parler\":false},[\"background:transparent\",\"border:1px solid #be1e2c\"]],[false,{\".swp-parler\":false},[\"background:#be1e2c\",\"border-color:#921722\"]],[false,{\".swp-parler a\":false},[\"color:#be1e2c\"]],[false,{\".swp-parler a:hover\":false},[\"background:#921722\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_periscope\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_periscope:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_periscope:not(:hover)\":false},[\"border:1px solid #3aa4c6\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_periscope\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_periscope:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_periscope\":false},[\"background:#3aa4c6\",\"border:1px solid #2e849f\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_periscope\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_periscope:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_periscope\":false},[\"border-bottom:3px solid #2e849f\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_periscope a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_periscope a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_periscope a\":false},[\"color:#3aa4c6\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_periscope\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_periscope:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_periscope\":false},[\"background:transparent\",\"border:1px solid #3aa4c6\"]],[false,{\".swp-periscope\":false},[\"background:#3aa4c6\",\"border-color:#2e849f\"]],[false,{\".swp-periscope a\":false},[\"color:#3aa4c6\"]],[false,{\".swp-periscope a:hover\":false},[\"background:#2e849f\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_pinterest\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_pinterest:not(:hover)\":false},[\"border:1px solid #e60023\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_pinterest\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_pinterest\":false},[\"background:#e60023\",\"border:1px solid #b3001b\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_pinterest\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_pinterest\":false},[\"border-bottom:3px solid #b3001b\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pinterest a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pinterest a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pinterest a\":false},[\"color:#e60023\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pinterest\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pinterest\":false},[\"background:transparent\",\"border:1px solid #e60023\"]],[false,{\".swp-pinterest\":false},[\"background:#e60023\",\"border-color:#b3001b\"]],[false,{\".swp-pinterest a\":false},[\"color:#e60023\"]],[false,{\".swp-pinterest a:hover\":false},[\"background:#b3001b\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_pocket\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_pocket:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_pocket:not(:hover)\":false},[\"border:1px solid #ef4056\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_pocket\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_pocket:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_pocket\":false},[\"background:#ef4056\",\"border:1px solid #e9132e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_pocket\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_pocket:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_pocket\":false},[\"border-bottom:3px solid #e9132e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pocket a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pocket a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pocket a\":false},[\"color:#ef4056\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pocket\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pocket:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pocket\":false},[\"background:transparent\",\"border:1px solid #ef4056\"]],[false,{\".swp-pocket\":false},[\"background:#ef4056\",\"border-color:#e9132e\"]],[false,{\".swp-pocket a\":false},[\"color:#ef4056\"]],[false,{\".swp-pocket a:hover\":false},[\"background:#e9132e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_print\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_print:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_print:not(:hover)\":false},[\"border:1px solid #777\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_print\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_print:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_print\":false},[\"background:#777\",\"border:1px solid #5e5e5e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_print\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_print:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_print\":false},[\"border-bottom:3px solid #5e5e5e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_print a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_print a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_print a\":false},[\"color:#777\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_print\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_print:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_print\":false},[\"background:transparent\",\"border:1px solid #777\"]],[false,{\".swp-print\":false},[\"background:#777\",\"border-color:#5e5e5e\"]],[false,{\".swp-print a\":false},[\"color:#777\"]],[false,{\".swp-print a:hover\":false},[\"background:#5e5e5e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_reddit\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_reddit:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_reddit:not(:hover)\":false},[\"border:1px solid #f04b23\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_reddit\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_reddit:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_reddit\":false},[\"background:#f04b23\",\"border:1px solid #d2340e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_reddit\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_reddit:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_reddit\":false},[\"border-bottom:3px solid #d2340e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_reddit a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_reddit a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_reddit a\":false},[\"color:#f04b23\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_reddit\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_reddit:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_reddit\":false},[\"background:transparent\",\"border:1px solid #f04b23\"]],[false,{\".swp-reddit\":false},[\"background:#f04b23\",\"border-color:#d2340e\"]],[false,{\".swp-reddit a\":false},[\"color:#f04b23\"]],[false,{\".swp-reddit a:hover\":false},[\"background:#d2340e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_snapchat\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_snapchat:not(:hover)\":false},[\"border:1px solid #fffc00\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_snapchat\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_snapchat\":false},[\"background:#fffc00\",\"border:1px solid #ccca00\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_snapchat\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_snapchat\":false},[\"border-bottom:3px solid #ccca00\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_snapchat a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_snapchat a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_snapchat a\":false},[\"color:#fffc00\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_snapchat\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_snapchat\":false},[\"background:transparent\",\"border:1px solid #fffc00\"]],[false,{\".swp-snapchat\":false},[\"background:#fffc00\",\"border-color:#ccca00\"]],[false,{\".swp-snapchat a\":false},[\"color:#fffc00\"]],[false,{\".swp-snapchat a:hover\":false},[\"background:#ccca00\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_telegram\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_telegram:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_telegram:not(:hover)\":false},[\"border:1px solid #08c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_telegram\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_telegram:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_telegram\":false},[\"background:#08c\",\"border:1px solid #069\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_telegram\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_telegram:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_telegram\":false},[\"border-bottom:3px solid #069\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_telegram a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_telegram a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_telegram a\":false},[\"color:#08c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_telegram\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_telegram:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_telegram\":false},[\"background:transparent\",\"border:1px solid #08c\"]],[false,{\".swp-telegram\":false},[\"background:#08c\",\"border-color:#069\"]],[false,{\".swp-telegram a\":false},[\"color:#08c\"]],[false,{\".swp-telegram a:hover\":false},[\"background:#069\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_twitter\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_twitter:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_twitter:not(:hover)\":false},[\"border:1px solid #1da1f2\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_twitter\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_twitter:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_twitter\":false},[\"background:#1da1f2\",\"border:1px solid #0c85d0\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_twitter\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_twitter:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_twitter\":false},[\"border-bottom:3px solid #0c85d0\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_twitter a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_twitter a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_twitter a\":false},[\"color:#1da1f2\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_twitter\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_twitter:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_twitter\":false},[\"background:transparent\",\"border:1px solid #1da1f2\"]],[false,{\".swp-twitter\":false},[\"background:#1da1f2\",\"border-color:#0c85d0\"]],[false,{\".swp-twitter a\":false},[\"color:#1da1f2\"]],[false,{\".swp-twitter a:hover\":false},[\"background:#0c85d0\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_tumblr\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_tumblr:not(:hover)\":false},[\"border:1px solid #39475d\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_tumblr\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_tumblr\":false},[\"background:#39475d\",\"border:1px solid #262f3d\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_tumblr\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_tumblr\":false},[\"border-bottom:3px solid #262f3d\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_tumblr a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_tumblr a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_tumblr a\":false},[\"color:#39475d\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_tumblr\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_tumblr\":false},[\"background:transparent\",\"border:1px solid #39475d\"]],[false,{\".swp-tumblr\":false},[\"background:#39475d\",\"border-color:#262f3d\"]],[false,{\".swp-tumblr a\":false},[\"color:#39475d\"]],[false,{\".swp-tumblr a:hover\":false},[\"background:#262f3d\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_vimeo\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_vimeo:not(:hover)\":false},[\"border:1px solid #162221\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_vimeo\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_vimeo\":false},[\"background:#162221\",\"border:1px solid #020303\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_vimeo\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_vimeo\":false},[\"border-bottom:3px solid #020303\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vimeo a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vimeo a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vimeo a\":false},[\"color:#162221\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vimeo\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vimeo\":false},[\"background:transparent\",\"border:1px solid #162221\"]],[false,{\".swp-vimeo\":false},[\"background:#162221\",\"border-color:#020303\"]],[false,{\".swp-vimeo a\":false},[\"color:#162221\"]],[false,{\".swp-vimeo a:hover\":false},[\"background:#020303\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_viber\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_viber:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_viber:not(:hover)\":false},[\"border:1px solid #8f5db7\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_viber\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_viber:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_viber\":false},[\"background:#8f5db7\",\"border:1px solid #75459c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_viber\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_viber:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_viber\":false},[\"border-bottom:3px solid #75459c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_viber a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_viber a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_viber a\":false},[\"color:#8f5db7\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_viber\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_viber:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_viber\":false},[\"background:transparent\",\"border:1px solid #8f5db7\"]],[false,{\".swp-viber\":false},[\"background:#8f5db7\",\"border-color:#75459c\"]],[false,{\".swp-viber a\":false},[\"color:#8f5db7\"]],[false,{\".swp-viber a:hover\":false},[\"background:#75459c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_vk\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_vk:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_vk:not(:hover)\":false},[\"border:1px solid #4a76a8\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_vk\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_vk:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_vk\":false},[\"background:#4a76a8\",\"border:1px solid #3a5d85\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_vk\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_vk:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_vk\":false},[\"border-bottom:3px solid #3a5d85\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vk a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vk a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vk a\":false},[\"color:#4a76a8\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vk\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vk:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vk\":false},[\"background:transparent\",\"border:1px solid #4a76a8\"]],[false,{\".swp-vk\":false},[\"background:#4a76a8\",\"border-color:#3a5d85\"]],[false,{\".swp-vk a\":false},[\"color:#4a76a8\"]],[false,{\".swp-vk a:hover\":false},[\"background:#3a5d85\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_whatsapp\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_whatsapp:not(:hover)\":false},[\"border:1px solid #71c169\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_whatsapp\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_whatsapp\":false},[\"background:#71c169\",\"border:1px solid #52af48\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_whatsapp\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_whatsapp\":false},[\"border-bottom:3px solid #52af48\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_whatsapp a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_whatsapp a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_whatsapp a\":false},[\"color:#71c169\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_whatsapp\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_whatsapp\":false},[\"background:transparent\",\"border:1px solid #71c169\"]],[false,{\".swp-whatsapp\":false},[\"background:#71c169\",\"border-color:#52af48\"]],[false,{\".swp-whatsapp a\":false},[\"color:#71c169\"]],[false,{\".swp-whatsapp a:hover\":false},[\"background:#52af48\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_xing\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_xing:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_xing:not(:hover)\":false},[\"border:1px solid #026466\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_xing\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_xing:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_xing\":false},[\"background:#026466\",\"border:1px solid #013334\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_xing\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_xing:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_xing\":false},[\"border-bottom:3px solid #013334\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_xing a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_xing a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_xing a\":false},[\"color:#026466\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_xing\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_xing:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_xing\":false},[\"background:transparent\",\"border:1px solid #026466\"]],[false,{\".swp-xing\":false},[\"background:#026466\",\"border-color:#013334\"]],[false,{\".swp-xing a\":false},[\"color:#026466\"]],[false,{\".swp-xing a:hover\":false},[\"background:#013334\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_yummly\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_yummly:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_yummly:not(:hover)\":false},[\"border:1px solid #e26426\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_yummly\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_yummly:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_yummly\":false},[\"background:#e26426\",\"border:1px solid #bc4f19\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_yummly\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_yummly:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_yummly\":false},[\"border-bottom:3px solid #bc4f19\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_yummly a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_yummly a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_yummly a\":false},[\"color:#e26426\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_yummly\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_yummly:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_yummly\":false},[\"background:transparent\",\"border:1px solid #e26426\"]],[false,{\".swp-yummly\":false},[\"background:#e26426\",\"border-color:#bc4f19\"]],[false,{\".swp-yummly a\":false},[\"color:#e26426\"]],[false,{\".swp-yummly a:hover\":false},[\"background:#bc4f19\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_default_light_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_light_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_light_gray:hover .nc_tweetContainer\":false},[\"background-color:#ccc\",\"border:1px solid #ccc\"]],[false,{\".swp_social_panel.swp_default_light_gray .nc_tweetContainer a\":false,\"html body .swp_social_panel.swp_individual_light_gray .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_light_gray:hover .nc_tweetContainer a\":false},[\"color:#fff\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_light_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_light_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_light_gray .nc_tweetContainer:hover\":false},[\"border-bottom:3px solid #b3b3b3\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_light_gray .nc_tweetContainer.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_light_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false,\"body .swp_social_panel.swp_three_dee.swp_other_light_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:none\"]],[false,{\".swp_social_panel.swp_default_light_gray_outlines a\":false,\"html body .swp_social_panel.swp_individual_light_gray_outlines a:hover\":false,\"body .swp_social_panel.swp_other_light_gray_outlines:hover a\":false},[\"color:#ccc\"]],[false,{\".swp_social_panel.swp_default_light_gray_outlines .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_light_gray_outlines .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_light_gray_outlines:hover .nc_tweetContainer\":false},[\"background:transparent\",\"border:1px solid #ccc\"]],[false,{\".swp_social_panel.swp_default_medium_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_medium_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_medium_gray:hover .nc_tweetContainer\":false},[\"background-color:#999\",\"border:1px solid #999\"]],[false,{\".swp_social_panel.swp_default_medium_gray .nc_tweetContainer a\":false,\"html body .swp_social_panel.swp_individual_medium_gray .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_medium_gray:hover .nc_tweetContainer a\":false},[\"color:#fff\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_medium_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_medium_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_medium_gray .nc_tweetContainer:hover\":false},[\"border-bottom:3px solid gray\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_medium_gray .nc_tweetContainer.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_medium_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false,\"body .swp_social_panel.swp_three_dee.swp_other_medium_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:none\"]],[false,{\".swp_social_panel.swp_default_medium_gray_outlines a\":false,\"html body .swp_social_panel.swp_individual_medium_gray_outlines a:hover\":false,\"body .swp_social_panel.swp_other_medium_gray_outlines:hover a\":false},[\"color:#999\"]],[false,{\".swp_social_panel.swp_default_medium_gray_outlines .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_medium_gray_outlines .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_medium_gray_outlines:hover .nc_tweetContainer\":false},[\"background:transparent\",\"border:1px solid #999\"]],[false,{\".swp_social_panel.swp_default_dark_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_dark_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_dark_gray:hover .nc_tweetContainer\":false},[\"background-color:#444\",\"border:1px solid #444\"]],[false,{\".swp_social_panel.swp_default_dark_gray .nc_tweetContainer a\":false,\"html body .swp_social_panel.swp_individual_dark_gray .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_dark_gray:hover .nc_tweetContainer a\":false},[\"color:#fff\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_dark_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_dark_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_dark_gray .nc_tweetContainer:hover\":false},[\"border-bottom:3px solid #2b2b2b\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_dark_gray .nc_tweetContainer.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_dark_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false,\"body .swp_social_panel.swp_three_dee.swp_other_dark_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:none\"]],[false,{\".swp_social_panel.swp_default_dark_gray_outlines a\":false,\"html body .swp_social_panel.swp_individual_dark_gray_outlines a:hover\":false,\"body .swp_social_panel.swp_other_dark_gray_outlines:hover a\":false},[\"color:#444\"]],[false,{\".swp_social_panel.swp_default_dark_gray_outlines .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_dark_gray_outlines .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_dark_gray_outlines:hover .nc_tweetContainer\":false},[\"background:transparent\",\"border:1px solid #444\"]],[false,{\".swp_social_panel.swp_modern\":false,\".swp_social_panel.swp_dark\":false},[\"background:#fff\",\"height:62px\",\"padding:0\",\"border-radius:8px\",\"border:1px solid #eee\",\"box-shadow:0 2px 4px 0 rgba(0,0,0,.01),0 4px 5px 0 rgba(0,0,0,.014),0 4px 15px 0 rgba(0,0,0,.09)\"]],[false,{\".swp_social_panel.swp_modern .swp_share_button\":false,\".swp_social_panel.swp_dark .swp_share_button\":false},[\"padding-bottom:1px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_button:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .swp_share_button:not(#_#_#_#_#_#_#_)\":false},[\"border:none\",\"border-radius:0\",\"margin:0\",\"height:61px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_button.total_shares.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .swp_share_button.total_shares.total_sharesalt:not(#_#_#_#_#_#_#_)\":false},[\"padding:15px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_link\":false,\".swp_social_panel.swp_dark .swp_share_link\":false},[\"border-radius:0\",\"padding:15px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_link:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .swp_share_link:not(#_#_#_#_#_#_#_)\":false},[\"height:61px\"]],[false,{\".swp_social_panel.swp_modern .iconFiller:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .iconFiller:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:10px\"]],[false,{\".swp_social_panel.swp_modern .nc_wrapper.bottom:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .nc_wrapper.bottom:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\"]],[false,{\".swp_dark .swp_share_button:not(#_#_#_#_#_#_#_)\":false},[\"background:#222\",\"border-color:#222\",\"margin:0\",\"height:62px\"]],[false,{\".swp_dark .swp_share_link:hover\":false},[\"background:#444\"]],[false,{\".scale-70\":false},[\"transform:scale(.7)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-70.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:142.85714%\"]],[false,{\".scale-80\":false},[\"transform:scale(.8)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-80.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:125%\"]],[false,{\".scale-90\":false},[\"transform:scale(.9)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-90.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:111.11111%\"]],[false,{\".scale-100\":false},[\"transform:scale(1)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-100.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".scale-110\":false},[\"transform:scale(1.1)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-110.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:90.90909%\"]],[false,{\".scale-120\":false},[\"transform:scale(1.2)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-120.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:83.33333%\"]],[false,{\".scale-130\":false},[\"transform:scale(1.3)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-130.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:76.92308%\"]],[false,{\".scale-140\":false},[\"transform:scale(1.4)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-140.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:71.42857%\"]],[false,{\".scale-left\":false},[\"transform-origin:left\"]],[false,{\".scale-center\":false},[\"transform-origin:center\"]],[false,{\".scale-right\":false},[\"transform-origin:right\"]],[false,{\".scale-full_width\":false},[\"transform-origin:left\"]],[false,{\"div.swp_social_panel .nc_tweetContainer.swp_emphasize\":false},[\"flex:2\"]],[false,\"@media print{\"],[false,{\".swp_social_panel\":false},[\"display:none\",\"opacity:0\",\"visibility:collapse\"]],[false,\"}\"],[false,{\"html[lang] .site * i.sw:not(#_#_#_#_#_#_#_#_)\":false},[\"font-family:sw-icon-font\"]],[false,{\".swp_social_panel\":false},[\"clear:both\",\"display:flex\",\"height:34px\",\"line-height:1\",\"overflow:hidden\",\"padding:0\",\"align-items:stretch\",\"-webkit-box-align:stretch\",\"-moz-box-align:stretch\",\"-webkit-box-pack:justify\",\"-moz-box-pack:justify\",\"direction:ltr\",\"-ms-flex-align:stretch\",\"-ms-flex-line-pack:center\",\"-ms-flex-pack:justify\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[false,{\".swp_social_panel:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:20px\",\"margin-top:20px\"]],[false,{\".swp_social_panel .nc_tweetContainer a.nc_tweet\":false,\".swp_social_panel .nc_tweetContainer.total_shares .swp_count\":false},[\"display:block\",\"display:flex\",\"font-family:Lato,sans-serif\",\"font-weight:bold\",\"height:30px\",\"text-transform:none\",\"flex-flow:row wrap\",\"box-shadow:none\"]],[false,{\".swp_social_panel .nc_tweetContainer a.nc_tweet:not(#_#_#_#_#_#_#_#_)\":false,\".swp_social_panel .nc_tweetContainer.total_shares .swp_count:not(#_#_#_#_#_#_#_)\":false},[\"font-size:18px\",\"text-decoration:none\"]],[false,{\".swp_social_panel .nc_tweetContainer:not(.total_shares):not(.total_sharesalt)\":false},[\"border-radius:2px\",\"cursor:pointer\",\"float:left\",\"font-family:Lato\",\"height:32px\",\"margin:0 5px 3px 5px\",\"min-width:34px\",\"overflow:hidden\",\"text-align:center\",\"transition:all .1s linear\"]],[false,{\".swp_social_panel .nc_tweetContainer .spaceManWilly\":false},[\"display:block\",\"width:120px\"]],[false,{\".swp_social_panel .swp_label\":false},[\"display:block\",\"margin-top:13px\",\"position:absolute\",\"text-transform:uppercase\"]],[false,{\".swp_social_panel .swp_label:not(#_#_#_#_#_#_#_)\":false},[\"font-size:9px\",\"text-align:center\"]],[false,{\".swp_social_panel .swp_share\":false},[\"display:block\",\"float:right\",\"float:left\",\"font-size:14px\",\"font-weight:normal\",\"height:30px\",\"line-height:32px\",\"margin:0 0 0 6px\"]],[false,{\".swp_social_panel .swp_share:not(#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\".swp_social_panel .total_shares\":false},[\"border-radius:2px\",\"color:white\",\"cursor:default\",\"display:block\",\"font-size:19px\",\"padding:0 10px\"]],[false,{\".swp_social_panel .total_shares:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\",\"border:none\",\"flex:none\"]],[false,{\".swp_social_panel .total_shares .swp_count\":false},[\"line-height:30px\"]],[false,{\".swp_social_panel .total_shares .swp_label\":false},[\"font-size:10px\",\"vertical-align:middle\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\",\"border:none\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt:before\":false},[\"content:\\\"G\\\"\",\"display:inline-block\",\"font-family:sw-icon-font\",\"margin-top:7px\",\"vertical-align:top\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt.total_sharesalt\":false,\".swp_social_panel .total_shares.total_sharesalt:not(:nth-child(1))\":false},[\"border:none\",\"color:#474b4d\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel .total_shares.total_sharesalt:not(:nth-child(1)):not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\",\"margin-left:0\",\"margin-bottom:10px\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt .swp_count\":false},[\"color:#474b4d\",\"font-size:24px\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt .swp_label\":false},[\"color:#474b4d\",\"letter-spacing:0\",\"min-width:40px\"]],[false,{\".swp_social_panel a .swp_count\":false},[\"font-size:14px\"]],[false,{\".swp_social_panel a .swp_count:not(.swp_hide)\":false},[\"display:inline-block\",\"line-height:32px\",\"margin:0\",\"padding:0 5px\",\"flex:1\"]],[false,{\".swp_social_panel a .swp_count.swp_hide\":false},[\"margin:0 auto\",\"width:auto\"]],[false,{\".swp_social_panel:not(.nc_floater):not(.swp_social_panelSide):not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".swp_social_panel:not(.nc_floater):not(.swp_social_panelSide).swp_shift\":false},[\"padding:0 10px\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide)\":false},[\"transition:opacity .2s ease-in-out\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer\":false},[\"flex:1\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer.swp-emphasize\":false},[\"flex:2\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer:nth-child(1)\":false},[\"margin-left:0\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer:nth-last-child(1)\":false},[\"margin-right:0\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt:before\":false},[\"content:\\\"G\\\"\",\"display:inline-block\",\"font-family:sw-icon-font\",\"margin-top:7px\",\"vertical-align:top\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt .swp_count\":false},[\"display:inline-block\",\"line-height:0\",\"margin-left:8px\",\"margin-top:12px\",\"min-width:45px\",\"position:relative\",\"vertical-align:middle\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt:nth-child(1)\":false},[\"margin-left:0\",\"margin-right:15px\",\"padding-left:0\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt:nth-last-child(1)\":false},[\"margin-right:0\",\"padding-right:0\"]],[false,{\".swp_social_panel span:before:not(#_#_#_#_#_#_#_#_)\":false},[\"content:initial\"]],[false,{\".swp_social_panel .iconFiller\":false},[\"font-size:18px\",\"margin:0 auto\",\"display:block\",\"float:left\",\"height:30px\",\"overflow:hidden\",\"transition:width .1s linear\",\"width:30px\"]],[false,{\".swp_social_panel .sw\":false},[\"float:left\",\"height:30px\",\"line-height:32px\",\"margin:1px 5px 0\",\"width:20px\"]],[false,{\".swp_social_panel .sw:not(#_#_#_#_#_#_#_)\":false},[\"text-shadow:none\"]],[false,{\".swp_social_panel.notMobile .nc_tweetContainer:nth-child(1)\":false},[\"margin-left:0\"]],[false,{\".swp_social_panel:hover .total_shares\":false,\".swp_social_panel.swp_full_color .total_shares\":false,\".swp_social_panel.swp_fade .total_shares\":false,\".swp_social_panel.swp_customFull:hover .total_shares\":false},[\"background:#e08a0f\"]],[false,{\".swp_social_panel.swp_leaf .nc_tweetContainer\":false},[\"border-width:1px\"]],[false,{\".swp_social_panel.swp_leaf .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:15px 0\"]],[false,{\".swp_social_panel.swp_pill .nc_tweetContainer\":false},[\"border-width:1px\"]],[false,{\".swp_social_panel.swp_pill .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:50px\"]],[false,{\".swp_social_panel.swp_shift .nc_tweetContainer:not(.total_shares)\":false},[\"border-width:1px\",\"transform:skew(-25deg)\"]],[false,{\".swp_social_panel.swp_shift .nc_tweetContainer a\":false},[\"transform:skew(25deg)\"]],[false,{\".swp_social_panel.swp_connected:hover .nc_tweetContainer\":false,\".swp_social_panel.swp_connected .nc_tweetContainer\":false,\".swp_social_panel.swp_connected .nc_tweetContainer:hover\":false},[\"border-width:1px\"]],[false,{\".swp_social_panel.swp_connected:hover .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_connected .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_connected .nc_tweetContainer:hover:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\",\"margin:0\"]],[false,{\".swp_social_panel.mobile .iconFiller ~ .swp_count\":false,\".sw-content-locator\":false},[\"display:none\"]],[true,{\"div[class*=custom_color][class^=_wrapper]\":true},[\"display:none\"]],[false,{\"pre.swp_debug_data\":false},[\"white-space:pre-wrap\",\"padding:0 25px\",\"max-width:1000px\",\"margin:0 auto 50px auto\",\"border:3px solid #666\"]],[false,{\".wp-editor-container .swp_twitter:before\":false},[\"color:#429cd6\"]],[false,{\".swp_powered_by\":false},[\"font-family:helvetica,arial,sans-serif\",\"color:black\"]],[false,{\".swp_powered_by span\":false},[\"clear:both\",\"width:100%\",\"display:block\",\"margin:36px 0px -30px 0\"]],[false,{\".swp_powered_by a\":false},[\"color:black\",\"text-decoration:none\"]],[false,{\".swp_powered_by amp-img\":false,\".swp_powered_by amp-anim\":false},[\"max-height:40px\",\"margin-top:30px\"]],[false,{\".sw\":false},[\"display:inline-block\",\"font-size:inherit\",\"-moz-osx-font-smoothing:grayscale\",\"-webkit-font-smoothing:antialiased\",\"font-style:normal\",\"font-weight:normal\",\"text-rendering:auto\",\"transform:translate(0,0)\",\"transform:translate(0,0)\",\"-webkit-transform:translate(0,0)\",\"-moz-transform:translate(0,0)\",\"-ms-transform:translate(0,0)\",\"-o-transform:translate(0,0)\"]],[false,{\".sw:not(#_#_#_#_#_#_#_)\":false},[\"font-family:sw-icon-font\",\"text-transform:none\"]],[false,{\".sw:before:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\"i.swp_blogger_icon:before\":false},[\"content:\\\"c\\\"\"]],[false,{\"i.swp_buffer_icon:before\":false},[\"content:\\\"d\\\"\"]],[false,{\"i.swp_ello_icon:before\":false},[\"content:\\\"h\\\"\"]],[false,{\"i.swp_email_icon:before\":false},[\"content:\\\"i\\\"\"]],[false,{\"i.swp_evernote_icon:before\":false},[\"content:\\\"j\\\"\"]],[false,{\"i.swp_facebook_icon:before\":false},[\"content:\\\"k\\\"\"]],[false,{\"i.swp_flickr_icon:before\":false},[\"content:\\\"l\\\"\"]],[false,{\"i.swp_flipboard_icon:before\":false},[\"content:\\\"m\\\"\"]],[false,{\"i.swp_hacker_news_icon:before\":false},[\"content:\\\"o\\\"\"]],[false,{\"i.swp_instagram_icon:before\":false},[\"content:\\\"q\\\"\"]],[false,{\"i.swp_linkedin_icon:before\":false},[\"content:\\\"s\\\"\"]],[false,{\"i.swp_medium_icon:before\":false},[\"content:\\\"u\\\"\"]],[false,{\"i.swp_mix_icon:before\":false},[\"content:\\\"w\\\"\"]],[false,{\"i.swp_more_icon:before\":false},[\"content:\\\"B\\\"\"]],[false,{\"i.swp_parler_icon:before\":false},[\"content:\\\"0\\\"\"]],[false,{\"i.swp_periscope_icon:before\":false},[\"content:\\\"y\\\"\"]],[false,{\"i.swp_pinterest_icon:before\":false},[\"content:\\\"A\\\"\"]],[false,{\"i.swp_pin_icon:before\":false},[\"content:\\\"z\\\"\"]],[false,{\"i.swp_pocket_icon:before\":false},[\"content:\\\"C\\\"\"]],[false,{\"i.swp_print_icon:before\":false},[\"content:\\\"D\\\"\"]],[false,{\"i.swp_reddit_icon:before\":false},[\"content:\\\"E\\\"\"]],[false,{\"i.swp_share_icon:before\":false},[\"content:\\\"G\\\"\"]],[false,{\"i.swp_social-warfare_icon:before\":false},[\"content:\\\"K\\\"\"]],[false,{\"i.swp_snapchat_icon:before\":false},[\"content:\\\"J\\\"\"]],[false,{\"i.swp_telegram_icon:before\":false},[\"content:\\\"L\\\"\"]],[false,{\"i.swp_tumblr_icon:before\":false},[\"content:\\\"M\\\"\"]],[false,{\"i.swp_twitter_icon:before\":false},[\"content:\\\"N\\\"\"]],[false,{\"i.swp_viber_icon:before\":false},[\"content:\\\"O\\\"\"]],[false,{\"i.swp_vimeo_icon:before\":false},[\"content:\\\"P\\\"\"]],[false,{\"i.swp_vk_icon:before\":false},[\"content:\\\"R\\\"\"]],[false,{\"i.swp_warfare-plugins_icon:before\":false},[\"content:\\\"Z\\\"\"]],[false,{\"i.swp_whatsapp_icon:before\":false},[\"content:\\\"T\\\"\"]],[false,{\"i.swp_xing_icon:before\":false},[\"content:\\\"V\\\"\"]],[false,{\"i.swp_yummly_icon:before\":false},[\"content:\\\"Y\\\"\"]],[false,{\".sw-social-warfare:before\":false},[\"content:\\\"K\\\"\"]],[false,{\".wp-editor-container .sw:before\":false},[\"font-size:18px\",\"line-height:22px\"]],[false,{\".wp-editor-container .sw-social-warfare:before\":false,\".mce-ico.sw-social-warfare:before\":false,\".mce-ico.sw-social-warfare\":false},[\"color:#ee464f\"]],[false,{\".mce-container .sw-social-warfare\":false},[\"color:#ee464f\",\"font-size:20px\",\"margin-right:15px\",\"vertical-align:middle\"]],[false,{\".swp_social_panelSide\":false},[\"transition:all .2s linear\",\"flex-direction:column\",\"height:auto\",\"overflow:visible\",\"z-index:9998\",\"padding:0\"]],[false,{\".swp_social_panelSide:not(#_#_#_#_#_#_#_)\":false},[\"margin:10px 5px\"]],[false,{\".swp_social_panelSide.slide\":false,\".swp_social_panelSide.fade\":false},[\"transition:all .2s linear\",\"position:fixed\"]],[false,{\".swp_social_panelSide.fade\":false},[\"display:none\"]],[false,{\".swp_social_panelSide.fade .swp_float_left\":false},[\"left:5px\"]],[false,{\".swp_social_panelSide.fade .swp_float_right\":false},[\"right:5px\"]],[false,{\".swp_social_panelSide.hideCounts a\":false},[\"text-align:center\"]],[false,{\".swp_social_panelSide.hideCounts .iconFiller\":false},[\"float:none\",\"text-align:left\"]],[false,{\".swp_social_panelSide[class*=swp_side]\":false},[\"height:auto\",\"display:flex\",\"position:fixed\",\"padding:30px 0\"]],[false,{\".swp_social_panelSide.swp_float_right\":false},[\"align-content:flex-end\"]],[false,{\".swp_social_panelSide.swp_side_top\":false},[\"top:15px\"]],[false,{\".swp_social_panelSide.swp_side_bottom\":false},[\"bottom:15px\"]],[false,{\".swp_social_panelSide.swp_default .nc_tweetContainer .sw\":false},[\"line-height:32px\"]],[false,{\".swp_social_panelSide.swp_default .nc_tweetContainer .swp_share\":false},[\"line-height:32px\"]],[false,{\".swp_social_panelSide span.swp_label\":false},[\"margin-top:0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer\":false},[\"transition:all .1s linear\",\"border-radius:3px\",\"clear:both\",\"display:block\",\"font-family:Lato,sans-serif\",\"height:32px\",\"overflow:hidden\",\"padding:0\",\"width:90px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"margin:3px 0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares\":false},[\"background:rgba(0,0,0,0)\",\"font-weight:800\",\"height:55px\",\"margin:0\",\"padding:0\",\"text-align:center\",\"width:90px\",\"order:-100\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares:not(#_#_#_#_#_#_#_)\":false},[\"border:0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares .swp_count\":false},[\"color:#444\",\"display:block\",\"font-family:Lato,sans-serif\",\"height:28px\",\"text-align:center\",\"width:100%\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares .swp_label\":false},[\"color:#444\",\"display:block\",\"font-family:Lato,sans-serif\",\"font-size:50%\",\"position:relative\",\"text-align:center\",\"width:100%\"]],[false,{\".swp_social_panelSide .nc_tweetContainer:not(.total_shares)\":false},[\"line-height:34px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer:hover\":false,\".swp_social_panelSide .nc_tweetContainer:hover .iconFiller\":false,\".swp_social_panelSide .nc_tweetContainer:hover .swp_count\":false},[\"transition:all .1s linear\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .iconFiller\":false},[\"transition:all .1s linear\",\"display:inline-block\",\"height:40px\",\"margin:0 6px\",\"padding:0\",\"vertical-align:middle\",\"width:21px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .swp_count\":false},[\"transition:all .1s linear\",\"display:inline-block\",\"font-size:14px\",\"height:32px\",\"line-height:16px\",\"margin:0\",\"padding:0\",\"overflow:hidden\",\"text-align:right\",\"vertical-align:top\",\"width:0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer a\":false},[\"transition:all .1s linear\",\"cursor:pointer\",\"display:block\",\"font-weight:500\",\"height:36px\",\"margin:0\",\"padding:0\",\"text-decoration:none\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .sw\":false,\".swp_social_panelSide .nc_tweetContainer .swp_share\":false},[\"float:left\",\"line-height:34px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .swp_share\":false},[\"font-size:13px\",\"margin:0\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer\":false},[\"margin-bottom:5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer a\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer a\":false},[\"width:67.5px\",\"position:relative\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer a:not(#_#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer a:not(#_#_#_#_#_#_#_#_)\":false},[\"height:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .total_shares\":false,\".swp_social_panelSide.swp_circles .total_shares\":false},[\"padding:0\"]],[false,{\".swp_social_panelSide.swp_boxed .total_shares:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .total_shares:not(#_#_#_#_#_#_#_)\":false},[\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer span.iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer span.iconFiller\":false},[\"height:40px\",\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer i.sw\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer i.sw\":false},[\"font-size:27px\",\"height:40px\",\"margin:0\",\"padding-top:10px\",\"text-align:center\",\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_share\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) span.swp_share\":false},[\"height:35px\",\"opacity:0\",\"position:absolute\",\"bottom:0\",\"left:0\",\"text-align:center\",\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_count\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) span.swp_count\":false},[\"height:35px\",\"margin:0\",\"padding:0\",\"position:absolute\",\"bottom:0\",\"left:0\",\"text-align:center\",\"transition:padding .1s linear\",\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_hide span.swp_share\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover span.swp_share:not(.swp_hide)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_hide span.swp_share\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):hover span.swp_share:not(.swp_hide)\":false},[\"opacity:1\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover span.swp_count:not(.swp_hide)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):hover span.swp_count:not(.swp_hide)\":false},[\"opacity:0\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_count\":false},[\"padding:0 8px\",\"width:48px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide\":false},[\"padding:0\",\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide .iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide .iconFiller\":false},[\"display:block\",\"float:none\",\"margin:0 auto\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover .iconFiller\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .spaceManWilly\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):hover .iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .spaceManWilly\":false},[\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_count.swp_hide\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer span.swp_hide .iconFiller\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer span.swp_hide .spaceManWilly\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) span.swp_count.swp_hide\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer span.swp_hide .iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer span.swp_hide .spaceManWilly\":false},[\"height:67.5px\",\"opacity:1\"]],[false,{\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) a:not(#_#_#_#_#_#_#_#_)\":false},[\"border-radius:50%\"]],[false,{\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares) .iconFiller\":false},[\"margin-left:2px\",\"width:30px\"]],[false,{\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares)[data-network]:not(.total_shares):hover span.iconFiller\":false,\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares):not(.total_shares) .spaceManWilly\":false},[\"width:90px\"]],[false,{\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares):hover\":false},[\"width:150px\"]],[false,{\".nc_wrapper\":false},[\"background:white\",\"position:fixed\",\"transition:top .5s bottom .5s\",\"width:100%\",\"z-index:99999\"]],[false,{\".nc_wrapper.bottom\":false},[\"bottom:0\",\"left:0\"]],[false,{\".nc_wrapper.top\":false},[\"top:0\",\"left:0\"]],[false,{\".nc_wrapper .swp_social_panel:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:10px\",\"margin-top:10px\"]],[false,{\".nc_floater\":false},[\"margin:10px 0\",\"position:relative\"]],[false,{\".float-position-top-left\":false},[\"transform-origin:top left\"]],[false,{\".float-position-center-left\":false},[\"transform-origin:center left\"]],[false,{\".float-position-bottom-left\":false},[\"transform-origin:bottom left\"]],[false,{\".float-position-top-right\":false},[\"transform-origin:top right\"]],[false,{\".float-position-center-right\":false},[\"transform-origin:center right\"]],[false,{\".float-position-bottom-right\":false},[\"transform-origin:bottom right\"]],[false,{\".sw-tweet-clear\":false},[\"zoom:1\"]],[false,{\".sw-tweet-clear:after\":false},[\"clear:both\",\"content:\\\".\\\"\",\"display:block\",\"height:0\",\"visibility:hidden\"]],[false,{\"a.swp_CTT\":false},[\"cursor:pointer\"]],[false,{\"a.swp_CTT:not(#_#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\"a.swp_CTT .sw-click-to-tweet\":false},[\"display:block\",\"margin:15px 0\",\"padding:15px 30px\",\"position:relative\"]],[false,{\"a.swp_CTT .sw-click-to-tweet:after\":false},[\"clear:both\",\"content:\\\".\\\"\",\"display:block\",\"height:0\",\"line-height:0\",\"visibility:hidden\"]],[false,{\"a.swp_CTT .sw-click-to-tweet .sw-ctt-text\":false},[\"margin:0 0 10px\",\"margin:0\",\"padding:0\",\"padding:0\",\"position:relative\",\"position:relative\",\"word-wrap:break-word\",\"display:block\",\"font-size:24px\",\"font-weight:500\",\"line-height:140%\",\"text-decoration:none\",\"text-transform:none\"]],[false,{\"a.swp_CTT .sw-click-to-tweet .sw-ctt-btn\":false},[\"display:block\",\"float:right\",\"font-family:\\\"Helvetica Neue\\\",Helvetica,Arial,sans-serif\",\"font-size:12px\",\"font-weight:bold\",\"line-height:100%\",\"margin:10px 0 0\",\"padding:3px 5px 3px 3px\",\"position:relative\",\"text-decoration:none\",\"text-transform:uppercase\"]],[false,{\"a.swp_CTT .sw-click-to-tweet i.swp_twitter_icon\":false},[\"float:right\",\"font-size:21px\",\"margin-top:2px\",\"text-transform:none\"]],[false,{\"a.swp_CTT .sw-click-to-tweet i.swp_twitter_icon:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-left:15px\"]],[false,{\"a.swp_CTT.style1 .sw-click-to-tweet\":false},[\"background-color:#fff\",\"border:1px solid #ddd\",\"border-radius:4px\"]],[false,{\"a.swp_CTT.style1 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#1da1f2\"]],[false,{\"a.swp_CTT.style1 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style1 .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#999\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style1:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style1:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#666\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style2 .sw-click-to-tweet\":false},[\"background-color:#fff\",\"border:4px double #ddd\",\"border-radius:0\"]],[false,{\"a.swp_CTT.style2 .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#1da1f2\"]],[false,{\"a.swp_CTT.style2 .sw-click-to-tweet .sw-ctt-text\":false},[\"color:#666\",\"font-style:italic\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style2:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style2:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#666\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style3 .sw-click-to-tweet\":false},[\"background-color:#1da1f2\",\"border:none\",\"border-left:10px solid #15202b\",\"border-radius:0\",\"padding-right:20px\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style3 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style3 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style3 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style3 .sw-click-to-tweet .sw-ctt-text\":false},[\"font-style:italic\"]],[false,{\"a.swp_CTT.style3:hover .sw-click-to-tweet\":false},[\"border-left:10px solid #15202b\",\"padding-right:20px\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style3:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style3:hover .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style3:hover .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style4 .sw-click-to-tweet\":false},[\"background-color:#333\",\"border-left:10px solid #c33\",\"border-radius:0\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style4 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style4 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style4 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style4:hover .sw-click-to-tweet\":false},[\"border-left:10px solid #3c87b2\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style4:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style4:hover .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style4:hover .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style5 .sw-click-to-tweet\":false},[\"background-color:#30394f\",\"border-left:10px solid #d34250\",\"border-radius:0\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style5 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style5 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style5 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style5:hover .sw-click-to-tweet\":false},[\"background-color:#d34250\",\"border-left:10px solid #30394f\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style5:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style5:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style6 .sw-click-to-tweet\":false},[\"background-color:#eee\",\"border-left:10px solid #d34250\",\"border-radius:0\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style6 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style6 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style6 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#30394f\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style6:hover .sw-click-to-tweet\":false},[\"background-color:#ced3dc\",\"border-left:10px solid #d34250\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style6:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style6:hover .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style6:hover .sw-click-to-tweet i.swp_twitter\":false},[\"color:#2a2d34\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style7 .sw-click-to-tweet\":false},[\"transition:all .2s linear\",\"background:#f9f9f9\",\"color:#1da1f2\",\"border-radius:10px\",\"transform:skewX(-15deg)\",\"border:7px dashed #e5e5e5\"]],[false,{\"a.swp_CTT.style7 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style7 .sw-click-to-tweet .sw-ctt-btn\":false},[\"transition:all .2s linear\",\"transform:skewX(15deg)\"]],[false,{\"a.swp_CTT.style7:hover .sw-click-to-tweet\":false},[\"transition:all .2s linear\",\"background:#fff\",\"border-color:#ddd\",\"transform:skewX(-10deg) scale(1.02)\"]],[false,{\"a.swp_CTT.style7:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style7:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"transition:all .2s linear\",\"transform:skewX(10deg)\"]],[false,{\".swfw-follow-container\":false},[\"display:flex\",\"position:relative\"]],[false,{\".swfw-follow-container .swfw-container-message\":false},[\"font-weight:bold\"]],[false,{\".swfw-follow-container.swfw_square_container\":false},[\"flex-flow:row wrap\"]],[false,{\".swfw-follow-container.swfw_buttons_container\":false},[\"flex-flow:column nowrap\",\"justify-content:flex-start\",\"align-items:space-between\"]],[false,{\".swfw-follow-container.swfw_block_container\":false},[\"flex-flow:column nowrap\",\"justify-content:flex-start\",\"align-items:flex-start\"]],[false,{\".swfw-follow-container a\":false},[\"text-decoration:none\"]],[false,{\"div.swp-blogger\":false},[\"background:#ff5722\",\"border-color:#ee3900\"]],[false,{\"div.swp-blogger a\":false},[\"color:#ff5722\"]],[false,{\"div.swp-blogger a:hover\":false},[\"background:#ee3900\",\"color:#fff\"]],[false,{\"div.swp-buffer\":false},[\"background:#323b43\",\"border-color:#1c2126\"]],[false,{\"div.swp-buffer a\":false},[\"color:#323b43\"]],[false,{\"div.swp-buffer a:hover\":false},[\"background:#1c2126\",\"color:#fff\"]],[false,{\"div.swp-ello\":false},[\"background:#000\",\"border-color:#000\"]],[false,{\"div.swp-ello a\":false},[\"color:#000\"]],[false,{\"div.swp-ello a:hover\":false},[\"background:#000\",\"color:#fff\"]],[false,{\"div.swp-email\":false},[\"background:#6bcce9\",\"border-color:#3fbde2\"]],[false,{\"div.swp-email a\":false},[\"color:#6bcce9\"]],[false,{\"div.swp-email a:hover\":false},[\"background:#3fbde2\",\"color:#fff\"]],[false,{\"div.swp-evernote\":false},[\"background:#2dbe60\",\"border-color:#23954b\"]],[false,{\"div.swp-evernote a\":false},[\"color:#2dbe60\"]],[false,{\"div.swp-evernote a:hover\":false},[\"background:#23954b\",\"color:#fff\"]],[false,{\"div.swp-facebook\":false},[\"background:#1877f2\",\"border-color:#0b5fcc\"]],[false,{\"div.swp-facebook a\":false},[\"color:#1877f2\"]],[false,{\"div.swp-facebook a:hover\":false},[\"background:#0b5fcc\",\"color:#fff\"]],[false,{\"div.swp-flickr\":false},[\"background:#ff0084\",\"border-color:#cc006a\"]],[false,{\"div.swp-flickr a\":false},[\"color:#ff0084\"]],[false,{\"div.swp-flickr a:hover\":false},[\"background:#cc006a\",\"color:#fff\"]],[false,{\"div.swp-flipboard\":false},[\"background:#bf2626\",\"border-color:#941e1e\"]],[false,{\"div.swp-flipboard a\":false},[\"color:#bf2626\"]],[false,{\"div.swp-flipboard a:hover\":false},[\"background:#941e1e\",\"color:#fff\"]],[false,{\"div.swp-hacker_news\":false},[\"background:#d85623\",\"border-color:#ac451c\"]],[false,{\"div.swp-hacker_news a\":false},[\"color:#d85623\"]],[false,{\"div.swp-hacker_news a:hover\":false},[\"background:#ac451c\",\"color:#fff\"]],[false,{\"div.swp-instagram\":false},[\"background:#ea2454\",\"border-color:#c8133f\"]],[false,{\"div.swp-instagram a\":false},[\"color:#ea2454\"]],[false,{\"div.swp-instagram a:hover\":false},[\"background:#c8133f\",\"color:#fff\"]],[false,{\"div.swp-linkedin\":false},[\"background:#2767b1\",\"border-color:#1e4f87\"]],[false,{\"div.swp-linkedin a\":false},[\"color:#2767b1\"]],[false,{\"div.swp-linkedin a:hover\":false},[\"background:#1e4f87\",\"color:#fff\"]],[false,{\"div.swp-medium\":false},[\"background:#00ab6c\",\"border-color:#00784c\"]],[false,{\"div.swp-medium a\":false},[\"color:#00ab6c\"]],[false,{\"div.swp-medium a:hover\":false},[\"background:#00784c\",\"color:#fff\"]],[false,{\"div.swp-mix\":false},[\"background:#f4812c\",\"border-color:#e1660c\"]],[false,{\"div.swp-mix a\":false},[\"color:#f4812c\"]],[false,{\"div.swp-mix a:hover\":false},[\"background:#e1660c\",\"color:#fff\"]],[false,{\"div.swp-more\":false},[\"background:#ee464f\",\"border-color:#ea1723\"]],[false,{\"div.swp-more a\":false},[\"color:#ee464f\"]],[false,{\"div.swp-more a:hover\":false},[\"background:#ea1723\",\"color:#fff\"]],[false,{\"div.swp-parler\":false},[\"background:#be1e2c\",\"border-color:#921722\"]],[false,{\"div.swp-parler a\":false},[\"color:#be1e2c\"]],[false,{\"div.swp-parler a:hover\":false},[\"background:#921722\",\"color:#fff\"]],[false,{\"div.swp-periscope\":false},[\"background:#3aa4c6\",\"border-color:#2e849f\"]],[false,{\"div.swp-periscope a\":false},[\"color:#3aa4c6\"]],[false,{\"div.swp-periscope a:hover\":false},[\"background:#2e849f\",\"color:#fff\"]],[false,{\"div.swp-pinterest\":false},[\"background:#e60023\",\"border-color:#b3001b\"]],[false,{\"div.swp-pinterest a\":false},[\"color:#e60023\"]],[false,{\"div.swp-pinterest a:hover\":false},[\"background:#b3001b\",\"color:#fff\"]],[false,{\"div.swp-pocket\":false},[\"background:#ef4056\",\"border-color:#e9132e\"]],[false,{\"div.swp-pocket a\":false},[\"color:#ef4056\"]],[false,{\"div.swp-pocket a:hover\":false},[\"background:#e9132e\",\"color:#fff\"]],[false,{\"div.swp-print\":false},[\"background:#777\",\"border-color:#5e5e5e\"]],[false,{\"div.swp-print a\":false},[\"color:#777\"]],[false,{\"div.swp-print a:hover\":false},[\"background:#5e5e5e\",\"color:#fff\"]],[false,{\"div.swp-reddit\":false},[\"background:#f04b23\",\"border-color:#d2340e\"]],[false,{\"div.swp-reddit a\":false},[\"color:#f04b23\"]],[false,{\"div.swp-reddit a:hover\":false},[\"background:#d2340e\",\"color:#fff\"]],[false,{\"div.swp-snapchat\":false},[\"background:#fffc00\",\"border-color:#ccca00\"]],[false,{\"div.swp-snapchat a\":false},[\"color:#fffc00\"]],[false,{\"div.swp-snapchat a:hover\":false},[\"background:#ccca00\",\"color:#fff\"]],[false,{\"div.swp-telegram\":false},[\"background:#08c\",\"border-color:#069\"]],[false,{\"div.swp-telegram a\":false},[\"color:#08c\"]],[false,{\"div.swp-telegram a:hover\":false},[\"background:#069\",\"color:#fff\"]],[false,{\"div.swp-twitter\":false},[\"background:#1da1f2\",\"border-color:#0c85d0\"]],[false,{\"div.swp-twitter a\":false},[\"color:#1da1f2\"]],[false,{\"div.swp-twitter a:hover\":false},[\"background:#0c85d0\",\"color:#fff\"]],[false,{\"div.swp-tumblr\":false},[\"background:#39475d\",\"border-color:#262f3d\"]],[false,{\"div.swp-tumblr a\":false},[\"color:#39475d\"]],[false,{\"div.swp-tumblr a:hover\":false},[\"background:#262f3d\",\"color:#fff\"]],[false,{\"div.swp-vimeo\":false},[\"background:#162221\",\"border-color:#020303\"]],[false,{\"div.swp-vimeo a\":false},[\"color:#162221\"]],[false,{\"div.swp-vimeo a:hover\":false},[\"background:#020303\",\"color:#fff\"]],[false,{\"div.swp-viber\":false},[\"background:#8f5db7\",\"border-color:#75459c\"]],[false,{\"div.swp-viber a\":false},[\"color:#8f5db7\"]],[false,{\"div.swp-viber a:hover\":false},[\"background:#75459c\",\"color:#fff\"]],[false,{\"div.swp-vk\":false},[\"background:#4a76a8\",\"border-color:#3a5d85\"]],[false,{\"div.swp-vk a\":false},[\"color:#4a76a8\"]],[false,{\"div.swp-vk a:hover\":false},[\"background:#3a5d85\",\"color:#fff\"]],[false,{\"div.swp-whatsapp\":false},[\"background:#71c169\",\"border-color:#52af48\"]],[false,{\"div.swp-whatsapp a\":false},[\"color:#71c169\"]],[false,{\"div.swp-whatsapp a:hover\":false},[\"background:#52af48\",\"color:#fff\"]],[false,{\"div.swp-xing\":false},[\"background:#026466\",\"border-color:#013334\"]],[false,{\"div.swp-xing a\":false},[\"color:#026466\"]],[false,{\"div.swp-xing a:hover\":false},[\"background:#013334\",\"color:#fff\"]],[false,{\"div.swp-yummly\":false},[\"background:#e26426\",\"border-color:#bc4f19\"]],[false,{\"div.swp-yummly a\":false},[\"color:#e26426\"]],[false,{\"div.swp-yummly a:hover\":false},[\"background:#bc4f19\",\"color:#fff\"]],[false,{\".swfw-follow-button\":false,\".swfw_square_button\":false,\".swfw_buttons_button\":false,\".swfw_block_button\":false,\".swfw-follow-button.swfw_leaf_button\":false,\".swfw-follow-button.swfw_pill_button\":false,\".swfw-follow-button.swfw_shift_button\":false},[\"align-items:center\",\"border-radius:8px\",\"display:flex\",\"color:white\",\"font-family:\\\"Helvetica\\\",sans-serif\",\"font-size:initial\",\"justify-content:space-between\",\"line-height:1\",\"margin-bottom:10px\",\"padding:15px 5%\",\"width:90%\"]],[false,{\".swfw-follow-button.swp-snapchat\":false,\".swp-snapchat.swfw_square_button\":false,\".swp-snapchat.swfw_buttons_button\":false,\".swp-snapchat.swfw_block_button\":false,\".swfw-follow-button.swp-snapchat a\":false,\".swp-snapchat.swfw_square_button a\":false,\".swp-snapchat.swfw_buttons_button a\":false,\".swp-snapchat.swfw_block_button a\":false},[\"color:black\"]],[false,{\".swfw-follow-button a\":false,\".swfw_square_button a\":false,\".swfw_buttons_button a\":false,\".swfw_block_button a\":false,\".swfw-follow-button.swfw_leaf_button a\":false,\".swfw-follow-button.swfw_pill_button a\":false,\".swfw-follow-button.swfw_shift_button a\":false},[\"background:#fff\",\"border-radius:4px\",\"transition:all .2s ease-in-out\"]],[false,{\".swfw-follow-button a :hover\":false,\".swfw_square_button a :hover\":false,\".swfw_buttons_button a :hover\":false,\".swfw_block_button a :hover\":false},[\"color:white\"]],[false,{\".swfw-follow-button a :hover.swp-snapchat\":false,\".swfw_square_button a :hover.swp-snapchat\":false,\".swfw_buttons_button a :hover.swp-snapchat\":false,\".swfw_block_button a :hover.swp-snapchat\":false},[\"color:black\"]],[false,{\".swfw-follow-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_square_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_block_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_leaf_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_pill_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_shift_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw-follow-button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw-follow-button .swfw-count:not(#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-count:not(#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-count:not(#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-count:not(#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\".swfw-follow-button .swfw-network-icon i\":false,\".swfw_square_button .swfw-network-icon i\":false,\".swfw_buttons_button .swfw-network-icon i\":false,\".swfw_block_button .swfw-network-icon i\":false},[\"width:32px\",\"height:32px\",\"border-radius:100px\",\"font-size:24px\",\"line-height:32px\"]],[false,{\".swfw-follow-button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\".swfw_square_button\":false},[\"width:60px\",\"height:60px\",\"position:relative\",\"display:flex\",\"flex-flow:column nowrap\",\"align-items:center\",\"text-align:center\",\"margin:5px\",\"padding:0\",\"justify-content:center\",\"border-radius:4px\"]],[false,{\".swfw_square_button .swfw-network-icon\":false},[\"margin-top:-12px\"]],[false,{\".swfw_square_button .swfw-text\":false},[\"width:100%\"]],[false,{\".swfw_square_button .swfw-cta\":false,\".swfw_square_button .swfw-count\":false},[\"display:block\",\"width:100%\",\"position:absolute\"]],[false,{\".swfw_square_button .swfw-count\":false},[\"opacity:1\",\"transition:opacity 120ms 0\",\"font-size:12px\"]],[false,{\".swfw_square_button .swfw-cta\":false},[\"opacity:0\",\"transition:opacity 120ms 0\",\"font-size:12px\"]],[false,{\".swfw_square_button:hover .swfw-count\":false},[\"opacity:0\",\"transition:opacity 120ms 120ms\"]],[false,{\".swfw_square_button:hover .swfw-cta\":false},[\"opacity:1\",\"transition:opacity 120ms 120ms\"]],[false,{\".swfw_buttons_button\":false},[\"display:flex\",\"flex-flow:row nowrap\",\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\",\"margin:10px 5px\",\"border-radius:4px\",\"padding:5px 15px\",\"color:white\"]],[false,{\".swfw_buttons_button .swfw-network-icon\":false},[\"padding:0\",\"font-size:32px\"]],[false,{\".swfw_buttons_button .swfw-text\":false},[\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\",\"margin:0 10px\",\"transition:margin 300ms\",\"display:flex\",\"justify-content:center\",\"line-height:32px\",\"color:white\"]],[false,{\".swfw_buttons_button .swfw-text .swfw-cta\":false,\".swfw_buttons_button .swfw-text .swfw-count\":false},[\"display:inline\",\"position:relative\",\"transition:all 300ms\"]],[false,{\".swfw_buttons_button .swfw-text .swfw-cta\":false},[\"width:0\",\"overflow-x:hidden\",\"position:absolute\",\"color:transparent\",\"margin-right:0\",\"font-weight:normal\"]],[false,{\".swfw_buttons_button .swfw-text:hover .swfw-cta\":false},[\"color:white\"]],[false,{\".swfw_buttons_button.swp-snapchat .swfw-text\":false},[\"color:black\"]],[false,{\".swfw_buttons_button.swp-snapchat .swfw-text:hover .swfw-cta\":false},[\"color:black\"]],[false,{\".swfw_buttons_button:hover .swfw-text\":false},[\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\"]],[false,{\".swfw_buttons_button:hover .swfw-text .swfw-cta\":false},[\"width:-moz-min-content\",\"width:-webkit-min-content\",\"width:min-content\",\"overflow-x:visible\",\"position:relative\",\"margin-right:10px\",\"color:white\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_pill_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_shift_button .swfw-network-icon\":false},[\"margin-left:10px\",\"flex:1\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-text\":false,\".swfw-follow-button.swfw_pill_button .swfw-text\":false,\".swfw-follow-button.swfw_shift_button .swfw-text\":false},[\"flex:2\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button\":false},[\"flex:1\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a\":false},[\"padding:none\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a div\":false},[\"padding:10px 30px\",\"background:white\",\"border-radius:2px\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a:hover div\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a:hover div\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a:hover div\":false},[\"background:rgba(33,33,33,.3)\"]],[false,{\".swfw_block_button\":false,\".swfw-follow-button.swfw_leaf_button\":false,\".swfw-follow-button.swfw_pill_button\":false,\".swfw-follow-button.swfw_shift_button\":false},[\"flex-flow:row nowrap\",\"align-items:center\",\"justify-content:space-between\",\"cursor:initial\",\"position:relative\"]],[false,{\".swfw_block_button>*\":false,\".swfw-follow-button.swfw_leaf_button>*\":false,\".swfw-follow-button.swfw_pill_button>*\":false,\".swfw-follow-button.swfw_shift_button>*\":false},[\"width:-moz-min-content\",\"width:-webkit-min-content\",\"width:min-content\"]],[false,{\".swfw_block_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_leaf_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_pill_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_shift_button .swfw-network-icon\":false},[\"margin-left:10px\"]],[false,{\".swfw_block_button .swfw-text\":false,\".swfw-follow-button.swfw_leaf_button .swfw-text\":false,\".swfw-follow-button.swfw_pill_button .swfw-text\":false,\".swfw-follow-button.swfw_shift_button .swfw-text\":false},[\"font-size:12px\",\"line-height:24px\",\"left:calc(10px + 60px)\",\"color:white\",\"text-align:center\"]],[false,{\".swfw_block_button .swfw-text .swfw-count\":false,\".swfw-follow-button.swfw_leaf_button .swfw-text .swfw-count\":false,\".swfw-follow-button.swfw_pill_button .swfw-text .swfw-count\":false,\".swfw-follow-button.swfw_shift_button .swfw-text .swfw-count\":false},[\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\",\"font-size:15px\"]],[false,{\".swfw_block_button.swp-snapchat .swfw-text\":false,\".swp-snapchat.swfw-follow-button.swfw_leaf_button .swfw-text\":false,\".swp-snapchat.swfw-follow-button.swfw_pill_button .swfw-text\":false,\".swp-snapchat.swfw-follow-button.swfw_shift_button .swfw-text\":false},[\"color:black\"]],[false,{\".swfw_block_button .swfw-cta\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta\":false},[\"border-radius:3px\"]],[false,{\".swfw_block_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button\":false},[\"font-size:24px\",\"padding:5px\",\"line-height:24px\",\"border-radius:4px\",\"text-align:center\",\"right:0\"]],[false,{\".swfw_block_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\".swfw_block_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a div\":false},[\"font-size:14px\",\"min-width:100px\",\"border-radius:3px\",\"background:white\",\"padding:5px 15px\"]],[false,{\".swfw_block_button .swfw-cta-button a div:hover\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a div:hover\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a div:hover\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a div:hover\":false},[\"transition:opacity 200ms\",\"background:rgba(30,30,30,.3)\",\"cursor:pointer\",\"color:white\"]],[false,{\".swfw_leaf_button.swfw_square_button\":false,\".swfw_leaf_button.swfw_buttons_button\":false,\".swfw_leaf_button.swfw_block_button\":false,\".swfw_leaf_button.swfw-follow-button\":false},[\"border-top-left-radius:21px\",\"border-top-right-radius:3px\",\"border-bottom-left-radius:3px\",\"border-bottom-right-radius:21px\"]],[false,{\".swfw_leaf_button.swfw_square_button .swfw-network-icon\":false,\".swfw_leaf_button.swfw_buttons_button .swfw-network-icon\":false,\".swfw_leaf_button.swfw_block_button .swfw-network-icon\":false,\".swfw_leaf_button.swfw-follow-button .swfw-network-icon\":false},[\"margin-left:10px\"]],[false,{\".swfw_pill_button.swfw_square_button\":false,\".swfw_pill_button.swfw_buttons_button\":false,\".swfw_pill_button.swfw_block_button\":false,\".swfw_pill_button.swfw-follow-button\":false},[\"border-radius:50px\",\"padding:20px\"]],[false,{\".swfw_pill_button.swfw_square_button .swfw-network-icon\":false,\".swfw_pill_button.swfw_buttons_button .swfw-network-icon\":false,\".swfw_pill_button.swfw_block_button .swfw-network-icon\":false,\".swfw_pill_button.swfw-follow-button .swfw-network-icon\":false},[\"margin-left:10px\"]],[false,{\".swfw_pill_button.swfw_square_button .swfw-cta-button a\":false,\".swfw_pill_button.swfw_buttons_button .swfw-cta-button a\":false,\".swfw_pill_button.swfw_block_button .swfw-cta-button a\":false,\".swfw_pill_button.swfw-follow-button .swfw-cta-button a\":false},[\"border-radius:50px\"]],[false,{\".swfw_pill_button.swfw_square_button .swfw-cta-button a div\":false,\".swfw_pill_button.swfw_buttons_button .swfw-cta-button a div\":false,\".swfw_pill_button.swfw_block_button .swfw-cta-button a div\":false,\".swfw_pill_button.swfw-follow-button .swfw-cta-button a div\":false},[\"border-radius:50px\"]],[false,{\".swfw_shift_button.swfw_square_button\":false,\".swfw_shift_button.swfw_buttons_button\":false,\".swfw_shift_button.swfw_block_button\":false,\".swfw_shift_button.swfw-follow-button\":false},[\"transform:skew(-20deg)\",\"-moz-transform:skew(-20deg)\",\"-o-transform:skew(-20deg)\",\"-webkit-transform:skew(-20deg)\"]],[false,{\".swfw_shift_button.swfw_square_button div\":false,\".swfw_shift_button.swfw_buttons_button div\":false,\".swfw_shift_button.swfw_block_button div\":false,\".swfw_shift_button.swfw-follow-button div\":false},[\"transform:skew(20deg)\",\"-moz-transform:skew(20deg)\",\"-o-transform:skew(20deg)\",\"-webkit-transform:skew(20deg)\",\"align-items:center\",\"display:flex\",\"justify-content:space-around\",\"width:100%\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button\":false},[\"transform:skew(0deg)\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a\":false},[\"padding:none\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a:hover\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a:hover\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a:hover\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a:hover\":false},[\"background:rgba(33,33,33,.3)\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a div\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a div\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a div\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a div\":false},[\"background:none\",\"transform:skew(20deg)\",\"padding:10px 30px\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a div:hover\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a div:hover\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a div:hover\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a div:hover\":false},[\"background:none\"]],[false,{\".swfw-revoke-button\":false,\".swfw-authorization-button\":false},[\"width:70%\",\"text-align:center\",\"max-width:200px\"]],[false,{\".swfw-input-field\":false,\".swfw-follow-field\":false},[\"display:flex\",\"flex-flow:row nowrap\",\"justify-content:space-between\",\"align-items:center\",\"height:50px\",\"margin:15px auto\"]],[false,{\".swfw-follow-field.swfw-inactive a\":false},[\"cursor:initial\"]],[false,{\".swfw-follow-field.swfw-active a\":false},[\"cursor:pointer\"]],[false,{\".swfw-follow-field-icon\":false},[\"color:black\",\"width:40px\",\"font-size:40px\",\"line-height:42px\",\"font-weight:bold\",\"transition:all 200ms\",\"border-radius:3px\",\"height:40px\",\"text-align:center\",\"padding:2px\"]],[false,{\".swfw-widget label\":false},[\"font-size:14px\",\"width:100px\"]],[false,{\".swfw-follow-field label\":false},[\"text-align:right\"]],[false,{\".swfw-input-field input\":false,\".swfw-input-field select\":false,\".swfw-follow-field input\":false},[\"padding:10px\",\"width:50%\",\"height:100%\",\"border-radius:4px\"]],[false,{\".swfw-follow-field.swfw-inactive div\":false},[\"background:white\"]],[false,{\".swfw-follow-field.swfw-active div\":false},[\"color:white\"]],[false,{\"a.swp-hover-pin-button\":false},[\"background:#cd2029\",\"border:1px solid #aa1b29\",\"border:0\",\"border-bottom:none\",\"border-radius:3px\",\"box-shadow:none\",\"color:#fff\",\"font-family:Lato,sans-serif\",\"font-size:15px\",\"height:32px\",\"line-height:32px\",\"padding:0 20px\",\"position:absolute\",\"position:absolute\",\"text-decoration:none\",\"text-align:center\",\"transition:opacity .5s\",\"z-index:3200\",\"cursor:pointer\"]],[false,{\"a.swp-hover-pin-button:not(#_#_#_#_#_#_#_#_)\":false},[\"width:120px\"]],[false,{\"a.swp-hover-pin-button::before\":false},[\"content:\\\"A\\\"\",\"color:#fff\",\"float:left\",\"font-family:sw-icon-font\",\"font-size:20px\",\"font-weight:400\",\"line-height:36px\",\"margin-left:-5px\",\"margin-right:10px\"]],[false,{\"a.swp-hover-pin-button:hover::before\":false},[\"content:\\\"z\\\"\"]],[false,{\"a.swp-hover-pin-button:hover\":false,\"a.swp-hover-pin-button:focus\":false},[\"background:#aa1b29\",\"color:#fff\",\"text-decoration:none\"]],[false,{\".swp-pinterest-image-top\":false},[\"margin-bottom:20px\"]],[false,{\".swp-pinterest-image-bottom\":false},[\"margin-top:20px\"]],[false,{\".swp_pop_thumb\":false},[\"border-radius:3px\",\"float:left\",\"height:100px\",\"margin:5px 25px 5px 0\",\"width:100px\"]],[false,{\".swp_popular_post\":false},[\"clear:both\"]],[false,{\".swp_popular_post a.swp_popularity\":false},[\"border:none\",\"display:block\",\"line-height:1.5\",\"margin:20px 0\"]],[false,{\".swp_clearfix:after\":false},[\"clear:both\",\"content:\\\" \\\"\",\"display:block\",\"height:0\",\"visibility:hidden\"]],[false,{\"span.swp_pop_count\":false},[\"display:block\",\"font-size:70%\"]],[false,{\".swp_widget_box\":false},[\"border-radius:3px\"]],[false,{\".swp_hidden_pin_image\":false},[\"height:0\",\"opacity:0\",\"position:absolute\",\"top:0\",\"width:0\",\"z-index:-10\"]],[false,{\".swp-content-locator:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"margin:0\"]],[false,{\".swp-lightbox-wrapper\":false},[\"width:100%\",\"height:100%\",\"position:fixed\",\"top:0\",\"background:#fff\",\"z-index:999999\"]],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner\":false},[\"width:50%\",\"left:25%\",\"position:relative\",\"text-align:center\",\"top:10%\",\"background:#fff\",\"padding:35px\",\"border-radius:10px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner\":false},[\"width:80%\",\"left:10%\"]],[false,\"}\"],[false,\"@media (max-width: 450px){\"],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner\":false},[\"width:90%\",\"left:5%\"]],[false,\"}\"],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner h5\":false},[\"font-family:Lato,sans-serif\",\"font-size:25px\",\"margin-bottom:40px\",\"text-align:center\"]],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner .swp-lightbox-close\":false},[\"font-weight:bold\",\"height:20px\",\"width:20px\",\"cursor:pointer\",\"color:#30394f\",\"text-align:right\",\"transform:rotate(45deg)\",\"display:inline-block\",\"float:right\",\"margin:-30px\",\"font-size:25px\"]],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner .swp-lightbox-close:before\":false},[\"content:\\\"+\\\"\",\"font-family:arial\"]],[false,\"@media print{\"],[false,{\".swp-lightbox-wrapper\":false},[\"display:none\"]],[false,\"}\"],[false,{\".swp-lightbox-wrapper .swp_pinterest_icon.top_icon\":false,\".swp-lightbox-wrapper .swp_share_icon\":false},[\"color:#cd2029\",\"font-size:45px\",\"margin:0\",\"padding:0\",\"line-height:0\"]],[false,{\".swp-lightbox-wrapper .swp_share_icon\":false},[\"color:#000\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .swp-lightbox-inner\":false},[\"width:70%\",\"left:15%\",\"height:80%\",\"overflow-y:auto\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .swp-lightbox-inner h5\":false},[\"margin-bottom:40px\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper\":false},[\"text-align:center\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper\":false},[\"display:inline-block\",\"width:24%\",\"margin-right:1%\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper amp-img\":false,\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper amp-anim\":false},[\"border-radius:3px\",\"max-width:100%\",\"height:auto\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper .swp-hover-pin-button\":false},[\"position:initial\",\"display:block\",\"margin-top:10px\",\"margin-bottom:40px\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper .swp-hover-pin-button:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":8320,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"__EPYT__style-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/styles\\/ytprefs.min.css?ver=14.1.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"style\",\"handle\":\"__EPYT__style\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"__EPYT__style\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"9c3e04efd2df5c19054e5b96b851efb8\",\"parse_time\":0.0915369987487793,\"shake_time\":0.0001780986785888672,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".epyt-debug\":false},[\"cursor:pointer\",\"text-align:left\",\"background-color:#ddd\",\"color:#000\"]],[false,{\"amp-iframe.__youtube_prefs__\":false},[\"border-width:0\"]],[false,{\".epyt-gallery\":false},[\"text-align:center\"]],[false,{\".epyt-gallery .epyt-figure\":false},[\"margin-inline:0\",\"margin-block:0\"]],[false,{\".epyt-gallery amp-iframe\":false},[\"margin-bottom:0\"]],[false,{\".epyt-gallery.epyt-lb amp-iframe\":false},[\"display:none\"]],[false,{\".epyt-gallery.epyt-lb amp-iframe:not(#_#_#_#_#_#_#_#_)\":false},[\"height:0\"]],[false,{\".epyt-gallery-list\":false},[\"margin:0 -8px 0 -8px\",\"position:relative\",\"transition:opacity ease-out .3s\",\"display:block\"]],[false,{\".epyt-gallery-list .epyt-gallery-thumb\":false},[\"box-sizing:border-box\"]],[false,{\".epyt-gallery-list p\":false},[\"display:none\"]],[false,{\".epyt-gallery-clear\":false},[\"clear:both\"]],[false,{\".epyt-gallery-list.epyt-loading\":false},[\"opacity:.5\",\"transition:opacity ease-out .3s\"]],[false,{\".epyt-gallery-thumb\":false},[\"position:relative\",\"box-sizing:border-box\",\"overflow-y:hidden\",\"cursor:pointer\",\"opacity:1\",\"float:left\",\"padding:0 8px 10px 8px\",\"height:auto\"]],[false,{\".epyt-gallery-thumb:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".epyt-gallery-thumb.hover\":false},[\"position:relative\",\"opacity:1\",\"transition:opacity ease-out .3s\",\"height:auto\"]],[false,{\".epyt-gallery-img-box\":false},[\"width:100%\"]],[false,{\".epyt-gallery-img\":false},[\"height:0\",\"width:100%\",\"position:relative\"]],[false,{\".epyt-gallery-img:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:56.25%\",\"overflow:hidden\",\"background-size:cover\",\"background-position:center\"]],[false,{\".epyt-gallery-playhover\":false},[\"opacity:0\",\"position:absolute\",\"top:-10px\",\"left:0\",\"width:100%\",\"height:100%\",\"vertical-align:middle\",\"text-align:center\",\"transition:opacity ease-out .3s\"]],[false,{\".epyt-gallery-thumb.hover .epyt-gallery-playhover\":false,\".epyt-gallery-thumb.epyt-current-video .epyt-gallery-playhover\":false},[\"opacity:1\",\"top:0\",\"transition:all ease-out .3s\"]],[false,{\".epyt-gallery-thumb .epyt-gallery-playcrutch\":false},[\"display:inline-block\",\"height:100%\",\"vertical-align:middle\",\"width:0\"]],[false,{\".epyt-gallery-playhover .epyt-play-img\":false},[\"width:auto\",\"border:0\",\"box-sizing:border-box\"]],[false,{\".epyt-gallery-playhover .epyt-play-img:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\",\"max-width:15%\",\"padding:0\",\"margin:0\",\"min-width:30px\",\"vertical-align:middle\",\"display:inline-block\"]],[false,{\".epyt-gallery-title\":false},[\"font-size:80%\",\"line-height:120%\",\"padding:10px\"]],[false,{\".epyt-gallery-notitle\":false},[\"padding:4px\"]],[false,{\".epyt-gallery-notitle span\":false},[\"display:none\"]],[false,{\".epyt-gallery-rowtitle\":false},[\"text-align:center\",\"width:100%\",\"position:absolute\",\"left:0\",\"top:100%\",\"opacity:0\",\"z-index:10\",\"overflow-x:hidden\",\"text-overflow:ellipsis\",\"white-space:nowrap\"]],[false,{\".epyt-gallery-rowtitle.hover\":false},[\"opacity:1\",\"transition:opacity linear .2s\"]],[false,{\".epyt-gallery-rowbreak\":false},[\"clear:both\"]],[false,{\".epyt-pagination\":false},[\"clear:both\",\"text-align:center\",\"padding:10px 8px 10px 8px\"]],[false,{\".epyt-pagination.epyt-hide-pagination *:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".epyt-pagination>div\":false,\".epyt-pagenumbers>div\":false},[\"display:inline-block\",\"padding:0 2px 0 2px\",\"vertical-align:middle\"]],[false,{\".epyt-pagination .epyt-pagebutton\":false},[\"cursor:pointer\",\"display:inline-block\",\"padding:0 10px 0 10px\"]],[false,{\".epyt-pagebutton>div\":false},[\"display:inline\"]],[false,{\".epyt-pagination .epyt-loader\":false},[\"display:none\"]],[false,{\".epyt-gallery-list.epyt-loading .epyt-pagination .epyt-loader\":false},[\"display:inline-block\"]],[false,{\"body .lity-container\":false},[\"width:100%\",\"max-width:964px\"]],[false,{\".epyt-curtain .lity-opened amp-iframe\":false},[\"opacity:0\",\"transition:opacity .3s linear .5s\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-1 .epyt-gallery-thumb\":false},[\"width:100%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-2 .epyt-gallery-thumb\":false},[\"width:50%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-3 .epyt-gallery-thumb\":false},[\"width:33.333%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-4 .epyt-gallery-thumb\":false},[\"width:25%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-5 .epyt-gallery-thumb\":false},[\"width:20%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-6 .epyt-gallery-thumb\":false},[\"width:16.666%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-7 .epyt-gallery-thumb\":false},[\"width:14.285%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-8 .epyt-gallery-thumb\":false},[\"width:12.5%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-9 .epyt-gallery-thumb\":false},[\"width:11.111%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-10 .epyt-gallery-thumb\":false},[\"width:10%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-11 .epyt-gallery-thumb\":false},[\"width:9.09%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-12 .epyt-gallery-thumb\":false},[\"width:8.333%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-13 .epyt-gallery-thumb\":false},[\"width:7.692%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-14 .epyt-gallery-thumb\":false},[\"width:7.142%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-15 .epyt-gallery-thumb\":false},[\"width:6.666%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-16 .epyt-gallery-thumb\":false},[\"width:6.25%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-17 .epyt-gallery-thumb\":false},[\"width:5.882%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-18 .epyt-gallery-thumb\":false},[\"width:5.555%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-19 .epyt-gallery-thumb\":false},[\"width:5.263%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-20 .epyt-gallery-thumb\":false},[\"width:5%\"]],[false,{\".epyt-pagebutton.hide:not(#_#_#_#_#_#_#_)\":false,\".epyt-pagenumbers.hide:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"opacity:0\",\"visibility:hidden\"]],[false,{\".epyt-gallery-subscribe\":false},[\"text-align:center\",\"padding:15px 0 10px 0\",\"clear:both\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton:hover\":false},[\"display:inline-block\",\"padding:5px 10px\",\"border-radius:3px\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton:not(#_#_#_#_#_#_#_#_)\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#e62117\",\"color:#fff\",\"text-decoration:none\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-img\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-anim\":false},[\"padding:0 6px 3px 0\",\"display:inline-block\",\"background:transparent\",\"-webkit-box-shadow:none\",\"box-shadow:none\",\"margin:0\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:20px\",\"height:auto\",\"vertical-align:middle\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__\":false},[\"background-color:#000\",\"background-image:-webkit-linear-gradient(top,#000,#444)\",\"background-image:linear-gradient(to bottom,#000,#444)\",\"padding:25px\",\"height:auto\",\"text-align:left\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ *:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#e3e3e3\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ a\":false},[\"text-decoration:underline\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:hover\":false},[\"display:inline-block\",\"padding:5px 10px\",\"border-radius:3px\",\"font-weight:normal\",\"border-width:0\",\"box-sizing:border-box\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:not(#_#_#_#_#_#_#_#_)\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#e62117\",\"color:#fff\",\"text-decoration:none\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-img\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-anim\":false},[\"padding:0 6px 3px 0\",\"display:inline-block\",\"background:transparent\",\"-webkit-box-shadow:none\",\"box-shadow:none\",\"margin-left:8px\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-img:not(#_#_#_#_#_#_#_#_)\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:20px\",\"height:auto\",\"vertical-align:middle\"]],[false,{\"body .epyt-gallery-img-gdpr\":false},[\"background-color:#000\",\"background-image:-webkit-linear-gradient(top,#000,#444)\",\"background-image:linear-gradient(to bottom,#000,#444)\"]],[false,{\".epyt-facade\":false},[\"position:relative\",\"padding-bottom:56.25%\",\"height:0\",\"overflow:hidden\",\"max-width:100%\",\"-webkit-transition:.4s all\",\"-moz-transition:.4s all\",\"transition:.4s all\"]],[false,{\".epyt-facade:hover\":false},[\"-webkit-filter:brightness(90%)\",\"-moz-filter:brightness(90%)\",\"filter:brightness(90%)\"]],[false,{\".epyt-facade amp-img.epyt-facade-poster\":false,\".epyt-facade amp-anim.epyt-facade-poster\":false},[\"display:block\",\"margin:0\",\"max-width:100%\",\"width:100%\",\"position:absolute\",\"top:50%\",\"left:50%\",\"transform:translate(-50%,-50%)\",\"border:0\",\"height:auto\",\"cursor:pointer\"]],[false,{\".epyt-facade button.epyt-facade-play\":false},[\"position:absolute\",\"left:50%\",\"top:50%\",\"width:68px\",\"height:48px\",\"margin-left:-34px\",\"margin-top:-24px\",\"-webkit-transition:opacity .25s cubic-bezier(0,0,.2,1)\",\"transition:opacity .25s cubic-bezier(0,0,.2,1)\",\"cursor:pointer\"]],[false,{\".epyt-facade button.epyt-facade-play:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:transparent\",\"border-width:0\"]],[false,{\".epyt-facade button.epyt-facade-play svg\":false},[\"height:100%\",\"left:0\",\"position:absolute\",\"top:0\",\"width:100%\",\"pointer-events:none\"]],[false,{\".epyt-facade button.epyt-facade-play svg .ytp-large-play-button-bg\":false},[\"-webkit-transition:fill .1s cubic-bezier(.4,0,1,1),fill-opacity .1s cubic-bezier(.4,0,1,1)\",\"transition:fill .1s cubic-bezier(.4,0,1,1),fill-opacity .1s cubic-bezier(.4,0,1,1)\",\"fill:#212121\",\"fill-opacity:.8\"]],[false,{\".epyt-facade:hover button.epyt-facade-play svg .ytp-large-play-button-bg\":false},[\"-webkit-transition:fill .1s cubic-bezier(0,0,.2,1),fill-opacity .1s cubic-bezier(0,0,.2,1)\",\"transition:fill .1s cubic-bezier(0,0,.2,1),fill-opacity .1s cubic-bezier(0,0,.2,1)\",\"fill:#f00\",\"fill-opacity:1\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.epyt-facade\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\"]],[false,{\".wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.__youtube_prefs_gdpr__\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.__youtube_prefs_gdpr__\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"overflow-y:auto\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper.epyt-is-override__wrapper:before\":false},[\"padding:0\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper.epyt-is-override__wrapper .epyt-is-override.__youtube_prefs_gdpr__\":false},[\"position:relative\",\"top:unset\",\"right:unset\",\"bottom:unset\",\"left:unset\"]],[false,{\".ytvi-story-container\":false},[\"display:block\",\"max-width:100%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":81,\"final_size\":0,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"__EPYT__style-inline-css\",\"type\":\"text\\/css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"\\r\\n .epyt-gallery-thumb {\\r\\n width: 33.333%;\\r\\n }\\r\\n \",\"handle\":\"__EPYT__style\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"\\r\\n .epyt-gallery-thumb {\\r\\n width: 33.333%;\\r\\n }\\r\\n \",\"handle\":\"__EPYT__style\"}],\"priority\":70,\"hash\":\"c0787a0c009a93e8e21ea0b9ce09b54f\",\"parse_time\":0.0006740093231201172,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".epyt-gallery-thumb\":false},[\"width:33.333%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":323,\"final_size\":64,\"element\":{\"name\":\"style\",\"attributes\":{\"type\":\"text\\/css\",\"id\":\"wp-custom-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"theme.php\",\"line\":1824,\"function\":\"wp_custom_css_cb\",\"hook\":\"wp_head\",\"priority\":101}],\"priority\":60,\"hash\":\"ed93f9bffe93712a600c426300d64207\",\"parse_time\":0.002050161361694336,\"shake_time\":1.6927719116210938e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".tek-ai\":false},[\"height:auto\"]],[false,{\".tek-ai amp-img\":false,\".tek-ai amp-anim\":false},[\"max-height:570px\"]],[false,{\".tek-ai amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".tek-ai amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[false,\"@media (max-width:992px){\"],[false,{\".tek-ai\":false},[\"height:auto\"]],[false,{\".tek-ai:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width: 1400px){\"],[false,{\".tek-ai\":false},[\"height:auto\"]],[false,\"}\"],[true,{\".footer-2022__menu--list.footer_links:nth-child(4)\":true},[\"display:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":57925,\"final_size\":6783,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"rs-plugin-settings-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/rs6.css?ver=6.5.23\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":134,\"function\":\"RevSliderFront::add_inline_css\",\"hook\":\"wp_footer\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"rs-plugin-settings\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}],\"priority\":30,\"hash\":\"4a682d94bb410f9ebfc91fae35d45117\",\"parse_time\":0.7066469192504883,\"shake_time\":0.025570154190063477,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.eot?5510888#iefix\"],\"shaken_tokens\":[[false,{\".rs-p-wp-fix:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"margin:0\",\"height:0px\"]],[false,{\".wp-block-themepunch-revslider\":false},[\"position:relative\"]],[false,{\"rs-modal:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"z-index:9999999\",\"pointer-events:none\"]],[false,{\"rs-modal.rs-modal-auto\":false},[\"top:auto\",\"bottom:auto\",\"left:auto\",\"right:auto\"]],[false,{\"rs-modal.rs-modal-fullwidth\":false,\"rs-modal.rs-modal-fullscreen\":false},[\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\"]],[false,{\"rs-modal rs-fullwidth-wrap\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"height:100%\"]],[false,{\"rs-module-wrap.rs-modal\":false},[\"display:none\"]],[false,{\"rs-module-wrap.rs-modal:not(#_#_#_#_#_#_#_#_)\":false},[\"max-height:100%\",\"overflow:auto\",\"pointer-events:auto\"]],[false,{\"rs-module-wrap.hideallscrollbars.rs-modal:not(#_#_#_#_#_#_#_#_)\":false},[\"overflow:hidden\",\"max-width:100%\"]],[false,{\"rs-modal-cover\":false},[\"width:100%\",\"height:100%\",\"z-index:0\",\"background:transparent\",\"position:absolute\",\"top:0px\",\"left:0px\",\"cursor:pointer\",\"pointer-events:auto\"]],[false,{\"body>rs-modal-cover\":false},[\"position:fixed\"]],[false,{\"body>rs-modal-cover:not(#_#_#_#_#_#_#_#_)\":false},[\"z-index:9999995\"]],[false,{\"rs-sbg-px\":false},[\"pointer-events:none\"]],[false,{\".rs-forceuntouchable:not(#_#_#_#_#_#_#_)\":false,\".rs-forceuntouchable *:not(#_#_#_#_#_#_#_)\":false},[\"pointer-events:none\"]],[false,{\".rs-forcehidden *:not(#_#_#_#_#_#_#_)\":false},[\"visibility:hidden\"]],[false,{\".rs_splitted_lines\":false},[\"display:block\"]],[false,{\".rs_splitted_lines:not(#_#_#_#_#_#_#_)\":false},[\"white-space:nowrap\"]],[false,{\".rs-go-fullscreen\":false},[\"background:#fff\"]],[false,{\".rs-go-fullscreen:not(#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\",\"z-index:9999999\"]],[false,{\".rtl\":false},[\"direction:rtl\"]],[true,\"@font-face{font-family:\\\"revicons\\\";src:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.eot?5510888\\\");src:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.eot?5510888#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.woff?5510888\\\") format(\\\"woff\\\"),url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.ttf?5510888\\\") format(\\\"truetype\\\"),url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.svg?5510888#revicons\\\") format(\\\"svg\\\");font-weight:normal;font-style:normal;font-display:swap}\"],[true,{\"[class^=\\\"revicon-\\\"]:before\":true,\"[class*=\\\" revicon-\\\"]:before\":true},[\"font-family:\\\"revicons\\\"\",\"font-style:normal\",\"font-weight:normal\",\"speak:never\",\"speak-as:spell-out\",\"display:inline-block\",\"text-decoration:inherit\",\"width:1em\",\"margin-right:.2em\",\"text-align:center\",\"font-variant:normal\",\"text-transform:none\",\"line-height:1em\",\"margin-left:.2em\"]],[false,{\"rs-module i[class^=\\\"fa-\\\"]\":false,\"rs-module i[class*=\\\" fa-\\\"]\":false,\".rb-modal-wrapper i[class^=\\\"fa-\\\"]\":false,\".rb-modal-wrapper i[class*=\\\" fa-\\\"]\":false,\"#waitaminute i[class^=\\\"fa-\\\"]\":false,\"#waitaminute i[class*=\\\" fa-\\\"]\":false,\"#objectlibrary i[class^=\\\"fa-\\\"]\":false,\"#objectlibrary i[class*=\\\" fa-\\\"]\":false,\"#rs_overview i[class^=\\\"fa-\\\"]\":false,\"#rs_overview i[class*=\\\" fa-\\\"]\":false,\"#rs_overview_menu i[class^=\\\"fa-\\\"]\":false,\"#rs_overview_menu i[class*=\\\" fa-\\\"]\":false,\"#builderView i[class^=\\\"fa-\\\"]\":false,\"#builderView i[class*=\\\" fa-\\\"]\":false},[\"display:inline-block\",\"font:normal normal normal 14px\\/1 FontAwesome\",\"font-size:inherit\",\"text-rendering:auto\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\"]],[false,{\"rs-module [class^=\\\"fa-\\\"]:before\":false,\"rs-module [class*=\\\" fa-\\\"]:before\":false,\".rb-modal-wrapper [class^=\\\"fa-\\\"]:before\":false,\".rb-modal-wrapper [class*=\\\" fa-\\\"]:before\":false,\"#rs_overview [class^=\\\"fa-\\\"]:before\":false,\"#rs_overview [class*=\\\" fa-\\\"]:before\":false,\"#objectlibrary [class^=\\\"fa-\\\"]:before\":false,\"#objectlibrary [class*=\\\" fa-\\\"]:before\":false,\"#waitaminute [class^=\\\"fa-\\\"]:before\":false,\"#waitaminute [class*=\\\" fa-\\\"]:before\":false,\"#rs_overview_menu [class^=\\\"fa-\\\"]:before\":false,\"#rs_overview_menu [class*=\\\" fa-\\\"]:before\":false,\"#builderView [class^=\\\"fa-\\\"]:before\":false,\"#builderView [class*=\\\" fa-\\\"]:before\":false},[\"font-family:FontAwesome\",\"font-style:normal\",\"font-weight:400\",\"speak:never\",\"speak-as:spell-out\",\"display:inline-block\",\"text-decoration:inherit\",\"width:auto\",\"margin-right:0\",\"text-align:center\",\"font-variant:normal\",\"text-transform:none\",\"line-height:inherit\",\"margin-left:0\"]],[false,{\"rs-module .sr-only\":false,\"#objectlibrary .sr-only\":false,\"#waitaminute .sr-only\":false,\"#rs_overview .sr-only\":false,\"#rs_overview_menu .sr-only\":false,\".rb-modal-wrapper .sr-only\":false,\"#builderView .sr-only\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,{\"rs-module .sr-only-focusable:active\":false,\"rs-module .sr-only-focusable:focus\":false,\"#waitaminute .sr-only-focusable:active\":false,\"#waitaminute .sr-only-focusable:focus\":false,\"#objectlibrary .sr-only-focusable:active\":false,\"#objectlibrary .sr-only-focusable:focus\":false,\"#rs_overview .sr-only-focusable:active\":false,\"#rs_overview .sr-only-focusable:focus\":false,\"#rs_overview_menu .sr-only-focusable:active\":false,\"#rs_overview_menu .sr-only-focusable:focus\":false,\".rb-modal-wrapper .sr-only-focusable:active\":false,\".rb-modal-wrapper .sr-only-focusable:focus\":false,\"#builderView .sr-only-focusable:active\":false,\"#builderView .sr-only-focusable:focus\":false},[\"position:static\",\"width:auto\",\"height:auto\",\"margin:0\",\"overflow:visible\",\"clip:auto\"]],[false,{\".revicon-search-1:before\":false},[\"content:\\\"\\ue802\\\"\"]],[false,{\".revicon-pencil-1:before\":false},[\"content:\\\"\\ue831\\\"\"]],[false,{\".revicon-picture-1:before\":false},[\"content:\\\"\\ue803\\\"\"]],[false,{\".revicon-cancel:before\":false},[\"content:\\\"\\ue80a\\\"\"]],[false,{\".revicon-info-circled:before\":false},[\"content:\\\"\\ue80f\\\"\"]],[false,{\".revicon-trash:before\":false},[\"content:\\\"\\ue801\\\"\"]],[false,{\".revicon-left-dir:before\":false},[\"content:\\\"\\ue817\\\"\"]],[false,{\".revicon-right-dir:before\":false},[\"content:\\\"\\ue818\\\"\"]],[false,{\".revicon-down-open:before\":false},[\"content:\\\"\\ue83b\\\"\"]],[false,{\".revicon-left-open:before\":false},[\"content:\\\"\\ue819\\\"\"]],[false,{\".revicon-right-open:before\":false},[\"content:\\\"\\ue81a\\\"\"]],[false,{\".revicon-angle-left:before\":false},[\"content:\\\"\\ue820\\\"\"]],[false,{\".revicon-angle-right:before\":false},[\"content:\\\"\\ue81d\\\"\"]],[false,{\".revicon-left-big:before\":false},[\"content:\\\"\\ue81f\\\"\"]],[false,{\".revicon-right-big:before\":false},[\"content:\\\"\\ue81e\\\"\"]],[false,{\".revicon-magic:before\":false},[\"content:\\\"\\ue807\\\"\"]],[false,{\".revicon-picture:before\":false},[\"content:\\\"\\ue800\\\"\"]],[false,{\".revicon-export:before\":false},[\"content:\\\"\\ue80b\\\"\"]],[false,{\".revicon-cog:before\":false},[\"content:\\\"\\ue832\\\"\"]],[false,{\".revicon-login:before\":false},[\"content:\\\"\\ue833\\\"\"]],[false,{\".revicon-logout:before\":false},[\"content:\\\"\\ue834\\\"\"]],[false,{\".revicon-video:before\":false},[\"content:\\\"\\ue805\\\"\"]],[false,{\".revicon-arrow-combo:before\":false},[\"content:\\\"\\ue827\\\"\"]],[false,{\".revicon-left-open-1:before\":false},[\"content:\\\"\\ue82a\\\"\"]],[false,{\".revicon-right-open-1:before\":false},[\"content:\\\"\\ue82b\\\"\"]],[false,{\".revicon-left-open-mini:before\":false},[\"content:\\\"\\ue822\\\"\"]],[false,{\".revicon-right-open-mini:before\":false},[\"content:\\\"\\ue823\\\"\"]],[false,{\".revicon-left-open-big:before\":false},[\"content:\\\"\\ue824\\\"\"]],[false,{\".revicon-right-open-big:before\":false},[\"content:\\\"\\ue825\\\"\"]],[false,{\".revicon-left:before\":false},[\"content:\\\"\\ue836\\\"\"]],[false,{\".revicon-right:before\":false},[\"content:\\\"\\ue826\\\"\"]],[false,{\".revicon-ccw:before\":false},[\"content:\\\"\\ue808\\\"\"]],[false,{\".revicon-arrows-ccw:before\":false},[\"content:\\\"\\ue806\\\"\"]],[false,{\".revicon-palette:before\":false},[\"content:\\\"\\ue829\\\"\"]],[false,{\".revicon-list-add:before\":false},[\"content:\\\"\\ue80c\\\"\"]],[false,{\".revicon-doc:before\":false},[\"content:\\\"\\ue809\\\"\"]],[false,{\".revicon-left-open-outline:before\":false},[\"content:\\\"\\ue82e\\\"\"]],[false,{\".revicon-left-open-2:before\":false},[\"content:\\\"\\ue82c\\\"\"]],[false,{\".revicon-right-open-outline:before\":false},[\"content:\\\"\\ue82f\\\"\"]],[false,{\".revicon-right-open-2:before\":false},[\"content:\\\"\\ue82d\\\"\"]],[false,{\".revicon-equalizer:before\":false},[\"content:\\\"\\ue83a\\\"\"]],[false,{\".revicon-layers-alt:before\":false},[\"content:\\\"\\ue804\\\"\"]],[false,{\".revicon-popup:before\":false},[\"content:\\\"\\ue828\\\"\"]],[false,{\".tp-fullwidth-forcer\":false},[\"z-index:0\",\"pointer-events:none\"]],[false,{\"rs-module-wrap\":false},[\"visibility:hidden\"]],[false,{\"rs-module-wrap\":false,\"rs-module-wrap *\":false},[\"box-sizing:border-box\",\"-webkit-tap-highlight-color:rgba(0,0,0,0)\"]],[false,{\"rs-module-wrap\":false},[\"position:relative\",\"z-index:1\",\"width:100%\",\"display:block\"]],[false,{\".rs-fixedscrollon rs-module-wrap\":false},[\"z-index:1000\"]],[false,{\".rs-fixedscrollon rs-module-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0px\",\"left:0\"]],[false,{\".rs-stickyscrollon rs-module-wrap\":false},[\"top:0px\",\"z-index:1000\"]],[false,{\".rs-stickyscrollon rs-module-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"position:sticky\"]],[false,{\".rs-stickyscrollon:not(#_#_#_#_#_#_#_)\":false},[\"overflow:visible\"]],[false,{\"rs-fw-forcer\":false},[\"display:block\",\"width:100%\",\"pointer-events:none\"]],[false,{\"rs-module\":false},[\"position:relative\",\"overflow:hidden\",\"display:block\"]],[false,{\"rs-module.disableVerticalScroll\":false},[\"-ms-touch-action:pan-x\",\"touch-action:pan-x\"]],[false,{\"rs-pzimg-wrap\":false,\"rs-sbg-effectwrap\":false,\"rs-sbg\":false},[\"display:block\",\"pointer-events:none\"]],[false,{\"rs-sbg-effectwrap\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\"]],[false,{\"rs-carousel-wrap rs-column rs-layer amp-img\":false,\"rs-carousel-wrap rs-column rs-layer amp-anim\":false},[\"width:0px\",\"height:0px\"]],[false,{\"rs-sbg-px\":false,\"rs-sbg-wrap\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"z-index:0\",\"width:100%\",\"height:100%\",\"display:block\"]],[false,{\"a.rs-layer\":false,\"a.rs-layer:-webkit-any-link\":false},[\"text-decoration:none\"]],[false,{\"a[x-apple-data-detectors]:not(#_#_#_#_#_#_#_#_)\":false},[\"color:inherit\",\"text-decoration:none\",\"font-size:inherit\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:inherit\"]],[false,{\".entry-content rs-module a\":false,\"rs-module a\":false},[\"box-shadow:none\"]],[false,{\".rs-ov-hidden:not(#_#_#_#_#_#_#_)\":false},[\"overflow:hidden\"]],[false,{\".rs-forceoverflow:not(#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-module-wrap:not(#_#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-module:not(#_#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-slides:not(#_#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-slide:not(#_#_#_#_#_#_#_#_)\":false},[\"overflow:visible\"]],[false,{\".tp-simpleresponsive amp-img\":false,\".tp-simpleresponsive amp-anim\":false,\"rs-module amp-img\":false,\"rs-module amp-anim\":false},[\"transition:none\",\"margin:0px\",\"padding:0px\",\"border:none\"]],[false,{\".tp-simpleresponsive amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".tp-simpleresponsive amp-anim:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-img:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\"rs-module .no-slides-text\":false},[\"font-weight:bold\",\"text-align:center\",\"padding-top:80px\"]],[false,{\"rs-slides\":false,\"rs-slide\":false,\"rs-slide:before\":false},[\"position:absolute\",\"text-indent:0em\",\"top:0px\",\"left:0px\"]],[false,{\"rs-slide\":false,\"rs-slide:before\":false},[\"display:block\",\"visibility:hidden\"]],[false,{\".rs-layer .rs-untoggled-content\":false},[\"display:block\"]],[false,{\".rs-layer .rs-toggled-content\":false},[\"display:none\"]],[false,{\".rs-tc-active.rs-layer > .rs-toggled-content\":false},[\"display:block\"]],[false,{\".rs-tc-active.rs-layer > .rs-untoggled-content\":false},[\"display:none\"]],[false,{\".rs-layer-video\":false},[\"overflow:hidden\"]],[false,{\".rs_html5vidbasicstyles\":false},[\"position:relative\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"overflow:hidden\"]],[false,{\"rs-module rs-layer\":false,\"rs-module .rs-layer\":false},[\"opacity:0\",\"position:relative\",\"visibility:hidden\",\"display:block\",\"-webkit-tap-highlight-color:rgba(0,0,0,0)\",\"-moz-osx-font-smoothing:grayscale\",\"z-index:1\",\"font-display:swap\"]],[false,{\"rs-module rs-layer:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module .rs-layer:not(#_#_#_#_#_#_#_#_)\":false},[\"-webkit-font-smoothing:antialiased\"]],[false,{\"rs-layer-wrap\":false,\"rs-mask\":false,\"rs-module-wrap\":false,\"rs-module .rs-layer\":false,\"rs-module amp-img\":false,\"rs-module amp-anim\":false},[\"user-select:none\"]],[false,{\"rs-module rs-mask-wrap .rs-layer\":false,\"rs-module rs-mask-wrap *:last-child\":false,\".wpb_text_column rs-module rs-mask-wrap .rs-layer\":false,\".wpb_text_column rs-module rs-mask-wrap *:last-child\":false},[\"margin-bottom:0\"]],[false,{\".rs-svg svg\":false},[\"width:100%\",\"height:100%\",\"position:relative\",\"vertical-align:top\"]],[false,{\"rs-layer:not(.rs-wtbindex):not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer:not(.rs-wtbindex):not(#_#_#_#_#_#_#_)\":false,\"rs-alyer *:not(.rs-wtbindex):not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer *:not(.rs-wtbindex):not(#_#_#_#_#_#_#_)\":false},[\"outline:none\"]],[false,{\"rs-carousel-wrap\":false},[\"cursor:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/openhand.cur\\\"),move\"]],[false,{\"rs-carousel-wrap.dragged\":false},[\"cursor:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/closedhand.cur\\\"),move\"]],[false,{\"rs-carousel-wrap.noswipe\":false},[\"cursor:default\"]],[false,{\"rs-carousel-wrap\":false},[\"position:absolute\",\"overflow:hidden\",\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\"]],[false,{\"rs-carousel-space\":false},[\"clear:both\",\"display:block\",\"width:100%\",\"height:0px\",\"position:relative\"]],[false,{\".tp_inner_padding\":false},[\"box-sizing:border-box\"]],[false,{\".tp_inner_padding:not(#_#_#_#_#_#_#_)\":false},[\"max-height:none\"]],[false,{\".rs-layer.rs-selectable\":false},[\"user-select:text\"]],[false,{\"rs-px-mask\":false},[\"overflow:hidden\",\"display:block\",\"width:100%\",\"height:100%\",\"position:relative\"]],[false,{\"rs-module embed\":false,\"rs-module amp-iframe\":false,\"rs-module amp-google-document-embed\":false,\"rs-module amp-audio\":false,\"rs-module amp-video\":false,\"rs-module amp-youtube\":false},[\"border:none\"]],[false,{\"rs-module embed:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-iframe:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-google-document-embed:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-audio:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-video:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-youtube:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\"rs-bg-elem\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"z-index:0\",\"display:block\",\"pointer-events:none\"]],[false,{\".tp-blockmask\":false,\".tp-blockmask_in\":false,\".tp-blockmask_out\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"background:#fff\",\"z-index:1000\",\"transform:scaleX(0) scaleY(0)\"]],[false,{\"rs-zone\":false},[\"position:absolute\",\"width:100%\",\"left:0px\",\"box-sizing:border-box\",\"min-height:50px\",\"font-size:0px\",\"pointer-events:none\"]],[false,{\"rs-row-wrap\":false,\"rs-column\":false,\"rs-cbg-mask-wrap\":false},[\"display:block\",\"visibility:hidden\"]],[false,{\"rs-layer-wrap\":false,\"rs-parallax-wrap\":false,\"rs-loop-wrap\":false,\"rs-mask-wrap\":false},[\"display:block\"]],[false,{\"rs-column-wrap>rs-loop-wrap\":false},[\"z-index:1\"]],[false,{\"rs-layer-wrap\":false,\"rs-mask-wrap\":false,\"rs-cbg-mask-wrap\":false},[\"transform-style:flat\"]],[false,\"@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0){\"],[false,{\"rs-carousel-wrap rs-layer-wrap\":false,\"rs-carousel-wrap rs-loop-wrap\":false},[\"backface-visibility:hidden\",\"transform-style:preserve-3d\"]],[false,\"}\"],[false,{\".safarifix rs-layer-wrap\":false},[\"perspective:1000000\"]],[false,\"@-moz-document url-prefix(){\"],[false,{\"rs-layer-wrap\":false,\"rs-mask-wrap\":false,\"rs-cbg-mask-wrap\":false},[\"perspective:none\"]],[false,\"}\"],[false,{\"rs-mask-wrap\":false},[\"overflow:hidden\"]],[false,{\"rs-fullwidth-wrap\":false},[\"position:relative\",\"width:100%\",\"height:auto\",\"display:block\",\"overflow:visible\"]],[false,{\"rs-fullwidth-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\".rev_row_zone_top\":false},[\"top:0px\"]],[false,{\".rev_row_zone_bottom\":false},[\"bottom:0px\"]],[false,{\".rev_row_zone_middle\":false},[\"top:0px\"]],[false,{\"rs-column-wrap .rs-parallax-wrap\":false},[\"vertical-align:top\"]],[false,{\".rs-layer amp-img\":false,\".rs-layer amp-anim\":false,\"rs-layer amp-img\":false,\"rs-layer amp-anim\":false},[\"vertical-align:top\"]],[false,{\"rs-row\":false,\"rs-row.rs-layer\":false},[\"display:table\",\"position:relative\",\"table-layout:fixed\",\"box-sizing:border-box\",\"vertical-align:top\",\"height:auto\",\"font-size:0px\"]],[false,{\"rs-row:not(#_#_#_#_#_#_#_#_)\":false,\"rs-row.rs-layer:not(#_#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".rs-layer.rs-waction.iospermaccwait.permanenthidden:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"visibility:hidden\",\"pointer-events:none\"]],[false,{\"rs-column-wrap\":false},[\"display:table-cell\",\"position:relative\",\"vertical-align:top\",\"height:auto\",\"box-sizing:border-box\",\"font-size:0px\"]],[false,{\"rs-column\":false},[\"box-sizing:border-box\",\"display:block\",\"position:relative\"]],[false,{\"rs-column:not(#_#_#_#_#_#_#_#_)\":false},[\"width:100%\",\"height:auto\",\"white-space:normal\"]],[false,{\"rs-cbg-mask-wrap\":false},[\"position:absolute\",\"z-index:0\",\"box-sizing:border-box\"]],[false,{\"rs-column-wrap rs-cbg-mask-wrap\":false},[\"top:0px\",\"left:0px\",\"bottom:0px\",\"right:0px\"]],[false,{\"rs-column-bg\":false},[\"position:absolute\",\"z-index:0\",\"box-sizing:border-box\",\"width:100%\",\"height:100%\"]],[false,{\".rs-pelock *:not(#_#_#_#_#_#_#_)\":false},[\"pointer-events:none\"]],[false,{\"rs-column .rs-parallax-wrap\":false,\"rs-column rs-loop-wrap\":false,\"rs-column rs-mask-wrap\":false},[\"text-align:inherit\"]],[false,{\"rs-column rs-mask-wrap\":false},[\"display:inline-block\"]],[false,{\"rs-column .rs-parallax-wrap rs-loop-wrap\":false,\"rs-column .rs-parallax-wrap rs-mask-wrap\":false,\"rs-column .rs-parallax-wrap\":false},[\"line-height:0px\"]],[false,{\"rs-column .rs-parallax-wrap rs-loop-wrap:not(#_#_#_#_#_#_#_#_)\":false,\"rs-column .rs-parallax-wrap rs-mask-wrap:not(#_#_#_#_#_#_#_#_)\":false,\"rs-column .rs-parallax-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"position:relative\",\"left:auto\",\"top:auto\"]],[false,{\"rs-column .rs-parallax-wrap rs-loop-wrap\":false,\"rs-column .rs-parallax-wrap rs-mask-wrap\":false,\"rs-column .rs-parallax-wrap\":false,\"rs-column .rev_layer_in_column\":false},[\"vertical-align:top\"]],[false,{\".rev_break_columns:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".rev_break_columns rs-column-wrap.rs-parallax-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\",\"width:100%\"]],[false,{\".rev_break_columns rs-column-wrap.rs-parallax-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_#_)\":false,\".tp-forcenotvisible:not(#_#_#_#_#_#_#_)\":false,\".tp-hide-revslider:not(#_#_#_#_#_#_#_)\":false,\"rs-row-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_#_)\":false,\"rs-column-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer.rs-layer-hidden:not(#_#_#_#_#_#_#_)\":false,\".rs-layer-audio.rs-layer-hidden:not(#_#_#_#_#_#_#_)\":false,\".rs-parallax-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_)\":false},[\"visibility:hidden\",\"display:none\"]],[false,{\"a.rs-layer.rs-nointeraction >.div:not(#_#_#_#_#_#_#_#_)\":false,\"rs-layer.rs-nointeraction:not(a):not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer.rs-nointeraction:not(a):not(#_#_#_#_#_#_#_)\":false},[\"pointer-events:none\"]],[false,{\"rs-static-layers\":false},[\"position:absolute\",\"z-index:101\",\"top:0px\",\"left:0px\",\"display:block\",\"width:100%\",\"height:100%\",\"pointer-events:none\",\"overflow:hidden\"]],[false,{\"rs-static-layers.rs-stl-back\":false},[\"z-index:0\"]],[false,{\".rs-stl-visible:not(#_#_#_#_#_#_#_)\":false},[\"overflow:visible\"]],[false,{\".rs-layer rs-fcr\":false},[\"width:0\",\"height:0\",\"border-left:40px solid transparent\",\"border-right:0px solid transparent\",\"border-top:40px solid #00a8ff\",\"position:absolute\",\"right:100%\",\"top:0px\"]],[false,{\".rs-layer rs-fcrt\":false},[\"width:0\",\"height:0\",\"border-left:40px solid transparent\",\"border-right:0px solid transparent\",\"border-bottom:40px solid #00a8ff\",\"position:absolute\",\"right:100%\",\"top:0px\"]],[false,{\".rs-layer rs-bcr\":false},[\"width:0\",\"height:0\",\"border-left:0px solid transparent\",\"border-right:40px solid transparent\",\"border-bottom:40px solid #00a8ff\",\"position:absolute\",\"left:100%\",\"top:0px\"]],[false,{\".rs-layer rs-bcrt\":false},[\"width:0\",\"height:0\",\"border-left:0px solid transparent\",\"border-right:40px solid transparent\",\"border-top:40px solid #00a8ff\",\"position:absolute\",\"left:100%\",\"top:0px\"]],[false,{\".tp-layer-inner-rotation:not(#_#_#_#_#_#_#_)\":false},[\"position:relative\"]],[false,{\"amp-img.tp-slider-alternative-image\":false,\"amp-anim.tp-slider-alternative-image\":false},[\"width:100%\",\"height:auto\"]],[false,{\".noFilterClass:not(#_#_#_#_#_#_#_)\":false},[\"filter:none\"]],[false,{\"rs-bgvideo\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"z-index:0\",\"display:block\"]],[false,{\".rs-layer.rs-fsv\":false},[\"top:0px\",\"left:0px\",\"position:absolute\",\"width:100%\",\"height:100%\"]],[false,{\".rs-layer.rs-fsv amp-audio\":false,\".rs-layer.rs-fsv amp-video\":false,\".rs-layer.rs-fsv amp-youtube\":false,\".rs-layer.rs-fsv amp-iframe\":false,\".rs-layer.rs-fsv amp-iframe amp-audio\":false,\".rs-layer.rs-fsv amp-iframe amp-video\":false,\".rs-layer.rs-fsv amp-iframe amp-youtube\":false},[\"width:100%\",\"height:100%\"]],[false,{\".rs-fsv amp-video\":false,\".rs-fsv amp-youtube\":false},[\"background:#000\"]],[false,{\".fullcoveredvideo rs-poster\":false},[\"background-position:center center\",\"background-size:cover\",\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\"]],[false,{\".videoisplaying .html5vid rs-poster\":false},[\"display:none\"]],[false,{\".tp-video-play-button\":false},[\"background:#000\",\"background:rgba(0,0,0,.3)\",\"border-radius:5px\",\"position:absolute\",\"top:50%\",\"left:50%\",\"color:#fff\",\"z-index:3\",\"z-index:4\",\"margin-top:-25px\",\"margin-left:-25px\",\"text-align:center\",\"cursor:pointer\",\"width:50px\",\"height:50px\",\"box-sizing:border-box\",\"display:inline-block\",\"vertical-align:top\",\"opacity:0\"]],[false,{\".tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"line-height:50px\",\"transition:opacity 300ms ease-out\"]],[false,{\".rs-ISM .tp-video-play-button\":false},[\"opacity:1\",\"z-index:6\"]],[false,{\".rs-ISM .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"transition:none\"]],[false,{\".rs-audio .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".rs-layer .html5vid:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\",\"height:100%\"]],[false,{\".tp-video-play-button i\":false},[\"width:50px\",\"height:50px\",\"display:inline-block\",\"vertical-align:top\"]],[false,{\".tp-video-play-button i:not(#_#_#_#_#_#_#_#_)\":false},[\"text-align:center\",\"line-height:50px\",\"font-size:30px\"]],[false,{\".rs-layer:hover .tp-video-play-button\":false},[\"opacity:1\",\"display:block\",\"z-index:6\"]],[false,{\".rs-layer .tp-revstop\":false},[\"display:none\",\"width:15px\",\"transform:translateX(50%) translateY(50%)\",\"height:20px\"]],[false,{\".rs-layer .tp-revstop:not(#_#_#_#_#_#_#_)\":false},[\"border-right:5px solid #fff\",\"border-left:5px solid #fff\",\"margin-left:11px\",\"margin-top:5px\"]],[false,{\".videoisplaying .revicon-right-dir\":false},[\"display:none\"]],[false,{\".videoisplaying .tp-revstop\":false},[\"display:block\"]],[false,{\".videoisplaying .tp-video-play-button\":false},[\"display:none\"]],[false,{\".fullcoveredvideo .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".rs-fsv .rs-fsv amp-audio:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:contain\"]],[false,{\".rs-fsv .rs-fsv amp-video:not(#_#_#_#_#_#_#_#_)\":false,\".rs-fsv .rs-fsv amp-youtube:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:contain\"]],[false,{\".rs-layer-video .html5vid.hidefullscreen amp-video::-webkit-media-controls-fullscreen-button\":false,\".rs-layer-video .html5vid.hidefullscreen amp-youtube::-webkit-media-controls-fullscreen-button\":false},[\"display:none\"]],[false,\"@supports not (-ms-high-contrast:none){\"],[false,{\".rs-fsv .fullcoveredvideo amp-audio:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:cover\"]],[false,{\".rs-fsv .fullcoveredvideo amp-video:not(#_#_#_#_#_#_#_#_)\":false,\".rs-fsv .fullcoveredvideo amp-youtube:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:cover\"]],[false,\"}\"],[false,{\".rs-fullvideo-cover\":false},[\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\",\"position:absolute\",\"background:transparent\",\"z-index:5\"]],[false,{\".rs-nolc .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-video::-webkit-media-controls-start-playback-button:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-youtube::-webkit-media-controls-start-playback-button:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-video::-webkit-media-controls:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-youtube::-webkit-media-controls:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-audio::-webkit-media-controls:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".rs-audio .tp-video-controls:not(#_#_#_#_#_#_#_)\":false},[\"opacity:1\",\"visibility:visible\"]],[false,{\"rs-module h1.rs-layer\":false,\"rs-module h2.rs-layer\":false,\"rs-module h3.rs-layer\":false,\"rs-module h4.rs-layer\":false,\"rs-module h5.rs-layer\":false,\"rs-module h6.rs-layer\":false,\"rs-module div.rs-layer\":false,\"rs-module span.rs-layer\":false,\"rs-module p.rs-layer\":false},[\"margin:0\",\"padding:0\",\"margin-block-start:0\",\"margin-block-end:0\",\"margin-inline-start:0\",\"margin-inline-end:0\"]],[false,{\"rs-module h1.rs-layer:before\":false,\"rs-module h2.rs-layer:before\":false,\"rs-module h3.rs-layer:before\":false,\"rs-module h4.rs-layer:before\":false,\"rs-module h5.rs-layer:before\":false,\"rs-module h6.rs-layer:before\":false},[\"content:none\"]],[false,{\"rs-dotted\":false},[\"background-repeat:repeat\",\"width:100%\",\"height:100%\",\"position:absolute\",\"top:0px\",\"left:0px\",\"z-index:3\",\"display:block\",\"pointer-events:none\"]],[false,{\"rs-sbg-wrap rs-dotted\":false},[\"z-index:31\"]],[false,{\"rs-dotted.twoxtwo\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile.png\\\")\"]],[false,{\"rs-dotted.twoxtwowhite\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile_white.png\\\")\"]],[false,{\"rs-dotted.threexthree\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile_3x3.png\\\")\"]],[false,{\"rs-dotted.threexthreewhite\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile_3x3_white.png\\\")\"]],[false,{\".tp-shadowcover\":false},[\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\",\"background:#fff\",\"position:absolute\",\"z-index:-1\"]],[false,{\".tp-shadow1\":false},[\"box-shadow:0 10px 6px -6px rgba(0,0,0,.8)\"]],[false,{\".tp-shadow2:before\":false,\".tp-shadow2:after\":false,\".tp-shadow3:before\":false,\".tp-shadow4:after\":false},[\"z-index:-2\",\"position:absolute\",\"content:\\\"\\\"\",\"bottom:10px\",\"left:10px\",\"width:50%\",\"top:85%\",\"max-width:300px\",\"background:transparent\",\"box-shadow:0 15px 10px rgba(0,0,0,.8)\",\"transform:rotate(-3deg)\"]],[false,{\".tp-shadow2:after\":false,\".tp-shadow4:after\":false},[\"transform:rotate(3deg)\",\"right:10px\",\"left:auto\"]],[false,{\".tp-shadow5\":false},[\"position:relative\",\"box-shadow:0 1px 4px rgba(0,0,0,.3),0 0 40px rgba(0,0,0,.1) inset\"]],[false,{\".tp-shadow5:before\":false,\".tp-shadow5:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"z-index:-2\",\"box-shadow:0 0 25px 0px rgba(0,0,0,.6)\",\"top:30%\",\"bottom:0\",\"left:20px\",\"right:20px\",\"border-radius:100px\\/20px\"]],[false,{\".rev-btn\":false,\".rev-btn:visited\":false},[\"box-shadow:none\",\"box-sizing:border-box\",\"cursor:pointer\"]],[false,{\".rev-btn:not(#_#_#_#_#_#_#_)\":false,\".rev-btn:visited:not(#_#_#_#_#_#_#_)\":false},[\"outline:none\",\"text-decoration:none\"]],[false,{\".rev-btn.rev-uppercase\":false,\".rev-btn.rev-uppercase:visited\":false},[\"text-transform:uppercase\"]],[false,{\".rev-btn i\":false},[\"font-size:inherit\",\"font-weight:normal\",\"position:relative\",\"top:0px\",\"transition:opacity .2s ease-out,margin .2s ease-out\",\"margin-left:0px\",\"line-height:inherit\"]],[false,{\".rev-btn.rev-hiddenicon i\":false},[\"font-size:inherit\",\"font-weight:normal\",\"position:relative\",\"top:0px\",\"transition:opacity .2s ease-out,margin .2s ease-out\",\"opacity:0\"]],[false,{\".rev-btn.rev-hiddenicon i:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-left:0px\",\"width:0px\"]],[false,{\".rev-btn.rev-hiddenicon:hover i:not(#_#_#_#_#_#_#_#_)\":false},[\"opacity:1\",\"margin-left:10px\",\"width:auto\"]],[false,{\".rev-burger\":false},[\"position:relative\",\"box-sizing:border-box\",\"padding:22px 14px 22px 14px\",\"border-radius:50%\",\"border:1px solid rgba(51,51,51,.25)\",\"-webkit-tap-highlight-color:rgba(0,0,0,0)\",\"-webkit-tap-highlight-color:transparent\",\"cursor:pointer\"]],[false,{\".rev-burger span\":false},[\"display:block\",\"width:30px\",\"height:3px\",\"background:#333\",\"transition:.7s\",\"pointer-events:none\"]],[false,{\".rev-burger span:not(#_#_#_#_#_#_#_#_)\":false},[\"transform-style:flat\"]],[false,{\".rev-burger span:nth-child(2)\":false},[\"margin:3px 0\"]],[false,{\".quick_style_example_wrap .rev-burger:hover :first-child\":false,\"#dialog_addbutton .rev-burger:hover :first-child\":false,\".open .rev-burger :first-child\":false,\".open.rev-burger :first-child\":false},[\"transform:translateY(6px) rotate(-45deg)\"]],[false,{\".quick_style_example_wrap .rev-burger:hover :nth-child(2)\":false,\"#dialog_addbutton .rev-burger:hover :nth-child(2)\":false,\".open .rev-burger :nth-child(2)\":false,\".open.rev-burger :nth-child(2)\":false},[\"transform:rotate(-45deg)\",\"opacity:0\"]],[false,{\".quick_style_example_wrap .rev-burger:hover :last-child\":false,\"#dialog_addbutton .rev-burger:hover :last-child\":false,\".open .rev-burger :last-child\":false,\".open.rev-burger :last-child\":false},[\"transform:translateY(-6px) rotate(-135deg)\"]],[false,{\".rev-burger.revb-white\":false},[\"border:2px solid rgba(255,255,255,.2)\"]],[false,{\".rev-b-span-light span\":false,\".rev-burger.revb-white span\":false},[\"background:#fff\"]],[false,{\".rev-burger.revb-whitenoborder\":false},[\"border:0\"]],[false,{\".rev-burger.revb-whitenoborder span\":false},[\"background:#fff\"]],[false,{\".rev-burger.revb-darknoborder\":false},[\"border:0\"]],[false,{\".rev-b-span-dark span\":false,\".rev-burger.revb-darknoborder span\":false},[\"background:#333\"]],[false,{\".rev-burger.revb-whitefull\":false},[\"background:#fff\",\"border:none\"]],[false,{\".rev-burger.revb-whitefull span\":false},[\"background:#333\"]],[false,{\".rev-burger.revb-darkfull\":false},[\"background:#333\",\"border:none\"]],[false,{\".rev-burger.revb-darkfull span\":false},[\"background:#fff\"]],[true,\"@keyframes rev-ani-mouse{\"],[true,\"0%{opacity:1;top:29%}\"],[true,\"15%{opacity:1;top:70%}\"],[true,\"50%{opacity:0;top:70%}\"],[true,\"100%{opacity:0;top:29%}\"],[true,\"}\"],[false,{\".rev-scroll-btn\":false},[\"display:inline-block\",\"position:relative\",\"left:0\",\"right:0\",\"text-align:center\",\"cursor:pointer\",\"width:35px\",\"height:55px\",\"box-sizing:border-box\",\"border:3px solid white\",\"border-radius:23px\"]],[false,{\".rev-scroll-btn > *\":false},[\"display:inline-block\",\"line-height:18px\",\"font-size:13px\",\"font-weight:normal\",\"color:#7f8c8d\",\"color:#fff\",\"font-family:\\\"proxima-nova\\\",\\\"Helvetica Neue\\\",Helvetica,Arial,sans-serif\",\"letter-spacing:2px\"]],[false,{\".rev-scroll-btn > *:hover\":false,\".rev-scroll-btn > *:focus\":false,\".rev-scroll-btn > *.active\":false},[\"color:#fff\"]],[false,{\".rev-scroll-btn > *:hover\":false,\".rev-scroll-btn > *:focus\":false,\".rev-scroll-btn > *:active\":false,\".rev-scroll-btn > *.active\":false},[\"opacity:.8\"]],[false,{\".rev-scroll-btn.revs-fullwhite\":false},[\"background:#fff\"]],[false,{\".rev-scroll-btn.revs-fullwhite span\":false},[\"background:#333\"]],[false,{\".rev-scroll-btn.revs-fulldark\":false},[\"background:#333\",\"border:none\"]],[false,{\".rev-scroll-btn.revs-fulldark span\":false},[\"background:#fff\"]],[false,{\".rev-scroll-btn span\":false},[\"position:absolute\",\"display:block\",\"top:29%\",\"left:50%\",\"width:8px\",\"height:8px\",\"margin:-4px 0 0 -4px\",\"border-radius:50%\",\"animation:rev-ani-mouse 2.5s linear infinite\",\"background:#fff\"]],[false,{\".rev-scroll-btn.rev-b-span-dark\":false},[\"border-color:#333\"]],[false,{\".rev-scroll-btn.rev-b-span-dark span\":false,\".rev-scroll-btn.revs-dark span\":false},[\"background:#333\"]],[false,{\".rev-control-btn\":false},[\"position:relative\",\"display:inline-block\",\"z-index:5\",\"color:#fff\",\"font-size:20px\",\"line-height:60px\",\"font-weight:400\",\"font-style:normal\",\"font-family:Raleway\",\"text-decoration:none\",\"text-align:center\",\"background-color:#000\",\"background-color:rgba(0,0,0,.5)\",\"border-radius:50px\",\"text-shadow:none\",\"width:60px\",\"height:60px\",\"box-sizing:border-box\",\"cursor:pointer\"]],[false,{\".rev-cbutton-dark-sr\":false},[\"border-radius:3px\"]],[false,{\".rev-cbutton-light\":false},[\"color:#333\",\"background-color:rgba(255,255,255,.75)\"]],[false,{\".rev-cbutton-light-sr\":false},[\"color:#333\",\"border-radius:3px\",\"background-color:rgba(255,255,255,.75)\"]],[false,{\".rev-sbutton\":false},[\"line-height:37px\",\"width:37px\",\"height:37px\"]],[false,{\".rev-sbutton-blue\":false},[\"background-color:#3b5998\"]],[false,{\".rev-sbutton-lightblue\":false},[\"background-color:#00a0d1\"]],[false,{\".rev-sbutton-red\":false},[\"background-color:#dd4b39\"]],[false,{\"rs-progress\":false},[\"visibility:hidden\",\"position:absolute\",\"z-index:200\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-bar\":false,\".rs-progress-bar\":false},[\"display:block\",\"z-index:20\",\"box-sizing:border-box\",\"background-clip:content-box\",\"position:absolute\",\"line-height:0px\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-bgs\":false},[\"display:block\",\"z-index:15\",\"box-sizing:border-box\",\"width:100%\",\"position:absolute\",\"height:100%\",\"top:0px\",\"left:0px\"]],[false,{\"rs-progress-bg\":false},[\"display:block\",\"background-clip:content-box\",\"position:absolute\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-gap\":false},[\"display:block\",\"background-clip:content-box\",\"position:absolute\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-vis\":false},[\"display:block\",\"width:100%\",\"height:100%\",\"position:absolute\",\"top:0px\",\"left:0px\"]],[false,{\".rs-layer amp-img\":false,\".rs-layer amp-anim\":false},[\"background:transparent\",\"-ms-filter:\\\"progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)\\\"\",\"filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=rgba(0,255,255,1),endColorstr=rgba(0,255,255,1))\"]],[false,{\".rs-layer.slidelink\":false},[\"cursor:pointer\",\"width:100%\",\"height:100%\"]],[false,{\".rs-layer.slidelink a\":false},[\"width:100%\",\"height:100%\",\"display:block\"]],[false,{\".rs-layer.slidelink a div\":false},[\"width:3000px\",\"height:1500px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/coloredbg.png\\\") repeat\"]],[false,{\".rs-layer.slidelink a span\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/coloredbg.png\\\") repeat\",\"width:100%\",\"height:100%\",\"display:block\"]],[false,{\".rs-layer .rs-starring\":false},[\"display:inline-block\"]],[false,{\".rs-layer .rs-starring .star-rating\":false},[\"float:none\",\"display:inline-block\",\"vertical-align:top\"]],[false,{\".rs-layer .rs-starring .star-rating:not(#_#_#_#_#_#_#_)\":false},[\"color:#ffc321\"]],[false,{\".rs-layer .rs-starring .star-rating\":false,\".rs-layer .rs-starring-page .star-rating\":false},[\"position:relative\",\"height:1em\",\"width:5.4em\",\"font-family:star\"]],[false,{\".rs-layer .rs-starring .star-rating:not(#_#_#_#_#_#_#_)\":false,\".rs-layer .rs-starring-page .star-rating:not(#_#_#_#_#_#_#_)\":false},[\"font-size:1em\"]],[false,{\".rs-layer .rs-starring .star-rating:before\":false,\".rs-layer .rs-starring-page .star-rating:before\":false},[\"content:\\\"sssss\\\"\",\"color:#e0dadf\",\"float:left\",\"top:0\",\"left:0\",\"position:absolute\"]],[false,{\".rs-layer .rs-starring .star-rating span\":false},[\"overflow:hidden\",\"float:left\",\"top:0\",\"left:0\",\"position:absolute\",\"padding-top:1.5em\"]],[false,{\".rs-layer .rs-starring .star-rating span:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:1em\"]],[false,{\".rs-layer .rs-starring .star-rating span:before\":false},[\"content:\\\"SSSSS\\\"\",\"top:0\",\"position:absolute\",\"left:0\"]],[false,{\"rs-loader\":false},[\"top:50%\",\"left:50%\",\"z-index:10000\",\"position:absolute\"]],[false,{\"rs-loader.off:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"rs-loader.spinner0\":false},[\"width:40px\",\"height:40px\",\"background-color:#fff\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/loader.gif\\\")\",\"background-repeat:no-repeat\",\"background-position:center center\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"margin-top:-20px\",\"margin-left:-20px\",\"animation:tp-rotateplane 1.2s infinite ease-in-out\",\"border-radius:3px\"]],[false,{\"rs-loader.spinner1\":false},[\"width:40px\",\"height:40px\",\"background-color:#fff\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"margin-top:-20px\",\"margin-left:-20px\",\"animation:tp-rotateplane 1.2s infinite ease-in-out\",\"border-radius:3px\"]],[false,{\"rs-loader.spinner5\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/loader.gif\\\")\",\"background-repeat:no-repeat\",\"background-position:10px 10px\",\"background-color:#fff\",\"margin:-22px -22px\",\"width:44px\",\"height:44px\",\"border-radius:3px\"]],[true,\"@keyframes tp-rotateplane{\"],[true,\"0%{transform:perspective(120px) rotateX(0deg) rotateY(0deg)}\"],[true,\"50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0deg)}\"],[true,\"100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner2\":false},[\"width:40px\",\"height:40px\",\"margin-top:-20px\",\"margin-left:-20px\",\"background-color:#f00\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"border-radius:100%\",\"animation:tp-scaleout 1s infinite ease-in-out\"]],[true,\"@keyframes tp-scaleout{\"],[true,\"0%{transform:scale(0)}\"],[true,\"100%{transform:scale(1);opacity:0}\"],[true,\"}\"],[false,{\"rs-loader.spinner3\":false},[\"margin:-9px 0px 0px -35px\",\"width:70px\",\"text-align:center\"]],[false,{\"rs-loader.spinner3 .bounce1\":false,\"rs-loader.spinner3 .bounce2\":false,\"rs-loader.spinner3 .bounce3\":false},[\"width:18px\",\"height:18px\",\"background-color:#fff\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"border-radius:100%\",\"display:inline-block\",\"animation:tp-bouncedelay 1.4s infinite ease-in-out\",\"animation-fill-mode:both\"]],[false,{\"rs-loader.spinner3 .bounce1\":false},[\"animation-delay:-.32s\"]],[false,{\"rs-loader.spinner3 .bounce2\":false},[\"animation-delay:-.16s\"]],[true,\"@keyframes tp-bouncedelay{\"],[true,\"0%,80%,100%{transform:scale(0)}\"],[true,\"40%{transform:scale(1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner4\":false},[\"margin:-20px 0px 0px -20px\",\"width:40px\",\"height:40px\",\"text-align:center\",\"animation:tp-rotate 2s infinite linear\"]],[false,{\"rs-loader.spinner4 .dot1\":false,\"rs-loader.spinner4 .dot2\":false},[\"width:60%\",\"height:60%\",\"display:inline-block\",\"position:absolute\",\"top:0\",\"background-color:#fff\",\"border-radius:100%\",\"animation:tp-bounce 2s infinite ease-in-out\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\"]],[false,{\"rs-loader.spinner4 .dot2\":false},[\"top:auto\",\"bottom:0px\",\"animation-delay:-1s\"]],[true,\"@keyframes tp-rotate{\"],[true,\"100%{transform:rotate(360deg)}\"],[true,\"}@keyframes tp-bounce{\"],[true,\"0%,100%{transform:scale(0)}\"],[true,\"50%{transform:scale(1)}\"],[true,\"}\"],[false,{\"rs-layer amp-iframe\":false},[\"visibility:hidden\"]],[false,{\"rs-layer.rs-ii-o amp-iframe\":false},[\"visibility:visible\"]],[false,{\"rs-layer input[type=\\\"text\\\"]\":false,\"rs-layer input[type=\\\"email\\\"]\":false,\"rs-layer input[type=\\\"url\\\"]\":false,\"rs-layer input[type=\\\"password\\\"]\":false,\"rs-layer input[type=\\\"search\\\"]\":false,\"rs-layer input[type=\\\"number\\\"]\":false,\"rs-layer input[type=\\\"tel\\\"]\":false,\"rs-layer input[type=\\\"range\\\"]\":false,\"rs-layer input[type=\\\"date\\\"]\":false,\"rs-layer input[type=\\\"month\\\"]\":false,\"rs-layer input[type=\\\"week\\\"]\":false,\"rs-layer input[type=\\\"time\\\"]\":false,\"rs-layer input[type=\\\"datetime\\\"]\":false,\"rs-layer input[type=\\\"datetime-local\\\"]\":false},[\"display:inline-block\"]],[false,{\"rs-layer input::placeholder\":false},[\"vertical-align:middle\"]],[false,{\"rs-layer input::placeholder:not(#_#_#_#_#_#_#_#_)\":false},[\"line-height:inherit\"]],[false,{\"a.rs-layer\":false},[\"transition:none\"]],[false,{\"rs-thumbs-wrap\":false,\"rs-tabs-wrap\":false,\"rs-thumbs\":false,\"rs-thumb\":false,\"rs-tab\":false,\"rs-bullet\":false,\"rs-bullets\":false,\"rs-navmask\":false,\"rs-tabs\":false,\"rs-arrow\":false},[\"display:block\",\"pointer-events:all\"]],[false,{\".tp-thumbs.navbar\":false,\".tp-bullets.navbar\":false,\".tp-tabs.navbar\":false},[\"border:none\",\"min-height:0\",\"margin:0\",\"border-radius:0\"]],[false,{\".tp-tabs\":false,\".tp-thumbs\":false,\".tp-bullets\":false},[\"position:absolute\",\"display:block\",\"z-index:1000\",\"top:0px\",\"left:0px\"]],[false,{\".tp-tab\":false,\".tp-thumb\":false},[\"cursor:pointer\",\"position:absolute\",\"opacity:.5\",\"box-sizing:border-box\"]],[false,{\".tp-arr-imgholder\":false,\"rs-poster\":false,\".tp-thumb-image\":false,\".tp-tab-image\":false},[\"background-position:center center\",\"background-size:cover\",\"width:100%\",\"height:100%\",\"display:block\",\"position:absolute\",\"top:0px\",\"left:0px\"]],[false,{\"rs-poster\":false},[\"cursor:pointer\",\"z-index:3\"]],[false,{\".tp-tab.rs-touchhover\":false,\".tp-tab.selected\":false,\".tp-thumb.rs-touchhover\":false,\".tp-thumb.selected\":false},[\"opacity:1\"]],[false,{\".tp-tab-mask:not(#_#_#_#_#_#_#_)\":false,\".tp-thumb-mask:not(#_#_#_#_#_#_#_)\":false},[\"box-sizing:border-box\"]],[false,{\".tp-tabs:not(#_#_#_#_#_#_#_)\":false,\".tp-thumbs:not(#_#_#_#_#_#_#_)\":false},[\"box-sizing:content-box\"]],[false,{\".tp-bullet\":false},[\"width:15px\",\"height:15px\",\"position:absolute\",\"background:#fff\",\"background:rgba(255,255,255,.3)\",\"cursor:pointer\"]],[false,{\".tp-bullet.selected\":false,\".tp-bullet.rs-touchhover\":false},[\"background:#fff\"]],[false,{\".tparrows\":false},[\"cursor:pointer\",\"background:#000\",\"background:rgba(0,0,0,.5)\",\"width:40px\",\"height:40px\",\"position:absolute\",\"display:block\",\"z-index:1000\"]],[false,{\".tparrows.rs-touchhover\":false},[\"background:#000\"]],[false,{\".tparrows:before\":false},[\"font-family:\\\"revicons\\\"\",\"font-size:15px\",\"color:#fff\",\"display:block\",\"line-height:40px\",\"text-align:center\"]],[false,{\".tparrows.tp-leftarrow:before\":false},[\"content:\\\"\\ue824\\\"\"]],[false,{\".tparrows.tp-rightarrow:before\":false},[\"content:\\\"\\ue825\\\"\"]],[false,{\".rs-layer [class^=\\\"pe-7s-\\\"]:before\":false,\".rs-layer [class*=\\\" pe-7s-\\\"]:before\":false,\".rs-layer [class^=\\\"pe-7s-\\\"]\":false,\".rs-layer [class*=\\\" pe-7s-\\\"]\":false},[\"width:auto\",\"margin:0\",\"line-height:inherit\",\"box-sizing:inherit\"]],[false,{\"rs-pzimg-wrap\":false},[\"display:block\"]],[false,{\"body.rtl .rs-pzimg:not(#_#_#_#_#_#_#_#_)\":false},[\"left:0\"]],[false,{\".rs_fake_cube\":false},[\"transform-style:preserve-3d\"]],[false,{\".rs_fake_cube\":false,\".rs_fake_cube_wall\":false},[\"position:absolute\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"left:0px\",\"top:0px\",\"z-index:0\"]],[false,{\".rs-builder-mode rs-sbg-wrap canvas\":false,\"rs-sbg canvas\":false},[\"overflow:hidden\",\"z-index:5\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".dddwrappershadow\":false},[\"box-shadow:0 45px 100px rgba(0,0,0,.4)\"]],[false,{\".dddwrapper\":false},[\"transform-style:flat\",\"perspective:10000px\"]],[false,{\".rs_error_message_box\":false},[\"background:#111\",\"width:800px\",\"margin:40px auto\",\"padding:40px 20px\",\"text-align:center\",\"font-family:\\\"Open Sans\\\",sans-serif\"]],[false,{\".rs_error_message_oops\":false},[\"margin:0px 0px 20px\",\"line-height:60px\",\"font-size:34px\",\"color:#fff\"]],[false,{\".rs_error_message_content\":false},[\"margin:0px 0px 20px\",\"line-height:25px\",\"font-size:17px\",\"color:#fff\"]],[false,{\".rs_error_message_button\":false},[\"background:#333\",\"display:inline-block\",\"padding:10px 15px\",\"text-align:right\",\"border-radius:5px\",\"cursor:pointer\"]],[false,{\".rs_error_message_button:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\".rs_error_message_button:hover\":false},[\"background:#5e35b1\"]],[false,{\".hglayerinfo\":false},[\"position:fixed\",\"bottom:0px\",\"left:0px\",\"color:#fff\",\"font-size:12px\",\"line-height:20px\",\"font-weight:600\",\"background:rgba(0,0,0,.75)\",\"padding:5px 10px\",\"z-index:2000\",\"white-space:normal\"]],[false,{\".hginfo\":false},[\"position:absolute\",\"top:-2px\",\"left:-2px\",\"color:#e74c3c\",\"font-size:12px\",\"font-weight:600\",\"background:#000\",\"padding:2px 5px\"]],[false,{\".indebugmode .rs-layer:hover:not(#_#_#_#_#_#_#_)\":false},[\"border:1px dashed #c0392b\"]],[false,{\".helpgrid\":false},[\"border:2px dashed #c0392b\",\"position:absolute\",\"top:0px\",\"left:0px\",\"z-index:0\"]],[false,{\"#revsliderlogloglog\":false},[\"padding:15px\",\"color:#fff\",\"position:fixed\",\"top:0px\",\"left:0px\",\"width:200px\",\"height:150px\",\"background:rgba(0,0,0,.7)\",\"z-index:100000\",\"font-size:10px\",\"overflow:scroll\"]],[false,{\".aden\":false},[\"filter:hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2)\"]],[false,{\".aden::after\":false},[\"background:linear-gradient(to right,rgba(66,10,14,.2),transparent)\",\"mix-blend-mode:darken\"]],[false,{\".perpetua::after\":false,\".reyes::after\":false},[\"mix-blend-mode:soft-light\",\"opacity:.5\"]],[false,{\".inkwell\":false},[\"filter:sepia(.3) contrast(1.1) brightness(1.1) grayscale(1)\"]],[false,{\".perpetua::after\":false},[\"background:linear-gradient(to bottom,#005b9a,#e6c13d)\"]],[false,{\".reyes\":false},[\"filter:sepia(.22) brightness(1.1) contrast(.85) saturate(.75)\"]],[false,{\".reyes::after\":false},[\"background:#efcdad\"]],[false,{\".gingham\":false},[\"filter:brightness(1.05) hue-rotate(-10deg)\"]],[false,{\".gingham::after\":false},[\"background:linear-gradient(to right,rgba(66,10,14,.2),transparent)\",\"mix-blend-mode:darken\"]],[false,{\".toaster\":false},[\"filter:contrast(1.5) brightness(.9)\"]],[false,{\".toaster::after\":false},[\"background:radial-gradient(circle,#804e0f,#3b003b)\",\"mix-blend-mode:screen\"]],[false,{\".walden\":false},[\"filter:brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6)\"]],[false,{\".walden::after\":false},[\"background:#04c\",\"mix-blend-mode:screen\",\"opacity:.3\"]],[false,{\".hudson\":false},[\"filter:brightness(1.2) contrast(.9) saturate(1.1)\"]],[false,{\".hudson::after\":false},[\"background:radial-gradient(circle,#a6b1ff 50%,#342134)\",\"mix-blend-mode:multiply\",\"opacity:.5\"]],[false,{\".earlybird\":false},[\"filter:contrast(.9) sepia(.2)\"]],[false,{\".earlybird::after\":false},[\"background:radial-gradient(circle,#d0ba8e 20%,#360309 85%,#1d0210 100%)\",\"mix-blend-mode:overlay\"]],[false,{\".mayfair\":false},[\"filter:contrast(1.1) saturate(1.1)\"]],[false,{\".mayfair::after\":false},[\"background:radial-gradient(circle at 40% 40%,rgba(255,255,255,.8),rgba(255,200,200,.6),#111 60%)\",\"mix-blend-mode:overlay\",\"opacity:.4\"]],[false,{\".lofi\":false},[\"filter:saturate(1.1) contrast(1.5)\"]],[false,{\".lofi::after\":false},[\"background:radial-gradient(circle,transparent 70%,#222 150%)\",\"mix-blend-mode:multiply\"]],[false,{\"._1977\":false},[\"filter:contrast(1.1) brightness(1.1) saturate(1.3)\"]],[false,{\"._1977:after\":false},[\"background:rgba(243,106,188,.3)\",\"mix-blend-mode:screen\"]],[false,{\".brooklyn\":false},[\"filter:contrast(.9) brightness(1.1)\"]],[false,{\".brooklyn::after\":false},[\"background:radial-gradient(circle,rgba(168,223,193,.4) 70%,#c4b7c8)\",\"mix-blend-mode:overlay\"]],[false,{\".xpro2\":false},[\"filter:sepia(.3)\"]],[false,{\".xpro2::after\":false},[\"background:radial-gradient(circle,#e6e7e0 40%,rgba(43,42,161,.6) 110%)\",\"mix-blend-mode:color-burn\"]],[false,{\".nashville\":false},[\"filter:sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2)\"]],[false,{\".nashville::after\":false},[\"background:rgba(0,70,150,.4)\",\"mix-blend-mode:lighten\"]],[false,{\".nashville::before\":false},[\"background:rgba(247,176,153,.56)\",\"mix-blend-mode:darken\"]],[false,{\".lark\":false},[\"filter:contrast(.9)\"]],[false,{\".lark::after\":false},[\"background:rgba(242,242,242,.8)\",\"mix-blend-mode:darken\"]],[false,{\".lark::before\":false},[\"background:#22253f\",\"mix-blend-mode:color-dodge\"]],[false,{\".moon\":false},[\"filter:grayscale(1) contrast(1.1) brightness(1.1)\"]],[false,{\".moon::before\":false},[\"background:#a0a0a0\",\"mix-blend-mode:soft-light\"]],[false,{\".moon::after\":false},[\"background:#383838\",\"mix-blend-mode:lighten\"]],[false,{\".clarendon\":false},[\"filter:contrast(1.2) saturate(1.35)\"]],[false,{\".clarendon:before\":false},[\"background:rgba(127,187,227,.2)\",\"mix-blend-mode:overlay\"]],[false,{\".willow\":false},[\"filter:grayscale(.5) contrast(.95) brightness(.9)\"]],[false,{\".willow::before\":false},[\"background-image:radial-gradient(circle,40%,#d4a9af 55%,#000 150%)\",\"mix-blend-mode:overlay\"]],[false,{\".rise\":false},[\"filter:brightness(1.05) sepia(.2) contrast(.9) saturate(.9)\"]],[false,{\".rise::after\":false},[\"background:radial-gradient(circle,rgba(232,197,152,.8),transparent 90%)\",\"mix-blend-mode:overlay\",\"opacity:.6\"]],[false,{\".rise::before\":false},[\"background:radial-gradient(circle,rgba(236,205,169,.15) 55%,rgba(50,30,7,.4))\",\"mix-blend-mode:multiply\"]],[false,{\"._1977:after\":false,\"._1977:before\":false,\"rs-pzimg-wrap.aden:after\":false,\".aden:before\":false,\".brooklyn:after\":false,\".brooklyn:before\":false,\".clarendon:after\":false,\".clarendon:before\":false,\".earlybird:after\":false,\".earlybird:before\":false,\".gingham:after\":false,\".gingham:before\":false,\".hudson:after\":false,\".hudson:before\":false,\".inkwell:after\":false,\".inkwell:before\":false,\".lark:after\":false,\".lark:before\":false,\".lofi:after\":false,\".lofi:before\":false,\".mayfair:after\":false,\".mayfair:before\":false,\".moon:after\":false,\".moon:before\":false,\".nashville:after\":false,\".nashville:before\":false,\".perpetua:after\":false,\".perpetua:before\":false,\".reyes:after\":false,\".reyes:before\":false,\".rise:after\":false,\".rise:before\":false,\".slumber:after\":false,\".slumber:before\":false,\".toaster:after\":false,\".toaster:before\":false,\".walden:after\":false,\".walden:before\":false,\".willow:after\":false,\".willow:before\":false,\".xpro2:after\":false,\".xpro2:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"height:100%\",\"width:100%\",\"top:0\",\"left:0\",\"position:absolute\",\"pointer-events:none\"]],[false,{\"._1977\":false,\".aden\":false,\".brooklyn\":false,\".clarendon\":false,\".earlybird\":false,\".gingham\":false,\".hudson\":false,\".inkwell\":false,\".lark\":false,\".lofi\":false,\".mayfair\":false,\".moon\":false,\".nashville\":false,\".perpetua\":false,\".reyes\":false,\".rise\":false,\".slumber\":false,\".toaster\":false,\".walden\":false,\".willow\":false,\".xpro2\":false},[\"position:absolute\"]],[false,{\"._1977:before\":false,\".aden:before\":false,\".brooklyn:before\":false,\".clarendon:before\":false,\".earlybird:before\":false,\".gingham:before\":false,\".hudson:before\":false,\".inkwell:before\":false,\".lark:before\":false,\".lofi:before\":false,\".mayfair:before\":false,\".moon:before\":false,\".nashville:before\":false,\".perpetua:before\":false,\".reyes:before\":false,\".rise:before\":false,\".slumber:before\":false,\".toaster:before\":false,\".walden:before\":false,\".willow:before\":false,\".xpro2:before\":false},[\"z-index:30\"]],[false,{\"._1977:after\":false,\".aden:after\":false,\".brooklyn:after\":false,\".clarendon:after\":false,\".earlybird:after\":false,\".gingham:after\":false,\".hudson:after\":false,\".inkwell:after\":false,\".lark:after\":false,\".lofi:after\":false,\".mayfair:after\":false,\".moon:after\":false,\".nashville:after\":false,\".perpetua:after\":false,\".reyes:after\":false,\".rise:after\":false,\".slumber:after\":false,\".toaster:after\":false,\".walden:after\":false,\".willow:after\":false,\".xpro2:after\":false},[\"z-index:40\"]],[false,{\".slumber\":false},[\"filter:saturate(.66) brightness(1.05)\"]],[false,{\".slumber::after\":false},[\"background:rgba(125,105,24,.5)\",\"mix-blend-mode:soft-light\"]],[false,{\".slumber::before\":false},[\"background:rgba(69,41,12,.4)\",\"mix-blend-mode:lighten\"]],[false,{\".willow::after\":false},[\"background-color:#d8cdcb\",\"mix-blend-mode:color\"]],[false,\"@media not all and (min-resolution:.001dpcm){\"],[false,\"@supports (-webkit-appearance:none){\"],[false,{\".willow\":false},[\"filter:grayscale(1) contrast(.95) brightness(.9)\"]],[false,{\".willow::after\":false},[\"background-color:transparent\"]],[false,\"}\"],[false,\"}\"],[false,{\"rs-pzimg-wrap.perpetua:before\":false,\"rs-pzimg-wrap.perpetua:after\":false,\"rs-pzimg-wrap.nashville:before\":false,\"rs-pzimg-wrap.nashville:after\":false,\"rs-pzimg-wrap.xpro2:before\":false,\"rs-pzimg-wrap.xpro2:after\":false,\"rs-pzimg-wrap._1977:after\":false,\"rs-pzimg-wrap._1977:before\":false,\"rs-pzimg-wrap.aden:after\":false,\"rs-pzimg-wrap.aden:before\":false,\"rs-pzimg-wrap.brooklyn:after\":false,\"rs-pzimg-wrap.brooklyn:before\":false,\"rs-pzimg-wrap.clarendon:after\":false,\"rs-pzimg-wrap.clarendon:before\":false,\"rs-pzimg-wrap.earlybird:after\":false,\"rs-pzimg-wrap.earlybird:before\":false,\"rs-pzimg-wrap.gingham:after\":false,\"rs-pzimg-wrap.gingham:before\":false,\"rs-pzimg-wrap.hudson:after\":false,\"rs-pzimg-wrap.hudson:before\":false,\"rs-pzimg-wrap.inkwell:after\":false,\"rs-pzimg-wrap.inkwell:before\":false,\"rs-pzimg-wrap.lark:after\":false,\"rs-pzimg-wrap.lark:before\":false,\"rs-pzimg-wrap.lofi:after\":false,\"rs-pzimg-wrap.lofi:before\":false,\"rs-pzimg-wrap.mayfair:after\":false,\"rs-pzimg-wrap.mayfair:before\":false,\"rs-pzimg-wrap.moon:after\":false,\"rs-pzimg-wrap.moon:before\":false,\"rs-pzimg-wrap.reyes:after\":false,\"rs-pzimg-wrap.reyes:before\":false,\"rs-pzimg-wrap.rise:after\":false,\"rs-pzimg-wrap.rise:before\":false,\"rs-pzimg-wrap.slumber:after\":false,\"rs-pzimg-wrap.slumber:before\":false,\"rs-pzimg-wrap.toaster:after\":false,\"rs-pzimg-wrap.toaster:before\":false,\"rs-pzimg-wrap.walden:after\":false,\"rs-pzimg-wrap.walden:before\":false,\"rs-pzimg-wrap.willow:after\":false,\"rs-pzimg-wrap.willow:before\":false,\"rs-pzimg-wrap:before\":false,\"rs-pzimg-wrap:after\":false},[\"height:500%\",\"width:500%\"]],[false,{\"rs-loader.spinner6\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"display:inline-block\",\"-webkit-animation:rs-revealer-6 1.4s linear infinite\",\"animation:rs-revealer-6 1.4s linear infinite\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span\":false},[\"position:absolute\",\"vertical-align:top\",\"border-radius:100%\",\"display:inline-block\",\"width:8px\",\"height:8px\",\"margin-left:16px\",\"transform-origin:center 20px\",\"-webkit-transform-origin:center 20px\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(2)\":false},[\"transform:rotate(36deg)\",\"-webkit-transform:rotate(36deg)\",\"opacity:.1\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(3)\":false},[\"transform:rotate(72deg)\",\"-webkit-transform:rotate(72deg)\",\"opacity:.2\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(4)\":false},[\"transform:rotate(108deg)\",\"-webkit-transform:rotate(108deg)\",\"opacity:.3\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(5)\":false},[\"transform:rotate(144deg)\",\"-webkit-transform:rotate(144deg)\",\"opacity:.4\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(6)\":false},[\"transform:rotate(180deg)\",\"-webkit-transform:rotate(180deg)\",\"opacity:.5\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(7)\":false},[\"transform:rotate(216deg)\",\"-webkit-transform:rotate(216deg)\",\"opacity:.6\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(8)\":false},[\"transform:rotate(252deg)\",\"-webkit-transform:rotate(252deg)\",\"opacity:.7\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(9)\":false},[\"transform:rotate(288deg)\",\"-webkit-transform:rotate(288deg)\",\"opacity:.8\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(10)\":false},[\"transform:rotate(324deg)\",\"-webkit-transform:rotate(324deg)\",\"opacity:.9\"]],[true,\"@keyframes rs-revealer-6{\"],[true,\"from{transform:rotate(0)}\"],[true,\"to{transform:rotate(360deg)}\"],[true,\"}@-webkit-keyframes rs-revealer-6{\"],[true,\"from{-webkit-transform:rotate(0)}\"],[true,\"to{-webkit-transform:rotate(360deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner7\":false},[\"width:35px\",\"height:35px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner7 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"display:inline-block\",\"padding:0\",\"border-radius:100%\",\"border:2px solid\",\"-webkit-animation:rs-revealer-7 .8s linear infinite\",\"animation:rs-revealer-7 .8s linear infinite\"]],[true,\"@keyframes rs-revealer-7{\"],[true,\"from{transform:rotate(0)}\"],[true,\"to{transform:rotate(360deg)}\"],[true,\"}@-webkit-keyframes rs-revealer-7{\"],[true,\"from{-webkit-transform:rotate(0)}\"],[true,\"to{-webkit-transform:rotate(360deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner8\":false},[\"width:50px\",\"height:50px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner8 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"display:inline-block\",\"padding:0\",\"text-align:left\"]],[false,{\"rs-loader.spinner8 .rs-spinner-inner span\":false},[\"position:absolute\",\"display:inline-block\",\"width:100%\",\"height:100%\",\"border-radius:100%\",\"-webkit-animation:rs-revealer-8 1.6s linear infinite\",\"animation:rs-revealer-8 1.6s linear infinite\"]],[false,{\"rs-loader.spinner8 .rs-spinner-inner span:last-child\":false},[\"animation-delay:-.8s\",\"-webkit-animation-delay:-.8s\"]],[true,\"@keyframes rs-revealer-8{\"],[true,\"0%{transform:scale(0,0);opacity:.5}\"],[true,\"100%{transform:scale(1,1);opacity:0}\"],[true,\"}@-webkit-keyframes rs-revealer-8{\"],[true,\"0%{-webkit-transform:scale(0,0);opacity:.5}\"],[true,\"100%{-webkit-transform:scale(1,1);opacity:0}\"],[true,\"}\"],[false,{\"rs-loader.spinner9\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner9 .rs-spinner-inner span\":false},[\"display:block\",\"width:100%\",\"height:100%\",\"border-radius:50%\",\"opacity:.6\",\"position:absolute\",\"top:0\",\"left:0\",\"-webkit-animation:rs-revealer-9 2s infinite ease-in-out\",\"animation:rs-revealer-9 2s infinite ease-in-out\"]],[false,{\"rs-loader.spinner9 .rs-spinner-inner span:last-child\":false},[\"-webkit-animation-delay:-1s\",\"animation-delay:-1s\"]],[true,\"@-webkit-keyframes rs-revealer-9{\"],[true,\"0%,100%{-webkit-transform:scale(0)}\"],[true,\"50%{-webkit-transform:scale(1)}\"],[true,\"}@keyframes rs-revealer-9{\"],[true,\"0%,100%{transform:scale(0);-webkit-transform:scale(0)}\"],[true,\"50%{transform:scale(1);-webkit-transform:scale(1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner10\":false},[\"width:54px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"text-align:center\",\"font-size:10px\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span\":false},[\"display:block\",\"display:inline-block\",\"height:100%\",\"width:6px\",\"-webkit-animation:rs-revealer-10 1.2s infinite ease-in-out\",\"animation:rs-revealer-10 1.2s infinite ease-in-out\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(2)\":false},[\"-webkit-animation-delay:-1.1s\",\"animation-delay:-1.1s\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(3)\":false},[\"-webkit-animation-delay:-1s\",\"animation-delay:-1s\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(4)\":false},[\"-webkit-animation-delay:-.9s\",\"animation-delay:-.9s\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(5)\":false},[\"-webkit-animation-delay:-.8s\",\"animation-delay:-.8s\"]],[true,\"@-webkit-keyframes rs-revealer-10{\"],[true,\"0%,100%,40%{-webkit-transform:scaleY(.4)}\"],[true,\"20%{-webkit-transform:scaleY(1)}\"],[true,\"}@keyframes rs-revealer-10{\"],[true,\"0%,100%,40%{transform:scaleY(.4);-webkit-transform:scaleY(.4)}\"],[true,\"20%{transform:scaleY(1);-webkit-transform:scaleY(1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner11\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span\":false},[\"display:block\",\"width:33%\",\"height:33%\",\"background-color:#333\",\"float:left\",\"-webkit-animation:rs-revealer-11 1.3s infinite ease-in-out\",\"animation:rs-revealer-11 1.3s infinite ease-in-out\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(1)\":false},[\"-webkit-animation-delay:.2s\",\"animation-delay:.2s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(2)\":false},[\"-webkit-animation-delay:.3s\",\"animation-delay:.3s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(3)\":false},[\"-webkit-animation-delay:.4s\",\"animation-delay:.4s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(4)\":false},[\"-webkit-animation-delay:.1s\",\"animation-delay:.1s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(5)\":false},[\"-webkit-animation-delay:.2s\",\"animation-delay:.2s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(6)\":false},[\"-webkit-animation-delay:.3s\",\"animation-delay:.3s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(7)\":false},[\"-webkit-animation-delay:0s\",\"animation-delay:0s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(8)\":false},[\"-webkit-animation-delay:.1s\",\"animation-delay:.1s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(9)\":false},[\"-webkit-animation-delay:.2s\",\"animation-delay:.2s\"]],[true,\"@-webkit-keyframes rs-revealer-11{\"],[true,\"0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}\"],[true,\"35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}\"],[true,\"}@keyframes rs-revealer-11{\"],[true,\"0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}\"],[true,\"35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner12\":false},[\"width:35px\",\"height:35px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner12 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"-webkit-animation:rs-revealer-12 1s infinite linear\",\"animation:rs-revealer-12 1s infinite linear\"]],[true,\"@-webkit-keyframes rs-revealer-12{\"],[true,\"0%{-webkit-transform:rotate(0)}\"],[true,\"100%{-webkit-transform:rotate(360deg)}\"],[true,\"}@keyframes rs-revealer-12{\"],[true,\"0%{transform:rotate(0)}\"],[true,\"100%{transform:rotate(360deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner13\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span\":false},[\"display:block\",\"width:40%\",\"height:40%\",\"position:absolute\",\"border-radius:50%\",\"-webkit-animation:rs-revealer-13 2s ease infinite\",\"animation:rs-revealer-13 2s ease infinite\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span:nth-child(1)\":false},[\"animation-delay:-1.5s\",\"-webkit-animation-delay:-1.5s\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span:nth-child(2)\":false},[\"animation-delay:-1s\",\"-webkit-animation-delay:-1s\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span:nth-child(3)\":false},[\"animation-delay:-.5s\",\"-webkit-animation-delay:-.5s\"]],[true,\"@keyframes rs-revealer-13{\"],[true,\"0%,100%{transform:translate(0)}\"],[true,\"25%{transform:translate(160%)}\"],[true,\"50%{transform:translate(160%,160%)}\"],[true,\"75%{transform:translate(0,160%)}\"],[true,\"}@-webkit-keyframes rs-revealer-13{\"],[true,\"0%,100%{-webkit-transform:translate(0)}\"],[true,\"25%{-webkit-transform:translate(160%)}\"],[true,\"50%{-webkit-transform:translate(160%,160%)}\"],[true,\"75%{-webkit-transform:translate(0,160%)}\"],[true,\"}\"],[false,{\"rs-loader.spinner14\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"animation:rs-revealer-14 1s infinite linear\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span\":false},[\"display:block\",\"position:absolute\",\"top:50%\",\"left:50%\",\"width:16px\",\"height:16px\",\"border-radius:50%\",\"margin:-8px\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(1)\":false},[\"-webkit-animation:rs-revealer-14-1 2s infinite\",\"animation:rs-revealer-14-1 2s infinite\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(2)\":false},[\"-webkit-animation:rs-revealer-14-2 2s infinite\",\"animation:rs-revealer-14-2 2s infinite\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(3)\":false},[\"-webkit-animation:rs-revealer-14-3 2s infinite\",\"animation:rs-revealer-14-3 2s infinite\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(4)\":false},[\"-webkit-animation:rs-revealer-14-4 2s infinite\",\"animation:rs-revealer-14-4 2s infinite\"]],[true,\"@-webkit-keyframes rs-revealer-14-1{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(80%,80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(80%,80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@-webkit-keyframes rs-revealer-14-2{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(80%,-80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(80%,-80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@-webkit-keyframes rs-revealer-14-3{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(-80%,-80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(-80%,-80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@-webkit-keyframes rs-revealer-14-4{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(-80%,80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(-80%,80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-1{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(80%,80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(80%,80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-2{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(80%,-80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(80%,-80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-3{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(-80%,-80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(-80%,-80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-4{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(-80%,80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(-80%,80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}\"],[false,{\"rs-loader.spinner15\":false},[\"width:40px\",\"height:40px\",\"margin-top:-4px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner15 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\"]],[false,{\"rs-loader.spinner15 .rs-spinner-inner span\":false},[\"display:block\",\"width:20px\",\"height:20px\",\"position:absolute\",\"top:0\",\"left:0\",\"-webkit-animation:rs-revealer-15 1.8s infinite ease-in-out\",\"animation:rs-revealer-15 1.8s infinite ease-in-out\"]],[false,{\"rs-loader.spinner15 .rs-spinner-inner:last-child\":false},[\"-webkit-animation-delay:-.9s\",\"animation-delay:-.9s\"]],[true,\"@-webkit-keyframes rs-revealer-15{\"],[true,\"25%{-webkit-transform:translateX(30px) rotate(-90deg) scale(.5)}\"],[true,\"50%{-webkit-transform:translateX(30px) translateY(30px) rotate(-180deg)}\"],[true,\"75%{-webkit-transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5)}\"],[true,\"100%{-webkit-transform:rotate(-360deg)}\"],[true,\"}@keyframes rs-revealer-15{\"],[true,\"25%{transform:translateX(30px) rotate(-90deg) scale(.5);-webkit-transform:translateX(30px) rotate(-90deg) scale(.5)}\"],[true,\"50%{transform:translateX(30px) translateY(30px) rotate(-179deg);-webkit-transform:translateX(30px) translateY(30px) rotate(-179deg)}\"],[true,\"50.1%{transform:translateX(30px) translateY(30px) rotate(-180deg);-webkit-transform:translateX(30px) translateY(30px) rotate(-180deg)}\"],[true,\"75%{transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5);-webkit-transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5)}\"],[true,\"100%{transform:rotate(-360deg);-webkit-transform:rotate(-360deg)}\"],[true,\"}\"],[false,{\".bgcanvas\":false},[\"display:none\",\"position:absolute\",\"overflow:hidden\"]],[false,{\".RSscrollbar-measure\":false},[\"width:100px\",\"height:100px\",\"overflow:scroll\",\"position:absolute\",\"top:-9999px\"]],[false,{\".avada-has-rev-slider-styles .rev_slider_wrapper\":false},[\"transform:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":14,\"final_size\":0,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"rs-plugin-settings-inline-css\",\"type\":\"text\\/css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":134,\"function\":\"RevSliderFront::add_inline_css\",\"hook\":\"wp_footer\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"#rs-demo-id {}\",\"handle\":\"rs-plugin-settings\"}],\"priority\":70,\"hash\":\"d751713988987e9331980363e24189ce\",\"parse_time\":0.00037407875061035156,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":129,\"final_size\":128,\"element\":{\"name\":\"div\",\"attributes\":{\"class\":\"col-lg-6 blog-title-main amp-wp-7597b7e\",\"data-amp-original-style\":\"background-image: url(\'https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2020\\/01\\/blogimg.jpg\')\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"d838c488549c8fd1e7d64f3251ccc91e\",\"parse_time\":0.0009009838104248047,\"shake_time\":5.9604644775390625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-7597b7e:not(#_#_#_#_#_)\":true},[\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2020\\/01\\/blogimg.jpg\\\")\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":177,\"final_size\":175,\"element\":{\"name\":\"div\",\"attributes\":{\"class\":\"col-lg-6 blog-main amp-wp-946752b\",\"data-amp-original-style\":\"background-image: url(\'https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2022\\/06\\/How-Translucent-is-changing-the-Cloud-Native-industry.png\');\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"371b89a535e3765715c09653c2df1640\",\"parse_time\":0.0005581378936767578,\"shake_time\":3.0994415283203125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-946752b:not(#_#_#_#_#_)\":true},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2022\\/06\\/How-Translucent-is-changing-the-Cloud-Native-industry.png\\\")\"]]],\"included\":true}]'); INSERT INTO `wp_postmeta` VALUES (169801,4801,'_amp_validated_environment','a:3:{s:5:\"theme\";a:1:{s:11:\"translucent\";s:3:\"1.0\";}s:7:\"plugins\";a:32:{s:7:\"404page\";s:6:\"11.3.1\";s:26:\"advanced-custom-fields-pro\";s:6:\"5.12.2\";s:16:\"tinymce-advanced\";s:5:\"5.6.0\";s:3:\"amp\";s:5:\"2.3.0\";s:17:\"code-syntax-block\";s:5:\"3.1.1\";s:14:\"contact-form-7\";s:5:\"5.5.3\";s:10:\"duplicator\";s:5:\"1.5.0\";s:25:\"embed-calendly-scheduling\";s:3:\"3.0\";s:18:\"youtube-embed-plus\";s:6:\"14.1.2\";s:13:\"header-footer\";s:5:\"3.2.5\";s:6:\"iframe\";s:3:\"4.5\";s:7:\"imagify\";s:3:\"2.0\";s:15:\"cf7-hubspot-pro\";s:5:\"1.2.1\";s:13:\"popup-builder\";s:6:\"4.1.13\";s:34:\"post-tags-and-categories-for-pages\";s:5:\"1.4.1\";s:8:\"raw-html\";s:5:\"1.6.3\";s:11:\"redirection\";s:5:\"5.3.2\";s:11:\"redis-cache\";s:5:\"2.2.0\";s:26:\"reveal-ids-for-wp-admin-25\";s:5:\"1.5.4\";s:34:\"sendgrid-email-delivery-simplified\";s:6:\"1.11.8\";s:9:\"revslider\";s:6:\"6.5.23\";s:14:\"social-warfare\";s:5:\"4.3.0\";s:26:\"ssl-insecure-content-fixer\";s:5:\"2.7.2\";s:11:\"updraftplus\";s:7:\"1.22.19\";s:8:\"wpdiscuz\";s:5:\"7.4.2\";s:15:\"wp-file-manager\";s:5:\"7.1.6\";s:14:\"wp-google-maps\";s:6:\"9.0.10\";s:5:\"wpide\";s:5:\"3.4.1\";s:23:\"wp-phpmyadmin-extension\";s:7:\"5.2.0.7\";s:14:\"duplicate-post\";s:3:\"4.4\";s:13:\"wordpress-seo\";s:4:\"19.1\";s:21:\"wordpress-seo-premium\";s:4:\"17.7\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:8:\"standard\";}}'),(169802,4802,'_amp_validated_environment','a:3:{s:5:\"theme\";a:1:{s:11:\"translucent\";s:3:\"1.0\";}s:7:\"plugins\";a:32:{s:7:\"404page\";s:6:\"11.3.1\";s:26:\"advanced-custom-fields-pro\";s:6:\"5.12.2\";s:16:\"tinymce-advanced\";s:5:\"5.6.0\";s:3:\"amp\";s:5:\"2.3.0\";s:17:\"code-syntax-block\";s:5:\"3.1.1\";s:14:\"contact-form-7\";s:5:\"5.5.3\";s:10:\"duplicator\";s:5:\"1.5.0\";s:25:\"embed-calendly-scheduling\";s:3:\"3.0\";s:18:\"youtube-embed-plus\";s:6:\"14.1.2\";s:13:\"header-footer\";s:5:\"3.2.5\";s:6:\"iframe\";s:3:\"4.5\";s:7:\"imagify\";s:3:\"2.0\";s:15:\"cf7-hubspot-pro\";s:5:\"1.2.1\";s:13:\"popup-builder\";s:6:\"4.1.13\";s:34:\"post-tags-and-categories-for-pages\";s:5:\"1.4.1\";s:8:\"raw-html\";s:5:\"1.6.3\";s:11:\"redirection\";s:5:\"5.3.2\";s:11:\"redis-cache\";s:5:\"2.2.0\";s:26:\"reveal-ids-for-wp-admin-25\";s:5:\"1.5.4\";s:34:\"sendgrid-email-delivery-simplified\";s:6:\"1.11.8\";s:9:\"revslider\";s:6:\"6.5.23\";s:14:\"social-warfare\";s:5:\"4.3.0\";s:26:\"ssl-insecure-content-fixer\";s:5:\"2.7.2\";s:11:\"updraftplus\";s:7:\"1.22.19\";s:8:\"wpdiscuz\";s:5:\"7.4.2\";s:15:\"wp-file-manager\";s:5:\"7.1.6\";s:14:\"wp-google-maps\";s:6:\"9.0.10\";s:5:\"wpide\";s:5:\"3.4.1\";s:23:\"wp-phpmyadmin-extension\";s:7:\"5.2.0.7\";s:14:\"duplicate-post\";s:3:\"4.4\";s:13:\"wordpress-seo\";s:4:\"19.1\";s:21:\"wordpress-seo-premium\";s:4:\"17.7\";}s:7:\"options\";a:5:{s:23:\"all_templates_supported\";b:1;s:12:\"reader_theme\";s:6:\"legacy\";s:20:\"supported_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"supported_templates\";a:1:{i:0;s:11:\"is_singular\";}s:13:\"theme_support\";s:8:\"standard\";}}'); INSERT INTO `wp_postmeta` VALUES (169803,4801,'_amp_stylesheets','[{\"group\":\"amp-custom\",\"original_size\":140936,\"final_size\":9172,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/bootstrap.min.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"834eec339f2b2b8368c90e8ee4e0c6d0\",\"parse_time\":1.5320749282836914,\"shake_time\":0.06979203224182129,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\":root\":true},[\"--blue:#007bff\",\"--indigo:#6610f2\",\"--purple:#6f42c1\",\"--pink:#e83e8c\",\"--red:#dc3545\",\"--orange:#fd7e14\",\"--yellow:#ffc107\",\"--green:#28a745\",\"--teal:#20c997\",\"--cyan:#17a2b8\",\"--white:#fff\",\"--gray:#6c757d\",\"--gray-dark:#343a40\",\"--primary:#007bff\",\"--secondary:#6c757d\",\"--success:#28a745\",\"--info:#17a2b8\",\"--warning:#ffc107\",\"--danger:#dc3545\",\"--light:#f8f9fa\",\"--dark:#343a40\",\"--breakpoint-xs:0\",\"--breakpoint-sm:576px\",\"--breakpoint-md:768px\",\"--breakpoint-lg:992px\",\"--breakpoint-xl:1200px\",\"--font-family-sans-serif:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,\\\"Liberation Mono\\\",\\\"Courier New\\\",monospace\"]],[true,{\"*\":true,\"::after\":true,\"::before\":true},[\"box-sizing:border-box\"]],[true,{\"html\":true},[\"font-family:sans-serif\",\"line-height:1.15\",\"-webkit-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\",\"-ms-overflow-style:scrollbar\",\"-webkit-tap-highlight-color:transparent\"]],[true,{\"article\":false,\"aside\":false,\"figcaption\":false,\"figure\":false,\"footer\":true,\"header\":true,\"hgroup\":false,\"main\":false,\"nav\":true,\"section\":true},[\"display:block\"]],[true,{\"body\":true},[\"margin:0\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"font-size:1rem\",\"font-weight:400\",\"line-height:1.5\",\"color:#212529\",\"text-align:left\",\"background-color:#fff\"]],[false,{\"[tabindex=\\\"-1\\\"]:focus:not(#_#_#_#_#_#_#_)\":false},[\"outline:0\"]],[false,{\"hr\":false},[\"box-sizing:content-box\",\"height:0\",\"overflow:visible\"]],[true,{\"h1\":true,\"h2\":true,\"h3\":true,\"h4\":true,\"h5\":true,\"h6\":true},[\"margin-top:0\",\"margin-bottom:.5rem\"]],[true,{\"p\":true},[\"margin-top:0\",\"margin-bottom:1rem\"]],[false,{\"abbr[data-original-title]\":false,\"abbr[title]\":false},[\"text-decoration:underline\",\"text-decoration:underline dotted\",\"-webkit-text-decoration:underline dotted\",\"cursor:help\",\"border-bottom:0\"]],[false,{\"address\":false},[\"margin-bottom:1rem\",\"font-style:normal\",\"line-height:inherit\"]],[true,{\"dl\":false,\"ol\":false,\"ul\":true},[\"margin-top:0\",\"margin-bottom:1rem\"]],[true,{\"ol ol\":false,\"ol ul\":false,\"ul ol\":false,\"ul ul\":true},[\"margin-bottom:0\"]],[false,{\"dt\":false},[\"font-weight:700\"]],[false,{\"dd\":false},[\"margin-bottom:.5rem\",\"margin-left:0\"]],[false,{\"blockquote\":false},[\"margin:0 0 1rem\"]],[false,{\"dfn\":false},[\"font-style:italic\"]],[true,{\"b\":false,\"strong\":true},[\"font-weight:bolder\"]],[true,{\"small\":true},[\"font-size:80%\"]],[false,{\"sub\":false,\"sup\":false},[\"position:relative\",\"font-size:75%\",\"line-height:0\",\"vertical-align:baseline\"]],[false,{\"sub\":false},[\"bottom:-.25em\"]],[false,{\"sup\":false},[\"top:-.5em\"]],[true,{\"a\":true},[\"color:#007bff\",\"text-decoration:none\",\"background-color:transparent\",\"-webkit-text-decoration-skip:objects\"]],[true,{\"a:hover\":true},[\"color:#0056b3\",\"text-decoration:underline\"]],[true,{\"a:not([href]):not([tabindex])\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"a:not([href]):not([tabindex]):focus\":true,\"a:not([href]):not([tabindex]):hover\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"a:not([href]):not([tabindex]):focus\":true},[\"outline:0\"]],[false,{\"code\":false,\"kbd\":false,\"pre\":false,\"samp\":false},[\"font-family:SFMono-Regular,Menlo,Monaco,Consolas,\\\"Liberation Mono\\\",\\\"Courier New\\\",monospace\",\"font-size:1em\"]],[false,{\"pre\":false},[\"margin-top:0\",\"margin-bottom:1rem\",\"overflow:auto\",\"-ms-overflow-style:scrollbar\"]],[false,{\"figure\":false},[\"margin:0 0 1rem\"]],[true,{\"amp-img\":true,\"amp-anim\":false},[\"vertical-align:middle\",\"border-style:none\"]],[false,{\"svg\":false},[\"overflow:hidden\",\"vertical-align:middle\"]],[false,{\"table\":false},[\"border-collapse:collapse\"]],[false,{\"caption\":false},[\"padding-top:.75rem\",\"padding-bottom:.75rem\",\"color:#6c757d\",\"text-align:left\",\"caption-side:bottom\"]],[false,{\"th\":false},[\"text-align:inherit\"]],[true,{\"label\":true},[\"display:inline-block\",\"margin-bottom:.5rem\"]],[true,{\"button\":true},[\"border-radius:0\"]],[true,{\"button:focus\":true},[\"outline:1px dotted\",\"outline:5px auto -webkit-focus-ring-color\"]],[true,{\"button\":true,\"input\":true,\"optgroup\":false,\"select\":false,\"textarea\":true},[\"margin:0\",\"font-family:inherit\",\"font-size:inherit\",\"line-height:inherit\"]],[true,{\"button\":true,\"input\":true},[\"overflow:visible\"]],[true,{\"button\":true,\"select\":false},[\"text-transform:none\"]],[true,{\"[type=reset]\":true,\"[type=submit]\":true,\"button\":true,\"html [type=button]\":true},[\"-webkit-appearance:button\"]],[true,{\"[type=button]::-moz-focus-inner\":true,\"[type=reset]::-moz-focus-inner\":true,\"[type=submit]::-moz-focus-inner\":true,\"button::-moz-focus-inner\":true},[\"padding:0\",\"border-style:none\"]],[true,{\"input[type=checkbox]\":true,\"input[type=radio]\":true},[\"box-sizing:border-box\",\"padding:0\"]],[true,{\"input[type=date]\":true,\"input[type=datetime-local]\":true,\"input[type=month]\":true,\"input[type=time]\":true},[\"-webkit-appearance:listbox\"]],[true,{\"textarea\":true},[\"overflow:auto\",\"resize:vertical\"]],[false,{\"fieldset\":false},[\"min-width:0\",\"padding:0\",\"margin:0\",\"border:0\"]],[false,{\"legend\":false},[\"display:block\",\"width:100%\",\"max-width:100%\",\"padding:0\",\"margin-bottom:.5rem\",\"font-size:1.5rem\",\"line-height:inherit\",\"color:inherit\",\"white-space:normal\"]],[false,{\"progress\":false},[\"vertical-align:baseline\"]],[true,{\"[type=number]::-webkit-inner-spin-button\":true,\"[type=number]::-webkit-outer-spin-button\":true},[\"height:auto\"]],[true,{\"[type=search]\":true},[\"outline-offset:-2px\",\"-webkit-appearance:none\"]],[true,{\"[type=search]::-webkit-search-cancel-button\":true,\"[type=search]::-webkit-search-decoration\":true},[\"-webkit-appearance:none\"]],[true,{\"::-webkit-file-upload-button\":true},[\"font:inherit\",\"-webkit-appearance:button\"]],[false,{\"output\":false},[\"display:inline-block\"]],[false,{\"summary\":false},[\"display:list-item\",\"cursor:pointer\"]],[true,{\"template\":true},[\"display:none\"]],[true,{\"[hidden]:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".h1\":false,\".h2\":false,\".h3\":false,\".h4\":false,\".h5\":false,\".h6\":false,\"h1\":true,\"h2\":true,\"h3\":true,\"h4\":true,\"h5\":true,\"h6\":true},[\"margin-bottom:.5rem\",\"font-family:inherit\",\"font-weight:500\",\"line-height:1.2\",\"color:inherit\"]],[true,{\".h1\":false,\"h1\":true},[\"font-size:2.5rem\"]],[true,{\".h2\":false,\"h2\":true},[\"font-size:2rem\"]],[true,{\".h3\":false,\"h3\":true},[\"font-size:1.75rem\"]],[true,{\".h4\":false,\"h4\":true},[\"font-size:1.5rem\"]],[true,{\".h5\":false,\"h5\":true},[\"font-size:1.25rem\"]],[true,{\".h6\":false,\"h6\":true},[\"font-size:1rem\"]],[false,{\".lead\":false},[\"font-size:1.25rem\",\"font-weight:300\"]],[false,{\".display-1\":false},[\"font-size:6rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\".display-2\":false},[\"font-size:5.5rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\".display-3\":false},[\"font-size:4.5rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\".display-4\":false},[\"font-size:3.5rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\"hr\":false},[\"margin-top:1rem\",\"margin-bottom:1rem\",\"border:0\",\"border-top:1px solid rgba(0,0,0,.1)\"]],[true,{\".small\":false,\"small\":true},[\"font-size:80%\",\"font-weight:400\"]],[false,{\".mark\":false,\"mark\":false},[\"padding:.2em\",\"background-color:#fcf8e3\"]],[false,{\".list-unstyled\":false},[\"padding-left:0\",\"list-style:none\"]],[false,{\".list-inline\":false},[\"padding-left:0\",\"list-style:none\"]],[false,{\".list-inline-item\":false},[\"display:inline-block\"]],[false,{\".list-inline-item:not(:last-child)\":false},[\"margin-right:.5rem\"]],[false,{\".initialism\":false},[\"font-size:90%\",\"text-transform:uppercase\"]],[false,{\".blockquote\":false},[\"margin-bottom:1rem\",\"font-size:1.25rem\"]],[false,{\".blockquote-footer\":false},[\"display:block\",\"font-size:80%\",\"color:#6c757d\"]],[false,{\".blockquote-footer::before\":false},[\"content:\\\"\\u2014\\u00a0\\\"\"]],[false,{\".img-fluid\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".img-thumbnail\":false},[\"padding:.25rem\",\"background-color:#fff\",\"border:1px solid #dee2e6\",\"border-radius:.25rem\",\"max-width:100%\",\"height:auto\"]],[false,{\".figure\":false},[\"display:inline-block\"]],[false,{\".figure-img\":false},[\"margin-bottom:.5rem\",\"line-height:1\"]],[false,{\".figure-caption\":false},[\"font-size:90%\",\"color:#6c757d\"]],[false,{\"code\":false},[\"font-size:87.5%\",\"color:#e83e8c\",\"word-break:break-word\"]],[false,{\"a>code\":false},[\"color:inherit\"]],[false,{\"kbd\":false},[\"padding:.2rem .4rem\",\"font-size:87.5%\",\"color:#fff\",\"background-color:#212529\",\"border-radius:.2rem\"]],[false,{\"kbd kbd\":false},[\"padding:0\",\"font-size:100%\",\"font-weight:700\"]],[false,{\"pre\":false},[\"display:block\",\"font-size:87.5%\",\"color:#212529\"]],[false,{\"pre code\":false},[\"font-size:inherit\",\"color:inherit\",\"word-break:normal\"]],[false,{\".pre-scrollable\":false},[\"max-height:340px\",\"overflow-y:scroll\"]],[true,{\".container\":true},[\"width:100%\",\"padding-right:15px\",\"padding-left:15px\",\"margin-right:auto\",\"margin-left:auto\"]],[true,\"@media (min-width:576px){\"],[true,{\".container\":true},[\"max-width:540px\"]],[true,\"}\"],[true,\"@media (min-width:768px){\"],[true,{\".container\":true},[\"max-width:720px\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[true,{\".container\":true},[\"max-width:960px\"]],[true,\"}\"],[true,\"@media (min-width:1200px){\"],[true,{\".container\":true},[\"max-width:1140px\"]],[true,\"}\"],[false,{\".container-fluid\":false},[\"width:100%\",\"padding-right:15px\",\"padding-left:15px\",\"margin-right:auto\",\"margin-left:auto\"]],[true,{\".row\":true},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"margin-right:-15px\",\"margin-left:-15px\"]],[false,{\".no-gutters\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".no-gutters>.col\":false,\".no-gutters>[class*=col-]\":false},[\"padding-right:0\",\"padding-left:0\"]],[true,{\".col\":false,\".col-1\":false,\".col-10\":true,\".col-11\":false,\".col-12\":true,\".col-2\":true,\".col-3\":false,\".col-4\":false,\".col-5\":false,\".col-6\":true,\".col-7\":false,\".col-8\":false,\".col-9\":false,\".col-auto\":false,\".col-lg\":false,\".col-lg-1\":false,\".col-lg-10\":false,\".col-lg-11\":false,\".col-lg-12\":true,\".col-lg-2\":true,\".col-lg-3\":true,\".col-lg-4\":true,\".col-lg-5\":false,\".col-lg-6\":true,\".col-lg-7\":false,\".col-lg-8\":false,\".col-lg-9\":true,\".col-lg-auto\":false,\".col-md\":false,\".col-md-1\":false,\".col-md-10\":true,\".col-md-11\":false,\".col-md-12\":true,\".col-md-2\":true,\".col-md-3\":false,\".col-md-4\":true,\".col-md-5\":false,\".col-md-6\":true,\".col-md-7\":false,\".col-md-8\":true,\".col-md-9\":false,\".col-md-auto\":false,\".col-sm\":false,\".col-sm-1\":false,\".col-sm-10\":false,\".col-sm-11\":false,\".col-sm-12\":true,\".col-sm-2\":false,\".col-sm-3\":false,\".col-sm-4\":false,\".col-sm-5\":false,\".col-sm-6\":false,\".col-sm-7\":false,\".col-sm-8\":false,\".col-sm-9\":false,\".col-sm-auto\":false,\".col-xl\":false,\".col-xl-1\":false,\".col-xl-10\":false,\".col-xl-11\":false,\".col-xl-12\":false,\".col-xl-2\":false,\".col-xl-3\":false,\".col-xl-4\":false,\".col-xl-5\":false,\".col-xl-6\":false,\".col-xl-7\":false,\".col-xl-8\":false,\".col-xl-9\":false,\".col-xl-auto\":false},[\"position:relative\",\"width:100%\",\"min-height:1px\",\"padding-right:15px\",\"padding-left:15px\"]],[false,{\".col\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[false,{\".col-4\":false},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[true,{\".col-6\":true},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[true,{\".col-10\":true},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-3\":false},[\"margin-left:25%\"]],[false,{\".offset-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-6\":false},[\"margin-left:50%\"]],[false,{\".offset-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-9\":false},[\"margin-left:75%\"]],[false,{\".offset-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-11\":false},[\"margin-left:91.666667%\"]],[true,\"@media (min-width:576px){\"],[false,{\".col-sm\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-sm-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-sm-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[false,{\".col-sm-2\":false},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-sm-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[false,{\".col-sm-4\":false},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-sm-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[false,{\".col-sm-6\":false},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-sm-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-sm-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-sm-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[false,{\".col-sm-10\":false},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-sm-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-sm-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-sm-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-sm-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-sm-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-sm-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-sm-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-sm-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-sm-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-sm-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-sm-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-sm-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-sm-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-sm-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-sm-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-sm-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-sm-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-sm-0\":false},[\"margin-left:0\"]],[false,{\".offset-sm-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-sm-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-sm-3\":false},[\"margin-left:25%\"]],[false,{\".offset-sm-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-sm-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-sm-6\":false},[\"margin-left:50%\"]],[false,{\".offset-sm-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-sm-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-sm-9\":false},[\"margin-left:75%\"]],[false,{\".offset-sm-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-sm-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[true,\"@media (min-width:768px){\"],[false,{\".col-md\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-md-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-md-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-md-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-md-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[true,{\".col-md-4\":true},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-md-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[true,{\".col-md-6\":true},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-md-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[true,{\".col-md-8\":true},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-md-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[true,{\".col-md-10\":true},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-md-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-md-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-md-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-md-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-md-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-md-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-md-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-md-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-md-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-md-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-md-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-md-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-md-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-md-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-md-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-md-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-md-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-md-0\":false},[\"margin-left:0\"]],[false,{\".offset-md-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-md-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-md-3\":false},[\"margin-left:25%\"]],[false,{\".offset-md-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-md-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-md-6\":false},[\"margin-left:50%\"]],[false,{\".offset-md-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-md-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-md-9\":false},[\"margin-left:75%\"]],[false,{\".offset-md-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-md-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[false,{\".col-lg\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-lg-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-lg-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-lg-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[true,{\".col-lg-3\":true},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[true,{\".col-lg-4\":true},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-lg-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[true,{\".col-lg-6\":true},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-lg-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-lg-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[true,{\".col-lg-9\":true},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[false,{\".col-lg-10\":false},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-lg-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-lg-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-lg-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-lg-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-lg-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-lg-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-lg-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-lg-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-lg-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-lg-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-lg-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-lg-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-lg-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-lg-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-lg-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-lg-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-lg-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-lg-0\":false},[\"margin-left:0\"]],[false,{\".offset-lg-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-lg-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-lg-3\":false},[\"margin-left:25%\"]],[false,{\".offset-lg-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-lg-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-lg-6\":false},[\"margin-left:50%\"]],[false,{\".offset-lg-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-lg-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-lg-9\":false},[\"margin-left:75%\"]],[false,{\".offset-lg-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-lg-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".col-xl\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-xl-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-xl-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[false,{\".col-xl-2\":false},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-xl-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[false,{\".col-xl-4\":false},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-xl-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[false,{\".col-xl-6\":false},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-xl-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-xl-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-xl-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[false,{\".col-xl-10\":false},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-xl-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[false,{\".col-xl-12\":false},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-xl-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-xl-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-xl-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-xl-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-xl-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-xl-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-xl-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-xl-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-xl-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-xl-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-xl-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-xl-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-xl-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-xl-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-xl-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-xl-0\":false},[\"margin-left:0\"]],[false,{\".offset-xl-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-xl-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-xl-3\":false},[\"margin-left:25%\"]],[false,{\".offset-xl-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-xl-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-xl-6\":false},[\"margin-left:50%\"]],[false,{\".offset-xl-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-xl-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-xl-9\":false},[\"margin-left:75%\"]],[false,{\".offset-xl-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-xl-11\":false},[\"margin-left:91.666667%\"]],[false,\"}\"],[false,{\".table\":false},[\"width:100%\",\"margin-bottom:1rem\",\"background-color:transparent\"]],[false,{\".table td\":false,\".table th\":false},[\"padding:.75rem\",\"vertical-align:top\",\"border-top:1px solid #dee2e6\"]],[false,{\".table thead th\":false},[\"vertical-align:bottom\",\"border-bottom:2px solid #dee2e6\"]],[false,{\".table tbody+tbody\":false},[\"border-top:2px solid #dee2e6\"]],[false,{\".table .table\":false},[\"background-color:#fff\"]],[false,{\".table-sm td\":false,\".table-sm th\":false},[\"padding:.3rem\"]],[false,{\".table-bordered\":false},[\"border:1px solid #dee2e6\"]],[false,{\".table-bordered td\":false,\".table-bordered th\":false},[\"border:1px solid #dee2e6\"]],[false,{\".table-bordered thead td\":false,\".table-bordered thead th\":false},[\"border-bottom-width:2px\"]],[false,{\".table-borderless tbody+tbody\":false,\".table-borderless td\":false,\".table-borderless th\":false,\".table-borderless thead th\":false},[\"border:0\"]],[false,{\".table-striped tbody tr:nth-of-type(odd)\":false},[\"background-color:rgba(0,0,0,.05)\"]],[false,{\".table-hover tbody tr:hover\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table-primary\":false,\".table-primary>td\":false,\".table-primary>th\":false},[\"background-color:#b8daff\"]],[false,{\".table-hover .table-primary:hover\":false},[\"background-color:#9fcdff\"]],[false,{\".table-hover .table-primary:hover>td\":false,\".table-hover .table-primary:hover>th\":false},[\"background-color:#9fcdff\"]],[false,{\".table-secondary\":false,\".table-secondary>td\":false,\".table-secondary>th\":false},[\"background-color:#d6d8db\"]],[false,{\".table-hover .table-secondary:hover\":false},[\"background-color:#c8cbcf\"]],[false,{\".table-hover .table-secondary:hover>td\":false,\".table-hover .table-secondary:hover>th\":false},[\"background-color:#c8cbcf\"]],[false,{\".table-success\":false,\".table-success>td\":false,\".table-success>th\":false},[\"background-color:#c3e6cb\"]],[false,{\".table-hover .table-success:hover\":false},[\"background-color:#b1dfbb\"]],[false,{\".table-hover .table-success:hover>td\":false,\".table-hover .table-success:hover>th\":false},[\"background-color:#b1dfbb\"]],[false,{\".table-info\":false,\".table-info>td\":false,\".table-info>th\":false},[\"background-color:#bee5eb\"]],[false,{\".table-hover .table-info:hover\":false},[\"background-color:#abdde5\"]],[false,{\".table-hover .table-info:hover>td\":false,\".table-hover .table-info:hover>th\":false},[\"background-color:#abdde5\"]],[false,{\".table-warning\":false,\".table-warning>td\":false,\".table-warning>th\":false},[\"background-color:#ffeeba\"]],[false,{\".table-hover .table-warning:hover\":false},[\"background-color:#ffe8a1\"]],[false,{\".table-hover .table-warning:hover>td\":false,\".table-hover .table-warning:hover>th\":false},[\"background-color:#ffe8a1\"]],[false,{\".table-danger\":false,\".table-danger>td\":false,\".table-danger>th\":false},[\"background-color:#f5c6cb\"]],[false,{\".table-hover .table-danger:hover\":false},[\"background-color:#f1b0b7\"]],[false,{\".table-hover .table-danger:hover>td\":false,\".table-hover .table-danger:hover>th\":false},[\"background-color:#f1b0b7\"]],[false,{\".table-light\":false,\".table-light>td\":false,\".table-light>th\":false},[\"background-color:#fdfdfe\"]],[false,{\".table-hover .table-light:hover\":false},[\"background-color:#ececf6\"]],[false,{\".table-hover .table-light:hover>td\":false,\".table-hover .table-light:hover>th\":false},[\"background-color:#ececf6\"]],[false,{\".table-dark\":false,\".table-dark>td\":false,\".table-dark>th\":false},[\"background-color:#c6c8ca\"]],[false,{\".table-hover .table-dark:hover\":false},[\"background-color:#b9bbbe\"]],[false,{\".table-hover .table-dark:hover>td\":false,\".table-hover .table-dark:hover>th\":false},[\"background-color:#b9bbbe\"]],[false,{\".table-active\":false,\".table-active>td\":false,\".table-active>th\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table-hover .table-active:hover\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table-hover .table-active:hover>td\":false,\".table-hover .table-active:hover>th\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table .thead-dark th\":false},[\"color:#fff\",\"background-color:#212529\",\"border-color:#32383e\"]],[false,{\".table .thead-light th\":false},[\"color:#495057\",\"background-color:#e9ecef\",\"border-color:#dee2e6\"]],[false,{\".table-dark\":false},[\"color:#fff\",\"background-color:#212529\"]],[false,{\".table-dark td\":false,\".table-dark th\":false,\".table-dark thead th\":false},[\"border-color:#32383e\"]],[false,{\".table-dark.table-bordered\":false},[\"border:0\"]],[false,{\".table-dark.table-striped tbody tr:nth-of-type(odd)\":false},[\"background-color:rgba(255,255,255,.05)\"]],[false,{\".table-dark.table-hover tbody tr:hover\":false},[\"background-color:rgba(255,255,255,.075)\"]],[false,\"@media (max-width:575.98px){\"],[false,{\".table-responsive-sm\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-sm>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:767.98px){\"],[false,{\".table-responsive-md\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-md>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:991.98px){\"],[false,{\".table-responsive-lg\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-lg>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:1199.98px){\"],[false,{\".table-responsive-xl\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-xl>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,{\".table-responsive\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive>.table-bordered\":false},[\"border:0\"]],[false,{\".form-control\":false},[\"display:block\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"padding:.375rem .75rem\",\"font-size:1rem\",\"line-height:1.5\",\"color:#495057\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid #ced4da\",\"border-radius:.25rem\",\"transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".form-control\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".form-control::-ms-expand\":false},[\"background-color:transparent\",\"border:0\"]],[false,{\".form-control:focus\":false},[\"color:#495057\",\"background-color:#fff\",\"border-color:#80bdff\",\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".form-control::-webkit-input-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control::-moz-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control:-ms-input-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control::-ms-input-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control::placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control:disabled\":false,\".form-control[readonly]\":false},[\"background-color:#e9ecef\",\"opacity:1\"]],[false,{\"select.form-control:focus::-ms-value\":false},[\"color:#495057\",\"background-color:#fff\"]],[false,{\".form-control-file\":false,\".form-control-range\":false},[\"display:block\",\"width:100%\"]],[false,{\".col-form-label\":false},[\"padding-top:calc(.375rem + 1px)\",\"padding-bottom:calc(.375rem + 1px)\",\"margin-bottom:0\",\"font-size:inherit\",\"line-height:1.5\"]],[false,{\".col-form-label-lg\":false},[\"padding-top:calc(.5rem + 1px)\",\"padding-bottom:calc(.5rem + 1px)\",\"font-size:1.25rem\",\"line-height:1.5\"]],[false,{\".col-form-label-sm\":false},[\"padding-top:calc(.25rem + 1px)\",\"padding-bottom:calc(.25rem + 1px)\",\"font-size:.875rem\",\"line-height:1.5\"]],[false,{\".form-control-plaintext\":false},[\"display:block\",\"width:100%\",\"padding-top:.375rem\",\"padding-bottom:.375rem\",\"margin-bottom:0\",\"line-height:1.5\",\"color:#212529\",\"background-color:transparent\",\"border:solid transparent\",\"border-width:1px 0\"]],[false,{\".form-control-plaintext.form-control-lg\":false,\".form-control-plaintext.form-control-sm\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,{\".form-control-sm\":false},[\"height:calc(1.8125rem + 2px)\",\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\",\"border-radius:.2rem\"]],[false,{\".form-control-lg\":false},[\"height:calc(2.875rem + 2px)\",\"padding:.5rem 1rem\",\"font-size:1.25rem\",\"line-height:1.5\",\"border-radius:.3rem\"]],[false,{\"select.form-control[multiple]\":false,\"select.form-control[size]\":false},[\"height:auto\"]],[false,{\"textarea.form-control\":false},[\"height:auto\"]],[false,{\".form-group\":false},[\"margin-bottom:1rem\"]],[false,{\".form-text\":false},[\"display:block\",\"margin-top:.25rem\"]],[false,{\".form-row\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"margin-right:-5px\",\"margin-left:-5px\"]],[false,{\".form-row>.col\":false,\".form-row>[class*=col-]\":false},[\"padding-right:5px\",\"padding-left:5px\"]],[false,{\".form-check\":false},[\"position:relative\",\"display:block\",\"padding-left:1.25rem\"]],[false,{\".form-check-input\":false},[\"position:absolute\",\"margin-top:.3rem\",\"margin-left:-1.25rem\"]],[false,{\".form-check-input:disabled~.form-check-label\":false},[\"color:#6c757d\"]],[false,{\".form-check-label\":false},[\"margin-bottom:0\"]],[false,{\".form-check-inline\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"-ms-flex-align:center\",\"align-items:center\",\"padding-left:0\",\"margin-right:.75rem\"]],[false,{\".form-check-inline .form-check-input\":false},[\"position:static\",\"margin-top:0\",\"margin-right:.3125rem\",\"margin-left:0\"]],[false,{\".valid-feedback\":false},[\"display:none\",\"width:100%\",\"margin-top:.25rem\",\"font-size:80%\",\"color:#28a745\"]],[false,{\".valid-tooltip\":false},[\"position:absolute\",\"top:100%\",\"z-index:5\",\"display:none\",\"max-width:100%\",\"padding:.25rem .5rem\",\"margin-top:.1rem\",\"font-size:.875rem\",\"line-height:1.5\",\"color:#fff\",\"background-color:rgba(40,167,69,.9)\",\"border-radius:.25rem\"]],[false,{\".custom-select.is-valid\":false,\".form-control.is-valid\":false,\".was-validated .custom-select:valid\":false,\".was-validated .form-control:valid\":false},[\"border-color:#28a745\"]],[false,{\".custom-select.is-valid:focus\":false,\".form-control.is-valid:focus\":false,\".was-validated .custom-select:valid:focus\":false,\".was-validated .form-control:valid:focus\":false},[\"border-color:#28a745\",\"box-shadow:0 0 0 .2rem rgba(40,167,69,.25)\"]],[false,{\".custom-select.is-valid~.valid-feedback\":false,\".custom-select.is-valid~.valid-tooltip\":false,\".form-control.is-valid~.valid-feedback\":false,\".form-control.is-valid~.valid-tooltip\":false,\".was-validated .custom-select:valid~.valid-feedback\":false,\".was-validated .custom-select:valid~.valid-tooltip\":false,\".was-validated .form-control:valid~.valid-feedback\":false,\".was-validated .form-control:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".form-control-file.is-valid~.valid-feedback\":false,\".form-control-file.is-valid~.valid-tooltip\":false,\".was-validated .form-control-file:valid~.valid-feedback\":false,\".was-validated .form-control-file:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".form-check-input.is-valid~.form-check-label\":false,\".was-validated .form-check-input:valid~.form-check-label\":false},[\"color:#28a745\"]],[false,{\".form-check-input.is-valid~.valid-feedback\":false,\".form-check-input.is-valid~.valid-tooltip\":false,\".was-validated .form-check-input:valid~.valid-feedback\":false,\".was-validated .form-check-input:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-valid~.custom-control-label\":false,\".was-validated .custom-control-input:valid~.custom-control-label\":false},[\"color:#28a745\"]],[false,{\".custom-control-input.is-valid~.custom-control-label::before\":false,\".was-validated .custom-control-input:valid~.custom-control-label::before\":false},[\"background-color:#71dd8a\"]],[false,{\".custom-control-input.is-valid~.valid-feedback\":false,\".custom-control-input.is-valid~.valid-tooltip\":false,\".was-validated .custom-control-input:valid~.valid-feedback\":false,\".was-validated .custom-control-input:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-valid:checked~.custom-control-label::before\":false,\".was-validated .custom-control-input:valid:checked~.custom-control-label::before\":false},[\"background-color:#34ce57\"]],[false,{\".custom-control-input.is-valid:focus~.custom-control-label::before\":false,\".was-validated .custom-control-input:valid:focus~.custom-control-label::before\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(40,167,69,.25)\"]],[false,{\".custom-file-input.is-valid~.custom-file-label\":false,\".was-validated .custom-file-input:valid~.custom-file-label\":false},[\"border-color:#28a745\"]],[false,{\".custom-file-input.is-valid~.custom-file-label::after\":false,\".was-validated .custom-file-input:valid~.custom-file-label::after\":false},[\"border-color:inherit\"]],[false,{\".custom-file-input.is-valid~.valid-feedback\":false,\".custom-file-input.is-valid~.valid-tooltip\":false,\".was-validated .custom-file-input:valid~.valid-feedback\":false,\".was-validated .custom-file-input:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".custom-file-input.is-valid:focus~.custom-file-label\":false,\".was-validated .custom-file-input:valid:focus~.custom-file-label\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.25)\"]],[false,{\".invalid-feedback\":false},[\"display:none\",\"width:100%\",\"margin-top:.25rem\",\"font-size:80%\",\"color:#dc3545\"]],[false,{\".invalid-tooltip\":false},[\"position:absolute\",\"top:100%\",\"z-index:5\",\"display:none\",\"max-width:100%\",\"padding:.25rem .5rem\",\"margin-top:.1rem\",\"font-size:.875rem\",\"line-height:1.5\",\"color:#fff\",\"background-color:rgba(220,53,69,.9)\",\"border-radius:.25rem\"]],[false,{\".custom-select.is-invalid\":false,\".form-control.is-invalid\":false,\".was-validated .custom-select:invalid\":false,\".was-validated .form-control:invalid\":false},[\"border-color:#dc3545\"]],[false,{\".custom-select.is-invalid:focus\":false,\".form-control.is-invalid:focus\":false,\".was-validated .custom-select:invalid:focus\":false,\".was-validated .form-control:invalid:focus\":false},[\"border-color:#dc3545\",\"box-shadow:0 0 0 .2rem rgba(220,53,69,.25)\"]],[false,{\".custom-select.is-invalid~.invalid-feedback\":false,\".custom-select.is-invalid~.invalid-tooltip\":false,\".form-control.is-invalid~.invalid-feedback\":false,\".form-control.is-invalid~.invalid-tooltip\":false,\".was-validated .custom-select:invalid~.invalid-feedback\":false,\".was-validated .custom-select:invalid~.invalid-tooltip\":false,\".was-validated .form-control:invalid~.invalid-feedback\":false,\".was-validated .form-control:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".form-control-file.is-invalid~.invalid-feedback\":false,\".form-control-file.is-invalid~.invalid-tooltip\":false,\".was-validated .form-control-file:invalid~.invalid-feedback\":false,\".was-validated .form-control-file:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".form-check-input.is-invalid~.form-check-label\":false,\".was-validated .form-check-input:invalid~.form-check-label\":false},[\"color:#dc3545\"]],[false,{\".form-check-input.is-invalid~.invalid-feedback\":false,\".form-check-input.is-invalid~.invalid-tooltip\":false,\".was-validated .form-check-input:invalid~.invalid-feedback\":false,\".was-validated .form-check-input:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-invalid~.custom-control-label\":false,\".was-validated .custom-control-input:invalid~.custom-control-label\":false},[\"color:#dc3545\"]],[false,{\".custom-control-input.is-invalid~.custom-control-label::before\":false,\".was-validated .custom-control-input:invalid~.custom-control-label::before\":false},[\"background-color:#efa2a9\"]],[false,{\".custom-control-input.is-invalid~.invalid-feedback\":false,\".custom-control-input.is-invalid~.invalid-tooltip\":false,\".was-validated .custom-control-input:invalid~.invalid-feedback\":false,\".was-validated .custom-control-input:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-invalid:checked~.custom-control-label::before\":false,\".was-validated .custom-control-input:invalid:checked~.custom-control-label::before\":false},[\"background-color:#e4606d\"]],[false,{\".custom-control-input.is-invalid:focus~.custom-control-label::before\":false,\".was-validated .custom-control-input:invalid:focus~.custom-control-label::before\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(220,53,69,.25)\"]],[false,{\".custom-file-input.is-invalid~.custom-file-label\":false,\".was-validated .custom-file-input:invalid~.custom-file-label\":false},[\"border-color:#dc3545\"]],[false,{\".custom-file-input.is-invalid~.custom-file-label::after\":false,\".was-validated .custom-file-input:invalid~.custom-file-label::after\":false},[\"border-color:inherit\"]],[false,{\".custom-file-input.is-invalid~.invalid-feedback\":false,\".custom-file-input.is-invalid~.invalid-tooltip\":false,\".was-validated .custom-file-input:invalid~.invalid-feedback\":false,\".was-validated .custom-file-input:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".custom-file-input.is-invalid:focus~.custom-file-label\":false,\".was-validated .custom-file-input:invalid:focus~.custom-file-label\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.25)\"]],[false,{\".form-inline\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".form-inline .form-check\":false},[\"width:100%\"]],[false,\"@media (min-width:576px){\"],[false,{\".form-inline label\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"margin-bottom:0\"]],[false,{\".form-inline .form-group\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\",\"-ms-flex-align:center\",\"align-items:center\",\"margin-bottom:0\"]],[false,{\".form-inline .form-control\":false},[\"display:inline-block\",\"width:auto\",\"vertical-align:middle\"]],[false,{\".form-inline .form-control-plaintext\":false},[\"display:inline-block\"]],[false,{\".form-inline .custom-select\":false,\".form-inline .input-group\":false},[\"width:auto\"]],[false,{\".form-inline .form-check\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"width:auto\",\"padding-left:0\"]],[false,{\".form-inline .form-check-input\":false},[\"position:relative\",\"margin-top:0\",\"margin-right:.25rem\",\"margin-left:0\"]],[false,{\".form-inline .custom-control\":false},[\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".form-inline .custom-control-label\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".btn\":false},[\"display:inline-block\",\"font-weight:400\",\"text-align:center\",\"white-space:nowrap\",\"vertical-align:middle\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\",\"border:1px solid transparent\",\"padding:.375rem .75rem\",\"font-size:1rem\",\"line-height:1.5\",\"border-radius:.25rem\",\"transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".btn\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".btn:focus\":false,\".btn:hover\":false},[\"text-decoration:none\"]],[false,{\".btn:focus-within\":false,\".btn:focus\":false},[\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".btn.disabled\":false,\".btn:disabled\":false},[\"opacity:.65\"]],[false,{\".btn:not(:disabled):not(.disabled)\":false},[\"cursor:pointer\"]],[false,{\"a.btn.disabled\":false,\"fieldset:disabled a.btn\":false},[\"pointer-events:none\"]],[false,{\".btn-primary\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-primary:hover\":false},[\"color:#fff\",\"background-color:#0069d9\",\"border-color:#0062cc\"]],[false,{\".btn-primary:focus-within\":false,\".btn-primary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-primary.disabled\":false,\".btn-primary:disabled\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-primary:not(:disabled):not(.disabled).active\":false,\".btn-primary:not(:disabled):not(.disabled):active\":false,\".show>.btn-primary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#0062cc\",\"border-color:#005cbf\"]],[false,{\".btn-primary:not(:disabled):not(.disabled).active:focus\":false,\".btn-primary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-primary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-secondary\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-secondary:hover\":false},[\"color:#fff\",\"background-color:#5a6268\",\"border-color:#545b62\"]],[false,{\".btn-secondary:focus-within\":false,\".btn-secondary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-secondary.disabled\":false,\".btn-secondary:disabled\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-secondary:not(:disabled):not(.disabled).active\":false,\".btn-secondary:not(:disabled):not(.disabled):active\":false,\".show>.btn-secondary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#545b62\",\"border-color:#4e555b\"]],[false,{\".btn-secondary:not(:disabled):not(.disabled).active:focus\":false,\".btn-secondary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-secondary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-success\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-success:hover\":false},[\"color:#fff\",\"background-color:#218838\",\"border-color:#1e7e34\"]],[false,{\".btn-success:focus-within\":false,\".btn-success:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-success.disabled\":false,\".btn-success:disabled\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-success:not(:disabled):not(.disabled).active\":false,\".btn-success:not(:disabled):not(.disabled):active\":false,\".show>.btn-success.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#1e7e34\",\"border-color:#1c7430\"]],[false,{\".btn-success:not(:disabled):not(.disabled).active:focus\":false,\".btn-success:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-success.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-info\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-info:hover\":false},[\"color:#fff\",\"background-color:#138496\",\"border-color:#117a8b\"]],[false,{\".btn-info:focus-within\":false,\".btn-info:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-info.disabled\":false,\".btn-info:disabled\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-info:not(:disabled):not(.disabled).active\":false,\".btn-info:not(:disabled):not(.disabled):active\":false,\".show>.btn-info.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#117a8b\",\"border-color:#10707f\"]],[false,{\".btn-info:not(:disabled):not(.disabled).active:focus\":false,\".btn-info:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-info.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-warning\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-warning:hover\":false},[\"color:#212529\",\"background-color:#e0a800\",\"border-color:#d39e00\"]],[false,{\".btn-warning:focus-within\":false,\".btn-warning:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-warning.disabled\":false,\".btn-warning:disabled\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-warning:not(:disabled):not(.disabled).active\":false,\".btn-warning:not(:disabled):not(.disabled):active\":false,\".show>.btn-warning.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#d39e00\",\"border-color:#c69500\"]],[false,{\".btn-warning:not(:disabled):not(.disabled).active:focus\":false,\".btn-warning:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-warning.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-danger\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-danger:hover\":false},[\"color:#fff\",\"background-color:#c82333\",\"border-color:#bd2130\"]],[false,{\".btn-danger:focus-within\":false,\".btn-danger:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-danger.disabled\":false,\".btn-danger:disabled\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-danger:not(:disabled):not(.disabled).active\":false,\".btn-danger:not(:disabled):not(.disabled):active\":false,\".show>.btn-danger.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#bd2130\",\"border-color:#b21f2d\"]],[false,{\".btn-danger:not(:disabled):not(.disabled).active:focus\":false,\".btn-danger:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-danger.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-light\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-light:hover\":false},[\"color:#212529\",\"background-color:#e2e6ea\",\"border-color:#dae0e5\"]],[false,{\".btn-light:focus-within\":false,\".btn-light:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-light.disabled\":false,\".btn-light:disabled\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-light:not(:disabled):not(.disabled).active\":false,\".btn-light:not(:disabled):not(.disabled):active\":false,\".show>.btn-light.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#dae0e5\",\"border-color:#d3d9df\"]],[false,{\".btn-light:not(:disabled):not(.disabled).active:focus\":false,\".btn-light:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-light.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-dark\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-dark:hover\":false},[\"color:#fff\",\"background-color:#23272b\",\"border-color:#1d2124\"]],[false,{\".btn-dark:focus-within\":false,\".btn-dark:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-dark.disabled\":false,\".btn-dark:disabled\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-dark:not(:disabled):not(.disabled).active\":false,\".btn-dark:not(:disabled):not(.disabled):active\":false,\".show>.btn-dark.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#1d2124\",\"border-color:#171a1d\"]],[false,{\".btn-dark:not(:disabled):not(.disabled).active:focus\":false,\".btn-dark:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-dark.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-outline-primary\":false},[\"color:#007bff\",\"background-color:transparent\",\"background-image:none\",\"border-color:#007bff\"]],[false,{\".btn-outline-primary:hover\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-outline-primary:focus-within\":false,\".btn-outline-primary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-outline-primary.disabled\":false,\".btn-outline-primary:disabled\":false},[\"color:#007bff\",\"background-color:transparent\"]],[false,{\".btn-outline-primary:not(:disabled):not(.disabled).active\":false,\".btn-outline-primary:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-primary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-outline-primary:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-primary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-primary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-outline-secondary\":false},[\"color:#6c757d\",\"background-color:transparent\",\"background-image:none\",\"border-color:#6c757d\"]],[false,{\".btn-outline-secondary:hover\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-outline-secondary:focus-within\":false,\".btn-outline-secondary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-outline-secondary.disabled\":false,\".btn-outline-secondary:disabled\":false},[\"color:#6c757d\",\"background-color:transparent\"]],[false,{\".btn-outline-secondary:not(:disabled):not(.disabled).active\":false,\".btn-outline-secondary:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-secondary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-outline-secondary:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-secondary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-secondary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-outline-success\":false},[\"color:#28a745\",\"background-color:transparent\",\"background-image:none\",\"border-color:#28a745\"]],[false,{\".btn-outline-success:hover\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-outline-success:focus-within\":false,\".btn-outline-success:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-outline-success.disabled\":false,\".btn-outline-success:disabled\":false},[\"color:#28a745\",\"background-color:transparent\"]],[false,{\".btn-outline-success:not(:disabled):not(.disabled).active\":false,\".btn-outline-success:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-success.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-outline-success:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-success:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-success.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-outline-info\":false},[\"color:#17a2b8\",\"background-color:transparent\",\"background-image:none\",\"border-color:#17a2b8\"]],[false,{\".btn-outline-info:hover\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-outline-info:focus-within\":false,\".btn-outline-info:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-outline-info.disabled\":false,\".btn-outline-info:disabled\":false},[\"color:#17a2b8\",\"background-color:transparent\"]],[false,{\".btn-outline-info:not(:disabled):not(.disabled).active\":false,\".btn-outline-info:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-info.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-outline-info:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-info:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-info.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-outline-warning\":false},[\"color:#ffc107\",\"background-color:transparent\",\"background-image:none\",\"border-color:#ffc107\"]],[false,{\".btn-outline-warning:hover\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-outline-warning:focus-within\":false,\".btn-outline-warning:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-outline-warning.disabled\":false,\".btn-outline-warning:disabled\":false},[\"color:#ffc107\",\"background-color:transparent\"]],[false,{\".btn-outline-warning:not(:disabled):not(.disabled).active\":false,\".btn-outline-warning:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-warning.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-outline-warning:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-warning:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-warning.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-outline-danger\":false},[\"color:#dc3545\",\"background-color:transparent\",\"background-image:none\",\"border-color:#dc3545\"]],[false,{\".btn-outline-danger:hover\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-outline-danger:focus-within\":false,\".btn-outline-danger:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-outline-danger.disabled\":false,\".btn-outline-danger:disabled\":false},[\"color:#dc3545\",\"background-color:transparent\"]],[false,{\".btn-outline-danger:not(:disabled):not(.disabled).active\":false,\".btn-outline-danger:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-danger.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-outline-danger:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-danger:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-danger.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-outline-light\":false},[\"color:#f8f9fa\",\"background-color:transparent\",\"background-image:none\",\"border-color:#f8f9fa\"]],[false,{\".btn-outline-light:hover\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-outline-light:focus-within\":false,\".btn-outline-light:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-outline-light.disabled\":false,\".btn-outline-light:disabled\":false},[\"color:#f8f9fa\",\"background-color:transparent\"]],[false,{\".btn-outline-light:not(:disabled):not(.disabled).active\":false,\".btn-outline-light:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-light.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-outline-light:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-light:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-light.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-outline-dark\":false},[\"color:#343a40\",\"background-color:transparent\",\"background-image:none\",\"border-color:#343a40\"]],[false,{\".btn-outline-dark:hover\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-outline-dark:focus-within\":false,\".btn-outline-dark:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-outline-dark.disabled\":false,\".btn-outline-dark:disabled\":false},[\"color:#343a40\",\"background-color:transparent\"]],[false,{\".btn-outline-dark:not(:disabled):not(.disabled).active\":false,\".btn-outline-dark:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-dark.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-outline-dark:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-dark:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-dark.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-link\":false},[\"font-weight:400\",\"color:#007bff\",\"background-color:transparent\"]],[false,{\".btn-link:hover\":false},[\"color:#0056b3\",\"text-decoration:underline\",\"background-color:transparent\",\"border-color:transparent\"]],[false,{\".btn-link:focus-within\":false,\".btn-link:focus\":false},[\"text-decoration:underline\",\"border-color:transparent\",\"box-shadow:none\"]],[false,{\".btn-link.disabled\":false,\".btn-link:disabled\":false},[\"color:#6c757d\",\"pointer-events:none\"]],[false,{\".btn-group-lg>.btn\":false,\".btn-lg\":false},[\"padding:.5rem 1rem\",\"font-size:1.25rem\",\"line-height:1.5\",\"border-radius:.3rem\"]],[false,{\".btn-group-sm>.btn\":false,\".btn-sm\":false},[\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\",\"border-radius:.2rem\"]],[false,{\".btn-block\":false},[\"display:block\",\"width:100%\"]],[false,{\".btn-block+.btn-block\":false},[\"margin-top:.5rem\"]],[false,{\"input[type=button].btn-block\":false,\"input[type=reset].btn-block\":false,\"input[type=submit].btn-block\":false},[\"width:100%\"]],[false,{\".fade\":false},[\"transition:opacity .15s linear\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".fade\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".fade:not(.show)\":false},[\"opacity:0\"]],[true,{\".collapse:not(.show)\":true},[\"display:none\"]],[false,{\".collapsing\":false},[\"position:relative\",\"height:0\",\"overflow:hidden\",\"transition:height .35s ease\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".collapsing\":false},[\"transition:none\"]],[false,\"}\"],[true,{\".dropdown\":true,\".dropleft\":false,\".dropright\":false,\".dropup\":false},[\"position:relative\"]],[true,{\".dropdown-toggle::after\":true},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:.3em solid\",\"border-right:.3em solid transparent\",\"border-bottom:0\",\"border-left:.3em solid transparent\"]],[true,{\".dropdown-toggle:empty::after\":true},[\"margin-left:0\"]],[true,{\".dropdown-menu\":true},[\"position:absolute\",\"top:100%\",\"left:0\",\"z-index:1000\",\"display:none\",\"float:left\",\"min-width:10rem\",\"padding:.5rem 0\",\"margin:.125rem 0 0\",\"font-size:1rem\",\"color:#212529\",\"text-align:left\",\"list-style:none\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid rgba(0,0,0,.15)\",\"border-radius:.25rem\"]],[false,{\".dropdown-menu-right\":false},[\"right:0\",\"left:auto\"]],[false,{\".dropup .dropdown-menu\":false},[\"top:auto\",\"bottom:100%\",\"margin-top:0\",\"margin-bottom:.125rem\"]],[false,{\".dropup .dropdown-toggle::after\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:0\",\"border-right:.3em solid transparent\",\"border-bottom:.3em solid\",\"border-left:.3em solid transparent\"]],[false,{\".dropup .dropdown-toggle:empty::after\":false},[\"margin-left:0\"]],[false,{\".dropright .dropdown-menu\":false},[\"top:0\",\"right:auto\",\"left:100%\",\"margin-top:0\",\"margin-left:.125rem\"]],[false,{\".dropright .dropdown-toggle::after\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:.3em solid transparent\",\"border-right:0\",\"border-bottom:.3em solid transparent\",\"border-left:.3em solid\"]],[false,{\".dropright .dropdown-toggle:empty::after\":false},[\"margin-left:0\"]],[false,{\".dropright .dropdown-toggle::after\":false},[\"vertical-align:0\"]],[false,{\".dropleft .dropdown-menu\":false},[\"top:0\",\"right:100%\",\"left:auto\",\"margin-top:0\",\"margin-right:.125rem\"]],[false,{\".dropleft .dropdown-toggle::after\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\"]],[false,{\".dropleft .dropdown-toggle::after\":false},[\"display:none\"]],[false,{\".dropleft .dropdown-toggle::before\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-right:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:.3em solid transparent\",\"border-right:.3em solid\",\"border-bottom:.3em solid transparent\"]],[false,{\".dropleft .dropdown-toggle:empty::after\":false},[\"margin-left:0\"]],[false,{\".dropleft .dropdown-toggle::before\":false},[\"vertical-align:0\"]],[false,{\".dropdown-menu[x-placement^=bottom]\":false,\".dropdown-menu[x-placement^=left]\":false,\".dropdown-menu[x-placement^=right]\":false,\".dropdown-menu[x-placement^=top]\":false},[\"right:auto\",\"bottom:auto\"]],[false,{\".dropdown-divider\":false},[\"height:0\",\"margin:.5rem 0\",\"overflow:hidden\",\"border-top:1px solid #e9ecef\"]],[false,{\".dropdown-item\":false},[\"display:block\",\"width:100%\",\"padding:.25rem 1.5rem\",\"clear:both\",\"font-weight:400\",\"color:#212529\",\"text-align:inherit\",\"white-space:nowrap\",\"background-color:transparent\",\"border:0\"]],[false,{\".dropdown-item:focus\":false,\".dropdown-item:hover\":false},[\"color:#16181b\",\"text-decoration:none\",\"background-color:#f8f9fa\"]],[false,{\".dropdown-item.active\":false,\".dropdown-item:active\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#007bff\"]],[false,{\".dropdown-item.disabled\":false,\".dropdown-item:disabled\":false},[\"color:#6c757d\",\"background-color:transparent\"]],[true,{\".dropdown-menu.show\":true},[\"display:block\"]],[false,{\".dropdown-header\":false},[\"display:block\",\"padding:.5rem 1.5rem\",\"margin-bottom:0\",\"font-size:.875rem\",\"color:#6c757d\",\"white-space:nowrap\"]],[false,{\".dropdown-item-text\":false},[\"display:block\",\"padding:.25rem 1.5rem\",\"color:#212529\"]],[false,{\".btn-group\":false,\".btn-group-vertical\":false},[\"position:relative\",\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"vertical-align:middle\"]],[false,{\".btn-group-vertical>.btn\":false,\".btn-group>.btn\":false},[\"position:relative\",\"-ms-flex:0 1 auto\",\"flex:0 1 auto\"]],[false,{\".btn-group-vertical>.btn:hover\":false,\".btn-group>.btn:hover\":false},[\"z-index:1\"]],[false,{\".btn-group-vertical>.btn.active\":false,\".btn-group-vertical>.btn:active\":false,\".btn-group-vertical>.btn:focus\":false,\".btn-group>.btn.active\":false,\".btn-group>.btn:active\":false,\".btn-group>.btn:focus\":false},[\"z-index:1\"]],[false,{\".btn-group .btn+.btn\":false,\".btn-group .btn+.btn-group\":false,\".btn-group .btn-group+.btn\":false,\".btn-group .btn-group+.btn-group\":false,\".btn-group-vertical .btn+.btn\":false,\".btn-group-vertical .btn+.btn-group\":false,\".btn-group-vertical .btn-group+.btn\":false,\".btn-group-vertical .btn-group+.btn-group\":false},[\"margin-left:-1px\"]],[false,{\".btn-toolbar\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".btn-toolbar .input-group\":false},[\"width:auto\"]],[false,{\".btn-group>.btn:first-child\":false},[\"margin-left:0\"]],[false,{\".btn-group>.btn-group:not(:last-child)>.btn\":false,\".btn-group>.btn:not(:last-child):not(.dropdown-toggle)\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".btn-group>.btn-group:not(:first-child)>.btn\":false,\".btn-group>.btn:not(:first-child)\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".dropdown-toggle-split\":false},[\"padding-right:.5625rem\",\"padding-left:.5625rem\"]],[false,{\".dropdown-toggle-split::after\":false,\".dropright .dropdown-toggle-split::after\":false,\".dropup .dropdown-toggle-split::after\":false},[\"margin-left:0\"]],[false,{\".dropleft .dropdown-toggle-split::before\":false},[\"margin-right:0\"]],[false,{\".btn-group-sm>.btn+.dropdown-toggle-split\":false,\".btn-sm+.dropdown-toggle-split\":false},[\"padding-right:.375rem\",\"padding-left:.375rem\"]],[false,{\".btn-group-lg>.btn+.dropdown-toggle-split\":false,\".btn-lg+.dropdown-toggle-split\":false},[\"padding-right:.75rem\",\"padding-left:.75rem\"]],[false,{\".btn-group-vertical\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\",\"-ms-flex-align:start\",\"align-items:flex-start\",\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".btn-group-vertical .btn\":false,\".btn-group-vertical .btn-group\":false},[\"width:100%\"]],[false,{\".btn-group-vertical>.btn+.btn\":false,\".btn-group-vertical>.btn+.btn-group\":false,\".btn-group-vertical>.btn-group+.btn\":false,\".btn-group-vertical>.btn-group+.btn-group\":false},[\"margin-top:-1px\",\"margin-left:0\"]],[false,{\".btn-group-vertical>.btn-group:not(:last-child)>.btn\":false,\".btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle)\":false},[\"border-bottom-right-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".btn-group-vertical>.btn-group:not(:first-child)>.btn\":false,\".btn-group-vertical>.btn:not(:first-child)\":false},[\"border-top-left-radius:0\",\"border-top-right-radius:0\"]],[false,{\".btn-group-toggle>.btn\":false,\".btn-group-toggle>.btn-group>.btn\":false},[\"margin-bottom:0\"]],[false,{\".btn-group-toggle>.btn input[type=checkbox]\":false,\".btn-group-toggle>.btn input[type=radio]\":false,\".btn-group-toggle>.btn-group>.btn input[type=checkbox]\":false,\".btn-group-toggle>.btn-group>.btn input[type=radio]\":false},[\"position:absolute\",\"clip:rect(0,0,0,0)\",\"pointer-events:none\"]],[false,{\".input-group\":false},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-align:stretch\",\"align-items:stretch\",\"width:100%\"]],[false,{\".input-group>.custom-file\":false,\".input-group>.custom-select\":false,\".input-group>.form-control\":false},[\"position:relative\",\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"width:1%\",\"margin-bottom:0\"]],[false,{\".input-group>.custom-file+.custom-file\":false,\".input-group>.custom-file+.custom-select\":false,\".input-group>.custom-file+.form-control\":false,\".input-group>.custom-select+.custom-file\":false,\".input-group>.custom-select+.custom-select\":false,\".input-group>.custom-select+.form-control\":false,\".input-group>.form-control+.custom-file\":false,\".input-group>.form-control+.custom-select\":false,\".input-group>.form-control+.form-control\":false},[\"margin-left:-1px\"]],[false,{\".input-group>.custom-file .custom-file-input:focus~.custom-file-label\":false,\".input-group>.custom-select:focus\":false,\".input-group>.form-control:focus\":false},[\"z-index:3\"]],[false,{\".input-group>.custom-file .custom-file-input:focus\":false},[\"z-index:4\"]],[false,{\".input-group>.custom-select:not(:last-child)\":false,\".input-group>.form-control:not(:last-child)\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".input-group>.custom-select:not(:first-child)\":false,\".input-group>.form-control:not(:first-child)\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".input-group>.custom-file\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".input-group>.custom-file:not(:last-child) .custom-file-label\":false,\".input-group>.custom-file:not(:last-child) .custom-file-label::after\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".input-group>.custom-file:not(:first-child) .custom-file-label\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".input-group-append\":false,\".input-group-prepend\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".input-group-append .btn\":false,\".input-group-prepend .btn\":false},[\"position:relative\",\"z-index:2\"]],[false,{\".input-group-append .btn+.btn\":false,\".input-group-append .btn+.input-group-text\":false,\".input-group-append .input-group-text+.btn\":false,\".input-group-append .input-group-text+.input-group-text\":false,\".input-group-prepend .btn+.btn\":false,\".input-group-prepend .btn+.input-group-text\":false,\".input-group-prepend .input-group-text+.btn\":false,\".input-group-prepend .input-group-text+.input-group-text\":false},[\"margin-left:-1px\"]],[false,{\".input-group-prepend\":false},[\"margin-right:-1px\"]],[false,{\".input-group-append\":false},[\"margin-left:-1px\"]],[false,{\".input-group-text\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"padding:.375rem .75rem\",\"margin-bottom:0\",\"font-size:1rem\",\"font-weight:400\",\"line-height:1.5\",\"color:#495057\",\"text-align:center\",\"white-space:nowrap\",\"background-color:#e9ecef\",\"border:1px solid #ced4da\",\"border-radius:.25rem\"]],[false,{\".input-group-text input[type=checkbox]\":false,\".input-group-text input[type=radio]\":false},[\"margin-top:0\"]],[false,{\".input-group-lg>.form-control\":false,\".input-group-lg>.input-group-append>.btn\":false,\".input-group-lg>.input-group-append>.input-group-text\":false,\".input-group-lg>.input-group-prepend>.btn\":false,\".input-group-lg>.input-group-prepend>.input-group-text\":false},[\"height:calc(2.875rem + 2px)\",\"padding:.5rem 1rem\",\"font-size:1.25rem\",\"line-height:1.5\",\"border-radius:.3rem\"]],[false,{\".input-group-sm>.form-control\":false,\".input-group-sm>.input-group-append>.btn\":false,\".input-group-sm>.input-group-append>.input-group-text\":false,\".input-group-sm>.input-group-prepend>.btn\":false,\".input-group-sm>.input-group-prepend>.input-group-text\":false},[\"height:calc(1.8125rem + 2px)\",\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\",\"border-radius:.2rem\"]],[false,{\".input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle)\":false,\".input-group>.input-group-append:last-child>.input-group-text:not(:last-child)\":false,\".input-group>.input-group-append:not(:last-child)>.btn\":false,\".input-group>.input-group-append:not(:last-child)>.input-group-text\":false,\".input-group>.input-group-prepend>.btn\":false,\".input-group>.input-group-prepend>.input-group-text\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".input-group>.input-group-append>.btn\":false,\".input-group>.input-group-append>.input-group-text\":false,\".input-group>.input-group-prepend:first-child>.btn:not(:first-child)\":false,\".input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child)\":false,\".input-group>.input-group-prepend:not(:first-child)>.btn\":false,\".input-group>.input-group-prepend:not(:first-child)>.input-group-text\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".custom-control\":false},[\"position:relative\",\"display:block\",\"min-height:1.5rem\",\"padding-left:1.5rem\"]],[false,{\".custom-control-inline\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"margin-right:1rem\"]],[false,{\".custom-control-input\":false},[\"position:absolute\",\"z-index:-1\",\"opacity:0\"]],[false,{\".custom-control-input:checked~.custom-control-label::before\":false},[\"color:#fff\",\"background-color:#007bff\"]],[false,{\".custom-control-input:focus~.custom-control-label::before\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-control-input:active~.custom-control-label::before\":false},[\"color:#fff\",\"background-color:#b3d7ff\"]],[false,{\".custom-control-input:disabled~.custom-control-label\":false},[\"color:#6c757d\"]],[false,{\".custom-control-input:disabled~.custom-control-label::before\":false},[\"background-color:#e9ecef\"]],[false,{\".custom-control-label\":false},[\"position:relative\",\"margin-bottom:0\"]],[false,{\".custom-control-label::before\":false},[\"position:absolute\",\"top:.25rem\",\"left:-1.5rem\",\"display:block\",\"width:1rem\",\"height:1rem\",\"pointer-events:none\",\"content:\\\"\\\"\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\",\"background-color:#dee2e6\"]],[false,{\".custom-control-label::after\":false},[\"position:absolute\",\"top:.25rem\",\"left:-1.5rem\",\"display:block\",\"width:1rem\",\"height:1rem\",\"content:\\\"\\\"\",\"background-repeat:no-repeat\",\"background-position:center center\",\"background-size:50% 50%\"]],[false,{\".custom-checkbox .custom-control-label::before\":false},[\"border-radius:.25rem\"]],[false,{\".custom-checkbox .custom-control-input:checked~.custom-control-label::before\":false},[\"background-color:#007bff\"]],[false,{\".custom-checkbox .custom-control-input:checked~.custom-control-label::after\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'0 0 8 8\\\\\'%3E%3Cpath fill=\\\\\'%23fff\\\\\' d=\\\\\'M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before\":false},[\"background-color:#007bff\"]],[false,{\".custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'0 0 4 4\\\\\'%3E%3Cpath stroke=\\\\\'%23fff\\\\\' d=\\\\\'M0 2h4\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before\":false},[\"background-color:rgba(0,123,255,.5)\"]],[false,{\".custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before\":false},[\"background-color:rgba(0,123,255,.5)\"]],[false,{\".custom-radio .custom-control-label::before\":false},[\"border-radius:50%\"]],[false,{\".custom-radio .custom-control-input:checked~.custom-control-label::before\":false},[\"background-color:#007bff\"]],[false,{\".custom-radio .custom-control-input:checked~.custom-control-label::after\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'-4 -4 8 8\\\\\'%3E%3Ccircle r=\\\\\'3\\\\\' fill=\\\\\'%23fff\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".custom-radio .custom-control-input:disabled:checked~.custom-control-label::before\":false},[\"background-color:rgba(0,123,255,.5)\"]],[false,{\".custom-select\":false},[\"display:inline-block\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"padding:.375rem 1.75rem .375rem .75rem\",\"line-height:1.5\",\"color:#495057\",\"vertical-align:middle\",\"background:#fff url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'0 0 4 5\\\\\'%3E%3Cpath fill=\\\\\'%23343a40\\\\\' d=\\\\\'M2 0L0 2h4zm0 5L0 3h4z\\\\\'\\/%3E%3C\\/svg%3E\\\") no-repeat right .75rem center\",\"background-size:8px 10px\",\"border:1px solid #ced4da\",\"border-radius:.25rem\",\"-webkit-appearance:none\",\"-moz-appearance:none\",\"appearance:none\"]],[false,{\".custom-select:focus\":false},[\"border-color:#80bdff\",\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(128,189,255,.5)\"]],[false,{\".custom-select:focus::-ms-value\":false},[\"color:#495057\",\"background-color:#fff\"]],[false,{\".custom-select[multiple]\":false,\".custom-select[size]:not([size=\\\"1\\\"])\":false},[\"height:auto\",\"padding-right:.75rem\",\"background-image:none\"]],[false,{\".custom-select:disabled\":false},[\"color:#6c757d\",\"background-color:#e9ecef\"]],[false,{\".custom-select::-ms-expand\":false},[\"opacity:0\"]],[false,{\".custom-select-sm\":false},[\"height:calc(1.8125rem + 2px)\",\"padding-top:.375rem\",\"padding-bottom:.375rem\",\"font-size:75%\"]],[false,{\".custom-select-lg\":false},[\"height:calc(2.875rem + 2px)\",\"padding-top:.375rem\",\"padding-bottom:.375rem\",\"font-size:125%\"]],[false,{\".custom-file\":false},[\"position:relative\",\"display:inline-block\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"margin-bottom:0\"]],[false,{\".custom-file-input\":false},[\"position:relative\",\"z-index:2\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"margin:0\",\"opacity:0\"]],[false,{\".custom-file-input:focus~.custom-file-label\":false},[\"border-color:#80bdff\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-file-input:focus~.custom-file-label::after\":false},[\"border-color:#80bdff\"]],[false,{\".custom-file-input:disabled~.custom-file-label\":false},[\"background-color:#e9ecef\"]],[false,{\".custom-file-input:lang(en)~.custom-file-label::after\":false},[\"content:\\\"Browse\\\"\"]],[false,{\".custom-file-label\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"left:0\",\"z-index:1\",\"height:calc(2.25rem + 2px)\",\"padding:.375rem .75rem\",\"line-height:1.5\",\"color:#495057\",\"background-color:#fff\",\"border:1px solid #ced4da\",\"border-radius:.25rem\"]],[false,{\".custom-file-label::after\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"z-index:3\",\"display:block\",\"height:2.25rem\",\"padding:.375rem .75rem\",\"line-height:1.5\",\"color:#495057\",\"content:\\\"Browse\\\"\",\"background-color:#e9ecef\",\"border-left:1px solid #ced4da\",\"border-radius:0 .25rem .25rem 0\"]],[false,{\".custom-range\":false},[\"width:100%\",\"padding-left:0\",\"background-color:transparent\",\"-webkit-appearance:none\",\"-moz-appearance:none\",\"appearance:none\"]],[false,{\".custom-range:focus\":false},[\"outline:0\"]],[false,{\".custom-range:focus::-webkit-slider-thumb\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-range:focus::-moz-range-thumb\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-range:focus::-ms-thumb\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-range::-moz-focus-outer\":false},[\"border:0\"]],[false,{\".custom-range::-webkit-slider-thumb\":false},[\"width:1rem\",\"height:1rem\",\"margin-top:-.25rem\",\"background-color:#007bff\",\"border:0\",\"border-radius:1rem\",\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\",\"-webkit-appearance:none\",\"appearance:none\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-range::-webkit-slider-thumb\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".custom-range::-webkit-slider-thumb:active\":false},[\"background-color:#b3d7ff\"]],[false,{\".custom-range::-webkit-slider-runnable-track\":false},[\"width:100%\",\"height:.5rem\",\"color:transparent\",\"cursor:pointer\",\"background-color:#dee2e6\",\"border-color:transparent\",\"border-radius:1rem\"]],[false,{\".custom-range::-moz-range-thumb\":false},[\"width:1rem\",\"height:1rem\",\"background-color:#007bff\",\"border:0\",\"border-radius:1rem\",\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\",\"-moz-appearance:none\",\"appearance:none\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-range::-moz-range-thumb\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".custom-range::-moz-range-thumb:active\":false},[\"background-color:#b3d7ff\"]],[false,{\".custom-range::-moz-range-track\":false},[\"width:100%\",\"height:.5rem\",\"color:transparent\",\"cursor:pointer\",\"background-color:#dee2e6\",\"border-color:transparent\",\"border-radius:1rem\"]],[false,{\".custom-range::-ms-thumb\":false},[\"width:1rem\",\"height:1rem\",\"margin-top:0\",\"margin-right:.2rem\",\"margin-left:.2rem\",\"background-color:#007bff\",\"border:0\",\"border-radius:1rem\",\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\",\"appearance:none\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-range::-ms-thumb\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".custom-range::-ms-thumb:active\":false},[\"background-color:#b3d7ff\"]],[false,{\".custom-range::-ms-track\":false},[\"width:100%\",\"height:.5rem\",\"color:transparent\",\"cursor:pointer\",\"background-color:transparent\",\"border-color:transparent\",\"border-width:.5rem\"]],[false,{\".custom-range::-ms-fill-lower\":false},[\"background-color:#dee2e6\",\"border-radius:1rem\"]],[false,{\".custom-range::-ms-fill-upper\":false},[\"margin-right:15px\",\"background-color:#dee2e6\",\"border-radius:1rem\"]],[false,{\".custom-control-label::before\":false,\".custom-file-label\":false,\".custom-select\":false},[\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-control-label::before\":false,\".custom-file-label\":false,\".custom-select\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".nav\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"padding-left:0\",\"margin-bottom:0\",\"list-style:none\"]],[true,{\".nav-link\":true},[\"display:block\",\"padding:.5rem 1rem\"]],[true,{\".nav-link:focus\":true,\".nav-link:hover\":true},[\"text-decoration:none\"]],[false,{\".nav-link.disabled\":false},[\"color:#6c757d\"]],[false,{\".nav-tabs\":false},[\"border-bottom:1px solid #dee2e6\"]],[false,{\".nav-tabs .nav-item\":false},[\"margin-bottom:-1px\"]],[false,{\".nav-tabs .nav-link\":false},[\"border:1px solid transparent\",\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".nav-tabs .nav-link:focus\":false,\".nav-tabs .nav-link:hover\":false},[\"border-color:#e9ecef #e9ecef #dee2e6\"]],[false,{\".nav-tabs .nav-link.disabled\":false},[\"color:#6c757d\",\"background-color:transparent\",\"border-color:transparent\"]],[false,{\".nav-tabs .nav-item.show .nav-link\":false,\".nav-tabs .nav-link.active\":false},[\"color:#495057\",\"background-color:#fff\",\"border-color:#dee2e6 #dee2e6 #fff\"]],[false,{\".nav-tabs .dropdown-menu\":false},[\"margin-top:-1px\",\"border-top-left-radius:0\",\"border-top-right-radius:0\"]],[false,{\".nav-pills .nav-link\":false},[\"border-radius:.25rem\"]],[false,{\".nav-pills .nav-link.active\":false,\".nav-pills .show>.nav-link\":false},[\"color:#fff\",\"background-color:#007bff\"]],[false,{\".nav-fill .nav-item\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"text-align:center\"]],[false,{\".nav-justified .nav-item\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"text-align:center\"]],[false,{\".tab-content>.tab-pane\":false},[\"display:none\"]],[false,{\".tab-content>.active\":false},[\"display:block\"]],[true,{\".navbar\":true},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"padding:.5rem 1rem\"]],[true,{\".navbar>.container\":true,\".navbar>.container-fluid\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".navbar-brand\":false},[\"display:inline-block\",\"padding-top:.3125rem\",\"padding-bottom:.3125rem\",\"margin-right:1rem\",\"font-size:1.25rem\",\"line-height:inherit\",\"white-space:nowrap\"]],[false,{\".navbar-brand:focus\":false,\".navbar-brand:hover\":false},[\"text-decoration:none\"]],[true,{\".navbar-nav\":true},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"padding-left:0\",\"margin-bottom:0\",\"list-style:none\"]],[true,{\".navbar-nav .nav-link\":true},[\"padding-right:0\",\"padding-left:0\"]],[true,{\".navbar-nav .dropdown-menu\":true},[\"position:static\",\"float:none\"]],[false,{\".navbar-text\":false},[\"display:inline-block\",\"padding-top:.5rem\",\"padding-bottom:.5rem\"]],[true,{\".navbar-collapse\":true},[\"-ms-flex-preferred-size:100%\",\"flex-basis:100%\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"-ms-flex-align:center\",\"align-items:center\"]],[true,{\".navbar-toggler\":true},[\"padding:.25rem .75rem\",\"font-size:1.25rem\",\"line-height:1\",\"background-color:transparent\",\"border:1px solid transparent\",\"border-radius:.25rem\"]],[true,{\".navbar-toggler:focus\":true,\".navbar-toggler:hover\":true},[\"text-decoration:none\"]],[true,{\".navbar-toggler:not(:disabled):not(.disabled)\":true},[\"cursor:pointer\"]],[false,{\".navbar-toggler-icon\":false},[\"display:inline-block\",\"width:1.5em\",\"height:1.5em\",\"vertical-align:middle\",\"content:\\\"\\\"\",\"background:no-repeat center center\",\"background-size:100% 100%\"]],[false,\"@media (max-width:575.98px){\"],[false,{\".navbar-expand-sm>.container\":false,\".navbar-expand-sm>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,\"}\"],[false,\"@media (min-width:576px){\"],[false,{\".navbar-expand-sm\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand-sm .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand-sm .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand-sm .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand-sm>.container\":false,\".navbar-expand-sm>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand-sm .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand-sm .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand-sm .navbar-toggler\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (max-width:767.98px){\"],[false,{\".navbar-expand-md>.container\":false,\".navbar-expand-md>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".navbar-expand-md\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand-md .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand-md .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand-md .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand-md>.container\":false,\".navbar-expand-md>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand-md .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand-md .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand-md .navbar-toggler\":false},[\"display:none\"]],[false,\"}\"],[true,\"@media (max-width:991.98px){\"],[true,{\".navbar-expand-lg>.container\":true,\".navbar-expand-lg>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[true,{\".navbar-expand-lg\":true},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[true,{\".navbar-expand-lg .navbar-nav\":true},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[true,{\".navbar-expand-lg .navbar-nav .dropdown-menu\":true},[\"position:absolute\"]],[true,{\".navbar-expand-lg .navbar-nav .nav-link\":true},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[true,{\".navbar-expand-lg>.container\":true,\".navbar-expand-lg>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[true,{\".navbar-expand-lg .navbar-collapse\":true},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[true,{\".navbar-expand-lg .navbar-collapse:not(#_#_#_#_#_#_#_)\":true},[\"display:-ms-flexbox\",\"display:flex\"]],[true,{\".navbar-expand-lg .navbar-toggler\":true},[\"display:none\"]],[true,\"}\"],[false,\"@media (max-width:1199.98px){\"],[false,{\".navbar-expand-xl>.container\":false,\".navbar-expand-xl>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".navbar-expand-xl\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand-xl .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand-xl .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand-xl .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand-xl>.container\":false,\".navbar-expand-xl>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand-xl .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand-xl .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand-xl .navbar-toggler\":false},[\"display:none\"]],[false,\"}\"],[false,{\".navbar-expand\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand>.container\":false,\".navbar-expand>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,{\".navbar-expand .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand>.container\":false,\".navbar-expand>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand .navbar-toggler\":false},[\"display:none\"]],[false,{\".navbar-light .navbar-brand\":false},[\"color:rgba(0,0,0,.9)\"]],[false,{\".navbar-light .navbar-brand:focus\":false,\".navbar-light .navbar-brand:hover\":false},[\"color:rgba(0,0,0,.9)\"]],[true,{\".navbar-light .navbar-nav .nav-link\":true},[\"color:rgba(0,0,0,.5)\"]],[true,{\".navbar-light .navbar-nav .nav-link:focus\":true,\".navbar-light .navbar-nav .nav-link:hover\":true},[\"color:rgba(0,0,0,.7)\"]],[false,{\".navbar-light .navbar-nav .nav-link.disabled\":false},[\"color:rgba(0,0,0,.3)\"]],[true,{\".navbar-light .navbar-nav .active>.nav-link\":false,\".navbar-light .navbar-nav .nav-link.active\":false,\".navbar-light .navbar-nav .nav-link.show\":true,\".navbar-light .navbar-nav .show>.nav-link\":true},[\"color:rgba(0,0,0,.9)\"]],[true,{\".navbar-light .navbar-toggler\":true},[\"color:rgba(0,0,0,.5)\",\"border-color:rgba(0,0,0,.1)\"]],[false,{\".navbar-light .navbar-toggler-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg viewBox=\\\\\'0 0 30 30\\\\\' xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\'%3E%3Cpath stroke=\\\\\'rgba(0, 0, 0, 0.5)\\\\\' stroke-width=\\\\\'2\\\\\' stroke-linecap=\\\\\'round\\\\\' stroke-miterlimit=\\\\\'10\\\\\' d=\\\\\'M4 7h22M4 15h22M4 23h22\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".navbar-light .navbar-text\":false},[\"color:rgba(0,0,0,.5)\"]],[false,{\".navbar-light .navbar-text a\":false},[\"color:rgba(0,0,0,.9)\"]],[false,{\".navbar-light .navbar-text a:focus\":false,\".navbar-light .navbar-text a:hover\":false},[\"color:rgba(0,0,0,.9)\"]],[false,{\".navbar-dark .navbar-brand\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-brand:focus\":false,\".navbar-dark .navbar-brand:hover\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-nav .nav-link\":false},[\"color:rgba(255,255,255,.5)\"]],[false,{\".navbar-dark .navbar-nav .nav-link:focus\":false,\".navbar-dark .navbar-nav .nav-link:hover\":false},[\"color:rgba(255,255,255,.75)\"]],[false,{\".navbar-dark .navbar-nav .nav-link.disabled\":false},[\"color:rgba(255,255,255,.25)\"]],[false,{\".navbar-dark .navbar-nav .active>.nav-link\":false,\".navbar-dark .navbar-nav .nav-link.active\":false,\".navbar-dark .navbar-nav .nav-link.show\":false,\".navbar-dark .navbar-nav .show>.nav-link\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-toggler\":false},[\"color:rgba(255,255,255,.5)\",\"border-color:rgba(255,255,255,.1)\"]],[false,{\".navbar-dark .navbar-toggler-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg viewBox=\\\\\'0 0 30 30\\\\\' xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\'%3E%3Cpath stroke=\\\\\'rgba(255, 255, 255, 0.5)\\\\\' stroke-width=\\\\\'2\\\\\' stroke-linecap=\\\\\'round\\\\\' stroke-miterlimit=\\\\\'10\\\\\' d=\\\\\'M4 7h22M4 15h22M4 23h22\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".navbar-dark .navbar-text\":false},[\"color:rgba(255,255,255,.5)\"]],[false,{\".navbar-dark .navbar-text a\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-text a:focus\":false,\".navbar-dark .navbar-text a:hover\":false},[\"color:#fff\"]],[false,{\".card\":false},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"min-width:0\",\"word-wrap:break-word\",\"background-color:#fff\",\"background-clip:border-box\",\"border:1px solid rgba(0,0,0,.125)\",\"border-radius:.25rem\"]],[false,{\".card>hr\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".card>.list-group:first-child .list-group-item:first-child\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".card>.list-group:last-child .list-group-item:last-child\":false},[\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".card-body\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"padding:1.25rem\"]],[false,{\".card-title\":false},[\"margin-bottom:.75rem\"]],[false,{\".card-subtitle\":false},[\"margin-top:-.375rem\",\"margin-bottom:0\"]],[false,{\".card-text:last-child\":false},[\"margin-bottom:0\"]],[false,{\".card-link:hover\":false},[\"text-decoration:none\"]],[false,{\".card-link+.card-link\":false},[\"margin-left:1.25rem\"]],[false,{\".card-header\":false},[\"padding:.75rem 1.25rem\",\"margin-bottom:0\",\"background-color:rgba(0,0,0,.03)\",\"border-bottom:1px solid rgba(0,0,0,.125)\"]],[false,{\".card-header:first-child\":false},[\"border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0\"]],[false,{\".card-header+.list-group .list-group-item:first-child\":false},[\"border-top:0\"]],[false,{\".card-footer\":false},[\"padding:.75rem 1.25rem\",\"background-color:rgba(0,0,0,.03)\",\"border-top:1px solid rgba(0,0,0,.125)\"]],[false,{\".card-footer:last-child\":false},[\"border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)\"]],[false,{\".card-header-tabs\":false},[\"margin-right:-.625rem\",\"margin-bottom:-.75rem\",\"margin-left:-.625rem\",\"border-bottom:0\"]],[false,{\".card-header-pills\":false},[\"margin-right:-.625rem\",\"margin-left:-.625rem\"]],[false,{\".card-img-overlay\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"padding:1.25rem\"]],[false,{\".card-img\":false},[\"width:100%\",\"border-radius:calc(.25rem - 1px)\"]],[false,{\".card-img-top\":false},[\"width:100%\",\"border-top-left-radius:calc(.25rem - 1px)\",\"border-top-right-radius:calc(.25rem - 1px)\"]],[false,{\".card-img-bottom\":false},[\"width:100%\",\"border-bottom-right-radius:calc(.25rem - 1px)\",\"border-bottom-left-radius:calc(.25rem - 1px)\"]],[false,{\".card-deck\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".card-deck .card\":false},[\"margin-bottom:15px\"]],[false,\"@media (min-width:576px){\"],[false,{\".card-deck\":false},[\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\",\"margin-right:-15px\",\"margin-left:-15px\"]],[false,{\".card-deck .card\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex:1 0 0%\",\"flex:1 0 0%\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"margin-right:15px\",\"margin-bottom:0\",\"margin-left:15px\"]],[false,\"}\"],[false,{\".card-group\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".card-group>.card\":false},[\"margin-bottom:15px\"]],[false,\"@media (min-width:576px){\"],[false,{\".card-group\":false},[\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\"]],[false,{\".card-group>.card\":false},[\"-ms-flex:1 0 0%\",\"flex:1 0 0%\",\"margin-bottom:0\"]],[false,{\".card-group>.card+.card\":false},[\"margin-left:0\",\"border-left:0\"]],[false,{\".card-group>.card:first-child\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".card-group>.card:first-child .card-header\":false,\".card-group>.card:first-child .card-img-top\":false},[\"border-top-right-radius:0\"]],[false,{\".card-group>.card:first-child .card-footer\":false,\".card-group>.card:first-child .card-img-bottom\":false},[\"border-bottom-right-radius:0\"]],[false,{\".card-group>.card:last-child\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".card-group>.card:last-child .card-header\":false,\".card-group>.card:last-child .card-img-top\":false},[\"border-top-left-radius:0\"]],[false,{\".card-group>.card:last-child .card-footer\":false,\".card-group>.card:last-child .card-img-bottom\":false},[\"border-bottom-left-radius:0\"]],[false,{\".card-group>.card:only-child\":false},[\"border-radius:.25rem\"]],[false,{\".card-group>.card:only-child .card-header\":false,\".card-group>.card:only-child .card-img-top\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".card-group>.card:only-child .card-footer\":false,\".card-group>.card:only-child .card-img-bottom\":false},[\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".card-group>.card:not(:first-child):not(:last-child):not(:only-child)\":false},[\"border-radius:0\"]],[false,{\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer\":false,\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header\":false,\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom\":false,\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top\":false},[\"border-radius:0\"]],[false,\"}\"],[false,{\".card-columns .card\":false},[\"margin-bottom:.75rem\"]],[false,\"@media (min-width:576px){\"],[false,{\".card-columns\":false},[\"-webkit-column-count:3\",\"-moz-column-count:3\",\"column-count:3\",\"-webkit-column-gap:1.25rem\",\"-moz-column-gap:1.25rem\",\"column-gap:1.25rem\",\"orphans:1\",\"widows:1\"]],[false,{\".card-columns .card\":false},[\"display:inline-block\",\"width:100%\"]],[false,\"}\"],[false,{\".accordion .card:not(:first-of-type):not(:last-of-type)\":false},[\"border-bottom:0\",\"border-radius:0\"]],[false,{\".accordion .card:not(:first-of-type) .card-header:first-child\":false},[\"border-radius:0\"]],[false,{\".accordion .card:first-of-type\":false},[\"border-bottom:0\",\"border-bottom-right-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".accordion .card:last-of-type\":false},[\"border-top-left-radius:0\",\"border-top-right-radius:0\"]],[false,{\".breadcrumb\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"padding:.75rem 1rem\",\"margin-bottom:1rem\",\"list-style:none\",\"background-color:#e9ecef\",\"border-radius:.25rem\"]],[false,{\".breadcrumb-item+.breadcrumb-item\":false},[\"padding-left:.5rem\"]],[false,{\".breadcrumb-item+.breadcrumb-item::before\":false},[\"display:inline-block\",\"padding-right:.5rem\",\"color:#6c757d\",\"content:\\\"\\/\\\"\"]],[false,{\".breadcrumb-item+.breadcrumb-item:hover::before\":false},[\"text-decoration:underline\"]],[false,{\".breadcrumb-item+.breadcrumb-item:hover::before\":false},[\"text-decoration:none\"]],[false,{\".breadcrumb-item.active\":false},[\"color:#6c757d\"]],[false,{\".pagination\":false},[\"display:-ms-flexbox\",\"display:flex\",\"padding-left:0\",\"list-style:none\",\"border-radius:.25rem\"]],[false,{\".page-link\":false},[\"position:relative\",\"display:block\",\"padding:.5rem .75rem\",\"margin-left:-1px\",\"line-height:1.25\",\"color:#007bff\",\"background-color:#fff\",\"border:1px solid #dee2e6\"]],[false,{\".page-link:hover\":false},[\"z-index:2\",\"color:#0056b3\",\"text-decoration:none\",\"background-color:#e9ecef\",\"border-color:#dee2e6\"]],[false,{\".page-link:focus\":false},[\"z-index:2\",\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".page-link:not(:disabled):not(.disabled)\":false},[\"cursor:pointer\"]],[false,{\".page-item:first-child .page-link\":false},[\"margin-left:0\",\"border-top-left-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".page-item:last-child .page-link\":false},[\"border-top-right-radius:.25rem\",\"border-bottom-right-radius:.25rem\"]],[false,{\".page-item.active .page-link\":false},[\"z-index:1\",\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".page-item.disabled .page-link\":false},[\"color:#6c757d\",\"pointer-events:none\",\"cursor:auto\",\"background-color:#fff\",\"border-color:#dee2e6\"]],[false,{\".pagination-lg .page-link\":false},[\"padding:.75rem 1.5rem\",\"font-size:1.25rem\",\"line-height:1.5\"]],[false,{\".pagination-lg .page-item:first-child .page-link\":false},[\"border-top-left-radius:.3rem\",\"border-bottom-left-radius:.3rem\"]],[false,{\".pagination-lg .page-item:last-child .page-link\":false},[\"border-top-right-radius:.3rem\",\"border-bottom-right-radius:.3rem\"]],[false,{\".pagination-sm .page-link\":false},[\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\"]],[false,{\".pagination-sm .page-item:first-child .page-link\":false},[\"border-top-left-radius:.2rem\",\"border-bottom-left-radius:.2rem\"]],[false,{\".pagination-sm .page-item:last-child .page-link\":false},[\"border-top-right-radius:.2rem\",\"border-bottom-right-radius:.2rem\"]],[false,{\".badge\":false},[\"display:inline-block\",\"padding:.25em .4em\",\"font-size:75%\",\"font-weight:700\",\"line-height:1\",\"text-align:center\",\"white-space:nowrap\",\"vertical-align:baseline\",\"border-radius:.25rem\"]],[false,{\".badge:empty\":false},[\"display:none\"]],[false,{\".btn .badge\":false},[\"position:relative\",\"top:-1px\"]],[false,{\".badge-pill\":false},[\"padding-right:.6em\",\"padding-left:.6em\",\"border-radius:10rem\"]],[false,{\".badge-primary\":false},[\"color:#fff\",\"background-color:#007bff\"]],[false,{\".badge-primary[href]:focus\":false,\".badge-primary[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#0062cc\"]],[false,{\".badge-secondary\":false},[\"color:#fff\",\"background-color:#6c757d\"]],[false,{\".badge-secondary[href]:focus\":false,\".badge-secondary[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#545b62\"]],[false,{\".badge-success\":false},[\"color:#fff\",\"background-color:#28a745\"]],[false,{\".badge-success[href]:focus\":false,\".badge-success[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#1e7e34\"]],[false,{\".badge-info\":false},[\"color:#fff\",\"background-color:#17a2b8\"]],[false,{\".badge-info[href]:focus\":false,\".badge-info[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#117a8b\"]],[false,{\".badge-warning\":false},[\"color:#212529\",\"background-color:#ffc107\"]],[false,{\".badge-warning[href]:focus\":false,\".badge-warning[href]:hover\":false},[\"color:#212529\",\"text-decoration:none\",\"background-color:#d39e00\"]],[false,{\".badge-danger\":false},[\"color:#fff\",\"background-color:#dc3545\"]],[false,{\".badge-danger[href]:focus\":false,\".badge-danger[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#bd2130\"]],[false,{\".badge-light\":false},[\"color:#212529\",\"background-color:#f8f9fa\"]],[false,{\".badge-light[href]:focus\":false,\".badge-light[href]:hover\":false},[\"color:#212529\",\"text-decoration:none\",\"background-color:#dae0e5\"]],[false,{\".badge-dark\":false},[\"color:#fff\",\"background-color:#343a40\"]],[false,{\".badge-dark[href]:focus\":false,\".badge-dark[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#1d2124\"]],[false,{\".jumbotron\":false},[\"padding:2rem 1rem\",\"margin-bottom:2rem\",\"background-color:#e9ecef\",\"border-radius:.3rem\"]],[false,\"@media (min-width:576px){\"],[false,{\".jumbotron\":false},[\"padding:4rem 2rem\"]],[false,\"}\"],[false,{\".jumbotron-fluid\":false},[\"padding-right:0\",\"padding-left:0\",\"border-radius:0\"]],[false,{\".alert\":false},[\"position:relative\",\"padding:.75rem 1.25rem\",\"margin-bottom:1rem\",\"border:1px solid transparent\",\"border-radius:.25rem\"]],[false,{\".alert-heading\":false},[\"color:inherit\"]],[false,{\".alert-link\":false},[\"font-weight:700\"]],[false,{\".alert-dismissible\":false},[\"padding-right:4rem\"]],[false,{\".alert-dismissible .close\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"padding:.75rem 1.25rem\",\"color:inherit\"]],[false,{\".alert-primary\":false},[\"color:#004085\",\"background-color:#cce5ff\",\"border-color:#b8daff\"]],[false,{\".alert-primary hr\":false},[\"border-top-color:#9fcdff\"]],[false,{\".alert-primary .alert-link\":false},[\"color:#002752\"]],[false,{\".alert-secondary\":false},[\"color:#383d41\",\"background-color:#e2e3e5\",\"border-color:#d6d8db\"]],[false,{\".alert-secondary hr\":false},[\"border-top-color:#c8cbcf\"]],[false,{\".alert-secondary .alert-link\":false},[\"color:#202326\"]],[false,{\".alert-success\":false},[\"color:#155724\",\"background-color:#d4edda\",\"border-color:#c3e6cb\"]],[false,{\".alert-success hr\":false},[\"border-top-color:#b1dfbb\"]],[false,{\".alert-success .alert-link\":false},[\"color:#0b2e13\"]],[false,{\".alert-info\":false},[\"color:#0c5460\",\"background-color:#d1ecf1\",\"border-color:#bee5eb\"]],[false,{\".alert-info hr\":false},[\"border-top-color:#abdde5\"]],[false,{\".alert-info .alert-link\":false},[\"color:#062c33\"]],[false,{\".alert-warning\":false},[\"color:#856404\",\"background-color:#fff3cd\",\"border-color:#ffeeba\"]],[false,{\".alert-warning hr\":false},[\"border-top-color:#ffe8a1\"]],[false,{\".alert-warning .alert-link\":false},[\"color:#533f03\"]],[false,{\".alert-danger\":false},[\"color:#721c24\",\"background-color:#f8d7da\",\"border-color:#f5c6cb\"]],[false,{\".alert-danger hr\":false},[\"border-top-color:#f1b0b7\"]],[false,{\".alert-danger .alert-link\":false},[\"color:#491217\"]],[false,{\".alert-light\":false},[\"color:#818182\",\"background-color:#fefefe\",\"border-color:#fdfdfe\"]],[false,{\".alert-light hr\":false},[\"border-top-color:#ececf6\"]],[false,{\".alert-light .alert-link\":false},[\"color:#686868\"]],[false,{\".alert-dark\":false},[\"color:#1b1e21\",\"background-color:#d6d8d9\",\"border-color:#c6c8ca\"]],[false,{\".alert-dark hr\":false},[\"border-top-color:#b9bbbe\"]],[false,{\".alert-dark .alert-link\":false},[\"color:#040505\"]],[true,\"@-webkit-keyframes progress-bar-stripes{\"],[true,\"from{background-position:1rem 0}\"],[true,\"to{background-position:0 0}\"],[true,\"}@keyframes progress-bar-stripes{\"],[true,\"from{background-position:1rem 0}\"],[true,\"to{background-position:0 0}\"],[true,\"}\"],[false,{\".progress\":false},[\"display:-ms-flexbox\",\"display:flex\",\"height:1rem\",\"overflow:hidden\",\"font-size:.75rem\",\"background-color:#e9ecef\",\"border-radius:.25rem\"]],[false,{\".progress-bar\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"-ms-flex-pack:center\",\"justify-content:center\",\"color:#fff\",\"text-align:center\",\"white-space:nowrap\",\"background-color:#007bff\",\"transition:width .6s ease\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".progress-bar\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".progress-bar-striped\":false},[\"background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)\",\"background-size:1rem 1rem\"]],[false,{\".progress-bar-animated\":false},[\"-webkit-animation:progress-bar-stripes 1s linear infinite\",\"animation:progress-bar-stripes 1s linear infinite\"]],[false,{\".media\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".media-body\":false},[\"-ms-flex:1\",\"flex:1\"]],[false,{\".list-group\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"padding-left:0\",\"margin-bottom:0\"]],[false,{\".list-group-item-action\":false},[\"width:100%\",\"color:#495057\",\"text-align:inherit\"]],[false,{\".list-group-item-action:focus\":false,\".list-group-item-action:hover\":false},[\"color:#495057\",\"text-decoration:none\",\"background-color:#f8f9fa\"]],[false,{\".list-group-item-action:active\":false},[\"color:#212529\",\"background-color:#e9ecef\"]],[false,{\".list-group-item\":false},[\"position:relative\",\"display:block\",\"padding:.75rem 1.25rem\",\"margin-bottom:-1px\",\"background-color:#fff\",\"border:1px solid rgba(0,0,0,.125)\"]],[false,{\".list-group-item:first-child\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".list-group-item:last-child\":false},[\"margin-bottom:0\",\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".list-group-item:focus\":false,\".list-group-item:hover\":false},[\"z-index:1\",\"text-decoration:none\"]],[false,{\".list-group-item.disabled\":false,\".list-group-item:disabled\":false},[\"color:#6c757d\",\"background-color:#fff\"]],[false,{\".list-group-item.active\":false},[\"z-index:2\",\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".list-group-flush .list-group-item\":false},[\"border-right:0\",\"border-left:0\",\"border-radius:0\"]],[false,{\".list-group-flush:first-child .list-group-item:first-child\":false},[\"border-top:0\"]],[false,{\".list-group-flush:last-child .list-group-item:last-child\":false},[\"border-bottom:0\"]],[false,{\".list-group-item-primary\":false},[\"color:#004085\",\"background-color:#b8daff\"]],[false,{\".list-group-item-primary.list-group-item-action:focus\":false,\".list-group-item-primary.list-group-item-action:hover\":false},[\"color:#004085\",\"background-color:#9fcdff\"]],[false,{\".list-group-item-primary.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#004085\",\"border-color:#004085\"]],[false,{\".list-group-item-secondary\":false},[\"color:#383d41\",\"background-color:#d6d8db\"]],[false,{\".list-group-item-secondary.list-group-item-action:focus\":false,\".list-group-item-secondary.list-group-item-action:hover\":false},[\"color:#383d41\",\"background-color:#c8cbcf\"]],[false,{\".list-group-item-secondary.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#383d41\",\"border-color:#383d41\"]],[false,{\".list-group-item-success\":false},[\"color:#155724\",\"background-color:#c3e6cb\"]],[false,{\".list-group-item-success.list-group-item-action:focus\":false,\".list-group-item-success.list-group-item-action:hover\":false},[\"color:#155724\",\"background-color:#b1dfbb\"]],[false,{\".list-group-item-success.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#155724\",\"border-color:#155724\"]],[false,{\".list-group-item-info\":false},[\"color:#0c5460\",\"background-color:#bee5eb\"]],[false,{\".list-group-item-info.list-group-item-action:focus\":false,\".list-group-item-info.list-group-item-action:hover\":false},[\"color:#0c5460\",\"background-color:#abdde5\"]],[false,{\".list-group-item-info.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#0c5460\",\"border-color:#0c5460\"]],[false,{\".list-group-item-warning\":false},[\"color:#856404\",\"background-color:#ffeeba\"]],[false,{\".list-group-item-warning.list-group-item-action:focus\":false,\".list-group-item-warning.list-group-item-action:hover\":false},[\"color:#856404\",\"background-color:#ffe8a1\"]],[false,{\".list-group-item-warning.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#856404\",\"border-color:#856404\"]],[false,{\".list-group-item-danger\":false},[\"color:#721c24\",\"background-color:#f5c6cb\"]],[false,{\".list-group-item-danger.list-group-item-action:focus\":false,\".list-group-item-danger.list-group-item-action:hover\":false},[\"color:#721c24\",\"background-color:#f1b0b7\"]],[false,{\".list-group-item-danger.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#721c24\",\"border-color:#721c24\"]],[false,{\".list-group-item-light\":false},[\"color:#818182\",\"background-color:#fdfdfe\"]],[false,{\".list-group-item-light.list-group-item-action:focus\":false,\".list-group-item-light.list-group-item-action:hover\":false},[\"color:#818182\",\"background-color:#ececf6\"]],[false,{\".list-group-item-light.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#818182\",\"border-color:#818182\"]],[false,{\".list-group-item-dark\":false},[\"color:#1b1e21\",\"background-color:#c6c8ca\"]],[false,{\".list-group-item-dark.list-group-item-action:focus\":false,\".list-group-item-dark.list-group-item-action:hover\":false},[\"color:#1b1e21\",\"background-color:#b9bbbe\"]],[false,{\".list-group-item-dark.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#1b1e21\",\"border-color:#1b1e21\"]],[false,{\".close\":false},[\"float:right\",\"font-size:1.5rem\",\"font-weight:700\",\"line-height:1\",\"color:#000\",\"text-shadow:0 1px 0 #fff\",\"opacity:.5\"]],[false,{\".close:not(:disabled):not(.disabled)\":false},[\"cursor:pointer\"]],[false,{\".close:not(:disabled):not(.disabled):focus\":false,\".close:not(:disabled):not(.disabled):hover\":false},[\"color:#000\",\"text-decoration:none\",\"opacity:.75\"]],[false,{\"button.close\":false},[\"padding:0\",\"background-color:transparent\",\"border:0\",\"-webkit-appearance:none\"]],[false,{\".modal-open\":false},[\"overflow:hidden\"]],[false,{\".modal-open .modal\":false},[\"overflow-x:hidden\",\"overflow-y:auto\"]],[false,{\".modal\":false},[\"position:fixed\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"z-index:1050\",\"display:none\",\"overflow:hidden\",\"outline:0\"]],[false,{\".modal-dialog\":false},[\"position:relative\",\"width:auto\",\"margin:.5rem\",\"pointer-events:none\"]],[false,{\".modal.fade .modal-dialog\":false},[\"transition:-webkit-transform .3s ease-out\",\"transition:transform .3s ease-out\",\"transition:transform .3s ease-out,-webkit-transform .3s ease-out\",\"-webkit-transform:translate(0,-25%)\",\"transform:translate(0,-25%)\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".modal.fade .modal-dialog\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".modal.show .modal-dialog\":false},[\"-webkit-transform:translate(0,0)\",\"transform:translate(0,0)\"]],[false,{\".modal-dialog-centered\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"min-height:calc(100% - ( .5rem * 2 ))\"]],[false,{\".modal-dialog-centered::before\":false},[\"display:block\",\"height:calc(100vh - ( .5rem * 2 ))\",\"content:\\\"\\\"\"]],[false,{\".modal-content\":false},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"width:100%\",\"pointer-events:auto\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid rgba(0,0,0,.2)\",\"border-radius:.3rem\",\"outline:0\"]],[false,{\".modal-backdrop\":false},[\"position:fixed\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"z-index:1040\",\"background-color:#000\"]],[false,{\".modal-backdrop.fade\":false},[\"opacity:0\"]],[false,{\".modal-backdrop.show\":false},[\"opacity:.5\"]],[false,{\".modal-header\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:start\",\"align-items:flex-start\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"padding:1rem\",\"border-bottom:1px solid #e9ecef\",\"border-top-left-radius:.3rem\",\"border-top-right-radius:.3rem\"]],[false,{\".modal-header .close\":false},[\"padding:1rem\",\"margin:-1rem -1rem -1rem auto\"]],[false,{\".modal-title\":false},[\"margin-bottom:0\",\"line-height:1.5\"]],[false,{\".modal-body\":false},[\"position:relative\",\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"padding:1rem\"]],[false,{\".modal-footer\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:end\",\"justify-content:flex-end\",\"padding:1rem\",\"border-top:1px solid #e9ecef\"]],[false,{\".modal-footer>:not(:first-child)\":false},[\"margin-left:.25rem\"]],[false,{\".modal-footer>:not(:last-child)\":false},[\"margin-right:.25rem\"]],[false,{\".modal-scrollbar-measure\":false},[\"position:absolute\",\"top:-9999px\",\"width:50px\",\"height:50px\",\"overflow:scroll\"]],[false,\"@media (min-width:576px){\"],[false,{\".modal-dialog\":false},[\"max-width:500px\",\"margin:1.75rem auto\"]],[false,{\".modal-dialog-centered\":false},[\"min-height:calc(100% - ( 1.75rem * 2 ))\"]],[false,{\".modal-dialog-centered::before\":false},[\"height:calc(100vh - ( 1.75rem * 2 ))\"]],[false,{\".modal-sm\":false},[\"max-width:300px\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".modal-lg\":false},[\"max-width:800px\"]],[false,\"}\"],[false,{\".tooltip\":false},[\"position:absolute\",\"z-index:1070\",\"display:block\",\"margin:0\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"font-style:normal\",\"font-weight:400\",\"line-height:1.5\",\"text-align:left\",\"text-align:start\",\"text-decoration:none\",\"text-shadow:none\",\"text-transform:none\",\"letter-spacing:normal\",\"word-break:normal\",\"word-spacing:normal\",\"white-space:normal\",\"line-break:auto\",\"font-size:.875rem\",\"word-wrap:break-word\",\"opacity:0\"]],[false,{\".tooltip.show\":false},[\"opacity:.9\"]],[false,{\".tooltip .arrow\":false},[\"position:absolute\",\"display:block\",\"width:.8rem\",\"height:.4rem\"]],[false,{\".tooltip .arrow::before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"border-color:transparent\",\"border-style:solid\"]],[false,{\".bs-tooltip-auto[x-placement^=top]\":false,\".bs-tooltip-top\":false},[\"padding:.4rem 0\"]],[false,{\".bs-tooltip-auto[x-placement^=top] .arrow\":false,\".bs-tooltip-top .arrow\":false},[\"bottom:0\"]],[false,{\".bs-tooltip-auto[x-placement^=top] .arrow::before\":false,\".bs-tooltip-top .arrow::before\":false},[\"top:0\",\"border-width:.4rem .4rem 0\",\"border-top-color:#000\"]],[false,{\".bs-tooltip-auto[x-placement^=right]\":false,\".bs-tooltip-right\":false},[\"padding:0 .4rem\"]],[false,{\".bs-tooltip-auto[x-placement^=right] .arrow\":false,\".bs-tooltip-right .arrow\":false},[\"left:0\",\"width:.4rem\",\"height:.8rem\"]],[false,{\".bs-tooltip-auto[x-placement^=right] .arrow::before\":false,\".bs-tooltip-right .arrow::before\":false},[\"right:0\",\"border-width:.4rem .4rem .4rem 0\",\"border-right-color:#000\"]],[false,{\".bs-tooltip-auto[x-placement^=bottom]\":false,\".bs-tooltip-bottom\":false},[\"padding:.4rem 0\"]],[false,{\".bs-tooltip-auto[x-placement^=bottom] .arrow\":false,\".bs-tooltip-bottom .arrow\":false},[\"top:0\"]],[false,{\".bs-tooltip-auto[x-placement^=bottom] .arrow::before\":false,\".bs-tooltip-bottom .arrow::before\":false},[\"bottom:0\",\"border-width:0 .4rem .4rem\",\"border-bottom-color:#000\"]],[false,{\".bs-tooltip-auto[x-placement^=left]\":false,\".bs-tooltip-left\":false},[\"padding:0 .4rem\"]],[false,{\".bs-tooltip-auto[x-placement^=left] .arrow\":false,\".bs-tooltip-left .arrow\":false},[\"right:0\",\"width:.4rem\",\"height:.8rem\"]],[false,{\".bs-tooltip-auto[x-placement^=left] .arrow::before\":false,\".bs-tooltip-left .arrow::before\":false},[\"left:0\",\"border-width:.4rem 0 .4rem .4rem\",\"border-left-color:#000\"]],[false,{\".tooltip-inner\":false},[\"max-width:200px\",\"padding:.25rem .5rem\",\"color:#fff\",\"text-align:center\",\"background-color:#000\",\"border-radius:.25rem\"]],[false,{\".popover\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"z-index:1060\",\"display:block\",\"max-width:276px\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"font-style:normal\",\"font-weight:400\",\"line-height:1.5\",\"text-align:left\",\"text-align:start\",\"text-decoration:none\",\"text-shadow:none\",\"text-transform:none\",\"letter-spacing:normal\",\"word-break:normal\",\"word-spacing:normal\",\"white-space:normal\",\"line-break:auto\",\"font-size:.875rem\",\"word-wrap:break-word\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid rgba(0,0,0,.2)\",\"border-radius:.3rem\"]],[false,{\".popover .arrow\":false},[\"position:absolute\",\"display:block\",\"width:1rem\",\"height:.5rem\",\"margin:0 .3rem\"]],[false,{\".popover .arrow::after\":false,\".popover .arrow::before\":false},[\"position:absolute\",\"display:block\",\"content:\\\"\\\"\",\"border-color:transparent\",\"border-style:solid\"]],[false,{\".bs-popover-auto[x-placement^=top]\":false,\".bs-popover-top\":false},[\"margin-bottom:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow\":false,\".bs-popover-top .arrow\":false},[\"bottom:calc(( .5rem + 1px ) * -1)\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow::after\":false,\".bs-popover-auto[x-placement^=top] .arrow::before\":false,\".bs-popover-top .arrow::after\":false,\".bs-popover-top .arrow::before\":false},[\"border-width:.5rem .5rem 0\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow::before\":false,\".bs-popover-top .arrow::before\":false},[\"bottom:0\",\"border-top-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow::after\":false,\".bs-popover-top .arrow::after\":false},[\"bottom:1px\",\"border-top-color:#fff\"]],[false,{\".bs-popover-auto[x-placement^=right]\":false,\".bs-popover-right\":false},[\"margin-left:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow\":false,\".bs-popover-right .arrow\":false},[\"left:calc(( .5rem + 1px ) * -1)\",\"width:.5rem\",\"height:1rem\",\"margin:.3rem 0\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow::after\":false,\".bs-popover-auto[x-placement^=right] .arrow::before\":false,\".bs-popover-right .arrow::after\":false,\".bs-popover-right .arrow::before\":false},[\"border-width:.5rem .5rem .5rem 0\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow::before\":false,\".bs-popover-right .arrow::before\":false},[\"left:0\",\"border-right-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow::after\":false,\".bs-popover-right .arrow::after\":false},[\"left:1px\",\"border-right-color:#fff\"]],[false,{\".bs-popover-auto[x-placement^=bottom]\":false,\".bs-popover-bottom\":false},[\"margin-top:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow\":false,\".bs-popover-bottom .arrow\":false},[\"top:calc(( .5rem + 1px ) * -1)\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow::after\":false,\".bs-popover-auto[x-placement^=bottom] .arrow::before\":false,\".bs-popover-bottom .arrow::after\":false,\".bs-popover-bottom .arrow::before\":false},[\"border-width:0 .5rem .5rem .5rem\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow::before\":false,\".bs-popover-bottom .arrow::before\":false},[\"top:0\",\"border-bottom-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow::after\":false,\".bs-popover-bottom .arrow::after\":false},[\"top:1px\",\"border-bottom-color:#fff\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .popover-header::before\":false,\".bs-popover-bottom .popover-header::before\":false},[\"position:absolute\",\"top:0\",\"left:50%\",\"display:block\",\"width:1rem\",\"margin-left:-.5rem\",\"content:\\\"\\\"\",\"border-bottom:1px solid #f7f7f7\"]],[false,{\".bs-popover-auto[x-placement^=left]\":false,\".bs-popover-left\":false},[\"margin-right:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow\":false,\".bs-popover-left .arrow\":false},[\"right:calc(( .5rem + 1px ) * -1)\",\"width:.5rem\",\"height:1rem\",\"margin:.3rem 0\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow::after\":false,\".bs-popover-auto[x-placement^=left] .arrow::before\":false,\".bs-popover-left .arrow::after\":false,\".bs-popover-left .arrow::before\":false},[\"border-width:.5rem 0 .5rem .5rem\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow::before\":false,\".bs-popover-left .arrow::before\":false},[\"right:0\",\"border-left-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow::after\":false,\".bs-popover-left .arrow::after\":false},[\"right:1px\",\"border-left-color:#fff\"]],[false,{\".popover-header\":false},[\"padding:.5rem .75rem\",\"margin-bottom:0\",\"font-size:1rem\",\"color:inherit\",\"background-color:#f7f7f7\",\"border-bottom:1px solid #ebebeb\",\"border-top-left-radius:calc(.3rem - 1px)\",\"border-top-right-radius:calc(.3rem - 1px)\"]],[false,{\".popover-header:empty\":false},[\"display:none\"]],[false,{\".popover-body\":false},[\"padding:.5rem .75rem\",\"color:#212529\"]],[false,{\".carousel\":false},[\"position:relative\"]],[false,{\".carousel-inner\":false},[\"position:relative\",\"width:100%\",\"overflow:hidden\"]],[false,{\".carousel-item\":false},[\"position:relative\",\"display:none\",\"-ms-flex-align:center\",\"align-items:center\",\"width:100%\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"-webkit-perspective:1000px\",\"perspective:1000px\"]],[false,{\".carousel-item-next\":false,\".carousel-item-prev\":false,\".carousel-item.active\":false},[\"display:block\",\"transition:-webkit-transform .6s ease\",\"transition:transform .6s ease\",\"transition:transform .6s ease,-webkit-transform .6s ease\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".carousel-item-next\":false,\".carousel-item-prev\":false,\".carousel-item.active\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".carousel-item-next\":false,\".carousel-item-prev\":false},[\"position:absolute\",\"top:0\"]],[false,{\".carousel-item-next.carousel-item-left\":false,\".carousel-item-prev.carousel-item-right\":false},[\"-webkit-transform:translateX(0)\",\"transform:translateX(0)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".carousel-item-next.carousel-item-left\":false,\".carousel-item-prev.carousel-item-right\":false},[\"-webkit-transform:translate3d(0,0,0)\",\"transform:translate3d(0,0,0)\"]],[false,\"}\"],[false,{\".active.carousel-item-right\":false,\".carousel-item-next\":false},[\"-webkit-transform:translateX(100%)\",\"transform:translateX(100%)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".active.carousel-item-right\":false,\".carousel-item-next\":false},[\"-webkit-transform:translate3d(100%,0,0)\",\"transform:translate3d(100%,0,0)\"]],[false,\"}\"],[false,{\".active.carousel-item-left\":false,\".carousel-item-prev\":false},[\"-webkit-transform:translateX(-100%)\",\"transform:translateX(-100%)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".active.carousel-item-left\":false,\".carousel-item-prev\":false},[\"-webkit-transform:translate3d(-100%,0,0)\",\"transform:translate3d(-100%,0,0)\"]],[false,\"}\"],[false,{\".carousel-fade .carousel-item\":false},[\"opacity:0\",\"transition-duration:.6s\",\"transition-property:opacity\"]],[false,{\".carousel-fade .carousel-item-next.carousel-item-left\":false,\".carousel-fade .carousel-item-prev.carousel-item-right\":false,\".carousel-fade .carousel-item.active\":false},[\"opacity:1\"]],[false,{\".carousel-fade .active.carousel-item-left\":false,\".carousel-fade .active.carousel-item-right\":false},[\"opacity:0\"]],[false,{\".carousel-fade .active.carousel-item-left\":false,\".carousel-fade .active.carousel-item-prev\":false,\".carousel-fade .carousel-item-next\":false,\".carousel-fade .carousel-item-prev\":false,\".carousel-fade .carousel-item.active\":false},[\"-webkit-transform:translateX(0)\",\"transform:translateX(0)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".carousel-fade .active.carousel-item-left\":false,\".carousel-fade .active.carousel-item-prev\":false,\".carousel-fade .carousel-item-next\":false,\".carousel-fade .carousel-item-prev\":false,\".carousel-fade .carousel-item.active\":false},[\"-webkit-transform:translate3d(0,0,0)\",\"transform:translate3d(0,0,0)\"]],[false,\"}\"],[false,{\".carousel-control-next\":false,\".carousel-control-prev\":false},[\"position:absolute\",\"top:0\",\"bottom:0\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"width:15%\",\"color:#fff\",\"text-align:center\",\"opacity:.5\"]],[false,{\".carousel-control-next:focus\":false,\".carousel-control-next:hover\":false,\".carousel-control-prev:focus\":false,\".carousel-control-prev:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"outline:0\",\"opacity:.9\"]],[false,{\".carousel-control-prev\":false},[\"left:0\"]],[false,{\".carousel-control-next\":false},[\"right:0\"]],[false,{\".carousel-control-next-icon\":false,\".carousel-control-prev-icon\":false},[\"display:inline-block\",\"width:20px\",\"height:20px\",\"background:transparent no-repeat center center\",\"background-size:100% 100%\"]],[false,{\".carousel-control-prev-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' fill=\\\\\'%23fff\\\\\' viewBox=\\\\\'0 0 8 8\\\\\'%3E%3Cpath d=\\\\\'M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".carousel-control-next-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' fill=\\\\\'%23fff\\\\\' viewBox=\\\\\'0 0 8 8\\\\\'%3E%3Cpath d=\\\\\'M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".carousel-indicators\":false},[\"position:absolute\",\"right:0\",\"bottom:10px\",\"left:0\",\"z-index:15\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-pack:center\",\"justify-content:center\",\"padding-left:0\",\"margin-right:15%\",\"margin-left:15%\",\"list-style:none\"]],[false,{\".carousel-indicators li\":false},[\"position:relative\",\"-ms-flex:0 1 auto\",\"flex:0 1 auto\",\"width:30px\",\"height:3px\",\"margin-right:3px\",\"margin-left:3px\",\"text-indent:-999px\",\"cursor:pointer\",\"background-color:rgba(255,255,255,.5)\"]],[false,{\".carousel-indicators li::before\":false},[\"position:absolute\",\"top:-10px\",\"left:0\",\"display:inline-block\",\"width:100%\",\"height:10px\",\"content:\\\"\\\"\"]],[false,{\".carousel-indicators li::after\":false},[\"position:absolute\",\"bottom:-10px\",\"left:0\",\"display:inline-block\",\"width:100%\",\"height:10px\",\"content:\\\"\\\"\"]],[false,{\".carousel-indicators .active\":false},[\"background-color:#fff\"]],[false,{\".carousel-caption\":false},[\"position:absolute\",\"right:15%\",\"bottom:20px\",\"left:15%\",\"z-index:10\",\"padding-top:20px\",\"padding-bottom:20px\",\"color:#fff\",\"text-align:center\"]],[false,{\".align-baseline:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:baseline\"]],[false,{\".align-top:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:top\"]],[false,{\".align-middle:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:middle\"]],[false,{\".align-bottom:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:bottom\"]],[false,{\".align-text-bottom:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:text-bottom\"]],[false,{\".align-text-top:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:text-top\"]],[false,{\".bg-primary:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#007bff\"]],[false,{\"a.bg-primary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-primary:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-primary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-primary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#0062cc\"]],[false,{\".bg-secondary:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#6c757d\"]],[false,{\"a.bg-secondary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-secondary:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-secondary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-secondary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#545b62\"]],[false,{\".bg-success:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#28a745\"]],[false,{\"a.bg-success:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-success:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-success:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-success:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#1e7e34\"]],[false,{\".bg-info:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#17a2b8\"]],[false,{\"a.bg-info:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-info:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-info:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-info:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#117a8b\"]],[false,{\".bg-warning:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#ffc107\"]],[false,{\"a.bg-warning:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-warning:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-warning:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-warning:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#d39e00\"]],[false,{\".bg-danger:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#dc3545\"]],[false,{\"a.bg-danger:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-danger:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-danger:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-danger:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#bd2130\"]],[true,{\".bg-light:not(#_#_#_#_#_#_#_)\":true},[\"background-color:#f8f9fa\"]],[true,{\"a.bg-light:focus:not(#_#_#_#_#_#_#_#_)\":true,\"a.bg-light:hover:not(#_#_#_#_#_#_#_#_)\":true,\"button.bg-light:focus:not(#_#_#_#_#_#_#_#_)\":true,\"button.bg-light:hover:not(#_#_#_#_#_#_#_#_)\":true},[\"background-color:#dae0e5\"]],[false,{\".bg-dark:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#343a40\"]],[false,{\"a.bg-dark:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-dark:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-dark:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-dark:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#1d2124\"]],[false,{\".bg-white:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#fff\"]],[false,{\".bg-transparent:not(#_#_#_#_#_#_#_)\":false},[\"background-color:transparent\"]],[false,{\".border:not(#_#_#_#_#_#_#_)\":false},[\"border:1px solid #dee2e6\"]],[false,{\".border-top:not(#_#_#_#_#_#_#_)\":false},[\"border-top:1px solid #dee2e6\"]],[false,{\".border-right:not(#_#_#_#_#_#_#_)\":false},[\"border-right:1px solid #dee2e6\"]],[false,{\".border-bottom:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom:1px solid #dee2e6\"]],[false,{\".border-left:not(#_#_#_#_#_#_#_)\":false},[\"border-left:1px solid #dee2e6\"]],[false,{\".border-0:not(#_#_#_#_#_#_#_)\":false},[\"border:0\"]],[false,{\".border-top-0:not(#_#_#_#_#_#_#_)\":false},[\"border-top:0\"]],[false,{\".border-right-0:not(#_#_#_#_#_#_#_)\":false},[\"border-right:0\"]],[false,{\".border-bottom-0:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom:0\"]],[false,{\".border-left-0:not(#_#_#_#_#_#_#_)\":false},[\"border-left:0\"]],[false,{\".border-primary:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#007bff\"]],[false,{\".border-secondary:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#6c757d\"]],[false,{\".border-success:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#28a745\"]],[false,{\".border-info:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#17a2b8\"]],[false,{\".border-warning:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#ffc107\"]],[false,{\".border-danger:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#dc3545\"]],[false,{\".border-light:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#f8f9fa\"]],[false,{\".border-dark:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#343a40\"]],[false,{\".border-white:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#fff\"]],[false,{\".rounded:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:.25rem\"]],[false,{\".rounded-top:not(#_#_#_#_#_#_#_)\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".rounded-right:not(#_#_#_#_#_#_#_)\":false},[\"border-top-right-radius:.25rem\",\"border-bottom-right-radius:.25rem\"]],[false,{\".rounded-bottom:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".rounded-left:not(#_#_#_#_#_#_#_)\":false},[\"border-top-left-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".rounded-circle:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:50%\"]],[false,{\".rounded-0:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[false,{\".clearfix::after\":false},[\"display:block\",\"clear:both\",\"content:\\\"\\\"\"]],[false,{\".d-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"@media (min-width:576px){\"],[false,{\".d-sm-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-sm-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-sm-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-sm-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-sm-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-sm-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-sm-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-sm-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-sm-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".d-md-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-md-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-md-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-md-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-md-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-md-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-md-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-md-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-md-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".d-lg-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-lg-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-lg-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-lg-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-lg-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-lg-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-lg-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-lg-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-lg-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".d-xl-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-xl-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-xl-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-xl-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-xl-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-xl-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-xl-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-xl-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-xl-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media print{\"],[false,{\".d-print-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-print-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-print-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-print-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-print-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-print-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-print-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-print-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-print-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,{\".embed-responsive\":false},[\"position:relative\",\"display:block\",\"width:100%\",\"padding:0\",\"overflow:hidden\"]],[false,{\".embed-responsive::before\":false},[\"display:block\",\"content:\\\"\\\"\"]],[false,{\".embed-responsive .embed-responsive-item\":false,\".embed-responsive embed\":false,\".embed-responsive amp-iframe\":false,\".embed-responsive amp-google-document-embed\":false,\".embed-responsive amp-video\":false,\".embed-responsive amp-youtube\":false},[\"position:absolute\",\"top:0\",\"bottom:0\",\"left:0\",\"width:100%\",\"height:100%\",\"border:0\"]],[false,{\".embed-responsive-21by9::before\":false},[\"padding-top:42.857143%\"]],[false,{\".embed-responsive-16by9::before\":false},[\"padding-top:56.25%\"]],[false,{\".embed-responsive-4by3::before\":false},[\"padding-top:75%\"]],[false,{\".embed-responsive-1by1::before\":false},[\"padding-top:100%\"]],[false,{\".flex-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[true,{\".align-items-center:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[true,{\".align-self-end:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[true,{\".align-self-center:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"@media (min-width:576px){\"],[false,{\".flex-sm-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-sm-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-sm-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-sm-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-sm-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-sm-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-sm-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-sm-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-sm-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-sm-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-sm-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-sm-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-sm-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-sm-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-sm-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-sm-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-sm-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-sm-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-sm-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-sm-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-sm-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".flex-md-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-md-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-md-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-md-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-md-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-md-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-md-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-md-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-md-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-md-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-md-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-md-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-md-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-md-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-md-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-md-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-md-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-md-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-md-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-md-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-md-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".flex-lg-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-lg-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-lg-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-lg-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-lg-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-lg-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-lg-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-lg-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-lg-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-lg-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-lg-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-lg-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-lg-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-lg-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-lg-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-lg-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-lg-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-lg-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-lg-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-lg-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-lg-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".flex-xl-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-xl-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-xl-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-xl-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-xl-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-xl-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-xl-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-xl-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-xl-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-xl-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-xl-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-xl-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-xl-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-xl-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-xl-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-xl-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-xl-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-xl-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-xl-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-xl-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-xl-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[false,{\".float-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"@media (min-width:576px){\"],[false,{\".float-sm-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-sm-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-sm-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".float-md-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-md-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-md-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".float-lg-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-lg-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-lg-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".float-xl-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-xl-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-xl-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,{\".position-static:not(#_#_#_#_#_#_#_)\":false},[\"position:static\"]],[false,{\".position-relative:not(#_#_#_#_#_#_#_)\":false},[\"position:relative\"]],[false,{\".position-absolute:not(#_#_#_#_#_#_#_)\":false},[\"position:absolute\"]],[false,{\".position-fixed:not(#_#_#_#_#_#_#_)\":false},[\"position:fixed\"]],[false,{\".position-sticky:not(#_#_#_#_#_#_#_)\":false},[\"position:-webkit-sticky\",\"position:sticky\"]],[false,{\".fixed-top\":false},[\"position:fixed\",\"top:0\",\"right:0\",\"left:0\",\"z-index:1030\"]],[false,{\".fixed-bottom\":false},[\"position:fixed\",\"right:0\",\"bottom:0\",\"left:0\",\"z-index:1030\"]],[false,\"@supports ((position:-webkit-sticky) or (position:sticky)){\"],[false,{\".sticky-top\":false},[\"position:-webkit-sticky\",\"position:sticky\",\"top:0\",\"z-index:1020\"]],[false,\"}\"],[false,{\".sr-only\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"white-space:nowrap\",\"border:0\"]],[false,{\".sr-only-focusable:active\":false,\".sr-only-focusable:focus\":false},[\"position:static\",\"width:auto\",\"height:auto\",\"overflow:visible\",\"clip:auto\",\"white-space:normal\"]],[false,{\".shadow-sm:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:0 .125rem .25rem rgba(0,0,0,.075)\"]],[false,{\".shadow:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:0 .5rem 1rem rgba(0,0,0,.15)\"]],[false,{\".shadow-lg:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:0 1rem 3rem rgba(0,0,0,.175)\"]],[false,{\".shadow-none:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:none\"]],[false,{\".w-25:not(#_#_#_#_#_#_#_)\":false},[\"width:25%\"]],[false,{\".w-50:not(#_#_#_#_#_#_#_)\":false},[\"width:50%\"]],[false,{\".w-75:not(#_#_#_#_#_#_#_)\":false},[\"width:75%\"]],[false,{\".w-100:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".w-auto:not(#_#_#_#_#_#_#_)\":false},[\"width:auto\"]],[false,{\".h-25:not(#_#_#_#_#_#_#_)\":false},[\"height:25%\"]],[false,{\".h-50:not(#_#_#_#_#_#_#_)\":false},[\"height:50%\"]],[false,{\".h-75:not(#_#_#_#_#_#_#_)\":false},[\"height:75%\"]],[false,{\".h-100:not(#_#_#_#_#_#_#_)\":false},[\"height:100%\"]],[false,{\".h-auto:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[false,{\".mw-100:not(#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".mh-100:not(#_#_#_#_#_#_#_)\":false},[\"max-height:100%\"]],[false,{\".m-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-0:not(#_#_#_#_#_#_#_)\":false,\".my-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-0:not(#_#_#_#_#_#_#_)\":false,\".mx-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-0:not(#_#_#_#_#_#_#_)\":false,\".my-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-0:not(#_#_#_#_#_#_#_)\":false,\".mx-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-1:not(#_#_#_#_#_#_#_)\":false,\".my-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-1:not(#_#_#_#_#_#_#_)\":false,\".mx-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-1:not(#_#_#_#_#_#_#_)\":false,\".my-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-1:not(#_#_#_#_#_#_#_)\":false,\".mx-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-2:not(#_#_#_#_#_#_#_)\":false,\".my-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-2:not(#_#_#_#_#_#_#_)\":false,\".mx-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-2:not(#_#_#_#_#_#_#_)\":false,\".my-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[true,{\".ml-2:not(#_#_#_#_#_#_#_)\":true,\".mx-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-3:not(#_#_#_#_#_#_#_)\":false,\".my-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-3:not(#_#_#_#_#_#_#_)\":false,\".mx-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-3:not(#_#_#_#_#_#_#_)\":false,\".my-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-3:not(#_#_#_#_#_#_#_)\":false,\".mx-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-4:not(#_#_#_#_#_#_#_)\":false,\".my-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-4:not(#_#_#_#_#_#_#_)\":false,\".mx-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-4:not(#_#_#_#_#_#_#_)\":false,\".my-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-4:not(#_#_#_#_#_#_#_)\":false,\".mx-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-5:not(#_#_#_#_#_#_#_)\":false,\".my-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-5:not(#_#_#_#_#_#_#_)\":false,\".mx-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-5:not(#_#_#_#_#_#_#_)\":false,\".my-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-5:not(#_#_#_#_#_#_#_)\":false,\".mx-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-0:not(#_#_#_#_#_#_#_)\":false,\".py-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-0:not(#_#_#_#_#_#_#_)\":false,\".px-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-0:not(#_#_#_#_#_#_#_)\":false,\".py-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-0:not(#_#_#_#_#_#_#_)\":false,\".px-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-1:not(#_#_#_#_#_#_#_)\":false,\".py-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-1:not(#_#_#_#_#_#_#_)\":false,\".px-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-1:not(#_#_#_#_#_#_#_)\":false,\".py-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-1:not(#_#_#_#_#_#_#_)\":false,\".px-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-2:not(#_#_#_#_#_#_#_)\":false,\".py-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-2:not(#_#_#_#_#_#_#_)\":false,\".px-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-2:not(#_#_#_#_#_#_#_)\":false,\".py-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-2:not(#_#_#_#_#_#_#_)\":false,\".px-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-3:not(#_#_#_#_#_#_#_)\":false,\".py-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-3:not(#_#_#_#_#_#_#_)\":false,\".px-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-3:not(#_#_#_#_#_#_#_)\":false,\".py-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-3:not(#_#_#_#_#_#_#_)\":false,\".px-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-4:not(#_#_#_#_#_#_#_)\":false,\".py-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-4:not(#_#_#_#_#_#_#_)\":false,\".px-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-4:not(#_#_#_#_#_#_#_)\":false,\".py-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-4:not(#_#_#_#_#_#_#_)\":false,\".px-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-5:not(#_#_#_#_#_#_#_)\":false,\".py-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-5:not(#_#_#_#_#_#_#_)\":false,\".px-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-5:not(#_#_#_#_#_#_#_)\":false,\".py-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-5:not(#_#_#_#_#_#_#_)\":false,\".px-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-auto:not(#_#_#_#_#_#_#_)\":false,\".my-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[true,{\".mr-auto:not(#_#_#_#_#_#_#_)\":true,\".mx-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-auto:not(#_#_#_#_#_#_#_)\":false,\".my-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"@media (min-width:576px){\"],[false,{\".m-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-sm-0:not(#_#_#_#_#_#_#_)\":false,\".my-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-sm-0:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-sm-0:not(#_#_#_#_#_#_#_)\":false,\".my-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-sm-0:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-sm-1:not(#_#_#_#_#_#_#_)\":false,\".my-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-sm-1:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-sm-1:not(#_#_#_#_#_#_#_)\":false,\".my-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-sm-1:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-sm-2:not(#_#_#_#_#_#_#_)\":false,\".my-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-sm-2:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-sm-2:not(#_#_#_#_#_#_#_)\":false,\".my-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-sm-2:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-sm-3:not(#_#_#_#_#_#_#_)\":false,\".my-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-sm-3:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-sm-3:not(#_#_#_#_#_#_#_)\":false,\".my-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-sm-3:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-sm-4:not(#_#_#_#_#_#_#_)\":false,\".my-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-sm-4:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-sm-4:not(#_#_#_#_#_#_#_)\":false,\".my-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-sm-4:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-sm-5:not(#_#_#_#_#_#_#_)\":false,\".my-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-sm-5:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-sm-5:not(#_#_#_#_#_#_#_)\":false,\".my-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-sm-5:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-sm-0:not(#_#_#_#_#_#_#_)\":false,\".py-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-sm-0:not(#_#_#_#_#_#_#_)\":false,\".px-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-sm-0:not(#_#_#_#_#_#_#_)\":false,\".py-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-sm-0:not(#_#_#_#_#_#_#_)\":false,\".px-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-sm-1:not(#_#_#_#_#_#_#_)\":false,\".py-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-sm-1:not(#_#_#_#_#_#_#_)\":false,\".px-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-sm-1:not(#_#_#_#_#_#_#_)\":false,\".py-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-sm-1:not(#_#_#_#_#_#_#_)\":false,\".px-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-sm-2:not(#_#_#_#_#_#_#_)\":false,\".py-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-sm-2:not(#_#_#_#_#_#_#_)\":false,\".px-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-sm-2:not(#_#_#_#_#_#_#_)\":false,\".py-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-sm-2:not(#_#_#_#_#_#_#_)\":false,\".px-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-sm-3:not(#_#_#_#_#_#_#_)\":false,\".py-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-sm-3:not(#_#_#_#_#_#_#_)\":false,\".px-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-sm-3:not(#_#_#_#_#_#_#_)\":false,\".py-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-sm-3:not(#_#_#_#_#_#_#_)\":false,\".px-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-sm-4:not(#_#_#_#_#_#_#_)\":false,\".py-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-sm-4:not(#_#_#_#_#_#_#_)\":false,\".px-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-sm-4:not(#_#_#_#_#_#_#_)\":false,\".py-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-sm-4:not(#_#_#_#_#_#_#_)\":false,\".px-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-sm-5:not(#_#_#_#_#_#_#_)\":false,\".py-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-sm-5:not(#_#_#_#_#_#_#_)\":false,\".px-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-sm-5:not(#_#_#_#_#_#_#_)\":false,\".py-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-sm-5:not(#_#_#_#_#_#_#_)\":false,\".px-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".my-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".my-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".m-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-md-0:not(#_#_#_#_#_#_#_)\":false,\".my-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-md-0:not(#_#_#_#_#_#_#_)\":false,\".mx-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-md-0:not(#_#_#_#_#_#_#_)\":false,\".my-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-md-0:not(#_#_#_#_#_#_#_)\":false,\".mx-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-md-1:not(#_#_#_#_#_#_#_)\":false,\".my-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-md-1:not(#_#_#_#_#_#_#_)\":false,\".mx-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-md-1:not(#_#_#_#_#_#_#_)\":false,\".my-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-md-1:not(#_#_#_#_#_#_#_)\":false,\".mx-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-md-2:not(#_#_#_#_#_#_#_)\":false,\".my-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-md-2:not(#_#_#_#_#_#_#_)\":false,\".mx-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-md-2:not(#_#_#_#_#_#_#_)\":false,\".my-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-md-2:not(#_#_#_#_#_#_#_)\":false,\".mx-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-md-3:not(#_#_#_#_#_#_#_)\":false,\".my-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-md-3:not(#_#_#_#_#_#_#_)\":false,\".mx-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-md-3:not(#_#_#_#_#_#_#_)\":false,\".my-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-md-3:not(#_#_#_#_#_#_#_)\":false,\".mx-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-md-4:not(#_#_#_#_#_#_#_)\":false,\".my-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-md-4:not(#_#_#_#_#_#_#_)\":false,\".mx-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-md-4:not(#_#_#_#_#_#_#_)\":false,\".my-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-md-4:not(#_#_#_#_#_#_#_)\":false,\".mx-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-md-5:not(#_#_#_#_#_#_#_)\":false,\".my-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-md-5:not(#_#_#_#_#_#_#_)\":false,\".mx-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-md-5:not(#_#_#_#_#_#_#_)\":false,\".my-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-md-5:not(#_#_#_#_#_#_#_)\":false,\".mx-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-md-0:not(#_#_#_#_#_#_#_)\":false,\".py-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-md-0:not(#_#_#_#_#_#_#_)\":false,\".px-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-md-0:not(#_#_#_#_#_#_#_)\":false,\".py-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-md-0:not(#_#_#_#_#_#_#_)\":false,\".px-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-md-1:not(#_#_#_#_#_#_#_)\":false,\".py-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-md-1:not(#_#_#_#_#_#_#_)\":false,\".px-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-md-1:not(#_#_#_#_#_#_#_)\":false,\".py-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-md-1:not(#_#_#_#_#_#_#_)\":false,\".px-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-md-2:not(#_#_#_#_#_#_#_)\":false,\".py-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-md-2:not(#_#_#_#_#_#_#_)\":false,\".px-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-md-2:not(#_#_#_#_#_#_#_)\":false,\".py-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-md-2:not(#_#_#_#_#_#_#_)\":false,\".px-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-md-3:not(#_#_#_#_#_#_#_)\":false,\".py-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-md-3:not(#_#_#_#_#_#_#_)\":false,\".px-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-md-3:not(#_#_#_#_#_#_#_)\":false,\".py-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-md-3:not(#_#_#_#_#_#_#_)\":false,\".px-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-md-4:not(#_#_#_#_#_#_#_)\":false,\".py-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-md-4:not(#_#_#_#_#_#_#_)\":false,\".px-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-md-4:not(#_#_#_#_#_#_#_)\":false,\".py-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-md-4:not(#_#_#_#_#_#_#_)\":false,\".px-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-md-5:not(#_#_#_#_#_#_#_)\":false,\".py-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-md-5:not(#_#_#_#_#_#_#_)\":false,\".px-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-md-5:not(#_#_#_#_#_#_#_)\":false,\".py-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-md-5:not(#_#_#_#_#_#_#_)\":false,\".px-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-md-auto:not(#_#_#_#_#_#_#_)\":false,\".my-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-md-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-md-auto:not(#_#_#_#_#_#_#_)\":false,\".my-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-md-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".m-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-lg-0:not(#_#_#_#_#_#_#_)\":false,\".my-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-lg-0:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-lg-0:not(#_#_#_#_#_#_#_)\":false,\".my-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-lg-0:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-lg-1:not(#_#_#_#_#_#_#_)\":false,\".my-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-lg-1:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-lg-1:not(#_#_#_#_#_#_#_)\":false,\".my-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-lg-1:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-lg-2:not(#_#_#_#_#_#_#_)\":false,\".my-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-lg-2:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-lg-2:not(#_#_#_#_#_#_#_)\":false,\".my-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-lg-2:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-lg-3:not(#_#_#_#_#_#_#_)\":false,\".my-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-lg-3:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-lg-3:not(#_#_#_#_#_#_#_)\":false,\".my-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-lg-3:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-lg-4:not(#_#_#_#_#_#_#_)\":false,\".my-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-lg-4:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-lg-4:not(#_#_#_#_#_#_#_)\":false,\".my-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-lg-4:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-lg-5:not(#_#_#_#_#_#_#_)\":false,\".my-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-lg-5:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-lg-5:not(#_#_#_#_#_#_#_)\":false,\".my-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-lg-5:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-lg-0:not(#_#_#_#_#_#_#_)\":false,\".py-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-lg-0:not(#_#_#_#_#_#_#_)\":false,\".px-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-lg-0:not(#_#_#_#_#_#_#_)\":false,\".py-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-lg-0:not(#_#_#_#_#_#_#_)\":false,\".px-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-lg-1:not(#_#_#_#_#_#_#_)\":false,\".py-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-lg-1:not(#_#_#_#_#_#_#_)\":false,\".px-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-lg-1:not(#_#_#_#_#_#_#_)\":false,\".py-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-lg-1:not(#_#_#_#_#_#_#_)\":false,\".px-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-lg-2:not(#_#_#_#_#_#_#_)\":false,\".py-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-lg-2:not(#_#_#_#_#_#_#_)\":false,\".px-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-lg-2:not(#_#_#_#_#_#_#_)\":false,\".py-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-lg-2:not(#_#_#_#_#_#_#_)\":false,\".px-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-lg-3:not(#_#_#_#_#_#_#_)\":false,\".py-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-lg-3:not(#_#_#_#_#_#_#_)\":false,\".px-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-lg-3:not(#_#_#_#_#_#_#_)\":false,\".py-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-lg-3:not(#_#_#_#_#_#_#_)\":false,\".px-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-lg-4:not(#_#_#_#_#_#_#_)\":false,\".py-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-lg-4:not(#_#_#_#_#_#_#_)\":false,\".px-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-lg-4:not(#_#_#_#_#_#_#_)\":false,\".py-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-lg-4:not(#_#_#_#_#_#_#_)\":false,\".px-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-lg-5:not(#_#_#_#_#_#_#_)\":false,\".py-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-lg-5:not(#_#_#_#_#_#_#_)\":false,\".px-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-lg-5:not(#_#_#_#_#_#_#_)\":false,\".py-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-lg-5:not(#_#_#_#_#_#_#_)\":false,\".px-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".my-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".my-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".m-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-xl-0:not(#_#_#_#_#_#_#_)\":false,\".my-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-xl-0:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-xl-0:not(#_#_#_#_#_#_#_)\":false,\".my-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-xl-0:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-xl-1:not(#_#_#_#_#_#_#_)\":false,\".my-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-xl-1:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-xl-1:not(#_#_#_#_#_#_#_)\":false,\".my-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-xl-1:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-xl-2:not(#_#_#_#_#_#_#_)\":false,\".my-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-xl-2:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-xl-2:not(#_#_#_#_#_#_#_)\":false,\".my-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-xl-2:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-xl-3:not(#_#_#_#_#_#_#_)\":false,\".my-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-xl-3:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-xl-3:not(#_#_#_#_#_#_#_)\":false,\".my-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-xl-3:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-xl-4:not(#_#_#_#_#_#_#_)\":false,\".my-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-xl-4:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-xl-4:not(#_#_#_#_#_#_#_)\":false,\".my-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-xl-4:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-xl-5:not(#_#_#_#_#_#_#_)\":false,\".my-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-xl-5:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-xl-5:not(#_#_#_#_#_#_#_)\":false,\".my-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-xl-5:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-xl-0:not(#_#_#_#_#_#_#_)\":false,\".py-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-xl-0:not(#_#_#_#_#_#_#_)\":false,\".px-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-xl-0:not(#_#_#_#_#_#_#_)\":false,\".py-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-xl-0:not(#_#_#_#_#_#_#_)\":false,\".px-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-xl-1:not(#_#_#_#_#_#_#_)\":false,\".py-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-xl-1:not(#_#_#_#_#_#_#_)\":false,\".px-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-xl-1:not(#_#_#_#_#_#_#_)\":false,\".py-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-xl-1:not(#_#_#_#_#_#_#_)\":false,\".px-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-xl-2:not(#_#_#_#_#_#_#_)\":false,\".py-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-xl-2:not(#_#_#_#_#_#_#_)\":false,\".px-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-xl-2:not(#_#_#_#_#_#_#_)\":false,\".py-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-xl-2:not(#_#_#_#_#_#_#_)\":false,\".px-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-xl-3:not(#_#_#_#_#_#_#_)\":false,\".py-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-xl-3:not(#_#_#_#_#_#_#_)\":false,\".px-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-xl-3:not(#_#_#_#_#_#_#_)\":false,\".py-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-xl-3:not(#_#_#_#_#_#_#_)\":false,\".px-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-xl-4:not(#_#_#_#_#_#_#_)\":false,\".py-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-xl-4:not(#_#_#_#_#_#_#_)\":false,\".px-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-xl-4:not(#_#_#_#_#_#_#_)\":false,\".py-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-xl-4:not(#_#_#_#_#_#_#_)\":false,\".px-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-xl-5:not(#_#_#_#_#_#_#_)\":false,\".py-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-xl-5:not(#_#_#_#_#_#_#_)\":false,\".px-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-xl-5:not(#_#_#_#_#_#_#_)\":false,\".py-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-xl-5:not(#_#_#_#_#_#_#_)\":false,\".px-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".my-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".my-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,{\".text-monospace\":false},[\"font-family:SFMono-Regular,Menlo,Monaco,Consolas,\\\"Liberation Mono\\\",\\\"Courier New\\\",monospace\"]],[false,{\".text-justify:not(#_#_#_#_#_#_#_)\":false},[\"text-align:justify\"]],[false,{\".text-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"white-space:nowrap\"]],[false,{\".text-truncate\":false},[\"overflow:hidden\",\"text-overflow:ellipsis\",\"white-space:nowrap\"]],[false,{\".text-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[true,{\".text-center:not(#_#_#_#_#_#_#_)\":true},[\"text-align:center\"]],[false,\"@media (min-width:576px){\"],[false,{\".text-sm-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-sm-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".text-md-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-md-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-md-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".text-lg-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-lg-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".text-xl-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-xl-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".text-lowercase:not(#_#_#_#_#_#_#_)\":false},[\"text-transform:lowercase\"]],[false,{\".text-uppercase:not(#_#_#_#_#_#_#_)\":false},[\"text-transform:uppercase\"]],[false,{\".text-capitalize:not(#_#_#_#_#_#_#_)\":false},[\"text-transform:capitalize\"]],[false,{\".font-weight-light:not(#_#_#_#_#_#_#_)\":false},[\"font-weight:300\"]],[false,{\".font-weight-normal:not(#_#_#_#_#_#_#_)\":false},[\"font-weight:400\"]],[false,{\".font-weight-bold:not(#_#_#_#_#_#_#_)\":false},[\"font-weight:700\"]],[false,{\".font-italic:not(#_#_#_#_#_#_#_)\":false},[\"font-style:italic\"]],[false,{\".text-white:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".text-primary:not(#_#_#_#_#_#_#_)\":false},[\"color:#007bff\"]],[false,{\"a.text-primary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-primary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#0062cc\"]],[false,{\".text-secondary:not(#_#_#_#_#_#_#_)\":false},[\"color:#6c757d\"]],[false,{\"a.text-secondary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-secondary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#545b62\"]],[false,{\".text-success:not(#_#_#_#_#_#_#_)\":false},[\"color:#28a745\"]],[false,{\"a.text-success:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-success:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#1e7e34\"]],[false,{\".text-info:not(#_#_#_#_#_#_#_)\":false},[\"color:#17a2b8\"]],[false,{\"a.text-info:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-info:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#117a8b\"]],[false,{\".text-warning:not(#_#_#_#_#_#_#_)\":false},[\"color:#ffc107\"]],[false,{\"a.text-warning:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-warning:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#d39e00\"]],[false,{\".text-danger:not(#_#_#_#_#_#_#_)\":false},[\"color:#dc3545\"]],[false,{\"a.text-danger:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-danger:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#bd2130\"]],[false,{\".text-light:not(#_#_#_#_#_#_#_)\":false},[\"color:#f8f9fa\"]],[false,{\"a.text-light:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-light:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#dae0e5\"]],[false,{\".text-dark:not(#_#_#_#_#_#_#_)\":false},[\"color:#343a40\"]],[false,{\"a.text-dark:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-dark:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#1d2124\"]],[false,{\".text-body:not(#_#_#_#_#_#_#_)\":false},[\"color:#212529\"]],[false,{\".text-muted:not(#_#_#_#_#_#_#_)\":false},[\"color:#6c757d\"]],[false,{\".text-black-50:not(#_#_#_#_#_#_#_)\":false},[\"color:rgba(0,0,0,.5)\"]],[false,{\".text-white-50:not(#_#_#_#_#_#_#_)\":false},[\"color:rgba(255,255,255,.5)\"]],[false,{\".text-hide\":false},[\"font:0\\/0 a\",\"color:transparent\",\"text-shadow:none\",\"background-color:transparent\",\"border:0\"]],[false,{\".visible:not(#_#_#_#_#_#_#_)\":false},[\"visibility:visible\"]],[false,{\".invisible:not(#_#_#_#_#_#_#_)\":false},[\"visibility:hidden\"]],[true,\"@media print{\"],[true,{\"*:not(#_#_#_#_#_#_)\":true,\"::after:not(#_#_#_#_#_#_#_#_)\":true,\"::before:not(#_#_#_#_#_#_#_#_)\":true},[\"text-shadow:none\",\"box-shadow:none\"]],[true,{\"a:not(.btn)\":true},[\"text-decoration:underline\"]],[false,{\"abbr[title]::after\":false},[\"content:\\\" (\\\" attr(title) \\\")\\\"\"]],[false,{\"pre:not(#_#_#_#_#_#_#_#_)\":false},[\"white-space:pre-wrap\"]],[false,{\"blockquote\":false,\"pre\":false},[\"border:1px solid #adb5bd\",\"page-break-inside:avoid\"]],[false,{\"thead\":false},[\"display:table-header-group\"]],[true,{\"amp-img\":true,\"amp-anim\":false,\"tr\":false},[\"page-break-inside:avoid\"]],[true,{\"h2\":true,\"h3\":true,\"p\":true},[\"orphans:3\",\"widows:3\"]],[true,{\"h2\":true,\"h3\":true},[\"page-break-after:avoid\"]],[true,\"@page{size:a3}\"],[true,{\"body:not(#_#_#_#_#_#_#_#_)\":true},[\"min-width:992px\"]],[true,{\".container:not(#_#_#_#_#_#_#_)\":true},[\"min-width:992px\"]],[true,{\".navbar\":true},[\"display:none\"]],[false,{\".badge\":false},[\"border:1px solid #000\"]],[false,{\".table:not(#_#_#_#_#_#_#_)\":false},[\"border-collapse:collapse\"]],[false,{\".table td:not(#_#_#_#_#_#_#_#_)\":false,\".table th:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#fff\"]],[false,{\".table-bordered td:not(#_#_#_#_#_#_#_#_)\":false,\".table-bordered th:not(#_#_#_#_#_#_#_#_)\":false},[\"border:1px solid #dee2e6\"]],[false,{\".table-dark\":false},[\"color:inherit\"]],[false,{\".table-dark tbody+tbody\":false,\".table-dark td\":false,\".table-dark th\":false,\".table-dark thead th\":false},[\"border-color:#dee2e6\"]],[false,{\".table .thead-dark th\":false},[\"color:inherit\",\"border-color:#dee2e6\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":68760,\"final_size\":48135,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/animate.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"a2e2915566ab9cb1c9ab842793acd3f3\",\"parse_time\":0.38850998878479004,\"shake_time\":0.00043892860412597656,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".animated\":false},[\"-webkit-animation-duration:1s\",\"animation-duration:1s\",\"-webkit-animation-fill-mode:both\",\"animation-fill-mode:both\"]],[false,{\".animated.infinite\":false},[\"-webkit-animation-iteration-count:infinite\",\"animation-iteration-count:infinite\"]],[false,{\".animated.hinge\":false},[\"-webkit-animation-duration:2s\",\"animation-duration:2s\"]],[true,\"@-webkit-keyframes bounce{\"],[true,\"0%,20%,50%,80%,100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}\"],[true,\"}@keyframes bounce{\"],[true,\"0%,20%,50%,80%,100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"40%{-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"60%{-webkit-transform:translateY(-15px);-ms-transform:translateY(-15px);transform:translateY(-15px)}\"],[true,\"}\"],[false,{\".bounce\":false},[\"-webkit-animation-name:bounce\",\"animation-name:bounce\"]],[true,\"@-webkit-keyframes flash{\"],[true,\"0%,50%,100%{opacity:1}\"],[true,\"25%,75%{opacity:0}\"],[true,\"}@keyframes flash{\"],[true,\"0%,50%,100%{opacity:1}\"],[true,\"25%,75%{opacity:0}\"],[true,\"}\"],[false,{\".flash\":false},[\"-webkit-animation-name:flash\",\"animation-name:flash\"]],[true,\"@-webkit-keyframes pulse{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{-webkit-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes pulse{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"50%{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,{\".pulse\":false},[\"-webkit-animation-name:pulse\",\"animation-name:pulse\"]],[true,\"@-webkit-keyframes rubberBand{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"30%{-webkit-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}\"],[true,\"40%{-webkit-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}\"],[true,\"60%{-webkit-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}\"],[true,\"100%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes rubberBand{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"30%{-webkit-transform:scaleX(1.25) scaleY(.75);-ms-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}\"],[true,\"40%{-webkit-transform:scaleX(.75) scaleY(1.25);-ms-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}\"],[true,\"60%{-webkit-transform:scaleX(1.15) scaleY(.85);-ms-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}\"],[true,\"100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,{\".rubberBand\":false},[\"-webkit-animation-name:rubberBand\",\"animation-name:rubberBand\"]],[true,\"@-webkit-keyframes shake{\"],[true,\"0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"}@keyframes shake{\"],[true,\"0%,100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"20%,40%,60%,80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"}\"],[false,{\".shake\":false},[\"-webkit-animation-name:shake\",\"animation-name:shake\"]],[true,\"@-webkit-keyframes swing{\"],[true,\"20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}\"],[true,\"60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}\"],[true,\"80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}\"],[true,\"100%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}@keyframes swing{\"],[true,\"20%{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"40%{-webkit-transform:rotate(-10deg);-ms-transform:rotate(-10deg);transform:rotate(-10deg)}\"],[true,\"60%{-webkit-transform:rotate(5deg);-ms-transform:rotate(5deg);transform:rotate(5deg)}\"],[true,\"80%{-webkit-transform:rotate(-5deg);-ms-transform:rotate(-5deg);transform:rotate(-5deg)}\"],[true,\"100%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}\"],[false,{\".swing\":false},[\"-webkit-transform-origin:top center\",\"-ms-transform-origin:top center\",\"transform-origin:top center\",\"-webkit-animation-name:swing\",\"animation-name:swing\"]],[true,\"@-webkit-keyframes tada{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}\"],[true,\"30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}\"],[true,\"40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}\"],[true,\"100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}\"],[true,\"}@keyframes tada{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"10%,20%{-webkit-transform:scale(.9) rotate(-3deg);-ms-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}\"],[true,\"30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);-ms-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}\"],[true,\"40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);-ms-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}\"],[true,\"100%{-webkit-transform:scale(1) rotate(0);-ms-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}\"],[true,\"}\"],[false,{\".tada\":false},[\"-webkit-animation-name:tada\",\"animation-name:tada\"]],[true,\"@-webkit-keyframes wobble{\"],[true,\"0%{-webkit-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"15%{-webkit-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}\"],[true,\"30%{-webkit-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}\"],[true,\"45%{-webkit-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}\"],[true,\"60%{-webkit-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}\"],[true,\"75%{-webkit-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}\"],[true,\"100%{-webkit-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"}@keyframes wobble{\"],[true,\"0%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"15%{-webkit-transform:translateX(-25%) rotate(-5deg);-ms-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}\"],[true,\"30%{-webkit-transform:translateX(20%) rotate(3deg);-ms-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}\"],[true,\"45%{-webkit-transform:translateX(-15%) rotate(-3deg);-ms-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}\"],[true,\"60%{-webkit-transform:translateX(10%) rotate(2deg);-ms-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}\"],[true,\"75%{-webkit-transform:translateX(-5%) rotate(-1deg);-ms-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}\"],[true,\"100%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"}\"],[false,{\".wobble\":false},[\"-webkit-animation-name:wobble\",\"animation-name:wobble\"]],[true,\"@-webkit-keyframes bounceIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}\"],[true,\"70%{-webkit-transform:scale(.9);transform:scale(.9)}\"],[true,\"100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes bounceIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}\"],[true,\"70%{-webkit-transform:scale(.9);-ms-transform:scale(.9);transform:scale(.9)}\"],[true,\"100%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,{\".bounceIn\":false},[\"-webkit-animation-name:bounceIn\",\"animation-name:bounceIn\"]],[true,\"@-webkit-keyframes bounceInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}\"],[true,\"80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}\"],[true,\"100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes bounceInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px)}\"],[true,\"80%{-webkit-transform:translateY(-10px);-ms-transform:translateY(-10px);transform:translateY(-10px)}\"],[true,\"100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".bounceInDown\":false},[\"-webkit-animation-name:bounceInDown\",\"animation-name:bounceInDown\"]],[true,\"@-webkit-keyframes bounceInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(30px);transform:translateX(30px)}\"],[true,\"80%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes bounceInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(30px);-ms-transform:translateX(30px);transform:translateX(30px)}\"],[true,\"80%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".bounceInLeft\":false},[\"-webkit-animation-name:bounceInLeft\",\"animation-name:bounceInLeft\"]],[true,\"@-webkit-keyframes bounceInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(-30px);transform:translateX(-30px)}\"],[true,\"80%{-webkit-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes bounceInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(-30px);-ms-transform:translateX(-30px);transform:translateX(-30px)}\"],[true,\"80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".bounceInRight\":false},[\"-webkit-animation-name:bounceInRight\",\"animation-name:bounceInRight\"]],[true,\"@-webkit-keyframes bounceInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"80%{-webkit-transform:translateY(10px);transform:translateY(10px)}\"],[true,\"100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes bounceInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"80%{-webkit-transform:translateY(10px);-ms-transform:translateY(10px);transform:translateY(10px)}\"],[true,\"100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".bounceInUp\":false},[\"-webkit-animation-name:bounceInUp\",\"animation-name:bounceInUp\"]],[true,\"@-webkit-keyframes bounceOut{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"25%{-webkit-transform:scale(.95);transform:scale(.95)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"}@keyframes bounceOut{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"25%{-webkit-transform:scale(.95);-ms-transform:scale(.95);transform:scale(.95)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"}\"],[false,{\".bounceOut\":false},[\"-webkit-animation-name:bounceOut\",\"animation-name:bounceOut\"]],[true,\"@-webkit-keyframes bounceOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}@keyframes bounceOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}\"],[false,{\".bounceOutDown\":false},[\"-webkit-animation-name:bounceOutDown\",\"animation-name:bounceOutDown\"]],[true,\"@-webkit-keyframes bounceOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}@keyframes bounceOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}\"],[false,{\".bounceOutLeft\":false},[\"-webkit-animation-name:bounceOutLeft\",\"animation-name:bounceOutLeft\"]],[true,\"@-webkit-keyframes bounceOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}@keyframes bounceOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}\"],[false,{\".bounceOutRight\":false},[\"-webkit-animation-name:bounceOutRight\",\"animation-name:bounceOutRight\"]],[true,\"@-webkit-keyframes bounceOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}@keyframes bounceOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}\"],[false,{\".bounceOutUp\":false},[\"-webkit-animation-name:bounceOutUp\",\"animation-name:bounceOutUp\"]],[true,\"@-webkit-keyframes fadeIn{\"],[true,\"0%{opacity:0}\"],[true,\"100%{opacity:1}\"],[true,\"}@keyframes fadeIn{\"],[true,\"0%{opacity:0}\"],[true,\"100%{opacity:1}\"],[true,\"}\"],[false,{\".fadeIn\":false},[\"-webkit-animation-name:fadeIn\",\"animation-name:fadeIn\"]],[true,\"@-webkit-keyframes fadeInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInDown\":false},[\"-webkit-animation-name:fadeInDown\",\"animation-name:fadeInDown\"]],[true,\"@-webkit-keyframes fadeInDownBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInDownBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInDownBig\":false},[\"-webkit-animation-name:fadeInDownBig\",\"animation-name:fadeInDownBig\"]],[true,\"@-webkit-keyframes fadeInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInLeft\":false},[\"-webkit-animation-name:fadeInLeft\",\"animation-name:fadeInLeft\"]],[true,\"@-webkit-keyframes fadeInLeftBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInLeftBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInLeftBig\":false},[\"-webkit-animation-name:fadeInLeftBig\",\"animation-name:fadeInLeftBig\"]],[true,\"@-webkit-keyframes fadeInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInRight\":false},[\"-webkit-animation-name:fadeInRight\",\"animation-name:fadeInRight\"]],[true,\"@-webkit-keyframes fadeInRightBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInRightBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInRightBig\":false},[\"-webkit-animation-name:fadeInRightBig\",\"animation-name:fadeInRightBig\"]],[true,\"@-webkit-keyframes fadeInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInUp\":false},[\"-webkit-animation-name:fadeInUp\",\"animation-name:fadeInUp\"]],[true,\"@-webkit-keyframes fadeInUpBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInUpBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInUpBig\":false},[\"-webkit-animation-name:fadeInUpBig\",\"animation-name:fadeInUpBig\"]],[true,\"@-webkit-keyframes fadeOut{\"],[true,\"0%{opacity:1}\"],[true,\"100%{opacity:0}\"],[true,\"}@keyframes fadeOut{\"],[true,\"0%{opacity:1}\"],[true,\"100%{opacity:0}\"],[true,\"}\"],[false,{\".fadeOut\":false},[\"-webkit-animation-name:fadeOut\",\"animation-name:fadeOut\"]],[true,\"@-webkit-keyframes fadeOutDown{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"}@keyframes fadeOutDown{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"}\"],[false,{\".fadeOutDown\":false},[\"-webkit-animation-name:fadeOutDown\",\"animation-name:fadeOutDown\"]],[true,\"@-webkit-keyframes fadeOutDownBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}@keyframes fadeOutDownBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}\"],[false,{\".fadeOutDownBig\":false},[\"-webkit-animation-name:fadeOutDownBig\",\"animation-name:fadeOutDownBig\"]],[true,\"@-webkit-keyframes fadeOutLeft{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"}@keyframes fadeOutLeft{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"}\"],[false,{\".fadeOutLeft\":false},[\"-webkit-animation-name:fadeOutLeft\",\"animation-name:fadeOutLeft\"]],[true,\"@-webkit-keyframes fadeOutLeftBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}@keyframes fadeOutLeftBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}\"],[false,{\".fadeOutLeftBig\":false},[\"-webkit-animation-name:fadeOutLeftBig\",\"animation-name:fadeOutLeftBig\"]],[true,\"@-webkit-keyframes fadeOutRight{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"}@keyframes fadeOutRight{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"}\"],[false,{\".fadeOutRight\":false},[\"-webkit-animation-name:fadeOutRight\",\"animation-name:fadeOutRight\"]],[true,\"@-webkit-keyframes fadeOutRightBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}@keyframes fadeOutRightBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}\"],[false,{\".fadeOutRightBig\":false},[\"-webkit-animation-name:fadeOutRightBig\",\"animation-name:fadeOutRightBig\"]],[true,\"@-webkit-keyframes fadeOutUp{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"}@keyframes fadeOutUp{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"}\"],[false,{\".fadeOutUp\":false},[\"-webkit-animation-name:fadeOutUp\",\"animation-name:fadeOutUp\"]],[true,\"@-webkit-keyframes fadeOutUpBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}@keyframes fadeOutUpBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}\"],[false,{\".fadeOutUpBig\":false},[\"-webkit-animation-name:fadeOutUpBig\",\"animation-name:fadeOutUpBig\"]],[true,\"@-webkit-keyframes flip{\"],[true,\"0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"}@keyframes flip{\"],[true,\"0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);-ms-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"}\"],[false,{\".animated.flip\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\",\"-webkit-animation-name:flip\",\"animation-name:flip\"]],[true,\"@-webkit-keyframes flipInX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"}@keyframes flipInX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateX(-10deg);-ms-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateX(10deg);-ms-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"}\"],[false,{\".flipInX\":false},[\"-webkit-animation-name:flipInX\",\"animation-name:flipInX\"]],[false,{\".flipInX:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes flipInY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"}@keyframes flipInY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateY(-10deg);-ms-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateY(10deg);-ms-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"}\"],[false,{\".flipInY\":false},[\"-webkit-animation-name:flipInY\",\"animation-name:flipInY\"]],[false,{\".flipInY:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes flipOutX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"}@keyframes flipOutX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"}\"],[false,{\".flipOutX\":false},[\"-webkit-animation-name:flipOutX\",\"animation-name:flipOutX\"]],[false,{\".flipOutX:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes flipOutY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"}@keyframes flipOutY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"}\"],[false,{\".flipOutY\":false},[\"-webkit-animation-name:flipOutY\",\"animation-name:flipOutY\"]],[false,{\".flipOutY:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes lightSpeedIn{\"],[true,\"0%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"60%{-webkit-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}\"],[true,\"80%{-webkit-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"}@keyframes lightSpeedIn{\"],[true,\"0%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"60%{-webkit-transform:translateX(-20%) skewX(30deg);-ms-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}\"],[true,\"80%{-webkit-transform:translateX(0%) skewX(-15deg);-ms-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"}\"],[false,{\".lightSpeedIn\":false},[\"-webkit-animation-name:lightSpeedIn\",\"animation-name:lightSpeedIn\",\"-webkit-animation-timing-function:ease-out\",\"animation-timing-function:ease-out\"]],[true,\"@-webkit-keyframes lightSpeedOut{\"],[true,\"0%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"}@keyframes lightSpeedOut{\"],[true,\"0%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"}\"],[false,{\".lightSpeedOut\":false},[\"-webkit-animation-name:lightSpeedOut\",\"animation-name:lightSpeedOut\",\"-webkit-animation-timing-function:ease-in\",\"animation-timing-function:ease-in\"]],[true,\"@-webkit-keyframes rotateIn{\"],[true,\"0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateIn{\"],[true,\"0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);-ms-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateIn\":false},[\"-webkit-animation-name:rotateIn\",\"animation-name:rotateIn\"]],[true,\"@-webkit-keyframes rotateInDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInDownLeft\":false},[\"-webkit-animation-name:rotateInDownLeft\",\"animation-name:rotateInDownLeft\"]],[true,\"@-webkit-keyframes rotateInDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInDownRight\":false},[\"-webkit-animation-name:rotateInDownRight\",\"animation-name:rotateInDownRight\"]],[true,\"@-webkit-keyframes rotateInUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInUpLeft\":false},[\"-webkit-animation-name:rotateInUpLeft\",\"animation-name:rotateInUpLeft\"]],[true,\"@-webkit-keyframes rotateInUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInUpRight\":false},[\"-webkit-animation-name:rotateInUpRight\",\"animation-name:rotateInUpRight\"]],[true,\"@-webkit-keyframes rotateOut{\"],[true,\"0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}\"],[true,\"}@keyframes rotateOut{\"],[true,\"0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);-ms-transform:rotate(200deg);transform:rotate(200deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOut\":false},[\"-webkit-animation-name:rotateOut\",\"animation-name:rotateOut\"]],[true,\"@-webkit-keyframes rotateOutDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}@keyframes rotateOutDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutDownLeft\":false},[\"-webkit-animation-name:rotateOutDownLeft\",\"animation-name:rotateOutDownLeft\"]],[true,\"@-webkit-keyframes rotateOutDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}@keyframes rotateOutDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutDownRight\":false},[\"-webkit-animation-name:rotateOutDownRight\",\"animation-name:rotateOutDownRight\"]],[true,\"@-webkit-keyframes rotateOutUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}@keyframes rotateOutUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutUpLeft\":false},[\"-webkit-animation-name:rotateOutUpLeft\",\"animation-name:rotateOutUpLeft\"]],[true,\"@-webkit-keyframes rotateOutUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}@keyframes rotateOutUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutUpRight\":false},[\"-webkit-animation-name:rotateOutUpRight\",\"animation-name:rotateOutUpRight\"]],[true,\"@-webkit-keyframes slideInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes slideInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".slideInDown\":false},[\"-webkit-animation-name:slideInDown\",\"animation-name:slideInDown\"]],[true,\"@-webkit-keyframes slideInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes slideInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".slideInLeft\":false},[\"-webkit-animation-name:slideInLeft\",\"animation-name:slideInLeft\"]],[true,\"@-webkit-keyframes slideInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes slideInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".slideInRight\":false},[\"-webkit-animation-name:slideInRight\",\"animation-name:slideInRight\"]],[true,\"@-webkit-keyframes slideOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}@keyframes slideOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}\"],[false,{\".slideOutLeft\":false},[\"-webkit-animation-name:slideOutLeft\",\"animation-name:slideOutLeft\"]],[true,\"@-webkit-keyframes slideOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}@keyframes slideOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}\"],[false,{\".slideOutRight\":false},[\"-webkit-animation-name:slideOutRight\",\"animation-name:slideOutRight\"]],[true,\"@-webkit-keyframes slideOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}@keyframes slideOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}\"],[false,{\".slideOutUp\":false},[\"-webkit-animation-name:slideOutUp\",\"animation-name:slideOutUp\"]],[true,\"@-webkit-keyframes slideInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes slideInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".slideInUp\":false},[\"-webkit-animation-name:slideInUp\",\"animation-name:slideInUp\"]],[true,\"@-webkit-keyframes slideOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}@keyframes slideOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}\"],[false,{\".slideOutDown\":false},[\"-webkit-animation-name:slideOutDown\",\"animation-name:slideOutDown\"]],[true,\"@-webkit-keyframes hinge{\"],[true,\"0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"40%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"80%{-webkit-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}\"],[true,\"100%{-webkit-transform:translateY(700px);transform:translateY(700px);opacity:0}\"],[true,\"}@keyframes hinge{\"],[true,\"0%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"20%,60%{-webkit-transform:rotate(80deg);-ms-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"40%{-webkit-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"80%{-webkit-transform:rotate(60deg) translateY(0);-ms-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}\"],[true,\"100%{-webkit-transform:translateY(700px);-ms-transform:translateY(700px);transform:translateY(700px);opacity:0}\"],[true,\"}\"],[false,{\".hinge\":false},[\"-webkit-animation-name:hinge\",\"animation-name:hinge\"]],[true,\"@-webkit-keyframes rollIn{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"}@keyframes rollIn{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);-ms-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);-ms-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"}\"],[false,{\".rollIn\":false},[\"-webkit-animation-name:rollIn\",\"animation-name:rollIn\"]],[true,\"@-webkit-keyframes rollOut{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}\"],[true,\"}@keyframes rollOut{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);-ms-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);-ms-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}\"],[true,\"}\"],[false,{\".rollOut\":false},[\"-webkit-animation-name:rollOut\",\"animation-name:rollOut\"]],[true,\"@-webkit-keyframes zoomIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1}\"],[true,\"}@keyframes zoomIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1}\"],[true,\"}\"],[false,{\".zoomIn\":false},[\"-webkit-animation-name:zoomIn\",\"animation-name:zoomIn\"]],[true,\"@-webkit-keyframes zoomInDown{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInDown{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInDown\":false},[\"-webkit-animation-name:zoomInDown\",\"animation-name:zoomInDown\"]],[true,\"@-webkit-keyframes zoomInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);-ms-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInLeft\":false},[\"-webkit-animation-name:zoomInLeft\",\"animation-name:zoomInLeft\"]],[true,\"@-webkit-keyframes zoomInRight{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(-48px);transform:scale(.475) translateX(-48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInRight{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);-ms-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(-48px);-ms-transform:scale(.475) translateX(-48px);transform:scale(.475) translateX(-48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInRight\":false},[\"-webkit-animation-name:zoomInRight\",\"animation-name:zoomInRight\"]],[true,\"@-webkit-keyframes zoomInUp{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInUp{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);-ms-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);-ms-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInUp\":false},[\"-webkit-animation-name:zoomInUp\",\"animation-name:zoomInUp\"]],[true,\"@-webkit-keyframes zoomOut{\"],[true,\"0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"100%{opacity:0}\"],[true,\"}@keyframes zoomOut{\"],[true,\"0%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"100%{opacity:0}\"],[true,\"}\"],[false,{\".zoomOut\":false},[\"-webkit-animation-name:zoomOut\",\"animation-name:zoomOut\"]],[true,\"@-webkit-keyframes zoomOutDown{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-transform-origin:center bottom;transform-origin:center bottom}\"],[true,\"}@keyframes zoomOutDown{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);-ms-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);-ms-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-transform-origin:center bottom;-ms-transform-origin:center bottom;transform-origin:center bottom}\"],[true,\"}\"],[false,{\".zoomOutDown\":false},[\"-webkit-animation-name:zoomOutDown\",\"animation-name:zoomOutDown\"]],[true,\"@-webkit-keyframes zoomOutLeft{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(42px);transform:scale(.475) translateX(42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-transform-origin:left center;transform-origin:left center}\"],[true,\"}@keyframes zoomOutLeft{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(42px);-ms-transform:scale(.475) translateX(42px);transform:scale(.475) translateX(42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-transform-origin:left center;-ms-transform-origin:left center;transform-origin:left center}\"],[true,\"}\"],[false,{\".zoomOutLeft\":false},[\"-webkit-animation-name:zoomOutLeft\",\"animation-name:zoomOutLeft\"]],[true,\"@-webkit-keyframes zoomOutRight{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(-42px);transform:scale(.475) translateX(-42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-transform-origin:right center;transform-origin:right center}\"],[true,\"}@keyframes zoomOutRight{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(-42px);-ms-transform:scale(.475) translateX(-42px);transform:scale(.475) translateX(-42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);-ms-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-transform-origin:right center;-ms-transform-origin:right center;transform-origin:right center}\"],[true,\"}\"],[false,{\".zoomOutRight\":false},[\"-webkit-animation-name:zoomOutRight\",\"animation-name:zoomOutRight\"]],[true,\"@-webkit-keyframes zoomOutUp{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-transform-origin:center top;transform-origin:center top}\"],[true,\"}@keyframes zoomOutUp{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-transform-origin:center top;-ms-transform-origin:center top;transform-origin:center top}\"],[true,\"}\"],[false,{\".zoomOutUp\":false},[\"-webkit-animation-name:zoomOutUp\",\"animation-name:zoomOutUp\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":4744,\"final_size\":154,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/css\\/owl.carousel.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"321729c807ca4dee8c7fcd62f722c92a\",\"parse_time\":0.016955852508544922,\"shake_time\":3.910064697265625e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".owl-carousel\":true},[\"display:none\",\"width:100%\",\"-webkit-tap-highlight-color:transparent\",\"position:relative\",\"z-index:1\"]],[false,{\".owl-carousel .owl-stage\":false},[\"position:relative\",\"-ms-touch-action:pan-Y\",\"touch-action:manipulation\",\"-moz-backface-visibility:hidden\"]],[false,{\".owl-carousel .owl-stage:after\":false},[\"content:\\\".\\\"\",\"display:block\",\"clear:both\",\"visibility:hidden\",\"line-height:0\",\"height:0\"]],[false,{\".owl-carousel .owl-stage-outer\":false},[\"position:relative\",\"overflow:hidden\",\"-webkit-transform:translate3d(0px,0px,0px)\"]],[false,{\".owl-carousel .owl-wrapper\":false,\".owl-carousel .owl-item\":false},[\"-webkit-backface-visibility:hidden\",\"-moz-backface-visibility:hidden\",\"-ms-backface-visibility:hidden\",\"-webkit-transform:translate3d(0,0,0)\",\"-moz-transform:translate3d(0,0,0)\",\"-ms-transform:translate3d(0,0,0)\"]],[false,{\".owl-carousel .owl-item\":false},[\"position:relative\",\"min-height:1px\",\"float:left\",\"-webkit-backface-visibility:hidden\",\"-webkit-tap-highlight-color:transparent\",\"-webkit-touch-callout:none\"]],[false,{\".owl-carousel .owl-item amp-img\":false,\".owl-carousel .owl-item amp-anim\":false},[\"display:block\",\"width:100%\"]],[false,{\".owl-carousel .owl-nav.disabled\":false,\".owl-carousel .owl-dots.disabled\":false},[\"display:none\"]],[false,{\".owl-carousel .owl-nav .owl-prev\":false,\".owl-carousel .owl-nav .owl-next\":false,\".owl-carousel .owl-dot\":false},[\"cursor:pointer\",\"-webkit-user-select:none\",\"-khtml-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\"]],[false,{\".owl-carousel .owl-nav button.owl-prev\":false,\".owl-carousel .owl-nav button.owl-next\":false,\".owl-carousel button.owl-dot\":false},[\"background:none\",\"color:inherit\",\"border:none\",\"font:inherit\"]],[false,{\".owl-carousel .owl-nav button.owl-prev:not(#_#_#_#_#_#_#_#_)\":false,\".owl-carousel .owl-nav button.owl-next:not(#_#_#_#_#_#_#_#_)\":false,\".owl-carousel button.owl-dot:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".owl-carousel.owl-loaded\":false},[\"display:block\"]],[false,{\".owl-carousel.owl-loading\":false},[\"opacity:0\",\"display:block\"]],[false,{\".owl-carousel.owl-hidden\":false},[\"opacity:0\"]],[false,{\".owl-carousel.owl-refresh .owl-item\":false},[\"visibility:hidden\"]],[false,{\".owl-carousel.owl-drag .owl-item\":false},[\"-ms-touch-action:pan-y\",\"touch-action:pan-y\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\"]],[false,{\".owl-carousel.owl-grab\":false},[\"cursor:move\",\"cursor:grab\"]],[false,{\".owl-carousel.owl-rtl\":false},[\"direction:rtl\"]],[false,{\".owl-carousel.owl-rtl .owl-item\":false},[\"float:right\"]],[false,{\".no-js .owl-carousel\":false},[\"display:block\"]],[false,{\".owl-carousel .animated\":false},[\"animation-duration:1000ms\",\"animation-fill-mode:both\"]],[false,{\".owl-carousel .owl-animated-in\":false},[\"z-index:0\"]],[false,{\".owl-carousel .owl-animated-out\":false},[\"z-index:1\"]],[false,{\".owl-carousel .fadeOut\":false},[\"animation-name:fadeOut\"]],[true,\"@keyframes fadeOut{\"],[true,\"0%{opacity:1}\"],[true,\"100%{opacity:0}\"],[true,\"}\"],[false,{\".owl-height\":false},[\"transition:height 500ms ease-in-out\"]],[false,{\".owl-carousel .owl-item .owl-lazy\":false},[\"opacity:0\",\"transition:opacity 400ms ease\"]],[false,{\".owl-carousel .owl-item .owl-lazy[src^=\\\"\\\"]\":false,\".owl-carousel .owl-item .owl-lazy:not([src])\":false},[\"max-height:0\"]],[false,{\".owl-carousel .owl-item amp-img.owl-lazy\":false,\".owl-carousel .owl-item amp-anim.owl-lazy\":false},[\"transform-style:preserve-3d\"]],[false,{\".owl-carousel .owl-video-wrapper\":false},[\"position:relative\",\"height:100%\",\"background:#000\"]],[false,{\".owl-carousel .owl-video-play-icon\":false},[\"position:absolute\",\"height:80px\",\"width:80px\",\"left:50%\",\"top:50%\",\"margin-left:-40px\",\"margin-top:-40px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/css\\/owl.video.play.png\\\") no-repeat\",\"cursor:pointer\",\"z-index:1\",\"-webkit-backface-visibility:hidden\",\"transition:transform 100ms ease\"]],[false,{\".owl-carousel .owl-video-play-icon:hover\":false},[\"-ms-transform:scale(1.3,1.3)\",\"transform:scale(1.3,1.3)\"]],[false,{\".owl-carousel .owl-video-playing .owl-video-tn\":false,\".owl-carousel .owl-video-playing .owl-video-play-icon\":false},[\"display:none\"]],[false,{\".owl-carousel .owl-video-tn\":false},[\"opacity:0\",\"height:100%\",\"background-position:center center\",\"background-repeat:no-repeat\",\"background-size:contain\",\"transition:opacity 400ms ease\"]],[false,{\".owl-carousel .owl-video-frame\":false},[\"position:relative\",\"z-index:1\",\"height:100%\",\"width:100%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1013,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/owlcarousel2.github.io\\/OwlCarousel2\\/assets\\/owlcarousel\\/assets\\/owl.theme.default.min.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"547aa8bb20ab8306b3b739fab5e4aa08\",\"parse_time\":0.004403114318847656,\"shake_time\":1.0013580322265625e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".owl-theme .owl-dots\":false,\".owl-theme .owl-nav\":false},[\"text-align:center\",\"-webkit-tap-highlight-color:transparent\"]],[false,{\".owl-theme .owl-nav\":false},[\"margin-top:10px\"]],[false,{\".owl-theme .owl-nav [class*=owl-]\":false},[\"color:#fff\",\"font-size:14px\",\"margin:5px\",\"padding:4px 7px\",\"background:#d6d6d6\",\"display:inline-block\",\"cursor:pointer\",\"border-radius:3px\"]],[false,{\".owl-theme .owl-nav [class*=owl-]:hover\":false},[\"background:#869791\",\"color:#fff\",\"text-decoration:none\"]],[false,{\".owl-theme .owl-nav .disabled\":false},[\"opacity:.5\",\"cursor:default\"]],[false,{\".owl-theme .owl-nav.disabled+.owl-dots\":false},[\"margin-top:10px\"]],[false,{\".owl-theme .owl-dots .owl-dot\":false},[\"display:inline-block\",\"zoom:1\"]],[false,{\".owl-theme .owl-dots .owl-dot span\":false},[\"width:10px\",\"height:10px\",\"margin:5px 7px\",\"background:#d6d6d6\",\"display:block\",\"-webkit-backface-visibility:visible\",\"transition:opacity .2s ease\",\"border-radius:30px\"]],[false,{\".owl-theme .owl-dots .owl-dot.active span\":false,\".owl-theme .owl-dots .owl-dot:hover span\":false},[\"background:#869791\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":65448,\"final_size\":1685,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/styles.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"7827cda6edfe62811923d93e516ee494\",\"parse_time\":0.6045119762420654,\"shake_time\":0.000926971435546875,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".texto\":false},[\"font-family:Raleway,sans-serif\",\"font-weight:400\",\"font-size:14px\",\"line-height:20px\",\"color:#152649\"]],[false,\"@media (min-width:1400px){\"],[false,{\".texto\":false},[\"font-size:18px\",\"line-height:24px\"]],[false,\"}\"],[false,{\".bg-cover\":false},[\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\"]],[false,{\".box-shadow\":false},[\"-webkit-box-shadow:0 2px 6px 0 rgba(50,50,50,.3)\",\"-moz-box-shadow:0 2px 6px 0 rgba(50,50,50,.3)\",\"box-shadow:0 2px 6px 0 rgba(50,50,50,.3)\"]],[true,{\"html\":true},[\"-webkit-font-smoothing:antialiased\",\"background-color:#fff\"]],[true,{\"body\":true},[\"background-color:#fff\",\"font-family:Raleway,sans-serif\",\"font-weight:400\",\"font-size:14px\",\"line-height:20px\",\"color:#152649\",\"-webkit-font-smoothing:subpixel-antialiased\",\"overflow-x:hidden\"]],[true,\"@media (min-width:1400px){\"],[true,{\"body\":true},[\"font-size:18px\",\"line-height:24px\"]],[true,\"}\"],[true,{\"a\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"a:hover\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"strong\":true},[\"font-weight:700\"]],[true,{\"amp-img\":true,\"amp-anim\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".error\":false},[\"width:100%\"]],[false,{\".error:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:20px\",\"text-align:left\",\"left:0\",\"color:#c00\",\"font-weight:500\"]],[false,{\"label.error:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".wpcf7-not-valid-tip:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".wpcf7-not-valid:not(#_#_#_#_#_#_#_)\":false},[\"border:1px solid red\"]],[false,{\".nospace\":false},[\"margin:0\",\"padding:0\"]],[false,{\".nopadding\":false},[\"padding:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".nopadding\":false},[\"padding:0\",\"margin:0\"]],[false,\"}\"],[true,{\"input:focus\":true},[\"outline-color:transparent\",\"outline-style:none\"]],[true,{\"textarea:focus\":true},[\"outline-color:transparent\",\"outline-style:none\"]],[false,{\"input.form-control\":false},[\"font-family:Raleway,sans-serif\",\"font-weight:500\",\"width:100%\",\"font-size:12px\",\"background:#dfdfdf\",\"color:grey\",\"height:40px\",\"line-height:40px\",\"border:0 solid #343636\",\"margin-bottom:10px\",\"border-radius:0\",\"-moz-border-radius:0\",\"-webkit-border-radius:0\",\"-webkit-box-shadow:inset 0 0 0 transparent\",\"box-shadow:inset 0 0 0 transparent\",\"padding:0 10px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"input.form-control\":false},[\"font-size:14px\",\"height:45px\",\"line-height:45px\"]],[false,\"}\"],[false,{\"textarea.form-control\":false},[\"font-family:Raleway,sans-serif\",\"font-weight:500\",\"width:100%\",\"font-size:12px\",\"background:#dfdfdf\",\"color:grey\",\"height:140px\",\"border:0 solid #343636\",\"margin-bottom:10px\",\"border-radius:0\",\"-moz-border-radius:0\",\"-webkit-border-radius:0\",\"-webkit-box-shadow:inset 0 0 0 transparent\",\"box-shadow:inset 0 0 0 transparent\",\"padding:10px\",\"resize:none\"]],[false,\"@media (min-width:1400px){\"],[false,{\"textarea.form-control\":false},[\"font-size:14px\"]],[false,\"}\"],[false,{\".btn\":false},[\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"border-radius:0\",\"-moz-border-radius:0\",\"-webkit-border-radius:0\",\"font-family:Raleway,sans-serif\",\"display:inline-block\",\"display:inline-block\",\"line-height:40px\",\"color:#fff\",\"border:0 solid #343636\",\"background-color:#152649\",\"font-size:14px\",\"font-weight:500\",\"text-align:center\",\"padding:0 20px\",\"margin-bottom:50px\"]],[false,\"@media (max-width:992px){\"],[false,{\".btn\":false},[\"width:100%\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".btn\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".btn:hover\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".btn1\":false},[\"display:inline-block\",\"background:#90f247\",\"background:-moz-linear-gradient(left,#90f247 0,#00debb 100%)\",\"background:-webkit-linear-gradient(left,#90f247 0,#00debb 100%)\",\"background:linear-gradient(to right,#90f247 0,#00debb 100%)\",\"padding:2px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\"]],[false,{\".btn1 .mask-btn\":false},[\"width:100%\",\"padding:10px 9px 10px 9px\",\"background-color:#fff\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:15px\",\"font-size:16px\",\"color:#152649\",\"-webkit-transition:all .4s ease-in-out\",\"-moz-transition:all .4s ease-in-out\",\"transition:all .4s ease-in-out\"]],[false,{\".btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,\"@media (min-width:1400px){\"],[false,{\".btn1 .mask-btn\":false},[\"padding:20px 20px 20px 19px\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\",\"line-height:17px\",\"font-size:18px\"]],[false,\"}\"],[false,{\".btn-learn\":false},[\"width:auto\",\"display:inline-block\",\"padding:10px 20px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"background-color:#152649\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:15px\",\"font-size:16px\",\"color:#fff\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".btn-learn:hover\":false},[\"background-color:#0c1832\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".btn-learn\":false},[\"padding:20px 30px\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\",\"line-height:17px\",\"font-size:18px\"]],[false,{\".btn-learn:hover\":false},[\"border-radius:8px\",\"-moz-border-radius:8px\",\"-webkit-border-radius:8px\"]],[false,\"}\"],[false,{\".btn-how\":false},[\"width:auto\",\"display:inline-block\",\"padding:10px 20px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"background-color:#fff\",\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:15px\",\"font-size:16px\",\"color:#3e3e3e\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"margin-top:10px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".btn-how:hover\":false},[\"background-color:#0c1832\",\"color:#fff\"]],[false,\"@media (min-width:1400px){\"],[false,{\".btn-how\":false},[\"padding:20px 30px\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\",\"line-height:17px\",\"font-size:18px\",\"font-weight:600\"]],[false,{\".btn-how:hover\":false},[\"border-radius:8px\",\"-moz-border-radius:8px\",\"-webkit-border-radius:8px\"]],[false,\"}\"],[false,{\".ajax-loader:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[true,{\"::-webkit-input-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\":-moz-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\"::-moz-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\":-ms-input-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\"header\":true},[\"top:0\",\"width:100%\",\"height:100px\",\"position:fixed\",\"background-color:#fff\",\"z-index:3\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[true,{\"header .row\":true},[\"margin:0\"]],[true,\"@media (min-width:1400px){\"],[true,{\"header\":true},[\"height:120px\"]],[true,\"}\"],[false,{\"header .logo\":false},[\"line-height:100px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header .logo amp-img\":false,\"header .logo amp-anim\":false},[\"height:30px\",\"margin-left:15px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header .logo\":false},[\"line-height:120px\"]],[false,{\"header .logo amp-img\":false,\"header .logo amp-anim\":false},[\"height:50px\"]],[false,\"}\"],[false,{\"header .min-header\":false},[\"color:#152649\",\"font-size:30px\",\"text-align:right\",\"line-height:100px\",\"display:none\",\"cursor:pointer\",\"margin-right:15px\"]],[false,\"@media (max-width:992px){\"],[false,{\"header .min-header\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header .min-header\":false},[\"line-height:120px\",\"font-size:50px\"]],[false,\"}\"],[false,{\"header .divmenu\":false},[\"text-align:right\"]],[false,{\"header .menu-menu-interna-container\":false,\"header .menu-menu-principal-container\":false},[\"display:inline-block\"]],[false,{\"header #menu\":false},[\"width:100%\",\"margin:0\",\"padding:0\",\"text-align:right\"]],[false,{\"header #menu li\":false},[\"position:relative\",\"list-style:none\",\"display:inline-block\",\"color:#152649\",\"font-size:13px\",\"padding:0 15px\",\"line-height:100px\",\"text-align:center\",\"font-weight:700\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header #menu li:after\":false},[\"width:0\",\"height:7px\",\"top:50%\",\"margin-top:-3px\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background:#adf231\",\"background:-webkit-linear-gradient(left,#adf231 0,#00dbc5 100%)\",\"background:-o-linear-gradient(left,#adf231 0,#00dbc5 100%)\",\"background:linear-gradient(to right,#adf231 0,#00dbc5 100%)\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"z-index:-1\"]],[false,{\"header #menu li.current-menu-ancestor:after\":false,\"header #menu li.current_page_item:after\":false},[\"width:100%\"]],[false,{\"header #menu li:hover:after\":false},[\"width:100%\"]],[false,\"@media (max-width:992px){\"],[false,{\"header #menu\":false},[\"background-color:#fff\",\"display:none\",\"width:200%\",\"right:0\",\"top:100px\",\"position:absolute\"]],[false,{\"header #menu li\":false},[\"width:100%\",\"display:block\",\"line-height:40px\"]],[false,{\"header #menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header #menu\":false},[\"top:120px\"]],[false,{\"header #menu li\":false},[\"line-height:120px\",\"font-size:15px\"]],[false,\"}\"],[false,{\"header #menu .sub-menu\":false},[\"width:200px\",\"background-color:#fff\",\"display:none\",\"position:absolute\",\"padding:0\",\"text-align:left\",\"margin-left:-15px\",\"margin-top:-20px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header #menu .sub-menu li\":false},[\"display:block\",\"color:#727272\",\"font-weight:400\",\"padding:0 15px\",\"text-align:left\"]],[false,{\"header #menu .sub-menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"line-height:18px\",\"margin:15px 0\"]],[false,{\"header #menu .sub-menu li:hover\":false},[\"color:#00debb\"]],[false,\"@media (max-width:992px){\"],[false,{\"header #menu .sub-menu\":false},[\"position:relative\",\"width:100%\"]],[false,{\"header #menu .sub-menu:not(#_#_#_#_#_#_#_#_#_)\":false},[\"display:block\",\"margin:0\",\"padding:0\"]],[false,{\"header #menu .sub-menu li\":false},[\"color:#152649\",\"font-size:13px\",\"line-height:18px\",\"text-align:center\",\"font-weight:700\",\"margin:15px 0\"]],[false,{\"header #menu .sub-menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header #menu .sub-menu li\":false},[\"line-height:60px\",\"font-size:15px\"]],[false,\"}\"],[false,{\"header .menu-item-has-children:hover .sub-menu:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\"header.mini\":false},[\"height:80px\",\"-webkit-box-shadow:0 0 20px 1px rgba(0,0,0,.1)\",\"box-shadow:0 0 20px 1px rgba(0,0,0,.1)\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini\":false},[\"height:100px\"]],[false,\"}\"],[false,{\"header.mini .logo\":false},[\"line-height:80px\"]],[false,{\"header.mini .logo amp-img\":false,\"header.mini .logo amp-anim\":false},[\"height:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini .logo\":false},[\"line-height:100px\"]],[false,{\"header.mini .logo amp-img\":false,\"header.mini .logo amp-anim\":false},[\"height:40px\"]],[false,\"}\"],[false,{\"header.mini .min-header\":false},[\"line-height:80px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini .min-header\":false},[\"line-height:100px\"]],[false,\"}\"],[false,{\"header.mini #menu li\":false},[\"line-height:80px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini #menu li\":false},[\"line-height:100px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\"header.mini #menu\":false},[\"top:80px\"]],[false,{\"header.mini #menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"line-height:50px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini #menu\":false},[\"top:100px\"]],[false,{\"header.mini #menu li\":false},[\"line-height:100px\"]],[false,\"}\"],[false,{\"header.mini .sub-menu\":false},[\"width:200px\",\"background-color:#fff\",\"display:none\",\"position:absolute\",\"padding:0\",\"text-align:left\",\"margin-left:-15px\",\"margin-top:40px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header.mini .sub-menu:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-bottom:10px\"]],[false,{\"header.mini .sub-menu li\":false},[\"display:block\",\"color:#727272\",\"font-weight:400\",\"text-align:left\",\"margin:15px 0\"]],[false,{\"header.mini .sub-menu li:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:0 15px\",\"line-height:15px\",\"line-height:40px\"]],[false,\"@media (max-width:992px){\"],[false,{\"header.mini .sub-menu li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\"header #menu-item-42>a:not(#_#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,\"}\"],[true,{\"h1\":true},[\"position:relative\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:90px\",\"font-size:90px\",\"color:#152649\",\"margin:0 0 5px\"]],[true,\"@media (min-width:1400px){\"],[true,{\"h1\":true},[\"font-size:110px\",\"line-height:110px\"]],[true,\"}\"],[true,{\"h2\":true},[\"position:relative\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:40px\",\"font-size:40px\",\"color:#152649\",\"margin:0 0 5px\"]],[true,{\"h2 small\":true},[\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:40px\",\"font-size:40px\"]],[false,{\"h2.white\":false},[\"color:#fff\",\"margin-top:20px\",\"margin-bottom:10px\"]],[true,{\"h2 strong\":true},[\"color:#a1f350\"]],[true,\"@media (min-width:1400px){\"],[true,{\"h2\":true},[\"font-size:60px\",\"line-height:60px\"]],[true,{\"h2 small\":true},[\"font-size:60px\",\"line-height:60px\"]],[true,\"}\"],[true,{\"h3\":true},[\"position:relative\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"color:#152649\",\"margin:0 0 5px\"]],[false,{\"h3.topspace\":false},[\"margin-top:90px\",\"margin-bottom:40px\"]],[false,{\".top-info\":false},[\"width:100%\",\"height:1px\",\"background:-moz-linear-gradient(left,rgba(43,154,199,0) 0,rgba(43,154,199,.84) 21%,#48a8cf 25%,#ccc 50%,#bff466 75%,rgba(183,243,84,.88) 78%,rgba(183,243,84,0) 100%)\",\"background:-webkit-linear-gradient(left,rgba(43,154,199,0) 0,rgba(43,154,199,.84) 21%,#48a8cf 25%,#ccc 50%,#bff466 75%,rgba(183,243,84,.88) 78%,rgba(183,243,84,0) 100%)\",\"background:linear-gradient(to right,rgba(43,154,199,0) 0,rgba(43,154,199,.84) 21%,#48a8cf 25%,#ccc 50%,#bff466 75%,rgba(183,243,84,.88) 78%,rgba(183,243,84,0) 100%)\"]],[false,{\".top-info-devops\":false},[\"width:100%\",\"height:1px\",\"background:#2c9ac7\",\"background:-moz-linear-gradient(left,#2c9ac7 0,#fff 100%)\",\"background:-webkit-linear-gradient(left,#2c9ac7 0,#fff 100%)\",\"background:linear-gradient(to right,#2c9ac7 0,#fff 100%)\",\"margin-bottom:25px\"]],[false,{\".line-gray\":false},[\"width:100%\",\"height:1px\",\"background-color:#ccc\",\"margin:50px 0\"]],[false,{\".top\":false},[\"width:100%\",\"position:relative\",\"margin-top:100px\",\"background-color:#fff\",\"color:#a3a3a3\",\"display:table\"]],[false,{\".top .wrap-top\":false},[\"display:table-row\",\"width:100%\",\"height:100%\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,{\".top .wrap-top .content\":false},[\"display:table-cell\",\"width:100%\",\"height:100%\",\"vertical-align:middle\"]],[false,{\".top-home h2\":false},[\"position:relative\",\"margin-top:30px\",\"padding-top:30px\"]],[false,{\".top-home h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#6ecff4\"]],[false,{\".top-home h2:hover:after\":false},[\"width:70px\",\"background-color:#b7f254\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-home h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".top-home .wrap-top\":false},[\"text-align:center\"]],[false,{\".top-home .wrap-top:not(#_#_#_#_#_#_#_)\":false},[\"background-image:none\"]],[false,\"}\"],[false,{\".services\":false},[\"width:100%\",\"position:relative\",\"background-color:#f8f8f8\",\"padding-bottom:100px\"]],[false,\"@media (max-width:992px){\"],[false,{\".services\":false},[\"padding-bottom:50px\"]],[false,\"}\"],[false,{\".services .top-info\":false},[\"margin-bottom:100px\"]],[false,{\".services .info-text\":false},[\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:35px\",\"font-size:25px\",\"color:#8c8c8c\",\"text-align:center\",\"margin-bottom:100px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".services .info-text\":false},[\"line-height:43px\",\"font-size:33px\"]],[false,\"}\"],[false,{\".services .service\":false},[\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:35px\",\"font-size:25px\",\"color:#152649\",\"text-align:center\"]],[false,{\".services .service .icon\":false},[\"text-align:center\",\"border-right:1px solid #ccc\",\"margin-bottom:50px\"]],[false,{\".services .service .icon.last\":false},[\"border:0\"]],[false,{\".services .service .icon amp-img\":false,\".services .service .icon amp-anim\":false},[\"max-height:140px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".services .service .icon amp-img\":false,\".services .service .icon amp-anim\":false},[\"max-height:170px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".services .service .icon\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".services .service\":false},[\"margin-bottom:50px\"]],[false,\"}\"],[false,{\".wephrase\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:60px\",\"font-size:60px\",\"color:#152649\"]],[false,{\".wephrase .wrap-phrase\":false},[\"display:inline-block\"]],[false,{\".wephrase .dot\":false},[\"display:inline-block\",\"color:#b7f254\",\"animation:blinker 1s linear infinite\"]],[true,\"@keyframes blinker{\"],[true,\"50%{opacity:0}\"],[true,\"}\"],[false,{\".microservices\":false},[\"width:100%\",\"position:relative\",\"background-color:#efefef\",\"-webkit-box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices\":false},[\"height:auto\"]],[false,{\".microservices:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".microservices\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".microservices .service-padding\":false},[\"padding:100px 0\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-microservices.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top -30px right\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".microservices amp-img\":false,\".microservices amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices amp-img\":false,\".microservices amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".microservices amp-img\":false,\".microservices amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,{\".microservices h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".microservices h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#b8b8b8\"]],[false,{\".microservices h2:hover:after\":false},[\"width:70px\",\"background-color:#b7f254\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".microservices .btn1 .mask-btn\":false},[\"background-color:#efefef\"]],[false,{\".microservices .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".machine_learning\":false},[\"width:100%\",\"position:relative\",\"background-color:#f2f2f2\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning\":false},[\"height:auto\"]],[false,{\".machine_learning:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".machine_learning\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".machine_learning h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".machine_learning h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#b993e7\"]],[false,{\".machine_learning h2:hover:after\":false},[\"width:70px\",\"background-color:#1ab7d5\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".machine_learning .btn1\":false},[\"background:#9061d7\",\"background:-moz-linear-gradient(left,#9061d7 0,#2c99c8 100%)\",\"background:-webkit-linear-gradient(left,#9061d7 0,#2c99c8 100%)\",\"background:linear-gradient(to right,#9061d7 0,#2c99c8 100%)\"]],[false,{\".machine_learning .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\"]],[false,{\".machine_learning .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".machine_learning .service-padding\":false},[\"padding:100px 0\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-ml.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top -10px right\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".machine_learning .wrap-image\":false},[\"text-align:right\"]],[false,{\".machine_learning amp-img\":false,\".machine_learning amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning amp-img\":false,\".machine_learning amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".machine_learning amp-img\":false,\".machine_learning amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,{\".machine_learning .subitems .item:after\":false},[\"background:#2c99c8\",\"background:-moz-linear-gradient(top,#2c99c8 0,#9061d7 100%)\",\"background:-webkit-linear-gradient(top,#2c99c8 0,#9061d7 100%)\",\"background:linear-gradient(to bottom,#2c99c8 0,#9061d7 100%)\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".digital_transformation\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation\":false},[\"height:auto\"]],[false,{\".digital_transformation:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".digital_transformation\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".digital_transformation h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".digital_transformation h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".digital_transformation h2:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".digital_transformation .btn1\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to right,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".digital_transformation .btn1 .mask-btn\":false},[\"background-color:#fff\"]],[false,{\".digital_transformation .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".digital_transformation .service-padding\":false},[\"padding:100px 0\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".digital_transformation .wrap-image\":false},[\"text-align:right\"]],[false,{\".digital_transformation amp-img\":false,\".digital_transformation amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation amp-img\":false,\".digital_transformation amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".digital_transformation amp-img\":false,\".digital_transformation amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,{\".digital_transformation .subitems .item:after\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to bottom,#02c6d9 0,#05d2d9 100%)\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".devops\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"-webkit-box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops\":false},[\"height:auto\"]],[false,{\".devops:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".devops\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".devops h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".devops h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#95f896\"]],[false,{\".devops h2:hover:after\":false},[\"width:70px\",\"background-color:#2d98c6\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".devops .service-padding\":false},[\"padding:100px 0\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-devops.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top right\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".devops amp-img\":false,\".devops amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops amp-img\":false,\".devops amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".devops amp-img\":false,\".devops amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".devops .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".call_to_action\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"text-align:center\",\"padding:50px 0\"]],[false,{\".call_to_action.about-box\":false},[\"background-color:#f7f7f7\",\"-webkit-box-shadow:inset 0 -10px 30px -10px rgba(0,0,0,.3)\",\"box-shadow:inset 0 -10px 30px -10px rgba(0,0,0,.3)\"]],[false,{\".call_to_action.about-box .btn1 .mask-btn\":false},[\"background-color:#f7f7f7\"]],[false,{\".call_to_action.about-box .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process\":false},[\"width:100%\",\"position:relative\",\"background-color:#ccc\",\"overflow:hidden\"]],[false,{\".process .process-item\":false},[\"width:100%\",\"padding:80px\",\"height:500px\"]],[false,{\".process .process-item p\":false},[\"height:100px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process .process-item p\":false},[\"height:130px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item:not(#_#_#_#_#_#_#_)\":false},[\"padding:80px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".process .process-item\":false},[\"height:600px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".process\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".process .process-item-1\":false},[\"position:relative\",\"background:#15a3cc\",\"background:-moz-linear-gradient(left,#15a3cc 0,#15b5d5 100%)\",\"background:-webkit-linear-gradient(left,#15a3cc 0,#15b5d5 100%)\",\"background:linear-gradient(to right,#15a3cc 0,#15b5d5 100%)\"]],[false,{\".process .process-item-1:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:28px\",\"height:97px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrow1.png\\\")\",\"top:3px\",\"right:-28px\",\"z-index:2\"]],[false,{\".process .process-item-1 h2.white\":false},[\"position:relative\",\"padding-top:30px\"]],[false,{\".process .process-item-1 h2.white:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#6ecff4\"]],[false,{\".process .process-item-1 h2.white:hover:after\":false},[\"width:70px\",\"background-color:#152649\"]],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item-1 h2.white:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process .process-item-2\":false},[\"position:relative\",\"padding-top:125px\",\"background:#c4c4c4\",\"background:-moz-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:-webkit-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:linear-gradient(to right,#c4c4c4 0,#ccc 100%)\"]],[false,{\".process .process-item-2:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:28px\",\"height:97px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrow2.png\\\")\",\"top:3px\",\"right:-28px\",\"z-index:2\"]],[false,{\".process .process-item-2 h2.white\":false},[\"position:relative\",\"padding-top:30px\"]],[false,{\".process .process-item-2 h2.white:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background:#878787\",\"background:-moz-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:-webkit-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:linear-gradient(to right,#878787 0,#aeaeae 100%)\"]],[false,{\".process .process-item-2 h2.white:hover:after\":false},[\"width:70px\",\"background-color:#878787\"]],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item-2 h2.white:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process .process-item-3\":false},[\"position:relative\",\"padding-top:125px\",\"background:-moz-linear-gradient(left,#00debb 0,#90f247 100%)\",\"background:-webkit-linear-gradient(left,#00debb 0,#90f247 100%)\",\"background:linear-gradient(to right,#00debb 0,#90f247 100%)\"]],[false,{\".process .process-item-3 h2.white\":false},[\"position:relative\",\"padding-top:30px\"]],[false,{\".process .process-item-3 h2.white:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#6ecff4\"]],[false,{\".process .process-item-3 h2.white:hover:after\":false},[\"width:70px\",\"background-color:#152649\"]],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item-3 h2.white:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".case_study\":false},[\"width:100%\",\"position:relative\",\"background-color:#f1f1f1\",\"padding:100px 0 70px\"]],[false,\"@media (max-width:992px){\"],[false,{\".case_study\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".case_study h2\":false},[\"margin-bottom:20px\",\"position:relative\",\"padding-top:50px\"]],[false,{\".case_study h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#b8b8b8\"]],[false,{\".case_study h2:hover:after\":false},[\"width:70px\"]],[false,\"@media (max-width:992px){\"],[false,{\".case_study h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".case_study .btn1\":false},[\"margin-top:30px\"]],[false,{\".case_study .btn1 .mask-btn\":false},[\"background-color:#f1f1f1\"]],[false,{\".case_study .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".case_study .wrap-image\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-case-home.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top center\",\"background-size:100% auto\"]],[false,\"@media (max-width:992px){\"],[false,{\".case_study .wrap-image\":false},[\"margin-top:40px\"]],[false,\"}\"],[false,{\".partners\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"text-align:center\",\"padding:50px 0\"]],[false,{\".partners .owl-dots\":false},[\"width:100%\",\"position:relative\",\"text-align:center\"]],[false,{\".partners .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".partners .owl-dots .owl-dot\":false},[\"width:6px\",\"height:6px\",\"background-color:#ccc\",\"display:inline-block\",\"margin:0 10px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\"]],[false,{\".partners .owl-dots .owl-dot.active\":false},[\"background-color:#3b3b3b\"]],[false,{\".about-intern\":false},[\"background-color:#f7f7f7\",\"color:#152649\",\"font-size:13px\"]],[false,{\".about-intern h1\":false},[\"font-size:50px\",\"line-height:50px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-intern\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".about-intern .btn1\":false},[\"margin-bottom:20px\"]],[false,{\".about-intern .btn1 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".about-intern .wrap-top\":false},[\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:bottom center\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-intern .wrap-top\":false},[\"text-align:center\"]],[false,{\".about-intern .wrap-top:not(#_#_#_#_#_#_#_)\":false},[\"background-image:none\"]],[false,\"}\"],[false,{\".cases-intern\":false},[\"background-color:#fff\",\"color:#fff\",\"font-size:13px\",\"background-position:right\",\"background-repeat:no-repeat\",\"background-size:auto 100%\"]],[false,\"@media (max-width:992px){\"],[false,{\".cases-intern\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".cases-intern\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".cases-intern h1\":false},[\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:40px\",\"font-size:40px\",\"color:#fff\",\"margin:0 0 5px\"]],[false,{\".cases-intern h1 small\":false},[\"color:#00ddbd\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:20px\",\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".cases-intern h1\":false},[\"line-height:50px\",\"font-size:50px\"]],[false,{\".cases-intern h1 small\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".cases-intern .wrap-top\":false},[\"background:-moz-linear-gradient(left,#002048 0,rgba(0,32,72,.1) 50%,rgba(0,32,72,0) 65%,rgba(0,32,72,0) 100%)\",\"background:-webkit-linear-gradient(left,#002048 0,#002048 50%,rgba(0,32,72,0) 65%,rgba(0,32,72,0) 100%)\",\"background:linear-gradient(to right,#002048 0,#002048 50%,rgba(0,32,72,0) 65%,rgba(0,32,72,0) 100%)\"]],[false,\"@media (max-width:992px){\"],[false,{\".cases-intern .wrap-top\":false},[\"background:#002048\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".content-cases\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".content-cases .gray\":false},[\"font-size:14px\",\"background-color:#f7f7f7\",\"color:#6b6b6b\",\"padding:40px 40px 20px\",\"margin-top:-60px\",\"margin-bottom:50px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".content-cases .gray\":false},[\"font-size:16px\",\"line-height:18px\"]],[false,\"}\"],[false,{\".content-cases h3\":false},[\"color:#6b6b6b\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:20px\",\"font-size:20px\",\"margin-bottom:10px\"]],[false,{\".content-cases .content-cases2\":false},[\"color:#6b6b6b\",\"padding:50px 0 30px\"]],[false,{\".content-cases .bg-gray\":false},[\"font-size:14px\",\"background-color:#f7f7f7\",\"color:#6b6b6b\",\"padding:15px\",\"margin-bottom:50px\"]],[false,{\".content-cases .content-downgray\":false},[\"text-align:center\"]],[false,{\".content-cases .content-downgray amp-img\":false,\".content-cases .content-downgray amp-anim\":false},[\"max-width:60%\"]],[false,{\".content-cases .content-downgray .top-info\":false},[\"margin:70px 0\"]],[false,{\".content-cases .owl-dots\":false},[\"margin-top:20px\",\"width:100%\",\"position:relative\",\"text-align:center\"]],[false,{\".content-cases .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".content-cases .owl-dots .owl-dot\":false},[\"width:6px\",\"height:6px\",\"background-color:#ccc\",\"display:inline-block\",\"margin:0 10px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\"]],[false,{\".content-cases .owl-dots .owl-dot.active\":false},[\"background-color:#3b3b3b\"]],[false,{\".content-cases .gallery-cases\":false},[\"margin-top:70px\"]],[false,{\".content-cases .gallery-cases amp-img\":false,\".content-cases .gallery-cases amp-anim\":false},[\"border:2px solid #ccc\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\"]],[false,{\".content-cases .gallery-cases amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".content-cases .gallery-cases amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".process-intern\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"color:#b2b2b2\",\"font-size:20px\",\"line-height:40px\",\"font-family:Rajdhani\",\"font-weight:700\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process-intern\":false},[\"font-size:30px\",\"line-height:50px\"]],[false,\"}\"],[false,{\".process-intern .wrap-top\":false},[\"background-position:bottom center\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\"]],[false,\"@media (max-width:992px){\"],[false,{\".process-intern .wrap-top\":false},[\"background-position:bottom center\",\"text-align:center\"]],[false,{\".process-intern .wrap-top:not(#_#_#_#_#_#_#_)\":false},[\"background-image:none\"]],[false,\"}\"],[false,{\".about-process\":false},[\"width:100%\",\"position:relative\",\"background-color:#f1f1f1\",\"padding:70px 0\",\"text-align:center\"]],[false,{\".about-process .wephrase\":false},[\"font-size:35px\",\"line-height:35px\",\"margin-bottom:30px\"]],[false,{\".about-process .top-info\":false},[\"margin-top:100px\"]],[false,{\".line-process\":false},[\"width:60%\",\"height:1px\",\"margin:50px 20%\",\"background:#2b9ac7\",\"background:-moz-linear-gradient(left,#2b9ac7 0,#fff 100%)\",\"background:-webkit-linear-gradient(left,#2b9ac7 0,#fff 100%)\",\"background:linear-gradient(to right,#2b9ac7 0,#fff 100%)\"]],[false,{\".process-part\":false},[\"width:100%\",\"position:relative\",\"padding:70px 0\",\"font-size:13px\"]],[false,\"@media (max-width:992px){\"],[false,{\".process-part .btn1\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".process-part\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".process1\":false},[\"background-color:#15a7ce\",\"color:#002048\",\"font-weight:500\"]],[false,{\".process1 h2\":false},[\"color:#fff\",\"line-height:20px\"]],[false,{\".process1 h2 small\":false},[\"color:#98e36c\",\"font-size:18px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process1 h2\":false},[\"line-height:50px\"]],[false,{\".process1 h2 small\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".process1 h3\":false},[\"color:#fff\",\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process1 h3\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".process1 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process1:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:70px\",\"height:35px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrowd1.png\\\")\",\"background-position:bottom center\",\"bottom:-35px\",\"margin-left:50%\",\"left:-35px\",\"z-index:2\"]],[false,{\".process1 .lineb\":false},[\"width:2px\",\"height:600px\",\"margin:0 auto\",\"background-color:rgba(255,255,255,.2)\"]],[false,{\".process1 .centro\":false},[\"text-align:center\"]],[false,{\".process1 .centro amp-img\":false,\".process1 .centro amp-anim\":false},[\"max-width:100px\"]],[false,\"@media (max-width:992px){\"],[false,{\".process1 .centro\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process2\":false},[\"background-color:#d7d7d7\",\"color:#565656\",\"font-weight:500\"]],[false,{\".process2 h2\":false},[\"margin-bottom:30px\"]],[false,{\".process2 h3\":false},[\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process2 h3\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".process2 .check-items\":false},[\"margin:20px 0\"]],[false,{\".process2 .check-items .icheck\":false},[\"position:relative\",\"padding-left:30px\",\"min-height:30px\",\"font-size:20px\",\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:20px\",\"padding-top:5px\"]],[false,{\".process2 .check-items .icheck:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:20px\",\"height:100%\",\"top:0\",\"left:0\",\"background-repeat:no-repeat\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/checkb.png\\\")\",\"background-position:center\",\"background-size:100% auto\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process2 .check-items .icheck\":false},[\"font-size:23px\",\"line-height:23px\"]],[false,\"}\"],[false,{\".process2 .btn1\":false},[\"background:#c4c4c4\",\"background:-moz-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:-webkit-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:linear-gradient(to right,#c4c4c4 0,#ccc 100%)\"]],[false,{\".process2 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process2:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:70px\",\"height:35px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrowd2.png\\\")\",\"background-position:bottom center\",\"bottom:-35px\",\"margin-left:50%\",\"left:-35px\",\"z-index:2\"]],[false,\"@media (max-width:992px){\"],[false,{\".process2 amp-img\":false,\".process2 amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process3\":false},[\"color:#002048\",\"background:#38cea3\",\"background:-moz-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:-webkit-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:linear-gradient(to right,#38cea3 0,#75e168 100%)\",\"font-weight:500\"]],[false,{\".process3 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process3 h2\":false},[\"color:#fff\"]],[false,{\".process3 .check-items\":false},[\"margin:20px 0\"]],[false,{\".process3 .check-items .icheck\":false},[\"position:relative\",\"padding-left:15px\",\"padding-left:10px\",\"margin-left:35px\",\"min-height:30px\",\"font-size:14px\",\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:20px\",\"margin-bottom:20px\",\"border-left:1px solid #fff\"]],[false,{\".process3 .check-items .icheck:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:20px\",\"height:100%\",\"top:0\",\"left:-35px\",\"background-repeat:no-repeat\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/checkb.png\\\")\",\"background-position:left center\",\"background-size:100% auto\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process3 .check-items .icheck\":false},[\"font-size:23px\",\"line-height:23px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".process3 amp-img\":false,\".process3 amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".end-process\":false},[\"width:100%\",\"position:relative\",\"background-color:#f6f6f6\",\"padding:70px 0\",\"text-align:center\"]],[false,{\".end-process .wephrase\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,{\".end-process .logos\":false},[\"text-align:center\",\"margin-top:50px\"]],[false,{\".end-process .logos amp-img\":false,\".end-process .logos amp-anim\":false},[\"display:inline-block\",\"height:90px\",\"margin:0 30px\",\"-webkit-transition:all .2s ease-in-out\",\"-moz-transition:all .2s ease-in-out\",\"transition:all .2s ease-in-out\",\"-webkit-filter:grayscale(100%)\"]],[false,{\".end-process .logos amp-img:hover\":false,\".end-process .logos amp-anim:hover\":false},[\"-webkit-filter:grayscale(0)\"]],[false,{\".end-process .logos amp-img.menor\":false,\".end-process .logos amp-anim.menor\":false},[\"height:80px\"]],[false,\"@media (max-width:992px){\"],[false,{\".end-process .logos amp-img\":false,\".end-process .logos amp-anim\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".end-process .logos amp-img\":false,\".end-process .logos amp-anim\":false},[\"height:120px\"]],[false,{\".end-process .logos amp-img.menor\":false,\".end-process .logos amp-anim.menor\":false},[\"height:110px\"]],[false,\"}\"],[false,{\".top-service\":false},[\"width:100%\",\"height:370px\",\"position:relative\",\"margin-top:120px\",\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"color:#fff\",\"display:table\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".top-service .wrap-top\":false},[\"display:table-row\",\"width:100%\",\"height:100%\"]],[false,{\".top-service .wrap-top .content\":false},[\"display:table-cell\",\"width:100%\",\"height:100%\",\"vertical-align:middle\",\"font-size:12px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".top-service .wrap-top .content\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".top-service .logo\":false},[\"margin-left:-10px\",\"margin-bottom:10px\"]],[false,{\".top-service .logo amp-google-document-embed\":false},[\"width:110px\"]],[false,{\".top-service .logo amp-img\":false,\".top-service .logo amp-anim\":false},[\"width:110px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".top-service .logo amp-img\":false,\".top-service .logo amp-anim\":false},[\"width:150px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".top-service .logo\":false},[\"margin-left:0\"]],[false,\"}\"],[false,{\".top-service h1\":false},[\"color:#fff\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".top-service.service-devops\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-devops\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-machine\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-machine\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-micro\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-micro\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-digital\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\",\"color:#152649\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-digital\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-digital h1\":false},[\"color:#152649\"]],[false,{\".disclaimer\":false},[\"width:100%\",\"position:relative\",\"padding:45px 0\"]],[false,{\".disclaimer.service-devops\":false},[\"background-color:#b7f254\",\"text-align:center\",\"font-size:13px\"]],[false,{\".disclaimer.service-devops .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-devops .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-devops\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".disclaimer.service-machine\":false},[\"background-color:#83adfb\",\"text-align:center\",\"font-size:13px\"]],[false,{\".disclaimer.service-machine .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-machine .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-machine\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".disclaimer.service-micro\":false},[\"background-color:#152649\",\"text-align:center\",\"font-size:13px\",\"color:#fff\"]],[false,{\".disclaimer.service-micro .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-micro .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-micro\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".disclaimer.service-digital\":false},[\"background-color:#05bed4\",\"text-align:center\",\"font-size:13px\",\"color:#fff\"]],[false,{\".disclaimer.service-digital .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-digital .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-digital\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".about-service\":false},[\"width:100%\",\"position:relative\",\"padding:0\",\"margin:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .btn:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".about-service .wrap-image\":false},[\"text-align:left\",\"padding-top:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".about-service ul\":false},[\"margin:0\",\"padding:0\"]],[false,{\".about-service li\":false},[\"list-style:none\",\"position:relative\",\"padding-left:30px\",\"min-height:30px\",\"font-size:14px\",\"font-family:Raleway\",\"font-weight:500\",\"line-height:18px\",\"padding-top:5px\",\"margin-bottom:20px\"]],[false,{\".about-service li:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:20px\",\"height:100%\",\"top:0\",\"left:0\",\"background-repeat:no-repeat\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/checkc.png\\\")\",\"background-position:center\",\"background-size:100% auto\"]],[false,{\".about-service.service-devops\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-devops .btn1\":false},[\"background:#cce191\",\"background:-moz-linear-gradient(left,#cce191 0,#ccc 50%,#7cb1cc 100%)\",\"background:-webkit-linear-gradient(left,#cce191 0,#ccc 50%,#7cb1cc 100%)\",\"background:linear-gradient(to right,#cce191 0,#ccc 50%,#7cb1cc 100%)\",\"margin-bottom:20px\"]],[false,{\".about-service.service-devops .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#767e8e\"]],[false,{\".about-service.service-devops .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service.service-machine\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-machine .btn1\":false},[\"background:#4e2e7c\",\"background:-moz-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:-webkit-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:linear-gradient(to right,#4e2e7c 0,#38a3cc 100%)\",\"margin-bottom:20px\"]],[false,{\".about-service.service-machine .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#767e8e\"]],[false,{\".about-service.service-machine .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service.service-micro\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-micro .btn1\":false},[\"background:#878787\",\"background:-moz-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:-webkit-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:linear-gradient(to right,#878787 0,#aeaeae 100%)\",\"margin-bottom:20px\"]],[false,{\".about-service.service-micro .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#767e8e\"]],[false,{\".about-service.service-micro .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service.service-digital\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-digital .btn1\":false},[\"margin-bottom:20px\",\"background:#02c6d9\",\"background:-moz-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to right,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".about-service.service-digital .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#2d98c6\"]],[false,{\".about-service.service-digital .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about\":false},[\"padding:0\",\"color:#8c8c8c\",\"overflow:hidden\",\"position:relative\"]],[false,{\".about-service .content-about .clearfix\":false},[\"width:100%\"]],[false,{\".about-service .content-about .menu-items\":false},[\"margin-top:0\",\"margin-bottom:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .content-about .menu-items\":false},[\"margin:30px 0\",\"text-align:center\"]],[false,\"}\"],[false,{\".about-service .content-about .menu-items .btn\":false},[\"width:100%\",\"text-align:center\",\"line-height:50px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"font-family:Rajdhani\",\"font-weight:400\",\"margin-bottom:0\",\"margin-top:0\",\"font-size:20px\",\"text-transform:uppercase\"]],[false,{\".about-service .content-about .menu-items .active .btn\":false},[\"font-weight:700\"]],[false,{\".about-service .content-about .menu-items.service-devops\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-devops .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-devops .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-devops a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-devops a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-machine\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-machine .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-machine .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-machine a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-machine a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-micro\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-micro .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-micro .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-micro a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-micro a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-digital\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-digital .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-digital .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-digital a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-digital a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .slider-about\":false},[\"line-height:16px\",\"padding-top:70px\"]],[false,{\".about-service .slider-about:not(#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-service .slider-about\":false},[\"line-height:18px\"]],[false,{\".about-service .slider-about:not(#_#_#_#_#_#_#_)\":false},[\"font-size:15px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".about-service .slider-about\":false},[\"text-align:center\"]],[false,{\".about-service .slider-about:not(#_#_#_#_#_#_#_)\":false},[\"font-size:13px\"]],[false,\"}\"],[false,{\".about-service .slider-about h3\":false},[\"font-size:22px\",\"line-height:22px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-service .slider-about h3\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".about-service .slider-about .hand-call\":false},[\"border-top:1px solid #143260\",\"padding-top:30px\",\"margin-top:10px\",\"display:inline-block\"]],[false,{\".about-service .slider-about .border\":false},[\"width:80%\",\"margin-top:20px\",\"margin-bottom:40px\",\"margin-left:10%\"]],[false,{\".about-service .slider-about .border:not(#_#_#_#_#_#_#_)\":false},[\"border:0\",\"border-bottom:1px solid #ccc\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .row\":false},[\"margin:0\"]],[false,\"}\"],[false,{\".intern-about\":false},[\"width:100%\",\"position:relative\",\"padding:70px 0\",\"background-color:#fff\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-intern.jpg\\\")\",\"background-position:bottom center\",\"background-repeat:no-repeat\",\"background-size:100% auto\",\"text-align:center\",\"color:#8c8c8c\",\"font-family:Rajdhani\",\"font-weight:400\",\"font-size:20px\",\"line-height:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".intern-about\":false},[\"font-size:25px\",\"line-height:25px\"]],[false,\"}\"],[false,{\".intern-about .logos\":false},[\"text-align:center\",\"margin-top:50px\"]],[false,{\".intern-about .logos amp-img\":false,\".intern-about .logos amp-anim\":false},[\"display:inline-block\",\"height:90px\",\"margin:0 30px\",\"-webkit-transition:all .2s ease-in-out\",\"-moz-transition:all .2s ease-in-out\",\"transition:all .2s ease-in-out\",\"-webkit-filter:grayscale(100%)\"]],[false,{\".intern-about .logos amp-img:hover\":false,\".intern-about .logos amp-anim:hover\":false},[\"-webkit-filter:grayscale(0)\"]],[false,{\".intern-about .logos amp-img.menor\":false,\".intern-about .logos amp-anim.menor\":false},[\"height:80px\"]],[false,\"@media (max-width:992px){\"],[false,{\".intern-about .logos amp-img\":false,\".intern-about .logos amp-anim\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".intern-about .logos amp-img\":false,\".intern-about .logos amp-anim\":false},[\"height:120px\"]],[false,{\".intern-about .logos amp-img.menor\":false,\".intern-about .logos amp-anim.menor\":false},[\"height:110px\"]],[false,\"}\"],[false,{\".items-service\":false},[\"width:100%\",\"padding:0\",\"margin:0\",\"position:relative\"]],[false,{\".items-service.service-devops\":false},[\"background:#38cea3\",\"background:-moz-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:-webkit-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:linear-gradient(to right,#38cea3 0,#75e168 100%)\"]],[false,{\".items-service.service-machine\":false},[\"background:#4e2e7c\",\"background:-moz-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:-webkit-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:linear-gradient(to right,#4e2e7c 0,#38a3cc 100%)\"]],[false,{\".items-service.service-micro\":false},[\"background:#13203c\",\"background:-moz-linear-gradient(left,#13203c 0,#9d9c9c 100%)\",\"background:-webkit-linear-gradient(left,#13203c 0,#9d9c9c 100%)\",\"background:linear-gradient(to right,#13203c 0,#9d9c9c 100%)\"]],[false,{\".items-service.service-digital\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to right,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".items-service .box-item\":false},[\"position:relative\",\"height:300px\",\"overflow:hidden\"]],[false,\"@media (min-width:1400px){\"],[false,{\".items-service .box-item\":false},[\"height:350px\"]],[false,\"}\"],[false,{\".items-service .box-item .up\":false},[\"position:relative\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"width:100%\",\"height:300px\",\"padding:0\"]],[false,\"@media (min-width:1400px){\"],[false,{\".items-service .box-item .up\":false},[\"height:350px\"]],[false,\"}\"],[false,{\".items-service .box-item .up .bg-image\":false},[\"opacity:.5\",\"background-size:auto 110%\",\"background-position:center\",\"background-repeat:no-repeat\",\"width:100%\",\"height:100%\",\"position:absolute\",\"left:0\",\"top:0\",\"z-index:0\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".items-service .box-item .up .bg-image2\":false},[\"opacity:.5\",\"background-size:auto 110%\",\"background-position:center\",\"background-repeat:no-repeat\",\"width:100%\",\"height:100%\",\"position:absolute\",\"left:0\",\"top:0\",\"z-index:0\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".items-service .box-item .up .wrap-absol\":false},[\"width:100%\",\"height:100%\",\"position:absolute\",\"left:0\",\"top:0\",\"z-index:1\",\"display:table\",\"padding:20px\"]],[false,{\".items-service .box-item .up .wrap-content\":false},[\"display:table-row\",\"width:100%\",\"height:100%\",\"position:relative\"]],[false,{\".items-service .box-item .up .wrap-content .button\":false},[\"width:100%\",\"height:100%\",\"display:table-cell\",\"vertical-align:middle\",\"text-align:center\"]],[false,{\".items-service .box-item .up .wrap-content .btn1\":false},[\"background:0\"]],[false,{\".items-service .box-item .up .wrap-content .btn1:not(#_#_#_#_#_#_#_)\":false},[\"background-color:rgba(0,0,0,0)\"]],[false,{\".items-service .box-item .up .wrap-content .btn1 .mask-btn\":false},[\"border:1px solid #fff\",\"font-weight:500\",\"background-color:rgba(255,255,255,.3)\",\"color:#fff\"]],[false,{\".items-service .box-item .up .wrap-content .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".items-service .box-item .up:hover .bg-image\":false,\".items-service .box-item .up:hover .bg-image2\":false},[\"background-size:auto 130%\"]],[false,{\".items-service .box-item .down\":false},[\"background:#38cea3\",\"background:-webkit-linear-gradient(top,#38cea3 0,#75e168 100%)\",\"background:-o-linear-gradient(top,#38cea3 0,#75e168 100%)\",\"background:linear-gradient(to bottom,#38cea3 0,#75e168 100%)\",\"width:100%\",\"height:300px\",\"padding:20px\",\"color:#fff\",\"font-size:13px\"]],[false,{\".items-service .box-item .down .wrap-all\":false},[\"width:100%\",\"height:260px\"]],[false,{\".items-service.service-machine .down\":false},[\"background:#4e2e7c\",\"background:-moz-linear-gradient(top,#4e2e7c 0,#38a3cc 100%)\",\"background:-webkit-linear-gradient(top,#4e2e7c 0,#38a3cc 100%)\",\"background:linear-gradient(to bottom,#4e2e7c 0,#38a3cc 100%)\"]],[false,{\".items-service.service-micro .down\":false},[\"background:#13203c\",\"background:-moz-linear-gradient(top,#13203c 0,#9d9c9c 100%)\",\"background:-webkit-linear-gradient(top,#13203c 0,#9d9c9c 100%)\",\"background:linear-gradient(to bottom,#13203c 0,#9d9c9c 100%)\"]],[false,{\".items-service.service-digital .down\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to bottom,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".phrase\":false},[\"width:100%\",\"position:relative\",\"padding:50px 0\",\"background-color:#ededed\",\"text-align:center\",\"font-family:Rajdhani\",\"font-weight:400\",\"font-size:20px\",\"line-height:20px\",\"color:#152649\"]],[false,{\".phrase .author\":false},[\"font-size:11px\",\"line-height:11px\",\"color:#9c9c9c\",\"text-transform:uppercase\",\"letter-spacing:5px\",\"margin-top:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".phrase\":false},[\"font-size:25px\",\"line-height:25px\"]],[false,{\".phrase .author\":false},[\"font-size:14px\",\"line-height:14px\"]],[false,\"}\"],[false,{\".about-idea\":false},[\"width:100%\",\"position:relative\",\"padding:50px 0\",\"background-color:#fff\"]],[false,{\".about-idea amp-img\":false,\".about-idea amp-anim\":false},[\"margin-top:35px\",\"margin-bottom:35px\"]],[false,{\".about-idea .btn1\":false},[\"width:100%\",\"text-align:center\"]],[false,{\".about-idea .btn1 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-idea .btn1\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,{\".about-idea .top-info\":false},[\"margin:50px 0\"]],[false,{\".about-idea .withborder\":false},[\"border-left:1px solid #ccc\",\"padding-top:10px\",\"margin-bottom:70px\",\"font-size:17px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-idea .withborder\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,\"}\"],[false,{\".about-idea .big\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"font-size:20px\",\"line-height:20px\",\"color:#152649\",\"margin-top:40px\",\"text-align:center\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-idea .big\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".about-idea\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".hand-call\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:22px\",\"font-size:22px\",\"color:#152649\",\"text-align:left\"]],[false,\"@media (min-width:1400px){\"],[false,{\".hand-call\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".hand-call .border-call\":false},[\"padding-left:20px\",\"margin-bottom:20px\",\"position:relative\"]],[false,{\".hand-call .border-call:before\":false},[\"width:1px\",\"height:100%\",\"position:absolute\",\"content:\\\"\\\"\",\"left:0\",\"top:0\",\"background:#b5f155\",\"background:-moz-linear-gradient(top,#b5f155 0,#2e9cc5 100%)\",\"background:-webkit-linear-gradient(top,#b5f155 0,#2e9cc5 100%)\",\"background:linear-gradient(to bottom,#b5f155 0,#2e9cc5 100%)\"]],[false,{\".hand-call .arrow\":false},[\"padding-left:50px\",\"position:relative\",\"position:relative\"]],[false,{\".hand-call .arrow:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"top:0\",\"left:0\",\"width:30px\",\"height:44px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrow.png\\\")\"]],[false,{\".qualities\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"padding:50px 0\"]],[false,{\".qualities .hand-call\":false},[\"text-align:center\"]],[false,{\".qualities .hand-call .border-call\":false},[\"display:inline-block\",\"text-align:left\"]],[false,{\".qualities .hand-call .arrow\":false},[\"margin-left:20px\",\"display:inline-block\",\"text-align:left\"]],[false,{\".qualities .circles-menu\":false},[\"margin-top:0\",\"margin-bottom:50px\"]],[false,{\".qualities .circles-menu .text-circle:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".qualities .ctext\":false},[\"text-align:center\",\"font-size:13px\",\"font-weight:500\",\"margin-top:30px\",\"padding-top:30px\",\"position:relative\"]],[false,{\".qualities .ctext:after\":false},[\"width:70px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"margin-left:50%\",\"left:-35px\",\"position:absolute\",\"content:\\\"\\\"\"]],[false,{\".qualities .ctext.text1:after\":false},[\"background-color:#9ef34b\"]],[false,{\".qualities .ctext.text2:after\":false},[\"background-color:#d1d1d1\"]],[false,{\".qualities .ctext.text3:after\":false},[\"background-color:#13b5d6\"]],[false,{\".gallery-logos .item\":false},[\"display:table\",\"width:100%\",\"height:100px\"]],[false,{\".gallery-logos .item .wrap-item\":false},[\"width:100%\",\"height:100%\",\"display:table-row\"]],[false,{\".gallery-logos .item .wrap-item .image\":false},[\"width:100%\",\"height:100%\",\"display:table-cell\",\"vertical-align:middle\",\"text-align:center\"]],[false,{\".gallery-logos .item .wrap-item .image amp-img\":false,\".gallery-logos .item .wrap-item .image amp-anim\":false},[\"max-width:80%\",\"width:auto\",\"max-height:50px\",\"height:auto\",\"display:inline-block\"]],[false,\"@media (min-width:1400px){\"],[false,{\".gallery-logos .item .wrap-item .image amp-img\":false,\".gallery-logos .item .wrap-item .image amp-anim\":false},[\"max-height:70px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".contact\":false,\".text-contact\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".top-contact\":false},[\"line-height:90px\",\"position:relative\",\"width:100%\",\"margin-top:100px\",\"background:#75e168\",\"background:-moz-linear-gradient(top,#75e168 0,#38cea3 100%)\",\"background:-webkit-linear-gradient(top,#75e168 0,#38cea3 100%)\",\"background:linear-gradient(to bottom,#75e168 0,#38cea3 100%)\",\"padding:70px 0\"]],[false,{\".top-contact h1\":false},[\"margin:0\",\"font-size:50px\"]],[false,{\".top-contact h2\":false},[\"margin:0\",\"font-size:40px\",\"line-height:90px\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-contact h2\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".top-contact amp-google-document-embed\":false},[\"width:100%\",\"margin-top:20px\"]],[false,{\".subitems\":false},[\"margin:30px 0\"]],[false,{\".subitems .item\":false},[\"position:relative\",\"display:inline-block\",\"color:#152649\",\"font-family:Rajdhani\",\"font-weight:700\",\"padding:0 10px 0 0\",\"margin-right:10px\",\"margin-bottom:5px\"]],[false,{\".subitems .item:after\":false},[\"width:1px\",\"height:100%\",\"position:absolute\",\"content:\\\"\\\"\",\"right:0\",\"top:0\",\"background:#2b9ac7\",\"background:-moz-linear-gradient(top,#2b9ac7 0,#b9f05a 100%)\",\"background:-webkit-linear-gradient(top,#2b9ac7 0,#b9f05a 100%)\",\"background:linear-gradient(to bottom,#2b9ac7 0,#b9f05a 100%)\"]],[false,{\".subitems .item:first-child\":false},[\"padding-left:0\"]],[false,{\".subitems .item:last-child\":false},[\"padding-right:0\"]],[false,{\".subitems .item:last-child:after\":false},[\"display:none\"]],[false,{\".circles-menu\":false},[\"margin-top:-100px\",\"position:relative\",\"text-align:center\"]],[false,\"@media (min-width:1400px){\"],[false,{\".circles-menu\":false},[\"margin-top:-125px\"]],[false,\"}\"],[false,{\".circles-menu .circle\":false},[\"margin:0 auto 30px\",\"display:table\",\"width:200px\",\"height:200px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"border-radius:100px\",\"-moz-border-radius:100px\",\"-webkit-border-radius:100px\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (min-width:1400px){\"],[false,{\".circles-menu .circle\":false},[\"width:250px\",\"height:250px\",\"border-radius:125px\",\"-moz-border-radius:125px\",\"-webkit-border-radius:125px\"]],[false,\"}\"],[false,{\".circles-menu .circle .wrap\":false},[\"display:table-row\",\"width:100%\",\"height:100%\"]],[false,{\".circles-menu .circle .wrap .text-circle\":false},[\"display:table-cell\",\"width:100%\",\"height:100%\",\"vertical-align:middle\",\"font-family:Rajdhani\",\"font-weight:700\",\"color:#002048\",\"font-size:25px\",\"line-height:25px\"]],[false,{\".circles-menu .circle.circle1\":false},[\"background-color:#00a2c3\",\"border:3px solid #00a2c3\"]],[false,{\".circles-menu .circle.circle1:hover\":false},[\"background-color:#fff\"]],[false,{\".circles-menu .circle.circle2\":false},[\"background-color:#d0d0d0\",\"border:3px solid #d0d0d0\"]],[false,{\".circles-menu .circle.circle2:hover\":false},[\"background-color:#fff\"]],[false,{\".circles-menu .circle.circle3\":false},[\"background-color:#91e63e\",\"border:3px solid #91e63e\"]],[false,{\".circles-menu .circle.circle3:hover\":false},[\"background-color:#fff\"]],[false,{\".map\":false},[\"margin:0\",\"padding:0\",\"position:relative\",\"width:100%\",\"background-color:#e8e8e8\",\"color:grey\"]],[false,{\".map .info\":false},[\"width:620px\",\"position:absolute\",\"margin-left:50%\",\"left:-310px\",\"top:-60px\",\"background-color:#fff\",\"padding:20px\",\"color:#152649\",\"font-size:13px\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info\":false},[\"width:90%\",\"margin:0 5%\",\"left:0\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".map .info\":false},[\"width:620px\",\"left:-310px\",\"font-size:15px\"]],[false,\"}\"],[false,{\".map .info .local\":false},[\"width:40%\",\"float:left\",\"padding-right:20px\"]],[false,{\".map .info .local .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info .local .ltext\":false},[\"float:left\",\"text-align:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info .local\":false},[\"width:100%\",\"padding:0\"]],[false,\"}\"],[false,{\".map .info .mail\":false},[\"width:60%\",\"float:left\",\"padding-left:20px\",\"border-left:1px solid #ccc\"]],[false,{\".map .info .mail .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info .mail .ltext\":false},[\"float:left\",\"line-height:40px\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info .mail\":false},[\"width:100%\",\"padding:0\",\"border:0\",\"margin-top:20px\"]],[false,\"}\"],[false,{\".map .info2\":false},[\"width:500px\",\"position:absolute\",\"margin-left:50%\",\"left:-250px\",\"top:40px\",\"background-color:#fff\",\"padding:20px\",\"color:#152649\",\"font-size:13px\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info2\":false},[\"width:90%\",\"margin:0 5%\",\"left:0\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".map .info2\":false},[\"width:600px\",\"left:-300px\",\"font-size:15px\"]],[false,\"}\"],[false,{\".map .info2 .local\":false},[\"width:40%\",\"float:left\",\"padding-right:20px\"]],[false,{\".map .info2 .local .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info2 .local .ltext\":false},[\"float:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info2 .local\":false},[\"width:100%\",\"padding:0\"]],[false,\"}\"],[false,{\".map .info2 .mail\":false},[\"width:60%\",\"float:left\",\"padding-left:20px\",\"border-left:1px solid #ccc\"]],[false,{\".map .info2 .mail .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info2 .mail .ltext\":false},[\"float:left\",\"line-height:40px\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info2 .mail\":false},[\"width:100%\",\"padding:0\",\"border:0\",\"margin-top:20px\"]],[false,\"}\"],[false,{\".map h2\":false},[\"margin-top:70px\"]],[false,{\".panel\":false},[\"position:relative\",\"text-align:center\",\"margin-top:-13%\"]],[false,{\".panel .panel-img\":false},[\"position:absolute\"]],[false,{\".panel .panel-img amp-img\":false,\".panel .panel-img amp-anim\":false},[\"width:40px\"]],[false,{\".panel #panel1\":false},[\"top:100px\",\"left:0\"]],[false,{\".panel #panel2\":false},[\"top:80px\",\"left:40px\"]],[false,{\".panel #panel3\":false},[\"top:100px\",\"left:80px\"]],[false,{\".panel #panel4\":false},[\"top:0\",\"left:120px\"]],[false,{\".panel #panel5\":false},[\"top:70px\",\"left:160px\"]],[false,{\".panel #panel6\":false},[\"top:90px\",\"left:200px\"]],[false,{\".panel #panel7\":false},[\"top:70px\",\"left:240px\"]],[false,{\".panel #panel8\":false},[\"top:50px\",\"left:280px\"]],[false,{\".panel #panel9\":false},[\"top:70px\",\"left:320px\"]],[false,{\".panel #panel10\":false},[\"top:130px\",\"left:360px\"]],[false,{\".hidden\":false},[\"opacity:0\"]],[false,{\".visible\":false},[\"opacity:1\"]],[false,\"@media (max-width:992px){\"],[false,{\".text-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".desktop\":false},[\"display:block\"]],[false,\"@media (max-width:992px){\"],[false,{\".desktop\":false},[\"display:none\"]],[false,\"}\"],[false,{\".mobile\":false},[\"display:none\"]],[false,\"@media (max-width:992px){\"],[false,{\".mobile\":false},[\"display:block\"]],[false,\"}\"],[false,{\".mbottom\":false},[\"margin-bottom:-50px\"]],[false,\"@media (max-width:1400px){\"],[false,{\".container-fluid\":false},[\"max-width:1140px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".container-fluid\":false},[\"width:90%\"]],[false,\"}\"],[false,{\".bg-middle\":false},[\"background-position:left center\",\"background-size:auto 95%\",\"background-repeat:no-repeat\"]],[false,{\".bg-bottom\":false},[\"background-position:bottom center\",\"background-size:auto 95%\",\"background-repeat:no-repeat\"]],[false,\"@media (max-width:992px){\"],[false,{\".item-carousel-1\":false,\".item-carousel-2\":false},[\"text-align:center\"]],[false,{\".item-carousel-1:not(#_#_#_#_#_#_#_)\":false,\".item-carousel-2:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\",\"background-image:none\"]],[false,\"}\"],[false,{\".item-carousel-3\":false},[\"text-align:center\"]],[false,{\".add-top\":false},[\"padding-top:150px\"]],[false,{\".add-top-2\":false},[\"margin-top:100px\"]],[false,{\".blog-color\":false},[\"background-color:#f8f8f8\",\"line-height:50px\",\"position:relative\",\"width:100%\",\"margin-top:100px\"]],[false,{\".blog-color h1\":false},[\"margin:0\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".blog-color .info-text\":false},[\"font-family:Rajdhani\",\"font-weight:300\",\"line-height:20px\",\"font-size:16px\",\"color:#8c8c8c\"]],[false,{\".blog-title-main\":false},[\"padding:90px 50px\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:left center\"]],[false,\"@media (max-width:992px){\"],[false,{\".blog-title-main\":false},[\"padding:30px\"]],[false,\"}\"],[false,{\".blog-main\":false},[\"position:relative\",\"background-color:#fff\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\"]],[false,\"@media (max-width:992px){\"],[false,{\".blog-main\":false},[\"display:none\"]],[false,\"}\"],[false,{\".blog-main .blog-mask\":false},[\"padding:0 50px\",\"position:absolute\",\"width:100%\",\"height:100%\",\"left:0\",\"top:0\",\"background:-moz-linear-gradient(left,rgba(50,143,194,.95) 0,rgba(204,204,204,.95) 100%)\",\"background:-webkit-linear-gradient(left,rgba(50,143,194,.95) 0,rgba(204,204,204,.95) 100%)\",\"background:linear-gradient(to right,rgba(50,143,194,.95) 0,rgba(204,204,204,.95) 100%)\",\"color:#152649\",\"display:flex\",\"align-content:center\",\"align-content:center\",\"flex-wrap:wrap\",\"flex-direction:column\",\"justify-content:center\"]],[false,{\".blog-main .blog-main-content\":false},[\"width:100%\"]],[false,{\".blog-main .blog-main-content .blog-date\":false},[\"line-height:25px\",\"margin-bottom:0\"]],[false,{\".blog-main .blog-main-content .blog-title\":false},[\"font-size:20px\",\"line-height:25px\",\"font-weight:700\",\"display:block\"]],[false,\"@media (min-width:1400px){\"],[false,{\".blog-main .blog-main-content .blog-title\":false},[\"font-size:25px\",\"line-height:30px\",\"max-width:400px\"]],[false,\"}\"],[false,{\".blog-main .blog-main-content .blog-info\":false},[\"color:#152649\",\"font-size:14px\",\"line-height:25px\",\"margin-bottom:0\"]],[false,\"@media (min-width:1400px){\"],[false,{\".blog-main .blog-main-content .blog-info\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".blog-main .blog-main-content .blog-read\":false},[\"background-color:#9d7c23\",\"color:#fff\",\"font-family:Rajdhani\",\"font-size:14px\",\"font-weight:500\",\"padding:5px 25px\",\"border-radius:2px\",\"-webkit-box-shadow:2px 2px 10px 0 transparent\",\"box-shadow:2px 2px 10px 0 transparent\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (min-width:1400px){\"],[false,{\".blog-main .blog-main-content .blog-read\":false},[\"font-size:17px\"]],[false,\"}\"],[false,{\".blog-main .blog-main-content .blog-read:hover\":false},[\"-webkit-box-shadow:2px 2px 10px 0 rgba(0,0,0,.5)\",\"box-shadow:2px 2px 10px 0 rgba(0,0,0,.5)\"]],[false,{\".blog-main .blog-main-content .blog-tags\":false},[\"line-height:15px\",\"margin-bottom:0\",\"color:#152649\",\"margin-top:10px\"]],[false,{\".blog-main .blog-main-content .blog-tags a\":false},[\"border-color:#346a8f\"]],[false,{\".content-blog\":false},[\"position:relative\",\"width:100%\",\"background-color:#f3f3f3\",\"padding:50px 0\",\"color:grey\",\"font-size:16px\",\"line-height:25px\"]],[false,\"@media (max-width:992px){\"],[false,{\".content-blog\":false},[\"background-color:#fff\"]],[false,\"}\"],[false,{\".content-blog strong\":false},[\"color:#23819d\",\"font-size:23px\"]],[false,{\".content-blog small\":false},[\"font-weight:700\"]],[false,{\".content-blog amp-img\":false,\".content-blog amp-anim\":false},[\"width:100%\",\"max-width:100%\"]],[false,{\".content-blog .capa-blog\":false},[\"width:100%\",\"margin-top:-50px\",\"margin-bottom:30px\"]],[false,{\".pagination\":false},[\"width:100%\",\"text-align:center\",\"display:block\"]],[false,{\".pagination a\":false},[\"border:1px solid #999\",\"color:#999\",\"margin:0 20px\",\"border-radius:5px\",\"padding:10px 15px\",\"font-family:Rajdhani\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".pagination a:hover\":false},[\"color:#152649\",\"border:1px solid #152649\"]],[false,{\".arrow-wrap\":false},[\"justify-content:center\",\"display:flex\",\"align-items:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".arrow-wrap--top\":false},[\"margin-bottom:30px\"]],[false,\"}\"],[false,{\".back-arrow\":false},[\"color:#152649\",\"text-transform:uppercase\",\"font-weight:200\",\"font-family:Rajdhani\",\"font-size:14px\",\"margin-top:20px\"]],[false,{\".blog-tags\":false},[\"font-size:12px\",\"color:#23819d\"]],[false,\"@media (min-width:1400px){\"],[false,{\".blog-tags\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".blog-tags a\":false},[\"border-right:1px solid #ccc\",\"margin-left:10px\",\"padding-right:10px\"]],[false,{\".blog-tags a:last-child\":false},[\"border:0\",\"padding:0\"]],[false,{\".blog-tags a:first-child\":false},[\"margin:0\"]],[false,{\".top-blog-single\":false},[\"position:relative\",\"width:100%\",\"margin-top:100px\",\"padding:70px 0\",\"background-color:#fff\"]],[false,{\".top-blog-single a:hover\":false},[\"text-decoration:underline\"]],[false,{\".top-blog-single h1\":false},[\"margin:0 0 10px\",\"font-size:45px\",\"line-height:45px\",\"font-family:Raleway\"]],[false,{\".top-blog-single .blog-title\":false},[\"line-height:55px\",\"color:#152649\"]],[false,{\".top-blog-single .wrap-blog-info\":false},[\"margin-top:-45px\",\"margin-bottom:30px\"]],[false,{\".top-blog-single .back-arrow\":false},[\"font-size:35px\",\"margin:0\"]],[false,{\".top-blog-single .back-arrow a:hover\":false},[\"text-decoration:none\"]],[false,{\".top-blog-single .blog-tags\":false},[\"margin-bottom:-30px\",\"margin-top:30px\"]],[false,{\".blog-info\":false},[\"font-family:Rajdhani\",\"font-size:17px\",\"line-height:25px\",\"color:#23819d\",\"font-weight:500\"]],[false,{\".blog-date\":false},[\"color:#152649\",\"font-family:Rajdhani\",\"font-size:14px\",\"margin-bottom:10px\",\"text-transform:uppercase\",\"font-weight:500\"]],[false,\"@media (min-width:1400px){\"],[false,{\".blog-date\":false},[\"font-size:20px\"]],[false,\"}\"],[false,{\".blog-date--text\":false},[\"color:#23819d\",\"margin-top:20px\"]],[false,{\".box-post-intern\":false},[\"padding:20px\",\"background-color:#f0f0f0\",\"border:1px solid #c2c2c2\",\"border-radius:2px\",\"height:100%\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width:992px){\"],[false,{\".box-post-intern\":false},[\"margin-bottom:30px\",\"height:auto\"]],[false,\"}\"],[false,{\".box-post-intern:hover\":false},[\"background-color:#fff\"]],[false,{\".box-post-intern .blog-date\":false},[\"color:#23819d\",\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"margin-bottom:10px\",\"text-transform:uppercase\",\"font-weight:500\"]],[false,{\".box-post-intern .blog-title\":false},[\"font-size:20px\",\"line-height:25px\",\"color:#23819d\",\"font-weight:700\"]],[false,{\".box-post-intern .blog-info\":false},[\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"color:#23819d\",\"font-weight:500\",\"margin-top:15px\"]],[false,{\".box-post-intern .blog-tags\":false},[\"margin-bottom:0\"]],[false,{\".box-post\":false},[\"height:calc(100% - 30px)\",\"overflow:hidden\",\"position:relative\",\"padding:30px\",\"margin-bottom:30px\",\"background-color:#f0f0f0\",\"border:1px solid #c2c2c2\",\"border-radius:2px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width:992px){\"],[false,{\".box-post\":false},[\"height:auto\"]],[false,\"}\"],[false,{\".box-post:hover\":false},[\"background-color:#fff\"]],[false,{\".box-post .capa-post\":false},[\"width:calc(100% + 60px)\",\"height:200px\",\"margin-top:-30px\",\"margin-left:-30px\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:top center\",\"margin-bottom:30px\"]],[false,{\".box-post .blog-date\":false},[\"color:#23819d\",\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"margin-bottom:30px\",\"text-transform:uppercase\",\"font-weight:500\"]],[false,\"@media (min-width:1400px){\"],[false,{\".box-post .blog-date\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".box-post .blog-title\":false},[\"font-size:20px\",\"line-height:25px\",\"color:#23819d\",\"font-weight:700\"]],[false,\"@media (min-width:1400px){\"],[false,{\".box-post .blog-title\":false},[\"font-size:25px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".box-post .blog-info\":false},[\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"color:#23819d\",\"font-weight:500\",\"margin-top:10px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".box-post .blog-info\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".box-post .blog-excerpt\":false},[\"font-size:12px\",\"line-height:18px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".box-post .blog-excerpt\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".box-post .blog-read\":false},[\"font-family:Rajdhani\",\"color:#9d7c23\",\"font-size:13px\",\"line-height:15px\",\"font-weight:500\"]],[false,\"@media (min-width:1400px){\"],[false,{\".box-post .blog-read\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".box-post .blog-tags\":false},[\"margin-top:20px\",\"margin-bottom:0\"]],[false,{\".more-section\":false},[\"margin-top:30px\"]],[false,{\"li.categories\":false},[\"font-family:Rajdhani\",\"text-transform:uppercase\",\"list-style:none\",\"margin-bottom:70px\",\"font-weight:500\",\"color:#23819d\",\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"li.categories\":false},[\"font-size:25px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\"li.categories\":false},[\"margin-top:50px\",\"margin-bottom:0\"]],[false,\"}\"],[false,{\"li.categories ul\":false},[\"list-style:none\",\"padding:0\",\"margin-top:30px\"]],[false,{\"li.categories ul li\":false},[\"margin-bottom:15px\",\"text-transform:none\",\"font-size:13px\",\"font-family:Raleway\",\"font-weight:300\"]],[false,\"@media (min-width:1400px){\"],[false,{\"li.categories ul li\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".icon-main-blog\":false},[\"width:80px\",\"margin-top:-20px\",\"margin-left:-15px\"]],[false,{\".icon-main-blog amp-img\":false,\".icon-main-blog amp-anim\":false},[\"width:100%\"]],[false,{\"#paginator\":false},[\"width:100%\",\"padding:0 15px\",\"margin:25px 0\",\"text-align:center\"]],[false,{\"#paginator li\":false},[\"list-style:none\",\"display:inline-block\",\"width:30px\",\"line-height:30px\",\"border:1px solid #ccc\",\"border-radius:5px\",\"color:#999\",\"margin:5px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"#paginator li.current\":false,\"#paginator li:hover\":false},[\"color:#152649\",\"border:1px solid #152649\",\"font-weight:700\"]],[false,{\"#paginator li a\":false},[\"display:block\"]],[false,{\".footer-media a\":false},[\"color:#999\",\"margin-left:20px\"]],[false,{\".avatar-20:not(#_#_#_#_#_#_#_)\":false},[\"width:20px\"]],[false,{\".mobile-address\":false},[\"padding-top:30px\"]],[false,\"@media (max-width:1000px) and (orientation:landscape){\"],[false,{\".about-intern\":false},[\"padding-bottom:30px\"]],[false,{\".circles-menu\":false},[\"margin-top:30px\"]],[false,\"}\"],[false,\"@media (max-width:1000px){\"],[false,{\".box-post .capa-post\":false},[\"height:170px\"]],[false,\"}\"],[false,{\".box-post\":false},[\"padding:0\",\"margin-bottom:0\"]],[false,{\".box-post:not(#_#_#_#_#_#_#_)\":false},[\"height:100%\"]],[false,{\".box-post-text\":false},[\"padding:30px\"]],[false,{\".div-post\":false},[\"margin-bottom:30px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":9996,\"final_size\":10003,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/shared.css?v=885986021\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"c90d28f47007b3c5d58885a57c053d63\",\"parse_time\":0.10746908187866211,\"shake_time\":0.000244140625,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".new-header__nav--list\":true},[\"margin:0\",\"padding:0\",\"display:contents\"]],[true,{\".new-header__nav--list li\":true},[\"list-style:none\",\"color:#152649\",\"font-size:15px\",\"font-weight:900\",\"line-height:30px\",\"text-transform:uppercase\",\"padding:0 .5rem\"]],[true,{\".new-header__nav--list li:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".new-header__nav--list li .nav-link:not(#_#_#_#_#_#_#_#_)\":true},[\"padding-right:10px\",\"padding-left:10px\",\"white-space:nowrap\"]],[true,{\".new-header__nav--list li .nav-link:hover:not(#_#_#_#_#_#_#_#_)\":true},[\"color:#24c1ff\"]],[true,\"@media (max-width:992px){\"],[true,{\".new-header__nav--list li .nav-link:not(#_#_#_#_#_#_#_#_)\":true},[\"padding-right:5px\",\"padding-left:5px\"]],[true,\"}\"],[true,{\".new-header__button\":true},[\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"float:right\",\"width:15%\"]],[true,{\".new-header__button:not(#_#_#_#_#_#_#_)\":true},[\"color:#152649\"]],[true,{\".new-header__button a\":true},[\"background:0 0\",\"border:none\",\"color:#152649\",\"font-family:raleway,sans-serif\",\"font-weight:900\",\"font-size:18px\"]],[true,{\".new-header__button a:hover\":true},[\"text-decoration:none\"]],[true,{\".dropdown-menu\":true},[\"background:#f7f7f7\",\"top:97px\",\"left:50%\",\"transform:translateX(-50%)\",\"width:70%\",\"border-radius:0\",\"border-top:none\",\"cursor:auto\"]],[true,{\".dropdown-menu:not(#_#_#_#_#_#_#_)\":true},[\"position:fixed\"]],[true,{\".dropdown-menu>.container\":true},[\"display:flex\",\"align-items:center\",\"justify-content:center\",\"min-height:270px\",\"padding:2.5rem 1.5rem 3rem\"]],[true,{\".nav-link\":true},[\"display:flex\",\"flex-direction:column\",\"align-items:center\"]],[true,{\".nav-link:not(#_#_#_#_#_#_#_)\":true},[\"color:#152649\"]],[true,{\".dropdown-toggle::after:not(#_#_#_#_#_#_#_#_)\":true},[\"color:#24c1ff\",\"border:1px solid #24c1ff\",\"width:10px\"]],[true,{\".show>.dropdown-toggle::after:not(#_#_#_#_#_#_#_#_)\":true},[\"border-top:.3em solid\",\"border-right:.3em solid transparent\",\"border-bottom:0\",\"border-left:.3em solid transparent\",\"width:0\"]],[true,{\".new-header__nav--title h5\":true},[\"font-size:2.3rem\",\"text-transform:initial\",\"font-family:raleway,sans-serif\",\"font-weight:800\",\"color:#152649\",\"line-height:38px\"]],[true,{\".new-header__nav--title h5:after\":true},[\"content:\\\"-\\\"\",\"border-bottom:0 solid\",\"border-image-slice:1\",\"border-width:5px\",\"display:block\",\"color:transparent\",\"height:25px\",\"width:65px\",\"margin-bottom:2rem\"]],[true,{\".new-header__nav--subtitle p\":true},[\"margin:0\",\"font-size:.8rem\",\"color:#152649\",\"font-weight:400\",\"text-transform:initial\",\"margin-bottom:2rem\",\"line-height:15px\"]],[true,{\".new-header__nav--subtitle p:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".new-header__nav--right-edge\":true},[\"border-right:1px solid #c9c9c9\"]],[true,{\".new-header__nav--menu--img\":true},[\"padding:0\",\"text-align:center\"]],[true,{\".new-header__nav--menu--img amp-img\":true,\".new-header__nav--menu--img amp-anim\":false},[\"max-width:100%\"]],[true,{\".new-header__nav--menu--title\":true},[\"color:#152649\",\"text-transform:capitalize\",\"font-weight:800\",\"font-family:raleway,sans-serif\",\"font-size:1.1rem\",\"margin-bottom:.3rem\"]],[true,{\".new-header__nav--menu--text\":true},[\"color:#6f7070\",\"font-weight:400\",\"text-transform:initial\",\"font-size:.8rem\",\"margin:0\",\"line-height:15px\"]],[true,{\".new-header__nav--menu--text:not(#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".new-header__nav--menu--link:hover>.new-header__nav--menu--title\":true},[\"color:#24c1ff\"]],[true,{\".new-header__nav--menu--link:hover>.new-header__nav--menu--text\":true},[\"color:#24c1ff\"]],[true,{\".new-header__nav--menu--link:hover\":true},[\"text-decoration:none\"]],[true,{\".new-header__nav--menu--box:not(#_#_#_#_#_#_#_)\":true},[\"margin-bottom:1.5rem\"]],[true,{\".new-header__nav--menu--button\":true},[\"width:65%\",\"border-radius:35px\",\"border:1px solid #9df168\",\"position:relative\",\"display:flex\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"text-align:center\",\"font-size:1rem\",\"transition:font .3s\",\"height:45px\",\"align-items:center\",\"justify-content:center\"]],[true,{\".new-header__nav--menu--button:hover\":true},[\"text-decoration:none\",\"font-size:1.2rem\"]],[true,{\".new-header__nav--menu--button--link\":true},[\"color:#152649\",\"text-transform:initial\",\"font-family:raleway,sans-serif\",\"font-weight:900\"]],[true,{\".new-header__nav--title-color\":true},[\"color:#24c1ff\"]],[true,{\".new-header__nav--menu--whatsIs\":true},[\"font-weight:400\",\"color:#24c1ff\",\"text-transform:initial\",\"font-size:.9rem\"]],[true,{\".new-header__nav--menu--whatsIs:not(#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".bg-light\":true},[\"width:85%\"]],[true,{\".bg-light:not(#_#_#_#_#_#_#_)\":true},[\"background-color:transparent\"]],[true,{\".new-header__nav--subtitle-icon\":true},[\"padding:0\",\"text-align:right\"]],[true,{\".new-header__nav--subtitle-icon:not(#_#_#_#_#_#_#_)\":true},[\"width:90%\"]],[true,{\".new-header__logo\":true},[\"width:20%\"]],[true,{\".new-header__menu-item\":true},[\"justify-content:flex-end\"]],[true,{\".new-header\":true},[\"top:0\",\"width:100%\",\"position:fixed\",\"background-color:#f7f7f7\",\"z-index:3\",\"transition:all .3s ease-in-out\",\"display:flex\",\"margin:0\",\"padding:0\",\"justify-content:center\"]],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:100px\"]],[true,{\".navbar-toggler:not(#_#_#_#_#_#_#_)\":true},[\"padding:0\",\"border:none\",\"outline:0\"]],[true,{\".devops-styles:not(#_#_#_#_#_#_#_)\":true},[\"margin-top:100px\"]],[true,\"@media (min-width:300px) and (max-width:768px){\"],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:70px\"]],[true,{\".devops-styles:not(#_#_#_#_#_#_#_)\":true},[\"margin-top:70px\"]],[true,{\".new-header__menu-item\":true},[\"background:#f7f7f7\",\"margin:0\",\"padding:0\",\"width:100%\",\"position:absolute\",\"top:70px\",\"left:0\",\"z-index:9\",\"overflow:scroll\",\"height:650px\",\"padding-bottom:2rem\"]],[true,{\".new-header__logo\":true},[\"width:50%\"]],[true,{\".new-header__button:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".new-header__nav--list\":true},[\"display:flex\",\"align-items:flex-start\"]],[true,{\".new-header__nav--list li\":true},[\"padding-left:1rem\"]],[true,{\".new-header__nav--list>.show\":true},[\"width:100%\",\"border:1px #ccc solid\",\"padding-bottom:1rem\"]],[true,{\".dropdown-toggle::after\":true},[\"display:none\"]],[true,{\".show>.dropdown-toggle:not(#_#_#_#_#_#_#_)\":true},[\"color:#24c1ff\"]],[true,{\".show>.dropdown-toggle::before:not(#_#_#_#_#_#_#_#_)\":true},[\"border-bottom:.3em solid\",\"border-top:0\"]],[true,{\".new-header__nav--list li .nav-link\":true},[\"display:block\"]],[true,{\".dropdown-toggle::before\":true},[\"display:inline-block\",\"margin-right:.5rem\",\"vertical-align:.255em\",\"content:\\\"\\\"\"]],[true,{\".dropdown-toggle::before:not(#_#_#_#_#_#_#_#_)\":true},[\"border-top:.3em solid\",\"border-right:.3em solid transparent\",\"border-bottom:0\",\"border-left:.3em solid transparent\",\"color:#24c1ff\"]],[true,{\".dropdown-menu\":true},[\"width:100%\",\"top:0\",\"left:0\",\"transform:none\",\"padding:0\",\"border:none\"]],[true,{\".dropdown-menu:not(#_#_#_#_#_#_#_)\":true},[\"position:relative\"]],[true,{\".dropdown-menu>.container\":true},[\"padding:0\"]],[true,{\".dropdown-menu>.container>.row\":true},[\"width:100%\"]],[true,{\".new-header__nav--title h5\":true},[\"font-size:1.5rem\"]],[true,{\".new-header__nav--title h5:after\":true},[\"display:none\"]],[true,{\".new-header__nav--menu--img\":true},[\"display:none\"]],[true,{\".align-items-center>.col-md-8\":true},[\"padding:0\"]],[true,{\".bg-light\":true},[\"width:100%\"]],[true,{\".new-header__nav--menu--title\":true},[\"display:flex\",\"align-items:center\"]],[true,{\".new-header__nav--menu--title::after\":true},[\"display:inline-block\",\"margin-left:.5rem\",\"vertical-align:.255em\",\"content:\\\"\\\"\"]],[true,{\".new-header__nav--menu--title::after:not(#_#_#_#_#_#_#_#_)\":true},[\"border-top:.3em solid transparent\",\"border-right:0\",\"border-bottom:.3em solid transparent\",\"border-left:.3em solid\",\"color:#24c1ff\"]],[true,{\".new-header__nav--right-edge\":true},[\"border-right:none\"]],[true,{\".new-header__nav--menu--button\":true},[\"margin-bottom:2rem\",\"display:flex\",\"width:50%\"]],[true,\"}\"],[true,\"@media (min-width:600px) and (max-width:768px){\"],[true,{\".new-header__button:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".new-header__logo amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".new-header__logo amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:60%\"]],[true,\"}\"],[true,\"@media (min-width:768px) and (max-width:1024px){\"],[true,{\".new-header__nav--list li\":true},[\"font-size:10px\"]],[true,{\".new-header__button a\":true},[\"font-size:13px\"]],[true,\"}\"],[true,{\".footer-2022\":true},[\"background-color:#152649\",\"color:#c1c1c1\",\"padding:5rem 0 5rem\",\"font-weight:400\"]],[true,{\".footer-2022:not(#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".footer-2022__logo amp-img\":true,\".footer-2022__logo amp-anim\":false},[\"width:100%\"]],[true,{\".footer-2022__text\":true},[\"font-size:.9rem\",\"text-align:end\",\"line-height:15px\"]],[true,{\".footer-2022__certificates\":true},[\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[true,{\".footer-2022__certificates-box-union\":true},[\"display:flex\"]],[true,{\".footer-2022__certificates--kubernetes a amp-img\":true,\".footer-2022__certificates--kubernetes a amp-anim\":false},[\"width:100%\",\"padding:0 1rem\"]],[true,{\".footer-2022__certificates--cloud-native a amp-img\":true,\".footer-2022__certificates--cloud-native a amp-anim\":false},[\"width:100%\",\"padding:0 1rem\"]],[true,{\".footer-2022__certificates--linux-foundation a amp-img\":true,\".footer-2022__certificates--linux-foundation a amp-anim\":false},[\"width:100%\",\"padding:0 1rem\"]],[true,{\".footer-2022__social-media\":true},[\"display:flex\",\"align-items:center\",\"justify-content:end\"]],[true,{\".footer-2022__social-media a\":true},[\"margin:0 .5rem\",\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[true,{\".footer-2022__social-media a amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".footer-2022__social-media a amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[true,{\".footer-2022__menu\":true},[\"margin-top:6rem\",\"margin-bottom:5rem\"]],[true,{\".footer-2022__menu--box\":true},[\"display:flex\",\"flex-direction:row\",\"width:100%\",\"padding:0\"]],[true,{\".footer-2022__menu--list\":true},[\"flex-grow:1\"]],[true,{\".footer-2022__menu--list h5\":true},[\"color:#59657e\",\"margin-bottom:1rem\",\"font-size:1rem\"]],[true,{\".footer-2022__menu--list h5:after\":true},[\"content:\\\"-\\\"\",\"border-bottom:0 solid\",\"border-image-slice:1\",\"border-width:4px\",\"display:block\",\"color:transparent\",\"height:20px\",\"width:65px\",\"margin-bottom:1.5rem\"]],[true,{\".footer-2022__menu--list ul\":true},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[true,{\".footer-2022__menu--list ul li\":true},[\"margin-bottom:.5rem\"]],[true,{\".footer-2022__menu--list ul li strong\":true},[\"color:#24c1ff\",\"font-weight:900\",\"font-family:raleway,sans-serif\",\"padding-bottom:.5rem\",\"display:block\"]],[true,{\".footer-2022__menu--list ul li a\":true},[\"color:#24c1ff\",\"font-weight:500\",\"font-family:raleway,sans-serif\",\"font-size:.9rem\"]],[true,{\".footer-2022__menu--list ul li a:hover\":true},[\"text-decoration:none\",\"-webkit-background-clip:text\",\"-webkit-text-fill-color:transparent\"]],[true,{\".footer-2022__box-end\":true},[\"font-size:.9rem\"]],[true,{\".footer-2022__box-end--privacy-policy\":true},[\"text-decoration:underline\",\"color:#c9c9c9\",\"padding-right:1rem\",\"border-right:1px solid #c9c9c9\"]],[true,{\".footer-2022__box-end--privacy-policy:hover\":true},[\"color:#24c1ff\"]],[true,{\".footer-2022__box-end--terms-of-use\":true},[\"text-decoration:underline\",\"color:#c9c9c9\",\"margin-left:1rem\",\"margin-right:3rem\"]],[true,{\".footer-2022__box-end--terms-of-use:hover\":true},[\"color:#24c1ff\"]],[true,{\".footer-2022__copyright\":true},[\"font-size:.9rem\",\"color:#c9c9c9\"]],[true,\"@media (min-width:300px) and (max-width:768px){\"],[true,{\".footer-2022__logo amp-img\":true,\".footer-2022__logo amp-anim\":false},[\"margin-bottom:3rem\",\"padding-top:5rem\",\"border-top:2px solid #486091\"]],[true,{\".footer-2022__text\":true},[\"text-align:left\",\"margin-bottom:2rem\"]],[true,{\".footer-2022__certificates\":true},[\"margin-bottom:4rem\"]],[true,{\".footer-2022__social-media\":true},[\"justify-content:flex-start\"]],[true,{\".footer-2022__certificates-box-union\":true},[\"display:flex\",\"flex-direction:column-reverse\"]],[true,{\".footer-2022__certificates--cloud-native a amp-img\":true,\".footer-2022__certificates--cloud-native a amp-anim\":false},[\"margin-bottom:1rem\"]],[true,{\".footer-2022__certificates--kubernetes a amp-img\":true,\".footer-2022__certificates--kubernetes a amp-anim\":false},[\"padding:0 .2rem\"]],[true,{\".footer-2022__certificates--linux-foundation a amp-img\":true,\".footer-2022__certificates--linux-foundation a amp-anim\":false},[\"width:80%\",\"margin-bottom:1rem\"]],[true,{\".footer-2022__menu\":true},[\"margin-top:5rem\",\"margin-bottom:3rem\",\"margin-left:15px\",\"margin-right:15px\"]],[true,{\".footer-2022__menu--box\":true},[\"flex-direction:column\"]],[true,{\".footer-2022__menu--list ul\":true},[\"margin-bottom:3rem\"]],[true,{\".footer-2022__mobile-items\":true},[\"width:100%\",\"padding-right:15px\",\"padding-left:15px\",\"margin-right:auto\",\"margin-left:auto\"]],[true,{\".footer-2022__box-end\":true},[\"margin-bottom:.5rem\"]],[true,\"}\"],[true,\"@media (min-width:600px) and (max-width:768px){\"],[true,{\".footer-2022__logo amp-img\":true,\".footer-2022__logo amp-anim\":false},[\"margin-bottom:0\",\"padding-top:0\",\"border-top:none\"]],[true,{\".footer-2022__certificates-box-union\":true},[\"flex-direction:row\"]],[true,{\".footer-2022__text\":true},[\"margin-bottom:0\"]],[true,{\".footer-2022__certificates\":true},[\"margin-bottom:0\"]],[true,{\".footer-2022__social-media\":true},[\"margin-top:2rem\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1312,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/style.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"7408b05c90ec93467ae3ffd934b45823\",\"parse_time\":0.006227016448974609,\"shake_time\":1.3828277587890625e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".categories\":false},[\"list-style-type:none\",\"padding:20px\"]],[false,{\".grecaptcha-badge\":false},[\"display:none\"]],[false,{\"figcaption\":false},[\"font-size:12px\",\"text-align:center\"]],[false,{\".content-blog h1\":false},[\"font-size:45px\",\"line-height:45px\",\"margin-top:20px\",\"margin-bottom:30px\"]],[false,{\".content-blog strong\":false},[\"font-size:inherit\"]],[false,{\".content-blog h2\":false},[\"font-size:35px\",\"line-height:35px\",\"margin-top:20px\",\"margin-bottom:20px\",\"color:#23819d\"]],[false,{\".content-blog h3\":false},[\"font-size:30px\",\"line-height:30px\",\"margin-top:20px\",\"margin-bottom:20px\",\"color:inherit\",\"color:#000\"]],[false,{\".content-blog h4\":false},[\"position:relative\",\"font-family:\\\"Rajdhani\\\"\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"margin-top:10px\",\"margin-bottom:10px\"]],[false,{\".content-blog h5\":false},[\"position:relative\",\"font-family:\\\"Rajdhani\\\"\",\"font-weight:500\",\"line-height:20px\",\"font-size:20px\",\"margin-top:10px\",\"margin-bottom:0px\"]],[false,{\".content-blog h6\":false},[\"position:relative\",\"font-family:\\\"Rajdhani\\\"\",\"font-weight:500\",\"line-height:18px\",\"font-size:18px\",\"margin-top:10px\",\"margin-bottom:0px\"]],[false,{\".content-blog p a\":false},[\"color:#0693e3\",\"text-decoration:underline\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":155232,\"final_size\":11541,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/style-isk.css?v=1392178670\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"6f68b4471d049368cf66b5fad21e7dbd\",\"parse_time\":1.2986650466918945,\"shake_time\":0.013546943664550781,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"body\":true},[\"background-color:#fff\",\"font-family:Raleway,sans-serif\",\"font-weight:400\",\"font-size:14px\",\"line-height:20px\",\"color:#152649\",\"-webkit-font-smoothing:subpixel-antialiased\",\"overflow-x:hidden\"]],[false,{\"sup\":false},[\"top:-.8em\",\"font-size:7px\",\"font-weight:800\"]],[false,{\".red\":false},[\"color:#ff555f\"]],[false,{\".grey\":false},[\"color:#7080a7\"]],[false,{\".turquouise\":false},[\"color:#28d9cb\"]],[false,{\".flourscent\":false},[\"color:#24c1ff\"]],[false,{\".g-d-none\":false},[\"display:none\"]],[true,{\".new-header\":true},[\"z-index:4\"]],[true,{\".new-header__nav--subtitle p\":true},[\"padding-left:16px\",\"font-size:14px\",\"letter-spacing:-.35px\"]],[true,{\"header nav .dropdown-menu p.new-header__nav--menu--text\":true},[\"max-width:180px\"]],[false,{\".custom-txt-img-sec.tek-world-scale .container-md\":false},[\"max-width:1406px\"]],[false,{\".custom-txt-img-sec .review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:0px\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner\":false},[\"position:relative\"]],[false,{\".c-application-development:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:30px\"]],[false,{\".c-application-development .custom-txt h2:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:25px\"]],[false,{\".cloud-native-application .custom-txt p span\":false},[\"color:#152649\"]],[false,{\".cloud-native-application .review_sec\":false},[\"margin-top:25px\"]],[false,{\".c-application-development .review_sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".c-application-development .cloud-native-application .custom-img amp-img\":false,\".c-application-development .cloud-native-application .custom-img amp-anim\":false},[\"width:94%\"]],[false,{\".cp-tek-teams-isk .title\":false},[\"margin-bottom:24px\"]],[false,{\".cp-tek-teams-isk .title p\":false},[\"margin:0\",\"color:#28d9cb\",\"font-size:16px\",\"text-transform:uppercase\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:400\"]],[false,{\".cp-tek-teams-isk p\":false},[\"font-size:24px\",\"color:#28d9cb\",\"margin:10px 0px 0px 0px\",\"font-weight:700\",\"line-height:normal\"]],[false,{\".cp-tek-teams-isk amp-img\":false,\".cp-tek-teams-isk amp-anim\":false},[\"min-height:350px\"]],[false,{\".cp-tek-teams-isk .inner-hero-text amp-img\":false,\".cp-tek-teams-isk .inner-hero-text amp-anim\":false},[\"min-height:unset\"]],[false,{\".review_sec\":false},[\"background:#f5f5f5\",\"padding:40px 56px\",\"margin-top:65px\",\"box-shadow:0px 20px 32px 0px rgba(0,0,0,.2)\",\"position:relative\",\"position:relative\",\"border-radius:24px\"]],[false,{\".review_sec amp-img\":false,\".review_sec amp-anim\":false},[\"position:absolute\",\"left:0px\"]],[false,{\".review_sec::after\":false},[\"content:\\\"\\\"\",\"display:block\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8578.png\\\")\",\"background-repeat:no-repeat\",\"width:40px\",\"height:40px\",\"position:absolute\",\"top:-20px\",\"left:56px\",\"background-size:cover\"]],[false,{\".review_sec .swiper-slide p\":false},[\"margin:0\",\"font-size:20px\",\"color:#707070\"]],[false,{\".review_sec .swiper-slide i\":false},[\"margin:20px 0px\",\"display:block\",\"color:#707070\",\"font-size:18px\",\"padding-left:70px\"]],[false,{\".review_sec .swiper-slide span\":false},[\"color:#152649\",\"font-weight:700\"]],[false,{\".review_sec .title p\":false},[\"font-size:20px\",\"font-weight:700\",\"color:#707070\"]],[false,{\".review_sec .title span\":false},[\"color:#28d9cb\"]],[false,{\".rebuild-and-replatform\":false},[\"background-color:#f1f1f1\",\"padding:120px 0px 192px 0px\"]],[false,{\".rebuild-and-replatform .txt label\":false},[\"display:block\",\"margin-bottom:40px\"]],[false,{\".rebuild-and-replatform .txt h2\":false},[\"margin-bottom:40px\"]],[false,{\".rebuild-and-replatform .txt h2 span\":false},[\"color:#28d9cb\"]],[false,{\".rebuild-and-replatform .txt p\":false},[\"color:#707070\",\"margin-bottom:30px\",\"font-size:20px\",\"line-height:1.6em\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content\":false},[\"display:none\",\"flex-wrap:wrap\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text p\":false},[\"font-size:20px\",\"line-height:1.6\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img\":false},[\"width:175px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-img\":false,\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-anim\":false},[\"width:100%\",\"object-fit:cover\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-boxs\":false},[\"margin-bottom:43px\",\"border-bottom:1px solid #dbdbdb\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text\":false},[\"padding-left:45px\",\"width:calc(100% - 175px)\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content.active\":false},[\"display:flex\",\"padding-bottom:37px\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec\":false},[\"margin:0\",\"box-shadow:unset\",\"background-color:transparent\",\"border-radius:unset\",\"padding:0\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec::after\":false},[\"display:none\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row\":false},[\"background-color:#fff\",\"padding:56px 76px\",\"border-radius:28px\",\"border:1px solid #dbdbdb\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul\":false},[\"list-style:none\",\"padding:0\",\"padding:8px\",\"display:flex\",\"background-color:#fff\",\"border-radius:36px\",\"margin:0px 0px 16px 0px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li\":false},[\"width:50%\",\"padding:16px\",\"border-radius:28px\",\"text-align:center\",\"transition:all .4s ease\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li a\":false},[\"font-size:20px\",\"color:#707070\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li.active\":false},[\"background-color:#f1f1f1\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li.active b\":false},[\"color:#152649\"]],[false,{\".custom-full-bg amp-img\":false,\".custom-full-bg amp-anim\":false},[\"width:100%\",\"display:block\"]],[false,{\".keeping-you-competitive\":false},[\"background-color:#152649\",\"padding:120px 0px 135px\"]],[false,{\".keeping-you-competitive label\":false},[\"color:#7080a7\"]],[false,{\".keeping-you-competitive .heading-box h2\":false},[\"color:#fff\",\"margin-bottom:40px\"]],[false,{\".keeping-you-competitive p\":false},[\"color:#fff\",\"font-family:Raleway,sans-serif\",\"font-size:20px\",\"line-height:1.4\"]],[false,{\".keeping-future\":false},[\"margin-top:40px\"]],[false,{\".keeping-future ul\":false},[\"list-style:none\",\"font-size:20px\",\"color:#24c1ff\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".keeping-future ul li\":false},[\"margin-bottom:32px\",\"font-style:italic\",\"border-bottom:#16365c solid 1px\",\"padding-bottom:30px\",\"width:26%\",\"margin-right:45px\",\"font-weight:500\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:11%\"]],[false,{\".keeping-future ul li:nth-child(8)\":false,\".keeping-future ul li:nth-child(4)\":false},[\"margin-right:0px\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(10)\":false,\".keeping-future ul li:nth-child(11)\":false},[\"border:none\"]],[false,{\".custom-qout-box\":false},[\"background-color:#f1f1f1\",\"padding:40px 0px 95px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-top:-11%\",\"margin-bottom:100px\",\"background-color:#fff\"]],[false,{\".custom-qout-box .review_sec i\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.4\",\"font-weight:400\",\"margin-bottom:24px\",\"display:block\"]],[false,{\".depending-on\":false},[\"display:flex\",\"align-items:center\",\"justify-content:space-between\"]],[false,{\".depending-img-box\":false},[\"width:15%\"]],[false,{\".depending-text\":false},[\"width:55%\"]],[false,{\".depending-text p\":false},[\"font-size:24px\",\"font-weight:bold\",\"line-height:1.4\"]],[false,{\".depending-btn\":false},[\"width:25%\"]],[false,{\".depending-btn .btn-blue\":false},[\"border-radius:50px\",\"padding:24px 30px\"]],[false,{\".native-applications-list\":false},[\"padding:120px 0px 100px\"]],[false,{\".native-applications-list .heading-box\":false},[\"margin-bottom:60px\"]],[false,{\".native-applications-list .heading-box h2 span\":false},[\"color:#28d9cb\"]],[false,{\".native-applications-list .swiper-wrapper\":false},[\"display:flex\",\"justify-content:space-between\"]],[false,{\".native-applications-list .swiper-slide\":false},[\"width:calc(50% - 50px)\"]],[false,{\".applications-col ul\":false},[\"list-style:none\"]],[false,{\".applications-col li\":false},[\"font-size:20px\",\"color:#707070\",\"font-weight:bold\",\"border-bottom:#dbdbdb solid 1px\",\"padding-bottom:25px\",\"margin-bottom:25px\",\"position:relative\",\"padding-left:37px\",\"line-height:1.4\"]],[false,{\".applications-col li::after\":false},[\"position:absolute\",\"left:0px\",\"top:0px\",\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8544.png\\\")\",\"background-repeat:no-repeat\",\"width:24px\",\"height:24px\"]],[false,{\".applications-col li:last-child\":false},[\"border:none\"]],[false,{\".native-applications-list-pagination\":false},[\"text-align:center\"]],[false,{\".native-applications-list-pagination .swiper-pagination-bullet\":false},[\"width:4px\",\"height:4px\",\"background-color:#dbdbdb\",\"opacity:1\"]],[false,{\".native-applications-list-pagination .swiper-pagination-bullet-active\":false},[\"width:24px\",\"height:4px\",\"border-radius:50px\",\"background-color:#28d9cb\"]],[false,{\".native-data-driven-top\":false},[\"background-color:#121d3d\",\"padding-bottom:80px\",\"margin-top:-2px\"]],[false,{\".native-data-driven-top .heading-box label\":false,\".native-data-driven-top .heading-box h2\":false},[\"color:#fff\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 190px\",\"background-color:#f1f1f1\"]],[false,{\".data-driven-application .swiper-slide\":false},[\"width:calc(33.333% - 44px)\"]],[false,{\".data-driven-application .swiper-wrapper\":false},[\"display:flex\",\"justify-content:space-between\"]],[false,{\".data-driven-application .swiper-button-next.swiper-button-disabled\":false,\".data-driven-application .swiper-button-prev.swiper-button-disabled\":false},[\"opacity:0\"]],[false,{\".data-driven-application .swiper-button-next:after\":false},[\"content:\\\"\\\"\",\"background-repeat:no-repeat\",\"width:26px\",\"height:16px\",\"display:none\"]],[false,{\".data-driven-application .swiper-button-next:after:not(#_#_#_#_#_#_#_#_)\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/right-arrow.png\\\")\"]],[false,{\".data-driven-application .swiper-button-prev:after\":false},[\"content:\\\"\\\"\",\"background-repeat:no-repeat\",\"width:26px\",\"height:20px\",\"display:none\"]],[false,{\".data-driven-application .swiper-button-prev:after:not(#_#_#_#_#_#_#_#_)\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/left-arrow-1.png\\\")\"]],[false,{\".data-driven-application .slider-nav\":false},[\"width:55%\",\"display:block\",\"height:20px\",\"margin:0px auto\",\"position:relative\"]],[false,{\".data-driven-application .swiper-pagination-bullet\":false},[\"width:4px\",\"border-radius:50px\",\"height:4px\",\"background-color:#24c1ff\",\"opacity:1\"]],[false,{\".data-driven-application .swiper-pagination-bullet-active\":false},[\"width:24px\",\"border-radius:50px\",\"height:4px\",\"background-color:#152649\"]],[false,{\".data-driven-application .applications-col\":false},[\"padding-bottom:15px\"]],[false,{\".data-driven-application .swiper-button-next\":false,\".data-driven-application .swiper-button-prev\":false},[\"bottom:0px\",\"top:auto\",\"position:absolute\"]],[false,{\".data-driven-application .applications-col li\":false},[\"border:none\",\"padding-bottom:0px\",\"margin-bottom:40px\",\"color:#152649\"]],[false,{\".data-driven-application .applications-col li::after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8556.png\\\")\"]],[false,{\".data-driven-application .applications-col li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8548.png\\\")\"]],[false,{\".data-driven-application .applications-col li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8549.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(1):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8550.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8551.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8552.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(4):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8553.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(3) li:nth-child(1):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8554.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(3) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8555.png\\\")\"]],[false,{\".clients-talk\":false},[\"background-color:#fff\",\"padding:120px 0px 120px\"]],[false,{\".lets-talk-box\":false},[\"background-color:#fff\",\"box-shadow:8px 0px 32px rgba(0,0,0,.1)\",\"padding:56px 0px 90px\",\"border-radius:16px\",\"margin-top:-19%\",\"text-align:center\"]],[false,{\".about-dev-ops .review_sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:100px\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:32px\",\"font-weight:bold\",\"color:#707070\",\"font-family:Raleway,sans-serif\",\"line-height:1.3\"]],[false,{\".lets-talk-box h3 span\":false},[\"color:#28d9cb\"]],[false,{\".clients-talk .btn-wrapper\":false},[\"width:316px\",\"margin:0px auto\",\"margin-top:-38px\"]],[false,{\".btn-gradient\":false},[\"border-radius:50px\",\"padding:18px 30px\",\"width:100%\",\"text-align:center\"]],[false,{\".build-wrapper .swiper-wrapper\":false},[\"display:flex\"]],[false,{\".build-wrapper .review_sec\":false},[\"margin-bottom:19px\",\"box-shadow:none\",\"margin-top:21px\"]],[false,{\".build-wrapper .review_sec:before\":false},[\"position:absolute\",\"bottom:6px\",\"content:\\\"\\\"\",\"width:96%\",\"margin:0px auto\",\"right:0\",\"z-index:-1\",\"left:0\",\"height:93px\",\"border-radius:50px\",\"box-shadow:rgba(0,0,0,.4) 0px 25px 20px -20px\"]],[false,{\".build-wrapper .heading-box\":false},[\"margin-bottom:24px\"]],[false,{\".build-wrapper .review_sec .swiper-slide p\":false},[\"padding-left:0\"]],[false,{\".build-wrapper .custom-txt p\":false},[\"margin-bottom:25px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt\":false},[\"width:49%\",\"margin-right:81px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-img\":false},[\"width:43%\",\"margin-left:0\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt p\":false},[\"margin-bottom:30px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt p:last-of-type\":false},[\"margin:0px\"]],[false,{\".text-grey-box\":false},[\"background-color:#f1f1f1\",\"padding:24px\",\"position:relative\",\"margin:40px 0px 32px\"]],[false,{\".text-grey-box p\":false},[\"padding-right:60px\"]],[false,{\".text-grey-box:after\":false},[\"position:absolute\",\"left:0\",\"top:0\",\"height:100%\",\"width:4px\",\"background:#152649\",\"content:\\\"\\\"\"]],[false,{\".journey-roadmap\":false},[\"margin-top:-253px\",\"background-color:#02163c\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:248px 0px 120px 0px\"]],[false,{\".review_sec2\":false},[\"padding:40px 30px 40px 50px\",\"margin-top:100px\",\"z-index:2\",\"position:relative\",\"box-shadow:none\"]],[false,{\".review_sec2::after\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8578-1.png\\\") no-repeat\"]],[false,{\".review_sec i\":false},[\"line-height:1.6\"]],[false,{\".review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:20px\"]],[false,{\".review_sec2 .title p\":false},[\"color:#152649\",\"line-height:1.2\"]],[false,{\".journey-roadmap-header\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\"]],[false,{\".journey-roadmap-logo\":false},[\"width:29%\"]],[false,{\".journey-roadmap-header .heading-box\":false},[\"width:66%\"]],[false,{\".journey-roadmap-header .heading-box h2\":false},[\"color:#fff\"]],[false,{\".journey-roadmap-header .heading-box h2 span\":false},[\"color:#28d9cb\"]],[false,{\".devops-services\":false},[\"padding-bottom:0\"]],[false,{\".devops-services .heading-box\":false},[\"margin-bottom:45px\"]],[false,{\".devops-services .heading-box h2\":false},[\"color:#28d9cb\"]],[false,{\".devops-services .applications-col ul\":false},[\"margin-bottom:37px\"]],[false,{\".devops-services .applications-col ul li\":false},[\"font-size:20px\",\"font-weight:normal\",\"border-bottom:none\",\"padding-bottom:0\",\"margin-bottom:0\",\"padding-left:37px\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:20px\",\"color:#152649\",\"line-height:1.6\",\"margin-bottom:24px\",\"position:relative\",\"padding-left:42px\",\"font-weight:bold\"]],[false,{\".devops-services .applications-col h5::before\":false},[\"position:absolute\",\"left:0px\",\"top:0px\",\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon1.png\\\")\",\"width:30px\",\"height:30px\",\"background-repeat:no-repeat\",\"margin-top:0px\"]],[false,{\".devops-services .applications-col ul li::after\":false},[\"content:none\"]],[false,{\".srvs-text-box\":false},[\"margin-bottom:37px\"]],[false,{\".srvs-text-box p\":false},[\"font-size:20px\",\"line-height:1.6\",\"padding-left:44px\"]],[false,{\".srvs-text-box:nth-child(1) p:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0\",\"left:0\",\"width:25px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8556.png\\\")\",\"height:25px\",\"margin-top:5px\"]],[false,{\".srvs-text-box:last-child h5\":false},[\"color:#707070\"]],[false,{\".srvs-text-box:last-child h5 span\":false},[\"font-weight:500\",\"color:#152649\"]],[false,{\".reliability-engineers\":false},[\"width:95%\",\"margin:0px auto\",\"background-color:#f5f5f5\",\"border-radius:24px\",\"padding:40px 30px 40px 92px\",\"position:relative\",\"margin-top:100px\",\"font-weight:bold\"]],[false,{\".reliability-engineers p\":false},[\"font-size:20px\",\"font-weight:bold\",\"margin-bottom:0px\"]],[false,{\".fortune-box\":false},[\"text-align:center\",\"display:flex\",\"align-items:flex-end\"]],[false,{\".tex-box\":false},[\"padding:11px 0px\",\"margin-top:25px\",\"line-height:1.6\",\"color:#152649\",\"width:49%\",\"border-radius:10px\",\"border:#707070 solid 1px\"]],[false,{\".right-short-text\":false},[\"margin-left:22px\"]],[false,{\".right-short-text p\":false},[\"font-size:14px\",\"font-weight:normal\",\"font-style:italic\",\"color:#707070\"]],[false,{\".mrdata-logo\":false},[\"position:absolute\",\"left:-58px\",\"top:0\",\"bottom:0\",\"display:flex\",\"align-items:center\"]],[false,{\".devops-services .applications-col:nth-child(1) h5:last-of-type::before\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon3.png\\\")\"]],[false,{\".native-applications-list .swiper-slide:nth-child(2) .srvs-text-box:nth-child(1) p:after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon2.png\\\")\",\"width:33px\"]],[false,{\".native-applications-list .swiper-slide:nth-child(2) .srvs-text-box:nth-child(2) h5::before\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon4.png\\\")\",\"margin-top:0px\"]],[false,{\".native-applications-list .swiper-slide:nth-child(2) .srvs-text-box:nth-child(3) h5::before\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon5.png\\\")\"]],[false,{\".kubernetes-sec\":false},[\"margin-top:-95px\"]],[false,{\".kubernetes-sec .container-md\":false},[\"padding:0px 0px\"]],[false,{\".kubernetes-sec .custom-txt\":false},[\"padding:0px 24px\"]],[false,{\".kubernetes-sec .heading-box h2\":false},[\"color:#fff\",\"margin-bottom:40px\"]],[false,{\".kubernetes-sec .scroll-img amp-img\":false,\".kubernetes-sec .scroll-img amp-anim\":false},[\"margin-bottom:120px\",\"text-align:center\"]],[false,{\".kubernetes-sec .scroll-img\":false},[\"text-align:center\"]],[false,{\".kubernetes-sec .custom-txt p\":false},[\"color:#fff\",\"font-size:20px\",\"line-height:1.6\"]],[false,{\".kubernetes-sec .custom-txt p span\":false},[\"color:#24c1ff\"]],[false,{\".book-cunsultaion-sec\":false},[\"padding:10px 0px 124px 0px\",\"background-color:#f1f1f1\"]],[false,{\".book-cunsultaion-sec a.btn-blue:hover\":false},[\"color:#fff\",\"background:#28d9cb\"]],[false,{\".top-btn\":false},[\"padding-bottom:124px\",\"margin-top:-39px\"]],[false,{\".col-row ul\":false},[\"list-style:none\",\"display:flex\",\"justify-content:space-between\",\"flex-wrap:wrap\"]],[false,{\".col-row ul li\":false},[\"font-size:20px\",\"font-weight:bold\",\"color:#152649\",\"margin-bottom:32px\",\"position:relative\",\"width:30%\",\"padding-left:46px\"]],[false,{\".col-row ul li::after\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"content:\\\"\\\"\",\"width:32px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/clck.png\\\")\",\"height:32px\"]],[false,{\".col-row ul li:nth-child(1)\":false,\".col-row ul li:nth-child(4)\":false},[\"width:35%\"]],[false,{\".col-row ul li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/cstmr.png\\\")\"]],[false,{\".col-row ul li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/wrld.png\\\")\"]],[false,{\".col-row ul li:nth-child(4):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/auto.png\\\")\"]],[false,{\".col-row ul li:nth-child(5):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/drive.png\\\")\"]],[false,{\".col-row ul li:nth-child(6):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/dlr.png\\\")\"]],[false,{\".cost-effective-sec\":false},[\"padding-bottom:0px\",\"padding-top:120px\"]],[false,{\".cost-effective-sec:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#fff\"]],[false,{\".cost-effective-sec .inner\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:end\",\"margin-bottom:80px\"]],[false,{\".cost-effective-sec .custom-txt\":false},[\"width:55%\"]],[false,{\".cost-effective-sec .left-text\":false},[\"width:43%\"]],[false,{\".cost-effective-sec .left-text p\":false},[\"font-size:20px\",\"line-height:1.6\",\"color:#707070\"]],[false,{\".cost-effective-sec .heading-box h2 span\":false},[\"color:#28d9cb\",\"display:block\"]],[false,{\".data-driven-devOps\":false},[\"display:flex\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col\":false},[\"padding-bottom:15px\",\"width:calc(50% - 38px)\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col li\":false},[\"border-bottom:#dbdbdb solid 1px\",\"padding-bottom:32px\",\"margin-bottom:32px\",\"line-height:1.6\",\"padding-left:50px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col li:after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/ppl.png\\\")\",\"width:32px\",\"height:32px\",\"margin-top:8px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(2) li:nth-child(1):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/loaction.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(2) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/icon.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(1) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/icon2.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(1) li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/icon3.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col ul li:last-child\":false},[\"border:none\"]],[false,{\".cost-effective-sec .review_sec2 .swiper-slide\":false},[\"width:100%\"]],[false,{\".cost-effective-sec .review_sec .swiper-slide i\":false},[\"padding-left:0px\"]],[false,{\".infrastructure-sec\":false},[\"margin-top:-100px\",\"background-color:#152649\",\"text-align:center\"]],[false,{\".infrastructure-sec:not(#_#_#_#_#_#_#_)\":false},[\"padding:0px 0 80px\"]],[false,{\".infrastructure-sec .bg-img::before\":false},[\"content:\\\"\\\"\",\"width:100%\",\"height:265px\",\"position:absolute\",\"left:0\",\"bottom:-3px\",\"background-image:linear-gradient(rgba(21,38,73,0),#152649)\"]],[false,{\".infrastructure-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".infrastructure-sec .container-md:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0px\"]],[false,{\".infrastructure-sec .heading-box h2\":false},[\"color:#fff\",\"margin:auto\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:93%\"]],[false,{\".infrastructure-sec .heading-box:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\",\"margin-top:40px\",\"width:100%\"]],[false,{\".infrastructure-sec .heading-box h2\":false},[\"color:#fff\",\"max-width:inherit\",\"text-align:center\"]],[false,{\".contact-wrapper-banner\":false},[\"z-index:2\"]],[false,{\".contact-form-left .calendly-inline-widget:not(#_#_#_#_#_#_#_)\":false},[\"overflow:hidden\"]],[false,{\".contact-wrapper-banner amp-img\":false,\".contact-wrapper-banner amp-anim\":false},[\"min-height:110px\"]],[false,{\".contact-wrapper-banner:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:28px\",\"height:28px\",\"background-color:#152649\",\"bottom:-13px\",\"left:18%\",\"z-index:-1\",\"transform:rotate(45deg)\",\"border-radius:4px\"]],[false,{\".change_bg .custom-contact-wrapper\":false},[\"background:#152649\",\"position:relative\",\"z-index:2\"]],[false,{\".about-map\":false},[\"position:relative\"]],[false,{\".c-full-map\":false},[\"position:absolute\",\"top:0\",\"width:100%\",\"height:100%\",\"z-index:1\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"width:100%\",\"height:100%\",\"object-fit:cover\"]],[false,{\".custom-contact-wrapper\":false},[\"padding:125px 0px 160px\",\"margin-top:0px\"]],[false,{\".about-map .c-full-map .wpgmza_map.wpgmza-auto-left:not(#_#_#_#_#_#_#_)\":false},[\"height:100%\"]],[false,{\".about-map .c-full-map .wpgmza-modern-store-locator>.wpgmza-inner\":false},[\"opacity:0\"]],[false,{\".schedule-box h1\":false},[\"display:none\"]],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"display:flex\",\"justify-content:space-between\",\"flex-wrap:wrap\",\"background:#fff\",\"box-shadow:8px 0px 32px rgba(0,0,0,.1)\",\"padding:0px\",\"border-radius:0px 26px 26px 26px\",\"position:relative\",\"z-index:2\"]],[false,{\".contact-form-left\":false},[\"width:57%\",\"padding:58px 0px 75px\"]],[false,{\".choose-option\":false},[\"padding-left:46px\"]],[false,{\".choose-option ul\":false},[\"display:flex\",\"flex-wrap:wrap\",\"justify-content:space-between\",\"list-style:none\",\"align-items:center\",\"margin-bottom:60px\"]],[false,{\".choose-option ul li\":false},[\"font-size:20px\",\"color:#152649\"]],[false,{\".choose-option ul li\":false},[\"padding:15px 33px\",\"border-radius:50px\",\"color:#707070\",\"background:#fff\",\"transition:all ease .5s\"]],[false,{\".choose-option ul li:hover\":false},[\"background:#f1f1f1\"]],[false,{\".choose-option ul li:nth-child(2)\":false},[\"font-weight:800\",\"padding:0px 20px\",\"background:transparent\",\"color:#121d3d\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box label\":false},[\"display:block\",\"font-size:18px\",\"color:#121d3d\",\"font-weight:bold\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control\":false},[\"width:100%\",\"display:block\",\"padding:14px 0px 8px\",\"border:0\",\"border-radius:0px\",\"outline:none\",\"background-color:#fff\",\"font-size:20px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:400\",\"color:#000\",\"resize:none\",\"-webkit-transition:.5s ease 0s\",\"transition:.5s ease 0s\",\"border-bottom:#e6e6e6 solid 1px\",\"margin-bottom:15px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .col-md-4\":false},[\"max-width:50%\",\"margin-bottom:15px\",\"flex:0 0 50%\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box::placeholder\":false},[\"font-size:16px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control::-webkit-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:16px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control::-ms-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:16px\",\"font-weight:normal\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control::placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:16px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea\":false},[\"margin-top:0\",\"height:130px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:55px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box input[type=\\\"submit\\\"]\":false},[\"background:linear-gradient(-90deg,#28d9cb 0,#a0f266 100%)\",\"font-size:18px\",\"height:70px\",\"font-weight:800\",\"cursor:pointer\",\"max-width:300px\",\"width:100%\",\"border-radius:50px\",\"margin:0\"]],[false,{\".change_bg .contact-form-info-right\":false},[\"background:linear-gradient(180deg,#28d9cb 0,#66f2a3 100%)\"]],[false,{\".change_bg .contact-form-info-right ul li a\":false,\".change_bg .contact-form-info-right ul li span a\":false,\".change_bg .contact-form-info-right ul li\":false,\".change_bg .contact-form-info-right ul li:first-of-type\":false,\".change_bg .contact-form-info-right h3\":false},[\"color:#152649\"]],[false,{\".change_bg .contact-form-info-right ul li\":false},[\"border-color:rgba(255,255,255,28%)\"]],[false,{\".btn-group button\":false},[\"border-radius:50px\",\"border:none\"]],[false,{\".contact-form-info-right\":false},[\"width:38%\",\"background-color:#152649\",\"border-radius:26px\",\"padding:50px 80px 119px\"]],[false,{\".contact-form-info-right h3\":false},[\"font-size:32px\",\"color:#28d9cb\",\"line-height:1.5\",\"margin-bottom:25px\",\"font-family:Raleway,sans-serif\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control:focus\":false},[\"outline:none\",\"box-shadow:none\"]],[false,{\".contact-form-info-right ul\":false},[\"list-style:none\",\"margin-bottom:70px\"]],[false,{\".contact-form-info-right ul li\":false},[\"border-bottom:#525c70 solid 1px\",\"padding:40px 0px 47px\",\"color:#bcc2ce\",\"font-size:17px\",\"position:relative\",\"display:flex\",\"align-items:center\",\"line-height:1.5\"]],[false,{\".contact-form-info-right ul li a\":false},[\"color:#28d9cb\",\"padding-left:15px\",\"text-decoration:underline\",\"display:block\"]],[false,{\".contact-form-info-right ul li:nth-of-type(1) a\":false},[\"text-decoration:none\"]],[false,{\".contact-form-info-right ul li:nth-of-type(2) a\":false},[\"color:#28d9cb\",\"padding-left:0px\"]],[false,{\".contact-form-info-right ul li:nth-of-type(2) span\":false},[\"padding-left:55px\",\"display:block\"]],[false,{\".contact-form-info-right ul li:last-child a\":false},[\"padding-left:55px\"]],[false,{\".contact-form-info-right ul li:first-of-type a\":false},[\"color:#fff\",\"font-size:32px\",\"font-weight:bold\",\"line-height:1.5\"]],[false,{\".contact-form-info-right ul li:last-child\":false},[\"border:none\"]],[false,{\".change_bg .contact-form-info-right ul .phone:before\":false,\".change_bg .contact-form-info-right ul .address:before\":false,\".change_bg .contact-form-info-right ul .email:before\":false,\".change_bg .btm-icon-line amp-img\":false,\".change_bg .btm-icon-line amp-anim\":false},[\"filter:brightness(100)\"]],[false,{\".contact-form-info-right ul .phone:before\":false},[\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/phone.svg\\\")\",\"background-size:cover\",\"background-repeat:no-repeat\",\"width:40px\",\"height:40px\",\"display:inline-block\",\"vertical-align:middle\"]],[false,{\".contact-form-info-right ul .address:before\":false},[\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/address.svg\\\")\",\"background-size:cover\",\"background-repeat:no-repeat\",\"width:41px\",\"height:45px\",\"display:inline-block\",\"vertical-align:middle\",\"padding-bottom:46px\",\"position:absolute\"]],[false,{\".contact-form-info-right ul .email:before\":false},[\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/email.svg\\\")\",\"background-size:cover\",\"background-repeat:no-repeat\",\"width:40px\",\"height:40px\",\"display:inline-block\",\"vertical-align:middle\",\"position:absolute\"]],[false,{\".change_bg .font-des\":false},[\"-webkit-text-fill-color:#fff\",\"border-image:unset\"]],[false,{\".font-des\":false},[\"font-size:25px\",\"color:#fff\",\"font-weight:bold\",\"border:4px solid\",\"padding:4px 5px\",\"background:linear-gradient(0deg,rgba(40,217,203,1) 0%,rgba(102,242,163,1) 100%)\",\"-webkit-background-clip:text\",\"-webkit-text-fill-color:transparent\",\"border-image:linear-gradient(0deg,rgba(40,217,203,1) 0%,rgba(102,242,163,1) 100%)\"]],[false,{\".btm-icon-line\":false},[\"position:relative\",\"display:flex\",\"justify-content:center\"]],[false,{\".choose-option ul li.tab\":false},[\"cursor:pointer\"]],[false,{\".choose-option ul li:last-child\":false},[\"margin-left:0px\"]],[false,{\".contact-form-left .tab-content\":false},[\"display:none\",\"padding-left:50px\"]],[false,{\".contact-form-left .tab-content.active\":false},[\"display:block\"]],[false,{\".btm-icon-line:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"left:0px\",\"bottom:0px\",\"margin:auto\",\"height:1px\",\"width:130px\",\"top:0\",\"background:#525c70\"]],[false,{\".btm-icon-line::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"right:0px\",\"bottom:0px\",\"margin:auto\",\"height:1px\",\"width:130px\",\"top:0\",\"background:#525c70\"]],[true,\"@media only screen and (min-width: 2751px) and (max-width: 3840px){\"],[true,{\".new-header\":true},[\"padding:0px 23%\"]],[true,\"}\"],[true,\"@media only screen and (min-width: 2200px) and (max-width: 2750px){\"],[true,{\".new-header\":true},[\"padding:0px 10%\"]],[true,\"}\"],[false,\"@media screen and (max-width: 1320px) and (min-width: 1025px){\"],[false,{\".contact-form-info-right\":false},[\"padding:50px 25px 119px\"]],[false,\"}\"],[true,\"@media only screen and (max-width: 1920px){\"],[true,{\".new-header .dropdown-menu>.container\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".new-header .mega-menu-right\":true},[\"padding:0px\",\"margin:0px\",\"flex:0 0 71.666667%\",\"max-width:71.666667%\"]],[true,{\".new-header .dropdown-menu .col-lg-4\":true},[\"padding:0\",\"flex:0 0 24.333333%\",\"max-width:24.333333%\"]],[true,{\".new-header .mega-menu-right .row .menu-widget\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".dropdown-menu\":true},[\"width:66%\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1024px){\"],[true,{\".new-header .dropdown-menu>.container\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".new-header .mega-menu-right\":true},[\"flex:0 0 78.666667%\",\"max-width:78.666667%\"]],[true,{\".new-header .dropdown-menu .col-lg-4\":true},[\"flex:0 0 21.333333%\",\"max-width:21.333333%\"]],[true,{\".new-header .mega-menu-right .row .menu-widget\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".dropdown-menu\":true},[\"width:66%\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-top:-16%\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:12%\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .mega-menu-right\":true},[\"flex:0 0 66.666667%\",\"max-width:66.666667%\",\"padding-right:71px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .mega-menu-right\":true},[\"flex:100%\",\"max-width:100%\",\"padding-right:20px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .dropdown-menu .col-lg-4\":true},[\"flex:100%\",\"max-width:100%\"]],[true,{\".new-header__nav--subtitle p\":true},[\"padding-left:0px\"]],[true,{\"a.new-header__nav--menu--button\":true},[\"margin-bottom:25px\"]],[true,{\".new-header__menu-item\":true},[\"padding-left:0\"]],[true,\"}\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 90px 0px 30px\"]],[true,\"@media only screen and (min-width: 1920px) and (max-width: 2129px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 50px 0px 30px\"]],[true,\"}\"],[true,\"@media (max-width: 1800px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 2.2rem\"]],[true,\"}\"],[true,\"@media (max-width: 1366px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 1rem 0rem 2.2rem\"]],[true,\"}\"],[true,\"@media (max-width: 1280px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 1.2rem\"]],[true,\"}\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link\":true},[\"font-size:16px\"]],[true,\"@media only screen and (max-width: 1920px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:16px\",\"padding:0px 17px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1680px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"padding:0px 6px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1440px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"padding:0px 11px\",\"font-size:14px\"]],[false,{\".native-applications-list\":false},[\"padding:120px 0px 120px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1366px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:13px\",\"padding:0px 11px\"]],[false,{\".depending-text p\":false},[\"font-size:23px\"]],[false,{\".applications-col li\":false},[\"font-size:18px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1024px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\",\"padding:0px 8px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:10px\",\"padding:.5rem 1rem\"]],[true,\"}\"],[true,{\".show>.dropdown-toggle::after\":true},[\"transform:rotate(45deg)\",\"text-align:left\",\"display:inline-block\"]],[true,{\".show>.dropdown-toggle::after:not(#_#_#_#_#_#_#_#_)\":true},[\"width:7px\",\"height:7px\",\"border:solid 1px #24c1ff\",\"border-left:0\",\"border-top:0\"]],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".show>.dropdown-toggle::after\":true},[\"display:none\"]],[true,\"}\"],[true,{\"a.new-header__nav--menu--button\":true},[\"position:relative\",\"min-width:132px\",\"transition:all ease .5s\",\"transition:all .5s\",\"border:1px solid #9df168\",\"background:transparent\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"margin:0px\",\"display:flex\",\"text-align:left\",\"padding-left:10px\",\"padding-right:10px\",\"line-height:44px\",\"transform:scale(1)\",\"max-width:170px\"]],[true,\"@media (max-width: 992px){\"],[true,{\"a.new-header__nav--menu--button\":true},[\"width:150px\"]],[true,\"}\"],[true,\"@media (max-width: 991px){\"],[true,{\"a.new-header__nav--menu--button\":true},[\"margin-bottom:25px\"]],[true,\"}\"],[true,{\".new-header__nav--title h5\":true},[\"padding-right:40px\"]],[true,\"@media (max-width: 1680px){\"],[true,{\".new-header__nav--title h5\":true},[\"padding-right:0px\"]],[true,\"}\"],[true,{\"a.new-header__nav--menu--button:before\":true},[\"position:absolute\",\"right:30px\",\"top:43%\",\"width:10px\",\"height:10px\",\"border:#707070 solid 1px\",\"z-index:99\",\"content:\\\"\\\"\",\"transform:rotate(45deg)\",\"border-bottom:0\",\"border-left:0\",\"margin-left:15px\",\"display:none\"]],[true,{\"a.new-header__nav--menu--button:hover\":true},[\"transform:scale(1.1)\"]],[true,\"@keyframes pulse{\"],[true,\"0%{transform:scale(1)}\"],[true,\"100%{transform:scale(1.1)}\"],[true,\"}\"],[true,{\".new-header__nav--menu--button:hover\":true},[\"font-size:1rem\"]],[true,\"@media screen and (max-width: 992px){\"],[true,{\"a.new-header__nav--menu--button:after\":true},[\"width:110px\"]],[true,\"}\"],[true,{\"a.new-header__nav--menu--button:hover::after\":true},[\"width:100%\",\"transition:all ease .2s\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\"]],[true,{\".new-header__nav--menu--title\":true},[\"color:#152649\"]],[true,{\".new-header__nav--subtitle-icon amp-img\":true,\".new-header__nav--subtitle-icon amp-anim\":false},[\"width:25px\"]],[true,{\".new-header__nav--subtitle-icon\":true},[\"text-align:left\"]],[true,\"@media screen and (max-width: 1920px){\"],[true,{\".new-header__nav--menu--img\":true},[\"flex:0 0 23%\",\"max-width:23%\"]],[true,{\".col-md-10.menu-text\":true},[\"flex:0 0 77%\",\"max-width:77%\",\"padding-right:0px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1440px){\"],[true,{\".new-header__nav--menu--img\":true},[\"padding:0\",\"max-width:20%\",\"flex:0 0 20%\"]],[true,\"}\"],[true,{\".col-12.new-header__nav--subtitle\":true},[\"padding-right:20px\"]],[true,{\".dropdown-menu\":true},[\"border-top:1px solid #dfdfdf\"]],[true,\"@media only screen and (max-width: 1920px){\"],[true,{\".dropdown-menu\":true},[\"border-top:1px solid #dfdfdf\",\"width:64%\",\"padding-left:40px\",\"padding-top:20px\",\"padding-bottom:20px\"]],[true,{\".new-header__nav--list li .nav-link:not(#_#_#_#_#_#_#_#_)\":true},[\"padding-right:20px\",\"padding-left:20px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1680px){\"],[true,{\".dropdown-menu\":true},[\"width:70%\",\"padding-left:44px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1536px){\"],[true,{\".dropdown-menu\":true},[\"width:76%\",\"padding-left:44px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1440px){\"],[true,{\".new-header__nav--list li\":true},[\"padding:0px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 991px){\"],[true,{\".new-header__nav--list li\":true},[\"padding-left:1rem\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1440px){\"],[true,{\".dropdown-menu\":true},[\"width:83%\",\"padding-left:50px\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:44px\"]],[false,{\".review_sec2\":false},[\"margin-top:47px\"]],[false,{\".top-btn\":false},[\"padding-bottom:60px\"]],[false,{\".book-cunsultaion-sec\":false},[\"padding:10px 0px 60px 0px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1024px){\"],[true,{\".dropdown-menu\":true},[\"padding-left:25px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".dropdown-menu\":true},[\"width:100%\",\"padding-right:10px\",\"padding-left:1rem\",\"border-top:none\"]],[true,\"}\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:18px\",\"letter-spacing:-.43px\"]],[true,\"@media screen and (max-width: 1280px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:16px\"]],[false,{\".custom-qout-box .review_sec i\":false},[\"font-size:18px\"]],[false,{\".depending-text p\":false},[\"font-size:21px\"]],[false,{\".applications-col li\":false},[\"font-size:17px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1024px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:14px\"]],[false,{\".custom-qout-box .review_sec i\":false},[\"font-size:16px\"]],[false,{\".depending-text p\":false},[\"font-size:17px\"]],[false,{\".native-applications-list\":false},[\"padding:90px 0px 50px\"]],[false,{\".depending-btn .btn-blue\":false},[\"padding:15px 10px\"]],[false,{\".applications-col li\":false},[\"font-size:15px\"]],[false,{\".native-applications-list .swiper-slide\":false},[\"width:calc(50% - 19px)\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:26px\"]],[false,{\".lets-talk-box\":false},[\"margin-top:-25%\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 140px\"]],[false,{\".data-driven-application .swiper-slide\":false},[\"width:calc(33.333% - 10px)\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt\":false},[\"margin-right:0\"]],[true,\"}\"],[true,\"@media screen and (max-width: 991px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:1rem\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:18%\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:30px\",\"width:33%\"]],[false,{\".keeping-future ul li:nth-child(9)\\n.keeping-future ul li:nth-child(6)\":false,\".keeping-future ul li:nth-child(3)\":false},[\"margin-right:0px\"]],[false,{\".keeping-future ul li:nth-child(10)\":false,\".keeping-future ul li:nth-child(9)\":false},[\"border-bottom:#16365c solid 1px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 768px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:1.1rem\"]],[false,{\".keeping-you-competitive p\":false},[\"font-size:13px\"]],[false,{\".depending-on\":false},[\"flex-wrap:wrap\"]],[false,{\".depending-img-box\":false},[\"width:20%\"]],[false,{\".depending-text\":false},[\"width:75%\"]],[false,{\".depending-btn\":false},[\"width:100%\",\"text-align:center\"]],[false,{\".custom-qout-box\":false},[\"padding:40px 0px 60px\"]],[false,{\".depending-btn .btn-blue\":false},[\"padding:15px 30px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-top:-24%\",\"margin-bottom:55px\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 110px\"]],[false,{\".native-applications-list .heading-box h2\":false},[\"font-size:25px\"]],[false,{\".native-applications-list .heading-box\":false},[\"margin-bottom:35px\"]],[false,{\".applications-col li\":false},[\"font-size:12px\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:20px\"]],[false,{\".lets-talk-box\":false},[\"padding:35px 0px 60px\",\"margin-top:-29%\"]],[false,{\".clients-talk\":false},[\"padding:120px 0px 55px\"]],[false,{\".clients-talk .btn-gradient\":false},[\"font-size:27px\",\"padding:10px 30px\"]],[false,{\".clients-talk .btn-wrapper\":false},[\"width:245px\",\"margin-top:-27px\"]],[false,{\".keeping-future ul\":false},[\"justify-content:space-between\"]],[false,{\".keeping-future ul li\":false},[\"width:48%\"]],[false,{\".keeping-future ul li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:48%\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(10)\":false},[\"border-bottom:#16365c solid 1px\"]],[false,{\".tex-box\":false},[\"width:68%\"]],[true,\"}\"],[true,{\".new-header__nav--subtitle\":true,\".new-header__nav--subtitle .col-10\":true,\".new-header__nav--title .col-10\":true,\".new-header__nav--title\":true},[\"padding:0px\"]],[true,{\".new-header__nav--subtitle .row .col-12\":true},[\"padding:0px\"]],[true,{\".new-header__nav--menu--text\":true},[\"font-size:12px\",\"letter-spacing:-.29px\"]],[true,{\".new-header__nav--menu--img amp-img\":true,\".new-header__nav--menu--img amp-anim\":false},[\"max-width:100%\",\"width:48px\"]],[true,\"@media only screen and (max-width: 1400px){\"],[true,{\".new-header .dropdown-menu .menu-right\":false,\".new-header .dropdown-menu .menu-widget .row\":true,\".new-header .dropdown-menu .menu-widget\":true},[\"padding:0px\"]],[true,{\".mega-menu-right\":true},[\"padding:0px\"]],[true,{\".new-header__nav--menu--box\":true},[\"align-items:flex-start\"]],[true,{\".col-md-10.menu-text\":true},[\"padding:0px 2px 0px 9px\",\"max-width:80%\",\"flex:0 0 80%\"]],[true,\"}\"],[true,{\".footer-2022__social-media a\":true},[\"transition:all ease .5s\"]],[true,{\".footer-2022__social-media a:hover\":true},[\"margin-top:-10px\"]],[true,\"@media only screen and (min-width: 1800px) and (max-width: 3034px){\"],[true,{\"footer.footer-2022 .container\":true},[\"max-width:1545px\"]],[true,\"}\"],[true,\"@media (max-width: 600px){\"],[true,{\"footer.footer-2022 .container\":true},[\"padding:0px 44px\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec\":false},[\"padding:40px 0px 0px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row\":false},[\"padding:40px 25px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content.active\":false},[\"flex-wrap:wrap\",\"padding-bottom:28px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img\":false},[\"width:100%\",\"margin-bottom:32px\"]],[false,{\".rebuild-and-replatform\":false},[\"padding:120px 0px 120px 0px\"]],[false,{\".rebuild-and-replatform .txt .heading-box h2 br\":false},[\"display:none\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text\":false},[\"padding-left:0\",\"width:100%\"]],[false,{\".review_sec amp-img\":false,\".review_sec amp-anim\":false},[\"top:0\"]],[false,{\".review_sec .swiper-slide i\":false},[\"padding-left:0\"]],[false,{\".review_sec .swiper-slide i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-boxs\":false},[\"margin-bottom:8px\"]],[false,{\".reviewSwiper\":false},[\"padding-top:12px\"]],[false,{\".review_sec .swiper-slide p\":false},[\"padding-left:55px\"]],[false,{\".review_sec .title p\":false},[\"padding-left:0px\"]],[false,{\".review_sec .title p span\":false},[\"display:block\"]],[false,{\".review_sec2 .swiper-slide p:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:0px\"]],[true,\"}\"],[true,\"@media (max-width: 374px){\"],[true,{\"footer.footer-2022 .container\":true},[\"padding:0px 30px\"]],[true,\"}\"],[true,\"@media (max-width: 320px){\"],[true,{\"footer.footer-2022 .container\":true},[\"padding:0px 10px\"]],[true,\"}\"],[true,{\".footer-2022__copyright\":true},[\"letter-spacing:-.35px\"]],[false,{\".container-md\":false},[\"max-width:1272px\",\"margin:0 auto\",\"padding:0 20px\",\"width:90%\"]],[true,{\".footer-2022__menu--list h5:after\":true},[\"border-top:0px\",\"border-right:0\",\"border-left:0\"]],[true,\"@media (max-width: 768px){\"],[true,{\".footer-2022__menu--box\":true},[\"flex-direction:inherit\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[true,\"}\"],[true,\"@media (max-width: 767px){\"],[true,{\".footer-2022__box-end\":true},[\"letter-spacing:-.35px\"]],[true,{\".footer-2022__menu--box\":true},[\"flex-direction:column\"]],[false,{\".g-small-d-block\":false},[\"display:block\"]],[false,{\".g-small-d-none\":false},[\"display:none\"]],[false,{\".data-driven-application .swiper-button-next:after\":false},[\"display:block\"]],[false,{\".data-driven-application .swiper-button-prev:after\":false},[\"display:block\"]],[true,\"}\"],[true,\"@media (max-width: 767px){\"],[false,{\".container-md\":false},[\"width:100%\",\"padding:0 30px\"]],[false,{\".accordianNav .drop_arrow:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"z-index:0\",\"left:0\",\"top:0\",\"width:0\",\"height:100%\",\"background-color:#444\",\"background:rgba(244,244,244,.3)\",\"transition:all .3s ease-out\"]],[false,{\".accordianNav .drop_arrow:hover:before\":false,\".accordianNav .drop_arrow .active:before\":false},[\"width:2%\"]],[true,{\".footer-2022 .drop_arrow\":true},[\"position:relative\"]],[false,{\".drop_arrow.active h5\":false},[\"color:#fff\"]],[true,{\".footer-2022 .drop_arrow::before\":true},[\"content:\\\"\\\"\",\"width:6px\",\"height:6px\",\"border-bottom:2px solid #24c1ff\",\"border-right:2px solid #24c1ff\",\"float:right\",\"position:absolute\",\"top:12px\",\"right:0px\",\"transform:rotate(45deg)\",\"transform-origin:center\",\"transition:all .4s ease\"]],[false,{\".footer-2022 .drop_arrow.active::before\":false},[\"transform:rotate(225deg)\"]],[false,{\".footer-2022__menu--list .drop_arrow .active:after\":false},[\"transform:rotate(-135deg)\",\"border-color:#fff\"]],[true,{\".footer-2022__menu--list ul\":true},[\"margin-bottom:3rem\",\"display:none\"]],[false,{\".keeping-future ul\":false},[\"column-count:2\"]],[false,{\".applications-col li\":false},[\"font-size:14px\"]],[false,{\".data-driven-application .applications-col li\":false},[\"margin-bottom:24px\"]],[false,{\".applications-col li\":false},[\"padding-bottom:16px\",\"margin-bottom:16px\"]],[false,{\".custom-qout-box .review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".keeping-future ul li\":false},[\"margin-bottom:16px\",\"padding-bottom:16px\",\"font-size:14px\"]],[false,{\".review_sec .title p\":false},[\"font-size:14px\"]],[false,{\".keeping-you-competitive\":false},[\"padding:80px 0px 195px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-bottom:65px\",\"margin-top:-19%\"]],[false,{\".depending-text\":false},[\"text-align:center\",\"width:80%\",\"margin:0px auto 40px auto\"]],[false,{\".custom-qout-box\":false},[\"padding:40px 0px 80px\"]],[false,{\".native-applications-list\":false},[\"padding:80px 0px 50px\"]],[false,{\".native-applications-list .swiper-slide:nth-child(1) li:first-of-type\":false},[\"padding-right:80px\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:24px\",\"padding:0px 100px\"]],[false,{\".depending-img-box\":false},[\"width:100%\",\"text-align:center\"]],[false,{\".keeping-you-competitive p\":false},[\"font-size:14px\"]],[false,{\".keeping-future\":false},[\"margin-top:60px\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner:after\":false},[\"position:absolute\",\"bottom:0\",\"left:0\",\"content:\\\"\\\"\",\"width:30px\",\"height:30px\",\"background:#04061f\",\"transform:rotate(45deg)\",\"border-radius:2px\",\"margin-left:34px\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner.content_center\":false},[\"text-align:center\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner.content_center:after\":false},[\"margin:0px auto\",\"left:0px\",\"right:0px\"]],[false,{\".c-app-banner h2\":false},[\"font-size:32px\"]],[false,{\".c-app-banner p\":false},[\"font-size:16px\"]],[false,{\".infrastructure-sec .bg-img .full-img\":false},[\"height:500px\",\"object-fit:cover\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(1) ul li:last-child\":false},[\"border-bottom:#dbdbdb solid 1px\"]],[false,{\".reliability-engineers\":false},[\"width:100%\",\"border:#fff solid 1px\"]],[false,{\".fortune-box\":false},[\"flex-wrap:wrap\"]],[false,{\".tex-box\":false},[\"width:100%\",\"margin-top:15px\",\"margin-bottom:15px\"]],[false,{\".reliability-engineers p\":false},[\"line-height:15px\",\"margin:0px\"]],[false,{\".right-short-text\":false},[\"margin-left:0\",\"text-align:center\",\"width:100%\"]],[true,\"}\"],[false,\"@media (max-width: 575px){\"],[false,{\".container-md\":false},[\"padding:0 24px\"]],[false,{\".about-dev-ops .review_sec2:not(#_#_#_#_#_#_#_)\":false},[\"padding:20px 20px 25px 20px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"background-color:#f5f5f5\",\"margin-bottom:65px\",\"margin-top:-30%\"]],[false,{\".review_sec\":false},[\"padding:25px\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 200px\"]],[false,{\".depending-text p\":false},[\"font-size:16px\"]],[false,{\".lets-talk-box\":false},[\"padding:35px 0px 60px\",\"margin-top:-43%\"]],[false,{\".depending-text\":false},[\"width:96%\"]],[false,{\".lets-talk-box h3\":false},[\"padding:0px 45px\"]],[false,{\".clients-talk .btn-gradient\":false},[\"font-size:14px\",\"padding:16px 30px\"]],[false,{\".keeping-you-competitive:not(#_#_#_#_#_#_#_)\":false},[\"padding:80px 0px 160px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li\":false},[\"padding:5px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li a\":false},[\"font-size:14px\"]],[false,{\".review_sec::after\":false},[\"left:25px\"]],[false,{\".review_sec .swiper-slide i\":false},[\"margin:8px 0px 8px\",\"padding-right:10px\"]],[false,{\".review_sec .swiper-slide p\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform .txt p\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform:not(#_#_#_#_#_#_#_)\":false},[\"padding:65px 0px 120px 0px\"]],[false,{\".rebuild-and-replatform .txt label\":false},[\"margin-bottom:15px\"]],[false,{\".rebuild-and-replatform .heading-box h2\":false},[\"font-size:30px\",\"margin-bottom:30px\"]],[false,{\".rebuild-and-replatform .txt p:last-of-type\":false},[\"margin-bottom:55px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text p\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content.active\":false},[\"padding-bottom:40px\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec\":false},[\"padding:15px 0px 0px\"]],[false,{\".keeping-you-competitive .heading-box h2\":false},[\"font-size:30px\",\"margin-bottom:24px\"]],[false,{\".keeping-you-competitive .heading-box h2 br\":false},[\"display:none\"]],[false,{\".keeping-future ul li:nth-of-type(4)\":false},[\"order:11\",\"border:none\"]],[false,{\".keeping-future ul li:nth-of-type(8)\":false},[\"order:9\"]],[false,{\".keeping-future ul li\":false},[\"margin-bottom:10px\",\"padding-bottom:10px\"]],[false,{\".native-applications-list .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".clients-talk .btn-wrapper\":false},[\"width:132px\"]],[false,{\"section.custom-full-bg\":false},[\"display:none\"]],[false,{\".native-applications-list .heading-box label\":false},[\"letter-spacing:1.1px\"]],[false,{\".c-scroll-box\":false},[\"overflow:scroll\"]],[false,{\".c-scroll-box:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".scroll-img\":false},[\"width:250%\",\"position:relative\"]],[false,{\".scroll-img amp-img\":false,\".scroll-img amp-anim\":false},[\"max-width:unset\",\"width:100%\"]],[false,{\".scroll-img:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/sroll-l.png\\\")\",\"width:25px\",\"height:25px\",\"bottom:0\",\"margin:auto\",\"left:25%\"]],[false,{\".scroll-img::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/scroll-right.png\\\")\",\"width:25px\",\"height:25px\",\"bottom:0\",\"margin:auto\",\"right:27%\"]],[false,{\".journey-roadmap .scroll-img::after\":false,\".journey-roadmap .scroll-img::before\":false},[\"display:none\"]],[false,{\".native-data-driven-top\":false},[\"padding-top:80px\"]],[false,{\".native-data-driven-top .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".cost-effective-sec .review_sec .swiper-slide i:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".lets-talk-box\":false},[\"margin-top:-73%\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-bottom:65px\",\"margin-top:-54%\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner amp-img\":false,\"section.cp-tek-teams-isk.c-app-banner amp-anim\":false},[\"min-height:inherit\"]],[false,{\".c-app-banner .title\":false},[\"margin-bottom:14px\"]],[false,{\".c-app-banner p\":false},[\"font-size:16px\",\"padding-right:20px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-img\":false,\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-anim\":false},[\"max-width:185px\",\"object-fit:cover\",\"width:100%\",\"text-align:center\",\"display:block\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media (max-width: 360px){\"],[false,{\".lets-talk-box h3\":false},[\"padding:0px 26px\"]],[false,\"}\"],[true,{\"a\":true},[\"display:inline-block\"]],[true,{\"*\":true},[\"-webkit-box-sizing:border-box\",\"box-sizing:border-box\",\"margin:0\",\"padding:0\"]],[true,{\"amp-img\":true,\"amp-anim\":false},[\"max-width:100%\"]],[true,{\"a\":true},[\"text-decoration:none\"]],[false,{\".btn-blue\":false},[\"background-color:#24c1ff\",\"color:#152649\",\"border-radius:30px\",\"font-size:20px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding:15px 30px\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"border:1px solid #24c1ff\"]],[false,\"@media (max-width: 992px){\"],[false,{\".btn-blue\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".btn-blue\":false},[\"font-size:14px\",\"padding:15px 40px\"]],[false,\"}\"],[false,{\".btn-blue:hover\":false},[\"background-color:transparent\"]],[false,{\".btn-blue.dark-blue\":false},[\"background-color:#152649\",\"color:#24c1ff\",\"border:1px solid #152649\"]],[false,{\".btn-blue.dark-blue:hover\":false},[\"background-color:transparent\"]],[false,{\".btn-green\":false},[\"background-color:transparent\",\"border:1px solid #8bed78\",\"color:#8bed78\",\"border-radius:30px\",\"font-size:20px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding:15px 30px\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width: 992px){\"],[false,{\".btn-green\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".btn-green\":false},[\"font-size:14px\",\"padding:15px 40px\"]],[false,\"}\"],[false,{\".btn-green:hover\":false},[\"color:#152649\",\"background-color:#8bed78\"]],[false,{\".btn-gradient\":false},[\"background:-webkit-gradient(linear,left top,right top,color-stop(0,#28d9cb),to(#a0f266))\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"color:#152649\",\"border-radius:30px\",\"font-size:32px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding:15px 30px\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".btn-gradient:hover\":false},[\"background:-webkit-gradient(linear,right top,left top,color-stop(0,#28d9cb),to(#a0f266))\",\"background:linear-gradient(-90deg,#28d9cb 0,#a0f266 100%)\"]],[false,{\".heading-box label\":false},[\"font-size:18px\",\"color:#7080a7\",\"display:block\",\"margin-bottom:24px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"letter-spacing:1.8px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".heading-box label\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".heading-box label\":false},[\"font-size:14px\",\"letter-spacing:1.4px\",\"margin-bottom:16px\"]],[false,\"}\"],[false,{\".heading-box label i\":false},[\"margin-right:8px\"]],[false,{\".heading-box h2\":false},[\"color:#152649\",\"font-size:50px\",\"line-height:1\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\"]],[false,\"@media (max-width: 1377px){\"],[false,{\".keeping-future ul li\":false},[\"margin-right:43px\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".heading-box h2\":false},[\"font-size:45px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".heading-box h2\":false},[\"font-size:40px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".heading-box h2\":false},[\"font-size:32px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".heading-box h2\":false},[\"font-size:30px\"]],[false,\"}\"],[false,{\".heading-box h2 span\":false},[\"color:#24c1ff\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:80px\",\"text-align:center\",\"padding-top:60px\",\"padding-bottom:120px\",\"position:relative\",\"background-position:center bottom\",\"background-repeat:no-repeat\",\"background-size:cover\",\"min-height:500px\",\"max-height:55vh\"]],[false,\"@media (max-width: 480px){\"],[false,{\".cp-cloud-native-isk figure\":false},[\"max-width:24px\",\"margin:auto\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk p\":false},[\"color:#28d9cb\",\"font-size:16px\",\"letter-spacing:1.6px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"margin-top:15px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".cp-cloud-native-isk p\":false},[\"font-size:14px\",\"letter-spacing:1.4px\",\"margin-top:12px\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:60px\",\"color:#fff\",\"line-height:1\",\"font-family:Raleway,sans-serif\",\"margin-top:90px\",\"margin-bottom:30px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:50px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:40px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:32px\",\"line-height:34px\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk .btn\":false},[\"border:1px solid #28d9cb\",\"color:#28d9cb\",\"font-size:24px\",\"padding:7px 32px\",\"border-radius:30px\",\"background:transparent\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".cp-cloud-native-isk .btn\":false},[\"font-size:20px\",\"padding:10px 32px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".cp-cloud-native-isk .btn\":false},[\"font-size:14px\",\"padding:0px 32px\",\"font-weight:500\",\"width:210px\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk .btn:hover\":false},[\"background-color:#28d9cb\",\"color:#152649\"]],[false,{\".cp-cloud-native-isk .angle-down\":false},[\"position:absolute\",\"bottom:5px\",\"left:50%\",\"-webkit-transform:translateX(-50%)\",\"transform:translateX(-50%)\"]],[false,{\".cp-cloud-native-isk .angle-down a\":false},[\"font-size:15px\",\"color:#28d9cb\"]],[false,{\".custom-txt-img-sec\":false},[\"padding-top:140px\",\"padding-bottom:120px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".custom-txt-img-sec\":false},[\"padding-top:60px\",\"padding-bottom:60px\"]],[false,{\".heading-box h2\":false},[\"font-size:35px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .cutsom-hide-text\":false},[\"display:none\"]],[false,{\".custom-txt-img-sec .cutsom-hide-text p\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.5\",\"font-family:raleway,sans-serif\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-txt-img-sec\":false},[\"padding:50px 0 30px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:calc(50.5% - 81px)\",\"margin-right:81px\"]],[true,\"@media (max-width: 1024px){\"],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:50%\"]],[true,{\".new-header__nav--title h5\":true},[\"font-size:25px\",\"line-height:1.2\"]],[false,{\".keeping-future ul li\":false},[\"width:24%\"]],[false,{\".keeping-future ul li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-right:29px\"]],[false,{\".keeping-you-competitive\":false},[\"padding-bottom:165px\"]],[false,{\".rebuild-and-replatform\":false},[\"padding:120px 0px 120px 0px\"]],[true,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:100%\",\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt label\":false},[\"margin-bottom:24px\"]],[false,\"@media (max-width: 767px){\"],[false,{\"section.custom-txt-img-sec.c-application-development\":false},[\"position:relative\",\"z-index:1\"]],[false,{\".custom-txt-img-sec .custom-img figure amp-img\":false,\".custom-txt-img-sec .custom-img figure amp-anim\":false,\".custom-txt-img-sec .custom-img figure\":false},[\"width:100%\",\"mix-blend-mode:multiply\"]],[false,{\".custom-txt-img-sec .custom-txt label\":false},[\"margin-bottom:20px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-img\":false},[\"max-width:250px\",\"margin-left:auto\",\"width:100%\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"color:#152649\",\"margin-bottom:40px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"font-size:38px\"]],[false,{\".contact-tek-teams.custom-txt-img-sec .custom-txt h2\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"font-size:27px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"padding-right:0\"]],[false,{\".keeping-future ul\":false},[\"font-size:20px\"]],[false,{\".keeping-future ul li\":false},[\"width:47%\"]],[false,{\".keeping-future ul li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-right:0px\"]],[false,{\".keeping-future ul li:nth-child(11)\":false},[\"border-bottom:#16365c solid 1px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"margin-bottom:0px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt h2 span\":false},[\"color:#24c1ff\"]],[false,{\".tek-world-scale .custom-txt h2 span\":false},[\"color:#28d9cb\"]],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.5\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"@media (min-width: 1280px) and (max-width: 1680px){\"],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".c-application-development .custom-txt p span\":false,\".custom-txt-img-sec .custom-txt p\":false},[\"color:#152649\"]],[false,{\".c-application-development .custom-txt p\":false},[\"color:#707070\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"margin-bottom:25px\"]],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".contact-tek-teams .custom-img p\":false},[\"margin-bottom:30px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt .btn-blue\":false},[\"margin-top:48px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-txt-img-sec .custom-txt .btn-blue\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-img\":false},[\"width:calc(49.5% - 81px)\",\"margin-left:81px\",\"display:flex\",\"align-items:center\"]],[false,{\".custom-txt-img-sec .custom-img figure amp-img\":false,\".custom-txt-img-sec .custom-img figure amp-anim\":false,\".custom-txt-img-sec .custom-img figure\":false},[\"width:100%\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:calc(50.5% - 40px)\",\"margin-right:40px\"]],[false,{\".custom-txt-img-sec .custom-img\":false},[\"width:calc(49.5% - 40px)\",\"margin-left:40px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-txt-img-sec .custom-img\":false},[\"width:100%\",\"max-width:500px\",\"margin:25px auto 0\"]],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"margin-right:0\"]],[false,{\".custom-txt-img-sec .custom-txt:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".text-grey-box p:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".text-grey-box\":false},[\"margin-bottom:2px\"]],[false,{\".review_sec2 i\":false},[\"font-weight:500\"]],[false,{\".review_sec2 i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\",\"color:#152649\"]],[false,{\"section.custom-full-bg.journey-roadmap .container-md\":false},[\"padding:0px\"]],[false,{\".journey-roadmap-header\":false},[\"padding:0px 24px\"]],[false,{\".journey-roadmap-header\":false},[\"flex-wrap:wrap\"]],[false,{\".journey-roadmap-header .heading-box\":false},[\"width:100%\",\"text-align:center\",\"margin-bottom:32px\"]],[false,{\".journey-roadmap-header .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".journey-roadmap-logo\":false},[\"width:65%\",\"margin:0px auto\",\"margin-bottom:24px\"]],[false,{\".devops-services\":false},[\"padding:80px 0px 50px\",\"background-color:#f1f1f1\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:14px\"]],[false,{\".devops-services .applications-col h5\":false},[\"padding-left:31px\"]],[false,{\".devops-services .applications-col h5::before\":false},[\"margin-top:2px\"]],[false,{\".mrdata-logo\":false},[\"left:0\",\"top:-55px\",\"bottom:auto\",\"justify-content:center\",\"right:0\"]],[false,{\".reliability-engineers\":false},[\"text-align:center\"]],[false,{\".reliability-engineers:not(#_#_#_#_#_#_#_)\":false},[\"padding:85px 27px 40px 27px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-197px\"]],[false,{\".kubernetes-sec .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".kubernetes-sec .custom-txt p:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".kubernetes-sec .custom-txt p span\":false},[\"font-weight:500\"]],[false,{\".kubernetes-sec .custom-txt p br\":false},[\"display:none\"]],[false,{\".kubernetes-sec .heading-box h2\":false},[\"margin-bottom:24px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:192px 0px 104px 0px\"]],[false,{\".col-row ul\":false},[\"column-count:1\"]],[false,{\".col-row ul li\":false},[\"font-size:16px\",\"margin-bottom:15px\"]],[false,{\".cost-effective-sec .inner\":false},[\"flex-wrap:wrap\"]],[false,{\".cost-effective-sec .left-text\":false,\".cost-effective-sec .custom-txt\":false},[\"width:100%\"]],[false,{\".infrastructure-sec .heading-box h2\":false,\".cost-effective-sec .heading-box h2\":false},[\"margin-bottom:32px\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:30px\"]],[false,{\".cost-effective-sec .heading-box h2 span\":false},[\"display:inline\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col\":false},[\"padding-bottom:15px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".infrastructure-sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-190px\"]],[false,\"}\"],[false,{\".custom-colm-sec\":false},[\"background-color:#f1f1f1\",\"padding:120px 0\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".custom-colm-sec\":false},[\"padding:60px 0\"]],[false,{\".custom-txt-img-sec .custom-txt .btn-blue\":false},[\"margin-top:30px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".custom-colm-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"margin:45px -10px 40px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .inner\":false},[\"margin:40px -8px 20px\"]],[false,\"}\"],[false,{\".custom-colm-sec .slick-list\":false},[\"padding-bottom:20px\"]],[false,{\".custom-colm-sec .slick-track:not(#_#_#_#_#_#_#_)\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".custom-colm-sec .colm\":false},[\"border-radius:16px\",\"-webkit-box-shadow:0 8px 16px rgba(0,0,0,.1)\",\"box-shadow:0 8px 16px rgba(0,0,0,.1)\",\"width:calc(33.33% - 14px)\",\"background-color:#fff\",\"margin-right:10px\",\"margin-left:10px\",\"position:relative\"]],[false,{\".custom-colm-sec .colm:not(#_#_#_#_#_#_#_)\":false},[\"height:inherit\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-colm-sec .colm\":false},[\"display:flex\",\"flex-direction:column\",\"justify-content:space-between\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm\":false},[\"margin:0 8px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm:last-of-type\":false},[\"margin-right:0\"]],[false,{\".custom-colm-sec .colm .img-box amp-img\":false,\".custom-colm-sec .colm .img-box amp-anim\":false},[\"border-radius:16px\"]],[false,{\".custom-colm-sec .colm .txt-box\":false},[\"padding:22px 40px 20px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".custom-colm-sec .colm .txt-box\":false},[\"padding:20px 20px 20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box\":false},[\"padding:16px 13px 20px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:32px\",\"line-height:1\",\"color:#24c1ff\",\"margin-bottom:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:27px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:24px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:22px\",\"margin-bottom:11px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm .txt-box p\":false},[\"font-size:18px\",\"color:#707070\",\"line-height:1.6\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-colm-sec .colm .txt-box p\":false},[\"font-size:16px\",\"line-height:22px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box p\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm .txt-box .see-more\":false},[\"position:absolute\",\"font-size:22px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#152649\",\"text-decoration:underline\",\"line-height:1.5\",\"font-weight:bold\",\"right:40px\",\"bottom:27px\"]],[false,{\".custom-colm-sec .colm .txt-box .see-more:hover\":false},[\"color:#24c1ff\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-colm-sec .colm .txt-box .see-more\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box .see-more\":false},[\"font-size:16px\",\"bottom:20px\"]],[false,\"}\"],[false,{\".custom-colm-sec .btn-wrapper\":false},[\"text-align:center\"]],[false,{\".custom-colm-sec .btn-wrapper .btn\":false},[\"margin-top:48px\"]],[false,{\".demand-sec\":false},[\"padding-top:240px\",\"padding-bottom:200px\",\"text-align:center\",\"text-align:center\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/imagem_scale.png\\\")\",\"background-repeat:no-repeat\",\"background-size:100% 100%\",\"position:relative\",\"background-attachment:fixed\"]],[false,{\"section.demand-sec:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"height:100%\",\"width:100%\",\"background:#39dcce\",\"background-color:rgba(57,220,206,.1)\",\"top:0\",\"left:0\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".demand-sec\":false},[\"padding-top:150px\",\"padding-bottom:150px\"]],[false,\"}\"],[false,{\".demand-sec .btn-blue.dark-blue\":false},[\"color:#f7f7f7\"]],[false,{\".demand-sec .colm:nth-child(3) p\":false},[\"padding:0px 35px\"]],[false,{\".demand-sec .btn-blue.dark-blue:hover\":false},[\"color:#152649\"]],[false,{\"section.demand-sec .inner .slick-track\":false},[\"display:flex\"]],[false,{\"section.demand-sec .inner .slick-list\":false},[\"display:flex\"]],[false,\"@media (max-width: 992px){\"],[false,{\".demand-sec\":false},[\"padding:120px 0\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".demand-sec\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".demand-sec .heading-box\":false},[\"padding-bottom:45px\"]],[false,{\".demand-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".demand-sec .inner .slick-dots\":false},[\"position:absolute\",\"right:-5px\",\"top:50%\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\"]],[false,{\".demand-sec .inner .slick-slider .slick-list\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".demand-sec .inner .slick-slider .slick-track\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".demand-sec .inner .slick-dots li\":false},[\"list-style-type:none\",\"height:70px\",\"width:3px\",\"margin:4px 0\"]],[false,{\".demand-sec .inner .slick-dots li.slick-active button\":false},[\"background:linear-gradient(90deg,#23f2e2 0,#93f150 100%)\",\"outline:none\"]],[false,{\".demand-sec .inner .slick-dots li button\":false},[\"width:100%\",\"height:100%\",\"background-color:#fff\",\"border-radius:2px\",\"font-size:0\",\"border:none\",\"outline:none\"]],[false,{\".demand-sec .inner .slick-slide amp-img\":false,\".demand-sec .inner .slick-slide amp-anim\":false},[\"margin:0px auto\"]],[false,{\".demand-sec .colm\":false},[\"width:30%\",\"position:relative\",\"margin-bottom:40px\",\"display:flex\",\"flex-direction:column\"]],[false,\"@media (max-width: 992px){\"],[false,{\".demand-sec .colm\":false},[\"width:32%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".demand-sec .colm\":false},[\"width:100%\",\"padding-bottom:10px\"]],[false,\"}\"],[false,{\".demand-sec .colm figure\":false},[\"margin-bottom:50px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".demand-sec .colm figure\":false},[\"max-width:110px\",\"margin:0 auto 50px\"]],[false,\"}\"],[false,{\".demand-sec .colm h4\":false},[\"margin-bottom:18px\",\"font-size:30px\",\"line-height:1\",\"color:#152649\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".demand-sec .colm h4\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".demand-sec .colm p\":false},[\"color:#152649\",\"line-height:1.6\",\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"padding:0px 21px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".demand-sec .colm p\":false},[\"padding:0px 6px\"]],[false,{\".demand-sec .colm:nth-child(3) p\":false},[\"padding:0px 6px\"]],[false,{\".demand-sec .btn-blue.dark-blue\":false},[\"color:#f7f7f7\",\"padding:15px 30px\",\"font-size:15px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".demand-sec .btn-blue.dark-blue\":false},[\"padding:15px 29px\",\"font-size:11px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:14px\",\"padding:0px 25px\"]],[false,\"}\"],[false,{\".demand-sec .colm .btn-wrapper\":false},[\"margin:auto 0 0 0\"]],[false,{\".demand-sec .colm .btn-wrapper a\":false},[\"line-height:normal\"]],[false,\"@media (max-width: 767px){\"],[false,{\".demand-sec .colm .btn-wrapper\":false},[\"position:inherit\",\"bottom:inherit\",\"margin-top:40px\"]],[false,\"}\"],[false,{\".ecosystem-sec\":false},[\"padding:200px 0 240px\",\"background-color:#f9f9f9\"]],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec\":false},[\"padding:100px 0 150px\",\"background-color:#f9f9f9\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\"section.ecosystem-sec .slick-track:not(#_#_#_#_#_#_#_#_)\":false},[\"display:flex\"]],[false,{\".ecosystem-sec .inner .slick-slide:not(#_#_#_#_#_#_#_)\":false},[\"height:inherit\"]],[false,\"}\"],[false,\"@media (min-width: 620px) and (max-width: 767px){\"],[false,{\"section.ecosystem-sec .inner .slick-list\":false},[\"padding-right:180px\"]],[false,{\"section.ecosystem-sec .inner .inner-colm .slick-list\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner .inner-colm amp-img\":false,\".ecosystem-sec .inner .inner-colm amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec .inner .inner-colm amp-img\":false,\".ecosystem-sec .inner .inner-colm amp-anim\":false},[\"width:55%\",\"margin:auto\"]],[false,\"}\"],[false,\"@media (max-width: 766px){\"],[false,{\".ecosystem-sec .inner .inner-colm amp-img\":false,\".ecosystem-sec .inner .inner-colm amp-anim\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"font-size:24px\",\"font-weight:bold\",\"color:#1d2848\",\"margin-bottom:20px\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"font-size:20px\",\"margin-bottom:5px\"]],[false,\"}\"],[false,\"@media (min-width: 480px) and (max-width: 580px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"display:inline-block\",\"float:right\",\"vertical-align:middle\",\"margin-top:18px\",\"width:70px\",\"position:absolute\",\"right:0px\",\"top:0px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:18px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:23px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:-16px\"]],[false,{\".ecosystem-sec .inner\":false},[\"padding:150px 0 100px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec\":false},[\"padding:120px 0 0\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:20px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec\":false},[\"padding:80px 0 0\"]],[false,\"}\"],[false,{\".ecosystem-sec .heading-box\":false},[\"padding-bottom:75px\",\"text-align:center\"]],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .heading-box\":false},[\"padding-bottom:0px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .heading-box\":false},[\"padding-bottom:0\",\"text-align:left\",\"position:relative\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false},[\"width:68%\",\"position:relative\",\"margin-top:0px\",\"margin-bottom:22px\",\"float:left\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:35px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:28px\",\"width:50px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(5) .inner-colm .back-slide .icon\":false},[\"margin-top:32px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5) .inner-colm .back-slide .icon\":false},[\"margin-top:26px\",\"width:50px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .front-slide p\":false},[\"padding-right:40px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .front-slide p\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(1) .inner-colm .back-slide .left-img\":false},[\"display:none\"]],[false,{\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"float:left\",\"width:60%\",\"position:relative\",\"margin-top:0px\",\"margin-bottom:20px\"]],[false,{\".ecosystem-sec .heading-box h2\":false},[\"color:#28d9cb\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .heading-box h2\":false},[\"width:calc(100% - 118px)\"]],[false,{\".ecosystem-sec .colm .back-slide .left-img\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (min-width: 300px) and (max-width: 340px){\"],[false,{\".ecosystem-sec .heading-box h2\":false},[\"font-size:22px\"]],[false,\"}\"],[false,{\".ecosystem-sec .heading-box figure\":false},[\"display:none\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .heading-box figure\":false},[\"display:block\",\"position:absolute\",\"bottom:0\",\"right:20px\",\"max-width:115px\"]],[false,\"}\"],[false,\"@media (min-width: 300px) and (max-width: 340px){\"],[false,{\".ecosystem-sec .heading-box figure\":false},[\"bottom:-31px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"position:relative\",\"padding:150px 0 100px\",\"z-index:1\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .inner\":false},[\"padding:150px 70px 100px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .inner\":false},[\"padding:150px 0px 100px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .inner\":false},[\"padding:40px 0 80px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner::before\":false},[\"content:\\\"\\\"\",\"width:67%\",\"height:52%\",\"position:absolute\",\"border:1px solid #24c1ff\",\"left:16.5%\",\"top:23%\",\"z-index:-1\"]],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec.slick-list\":false},[\"padding:20px 0\"]],[false,{\".ecosystem-sec .inner::before\":false},[\"display:none\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm\":false},[\"border-radius:16px\",\"-webkit-box-shadow:8px 16px 32px rgba(0,0,0,.1)\",\"box-shadow:8px 16px 32px rgba(0,0,0,.1)\",\"background-color:#fff\",\"padding:25px 40px 25px 40px\",\"margin-bottom:40px\",\"width:30.2%\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"margin-bottom:30px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-bottom:30px\",\"width:32%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm\":false},[\"-webkit-box-shadow:0px 0px 5px rgba(0,0,0,.1)\",\"box-shadow:0px 0px 5px rgba(0,0,0,.1)\",\"width:32%\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .inner-colm .slick-track\":false},[\"display:flex\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"height:inherit\",\"padding-bottom:30px\",\"padding-top:10px\",\"display:flex\",\"flex-direction:column\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"height:inherit\",\"padding-bottom:30px\",\"padding-top:25px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"margin-top:auto\",\"position:relative\",\"top:28px\",\"max-width:180px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more:not(#_#_#_#_#_#_#_)\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false},[\"bottom:6px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm\":false},[\"padding:30px\"]],[false,\"}\"],[false,\"@media (max-width: 1100px){\"],[false,{\".ecosystem-sec .colm\":false},[\"padding:30px 20px\",\"width:31.5%\"]],[false,\"}\"],[false,\"@media (max-width: 1100px){\"],[false,{\".ecosystem-sec .colm\":false},[\"padding:15px 20px\",\"width:31.5%\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-left:10px\",\"margin-right:10px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-left:4px\",\"margin-right:4px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-53%)\",\"transform:translateY(-53%)\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-57%)\",\"transform:translateY(-57%)\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-55%)\",\"transform:translateY(-55%)\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-54%)\",\"transform:translateY(-54%)\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:unset\",\"transform:unset\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:translateY(55%)\",\"transform:translateY(55%)\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:translateY(51%)\",\"transform:translateY(51%)\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:translateY(50%)\",\"transform:translateY(50%)\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:unset\",\"transform:unset\"]],[false,\"}\"],[false,\"@media (min-width: 993px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"position:absolute\",\"left:0\",\"right:0\",\"top:49.5%\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\",\"margin-left:auto\",\"margin-right:auto\",\"width:28%\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:30%\"]],[false,\"@media (min-width: 1920px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:30%\"]],[false,\"}\"],[false,\"@media (min-width: 1440px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (min-width: 993px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"display:none\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"color:#152649\",\"font-size:20px\",\"line-height:1.2\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false,\".ecosystem-sec .colm h5:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:15px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:17px\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false,\".ecosystem-sec .colm h5:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm h4\":false},[\"font-size:24px\",\"padding-right:110px\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:25px\"]],[false,{\".ecosystem-sec .slick-track\":false},[\"display:flex\"]],[false,{\".ecosystem-sec .slick-track .slick-slide\":false},[\"height:inherit\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec .colm h4\":false},[\"font-size:20px\",\"padding-right:35px\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:30px\"]],[false,\"}\"],[false,\"@media (max-width: 380px){\"],[false,{\".ecosystem-sec .colm h4\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm h4\":false},[\"margin-bottom:30px\",\"font-weight:bold\"]],[false,{\".ecosystem-sec .colm h5\":false},[\"font-weight:900\",\"margin-top:50px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".ecosystem-sec .colm h5\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm p\":false},[\"font-size:16px\",\"line-height:1.5\",\"color:#707070\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"padding-top:0px\",\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm h5\":false},[\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm\":false},[\"height:fit-content\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm p b\":false},[\"font-size:13px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm p b\":false},[\"color:#24c1ff\",\"font-weight:bold\"]],[false,\"@media (min-width: 768px) and (max-width: 992px){\"],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:51px\"]],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm p b\":false},[\"color:#707070\"]],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 375px){\"],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .back-slide\":false},[\"position:relative\"]],[false,{\".ecosystem-sec .colm .back-slide h6\":false},[\"font-size:14px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#28d9cb\",\"margin-bottom:10px\"]],[false,{\".ecosystem-sec .colm .back-slide .left-img\":false},[\"max-width:190px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .right-img\":false},[\"margin-bottom:5px\",\"margin-top:15px\"]],[false,{\".ecosystem-sec .colm .back-slide .right-img\":false},[\"max-width:70px\",\"position:absolute\",\"bottom:60px\",\"right:0px\"]],[false,{\".ecosystem-sec .colm .back-slide p\":false},[\"max-width:100%\",\"display:inline-block\"]],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide p\":false},[\"max-width:calc(100% - 90px)\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide p\":false},[\"max-width:calc(100% - 67px)\"]],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide .right-img\":false},[\"margin:0px\"]],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide .right-img amp-img\":false,\".ecosystem-sec .colm:nth-child(2) .back-slide .right-img amp-anim\":false},[\"width:70%\",\"margin-left:auto\",\"margin-top:0\",\"top:0\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"color:#28d9cb\",\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:900\",\"margin-top:0px\",\"display:block\",\"text-decoration:underline\"]],[false,{\".ecosystem-sec .colm:nth-child(3) .back-slide .back_heading\":false,\".ecosystem-sec .colm:nth-child(6) .back-slide .back_heading\":false},[\"text-align:left\",\"width:75%\",\"float:right\"]],[false,{\".ecosystem-sec .colm:nth-child(3) .back-slide .icon\":false,\".ecosystem-sec .colm:nth-child(6) .back-slide .icon\":false},[\"float:left\",\"margin-top:18px\"]],[false,{\".ecosystem-sec .colm:nth-child(3) .back-slide .icon\":false},[\"margin-top:10px\"]],[false,{\".ecosystem-sec .colm .slick-dots\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"position:absolute\",\"right:25px\",\"bottom:11px\",\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm .slick-dots li\":false},[\"list-style-type:none\",\"width:4px\",\"height:4px\",\"margin:0 5px\"]],[false,{\".ecosystem-sec .colm .slick-dots li button\":false},[\"display:block\",\"width:100%\",\"height:100%\",\"border-radius:50%\",\"background-color:#c9c9c9\",\"border:none\",\"font-size:0\"]],[false,{\".ecosystem-sec .colm .slick-dots li.slick-active\":false},[\"width:8px\",\"height:8px\"]],[false,{\".ecosystem-sec .colm .slick-dots li.slick-active button\":false},[\"background-color:#28d9cb\"]],[false,{\".ecosystem-sec .colm .slick-arrow\":false},[\"border:none\",\"bottom:11px\",\"position:absolute\",\"background:transparent\",\"z-index:2\",\"cursor:pointer\",\"height:13px\"]],[false,{\".ecosystem-sec .colm .slick-arrow.slick-disabled\":false},[\"opacity:0\",\"visibility:hidden\"]],[false,{\".ecosystem-sec .colm .slick-arrow i\":false},[\"color:#28d9cb\"]],[false,{\".ecosystem-sec .colm .slick-arrow.slick-prev\":false},[\"right:90px\"]],[false,{\".ecosystem-sec .colm .slick-arrow.slick-next\":false},[\"right:0\"]],[false,{\".partner-sec\":false},[\"background-color:#152649\",\"text-align:center\",\"padding:0px 0 240px\",\"position:relative\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".partner-sec\":false},[\"padding:0px 0 120px\"]],[false,\"}\"],[false,{\".bg-img\":false},[\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".partner-sec\":false},[\"padding:0px 0 90px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".partner-sec\":false},[\"padding:0px 0 85px\"]],[false,\"}\"],[false,{\".back-slide .partner-sec .bg-img\":false},[\"position:absolute\",\"top:0\",\"width:100%\"]],[false,{\".partner-sec .bg-img::before\":false},[\"content:\\\"\\\"\",\"width:100%\",\"height:265px\",\"position:absolute\",\"left:0\",\"bottom:-3px\",\"background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(21,38,73,0)),to(#152649))\",\"background-image:linear-gradient(rgba(21,38,73,0),#152649)\"]],[false,{\".partner-sec .container-md\":false},[\"margin-top:-140px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".partner-sec .bg-img::before\":false},[\"height:165px\"]],[false,\"}\"],[false,{\".partner-sec .bg-img .for-desktop\":false},[\"display:block\"]],[false,{\"figure.for-desktop amp-img\":false,\"figure.for-desktop amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".partner-sec .bg-img .for-desktop\":false},[\"display:none\"]],[false,\"}\"],[false,{\".partner-sec .bg-img .for-mobile\":false},[\"display:none\",\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".partner-sec .bg-img .for-mobile\":false},[\"display:block\"]],[false,\"}\"],[false,{\".partner-sec .bg-img .for-mobile amp-img\":false,\".partner-sec .bg-img .for-mobile amp-anim\":false},[\"width:100%\"]],[false,{\".partner-sec .heading-box\":false},[\"padding-bottom:90px\",\"z-index:1\",\"position:relative\"]],[false,{\".partner-sec .heading-box h2\":false},[\"color:#fff\",\"max-width:600px\",\"margin:auto\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".partner-sec .heading-box h2\":false},[\"max-width:455px\"]],[false,\"}\"],[false,{\".partner-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".partner-sec .slick-track:not(#_#_#_#_#_#_#_)\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".partner-sec .slick-arrow\":false},[\"background:transparent\",\"color:#24c1ff\",\"border:none\",\"font-size:20px\",\"position:absolute\",\"top:calc(50% - 11px)\",\"z-index:1\"]],[false,{\".partner-sec .slick-arrow.slick-disabled\":false},[\"opacity:0\",\"visibility:hidden\"]],[false,{\".partner-sec .slick-arrow.slick-prev\":false},[\"left:0\"]],[false,{\".partner-sec .slick-arrow.slick-next\":false},[\"right:0\"]],[false,{\".partner-sec .colm\":false},[\"width:33.33%\",\"padding:0 40px\",\"border-right:1px solid rgba(112,128,167,.3)\"]],[false,{\".partner-sec .colm:not(#_#_#_#_#_#_#_)\":false},[\"height:inherit\"]],[false,\"@media (max-width: 992px){\"],[false,{\".partner-sec .colm\":false},[\"padding:0 20px\"]],[false,\"}\"],[false,\"@media (max-width: 540px){\"],[false,{\".partner-sec .colm\":false},[\"border-right:none\",\"padding:0\"]],[false,\"}\"],[false,{\".partner-sec .colm:last-of-type\":false},[\"border-right:none\"]],[false,{\".partner-sec .colm h6\":false},[\"font-size:20px\",\"line-height:1\",\"color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"min-height:64px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".partner-sec .colm h6\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".partner-sec .colm figure\":false},[\"margin:40px 0\"]],[false,{\".partner-sec .colm figure amp-img\":false,\".partner-sec .colm figure amp-anim\":false},[\"margin:auto\"]],[false,{\".partner-sec .colm p\":false},[\"font-size:16px\",\"line-height:22px\",\"color:#7080a7\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\"]],[false,{\".solution-sec\":false},[\"padding:240px 0\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".solution-sec\":false},[\"padding:130px 0\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec\":false},[\"padding:100px 0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec\":false},[\"background-color:#24c1ff\",\"padding:57px 18px 80px\"]],[false,\"}\"],[false,{\".solution-sec .heading-box\":false},[\"margin-bottom:47px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .heading-box label\":false},[\"color:#fff\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper table\":false},[\"width:100%\",\"border-collapse:collapse\"]],[false,{\".solution-sec .table-wrapper #data-more-btn\":false},[\"background:no-repeat\",\"border:none\",\"margin:0px auto\",\"display:block\",\"font-weight:bold\",\"color:#152649\",\"position:relative\",\"padding:0px 15px\"]],[false,{\".solution-sec .table-wrapper #data-more-btn::after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0px\",\"right:0\",\"width:6px\",\"height:6px\",\"bottom:0\",\"margin:auto\",\"transform:rotate(45deg)\",\"border:#152649 solid 2px\",\"border-left:0px\",\"border-top:0px\"]],[false,{\".solution-sec .table-wrapper table .accor-toggle-btn\":false},[\"position:absolute\",\"right:0px\",\"top:0\",\"width:8px\",\"height:8px\",\"border:#152649 solid 2px\",\"transform:rotate(45deg)\",\"border-top:none\",\"border-left:none\",\"display:none\",\"margin-top:10px\"]],[false,{\"span.accor-toggle-btn.active:not(#_#_#_#_#_#_#_#_)\":false},[\"transform:rotate(-135deg)\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper tr\":false},[\"display:flex\",\"flex-wrap:wrap\",\"border-top:1px solid #f1f1f1\",\"padding:15px 0\"]],[false,{\".solution-sec .table-wrapper tr td\":false},[\"display:block\",\"width:100%\"]],[false,{\".solution-sec .table-wrapper tr.table-head\":false},[\"display:none\"]],[false,{\".solution-sec .table-wrapper td:nth-child(1)\":false},[\"order:1\"]],[false,{\".solution-sec .table-wrapper td:nth-child(3)\":false},[\"order:2\"]],[false,{\".solution-sec .table-wrapper td:nth-child(2)\":false},[\"order:3\"]],[false,{\".solution-sec .table-wrapper table .accor-toggle-btn\":false},[\"display:block\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#152649\",\"line-height:1.16\",\"border-bottom:1px solid #c9c9c9\",\"text-align:left\"]],[false,{\".solution-sec .accor-wrapper th\":false,\".solution-sec .accor-wrapper td\":false},[\"border:none\"]],[false,{\".solution-sec .table-wrapper th:not(:first-of-type)\":false,\".solution-sec .table-wrapper td:not(:first-of-type)\":false},[\"padding-left:20px\"]],[false,{\".solution-sec .table-wrapper td:nth-child(4)\":false,\".solution-sec .table-wrapper td:nth-child(2)\":false,\".solution-sec .table-wrapper td:nth-child(3)\":false},[\"font-weight:bold\"]],[false,\"@media (min-width:767px){\"],[false,{\".solution-sec .accor-wrapper tr td:not(#_#_#_#_#_#_#_#_)\":false},[\"width:31%\",\"padding-left:0px\"]],[false,{\".solution-sec .accor-wrapper tr td:nth-last-child(1):not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:10px\"]],[false,\"}\"],[false,\"@media (min-width: 1280px) and (max-width: 1350px){\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec .table-wrapper th:not(:first-of-type)\":false,\".solution-sec .table-wrapper td:not(:first-of-type)\":false},[\"padding-left:15px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper th:not(:first-of-type)\":false,\".solution-sec .table-wrapper td:not(:first-of-type)\":false},[\"padding-left:0\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"font-size:14px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"border:none\",\"text-align:right\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper th\":false},[\"font-weight:bold\",\"padding:0 0 32px 0\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper th\":false},[\"display:none\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td\":false},[\"font-weight:500\",\"padding:16px 0\",\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td\":false},[\"display:block\",\"padding:5px 0\",\"position:relative\"]],[false,{\".solution-sec .table-wrapper table tbody tr td:nth-child(1)::before\":false},[\"display:none\"]],[false,{\".solution-sec .table-wrapper table tbody tr .accor-wrapper td:nth-child(1)::before\":false},[\"display:block\"]],[false,{\".solution-sec .table-wrapper td::before\":false},[\"content:attr(data-th)\",\"position:absolute\",\"left:0\",\"color:#152649\",\"font-weight:bold\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td.sometimes\":false},[\"color:#7080a7\",\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td.sometimes\":false},[\"color:#5970a8\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td.rare\":false},[\"color:#ff555f\",\"font-weight:bold\"]],[false,{\".solution-sec .table-wrapper td.always\":false},[\"color:#28d9cb\",\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td.always\":false},[\"color:#fff\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td:last-of-type\":false},[\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td:last-of-type:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".solution-sec .table-wrapper tr .accor-wrapper tr\":false},[\"border:none\",\"padding-top:0px\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td:last-of-type amp-img\":false,\".solution-sec .table-wrapper td:last-of-type amp-anim\":false},[\"width:23px\",\"margin-right:7px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td:last-of-type amp-img\":false,\".solution-sec .table-wrapper td:last-of-type amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td:first-of-type\":false},[\"width:35%\"]],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec .table-wrapper td:first-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td:first-of-type\":false},[\"width:100%\",\"text-align:revert\",\"font-weight:500\",\"padding-right:25px\"]],[false,{\".solution-sec .table-wrapper .accor-wrapper table tr td\":false},[\"padding-right:0px\",\"width:100%\"]],[false,\"}\"],[false,{\".future-vision-sec\":false},[\"background-color:#f9f9f9\",\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec\":false},[\"padding:0\",\"padding-bottom:190px\"]],[false,\"}\"],[false,{\".future-vision-sec .inner-vision-sec\":false},[\"background-color:#062b43\",\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .inner-vision-sec\":false},[\"padding:0\"]],[false,\"}\"],[false,{\".future-vision-sec .bg-img\":false},[\"position:relative\",\"width:39%\"]],[false,\"@media (max-width: 1800px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(18% + 45px)\",\"margin-right:-45px\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:35%\"]],[false,\"}\"],[false,\"@media (max-width: 1680px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:37%\"]],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(17% + 50px)\",\"margin-right:-50px\",\"z-index:1\"]],[false,\"}\"],[false,\"@media (max-width: 1536px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:35%\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:30%\",\"height:100%\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:286px\"]],[false,{\".future-vision-sec .bg-img amp-img\":false,\".future-vision-sec .bg-img amp-anim\":false},[\"object-fit:cover\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"position:inherit\",\"width:100%\",\"max-width:inherit\",\"margin:auto\",\"margin-bottom:-160px\"]],[false,\"}\"],[false,{\".future-vision-sec .bg-img amp-img\":false,\".future-vision-sec .bg-img amp-anim\":false},[\"width:100%\",\"height:100%\"]],[false,{\".future-vision-sec .bg-img::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"bottom:0\",\"width:100%\",\"height:256px\",\"background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(4,40,63,0)),to(#042941))\",\"background-image:linear-gradient(rgba(4,40,63,0),#042941)\",\"left:0\",\"display:none\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .bg-img::before\":false},[\"display:block\"]],[false,\"}\"],[false,{\".future-vision-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"position:relative\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .inner\":false},[\"height:460px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .inner\":false},[\"height:auto\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:45%\",\"padding-right:8%\"]],[false,\"@media (max-width: 1536px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"padding-right:7%\"]],[false,\"}\"],[false,{\".container-spacial\":false},[\"padding-left:17%\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".container-spacial\":false},[\"padding-left:12%\"]],[false,\"}\"],[false,\"@media (max-width: 1536px){\"],[false,{\".container-spacial\":false},[\"padding-left:9%\"]],[false,\"}\"],[false,\"@media (max-width: 1440px){\"],[false,{\".container-spacial\":false},[\"padding-left:7%\"]],[false,\"}\"],[false,\"@media (max-width: 1800px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:47%\"]],[false,\"}\"],[false,\"@media (max-width: 1440px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:50%\",\"padding-right:5%\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:31%\"]],[false,{\".kubernetes-sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-213px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".container-spacial\":false},[\"padding-left:0px\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:31%\"]],[false,{\".future-vision-sec .custom-txt\":false},[\"width:51%\",\"padding-right:4%\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"font-size:45px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:55%\",\"padding-right:7%\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:30%\"]],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:51%\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:30%\"]],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:29.8%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:100%\",\"order:-1\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:100%\",\"padding-right:20px\",\"padding-left:20px\",\"padding-bottom:34px\",\"border-bottom:1px solid rgba(241,241,241,.15)\",\"margin-bottom:38px\",\"z-index:1\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"color:#fff\",\"margin-bottom:40px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:175px\",\"font-size:30px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:71px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"font-size:20px\",\"padding-right:4px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"font-size:24px\",\"margin-bottom:34px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt h2 span\":false},[\"color:#24c1ff\"]],[false,{\".future-vision-sec .custom-txt p\":false},[\"color:#fff\",\"font-size:16px\",\"line-height:1.5\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"padding-right:30px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .custom-txt p\":false},[\"font-size:12px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-txt p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt p a\":false},[\"text-decoration:underline\",\"color:#24c1ff\"]],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(15.95% + 60px)\",\"margin-right:-60px\",\"z-index:1\"]],[false,\"@media (max-width: 1536px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(18% + 60px)\",\"margin-right:-60px\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(18% + 60px)\",\"margin-right:-60px\"]],[false,{\".review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:19px\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:19px\"]],[false,{\".kubernetes-sec .custom-txt p\":false},[\"font-size:19px\"]],[false,{\".col-row ul li\":false},[\"font-size:19px\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:44px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col\":false},[\"padding-bottom:15px\",\"width:calc(50% - 27px)\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col li\":false},[\"padding-bottom:20px\",\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(15% + 60px)\",\"margin-right:-60px\"]],[false,{\".reliability-engineers p\":false},[\"font-size:17px\",\"font-weight:bold\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:160px 0px 105px 0px\"]],[false,{\".col-row ul li\":false},[\"font-size:17px\",\"margin-bottom:15px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(19% + 60px)\"]],[false,{\".text-grey-box p:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:15px\"]],[false,{\".review_sec2 i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:16px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-183px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:192px 0px 84px 0px\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:15px\"]],[false,{\".reliability-engineers\":false},[\"padding:40px 30px 40px 78px\",\"margin-top:40px\"]],[false,{\".reliability-engineers p\":false},[\"font-size:15px\",\"font-weight:bold\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-137px\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:35px\"]],[false,{\".infrastructure-sec\":false},[\"margin-top:-234px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img amp-img\":false,\".future-vision-sec .custom-img amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:100%\",\"-webkit-box-orient:vertical\",\"-webkit-box-direction:reverse\",\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"padding:0px 25px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img .inner-img\":false},[\"position:relative\",\"margin-bottom:15px\"]],[false,{\".future-vision-sec .custom-img .inner-img h5\":false},[\"color:#fff\",\"position:absolute\",\"padding:40px 0px 0px 30px\",\"font-size:42px\",\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img .inner-img\":false},[\"margin-bottom:-155px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"position:absolute\",\"font-size:24px\",\"line-height:1.16\",\"color:#24c1ff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding-right:50px\",\"max-width:256px\",\"bottom:30px\",\"left:30px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:15px\"]],[false,{\".devops-services .applications-col ul li\":false},[\"font-size:14px\"]],[false,{\".srvs-text-box p\":false},[\"font-size:14px\"]],[false,{\".srvs-text-box\":false},[\"margin-bottom:15px\"]],[false,{\".devops-services .applications-col h5\":false},[\"margin-bottom:15px\"]],[false,{\".devops-services .applications-col ul\":false},[\"margin-bottom:15px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-186px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-167px\"]],[false,{\".reliability-engineers p\":false},[\"font-size:14px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:11px\"]],[false,{\".fortune-box\":false},[\"width:100%\"]],[false,{\".col-row ul li\":false},[\"font-size:15px\",\"margin-bottom:15px\"]],[false,{\".col-row ul\":false},[\"column-gap:0\"]],[false,{\".cost-effective-sec .left-text p\":false},[\"font-size:14px\",\"line-height:1.6\",\"color:#707070\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:29px\"]],[false,{\".cost-effective-sec .inner\":false},[\"margin-bottom:40px\"]],[false,{\".cost-effective-sec .review_sec2\":false},[\"margin-top:0\"]],[false,{\".cost-effective-sec .review_sec .swiper-slide i\":false},[\"margin:0 0px 10px\"]],[false,{\".infrastructure-sec\":false},[\"margin-top:-187px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:24px\"]],[false,{\".main-scroll-box\":false},[\"overflow:scroll\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".devops-consulting-banner .title\":false},[\"margin-bottom:10px\"]],[false,{\".devops-consulting-banner h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:32px\"]],[false,\"}\"],[false,\"@media (max-width: 380px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,{\".contact-form-info-right ul li\":false},[\"font-size:14px\"]],[false,{\".contact-form-info-right ul li:first-of-type:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:20px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img .overlay-txt i\":false},[\"position:absolute\",\"right:7px\",\"background:rgba(255,255,255,.2)\",\"width:24px\",\"height:24px\",\"border-radius:50%\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-webkit-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"font-size:18px\",\"top:calc(50% - 10px)\"]],[false,{\".future-vision-sec .custom-img p\":false},[\"font-size:14px\",\"color:#bebebe\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img p\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".lets-talk-sec\":false},[\"padding:55px 0\",\"-webkit-box-shadow:8px 0px 32px rgba(0,0,0,.1)\",\"box-shadow:8px 0px 32px rgba(0,0,0,.1)\"]],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec\":false},[\"padding:30px 0 0\"]],[false,\"}\"],[false,{\".lets-talk-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .inner\":false},[\"max-width:300px\",\"text-align:center\",\"margin:auto\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".lets-talk-sec .inner\":false},[\"max-width:250px\"]],[false,\"}\"],[false,{\".lets-talk-sec .heading-box\":false},[\"width:calc(100% - 370px)\"]],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .heading-box\":false},[\"width:calc(100% - 300px)\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .heading-box\":false},[\"width:100%\",\"margin-bottom:18px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".lets-talk-sec .heading-box h2\":false},[\"font-size:25px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".lets-talk-sec .heading-box h2\":false},[\"font-size:20px\"]],[false,\"}\"],[false,{\".lets-talk-sec .btn-wrapper\":false},[\"width:306px\"]],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"width:100%\",\"height:80px\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"border-radius:100px\"]],[false,\"@media (max-width:1780px){\"],[false,{\".lets-talk-sec .btn-wrapper\":false},[\"width:250px\"]],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"height:70px\",\"font-size:24px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".lets-talk-sec .btn-wrapper\":false},[\"max-width:250px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"height:60px\",\"font-size:25px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"width:132px\",\"height:40px\",\"font-size:20px\",\"padding:5px\",\"margin:auto\",\"margin-bottom:-20px\"]],[false,{\".tek-world-scale .inner .custom-img\":false},[\"margin:0px auto\",\"display:block\"]],[false,\"}\"],[false,{\".custom-grid-sec\":false},[\"background-color:#f1f1f1\",\"padding:100px 0px 110px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec\":false},[\"padding-right:120px 0\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm amp-img\":false,\".custom-grid-sec .inner .colm amp-anim\":false},[\"width:60px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec\":false},[\"padding-right:120px 0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-grid-sec\":false},[\"padding:120px 0 80px\",\"margin-top:-155px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"margin:0 -40px\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"width:calc(33.333% - 27px)\",\"margin-right:40px\",\"display:flex\",\"flex-direction:column\"]],[false,{\".custom-grid-sec .inner\":false},[\"margin:0\"]],[false,{\".custom-grid-sec .inner .colm:nth-child(3n)\":false},[\"margin-right:0\"]],[false,\"@media (max-width: 992){\"],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding-right:20px\",\"padding-left:20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding-right:40px\",\"padding-left:20px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm figure\":false},[\"display:inline-block\",\"margin-right:15px\"]],[false,{\".custom-grid-sec .inner .colm h4\":false},[\"display:-webkit-inline-box\",\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"margin-bottom:15px\",\"color:#152649\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:30px\",\"font-weight:bold\"]],[false,\"@media (max-width: 1366px){\"],[false,{\".custom-grid-sec .inner .colm h4\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm p\":false},[\"margin-bottom:30px\",\"font-size:18px\",\"color:#434343\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"line-height:1.6\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec .inner .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-grid-sec .inner .colm p\":false},[\"font-size:14px\",\"margin-bottom:24px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm a\":false},[\"color:#152649\",\"font-weight:bold\",\"font-family:\\\"Raleway\\\",sans-serif\",\"display:block\",\"font-size:24px\",\"margin-top:auto\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec .inner .colm a\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-grid-sec .inner .colm a\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm a i\":false},[\"margin-left:15px\",\"font-size:16px\"]],[false,{\".custom-grid-sec .slick-dots\":false},[\"position:absolute\",\"right:10px\",\"top:50%\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\"]],[false,{\".custom-grid-sec .slick-dots li\":false},[\"list-style-type:none\",\"height:70px\",\"width:3px\",\"margin:4px 0\"]],[false,{\".custom-grid-sec .slick-dots li.slick-active button\":false},[\"background-color:#28d9cb\"]],[false,{\".custom-grid-sec .slick-dots li button\":false},[\"width:100%\",\"height:100%\",\"background-color:#fff\",\"border-radius:2px\",\"font-size:0\",\"outline:none\",\"border:none\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".custom-trust-sec .inner\":false},[\"position:relative\"]],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:calc(55% - 30px)\",\"margin-right:30px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:70%\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".custom-trust-sec .custom-txt p\":false},[\"padding-right:57px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-trust-sec .custom-txt p\":false},[\"color:#152649\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec .custom-txt p\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".custom-trust-sec .custom-txt h2\":false},[\"max-width:calc(100% - 80px)\"]],[false,\"}\"],[false,{\".custom-trust-sec .custom-img\":false},[\"width:calc(45% - 30px)\",\"margin-right:0\",\"margin-left:30px\",\"text-align:right\"]],[false,{\".custom-trust-sec .custom-img amp-img\":false,\".custom-trust-sec .custom-img amp-anim\":false},[\"max-width:250px\",\"width:100%\",\"margin:0px auto\",\"display:block\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-trust-sec .custom-txt\":false},[\"margin-right:0\",\"width:55%\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec .custom-img\":false},[\"position:absolute\",\"right:0\",\"top:-20px\"]],[false,{\".custom-trust-sec .custom-img:not(#_#_#_#_#_#_#_)\":false},[\"width:56px\"]],[false,\"}\"],[false,{\".custom-case-studie\":false},[\"padding:0\",\"position:relative\",\"padding-top:618px\",\"background-color:#152649\"]],[false,\"@media (max-width:1780px){\"],[false,{\".custom-case-studie\":false},[\"padding-top:480px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".custom-case-studie\":false},[\"padding-top:442px\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img\":false},[\"background-repeat:no-repeat\",\"padding-bottom:0px\",\"position:absolute\",\"top:0\",\"width:100%\"]],[false,{\".custom-case-studie .bg-img::before\":false},[\"content:\\\"\\\"\",\"width:100%\",\"height:265px\",\"position:absolute\",\"left:0\",\"bottom:0\",\"background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(21,38,73,0)),to(#152649))\",\"background-image:linear-gradient(rgba(21,38,73,0),#152649)\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-case-studie .bg-img::before\":false},[\"height:165px\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img .for-desktop\":false},[\"display:block\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .bg-img .for-desktop\":false},[\"display:none\"]],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:100%\"]],[false,{\".custom-trust-sec .custom-img\":false},[\"width:100%\",\"margin-left:0\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img .for-mobile\":false},[\"display:none\",\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .bg-img .for-mobile\":false},[\"display:block\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img .for-mobile amp-img\":false,\".custom-case-studie .bg-img .for-mobile amp-anim\":false},[\"width:100%\"]],[false,{\".custom-case-studie .custom-bottm-sec\":false},[\"padding-bottom:160px\",\"padding-top:40px\",\"position:relative\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-case-studie .custom-bottm-sec\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,{\".custom-case-studie .custom-bottm-sec .inner\":false},[\"-webkit-box-align:end\",\"-ms-flex-align:end\",\"align-items:flex-end\",\"margin-top:-200px\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt\":false},[\"width:55%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt label\":false},[\"color:#f1f1f1\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt label i\":false},[\"color:#7080a7\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt h2\":false},[\"color:#fff\",\"margin-bottom:25px\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt h2 span\":false},[\"color:#8bed78\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt p\":false},[\"padding-right:57px\",\"color:#f1f1f1\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt p\":false},[\"padding-right:0\"]],[false,\"}\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-case-btn\":false},[\"width:38%\",\"margin-right:0\",\"text-align:left\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-case-btn\":false},[\"width:100%\",\"margin-top:15px\",\"text-align:left\"]],[false,\"}\"],[false,{\".custom-colm-blog\":false},[\"background-color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\".custom-colm-blog .heading-box h2 span\":false},[\"color:#28d9cb\"]],[false,{\".custom-colm-blog .colm\":false},[\"background-color:#f7f7f7\",\"border:#c9c9c9 solid 1px\",\"-webkit-box-shadow:none\",\"box-shadow:none\"]],[false,{\".custom-colm-blog .colm .txt-box\":false},[\"padding-bottom:35px\"]],[false,{\".custom-colm-blog .colm .txt-box h6\":false},[\"text-transform:uppercase\",\"color:#6f7070\",\"font-size:14px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"margin-bottom:15px\"]],[false,{\".custom-colm-blog .colm .txt-box h6 span\":false},[\"color:#c9c9c9\"]],[false,{\".custom-colm-blog .colm .txt-box h4\":false},[\"font-size:20px\",\"color:#152649\",\"margin-bottom:60px\",\"height:30px\"]],[false,{\".custom-colm-blog .colm .txt-box .custom-btm-text\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".custom-colm-blog .colm .txt-box .custom-btm-text a\":false},[\"color:#152649\",\"font-size:18px\",\"text-decoration:underline\",\"font-weight:bold\"]],[false,\"@media (max-width:767px){\"],[false,{\".custom-colm-blog .colm .txt-box .custom-btm-text a\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".custom-colm-blog .colm .img-box amp-img\":false,\".custom-colm-blog .colm .img-box amp-anim\":false},[\"height:160px\",\"-o-object-fit:cover\",\"object-fit:cover\",\"width:100%\"]],[true,\"@media (max-width:992px){\"],[true,{\"footer .container\":true},[\"max-width:90%\"]],[true,{\".footer-2022__menu--list\":true},[\"padding:0px 5px\"]],[true,{\"header nav .dropdown-menu p.new-header__nav--menu--text\":true},[\"max-width:unset\"]],[true,\"}\"],[true,\"@media (max-width:600px){\"],[true,{\"footer .container\":true},[\"max-width:540px\"]],[true,{\".footer-2022__menu--list\":true},[\"padding:0px\"]],[true,\"}\"],[true,{\".new-header__menu-item\":true},[\"background:#f7f7f7\"]],[true,\"@media (max-width:1280px){\"],[true,{\".new-header__menu-item\":true},[\"padding-left:15px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header__menu-item\":true},[\"padding-left:0\"]],[true,\"}\"],[false,{\".cp-tek-teams-isk\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"position:relative\",\"margin-top:100px\"]],[false,{\".cp-tek-teams-isk .inner-hero-text amp-img\":false,\".cp-tek-teams-isk .inner-hero-text amp-anim\":false},[\"width:48px\"]],[false,{\".cp-tek-teams-isk amp-img\":false,\".cp-tek-teams-isk amp-anim\":false},[\"width:100%\",\"object-fit:cover\",\"object-position:center\"]],[false,\"@media (max-width: 768px){\"],[false,{\".cp-tek-teams-isk\":false},[\"margin-top:70px\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk picture\":false},[\"padding-bottom:25px\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"position:relative\"]],[false,\"@media (max-width: 1366px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"padding-bottom:5px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"margin-bottom:0px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"margin-bottom:7px\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk picture p\":false},[\"color:#28d9cb\",\"margin-left:15px\",\"margin-bottom:0px\",\"font-size:16px\",\"line-height:1\"]],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk picture p\":false},[\"margin-left:0px\",\"color:#28d9cb\",\"font-size:12px\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk .inner-hero-text\":false},[\"position:absolute\",\"top:45%\",\"width:100%\",\"left:50%\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk .inner-hero-text picture\":false},[\"margin-bottom:5px\"]],[false,{\".cp-tek-teams-isk .inner-hero-text amp-img\":false,\".cp-tek-teams-isk .inner-hero-text amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:60px\",\"font-weight:bold\",\"color:rgba(255,255,255,1)\",\"line-height:1\",\"margin-bottom:6px\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"@media (max-width: 768px){\"],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:30px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:32px\"]],[false,\"}\"],[false,{\".contact-tek-teams\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"padding:80px 0px 120px\"]],[false,{\".contact-tek-teams .mobile-button\":false},[\"display:none\"]],[false,\"@media (max-width: 767px){\"],[false,{\".contact-tek-teams .desktop-button\":false},[\"display:none\"]],[false,{\".contact-tek-teams .mobile-button:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (max-width: 1680px){\"],[false,{\".contact-tek-teams\":false},[\"padding:80px 0px 90px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".contact-tek-teams\":false},[\"padding:80px 0px 80px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".contact-tek-teams\":false},[\"padding:60px 0px 60px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".contact-tek-teams\":false},[\"padding:40px 0px 0px\"]],[false,\"}\"],[false,{\".contact-tek-teams .inner\":false},[\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".contact-tek-teams .inner .custom-txt .btn-blue\":false},[\"margin-top:0px\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-txt\":false},[\"width:calc(50.5% - 0px)\",\"margin-right:0\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"width:54%\",\"margin-right:-12%\",\"margin-left:76px\"]],[false,\"@media (max-width: 1214px) and (max-width: 1280px){\"],[false,{\".contact-tek-teams .custom-img\":false},[\"margin-right:-7%\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".contact-tek-teams .custom-img\":false},[\"width:47%\",\"margin-right:0px\"]],[false,{\".contact-tek-teams .inner .custom-img p:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".contact-tek-teams .inner\":false},[\"flex-direction:column\",\"align-items:flex-start\"]],[false,{\".contact-tek-teams .custom-img\":false},[\"width:100%\",\"margin-right:0px\",\"margin-top:0px\",\"margin-left:0px\"]],[false,\"}\"],[false,{\".contact-tek-teams .inner .custom-img p\":false},[\"color:#707070\",\"line-height:32px\",\"padding-right:18%\",\"font-size:20px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".contact-tek-teams .inner .custom-img p\":false},[\"color:#707070\",\"line-height:2\",\"padding-right:0px\",\"font-size:14px\"]],[false,\"}\"],[false,{\".repeat-bg\":false},[\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".repeat-bg\":false},[\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".repeat-bg amp-img\":false,\".repeat-bg amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 600px){\"],[false,{\".repeat-bg amp-img\":false,\".repeat-bg amp-anim\":false},[\"height:207px\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".repeat-bg .c-btm-icon\":false},[\"position:absolute\",\"bottom:35px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".repeat-bg .c-btm-icon\":false},[\"left:0px\",\"bottom:13px\",\"width:100%\",\"padding:0px 25px\"]],[false,{\".repeat-bg .c-btm-icon amp-img\":false,\".repeat-bg .c-btm-icon amp-anim\":false},[\"width:auto\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".repeat-bg .c-btm-icon\":false},[\"left:0px\",\"bottom:0\",\"width:100%\",\"padding:0px 25px\",\"padding-bottom:25px\"]],[false,{\".repeat-bg .c-btm-icon amp-img\":false,\".repeat-bg .c-btm-icon amp-anim\":false},[\"height:inherit\",\"width:auto\",\"margin-bottom:0px\",\"margin-top:0\",\"padding-bottom:15px\"]],[false,\"}\"],[false,{\".repeat-bg .tek-teams-mob-heading\":false},[\"display:none\"]],[false,{\".repeat-bg .tek-teams-mob-heading h3\":false},[\"font-size:24px\",\"color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"line-height:1.3\"]],[false,\"@media (max-width: 600px){\"],[false,{\".repeat-bg .tek-teams-mob-heading\":false},[\"display:block\",\"padding-right:68px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".repeat-bg .tek-teams-mob-heading\":false},[\"display:block\",\"padding-right:0px\"]],[false,{\".repeat-bg .c-btm-icon\":false},[\"padding-bottom:10px\"]],[false,{\".repeat-bg .c-btm-icon amp-img\":false,\".repeat-bg .c-btm-icon amp-anim\":false},[\"padding-bottom:0px\"]],[false,\"}\"],[false,{\".tek-teams-heading\":false},[\"padding-top:80px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".tek-teams-heading\":false},[\"padding-top:20px\"]],[false,\"}\"],[false,{\".tek-teams-heading h3\":false},[\"font-size:30px\",\"line-height:1\",\"margin-bottom:40px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#707070\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek-teams-heading h3\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".tek-teams-heading\":false},[\"display:none\"]],[false,\"}\"],[false,{\".about-tek-wrapper\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"padding-bottom:120px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".about-tek-wrapper\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".about-tek-wrapper\":false},[\"padding-bottom:60px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".about-tek-wrapper\":false},[\"padding-top:50px\",\"padding-bottom:60px\"]],[false,\"}\"],[false,{\".about-tek-wrapper .about-tek-team\":false},[\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".about-tek-wrapper .about-tek-team .c-col\":false},[\"width:calc(50% - 40px)\"]],[false,{\".about-tek-wrapper .about-tek-team .c-col p b\":false,\".about-tek-wrapper .about-tek-team .c-col p strong\":false},[\"font-weight:bold\"]],[false,\"@media (max-width: 768px){\"],[false,{\".about-tek-wrapper .about-tek-team .c-col\":false},[\"width:calc(50% - 15px)\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".about-tek-wrapper .about-tek-team .c-col\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".about-tek-wrapper .about-tek-team .c-col p\":false},[\"padding-bottom:10px\",\"font-size:20px\",\"line-height:2\",\"color:#707070\"]],[false,\"@media (max-width: 768px){\"],[false,{\".about-tek-wrapper .about-tek-team .c-col p\":false},[\"font-size:15px\",\"padding-bottom:0px\",\"margin-bottom:10px\"]],[false,\"}\"],[false,{\".about-tek-wrapper .about-tek-team .c-col p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".development-team-sec\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"background-color:#f1f1f1\",\"padding-bottom:120px\"]],[false,{\".development-team-sec .text-short-box\":false},[\"padding-left:8px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".development-team-sec\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".development-team-sec\":false},[\"padding-bottom:60px\"]],[false,\"}\"],[false,{\".development-team-sec p\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.5\",\"margin-bottom:60px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec p\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec p\":false},[\"font-size:15px\",\"margin-bottom:25px\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .tek-teams-heading h3\":false},[\"color:#24c1ff\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"margin-bottom:20px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:30%\",\"margin-bottom:60px\"]],[false,\"@media (min-width: 1025px) and (max-width: 1280px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:32%\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"margin-bottom:20px\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"margin:0 0 0 40px\",\"width:calc(55% - 40px)\",\"padding:0\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-txt\":false},[\"width:45%\",\"margin:0\",\"padding:0\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img p\":false},[\"padding:0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:45%\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"margin:25px 0 0px 0px\",\"width:100%\",\"padding-bottom:10px\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-txt\":false},[\"width:100%\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:100%\",\"border-bottom:#e1e1e1 solid 1px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col:last-child\":false},[\"border-bottom:none\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:35px\",\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading figure\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"color:#152649\",\"padding-left:8px\",\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"margin-bottom:0px\"]],[false,\"@media only screen and (min-width: 1025px) and (max-width: 1279px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"font-size:14px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"padding-left:4px\",\"font-size:12px\",\"margin-bottom:0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"padding-left:4px\",\"font-size:14px\",\"margin-bottom:0\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:0px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span::before:not(#_#_#_#_#_#_#_#_)\":false},[\"content:none\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"font-size:18px\",\"line-height:1.3\",\"margin-bottom:25px\",\"color:#707070\",\"position:relative\",\"padding-left:20px\",\"padding-right:20px\",\"display:block\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"padding-right:0px\",\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"padding-left:10px\",\"font-size:13px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"font-size:14px\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span:last-child\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span::before\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p::before\":false},[\"position:absolute\",\"top:0\",\"left:0px\",\"content:\\\"-\\\"\",\"line-height:17px\"]],[false,\"@media (max-width: 600px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .col-heading::before\":false},[\"content:\\\"\\\"\",\"width:6px\",\"height:6px\",\"border-bottom:2px solid #24c1ff\",\"border-right:2px solid #24c1ff\",\"float:right\",\"position:absolute\",\"top:12px\",\"right:1px\",\"-webkit-transform:rotate(45deg)\",\"transform:rotate(45deg)\",\"-webkit-transform-origin:center\",\"transform-origin:center\",\"-webkit-transition:all .4s ease\",\"transition:all .4s ease\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .col-heading.active::before\":false},[\"-webkit-transform:rotate(225deg)\",\"transform:rotate(225deg)\",\"color:#24c1ff\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .col-heading .active:after\":false},[\"-webkit-transform:rotate(-135deg)\",\"transform:rotate(-135deg)\",\"border-color:#fff\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .text-short-box\":false},[\"display:none\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .btn-blue\":false},[\"padding:23px 0px\",\"text-align:center\",\"border-radius:50px\",\"width:360px\",\"margin:0px auto\",\"display:block\"]],[false,{\".benefits-sec\":false},[\"background-color:#fff\"]],[false,{\".team-structure-sec .tek-teams-heading h3\":false},[\"margin-bottom:25px\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"@media (max-width: 768px){\"],[false,{\".team-structure-sec .tek-teams-heading h3\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".team-structure-sec p\":false},[\"font-size:18px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".team-structure-sec p\":false},[\"font-size:14px\"]],[false,{\".custom-grid-sec .inner\":false},[\"margin:0\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding:25px 10px 25px 0px\",\"margin:0\"]],[false,{\".custom-grid-sec .slick-dots\":false},[\"right:0\"]],[false,\"}\"],[false,{\".dev-shop-team-sec\":false},[\"padding:120px 0px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".dev-shop-team-sec\":false},[\"padding:80px 0px\"]],[false,\"}\"],[false,{\".c-border-none td:not(#_#_#_#_#_#_#_#_)\":false},[\"border:none\"]],[false,{\".tekteams-tabel\":false},[\"background:none\"]],[false,{\".tekteams-tabel .heading-box label\":false},[\"color:#7080a7\"]],[true,\"@media (max-width: 1760px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:14px\",\"padding:0px 14px\"]],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:80px\"]],[true,{\".dropdown-menu\":true},[\"top:77px\"]],[false,{\".cp-tek-teams-isk:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:80px\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:50px\",\"width:75%\",\"margin-right:auto\",\"margin-left:auto\"]],[false,{\".demand-sec\":false},[\"padding:150px 0px 110px 0px\"]],[false,{\".ecosystem-sec\":false},[\"padding:150px 0px\"]],[false,{\".partner-sec .bg-img\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\"]],[false,{\".partner-sec\":false},[\"padding:240px 0px 240px 0px\"]],[false,{\".partner-sec .container-md\":false},[\"margin-top:0\"]],[false,{\".solution-sec\":false},[\"padding:160px 0px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:50px\"]],[false,{\".tek-teams-heading h3\":false},[\"margin-bottom:30px\"]],[false,{\".about-tek-wrapper .about-tek-team .c-col p\":false},[\"margin-bottom:5px\",\"line-height:1.5em\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"margin-bottom:30px\"]],[false,{\".development-team-sec .development-team-content .btn-blue\":false},[\"padding:16px 0px\",\"width:261px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:20px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:120px 0px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:79px\"]],[true,\"}\"],[true,\"@media (max-width: 1680px){\"],[false,{\".tekteams-tabel\":false},[\"padding:25px 0px 60px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"padding:0px 11px\"]],[true,{\".new-header__button a\":true},[\"font-size:16px\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:45px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:45px\"]],[false,{\".demand-sec\":false},[\"padding:100px 0px 60px 0px\"]],[false,{\".ecosystem-sec\":false},[\"padding:100px 0px 130px 0px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 200px 0px\"]],[false,{\".partner-sec .heading-box\":false},[\"padding-bottom:50px\"]],[false,{\".solution-sec\":false},[\"padding:130px 0px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:100px 0px\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:18px\"]],[false,{\".journey-roadmap\":false},[\"margin-top:-98px\"]],[false,{\".infrastructure-sec .heading-box h2\":false,\".cost-effective-sec .heading-box h2\":false},[\"font-size:50px\"]],[true,\"}\"],[true,\"@media (max-width: 1560px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\",\"padding:0px 9px\"]],[true,{\".new-header__button a\":true},[\"font-size:14px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 160px 0px\"]],[false,{\".solution-sec\":false},[\"padding:120px 0px\"]],[false,{\".journey-roadmap\":false},[\"margin-top:-200px\"]],[false,{\".kubernetes-sec\":false},[\"margin-top:-100px\"]],[true,\"}\"],[true,\"@media (max-width:1366px){\"],[false,{\".btn-blue\":false},[\"font-size:18px\"]],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:77px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:72px\"]],[false,{\".cp-tek-teams-isk:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:77px\"]],[true,{\".dropdown-menu\":true},[\"top:75px\"]],[false,{\".cp-cloud-native-isk h2\":false,\".cp-tek-teams-isk h2\":false},[\"font-size:40px\"]],[false,{\".heading-box h2\":false},[\"font-size:32px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 140px 0px\"]],[false,{\".solution-sec\":false},[\"padding:110px 0px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:80px 0px\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:16px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:140px\"]],[false,{\".keeping-future ul\":false},[\"font-size:18px\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:40px\"]],[false,{\".choose-option ul li:last-child\":false},[\"margin-left:0px\"]],[false,{\".choose-option ul li\":false},[\"padding:15px 20px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 70px 119px\"]],[false,{\".contact-form-info-right ul li\":false},[\"padding:25px 0px 25px\"]],[true,\"}\"],[true,\"@media (max-width:1280px){\"],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:60px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:60px\"]],[false,{\".cp-tek-teams-isk:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:59px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:60px\"]],[true,{\".dropdown-menu\":true},[\"top:57px\"]],[false,{\".heading-box h2\":false},[\"font-size:28px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 120px 0px\"]],[false,{\".choose-option\":false},[\"padding-left:40px\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:60px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:35px\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:14px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:120px\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:33px\"]],[false,{\".keeping-future ul\":false},[\"font-size:16px\"]],[false,{\".contact-form-info-right ul\":false},[\"margin-bottom:70px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 50px 119px\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"object-position:-256px 0px\"]],[true,\"}\"],[false,\"@media (max-width:1200px){\"],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:25px\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:45px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 30px 119px\"]],[false,\"}\"],[false,\"@media (max-width:1190px){\"],[false,{\".btn-blue\":false},[\"font-size:16px\"]],[false,\"}\"],[true,\"@media (max-width:1170px){\"],[true,{\".new-header__logo\":true},[\"min-width:200px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\",\"padding:0px 6px\"]],[false,{\".choose-option ul li\":false},[\"font-size:17px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:18px\"]],[true,\"}\"],[true,\"@media (max-width:1100px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:10px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 100px 0px\"]],[true,\"}\"],[true,\"@media (max-width:1028px){\"],[true,{\".new-header__logo\":true},[\"min-width:150px\"]],[true,\"}\"],[false,\"@media (max-width:1024px){\"],[false,{\".contact-form-left\":false},[\"width:53%\",\"padding:58px 0px 75px\"]],[false,{\".contact-form-info-right\":false},[\"width:44%\",\"padding:50px 18px 76px\"]],[false,{\".choose-option ul\":false},[\"flex-wrap:nowrap\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"object-position:75% 0px\"]],[false,\"}\"],[true,\"@media (max-width:992px){\"],[false,{\".btn-blue\":false},[\"font-size:18px\"]],[true,{\".new-header__button\":true},[\"width:20%\",\"justify-content:center\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"width:100%\"]],[false,{\".solution-sec\":false},[\"padding:90px 0px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:30px\"]],[false,{\".cp-cloud-native-isk .btn\":false},[\"width:unset\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:230px\"]],[true,{\".closeicon\":true},[\"width:14px\",\"display:none\",\"position:relative\",\"right:17px\",\"top:6px\"]],[true,{\".navbar-toggler .closeicon\":true},[\"display:block\"]],[true,{\".navbar-toggler amp-img:nth-child(1)\":true,\".navbar-toggler amp-anim:nth-child(1)\":false},[\"display:none\"]],[true,{\".navbar-toggler.collapsed .closeicon\":true},[\"display:none\"]],[true,{\".navbar-toggler.collapsed amp-img:nth-child(1)\":true,\".navbar-toggler.collapsed amp-anim:nth-child(1)\":false},[\"display:block\"]],[false,{\".text-grey-box p\":false},[\"padding-right:0px\"]],[true,\"}\"],[false,\"@media (max-width:980px){\"],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"padding:0px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:0\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:20px\"]],[false,{\".btm-icon-line\":false},[\"width:55%\",\"margin:0px auto\"]],[false,{\".custom-contact-wrapper\":false},[\"padding:85px 0px 100px\"]],[false,{\".contact-form-info-right ul li:last-child a\":false},[\"word-break:break-word\"]],[false,\"}\"],[false,\"@media (max-width: 769px){\"],[false,{\".contact-form-info-right ul li a\":false},[\"word-break:break-word\"]],[false,{\".contact-form-info-right ul li:first-of-type a\":false},[\"font-size:25px\"]],[false,{\".contact-form-info-right ul .phone:before\":false},[\"width:30px\",\"height:30px\"]],[false,{\".contact-form-info-right ul .address:before\":false},[\"background-size:100%\",\"width:30px\",\"height:30px\"]],[false,{\".contact-form-info-right ul li:nth-of-type(2) span\":false},[\"padding-left:43px\"]],[false,{\".contact-form-info-right ul li a\":false},[\"padding-left:10px\"]],[false,{\".btm-icon-line:after\":false,\".btm-icon-line::before\":false},[\"width:95px\"]],[false,{\".contact-form-info-right ul\":false},[\"margin-bottom:30px\"]],[false,{\".choose-option ul\":false},[\"margin-bottom:0px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 18px 50px\"]],[false,{\".contact-form-info-right h3\":false},[\"margin-bottom:0px\"]],[false,{\".btm-icon-line\":false},[\"width:100%\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea\":false},[\"height:100px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:27px\"]],[false,{\".contact-form-left\":false},[\"padding:58px 0px 30px\"]],[false,{\".choose-option ul li\":false},[\"font-size:17px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:18px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".col-row ul li:nth-child(1)\":false,\".col-row ul li:nth-child(4)\":false,\".col-row ul li\":false},[\"width:50%\"]],[false,{\".custom-contact-wrapper .container-md\":false},[\"padding:0px\",\"width:100%\"]],[false,{\".contact-wrapper-banner .inner-hero-text\":false},[\"top:45%\"]],[false,{\".contact-wrapper-banner .inner-hero-text h2\":false},[\"text-align:center\"]],[false,{\".custom-contact-wrapper\":false},[\"padding:0px\",\"margin-top:-1px\",\"border-radius:0px\"]],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"border-radius:0px\",\"padding:0px\"]],[false,{\".contact-form-info-right\":false},[\"border-radius:0px\",\"padding:40px 24px 0px\",\"width:100%\"]],[false,{\".contact-wrapper-banner\":false},[\"z-index:3\"]],[false,{\".contact-form-info-right h3\":false},[\"display:none\"]],[false,{\".contact-form-info-right ul li:first-of-type\":false},[\"font-size:30px\"]],[false,{\".contact-form-info-right ul li\":false},[\"padding:20px 0px 20px 0px\"]],[false,{\".contact-form-info-right ul li:first-of-type a\":false},[\"font-size:30px\"]],[false,{\".btm-icon-line\":false},[\"display:none\"]],[false,{\".contact-form-info-right ul\":false},[\"margin-bottom:60px\"]],[false,{\".choose-option ul\":false},[\"flex-wrap:nowrap\",\"margin-bottom:0\"]],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"background-color:transparent\",\"flex-direction:column-reverse\"]],[false,{\".choose-option\":false},[\"padding-left:0\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:0px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:0\"]],[false,{\".contact-form-left\":false},[\"padding:45px 24px 0px 24px\",\"background:#fff\",\"width:86%\",\"margin:85px auto 120px auto\",\"border-radius:0px 26px 26px 26px\",\"box-shadow:0px 20px 32px 0px rgba(0,0,0,.2)\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .col-md-4\":false},[\"max-width:100%\",\"margin-bottom:15px\",\"flex:0 0 100%\"]],[false,{\".form-group .form-control\":false},[\"padding:0px 0px 5px\"]],[false,{\".form-group label\":false},[\"font-size:14px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea\":false},[\"margin-bottom:32px\",\"margin-top:0px\",\"height:90px\"]],[false,{\".form-group::placeholder\":false},[\"font-size:16px\"]],[false,{\".form-control::-webkit-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:13px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".form-control::-ms-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:13px\",\"font-weight:normal\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".form-control::placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:13px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control\":false},[\"font-size:13px\",\"padding:0px 0px 5px\"]],[false,{\".choose-option ul li\":false},[\"font-size:15px\",\"padding:14px 8px\",\"color:#152649\"]],[false,{\".choose-option ul li.tab.active a\":false},[\"font-weight:bold\",\"color:#152649\"]],[false,{\".choose-option ul li:last-child\":false},[\"padding:15px 20px\",\"line-height:1\"]],[false,{\".choose-option ul li:nth-child(2)\":false},[\"font-weight:bold\",\"margin-right:0px\",\"margin-left:0px\"]],[false,{\".contact-wrapper-banner .inner-hero-text p\":false},[\"display:none\"]],[false,{\".contact-wrapper-banner:before\":false},[\"width:20px\",\"height:20px\",\"bottom:-7px\",\"left:7%\",\"background-color:#101f42\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .calendly-inline-widget:not(#_#_#_#_#_#_#_)\":false},[\"min-width:100%\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"object-position:82% 0px\"]],[false,\"}\"],[true,\"@media (max-width: 767px){\"],[false,{\".tekteams-tabel .heading-box label\":false},[\"margin-left:0px\"]],[false,{\".tekteams-tabel .table-wrapper td.always\":false},[\"color:#28d9cb\"]],[false,{\".tekteams-tabel .table-wrapper td:last-of-type\":false},[\"color:#24c1ff\",\"font-weight:700\"]],[false,{\".tekteams-tabel .table-wrapper tr\":false},[\"display:block\",\"border-top:1px solid #c9c9c9\",\"padding:15px 0\"]],[false,{\"section.demand-sec .inner .slick-track\":false},[\"display:unset\"]],[false,{\".demand-sec .inner .colm:not(#_#_#_#_#_#_#_)\":false},[\"margin:25px 10px 25px 0\",\"padding:0\"]],[false,{\".future-vision-sec .custom-img\":false},[\"width:90%\",\"margin:auto\"]],[true,{\".footer-2022__certificates\":true},[\"margin-top:30px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:70px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\"]],[false,{\".heading-box h2\":false},[\"font-size:24px\"]],[false,{\".demand-sec .heading-box\":false},[\"padding-bottom:20px\"]],[false,{\".ecosystem-sec .inner\":false},[\"padding-bottom:0\"]],[false,{\".ecosystem-sec\":false},[\"padding:100px 0px 100px 0px\"]],[false,{\".solution-sec\":false},[\"padding:70px 0px\"]],[false,{\".tek-teams-heading h3\":false},[\"margin-bottom:15px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:15px\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"display:block\",\"flex-direction:unset\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding:25px 10px 25px 0px\",\"margin:0\"]],[false,{\".custom-grid-sec .inner .slick-list\":false},[\"padding-bottom:25px\"]],[true,{\"header .new-header__menu-item\":true},[\"top:60px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link\":true},[\"line-height:normal\",\"font-weight:600\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:16px\",\"color:#152649\"]],[true,{\"header .new-header__nav--list li\":true},[\"margin-bottom:30px\",\"margin-left:18px\"]],[true,{\"header .new-header__nav--list\":true},[\"margin-top:46px\"]],[true,{\"header .new-header__nav--list li:nth-last-child(1)\":true},[\"margin-bottom:0\"]],[true,{\"header .dropdown-menu\":true},[\"top:0px\"]],[true,{\"header .new-header__nav--menu--title\":true},[\"font-size:14px\"]],[true,{\"header .new-header__nav--title h5\":true},[\"font-size:20px\"]],[true,{\"header .new-header__nav--list>.show\":true},[\"padding-top:10px\"]],[false,{\".c-application-development .review_sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:20px\"]],[true,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".reliability-engineers\":false},[\"margin-top:126px\"]],[false,{\".development-team-sec .development-team-content .btn-blue\":false},[\"margin:0px\",\"padding:16px 0px\",\"width:185px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:150px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,\"}\"],[false,\"@media (max-width:575px){\"],[false,{\".infrastructure-sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-309px\"]],[false,{\".col-row ul li\":false,\".col-row ul li:nth-child(1)\":false,\".col-row ul li:nth-child(4)\":false},[\"width:100%\",\"padding-left:25px\"]],[false,{\".col-row ul li::after\":false},[\"width:19px\",\"height:19px\",\"background-size:100%\"]],[false,{\".kubernetes-sec .container-md\":false},[\"padding:0px 0px\"]],[false,{\".kubernetes-sec .custom-txt\":false},[\"padding:0px 24px\"]],[false,{\".devops-services .applications-col h5::before\":false},[\"width:25px\",\"height:25px\",\"background-size:100%\"]],[false,{\".infrastructure-sec .heading-box:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0px\"]],[false,\"}\"],[true,\"@media (max-width:480px){\"],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"margin:0px 0 0px 0px\",\"padding-bottom:0px\"]],[true,{\".footer-2022__certificates\":true},[\"margin-top:0\",\"margin-bottom:20px\"]],[true,{\".footer-2022__box-end a\":true},[\"font-size:14px\"]],[true,{\".footer-2022__box-end a:nth-last-child(1)\":true},[\"margin-right:0\"]],[true,{\".row.footer-2022__mobile-items\":true},[\"padding-right:0\"]],[true,{\".footer-2022__copyright\":true},[\"font-size:14px\"]],[false,{\".future-vision-sec .custom-img\":false},[\"max-width:360px\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:32px\"]],[false,{\".demand-sec\":false},[\"padding:60px 0px 40px 0px\"]],[false,{\".ecosystem-sec\":false},[\"padding:60px 0px 35px 0px\"]],[false,{\".ecosystem-sec .heading-box figure\":false},[\"top:0\",\"right:0\"]],[false,{\".ecosystem-sec .heading-box figure amp-img\":false,\".ecosystem-sec .heading-box figure amp-anim\":false},[\"width:100%\",\"height:100%\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 80px 0px\"]],[false,{\".partner-sec .colm h6\":false},[\"min-height:unset\"]],[false,{\".partner-sec .heading-box\":false},[\"padding-bottom:40px\"]],[false,{\".solution-sec\":false},[\"padding:60px 0px\"]],[false,{\".cp-tek-teams-isk h2\":false,\".tek-teams-heading h3\":false},[\"font-size:26px\"]],[false,{\".c-app-banner h2\":false},[\"font-size:32px\"]],[false,{\".c-app-banner p\":false},[\"font-size:16px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:60px 0px\"]],[true,{\".footer-2022__social-media\":true},[\"margin-top:60px\"]],[true,{\".footer-2022__social-media a\":true},[\"margin:0px 30px 0px 0px\"]],[true,{\".footer-2022__social-media a:nth-last-child(1)\":true},[\"margin-right:0\"]],[true,\"}\"],[false,\"@media (max-width:420px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:100%\",\"margin:auto\"]],[false,{\".ecosystem-sec .heading-box figure\":false},[\"margin-bottom:0\",\"top:30px\",\"width:70px\",\"height:70px\"]],[false,{\".ecosystem-sec .heading-box h2\":false},[\"width:calc(100% - 70px)\"]],[false,\"}\"],[true,{\"body .devops-styles:not(#_#_#_#_#_#_#_#_)\":true},[\"margin-top:75px\"]],[true,\"@media (max-width:1200px){\"],[true,{\"body .devops-styles:not(#_#_#_#_#_#_#_#_)\":true},[\"margin-top:55px\"]],[false,{\".contact-wrapper-banner:before\":false},[\"left:7%\"]],[true,\"}\"],[false,\"@media (min-width:1350px) and (max-height:1135px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-bottom:25px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(36%)\"]],[false,{\".ecosystem-sec .colm:last-of-type figure\":false},[\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"max-width:200px\",\"display:block\",\"margin:auto\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:47%\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:1035px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"transform:translateY(-50%)\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(32%)\"]],[false,{\".ecosystem-sec .colm\":false},[\"padding:15px 30px 15px 30px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"margin-bottom:15px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"padding-right:30px\",\"font-size:20px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(38%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:48%\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:898px){\"],[false,{\".ecosystem-sec .colm p\":false},[\"font-size:14px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(38%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:49%\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:16px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:15px\"]],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:18px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"width:60px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:25px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"width:130px\"]],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"width:170px\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:770px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(26%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:48%\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:14px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:15px\"]],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:16px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"width:60px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:25px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"width:120px\"]],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"width:140px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false,\".ecosystem-sec .colm\":false},[\"margin-bottom:20px\",\"padding:15px 20px\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,{\".ecosystem-sec .colm p\":false},[\"font-size:12px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"padding-bottom:25px\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:700px){\"],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"width:110px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"transform:translateY(-41%)\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(25%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:49%\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"margin-bottom:10px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:10px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false,\".ecosystem-sec .colm\":false},[\"margin-bottom:20px\",\"padding:10px 20px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"padding-top:0\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":6539,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/kubernetes.css?v=1590645814\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"00ad41532091732506b79ad4852bdcbd\",\"parse_time\":0.04002809524536133,\"shake_time\":8.487701416015625e-5,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\"#gtx-trans\":false},[\"display:none\"]],[false,{\".kubernetes__banner__dark\":false},[\"background-color:#152649\",\"padding:85px 0px\"]],[false,{\".kubernetes__banner__light\":false},[\"background-color:#fff\",\"padding:120px 0px\"]],[false,{\".kubernetes__banner__grey\":false},[\"background-color:#f1f1f1\",\"padding:120px 0px\"]],[false,{\".kubernetes__banner__bottom\":false},[\"background-color:#fff\",\"padding:65px 0px\",\"box-shadow:inset 0px 11px 8px -10px rgba(0,0,0,.1),inset 0px -11px 8px -10px rgba(0,0,0,.1)\"]],[false,{\".text__light__blue\":false},[\"color:#28d9cb\"]],[false,{\".text__blue\":false},[\"color:#00c3fc\"]],[false,{\".kubernetes__section--1 .subtitle\":false},[\"font-family:Roboto\",\"font-size:16px\",\"text-transform:uppercase\",\"letter-spacing:1.6px\"]],[false,{\".kubernetes__section--1 .titlePage\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:60px\"]],[false,{\".kubernetes .redirect__page\":false},[\"color:#7080a7\",\"align-items:center\"]],[false,{\".redirect__page > h6\":false},[\"font-family:Roboto\",\"font-size:18px\",\"margin-left:10px\",\"margin-bottom:0px\",\"color:#7080a7\"]],[false,{\".iconSmall\":false},[\"width:2px\",\"height:5px\",\"margin-right:10px\"]],[false,{\".iconMedium\":false},[\"width:15px\",\"height:13px\",\"margin-right:10px\"]],[false,{\".imgIcon\":false},[\"width:24px\",\"height:24px\",\"margin-right:10px\"]],[false,{\".kubernetes .wrap__kcsp .nav__services .service__name h6\":false},[\"color:#152649\",\"margin:0\",\"font-weight:bold\",\"font-family:Raleway\"]],[false,{\".kubernetes .titleSection\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".kubernetes .titleSection__footer\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".kubernetes .section_one_content\":false,\".kubernetes .section_three_content\":false,\".kubernetes .section_four_content\":false,\".kubernetes .section_five_content\":false},[\"font-size:20px\",\"line-height:32px\"]],[false,{\".kubernetes .nav__services\":false},[\"box-shadow:rgba(0,0,0,.45) 0px 25px 20px -20px\",\"border-radius:24px\",\"background-color:#f5f5f5\",\"border:1px solid #f5f5f5\",\"padding:26.5px 35.5px\",\"margin-top:40px\"]],[false,{\".kubernetes .nav__services h6\":false},[\"margin:0\"]],[false,{\".kubernetes .nav__services .service__name\":false},[\"font-family:Raleway\",\"font-size:16px\",\"font-weight:bold\",\"color:#152649\"]],[false,{\".kubernetes .nav__services .service__name .section_five_icon_text\":false},[\"font-size:14px\",\"line-height:32px\"]],[false,{\".service__name picture\":false,\".service__name source\":false,\".service__name div > amp-img\":false,\".service__name div > amp-anim\":false},[\"display:flex\",\"width:35px\"]],[false,{\".service__name div\":false},[\"display:flex\",\"justify-content:flex-start\",\"align-items:center\"]],[false,{\".service__name div h6\":false},[\"font-weight:bold\",\"font-size:18px\",\"font-family:Raleway\",\"margin:0\"]],[false,{\".kubernetes .btn__consultation\":false},[\"background-color:#00c3fc\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\"]],[false,{\".kubernetes .btn__consultation__light__blue\":false},[\"background-color:#28d9cb\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\"]],[false,{\".kubernetes .btn__linear\":false},[\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:40px\"]],[false,{\".kubernetes .wrap__Services .service__name\":false},[\"font-family:Raleway\",\"font-size:18px\",\"font-weight:bold\",\"color:#152649\",\"line-height:32px\"]],[false,{\".service__list\":false},[\"align-items:center\",\"border-bottom:1px solid #e1e1e1\",\"max-height:70px\"]],[false,{\".kubernetes .wrap__Services .service__list:last-child .service__name\":false},[\"border-bottom:none\"]],[false,{\".kubernetes .owl-carousel .owl-item .service__name\":false},[\"font-family:Raleway\",\"font-size:18px\",\"font-weight:bold\",\"color:#152649\",\"line-height:32px\"]],[false,{\".service__name i\":false},[\"color:#26c1ff\",\"font-size:15px\",\"margin-right:3px\"]],[false,{\".kubernetes .owl-carousel .owl-item .imgIcon\":false},[\"width:24px\",\"height:24px\",\"margin-right:10px\"]],[false,{\".kubernetes .owl-theme .owl-nav\":false},[\"display:none\"]],[false,{\".kubernetes .owl-theme .owl-dots .owl-dot span\":false},[\"width:4px\",\"height:4px\",\"background-color:#d6d6d6\"]],[false,{\".kubernetes .owl-theme .owl-dots .owl-dot.active span\":false},[\"width:24px\",\"height:4px\",\"border-radius:2px\",\"background-color:#28d9cb\"]],[false,{\".kubernetes .text\":false},[\"font-family:Raleway\",\"font-size:20px\",\"font-weight:bold\",\"color:#152649\",\"line-height:32px\"]],[false,{\".absolute__button\":false},[\"position:absolute\",\"bottom:-35px\",\"left:calc(( 100vw - 246px ) \\/ 2)\"]],[false,\"@media screen and (min-width: 1440px){\"],[false,{\".containerWidth\":false},[\"max-width:1210px\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media screen and (max-width: 991px){\"],[false,{\".kubernetes__banner__grey\":false},[\"padding:80px 0px\"]],[false,{\".kubernetes__banner__light\":false},[\"padding:50px 0px 80px 0px\"]],[false,{\".kubernetes__banner__bottom\":false},[\"padding:35px 0px\"]],[false,{\".kubernetes__section--1 .titlePage\":false},[\"font-size:32px\",\"line-height:34px\"]],[false,{\".kubernetes__section--1 .subtitle\":false},[\"font-size:12px\",\"letter-spacing:1.2px\"]],[false,{\".kubernetes .redirect__page h6\":false},[\"font-size:14px\",\"line-height:17px\",\"letter-spacing:1.4px\"]],[false,{\".kubernetes .section_one_content\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".kubernetes .wrap__kcsp .nav__services .service__name h6\":false},[\"font-size:14px\",\"line-height:16px\"]],[false,{\".kubernetes .owl-carousel .item .service__name .section_two_title\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".kubernetes .section_one_content\":false,\".kubernetes .section_three_content\":false,\".kubernetes .section_four_content\":false,\".kubernetes .section_five_content\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".kubernetes .text\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".owl-carousel .service__name:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom:1px solid #e1e1e1\"]],[false,{\".kubernetes .titleSection__footer\":false},[\"font-size:20px\",\"line-height:24px\",\"padding:0px 58px\"]],[false,{\".kubernetes .btn__linear\":false},[\"font-size:20px\",\"padding:15px 28px\"]],[false,{\".absolute__button\":false},[\"position:absolute\",\"bottom:-25px\",\"left:calc(( 100vw - 150px ) \\/ 2)\"]],[false,\"}\"],[false,\"@media screen and (max-width: 1439px){\"],[false,{\".containerWidth\":false},[\"max-width:calc(100vw * .87692307692)\",\"margin:0px auto\"]],[false,{\".kubernetes .titleSection\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":9248,\"final_size\":139,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/marchine.css?v=2064148582\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"176294cfc3e123d8b5077b360bfaced0\",\"parse_time\":0.11030793190002441,\"shake_time\":0.00014090538024902344,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"*\":true},[\"font-family:Raleway\"]],[true,{\":root\":true},[\"--btn_color:#0e2748\",\"--main_color:#0e2748\"]],[true,{\"a:hover\":true},[\"color:var(--main_color)\"]],[false,{\".btn-consultation\":false},[\"background-color:#00c3fc\",\"border-radius:30px\",\"padding:25px 50px\",\"color:var(--btn_color)\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\",\"z-index:3\",\"white-space:nowrap\"]],[true,{\"h1\":true,\"h2\":true,\"h3\":true,\"h4\":true,\"h5\":true,\"h6\":true},[\"font-family:Raleway\"]],[false,{\".machine_banner h1\":false},[\"font-size:60px\",\"font-weight:bold\",\"text-align:left\",\"line-height:60px\"]],[false,{\".machine_banner p\":false},[\"color:#28d9cb\",\"margin-bottom:24px\",\"font-family:Roboto\",\"font-size:16px\",\"line-height:22px\",\"text-align:left\"]],[false,{\".service_machine_new\":false},[\"background-color:#fff\"]],[false,{\".machine_future\":false},[\"margin-top:100px\"]],[false,{\".text-strong\":false},[\"font-size:50px\",\"font-weight:bold\",\"white-space:nowrap\"]],[false,{\".text-strong\":false},[\"color:#24c1ff\"]],[false,{\".machine_future h2\":false},[\"line-height:50px\"]],[false,{\".machine_future h2\":false,\".machine_future amp-img\":false,\".machine_future amp-anim\":false},[\"margin:40px 0px\",\"font-family:Raleway\",\"font-size:50px\"]],[false,{\".machine_future amp-img\":false,\".machine_future amp-anim\":false},[\"background-size:cover\"]],[false,{\".machine_future i\":false},[\"color:rgba(112,128,167,1)\",\"font-size:16px\",\"margin-right:10px\"]],[false,{\".machine_future h6\":false},[\"color:#7080a7\",\"margin-bottom:0\",\"font-family:Roboto\",\"font-size:18px\"]],[false,{\".machine_text\":false},[\"color:#707070\",\"width:90%\",\"font-size:20px\",\"line-height:32px\",\"margin-bottom:80px\"]],[false,{\".about-service\":false},[\"padding-bottom:120px\"]],[false,{\".about-service .slider-about\":false},[\"padding:0\"]],[false,{\".slider-about > div\":false},[\"height:100%\"]],[false,{\".service-machine-selection\":false},[\"display:flex\",\"justify-content:space-around\",\"background-color:#f1f1f1\",\"padding:15px 15px\",\"margin:0px\",\"border-radius:40px\"]],[false,{\".service-machine-selection > a\":false},[\"border-radius:40px\",\"padding:10px\",\"width:100%\",\"flex:1\",\"text-align:center\",\"color:#707070\",\"font-weight:bold\",\"font-size:20px\"]],[false,{\".slider-about_problems\":false,\".slider-about_solutions\":false},[\"padding:0px 50px\"]],[false,{\".slider-about_problems h3\":false},[\"font-weight:bold\",\"font-size:32px\",\"text-align:left\",\"line-height:40px\"]],[false,{\".slider-about_problems h4\":false},[\"font-size:20px\",\"color:#434343\",\"font-family:Raleway\",\"font-weight:bold\",\"line-height:32px\",\"text-align:left\"]],[false,{\".slider-about_problems p\":false},[\"font-size:18px\",\"line-height:30px\",\"line-height:40px\",\"text-align:left\"]],[false,{\".item-carousel-1:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[false,{\".item-carousel-1 amp-img\":false,\".item-carousel-1 amp-anim\":false},[\"vertical-align:top\",\"margin:0\"]],[false,{\".slider-about_problems > div:last-child\":false},[\"font-size:32px\",\"display:flex\",\"justify-content:center\",\"color:#152649\",\"font-weight:bold\"]],[false,{\".first_solution > div\":false,\".second_solution > div\":false,\".last_solution > div\":false},[\"margin-bottom:50px\"]],[false,{\".slider-about_solutions h3\":false},[\"font-weight:bold\",\"font-size:32px\",\"text-align:left\",\"line-height:40px\"]],[false,{\".slider-about_solutions amp-img\":false,\".slider-about_solutions amp-anim\":false},[\"margin:0px\",\"margin-top:5px\",\"min-width:24px\",\"height:24px\"]],[false,{\".first_solution p:first-child\":false},[\"font-weight:bold\",\"font-size:20px\",\"line-height:32px\",\"color:#434343\",\"margin-bottom:50px\"]],[false,{\".first_solution p\":false,\".second_solution p\":false,\".last_solution p\":false},[\"color:#152649\",\"font-size:1.125rem\",\"line-height:30px\",\"text-align:left\"]],[false,{\".slider-about-text-strong\":false},[\"color:#28d9cb\"]],[false,{\".difference_slice\":false},[\"padding:0px 50px\"]],[false,{\".difference_slice div:first-child\":false},[\"align-items:center\"]],[false,{\".difference_slice div:first-child h3\":false},[\"text-align:left\",\"color:#152649\",\"font-size:32px\",\"font-weight:bold\",\"line-height:40px\"]],[false,{\".difference_slice div:last-child p\":false},[\"text-align:left\",\"color:#434343\",\"font-size:18px\",\"line-height:30px\"]],[false,{\".trusted-relationships\":false},[\"background-color:#f1f1f1\",\"padding-bottom:200px\"]],[false,{\".trusted-relationships h2\":false},[\"margin-top:156px\",\"margin-bottom:80px\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".btn-relationship\":false},[\"position:absolute\",\"margin:0\",\"margin-top:-35px\",\"background-color:#00c3fc\",\"border-radius:30px\",\"padding:25px 38px\",\"color:var(--main_color)\",\"width:auto\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\",\"display:inline\",\"left:0\",\"z-index:1\"]],[false,{\".card\":false},[\"background-color:transparent\",\"border-color:transparent\"]],[false,{\".card:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:20px\"]],[false,{\".card h3\":false},[\"cursor:pointer\",\"font-size:18px\",\"font-weight:bold\"]],[false,{\".card amp-img\":false,\".card amp-anim\":false},[\"width:24px\",\"height:24px\",\"margin:0px\",\"margin-top:2px\"]],[false,{\".card i\":false},[\"color:#24c1ff\",\"font-size:medium\",\"margin-left:10px\",\"margin-top:5px\",\"display:none\"]],[false,{\"#enterprise_and_fastest_content\":false},[\"position:absolute\",\"width:100%\"]],[false,{\"#enterprise_and_fastest_content:not(#_#_#_#_#_#_#_)\":false},[\"top:-130px\"]],[false,{\"#enterprise_and_fastest_content div\":false},[\"min-height:150px\",\"border-radius:24px\",\"display:flex\",\"justify-content:center\",\"padding:48px\"]],[false,{\"#enterprise_and_fastest_content div:first-child\":false},[\"background-color:#152649\",\"color:#24c1ff\"]],[false,{\"#enterprise_and_fastest_content div:first-child p\":false},[\"color:#24c1ff\",\"text-align:center\",\"font-size:24px\",\"font-weight:bold\",\"line-height:36px\"]],[false,{\"#enterprise_and_fastest_content div:nth-child(2) h2\":false},[\"font-size:50px\",\"line-height:50px\"]],[false,{\"#enterprise_and_fastest_content div:last-child\":false},[\"background-color:#f5f5f5\",\"box-shadow:rgba(0,0,0,.45) 0px 25px 20px -20px\",\"display:flex\",\"flex-direction:column\",\"justify-content:flex-start\"]],[false,{\"#enterprise_and_fastest_content div:last-child p\":false},[\"font-style:italic\",\"color:#707070\",\"text-align:left\",\"font-size:20px\"]],[false,{\"#enterprise_and_fastest_content div:last-child p:last-child\":false},[\"margin:0\",\"font-weight:bold\",\"font-style:normal\"]],[false,{\"#enterprise_and_fastest_content div:last-child amp-img\":false,\"#enterprise_and_fastest_content div:last-child amp-anim\":false},[\"width:40px\",\"height:40px\",\"left:45px\",\"top:-20px\"]],[false,{\".business\":false},[\"box-shadow:inset 0px 11px 8px -10px rgba(0,0,0,.1),inset 0px -11px 8px -10px rgba(0,0,0,.1)\"]],[false,{\".business-content\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\",\"align-items:center\",\"padding:50px 0px\",\"position:relative\"]],[false,{\".business-content a\":false},[\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:40px\",\"float:right\"]],[false,{\".business-content h2\":false},[\"text-align:center\",\"margin-bottom:0\",\"font-family:Raleway\",\"font-weight:bold\",\"font-size:50px\",\"line-height:50px\"]],[false,\"@media screen and (max-width: 992px){\"],[false,{\".card i\":false},[\"display:block\"]],[false,{\".card > div:last-child\":false},[\"display:none\"]],[false,{\".card\":false},[\"border-top:1px solid rgba(138,138,138,.34)\",\"padding:30px 0px 15px 0px\",\"border-radius:0\"]],[false,{\".business a\":false},[\"position:absolute\",\"bottom:-40px\",\"left:0\",\"right:0\",\"margin-left:auto\",\"margin-right:auto\",\"text-align:center\",\"width:306px\"]],[false,{\".btn-relationship\":false},[\"left:50%\",\"transform:translate(-50%,0%)\",\"white-space:nowrap\"]],[false,{\".business-content\":false},[\"flex-direction:column\"]],[false,\"}\"],[false,{\".selected\":false},[\"background-color:white\",\"border:none\"]],[false,{\".selected:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--main_color)\"]],[false,{\"#container\":false},[\"position:relative\",\"overflow:hidden\",\"clear:left\",\"padding:50px 0px\"]],[false,{\".box\":false},[\"position:absolute\",\"top:0\",\"left:0\"]],[false,{\"#first\":false},[\"top:0px\",\"left:0px\",\"width:100%\",\"display:flex\"]],[false,{\"#second\":false},[\"top:0px\",\"width:100%\"]],[false,{\"#third\":false},[\"top:0px\",\"width:100%\"]],[false,{\"#slide\":false},[\"transition:transform .5s ease-in-out 0s\",\"-moz-transition:-moz-transform .5s ease-in-out 0s\",\"-webkit-transition:-webkit-transform .5s ease-in-out 0s\",\"min-height:50px\"]],[false,{\".move-to-second\":false},[\"transform:translateX(var(--tab_second))\",\"-moz-transform:translateX(var(--tab_second))\",\"-webkit-transform:translateX(var(--tab_second))\"]],[false,{\".move-to-third\":false},[\"transform:translateX(var(--tab_third))\",\"-moz-transform:translateX(var(--tab_third))\",\"-webkit-transform:translateX(var(--tab_third))\"]],[false,{\".move-to-first\":false},[\"transform:translateX(0px)\",\"-moz-transform:translateX(0px)\",\"-webkit-transform:translateX(0px)\"]],[false,{\".machine_future_title h2\":false,\".machine_future_title span\":false,\".machine_future_title p\":false},[\"font-size:50px\"]],[false,\"@media screen and (max-width: 540px){\"],[false,{\".machine_text\":false},[\"width:100%\"]],[false,{\".difference_slice\":false},[\"padding:0px 20px\"]],[false,{\".first_solution > div\":false,\".second_solution > div\":false,\".last_solution > div\":false},[\"margin-bottom:0\"]],[false,{\"#third\":false},[\"padding:20px\"]],[false,{\"#first\":false,\"#second\":false,\"#third\":false},[\"background-color:#f1f1f1\",\"border-radius:24px\",\"box-shadow:rgba(0,0,0,.45) 0px 25px 20px -20px\"]],[false,{\"#first:not(#_#_#_#_#_#_#_)\":false,\"#second:not(#_#_#_#_#_#_#_)\":false,\"#third:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".service-machine-selection > a\":false},[\"font-size:17px\"]],[false,{\"#container\":false},[\"padding-top:15px\"]],[false,{\".btn-consultation\":false},[\"padding:25px 25px\"]],[false,{\".machine_future_title h2\":false,\".machine_future_title span\":false,\".machine_future_title p\":false},[\"font-size:45px\"]],[false,\"}\"],[false,\"@media screen and (min-width: 1440px){\"],[false,{\".containerWidth\":false},[\"max-width:1232px\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media screen and (min-width: 1440px){\"],[false,{\".containerWidth\":false},[\"max-width:1220px\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media screen and (max-width: 1439px){\"],[false,{\".containerWidth\":false},[\"max-width:calc(100vw * .87692307692)\",\"margin:0px auto\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1776,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"type\":\"text\\/css\",\"href\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/slick-carousel@1.8.1\\/slick\\/slick.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"503d87b8e892b897f5d05df814fbc0c4\",\"parse_time\":0.008713960647583008,\"shake_time\":2.6941299438476562e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".slick-slider\":false},[\"position:relative\",\"display:block\",\"box-sizing:border-box\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\",\"-webkit-touch-callout:none\",\"-khtml-user-select:none\",\"-ms-touch-action:pan-y\",\"touch-action:pan-y\",\"-webkit-tap-highlight-color:transparent\"]],[false,{\".slick-list\":false},[\"position:relative\",\"display:block\",\"overflow:hidden\",\"margin:0\",\"padding:0\"]],[false,{\".slick-list:focus\":false},[\"outline:none\"]],[false,{\".slick-list.dragging\":false},[\"cursor:pointer\",\"cursor:hand\"]],[false,{\".slick-slider .slick-track\":false,\".slick-slider .slick-list\":false},[\"-webkit-transform:translate3d(0,0,0)\",\"-moz-transform:translate3d(0,0,0)\",\"-ms-transform:translate3d(0,0,0)\",\"-o-transform:translate3d(0,0,0)\",\"transform:translate3d(0,0,0)\"]],[false,{\".slick-track\":false},[\"position:relative\",\"top:0\",\"left:0\",\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".slick-track:before\":false,\".slick-track:after\":false},[\"display:table\",\"content:\\\"\\\"\"]],[false,{\".slick-track:after\":false},[\"clear:both\"]],[false,{\".slick-loading .slick-track\":false},[\"visibility:hidden\"]],[false,{\".slick-slide\":false},[\"display:none\",\"float:left\",\"height:100%\",\"min-height:1px\"]],[false,{\"[dir=\'rtl\'] .slick-slide\":false},[\"float:right\"]],[false,{\".slick-slide amp-img\":false,\".slick-slide amp-anim\":false},[\"display:block\"]],[false,{\".slick-slide.slick-loading amp-img\":false,\".slick-slide.slick-loading amp-anim\":false},[\"display:none\"]],[false,{\".slick-slide.dragging amp-img\":false,\".slick-slide.dragging amp-anim\":false},[\"pointer-events:none\"]],[false,{\".slick-initialized .slick-slide\":false},[\"display:block\"]],[false,{\".slick-loading .slick-slide\":false},[\"visibility:hidden\"]],[false,{\".slick-vertical .slick-slide\":false},[\"display:block\",\"height:auto\",\"border:1px solid transparent\"]],[false,{\".slick-arrow.slick-hidden\":false},[\"display:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":100701,\"final_size\":8643,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/css\\/all.min.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"2b9f797b620fd0348167564267b11933\",\"parse_time\":2.5145909786224365,\"shake_time\":0.0024480819702148438,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-v4compatibility.woff2\"],\"shaken_tokens\":[[false,{\".fa\":false},[\"font-family:var(--fa-style-family,\\\"Font Awesome 6 Free\\\")\",\"font-weight:var(--fa-style,900)\"]],[true,{\".fa\":false,\".fa-brands\":false,\".fa-duotone\":false,\".fa-light\":false,\".fa-regular\":false,\".fa-solid\":false,\".fa-thin\":false,\".fab\":false,\".fad\":false,\".fal\":false,\".far\":false,\".fas\":true,\".fat\":false},[\"-moz-osx-font-smoothing:grayscale\",\"-webkit-font-smoothing:antialiased\",\"display:var(--fa-display,inline-block)\",\"font-style:normal\",\"font-variant:normal\",\"line-height:1\",\"text-rendering:auto\"]],[false,{\".fa-1x\":false},[\"font-size:1em\"]],[false,{\".fa-2x\":false},[\"font-size:2em\"]],[false,{\".fa-3x\":false},[\"font-size:3em\"]],[false,{\".fa-4x\":false},[\"font-size:4em\"]],[false,{\".fa-5x\":false},[\"font-size:5em\"]],[false,{\".fa-6x\":false},[\"font-size:6em\"]],[false,{\".fa-7x\":false},[\"font-size:7em\"]],[false,{\".fa-8x\":false},[\"font-size:8em\"]],[false,{\".fa-9x\":false},[\"font-size:9em\"]],[false,{\".fa-10x\":false},[\"font-size:10em\"]],[false,{\".fa-2xs\":false},[\"font-size:.625em\",\"line-height:.1em\",\"vertical-align:.225em\"]],[false,{\".fa-xs\":false},[\"font-size:.75em\",\"line-height:.08333em\",\"vertical-align:.125em\"]],[false,{\".fa-sm\":false},[\"font-size:.875em\",\"line-height:.07143em\",\"vertical-align:.05357em\"]],[false,{\".fa-lg\":false},[\"font-size:1.25em\",\"line-height:.05em\",\"vertical-align:-.075em\"]],[false,{\".fa-xl\":false},[\"font-size:1.5em\",\"line-height:.04167em\",\"vertical-align:-.125em\"]],[false,{\".fa-2xl\":false},[\"font-size:2em\",\"line-height:.03125em\",\"vertical-align:-.1875em\"]],[false,{\".fa-fw\":false},[\"text-align:center\",\"width:1.25em\"]],[false,{\".fa-ul\":false},[\"list-style-type:none\",\"margin-left:var(--fa-li-margin,2.5em)\",\"padding-left:0\"]],[false,{\".fa-ul>li\":false},[\"position:relative\"]],[false,{\".fa-li\":false},[\"left:calc(var(--fa-li-width,2em) * -1)\",\"position:absolute\",\"text-align:center\",\"width:var(--fa-li-width,2em)\",\"line-height:inherit\"]],[false,{\".fa-border\":false},[\"border-radius:var(--fa-border-radius,.1em)\",\"border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee)\",\"padding:var(--fa-border-padding,.2em .25em .15em)\"]],[false,{\".fa-pull-left\":false},[\"float:left\",\"margin-right:var(--fa-pull-margin,.3em)\"]],[false,{\".fa-pull-right\":false},[\"float:right\",\"margin-left:var(--fa-pull-margin,.3em)\"]],[false,{\".fa-beat\":false},[\"-webkit-animation-name:fa-beat\",\"animation-name:fa-beat\",\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out)\",\"animation-timing-function:var(--fa-animation-timing,ease-in-out)\"]],[false,{\".fa-bounce\":false},[\"-webkit-animation-name:fa-bounce\",\"animation-name:fa-bounce\",\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))\",\"animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))\"]],[false,{\".fa-fade\":false},[\"-webkit-animation-name:fa-fade\",\"animation-name:fa-fade\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\",\"animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\"]],[false,{\".fa-beat-fade\":false,\".fa-fade\":false},[\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\"]],[false,{\".fa-beat-fade\":false},[\"-webkit-animation-name:fa-beat-fade\",\"animation-name:fa-beat-fade\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\",\"animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\"]],[false,{\".fa-flip\":false},[\"-webkit-animation-name:fa-flip\",\"animation-name:fa-flip\",\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out)\",\"animation-timing-function:var(--fa-animation-timing,ease-in-out)\"]],[false,{\".fa-shake\":false},[\"-webkit-animation-name:fa-shake\",\"animation-name:fa-shake\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,linear)\",\"animation-timing-function:var(--fa-animation-timing,linear)\"]],[false,{\".fa-shake\":false,\".fa-spin\":false},[\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\"]],[false,{\".fa-spin\":false},[\"-webkit-animation-name:fa-spin\",\"animation-name:fa-spin\",\"-webkit-animation-duration:var(--fa-animation-duration,2s)\",\"animation-duration:var(--fa-animation-duration,2s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,linear)\",\"animation-timing-function:var(--fa-animation-timing,linear)\"]],[false,{\".fa-spin-reverse\":false},[\"--fa-animation-direction:reverse\"]],[false,{\".fa-pulse\":false,\".fa-spin-pulse\":false},[\"-webkit-animation-name:fa-spin\",\"animation-name:fa-spin\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,steps(8))\",\"animation-timing-function:var(--fa-animation-timing,steps(8))\"]],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".fa-beat\":false,\".fa-beat-fade\":false,\".fa-bounce\":false,\".fa-fade\":false,\".fa-flip\":false,\".fa-pulse\":false,\".fa-shake\":false,\".fa-spin\":false,\".fa-spin-pulse\":false},[\"-webkit-animation-delay:-1ms\",\"animation-delay:-1ms\",\"-webkit-animation-duration:1ms\",\"animation-duration:1ms\",\"-webkit-animation-iteration-count:1\",\"animation-iteration-count:1\",\"transition-delay:0s\",\"transition-duration:0s\"]],[false,\"}\"],[true,\"@-webkit-keyframes fa-beat{\"],[true,\"0%,90%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}\"],[true,\"}@keyframes fa-beat{\"],[true,\"0%,90%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}\"],[true,\"}@-webkit-keyframes fa-bounce{\"],[true,\"0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}\"],[true,\"30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}\"],[true,\"50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}\"],[true,\"57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}\"],[true,\"64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"}@keyframes fa-bounce{\"],[true,\"0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}\"],[true,\"30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}\"],[true,\"50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}\"],[true,\"57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}\"],[true,\"64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"}@-webkit-keyframes fa-fade{\"],[true,\"50%{opacity:var(--fa-fade-opacity,.4)}\"],[true,\"}@keyframes fa-fade{\"],[true,\"50%{opacity:var(--fa-fade-opacity,.4)}\"],[true,\"}@-webkit-keyframes fa-beat-fade{\"],[true,\"0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}\"],[true,\"}@keyframes fa-beat-fade{\"],[true,\"0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}\"],[true,\"}@-webkit-keyframes fa-flip{\"],[true,\"50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}\"],[true,\"}@keyframes fa-flip{\"],[true,\"50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}\"],[true,\"}@-webkit-keyframes fa-shake{\"],[true,\"0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}\"],[true,\"4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}\"],[true,\"12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}\"],[true,\"16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}\"],[true,\"20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}\"],[true,\"32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}\"],[true,\"36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}\"],[true,\"40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}@keyframes fa-shake{\"],[true,\"0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}\"],[true,\"4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}\"],[true,\"12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}\"],[true,\"16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}\"],[true,\"20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}\"],[true,\"32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}\"],[true,\"36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}\"],[true,\"40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}@-webkit-keyframes fa-spin{\"],[true,\"0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}\"],[true,\"}@keyframes fa-spin{\"],[true,\"0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}\"],[true,\"}\"],[false,{\".fa-rotate-90\":false},[\"-webkit-transform:rotate(90deg)\",\"transform:rotate(90deg)\"]],[false,{\".fa-rotate-180\":false},[\"-webkit-transform:rotate(180deg)\",\"transform:rotate(180deg)\"]],[false,{\".fa-rotate-270\":false},[\"-webkit-transform:rotate(270deg)\",\"transform:rotate(270deg)\"]],[false,{\".fa-flip-horizontal\":false},[\"-webkit-transform:scaleX(-1)\",\"transform:scaleX(-1)\"]],[false,{\".fa-flip-vertical\":false},[\"-webkit-transform:scaleY(-1)\",\"transform:scaleY(-1)\"]],[false,{\".fa-flip-both\":false,\".fa-flip-horizontal.fa-flip-vertical\":false},[\"-webkit-transform:scale(-1)\",\"transform:scale(-1)\"]],[false,{\".fa-rotate-by\":false},[\"-webkit-transform:rotate(var(--fa-rotate-angle,none))\",\"transform:rotate(var(--fa-rotate-angle,none))\"]],[false,{\".fa-stack\":false},[\"display:inline-block\",\"height:2em\",\"line-height:2em\",\"position:relative\",\"vertical-align:middle\",\"width:2.5em\"]],[false,{\".fa-stack-1x\":false,\".fa-stack-2x\":false},[\"left:0\",\"position:absolute\",\"text-align:center\",\"width:100%\",\"z-index:var(--fa-stack-z-index,auto)\"]],[false,{\".fa-stack-1x\":false},[\"line-height:inherit\"]],[false,{\".fa-stack-2x\":false},[\"font-size:2em\"]],[false,{\".fa-inverse\":false},[\"color:var(--fa-inverse,#fff)\"]],[false,{\".fa-0:before\":false},[\"content:\\\"0\\\"\"]],[false,{\".fa-1:before\":false},[\"content:\\\"1\\\"\"]],[false,{\".fa-2:before\":false},[\"content:\\\"2\\\"\"]],[false,{\".fa-3:before\":false},[\"content:\\\"3\\\"\"]],[false,{\".fa-4:before\":false},[\"content:\\\"4\\\"\"]],[false,{\".fa-5:before\":false},[\"content:\\\"5\\\"\"]],[false,{\".fa-6:before\":false},[\"content:\\\"6\\\"\"]],[false,{\".fa-7:before\":false},[\"content:\\\"7\\\"\"]],[false,{\".fa-8:before\":false},[\"content:\\\"8\\\"\"]],[false,{\".fa-9:before\":false},[\"content:\\\"9\\\"\"]],[false,{\".fa-a:before\":false},[\"content:\\\"A\\\"\"]],[false,{\".fa-address-book:before\":false,\".fa-contact-book:before\":false},[\"content:\\\"\\uf2b9\\\"\"]],[false,{\".fa-address-card:before\":false,\".fa-contact-card:before\":false,\".fa-vcard:before\":false},[\"content:\\\"\\uf2bb\\\"\"]],[false,{\".fa-align-center:before\":false},[\"content:\\\"\\uf037\\\"\"]],[false,{\".fa-align-justify:before\":false},[\"content:\\\"\\uf039\\\"\"]],[false,{\".fa-align-left:before\":false},[\"content:\\\"\\uf036\\\"\"]],[false,{\".fa-align-right:before\":false},[\"content:\\\"\\uf038\\\"\"]],[false,{\".fa-anchor:before\":false},[\"content:\\\"\\uf13d\\\"\"]],[false,{\".fa-anchor-circle-check:before\":false},[\"content:\\\"\\ue4aa\\\"\"]],[false,{\".fa-anchor-circle-exclamation:before\":false},[\"content:\\\"\\ue4ab\\\"\"]],[false,{\".fa-anchor-circle-xmark:before\":false},[\"content:\\\"\\ue4ac\\\"\"]],[false,{\".fa-anchor-lock:before\":false},[\"content:\\\"\\ue4ad\\\"\"]],[false,{\".fa-angle-down:before\":false},[\"content:\\\"\\uf107\\\"\"]],[false,{\".fa-angle-left:before\":false},[\"content:\\\"\\uf104\\\"\"]],[false,{\".fa-angle-right:before\":false},[\"content:\\\"\\uf105\\\"\"]],[false,{\".fa-angle-up:before\":false},[\"content:\\\"\\uf106\\\"\"]],[false,{\".fa-angle-double-down:before\":false,\".fa-angles-down:before\":false},[\"content:\\\"\\uf103\\\"\"]],[false,{\".fa-angle-double-left:before\":false,\".fa-angles-left:before\":false},[\"content:\\\"\\uf100\\\"\"]],[false,{\".fa-angle-double-right:before\":false,\".fa-angles-right:before\":false},[\"content:\\\"\\uf101\\\"\"]],[false,{\".fa-angle-double-up:before\":false,\".fa-angles-up:before\":false},[\"content:\\\"\\uf102\\\"\"]],[false,{\".fa-ankh:before\":false},[\"content:\\\"\\uf644\\\"\"]],[false,{\".fa-apple-alt:before\":false,\".fa-apple-whole:before\":false},[\"content:\\\"\\uf5d1\\\"\"]],[false,{\".fa-archway:before\":false},[\"content:\\\"\\uf557\\\"\"]],[false,{\".fa-arrow-down:before\":false},[\"content:\\\"\\uf063\\\"\"]],[false,{\".fa-arrow-down-1-9:before\":false,\".fa-sort-numeric-asc:before\":false,\".fa-sort-numeric-down:before\":false},[\"content:\\\"\\uf162\\\"\"]],[false,{\".fa-arrow-down-9-1:before\":false,\".fa-sort-numeric-desc:before\":false,\".fa-sort-numeric-down-alt:before\":false},[\"content:\\\"\\uf886\\\"\"]],[false,{\".fa-arrow-down-a-z:before\":false,\".fa-sort-alpha-asc:before\":false,\".fa-sort-alpha-down:before\":false},[\"content:\\\"\\uf15d\\\"\"]],[false,{\".fa-arrow-down-long:before\":false,\".fa-long-arrow-down:before\":false},[\"content:\\\"\\uf175\\\"\"]],[false,{\".fa-arrow-down-short-wide:before\":false,\".fa-sort-amount-desc:before\":false,\".fa-sort-amount-down-alt:before\":false},[\"content:\\\"\\uf884\\\"\"]],[false,{\".fa-arrow-down-up-across-line:before\":false},[\"content:\\\"\\ue4af\\\"\"]],[false,{\".fa-arrow-down-up-lock:before\":false},[\"content:\\\"\\ue4b0\\\"\"]],[false,{\".fa-arrow-down-wide-short:before\":false,\".fa-sort-amount-asc:before\":false,\".fa-sort-amount-down:before\":false},[\"content:\\\"\\uf160\\\"\"]],[false,{\".fa-arrow-down-z-a:before\":false,\".fa-sort-alpha-desc:before\":false,\".fa-sort-alpha-down-alt:before\":false},[\"content:\\\"\\uf881\\\"\"]],[false,{\".fa-arrow-left:before\":false},[\"content:\\\"\\uf060\\\"\"]],[false,{\".fa-arrow-left-long:before\":false,\".fa-long-arrow-left:before\":false},[\"content:\\\"\\uf177\\\"\"]],[false,{\".fa-arrow-pointer:before\":false,\".fa-mouse-pointer:before\":false},[\"content:\\\"\\uf245\\\"\"]],[false,{\".fa-arrow-right:before\":false},[\"content:\\\"\\uf061\\\"\"]],[false,{\".fa-arrow-right-arrow-left:before\":false,\".fa-exchange:before\":false},[\"content:\\\"\\uf0ec\\\"\"]],[false,{\".fa-arrow-right-from-bracket:before\":false,\".fa-sign-out:before\":false},[\"content:\\\"\\uf08b\\\"\"]],[false,{\".fa-arrow-right-long:before\":false,\".fa-long-arrow-right:before\":false},[\"content:\\\"\\uf178\\\"\"]],[false,{\".fa-arrow-right-to-bracket:before\":false,\".fa-sign-in:before\":false},[\"content:\\\"\\uf090\\\"\"]],[false,{\".fa-arrow-right-to-city:before\":false},[\"content:\\\"\\ue4b3\\\"\"]],[false,{\".fa-arrow-left-rotate:before\":false,\".fa-arrow-rotate-back:before\":false,\".fa-arrow-rotate-backward:before\":false,\".fa-arrow-rotate-left:before\":false,\".fa-undo:before\":false},[\"content:\\\"\\uf0e2\\\"\"]],[false,{\".fa-arrow-right-rotate:before\":false,\".fa-arrow-rotate-forward:before\":false,\".fa-arrow-rotate-right:before\":false,\".fa-redo:before\":false},[\"content:\\\"\\uf01e\\\"\"]],[false,{\".fa-arrow-trend-down:before\":false},[\"content:\\\"\\ue097\\\"\"]],[false,{\".fa-arrow-trend-up:before\":false},[\"content:\\\"\\ue098\\\"\"]],[false,{\".fa-arrow-turn-down:before\":false,\".fa-level-down:before\":false},[\"content:\\\"\\uf149\\\"\"]],[false,{\".fa-arrow-turn-up:before\":false,\".fa-level-up:before\":false},[\"content:\\\"\\uf148\\\"\"]],[false,{\".fa-arrow-up:before\":false},[\"content:\\\"\\uf062\\\"\"]],[false,{\".fa-arrow-up-1-9:before\":false,\".fa-sort-numeric-up:before\":false},[\"content:\\\"\\uf163\\\"\"]],[false,{\".fa-arrow-up-9-1:before\":false,\".fa-sort-numeric-up-alt:before\":false},[\"content:\\\"\\uf887\\\"\"]],[false,{\".fa-arrow-up-a-z:before\":false,\".fa-sort-alpha-up:before\":false},[\"content:\\\"\\uf15e\\\"\"]],[false,{\".fa-arrow-up-from-bracket:before\":false},[\"content:\\\"\\ue09a\\\"\"]],[false,{\".fa-arrow-up-from-ground-water:before\":false},[\"content:\\\"\\ue4b5\\\"\"]],[false,{\".fa-arrow-up-from-water-pump:before\":false},[\"content:\\\"\\ue4b6\\\"\"]],[false,{\".fa-arrow-up-long:before\":false,\".fa-long-arrow-up:before\":false},[\"content:\\\"\\uf176\\\"\"]],[false,{\".fa-arrow-up-right-dots:before\":false},[\"content:\\\"\\ue4b7\\\"\"]],[false,{\".fa-arrow-up-right-from-square:before\":false,\".fa-external-link:before\":false},[\"content:\\\"\\uf08e\\\"\"]],[false,{\".fa-arrow-up-short-wide:before\":false,\".fa-sort-amount-up-alt:before\":false},[\"content:\\\"\\uf885\\\"\"]],[false,{\".fa-arrow-up-wide-short:before\":false,\".fa-sort-amount-up:before\":false},[\"content:\\\"\\uf161\\\"\"]],[false,{\".fa-arrow-up-z-a:before\":false,\".fa-sort-alpha-up-alt:before\":false},[\"content:\\\"\\uf882\\\"\"]],[false,{\".fa-arrows-down-to-line:before\":false},[\"content:\\\"\\ue4b8\\\"\"]],[false,{\".fa-arrows-down-to-people:before\":false},[\"content:\\\"\\ue4b9\\\"\"]],[false,{\".fa-arrows-h:before\":false,\".fa-arrows-left-right:before\":false},[\"content:\\\"\\uf07e\\\"\"]],[false,{\".fa-arrows-left-right-to-line:before\":false},[\"content:\\\"\\ue4ba\\\"\"]],[false,{\".fa-arrows-rotate:before\":false,\".fa-refresh:before\":false,\".fa-sync:before\":false},[\"content:\\\"\\uf021\\\"\"]],[false,{\".fa-arrows-spin:before\":false},[\"content:\\\"\\ue4bb\\\"\"]],[false,{\".fa-arrows-split-up-and-left:before\":false},[\"content:\\\"\\ue4bc\\\"\"]],[false,{\".fa-arrows-to-circle:before\":false},[\"content:\\\"\\ue4bd\\\"\"]],[false,{\".fa-arrows-to-dot:before\":false},[\"content:\\\"\\ue4be\\\"\"]],[false,{\".fa-arrows-to-eye:before\":false},[\"content:\\\"\\ue4bf\\\"\"]],[false,{\".fa-arrows-turn-right:before\":false},[\"content:\\\"\\ue4c0\\\"\"]],[false,{\".fa-arrows-turn-to-dots:before\":false},[\"content:\\\"\\ue4c1\\\"\"]],[false,{\".fa-arrows-up-down:before\":false,\".fa-arrows-v:before\":false},[\"content:\\\"\\uf07d\\\"\"]],[false,{\".fa-arrows-up-down-left-right:before\":false,\".fa-arrows:before\":false},[\"content:\\\"\\uf047\\\"\"]],[false,{\".fa-arrows-up-to-line:before\":false},[\"content:\\\"\\ue4c2\\\"\"]],[false,{\".fa-asterisk:before\":false},[\"content:\\\"*\\\"\"]],[false,{\".fa-at:before\":false},[\"content:\\\"@\\\"\"]],[false,{\".fa-atom:before\":false},[\"content:\\\"\\uf5d2\\\"\"]],[false,{\".fa-audio-description:before\":false},[\"content:\\\"\\uf29e\\\"\"]],[false,{\".fa-austral-sign:before\":false},[\"content:\\\"\\ue0a9\\\"\"]],[false,{\".fa-award:before\":false},[\"content:\\\"\\uf559\\\"\"]],[false,{\".fa-b:before\":false},[\"content:\\\"B\\\"\"]],[false,{\".fa-baby:before\":false},[\"content:\\\"\\uf77c\\\"\"]],[false,{\".fa-baby-carriage:before\":false,\".fa-carriage-baby:before\":false},[\"content:\\\"\\uf77d\\\"\"]],[false,{\".fa-backward:before\":false},[\"content:\\\"\\uf04a\\\"\"]],[false,{\".fa-backward-fast:before\":false,\".fa-fast-backward:before\":false},[\"content:\\\"\\uf049\\\"\"]],[false,{\".fa-backward-step:before\":false,\".fa-step-backward:before\":false},[\"content:\\\"\\uf048\\\"\"]],[false,{\".fa-bacon:before\":false},[\"content:\\\"\\uf7e5\\\"\"]],[false,{\".fa-bacteria:before\":false},[\"content:\\\"\\ue059\\\"\"]],[false,{\".fa-bacterium:before\":false},[\"content:\\\"\\ue05a\\\"\"]],[false,{\".fa-bag-shopping:before\":false,\".fa-shopping-bag:before\":false},[\"content:\\\"\\uf290\\\"\"]],[false,{\".fa-bahai:before\":false},[\"content:\\\"\\uf666\\\"\"]],[false,{\".fa-baht-sign:before\":false},[\"content:\\\"\\ue0ac\\\"\"]],[false,{\".fa-ban:before\":false,\".fa-cancel:before\":false},[\"content:\\\"\\uf05e\\\"\"]],[false,{\".fa-ban-smoking:before\":false,\".fa-smoking-ban:before\":false},[\"content:\\\"\\uf54d\\\"\"]],[false,{\".fa-band-aid:before\":false,\".fa-bandage:before\":false},[\"content:\\\"\\uf462\\\"\"]],[false,{\".fa-barcode:before\":false},[\"content:\\\"\\uf02a\\\"\"]],[false,{\".fa-bars:before\":false,\".fa-navicon:before\":false},[\"content:\\\"\\uf0c9\\\"\"]],[false,{\".fa-bars-progress:before\":false,\".fa-tasks-alt:before\":false},[\"content:\\\"\\uf828\\\"\"]],[false,{\".fa-bars-staggered:before\":false,\".fa-reorder:before\":false,\".fa-stream:before\":false},[\"content:\\\"\\uf550\\\"\"]],[false,{\".fa-baseball-ball:before\":false,\".fa-baseball:before\":false},[\"content:\\\"\\uf433\\\"\"]],[false,{\".fa-baseball-bat-ball:before\":false},[\"content:\\\"\\uf432\\\"\"]],[false,{\".fa-basket-shopping:before\":false,\".fa-shopping-basket:before\":false},[\"content:\\\"\\uf291\\\"\"]],[false,{\".fa-basketball-ball:before\":false,\".fa-basketball:before\":false},[\"content:\\\"\\uf434\\\"\"]],[false,{\".fa-bath:before\":false,\".fa-bathtub:before\":false},[\"content:\\\"\\uf2cd\\\"\"]],[false,{\".fa-battery-0:before\":false,\".fa-battery-empty:before\":false},[\"content:\\\"\\uf244\\\"\"]],[false,{\".fa-battery-5:before\":false,\".fa-battery-full:before\":false,\".fa-battery:before\":false},[\"content:\\\"\\uf240\\\"\"]],[false,{\".fa-battery-3:before\":false,\".fa-battery-half:before\":false},[\"content:\\\"\\uf242\\\"\"]],[false,{\".fa-battery-2:before\":false,\".fa-battery-quarter:before\":false},[\"content:\\\"\\uf243\\\"\"]],[false,{\".fa-battery-4:before\":false,\".fa-battery-three-quarters:before\":false},[\"content:\\\"\\uf241\\\"\"]],[false,{\".fa-bed:before\":false},[\"content:\\\"\\uf236\\\"\"]],[false,{\".fa-bed-pulse:before\":false,\".fa-procedures:before\":false},[\"content:\\\"\\uf487\\\"\"]],[false,{\".fa-beer-mug-empty:before\":false,\".fa-beer:before\":false},[\"content:\\\"\\uf0fc\\\"\"]],[false,{\".fa-bell:before\":false},[\"content:\\\"\\uf0f3\\\"\"]],[false,{\".fa-bell-concierge:before\":false,\".fa-concierge-bell:before\":false},[\"content:\\\"\\uf562\\\"\"]],[false,{\".fa-bell-slash:before\":false},[\"content:\\\"\\uf1f6\\\"\"]],[false,{\".fa-bezier-curve:before\":false},[\"content:\\\"\\uf55b\\\"\"]],[false,{\".fa-bicycle:before\":false},[\"content:\\\"\\uf206\\\"\"]],[false,{\".fa-binoculars:before\":false},[\"content:\\\"\\uf1e5\\\"\"]],[false,{\".fa-biohazard:before\":false},[\"content:\\\"\\uf780\\\"\"]],[false,{\".fa-bitcoin-sign:before\":false},[\"content:\\\"\\ue0b4\\\"\"]],[false,{\".fa-blender:before\":false},[\"content:\\\"\\uf517\\\"\"]],[false,{\".fa-blender-phone:before\":false},[\"content:\\\"\\uf6b6\\\"\"]],[false,{\".fa-blog:before\":false},[\"content:\\\"\\uf781\\\"\"]],[false,{\".fa-bold:before\":false},[\"content:\\\"\\uf032\\\"\"]],[false,{\".fa-bolt:before\":false,\".fa-zap:before\":false},[\"content:\\\"\\uf0e7\\\"\"]],[false,{\".fa-bolt-lightning:before\":false},[\"content:\\\"\\ue0b7\\\"\"]],[false,{\".fa-bomb:before\":false},[\"content:\\\"\\uf1e2\\\"\"]],[false,{\".fa-bone:before\":false},[\"content:\\\"\\uf5d7\\\"\"]],[false,{\".fa-bong:before\":false},[\"content:\\\"\\uf55c\\\"\"]],[false,{\".fa-book:before\":false},[\"content:\\\"\\uf02d\\\"\"]],[false,{\".fa-atlas:before\":false,\".fa-book-atlas:before\":false},[\"content:\\\"\\uf558\\\"\"]],[false,{\".fa-bible:before\":false,\".fa-book-bible:before\":false},[\"content:\\\"\\uf647\\\"\"]],[false,{\".fa-book-bookmark:before\":false},[\"content:\\\"\\ue0bb\\\"\"]],[false,{\".fa-book-journal-whills:before\":false,\".fa-journal-whills:before\":false},[\"content:\\\"\\uf66a\\\"\"]],[false,{\".fa-book-medical:before\":false},[\"content:\\\"\\uf7e6\\\"\"]],[false,{\".fa-book-open:before\":false},[\"content:\\\"\\uf518\\\"\"]],[false,{\".fa-book-open-reader:before\":false,\".fa-book-reader:before\":false},[\"content:\\\"\\uf5da\\\"\"]],[false,{\".fa-book-quran:before\":false,\".fa-quran:before\":false},[\"content:\\\"\\uf687\\\"\"]],[false,{\".fa-book-dead:before\":false,\".fa-book-skull:before\":false},[\"content:\\\"\\uf6b7\\\"\"]],[false,{\".fa-bookmark:before\":false},[\"content:\\\"\\uf02e\\\"\"]],[false,{\".fa-border-all:before\":false},[\"content:\\\"\\uf84c\\\"\"]],[false,{\".fa-border-none:before\":false},[\"content:\\\"\\uf850\\\"\"]],[false,{\".fa-border-style:before\":false,\".fa-border-top-left:before\":false},[\"content:\\\"\\uf853\\\"\"]],[false,{\".fa-bore-hole:before\":false},[\"content:\\\"\\ue4c3\\\"\"]],[false,{\".fa-bottle-droplet:before\":false},[\"content:\\\"\\ue4c4\\\"\"]],[false,{\".fa-bottle-water:before\":false},[\"content:\\\"\\ue4c5\\\"\"]],[false,{\".fa-bowl-food:before\":false},[\"content:\\\"\\ue4c6\\\"\"]],[false,{\".fa-bowl-rice:before\":false},[\"content:\\\"\\ue2eb\\\"\"]],[false,{\".fa-bowling-ball:before\":false},[\"content:\\\"\\uf436\\\"\"]],[false,{\".fa-box:before\":false},[\"content:\\\"\\uf466\\\"\"]],[false,{\".fa-archive:before\":false,\".fa-box-archive:before\":false},[\"content:\\\"\\uf187\\\"\"]],[false,{\".fa-box-open:before\":false},[\"content:\\\"\\uf49e\\\"\"]],[false,{\".fa-box-tissue:before\":false},[\"content:\\\"\\ue05b\\\"\"]],[false,{\".fa-boxes-packing:before\":false},[\"content:\\\"\\ue4c7\\\"\"]],[false,{\".fa-boxes-alt:before\":false,\".fa-boxes-stacked:before\":false,\".fa-boxes:before\":false},[\"content:\\\"\\uf468\\\"\"]],[false,{\".fa-braille:before\":false},[\"content:\\\"\\uf2a1\\\"\"]],[false,{\".fa-brain:before\":false},[\"content:\\\"\\uf5dc\\\"\"]],[false,{\".fa-brazilian-real-sign:before\":false},[\"content:\\\"\\ue46c\\\"\"]],[false,{\".fa-bread-slice:before\":false},[\"content:\\\"\\uf7ec\\\"\"]],[false,{\".fa-bridge:before\":false},[\"content:\\\"\\ue4c8\\\"\"]],[false,{\".fa-bridge-circle-check:before\":false},[\"content:\\\"\\ue4c9\\\"\"]],[false,{\".fa-bridge-circle-exclamation:before\":false},[\"content:\\\"\\ue4ca\\\"\"]],[false,{\".fa-bridge-circle-xmark:before\":false},[\"content:\\\"\\ue4cb\\\"\"]],[false,{\".fa-bridge-lock:before\":false},[\"content:\\\"\\ue4cc\\\"\"]],[false,{\".fa-bridge-water:before\":false},[\"content:\\\"\\ue4ce\\\"\"]],[false,{\".fa-briefcase:before\":false},[\"content:\\\"\\uf0b1\\\"\"]],[false,{\".fa-briefcase-medical:before\":false},[\"content:\\\"\\uf469\\\"\"]],[false,{\".fa-broom:before\":false},[\"content:\\\"\\uf51a\\\"\"]],[false,{\".fa-broom-ball:before\":false,\".fa-quidditch-broom-ball:before\":false,\".fa-quidditch:before\":false},[\"content:\\\"\\uf458\\\"\"]],[false,{\".fa-brush:before\":false},[\"content:\\\"\\uf55d\\\"\"]],[false,{\".fa-bucket:before\":false},[\"content:\\\"\\ue4cf\\\"\"]],[false,{\".fa-bug:before\":false},[\"content:\\\"\\uf188\\\"\"]],[false,{\".fa-bug-slash:before\":false},[\"content:\\\"\\ue490\\\"\"]],[false,{\".fa-bugs:before\":false},[\"content:\\\"\\ue4d0\\\"\"]],[false,{\".fa-building:before\":false},[\"content:\\\"\\uf1ad\\\"\"]],[false,{\".fa-building-circle-arrow-right:before\":false},[\"content:\\\"\\ue4d1\\\"\"]],[false,{\".fa-building-circle-check:before\":false},[\"content:\\\"\\ue4d2\\\"\"]],[false,{\".fa-building-circle-exclamation:before\":false},[\"content:\\\"\\ue4d3\\\"\"]],[false,{\".fa-building-circle-xmark:before\":false},[\"content:\\\"\\ue4d4\\\"\"]],[false,{\".fa-bank:before\":false,\".fa-building-columns:before\":false,\".fa-institution:before\":false,\".fa-museum:before\":false,\".fa-university:before\":false},[\"content:\\\"\\uf19c\\\"\"]],[false,{\".fa-building-flag:before\":false},[\"content:\\\"\\ue4d5\\\"\"]],[false,{\".fa-building-lock:before\":false},[\"content:\\\"\\ue4d6\\\"\"]],[false,{\".fa-building-ngo:before\":false},[\"content:\\\"\\ue4d7\\\"\"]],[false,{\".fa-building-shield:before\":false},[\"content:\\\"\\ue4d8\\\"\"]],[false,{\".fa-building-un:before\":false},[\"content:\\\"\\ue4d9\\\"\"]],[false,{\".fa-building-user:before\":false},[\"content:\\\"\\ue4da\\\"\"]],[false,{\".fa-building-wheat:before\":false},[\"content:\\\"\\ue4db\\\"\"]],[false,{\".fa-bullhorn:before\":false},[\"content:\\\"\\uf0a1\\\"\"]],[false,{\".fa-bullseye:before\":false},[\"content:\\\"\\uf140\\\"\"]],[false,{\".fa-burger:before\":false,\".fa-hamburger:before\":false},[\"content:\\\"\\uf805\\\"\"]],[false,{\".fa-burst:before\":false},[\"content:\\\"\\ue4dc\\\"\"]],[false,{\".fa-bus:before\":false},[\"content:\\\"\\uf207\\\"\"]],[false,{\".fa-bus-alt:before\":false,\".fa-bus-simple:before\":false},[\"content:\\\"\\uf55e\\\"\"]],[false,{\".fa-briefcase-clock:before\":false,\".fa-business-time:before\":false},[\"content:\\\"\\uf64a\\\"\"]],[false,{\".fa-c:before\":false},[\"content:\\\"C\\\"\"]],[false,{\".fa-birthday-cake:before\":false,\".fa-cake-candles:before\":false,\".fa-cake:before\":false},[\"content:\\\"\\uf1fd\\\"\"]],[false,{\".fa-calculator:before\":false},[\"content:\\\"\\uf1ec\\\"\"]],[false,{\".fa-calendar:before\":false},[\"content:\\\"\\uf133\\\"\"]],[false,{\".fa-calendar-check:before\":false},[\"content:\\\"\\uf274\\\"\"]],[false,{\".fa-calendar-day:before\":false},[\"content:\\\"\\uf783\\\"\"]],[false,{\".fa-calendar-alt:before\":false,\".fa-calendar-days:before\":false},[\"content:\\\"\\uf073\\\"\"]],[false,{\".fa-calendar-minus:before\":false},[\"content:\\\"\\uf272\\\"\"]],[false,{\".fa-calendar-plus:before\":false},[\"content:\\\"\\uf271\\\"\"]],[false,{\".fa-calendar-week:before\":false},[\"content:\\\"\\uf784\\\"\"]],[false,{\".fa-calendar-times:before\":false,\".fa-calendar-xmark:before\":false},[\"content:\\\"\\uf273\\\"\"]],[false,{\".fa-camera-alt:before\":false,\".fa-camera:before\":false},[\"content:\\\"\\uf030\\\"\"]],[false,{\".fa-camera-retro:before\":false},[\"content:\\\"\\uf083\\\"\"]],[false,{\".fa-camera-rotate:before\":false},[\"content:\\\"\\ue0d8\\\"\"]],[false,{\".fa-campground:before\":false},[\"content:\\\"\\uf6bb\\\"\"]],[false,{\".fa-candy-cane:before\":false},[\"content:\\\"\\uf786\\\"\"]],[false,{\".fa-cannabis:before\":false},[\"content:\\\"\\uf55f\\\"\"]],[false,{\".fa-capsules:before\":false},[\"content:\\\"\\uf46b\\\"\"]],[false,{\".fa-automobile:before\":false,\".fa-car:before\":false},[\"content:\\\"\\uf1b9\\\"\"]],[false,{\".fa-battery-car:before\":false,\".fa-car-battery:before\":false},[\"content:\\\"\\uf5df\\\"\"]],[false,{\".fa-car-burst:before\":false,\".fa-car-crash:before\":false},[\"content:\\\"\\uf5e1\\\"\"]],[false,{\".fa-car-on:before\":false},[\"content:\\\"\\ue4dd\\\"\"]],[false,{\".fa-car-alt:before\":false,\".fa-car-rear:before\":false},[\"content:\\\"\\uf5de\\\"\"]],[false,{\".fa-car-side:before\":false},[\"content:\\\"\\uf5e4\\\"\"]],[false,{\".fa-car-tunnel:before\":false},[\"content:\\\"\\ue4de\\\"\"]],[false,{\".fa-caravan:before\":false},[\"content:\\\"\\uf8ff\\\"\"]],[false,{\".fa-caret-down:before\":false},[\"content:\\\"\\uf0d7\\\"\"]],[false,{\".fa-caret-left:before\":false},[\"content:\\\"\\uf0d9\\\"\"]],[false,{\".fa-caret-right:before\":false},[\"content:\\\"\\uf0da\\\"\"]],[false,{\".fa-caret-up:before\":false},[\"content:\\\"\\uf0d8\\\"\"]],[false,{\".fa-carrot:before\":false},[\"content:\\\"\\uf787\\\"\"]],[false,{\".fa-cart-arrow-down:before\":false},[\"content:\\\"\\uf218\\\"\"]],[false,{\".fa-cart-flatbed:before\":false,\".fa-dolly-flatbed:before\":false},[\"content:\\\"\\uf474\\\"\"]],[false,{\".fa-cart-flatbed-suitcase:before\":false,\".fa-luggage-cart:before\":false},[\"content:\\\"\\uf59d\\\"\"]],[false,{\".fa-cart-plus:before\":false},[\"content:\\\"\\uf217\\\"\"]],[false,{\".fa-cart-shopping:before\":false,\".fa-shopping-cart:before\":false},[\"content:\\\"\\uf07a\\\"\"]],[false,{\".fa-cash-register:before\":false},[\"content:\\\"\\uf788\\\"\"]],[false,{\".fa-cat:before\":false},[\"content:\\\"\\uf6be\\\"\"]],[false,{\".fa-cedi-sign:before\":false},[\"content:\\\"\\ue0df\\\"\"]],[false,{\".fa-cent-sign:before\":false},[\"content:\\\"\\ue3f5\\\"\"]],[false,{\".fa-certificate:before\":false},[\"content:\\\"\\uf0a3\\\"\"]],[false,{\".fa-chair:before\":false},[\"content:\\\"\\uf6c0\\\"\"]],[false,{\".fa-blackboard:before\":false,\".fa-chalkboard:before\":false},[\"content:\\\"\\uf51b\\\"\"]],[false,{\".fa-chalkboard-teacher:before\":false,\".fa-chalkboard-user:before\":false},[\"content:\\\"\\uf51c\\\"\"]],[false,{\".fa-champagne-glasses:before\":false,\".fa-glass-cheers:before\":false},[\"content:\\\"\\uf79f\\\"\"]],[false,{\".fa-charging-station:before\":false},[\"content:\\\"\\uf5e7\\\"\"]],[false,{\".fa-area-chart:before\":false,\".fa-chart-area:before\":false},[\"content:\\\"\\uf1fe\\\"\"]],[false,{\".fa-bar-chart:before\":false,\".fa-chart-bar:before\":false},[\"content:\\\"\\uf080\\\"\"]],[false,{\".fa-chart-column:before\":false},[\"content:\\\"\\ue0e3\\\"\"]],[false,{\".fa-chart-gantt:before\":false},[\"content:\\\"\\ue0e4\\\"\"]],[false,{\".fa-chart-line:before\":false,\".fa-line-chart:before\":false},[\"content:\\\"\\uf201\\\"\"]],[false,{\".fa-chart-pie:before\":false,\".fa-pie-chart:before\":false},[\"content:\\\"\\uf200\\\"\"]],[false,{\".fa-chart-simple:before\":false},[\"content:\\\"\\ue473\\\"\"]],[false,{\".fa-check:before\":false},[\"content:\\\"\\uf00c\\\"\"]],[false,{\".fa-check-double:before\":false},[\"content:\\\"\\uf560\\\"\"]],[false,{\".fa-check-to-slot:before\":false,\".fa-vote-yea:before\":false},[\"content:\\\"\\uf772\\\"\"]],[false,{\".fa-cheese:before\":false},[\"content:\\\"\\uf7ef\\\"\"]],[false,{\".fa-chess:before\":false},[\"content:\\\"\\uf439\\\"\"]],[false,{\".fa-chess-bishop:before\":false},[\"content:\\\"\\uf43a\\\"\"]],[false,{\".fa-chess-board:before\":false},[\"content:\\\"\\uf43c\\\"\"]],[false,{\".fa-chess-king:before\":false},[\"content:\\\"\\uf43f\\\"\"]],[false,{\".fa-chess-knight:before\":false},[\"content:\\\"\\uf441\\\"\"]],[false,{\".fa-chess-pawn:before\":false},[\"content:\\\"\\uf443\\\"\"]],[false,{\".fa-chess-queen:before\":false},[\"content:\\\"\\uf445\\\"\"]],[false,{\".fa-chess-rook:before\":false},[\"content:\\\"\\uf447\\\"\"]],[true,{\".fa-chevron-down:before\":true},[\"content:\\\"\\uf078\\\"\"]],[true,{\".fa-chevron-left:before\":true},[\"content:\\\"\\uf053\\\"\"]],[true,{\".fa-chevron-right:before\":true},[\"content:\\\"\\uf054\\\"\"]],[false,{\".fa-chevron-up:before\":false},[\"content:\\\"\\uf077\\\"\"]],[false,{\".fa-child:before\":false},[\"content:\\\"\\uf1ae\\\"\"]],[false,{\".fa-child-rifle:before\":false},[\"content:\\\"\\ue4e0\\\"\"]],[false,{\".fa-children:before\":false},[\"content:\\\"\\ue4e1\\\"\"]],[false,{\".fa-church:before\":false},[\"content:\\\"\\uf51d\\\"\"]],[false,{\".fa-circle:before\":false},[\"content:\\\"\\uf111\\\"\"]],[false,{\".fa-arrow-circle-down:before\":false,\".fa-circle-arrow-down:before\":false},[\"content:\\\"\\uf0ab\\\"\"]],[false,{\".fa-arrow-circle-left:before\":false,\".fa-circle-arrow-left:before\":false},[\"content:\\\"\\uf0a8\\\"\"]],[false,{\".fa-arrow-circle-right:before\":false,\".fa-circle-arrow-right:before\":false},[\"content:\\\"\\uf0a9\\\"\"]],[false,{\".fa-arrow-circle-up:before\":false,\".fa-circle-arrow-up:before\":false},[\"content:\\\"\\uf0aa\\\"\"]],[false,{\".fa-check-circle:before\":false,\".fa-circle-check:before\":false},[\"content:\\\"\\uf058\\\"\"]],[false,{\".fa-chevron-circle-down:before\":false,\".fa-circle-chevron-down:before\":false},[\"content:\\\"\\uf13a\\\"\"]],[false,{\".fa-chevron-circle-left:before\":false,\".fa-circle-chevron-left:before\":false},[\"content:\\\"\\uf137\\\"\"]],[false,{\".fa-chevron-circle-right:before\":false,\".fa-circle-chevron-right:before\":false},[\"content:\\\"\\uf138\\\"\"]],[false,{\".fa-chevron-circle-up:before\":false,\".fa-circle-chevron-up:before\":false},[\"content:\\\"\\uf139\\\"\"]],[false,{\".fa-circle-dollar-to-slot:before\":false,\".fa-donate:before\":false},[\"content:\\\"\\uf4b9\\\"\"]],[false,{\".fa-circle-dot:before\":false,\".fa-dot-circle:before\":false},[\"content:\\\"\\uf192\\\"\"]],[false,{\".fa-arrow-alt-circle-down:before\":false,\".fa-circle-down:before\":false},[\"content:\\\"\\uf358\\\"\"]],[false,{\".fa-circle-exclamation:before\":false,\".fa-exclamation-circle:before\":false},[\"content:\\\"\\uf06a\\\"\"]],[false,{\".fa-circle-h:before\":false,\".fa-hospital-symbol:before\":false},[\"content:\\\"\\uf47e\\\"\"]],[false,{\".fa-adjust:before\":false,\".fa-circle-half-stroke:before\":false},[\"content:\\\"\\uf042\\\"\"]],[false,{\".fa-circle-info:before\":false,\".fa-info-circle:before\":false},[\"content:\\\"\\uf05a\\\"\"]],[false,{\".fa-arrow-alt-circle-left:before\":false,\".fa-circle-left:before\":false},[\"content:\\\"\\uf359\\\"\"]],[false,{\".fa-circle-minus:before\":false,\".fa-minus-circle:before\":false},[\"content:\\\"\\uf056\\\"\"]],[false,{\".fa-circle-nodes:before\":false},[\"content:\\\"\\ue4e2\\\"\"]],[false,{\".fa-circle-notch:before\":false},[\"content:\\\"\\uf1ce\\\"\"]],[false,{\".fa-circle-pause:before\":false,\".fa-pause-circle:before\":false},[\"content:\\\"\\uf28b\\\"\"]],[false,{\".fa-circle-play:before\":false,\".fa-play-circle:before\":false},[\"content:\\\"\\uf144\\\"\"]],[false,{\".fa-circle-plus:before\":false,\".fa-plus-circle:before\":false},[\"content:\\\"\\uf055\\\"\"]],[false,{\".fa-circle-question:before\":false,\".fa-question-circle:before\":false},[\"content:\\\"\\uf059\\\"\"]],[false,{\".fa-circle-radiation:before\":false,\".fa-radiation-alt:before\":false},[\"content:\\\"\\uf7ba\\\"\"]],[false,{\".fa-arrow-alt-circle-right:before\":false,\".fa-circle-right:before\":false},[\"content:\\\"\\uf35a\\\"\"]],[false,{\".fa-circle-stop:before\":false,\".fa-stop-circle:before\":false},[\"content:\\\"\\uf28d\\\"\"]],[false,{\".fa-arrow-alt-circle-up:before\":false,\".fa-circle-up:before\":false},[\"content:\\\"\\uf35b\\\"\"]],[false,{\".fa-circle-user:before\":false,\".fa-user-circle:before\":false},[\"content:\\\"\\uf2bd\\\"\"]],[false,{\".fa-circle-xmark:before\":false,\".fa-times-circle:before\":false,\".fa-xmark-circle:before\":false},[\"content:\\\"\\uf057\\\"\"]],[false,{\".fa-city:before\":false},[\"content:\\\"\\uf64f\\\"\"]],[false,{\".fa-clapperboard:before\":false},[\"content:\\\"\\ue131\\\"\"]],[false,{\".fa-clipboard:before\":false},[\"content:\\\"\\uf328\\\"\"]],[false,{\".fa-clipboard-check:before\":false},[\"content:\\\"\\uf46c\\\"\"]],[false,{\".fa-clipboard-list:before\":false},[\"content:\\\"\\uf46d\\\"\"]],[false,{\".fa-clipboard-question:before\":false},[\"content:\\\"\\ue4e3\\\"\"]],[false,{\".fa-clipboard-user:before\":false},[\"content:\\\"\\uf7f3\\\"\"]],[false,{\".fa-clock-four:before\":false,\".fa-clock:before\":false},[\"content:\\\"\\uf017\\\"\"]],[false,{\".fa-clock-rotate-left:before\":false,\".fa-history:before\":false},[\"content:\\\"\\uf1da\\\"\"]],[false,{\".fa-clone:before\":false},[\"content:\\\"\\uf24d\\\"\"]],[false,{\".fa-closed-captioning:before\":false},[\"content:\\\"\\uf20a\\\"\"]],[false,{\".fa-cloud:before\":false},[\"content:\\\"\\uf0c2\\\"\"]],[false,{\".fa-cloud-arrow-down:before\":false,\".fa-cloud-download-alt:before\":false,\".fa-cloud-download:before\":false},[\"content:\\\"\\uf0ed\\\"\"]],[false,{\".fa-cloud-arrow-up:before\":false,\".fa-cloud-upload-alt:before\":false,\".fa-cloud-upload:before\":false},[\"content:\\\"\\uf0ee\\\"\"]],[false,{\".fa-cloud-bolt:before\":false,\".fa-thunderstorm:before\":false},[\"content:\\\"\\uf76c\\\"\"]],[false,{\".fa-cloud-meatball:before\":false},[\"content:\\\"\\uf73b\\\"\"]],[false,{\".fa-cloud-moon:before\":false},[\"content:\\\"\\uf6c3\\\"\"]],[false,{\".fa-cloud-moon-rain:before\":false},[\"content:\\\"\\uf73c\\\"\"]],[false,{\".fa-cloud-rain:before\":false},[\"content:\\\"\\uf73d\\\"\"]],[false,{\".fa-cloud-showers-heavy:before\":false},[\"content:\\\"\\uf740\\\"\"]],[false,{\".fa-cloud-showers-water:before\":false},[\"content:\\\"\\ue4e4\\\"\"]],[false,{\".fa-cloud-sun:before\":false},[\"content:\\\"\\uf6c4\\\"\"]],[false,{\".fa-cloud-sun-rain:before\":false},[\"content:\\\"\\uf743\\\"\"]],[false,{\".fa-clover:before\":false},[\"content:\\\"\\ue139\\\"\"]],[false,{\".fa-code:before\":false},[\"content:\\\"\\uf121\\\"\"]],[false,{\".fa-code-branch:before\":false},[\"content:\\\"\\uf126\\\"\"]],[false,{\".fa-code-commit:before\":false},[\"content:\\\"\\uf386\\\"\"]],[false,{\".fa-code-compare:before\":false},[\"content:\\\"\\ue13a\\\"\"]],[false,{\".fa-code-fork:before\":false},[\"content:\\\"\\ue13b\\\"\"]],[false,{\".fa-code-merge:before\":false},[\"content:\\\"\\uf387\\\"\"]],[false,{\".fa-code-pull-request:before\":false},[\"content:\\\"\\ue13c\\\"\"]],[false,{\".fa-coins:before\":false},[\"content:\\\"\\uf51e\\\"\"]],[false,{\".fa-colon-sign:before\":false},[\"content:\\\"\\ue140\\\"\"]],[false,{\".fa-comment:before\":false},[\"content:\\\"\\uf075\\\"\"]],[false,{\".fa-comment-dollar:before\":false},[\"content:\\\"\\uf651\\\"\"]],[false,{\".fa-comment-dots:before\":false,\".fa-commenting:before\":false},[\"content:\\\"\\uf4ad\\\"\"]],[false,{\".fa-comment-medical:before\":false},[\"content:\\\"\\uf7f5\\\"\"]],[false,{\".fa-comment-slash:before\":false},[\"content:\\\"\\uf4b3\\\"\"]],[false,{\".fa-comment-sms:before\":false,\".fa-sms:before\":false},[\"content:\\\"\\uf7cd\\\"\"]],[false,{\".fa-comments:before\":false},[\"content:\\\"\\uf086\\\"\"]],[false,{\".fa-comments-dollar:before\":false},[\"content:\\\"\\uf653\\\"\"]],[false,{\".fa-compact-disc:before\":false},[\"content:\\\"\\uf51f\\\"\"]],[false,{\".fa-compass:before\":false},[\"content:\\\"\\uf14e\\\"\"]],[false,{\".fa-compass-drafting:before\":false,\".fa-drafting-compass:before\":false},[\"content:\\\"\\uf568\\\"\"]],[false,{\".fa-compress:before\":false},[\"content:\\\"\\uf066\\\"\"]],[false,{\".fa-computer:before\":false},[\"content:\\\"\\ue4e5\\\"\"]],[false,{\".fa-computer-mouse:before\":false,\".fa-mouse:before\":false},[\"content:\\\"\\uf8cc\\\"\"]],[false,{\".fa-cookie:before\":false},[\"content:\\\"\\uf563\\\"\"]],[false,{\".fa-cookie-bite:before\":false},[\"content:\\\"\\uf564\\\"\"]],[false,{\".fa-copy:before\":false},[\"content:\\\"\\uf0c5\\\"\"]],[false,{\".fa-copyright:before\":false},[\"content:\\\"\\uf1f9\\\"\"]],[false,{\".fa-couch:before\":false},[\"content:\\\"\\uf4b8\\\"\"]],[false,{\".fa-cow:before\":false},[\"content:\\\"\\uf6c8\\\"\"]],[false,{\".fa-credit-card-alt:before\":false,\".fa-credit-card:before\":false},[\"content:\\\"\\uf09d\\\"\"]],[false,{\".fa-crop:before\":false},[\"content:\\\"\\uf125\\\"\"]],[false,{\".fa-crop-alt:before\":false,\".fa-crop-simple:before\":false},[\"content:\\\"\\uf565\\\"\"]],[false,{\".fa-cross:before\":false},[\"content:\\\"\\uf654\\\"\"]],[false,{\".fa-crosshairs:before\":false},[\"content:\\\"\\uf05b\\\"\"]],[false,{\".fa-crow:before\":false},[\"content:\\\"\\uf520\\\"\"]],[false,{\".fa-crown:before\":false},[\"content:\\\"\\uf521\\\"\"]],[false,{\".fa-crutch:before\":false},[\"content:\\\"\\uf7f7\\\"\"]],[false,{\".fa-cruzeiro-sign:before\":false},[\"content:\\\"\\ue152\\\"\"]],[false,{\".fa-cube:before\":false},[\"content:\\\"\\uf1b2\\\"\"]],[false,{\".fa-cubes:before\":false},[\"content:\\\"\\uf1b3\\\"\"]],[false,{\".fa-cubes-stacked:before\":false},[\"content:\\\"\\ue4e6\\\"\"]],[false,{\".fa-d:before\":false},[\"content:\\\"D\\\"\"]],[false,{\".fa-database:before\":false},[\"content:\\\"\\uf1c0\\\"\"]],[false,{\".fa-backspace:before\":false,\".fa-delete-left:before\":false},[\"content:\\\"\\uf55a\\\"\"]],[false,{\".fa-democrat:before\":false},[\"content:\\\"\\uf747\\\"\"]],[false,{\".fa-desktop-alt:before\":false,\".fa-desktop:before\":false},[\"content:\\\"\\uf390\\\"\"]],[false,{\".fa-dharmachakra:before\":false},[\"content:\\\"\\uf655\\\"\"]],[false,{\".fa-diagram-next:before\":false},[\"content:\\\"\\ue476\\\"\"]],[false,{\".fa-diagram-predecessor:before\":false},[\"content:\\\"\\ue477\\\"\"]],[false,{\".fa-diagram-project:before\":false,\".fa-project-diagram:before\":false},[\"content:\\\"\\uf542\\\"\"]],[false,{\".fa-diagram-successor:before\":false},[\"content:\\\"\\ue47a\\\"\"]],[false,{\".fa-diamond:before\":false},[\"content:\\\"\\uf219\\\"\"]],[false,{\".fa-diamond-turn-right:before\":false,\".fa-directions:before\":false},[\"content:\\\"\\uf5eb\\\"\"]],[false,{\".fa-dice:before\":false},[\"content:\\\"\\uf522\\\"\"]],[false,{\".fa-dice-d20:before\":false},[\"content:\\\"\\uf6cf\\\"\"]],[false,{\".fa-dice-d6:before\":false},[\"content:\\\"\\uf6d1\\\"\"]],[false,{\".fa-dice-five:before\":false},[\"content:\\\"\\uf523\\\"\"]],[false,{\".fa-dice-four:before\":false},[\"content:\\\"\\uf524\\\"\"]],[false,{\".fa-dice-one:before\":false},[\"content:\\\"\\uf525\\\"\"]],[false,{\".fa-dice-six:before\":false},[\"content:\\\"\\uf526\\\"\"]],[false,{\".fa-dice-three:before\":false},[\"content:\\\"\\uf527\\\"\"]],[false,{\".fa-dice-two:before\":false},[\"content:\\\"\\uf528\\\"\"]],[false,{\".fa-disease:before\":false},[\"content:\\\"\\uf7fa\\\"\"]],[false,{\".fa-display:before\":false},[\"content:\\\"\\ue163\\\"\"]],[false,{\".fa-divide:before\":false},[\"content:\\\"\\uf529\\\"\"]],[false,{\".fa-dna:before\":false},[\"content:\\\"\\uf471\\\"\"]],[false,{\".fa-dog:before\":false},[\"content:\\\"\\uf6d3\\\"\"]],[false,{\".fa-dollar-sign:before\":false,\".fa-dollar:before\":false,\".fa-usd:before\":false},[\"content:\\\"$\\\"\"]],[false,{\".fa-dolly-box:before\":false,\".fa-dolly:before\":false},[\"content:\\\"\\uf472\\\"\"]],[false,{\".fa-dong-sign:before\":false},[\"content:\\\"\\ue169\\\"\"]],[false,{\".fa-door-closed:before\":false},[\"content:\\\"\\uf52a\\\"\"]],[false,{\".fa-door-open:before\":false},[\"content:\\\"\\uf52b\\\"\"]],[false,{\".fa-dove:before\":false},[\"content:\\\"\\uf4ba\\\"\"]],[false,{\".fa-compress-alt:before\":false,\".fa-down-left-and-up-right-to-center:before\":false},[\"content:\\\"\\uf422\\\"\"]],[false,{\".fa-down-long:before\":false,\".fa-long-arrow-alt-down:before\":false},[\"content:\\\"\\uf309\\\"\"]],[false,{\".fa-download:before\":false},[\"content:\\\"\\uf019\\\"\"]],[false,{\".fa-dragon:before\":false},[\"content:\\\"\\uf6d5\\\"\"]],[false,{\".fa-draw-polygon:before\":false},[\"content:\\\"\\uf5ee\\\"\"]],[false,{\".fa-droplet:before\":false,\".fa-tint:before\":false},[\"content:\\\"\\uf043\\\"\"]],[false,{\".fa-droplet-slash:before\":false,\".fa-tint-slash:before\":false},[\"content:\\\"\\uf5c7\\\"\"]],[false,{\".fa-drum:before\":false},[\"content:\\\"\\uf569\\\"\"]],[false,{\".fa-drum-steelpan:before\":false},[\"content:\\\"\\uf56a\\\"\"]],[false,{\".fa-drumstick-bite:before\":false},[\"content:\\\"\\uf6d7\\\"\"]],[false,{\".fa-dumbbell:before\":false},[\"content:\\\"\\uf44b\\\"\"]],[false,{\".fa-dumpster:before\":false},[\"content:\\\"\\uf793\\\"\"]],[false,{\".fa-dumpster-fire:before\":false},[\"content:\\\"\\uf794\\\"\"]],[false,{\".fa-dungeon:before\":false},[\"content:\\\"\\uf6d9\\\"\"]],[false,{\".fa-e:before\":false},[\"content:\\\"E\\\"\"]],[false,{\".fa-deaf:before\":false,\".fa-deafness:before\":false,\".fa-ear-deaf:before\":false,\".fa-hard-of-hearing:before\":false},[\"content:\\\"\\uf2a4\\\"\"]],[false,{\".fa-assistive-listening-systems:before\":false,\".fa-ear-listen:before\":false},[\"content:\\\"\\uf2a2\\\"\"]],[false,{\".fa-earth-africa:before\":false,\".fa-globe-africa:before\":false},[\"content:\\\"\\uf57c\\\"\"]],[false,{\".fa-earth-america:before\":false,\".fa-earth-americas:before\":false,\".fa-earth:before\":false,\".fa-globe-americas:before\":false},[\"content:\\\"\\uf57d\\\"\"]],[false,{\".fa-earth-asia:before\":false,\".fa-globe-asia:before\":false},[\"content:\\\"\\uf57e\\\"\"]],[false,{\".fa-earth-europe:before\":false,\".fa-globe-europe:before\":false},[\"content:\\\"\\uf7a2\\\"\"]],[false,{\".fa-earth-oceania:before\":false,\".fa-globe-oceania:before\":false},[\"content:\\\"\\ue47b\\\"\"]],[false,{\".fa-egg:before\":false},[\"content:\\\"\\uf7fb\\\"\"]],[false,{\".fa-eject:before\":false},[\"content:\\\"\\uf052\\\"\"]],[false,{\".fa-elevator:before\":false},[\"content:\\\"\\ue16d\\\"\"]],[false,{\".fa-ellipsis-h:before\":false,\".fa-ellipsis:before\":false},[\"content:\\\"\\uf141\\\"\"]],[false,{\".fa-ellipsis-v:before\":false,\".fa-ellipsis-vertical:before\":false},[\"content:\\\"\\uf142\\\"\"]],[false,{\".fa-envelope:before\":false},[\"content:\\\"\\uf0e0\\\"\"]],[false,{\".fa-envelope-circle-check:before\":false},[\"content:\\\"\\ue4e8\\\"\"]],[false,{\".fa-envelope-open:before\":false},[\"content:\\\"\\uf2b6\\\"\"]],[false,{\".fa-envelope-open-text:before\":false},[\"content:\\\"\\uf658\\\"\"]],[false,{\".fa-envelopes-bulk:before\":false,\".fa-mail-bulk:before\":false},[\"content:\\\"\\uf674\\\"\"]],[false,{\".fa-equals:before\":false},[\"content:\\\"=\\\"\"]],[false,{\".fa-eraser:before\":false},[\"content:\\\"\\uf12d\\\"\"]],[false,{\".fa-ethernet:before\":false},[\"content:\\\"\\uf796\\\"\"]],[false,{\".fa-eur:before\":false,\".fa-euro-sign:before\":false,\".fa-euro:before\":false},[\"content:\\\"\\uf153\\\"\"]],[false,{\".fa-exclamation:before\":false},[\"content:\\\"!\\\"\"]],[false,{\".fa-expand:before\":false},[\"content:\\\"\\uf065\\\"\"]],[false,{\".fa-explosion:before\":false},[\"content:\\\"\\ue4e9\\\"\"]],[false,{\".fa-eye:before\":false},[\"content:\\\"\\uf06e\\\"\"]],[false,{\".fa-eye-dropper-empty:before\":false,\".fa-eye-dropper:before\":false,\".fa-eyedropper:before\":false},[\"content:\\\"\\uf1fb\\\"\"]],[false,{\".fa-eye-low-vision:before\":false,\".fa-low-vision:before\":false},[\"content:\\\"\\uf2a8\\\"\"]],[false,{\".fa-eye-slash:before\":false},[\"content:\\\"\\uf070\\\"\"]],[false,{\".fa-f:before\":false},[\"content:\\\"F\\\"\"]],[false,{\".fa-angry:before\":false,\".fa-face-angry:before\":false},[\"content:\\\"\\uf556\\\"\"]],[false,{\".fa-dizzy:before\":false,\".fa-face-dizzy:before\":false},[\"content:\\\"\\uf567\\\"\"]],[false,{\".fa-face-flushed:before\":false,\".fa-flushed:before\":false},[\"content:\\\"\\uf579\\\"\"]],[false,{\".fa-face-frown:before\":false,\".fa-frown:before\":false},[\"content:\\\"\\uf119\\\"\"]],[false,{\".fa-face-frown-open:before\":false,\".fa-frown-open:before\":false},[\"content:\\\"\\uf57a\\\"\"]],[false,{\".fa-face-grimace:before\":false,\".fa-grimace:before\":false},[\"content:\\\"\\uf57f\\\"\"]],[false,{\".fa-face-grin:before\":false,\".fa-grin:before\":false},[\"content:\\\"\\uf580\\\"\"]],[false,{\".fa-face-grin-beam:before\":false,\".fa-grin-beam:before\":false},[\"content:\\\"\\uf582\\\"\"]],[false,{\".fa-face-grin-beam-sweat:before\":false,\".fa-grin-beam-sweat:before\":false},[\"content:\\\"\\uf583\\\"\"]],[false,{\".fa-face-grin-hearts:before\":false,\".fa-grin-hearts:before\":false},[\"content:\\\"\\uf584\\\"\"]],[false,{\".fa-face-grin-squint:before\":false,\".fa-grin-squint:before\":false},[\"content:\\\"\\uf585\\\"\"]],[false,{\".fa-face-grin-squint-tears:before\":false,\".fa-grin-squint-tears:before\":false},[\"content:\\\"\\uf586\\\"\"]],[false,{\".fa-face-grin-stars:before\":false,\".fa-grin-stars:before\":false},[\"content:\\\"\\uf587\\\"\"]],[false,{\".fa-face-grin-tears:before\":false,\".fa-grin-tears:before\":false},[\"content:\\\"\\uf588\\\"\"]],[false,{\".fa-face-grin-tongue:before\":false,\".fa-grin-tongue:before\":false},[\"content:\\\"\\uf589\\\"\"]],[false,{\".fa-face-grin-tongue-squint:before\":false,\".fa-grin-tongue-squint:before\":false},[\"content:\\\"\\uf58a\\\"\"]],[false,{\".fa-face-grin-tongue-wink:before\":false,\".fa-grin-tongue-wink:before\":false},[\"content:\\\"\\uf58b\\\"\"]],[false,{\".fa-face-grin-wide:before\":false,\".fa-grin-alt:before\":false},[\"content:\\\"\\uf581\\\"\"]],[false,{\".fa-face-grin-wink:before\":false,\".fa-grin-wink:before\":false},[\"content:\\\"\\uf58c\\\"\"]],[false,{\".fa-face-kiss:before\":false,\".fa-kiss:before\":false},[\"content:\\\"\\uf596\\\"\"]],[false,{\".fa-face-kiss-beam:before\":false,\".fa-kiss-beam:before\":false},[\"content:\\\"\\uf597\\\"\"]],[false,{\".fa-face-kiss-wink-heart:before\":false,\".fa-kiss-wink-heart:before\":false},[\"content:\\\"\\uf598\\\"\"]],[false,{\".fa-face-laugh:before\":false,\".fa-laugh:before\":false},[\"content:\\\"\\uf599\\\"\"]],[false,{\".fa-face-laugh-beam:before\":false,\".fa-laugh-beam:before\":false},[\"content:\\\"\\uf59a\\\"\"]],[false,{\".fa-face-laugh-squint:before\":false,\".fa-laugh-squint:before\":false},[\"content:\\\"\\uf59b\\\"\"]],[false,{\".fa-face-laugh-wink:before\":false,\".fa-laugh-wink:before\":false},[\"content:\\\"\\uf59c\\\"\"]],[false,{\".fa-face-meh:before\":false,\".fa-meh:before\":false},[\"content:\\\"\\uf11a\\\"\"]],[false,{\".fa-face-meh-blank:before\":false,\".fa-meh-blank:before\":false},[\"content:\\\"\\uf5a4\\\"\"]],[false,{\".fa-face-rolling-eyes:before\":false,\".fa-meh-rolling-eyes:before\":false},[\"content:\\\"\\uf5a5\\\"\"]],[false,{\".fa-face-sad-cry:before\":false,\".fa-sad-cry:before\":false},[\"content:\\\"\\uf5b3\\\"\"]],[false,{\".fa-face-sad-tear:before\":false,\".fa-sad-tear:before\":false},[\"content:\\\"\\uf5b4\\\"\"]],[false,{\".fa-face-smile:before\":false,\".fa-smile:before\":false},[\"content:\\\"\\uf118\\\"\"]],[false,{\".fa-face-smile-beam:before\":false,\".fa-smile-beam:before\":false},[\"content:\\\"\\uf5b8\\\"\"]],[false,{\".fa-face-smile-wink:before\":false,\".fa-smile-wink:before\":false},[\"content:\\\"\\uf4da\\\"\"]],[false,{\".fa-face-surprise:before\":false,\".fa-surprise:before\":false},[\"content:\\\"\\uf5c2\\\"\"]],[false,{\".fa-face-tired:before\":false,\".fa-tired:before\":false},[\"content:\\\"\\uf5c8\\\"\"]],[false,{\".fa-fan:before\":false},[\"content:\\\"\\uf863\\\"\"]],[false,{\".fa-faucet:before\":false},[\"content:\\\"\\ue005\\\"\"]],[false,{\".fa-faucet-drip:before\":false},[\"content:\\\"\\ue006\\\"\"]],[false,{\".fa-fax:before\":false},[\"content:\\\"\\uf1ac\\\"\"]],[false,{\".fa-feather:before\":false},[\"content:\\\"\\uf52d\\\"\"]],[false,{\".fa-feather-alt:before\":false,\".fa-feather-pointed:before\":false},[\"content:\\\"\\uf56b\\\"\"]],[false,{\".fa-ferry:before\":false},[\"content:\\\"\\ue4ea\\\"\"]],[false,{\".fa-file:before\":false},[\"content:\\\"\\uf15b\\\"\"]],[false,{\".fa-file-arrow-down:before\":false,\".fa-file-download:before\":false},[\"content:\\\"\\uf56d\\\"\"]],[false,{\".fa-file-arrow-up:before\":false,\".fa-file-upload:before\":false},[\"content:\\\"\\uf574\\\"\"]],[false,{\".fa-file-audio:before\":false},[\"content:\\\"\\uf1c7\\\"\"]],[false,{\".fa-file-circle-check:before\":false},[\"content:\\\"\\ue493\\\"\"]],[false,{\".fa-file-circle-exclamation:before\":false},[\"content:\\\"\\ue4eb\\\"\"]],[false,{\".fa-file-circle-minus:before\":false},[\"content:\\\"\\ue4ed\\\"\"]],[false,{\".fa-file-circle-plus:before\":false},[\"content:\\\"\\ue4ee\\\"\"]],[false,{\".fa-file-circle-question:before\":false},[\"content:\\\"\\ue4ef\\\"\"]],[false,{\".fa-file-circle-xmark:before\":false},[\"content:\\\"\\ue494\\\"\"]],[false,{\".fa-file-code:before\":false},[\"content:\\\"\\uf1c9\\\"\"]],[false,{\".fa-file-contract:before\":false},[\"content:\\\"\\uf56c\\\"\"]],[false,{\".fa-file-csv:before\":false},[\"content:\\\"\\uf6dd\\\"\"]],[false,{\".fa-file-excel:before\":false},[\"content:\\\"\\uf1c3\\\"\"]],[false,{\".fa-arrow-right-from-file:before\":false,\".fa-file-export:before\":false},[\"content:\\\"\\uf56e\\\"\"]],[false,{\".fa-file-image:before\":false},[\"content:\\\"\\uf1c5\\\"\"]],[false,{\".fa-arrow-right-to-file:before\":false,\".fa-file-import:before\":false},[\"content:\\\"\\uf56f\\\"\"]],[false,{\".fa-file-invoice:before\":false},[\"content:\\\"\\uf570\\\"\"]],[false,{\".fa-file-invoice-dollar:before\":false},[\"content:\\\"\\uf571\\\"\"]],[false,{\".fa-file-alt:before\":false,\".fa-file-lines:before\":false,\".fa-file-text:before\":false},[\"content:\\\"\\uf15c\\\"\"]],[false,{\".fa-file-medical:before\":false},[\"content:\\\"\\uf477\\\"\"]],[false,{\".fa-file-pdf:before\":false},[\"content:\\\"\\uf1c1\\\"\"]],[false,{\".fa-file-edit:before\":false,\".fa-file-pen:before\":false},[\"content:\\\"\\uf31c\\\"\"]],[false,{\".fa-file-powerpoint:before\":false},[\"content:\\\"\\uf1c4\\\"\"]],[false,{\".fa-file-prescription:before\":false},[\"content:\\\"\\uf572\\\"\"]],[false,{\".fa-file-shield:before\":false},[\"content:\\\"\\ue4f0\\\"\"]],[false,{\".fa-file-signature:before\":false},[\"content:\\\"\\uf573\\\"\"]],[false,{\".fa-file-video:before\":false},[\"content:\\\"\\uf1c8\\\"\"]],[false,{\".fa-file-medical-alt:before\":false,\".fa-file-waveform:before\":false},[\"content:\\\"\\uf478\\\"\"]],[false,{\".fa-file-word:before\":false},[\"content:\\\"\\uf1c2\\\"\"]],[false,{\".fa-file-archive:before\":false,\".fa-file-zipper:before\":false},[\"content:\\\"\\uf1c6\\\"\"]],[false,{\".fa-fill:before\":false},[\"content:\\\"\\uf575\\\"\"]],[false,{\".fa-fill-drip:before\":false},[\"content:\\\"\\uf576\\\"\"]],[false,{\".fa-film:before\":false},[\"content:\\\"\\uf008\\\"\"]],[false,{\".fa-filter:before\":false},[\"content:\\\"\\uf0b0\\\"\"]],[false,{\".fa-filter-circle-dollar:before\":false,\".fa-funnel-dollar:before\":false},[\"content:\\\"\\uf662\\\"\"]],[false,{\".fa-filter-circle-xmark:before\":false},[\"content:\\\"\\ue17b\\\"\"]],[false,{\".fa-fingerprint:before\":false},[\"content:\\\"\\uf577\\\"\"]],[false,{\".fa-fire:before\":false},[\"content:\\\"\\uf06d\\\"\"]],[false,{\".fa-fire-burner:before\":false},[\"content:\\\"\\ue4f1\\\"\"]],[false,{\".fa-fire-extinguisher:before\":false},[\"content:\\\"\\uf134\\\"\"]],[false,{\".fa-fire-alt:before\":false,\".fa-fire-flame-curved:before\":false},[\"content:\\\"\\uf7e4\\\"\"]],[false,{\".fa-burn:before\":false,\".fa-fire-flame-simple:before\":false},[\"content:\\\"\\uf46a\\\"\"]],[false,{\".fa-fish:before\":false},[\"content:\\\"\\uf578\\\"\"]],[false,{\".fa-fish-fins:before\":false},[\"content:\\\"\\ue4f2\\\"\"]],[false,{\".fa-flag:before\":false},[\"content:\\\"\\uf024\\\"\"]],[false,{\".fa-flag-checkered:before\":false},[\"content:\\\"\\uf11e\\\"\"]],[false,{\".fa-flag-usa:before\":false},[\"content:\\\"\\uf74d\\\"\"]],[false,{\".fa-flask:before\":false},[\"content:\\\"\\uf0c3\\\"\"]],[false,{\".fa-flask-vial:before\":false},[\"content:\\\"\\ue4f3\\\"\"]],[false,{\".fa-floppy-disk:before\":false,\".fa-save:before\":false},[\"content:\\\"\\uf0c7\\\"\"]],[false,{\".fa-florin-sign:before\":false},[\"content:\\\"\\ue184\\\"\"]],[false,{\".fa-folder-blank:before\":false,\".fa-folder:before\":false},[\"content:\\\"\\uf07b\\\"\"]],[false,{\".fa-folder-closed:before\":false},[\"content:\\\"\\ue185\\\"\"]],[false,{\".fa-folder-minus:before\":false},[\"content:\\\"\\uf65d\\\"\"]],[false,{\".fa-folder-open:before\":false},[\"content:\\\"\\uf07c\\\"\"]],[false,{\".fa-folder-plus:before\":false},[\"content:\\\"\\uf65e\\\"\"]],[false,{\".fa-folder-tree:before\":false},[\"content:\\\"\\uf802\\\"\"]],[false,{\".fa-font:before\":false},[\"content:\\\"\\uf031\\\"\"]],[false,{\".fa-football-ball:before\":false,\".fa-football:before\":false},[\"content:\\\"\\uf44e\\\"\"]],[false,{\".fa-forward:before\":false},[\"content:\\\"\\uf04e\\\"\"]],[false,{\".fa-fast-forward:before\":false,\".fa-forward-fast:before\":false},[\"content:\\\"\\uf050\\\"\"]],[false,{\".fa-forward-step:before\":false,\".fa-step-forward:before\":false},[\"content:\\\"\\uf051\\\"\"]],[false,{\".fa-franc-sign:before\":false},[\"content:\\\"\\ue18f\\\"\"]],[false,{\".fa-frog:before\":false},[\"content:\\\"\\uf52e\\\"\"]],[false,{\".fa-futbol-ball:before\":false,\".fa-futbol:before\":false,\".fa-soccer-ball:before\":false},[\"content:\\\"\\uf1e3\\\"\"]],[false,{\".fa-g:before\":false},[\"content:\\\"G\\\"\"]],[false,{\".fa-gamepad:before\":false},[\"content:\\\"\\uf11b\\\"\"]],[false,{\".fa-gas-pump:before\":false},[\"content:\\\"\\uf52f\\\"\"]],[false,{\".fa-dashboard:before\":false,\".fa-gauge-med:before\":false,\".fa-gauge:before\":false,\".fa-tachometer-alt-average:before\":false},[\"content:\\\"\\uf624\\\"\"]],[false,{\".fa-gauge-high:before\":false,\".fa-tachometer-alt-fast:before\":false,\".fa-tachometer-alt:before\":false},[\"content:\\\"\\uf625\\\"\"]],[false,{\".fa-gauge-simple-med:before\":false,\".fa-gauge-simple:before\":false,\".fa-tachometer-average:before\":false},[\"content:\\\"\\uf629\\\"\"]],[false,{\".fa-gauge-simple-high:before\":false,\".fa-tachometer-fast:before\":false,\".fa-tachometer:before\":false},[\"content:\\\"\\uf62a\\\"\"]],[false,{\".fa-gavel:before\":false,\".fa-legal:before\":false},[\"content:\\\"\\uf0e3\\\"\"]],[false,{\".fa-cog:before\":false,\".fa-gear:before\":false},[\"content:\\\"\\uf013\\\"\"]],[false,{\".fa-cogs:before\":false,\".fa-gears:before\":false},[\"content:\\\"\\uf085\\\"\"]],[false,{\".fa-gem:before\":false},[\"content:\\\"\\uf3a5\\\"\"]],[false,{\".fa-genderless:before\":false},[\"content:\\\"\\uf22d\\\"\"]],[false,{\".fa-ghost:before\":false},[\"content:\\\"\\uf6e2\\\"\"]],[false,{\".fa-gift:before\":false},[\"content:\\\"\\uf06b\\\"\"]],[false,{\".fa-gifts:before\":false},[\"content:\\\"\\uf79c\\\"\"]],[false,{\".fa-glass-water:before\":false},[\"content:\\\"\\ue4f4\\\"\"]],[false,{\".fa-glass-water-droplet:before\":false},[\"content:\\\"\\ue4f5\\\"\"]],[false,{\".fa-glasses:before\":false},[\"content:\\\"\\uf530\\\"\"]],[false,{\".fa-globe:before\":false},[\"content:\\\"\\uf0ac\\\"\"]],[false,{\".fa-golf-ball-tee:before\":false,\".fa-golf-ball:before\":false},[\"content:\\\"\\uf450\\\"\"]],[false,{\".fa-gopuram:before\":false},[\"content:\\\"\\uf664\\\"\"]],[false,{\".fa-graduation-cap:before\":false,\".fa-mortar-board:before\":false},[\"content:\\\"\\uf19d\\\"\"]],[false,{\".fa-greater-than:before\":false},[\"content:\\\">\\\"\"]],[false,{\".fa-greater-than-equal:before\":false},[\"content:\\\"\\uf532\\\"\"]],[false,{\".fa-grip-horizontal:before\":false,\".fa-grip:before\":false},[\"content:\\\"\\uf58d\\\"\"]],[false,{\".fa-grip-lines:before\":false},[\"content:\\\"\\uf7a4\\\"\"]],[false,{\".fa-grip-lines-vertical:before\":false},[\"content:\\\"\\uf7a5\\\"\"]],[false,{\".fa-grip-vertical:before\":false},[\"content:\\\"\\uf58e\\\"\"]],[false,{\".fa-group-arrows-rotate:before\":false},[\"content:\\\"\\ue4f6\\\"\"]],[false,{\".fa-guarani-sign:before\":false},[\"content:\\\"\\ue19a\\\"\"]],[false,{\".fa-guitar:before\":false},[\"content:\\\"\\uf7a6\\\"\"]],[false,{\".fa-gun:before\":false},[\"content:\\\"\\ue19b\\\"\"]],[false,{\".fa-h:before\":false},[\"content:\\\"H\\\"\"]],[false,{\".fa-hammer:before\":false},[\"content:\\\"\\uf6e3\\\"\"]],[false,{\".fa-hamsa:before\":false},[\"content:\\\"\\uf665\\\"\"]],[false,{\".fa-hand-paper:before\":false,\".fa-hand:before\":false},[\"content:\\\"\\uf256\\\"\"]],[false,{\".fa-hand-back-fist:before\":false,\".fa-hand-rock:before\":false},[\"content:\\\"\\uf255\\\"\"]],[false,{\".fa-allergies:before\":false,\".fa-hand-dots:before\":false},[\"content:\\\"\\uf461\\\"\"]],[false,{\".fa-fist-raised:before\":false,\".fa-hand-fist:before\":false},[\"content:\\\"\\uf6de\\\"\"]],[false,{\".fa-hand-holding:before\":false},[\"content:\\\"\\uf4bd\\\"\"]],[false,{\".fa-hand-holding-dollar:before\":false,\".fa-hand-holding-usd:before\":false},[\"content:\\\"\\uf4c0\\\"\"]],[false,{\".fa-hand-holding-droplet:before\":false,\".fa-hand-holding-water:before\":false},[\"content:\\\"\\uf4c1\\\"\"]],[false,{\".fa-hand-holding-hand:before\":false},[\"content:\\\"\\ue4f7\\\"\"]],[false,{\".fa-hand-holding-heart:before\":false},[\"content:\\\"\\uf4be\\\"\"]],[false,{\".fa-hand-holding-medical:before\":false},[\"content:\\\"\\ue05c\\\"\"]],[false,{\".fa-hand-lizard:before\":false},[\"content:\\\"\\uf258\\\"\"]],[false,{\".fa-hand-middle-finger:before\":false},[\"content:\\\"\\uf806\\\"\"]],[false,{\".fa-hand-peace:before\":false},[\"content:\\\"\\uf25b\\\"\"]],[false,{\".fa-hand-point-down:before\":false},[\"content:\\\"\\uf0a7\\\"\"]],[false,{\".fa-hand-point-left:before\":false},[\"content:\\\"\\uf0a5\\\"\"]],[false,{\".fa-hand-point-right:before\":false},[\"content:\\\"\\uf0a4\\\"\"]],[false,{\".fa-hand-point-up:before\":false},[\"content:\\\"\\uf0a6\\\"\"]],[false,{\".fa-hand-pointer:before\":false},[\"content:\\\"\\uf25a\\\"\"]],[false,{\".fa-hand-scissors:before\":false},[\"content:\\\"\\uf257\\\"\"]],[false,{\".fa-hand-sparkles:before\":false},[\"content:\\\"\\ue05d\\\"\"]],[false,{\".fa-hand-spock:before\":false},[\"content:\\\"\\uf259\\\"\"]],[false,{\".fa-handcuffs:before\":false},[\"content:\\\"\\ue4f8\\\"\"]],[false,{\".fa-hands:before\":false,\".fa-sign-language:before\":false,\".fa-signing:before\":false},[\"content:\\\"\\uf2a7\\\"\"]],[false,{\".fa-american-sign-language-interpreting:before\":false,\".fa-asl-interpreting:before\":false,\".fa-hands-american-sign-language-interpreting:before\":false,\".fa-hands-asl-interpreting:before\":false},[\"content:\\\"\\uf2a3\\\"\"]],[false,{\".fa-hands-bound:before\":false},[\"content:\\\"\\ue4f9\\\"\"]],[false,{\".fa-hands-bubbles:before\":false,\".fa-hands-wash:before\":false},[\"content:\\\"\\ue05e\\\"\"]],[false,{\".fa-hands-clapping:before\":false},[\"content:\\\"\\ue1a8\\\"\"]],[false,{\".fa-hands-holding:before\":false},[\"content:\\\"\\uf4c2\\\"\"]],[false,{\".fa-hands-holding-child:before\":false},[\"content:\\\"\\ue4fa\\\"\"]],[false,{\".fa-hands-holding-circle:before\":false},[\"content:\\\"\\ue4fb\\\"\"]],[false,{\".fa-hands-praying:before\":false,\".fa-praying-hands:before\":false},[\"content:\\\"\\uf684\\\"\"]],[false,{\".fa-handshake:before\":false},[\"content:\\\"\\uf2b5\\\"\"]],[false,{\".fa-hands-helping:before\":false,\".fa-handshake-angle:before\":false},[\"content:\\\"\\uf4c4\\\"\"]],[false,{\".fa-handshake-alt:before\":false,\".fa-handshake-simple:before\":false},[\"content:\\\"\\uf4c6\\\"\"]],[false,{\".fa-handshake-alt-slash:before\":false,\".fa-handshake-simple-slash:before\":false},[\"content:\\\"\\ue05f\\\"\"]],[false,{\".fa-handshake-slash:before\":false},[\"content:\\\"\\ue060\\\"\"]],[false,{\".fa-hanukiah:before\":false},[\"content:\\\"\\uf6e6\\\"\"]],[false,{\".fa-hard-drive:before\":false,\".fa-hdd:before\":false},[\"content:\\\"\\uf0a0\\\"\"]],[false,{\".fa-hashtag:before\":false},[\"content:\\\"#\\\"\"]],[false,{\".fa-hat-cowboy:before\":false},[\"content:\\\"\\uf8c0\\\"\"]],[false,{\".fa-hat-cowboy-side:before\":false},[\"content:\\\"\\uf8c1\\\"\"]],[false,{\".fa-hat-wizard:before\":false},[\"content:\\\"\\uf6e8\\\"\"]],[false,{\".fa-head-side-cough:before\":false},[\"content:\\\"\\ue061\\\"\"]],[false,{\".fa-head-side-cough-slash:before\":false},[\"content:\\\"\\ue062\\\"\"]],[false,{\".fa-head-side-mask:before\":false},[\"content:\\\"\\ue063\\\"\"]],[false,{\".fa-head-side-virus:before\":false},[\"content:\\\"\\ue064\\\"\"]],[false,{\".fa-header:before\":false,\".fa-heading:before\":false},[\"content:\\\"\\uf1dc\\\"\"]],[false,{\".fa-headphones:before\":false},[\"content:\\\"\\uf025\\\"\"]],[false,{\".fa-headphones-alt:before\":false,\".fa-headphones-simple:before\":false},[\"content:\\\"\\uf58f\\\"\"]],[false,{\".fa-headset:before\":false},[\"content:\\\"\\uf590\\\"\"]],[false,{\".fa-heart:before\":false},[\"content:\\\"\\uf004\\\"\"]],[false,{\".fa-heart-circle-bolt:before\":false},[\"content:\\\"\\ue4fc\\\"\"]],[false,{\".fa-heart-circle-check:before\":false},[\"content:\\\"\\ue4fd\\\"\"]],[false,{\".fa-heart-circle-exclamation:before\":false},[\"content:\\\"\\ue4fe\\\"\"]],[false,{\".fa-heart-circle-minus:before\":false},[\"content:\\\"\\ue4ff\\\"\"]],[false,{\".fa-heart-circle-plus:before\":false},[\"content:\\\"\\ue500\\\"\"]],[false,{\".fa-heart-circle-xmark:before\":false},[\"content:\\\"\\ue501\\\"\"]],[false,{\".fa-heart-broken:before\":false,\".fa-heart-crack:before\":false},[\"content:\\\"\\uf7a9\\\"\"]],[false,{\".fa-heart-pulse:before\":false,\".fa-heartbeat:before\":false},[\"content:\\\"\\uf21e\\\"\"]],[false,{\".fa-helicopter:before\":false},[\"content:\\\"\\uf533\\\"\"]],[false,{\".fa-helicopter-symbol:before\":false},[\"content:\\\"\\ue502\\\"\"]],[false,{\".fa-hard-hat:before\":false,\".fa-hat-hard:before\":false,\".fa-helmet-safety:before\":false},[\"content:\\\"\\uf807\\\"\"]],[false,{\".fa-helmet-un:before\":false},[\"content:\\\"\\ue503\\\"\"]],[false,{\".fa-highlighter:before\":false},[\"content:\\\"\\uf591\\\"\"]],[false,{\".fa-hill-avalanche:before\":false},[\"content:\\\"\\ue507\\\"\"]],[false,{\".fa-hill-rockslide:before\":false},[\"content:\\\"\\ue508\\\"\"]],[false,{\".fa-hippo:before\":false},[\"content:\\\"\\uf6ed\\\"\"]],[false,{\".fa-hockey-puck:before\":false},[\"content:\\\"\\uf453\\\"\"]],[false,{\".fa-holly-berry:before\":false},[\"content:\\\"\\uf7aa\\\"\"]],[false,{\".fa-horse:before\":false},[\"content:\\\"\\uf6f0\\\"\"]],[false,{\".fa-horse-head:before\":false},[\"content:\\\"\\uf7ab\\\"\"]],[false,{\".fa-hospital-alt:before\":false,\".fa-hospital-wide:before\":false,\".fa-hospital:before\":false},[\"content:\\\"\\uf0f8\\\"\"]],[false,{\".fa-hospital-user:before\":false},[\"content:\\\"\\uf80d\\\"\"]],[false,{\".fa-hot-tub-person:before\":false,\".fa-hot-tub:before\":false},[\"content:\\\"\\uf593\\\"\"]],[false,{\".fa-hotdog:before\":false},[\"content:\\\"\\uf80f\\\"\"]],[false,{\".fa-hotel:before\":false},[\"content:\\\"\\uf594\\\"\"]],[false,{\".fa-hourglass-2:before\":false,\".fa-hourglass-half:before\":false,\".fa-hourglass:before\":false},[\"content:\\\"\\uf254\\\"\"]],[false,{\".fa-hourglass-empty:before\":false},[\"content:\\\"\\uf252\\\"\"]],[false,{\".fa-hourglass-3:before\":false,\".fa-hourglass-end:before\":false},[\"content:\\\"\\uf253\\\"\"]],[false,{\".fa-hourglass-1:before\":false,\".fa-hourglass-start:before\":false},[\"content:\\\"\\uf251\\\"\"]],[false,{\".fa-home-alt:before\":false,\".fa-home-lg-alt:before\":false,\".fa-home:before\":false,\".fa-house:before\":false},[\"content:\\\"\\uf015\\\"\"]],[false,{\".fa-home-lg:before\":false,\".fa-house-chimney:before\":false},[\"content:\\\"\\ue3af\\\"\"]],[false,{\".fa-house-chimney-crack:before\":false,\".fa-house-damage:before\":false},[\"content:\\\"\\uf6f1\\\"\"]],[false,{\".fa-clinic-medical:before\":false,\".fa-house-chimney-medical:before\":false},[\"content:\\\"\\uf7f2\\\"\"]],[false,{\".fa-house-chimney-user:before\":false},[\"content:\\\"\\ue065\\\"\"]],[false,{\".fa-house-chimney-window:before\":false},[\"content:\\\"\\ue00d\\\"\"]],[false,{\".fa-house-circle-check:before\":false},[\"content:\\\"\\ue509\\\"\"]],[false,{\".fa-house-circle-exclamation:before\":false},[\"content:\\\"\\ue50a\\\"\"]],[false,{\".fa-house-circle-xmark:before\":false},[\"content:\\\"\\ue50b\\\"\"]],[false,{\".fa-house-crack:before\":false},[\"content:\\\"\\ue3b1\\\"\"]],[false,{\".fa-house-fire:before\":false},[\"content:\\\"\\ue50c\\\"\"]],[false,{\".fa-house-flag:before\":false},[\"content:\\\"\\ue50d\\\"\"]],[false,{\".fa-house-flood-water:before\":false},[\"content:\\\"\\ue50e\\\"\"]],[false,{\".fa-house-flood-water-circle-arrow-right:before\":false},[\"content:\\\"\\ue50f\\\"\"]],[false,{\".fa-house-laptop:before\":false,\".fa-laptop-house:before\":false},[\"content:\\\"\\ue066\\\"\"]],[false,{\".fa-house-lock:before\":false},[\"content:\\\"\\ue510\\\"\"]],[false,{\".fa-house-medical:before\":false},[\"content:\\\"\\ue3b2\\\"\"]],[false,{\".fa-house-medical-circle-check:before\":false},[\"content:\\\"\\ue511\\\"\"]],[false,{\".fa-house-medical-circle-exclamation:before\":false},[\"content:\\\"\\ue512\\\"\"]],[false,{\".fa-house-medical-circle-xmark:before\":false},[\"content:\\\"\\ue513\\\"\"]],[false,{\".fa-house-medical-flag:before\":false},[\"content:\\\"\\ue514\\\"\"]],[false,{\".fa-house-signal:before\":false},[\"content:\\\"\\ue012\\\"\"]],[false,{\".fa-house-tsunami:before\":false},[\"content:\\\"\\ue515\\\"\"]],[false,{\".fa-home-user:before\":false,\".fa-house-user:before\":false},[\"content:\\\"\\ue1b0\\\"\"]],[false,{\".fa-hryvnia-sign:before\":false,\".fa-hryvnia:before\":false},[\"content:\\\"\\uf6f2\\\"\"]],[false,{\".fa-hurricane:before\":false},[\"content:\\\"\\uf751\\\"\"]],[false,{\".fa-i:before\":false},[\"content:\\\"I\\\"\"]],[false,{\".fa-i-cursor:before\":false},[\"content:\\\"\\uf246\\\"\"]],[false,{\".fa-ice-cream:before\":false},[\"content:\\\"\\uf810\\\"\"]],[false,{\".fa-icicles:before\":false},[\"content:\\\"\\uf7ad\\\"\"]],[false,{\".fa-heart-music-camera-bolt:before\":false,\".fa-icons:before\":false},[\"content:\\\"\\uf86d\\\"\"]],[false,{\".fa-id-badge:before\":false},[\"content:\\\"\\uf2c1\\\"\"]],[false,{\".fa-drivers-license:before\":false,\".fa-id-card:before\":false},[\"content:\\\"\\uf2c2\\\"\"]],[false,{\".fa-id-card-alt:before\":false,\".fa-id-card-clip:before\":false},[\"content:\\\"\\uf47f\\\"\"]],[false,{\".fa-igloo:before\":false},[\"content:\\\"\\uf7ae\\\"\"]],[false,{\".fa-image:before\":false},[\"content:\\\"\\uf03e\\\"\"]],[false,{\".fa-image-portrait:before\":false,\".fa-portrait:before\":false},[\"content:\\\"\\uf3e0\\\"\"]],[false,{\".fa-images:before\":false},[\"content:\\\"\\uf302\\\"\"]],[false,{\".fa-inbox:before\":false},[\"content:\\\"\\uf01c\\\"\"]],[false,{\".fa-indent:before\":false},[\"content:\\\"\\uf03c\\\"\"]],[false,{\".fa-indian-rupee-sign:before\":false,\".fa-indian-rupee:before\":false,\".fa-inr:before\":false},[\"content:\\\"\\ue1bc\\\"\"]],[false,{\".fa-industry:before\":false},[\"content:\\\"\\uf275\\\"\"]],[false,{\".fa-infinity:before\":false},[\"content:\\\"\\uf534\\\"\"]],[false,{\".fa-info:before\":false},[\"content:\\\"\\uf129\\\"\"]],[false,{\".fa-italic:before\":false},[\"content:\\\"\\uf033\\\"\"]],[false,{\".fa-j:before\":false},[\"content:\\\"J\\\"\"]],[false,{\".fa-jar:before\":false},[\"content:\\\"\\ue516\\\"\"]],[false,{\".fa-jar-wheat:before\":false},[\"content:\\\"\\ue517\\\"\"]],[false,{\".fa-jedi:before\":false},[\"content:\\\"\\uf669\\\"\"]],[false,{\".fa-fighter-jet:before\":false,\".fa-jet-fighter:before\":false},[\"content:\\\"\\uf0fb\\\"\"]],[false,{\".fa-jet-fighter-up:before\":false},[\"content:\\\"\\ue518\\\"\"]],[false,{\".fa-joint:before\":false},[\"content:\\\"\\uf595\\\"\"]],[false,{\".fa-jug-detergent:before\":false},[\"content:\\\"\\ue519\\\"\"]],[false,{\".fa-k:before\":false},[\"content:\\\"K\\\"\"]],[false,{\".fa-kaaba:before\":false},[\"content:\\\"\\uf66b\\\"\"]],[false,{\".fa-key:before\":false},[\"content:\\\"\\uf084\\\"\"]],[false,{\".fa-keyboard:before\":false},[\"content:\\\"\\uf11c\\\"\"]],[false,{\".fa-khanda:before\":false},[\"content:\\\"\\uf66d\\\"\"]],[false,{\".fa-kip-sign:before\":false},[\"content:\\\"\\ue1c4\\\"\"]],[false,{\".fa-first-aid:before\":false,\".fa-kit-medical:before\":false},[\"content:\\\"\\uf479\\\"\"]],[false,{\".fa-kitchen-set:before\":false},[\"content:\\\"\\ue51a\\\"\"]],[false,{\".fa-kiwi-bird:before\":false},[\"content:\\\"\\uf535\\\"\"]],[false,{\".fa-l:before\":false},[\"content:\\\"L\\\"\"]],[false,{\".fa-land-mine-on:before\":false},[\"content:\\\"\\ue51b\\\"\"]],[false,{\".fa-landmark:before\":false},[\"content:\\\"\\uf66f\\\"\"]],[false,{\".fa-landmark-alt:before\":false,\".fa-landmark-dome:before\":false},[\"content:\\\"\\uf752\\\"\"]],[false,{\".fa-landmark-flag:before\":false},[\"content:\\\"\\ue51c\\\"\"]],[false,{\".fa-language:before\":false},[\"content:\\\"\\uf1ab\\\"\"]],[false,{\".fa-laptop:before\":false},[\"content:\\\"\\uf109\\\"\"]],[false,{\".fa-laptop-code:before\":false},[\"content:\\\"\\uf5fc\\\"\"]],[false,{\".fa-laptop-file:before\":false},[\"content:\\\"\\ue51d\\\"\"]],[false,{\".fa-laptop-medical:before\":false},[\"content:\\\"\\uf812\\\"\"]],[false,{\".fa-lari-sign:before\":false},[\"content:\\\"\\ue1c8\\\"\"]],[false,{\".fa-layer-group:before\":false},[\"content:\\\"\\uf5fd\\\"\"]],[false,{\".fa-leaf:before\":false},[\"content:\\\"\\uf06c\\\"\"]],[false,{\".fa-left-long:before\":false,\".fa-long-arrow-alt-left:before\":false},[\"content:\\\"\\uf30a\\\"\"]],[false,{\".fa-arrows-alt-h:before\":false,\".fa-left-right:before\":false},[\"content:\\\"\\uf337\\\"\"]],[false,{\".fa-lemon:before\":false},[\"content:\\\"\\uf094\\\"\"]],[false,{\".fa-less-than:before\":false},[\"content:\\\"<\\\"\"]],[false,{\".fa-less-than-equal:before\":false},[\"content:\\\"\\uf537\\\"\"]],[false,{\".fa-life-ring:before\":false},[\"content:\\\"\\uf1cd\\\"\"]],[false,{\".fa-lightbulb:before\":false},[\"content:\\\"\\uf0eb\\\"\"]],[false,{\".fa-lines-leaning:before\":false},[\"content:\\\"\\ue51e\\\"\"]],[false,{\".fa-chain:before\":false,\".fa-link:before\":false},[\"content:\\\"\\uf0c1\\\"\"]],[false,{\".fa-chain-broken:before\":false,\".fa-chain-slash:before\":false,\".fa-link-slash:before\":false,\".fa-unlink:before\":false},[\"content:\\\"\\uf127\\\"\"]],[false,{\".fa-lira-sign:before\":false},[\"content:\\\"\\uf195\\\"\"]],[false,{\".fa-list-squares:before\":false,\".fa-list:before\":false},[\"content:\\\"\\uf03a\\\"\"]],[false,{\".fa-list-check:before\":false,\".fa-tasks:before\":false},[\"content:\\\"\\uf0ae\\\"\"]],[false,{\".fa-list-1-2:before\":false,\".fa-list-numeric:before\":false,\".fa-list-ol:before\":false},[\"content:\\\"\\uf0cb\\\"\"]],[false,{\".fa-list-dots:before\":false,\".fa-list-ul:before\":false},[\"content:\\\"\\uf0ca\\\"\"]],[false,{\".fa-litecoin-sign:before\":false},[\"content:\\\"\\ue1d3\\\"\"]],[false,{\".fa-location-arrow:before\":false},[\"content:\\\"\\uf124\\\"\"]],[false,{\".fa-location-crosshairs:before\":false,\".fa-location:before\":false},[\"content:\\\"\\uf601\\\"\"]],[false,{\".fa-location-dot:before\":false,\".fa-map-marker-alt:before\":false},[\"content:\\\"\\uf3c5\\\"\"]],[false,{\".fa-location-pin:before\":false,\".fa-map-marker:before\":false},[\"content:\\\"\\uf041\\\"\"]],[false,{\".fa-location-pin-lock:before\":false},[\"content:\\\"\\ue51f\\\"\"]],[false,{\".fa-lock:before\":false},[\"content:\\\"\\uf023\\\"\"]],[false,{\".fa-lock-open:before\":false},[\"content:\\\"\\uf3c1\\\"\"]],[false,{\".fa-locust:before\":false},[\"content:\\\"\\ue520\\\"\"]],[false,{\".fa-lungs:before\":false},[\"content:\\\"\\uf604\\\"\"]],[false,{\".fa-lungs-virus:before\":false},[\"content:\\\"\\ue067\\\"\"]],[false,{\".fa-m:before\":false},[\"content:\\\"M\\\"\"]],[false,{\".fa-magnet:before\":false},[\"content:\\\"\\uf076\\\"\"]],[false,{\".fa-magnifying-glass:before\":false,\".fa-search:before\":false},[\"content:\\\"\\uf002\\\"\"]],[false,{\".fa-magnifying-glass-arrow-right:before\":false},[\"content:\\\"\\ue521\\\"\"]],[false,{\".fa-magnifying-glass-chart:before\":false},[\"content:\\\"\\ue522\\\"\"]],[false,{\".fa-magnifying-glass-dollar:before\":false,\".fa-search-dollar:before\":false},[\"content:\\\"\\uf688\\\"\"]],[false,{\".fa-magnifying-glass-location:before\":false,\".fa-search-location:before\":false},[\"content:\\\"\\uf689\\\"\"]],[false,{\".fa-magnifying-glass-minus:before\":false,\".fa-search-minus:before\":false},[\"content:\\\"\\uf010\\\"\"]],[false,{\".fa-magnifying-glass-plus:before\":false,\".fa-search-plus:before\":false},[\"content:\\\"\\uf00e\\\"\"]],[false,{\".fa-manat-sign:before\":false},[\"content:\\\"\\ue1d5\\\"\"]],[false,{\".fa-map:before\":false},[\"content:\\\"\\uf279\\\"\"]],[false,{\".fa-map-location:before\":false,\".fa-map-marked:before\":false},[\"content:\\\"\\uf59f\\\"\"]],[false,{\".fa-map-location-dot:before\":false,\".fa-map-marked-alt:before\":false},[\"content:\\\"\\uf5a0\\\"\"]],[false,{\".fa-map-pin:before\":false},[\"content:\\\"\\uf276\\\"\"]],[false,{\".fa-marker:before\":false},[\"content:\\\"\\uf5a1\\\"\"]],[false,{\".fa-mars:before\":false},[\"content:\\\"\\uf222\\\"\"]],[false,{\".fa-mars-and-venus:before\":false},[\"content:\\\"\\uf224\\\"\"]],[false,{\".fa-mars-and-venus-burst:before\":false},[\"content:\\\"\\ue523\\\"\"]],[false,{\".fa-mars-double:before\":false},[\"content:\\\"\\uf227\\\"\"]],[false,{\".fa-mars-stroke:before\":false},[\"content:\\\"\\uf229\\\"\"]],[false,{\".fa-mars-stroke-h:before\":false,\".fa-mars-stroke-right:before\":false},[\"content:\\\"\\uf22b\\\"\"]],[false,{\".fa-mars-stroke-up:before\":false,\".fa-mars-stroke-v:before\":false},[\"content:\\\"\\uf22a\\\"\"]],[false,{\".fa-glass-martini-alt:before\":false,\".fa-martini-glass:before\":false},[\"content:\\\"\\uf57b\\\"\"]],[false,{\".fa-cocktail:before\":false,\".fa-martini-glass-citrus:before\":false},[\"content:\\\"\\uf561\\\"\"]],[false,{\".fa-glass-martini:before\":false,\".fa-martini-glass-empty:before\":false},[\"content:\\\"\\uf000\\\"\"]],[false,{\".fa-mask:before\":false},[\"content:\\\"\\uf6fa\\\"\"]],[false,{\".fa-mask-face:before\":false},[\"content:\\\"\\ue1d7\\\"\"]],[false,{\".fa-mask-ventilator:before\":false},[\"content:\\\"\\ue524\\\"\"]],[false,{\".fa-masks-theater:before\":false,\".fa-theater-masks:before\":false},[\"content:\\\"\\uf630\\\"\"]],[false,{\".fa-mattress-pillow:before\":false},[\"content:\\\"\\ue525\\\"\"]],[false,{\".fa-expand-arrows-alt:before\":false,\".fa-maximize:before\":false},[\"content:\\\"\\uf31e\\\"\"]],[false,{\".fa-medal:before\":false},[\"content:\\\"\\uf5a2\\\"\"]],[false,{\".fa-memory:before\":false},[\"content:\\\"\\uf538\\\"\"]],[false,{\".fa-menorah:before\":false},[\"content:\\\"\\uf676\\\"\"]],[false,{\".fa-mercury:before\":false},[\"content:\\\"\\uf223\\\"\"]],[false,{\".fa-comment-alt:before\":false,\".fa-message:before\":false},[\"content:\\\"\\uf27a\\\"\"]],[false,{\".fa-meteor:before\":false},[\"content:\\\"\\uf753\\\"\"]],[false,{\".fa-microchip:before\":false},[\"content:\\\"\\uf2db\\\"\"]],[false,{\".fa-microphone:before\":false},[\"content:\\\"\\uf130\\\"\"]],[false,{\".fa-microphone-alt:before\":false,\".fa-microphone-lines:before\":false},[\"content:\\\"\\uf3c9\\\"\"]],[false,{\".fa-microphone-alt-slash:before\":false,\".fa-microphone-lines-slash:before\":false},[\"content:\\\"\\uf539\\\"\"]],[false,{\".fa-microphone-slash:before\":false},[\"content:\\\"\\uf131\\\"\"]],[false,{\".fa-microscope:before\":false},[\"content:\\\"\\uf610\\\"\"]],[false,{\".fa-mill-sign:before\":false},[\"content:\\\"\\ue1ed\\\"\"]],[false,{\".fa-compress-arrows-alt:before\":false,\".fa-minimize:before\":false},[\"content:\\\"\\uf78c\\\"\"]],[false,{\".fa-minus:before\":false,\".fa-subtract:before\":false},[\"content:\\\"\\uf068\\\"\"]],[false,{\".fa-mitten:before\":false},[\"content:\\\"\\uf7b5\\\"\"]],[false,{\".fa-mobile-android:before\":false,\".fa-mobile-phone:before\":false,\".fa-mobile:before\":false},[\"content:\\\"\\uf3ce\\\"\"]],[false,{\".fa-mobile-button:before\":false},[\"content:\\\"\\uf10b\\\"\"]],[false,{\".fa-mobile-retro:before\":false},[\"content:\\\"\\ue527\\\"\"]],[false,{\".fa-mobile-android-alt:before\":false,\".fa-mobile-screen:before\":false},[\"content:\\\"\\uf3cf\\\"\"]],[false,{\".fa-mobile-alt:before\":false,\".fa-mobile-screen-button:before\":false},[\"content:\\\"\\uf3cd\\\"\"]],[false,{\".fa-money-bill:before\":false},[\"content:\\\"\\uf0d6\\\"\"]],[false,{\".fa-money-bill-1:before\":false,\".fa-money-bill-alt:before\":false},[\"content:\\\"\\uf3d1\\\"\"]],[false,{\".fa-money-bill-1-wave:before\":false,\".fa-money-bill-wave-alt:before\":false},[\"content:\\\"\\uf53b\\\"\"]],[false,{\".fa-money-bill-transfer:before\":false},[\"content:\\\"\\ue528\\\"\"]],[false,{\".fa-money-bill-trend-up:before\":false},[\"content:\\\"\\ue529\\\"\"]],[false,{\".fa-money-bill-wave:before\":false},[\"content:\\\"\\uf53a\\\"\"]],[false,{\".fa-money-bill-wheat:before\":false},[\"content:\\\"\\ue52a\\\"\"]],[false,{\".fa-money-bills:before\":false},[\"content:\\\"\\ue1f3\\\"\"]],[false,{\".fa-money-check:before\":false},[\"content:\\\"\\uf53c\\\"\"]],[false,{\".fa-money-check-alt:before\":false,\".fa-money-check-dollar:before\":false},[\"content:\\\"\\uf53d\\\"\"]],[false,{\".fa-monument:before\":false},[\"content:\\\"\\uf5a6\\\"\"]],[false,{\".fa-moon:before\":false},[\"content:\\\"\\uf186\\\"\"]],[false,{\".fa-mortar-pestle:before\":false},[\"content:\\\"\\uf5a7\\\"\"]],[false,{\".fa-mosque:before\":false},[\"content:\\\"\\uf678\\\"\"]],[false,{\".fa-mosquito:before\":false},[\"content:\\\"\\ue52b\\\"\"]],[false,{\".fa-mosquito-net:before\":false},[\"content:\\\"\\ue52c\\\"\"]],[false,{\".fa-motorcycle:before\":false},[\"content:\\\"\\uf21c\\\"\"]],[false,{\".fa-mound:before\":false},[\"content:\\\"\\ue52d\\\"\"]],[false,{\".fa-mountain:before\":false},[\"content:\\\"\\uf6fc\\\"\"]],[false,{\".fa-mountain-city:before\":false},[\"content:\\\"\\ue52e\\\"\"]],[false,{\".fa-mountain-sun:before\":false},[\"content:\\\"\\ue52f\\\"\"]],[false,{\".fa-mug-hot:before\":false},[\"content:\\\"\\uf7b6\\\"\"]],[false,{\".fa-coffee:before\":false,\".fa-mug-saucer:before\":false},[\"content:\\\"\\uf0f4\\\"\"]],[false,{\".fa-music:before\":false},[\"content:\\\"\\uf001\\\"\"]],[false,{\".fa-n:before\":false},[\"content:\\\"N\\\"\"]],[false,{\".fa-naira-sign:before\":false},[\"content:\\\"\\ue1f6\\\"\"]],[false,{\".fa-network-wired:before\":false},[\"content:\\\"\\uf6ff\\\"\"]],[false,{\".fa-neuter:before\":false},[\"content:\\\"\\uf22c\\\"\"]],[false,{\".fa-newspaper:before\":false},[\"content:\\\"\\uf1ea\\\"\"]],[false,{\".fa-not-equal:before\":false},[\"content:\\\"\\uf53e\\\"\"]],[false,{\".fa-note-sticky:before\":false,\".fa-sticky-note:before\":false},[\"content:\\\"\\uf249\\\"\"]],[false,{\".fa-notes-medical:before\":false},[\"content:\\\"\\uf481\\\"\"]],[false,{\".fa-o:before\":false},[\"content:\\\"O\\\"\"]],[false,{\".fa-object-group:before\":false},[\"content:\\\"\\uf247\\\"\"]],[false,{\".fa-object-ungroup:before\":false},[\"content:\\\"\\uf248\\\"\"]],[false,{\".fa-oil-can:before\":false},[\"content:\\\"\\uf613\\\"\"]],[false,{\".fa-oil-well:before\":false},[\"content:\\\"\\ue532\\\"\"]],[false,{\".fa-om:before\":false},[\"content:\\\"\\uf679\\\"\"]],[false,{\".fa-otter:before\":false},[\"content:\\\"\\uf700\\\"\"]],[false,{\".fa-dedent:before\":false,\".fa-outdent:before\":false},[\"content:\\\"\\uf03b\\\"\"]],[false,{\".fa-p:before\":false},[\"content:\\\"P\\\"\"]],[false,{\".fa-pager:before\":false},[\"content:\\\"\\uf815\\\"\"]],[false,{\".fa-paint-roller:before\":false},[\"content:\\\"\\uf5aa\\\"\"]],[false,{\".fa-paint-brush:before\":false,\".fa-paintbrush:before\":false},[\"content:\\\"\\uf1fc\\\"\"]],[false,{\".fa-palette:before\":false},[\"content:\\\"\\uf53f\\\"\"]],[false,{\".fa-pallet:before\":false},[\"content:\\\"\\uf482\\\"\"]],[false,{\".fa-panorama:before\":false},[\"content:\\\"\\ue209\\\"\"]],[false,{\".fa-paper-plane:before\":false},[\"content:\\\"\\uf1d8\\\"\"]],[false,{\".fa-paperclip:before\":false},[\"content:\\\"\\uf0c6\\\"\"]],[false,{\".fa-parachute-box:before\":false},[\"content:\\\"\\uf4cd\\\"\"]],[false,{\".fa-paragraph:before\":false},[\"content:\\\"\\uf1dd\\\"\"]],[false,{\".fa-passport:before\":false},[\"content:\\\"\\uf5ab\\\"\"]],[false,{\".fa-file-clipboard:before\":false,\".fa-paste:before\":false},[\"content:\\\"\\uf0ea\\\"\"]],[false,{\".fa-pause:before\":false},[\"content:\\\"\\uf04c\\\"\"]],[false,{\".fa-paw:before\":false},[\"content:\\\"\\uf1b0\\\"\"]],[false,{\".fa-peace:before\":false},[\"content:\\\"\\uf67c\\\"\"]],[false,{\".fa-pen:before\":false},[\"content:\\\"\\uf304\\\"\"]],[false,{\".fa-pen-alt:before\":false,\".fa-pen-clip:before\":false},[\"content:\\\"\\uf305\\\"\"]],[false,{\".fa-pen-fancy:before\":false},[\"content:\\\"\\uf5ac\\\"\"]],[false,{\".fa-pen-nib:before\":false},[\"content:\\\"\\uf5ad\\\"\"]],[false,{\".fa-pen-ruler:before\":false,\".fa-pencil-ruler:before\":false},[\"content:\\\"\\uf5ae\\\"\"]],[false,{\".fa-edit:before\":false,\".fa-pen-to-square:before\":false},[\"content:\\\"\\uf044\\\"\"]],[false,{\".fa-pencil-alt:before\":false,\".fa-pencil:before\":false},[\"content:\\\"\\uf303\\\"\"]],[false,{\".fa-people-arrows-left-right:before\":false,\".fa-people-arrows:before\":false},[\"content:\\\"\\ue068\\\"\"]],[false,{\".fa-people-carry-box:before\":false,\".fa-people-carry:before\":false},[\"content:\\\"\\uf4ce\\\"\"]],[false,{\".fa-people-group:before\":false},[\"content:\\\"\\ue533\\\"\"]],[false,{\".fa-people-line:before\":false},[\"content:\\\"\\ue534\\\"\"]],[false,{\".fa-people-pulling:before\":false},[\"content:\\\"\\ue535\\\"\"]],[false,{\".fa-people-robbery:before\":false},[\"content:\\\"\\ue536\\\"\"]],[false,{\".fa-people-roof:before\":false},[\"content:\\\"\\ue537\\\"\"]],[false,{\".fa-pepper-hot:before\":false},[\"content:\\\"\\uf816\\\"\"]],[false,{\".fa-percent:before\":false,\".fa-percentage:before\":false},[\"content:\\\"%\\\"\"]],[false,{\".fa-male:before\":false,\".fa-person:before\":false},[\"content:\\\"\\uf183\\\"\"]],[false,{\".fa-person-arrow-down-to-line:before\":false},[\"content:\\\"\\ue538\\\"\"]],[false,{\".fa-person-arrow-up-from-line:before\":false},[\"content:\\\"\\ue539\\\"\"]],[false,{\".fa-biking:before\":false,\".fa-person-biking:before\":false},[\"content:\\\"\\uf84a\\\"\"]],[false,{\".fa-person-booth:before\":false},[\"content:\\\"\\uf756\\\"\"]],[false,{\".fa-person-breastfeeding:before\":false},[\"content:\\\"\\ue53a\\\"\"]],[false,{\".fa-person-burst:before\":false},[\"content:\\\"\\ue53b\\\"\"]],[false,{\".fa-person-cane:before\":false},[\"content:\\\"\\ue53c\\\"\"]],[false,{\".fa-person-chalkboard:before\":false},[\"content:\\\"\\ue53d\\\"\"]],[false,{\".fa-person-circle-check:before\":false},[\"content:\\\"\\ue53e\\\"\"]],[false,{\".fa-person-circle-exclamation:before\":false},[\"content:\\\"\\ue53f\\\"\"]],[false,{\".fa-person-circle-minus:before\":false},[\"content:\\\"\\ue540\\\"\"]],[false,{\".fa-person-circle-plus:before\":false},[\"content:\\\"\\ue541\\\"\"]],[false,{\".fa-person-circle-question:before\":false},[\"content:\\\"\\ue542\\\"\"]],[false,{\".fa-person-circle-xmark:before\":false},[\"content:\\\"\\ue543\\\"\"]],[false,{\".fa-digging:before\":false,\".fa-person-digging:before\":false},[\"content:\\\"\\uf85e\\\"\"]],[false,{\".fa-diagnoses:before\":false,\".fa-person-dots-from-line:before\":false},[\"content:\\\"\\uf470\\\"\"]],[false,{\".fa-female:before\":false,\".fa-person-dress:before\":false},[\"content:\\\"\\uf182\\\"\"]],[false,{\".fa-person-dress-burst:before\":false},[\"content:\\\"\\ue544\\\"\"]],[false,{\".fa-person-drowning:before\":false},[\"content:\\\"\\ue545\\\"\"]],[false,{\".fa-person-falling:before\":false},[\"content:\\\"\\ue546\\\"\"]],[false,{\".fa-person-falling-burst:before\":false},[\"content:\\\"\\ue547\\\"\"]],[false,{\".fa-person-half-dress:before\":false},[\"content:\\\"\\ue548\\\"\"]],[false,{\".fa-person-harassing:before\":false},[\"content:\\\"\\ue549\\\"\"]],[false,{\".fa-hiking:before\":false,\".fa-person-hiking:before\":false},[\"content:\\\"\\uf6ec\\\"\"]],[false,{\".fa-person-military-pointing:before\":false},[\"content:\\\"\\ue54a\\\"\"]],[false,{\".fa-person-military-rifle:before\":false},[\"content:\\\"\\ue54b\\\"\"]],[false,{\".fa-person-military-to-person:before\":false},[\"content:\\\"\\ue54c\\\"\"]],[false,{\".fa-person-praying:before\":false,\".fa-pray:before\":false},[\"content:\\\"\\uf683\\\"\"]],[false,{\".fa-person-pregnant:before\":false},[\"content:\\\"\\ue31e\\\"\"]],[false,{\".fa-person-rays:before\":false},[\"content:\\\"\\ue54d\\\"\"]],[false,{\".fa-person-rifle:before\":false},[\"content:\\\"\\ue54e\\\"\"]],[false,{\".fa-person-running:before\":false,\".fa-running:before\":false},[\"content:\\\"\\uf70c\\\"\"]],[false,{\".fa-person-shelter:before\":false},[\"content:\\\"\\ue54f\\\"\"]],[false,{\".fa-person-skating:before\":false,\".fa-skating:before\":false},[\"content:\\\"\\uf7c5\\\"\"]],[false,{\".fa-person-skiing:before\":false,\".fa-skiing:before\":false},[\"content:\\\"\\uf7c9\\\"\"]],[false,{\".fa-person-skiing-nordic:before\":false,\".fa-skiing-nordic:before\":false},[\"content:\\\"\\uf7ca\\\"\"]],[false,{\".fa-person-snowboarding:before\":false,\".fa-snowboarding:before\":false},[\"content:\\\"\\uf7ce\\\"\"]],[false,{\".fa-person-swimming:before\":false,\".fa-swimmer:before\":false},[\"content:\\\"\\uf5c4\\\"\"]],[false,{\".fa-person-through-window:before\":false},[\"content:\\\"\\ue433\\\"\"]],[false,{\".fa-person-walking:before\":false,\".fa-walking:before\":false},[\"content:\\\"\\uf554\\\"\"]],[false,{\".fa-person-walking-arrow-loop-left:before\":false},[\"content:\\\"\\ue551\\\"\"]],[false,{\".fa-person-walking-arrow-right:before\":false},[\"content:\\\"\\ue552\\\"\"]],[false,{\".fa-person-walking-dashed-line-arrow-right:before\":false},[\"content:\\\"\\ue553\\\"\"]],[false,{\".fa-person-walking-luggage:before\":false},[\"content:\\\"\\ue554\\\"\"]],[false,{\".fa-blind:before\":false,\".fa-person-walking-with-cane:before\":false},[\"content:\\\"\\uf29d\\\"\"]],[false,{\".fa-peseta-sign:before\":false},[\"content:\\\"\\ue221\\\"\"]],[false,{\".fa-peso-sign:before\":false},[\"content:\\\"\\ue222\\\"\"]],[false,{\".fa-phone:before\":false},[\"content:\\\"\\uf095\\\"\"]],[false,{\".fa-phone-alt:before\":false,\".fa-phone-flip:before\":false},[\"content:\\\"\\uf879\\\"\"]],[false,{\".fa-phone-slash:before\":false},[\"content:\\\"\\uf3dd\\\"\"]],[false,{\".fa-phone-volume:before\":false,\".fa-volume-control-phone:before\":false},[\"content:\\\"\\uf2a0\\\"\"]],[false,{\".fa-photo-film:before\":false,\".fa-photo-video:before\":false},[\"content:\\\"\\uf87c\\\"\"]],[false,{\".fa-piggy-bank:before\":false},[\"content:\\\"\\uf4d3\\\"\"]],[false,{\".fa-pills:before\":false},[\"content:\\\"\\uf484\\\"\"]],[false,{\".fa-pizza-slice:before\":false},[\"content:\\\"\\uf818\\\"\"]],[false,{\".fa-place-of-worship:before\":false},[\"content:\\\"\\uf67f\\\"\"]],[false,{\".fa-plane:before\":false},[\"content:\\\"\\uf072\\\"\"]],[false,{\".fa-plane-arrival:before\":false},[\"content:\\\"\\uf5af\\\"\"]],[false,{\".fa-plane-circle-check:before\":false},[\"content:\\\"\\ue555\\\"\"]],[false,{\".fa-plane-circle-exclamation:before\":false},[\"content:\\\"\\ue556\\\"\"]],[false,{\".fa-plane-circle-xmark:before\":false},[\"content:\\\"\\ue557\\\"\"]],[false,{\".fa-plane-departure:before\":false},[\"content:\\\"\\uf5b0\\\"\"]],[false,{\".fa-plane-lock:before\":false},[\"content:\\\"\\ue558\\\"\"]],[false,{\".fa-plane-slash:before\":false},[\"content:\\\"\\ue069\\\"\"]],[false,{\".fa-plane-up:before\":false},[\"content:\\\"\\ue22d\\\"\"]],[false,{\".fa-plant-wilt:before\":false},[\"content:\\\"\\ue43b\\\"\"]],[false,{\".fa-plate-wheat:before\":false},[\"content:\\\"\\ue55a\\\"\"]],[false,{\".fa-play:before\":false},[\"content:\\\"\\uf04b\\\"\"]],[false,{\".fa-plug:before\":false},[\"content:\\\"\\uf1e6\\\"\"]],[false,{\".fa-plug-circle-bolt:before\":false},[\"content:\\\"\\ue55b\\\"\"]],[false,{\".fa-plug-circle-check:before\":false},[\"content:\\\"\\ue55c\\\"\"]],[false,{\".fa-plug-circle-exclamation:before\":false},[\"content:\\\"\\ue55d\\\"\"]],[false,{\".fa-plug-circle-minus:before\":false},[\"content:\\\"\\ue55e\\\"\"]],[false,{\".fa-plug-circle-plus:before\":false},[\"content:\\\"\\ue55f\\\"\"]],[false,{\".fa-plug-circle-xmark:before\":false},[\"content:\\\"\\ue560\\\"\"]],[false,{\".fa-add:before\":false,\".fa-plus:before\":false},[\"content:\\\"+\\\"\"]],[false,{\".fa-plus-minus:before\":false},[\"content:\\\"\\ue43c\\\"\"]],[false,{\".fa-podcast:before\":false},[\"content:\\\"\\uf2ce\\\"\"]],[false,{\".fa-poo:before\":false},[\"content:\\\"\\uf2fe\\\"\"]],[false,{\".fa-poo-bolt:before\":false,\".fa-poo-storm:before\":false},[\"content:\\\"\\uf75a\\\"\"]],[false,{\".fa-poop:before\":false},[\"content:\\\"\\uf619\\\"\"]],[false,{\".fa-power-off:before\":false},[\"content:\\\"\\uf011\\\"\"]],[false,{\".fa-prescription:before\":false},[\"content:\\\"\\uf5b1\\\"\"]],[false,{\".fa-prescription-bottle:before\":false},[\"content:\\\"\\uf485\\\"\"]],[false,{\".fa-prescription-bottle-alt:before\":false,\".fa-prescription-bottle-medical:before\":false},[\"content:\\\"\\uf486\\\"\"]],[false,{\".fa-print:before\":false},[\"content:\\\"\\uf02f\\\"\"]],[false,{\".fa-pump-medical:before\":false},[\"content:\\\"\\ue06a\\\"\"]],[false,{\".fa-pump-soap:before\":false},[\"content:\\\"\\ue06b\\\"\"]],[false,{\".fa-puzzle-piece:before\":false},[\"content:\\\"\\uf12e\\\"\"]],[false,{\".fa-q:before\":false},[\"content:\\\"Q\\\"\"]],[false,{\".fa-qrcode:before\":false},[\"content:\\\"\\uf029\\\"\"]],[false,{\".fa-question:before\":false},[\"content:\\\"?\\\"\"]],[false,{\".fa-quote-left-alt:before\":false,\".fa-quote-left:before\":false},[\"content:\\\"\\uf10d\\\"\"]],[false,{\".fa-quote-right-alt:before\":false,\".fa-quote-right:before\":false},[\"content:\\\"\\uf10e\\\"\"]],[false,{\".fa-r:before\":false},[\"content:\\\"R\\\"\"]],[false,{\".fa-radiation:before\":false},[\"content:\\\"\\uf7b9\\\"\"]],[false,{\".fa-radio:before\":false},[\"content:\\\"\\uf8d7\\\"\"]],[false,{\".fa-rainbow:before\":false},[\"content:\\\"\\uf75b\\\"\"]],[false,{\".fa-ranking-star:before\":false},[\"content:\\\"\\ue561\\\"\"]],[false,{\".fa-receipt:before\":false},[\"content:\\\"\\uf543\\\"\"]],[false,{\".fa-record-vinyl:before\":false},[\"content:\\\"\\uf8d9\\\"\"]],[false,{\".fa-ad:before\":false,\".fa-rectangle-ad:before\":false},[\"content:\\\"\\uf641\\\"\"]],[false,{\".fa-list-alt:before\":false,\".fa-rectangle-list:before\":false},[\"content:\\\"\\uf022\\\"\"]],[false,{\".fa-rectangle-times:before\":false,\".fa-rectangle-xmark:before\":false,\".fa-times-rectangle:before\":false,\".fa-window-close:before\":false},[\"content:\\\"\\uf410\\\"\"]],[false,{\".fa-recycle:before\":false},[\"content:\\\"\\uf1b8\\\"\"]],[false,{\".fa-registered:before\":false},[\"content:\\\"\\uf25d\\\"\"]],[false,{\".fa-repeat:before\":false},[\"content:\\\"\\uf363\\\"\"]],[false,{\".fa-mail-reply:before\":false,\".fa-reply:before\":false},[\"content:\\\"\\uf3e5\\\"\"]],[false,{\".fa-mail-reply-all:before\":false,\".fa-reply-all:before\":false},[\"content:\\\"\\uf122\\\"\"]],[false,{\".fa-republican:before\":false},[\"content:\\\"\\uf75e\\\"\"]],[false,{\".fa-restroom:before\":false},[\"content:\\\"\\uf7bd\\\"\"]],[false,{\".fa-retweet:before\":false},[\"content:\\\"\\uf079\\\"\"]],[false,{\".fa-ribbon:before\":false},[\"content:\\\"\\uf4d6\\\"\"]],[false,{\".fa-right-from-bracket:before\":false,\".fa-sign-out-alt:before\":false},[\"content:\\\"\\uf2f5\\\"\"]],[false,{\".fa-exchange-alt:before\":false,\".fa-right-left:before\":false},[\"content:\\\"\\uf362\\\"\"]],[false,{\".fa-long-arrow-alt-right:before\":false,\".fa-right-long:before\":false},[\"content:\\\"\\uf30b\\\"\"]],[false,{\".fa-right-to-bracket:before\":false,\".fa-sign-in-alt:before\":false},[\"content:\\\"\\uf2f6\\\"\"]],[false,{\".fa-ring:before\":false},[\"content:\\\"\\uf70b\\\"\"]],[false,{\".fa-road:before\":false},[\"content:\\\"\\uf018\\\"\"]],[false,{\".fa-road-barrier:before\":false},[\"content:\\\"\\ue562\\\"\"]],[false,{\".fa-road-bridge:before\":false},[\"content:\\\"\\ue563\\\"\"]],[false,{\".fa-road-circle-check:before\":false},[\"content:\\\"\\ue564\\\"\"]],[false,{\".fa-road-circle-exclamation:before\":false},[\"content:\\\"\\ue565\\\"\"]],[false,{\".fa-road-circle-xmark:before\":false},[\"content:\\\"\\ue566\\\"\"]],[false,{\".fa-road-lock:before\":false},[\"content:\\\"\\ue567\\\"\"]],[false,{\".fa-road-spikes:before\":false},[\"content:\\\"\\ue568\\\"\"]],[false,{\".fa-robot:before\":false},[\"content:\\\"\\uf544\\\"\"]],[false,{\".fa-rocket:before\":false},[\"content:\\\"\\uf135\\\"\"]],[false,{\".fa-rotate:before\":false,\".fa-sync-alt:before\":false},[\"content:\\\"\\uf2f1\\\"\"]],[false,{\".fa-rotate-back:before\":false,\".fa-rotate-backward:before\":false,\".fa-rotate-left:before\":false,\".fa-undo-alt:before\":false},[\"content:\\\"\\uf2ea\\\"\"]],[false,{\".fa-redo-alt:before\":false,\".fa-rotate-forward:before\":false,\".fa-rotate-right:before\":false},[\"content:\\\"\\uf2f9\\\"\"]],[false,{\".fa-route:before\":false},[\"content:\\\"\\uf4d7\\\"\"]],[false,{\".fa-feed:before\":false,\".fa-rss:before\":false},[\"content:\\\"\\uf09e\\\"\"]],[false,{\".fa-rouble:before\":false,\".fa-rub:before\":false,\".fa-ruble-sign:before\":false,\".fa-ruble:before\":false},[\"content:\\\"\\uf158\\\"\"]],[false,{\".fa-rug:before\":false},[\"content:\\\"\\ue569\\\"\"]],[false,{\".fa-ruler:before\":false},[\"content:\\\"\\uf545\\\"\"]],[false,{\".fa-ruler-combined:before\":false},[\"content:\\\"\\uf546\\\"\"]],[false,{\".fa-ruler-horizontal:before\":false},[\"content:\\\"\\uf547\\\"\"]],[false,{\".fa-ruler-vertical:before\":false},[\"content:\\\"\\uf548\\\"\"]],[false,{\".fa-rupee-sign:before\":false,\".fa-rupee:before\":false},[\"content:\\\"\\uf156\\\"\"]],[false,{\".fa-rupiah-sign:before\":false},[\"content:\\\"\\ue23d\\\"\"]],[false,{\".fa-s:before\":false},[\"content:\\\"S\\\"\"]],[false,{\".fa-sack-dollar:before\":false},[\"content:\\\"\\uf81d\\\"\"]],[false,{\".fa-sack-xmark:before\":false},[\"content:\\\"\\ue56a\\\"\"]],[false,{\".fa-sailboat:before\":false},[\"content:\\\"\\ue445\\\"\"]],[false,{\".fa-satellite:before\":false},[\"content:\\\"\\uf7bf\\\"\"]],[false,{\".fa-satellite-dish:before\":false},[\"content:\\\"\\uf7c0\\\"\"]],[false,{\".fa-balance-scale:before\":false,\".fa-scale-balanced:before\":false},[\"content:\\\"\\uf24e\\\"\"]],[false,{\".fa-balance-scale-left:before\":false,\".fa-scale-unbalanced:before\":false},[\"content:\\\"\\uf515\\\"\"]],[false,{\".fa-balance-scale-right:before\":false,\".fa-scale-unbalanced-flip:before\":false},[\"content:\\\"\\uf516\\\"\"]],[false,{\".fa-school:before\":false},[\"content:\\\"\\uf549\\\"\"]],[false,{\".fa-school-circle-check:before\":false},[\"content:\\\"\\ue56b\\\"\"]],[false,{\".fa-school-circle-exclamation:before\":false},[\"content:\\\"\\ue56c\\\"\"]],[false,{\".fa-school-circle-xmark:before\":false},[\"content:\\\"\\ue56d\\\"\"]],[false,{\".fa-school-flag:before\":false},[\"content:\\\"\\ue56e\\\"\"]],[false,{\".fa-school-lock:before\":false},[\"content:\\\"\\ue56f\\\"\"]],[false,{\".fa-cut:before\":false,\".fa-scissors:before\":false},[\"content:\\\"\\uf0c4\\\"\"]],[false,{\".fa-screwdriver:before\":false},[\"content:\\\"\\uf54a\\\"\"]],[false,{\".fa-screwdriver-wrench:before\":false,\".fa-tools:before\":false},[\"content:\\\"\\uf7d9\\\"\"]],[false,{\".fa-scroll:before\":false},[\"content:\\\"\\uf70e\\\"\"]],[false,{\".fa-scroll-torah:before\":false,\".fa-torah:before\":false},[\"content:\\\"\\uf6a0\\\"\"]],[false,{\".fa-sd-card:before\":false},[\"content:\\\"\\uf7c2\\\"\"]],[false,{\".fa-section:before\":false},[\"content:\\\"\\ue447\\\"\"]],[false,{\".fa-seedling:before\":false,\".fa-sprout:before\":false},[\"content:\\\"\\uf4d8\\\"\"]],[false,{\".fa-server:before\":false},[\"content:\\\"\\uf233\\\"\"]],[false,{\".fa-shapes:before\":false,\".fa-triangle-circle-square:before\":false},[\"content:\\\"\\uf61f\\\"\"]],[false,{\".fa-arrow-turn-right:before\":false,\".fa-mail-forward:before\":false,\".fa-share:before\":false},[\"content:\\\"\\uf064\\\"\"]],[false,{\".fa-share-from-square:before\":false,\".fa-share-square:before\":false},[\"content:\\\"\\uf14d\\\"\"]],[false,{\".fa-share-alt:before\":false,\".fa-share-nodes:before\":false},[\"content:\\\"\\uf1e0\\\"\"]],[false,{\".fa-sheet-plastic:before\":false},[\"content:\\\"\\ue571\\\"\"]],[false,{\".fa-ils:before\":false,\".fa-shekel-sign:before\":false,\".fa-shekel:before\":false,\".fa-sheqel-sign:before\":false,\".fa-sheqel:before\":false},[\"content:\\\"\\uf20b\\\"\"]],[false,{\".fa-shield-blank:before\":false,\".fa-shield:before\":false},[\"content:\\\"\\uf132\\\"\"]],[false,{\".fa-shield-cat:before\":false},[\"content:\\\"\\ue572\\\"\"]],[false,{\".fa-shield-dog:before\":false},[\"content:\\\"\\ue573\\\"\"]],[false,{\".fa-shield-alt:before\":false,\".fa-shield-halved:before\":false},[\"content:\\\"\\uf3ed\\\"\"]],[false,{\".fa-shield-heart:before\":false},[\"content:\\\"\\ue574\\\"\"]],[false,{\".fa-shield-virus:before\":false},[\"content:\\\"\\ue06c\\\"\"]],[false,{\".fa-ship:before\":false},[\"content:\\\"\\uf21a\\\"\"]],[false,{\".fa-shirt:before\":false,\".fa-t-shirt:before\":false,\".fa-tshirt:before\":false},[\"content:\\\"\\uf553\\\"\"]],[false,{\".fa-shoe-prints:before\":false},[\"content:\\\"\\uf54b\\\"\"]],[false,{\".fa-shop:before\":false,\".fa-store-alt:before\":false},[\"content:\\\"\\uf54f\\\"\"]],[false,{\".fa-shop-lock:before\":false},[\"content:\\\"\\ue4a5\\\"\"]],[false,{\".fa-shop-slash:before\":false,\".fa-store-alt-slash:before\":false},[\"content:\\\"\\ue070\\\"\"]],[false,{\".fa-shower:before\":false},[\"content:\\\"\\uf2cc\\\"\"]],[false,{\".fa-shrimp:before\":false},[\"content:\\\"\\ue448\\\"\"]],[false,{\".fa-random:before\":false,\".fa-shuffle:before\":false},[\"content:\\\"\\uf074\\\"\"]],[false,{\".fa-shuttle-space:before\":false,\".fa-space-shuttle:before\":false},[\"content:\\\"\\uf197\\\"\"]],[false,{\".fa-sign-hanging:before\":false,\".fa-sign:before\":false},[\"content:\\\"\\uf4d9\\\"\"]],[false,{\".fa-signal-5:before\":false,\".fa-signal-perfect:before\":false,\".fa-signal:before\":false},[\"content:\\\"\\uf012\\\"\"]],[false,{\".fa-signature:before\":false},[\"content:\\\"\\uf5b7\\\"\"]],[false,{\".fa-map-signs:before\":false,\".fa-signs-post:before\":false},[\"content:\\\"\\uf277\\\"\"]],[false,{\".fa-sim-card:before\":false},[\"content:\\\"\\uf7c4\\\"\"]],[false,{\".fa-sink:before\":false},[\"content:\\\"\\ue06d\\\"\"]],[false,{\".fa-sitemap:before\":false},[\"content:\\\"\\uf0e8\\\"\"]],[false,{\".fa-skull:before\":false},[\"content:\\\"\\uf54c\\\"\"]],[false,{\".fa-skull-crossbones:before\":false},[\"content:\\\"\\uf714\\\"\"]],[false,{\".fa-slash:before\":false},[\"content:\\\"\\uf715\\\"\"]],[false,{\".fa-sleigh:before\":false},[\"content:\\\"\\uf7cc\\\"\"]],[false,{\".fa-sliders-h:before\":false,\".fa-sliders:before\":false},[\"content:\\\"\\uf1de\\\"\"]],[false,{\".fa-smog:before\":false},[\"content:\\\"\\uf75f\\\"\"]],[false,{\".fa-smoking:before\":false},[\"content:\\\"\\uf48d\\\"\"]],[false,{\".fa-snowflake:before\":false},[\"content:\\\"\\uf2dc\\\"\"]],[false,{\".fa-snowman:before\":false},[\"content:\\\"\\uf7d0\\\"\"]],[false,{\".fa-snowplow:before\":false},[\"content:\\\"\\uf7d2\\\"\"]],[false,{\".fa-soap:before\":false},[\"content:\\\"\\ue06e\\\"\"]],[false,{\".fa-socks:before\":false},[\"content:\\\"\\uf696\\\"\"]],[false,{\".fa-solar-panel:before\":false},[\"content:\\\"\\uf5ba\\\"\"]],[false,{\".fa-sort:before\":false,\".fa-unsorted:before\":false},[\"content:\\\"\\uf0dc\\\"\"]],[false,{\".fa-sort-desc:before\":false,\".fa-sort-down:before\":false},[\"content:\\\"\\uf0dd\\\"\"]],[false,{\".fa-sort-asc:before\":false,\".fa-sort-up:before\":false},[\"content:\\\"\\uf0de\\\"\"]],[false,{\".fa-spa:before\":false},[\"content:\\\"\\uf5bb\\\"\"]],[false,{\".fa-pastafarianism:before\":false,\".fa-spaghetti-monster-flying:before\":false},[\"content:\\\"\\uf67b\\\"\"]],[false,{\".fa-spell-check:before\":false},[\"content:\\\"\\uf891\\\"\"]],[false,{\".fa-spider:before\":false},[\"content:\\\"\\uf717\\\"\"]],[false,{\".fa-spinner:before\":false},[\"content:\\\"\\uf110\\\"\"]],[false,{\".fa-splotch:before\":false},[\"content:\\\"\\uf5bc\\\"\"]],[false,{\".fa-spoon:before\":false,\".fa-utensil-spoon:before\":false},[\"content:\\\"\\uf2e5\\\"\"]],[false,{\".fa-spray-can:before\":false},[\"content:\\\"\\uf5bd\\\"\"]],[false,{\".fa-air-freshener:before\":false,\".fa-spray-can-sparkles:before\":false},[\"content:\\\"\\uf5d0\\\"\"]],[false,{\".fa-square:before\":false},[\"content:\\\"\\uf0c8\\\"\"]],[false,{\".fa-external-link-square:before\":false,\".fa-square-arrow-up-right:before\":false},[\"content:\\\"\\uf14c\\\"\"]],[false,{\".fa-caret-square-down:before\":false,\".fa-square-caret-down:before\":false},[\"content:\\\"\\uf150\\\"\"]],[false,{\".fa-caret-square-left:before\":false,\".fa-square-caret-left:before\":false},[\"content:\\\"\\uf191\\\"\"]],[false,{\".fa-caret-square-right:before\":false,\".fa-square-caret-right:before\":false},[\"content:\\\"\\uf152\\\"\"]],[false,{\".fa-caret-square-up:before\":false,\".fa-square-caret-up:before\":false},[\"content:\\\"\\uf151\\\"\"]],[false,{\".fa-check-square:before\":false,\".fa-square-check:before\":false},[\"content:\\\"\\uf14a\\\"\"]],[false,{\".fa-envelope-square:before\":false,\".fa-square-envelope:before\":false},[\"content:\\\"\\uf199\\\"\"]],[false,{\".fa-square-full:before\":false},[\"content:\\\"\\uf45c\\\"\"]],[false,{\".fa-h-square:before\":false,\".fa-square-h:before\":false},[\"content:\\\"\\uf0fd\\\"\"]],[false,{\".fa-minus-square:before\":false,\".fa-square-minus:before\":false},[\"content:\\\"\\uf146\\\"\"]],[false,{\".fa-square-nfi:before\":false},[\"content:\\\"\\ue576\\\"\"]],[false,{\".fa-parking:before\":false,\".fa-square-parking:before\":false},[\"content:\\\"\\uf540\\\"\"]],[false,{\".fa-pen-square:before\":false,\".fa-pencil-square:before\":false,\".fa-square-pen:before\":false},[\"content:\\\"\\uf14b\\\"\"]],[false,{\".fa-square-person-confined:before\":false},[\"content:\\\"\\ue577\\\"\"]],[false,{\".fa-phone-square:before\":false,\".fa-square-phone:before\":false},[\"content:\\\"\\uf098\\\"\"]],[false,{\".fa-phone-square-alt:before\":false,\".fa-square-phone-flip:before\":false},[\"content:\\\"\\uf87b\\\"\"]],[false,{\".fa-plus-square:before\":false,\".fa-square-plus:before\":false},[\"content:\\\"\\uf0fe\\\"\"]],[false,{\".fa-poll-h:before\":false,\".fa-square-poll-horizontal:before\":false},[\"content:\\\"\\uf682\\\"\"]],[false,{\".fa-poll:before\":false,\".fa-square-poll-vertical:before\":false},[\"content:\\\"\\uf681\\\"\"]],[false,{\".fa-square-root-alt:before\":false,\".fa-square-root-variable:before\":false},[\"content:\\\"\\uf698\\\"\"]],[false,{\".fa-rss-square:before\":false,\".fa-square-rss:before\":false},[\"content:\\\"\\uf143\\\"\"]],[false,{\".fa-share-alt-square:before\":false,\".fa-square-share-nodes:before\":false},[\"content:\\\"\\uf1e1\\\"\"]],[false,{\".fa-external-link-square-alt:before\":false,\".fa-square-up-right:before\":false},[\"content:\\\"\\uf360\\\"\"]],[false,{\".fa-square-virus:before\":false},[\"content:\\\"\\ue578\\\"\"]],[false,{\".fa-square-xmark:before\":false,\".fa-times-square:before\":false,\".fa-xmark-square:before\":false},[\"content:\\\"\\uf2d3\\\"\"]],[false,{\".fa-rod-asclepius:before\":false,\".fa-rod-snake:before\":false,\".fa-staff-aesculapius:before\":false,\".fa-staff-snake:before\":false},[\"content:\\\"\\ue579\\\"\"]],[false,{\".fa-stairs:before\":false},[\"content:\\\"\\ue289\\\"\"]],[false,{\".fa-stamp:before\":false},[\"content:\\\"\\uf5bf\\\"\"]],[false,{\".fa-star:before\":false},[\"content:\\\"\\uf005\\\"\"]],[false,{\".fa-star-and-crescent:before\":false},[\"content:\\\"\\uf699\\\"\"]],[false,{\".fa-star-half:before\":false},[\"content:\\\"\\uf089\\\"\"]],[false,{\".fa-star-half-alt:before\":false,\".fa-star-half-stroke:before\":false},[\"content:\\\"\\uf5c0\\\"\"]],[false,{\".fa-star-of-david:before\":false},[\"content:\\\"\\uf69a\\\"\"]],[false,{\".fa-star-of-life:before\":false},[\"content:\\\"\\uf621\\\"\"]],[false,{\".fa-gbp:before\":false,\".fa-pound-sign:before\":false,\".fa-sterling-sign:before\":false},[\"content:\\\"\\uf154\\\"\"]],[false,{\".fa-stethoscope:before\":false},[\"content:\\\"\\uf0f1\\\"\"]],[false,{\".fa-stop:before\":false},[\"content:\\\"\\uf04d\\\"\"]],[false,{\".fa-stopwatch:before\":false},[\"content:\\\"\\uf2f2\\\"\"]],[false,{\".fa-stopwatch-20:before\":false},[\"content:\\\"\\ue06f\\\"\"]],[false,{\".fa-store:before\":false},[\"content:\\\"\\uf54e\\\"\"]],[false,{\".fa-store-slash:before\":false},[\"content:\\\"\\ue071\\\"\"]],[false,{\".fa-street-view:before\":false},[\"content:\\\"\\uf21d\\\"\"]],[false,{\".fa-strikethrough:before\":false},[\"content:\\\"\\uf0cc\\\"\"]],[false,{\".fa-stroopwafel:before\":false},[\"content:\\\"\\uf551\\\"\"]],[false,{\".fa-subscript:before\":false},[\"content:\\\"\\uf12c\\\"\"]],[false,{\".fa-suitcase:before\":false},[\"content:\\\"\\uf0f2\\\"\"]],[false,{\".fa-medkit:before\":false,\".fa-suitcase-medical:before\":false},[\"content:\\\"\\uf0fa\\\"\"]],[false,{\".fa-suitcase-rolling:before\":false},[\"content:\\\"\\uf5c1\\\"\"]],[false,{\".fa-sun:before\":false},[\"content:\\\"\\uf185\\\"\"]],[false,{\".fa-sun-plant-wilt:before\":false},[\"content:\\\"\\ue57a\\\"\"]],[false,{\".fa-superscript:before\":false},[\"content:\\\"\\uf12b\\\"\"]],[false,{\".fa-swatchbook:before\":false},[\"content:\\\"\\uf5c3\\\"\"]],[false,{\".fa-synagogue:before\":false},[\"content:\\\"\\uf69b\\\"\"]],[false,{\".fa-syringe:before\":false},[\"content:\\\"\\uf48e\\\"\"]],[false,{\".fa-t:before\":false},[\"content:\\\"T\\\"\"]],[false,{\".fa-table:before\":false},[\"content:\\\"\\uf0ce\\\"\"]],[false,{\".fa-table-cells:before\":false,\".fa-th:before\":false},[\"content:\\\"\\uf00a\\\"\"]],[false,{\".fa-table-cells-large:before\":false,\".fa-th-large:before\":false},[\"content:\\\"\\uf009\\\"\"]],[false,{\".fa-columns:before\":false,\".fa-table-columns:before\":false},[\"content:\\\"\\uf0db\\\"\"]],[false,{\".fa-table-list:before\":false,\".fa-th-list:before\":false},[\"content:\\\"\\uf00b\\\"\"]],[false,{\".fa-ping-pong-paddle-ball:before\":false,\".fa-table-tennis-paddle-ball:before\":false,\".fa-table-tennis:before\":false},[\"content:\\\"\\uf45d\\\"\"]],[false,{\".fa-tablet-android:before\":false,\".fa-tablet:before\":false},[\"content:\\\"\\uf3fb\\\"\"]],[false,{\".fa-tablet-button:before\":false},[\"content:\\\"\\uf10a\\\"\"]],[false,{\".fa-tablet-alt:before\":false,\".fa-tablet-screen-button:before\":false},[\"content:\\\"\\uf3fa\\\"\"]],[false,{\".fa-tablets:before\":false},[\"content:\\\"\\uf490\\\"\"]],[false,{\".fa-digital-tachograph:before\":false,\".fa-tachograph-digital:before\":false},[\"content:\\\"\\uf566\\\"\"]],[false,{\".fa-tag:before\":false},[\"content:\\\"\\uf02b\\\"\"]],[false,{\".fa-tags:before\":false},[\"content:\\\"\\uf02c\\\"\"]],[false,{\".fa-tape:before\":false},[\"content:\\\"\\uf4db\\\"\"]],[false,{\".fa-tarp:before\":false},[\"content:\\\"\\ue57b\\\"\"]],[false,{\".fa-tarp-droplet:before\":false},[\"content:\\\"\\ue57c\\\"\"]],[false,{\".fa-cab:before\":false,\".fa-taxi:before\":false},[\"content:\\\"\\uf1ba\\\"\"]],[false,{\".fa-teeth:before\":false},[\"content:\\\"\\uf62e\\\"\"]],[false,{\".fa-teeth-open:before\":false},[\"content:\\\"\\uf62f\\\"\"]],[false,{\".fa-temperature-arrow-down:before\":false,\".fa-temperature-down:before\":false},[\"content:\\\"\\ue03f\\\"\"]],[false,{\".fa-temperature-arrow-up:before\":false,\".fa-temperature-up:before\":false},[\"content:\\\"\\ue040\\\"\"]],[false,{\".fa-temperature-0:before\":false,\".fa-temperature-empty:before\":false,\".fa-thermometer-0:before\":false,\".fa-thermometer-empty:before\":false},[\"content:\\\"\\uf2cb\\\"\"]],[false,{\".fa-temperature-4:before\":false,\".fa-temperature-full:before\":false,\".fa-thermometer-4:before\":false,\".fa-thermometer-full:before\":false},[\"content:\\\"\\uf2c7\\\"\"]],[false,{\".fa-temperature-2:before\":false,\".fa-temperature-half:before\":false,\".fa-thermometer-2:before\":false,\".fa-thermometer-half:before\":false},[\"content:\\\"\\uf2c9\\\"\"]],[false,{\".fa-temperature-high:before\":false},[\"content:\\\"\\uf769\\\"\"]],[false,{\".fa-temperature-low:before\":false},[\"content:\\\"\\uf76b\\\"\"]],[false,{\".fa-temperature-1:before\":false,\".fa-temperature-quarter:before\":false,\".fa-thermometer-1:before\":false,\".fa-thermometer-quarter:before\":false},[\"content:\\\"\\uf2ca\\\"\"]],[false,{\".fa-temperature-3:before\":false,\".fa-temperature-three-quarters:before\":false,\".fa-thermometer-3:before\":false,\".fa-thermometer-three-quarters:before\":false},[\"content:\\\"\\uf2c8\\\"\"]],[false,{\".fa-tenge-sign:before\":false,\".fa-tenge:before\":false},[\"content:\\\"\\uf7d7\\\"\"]],[false,{\".fa-tent:before\":false},[\"content:\\\"\\ue57d\\\"\"]],[false,{\".fa-tent-arrow-down-to-line:before\":false},[\"content:\\\"\\ue57e\\\"\"]],[false,{\".fa-tent-arrow-left-right:before\":false},[\"content:\\\"\\ue57f\\\"\"]],[false,{\".fa-tent-arrow-turn-left:before\":false},[\"content:\\\"\\ue580\\\"\"]],[false,{\".fa-tent-arrows-down:before\":false},[\"content:\\\"\\ue581\\\"\"]],[false,{\".fa-tents:before\":false},[\"content:\\\"\\ue582\\\"\"]],[false,{\".fa-terminal:before\":false},[\"content:\\\"\\uf120\\\"\"]],[false,{\".fa-text-height:before\":false},[\"content:\\\"\\uf034\\\"\"]],[false,{\".fa-remove-format:before\":false,\".fa-text-slash:before\":false},[\"content:\\\"\\uf87d\\\"\"]],[false,{\".fa-text-width:before\":false},[\"content:\\\"\\uf035\\\"\"]],[false,{\".fa-thermometer:before\":false},[\"content:\\\"\\uf491\\\"\"]],[false,{\".fa-thumbs-down:before\":false},[\"content:\\\"\\uf165\\\"\"]],[false,{\".fa-thumbs-up:before\":false},[\"content:\\\"\\uf164\\\"\"]],[false,{\".fa-thumb-tack:before\":false,\".fa-thumbtack:before\":false},[\"content:\\\"\\uf08d\\\"\"]],[false,{\".fa-ticket:before\":false},[\"content:\\\"\\uf145\\\"\"]],[false,{\".fa-ticket-alt:before\":false,\".fa-ticket-simple:before\":false},[\"content:\\\"\\uf3ff\\\"\"]],[false,{\".fa-timeline:before\":false},[\"content:\\\"\\ue29c\\\"\"]],[false,{\".fa-toggle-off:before\":false},[\"content:\\\"\\uf204\\\"\"]],[false,{\".fa-toggle-on:before\":false},[\"content:\\\"\\uf205\\\"\"]],[false,{\".fa-toilet:before\":false},[\"content:\\\"\\uf7d8\\\"\"]],[false,{\".fa-toilet-paper:before\":false},[\"content:\\\"\\uf71e\\\"\"]],[false,{\".fa-toilet-paper-slash:before\":false},[\"content:\\\"\\ue072\\\"\"]],[false,{\".fa-toilet-portable:before\":false},[\"content:\\\"\\ue583\\\"\"]],[false,{\".fa-toilets-portable:before\":false},[\"content:\\\"\\ue584\\\"\"]],[false,{\".fa-toolbox:before\":false},[\"content:\\\"\\uf552\\\"\"]],[false,{\".fa-tooth:before\":false},[\"content:\\\"\\uf5c9\\\"\"]],[false,{\".fa-torii-gate:before\":false},[\"content:\\\"\\uf6a1\\\"\"]],[false,{\".fa-tornado:before\":false},[\"content:\\\"\\uf76f\\\"\"]],[false,{\".fa-broadcast-tower:before\":false,\".fa-tower-broadcast:before\":false},[\"content:\\\"\\uf519\\\"\"]],[false,{\".fa-tower-cell:before\":false},[\"content:\\\"\\ue585\\\"\"]],[false,{\".fa-tower-observation:before\":false},[\"content:\\\"\\ue586\\\"\"]],[false,{\".fa-tractor:before\":false},[\"content:\\\"\\uf722\\\"\"]],[false,{\".fa-trademark:before\":false},[\"content:\\\"\\uf25c\\\"\"]],[false,{\".fa-traffic-light:before\":false},[\"content:\\\"\\uf637\\\"\"]],[false,{\".fa-trailer:before\":false},[\"content:\\\"\\ue041\\\"\"]],[false,{\".fa-train:before\":false},[\"content:\\\"\\uf238\\\"\"]],[false,{\".fa-subway:before\":false,\".fa-train-subway:before\":false},[\"content:\\\"\\uf239\\\"\"]],[false,{\".fa-train-tram:before\":false,\".fa-tram:before\":false},[\"content:\\\"\\uf7da\\\"\"]],[false,{\".fa-transgender-alt:before\":false,\".fa-transgender:before\":false},[\"content:\\\"\\uf225\\\"\"]],[false,{\".fa-trash:before\":false},[\"content:\\\"\\uf1f8\\\"\"]],[false,{\".fa-trash-arrow-up:before\":false,\".fa-trash-restore:before\":false},[\"content:\\\"\\uf829\\\"\"]],[false,{\".fa-trash-alt:before\":false,\".fa-trash-can:before\":false},[\"content:\\\"\\uf2ed\\\"\"]],[false,{\".fa-trash-can-arrow-up:before\":false,\".fa-trash-restore-alt:before\":false},[\"content:\\\"\\uf82a\\\"\"]],[false,{\".fa-tree:before\":false},[\"content:\\\"\\uf1bb\\\"\"]],[false,{\".fa-tree-city:before\":false},[\"content:\\\"\\ue587\\\"\"]],[false,{\".fa-exclamation-triangle:before\":false,\".fa-triangle-exclamation:before\":false,\".fa-warning:before\":false},[\"content:\\\"\\uf071\\\"\"]],[false,{\".fa-trophy:before\":false},[\"content:\\\"\\uf091\\\"\"]],[false,{\".fa-trowel:before\":false},[\"content:\\\"\\ue589\\\"\"]],[false,{\".fa-trowel-bricks:before\":false},[\"content:\\\"\\ue58a\\\"\"]],[false,{\".fa-truck:before\":false},[\"content:\\\"\\uf0d1\\\"\"]],[false,{\".fa-truck-arrow-right:before\":false},[\"content:\\\"\\ue58b\\\"\"]],[false,{\".fa-truck-droplet:before\":false},[\"content:\\\"\\ue58c\\\"\"]],[false,{\".fa-shipping-fast:before\":false,\".fa-truck-fast:before\":false},[\"content:\\\"\\uf48b\\\"\"]],[false,{\".fa-truck-field:before\":false},[\"content:\\\"\\ue58d\\\"\"]],[false,{\".fa-truck-field-un:before\":false},[\"content:\\\"\\ue58e\\\"\"]],[false,{\".fa-truck-front:before\":false},[\"content:\\\"\\ue2b7\\\"\"]],[false,{\".fa-ambulance:before\":false,\".fa-truck-medical:before\":false},[\"content:\\\"\\uf0f9\\\"\"]],[false,{\".fa-truck-monster:before\":false},[\"content:\\\"\\uf63b\\\"\"]],[false,{\".fa-truck-moving:before\":false},[\"content:\\\"\\uf4df\\\"\"]],[false,{\".fa-truck-pickup:before\":false},[\"content:\\\"\\uf63c\\\"\"]],[false,{\".fa-truck-plane:before\":false},[\"content:\\\"\\ue58f\\\"\"]],[false,{\".fa-truck-loading:before\":false,\".fa-truck-ramp-box:before\":false},[\"content:\\\"\\uf4de\\\"\"]],[false,{\".fa-teletype:before\":false,\".fa-tty:before\":false},[\"content:\\\"\\uf1e4\\\"\"]],[false,{\".fa-try:before\":false,\".fa-turkish-lira-sign:before\":false,\".fa-turkish-lira:before\":false},[\"content:\\\"\\ue2bb\\\"\"]],[false,{\".fa-level-down-alt:before\":false,\".fa-turn-down:before\":false},[\"content:\\\"\\uf3be\\\"\"]],[false,{\".fa-level-up-alt:before\":false,\".fa-turn-up:before\":false},[\"content:\\\"\\uf3bf\\\"\"]],[false,{\".fa-television:before\":false,\".fa-tv-alt:before\":false,\".fa-tv:before\":false},[\"content:\\\"\\uf26c\\\"\"]],[false,{\".fa-u:before\":false},[\"content:\\\"U\\\"\"]],[false,{\".fa-umbrella:before\":false},[\"content:\\\"\\uf0e9\\\"\"]],[false,{\".fa-umbrella-beach:before\":false},[\"content:\\\"\\uf5ca\\\"\"]],[false,{\".fa-underline:before\":false},[\"content:\\\"\\uf0cd\\\"\"]],[false,{\".fa-universal-access:before\":false},[\"content:\\\"\\uf29a\\\"\"]],[false,{\".fa-unlock:before\":false},[\"content:\\\"\\uf09c\\\"\"]],[false,{\".fa-unlock-alt:before\":false,\".fa-unlock-keyhole:before\":false},[\"content:\\\"\\uf13e\\\"\"]],[false,{\".fa-arrows-alt-v:before\":false,\".fa-up-down:before\":false},[\"content:\\\"\\uf338\\\"\"]],[false,{\".fa-arrows-alt:before\":false,\".fa-up-down-left-right:before\":false},[\"content:\\\"\\uf0b2\\\"\"]],[false,{\".fa-long-arrow-alt-up:before\":false,\".fa-up-long:before\":false},[\"content:\\\"\\uf30c\\\"\"]],[false,{\".fa-expand-alt:before\":false,\".fa-up-right-and-down-left-from-center:before\":false},[\"content:\\\"\\uf424\\\"\"]],[false,{\".fa-external-link-alt:before\":false,\".fa-up-right-from-square:before\":false},[\"content:\\\"\\uf35d\\\"\"]],[false,{\".fa-upload:before\":false},[\"content:\\\"\\uf093\\\"\"]],[false,{\".fa-user:before\":false},[\"content:\\\"\\uf007\\\"\"]],[false,{\".fa-user-astronaut:before\":false},[\"content:\\\"\\uf4fb\\\"\"]],[false,{\".fa-user-check:before\":false},[\"content:\\\"\\uf4fc\\\"\"]],[false,{\".fa-user-clock:before\":false},[\"content:\\\"\\uf4fd\\\"\"]],[false,{\".fa-user-doctor:before\":false,\".fa-user-md:before\":false},[\"content:\\\"\\uf0f0\\\"\"]],[false,{\".fa-user-cog:before\":false,\".fa-user-gear:before\":false},[\"content:\\\"\\uf4fe\\\"\"]],[false,{\".fa-user-graduate:before\":false},[\"content:\\\"\\uf501\\\"\"]],[false,{\".fa-user-friends:before\":false,\".fa-user-group:before\":false},[\"content:\\\"\\uf500\\\"\"]],[false,{\".fa-user-injured:before\":false},[\"content:\\\"\\uf728\\\"\"]],[false,{\".fa-user-alt:before\":false,\".fa-user-large:before\":false},[\"content:\\\"\\uf406\\\"\"]],[false,{\".fa-user-alt-slash:before\":false,\".fa-user-large-slash:before\":false},[\"content:\\\"\\uf4fa\\\"\"]],[false,{\".fa-user-lock:before\":false},[\"content:\\\"\\uf502\\\"\"]],[false,{\".fa-user-minus:before\":false},[\"content:\\\"\\uf503\\\"\"]],[false,{\".fa-user-ninja:before\":false},[\"content:\\\"\\uf504\\\"\"]],[false,{\".fa-user-nurse:before\":false},[\"content:\\\"\\uf82f\\\"\"]],[false,{\".fa-user-edit:before\":false,\".fa-user-pen:before\":false},[\"content:\\\"\\uf4ff\\\"\"]],[false,{\".fa-user-plus:before\":false},[\"content:\\\"\\uf234\\\"\"]],[false,{\".fa-user-secret:before\":false},[\"content:\\\"\\uf21b\\\"\"]],[false,{\".fa-user-shield:before\":false},[\"content:\\\"\\uf505\\\"\"]],[false,{\".fa-user-slash:before\":false},[\"content:\\\"\\uf506\\\"\"]],[false,{\".fa-user-tag:before\":false},[\"content:\\\"\\uf507\\\"\"]],[false,{\".fa-user-tie:before\":false},[\"content:\\\"\\uf508\\\"\"]],[false,{\".fa-user-times:before\":false,\".fa-user-xmark:before\":false},[\"content:\\\"\\uf235\\\"\"]],[false,{\".fa-users:before\":false},[\"content:\\\"\\uf0c0\\\"\"]],[false,{\".fa-users-between-lines:before\":false},[\"content:\\\"\\ue591\\\"\"]],[false,{\".fa-users-cog:before\":false,\".fa-users-gear:before\":false},[\"content:\\\"\\uf509\\\"\"]],[false,{\".fa-users-line:before\":false},[\"content:\\\"\\ue592\\\"\"]],[false,{\".fa-users-rays:before\":false},[\"content:\\\"\\ue593\\\"\"]],[false,{\".fa-users-rectangle:before\":false},[\"content:\\\"\\ue594\\\"\"]],[false,{\".fa-users-slash:before\":false},[\"content:\\\"\\ue073\\\"\"]],[false,{\".fa-users-viewfinder:before\":false},[\"content:\\\"\\ue595\\\"\"]],[false,{\".fa-cutlery:before\":false,\".fa-utensils:before\":false},[\"content:\\\"\\uf2e7\\\"\"]],[false,{\".fa-v:before\":false},[\"content:\\\"V\\\"\"]],[false,{\".fa-shuttle-van:before\":false,\".fa-van-shuttle:before\":false},[\"content:\\\"\\uf5b6\\\"\"]],[false,{\".fa-vault:before\":false},[\"content:\\\"\\ue2c5\\\"\"]],[false,{\".fa-vector-square:before\":false},[\"content:\\\"\\uf5cb\\\"\"]],[false,{\".fa-venus:before\":false},[\"content:\\\"\\uf221\\\"\"]],[false,{\".fa-venus-double:before\":false},[\"content:\\\"\\uf226\\\"\"]],[false,{\".fa-venus-mars:before\":false},[\"content:\\\"\\uf228\\\"\"]],[false,{\".fa-vest:before\":false},[\"content:\\\"\\ue085\\\"\"]],[false,{\".fa-vest-patches:before\":false},[\"content:\\\"\\ue086\\\"\"]],[false,{\".fa-vial:before\":false},[\"content:\\\"\\uf492\\\"\"]],[false,{\".fa-vial-circle-check:before\":false},[\"content:\\\"\\ue596\\\"\"]],[false,{\".fa-vial-virus:before\":false},[\"content:\\\"\\ue597\\\"\"]],[false,{\".fa-vials:before\":false},[\"content:\\\"\\uf493\\\"\"]],[false,{\".fa-video-camera:before\":false,\".fa-video:before\":false},[\"content:\\\"\\uf03d\\\"\"]],[false,{\".fa-video-slash:before\":false},[\"content:\\\"\\uf4e2\\\"\"]],[false,{\".fa-vihara:before\":false},[\"content:\\\"\\uf6a7\\\"\"]],[false,{\".fa-virus:before\":false},[\"content:\\\"\\ue074\\\"\"]],[false,{\".fa-virus-covid:before\":false},[\"content:\\\"\\ue4a8\\\"\"]],[false,{\".fa-virus-covid-slash:before\":false},[\"content:\\\"\\ue4a9\\\"\"]],[false,{\".fa-virus-slash:before\":false},[\"content:\\\"\\ue075\\\"\"]],[false,{\".fa-viruses:before\":false},[\"content:\\\"\\ue076\\\"\"]],[false,{\".fa-voicemail:before\":false},[\"content:\\\"\\uf897\\\"\"]],[false,{\".fa-volcano:before\":false},[\"content:\\\"\\uf770\\\"\"]],[false,{\".fa-volleyball-ball:before\":false,\".fa-volleyball:before\":false},[\"content:\\\"\\uf45f\\\"\"]],[false,{\".fa-volume-high:before\":false,\".fa-volume-up:before\":false},[\"content:\\\"\\uf028\\\"\"]],[false,{\".fa-volume-down:before\":false,\".fa-volume-low:before\":false},[\"content:\\\"\\uf027\\\"\"]],[false,{\".fa-volume-off:before\":false},[\"content:\\\"\\uf026\\\"\"]],[false,{\".fa-volume-mute:before\":false,\".fa-volume-times:before\":false,\".fa-volume-xmark:before\":false},[\"content:\\\"\\uf6a9\\\"\"]],[false,{\".fa-vr-cardboard:before\":false},[\"content:\\\"\\uf729\\\"\"]],[false,{\".fa-w:before\":false},[\"content:\\\"W\\\"\"]],[false,{\".fa-walkie-talkie:before\":false},[\"content:\\\"\\uf8ef\\\"\"]],[false,{\".fa-wallet:before\":false},[\"content:\\\"\\uf555\\\"\"]],[false,{\".fa-magic:before\":false,\".fa-wand-magic:before\":false},[\"content:\\\"\\uf0d0\\\"\"]],[false,{\".fa-magic-wand-sparkles:before\":false,\".fa-wand-magic-sparkles:before\":false},[\"content:\\\"\\ue2ca\\\"\"]],[false,{\".fa-wand-sparkles:before\":false},[\"content:\\\"\\uf72b\\\"\"]],[false,{\".fa-warehouse:before\":false},[\"content:\\\"\\uf494\\\"\"]],[false,{\".fa-water:before\":false},[\"content:\\\"\\uf773\\\"\"]],[false,{\".fa-ladder-water:before\":false,\".fa-swimming-pool:before\":false,\".fa-water-ladder:before\":false},[\"content:\\\"\\uf5c5\\\"\"]],[false,{\".fa-wave-square:before\":false},[\"content:\\\"\\uf83e\\\"\"]],[false,{\".fa-weight-hanging:before\":false},[\"content:\\\"\\uf5cd\\\"\"]],[false,{\".fa-weight-scale:before\":false,\".fa-weight:before\":false},[\"content:\\\"\\uf496\\\"\"]],[false,{\".fa-wheat-alt:before\":false,\".fa-wheat-awn:before\":false},[\"content:\\\"\\ue2cd\\\"\"]],[false,{\".fa-wheat-awn-circle-exclamation:before\":false},[\"content:\\\"\\ue598\\\"\"]],[false,{\".fa-wheelchair:before\":false},[\"content:\\\"\\uf193\\\"\"]],[false,{\".fa-wheelchair-alt:before\":false,\".fa-wheelchair-move:before\":false},[\"content:\\\"\\ue2ce\\\"\"]],[false,{\".fa-glass-whiskey:before\":false,\".fa-whiskey-glass:before\":false},[\"content:\\\"\\uf7a0\\\"\"]],[false,{\".fa-wifi-3:before\":false,\".fa-wifi-strong:before\":false,\".fa-wifi:before\":false},[\"content:\\\"\\uf1eb\\\"\"]],[false,{\".fa-wind:before\":false},[\"content:\\\"\\uf72e\\\"\"]],[false,{\".fa-window-maximize:before\":false},[\"content:\\\"\\uf2d0\\\"\"]],[false,{\".fa-window-minimize:before\":false},[\"content:\\\"\\uf2d1\\\"\"]],[false,{\".fa-window-restore:before\":false},[\"content:\\\"\\uf2d2\\\"\"]],[false,{\".fa-wine-bottle:before\":false},[\"content:\\\"\\uf72f\\\"\"]],[false,{\".fa-wine-glass:before\":false},[\"content:\\\"\\uf4e3\\\"\"]],[false,{\".fa-wine-glass-alt:before\":false,\".fa-wine-glass-empty:before\":false},[\"content:\\\"\\uf5ce\\\"\"]],[false,{\".fa-krw:before\":false,\".fa-won-sign:before\":false,\".fa-won:before\":false},[\"content:\\\"\\uf159\\\"\"]],[false,{\".fa-worm:before\":false},[\"content:\\\"\\ue599\\\"\"]],[false,{\".fa-wrench:before\":false},[\"content:\\\"\\uf0ad\\\"\"]],[false,{\".fa-x:before\":false},[\"content:\\\"X\\\"\"]],[false,{\".fa-x-ray:before\":false},[\"content:\\\"\\uf497\\\"\"]],[false,{\".fa-close:before\":false,\".fa-multiply:before\":false,\".fa-remove:before\":false,\".fa-times:before\":false,\".fa-xmark:before\":false},[\"content:\\\"\\uf00d\\\"\"]],[false,{\".fa-xmarks-lines:before\":false},[\"content:\\\"\\ue59a\\\"\"]],[false,{\".fa-y:before\":false},[\"content:\\\"Y\\\"\"]],[false,{\".fa-cny:before\":false,\".fa-jpy:before\":false,\".fa-rmb:before\":false,\".fa-yen-sign:before\":false,\".fa-yen:before\":false},[\"content:\\\"\\uf157\\\"\"]],[false,{\".fa-yin-yang:before\":false},[\"content:\\\"\\uf6ad\\\"\"]],[false,{\".fa-z:before\":false},[\"content:\\\"Z\\\"\"]],[false,{\".fa-sr-only\":false,\".fa-sr-only-focusable:not(:focus)\":false,\".sr-only\":false,\".sr-only-focusable:not(:focus)\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"white-space:nowrap\",\"border-width:0\"]],[true,{\":host\":true,\":root\":true},[\"--fa-font-brands:normal 400 1em\\/1 \\\"Font Awesome 6 Brands\\\"\"]],[true,\"@font-face{font-family:\\\"Font Awesome 6 Brands\\\";font-style:normal;font-weight:400;font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\")}\"],[false,{\".fa-brands\":false,\".fab\":false},[\"font-family:\\\"Font Awesome 6 Brands\\\"\",\"font-weight:400\"]],[false,{\".fa-42-group:before\":false,\".fa-innosoft:before\":false},[\"content:\\\"\\ue080\\\"\"]],[false,{\".fa-500px:before\":false},[\"content:\\\"\\uf26e\\\"\"]],[false,{\".fa-accessible-icon:before\":false},[\"content:\\\"\\uf368\\\"\"]],[false,{\".fa-accusoft:before\":false},[\"content:\\\"\\uf369\\\"\"]],[false,{\".fa-adn:before\":false},[\"content:\\\"\\uf170\\\"\"]],[false,{\".fa-adversal:before\":false},[\"content:\\\"\\uf36a\\\"\"]],[false,{\".fa-affiliatetheme:before\":false},[\"content:\\\"\\uf36b\\\"\"]],[false,{\".fa-airbnb:before\":false},[\"content:\\\"\\uf834\\\"\"]],[false,{\".fa-algolia:before\":false},[\"content:\\\"\\uf36c\\\"\"]],[false,{\".fa-alipay:before\":false},[\"content:\\\"\\uf642\\\"\"]],[false,{\".fa-amazon:before\":false},[\"content:\\\"\\uf270\\\"\"]],[false,{\".fa-amazon-pay:before\":false},[\"content:\\\"\\uf42c\\\"\"]],[false,{\".fa-amilia:before\":false},[\"content:\\\"\\uf36d\\\"\"]],[false,{\".fa-android:before\":false},[\"content:\\\"\\uf17b\\\"\"]],[false,{\".fa-angellist:before\":false},[\"content:\\\"\\uf209\\\"\"]],[false,{\".fa-angrycreative:before\":false},[\"content:\\\"\\uf36e\\\"\"]],[false,{\".fa-angular:before\":false},[\"content:\\\"\\uf420\\\"\"]],[false,{\".fa-app-store:before\":false},[\"content:\\\"\\uf36f\\\"\"]],[false,{\".fa-app-store-ios:before\":false},[\"content:\\\"\\uf370\\\"\"]],[false,{\".fa-apper:before\":false},[\"content:\\\"\\uf371\\\"\"]],[false,{\".fa-apple:before\":false},[\"content:\\\"\\uf179\\\"\"]],[false,{\".fa-apple-pay:before\":false},[\"content:\\\"\\uf415\\\"\"]],[false,{\".fa-artstation:before\":false},[\"content:\\\"\\uf77a\\\"\"]],[false,{\".fa-asymmetrik:before\":false},[\"content:\\\"\\uf372\\\"\"]],[false,{\".fa-atlassian:before\":false},[\"content:\\\"\\uf77b\\\"\"]],[false,{\".fa-audible:before\":false},[\"content:\\\"\\uf373\\\"\"]],[false,{\".fa-autoprefixer:before\":false},[\"content:\\\"\\uf41c\\\"\"]],[false,{\".fa-avianex:before\":false},[\"content:\\\"\\uf374\\\"\"]],[false,{\".fa-aviato:before\":false},[\"content:\\\"\\uf421\\\"\"]],[false,{\".fa-aws:before\":false},[\"content:\\\"\\uf375\\\"\"]],[false,{\".fa-bandcamp:before\":false},[\"content:\\\"\\uf2d5\\\"\"]],[false,{\".fa-battle-net:before\":false},[\"content:\\\"\\uf835\\\"\"]],[false,{\".fa-behance:before\":false},[\"content:\\\"\\uf1b4\\\"\"]],[false,{\".fa-behance-square:before\":false},[\"content:\\\"\\uf1b5\\\"\"]],[false,{\".fa-bilibili:before\":false},[\"content:\\\"\\ue3d9\\\"\"]],[false,{\".fa-bimobject:before\":false},[\"content:\\\"\\uf378\\\"\"]],[false,{\".fa-bitbucket:before\":false},[\"content:\\\"\\uf171\\\"\"]],[false,{\".fa-bitcoin:before\":false},[\"content:\\\"\\uf379\\\"\"]],[false,{\".fa-bity:before\":false},[\"content:\\\"\\uf37a\\\"\"]],[false,{\".fa-black-tie:before\":false},[\"content:\\\"\\uf27e\\\"\"]],[false,{\".fa-blackberry:before\":false},[\"content:\\\"\\uf37b\\\"\"]],[false,{\".fa-blogger:before\":false},[\"content:\\\"\\uf37c\\\"\"]],[false,{\".fa-blogger-b:before\":false},[\"content:\\\"\\uf37d\\\"\"]],[false,{\".fa-bluetooth:before\":false},[\"content:\\\"\\uf293\\\"\"]],[false,{\".fa-bluetooth-b:before\":false},[\"content:\\\"\\uf294\\\"\"]],[false,{\".fa-bootstrap:before\":false},[\"content:\\\"\\uf836\\\"\"]],[false,{\".fa-bots:before\":false},[\"content:\\\"\\ue340\\\"\"]],[false,{\".fa-btc:before\":false},[\"content:\\\"\\uf15a\\\"\"]],[false,{\".fa-buffer:before\":false},[\"content:\\\"\\uf837\\\"\"]],[false,{\".fa-buromobelexperte:before\":false},[\"content:\\\"\\uf37f\\\"\"]],[false,{\".fa-buy-n-large:before\":false},[\"content:\\\"\\uf8a6\\\"\"]],[false,{\".fa-buysellads:before\":false},[\"content:\\\"\\uf20d\\\"\"]],[false,{\".fa-canadian-maple-leaf:before\":false},[\"content:\\\"\\uf785\\\"\"]],[false,{\".fa-cc-amazon-pay:before\":false},[\"content:\\\"\\uf42d\\\"\"]],[false,{\".fa-cc-amex:before\":false},[\"content:\\\"\\uf1f3\\\"\"]],[false,{\".fa-cc-apple-pay:before\":false},[\"content:\\\"\\uf416\\\"\"]],[false,{\".fa-cc-diners-club:before\":false},[\"content:\\\"\\uf24c\\\"\"]],[false,{\".fa-cc-discover:before\":false},[\"content:\\\"\\uf1f2\\\"\"]],[false,{\".fa-cc-jcb:before\":false},[\"content:\\\"\\uf24b\\\"\"]],[false,{\".fa-cc-mastercard:before\":false},[\"content:\\\"\\uf1f1\\\"\"]],[false,{\".fa-cc-paypal:before\":false},[\"content:\\\"\\uf1f4\\\"\"]],[false,{\".fa-cc-stripe:before\":false},[\"content:\\\"\\uf1f5\\\"\"]],[false,{\".fa-cc-visa:before\":false},[\"content:\\\"\\uf1f0\\\"\"]],[false,{\".fa-centercode:before\":false},[\"content:\\\"\\uf380\\\"\"]],[false,{\".fa-centos:before\":false},[\"content:\\\"\\uf789\\\"\"]],[false,{\".fa-chrome:before\":false},[\"content:\\\"\\uf268\\\"\"]],[false,{\".fa-chromecast:before\":false},[\"content:\\\"\\uf838\\\"\"]],[false,{\".fa-cloudflare:before\":false},[\"content:\\\"\\ue07d\\\"\"]],[false,{\".fa-cloudscale:before\":false},[\"content:\\\"\\uf383\\\"\"]],[false,{\".fa-cloudsmith:before\":false},[\"content:\\\"\\uf384\\\"\"]],[false,{\".fa-cloudversify:before\":false},[\"content:\\\"\\uf385\\\"\"]],[false,{\".fa-cmplid:before\":false},[\"content:\\\"\\ue360\\\"\"]],[false,{\".fa-codepen:before\":false},[\"content:\\\"\\uf1cb\\\"\"]],[false,{\".fa-codiepie:before\":false},[\"content:\\\"\\uf284\\\"\"]],[false,{\".fa-confluence:before\":false},[\"content:\\\"\\uf78d\\\"\"]],[false,{\".fa-connectdevelop:before\":false},[\"content:\\\"\\uf20e\\\"\"]],[false,{\".fa-contao:before\":false},[\"content:\\\"\\uf26d\\\"\"]],[false,{\".fa-cotton-bureau:before\":false},[\"content:\\\"\\uf89e\\\"\"]],[false,{\".fa-cpanel:before\":false},[\"content:\\\"\\uf388\\\"\"]],[false,{\".fa-creative-commons:before\":false},[\"content:\\\"\\uf25e\\\"\"]],[false,{\".fa-creative-commons-by:before\":false},[\"content:\\\"\\uf4e7\\\"\"]],[false,{\".fa-creative-commons-nc:before\":false},[\"content:\\\"\\uf4e8\\\"\"]],[false,{\".fa-creative-commons-nc-eu:before\":false},[\"content:\\\"\\uf4e9\\\"\"]],[false,{\".fa-creative-commons-nc-jp:before\":false},[\"content:\\\"\\uf4ea\\\"\"]],[false,{\".fa-creative-commons-nd:before\":false},[\"content:\\\"\\uf4eb\\\"\"]],[false,{\".fa-creative-commons-pd:before\":false},[\"content:\\\"\\uf4ec\\\"\"]],[false,{\".fa-creative-commons-pd-alt:before\":false},[\"content:\\\"\\uf4ed\\\"\"]],[false,{\".fa-creative-commons-remix:before\":false},[\"content:\\\"\\uf4ee\\\"\"]],[false,{\".fa-creative-commons-sa:before\":false},[\"content:\\\"\\uf4ef\\\"\"]],[false,{\".fa-creative-commons-sampling:before\":false},[\"content:\\\"\\uf4f0\\\"\"]],[false,{\".fa-creative-commons-sampling-plus:before\":false},[\"content:\\\"\\uf4f1\\\"\"]],[false,{\".fa-creative-commons-share:before\":false},[\"content:\\\"\\uf4f2\\\"\"]],[false,{\".fa-creative-commons-zero:before\":false},[\"content:\\\"\\uf4f3\\\"\"]],[false,{\".fa-critical-role:before\":false},[\"content:\\\"\\uf6c9\\\"\"]],[false,{\".fa-css3:before\":false},[\"content:\\\"\\uf13c\\\"\"]],[false,{\".fa-css3-alt:before\":false},[\"content:\\\"\\uf38b\\\"\"]],[false,{\".fa-cuttlefish:before\":false},[\"content:\\\"\\uf38c\\\"\"]],[false,{\".fa-d-and-d:before\":false},[\"content:\\\"\\uf38d\\\"\"]],[false,{\".fa-d-and-d-beyond:before\":false},[\"content:\\\"\\uf6ca\\\"\"]],[false,{\".fa-dailymotion:before\":false},[\"content:\\\"\\ue052\\\"\"]],[false,{\".fa-dashcube:before\":false},[\"content:\\\"\\uf210\\\"\"]],[false,{\".fa-deezer:before\":false},[\"content:\\\"\\ue077\\\"\"]],[false,{\".fa-delicious:before\":false},[\"content:\\\"\\uf1a5\\\"\"]],[false,{\".fa-deploydog:before\":false},[\"content:\\\"\\uf38e\\\"\"]],[false,{\".fa-deskpro:before\":false},[\"content:\\\"\\uf38f\\\"\"]],[false,{\".fa-dev:before\":false},[\"content:\\\"\\uf6cc\\\"\"]],[false,{\".fa-deviantart:before\":false},[\"content:\\\"\\uf1bd\\\"\"]],[false,{\".fa-dhl:before\":false},[\"content:\\\"\\uf790\\\"\"]],[false,{\".fa-diaspora:before\":false},[\"content:\\\"\\uf791\\\"\"]],[false,{\".fa-digg:before\":false},[\"content:\\\"\\uf1a6\\\"\"]],[false,{\".fa-digital-ocean:before\":false},[\"content:\\\"\\uf391\\\"\"]],[false,{\".fa-discord:before\":false},[\"content:\\\"\\uf392\\\"\"]],[false,{\".fa-discourse:before\":false},[\"content:\\\"\\uf393\\\"\"]],[false,{\".fa-dochub:before\":false},[\"content:\\\"\\uf394\\\"\"]],[false,{\".fa-docker:before\":false},[\"content:\\\"\\uf395\\\"\"]],[false,{\".fa-draft2digital:before\":false},[\"content:\\\"\\uf396\\\"\"]],[false,{\".fa-dribbble:before\":false},[\"content:\\\"\\uf17d\\\"\"]],[false,{\".fa-dribbble-square:before\":false},[\"content:\\\"\\uf397\\\"\"]],[false,{\".fa-dropbox:before\":false},[\"content:\\\"\\uf16b\\\"\"]],[false,{\".fa-drupal:before\":false},[\"content:\\\"\\uf1a9\\\"\"]],[false,{\".fa-dyalog:before\":false},[\"content:\\\"\\uf399\\\"\"]],[false,{\".fa-earlybirds:before\":false},[\"content:\\\"\\uf39a\\\"\"]],[false,{\".fa-ebay:before\":false},[\"content:\\\"\\uf4f4\\\"\"]],[false,{\".fa-edge:before\":false},[\"content:\\\"\\uf282\\\"\"]],[false,{\".fa-edge-legacy:before\":false},[\"content:\\\"\\ue078\\\"\"]],[false,{\".fa-elementor:before\":false},[\"content:\\\"\\uf430\\\"\"]],[false,{\".fa-ello:before\":false},[\"content:\\\"\\uf5f1\\\"\"]],[false,{\".fa-ember:before\":false},[\"content:\\\"\\uf423\\\"\"]],[false,{\".fa-empire:before\":false},[\"content:\\\"\\uf1d1\\\"\"]],[false,{\".fa-envira:before\":false},[\"content:\\\"\\uf299\\\"\"]],[false,{\".fa-erlang:before\":false},[\"content:\\\"\\uf39d\\\"\"]],[false,{\".fa-ethereum:before\":false},[\"content:\\\"\\uf42e\\\"\"]],[false,{\".fa-etsy:before\":false},[\"content:\\\"\\uf2d7\\\"\"]],[false,{\".fa-evernote:before\":false},[\"content:\\\"\\uf839\\\"\"]],[false,{\".fa-expeditedssl:before\":false},[\"content:\\\"\\uf23e\\\"\"]],[false,{\".fa-facebook:before\":false},[\"content:\\\"\\uf09a\\\"\"]],[false,{\".fa-facebook-f:before\":false},[\"content:\\\"\\uf39e\\\"\"]],[false,{\".fa-facebook-messenger:before\":false},[\"content:\\\"\\uf39f\\\"\"]],[false,{\".fa-facebook-square:before\":false},[\"content:\\\"\\uf082\\\"\"]],[false,{\".fa-fantasy-flight-games:before\":false},[\"content:\\\"\\uf6dc\\\"\"]],[false,{\".fa-fedex:before\":false},[\"content:\\\"\\uf797\\\"\"]],[false,{\".fa-fedora:before\":false},[\"content:\\\"\\uf798\\\"\"]],[false,{\".fa-figma:before\":false},[\"content:\\\"\\uf799\\\"\"]],[false,{\".fa-firefox:before\":false},[\"content:\\\"\\uf269\\\"\"]],[false,{\".fa-firefox-browser:before\":false},[\"content:\\\"\\ue007\\\"\"]],[false,{\".fa-first-order:before\":false},[\"content:\\\"\\uf2b0\\\"\"]],[false,{\".fa-first-order-alt:before\":false},[\"content:\\\"\\uf50a\\\"\"]],[false,{\".fa-firstdraft:before\":false},[\"content:\\\"\\uf3a1\\\"\"]],[false,{\".fa-flickr:before\":false},[\"content:\\\"\\uf16e\\\"\"]],[false,{\".fa-flipboard:before\":false},[\"content:\\\"\\uf44d\\\"\"]],[false,{\".fa-fly:before\":false},[\"content:\\\"\\uf417\\\"\"]],[false,{\".fa-font-awesome-flag:before\":false,\".fa-font-awesome-logo-full:before\":false,\".fa-font-awesome:before\":false},[\"content:\\\"\\uf2b4\\\"\"]],[false,{\".fa-fonticons:before\":false},[\"content:\\\"\\uf280\\\"\"]],[false,{\".fa-fonticons-fi:before\":false},[\"content:\\\"\\uf3a2\\\"\"]],[false,{\".fa-fort-awesome:before\":false},[\"content:\\\"\\uf286\\\"\"]],[false,{\".fa-fort-awesome-alt:before\":false},[\"content:\\\"\\uf3a3\\\"\"]],[false,{\".fa-forumbee:before\":false},[\"content:\\\"\\uf211\\\"\"]],[false,{\".fa-foursquare:before\":false},[\"content:\\\"\\uf180\\\"\"]],[false,{\".fa-free-code-camp:before\":false},[\"content:\\\"\\uf2c5\\\"\"]],[false,{\".fa-freebsd:before\":false},[\"content:\\\"\\uf3a4\\\"\"]],[false,{\".fa-fulcrum:before\":false},[\"content:\\\"\\uf50b\\\"\"]],[false,{\".fa-galactic-republic:before\":false},[\"content:\\\"\\uf50c\\\"\"]],[false,{\".fa-galactic-senate:before\":false},[\"content:\\\"\\uf50d\\\"\"]],[false,{\".fa-get-pocket:before\":false},[\"content:\\\"\\uf265\\\"\"]],[false,{\".fa-gg:before\":false},[\"content:\\\"\\uf260\\\"\"]],[false,{\".fa-gg-circle:before\":false},[\"content:\\\"\\uf261\\\"\"]],[false,{\".fa-git:before\":false},[\"content:\\\"\\uf1d3\\\"\"]],[false,{\".fa-git-alt:before\":false},[\"content:\\\"\\uf841\\\"\"]],[false,{\".fa-git-square:before\":false},[\"content:\\\"\\uf1d2\\\"\"]],[false,{\".fa-github:before\":false},[\"content:\\\"\\uf09b\\\"\"]],[false,{\".fa-github-alt:before\":false},[\"content:\\\"\\uf113\\\"\"]],[false,{\".fa-github-square:before\":false},[\"content:\\\"\\uf092\\\"\"]],[false,{\".fa-gitkraken:before\":false},[\"content:\\\"\\uf3a6\\\"\"]],[false,{\".fa-gitlab:before\":false},[\"content:\\\"\\uf296\\\"\"]],[false,{\".fa-gitter:before\":false},[\"content:\\\"\\uf426\\\"\"]],[false,{\".fa-glide:before\":false},[\"content:\\\"\\uf2a5\\\"\"]],[false,{\".fa-glide-g:before\":false},[\"content:\\\"\\uf2a6\\\"\"]],[false,{\".fa-gofore:before\":false},[\"content:\\\"\\uf3a7\\\"\"]],[false,{\".fa-golang:before\":false},[\"content:\\\"\\ue40f\\\"\"]],[false,{\".fa-goodreads:before\":false},[\"content:\\\"\\uf3a8\\\"\"]],[false,{\".fa-goodreads-g:before\":false},[\"content:\\\"\\uf3a9\\\"\"]],[false,{\".fa-google:before\":false},[\"content:\\\"\\uf1a0\\\"\"]],[false,{\".fa-google-drive:before\":false},[\"content:\\\"\\uf3aa\\\"\"]],[false,{\".fa-google-pay:before\":false},[\"content:\\\"\\ue079\\\"\"]],[false,{\".fa-google-play:before\":false},[\"content:\\\"\\uf3ab\\\"\"]],[false,{\".fa-google-plus:before\":false},[\"content:\\\"\\uf2b3\\\"\"]],[false,{\".fa-google-plus-g:before\":false},[\"content:\\\"\\uf0d5\\\"\"]],[false,{\".fa-google-plus-square:before\":false},[\"content:\\\"\\uf0d4\\\"\"]],[false,{\".fa-google-wallet:before\":false},[\"content:\\\"\\uf1ee\\\"\"]],[false,{\".fa-gratipay:before\":false},[\"content:\\\"\\uf184\\\"\"]],[false,{\".fa-grav:before\":false},[\"content:\\\"\\uf2d6\\\"\"]],[false,{\".fa-gripfire:before\":false},[\"content:\\\"\\uf3ac\\\"\"]],[false,{\".fa-grunt:before\":false},[\"content:\\\"\\uf3ad\\\"\"]],[false,{\".fa-guilded:before\":false},[\"content:\\\"\\ue07e\\\"\"]],[false,{\".fa-gulp:before\":false},[\"content:\\\"\\uf3ae\\\"\"]],[false,{\".fa-hacker-news:before\":false},[\"content:\\\"\\uf1d4\\\"\"]],[false,{\".fa-hacker-news-square:before\":false},[\"content:\\\"\\uf3af\\\"\"]],[false,{\".fa-hackerrank:before\":false},[\"content:\\\"\\uf5f7\\\"\"]],[false,{\".fa-hashnode:before\":false},[\"content:\\\"\\ue499\\\"\"]],[false,{\".fa-hips:before\":false},[\"content:\\\"\\uf452\\\"\"]],[false,{\".fa-hire-a-helper:before\":false},[\"content:\\\"\\uf3b0\\\"\"]],[false,{\".fa-hive:before\":false},[\"content:\\\"\\ue07f\\\"\"]],[false,{\".fa-hooli:before\":false},[\"content:\\\"\\uf427\\\"\"]],[false,{\".fa-hornbill:before\":false},[\"content:\\\"\\uf592\\\"\"]],[false,{\".fa-hotjar:before\":false},[\"content:\\\"\\uf3b1\\\"\"]],[false,{\".fa-houzz:before\":false},[\"content:\\\"\\uf27c\\\"\"]],[false,{\".fa-html5:before\":false},[\"content:\\\"\\uf13b\\\"\"]],[false,{\".fa-hubspot:before\":false},[\"content:\\\"\\uf3b2\\\"\"]],[false,{\".fa-ideal:before\":false},[\"content:\\\"\\ue013\\\"\"]],[false,{\".fa-imdb:before\":false},[\"content:\\\"\\uf2d8\\\"\"]],[false,{\".fa-instagram:before\":false},[\"content:\\\"\\uf16d\\\"\"]],[false,{\".fa-instagram-square:before\":false},[\"content:\\\"\\ue055\\\"\"]],[false,{\".fa-instalod:before\":false},[\"content:\\\"\\ue081\\\"\"]],[false,{\".fa-intercom:before\":false},[\"content:\\\"\\uf7af\\\"\"]],[false,{\".fa-internet-explorer:before\":false},[\"content:\\\"\\uf26b\\\"\"]],[false,{\".fa-invision:before\":false},[\"content:\\\"\\uf7b0\\\"\"]],[false,{\".fa-ioxhost:before\":false},[\"content:\\\"\\uf208\\\"\"]],[false,{\".fa-itch-io:before\":false},[\"content:\\\"\\uf83a\\\"\"]],[false,{\".fa-itunes:before\":false},[\"content:\\\"\\uf3b4\\\"\"]],[false,{\".fa-itunes-note:before\":false},[\"content:\\\"\\uf3b5\\\"\"]],[false,{\".fa-java:before\":false},[\"content:\\\"\\uf4e4\\\"\"]],[false,{\".fa-jedi-order:before\":false},[\"content:\\\"\\uf50e\\\"\"]],[false,{\".fa-jenkins:before\":false},[\"content:\\\"\\uf3b6\\\"\"]],[false,{\".fa-jira:before\":false},[\"content:\\\"\\uf7b1\\\"\"]],[false,{\".fa-joget:before\":false},[\"content:\\\"\\uf3b7\\\"\"]],[false,{\".fa-joomla:before\":false},[\"content:\\\"\\uf1aa\\\"\"]],[false,{\".fa-js:before\":false},[\"content:\\\"\\uf3b8\\\"\"]],[false,{\".fa-js-square:before\":false},[\"content:\\\"\\uf3b9\\\"\"]],[false,{\".fa-jsfiddle:before\":false},[\"content:\\\"\\uf1cc\\\"\"]],[false,{\".fa-kaggle:before\":false},[\"content:\\\"\\uf5fa\\\"\"]],[false,{\".fa-keybase:before\":false},[\"content:\\\"\\uf4f5\\\"\"]],[false,{\".fa-keycdn:before\":false},[\"content:\\\"\\uf3ba\\\"\"]],[false,{\".fa-kickstarter:before\":false},[\"content:\\\"\\uf3bb\\\"\"]],[false,{\".fa-kickstarter-k:before\":false},[\"content:\\\"\\uf3bc\\\"\"]],[false,{\".fa-korvue:before\":false},[\"content:\\\"\\uf42f\\\"\"]],[false,{\".fa-laravel:before\":false},[\"content:\\\"\\uf3bd\\\"\"]],[false,{\".fa-lastfm:before\":false},[\"content:\\\"\\uf202\\\"\"]],[false,{\".fa-lastfm-square:before\":false},[\"content:\\\"\\uf203\\\"\"]],[false,{\".fa-leanpub:before\":false},[\"content:\\\"\\uf212\\\"\"]],[false,{\".fa-less:before\":false},[\"content:\\\"\\uf41d\\\"\"]],[false,{\".fa-line:before\":false},[\"content:\\\"\\uf3c0\\\"\"]],[false,{\".fa-linkedin:before\":false},[\"content:\\\"\\uf08c\\\"\"]],[false,{\".fa-linkedin-in:before\":false},[\"content:\\\"\\uf0e1\\\"\"]],[false,{\".fa-linode:before\":false},[\"content:\\\"\\uf2b8\\\"\"]],[false,{\".fa-linux:before\":false},[\"content:\\\"\\uf17c\\\"\"]],[false,{\".fa-lyft:before\":false},[\"content:\\\"\\uf3c3\\\"\"]],[false,{\".fa-magento:before\":false},[\"content:\\\"\\uf3c4\\\"\"]],[false,{\".fa-mailchimp:before\":false},[\"content:\\\"\\uf59e\\\"\"]],[false,{\".fa-mandalorian:before\":false},[\"content:\\\"\\uf50f\\\"\"]],[false,{\".fa-markdown:before\":false},[\"content:\\\"\\uf60f\\\"\"]],[false,{\".fa-mastodon:before\":false},[\"content:\\\"\\uf4f6\\\"\"]],[false,{\".fa-maxcdn:before\":false},[\"content:\\\"\\uf136\\\"\"]],[false,{\".fa-mdb:before\":false},[\"content:\\\"\\uf8ca\\\"\"]],[false,{\".fa-medapps:before\":false},[\"content:\\\"\\uf3c6\\\"\"]],[false,{\".fa-medium-m:before\":false,\".fa-medium:before\":false},[\"content:\\\"\\uf23a\\\"\"]],[false,{\".fa-medrt:before\":false},[\"content:\\\"\\uf3c8\\\"\"]],[false,{\".fa-meetup:before\":false},[\"content:\\\"\\uf2e0\\\"\"]],[false,{\".fa-megaport:before\":false},[\"content:\\\"\\uf5a3\\\"\"]],[false,{\".fa-mendeley:before\":false},[\"content:\\\"\\uf7b3\\\"\"]],[false,{\".fa-microblog:before\":false},[\"content:\\\"\\ue01a\\\"\"]],[false,{\".fa-microsoft:before\":false},[\"content:\\\"\\uf3ca\\\"\"]],[false,{\".fa-mix:before\":false},[\"content:\\\"\\uf3cb\\\"\"]],[false,{\".fa-mixcloud:before\":false},[\"content:\\\"\\uf289\\\"\"]],[false,{\".fa-mixer:before\":false},[\"content:\\\"\\ue056\\\"\"]],[false,{\".fa-mizuni:before\":false},[\"content:\\\"\\uf3cc\\\"\"]],[false,{\".fa-modx:before\":false},[\"content:\\\"\\uf285\\\"\"]],[false,{\".fa-monero:before\":false},[\"content:\\\"\\uf3d0\\\"\"]],[false,{\".fa-napster:before\":false},[\"content:\\\"\\uf3d2\\\"\"]],[false,{\".fa-neos:before\":false},[\"content:\\\"\\uf612\\\"\"]],[false,{\".fa-nfc-directional:before\":false},[\"content:\\\"\\ue530\\\"\"]],[false,{\".fa-nfc-symbol:before\":false},[\"content:\\\"\\ue531\\\"\"]],[false,{\".fa-nimblr:before\":false},[\"content:\\\"\\uf5a8\\\"\"]],[false,{\".fa-node:before\":false},[\"content:\\\"\\uf419\\\"\"]],[false,{\".fa-node-js:before\":false},[\"content:\\\"\\uf3d3\\\"\"]],[false,{\".fa-npm:before\":false},[\"content:\\\"\\uf3d4\\\"\"]],[false,{\".fa-ns8:before\":false},[\"content:\\\"\\uf3d5\\\"\"]],[false,{\".fa-nutritionix:before\":false},[\"content:\\\"\\uf3d6\\\"\"]],[false,{\".fa-octopus-deploy:before\":false},[\"content:\\\"\\ue082\\\"\"]],[false,{\".fa-odnoklassniki:before\":false},[\"content:\\\"\\uf263\\\"\"]],[false,{\".fa-odnoklassniki-square:before\":false},[\"content:\\\"\\uf264\\\"\"]],[false,{\".fa-old-republic:before\":false},[\"content:\\\"\\uf510\\\"\"]],[false,{\".fa-opencart:before\":false},[\"content:\\\"\\uf23d\\\"\"]],[false,{\".fa-openid:before\":false},[\"content:\\\"\\uf19b\\\"\"]],[false,{\".fa-opera:before\":false},[\"content:\\\"\\uf26a\\\"\"]],[false,{\".fa-optin-monster:before\":false},[\"content:\\\"\\uf23c\\\"\"]],[false,{\".fa-orcid:before\":false},[\"content:\\\"\\uf8d2\\\"\"]],[false,{\".fa-osi:before\":false},[\"content:\\\"\\uf41a\\\"\"]],[false,{\".fa-padlet:before\":false},[\"content:\\\"\\ue4a0\\\"\"]],[false,{\".fa-page4:before\":false},[\"content:\\\"\\uf3d7\\\"\"]],[false,{\".fa-pagelines:before\":false},[\"content:\\\"\\uf18c\\\"\"]],[false,{\".fa-palfed:before\":false},[\"content:\\\"\\uf3d8\\\"\"]],[false,{\".fa-patreon:before\":false},[\"content:\\\"\\uf3d9\\\"\"]],[false,{\".fa-paypal:before\":false},[\"content:\\\"\\uf1ed\\\"\"]],[false,{\".fa-perbyte:before\":false},[\"content:\\\"\\ue083\\\"\"]],[false,{\".fa-periscope:before\":false},[\"content:\\\"\\uf3da\\\"\"]],[false,{\".fa-phabricator:before\":false},[\"content:\\\"\\uf3db\\\"\"]],[false,{\".fa-phoenix-framework:before\":false},[\"content:\\\"\\uf3dc\\\"\"]],[false,{\".fa-phoenix-squadron:before\":false},[\"content:\\\"\\uf511\\\"\"]],[false,{\".fa-php:before\":false},[\"content:\\\"\\uf457\\\"\"]],[false,{\".fa-pied-piper:before\":false},[\"content:\\\"\\uf2ae\\\"\"]],[false,{\".fa-pied-piper-alt:before\":false},[\"content:\\\"\\uf1a8\\\"\"]],[false,{\".fa-pied-piper-hat:before\":false},[\"content:\\\"\\uf4e5\\\"\"]],[false,{\".fa-pied-piper-pp:before\":false},[\"content:\\\"\\uf1a7\\\"\"]],[false,{\".fa-pied-piper-square:before\":false},[\"content:\\\"\\ue01e\\\"\"]],[false,{\".fa-pinterest:before\":false},[\"content:\\\"\\uf0d2\\\"\"]],[false,{\".fa-pinterest-p:before\":false},[\"content:\\\"\\uf231\\\"\"]],[false,{\".fa-pinterest-square:before\":false},[\"content:\\\"\\uf0d3\\\"\"]],[false,{\".fa-pix:before\":false},[\"content:\\\"\\ue43a\\\"\"]],[false,{\".fa-playstation:before\":false},[\"content:\\\"\\uf3df\\\"\"]],[false,{\".fa-product-hunt:before\":false},[\"content:\\\"\\uf288\\\"\"]],[false,{\".fa-pushed:before\":false},[\"content:\\\"\\uf3e1\\\"\"]],[false,{\".fa-python:before\":false},[\"content:\\\"\\uf3e2\\\"\"]],[false,{\".fa-qq:before\":false},[\"content:\\\"\\uf1d6\\\"\"]],[false,{\".fa-quinscape:before\":false},[\"content:\\\"\\uf459\\\"\"]],[false,{\".fa-quora:before\":false},[\"content:\\\"\\uf2c4\\\"\"]],[false,{\".fa-r-project:before\":false},[\"content:\\\"\\uf4f7\\\"\"]],[false,{\".fa-raspberry-pi:before\":false},[\"content:\\\"\\uf7bb\\\"\"]],[false,{\".fa-ravelry:before\":false},[\"content:\\\"\\uf2d9\\\"\"]],[false,{\".fa-react:before\":false},[\"content:\\\"\\uf41b\\\"\"]],[false,{\".fa-reacteurope:before\":false},[\"content:\\\"\\uf75d\\\"\"]],[false,{\".fa-readme:before\":false},[\"content:\\\"\\uf4d5\\\"\"]],[false,{\".fa-rebel:before\":false},[\"content:\\\"\\uf1d0\\\"\"]],[false,{\".fa-red-river:before\":false},[\"content:\\\"\\uf3e3\\\"\"]],[false,{\".fa-reddit:before\":false},[\"content:\\\"\\uf1a1\\\"\"]],[false,{\".fa-reddit-alien:before\":false},[\"content:\\\"\\uf281\\\"\"]],[false,{\".fa-reddit-square:before\":false},[\"content:\\\"\\uf1a2\\\"\"]],[false,{\".fa-redhat:before\":false},[\"content:\\\"\\uf7bc\\\"\"]],[false,{\".fa-renren:before\":false},[\"content:\\\"\\uf18b\\\"\"]],[false,{\".fa-replyd:before\":false},[\"content:\\\"\\uf3e6\\\"\"]],[false,{\".fa-researchgate:before\":false},[\"content:\\\"\\uf4f8\\\"\"]],[false,{\".fa-resolving:before\":false},[\"content:\\\"\\uf3e7\\\"\"]],[false,{\".fa-rev:before\":false},[\"content:\\\"\\uf5b2\\\"\"]],[false,{\".fa-rocketchat:before\":false},[\"content:\\\"\\uf3e8\\\"\"]],[false,{\".fa-rockrms:before\":false},[\"content:\\\"\\uf3e9\\\"\"]],[false,{\".fa-rust:before\":false},[\"content:\\\"\\ue07a\\\"\"]],[false,{\".fa-safari:before\":false},[\"content:\\\"\\uf267\\\"\"]],[false,{\".fa-salesforce:before\":false},[\"content:\\\"\\uf83b\\\"\"]],[false,{\".fa-sass:before\":false},[\"content:\\\"\\uf41e\\\"\"]],[false,{\".fa-schlix:before\":false},[\"content:\\\"\\uf3ea\\\"\"]],[false,{\".fa-screenpal:before\":false},[\"content:\\\"\\ue570\\\"\"]],[false,{\".fa-scribd:before\":false},[\"content:\\\"\\uf28a\\\"\"]],[false,{\".fa-searchengin:before\":false},[\"content:\\\"\\uf3eb\\\"\"]],[false,{\".fa-sellcast:before\":false},[\"content:\\\"\\uf2da\\\"\"]],[false,{\".fa-sellsy:before\":false},[\"content:\\\"\\uf213\\\"\"]],[false,{\".fa-servicestack:before\":false},[\"content:\\\"\\uf3ec\\\"\"]],[false,{\".fa-shirtsinbulk:before\":false},[\"content:\\\"\\uf214\\\"\"]],[false,{\".fa-shopify:before\":false},[\"content:\\\"\\ue057\\\"\"]],[false,{\".fa-shopware:before\":false},[\"content:\\\"\\uf5b5\\\"\"]],[false,{\".fa-simplybuilt:before\":false},[\"content:\\\"\\uf215\\\"\"]],[false,{\".fa-sistrix:before\":false},[\"content:\\\"\\uf3ee\\\"\"]],[false,{\".fa-sith:before\":false},[\"content:\\\"\\uf512\\\"\"]],[false,{\".fa-sitrox:before\":false},[\"content:\\\"\\ue44a\\\"\"]],[false,{\".fa-sketch:before\":false},[\"content:\\\"\\uf7c6\\\"\"]],[false,{\".fa-skyatlas:before\":false},[\"content:\\\"\\uf216\\\"\"]],[false,{\".fa-skype:before\":false},[\"content:\\\"\\uf17e\\\"\"]],[false,{\".fa-slack-hash:before\":false,\".fa-slack:before\":false},[\"content:\\\"\\uf198\\\"\"]],[false,{\".fa-slideshare:before\":false},[\"content:\\\"\\uf1e7\\\"\"]],[false,{\".fa-snapchat-ghost:before\":false,\".fa-snapchat:before\":false},[\"content:\\\"\\uf2ab\\\"\"]],[false,{\".fa-snapchat-square:before\":false},[\"content:\\\"\\uf2ad\\\"\"]],[false,{\".fa-soundcloud:before\":false},[\"content:\\\"\\uf1be\\\"\"]],[false,{\".fa-sourcetree:before\":false},[\"content:\\\"\\uf7d3\\\"\"]],[false,{\".fa-speakap:before\":false},[\"content:\\\"\\uf3f3\\\"\"]],[false,{\".fa-speaker-deck:before\":false},[\"content:\\\"\\uf83c\\\"\"]],[false,{\".fa-spotify:before\":false},[\"content:\\\"\\uf1bc\\\"\"]],[false,{\".fa-square-font-awesome:before\":false},[\"content:\\\"\\uf425\\\"\"]],[false,{\".fa-font-awesome-alt:before\":false,\".fa-square-font-awesome-stroke:before\":false},[\"content:\\\"\\uf35c\\\"\"]],[false,{\".fa-squarespace:before\":false},[\"content:\\\"\\uf5be\\\"\"]],[false,{\".fa-stack-exchange:before\":false},[\"content:\\\"\\uf18d\\\"\"]],[false,{\".fa-stack-overflow:before\":false},[\"content:\\\"\\uf16c\\\"\"]],[false,{\".fa-stackpath:before\":false},[\"content:\\\"\\uf842\\\"\"]],[false,{\".fa-staylinked:before\":false},[\"content:\\\"\\uf3f5\\\"\"]],[false,{\".fa-steam:before\":false},[\"content:\\\"\\uf1b6\\\"\"]],[false,{\".fa-steam-square:before\":false},[\"content:\\\"\\uf1b7\\\"\"]],[false,{\".fa-steam-symbol:before\":false},[\"content:\\\"\\uf3f6\\\"\"]],[false,{\".fa-sticker-mule:before\":false},[\"content:\\\"\\uf3f7\\\"\"]],[false,{\".fa-strava:before\":false},[\"content:\\\"\\uf428\\\"\"]],[false,{\".fa-stripe:before\":false},[\"content:\\\"\\uf429\\\"\"]],[false,{\".fa-stripe-s:before\":false},[\"content:\\\"\\uf42a\\\"\"]],[false,{\".fa-studiovinari:before\":false},[\"content:\\\"\\uf3f8\\\"\"]],[false,{\".fa-stumbleupon:before\":false},[\"content:\\\"\\uf1a4\\\"\"]],[false,{\".fa-stumbleupon-circle:before\":false},[\"content:\\\"\\uf1a3\\\"\"]],[false,{\".fa-superpowers:before\":false},[\"content:\\\"\\uf2dd\\\"\"]],[false,{\".fa-supple:before\":false},[\"content:\\\"\\uf3f9\\\"\"]],[false,{\".fa-suse:before\":false},[\"content:\\\"\\uf7d6\\\"\"]],[false,{\".fa-swift:before\":false},[\"content:\\\"\\uf8e1\\\"\"]],[false,{\".fa-symfony:before\":false},[\"content:\\\"\\uf83d\\\"\"]],[false,{\".fa-teamspeak:before\":false},[\"content:\\\"\\uf4f9\\\"\"]],[false,{\".fa-telegram-plane:before\":false,\".fa-telegram:before\":false},[\"content:\\\"\\uf2c6\\\"\"]],[false,{\".fa-tencent-weibo:before\":false},[\"content:\\\"\\uf1d5\\\"\"]],[false,{\".fa-the-red-yeti:before\":false},[\"content:\\\"\\uf69d\\\"\"]],[false,{\".fa-themeco:before\":false},[\"content:\\\"\\uf5c6\\\"\"]],[false,{\".fa-themeisle:before\":false},[\"content:\\\"\\uf2b2\\\"\"]],[false,{\".fa-think-peaks:before\":false},[\"content:\\\"\\uf731\\\"\"]],[false,{\".fa-tiktok:before\":false},[\"content:\\\"\\ue07b\\\"\"]],[false,{\".fa-trade-federation:before\":false},[\"content:\\\"\\uf513\\\"\"]],[false,{\".fa-trello:before\":false},[\"content:\\\"\\uf181\\\"\"]],[false,{\".fa-tumblr:before\":false},[\"content:\\\"\\uf173\\\"\"]],[false,{\".fa-tumblr-square:before\":false},[\"content:\\\"\\uf174\\\"\"]],[false,{\".fa-twitch:before\":false},[\"content:\\\"\\uf1e8\\\"\"]],[false,{\".fa-twitter:before\":false},[\"content:\\\"\\uf099\\\"\"]],[false,{\".fa-twitter-square:before\":false},[\"content:\\\"\\uf081\\\"\"]],[false,{\".fa-typo3:before\":false},[\"content:\\\"\\uf42b\\\"\"]],[false,{\".fa-uber:before\":false},[\"content:\\\"\\uf402\\\"\"]],[false,{\".fa-ubuntu:before\":false},[\"content:\\\"\\uf7df\\\"\"]],[false,{\".fa-uikit:before\":false},[\"content:\\\"\\uf403\\\"\"]],[false,{\".fa-umbraco:before\":false},[\"content:\\\"\\uf8e8\\\"\"]],[false,{\".fa-uncharted:before\":false},[\"content:\\\"\\ue084\\\"\"]],[false,{\".fa-uniregistry:before\":false},[\"content:\\\"\\uf404\\\"\"]],[false,{\".fa-unity:before\":false},[\"content:\\\"\\ue049\\\"\"]],[false,{\".fa-unsplash:before\":false},[\"content:\\\"\\ue07c\\\"\"]],[false,{\".fa-untappd:before\":false},[\"content:\\\"\\uf405\\\"\"]],[false,{\".fa-ups:before\":false},[\"content:\\\"\\uf7e0\\\"\"]],[false,{\".fa-usb:before\":false},[\"content:\\\"\\uf287\\\"\"]],[false,{\".fa-usps:before\":false},[\"content:\\\"\\uf7e1\\\"\"]],[false,{\".fa-ussunnah:before\":false},[\"content:\\\"\\uf407\\\"\"]],[false,{\".fa-vaadin:before\":false},[\"content:\\\"\\uf408\\\"\"]],[false,{\".fa-viacoin:before\":false},[\"content:\\\"\\uf237\\\"\"]],[false,{\".fa-viadeo:before\":false},[\"content:\\\"\\uf2a9\\\"\"]],[false,{\".fa-viadeo-square:before\":false},[\"content:\\\"\\uf2aa\\\"\"]],[false,{\".fa-viber:before\":false},[\"content:\\\"\\uf409\\\"\"]],[false,{\".fa-vimeo:before\":false},[\"content:\\\"\\uf40a\\\"\"]],[false,{\".fa-vimeo-square:before\":false},[\"content:\\\"\\uf194\\\"\"]],[false,{\".fa-vimeo-v:before\":false},[\"content:\\\"\\uf27d\\\"\"]],[false,{\".fa-vine:before\":false},[\"content:\\\"\\uf1ca\\\"\"]],[false,{\".fa-vk:before\":false},[\"content:\\\"\\uf189\\\"\"]],[false,{\".fa-vnv:before\":false},[\"content:\\\"\\uf40b\\\"\"]],[false,{\".fa-vuejs:before\":false},[\"content:\\\"\\uf41f\\\"\"]],[false,{\".fa-watchman-monitoring:before\":false},[\"content:\\\"\\ue087\\\"\"]],[false,{\".fa-waze:before\":false},[\"content:\\\"\\uf83f\\\"\"]],[false,{\".fa-weebly:before\":false},[\"content:\\\"\\uf5cc\\\"\"]],[false,{\".fa-weibo:before\":false},[\"content:\\\"\\uf18a\\\"\"]],[false,{\".fa-weixin:before\":false},[\"content:\\\"\\uf1d7\\\"\"]],[false,{\".fa-whatsapp:before\":false},[\"content:\\\"\\uf232\\\"\"]],[false,{\".fa-whatsapp-square:before\":false},[\"content:\\\"\\uf40c\\\"\"]],[false,{\".fa-whmcs:before\":false},[\"content:\\\"\\uf40d\\\"\"]],[false,{\".fa-wikipedia-w:before\":false},[\"content:\\\"\\uf266\\\"\"]],[false,{\".fa-windows:before\":false},[\"content:\\\"\\uf17a\\\"\"]],[false,{\".fa-wirsindhandwerk:before\":false,\".fa-wsh:before\":false},[\"content:\\\"\\ue2d0\\\"\"]],[false,{\".fa-wix:before\":false},[\"content:\\\"\\uf5cf\\\"\"]],[false,{\".fa-wizards-of-the-coast:before\":false},[\"content:\\\"\\uf730\\\"\"]],[false,{\".fa-wodu:before\":false},[\"content:\\\"\\ue088\\\"\"]],[false,{\".fa-wolf-pack-battalion:before\":false},[\"content:\\\"\\uf514\\\"\"]],[false,{\".fa-wordpress:before\":false},[\"content:\\\"\\uf19a\\\"\"]],[false,{\".fa-wordpress-simple:before\":false},[\"content:\\\"\\uf411\\\"\"]],[false,{\".fa-wpbeginner:before\":false},[\"content:\\\"\\uf297\\\"\"]],[false,{\".fa-wpexplorer:before\":false},[\"content:\\\"\\uf2de\\\"\"]],[false,{\".fa-wpforms:before\":false},[\"content:\\\"\\uf298\\\"\"]],[false,{\".fa-wpressr:before\":false},[\"content:\\\"\\uf3e4\\\"\"]],[false,{\".fa-xbox:before\":false},[\"content:\\\"\\uf412\\\"\"]],[false,{\".fa-xing:before\":false},[\"content:\\\"\\uf168\\\"\"]],[false,{\".fa-xing-square:before\":false},[\"content:\\\"\\uf169\\\"\"]],[false,{\".fa-y-combinator:before\":false},[\"content:\\\"\\uf23b\\\"\"]],[false,{\".fa-yahoo:before\":false},[\"content:\\\"\\uf19e\\\"\"]],[false,{\".fa-yammer:before\":false},[\"content:\\\"\\uf840\\\"\"]],[false,{\".fa-yandex:before\":false},[\"content:\\\"\\uf413\\\"\"]],[false,{\".fa-yandex-international:before\":false},[\"content:\\\"\\uf414\\\"\"]],[false,{\".fa-yarn:before\":false},[\"content:\\\"\\uf7e3\\\"\"]],[false,{\".fa-yelp:before\":false},[\"content:\\\"\\uf1e9\\\"\"]],[false,{\".fa-yoast:before\":false},[\"content:\\\"\\uf2b1\\\"\"]],[false,{\".fa-youtube:before\":false},[\"content:\\\"\\uf167\\\"\"]],[false,{\".fa-youtube-square:before\":false},[\"content:\\\"\\uf431\\\"\"]],[false,{\".fa-zhihu:before\":false},[\"content:\\\"\\uf63f\\\"\"]],[true,{\":host\":true,\":root\":true},[\"--fa-font-regular:normal 400 1em\\/1 \\\"Font Awesome 6 Free\\\"\"]],[true,\"@font-face{font-family:\\\"Font Awesome 6 Free\\\";font-style:normal;font-weight:400;font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\")}\"],[false,{\".fa-regular\":false,\".far\":false},[\"font-family:\\\"Font Awesome 6 Free\\\"\",\"font-weight:400\"]],[true,{\":host\":true,\":root\":true},[\"--fa-font-solid:normal 900 1em\\/1 \\\"Font Awesome 6 Free\\\"\"]],[true,\"@font-face{font-family:\\\"Font Awesome 6 Free\\\";font-style:normal;font-weight:900;font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\")}\"],[true,{\".fa-solid\":false,\".fas\":true},[\"font-family:\\\"Font Awesome 6 Free\\\"\",\"font-weight:900\"]],[true,\"@font-face{font-family:\\\"Font Awesome 5 Brands\\\";font-display:block;font-weight:400;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-display:block;font-weight:900;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-display:block;font-weight:400;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-v4compatibility.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-v4compatibility.ttf\\\") format(\\\"truetype\\\")}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":16466,\"final_size\":2468,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"f525e508f09233d1bbad77f319ca5b46\",\"parse_time\":0.25615501403808594,\"shake_time\":0.00017309188842773438,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,\"@font-face{font-family:swiper-icons;src:url(\\\"data:application\\/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj\\/\\/wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA\\/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu\\/j+W2+MnAzMYDAzaX6QjD6\\/4\\/\\/Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+\\/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg\\/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4\\/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9\\/w8UBfEMgLzE\\/\\/\\/\\/P\\/5\\/\\/f\\/V\\/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA\\/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP\\/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj\\/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB\\/yIY09An6AH2Bdu\\/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z\\/PEJ6YOB5hKh4dj3EvXhxPqH\\/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN\\/d\\/gczfEimrE\\/fs\\/bOuq29Zmn8tloORaXgZgGa78yO9\\/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i\\/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH\\/\\/wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv\\/H9ezGI6Z5XBAw8CBK\\/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow\\/P\\/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA\\\");font-weight:400;font-style:normal}\"],[true,{\":root\":true},[\"--swiper-theme-color:#007aff\"]],[false,{\".swiper\":false},[\"margin-left:auto\",\"margin-right:auto\",\"position:relative\",\"overflow:hidden\",\"list-style:none\",\"padding:0\",\"z-index:1\"]],[false,{\".swiper-vertical>.swiper-wrapper\":false},[\"flex-direction:column\"]],[false,{\".swiper-wrapper\":false},[\"position:relative\",\"width:100%\",\"height:100%\",\"z-index:1\",\"display:flex\",\"transition-property:transform\",\"box-sizing:content-box\"]],[false,{\".swiper-android .swiper-slide\":false,\".swiper-wrapper\":false},[\"transform:translate3d(0px,0,0)\"]],[false,{\".swiper-pointer-events\":false},[\"touch-action:pan-y\"]],[false,{\".swiper-pointer-events.swiper-vertical\":false},[\"touch-action:pan-x\"]],[false,{\".swiper-slide\":false},[\"flex-shrink:0\",\"width:100%\",\"height:100%\",\"position:relative\",\"transition-property:transform\"]],[false,{\".swiper-slide-invisible-blank\":false},[\"visibility:hidden\"]],[false,{\".swiper-autoheight\":false,\".swiper-autoheight .swiper-slide\":false},[\"height:auto\"]],[false,{\".swiper-autoheight .swiper-wrapper\":false},[\"align-items:flex-start\",\"transition-property:transform,height\"]],[false,{\".swiper-backface-hidden .swiper-slide\":false},[\"transform:translateZ(0)\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".swiper-3d\":false,\".swiper-3d.swiper-css-mode .swiper-wrapper\":false},[\"perspective:1200px\"]],[false,{\".swiper-3d .swiper-cube-shadow\":false,\".swiper-3d .swiper-slide\":false,\".swiper-3d .swiper-slide-shadow\":false,\".swiper-3d .swiper-slide-shadow-bottom\":false,\".swiper-3d .swiper-slide-shadow-left\":false,\".swiper-3d .swiper-slide-shadow-right\":false,\".swiper-3d .swiper-slide-shadow-top\":false,\".swiper-3d .swiper-wrapper\":false},[\"transform-style:preserve-3d\"]],[false,{\".swiper-3d .swiper-slide-shadow\":false,\".swiper-3d .swiper-slide-shadow-bottom\":false,\".swiper-3d .swiper-slide-shadow-left\":false,\".swiper-3d .swiper-slide-shadow-right\":false,\".swiper-3d .swiper-slide-shadow-top\":false},[\"position:absolute\",\"left:0\",\"top:0\",\"width:100%\",\"height:100%\",\"pointer-events:none\",\"z-index:10\"]],[false,{\".swiper-3d .swiper-slide-shadow\":false},[\"background:rgba(0,0,0,.15)\"]],[false,{\".swiper-3d .swiper-slide-shadow-left\":false},[\"background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-3d .swiper-slide-shadow-right\":false},[\"background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-3d .swiper-slide-shadow-top\":false},[\"background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-3d .swiper-slide-shadow-bottom\":false},[\"background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-css-mode>.swiper-wrapper\":false},[\"overflow:auto\",\"scrollbar-width:none\",\"-ms-overflow-style:none\"]],[false,{\".swiper-css-mode>.swiper-wrapper::-webkit-scrollbar\":false},[\"display:none\"]],[false,{\".swiper-css-mode>.swiper-wrapper>.swiper-slide\":false},[\"scroll-snap-align:start start\"]],[false,{\".swiper-horizontal.swiper-css-mode>.swiper-wrapper\":false},[\"scroll-snap-type:x mandatory\"]],[false,{\".swiper-vertical.swiper-css-mode>.swiper-wrapper\":false},[\"scroll-snap-type:y mandatory\"]],[false,{\".swiper-centered>.swiper-wrapper::before\":false},[\"content:\\\"\\\"\",\"flex-shrink:0\",\"order:9999\"]],[false,{\".swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child\":false},[\"margin-inline-start:var(--swiper-centered-offset-before)\"]],[false,{\".swiper-centered.swiper-horizontal>.swiper-wrapper::before\":false},[\"height:100%\",\"min-height:1px\",\"width:var(--swiper-centered-offset-after)\"]],[false,{\".swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child\":false},[\"margin-block-start:var(--swiper-centered-offset-before)\"]],[false,{\".swiper-centered.swiper-vertical>.swiper-wrapper::before\":false},[\"width:100%\",\"min-width:1px\",\"height:var(--swiper-centered-offset-after)\"]],[false,{\".swiper-centered>.swiper-wrapper>.swiper-slide\":false},[\"scroll-snap-align:center center\"]],[false,{\".swiper-virtual .swiper-slide\":false},[\"-webkit-backface-visibility:hidden\",\"transform:translateZ(0)\"]],[false,{\".swiper-virtual.swiper-css-mode .swiper-wrapper::after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"left:0\",\"top:0\",\"pointer-events:none\"]],[false,{\".swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after\":false},[\"height:1px\",\"width:var(--swiper-virtual-size)\"]],[false,{\".swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after\":false},[\"width:1px\",\"height:var(--swiper-virtual-size)\"]],[true,{\":root\":true},[\"--swiper-navigation-size:44px\"]],[false,{\".swiper-button-next\":false,\".swiper-button-prev\":false},[\"position:absolute\",\"top:50%\",\"width:calc(var(--swiper-navigation-size) \\/ 44 * 27)\",\"height:var(--swiper-navigation-size)\",\"margin-top:calc(0px - ( var(--swiper-navigation-size) \\/ 2 ))\",\"z-index:10\",\"cursor:pointer\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"color:var(--swiper-navigation-color,var(--swiper-theme-color))\"]],[false,{\".swiper-button-next.swiper-button-disabled\":false,\".swiper-button-prev.swiper-button-disabled\":false},[\"opacity:.35\",\"cursor:auto\",\"pointer-events:none\"]],[false,{\".swiper-button-next.swiper-button-hidden\":false,\".swiper-button-prev.swiper-button-hidden\":false},[\"opacity:0\",\"cursor:auto\",\"pointer-events:none\"]],[false,{\".swiper-navigation-disabled .swiper-button-next:not(#_#_#_#_#_#_#_)\":false,\".swiper-navigation-disabled .swiper-button-prev:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-button-next:after\":false,\".swiper-button-prev:after\":false},[\"font-family:swiper-icons\",\"font-size:var(--swiper-navigation-size)\",\"letter-spacing:0\",\"font-variant:initial\",\"line-height:1\"]],[false,{\".swiper-button-next:after:not(#_#_#_#_#_#_#_#_)\":false,\".swiper-button-prev:after:not(#_#_#_#_#_#_#_#_)\":false},[\"text-transform:none\"]],[false,{\".swiper-button-prev\":false,\".swiper-rtl .swiper-button-next\":false},[\"left:10px\",\"right:auto\"]],[false,{\".swiper-button-prev:after\":false,\".swiper-rtl .swiper-button-next:after\":false},[\"content:\\\"prev\\\"\"]],[false,{\".swiper-button-next\":false,\".swiper-rtl .swiper-button-prev\":false},[\"right:10px\",\"left:auto\"]],[false,{\".swiper-button-next:after\":false,\".swiper-rtl .swiper-button-prev:after\":false},[\"content:\\\"next\\\"\"]],[false,{\".swiper-button-lock\":false},[\"display:none\"]],[false,{\".swiper-pagination\":false},[\"position:absolute\",\"text-align:center\",\"transition:.3s opacity\",\"transform:translate3d(0,0,0)\",\"z-index:10\"]],[false,{\".swiper-pagination.swiper-pagination-hidden\":false},[\"opacity:0\"]],[false,{\".swiper-pagination-disabled>.swiper-pagination:not(#_#_#_#_#_#_#_)\":false,\".swiper-pagination.swiper-pagination-disabled:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets\":false,\".swiper-pagination-bullets.swiper-pagination-horizontal\":false,\".swiper-pagination-custom\":false,\".swiper-pagination-fraction\":false},[\"bottom:10px\",\"left:0\",\"width:100%\"]],[false,{\".swiper-pagination-bullets-dynamic\":false},[\"overflow:hidden\",\"font-size:0\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"transform:scale(.33)\",\"position:relative\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active\":false},[\"transform:scale(1)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main\":false},[\"transform:scale(1)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev\":false},[\"transform:scale(.66)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev\":false},[\"transform:scale(.33)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next\":false},[\"transform:scale(.66)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next\":false},[\"transform:scale(.33)\"]],[false,{\".swiper-pagination-bullet\":false},[\"width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px))\",\"height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px))\",\"display:inline-block\",\"border-radius:50%\",\"background:var(--swiper-pagination-bullet-inactive-color,#000)\",\"opacity:var(--swiper-pagination-bullet-inactive-opacity,.2)\"]],[false,{\"button.swiper-pagination-bullet\":false},[\"border:none\",\"margin:0\",\"padding:0\",\"box-shadow:none\",\"-webkit-appearance:none\",\"appearance:none\"]],[false,{\".swiper-pagination-clickable .swiper-pagination-bullet\":false},[\"cursor:pointer\"]],[false,{\".swiper-pagination-bullet:only-child:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-pagination-bullet-active\":false},[\"opacity:var(--swiper-pagination-bullet-opacity,1)\",\"background:var(--swiper-pagination-color,var(--swiper-theme-color))\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets\":false,\".swiper-vertical>.swiper-pagination-bullets\":false},[\"right:10px\",\"top:50%\",\"transform:translate3d(0px,-50%,0)\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet\":false,\".swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet\":false},[\"margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0\",\"display:block\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false,\".swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false},[\"top:50%\",\"transform:translateY(-50%)\",\"width:8px\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false,\".swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"display:inline-block\",\"transition:.2s transform,.2s top\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet\":false,\".swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet\":false},[\"margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false,\".swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false},[\"left:50%\",\"transform:translateX(-50%)\",\"white-space:nowrap\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false,\".swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"transition:.2s transform,.2s left\"]],[false,{\".swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"transition:.2s transform,.2s right\"]],[false,{\".swiper-pagination-progressbar\":false},[\"background:rgba(0,0,0,.25)\",\"position:absolute\"]],[false,{\".swiper-pagination-progressbar .swiper-pagination-progressbar-fill\":false},[\"background:var(--swiper-pagination-color,var(--swiper-theme-color))\",\"position:absolute\",\"left:0\",\"top:0\",\"width:100%\",\"height:100%\",\"transform:scale(0)\",\"transform-origin:left top\"]],[false,{\".swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill\":false},[\"transform-origin:right top\"]],[false,{\".swiper-horizontal>.swiper-pagination-progressbar\":false,\".swiper-pagination-progressbar.swiper-pagination-horizontal\":false,\".swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite\":false,\".swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite\":false},[\"width:100%\",\"height:4px\",\"left:0\",\"top:0\"]],[false,{\".swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite\":false,\".swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite\":false,\".swiper-pagination-progressbar.swiper-pagination-vertical\":false,\".swiper-vertical>.swiper-pagination-progressbar\":false},[\"width:4px\",\"height:100%\",\"left:0\",\"top:0\"]],[false,{\".swiper-pagination-lock\":false},[\"display:none\"]],[false,{\".swiper-scrollbar\":false},[\"border-radius:10px\",\"position:relative\",\"-ms-touch-action:none\",\"background:rgba(0,0,0,.1)\"]],[false,{\".swiper-scrollbar-disabled>.swiper-scrollbar:not(#_#_#_#_#_#_#_)\":false,\".swiper-scrollbar.swiper-scrollbar-disabled:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-horizontal>.swiper-scrollbar\":false,\".swiper-scrollbar.swiper-scrollbar-horizontal\":false},[\"position:absolute\",\"left:1%\",\"bottom:3px\",\"z-index:50\",\"height:5px\",\"width:98%\"]],[false,{\".swiper-scrollbar.swiper-scrollbar-vertical\":false,\".swiper-vertical>.swiper-scrollbar\":false},[\"position:absolute\",\"right:3px\",\"top:1%\",\"z-index:50\",\"width:5px\",\"height:98%\"]],[false,{\".swiper-scrollbar-drag\":false},[\"height:100%\",\"width:100%\",\"position:relative\",\"background:rgba(0,0,0,.5)\",\"border-radius:10px\",\"left:0\",\"top:0\"]],[false,{\".swiper-scrollbar-cursor-drag\":false},[\"cursor:move\"]],[false,{\".swiper-scrollbar-lock\":false},[\"display:none\"]],[false,{\".swiper-zoom-container\":false},[\"width:100%\",\"height:100%\",\"display:flex\",\"justify-content:center\",\"align-items:center\",\"text-align:center\"]],[false,{\".swiper-zoom-container>canvas\":false,\".swiper-zoom-container>amp-img\":false,\".swiper-zoom-container>amp-anim\":false,\".swiper-zoom-container>svg\":false},[\"max-width:100%\",\"max-height:100%\",\"object-fit:contain\"]],[false,{\".swiper-slide-zoomed\":false},[\"cursor:move\"]],[false,{\".swiper-lazy-preloader\":false},[\"width:42px\",\"height:42px\",\"position:absolute\",\"left:50%\",\"top:50%\",\"margin-left:-21px\",\"margin-top:-21px\",\"z-index:10\",\"transform-origin:50%\",\"box-sizing:border-box\",\"border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color))\",\"border-radius:50%\",\"border-top-color:transparent\"]],[false,{\".swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader\":false,\".swiper:not(.swiper-watch-progress) .swiper-lazy-preloader\":false},[\"animation:swiper-preloader-spin 1s infinite linear\"]],[false,{\".swiper-lazy-preloader-white\":false},[\"--swiper-preloader-color:#fff\"]],[false,{\".swiper-lazy-preloader-black\":false},[\"--swiper-preloader-color:#000\"]],[true,\"@keyframes swiper-preloader-spin{\"],[true,\"0%{transform:rotate(0deg)}\"],[true,\"100%{transform:rotate(360deg)}\"],[true,\"}\"],[false,{\".swiper .swiper-notification\":false},[\"position:absolute\",\"left:0\",\"top:0\",\"pointer-events:none\",\"opacity:0\",\"z-index:-1000\"]],[false,{\".swiper-free-mode>.swiper-wrapper\":false},[\"transition-timing-function:ease-out\",\"margin:0 auto\"]],[false,{\".swiper-grid>.swiper-wrapper\":false},[\"flex-wrap:wrap\"]],[false,{\".swiper-grid-column>.swiper-wrapper\":false},[\"flex-wrap:wrap\",\"flex-direction:column\"]],[false,{\".swiper-fade.swiper-free-mode .swiper-slide\":false},[\"transition-timing-function:ease-out\"]],[false,{\".swiper-fade .swiper-slide\":false},[\"pointer-events:none\",\"transition-property:opacity\"]],[false,{\".swiper-fade .swiper-slide .swiper-slide\":false},[\"pointer-events:none\"]],[false,{\".swiper-fade .swiper-slide-active\":false,\".swiper-fade .swiper-slide-active .swiper-slide-active\":false},[\"pointer-events:auto\"]],[false,{\".swiper-cube\":false},[\"overflow:visible\"]],[false,{\".swiper-cube .swiper-slide\":false},[\"pointer-events:none\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"z-index:1\",\"visibility:hidden\",\"transform-origin:0 0\",\"width:100%\",\"height:100%\"]],[false,{\".swiper-cube .swiper-slide .swiper-slide\":false},[\"pointer-events:none\"]],[false,{\".swiper-cube.swiper-rtl .swiper-slide\":false},[\"transform-origin:100% 0\"]],[false,{\".swiper-cube .swiper-slide-active\":false,\".swiper-cube .swiper-slide-active .swiper-slide-active\":false},[\"pointer-events:auto\"]],[false,{\".swiper-cube .swiper-slide-active\":false,\".swiper-cube .swiper-slide-next\":false,\".swiper-cube .swiper-slide-next+.swiper-slide\":false,\".swiper-cube .swiper-slide-prev\":false},[\"pointer-events:auto\",\"visibility:visible\"]],[false,{\".swiper-cube .swiper-slide-shadow-bottom\":false,\".swiper-cube .swiper-slide-shadow-left\":false,\".swiper-cube .swiper-slide-shadow-right\":false,\".swiper-cube .swiper-slide-shadow-top\":false},[\"z-index:0\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".swiper-cube .swiper-cube-shadow\":false},[\"position:absolute\",\"left:0\",\"bottom:0px\",\"width:100%\",\"height:100%\",\"opacity:.6\",\"z-index:0\"]],[false,{\".swiper-cube .swiper-cube-shadow:before\":false},[\"content:\\\"\\\"\",\"background:#000\",\"position:absolute\",\"left:0\",\"top:0\",\"bottom:0\",\"right:0\",\"filter:blur(50px)\"]],[false,{\".swiper-flip\":false},[\"overflow:visible\"]],[false,{\".swiper-flip .swiper-slide\":false},[\"pointer-events:none\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"z-index:1\"]],[false,{\".swiper-flip .swiper-slide .swiper-slide\":false},[\"pointer-events:none\"]],[false,{\".swiper-flip .swiper-slide-active\":false,\".swiper-flip .swiper-slide-active .swiper-slide-active\":false},[\"pointer-events:auto\"]],[false,{\".swiper-flip .swiper-slide-shadow-bottom\":false,\".swiper-flip .swiper-slide-shadow-left\":false,\".swiper-flip .swiper-slide-shadow-right\":false,\".swiper-flip .swiper-slide-shadow-top\":false},[\"z-index:0\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".swiper-creative .swiper-slide\":false},[\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"overflow:hidden\",\"transition-property:transform,opacity,height\"]],[false,{\".swiper-cards\":false},[\"overflow:visible\"]],[false,{\".swiper-cards .swiper-slide\":false},[\"transform-origin:center bottom\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"overflow:hidden\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":810,\"final_size\":766,\"element\":{\"name\":\"style\",\"attributes\":[]},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Header_Output.php\",\"line\":69,\"function\":\"SWP_Header_Output::add_header_output\",\"hook\":\"wp_head\",\"priority\":1}],\"priority\":70,\"hash\":\"0a9255310f1740c2ab6cffd5f5a29640\",\"parse_time\":0.0011060237884521484,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0#iefix\"],\"shaken_tokens\":[[true,\"@font-face{font-family:\\\"sw-icon-font\\\";src:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0\\\");src:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.woff?ver=4.3.0\\\") format(\\\"woff\\\"),url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.ttf?ver=4.3.0\\\") format(\\\"truetype\\\"),url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.svg?ver=4.3.0#1445203416\\\") format(\\\"svg\\\");font-weight:normal;font-style:normal;font-display:block}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2209,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"social-warfare-block-css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/js\\/post-editor\\/dist\\/blocks.style.build.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"assets\\/js\\/post-editor\\/blocks.php\",\"line\":20,\"function\":\"register_gutenberg_blocks\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social-warfare-block-css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"c542eecf74fba8e6b26c437634e5223e\",\"parse_time\":0.010244131088256836,\"shake_time\":2.8133392333984375e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".social-warfare-admin-block\":false},[\"font-family:\\\"SF Pro Text\\\",\\\"Helvetica\\\",sans-serif\",\"font-size:13px\"]],[false,{\".social-warfare-admin-block .head\":false},[\"width:100%\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".social-warfare-admin-block .head p\":false},[\"font-weight:bold\"]],[false,{\".social-warfare-admin-block .swp-block-icon\":false},[\"margin:0 28px 0 14px\",\"font-size:18px\",\"width:32px\",\"height:32px\"]],[false,{\".social-warfare-block-wrap input\":false,\".social-warfare-block-wrap select\":false},[\"width:100%\"]],[false,{\".swp-active-block\":false},[\"height:100%\"]],[false,{\".swp-active-block input\":false,\".swp-active-block select\":false,\".swp-active-block textarea\":false},[\"display:block\",\"width:100%\",\"padding:5px\",\"height:42px\",\"border:1px solid #e2e4e7\"]],[false,{\".swp-active-block textarea\":false},[\"height:64px\"]],[false,{\".swp-active-block .swp-inner-block-50\":false},[\"width:50%\",\"display:inline-block\",\"padding:0 1px\"]],[false,{\".swp-active-block .head>div\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row no-wrap\",\"flex-flow:row no-wrap\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".swp-active-block .head .swp-block-icon\":false,\".swp-active-block .head .swp-block-title\":false},[\"display:inline-block\"]],[false,{\".swp-active-block p\":false},[\"margin:25px 0 5px 0\"]],[false,{\".swp-active-block .head p\":false},[\"margin:initial\"]],[false,{\".swp-inactive-block\":false},[\"min-height:50px\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".swp-inactive-block code\":false},[\"display:block\",\"width:100%\",\"padding:5px\",\"height:42px\"]],[false,{\".swp-inactive-block .swp-preview\":false},[\"background:#f5f5f5\",\"width:100%\",\"display:block\",\"font-family:\\\"SF Pro Text\\\",\\\"Helvetica\\\",sans-sans-serif\",\"font-size:13px\",\"padding:15px\",\"border-radius:4px\"]],[false,{\".swp-inactive-block .swp-dashicon\":false},[\"margin:0 14px\"]],[false,{\".click-to-tweet-block-wrap textarea[name=\\\"tweetText\\\"]\":false},[\"border-top-right-radius:0px\"]],[false,{\".click-to-tweet-block-wrap .block-characters-remaining\":false},[\"font-size:16px\",\"font-size:13px\",\"font-weight:normal\",\"color:white\",\"padding:5px\",\"padding:5px 15px\",\"border-top-right-radius:4px\",\"border-top-left-radius:4px\",\"background:#30394f\",\"margin:0\",\"float:right\",\"max-width:200px\",\"position:relative\",\"-webkit-transition:all 300ms\",\"-o-transition:all 300ms\",\"transition:all 300ms\"]],[false,{\".click-to-tweet-block-wrap .block-characters-remaining.over-limit\":false},[\"background:#ee464f\",\"color:#fff\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1388,\"final_size\":709,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=2.3.0\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1020,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2261,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"82cd798ece835d3c574519b60ef930fe\",\"parse_time\":0.0071032047271728516,\"shake_time\":0.0006608963012695312,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-unknown-size\":false,\"amp-anim.amp-wp-enforced-sizes\":false,\"amp-img.amp-wp-enforced-sizes\":true},[\"-o-object-fit:contain\",\"object-fit:contain\"]],[false,{\"body amp-audio:not([controls])\":false},[\"display:inline-block\",\"height:auto\"]],[true,{\".amp-wp-default-form-message>p\":true},[\"margin:1em 0\",\"padding:.5em\"]],[true,{\".amp-wp-default-form-message[submit-success]>p.amp-wp-form-redirecting\":true,\".amp-wp-default-form-message[submitting]>p\":true},[\"font-style:italic\"]],[true,{\".amp-wp-default-form-message[submit-success]>p:not(.amp-wp-form-redirecting)\":true},[\"background-color:#90ee90\",\"border:1px solid green\",\"color:#000\"]],[true,{\".amp-wp-default-form-message[submit-error]>p\":true},[\"background-color:#ffb6c1\",\"border:1px solid red\",\"color:#000\"]],[true,{\".amp-wp-default-form-message[submit-success]>p:empty\":true},[\"display:none\"]],[false,{\"amp-carousel .amp-wp-gallery-caption\":false},[\"background-color:rgba(0,0,0,.5)\",\"bottom:0\",\"color:#fff\",\"left:0\",\"margin-bottom:0\",\"padding:1rem\",\"position:absolute\",\"right:0\",\"text-align:center\"]],[false,{\"amp-carousel .amp-wp-gallery-caption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery[data-amp-carousel=true]\":false,\".wp-block-gallery[data-amp-carousel=true].has-nested-images\":false},[\"display:block\",\"flex-wrap:unset\"]],[false,{\".wp-video\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"height:auto\"]],[false,{\"button[overflow]\":false},[\"bottom:0\"]],[true,{\"amp-anim img\":false,\"amp-anim noscript\":false,\"amp-iframe iframe\":false,\"amp-iframe noscript\":false,\"amp-img img\":true,\"amp-img noscript\":true,\"amp-video noscript\":false,\"amp-video video\":false},[\"image-rendering:inherit\",\"-o-object-fit:inherit\",\"object-fit:inherit\",\"-o-object-position:inherit\",\"object-position:inherit\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":80574,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"wp-block-library-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/css\\/dist\\/block-library\\/style.min.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":1381,\"function\":\"wp_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2246,\"function\":\"wp_common_block_scripts_and_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":20,\"hash\":\"db08bb47cd026dcad266bd62ddc38fd8\",\"parse_time\":1.007054090499878,\"shake_time\":0.0008890628814697266,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\"#start-resizable-editor-section\":false},[\"display:none\"]],[false,{\".wp-block-audio\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-audio figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-audio amp-audio\":false},[\"width:100%\",\"min-width:300px\"]],[false,{\".wp-block-button__link\":false},[\"color:#fff\",\"background-color:#32373c\",\"border-radius:9999px\",\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"font-size:1.125em\",\"padding:calc(.667em + 2px) calc(1.333em + 2px)\",\"text-align:center\",\"text-decoration:none\",\"overflow-wrap:break-word\",\"box-sizing:border-box\"]],[false,{\".wp-block-button__link:active\":false,\".wp-block-button__link:focus\":false,\".wp-block-button__link:hover\":false,\".wp-block-button__link:visited\":false},[\"color:#fff\"]],[false,{\".wp-block-button__link.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-button__link.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width\":false},[\"max-width:none\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"width:calc(100% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100:only-child\":false},[\"margin-right:0\",\"width:100%\"]],[false,\"@supports (column-gap:0.5em){\"],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button.wp-block-button\":false,\".wp-block-buttons>.wp-block-button.wp-block-button\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - .375em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - .25em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - .125em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"width:auto\",\"flex-basis:100%\"]],[false,\"}\"],[false,{\".wp-block-button.is-style-squared\":false,\".wp-block-button__link.wp-block-button.is-style-squared\":false},[\"border-radius:0\"]],[false,{\".wp-block-button.no-border-radius:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button__link.no-border-radius:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[false,{\".is-style-outline>.wp-block-button__link\":false,\".wp-block-button__link.is-style-outline\":false},[\"border:2px solid\",\"padding:.667em 1.333em\"]],[false,{\".is-style-outline>.wp-block-button__link:not(.has-text-color)\":false,\".wp-block-button__link.is-style-outline:not(.has-text-color)\":false},[\"color:currentColor\"]],[false,{\".is-style-outline>.wp-block-button__link:not(.has-background)\":false,\".wp-block-button__link.is-style-outline:not(.has-background)\":false},[\"background-color:transparent\"]],[false,{\".wp-block-buttons\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\",\"column-gap:.5em\"]],[false,{\".wp-block-buttons.is-vertical\":false},[\"flex-direction:column\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-buttons>.wp-block-button\":false},[\"display:inline-block\",\"margin-left:0\",\"margin-right:.5em\",\"margin-bottom:.5em\"]],[false,{\".wp-block-buttons>.wp-block-button:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.is-content-justification-left\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-left.is-vertical\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-center\":false},[\"justify-content:center\"]],[false,{\".wp-block-buttons.is-content-justification-center.is-vertical\":false},[\"align-items:center\"]],[false,{\".wp-block-buttons.is-content-justification-right\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button\":false},[\"margin-left:.5em\",\"margin-right:0\"]],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-buttons.is-content-justification-right.is-vertical\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-space-between\":false},[\"justify-content:space-between\"]],[false,{\".wp-block-buttons.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-buttons.alignleft .wp-block-button\":false},[\"margin-left:0\",\"margin-right:.5em\"]],[false,{\".wp-block-buttons.alignleft .wp-block-button:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.alignright .wp-block-button\":false},[\"margin-right:0\",\"margin-left:.5em\"]],[false,{\".wp-block-buttons.alignright .wp-block-button:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-button.aligncenter\":false,\".wp-block-calendar\":false},[\"text-align:center\"]],[false,{\".wp-block-calendar tbody td\":false,\".wp-block-calendar th\":false},[\"padding:.25em\",\"border:1px solid #ddd\"]],[false,{\".wp-block-calendar tfoot td\":false},[\"border:none\"]],[false,{\".wp-block-calendar table\":false},[\"width:100%\",\"border-collapse:collapse\"]],[false,{\".wp-block-calendar table th\":false},[\"font-weight:400\",\"background:#ddd\"]],[false,{\".wp-block-calendar a\":false},[\"text-decoration:underline\"]],[false,{\".wp-block-calendar table caption\":false,\".wp-block-calendar table tbody\":false},[\"color:#40464d\"]],[false,{\".wp-block-categories.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-categories.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-code code\":false},[\"display:block\",\"white-space:pre-wrap\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-columns\":false},[\"display:flex\",\"margin-bottom:1.75em\",\"box-sizing:border-box\",\"flex-wrap:wrap\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns\":false},[\"flex-wrap:nowrap\"]],[false,\"}\"],[false,{\".wp-block-columns.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-columns.are-vertically-aligned-top\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-columns.are-vertically-aligned-center\":false},[\"align-items:center\"]],[false,{\".wp-block-columns.are-vertically-aligned-bottom\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-column\":false},[\"flex-grow:1\",\"min-width:0\",\"word-break:break-word\",\"overflow-wrap:break-word\"]],[false,\"@media (max-width:599px){\"],[false,{\".wp-block-column:not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:100%\"]],[false,\"}\"],[false,\"@media (min-width:600px) and (max-width:781px){\"],[false,{\".wp-block-column:not(:only-child)\":false},[\"flex-grow:0\"]],[false,{\".wp-block-column:not(:only-child):not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:calc(50% - 1em)\"]],[false,{\".wp-block-column:nth-child(2n)\":false},[\"margin-left:2em\"]],[false,\"}\"],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[false,{\".wp-block-column:not(:first-child)\":false},[\"margin-left:2em\"]],[false,\"}\"],[false,{\".wp-block-column.is-vertically-aligned-top\":false},[\"align-self:flex-start\"]],[false,{\".wp-block-column.is-vertically-aligned-center\":false},[\"align-self:center\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false},[\"align-self:flex-end\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false,\".wp-block-column.is-vertically-aligned-center\":false,\".wp-block-column.is-vertically-aligned-top\":false},[\"width:100%\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"position:relative\",\"background-size:cover\",\"background-position:50%\",\"min-height:430px\",\"width:100%\",\"display:flex\",\"justify-content:center\",\"align-items:center\",\"padding:1em\",\"box-sizing:border-box\"]],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:fixed\"]],[false,\"@supports (-webkit-overflow-scrolling:touch){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,{\".wp-block-cover-image.is-repeated\":false,\".wp-block-cover.is-repeated\":false},[\"background-repeat:repeat\",\"background-size:auto\"]],[false,{\".wp-block-cover-image.has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover.has-background-dim:not([class*=-background-color])\":false},[\"background-color:#000\"]],[false,{\".wp-block-cover-image.has-background-dim:before\":false,\".wp-block-cover.has-background-dim:before\":false},[\"content:\\\"\\\"\",\"background-color:inherit\"]],[false,{\".wp-block-cover-image.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover-image .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover .wp-block-cover__gradient-background\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"bottom:0\",\"right:0\",\"z-index:1\",\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false},[\"opacity:1\"]],[false,{\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-cover-image:after\":false,\".wp-block-cover:after\":false},[\"display:block\",\"content:\\\"\\\"\",\"font-size:0\",\"min-height:inherit\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-cover-image:after\":false,\".wp-block-cover:after\":false},[\"content:none\"]],[false,\"}\"],[false,{\".wp-block-cover-image.aligncenter\":false,\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.aligncenter\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"display:flex\"]],[false,{\".wp-block-cover-image .wp-block-cover__inner-container\":false,\".wp-block-cover .wp-block-cover__inner-container\":false},[\"width:100%\",\"z-index:1\",\"color:#fff\"]],[false,{\".wp-block-cover-image h1:not(.has-text-color)\":false,\".wp-block-cover-image h2:not(.has-text-color)\":false,\".wp-block-cover-image h3:not(.has-text-color)\":false,\".wp-block-cover-image h4:not(.has-text-color)\":false,\".wp-block-cover-image h5:not(.has-text-color)\":false,\".wp-block-cover-image h6:not(.has-text-color)\":false,\".wp-block-cover-image p:not(.has-text-color)\":false,\".wp-block-cover h1:not(.has-text-color)\":false,\".wp-block-cover h2:not(.has-text-color)\":false,\".wp-block-cover h3:not(.has-text-color)\":false,\".wp-block-cover h4:not(.has-text-color)\":false,\".wp-block-cover h5:not(.has-text-color)\":false,\".wp-block-cover h6:not(.has-text-color)\":false,\".wp-block-cover p:not(.has-text-color)\":false},[\"color:inherit\"]],[false,{\".wp-block-cover-image.is-position-top-left\":false,\".wp-block-cover.is-position-top-left\":false},[\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-top-center\":false,\".wp-block-cover.is-position-top-center\":false},[\"align-items:flex-start\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-top-right\":false,\".wp-block-cover.is-position-top-right\":false},[\"align-items:flex-start\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-center-left\":false,\".wp-block-cover.is-position-center-left\":false},[\"align-items:center\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-center-center\":false,\".wp-block-cover.is-position-center-center\":false},[\"align-items:center\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-center-right\":false,\".wp-block-cover.is-position-center-right\":false},[\"align-items:center\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-bottom-left\":false,\".wp-block-cover.is-position-bottom-left\":false},[\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-bottom-center\":false,\".wp-block-cover.is-position-bottom-center\":false},[\"align-items:flex-end\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-bottom-right\":false,\".wp-block-cover.is-position-bottom-right\":false},[\"align-items:flex-end\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false},[\"margin:0\",\"width:auto\"]],[false,{\".wp-block-cover-image amp-img.wp-block-cover__image-background\":false,\".wp-block-cover-image amp-anim.wp-block-cover__image-background\":false,\".wp-block-cover-image amp-video.wp-block-cover__video-background\":false,\".wp-block-cover-image amp-youtube.wp-block-cover__video-background\":false,\".wp-block-cover amp-img.wp-block-cover__image-background\":false,\".wp-block-cover amp-anim.wp-block-cover__image-background\":false,\".wp-block-cover amp-video.wp-block-cover__video-background\":false,\".wp-block-cover amp-youtube.wp-block-cover__video-background\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"margin:0\",\"padding:0\",\"width:100%\",\"height:100%\",\"max-width:none\",\"max-height:none\",\"-o-object-fit:cover\",\"object-fit:cover\",\"outline:none\",\"border:none\",\"box-shadow:none\"]],[false,{\".wp-block-cover__image-background\":false,\".wp-block-cover__video-background\":false},[\"z-index:0\"]],[false,{\".wp-block-cover-image-text\":false,\".wp-block-cover-image-text a\":false,\".wp-block-cover-image-text a:active\":false,\".wp-block-cover-image-text a:focus\":false,\".wp-block-cover-image-text a:hover\":false,\".wp-block-cover-text\":false,\".wp-block-cover-text a\":false,\".wp-block-cover-text a:active\":false,\".wp-block-cover-text a:focus\":false,\".wp-block-cover-text a:hover\":false,\"section.wp-block-cover-image h2\":false,\"section.wp-block-cover-image h2 a\":false,\"section.wp-block-cover-image h2 a:active\":false,\"section.wp-block-cover-image h2 a:focus\":false,\"section.wp-block-cover-image h2 a:hover\":false},[\"color:#fff\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-left-content\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-right-content\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-left-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-left-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-left-content>h2\":false},[\"margin-left:0\",\"text-align:left\"]],[false,{\".wp-block-cover-image.has-right-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-right-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-right-content>h2\":false},[\"margin-right:0\",\"text-align:right\"]],[false,{\".wp-block-cover-image .wp-block-cover-image-text\":false,\".wp-block-cover .wp-block-cover-text\":false,\"section.wp-block-cover-image>h2\":false},[\"font-size:2em\",\"line-height:1.25\",\"z-index:1\",\"margin-bottom:0\",\"max-width:840px\",\"padding:.44em\",\"text-align:center\"]],[false,{\".wp-block-embed.alignleft\":false,\".wp-block-embed.alignright\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"]\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"]\":false},[\"max-width:360px\",\"width:100%\"]],[false,{\".wp-block-embed.alignleft .wp-block-embed__wrapper\":false,\".wp-block-embed.alignright .wp-block-embed__wrapper\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false},[\"min-width:280px\"]],[false,{\".wp-block-cover .wp-block-embed\":false},[\"min-width:320px\",\"min-height:240px\"]],[false,{\".wp-block-embed\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-embed figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-embed amp-iframe\":false},[\"max-width:100%\"]],[false,{\".wp-block-embed__wrapper\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio amp-iframe\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"height:100%\",\"width:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:42.85%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:56.25%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before\":false},[\"padding-top:75%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before\":false},[\"padding-top:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before\":false},[\"padding-top:177.77%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before\":false},[\"padding-top:200%\"]],[false,{\".wp-block-file\":false},[\"margin-bottom:1.5em\"]],[false,{\".wp-block-file.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-file.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-file .wp-block-file__embed\":false},[\"margin-bottom:1em\"]],[false,{\".wp-block-file .wp-block-file__button\":false},[\"background:#32373c\",\"border-radius:2em\",\"color:#fff\",\"font-size:.8em\",\"padding:.5em 1em\"]],[false,{\".wp-block-file a.wp-block-file__button\":false},[\"text-decoration:none\"]],[false,{\".wp-block-file a.wp-block-file__button:active\":false,\".wp-block-file a.wp-block-file__button:focus\":false,\".wp-block-file a.wp-block-file__button:hover\":false,\".wp-block-file a.wp-block-file__button:visited\":false},[\"box-shadow:none\",\"color:#fff\",\"opacity:.85\",\"text-decoration:none\"]],[false,{\".wp-block-file *+.wp-block-file__button\":false},[\"margin-left:.75em\"]],[false,{\".blocks-gallery-grid\":false,\".wp-block-gallery\":false},[\"display:flex\",\"flex-wrap:wrap\",\"list-style-type:none\",\"padding:0\",\"margin:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image\":false,\".blocks-gallery-grid .blocks-gallery-item\":false,\".wp-block-gallery .blocks-gallery-image\":false,\".wp-block-gallery .blocks-gallery-item\":false},[\"margin:0 1em 1em 0\",\"display:flex\",\"flex-grow:1\",\"flex-direction:column\",\"justify-content:center\",\"position:relative\",\"align-self:flex-start\",\"width:calc(50% - 1em)\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery .blocks-gallery-item:nth-of-type(2n)\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image figure\":false,\".blocks-gallery-grid .blocks-gallery-item figure\":false,\".wp-block-gallery .blocks-gallery-image figure\":false,\".wp-block-gallery .blocks-gallery-item figure\":false},[\"margin:0\",\"height:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid .blocks-gallery-image figure\":false,\".blocks-gallery-grid .blocks-gallery-item figure\":false,\".wp-block-gallery .blocks-gallery-image figure\":false,\".wp-block-gallery .blocks-gallery-item figure\":false},[\"display:flex\",\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item amp-anim\":false,\".wp-block-gallery .blocks-gallery-image amp-img\":false,\".wp-block-gallery .blocks-gallery-image amp-anim\":false,\".wp-block-gallery .blocks-gallery-item amp-img\":false,\".wp-block-gallery .blocks-gallery-item amp-anim\":false},[\"display:block\",\"max-width:100%\",\"height:auto\",\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item amp-anim\":false,\".wp-block-gallery .blocks-gallery-image amp-img\":false,\".wp-block-gallery .blocks-gallery-image amp-anim\":false,\".wp-block-gallery .blocks-gallery-item amp-img\":false,\".wp-block-gallery .blocks-gallery-item amp-anim\":false},[\"width:auto\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image figcaption\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption\":false,\".wp-block-gallery .blocks-gallery-image figcaption\":false,\".wp-block-gallery .blocks-gallery-item figcaption\":false},[\"position:absolute\",\"bottom:0\",\"width:100%\",\"max-height:100%\",\"overflow:auto\",\"padding:3em .77em .7em\",\"color:#fff\",\"text-align:center\",\"font-size:.8em\",\"background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent)\",\"box-sizing:border-box\",\"margin:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image figcaption amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image figcaption amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption amp-anim\":false,\".wp-block-gallery .blocks-gallery-image figcaption amp-img\":false,\".wp-block-gallery .blocks-gallery-image figcaption amp-anim\":false,\".wp-block-gallery .blocks-gallery-item figcaption amp-img\":false,\".wp-block-gallery .blocks-gallery-item figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".blocks-gallery-grid figcaption\":false,\".wp-block-gallery figcaption\":false},[\"flex-grow:1\"]],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item\":false},[\"align-self:inherit\"]],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-anim\":false},[\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-anim\":false},[\"height:100%\",\"flex:1\",\"-o-object-fit:cover\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".blocks-gallery-grid.columns-1 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-1 .blocks-gallery-item\":false,\".wp-block-gallery.columns-1 .blocks-gallery-image\":false,\".wp-block-gallery.columns-1 .blocks-gallery-item\":false},[\"width:100%\",\"margin-right:0\"]],[false,\"@media (min-width:600px){\"],[false,{\".blocks-gallery-grid.columns-3 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-item\":false,\".wp-block-gallery.columns-3 .blocks-gallery-image\":false,\".wp-block-gallery.columns-3 .blocks-gallery-item\":false},[\"width:calc(33.33333% - .66667em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-4 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-item\":false,\".wp-block-gallery.columns-4 .blocks-gallery-image\":false,\".wp-block-gallery.columns-4 .blocks-gallery-item\":false},[\"width:calc(25% - .75em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-5 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-item\":false,\".wp-block-gallery.columns-5 .blocks-gallery-image\":false,\".wp-block-gallery.columns-5 .blocks-gallery-item\":false},[\"width:calc(20% - .8em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-6 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-item\":false,\".wp-block-gallery.columns-6 .blocks-gallery-image\":false,\".wp-block-gallery.columns-6 .blocks-gallery-item\":false},[\"width:calc(16.66667% - .83333em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-7 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-item\":false,\".wp-block-gallery.columns-7 .blocks-gallery-image\":false,\".wp-block-gallery.columns-7 .blocks-gallery-item\":false},[\"width:calc(14.28571% - .85714em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-8 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-item\":false,\".wp-block-gallery.columns-8 .blocks-gallery-image\":false,\".wp-block-gallery.columns-8 .blocks-gallery-item\":false},[\"width:calc(12.5% - .875em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n)\":false,\".wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image:last-child\":false,\".blocks-gallery-grid .blocks-gallery-item:last-child\":false,\".wp-block-gallery .blocks-gallery-image:last-child\":false,\".wp-block-gallery .blocks-gallery-item:last-child\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid.alignleft\":false,\".blocks-gallery-grid.alignright\":false,\".wp-block-gallery.alignleft\":false,\".wp-block-gallery.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".blocks-gallery-grid.aligncenter .blocks-gallery-item figure\":false,\".wp-block-gallery.aligncenter .blocks-gallery-item figure\":false},[\"justify-content:center\"]],[false,{\".wp-block-group\":false},[\"box-sizing:border-box\"]],[false,{\"h1.has-background\":false,\"h2.has-background\":false,\"h3.has-background\":false,\"h4.has-background\":false,\"h5.has-background\":false,\"h6.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-image\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-image amp-img\":false,\".wp-block-image amp-anim\":false},[\"max-width:100%\"]],[false,{\".wp-block-image:not(.is-style-rounded) amp-img\":false,\".wp-block-image:not(.is-style-rounded) amp-anim\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-image.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-image.alignfull amp-img\":false,\".wp-block-image.alignfull amp-anim\":false,\".wp-block-image.alignwide amp-img\":false,\".wp-block-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\".wp-block-image .aligncenter\":false,\".wp-block-image .alignleft\":false,\".wp-block-image .alignright\":false},[\"display:table\"]],[false,{\".wp-block-image .aligncenter>figcaption\":false,\".wp-block-image .alignleft>figcaption\":false,\".wp-block-image .alignright>figcaption\":false},[\"display:table-caption\",\"caption-side:bottom\"]],[false,{\".wp-block-image .alignleft\":false},[\"float:left\",\"margin:.5em 1em .5em 0\"]],[false,{\".wp-block-image .alignright\":false},[\"float:right\",\"margin:.5em 0 .5em 1em\"]],[false,{\".wp-block-image .aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-block-image figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false,\".wp-block-image.is-style-rounded amp-img\":false,\".wp-block-image.is-style-rounded amp-anim\":false},[\"border-radius:9999px\"]],[false,\"@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){\"],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"-webkit-mask-image:url(\\\"data:image\\/svg+xml;utf8,<\\/svg>\\\")\",\"mask-image:url(\\\"data:image\\/svg+xml;utf8,<\\/svg>\\\")\",\"mask-mode:alpha\",\"-webkit-mask-repeat:no-repeat\",\"mask-repeat:no-repeat\",\"-webkit-mask-size:contain\",\"mask-size:contain\",\"-webkit-mask-position:center\",\"mask-position:center\",\"border-radius:0\"]],[false,\"}\"],[false,{\".wp-block-image figure\":false},[\"margin:0\"]],[false,{\"ol.wp-block-latest-comments\":false},[\"margin-left:0\"]],[false,{\".wp-block-latest-comments .wp-block-latest-comments\":false},[\"padding-left:0\"]],[false,{\".wp-block-latest-comments__comment\":false},[\"line-height:1.1\",\"list-style:none\",\"margin-bottom:1em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment\":false},[\"min-height:2.25em\",\"list-style:none\"]],[false,{\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt\":false,\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta\":false},[\"margin-left:3.25em\"]],[false,{\".has-dates .wp-block-latest-comments__comment\":false,\".has-excerpts .wp-block-latest-comments__comment\":false},[\"line-height:1.5\"]],[false,{\".wp-block-latest-comments__comment-excerpt p\":false},[\"font-size:.875em\",\"line-height:1.8\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-latest-comments__comment-date\":false},[\"display:block\",\"font-size:.75em\"]],[false,{\".wp-block-latest-comments .avatar\":false,\".wp-block-latest-comments__comment-avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-latest-posts.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-latest-posts.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list\":false},[\"list-style:none\",\"padding-left:0\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list li\":false},[\"clear:both\"]],[false,{\".wp-block-latest-posts.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\"]],[false,{\".wp-block-latest-posts.is-grid li\":false},[\"margin:0 1.25em 1.25em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-latest-posts.columns-2 li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-latest-posts.columns-2 li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-3 li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-latest-posts.columns-3 li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-4 li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-latest-posts.columns-4 li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-latest-posts.columns-5 li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-6 li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-latest-posts.columns-6 li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".wp-block-latest-posts__post-author\":false,\".wp-block-latest-posts__post-date\":false},[\"display:block\",\"color:#555\",\"font-size:.8125em\"]],[false,{\".wp-block-latest-posts__post-excerpt\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-latest-posts__featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-latest-posts__featured-image amp-img\":false,\".wp-block-latest-posts__featured-image amp-anim\":false},[\"height:auto\",\"width:auto\",\"max-width:100%\"]],[false,{\".wp-block-latest-posts__featured-image.alignleft\":false},[\"margin-right:1em\"]],[false,{\".wp-block-latest-posts__featured-image.alignright\":false},[\"margin-left:1em\"]],[false,{\".wp-block-latest-posts__featured-image.aligncenter\":false},[\"margin-bottom:1em\",\"text-align:center\"]],[false,{\".block-editor-image-alignment-control__row .components-base-control__field\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\"]],[false,{\".block-editor-image-alignment-control__row .components-base-control__field .components-base-control__label\":false},[\"margin-bottom:0\"]],[false,{\"ol.has-background\":false,\"ul.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-media-text\":false},[\"direction:ltr\",\"display:grid\",\"grid-template-columns:50% 1fr\",\"grid-template-rows:auto\"]],[false,{\".wp-block-media-text.has-media-on-the-right\":false},[\"grid-template-columns:1fr 50%\"]],[false,{\".wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media\":false},[\"align-self:start\"]],[false,{\".wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media\":false,\".wp-block-media-text .wp-block-media-text__content\":false,\".wp-block-media-text .wp-block-media-text__media\":false},[\"align-self:center\"]],[false,{\".wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media\":false},[\"align-self:end\"]],[false,{\".wp-block-media-text .wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\",\"margin:0\"]],[false,{\".wp-block-media-text .wp-block-media-text__content\":false},[\"direction:ltr\",\"grid-column:2\",\"grid-row:1\",\"padding:0 8%\",\"word-break:break-word\"]],[false,{\".wp-block-media-text.has-media-on-the-right .wp-block-media-text__media\":false},[\"grid-column:2\",\"grid-row:1\"]],[false,{\".wp-block-media-text.has-media-on-the-right .wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"max-width:unset\",\"width:100%\",\"vertical-align:middle\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media\":false},[\"height:100%\",\"min-height:250px\",\"background-size:cover\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill .wp-block-media-text__media amp-anim\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-media-text.is-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"grid-template-columns:100%\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:2\"]],[false,\"}\"],[false,{\".wp-block-navigation\":false},[\"position:relative\"]],[false,{\".wp-block-navigation ul\":false,\".wp-block-navigation ul li\":false},[\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-navigation-link\":false,\".wp-block-navigation .wp-block-pages-list__item\":false},[\"display:flex\",\"align-items:center\",\"position:relative\"]],[false,{\".wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__container:empty\":false,\".wp-block-navigation .wp-block-pages-list__item .wp-block-navigation-link__container:empty\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__content\":false,\".wp-block-navigation .wp-block-pages-list__item__link\":false},[\"color:inherit\",\"display:block\"]],[false,{\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__container\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content:focus\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link:focus\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content:focus\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link:focus\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .wp-block-page-list__submenu-icon\":false},[\"height:inherit\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .wp-block-page-list__submenu-icon svg\":false},[\"stroke:currentColor\"]],[false,{\".wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__content.wp-block-navigation-link__content.wp-block-navigation-link__content\":false,\".wp-block-navigation .wp-block-pages-list__item .wp-block-pages-list__item__link\":false},[\"padding:0\"]],[false,{\".wp-block-navigation .has-child>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child>.wp-block-pages-list__item__link\":false},[\"margin-right:.5em\"]],[false,{\".wp-block-navigation .has-child .submenu-container\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container\":false},[\"background-color:inherit\",\"color:inherit\",\"position:absolute\",\"z-index:2\",\"flex-direction:column\",\"align-items:normal\",\"min-width:200px\",\"display:none\",\"opacity:0\",\"transition:opacity .1s linear\",\"visibility:hidden\"]],[false,{\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-pages-list__item__link\":false},[\"flex-grow:1\"]],[false,{\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-page-list__submenu-icon\":false},[\"padding-right:.5em\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation .has-child .submenu-container .submenu-container:before\":false,\".wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container:before\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container:before\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"right:100%\",\"height:100%\",\"display:block\",\"width:.5em\",\"background:transparent\"]],[false,{\".wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .has-child .submenu-container .wp-block-page-list__submenu-icon svg\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-page-list__submenu-icon svg\":false},[\"transform:rotate(-90deg)\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child:hover>.wp-block-navigation-link__container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:focus-within>.wp-block-navigation-link__container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:hover\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation .has-child:hover>.submenu-container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:focus-within\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation .has-child:focus-within>.submenu-container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container\":false},[\"left:auto\",\"right:0\"]],[false,{\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:auto\",\"right:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation .wp-block-navigation__container>.wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list>.wp-block-pages-list__item\":false},[\"margin:0 2em 0 0\"]],[false,{\".wp-block-navigation.wp-block-navigation .wp-block-navigation__container>.wp-block-navigation-link:last-child\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list:last-child\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list>.wp-block-pages-list__item:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .wp-block-navigation__container>.wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list>.wp-block-pages-list__item\":false},[\"margin:0 .5em 0 0\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .wp-block-navigation__container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list .wp-block-pages-list__item__link\":false},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container\":false},[\"left:-1em\",\"top:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-pages-list__item\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-pages-list__item\":false},[\"margin:0\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-pages-list__item__link\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-pages-list__item__link\":false},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:-1px\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:100%\",\"top:-1px\"]],[false,\"}\"],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container\":false},[\"left:0\",\"top:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:0\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:100%\",\"top:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .submenu-container\":false,\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-navigation-link__container\":false},[\"background-color:#fff\",\"color:#000\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation__container\":false},[\"align-items:center\",\"list-style:none\",\"margin:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation__container .is-responsive\":false},[\"display:none\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__container\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".is-vertical .wp-block-navigation__container\":false},[\"display:block\",\"flex-direction:column\",\"align-items:flex-start\"]],[false,\"}\"],[false,{\".items-justified-center .wp-block-navigation__container\":false},[\"justify-content:center\"]],[false,{\".items-justified-right .wp-block-navigation__container\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between .wp-block-navigation__container\":false},[\"justify-content:space-between\"]],[false,{\".is-vertical.items-justified-center>ul\":false},[\"align-items:center\"]],[false,{\".is-vertical.items-justified-right>ul\":false},[\"align-items:flex-end\"]],[false,{\".is-vertical.items-justified-right>ul .wp-block-navigation-link\":false,\".is-vertical.items-justified-right>ul .wp-block-pages-list__item\":false},[\"margin-right:0\",\"justify-content:flex-end\"]],[false,{\".wp-block-navigation__responsive-container\":false},[\"display:none\",\"position:fixed\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"z-index:1\",\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"display:flex\",\"flex-direction:column\",\"overflow:auto\",\"z-index:100000\",\"padding:24px\",\"background-color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container\":false},[\"display:flex\",\"flex-direction:column\",\"margin-left:auto\",\"margin-right:auto\",\"align-items:flex-start\",\"line-height:48px\",\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container .wp-block-page-list\":false},[\"flex-direction:column\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link .wp-block-navigation-link__container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item .submenu-container:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open)\":false},[\"display:flex\",\"flex-direction:row\",\"position:relative\",\"background-color:inherit\"]],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__responsive-container-close\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .submenu-container.submenu-container.submenu-container.submenu-container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link__container.wp-block-navigation-link__container.wp-block-navigation-link__container.wp-block-navigation-link__container\":false},[\"left:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:#fff\",\"color:#000\"]],[false,{\".wp-block-navigation__responsive-container-close\":false,\".wp-block-navigation__responsive-container-open\":false},[\"vertical-align:middle\",\"cursor:pointer\",\"color:currentColor\",\"background:transparent\",\"border:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container-close svg\":false,\".wp-block-navigation__responsive-container-open svg\":false},[\"fill:currentColor\",\"pointer-events:none\",\"display:block\",\"width:24px\",\"height:24px\"]],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:flex\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:none\"]],[false,\"}\"],[false,{\".items-justified-left .wp-block-navigation__responsive-container-open\":false},[\"margin-left:0\",\"margin-right:auto\"]],[false,{\".items-justified-center .wp-block-navigation__responsive-container-open\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".items-justified-right .wp-block-navigation__responsive-container-open\":false},[\"margin-left:auto\",\"margin-right:0\"]],[false,{\".wp-block-navigation__responsive-container-close\":false},[\"position:absolute\",\"top:24px\",\"right:24px\",\"z-index:2\"]],[false,{\".wp-block-navigation__responsive-close\":false},[\"width:100%\"]],[false,{\".is-menu-open .wp-block-navigation__responsive-close\":false,\".is-menu-open .wp-block-navigation__responsive-container-content\":false,\".is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"width:100%\",\"height:100%\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list__submenu-icon\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .has-child .submenu-container\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .has-child .wp-block-navigation-link__container\":false},[\"position:relative\",\"opacity:1\",\"visibility:visible\",\"padding:0 0 0 32px\",\"border:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item\":false},[\"flex-direction:column\",\"align-items:flex-start\"]],[false,{\"html.has-modal-open\":false},[\"overflow:hidden\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__label\":false},[\"word-break:normal\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-navigation .wp-block-home-link__content\":false},[\"color:inherit\",\"display:block\",\"padding:.5em 1em\"]],[false,{\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content:focus\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content:focus\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-home-link__container\":false},[\"background-color:#fff\",\"color:#000\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-home-link__container .wp-block-home-link__container\":false},[\"top:-1px\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false},[\"display:flex\",\"flex-wrap:wrap\",\"background-color:inherit\"]],[false,{\".wp-block-navigation .wp-block-pages-list__item\":false},[\"background-color:inherit\"]],[false,{\".wp-block-navigation .wp-block-page-list__submenu-icon\":false},[\"display:none\"]],[false,{\".is-open .wp-block-navigation__container .wp-block-page-list\":false,\".is-vertical .wp-block-navigation__container .wp-block-page-list\":false,\".wp-block-navigation .show-submenu-icons .wp-block-page-list__submenu-icon\":false},[\"display:block\"]],[false,\"@media (min-width:480px){\"],[false,{\".is-open .wp-block-navigation__container .wp-block-page-list\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".items-justified-space-between .wp-block-page-list\":false},[\"display:contents\"]],[false,{\".is-small-text\":false},[\"font-size:.875em\"]],[false,{\".is-regular-text\":false},[\"font-size:1em\"]],[false,{\".is-large-text\":false},[\"font-size:2.25em\"]],[false,{\".is-larger-text\":false},[\"font-size:3em\"]],[false,{\".has-drop-cap:not(:focus):first-letter\":false},[\"float:left\",\"font-size:8.4em\",\"line-height:.68\",\"font-weight:100\",\"margin:.05em .1em 0 0\",\"text-transform:uppercase\",\"font-style:normal\"]],[false,{\"p.has-drop-cap.has-background\":false},[\"overflow:hidden\"]],[false,{\"p.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\"p.has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-post-author\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-author__byline\":false},[\"width:100%\",\"margin-top:0\",\"margin-bottom:0\",\"font-size:.5em\"]],[false,{\".wp-block-post-author__avatar\":false},[\"margin-right:1em\"]],[false,{\".wp-block-post-author__bio\":false},[\"margin-bottom:.7em\",\"font-size:.7em\"]],[false,{\".wp-block-post-author__content\":false},[\"flex-grow:1\",\"flex-basis:0\"]],[false,{\".wp-block-post-author__name\":false},[\"font-weight:700\",\"margin:0\"]],[false,{\".wp-block-post-comments .commentlist\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .commentlist .comment\":false},[\"min-height:2.25em\",\"padding-left:3.25em\"]],[false,{\".wp-block-post-comments .commentlist .comment p\":false},[\"font-size:.875em\",\"line-height:1.8\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-post-comments .commentlist .children\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .comment-author\":false},[\"line-height:1.5\",\"margin-left:-3.25em\"]],[false,{\".wp-block-post-comments .comment-author .avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-post-comments .comment-author cite\":false},[\"font-style:normal\"]],[false,{\".wp-block-post-comments .comment-meta\":false},[\"line-height:1.5\",\"margin-left:-3.25em\"]],[false,{\".wp-block-post-comments .comment-body .commentmetadata\":false},[\"font-size:.75em\"]],[false,{\".wp-block-post-comments .comment-form-author label\":false,\".wp-block-post-comments .comment-form-comment label\":false,\".wp-block-post-comments .comment-form-email label\":false,\".wp-block-post-comments .comment-form-url label\":false},[\"display:block\"]],[false,{\".wp-block-post-comments .comment-form-comment textarea\":false},[\"box-sizing:border-box\",\"width:100%\"]],[false,{\".wp-block-post-comments .reply\":false},[\"font-size:.75em\",\"margin-bottom:1.4em\"]],[false,{\".wp-block-post-comments input\":false,\".wp-block-post-comments textarea\":false},[\"border:1px solid #949494\"]],[false,{\".wp-block-post-comments-form input[type=submit]\":false},[\"border:none\",\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"text-align:center\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-post-excerpt__more-link\":false,\".wp-block-post-title a\":false},[\"display:inline-block\"]],[false,{\".wp-block-preformatted\":false},[\"white-space:pre-wrap\"]],[false,{\".wp-block-preformatted.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-pullquote\":false},[\"margin:0 0 1em\",\"padding:3em 0\",\"text-align:center\"]],[false,{\".wp-block-pullquote.alignleft\":false,\".wp-block-pullquote.alignright\":false},[\"max-width:420px\"]],[false,{\".wp-block-pullquote.alignleft p\":false,\".wp-block-pullquote.alignright p\":false},[\"font-size:1.25em\"]],[false,{\".wp-block-pullquote p\":false},[\"font-size:1.75em\",\"line-height:1.6\"]],[false,{\".wp-block-pullquote cite\":false,\".wp-block-pullquote footer\":false},[\"position:relative\"]],[false,{\".wp-block-pullquote .has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote:not(.is-style-solid-color)\":false},[\"background:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color\":false},[\"border:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote\":false},[\"margin-left:auto\",\"margin-right:auto\",\"text-align:left\",\"max-width:60%\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote p\":false},[\"margin-top:0\",\"margin-bottom:0\",\"font-size:2em\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote cite\":false},[\"text-transform:none\",\"font-style:normal\"]],[false,{\".wp-block-pullquote cite\":false},[\"color:inherit\"]],[false,{\".wp-block-post-template\":false,\".wp-block-query-loop\":false},[\"max-width:100%\",\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-post-template li\":false,\".wp-block-query-loop li\":false},[\"clear:both\"]],[false,{\".wp-block-post-template.is-flex-container\":false,\".wp-block-query-loop.is-flex-container\":false},[\"flex-direction:row\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-template.is-flex-container li\":false,\".wp-block-query-loop.is-flex-container li\":false},[\"margin:0 0 1.25em\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-post-template.is-flex-container li\":false,\".wp-block-query-loop.is-flex-container li\":false},[\"margin-right:1.25em\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li:nth-child(2n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li:nth-child(3n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li:nth-child(4n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li:nth-child(5n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li:nth-child(6n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".wp-block-query-pagination\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\"]],[false,{\".wp-block-query-pagination>.wp-block-query-pagination-next\":false,\".wp-block-query-pagination>.wp-block-query-pagination-numbers\":false,\".wp-block-query-pagination>.wp-block-query-pagination-previous\":false},[\"display:inline-block\",\"margin-right:.5em\",\"margin-bottom:.5em\"]],[false,{\".wp-block-query-pagination>.wp-block-query-pagination-next:last-child\":false,\".wp-block-query-pagination>.wp-block-query-pagination-numbers:last-child\":false,\".wp-block-query-pagination>.wp-block-query-pagination-previous:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-quote.is-large\":false,\".wp-block-quote.is-style-large\":false},[\"margin-bottom:1em\",\"padding:0 1em\"]],[false,{\".wp-block-quote.is-large p\":false,\".wp-block-quote.is-style-large p\":false},[\"font-size:1.5em\",\"font-style:italic\",\"line-height:1.6\"]],[false,{\".wp-block-quote.is-large cite\":false,\".wp-block-quote.is-large footer\":false,\".wp-block-quote.is-style-large cite\":false,\".wp-block-quote.is-style-large footer\":false},[\"font-size:1.125em\",\"text-align:right\"]],[false,{\".wp-block-rss.wp-block-rss\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-rss.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-rss.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-rss.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\",\"list-style:none\"]],[false,{\".wp-block-rss.is-grid li\":false},[\"margin:0 1em 1em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-rss.columns-2 li\":false},[\"width:calc(50% - 1em)\"]],[false,{\".wp-block-rss.columns-3 li\":false},[\"width:calc(33.33333% - 1em)\"]],[false,{\".wp-block-rss.columns-4 li\":false},[\"width:calc(25% - 1em)\"]],[false,{\".wp-block-rss.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-rss.columns-6 li\":false},[\"width:calc(16.66667% - 1em)\"]],[false,\"}\"],[false,{\".wp-block-rss__item-author\":false,\".wp-block-rss__item-publish-date\":false},[\"display:block\",\"color:#555\",\"font-size:.8125em\"]],[false,{\".wp-block-search .wp-block-search__button\":false},[\"background:#f7f7f7\",\"border:1px solid #ccc\",\"padding:.375em .625em\",\"color:#32373c\",\"margin-left:.625em\",\"word-break:normal\"]],[false,{\".wp-block-search .wp-block-search__button.has-icon\":false},[\"line-height:0\"]],[false,{\".wp-block-search .wp-block-search__button svg\":false},[\"min-width:1.5em\",\"min-height:1.5em\"]],[false,{\".wp-block-search .wp-block-search__inside-wrapper\":false},[\"display:flex\",\"flex:auto\",\"flex-wrap:nowrap\",\"max-width:100%\"]],[false,{\".wp-block-search .wp-block-search__label\":false},[\"width:100%\"]],[false,{\".wp-block-search .wp-block-search__input\":false},[\"flex-grow:1\",\"min-width:3em\",\"border:1px solid #949494\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__button\":false},[\"margin-left:0\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper\":false},[\"padding:4px\",\"border:1px solid #949494\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input\":false},[\"border-radius:0\",\"border:none\",\"padding:0 0 0 .25em\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus\":false},[\"outline:none\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button\":false},[\"padding:.125em .5em\"]],[false,{\".wp-block-search.aligncenter .wp-block-search__inside-wrapper\":false},[\"margin:auto\"]],[false,{\".wp-block-separator\":false},[\"border-top:1px solid\",\"border-bottom:1px solid\"]],[false,{\".wp-block-separator.is-style-wide\":false},[\"border-bottom-width:1px\"]],[false,{\".wp-block-separator.is-style-dots\":false},[\"border:none\",\"text-align:center\",\"width:none\",\"line-height:1\",\"height:auto\"]],[false,{\".wp-block-separator.is-style-dots:not(#_#_#_#_#_#_#_)\":false},[\"background:none\"]],[false,{\".wp-block-separator.is-style-dots:before\":false},[\"content:\\\"\\u00b7\\u00b7\\u00b7\\\"\",\"color:currentColor\",\"font-size:1.5em\",\"letter-spacing:2em\",\"padding-left:2em\",\"font-family:serif\"]],[false,{\".wp-block-site-logo\":false},[\"line-height:0\"]],[false,{\".wp-block-site-logo a\":false},[\"display:inline-block\"]],[false,{\".wp-block-site-logo.is-default-size amp-img\":false,\".wp-block-site-logo.is-default-size amp-anim\":false},[\"width:120px\",\"height:auto\"]],[false,{\".wp-block-site-logo .aligncenter\":false},[\"display:table\"]],[false,{\".wp-block-site-logo.is-style-rounded amp-img\":false,\".wp-block-site-logo.is-style-rounded amp-anim\":false},[\"border-radius:9999px\"]],[false,{\".wp-block-social-links\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding-left:0\",\"padding-right:0\",\"text-indent:0\",\"margin-left:0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false,\".wp-block-social-links .wp-social-link a:hover\":false},[\"text-decoration:none\",\"border-bottom:0\",\"box-shadow:none\"]],[false,{\".wp-block-social-links .wp-social-link.wp-social-link.wp-social-link\":false},[\"margin:4px 8px 4px 0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false},[\"padding:.25em\"]],[false,{\".wp-block-social-links .wp-social-link svg\":false},[\"width:1em\",\"height:1em\"]],[false,{\".wp-block-social-links.has-small-icon-size\":false},[\"font-size:16px\"]],[false,{\".wp-block-social-links\":false,\".wp-block-social-links.has-normal-icon-size\":false},[\"font-size:24px\"]],[false,{\".wp-block-social-links.has-large-icon-size\":false},[\"font-size:36px\"]],[false,{\".wp-block-social-links.has-huge-icon-size\":false},[\"font-size:48px\"]],[false,{\".wp-block-social-links.aligncenter\":false},[\"justify-content:center\",\"display:flex\"]],[false,{\".wp-block-social-links.alignright\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-social-link\":false},[\"display:block\",\"border-radius:9999px\",\"transition:transform .1s ease\",\"height:auto\"]],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-social-link\":false},[\"transition-duration:0s\",\"transition-delay:0s\"]],[false,\"}\"],[false,{\".wp-block-social-link a\":false},[\"display:block\",\"line-height:0\",\"transition:transform .1s ease\"]],[false,{\".wp-block-social-link:hover\":false},[\"transform:scale(1.1)\"]],[false,{\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:active\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:hover\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:visited\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg\":false},[\"color:currentColor\",\"fill:currentColor\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link\":false},[\"background-color:#f0f0f0\",\"color:#444\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon\":false},[\"background-color:#f90\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp\":false},[\"background-color:#1ea0c3\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance\":false},[\"background-color:#0757fe\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen\":false},[\"background-color:#1e1f26\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart\":false},[\"background-color:#02e49b\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble\":false},[\"background-color:#e94c89\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox\":false},[\"background-color:#4280ff\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy\":false},[\"background-color:#f45800\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook\":false},[\"background-color:#1778f2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr\":false},[\"background-color:#0461dd\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare\":false},[\"background-color:#e65678\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github\":false},[\"background-color:#24292d\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads\":false},[\"background-color:#eceadd\",\"color:#382110\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google\":false},[\"background-color:#ea4434\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram\":false},[\"background-color:#f00075\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm\":false},[\"background-color:#e21b24\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin\":false},[\"background-color:#0d66c2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon\":false},[\"background-color:#3288d4\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium\":false},[\"background-color:#02ab6c\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup\":false},[\"background-color:#f6405f\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon\":false},[\"background-color:#ff424d\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest\":false},[\"background-color:#e60122\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket\":false},[\"background-color:#ef4155\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit\":false},[\"background-color:#fe4500\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype\":false},[\"background-color:#0478d7\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat\":false},[\"background-color:#fefc00\",\"color:#fff\",\"stroke:#000\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud\":false},[\"background-color:#ff5600\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify\":false},[\"background-color:#1bd760\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram\":false},[\"background-color:#2aabee\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr\":false},[\"background-color:#011835\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch\":false},[\"background-color:#6440a4\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter\":false},[\"background-color:#1da1f2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo\":false},[\"background-color:#1eb7ea\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk\":false},[\"background-color:#4680c2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress\":false},[\"background-color:#3499cd\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp\":false},[\"background-color:#d32422\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube\":false},[\"background-color:red\",\"color:#fff\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link\":false},[\"background:none\",\"padding:4px\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-amazon\":false},[\"color:#f90\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp\":false},[\"color:#1ea0c3\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-behance\":false},[\"color:#0757fe\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-codepen\":false},[\"color:#1e1f26\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-deviantart\":false},[\"color:#02e49b\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-dribbble\":false},[\"color:#e94c89\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-dropbox\":false},[\"color:#4280ff\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-etsy\":false},[\"color:#f45800\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-facebook\":false},[\"color:#1778f2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx\":false},[\"color:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-flickr\":false},[\"color:#0461dd\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-foursquare\":false},[\"color:#e65678\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-github\":false},[\"color:#24292d\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-goodreads\":false},[\"color:#382110\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-google\":false},[\"color:#ea4434\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-instagram\":false},[\"color:#f00075\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-lastfm\":false},[\"color:#e21b24\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-linkedin\":false},[\"color:#0d66c2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-mastodon\":false},[\"color:#3288d4\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-medium\":false},[\"color:#02ab6c\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-meetup\":false},[\"color:#f6405f\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-patreon\":false},[\"color:#ff424d\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-pinterest\":false},[\"color:#e60122\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-pocket\":false},[\"color:#ef4155\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-reddit\":false},[\"color:#fe4500\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-skype\":false},[\"color:#0478d7\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-snapchat\":false},[\"color:#fff\",\"stroke:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud\":false},[\"color:#ff5600\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-spotify\":false},[\"color:#1bd760\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-telegram\":false},[\"color:#2aabee\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-tiktok\":false},[\"color:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-tumblr\":false},[\"color:#011835\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-twitch\":false},[\"color:#6440a4\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-twitter\":false},[\"color:#1da1f2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-vimeo\":false},[\"color:#1eb7ea\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-vk\":false},[\"color:#4680c2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-wordpress\":false},[\"color:#3499cd\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-yelp\":false},[\"color:#d32422\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-youtube\":false},[\"color:red\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link\":false},[\"width:auto\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link a\":false},[\"padding-left:.66667em\",\"padding-right:.66667em\"]],[false,{\".wp-block-spacer\":false},[\"clear:both\"]],[false,{\".wp-block-tag-cloud.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-tag-cloud.alignfull\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".wp-block-table\":false},[\"margin:0 0 1em\",\"overflow-x:auto\"]],[false,{\".wp-block-table table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout\":false},[\"table-layout:fixed\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout td\":false,\".wp-block-table .has-fixed-layout th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table.aligncenter\":false,\".wp-block-table.alignleft\":false,\".wp-block-table.alignright\":false},[\"display:table\",\"width:auto\"]],[false,{\".wp-block-table.aligncenter td\":false,\".wp-block-table.aligncenter th\":false,\".wp-block-table.alignleft td\":false,\".wp-block-table.alignleft th\":false,\".wp-block-table.alignright td\":false,\".wp-block-table.alignright th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table .has-subtle-light-gray-background-color\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table .has-subtle-pale-green-background-color\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table .has-subtle-pale-blue-background-color\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table .has-subtle-pale-pink-background-color\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes\":false},[\"border-spacing:0\",\"border-collapse:inherit\",\"background-color:transparent\",\"border-bottom:1px solid #f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes tbody tr:nth-child(odd)\":false},[\"background-color:#f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes td\":false,\".wp-block-table.is-style-stripes th\":false},[\"border-color:transparent\"]],[false,{\".wp-block-table .has-border-color>*\":false,\".wp-block-table .has-border-color td\":false,\".wp-block-table .has-border-color th\":false,\".wp-block-table .has-border-color tr\":false},[\"border-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-style]>*\":false,\".wp-block-table table[data-amp-original-style*=border-style] td\":false,\".wp-block-table table[data-amp-original-style*=border-style] th\":false,\".wp-block-table table[data-amp-original-style*=border-style] tr\":false},[\"border-style:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-width]>*\":false,\".wp-block-table table[data-amp-original-style*=border-width] td\":false,\".wp-block-table table[data-amp-original-style*=border-width] th\":false,\".wp-block-table table[data-amp-original-style*=border-width] tr\":false},[\"border-width:inherit\"]],[false,{\".wp-block-text-columns\":false,\".wp-block-text-columns.aligncenter\":false},[\"display:flex\"]],[false,{\".wp-block-text-columns .wp-block-column\":false},[\"margin:0 1em\",\"padding:0\"]],[false,{\".wp-block-text-columns .wp-block-column:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-text-columns .wp-block-column:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-text-columns.columns-2 .wp-block-column\":false},[\"width:50%\"]],[false,{\".wp-block-text-columns.columns-3 .wp-block-column\":false},[\"width:33.33333%\"]],[false,{\".wp-block-text-columns.columns-4 .wp-block-column\":false},[\"width:25%\"]],[false,{\"pre.wp-block-verse\":false},[\"font-family:inherit\",\"overflow:auto\",\"white-space:pre-wrap\"]],[false,{\".wp-block-video\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-video [poster]\":false},[\"-o-object-fit:cover\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".wp-block-video.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-video figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-post-featured-image\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".wp-block-post-featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-post-featured-image amp-img\":false,\".wp-block-post-featured-image amp-anim\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".wp-block-post-featured-image.alignfull amp-img\":false,\".wp-block-post-featured-image.alignfull amp-anim\":false,\".wp-block-post-featured-image.alignwide amp-img\":false,\".wp-block-post-featured-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\":root .has-pale-pink-background-color\":false},[\"background-color:#f78da7\"]],[false,{\":root .has-vivid-red-background-color\":false},[\"background-color:#cf2e2e\"]],[false,{\":root .has-luminous-vivid-orange-background-color\":false},[\"background-color:#ff6900\"]],[false,{\":root .has-luminous-vivid-amber-background-color\":false},[\"background-color:#fcb900\"]],[false,{\":root .has-light-green-cyan-background-color\":false},[\"background-color:#7bdcb5\"]],[false,{\":root .has-vivid-green-cyan-background-color\":false},[\"background-color:#00d084\"]],[false,{\":root .has-pale-cyan-blue-background-color\":false},[\"background-color:#8ed1fc\"]],[false,{\":root .has-vivid-cyan-blue-background-color\":false},[\"background-color:#0693e3\"]],[false,{\":root .has-vivid-purple-background-color\":false},[\"background-color:#9b51e0\"]],[false,{\":root .has-white-background-color\":false},[\"background-color:#fff\"]],[false,{\":root .has-very-light-gray-background-color\":false},[\"background-color:#eee\"]],[false,{\":root .has-cyan-bluish-gray-background-color\":false},[\"background-color:#abb8c3\"]],[false,{\":root .has-very-dark-gray-background-color\":false},[\"background-color:#313131\"]],[false,{\":root .has-black-background-color\":false},[\"background-color:#000\"]],[false,{\":root .has-pale-pink-color\":false},[\"color:#f78da7\"]],[false,{\":root .has-vivid-red-color\":false},[\"color:#cf2e2e\"]],[false,{\":root .has-luminous-vivid-orange-color\":false},[\"color:#ff6900\"]],[false,{\":root .has-luminous-vivid-amber-color\":false},[\"color:#fcb900\"]],[false,{\":root .has-light-green-cyan-color\":false},[\"color:#7bdcb5\"]],[false,{\":root .has-vivid-green-cyan-color\":false},[\"color:#00d084\"]],[false,{\":root .has-pale-cyan-blue-color\":false},[\"color:#8ed1fc\"]],[false,{\":root .has-vivid-cyan-blue-color\":false},[\"color:#0693e3\"]],[false,{\":root .has-vivid-purple-color\":false},[\"color:#9b51e0\"]],[false,{\":root .has-white-color\":false},[\"color:#fff\"]],[false,{\":root .has-very-light-gray-color\":false},[\"color:#eee\"]],[false,{\":root .has-cyan-bluish-gray-color\":false},[\"color:#abb8c3\"]],[false,{\":root .has-very-dark-gray-color\":false},[\"color:#313131\"]],[false,{\":root .has-black-color\":false},[\"color:#000\"]],[false,{\":root .has-vivid-cyan-blue-to-vivid-purple-gradient-background\":false},[\"background:linear-gradient(135deg,#0693e3,#9b51e0)\"]],[false,{\":root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background\":false},[\"background:linear-gradient(135deg,#00d084,#0693e3)\"]],[false,{\":root .has-light-green-cyan-to-vivid-green-cyan-gradient-background\":false},[\"background:linear-gradient(135deg,#7adcb4,#00d082)\"]],[false,{\":root .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background\":false},[\"background:linear-gradient(135deg,#fcb900,#ff6900)\"]],[false,{\":root .has-luminous-vivid-orange-to-vivid-red-gradient-background\":false},[\"background:linear-gradient(135deg,#ff6900,#cf2e2e)\"]],[false,{\":root .has-very-light-gray-to-cyan-bluish-gray-gradient-background\":false},[\"background:linear-gradient(135deg,#eee,#a9b8c3)\"]],[false,{\":root .has-cool-to-warm-spectrum-gradient-background\":false},[\"background:linear-gradient(135deg,#4aeadc,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c)\"]],[false,{\":root .has-blush-light-purple-gradient-background\":false},[\"background:linear-gradient(135deg,#ffceec,#9896f0)\"]],[false,{\":root .has-blush-bordeaux-gradient-background\":false},[\"background:linear-gradient(135deg,#fecda5,#fe2d2d 50%,#6b003e)\"]],[false,{\":root .has-purple-crush-gradient-background\":false},[\"background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)\"]],[false,{\":root .has-luminous-dusk-gradient-background\":false},[\"background:linear-gradient(135deg,#ffcb70,#c751c0 50%,#4158d0)\"]],[false,{\":root .has-hazy-dawn-gradient-background\":false},[\"background:linear-gradient(135deg,#faaca8,#dad0ec)\"]],[false,{\":root .has-pale-ocean-gradient-background\":false},[\"background:linear-gradient(135deg,#fff5cb,#b6e3d4 50%,#33a7b5)\"]],[false,{\":root .has-electric-grass-gradient-background\":false},[\"background:linear-gradient(135deg,#caf880,#71ce7e)\"]],[false,{\":root .has-subdued-olive-gradient-background\":false},[\"background:linear-gradient(135deg,#fafae1,#67a671)\"]],[false,{\":root .has-atomic-cream-gradient-background\":false},[\"background:linear-gradient(135deg,#fdd79a,#004a59)\"]],[false,{\":root .has-nightshade-gradient-background\":false},[\"background:linear-gradient(135deg,#330968,#31cdcf)\"]],[false,{\":root .has-midnight-gradient-background\":false},[\"background:linear-gradient(135deg,#020381,#2874fc)\"]],[false,{\".has-small-font-size\":false},[\"font-size:.8125em\"]],[false,{\".has-normal-font-size\":false,\".has-regular-font-size\":false},[\"font-size:1em\"]],[false,{\".has-medium-font-size\":false},[\"font-size:1.25em\"]],[false,{\".has-large-font-size\":false},[\"font-size:2.25em\"]],[false,{\".has-huge-font-size\":false,\".has-larger-font-size\":false},[\"font-size:2.625em\"]],[false,{\".has-text-align-center\":false},[\"text-align:center\"]],[false,{\".has-text-align-left\":false},[\"text-align:left\"]],[false,{\".has-text-align-right\":false},[\"text-align:right\"]],[false,{\"#end-resizable-editor-section\":false},[\"display:none\"]],[false,{\".aligncenter\":false},[\"clear:both\"]],[false,{\".items-justified-left\":false},[\"justify-content:flex-start\"]],[false,{\".items-justified-center\":false},[\"justify-content:center\"]],[false,{\".items-justified-right\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between\":false},[\"justify-content:space-between\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip:rect(1px,1px,1px,1px)\",\"-webkit-clip-path:inset(50%)\",\"clip-path:inset(50%)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#ddd\",\"-webkit-clip-path:none\",\"clip-path:none\",\"color:#444\",\"display:block\",\"font-size:1em\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[false,{\".screen-reader-text:focus:not(#_#_#_#_#_#_#_)\":false},[\"clip:auto\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2731,\"final_size\":790,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"contact-form-7-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/css\\/styles.css?ver=5.5.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"212b20af9d955c5d566d0549c68d0998\",\"parse_time\":0.03908491134643555,\"shake_time\":5.602836608886719e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".wpcf7 .screen-reader-response\":true},[\"position:absolute\",\"overflow:hidden\",\"clip:rect(1px,1px,1px,1px)\",\"clip-path:inset(50%)\",\"height:1px\",\"width:1px\",\"margin:-1px\",\"padding:0\",\"border:0\"]],[true,{\".wpcf7 .screen-reader-response:not(#_#_#_#_#_#_#_)\":true},[\"word-wrap:normal\"]],[true,{\".wpcf7 form .wpcf7-response-output\":true},[\"margin:2em .5em 1em\",\"padding:.2em 1em\",\"border:2px solid #00a0d2\"]],[true,{\".wpcf7 form.init .wpcf7-response-output\":true,\".wpcf7 form.resetting .wpcf7-response-output\":false,\".wpcf7 form.submitting .wpcf7-response-output\":false},[\"display:none\"]],[false,{\".wpcf7 form.sent .wpcf7-response-output\":false},[\"border-color:#46b450\"]],[false,{\".wpcf7 form.failed .wpcf7-response-output\":false,\".wpcf7 form.aborted .wpcf7-response-output\":false},[\"border-color:#dc3232\"]],[false,{\".wpcf7 form.spam .wpcf7-response-output\":false},[\"border-color:#f56e28\"]],[false,{\".wpcf7 form.invalid .wpcf7-response-output\":false,\".wpcf7 form.unaccepted .wpcf7-response-output\":false,\".wpcf7 form.payment-required .wpcf7-response-output\":false},[\"border-color:#ffb900\"]],[true,{\".wpcf7-form-control-wrap\":true},[\"position:relative\"]],[false,{\".wpcf7-not-valid-tip\":false},[\"color:#dc3232\",\"font-size:1em\",\"font-weight:normal\",\"display:block\"]],[false,{\".use-floating-validation-tip .wpcf7-not-valid-tip\":false},[\"position:relative\",\"top:-2ex\",\"left:1em\",\"z-index:100\",\"border:1px solid #dc3232\",\"background:#fff\",\"padding:.2em .8em\",\"width:24em\"]],[false,{\".wpcf7-list-item\":false},[\"display:inline-block\",\"margin:0 0 0 1em\"]],[false,{\".wpcf7-list-item-label::before\":false,\".wpcf7-list-item-label::after\":false},[\"content:\\\" \\\"\"]],[false,{\".wpcf7-spinner\":false},[\"visibility:hidden\",\"display:inline-block\",\"background-color:#23282d\",\"opacity:.75\",\"width:24px\",\"height:24px\",\"border:none\",\"border-radius:100%\",\"padding:0\",\"margin:0 24px\",\"position:relative\"]],[false,{\"form.submitting .wpcf7-spinner\":false},[\"visibility:visible\"]],[false,{\".wpcf7-spinner::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"background-color:#fbfbfc\",\"top:4px\",\"left:4px\",\"width:6px\",\"height:6px\",\"border:none\",\"border-radius:100%\",\"transform-origin:8px 8px\",\"animation-name:spin\",\"animation-duration:1000ms\",\"animation-timing-function:linear\",\"animation-iteration-count:infinite\"]],[false,\"@media (prefers-reduced-motion: reduce){\"],[false,{\".wpcf7-spinner::before\":false},[\"animation-name:blink\",\"animation-duration:2000ms\"]],[false,\"}\"],[true,\"@keyframes spin{\"],[true,\"from{transform:rotate(0deg)}\"],[true,\"to{transform:rotate(360deg)}\"],[true,\"}@keyframes blink{\"],[true,\"from{opacity:0}\"],[true,\"50%{opacity:1}\"],[true,\"to{opacity:0}\"],[true,\"}\"],[true,{\".wpcf7 input[type=\\\"file\\\"]\":true},[\"cursor:pointer\"]],[true,{\".wpcf7 input[type=\\\"file\\\"]:disabled\":true},[\"cursor:default\"]],[true,{\".wpcf7 .wpcf7-submit:disabled\":true},[\"cursor:not-allowed\"]],[true,{\".wpcf7 input[type=\\\"url\\\"]\":true,\".wpcf7 input[type=\\\"email\\\"]\":true,\".wpcf7 input[type=\\\"tel\\\"]\":true},[\"direction:ltr\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":3027,\"final_size\":290,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"emcs_calendly_css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/embed-calendly-scheduling\\/assets\\/css\\/widget.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"embed-calendly-scheduling\",\"file\":\"embed-calendly-scheduling.php\",\"line\":39,\"function\":\"emcs_calendly_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"99d6ad74e1d82f040a9c3a773af31054\",\"parse_time\":0.053494930267333984,\"shake_time\":3.0040740966796875e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".calendly-inline-widget\":false,\".calendly-inline-widget *\":false,\".calendly-badge-widget\":false,\".calendly-badge-widget *\":false,\".calendly-overlay\":false,\".calendly-overlay *\":false},[\"font-size:16px\",\"line-height:1.2em\"]],[false,{\".calendly-inline-widget amp-iframe\":false,\".calendly-badge-widget amp-iframe\":false,\".calendly-overlay amp-iframe\":false},[\"display:inline\",\"width:100%\",\"height:100%\"]],[false,{\".calendly-popup-content\":false},[\"position:relative\"]],[false,{\".calendly-popup-content.calendly-mobile\":false},[\"-webkit-overflow-scrolling:touch\",\"overflow-y:auto\"]],[false,{\".calendly-overlay\":false},[\"position:fixed\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"overflow:hidden\",\"z-index:9999\",\"background-color:#a5a5a5\",\"background-color:rgba(31,31,31,.4)\"]],[false,{\".calendly-overlay .calendly-close-overlay\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\"]],[false,{\".calendly-overlay .calendly-popup\":false},[\"box-sizing:border-box\",\"position:absolute\",\"top:50%\",\"left:50%\",\"-webkit-transform:translateY(-50%) translateX(-50%)\",\"transform:translateY(-50%) translateX(-50%)\",\"width:80%\",\"min-width:900px\",\"max-width:1000px\",\"height:90%\",\"max-height:680px\"]],[false,\"@media (max-width:975px){\"],[false,{\".calendly-overlay .calendly-popup\":false},[\"position:fixed\",\"top:50px\",\"left:0\",\"right:0\",\"bottom:0\",\"-webkit-transform:none\",\"transform:none\",\"width:100%\",\"height:auto\",\"min-width:0\",\"max-height:none\"]],[false,\"}\"],[false,{\".calendly-overlay .calendly-popup .calendly-popup-content\":false},[\"height:100%\"]],[false,{\".calendly-overlay .calendly-popup-close\":false},[\"position:absolute\",\"top:25px\",\"right:25px\",\"color:#fff\",\"width:19px\",\"height:19px\",\"cursor:pointer\",\"background:url(\\\"\\/assets\\/external\\/close-icon.svg\\\") no-repeat\",\"background-size:contain\"]],[false,\"@media (max-width:975px){\"],[false,{\".calendly-overlay .calendly-popup-close\":false},[\"top:15px\",\"right:15px\"]],[false,\"}\"],[false,{\".calendly-badge-widget\":false},[\"position:fixed\",\"right:20px\",\"bottom:15px\",\"z-index:9998\"]],[false,{\".calendly-badge-widget .calendly-badge-content\":false},[\"display:table-cell\",\"width:auto\",\"height:45px\",\"padding:0 30px\",\"border-radius:25px\",\"box-shadow:rgba(0,0,0,.25) 0 2px 5px\",\"font-family:sans-serif\",\"text-align:center\",\"vertical-align:middle\",\"font-weight:700\",\"font-size:14px\",\"color:#fff\",\"cursor:pointer\"]],[false,{\".calendly-badge-widget .calendly-badge-content.calendly-white\":false},[\"color:#666a73\"]],[false,{\".calendly-badge-widget .calendly-badge-content span\":false},[\"display:block\",\"font-size:12px\"]],[false,{\".calendly-spinner\":false},[\"position:absolute\",\"top:50%\",\"left:0\",\"right:0\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\",\"text-align:center\",\"z-index:-1\"]],[false,{\".calendly-spinner>div\":false},[\"display:inline-block\",\"width:18px\",\"height:18px\",\"background-color:#e1e1e1\",\"border-radius:50%\",\"vertical-align:middle\",\"-webkit-animation:calendly-bouncedelay 1.4s infinite ease-in-out\",\"animation:calendly-bouncedelay 1.4s infinite ease-in-out\",\"-webkit-animation-fill-mode:both\",\"animation-fill-mode:both\"]],[false,{\".calendly-spinner .calendly-bounce1\":false},[\"-webkit-animation-delay:-.32s\",\"animation-delay:-.32s\"]],[false,{\".calendly-spinner .calendly-bounce2\":false},[\"-webkit-animation-delay:-.16s\",\"animation-delay:-.16s\"]],[true,\"@-webkit-keyframes calendly-bouncedelay{\"],[true,\"0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}\"],[true,\"40%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes calendly-bouncedelay{\"],[true,\"0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}\"],[true,\"40%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,\"@media only screen and (max-device-width :768px){\"],[false,{\"#calendly-inline-widget:not(#_#_#_#_#_#_#_)\":false},[\"min-width:auto\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":89113,\"final_size\":55,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"social_warfare-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/css\\/style.min.css?ver=4.3.0\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Script.php\",\"line\":94,\"function\":\"SWP_Script::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"e220b783a5a07d3a59270f77ece9859a\",\"parse_time\":1.1959950923919678,\"shake_time\":0.024454116821289062,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".swp_social_panel.swp_default_full_color a\":false,\"html body .swp_social_panel.swp_individual_full_color .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_full_color:hover a\":false},[\"color:white\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_blogger\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_blogger:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_blogger:not(:hover)\":false},[\"border:1px solid #ff5722\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_blogger\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_blogger:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_blogger\":false},[\"background:#ff5722\",\"border:1px solid #ee3900\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_blogger\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_blogger:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_blogger\":false},[\"border-bottom:3px solid #ee3900\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_blogger a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_blogger a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_blogger a\":false},[\"color:#ff5722\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_blogger\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_blogger:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_blogger\":false},[\"background:transparent\",\"border:1px solid #ff5722\"]],[false,{\".swp-blogger\":false},[\"background:#ff5722\",\"border-color:#ee3900\"]],[false,{\".swp-blogger a\":false},[\"color:#ff5722\"]],[false,{\".swp-blogger a:hover\":false},[\"background:#ee3900\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_buffer\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_buffer:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_buffer:not(:hover)\":false},[\"border:1px solid #323b43\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_buffer\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_buffer:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_buffer\":false},[\"background:#323b43\",\"border:1px solid #1c2126\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_buffer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_buffer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_buffer\":false},[\"border-bottom:3px solid #1c2126\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_buffer a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_buffer a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_buffer a\":false},[\"color:#323b43\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_buffer\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_buffer:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_buffer\":false},[\"background:transparent\",\"border:1px solid #323b43\"]],[false,{\".swp-buffer\":false},[\"background:#323b43\",\"border-color:#1c2126\"]],[false,{\".swp-buffer a\":false},[\"color:#323b43\"]],[false,{\".swp-buffer a:hover\":false},[\"background:#1c2126\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_ello\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_ello:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_ello:not(:hover)\":false},[\"border:1px solid #000\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_ello\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_ello:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_ello\":false},[\"background:#000\",\"border:1px solid #000\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_ello\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_ello:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_ello\":false},[\"border-bottom:3px solid #000\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_ello a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_ello a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_ello a\":false},[\"color:#000\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_ello\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_ello:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_ello\":false},[\"background:transparent\",\"border:1px solid #000\"]],[false,{\".swp-ello\":false},[\"background:#000\",\"border-color:#000\"]],[false,{\".swp-ello a\":false},[\"color:#000\"]],[false,{\".swp-ello a:hover\":false},[\"background:#000\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_email\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_email:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_email:not(:hover)\":false},[\"border:1px solid #6bcce9\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_email\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_email:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_email\":false},[\"background:#6bcce9\",\"border:1px solid #3fbde2\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_email\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_email:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_email\":false},[\"border-bottom:3px solid #3fbde2\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_email a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_email a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_email a\":false},[\"color:#6bcce9\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_email\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_email:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_email\":false},[\"background:transparent\",\"border:1px solid #6bcce9\"]],[false,{\".swp-email\":false},[\"background:#6bcce9\",\"border-color:#3fbde2\"]],[false,{\".swp-email a\":false},[\"color:#6bcce9\"]],[false,{\".swp-email a:hover\":false},[\"background:#3fbde2\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_evernote\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_evernote:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_evernote:not(:hover)\":false},[\"border:1px solid #2dbe60\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_evernote\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_evernote:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_evernote\":false},[\"background:#2dbe60\",\"border:1px solid #23954b\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_evernote\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_evernote:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_evernote\":false},[\"border-bottom:3px solid #23954b\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_evernote a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_evernote a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_evernote a\":false},[\"color:#2dbe60\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_evernote\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_evernote:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_evernote\":false},[\"background:transparent\",\"border:1px solid #2dbe60\"]],[false,{\".swp-evernote\":false},[\"background:#2dbe60\",\"border-color:#23954b\"]],[false,{\".swp-evernote a\":false},[\"color:#2dbe60\"]],[false,{\".swp-evernote a:hover\":false},[\"background:#23954b\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_facebook\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_facebook:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_facebook:not(:hover)\":false},[\"border:1px solid #1877f2\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_facebook\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_facebook:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_facebook\":false},[\"background:#1877f2\",\"border:1px solid #0b5fcc\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_facebook\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_facebook:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_facebook\":false},[\"border-bottom:3px solid #0b5fcc\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_facebook a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_facebook a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_facebook a\":false},[\"color:#1877f2\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_facebook\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_facebook:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_facebook\":false},[\"background:transparent\",\"border:1px solid #1877f2\"]],[false,{\".swp-facebook\":false},[\"background:#1877f2\",\"border-color:#0b5fcc\"]],[false,{\".swp-facebook a\":false},[\"color:#1877f2\"]],[false,{\".swp-facebook a:hover\":false},[\"background:#0b5fcc\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_flickr\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_flickr:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_flickr:not(:hover)\":false},[\"border:1px solid #ff0084\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_flickr\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_flickr:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_flickr\":false},[\"background:#ff0084\",\"border:1px solid #cc006a\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_flickr\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_flickr:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_flickr\":false},[\"border-bottom:3px solid #cc006a\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flickr a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flickr a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flickr a\":false},[\"color:#ff0084\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flickr\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flickr:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flickr\":false},[\"background:transparent\",\"border:1px solid #ff0084\"]],[false,{\".swp-flickr\":false},[\"background:#ff0084\",\"border-color:#cc006a\"]],[false,{\".swp-flickr a\":false},[\"color:#ff0084\"]],[false,{\".swp-flickr a:hover\":false},[\"background:#cc006a\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_flipboard\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_flipboard:not(:hover)\":false},[\"border:1px solid #bf2626\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_flipboard\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_flipboard\":false},[\"background:#bf2626\",\"border:1px solid #941e1e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_flipboard\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_flipboard\":false},[\"border-bottom:3px solid #941e1e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flipboard a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flipboard a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flipboard a\":false},[\"color:#bf2626\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flipboard\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flipboard\":false},[\"background:transparent\",\"border:1px solid #bf2626\"]],[false,{\".swp-flipboard\":false},[\"background:#bf2626\",\"border-color:#941e1e\"]],[false,{\".swp-flipboard a\":false},[\"color:#bf2626\"]],[false,{\".swp-flipboard a:hover\":false},[\"background:#941e1e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_hacker_news\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_hacker_news:not(:hover)\":false},[\"border:1px solid #d85623\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_hacker_news\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_hacker_news\":false},[\"background:#d85623\",\"border:1px solid #ac451c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_hacker_news\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_hacker_news\":false},[\"border-bottom:3px solid #ac451c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_hacker_news a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_hacker_news a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_hacker_news a\":false},[\"color:#d85623\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_hacker_news\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_hacker_news\":false},[\"background:transparent\",\"border:1px solid #d85623\"]],[false,{\".swp-hacker_news\":false},[\"background:#d85623\",\"border-color:#ac451c\"]],[false,{\".swp-hacker_news a\":false},[\"color:#d85623\"]],[false,{\".swp-hacker_news a:hover\":false},[\"background:#ac451c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_instagram\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_instagram:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_instagram:not(:hover)\":false},[\"border:1px solid #ea2454\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_instagram\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_instagram:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_instagram\":false},[\"background:#ea2454\",\"border:1px solid #c8133f\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_instagram\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_instagram:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_instagram\":false},[\"border-bottom:3px solid #c8133f\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_instagram a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_instagram a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_instagram a\":false},[\"color:#ea2454\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_instagram\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_instagram:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_instagram\":false},[\"background:transparent\",\"border:1px solid #ea2454\"]],[false,{\".swp-instagram\":false},[\"background:#ea2454\",\"border-color:#c8133f\"]],[false,{\".swp-instagram a\":false},[\"color:#ea2454\"]],[false,{\".swp-instagram a:hover\":false},[\"background:#c8133f\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_linkedin\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_linkedin:not(:hover)\":false},[\"border:1px solid #2767b1\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_linkedin\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_linkedin\":false},[\"background:#2767b1\",\"border:1px solid #1e4f87\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_linkedin\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_linkedin\":false},[\"border-bottom:3px solid #1e4f87\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_linkedin a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_linkedin a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_linkedin a\":false},[\"color:#2767b1\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_linkedin\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_linkedin\":false},[\"background:transparent\",\"border:1px solid #2767b1\"]],[false,{\".swp-linkedin\":false},[\"background:#2767b1\",\"border-color:#1e4f87\"]],[false,{\".swp-linkedin a\":false},[\"color:#2767b1\"]],[false,{\".swp-linkedin a:hover\":false},[\"background:#1e4f87\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_medium\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_medium:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_medium:not(:hover)\":false},[\"border:1px solid #00ab6c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_medium\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_medium:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_medium\":false},[\"background:#00ab6c\",\"border:1px solid #00784c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_medium\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_medium:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_medium\":false},[\"border-bottom:3px solid #00784c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_medium a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_medium a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_medium a\":false},[\"color:#00ab6c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_medium\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_medium:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_medium\":false},[\"background:transparent\",\"border:1px solid #00ab6c\"]],[false,{\".swp-medium\":false},[\"background:#00ab6c\",\"border-color:#00784c\"]],[false,{\".swp-medium a\":false},[\"color:#00ab6c\"]],[false,{\".swp-medium a:hover\":false},[\"background:#00784c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_mix\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_mix:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_mix:not(:hover)\":false},[\"border:1px solid #f4812c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_mix\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_mix:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_mix\":false},[\"background:#f4812c\",\"border:1px solid #e1660c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_mix\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_mix:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_mix\":false},[\"border-bottom:3px solid #e1660c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_mix a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_mix a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_mix a\":false},[\"color:#f4812c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_mix\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_mix:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_mix\":false},[\"background:transparent\",\"border:1px solid #f4812c\"]],[false,{\".swp-mix\":false},[\"background:#f4812c\",\"border-color:#e1660c\"]],[false,{\".swp-mix a\":false},[\"color:#f4812c\"]],[false,{\".swp-mix a:hover\":false},[\"background:#e1660c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_more\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_more:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_more:not(:hover)\":false},[\"border:1px solid #ee464f\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_more\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_more:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_more\":false},[\"background:#ee464f\",\"border:1px solid #ea1723\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_more\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_more:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_more\":false},[\"border-bottom:3px solid #ea1723\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_more a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_more a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_more a\":false},[\"color:#ee464f\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_more\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_more:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_more\":false},[\"background:transparent\",\"border:1px solid #ee464f\"]],[false,{\".swp-more\":false},[\"background:#ee464f\",\"border-color:#ea1723\"]],[false,{\".swp-more a\":false},[\"color:#ee464f\"]],[false,{\".swp-more a:hover\":false},[\"background:#ea1723\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_parler\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_parler:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_parler:not(:hover)\":false},[\"border:1px solid #be1e2c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_parler\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_parler:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_parler\":false},[\"background:#be1e2c\",\"border:1px solid #921722\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_parler\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_parler:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_parler\":false},[\"border-bottom:3px solid #921722\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_parler a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_parler a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_parler a\":false},[\"color:#be1e2c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_parler\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_parler:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_parler\":false},[\"background:transparent\",\"border:1px solid #be1e2c\"]],[false,{\".swp-parler\":false},[\"background:#be1e2c\",\"border-color:#921722\"]],[false,{\".swp-parler a\":false},[\"color:#be1e2c\"]],[false,{\".swp-parler a:hover\":false},[\"background:#921722\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_periscope\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_periscope:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_periscope:not(:hover)\":false},[\"border:1px solid #3aa4c6\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_periscope\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_periscope:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_periscope\":false},[\"background:#3aa4c6\",\"border:1px solid #2e849f\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_periscope\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_periscope:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_periscope\":false},[\"border-bottom:3px solid #2e849f\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_periscope a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_periscope a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_periscope a\":false},[\"color:#3aa4c6\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_periscope\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_periscope:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_periscope\":false},[\"background:transparent\",\"border:1px solid #3aa4c6\"]],[false,{\".swp-periscope\":false},[\"background:#3aa4c6\",\"border-color:#2e849f\"]],[false,{\".swp-periscope a\":false},[\"color:#3aa4c6\"]],[false,{\".swp-periscope a:hover\":false},[\"background:#2e849f\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_pinterest\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_pinterest:not(:hover)\":false},[\"border:1px solid #e60023\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_pinterest\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_pinterest\":false},[\"background:#e60023\",\"border:1px solid #b3001b\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_pinterest\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_pinterest\":false},[\"border-bottom:3px solid #b3001b\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pinterest a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pinterest a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pinterest a\":false},[\"color:#e60023\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pinterest\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pinterest\":false},[\"background:transparent\",\"border:1px solid #e60023\"]],[false,{\".swp-pinterest\":false},[\"background:#e60023\",\"border-color:#b3001b\"]],[false,{\".swp-pinterest a\":false},[\"color:#e60023\"]],[false,{\".swp-pinterest a:hover\":false},[\"background:#b3001b\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_pocket\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_pocket:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_pocket:not(:hover)\":false},[\"border:1px solid #ef4056\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_pocket\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_pocket:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_pocket\":false},[\"background:#ef4056\",\"border:1px solid #e9132e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_pocket\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_pocket:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_pocket\":false},[\"border-bottom:3px solid #e9132e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pocket a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pocket a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pocket a\":false},[\"color:#ef4056\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pocket\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pocket:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pocket\":false},[\"background:transparent\",\"border:1px solid #ef4056\"]],[false,{\".swp-pocket\":false},[\"background:#ef4056\",\"border-color:#e9132e\"]],[false,{\".swp-pocket a\":false},[\"color:#ef4056\"]],[false,{\".swp-pocket a:hover\":false},[\"background:#e9132e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_print\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_print:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_print:not(:hover)\":false},[\"border:1px solid #777\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_print\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_print:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_print\":false},[\"background:#777\",\"border:1px solid #5e5e5e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_print\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_print:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_print\":false},[\"border-bottom:3px solid #5e5e5e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_print a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_print a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_print a\":false},[\"color:#777\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_print\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_print:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_print\":false},[\"background:transparent\",\"border:1px solid #777\"]],[false,{\".swp-print\":false},[\"background:#777\",\"border-color:#5e5e5e\"]],[false,{\".swp-print a\":false},[\"color:#777\"]],[false,{\".swp-print a:hover\":false},[\"background:#5e5e5e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_reddit\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_reddit:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_reddit:not(:hover)\":false},[\"border:1px solid #f04b23\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_reddit\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_reddit:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_reddit\":false},[\"background:#f04b23\",\"border:1px solid #d2340e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_reddit\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_reddit:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_reddit\":false},[\"border-bottom:3px solid #d2340e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_reddit a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_reddit a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_reddit a\":false},[\"color:#f04b23\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_reddit\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_reddit:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_reddit\":false},[\"background:transparent\",\"border:1px solid #f04b23\"]],[false,{\".swp-reddit\":false},[\"background:#f04b23\",\"border-color:#d2340e\"]],[false,{\".swp-reddit a\":false},[\"color:#f04b23\"]],[false,{\".swp-reddit a:hover\":false},[\"background:#d2340e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_snapchat\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_snapchat:not(:hover)\":false},[\"border:1px solid #fffc00\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_snapchat\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_snapchat\":false},[\"background:#fffc00\",\"border:1px solid #ccca00\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_snapchat\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_snapchat\":false},[\"border-bottom:3px solid #ccca00\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_snapchat a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_snapchat a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_snapchat a\":false},[\"color:#fffc00\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_snapchat\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_snapchat\":false},[\"background:transparent\",\"border:1px solid #fffc00\"]],[false,{\".swp-snapchat\":false},[\"background:#fffc00\",\"border-color:#ccca00\"]],[false,{\".swp-snapchat a\":false},[\"color:#fffc00\"]],[false,{\".swp-snapchat a:hover\":false},[\"background:#ccca00\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_telegram\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_telegram:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_telegram:not(:hover)\":false},[\"border:1px solid #08c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_telegram\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_telegram:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_telegram\":false},[\"background:#08c\",\"border:1px solid #069\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_telegram\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_telegram:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_telegram\":false},[\"border-bottom:3px solid #069\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_telegram a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_telegram a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_telegram a\":false},[\"color:#08c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_telegram\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_telegram:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_telegram\":false},[\"background:transparent\",\"border:1px solid #08c\"]],[false,{\".swp-telegram\":false},[\"background:#08c\",\"border-color:#069\"]],[false,{\".swp-telegram a\":false},[\"color:#08c\"]],[false,{\".swp-telegram a:hover\":false},[\"background:#069\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_twitter\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_twitter:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_twitter:not(:hover)\":false},[\"border:1px solid #1da1f2\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_twitter\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_twitter:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_twitter\":false},[\"background:#1da1f2\",\"border:1px solid #0c85d0\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_twitter\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_twitter:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_twitter\":false},[\"border-bottom:3px solid #0c85d0\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_twitter a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_twitter a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_twitter a\":false},[\"color:#1da1f2\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_twitter\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_twitter:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_twitter\":false},[\"background:transparent\",\"border:1px solid #1da1f2\"]],[false,{\".swp-twitter\":false},[\"background:#1da1f2\",\"border-color:#0c85d0\"]],[false,{\".swp-twitter a\":false},[\"color:#1da1f2\"]],[false,{\".swp-twitter a:hover\":false},[\"background:#0c85d0\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_tumblr\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_tumblr:not(:hover)\":false},[\"border:1px solid #39475d\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_tumblr\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_tumblr\":false},[\"background:#39475d\",\"border:1px solid #262f3d\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_tumblr\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_tumblr\":false},[\"border-bottom:3px solid #262f3d\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_tumblr a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_tumblr a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_tumblr a\":false},[\"color:#39475d\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_tumblr\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_tumblr\":false},[\"background:transparent\",\"border:1px solid #39475d\"]],[false,{\".swp-tumblr\":false},[\"background:#39475d\",\"border-color:#262f3d\"]],[false,{\".swp-tumblr a\":false},[\"color:#39475d\"]],[false,{\".swp-tumblr a:hover\":false},[\"background:#262f3d\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_vimeo\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_vimeo:not(:hover)\":false},[\"border:1px solid #162221\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_vimeo\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_vimeo\":false},[\"background:#162221\",\"border:1px solid #020303\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_vimeo\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_vimeo\":false},[\"border-bottom:3px solid #020303\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vimeo a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vimeo a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vimeo a\":false},[\"color:#162221\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vimeo\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vimeo\":false},[\"background:transparent\",\"border:1px solid #162221\"]],[false,{\".swp-vimeo\":false},[\"background:#162221\",\"border-color:#020303\"]],[false,{\".swp-vimeo a\":false},[\"color:#162221\"]],[false,{\".swp-vimeo a:hover\":false},[\"background:#020303\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_viber\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_viber:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_viber:not(:hover)\":false},[\"border:1px solid #8f5db7\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_viber\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_viber:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_viber\":false},[\"background:#8f5db7\",\"border:1px solid #75459c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_viber\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_viber:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_viber\":false},[\"border-bottom:3px solid #75459c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_viber a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_viber a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_viber a\":false},[\"color:#8f5db7\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_viber\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_viber:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_viber\":false},[\"background:transparent\",\"border:1px solid #8f5db7\"]],[false,{\".swp-viber\":false},[\"background:#8f5db7\",\"border-color:#75459c\"]],[false,{\".swp-viber a\":false},[\"color:#8f5db7\"]],[false,{\".swp-viber a:hover\":false},[\"background:#75459c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_vk\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_vk:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_vk:not(:hover)\":false},[\"border:1px solid #4a76a8\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_vk\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_vk:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_vk\":false},[\"background:#4a76a8\",\"border:1px solid #3a5d85\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_vk\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_vk:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_vk\":false},[\"border-bottom:3px solid #3a5d85\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vk a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vk a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vk a\":false},[\"color:#4a76a8\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vk\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vk:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vk\":false},[\"background:transparent\",\"border:1px solid #4a76a8\"]],[false,{\".swp-vk\":false},[\"background:#4a76a8\",\"border-color:#3a5d85\"]],[false,{\".swp-vk a\":false},[\"color:#4a76a8\"]],[false,{\".swp-vk a:hover\":false},[\"background:#3a5d85\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_whatsapp\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_whatsapp:not(:hover)\":false},[\"border:1px solid #71c169\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_whatsapp\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_whatsapp\":false},[\"background:#71c169\",\"border:1px solid #52af48\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_whatsapp\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_whatsapp\":false},[\"border-bottom:3px solid #52af48\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_whatsapp a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_whatsapp a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_whatsapp a\":false},[\"color:#71c169\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_whatsapp\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_whatsapp\":false},[\"background:transparent\",\"border:1px solid #71c169\"]],[false,{\".swp-whatsapp\":false},[\"background:#71c169\",\"border-color:#52af48\"]],[false,{\".swp-whatsapp a\":false},[\"color:#71c169\"]],[false,{\".swp-whatsapp a:hover\":false},[\"background:#52af48\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_xing\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_xing:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_xing:not(:hover)\":false},[\"border:1px solid #026466\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_xing\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_xing:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_xing\":false},[\"background:#026466\",\"border:1px solid #013334\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_xing\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_xing:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_xing\":false},[\"border-bottom:3px solid #013334\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_xing a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_xing a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_xing a\":false},[\"color:#026466\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_xing\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_xing:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_xing\":false},[\"background:transparent\",\"border:1px solid #026466\"]],[false,{\".swp-xing\":false},[\"background:#026466\",\"border-color:#013334\"]],[false,{\".swp-xing a\":false},[\"color:#026466\"]],[false,{\".swp-xing a:hover\":false},[\"background:#013334\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_yummly\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_yummly:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_yummly:not(:hover)\":false},[\"border:1px solid #e26426\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_yummly\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_yummly:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_yummly\":false},[\"background:#e26426\",\"border:1px solid #bc4f19\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_yummly\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_yummly:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_yummly\":false},[\"border-bottom:3px solid #bc4f19\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_yummly a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_yummly a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_yummly a\":false},[\"color:#e26426\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_yummly\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_yummly:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_yummly\":false},[\"background:transparent\",\"border:1px solid #e26426\"]],[false,{\".swp-yummly\":false},[\"background:#e26426\",\"border-color:#bc4f19\"]],[false,{\".swp-yummly a\":false},[\"color:#e26426\"]],[false,{\".swp-yummly a:hover\":false},[\"background:#bc4f19\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_default_light_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_light_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_light_gray:hover .nc_tweetContainer\":false},[\"background-color:#ccc\",\"border:1px solid #ccc\"]],[false,{\".swp_social_panel.swp_default_light_gray .nc_tweetContainer a\":false,\"html body .swp_social_panel.swp_individual_light_gray .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_light_gray:hover .nc_tweetContainer a\":false},[\"color:#fff\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_light_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_light_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_light_gray .nc_tweetContainer:hover\":false},[\"border-bottom:3px solid #b3b3b3\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_light_gray .nc_tweetContainer.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_light_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false,\"body .swp_social_panel.swp_three_dee.swp_other_light_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:none\"]],[false,{\".swp_social_panel.swp_default_light_gray_outlines a\":false,\"html body .swp_social_panel.swp_individual_light_gray_outlines a:hover\":false,\"body .swp_social_panel.swp_other_light_gray_outlines:hover a\":false},[\"color:#ccc\"]],[false,{\".swp_social_panel.swp_default_light_gray_outlines .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_light_gray_outlines .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_light_gray_outlines:hover .nc_tweetContainer\":false},[\"background:transparent\",\"border:1px solid #ccc\"]],[false,{\".swp_social_panel.swp_default_medium_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_medium_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_medium_gray:hover .nc_tweetContainer\":false},[\"background-color:#999\",\"border:1px solid #999\"]],[false,{\".swp_social_panel.swp_default_medium_gray .nc_tweetContainer a\":false,\"html body .swp_social_panel.swp_individual_medium_gray .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_medium_gray:hover .nc_tweetContainer a\":false},[\"color:#fff\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_medium_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_medium_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_medium_gray .nc_tweetContainer:hover\":false},[\"border-bottom:3px solid gray\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_medium_gray .nc_tweetContainer.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_medium_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false,\"body .swp_social_panel.swp_three_dee.swp_other_medium_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:none\"]],[false,{\".swp_social_panel.swp_default_medium_gray_outlines a\":false,\"html body .swp_social_panel.swp_individual_medium_gray_outlines a:hover\":false,\"body .swp_social_panel.swp_other_medium_gray_outlines:hover a\":false},[\"color:#999\"]],[false,{\".swp_social_panel.swp_default_medium_gray_outlines .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_medium_gray_outlines .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_medium_gray_outlines:hover .nc_tweetContainer\":false},[\"background:transparent\",\"border:1px solid #999\"]],[false,{\".swp_social_panel.swp_default_dark_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_dark_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_dark_gray:hover .nc_tweetContainer\":false},[\"background-color:#444\",\"border:1px solid #444\"]],[false,{\".swp_social_panel.swp_default_dark_gray .nc_tweetContainer a\":false,\"html body .swp_social_panel.swp_individual_dark_gray .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_dark_gray:hover .nc_tweetContainer a\":false},[\"color:#fff\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_dark_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_dark_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_dark_gray .nc_tweetContainer:hover\":false},[\"border-bottom:3px solid #2b2b2b\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_dark_gray .nc_tweetContainer.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_dark_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false,\"body .swp_social_panel.swp_three_dee.swp_other_dark_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:none\"]],[false,{\".swp_social_panel.swp_default_dark_gray_outlines a\":false,\"html body .swp_social_panel.swp_individual_dark_gray_outlines a:hover\":false,\"body .swp_social_panel.swp_other_dark_gray_outlines:hover a\":false},[\"color:#444\"]],[false,{\".swp_social_panel.swp_default_dark_gray_outlines .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_dark_gray_outlines .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_dark_gray_outlines:hover .nc_tweetContainer\":false},[\"background:transparent\",\"border:1px solid #444\"]],[false,{\".swp_social_panel.swp_modern\":false,\".swp_social_panel.swp_dark\":false},[\"background:#fff\",\"height:62px\",\"padding:0\",\"border-radius:8px\",\"border:1px solid #eee\",\"box-shadow:0 2px 4px 0 rgba(0,0,0,.01),0 4px 5px 0 rgba(0,0,0,.014),0 4px 15px 0 rgba(0,0,0,.09)\"]],[false,{\".swp_social_panel.swp_modern .swp_share_button\":false,\".swp_social_panel.swp_dark .swp_share_button\":false},[\"padding-bottom:1px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_button:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .swp_share_button:not(#_#_#_#_#_#_#_)\":false},[\"border:none\",\"border-radius:0\",\"margin:0\",\"height:61px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_button.total_shares.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .swp_share_button.total_shares.total_sharesalt:not(#_#_#_#_#_#_#_)\":false},[\"padding:15px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_link\":false,\".swp_social_panel.swp_dark .swp_share_link\":false},[\"border-radius:0\",\"padding:15px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_link:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .swp_share_link:not(#_#_#_#_#_#_#_)\":false},[\"height:61px\"]],[false,{\".swp_social_panel.swp_modern .iconFiller:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .iconFiller:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:10px\"]],[false,{\".swp_social_panel.swp_modern .nc_wrapper.bottom:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .nc_wrapper.bottom:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\"]],[false,{\".swp_dark .swp_share_button:not(#_#_#_#_#_#_#_)\":false},[\"background:#222\",\"border-color:#222\",\"margin:0\",\"height:62px\"]],[false,{\".swp_dark .swp_share_link:hover\":false},[\"background:#444\"]],[false,{\".scale-70\":false},[\"transform:scale(.7)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-70.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:142.85714%\"]],[false,{\".scale-80\":false},[\"transform:scale(.8)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-80.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:125%\"]],[false,{\".scale-90\":false},[\"transform:scale(.9)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-90.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:111.11111%\"]],[false,{\".scale-100\":false},[\"transform:scale(1)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-100.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".scale-110\":false},[\"transform:scale(1.1)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-110.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:90.90909%\"]],[false,{\".scale-120\":false},[\"transform:scale(1.2)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-120.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:83.33333%\"]],[false,{\".scale-130\":false},[\"transform:scale(1.3)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-130.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:76.92308%\"]],[false,{\".scale-140\":false},[\"transform:scale(1.4)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-140.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:71.42857%\"]],[false,{\".scale-left\":false},[\"transform-origin:left\"]],[false,{\".scale-center\":false},[\"transform-origin:center\"]],[false,{\".scale-right\":false},[\"transform-origin:right\"]],[false,{\".scale-full_width\":false},[\"transform-origin:left\"]],[false,{\"div.swp_social_panel .nc_tweetContainer.swp_emphasize\":false},[\"flex:2\"]],[false,\"@media print{\"],[false,{\".swp_social_panel\":false},[\"display:none\",\"opacity:0\",\"visibility:collapse\"]],[false,\"}\"],[false,{\"html[lang] .site * i.sw:not(#_#_#_#_#_#_#_#_)\":false},[\"font-family:sw-icon-font\"]],[false,{\".swp_social_panel\":false},[\"clear:both\",\"display:flex\",\"height:34px\",\"line-height:1\",\"overflow:hidden\",\"padding:0\",\"align-items:stretch\",\"-webkit-box-align:stretch\",\"-moz-box-align:stretch\",\"-webkit-box-pack:justify\",\"-moz-box-pack:justify\",\"direction:ltr\",\"-ms-flex-align:stretch\",\"-ms-flex-line-pack:center\",\"-ms-flex-pack:justify\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[false,{\".swp_social_panel:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:20px\",\"margin-top:20px\"]],[false,{\".swp_social_panel .nc_tweetContainer a.nc_tweet\":false,\".swp_social_panel .nc_tweetContainer.total_shares .swp_count\":false},[\"display:block\",\"display:flex\",\"font-family:Lato,sans-serif\",\"font-weight:bold\",\"height:30px\",\"text-transform:none\",\"flex-flow:row wrap\",\"box-shadow:none\"]],[false,{\".swp_social_panel .nc_tweetContainer a.nc_tweet:not(#_#_#_#_#_#_#_#_)\":false,\".swp_social_panel .nc_tweetContainer.total_shares .swp_count:not(#_#_#_#_#_#_#_)\":false},[\"font-size:18px\",\"text-decoration:none\"]],[false,{\".swp_social_panel .nc_tweetContainer:not(.total_shares):not(.total_sharesalt)\":false},[\"border-radius:2px\",\"cursor:pointer\",\"float:left\",\"font-family:Lato\",\"height:32px\",\"margin:0 5px 3px 5px\",\"min-width:34px\",\"overflow:hidden\",\"text-align:center\",\"transition:all .1s linear\"]],[false,{\".swp_social_panel .nc_tweetContainer .spaceManWilly\":false},[\"display:block\",\"width:120px\"]],[false,{\".swp_social_panel .swp_label\":false},[\"display:block\",\"margin-top:13px\",\"position:absolute\",\"text-transform:uppercase\"]],[false,{\".swp_social_panel .swp_label:not(#_#_#_#_#_#_#_)\":false},[\"font-size:9px\",\"text-align:center\"]],[false,{\".swp_social_panel .swp_share\":false},[\"display:block\",\"float:right\",\"float:left\",\"font-size:14px\",\"font-weight:normal\",\"height:30px\",\"line-height:32px\",\"margin:0 0 0 6px\"]],[false,{\".swp_social_panel .swp_share:not(#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\".swp_social_panel .total_shares\":false},[\"border-radius:2px\",\"color:white\",\"cursor:default\",\"display:block\",\"font-size:19px\",\"padding:0 10px\"]],[false,{\".swp_social_panel .total_shares:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\",\"border:none\",\"flex:none\"]],[false,{\".swp_social_panel .total_shares .swp_count\":false},[\"line-height:30px\"]],[false,{\".swp_social_panel .total_shares .swp_label\":false},[\"font-size:10px\",\"vertical-align:middle\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\",\"border:none\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt:before\":false},[\"content:\\\"G\\\"\",\"display:inline-block\",\"font-family:sw-icon-font\",\"margin-top:7px\",\"vertical-align:top\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt.total_sharesalt\":false,\".swp_social_panel .total_shares.total_sharesalt:not(:nth-child(1))\":false},[\"border:none\",\"color:#474b4d\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel .total_shares.total_sharesalt:not(:nth-child(1)):not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\",\"margin-left:0\",\"margin-bottom:10px\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt .swp_count\":false},[\"color:#474b4d\",\"font-size:24px\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt .swp_label\":false},[\"color:#474b4d\",\"letter-spacing:0\",\"min-width:40px\"]],[false,{\".swp_social_panel a .swp_count\":false},[\"font-size:14px\"]],[false,{\".swp_social_panel a .swp_count:not(.swp_hide)\":false},[\"display:inline-block\",\"line-height:32px\",\"margin:0\",\"padding:0 5px\",\"flex:1\"]],[false,{\".swp_social_panel a .swp_count.swp_hide\":false},[\"margin:0 auto\",\"width:auto\"]],[false,{\".swp_social_panel:not(.nc_floater):not(.swp_social_panelSide):not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".swp_social_panel:not(.nc_floater):not(.swp_social_panelSide).swp_shift\":false},[\"padding:0 10px\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide)\":false},[\"transition:opacity .2s ease-in-out\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer\":false},[\"flex:1\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer.swp-emphasize\":false},[\"flex:2\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer:nth-child(1)\":false},[\"margin-left:0\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer:nth-last-child(1)\":false},[\"margin-right:0\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt:before\":false},[\"content:\\\"G\\\"\",\"display:inline-block\",\"font-family:sw-icon-font\",\"margin-top:7px\",\"vertical-align:top\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt .swp_count\":false},[\"display:inline-block\",\"line-height:0\",\"margin-left:8px\",\"margin-top:12px\",\"min-width:45px\",\"position:relative\",\"vertical-align:middle\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt:nth-child(1)\":false},[\"margin-left:0\",\"margin-right:15px\",\"padding-left:0\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt:nth-last-child(1)\":false},[\"margin-right:0\",\"padding-right:0\"]],[false,{\".swp_social_panel span:before:not(#_#_#_#_#_#_#_#_)\":false},[\"content:initial\"]],[false,{\".swp_social_panel .iconFiller\":false},[\"font-size:18px\",\"margin:0 auto\",\"display:block\",\"float:left\",\"height:30px\",\"overflow:hidden\",\"transition:width .1s linear\",\"width:30px\"]],[false,{\".swp_social_panel .sw\":false},[\"float:left\",\"height:30px\",\"line-height:32px\",\"margin:1px 5px 0\",\"width:20px\"]],[false,{\".swp_social_panel .sw:not(#_#_#_#_#_#_#_)\":false},[\"text-shadow:none\"]],[false,{\".swp_social_panel.notMobile .nc_tweetContainer:nth-child(1)\":false},[\"margin-left:0\"]],[false,{\".swp_social_panel:hover .total_shares\":false,\".swp_social_panel.swp_full_color .total_shares\":false,\".swp_social_panel.swp_fade .total_shares\":false,\".swp_social_panel.swp_customFull:hover .total_shares\":false},[\"background:#e08a0f\"]],[false,{\".swp_social_panel.swp_leaf .nc_tweetContainer\":false},[\"border-width:1px\"]],[false,{\".swp_social_panel.swp_leaf .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:15px 0\"]],[false,{\".swp_social_panel.swp_pill .nc_tweetContainer\":false},[\"border-width:1px\"]],[false,{\".swp_social_panel.swp_pill .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:50px\"]],[false,{\".swp_social_panel.swp_shift .nc_tweetContainer:not(.total_shares)\":false},[\"border-width:1px\",\"transform:skew(-25deg)\"]],[false,{\".swp_social_panel.swp_shift .nc_tweetContainer a\":false},[\"transform:skew(25deg)\"]],[false,{\".swp_social_panel.swp_connected:hover .nc_tweetContainer\":false,\".swp_social_panel.swp_connected .nc_tweetContainer\":false,\".swp_social_panel.swp_connected .nc_tweetContainer:hover\":false},[\"border-width:1px\"]],[false,{\".swp_social_panel.swp_connected:hover .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_connected .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_connected .nc_tweetContainer:hover:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\",\"margin:0\"]],[false,{\".swp_social_panel.mobile .iconFiller ~ .swp_count\":false,\".sw-content-locator\":false},[\"display:none\"]],[true,{\"div[class*=custom_color][class^=_wrapper]\":true},[\"display:none\"]],[false,{\"pre.swp_debug_data\":false},[\"white-space:pre-wrap\",\"padding:0 25px\",\"max-width:1000px\",\"margin:0 auto 50px auto\",\"border:3px solid #666\"]],[false,{\".wp-editor-container .swp_twitter:before\":false},[\"color:#429cd6\"]],[false,{\".swp_powered_by\":false},[\"font-family:helvetica,arial,sans-serif\",\"color:black\"]],[false,{\".swp_powered_by span\":false},[\"clear:both\",\"width:100%\",\"display:block\",\"margin:36px 0px -30px 0\"]],[false,{\".swp_powered_by a\":false},[\"color:black\",\"text-decoration:none\"]],[false,{\".swp_powered_by amp-img\":false,\".swp_powered_by amp-anim\":false},[\"max-height:40px\",\"margin-top:30px\"]],[false,{\".sw\":false},[\"display:inline-block\",\"font-size:inherit\",\"-moz-osx-font-smoothing:grayscale\",\"-webkit-font-smoothing:antialiased\",\"font-style:normal\",\"font-weight:normal\",\"text-rendering:auto\",\"transform:translate(0,0)\",\"transform:translate(0,0)\",\"-webkit-transform:translate(0,0)\",\"-moz-transform:translate(0,0)\",\"-ms-transform:translate(0,0)\",\"-o-transform:translate(0,0)\"]],[false,{\".sw:not(#_#_#_#_#_#_#_)\":false},[\"font-family:sw-icon-font\",\"text-transform:none\"]],[false,{\".sw:before:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\"i.swp_blogger_icon:before\":false},[\"content:\\\"c\\\"\"]],[false,{\"i.swp_buffer_icon:before\":false},[\"content:\\\"d\\\"\"]],[false,{\"i.swp_ello_icon:before\":false},[\"content:\\\"h\\\"\"]],[false,{\"i.swp_email_icon:before\":false},[\"content:\\\"i\\\"\"]],[false,{\"i.swp_evernote_icon:before\":false},[\"content:\\\"j\\\"\"]],[false,{\"i.swp_facebook_icon:before\":false},[\"content:\\\"k\\\"\"]],[false,{\"i.swp_flickr_icon:before\":false},[\"content:\\\"l\\\"\"]],[false,{\"i.swp_flipboard_icon:before\":false},[\"content:\\\"m\\\"\"]],[false,{\"i.swp_hacker_news_icon:before\":false},[\"content:\\\"o\\\"\"]],[false,{\"i.swp_instagram_icon:before\":false},[\"content:\\\"q\\\"\"]],[false,{\"i.swp_linkedin_icon:before\":false},[\"content:\\\"s\\\"\"]],[false,{\"i.swp_medium_icon:before\":false},[\"content:\\\"u\\\"\"]],[false,{\"i.swp_mix_icon:before\":false},[\"content:\\\"w\\\"\"]],[false,{\"i.swp_more_icon:before\":false},[\"content:\\\"B\\\"\"]],[false,{\"i.swp_parler_icon:before\":false},[\"content:\\\"0\\\"\"]],[false,{\"i.swp_periscope_icon:before\":false},[\"content:\\\"y\\\"\"]],[false,{\"i.swp_pinterest_icon:before\":false},[\"content:\\\"A\\\"\"]],[false,{\"i.swp_pin_icon:before\":false},[\"content:\\\"z\\\"\"]],[false,{\"i.swp_pocket_icon:before\":false},[\"content:\\\"C\\\"\"]],[false,{\"i.swp_print_icon:before\":false},[\"content:\\\"D\\\"\"]],[false,{\"i.swp_reddit_icon:before\":false},[\"content:\\\"E\\\"\"]],[false,{\"i.swp_share_icon:before\":false},[\"content:\\\"G\\\"\"]],[false,{\"i.swp_social-warfare_icon:before\":false},[\"content:\\\"K\\\"\"]],[false,{\"i.swp_snapchat_icon:before\":false},[\"content:\\\"J\\\"\"]],[false,{\"i.swp_telegram_icon:before\":false},[\"content:\\\"L\\\"\"]],[false,{\"i.swp_tumblr_icon:before\":false},[\"content:\\\"M\\\"\"]],[false,{\"i.swp_twitter_icon:before\":false},[\"content:\\\"N\\\"\"]],[false,{\"i.swp_viber_icon:before\":false},[\"content:\\\"O\\\"\"]],[false,{\"i.swp_vimeo_icon:before\":false},[\"content:\\\"P\\\"\"]],[false,{\"i.swp_vk_icon:before\":false},[\"content:\\\"R\\\"\"]],[false,{\"i.swp_warfare-plugins_icon:before\":false},[\"content:\\\"Z\\\"\"]],[false,{\"i.swp_whatsapp_icon:before\":false},[\"content:\\\"T\\\"\"]],[false,{\"i.swp_xing_icon:before\":false},[\"content:\\\"V\\\"\"]],[false,{\"i.swp_yummly_icon:before\":false},[\"content:\\\"Y\\\"\"]],[false,{\".sw-social-warfare:before\":false},[\"content:\\\"K\\\"\"]],[false,{\".wp-editor-container .sw:before\":false},[\"font-size:18px\",\"line-height:22px\"]],[false,{\".wp-editor-container .sw-social-warfare:before\":false,\".mce-ico.sw-social-warfare:before\":false,\".mce-ico.sw-social-warfare\":false},[\"color:#ee464f\"]],[false,{\".mce-container .sw-social-warfare\":false},[\"color:#ee464f\",\"font-size:20px\",\"margin-right:15px\",\"vertical-align:middle\"]],[false,{\".swp_social_panelSide\":false},[\"transition:all .2s linear\",\"flex-direction:column\",\"height:auto\",\"overflow:visible\",\"z-index:9998\",\"padding:0\"]],[false,{\".swp_social_panelSide:not(#_#_#_#_#_#_#_)\":false},[\"margin:10px 5px\"]],[false,{\".swp_social_panelSide.slide\":false,\".swp_social_panelSide.fade\":false},[\"transition:all .2s linear\",\"position:fixed\"]],[false,{\".swp_social_panelSide.fade\":false},[\"display:none\"]],[false,{\".swp_social_panelSide.fade .swp_float_left\":false},[\"left:5px\"]],[false,{\".swp_social_panelSide.fade .swp_float_right\":false},[\"right:5px\"]],[false,{\".swp_social_panelSide.hideCounts a\":false},[\"text-align:center\"]],[false,{\".swp_social_panelSide.hideCounts .iconFiller\":false},[\"float:none\",\"text-align:left\"]],[false,{\".swp_social_panelSide[class*=swp_side]\":false},[\"height:auto\",\"display:flex\",\"position:fixed\",\"padding:30px 0\"]],[false,{\".swp_social_panelSide.swp_float_right\":false},[\"align-content:flex-end\"]],[false,{\".swp_social_panelSide.swp_side_top\":false},[\"top:15px\"]],[false,{\".swp_social_panelSide.swp_side_bottom\":false},[\"bottom:15px\"]],[false,{\".swp_social_panelSide.swp_default .nc_tweetContainer .sw\":false},[\"line-height:32px\"]],[false,{\".swp_social_panelSide.swp_default .nc_tweetContainer .swp_share\":false},[\"line-height:32px\"]],[false,{\".swp_social_panelSide span.swp_label\":false},[\"margin-top:0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer\":false},[\"transition:all .1s linear\",\"border-radius:3px\",\"clear:both\",\"display:block\",\"font-family:Lato,sans-serif\",\"height:32px\",\"overflow:hidden\",\"padding:0\",\"width:90px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"margin:3px 0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares\":false},[\"background:rgba(0,0,0,0)\",\"font-weight:800\",\"height:55px\",\"margin:0\",\"padding:0\",\"text-align:center\",\"width:90px\",\"order:-100\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares:not(#_#_#_#_#_#_#_)\":false},[\"border:0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares .swp_count\":false},[\"color:#444\",\"display:block\",\"font-family:Lato,sans-serif\",\"height:28px\",\"text-align:center\",\"width:100%\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares .swp_label\":false},[\"color:#444\",\"display:block\",\"font-family:Lato,sans-serif\",\"font-size:50%\",\"position:relative\",\"text-align:center\",\"width:100%\"]],[false,{\".swp_social_panelSide .nc_tweetContainer:not(.total_shares)\":false},[\"line-height:34px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer:hover\":false,\".swp_social_panelSide .nc_tweetContainer:hover .iconFiller\":false,\".swp_social_panelSide .nc_tweetContainer:hover .swp_count\":false},[\"transition:all .1s linear\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .iconFiller\":false},[\"transition:all .1s linear\",\"display:inline-block\",\"height:40px\",\"margin:0 6px\",\"padding:0\",\"vertical-align:middle\",\"width:21px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .swp_count\":false},[\"transition:all .1s linear\",\"display:inline-block\",\"font-size:14px\",\"height:32px\",\"line-height:16px\",\"margin:0\",\"padding:0\",\"overflow:hidden\",\"text-align:right\",\"vertical-align:top\",\"width:0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer a\":false},[\"transition:all .1s linear\",\"cursor:pointer\",\"display:block\",\"font-weight:500\",\"height:36px\",\"margin:0\",\"padding:0\",\"text-decoration:none\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .sw\":false,\".swp_social_panelSide .nc_tweetContainer .swp_share\":false},[\"float:left\",\"line-height:34px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .swp_share\":false},[\"font-size:13px\",\"margin:0\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer\":false},[\"margin-bottom:5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer a\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer a\":false},[\"width:67.5px\",\"position:relative\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer a:not(#_#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer a:not(#_#_#_#_#_#_#_#_)\":false},[\"height:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .total_shares\":false,\".swp_social_panelSide.swp_circles .total_shares\":false},[\"padding:0\"]],[false,{\".swp_social_panelSide.swp_boxed .total_shares:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .total_shares:not(#_#_#_#_#_#_#_)\":false},[\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer span.iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer span.iconFiller\":false},[\"height:40px\",\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer i.sw\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer i.sw\":false},[\"font-size:27px\",\"height:40px\",\"margin:0\",\"padding-top:10px\",\"text-align:center\",\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_share\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) span.swp_share\":false},[\"height:35px\",\"opacity:0\",\"position:absolute\",\"bottom:0\",\"left:0\",\"text-align:center\",\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_count\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) span.swp_count\":false},[\"height:35px\",\"margin:0\",\"padding:0\",\"position:absolute\",\"bottom:0\",\"left:0\",\"text-align:center\",\"transition:padding .1s linear\",\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_hide span.swp_share\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover span.swp_share:not(.swp_hide)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_hide span.swp_share\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):hover span.swp_share:not(.swp_hide)\":false},[\"opacity:1\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover span.swp_count:not(.swp_hide)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):hover span.swp_count:not(.swp_hide)\":false},[\"opacity:0\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_count\":false},[\"padding:0 8px\",\"width:48px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide\":false},[\"padding:0\",\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide .iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide .iconFiller\":false},[\"display:block\",\"float:none\",\"margin:0 auto\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover .iconFiller\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .spaceManWilly\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):hover .iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .spaceManWilly\":false},[\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_count.swp_hide\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer span.swp_hide .iconFiller\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer span.swp_hide .spaceManWilly\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) span.swp_count.swp_hide\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer span.swp_hide .iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer span.swp_hide .spaceManWilly\":false},[\"height:67.5px\",\"opacity:1\"]],[false,{\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) a:not(#_#_#_#_#_#_#_#_)\":false},[\"border-radius:50%\"]],[false,{\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares) .iconFiller\":false},[\"margin-left:2px\",\"width:30px\"]],[false,{\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares)[data-network]:not(.total_shares):hover span.iconFiller\":false,\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares):not(.total_shares) .spaceManWilly\":false},[\"width:90px\"]],[false,{\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares):hover\":false},[\"width:150px\"]],[false,{\".nc_wrapper\":false},[\"background:white\",\"position:fixed\",\"transition:top .5s bottom .5s\",\"width:100%\",\"z-index:99999\"]],[false,{\".nc_wrapper.bottom\":false},[\"bottom:0\",\"left:0\"]],[false,{\".nc_wrapper.top\":false},[\"top:0\",\"left:0\"]],[false,{\".nc_wrapper .swp_social_panel:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:10px\",\"margin-top:10px\"]],[false,{\".nc_floater\":false},[\"margin:10px 0\",\"position:relative\"]],[false,{\".float-position-top-left\":false},[\"transform-origin:top left\"]],[false,{\".float-position-center-left\":false},[\"transform-origin:center left\"]],[false,{\".float-position-bottom-left\":false},[\"transform-origin:bottom left\"]],[false,{\".float-position-top-right\":false},[\"transform-origin:top right\"]],[false,{\".float-position-center-right\":false},[\"transform-origin:center right\"]],[false,{\".float-position-bottom-right\":false},[\"transform-origin:bottom right\"]],[false,{\".sw-tweet-clear\":false},[\"zoom:1\"]],[false,{\".sw-tweet-clear:after\":false},[\"clear:both\",\"content:\\\".\\\"\",\"display:block\",\"height:0\",\"visibility:hidden\"]],[false,{\"a.swp_CTT\":false},[\"cursor:pointer\"]],[false,{\"a.swp_CTT:not(#_#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\"a.swp_CTT .sw-click-to-tweet\":false},[\"display:block\",\"margin:15px 0\",\"padding:15px 30px\",\"position:relative\"]],[false,{\"a.swp_CTT .sw-click-to-tweet:after\":false},[\"clear:both\",\"content:\\\".\\\"\",\"display:block\",\"height:0\",\"line-height:0\",\"visibility:hidden\"]],[false,{\"a.swp_CTT .sw-click-to-tweet .sw-ctt-text\":false},[\"margin:0 0 10px\",\"margin:0\",\"padding:0\",\"padding:0\",\"position:relative\",\"position:relative\",\"word-wrap:break-word\",\"display:block\",\"font-size:24px\",\"font-weight:500\",\"line-height:140%\",\"text-decoration:none\",\"text-transform:none\"]],[false,{\"a.swp_CTT .sw-click-to-tweet .sw-ctt-btn\":false},[\"display:block\",\"float:right\",\"font-family:\\\"Helvetica Neue\\\",Helvetica,Arial,sans-serif\",\"font-size:12px\",\"font-weight:bold\",\"line-height:100%\",\"margin:10px 0 0\",\"padding:3px 5px 3px 3px\",\"position:relative\",\"text-decoration:none\",\"text-transform:uppercase\"]],[false,{\"a.swp_CTT .sw-click-to-tweet i.swp_twitter_icon\":false},[\"float:right\",\"font-size:21px\",\"margin-top:2px\",\"text-transform:none\"]],[false,{\"a.swp_CTT .sw-click-to-tweet i.swp_twitter_icon:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-left:15px\"]],[false,{\"a.swp_CTT.style1 .sw-click-to-tweet\":false},[\"background-color:#fff\",\"border:1px solid #ddd\",\"border-radius:4px\"]],[false,{\"a.swp_CTT.style1 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#1da1f2\"]],[false,{\"a.swp_CTT.style1 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style1 .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#999\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style1:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style1:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#666\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style2 .sw-click-to-tweet\":false},[\"background-color:#fff\",\"border:4px double #ddd\",\"border-radius:0\"]],[false,{\"a.swp_CTT.style2 .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#1da1f2\"]],[false,{\"a.swp_CTT.style2 .sw-click-to-tweet .sw-ctt-text\":false},[\"color:#666\",\"font-style:italic\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style2:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style2:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#666\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style3 .sw-click-to-tweet\":false},[\"background-color:#1da1f2\",\"border:none\",\"border-left:10px solid #15202b\",\"border-radius:0\",\"padding-right:20px\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style3 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style3 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style3 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style3 .sw-click-to-tweet .sw-ctt-text\":false},[\"font-style:italic\"]],[false,{\"a.swp_CTT.style3:hover .sw-click-to-tweet\":false},[\"border-left:10px solid #15202b\",\"padding-right:20px\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style3:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style3:hover .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style3:hover .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style4 .sw-click-to-tweet\":false},[\"background-color:#333\",\"border-left:10px solid #c33\",\"border-radius:0\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style4 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style4 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style4 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style4:hover .sw-click-to-tweet\":false},[\"border-left:10px solid #3c87b2\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style4:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style4:hover .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style4:hover .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style5 .sw-click-to-tweet\":false},[\"background-color:#30394f\",\"border-left:10px solid #d34250\",\"border-radius:0\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style5 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style5 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style5 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style5:hover .sw-click-to-tweet\":false},[\"background-color:#d34250\",\"border-left:10px solid #30394f\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style5:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style5:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style6 .sw-click-to-tweet\":false},[\"background-color:#eee\",\"border-left:10px solid #d34250\",\"border-radius:0\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style6 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style6 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style6 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#30394f\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style6:hover .sw-click-to-tweet\":false},[\"background-color:#ced3dc\",\"border-left:10px solid #d34250\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style6:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style6:hover .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style6:hover .sw-click-to-tweet i.swp_twitter\":false},[\"color:#2a2d34\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style7 .sw-click-to-tweet\":false},[\"transition:all .2s linear\",\"background:#f9f9f9\",\"color:#1da1f2\",\"border-radius:10px\",\"transform:skewX(-15deg)\",\"border:7px dashed #e5e5e5\"]],[false,{\"a.swp_CTT.style7 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style7 .sw-click-to-tweet .sw-ctt-btn\":false},[\"transition:all .2s linear\",\"transform:skewX(15deg)\"]],[false,{\"a.swp_CTT.style7:hover .sw-click-to-tweet\":false},[\"transition:all .2s linear\",\"background:#fff\",\"border-color:#ddd\",\"transform:skewX(-10deg) scale(1.02)\"]],[false,{\"a.swp_CTT.style7:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style7:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"transition:all .2s linear\",\"transform:skewX(10deg)\"]],[false,{\".swfw-follow-container\":false},[\"display:flex\",\"position:relative\"]],[false,{\".swfw-follow-container .swfw-container-message\":false},[\"font-weight:bold\"]],[false,{\".swfw-follow-container.swfw_square_container\":false},[\"flex-flow:row wrap\"]],[false,{\".swfw-follow-container.swfw_buttons_container\":false},[\"flex-flow:column nowrap\",\"justify-content:flex-start\",\"align-items:space-between\"]],[false,{\".swfw-follow-container.swfw_block_container\":false},[\"flex-flow:column nowrap\",\"justify-content:flex-start\",\"align-items:flex-start\"]],[false,{\".swfw-follow-container a\":false},[\"text-decoration:none\"]],[false,{\"div.swp-blogger\":false},[\"background:#ff5722\",\"border-color:#ee3900\"]],[false,{\"div.swp-blogger a\":false},[\"color:#ff5722\"]],[false,{\"div.swp-blogger a:hover\":false},[\"background:#ee3900\",\"color:#fff\"]],[false,{\"div.swp-buffer\":false},[\"background:#323b43\",\"border-color:#1c2126\"]],[false,{\"div.swp-buffer a\":false},[\"color:#323b43\"]],[false,{\"div.swp-buffer a:hover\":false},[\"background:#1c2126\",\"color:#fff\"]],[false,{\"div.swp-ello\":false},[\"background:#000\",\"border-color:#000\"]],[false,{\"div.swp-ello a\":false},[\"color:#000\"]],[false,{\"div.swp-ello a:hover\":false},[\"background:#000\",\"color:#fff\"]],[false,{\"div.swp-email\":false},[\"background:#6bcce9\",\"border-color:#3fbde2\"]],[false,{\"div.swp-email a\":false},[\"color:#6bcce9\"]],[false,{\"div.swp-email a:hover\":false},[\"background:#3fbde2\",\"color:#fff\"]],[false,{\"div.swp-evernote\":false},[\"background:#2dbe60\",\"border-color:#23954b\"]],[false,{\"div.swp-evernote a\":false},[\"color:#2dbe60\"]],[false,{\"div.swp-evernote a:hover\":false},[\"background:#23954b\",\"color:#fff\"]],[false,{\"div.swp-facebook\":false},[\"background:#1877f2\",\"border-color:#0b5fcc\"]],[false,{\"div.swp-facebook a\":false},[\"color:#1877f2\"]],[false,{\"div.swp-facebook a:hover\":false},[\"background:#0b5fcc\",\"color:#fff\"]],[false,{\"div.swp-flickr\":false},[\"background:#ff0084\",\"border-color:#cc006a\"]],[false,{\"div.swp-flickr a\":false},[\"color:#ff0084\"]],[false,{\"div.swp-flickr a:hover\":false},[\"background:#cc006a\",\"color:#fff\"]],[false,{\"div.swp-flipboard\":false},[\"background:#bf2626\",\"border-color:#941e1e\"]],[false,{\"div.swp-flipboard a\":false},[\"color:#bf2626\"]],[false,{\"div.swp-flipboard a:hover\":false},[\"background:#941e1e\",\"color:#fff\"]],[false,{\"div.swp-hacker_news\":false},[\"background:#d85623\",\"border-color:#ac451c\"]],[false,{\"div.swp-hacker_news a\":false},[\"color:#d85623\"]],[false,{\"div.swp-hacker_news a:hover\":false},[\"background:#ac451c\",\"color:#fff\"]],[false,{\"div.swp-instagram\":false},[\"background:#ea2454\",\"border-color:#c8133f\"]],[false,{\"div.swp-instagram a\":false},[\"color:#ea2454\"]],[false,{\"div.swp-instagram a:hover\":false},[\"background:#c8133f\",\"color:#fff\"]],[false,{\"div.swp-linkedin\":false},[\"background:#2767b1\",\"border-color:#1e4f87\"]],[false,{\"div.swp-linkedin a\":false},[\"color:#2767b1\"]],[false,{\"div.swp-linkedin a:hover\":false},[\"background:#1e4f87\",\"color:#fff\"]],[false,{\"div.swp-medium\":false},[\"background:#00ab6c\",\"border-color:#00784c\"]],[false,{\"div.swp-medium a\":false},[\"color:#00ab6c\"]],[false,{\"div.swp-medium a:hover\":false},[\"background:#00784c\",\"color:#fff\"]],[false,{\"div.swp-mix\":false},[\"background:#f4812c\",\"border-color:#e1660c\"]],[false,{\"div.swp-mix a\":false},[\"color:#f4812c\"]],[false,{\"div.swp-mix a:hover\":false},[\"background:#e1660c\",\"color:#fff\"]],[false,{\"div.swp-more\":false},[\"background:#ee464f\",\"border-color:#ea1723\"]],[false,{\"div.swp-more a\":false},[\"color:#ee464f\"]],[false,{\"div.swp-more a:hover\":false},[\"background:#ea1723\",\"color:#fff\"]],[false,{\"div.swp-parler\":false},[\"background:#be1e2c\",\"border-color:#921722\"]],[false,{\"div.swp-parler a\":false},[\"color:#be1e2c\"]],[false,{\"div.swp-parler a:hover\":false},[\"background:#921722\",\"color:#fff\"]],[false,{\"div.swp-periscope\":false},[\"background:#3aa4c6\",\"border-color:#2e849f\"]],[false,{\"div.swp-periscope a\":false},[\"color:#3aa4c6\"]],[false,{\"div.swp-periscope a:hover\":false},[\"background:#2e849f\",\"color:#fff\"]],[false,{\"div.swp-pinterest\":false},[\"background:#e60023\",\"border-color:#b3001b\"]],[false,{\"div.swp-pinterest a\":false},[\"color:#e60023\"]],[false,{\"div.swp-pinterest a:hover\":false},[\"background:#b3001b\",\"color:#fff\"]],[false,{\"div.swp-pocket\":false},[\"background:#ef4056\",\"border-color:#e9132e\"]],[false,{\"div.swp-pocket a\":false},[\"color:#ef4056\"]],[false,{\"div.swp-pocket a:hover\":false},[\"background:#e9132e\",\"color:#fff\"]],[false,{\"div.swp-print\":false},[\"background:#777\",\"border-color:#5e5e5e\"]],[false,{\"div.swp-print a\":false},[\"color:#777\"]],[false,{\"div.swp-print a:hover\":false},[\"background:#5e5e5e\",\"color:#fff\"]],[false,{\"div.swp-reddit\":false},[\"background:#f04b23\",\"border-color:#d2340e\"]],[false,{\"div.swp-reddit a\":false},[\"color:#f04b23\"]],[false,{\"div.swp-reddit a:hover\":false},[\"background:#d2340e\",\"color:#fff\"]],[false,{\"div.swp-snapchat\":false},[\"background:#fffc00\",\"border-color:#ccca00\"]],[false,{\"div.swp-snapchat a\":false},[\"color:#fffc00\"]],[false,{\"div.swp-snapchat a:hover\":false},[\"background:#ccca00\",\"color:#fff\"]],[false,{\"div.swp-telegram\":false},[\"background:#08c\",\"border-color:#069\"]],[false,{\"div.swp-telegram a\":false},[\"color:#08c\"]],[false,{\"div.swp-telegram a:hover\":false},[\"background:#069\",\"color:#fff\"]],[false,{\"div.swp-twitter\":false},[\"background:#1da1f2\",\"border-color:#0c85d0\"]],[false,{\"div.swp-twitter a\":false},[\"color:#1da1f2\"]],[false,{\"div.swp-twitter a:hover\":false},[\"background:#0c85d0\",\"color:#fff\"]],[false,{\"div.swp-tumblr\":false},[\"background:#39475d\",\"border-color:#262f3d\"]],[false,{\"div.swp-tumblr a\":false},[\"color:#39475d\"]],[false,{\"div.swp-tumblr a:hover\":false},[\"background:#262f3d\",\"color:#fff\"]],[false,{\"div.swp-vimeo\":false},[\"background:#162221\",\"border-color:#020303\"]],[false,{\"div.swp-vimeo a\":false},[\"color:#162221\"]],[false,{\"div.swp-vimeo a:hover\":false},[\"background:#020303\",\"color:#fff\"]],[false,{\"div.swp-viber\":false},[\"background:#8f5db7\",\"border-color:#75459c\"]],[false,{\"div.swp-viber a\":false},[\"color:#8f5db7\"]],[false,{\"div.swp-viber a:hover\":false},[\"background:#75459c\",\"color:#fff\"]],[false,{\"div.swp-vk\":false},[\"background:#4a76a8\",\"border-color:#3a5d85\"]],[false,{\"div.swp-vk a\":false},[\"color:#4a76a8\"]],[false,{\"div.swp-vk a:hover\":false},[\"background:#3a5d85\",\"color:#fff\"]],[false,{\"div.swp-whatsapp\":false},[\"background:#71c169\",\"border-color:#52af48\"]],[false,{\"div.swp-whatsapp a\":false},[\"color:#71c169\"]],[false,{\"div.swp-whatsapp a:hover\":false},[\"background:#52af48\",\"color:#fff\"]],[false,{\"div.swp-xing\":false},[\"background:#026466\",\"border-color:#013334\"]],[false,{\"div.swp-xing a\":false},[\"color:#026466\"]],[false,{\"div.swp-xing a:hover\":false},[\"background:#013334\",\"color:#fff\"]],[false,{\"div.swp-yummly\":false},[\"background:#e26426\",\"border-color:#bc4f19\"]],[false,{\"div.swp-yummly a\":false},[\"color:#e26426\"]],[false,{\"div.swp-yummly a:hover\":false},[\"background:#bc4f19\",\"color:#fff\"]],[false,{\".swfw-follow-button\":false,\".swfw_square_button\":false,\".swfw_buttons_button\":false,\".swfw_block_button\":false,\".swfw-follow-button.swfw_leaf_button\":false,\".swfw-follow-button.swfw_pill_button\":false,\".swfw-follow-button.swfw_shift_button\":false},[\"align-items:center\",\"border-radius:8px\",\"display:flex\",\"color:white\",\"font-family:\\\"Helvetica\\\",sans-serif\",\"font-size:initial\",\"justify-content:space-between\",\"line-height:1\",\"margin-bottom:10px\",\"padding:15px 5%\",\"width:90%\"]],[false,{\".swfw-follow-button.swp-snapchat\":false,\".swp-snapchat.swfw_square_button\":false,\".swp-snapchat.swfw_buttons_button\":false,\".swp-snapchat.swfw_block_button\":false,\".swfw-follow-button.swp-snapchat a\":false,\".swp-snapchat.swfw_square_button a\":false,\".swp-snapchat.swfw_buttons_button a\":false,\".swp-snapchat.swfw_block_button a\":false},[\"color:black\"]],[false,{\".swfw-follow-button a\":false,\".swfw_square_button a\":false,\".swfw_buttons_button a\":false,\".swfw_block_button a\":false,\".swfw-follow-button.swfw_leaf_button a\":false,\".swfw-follow-button.swfw_pill_button a\":false,\".swfw-follow-button.swfw_shift_button a\":false},[\"background:#fff\",\"border-radius:4px\",\"transition:all .2s ease-in-out\"]],[false,{\".swfw-follow-button a :hover\":false,\".swfw_square_button a :hover\":false,\".swfw_buttons_button a :hover\":false,\".swfw_block_button a :hover\":false},[\"color:white\"]],[false,{\".swfw-follow-button a :hover.swp-snapchat\":false,\".swfw_square_button a :hover.swp-snapchat\":false,\".swfw_buttons_button a :hover.swp-snapchat\":false,\".swfw_block_button a :hover.swp-snapchat\":false},[\"color:black\"]],[false,{\".swfw-follow-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_square_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_block_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_leaf_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_pill_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_shift_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw-follow-button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw-follow-button .swfw-count:not(#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-count:not(#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-count:not(#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-count:not(#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\".swfw-follow-button .swfw-network-icon i\":false,\".swfw_square_button .swfw-network-icon i\":false,\".swfw_buttons_button .swfw-network-icon i\":false,\".swfw_block_button .swfw-network-icon i\":false},[\"width:32px\",\"height:32px\",\"border-radius:100px\",\"font-size:24px\",\"line-height:32px\"]],[false,{\".swfw-follow-button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\".swfw_square_button\":false},[\"width:60px\",\"height:60px\",\"position:relative\",\"display:flex\",\"flex-flow:column nowrap\",\"align-items:center\",\"text-align:center\",\"margin:5px\",\"padding:0\",\"justify-content:center\",\"border-radius:4px\"]],[false,{\".swfw_square_button .swfw-network-icon\":false},[\"margin-top:-12px\"]],[false,{\".swfw_square_button .swfw-text\":false},[\"width:100%\"]],[false,{\".swfw_square_button .swfw-cta\":false,\".swfw_square_button .swfw-count\":false},[\"display:block\",\"width:100%\",\"position:absolute\"]],[false,{\".swfw_square_button .swfw-count\":false},[\"opacity:1\",\"transition:opacity 120ms 0\",\"font-size:12px\"]],[false,{\".swfw_square_button .swfw-cta\":false},[\"opacity:0\",\"transition:opacity 120ms 0\",\"font-size:12px\"]],[false,{\".swfw_square_button:hover .swfw-count\":false},[\"opacity:0\",\"transition:opacity 120ms 120ms\"]],[false,{\".swfw_square_button:hover .swfw-cta\":false},[\"opacity:1\",\"transition:opacity 120ms 120ms\"]],[false,{\".swfw_buttons_button\":false},[\"display:flex\",\"flex-flow:row nowrap\",\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\",\"margin:10px 5px\",\"border-radius:4px\",\"padding:5px 15px\",\"color:white\"]],[false,{\".swfw_buttons_button .swfw-network-icon\":false},[\"padding:0\",\"font-size:32px\"]],[false,{\".swfw_buttons_button .swfw-text\":false},[\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\",\"margin:0 10px\",\"transition:margin 300ms\",\"display:flex\",\"justify-content:center\",\"line-height:32px\",\"color:white\"]],[false,{\".swfw_buttons_button .swfw-text .swfw-cta\":false,\".swfw_buttons_button .swfw-text .swfw-count\":false},[\"display:inline\",\"position:relative\",\"transition:all 300ms\"]],[false,{\".swfw_buttons_button .swfw-text .swfw-cta\":false},[\"width:0\",\"overflow-x:hidden\",\"position:absolute\",\"color:transparent\",\"margin-right:0\",\"font-weight:normal\"]],[false,{\".swfw_buttons_button .swfw-text:hover .swfw-cta\":false},[\"color:white\"]],[false,{\".swfw_buttons_button.swp-snapchat .swfw-text\":false},[\"color:black\"]],[false,{\".swfw_buttons_button.swp-snapchat .swfw-text:hover .swfw-cta\":false},[\"color:black\"]],[false,{\".swfw_buttons_button:hover .swfw-text\":false},[\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\"]],[false,{\".swfw_buttons_button:hover .swfw-text .swfw-cta\":false},[\"width:-moz-min-content\",\"width:-webkit-min-content\",\"width:min-content\",\"overflow-x:visible\",\"position:relative\",\"margin-right:10px\",\"color:white\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_pill_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_shift_button .swfw-network-icon\":false},[\"margin-left:10px\",\"flex:1\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-text\":false,\".swfw-follow-button.swfw_pill_button .swfw-text\":false,\".swfw-follow-button.swfw_shift_button .swfw-text\":false},[\"flex:2\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button\":false},[\"flex:1\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a\":false},[\"padding:none\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a div\":false},[\"padding:10px 30px\",\"background:white\",\"border-radius:2px\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a:hover div\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a:hover div\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a:hover div\":false},[\"background:rgba(33,33,33,.3)\"]],[false,{\".swfw_block_button\":false,\".swfw-follow-button.swfw_leaf_button\":false,\".swfw-follow-button.swfw_pill_button\":false,\".swfw-follow-button.swfw_shift_button\":false},[\"flex-flow:row nowrap\",\"align-items:center\",\"justify-content:space-between\",\"cursor:initial\",\"position:relative\"]],[false,{\".swfw_block_button>*\":false,\".swfw-follow-button.swfw_leaf_button>*\":false,\".swfw-follow-button.swfw_pill_button>*\":false,\".swfw-follow-button.swfw_shift_button>*\":false},[\"width:-moz-min-content\",\"width:-webkit-min-content\",\"width:min-content\"]],[false,{\".swfw_block_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_leaf_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_pill_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_shift_button .swfw-network-icon\":false},[\"margin-left:10px\"]],[false,{\".swfw_block_button .swfw-text\":false,\".swfw-follow-button.swfw_leaf_button .swfw-text\":false,\".swfw-follow-button.swfw_pill_button .swfw-text\":false,\".swfw-follow-button.swfw_shift_button .swfw-text\":false},[\"font-size:12px\",\"line-height:24px\",\"left:calc(10px + 60px)\",\"color:white\",\"text-align:center\"]],[false,{\".swfw_block_button .swfw-text .swfw-count\":false,\".swfw-follow-button.swfw_leaf_button .swfw-text .swfw-count\":false,\".swfw-follow-button.swfw_pill_button .swfw-text .swfw-count\":false,\".swfw-follow-button.swfw_shift_button .swfw-text .swfw-count\":false},[\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\",\"font-size:15px\"]],[false,{\".swfw_block_button.swp-snapchat .swfw-text\":false,\".swp-snapchat.swfw-follow-button.swfw_leaf_button .swfw-text\":false,\".swp-snapchat.swfw-follow-button.swfw_pill_button .swfw-text\":false,\".swp-snapchat.swfw-follow-button.swfw_shift_button .swfw-text\":false},[\"color:black\"]],[false,{\".swfw_block_button .swfw-cta\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta\":false},[\"border-radius:3px\"]],[false,{\".swfw_block_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button\":false},[\"font-size:24px\",\"padding:5px\",\"line-height:24px\",\"border-radius:4px\",\"text-align:center\",\"right:0\"]],[false,{\".swfw_block_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\".swfw_block_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a div\":false},[\"font-size:14px\",\"min-width:100px\",\"border-radius:3px\",\"background:white\",\"padding:5px 15px\"]],[false,{\".swfw_block_button .swfw-cta-button a div:hover\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a div:hover\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a div:hover\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a div:hover\":false},[\"transition:opacity 200ms\",\"background:rgba(30,30,30,.3)\",\"cursor:pointer\",\"color:white\"]],[false,{\".swfw_leaf_button.swfw_square_button\":false,\".swfw_leaf_button.swfw_buttons_button\":false,\".swfw_leaf_button.swfw_block_button\":false,\".swfw_leaf_button.swfw-follow-button\":false},[\"border-top-left-radius:21px\",\"border-top-right-radius:3px\",\"border-bottom-left-radius:3px\",\"border-bottom-right-radius:21px\"]],[false,{\".swfw_leaf_button.swfw_square_button .swfw-network-icon\":false,\".swfw_leaf_button.swfw_buttons_button .swfw-network-icon\":false,\".swfw_leaf_button.swfw_block_button .swfw-network-icon\":false,\".swfw_leaf_button.swfw-follow-button .swfw-network-icon\":false},[\"margin-left:10px\"]],[false,{\".swfw_pill_button.swfw_square_button\":false,\".swfw_pill_button.swfw_buttons_button\":false,\".swfw_pill_button.swfw_block_button\":false,\".swfw_pill_button.swfw-follow-button\":false},[\"border-radius:50px\",\"padding:20px\"]],[false,{\".swfw_pill_button.swfw_square_button .swfw-network-icon\":false,\".swfw_pill_button.swfw_buttons_button .swfw-network-icon\":false,\".swfw_pill_button.swfw_block_button .swfw-network-icon\":false,\".swfw_pill_button.swfw-follow-button .swfw-network-icon\":false},[\"margin-left:10px\"]],[false,{\".swfw_pill_button.swfw_square_button .swfw-cta-button a\":false,\".swfw_pill_button.swfw_buttons_button .swfw-cta-button a\":false,\".swfw_pill_button.swfw_block_button .swfw-cta-button a\":false,\".swfw_pill_button.swfw-follow-button .swfw-cta-button a\":false},[\"border-radius:50px\"]],[false,{\".swfw_pill_button.swfw_square_button .swfw-cta-button a div\":false,\".swfw_pill_button.swfw_buttons_button .swfw-cta-button a div\":false,\".swfw_pill_button.swfw_block_button .swfw-cta-button a div\":false,\".swfw_pill_button.swfw-follow-button .swfw-cta-button a div\":false},[\"border-radius:50px\"]],[false,{\".swfw_shift_button.swfw_square_button\":false,\".swfw_shift_button.swfw_buttons_button\":false,\".swfw_shift_button.swfw_block_button\":false,\".swfw_shift_button.swfw-follow-button\":false},[\"transform:skew(-20deg)\",\"-moz-transform:skew(-20deg)\",\"-o-transform:skew(-20deg)\",\"-webkit-transform:skew(-20deg)\"]],[false,{\".swfw_shift_button.swfw_square_button div\":false,\".swfw_shift_button.swfw_buttons_button div\":false,\".swfw_shift_button.swfw_block_button div\":false,\".swfw_shift_button.swfw-follow-button div\":false},[\"transform:skew(20deg)\",\"-moz-transform:skew(20deg)\",\"-o-transform:skew(20deg)\",\"-webkit-transform:skew(20deg)\",\"align-items:center\",\"display:flex\",\"justify-content:space-around\",\"width:100%\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button\":false},[\"transform:skew(0deg)\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a\":false},[\"padding:none\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a:hover\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a:hover\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a:hover\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a:hover\":false},[\"background:rgba(33,33,33,.3)\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a div\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a div\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a div\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a div\":false},[\"background:none\",\"transform:skew(20deg)\",\"padding:10px 30px\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a div:hover\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a div:hover\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a div:hover\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a div:hover\":false},[\"background:none\"]],[false,{\".swfw-revoke-button\":false,\".swfw-authorization-button\":false},[\"width:70%\",\"text-align:center\",\"max-width:200px\"]],[false,{\".swfw-input-field\":false,\".swfw-follow-field\":false},[\"display:flex\",\"flex-flow:row nowrap\",\"justify-content:space-between\",\"align-items:center\",\"height:50px\",\"margin:15px auto\"]],[false,{\".swfw-follow-field.swfw-inactive a\":false},[\"cursor:initial\"]],[false,{\".swfw-follow-field.swfw-active a\":false},[\"cursor:pointer\"]],[false,{\".swfw-follow-field-icon\":false},[\"color:black\",\"width:40px\",\"font-size:40px\",\"line-height:42px\",\"font-weight:bold\",\"transition:all 200ms\",\"border-radius:3px\",\"height:40px\",\"text-align:center\",\"padding:2px\"]],[false,{\".swfw-widget label\":false},[\"font-size:14px\",\"width:100px\"]],[false,{\".swfw-follow-field label\":false},[\"text-align:right\"]],[false,{\".swfw-input-field input\":false,\".swfw-input-field select\":false,\".swfw-follow-field input\":false},[\"padding:10px\",\"width:50%\",\"height:100%\",\"border-radius:4px\"]],[false,{\".swfw-follow-field.swfw-inactive div\":false},[\"background:white\"]],[false,{\".swfw-follow-field.swfw-active div\":false},[\"color:white\"]],[false,{\"a.swp-hover-pin-button\":false},[\"background:#cd2029\",\"border:1px solid #aa1b29\",\"border:0\",\"border-bottom:none\",\"border-radius:3px\",\"box-shadow:none\",\"color:#fff\",\"font-family:Lato,sans-serif\",\"font-size:15px\",\"height:32px\",\"line-height:32px\",\"padding:0 20px\",\"position:absolute\",\"position:absolute\",\"text-decoration:none\",\"text-align:center\",\"transition:opacity .5s\",\"z-index:3200\",\"cursor:pointer\"]],[false,{\"a.swp-hover-pin-button:not(#_#_#_#_#_#_#_#_)\":false},[\"width:120px\"]],[false,{\"a.swp-hover-pin-button::before\":false},[\"content:\\\"A\\\"\",\"color:#fff\",\"float:left\",\"font-family:sw-icon-font\",\"font-size:20px\",\"font-weight:400\",\"line-height:36px\",\"margin-left:-5px\",\"margin-right:10px\"]],[false,{\"a.swp-hover-pin-button:hover::before\":false},[\"content:\\\"z\\\"\"]],[false,{\"a.swp-hover-pin-button:hover\":false,\"a.swp-hover-pin-button:focus\":false},[\"background:#aa1b29\",\"color:#fff\",\"text-decoration:none\"]],[false,{\".swp-pinterest-image-top\":false},[\"margin-bottom:20px\"]],[false,{\".swp-pinterest-image-bottom\":false},[\"margin-top:20px\"]],[false,{\".swp_pop_thumb\":false},[\"border-radius:3px\",\"float:left\",\"height:100px\",\"margin:5px 25px 5px 0\",\"width:100px\"]],[false,{\".swp_popular_post\":false},[\"clear:both\"]],[false,{\".swp_popular_post a.swp_popularity\":false},[\"border:none\",\"display:block\",\"line-height:1.5\",\"margin:20px 0\"]],[false,{\".swp_clearfix:after\":false},[\"clear:both\",\"content:\\\" \\\"\",\"display:block\",\"height:0\",\"visibility:hidden\"]],[false,{\"span.swp_pop_count\":false},[\"display:block\",\"font-size:70%\"]],[false,{\".swp_widget_box\":false},[\"border-radius:3px\"]],[false,{\".swp_hidden_pin_image\":false},[\"height:0\",\"opacity:0\",\"position:absolute\",\"top:0\",\"width:0\",\"z-index:-10\"]],[false,{\".swp-content-locator:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"margin:0\"]],[false,{\".swp-lightbox-wrapper\":false},[\"width:100%\",\"height:100%\",\"position:fixed\",\"top:0\",\"background:#fff\",\"z-index:999999\"]],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner\":false},[\"width:50%\",\"left:25%\",\"position:relative\",\"text-align:center\",\"top:10%\",\"background:#fff\",\"padding:35px\",\"border-radius:10px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner\":false},[\"width:80%\",\"left:10%\"]],[false,\"}\"],[false,\"@media (max-width: 450px){\"],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner\":false},[\"width:90%\",\"left:5%\"]],[false,\"}\"],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner h5\":false},[\"font-family:Lato,sans-serif\",\"font-size:25px\",\"margin-bottom:40px\",\"text-align:center\"]],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner .swp-lightbox-close\":false},[\"font-weight:bold\",\"height:20px\",\"width:20px\",\"cursor:pointer\",\"color:#30394f\",\"text-align:right\",\"transform:rotate(45deg)\",\"display:inline-block\",\"float:right\",\"margin:-30px\",\"font-size:25px\"]],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner .swp-lightbox-close:before\":false},[\"content:\\\"+\\\"\",\"font-family:arial\"]],[false,\"@media print{\"],[false,{\".swp-lightbox-wrapper\":false},[\"display:none\"]],[false,\"}\"],[false,{\".swp-lightbox-wrapper .swp_pinterest_icon.top_icon\":false,\".swp-lightbox-wrapper .swp_share_icon\":false},[\"color:#cd2029\",\"font-size:45px\",\"margin:0\",\"padding:0\",\"line-height:0\"]],[false,{\".swp-lightbox-wrapper .swp_share_icon\":false},[\"color:#000\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .swp-lightbox-inner\":false},[\"width:70%\",\"left:15%\",\"height:80%\",\"overflow-y:auto\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .swp-lightbox-inner h5\":false},[\"margin-bottom:40px\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper\":false},[\"text-align:center\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper\":false},[\"display:inline-block\",\"width:24%\",\"margin-right:1%\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper amp-img\":false,\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper amp-anim\":false},[\"border-radius:3px\",\"max-width:100%\",\"height:auto\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper .swp-hover-pin-button\":false},[\"position:initial\",\"display:block\",\"margin-top:10px\",\"margin-bottom:40px\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper .swp-hover-pin-button:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":8320,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"__EPYT__style-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/styles\\/ytprefs.min.css?ver=14.1.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"style\",\"handle\":\"__EPYT__style\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"__EPYT__style\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"9c3e04efd2df5c19054e5b96b851efb8\",\"parse_time\":0.0915369987487793,\"shake_time\":0.00012302398681640625,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".epyt-debug\":false},[\"cursor:pointer\",\"text-align:left\",\"background-color:#ddd\",\"color:#000\"]],[false,{\"amp-iframe.__youtube_prefs__\":false},[\"border-width:0\"]],[false,{\".epyt-gallery\":false},[\"text-align:center\"]],[false,{\".epyt-gallery .epyt-figure\":false},[\"margin-inline:0\",\"margin-block:0\"]],[false,{\".epyt-gallery amp-iframe\":false},[\"margin-bottom:0\"]],[false,{\".epyt-gallery.epyt-lb amp-iframe\":false},[\"display:none\"]],[false,{\".epyt-gallery.epyt-lb amp-iframe:not(#_#_#_#_#_#_#_#_)\":false},[\"height:0\"]],[false,{\".epyt-gallery-list\":false},[\"margin:0 -8px 0 -8px\",\"position:relative\",\"transition:opacity ease-out .3s\",\"display:block\"]],[false,{\".epyt-gallery-list .epyt-gallery-thumb\":false},[\"box-sizing:border-box\"]],[false,{\".epyt-gallery-list p\":false},[\"display:none\"]],[false,{\".epyt-gallery-clear\":false},[\"clear:both\"]],[false,{\".epyt-gallery-list.epyt-loading\":false},[\"opacity:.5\",\"transition:opacity ease-out .3s\"]],[false,{\".epyt-gallery-thumb\":false},[\"position:relative\",\"box-sizing:border-box\",\"overflow-y:hidden\",\"cursor:pointer\",\"opacity:1\",\"float:left\",\"padding:0 8px 10px 8px\",\"height:auto\"]],[false,{\".epyt-gallery-thumb:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".epyt-gallery-thumb.hover\":false},[\"position:relative\",\"opacity:1\",\"transition:opacity ease-out .3s\",\"height:auto\"]],[false,{\".epyt-gallery-img-box\":false},[\"width:100%\"]],[false,{\".epyt-gallery-img\":false},[\"height:0\",\"width:100%\",\"position:relative\"]],[false,{\".epyt-gallery-img:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:56.25%\",\"overflow:hidden\",\"background-size:cover\",\"background-position:center\"]],[false,{\".epyt-gallery-playhover\":false},[\"opacity:0\",\"position:absolute\",\"top:-10px\",\"left:0\",\"width:100%\",\"height:100%\",\"vertical-align:middle\",\"text-align:center\",\"transition:opacity ease-out .3s\"]],[false,{\".epyt-gallery-thumb.hover .epyt-gallery-playhover\":false,\".epyt-gallery-thumb.epyt-current-video .epyt-gallery-playhover\":false},[\"opacity:1\",\"top:0\",\"transition:all ease-out .3s\"]],[false,{\".epyt-gallery-thumb .epyt-gallery-playcrutch\":false},[\"display:inline-block\",\"height:100%\",\"vertical-align:middle\",\"width:0\"]],[false,{\".epyt-gallery-playhover .epyt-play-img\":false},[\"width:auto\",\"border:0\",\"box-sizing:border-box\"]],[false,{\".epyt-gallery-playhover .epyt-play-img:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\",\"max-width:15%\",\"padding:0\",\"margin:0\",\"min-width:30px\",\"vertical-align:middle\",\"display:inline-block\"]],[false,{\".epyt-gallery-title\":false},[\"font-size:80%\",\"line-height:120%\",\"padding:10px\"]],[false,{\".epyt-gallery-notitle\":false},[\"padding:4px\"]],[false,{\".epyt-gallery-notitle span\":false},[\"display:none\"]],[false,{\".epyt-gallery-rowtitle\":false},[\"text-align:center\",\"width:100%\",\"position:absolute\",\"left:0\",\"top:100%\",\"opacity:0\",\"z-index:10\",\"overflow-x:hidden\",\"text-overflow:ellipsis\",\"white-space:nowrap\"]],[false,{\".epyt-gallery-rowtitle.hover\":false},[\"opacity:1\",\"transition:opacity linear .2s\"]],[false,{\".epyt-gallery-rowbreak\":false},[\"clear:both\"]],[false,{\".epyt-pagination\":false},[\"clear:both\",\"text-align:center\",\"padding:10px 8px 10px 8px\"]],[false,{\".epyt-pagination.epyt-hide-pagination *:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".epyt-pagination>div\":false,\".epyt-pagenumbers>div\":false},[\"display:inline-block\",\"padding:0 2px 0 2px\",\"vertical-align:middle\"]],[false,{\".epyt-pagination .epyt-pagebutton\":false},[\"cursor:pointer\",\"display:inline-block\",\"padding:0 10px 0 10px\"]],[false,{\".epyt-pagebutton>div\":false},[\"display:inline\"]],[false,{\".epyt-pagination .epyt-loader\":false},[\"display:none\"]],[false,{\".epyt-gallery-list.epyt-loading .epyt-pagination .epyt-loader\":false},[\"display:inline-block\"]],[false,{\"body .lity-container\":false},[\"width:100%\",\"max-width:964px\"]],[false,{\".epyt-curtain .lity-opened amp-iframe\":false},[\"opacity:0\",\"transition:opacity .3s linear .5s\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-1 .epyt-gallery-thumb\":false},[\"width:100%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-2 .epyt-gallery-thumb\":false},[\"width:50%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-3 .epyt-gallery-thumb\":false},[\"width:33.333%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-4 .epyt-gallery-thumb\":false},[\"width:25%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-5 .epyt-gallery-thumb\":false},[\"width:20%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-6 .epyt-gallery-thumb\":false},[\"width:16.666%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-7 .epyt-gallery-thumb\":false},[\"width:14.285%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-8 .epyt-gallery-thumb\":false},[\"width:12.5%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-9 .epyt-gallery-thumb\":false},[\"width:11.111%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-10 .epyt-gallery-thumb\":false},[\"width:10%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-11 .epyt-gallery-thumb\":false},[\"width:9.09%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-12 .epyt-gallery-thumb\":false},[\"width:8.333%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-13 .epyt-gallery-thumb\":false},[\"width:7.692%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-14 .epyt-gallery-thumb\":false},[\"width:7.142%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-15 .epyt-gallery-thumb\":false},[\"width:6.666%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-16 .epyt-gallery-thumb\":false},[\"width:6.25%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-17 .epyt-gallery-thumb\":false},[\"width:5.882%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-18 .epyt-gallery-thumb\":false},[\"width:5.555%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-19 .epyt-gallery-thumb\":false},[\"width:5.263%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-20 .epyt-gallery-thumb\":false},[\"width:5%\"]],[false,{\".epyt-pagebutton.hide:not(#_#_#_#_#_#_#_)\":false,\".epyt-pagenumbers.hide:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"opacity:0\",\"visibility:hidden\"]],[false,{\".epyt-gallery-subscribe\":false},[\"text-align:center\",\"padding:15px 0 10px 0\",\"clear:both\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton:hover\":false},[\"display:inline-block\",\"padding:5px 10px\",\"border-radius:3px\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton:not(#_#_#_#_#_#_#_#_)\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#e62117\",\"color:#fff\",\"text-decoration:none\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-img\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-anim\":false},[\"padding:0 6px 3px 0\",\"display:inline-block\",\"background:transparent\",\"-webkit-box-shadow:none\",\"box-shadow:none\",\"margin:0\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:20px\",\"height:auto\",\"vertical-align:middle\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__\":false},[\"background-color:#000\",\"background-image:-webkit-linear-gradient(top,#000,#444)\",\"background-image:linear-gradient(to bottom,#000,#444)\",\"padding:25px\",\"height:auto\",\"text-align:left\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ *:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#e3e3e3\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ a\":false},[\"text-decoration:underline\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:hover\":false},[\"display:inline-block\",\"padding:5px 10px\",\"border-radius:3px\",\"font-weight:normal\",\"border-width:0\",\"box-sizing:border-box\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:not(#_#_#_#_#_#_#_#_)\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#e62117\",\"color:#fff\",\"text-decoration:none\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-img\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-anim\":false},[\"padding:0 6px 3px 0\",\"display:inline-block\",\"background:transparent\",\"-webkit-box-shadow:none\",\"box-shadow:none\",\"margin-left:8px\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-img:not(#_#_#_#_#_#_#_#_)\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:20px\",\"height:auto\",\"vertical-align:middle\"]],[false,{\"body .epyt-gallery-img-gdpr\":false},[\"background-color:#000\",\"background-image:-webkit-linear-gradient(top,#000,#444)\",\"background-image:linear-gradient(to bottom,#000,#444)\"]],[false,{\".epyt-facade\":false},[\"position:relative\",\"padding-bottom:56.25%\",\"height:0\",\"overflow:hidden\",\"max-width:100%\",\"-webkit-transition:.4s all\",\"-moz-transition:.4s all\",\"transition:.4s all\"]],[false,{\".epyt-facade:hover\":false},[\"-webkit-filter:brightness(90%)\",\"-moz-filter:brightness(90%)\",\"filter:brightness(90%)\"]],[false,{\".epyt-facade amp-img.epyt-facade-poster\":false,\".epyt-facade amp-anim.epyt-facade-poster\":false},[\"display:block\",\"margin:0\",\"max-width:100%\",\"width:100%\",\"position:absolute\",\"top:50%\",\"left:50%\",\"transform:translate(-50%,-50%)\",\"border:0\",\"height:auto\",\"cursor:pointer\"]],[false,{\".epyt-facade button.epyt-facade-play\":false},[\"position:absolute\",\"left:50%\",\"top:50%\",\"width:68px\",\"height:48px\",\"margin-left:-34px\",\"margin-top:-24px\",\"-webkit-transition:opacity .25s cubic-bezier(0,0,.2,1)\",\"transition:opacity .25s cubic-bezier(0,0,.2,1)\",\"cursor:pointer\"]],[false,{\".epyt-facade button.epyt-facade-play:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:transparent\",\"border-width:0\"]],[false,{\".epyt-facade button.epyt-facade-play svg\":false},[\"height:100%\",\"left:0\",\"position:absolute\",\"top:0\",\"width:100%\",\"pointer-events:none\"]],[false,{\".epyt-facade button.epyt-facade-play svg .ytp-large-play-button-bg\":false},[\"-webkit-transition:fill .1s cubic-bezier(.4,0,1,1),fill-opacity .1s cubic-bezier(.4,0,1,1)\",\"transition:fill .1s cubic-bezier(.4,0,1,1),fill-opacity .1s cubic-bezier(.4,0,1,1)\",\"fill:#212121\",\"fill-opacity:.8\"]],[false,{\".epyt-facade:hover button.epyt-facade-play svg .ytp-large-play-button-bg\":false},[\"-webkit-transition:fill .1s cubic-bezier(0,0,.2,1),fill-opacity .1s cubic-bezier(0,0,.2,1)\",\"transition:fill .1s cubic-bezier(0,0,.2,1),fill-opacity .1s cubic-bezier(0,0,.2,1)\",\"fill:#f00\",\"fill-opacity:1\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.epyt-facade\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\"]],[false,{\".wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.__youtube_prefs_gdpr__\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.__youtube_prefs_gdpr__\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"overflow-y:auto\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper.epyt-is-override__wrapper:before\":false},[\"padding:0\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper.epyt-is-override__wrapper .epyt-is-override.__youtube_prefs_gdpr__\":false},[\"position:relative\",\"top:unset\",\"right:unset\",\"bottom:unset\",\"left:unset\"]],[false,{\".ytvi-story-container\":false},[\"display:block\",\"max-width:100%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":81,\"final_size\":0,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"__EPYT__style-inline-css\",\"type\":\"text\\/css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"\\r\\n .epyt-gallery-thumb {\\r\\n width: 33.333%;\\r\\n }\\r\\n \",\"handle\":\"__EPYT__style\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"\\r\\n .epyt-gallery-thumb {\\r\\n width: 33.333%;\\r\\n }\\r\\n \",\"handle\":\"__EPYT__style\"}],\"priority\":70,\"hash\":\"c0787a0c009a93e8e21ea0b9ce09b54f\",\"parse_time\":0.0006740093231201172,\"shake_time\":3.0994415283203125e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".epyt-gallery-thumb\":false},[\"width:33.333%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":323,\"final_size\":64,\"element\":{\"name\":\"style\",\"attributes\":{\"type\":\"text\\/css\",\"id\":\"wp-custom-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"theme.php\",\"line\":1824,\"function\":\"wp_custom_css_cb\",\"hook\":\"wp_head\",\"priority\":101}],\"priority\":60,\"hash\":\"ed93f9bffe93712a600c426300d64207\",\"parse_time\":0.002050161361694336,\"shake_time\":1.7881393432617188e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".tek-ai\":false},[\"height:auto\"]],[false,{\".tek-ai amp-img\":false,\".tek-ai amp-anim\":false},[\"max-height:570px\"]],[false,{\".tek-ai amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".tek-ai amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[false,\"@media (max-width:992px){\"],[false,{\".tek-ai\":false},[\"height:auto\"]],[false,{\".tek-ai:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width: 1400px){\"],[false,{\".tek-ai\":false},[\"height:auto\"]],[false,\"}\"],[true,{\".footer-2022__menu--list.footer_links:nth-child(4)\":true},[\"display:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":23614,\"final_size\":1439,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/landing-page.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"6bf24272588771b3d041d8d342dc232e\",\"parse_time\":0.2652928829193115,\"shake_time\":0.00034308433532714844,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"body\":true},[\"background-color:#fff\",\"color:#818181\",\"font-size:19px\",\"font-weight:500\",\"line-height:32px\"]],[true,{\"body:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:\\\"Roboto\\\",sans-serif\"]],[true,\"@media (max-width: 768px){\"],[true,{\"body\":true},[\"line-height:21px\"]],[true,\"}\"],[true,{\"amp-img\":true,\"amp-anim\":false},[\"max-width:100%\"]],[true,{\"h1\":true},[\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#fff\",\"font-size:40px\",\"line-height:38px\",\"font-weight:600\",\"margin-bottom:40px\"]],[true,{\"h2\":true},[\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#fff\",\"font-size:48px\",\"line-height:50px\",\"font-weight:600\",\"margin-bottom:30px\"]],[true,\"@media (max-width: 768px){\"],[true,{\"h2\":true},[\"font-size:35px\",\"line-height:36px\"]],[true,\"}\"],[true,{\"h3\":true},[\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#fff\",\"font-size:40px\",\"line-height:38px\",\"font-weight:600\",\"margin:40px 0\"]],[true,{\"header\":true},[\"top:0\",\"width:100%\",\"height:100px\",\"position:absolute\",\"background-color:transparent\",\"z-index:3\"]],[true,{\"header .container\":true,\"header .row\":true},[\"height:100%\"]],[true,{\"button\":true,\"[type=submit]\":true},[\"cursor:pointer\"]],[true,{\"a\":true,\"a:hover\":true,\"a:visited\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"footer\":true},[\"padding:80px 0\",\"background-color:#fff\",\"border-top:2px solid #0ad1e2\"]],[true,{\"footer small\":true},[\"font-size:21px\",\"line-height:28px\",\"display:block\",\"font-weight:500\",\"color:#8d8d8d\"]],[false,{\".footer__blue-bg\":false},[\"background-color:#00abeb\",\"color:#fff\"]],[false,{\".footer__side-text\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#00abeb\",\"font-size:22px\",\"font-weight:600\"]],[false,{\".footer__side-text strong\":false},[\"color:#152649\"]],[false,{\".footer__ready\":false},[\"text-align:center\",\"margin-top:50px\",\"position:relative\"]],[false,{\".footer__ready:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"width:100%\",\"height:1px\",\"background-color:#cacaca\",\"left:0\",\"top:50%\",\"z-index:0\"]],[false,{\".footer__ready-button\":false},[\"padding:10px 20px\",\"color:#fff\",\"border:0\",\"background-color:#00abeb\",\"text-transform:uppercase\",\"font-weight:600\",\"display:inline-block\",\"font-size:13px\",\"position:relative\"]],[false,{\".footer__ready-button--short\":false},[\"margin-top:-15px\"]],[false,{\".footer__services\":false},[\"padding:40px 0\",\"text-transform:uppercase\",\"font-size:15px\",\"line-height:20px\"]],[false,{\".footer__services amp-img\":false,\".footer__services amp-anim\":false},[\"margin-left:30px\"]],[false,{\".footer__kubernetes\":false},[\"text-align:center\",\"margin-top:50px\",\"position:relative\"]],[false,{\".footer__kubernetes:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"width:100%\",\"height:1px\",\"background-color:#cacaca\",\"left:0\",\"top:calc(50% - 15px)\",\"z-index:0\"]],[false,{\".footer__kubernetes--short:before\":false},[\"top:calc(50% - 5px)\"]],[false,{\".footer__kubernetes-wrap\":false},[\"position:relative\"]],[true,\"@media (max-width: 768px){\"],[true,{\"footer\":true},[\"border-top:0\"]],[false,{\".footer__separate\":false},[\"display:block\"]],[false,{\".footer__services amp-img\":false,\".footer__services amp-anim\":false},[\"margin-left:0\",\"max-width:33%\",\"margin-top:10px\",\"height:50px\"]],[false,{\".footer__call amp-img\":false,\".footer__call amp-anim\":false},[\"max-width:70px\",\"margin-top:50px\",\"margin-bottom:20px\"]],[true,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".footer__side-text\":false},[\"padding:0 20%\"]],[false,{\"footer .logo amp-img\":false,\"footer .logo amp-anim\":false},[\"margin-bottom:50px\"]],[false,\"}\"],[false,{\".top-banner\":false},[\"width:100%\",\"height:620px\",\"background-color:#2a2929\",\"background-repeat:no-repeat\",\"background-position:center\",\"background-size:cover\",\"position:relative\",\"overflow:hidden\"]],[false,\"@media (max-width: 768px){\"],[false,{\".top-banner\":false},[\"height:auto\",\"padding-top:120px\"]],[false,\"}\"],[false,{\".top-banner .container\":false,\".top-banner .row\":false},[\"height:100%\",\"position:relative\",\"z-index:1\"]],[false,{\".top-banner__image\":false},[\"margin-top:auto\"]],[false,\"@media (max-width: 768px){\"],[false,{\".top-banner__image\":false},[\"z-index:-1\"]],[false,\"}\"],[false,{\".top-banner__item\":false},[\"color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:18px\",\"line-height:18px\",\"margin-top:20px\",\"margin-left:0\",\"position:relative\",\"font-weight:700\"]],[false,{\".top-banner__green-box\":false},[\"background-color:rgba(20,178,237,.2)\",\"padding:20px\",\"color:#fff\",\"border-radius:10px\"]],[false,{\".top-text\":false},[\"font-size:25px\",\"line-height:25px\",\"margin-bottom:20px\"]],[false,{\".form-top\":false},[\"border:0\",\"border-bottom:1px solid #fff\",\"background:transparent\",\"height:40px\",\"margin-bottom:25px\",\"padding:0\",\"width:100%\",\"font-size:13px\",\"color:#fff\"]],[false,{\".top-banner__green-box .wpcf7-not-valid-tip\":false},[\"font-size:10px\",\"line-height:15px\",\"margin-top:-20px\",\"margin-bottom:5px\"]],[false,{\".top-banner__green-box .wpcf7-response-output\":false},[\"font-size:12px\",\"line-height:15px\"]],[false,{\".form-textarea\":false},[\"border:1px solid #fff\",\"background:transparent\",\"margin-bottom:10px\",\"padding:0 10px\",\"width:100%\",\"font-size:13px\",\"color:#fff\",\"height:90px\",\"position:relative\",\"border-radius:5px\",\"margin-top:10px\"]],[false,{\".top-banner__green-box .message:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"width:32px\",\"height:40px\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/04\\/mrdata4.png\\\")\",\"top:-20px\",\"right:-15px\"]],[false,{\".form-checkbox\":false},[\"display:flex\",\"flex-wrap:wrap\",\"justify-content:space-between\",\"margin-bottom:20px\",\"margin-top:10px\"]],[false,{\".form-checkbox .wpcf7-list-item\":false},[\"margin:0\",\"margin:0\",\"width:30%\",\"border:1px solid #fff\",\"padding:10px 5px\",\"font-size:12px\",\"line-height:12px\",\"text-align:center\",\"font-weight:400\"]],[false,{\".form-checkbox .wpcf7-list-item input[type=radio]\":false},[\"display:none\"]],[false,{\".form-checkbox .wpcf7-list-item.checked\":false},[\"background-color:#eee\",\"color:#09aeec\",\"font-weight:800\"]],[false,{\".form-checkbox .wpcf7-list-item label\":false},[\"margin-bottom:0\",\"display:flex\",\"align-items:center\",\"height:100%\",\"justify-content:center\"]],[false,{\".top-btn\":false},[\"padding:10px\",\"color:#fff\",\"border:0\",\"background-color:#09aeec\",\"text-transform:uppercase\",\"font-weight:700\",\"float:left\",\"width:100%\"]],[false,{\".top-banner--cl h1\":false},[\"color:#152649\"]],[false,{\".top-banner--cl:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:100%\",\"height:100%\",\"background:#fff\",\"background:linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,1) 90%,rgba(255,255,255,1) 100%)\",\"top:0\",\"left:0\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".top-banner--cl:after\":false},[\"background:linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%)\"]],[false,\"}\"],[false,\"@media (max-width: 700px){\"],[false,{\".top-banner--cl:after\":false},[\"background:linear-gradient(0deg,rgba(255,255,255,0) 0%,rgba(255,255,255,1) 90%,rgba(255,255,255,1) 100%)\"]],[false,\"}\"],[false,{\".top-banner--cl .top-banner__item\":false},[\"color:#03aceb\"]],[false,{\".top-banner--cl .top-banner__green-box\":false},[\"background-color:rgba(9,174,236,.6)\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".top-banner--cl .top-banner__green-box\":false},[\"margin-bottom:60px\"]],[false,\"}\"],[false,{\"#calendly-button-top\":false},[\"position:absolute\",\"bottom:20px\",\"z-index:1\",\"left:50%\",\"transform:translate(-50%,0)\",\"width:70%\"]],[false,{\"#calendly-button-top.top-mid\":false},[\"top:-57px\"]],[false,{\".top-btn\":false},[\"padding:15px 30px\"]],[false,{\".trusted-by\":false},[\"width:100%\",\"height:80px\",\"background-color:#2a2929\"]],[false,{\".trusted-by .container\":false,\".trusted-by .row\":false},[\"height:100%\"]],[false,{\".trusted-by amp-img\":false,\".trusted-by amp-anim\":false},[\"height:auto\"]],[false,{\".trusted-by amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".trusted-by amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:auto\"]],[false,{\".trusted-by__wrap-guide\":false},[\"width:150px\",\"height:80px\",\"float:left\",\"display:flex\",\"justify-content:center\",\"align-items:center\"]],[false,{\".trusted-by .trusted-guide\":false},[\"height:auto\"]],[false,{\".trusted-by .trusted-guide:not(#_#_#_#_#_#_#_)\":false},[\"width:140px\"]],[false,{\".trusted-by__gallery\":false},[\"width:calc(100% - 200px)\",\"margin-left:50px\",\"float:right\"]],[false,{\".trusted-by__gallery:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".trusted-by__gallery .item\":false},[\"display:flex\",\"justify-content:center\",\"align-items:center\",\"height:80px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".trusted-by__wrap-guide\":false},[\"width:100px\"]],[false,{\".trusted-by .trusted-guide:not(#_#_#_#_#_#_#_)\":false},[\"width:90px\"]],[false,{\".trusted-by__gallery\":false},[\"width:calc(100% - 130px)\",\"margin-left:30px\"]],[false,{\".trusted-by__gallery:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,\"}\"],[false,{\".steps\":false},[\"width:100%\",\"position:relative\",\"padding:150px 0\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/04\\/bd-1.png\\\")\",\"background-repeat:no-repeat\",\"background-position:center\",\"background-size:cover\"]],[false,\"@media (max-width: 768px){\"],[false,{\".steps\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".steps h2\":false},[\"color:#21283b\"]],[false,{\".steps strong\":false},[\"color:#21283b\",\"font-weight:600\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".steps amp-img\":false,\".steps amp-anim\":false},[\"margin-bottom:70px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".steps strong\":false},[\"display:block\",\"margin-top:20px\"]],[false,\"}\"],[false,{\".phrase\":false},[\"width:100%\",\"position:relative\",\"font-size:22px\",\"background-color:#151515\"]],[false,{\".phrase--mid\":false},[\"padding:0px 0 260px\"]],[false,{\".trusted--mid\":false},[\"margin-top:50px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".phrase\":false},[\"padding:0\"]],[false,\"}\"],[false,{\".phrase strong\":false},[\"font-weight:600\",\"color:#09aeec\"]],[false,{\".phrase__btn\":false},[\"padding:15px 50px\",\"color:#fff\",\"border:0\",\"background-color:#09aeec\",\"margin-top:30px\",\"text-transform:uppercase\",\"font-weight:600\"]],[false,{\".phrase__wrap-content\":false},[\"position:absolute\",\"bottom:100px\",\"width:100%\",\"color:#fff\"]],[false,{\".phrase__wrap-content--kindle:not(#_#_#_#_#_#_#_)\":false},[\"bottom:200px\"]],[false,{\".phrase__wrap-content--mid:not(#_#_#_#_#_#_#_)\":false},[\"bottom:200px\"]],[false,{\".phrase__wrap-content p\":false},[\"max-width:950px\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".phrase__wrap-content amp-img\":false,\".phrase__wrap-content amp-anim\":false},[\"float:left\",\"margin-right:40px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".phrase__wrap-content amp-img\":false,\".phrase__wrap-content amp-anim\":false},[\"float:none\",\"display:block\",\"margin:0 auto 40px\"]],[false,\"}\"],[false,{\".phrase__wrap-content a\":false},[\"margin:0 auto\",\"display:block\",\"text-align:center\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".phrase\":false},[\"line-height:25px\",\"font-weight:400\"]],[false,{\".phrase__wrap-bg\":false},[\"background-color:#151515\",\"overflow-x:hidden\"]],[false,{\".phrase__wrap-bg amp-img\":false,\".phrase__wrap-bg amp-anim\":false},[\"height:700px\",\"width:auto\",\"max-width:none\",\"margin:0 -433px 200px\"]],[false,{\".devops-styles .phrase__wrap-bg amp-img\":false,\".devops-styles .phrase__wrap-bg amp-anim\":false},[\"margin:0 -433px 0px\"]],[false,{\".phrase__wrap-content:not(#_#_#_#_#_#_#_)\":false},[\"bottom:50px\"]],[false,{\".phrase__wrap-content--kindle:not(#_#_#_#_#_#_#_)\":false},[\"bottom:200px\"]],[false,{\".devops-styles .phrase__wrap-content:not(#_#_#_#_#_#_#_)\":false},[\"bottom:30px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".phrase__wrap-content--kindle:not(#_#_#_#_#_#_#_)\":false},[\"bottom:50px\"]],[false,\"}\"],[false,{\".time-money\":false},[\"width:100%\",\"position:relative\",\"padding:100px 0\",\"background-color:#fff\",\"color:#8d8d8d\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/04\\/bd-2.png\\\")\",\"background-repeat:no-repeat\",\"background-position:bottom center\",\"background-size:cover\"]],[false,{\".time-money--mid\":false},[\"color:#152649\"]],[false,{\".time-money--short\":false},[\"padding:100px 0 250px\"]],[false,{\".time-money--short4\":false},[\"padding:100px 0 170px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".time-money--short4\":false},[\"padding:100px 0 50px\"]],[false,\"}\"],[false,{\".time-money h2\":false},[\"color:#152649\",\"margin-bottom:50px\"]],[false,{\".time-money strong\":false},[\"color:#09aeec\",\"font-weight:600\"]],[false,{\".time-money--mid p\":false},[\"font-weight:400\"]],[false,{\".time-money--mid p strong\":false},[\"color:inherit\"]],[false,{\".time-money__image\":false},[\"margin-bottom:50px\"]],[false,{\".time-money .trusted-by\":false},[\"margin-top:50px\",\"border-radius:10px\"]],[false,\"@media (max-width: 600px){\"],[false,{\".time-money__image\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".time-money__light\":false},[\"font-weight:300\"]],[false,{\".time-money__btn\":false},[\"padding:15px 50px\",\"color:#fff\",\"border:0\",\"background-color:#09aeec\",\"margin-top:30px\",\"text-transform:uppercase\",\"font-weight:600\"]],[false,{\".time-money--short p\":false},[\"max-width:950px\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".time-money--short p amp-img\":false,\".time-money--short p amp-anim\":false},[\"float:left\",\"margin-right:40px\",\"margin-bottom:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".time-money--short p amp-img\":false,\".time-money--short p amp-anim\":false},[\"float:none\",\"display:block\",\"margin:0 auto 40px\"]],[false,\"}\"],[false,{\".time-money--short a\":false},[\"margin:0 auto\",\"display:block\",\"text-align:center\"]],[false,{\".graphics-gallery .owl-dots\":false},[\"display:flex\",\"justify-content:center\",\"position:relative\",\"margin:30px auto\",\"flex-direction:row\"]],[false,{\".graphics-gallery .owl-dot\":false},[\"border:0\",\"border-radius:50%\",\"display:block\",\"width:15px\",\"height:15px\",\"margin:0 5px\"]],[false,{\".graphics-gallery .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#e5e5e5\"]],[false,{\".graphics-gallery .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#152649\"]],[false,{\".kubernetes\":false},[\"width:100%\",\"position:relative\",\"padding:100px 0 80px\",\"background-color:#ececec\",\"color:#8d8d8d\",\"font-weight:600\"]],[false,{\".kubernetes--long\":false},[\"padding:100px 0 180px\"]],[false,{\".kubernetes h2\":false},[\"color:#09aeec\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes\":false},[\"padding:50px 0\"]],[false,{\".kubernetes h2\":false},[\"border:1px solid #ccc\",\"padding:20px\",\"font-size:30px\",\"line-height:32px\",\"margin-top:30px\"]],[false,\"}\"],[false,{\".kubernetes strong\":false},[\"color:#8d8d8d\",\"margin-bottom:10px\",\"font-size:21px\",\"display:block\"]],[false,{\".kubernetes__item\":false},[\"margin-bottom:10px\",\"font-size:16px\"]],[false,{\".kubernetes__item i\":false},[\"color:#152649\",\"margin-right:10px\"]],[false,{\".kubernetes__contour\":false},[\"background-color:#09aeec\",\"color:#fff\",\"font-size:16px\",\"display:inline\",\"padding:3px 10px\",\"font-weight:500\"]],[false,{\".kubernetes__contour strong\":false},[\"color:#fff\",\"font-size:16px\",\"display:inline\",\"margin-bottom:0\",\"font-weight:600\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__contour\":false},[\"display:block\",\"text-align:center\",\"margin-top:20px\",\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".city-phrase\":false},[\"width:100%\",\"position:relative\",\"padding:200px 0 300px\",\"background-color:#151515\"]],[false,{\".city-phrase--mid\":false},[\"padding:0px 0 300px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".city-phrase\":false},[\"padding:50px 0\"]],[false,\"}\"],[false,{\".clients\":false},[\"width:100%\",\"position:relative\",\"background-color:#f1f1f1\",\"padding-bottom:40px\",\"border-top:2px solid #0ad1e2\"]],[false,{\".clients__wrap\":false},[\"margin-top:-150px\",\"background-color:#fff\",\"padding:60px 60px 80px\",\"border-radius:10px\",\"-webkit-box-shadow:10px 10px 20px 0 rgba(12,39,41,.5)\",\"box-shadow:10px 10px 20px 0 rgba(12,39,41,.5)\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".clients\":false},[\"background-color:#fff\",\"border-top:0\",\"-webkit-box-shadow:10px 10px 20px 0 rgba(12,39,41,.5)\",\"box-shadow:10px 10px 20px 0 rgba(12,39,41,.5)\",\"z-index:1\",\"padding:50px 0 70px\",\"overflow-x:hidden\"]],[false,{\".clients__wrap\":false},[\"margin-top:0\",\"padding:0\",\"-webkit-box-shadow:none\",\"box-shadow:none\"]],[false,{\".clients .container-fluid\":false},[\"padding:0\"]],[false,\"}\"],[false,{\".clients__wrap h2\":false},[\"color:#152649\",\"margin-bottom:0\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".clients__wrap h2\":false},[\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".clients__slider\":false,\".clients__slider2\":false},[\"padding-right:50px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".clients__slider\":false,\".clients__slider2\":false},[\"padding-right:0\"]],[false,\"}\"],[false,{\".clients__slider .owl-nav\":false},[\"position:absolute\",\"width:calc(100% - 50px)\",\"text-align:center\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"margin-top:20px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".clients__slider .owl-nav\":false},[\"width:80px\",\"justify-content:flex-start\",\"z-index:1\"]],[false,\"}\"],[false,{\".clients__slider .owl-prev\":false,\".clients__slider .owl-next\":false},[\"width:30px\",\"height:30px\",\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[false,{\".clients__slider .owl-prev:not(#_#_#_#_#_#_#_)\":false,\".clients__slider .owl-next:not(#_#_#_#_#_#_#_)\":false},[\"color:#152649\",\"border:2px solid #152649\",\"font-size:15px\",\"line-height:15px\"]],[false,{\".clients__slider .owl-prev\":false},[\"margin-right:10px\"]],[false,{\".clients__slider .owl-dots\":false},[\"position:absolute\",\"right:15px\",\"display:flex\",\"margin:auto\",\"height:80px\",\"bottom:calc(50% - 40px)\",\"flex-direction:column\",\"justify-content:center\"]],[false,\"@media (max-width: 768px){\"],[false,{\".clients__slider .owl-dots\":false},[\"justify-content:flex-end\"]],[false,\"}\"],[false,{\".clients__slider2 .owl-dots\":false},[\"position:absolute\",\"right:15px\",\"display:flex\",\"display:block\",\"margin:auto\",\"height:80px\",\"bottom:calc(50% - 15px)\",\"flex-direction:column\",\"justify-content:center\"]],[false,{\".clients__slider .owl-dot\":false,\".clients__slider2 .owl-dot\":false},[\"width:10px\",\"height:10px\",\"border:0\",\"border-radius:50%\",\"display:block\",\"margin:5px 0\"]],[false,{\".clients__slider .owl-dot:not(#_#_#_#_#_#_#_)\":false,\".clients__slider2 .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#e5e5e5\"]],[false,{\".clients__slider .owl-dot.active:not(#_#_#_#_#_#_#_)\":false,\".clients__slider2 .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#00abeb\"]],[false,\"@media (max-width: 768px){\"],[false,{\".clients__slider .owl-dots\":false,\".clients__slider2 .owl-dots\":false},[\"position:relative\",\"margin-top:30px\",\"flex-direction:row\",\"right:0\",\"height:auto\",\"display:flex\"]],[false,{\".clients__slider .owl-dot\":false,\".clients__slider2 .owl-dot\":false},[\"width:15px\",\"height:15px\",\"margin:0 5px\"]],[false,{\".clients__slider .owl-dot.active:not(#_#_#_#_#_#_#_)\":false,\".clients__slider2 .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#152649\"]],[false,\"}\"],[false,{\".clients__slider .owl-stage\":false},[\"display:flex\",\"align-items:stretch\"]],[false,{\".clients__slider .owl-item\":false},[\"display:flex\"]],[false,{\".clients__text\":false},[\"overflow:hidden\"]],[false,{\".clients__name\":false},[\"overflow:hidden\"]],[false,{\".clients__item\":false},[\"border:2px solid #00abeb\",\"border-radius:5px\",\"padding:40px\",\"color:#000\",\"font-size:16px\",\"line-height:18px\",\"display:flex\",\"flex-direction:column\",\"justify-content:space-between\",\"margin-left:10px\"]],[false,{\".clients__by\":false},[\"display:flex\",\"align-items:center\"]],[false,{\".clients__picture\":false},[\"width:70px\",\"height:70px\",\"min-width:70px\",\"border-radius:50%\",\"border:5px solid #00abeb\",\"margin-right:20px\",\"justify-content:center\",\"align-items:center\",\"display:flex\",\"object-fit:cover\",\"overflow:hidden\"]],[false,{\".clients__picture amp-img\":false,\".clients__picture amp-anim\":false},[\"object-fit:contain\",\"filter:grayscale(1)\"]],[false,{\".clients__name\":false},[\"font-family:\\\"Rajdhani\\\",sans-serif\",\"color:#5b5b5b\",\"font-weight:600\",\"text-transform:uppercase\",\"line-height:20px\"]],[false,{\".clients__name strong\":false},[\"color:#00abeb\"]],[false,{\".contact\":false},[\"width:100%\",\"position:relative\",\"padding:80px 0 100px\",\"background-color:#f1f1f1\",\"color:#21283b\",\"font-size:13px\",\"font-weight:700\"]],[false,\"@media (max-width: 768px){\"],[false,{\".contact\":false},[\"padding:50px 0 30px\",\"border-bottom:1px solid #c5c8cf\"]],[false,\"}\"],[false,{\".contact h3\":false},[\"color:#21283b\",\"margin-top:0\",\"font-weight:800\"]],[false,{\".devops-styles .contact h3\":false},[\"text-transform:none\"]],[false,{\".contact p\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"margin-bottom:40px\",\"line-height:20px\",\"color:#636363\"]],[false,{\".contact strong\":false},[\"color:#21283b\",\"font-weight:900\"]],[false,{\".devops-styles .contact strong\":false},[\"font-size:18px\",\"display:block\"]],[true,{\".contact__ceo\":true},[\"margin-bottom:80px\"]],[true,\"@media (max-width: 1000px){\"],[true,{\".contact__ceo\":true},[\"float:left\",\"width:40%\",\"margin-bottom:0\",\"margin-right:20px\"]],[false,{\".contact p\":false},[\"margin-bottom:10px\",\"line-height:16px\"]],[false,{\".contact__rotate\":false},[\"width:40%\",\"margin-bottom:0\",\"margin-right:20px\",\"margin-top:70px\"]],[false,{\".contact__rotate .item amp-img\":false,\".contact__rotate .item amp-anim\":false},[\"margin-bottom:20px\"]],[false,{\".devops-styles .contact strong\":false},[\"margin-bottom:30px\"]],[true,\"}\"],[false,{\".contact__blue:not(#_#_#_#_#_#_#_)\":false},[\"color:#00abeb\"]],[true,{\"form\":true},[\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\"#wpcf7-f2555-o2 strong\":false},[\"font-size:18px\",\"display:block\",\"margin-bottom:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\"#wpcf7-f2555-o2 .no-margin\":false},[\"margin-top:30px\",\"margin-bottom:30px\",\"padding-bottom:50px\",\"border-bottom:1px solid #c5c8cf\"]],[false,\"}\"],[false,{\".form-contact\":false},[\"width:100%\",\"border:0\",\"border-bottom:1px solid #ddd\",\"background-color:transparent\",\"color:#959595\",\"font-size:15px\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".form-contact .col-md-4\":false,\".devops-styles .contact .col-md-3\":false},[\"margin-bottom:20px\"]],[false,{\"input.form-contact\":false},[\"height:40px\"]],[false,{\"textarea.form-contact\":false},[\"height:115px\",\"line-height:20px\"]],[false,{\".form-btn\":false},[\"color:#21283b\",\"border:1px solid #21283b\",\"padding:10px 30px\",\"text-transform:uppercase\",\"font-size:15px\",\"font-weight:700\",\"border-radius:5px\"]],[false,{\".devops-styles .form-btn\":false},[\"width:100%\"]],[true,{\"::-webkit-input-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:#959595\"]],[true,{\":-moz-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:#959595\"]],[true,{\"::-moz-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:#959595\"]],[true,{\":-ms-input-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:#959595\"]],[false,{\".top-banner ::-webkit-input-placeholder:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".top-banner :-moz-placeholder:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".top-banner ::-moz-placeholder:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".top-banner :-ms-input-placeholder:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".ajax-loader:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":32514,\"final_size\":862,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/new-styles.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"027619c7f9b61a6c4dcfcb8a6160ac60\",\"parse_time\":0.4198160171508789,\"shake_time\":0.0003859996795654297,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"body\":true},[\"background-color:#f7f7f7\"]],[true,{\"body:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".no-overflow\":false},[\"overflow:hidden\"]],[true,{\"h1\":true},[\"font-family:\\\"Raleway\\\",sans-serif\"]],[true,{\"h2\":true},[\"font-size:32px\",\"line-height:32px\",\"font-family:\\\"Rajdhani\\\",sans-serif\",\"font-weight:400\",\"color:#182647\",\"margin-bottom:20px\",\"padding-bottom:20px\"]],[true,{\"h2 strong\":true},[\"color:#182647\",\"font-weight:700\"]],[true,{\"h2:after\":true},[\"width:470px\",\"max-width:100%\",\"height:1px\",\"left:0\",\"bottom:0\",\"content:\\\"\\\"\",\"background-color:#182647\",\"position:absolute\",\"box-shadow:3px 3px 12px rgba(24,38,71,.4)\"]],[false,{\"h2.bolder\":false},[\"text-transform:uppercase\",\"font-weight:700\"]],[true,{\"h3\":true},[\"font-size:40px\",\"line-height:40px\",\"text-transform:uppercase\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:700\",\"color:#182647\"]],[true,\"@media (max-width: 1024px){\"],[true,{\"h3\":true},[\"font-size:30px\",\"line-height:30px\"]],[true,\"}\"],[false,{\".container-fluid\":false},[\"max-width:unset\"]],[false,{\".container-fluid:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".new-home__top\":false},[\"width:100%\",\"height:600px\",\"background-color:#121d3d\",\"margin-top:100px\",\"color:#182647\",\"font-size:24px\",\"line-height:30px\"]],[false,{\".new-home__top:not(#_#_#_#_#_#_#_)\":false},[\"opacity:0\"]],[false,{\".new-home__top .owl-nav\":false},[\"position:absolute\",\"width:calc(100%)\",\"text-align:center\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"margin-top:-50px\"]],[false,{\".new-home__top .owl-prev\":false,\".new-home__top .owl-next\":false},[\"width:30px\",\"height:30px\",\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[false,{\".new-home__top .owl-prev:not(#_#_#_#_#_#_#_)\":false,\".new-home__top .owl-next:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\",\"border:2px solid #fff\",\"font-size:15px\",\"line-height:15px\"]],[false,{\".new-home__top .owl-prev\":false},[\"margin-right:10px\"]],[false,{\".new-home__top h1\":false},[\"font-size:90px\",\"line-height:90px\",\"color:#fff\",\"font-weight:700\",\"margin:0 0 15px\"]],[false,{\".new-home__top .color-point\":false},[\"color:#24ffff\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__top h1\":false},[\"font-size:45px\",\"line-height:45px\"]],[false,\"}\"],[false,{\".new-home__top h2\":false},[\"line-height:23px\",\"color:#24c1ff\",\"margin:0 0 20px\",\"text-transform:uppercase\",\"border:1px solid #24c1ff\",\"padding:8px 15px\",\"display:inline-block\"]],[false,{\".new-home__top h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-family:\\\"Rajdhani\\\",sans-serif\",\"font-size:20px\",\"font-weight:500\"]],[false,{\".new-home__top h2:after\":false},[\"display:none\"]],[false,{\".new-home__top h3\":false},[\"color:#24c1ff\",\"font-size:23px\",\"line-height:28px\",\"text-transform:inherit\",\"margin-bottom:20px\"]],[false,{\".new-home__top p\":false},[\"color:#fff\",\"font-size:17px\",\"line-height:23px\",\"font-weight:300\"]],[false,{\".new-home__top p a\":false},[\"text-decoration:underline\"]],[false,{\".new-home__top-button\":false},[\"width:250px\",\"height:45px\",\"border:0\",\"background-color:#fff\",\"color:#000\",\"text-transform:uppercase\",\"font-size:15px\",\"font-weight:600\",\"margin-top:20px\"]],[false,{\".new-home__top .owl-dots\":false},[\"position:absolute\",\"bottom:100px\",\"right:15px\"]],[false,{\".new-home__top .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".new-home__top .owl-dot\":false},[\"width:10px\",\"height:10px\",\"border:0\",\"border-radius:50%\",\"display:block\",\"margin:8px 0\"]],[false,{\".new-home__top .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#dbdbde\"]],[false,{\".new-home__top .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#adef7f\"]],[false,{\".new-home__item\":false},[\"background-position:right center\",\"background-size:auto 100%\",\"background-repeat:no-repeat\",\"height:600px\",\"background-color:#121d3d\",\"max-width:1990px\",\"margin:0 auto\",\"position:relative\"]],[false,\"@media (max-width: 1200px){\"],[false,{\".new-home__item\":false},[\"background-size:auto 70%\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__item:not(#_#_#_#_#_#_#_)\":false},[\"background-image:unset\"]],[false,\"}\"],[false,\"@media (max-width: 1000px) and (orientation: landscape){\"],[false,{\".new-home__item:not(#_#_#_#_#_#_#_)\":false},[\"background-image:unset\"]],[false,\"}\"],[false,{\".new-home__top .dot\":false},[\"display:inline-block\",\"color:#b7f254\",\"animation:blinker 1s linear infinite\"]],[false,{\".new-home__video\":false},[\"max-width:55%\",\"height:100%\",\"position:absolute\",\"right:0\",\"top:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__video\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (max-width: 1200px){\"],[false,{\".new-home__video\":false},[\"max-width:50%\"]],[false,\"}\"],[false,\"@media (max-width: 1000px) and (orientation: landscape){\"],[false,{\".new-home__video\":false},[\"display:none\"]],[false,\"}\"],[false,{\".new-home__item .container\":false,\".new-home__item .row\":false},[\"height:100%\"]],[false,{\".new-home__features\":false},[\"width:100%\",\"background-color:#f7f7f7\",\"padding-top:50px\",\"padding-bottom:80px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__features-item\":false},[\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".new-home__post-item\":false},[\"width:100%\",\"height:250px\",\"background-color:#182647\",\"color:#fff\",\"font-size:20px\",\"line-height:25px\",\"padding:25px\"]],[false,{\".new-home__post-button\":false},[\"width:130px\",\"height:40px\",\"border:0\",\"background-color:#182647\",\"color:#fff\",\"text-transform:uppercase\",\"font-size:14px\",\"margin-top:25px\"]],[false,{\".new-home__features-item:nth-child(even)\":false},[\"display:flex\",\"flex-direction:column\"]],[false,{\".new-home__features-item:nth-child(even) .new-home__post-item\":false},[\"background-color:#adef7f\",\"color:#182647\",\"order:2\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__features-item:nth-child(even) .new-home__post-item\":false},[\"order:1\"]],[false,\"}\"],[false,{\".new-home__features-item:nth-child(even) .new-home__post-button\":false},[\"order:1\",\"margin:0 0 25px auto\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__features-item:nth-child(even) .new-home__post-button\":false},[\"order:2\",\"margin:25px 0 0 0\"]],[false,\"}\"],[false,{\".new-home__process\":false},[\"width:100%\",\"background-color:#e6e6e6\",\"padding-bottom:50px\",\"font-size:24px\",\"line-height:30px\",\"color:#182647\"]],[false,{\".new-home__service\":false},[\"padding-bottom:80px\",\"background-color:#f7f7f7\",\"position:relative\",\"overflow:hidden\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".new-home__service\":false},[\"padding-bottom:0\"]],[false,\"}\"],[false,{\".new-home__service h2\":false},[\"color:#6a4896\",\"text-transform:uppercase\",\"font-weight:700\"]],[false,{\".new-home__service-text\":false},[\"background-color:#dbdbde\",\"min-height:470px\",\"padding:80px 15% 80px 15px\",\"font-size:24px\",\"line-height:30px\"]],[false,{\".new-home__service:nth-child(even) .new-home__service-text:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:50vw\",\"height:100%\",\"top:0\",\"left:-50vw\",\"background-color:#dbdbde\",\"z-index:-1\"]],[false,{\".new-home__service:nth-child(odd) .new-home__service-text\":false},[\"padding:80px 15px 80px 15%\"]],[false,{\".new-home__service:nth-child(odd) .new-home__service-text:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:50vw\",\"height:100%\",\"top:0\",\"right:-50vw\",\"background-color:#dbdbde\",\"z-index:-1\"]],[false,\"@media (max-width: 1400px){\"],[false,{\".new-home__service-text\":false},[\"min-height:430px\",\"padding:70px 15%\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".new-home__service-text:not(#_#_#_#_#_#_#_)\":false},[\"padding:70px 10%\"]],[false,{\".new-home__service:nth-child(odd) .new-home__service-text\":false},[\"background-color:#f7f7f7\"]],[false,\"}\"],[false,{\".new-home__service-button\":false},[\"width:130px\",\"height:40px\",\"border:0\",\"background-color:#182647\",\"color:#fff\",\"text-transform:uppercase\",\"font-size:14px\",\"margin-top:100px\"]],[false,{\".new-home__service-image\":false},[\"padding:40px 0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__service-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".new-home__service-image amp-img\":false,\".new-home__service-image amp-anim\":false},[\"background-color:#fff\",\"max-height:390px\",\"margin-left:-25%\",\"box-shadow:4px 4px 8px rgba(173,239,127,.5)\"]],[false,{\".new-home__service:nth-child(odd) .new-home__service-image amp-img\":false,\".new-home__service:nth-child(odd) .new-home__service-image amp-anim\":false},[\"margin-right:-25%\",\"margin-left:auto\",\"box-shadow:-4px 4px 8px rgba(173,239,127,.5)\"]],[false,{\".new-home__case-study\":false},[\"background-color:#c4c4c4\"]],[false,{\".new-home__case-text\":false},[\"padding:80px 15px\",\"font-size:24px\",\"line-height:30px\"]],[false,{\".new-home__case-text .preh\":false},[\"font-size:32px\",\"line-height:37px\",\"color:#6a4896\",\"text-transform:uppercase\",\"margin-bottom:15px\",\"display:block\"]],[false,{\".new-home__case-text h2\":false},[\"font-size:40px\",\"line-height:47px\"]],[false,{\".new-home__case-button\":false},[\"width:130px\",\"height:40px\",\"border:0\",\"background-color:#182647\",\"color:#fff\",\"text-transform:uppercase\",\"font-size:14px\",\"margin-top:25px\"]],[false,{\".new-home__case-img\":false},[\"height:410px\",\"margin:30px 0\"]],[false,{\".new-home__clients\":false},[\"width:100%\",\"background-color:#f7f7f7\",\"padding-top:80px\",\"padding-bottom:40px\"]],[false,{\".new-home__clients .owl-item\":false},[\"box-shadow:4px 7px 7px rgba(196,196,196,.6)\",\"margin-bottom:30px\"]],[false,{\".new-home__clients .item\":false},[\"background-color:#fff\",\"display:flex\",\"justify-content:center\",\"align-items:center\",\"height:145px\"]],[false,{\".new-home__clients .item amp-img\":false,\".new-home__clients .item amp-anim\":false},[\"width:auto\",\"max-width:90%\",\"max-height:90%\"]],[false,{\".new-home__clients .owl-dots\":false},[\"text-align:center\"]],[false,{\".new-home__clients .owl-dot\":false},[\"width:10px\",\"height:10px\",\"border-radius:50%\",\"margin:0 4px\"]],[false,{\".new-home__clients .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#bbb\"]],[false,{\".new-home__clients .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#5b5b5b\"]],[false,{\".new-home__contact\":false},[\"width:100%\",\"background-color:#f7f7f7\",\"padding-top:20px\"]],[false,{\".new-home__contact--intern\":false},[\"background-color:#182647\",\"padding-top:0px\"]],[false,{\".new-home__contact--intern .wpcf7-response-output\":false},[\"color:#fff\"]],[false,{\".new-home__contact-form\":false},[\"padding:20px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__contact-form\":false},[\"margin-right:15px\",\"max-width:100%\"]],[false,\"}\"],[false,{\".new-home__contact-form .row\":false},[\"margin-left:-10px\",\"margin-right:-10px\"]],[false,{\".new-home__contact-form .col-lg-6\":false,\".new-home__contact-form .col-12\":false},[\"padding-right:10px\",\"padding-left:10px\"]],[false,{\".new-home__input\":false},[\"height:40px\",\"width:100%\",\"background:#f7f7f7\",\"color:#182647\",\"line-height:40px\",\"border:0\",\"margin-bottom:20px\",\"border-radius:0\",\"padding:0 10px\"]],[false,{\".new-home__textarea\":false},[\"height:145px\",\"width:100%\",\"background:#f7f7f7\",\"color:#182647\",\"border:0\",\"margin-bottom:15px\",\"border-radius:0\",\"padding:5px 10px\"]],[false,{\".new-home__input-btn\":false},[\"width:80px\",\"height:40px\",\"background-color:#f7f7f7\",\"color:#182647\",\"border:0\",\"text-transform:uppercase\",\"font-size:14px\"]],[false,{\"#wpgmza_map:not(#_#_#_#_#_#_#_)\":false},[\"height:100%\"]],[false,\"@media (max-width: 768px){\"],[false,{\"#wpgmza_map\":false},[\"margin-left:15px\"]],[false,{\"#wpgmza_map:not(#_#_#_#_#_#_#_)\":false},[\"height:301px\",\"width:calc(100% - 30px)\"]],[false,\"}\"],[false,{\".what__top\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"padding-top:100px\"]],[false,{\".what__top--carousel\":false},[\"height:auto\"]],[false,{\".what__top--desktop:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".what__top--mobile:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".what__top .owl-dots\":false},[\"position:absolute\",\"bottom:100px\",\"right:15px\",\"height:auto\"]],[false,{\".what__top .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".what__top .owl-dot\":false},[\"width:10px\",\"height:10px\",\"border:0\",\"border-radius:50%\",\"display:block\",\"margin:8px 0\"]],[false,{\".what__top .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#dbdbde\"]],[false,{\".what__top .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#adef7f\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".what__top--desktop:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".what__top--mobile:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,\"}\"],[false,{\".what__top div\":false},[\"height:100%\"]],[false,{\".what__featured\":false},[\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[false,{\".what__featured amp-img\":false,\".what__featured amp-anim\":false},[\"max-height:100%\"]],[false,{\".what__content\":false},[\"background-color:#f7f7f7\",\"padding:40px 0 0\",\"color:#182647\",\"font-size:20px\",\"line-height:24px\"]],[false,{\".what__content .wp-block-button__link\":false},[\"width:auto\",\"border:0\",\"background-color:#182647\",\"text-transform:uppercase\",\"font-size:14px\",\"line-height:20px\",\"border-radius:0\",\"margin-bottom:25px\"]],[false,{\".what__content .wp-block-button__link:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".what__clients\":false},[\"background-color:#f7f7f7\",\"padding:0 0 40px\",\"color:#182647\",\"font-size:20px\",\"line-height:30px\"]],[false,{\".what__content h1\":false},[\"font-size:40px\",\"line-height:40px\",\"color:#182647\",\"margin-bottom:20px\",\"padding-bottom:20px\",\"font-weight:700\"]],[false,{\".what__content h1:after\":false},[\"width:470px\",\"max-width:100%\",\"height:1px\",\"left:0\",\"bottom:0\",\"content:\\\"\\\"\",\"background-color:#182647\",\"position:absolute\",\"box-shadow:3px 3px 12px rgba(24,38,71,.4)\"]],[false,{\".what__content h2\":false,\".what__clients h2\":false},[\"font-weight:700\"]],[false,{\".what__content h3\":false,\".what__clients h3\":false},[\"font-size:24px\",\"line-height:30px\"]],[false,{\".what__content h4\":false},[\"margin-bottom:40px\"]],[false,{\".what__content p\":false},[\"margin-bottom:25px\"]],[false,{\".what__content p amp-img\":false,\".what__content p amp-anim\":false},[\"vertical-align:bottom\"]],[false,{\".what__content p + h2\":false},[\"margin-top:40px\"]],[false,{\".what__content amp-img\":false,\".what__content amp-anim\":false},[\"width:100%\"]],[false,{\".client-testimonial\":false},[\"width:calc(50% - 30px)\",\"max-width:50%\",\"position:relative\",\"min-height:1px\",\"margin-right:15px\",\"margin-left:15px\",\"padding:15px\",\"box-shadow:4px 7px 7px rgba(196,196,196,.6)\",\"margin-bottom:40px\"]],[false,\"@media (max-width: 960px){\"],[false,{\".client-testimonial\":false},[\"width:calc(100% - 30px)\",\"max-width:unset\"]],[false,\"}\"],[false,{\".client-testimonial p\":false},[\"margin-bottom:0\"]],[false,{\".client-testimonial p + strong\":false},[\"margin-top:20px\",\"display:block\"]],[false,{\".client-testimonial:nth-child(even)\":false},[\"color:#182647\",\"background-color:#adef7f\"]],[false,{\".client-testimonial:nth-child(odd)\":false},[\"background-color:#182647\",\"color:#adef7f\"]],[false,{\".whats-next__img\":false},[\"width:100%\",\"height:230px\",\"background-color:#c4c4c4\",\"margin-bottom:25px\"]],[false,{\".green-background\":false},[\"background-color:#adef7f\",\"padding:40px 0\",\"margin-bottom:40px\"]],[false,{\".green-background h4\":false},[\"margin-bottom:0\",\"line-height:34px\"]],[false,{\".wp-block-quote\":false},[\"background-color:#fff\",\"padding:25px 100px\",\"margin:40px auto\"]],[false,{\".wp-block-quote p\":false},[\"color:#6a4896\",\"font-weight:700\",\"font-size:28px\",\"line-height:32px\"]],[false,{\".wp-block-quote cite\":false},[\"font-style:inherit\",\"font-size:14px\"]],[false,{\".wp-block-quote cite amp-img\":false,\".wp-block-quote cite amp-anim\":false},[\"vertical-align:bottom\"]],[false,{\".wp-block-columns\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-columns.nospace:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".wp-block-columns .wp-block-image\":false,\".wp-block-columns .mrdata\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-columns .mrdata\":false},[\"line-height:38px\"]],[false,{\".wp-block-columns .mrdata amp-img\":false,\".wp-block-columns .mrdata amp-anim\":false},[\"width:auto\"]],[false,{\".kubernetes__section\":false},[\"color:white\",\"width:100%\",\"position:relative\",\"padding:0\",\"border-bottom:1px solid #6490eb\",\"background-repeat:no-repeat\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__section\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,{\".kubernetes__section h1\":false},[\"position:relative\",\"font-weight:700\",\"line-height:50px\",\"font-size:50px\",\"color:#fff\",\"margin:0 0 20px\",\"padding-top:30px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__section h1\":false},[\"line-height:30px\",\"font-size:30px\"]],[false,\"}\"],[false,{\".kubernetes__section h1:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".kubernetes__section h1:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__section h1:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".kubernetes__section h2\":false},[\"position:relative\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"color:#fff\",\"margin:0 0 5px\"]],[false,{\".kubernetes__section h2:after\":false},[\"display:none\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__section .wrap-image\":false},[\"margin-top:100px\",\"position:relative\"]],[false,{\".kubernetes__section .wrap-image:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".kubernetes__section .wrap-image:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"}\"],[false,{\".kubernetes__section .service-padding\":false},[\"padding:100px 0\",\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__section .service-padding\":false},[\"padding:0 0 100px\"]],[false,\"}\"],[false,{\".kubernetes__section .subitems .item\":false},[\"color:#fff\",\"font-family:\\\"Rajdhani\\\"\"]],[false,{\".kubernetes__section button\":false},[\"height:40px\",\"border:0\",\"background-color:#fff\",\"color:#182647\",\"text-transform:uppercase\",\"font-size:14px\",\"font-weight:600\",\"vertical-align:top\",\"padding:0 20px\"]],[false,{\".kubernetes__services\":false},[\"margin-bottom:100px\"]],[false,{\".kubernetes__service\":false},[\"margin-bottom:10px\"]],[false,{\".kubernetes__section--1\":false},[\"background-color:#03173c\",\"margin-top:100px\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/03\\/watermark-1.png\\\")\",\"background-position:top 30px right\"]],[false,{\".kubernetes__section--2\":false},[\"background-color:#142453\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/03\\/watermark-4.png\\\")\",\"background-position:top 30px left 30px\"]],[false,{\".kubernetes__section--3\":false},[\"background-color:#03173c\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/03\\/watermark-2.png\\\")\",\"background-position:top -100px right -50px\"]],[false,{\".kubernetes__section--4\":false},[\"background-color:#142453\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/03\\/watermark-3.png\\\")\",\"background-position:top 30px left 30px\"]],[false,{\".tek__section\":false},[\"width:100%\",\"position:relative\",\"padding:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek__section\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,{\".tek__section h1\":false},[\"position:relative\",\"font-weight:700\",\"line-height:50px\",\"font-size:50px\",\"color:#152649\",\"margin:0 0 20px\",\"padding-top:30px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek__section h1\":false},[\"line-height:30px\",\"font-size:30px\"]],[false,\"}\"],[false,{\".tek__section h1:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".tek__section h1:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek__section h1:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".tek__section h2\":false},[\"position:relative\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"margin:0 0 5px\"]],[false,{\".tek__section h2:after\":false},[\"display:none\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek__section .wrap-image\":false},[\"margin-top:100px\",\"position:relative\"]],[false,{\".tek__section .wrap-image:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"transition:all .3s ease-in-out\",\"top:-20px\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".tek__section .wrap-image:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"}\"],[false,{\".tek__section .service-padding\":false},[\"padding:100px 0\",\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek__section .service-padding\":false},[\"padding:0 0 100px\"]],[false,\"}\"],[false,{\".tek__section--1\":false},[\"margin-top:100px\"]],[false,{\".tek__section--2\":false},[\"background-color:#efefef\"]],[false,{\".tek__section--4\":false},[\"background-color:#efefef\"]],[false,{\".tek__section--6\":false},[\"background-color:#efefef\"]],[true,{\".devops-styles\":true},[\"font-size:21px\",\"line-height:30px\"]],[true,{\".devops-styles h2\":true},[\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:40px\",\"font-weight:600\"]],[true,{\".devops-styles h2:after\":true},[\"display:none\"]],[false,{\".devops-styles .what__top\":false},[\"padding-top:0\"]],[false,{\".devops__top\":false},[\"width:100%\",\"position:relative\",\"background-color:#03173c\",\"margin-top:100px\"]],[false,{\".devops__top-title\":false},[\"position:absolute\",\"z-index:1\",\"top:0\",\"left:50%\",\"display:flex\",\"height:100%\",\"align-items:center\"]],[false,{\".devops__top-title--noshow\":false},[\"pointer-events:none\"]],[false,{\".devops__top-title--noshow:not(#_#_#_#_#_#_#_)\":false},[\"opacity:0\"]],[false,{\".devops__top-title h1:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__top-title h1\":false},[\"font-size:23px\",\"line-height:28px\"]],[false,\"}\"],[false,{\".devops__content\":false},[\"padding:70px 0 20px\",\"color:#787878\"]],[false,{\".devops__content h1\":false},[\"color:#182647\",\"font-size:40px\"]],[false,{\".devops__content .mr-data\":false},[\"margin:40px auto 0\"]],[false,{\".devops__content .mr-data amp-img\":false,\".devops__content .mr-data amp-anim\":false},[\"width:100%\",\"height:auto\",\"max-height:100%\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__content .mr-data amp-img\":false,\".devops__content .mr-data amp-anim\":false},[\"width:50%\",\"margin-bottom:20px\"]],[false,\"}\"],[false,{\".devops__content .mr-data strong\":false},[\"color:#09aeec\"]],[false,{\".devops__quote\":false},[\"background-color:#e6e6e6\",\"padding:70px 0\",\"text-align:center\",\"position:relative\",\"color:#03173c\"]],[false,{\".devops__quote-button\":false},[\"width:350px\",\"height:45px\",\"color:#fff\",\"border:0\",\"background-color:#09aeec\",\"text-transform:uppercase\",\"font-weight:600\",\"position:absolute\",\"bottom:-25px\",\"left:calc(50% - 175px)\",\"z-index:1\"]],[false,{\".devops__author amp-img\":false,\".devops__author amp-anim\":false},[\"height:25px\",\"margin-right:10px\"]],[false,{\".devops__solution\":false},[\"padding:0 0 70px\",\"color:#787878\"]],[false,{\".devops__solution .blue\":false},[\"color:#09aeec\"]],[false,{\".devops__solution small\":false},[\"display:block\",\"padding-left:20px\",\"border-left:9px solid #09aeec\",\"font-size:20px\"]],[false,{\".devops__roadmap\":false},[\"padding:80px 0 70px\"]],[false,{\".devops__services\":false},[\"padding:120px 0 150px\",\"background-color:#e6e6e6\",\"margin-top:-150px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__services\":false},[\"padding:50px 0\",\"background-color:#e6e6e6\",\"margin-top:0\"]],[false,\"}\"],[false,{\".devops__services .border-item\":false},[\"border-left:5px solid #09aeec\",\"padding-left:10px\",\"margin-top:20px\",\"line-height:21px\"]],[false,{\".devops__services .list-item\":false},[\"padding-left:20px\"]],[false,{\".devops__phrase\":false},[\"position:relative\",\"color:#03173c\"]],[false,{\".devops__phrase .container\":false},[\"position:relative\"]],[false,{\".devops__phrase .row\":false},[\"background-color:#fff\",\"border-radius:10px\",\"padding:30px\",\"top:-110px\",\"position:absolute\",\"z-index:1\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__phrase .row\":false},[\"position:relative\",\"top:0\",\"border-radius:0\"]],[false,\"}\"],[false,{\".devops__ready-to-compete\":false},[\"padding:150px 0 70px\",\"background-color:#03173c\",\"position:relative\",\"color:#fff\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__ready-to-compete\":false},[\"padding:50px 0\"]],[false,\"}\"],[false,{\".devops__ready-to-compete h3\":false},[\"text-transform:none\",\"color:#fff\",\"font-weight:400\",\"margin-bottom:30px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".devops__tags\":false},[\"background-color:#e6e6e6\",\"padding:70px 0\",\"text-align:center\",\"position:relative\"]],[false,{\".devops__tag\":false},[\"display:inline-block\",\"margin:0 0 10px 20px\",\"padding-left:20px\",\"border-left:1px solid #03173c\",\"font-weight:600\",\"color:#03173c\"]],[false,{\".devops__tag:first-child\":false,\".devops__tag:nth-child(3n + 4)\":false},[\"border-left:0\",\"margin-left:0\",\"padding-left:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__tag\":false},[\"width:100%\",\"display:block\"]],[false,{\".devops__tag:not(#_#_#_#_#_#_#_)\":false},[\"border:0\",\"margin:20px 0\"]],[false,\"}\"],[false,{\".devops__services2\":false},[\"padding:70px 0\",\"color:#787878\"]],[false,{\".devops__services2 .p-bg\":false},[\"background-color:#b7bbc4\",\"color:#fff\",\"padding:10px 0\",\"margin-bottom:40px\"]],[false,{\".devopos__service-item\":false},[\"border-bottom:1px solid #b7bbc4\",\"padding-bottom:10px\",\"margin-bottom:10px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devopos__service-item:first-child\":false},[\"margin-top:30px\"]],[false,\"}\"],[false,{\".devops-styles .phrase\":false},[\"padding:0\"]],[false,{\".devops-styles .phrase h2\":false},[\"color:#fff\",\"font-weight:500\",\"line-height:44px\"]],[false,{\".devops-styles .phrase__wrap-content\":false},[\"bottom:230px\"]],[false,{\".app__about\":false},[\"background-color:#fafafa\",\"padding:70px 0 100px\"]],[false,{\".app__about h1\":false},[\"color:#182647\",\"font-size:40px\"]],[false,{\".app__about .top-section strong\":false},[\"color:#8218e5\"]],[false,{\".app__about .gray-bg\":false},[\"background-color:#e6e6e6\",\"color:#787878\",\"text-align:center\",\"padding:10px\",\"margin-bottom:40px\"]],[false,{\".app__about .gray-bg strong\":false},[\"color:#787878\"]],[false,{\".app__about h3\":false},[\"color:#8218e5\",\"font-size:35px\",\"line-height:35px\",\"text-transform:inherit\"]],[false,{\".app__about .blue\":false,\".app__about .blue strong\":false},[\"color:#182647\"]],[false,{\".app__slider\":false},[\"background-color:#fff\",\"position:relative\"]],[false,{\".app__slider h2.link-to\":false},[\"padding-bottom:0\",\"font-size:30px\",\"clear:both\",\"margin-bottom:0\",\"margin-top:40px\"]],[false,{\".app__slider h2.link-to amp-img\":false,\".app__slider h2.link-to amp-anim\":false},[\"height:35px\",\"float:left\",\"margin-right:20px\"]],[false,{\".app__slider h2.pink\":false},[\"color:#8218e5\"]],[false,{\".app__slider h2.blue\":false},[\"color:#2678f2\"]],[false,{\".app__slider .side-img\":false},[\"height:700px\"]],[false,{\".app__slider .side-img:not(#_#_#_#_#_#_#_)\":false},[\"width:auto\"]],[false,{\".app__slider .icon-img\":false},[\"margin-bottom:30px\"]],[false,{\".app__slider .icon-img:not(#_#_#_#_#_#_#_)\":false},[\"width:auto\"]],[false,{\".app__slider .owl-nav\":false},[\"position:relative\",\"width:50%\",\"margin:-50px auto 20px\",\"text-align:right\",\"padding-left:15px\",\"padding-right:10px\",\"display:inline-flex\",\"align-items:center\",\"justify-content:flex-end\"]],[false,{\".app__slider .owl-prev\":false,\".app__slider .owl-next\":false},[\"width:30px\",\"height:30px\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"margin-bottom:10px\"]],[false,{\".app__slider .owl-prev:not(#_#_#_#_#_#_#_)\":false,\".app__slider .owl-next:not(#_#_#_#_#_#_#_)\":false},[\"color:#152649\",\"border:2px solid #152649\",\"font-size:15px\",\"line-height:15px\"]],[false,{\".app__slider .owl-prev\":false},[\"margin-right:10px\"]],[false,{\".app__slider .owl-dots\":false},[\"width:50%\",\"margin:-50px auto 20px\",\"text-align:left\",\"position:relative\",\"display:inline-block\",\"padding-left:10px\"]],[false,{\".app__slider .owl-dot\":false},[\"width:15px\",\"height:15px\",\"border-radius:50%\",\"margin-right:30px\"]],[false,{\".app__slider .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#e0e0e0\"]],[false,{\".app__slider .owl-dot:last-child\":false},[\"margin:0\"]],[false,{\".app__slider .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#182647\"]],[false,\"@media (max-width: 1020px){\"],[false,{\".app__slider .hide-mobile\":false},[\"display:none\"]],[false,\"}\"],[false,{\".app__image1\":false},[\"padding:70px 0 0\",\"background-color:#fff\"]],[false,{\".app__image1 h4\":false},[\"font-size:31px\",\"line-height:40px\",\"font-weight:600\",\"margin-bottom:25px\"]],[false,{\".app__tags\":false},[\"text-align:center\",\"margin-top:20px\",\"margin-bottom:50px\",\"color:#09aeec\",\"font-weight:700\"]],[false,{\".app__quote\":false},[\"background-color:#e6e6e6\",\"padding:100px 0 70px\",\"margin-top:-80px\",\"color:#182647\"]],[false,{\".app__quote .gray\":false},[\"margin-bottom:40px\",\"color:#818181\"]],[false,{\".app__image2\":false},[\"padding:70px 0 0\"]],[false,{\".app__image2 h4\":false},[\"font-size:28px\",\"line-height:37px\",\"font-weight:600\",\"margin-bottom:25px\",\"text-align:center\"]],[false,{\".app__solutions\":false},[\"background-color:#e6e6e6\",\"padding:200px 0 70px\",\"margin-top:-150px\",\"color:#182647\"]],[false,{\".app__solutions .quote-button\":false},[\"width:350px\",\"height:45px\",\"color:#fff\",\"border:0\",\"background-color:#09aeec\",\"text-transform:uppercase\",\"font-weight:600\",\"margin-bottom:40px\"]],[false,{\".app__solutions .upper-space\":false},[\"margin-top:80px\"]],[false,{\".app__solutions strong\":false},[\"color:#09aeec\"]],[false,{\".app__values\":false},[\"padding:70px 0 200px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".app__values\":false},[\"padding:50px 0\"]],[false,\"}\"],[false,{\".app__values strong\":false,\".app__values i\":false},[\"color:#09aeec\"]],[false,{\".app__values i\":false},[\"margin-right:10px\"]],[false,{\".app__values .blue\":false},[\"color:#182647\",\"font-weight:700\",\"margin-bottom:30px\"]],[false,{\".app__values-phrase\":false},[\"margin-top:50px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:30px\",\"font-weight:600\",\"color:#182647\"]],[false,{\".new-home__posts-upper-title\":false},[\"background-color:#fff\",\"padding:50px 0 200px\",\"color:#182647\",\"font-size:40px\",\"line-height:45px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".new-home__posts-upper-title\":false},[\"padding:50px 0\"]],[false,\"}\"],[false,{\".new-home__posts\":false},[\"width:100%\",\"background-color:#e6e6e6\",\"padding-bottom:80px\"]],[false,{\".new-home__process h2\":false},[\"position:relative\",\"overflow:hidden\"]],[false,{\".new-home__process h2:after\":false},[\"width:100%\",\"height:1px\",\"background-color:#182647\",\"top:18px\",\"left:280px\",\"position:absolute\",\"content:\\\"\\\"\"]],[false,{\".new-home__process h2:after:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".new-home__posts-wrap\":false},[\"display:grid\"]],[false,{\".new-home__posts-item\":false},[\"margin-top:-150px\",\"width:100%\",\"background-color:#fff\",\"color:#787878\",\"font-size:18px\",\"line-height:30px\",\"padding:25px\",\"border-top:10px solid #09aeec\",\"border-radius:0 0 10px 10px\",\"box-shadow:4px 7px 7px rgba(196,196,196,.6)\",\"display:flex\",\"flex-direction:column\",\"justify-content:space-between\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".new-home__posts-item\":false},[\"margin-top:0\",\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".new-home__posts-title\":false},[\"color:#09aeec\",\"font-size:25px\",\"line-height:30px\",\"font-weight:800\",\"margin-bottom:15px\"]],[false,{\".new-home__posts-button\":false},[\"width:130px\",\"height:40px\",\"border:0\",\"background-color:#09aeec\",\"color:#fff\",\"text-transform:uppercase\",\"font-size:14px\",\"margin-top:25px\",\"font-weight:700\"]],[false,{\".new-home__posts-wrap:nth-child(even) .new-home__posts-item\":false},[\"border-top:10px solid #182647\"]],[false,{\".new-home__posts-wrap:nth-child(even) .new-home__posts-title\":false},[\"color:#182647\"]],[false,{\".new-home__posts-wrap:nth-child(even) .new-home__posts-button\":false},[\"background-color:#182647\"]],[false,{\".new-home__process\":false},[\"padding:0 0 250px\",\"color:#787878\",\"font-size:18px\",\"line-height:30px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".new-home__process\":false},[\"padding:0 0 50px\"]],[false,\"}\"],[false,{\".new-home__process h3\":false},[\"color:#182647\",\"font-size:25px\",\"line-height:30px\",\"font-weight:800\",\"margin-bottom:15px\",\"text-transform:none\"]],[false,{\".new-home__process a\":false},[\"color:#09aeec\",\"text-decoration:underline\"]],[false,{\".new-home__services\":false},[\"background-color:#fff\",\"padding:0 0 200px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".new-home__services\":false},[\"padding:50px 20px\"]],[false,\"}\"],[false,{\".new-home__service-item\":false},[\"background-color:#fff\",\"border-bottom:10px solid #09aeec\",\"border-radius:10px 10px 0 0\",\"box-shadow:7px 3px 18px rgba(196,196,196,.6)\",\"margin-bottom:40px\",\"padding:10px 10px 0\"]],[false,{\".new-home__service-item:nth-child(odd) .new-home__service-item-text\":false},[\"padding:50px 0 50px 80px\"]],[false,{\".new-home__service-item:nth-child(even) .new-home__service-item-text\":false},[\"padding:50px 80px 50px 0\"]],[false,{\".new-home__service-item .different-icon\":false},[\"float:left\",\"margin-right:13px\",\"margin-top:10px\"]],[false,{\".new-home__service-item strong\":false},[\"color:#09aeec\"]],[false,{\".new-home__service-item button\":false},[\"margin-bottom:20px\"]],[false,{\".new-home__service-item--1\":false},[\"margin-top:-150px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".new-home__service-item-text:not(#_#_#_#_#_#_#_)\":false},[\"padding:30px\"]],[false,{\".new-home__service-item-text amp-img\":false,\".new-home__service-item-text amp-anim\":false},[\"display:none\"]],[false,{\".new-home__service-item--1\":false},[\"margin-top:0\"]],[false,\"}\"],[false,{\".partners--new\":false},[\"padding:50px 0 40px\"]],[false,{\".partners--new .owl-dots .owl-dot\":false},[\"width:10px\",\"height:10px\",\"border-radius:50%\"]],[false,{\".partners--new .owl-dots .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#e5e5e5\"]],[false,{\".partners--new .owl-dots .owl-dot.active\":false},[\"width:10px\",\"height:10px\"]],[false,{\".partners--new .owl-dots .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#00abeb\"]],[false,{\".new-home__process--img\":false},[\"width:56px\",\"height:62px\"]],[false,{\".new-home__services--img\":false},[\"width:50px\",\"height:55px\"]],[true,{\".new-header__logo amp-img\":true,\".new-header__logo amp-anim\":false},[\"width:100%\",\"height:100%\"]],[false,{\".revslider-subtitle-home:not(#_#_#_#_#_#_#_)\":false},[\"background-color:red\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":262,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/default-theme.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"f6edf5f7585de26e26e3d9795f4be840\",\"parse_time\":0.0013489723205566406,\"shake_time\":4.0531158447265625e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".default__btn-green\":false},[\"background:transparent linear-gradient(90deg,#27d9cb 0%,#a1f266 100%)\"]],[false,{\".default__btn-blue\":false},[\"background-color:#23bbff\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2687,\"final_size\":1031,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-clients\\/our-clients.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"8b21ca69c88569bdc8a03e02863f336e\",\"parse_time\":0.021306991577148438,\"shake_time\":3.2901763916015625e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".cp-our-clients\":true},[\"background-color:#fff\",\"padding:2rem 0\"]],[false,{\".cp-our-clients__button\":false},[\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[false,{\".cp-our-clients__button div\":false},[\"writing-mode:vertical-rl\",\"transform:rotate(180deg)\",\"font-family:raleway,sans-serif\",\"font-weight:500\",\"border:1px solid #979797\",\"padding:0 .2rem\",\"color:#979797\",\"font-size:.9rem\",\"cursor:pointer\",\"height:110px\",\"text-align:center\"]],[true,{\".cp-our-clients__slider-child .item\":true},[\"display:table\",\"width:100%\",\"height:100px\"]],[true,{\".cp-our-clients__wrap-item\":true},[\"width:100%\",\"height:100%\",\"display:table-row\"]],[true,{\".cp-our-clients__image\":true},[\"width:100%\",\"height:100%\",\"display:table-cell\",\"vertical-align:middle\",\"text-align:center\"]],[false,{\".cp-our-clients__image picture amp-img\":false,\".cp-our-clients__image picture amp-anim\":false},[\"max-width:80%\",\"max-height:70px\",\"height:auto\",\"filter:grayscale(1)\"]],[false,{\".cp-our-clients__image picture amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".cp-our-clients__image picture amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:auto\",\"display:inline-block\"]],[true,{\".cp-our-clients__slider\":true},[\"align-items:center\"]],[true,{\".cp-our-clients__slider:not(#_#_#_#_#_#_#_)\":true},[\"display:flex\"]],[false,{\".cp-our-clients__button--our-partners\":false},[\"display:none\"]],[false,{\".cp-our-clients__slider .owl-dot.active span:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#53c8fd\"]],[true,{\".cp-our-clients__icon\":true},[\"display:none\"]],[true,\"@media (max-width: 575.98px){\"],[false,{\".cp-our-clients__button div\":false},[\"writing-mode:horizontal-tb\",\"transform:none\",\"height:auto\",\"padding:.2rem .5rem\",\"margin-bottom:.5rem\"]],[true,{\".cp-our-clients__slider\":true},[\"margin-top:1rem\"]],[true,{\".cp-our-clients__slider:not(#_#_#_#_#_#_#_)\":true},[\"display:block\"]],[true,{\".cp-our-clients\":true},[\"padding:0 0 2rem\"]],[true,{\".cp-our-clients__icon\":true},[\"text-align:center\",\"position:relative\",\"margin:0 auto\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"margin-bottom:2rem\"]],[true,{\".cp-our-clients__icon--box\":true},[\"position:absolute\",\"top:-35px\",\"background:#f2f2f2\",\"width:25%\",\"margin:0 auto\",\"align-items:center\",\"justify-content:center\",\"display:none\",\"height:50px\",\"border-radius:100px 100px 0px 0px\"]],[true,{\".cp-our-clients__icon-down\":true},[\"color:#53c8fd\",\"border-radius:40px 40px 0px 0px\",\"font-size:1.5rem\"]],[true,\"}\"],[false,\"@media (min-width: 600px) and (max-width: 768px){\"],[false,{\".cp-our-clients__image picture amp-img\":false,\".cp-our-clients__image picture amp-anim\":false},[\"max-width:60%\"]],[false,\"}\"]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":2687,\"final_size\":1031,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-clients\\/our-clients.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"8b21ca69c88569bdc8a03e02863f336e\",\"parse_time\":0.021306991577148438,\"shake_time\":3.719329833984375e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".cp-our-clients\":true},[\"background-color:#fff\",\"padding:2rem 0\"]],[false,{\".cp-our-clients__button\":false},[\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[false,{\".cp-our-clients__button div\":false},[\"writing-mode:vertical-rl\",\"transform:rotate(180deg)\",\"font-family:raleway,sans-serif\",\"font-weight:500\",\"border:1px solid #979797\",\"padding:0 .2rem\",\"color:#979797\",\"font-size:.9rem\",\"cursor:pointer\",\"height:110px\",\"text-align:center\"]],[true,{\".cp-our-clients__slider-child .item\":true},[\"display:table\",\"width:100%\",\"height:100px\"]],[true,{\".cp-our-clients__wrap-item\":true},[\"width:100%\",\"height:100%\",\"display:table-row\"]],[true,{\".cp-our-clients__image\":true},[\"width:100%\",\"height:100%\",\"display:table-cell\",\"vertical-align:middle\",\"text-align:center\"]],[false,{\".cp-our-clients__image picture amp-img\":false,\".cp-our-clients__image picture amp-anim\":false},[\"max-width:80%\",\"max-height:70px\",\"height:auto\",\"filter:grayscale(1)\"]],[false,{\".cp-our-clients__image picture amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".cp-our-clients__image picture amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:auto\",\"display:inline-block\"]],[true,{\".cp-our-clients__slider\":true},[\"align-items:center\"]],[true,{\".cp-our-clients__slider:not(#_#_#_#_#_#_#_)\":true},[\"display:flex\"]],[false,{\".cp-our-clients__button--our-partners\":false},[\"display:none\"]],[false,{\".cp-our-clients__slider .owl-dot.active span:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#53c8fd\"]],[true,{\".cp-our-clients__icon\":true},[\"display:none\"]],[true,\"@media (max-width: 575.98px){\"],[false,{\".cp-our-clients__button div\":false},[\"writing-mode:horizontal-tb\",\"transform:none\",\"height:auto\",\"padding:.2rem .5rem\",\"margin-bottom:.5rem\"]],[true,{\".cp-our-clients__slider\":true},[\"margin-top:1rem\"]],[true,{\".cp-our-clients__slider:not(#_#_#_#_#_#_#_)\":true},[\"display:block\"]],[true,{\".cp-our-clients\":true},[\"padding:0 0 2rem\"]],[true,{\".cp-our-clients__icon\":true},[\"text-align:center\",\"position:relative\",\"margin:0 auto\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"margin-bottom:2rem\"]],[true,{\".cp-our-clients__icon--box\":true},[\"position:absolute\",\"top:-35px\",\"background:#f2f2f2\",\"width:25%\",\"margin:0 auto\",\"align-items:center\",\"justify-content:center\",\"display:none\",\"height:50px\",\"border-radius:100px 100px 0px 0px\"]],[true,{\".cp-our-clients__icon-down\":true},[\"color:#53c8fd\",\"border-radius:40px 40px 0px 0px\",\"font-size:1.5rem\"]],[true,\"}\"],[false,\"@media (min-width: 600px) and (max-width: 768px){\"],[false,{\".cp-our-clients__image picture amp-img\":false,\".cp-our-clients__image picture amp-anim\":false},[\"max-width:60%\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":3124,\"final_size\":1911,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/cloud-native\\/cloud-native.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"33c80fa7ffda8a897d0576def3234372\",\"parse_time\":0.04736495018005371,\"shake_time\":4.601478576660156e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".cp-cloud-native\":true},[\"padding:1rem 0 8rem\",\"background-repeat:no-repeat\",\"background-size:cover\",\"background-position-x:center\",\"background-position-y:top\"]],[true,{\".cp-cloud-native__title\":true},[\"margin:3rem 0 5rem\",\"text-align:center\",\"color:#121d3d\",\"font-size:2rem\",\"font-family:raleway,sans-serif\"]],[true,{\".cp-cloud-native__title:not(#_#_#_#_#_#_#_)\":true},[\"font-weight:400\"]],[true,{\".cp-cloud-native__title strong\":true},[\"font-weight:900\"]],[true,{\".cp-cloud-native__desktop\":true},[\"display:block\"]],[true,{\".cp-cloud-native__mobile\":true},[\"display:none\"]],[true,{\".cp-cloud-native__box\":true},[\"padding:3rem 4rem 1rem\",\"background:#fff\",\"border-top:10px solid #121d3d\",\"border-radius:0px 0px 9px 9px\",\"box-shadow:0px 8px 10px rgba(0,0,0,.16)\"]],[true,{\".cp-cloud-native__subtitle\":true},[\"font-weight:900\",\"font-family:\\\"Roboto\\\",sans-serif\",\"color:#121d3d\",\"margin:0\",\"line-height:46px\",\"font-size:38px\"]],[true,{\".cp-cloud-native__btn\":true},[\"color:#fff\",\"background:transparent linear-gradient(90deg,#27d9cb 0%,#a1f266 100%)\",\"height:45px\",\"border:0\",\"text-transform:uppercase\",\"font-size:15px\",\"font-weight:bold\",\"margin-top:20px\",\"padding:0 2rem\",\"cursor:pointer\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[true,{\".cp-cloud-native__text\":true},[\"color:#707070\",\"padding:0 2rem\",\"font-size:1.3rem\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:300\"]],[false,{\".cp-cloud-native__box .owl-dot.active span:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#53c8fd\"]],[false,{\".cp-cloud-native__box .owl-dot\":false},[\"outline:none\"]],[true,\"@media (max-width: 575.98px){\"],[true,{\".cp-cloud-native__title\":true},[\"font-size:1.3rem\",\"margin:1rem 0 1.5rem\"]],[true,{\".cp-cloud-native__title strong\":true},[\"display:block\"]],[true,{\".cp-cloud-native__box\":true},[\"padding:3rem 1rem\",\"border-top:15px solid #121d3d\"]],[true,{\".cp-cloud-native__subtitle\":true},[\"font-size:1.3rem\",\"text-align:center\"]],[true,{\".cp-cloud-native__desktop\":true},[\"display:none\"]],[true,{\".cp-cloud-native__mobile\":true},[\"display:block\"]],[true,{\".cp-cloud-native__mobile--container\":true},[\"display:block\",\"width:100%\",\"padding:.5rem .5rem 2rem\"]],[false,{\".cp-cloud-native__box .owl-dot.active span:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#53c8fd\"]],[true,{\".cp-cloud-native__text\":true},[\"font-size:1rem\",\"margin-top:1rem\",\"padding:0 .5rem\"]],[false,{\".cp-cloud-native__slider .owl-dot.active span:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#53c8fd\"]],[true,{\".cp-cloud-native\":true},[\"padding:1rem 0 4rem\"]],[true,{\".cp-cloud-native__mobile--off-padding:not(#_#_#_#_#_#_#_)\":true},[\"padding:0\"]],[true,\"}\"],[true,\"@media (min-width: 600px) and (max-width: 768px){\"],[true,{\".cp-cloud-native__title\":true},[\"font-size:1.5rem\"]],[true,{\".cp-cloud-native__subtitle\":true},[\"font-size:1.6rem\"]],[true,{\".cp-cloud-native__text\":true},[\"padding:0 1rem\",\"font-size:1rem\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2317,\"final_size\":2012,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-process\\/our-process.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"1e81358d6ff1f90278f187d155a959ac\",\"parse_time\":0.009158134460449219,\"shake_time\":4.982948303222656e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".cp-our-process\":true},[\"padding:2rem 0 5rem\",\"background:#fdfdfd\"]],[true,{\".cp-our-process__title\":true},[\"color:#121d3d\",\"font-family:raleway,sans-serif\",\"display:flex\",\"align-items:center\",\"font-size:2rem\"]],[true,{\".cp-our-process__title:not(#_#_#_#_#_#_#_)\":true},[\"font-weight:100\"]],[true,{\".cp-our-process__title strong\":true},[\"margin-left:1rem\"]],[true,{\".cp-our-process__title strong:not(#_#_#_#_#_#_#_#_)\":true},[\"font-weight:800\"]],[true,{\".cp-our-process__title:after\":true},[\"width:100%\",\"height:1px\",\"background-color:#182647\",\"content:\\\"\\\"\",\"margin-left:2rem\"]],[true,{\".cp-our-process__title:after:not(#_#_#_#_#_#_#_#_)\":true},[\"display:block\"]],[true,{\".cp-our-process__slider--img\":true},[\"display:flex\",\"justify-content:center\",\"align-items:center\",\"height:200px\",\"min-height:200px\"]],[true,{\".cp-our-process__slider--img amp-img\":true,\".cp-our-process__slider--img amp-anim\":false},[\"margin:0 auto\"]],[true,{\".cp-our-process__slider--img amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".cp-our-process__slider--img amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:30%\"]],[true,{\".cp-our-process__slider--title\":true},[\"font-weight:bold\",\"font-family:roboto,sans-serif\",\"color:#121d3d\",\"margin-bottom:2rem\"]],[true,{\".cp-our-process__slider--title:not(#_#_#_#_#_#_#_)\":true},[\"font-size:1.4rem\",\"text-transform:capitalize\"]],[true,{\".cp-our-process__slider--text\":true},[\"color:#707070\",\"padding:0 1rem\",\"margin:0 0 2rem\"]],[true,{\".cp-our-process__slider--text:not(#_#_#_#_#_#_#_)\":true},[\"font-size:1rem\",\"font-weight:400\"]],[true,{\".cp-our-process__slider--link\":true},[\"font-family:roboto,sans-serif\",\"font-weight:700\",\"cursor:pointer\",\"text-decoration:underline\"]],[true,{\".cp-our-process__slider--link:not(#_#_#_#_#_#_#_)\":true},[\"color:#23bbff\"]],[true,{\".cp-our-process__slider--link:hover:not(#_#_#_#_#_#_#_)\":true},[\"color:#68e796\"]],[true,\"@media (max-width: 575.98px){\"],[false,{\".cp-our-process__slider .owl-dot.active span:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#53c8fd\"]],[true,{\".cp-our-process__title:after:not(#_#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".cp-our-process__title\":true},[\"justify-content:center\"]],[true,{\".cp-our-process__slider--img:after\":true,\".cp-our-process__slider--img:before\":true},[\"width:20%\",\"height:1px\",\"background-color:#182647\",\"content:\\\"\\\"\"]],[true,{\".cp-our-process__slider--img:after:not(#_#_#_#_#_#_#_#_)\":true,\".cp-our-process__slider--img:before:not(#_#_#_#_#_#_#_#_)\":true},[\"display:block\"]],[true,{\".cp-our-process__slider--img amp-img\":true,\".cp-our-process__slider--img amp-anim\":false},[\"margin:0 1rem\"]],[true,\"}\"],[true,\"@media (min-width: 600px) and (max-width: 768px){\"],[true,{\".cp-our-process__slider--title\":true},[\"font-size:1.5em\"]],[true,{\".cp-our-process__slider--img amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".cp-our-process__slider--img amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:40%\"]],[true,{\".cp-our-process__slider--text\":true},[\"margin:0\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":3524,\"final_size\":2617,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/services\\/services.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"d5abd9b59c3d2e3b368016c0243840cc\",\"parse_time\":0.13952994346618652,\"shake_time\":6.914138793945312e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".cp-services\":true},[\"padding:1rem 0 5rem\",\"background-repeat:no-repeat\",\"background-position:top\",\"background-size:cover\"]],[true,{\".cp-services__columns\":true},[\"display:flex\",\"flex-direction:row\",\"justify-content:center\"]],[true,{\".cp-services__box\":true},[\"display:flex\",\"flex-direction:row-reverse\"]],[true,{\".cp-services__box--column\":true},[\"background-color:#23bbff\",\"border-radius:15px\",\"box-shadow:0 9px 21px rgba(0,0,0,.16)\",\"text-align:center\",\"padding:2rem 1.5rem\",\"display:flex\",\"flex-direction:column\",\"margin:0 .5rem\",\"align-items:center\",\"justify-content:start\",\"cursor:pointer\"]],[true,{\".cp-services__box--column i\":true},[\"font-size:1.5rem\",\"color:#121d3d\"]],[true,{\".cp-services__box--button\":true},[\"writing-mode:vertical-rl\",\"transform:rotate(180deg)\",\"margin-top:1rem\",\"color:#121d3d\",\"font-family:raleway,sans-serif\",\"font-weight:600\"]],[true,{\".cp-services__card\":true},[\"background-color:#fff\",\"box-shadow:0 9px 21px rgba(0,0,0,.16)\",\"border-radius:15px\",\"height:100%\",\"transition:auto\",\"width:90%\",\"padding:3rem\",\"background-size:50%\",\"background-repeat:no-repeat\",\"background-position-x:right\",\"background-position-y:bottom\",\"margin:0 auto\"]],[true,{\".cp-services__card--column-one\":true},[\"display:flex\",\"align-items:center\",\"justify-content:flex-start\",\"margin-bottom:1.5rem\"]],[true,{\".cp-services__card--title\":true},[\"color:#121d3d\",\"margin:0\"]],[true,{\".cp-services__card--title:not(#_#_#_#_#_#_#_)\":true},[\"font-family:raleway,sans-serif\",\"font-weight:600\",\"font-size:1.5rem\",\"padding:0\"]],[true,{\".cp-services__card--img\":true},[\"width:50px\",\"height:auto\",\"margin-right:.5rem\"]],[true,{\".cp-services__card--text\":true},[\"color:#707070\",\"font-family:roboto,sans-serif\",\"font-weight:500\"]],[true,{\".cp-services__card--text:not(#_#_#_#_#_#_#_)\":true},[\"font-size:1rem\"]],[true,{\".cp-services__card--text strong\":true},[\"color:#23bbff\",\"text-decoration:underline\"]],[true,{\".cp-services__card--button\":true},[\"margin-top:1rem\",\"background:#23bbff\",\"border:none\",\"box-shadow:none\",\"padding:.3rem 1rem\"]],[true,{\".cp-services__card--button a\":true},[\"color:#fff\",\"font-family:roboto,sans-serif\",\"font-weight:700\",\"text-transform:uppercase\",\"font-size:14px\",\"text-decoration:none\"]],[true,{\"#headingOne\":true},[\"display:none\"]],[true,{\"#headingTwo\":true},[\"display:block\"]],[true,{\"#headingThree\":true},[\"display:block\",\"background:transparent linear-gradient(180deg,#27d9cb 0%,#a1f266 100%) 0% 0% no-repeat padding-box\"]],[false,{\".cp-services__card-web:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".cp-services__card-mobile:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[true,\"@media (max-width: 575.98px){\"],[true,{\".cp-services__card\":true},[\"padding:1rem\",\"margin:0\",\"width:100%\"]],[true,{\".cp-services__card:not(#_#_#_#_#_#_#_)\":true},[\"background-image:none\"]],[true,{\".cp-services__box--column\":true},[\"margin:0\",\"padding:2rem 1rem\",\"border-radius:5px\"]],[true,{\".cp-services__card--title\":true},[\"line-height:initial\",\"padding:0\"]],[true,{\".cp-services__card--title:not(#_#_#_#_#_#_#_)\":true},[\"font-size:1rem\"]],[true,{\".cp-services__card--img\":true},[\"width:30px\"]],[true,{\".cp-services__card--text\":true},[\"font-size:.9rem\"]],[true,{\".cp-services__card--text:not(#_#_#_#_#_#_#_)\":true},[\"line-height:initial\"]],[false,{\".cp-services__card-web:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".cp-services__card-mobile:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[true,\"}\"],[true,\"@media (min-width: 600px) and (max-width: 768px){\"],[true,{\".cp-services__card:not(#_#_#_#_#_#_#_)\":true},[\"background-image:none\"]],[true,{\".cp-services__card--title:not(#_#_#_#_#_#_#_)\":true},[\"font-size:1.5rem\"]],[false,{\".cp-services__card-web:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".cp-services__card-mobile:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":3280,\"final_size\":2575,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/client-testimonial\\/client-testimonial.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"5337a633a57395e1a71e48ca5e7dbe57\",\"parse_time\":0.06432199478149414,\"shake_time\":5.888938903808594e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".cp-client-testimonial\":true},[\"background-color:#121d3d\",\"padding:3rem 0 1rem\"]],[true,{\".cp-client-testimonial__title\":true},[\"color:#53c8fd\",\"font-family:raleway,sans-serif\",\"margin:0\",\"padding:0\"]],[true,{\".cp-client-testimonial__title:not(#_#_#_#_#_#_#_)\":true},[\"font-weight:100\",\"font-size:1.9rem\"]],[true,{\".cp-client-testimonial__little-dots\":true},[\"color:#53c8fd\",\"font-size:1.9rem\"]],[true,{\".cp-client-testimonial__little-dots-mobile\":true},[\"display:none\",\"color:#53c8fd\",\"font-size:1.9rem\"]],[true,{\".cp-client-testimonial__little-dots-tablet\":true},[\"display:none\",\"color:#53c8fd\",\"font-size:1.9rem\"]],[true,{\".cp-client-testimonial__title strong\":true},[\"color:#53c8fd\",\"font-weight:700\"]],[true,{\".cp-client-testimonial__slider\":true},[\"margin-top:2rem\"]],[true,{\".cp-client-testimonial__subtitle\":true},[\"margin-bottom:2rem\"]],[true,{\".cp-client-testimonial__subtitle h3\":true},[\"font-size:2.5rem\",\"letter-spacing:0px\",\"line-height:45px\",\"color:#fff\",\"margin:0\",\"font-family:raleway,sans-serif\",\"font-weight:900\",\"text-transform:inherit\"]],[true,{\".cp-client-testimonial__name\":true},[\"color:#53c8fd\",\"font-size:18px\",\"margin:0\",\"text-transform:uppercase\"]],[true,{\".cp-client-testimonial__office\":true},[\"color:#fff\",\"margin:0\",\"font-size:12px\",\"line-height:20px\"]],[true,{\".cp-client-testimonial__logo\":true},[\"max-width:80%\"]],[true,{\".cp-client-testimonial__logo amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".cp-client-testimonial__logo amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:auto\"]],[true,{\".cp-client-testimonial__testimonial\":true},[\"color:#818181\",\"font-family:roboto,sans-serif\",\"font-size:21px\"]],[true,{\".cp-client-testimonial_nav\":true},[\"width:100%\",\"text-align:center\",\"margin-top:2rem\",\"display:flex\",\"flex-direction:row\",\"align-items:center\",\"justify-content:flex-start\"]],[true,{\".cp-client-testimonial_nav-button\":true},[\"width:40%\",\"border:1px solid #23bbff\",\"border-radius:15px\",\"background-color:transparent\",\"color:#23bbff\",\"margin:0 .5rem\",\"cursor:pointer\"]],[true,{\".cp-client-testimonial_nav-button:hover\":true},[\"background-color:#23bbff\",\"color:#fff\"]],[true,{\".cp-client-testimonial_nav-button i\":true},[\"font-size:1rem\"]],[false,{\".owl-nav\":false},[\"display:none\"]],[true,\"@media (max-width: 575.98px){\"],[true,{\".cp-client-testimonial__title:not(#_#_#_#_#_#_#_)\":true},[\"font-size:1rem\",\"padding:0\",\"line-height:20px\"]],[true,{\".cp-client-testimonial__subtitle h3\":true},[\"font-size:30px\",\"line-height:42px\"]],[true,{\".cp-client-testimonial__office\":true},[\"font-size:12px\",\"line-height:17px\"]],[true,{\".cp-client-testimonial__name\":true},[\"font-size:15px\"]],[true,{\".cp-client-testimonial__testimonial\":true},[\"margin-top:2rem\"]],[true,{\".cp-client-testimonial_nav\":true},[\"padding-bottom:2rem\"]],[true,{\".cp-client-testimonial__little-dots\":true},[\"display:none\"]],[true,{\".cp-client-testimonial__little-dots-mobile\":true},[\"display:block\"]],[true,\"}\"],[true,\"@media (min-width: 600px) and (max-width: 768px){\"],[true,{\".cp-client-testimonial__subtitle h3\":true},[\"font-size:2rem\",\"line-height:40px\"]],[true,{\".cp-client-testimonial__name\":true},[\"font-size:18px\"]],[true,{\".cp-client-testimonial__office\":true},[\"font-size:12px\"]],[true,{\".cp-client-testimonial__testimonial\":true},[\"font-size:15px\"]],[true,{\".cp-client-testimonial__little-dots\":true},[\"display:none\"]],[true,{\".cp-client-testimonial__little-dots-mobile\":true},[\"display:none\"]],[true,{\".cp-client-testimonial__little-dots-tablet\":true},[\"display:block\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":3496,\"final_size\":2544,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/contact-us\\/contact-us.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"5f9ce1a3cec945a8f2f9e8ab816246ae\",\"parse_time\":0.08191609382629395,\"shake_time\":4.8160552978515625e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".cp-contact-us\":true},[\"background:linear-gradient(0deg,rgba(195,242,74,1) 0%,rgba(152,242,110,1) 20%,rgba(10,210,226,1) 80%,rgba(10,210,226,1) 100%)\",\"padding:3rem 0 5rem\"]],[true,{\".cp-contact-us__box\":true},[\"border-radius:15px\",\"background:#fff\",\"box-shadow:0px 9px 21px rgba(0,0,0,.16)\"]],[true,{\".cp-contact-us__box-layout\":true},[\"padding:2rem 3rem\"]],[true,{\".cp-contact-us__title\":true},[\"font-size:40px\",\"color:#121d3d\",\"font-weight:900\",\"font-family:raleway,sans-serif\",\"margin:0\"]],[true,{\".cp-contact-us__subtitle\":true},[\"color:#23bbff\",\"text-decoration:underline\",\"cursor:pointer\",\"font-family:raleway,sans-serif\",\"font-weight:bold\",\"margin:0\"]],[true,{\".cp-contact-us__form\":true},[\"padding-top:1.5rem\"]],[true,{\".cp-contact-us__form label\":true},[\"display:block\",\"color:#121d3d\",\"font-size:15px\",\"font-weight:bold\",\"margin-bottom:.5rem\"]],[true,{\".cp-contact-us__form label:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:\\\"Roboto\\\",sans-serif\"]],[true,{\".cp-contact-us__form input\":true,\"textarea\":true},[\"border:none\",\"border-bottom:1px solid #b0b0b0\",\"color:#b0b0b0\",\"font-size:13px\",\"margin-bottom:1.5rem\",\"width:100%\",\"outline:none\"]],[true,{\".cp-contact-us__form--button\":true},[\"background-color:#23bbff\",\"padding:1rem 0\",\"width:100%\",\"border:none\",\"cursor:pointer\",\"font-weight:700\",\"font-family:\\\"Roboto\\\",sans-serif\",\"outline:none\",\"font-size:1rem\"]],[true,{\".cp-contact-us__form--button:not(#_#_#_#_#_#_#_)\":true},[\"color:#fff\"]],[true,{\".cp-contact-us__partner-data\":true},[\"background-color:#121d3d\",\"border-radius:0px 15px 15px 0px\"]],[true,{\".cp-contact-us__partner-data--title\":true},[\"color:#fff\",\"font-family:raleway,sans-serif\",\"font-weight:bold\",\"font-size:1.4rem\",\"margin:0\",\"line-height:25px\"]],[true,{\".cp-contact-us__partner-data--title span\":true},[\"color:#23bbff\"]],[true,{\".cp-contact-us__partner-data--name\":true},[\"line-height:20px\",\"color:#23bbff\",\"margin:2rem 0 1rem\",\"font-weight:900\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-size:1rem\"]],[true,{\".cp-contact-us__partner-data--name span\":true},[\"font-weight:100\",\"color:#fff\"]],[true,{\".cp-contact-us__partner-data--email-message\":true},[\"margin:0\",\"color:#fff\",\"font-weight:900\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-size:1rem\"]],[true,{\".cp-contact-us__partner-data--email\":true},[\"color:#23bbff\",\"font-weight:500\",\"font-family:\\\"Roboto\\\",sans-serif\",\"margin:0\",\"font-size:1rem\"]],[true,{\".cp-contact-us__partner-data--phone\":true},[\"margin:0\",\"color:#23bbff\",\"font-weight:900\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-size:1rem\"]],[true,\"@media (max-width: 575.98px){\"],[true,{\".cp-contact-us\":true},[\"padding:3rem .5rem 5rem\"]],[true,{\".cp-contact-us__box-layout\":true},[\"padding:2rem 2rem\"]],[true,{\".cp-contact-us__title\":true},[\"font-size:20px\"]],[true,{\".cp-contact-us__subtitle\":true},[\"font-size:17px\",\"float:right\"]],[true,{\".cp-contact-us__form--button\":true},[\"margin-bottom:2rem\"]],[true,{\".cp-contact-us__partner-data\":true},[\"border-radius:0px 0px 15px 15px\"]],[true,\"}\"],[true,\"@media (min-width: 600px) and (max-width: 768px){\"],[true,{\".cp-contact-us__title\":true},[\"font-size:25px\"]],[true,{\".cp-contact-us__partner-data--title\":true},[\"font-size:1.1rem\"]],[true,{\".cp-contact-us__partner-data--email\":true},[\"word-break:break-all\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":57925,\"final_size\":10464,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"rs-plugin-settings-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/rs6.css?ver=6.5.23\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":134,\"function\":\"RevSliderFront::add_inline_css\",\"hook\":\"wp_footer\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"rs-plugin-settings\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}],\"priority\":30,\"hash\":\"4a682d94bb410f9ebfc91fae35d45117\",\"parse_time\":0.7066469192504883,\"shake_time\":0.0011239051818847656,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.eot?5510888#iefix\"],\"shaken_tokens\":[[true,{\".rs-p-wp-fix:not(#_#_#_#_#_#_#_)\":true},[\"display:none\",\"margin:0\",\"height:0px\"]],[false,{\".wp-block-themepunch-revslider\":false},[\"position:relative\"]],[false,{\"rs-modal:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"z-index:9999999\",\"pointer-events:none\"]],[false,{\"rs-modal.rs-modal-auto\":false},[\"top:auto\",\"bottom:auto\",\"left:auto\",\"right:auto\"]],[false,{\"rs-modal.rs-modal-fullwidth\":false,\"rs-modal.rs-modal-fullscreen\":false},[\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\"]],[false,{\"rs-modal rs-fullwidth-wrap\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"height:100%\"]],[false,{\"rs-module-wrap.rs-modal\":false},[\"display:none\"]],[false,{\"rs-module-wrap.rs-modal:not(#_#_#_#_#_#_#_#_)\":false},[\"max-height:100%\",\"overflow:auto\",\"pointer-events:auto\"]],[false,{\"rs-module-wrap.hideallscrollbars.rs-modal:not(#_#_#_#_#_#_#_#_)\":false},[\"overflow:hidden\",\"max-width:100%\"]],[false,{\"rs-modal-cover\":false},[\"width:100%\",\"height:100%\",\"z-index:0\",\"background:transparent\",\"position:absolute\",\"top:0px\",\"left:0px\",\"cursor:pointer\",\"pointer-events:auto\"]],[false,{\"body>rs-modal-cover\":false},[\"position:fixed\"]],[false,{\"body>rs-modal-cover:not(#_#_#_#_#_#_#_#_)\":false},[\"z-index:9999995\"]],[false,{\"rs-sbg-px\":false},[\"pointer-events:none\"]],[false,{\".rs-forceuntouchable:not(#_#_#_#_#_#_#_)\":false,\".rs-forceuntouchable *:not(#_#_#_#_#_#_#_)\":false},[\"pointer-events:none\"]],[false,{\".rs-forcehidden *:not(#_#_#_#_#_#_#_)\":false},[\"visibility:hidden\"]],[false,{\".rs_splitted_lines\":false},[\"display:block\"]],[false,{\".rs_splitted_lines:not(#_#_#_#_#_#_#_)\":false},[\"white-space:nowrap\"]],[false,{\".rs-go-fullscreen\":false},[\"background:#fff\"]],[false,{\".rs-go-fullscreen:not(#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\",\"z-index:9999999\"]],[false,{\".rtl\":false},[\"direction:rtl\"]],[true,\"@font-face{font-family:\\\"revicons\\\";src:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.eot?5510888\\\");src:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.eot?5510888#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.woff?5510888\\\") format(\\\"woff\\\"),url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.ttf?5510888\\\") format(\\\"truetype\\\"),url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.svg?5510888#revicons\\\") format(\\\"svg\\\");font-weight:normal;font-style:normal;font-display:swap}\"],[true,{\"[class^=\\\"revicon-\\\"]:before\":true,\"[class*=\\\" revicon-\\\"]:before\":true},[\"font-family:\\\"revicons\\\"\",\"font-style:normal\",\"font-weight:normal\",\"speak:never\",\"speak-as:spell-out\",\"display:inline-block\",\"text-decoration:inherit\",\"width:1em\",\"margin-right:.2em\",\"text-align:center\",\"font-variant:normal\",\"text-transform:none\",\"line-height:1em\",\"margin-left:.2em\"]],[true,{\"rs-module i[class^=\\\"fa-\\\"]\":true,\"rs-module i[class*=\\\" fa-\\\"]\":true,\".rb-modal-wrapper i[class^=\\\"fa-\\\"]\":false,\".rb-modal-wrapper i[class*=\\\" fa-\\\"]\":false,\"#waitaminute i[class^=\\\"fa-\\\"]\":false,\"#waitaminute i[class*=\\\" fa-\\\"]\":false,\"#objectlibrary i[class^=\\\"fa-\\\"]\":false,\"#objectlibrary i[class*=\\\" fa-\\\"]\":false,\"#rs_overview i[class^=\\\"fa-\\\"]\":false,\"#rs_overview i[class*=\\\" fa-\\\"]\":false,\"#rs_overview_menu i[class^=\\\"fa-\\\"]\":false,\"#rs_overview_menu i[class*=\\\" fa-\\\"]\":false,\"#builderView i[class^=\\\"fa-\\\"]\":false,\"#builderView i[class*=\\\" fa-\\\"]\":false},[\"display:inline-block\",\"font:normal normal normal 14px\\/1 FontAwesome\",\"font-size:inherit\",\"text-rendering:auto\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\"]],[true,{\"rs-module [class^=\\\"fa-\\\"]:before\":true,\"rs-module [class*=\\\" fa-\\\"]:before\":true,\".rb-modal-wrapper [class^=\\\"fa-\\\"]:before\":false,\".rb-modal-wrapper [class*=\\\" fa-\\\"]:before\":false,\"#rs_overview [class^=\\\"fa-\\\"]:before\":false,\"#rs_overview [class*=\\\" fa-\\\"]:before\":false,\"#objectlibrary [class^=\\\"fa-\\\"]:before\":false,\"#objectlibrary [class*=\\\" fa-\\\"]:before\":false,\"#waitaminute [class^=\\\"fa-\\\"]:before\":false,\"#waitaminute [class*=\\\" fa-\\\"]:before\":false,\"#rs_overview_menu [class^=\\\"fa-\\\"]:before\":false,\"#rs_overview_menu [class*=\\\" fa-\\\"]:before\":false,\"#builderView [class^=\\\"fa-\\\"]:before\":false,\"#builderView [class*=\\\" fa-\\\"]:before\":false},[\"font-family:FontAwesome\",\"font-style:normal\",\"font-weight:400\",\"speak:never\",\"speak-as:spell-out\",\"display:inline-block\",\"text-decoration:inherit\",\"width:auto\",\"margin-right:0\",\"text-align:center\",\"font-variant:normal\",\"text-transform:none\",\"line-height:inherit\",\"margin-left:0\"]],[false,{\"rs-module .sr-only\":false,\"#objectlibrary .sr-only\":false,\"#waitaminute .sr-only\":false,\"#rs_overview .sr-only\":false,\"#rs_overview_menu .sr-only\":false,\".rb-modal-wrapper .sr-only\":false,\"#builderView .sr-only\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,{\"rs-module .sr-only-focusable:active\":false,\"rs-module .sr-only-focusable:focus\":false,\"#waitaminute .sr-only-focusable:active\":false,\"#waitaminute .sr-only-focusable:focus\":false,\"#objectlibrary .sr-only-focusable:active\":false,\"#objectlibrary .sr-only-focusable:focus\":false,\"#rs_overview .sr-only-focusable:active\":false,\"#rs_overview .sr-only-focusable:focus\":false,\"#rs_overview_menu .sr-only-focusable:active\":false,\"#rs_overview_menu .sr-only-focusable:focus\":false,\".rb-modal-wrapper .sr-only-focusable:active\":false,\".rb-modal-wrapper .sr-only-focusable:focus\":false,\"#builderView .sr-only-focusable:active\":false,\"#builderView .sr-only-focusable:focus\":false},[\"position:static\",\"width:auto\",\"height:auto\",\"margin:0\",\"overflow:visible\",\"clip:auto\"]],[false,{\".revicon-search-1:before\":false},[\"content:\\\"\\ue802\\\"\"]],[false,{\".revicon-pencil-1:before\":false},[\"content:\\\"\\ue831\\\"\"]],[false,{\".revicon-picture-1:before\":false},[\"content:\\\"\\ue803\\\"\"]],[false,{\".revicon-cancel:before\":false},[\"content:\\\"\\ue80a\\\"\"]],[false,{\".revicon-info-circled:before\":false},[\"content:\\\"\\ue80f\\\"\"]],[false,{\".revicon-trash:before\":false},[\"content:\\\"\\ue801\\\"\"]],[false,{\".revicon-left-dir:before\":false},[\"content:\\\"\\ue817\\\"\"]],[false,{\".revicon-right-dir:before\":false},[\"content:\\\"\\ue818\\\"\"]],[false,{\".revicon-down-open:before\":false},[\"content:\\\"\\ue83b\\\"\"]],[false,{\".revicon-left-open:before\":false},[\"content:\\\"\\ue819\\\"\"]],[false,{\".revicon-right-open:before\":false},[\"content:\\\"\\ue81a\\\"\"]],[false,{\".revicon-angle-left:before\":false},[\"content:\\\"\\ue820\\\"\"]],[false,{\".revicon-angle-right:before\":false},[\"content:\\\"\\ue81d\\\"\"]],[false,{\".revicon-left-big:before\":false},[\"content:\\\"\\ue81f\\\"\"]],[false,{\".revicon-right-big:before\":false},[\"content:\\\"\\ue81e\\\"\"]],[false,{\".revicon-magic:before\":false},[\"content:\\\"\\ue807\\\"\"]],[false,{\".revicon-picture:before\":false},[\"content:\\\"\\ue800\\\"\"]],[false,{\".revicon-export:before\":false},[\"content:\\\"\\ue80b\\\"\"]],[false,{\".revicon-cog:before\":false},[\"content:\\\"\\ue832\\\"\"]],[false,{\".revicon-login:before\":false},[\"content:\\\"\\ue833\\\"\"]],[false,{\".revicon-logout:before\":false},[\"content:\\\"\\ue834\\\"\"]],[false,{\".revicon-video:before\":false},[\"content:\\\"\\ue805\\\"\"]],[false,{\".revicon-arrow-combo:before\":false},[\"content:\\\"\\ue827\\\"\"]],[false,{\".revicon-left-open-1:before\":false},[\"content:\\\"\\ue82a\\\"\"]],[false,{\".revicon-right-open-1:before\":false},[\"content:\\\"\\ue82b\\\"\"]],[false,{\".revicon-left-open-mini:before\":false},[\"content:\\\"\\ue822\\\"\"]],[false,{\".revicon-right-open-mini:before\":false},[\"content:\\\"\\ue823\\\"\"]],[false,{\".revicon-left-open-big:before\":false},[\"content:\\\"\\ue824\\\"\"]],[false,{\".revicon-right-open-big:before\":false},[\"content:\\\"\\ue825\\\"\"]],[false,{\".revicon-left:before\":false},[\"content:\\\"\\ue836\\\"\"]],[false,{\".revicon-right:before\":false},[\"content:\\\"\\ue826\\\"\"]],[false,{\".revicon-ccw:before\":false},[\"content:\\\"\\ue808\\\"\"]],[false,{\".revicon-arrows-ccw:before\":false},[\"content:\\\"\\ue806\\\"\"]],[false,{\".revicon-palette:before\":false},[\"content:\\\"\\ue829\\\"\"]],[false,{\".revicon-list-add:before\":false},[\"content:\\\"\\ue80c\\\"\"]],[false,{\".revicon-doc:before\":false},[\"content:\\\"\\ue809\\\"\"]],[false,{\".revicon-left-open-outline:before\":false},[\"content:\\\"\\ue82e\\\"\"]],[false,{\".revicon-left-open-2:before\":false},[\"content:\\\"\\ue82c\\\"\"]],[false,{\".revicon-right-open-outline:before\":false},[\"content:\\\"\\ue82f\\\"\"]],[false,{\".revicon-right-open-2:before\":false},[\"content:\\\"\\ue82d\\\"\"]],[false,{\".revicon-equalizer:before\":false},[\"content:\\\"\\ue83a\\\"\"]],[false,{\".revicon-layers-alt:before\":false},[\"content:\\\"\\ue804\\\"\"]],[false,{\".revicon-popup:before\":false},[\"content:\\\"\\ue828\\\"\"]],[false,{\".tp-fullwidth-forcer\":false},[\"z-index:0\",\"pointer-events:none\"]],[true,{\"rs-module-wrap\":true},[\"visibility:hidden\"]],[true,{\"rs-module-wrap\":true,\"rs-module-wrap *\":true},[\"box-sizing:border-box\",\"-webkit-tap-highlight-color:rgba(0,0,0,0)\"]],[true,{\"rs-module-wrap\":true},[\"position:relative\",\"z-index:1\",\"width:100%\",\"display:block\"]],[false,{\".rs-fixedscrollon rs-module-wrap\":false},[\"z-index:1000\"]],[false,{\".rs-fixedscrollon rs-module-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0px\",\"left:0\"]],[false,{\".rs-stickyscrollon rs-module-wrap\":false},[\"top:0px\",\"z-index:1000\"]],[false,{\".rs-stickyscrollon rs-module-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"position:sticky\"]],[false,{\".rs-stickyscrollon:not(#_#_#_#_#_#_#_)\":false},[\"overflow:visible\"]],[false,{\"rs-fw-forcer\":false},[\"display:block\",\"width:100%\",\"pointer-events:none\"]],[true,{\"rs-module\":true},[\"position:relative\",\"overflow:hidden\",\"display:block\"]],[false,{\"rs-module.disableVerticalScroll\":false},[\"-ms-touch-action:pan-x\",\"touch-action:pan-x\"]],[false,{\"rs-pzimg-wrap\":false,\"rs-sbg-effectwrap\":false,\"rs-sbg\":false},[\"display:block\",\"pointer-events:none\"]],[false,{\"rs-sbg-effectwrap\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\"]],[false,{\"rs-carousel-wrap rs-column rs-layer amp-img\":false,\"rs-carousel-wrap rs-column rs-layer amp-anim\":false},[\"width:0px\",\"height:0px\"]],[false,{\"rs-sbg-px\":false,\"rs-sbg-wrap\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"z-index:0\",\"width:100%\",\"height:100%\",\"display:block\"]],[true,{\"a.rs-layer\":true,\"a.rs-layer:-webkit-any-link\":true},[\"text-decoration:none\"]],[false,{\"a[x-apple-data-detectors]:not(#_#_#_#_#_#_#_#_)\":false},[\"color:inherit\",\"text-decoration:none\",\"font-size:inherit\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:inherit\"]],[true,{\".entry-content rs-module a\":false,\"rs-module a\":true},[\"box-shadow:none\"]],[false,{\".rs-ov-hidden:not(#_#_#_#_#_#_#_)\":false},[\"overflow:hidden\"]],[false,{\".rs-forceoverflow:not(#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-module-wrap:not(#_#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-module:not(#_#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-slides:not(#_#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-slide:not(#_#_#_#_#_#_#_#_)\":false},[\"overflow:visible\"]],[true,{\".tp-simpleresponsive amp-img\":false,\".tp-simpleresponsive amp-anim\":false,\"rs-module amp-img\":true,\"rs-module amp-anim\":false},[\"transition:none\",\"margin:0px\",\"padding:0px\",\"border:none\"]],[true,{\".tp-simpleresponsive amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".tp-simpleresponsive amp-anim:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-img:not(#_#_#_#_#_#_#_#_)\":true,\"rs-module amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\"rs-module .no-slides-text\":false},[\"font-weight:bold\",\"text-align:center\",\"padding-top:80px\"]],[true,{\"rs-slides\":true,\"rs-slide\":true,\"rs-slide:before\":true},[\"position:absolute\",\"text-indent:0em\",\"top:0px\",\"left:0px\"]],[true,{\"rs-slide\":true,\"rs-slide:before\":true},[\"display:block\",\"visibility:hidden\"]],[false,{\".rs-layer .rs-untoggled-content\":false},[\"display:block\"]],[false,{\".rs-layer .rs-toggled-content\":false},[\"display:none\"]],[false,{\".rs-tc-active.rs-layer > .rs-toggled-content\":false},[\"display:block\"]],[false,{\".rs-tc-active.rs-layer > .rs-untoggled-content\":false},[\"display:none\"]],[false,{\".rs-layer-video\":false},[\"overflow:hidden\"]],[false,{\".rs_html5vidbasicstyles\":false},[\"position:relative\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"overflow:hidden\"]],[true,{\"rs-module rs-layer\":true,\"rs-module .rs-layer\":true},[\"opacity:0\",\"position:relative\",\"visibility:hidden\",\"display:block\",\"-webkit-tap-highlight-color:rgba(0,0,0,0)\",\"-moz-osx-font-smoothing:grayscale\",\"z-index:1\",\"font-display:swap\"]],[true,{\"rs-module rs-layer:not(#_#_#_#_#_#_#_#_)\":true,\"rs-module .rs-layer:not(#_#_#_#_#_#_#_#_)\":true},[\"-webkit-font-smoothing:antialiased\"]],[true,{\"rs-layer-wrap\":false,\"rs-mask\":false,\"rs-module-wrap\":true,\"rs-module .rs-layer\":true,\"rs-module amp-img\":true,\"rs-module amp-anim\":false},[\"user-select:none\"]],[false,{\"rs-module rs-mask-wrap .rs-layer\":false,\"rs-module rs-mask-wrap *:last-child\":false,\".wpb_text_column rs-module rs-mask-wrap .rs-layer\":false,\".wpb_text_column rs-module rs-mask-wrap *:last-child\":false},[\"margin-bottom:0\"]],[false,{\".rs-svg svg\":false},[\"width:100%\",\"height:100%\",\"position:relative\",\"vertical-align:top\"]],[true,{\"rs-layer:not(.rs-wtbindex):not(#_#_#_#_#_#_#_#_)\":true,\".rs-layer:not(.rs-wtbindex):not(#_#_#_#_#_#_#_)\":true,\"rs-alyer *:not(.rs-wtbindex):not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer *:not(.rs-wtbindex):not(#_#_#_#_#_#_#_)\":true},[\"outline:none\"]],[false,{\"rs-carousel-wrap\":false},[\"cursor:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/openhand.cur\\\"),move\"]],[false,{\"rs-carousel-wrap.dragged\":false},[\"cursor:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/closedhand.cur\\\"),move\"]],[false,{\"rs-carousel-wrap.noswipe\":false},[\"cursor:default\"]],[false,{\"rs-carousel-wrap\":false},[\"position:absolute\",\"overflow:hidden\",\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\"]],[false,{\"rs-carousel-space\":false},[\"clear:both\",\"display:block\",\"width:100%\",\"height:0px\",\"position:relative\"]],[false,{\".tp_inner_padding\":false},[\"box-sizing:border-box\"]],[false,{\".tp_inner_padding:not(#_#_#_#_#_#_#_)\":false},[\"max-height:none\"]],[false,{\".rs-layer.rs-selectable\":false},[\"user-select:text\"]],[false,{\"rs-px-mask\":false},[\"overflow:hidden\",\"display:block\",\"width:100%\",\"height:100%\",\"position:relative\"]],[false,{\"rs-module embed\":false,\"rs-module amp-iframe\":false,\"rs-module amp-google-document-embed\":false,\"rs-module amp-audio\":false,\"rs-module amp-video\":false,\"rs-module amp-youtube\":false},[\"border:none\"]],[false,{\"rs-module embed:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-iframe:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-google-document-embed:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-audio:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-video:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-youtube:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\"rs-bg-elem\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"z-index:0\",\"display:block\",\"pointer-events:none\"]],[false,{\".tp-blockmask\":false,\".tp-blockmask_in\":false,\".tp-blockmask_out\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"background:#fff\",\"z-index:1000\",\"transform:scaleX(0) scaleY(0)\"]],[false,{\"rs-zone\":false},[\"position:absolute\",\"width:100%\",\"left:0px\",\"box-sizing:border-box\",\"min-height:50px\",\"font-size:0px\",\"pointer-events:none\"]],[false,{\"rs-row-wrap\":false,\"rs-column\":false,\"rs-cbg-mask-wrap\":false},[\"display:block\",\"visibility:hidden\"]],[false,{\"rs-layer-wrap\":false,\"rs-parallax-wrap\":false,\"rs-loop-wrap\":false,\"rs-mask-wrap\":false},[\"display:block\"]],[false,{\"rs-column-wrap>rs-loop-wrap\":false},[\"z-index:1\"]],[false,{\"rs-layer-wrap\":false,\"rs-mask-wrap\":false,\"rs-cbg-mask-wrap\":false},[\"transform-style:flat\"]],[false,\"@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0){\"],[false,{\"rs-carousel-wrap rs-layer-wrap\":false,\"rs-carousel-wrap rs-loop-wrap\":false},[\"backface-visibility:hidden\",\"transform-style:preserve-3d\"]],[false,\"}\"],[false,{\".safarifix rs-layer-wrap\":false},[\"perspective:1000000\"]],[false,\"@-moz-document url-prefix(){\"],[false,{\"rs-layer-wrap\":false,\"rs-mask-wrap\":false,\"rs-cbg-mask-wrap\":false},[\"perspective:none\"]],[false,\"}\"],[false,{\"rs-mask-wrap\":false},[\"overflow:hidden\"]],[false,{\"rs-fullwidth-wrap\":false},[\"position:relative\",\"width:100%\",\"height:auto\",\"display:block\",\"overflow:visible\"]],[false,{\"rs-fullwidth-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\".rev_row_zone_top\":false},[\"top:0px\"]],[false,{\".rev_row_zone_bottom\":false},[\"bottom:0px\"]],[false,{\".rev_row_zone_middle\":false},[\"top:0px\"]],[false,{\"rs-column-wrap .rs-parallax-wrap\":false},[\"vertical-align:top\"]],[true,{\".rs-layer amp-img\":true,\".rs-layer amp-anim\":false,\"rs-layer amp-img\":true,\"rs-layer amp-anim\":false},[\"vertical-align:top\"]],[false,{\"rs-row\":false,\"rs-row.rs-layer\":false},[\"display:table\",\"position:relative\",\"table-layout:fixed\",\"box-sizing:border-box\",\"vertical-align:top\",\"height:auto\",\"font-size:0px\"]],[false,{\"rs-row:not(#_#_#_#_#_#_#_#_)\":false,\"rs-row.rs-layer:not(#_#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".rs-layer.rs-waction.iospermaccwait.permanenthidden:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"visibility:hidden\",\"pointer-events:none\"]],[false,{\"rs-column-wrap\":false},[\"display:table-cell\",\"position:relative\",\"vertical-align:top\",\"height:auto\",\"box-sizing:border-box\",\"font-size:0px\"]],[false,{\"rs-column\":false},[\"box-sizing:border-box\",\"display:block\",\"position:relative\"]],[false,{\"rs-column:not(#_#_#_#_#_#_#_#_)\":false},[\"width:100%\",\"height:auto\",\"white-space:normal\"]],[false,{\"rs-cbg-mask-wrap\":false},[\"position:absolute\",\"z-index:0\",\"box-sizing:border-box\"]],[false,{\"rs-column-wrap rs-cbg-mask-wrap\":false},[\"top:0px\",\"left:0px\",\"bottom:0px\",\"right:0px\"]],[false,{\"rs-column-bg\":false},[\"position:absolute\",\"z-index:0\",\"box-sizing:border-box\",\"width:100%\",\"height:100%\"]],[false,{\".rs-pelock *:not(#_#_#_#_#_#_#_)\":false},[\"pointer-events:none\"]],[false,{\"rs-column .rs-parallax-wrap\":false,\"rs-column rs-loop-wrap\":false,\"rs-column rs-mask-wrap\":false},[\"text-align:inherit\"]],[false,{\"rs-column rs-mask-wrap\":false},[\"display:inline-block\"]],[false,{\"rs-column .rs-parallax-wrap rs-loop-wrap\":false,\"rs-column .rs-parallax-wrap rs-mask-wrap\":false,\"rs-column .rs-parallax-wrap\":false},[\"line-height:0px\"]],[false,{\"rs-column .rs-parallax-wrap rs-loop-wrap:not(#_#_#_#_#_#_#_#_)\":false,\"rs-column .rs-parallax-wrap rs-mask-wrap:not(#_#_#_#_#_#_#_#_)\":false,\"rs-column .rs-parallax-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"position:relative\",\"left:auto\",\"top:auto\"]],[false,{\"rs-column .rs-parallax-wrap rs-loop-wrap\":false,\"rs-column .rs-parallax-wrap rs-mask-wrap\":false,\"rs-column .rs-parallax-wrap\":false,\"rs-column .rev_layer_in_column\":false},[\"vertical-align:top\"]],[false,{\".rev_break_columns:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".rev_break_columns rs-column-wrap.rs-parallax-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\",\"width:100%\"]],[false,{\".rev_break_columns rs-column-wrap.rs-parallax-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_#_)\":false,\".tp-forcenotvisible:not(#_#_#_#_#_#_#_)\":false,\".tp-hide-revslider:not(#_#_#_#_#_#_#_)\":false,\"rs-row-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_#_)\":false,\"rs-column-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer.rs-layer-hidden:not(#_#_#_#_#_#_#_)\":false,\".rs-layer-audio.rs-layer-hidden:not(#_#_#_#_#_#_#_)\":false,\".rs-parallax-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_)\":false},[\"visibility:hidden\",\"display:none\"]],[false,{\"a.rs-layer.rs-nointeraction >.div:not(#_#_#_#_#_#_#_#_)\":false,\"rs-layer.rs-nointeraction:not(a):not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer.rs-nointeraction:not(a):not(#_#_#_#_#_#_#_)\":false},[\"pointer-events:none\"]],[false,{\"rs-static-layers\":false},[\"position:absolute\",\"z-index:101\",\"top:0px\",\"left:0px\",\"display:block\",\"width:100%\",\"height:100%\",\"pointer-events:none\",\"overflow:hidden\"]],[false,{\"rs-static-layers.rs-stl-back\":false},[\"z-index:0\"]],[false,{\".rs-stl-visible:not(#_#_#_#_#_#_#_)\":false},[\"overflow:visible\"]],[false,{\".rs-layer rs-fcr\":false},[\"width:0\",\"height:0\",\"border-left:40px solid transparent\",\"border-right:0px solid transparent\",\"border-top:40px solid #00a8ff\",\"position:absolute\",\"right:100%\",\"top:0px\"]],[false,{\".rs-layer rs-fcrt\":false},[\"width:0\",\"height:0\",\"border-left:40px solid transparent\",\"border-right:0px solid transparent\",\"border-bottom:40px solid #00a8ff\",\"position:absolute\",\"right:100%\",\"top:0px\"]],[false,{\".rs-layer rs-bcr\":false},[\"width:0\",\"height:0\",\"border-left:0px solid transparent\",\"border-right:40px solid transparent\",\"border-bottom:40px solid #00a8ff\",\"position:absolute\",\"left:100%\",\"top:0px\"]],[false,{\".rs-layer rs-bcrt\":false},[\"width:0\",\"height:0\",\"border-left:0px solid transparent\",\"border-right:40px solid transparent\",\"border-top:40px solid #00a8ff\",\"position:absolute\",\"left:100%\",\"top:0px\"]],[false,{\".tp-layer-inner-rotation:not(#_#_#_#_#_#_#_)\":false},[\"position:relative\"]],[false,{\"amp-img.tp-slider-alternative-image\":false,\"amp-anim.tp-slider-alternative-image\":false},[\"width:100%\",\"height:auto\"]],[false,{\".noFilterClass:not(#_#_#_#_#_#_#_)\":false},[\"filter:none\"]],[false,{\"rs-bgvideo\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"z-index:0\",\"display:block\"]],[false,{\".rs-layer.rs-fsv\":false},[\"top:0px\",\"left:0px\",\"position:absolute\",\"width:100%\",\"height:100%\"]],[false,{\".rs-layer.rs-fsv amp-audio\":false,\".rs-layer.rs-fsv amp-video\":false,\".rs-layer.rs-fsv amp-youtube\":false,\".rs-layer.rs-fsv amp-iframe\":false,\".rs-layer.rs-fsv amp-iframe amp-audio\":false,\".rs-layer.rs-fsv amp-iframe amp-video\":false,\".rs-layer.rs-fsv amp-iframe amp-youtube\":false},[\"width:100%\",\"height:100%\"]],[false,{\".rs-fsv amp-video\":false,\".rs-fsv amp-youtube\":false},[\"background:#000\"]],[false,{\".fullcoveredvideo rs-poster\":false},[\"background-position:center center\",\"background-size:cover\",\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\"]],[false,{\".videoisplaying .html5vid rs-poster\":false},[\"display:none\"]],[false,{\".tp-video-play-button\":false},[\"background:#000\",\"background:rgba(0,0,0,.3)\",\"border-radius:5px\",\"position:absolute\",\"top:50%\",\"left:50%\",\"color:#fff\",\"z-index:3\",\"z-index:4\",\"margin-top:-25px\",\"margin-left:-25px\",\"text-align:center\",\"cursor:pointer\",\"width:50px\",\"height:50px\",\"box-sizing:border-box\",\"display:inline-block\",\"vertical-align:top\",\"opacity:0\"]],[false,{\".tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"line-height:50px\",\"transition:opacity 300ms ease-out\"]],[false,{\".rs-ISM .tp-video-play-button\":false},[\"opacity:1\",\"z-index:6\"]],[false,{\".rs-ISM .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"transition:none\"]],[false,{\".rs-audio .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".rs-layer .html5vid:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\",\"height:100%\"]],[false,{\".tp-video-play-button i\":false},[\"width:50px\",\"height:50px\",\"display:inline-block\",\"vertical-align:top\"]],[false,{\".tp-video-play-button i:not(#_#_#_#_#_#_#_#_)\":false},[\"text-align:center\",\"line-height:50px\",\"font-size:30px\"]],[false,{\".rs-layer:hover .tp-video-play-button\":false},[\"opacity:1\",\"display:block\",\"z-index:6\"]],[false,{\".rs-layer .tp-revstop\":false},[\"display:none\",\"width:15px\",\"transform:translateX(50%) translateY(50%)\",\"height:20px\"]],[false,{\".rs-layer .tp-revstop:not(#_#_#_#_#_#_#_)\":false},[\"border-right:5px solid #fff\",\"border-left:5px solid #fff\",\"margin-left:11px\",\"margin-top:5px\"]],[false,{\".videoisplaying .revicon-right-dir\":false},[\"display:none\"]],[false,{\".videoisplaying .tp-revstop\":false},[\"display:block\"]],[false,{\".videoisplaying .tp-video-play-button\":false},[\"display:none\"]],[false,{\".fullcoveredvideo .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".rs-fsv .rs-fsv amp-audio:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:contain\"]],[false,{\".rs-fsv .rs-fsv amp-video:not(#_#_#_#_#_#_#_#_)\":false,\".rs-fsv .rs-fsv amp-youtube:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:contain\"]],[false,{\".rs-layer-video .html5vid.hidefullscreen amp-video::-webkit-media-controls-fullscreen-button\":false,\".rs-layer-video .html5vid.hidefullscreen amp-youtube::-webkit-media-controls-fullscreen-button\":false},[\"display:none\"]],[false,\"@supports not (-ms-high-contrast:none){\"],[false,{\".rs-fsv .fullcoveredvideo amp-audio:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:cover\"]],[false,{\".rs-fsv .fullcoveredvideo amp-video:not(#_#_#_#_#_#_#_#_)\":false,\".rs-fsv .fullcoveredvideo amp-youtube:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:cover\"]],[false,\"}\"],[false,{\".rs-fullvideo-cover\":false},[\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\",\"position:absolute\",\"background:transparent\",\"z-index:5\"]],[false,{\".rs-nolc .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-video::-webkit-media-controls-start-playback-button:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-youtube::-webkit-media-controls-start-playback-button:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-video::-webkit-media-controls:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-youtube::-webkit-media-controls:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-audio::-webkit-media-controls:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".rs-audio .tp-video-controls:not(#_#_#_#_#_#_#_)\":false},[\"opacity:1\",\"visibility:visible\"]],[true,{\"rs-module h1.rs-layer\":true,\"rs-module h2.rs-layer\":true,\"rs-module h3.rs-layer\":true,\"rs-module h4.rs-layer\":true,\"rs-module h5.rs-layer\":true,\"rs-module h6.rs-layer\":true,\"rs-module div.rs-layer\":true,\"rs-module span.rs-layer\":true,\"rs-module p.rs-layer\":true},[\"margin:0\",\"padding:0\",\"margin-block-start:0\",\"margin-block-end:0\",\"margin-inline-start:0\",\"margin-inline-end:0\"]],[true,{\"rs-module h1.rs-layer:before\":true,\"rs-module h2.rs-layer:before\":true,\"rs-module h3.rs-layer:before\":true,\"rs-module h4.rs-layer:before\":true,\"rs-module h5.rs-layer:before\":true,\"rs-module h6.rs-layer:before\":true},[\"content:none\"]],[false,{\"rs-dotted\":false},[\"background-repeat:repeat\",\"width:100%\",\"height:100%\",\"position:absolute\",\"top:0px\",\"left:0px\",\"z-index:3\",\"display:block\",\"pointer-events:none\"]],[false,{\"rs-sbg-wrap rs-dotted\":false},[\"z-index:31\"]],[false,{\"rs-dotted.twoxtwo\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile.png\\\")\"]],[false,{\"rs-dotted.twoxtwowhite\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile_white.png\\\")\"]],[false,{\"rs-dotted.threexthree\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile_3x3.png\\\")\"]],[false,{\"rs-dotted.threexthreewhite\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile_3x3_white.png\\\")\"]],[false,{\".tp-shadowcover\":false},[\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\",\"background:#fff\",\"position:absolute\",\"z-index:-1\"]],[false,{\".tp-shadow1\":false},[\"box-shadow:0 10px 6px -6px rgba(0,0,0,.8)\"]],[false,{\".tp-shadow2:before\":false,\".tp-shadow2:after\":false,\".tp-shadow3:before\":false,\".tp-shadow4:after\":false},[\"z-index:-2\",\"position:absolute\",\"content:\\\"\\\"\",\"bottom:10px\",\"left:10px\",\"width:50%\",\"top:85%\",\"max-width:300px\",\"background:transparent\",\"box-shadow:0 15px 10px rgba(0,0,0,.8)\",\"transform:rotate(-3deg)\"]],[false,{\".tp-shadow2:after\":false,\".tp-shadow4:after\":false},[\"transform:rotate(3deg)\",\"right:10px\",\"left:auto\"]],[false,{\".tp-shadow5\":false},[\"position:relative\",\"box-shadow:0 1px 4px rgba(0,0,0,.3),0 0 40px rgba(0,0,0,.1) inset\"]],[false,{\".tp-shadow5:before\":false,\".tp-shadow5:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"z-index:-2\",\"box-shadow:0 0 25px 0px rgba(0,0,0,.6)\",\"top:30%\",\"bottom:0\",\"left:20px\",\"right:20px\",\"border-radius:100px\\/20px\"]],[true,{\".rev-btn\":true,\".rev-btn:visited\":true},[\"box-shadow:none\",\"box-sizing:border-box\",\"cursor:pointer\"]],[true,{\".rev-btn:not(#_#_#_#_#_#_#_)\":true,\".rev-btn:visited:not(#_#_#_#_#_#_#_)\":true},[\"outline:none\",\"text-decoration:none\"]],[false,{\".rev-btn.rev-uppercase\":false,\".rev-btn.rev-uppercase:visited\":false},[\"text-transform:uppercase\"]],[true,{\".rev-btn i\":true},[\"font-size:inherit\",\"font-weight:normal\",\"position:relative\",\"top:0px\",\"transition:opacity .2s ease-out,margin .2s ease-out\",\"margin-left:0px\",\"line-height:inherit\"]],[false,{\".rev-btn.rev-hiddenicon i\":false},[\"font-size:inherit\",\"font-weight:normal\",\"position:relative\",\"top:0px\",\"transition:opacity .2s ease-out,margin .2s ease-out\",\"opacity:0\"]],[false,{\".rev-btn.rev-hiddenicon i:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-left:0px\",\"width:0px\"]],[false,{\".rev-btn.rev-hiddenicon:hover i:not(#_#_#_#_#_#_#_#_)\":false},[\"opacity:1\",\"margin-left:10px\",\"width:auto\"]],[false,{\".rev-burger\":false},[\"position:relative\",\"box-sizing:border-box\",\"padding:22px 14px 22px 14px\",\"border-radius:50%\",\"border:1px solid rgba(51,51,51,.25)\",\"-webkit-tap-highlight-color:rgba(0,0,0,0)\",\"-webkit-tap-highlight-color:transparent\",\"cursor:pointer\"]],[false,{\".rev-burger span\":false},[\"display:block\",\"width:30px\",\"height:3px\",\"background:#333\",\"transition:.7s\",\"pointer-events:none\"]],[false,{\".rev-burger span:not(#_#_#_#_#_#_#_#_)\":false},[\"transform-style:flat\"]],[false,{\".rev-burger span:nth-child(2)\":false},[\"margin:3px 0\"]],[false,{\".quick_style_example_wrap .rev-burger:hover :first-child\":false,\"#dialog_addbutton .rev-burger:hover :first-child\":false,\".open .rev-burger :first-child\":false,\".open.rev-burger :first-child\":false},[\"transform:translateY(6px) rotate(-45deg)\"]],[false,{\".quick_style_example_wrap .rev-burger:hover :nth-child(2)\":false,\"#dialog_addbutton .rev-burger:hover :nth-child(2)\":false,\".open .rev-burger :nth-child(2)\":false,\".open.rev-burger :nth-child(2)\":false},[\"transform:rotate(-45deg)\",\"opacity:0\"]],[false,{\".quick_style_example_wrap .rev-burger:hover :last-child\":false,\"#dialog_addbutton .rev-burger:hover :last-child\":false,\".open .rev-burger :last-child\":false,\".open.rev-burger :last-child\":false},[\"transform:translateY(-6px) rotate(-135deg)\"]],[false,{\".rev-burger.revb-white\":false},[\"border:2px solid rgba(255,255,255,.2)\"]],[false,{\".rev-b-span-light span\":false,\".rev-burger.revb-white span\":false},[\"background:#fff\"]],[false,{\".rev-burger.revb-whitenoborder\":false},[\"border:0\"]],[false,{\".rev-burger.revb-whitenoborder span\":false},[\"background:#fff\"]],[false,{\".rev-burger.revb-darknoborder\":false},[\"border:0\"]],[false,{\".rev-b-span-dark span\":false,\".rev-burger.revb-darknoborder span\":false},[\"background:#333\"]],[false,{\".rev-burger.revb-whitefull\":false},[\"background:#fff\",\"border:none\"]],[false,{\".rev-burger.revb-whitefull span\":false},[\"background:#333\"]],[false,{\".rev-burger.revb-darkfull\":false},[\"background:#333\",\"border:none\"]],[false,{\".rev-burger.revb-darkfull span\":false},[\"background:#fff\"]],[true,\"@keyframes rev-ani-mouse{\"],[true,\"0%{opacity:1;top:29%}\"],[true,\"15%{opacity:1;top:70%}\"],[true,\"50%{opacity:0;top:70%}\"],[true,\"100%{opacity:0;top:29%}\"],[true,\"}\"],[false,{\".rev-scroll-btn\":false},[\"display:inline-block\",\"position:relative\",\"left:0\",\"right:0\",\"text-align:center\",\"cursor:pointer\",\"width:35px\",\"height:55px\",\"box-sizing:border-box\",\"border:3px solid white\",\"border-radius:23px\"]],[false,{\".rev-scroll-btn > *\":false},[\"display:inline-block\",\"line-height:18px\",\"font-size:13px\",\"font-weight:normal\",\"color:#7f8c8d\",\"color:#fff\",\"font-family:\\\"proxima-nova\\\",\\\"Helvetica Neue\\\",Helvetica,Arial,sans-serif\",\"letter-spacing:2px\"]],[false,{\".rev-scroll-btn > *:hover\":false,\".rev-scroll-btn > *:focus\":false,\".rev-scroll-btn > *.active\":false},[\"color:#fff\"]],[false,{\".rev-scroll-btn > *:hover\":false,\".rev-scroll-btn > *:focus\":false,\".rev-scroll-btn > *:active\":false,\".rev-scroll-btn > *.active\":false},[\"opacity:.8\"]],[false,{\".rev-scroll-btn.revs-fullwhite\":false},[\"background:#fff\"]],[false,{\".rev-scroll-btn.revs-fullwhite span\":false},[\"background:#333\"]],[false,{\".rev-scroll-btn.revs-fulldark\":false},[\"background:#333\",\"border:none\"]],[false,{\".rev-scroll-btn.revs-fulldark span\":false},[\"background:#fff\"]],[false,{\".rev-scroll-btn span\":false},[\"position:absolute\",\"display:block\",\"top:29%\",\"left:50%\",\"width:8px\",\"height:8px\",\"margin:-4px 0 0 -4px\",\"border-radius:50%\",\"animation:rev-ani-mouse 2.5s linear infinite\",\"background:#fff\"]],[false,{\".rev-scroll-btn.rev-b-span-dark\":false},[\"border-color:#333\"]],[false,{\".rev-scroll-btn.rev-b-span-dark span\":false,\".rev-scroll-btn.revs-dark span\":false},[\"background:#333\"]],[false,{\".rev-control-btn\":false},[\"position:relative\",\"display:inline-block\",\"z-index:5\",\"color:#fff\",\"font-size:20px\",\"line-height:60px\",\"font-weight:400\",\"font-style:normal\",\"font-family:Raleway\",\"text-decoration:none\",\"text-align:center\",\"background-color:#000\",\"background-color:rgba(0,0,0,.5)\",\"border-radius:50px\",\"text-shadow:none\",\"width:60px\",\"height:60px\",\"box-sizing:border-box\",\"cursor:pointer\"]],[false,{\".rev-cbutton-dark-sr\":false},[\"border-radius:3px\"]],[false,{\".rev-cbutton-light\":false},[\"color:#333\",\"background-color:rgba(255,255,255,.75)\"]],[false,{\".rev-cbutton-light-sr\":false},[\"color:#333\",\"border-radius:3px\",\"background-color:rgba(255,255,255,.75)\"]],[false,{\".rev-sbutton\":false},[\"line-height:37px\",\"width:37px\",\"height:37px\"]],[false,{\".rev-sbutton-blue\":false},[\"background-color:#3b5998\"]],[false,{\".rev-sbutton-lightblue\":false},[\"background-color:#00a0d1\"]],[false,{\".rev-sbutton-red\":false},[\"background-color:#dd4b39\"]],[false,{\"rs-progress\":false},[\"visibility:hidden\",\"position:absolute\",\"z-index:200\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-bar\":false,\".rs-progress-bar\":false},[\"display:block\",\"z-index:20\",\"box-sizing:border-box\",\"background-clip:content-box\",\"position:absolute\",\"line-height:0px\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-bgs\":false},[\"display:block\",\"z-index:15\",\"box-sizing:border-box\",\"width:100%\",\"position:absolute\",\"height:100%\",\"top:0px\",\"left:0px\"]],[false,{\"rs-progress-bg\":false},[\"display:block\",\"background-clip:content-box\",\"position:absolute\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-gap\":false},[\"display:block\",\"background-clip:content-box\",\"position:absolute\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-vis\":false},[\"display:block\",\"width:100%\",\"height:100%\",\"position:absolute\",\"top:0px\",\"left:0px\"]],[true,{\".rs-layer amp-img\":true,\".rs-layer amp-anim\":false},[\"background:transparent\",\"-ms-filter:\\\"progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)\\\"\",\"filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=rgba(0,255,255,1),endColorstr=rgba(0,255,255,1))\"]],[false,{\".rs-layer.slidelink\":false},[\"cursor:pointer\",\"width:100%\",\"height:100%\"]],[false,{\".rs-layer.slidelink a\":false},[\"width:100%\",\"height:100%\",\"display:block\"]],[false,{\".rs-layer.slidelink a div\":false},[\"width:3000px\",\"height:1500px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/coloredbg.png\\\") repeat\"]],[false,{\".rs-layer.slidelink a span\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/coloredbg.png\\\") repeat\",\"width:100%\",\"height:100%\",\"display:block\"]],[false,{\".rs-layer .rs-starring\":false},[\"display:inline-block\"]],[false,{\".rs-layer .rs-starring .star-rating\":false},[\"float:none\",\"display:inline-block\",\"vertical-align:top\"]],[false,{\".rs-layer .rs-starring .star-rating:not(#_#_#_#_#_#_#_)\":false},[\"color:#ffc321\"]],[false,{\".rs-layer .rs-starring .star-rating\":false,\".rs-layer .rs-starring-page .star-rating\":false},[\"position:relative\",\"height:1em\",\"width:5.4em\",\"font-family:star\"]],[false,{\".rs-layer .rs-starring .star-rating:not(#_#_#_#_#_#_#_)\":false,\".rs-layer .rs-starring-page .star-rating:not(#_#_#_#_#_#_#_)\":false},[\"font-size:1em\"]],[false,{\".rs-layer .rs-starring .star-rating:before\":false,\".rs-layer .rs-starring-page .star-rating:before\":false},[\"content:\\\"sssss\\\"\",\"color:#e0dadf\",\"float:left\",\"top:0\",\"left:0\",\"position:absolute\"]],[false,{\".rs-layer .rs-starring .star-rating span\":false},[\"overflow:hidden\",\"float:left\",\"top:0\",\"left:0\",\"position:absolute\",\"padding-top:1.5em\"]],[false,{\".rs-layer .rs-starring .star-rating span:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:1em\"]],[false,{\".rs-layer .rs-starring .star-rating span:before\":false},[\"content:\\\"SSSSS\\\"\",\"top:0\",\"position:absolute\",\"left:0\"]],[false,{\"rs-loader\":false},[\"top:50%\",\"left:50%\",\"z-index:10000\",\"position:absolute\"]],[false,{\"rs-loader.off:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"rs-loader.spinner0\":false},[\"width:40px\",\"height:40px\",\"background-color:#fff\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/loader.gif\\\")\",\"background-repeat:no-repeat\",\"background-position:center center\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"margin-top:-20px\",\"margin-left:-20px\",\"animation:tp-rotateplane 1.2s infinite ease-in-out\",\"border-radius:3px\"]],[false,{\"rs-loader.spinner1\":false},[\"width:40px\",\"height:40px\",\"background-color:#fff\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"margin-top:-20px\",\"margin-left:-20px\",\"animation:tp-rotateplane 1.2s infinite ease-in-out\",\"border-radius:3px\"]],[false,{\"rs-loader.spinner5\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/loader.gif\\\")\",\"background-repeat:no-repeat\",\"background-position:10px 10px\",\"background-color:#fff\",\"margin:-22px -22px\",\"width:44px\",\"height:44px\",\"border-radius:3px\"]],[true,\"@keyframes tp-rotateplane{\"],[true,\"0%{transform:perspective(120px) rotateX(0deg) rotateY(0deg)}\"],[true,\"50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0deg)}\"],[true,\"100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner2\":false},[\"width:40px\",\"height:40px\",\"margin-top:-20px\",\"margin-left:-20px\",\"background-color:#f00\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"border-radius:100%\",\"animation:tp-scaleout 1s infinite ease-in-out\"]],[true,\"@keyframes tp-scaleout{\"],[true,\"0%{transform:scale(0)}\"],[true,\"100%{transform:scale(1);opacity:0}\"],[true,\"}\"],[false,{\"rs-loader.spinner3\":false},[\"margin:-9px 0px 0px -35px\",\"width:70px\",\"text-align:center\"]],[false,{\"rs-loader.spinner3 .bounce1\":false,\"rs-loader.spinner3 .bounce2\":false,\"rs-loader.spinner3 .bounce3\":false},[\"width:18px\",\"height:18px\",\"background-color:#fff\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"border-radius:100%\",\"display:inline-block\",\"animation:tp-bouncedelay 1.4s infinite ease-in-out\",\"animation-fill-mode:both\"]],[false,{\"rs-loader.spinner3 .bounce1\":false},[\"animation-delay:-.32s\"]],[false,{\"rs-loader.spinner3 .bounce2\":false},[\"animation-delay:-.16s\"]],[true,\"@keyframes tp-bouncedelay{\"],[true,\"0%,80%,100%{transform:scale(0)}\"],[true,\"40%{transform:scale(1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner4\":false},[\"margin:-20px 0px 0px -20px\",\"width:40px\",\"height:40px\",\"text-align:center\",\"animation:tp-rotate 2s infinite linear\"]],[false,{\"rs-loader.spinner4 .dot1\":false,\"rs-loader.spinner4 .dot2\":false},[\"width:60%\",\"height:60%\",\"display:inline-block\",\"position:absolute\",\"top:0\",\"background-color:#fff\",\"border-radius:100%\",\"animation:tp-bounce 2s infinite ease-in-out\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\"]],[false,{\"rs-loader.spinner4 .dot2\":false},[\"top:auto\",\"bottom:0px\",\"animation-delay:-1s\"]],[true,\"@keyframes tp-rotate{\"],[true,\"100%{transform:rotate(360deg)}\"],[true,\"}@keyframes tp-bounce{\"],[true,\"0%,100%{transform:scale(0)}\"],[true,\"50%{transform:scale(1)}\"],[true,\"}\"],[false,{\"rs-layer amp-iframe\":false},[\"visibility:hidden\"]],[false,{\"rs-layer.rs-ii-o amp-iframe\":false},[\"visibility:visible\"]],[true,{\"rs-layer input[type=\\\"text\\\"]\":true,\"rs-layer input[type=\\\"email\\\"]\":true,\"rs-layer input[type=\\\"url\\\"]\":true,\"rs-layer input[type=\\\"password\\\"]\":true,\"rs-layer input[type=\\\"search\\\"]\":true,\"rs-layer input[type=\\\"number\\\"]\":true,\"rs-layer input[type=\\\"tel\\\"]\":true,\"rs-layer input[type=\\\"range\\\"]\":true,\"rs-layer input[type=\\\"date\\\"]\":true,\"rs-layer input[type=\\\"month\\\"]\":true,\"rs-layer input[type=\\\"week\\\"]\":true,\"rs-layer input[type=\\\"time\\\"]\":true,\"rs-layer input[type=\\\"datetime\\\"]\":true,\"rs-layer input[type=\\\"datetime-local\\\"]\":true},[\"display:inline-block\"]],[true,{\"rs-layer input::placeholder\":true},[\"vertical-align:middle\"]],[true,{\"rs-layer input::placeholder:not(#_#_#_#_#_#_#_#_)\":true},[\"line-height:inherit\"]],[true,{\"a.rs-layer\":true},[\"transition:none\"]],[false,{\"rs-thumbs-wrap\":false,\"rs-tabs-wrap\":false,\"rs-thumbs\":false,\"rs-thumb\":false,\"rs-tab\":false,\"rs-bullet\":false,\"rs-bullets\":false,\"rs-navmask\":false,\"rs-tabs\":false,\"rs-arrow\":false},[\"display:block\",\"pointer-events:all\"]],[false,{\".tp-thumbs.navbar\":false,\".tp-bullets.navbar\":false,\".tp-tabs.navbar\":false},[\"border:none\",\"min-height:0\",\"margin:0\",\"border-radius:0\"]],[false,{\".tp-tabs\":false,\".tp-thumbs\":false,\".tp-bullets\":false},[\"position:absolute\",\"display:block\",\"z-index:1000\",\"top:0px\",\"left:0px\"]],[false,{\".tp-tab\":false,\".tp-thumb\":false},[\"cursor:pointer\",\"position:absolute\",\"opacity:.5\",\"box-sizing:border-box\"]],[false,{\".tp-arr-imgholder\":false,\"rs-poster\":false,\".tp-thumb-image\":false,\".tp-tab-image\":false},[\"background-position:center center\",\"background-size:cover\",\"width:100%\",\"height:100%\",\"display:block\",\"position:absolute\",\"top:0px\",\"left:0px\"]],[false,{\"rs-poster\":false},[\"cursor:pointer\",\"z-index:3\"]],[false,{\".tp-tab.rs-touchhover\":false,\".tp-tab.selected\":false,\".tp-thumb.rs-touchhover\":false,\".tp-thumb.selected\":false},[\"opacity:1\"]],[false,{\".tp-tab-mask:not(#_#_#_#_#_#_#_)\":false,\".tp-thumb-mask:not(#_#_#_#_#_#_#_)\":false},[\"box-sizing:border-box\"]],[false,{\".tp-tabs:not(#_#_#_#_#_#_#_)\":false,\".tp-thumbs:not(#_#_#_#_#_#_#_)\":false},[\"box-sizing:content-box\"]],[false,{\".tp-bullet\":false},[\"width:15px\",\"height:15px\",\"position:absolute\",\"background:#fff\",\"background:rgba(255,255,255,.3)\",\"cursor:pointer\"]],[false,{\".tp-bullet.selected\":false,\".tp-bullet.rs-touchhover\":false},[\"background:#fff\"]],[false,{\".tparrows\":false},[\"cursor:pointer\",\"background:#000\",\"background:rgba(0,0,0,.5)\",\"width:40px\",\"height:40px\",\"position:absolute\",\"display:block\",\"z-index:1000\"]],[false,{\".tparrows.rs-touchhover\":false},[\"background:#000\"]],[false,{\".tparrows:before\":false},[\"font-family:\\\"revicons\\\"\",\"font-size:15px\",\"color:#fff\",\"display:block\",\"line-height:40px\",\"text-align:center\"]],[false,{\".tparrows.tp-leftarrow:before\":false},[\"content:\\\"\\ue824\\\"\"]],[false,{\".tparrows.tp-rightarrow:before\":false},[\"content:\\\"\\ue825\\\"\"]],[true,{\".rs-layer [class^=\\\"pe-7s-\\\"]:before\":true,\".rs-layer [class*=\\\" pe-7s-\\\"]:before\":true,\".rs-layer [class^=\\\"pe-7s-\\\"]\":true,\".rs-layer [class*=\\\" pe-7s-\\\"]\":true},[\"width:auto\",\"margin:0\",\"line-height:inherit\",\"box-sizing:inherit\"]],[false,{\"rs-pzimg-wrap\":false},[\"display:block\"]],[false,{\"body.rtl .rs-pzimg:not(#_#_#_#_#_#_#_#_)\":false},[\"left:0\"]],[false,{\".rs_fake_cube\":false},[\"transform-style:preserve-3d\"]],[false,{\".rs_fake_cube\":false,\".rs_fake_cube_wall\":false},[\"position:absolute\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"left:0px\",\"top:0px\",\"z-index:0\"]],[false,{\".rs-builder-mode rs-sbg-wrap canvas\":false,\"rs-sbg canvas\":false},[\"overflow:hidden\",\"z-index:5\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".dddwrappershadow\":false},[\"box-shadow:0 45px 100px rgba(0,0,0,.4)\"]],[false,{\".dddwrapper\":false},[\"transform-style:flat\",\"perspective:10000px\"]],[false,{\".rs_error_message_box\":false},[\"background:#111\",\"width:800px\",\"margin:40px auto\",\"padding:40px 20px\",\"text-align:center\",\"font-family:\\\"Open Sans\\\",sans-serif\"]],[false,{\".rs_error_message_oops\":false},[\"margin:0px 0px 20px\",\"line-height:60px\",\"font-size:34px\",\"color:#fff\"]],[false,{\".rs_error_message_content\":false},[\"margin:0px 0px 20px\",\"line-height:25px\",\"font-size:17px\",\"color:#fff\"]],[false,{\".rs_error_message_button\":false},[\"background:#333\",\"display:inline-block\",\"padding:10px 15px\",\"text-align:right\",\"border-radius:5px\",\"cursor:pointer\"]],[false,{\".rs_error_message_button:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\".rs_error_message_button:hover\":false},[\"background:#5e35b1\"]],[false,{\".hglayerinfo\":false},[\"position:fixed\",\"bottom:0px\",\"left:0px\",\"color:#fff\",\"font-size:12px\",\"line-height:20px\",\"font-weight:600\",\"background:rgba(0,0,0,.75)\",\"padding:5px 10px\",\"z-index:2000\",\"white-space:normal\"]],[false,{\".hginfo\":false},[\"position:absolute\",\"top:-2px\",\"left:-2px\",\"color:#e74c3c\",\"font-size:12px\",\"font-weight:600\",\"background:#000\",\"padding:2px 5px\"]],[false,{\".indebugmode .rs-layer:hover:not(#_#_#_#_#_#_#_)\":false},[\"border:1px dashed #c0392b\"]],[false,{\".helpgrid\":false},[\"border:2px dashed #c0392b\",\"position:absolute\",\"top:0px\",\"left:0px\",\"z-index:0\"]],[false,{\"#revsliderlogloglog\":false},[\"padding:15px\",\"color:#fff\",\"position:fixed\",\"top:0px\",\"left:0px\",\"width:200px\",\"height:150px\",\"background:rgba(0,0,0,.7)\",\"z-index:100000\",\"font-size:10px\",\"overflow:scroll\"]],[false,{\".aden\":false},[\"filter:hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2)\"]],[false,{\".aden::after\":false},[\"background:linear-gradient(to right,rgba(66,10,14,.2),transparent)\",\"mix-blend-mode:darken\"]],[false,{\".perpetua::after\":false,\".reyes::after\":false},[\"mix-blend-mode:soft-light\",\"opacity:.5\"]],[false,{\".inkwell\":false},[\"filter:sepia(.3) contrast(1.1) brightness(1.1) grayscale(1)\"]],[false,{\".perpetua::after\":false},[\"background:linear-gradient(to bottom,#005b9a,#e6c13d)\"]],[false,{\".reyes\":false},[\"filter:sepia(.22) brightness(1.1) contrast(.85) saturate(.75)\"]],[false,{\".reyes::after\":false},[\"background:#efcdad\"]],[false,{\".gingham\":false},[\"filter:brightness(1.05) hue-rotate(-10deg)\"]],[false,{\".gingham::after\":false},[\"background:linear-gradient(to right,rgba(66,10,14,.2),transparent)\",\"mix-blend-mode:darken\"]],[false,{\".toaster\":false},[\"filter:contrast(1.5) brightness(.9)\"]],[false,{\".toaster::after\":false},[\"background:radial-gradient(circle,#804e0f,#3b003b)\",\"mix-blend-mode:screen\"]],[false,{\".walden\":false},[\"filter:brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6)\"]],[false,{\".walden::after\":false},[\"background:#04c\",\"mix-blend-mode:screen\",\"opacity:.3\"]],[false,{\".hudson\":false},[\"filter:brightness(1.2) contrast(.9) saturate(1.1)\"]],[false,{\".hudson::after\":false},[\"background:radial-gradient(circle,#a6b1ff 50%,#342134)\",\"mix-blend-mode:multiply\",\"opacity:.5\"]],[false,{\".earlybird\":false},[\"filter:contrast(.9) sepia(.2)\"]],[false,{\".earlybird::after\":false},[\"background:radial-gradient(circle,#d0ba8e 20%,#360309 85%,#1d0210 100%)\",\"mix-blend-mode:overlay\"]],[false,{\".mayfair\":false},[\"filter:contrast(1.1) saturate(1.1)\"]],[false,{\".mayfair::after\":false},[\"background:radial-gradient(circle at 40% 40%,rgba(255,255,255,.8),rgba(255,200,200,.6),#111 60%)\",\"mix-blend-mode:overlay\",\"opacity:.4\"]],[false,{\".lofi\":false},[\"filter:saturate(1.1) contrast(1.5)\"]],[false,{\".lofi::after\":false},[\"background:radial-gradient(circle,transparent 70%,#222 150%)\",\"mix-blend-mode:multiply\"]],[false,{\"._1977\":false},[\"filter:contrast(1.1) brightness(1.1) saturate(1.3)\"]],[false,{\"._1977:after\":false},[\"background:rgba(243,106,188,.3)\",\"mix-blend-mode:screen\"]],[false,{\".brooklyn\":false},[\"filter:contrast(.9) brightness(1.1)\"]],[false,{\".brooklyn::after\":false},[\"background:radial-gradient(circle,rgba(168,223,193,.4) 70%,#c4b7c8)\",\"mix-blend-mode:overlay\"]],[false,{\".xpro2\":false},[\"filter:sepia(.3)\"]],[false,{\".xpro2::after\":false},[\"background:radial-gradient(circle,#e6e7e0 40%,rgba(43,42,161,.6) 110%)\",\"mix-blend-mode:color-burn\"]],[false,{\".nashville\":false},[\"filter:sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2)\"]],[false,{\".nashville::after\":false},[\"background:rgba(0,70,150,.4)\",\"mix-blend-mode:lighten\"]],[false,{\".nashville::before\":false},[\"background:rgba(247,176,153,.56)\",\"mix-blend-mode:darken\"]],[false,{\".lark\":false},[\"filter:contrast(.9)\"]],[false,{\".lark::after\":false},[\"background:rgba(242,242,242,.8)\",\"mix-blend-mode:darken\"]],[false,{\".lark::before\":false},[\"background:#22253f\",\"mix-blend-mode:color-dodge\"]],[false,{\".moon\":false},[\"filter:grayscale(1) contrast(1.1) brightness(1.1)\"]],[false,{\".moon::before\":false},[\"background:#a0a0a0\",\"mix-blend-mode:soft-light\"]],[false,{\".moon::after\":false},[\"background:#383838\",\"mix-blend-mode:lighten\"]],[false,{\".clarendon\":false},[\"filter:contrast(1.2) saturate(1.35)\"]],[false,{\".clarendon:before\":false},[\"background:rgba(127,187,227,.2)\",\"mix-blend-mode:overlay\"]],[false,{\".willow\":false},[\"filter:grayscale(.5) contrast(.95) brightness(.9)\"]],[false,{\".willow::before\":false},[\"background-image:radial-gradient(circle,40%,#d4a9af 55%,#000 150%)\",\"mix-blend-mode:overlay\"]],[false,{\".rise\":false},[\"filter:brightness(1.05) sepia(.2) contrast(.9) saturate(.9)\"]],[false,{\".rise::after\":false},[\"background:radial-gradient(circle,rgba(232,197,152,.8),transparent 90%)\",\"mix-blend-mode:overlay\",\"opacity:.6\"]],[false,{\".rise::before\":false},[\"background:radial-gradient(circle,rgba(236,205,169,.15) 55%,rgba(50,30,7,.4))\",\"mix-blend-mode:multiply\"]],[false,{\"._1977:after\":false,\"._1977:before\":false,\"rs-pzimg-wrap.aden:after\":false,\".aden:before\":false,\".brooklyn:after\":false,\".brooklyn:before\":false,\".clarendon:after\":false,\".clarendon:before\":false,\".earlybird:after\":false,\".earlybird:before\":false,\".gingham:after\":false,\".gingham:before\":false,\".hudson:after\":false,\".hudson:before\":false,\".inkwell:after\":false,\".inkwell:before\":false,\".lark:after\":false,\".lark:before\":false,\".lofi:after\":false,\".lofi:before\":false,\".mayfair:after\":false,\".mayfair:before\":false,\".moon:after\":false,\".moon:before\":false,\".nashville:after\":false,\".nashville:before\":false,\".perpetua:after\":false,\".perpetua:before\":false,\".reyes:after\":false,\".reyes:before\":false,\".rise:after\":false,\".rise:before\":false,\".slumber:after\":false,\".slumber:before\":false,\".toaster:after\":false,\".toaster:before\":false,\".walden:after\":false,\".walden:before\":false,\".willow:after\":false,\".willow:before\":false,\".xpro2:after\":false,\".xpro2:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"height:100%\",\"width:100%\",\"top:0\",\"left:0\",\"position:absolute\",\"pointer-events:none\"]],[false,{\"._1977\":false,\".aden\":false,\".brooklyn\":false,\".clarendon\":false,\".earlybird\":false,\".gingham\":false,\".hudson\":false,\".inkwell\":false,\".lark\":false,\".lofi\":false,\".mayfair\":false,\".moon\":false,\".nashville\":false,\".perpetua\":false,\".reyes\":false,\".rise\":false,\".slumber\":false,\".toaster\":false,\".walden\":false,\".willow\":false,\".xpro2\":false},[\"position:absolute\"]],[false,{\"._1977:before\":false,\".aden:before\":false,\".brooklyn:before\":false,\".clarendon:before\":false,\".earlybird:before\":false,\".gingham:before\":false,\".hudson:before\":false,\".inkwell:before\":false,\".lark:before\":false,\".lofi:before\":false,\".mayfair:before\":false,\".moon:before\":false,\".nashville:before\":false,\".perpetua:before\":false,\".reyes:before\":false,\".rise:before\":false,\".slumber:before\":false,\".toaster:before\":false,\".walden:before\":false,\".willow:before\":false,\".xpro2:before\":false},[\"z-index:30\"]],[false,{\"._1977:after\":false,\".aden:after\":false,\".brooklyn:after\":false,\".clarendon:after\":false,\".earlybird:after\":false,\".gingham:after\":false,\".hudson:after\":false,\".inkwell:after\":false,\".lark:after\":false,\".lofi:after\":false,\".mayfair:after\":false,\".moon:after\":false,\".nashville:after\":false,\".perpetua:after\":false,\".reyes:after\":false,\".rise:after\":false,\".slumber:after\":false,\".toaster:after\":false,\".walden:after\":false,\".willow:after\":false,\".xpro2:after\":false},[\"z-index:40\"]],[false,{\".slumber\":false},[\"filter:saturate(.66) brightness(1.05)\"]],[false,{\".slumber::after\":false},[\"background:rgba(125,105,24,.5)\",\"mix-blend-mode:soft-light\"]],[false,{\".slumber::before\":false},[\"background:rgba(69,41,12,.4)\",\"mix-blend-mode:lighten\"]],[false,{\".willow::after\":false},[\"background-color:#d8cdcb\",\"mix-blend-mode:color\"]],[false,\"@media not all and (min-resolution:.001dpcm){\"],[false,\"@supports (-webkit-appearance:none){\"],[false,{\".willow\":false},[\"filter:grayscale(1) contrast(.95) brightness(.9)\"]],[false,{\".willow::after\":false},[\"background-color:transparent\"]],[false,\"}\"],[false,\"}\"],[false,{\"rs-pzimg-wrap.perpetua:before\":false,\"rs-pzimg-wrap.perpetua:after\":false,\"rs-pzimg-wrap.nashville:before\":false,\"rs-pzimg-wrap.nashville:after\":false,\"rs-pzimg-wrap.xpro2:before\":false,\"rs-pzimg-wrap.xpro2:after\":false,\"rs-pzimg-wrap._1977:after\":false,\"rs-pzimg-wrap._1977:before\":false,\"rs-pzimg-wrap.aden:after\":false,\"rs-pzimg-wrap.aden:before\":false,\"rs-pzimg-wrap.brooklyn:after\":false,\"rs-pzimg-wrap.brooklyn:before\":false,\"rs-pzimg-wrap.clarendon:after\":false,\"rs-pzimg-wrap.clarendon:before\":false,\"rs-pzimg-wrap.earlybird:after\":false,\"rs-pzimg-wrap.earlybird:before\":false,\"rs-pzimg-wrap.gingham:after\":false,\"rs-pzimg-wrap.gingham:before\":false,\"rs-pzimg-wrap.hudson:after\":false,\"rs-pzimg-wrap.hudson:before\":false,\"rs-pzimg-wrap.inkwell:after\":false,\"rs-pzimg-wrap.inkwell:before\":false,\"rs-pzimg-wrap.lark:after\":false,\"rs-pzimg-wrap.lark:before\":false,\"rs-pzimg-wrap.lofi:after\":false,\"rs-pzimg-wrap.lofi:before\":false,\"rs-pzimg-wrap.mayfair:after\":false,\"rs-pzimg-wrap.mayfair:before\":false,\"rs-pzimg-wrap.moon:after\":false,\"rs-pzimg-wrap.moon:before\":false,\"rs-pzimg-wrap.reyes:after\":false,\"rs-pzimg-wrap.reyes:before\":false,\"rs-pzimg-wrap.rise:after\":false,\"rs-pzimg-wrap.rise:before\":false,\"rs-pzimg-wrap.slumber:after\":false,\"rs-pzimg-wrap.slumber:before\":false,\"rs-pzimg-wrap.toaster:after\":false,\"rs-pzimg-wrap.toaster:before\":false,\"rs-pzimg-wrap.walden:after\":false,\"rs-pzimg-wrap.walden:before\":false,\"rs-pzimg-wrap.willow:after\":false,\"rs-pzimg-wrap.willow:before\":false,\"rs-pzimg-wrap:before\":false,\"rs-pzimg-wrap:after\":false},[\"height:500%\",\"width:500%\"]],[false,{\"rs-loader.spinner6\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"display:inline-block\",\"-webkit-animation:rs-revealer-6 1.4s linear infinite\",\"animation:rs-revealer-6 1.4s linear infinite\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span\":false},[\"position:absolute\",\"vertical-align:top\",\"border-radius:100%\",\"display:inline-block\",\"width:8px\",\"height:8px\",\"margin-left:16px\",\"transform-origin:center 20px\",\"-webkit-transform-origin:center 20px\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(2)\":false},[\"transform:rotate(36deg)\",\"-webkit-transform:rotate(36deg)\",\"opacity:.1\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(3)\":false},[\"transform:rotate(72deg)\",\"-webkit-transform:rotate(72deg)\",\"opacity:.2\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(4)\":false},[\"transform:rotate(108deg)\",\"-webkit-transform:rotate(108deg)\",\"opacity:.3\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(5)\":false},[\"transform:rotate(144deg)\",\"-webkit-transform:rotate(144deg)\",\"opacity:.4\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(6)\":false},[\"transform:rotate(180deg)\",\"-webkit-transform:rotate(180deg)\",\"opacity:.5\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(7)\":false},[\"transform:rotate(216deg)\",\"-webkit-transform:rotate(216deg)\",\"opacity:.6\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(8)\":false},[\"transform:rotate(252deg)\",\"-webkit-transform:rotate(252deg)\",\"opacity:.7\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(9)\":false},[\"transform:rotate(288deg)\",\"-webkit-transform:rotate(288deg)\",\"opacity:.8\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(10)\":false},[\"transform:rotate(324deg)\",\"-webkit-transform:rotate(324deg)\",\"opacity:.9\"]],[true,\"@keyframes rs-revealer-6{\"],[true,\"from{transform:rotate(0)}\"],[true,\"to{transform:rotate(360deg)}\"],[true,\"}@-webkit-keyframes rs-revealer-6{\"],[true,\"from{-webkit-transform:rotate(0)}\"],[true,\"to{-webkit-transform:rotate(360deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner7\":false},[\"width:35px\",\"height:35px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner7 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"display:inline-block\",\"padding:0\",\"border-radius:100%\",\"border:2px solid\",\"-webkit-animation:rs-revealer-7 .8s linear infinite\",\"animation:rs-revealer-7 .8s linear infinite\"]],[true,\"@keyframes rs-revealer-7{\"],[true,\"from{transform:rotate(0)}\"],[true,\"to{transform:rotate(360deg)}\"],[true,\"}@-webkit-keyframes rs-revealer-7{\"],[true,\"from{-webkit-transform:rotate(0)}\"],[true,\"to{-webkit-transform:rotate(360deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner8\":false},[\"width:50px\",\"height:50px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner8 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"display:inline-block\",\"padding:0\",\"text-align:left\"]],[false,{\"rs-loader.spinner8 .rs-spinner-inner span\":false},[\"position:absolute\",\"display:inline-block\",\"width:100%\",\"height:100%\",\"border-radius:100%\",\"-webkit-animation:rs-revealer-8 1.6s linear infinite\",\"animation:rs-revealer-8 1.6s linear infinite\"]],[false,{\"rs-loader.spinner8 .rs-spinner-inner span:last-child\":false},[\"animation-delay:-.8s\",\"-webkit-animation-delay:-.8s\"]],[true,\"@keyframes rs-revealer-8{\"],[true,\"0%{transform:scale(0,0);opacity:.5}\"],[true,\"100%{transform:scale(1,1);opacity:0}\"],[true,\"}@-webkit-keyframes rs-revealer-8{\"],[true,\"0%{-webkit-transform:scale(0,0);opacity:.5}\"],[true,\"100%{-webkit-transform:scale(1,1);opacity:0}\"],[true,\"}\"],[false,{\"rs-loader.spinner9\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner9 .rs-spinner-inner span\":false},[\"display:block\",\"width:100%\",\"height:100%\",\"border-radius:50%\",\"opacity:.6\",\"position:absolute\",\"top:0\",\"left:0\",\"-webkit-animation:rs-revealer-9 2s infinite ease-in-out\",\"animation:rs-revealer-9 2s infinite ease-in-out\"]],[false,{\"rs-loader.spinner9 .rs-spinner-inner span:last-child\":false},[\"-webkit-animation-delay:-1s\",\"animation-delay:-1s\"]],[true,\"@-webkit-keyframes rs-revealer-9{\"],[true,\"0%,100%{-webkit-transform:scale(0)}\"],[true,\"50%{-webkit-transform:scale(1)}\"],[true,\"}@keyframes rs-revealer-9{\"],[true,\"0%,100%{transform:scale(0);-webkit-transform:scale(0)}\"],[true,\"50%{transform:scale(1);-webkit-transform:scale(1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner10\":false},[\"width:54px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"text-align:center\",\"font-size:10px\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span\":false},[\"display:block\",\"display:inline-block\",\"height:100%\",\"width:6px\",\"-webkit-animation:rs-revealer-10 1.2s infinite ease-in-out\",\"animation:rs-revealer-10 1.2s infinite ease-in-out\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(2)\":false},[\"-webkit-animation-delay:-1.1s\",\"animation-delay:-1.1s\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(3)\":false},[\"-webkit-animation-delay:-1s\",\"animation-delay:-1s\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(4)\":false},[\"-webkit-animation-delay:-.9s\",\"animation-delay:-.9s\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(5)\":false},[\"-webkit-animation-delay:-.8s\",\"animation-delay:-.8s\"]],[true,\"@-webkit-keyframes rs-revealer-10{\"],[true,\"0%,100%,40%{-webkit-transform:scaleY(.4)}\"],[true,\"20%{-webkit-transform:scaleY(1)}\"],[true,\"}@keyframes rs-revealer-10{\"],[true,\"0%,100%,40%{transform:scaleY(.4);-webkit-transform:scaleY(.4)}\"],[true,\"20%{transform:scaleY(1);-webkit-transform:scaleY(1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner11\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span\":false},[\"display:block\",\"width:33%\",\"height:33%\",\"background-color:#333\",\"float:left\",\"-webkit-animation:rs-revealer-11 1.3s infinite ease-in-out\",\"animation:rs-revealer-11 1.3s infinite ease-in-out\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(1)\":false},[\"-webkit-animation-delay:.2s\",\"animation-delay:.2s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(2)\":false},[\"-webkit-animation-delay:.3s\",\"animation-delay:.3s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(3)\":false},[\"-webkit-animation-delay:.4s\",\"animation-delay:.4s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(4)\":false},[\"-webkit-animation-delay:.1s\",\"animation-delay:.1s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(5)\":false},[\"-webkit-animation-delay:.2s\",\"animation-delay:.2s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(6)\":false},[\"-webkit-animation-delay:.3s\",\"animation-delay:.3s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(7)\":false},[\"-webkit-animation-delay:0s\",\"animation-delay:0s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(8)\":false},[\"-webkit-animation-delay:.1s\",\"animation-delay:.1s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(9)\":false},[\"-webkit-animation-delay:.2s\",\"animation-delay:.2s\"]],[true,\"@-webkit-keyframes rs-revealer-11{\"],[true,\"0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}\"],[true,\"35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}\"],[true,\"}@keyframes rs-revealer-11{\"],[true,\"0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}\"],[true,\"35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner12\":false},[\"width:35px\",\"height:35px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner12 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"-webkit-animation:rs-revealer-12 1s infinite linear\",\"animation:rs-revealer-12 1s infinite linear\"]],[true,\"@-webkit-keyframes rs-revealer-12{\"],[true,\"0%{-webkit-transform:rotate(0)}\"],[true,\"100%{-webkit-transform:rotate(360deg)}\"],[true,\"}@keyframes rs-revealer-12{\"],[true,\"0%{transform:rotate(0)}\"],[true,\"100%{transform:rotate(360deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner13\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span\":false},[\"display:block\",\"width:40%\",\"height:40%\",\"position:absolute\",\"border-radius:50%\",\"-webkit-animation:rs-revealer-13 2s ease infinite\",\"animation:rs-revealer-13 2s ease infinite\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span:nth-child(1)\":false},[\"animation-delay:-1.5s\",\"-webkit-animation-delay:-1.5s\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span:nth-child(2)\":false},[\"animation-delay:-1s\",\"-webkit-animation-delay:-1s\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span:nth-child(3)\":false},[\"animation-delay:-.5s\",\"-webkit-animation-delay:-.5s\"]],[true,\"@keyframes rs-revealer-13{\"],[true,\"0%,100%{transform:translate(0)}\"],[true,\"25%{transform:translate(160%)}\"],[true,\"50%{transform:translate(160%,160%)}\"],[true,\"75%{transform:translate(0,160%)}\"],[true,\"}@-webkit-keyframes rs-revealer-13{\"],[true,\"0%,100%{-webkit-transform:translate(0)}\"],[true,\"25%{-webkit-transform:translate(160%)}\"],[true,\"50%{-webkit-transform:translate(160%,160%)}\"],[true,\"75%{-webkit-transform:translate(0,160%)}\"],[true,\"}\"],[false,{\"rs-loader.spinner14\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"animation:rs-revealer-14 1s infinite linear\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span\":false},[\"display:block\",\"position:absolute\",\"top:50%\",\"left:50%\",\"width:16px\",\"height:16px\",\"border-radius:50%\",\"margin:-8px\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(1)\":false},[\"-webkit-animation:rs-revealer-14-1 2s infinite\",\"animation:rs-revealer-14-1 2s infinite\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(2)\":false},[\"-webkit-animation:rs-revealer-14-2 2s infinite\",\"animation:rs-revealer-14-2 2s infinite\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(3)\":false},[\"-webkit-animation:rs-revealer-14-3 2s infinite\",\"animation:rs-revealer-14-3 2s infinite\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(4)\":false},[\"-webkit-animation:rs-revealer-14-4 2s infinite\",\"animation:rs-revealer-14-4 2s infinite\"]],[true,\"@-webkit-keyframes rs-revealer-14-1{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(80%,80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(80%,80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@-webkit-keyframes rs-revealer-14-2{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(80%,-80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(80%,-80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@-webkit-keyframes rs-revealer-14-3{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(-80%,-80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(-80%,-80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@-webkit-keyframes rs-revealer-14-4{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(-80%,80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(-80%,80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-1{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(80%,80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(80%,80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-2{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(80%,-80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(80%,-80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-3{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(-80%,-80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(-80%,-80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-4{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(-80%,80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(-80%,80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}\"],[false,{\"rs-loader.spinner15\":false},[\"width:40px\",\"height:40px\",\"margin-top:-4px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner15 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\"]],[false,{\"rs-loader.spinner15 .rs-spinner-inner span\":false},[\"display:block\",\"width:20px\",\"height:20px\",\"position:absolute\",\"top:0\",\"left:0\",\"-webkit-animation:rs-revealer-15 1.8s infinite ease-in-out\",\"animation:rs-revealer-15 1.8s infinite ease-in-out\"]],[false,{\"rs-loader.spinner15 .rs-spinner-inner:last-child\":false},[\"-webkit-animation-delay:-.9s\",\"animation-delay:-.9s\"]],[true,\"@-webkit-keyframes rs-revealer-15{\"],[true,\"25%{-webkit-transform:translateX(30px) rotate(-90deg) scale(.5)}\"],[true,\"50%{-webkit-transform:translateX(30px) translateY(30px) rotate(-180deg)}\"],[true,\"75%{-webkit-transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5)}\"],[true,\"100%{-webkit-transform:rotate(-360deg)}\"],[true,\"}@keyframes rs-revealer-15{\"],[true,\"25%{transform:translateX(30px) rotate(-90deg) scale(.5);-webkit-transform:translateX(30px) rotate(-90deg) scale(.5)}\"],[true,\"50%{transform:translateX(30px) translateY(30px) rotate(-179deg);-webkit-transform:translateX(30px) translateY(30px) rotate(-179deg)}\"],[true,\"50.1%{transform:translateX(30px) translateY(30px) rotate(-180deg);-webkit-transform:translateX(30px) translateY(30px) rotate(-180deg)}\"],[true,\"75%{transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5);-webkit-transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5)}\"],[true,\"100%{transform:rotate(-360deg);-webkit-transform:rotate(-360deg)}\"],[true,\"}\"],[false,{\".bgcanvas\":false},[\"display:none\",\"position:absolute\",\"overflow:hidden\"]],[false,{\".RSscrollbar-measure\":false},[\"width:100px\",\"height:100px\",\"overflow:scroll\",\"position:absolute\",\"top:-9999px\"]],[false,{\".avada-has-rev-slider-styles .rev_slider_wrapper\":false},[\"transform:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":5235,\"final_size\":0,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"rs-plugin-settings-inline-css\",\"type\":\"text\\/css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":134,\"function\":\"RevSliderFront::add_inline_css\",\"hook\":\"wp_footer\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"\\t\\t#rev_slider_7_1_wrapper .uranus.tparrows{width:50px; height:50px; background:rgba(255,255,255,0)}#rev_slider_7_1_wrapper .uranus.tparrows:before{width:50px; height:50px; line-height:50px; font-size:15px; transition:all 0.3s;-webkit-transition:all 0.3s}#rev_slider_7_1_wrapper .uranus.tparrows.rs-touchhover:before{opacity:0.75}#rev_slider_7_1_wrapper .ares_copy42.tp-bullets{}#rev_slider_7_1_wrapper .ares_copy42.tp-bullets:before{content:\' \';position:absolute;width:100%;height:100%;background:transparent;padding:10px;margin-left:-10px;margin-top:-10px;box-sizing:content-box}#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet{width:5px;height:5px;position:absolute;background:#FFF;border-radius:50%;cursor:pointer;box-sizing:content-box}#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.rs-touchhover,#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.selected{background:#FFF; width:7px;height:7px; top:-1px!important}#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet-title{position:absolute; color:#888888; font-size:12px; padding:0px 10px; font-weight:600; right:27px; top:-4px; background:rgba(255,255,255,0.75); visibility:hidden; transform:translatex(-20px); -webkit-transform:translatex(-20px); transition:transform 0.3s; -webkit-transition:transform 0.3s; line-height:20px; white-space:nowrap; display:none}#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet-title:after{width:0px;height:0px;border-style:solid;border-width:10px 0 10px 10px;border-color:transparent transparent transparent rgba(255,255,255,0.75);content:\' \'; position:absolute; right:-10px;top:0px}#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.rs-touchhover .tp-bullet-title{visibility:visible; transform:translatex(0px); -webkit-transform:translatex(0px)}#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.selected.rs-touchhover .tp-bullet-title{background:#ffffff}#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.selected.rs-touchhover .tp-bullet-title:after{border-color:transparent transparent transparent #ffffff}#rev_slider_7_1_wrapper .ares_copy42.tp-bullets.rs-touchhover .tp-bullet-title{visibility:hidden}#rev_slider_7_1_wrapper .ares_copy42.tp-bullets.rs-touchhover .tp-bullet.rs-touchhover .tp-bullet-title{visibility:visible; transform:translateX(0px) translatey(0px); -webkit-transform:translateX(0px) translatey(0px)}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet-title{right:auto; left:27px; transform:translatex(20px); -webkit-transform:translatex(20px)}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet-title:after{border-width:10px 10px 10px 0 !important; border-color:transparent rgba(255,255,255,0.75) transparent transparent; right:auto !important; left:-10px !important}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet.selected.rs-touchhover .tp-bullet-title:after{border-color:transparent #ffffff transparent transparent !important}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet-title,#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet-title{top:-35px; left:50%; right:auto; transform:translateX(-50%) translateY(-10px);-webkit-transform:translateX(-50%) translateY(-10px)}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet-title:after,#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet-title:after{border-width:10px 10px 0px 10px; border-color:rgba(255,255,255,0.75) transparent transparent transparent; right:auto; left:50%; margin-left:-10px; top:auto; bottom:-10px}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet.selected.rs-touchhover .tp-bullet-title:after,#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet.selected.rs-touchhover .tp-bullet-title:after{border-color:#ffffff transparent transparent transparent}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet.rs-touchhover .tp-bullet-title,#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet.rs-touchhover .tp-bullet-title{transform:translateX(-50%) translatey(0px); -webkit-transform:translateX(-50%) translatey(0px)}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet-title{top:25px; left:50%; right:auto; transform:translateX(-50%) translateY(10px);-webkit-transform:translateX(-50%) translateY(10px)}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet-title:after{border-width:0 10px 10px 10px; border-color:transparent transparent rgba(255,255,255,0.75) transparent; right:auto; left:50%; margin-left:-10px; bottom:auto; top:-10px}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet.selected.rs-touchhover .tp-bullet-title:after{border-color:transparent transparent #ffffff transparent}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet.rs-touchhover .tp-bullet-title{transform:translateX(-50%) translatey(0px); -webkit-transform:translateX(-50%) translatey(0px)}@media (min-width:300px) and (max-width:768px){.tp-tabs,.tp-thumbs,.tp-bullets{display:none !important}}\",\"handle\":\"rs-plugin-settings\"}],\"priority\":70,\"hash\":\"4edc0f42f13b10bbd40b93ed4864131a\",\"parse_time\":0.06254005432128906,\"shake_time\":4.1961669921875e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\"#rev_slider_7_1_wrapper .uranus.tparrows\":false},[\"width:50px\",\"height:50px\",\"background:rgba(255,255,255,0)\"]],[false,{\"#rev_slider_7_1_wrapper .uranus.tparrows:before\":false},[\"width:50px\",\"height:50px\",\"line-height:50px\",\"font-size:15px\",\"transition:all .3s\",\"-webkit-transition:all .3s\"]],[false,{\"#rev_slider_7_1_wrapper .uranus.tparrows.rs-touchhover:before\":false},[\"opacity:.75\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.tp-bullets:before\":false},[\"content:\\\" \\\"\",\"position:absolute\",\"width:100%\",\"height:100%\",\"background:transparent\",\"padding:10px\",\"margin-left:-10px\",\"margin-top:-10px\",\"box-sizing:content-box\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet\":false},[\"width:5px\",\"height:5px\",\"position:absolute\",\"background:#fff\",\"border-radius:50%\",\"cursor:pointer\",\"box-sizing:content-box\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.rs-touchhover\":false,\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.selected\":false},[\"background:#fff\",\"width:7px\",\"height:7px\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.rs-touchhover:not(#_#_#_#_#_#_#_#_)\":false,\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.selected:not(#_#_#_#_#_#_#_#_)\":false},[\"top:-1px\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet-title\":false},[\"position:absolute\",\"color:#888\",\"font-size:12px\",\"padding:0px 10px\",\"font-weight:600\",\"right:27px\",\"top:-4px\",\"background:rgba(255,255,255,.75)\",\"visibility:hidden\",\"transform:translatex(-20px)\",\"-webkit-transform:translatex(-20px)\",\"transition:transform .3s\",\"-webkit-transition:transform .3s\",\"line-height:20px\",\"white-space:nowrap\",\"display:none\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet-title:after\":false},[\"width:0px\",\"height:0px\",\"border-style:solid\",\"border-width:10px 0 10px 10px\",\"border-color:transparent transparent transparent rgba(255,255,255,.75)\",\"content:\\\" \\\"\",\"position:absolute\",\"right:-10px\",\"top:0px\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.rs-touchhover .tp-bullet-title\":false},[\"visibility:visible\",\"transform:translatex(0px)\",\"-webkit-transform:translatex(0px)\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.selected.rs-touchhover .tp-bullet-title\":false},[\"background:#fff\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.selected.rs-touchhover .tp-bullet-title:after\":false},[\"border-color:transparent transparent transparent #fff\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.tp-bullets.rs-touchhover .tp-bullet-title\":false},[\"visibility:hidden\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.tp-bullets.rs-touchhover .tp-bullet.rs-touchhover .tp-bullet-title\":false},[\"visibility:visible\",\"transform:translateX(0px) translatey(0px)\",\"-webkit-transform:translateX(0px) translatey(0px)\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet-title\":false},[\"right:auto\",\"left:27px\",\"transform:translatex(20px)\",\"-webkit-transform:translatex(20px)\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet-title:after\":false},[\"border-color:transparent rgba(255,255,255,.75) transparent transparent\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet-title:after:not(#_#_#_#_#_#_#_#_#_)\":false},[\"border-width:10px 10px 10px 0\",\"right:auto\",\"left:-10px\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet.selected.rs-touchhover .tp-bullet-title:after:not(#_#_#_#_#_#_#_#_#_)\":false},[\"border-color:transparent #fff transparent transparent\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet-title\":false,\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet-title\":false},[\"top:-35px\",\"left:50%\",\"right:auto\",\"transform:translateX(-50%) translateY(-10px)\",\"-webkit-transform:translateX(-50%) translateY(-10px)\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet-title:after\":false,\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet-title:after\":false},[\"border-width:10px 10px 0px 10px\",\"border-color:rgba(255,255,255,.75) transparent transparent transparent\",\"right:auto\",\"left:50%\",\"margin-left:-10px\",\"top:auto\",\"bottom:-10px\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet.selected.rs-touchhover .tp-bullet-title:after\":false,\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet.selected.rs-touchhover .tp-bullet-title:after\":false},[\"border-color:#fff transparent transparent transparent\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet.rs-touchhover .tp-bullet-title\":false,\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet.rs-touchhover .tp-bullet-title\":false},[\"transform:translateX(-50%) translatey(0px)\",\"-webkit-transform:translateX(-50%) translatey(0px)\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet-title\":false},[\"top:25px\",\"left:50%\",\"right:auto\",\"transform:translateX(-50%) translateY(10px)\",\"-webkit-transform:translateX(-50%) translateY(10px)\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet-title:after\":false},[\"border-width:0 10px 10px 10px\",\"border-color:transparent transparent rgba(255,255,255,.75) transparent\",\"right:auto\",\"left:50%\",\"margin-left:-10px\",\"bottom:auto\",\"top:-10px\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet.selected.rs-touchhover .tp-bullet-title:after\":false},[\"border-color:transparent transparent #fff transparent\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet.rs-touchhover .tp-bullet-title\":false},[\"transform:translateX(-50%) translatey(0px)\",\"-webkit-transform:translateX(-50%) translatey(0px)\"]],[false,\"@media (min-width:300px) and (max-width:768px){\"],[false,{\".tp-tabs:not(#_#_#_#_#_#_#_)\":false,\".tp-thumbs:not(#_#_#_#_#_#_#_)\":false,\".tp-bullets:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":59,\"final_size\":57,\"element\":{\"name\":\"section\",\"attributes\":{\"data-amp-original-style\":\"background-color: #121D3D;\",\"class\":\"amp-wp-61d4b04\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"602068f9dec4c05112d946a4b1d7d0a3\",\"parse_time\":0.0005710124969482422,\"shake_time\":5.0067901611328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-61d4b04:not(#_#_#_#_#_)\":true},[\"background-color:#121d3d\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":129,\"final_size\":128,\"element\":{\"name\":\"rs-module-wrap\",\"attributes\":{\"id\":\"rev_slider_7_1_wrapper\",\"data-alias\":\"slider-02-01-2022\",\"data-source\":\"gallery\",\"data-amp-original-style\":\"visibility:hidden;background:transparent;padding:0;margin:0px auto;margin-top:0;margin-bottom:0;\",\"class\":\"amp-wp-58a99c6\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"2b9d737fe3de4ea7c708c05ce03f2a09\",\"parse_time\":0.000720977783203125,\"shake_time\":4.0531158447265625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-58a99c6:not(#_#_#_#_#_)\":true},[\"visibility:hidden\",\"background:transparent\",\"padding:0\",\"margin:0px auto\",\"margin-top:0\",\"margin-bottom:0\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":52,\"final_size\":50,\"element\":{\"name\":\"rs-slide\",\"attributes\":{\"data-key\":\"rs-27\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner1.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"112c6091d6ff7d5241b1adf8ca901016\",\"parse_time\":0.0004780292510986328,\"shake_time\":1.0013580322265625e-5,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-b38de02:not(#_#_#_#_#_)\":true},[\"position:absolute\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-27-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,50;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"5c1ba2e9472bf7716ead6a2e12670cac\",\"parse_time\":0.0005280971527099609,\"shake_time\":3.0994415283203125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fcd20be:not(#_#_#_#_#_)\":true},[\"z-index:10\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":153,\"final_size\":152,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-27-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,26,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,auto,681px,454px;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"be67f1f785e9d5d1c6ca54f27372baa8\",\"parse_time\":0.0007510185241699219,\"shake_time\":2.86102294921875e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-ac51d1e:not(#_#_#_#_#_)\":true},[\"z-index:9\",\"font-family:\\\"Raleway\\\"\",\"color:#24c1ff\",\"font-size:23px\",\"line-height:28px\",\"text-transform:inherit\",\"margin-bottom:20px\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":44,\"final_size\":43,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-27-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"bbfcefaead6a66022e70d0b0a9946cf6\",\"parse_time\":0.0007910728454589844,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d31032b:not(#_#_#_#_#_)\":true},[\"z-index:12\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-27-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"74f97608ca23b9ed09ba478fbc32a19c\",\"parse_time\":0.0012199878692626953,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d3bb080:not(#_#_#_#_#_)\":true},[\"z-index:11\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":148,\"final_size\":145,\"element\":{\"name\":\"a\",\"attributes\":{\"id\":\"slider-7-slide-27-layer-8\",\"class\":\"rs-layer rev-btn amp-wp-dfa190a\",\"href\":\"https:\\/\\/translucent.local\\/tekteams\\/\",\"target\":\"_self\",\"data-type\":\"button\",\"data-color\":\"#182647\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,2px,0;yo:479px,490px,489px,400px;\",\"data-text\":\"w:normal;s:18,17,15,20;l:50,41,50,50;fw:900,900,900,700;a:left,left,center,center;\",\"data-dim\":\"minh:0px,none,none,none;\",\"data-padding\":\"t:7,6,0,0;r:50,41,63,53;b:7,6,0,0;l:50,41,63,53;\",\"data-border\":\"bor:30px,30px,30px,30px;\",\"data-frame_0\":\"x:0,0,0px,0px;y:0,0,0px,0px;\",\"data-frame_1\":\"x:0,0,0px,0px;y:0,0,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-frame_hover\":\"c:#182647;bgc:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);bor:30px,30px,30px,30px;sp:100;e:power1.inOut;bri:120%;\",\"data-amp-original-style\":\"z-index:8;background:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);font-family:\'Raleway\';\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"141dd3c895332502f4f5ffdc7a38015d\",\"parse_time\":0.000993967056274414,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-dfa190a:not(#_#_#_#_#_)\":true},[\"z-index:8\",\"background:linear-gradient(90deg,rgba(39,217,203,1) 0%,rgba(161,242,102,1) 100%)\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":52,\"final_size\":50,\"element\":{\"name\":\"rs-slide\",\"attributes\":{\"data-key\":\"rs-30\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/home4.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"112c6091d6ff7d5241b1adf8ca901016\",\"parse_time\":0.0004780292510986328,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-b38de02:not(#_#_#_#_#_)\":true},[\"position:absolute\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-30-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,50;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,630px,443px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"5c1ba2e9472bf7716ead6a2e12670cac\",\"parse_time\":0.0005280971527099609,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fcd20be:not(#_#_#_#_#_)\":true},[\"z-index:10\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":153,\"final_size\":152,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-30-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,26,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,687px,728px,454px;h:auto,auto,61px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"be67f1f785e9d5d1c6ca54f27372baa8\",\"parse_time\":0.0007510185241699219,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-ac51d1e:not(#_#_#_#_#_)\":true},[\"z-index:9\",\"font-family:\\\"Raleway\\\"\",\"color:#24c1ff\",\"font-size:23px\",\"line-height:28px\",\"text-transform:inherit\",\"margin-bottom:20px\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":44,\"final_size\":43,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-30-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"bbfcefaead6a66022e70d0b0a9946cf6\",\"parse_time\":0.0007910728454589844,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d31032b:not(#_#_#_#_#_)\":true},[\"z-index:12\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-30-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"74f97608ca23b9ed09ba478fbc32a19c\",\"parse_time\":0.0012199878692626953,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d3bb080:not(#_#_#_#_#_)\":true},[\"z-index:11\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":148,\"final_size\":145,\"element\":{\"name\":\"a\",\"attributes\":{\"id\":\"slider-7-slide-30-layer-8\",\"class\":\"rs-layer rev-btn amp-wp-dfa190a\",\"href\":\"https:\\/\\/translucent.local\\/cloud-native-solutions\\/\",\"target\":\"_self\",\"data-type\":\"button\",\"data-color\":\"#182647\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,2px,0;yo:480px,490px,489px,400px;\",\"data-text\":\"w:normal;s:18,17,15,20;l:50,41,50,50;fw:900,900,900,700;a:left,left,center,center;\",\"data-dim\":\"minh:0px,none,none,none;\",\"data-padding\":\"t:7,6,0,0;r:50,41,63,53;b:7,6,0,0;l:50,41,63,53;\",\"data-border\":\"bor:30px,30px,30px,30px;\",\"data-frame_0\":\"x:0,0,0px,0px;y:0,0,0px,0px;\",\"data-frame_1\":\"x:0,0,0px,0px;y:0,0,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-frame_hover\":\"c:#182647;bgc:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);bor:30px,30px,30px,30px;sp:100;e:power1.inOut;bri:120%;\",\"data-amp-original-style\":\"z-index:8;background:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);font-family:\'Raleway\';\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"141dd3c895332502f4f5ffdc7a38015d\",\"parse_time\":0.000993967056274414,\"shake_time\":7.867813110351562e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-dfa190a:not(#_#_#_#_#_)\":true},[\"z-index:8\",\"background:linear-gradient(90deg,rgba(39,217,203,1) 0%,rgba(161,242,102,1) 100%)\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":52,\"final_size\":50,\"element\":{\"name\":\"rs-slide\",\"attributes\":{\"data-key\":\"rs-29\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/home31.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"112c6091d6ff7d5241b1adf8ca901016\",\"parse_time\":0.0004780292510986328,\"shake_time\":1.1920928955078125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-b38de02:not(#_#_#_#_#_)\":true},[\"position:absolute\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-29-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,50;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,846px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"5c1ba2e9472bf7716ead6a2e12670cac\",\"parse_time\":0.0005280971527099609,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fcd20be:not(#_#_#_#_#_)\":true},[\"z-index:10\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":153,\"final_size\":152,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-29-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,26,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,1025px,722px,454px;h:auto,auto,89px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"be67f1f785e9d5d1c6ca54f27372baa8\",\"parse_time\":0.0007510185241699219,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-ac51d1e:not(#_#_#_#_#_)\":true},[\"z-index:9\",\"font-family:\\\"Raleway\\\"\",\"color:#24c1ff\",\"font-size:23px\",\"line-height:28px\",\"text-transform:inherit\",\"margin-bottom:20px\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":44,\"final_size\":43,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-29-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"bbfcefaead6a66022e70d0b0a9946cf6\",\"parse_time\":0.0007910728454589844,\"shake_time\":1.1920928955078125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d31032b:not(#_#_#_#_#_)\":true},[\"z-index:12\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-29-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"74f97608ca23b9ed09ba478fbc32a19c\",\"parse_time\":0.0012199878692626953,\"shake_time\":8.821487426757812e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d3bb080:not(#_#_#_#_#_)\":true},[\"z-index:11\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":148,\"final_size\":145,\"element\":{\"name\":\"a\",\"attributes\":{\"id\":\"slider-7-slide-29-layer-8\",\"class\":\"rs-layer rev-btn amp-wp-dfa190a\",\"href\":\"https:\\/\\/translucent.local\\/tek-world\\/\",\"target\":\"_self\",\"data-type\":\"button\",\"data-color\":\"#182647\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,2px,0;yo:480px,490px,489px,400px;\",\"data-text\":\"w:normal;s:18,17,15,20;l:50,41,50,50;fw:900,900,900,700;a:left,left,center,center;\",\"data-dim\":\"minh:0px,none,none,none;\",\"data-padding\":\"t:7,6,0,0;r:50,41,63,53;b:7,6,0,0;l:50,41,63,53;\",\"data-border\":\"bor:30px,30px,30px,30px;\",\"data-frame_0\":\"x:0,0,0px,0px;y:0,0,0px,0px;\",\"data-frame_1\":\"x:0,0,0px,0px;y:0,0,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-frame_hover\":\"c:#182647;bgc:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);bor:30px,30px,30px,30px;sp:100;e:power1.inOut;bri:120%;\",\"data-amp-original-style\":\"z-index:8;background:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);font-family:\'Raleway\';\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"141dd3c895332502f4f5ffdc7a38015d\",\"parse_time\":0.000993967056274414,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-dfa190a:not(#_#_#_#_#_)\":true},[\"z-index:8\",\"background:linear-gradient(90deg,rgba(39,217,203,1) 0%,rgba(161,242,102,1) 100%)\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":52,\"final_size\":50,\"element\":{\"name\":\"rs-slide\",\"attributes\":{\"data-key\":\"rs-28\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner2.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"112c6091d6ff7d5241b1adf8ca901016\",\"parse_time\":0.0004780292510986328,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-b38de02:not(#_#_#_#_#_)\":true},[\"position:absolute\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-28-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,42;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"5c1ba2e9472bf7716ead6a2e12670cac\",\"parse_time\":0.0005280971527099609,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fcd20be:not(#_#_#_#_#_)\":true},[\"z-index:10\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":153,\"final_size\":152,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-28-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,25,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,auto,714px,454px;h:auto,auto,89px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"be67f1f785e9d5d1c6ca54f27372baa8\",\"parse_time\":0.0007510185241699219,\"shake_time\":3.0994415283203125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-ac51d1e:not(#_#_#_#_#_)\":true},[\"z-index:9\",\"font-family:\\\"Raleway\\\"\",\"color:#24c1ff\",\"font-size:23px\",\"line-height:28px\",\"text-transform:inherit\",\"margin-bottom:20px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":44,\"final_size\":43,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-28-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"bbfcefaead6a66022e70d0b0a9946cf6\",\"parse_time\":0.0007910728454589844,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d31032b:not(#_#_#_#_#_)\":true},[\"z-index:12\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-28-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:150;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"74f97608ca23b9ed09ba478fbc32a19c\",\"parse_time\":0.0012199878692626953,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d3bb080:not(#_#_#_#_#_)\":true},[\"z-index:11\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":148,\"final_size\":145,\"element\":{\"name\":\"a\",\"attributes\":{\"id\":\"slider-7-slide-28-layer-8\",\"class\":\"rs-layer rev-btn amp-wp-dfa190a\",\"href\":\"https:\\/\\/calendly.com\\/tc-results\",\"target\":\"_self\",\"data-type\":\"button\",\"data-color\":\"#182647\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,2px,0;yo:480px,490px,489px,400px;\",\"data-text\":\"w:normal;s:18,17,15,20;l:50,41,50,50;fw:900,900,900,700;a:left,left,center,center;\",\"data-dim\":\"minh:0px,none,none,none;\",\"data-padding\":\"t:7,6,0,0;r:50,41,63,53;b:7,6,0,0;l:50,41,63,53;\",\"data-border\":\"bor:30px,30px,30px,30px;\",\"data-frame_0\":\"x:0,0,0px,0px;y:0,0,0px,0px;\",\"data-frame_1\":\"x:0,0,0px,0px;y:0,0,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-frame_hover\":\"c:#182647;bgc:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);bor:30px,30px,30px,30px;sp:100;e:power1.inOut;bri:120%;\",\"data-amp-original-style\":\"z-index:8;background:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);font-family:\'Raleway\';\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"141dd3c895332502f4f5ffdc7a38015d\",\"parse_time\":0.000993967056274414,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-dfa190a:not(#_#_#_#_#_)\":true},[\"z-index:8\",\"background:linear-gradient(90deg,rgba(39,217,203,1) 0%,rgba(161,242,102,1) 100%)\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"amp-img\",\"attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2019\\/03\\/2000px-The_Hospital_for_Sick_Children_Logo.svg_.png \",\"width\":\"310\",\"height\":\"100\",\"class\":\"amp-wp-enforced-sizes amp-wp-035b591\",\"layout\":\"intrinsic\",\"data-amp-original-style\":\"max-height: 50px;\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"392cacdfabd8f873a803a5357eeac04a\",\"parse_time\":0.0007510185241699219,\"shake_time\":3.0994415283203125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-035b591:not(#_#_#_#_#_)\":true},[\"max-height:50px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":2.09808349609375e-5,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":4.0531158447265625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":3.0994415283203125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":47,\"final_size\":45,\"element\":{\"name\":\"div\",\"attributes\":{\"data-amp-original-style\":\"display: none;\",\"class\":\"amp-wp-224b51a\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/contact-form-functions.php\",\"line\":105,\"function\":\"wpcf7_contact_form_tag_func\",\"shortcode\":\"contact-form-7\"}],\"priority\":70,\"hash\":\"0d67461750eb10cd670295b16ae09708\",\"parse_time\":0.0006639957427978516,\"shake_time\":2.86102294921875e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-224b51a:not(#_#_#_#_#_)\":true},[\"display:none\"]]],\"included\":true}]'); INSERT INTO `wp_postmeta` VALUES (169804,4802,'_amp_stylesheets','[{\"group\":\"amp-custom\",\"original_size\":140936,\"final_size\":9172,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/bootstrap.min.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"834eec339f2b2b8368c90e8ee4e0c6d0\",\"parse_time\":1.5320749282836914,\"shake_time\":0.06616687774658203,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\":root\":true},[\"--blue:#007bff\",\"--indigo:#6610f2\",\"--purple:#6f42c1\",\"--pink:#e83e8c\",\"--red:#dc3545\",\"--orange:#fd7e14\",\"--yellow:#ffc107\",\"--green:#28a745\",\"--teal:#20c997\",\"--cyan:#17a2b8\",\"--white:#fff\",\"--gray:#6c757d\",\"--gray-dark:#343a40\",\"--primary:#007bff\",\"--secondary:#6c757d\",\"--success:#28a745\",\"--info:#17a2b8\",\"--warning:#ffc107\",\"--danger:#dc3545\",\"--light:#f8f9fa\",\"--dark:#343a40\",\"--breakpoint-xs:0\",\"--breakpoint-sm:576px\",\"--breakpoint-md:768px\",\"--breakpoint-lg:992px\",\"--breakpoint-xl:1200px\",\"--font-family-sans-serif:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"--font-family-monospace:SFMono-Regular,Menlo,Monaco,Consolas,\\\"Liberation Mono\\\",\\\"Courier New\\\",monospace\"]],[true,{\"*\":true,\"::after\":true,\"::before\":true},[\"box-sizing:border-box\"]],[true,{\"html\":true},[\"font-family:sans-serif\",\"line-height:1.15\",\"-webkit-text-size-adjust:100%\",\"-ms-text-size-adjust:100%\",\"-ms-overflow-style:scrollbar\",\"-webkit-tap-highlight-color:transparent\"]],[true,{\"article\":false,\"aside\":false,\"figcaption\":false,\"figure\":false,\"footer\":true,\"header\":true,\"hgroup\":false,\"main\":false,\"nav\":true,\"section\":true},[\"display:block\"]],[true,{\"body\":true},[\"margin:0\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"font-size:1rem\",\"font-weight:400\",\"line-height:1.5\",\"color:#212529\",\"text-align:left\",\"background-color:#fff\"]],[false,{\"[tabindex=\\\"-1\\\"]:focus:not(#_#_#_#_#_#_#_)\":false},[\"outline:0\"]],[false,{\"hr\":false},[\"box-sizing:content-box\",\"height:0\",\"overflow:visible\"]],[true,{\"h1\":true,\"h2\":true,\"h3\":true,\"h4\":true,\"h5\":true,\"h6\":true},[\"margin-top:0\",\"margin-bottom:.5rem\"]],[true,{\"p\":true},[\"margin-top:0\",\"margin-bottom:1rem\"]],[false,{\"abbr[data-original-title]\":false,\"abbr[title]\":false},[\"text-decoration:underline\",\"text-decoration:underline dotted\",\"-webkit-text-decoration:underline dotted\",\"cursor:help\",\"border-bottom:0\"]],[false,{\"address\":false},[\"margin-bottom:1rem\",\"font-style:normal\",\"line-height:inherit\"]],[true,{\"dl\":false,\"ol\":false,\"ul\":true},[\"margin-top:0\",\"margin-bottom:1rem\"]],[true,{\"ol ol\":false,\"ol ul\":false,\"ul ol\":false,\"ul ul\":true},[\"margin-bottom:0\"]],[false,{\"dt\":false},[\"font-weight:700\"]],[false,{\"dd\":false},[\"margin-bottom:.5rem\",\"margin-left:0\"]],[false,{\"blockquote\":false},[\"margin:0 0 1rem\"]],[false,{\"dfn\":false},[\"font-style:italic\"]],[true,{\"b\":false,\"strong\":true},[\"font-weight:bolder\"]],[true,{\"small\":true},[\"font-size:80%\"]],[false,{\"sub\":false,\"sup\":false},[\"position:relative\",\"font-size:75%\",\"line-height:0\",\"vertical-align:baseline\"]],[false,{\"sub\":false},[\"bottom:-.25em\"]],[false,{\"sup\":false},[\"top:-.5em\"]],[true,{\"a\":true},[\"color:#007bff\",\"text-decoration:none\",\"background-color:transparent\",\"-webkit-text-decoration-skip:objects\"]],[true,{\"a:hover\":true},[\"color:#0056b3\",\"text-decoration:underline\"]],[true,{\"a:not([href]):not([tabindex])\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"a:not([href]):not([tabindex]):focus\":true,\"a:not([href]):not([tabindex]):hover\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"a:not([href]):not([tabindex]):focus\":true},[\"outline:0\"]],[false,{\"code\":false,\"kbd\":false,\"pre\":false,\"samp\":false},[\"font-family:SFMono-Regular,Menlo,Monaco,Consolas,\\\"Liberation Mono\\\",\\\"Courier New\\\",monospace\",\"font-size:1em\"]],[false,{\"pre\":false},[\"margin-top:0\",\"margin-bottom:1rem\",\"overflow:auto\",\"-ms-overflow-style:scrollbar\"]],[false,{\"figure\":false},[\"margin:0 0 1rem\"]],[true,{\"amp-img\":true,\"amp-anim\":false},[\"vertical-align:middle\",\"border-style:none\"]],[false,{\"svg\":false},[\"overflow:hidden\",\"vertical-align:middle\"]],[false,{\"table\":false},[\"border-collapse:collapse\"]],[false,{\"caption\":false},[\"padding-top:.75rem\",\"padding-bottom:.75rem\",\"color:#6c757d\",\"text-align:left\",\"caption-side:bottom\"]],[false,{\"th\":false},[\"text-align:inherit\"]],[true,{\"label\":true},[\"display:inline-block\",\"margin-bottom:.5rem\"]],[true,{\"button\":true},[\"border-radius:0\"]],[true,{\"button:focus\":true},[\"outline:1px dotted\",\"outline:5px auto -webkit-focus-ring-color\"]],[true,{\"button\":true,\"input\":true,\"optgroup\":false,\"select\":false,\"textarea\":true},[\"margin:0\",\"font-family:inherit\",\"font-size:inherit\",\"line-height:inherit\"]],[true,{\"button\":true,\"input\":true},[\"overflow:visible\"]],[true,{\"button\":true,\"select\":false},[\"text-transform:none\"]],[true,{\"[type=reset]\":true,\"[type=submit]\":true,\"button\":true,\"html [type=button]\":true},[\"-webkit-appearance:button\"]],[true,{\"[type=button]::-moz-focus-inner\":true,\"[type=reset]::-moz-focus-inner\":true,\"[type=submit]::-moz-focus-inner\":true,\"button::-moz-focus-inner\":true},[\"padding:0\",\"border-style:none\"]],[true,{\"input[type=checkbox]\":true,\"input[type=radio]\":true},[\"box-sizing:border-box\",\"padding:0\"]],[true,{\"input[type=date]\":true,\"input[type=datetime-local]\":true,\"input[type=month]\":true,\"input[type=time]\":true},[\"-webkit-appearance:listbox\"]],[true,{\"textarea\":true},[\"overflow:auto\",\"resize:vertical\"]],[false,{\"fieldset\":false},[\"min-width:0\",\"padding:0\",\"margin:0\",\"border:0\"]],[false,{\"legend\":false},[\"display:block\",\"width:100%\",\"max-width:100%\",\"padding:0\",\"margin-bottom:.5rem\",\"font-size:1.5rem\",\"line-height:inherit\",\"color:inherit\",\"white-space:normal\"]],[false,{\"progress\":false},[\"vertical-align:baseline\"]],[true,{\"[type=number]::-webkit-inner-spin-button\":true,\"[type=number]::-webkit-outer-spin-button\":true},[\"height:auto\"]],[true,{\"[type=search]\":true},[\"outline-offset:-2px\",\"-webkit-appearance:none\"]],[true,{\"[type=search]::-webkit-search-cancel-button\":true,\"[type=search]::-webkit-search-decoration\":true},[\"-webkit-appearance:none\"]],[true,{\"::-webkit-file-upload-button\":true},[\"font:inherit\",\"-webkit-appearance:button\"]],[false,{\"output\":false},[\"display:inline-block\"]],[false,{\"summary\":false},[\"display:list-item\",\"cursor:pointer\"]],[true,{\"template\":true},[\"display:none\"]],[true,{\"[hidden]:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".h1\":false,\".h2\":false,\".h3\":false,\".h4\":false,\".h5\":false,\".h6\":false,\"h1\":true,\"h2\":true,\"h3\":true,\"h4\":true,\"h5\":true,\"h6\":true},[\"margin-bottom:.5rem\",\"font-family:inherit\",\"font-weight:500\",\"line-height:1.2\",\"color:inherit\"]],[true,{\".h1\":false,\"h1\":true},[\"font-size:2.5rem\"]],[true,{\".h2\":false,\"h2\":true},[\"font-size:2rem\"]],[true,{\".h3\":false,\"h3\":true},[\"font-size:1.75rem\"]],[true,{\".h4\":false,\"h4\":true},[\"font-size:1.5rem\"]],[true,{\".h5\":false,\"h5\":true},[\"font-size:1.25rem\"]],[true,{\".h6\":false,\"h6\":true},[\"font-size:1rem\"]],[false,{\".lead\":false},[\"font-size:1.25rem\",\"font-weight:300\"]],[false,{\".display-1\":false},[\"font-size:6rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\".display-2\":false},[\"font-size:5.5rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\".display-3\":false},[\"font-size:4.5rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\".display-4\":false},[\"font-size:3.5rem\",\"font-weight:300\",\"line-height:1.2\"]],[false,{\"hr\":false},[\"margin-top:1rem\",\"margin-bottom:1rem\",\"border:0\",\"border-top:1px solid rgba(0,0,0,.1)\"]],[true,{\".small\":false,\"small\":true},[\"font-size:80%\",\"font-weight:400\"]],[false,{\".mark\":false,\"mark\":false},[\"padding:.2em\",\"background-color:#fcf8e3\"]],[false,{\".list-unstyled\":false},[\"padding-left:0\",\"list-style:none\"]],[false,{\".list-inline\":false},[\"padding-left:0\",\"list-style:none\"]],[false,{\".list-inline-item\":false},[\"display:inline-block\"]],[false,{\".list-inline-item:not(:last-child)\":false},[\"margin-right:.5rem\"]],[false,{\".initialism\":false},[\"font-size:90%\",\"text-transform:uppercase\"]],[false,{\".blockquote\":false},[\"margin-bottom:1rem\",\"font-size:1.25rem\"]],[false,{\".blockquote-footer\":false},[\"display:block\",\"font-size:80%\",\"color:#6c757d\"]],[false,{\".blockquote-footer::before\":false},[\"content:\\\"\\u2014\\u00a0\\\"\"]],[false,{\".img-fluid\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".img-thumbnail\":false},[\"padding:.25rem\",\"background-color:#fff\",\"border:1px solid #dee2e6\",\"border-radius:.25rem\",\"max-width:100%\",\"height:auto\"]],[false,{\".figure\":false},[\"display:inline-block\"]],[false,{\".figure-img\":false},[\"margin-bottom:.5rem\",\"line-height:1\"]],[false,{\".figure-caption\":false},[\"font-size:90%\",\"color:#6c757d\"]],[false,{\"code\":false},[\"font-size:87.5%\",\"color:#e83e8c\",\"word-break:break-word\"]],[false,{\"a>code\":false},[\"color:inherit\"]],[false,{\"kbd\":false},[\"padding:.2rem .4rem\",\"font-size:87.5%\",\"color:#fff\",\"background-color:#212529\",\"border-radius:.2rem\"]],[false,{\"kbd kbd\":false},[\"padding:0\",\"font-size:100%\",\"font-weight:700\"]],[false,{\"pre\":false},[\"display:block\",\"font-size:87.5%\",\"color:#212529\"]],[false,{\"pre code\":false},[\"font-size:inherit\",\"color:inherit\",\"word-break:normal\"]],[false,{\".pre-scrollable\":false},[\"max-height:340px\",\"overflow-y:scroll\"]],[true,{\".container\":true},[\"width:100%\",\"padding-right:15px\",\"padding-left:15px\",\"margin-right:auto\",\"margin-left:auto\"]],[true,\"@media (min-width:576px){\"],[true,{\".container\":true},[\"max-width:540px\"]],[true,\"}\"],[true,\"@media (min-width:768px){\"],[true,{\".container\":true},[\"max-width:720px\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[true,{\".container\":true},[\"max-width:960px\"]],[true,\"}\"],[true,\"@media (min-width:1200px){\"],[true,{\".container\":true},[\"max-width:1140px\"]],[true,\"}\"],[false,{\".container-fluid\":false},[\"width:100%\",\"padding-right:15px\",\"padding-left:15px\",\"margin-right:auto\",\"margin-left:auto\"]],[true,{\".row\":true},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"margin-right:-15px\",\"margin-left:-15px\"]],[false,{\".no-gutters\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".no-gutters>.col\":false,\".no-gutters>[class*=col-]\":false},[\"padding-right:0\",\"padding-left:0\"]],[true,{\".col\":false,\".col-1\":false,\".col-10\":true,\".col-11\":false,\".col-12\":true,\".col-2\":true,\".col-3\":false,\".col-4\":false,\".col-5\":false,\".col-6\":true,\".col-7\":false,\".col-8\":false,\".col-9\":false,\".col-auto\":false,\".col-lg\":false,\".col-lg-1\":false,\".col-lg-10\":false,\".col-lg-11\":false,\".col-lg-12\":true,\".col-lg-2\":true,\".col-lg-3\":true,\".col-lg-4\":true,\".col-lg-5\":false,\".col-lg-6\":true,\".col-lg-7\":false,\".col-lg-8\":false,\".col-lg-9\":true,\".col-lg-auto\":false,\".col-md\":false,\".col-md-1\":false,\".col-md-10\":true,\".col-md-11\":false,\".col-md-12\":true,\".col-md-2\":true,\".col-md-3\":false,\".col-md-4\":true,\".col-md-5\":false,\".col-md-6\":true,\".col-md-7\":false,\".col-md-8\":true,\".col-md-9\":false,\".col-md-auto\":false,\".col-sm\":false,\".col-sm-1\":false,\".col-sm-10\":false,\".col-sm-11\":false,\".col-sm-12\":true,\".col-sm-2\":false,\".col-sm-3\":false,\".col-sm-4\":false,\".col-sm-5\":false,\".col-sm-6\":false,\".col-sm-7\":false,\".col-sm-8\":false,\".col-sm-9\":false,\".col-sm-auto\":false,\".col-xl\":false,\".col-xl-1\":false,\".col-xl-10\":false,\".col-xl-11\":false,\".col-xl-12\":false,\".col-xl-2\":false,\".col-xl-3\":false,\".col-xl-4\":false,\".col-xl-5\":false,\".col-xl-6\":false,\".col-xl-7\":false,\".col-xl-8\":false,\".col-xl-9\":false,\".col-xl-auto\":false},[\"position:relative\",\"width:100%\",\"min-height:1px\",\"padding-right:15px\",\"padding-left:15px\"]],[false,{\".col\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[false,{\".col-4\":false},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[true,{\".col-6\":true},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[true,{\".col-10\":true},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-3\":false},[\"margin-left:25%\"]],[false,{\".offset-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-6\":false},[\"margin-left:50%\"]],[false,{\".offset-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-9\":false},[\"margin-left:75%\"]],[false,{\".offset-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-11\":false},[\"margin-left:91.666667%\"]],[true,\"@media (min-width:576px){\"],[false,{\".col-sm\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-sm-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-sm-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[false,{\".col-sm-2\":false},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-sm-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[false,{\".col-sm-4\":false},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-sm-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[false,{\".col-sm-6\":false},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-sm-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-sm-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-sm-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[false,{\".col-sm-10\":false},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-sm-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-sm-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-sm-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-sm-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-sm-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-sm-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-sm-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-sm-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-sm-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-sm-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-sm-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-sm-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-sm-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-sm-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-sm-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-sm-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-sm-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-sm-0\":false},[\"margin-left:0\"]],[false,{\".offset-sm-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-sm-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-sm-3\":false},[\"margin-left:25%\"]],[false,{\".offset-sm-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-sm-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-sm-6\":false},[\"margin-left:50%\"]],[false,{\".offset-sm-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-sm-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-sm-9\":false},[\"margin-left:75%\"]],[false,{\".offset-sm-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-sm-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[true,\"@media (min-width:768px){\"],[false,{\".col-md\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-md-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-md-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-md-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-md-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[true,{\".col-md-4\":true},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-md-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[true,{\".col-md-6\":true},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-md-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[true,{\".col-md-8\":true},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-md-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[true,{\".col-md-10\":true},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-md-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-md-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-md-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-md-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-md-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-md-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-md-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-md-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-md-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-md-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-md-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-md-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-md-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-md-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-md-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-md-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-md-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-md-0\":false},[\"margin-left:0\"]],[false,{\".offset-md-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-md-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-md-3\":false},[\"margin-left:25%\"]],[false,{\".offset-md-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-md-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-md-6\":false},[\"margin-left:50%\"]],[false,{\".offset-md-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-md-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-md-9\":false},[\"margin-left:75%\"]],[false,{\".offset-md-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-md-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[false,{\".col-lg\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-lg-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-lg-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[true,{\".col-lg-2\":true},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[true,{\".col-lg-3\":true},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[true,{\".col-lg-4\":true},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-lg-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[true,{\".col-lg-6\":true},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-lg-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-lg-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[true,{\".col-lg-9\":true},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[false,{\".col-lg-10\":false},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-lg-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[true,{\".col-lg-12\":true},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-lg-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-lg-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-lg-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-lg-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-lg-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-lg-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-lg-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-lg-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-lg-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-lg-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-lg-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-lg-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-lg-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-lg-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-lg-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-lg-0\":false},[\"margin-left:0\"]],[false,{\".offset-lg-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-lg-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-lg-3\":false},[\"margin-left:25%\"]],[false,{\".offset-lg-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-lg-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-lg-6\":false},[\"margin-left:50%\"]],[false,{\".offset-lg-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-lg-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-lg-9\":false},[\"margin-left:75%\"]],[false,{\".offset-lg-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-lg-11\":false},[\"margin-left:91.666667%\"]],[true,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".col-xl\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"max-width:100%\"]],[false,{\".col-xl-auto\":false},[\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"width:auto\",\"max-width:none\"]],[false,{\".col-xl-1\":false},[\"-ms-flex:0 0 8.333333%\",\"flex:0 0 8.333333%\",\"max-width:8.333333%\"]],[false,{\".col-xl-2\":false},[\"-ms-flex:0 0 16.666667%\",\"flex:0 0 16.666667%\",\"max-width:16.666667%\"]],[false,{\".col-xl-3\":false},[\"-ms-flex:0 0 25%\",\"flex:0 0 25%\",\"max-width:25%\"]],[false,{\".col-xl-4\":false},[\"-ms-flex:0 0 33.333333%\",\"flex:0 0 33.333333%\",\"max-width:33.333333%\"]],[false,{\".col-xl-5\":false},[\"-ms-flex:0 0 41.666667%\",\"flex:0 0 41.666667%\",\"max-width:41.666667%\"]],[false,{\".col-xl-6\":false},[\"-ms-flex:0 0 50%\",\"flex:0 0 50%\",\"max-width:50%\"]],[false,{\".col-xl-7\":false},[\"-ms-flex:0 0 58.333333%\",\"flex:0 0 58.333333%\",\"max-width:58.333333%\"]],[false,{\".col-xl-8\":false},[\"-ms-flex:0 0 66.666667%\",\"flex:0 0 66.666667%\",\"max-width:66.666667%\"]],[false,{\".col-xl-9\":false},[\"-ms-flex:0 0 75%\",\"flex:0 0 75%\",\"max-width:75%\"]],[false,{\".col-xl-10\":false},[\"-ms-flex:0 0 83.333333%\",\"flex:0 0 83.333333%\",\"max-width:83.333333%\"]],[false,{\".col-xl-11\":false},[\"-ms-flex:0 0 91.666667%\",\"flex:0 0 91.666667%\",\"max-width:91.666667%\"]],[false,{\".col-xl-12\":false},[\"-ms-flex:0 0 100%\",\"flex:0 0 100%\",\"max-width:100%\"]],[false,{\".order-xl-first\":false},[\"-ms-flex-order:-1\",\"order:-1\"]],[false,{\".order-xl-last\":false},[\"-ms-flex-order:13\",\"order:13\"]],[false,{\".order-xl-0\":false},[\"-ms-flex-order:0\",\"order:0\"]],[false,{\".order-xl-1\":false},[\"-ms-flex-order:1\",\"order:1\"]],[false,{\".order-xl-2\":false},[\"-ms-flex-order:2\",\"order:2\"]],[false,{\".order-xl-3\":false},[\"-ms-flex-order:3\",\"order:3\"]],[false,{\".order-xl-4\":false},[\"-ms-flex-order:4\",\"order:4\"]],[false,{\".order-xl-5\":false},[\"-ms-flex-order:5\",\"order:5\"]],[false,{\".order-xl-6\":false},[\"-ms-flex-order:6\",\"order:6\"]],[false,{\".order-xl-7\":false},[\"-ms-flex-order:7\",\"order:7\"]],[false,{\".order-xl-8\":false},[\"-ms-flex-order:8\",\"order:8\"]],[false,{\".order-xl-9\":false},[\"-ms-flex-order:9\",\"order:9\"]],[false,{\".order-xl-10\":false},[\"-ms-flex-order:10\",\"order:10\"]],[false,{\".order-xl-11\":false},[\"-ms-flex-order:11\",\"order:11\"]],[false,{\".order-xl-12\":false},[\"-ms-flex-order:12\",\"order:12\"]],[false,{\".offset-xl-0\":false},[\"margin-left:0\"]],[false,{\".offset-xl-1\":false},[\"margin-left:8.333333%\"]],[false,{\".offset-xl-2\":false},[\"margin-left:16.666667%\"]],[false,{\".offset-xl-3\":false},[\"margin-left:25%\"]],[false,{\".offset-xl-4\":false},[\"margin-left:33.333333%\"]],[false,{\".offset-xl-5\":false},[\"margin-left:41.666667%\"]],[false,{\".offset-xl-6\":false},[\"margin-left:50%\"]],[false,{\".offset-xl-7\":false},[\"margin-left:58.333333%\"]],[false,{\".offset-xl-8\":false},[\"margin-left:66.666667%\"]],[false,{\".offset-xl-9\":false},[\"margin-left:75%\"]],[false,{\".offset-xl-10\":false},[\"margin-left:83.333333%\"]],[false,{\".offset-xl-11\":false},[\"margin-left:91.666667%\"]],[false,\"}\"],[false,{\".table\":false},[\"width:100%\",\"margin-bottom:1rem\",\"background-color:transparent\"]],[false,{\".table td\":false,\".table th\":false},[\"padding:.75rem\",\"vertical-align:top\",\"border-top:1px solid #dee2e6\"]],[false,{\".table thead th\":false},[\"vertical-align:bottom\",\"border-bottom:2px solid #dee2e6\"]],[false,{\".table tbody+tbody\":false},[\"border-top:2px solid #dee2e6\"]],[false,{\".table .table\":false},[\"background-color:#fff\"]],[false,{\".table-sm td\":false,\".table-sm th\":false},[\"padding:.3rem\"]],[false,{\".table-bordered\":false},[\"border:1px solid #dee2e6\"]],[false,{\".table-bordered td\":false,\".table-bordered th\":false},[\"border:1px solid #dee2e6\"]],[false,{\".table-bordered thead td\":false,\".table-bordered thead th\":false},[\"border-bottom-width:2px\"]],[false,{\".table-borderless tbody+tbody\":false,\".table-borderless td\":false,\".table-borderless th\":false,\".table-borderless thead th\":false},[\"border:0\"]],[false,{\".table-striped tbody tr:nth-of-type(odd)\":false},[\"background-color:rgba(0,0,0,.05)\"]],[false,{\".table-hover tbody tr:hover\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table-primary\":false,\".table-primary>td\":false,\".table-primary>th\":false},[\"background-color:#b8daff\"]],[false,{\".table-hover .table-primary:hover\":false},[\"background-color:#9fcdff\"]],[false,{\".table-hover .table-primary:hover>td\":false,\".table-hover .table-primary:hover>th\":false},[\"background-color:#9fcdff\"]],[false,{\".table-secondary\":false,\".table-secondary>td\":false,\".table-secondary>th\":false},[\"background-color:#d6d8db\"]],[false,{\".table-hover .table-secondary:hover\":false},[\"background-color:#c8cbcf\"]],[false,{\".table-hover .table-secondary:hover>td\":false,\".table-hover .table-secondary:hover>th\":false},[\"background-color:#c8cbcf\"]],[false,{\".table-success\":false,\".table-success>td\":false,\".table-success>th\":false},[\"background-color:#c3e6cb\"]],[false,{\".table-hover .table-success:hover\":false},[\"background-color:#b1dfbb\"]],[false,{\".table-hover .table-success:hover>td\":false,\".table-hover .table-success:hover>th\":false},[\"background-color:#b1dfbb\"]],[false,{\".table-info\":false,\".table-info>td\":false,\".table-info>th\":false},[\"background-color:#bee5eb\"]],[false,{\".table-hover .table-info:hover\":false},[\"background-color:#abdde5\"]],[false,{\".table-hover .table-info:hover>td\":false,\".table-hover .table-info:hover>th\":false},[\"background-color:#abdde5\"]],[false,{\".table-warning\":false,\".table-warning>td\":false,\".table-warning>th\":false},[\"background-color:#ffeeba\"]],[false,{\".table-hover .table-warning:hover\":false},[\"background-color:#ffe8a1\"]],[false,{\".table-hover .table-warning:hover>td\":false,\".table-hover .table-warning:hover>th\":false},[\"background-color:#ffe8a1\"]],[false,{\".table-danger\":false,\".table-danger>td\":false,\".table-danger>th\":false},[\"background-color:#f5c6cb\"]],[false,{\".table-hover .table-danger:hover\":false},[\"background-color:#f1b0b7\"]],[false,{\".table-hover .table-danger:hover>td\":false,\".table-hover .table-danger:hover>th\":false},[\"background-color:#f1b0b7\"]],[false,{\".table-light\":false,\".table-light>td\":false,\".table-light>th\":false},[\"background-color:#fdfdfe\"]],[false,{\".table-hover .table-light:hover\":false},[\"background-color:#ececf6\"]],[false,{\".table-hover .table-light:hover>td\":false,\".table-hover .table-light:hover>th\":false},[\"background-color:#ececf6\"]],[false,{\".table-dark\":false,\".table-dark>td\":false,\".table-dark>th\":false},[\"background-color:#c6c8ca\"]],[false,{\".table-hover .table-dark:hover\":false},[\"background-color:#b9bbbe\"]],[false,{\".table-hover .table-dark:hover>td\":false,\".table-hover .table-dark:hover>th\":false},[\"background-color:#b9bbbe\"]],[false,{\".table-active\":false,\".table-active>td\":false,\".table-active>th\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table-hover .table-active:hover\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table-hover .table-active:hover>td\":false,\".table-hover .table-active:hover>th\":false},[\"background-color:rgba(0,0,0,.075)\"]],[false,{\".table .thead-dark th\":false},[\"color:#fff\",\"background-color:#212529\",\"border-color:#32383e\"]],[false,{\".table .thead-light th\":false},[\"color:#495057\",\"background-color:#e9ecef\",\"border-color:#dee2e6\"]],[false,{\".table-dark\":false},[\"color:#fff\",\"background-color:#212529\"]],[false,{\".table-dark td\":false,\".table-dark th\":false,\".table-dark thead th\":false},[\"border-color:#32383e\"]],[false,{\".table-dark.table-bordered\":false},[\"border:0\"]],[false,{\".table-dark.table-striped tbody tr:nth-of-type(odd)\":false},[\"background-color:rgba(255,255,255,.05)\"]],[false,{\".table-dark.table-hover tbody tr:hover\":false},[\"background-color:rgba(255,255,255,.075)\"]],[false,\"@media (max-width:575.98px){\"],[false,{\".table-responsive-sm\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-sm>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:767.98px){\"],[false,{\".table-responsive-md\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-md>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:991.98px){\"],[false,{\".table-responsive-lg\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-lg>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:1199.98px){\"],[false,{\".table-responsive-xl\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive-xl>.table-bordered\":false},[\"border:0\"]],[false,\"}\"],[false,{\".table-responsive\":false},[\"display:block\",\"width:100%\",\"overflow-x:auto\",\"-webkit-overflow-scrolling:touch\",\"-ms-overflow-style:-ms-autohiding-scrollbar\"]],[false,{\".table-responsive>.table-bordered\":false},[\"border:0\"]],[false,{\".form-control\":false},[\"display:block\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"padding:.375rem .75rem\",\"font-size:1rem\",\"line-height:1.5\",\"color:#495057\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid #ced4da\",\"border-radius:.25rem\",\"transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".form-control\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".form-control::-ms-expand\":false},[\"background-color:transparent\",\"border:0\"]],[false,{\".form-control:focus\":false},[\"color:#495057\",\"background-color:#fff\",\"border-color:#80bdff\",\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".form-control::-webkit-input-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control::-moz-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control:-ms-input-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control::-ms-input-placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control::placeholder\":false},[\"color:#6c757d\",\"opacity:1\"]],[false,{\".form-control:disabled\":false,\".form-control[readonly]\":false},[\"background-color:#e9ecef\",\"opacity:1\"]],[false,{\"select.form-control:focus::-ms-value\":false},[\"color:#495057\",\"background-color:#fff\"]],[false,{\".form-control-file\":false,\".form-control-range\":false},[\"display:block\",\"width:100%\"]],[false,{\".col-form-label\":false},[\"padding-top:calc(.375rem + 1px)\",\"padding-bottom:calc(.375rem + 1px)\",\"margin-bottom:0\",\"font-size:inherit\",\"line-height:1.5\"]],[false,{\".col-form-label-lg\":false},[\"padding-top:calc(.5rem + 1px)\",\"padding-bottom:calc(.5rem + 1px)\",\"font-size:1.25rem\",\"line-height:1.5\"]],[false,{\".col-form-label-sm\":false},[\"padding-top:calc(.25rem + 1px)\",\"padding-bottom:calc(.25rem + 1px)\",\"font-size:.875rem\",\"line-height:1.5\"]],[false,{\".form-control-plaintext\":false},[\"display:block\",\"width:100%\",\"padding-top:.375rem\",\"padding-bottom:.375rem\",\"margin-bottom:0\",\"line-height:1.5\",\"color:#212529\",\"background-color:transparent\",\"border:solid transparent\",\"border-width:1px 0\"]],[false,{\".form-control-plaintext.form-control-lg\":false,\".form-control-plaintext.form-control-sm\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,{\".form-control-sm\":false},[\"height:calc(1.8125rem + 2px)\",\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\",\"border-radius:.2rem\"]],[false,{\".form-control-lg\":false},[\"height:calc(2.875rem + 2px)\",\"padding:.5rem 1rem\",\"font-size:1.25rem\",\"line-height:1.5\",\"border-radius:.3rem\"]],[false,{\"select.form-control[multiple]\":false,\"select.form-control[size]\":false},[\"height:auto\"]],[false,{\"textarea.form-control\":false},[\"height:auto\"]],[false,{\".form-group\":false},[\"margin-bottom:1rem\"]],[false,{\".form-text\":false},[\"display:block\",\"margin-top:.25rem\"]],[false,{\".form-row\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"margin-right:-5px\",\"margin-left:-5px\"]],[false,{\".form-row>.col\":false,\".form-row>[class*=col-]\":false},[\"padding-right:5px\",\"padding-left:5px\"]],[false,{\".form-check\":false},[\"position:relative\",\"display:block\",\"padding-left:1.25rem\"]],[false,{\".form-check-input\":false},[\"position:absolute\",\"margin-top:.3rem\",\"margin-left:-1.25rem\"]],[false,{\".form-check-input:disabled~.form-check-label\":false},[\"color:#6c757d\"]],[false,{\".form-check-label\":false},[\"margin-bottom:0\"]],[false,{\".form-check-inline\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"-ms-flex-align:center\",\"align-items:center\",\"padding-left:0\",\"margin-right:.75rem\"]],[false,{\".form-check-inline .form-check-input\":false},[\"position:static\",\"margin-top:0\",\"margin-right:.3125rem\",\"margin-left:0\"]],[false,{\".valid-feedback\":false},[\"display:none\",\"width:100%\",\"margin-top:.25rem\",\"font-size:80%\",\"color:#28a745\"]],[false,{\".valid-tooltip\":false},[\"position:absolute\",\"top:100%\",\"z-index:5\",\"display:none\",\"max-width:100%\",\"padding:.25rem .5rem\",\"margin-top:.1rem\",\"font-size:.875rem\",\"line-height:1.5\",\"color:#fff\",\"background-color:rgba(40,167,69,.9)\",\"border-radius:.25rem\"]],[false,{\".custom-select.is-valid\":false,\".form-control.is-valid\":false,\".was-validated .custom-select:valid\":false,\".was-validated .form-control:valid\":false},[\"border-color:#28a745\"]],[false,{\".custom-select.is-valid:focus\":false,\".form-control.is-valid:focus\":false,\".was-validated .custom-select:valid:focus\":false,\".was-validated .form-control:valid:focus\":false},[\"border-color:#28a745\",\"box-shadow:0 0 0 .2rem rgba(40,167,69,.25)\"]],[false,{\".custom-select.is-valid~.valid-feedback\":false,\".custom-select.is-valid~.valid-tooltip\":false,\".form-control.is-valid~.valid-feedback\":false,\".form-control.is-valid~.valid-tooltip\":false,\".was-validated .custom-select:valid~.valid-feedback\":false,\".was-validated .custom-select:valid~.valid-tooltip\":false,\".was-validated .form-control:valid~.valid-feedback\":false,\".was-validated .form-control:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".form-control-file.is-valid~.valid-feedback\":false,\".form-control-file.is-valid~.valid-tooltip\":false,\".was-validated .form-control-file:valid~.valid-feedback\":false,\".was-validated .form-control-file:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".form-check-input.is-valid~.form-check-label\":false,\".was-validated .form-check-input:valid~.form-check-label\":false},[\"color:#28a745\"]],[false,{\".form-check-input.is-valid~.valid-feedback\":false,\".form-check-input.is-valid~.valid-tooltip\":false,\".was-validated .form-check-input:valid~.valid-feedback\":false,\".was-validated .form-check-input:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-valid~.custom-control-label\":false,\".was-validated .custom-control-input:valid~.custom-control-label\":false},[\"color:#28a745\"]],[false,{\".custom-control-input.is-valid~.custom-control-label::before\":false,\".was-validated .custom-control-input:valid~.custom-control-label::before\":false},[\"background-color:#71dd8a\"]],[false,{\".custom-control-input.is-valid~.valid-feedback\":false,\".custom-control-input.is-valid~.valid-tooltip\":false,\".was-validated .custom-control-input:valid~.valid-feedback\":false,\".was-validated .custom-control-input:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-valid:checked~.custom-control-label::before\":false,\".was-validated .custom-control-input:valid:checked~.custom-control-label::before\":false},[\"background-color:#34ce57\"]],[false,{\".custom-control-input.is-valid:focus~.custom-control-label::before\":false,\".was-validated .custom-control-input:valid:focus~.custom-control-label::before\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(40,167,69,.25)\"]],[false,{\".custom-file-input.is-valid~.custom-file-label\":false,\".was-validated .custom-file-input:valid~.custom-file-label\":false},[\"border-color:#28a745\"]],[false,{\".custom-file-input.is-valid~.custom-file-label::after\":false,\".was-validated .custom-file-input:valid~.custom-file-label::after\":false},[\"border-color:inherit\"]],[false,{\".custom-file-input.is-valid~.valid-feedback\":false,\".custom-file-input.is-valid~.valid-tooltip\":false,\".was-validated .custom-file-input:valid~.valid-feedback\":false,\".was-validated .custom-file-input:valid~.valid-tooltip\":false},[\"display:block\"]],[false,{\".custom-file-input.is-valid:focus~.custom-file-label\":false,\".was-validated .custom-file-input:valid:focus~.custom-file-label\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.25)\"]],[false,{\".invalid-feedback\":false},[\"display:none\",\"width:100%\",\"margin-top:.25rem\",\"font-size:80%\",\"color:#dc3545\"]],[false,{\".invalid-tooltip\":false},[\"position:absolute\",\"top:100%\",\"z-index:5\",\"display:none\",\"max-width:100%\",\"padding:.25rem .5rem\",\"margin-top:.1rem\",\"font-size:.875rem\",\"line-height:1.5\",\"color:#fff\",\"background-color:rgba(220,53,69,.9)\",\"border-radius:.25rem\"]],[false,{\".custom-select.is-invalid\":false,\".form-control.is-invalid\":false,\".was-validated .custom-select:invalid\":false,\".was-validated .form-control:invalid\":false},[\"border-color:#dc3545\"]],[false,{\".custom-select.is-invalid:focus\":false,\".form-control.is-invalid:focus\":false,\".was-validated .custom-select:invalid:focus\":false,\".was-validated .form-control:invalid:focus\":false},[\"border-color:#dc3545\",\"box-shadow:0 0 0 .2rem rgba(220,53,69,.25)\"]],[false,{\".custom-select.is-invalid~.invalid-feedback\":false,\".custom-select.is-invalid~.invalid-tooltip\":false,\".form-control.is-invalid~.invalid-feedback\":false,\".form-control.is-invalid~.invalid-tooltip\":false,\".was-validated .custom-select:invalid~.invalid-feedback\":false,\".was-validated .custom-select:invalid~.invalid-tooltip\":false,\".was-validated .form-control:invalid~.invalid-feedback\":false,\".was-validated .form-control:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".form-control-file.is-invalid~.invalid-feedback\":false,\".form-control-file.is-invalid~.invalid-tooltip\":false,\".was-validated .form-control-file:invalid~.invalid-feedback\":false,\".was-validated .form-control-file:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".form-check-input.is-invalid~.form-check-label\":false,\".was-validated .form-check-input:invalid~.form-check-label\":false},[\"color:#dc3545\"]],[false,{\".form-check-input.is-invalid~.invalid-feedback\":false,\".form-check-input.is-invalid~.invalid-tooltip\":false,\".was-validated .form-check-input:invalid~.invalid-feedback\":false,\".was-validated .form-check-input:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-invalid~.custom-control-label\":false,\".was-validated .custom-control-input:invalid~.custom-control-label\":false},[\"color:#dc3545\"]],[false,{\".custom-control-input.is-invalid~.custom-control-label::before\":false,\".was-validated .custom-control-input:invalid~.custom-control-label::before\":false},[\"background-color:#efa2a9\"]],[false,{\".custom-control-input.is-invalid~.invalid-feedback\":false,\".custom-control-input.is-invalid~.invalid-tooltip\":false,\".was-validated .custom-control-input:invalid~.invalid-feedback\":false,\".was-validated .custom-control-input:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".custom-control-input.is-invalid:checked~.custom-control-label::before\":false,\".was-validated .custom-control-input:invalid:checked~.custom-control-label::before\":false},[\"background-color:#e4606d\"]],[false,{\".custom-control-input.is-invalid:focus~.custom-control-label::before\":false,\".was-validated .custom-control-input:invalid:focus~.custom-control-label::before\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(220,53,69,.25)\"]],[false,{\".custom-file-input.is-invalid~.custom-file-label\":false,\".was-validated .custom-file-input:invalid~.custom-file-label\":false},[\"border-color:#dc3545\"]],[false,{\".custom-file-input.is-invalid~.custom-file-label::after\":false,\".was-validated .custom-file-input:invalid~.custom-file-label::after\":false},[\"border-color:inherit\"]],[false,{\".custom-file-input.is-invalid~.invalid-feedback\":false,\".custom-file-input.is-invalid~.invalid-tooltip\":false,\".was-validated .custom-file-input:invalid~.invalid-feedback\":false,\".was-validated .custom-file-input:invalid~.invalid-tooltip\":false},[\"display:block\"]],[false,{\".custom-file-input.is-invalid:focus~.custom-file-label\":false,\".was-validated .custom-file-input:invalid:focus~.custom-file-label\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.25)\"]],[false,{\".form-inline\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".form-inline .form-check\":false},[\"width:100%\"]],[false,\"@media (min-width:576px){\"],[false,{\".form-inline label\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"margin-bottom:0\"]],[false,{\".form-inline .form-group\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex:0 0 auto\",\"flex:0 0 auto\",\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\",\"-ms-flex-align:center\",\"align-items:center\",\"margin-bottom:0\"]],[false,{\".form-inline .form-control\":false},[\"display:inline-block\",\"width:auto\",\"vertical-align:middle\"]],[false,{\".form-inline .form-control-plaintext\":false},[\"display:inline-block\"]],[false,{\".form-inline .custom-select\":false,\".form-inline .input-group\":false},[\"width:auto\"]],[false,{\".form-inline .form-check\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"width:auto\",\"padding-left:0\"]],[false,{\".form-inline .form-check-input\":false},[\"position:relative\",\"margin-top:0\",\"margin-right:.25rem\",\"margin-left:0\"]],[false,{\".form-inline .custom-control\":false},[\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".form-inline .custom-control-label\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".btn\":false},[\"display:inline-block\",\"font-weight:400\",\"text-align:center\",\"white-space:nowrap\",\"vertical-align:middle\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\",\"border:1px solid transparent\",\"padding:.375rem .75rem\",\"font-size:1rem\",\"line-height:1.5\",\"border-radius:.25rem\",\"transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".btn\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".btn:focus\":false,\".btn:hover\":false},[\"text-decoration:none\"]],[false,{\".btn:focus-within\":false,\".btn:focus\":false},[\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".btn.disabled\":false,\".btn:disabled\":false},[\"opacity:.65\"]],[false,{\".btn:not(:disabled):not(.disabled)\":false},[\"cursor:pointer\"]],[false,{\"a.btn.disabled\":false,\"fieldset:disabled a.btn\":false},[\"pointer-events:none\"]],[false,{\".btn-primary\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-primary:hover\":false},[\"color:#fff\",\"background-color:#0069d9\",\"border-color:#0062cc\"]],[false,{\".btn-primary:focus-within\":false,\".btn-primary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-primary.disabled\":false,\".btn-primary:disabled\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-primary:not(:disabled):not(.disabled).active\":false,\".btn-primary:not(:disabled):not(.disabled):active\":false,\".show>.btn-primary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#0062cc\",\"border-color:#005cbf\"]],[false,{\".btn-primary:not(:disabled):not(.disabled).active:focus\":false,\".btn-primary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-primary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-secondary\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-secondary:hover\":false},[\"color:#fff\",\"background-color:#5a6268\",\"border-color:#545b62\"]],[false,{\".btn-secondary:focus-within\":false,\".btn-secondary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-secondary.disabled\":false,\".btn-secondary:disabled\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-secondary:not(:disabled):not(.disabled).active\":false,\".btn-secondary:not(:disabled):not(.disabled):active\":false,\".show>.btn-secondary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#545b62\",\"border-color:#4e555b\"]],[false,{\".btn-secondary:not(:disabled):not(.disabled).active:focus\":false,\".btn-secondary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-secondary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-success\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-success:hover\":false},[\"color:#fff\",\"background-color:#218838\",\"border-color:#1e7e34\"]],[false,{\".btn-success:focus-within\":false,\".btn-success:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-success.disabled\":false,\".btn-success:disabled\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-success:not(:disabled):not(.disabled).active\":false,\".btn-success:not(:disabled):not(.disabled):active\":false,\".show>.btn-success.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#1e7e34\",\"border-color:#1c7430\"]],[false,{\".btn-success:not(:disabled):not(.disabled).active:focus\":false,\".btn-success:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-success.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-info\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-info:hover\":false},[\"color:#fff\",\"background-color:#138496\",\"border-color:#117a8b\"]],[false,{\".btn-info:focus-within\":false,\".btn-info:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-info.disabled\":false,\".btn-info:disabled\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-info:not(:disabled):not(.disabled).active\":false,\".btn-info:not(:disabled):not(.disabled):active\":false,\".show>.btn-info.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#117a8b\",\"border-color:#10707f\"]],[false,{\".btn-info:not(:disabled):not(.disabled).active:focus\":false,\".btn-info:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-info.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-warning\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-warning:hover\":false},[\"color:#212529\",\"background-color:#e0a800\",\"border-color:#d39e00\"]],[false,{\".btn-warning:focus-within\":false,\".btn-warning:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-warning.disabled\":false,\".btn-warning:disabled\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-warning:not(:disabled):not(.disabled).active\":false,\".btn-warning:not(:disabled):not(.disabled):active\":false,\".show>.btn-warning.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#d39e00\",\"border-color:#c69500\"]],[false,{\".btn-warning:not(:disabled):not(.disabled).active:focus\":false,\".btn-warning:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-warning.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-danger\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-danger:hover\":false},[\"color:#fff\",\"background-color:#c82333\",\"border-color:#bd2130\"]],[false,{\".btn-danger:focus-within\":false,\".btn-danger:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-danger.disabled\":false,\".btn-danger:disabled\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-danger:not(:disabled):not(.disabled).active\":false,\".btn-danger:not(:disabled):not(.disabled):active\":false,\".show>.btn-danger.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#bd2130\",\"border-color:#b21f2d\"]],[false,{\".btn-danger:not(:disabled):not(.disabled).active:focus\":false,\".btn-danger:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-danger.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-light\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-light:hover\":false},[\"color:#212529\",\"background-color:#e2e6ea\",\"border-color:#dae0e5\"]],[false,{\".btn-light:focus-within\":false,\".btn-light:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-light.disabled\":false,\".btn-light:disabled\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-light:not(:disabled):not(.disabled).active\":false,\".btn-light:not(:disabled):not(.disabled):active\":false,\".show>.btn-light.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#dae0e5\",\"border-color:#d3d9df\"]],[false,{\".btn-light:not(:disabled):not(.disabled).active:focus\":false,\".btn-light:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-light.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-dark\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-dark:hover\":false},[\"color:#fff\",\"background-color:#23272b\",\"border-color:#1d2124\"]],[false,{\".btn-dark:focus-within\":false,\".btn-dark:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-dark.disabled\":false,\".btn-dark:disabled\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-dark:not(:disabled):not(.disabled).active\":false,\".btn-dark:not(:disabled):not(.disabled):active\":false,\".show>.btn-dark.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#1d2124\",\"border-color:#171a1d\"]],[false,{\".btn-dark:not(:disabled):not(.disabled).active:focus\":false,\".btn-dark:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-dark.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-outline-primary\":false},[\"color:#007bff\",\"background-color:transparent\",\"background-image:none\",\"border-color:#007bff\"]],[false,{\".btn-outline-primary:hover\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-outline-primary:focus-within\":false,\".btn-outline-primary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-outline-primary.disabled\":false,\".btn-outline-primary:disabled\":false},[\"color:#007bff\",\"background-color:transparent\"]],[false,{\".btn-outline-primary:not(:disabled):not(.disabled).active\":false,\".btn-outline-primary:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-primary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".btn-outline-primary:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-primary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-primary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(0,123,255,.5)\"]],[false,{\".btn-outline-secondary\":false},[\"color:#6c757d\",\"background-color:transparent\",\"background-image:none\",\"border-color:#6c757d\"]],[false,{\".btn-outline-secondary:hover\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-outline-secondary:focus-within\":false,\".btn-outline-secondary:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-outline-secondary.disabled\":false,\".btn-outline-secondary:disabled\":false},[\"color:#6c757d\",\"background-color:transparent\"]],[false,{\".btn-outline-secondary:not(:disabled):not(.disabled).active\":false,\".btn-outline-secondary:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-secondary.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#6c757d\",\"border-color:#6c757d\"]],[false,{\".btn-outline-secondary:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-secondary:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-secondary.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(108,117,125,.5)\"]],[false,{\".btn-outline-success\":false},[\"color:#28a745\",\"background-color:transparent\",\"background-image:none\",\"border-color:#28a745\"]],[false,{\".btn-outline-success:hover\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-outline-success:focus-within\":false,\".btn-outline-success:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-outline-success.disabled\":false,\".btn-outline-success:disabled\":false},[\"color:#28a745\",\"background-color:transparent\"]],[false,{\".btn-outline-success:not(:disabled):not(.disabled).active\":false,\".btn-outline-success:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-success.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#28a745\",\"border-color:#28a745\"]],[false,{\".btn-outline-success:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-success:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-success.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(40,167,69,.5)\"]],[false,{\".btn-outline-info\":false},[\"color:#17a2b8\",\"background-color:transparent\",\"background-image:none\",\"border-color:#17a2b8\"]],[false,{\".btn-outline-info:hover\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-outline-info:focus-within\":false,\".btn-outline-info:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-outline-info.disabled\":false,\".btn-outline-info:disabled\":false},[\"color:#17a2b8\",\"background-color:transparent\"]],[false,{\".btn-outline-info:not(:disabled):not(.disabled).active\":false,\".btn-outline-info:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-info.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#17a2b8\",\"border-color:#17a2b8\"]],[false,{\".btn-outline-info:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-info:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-info.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(23,162,184,.5)\"]],[false,{\".btn-outline-warning\":false},[\"color:#ffc107\",\"background-color:transparent\",\"background-image:none\",\"border-color:#ffc107\"]],[false,{\".btn-outline-warning:hover\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-outline-warning:focus-within\":false,\".btn-outline-warning:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-outline-warning.disabled\":false,\".btn-outline-warning:disabled\":false},[\"color:#ffc107\",\"background-color:transparent\"]],[false,{\".btn-outline-warning:not(:disabled):not(.disabled).active\":false,\".btn-outline-warning:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-warning.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#ffc107\",\"border-color:#ffc107\"]],[false,{\".btn-outline-warning:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-warning:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-warning.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(255,193,7,.5)\"]],[false,{\".btn-outline-danger\":false},[\"color:#dc3545\",\"background-color:transparent\",\"background-image:none\",\"border-color:#dc3545\"]],[false,{\".btn-outline-danger:hover\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-outline-danger:focus-within\":false,\".btn-outline-danger:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-outline-danger.disabled\":false,\".btn-outline-danger:disabled\":false},[\"color:#dc3545\",\"background-color:transparent\"]],[false,{\".btn-outline-danger:not(:disabled):not(.disabled).active\":false,\".btn-outline-danger:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-danger.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#dc3545\",\"border-color:#dc3545\"]],[false,{\".btn-outline-danger:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-danger:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-danger.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(220,53,69,.5)\"]],[false,{\".btn-outline-light\":false},[\"color:#f8f9fa\",\"background-color:transparent\",\"background-image:none\",\"border-color:#f8f9fa\"]],[false,{\".btn-outline-light:hover\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-outline-light:focus-within\":false,\".btn-outline-light:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-outline-light.disabled\":false,\".btn-outline-light:disabled\":false},[\"color:#f8f9fa\",\"background-color:transparent\"]],[false,{\".btn-outline-light:not(:disabled):not(.disabled).active\":false,\".btn-outline-light:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-light.dropdown-toggle\":false},[\"color:#212529\",\"background-color:#f8f9fa\",\"border-color:#f8f9fa\"]],[false,{\".btn-outline-light:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-light:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-light.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(248,249,250,.5)\"]],[false,{\".btn-outline-dark\":false},[\"color:#343a40\",\"background-color:transparent\",\"background-image:none\",\"border-color:#343a40\"]],[false,{\".btn-outline-dark:hover\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-outline-dark:focus-within\":false,\".btn-outline-dark:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-outline-dark.disabled\":false,\".btn-outline-dark:disabled\":false},[\"color:#343a40\",\"background-color:transparent\"]],[false,{\".btn-outline-dark:not(:disabled):not(.disabled).active\":false,\".btn-outline-dark:not(:disabled):not(.disabled):active\":false,\".show>.btn-outline-dark.dropdown-toggle\":false},[\"color:#fff\",\"background-color:#343a40\",\"border-color:#343a40\"]],[false,{\".btn-outline-dark:not(:disabled):not(.disabled).active:focus\":false,\".btn-outline-dark:not(:disabled):not(.disabled):active:focus\":false,\".show>.btn-outline-dark.dropdown-toggle:focus\":false},[\"box-shadow:0 0 0 .2rem rgba(52,58,64,.5)\"]],[false,{\".btn-link\":false},[\"font-weight:400\",\"color:#007bff\",\"background-color:transparent\"]],[false,{\".btn-link:hover\":false},[\"color:#0056b3\",\"text-decoration:underline\",\"background-color:transparent\",\"border-color:transparent\"]],[false,{\".btn-link:focus-within\":false,\".btn-link:focus\":false},[\"text-decoration:underline\",\"border-color:transparent\",\"box-shadow:none\"]],[false,{\".btn-link.disabled\":false,\".btn-link:disabled\":false},[\"color:#6c757d\",\"pointer-events:none\"]],[false,{\".btn-group-lg>.btn\":false,\".btn-lg\":false},[\"padding:.5rem 1rem\",\"font-size:1.25rem\",\"line-height:1.5\",\"border-radius:.3rem\"]],[false,{\".btn-group-sm>.btn\":false,\".btn-sm\":false},[\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\",\"border-radius:.2rem\"]],[false,{\".btn-block\":false},[\"display:block\",\"width:100%\"]],[false,{\".btn-block+.btn-block\":false},[\"margin-top:.5rem\"]],[false,{\"input[type=button].btn-block\":false,\"input[type=reset].btn-block\":false,\"input[type=submit].btn-block\":false},[\"width:100%\"]],[false,{\".fade\":false},[\"transition:opacity .15s linear\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".fade\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".fade:not(.show)\":false},[\"opacity:0\"]],[true,{\".collapse:not(.show)\":true},[\"display:none\"]],[false,{\".collapsing\":false},[\"position:relative\",\"height:0\",\"overflow:hidden\",\"transition:height .35s ease\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".collapsing\":false},[\"transition:none\"]],[false,\"}\"],[true,{\".dropdown\":true,\".dropleft\":false,\".dropright\":false,\".dropup\":false},[\"position:relative\"]],[true,{\".dropdown-toggle::after\":true},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:.3em solid\",\"border-right:.3em solid transparent\",\"border-bottom:0\",\"border-left:.3em solid transparent\"]],[true,{\".dropdown-toggle:empty::after\":true},[\"margin-left:0\"]],[true,{\".dropdown-menu\":true},[\"position:absolute\",\"top:100%\",\"left:0\",\"z-index:1000\",\"display:none\",\"float:left\",\"min-width:10rem\",\"padding:.5rem 0\",\"margin:.125rem 0 0\",\"font-size:1rem\",\"color:#212529\",\"text-align:left\",\"list-style:none\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid rgba(0,0,0,.15)\",\"border-radius:.25rem\"]],[false,{\".dropdown-menu-right\":false},[\"right:0\",\"left:auto\"]],[false,{\".dropup .dropdown-menu\":false},[\"top:auto\",\"bottom:100%\",\"margin-top:0\",\"margin-bottom:.125rem\"]],[false,{\".dropup .dropdown-toggle::after\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:0\",\"border-right:.3em solid transparent\",\"border-bottom:.3em solid\",\"border-left:.3em solid transparent\"]],[false,{\".dropup .dropdown-toggle:empty::after\":false},[\"margin-left:0\"]],[false,{\".dropright .dropdown-menu\":false},[\"top:0\",\"right:auto\",\"left:100%\",\"margin-top:0\",\"margin-left:.125rem\"]],[false,{\".dropright .dropdown-toggle::after\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:.3em solid transparent\",\"border-right:0\",\"border-bottom:.3em solid transparent\",\"border-left:.3em solid\"]],[false,{\".dropright .dropdown-toggle:empty::after\":false},[\"margin-left:0\"]],[false,{\".dropright .dropdown-toggle::after\":false},[\"vertical-align:0\"]],[false,{\".dropleft .dropdown-menu\":false},[\"top:0\",\"right:100%\",\"left:auto\",\"margin-top:0\",\"margin-right:.125rem\"]],[false,{\".dropleft .dropdown-toggle::after\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-left:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\"]],[false,{\".dropleft .dropdown-toggle::after\":false},[\"display:none\"]],[false,{\".dropleft .dropdown-toggle::before\":false},[\"display:inline-block\",\"width:0\",\"height:0\",\"margin-right:.255em\",\"vertical-align:.255em\",\"content:\\\"\\\"\",\"border-top:.3em solid transparent\",\"border-right:.3em solid\",\"border-bottom:.3em solid transparent\"]],[false,{\".dropleft .dropdown-toggle:empty::after\":false},[\"margin-left:0\"]],[false,{\".dropleft .dropdown-toggle::before\":false},[\"vertical-align:0\"]],[false,{\".dropdown-menu[x-placement^=bottom]\":false,\".dropdown-menu[x-placement^=left]\":false,\".dropdown-menu[x-placement^=right]\":false,\".dropdown-menu[x-placement^=top]\":false},[\"right:auto\",\"bottom:auto\"]],[false,{\".dropdown-divider\":false},[\"height:0\",\"margin:.5rem 0\",\"overflow:hidden\",\"border-top:1px solid #e9ecef\"]],[false,{\".dropdown-item\":false},[\"display:block\",\"width:100%\",\"padding:.25rem 1.5rem\",\"clear:both\",\"font-weight:400\",\"color:#212529\",\"text-align:inherit\",\"white-space:nowrap\",\"background-color:transparent\",\"border:0\"]],[false,{\".dropdown-item:focus\":false,\".dropdown-item:hover\":false},[\"color:#16181b\",\"text-decoration:none\",\"background-color:#f8f9fa\"]],[false,{\".dropdown-item.active\":false,\".dropdown-item:active\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#007bff\"]],[false,{\".dropdown-item.disabled\":false,\".dropdown-item:disabled\":false},[\"color:#6c757d\",\"background-color:transparent\"]],[true,{\".dropdown-menu.show\":true},[\"display:block\"]],[false,{\".dropdown-header\":false},[\"display:block\",\"padding:.5rem 1.5rem\",\"margin-bottom:0\",\"font-size:.875rem\",\"color:#6c757d\",\"white-space:nowrap\"]],[false,{\".dropdown-item-text\":false},[\"display:block\",\"padding:.25rem 1.5rem\",\"color:#212529\"]],[false,{\".btn-group\":false,\".btn-group-vertical\":false},[\"position:relative\",\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"vertical-align:middle\"]],[false,{\".btn-group-vertical>.btn\":false,\".btn-group>.btn\":false},[\"position:relative\",\"-ms-flex:0 1 auto\",\"flex:0 1 auto\"]],[false,{\".btn-group-vertical>.btn:hover\":false,\".btn-group>.btn:hover\":false},[\"z-index:1\"]],[false,{\".btn-group-vertical>.btn.active\":false,\".btn-group-vertical>.btn:active\":false,\".btn-group-vertical>.btn:focus\":false,\".btn-group>.btn.active\":false,\".btn-group>.btn:active\":false,\".btn-group>.btn:focus\":false},[\"z-index:1\"]],[false,{\".btn-group .btn+.btn\":false,\".btn-group .btn+.btn-group\":false,\".btn-group .btn-group+.btn\":false,\".btn-group .btn-group+.btn-group\":false,\".btn-group-vertical .btn+.btn\":false,\".btn-group-vertical .btn+.btn-group\":false,\".btn-group-vertical .btn-group+.btn\":false,\".btn-group-vertical .btn-group+.btn-group\":false},[\"margin-left:-1px\"]],[false,{\".btn-toolbar\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".btn-toolbar .input-group\":false},[\"width:auto\"]],[false,{\".btn-group>.btn:first-child\":false},[\"margin-left:0\"]],[false,{\".btn-group>.btn-group:not(:last-child)>.btn\":false,\".btn-group>.btn:not(:last-child):not(.dropdown-toggle)\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".btn-group>.btn-group:not(:first-child)>.btn\":false,\".btn-group>.btn:not(:first-child)\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".dropdown-toggle-split\":false},[\"padding-right:.5625rem\",\"padding-left:.5625rem\"]],[false,{\".dropdown-toggle-split::after\":false,\".dropright .dropdown-toggle-split::after\":false,\".dropup .dropdown-toggle-split::after\":false},[\"margin-left:0\"]],[false,{\".dropleft .dropdown-toggle-split::before\":false},[\"margin-right:0\"]],[false,{\".btn-group-sm>.btn+.dropdown-toggle-split\":false,\".btn-sm+.dropdown-toggle-split\":false},[\"padding-right:.375rem\",\"padding-left:.375rem\"]],[false,{\".btn-group-lg>.btn+.dropdown-toggle-split\":false,\".btn-lg+.dropdown-toggle-split\":false},[\"padding-right:.75rem\",\"padding-left:.75rem\"]],[false,{\".btn-group-vertical\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\",\"-ms-flex-align:start\",\"align-items:flex-start\",\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".btn-group-vertical .btn\":false,\".btn-group-vertical .btn-group\":false},[\"width:100%\"]],[false,{\".btn-group-vertical>.btn+.btn\":false,\".btn-group-vertical>.btn+.btn-group\":false,\".btn-group-vertical>.btn-group+.btn\":false,\".btn-group-vertical>.btn-group+.btn-group\":false},[\"margin-top:-1px\",\"margin-left:0\"]],[false,{\".btn-group-vertical>.btn-group:not(:last-child)>.btn\":false,\".btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle)\":false},[\"border-bottom-right-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".btn-group-vertical>.btn-group:not(:first-child)>.btn\":false,\".btn-group-vertical>.btn:not(:first-child)\":false},[\"border-top-left-radius:0\",\"border-top-right-radius:0\"]],[false,{\".btn-group-toggle>.btn\":false,\".btn-group-toggle>.btn-group>.btn\":false},[\"margin-bottom:0\"]],[false,{\".btn-group-toggle>.btn input[type=checkbox]\":false,\".btn-group-toggle>.btn input[type=radio]\":false,\".btn-group-toggle>.btn-group>.btn input[type=checkbox]\":false,\".btn-group-toggle>.btn-group>.btn input[type=radio]\":false},[\"position:absolute\",\"clip:rect(0,0,0,0)\",\"pointer-events:none\"]],[false,{\".input-group\":false},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-align:stretch\",\"align-items:stretch\",\"width:100%\"]],[false,{\".input-group>.custom-file\":false,\".input-group>.custom-select\":false,\".input-group>.form-control\":false},[\"position:relative\",\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"width:1%\",\"margin-bottom:0\"]],[false,{\".input-group>.custom-file+.custom-file\":false,\".input-group>.custom-file+.custom-select\":false,\".input-group>.custom-file+.form-control\":false,\".input-group>.custom-select+.custom-file\":false,\".input-group>.custom-select+.custom-select\":false,\".input-group>.custom-select+.form-control\":false,\".input-group>.form-control+.custom-file\":false,\".input-group>.form-control+.custom-select\":false,\".input-group>.form-control+.form-control\":false},[\"margin-left:-1px\"]],[false,{\".input-group>.custom-file .custom-file-input:focus~.custom-file-label\":false,\".input-group>.custom-select:focus\":false,\".input-group>.form-control:focus\":false},[\"z-index:3\"]],[false,{\".input-group>.custom-file .custom-file-input:focus\":false},[\"z-index:4\"]],[false,{\".input-group>.custom-select:not(:last-child)\":false,\".input-group>.form-control:not(:last-child)\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".input-group>.custom-select:not(:first-child)\":false,\".input-group>.form-control:not(:first-child)\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".input-group>.custom-file\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".input-group>.custom-file:not(:last-child) .custom-file-label\":false,\".input-group>.custom-file:not(:last-child) .custom-file-label::after\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".input-group>.custom-file:not(:first-child) .custom-file-label\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".input-group-append\":false,\".input-group-prepend\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".input-group-append .btn\":false,\".input-group-prepend .btn\":false},[\"position:relative\",\"z-index:2\"]],[false,{\".input-group-append .btn+.btn\":false,\".input-group-append .btn+.input-group-text\":false,\".input-group-append .input-group-text+.btn\":false,\".input-group-append .input-group-text+.input-group-text\":false,\".input-group-prepend .btn+.btn\":false,\".input-group-prepend .btn+.input-group-text\":false,\".input-group-prepend .input-group-text+.btn\":false,\".input-group-prepend .input-group-text+.input-group-text\":false},[\"margin-left:-1px\"]],[false,{\".input-group-prepend\":false},[\"margin-right:-1px\"]],[false,{\".input-group-append\":false},[\"margin-left:-1px\"]],[false,{\".input-group-text\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"padding:.375rem .75rem\",\"margin-bottom:0\",\"font-size:1rem\",\"font-weight:400\",\"line-height:1.5\",\"color:#495057\",\"text-align:center\",\"white-space:nowrap\",\"background-color:#e9ecef\",\"border:1px solid #ced4da\",\"border-radius:.25rem\"]],[false,{\".input-group-text input[type=checkbox]\":false,\".input-group-text input[type=radio]\":false},[\"margin-top:0\"]],[false,{\".input-group-lg>.form-control\":false,\".input-group-lg>.input-group-append>.btn\":false,\".input-group-lg>.input-group-append>.input-group-text\":false,\".input-group-lg>.input-group-prepend>.btn\":false,\".input-group-lg>.input-group-prepend>.input-group-text\":false},[\"height:calc(2.875rem + 2px)\",\"padding:.5rem 1rem\",\"font-size:1.25rem\",\"line-height:1.5\",\"border-radius:.3rem\"]],[false,{\".input-group-sm>.form-control\":false,\".input-group-sm>.input-group-append>.btn\":false,\".input-group-sm>.input-group-append>.input-group-text\":false,\".input-group-sm>.input-group-prepend>.btn\":false,\".input-group-sm>.input-group-prepend>.input-group-text\":false},[\"height:calc(1.8125rem + 2px)\",\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\",\"border-radius:.2rem\"]],[false,{\".input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle)\":false,\".input-group>.input-group-append:last-child>.input-group-text:not(:last-child)\":false,\".input-group>.input-group-append:not(:last-child)>.btn\":false,\".input-group>.input-group-append:not(:last-child)>.input-group-text\":false,\".input-group>.input-group-prepend>.btn\":false,\".input-group>.input-group-prepend>.input-group-text\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".input-group>.input-group-append>.btn\":false,\".input-group>.input-group-append>.input-group-text\":false,\".input-group>.input-group-prepend:first-child>.btn:not(:first-child)\":false,\".input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child)\":false,\".input-group>.input-group-prepend:not(:first-child)>.btn\":false,\".input-group>.input-group-prepend:not(:first-child)>.input-group-text\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".custom-control\":false},[\"position:relative\",\"display:block\",\"min-height:1.5rem\",\"padding-left:1.5rem\"]],[false,{\".custom-control-inline\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"margin-right:1rem\"]],[false,{\".custom-control-input\":false},[\"position:absolute\",\"z-index:-1\",\"opacity:0\"]],[false,{\".custom-control-input:checked~.custom-control-label::before\":false},[\"color:#fff\",\"background-color:#007bff\"]],[false,{\".custom-control-input:focus~.custom-control-label::before\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-control-input:active~.custom-control-label::before\":false},[\"color:#fff\",\"background-color:#b3d7ff\"]],[false,{\".custom-control-input:disabled~.custom-control-label\":false},[\"color:#6c757d\"]],[false,{\".custom-control-input:disabled~.custom-control-label::before\":false},[\"background-color:#e9ecef\"]],[false,{\".custom-control-label\":false},[\"position:relative\",\"margin-bottom:0\"]],[false,{\".custom-control-label::before\":false},[\"position:absolute\",\"top:.25rem\",\"left:-1.5rem\",\"display:block\",\"width:1rem\",\"height:1rem\",\"pointer-events:none\",\"content:\\\"\\\"\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\",\"background-color:#dee2e6\"]],[false,{\".custom-control-label::after\":false},[\"position:absolute\",\"top:.25rem\",\"left:-1.5rem\",\"display:block\",\"width:1rem\",\"height:1rem\",\"content:\\\"\\\"\",\"background-repeat:no-repeat\",\"background-position:center center\",\"background-size:50% 50%\"]],[false,{\".custom-checkbox .custom-control-label::before\":false},[\"border-radius:.25rem\"]],[false,{\".custom-checkbox .custom-control-input:checked~.custom-control-label::before\":false},[\"background-color:#007bff\"]],[false,{\".custom-checkbox .custom-control-input:checked~.custom-control-label::after\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'0 0 8 8\\\\\'%3E%3Cpath fill=\\\\\'%23fff\\\\\' d=\\\\\'M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before\":false},[\"background-color:#007bff\"]],[false,{\".custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'0 0 4 4\\\\\'%3E%3Cpath stroke=\\\\\'%23fff\\\\\' d=\\\\\'M0 2h4\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before\":false},[\"background-color:rgba(0,123,255,.5)\"]],[false,{\".custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before\":false},[\"background-color:rgba(0,123,255,.5)\"]],[false,{\".custom-radio .custom-control-label::before\":false},[\"border-radius:50%\"]],[false,{\".custom-radio .custom-control-input:checked~.custom-control-label::before\":false},[\"background-color:#007bff\"]],[false,{\".custom-radio .custom-control-input:checked~.custom-control-label::after\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'-4 -4 8 8\\\\\'%3E%3Ccircle r=\\\\\'3\\\\\' fill=\\\\\'%23fff\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".custom-radio .custom-control-input:disabled:checked~.custom-control-label::before\":false},[\"background-color:rgba(0,123,255,.5)\"]],[false,{\".custom-select\":false},[\"display:inline-block\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"padding:.375rem 1.75rem .375rem .75rem\",\"line-height:1.5\",\"color:#495057\",\"vertical-align:middle\",\"background:#fff url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' viewBox=\\\\\'0 0 4 5\\\\\'%3E%3Cpath fill=\\\\\'%23343a40\\\\\' d=\\\\\'M2 0L0 2h4zm0 5L0 3h4z\\\\\'\\/%3E%3C\\/svg%3E\\\") no-repeat right .75rem center\",\"background-size:8px 10px\",\"border:1px solid #ced4da\",\"border-radius:.25rem\",\"-webkit-appearance:none\",\"-moz-appearance:none\",\"appearance:none\"]],[false,{\".custom-select:focus\":false},[\"border-color:#80bdff\",\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(128,189,255,.5)\"]],[false,{\".custom-select:focus::-ms-value\":false},[\"color:#495057\",\"background-color:#fff\"]],[false,{\".custom-select[multiple]\":false,\".custom-select[size]:not([size=\\\"1\\\"])\":false},[\"height:auto\",\"padding-right:.75rem\",\"background-image:none\"]],[false,{\".custom-select:disabled\":false},[\"color:#6c757d\",\"background-color:#e9ecef\"]],[false,{\".custom-select::-ms-expand\":false},[\"opacity:0\"]],[false,{\".custom-select-sm\":false},[\"height:calc(1.8125rem + 2px)\",\"padding-top:.375rem\",\"padding-bottom:.375rem\",\"font-size:75%\"]],[false,{\".custom-select-lg\":false},[\"height:calc(2.875rem + 2px)\",\"padding-top:.375rem\",\"padding-bottom:.375rem\",\"font-size:125%\"]],[false,{\".custom-file\":false},[\"position:relative\",\"display:inline-block\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"margin-bottom:0\"]],[false,{\".custom-file-input\":false},[\"position:relative\",\"z-index:2\",\"width:100%\",\"height:calc(2.25rem + 2px)\",\"margin:0\",\"opacity:0\"]],[false,{\".custom-file-input:focus~.custom-file-label\":false},[\"border-color:#80bdff\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-file-input:focus~.custom-file-label::after\":false},[\"border-color:#80bdff\"]],[false,{\".custom-file-input:disabled~.custom-file-label\":false},[\"background-color:#e9ecef\"]],[false,{\".custom-file-input:lang(en)~.custom-file-label::after\":false},[\"content:\\\"Browse\\\"\"]],[false,{\".custom-file-label\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"left:0\",\"z-index:1\",\"height:calc(2.25rem + 2px)\",\"padding:.375rem .75rem\",\"line-height:1.5\",\"color:#495057\",\"background-color:#fff\",\"border:1px solid #ced4da\",\"border-radius:.25rem\"]],[false,{\".custom-file-label::after\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"z-index:3\",\"display:block\",\"height:2.25rem\",\"padding:.375rem .75rem\",\"line-height:1.5\",\"color:#495057\",\"content:\\\"Browse\\\"\",\"background-color:#e9ecef\",\"border-left:1px solid #ced4da\",\"border-radius:0 .25rem .25rem 0\"]],[false,{\".custom-range\":false},[\"width:100%\",\"padding-left:0\",\"background-color:transparent\",\"-webkit-appearance:none\",\"-moz-appearance:none\",\"appearance:none\"]],[false,{\".custom-range:focus\":false},[\"outline:0\"]],[false,{\".custom-range:focus::-webkit-slider-thumb\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-range:focus::-moz-range-thumb\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-range:focus::-ms-thumb\":false},[\"box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".custom-range::-moz-focus-outer\":false},[\"border:0\"]],[false,{\".custom-range::-webkit-slider-thumb\":false},[\"width:1rem\",\"height:1rem\",\"margin-top:-.25rem\",\"background-color:#007bff\",\"border:0\",\"border-radius:1rem\",\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\",\"-webkit-appearance:none\",\"appearance:none\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-range::-webkit-slider-thumb\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".custom-range::-webkit-slider-thumb:active\":false},[\"background-color:#b3d7ff\"]],[false,{\".custom-range::-webkit-slider-runnable-track\":false},[\"width:100%\",\"height:.5rem\",\"color:transparent\",\"cursor:pointer\",\"background-color:#dee2e6\",\"border-color:transparent\",\"border-radius:1rem\"]],[false,{\".custom-range::-moz-range-thumb\":false},[\"width:1rem\",\"height:1rem\",\"background-color:#007bff\",\"border:0\",\"border-radius:1rem\",\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\",\"-moz-appearance:none\",\"appearance:none\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-range::-moz-range-thumb\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".custom-range::-moz-range-thumb:active\":false},[\"background-color:#b3d7ff\"]],[false,{\".custom-range::-moz-range-track\":false},[\"width:100%\",\"height:.5rem\",\"color:transparent\",\"cursor:pointer\",\"background-color:#dee2e6\",\"border-color:transparent\",\"border-radius:1rem\"]],[false,{\".custom-range::-ms-thumb\":false},[\"width:1rem\",\"height:1rem\",\"margin-top:0\",\"margin-right:.2rem\",\"margin-left:.2rem\",\"background-color:#007bff\",\"border:0\",\"border-radius:1rem\",\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\",\"appearance:none\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-range::-ms-thumb\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".custom-range::-ms-thumb:active\":false},[\"background-color:#b3d7ff\"]],[false,{\".custom-range::-ms-track\":false},[\"width:100%\",\"height:.5rem\",\"color:transparent\",\"cursor:pointer\",\"background-color:transparent\",\"border-color:transparent\",\"border-width:.5rem\"]],[false,{\".custom-range::-ms-fill-lower\":false},[\"background-color:#dee2e6\",\"border-radius:1rem\"]],[false,{\".custom-range::-ms-fill-upper\":false},[\"margin-right:15px\",\"background-color:#dee2e6\",\"border-radius:1rem\"]],[false,{\".custom-control-label::before\":false,\".custom-file-label\":false,\".custom-select\":false},[\"transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".custom-control-label::before\":false,\".custom-file-label\":false,\".custom-select\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".nav\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"padding-left:0\",\"margin-bottom:0\",\"list-style:none\"]],[true,{\".nav-link\":true},[\"display:block\",\"padding:.5rem 1rem\"]],[true,{\".nav-link:focus\":true,\".nav-link:hover\":true},[\"text-decoration:none\"]],[false,{\".nav-link.disabled\":false},[\"color:#6c757d\"]],[false,{\".nav-tabs\":false},[\"border-bottom:1px solid #dee2e6\"]],[false,{\".nav-tabs .nav-item\":false},[\"margin-bottom:-1px\"]],[false,{\".nav-tabs .nav-link\":false},[\"border:1px solid transparent\",\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".nav-tabs .nav-link:focus\":false,\".nav-tabs .nav-link:hover\":false},[\"border-color:#e9ecef #e9ecef #dee2e6\"]],[false,{\".nav-tabs .nav-link.disabled\":false},[\"color:#6c757d\",\"background-color:transparent\",\"border-color:transparent\"]],[false,{\".nav-tabs .nav-item.show .nav-link\":false,\".nav-tabs .nav-link.active\":false},[\"color:#495057\",\"background-color:#fff\",\"border-color:#dee2e6 #dee2e6 #fff\"]],[false,{\".nav-tabs .dropdown-menu\":false},[\"margin-top:-1px\",\"border-top-left-radius:0\",\"border-top-right-radius:0\"]],[false,{\".nav-pills .nav-link\":false},[\"border-radius:.25rem\"]],[false,{\".nav-pills .nav-link.active\":false,\".nav-pills .show>.nav-link\":false},[\"color:#fff\",\"background-color:#007bff\"]],[false,{\".nav-fill .nav-item\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"text-align:center\"]],[false,{\".nav-justified .nav-item\":false},[\"-ms-flex-preferred-size:0\",\"flex-basis:0\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"text-align:center\"]],[false,{\".tab-content>.tab-pane\":false},[\"display:none\"]],[false,{\".tab-content>.active\":false},[\"display:block\"]],[true,{\".navbar\":true},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"padding:.5rem 1rem\"]],[true,{\".navbar>.container\":true,\".navbar>.container-fluid\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".navbar-brand\":false},[\"display:inline-block\",\"padding-top:.3125rem\",\"padding-bottom:.3125rem\",\"margin-right:1rem\",\"font-size:1.25rem\",\"line-height:inherit\",\"white-space:nowrap\"]],[false,{\".navbar-brand:focus\":false,\".navbar-brand:hover\":false},[\"text-decoration:none\"]],[true,{\".navbar-nav\":true},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"padding-left:0\",\"margin-bottom:0\",\"list-style:none\"]],[true,{\".navbar-nav .nav-link\":true},[\"padding-right:0\",\"padding-left:0\"]],[true,{\".navbar-nav .dropdown-menu\":true},[\"position:static\",\"float:none\"]],[false,{\".navbar-text\":false},[\"display:inline-block\",\"padding-top:.5rem\",\"padding-bottom:.5rem\"]],[true,{\".navbar-collapse\":true},[\"-ms-flex-preferred-size:100%\",\"flex-basis:100%\",\"-ms-flex-positive:1\",\"flex-grow:1\",\"-ms-flex-align:center\",\"align-items:center\"]],[true,{\".navbar-toggler\":true},[\"padding:.25rem .75rem\",\"font-size:1.25rem\",\"line-height:1\",\"background-color:transparent\",\"border:1px solid transparent\",\"border-radius:.25rem\"]],[true,{\".navbar-toggler:focus\":true,\".navbar-toggler:hover\":true},[\"text-decoration:none\"]],[true,{\".navbar-toggler:not(:disabled):not(.disabled)\":true},[\"cursor:pointer\"]],[false,{\".navbar-toggler-icon\":false},[\"display:inline-block\",\"width:1.5em\",\"height:1.5em\",\"vertical-align:middle\",\"content:\\\"\\\"\",\"background:no-repeat center center\",\"background-size:100% 100%\"]],[false,\"@media (max-width:575.98px){\"],[false,{\".navbar-expand-sm>.container\":false,\".navbar-expand-sm>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,\"}\"],[false,\"@media (min-width:576px){\"],[false,{\".navbar-expand-sm\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand-sm .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand-sm .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand-sm .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand-sm>.container\":false,\".navbar-expand-sm>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand-sm .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand-sm .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand-sm .navbar-toggler\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (max-width:767.98px){\"],[false,{\".navbar-expand-md>.container\":false,\".navbar-expand-md>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".navbar-expand-md\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand-md .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand-md .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand-md .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand-md>.container\":false,\".navbar-expand-md>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand-md .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand-md .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand-md .navbar-toggler\":false},[\"display:none\"]],[false,\"}\"],[true,\"@media (max-width:991.98px){\"],[true,{\".navbar-expand-lg>.container\":true,\".navbar-expand-lg>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[true,\"}\"],[true,\"@media (min-width:992px){\"],[true,{\".navbar-expand-lg\":true},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[true,{\".navbar-expand-lg .navbar-nav\":true},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[true,{\".navbar-expand-lg .navbar-nav .dropdown-menu\":true},[\"position:absolute\"]],[true,{\".navbar-expand-lg .navbar-nav .nav-link\":true},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[true,{\".navbar-expand-lg>.container\":true,\".navbar-expand-lg>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[true,{\".navbar-expand-lg .navbar-collapse\":true},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[true,{\".navbar-expand-lg .navbar-collapse:not(#_#_#_#_#_#_#_)\":true},[\"display:-ms-flexbox\",\"display:flex\"]],[true,{\".navbar-expand-lg .navbar-toggler\":true},[\"display:none\"]],[true,\"}\"],[false,\"@media (max-width:1199.98px){\"],[false,{\".navbar-expand-xl>.container\":false,\".navbar-expand-xl>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".navbar-expand-xl\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand-xl .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand-xl .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand-xl .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand-xl>.container\":false,\".navbar-expand-xl>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand-xl .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand-xl .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand-xl .navbar-toggler\":false},[\"display:none\"]],[false,\"}\"],[false,{\".navbar-expand\":false},[\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".navbar-expand>.container\":false,\".navbar-expand>.container-fluid\":false},[\"padding-right:0\",\"padding-left:0\"]],[false,{\".navbar-expand .navbar-nav\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".navbar-expand .navbar-nav .dropdown-menu\":false},[\"position:absolute\"]],[false,{\".navbar-expand .navbar-nav .nav-link\":false},[\"padding-right:.5rem\",\"padding-left:.5rem\"]],[false,{\".navbar-expand>.container\":false,\".navbar-expand>.container-fluid\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".navbar-expand .navbar-collapse\":false},[\"-ms-flex-preferred-size:auto\",\"flex-basis:auto\"]],[false,{\".navbar-expand .navbar-collapse:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".navbar-expand .navbar-toggler\":false},[\"display:none\"]],[false,{\".navbar-light .navbar-brand\":false},[\"color:rgba(0,0,0,.9)\"]],[false,{\".navbar-light .navbar-brand:focus\":false,\".navbar-light .navbar-brand:hover\":false},[\"color:rgba(0,0,0,.9)\"]],[true,{\".navbar-light .navbar-nav .nav-link\":true},[\"color:rgba(0,0,0,.5)\"]],[true,{\".navbar-light .navbar-nav .nav-link:focus\":true,\".navbar-light .navbar-nav .nav-link:hover\":true},[\"color:rgba(0,0,0,.7)\"]],[false,{\".navbar-light .navbar-nav .nav-link.disabled\":false},[\"color:rgba(0,0,0,.3)\"]],[true,{\".navbar-light .navbar-nav .active>.nav-link\":false,\".navbar-light .navbar-nav .nav-link.active\":false,\".navbar-light .navbar-nav .nav-link.show\":true,\".navbar-light .navbar-nav .show>.nav-link\":true},[\"color:rgba(0,0,0,.9)\"]],[true,{\".navbar-light .navbar-toggler\":true},[\"color:rgba(0,0,0,.5)\",\"border-color:rgba(0,0,0,.1)\"]],[false,{\".navbar-light .navbar-toggler-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg viewBox=\\\\\'0 0 30 30\\\\\' xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\'%3E%3Cpath stroke=\\\\\'rgba(0, 0, 0, 0.5)\\\\\' stroke-width=\\\\\'2\\\\\' stroke-linecap=\\\\\'round\\\\\' stroke-miterlimit=\\\\\'10\\\\\' d=\\\\\'M4 7h22M4 15h22M4 23h22\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".navbar-light .navbar-text\":false},[\"color:rgba(0,0,0,.5)\"]],[false,{\".navbar-light .navbar-text a\":false},[\"color:rgba(0,0,0,.9)\"]],[false,{\".navbar-light .navbar-text a:focus\":false,\".navbar-light .navbar-text a:hover\":false},[\"color:rgba(0,0,0,.9)\"]],[false,{\".navbar-dark .navbar-brand\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-brand:focus\":false,\".navbar-dark .navbar-brand:hover\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-nav .nav-link\":false},[\"color:rgba(255,255,255,.5)\"]],[false,{\".navbar-dark .navbar-nav .nav-link:focus\":false,\".navbar-dark .navbar-nav .nav-link:hover\":false},[\"color:rgba(255,255,255,.75)\"]],[false,{\".navbar-dark .navbar-nav .nav-link.disabled\":false},[\"color:rgba(255,255,255,.25)\"]],[false,{\".navbar-dark .navbar-nav .active>.nav-link\":false,\".navbar-dark .navbar-nav .nav-link.active\":false,\".navbar-dark .navbar-nav .nav-link.show\":false,\".navbar-dark .navbar-nav .show>.nav-link\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-toggler\":false},[\"color:rgba(255,255,255,.5)\",\"border-color:rgba(255,255,255,.1)\"]],[false,{\".navbar-dark .navbar-toggler-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg viewBox=\\\\\'0 0 30 30\\\\\' xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\'%3E%3Cpath stroke=\\\\\'rgba(255, 255, 255, 0.5)\\\\\' stroke-width=\\\\\'2\\\\\' stroke-linecap=\\\\\'round\\\\\' stroke-miterlimit=\\\\\'10\\\\\' d=\\\\\'M4 7h22M4 15h22M4 23h22\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".navbar-dark .navbar-text\":false},[\"color:rgba(255,255,255,.5)\"]],[false,{\".navbar-dark .navbar-text a\":false},[\"color:#fff\"]],[false,{\".navbar-dark .navbar-text a:focus\":false,\".navbar-dark .navbar-text a:hover\":false},[\"color:#fff\"]],[false,{\".card\":false},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"min-width:0\",\"word-wrap:break-word\",\"background-color:#fff\",\"background-clip:border-box\",\"border:1px solid rgba(0,0,0,.125)\",\"border-radius:.25rem\"]],[false,{\".card>hr\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".card>.list-group:first-child .list-group-item:first-child\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".card>.list-group:last-child .list-group-item:last-child\":false},[\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".card-body\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"padding:1.25rem\"]],[false,{\".card-title\":false},[\"margin-bottom:.75rem\"]],[false,{\".card-subtitle\":false},[\"margin-top:-.375rem\",\"margin-bottom:0\"]],[false,{\".card-text:last-child\":false},[\"margin-bottom:0\"]],[false,{\".card-link:hover\":false},[\"text-decoration:none\"]],[false,{\".card-link+.card-link\":false},[\"margin-left:1.25rem\"]],[false,{\".card-header\":false},[\"padding:.75rem 1.25rem\",\"margin-bottom:0\",\"background-color:rgba(0,0,0,.03)\",\"border-bottom:1px solid rgba(0,0,0,.125)\"]],[false,{\".card-header:first-child\":false},[\"border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0\"]],[false,{\".card-header+.list-group .list-group-item:first-child\":false},[\"border-top:0\"]],[false,{\".card-footer\":false},[\"padding:.75rem 1.25rem\",\"background-color:rgba(0,0,0,.03)\",\"border-top:1px solid rgba(0,0,0,.125)\"]],[false,{\".card-footer:last-child\":false},[\"border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)\"]],[false,{\".card-header-tabs\":false},[\"margin-right:-.625rem\",\"margin-bottom:-.75rem\",\"margin-left:-.625rem\",\"border-bottom:0\"]],[false,{\".card-header-pills\":false},[\"margin-right:-.625rem\",\"margin-left:-.625rem\"]],[false,{\".card-img-overlay\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"padding:1.25rem\"]],[false,{\".card-img\":false},[\"width:100%\",\"border-radius:calc(.25rem - 1px)\"]],[false,{\".card-img-top\":false},[\"width:100%\",\"border-top-left-radius:calc(.25rem - 1px)\",\"border-top-right-radius:calc(.25rem - 1px)\"]],[false,{\".card-img-bottom\":false},[\"width:100%\",\"border-bottom-right-radius:calc(.25rem - 1px)\",\"border-bottom-left-radius:calc(.25rem - 1px)\"]],[false,{\".card-deck\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".card-deck .card\":false},[\"margin-bottom:15px\"]],[false,\"@media (min-width:576px){\"],[false,{\".card-deck\":false},[\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\",\"margin-right:-15px\",\"margin-left:-15px\"]],[false,{\".card-deck .card\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex:1 0 0%\",\"flex:1 0 0%\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"margin-right:15px\",\"margin-bottom:0\",\"margin-left:15px\"]],[false,\"}\"],[false,{\".card-group\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".card-group>.card\":false},[\"margin-bottom:15px\"]],[false,\"@media (min-width:576px){\"],[false,{\".card-group\":false},[\"-ms-flex-flow:row wrap\",\"flex-flow:row wrap\"]],[false,{\".card-group>.card\":false},[\"-ms-flex:1 0 0%\",\"flex:1 0 0%\",\"margin-bottom:0\"]],[false,{\".card-group>.card+.card\":false},[\"margin-left:0\",\"border-left:0\"]],[false,{\".card-group>.card:first-child\":false},[\"border-top-right-radius:0\",\"border-bottom-right-radius:0\"]],[false,{\".card-group>.card:first-child .card-header\":false,\".card-group>.card:first-child .card-img-top\":false},[\"border-top-right-radius:0\"]],[false,{\".card-group>.card:first-child .card-footer\":false,\".card-group>.card:first-child .card-img-bottom\":false},[\"border-bottom-right-radius:0\"]],[false,{\".card-group>.card:last-child\":false},[\"border-top-left-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".card-group>.card:last-child .card-header\":false,\".card-group>.card:last-child .card-img-top\":false},[\"border-top-left-radius:0\"]],[false,{\".card-group>.card:last-child .card-footer\":false,\".card-group>.card:last-child .card-img-bottom\":false},[\"border-bottom-left-radius:0\"]],[false,{\".card-group>.card:only-child\":false},[\"border-radius:.25rem\"]],[false,{\".card-group>.card:only-child .card-header\":false,\".card-group>.card:only-child .card-img-top\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".card-group>.card:only-child .card-footer\":false,\".card-group>.card:only-child .card-img-bottom\":false},[\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".card-group>.card:not(:first-child):not(:last-child):not(:only-child)\":false},[\"border-radius:0\"]],[false,{\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-footer\":false,\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-header\":false,\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom\":false,\".card-group>.card:not(:first-child):not(:last-child):not(:only-child) .card-img-top\":false},[\"border-radius:0\"]],[false,\"}\"],[false,{\".card-columns .card\":false},[\"margin-bottom:.75rem\"]],[false,\"@media (min-width:576px){\"],[false,{\".card-columns\":false},[\"-webkit-column-count:3\",\"-moz-column-count:3\",\"column-count:3\",\"-webkit-column-gap:1.25rem\",\"-moz-column-gap:1.25rem\",\"column-gap:1.25rem\",\"orphans:1\",\"widows:1\"]],[false,{\".card-columns .card\":false},[\"display:inline-block\",\"width:100%\"]],[false,\"}\"],[false,{\".accordion .card:not(:first-of-type):not(:last-of-type)\":false},[\"border-bottom:0\",\"border-radius:0\"]],[false,{\".accordion .card:not(:first-of-type) .card-header:first-child\":false},[\"border-radius:0\"]],[false,{\".accordion .card:first-of-type\":false},[\"border-bottom:0\",\"border-bottom-right-radius:0\",\"border-bottom-left-radius:0\"]],[false,{\".accordion .card:last-of-type\":false},[\"border-top-left-radius:0\",\"border-top-right-radius:0\"]],[false,{\".breadcrumb\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"padding:.75rem 1rem\",\"margin-bottom:1rem\",\"list-style:none\",\"background-color:#e9ecef\",\"border-radius:.25rem\"]],[false,{\".breadcrumb-item+.breadcrumb-item\":false},[\"padding-left:.5rem\"]],[false,{\".breadcrumb-item+.breadcrumb-item::before\":false},[\"display:inline-block\",\"padding-right:.5rem\",\"color:#6c757d\",\"content:\\\"\\/\\\"\"]],[false,{\".breadcrumb-item+.breadcrumb-item:hover::before\":false},[\"text-decoration:underline\"]],[false,{\".breadcrumb-item+.breadcrumb-item:hover::before\":false},[\"text-decoration:none\"]],[false,{\".breadcrumb-item.active\":false},[\"color:#6c757d\"]],[false,{\".pagination\":false},[\"display:-ms-flexbox\",\"display:flex\",\"padding-left:0\",\"list-style:none\",\"border-radius:.25rem\"]],[false,{\".page-link\":false},[\"position:relative\",\"display:block\",\"padding:.5rem .75rem\",\"margin-left:-1px\",\"line-height:1.25\",\"color:#007bff\",\"background-color:#fff\",\"border:1px solid #dee2e6\"]],[false,{\".page-link:hover\":false},[\"z-index:2\",\"color:#0056b3\",\"text-decoration:none\",\"background-color:#e9ecef\",\"border-color:#dee2e6\"]],[false,{\".page-link:focus\":false},[\"z-index:2\",\"outline:0\",\"box-shadow:0 0 0 .2rem rgba(0,123,255,.25)\"]],[false,{\".page-link:not(:disabled):not(.disabled)\":false},[\"cursor:pointer\"]],[false,{\".page-item:first-child .page-link\":false},[\"margin-left:0\",\"border-top-left-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".page-item:last-child .page-link\":false},[\"border-top-right-radius:.25rem\",\"border-bottom-right-radius:.25rem\"]],[false,{\".page-item.active .page-link\":false},[\"z-index:1\",\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".page-item.disabled .page-link\":false},[\"color:#6c757d\",\"pointer-events:none\",\"cursor:auto\",\"background-color:#fff\",\"border-color:#dee2e6\"]],[false,{\".pagination-lg .page-link\":false},[\"padding:.75rem 1.5rem\",\"font-size:1.25rem\",\"line-height:1.5\"]],[false,{\".pagination-lg .page-item:first-child .page-link\":false},[\"border-top-left-radius:.3rem\",\"border-bottom-left-radius:.3rem\"]],[false,{\".pagination-lg .page-item:last-child .page-link\":false},[\"border-top-right-radius:.3rem\",\"border-bottom-right-radius:.3rem\"]],[false,{\".pagination-sm .page-link\":false},[\"padding:.25rem .5rem\",\"font-size:.875rem\",\"line-height:1.5\"]],[false,{\".pagination-sm .page-item:first-child .page-link\":false},[\"border-top-left-radius:.2rem\",\"border-bottom-left-radius:.2rem\"]],[false,{\".pagination-sm .page-item:last-child .page-link\":false},[\"border-top-right-radius:.2rem\",\"border-bottom-right-radius:.2rem\"]],[false,{\".badge\":false},[\"display:inline-block\",\"padding:.25em .4em\",\"font-size:75%\",\"font-weight:700\",\"line-height:1\",\"text-align:center\",\"white-space:nowrap\",\"vertical-align:baseline\",\"border-radius:.25rem\"]],[false,{\".badge:empty\":false},[\"display:none\"]],[false,{\".btn .badge\":false},[\"position:relative\",\"top:-1px\"]],[false,{\".badge-pill\":false},[\"padding-right:.6em\",\"padding-left:.6em\",\"border-radius:10rem\"]],[false,{\".badge-primary\":false},[\"color:#fff\",\"background-color:#007bff\"]],[false,{\".badge-primary[href]:focus\":false,\".badge-primary[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#0062cc\"]],[false,{\".badge-secondary\":false},[\"color:#fff\",\"background-color:#6c757d\"]],[false,{\".badge-secondary[href]:focus\":false,\".badge-secondary[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#545b62\"]],[false,{\".badge-success\":false},[\"color:#fff\",\"background-color:#28a745\"]],[false,{\".badge-success[href]:focus\":false,\".badge-success[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#1e7e34\"]],[false,{\".badge-info\":false},[\"color:#fff\",\"background-color:#17a2b8\"]],[false,{\".badge-info[href]:focus\":false,\".badge-info[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#117a8b\"]],[false,{\".badge-warning\":false},[\"color:#212529\",\"background-color:#ffc107\"]],[false,{\".badge-warning[href]:focus\":false,\".badge-warning[href]:hover\":false},[\"color:#212529\",\"text-decoration:none\",\"background-color:#d39e00\"]],[false,{\".badge-danger\":false},[\"color:#fff\",\"background-color:#dc3545\"]],[false,{\".badge-danger[href]:focus\":false,\".badge-danger[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#bd2130\"]],[false,{\".badge-light\":false},[\"color:#212529\",\"background-color:#f8f9fa\"]],[false,{\".badge-light[href]:focus\":false,\".badge-light[href]:hover\":false},[\"color:#212529\",\"text-decoration:none\",\"background-color:#dae0e5\"]],[false,{\".badge-dark\":false},[\"color:#fff\",\"background-color:#343a40\"]],[false,{\".badge-dark[href]:focus\":false,\".badge-dark[href]:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"background-color:#1d2124\"]],[false,{\".jumbotron\":false},[\"padding:2rem 1rem\",\"margin-bottom:2rem\",\"background-color:#e9ecef\",\"border-radius:.3rem\"]],[false,\"@media (min-width:576px){\"],[false,{\".jumbotron\":false},[\"padding:4rem 2rem\"]],[false,\"}\"],[false,{\".jumbotron-fluid\":false},[\"padding-right:0\",\"padding-left:0\",\"border-radius:0\"]],[false,{\".alert\":false},[\"position:relative\",\"padding:.75rem 1.25rem\",\"margin-bottom:1rem\",\"border:1px solid transparent\",\"border-radius:.25rem\"]],[false,{\".alert-heading\":false},[\"color:inherit\"]],[false,{\".alert-link\":false},[\"font-weight:700\"]],[false,{\".alert-dismissible\":false},[\"padding-right:4rem\"]],[false,{\".alert-dismissible .close\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"padding:.75rem 1.25rem\",\"color:inherit\"]],[false,{\".alert-primary\":false},[\"color:#004085\",\"background-color:#cce5ff\",\"border-color:#b8daff\"]],[false,{\".alert-primary hr\":false},[\"border-top-color:#9fcdff\"]],[false,{\".alert-primary .alert-link\":false},[\"color:#002752\"]],[false,{\".alert-secondary\":false},[\"color:#383d41\",\"background-color:#e2e3e5\",\"border-color:#d6d8db\"]],[false,{\".alert-secondary hr\":false},[\"border-top-color:#c8cbcf\"]],[false,{\".alert-secondary .alert-link\":false},[\"color:#202326\"]],[false,{\".alert-success\":false},[\"color:#155724\",\"background-color:#d4edda\",\"border-color:#c3e6cb\"]],[false,{\".alert-success hr\":false},[\"border-top-color:#b1dfbb\"]],[false,{\".alert-success .alert-link\":false},[\"color:#0b2e13\"]],[false,{\".alert-info\":false},[\"color:#0c5460\",\"background-color:#d1ecf1\",\"border-color:#bee5eb\"]],[false,{\".alert-info hr\":false},[\"border-top-color:#abdde5\"]],[false,{\".alert-info .alert-link\":false},[\"color:#062c33\"]],[false,{\".alert-warning\":false},[\"color:#856404\",\"background-color:#fff3cd\",\"border-color:#ffeeba\"]],[false,{\".alert-warning hr\":false},[\"border-top-color:#ffe8a1\"]],[false,{\".alert-warning .alert-link\":false},[\"color:#533f03\"]],[false,{\".alert-danger\":false},[\"color:#721c24\",\"background-color:#f8d7da\",\"border-color:#f5c6cb\"]],[false,{\".alert-danger hr\":false},[\"border-top-color:#f1b0b7\"]],[false,{\".alert-danger .alert-link\":false},[\"color:#491217\"]],[false,{\".alert-light\":false},[\"color:#818182\",\"background-color:#fefefe\",\"border-color:#fdfdfe\"]],[false,{\".alert-light hr\":false},[\"border-top-color:#ececf6\"]],[false,{\".alert-light .alert-link\":false},[\"color:#686868\"]],[false,{\".alert-dark\":false},[\"color:#1b1e21\",\"background-color:#d6d8d9\",\"border-color:#c6c8ca\"]],[false,{\".alert-dark hr\":false},[\"border-top-color:#b9bbbe\"]],[false,{\".alert-dark .alert-link\":false},[\"color:#040505\"]],[true,\"@-webkit-keyframes progress-bar-stripes{\"],[true,\"from{background-position:1rem 0}\"],[true,\"to{background-position:0 0}\"],[true,\"}@keyframes progress-bar-stripes{\"],[true,\"from{background-position:1rem 0}\"],[true,\"to{background-position:0 0}\"],[true,\"}\"],[false,{\".progress\":false},[\"display:-ms-flexbox\",\"display:flex\",\"height:1rem\",\"overflow:hidden\",\"font-size:.75rem\",\"background-color:#e9ecef\",\"border-radius:.25rem\"]],[false,{\".progress-bar\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"-ms-flex-pack:center\",\"justify-content:center\",\"color:#fff\",\"text-align:center\",\"white-space:nowrap\",\"background-color:#007bff\",\"transition:width .6s ease\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".progress-bar\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".progress-bar-striped\":false},[\"background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)\",\"background-size:1rem 1rem\"]],[false,{\".progress-bar-animated\":false},[\"-webkit-animation:progress-bar-stripes 1s linear infinite\",\"animation:progress-bar-stripes 1s linear infinite\"]],[false,{\".media\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".media-body\":false},[\"-ms-flex:1\",\"flex:1\"]],[false,{\".list-group\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"padding-left:0\",\"margin-bottom:0\"]],[false,{\".list-group-item-action\":false},[\"width:100%\",\"color:#495057\",\"text-align:inherit\"]],[false,{\".list-group-item-action:focus\":false,\".list-group-item-action:hover\":false},[\"color:#495057\",\"text-decoration:none\",\"background-color:#f8f9fa\"]],[false,{\".list-group-item-action:active\":false},[\"color:#212529\",\"background-color:#e9ecef\"]],[false,{\".list-group-item\":false},[\"position:relative\",\"display:block\",\"padding:.75rem 1.25rem\",\"margin-bottom:-1px\",\"background-color:#fff\",\"border:1px solid rgba(0,0,0,.125)\"]],[false,{\".list-group-item:first-child\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".list-group-item:last-child\":false},[\"margin-bottom:0\",\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".list-group-item:focus\":false,\".list-group-item:hover\":false},[\"z-index:1\",\"text-decoration:none\"]],[false,{\".list-group-item.disabled\":false,\".list-group-item:disabled\":false},[\"color:#6c757d\",\"background-color:#fff\"]],[false,{\".list-group-item.active\":false},[\"z-index:2\",\"color:#fff\",\"background-color:#007bff\",\"border-color:#007bff\"]],[false,{\".list-group-flush .list-group-item\":false},[\"border-right:0\",\"border-left:0\",\"border-radius:0\"]],[false,{\".list-group-flush:first-child .list-group-item:first-child\":false},[\"border-top:0\"]],[false,{\".list-group-flush:last-child .list-group-item:last-child\":false},[\"border-bottom:0\"]],[false,{\".list-group-item-primary\":false},[\"color:#004085\",\"background-color:#b8daff\"]],[false,{\".list-group-item-primary.list-group-item-action:focus\":false,\".list-group-item-primary.list-group-item-action:hover\":false},[\"color:#004085\",\"background-color:#9fcdff\"]],[false,{\".list-group-item-primary.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#004085\",\"border-color:#004085\"]],[false,{\".list-group-item-secondary\":false},[\"color:#383d41\",\"background-color:#d6d8db\"]],[false,{\".list-group-item-secondary.list-group-item-action:focus\":false,\".list-group-item-secondary.list-group-item-action:hover\":false},[\"color:#383d41\",\"background-color:#c8cbcf\"]],[false,{\".list-group-item-secondary.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#383d41\",\"border-color:#383d41\"]],[false,{\".list-group-item-success\":false},[\"color:#155724\",\"background-color:#c3e6cb\"]],[false,{\".list-group-item-success.list-group-item-action:focus\":false,\".list-group-item-success.list-group-item-action:hover\":false},[\"color:#155724\",\"background-color:#b1dfbb\"]],[false,{\".list-group-item-success.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#155724\",\"border-color:#155724\"]],[false,{\".list-group-item-info\":false},[\"color:#0c5460\",\"background-color:#bee5eb\"]],[false,{\".list-group-item-info.list-group-item-action:focus\":false,\".list-group-item-info.list-group-item-action:hover\":false},[\"color:#0c5460\",\"background-color:#abdde5\"]],[false,{\".list-group-item-info.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#0c5460\",\"border-color:#0c5460\"]],[false,{\".list-group-item-warning\":false},[\"color:#856404\",\"background-color:#ffeeba\"]],[false,{\".list-group-item-warning.list-group-item-action:focus\":false,\".list-group-item-warning.list-group-item-action:hover\":false},[\"color:#856404\",\"background-color:#ffe8a1\"]],[false,{\".list-group-item-warning.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#856404\",\"border-color:#856404\"]],[false,{\".list-group-item-danger\":false},[\"color:#721c24\",\"background-color:#f5c6cb\"]],[false,{\".list-group-item-danger.list-group-item-action:focus\":false,\".list-group-item-danger.list-group-item-action:hover\":false},[\"color:#721c24\",\"background-color:#f1b0b7\"]],[false,{\".list-group-item-danger.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#721c24\",\"border-color:#721c24\"]],[false,{\".list-group-item-light\":false},[\"color:#818182\",\"background-color:#fdfdfe\"]],[false,{\".list-group-item-light.list-group-item-action:focus\":false,\".list-group-item-light.list-group-item-action:hover\":false},[\"color:#818182\",\"background-color:#ececf6\"]],[false,{\".list-group-item-light.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#818182\",\"border-color:#818182\"]],[false,{\".list-group-item-dark\":false},[\"color:#1b1e21\",\"background-color:#c6c8ca\"]],[false,{\".list-group-item-dark.list-group-item-action:focus\":false,\".list-group-item-dark.list-group-item-action:hover\":false},[\"color:#1b1e21\",\"background-color:#b9bbbe\"]],[false,{\".list-group-item-dark.list-group-item-action.active\":false},[\"color:#fff\",\"background-color:#1b1e21\",\"border-color:#1b1e21\"]],[false,{\".close\":false},[\"float:right\",\"font-size:1.5rem\",\"font-weight:700\",\"line-height:1\",\"color:#000\",\"text-shadow:0 1px 0 #fff\",\"opacity:.5\"]],[false,{\".close:not(:disabled):not(.disabled)\":false},[\"cursor:pointer\"]],[false,{\".close:not(:disabled):not(.disabled):focus\":false,\".close:not(:disabled):not(.disabled):hover\":false},[\"color:#000\",\"text-decoration:none\",\"opacity:.75\"]],[false,{\"button.close\":false},[\"padding:0\",\"background-color:transparent\",\"border:0\",\"-webkit-appearance:none\"]],[false,{\".modal-open\":false},[\"overflow:hidden\"]],[false,{\".modal-open .modal\":false},[\"overflow-x:hidden\",\"overflow-y:auto\"]],[false,{\".modal\":false},[\"position:fixed\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"z-index:1050\",\"display:none\",\"overflow:hidden\",\"outline:0\"]],[false,{\".modal-dialog\":false},[\"position:relative\",\"width:auto\",\"margin:.5rem\",\"pointer-events:none\"]],[false,{\".modal.fade .modal-dialog\":false},[\"transition:-webkit-transform .3s ease-out\",\"transition:transform .3s ease-out\",\"transition:transform .3s ease-out,-webkit-transform .3s ease-out\",\"-webkit-transform:translate(0,-25%)\",\"transform:translate(0,-25%)\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".modal.fade .modal-dialog\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".modal.show .modal-dialog\":false},[\"-webkit-transform:translate(0,0)\",\"transform:translate(0,0)\"]],[false,{\".modal-dialog-centered\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"min-height:calc(100% - ( .5rem * 2 ))\"]],[false,{\".modal-dialog-centered::before\":false},[\"display:block\",\"height:calc(100vh - ( .5rem * 2 ))\",\"content:\\\"\\\"\"]],[false,{\".modal-content\":false},[\"position:relative\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-direction:column\",\"flex-direction:column\",\"width:100%\",\"pointer-events:auto\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid rgba(0,0,0,.2)\",\"border-radius:.3rem\",\"outline:0\"]],[false,{\".modal-backdrop\":false},[\"position:fixed\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"z-index:1040\",\"background-color:#000\"]],[false,{\".modal-backdrop.fade\":false},[\"opacity:0\"]],[false,{\".modal-backdrop.show\":false},[\"opacity:.5\"]],[false,{\".modal-header\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:start\",\"align-items:flex-start\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"padding:1rem\",\"border-bottom:1px solid #e9ecef\",\"border-top-left-radius:.3rem\",\"border-top-right-radius:.3rem\"]],[false,{\".modal-header .close\":false},[\"padding:1rem\",\"margin:-1rem -1rem -1rem auto\"]],[false,{\".modal-title\":false},[\"margin-bottom:0\",\"line-height:1.5\"]],[false,{\".modal-body\":false},[\"position:relative\",\"-ms-flex:1 1 auto\",\"flex:1 1 auto\",\"padding:1rem\"]],[false,{\".modal-footer\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:end\",\"justify-content:flex-end\",\"padding:1rem\",\"border-top:1px solid #e9ecef\"]],[false,{\".modal-footer>:not(:first-child)\":false},[\"margin-left:.25rem\"]],[false,{\".modal-footer>:not(:last-child)\":false},[\"margin-right:.25rem\"]],[false,{\".modal-scrollbar-measure\":false},[\"position:absolute\",\"top:-9999px\",\"width:50px\",\"height:50px\",\"overflow:scroll\"]],[false,\"@media (min-width:576px){\"],[false,{\".modal-dialog\":false},[\"max-width:500px\",\"margin:1.75rem auto\"]],[false,{\".modal-dialog-centered\":false},[\"min-height:calc(100% - ( 1.75rem * 2 ))\"]],[false,{\".modal-dialog-centered::before\":false},[\"height:calc(100vh - ( 1.75rem * 2 ))\"]],[false,{\".modal-sm\":false},[\"max-width:300px\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".modal-lg\":false},[\"max-width:800px\"]],[false,\"}\"],[false,{\".tooltip\":false},[\"position:absolute\",\"z-index:1070\",\"display:block\",\"margin:0\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"font-style:normal\",\"font-weight:400\",\"line-height:1.5\",\"text-align:left\",\"text-align:start\",\"text-decoration:none\",\"text-shadow:none\",\"text-transform:none\",\"letter-spacing:normal\",\"word-break:normal\",\"word-spacing:normal\",\"white-space:normal\",\"line-break:auto\",\"font-size:.875rem\",\"word-wrap:break-word\",\"opacity:0\"]],[false,{\".tooltip.show\":false},[\"opacity:.9\"]],[false,{\".tooltip .arrow\":false},[\"position:absolute\",\"display:block\",\"width:.8rem\",\"height:.4rem\"]],[false,{\".tooltip .arrow::before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"border-color:transparent\",\"border-style:solid\"]],[false,{\".bs-tooltip-auto[x-placement^=top]\":false,\".bs-tooltip-top\":false},[\"padding:.4rem 0\"]],[false,{\".bs-tooltip-auto[x-placement^=top] .arrow\":false,\".bs-tooltip-top .arrow\":false},[\"bottom:0\"]],[false,{\".bs-tooltip-auto[x-placement^=top] .arrow::before\":false,\".bs-tooltip-top .arrow::before\":false},[\"top:0\",\"border-width:.4rem .4rem 0\",\"border-top-color:#000\"]],[false,{\".bs-tooltip-auto[x-placement^=right]\":false,\".bs-tooltip-right\":false},[\"padding:0 .4rem\"]],[false,{\".bs-tooltip-auto[x-placement^=right] .arrow\":false,\".bs-tooltip-right .arrow\":false},[\"left:0\",\"width:.4rem\",\"height:.8rem\"]],[false,{\".bs-tooltip-auto[x-placement^=right] .arrow::before\":false,\".bs-tooltip-right .arrow::before\":false},[\"right:0\",\"border-width:.4rem .4rem .4rem 0\",\"border-right-color:#000\"]],[false,{\".bs-tooltip-auto[x-placement^=bottom]\":false,\".bs-tooltip-bottom\":false},[\"padding:.4rem 0\"]],[false,{\".bs-tooltip-auto[x-placement^=bottom] .arrow\":false,\".bs-tooltip-bottom .arrow\":false},[\"top:0\"]],[false,{\".bs-tooltip-auto[x-placement^=bottom] .arrow::before\":false,\".bs-tooltip-bottom .arrow::before\":false},[\"bottom:0\",\"border-width:0 .4rem .4rem\",\"border-bottom-color:#000\"]],[false,{\".bs-tooltip-auto[x-placement^=left]\":false,\".bs-tooltip-left\":false},[\"padding:0 .4rem\"]],[false,{\".bs-tooltip-auto[x-placement^=left] .arrow\":false,\".bs-tooltip-left .arrow\":false},[\"right:0\",\"width:.4rem\",\"height:.8rem\"]],[false,{\".bs-tooltip-auto[x-placement^=left] .arrow::before\":false,\".bs-tooltip-left .arrow::before\":false},[\"left:0\",\"border-width:.4rem 0 .4rem .4rem\",\"border-left-color:#000\"]],[false,{\".tooltip-inner\":false},[\"max-width:200px\",\"padding:.25rem .5rem\",\"color:#fff\",\"text-align:center\",\"background-color:#000\",\"border-radius:.25rem\"]],[false,{\".popover\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"z-index:1060\",\"display:block\",\"max-width:276px\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,\\\"Helvetica Neue\\\",Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\",\\\"Segoe UI Symbol\\\",\\\"Noto Color Emoji\\\"\",\"font-style:normal\",\"font-weight:400\",\"line-height:1.5\",\"text-align:left\",\"text-align:start\",\"text-decoration:none\",\"text-shadow:none\",\"text-transform:none\",\"letter-spacing:normal\",\"word-break:normal\",\"word-spacing:normal\",\"white-space:normal\",\"line-break:auto\",\"font-size:.875rem\",\"word-wrap:break-word\",\"background-color:#fff\",\"background-clip:padding-box\",\"border:1px solid rgba(0,0,0,.2)\",\"border-radius:.3rem\"]],[false,{\".popover .arrow\":false},[\"position:absolute\",\"display:block\",\"width:1rem\",\"height:.5rem\",\"margin:0 .3rem\"]],[false,{\".popover .arrow::after\":false,\".popover .arrow::before\":false},[\"position:absolute\",\"display:block\",\"content:\\\"\\\"\",\"border-color:transparent\",\"border-style:solid\"]],[false,{\".bs-popover-auto[x-placement^=top]\":false,\".bs-popover-top\":false},[\"margin-bottom:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow\":false,\".bs-popover-top .arrow\":false},[\"bottom:calc(( .5rem + 1px ) * -1)\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow::after\":false,\".bs-popover-auto[x-placement^=top] .arrow::before\":false,\".bs-popover-top .arrow::after\":false,\".bs-popover-top .arrow::before\":false},[\"border-width:.5rem .5rem 0\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow::before\":false,\".bs-popover-top .arrow::before\":false},[\"bottom:0\",\"border-top-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=top] .arrow::after\":false,\".bs-popover-top .arrow::after\":false},[\"bottom:1px\",\"border-top-color:#fff\"]],[false,{\".bs-popover-auto[x-placement^=right]\":false,\".bs-popover-right\":false},[\"margin-left:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow\":false,\".bs-popover-right .arrow\":false},[\"left:calc(( .5rem + 1px ) * -1)\",\"width:.5rem\",\"height:1rem\",\"margin:.3rem 0\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow::after\":false,\".bs-popover-auto[x-placement^=right] .arrow::before\":false,\".bs-popover-right .arrow::after\":false,\".bs-popover-right .arrow::before\":false},[\"border-width:.5rem .5rem .5rem 0\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow::before\":false,\".bs-popover-right .arrow::before\":false},[\"left:0\",\"border-right-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=right] .arrow::after\":false,\".bs-popover-right .arrow::after\":false},[\"left:1px\",\"border-right-color:#fff\"]],[false,{\".bs-popover-auto[x-placement^=bottom]\":false,\".bs-popover-bottom\":false},[\"margin-top:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow\":false,\".bs-popover-bottom .arrow\":false},[\"top:calc(( .5rem + 1px ) * -1)\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow::after\":false,\".bs-popover-auto[x-placement^=bottom] .arrow::before\":false,\".bs-popover-bottom .arrow::after\":false,\".bs-popover-bottom .arrow::before\":false},[\"border-width:0 .5rem .5rem .5rem\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow::before\":false,\".bs-popover-bottom .arrow::before\":false},[\"top:0\",\"border-bottom-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .arrow::after\":false,\".bs-popover-bottom .arrow::after\":false},[\"top:1px\",\"border-bottom-color:#fff\"]],[false,{\".bs-popover-auto[x-placement^=bottom] .popover-header::before\":false,\".bs-popover-bottom .popover-header::before\":false},[\"position:absolute\",\"top:0\",\"left:50%\",\"display:block\",\"width:1rem\",\"margin-left:-.5rem\",\"content:\\\"\\\"\",\"border-bottom:1px solid #f7f7f7\"]],[false,{\".bs-popover-auto[x-placement^=left]\":false,\".bs-popover-left\":false},[\"margin-right:.5rem\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow\":false,\".bs-popover-left .arrow\":false},[\"right:calc(( .5rem + 1px ) * -1)\",\"width:.5rem\",\"height:1rem\",\"margin:.3rem 0\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow::after\":false,\".bs-popover-auto[x-placement^=left] .arrow::before\":false,\".bs-popover-left .arrow::after\":false,\".bs-popover-left .arrow::before\":false},[\"border-width:.5rem 0 .5rem .5rem\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow::before\":false,\".bs-popover-left .arrow::before\":false},[\"right:0\",\"border-left-color:rgba(0,0,0,.25)\"]],[false,{\".bs-popover-auto[x-placement^=left] .arrow::after\":false,\".bs-popover-left .arrow::after\":false},[\"right:1px\",\"border-left-color:#fff\"]],[false,{\".popover-header\":false},[\"padding:.5rem .75rem\",\"margin-bottom:0\",\"font-size:1rem\",\"color:inherit\",\"background-color:#f7f7f7\",\"border-bottom:1px solid #ebebeb\",\"border-top-left-radius:calc(.3rem - 1px)\",\"border-top-right-radius:calc(.3rem - 1px)\"]],[false,{\".popover-header:empty\":false},[\"display:none\"]],[false,{\".popover-body\":false},[\"padding:.5rem .75rem\",\"color:#212529\"]],[false,{\".carousel\":false},[\"position:relative\"]],[false,{\".carousel-inner\":false},[\"position:relative\",\"width:100%\",\"overflow:hidden\"]],[false,{\".carousel-item\":false},[\"position:relative\",\"display:none\",\"-ms-flex-align:center\",\"align-items:center\",\"width:100%\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"-webkit-perspective:1000px\",\"perspective:1000px\"]],[false,{\".carousel-item-next\":false,\".carousel-item-prev\":false,\".carousel-item.active\":false},[\"display:block\",\"transition:-webkit-transform .6s ease\",\"transition:transform .6s ease\",\"transition:transform .6s ease,-webkit-transform .6s ease\"]],[false,\"@media screen and (prefers-reduced-motion:reduce){\"],[false,{\".carousel-item-next\":false,\".carousel-item-prev\":false,\".carousel-item.active\":false},[\"transition:none\"]],[false,\"}\"],[false,{\".carousel-item-next\":false,\".carousel-item-prev\":false},[\"position:absolute\",\"top:0\"]],[false,{\".carousel-item-next.carousel-item-left\":false,\".carousel-item-prev.carousel-item-right\":false},[\"-webkit-transform:translateX(0)\",\"transform:translateX(0)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".carousel-item-next.carousel-item-left\":false,\".carousel-item-prev.carousel-item-right\":false},[\"-webkit-transform:translate3d(0,0,0)\",\"transform:translate3d(0,0,0)\"]],[false,\"}\"],[false,{\".active.carousel-item-right\":false,\".carousel-item-next\":false},[\"-webkit-transform:translateX(100%)\",\"transform:translateX(100%)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".active.carousel-item-right\":false,\".carousel-item-next\":false},[\"-webkit-transform:translate3d(100%,0,0)\",\"transform:translate3d(100%,0,0)\"]],[false,\"}\"],[false,{\".active.carousel-item-left\":false,\".carousel-item-prev\":false},[\"-webkit-transform:translateX(-100%)\",\"transform:translateX(-100%)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".active.carousel-item-left\":false,\".carousel-item-prev\":false},[\"-webkit-transform:translate3d(-100%,0,0)\",\"transform:translate3d(-100%,0,0)\"]],[false,\"}\"],[false,{\".carousel-fade .carousel-item\":false},[\"opacity:0\",\"transition-duration:.6s\",\"transition-property:opacity\"]],[false,{\".carousel-fade .carousel-item-next.carousel-item-left\":false,\".carousel-fade .carousel-item-prev.carousel-item-right\":false,\".carousel-fade .carousel-item.active\":false},[\"opacity:1\"]],[false,{\".carousel-fade .active.carousel-item-left\":false,\".carousel-fade .active.carousel-item-right\":false},[\"opacity:0\"]],[false,{\".carousel-fade .active.carousel-item-left\":false,\".carousel-fade .active.carousel-item-prev\":false,\".carousel-fade .carousel-item-next\":false,\".carousel-fade .carousel-item-prev\":false,\".carousel-fade .carousel-item.active\":false},[\"-webkit-transform:translateX(0)\",\"transform:translateX(0)\"]],[false,\"@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)){\"],[false,{\".carousel-fade .active.carousel-item-left\":false,\".carousel-fade .active.carousel-item-prev\":false,\".carousel-fade .carousel-item-next\":false,\".carousel-fade .carousel-item-prev\":false,\".carousel-fade .carousel-item.active\":false},[\"-webkit-transform:translate3d(0,0,0)\",\"transform:translate3d(0,0,0)\"]],[false,\"}\"],[false,{\".carousel-control-next\":false,\".carousel-control-prev\":false},[\"position:absolute\",\"top:0\",\"bottom:0\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"width:15%\",\"color:#fff\",\"text-align:center\",\"opacity:.5\"]],[false,{\".carousel-control-next:focus\":false,\".carousel-control-next:hover\":false,\".carousel-control-prev:focus\":false,\".carousel-control-prev:hover\":false},[\"color:#fff\",\"text-decoration:none\",\"outline:0\",\"opacity:.9\"]],[false,{\".carousel-control-prev\":false},[\"left:0\"]],[false,{\".carousel-control-next\":false},[\"right:0\"]],[false,{\".carousel-control-next-icon\":false,\".carousel-control-prev-icon\":false},[\"display:inline-block\",\"width:20px\",\"height:20px\",\"background:transparent no-repeat center center\",\"background-size:100% 100%\"]],[false,{\".carousel-control-prev-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' fill=\\\\\'%23fff\\\\\' viewBox=\\\\\'0 0 8 8\\\\\'%3E%3Cpath d=\\\\\'M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".carousel-control-next-icon\":false},[\"background-image:url(\\\"data:image\\/svg+xml;charset=utf8,%3Csvg xmlns=\\\\\'http:\\/\\/www.w3.org\\/2000\\/svg\\\\\' fill=\\\\\'%23fff\\\\\' viewBox=\\\\\'0 0 8 8\\\\\'%3E%3Cpath d=\\\\\'M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z\\\\\'\\/%3E%3C\\/svg%3E\\\")\"]],[false,{\".carousel-indicators\":false},[\"position:absolute\",\"right:0\",\"bottom:10px\",\"left:0\",\"z-index:15\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-pack:center\",\"justify-content:center\",\"padding-left:0\",\"margin-right:15%\",\"margin-left:15%\",\"list-style:none\"]],[false,{\".carousel-indicators li\":false},[\"position:relative\",\"-ms-flex:0 1 auto\",\"flex:0 1 auto\",\"width:30px\",\"height:3px\",\"margin-right:3px\",\"margin-left:3px\",\"text-indent:-999px\",\"cursor:pointer\",\"background-color:rgba(255,255,255,.5)\"]],[false,{\".carousel-indicators li::before\":false},[\"position:absolute\",\"top:-10px\",\"left:0\",\"display:inline-block\",\"width:100%\",\"height:10px\",\"content:\\\"\\\"\"]],[false,{\".carousel-indicators li::after\":false},[\"position:absolute\",\"bottom:-10px\",\"left:0\",\"display:inline-block\",\"width:100%\",\"height:10px\",\"content:\\\"\\\"\"]],[false,{\".carousel-indicators .active\":false},[\"background-color:#fff\"]],[false,{\".carousel-caption\":false},[\"position:absolute\",\"right:15%\",\"bottom:20px\",\"left:15%\",\"z-index:10\",\"padding-top:20px\",\"padding-bottom:20px\",\"color:#fff\",\"text-align:center\"]],[false,{\".align-baseline:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:baseline\"]],[false,{\".align-top:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:top\"]],[false,{\".align-middle:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:middle\"]],[false,{\".align-bottom:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:bottom\"]],[false,{\".align-text-bottom:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:text-bottom\"]],[false,{\".align-text-top:not(#_#_#_#_#_#_#_)\":false},[\"vertical-align:text-top\"]],[false,{\".bg-primary:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#007bff\"]],[false,{\"a.bg-primary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-primary:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-primary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-primary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#0062cc\"]],[false,{\".bg-secondary:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#6c757d\"]],[false,{\"a.bg-secondary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-secondary:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-secondary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-secondary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#545b62\"]],[false,{\".bg-success:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#28a745\"]],[false,{\"a.bg-success:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-success:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-success:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-success:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#1e7e34\"]],[false,{\".bg-info:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#17a2b8\"]],[false,{\"a.bg-info:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-info:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-info:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-info:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#117a8b\"]],[false,{\".bg-warning:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#ffc107\"]],[false,{\"a.bg-warning:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-warning:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-warning:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-warning:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#d39e00\"]],[false,{\".bg-danger:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#dc3545\"]],[false,{\"a.bg-danger:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-danger:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-danger:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-danger:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#bd2130\"]],[true,{\".bg-light:not(#_#_#_#_#_#_#_)\":true},[\"background-color:#f8f9fa\"]],[true,{\"a.bg-light:focus:not(#_#_#_#_#_#_#_#_)\":true,\"a.bg-light:hover:not(#_#_#_#_#_#_#_#_)\":true,\"button.bg-light:focus:not(#_#_#_#_#_#_#_#_)\":true,\"button.bg-light:hover:not(#_#_#_#_#_#_#_#_)\":true},[\"background-color:#dae0e5\"]],[false,{\".bg-dark:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#343a40\"]],[false,{\"a.bg-dark:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.bg-dark:hover:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-dark:focus:not(#_#_#_#_#_#_#_#_)\":false,\"button.bg-dark:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#1d2124\"]],[false,{\".bg-white:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#fff\"]],[false,{\".bg-transparent:not(#_#_#_#_#_#_#_)\":false},[\"background-color:transparent\"]],[false,{\".border:not(#_#_#_#_#_#_#_)\":false},[\"border:1px solid #dee2e6\"]],[false,{\".border-top:not(#_#_#_#_#_#_#_)\":false},[\"border-top:1px solid #dee2e6\"]],[false,{\".border-right:not(#_#_#_#_#_#_#_)\":false},[\"border-right:1px solid #dee2e6\"]],[false,{\".border-bottom:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom:1px solid #dee2e6\"]],[false,{\".border-left:not(#_#_#_#_#_#_#_)\":false},[\"border-left:1px solid #dee2e6\"]],[false,{\".border-0:not(#_#_#_#_#_#_#_)\":false},[\"border:0\"]],[false,{\".border-top-0:not(#_#_#_#_#_#_#_)\":false},[\"border-top:0\"]],[false,{\".border-right-0:not(#_#_#_#_#_#_#_)\":false},[\"border-right:0\"]],[false,{\".border-bottom-0:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom:0\"]],[false,{\".border-left-0:not(#_#_#_#_#_#_#_)\":false},[\"border-left:0\"]],[false,{\".border-primary:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#007bff\"]],[false,{\".border-secondary:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#6c757d\"]],[false,{\".border-success:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#28a745\"]],[false,{\".border-info:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#17a2b8\"]],[false,{\".border-warning:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#ffc107\"]],[false,{\".border-danger:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#dc3545\"]],[false,{\".border-light:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#f8f9fa\"]],[false,{\".border-dark:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#343a40\"]],[false,{\".border-white:not(#_#_#_#_#_#_#_)\":false},[\"border-color:#fff\"]],[false,{\".rounded:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:.25rem\"]],[false,{\".rounded-top:not(#_#_#_#_#_#_#_)\":false},[\"border-top-left-radius:.25rem\",\"border-top-right-radius:.25rem\"]],[false,{\".rounded-right:not(#_#_#_#_#_#_#_)\":false},[\"border-top-right-radius:.25rem\",\"border-bottom-right-radius:.25rem\"]],[false,{\".rounded-bottom:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom-right-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".rounded-left:not(#_#_#_#_#_#_#_)\":false},[\"border-top-left-radius:.25rem\",\"border-bottom-left-radius:.25rem\"]],[false,{\".rounded-circle:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:50%\"]],[false,{\".rounded-0:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[false,{\".clearfix::after\":false},[\"display:block\",\"clear:both\",\"content:\\\"\\\"\"]],[false,{\".d-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"@media (min-width:576px){\"],[false,{\".d-sm-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-sm-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-sm-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-sm-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-sm-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-sm-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-sm-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-sm-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-sm-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".d-md-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-md-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-md-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-md-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-md-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-md-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-md-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-md-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-md-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".d-lg-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-lg-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-lg-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-lg-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-lg-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-lg-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-lg-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-lg-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-lg-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".d-xl-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-xl-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-xl-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-xl-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-xl-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-xl-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-xl-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-xl-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-xl-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,\"@media print{\"],[false,{\".d-print-none:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".d-print-inline:not(#_#_#_#_#_#_#_)\":false},[\"display:inline\"]],[false,{\".d-print-inline-block:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".d-print-block:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".d-print-table:not(#_#_#_#_#_#_#_)\":false},[\"display:table\"]],[false,{\".d-print-table-row:not(#_#_#_#_#_#_#_)\":false},[\"display:table-row\"]],[false,{\".d-print-table-cell:not(#_#_#_#_#_#_#_)\":false},[\"display:table-cell\"]],[false,{\".d-print-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".d-print-inline-flex:not(#_#_#_#_#_#_#_)\":false},[\"display:-ms-inline-flexbox\",\"display:inline-flex\"]],[false,\"}\"],[false,{\".embed-responsive\":false},[\"position:relative\",\"display:block\",\"width:100%\",\"padding:0\",\"overflow:hidden\"]],[false,{\".embed-responsive::before\":false},[\"display:block\",\"content:\\\"\\\"\"]],[false,{\".embed-responsive .embed-responsive-item\":false,\".embed-responsive embed\":false,\".embed-responsive amp-iframe\":false,\".embed-responsive amp-google-document-embed\":false,\".embed-responsive amp-video\":false,\".embed-responsive amp-youtube\":false},[\"position:absolute\",\"top:0\",\"bottom:0\",\"left:0\",\"width:100%\",\"height:100%\",\"border:0\"]],[false,{\".embed-responsive-21by9::before\":false},[\"padding-top:42.857143%\"]],[false,{\".embed-responsive-16by9::before\":false},[\"padding-top:56.25%\"]],[false,{\".embed-responsive-4by3::before\":false},[\"padding-top:75%\"]],[false,{\".embed-responsive-1by1::before\":false},[\"padding-top:100%\"]],[false,{\".flex-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[true,{\".align-items-center:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[true,{\".align-self-end:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[true,{\".align-self-center:not(#_#_#_#_#_#_#_)\":true},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"@media (min-width:576px){\"],[false,{\".flex-sm-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-sm-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-sm-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-sm-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-sm-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-sm-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-sm-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-sm-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-sm-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-sm-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-sm-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-sm-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-sm-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-sm-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-sm-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-sm-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-sm-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-sm-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-sm-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-sm-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-sm-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-sm-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-sm-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".flex-md-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-md-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-md-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-md-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-md-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-md-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-md-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-md-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-md-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-md-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-md-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-md-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-md-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-md-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-md-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-md-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-md-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-md-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-md-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-md-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-md-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-md-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-md-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-md-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".flex-lg-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-lg-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-lg-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-lg-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-lg-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-lg-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-lg-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-lg-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-lg-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-lg-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-lg-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-lg-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-lg-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-lg-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-lg-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-lg-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-lg-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-lg-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-lg-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-lg-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-lg-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-lg-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-lg-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".flex-xl-row:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row\",\"flex-direction:row\"]],[false,{\".flex-xl-column:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column\",\"flex-direction:column\"]],[false,{\".flex-xl-row-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:row-reverse\",\"flex-direction:row-reverse\"]],[false,{\".flex-xl-column-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\"]],[false,{\".flex-xl-wrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".flex-xl-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:nowrap\",\"flex-wrap:nowrap\"]],[false,{\".flex-xl-wrap-reverse:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-wrap:wrap-reverse\",\"flex-wrap:wrap-reverse\"]],[false,{\".flex-xl-fill:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex:1 1 auto\",\"flex:1 1 auto\"]],[false,{\".flex-xl-grow-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:0\",\"flex-grow:0\"]],[false,{\".flex-xl-grow-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-positive:1\",\"flex-grow:1\"]],[false,{\".flex-xl-shrink-0:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:0\",\"flex-shrink:0\"]],[false,{\".flex-xl-shrink-1:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-negative:1\",\"flex-shrink:1\"]],[false,{\".justify-content-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:start\",\"justify-content:flex-start\"]],[false,{\".justify-content-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:end\",\"justify-content:flex-end\"]],[false,{\".justify-content-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:center\",\"justify-content:center\"]],[false,{\".justify-content-xl-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".justify-content-xl-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-pack:distribute\",\"justify-content:space-around\"]],[false,{\".align-items-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:start\",\"align-items:flex-start\"]],[false,{\".align-items-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:end\",\"align-items:flex-end\"]],[false,{\".align-items-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".align-items-xl-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:baseline\",\"align-items:baseline\"]],[false,{\".align-items-xl-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-align:stretch\",\"align-items:stretch\"]],[false,{\".align-content-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:start\",\"align-content:flex-start\"]],[false,{\".align-content-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:end\",\"align-content:flex-end\"]],[false,{\".align-content-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:center\",\"align-content:center\"]],[false,{\".align-content-xl-between:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:justify\",\"align-content:space-between\"]],[false,{\".align-content-xl-around:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:distribute\",\"align-content:space-around\"]],[false,{\".align-content-xl-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-line-pack:stretch\",\"align-content:stretch\"]],[false,{\".align-self-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:auto\",\"align-self:auto\"]],[false,{\".align-self-xl-start:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:start\",\"align-self:flex-start\"]],[false,{\".align-self-xl-end:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:end\",\"align-self:flex-end\"]],[false,{\".align-self-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:center\",\"align-self:center\"]],[false,{\".align-self-xl-baseline:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:baseline\",\"align-self:baseline\"]],[false,{\".align-self-xl-stretch:not(#_#_#_#_#_#_#_)\":false},[\"-ms-flex-item-align:stretch\",\"align-self:stretch\"]],[false,\"}\"],[false,{\".float-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"@media (min-width:576px){\"],[false,{\".float-sm-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-sm-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-sm-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".float-md-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-md-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-md-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".float-lg-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-lg-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-lg-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".float-xl-left:not(#_#_#_#_#_#_#_)\":false},[\"float:left\"]],[false,{\".float-xl-right:not(#_#_#_#_#_#_#_)\":false},[\"float:right\"]],[false,{\".float-xl-none:not(#_#_#_#_#_#_#_)\":false},[\"float:none\"]],[false,\"}\"],[false,{\".position-static:not(#_#_#_#_#_#_#_)\":false},[\"position:static\"]],[false,{\".position-relative:not(#_#_#_#_#_#_#_)\":false},[\"position:relative\"]],[false,{\".position-absolute:not(#_#_#_#_#_#_#_)\":false},[\"position:absolute\"]],[false,{\".position-fixed:not(#_#_#_#_#_#_#_)\":false},[\"position:fixed\"]],[false,{\".position-sticky:not(#_#_#_#_#_#_#_)\":false},[\"position:-webkit-sticky\",\"position:sticky\"]],[false,{\".fixed-top\":false},[\"position:fixed\",\"top:0\",\"right:0\",\"left:0\",\"z-index:1030\"]],[false,{\".fixed-bottom\":false},[\"position:fixed\",\"right:0\",\"bottom:0\",\"left:0\",\"z-index:1030\"]],[false,\"@supports ((position:-webkit-sticky) or (position:sticky)){\"],[false,{\".sticky-top\":false},[\"position:-webkit-sticky\",\"position:sticky\",\"top:0\",\"z-index:1020\"]],[false,\"}\"],[false,{\".sr-only\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"white-space:nowrap\",\"border:0\"]],[false,{\".sr-only-focusable:active\":false,\".sr-only-focusable:focus\":false},[\"position:static\",\"width:auto\",\"height:auto\",\"overflow:visible\",\"clip:auto\",\"white-space:normal\"]],[false,{\".shadow-sm:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:0 .125rem .25rem rgba(0,0,0,.075)\"]],[false,{\".shadow:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:0 .5rem 1rem rgba(0,0,0,.15)\"]],[false,{\".shadow-lg:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:0 1rem 3rem rgba(0,0,0,.175)\"]],[false,{\".shadow-none:not(#_#_#_#_#_#_#_)\":false},[\"box-shadow:none\"]],[false,{\".w-25:not(#_#_#_#_#_#_#_)\":false},[\"width:25%\"]],[false,{\".w-50:not(#_#_#_#_#_#_#_)\":false},[\"width:50%\"]],[false,{\".w-75:not(#_#_#_#_#_#_#_)\":false},[\"width:75%\"]],[false,{\".w-100:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".w-auto:not(#_#_#_#_#_#_#_)\":false},[\"width:auto\"]],[false,{\".h-25:not(#_#_#_#_#_#_#_)\":false},[\"height:25%\"]],[false,{\".h-50:not(#_#_#_#_#_#_#_)\":false},[\"height:50%\"]],[false,{\".h-75:not(#_#_#_#_#_#_#_)\":false},[\"height:75%\"]],[false,{\".h-100:not(#_#_#_#_#_#_#_)\":false},[\"height:100%\"]],[false,{\".h-auto:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[false,{\".mw-100:not(#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".mh-100:not(#_#_#_#_#_#_#_)\":false},[\"max-height:100%\"]],[false,{\".m-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-0:not(#_#_#_#_#_#_#_)\":false,\".my-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-0:not(#_#_#_#_#_#_#_)\":false,\".mx-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-0:not(#_#_#_#_#_#_#_)\":false,\".my-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-0:not(#_#_#_#_#_#_#_)\":false,\".mx-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-1:not(#_#_#_#_#_#_#_)\":false,\".my-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-1:not(#_#_#_#_#_#_#_)\":false,\".mx-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-1:not(#_#_#_#_#_#_#_)\":false,\".my-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-1:not(#_#_#_#_#_#_#_)\":false,\".mx-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-2:not(#_#_#_#_#_#_#_)\":false,\".my-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-2:not(#_#_#_#_#_#_#_)\":false,\".mx-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-2:not(#_#_#_#_#_#_#_)\":false,\".my-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[true,{\".ml-2:not(#_#_#_#_#_#_#_)\":true,\".mx-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-3:not(#_#_#_#_#_#_#_)\":false,\".my-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-3:not(#_#_#_#_#_#_#_)\":false,\".mx-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-3:not(#_#_#_#_#_#_#_)\":false,\".my-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-3:not(#_#_#_#_#_#_#_)\":false,\".mx-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-4:not(#_#_#_#_#_#_#_)\":false,\".my-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-4:not(#_#_#_#_#_#_#_)\":false,\".mx-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-4:not(#_#_#_#_#_#_#_)\":false,\".my-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-4:not(#_#_#_#_#_#_#_)\":false,\".mx-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-5:not(#_#_#_#_#_#_#_)\":false,\".my-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-5:not(#_#_#_#_#_#_#_)\":false,\".mx-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-5:not(#_#_#_#_#_#_#_)\":false,\".my-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-5:not(#_#_#_#_#_#_#_)\":false,\".mx-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-0:not(#_#_#_#_#_#_#_)\":false,\".py-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-0:not(#_#_#_#_#_#_#_)\":false,\".px-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-0:not(#_#_#_#_#_#_#_)\":false,\".py-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-0:not(#_#_#_#_#_#_#_)\":false,\".px-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-1:not(#_#_#_#_#_#_#_)\":false,\".py-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-1:not(#_#_#_#_#_#_#_)\":false,\".px-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-1:not(#_#_#_#_#_#_#_)\":false,\".py-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-1:not(#_#_#_#_#_#_#_)\":false,\".px-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-2:not(#_#_#_#_#_#_#_)\":false,\".py-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-2:not(#_#_#_#_#_#_#_)\":false,\".px-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-2:not(#_#_#_#_#_#_#_)\":false,\".py-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-2:not(#_#_#_#_#_#_#_)\":false,\".px-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-3:not(#_#_#_#_#_#_#_)\":false,\".py-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-3:not(#_#_#_#_#_#_#_)\":false,\".px-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-3:not(#_#_#_#_#_#_#_)\":false,\".py-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-3:not(#_#_#_#_#_#_#_)\":false,\".px-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-4:not(#_#_#_#_#_#_#_)\":false,\".py-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-4:not(#_#_#_#_#_#_#_)\":false,\".px-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-4:not(#_#_#_#_#_#_#_)\":false,\".py-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-4:not(#_#_#_#_#_#_#_)\":false,\".px-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-5:not(#_#_#_#_#_#_#_)\":false,\".py-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-5:not(#_#_#_#_#_#_#_)\":false,\".px-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-5:not(#_#_#_#_#_#_#_)\":false,\".py-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-5:not(#_#_#_#_#_#_#_)\":false,\".px-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-auto:not(#_#_#_#_#_#_#_)\":false,\".my-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[true,{\".mr-auto:not(#_#_#_#_#_#_#_)\":true,\".mx-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-auto:not(#_#_#_#_#_#_#_)\":false,\".my-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"@media (min-width:576px){\"],[false,{\".m-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-sm-0:not(#_#_#_#_#_#_#_)\":false,\".my-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-sm-0:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-sm-0:not(#_#_#_#_#_#_#_)\":false,\".my-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-sm-0:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-sm-1:not(#_#_#_#_#_#_#_)\":false,\".my-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-sm-1:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-sm-1:not(#_#_#_#_#_#_#_)\":false,\".my-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-sm-1:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-sm-2:not(#_#_#_#_#_#_#_)\":false,\".my-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-sm-2:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-sm-2:not(#_#_#_#_#_#_#_)\":false,\".my-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-sm-2:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-sm-3:not(#_#_#_#_#_#_#_)\":false,\".my-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-sm-3:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-sm-3:not(#_#_#_#_#_#_#_)\":false,\".my-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-sm-3:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-sm-4:not(#_#_#_#_#_#_#_)\":false,\".my-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-sm-4:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-sm-4:not(#_#_#_#_#_#_#_)\":false,\".my-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-sm-4:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-sm-5:not(#_#_#_#_#_#_#_)\":false,\".my-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-sm-5:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-sm-5:not(#_#_#_#_#_#_#_)\":false,\".my-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-sm-5:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-sm-0:not(#_#_#_#_#_#_#_)\":false,\".py-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-sm-0:not(#_#_#_#_#_#_#_)\":false,\".px-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-sm-0:not(#_#_#_#_#_#_#_)\":false,\".py-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-sm-0:not(#_#_#_#_#_#_#_)\":false,\".px-sm-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-sm-1:not(#_#_#_#_#_#_#_)\":false,\".py-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-sm-1:not(#_#_#_#_#_#_#_)\":false,\".px-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-sm-1:not(#_#_#_#_#_#_#_)\":false,\".py-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-sm-1:not(#_#_#_#_#_#_#_)\":false,\".px-sm-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-sm-2:not(#_#_#_#_#_#_#_)\":false,\".py-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-sm-2:not(#_#_#_#_#_#_#_)\":false,\".px-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-sm-2:not(#_#_#_#_#_#_#_)\":false,\".py-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-sm-2:not(#_#_#_#_#_#_#_)\":false,\".px-sm-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-sm-3:not(#_#_#_#_#_#_#_)\":false,\".py-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-sm-3:not(#_#_#_#_#_#_#_)\":false,\".px-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-sm-3:not(#_#_#_#_#_#_#_)\":false,\".py-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-sm-3:not(#_#_#_#_#_#_#_)\":false,\".px-sm-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-sm-4:not(#_#_#_#_#_#_#_)\":false,\".py-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-sm-4:not(#_#_#_#_#_#_#_)\":false,\".px-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-sm-4:not(#_#_#_#_#_#_#_)\":false,\".py-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-sm-4:not(#_#_#_#_#_#_#_)\":false,\".px-sm-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-sm-5:not(#_#_#_#_#_#_#_)\":false,\".py-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-sm-5:not(#_#_#_#_#_#_#_)\":false,\".px-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-sm-5:not(#_#_#_#_#_#_#_)\":false,\".py-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-sm-5:not(#_#_#_#_#_#_#_)\":false,\".px-sm-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".my-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".my-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-sm-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-sm-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".m-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-md-0:not(#_#_#_#_#_#_#_)\":false,\".my-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-md-0:not(#_#_#_#_#_#_#_)\":false,\".mx-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-md-0:not(#_#_#_#_#_#_#_)\":false,\".my-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-md-0:not(#_#_#_#_#_#_#_)\":false,\".mx-md-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-md-1:not(#_#_#_#_#_#_#_)\":false,\".my-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-md-1:not(#_#_#_#_#_#_#_)\":false,\".mx-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-md-1:not(#_#_#_#_#_#_#_)\":false,\".my-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-md-1:not(#_#_#_#_#_#_#_)\":false,\".mx-md-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-md-2:not(#_#_#_#_#_#_#_)\":false,\".my-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-md-2:not(#_#_#_#_#_#_#_)\":false,\".mx-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-md-2:not(#_#_#_#_#_#_#_)\":false,\".my-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-md-2:not(#_#_#_#_#_#_#_)\":false,\".mx-md-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-md-3:not(#_#_#_#_#_#_#_)\":false,\".my-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-md-3:not(#_#_#_#_#_#_#_)\":false,\".mx-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-md-3:not(#_#_#_#_#_#_#_)\":false,\".my-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-md-3:not(#_#_#_#_#_#_#_)\":false,\".mx-md-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-md-4:not(#_#_#_#_#_#_#_)\":false,\".my-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-md-4:not(#_#_#_#_#_#_#_)\":false,\".mx-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-md-4:not(#_#_#_#_#_#_#_)\":false,\".my-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-md-4:not(#_#_#_#_#_#_#_)\":false,\".mx-md-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-md-5:not(#_#_#_#_#_#_#_)\":false,\".my-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-md-5:not(#_#_#_#_#_#_#_)\":false,\".mx-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-md-5:not(#_#_#_#_#_#_#_)\":false,\".my-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-md-5:not(#_#_#_#_#_#_#_)\":false,\".mx-md-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-md-0:not(#_#_#_#_#_#_#_)\":false,\".py-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-md-0:not(#_#_#_#_#_#_#_)\":false,\".px-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-md-0:not(#_#_#_#_#_#_#_)\":false,\".py-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-md-0:not(#_#_#_#_#_#_#_)\":false,\".px-md-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-md-1:not(#_#_#_#_#_#_#_)\":false,\".py-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-md-1:not(#_#_#_#_#_#_#_)\":false,\".px-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-md-1:not(#_#_#_#_#_#_#_)\":false,\".py-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-md-1:not(#_#_#_#_#_#_#_)\":false,\".px-md-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-md-2:not(#_#_#_#_#_#_#_)\":false,\".py-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-md-2:not(#_#_#_#_#_#_#_)\":false,\".px-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-md-2:not(#_#_#_#_#_#_#_)\":false,\".py-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-md-2:not(#_#_#_#_#_#_#_)\":false,\".px-md-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-md-3:not(#_#_#_#_#_#_#_)\":false,\".py-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-md-3:not(#_#_#_#_#_#_#_)\":false,\".px-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-md-3:not(#_#_#_#_#_#_#_)\":false,\".py-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-md-3:not(#_#_#_#_#_#_#_)\":false,\".px-md-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-md-4:not(#_#_#_#_#_#_#_)\":false,\".py-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-md-4:not(#_#_#_#_#_#_#_)\":false,\".px-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-md-4:not(#_#_#_#_#_#_#_)\":false,\".py-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-md-4:not(#_#_#_#_#_#_#_)\":false,\".px-md-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-md-5:not(#_#_#_#_#_#_#_)\":false,\".py-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-md-5:not(#_#_#_#_#_#_#_)\":false,\".px-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-md-5:not(#_#_#_#_#_#_#_)\":false,\".py-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-md-5:not(#_#_#_#_#_#_#_)\":false,\".px-md-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-md-auto:not(#_#_#_#_#_#_#_)\":false,\".my-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-md-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-md-auto:not(#_#_#_#_#_#_#_)\":false,\".my-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-md-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-md-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".m-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-lg-0:not(#_#_#_#_#_#_#_)\":false,\".my-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-lg-0:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-lg-0:not(#_#_#_#_#_#_#_)\":false,\".my-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-lg-0:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-lg-1:not(#_#_#_#_#_#_#_)\":false,\".my-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-lg-1:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-lg-1:not(#_#_#_#_#_#_#_)\":false,\".my-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-lg-1:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-lg-2:not(#_#_#_#_#_#_#_)\":false,\".my-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-lg-2:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-lg-2:not(#_#_#_#_#_#_#_)\":false,\".my-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-lg-2:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-lg-3:not(#_#_#_#_#_#_#_)\":false,\".my-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-lg-3:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-lg-3:not(#_#_#_#_#_#_#_)\":false,\".my-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-lg-3:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-lg-4:not(#_#_#_#_#_#_#_)\":false,\".my-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-lg-4:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-lg-4:not(#_#_#_#_#_#_#_)\":false,\".my-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-lg-4:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-lg-5:not(#_#_#_#_#_#_#_)\":false,\".my-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-lg-5:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-lg-5:not(#_#_#_#_#_#_#_)\":false,\".my-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-lg-5:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-lg-0:not(#_#_#_#_#_#_#_)\":false,\".py-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-lg-0:not(#_#_#_#_#_#_#_)\":false,\".px-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-lg-0:not(#_#_#_#_#_#_#_)\":false,\".py-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-lg-0:not(#_#_#_#_#_#_#_)\":false,\".px-lg-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-lg-1:not(#_#_#_#_#_#_#_)\":false,\".py-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-lg-1:not(#_#_#_#_#_#_#_)\":false,\".px-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-lg-1:not(#_#_#_#_#_#_#_)\":false,\".py-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-lg-1:not(#_#_#_#_#_#_#_)\":false,\".px-lg-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-lg-2:not(#_#_#_#_#_#_#_)\":false,\".py-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-lg-2:not(#_#_#_#_#_#_#_)\":false,\".px-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-lg-2:not(#_#_#_#_#_#_#_)\":false,\".py-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-lg-2:not(#_#_#_#_#_#_#_)\":false,\".px-lg-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-lg-3:not(#_#_#_#_#_#_#_)\":false,\".py-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-lg-3:not(#_#_#_#_#_#_#_)\":false,\".px-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-lg-3:not(#_#_#_#_#_#_#_)\":false,\".py-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-lg-3:not(#_#_#_#_#_#_#_)\":false,\".px-lg-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-lg-4:not(#_#_#_#_#_#_#_)\":false,\".py-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-lg-4:not(#_#_#_#_#_#_#_)\":false,\".px-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-lg-4:not(#_#_#_#_#_#_#_)\":false,\".py-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-lg-4:not(#_#_#_#_#_#_#_)\":false,\".px-lg-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-lg-5:not(#_#_#_#_#_#_#_)\":false,\".py-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-lg-5:not(#_#_#_#_#_#_#_)\":false,\".px-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-lg-5:not(#_#_#_#_#_#_#_)\":false,\".py-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-lg-5:not(#_#_#_#_#_#_#_)\":false,\".px-lg-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".my-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".my-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-lg-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-lg-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".m-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,{\".mt-xl-0:not(#_#_#_#_#_#_#_)\":false,\".my-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".mr-xl-0:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".mb-xl-0:not(#_#_#_#_#_#_#_)\":false,\".my-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ml-xl-0:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,{\".m-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin:.25rem\"]],[false,{\".mt-xl-1:not(#_#_#_#_#_#_#_)\":false,\".my-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.25rem\"]],[false,{\".mr-xl-1:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.25rem\"]],[false,{\".mb-xl-1:not(#_#_#_#_#_#_#_)\":false,\".my-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.25rem\"]],[false,{\".ml-xl-1:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.25rem\"]],[false,{\".m-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin:.5rem\"]],[false,{\".mt-xl-2:not(#_#_#_#_#_#_#_)\":false,\".my-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:.5rem\"]],[false,{\".mr-xl-2:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:.5rem\"]],[false,{\".mb-xl-2:not(#_#_#_#_#_#_#_)\":false,\".my-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:.5rem\"]],[false,{\".ml-xl-2:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:.5rem\"]],[false,{\".m-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin:1rem\"]],[false,{\".mt-xl-3:not(#_#_#_#_#_#_#_)\":false,\".my-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1rem\"]],[false,{\".mr-xl-3:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1rem\"]],[false,{\".mb-xl-3:not(#_#_#_#_#_#_#_)\":false,\".my-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1rem\"]],[false,{\".ml-xl-3:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1rem\"]],[false,{\".m-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin:1.5rem\"]],[false,{\".mt-xl-4:not(#_#_#_#_#_#_#_)\":false,\".my-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:1.5rem\"]],[false,{\".mr-xl-4:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:1.5rem\"]],[false,{\".mb-xl-4:not(#_#_#_#_#_#_#_)\":false,\".my-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:1.5rem\"]],[false,{\".ml-xl-4:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:1.5rem\"]],[false,{\".m-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin:3rem\"]],[false,{\".mt-xl-5:not(#_#_#_#_#_#_#_)\":false,\".my-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:3rem\"]],[false,{\".mr-xl-5:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:3rem\"]],[false,{\".mb-xl-5:not(#_#_#_#_#_#_#_)\":false,\".my-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:3rem\"]],[false,{\".ml-xl-5:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:3rem\"]],[false,{\".p-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".pt-xl-0:not(#_#_#_#_#_#_#_)\":false,\".py-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".pr-xl-0:not(#_#_#_#_#_#_#_)\":false,\".px-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,{\".pb-xl-0:not(#_#_#_#_#_#_#_)\":false,\".py-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\"]],[false,{\".pl-xl-0:not(#_#_#_#_#_#_#_)\":false,\".px-xl-0:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:0\"]],[false,{\".p-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding:.25rem\"]],[false,{\".pt-xl-1:not(#_#_#_#_#_#_#_)\":false,\".py-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.25rem\"]],[false,{\".pr-xl-1:not(#_#_#_#_#_#_#_)\":false,\".px-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.25rem\"]],[false,{\".pb-xl-1:not(#_#_#_#_#_#_#_)\":false,\".py-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.25rem\"]],[false,{\".pl-xl-1:not(#_#_#_#_#_#_#_)\":false,\".px-xl-1:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.25rem\"]],[false,{\".p-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding:.5rem\"]],[false,{\".pt-xl-2:not(#_#_#_#_#_#_#_)\":false,\".py-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:.5rem\"]],[false,{\".pr-xl-2:not(#_#_#_#_#_#_#_)\":false,\".px-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:.5rem\"]],[false,{\".pb-xl-2:not(#_#_#_#_#_#_#_)\":false,\".py-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:.5rem\"]],[false,{\".pl-xl-2:not(#_#_#_#_#_#_#_)\":false,\".px-xl-2:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:.5rem\"]],[false,{\".p-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding:1rem\"]],[false,{\".pt-xl-3:not(#_#_#_#_#_#_#_)\":false,\".py-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1rem\"]],[false,{\".pr-xl-3:not(#_#_#_#_#_#_#_)\":false,\".px-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1rem\"]],[false,{\".pb-xl-3:not(#_#_#_#_#_#_#_)\":false,\".py-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1rem\"]],[false,{\".pl-xl-3:not(#_#_#_#_#_#_#_)\":false,\".px-xl-3:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1rem\"]],[false,{\".p-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding:1.5rem\"]],[false,{\".pt-xl-4:not(#_#_#_#_#_#_#_)\":false,\".py-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:1.5rem\"]],[false,{\".pr-xl-4:not(#_#_#_#_#_#_#_)\":false,\".px-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:1.5rem\"]],[false,{\".pb-xl-4:not(#_#_#_#_#_#_#_)\":false,\".py-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:1.5rem\"]],[false,{\".pl-xl-4:not(#_#_#_#_#_#_#_)\":false,\".px-xl-4:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:1.5rem\"]],[false,{\".p-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding:3rem\"]],[false,{\".pt-xl-5:not(#_#_#_#_#_#_#_)\":false,\".py-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:3rem\"]],[false,{\".pr-xl-5:not(#_#_#_#_#_#_#_)\":false,\".px-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-right:3rem\"]],[false,{\".pb-xl-5:not(#_#_#_#_#_#_#_)\":false,\".py-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:3rem\"]],[false,{\".pl-xl-5:not(#_#_#_#_#_#_#_)\":false,\".px-xl-5:not(#_#_#_#_#_#_#_)\":false},[\"padding-left:3rem\"]],[false,{\".m-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin:auto\"]],[false,{\".mt-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".my-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:auto\"]],[false,{\".mr-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:auto\"]],[false,{\".mb-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".my-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:auto\"]],[false,{\".ml-xl-auto:not(#_#_#_#_#_#_#_)\":false,\".mx-xl-auto:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:auto\"]],[false,\"}\"],[false,{\".text-monospace\":false},[\"font-family:SFMono-Regular,Menlo,Monaco,Consolas,\\\"Liberation Mono\\\",\\\"Courier New\\\",monospace\"]],[false,{\".text-justify:not(#_#_#_#_#_#_#_)\":false},[\"text-align:justify\"]],[false,{\".text-nowrap:not(#_#_#_#_#_#_#_)\":false},[\"white-space:nowrap\"]],[false,{\".text-truncate\":false},[\"overflow:hidden\",\"text-overflow:ellipsis\",\"white-space:nowrap\"]],[false,{\".text-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[true,{\".text-center:not(#_#_#_#_#_#_#_)\":true},[\"text-align:center\"]],[false,\"@media (min-width:576px){\"],[false,{\".text-sm-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-sm-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-sm-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:768px){\"],[false,{\".text-md-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-md-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-md-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:992px){\"],[false,{\".text-lg-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-lg-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-lg-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1200px){\"],[false,{\".text-xl-left:not(#_#_#_#_#_#_#_)\":false},[\"text-align:left\"]],[false,{\".text-xl-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:right\"]],[false,{\".text-xl-center:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".text-lowercase:not(#_#_#_#_#_#_#_)\":false},[\"text-transform:lowercase\"]],[false,{\".text-uppercase:not(#_#_#_#_#_#_#_)\":false},[\"text-transform:uppercase\"]],[false,{\".text-capitalize:not(#_#_#_#_#_#_#_)\":false},[\"text-transform:capitalize\"]],[false,{\".font-weight-light:not(#_#_#_#_#_#_#_)\":false},[\"font-weight:300\"]],[false,{\".font-weight-normal:not(#_#_#_#_#_#_#_)\":false},[\"font-weight:400\"]],[false,{\".font-weight-bold:not(#_#_#_#_#_#_#_)\":false},[\"font-weight:700\"]],[false,{\".font-italic:not(#_#_#_#_#_#_#_)\":false},[\"font-style:italic\"]],[false,{\".text-white:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".text-primary:not(#_#_#_#_#_#_#_)\":false},[\"color:#007bff\"]],[false,{\"a.text-primary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-primary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#0062cc\"]],[false,{\".text-secondary:not(#_#_#_#_#_#_#_)\":false},[\"color:#6c757d\"]],[false,{\"a.text-secondary:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-secondary:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#545b62\"]],[false,{\".text-success:not(#_#_#_#_#_#_#_)\":false},[\"color:#28a745\"]],[false,{\"a.text-success:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-success:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#1e7e34\"]],[false,{\".text-info:not(#_#_#_#_#_#_#_)\":false},[\"color:#17a2b8\"]],[false,{\"a.text-info:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-info:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#117a8b\"]],[false,{\".text-warning:not(#_#_#_#_#_#_#_)\":false},[\"color:#ffc107\"]],[false,{\"a.text-warning:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-warning:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#d39e00\"]],[false,{\".text-danger:not(#_#_#_#_#_#_#_)\":false},[\"color:#dc3545\"]],[false,{\"a.text-danger:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-danger:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#bd2130\"]],[false,{\".text-light:not(#_#_#_#_#_#_#_)\":false},[\"color:#f8f9fa\"]],[false,{\"a.text-light:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-light:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#dae0e5\"]],[false,{\".text-dark:not(#_#_#_#_#_#_#_)\":false},[\"color:#343a40\"]],[false,{\"a.text-dark:focus:not(#_#_#_#_#_#_#_#_)\":false,\"a.text-dark:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#1d2124\"]],[false,{\".text-body:not(#_#_#_#_#_#_#_)\":false},[\"color:#212529\"]],[false,{\".text-muted:not(#_#_#_#_#_#_#_)\":false},[\"color:#6c757d\"]],[false,{\".text-black-50:not(#_#_#_#_#_#_#_)\":false},[\"color:rgba(0,0,0,.5)\"]],[false,{\".text-white-50:not(#_#_#_#_#_#_#_)\":false},[\"color:rgba(255,255,255,.5)\"]],[false,{\".text-hide\":false},[\"font:0\\/0 a\",\"color:transparent\",\"text-shadow:none\",\"background-color:transparent\",\"border:0\"]],[false,{\".visible:not(#_#_#_#_#_#_#_)\":false},[\"visibility:visible\"]],[false,{\".invisible:not(#_#_#_#_#_#_#_)\":false},[\"visibility:hidden\"]],[true,\"@media print{\"],[true,{\"*:not(#_#_#_#_#_#_)\":true,\"::after:not(#_#_#_#_#_#_#_#_)\":true,\"::before:not(#_#_#_#_#_#_#_#_)\":true},[\"text-shadow:none\",\"box-shadow:none\"]],[true,{\"a:not(.btn)\":true},[\"text-decoration:underline\"]],[false,{\"abbr[title]::after\":false},[\"content:\\\" (\\\" attr(title) \\\")\\\"\"]],[false,{\"pre:not(#_#_#_#_#_#_#_#_)\":false},[\"white-space:pre-wrap\"]],[false,{\"blockquote\":false,\"pre\":false},[\"border:1px solid #adb5bd\",\"page-break-inside:avoid\"]],[false,{\"thead\":false},[\"display:table-header-group\"]],[true,{\"amp-img\":true,\"amp-anim\":false,\"tr\":false},[\"page-break-inside:avoid\"]],[true,{\"h2\":true,\"h3\":true,\"p\":true},[\"orphans:3\",\"widows:3\"]],[true,{\"h2\":true,\"h3\":true},[\"page-break-after:avoid\"]],[true,\"@page{size:a3}\"],[true,{\"body:not(#_#_#_#_#_#_#_#_)\":true},[\"min-width:992px\"]],[true,{\".container:not(#_#_#_#_#_#_#_)\":true},[\"min-width:992px\"]],[true,{\".navbar\":true},[\"display:none\"]],[false,{\".badge\":false},[\"border:1px solid #000\"]],[false,{\".table:not(#_#_#_#_#_#_#_)\":false},[\"border-collapse:collapse\"]],[false,{\".table td:not(#_#_#_#_#_#_#_#_)\":false,\".table th:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#fff\"]],[false,{\".table-bordered td:not(#_#_#_#_#_#_#_#_)\":false,\".table-bordered th:not(#_#_#_#_#_#_#_#_)\":false},[\"border:1px solid #dee2e6\"]],[false,{\".table-dark\":false},[\"color:inherit\"]],[false,{\".table-dark tbody+tbody\":false,\".table-dark td\":false,\".table-dark th\":false,\".table-dark thead th\":false},[\"border-color:#dee2e6\"]],[false,{\".table .thead-dark th\":false},[\"color:inherit\",\"border-color:#dee2e6\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":68760,\"final_size\":48135,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/animate.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"a2e2915566ab9cb1c9ab842793acd3f3\",\"parse_time\":0.38850998878479004,\"shake_time\":0.0004420280456542969,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".animated\":false},[\"-webkit-animation-duration:1s\",\"animation-duration:1s\",\"-webkit-animation-fill-mode:both\",\"animation-fill-mode:both\"]],[false,{\".animated.infinite\":false},[\"-webkit-animation-iteration-count:infinite\",\"animation-iteration-count:infinite\"]],[false,{\".animated.hinge\":false},[\"-webkit-animation-duration:2s\",\"animation-duration:2s\"]],[true,\"@-webkit-keyframes bounce{\"],[true,\"0%,20%,50%,80%,100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"40%{-webkit-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"60%{-webkit-transform:translateY(-15px);transform:translateY(-15px)}\"],[true,\"}@keyframes bounce{\"],[true,\"0%,20%,50%,80%,100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"40%{-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"60%{-webkit-transform:translateY(-15px);-ms-transform:translateY(-15px);transform:translateY(-15px)}\"],[true,\"}\"],[false,{\".bounce\":false},[\"-webkit-animation-name:bounce\",\"animation-name:bounce\"]],[true,\"@-webkit-keyframes flash{\"],[true,\"0%,50%,100%{opacity:1}\"],[true,\"25%,75%{opacity:0}\"],[true,\"}@keyframes flash{\"],[true,\"0%,50%,100%{opacity:1}\"],[true,\"25%,75%{opacity:0}\"],[true,\"}\"],[false,{\".flash\":false},[\"-webkit-animation-name:flash\",\"animation-name:flash\"]],[true,\"@-webkit-keyframes pulse{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{-webkit-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes pulse{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"50%{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,{\".pulse\":false},[\"-webkit-animation-name:pulse\",\"animation-name:pulse\"]],[true,\"@-webkit-keyframes rubberBand{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"30%{-webkit-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}\"],[true,\"40%{-webkit-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}\"],[true,\"60%{-webkit-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}\"],[true,\"100%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes rubberBand{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"30%{-webkit-transform:scaleX(1.25) scaleY(.75);-ms-transform:scaleX(1.25) scaleY(.75);transform:scaleX(1.25) scaleY(.75)}\"],[true,\"40%{-webkit-transform:scaleX(.75) scaleY(1.25);-ms-transform:scaleX(.75) scaleY(1.25);transform:scaleX(.75) scaleY(1.25)}\"],[true,\"60%{-webkit-transform:scaleX(1.15) scaleY(.85);-ms-transform:scaleX(1.15) scaleY(.85);transform:scaleX(1.15) scaleY(.85)}\"],[true,\"100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,{\".rubberBand\":false},[\"-webkit-animation-name:rubberBand\",\"animation-name:rubberBand\"]],[true,\"@-webkit-keyframes shake{\"],[true,\"0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"}@keyframes shake{\"],[true,\"0%,100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"20%,40%,60%,80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"}\"],[false,{\".shake\":false},[\"-webkit-animation-name:shake\",\"animation-name:shake\"]],[true,\"@-webkit-keyframes swing{\"],[true,\"20%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"40%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}\"],[true,\"60%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}\"],[true,\"80%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}\"],[true,\"100%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}@keyframes swing{\"],[true,\"20%{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"40%{-webkit-transform:rotate(-10deg);-ms-transform:rotate(-10deg);transform:rotate(-10deg)}\"],[true,\"60%{-webkit-transform:rotate(5deg);-ms-transform:rotate(5deg);transform:rotate(5deg)}\"],[true,\"80%{-webkit-transform:rotate(-5deg);-ms-transform:rotate(-5deg);transform:rotate(-5deg)}\"],[true,\"100%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}\"],[false,{\".swing\":false},[\"-webkit-transform-origin:top center\",\"-ms-transform-origin:top center\",\"transform-origin:top center\",\"-webkit-animation-name:swing\",\"animation-name:swing\"]],[true,\"@-webkit-keyframes tada{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"10%,20%{-webkit-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}\"],[true,\"30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}\"],[true,\"40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}\"],[true,\"100%{-webkit-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}\"],[true,\"}@keyframes tada{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"10%,20%{-webkit-transform:scale(.9) rotate(-3deg);-ms-transform:scale(.9) rotate(-3deg);transform:scale(.9) rotate(-3deg)}\"],[true,\"30%,50%,70%,90%{-webkit-transform:scale(1.1) rotate(3deg);-ms-transform:scale(1.1) rotate(3deg);transform:scale(1.1) rotate(3deg)}\"],[true,\"40%,60%,80%{-webkit-transform:scale(1.1) rotate(-3deg);-ms-transform:scale(1.1) rotate(-3deg);transform:scale(1.1) rotate(-3deg)}\"],[true,\"100%{-webkit-transform:scale(1) rotate(0);-ms-transform:scale(1) rotate(0);transform:scale(1) rotate(0)}\"],[true,\"}\"],[false,{\".tada\":false},[\"-webkit-animation-name:tada\",\"animation-name:tada\"]],[true,\"@-webkit-keyframes wobble{\"],[true,\"0%{-webkit-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"15%{-webkit-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}\"],[true,\"30%{-webkit-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}\"],[true,\"45%{-webkit-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}\"],[true,\"60%{-webkit-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}\"],[true,\"75%{-webkit-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}\"],[true,\"100%{-webkit-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"}@keyframes wobble{\"],[true,\"0%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"15%{-webkit-transform:translateX(-25%) rotate(-5deg);-ms-transform:translateX(-25%) rotate(-5deg);transform:translateX(-25%) rotate(-5deg)}\"],[true,\"30%{-webkit-transform:translateX(20%) rotate(3deg);-ms-transform:translateX(20%) rotate(3deg);transform:translateX(20%) rotate(3deg)}\"],[true,\"45%{-webkit-transform:translateX(-15%) rotate(-3deg);-ms-transform:translateX(-15%) rotate(-3deg);transform:translateX(-15%) rotate(-3deg)}\"],[true,\"60%{-webkit-transform:translateX(10%) rotate(2deg);-ms-transform:translateX(10%) rotate(2deg);transform:translateX(10%) rotate(2deg)}\"],[true,\"75%{-webkit-transform:translateX(-5%) rotate(-1deg);-ms-transform:translateX(-5%) rotate(-1deg);transform:translateX(-5%) rotate(-1deg)}\"],[true,\"100%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%)}\"],[true,\"}\"],[false,{\".wobble\":false},[\"-webkit-animation-name:wobble\",\"animation-name:wobble\"]],[true,\"@-webkit-keyframes bounceIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.05);transform:scale(1.05)}\"],[true,\"70%{-webkit-transform:scale(.9);transform:scale(.9)}\"],[true,\"100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes bounceIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}\"],[true,\"70%{-webkit-transform:scale(.9);-ms-transform:scale(.9);transform:scale(.9)}\"],[true,\"100%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,{\".bounceIn\":false},[\"-webkit-animation-name:bounceIn\",\"animation-name:bounceIn\"]],[true,\"@-webkit-keyframes bounceInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}\"],[true,\"80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}\"],[true,\"100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes bounceInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(30px);-ms-transform:translateY(30px);transform:translateY(30px)}\"],[true,\"80%{-webkit-transform:translateY(-10px);-ms-transform:translateY(-10px);transform:translateY(-10px)}\"],[true,\"100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".bounceInDown\":false},[\"-webkit-animation-name:bounceInDown\",\"animation-name:bounceInDown\"]],[true,\"@-webkit-keyframes bounceInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(30px);transform:translateX(30px)}\"],[true,\"80%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes bounceInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(30px);-ms-transform:translateX(30px);transform:translateX(30px)}\"],[true,\"80%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".bounceInLeft\":false},[\"-webkit-animation-name:bounceInLeft\",\"animation-name:bounceInLeft\"]],[true,\"@-webkit-keyframes bounceInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(-30px);transform:translateX(-30px)}\"],[true,\"80%{-webkit-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes bounceInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateX(-30px);-ms-transform:translateX(-30px);transform:translateX(-30px)}\"],[true,\"80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".bounceInRight\":false},[\"-webkit-animation-name:bounceInRight\",\"animation-name:bounceInRight\"]],[true,\"@-webkit-keyframes bounceInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"80%{-webkit-transform:translateY(10px);transform:translateY(10px)}\"],[true,\"100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes bounceInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"60%{opacity:1;-webkit-transform:translateY(-30px);-ms-transform:translateY(-30px);transform:translateY(-30px)}\"],[true,\"80%{-webkit-transform:translateY(10px);-ms-transform:translateY(10px);transform:translateY(10px)}\"],[true,\"100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".bounceInUp\":false},[\"-webkit-animation-name:bounceInUp\",\"animation-name:bounceInUp\"]],[true,\"@-webkit-keyframes bounceOut{\"],[true,\"0%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"25%{-webkit-transform:scale(.95);transform:scale(.95)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"}@keyframes bounceOut{\"],[true,\"0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"25%{-webkit-transform:scale(.95);-ms-transform:scale(.95);transform:scale(.95)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1)}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"}\"],[false,{\".bounceOut\":false},[\"-webkit-animation-name:bounceOut\",\"animation-name:bounceOut\"]],[true,\"@-webkit-keyframes bounceOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}@keyframes bounceOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}\"],[false,{\".bounceOutDown\":false},[\"-webkit-animation-name:bounceOutDown\",\"animation-name:bounceOutDown\"]],[true,\"@-webkit-keyframes bounceOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}@keyframes bounceOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}\"],[false,{\".bounceOutLeft\":false},[\"-webkit-animation-name:bounceOutLeft\",\"animation-name:bounceOutLeft\"]],[true,\"@-webkit-keyframes bounceOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}@keyframes bounceOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}\"],[false,{\".bounceOutRight\":false},[\"-webkit-animation-name:bounceOutRight\",\"animation-name:bounceOutRight\"]],[true,\"@-webkit-keyframes bounceOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}@keyframes bounceOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"20%{opacity:1;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}\"],[false,{\".bounceOutUp\":false},[\"-webkit-animation-name:bounceOutUp\",\"animation-name:bounceOutUp\"]],[true,\"@-webkit-keyframes fadeIn{\"],[true,\"0%{opacity:0}\"],[true,\"100%{opacity:1}\"],[true,\"}@keyframes fadeIn{\"],[true,\"0%{opacity:0}\"],[true,\"100%{opacity:1}\"],[true,\"}\"],[false,{\".fadeIn\":false},[\"-webkit-animation-name:fadeIn\",\"animation-name:fadeIn\"]],[true,\"@-webkit-keyframes fadeInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInDown\":false},[\"-webkit-animation-name:fadeInDown\",\"animation-name:fadeInDown\"]],[true,\"@-webkit-keyframes fadeInDownBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInDownBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInDownBig\":false},[\"-webkit-animation-name:fadeInDownBig\",\"animation-name:fadeInDownBig\"]],[true,\"@-webkit-keyframes fadeInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInLeft\":false},[\"-webkit-animation-name:fadeInLeft\",\"animation-name:fadeInLeft\"]],[true,\"@-webkit-keyframes fadeInLeftBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInLeftBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInLeftBig\":false},[\"-webkit-animation-name:fadeInLeftBig\",\"animation-name:fadeInLeftBig\"]],[true,\"@-webkit-keyframes fadeInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInRight\":false},[\"-webkit-animation-name:fadeInRight\",\"animation-name:fadeInRight\"]],[true,\"@-webkit-keyframes fadeInRightBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes fadeInRightBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".fadeInRightBig\":false},[\"-webkit-animation-name:fadeInRightBig\",\"animation-name:fadeInRightBig\"]],[true,\"@-webkit-keyframes fadeInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInUp\":false},[\"-webkit-animation-name:fadeInUp\",\"animation-name:fadeInUp\"]],[true,\"@-webkit-keyframes fadeInUpBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes fadeInUpBig{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".fadeInUpBig\":false},[\"-webkit-animation-name:fadeInUpBig\",\"animation-name:fadeInUpBig\"]],[true,\"@-webkit-keyframes fadeOut{\"],[true,\"0%{opacity:1}\"],[true,\"100%{opacity:0}\"],[true,\"}@keyframes fadeOut{\"],[true,\"0%{opacity:1}\"],[true,\"100%{opacity:0}\"],[true,\"}\"],[false,{\".fadeOut\":false},[\"-webkit-animation-name:fadeOut\",\"animation-name:fadeOut\"]],[true,\"@-webkit-keyframes fadeOutDown{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"}@keyframes fadeOutDown{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px)}\"],[true,\"}\"],[false,{\".fadeOutDown\":false},[\"-webkit-animation-name:fadeOutDown\",\"animation-name:fadeOutDown\"]],[true,\"@-webkit-keyframes fadeOutDownBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}@keyframes fadeOutDownBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}\"],[false,{\".fadeOutDownBig\":false},[\"-webkit-animation-name:fadeOutDownBig\",\"animation-name:fadeOutDownBig\"]],[true,\"@-webkit-keyframes fadeOutLeft{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"}@keyframes fadeOutLeft{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-20px);-ms-transform:translateX(-20px);transform:translateX(-20px)}\"],[true,\"}\"],[false,{\".fadeOutLeft\":false},[\"-webkit-animation-name:fadeOutLeft\",\"animation-name:fadeOutLeft\"]],[true,\"@-webkit-keyframes fadeOutLeftBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}@keyframes fadeOutLeftBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}\"],[false,{\".fadeOutLeftBig\":false},[\"-webkit-animation-name:fadeOutLeftBig\",\"animation-name:fadeOutLeftBig\"]],[true,\"@-webkit-keyframes fadeOutRight{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"}@keyframes fadeOutRight{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}\"],[true,\"}\"],[false,{\".fadeOutRight\":false},[\"-webkit-animation-name:fadeOutRight\",\"animation-name:fadeOutRight\"]],[true,\"@-webkit-keyframes fadeOutRightBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}@keyframes fadeOutRightBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}\"],[false,{\".fadeOutRightBig\":false},[\"-webkit-animation-name:fadeOutRightBig\",\"animation-name:fadeOutRightBig\"]],[true,\"@-webkit-keyframes fadeOutUp{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"}@keyframes fadeOutUp{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-20px);-ms-transform:translateY(-20px);transform:translateY(-20px)}\"],[true,\"}\"],[false,{\".fadeOutUp\":false},[\"-webkit-animation-name:fadeOutUp\",\"animation-name:fadeOutUp\"]],[true,\"@-webkit-keyframes fadeOutUpBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}@keyframes fadeOutUpBig{\"],[true,\"0%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}\"],[false,{\".fadeOutUpBig\":false},[\"-webkit-animation-name:fadeOutUpBig\",\"animation-name:fadeOutUpBig\"]],[true,\"@-webkit-keyframes flip{\"],[true,\"0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"}@keyframes flip{\"],[true,\"0%{-webkit-transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(-360deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"40%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-190deg) scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"50%{-webkit-transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);-ms-transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);transform:perspective(400px) translateZ(150px) rotateY(-170deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"80%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);-ms-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(.95);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"100%{-webkit-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);-ms-transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);transform:perspective(400px) translateZ(0) rotateY(0deg) scale(1);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}\"],[true,\"}\"],[false,{\".animated.flip\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\",\"-webkit-animation-name:flip\",\"animation-name:flip\"]],[true,\"@-webkit-keyframes flipInX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"}@keyframes flipInX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateX(-10deg);-ms-transform:perspective(400px) rotateX(-10deg);transform:perspective(400px) rotateX(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateX(10deg);-ms-transform:perspective(400px) rotateX(10deg);transform:perspective(400px) rotateX(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"}\"],[false,{\".flipInX\":false},[\"-webkit-animation-name:flipInX\",\"animation-name:flipInX\"]],[false,{\".flipInX:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes flipInY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"}@keyframes flipInY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"40%{-webkit-transform:perspective(400px) rotateY(-10deg);-ms-transform:perspective(400px) rotateY(-10deg);transform:perspective(400px) rotateY(-10deg)}\"],[true,\"70%{-webkit-transform:perspective(400px) rotateY(10deg);-ms-transform:perspective(400px) rotateY(10deg);transform:perspective(400px) rotateY(10deg)}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"}\"],[false,{\".flipInY\":false},[\"-webkit-animation-name:flipInY\",\"animation-name:flipInY\"]],[false,{\".flipInY:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes flipOutX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"}@keyframes flipOutX{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateX(0deg);-ms-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateX(90deg);-ms-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}\"],[true,\"}\"],[false,{\".flipOutX\":false},[\"-webkit-animation-name:flipOutX\",\"animation-name:flipOutX\"]],[false,{\".flipOutX:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes flipOutY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"}@keyframes flipOutY{\"],[true,\"0%{-webkit-transform:perspective(400px) rotateY(0deg);-ms-transform:perspective(400px) rotateY(0deg);transform:perspective(400px) rotateY(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:perspective(400px) rotateY(90deg);-ms-transform:perspective(400px) rotateY(90deg);transform:perspective(400px) rotateY(90deg);opacity:0}\"],[true,\"}\"],[false,{\".flipOutY\":false},[\"-webkit-animation-name:flipOutY\",\"animation-name:flipOutY\"]],[false,{\".flipOutY:not(#_#_#_#_#_#_#_)\":false},[\"-webkit-backface-visibility:visible\",\"-ms-backface-visibility:visible\",\"backface-visibility:visible\"]],[true,\"@-webkit-keyframes lightSpeedIn{\"],[true,\"0%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"60%{-webkit-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}\"],[true,\"80%{-webkit-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"}@keyframes lightSpeedIn{\"],[true,\"0%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"60%{-webkit-transform:translateX(-20%) skewX(30deg);-ms-transform:translateX(-20%) skewX(30deg);transform:translateX(-20%) skewX(30deg);opacity:1}\"],[true,\"80%{-webkit-transform:translateX(0%) skewX(-15deg);-ms-transform:translateX(0%) skewX(-15deg);transform:translateX(0%) skewX(-15deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"}\"],[false,{\".lightSpeedIn\":false},[\"-webkit-animation-name:lightSpeedIn\",\"animation-name:lightSpeedIn\",\"-webkit-animation-timing-function:ease-out\",\"animation-timing-function:ease-out\"]],[true,\"@-webkit-keyframes lightSpeedOut{\"],[true,\"0%{-webkit-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"}@keyframes lightSpeedOut{\"],[true,\"0%{-webkit-transform:translateX(0%) skewX(0deg);-ms-transform:translateX(0%) skewX(0deg);transform:translateX(0%) skewX(0deg);opacity:1}\"],[true,\"100%{-webkit-transform:translateX(100%) skewX(-30deg);-ms-transform:translateX(100%) skewX(-30deg);transform:translateX(100%) skewX(-30deg);opacity:0}\"],[true,\"}\"],[false,{\".lightSpeedOut\":false},[\"-webkit-animation-name:lightSpeedOut\",\"animation-name:lightSpeedOut\",\"-webkit-animation-timing-function:ease-in\",\"animation-timing-function:ease-in\"]],[true,\"@-webkit-keyframes rotateIn{\"],[true,\"0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateIn{\"],[true,\"0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(-200deg);-ms-transform:rotate(-200deg);transform:rotate(-200deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateIn\":false},[\"-webkit-animation-name:rotateIn\",\"animation-name:rotateIn\"]],[true,\"@-webkit-keyframes rotateInDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInDownLeft\":false},[\"-webkit-animation-name:rotateInDownLeft\",\"animation-name:rotateInDownLeft\"]],[true,\"@-webkit-keyframes rotateInDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInDownRight\":false},[\"-webkit-animation-name:rotateInDownRight\",\"animation-name:rotateInDownRight\"]],[true,\"@-webkit-keyframes rotateInUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInUpLeft\":false},[\"-webkit-animation-name:rotateInUpLeft\",\"animation-name:rotateInUpLeft\"]],[true,\"@-webkit-keyframes rotateInUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}@keyframes rotateInUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"}\"],[false,{\".rotateInUpRight\":false},[\"-webkit-animation-name:rotateInUpRight\",\"animation-name:rotateInUpRight\"]],[true,\"@-webkit-keyframes rotateOut{\"],[true,\"0%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);transform:rotate(200deg);opacity:0}\"],[true,\"}@keyframes rotateOut{\"],[true,\"0%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;-webkit-transform:rotate(200deg);-ms-transform:rotate(200deg);transform:rotate(200deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOut\":false},[\"-webkit-animation-name:rotateOut\",\"animation-name:rotateOut\"]],[true,\"@-webkit-keyframes rotateOutDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}@keyframes rotateOutDownLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutDownLeft\":false},[\"-webkit-animation-name:rotateOutDownLeft\",\"animation-name:rotateOutDownLeft\"]],[true,\"@-webkit-keyframes rotateOutDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}@keyframes rotateOutDownRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutDownRight\":false},[\"-webkit-animation-name:rotateOutDownRight\",\"animation-name:rotateOutDownRight\"]],[true,\"@-webkit-keyframes rotateOutUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}@keyframes rotateOutUpLeft{\"],[true,\"0%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:left bottom;-ms-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutUpLeft\":false},[\"-webkit-animation-name:rotateOutUpLeft\",\"animation-name:rotateOutUpLeft\"]],[true,\"@-webkit-keyframes rotateOutUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}@keyframes rotateOutUpRight{\"],[true,\"0%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);opacity:1}\"],[true,\"100%{-webkit-transform-origin:right bottom;-ms-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);opacity:0}\"],[true,\"}\"],[false,{\".rotateOutUpRight\":false},[\"-webkit-animation-name:rotateOutUpRight\",\"animation-name:rotateOutUpRight\"]],[true,\"@-webkit-keyframes slideInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes slideInDown{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"100%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".slideInDown\":false},[\"-webkit-animation-name:slideInDown\",\"animation-name:slideInDown\"]],[true,\"@-webkit-keyframes slideInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes slideInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".slideInLeft\":false},[\"-webkit-animation-name:slideInLeft\",\"animation-name:slideInLeft\"]],[true,\"@-webkit-keyframes slideInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"}@keyframes slideInRight{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"}\"],[false,{\".slideInRight\":false},[\"-webkit-animation-name:slideInRight\",\"animation-name:slideInRight\"]],[true,\"@-webkit-keyframes slideOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}@keyframes slideOutLeft{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(-2000px);-ms-transform:translateX(-2000px);transform:translateX(-2000px)}\"],[true,\"}\"],[false,{\".slideOutLeft\":false},[\"-webkit-animation-name:slideOutLeft\",\"animation-name:slideOutLeft\"]],[true,\"@-webkit-keyframes slideOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}@keyframes slideOutRight{\"],[true,\"0%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(2000px);-ms-transform:translateX(2000px);transform:translateX(2000px)}\"],[true,\"}\"],[false,{\".slideOutRight\":false},[\"-webkit-animation-name:slideOutRight\",\"animation-name:slideOutRight\"]],[true,\"@-webkit-keyframes slideOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}@keyframes slideOutUp{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(-2000px);-ms-transform:translateY(-2000px);transform:translateY(-2000px)}\"],[true,\"}\"],[false,{\".slideOutUp\":false},[\"-webkit-animation-name:slideOutUp\",\"animation-name:slideOutUp\"]],[true,\"@-webkit-keyframes slideInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"}@keyframes slideInUp{\"],[true,\"0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"}\"],[false,{\".slideInUp\":false},[\"-webkit-animation-name:slideInUp\",\"animation-name:slideInUp\"]],[true,\"@-webkit-keyframes slideOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}@keyframes slideOutDown{\"],[true,\"0%{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}\"],[true,\"100%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}\"],[true,\"}\"],[false,{\".slideOutDown\":false},[\"-webkit-animation-name:slideOutDown\",\"animation-name:slideOutDown\"]],[true,\"@-webkit-keyframes hinge{\"],[true,\"0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"20%,60%{-webkit-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"40%{-webkit-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"80%{-webkit-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}\"],[true,\"100%{-webkit-transform:translateY(700px);transform:translateY(700px);opacity:0}\"],[true,\"}@keyframes hinge{\"],[true,\"0%{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"20%,60%{-webkit-transform:rotate(80deg);-ms-transform:rotate(80deg);transform:rotate(80deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"40%{-webkit-transform:rotate(60deg);-ms-transform:rotate(60deg);transform:rotate(60deg);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"80%{-webkit-transform:rotate(60deg) translateY(0);-ms-transform:rotate(60deg) translateY(0);transform:rotate(60deg) translateY(0);-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}\"],[true,\"100%{-webkit-transform:translateY(700px);-ms-transform:translateY(700px);transform:translateY(700px);opacity:0}\"],[true,\"}\"],[false,{\".hinge\":false},[\"-webkit-animation-name:hinge\",\"animation-name:hinge\"]],[true,\"@-webkit-keyframes rollIn{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"}@keyframes rollIn{\"],[true,\"0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);-ms-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}\"],[true,\"100%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);-ms-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"}\"],[false,{\".rollIn\":false},[\"-webkit-animation-name:rollIn\",\"animation-name:rollIn\"]],[true,\"@-webkit-keyframes rollOut{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}\"],[true,\"}@keyframes rollOut{\"],[true,\"0%{opacity:1;-webkit-transform:translateX(0px) rotate(0deg);-ms-transform:translateX(0px) rotate(0deg);transform:translateX(0px) rotate(0deg)}\"],[true,\"100%{opacity:0;-webkit-transform:translateX(100%) rotate(120deg);-ms-transform:translateX(100%) rotate(120deg);transform:translateX(100%) rotate(120deg)}\"],[true,\"}\"],[false,{\".rollOut\":false},[\"-webkit-animation-name:rollOut\",\"animation-name:rollOut\"]],[true,\"@-webkit-keyframes zoomIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1}\"],[true,\"}@keyframes zoomIn{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"50%{opacity:1}\"],[true,\"}\"],[false,{\".zoomIn\":false},[\"-webkit-animation-name:zoomIn\",\"animation-name:zoomIn\"]],[true,\"@-webkit-keyframes zoomInDown{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInDown{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInDown\":false},[\"-webkit-animation-name:zoomInDown\",\"animation-name:zoomInDown\"]],[true,\"@-webkit-keyframes zoomInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInLeft{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);-ms-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInLeft\":false},[\"-webkit-animation-name:zoomInLeft\",\"animation-name:zoomInLeft\"]],[true,\"@-webkit-keyframes zoomInRight{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(-48px);transform:scale(.475) translateX(-48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInRight{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);-ms-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateX(-48px);-ms-transform:scale(.475) translateX(-48px);transform:scale(.475) translateX(-48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInRight\":false},[\"-webkit-animation-name:zoomInRight\",\"animation-name:zoomInRight\"]],[true,\"@-webkit-keyframes zoomInUp{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}@keyframes zoomInUp{\"],[true,\"0%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);-ms-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}\"],[true,\"60%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);-ms-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}\"],[true,\"}\"],[false,{\".zoomInUp\":false},[\"-webkit-animation-name:zoomInUp\",\"animation-name:zoomInUp\"]],[true,\"@-webkit-keyframes zoomOut{\"],[true,\"0%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:0;-webkit-transform:scale(.3);transform:scale(.3)}\"],[true,\"100%{opacity:0}\"],[true,\"}@keyframes zoomOut{\"],[true,\"0%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:0;-webkit-transform:scale(.3);-ms-transform:scale(.3);transform:scale(.3)}\"],[true,\"100%{opacity:0}\"],[true,\"}\"],[false,{\".zoomOut\":false},[\"-webkit-animation-name:zoomOut\",\"animation-name:zoomOut\"]],[true,\"@-webkit-keyframes zoomOutDown{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-transform-origin:center bottom;transform-origin:center bottom}\"],[true,\"}@keyframes zoomOutDown{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(-60px);-ms-transform:scale(.475) translateY(-60px);transform:scale(.475) translateY(-60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(2000px);-ms-transform:scale(.1) translateY(2000px);transform:scale(.1) translateY(2000px);-webkit-transform-origin:center bottom;-ms-transform-origin:center bottom;transform-origin:center bottom}\"],[true,\"}\"],[false,{\".zoomOutDown\":false},[\"-webkit-animation-name:zoomOutDown\",\"animation-name:zoomOutDown\"]],[true,\"@-webkit-keyframes zoomOutLeft{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(42px);transform:scale(.475) translateX(42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-transform-origin:left center;transform-origin:left center}\"],[true,\"}@keyframes zoomOutLeft{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(42px);-ms-transform:scale(.475) translateX(42px);transform:scale(.475) translateX(42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-transform-origin:left center;-ms-transform-origin:left center;transform-origin:left center}\"],[true,\"}\"],[false,{\".zoomOutLeft\":false},[\"-webkit-animation-name:zoomOutLeft\",\"animation-name:zoomOutLeft\"]],[true,\"@-webkit-keyframes zoomOutRight{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(-42px);transform:scale(.475) translateX(-42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-transform-origin:right center;transform-origin:right center}\"],[true,\"}@keyframes zoomOutRight{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateX(-42px);-ms-transform:scale(.475) translateX(-42px);transform:scale(.475) translateX(-42px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateX(2000px);-ms-transform:scale(.1) translateX(2000px);transform:scale(.1) translateX(2000px);-webkit-transform-origin:right center;-ms-transform-origin:right center;transform-origin:right center}\"],[true,\"}\"],[false,{\".zoomOutRight\":false},[\"-webkit-animation-name:zoomOutRight\",\"animation-name:zoomOutRight\"]],[true,\"@-webkit-keyframes zoomOutUp{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-transform-origin:center top;transform-origin:center top}\"],[true,\"}@keyframes zoomOutUp{\"],[true,\"40%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:linear;animation-timing-function:linear}\"],[true,\"100%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-transform-origin:center top;-ms-transform-origin:center top;transform-origin:center top}\"],[true,\"}\"],[false,{\".zoomOutUp\":false},[\"-webkit-animation-name:zoomOutUp\",\"animation-name:zoomOutUp\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":4744,\"final_size\":154,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/css\\/owl.carousel.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"321729c807ca4dee8c7fcd62f722c92a\",\"parse_time\":0.016955852508544922,\"shake_time\":3.790855407714844e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".owl-carousel\":true},[\"display:none\",\"width:100%\",\"-webkit-tap-highlight-color:transparent\",\"position:relative\",\"z-index:1\"]],[false,{\".owl-carousel .owl-stage\":false},[\"position:relative\",\"-ms-touch-action:pan-Y\",\"touch-action:manipulation\",\"-moz-backface-visibility:hidden\"]],[false,{\".owl-carousel .owl-stage:after\":false},[\"content:\\\".\\\"\",\"display:block\",\"clear:both\",\"visibility:hidden\",\"line-height:0\",\"height:0\"]],[false,{\".owl-carousel .owl-stage-outer\":false},[\"position:relative\",\"overflow:hidden\",\"-webkit-transform:translate3d(0px,0px,0px)\"]],[false,{\".owl-carousel .owl-wrapper\":false,\".owl-carousel .owl-item\":false},[\"-webkit-backface-visibility:hidden\",\"-moz-backface-visibility:hidden\",\"-ms-backface-visibility:hidden\",\"-webkit-transform:translate3d(0,0,0)\",\"-moz-transform:translate3d(0,0,0)\",\"-ms-transform:translate3d(0,0,0)\"]],[false,{\".owl-carousel .owl-item\":false},[\"position:relative\",\"min-height:1px\",\"float:left\",\"-webkit-backface-visibility:hidden\",\"-webkit-tap-highlight-color:transparent\",\"-webkit-touch-callout:none\"]],[false,{\".owl-carousel .owl-item amp-img\":false,\".owl-carousel .owl-item amp-anim\":false},[\"display:block\",\"width:100%\"]],[false,{\".owl-carousel .owl-nav.disabled\":false,\".owl-carousel .owl-dots.disabled\":false},[\"display:none\"]],[false,{\".owl-carousel .owl-nav .owl-prev\":false,\".owl-carousel .owl-nav .owl-next\":false,\".owl-carousel .owl-dot\":false},[\"cursor:pointer\",\"-webkit-user-select:none\",\"-khtml-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\"]],[false,{\".owl-carousel .owl-nav button.owl-prev\":false,\".owl-carousel .owl-nav button.owl-next\":false,\".owl-carousel button.owl-dot\":false},[\"background:none\",\"color:inherit\",\"border:none\",\"font:inherit\"]],[false,{\".owl-carousel .owl-nav button.owl-prev:not(#_#_#_#_#_#_#_#_)\":false,\".owl-carousel .owl-nav button.owl-next:not(#_#_#_#_#_#_#_#_)\":false,\".owl-carousel button.owl-dot:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".owl-carousel.owl-loaded\":false},[\"display:block\"]],[false,{\".owl-carousel.owl-loading\":false},[\"opacity:0\",\"display:block\"]],[false,{\".owl-carousel.owl-hidden\":false},[\"opacity:0\"]],[false,{\".owl-carousel.owl-refresh .owl-item\":false},[\"visibility:hidden\"]],[false,{\".owl-carousel.owl-drag .owl-item\":false},[\"-ms-touch-action:pan-y\",\"touch-action:pan-y\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\"]],[false,{\".owl-carousel.owl-grab\":false},[\"cursor:move\",\"cursor:grab\"]],[false,{\".owl-carousel.owl-rtl\":false},[\"direction:rtl\"]],[false,{\".owl-carousel.owl-rtl .owl-item\":false},[\"float:right\"]],[false,{\".no-js .owl-carousel\":false},[\"display:block\"]],[false,{\".owl-carousel .animated\":false},[\"animation-duration:1000ms\",\"animation-fill-mode:both\"]],[false,{\".owl-carousel .owl-animated-in\":false},[\"z-index:0\"]],[false,{\".owl-carousel .owl-animated-out\":false},[\"z-index:1\"]],[false,{\".owl-carousel .fadeOut\":false},[\"animation-name:fadeOut\"]],[true,\"@keyframes fadeOut{\"],[true,\"0%{opacity:1}\"],[true,\"100%{opacity:0}\"],[true,\"}\"],[false,{\".owl-height\":false},[\"transition:height 500ms ease-in-out\"]],[false,{\".owl-carousel .owl-item .owl-lazy\":false},[\"opacity:0\",\"transition:opacity 400ms ease\"]],[false,{\".owl-carousel .owl-item .owl-lazy[src^=\\\"\\\"]\":false,\".owl-carousel .owl-item .owl-lazy:not([src])\":false},[\"max-height:0\"]],[false,{\".owl-carousel .owl-item amp-img.owl-lazy\":false,\".owl-carousel .owl-item amp-anim.owl-lazy\":false},[\"transform-style:preserve-3d\"]],[false,{\".owl-carousel .owl-video-wrapper\":false},[\"position:relative\",\"height:100%\",\"background:#000\"]],[false,{\".owl-carousel .owl-video-play-icon\":false},[\"position:absolute\",\"height:80px\",\"width:80px\",\"left:50%\",\"top:50%\",\"margin-left:-40px\",\"margin-top:-40px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/css\\/owl.video.play.png\\\") no-repeat\",\"cursor:pointer\",\"z-index:1\",\"-webkit-backface-visibility:hidden\",\"transition:transform 100ms ease\"]],[false,{\".owl-carousel .owl-video-play-icon:hover\":false},[\"-ms-transform:scale(1.3,1.3)\",\"transform:scale(1.3,1.3)\"]],[false,{\".owl-carousel .owl-video-playing .owl-video-tn\":false,\".owl-carousel .owl-video-playing .owl-video-play-icon\":false},[\"display:none\"]],[false,{\".owl-carousel .owl-video-tn\":false},[\"opacity:0\",\"height:100%\",\"background-position:center center\",\"background-repeat:no-repeat\",\"background-size:contain\",\"transition:opacity 400ms ease\"]],[false,{\".owl-carousel .owl-video-frame\":false},[\"position:relative\",\"z-index:1\",\"height:100%\",\"width:100%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1013,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/owlcarousel2.github.io\\/OwlCarousel2\\/assets\\/owlcarousel\\/assets\\/owl.theme.default.min.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"547aa8bb20ab8306b3b739fab5e4aa08\",\"parse_time\":0.004403114318847656,\"shake_time\":1.0967254638671875e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".owl-theme .owl-dots\":false,\".owl-theme .owl-nav\":false},[\"text-align:center\",\"-webkit-tap-highlight-color:transparent\"]],[false,{\".owl-theme .owl-nav\":false},[\"margin-top:10px\"]],[false,{\".owl-theme .owl-nav [class*=owl-]\":false},[\"color:#fff\",\"font-size:14px\",\"margin:5px\",\"padding:4px 7px\",\"background:#d6d6d6\",\"display:inline-block\",\"cursor:pointer\",\"border-radius:3px\"]],[false,{\".owl-theme .owl-nav [class*=owl-]:hover\":false},[\"background:#869791\",\"color:#fff\",\"text-decoration:none\"]],[false,{\".owl-theme .owl-nav .disabled\":false},[\"opacity:.5\",\"cursor:default\"]],[false,{\".owl-theme .owl-nav.disabled+.owl-dots\":false},[\"margin-top:10px\"]],[false,{\".owl-theme .owl-dots .owl-dot\":false},[\"display:inline-block\",\"zoom:1\"]],[false,{\".owl-theme .owl-dots .owl-dot span\":false},[\"width:10px\",\"height:10px\",\"margin:5px 7px\",\"background:#d6d6d6\",\"display:block\",\"-webkit-backface-visibility:visible\",\"transition:opacity .2s ease\",\"border-radius:30px\"]],[false,{\".owl-theme .owl-dots .owl-dot.active span\":false,\".owl-theme .owl-dots .owl-dot:hover span\":false},[\"background:#869791\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":65448,\"final_size\":1685,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/styles.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"7827cda6edfe62811923d93e516ee494\",\"parse_time\":0.6045119762420654,\"shake_time\":0.0009639263153076172,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".texto\":false},[\"font-family:Raleway,sans-serif\",\"font-weight:400\",\"font-size:14px\",\"line-height:20px\",\"color:#152649\"]],[false,\"@media (min-width:1400px){\"],[false,{\".texto\":false},[\"font-size:18px\",\"line-height:24px\"]],[false,\"}\"],[false,{\".bg-cover\":false},[\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\"]],[false,{\".box-shadow\":false},[\"-webkit-box-shadow:0 2px 6px 0 rgba(50,50,50,.3)\",\"-moz-box-shadow:0 2px 6px 0 rgba(50,50,50,.3)\",\"box-shadow:0 2px 6px 0 rgba(50,50,50,.3)\"]],[true,{\"html\":true},[\"-webkit-font-smoothing:antialiased\",\"background-color:#fff\"]],[true,{\"body\":true},[\"background-color:#fff\",\"font-family:Raleway,sans-serif\",\"font-weight:400\",\"font-size:14px\",\"line-height:20px\",\"color:#152649\",\"-webkit-font-smoothing:subpixel-antialiased\",\"overflow-x:hidden\"]],[true,\"@media (min-width:1400px){\"],[true,{\"body\":true},[\"font-size:18px\",\"line-height:24px\"]],[true,\"}\"],[true,{\"a\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"a:hover\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"strong\":true},[\"font-weight:700\"]],[true,{\"amp-img\":true,\"amp-anim\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".error\":false},[\"width:100%\"]],[false,{\".error:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:20px\",\"text-align:left\",\"left:0\",\"color:#c00\",\"font-weight:500\"]],[false,{\"label.error:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".wpcf7-not-valid-tip:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".wpcf7-not-valid:not(#_#_#_#_#_#_#_)\":false},[\"border:1px solid red\"]],[false,{\".nospace\":false},[\"margin:0\",\"padding:0\"]],[false,{\".nopadding\":false},[\"padding:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".nopadding\":false},[\"padding:0\",\"margin:0\"]],[false,\"}\"],[true,{\"input:focus\":true},[\"outline-color:transparent\",\"outline-style:none\"]],[true,{\"textarea:focus\":true},[\"outline-color:transparent\",\"outline-style:none\"]],[false,{\"input.form-control\":false},[\"font-family:Raleway,sans-serif\",\"font-weight:500\",\"width:100%\",\"font-size:12px\",\"background:#dfdfdf\",\"color:grey\",\"height:40px\",\"line-height:40px\",\"border:0 solid #343636\",\"margin-bottom:10px\",\"border-radius:0\",\"-moz-border-radius:0\",\"-webkit-border-radius:0\",\"-webkit-box-shadow:inset 0 0 0 transparent\",\"box-shadow:inset 0 0 0 transparent\",\"padding:0 10px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"input.form-control\":false},[\"font-size:14px\",\"height:45px\",\"line-height:45px\"]],[false,\"}\"],[false,{\"textarea.form-control\":false},[\"font-family:Raleway,sans-serif\",\"font-weight:500\",\"width:100%\",\"font-size:12px\",\"background:#dfdfdf\",\"color:grey\",\"height:140px\",\"border:0 solid #343636\",\"margin-bottom:10px\",\"border-radius:0\",\"-moz-border-radius:0\",\"-webkit-border-radius:0\",\"-webkit-box-shadow:inset 0 0 0 transparent\",\"box-shadow:inset 0 0 0 transparent\",\"padding:10px\",\"resize:none\"]],[false,\"@media (min-width:1400px){\"],[false,{\"textarea.form-control\":false},[\"font-size:14px\"]],[false,\"}\"],[false,{\".btn\":false},[\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"border-radius:0\",\"-moz-border-radius:0\",\"-webkit-border-radius:0\",\"font-family:Raleway,sans-serif\",\"display:inline-block\",\"display:inline-block\",\"line-height:40px\",\"color:#fff\",\"border:0 solid #343636\",\"background-color:#152649\",\"font-size:14px\",\"font-weight:500\",\"text-align:center\",\"padding:0 20px\",\"margin-bottom:50px\"]],[false,\"@media (max-width:992px){\"],[false,{\".btn\":false},[\"width:100%\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".btn\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".btn:hover\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".btn1\":false},[\"display:inline-block\",\"background:#90f247\",\"background:-moz-linear-gradient(left,#90f247 0,#00debb 100%)\",\"background:-webkit-linear-gradient(left,#90f247 0,#00debb 100%)\",\"background:linear-gradient(to right,#90f247 0,#00debb 100%)\",\"padding:2px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\"]],[false,{\".btn1 .mask-btn\":false},[\"width:100%\",\"padding:10px 9px 10px 9px\",\"background-color:#fff\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:15px\",\"font-size:16px\",\"color:#152649\",\"-webkit-transition:all .4s ease-in-out\",\"-moz-transition:all .4s ease-in-out\",\"transition:all .4s ease-in-out\"]],[false,{\".btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,\"@media (min-width:1400px){\"],[false,{\".btn1 .mask-btn\":false},[\"padding:20px 20px 20px 19px\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\",\"line-height:17px\",\"font-size:18px\"]],[false,\"}\"],[false,{\".btn-learn\":false},[\"width:auto\",\"display:inline-block\",\"padding:10px 20px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"background-color:#152649\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:15px\",\"font-size:16px\",\"color:#fff\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".btn-learn:hover\":false},[\"background-color:#0c1832\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".btn-learn\":false},[\"padding:20px 30px\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\",\"line-height:17px\",\"font-size:18px\"]],[false,{\".btn-learn:hover\":false},[\"border-radius:8px\",\"-moz-border-radius:8px\",\"-webkit-border-radius:8px\"]],[false,\"}\"],[false,{\".btn-how\":false},[\"width:auto\",\"display:inline-block\",\"padding:10px 20px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"background-color:#fff\",\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:15px\",\"font-size:16px\",\"color:#3e3e3e\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"margin-top:10px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".btn-how:hover\":false},[\"background-color:#0c1832\",\"color:#fff\"]],[false,\"@media (min-width:1400px){\"],[false,{\".btn-how\":false},[\"padding:20px 30px\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\",\"line-height:17px\",\"font-size:18px\",\"font-weight:600\"]],[false,{\".btn-how:hover\":false},[\"border-radius:8px\",\"-moz-border-radius:8px\",\"-webkit-border-radius:8px\"]],[false,\"}\"],[false,{\".ajax-loader:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[true,{\"::-webkit-input-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\":-moz-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\"::-moz-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\":-ms-input-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:grey\"]],[true,{\"header\":true},[\"top:0\",\"width:100%\",\"height:100px\",\"position:fixed\",\"background-color:#fff\",\"z-index:3\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[true,{\"header .row\":true},[\"margin:0\"]],[true,\"@media (min-width:1400px){\"],[true,{\"header\":true},[\"height:120px\"]],[true,\"}\"],[false,{\"header .logo\":false},[\"line-height:100px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header .logo amp-img\":false,\"header .logo amp-anim\":false},[\"height:30px\",\"margin-left:15px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header .logo\":false},[\"line-height:120px\"]],[false,{\"header .logo amp-img\":false,\"header .logo amp-anim\":false},[\"height:50px\"]],[false,\"}\"],[false,{\"header .min-header\":false},[\"color:#152649\",\"font-size:30px\",\"text-align:right\",\"line-height:100px\",\"display:none\",\"cursor:pointer\",\"margin-right:15px\"]],[false,\"@media (max-width:992px){\"],[false,{\"header .min-header\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header .min-header\":false},[\"line-height:120px\",\"font-size:50px\"]],[false,\"}\"],[false,{\"header .divmenu\":false},[\"text-align:right\"]],[false,{\"header .menu-menu-interna-container\":false,\"header .menu-menu-principal-container\":false},[\"display:inline-block\"]],[false,{\"header #menu\":false},[\"width:100%\",\"margin:0\",\"padding:0\",\"text-align:right\"]],[false,{\"header #menu li\":false},[\"position:relative\",\"list-style:none\",\"display:inline-block\",\"color:#152649\",\"font-size:13px\",\"padding:0 15px\",\"line-height:100px\",\"text-align:center\",\"font-weight:700\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header #menu li:after\":false},[\"width:0\",\"height:7px\",\"top:50%\",\"margin-top:-3px\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background:#adf231\",\"background:-webkit-linear-gradient(left,#adf231 0,#00dbc5 100%)\",\"background:-o-linear-gradient(left,#adf231 0,#00dbc5 100%)\",\"background:linear-gradient(to right,#adf231 0,#00dbc5 100%)\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"z-index:-1\"]],[false,{\"header #menu li.current-menu-ancestor:after\":false,\"header #menu li.current_page_item:after\":false},[\"width:100%\"]],[false,{\"header #menu li:hover:after\":false},[\"width:100%\"]],[false,\"@media (max-width:992px){\"],[false,{\"header #menu\":false},[\"background-color:#fff\",\"display:none\",\"width:200%\",\"right:0\",\"top:100px\",\"position:absolute\"]],[false,{\"header #menu li\":false},[\"width:100%\",\"display:block\",\"line-height:40px\"]],[false,{\"header #menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header #menu\":false},[\"top:120px\"]],[false,{\"header #menu li\":false},[\"line-height:120px\",\"font-size:15px\"]],[false,\"}\"],[false,{\"header #menu .sub-menu\":false},[\"width:200px\",\"background-color:#fff\",\"display:none\",\"position:absolute\",\"padding:0\",\"text-align:left\",\"margin-left:-15px\",\"margin-top:-20px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header #menu .sub-menu li\":false},[\"display:block\",\"color:#727272\",\"font-weight:400\",\"padding:0 15px\",\"text-align:left\"]],[false,{\"header #menu .sub-menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"line-height:18px\",\"margin:15px 0\"]],[false,{\"header #menu .sub-menu li:hover\":false},[\"color:#00debb\"]],[false,\"@media (max-width:992px){\"],[false,{\"header #menu .sub-menu\":false},[\"position:relative\",\"width:100%\"]],[false,{\"header #menu .sub-menu:not(#_#_#_#_#_#_#_#_#_)\":false},[\"display:block\",\"margin:0\",\"padding:0\"]],[false,{\"header #menu .sub-menu li\":false},[\"color:#152649\",\"font-size:13px\",\"line-height:18px\",\"text-align:center\",\"font-weight:700\",\"margin:15px 0\"]],[false,{\"header #menu .sub-menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header #menu .sub-menu li\":false},[\"line-height:60px\",\"font-size:15px\"]],[false,\"}\"],[false,{\"header .menu-item-has-children:hover .sub-menu:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\"header.mini\":false},[\"height:80px\",\"-webkit-box-shadow:0 0 20px 1px rgba(0,0,0,.1)\",\"box-shadow:0 0 20px 1px rgba(0,0,0,.1)\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini\":false},[\"height:100px\"]],[false,\"}\"],[false,{\"header.mini .logo\":false},[\"line-height:80px\"]],[false,{\"header.mini .logo amp-img\":false,\"header.mini .logo amp-anim\":false},[\"height:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini .logo\":false},[\"line-height:100px\"]],[false,{\"header.mini .logo amp-img\":false,\"header.mini .logo amp-anim\":false},[\"height:40px\"]],[false,\"}\"],[false,{\"header.mini .min-header\":false},[\"line-height:80px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini .min-header\":false},[\"line-height:100px\"]],[false,\"}\"],[false,{\"header.mini #menu li\":false},[\"line-height:80px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini #menu li\":false},[\"line-height:100px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\"header.mini #menu\":false},[\"top:80px\"]],[false,{\"header.mini #menu li:not(#_#_#_#_#_#_#_#_#_)\":false},[\"line-height:50px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\"header.mini #menu\":false},[\"top:100px\"]],[false,{\"header.mini #menu li\":false},[\"line-height:100px\"]],[false,\"}\"],[false,{\"header.mini .sub-menu\":false},[\"width:200px\",\"background-color:#fff\",\"display:none\",\"position:absolute\",\"padding:0\",\"text-align:left\",\"margin-left:-15px\",\"margin-top:40px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"header.mini .sub-menu:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-bottom:10px\"]],[false,{\"header.mini .sub-menu li\":false},[\"display:block\",\"color:#727272\",\"font-weight:400\",\"text-align:left\",\"margin:15px 0\"]],[false,{\"header.mini .sub-menu li:not(#_#_#_#_#_#_#_#_)\":false},[\"padding:0 15px\",\"line-height:15px\",\"line-height:40px\"]],[false,\"@media (max-width:992px){\"],[false,{\"header.mini .sub-menu li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin:0\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\"header #menu-item-42>a:not(#_#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,\"}\"],[true,{\"h1\":true},[\"position:relative\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:90px\",\"font-size:90px\",\"color:#152649\",\"margin:0 0 5px\"]],[true,\"@media (min-width:1400px){\"],[true,{\"h1\":true},[\"font-size:110px\",\"line-height:110px\"]],[true,\"}\"],[true,{\"h2\":true},[\"position:relative\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:40px\",\"font-size:40px\",\"color:#152649\",\"margin:0 0 5px\"]],[true,{\"h2 small\":true},[\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:40px\",\"font-size:40px\"]],[false,{\"h2.white\":false},[\"color:#fff\",\"margin-top:20px\",\"margin-bottom:10px\"]],[true,{\"h2 strong\":true},[\"color:#a1f350\"]],[true,\"@media (min-width:1400px){\"],[true,{\"h2\":true},[\"font-size:60px\",\"line-height:60px\"]],[true,{\"h2 small\":true},[\"font-size:60px\",\"line-height:60px\"]],[true,\"}\"],[true,{\"h3\":true},[\"position:relative\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"color:#152649\",\"margin:0 0 5px\"]],[false,{\"h3.topspace\":false},[\"margin-top:90px\",\"margin-bottom:40px\"]],[false,{\".top-info\":false},[\"width:100%\",\"height:1px\",\"background:-moz-linear-gradient(left,rgba(43,154,199,0) 0,rgba(43,154,199,.84) 21%,#48a8cf 25%,#ccc 50%,#bff466 75%,rgba(183,243,84,.88) 78%,rgba(183,243,84,0) 100%)\",\"background:-webkit-linear-gradient(left,rgba(43,154,199,0) 0,rgba(43,154,199,.84) 21%,#48a8cf 25%,#ccc 50%,#bff466 75%,rgba(183,243,84,.88) 78%,rgba(183,243,84,0) 100%)\",\"background:linear-gradient(to right,rgba(43,154,199,0) 0,rgba(43,154,199,.84) 21%,#48a8cf 25%,#ccc 50%,#bff466 75%,rgba(183,243,84,.88) 78%,rgba(183,243,84,0) 100%)\"]],[false,{\".top-info-devops\":false},[\"width:100%\",\"height:1px\",\"background:#2c9ac7\",\"background:-moz-linear-gradient(left,#2c9ac7 0,#fff 100%)\",\"background:-webkit-linear-gradient(left,#2c9ac7 0,#fff 100%)\",\"background:linear-gradient(to right,#2c9ac7 0,#fff 100%)\",\"margin-bottom:25px\"]],[false,{\".line-gray\":false},[\"width:100%\",\"height:1px\",\"background-color:#ccc\",\"margin:50px 0\"]],[false,{\".top\":false},[\"width:100%\",\"position:relative\",\"margin-top:100px\",\"background-color:#fff\",\"color:#a3a3a3\",\"display:table\"]],[false,{\".top .wrap-top\":false},[\"display:table-row\",\"width:100%\",\"height:100%\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,{\".top .wrap-top .content\":false},[\"display:table-cell\",\"width:100%\",\"height:100%\",\"vertical-align:middle\"]],[false,{\".top-home h2\":false},[\"position:relative\",\"margin-top:30px\",\"padding-top:30px\"]],[false,{\".top-home h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#6ecff4\"]],[false,{\".top-home h2:hover:after\":false},[\"width:70px\",\"background-color:#b7f254\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-home h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".top-home .wrap-top\":false},[\"text-align:center\"]],[false,{\".top-home .wrap-top:not(#_#_#_#_#_#_#_)\":false},[\"background-image:none\"]],[false,\"}\"],[false,{\".services\":false},[\"width:100%\",\"position:relative\",\"background-color:#f8f8f8\",\"padding-bottom:100px\"]],[false,\"@media (max-width:992px){\"],[false,{\".services\":false},[\"padding-bottom:50px\"]],[false,\"}\"],[false,{\".services .top-info\":false},[\"margin-bottom:100px\"]],[false,{\".services .info-text\":false},[\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:35px\",\"font-size:25px\",\"color:#8c8c8c\",\"text-align:center\",\"margin-bottom:100px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".services .info-text\":false},[\"line-height:43px\",\"font-size:33px\"]],[false,\"}\"],[false,{\".services .service\":false},[\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:35px\",\"font-size:25px\",\"color:#152649\",\"text-align:center\"]],[false,{\".services .service .icon\":false},[\"text-align:center\",\"border-right:1px solid #ccc\",\"margin-bottom:50px\"]],[false,{\".services .service .icon.last\":false},[\"border:0\"]],[false,{\".services .service .icon amp-img\":false,\".services .service .icon amp-anim\":false},[\"max-height:140px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".services .service .icon amp-img\":false,\".services .service .icon amp-anim\":false},[\"max-height:170px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".services .service .icon\":false},[\"border:0\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".services .service\":false},[\"margin-bottom:50px\"]],[false,\"}\"],[false,{\".wephrase\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:60px\",\"font-size:60px\",\"color:#152649\"]],[false,{\".wephrase .wrap-phrase\":false},[\"display:inline-block\"]],[false,{\".wephrase .dot\":false},[\"display:inline-block\",\"color:#b7f254\",\"animation:blinker 1s linear infinite\"]],[true,\"@keyframes blinker{\"],[true,\"50%{opacity:0}\"],[true,\"}\"],[false,{\".microservices\":false},[\"width:100%\",\"position:relative\",\"background-color:#efefef\",\"-webkit-box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices\":false},[\"height:auto\"]],[false,{\".microservices:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".microservices\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".microservices .service-padding\":false},[\"padding:100px 0\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-microservices.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top -30px right\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".microservices amp-img\":false,\".microservices amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices amp-img\":false,\".microservices amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".microservices amp-img\":false,\".microservices amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,{\".microservices h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".microservices h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#b8b8b8\"]],[false,{\".microservices h2:hover:after\":false},[\"width:70px\",\"background-color:#b7f254\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".microservices .btn1 .mask-btn\":false},[\"background-color:#efefef\"]],[false,{\".microservices .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,\"@media (max-width:992px){\"],[false,{\".microservices .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".machine_learning\":false},[\"width:100%\",\"position:relative\",\"background-color:#f2f2f2\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning\":false},[\"height:auto\"]],[false,{\".machine_learning:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".machine_learning\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".machine_learning h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".machine_learning h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#b993e7\"]],[false,{\".machine_learning h2:hover:after\":false},[\"width:70px\",\"background-color:#1ab7d5\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".machine_learning .btn1\":false},[\"background:#9061d7\",\"background:-moz-linear-gradient(left,#9061d7 0,#2c99c8 100%)\",\"background:-webkit-linear-gradient(left,#9061d7 0,#2c99c8 100%)\",\"background:linear-gradient(to right,#9061d7 0,#2c99c8 100%)\"]],[false,{\".machine_learning .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\"]],[false,{\".machine_learning .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".machine_learning .service-padding\":false},[\"padding:100px 0\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-ml.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top -10px right\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".machine_learning .wrap-image\":false},[\"text-align:right\"]],[false,{\".machine_learning amp-img\":false,\".machine_learning amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning amp-img\":false,\".machine_learning amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".machine_learning amp-img\":false,\".machine_learning amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,{\".machine_learning .subitems .item:after\":false},[\"background:#2c99c8\",\"background:-moz-linear-gradient(top,#2c99c8 0,#9061d7 100%)\",\"background:-webkit-linear-gradient(top,#2c99c8 0,#9061d7 100%)\",\"background:linear-gradient(to bottom,#2c99c8 0,#9061d7 100%)\"]],[false,\"@media (max-width:992px){\"],[false,{\".machine_learning .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".digital_transformation\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation\":false},[\"height:auto\"]],[false,{\".digital_transformation:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".digital_transformation\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".digital_transformation h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".digital_transformation h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".digital_transformation h2:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".digital_transformation .btn1\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to right,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".digital_transformation .btn1 .mask-btn\":false},[\"background-color:#fff\"]],[false,{\".digital_transformation .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".digital_transformation .service-padding\":false},[\"padding:100px 0\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".digital_transformation .wrap-image\":false},[\"text-align:right\"]],[false,{\".digital_transformation amp-img\":false,\".digital_transformation amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation amp-img\":false,\".digital_transformation amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".digital_transformation amp-img\":false,\".digital_transformation amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,{\".digital_transformation .subitems .item:after\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to bottom,#02c6d9 0,#05d2d9 100%)\"]],[false,\"@media (max-width:992px){\"],[false,{\".digital_transformation .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".devops\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"-webkit-box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"box-shadow:inset 0 -20px 70px 0 rgba(0,0,0,.2)\",\"padding:0 0\",\"height:450px\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops\":false},[\"height:auto\"]],[false,{\".devops:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".devops\":false},[\"height:550px\"]],[false,\"}\"],[false,{\".devops h2\":false},[\"margin-bottom:20px\",\"padding-top:30px\"]],[false,{\".devops h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#95f896\"]],[false,{\".devops h2:hover:after\":false},[\"width:70px\",\"background-color:#2d98c6\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".devops .service-padding\":false},[\"padding:100px 0\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-devops.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top right\",\"position:relative\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops .service-padding\":false},[\"padding:50px 15px\"]],[false,\"}\"],[false,{\".devops amp-img\":false,\".devops amp-anim\":false},[\"height:500px\"]],[false,\"@media (max-width:992px){\"],[false,{\".devops amp-img\":false,\".devops amp-anim\":false},[\"height:auto\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".devops amp-img\":false,\".devops amp-anim\":false},[\"height:600px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".devops .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".call_to_action\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"text-align:center\",\"padding:50px 0\"]],[false,{\".call_to_action.about-box\":false},[\"background-color:#f7f7f7\",\"-webkit-box-shadow:inset 0 -10px 30px -10px rgba(0,0,0,.3)\",\"box-shadow:inset 0 -10px 30px -10px rgba(0,0,0,.3)\"]],[false,{\".call_to_action.about-box .btn1 .mask-btn\":false},[\"background-color:#f7f7f7\"]],[false,{\".call_to_action.about-box .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process\":false},[\"width:100%\",\"position:relative\",\"background-color:#ccc\",\"overflow:hidden\"]],[false,{\".process .process-item\":false},[\"width:100%\",\"padding:80px\",\"height:500px\"]],[false,{\".process .process-item p\":false},[\"height:100px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process .process-item p\":false},[\"height:130px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item:not(#_#_#_#_#_#_#_)\":false},[\"padding:80px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".process .process-item\":false},[\"height:600px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".process\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".process .process-item-1\":false},[\"position:relative\",\"background:#15a3cc\",\"background:-moz-linear-gradient(left,#15a3cc 0,#15b5d5 100%)\",\"background:-webkit-linear-gradient(left,#15a3cc 0,#15b5d5 100%)\",\"background:linear-gradient(to right,#15a3cc 0,#15b5d5 100%)\"]],[false,{\".process .process-item-1:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:28px\",\"height:97px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrow1.png\\\")\",\"top:3px\",\"right:-28px\",\"z-index:2\"]],[false,{\".process .process-item-1 h2.white\":false},[\"position:relative\",\"padding-top:30px\"]],[false,{\".process .process-item-1 h2.white:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#6ecff4\"]],[false,{\".process .process-item-1 h2.white:hover:after\":false},[\"width:70px\",\"background-color:#152649\"]],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item-1 h2.white:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process .process-item-2\":false},[\"position:relative\",\"padding-top:125px\",\"background:#c4c4c4\",\"background:-moz-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:-webkit-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:linear-gradient(to right,#c4c4c4 0,#ccc 100%)\"]],[false,{\".process .process-item-2:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:28px\",\"height:97px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrow2.png\\\")\",\"top:3px\",\"right:-28px\",\"z-index:2\"]],[false,{\".process .process-item-2 h2.white\":false},[\"position:relative\",\"padding-top:30px\"]],[false,{\".process .process-item-2 h2.white:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background:#878787\",\"background:-moz-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:-webkit-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:linear-gradient(to right,#878787 0,#aeaeae 100%)\"]],[false,{\".process .process-item-2 h2.white:hover:after\":false},[\"width:70px\",\"background-color:#878787\"]],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item-2 h2.white:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process .process-item-3\":false},[\"position:relative\",\"padding-top:125px\",\"background:-moz-linear-gradient(left,#00debb 0,#90f247 100%)\",\"background:-webkit-linear-gradient(left,#00debb 0,#90f247 100%)\",\"background:linear-gradient(to right,#00debb 0,#90f247 100%)\"]],[false,{\".process .process-item-3 h2.white\":false},[\"position:relative\",\"padding-top:30px\"]],[false,{\".process .process-item-3 h2.white:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#6ecff4\"]],[false,{\".process .process-item-3 h2.white:hover:after\":false},[\"width:70px\",\"background-color:#152649\"]],[false,\"@media (max-width:992px){\"],[false,{\".process .process-item-3 h2.white:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".case_study\":false},[\"width:100%\",\"position:relative\",\"background-color:#f1f1f1\",\"padding:100px 0 70px\"]],[false,\"@media (max-width:992px){\"],[false,{\".case_study\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".case_study h2\":false},[\"margin-bottom:20px\",\"position:relative\",\"padding-top:50px\"]],[false,{\".case_study h2:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#b8b8b8\"]],[false,{\".case_study h2:hover:after\":false},[\"width:70px\"]],[false,\"@media (max-width:992px){\"],[false,{\".case_study h2:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".case_study .btn1\":false},[\"margin-top:30px\"]],[false,{\".case_study .btn1 .mask-btn\":false},[\"background-color:#f1f1f1\"]],[false,{\".case_study .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".case_study .wrap-image\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-case-home.png\\\")\",\"background-repeat:no-repeat\",\"background-position:top center\",\"background-size:100% auto\"]],[false,\"@media (max-width:992px){\"],[false,{\".case_study .wrap-image\":false},[\"margin-top:40px\"]],[false,\"}\"],[false,{\".partners\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"text-align:center\",\"padding:50px 0\"]],[false,{\".partners .owl-dots\":false},[\"width:100%\",\"position:relative\",\"text-align:center\"]],[false,{\".partners .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".partners .owl-dots .owl-dot\":false},[\"width:6px\",\"height:6px\",\"background-color:#ccc\",\"display:inline-block\",\"margin:0 10px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\"]],[false,{\".partners .owl-dots .owl-dot.active\":false},[\"background-color:#3b3b3b\"]],[false,{\".about-intern\":false},[\"background-color:#f7f7f7\",\"color:#152649\",\"font-size:13px\"]],[false,{\".about-intern h1\":false},[\"font-size:50px\",\"line-height:50px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-intern\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".about-intern .btn1\":false},[\"margin-bottom:20px\"]],[false,{\".about-intern .btn1 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".about-intern .wrap-top\":false},[\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:bottom center\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-intern .wrap-top\":false},[\"text-align:center\"]],[false,{\".about-intern .wrap-top:not(#_#_#_#_#_#_#_)\":false},[\"background-image:none\"]],[false,\"}\"],[false,{\".cases-intern\":false},[\"background-color:#fff\",\"color:#fff\",\"font-size:13px\",\"background-position:right\",\"background-repeat:no-repeat\",\"background-size:auto 100%\"]],[false,\"@media (max-width:992px){\"],[false,{\".cases-intern\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".cases-intern\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".cases-intern h1\":false},[\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:40px\",\"font-size:40px\",\"color:#fff\",\"margin:0 0 5px\"]],[false,{\".cases-intern h1 small\":false},[\"color:#00ddbd\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:20px\",\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".cases-intern h1\":false},[\"line-height:50px\",\"font-size:50px\"]],[false,{\".cases-intern h1 small\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".cases-intern .wrap-top\":false},[\"background:-moz-linear-gradient(left,#002048 0,rgba(0,32,72,.1) 50%,rgba(0,32,72,0) 65%,rgba(0,32,72,0) 100%)\",\"background:-webkit-linear-gradient(left,#002048 0,#002048 50%,rgba(0,32,72,0) 65%,rgba(0,32,72,0) 100%)\",\"background:linear-gradient(to right,#002048 0,#002048 50%,rgba(0,32,72,0) 65%,rgba(0,32,72,0) 100%)\"]],[false,\"@media (max-width:992px){\"],[false,{\".cases-intern .wrap-top\":false},[\"background:#002048\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".content-cases\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".content-cases .gray\":false},[\"font-size:14px\",\"background-color:#f7f7f7\",\"color:#6b6b6b\",\"padding:40px 40px 20px\",\"margin-top:-60px\",\"margin-bottom:50px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".content-cases .gray\":false},[\"font-size:16px\",\"line-height:18px\"]],[false,\"}\"],[false,{\".content-cases h3\":false},[\"color:#6b6b6b\",\"font-family:Rajdhani\",\"font-weight:700\",\"line-height:20px\",\"font-size:20px\",\"margin-bottom:10px\"]],[false,{\".content-cases .content-cases2\":false},[\"color:#6b6b6b\",\"padding:50px 0 30px\"]],[false,{\".content-cases .bg-gray\":false},[\"font-size:14px\",\"background-color:#f7f7f7\",\"color:#6b6b6b\",\"padding:15px\",\"margin-bottom:50px\"]],[false,{\".content-cases .content-downgray\":false},[\"text-align:center\"]],[false,{\".content-cases .content-downgray amp-img\":false,\".content-cases .content-downgray amp-anim\":false},[\"max-width:60%\"]],[false,{\".content-cases .content-downgray .top-info\":false},[\"margin:70px 0\"]],[false,{\".content-cases .owl-dots\":false},[\"margin-top:20px\",\"width:100%\",\"position:relative\",\"text-align:center\"]],[false,{\".content-cases .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".content-cases .owl-dots .owl-dot\":false},[\"width:6px\",\"height:6px\",\"background-color:#ccc\",\"display:inline-block\",\"margin:0 10px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\"]],[false,{\".content-cases .owl-dots .owl-dot.active\":false},[\"background-color:#3b3b3b\"]],[false,{\".content-cases .gallery-cases\":false},[\"margin-top:70px\"]],[false,{\".content-cases .gallery-cases amp-img\":false,\".content-cases .gallery-cases amp-anim\":false},[\"border:2px solid #ccc\",\"border-radius:5px\",\"-moz-border-radius:5px\",\"-webkit-border-radius:5px\"]],[false,{\".content-cases .gallery-cases amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".content-cases .gallery-cases amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:100%\"]],[false,{\".process-intern\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"color:#b2b2b2\",\"font-size:20px\",\"line-height:40px\",\"font-family:Rajdhani\",\"font-weight:700\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process-intern\":false},[\"font-size:30px\",\"line-height:50px\"]],[false,\"}\"],[false,{\".process-intern .wrap-top\":false},[\"background-position:bottom center\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\"]],[false,\"@media (max-width:992px){\"],[false,{\".process-intern .wrap-top\":false},[\"background-position:bottom center\",\"text-align:center\"]],[false,{\".process-intern .wrap-top:not(#_#_#_#_#_#_#_)\":false},[\"background-image:none\"]],[false,\"}\"],[false,{\".about-process\":false},[\"width:100%\",\"position:relative\",\"background-color:#f1f1f1\",\"padding:70px 0\",\"text-align:center\"]],[false,{\".about-process .wephrase\":false},[\"font-size:35px\",\"line-height:35px\",\"margin-bottom:30px\"]],[false,{\".about-process .top-info\":false},[\"margin-top:100px\"]],[false,{\".line-process\":false},[\"width:60%\",\"height:1px\",\"margin:50px 20%\",\"background:#2b9ac7\",\"background:-moz-linear-gradient(left,#2b9ac7 0,#fff 100%)\",\"background:-webkit-linear-gradient(left,#2b9ac7 0,#fff 100%)\",\"background:linear-gradient(to right,#2b9ac7 0,#fff 100%)\"]],[false,{\".process-part\":false},[\"width:100%\",\"position:relative\",\"padding:70px 0\",\"font-size:13px\"]],[false,\"@media (max-width:992px){\"],[false,{\".process-part .btn1\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".process-part\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".process1\":false},[\"background-color:#15a7ce\",\"color:#002048\",\"font-weight:500\"]],[false,{\".process1 h2\":false},[\"color:#fff\",\"line-height:20px\"]],[false,{\".process1 h2 small\":false},[\"color:#98e36c\",\"font-size:18px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process1 h2\":false},[\"line-height:50px\"]],[false,{\".process1 h2 small\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".process1 h3\":false},[\"color:#fff\",\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process1 h3\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".process1 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process1:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:70px\",\"height:35px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrowd1.png\\\")\",\"background-position:bottom center\",\"bottom:-35px\",\"margin-left:50%\",\"left:-35px\",\"z-index:2\"]],[false,{\".process1 .lineb\":false},[\"width:2px\",\"height:600px\",\"margin:0 auto\",\"background-color:rgba(255,255,255,.2)\"]],[false,{\".process1 .centro\":false},[\"text-align:center\"]],[false,{\".process1 .centro amp-img\":false,\".process1 .centro amp-anim\":false},[\"max-width:100px\"]],[false,\"@media (max-width:992px){\"],[false,{\".process1 .centro\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process2\":false},[\"background-color:#d7d7d7\",\"color:#565656\",\"font-weight:500\"]],[false,{\".process2 h2\":false},[\"margin-bottom:30px\"]],[false,{\".process2 h3\":false},[\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process2 h3\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".process2 .check-items\":false},[\"margin:20px 0\"]],[false,{\".process2 .check-items .icheck\":false},[\"position:relative\",\"padding-left:30px\",\"min-height:30px\",\"font-size:20px\",\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:20px\",\"padding-top:5px\"]],[false,{\".process2 .check-items .icheck:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:20px\",\"height:100%\",\"top:0\",\"left:0\",\"background-repeat:no-repeat\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/checkb.png\\\")\",\"background-position:center\",\"background-size:100% auto\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process2 .check-items .icheck\":false},[\"font-size:23px\",\"line-height:23px\"]],[false,\"}\"],[false,{\".process2 .btn1\":false},[\"background:#c4c4c4\",\"background:-moz-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:-webkit-linear-gradient(left,#c4c4c4 0,#ccc 100%)\",\"background:linear-gradient(to right,#c4c4c4 0,#ccc 100%)\"]],[false,{\".process2 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process2:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:70px\",\"height:35px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrowd2.png\\\")\",\"background-position:bottom center\",\"bottom:-35px\",\"margin-left:50%\",\"left:-35px\",\"z-index:2\"]],[false,\"@media (max-width:992px){\"],[false,{\".process2 amp-img\":false,\".process2 amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".process3\":false},[\"color:#002048\",\"background:#38cea3\",\"background:-moz-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:-webkit-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:linear-gradient(to right,#38cea3 0,#75e168 100%)\",\"font-weight:500\"]],[false,{\".process3 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,{\".process3 h2\":false},[\"color:#fff\"]],[false,{\".process3 .check-items\":false},[\"margin:20px 0\"]],[false,{\".process3 .check-items .icheck\":false},[\"position:relative\",\"padding-left:15px\",\"padding-left:10px\",\"margin-left:35px\",\"min-height:30px\",\"font-size:14px\",\"font-family:Rajdhani\",\"font-weight:500\",\"line-height:20px\",\"margin-bottom:20px\",\"border-left:1px solid #fff\"]],[false,{\".process3 .check-items .icheck:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:20px\",\"height:100%\",\"top:0\",\"left:-35px\",\"background-repeat:no-repeat\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/checkb.png\\\")\",\"background-position:left center\",\"background-size:100% auto\"]],[false,\"@media (min-width:1400px){\"],[false,{\".process3 .check-items .icheck\":false},[\"font-size:23px\",\"line-height:23px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".process3 amp-img\":false,\".process3 amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".end-process\":false},[\"width:100%\",\"position:relative\",\"background-color:#f6f6f6\",\"padding:70px 0\",\"text-align:center\"]],[false,{\".end-process .wephrase\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,{\".end-process .logos\":false},[\"text-align:center\",\"margin-top:50px\"]],[false,{\".end-process .logos amp-img\":false,\".end-process .logos amp-anim\":false},[\"display:inline-block\",\"height:90px\",\"margin:0 30px\",\"-webkit-transition:all .2s ease-in-out\",\"-moz-transition:all .2s ease-in-out\",\"transition:all .2s ease-in-out\",\"-webkit-filter:grayscale(100%)\"]],[false,{\".end-process .logos amp-img:hover\":false,\".end-process .logos amp-anim:hover\":false},[\"-webkit-filter:grayscale(0)\"]],[false,{\".end-process .logos amp-img.menor\":false,\".end-process .logos amp-anim.menor\":false},[\"height:80px\"]],[false,\"@media (max-width:992px){\"],[false,{\".end-process .logos amp-img\":false,\".end-process .logos amp-anim\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".end-process .logos amp-img\":false,\".end-process .logos amp-anim\":false},[\"height:120px\"]],[false,{\".end-process .logos amp-img.menor\":false,\".end-process .logos amp-anim.menor\":false},[\"height:110px\"]],[false,\"}\"],[false,{\".top-service\":false},[\"width:100%\",\"height:370px\",\"position:relative\",\"margin-top:120px\",\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"color:#fff\",\"display:table\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".top-service .wrap-top\":false},[\"display:table-row\",\"width:100%\",\"height:100%\"]],[false,{\".top-service .wrap-top .content\":false},[\"display:table-cell\",\"width:100%\",\"height:100%\",\"vertical-align:middle\",\"font-size:12px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".top-service .wrap-top .content\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".top-service .logo\":false},[\"margin-left:-10px\",\"margin-bottom:10px\"]],[false,{\".top-service .logo amp-google-document-embed\":false},[\"width:110px\"]],[false,{\".top-service .logo amp-img\":false,\".top-service .logo amp-anim\":false},[\"width:110px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".top-service .logo amp-img\":false,\".top-service .logo amp-anim\":false},[\"width:150px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".top-service .logo\":false},[\"margin-left:0\"]],[false,\"}\"],[false,{\".top-service h1\":false},[\"color:#fff\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".top-service.service-devops\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-devops\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-machine\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-machine\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-micro\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-micro\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-digital\":false},[\"background:#000829\",\"background:-moz-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:-webkit-linear-gradient(left,#000829 0,#133d78 100%)\",\"background:linear-gradient(to right,#000829 0,#133d78 100%)\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\",\"color:#152649\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-service.service-digital\":false},[\"background-position:left center\"]],[false,\"}\"],[false,{\".top-service.service-digital h1\":false},[\"color:#152649\"]],[false,{\".disclaimer\":false},[\"width:100%\",\"position:relative\",\"padding:45px 0\"]],[false,{\".disclaimer.service-devops\":false},[\"background-color:#b7f254\",\"text-align:center\",\"font-size:13px\"]],[false,{\".disclaimer.service-devops .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-devops .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-devops\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".disclaimer.service-machine\":false},[\"background-color:#83adfb\",\"text-align:center\",\"font-size:13px\"]],[false,{\".disclaimer.service-machine .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-machine .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-machine\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".disclaimer.service-micro\":false},[\"background-color:#152649\",\"text-align:center\",\"font-size:13px\",\"color:#fff\"]],[false,{\".disclaimer.service-micro .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-micro .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-micro\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".disclaimer.service-digital\":false},[\"background-color:#05bed4\",\"text-align:center\",\"font-size:13px\",\"color:#fff\"]],[false,{\".disclaimer.service-digital .big\":false},[\"font-size:30px\",\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:30px\",\"text-align:center\",\"margin-bottom:25px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-digital .big\":false},[\"font-size:40px\",\"line-height:40px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".disclaimer.service-digital\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".about-service\":false},[\"width:100%\",\"position:relative\",\"padding:0\",\"margin:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .btn:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".about-service .wrap-image\":false},[\"text-align:left\",\"padding-top:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .wrap-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".about-service ul\":false},[\"margin:0\",\"padding:0\"]],[false,{\".about-service li\":false},[\"list-style:none\",\"position:relative\",\"padding-left:30px\",\"min-height:30px\",\"font-size:14px\",\"font-family:Raleway\",\"font-weight:500\",\"line-height:18px\",\"padding-top:5px\",\"margin-bottom:20px\"]],[false,{\".about-service li:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:20px\",\"height:100%\",\"top:0\",\"left:0\",\"background-repeat:no-repeat\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/checkc.png\\\")\",\"background-position:center\",\"background-size:100% auto\"]],[false,{\".about-service.service-devops\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-devops .btn1\":false},[\"background:#cce191\",\"background:-moz-linear-gradient(left,#cce191 0,#ccc 50%,#7cb1cc 100%)\",\"background:-webkit-linear-gradient(left,#cce191 0,#ccc 50%,#7cb1cc 100%)\",\"background:linear-gradient(to right,#cce191 0,#ccc 50%,#7cb1cc 100%)\",\"margin-bottom:20px\"]],[false,{\".about-service.service-devops .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#767e8e\"]],[false,{\".about-service.service-devops .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service.service-machine\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-machine .btn1\":false},[\"background:#4e2e7c\",\"background:-moz-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:-webkit-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:linear-gradient(to right,#4e2e7c 0,#38a3cc 100%)\",\"margin-bottom:20px\"]],[false,{\".about-service.service-machine .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#767e8e\"]],[false,{\".about-service.service-machine .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service.service-micro\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-micro .btn1\":false},[\"background:#878787\",\"background:-moz-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:-webkit-linear-gradient(left,#878787 0,#aeaeae 100%)\",\"background:linear-gradient(to right,#878787 0,#aeaeae 100%)\",\"margin-bottom:20px\"]],[false,{\".about-service.service-micro .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#767e8e\"]],[false,{\".about-service.service-micro .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service.service-digital\":false},[\"background-color:#f2f2f2\",\"padding:0 0\"]],[false,{\".about-service.service-digital .btn1\":false},[\"margin-bottom:20px\",\"background:#02c6d9\",\"background:-moz-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to right,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".about-service.service-digital .btn1 .mask-btn\":false},[\"background-color:#f2f2f2\",\"color:#2d98c6\"]],[false,{\".about-service.service-digital .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about\":false},[\"padding:0\",\"color:#8c8c8c\",\"overflow:hidden\",\"position:relative\"]],[false,{\".about-service .content-about .clearfix\":false},[\"width:100%\"]],[false,{\".about-service .content-about .menu-items\":false},[\"margin-top:0\",\"margin-bottom:0\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .content-about .menu-items\":false},[\"margin:30px 0\",\"text-align:center\"]],[false,\"}\"],[false,{\".about-service .content-about .menu-items .btn\":false},[\"width:100%\",\"text-align:center\",\"line-height:50px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"font-family:Rajdhani\",\"font-weight:400\",\"margin-bottom:0\",\"margin-top:0\",\"font-size:20px\",\"text-transform:uppercase\"]],[false,{\".about-service .content-about .menu-items .active .btn\":false},[\"font-weight:700\"]],[false,{\".about-service .content-about .menu-items.service-devops\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-devops .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-devops .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-devops a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-devops a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-machine\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-machine .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-machine .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-machine a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-machine a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-micro\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-micro .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-micro .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-micro a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-micro a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-digital\":false},[\"font-family:Rajdhani\",\"font-weight:400\"]],[false,{\".about-service .content-about .menu-items.service-digital .btn\":false},[\"background-color:#dbdbde\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-digital .btn:hover\":false},[\"background-color:#152649\"]],[false,{\".about-service .content-about .menu-items.service-digital a.active .btn\":false},[\"background-color:#152649\",\"color:#fff\"]],[false,{\".about-service .content-about .menu-items.service-digital a.active .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".about-service .slider-about\":false},[\"line-height:16px\",\"padding-top:70px\"]],[false,{\".about-service .slider-about:not(#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-service .slider-about\":false},[\"line-height:18px\"]],[false,{\".about-service .slider-about:not(#_#_#_#_#_#_#_)\":false},[\"font-size:15px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".about-service .slider-about\":false},[\"text-align:center\"]],[false,{\".about-service .slider-about:not(#_#_#_#_#_#_#_)\":false},[\"font-size:13px\"]],[false,\"}\"],[false,{\".about-service .slider-about h3\":false},[\"font-size:22px\",\"line-height:22px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-service .slider-about h3\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".about-service .slider-about .hand-call\":false},[\"border-top:1px solid #143260\",\"padding-top:30px\",\"margin-top:10px\",\"display:inline-block\"]],[false,{\".about-service .slider-about .border\":false},[\"width:80%\",\"margin-top:20px\",\"margin-bottom:40px\",\"margin-left:10%\"]],[false,{\".about-service .slider-about .border:not(#_#_#_#_#_#_#_)\":false},[\"border:0\",\"border-bottom:1px solid #ccc\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-service .row\":false},[\"margin:0\"]],[false,\"}\"],[false,{\".intern-about\":false},[\"width:100%\",\"position:relative\",\"padding:70px 0\",\"background-color:#fff\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/bg-intern.jpg\\\")\",\"background-position:bottom center\",\"background-repeat:no-repeat\",\"background-size:100% auto\",\"text-align:center\",\"color:#8c8c8c\",\"font-family:Rajdhani\",\"font-weight:400\",\"font-size:20px\",\"line-height:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".intern-about\":false},[\"font-size:25px\",\"line-height:25px\"]],[false,\"}\"],[false,{\".intern-about .logos\":false},[\"text-align:center\",\"margin-top:50px\"]],[false,{\".intern-about .logos amp-img\":false,\".intern-about .logos amp-anim\":false},[\"display:inline-block\",\"height:90px\",\"margin:0 30px\",\"-webkit-transition:all .2s ease-in-out\",\"-moz-transition:all .2s ease-in-out\",\"transition:all .2s ease-in-out\",\"-webkit-filter:grayscale(100%)\"]],[false,{\".intern-about .logos amp-img:hover\":false,\".intern-about .logos amp-anim:hover\":false},[\"-webkit-filter:grayscale(0)\"]],[false,{\".intern-about .logos amp-img.menor\":false,\".intern-about .logos amp-anim.menor\":false},[\"height:80px\"]],[false,\"@media (max-width:992px){\"],[false,{\".intern-about .logos amp-img\":false,\".intern-about .logos amp-anim\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".intern-about .logos amp-img\":false,\".intern-about .logos amp-anim\":false},[\"height:120px\"]],[false,{\".intern-about .logos amp-img.menor\":false,\".intern-about .logos amp-anim.menor\":false},[\"height:110px\"]],[false,\"}\"],[false,{\".items-service\":false},[\"width:100%\",\"padding:0\",\"margin:0\",\"position:relative\"]],[false,{\".items-service.service-devops\":false},[\"background:#38cea3\",\"background:-moz-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:-webkit-linear-gradient(left,#38cea3 0,#75e168 100%)\",\"background:linear-gradient(to right,#38cea3 0,#75e168 100%)\"]],[false,{\".items-service.service-machine\":false},[\"background:#4e2e7c\",\"background:-moz-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:-webkit-linear-gradient(left,#4e2e7c 0,#38a3cc 100%)\",\"background:linear-gradient(to right,#4e2e7c 0,#38a3cc 100%)\"]],[false,{\".items-service.service-micro\":false},[\"background:#13203c\",\"background:-moz-linear-gradient(left,#13203c 0,#9d9c9c 100%)\",\"background:-webkit-linear-gradient(left,#13203c 0,#9d9c9c 100%)\",\"background:linear-gradient(to right,#13203c 0,#9d9c9c 100%)\"]],[false,{\".items-service.service-digital\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(left,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to right,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".items-service .box-item\":false},[\"position:relative\",\"height:300px\",\"overflow:hidden\"]],[false,\"@media (min-width:1400px){\"],[false,{\".items-service .box-item\":false},[\"height:350px\"]],[false,\"}\"],[false,{\".items-service .box-item .up\":false},[\"position:relative\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"width:100%\",\"height:300px\",\"padding:0\"]],[false,\"@media (min-width:1400px){\"],[false,{\".items-service .box-item .up\":false},[\"height:350px\"]],[false,\"}\"],[false,{\".items-service .box-item .up .bg-image\":false},[\"opacity:.5\",\"background-size:auto 110%\",\"background-position:center\",\"background-repeat:no-repeat\",\"width:100%\",\"height:100%\",\"position:absolute\",\"left:0\",\"top:0\",\"z-index:0\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".items-service .box-item .up .bg-image2\":false},[\"opacity:.5\",\"background-size:auto 110%\",\"background-position:center\",\"background-repeat:no-repeat\",\"width:100%\",\"height:100%\",\"position:absolute\",\"left:0\",\"top:0\",\"z-index:0\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".items-service .box-item .up .wrap-absol\":false},[\"width:100%\",\"height:100%\",\"position:absolute\",\"left:0\",\"top:0\",\"z-index:1\",\"display:table\",\"padding:20px\"]],[false,{\".items-service .box-item .up .wrap-content\":false},[\"display:table-row\",\"width:100%\",\"height:100%\",\"position:relative\"]],[false,{\".items-service .box-item .up .wrap-content .button\":false},[\"width:100%\",\"height:100%\",\"display:table-cell\",\"vertical-align:middle\",\"text-align:center\"]],[false,{\".items-service .box-item .up .wrap-content .btn1\":false},[\"background:0\"]],[false,{\".items-service .box-item .up .wrap-content .btn1:not(#_#_#_#_#_#_#_)\":false},[\"background-color:rgba(0,0,0,0)\"]],[false,{\".items-service .box-item .up .wrap-content .btn1 .mask-btn\":false},[\"border:1px solid #fff\",\"font-weight:500\",\"background-color:rgba(255,255,255,.3)\",\"color:#fff\"]],[false,{\".items-service .box-item .up .wrap-content .btn1 .mask-btn:hover\":false},[\"background-color:rgba(255,255,255,0)\",\"color:#fff\"]],[false,{\".items-service .box-item .up:hover .bg-image\":false,\".items-service .box-item .up:hover .bg-image2\":false},[\"background-size:auto 130%\"]],[false,{\".items-service .box-item .down\":false},[\"background:#38cea3\",\"background:-webkit-linear-gradient(top,#38cea3 0,#75e168 100%)\",\"background:-o-linear-gradient(top,#38cea3 0,#75e168 100%)\",\"background:linear-gradient(to bottom,#38cea3 0,#75e168 100%)\",\"width:100%\",\"height:300px\",\"padding:20px\",\"color:#fff\",\"font-size:13px\"]],[false,{\".items-service .box-item .down .wrap-all\":false},[\"width:100%\",\"height:260px\"]],[false,{\".items-service.service-machine .down\":false},[\"background:#4e2e7c\",\"background:-moz-linear-gradient(top,#4e2e7c 0,#38a3cc 100%)\",\"background:-webkit-linear-gradient(top,#4e2e7c 0,#38a3cc 100%)\",\"background:linear-gradient(to bottom,#4e2e7c 0,#38a3cc 100%)\"]],[false,{\".items-service.service-micro .down\":false},[\"background:#13203c\",\"background:-moz-linear-gradient(top,#13203c 0,#9d9c9c 100%)\",\"background:-webkit-linear-gradient(top,#13203c 0,#9d9c9c 100%)\",\"background:linear-gradient(to bottom,#13203c 0,#9d9c9c 100%)\"]],[false,{\".items-service.service-digital .down\":false},[\"background:#02c6d9\",\"background:-moz-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:-webkit-linear-gradient(top,#02c6d9 0,#05d2d9 100%)\",\"background:linear-gradient(to bottom,#02c6d9 0,#05d2d9 100%)\"]],[false,{\".phrase\":false},[\"width:100%\",\"position:relative\",\"padding:50px 0\",\"background-color:#ededed\",\"text-align:center\",\"font-family:Rajdhani\",\"font-weight:400\",\"font-size:20px\",\"line-height:20px\",\"color:#152649\"]],[false,{\".phrase .author\":false},[\"font-size:11px\",\"line-height:11px\",\"color:#9c9c9c\",\"text-transform:uppercase\",\"letter-spacing:5px\",\"margin-top:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".phrase\":false},[\"font-size:25px\",\"line-height:25px\"]],[false,{\".phrase .author\":false},[\"font-size:14px\",\"line-height:14px\"]],[false,\"}\"],[false,{\".about-idea\":false},[\"width:100%\",\"position:relative\",\"padding:50px 0\",\"background-color:#fff\"]],[false,{\".about-idea amp-img\":false,\".about-idea amp-anim\":false},[\"margin-top:35px\",\"margin-bottom:35px\"]],[false,{\".about-idea .btn1\":false},[\"width:100%\",\"text-align:center\"]],[false,{\".about-idea .btn1 .mask-btn\":false},[\"background-color:rgba(255,255,255,0)\"]],[false,\"@media (max-width:992px){\"],[false,{\".about-idea .btn1\":false},[\"margin-bottom:20px\"]],[false,\"}\"],[false,{\".about-idea .top-info\":false},[\"margin:50px 0\"]],[false,{\".about-idea .withborder\":false},[\"border-left:1px solid #ccc\",\"padding-top:10px\",\"margin-bottom:70px\",\"font-size:17px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-idea .withborder\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,\"}\"],[false,{\".about-idea .big\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"font-size:20px\",\"line-height:20px\",\"color:#152649\",\"margin-top:40px\",\"text-align:center\"]],[false,\"@media (min-width:1400px){\"],[false,{\".about-idea .big\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".about-idea\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".hand-call\":false},[\"font-family:Rajdhani\",\"font-weight:400\",\"line-height:22px\",\"font-size:22px\",\"color:#152649\",\"text-align:left\"]],[false,\"@media (min-width:1400px){\"],[false,{\".hand-call\":false},[\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".hand-call .border-call\":false},[\"padding-left:20px\",\"margin-bottom:20px\",\"position:relative\"]],[false,{\".hand-call .border-call:before\":false},[\"width:1px\",\"height:100%\",\"position:absolute\",\"content:\\\"\\\"\",\"left:0\",\"top:0\",\"background:#b5f155\",\"background:-moz-linear-gradient(top,#b5f155 0,#2e9cc5 100%)\",\"background:-webkit-linear-gradient(top,#b5f155 0,#2e9cc5 100%)\",\"background:linear-gradient(to bottom,#b5f155 0,#2e9cc5 100%)\"]],[false,{\".hand-call .arrow\":false},[\"padding-left:50px\",\"position:relative\",\"position:relative\"]],[false,{\".hand-call .arrow:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"top:0\",\"left:0\",\"width:30px\",\"height:44px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/arrow.png\\\")\"]],[false,{\".qualities\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"padding:50px 0\"]],[false,{\".qualities .hand-call\":false},[\"text-align:center\"]],[false,{\".qualities .hand-call .border-call\":false},[\"display:inline-block\",\"text-align:left\"]],[false,{\".qualities .hand-call .arrow\":false},[\"margin-left:20px\",\"display:inline-block\",\"text-align:left\"]],[false,{\".qualities .circles-menu\":false},[\"margin-top:0\",\"margin-bottom:50px\"]],[false,{\".qualities .circles-menu .text-circle:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".qualities .ctext\":false},[\"text-align:center\",\"font-size:13px\",\"font-weight:500\",\"margin-top:30px\",\"padding-top:30px\",\"position:relative\"]],[false,{\".qualities .ctext:after\":false},[\"width:70px\",\"height:6px\",\"border-radius:3px\",\"-moz-border-radius:3px\",\"-webkit-border-radius:3px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"top:0\",\"margin-left:50%\",\"left:-35px\",\"position:absolute\",\"content:\\\"\\\"\"]],[false,{\".qualities .ctext.text1:after\":false},[\"background-color:#9ef34b\"]],[false,{\".qualities .ctext.text2:after\":false},[\"background-color:#d1d1d1\"]],[false,{\".qualities .ctext.text3:after\":false},[\"background-color:#13b5d6\"]],[false,{\".gallery-logos .item\":false},[\"display:table\",\"width:100%\",\"height:100px\"]],[false,{\".gallery-logos .item .wrap-item\":false},[\"width:100%\",\"height:100%\",\"display:table-row\"]],[false,{\".gallery-logos .item .wrap-item .image\":false},[\"width:100%\",\"height:100%\",\"display:table-cell\",\"vertical-align:middle\",\"text-align:center\"]],[false,{\".gallery-logos .item .wrap-item .image amp-img\":false,\".gallery-logos .item .wrap-item .image amp-anim\":false},[\"max-width:80%\",\"width:auto\",\"max-height:50px\",\"height:auto\",\"display:inline-block\"]],[false,\"@media (min-width:1400px){\"],[false,{\".gallery-logos .item .wrap-item .image amp-img\":false,\".gallery-logos .item .wrap-item .image amp-anim\":false},[\"max-height:70px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\".contact\":false,\".text-contact\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".top-contact\":false},[\"line-height:90px\",\"position:relative\",\"width:100%\",\"margin-top:100px\",\"background:#75e168\",\"background:-moz-linear-gradient(top,#75e168 0,#38cea3 100%)\",\"background:-webkit-linear-gradient(top,#75e168 0,#38cea3 100%)\",\"background:linear-gradient(to bottom,#75e168 0,#38cea3 100%)\",\"padding:70px 0\"]],[false,{\".top-contact h1\":false},[\"margin:0\",\"font-size:50px\"]],[false,{\".top-contact h2\":false},[\"margin:0\",\"font-size:40px\",\"line-height:90px\"]],[false,\"@media (max-width:992px){\"],[false,{\".top-contact h2\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".top-contact amp-google-document-embed\":false},[\"width:100%\",\"margin-top:20px\"]],[false,{\".subitems\":false},[\"margin:30px 0\"]],[false,{\".subitems .item\":false},[\"position:relative\",\"display:inline-block\",\"color:#152649\",\"font-family:Rajdhani\",\"font-weight:700\",\"padding:0 10px 0 0\",\"margin-right:10px\",\"margin-bottom:5px\"]],[false,{\".subitems .item:after\":false},[\"width:1px\",\"height:100%\",\"position:absolute\",\"content:\\\"\\\"\",\"right:0\",\"top:0\",\"background:#2b9ac7\",\"background:-moz-linear-gradient(top,#2b9ac7 0,#b9f05a 100%)\",\"background:-webkit-linear-gradient(top,#2b9ac7 0,#b9f05a 100%)\",\"background:linear-gradient(to bottom,#2b9ac7 0,#b9f05a 100%)\"]],[false,{\".subitems .item:first-child\":false},[\"padding-left:0\"]],[false,{\".subitems .item:last-child\":false},[\"padding-right:0\"]],[false,{\".subitems .item:last-child:after\":false},[\"display:none\"]],[false,{\".circles-menu\":false},[\"margin-top:-100px\",\"position:relative\",\"text-align:center\"]],[false,\"@media (min-width:1400px){\"],[false,{\".circles-menu\":false},[\"margin-top:-125px\"]],[false,\"}\"],[false,{\".circles-menu .circle\":false},[\"margin:0 auto 30px\",\"display:table\",\"width:200px\",\"height:200px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"border-radius:100px\",\"-moz-border-radius:100px\",\"-webkit-border-radius:100px\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:center\"]],[false,\"@media (min-width:1400px){\"],[false,{\".circles-menu .circle\":false},[\"width:250px\",\"height:250px\",\"border-radius:125px\",\"-moz-border-radius:125px\",\"-webkit-border-radius:125px\"]],[false,\"}\"],[false,{\".circles-menu .circle .wrap\":false},[\"display:table-row\",\"width:100%\",\"height:100%\"]],[false,{\".circles-menu .circle .wrap .text-circle\":false},[\"display:table-cell\",\"width:100%\",\"height:100%\",\"vertical-align:middle\",\"font-family:Rajdhani\",\"font-weight:700\",\"color:#002048\",\"font-size:25px\",\"line-height:25px\"]],[false,{\".circles-menu .circle.circle1\":false},[\"background-color:#00a2c3\",\"border:3px solid #00a2c3\"]],[false,{\".circles-menu .circle.circle1:hover\":false},[\"background-color:#fff\"]],[false,{\".circles-menu .circle.circle2\":false},[\"background-color:#d0d0d0\",\"border:3px solid #d0d0d0\"]],[false,{\".circles-menu .circle.circle2:hover\":false},[\"background-color:#fff\"]],[false,{\".circles-menu .circle.circle3\":false},[\"background-color:#91e63e\",\"border:3px solid #91e63e\"]],[false,{\".circles-menu .circle.circle3:hover\":false},[\"background-color:#fff\"]],[false,{\".map\":false},[\"margin:0\",\"padding:0\",\"position:relative\",\"width:100%\",\"background-color:#e8e8e8\",\"color:grey\"]],[false,{\".map .info\":false},[\"width:620px\",\"position:absolute\",\"margin-left:50%\",\"left:-310px\",\"top:-60px\",\"background-color:#fff\",\"padding:20px\",\"color:#152649\",\"font-size:13px\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info\":false},[\"width:90%\",\"margin:0 5%\",\"left:0\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".map .info\":false},[\"width:620px\",\"left:-310px\",\"font-size:15px\"]],[false,\"}\"],[false,{\".map .info .local\":false},[\"width:40%\",\"float:left\",\"padding-right:20px\"]],[false,{\".map .info .local .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info .local .ltext\":false},[\"float:left\",\"text-align:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info .local\":false},[\"width:100%\",\"padding:0\"]],[false,\"}\"],[false,{\".map .info .mail\":false},[\"width:60%\",\"float:left\",\"padding-left:20px\",\"border-left:1px solid #ccc\"]],[false,{\".map .info .mail .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info .mail .ltext\":false},[\"float:left\",\"line-height:40px\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info .mail\":false},[\"width:100%\",\"padding:0\",\"border:0\",\"margin-top:20px\"]],[false,\"}\"],[false,{\".map .info2\":false},[\"width:500px\",\"position:absolute\",\"margin-left:50%\",\"left:-250px\",\"top:40px\",\"background-color:#fff\",\"padding:20px\",\"color:#152649\",\"font-size:13px\",\"-webkit-box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\",\"box-shadow:5px 5px 20px 0 rgba(0,0,0,.3)\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info2\":false},[\"width:90%\",\"margin:0 5%\",\"left:0\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".map .info2\":false},[\"width:600px\",\"left:-300px\",\"font-size:15px\"]],[false,\"}\"],[false,{\".map .info2 .local\":false},[\"width:40%\",\"float:left\",\"padding-right:20px\"]],[false,{\".map .info2 .local .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info2 .local .ltext\":false},[\"float:left\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info2 .local\":false},[\"width:100%\",\"padding:0\"]],[false,\"}\"],[false,{\".map .info2 .mail\":false},[\"width:60%\",\"float:left\",\"padding-left:20px\",\"border-left:1px solid #ccc\"]],[false,{\".map .info2 .mail .icon\":false},[\"float:left\",\"margin-right:10px\",\"line-height:40px\"]],[false,{\".map .info2 .mail .ltext\":false},[\"float:left\",\"line-height:40px\"]],[false,\"@media (max-width:992px){\"],[false,{\".map .info2 .mail\":false},[\"width:100%\",\"padding:0\",\"border:0\",\"margin-top:20px\"]],[false,\"}\"],[false,{\".map h2\":false},[\"margin-top:70px\"]],[false,{\".panel\":false},[\"position:relative\",\"text-align:center\",\"margin-top:-13%\"]],[false,{\".panel .panel-img\":false},[\"position:absolute\"]],[false,{\".panel .panel-img amp-img\":false,\".panel .panel-img amp-anim\":false},[\"width:40px\"]],[false,{\".panel #panel1\":false},[\"top:100px\",\"left:0\"]],[false,{\".panel #panel2\":false},[\"top:80px\",\"left:40px\"]],[false,{\".panel #panel3\":false},[\"top:100px\",\"left:80px\"]],[false,{\".panel #panel4\":false},[\"top:0\",\"left:120px\"]],[false,{\".panel #panel5\":false},[\"top:70px\",\"left:160px\"]],[false,{\".panel #panel6\":false},[\"top:90px\",\"left:200px\"]],[false,{\".panel #panel7\":false},[\"top:70px\",\"left:240px\"]],[false,{\".panel #panel8\":false},[\"top:50px\",\"left:280px\"]],[false,{\".panel #panel9\":false},[\"top:70px\",\"left:320px\"]],[false,{\".panel #panel10\":false},[\"top:130px\",\"left:360px\"]],[false,{\".hidden\":false},[\"opacity:0\"]],[false,{\".visible\":false},[\"opacity:1\"]],[false,\"@media (max-width:992px){\"],[false,{\".text-right:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,{\".desktop\":false},[\"display:block\"]],[false,\"@media (max-width:992px){\"],[false,{\".desktop\":false},[\"display:none\"]],[false,\"}\"],[false,{\".mobile\":false},[\"display:none\"]],[false,\"@media (max-width:992px){\"],[false,{\".mobile\":false},[\"display:block\"]],[false,\"}\"],[false,{\".mbottom\":false},[\"margin-bottom:-50px\"]],[false,\"@media (max-width:1400px){\"],[false,{\".container-fluid\":false},[\"max-width:1140px\"]],[false,\"}\"],[false,\"@media (min-width:1400px){\"],[false,{\".container-fluid\":false},[\"width:90%\"]],[false,\"}\"],[false,{\".bg-middle\":false},[\"background-position:left center\",\"background-size:auto 95%\",\"background-repeat:no-repeat\"]],[false,{\".bg-bottom\":false},[\"background-position:bottom center\",\"background-size:auto 95%\",\"background-repeat:no-repeat\"]],[false,\"@media (max-width:992px){\"],[false,{\".item-carousel-1\":false,\".item-carousel-2\":false},[\"text-align:center\"]],[false,{\".item-carousel-1:not(#_#_#_#_#_#_#_)\":false,\".item-carousel-2:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\",\"background-image:none\"]],[false,\"}\"],[false,{\".item-carousel-3\":false},[\"text-align:center\"]],[false,{\".add-top\":false},[\"padding-top:150px\"]],[false,{\".add-top-2\":false},[\"margin-top:100px\"]],[false,{\".blog-color\":false},[\"background-color:#f8f8f8\",\"line-height:50px\",\"position:relative\",\"width:100%\",\"margin-top:100px\"]],[false,{\".blog-color h1\":false},[\"margin:0\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".blog-color .info-text\":false},[\"font-family:Rajdhani\",\"font-weight:300\",\"line-height:20px\",\"font-size:16px\",\"color:#8c8c8c\"]],[false,{\".blog-title-main\":false},[\"padding:90px 50px\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:left center\"]],[false,\"@media (max-width:992px){\"],[false,{\".blog-title-main\":false},[\"padding:30px\"]],[false,\"}\"],[false,{\".blog-main\":false},[\"position:relative\",\"background-color:#fff\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\"]],[false,\"@media (max-width:992px){\"],[false,{\".blog-main\":false},[\"display:none\"]],[false,\"}\"],[false,{\".blog-main .blog-mask\":false},[\"padding:0 50px\",\"position:absolute\",\"width:100%\",\"height:100%\",\"left:0\",\"top:0\",\"background:-moz-linear-gradient(left,rgba(50,143,194,.95) 0,rgba(204,204,204,.95) 100%)\",\"background:-webkit-linear-gradient(left,rgba(50,143,194,.95) 0,rgba(204,204,204,.95) 100%)\",\"background:linear-gradient(to right,rgba(50,143,194,.95) 0,rgba(204,204,204,.95) 100%)\",\"color:#152649\",\"display:flex\",\"align-content:center\",\"align-content:center\",\"flex-wrap:wrap\",\"flex-direction:column\",\"justify-content:center\"]],[false,{\".blog-main .blog-main-content\":false},[\"width:100%\"]],[false,{\".blog-main .blog-main-content .blog-date\":false},[\"line-height:25px\",\"margin-bottom:0\"]],[false,{\".blog-main .blog-main-content .blog-title\":false},[\"font-size:20px\",\"line-height:25px\",\"font-weight:700\",\"display:block\"]],[false,\"@media (min-width:1400px){\"],[false,{\".blog-main .blog-main-content .blog-title\":false},[\"font-size:25px\",\"line-height:30px\",\"max-width:400px\"]],[false,\"}\"],[false,{\".blog-main .blog-main-content .blog-info\":false},[\"color:#152649\",\"font-size:14px\",\"line-height:25px\",\"margin-bottom:0\"]],[false,\"@media (min-width:1400px){\"],[false,{\".blog-main .blog-main-content .blog-info\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".blog-main .blog-main-content .blog-read\":false},[\"background-color:#9d7c23\",\"color:#fff\",\"font-family:Rajdhani\",\"font-size:14px\",\"font-weight:500\",\"padding:5px 25px\",\"border-radius:2px\",\"-webkit-box-shadow:2px 2px 10px 0 transparent\",\"box-shadow:2px 2px 10px 0 transparent\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (min-width:1400px){\"],[false,{\".blog-main .blog-main-content .blog-read\":false},[\"font-size:17px\"]],[false,\"}\"],[false,{\".blog-main .blog-main-content .blog-read:hover\":false},[\"-webkit-box-shadow:2px 2px 10px 0 rgba(0,0,0,.5)\",\"box-shadow:2px 2px 10px 0 rgba(0,0,0,.5)\"]],[false,{\".blog-main .blog-main-content .blog-tags\":false},[\"line-height:15px\",\"margin-bottom:0\",\"color:#152649\",\"margin-top:10px\"]],[false,{\".blog-main .blog-main-content .blog-tags a\":false},[\"border-color:#346a8f\"]],[false,{\".content-blog\":false},[\"position:relative\",\"width:100%\",\"background-color:#f3f3f3\",\"padding:50px 0\",\"color:grey\",\"font-size:16px\",\"line-height:25px\"]],[false,\"@media (max-width:992px){\"],[false,{\".content-blog\":false},[\"background-color:#fff\"]],[false,\"}\"],[false,{\".content-blog strong\":false},[\"color:#23819d\",\"font-size:23px\"]],[false,{\".content-blog small\":false},[\"font-weight:700\"]],[false,{\".content-blog amp-img\":false,\".content-blog amp-anim\":false},[\"width:100%\",\"max-width:100%\"]],[false,{\".content-blog .capa-blog\":false},[\"width:100%\",\"margin-top:-50px\",\"margin-bottom:30px\"]],[false,{\".pagination\":false},[\"width:100%\",\"text-align:center\",\"display:block\"]],[false,{\".pagination a\":false},[\"border:1px solid #999\",\"color:#999\",\"margin:0 20px\",\"border-radius:5px\",\"padding:10px 15px\",\"font-family:Rajdhani\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".pagination a:hover\":false},[\"color:#152649\",\"border:1px solid #152649\"]],[false,{\".arrow-wrap\":false},[\"justify-content:center\",\"display:flex\",\"align-items:center\"]],[false,\"@media (max-width:992px){\"],[false,{\".arrow-wrap--top\":false},[\"margin-bottom:30px\"]],[false,\"}\"],[false,{\".back-arrow\":false},[\"color:#152649\",\"text-transform:uppercase\",\"font-weight:200\",\"font-family:Rajdhani\",\"font-size:14px\",\"margin-top:20px\"]],[false,{\".blog-tags\":false},[\"font-size:12px\",\"color:#23819d\"]],[false,\"@media (min-width:1400px){\"],[false,{\".blog-tags\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".blog-tags a\":false},[\"border-right:1px solid #ccc\",\"margin-left:10px\",\"padding-right:10px\"]],[false,{\".blog-tags a:last-child\":false},[\"border:0\",\"padding:0\"]],[false,{\".blog-tags a:first-child\":false},[\"margin:0\"]],[false,{\".top-blog-single\":false},[\"position:relative\",\"width:100%\",\"margin-top:100px\",\"padding:70px 0\",\"background-color:#fff\"]],[false,{\".top-blog-single a:hover\":false},[\"text-decoration:underline\"]],[false,{\".top-blog-single h1\":false},[\"margin:0 0 10px\",\"font-size:45px\",\"line-height:45px\",\"font-family:Raleway\"]],[false,{\".top-blog-single .blog-title\":false},[\"line-height:55px\",\"color:#152649\"]],[false,{\".top-blog-single .wrap-blog-info\":false},[\"margin-top:-45px\",\"margin-bottom:30px\"]],[false,{\".top-blog-single .back-arrow\":false},[\"font-size:35px\",\"margin:0\"]],[false,{\".top-blog-single .back-arrow a:hover\":false},[\"text-decoration:none\"]],[false,{\".top-blog-single .blog-tags\":false},[\"margin-bottom:-30px\",\"margin-top:30px\"]],[false,{\".blog-info\":false},[\"font-family:Rajdhani\",\"font-size:17px\",\"line-height:25px\",\"color:#23819d\",\"font-weight:500\"]],[false,{\".blog-date\":false},[\"color:#152649\",\"font-family:Rajdhani\",\"font-size:14px\",\"margin-bottom:10px\",\"text-transform:uppercase\",\"font-weight:500\"]],[false,\"@media (min-width:1400px){\"],[false,{\".blog-date\":false},[\"font-size:20px\"]],[false,\"}\"],[false,{\".blog-date--text\":false},[\"color:#23819d\",\"margin-top:20px\"]],[false,{\".box-post-intern\":false},[\"padding:20px\",\"background-color:#f0f0f0\",\"border:1px solid #c2c2c2\",\"border-radius:2px\",\"height:100%\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width:992px){\"],[false,{\".box-post-intern\":false},[\"margin-bottom:30px\",\"height:auto\"]],[false,\"}\"],[false,{\".box-post-intern:hover\":false},[\"background-color:#fff\"]],[false,{\".box-post-intern .blog-date\":false},[\"color:#23819d\",\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"margin-bottom:10px\",\"text-transform:uppercase\",\"font-weight:500\"]],[false,{\".box-post-intern .blog-title\":false},[\"font-size:20px\",\"line-height:25px\",\"color:#23819d\",\"font-weight:700\"]],[false,{\".box-post-intern .blog-info\":false},[\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"color:#23819d\",\"font-weight:500\",\"margin-top:15px\"]],[false,{\".box-post-intern .blog-tags\":false},[\"margin-bottom:0\"]],[false,{\".box-post\":false},[\"height:calc(100% - 30px)\",\"overflow:hidden\",\"position:relative\",\"padding:30px\",\"margin-bottom:30px\",\"background-color:#f0f0f0\",\"border:1px solid #c2c2c2\",\"border-radius:2px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width:992px){\"],[false,{\".box-post\":false},[\"height:auto\"]],[false,\"}\"],[false,{\".box-post:hover\":false},[\"background-color:#fff\"]],[false,{\".box-post .capa-post\":false},[\"width:calc(100% + 60px)\",\"height:200px\",\"margin-top:-30px\",\"margin-left:-30px\",\"-webkit-background-size:cover\",\"-moz-background-size:cover\",\"-o-background-size:cover\",\"background-size:cover\",\"background-position:top center\",\"margin-bottom:30px\"]],[false,{\".box-post .blog-date\":false},[\"color:#23819d\",\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"margin-bottom:30px\",\"text-transform:uppercase\",\"font-weight:500\"]],[false,\"@media (min-width:1400px){\"],[false,{\".box-post .blog-date\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".box-post .blog-title\":false},[\"font-size:20px\",\"line-height:25px\",\"color:#23819d\",\"font-weight:700\"]],[false,\"@media (min-width:1400px){\"],[false,{\".box-post .blog-title\":false},[\"font-size:25px\",\"line-height:30px\"]],[false,\"}\"],[false,{\".box-post .blog-info\":false},[\"font-family:Rajdhani\",\"font-size:13px\",\"line-height:15px\",\"color:#23819d\",\"font-weight:500\",\"margin-top:10px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".box-post .blog-info\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".box-post .blog-excerpt\":false},[\"font-size:12px\",\"line-height:18px\"]],[false,\"@media (min-width:1400px){\"],[false,{\".box-post .blog-excerpt\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".box-post .blog-read\":false},[\"font-family:Rajdhani\",\"color:#9d7c23\",\"font-size:13px\",\"line-height:15px\",\"font-weight:500\"]],[false,\"@media (min-width:1400px){\"],[false,{\".box-post .blog-read\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".box-post .blog-tags\":false},[\"margin-top:20px\",\"margin-bottom:0\"]],[false,{\".more-section\":false},[\"margin-top:30px\"]],[false,{\"li.categories\":false},[\"font-family:Rajdhani\",\"text-transform:uppercase\",\"list-style:none\",\"margin-bottom:70px\",\"font-weight:500\",\"color:#23819d\",\"font-size:20px\"]],[false,\"@media (min-width:1400px){\"],[false,{\"li.categories\":false},[\"font-size:25px\"]],[false,\"}\"],[false,\"@media (max-width:992px){\"],[false,{\"li.categories\":false},[\"margin-top:50px\",\"margin-bottom:0\"]],[false,\"}\"],[false,{\"li.categories ul\":false},[\"list-style:none\",\"padding:0\",\"margin-top:30px\"]],[false,{\"li.categories ul li\":false},[\"margin-bottom:15px\",\"text-transform:none\",\"font-size:13px\",\"font-family:Raleway\",\"font-weight:300\"]],[false,\"@media (min-width:1400px){\"],[false,{\"li.categories ul li\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".icon-main-blog\":false},[\"width:80px\",\"margin-top:-20px\",\"margin-left:-15px\"]],[false,{\".icon-main-blog amp-img\":false,\".icon-main-blog amp-anim\":false},[\"width:100%\"]],[false,{\"#paginator\":false},[\"width:100%\",\"padding:0 15px\",\"margin:25px 0\",\"text-align:center\"]],[false,{\"#paginator li\":false},[\"list-style:none\",\"display:inline-block\",\"width:30px\",\"line-height:30px\",\"border:1px solid #ccc\",\"border-radius:5px\",\"color:#999\",\"margin:5px\",\"-webkit-transition:all .3s ease-in-out\",\"-moz-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\"#paginator li.current\":false,\"#paginator li:hover\":false},[\"color:#152649\",\"border:1px solid #152649\",\"font-weight:700\"]],[false,{\"#paginator li a\":false},[\"display:block\"]],[false,{\".footer-media a\":false},[\"color:#999\",\"margin-left:20px\"]],[false,{\".avatar-20:not(#_#_#_#_#_#_#_)\":false},[\"width:20px\"]],[false,{\".mobile-address\":false},[\"padding-top:30px\"]],[false,\"@media (max-width:1000px) and (orientation:landscape){\"],[false,{\".about-intern\":false},[\"padding-bottom:30px\"]],[false,{\".circles-menu\":false},[\"margin-top:30px\"]],[false,\"}\"],[false,\"@media (max-width:1000px){\"],[false,{\".box-post .capa-post\":false},[\"height:170px\"]],[false,\"}\"],[false,{\".box-post\":false},[\"padding:0\",\"margin-bottom:0\"]],[false,{\".box-post:not(#_#_#_#_#_#_#_)\":false},[\"height:100%\"]],[false,{\".box-post-text\":false},[\"padding:30px\"]],[false,{\".div-post\":false},[\"margin-bottom:30px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":9996,\"final_size\":10003,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/shared.css?v=405726095\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"c90d28f47007b3c5d58885a57c053d63\",\"parse_time\":0.10953307151794434,\"shake_time\":0.0002307891845703125,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".new-header__nav--list\":true},[\"margin:0\",\"padding:0\",\"display:contents\"]],[true,{\".new-header__nav--list li\":true},[\"list-style:none\",\"color:#152649\",\"font-size:15px\",\"font-weight:900\",\"line-height:30px\",\"text-transform:uppercase\",\"padding:0 .5rem\"]],[true,{\".new-header__nav--list li:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".new-header__nav--list li .nav-link:not(#_#_#_#_#_#_#_#_)\":true},[\"padding-right:10px\",\"padding-left:10px\",\"white-space:nowrap\"]],[true,{\".new-header__nav--list li .nav-link:hover:not(#_#_#_#_#_#_#_#_)\":true},[\"color:#24c1ff\"]],[true,\"@media (max-width:992px){\"],[true,{\".new-header__nav--list li .nav-link:not(#_#_#_#_#_#_#_#_)\":true},[\"padding-right:5px\",\"padding-left:5px\"]],[true,\"}\"],[true,{\".new-header__button\":true},[\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"float:right\",\"width:15%\"]],[true,{\".new-header__button:not(#_#_#_#_#_#_#_)\":true},[\"color:#152649\"]],[true,{\".new-header__button a\":true},[\"background:0 0\",\"border:none\",\"color:#152649\",\"font-family:raleway,sans-serif\",\"font-weight:900\",\"font-size:18px\"]],[true,{\".new-header__button a:hover\":true},[\"text-decoration:none\"]],[true,{\".dropdown-menu\":true},[\"background:#f7f7f7\",\"top:97px\",\"left:50%\",\"transform:translateX(-50%)\",\"width:70%\",\"border-radius:0\",\"border-top:none\",\"cursor:auto\"]],[true,{\".dropdown-menu:not(#_#_#_#_#_#_#_)\":true},[\"position:fixed\"]],[true,{\".dropdown-menu>.container\":true},[\"display:flex\",\"align-items:center\",\"justify-content:center\",\"min-height:270px\",\"padding:2.5rem 1.5rem 3rem\"]],[true,{\".nav-link\":true},[\"display:flex\",\"flex-direction:column\",\"align-items:center\"]],[true,{\".nav-link:not(#_#_#_#_#_#_#_)\":true},[\"color:#152649\"]],[true,{\".dropdown-toggle::after:not(#_#_#_#_#_#_#_#_)\":true},[\"color:#24c1ff\",\"border:1px solid #24c1ff\",\"width:10px\"]],[true,{\".show>.dropdown-toggle::after:not(#_#_#_#_#_#_#_#_)\":true},[\"border-top:.3em solid\",\"border-right:.3em solid transparent\",\"border-bottom:0\",\"border-left:.3em solid transparent\",\"width:0\"]],[true,{\".new-header__nav--title h5\":true},[\"font-size:2.3rem\",\"text-transform:initial\",\"font-family:raleway,sans-serif\",\"font-weight:800\",\"color:#152649\",\"line-height:38px\"]],[true,{\".new-header__nav--title h5:after\":true},[\"content:\\\"-\\\"\",\"border-bottom:0 solid\",\"border-image-slice:1\",\"border-width:5px\",\"display:block\",\"color:transparent\",\"height:25px\",\"width:65px\",\"margin-bottom:2rem\"]],[true,{\".new-header__nav--subtitle p\":true},[\"margin:0\",\"font-size:.8rem\",\"color:#152649\",\"font-weight:400\",\"text-transform:initial\",\"margin-bottom:2rem\",\"line-height:15px\"]],[true,{\".new-header__nav--subtitle p:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".new-header__nav--right-edge\":true},[\"border-right:1px solid #c9c9c9\"]],[true,{\".new-header__nav--menu--img\":true},[\"padding:0\",\"text-align:center\"]],[true,{\".new-header__nav--menu--img amp-img\":true,\".new-header__nav--menu--img amp-anim\":false},[\"max-width:100%\"]],[true,{\".new-header__nav--menu--title\":true},[\"color:#152649\",\"text-transform:capitalize\",\"font-weight:800\",\"font-family:raleway,sans-serif\",\"font-size:1.1rem\",\"margin-bottom:.3rem\"]],[true,{\".new-header__nav--menu--text\":true},[\"color:#6f7070\",\"font-weight:400\",\"text-transform:initial\",\"font-size:.8rem\",\"margin:0\",\"line-height:15px\"]],[true,{\".new-header__nav--menu--text:not(#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".new-header__nav--menu--link:hover>.new-header__nav--menu--title\":true},[\"color:#24c1ff\"]],[true,{\".new-header__nav--menu--link:hover>.new-header__nav--menu--text\":true},[\"color:#24c1ff\"]],[true,{\".new-header__nav--menu--link:hover\":true},[\"text-decoration:none\"]],[true,{\".new-header__nav--menu--box:not(#_#_#_#_#_#_#_)\":true},[\"margin-bottom:1.5rem\"]],[true,{\".new-header__nav--menu--button\":true},[\"width:65%\",\"border-radius:35px\",\"border:1px solid #9df168\",\"position:relative\",\"display:flex\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"text-align:center\",\"font-size:1rem\",\"transition:font .3s\",\"height:45px\",\"align-items:center\",\"justify-content:center\"]],[true,{\".new-header__nav--menu--button:hover\":true},[\"text-decoration:none\",\"font-size:1.2rem\"]],[true,{\".new-header__nav--menu--button--link\":true},[\"color:#152649\",\"text-transform:initial\",\"font-family:raleway,sans-serif\",\"font-weight:900\"]],[true,{\".new-header__nav--title-color\":true},[\"color:#24c1ff\"]],[true,{\".new-header__nav--menu--whatsIs\":true},[\"font-weight:400\",\"color:#24c1ff\",\"text-transform:initial\",\"font-size:.9rem\"]],[true,{\".new-header__nav--menu--whatsIs:not(#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".bg-light\":true},[\"width:85%\"]],[true,{\".bg-light:not(#_#_#_#_#_#_#_)\":true},[\"background-color:transparent\"]],[true,{\".new-header__nav--subtitle-icon\":true},[\"padding:0\",\"text-align:right\"]],[true,{\".new-header__nav--subtitle-icon:not(#_#_#_#_#_#_#_)\":true},[\"width:90%\"]],[true,{\".new-header__logo\":true},[\"width:20%\"]],[true,{\".new-header__menu-item\":true},[\"justify-content:flex-end\"]],[true,{\".new-header\":true},[\"top:0\",\"width:100%\",\"position:fixed\",\"background-color:#f7f7f7\",\"z-index:3\",\"transition:all .3s ease-in-out\",\"display:flex\",\"margin:0\",\"padding:0\",\"justify-content:center\"]],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:100px\"]],[true,{\".navbar-toggler:not(#_#_#_#_#_#_#_)\":true},[\"padding:0\",\"border:none\",\"outline:0\"]],[true,{\".devops-styles:not(#_#_#_#_#_#_#_)\":true},[\"margin-top:100px\"]],[true,\"@media (min-width:300px) and (max-width:768px){\"],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:70px\"]],[true,{\".devops-styles:not(#_#_#_#_#_#_#_)\":true},[\"margin-top:70px\"]],[true,{\".new-header__menu-item\":true},[\"background:#f7f7f7\",\"margin:0\",\"padding:0\",\"width:100%\",\"position:absolute\",\"top:70px\",\"left:0\",\"z-index:9\",\"overflow:scroll\",\"height:650px\",\"padding-bottom:2rem\"]],[true,{\".new-header__logo\":true},[\"width:50%\"]],[true,{\".new-header__button:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".new-header__nav--list\":true},[\"display:flex\",\"align-items:flex-start\"]],[true,{\".new-header__nav--list li\":true},[\"padding-left:1rem\"]],[true,{\".new-header__nav--list>.show\":true},[\"width:100%\",\"border:1px #ccc solid\",\"padding-bottom:1rem\"]],[true,{\".dropdown-toggle::after\":true},[\"display:none\"]],[true,{\".show>.dropdown-toggle:not(#_#_#_#_#_#_#_)\":true},[\"color:#24c1ff\"]],[true,{\".show>.dropdown-toggle::before:not(#_#_#_#_#_#_#_#_)\":true},[\"border-bottom:.3em solid\",\"border-top:0\"]],[true,{\".new-header__nav--list li .nav-link\":true},[\"display:block\"]],[true,{\".dropdown-toggle::before\":true},[\"display:inline-block\",\"margin-right:.5rem\",\"vertical-align:.255em\",\"content:\\\"\\\"\"]],[true,{\".dropdown-toggle::before:not(#_#_#_#_#_#_#_#_)\":true},[\"border-top:.3em solid\",\"border-right:.3em solid transparent\",\"border-bottom:0\",\"border-left:.3em solid transparent\",\"color:#24c1ff\"]],[true,{\".dropdown-menu\":true},[\"width:100%\",\"top:0\",\"left:0\",\"transform:none\",\"padding:0\",\"border:none\"]],[true,{\".dropdown-menu:not(#_#_#_#_#_#_#_)\":true},[\"position:relative\"]],[true,{\".dropdown-menu>.container\":true},[\"padding:0\"]],[true,{\".dropdown-menu>.container>.row\":true},[\"width:100%\"]],[true,{\".new-header__nav--title h5\":true},[\"font-size:1.5rem\"]],[true,{\".new-header__nav--title h5:after\":true},[\"display:none\"]],[true,{\".new-header__nav--menu--img\":true},[\"display:none\"]],[true,{\".align-items-center>.col-md-8\":true},[\"padding:0\"]],[true,{\".bg-light\":true},[\"width:100%\"]],[true,{\".new-header__nav--menu--title\":true},[\"display:flex\",\"align-items:center\"]],[true,{\".new-header__nav--menu--title::after\":true},[\"display:inline-block\",\"margin-left:.5rem\",\"vertical-align:.255em\",\"content:\\\"\\\"\"]],[true,{\".new-header__nav--menu--title::after:not(#_#_#_#_#_#_#_#_)\":true},[\"border-top:.3em solid transparent\",\"border-right:0\",\"border-bottom:.3em solid transparent\",\"border-left:.3em solid\",\"color:#24c1ff\"]],[true,{\".new-header__nav--right-edge\":true},[\"border-right:none\"]],[true,{\".new-header__nav--menu--button\":true},[\"margin-bottom:2rem\",\"display:flex\",\"width:50%\"]],[true,\"}\"],[true,\"@media (min-width:600px) and (max-width:768px){\"],[true,{\".new-header__button:not(#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".new-header__logo amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".new-header__logo amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:60%\"]],[true,\"}\"],[true,\"@media (min-width:768px) and (max-width:1024px){\"],[true,{\".new-header__nav--list li\":true},[\"font-size:10px\"]],[true,{\".new-header__button a\":true},[\"font-size:13px\"]],[true,\"}\"],[true,{\".footer-2022\":true},[\"background-color:#152649\",\"color:#c1c1c1\",\"padding:5rem 0 5rem\",\"font-weight:400\"]],[true,{\".footer-2022:not(#_#_#_#_#_#_#_)\":true},[\"font-family:Roboto,sans-serif\"]],[true,{\".footer-2022__logo amp-img\":true,\".footer-2022__logo amp-anim\":false},[\"width:100%\"]],[true,{\".footer-2022__text\":true},[\"font-size:.9rem\",\"text-align:end\",\"line-height:15px\"]],[true,{\".footer-2022__certificates\":true},[\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[true,{\".footer-2022__certificates-box-union\":true},[\"display:flex\"]],[true,{\".footer-2022__certificates--kubernetes a amp-img\":true,\".footer-2022__certificates--kubernetes a amp-anim\":false},[\"width:100%\",\"padding:0 1rem\"]],[true,{\".footer-2022__certificates--cloud-native a amp-img\":true,\".footer-2022__certificates--cloud-native a amp-anim\":false},[\"width:100%\",\"padding:0 1rem\"]],[true,{\".footer-2022__certificates--linux-foundation a amp-img\":true,\".footer-2022__certificates--linux-foundation a amp-anim\":false},[\"width:100%\",\"padding:0 1rem\"]],[true,{\".footer-2022__social-media\":true},[\"display:flex\",\"align-items:center\",\"justify-content:end\"]],[true,{\".footer-2022__social-media a\":true},[\"margin:0 .5rem\",\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[true,{\".footer-2022__social-media a amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".footer-2022__social-media a amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[true,{\".footer-2022__menu\":true},[\"margin-top:6rem\",\"margin-bottom:5rem\"]],[true,{\".footer-2022__menu--box\":true},[\"display:flex\",\"flex-direction:row\",\"width:100%\",\"padding:0\"]],[true,{\".footer-2022__menu--list\":true},[\"flex-grow:1\"]],[true,{\".footer-2022__menu--list h5\":true},[\"color:#59657e\",\"margin-bottom:1rem\",\"font-size:1rem\"]],[true,{\".footer-2022__menu--list h5:after\":true},[\"content:\\\"-\\\"\",\"border-bottom:0 solid\",\"border-image-slice:1\",\"border-width:4px\",\"display:block\",\"color:transparent\",\"height:20px\",\"width:65px\",\"margin-bottom:1.5rem\"]],[true,{\".footer-2022__menu--list ul\":true},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[true,{\".footer-2022__menu--list ul li\":true},[\"margin-bottom:.5rem\"]],[true,{\".footer-2022__menu--list ul li strong\":true},[\"color:#24c1ff\",\"font-weight:900\",\"font-family:raleway,sans-serif\",\"padding-bottom:.5rem\",\"display:block\"]],[true,{\".footer-2022__menu--list ul li a\":true},[\"color:#24c1ff\",\"font-weight:500\",\"font-family:raleway,sans-serif\",\"font-size:.9rem\"]],[true,{\".footer-2022__menu--list ul li a:hover\":true},[\"text-decoration:none\",\"-webkit-background-clip:text\",\"-webkit-text-fill-color:transparent\"]],[true,{\".footer-2022__box-end\":true},[\"font-size:.9rem\"]],[true,{\".footer-2022__box-end--privacy-policy\":true},[\"text-decoration:underline\",\"color:#c9c9c9\",\"padding-right:1rem\",\"border-right:1px solid #c9c9c9\"]],[true,{\".footer-2022__box-end--privacy-policy:hover\":true},[\"color:#24c1ff\"]],[true,{\".footer-2022__box-end--terms-of-use\":true},[\"text-decoration:underline\",\"color:#c9c9c9\",\"margin-left:1rem\",\"margin-right:3rem\"]],[true,{\".footer-2022__box-end--terms-of-use:hover\":true},[\"color:#24c1ff\"]],[true,{\".footer-2022__copyright\":true},[\"font-size:.9rem\",\"color:#c9c9c9\"]],[true,\"@media (min-width:300px) and (max-width:768px){\"],[true,{\".footer-2022__logo amp-img\":true,\".footer-2022__logo amp-anim\":false},[\"margin-bottom:3rem\",\"padding-top:5rem\",\"border-top:2px solid #486091\"]],[true,{\".footer-2022__text\":true},[\"text-align:left\",\"margin-bottom:2rem\"]],[true,{\".footer-2022__certificates\":true},[\"margin-bottom:4rem\"]],[true,{\".footer-2022__social-media\":true},[\"justify-content:flex-start\"]],[true,{\".footer-2022__certificates-box-union\":true},[\"display:flex\",\"flex-direction:column-reverse\"]],[true,{\".footer-2022__certificates--cloud-native a amp-img\":true,\".footer-2022__certificates--cloud-native a amp-anim\":false},[\"margin-bottom:1rem\"]],[true,{\".footer-2022__certificates--kubernetes a amp-img\":true,\".footer-2022__certificates--kubernetes a amp-anim\":false},[\"padding:0 .2rem\"]],[true,{\".footer-2022__certificates--linux-foundation a amp-img\":true,\".footer-2022__certificates--linux-foundation a amp-anim\":false},[\"width:80%\",\"margin-bottom:1rem\"]],[true,{\".footer-2022__menu\":true},[\"margin-top:5rem\",\"margin-bottom:3rem\",\"margin-left:15px\",\"margin-right:15px\"]],[true,{\".footer-2022__menu--box\":true},[\"flex-direction:column\"]],[true,{\".footer-2022__menu--list ul\":true},[\"margin-bottom:3rem\"]],[true,{\".footer-2022__mobile-items\":true},[\"width:100%\",\"padding-right:15px\",\"padding-left:15px\",\"margin-right:auto\",\"margin-left:auto\"]],[true,{\".footer-2022__box-end\":true},[\"margin-bottom:.5rem\"]],[true,\"}\"],[true,\"@media (min-width:600px) and (max-width:768px){\"],[true,{\".footer-2022__logo amp-img\":true,\".footer-2022__logo amp-anim\":false},[\"margin-bottom:0\",\"padding-top:0\",\"border-top:none\"]],[true,{\".footer-2022__certificates-box-union\":true},[\"flex-direction:row\"]],[true,{\".footer-2022__text\":true},[\"margin-bottom:0\"]],[true,{\".footer-2022__certificates\":true},[\"margin-bottom:0\"]],[true,{\".footer-2022__social-media\":true},[\"margin-top:2rem\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1312,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/style.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"7408b05c90ec93467ae3ffd934b45823\",\"parse_time\":0.006227016448974609,\"shake_time\":1.811981201171875e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".categories\":false},[\"list-style-type:none\",\"padding:20px\"]],[false,{\".grecaptcha-badge\":false},[\"display:none\"]],[false,{\"figcaption\":false},[\"font-size:12px\",\"text-align:center\"]],[false,{\".content-blog h1\":false},[\"font-size:45px\",\"line-height:45px\",\"margin-top:20px\",\"margin-bottom:30px\"]],[false,{\".content-blog strong\":false},[\"font-size:inherit\"]],[false,{\".content-blog h2\":false},[\"font-size:35px\",\"line-height:35px\",\"margin-top:20px\",\"margin-bottom:20px\",\"color:#23819d\"]],[false,{\".content-blog h3\":false},[\"font-size:30px\",\"line-height:30px\",\"margin-top:20px\",\"margin-bottom:20px\",\"color:inherit\",\"color:#000\"]],[false,{\".content-blog h4\":false},[\"position:relative\",\"font-family:\\\"Rajdhani\\\"\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"margin-top:10px\",\"margin-bottom:10px\"]],[false,{\".content-blog h5\":false},[\"position:relative\",\"font-family:\\\"Rajdhani\\\"\",\"font-weight:500\",\"line-height:20px\",\"font-size:20px\",\"margin-top:10px\",\"margin-bottom:0px\"]],[false,{\".content-blog h6\":false},[\"position:relative\",\"font-family:\\\"Rajdhani\\\"\",\"font-weight:500\",\"line-height:18px\",\"font-size:18px\",\"margin-top:10px\",\"margin-bottom:0px\"]],[false,{\".content-blog p a\":false},[\"color:#0693e3\",\"text-decoration:underline\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":155232,\"final_size\":11541,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/style-isk.css?v=949774448\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"6f68b4471d049368cf66b5fad21e7dbd\",\"parse_time\":1.2974708080291748,\"shake_time\":0.002396106719970703,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"body\":true},[\"background-color:#fff\",\"font-family:Raleway,sans-serif\",\"font-weight:400\",\"font-size:14px\",\"line-height:20px\",\"color:#152649\",\"-webkit-font-smoothing:subpixel-antialiased\",\"overflow-x:hidden\"]],[false,{\"sup\":false},[\"top:-.8em\",\"font-size:7px\",\"font-weight:800\"]],[false,{\".red\":false},[\"color:#ff555f\"]],[false,{\".grey\":false},[\"color:#7080a7\"]],[false,{\".turquouise\":false},[\"color:#28d9cb\"]],[false,{\".flourscent\":false},[\"color:#24c1ff\"]],[false,{\".g-d-none\":false},[\"display:none\"]],[true,{\".new-header\":true},[\"z-index:4\"]],[true,{\".new-header__nav--subtitle p\":true},[\"padding-left:16px\",\"font-size:14px\",\"letter-spacing:-.35px\"]],[true,{\"header nav .dropdown-menu p.new-header__nav--menu--text\":true},[\"max-width:180px\"]],[false,{\".custom-txt-img-sec.tek-world-scale .container-md\":false},[\"max-width:1406px\"]],[false,{\".custom-txt-img-sec .review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:0px\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner\":false},[\"position:relative\"]],[false,{\".c-application-development:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:30px\"]],[false,{\".c-application-development .custom-txt h2:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:25px\"]],[false,{\".cloud-native-application .custom-txt p span\":false},[\"color:#152649\"]],[false,{\".cloud-native-application .review_sec\":false},[\"margin-top:25px\"]],[false,{\".c-application-development .review_sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0\"]],[false,{\".c-application-development .cloud-native-application .custom-img amp-img\":false,\".c-application-development .cloud-native-application .custom-img amp-anim\":false},[\"width:94%\"]],[false,{\".cp-tek-teams-isk .title\":false},[\"margin-bottom:24px\"]],[false,{\".cp-tek-teams-isk .title p\":false},[\"margin:0\",\"color:#28d9cb\",\"font-size:16px\",\"text-transform:uppercase\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:400\"]],[false,{\".cp-tek-teams-isk p\":false},[\"font-size:24px\",\"color:#28d9cb\",\"margin:10px 0px 0px 0px\",\"font-weight:700\",\"line-height:normal\"]],[false,{\".cp-tek-teams-isk amp-img\":false,\".cp-tek-teams-isk amp-anim\":false},[\"min-height:350px\"]],[false,{\".cp-tek-teams-isk .inner-hero-text amp-img\":false,\".cp-tek-teams-isk .inner-hero-text amp-anim\":false},[\"min-height:unset\"]],[false,{\".review_sec\":false},[\"background:#f5f5f5\",\"padding:40px 56px\",\"margin-top:65px\",\"box-shadow:0px 20px 32px 0px rgba(0,0,0,.2)\",\"position:relative\",\"position:relative\",\"border-radius:24px\"]],[false,{\".review_sec amp-img\":false,\".review_sec amp-anim\":false},[\"position:absolute\",\"left:0px\"]],[false,{\".review_sec::after\":false},[\"content:\\\"\\\"\",\"display:block\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8578.png\\\")\",\"background-repeat:no-repeat\",\"width:40px\",\"height:40px\",\"position:absolute\",\"top:-20px\",\"left:56px\",\"background-size:cover\"]],[false,{\".review_sec .swiper-slide p\":false},[\"margin:0\",\"font-size:20px\",\"color:#707070\"]],[false,{\".review_sec .swiper-slide i\":false},[\"margin:20px 0px\",\"display:block\",\"color:#707070\",\"font-size:18px\",\"padding-left:70px\"]],[false,{\".review_sec .swiper-slide span\":false},[\"color:#152649\",\"font-weight:700\"]],[false,{\".review_sec .title p\":false},[\"font-size:20px\",\"font-weight:700\",\"color:#707070\"]],[false,{\".review_sec .title span\":false},[\"color:#28d9cb\"]],[false,{\".rebuild-and-replatform\":false},[\"background-color:#f1f1f1\",\"padding:120px 0px 192px 0px\"]],[false,{\".rebuild-and-replatform .txt label\":false},[\"display:block\",\"margin-bottom:40px\"]],[false,{\".rebuild-and-replatform .txt h2\":false},[\"margin-bottom:40px\"]],[false,{\".rebuild-and-replatform .txt h2 span\":false},[\"color:#28d9cb\"]],[false,{\".rebuild-and-replatform .txt p\":false},[\"color:#707070\",\"margin-bottom:30px\",\"font-size:20px\",\"line-height:1.6em\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content\":false},[\"display:none\",\"flex-wrap:wrap\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text p\":false},[\"font-size:20px\",\"line-height:1.6\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img\":false},[\"width:175px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-img\":false,\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-anim\":false},[\"width:100%\",\"object-fit:cover\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-boxs\":false},[\"margin-bottom:43px\",\"border-bottom:1px solid #dbdbdb\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text\":false},[\"padding-left:45px\",\"width:calc(100% - 175px)\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content.active\":false},[\"display:flex\",\"padding-bottom:37px\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec\":false},[\"margin:0\",\"box-shadow:unset\",\"background-color:transparent\",\"border-radius:unset\",\"padding:0\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec::after\":false},[\"display:none\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row\":false},[\"background-color:#fff\",\"padding:56px 76px\",\"border-radius:28px\",\"border:1px solid #dbdbdb\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul\":false},[\"list-style:none\",\"padding:0\",\"padding:8px\",\"display:flex\",\"background-color:#fff\",\"border-radius:36px\",\"margin:0px 0px 16px 0px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li\":false},[\"width:50%\",\"padding:16px\",\"border-radius:28px\",\"text-align:center\",\"transition:all .4s ease\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li a\":false},[\"font-size:20px\",\"color:#707070\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li.active\":false},[\"background-color:#f1f1f1\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li.active b\":false},[\"color:#152649\"]],[false,{\".custom-full-bg amp-img\":false,\".custom-full-bg amp-anim\":false},[\"width:100%\",\"display:block\"]],[false,{\".keeping-you-competitive\":false},[\"background-color:#152649\",\"padding:120px 0px 135px\"]],[false,{\".keeping-you-competitive label\":false},[\"color:#7080a7\"]],[false,{\".keeping-you-competitive .heading-box h2\":false},[\"color:#fff\",\"margin-bottom:40px\"]],[false,{\".keeping-you-competitive p\":false},[\"color:#fff\",\"font-family:Raleway,sans-serif\",\"font-size:20px\",\"line-height:1.4\"]],[false,{\".keeping-future\":false},[\"margin-top:40px\"]],[false,{\".keeping-future ul\":false},[\"list-style:none\",\"font-size:20px\",\"color:#24c1ff\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".keeping-future ul li\":false},[\"margin-bottom:32px\",\"font-style:italic\",\"border-bottom:#16365c solid 1px\",\"padding-bottom:30px\",\"width:26%\",\"margin-right:45px\",\"font-weight:500\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:11%\"]],[false,{\".keeping-future ul li:nth-child(8)\":false,\".keeping-future ul li:nth-child(4)\":false},[\"margin-right:0px\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(10)\":false,\".keeping-future ul li:nth-child(11)\":false},[\"border:none\"]],[false,{\".custom-qout-box\":false},[\"background-color:#f1f1f1\",\"padding:40px 0px 95px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-top:-11%\",\"margin-bottom:100px\",\"background-color:#fff\"]],[false,{\".custom-qout-box .review_sec i\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.4\",\"font-weight:400\",\"margin-bottom:24px\",\"display:block\"]],[false,{\".depending-on\":false},[\"display:flex\",\"align-items:center\",\"justify-content:space-between\"]],[false,{\".depending-img-box\":false},[\"width:15%\"]],[false,{\".depending-text\":false},[\"width:55%\"]],[false,{\".depending-text p\":false},[\"font-size:24px\",\"font-weight:bold\",\"line-height:1.4\"]],[false,{\".depending-btn\":false},[\"width:25%\"]],[false,{\".depending-btn .btn-blue\":false},[\"border-radius:50px\",\"padding:24px 30px\"]],[false,{\".native-applications-list\":false},[\"padding:120px 0px 100px\"]],[false,{\".native-applications-list .heading-box\":false},[\"margin-bottom:60px\"]],[false,{\".native-applications-list .heading-box h2 span\":false},[\"color:#28d9cb\"]],[false,{\".native-applications-list .swiper-wrapper\":false},[\"display:flex\",\"justify-content:space-between\"]],[false,{\".native-applications-list .swiper-slide\":false},[\"width:calc(50% - 50px)\"]],[false,{\".applications-col ul\":false},[\"list-style:none\"]],[false,{\".applications-col li\":false},[\"font-size:20px\",\"color:#707070\",\"font-weight:bold\",\"border-bottom:#dbdbdb solid 1px\",\"padding-bottom:25px\",\"margin-bottom:25px\",\"position:relative\",\"padding-left:37px\",\"line-height:1.4\"]],[false,{\".applications-col li::after\":false},[\"position:absolute\",\"left:0px\",\"top:0px\",\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8544.png\\\")\",\"background-repeat:no-repeat\",\"width:24px\",\"height:24px\"]],[false,{\".applications-col li:last-child\":false},[\"border:none\"]],[false,{\".native-applications-list-pagination\":false},[\"text-align:center\"]],[false,{\".native-applications-list-pagination .swiper-pagination-bullet\":false},[\"width:4px\",\"height:4px\",\"background-color:#dbdbdb\",\"opacity:1\"]],[false,{\".native-applications-list-pagination .swiper-pagination-bullet-active\":false},[\"width:24px\",\"height:4px\",\"border-radius:50px\",\"background-color:#28d9cb\"]],[false,{\".native-data-driven-top\":false},[\"background-color:#121d3d\",\"padding-bottom:80px\",\"margin-top:-2px\"]],[false,{\".native-data-driven-top .heading-box label\":false,\".native-data-driven-top .heading-box h2\":false},[\"color:#fff\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 190px\",\"background-color:#f1f1f1\"]],[false,{\".data-driven-application .swiper-slide\":false},[\"width:calc(33.333% - 44px)\"]],[false,{\".data-driven-application .swiper-wrapper\":false},[\"display:flex\",\"justify-content:space-between\"]],[false,{\".data-driven-application .swiper-button-next.swiper-button-disabled\":false,\".data-driven-application .swiper-button-prev.swiper-button-disabled\":false},[\"opacity:0\"]],[false,{\".data-driven-application .swiper-button-next:after\":false},[\"content:\\\"\\\"\",\"background-repeat:no-repeat\",\"width:26px\",\"height:16px\",\"display:none\"]],[false,{\".data-driven-application .swiper-button-next:after:not(#_#_#_#_#_#_#_#_)\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/right-arrow.png\\\")\"]],[false,{\".data-driven-application .swiper-button-prev:after\":false},[\"content:\\\"\\\"\",\"background-repeat:no-repeat\",\"width:26px\",\"height:20px\",\"display:none\"]],[false,{\".data-driven-application .swiper-button-prev:after:not(#_#_#_#_#_#_#_#_)\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/left-arrow-1.png\\\")\"]],[false,{\".data-driven-application .slider-nav\":false},[\"width:55%\",\"display:block\",\"height:20px\",\"margin:0px auto\",\"position:relative\"]],[false,{\".data-driven-application .swiper-pagination-bullet\":false},[\"width:4px\",\"border-radius:50px\",\"height:4px\",\"background-color:#24c1ff\",\"opacity:1\"]],[false,{\".data-driven-application .swiper-pagination-bullet-active\":false},[\"width:24px\",\"border-radius:50px\",\"height:4px\",\"background-color:#152649\"]],[false,{\".data-driven-application .applications-col\":false},[\"padding-bottom:15px\"]],[false,{\".data-driven-application .swiper-button-next\":false,\".data-driven-application .swiper-button-prev\":false},[\"bottom:0px\",\"top:auto\",\"position:absolute\"]],[false,{\".data-driven-application .applications-col li\":false},[\"border:none\",\"padding-bottom:0px\",\"margin-bottom:40px\",\"color:#152649\"]],[false,{\".data-driven-application .applications-col li::after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8556.png\\\")\"]],[false,{\".data-driven-application .applications-col li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8548.png\\\")\"]],[false,{\".data-driven-application .applications-col li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8549.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(1):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8550.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8551.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8552.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(2) li:nth-child(4):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8553.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(3) li:nth-child(1):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8554.png\\\")\"]],[false,{\".data-driven-application .swiper-slide:nth-child(3) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8555.png\\\")\"]],[false,{\".clients-talk\":false},[\"background-color:#fff\",\"padding:120px 0px 120px\"]],[false,{\".lets-talk-box\":false},[\"background-color:#fff\",\"box-shadow:8px 0px 32px rgba(0,0,0,.1)\",\"padding:56px 0px 90px\",\"border-radius:16px\",\"margin-top:-19%\",\"text-align:center\"]],[false,{\".about-dev-ops .review_sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:100px\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:32px\",\"font-weight:bold\",\"color:#707070\",\"font-family:Raleway,sans-serif\",\"line-height:1.3\"]],[false,{\".lets-talk-box h3 span\":false},[\"color:#28d9cb\"]],[false,{\".clients-talk .btn-wrapper\":false},[\"width:316px\",\"margin:0px auto\",\"margin-top:-38px\"]],[false,{\".btn-gradient\":false},[\"border-radius:50px\",\"padding:18px 30px\",\"width:100%\",\"text-align:center\"]],[false,{\".build-wrapper .swiper-wrapper\":false},[\"display:flex\"]],[false,{\".build-wrapper .review_sec\":false},[\"margin-bottom:19px\",\"box-shadow:none\",\"margin-top:21px\"]],[false,{\".build-wrapper .review_sec:before\":false},[\"position:absolute\",\"bottom:6px\",\"content:\\\"\\\"\",\"width:96%\",\"margin:0px auto\",\"right:0\",\"z-index:-1\",\"left:0\",\"height:93px\",\"border-radius:50px\",\"box-shadow:rgba(0,0,0,.4) 0px 25px 20px -20px\"]],[false,{\".build-wrapper .heading-box\":false},[\"margin-bottom:24px\"]],[false,{\".build-wrapper .review_sec .swiper-slide p\":false},[\"padding-left:0\"]],[false,{\".build-wrapper .custom-txt p\":false},[\"margin-bottom:25px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt\":false},[\"width:49%\",\"margin-right:81px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-img\":false},[\"width:43%\",\"margin-left:0\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt p\":false},[\"margin-bottom:30px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt p:last-of-type\":false},[\"margin:0px\"]],[false,{\".text-grey-box\":false},[\"background-color:#f1f1f1\",\"padding:24px\",\"position:relative\",\"margin:40px 0px 32px\"]],[false,{\".text-grey-box p\":false},[\"padding-right:60px\"]],[false,{\".text-grey-box:after\":false},[\"position:absolute\",\"left:0\",\"top:0\",\"height:100%\",\"width:4px\",\"background:#152649\",\"content:\\\"\\\"\"]],[false,{\".journey-roadmap\":false},[\"margin-top:-253px\",\"background-color:#02163c\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:248px 0px 120px 0px\"]],[false,{\".review_sec2\":false},[\"padding:40px 30px 40px 50px\",\"margin-top:100px\",\"z-index:2\",\"position:relative\",\"box-shadow:none\"]],[false,{\".review_sec2::after\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8578-1.png\\\") no-repeat\"]],[false,{\".review_sec i\":false},[\"line-height:1.6\"]],[false,{\".review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:20px\"]],[false,{\".review_sec2 .title p\":false},[\"color:#152649\",\"line-height:1.2\"]],[false,{\".journey-roadmap-header\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\"]],[false,{\".journey-roadmap-logo\":false},[\"width:29%\"]],[false,{\".journey-roadmap-header .heading-box\":false},[\"width:66%\"]],[false,{\".journey-roadmap-header .heading-box h2\":false},[\"color:#fff\"]],[false,{\".journey-roadmap-header .heading-box h2 span\":false},[\"color:#28d9cb\"]],[false,{\".devops-services\":false},[\"padding-bottom:0\"]],[false,{\".devops-services .heading-box\":false},[\"margin-bottom:45px\"]],[false,{\".devops-services .heading-box h2\":false},[\"color:#28d9cb\"]],[false,{\".devops-services .applications-col ul\":false},[\"margin-bottom:37px\"]],[false,{\".devops-services .applications-col ul li\":false},[\"font-size:20px\",\"font-weight:normal\",\"border-bottom:none\",\"padding-bottom:0\",\"margin-bottom:0\",\"padding-left:37px\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:20px\",\"color:#152649\",\"line-height:1.6\",\"margin-bottom:24px\",\"position:relative\",\"padding-left:42px\",\"font-weight:bold\"]],[false,{\".devops-services .applications-col h5::before\":false},[\"position:absolute\",\"left:0px\",\"top:0px\",\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon1.png\\\")\",\"width:30px\",\"height:30px\",\"background-repeat:no-repeat\",\"margin-top:0px\"]],[false,{\".devops-services .applications-col ul li::after\":false},[\"content:none\"]],[false,{\".srvs-text-box\":false},[\"margin-bottom:37px\"]],[false,{\".srvs-text-box p\":false},[\"font-size:20px\",\"line-height:1.6\",\"padding-left:44px\"]],[false,{\".srvs-text-box:nth-child(1) p:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0\",\"left:0\",\"width:25px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/Group-8556.png\\\")\",\"height:25px\",\"margin-top:5px\"]],[false,{\".srvs-text-box:last-child h5\":false},[\"color:#707070\"]],[false,{\".srvs-text-box:last-child h5 span\":false},[\"font-weight:500\",\"color:#152649\"]],[false,{\".reliability-engineers\":false},[\"width:95%\",\"margin:0px auto\",\"background-color:#f5f5f5\",\"border-radius:24px\",\"padding:40px 30px 40px 92px\",\"position:relative\",\"margin-top:100px\",\"font-weight:bold\"]],[false,{\".reliability-engineers p\":false},[\"font-size:20px\",\"font-weight:bold\",\"margin-bottom:0px\"]],[false,{\".fortune-box\":false},[\"text-align:center\",\"display:flex\",\"align-items:flex-end\"]],[false,{\".tex-box\":false},[\"padding:11px 0px\",\"margin-top:25px\",\"line-height:1.6\",\"color:#152649\",\"width:49%\",\"border-radius:10px\",\"border:#707070 solid 1px\"]],[false,{\".right-short-text\":false},[\"margin-left:22px\"]],[false,{\".right-short-text p\":false},[\"font-size:14px\",\"font-weight:normal\",\"font-style:italic\",\"color:#707070\"]],[false,{\".mrdata-logo\":false},[\"position:absolute\",\"left:-58px\",\"top:0\",\"bottom:0\",\"display:flex\",\"align-items:center\"]],[false,{\".devops-services .applications-col:nth-child(1) h5:last-of-type::before\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon3.png\\\")\"]],[false,{\".native-applications-list .swiper-slide:nth-child(2) .srvs-text-box:nth-child(1) p:after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon2.png\\\")\",\"width:33px\"]],[false,{\".native-applications-list .swiper-slide:nth-child(2) .srvs-text-box:nth-child(2) h5::before\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon4.png\\\")\",\"margin-top:0px\"]],[false,{\".native-applications-list .swiper-slide:nth-child(2) .srvs-text-box:nth-child(3) h5::before\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/srvcicon5.png\\\")\"]],[false,{\".kubernetes-sec\":false},[\"margin-top:-95px\"]],[false,{\".kubernetes-sec .container-md\":false},[\"padding:0px 0px\"]],[false,{\".kubernetes-sec .custom-txt\":false},[\"padding:0px 24px\"]],[false,{\".kubernetes-sec .heading-box h2\":false},[\"color:#fff\",\"margin-bottom:40px\"]],[false,{\".kubernetes-sec .scroll-img amp-img\":false,\".kubernetes-sec .scroll-img amp-anim\":false},[\"margin-bottom:120px\",\"text-align:center\"]],[false,{\".kubernetes-sec .scroll-img\":false},[\"text-align:center\"]],[false,{\".kubernetes-sec .custom-txt p\":false},[\"color:#fff\",\"font-size:20px\",\"line-height:1.6\"]],[false,{\".kubernetes-sec .custom-txt p span\":false},[\"color:#24c1ff\"]],[false,{\".book-cunsultaion-sec\":false},[\"padding:10px 0px 124px 0px\",\"background-color:#f1f1f1\"]],[false,{\".book-cunsultaion-sec a.btn-blue:hover\":false},[\"color:#fff\",\"background:#28d9cb\"]],[false,{\".top-btn\":false},[\"padding-bottom:124px\",\"margin-top:-39px\"]],[false,{\".col-row ul\":false},[\"list-style:none\",\"display:flex\",\"justify-content:space-between\",\"flex-wrap:wrap\"]],[false,{\".col-row ul li\":false},[\"font-size:20px\",\"font-weight:bold\",\"color:#152649\",\"margin-bottom:32px\",\"position:relative\",\"width:30%\",\"padding-left:46px\"]],[false,{\".col-row ul li::after\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"content:\\\"\\\"\",\"width:32px\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/clck.png\\\")\",\"height:32px\"]],[false,{\".col-row ul li:nth-child(1)\":false,\".col-row ul li:nth-child(4)\":false},[\"width:35%\"]],[false,{\".col-row ul li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/cstmr.png\\\")\"]],[false,{\".col-row ul li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/wrld.png\\\")\"]],[false,{\".col-row ul li:nth-child(4):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/auto.png\\\")\"]],[false,{\".col-row ul li:nth-child(5):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/drive.png\\\")\"]],[false,{\".col-row ul li:nth-child(6):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/dlr.png\\\")\"]],[false,{\".cost-effective-sec\":false},[\"padding-bottom:0px\",\"padding-top:120px\"]],[false,{\".cost-effective-sec:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#fff\"]],[false,{\".cost-effective-sec .inner\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:end\",\"margin-bottom:80px\"]],[false,{\".cost-effective-sec .custom-txt\":false},[\"width:55%\"]],[false,{\".cost-effective-sec .left-text\":false},[\"width:43%\"]],[false,{\".cost-effective-sec .left-text p\":false},[\"font-size:20px\",\"line-height:1.6\",\"color:#707070\"]],[false,{\".cost-effective-sec .heading-box h2 span\":false},[\"color:#28d9cb\",\"display:block\"]],[false,{\".data-driven-devOps\":false},[\"display:flex\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col\":false},[\"padding-bottom:15px\",\"width:calc(50% - 38px)\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col li\":false},[\"border-bottom:#dbdbdb solid 1px\",\"padding-bottom:32px\",\"margin-bottom:32px\",\"line-height:1.6\",\"padding-left:50px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col li:after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/ppl.png\\\")\",\"width:32px\",\"height:32px\",\"margin-top:8px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(2) li:nth-child(1):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/loaction.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(2) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/icon.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(1) li:nth-child(2):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/icon2.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(1) li:nth-child(3):after\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/icon3.png\\\")\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col ul li:last-child\":false},[\"border:none\"]],[false,{\".cost-effective-sec .review_sec2 .swiper-slide\":false},[\"width:100%\"]],[false,{\".cost-effective-sec .review_sec .swiper-slide i\":false},[\"padding-left:0px\"]],[false,{\".infrastructure-sec\":false},[\"margin-top:-100px\",\"background-color:#152649\",\"text-align:center\"]],[false,{\".infrastructure-sec:not(#_#_#_#_#_#_#_)\":false},[\"padding:0px 0 80px\"]],[false,{\".infrastructure-sec .bg-img::before\":false},[\"content:\\\"\\\"\",\"width:100%\",\"height:265px\",\"position:absolute\",\"left:0\",\"bottom:-3px\",\"background-image:linear-gradient(rgba(21,38,73,0),#152649)\"]],[false,{\".infrastructure-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".infrastructure-sec .container-md:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0px\"]],[false,{\".infrastructure-sec .heading-box h2\":false},[\"color:#fff\",\"margin:auto\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:93%\"]],[false,{\".infrastructure-sec .heading-box:not(#_#_#_#_#_#_#_)\":false},[\"padding-bottom:0\",\"margin-top:40px\",\"width:100%\"]],[false,{\".infrastructure-sec .heading-box h2\":false},[\"color:#fff\",\"max-width:inherit\",\"text-align:center\"]],[false,{\".contact-wrapper-banner\":false},[\"z-index:2\"]],[false,{\".contact-form-left .calendly-inline-widget:not(#_#_#_#_#_#_#_)\":false},[\"overflow:hidden\"]],[false,{\".contact-wrapper-banner amp-img\":false,\".contact-wrapper-banner amp-anim\":false},[\"min-height:110px\"]],[false,{\".contact-wrapper-banner:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:28px\",\"height:28px\",\"background-color:#152649\",\"bottom:-13px\",\"left:18%\",\"z-index:-1\",\"transform:rotate(45deg)\",\"border-radius:4px\"]],[false,{\".change_bg .custom-contact-wrapper\":false},[\"background:#152649\",\"position:relative\",\"z-index:2\"]],[false,{\".about-map\":false},[\"position:relative\"]],[false,{\".c-full-map\":false},[\"position:absolute\",\"top:0\",\"width:100%\",\"height:100%\",\"z-index:1\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"width:100%\",\"height:100%\",\"object-fit:cover\"]],[false,{\".custom-contact-wrapper\":false},[\"padding:125px 0px 160px\",\"margin-top:0px\"]],[false,{\".about-map .c-full-map .wpgmza_map.wpgmza-auto-left:not(#_#_#_#_#_#_#_)\":false},[\"height:100%\"]],[false,{\".about-map .c-full-map .wpgmza-modern-store-locator>.wpgmza-inner\":false},[\"opacity:0\"]],[false,{\".schedule-box h1\":false},[\"display:none\"]],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"display:flex\",\"justify-content:space-between\",\"flex-wrap:wrap\",\"background:#fff\",\"box-shadow:8px 0px 32px rgba(0,0,0,.1)\",\"padding:0px\",\"border-radius:0px 26px 26px 26px\",\"position:relative\",\"z-index:2\"]],[false,{\".contact-form-left\":false},[\"width:57%\",\"padding:58px 0px 75px\"]],[false,{\".choose-option\":false},[\"padding-left:46px\"]],[false,{\".choose-option ul\":false},[\"display:flex\",\"flex-wrap:wrap\",\"justify-content:space-between\",\"list-style:none\",\"align-items:center\",\"margin-bottom:60px\"]],[false,{\".choose-option ul li\":false},[\"font-size:20px\",\"color:#152649\"]],[false,{\".choose-option ul li\":false},[\"padding:15px 33px\",\"border-radius:50px\",\"color:#707070\",\"background:#fff\",\"transition:all ease .5s\"]],[false,{\".choose-option ul li:hover\":false},[\"background:#f1f1f1\"]],[false,{\".choose-option ul li:nth-child(2)\":false},[\"font-weight:800\",\"padding:0px 20px\",\"background:transparent\",\"color:#121d3d\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box label\":false},[\"display:block\",\"font-size:18px\",\"color:#121d3d\",\"font-weight:bold\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control\":false},[\"width:100%\",\"display:block\",\"padding:14px 0px 8px\",\"border:0\",\"border-radius:0px\",\"outline:none\",\"background-color:#fff\",\"font-size:20px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:400\",\"color:#000\",\"resize:none\",\"-webkit-transition:.5s ease 0s\",\"transition:.5s ease 0s\",\"border-bottom:#e6e6e6 solid 1px\",\"margin-bottom:15px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .col-md-4\":false},[\"max-width:50%\",\"margin-bottom:15px\",\"flex:0 0 50%\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box::placeholder\":false},[\"font-size:16px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control::-webkit-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:16px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control::-ms-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:16px\",\"font-weight:normal\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control::placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:16px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea\":false},[\"margin-top:0\",\"height:130px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:55px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box input[type=\\\"submit\\\"]\":false},[\"background:linear-gradient(-90deg,#28d9cb 0,#a0f266 100%)\",\"font-size:18px\",\"height:70px\",\"font-weight:800\",\"cursor:pointer\",\"max-width:300px\",\"width:100%\",\"border-radius:50px\",\"margin:0\"]],[false,{\".change_bg .contact-form-info-right\":false},[\"background:linear-gradient(180deg,#28d9cb 0,#66f2a3 100%)\"]],[false,{\".change_bg .contact-form-info-right ul li a\":false,\".change_bg .contact-form-info-right ul li span a\":false,\".change_bg .contact-form-info-right ul li\":false,\".change_bg .contact-form-info-right ul li:first-of-type\":false,\".change_bg .contact-form-info-right h3\":false},[\"color:#152649\"]],[false,{\".change_bg .contact-form-info-right ul li\":false},[\"border-color:rgba(255,255,255,28%)\"]],[false,{\".btn-group button\":false},[\"border-radius:50px\",\"border:none\"]],[false,{\".contact-form-info-right\":false},[\"width:38%\",\"background-color:#152649\",\"border-radius:26px\",\"padding:50px 80px 119px\"]],[false,{\".contact-form-info-right h3\":false},[\"font-size:32px\",\"color:#28d9cb\",\"line-height:1.5\",\"margin-bottom:25px\",\"font-family:Raleway,sans-serif\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control:focus\":false},[\"outline:none\",\"box-shadow:none\"]],[false,{\".contact-form-info-right ul\":false},[\"list-style:none\",\"margin-bottom:70px\"]],[false,{\".contact-form-info-right ul li\":false},[\"border-bottom:#525c70 solid 1px\",\"padding:40px 0px 47px\",\"color:#bcc2ce\",\"font-size:17px\",\"position:relative\",\"display:flex\",\"align-items:center\",\"line-height:1.5\"]],[false,{\".contact-form-info-right ul li a\":false},[\"color:#28d9cb\",\"padding-left:15px\",\"text-decoration:underline\",\"display:block\"]],[false,{\".contact-form-info-right ul li:nth-of-type(1) a\":false},[\"text-decoration:none\"]],[false,{\".contact-form-info-right ul li:nth-of-type(2) a\":false},[\"color:#28d9cb\",\"padding-left:0px\"]],[false,{\".contact-form-info-right ul li:nth-of-type(2) span\":false},[\"padding-left:55px\",\"display:block\"]],[false,{\".contact-form-info-right ul li:last-child a\":false},[\"padding-left:55px\"]],[false,{\".contact-form-info-right ul li:first-of-type a\":false},[\"color:#fff\",\"font-size:32px\",\"font-weight:bold\",\"line-height:1.5\"]],[false,{\".contact-form-info-right ul li:last-child\":false},[\"border:none\"]],[false,{\".change_bg .contact-form-info-right ul .phone:before\":false,\".change_bg .contact-form-info-right ul .address:before\":false,\".change_bg .contact-form-info-right ul .email:before\":false,\".change_bg .btm-icon-line amp-img\":false,\".change_bg .btm-icon-line amp-anim\":false},[\"filter:brightness(100)\"]],[false,{\".contact-form-info-right ul .phone:before\":false},[\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/phone.svg\\\")\",\"background-size:cover\",\"background-repeat:no-repeat\",\"width:40px\",\"height:40px\",\"display:inline-block\",\"vertical-align:middle\"]],[false,{\".contact-form-info-right ul .address:before\":false},[\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/address.svg\\\")\",\"background-size:cover\",\"background-repeat:no-repeat\",\"width:41px\",\"height:45px\",\"display:inline-block\",\"vertical-align:middle\",\"padding-bottom:46px\",\"position:absolute\"]],[false,{\".contact-form-info-right ul .email:before\":false},[\"content:\\\"\\\"\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/email.svg\\\")\",\"background-size:cover\",\"background-repeat:no-repeat\",\"width:40px\",\"height:40px\",\"display:inline-block\",\"vertical-align:middle\",\"position:absolute\"]],[false,{\".change_bg .font-des\":false},[\"-webkit-text-fill-color:#fff\",\"border-image:unset\"]],[false,{\".font-des\":false},[\"font-size:25px\",\"color:#fff\",\"font-weight:bold\",\"border:4px solid\",\"padding:4px 5px\",\"background:linear-gradient(0deg,rgba(40,217,203,1) 0%,rgba(102,242,163,1) 100%)\",\"-webkit-background-clip:text\",\"-webkit-text-fill-color:transparent\",\"border-image:linear-gradient(0deg,rgba(40,217,203,1) 0%,rgba(102,242,163,1) 100%)\"]],[false,{\".btm-icon-line\":false},[\"position:relative\",\"display:flex\",\"justify-content:center\"]],[false,{\".choose-option ul li.tab\":false},[\"cursor:pointer\"]],[false,{\".choose-option ul li:last-child\":false},[\"margin-left:0px\"]],[false,{\".contact-form-left .tab-content\":false},[\"display:none\",\"padding-left:50px\"]],[false,{\".contact-form-left .tab-content.active\":false},[\"display:block\"]],[false,{\".btm-icon-line:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"left:0px\",\"bottom:0px\",\"margin:auto\",\"height:1px\",\"width:130px\",\"top:0\",\"background:#525c70\"]],[false,{\".btm-icon-line::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"right:0px\",\"bottom:0px\",\"margin:auto\",\"height:1px\",\"width:130px\",\"top:0\",\"background:#525c70\"]],[true,\"@media only screen and (min-width: 2751px) and (max-width: 3840px){\"],[true,{\".new-header\":true},[\"padding:0px 23%\"]],[true,\"}\"],[true,\"@media only screen and (min-width: 2200px) and (max-width: 2750px){\"],[true,{\".new-header\":true},[\"padding:0px 10%\"]],[true,\"}\"],[false,\"@media screen and (max-width: 1320px) and (min-width: 1025px){\"],[false,{\".contact-form-info-right\":false},[\"padding:50px 25px 119px\"]],[false,\"}\"],[true,\"@media only screen and (max-width: 1920px){\"],[true,{\".new-header .dropdown-menu>.container\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".new-header .mega-menu-right\":true},[\"padding:0px\",\"margin:0px\",\"flex:0 0 71.666667%\",\"max-width:71.666667%\"]],[true,{\".new-header .dropdown-menu .col-lg-4\":true},[\"padding:0\",\"flex:0 0 24.333333%\",\"max-width:24.333333%\"]],[true,{\".new-header .mega-menu-right .row .menu-widget\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".dropdown-menu\":true},[\"width:66%\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1024px){\"],[true,{\".new-header .dropdown-menu>.container\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".new-header .mega-menu-right\":true},[\"flex:0 0 78.666667%\",\"max-width:78.666667%\"]],[true,{\".new-header .dropdown-menu .col-lg-4\":true},[\"flex:0 0 21.333333%\",\"max-width:21.333333%\"]],[true,{\".new-header .mega-menu-right .row .menu-widget\":true},[\"padding:0px\",\"margin:0px\"]],[true,{\".dropdown-menu\":true},[\"width:66%\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-top:-16%\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:12%\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .mega-menu-right\":true},[\"flex:0 0 66.666667%\",\"max-width:66.666667%\",\"padding-right:71px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .mega-menu-right\":true},[\"flex:100%\",\"max-width:100%\",\"padding-right:20px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .dropdown-menu .col-lg-4\":true},[\"flex:100%\",\"max-width:100%\"]],[true,{\".new-header__nav--subtitle p\":true},[\"padding-left:0px\"]],[true,{\"a.new-header__nav--menu--button\":true},[\"margin-bottom:25px\"]],[true,{\".new-header__menu-item\":true},[\"padding-left:0\"]],[true,\"}\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 90px 0px 30px\"]],[true,\"@media only screen and (min-width: 1920px) and (max-width: 2129px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 50px 0px 30px\"]],[true,\"}\"],[true,\"@media (max-width: 1800px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 2.2rem\"]],[true,\"}\"],[true,\"@media (max-width: 1366px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 1rem 0rem 2.2rem\"]],[true,\"}\"],[true,\"@media (max-width: 1280px){\"],[true,{\".new-header .navbar\":true},[\"padding:.5rem 1.2rem\"]],[true,\"}\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link\":true},[\"font-size:16px\"]],[true,\"@media only screen and (max-width: 1920px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:16px\",\"padding:0px 17px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1680px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"padding:0px 6px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1440px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"padding:0px 11px\",\"font-size:14px\"]],[false,{\".native-applications-list\":false},[\"padding:120px 0px 120px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1366px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:13px\",\"padding:0px 11px\"]],[false,{\".depending-text p\":false},[\"font-size:23px\"]],[false,{\".applications-col li\":false},[\"font-size:18px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1024px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\",\"padding:0px 8px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:10px\",\"padding:.5rem 1rem\"]],[true,\"}\"],[true,{\".show>.dropdown-toggle::after\":true},[\"transform:rotate(45deg)\",\"text-align:left\",\"display:inline-block\"]],[true,{\".show>.dropdown-toggle::after:not(#_#_#_#_#_#_#_#_)\":true},[\"width:7px\",\"height:7px\",\"border:solid 1px #24c1ff\",\"border-left:0\",\"border-top:0\"]],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".show>.dropdown-toggle::after\":true},[\"display:none\"]],[true,\"}\"],[true,{\"a.new-header__nav--menu--button\":true},[\"position:relative\",\"min-width:132px\",\"transition:all ease .5s\",\"transition:all .5s\",\"border:1px solid #9df168\",\"background:transparent\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"margin:0px\",\"display:flex\",\"text-align:left\",\"padding-left:10px\",\"padding-right:10px\",\"line-height:44px\",\"transform:scale(1)\",\"max-width:170px\"]],[true,\"@media (max-width: 992px){\"],[true,{\"a.new-header__nav--menu--button\":true},[\"width:150px\"]],[true,\"}\"],[true,\"@media (max-width: 991px){\"],[true,{\"a.new-header__nav--menu--button\":true},[\"margin-bottom:25px\"]],[true,\"}\"],[true,{\".new-header__nav--title h5\":true},[\"padding-right:40px\"]],[true,\"@media (max-width: 1680px){\"],[true,{\".new-header__nav--title h5\":true},[\"padding-right:0px\"]],[true,\"}\"],[true,{\"a.new-header__nav--menu--button:before\":true},[\"position:absolute\",\"right:30px\",\"top:43%\",\"width:10px\",\"height:10px\",\"border:#707070 solid 1px\",\"z-index:99\",\"content:\\\"\\\"\",\"transform:rotate(45deg)\",\"border-bottom:0\",\"border-left:0\",\"margin-left:15px\",\"display:none\"]],[true,{\"a.new-header__nav--menu--button:hover\":true},[\"transform:scale(1.1)\"]],[true,\"@keyframes pulse{\"],[true,\"0%{transform:scale(1)}\"],[true,\"100%{transform:scale(1.1)}\"],[true,\"}\"],[true,{\".new-header__nav--menu--button:hover\":true},[\"font-size:1rem\"]],[true,\"@media screen and (max-width: 992px){\"],[true,{\"a.new-header__nav--menu--button:after\":true},[\"width:110px\"]],[true,\"}\"],[true,{\"a.new-header__nav--menu--button:hover::after\":true},[\"width:100%\",\"transition:all ease .2s\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\"]],[true,{\".new-header__nav--menu--title\":true},[\"color:#152649\"]],[true,{\".new-header__nav--subtitle-icon amp-img\":true,\".new-header__nav--subtitle-icon amp-anim\":false},[\"width:25px\"]],[true,{\".new-header__nav--subtitle-icon\":true},[\"text-align:left\"]],[true,\"@media screen and (max-width: 1920px){\"],[true,{\".new-header__nav--menu--img\":true},[\"flex:0 0 23%\",\"max-width:23%\"]],[true,{\".col-md-10.menu-text\":true},[\"flex:0 0 77%\",\"max-width:77%\",\"padding-right:0px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1440px){\"],[true,{\".new-header__nav--menu--img\":true},[\"padding:0\",\"max-width:20%\",\"flex:0 0 20%\"]],[true,\"}\"],[true,{\".col-12.new-header__nav--subtitle\":true},[\"padding-right:20px\"]],[true,{\".dropdown-menu\":true},[\"border-top:1px solid #dfdfdf\"]],[true,\"@media only screen and (max-width: 1920px){\"],[true,{\".dropdown-menu\":true},[\"border-top:1px solid #dfdfdf\",\"width:64%\",\"padding-left:40px\",\"padding-top:20px\",\"padding-bottom:20px\"]],[true,{\".new-header__nav--list li .nav-link:not(#_#_#_#_#_#_#_#_)\":true},[\"padding-right:20px\",\"padding-left:20px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1680px){\"],[true,{\".dropdown-menu\":true},[\"width:70%\",\"padding-left:44px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1536px){\"],[true,{\".dropdown-menu\":true},[\"width:76%\",\"padding-left:44px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1440px){\"],[true,{\".new-header__nav--list li\":true},[\"padding:0px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 991px){\"],[true,{\".new-header__nav--list li\":true},[\"padding-left:1rem\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1440px){\"],[true,{\".dropdown-menu\":true},[\"width:83%\",\"padding-left:50px\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:44px\"]],[false,{\".review_sec2\":false},[\"margin-top:47px\"]],[false,{\".top-btn\":false},[\"padding-bottom:60px\"]],[false,{\".book-cunsultaion-sec\":false},[\"padding:10px 0px 60px 0px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 1024px){\"],[true,{\".dropdown-menu\":true},[\"padding-left:25px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".dropdown-menu\":true},[\"width:100%\",\"padding-right:10px\",\"padding-left:1rem\",\"border-top:none\"]],[true,\"}\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:18px\",\"letter-spacing:-.43px\"]],[true,\"@media screen and (max-width: 1280px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:16px\"]],[false,{\".custom-qout-box .review_sec i\":false},[\"font-size:18px\"]],[false,{\".depending-text p\":false},[\"font-size:21px\"]],[false,{\".applications-col li\":false},[\"font-size:17px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 1024px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:14px\"]],[false,{\".custom-qout-box .review_sec i\":false},[\"font-size:16px\"]],[false,{\".depending-text p\":false},[\"font-size:17px\"]],[false,{\".native-applications-list\":false},[\"padding:90px 0px 50px\"]],[false,{\".depending-btn .btn-blue\":false},[\"padding:15px 10px\"]],[false,{\".applications-col li\":false},[\"font-size:15px\"]],[false,{\".native-applications-list .swiper-slide\":false},[\"width:calc(50% - 19px)\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:26px\"]],[false,{\".lets-talk-box\":false},[\"margin-top:-25%\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 140px\"]],[false,{\".data-driven-application .swiper-slide\":false},[\"width:calc(33.333% - 10px)\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-txt\":false},[\"margin-right:0\"]],[true,\"}\"],[true,\"@media screen and (max-width: 991px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:1rem\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:18%\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:30px\",\"width:33%\"]],[false,{\".keeping-future ul li:nth-child(9)\\n.keeping-future ul li:nth-child(6)\":false,\".keeping-future ul li:nth-child(3)\":false},[\"margin-right:0px\"]],[false,{\".keeping-future ul li:nth-child(10)\":false,\".keeping-future ul li:nth-child(9)\":false},[\"border-bottom:#16365c solid 1px\"]],[true,\"}\"],[true,\"@media screen and (max-width: 768px){\"],[true,{\".new-header__nav--menu--title\":true},[\"font-size:1.1rem\"]],[false,{\".keeping-you-competitive p\":false},[\"font-size:13px\"]],[false,{\".depending-on\":false},[\"flex-wrap:wrap\"]],[false,{\".depending-img-box\":false},[\"width:20%\"]],[false,{\".depending-text\":false},[\"width:75%\"]],[false,{\".depending-btn\":false},[\"width:100%\",\"text-align:center\"]],[false,{\".custom-qout-box\":false},[\"padding:40px 0px 60px\"]],[false,{\".depending-btn .btn-blue\":false},[\"padding:15px 30px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-top:-24%\",\"margin-bottom:55px\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 110px\"]],[false,{\".native-applications-list .heading-box h2\":false},[\"font-size:25px\"]],[false,{\".native-applications-list .heading-box\":false},[\"margin-bottom:35px\"]],[false,{\".applications-col li\":false},[\"font-size:12px\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:20px\"]],[false,{\".lets-talk-box\":false},[\"padding:35px 0px 60px\",\"margin-top:-29%\"]],[false,{\".clients-talk\":false},[\"padding:120px 0px 55px\"]],[false,{\".clients-talk .btn-gradient\":false},[\"font-size:27px\",\"padding:10px 30px\"]],[false,{\".clients-talk .btn-wrapper\":false},[\"width:245px\",\"margin-top:-27px\"]],[false,{\".keeping-future ul\":false},[\"justify-content:space-between\"]],[false,{\".keeping-future ul li\":false},[\"width:48%\"]],[false,{\".keeping-future ul li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-right:0\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(5)\":false,\".keeping-future ul li:nth-child(1)\":false},[\"width:48%\"]],[false,{\".keeping-future ul li:nth-child(9)\":false,\".keeping-future ul li:nth-child(10)\":false},[\"border-bottom:#16365c solid 1px\"]],[false,{\".tex-box\":false},[\"width:68%\"]],[true,\"}\"],[true,{\".new-header__nav--subtitle\":true,\".new-header__nav--subtitle .col-10\":true,\".new-header__nav--title .col-10\":true,\".new-header__nav--title\":true},[\"padding:0px\"]],[true,{\".new-header__nav--subtitle .row .col-12\":true},[\"padding:0px\"]],[true,{\".new-header__nav--menu--text\":true},[\"font-size:12px\",\"letter-spacing:-.29px\"]],[true,{\".new-header__nav--menu--img amp-img\":true,\".new-header__nav--menu--img amp-anim\":false},[\"max-width:100%\",\"width:48px\"]],[true,\"@media only screen and (max-width: 1400px){\"],[true,{\".new-header .dropdown-menu .menu-right\":false,\".new-header .dropdown-menu .menu-widget .row\":true,\".new-header .dropdown-menu .menu-widget\":true},[\"padding:0px\"]],[true,{\".mega-menu-right\":true},[\"padding:0px\"]],[true,{\".new-header__nav--menu--box\":true},[\"align-items:flex-start\"]],[true,{\".col-md-10.menu-text\":true},[\"padding:0px 2px 0px 9px\",\"max-width:80%\",\"flex:0 0 80%\"]],[true,\"}\"],[true,{\".footer-2022__social-media a\":true},[\"transition:all ease .5s\"]],[true,{\".footer-2022__social-media a:hover\":true},[\"margin-top:-10px\"]],[true,\"@media only screen and (min-width: 1800px) and (max-width: 3034px){\"],[true,{\"footer.footer-2022 .container\":true},[\"max-width:1545px\"]],[true,\"}\"],[true,\"@media (max-width: 600px){\"],[true,{\"footer.footer-2022 .container\":true},[\"padding:0px 44px\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec\":false},[\"padding:40px 0px 0px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row\":false},[\"padding:40px 25px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content.active\":false},[\"flex-wrap:wrap\",\"padding-bottom:28px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img\":false},[\"width:100%\",\"margin-bottom:32px\"]],[false,{\".rebuild-and-replatform\":false},[\"padding:120px 0px 120px 0px\"]],[false,{\".rebuild-and-replatform .txt .heading-box h2 br\":false},[\"display:none\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text\":false},[\"padding-left:0\",\"width:100%\"]],[false,{\".review_sec amp-img\":false,\".review_sec amp-anim\":false},[\"top:0\"]],[false,{\".review_sec .swiper-slide i\":false},[\"padding-left:0\"]],[false,{\".review_sec .swiper-slide i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-boxs\":false},[\"margin-bottom:8px\"]],[false,{\".reviewSwiper\":false},[\"padding-top:12px\"]],[false,{\".review_sec .swiper-slide p\":false},[\"padding-left:55px\"]],[false,{\".review_sec .title p\":false},[\"padding-left:0px\"]],[false,{\".review_sec .title p span\":false},[\"display:block\"]],[false,{\".review_sec2 .swiper-slide p:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:0px\"]],[true,\"}\"],[true,\"@media (max-width: 374px){\"],[true,{\"footer.footer-2022 .container\":true},[\"padding:0px 30px\"]],[true,\"}\"],[true,\"@media (max-width: 320px){\"],[true,{\"footer.footer-2022 .container\":true},[\"padding:0px 10px\"]],[true,\"}\"],[true,{\".footer-2022__copyright\":true},[\"letter-spacing:-.35px\"]],[false,{\".container-md\":false},[\"max-width:1272px\",\"margin:0 auto\",\"padding:0 20px\",\"width:90%\"]],[true,{\".footer-2022__menu--list h5:after\":true},[\"border-top:0px\",\"border-right:0\",\"border-left:0\"]],[true,\"@media (max-width: 768px){\"],[true,{\".footer-2022__menu--box\":true},[\"flex-direction:inherit\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[true,\"}\"],[true,\"@media (max-width: 767px){\"],[true,{\".footer-2022__box-end\":true},[\"letter-spacing:-.35px\"]],[true,{\".footer-2022__menu--box\":true},[\"flex-direction:column\"]],[false,{\".g-small-d-block\":false},[\"display:block\"]],[false,{\".g-small-d-none\":false},[\"display:none\"]],[false,{\".data-driven-application .swiper-button-next:after\":false},[\"display:block\"]],[false,{\".data-driven-application .swiper-button-prev:after\":false},[\"display:block\"]],[true,\"}\"],[true,\"@media (max-width: 767px){\"],[false,{\".container-md\":false},[\"width:100%\",\"padding:0 30px\"]],[false,{\".accordianNav .drop_arrow:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"z-index:0\",\"left:0\",\"top:0\",\"width:0\",\"height:100%\",\"background-color:#444\",\"background:rgba(244,244,244,.3)\",\"transition:all .3s ease-out\"]],[false,{\".accordianNav .drop_arrow:hover:before\":false,\".accordianNav .drop_arrow .active:before\":false},[\"width:2%\"]],[true,{\".footer-2022 .drop_arrow\":true},[\"position:relative\"]],[false,{\".drop_arrow.active h5\":false},[\"color:#fff\"]],[true,{\".footer-2022 .drop_arrow::before\":true},[\"content:\\\"\\\"\",\"width:6px\",\"height:6px\",\"border-bottom:2px solid #24c1ff\",\"border-right:2px solid #24c1ff\",\"float:right\",\"position:absolute\",\"top:12px\",\"right:0px\",\"transform:rotate(45deg)\",\"transform-origin:center\",\"transition:all .4s ease\"]],[false,{\".footer-2022 .drop_arrow.active::before\":false},[\"transform:rotate(225deg)\"]],[false,{\".footer-2022__menu--list .drop_arrow .active:after\":false},[\"transform:rotate(-135deg)\",\"border-color:#fff\"]],[true,{\".footer-2022__menu--list ul\":true},[\"margin-bottom:3rem\",\"display:none\"]],[false,{\".keeping-future ul\":false},[\"column-count:2\"]],[false,{\".applications-col li\":false},[\"font-size:14px\"]],[false,{\".data-driven-application .applications-col li\":false},[\"margin-bottom:24px\"]],[false,{\".applications-col li\":false},[\"padding-bottom:16px\",\"margin-bottom:16px\"]],[false,{\".custom-qout-box .review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".keeping-future ul li\":false},[\"margin-bottom:16px\",\"padding-bottom:16px\",\"font-size:14px\"]],[false,{\".review_sec .title p\":false},[\"font-size:14px\"]],[false,{\".keeping-you-competitive\":false},[\"padding:80px 0px 195px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-bottom:65px\",\"margin-top:-19%\"]],[false,{\".depending-text\":false},[\"text-align:center\",\"width:80%\",\"margin:0px auto 40px auto\"]],[false,{\".custom-qout-box\":false},[\"padding:40px 0px 80px\"]],[false,{\".native-applications-list\":false},[\"padding:80px 0px 50px\"]],[false,{\".native-applications-list .swiper-slide:nth-child(1) li:first-of-type\":false},[\"padding-right:80px\"]],[false,{\".lets-talk-box h3\":false},[\"font-size:24px\",\"padding:0px 100px\"]],[false,{\".depending-img-box\":false},[\"width:100%\",\"text-align:center\"]],[false,{\".keeping-you-competitive p\":false},[\"font-size:14px\"]],[false,{\".keeping-future\":false},[\"margin-top:60px\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner:after\":false},[\"position:absolute\",\"bottom:0\",\"left:0\",\"content:\\\"\\\"\",\"width:30px\",\"height:30px\",\"background:#04061f\",\"transform:rotate(45deg)\",\"border-radius:2px\",\"margin-left:34px\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner.content_center\":false},[\"text-align:center\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner.content_center:after\":false},[\"margin:0px auto\",\"left:0px\",\"right:0px\"]],[false,{\".c-app-banner h2\":false},[\"font-size:32px\"]],[false,{\".c-app-banner p\":false},[\"font-size:16px\"]],[false,{\".infrastructure-sec .bg-img .full-img\":false},[\"height:500px\",\"object-fit:cover\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:nth-child(1) ul li:last-child\":false},[\"border-bottom:#dbdbdb solid 1px\"]],[false,{\".reliability-engineers\":false},[\"width:100%\",\"border:#fff solid 1px\"]],[false,{\".fortune-box\":false},[\"flex-wrap:wrap\"]],[false,{\".tex-box\":false},[\"width:100%\",\"margin-top:15px\",\"margin-bottom:15px\"]],[false,{\".reliability-engineers p\":false},[\"line-height:15px\",\"margin:0px\"]],[false,{\".right-short-text\":false},[\"margin-left:0\",\"text-align:center\",\"width:100%\"]],[true,\"}\"],[false,\"@media (max-width: 575px){\"],[false,{\".container-md\":false},[\"padding:0 24px\"]],[false,{\".about-dev-ops .review_sec2:not(#_#_#_#_#_#_#_)\":false},[\"padding:20px 20px 25px 20px\"]],[false,{\".custom-qout-box .review_sec\":false},[\"background-color:#f5f5f5\",\"margin-bottom:65px\",\"margin-top:-30%\"]],[false,{\".review_sec\":false},[\"padding:25px\"]],[false,{\".data-driven-application\":false},[\"padding:80px 0px 200px\"]],[false,{\".depending-text p\":false},[\"font-size:16px\"]],[false,{\".lets-talk-box\":false},[\"padding:35px 0px 60px\",\"margin-top:-43%\"]],[false,{\".depending-text\":false},[\"width:96%\"]],[false,{\".lets-talk-box h3\":false},[\"padding:0px 45px\"]],[false,{\".clients-talk .btn-gradient\":false},[\"font-size:14px\",\"padding:16px 30px\"]],[false,{\".keeping-you-competitive:not(#_#_#_#_#_#_#_)\":false},[\"padding:80px 0px 160px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li\":false},[\"padding:5px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-col ul li a\":false},[\"font-size:14px\"]],[false,{\".review_sec::after\":false},[\"left:25px\"]],[false,{\".review_sec .swiper-slide i\":false},[\"margin:8px 0px 8px\",\"padding-right:10px\"]],[false,{\".review_sec .swiper-slide p\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform .txt p\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform:not(#_#_#_#_#_#_#_)\":false},[\"padding:65px 0px 120px 0px\"]],[false,{\".rebuild-and-replatform .txt label\":false},[\"margin-bottom:15px\"]],[false,{\".rebuild-and-replatform .heading-box h2\":false},[\"font-size:30px\",\"margin-bottom:30px\"]],[false,{\".rebuild-and-replatform .txt p:last-of-type\":false},[\"margin-bottom:55px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .text p\":false},[\"font-size:14px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content.active\":false},[\"padding-bottom:40px\"]],[false,{\".rebuild-and-replatform .custom-tabs .review_sec\":false},[\"padding:15px 0px 0px\"]],[false,{\".keeping-you-competitive .heading-box h2\":false},[\"font-size:30px\",\"margin-bottom:24px\"]],[false,{\".keeping-you-competitive .heading-box h2 br\":false},[\"display:none\"]],[false,{\".keeping-future ul li:nth-of-type(4)\":false},[\"order:11\",\"border:none\"]],[false,{\".keeping-future ul li:nth-of-type(8)\":false},[\"order:9\"]],[false,{\".keeping-future ul li\":false},[\"margin-bottom:10px\",\"padding-bottom:10px\"]],[false,{\".native-applications-list .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".clients-talk .btn-wrapper\":false},[\"width:132px\"]],[false,{\"section.custom-full-bg\":false},[\"display:none\"]],[false,{\".native-applications-list .heading-box label\":false},[\"letter-spacing:1.1px\"]],[false,{\".c-scroll-box\":false},[\"overflow:scroll\"]],[false,{\".c-scroll-box:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".scroll-img\":false},[\"width:250%\",\"position:relative\"]],[false,{\".scroll-img amp-img\":false,\".scroll-img amp-anim\":false},[\"max-width:unset\",\"width:100%\"]],[false,{\".scroll-img:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/sroll-l.png\\\")\",\"width:25px\",\"height:25px\",\"bottom:0\",\"margin:auto\",\"left:25%\"]],[false,{\".scroll-img::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/scroll-right.png\\\")\",\"width:25px\",\"height:25px\",\"bottom:0\",\"margin:auto\",\"right:27%\"]],[false,{\".journey-roadmap .scroll-img::after\":false,\".journey-roadmap .scroll-img::before\":false},[\"display:none\"]],[false,{\".native-data-driven-top\":false},[\"padding-top:80px\"]],[false,{\".native-data-driven-top .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".cost-effective-sec .review_sec .swiper-slide i:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".lets-talk-box\":false},[\"margin-top:-73%\"]],[false,{\".custom-qout-box .review_sec\":false},[\"margin-bottom:65px\",\"margin-top:-54%\"]],[false,{\"section.cp-tek-teams-isk.c-app-banner amp-img\":false,\"section.cp-tek-teams-isk.c-app-banner amp-anim\":false},[\"min-height:inherit\"]],[false,{\".c-app-banner .title\":false},[\"margin-bottom:14px\"]],[false,{\".c-app-banner p\":false},[\"font-size:16px\",\"padding-right:20px\"]],[false,{\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-img\":false,\".rebuild-and-replatform .custom-tabs .tabs-row .tab-content .img amp-anim\":false},[\"max-width:185px\",\"object-fit:cover\",\"width:100%\",\"text-align:center\",\"display:block\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media (max-width: 360px){\"],[false,{\".lets-talk-box h3\":false},[\"padding:0px 26px\"]],[false,\"}\"],[true,{\"a\":true},[\"display:inline-block\"]],[true,{\"*\":true},[\"-webkit-box-sizing:border-box\",\"box-sizing:border-box\",\"margin:0\",\"padding:0\"]],[true,{\"amp-img\":true,\"amp-anim\":false},[\"max-width:100%\"]],[true,{\"a\":true},[\"text-decoration:none\"]],[false,{\".btn-blue\":false},[\"background-color:#24c1ff\",\"color:#152649\",\"border-radius:30px\",\"font-size:20px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding:15px 30px\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\",\"border:1px solid #24c1ff\"]],[false,\"@media (max-width: 992px){\"],[false,{\".btn-blue\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".btn-blue\":false},[\"font-size:14px\",\"padding:15px 40px\"]],[false,\"}\"],[false,{\".btn-blue:hover\":false},[\"background-color:transparent\"]],[false,{\".btn-blue.dark-blue\":false},[\"background-color:#152649\",\"color:#24c1ff\",\"border:1px solid #152649\"]],[false,{\".btn-blue.dark-blue:hover\":false},[\"background-color:transparent\"]],[false,{\".btn-green\":false},[\"background-color:transparent\",\"border:1px solid #8bed78\",\"color:#8bed78\",\"border-radius:30px\",\"font-size:20px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding:15px 30px\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width: 992px){\"],[false,{\".btn-green\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".btn-green\":false},[\"font-size:14px\",\"padding:15px 40px\"]],[false,\"}\"],[false,{\".btn-green:hover\":false},[\"color:#152649\",\"background-color:#8bed78\"]],[false,{\".btn-gradient\":false},[\"background:-webkit-gradient(linear,left top,right top,color-stop(0,#28d9cb),to(#a0f266))\",\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"color:#152649\",\"border-radius:30px\",\"font-size:32px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding:15px 30px\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,{\".btn-gradient:hover\":false},[\"background:-webkit-gradient(linear,right top,left top,color-stop(0,#28d9cb),to(#a0f266))\",\"background:linear-gradient(-90deg,#28d9cb 0,#a0f266 100%)\"]],[false,{\".heading-box label\":false},[\"font-size:18px\",\"color:#7080a7\",\"display:block\",\"margin-bottom:24px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"letter-spacing:1.8px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".heading-box label\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".heading-box label\":false},[\"font-size:14px\",\"letter-spacing:1.4px\",\"margin-bottom:16px\"]],[false,\"}\"],[false,{\".heading-box label i\":false},[\"margin-right:8px\"]],[false,{\".heading-box h2\":false},[\"color:#152649\",\"font-size:50px\",\"line-height:1\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\"]],[false,\"@media (max-width: 1377px){\"],[false,{\".keeping-future ul li\":false},[\"margin-right:43px\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".heading-box h2\":false},[\"font-size:45px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".heading-box h2\":false},[\"font-size:40px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".heading-box h2\":false},[\"font-size:32px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".heading-box h2\":false},[\"font-size:30px\"]],[false,\"}\"],[false,{\".heading-box h2 span\":false},[\"color:#24c1ff\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:80px\",\"text-align:center\",\"padding-top:60px\",\"padding-bottom:120px\",\"position:relative\",\"background-position:center bottom\",\"background-repeat:no-repeat\",\"background-size:cover\",\"min-height:500px\",\"max-height:55vh\"]],[false,\"@media (max-width: 480px){\"],[false,{\".cp-cloud-native-isk figure\":false},[\"max-width:24px\",\"margin:auto\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk p\":false},[\"color:#28d9cb\",\"font-size:16px\",\"letter-spacing:1.6px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"margin-top:15px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".cp-cloud-native-isk p\":false},[\"font-size:14px\",\"letter-spacing:1.4px\",\"margin-top:12px\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:60px\",\"color:#fff\",\"line-height:1\",\"font-family:Raleway,sans-serif\",\"margin-top:90px\",\"margin-bottom:30px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:50px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:40px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:32px\",\"line-height:34px\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk .btn\":false},[\"border:1px solid #28d9cb\",\"color:#28d9cb\",\"font-size:24px\",\"padding:7px 32px\",\"border-radius:30px\",\"background:transparent\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"-webkit-transition:all .3s ease-in-out\",\"transition:all .3s ease-in-out\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".cp-cloud-native-isk .btn\":false},[\"font-size:20px\",\"padding:10px 32px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".cp-cloud-native-isk .btn\":false},[\"font-size:14px\",\"padding:0px 32px\",\"font-weight:500\",\"width:210px\"]],[false,\"}\"],[false,{\".cp-cloud-native-isk .btn:hover\":false},[\"background-color:#28d9cb\",\"color:#152649\"]],[false,{\".cp-cloud-native-isk .angle-down\":false},[\"position:absolute\",\"bottom:5px\",\"left:50%\",\"-webkit-transform:translateX(-50%)\",\"transform:translateX(-50%)\"]],[false,{\".cp-cloud-native-isk .angle-down a\":false},[\"font-size:15px\",\"color:#28d9cb\"]],[false,{\".custom-txt-img-sec\":false},[\"padding-top:140px\",\"padding-bottom:120px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".custom-txt-img-sec\":false},[\"padding-top:60px\",\"padding-bottom:60px\"]],[false,{\".heading-box h2\":false},[\"font-size:35px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .cutsom-hide-text\":false},[\"display:none\"]],[false,{\".custom-txt-img-sec .cutsom-hide-text p\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.5\",\"font-family:raleway,sans-serif\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-txt-img-sec\":false},[\"padding:50px 0 30px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:calc(50.5% - 81px)\",\"margin-right:81px\"]],[true,\"@media (max-width: 1024px){\"],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:50%\"]],[true,{\".new-header__nav--title h5\":true},[\"font-size:25px\",\"line-height:1.2\"]],[false,{\".keeping-future ul li\":false},[\"width:24%\"]],[false,{\".keeping-future ul li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-right:29px\"]],[false,{\".keeping-you-competitive\":false},[\"padding-bottom:165px\"]],[false,{\".rebuild-and-replatform\":false},[\"padding:120px 0px 120px 0px\"]],[true,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:100%\",\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt label\":false},[\"margin-bottom:24px\"]],[false,\"@media (max-width: 767px){\"],[false,{\"section.custom-txt-img-sec.c-application-development\":false},[\"position:relative\",\"z-index:1\"]],[false,{\".custom-txt-img-sec .custom-img figure amp-img\":false,\".custom-txt-img-sec .custom-img figure amp-anim\":false,\".custom-txt-img-sec .custom-img figure\":false},[\"width:100%\",\"mix-blend-mode:multiply\"]],[false,{\".custom-txt-img-sec .custom-txt label\":false},[\"margin-bottom:20px\"]],[false,{\".custom-txt-img-sec .cloud-native-application .custom-img\":false},[\"max-width:250px\",\"margin-left:auto\",\"width:100%\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"color:#152649\",\"margin-bottom:40px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"font-size:38px\"]],[false,{\".contact-tek-teams.custom-txt-img-sec .custom-txt h2\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"font-size:27px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"padding-right:0\"]],[false,{\".keeping-future ul\":false},[\"font-size:20px\"]],[false,{\".keeping-future ul li\":false},[\"width:47%\"]],[false,{\".keeping-future ul li:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-right:0px\"]],[false,{\".keeping-future ul li:nth-child(11)\":false},[\"border-bottom:#16365c solid 1px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"margin-bottom:0px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt h2 span\":false},[\"color:#24c1ff\"]],[false,{\".tek-world-scale .custom-txt h2 span\":false},[\"color:#28d9cb\"]],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.5\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"@media (min-width: 1280px) and (max-width: 1680px){\"],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".c-application-development .custom-txt p span\":false,\".custom-txt-img-sec .custom-txt p\":false},[\"color:#152649\"]],[false,{\".c-application-development .custom-txt p\":false},[\"color:#707070\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-txt-img-sec .custom-txt h2\":false},[\"margin-bottom:25px\"]],[false,{\".custom-txt-img-sec .custom-txt p\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".contact-tek-teams .custom-img p\":false},[\"margin-bottom:30px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-txt .btn-blue\":false},[\"margin-top:48px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-txt-img-sec .custom-txt .btn-blue\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,{\".custom-txt-img-sec .custom-img\":false},[\"width:calc(49.5% - 81px)\",\"margin-left:81px\",\"display:flex\",\"align-items:center\"]],[false,{\".custom-txt-img-sec .custom-img figure amp-img\":false,\".custom-txt-img-sec .custom-img figure amp-anim\":false,\".custom-txt-img-sec .custom-img figure\":false},[\"width:100%\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"width:calc(50.5% - 40px)\",\"margin-right:40px\"]],[false,{\".custom-txt-img-sec .custom-img\":false},[\"width:calc(49.5% - 40px)\",\"margin-left:40px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-txt-img-sec .custom-img\":false},[\"width:100%\",\"max-width:500px\",\"margin:25px auto 0\"]],[false,{\".custom-txt-img-sec .custom-txt\":false},[\"margin-right:0\"]],[false,{\".custom-txt-img-sec .custom-txt:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".text-grey-box p:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".text-grey-box\":false},[\"margin-bottom:2px\"]],[false,{\".review_sec2 i\":false},[\"font-weight:500\"]],[false,{\".review_sec2 i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\",\"color:#152649\"]],[false,{\"section.custom-full-bg.journey-roadmap .container-md\":false},[\"padding:0px\"]],[false,{\".journey-roadmap-header\":false},[\"padding:0px 24px\"]],[false,{\".journey-roadmap-header\":false},[\"flex-wrap:wrap\"]],[false,{\".journey-roadmap-header .heading-box\":false},[\"width:100%\",\"text-align:center\",\"margin-bottom:32px\"]],[false,{\".journey-roadmap-header .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".journey-roadmap-logo\":false},[\"width:65%\",\"margin:0px auto\",\"margin-bottom:24px\"]],[false,{\".devops-services\":false},[\"padding:80px 0px 50px\",\"background-color:#f1f1f1\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:14px\"]],[false,{\".devops-services .applications-col h5\":false},[\"padding-left:31px\"]],[false,{\".devops-services .applications-col h5::before\":false},[\"margin-top:2px\"]],[false,{\".mrdata-logo\":false},[\"left:0\",\"top:-55px\",\"bottom:auto\",\"justify-content:center\",\"right:0\"]],[false,{\".reliability-engineers\":false},[\"text-align:center\"]],[false,{\".reliability-engineers:not(#_#_#_#_#_#_#_)\":false},[\"padding:85px 27px 40px 27px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-197px\"]],[false,{\".kubernetes-sec .heading-box h2\":false},[\"font-size:30px\"]],[false,{\".kubernetes-sec .custom-txt p:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:14px\"]],[false,{\".kubernetes-sec .custom-txt p span\":false},[\"font-weight:500\"]],[false,{\".kubernetes-sec .custom-txt p br\":false},[\"display:none\"]],[false,{\".kubernetes-sec .heading-box h2\":false},[\"margin-bottom:24px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:192px 0px 104px 0px\"]],[false,{\".col-row ul\":false},[\"column-count:1\"]],[false,{\".col-row ul li\":false},[\"font-size:16px\",\"margin-bottom:15px\"]],[false,{\".cost-effective-sec .inner\":false},[\"flex-wrap:wrap\"]],[false,{\".cost-effective-sec .left-text\":false,\".cost-effective-sec .custom-txt\":false},[\"width:100%\"]],[false,{\".infrastructure-sec .heading-box h2\":false,\".cost-effective-sec .heading-box h2\":false},[\"margin-bottom:32px\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:30px\"]],[false,{\".cost-effective-sec .heading-box h2 span\":false},[\"display:inline\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col\":false},[\"padding-bottom:15px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".infrastructure-sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-190px\"]],[false,\"}\"],[false,{\".custom-colm-sec\":false},[\"background-color:#f1f1f1\",\"padding:120px 0\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".custom-colm-sec\":false},[\"padding:60px 0\"]],[false,{\".custom-txt-img-sec .custom-txt .btn-blue\":false},[\"margin-top:30px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".custom-colm-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"margin:45px -10px 40px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .inner\":false},[\"margin:40px -8px 20px\"]],[false,\"}\"],[false,{\".custom-colm-sec .slick-list\":false},[\"padding-bottom:20px\"]],[false,{\".custom-colm-sec .slick-track:not(#_#_#_#_#_#_#_)\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".custom-colm-sec .colm\":false},[\"border-radius:16px\",\"-webkit-box-shadow:0 8px 16px rgba(0,0,0,.1)\",\"box-shadow:0 8px 16px rgba(0,0,0,.1)\",\"width:calc(33.33% - 14px)\",\"background-color:#fff\",\"margin-right:10px\",\"margin-left:10px\",\"position:relative\"]],[false,{\".custom-colm-sec .colm:not(#_#_#_#_#_#_#_)\":false},[\"height:inherit\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-colm-sec .colm\":false},[\"display:flex\",\"flex-direction:column\",\"justify-content:space-between\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm\":false},[\"margin:0 8px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm:last-of-type\":false},[\"margin-right:0\"]],[false,{\".custom-colm-sec .colm .img-box amp-img\":false,\".custom-colm-sec .colm .img-box amp-anim\":false},[\"border-radius:16px\"]],[false,{\".custom-colm-sec .colm .txt-box\":false},[\"padding:22px 40px 20px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".custom-colm-sec .colm .txt-box\":false},[\"padding:20px 20px 20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box\":false},[\"padding:16px 13px 20px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:32px\",\"line-height:1\",\"color:#24c1ff\",\"margin-bottom:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:27px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:24px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box h4\":false},[\"font-size:22px\",\"margin-bottom:11px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm .txt-box p\":false},[\"font-size:18px\",\"color:#707070\",\"line-height:1.6\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-colm-sec .colm .txt-box p\":false},[\"font-size:16px\",\"line-height:22px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box p\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,\"}\"],[false,{\".custom-colm-sec .colm .txt-box .see-more\":false},[\"position:absolute\",\"font-size:22px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#152649\",\"text-decoration:underline\",\"line-height:1.5\",\"font-weight:bold\",\"right:40px\",\"bottom:27px\"]],[false,{\".custom-colm-sec .colm .txt-box .see-more:hover\":false},[\"color:#24c1ff\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-colm-sec .colm .txt-box .see-more\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-colm-sec .colm .txt-box .see-more\":false},[\"font-size:16px\",\"bottom:20px\"]],[false,\"}\"],[false,{\".custom-colm-sec .btn-wrapper\":false},[\"text-align:center\"]],[false,{\".custom-colm-sec .btn-wrapper .btn\":false},[\"margin-top:48px\"]],[false,{\".demand-sec\":false},[\"padding-top:240px\",\"padding-bottom:200px\",\"text-align:center\",\"text-align:center\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/img\\/imagem_scale.png\\\")\",\"background-repeat:no-repeat\",\"background-size:100% 100%\",\"position:relative\",\"background-attachment:fixed\"]],[false,{\"section.demand-sec:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"height:100%\",\"width:100%\",\"background:#39dcce\",\"background-color:rgba(57,220,206,.1)\",\"top:0\",\"left:0\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".demand-sec\":false},[\"padding-top:150px\",\"padding-bottom:150px\"]],[false,\"}\"],[false,{\".demand-sec .btn-blue.dark-blue\":false},[\"color:#f7f7f7\"]],[false,{\".demand-sec .colm:nth-child(3) p\":false},[\"padding:0px 35px\"]],[false,{\".demand-sec .btn-blue.dark-blue:hover\":false},[\"color:#152649\"]],[false,{\"section.demand-sec .inner .slick-track\":false},[\"display:flex\"]],[false,{\"section.demand-sec .inner .slick-list\":false},[\"display:flex\"]],[false,\"@media (max-width: 992px){\"],[false,{\".demand-sec\":false},[\"padding:120px 0\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".demand-sec\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".demand-sec .heading-box\":false},[\"padding-bottom:45px\"]],[false,{\".demand-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".demand-sec .inner .slick-dots\":false},[\"position:absolute\",\"right:-5px\",\"top:50%\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\"]],[false,{\".demand-sec .inner .slick-slider .slick-list\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".demand-sec .inner .slick-slider .slick-track\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".demand-sec .inner .slick-dots li\":false},[\"list-style-type:none\",\"height:70px\",\"width:3px\",\"margin:4px 0\"]],[false,{\".demand-sec .inner .slick-dots li.slick-active button\":false},[\"background:linear-gradient(90deg,#23f2e2 0,#93f150 100%)\",\"outline:none\"]],[false,{\".demand-sec .inner .slick-dots li button\":false},[\"width:100%\",\"height:100%\",\"background-color:#fff\",\"border-radius:2px\",\"font-size:0\",\"border:none\",\"outline:none\"]],[false,{\".demand-sec .inner .slick-slide amp-img\":false,\".demand-sec .inner .slick-slide amp-anim\":false},[\"margin:0px auto\"]],[false,{\".demand-sec .colm\":false},[\"width:30%\",\"position:relative\",\"margin-bottom:40px\",\"display:flex\",\"flex-direction:column\"]],[false,\"@media (max-width: 992px){\"],[false,{\".demand-sec .colm\":false},[\"width:32%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".demand-sec .colm\":false},[\"width:100%\",\"padding-bottom:10px\"]],[false,\"}\"],[false,{\".demand-sec .colm figure\":false},[\"margin-bottom:50px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".demand-sec .colm figure\":false},[\"max-width:110px\",\"margin:0 auto 50px\"]],[false,\"}\"],[false,{\".demand-sec .colm h4\":false},[\"margin-bottom:18px\",\"font-size:30px\",\"line-height:1\",\"color:#152649\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".demand-sec .colm h4\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".demand-sec .colm p\":false},[\"color:#152649\",\"line-height:1.6\",\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"padding:0px 21px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".demand-sec .colm p\":false},[\"padding:0px 6px\"]],[false,{\".demand-sec .colm:nth-child(3) p\":false},[\"padding:0px 6px\"]],[false,{\".demand-sec .btn-blue.dark-blue\":false},[\"color:#f7f7f7\",\"padding:15px 30px\",\"font-size:15px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".demand-sec .btn-blue.dark-blue\":false},[\"padding:15px 29px\",\"font-size:11px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".demand-sec .colm p\":false},[\"font-size:14px\",\"padding:0px 25px\"]],[false,\"}\"],[false,{\".demand-sec .colm .btn-wrapper\":false},[\"margin:auto 0 0 0\"]],[false,{\".demand-sec .colm .btn-wrapper a\":false},[\"line-height:normal\"]],[false,\"@media (max-width: 767px){\"],[false,{\".demand-sec .colm .btn-wrapper\":false},[\"position:inherit\",\"bottom:inherit\",\"margin-top:40px\"]],[false,\"}\"],[false,{\".ecosystem-sec\":false},[\"padding:200px 0 240px\",\"background-color:#f9f9f9\"]],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec\":false},[\"padding:100px 0 150px\",\"background-color:#f9f9f9\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\"section.ecosystem-sec .slick-track:not(#_#_#_#_#_#_#_#_)\":false},[\"display:flex\"]],[false,{\".ecosystem-sec .inner .slick-slide:not(#_#_#_#_#_#_#_)\":false},[\"height:inherit\"]],[false,\"}\"],[false,\"@media (min-width: 620px) and (max-width: 767px){\"],[false,{\"section.ecosystem-sec .inner .slick-list\":false},[\"padding-right:180px\"]],[false,{\"section.ecosystem-sec .inner .inner-colm .slick-list\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner .inner-colm amp-img\":false,\".ecosystem-sec .inner .inner-colm amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec .inner .inner-colm amp-img\":false,\".ecosystem-sec .inner .inner-colm amp-anim\":false},[\"width:55%\",\"margin:auto\"]],[false,\"}\"],[false,\"@media (max-width: 766px){\"],[false,{\".ecosystem-sec .inner .inner-colm amp-img\":false,\".ecosystem-sec .inner .inner-colm amp-anim\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"font-size:24px\",\"font-weight:bold\",\"color:#1d2848\",\"margin-bottom:20px\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"font-size:20px\",\"margin-bottom:5px\"]],[false,\"}\"],[false,\"@media (min-width: 480px) and (max-width: 580px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"display:inline-block\",\"float:right\",\"vertical-align:middle\",\"margin-top:18px\",\"width:70px\",\"position:absolute\",\"right:0px\",\"top:0px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:18px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:23px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:-16px\"]],[false,{\".ecosystem-sec .inner\":false},[\"padding:150px 0 100px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec\":false},[\"padding:120px 0 0\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:20px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"margin-top:32px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec\":false},[\"padding:80px 0 0\"]],[false,\"}\"],[false,{\".ecosystem-sec .heading-box\":false},[\"padding-bottom:75px\",\"text-align:center\"]],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .heading-box\":false},[\"padding-bottom:0px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .heading-box\":false},[\"padding-bottom:0\",\"text-align:left\",\"position:relative\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false},[\"width:68%\",\"position:relative\",\"margin-top:0px\",\"margin-bottom:22px\",\"float:left\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:35px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:28px\",\"width:50px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(5) .inner-colm .back-slide .icon\":false},[\"margin-top:32px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5) .inner-colm .back-slide .icon\":false},[\"margin-top:26px\",\"width:50px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .front-slide p\":false},[\"padding-right:40px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .front-slide p\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(1) .inner-colm .back-slide .left-img\":false},[\"display:none\"]],[false,{\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"float:left\",\"width:60%\",\"position:relative\",\"margin-top:0px\",\"margin-bottom:20px\"]],[false,{\".ecosystem-sec .heading-box h2\":false},[\"color:#28d9cb\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .heading-box h2\":false},[\"width:calc(100% - 118px)\"]],[false,{\".ecosystem-sec .colm .back-slide .left-img\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (min-width: 300px) and (max-width: 340px){\"],[false,{\".ecosystem-sec .heading-box h2\":false},[\"font-size:22px\"]],[false,\"}\"],[false,{\".ecosystem-sec .heading-box figure\":false},[\"display:none\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .heading-box figure\":false},[\"display:block\",\"position:absolute\",\"bottom:0\",\"right:20px\",\"max-width:115px\"]],[false,\"}\"],[false,\"@media (min-width: 300px) and (max-width: 340px){\"],[false,{\".ecosystem-sec .heading-box figure\":false},[\"bottom:-31px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"position:relative\",\"padding:150px 0 100px\",\"z-index:1\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .inner\":false},[\"padding:150px 70px 100px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .inner\":false},[\"padding:150px 0px 100px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .inner\":false},[\"padding:40px 0 80px\"]],[false,\"}\"],[false,{\".ecosystem-sec .inner::before\":false},[\"content:\\\"\\\"\",\"width:67%\",\"height:52%\",\"position:absolute\",\"border:1px solid #24c1ff\",\"left:16.5%\",\"top:23%\",\"z-index:-1\"]],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec.slick-list\":false},[\"padding:20px 0\"]],[false,{\".ecosystem-sec .inner::before\":false},[\"display:none\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm\":false},[\"border-radius:16px\",\"-webkit-box-shadow:8px 16px 32px rgba(0,0,0,.1)\",\"box-shadow:8px 16px 32px rgba(0,0,0,.1)\",\"background-color:#fff\",\"padding:25px 40px 25px 40px\",\"margin-bottom:40px\",\"width:30.2%\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"margin-bottom:30px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-bottom:30px\",\"width:32%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm\":false},[\"-webkit-box-shadow:0px 0px 5px rgba(0,0,0,.1)\",\"box-shadow:0px 0px 5px rgba(0,0,0,.1)\",\"width:32%\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .inner-colm .slick-track\":false},[\"display:flex\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"height:inherit\",\"padding-bottom:30px\",\"padding-top:10px\",\"display:flex\",\"flex-direction:column\"]],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"height:inherit\",\"padding-bottom:30px\",\"padding-top:25px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"margin-top:auto\",\"position:relative\",\"top:28px\",\"max-width:180px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more:not(#_#_#_#_#_#_#_)\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false},[\"bottom:6px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm\":false},[\"padding:30px\"]],[false,\"}\"],[false,\"@media (max-width: 1100px){\"],[false,{\".ecosystem-sec .colm\":false},[\"padding:30px 20px\",\"width:31.5%\"]],[false,\"}\"],[false,\"@media (max-width: 1100px){\"],[false,{\".ecosystem-sec .colm\":false},[\"padding:15px 20px\",\"width:31.5%\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-left:10px\",\"margin-right:10px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-left:4px\",\"margin-right:4px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-53%)\",\"transform:translateY(-53%)\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-57%)\",\"transform:translateY(-57%)\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-55%)\",\"transform:translateY(-55%)\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:translateY(-54%)\",\"transform:translateY(-54%)\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"-webkit-transform:unset\",\"transform:unset\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:translateY(55%)\",\"transform:translateY(55%)\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:translateY(51%)\",\"transform:translateY(51%)\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:translateY(50%)\",\"transform:translateY(50%)\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"-webkit-transform:unset\",\"transform:unset\"]],[false,\"}\"],[false,\"@media (min-width: 993px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"position:absolute\",\"left:0\",\"right:0\",\"top:49.5%\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\",\"margin-left:auto\",\"margin-right:auto\",\"width:28%\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:30%\"]],[false,\"@media (min-width: 1920px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:30%\"]],[false,\"}\"],[false,\"@media (min-width: 1440px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (min-width: 993px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"display:none\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"color:#152649\",\"font-size:20px\",\"line-height:1.2\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false,\".ecosystem-sec .colm h5:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:15px\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:17px\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false,\".ecosystem-sec .colm h5:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".ecosystem-sec .colm h4\":false},[\"font-size:24px\",\"padding-right:110px\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:25px\"]],[false,{\".ecosystem-sec .slick-track\":false},[\"display:flex\"]],[false,{\".ecosystem-sec .slick-track .slick-slide\":false},[\"height:inherit\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".ecosystem-sec .colm h4\":false},[\"font-size:20px\",\"padding-right:35px\"]],[false,{\".ecosystem-sec .colm h4:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:30px\"]],[false,\"}\"],[false,\"@media (max-width: 380px){\"],[false,{\".ecosystem-sec .colm h4\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm h4\":false},[\"margin-bottom:30px\",\"font-weight:bold\"]],[false,{\".ecosystem-sec .colm h5\":false},[\"font-weight:900\",\"margin-top:50px\"]],[false,\"@media (max-width: 480px){\"],[false,{\".ecosystem-sec .colm h5\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm p\":false},[\"font-size:16px\",\"line-height:1.5\",\"color:#707070\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"padding-top:0px\",\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm h5\":false},[\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm\":false},[\"height:fit-content\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm p b\":false},[\"font-size:13px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm p b\":false},[\"color:#24c1ff\",\"font-weight:bold\"]],[false,\"@media (min-width: 768px) and (max-width: 992px){\"],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:51px\"]],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".ecosystem-sec .colm p b\":false},[\"color:#707070\"]],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 375px){\"],[false,{\".ecosystem-sec .colm p\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .back-slide\":false},[\"position:relative\"]],[false,{\".ecosystem-sec .colm .back-slide h6\":false},[\"font-size:14px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#28d9cb\",\"margin-bottom:10px\"]],[false,{\".ecosystem-sec .colm .back-slide .left-img\":false},[\"max-width:190px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .right-img\":false},[\"margin-bottom:5px\",\"margin-top:15px\"]],[false,{\".ecosystem-sec .colm .back-slide .right-img\":false},[\"max-width:70px\",\"position:absolute\",\"bottom:60px\",\"right:0px\"]],[false,{\".ecosystem-sec .colm .back-slide p\":false},[\"max-width:100%\",\"display:inline-block\"]],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide p\":false},[\"max-width:calc(100% - 90px)\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide p\":false},[\"max-width:calc(100% - 67px)\"]],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide .right-img\":false},[\"margin:0px\"]],[false,{\".ecosystem-sec .colm:nth-child(2) .back-slide .right-img amp-img\":false,\".ecosystem-sec .colm:nth-child(2) .back-slide .right-img amp-anim\":false},[\"width:70%\",\"margin-left:auto\",\"margin-top:0\",\"top:0\"]],[false,\"}\"],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"color:#28d9cb\",\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:900\",\"margin-top:0px\",\"display:block\",\"text-decoration:underline\"]],[false,{\".ecosystem-sec .colm:nth-child(3) .back-slide .back_heading\":false,\".ecosystem-sec .colm:nth-child(6) .back-slide .back_heading\":false},[\"text-align:left\",\"width:75%\",\"float:right\"]],[false,{\".ecosystem-sec .colm:nth-child(3) .back-slide .icon\":false,\".ecosystem-sec .colm:nth-child(6) .back-slide .icon\":false},[\"float:left\",\"margin-top:18px\"]],[false,{\".ecosystem-sec .colm:nth-child(3) .back-slide .icon\":false},[\"margin-top:10px\"]],[false,{\".ecosystem-sec .colm .slick-dots\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"position:absolute\",\"right:25px\",\"bottom:11px\",\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm .slick-dots li\":false},[\"list-style-type:none\",\"width:4px\",\"height:4px\",\"margin:0 5px\"]],[false,{\".ecosystem-sec .colm .slick-dots li button\":false},[\"display:block\",\"width:100%\",\"height:100%\",\"border-radius:50%\",\"background-color:#c9c9c9\",\"border:none\",\"font-size:0\"]],[false,{\".ecosystem-sec .colm .slick-dots li.slick-active\":false},[\"width:8px\",\"height:8px\"]],[false,{\".ecosystem-sec .colm .slick-dots li.slick-active button\":false},[\"background-color:#28d9cb\"]],[false,{\".ecosystem-sec .colm .slick-arrow\":false},[\"border:none\",\"bottom:11px\",\"position:absolute\",\"background:transparent\",\"z-index:2\",\"cursor:pointer\",\"height:13px\"]],[false,{\".ecosystem-sec .colm .slick-arrow.slick-disabled\":false},[\"opacity:0\",\"visibility:hidden\"]],[false,{\".ecosystem-sec .colm .slick-arrow i\":false},[\"color:#28d9cb\"]],[false,{\".ecosystem-sec .colm .slick-arrow.slick-prev\":false},[\"right:90px\"]],[false,{\".ecosystem-sec .colm .slick-arrow.slick-next\":false},[\"right:0\"]],[false,{\".partner-sec\":false},[\"background-color:#152649\",\"text-align:center\",\"padding:0px 0 240px\",\"position:relative\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".partner-sec\":false},[\"padding:0px 0 120px\"]],[false,\"}\"],[false,{\".bg-img\":false},[\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".partner-sec\":false},[\"padding:0px 0 90px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".partner-sec\":false},[\"padding:0px 0 85px\"]],[false,\"}\"],[false,{\".back-slide .partner-sec .bg-img\":false},[\"position:absolute\",\"top:0\",\"width:100%\"]],[false,{\".partner-sec .bg-img::before\":false},[\"content:\\\"\\\"\",\"width:100%\",\"height:265px\",\"position:absolute\",\"left:0\",\"bottom:-3px\",\"background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(21,38,73,0)),to(#152649))\",\"background-image:linear-gradient(rgba(21,38,73,0),#152649)\"]],[false,{\".partner-sec .container-md\":false},[\"margin-top:-140px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".partner-sec .bg-img::before\":false},[\"height:165px\"]],[false,\"}\"],[false,{\".partner-sec .bg-img .for-desktop\":false},[\"display:block\"]],[false,{\"figure.for-desktop amp-img\":false,\"figure.for-desktop amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".partner-sec .bg-img .for-desktop\":false},[\"display:none\"]],[false,\"}\"],[false,{\".partner-sec .bg-img .for-mobile\":false},[\"display:none\",\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".partner-sec .bg-img .for-mobile\":false},[\"display:block\"]],[false,\"}\"],[false,{\".partner-sec .bg-img .for-mobile amp-img\":false,\".partner-sec .bg-img .for-mobile amp-anim\":false},[\"width:100%\"]],[false,{\".partner-sec .heading-box\":false},[\"padding-bottom:90px\",\"z-index:1\",\"position:relative\"]],[false,{\".partner-sec .heading-box h2\":false},[\"color:#fff\",\"max-width:600px\",\"margin:auto\"]],[false,\"@media (max-width: 1440px){\"],[false,{\".partner-sec .heading-box h2\":false},[\"max-width:455px\"]],[false,\"}\"],[false,{\".partner-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".partner-sec .slick-track:not(#_#_#_#_#_#_#_)\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\"]],[false,{\".partner-sec .slick-arrow\":false},[\"background:transparent\",\"color:#24c1ff\",\"border:none\",\"font-size:20px\",\"position:absolute\",\"top:calc(50% - 11px)\",\"z-index:1\"]],[false,{\".partner-sec .slick-arrow.slick-disabled\":false},[\"opacity:0\",\"visibility:hidden\"]],[false,{\".partner-sec .slick-arrow.slick-prev\":false},[\"left:0\"]],[false,{\".partner-sec .slick-arrow.slick-next\":false},[\"right:0\"]],[false,{\".partner-sec .colm\":false},[\"width:33.33%\",\"padding:0 40px\",\"border-right:1px solid rgba(112,128,167,.3)\"]],[false,{\".partner-sec .colm:not(#_#_#_#_#_#_#_)\":false},[\"height:inherit\"]],[false,\"@media (max-width: 992px){\"],[false,{\".partner-sec .colm\":false},[\"padding:0 20px\"]],[false,\"}\"],[false,\"@media (max-width: 540px){\"],[false,{\".partner-sec .colm\":false},[\"border-right:none\",\"padding:0\"]],[false,\"}\"],[false,{\".partner-sec .colm:last-of-type\":false},[\"border-right:none\"]],[false,{\".partner-sec .colm h6\":false},[\"font-size:20px\",\"line-height:1\",\"color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"min-height:64px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".partner-sec .colm h6\":false},[\"font-size:15px\"]],[false,\"}\"],[false,{\".partner-sec .colm figure\":false},[\"margin:40px 0\"]],[false,{\".partner-sec .colm figure amp-img\":false,\".partner-sec .colm figure amp-anim\":false},[\"margin:auto\"]],[false,{\".partner-sec .colm p\":false},[\"font-size:16px\",\"line-height:22px\",\"color:#7080a7\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\"]],[false,{\".solution-sec\":false},[\"padding:240px 0\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".solution-sec\":false},[\"padding:130px 0\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec\":false},[\"padding:100px 0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec\":false},[\"background-color:#24c1ff\",\"padding:57px 18px 80px\"]],[false,\"}\"],[false,{\".solution-sec .heading-box\":false},[\"margin-bottom:47px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .heading-box label\":false},[\"color:#fff\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper table\":false},[\"width:100%\",\"border-collapse:collapse\"]],[false,{\".solution-sec .table-wrapper #data-more-btn\":false},[\"background:no-repeat\",\"border:none\",\"margin:0px auto\",\"display:block\",\"font-weight:bold\",\"color:#152649\",\"position:relative\",\"padding:0px 15px\"]],[false,{\".solution-sec .table-wrapper #data-more-btn::after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"top:0px\",\"right:0\",\"width:6px\",\"height:6px\",\"bottom:0\",\"margin:auto\",\"transform:rotate(45deg)\",\"border:#152649 solid 2px\",\"border-left:0px\",\"border-top:0px\"]],[false,{\".solution-sec .table-wrapper table .accor-toggle-btn\":false},[\"position:absolute\",\"right:0px\",\"top:0\",\"width:8px\",\"height:8px\",\"border:#152649 solid 2px\",\"transform:rotate(45deg)\",\"border-top:none\",\"border-left:none\",\"display:none\",\"margin-top:10px\"]],[false,{\"span.accor-toggle-btn.active:not(#_#_#_#_#_#_#_#_)\":false},[\"transform:rotate(-135deg)\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper tr\":false},[\"display:flex\",\"flex-wrap:wrap\",\"border-top:1px solid #f1f1f1\",\"padding:15px 0\"]],[false,{\".solution-sec .table-wrapper tr td\":false},[\"display:block\",\"width:100%\"]],[false,{\".solution-sec .table-wrapper tr.table-head\":false},[\"display:none\"]],[false,{\".solution-sec .table-wrapper td:nth-child(1)\":false},[\"order:1\"]],[false,{\".solution-sec .table-wrapper td:nth-child(3)\":false},[\"order:2\"]],[false,{\".solution-sec .table-wrapper td:nth-child(2)\":false},[\"order:3\"]],[false,{\".solution-sec .table-wrapper table .accor-toggle-btn\":false},[\"display:block\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#152649\",\"line-height:1.16\",\"border-bottom:1px solid #c9c9c9\",\"text-align:left\"]],[false,{\".solution-sec .accor-wrapper th\":false,\".solution-sec .accor-wrapper td\":false},[\"border:none\"]],[false,{\".solution-sec .table-wrapper th:not(:first-of-type)\":false,\".solution-sec .table-wrapper td:not(:first-of-type)\":false},[\"padding-left:20px\"]],[false,{\".solution-sec .table-wrapper td:nth-child(4)\":false,\".solution-sec .table-wrapper td:nth-child(2)\":false,\".solution-sec .table-wrapper td:nth-child(3)\":false},[\"font-weight:bold\"]],[false,\"@media (min-width:767px){\"],[false,{\".solution-sec .accor-wrapper tr td:not(#_#_#_#_#_#_#_#_)\":false},[\"width:31%\",\"padding-left:0px\"]],[false,{\".solution-sec .accor-wrapper tr td:nth-last-child(1):not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:10px\"]],[false,\"}\"],[false,\"@media (min-width: 1280px) and (max-width: 1350px){\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec .table-wrapper th:not(:first-of-type)\":false,\".solution-sec .table-wrapper td:not(:first-of-type)\":false},[\"padding-left:15px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper th:not(:first-of-type)\":false,\".solution-sec .table-wrapper td:not(:first-of-type)\":false},[\"padding-left:0\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"font-size:14px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper th\":false,\".solution-sec .table-wrapper td\":false},[\"border:none\",\"text-align:right\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper th\":false},[\"font-weight:bold\",\"padding:0 0 32px 0\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper th\":false},[\"display:none\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td\":false},[\"font-weight:500\",\"padding:16px 0\",\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td\":false},[\"display:block\",\"padding:5px 0\",\"position:relative\"]],[false,{\".solution-sec .table-wrapper table tbody tr td:nth-child(1)::before\":false},[\"display:none\"]],[false,{\".solution-sec .table-wrapper table tbody tr .accor-wrapper td:nth-child(1)::before\":false},[\"display:block\"]],[false,{\".solution-sec .table-wrapper td::before\":false},[\"content:attr(data-th)\",\"position:absolute\",\"left:0\",\"color:#152649\",\"font-weight:bold\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td.sometimes\":false},[\"color:#7080a7\",\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td.sometimes\":false},[\"color:#5970a8\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td.rare\":false},[\"color:#ff555f\",\"font-weight:bold\"]],[false,{\".solution-sec .table-wrapper td.always\":false},[\"color:#28d9cb\",\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td.always\":false},[\"color:#fff\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td:last-of-type\":false},[\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td:last-of-type:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".solution-sec .table-wrapper tr .accor-wrapper tr\":false},[\"border:none\",\"padding-top:0px\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td:last-of-type amp-img\":false,\".solution-sec .table-wrapper td:last-of-type amp-anim\":false},[\"width:23px\",\"margin-right:7px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td:last-of-type amp-img\":false,\".solution-sec .table-wrapper td:last-of-type amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".solution-sec .table-wrapper td:first-of-type\":false},[\"width:35%\"]],[false,\"@media (max-width: 992px){\"],[false,{\".solution-sec .table-wrapper td:first-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".solution-sec .table-wrapper td:first-of-type\":false},[\"width:100%\",\"text-align:revert\",\"font-weight:500\",\"padding-right:25px\"]],[false,{\".solution-sec .table-wrapper .accor-wrapper table tr td\":false},[\"padding-right:0px\",\"width:100%\"]],[false,\"}\"],[false,{\".future-vision-sec\":false},[\"background-color:#f9f9f9\",\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec\":false},[\"padding:0\",\"padding-bottom:190px\"]],[false,\"}\"],[false,{\".future-vision-sec .inner-vision-sec\":false},[\"background-color:#062b43\",\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .inner-vision-sec\":false},[\"padding:0\"]],[false,\"}\"],[false,{\".future-vision-sec .bg-img\":false},[\"position:relative\",\"width:39%\"]],[false,\"@media (max-width: 1800px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(18% + 45px)\",\"margin-right:-45px\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:35%\"]],[false,\"}\"],[false,\"@media (max-width: 1680px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:37%\"]],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(17% + 50px)\",\"margin-right:-50px\",\"z-index:1\"]],[false,\"}\"],[false,\"@media (max-width: 1536px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:35%\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:30%\",\"height:100%\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:50px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:286px\"]],[false,{\".future-vision-sec .bg-img amp-img\":false,\".future-vision-sec .bg-img amp-anim\":false},[\"object-fit:cover\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:0px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"position:inherit\",\"width:100%\",\"max-width:inherit\",\"margin:auto\",\"margin-bottom:-160px\"]],[false,\"}\"],[false,{\".future-vision-sec .bg-img amp-img\":false,\".future-vision-sec .bg-img amp-anim\":false},[\"width:100%\",\"height:100%\"]],[false,{\".future-vision-sec .bg-img::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"bottom:0\",\"width:100%\",\"height:256px\",\"background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(4,40,63,0)),to(#042941))\",\"background-image:linear-gradient(rgba(4,40,63,0),#042941)\",\"left:0\",\"display:none\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .bg-img::before\":false},[\"display:block\"]],[false,\"}\"],[false,{\".future-vision-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"position:relative\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .inner\":false},[\"height:460px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .inner\":false},[\"height:auto\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:45%\",\"padding-right:8%\"]],[false,\"@media (max-width: 1536px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"padding-right:7%\"]],[false,\"}\"],[false,{\".container-spacial\":false},[\"padding-left:17%\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".container-spacial\":false},[\"padding-left:12%\"]],[false,\"}\"],[false,\"@media (max-width: 1536px){\"],[false,{\".container-spacial\":false},[\"padding-left:9%\"]],[false,\"}\"],[false,\"@media (max-width: 1440px){\"],[false,{\".container-spacial\":false},[\"padding-left:7%\"]],[false,\"}\"],[false,\"@media (max-width: 1800px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:47%\"]],[false,\"}\"],[false,\"@media (max-width: 1440px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:50%\",\"padding-right:5%\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:31%\"]],[false,{\".kubernetes-sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-213px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".container-spacial\":false},[\"padding-left:0px\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:31%\"]],[false,{\".future-vision-sec .custom-txt\":false},[\"width:51%\",\"padding-right:4%\"]],[false,{\".future-vision-sec .custom-txt h2\":false},[\"font-size:45px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:55%\",\"padding-right:7%\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:30%\"]],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:51%\"]],[false,{\".future-vision-sec .bg-img\":false},[\"width:30%\"]],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:29.8%\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .bg-img\":false},[\"width:100%\",\"order:-1\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-txt\":false},[\"width:100%\",\"padding-right:20px\",\"padding-left:20px\",\"padding-bottom:34px\",\"border-bottom:1px solid rgba(241,241,241,.15)\",\"margin-bottom:38px\",\"z-index:1\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"color:#fff\",\"margin-bottom:40px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:175px\",\"font-size:30px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"padding-right:71px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"font-size:20px\",\"padding-right:4px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".future-vision-sec .custom-txt h2\":false},[\"font-size:24px\",\"margin-bottom:34px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt h2 span\":false},[\"color:#24c1ff\"]],[false,{\".future-vision-sec .custom-txt p\":false},[\"color:#fff\",\"font-size:16px\",\"line-height:1.5\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"padding-right:30px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .custom-txt p\":false},[\"font-size:12px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-txt p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-txt p a\":false},[\"text-decoration:underline\",\"color:#24c1ff\"]],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(15.95% + 60px)\",\"margin-right:-60px\",\"z-index:1\"]],[false,\"@media (max-width: 1536px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(18% + 60px)\",\"margin-right:-60px\"]],[false,\"}\"],[false,\"@media (max-width: 1366px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(18% + 60px)\",\"margin-right:-60px\"]],[false,{\".review_sec i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:19px\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:19px\"]],[false,{\".kubernetes-sec .custom-txt p\":false},[\"font-size:19px\"]],[false,{\".col-row ul li\":false},[\"font-size:19px\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:44px\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col\":false},[\"padding-bottom:15px\",\"width:calc(50% - 27px)\"]],[false,{\".data-driven-application .data-driven-devOps .applications-col li\":false},[\"padding-bottom:20px\",\"margin-bottom:20px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(15% + 60px)\",\"margin-right:-60px\"]],[false,{\".reliability-engineers p\":false},[\"font-size:17px\",\"font-weight:bold\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:160px 0px 105px 0px\"]],[false,{\".col-row ul li\":false},[\"font-size:17px\",\"margin-bottom:15px\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:calc(19% + 60px)\"]],[false,{\".text-grey-box p:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:15px\"]],[false,{\".review_sec2 i:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:16px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-183px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"padding:192px 0px 84px 0px\"]],[false,{\".devops-services .applications-col h5\":false},[\"font-size:15px\"]],[false,{\".reliability-engineers\":false},[\"padding:40px 30px 40px 78px\",\"margin-top:40px\"]],[false,{\".reliability-engineers p\":false},[\"font-size:15px\",\"font-weight:bold\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-137px\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:35px\"]],[false,{\".infrastructure-sec\":false},[\"margin-top:-234px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img amp-img\":false,\".future-vision-sec .custom-img amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:100%\",\"-webkit-box-orient:vertical\",\"-webkit-box-direction:reverse\",\"-ms-flex-direction:column-reverse\",\"flex-direction:column-reverse\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"padding:0px 25px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img .inner-img\":false},[\"position:relative\",\"margin-bottom:15px\"]],[false,{\".future-vision-sec .custom-img .inner-img h5\":false},[\"color:#fff\",\"position:absolute\",\"padding:40px 0px 0px 30px\",\"font-size:42px\",\"font-weight:bold\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img .inner-img\":false},[\"margin-bottom:-155px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"position:absolute\",\"font-size:24px\",\"line-height:1.16\",\"color:#24c1ff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"padding-right:50px\",\"max-width:256px\",\"bottom:30px\",\"left:30px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:15px\"]],[false,{\".devops-services .applications-col ul li\":false},[\"font-size:14px\"]],[false,{\".srvs-text-box p\":false},[\"font-size:14px\"]],[false,{\".srvs-text-box\":false},[\"margin-bottom:15px\"]],[false,{\".devops-services .applications-col h5\":false},[\"margin-bottom:15px\"]],[false,{\".devops-services .applications-col ul\":false},[\"margin-bottom:15px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-186px\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-167px\"]],[false,{\".reliability-engineers p\":false},[\"font-size:14px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:11px\"]],[false,{\".fortune-box\":false},[\"width:100%\"]],[false,{\".col-row ul li\":false},[\"font-size:15px\",\"margin-bottom:15px\"]],[false,{\".col-row ul\":false},[\"column-gap:0\"]],[false,{\".cost-effective-sec .left-text p\":false},[\"font-size:14px\",\"line-height:1.6\",\"color:#707070\"]],[false,{\".infrastructure-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false,\".cost-effective-sec .heading-box h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:29px\"]],[false,{\".cost-effective-sec .inner\":false},[\"margin-bottom:40px\"]],[false,{\".cost-effective-sec .review_sec2\":false},[\"margin-top:0\"]],[false,{\".cost-effective-sec .review_sec .swiper-slide i\":false},[\"margin:0 0px 10px\"]],[false,{\".infrastructure-sec\":false},[\"margin-top:-187px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:24px\"]],[false,{\".main-scroll-box\":false},[\"overflow:scroll\"]],[false,{\".journey-roadmap:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".devops-consulting-banner .title\":false},[\"margin-bottom:10px\"]],[false,{\".devops-consulting-banner h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:32px\"]],[false,\"}\"],[false,\"@media (max-width: 380px){\"],[false,{\".future-vision-sec .custom-img .overlay-txt\":false},[\"font-size:20px\"]],[false,{\".contact-form-info-right ul li\":false},[\"font-size:14px\"]],[false,{\".contact-form-info-right ul li:first-of-type:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:20px\"]],[false,\"}\"],[false,{\".future-vision-sec .custom-img .overlay-txt i\":false},[\"position:absolute\",\"right:7px\",\"background:rgba(255,255,255,.2)\",\"width:24px\",\"height:24px\",\"border-radius:50%\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-webkit-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"font-size:18px\",\"top:calc(50% - 10px)\"]],[false,{\".future-vision-sec .custom-img p\":false},[\"font-size:14px\",\"color:#bebebe\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\"]],[false,\"@media (max-width: 767px){\"],[false,{\".future-vision-sec .custom-img p\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".lets-talk-sec\":false},[\"padding:55px 0\",\"-webkit-box-shadow:8px 0px 32px rgba(0,0,0,.1)\",\"box-shadow:8px 0px 32px rgba(0,0,0,.1)\"]],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec\":false},[\"padding:30px 0 0\"]],[false,\"}\"],[false,{\".lets-talk-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .inner\":false},[\"max-width:300px\",\"text-align:center\",\"margin:auto\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".lets-talk-sec .inner\":false},[\"max-width:250px\"]],[false,\"}\"],[false,{\".lets-talk-sec .heading-box\":false},[\"width:calc(100% - 370px)\"]],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .heading-box\":false},[\"width:calc(100% - 300px)\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .heading-box\":false},[\"width:100%\",\"margin-bottom:18px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".lets-talk-sec .heading-box h2\":false},[\"font-size:25px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".lets-talk-sec .heading-box h2\":false},[\"font-size:20px\"]],[false,\"}\"],[false,{\".lets-talk-sec .btn-wrapper\":false},[\"width:306px\"]],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"width:100%\",\"height:80px\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-pack:center\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"border-radius:100px\"]],[false,\"@media (max-width:1780px){\"],[false,{\".lets-talk-sec .btn-wrapper\":false},[\"width:250px\"]],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"height:70px\",\"font-size:24px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".lets-talk-sec .btn-wrapper\":false},[\"max-width:250px\"]],[false,\"}\"],[false,\"@media (max-width: 992px){\"],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"height:60px\",\"font-size:25px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".lets-talk-sec .btn-wrapper .btn-gradient\":false},[\"width:132px\",\"height:40px\",\"font-size:20px\",\"padding:5px\",\"margin:auto\",\"margin-bottom:-20px\"]],[false,{\".tek-world-scale .inner .custom-img\":false},[\"margin:0px auto\",\"display:block\"]],[false,\"}\"],[false,{\".custom-grid-sec\":false},[\"background-color:#f1f1f1\",\"padding:100px 0px 110px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec\":false},[\"padding-right:120px 0\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm amp-img\":false,\".custom-grid-sec .inner .colm amp-anim\":false},[\"width:60px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec\":false},[\"padding-right:120px 0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".custom-grid-sec\":false},[\"padding:120px 0 80px\",\"margin-top:-155px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"margin:0 -40px\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"width:calc(33.333% - 27px)\",\"margin-right:40px\",\"display:flex\",\"flex-direction:column\"]],[false,{\".custom-grid-sec .inner\":false},[\"margin:0\"]],[false,{\".custom-grid-sec .inner .colm:nth-child(3n)\":false},[\"margin-right:0\"]],[false,\"@media (max-width: 992){\"],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding-right:20px\",\"padding-left:20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding-right:40px\",\"padding-left:20px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm figure\":false},[\"display:inline-block\",\"margin-right:15px\"]],[false,{\".custom-grid-sec .inner .colm h4\":false},[\"display:-webkit-inline-box\",\"display:-ms-inline-flexbox\",\"display:inline-flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"margin-bottom:15px\",\"color:#152649\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:30px\",\"font-weight:bold\"]],[false,\"@media (max-width: 1366px){\"],[false,{\".custom-grid-sec .inner .colm h4\":false},[\"font-size:25px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm p\":false},[\"margin-bottom:30px\",\"font-size:18px\",\"color:#434343\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:500\",\"line-height:1.6\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec .inner .colm p\":false},[\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-grid-sec .inner .colm p\":false},[\"font-size:14px\",\"margin-bottom:24px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm a\":false},[\"color:#152649\",\"font-weight:bold\",\"font-family:\\\"Raleway\\\",sans-serif\",\"display:block\",\"font-size:24px\",\"margin-top:auto\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-grid-sec .inner .colm a\":false},[\"font-size:20px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-grid-sec .inner .colm a\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".custom-grid-sec .inner .colm a i\":false},[\"margin-left:15px\",\"font-size:16px\"]],[false,{\".custom-grid-sec .slick-dots\":false},[\"position:absolute\",\"right:10px\",\"top:50%\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\"]],[false,{\".custom-grid-sec .slick-dots li\":false},[\"list-style-type:none\",\"height:70px\",\"width:3px\",\"margin:4px 0\"]],[false,{\".custom-grid-sec .slick-dots li.slick-active button\":false},[\"background-color:#28d9cb\"]],[false,{\".custom-grid-sec .slick-dots li button\":false},[\"width:100%\",\"height:100%\",\"background-color:#fff\",\"border-radius:2px\",\"font-size:0\",\"outline:none\",\"border:none\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".custom-trust-sec .inner\":false},[\"position:relative\"]],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:calc(55% - 30px)\",\"margin-right:30px\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:70%\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".custom-trust-sec .custom-txt p\":false},[\"padding-right:57px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-trust-sec .custom-txt p\":false},[\"color:#152649\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec .custom-txt p\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".custom-trust-sec .custom-txt h2\":false},[\"max-width:calc(100% - 80px)\"]],[false,\"}\"],[false,{\".custom-trust-sec .custom-img\":false},[\"width:calc(45% - 30px)\",\"margin-right:0\",\"margin-left:30px\",\"text-align:right\"]],[false,{\".custom-trust-sec .custom-img amp-img\":false,\".custom-trust-sec .custom-img amp-anim\":false},[\"max-width:250px\",\"width:100%\",\"margin:0px auto\",\"display:block\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-trust-sec .custom-txt\":false},[\"margin-right:0\",\"width:55%\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".custom-trust-sec .custom-img\":false},[\"position:absolute\",\"right:0\",\"top:-20px\"]],[false,{\".custom-trust-sec .custom-img:not(#_#_#_#_#_#_#_)\":false},[\"width:56px\"]],[false,\"}\"],[false,{\".custom-case-studie\":false},[\"padding:0\",\"position:relative\",\"padding-top:618px\",\"background-color:#152649\"]],[false,\"@media (max-width:1780px){\"],[false,{\".custom-case-studie\":false},[\"padding-top:480px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".custom-case-studie\":false},[\"padding-top:442px\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img\":false},[\"background-repeat:no-repeat\",\"padding-bottom:0px\",\"position:absolute\",\"top:0\",\"width:100%\"]],[false,{\".custom-case-studie .bg-img::before\":false},[\"content:\\\"\\\"\",\"width:100%\",\"height:265px\",\"position:absolute\",\"left:0\",\"bottom:0\",\"background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(21,38,73,0)),to(#152649))\",\"background-image:linear-gradient(rgba(21,38,73,0),#152649)\"]],[false,\"@media (max-width: 992px){\"],[false,{\".custom-case-studie .bg-img::before\":false},[\"height:165px\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img .for-desktop\":false},[\"display:block\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .bg-img .for-desktop\":false},[\"display:none\"]],[false,{\".custom-trust-sec .custom-txt\":false},[\"width:100%\"]],[false,{\".custom-trust-sec .custom-img\":false},[\"width:100%\",\"margin-left:0\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img .for-mobile\":false},[\"display:none\",\"width:100%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .bg-img .for-mobile\":false},[\"display:block\"]],[false,\"}\"],[false,{\".custom-case-studie .bg-img .for-mobile amp-img\":false,\".custom-case-studie .bg-img .for-mobile amp-anim\":false},[\"width:100%\"]],[false,{\".custom-case-studie .custom-bottm-sec\":false},[\"padding-bottom:160px\",\"padding-top:40px\",\"position:relative\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-case-studie .custom-bottm-sec\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,{\".custom-case-studie .custom-bottm-sec .inner\":false},[\"-webkit-box-align:end\",\"-ms-flex-align:end\",\"align-items:flex-end\",\"margin-top:-200px\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt\":false},[\"width:55%\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt label\":false},[\"color:#f1f1f1\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt label i\":false},[\"color:#7080a7\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt h2\":false},[\"color:#fff\",\"margin-bottom:25px\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt h2 span\":false},[\"color:#8bed78\"]],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt p\":false},[\"padding-right:57px\",\"color:#f1f1f1\"]],[false,\"@media (max-width: 480px){\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-txt p\":false},[\"padding-right:0\"]],[false,\"}\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-case-btn\":false},[\"width:38%\",\"margin-right:0\",\"text-align:left\"]],[false,\"@media (max-width: 767px){\"],[false,{\".custom-case-studie .custom-bottm-sec .inner .custom-case-btn\":false},[\"width:100%\",\"margin-top:15px\",\"text-align:left\"]],[false,\"}\"],[false,{\".custom-colm-blog\":false},[\"background-color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\".custom-colm-blog .heading-box h2 span\":false},[\"color:#28d9cb\"]],[false,{\".custom-colm-blog .colm\":false},[\"background-color:#f7f7f7\",\"border:#c9c9c9 solid 1px\",\"-webkit-box-shadow:none\",\"box-shadow:none\"]],[false,{\".custom-colm-blog .colm .txt-box\":false},[\"padding-bottom:35px\"]],[false,{\".custom-colm-blog .colm .txt-box h6\":false},[\"text-transform:uppercase\",\"color:#6f7070\",\"font-size:14px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"margin-bottom:15px\"]],[false,{\".custom-colm-blog .colm .txt-box h6 span\":false},[\"color:#c9c9c9\"]],[false,{\".custom-colm-blog .colm .txt-box h4\":false},[\"font-size:20px\",\"color:#152649\",\"margin-bottom:60px\",\"height:30px\"]],[false,{\".custom-colm-blog .colm .txt-box .custom-btm-text\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".custom-colm-blog .colm .txt-box .custom-btm-text a\":false},[\"color:#152649\",\"font-size:18px\",\"text-decoration:underline\",\"font-weight:bold\"]],[false,\"@media (max-width:767px){\"],[false,{\".custom-colm-blog .colm .txt-box .custom-btm-text a\":false},[\"font-size:16px\"]],[false,\"}\"],[false,{\".custom-colm-blog .colm .img-box amp-img\":false,\".custom-colm-blog .colm .img-box amp-anim\":false},[\"height:160px\",\"-o-object-fit:cover\",\"object-fit:cover\",\"width:100%\"]],[true,\"@media (max-width:992px){\"],[true,{\"footer .container\":true},[\"max-width:90%\"]],[true,{\".footer-2022__menu--list\":true},[\"padding:0px 5px\"]],[true,{\"header nav .dropdown-menu p.new-header__nav--menu--text\":true},[\"max-width:unset\"]],[true,\"}\"],[true,\"@media (max-width:600px){\"],[true,{\"footer .container\":true},[\"max-width:540px\"]],[true,{\".footer-2022__menu--list\":true},[\"padding:0px\"]],[true,\"}\"],[true,{\".new-header__menu-item\":true},[\"background:#f7f7f7\"]],[true,\"@media (max-width:1280px){\"],[true,{\".new-header__menu-item\":true},[\"padding-left:15px\"]],[true,\"}\"],[true,\"@media only screen and (max-width: 991px){\"],[true,{\".new-header__menu-item\":true},[\"padding-left:0\"]],[true,\"}\"],[false,{\".cp-tek-teams-isk\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"position:relative\",\"margin-top:100px\"]],[false,{\".cp-tek-teams-isk .inner-hero-text amp-img\":false,\".cp-tek-teams-isk .inner-hero-text amp-anim\":false},[\"width:48px\"]],[false,{\".cp-tek-teams-isk amp-img\":false,\".cp-tek-teams-isk amp-anim\":false},[\"width:100%\",\"object-fit:cover\",\"object-position:center\"]],[false,\"@media (max-width: 768px){\"],[false,{\".cp-tek-teams-isk\":false},[\"margin-top:70px\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk picture\":false},[\"padding-bottom:25px\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\",\"position:relative\"]],[false,\"@media (max-width: 1366px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"padding-bottom:5px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"margin-bottom:10px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"margin-bottom:0px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk picture\":false},[\"margin-bottom:7px\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk picture p\":false},[\"color:#28d9cb\",\"margin-left:15px\",\"margin-bottom:0px\",\"font-size:16px\",\"line-height:1\"]],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk picture p\":false},[\"margin-left:0px\",\"color:#28d9cb\",\"font-size:12px\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk .inner-hero-text\":false},[\"position:absolute\",\"top:45%\",\"width:100%\",\"left:50%\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk .inner-hero-text picture\":false},[\"margin-bottom:5px\"]],[false,{\".cp-tek-teams-isk .inner-hero-text amp-img\":false,\".cp-tek-teams-isk .inner-hero-text amp-anim\":false},[\"display:none\"]],[false,\"}\"],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:60px\",\"font-weight:bold\",\"color:rgba(255,255,255,1)\",\"line-height:1\",\"margin-bottom:6px\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"@media (max-width: 768px){\"],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:30px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:32px\"]],[false,\"}\"],[false,{\".contact-tek-teams\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"padding:80px 0px 120px\"]],[false,{\".contact-tek-teams .mobile-button\":false},[\"display:none\"]],[false,\"@media (max-width: 767px){\"],[false,{\".contact-tek-teams .desktop-button\":false},[\"display:none\"]],[false,{\".contact-tek-teams .mobile-button:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,\"}\"],[false,\"@media (max-width: 1680px){\"],[false,{\".contact-tek-teams\":false},[\"padding:80px 0px 90px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".contact-tek-teams\":false},[\"padding:80px 0px 80px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".contact-tek-teams\":false},[\"padding:60px 0px 60px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".contact-tek-teams\":false},[\"padding:40px 0px 0px\"]],[false,\"}\"],[false,{\".contact-tek-teams .inner\":false},[\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".contact-tek-teams .inner .custom-txt .btn-blue\":false},[\"margin-top:0px\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-txt\":false},[\"width:calc(50.5% - 0px)\",\"margin-right:0\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"width:54%\",\"margin-right:-12%\",\"margin-left:76px\"]],[false,\"@media (max-width: 1214px) and (max-width: 1280px){\"],[false,{\".contact-tek-teams .custom-img\":false},[\"margin-right:-7%\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".contact-tek-teams .custom-img\":false},[\"width:47%\",\"margin-right:0px\"]],[false,{\".contact-tek-teams .inner .custom-img p:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-right:0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".contact-tek-teams .inner\":false},[\"flex-direction:column\",\"align-items:flex-start\"]],[false,{\".contact-tek-teams .custom-img\":false},[\"width:100%\",\"margin-right:0px\",\"margin-top:0px\",\"margin-left:0px\"]],[false,\"}\"],[false,{\".contact-tek-teams .inner .custom-img p\":false},[\"color:#707070\",\"line-height:32px\",\"padding-right:18%\",\"font-size:20px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".contact-tek-teams .inner .custom-img p\":false},[\"color:#707070\",\"line-height:2\",\"padding-right:0px\",\"font-size:14px\"]],[false,\"}\"],[false,{\".repeat-bg\":false},[\"position:relative\"]],[false,\"@media (max-width: 767px){\"],[false,{\".repeat-bg\":false},[\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".repeat-bg amp-img\":false,\".repeat-bg amp-anim\":false},[\"width:100%\"]],[false,\"@media (max-width: 600px){\"],[false,{\".repeat-bg amp-img\":false,\".repeat-bg amp-anim\":false},[\"height:207px\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".repeat-bg .c-btm-icon\":false},[\"position:absolute\",\"bottom:35px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".repeat-bg .c-btm-icon\":false},[\"left:0px\",\"bottom:13px\",\"width:100%\",\"padding:0px 25px\"]],[false,{\".repeat-bg .c-btm-icon amp-img\":false,\".repeat-bg .c-btm-icon amp-anim\":false},[\"width:auto\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".repeat-bg .c-btm-icon\":false},[\"left:0px\",\"bottom:0\",\"width:100%\",\"padding:0px 25px\",\"padding-bottom:25px\"]],[false,{\".repeat-bg .c-btm-icon amp-img\":false,\".repeat-bg .c-btm-icon amp-anim\":false},[\"height:inherit\",\"width:auto\",\"margin-bottom:0px\",\"margin-top:0\",\"padding-bottom:15px\"]],[false,\"}\"],[false,{\".repeat-bg .tek-teams-mob-heading\":false},[\"display:none\"]],[false,{\".repeat-bg .tek-teams-mob-heading h3\":false},[\"font-size:24px\",\"color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"line-height:1.3\"]],[false,\"@media (max-width: 600px){\"],[false,{\".repeat-bg .tek-teams-mob-heading\":false},[\"display:block\",\"padding-right:68px\"]],[false,\"}\"],[false,\"@media (max-width: 480px){\"],[false,{\".repeat-bg .tek-teams-mob-heading\":false},[\"display:block\",\"padding-right:0px\"]],[false,{\".repeat-bg .c-btm-icon\":false},[\"padding-bottom:10px\"]],[false,{\".repeat-bg .c-btm-icon amp-img\":false,\".repeat-bg .c-btm-icon amp-anim\":false},[\"padding-bottom:0px\"]],[false,\"}\"],[false,{\".tek-teams-heading\":false},[\"padding-top:80px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".tek-teams-heading\":false},[\"padding-top:20px\"]],[false,\"}\"],[false,{\".tek-teams-heading h3\":false},[\"font-size:30px\",\"line-height:1\",\"margin-bottom:40px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#707070\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek-teams-heading h3\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".tek-teams-heading\":false},[\"display:none\"]],[false,\"}\"],[false,{\".about-tek-wrapper\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"padding-bottom:120px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".about-tek-wrapper\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".about-tek-wrapper\":false},[\"padding-bottom:60px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".about-tek-wrapper\":false},[\"padding-top:50px\",\"padding-bottom:60px\"]],[false,\"}\"],[false,{\".about-tek-wrapper .about-tek-team\":false},[\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\"]],[false,{\".about-tek-wrapper .about-tek-team .c-col\":false},[\"width:calc(50% - 40px)\"]],[false,{\".about-tek-wrapper .about-tek-team .c-col p b\":false,\".about-tek-wrapper .about-tek-team .c-col p strong\":false},[\"font-weight:bold\"]],[false,\"@media (max-width: 768px){\"],[false,{\".about-tek-wrapper .about-tek-team .c-col\":false},[\"width:calc(50% - 15px)\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".about-tek-wrapper .about-tek-team .c-col\":false},[\"width:100%\"]],[false,\"}\"],[false,{\".about-tek-wrapper .about-tek-team .c-col p\":false},[\"padding-bottom:10px\",\"font-size:20px\",\"line-height:2\",\"color:#707070\"]],[false,\"@media (max-width: 768px){\"],[false,{\".about-tek-wrapper .about-tek-team .c-col p\":false},[\"font-size:15px\",\"padding-bottom:0px\",\"margin-bottom:10px\"]],[false,\"}\"],[false,{\".about-tek-wrapper .about-tek-team .c-col p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".development-team-sec\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"background-color:#f1f1f1\",\"padding-bottom:120px\"]],[false,{\".development-team-sec .text-short-box\":false},[\"padding-left:8px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".development-team-sec\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec\":false},[\"padding-bottom:80px\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".development-team-sec\":false},[\"padding-bottom:60px\"]],[false,\"}\"],[false,{\".development-team-sec p\":false},[\"font-size:20px\",\"color:#707070\",\"line-height:1.5\",\"margin-bottom:60px\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec p\":false},[\"font-size:18px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec p\":false},[\"font-size:15px\",\"margin-bottom:25px\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .tek-teams-heading h3\":false},[\"color:#24c1ff\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-wrap:wrap\",\"flex-wrap:wrap\",\"-webkit-box-pack:justify\",\"-ms-flex-pack:justify\",\"justify-content:space-between\",\"margin-bottom:20px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:30%\",\"margin-bottom:60px\"]],[false,\"@media (min-width: 1025px) and (max-width: 1280px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:32%\"]],[false,\"}\"],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"margin-bottom:20px\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"margin:0 0 0 40px\",\"width:calc(55% - 40px)\",\"padding:0\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-txt\":false},[\"width:45%\",\"margin:0\",\"padding:0\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img p\":false},[\"padding:0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:45%\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"margin:25px 0 0px 0px\",\"width:100%\",\"padding-bottom:10px\"]],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-txt\":false},[\"width:100%\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"width:100%\",\"border-bottom:#e1e1e1 solid 1px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col:last-child\":false},[\"border-bottom:none\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:35px\",\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading figure\":false},[\"display:-webkit-box\",\"display:-ms-flexbox\",\"display:flex\",\"-webkit-box-align:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"color:#152649\",\"padding-left:8px\",\"font-size:18px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-weight:bold\",\"margin-bottom:0px\"]],[false,\"@media only screen and (min-width: 1025px) and (max-width: 1279px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"font-size:14px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"padding-left:4px\",\"font-size:12px\",\"margin-bottom:0\"]],[false,\"}\"],[false,\"@media (max-width: 767px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading h4\":false},[\"padding-left:4px\",\"font-size:14px\",\"margin-bottom:0\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-left:0px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span::before:not(#_#_#_#_#_#_#_#_)\":false},[\"content:none\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"font-size:18px\",\"line-height:1.3\",\"margin-bottom:25px\",\"color:#707070\",\"position:relative\",\"padding-left:20px\",\"padding-right:20px\",\"display:block\"]],[false,\"@media (max-width: 1280px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"padding-right:0px\",\"font-size:16px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"padding-left:10px\",\"font-size:13px\"]],[false,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p\":false},[\"font-size:14px\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span:last-child\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p:last-child\":false},[\"margin-bottom:0\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col span::before\":false,\".development-team-sec .development-team-content .inner-flex-row .c-col p::before\":false},[\"position:absolute\",\"top:0\",\"left:0px\",\"content:\\\"-\\\"\",\"line-height:17px\"]],[false,\"@media (max-width: 600px){\"],[false,{\".development-team-sec .development-team-content .inner-flex-row .col-heading::before\":false},[\"content:\\\"\\\"\",\"width:6px\",\"height:6px\",\"border-bottom:2px solid #24c1ff\",\"border-right:2px solid #24c1ff\",\"float:right\",\"position:absolute\",\"top:12px\",\"right:1px\",\"-webkit-transform:rotate(45deg)\",\"transform:rotate(45deg)\",\"-webkit-transform-origin:center\",\"transform-origin:center\",\"-webkit-transition:all .4s ease\",\"transition:all .4s ease\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .col-heading.active::before\":false},[\"-webkit-transform:rotate(225deg)\",\"transform:rotate(225deg)\",\"color:#24c1ff\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .col-heading .active:after\":false},[\"-webkit-transform:rotate(-135deg)\",\"transform:rotate(-135deg)\",\"border-color:#fff\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .text-short-box\":false},[\"display:none\"]],[false,\"}\"],[false,{\".development-team-sec .development-team-content .btn-blue\":false},[\"padding:23px 0px\",\"text-align:center\",\"border-radius:50px\",\"width:360px\",\"margin:0px auto\",\"display:block\"]],[false,{\".benefits-sec\":false},[\"background-color:#fff\"]],[false,{\".team-structure-sec .tek-teams-heading h3\":false},[\"margin-bottom:25px\",\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,\"@media (max-width: 768px){\"],[false,{\".team-structure-sec .tek-teams-heading h3\":false},[\"margin-bottom:15px\"]],[false,\"}\"],[false,{\".team-structure-sec p\":false},[\"font-size:18px\"]],[false,\"@media (max-width: 767px){\"],[false,{\".team-structure-sec p\":false},[\"font-size:14px\"]],[false,{\".custom-grid-sec .inner\":false},[\"margin:0\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding:25px 10px 25px 0px\",\"margin:0\"]],[false,{\".custom-grid-sec .slick-dots\":false},[\"right:0\"]],[false,\"}\"],[false,{\".dev-shop-team-sec\":false},[\"padding:120px 0px\"]],[false,\"@media (max-width: 1680px){\"],[false,{\".dev-shop-team-sec\":false},[\"padding:80px 0px\"]],[false,\"}\"],[false,{\".c-border-none td:not(#_#_#_#_#_#_#_#_)\":false},[\"border:none\"]],[false,{\".tekteams-tabel\":false},[\"background:none\"]],[false,{\".tekteams-tabel .heading-box label\":false},[\"color:#7080a7\"]],[true,\"@media (max-width: 1760px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:14px\",\"padding:0px 14px\"]],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:80px\"]],[true,{\".dropdown-menu\":true},[\"top:77px\"]],[false,{\".cp-tek-teams-isk:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:80px\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:50px\",\"width:75%\",\"margin-right:auto\",\"margin-left:auto\"]],[false,{\".demand-sec\":false},[\"padding:150px 0px 110px 0px\"]],[false,{\".ecosystem-sec\":false},[\"padding:150px 0px\"]],[false,{\".partner-sec .bg-img\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"width:100%\"]],[false,{\".partner-sec\":false},[\"padding:240px 0px 240px 0px\"]],[false,{\".partner-sec .container-md\":false},[\"margin-top:0\"]],[false,{\".solution-sec\":false},[\"padding:160px 0px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:50px\"]],[false,{\".tek-teams-heading h3\":false},[\"margin-bottom:30px\"]],[false,{\".about-tek-wrapper .about-tek-team .c-col p\":false},[\"margin-bottom:5px\",\"line-height:1.5em\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col\":false},[\"margin-bottom:30px\"]],[false,{\".development-team-sec .development-team-content .btn-blue\":false},[\"padding:16px 0px\",\"width:261px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:20px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:120px 0px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:79px\"]],[true,\"}\"],[true,\"@media (max-width: 1680px){\"],[false,{\".tekteams-tabel\":false},[\"padding:25px 0px 60px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"padding:0px 11px\"]],[true,{\".new-header__button a\":true},[\"font-size:16px\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:45px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:45px\"]],[false,{\".demand-sec\":false},[\"padding:100px 0px 60px 0px\"]],[false,{\".ecosystem-sec\":false},[\"padding:100px 0px 130px 0px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 200px 0px\"]],[false,{\".partner-sec .heading-box\":false},[\"padding-bottom:50px\"]],[false,{\".solution-sec\":false},[\"padding:130px 0px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:100px 0px\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:18px\"]],[false,{\".journey-roadmap\":false},[\"margin-top:-98px\"]],[false,{\".infrastructure-sec .heading-box h2\":false,\".cost-effective-sec .heading-box h2\":false},[\"font-size:50px\"]],[true,\"}\"],[true,\"@media (max-width: 1560px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\",\"padding:0px 9px\"]],[true,{\".new-header__button a\":true},[\"font-size:14px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 160px 0px\"]],[false,{\".solution-sec\":false},[\"padding:120px 0px\"]],[false,{\".journey-roadmap\":false},[\"margin-top:-200px\"]],[false,{\".kubernetes-sec\":false},[\"margin-top:-100px\"]],[true,\"}\"],[true,\"@media (max-width:1366px){\"],[false,{\".btn-blue\":false},[\"font-size:18px\"]],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:77px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:72px\"]],[false,{\".cp-tek-teams-isk:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:77px\"]],[true,{\".dropdown-menu\":true},[\"top:75px\"]],[false,{\".cp-cloud-native-isk h2\":false,\".cp-tek-teams-isk h2\":false},[\"font-size:40px\"]],[false,{\".heading-box h2\":false},[\"font-size:32px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 140px 0px\"]],[false,{\".solution-sec\":false},[\"padding:110px 0px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:80px 0px\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:16px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:140px\"]],[false,{\".keeping-future ul\":false},[\"font-size:18px\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:40px\"]],[false,{\".choose-option ul li:last-child\":false},[\"margin-left:0px\"]],[false,{\".choose-option ul li\":false},[\"padding:15px 20px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 70px 119px\"]],[false,{\".contact-form-info-right ul li\":false},[\"padding:25px 0px 25px\"]],[true,\"}\"],[true,\"@media (max-width:1280px){\"],[true,{\".new-header:not(#_#_#_#_#_#_#_)\":true},[\"height:60px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:60px\"]],[false,{\".cp-tek-teams-isk:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:59px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:60px\"]],[true,{\".dropdown-menu\":true},[\"top:57px\"]],[false,{\".heading-box h2\":false},[\"font-size:28px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 120px 0px\"]],[false,{\".choose-option\":false},[\"padding-left:40px\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:60px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:35px\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:14px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:120px\"]],[false,{\".keeping-future ul li\":false},[\"margin-right:33px\"]],[false,{\".keeping-future ul\":false},[\"font-size:16px\"]],[false,{\".contact-form-info-right ul\":false},[\"margin-bottom:70px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 50px 119px\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"object-position:-256px 0px\"]],[true,\"}\"],[false,\"@media (max-width:1200px){\"],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:25px\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:45px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 30px 119px\"]],[false,\"}\"],[false,\"@media (max-width:1190px){\"],[false,{\".btn-blue\":false},[\"font-size:16px\"]],[false,\"}\"],[true,\"@media (max-width:1170px){\"],[true,{\".new-header__logo\":true},[\"min-width:200px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\",\"padding:0px 6px\"]],[false,{\".choose-option ul li\":false},[\"font-size:17px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:18px\"]],[true,\"}\"],[true,\"@media (max-width:1100px){\"],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:10px\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 100px 0px\"]],[true,\"}\"],[true,\"@media (max-width:1028px){\"],[true,{\".new-header__logo\":true},[\"min-width:150px\"]],[true,\"}\"],[false,\"@media (max-width:1024px){\"],[false,{\".contact-form-left\":false},[\"width:53%\",\"padding:58px 0px 75px\"]],[false,{\".contact-form-info-right\":false},[\"width:44%\",\"padding:50px 18px 76px\"]],[false,{\".choose-option ul\":false},[\"flex-wrap:nowrap\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"object-position:75% 0px\"]],[false,\"}\"],[true,\"@media (max-width:992px){\"],[false,{\".btn-blue\":false},[\"font-size:18px\"]],[true,{\".new-header__button\":true},[\"width:20%\",\"justify-content:center\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"width:100%\"]],[false,{\".solution-sec\":false},[\"padding:90px 0px\"]],[false,{\".cp-tek-teams-isk h2\":false},[\"font-size:30px\"]],[false,{\".cp-cloud-native-isk .btn\":false},[\"width:unset\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:230px\"]],[true,{\".closeicon\":true},[\"width:14px\",\"display:none\",\"position:relative\",\"right:17px\",\"top:6px\"]],[true,{\".navbar-toggler .closeicon\":true},[\"display:block\"]],[true,{\".navbar-toggler amp-img:nth-child(1)\":true,\".navbar-toggler amp-anim:nth-child(1)\":false},[\"display:none\"]],[true,{\".navbar-toggler.collapsed .closeicon\":true},[\"display:none\"]],[true,{\".navbar-toggler.collapsed amp-img:nth-child(1)\":true,\".navbar-toggler.collapsed amp-anim:nth-child(1)\":false},[\"display:block\"]],[false,{\".text-grey-box p\":false},[\"padding-right:0px\"]],[true,\"}\"],[false,\"@media (max-width:980px){\"],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"padding:0px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:0\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:20px\"]],[false,{\".btm-icon-line\":false},[\"width:55%\",\"margin:0px auto\"]],[false,{\".custom-contact-wrapper\":false},[\"padding:85px 0px 100px\"]],[false,{\".contact-form-info-right ul li:last-child a\":false},[\"word-break:break-word\"]],[false,\"}\"],[false,\"@media (max-width: 769px){\"],[false,{\".contact-form-info-right ul li a\":false},[\"word-break:break-word\"]],[false,{\".contact-form-info-right ul li:first-of-type a\":false},[\"font-size:25px\"]],[false,{\".contact-form-info-right ul .phone:before\":false},[\"width:30px\",\"height:30px\"]],[false,{\".contact-form-info-right ul .address:before\":false},[\"background-size:100%\",\"width:30px\",\"height:30px\"]],[false,{\".contact-form-info-right ul li:nth-of-type(2) span\":false},[\"padding-left:43px\"]],[false,{\".contact-form-info-right ul li a\":false},[\"padding-left:10px\"]],[false,{\".btm-icon-line:after\":false,\".btm-icon-line::before\":false},[\"width:95px\"]],[false,{\".contact-form-info-right ul\":false},[\"margin-bottom:30px\"]],[false,{\".choose-option ul\":false},[\"margin-bottom:0px\"]],[false,{\".contact-form-info-right\":false},[\"padding:50px 18px 50px\"]],[false,{\".contact-form-info-right h3\":false},[\"margin-bottom:0px\"]],[false,{\".btm-icon-line\":false},[\"width:100%\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea\":false},[\"height:100px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:27px\"]],[false,{\".contact-form-left\":false},[\"padding:58px 0px 30px\"]],[false,{\".choose-option ul li\":false},[\"font-size:17px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:18px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".col-row ul li:nth-child(1)\":false,\".col-row ul li:nth-child(4)\":false,\".col-row ul li\":false},[\"width:50%\"]],[false,{\".custom-contact-wrapper .container-md\":false},[\"padding:0px\",\"width:100%\"]],[false,{\".contact-wrapper-banner .inner-hero-text\":false},[\"top:45%\"]],[false,{\".contact-wrapper-banner .inner-hero-text h2\":false},[\"text-align:center\"]],[false,{\".custom-contact-wrapper\":false},[\"padding:0px\",\"margin-top:-1px\",\"border-radius:0px\"]],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"border-radius:0px\",\"padding:0px\"]],[false,{\".contact-form-info-right\":false},[\"border-radius:0px\",\"padding:40px 24px 0px\",\"width:100%\"]],[false,{\".contact-wrapper-banner\":false},[\"z-index:3\"]],[false,{\".contact-form-info-right h3\":false},[\"display:none\"]],[false,{\".contact-form-info-right ul li:first-of-type\":false},[\"font-size:30px\"]],[false,{\".contact-form-info-right ul li\":false},[\"padding:20px 0px 20px 0px\"]],[false,{\".contact-form-info-right ul li:first-of-type a\":false},[\"font-size:30px\"]],[false,{\".btm-icon-line\":false},[\"display:none\"]],[false,{\".contact-form-info-right ul\":false},[\"margin-bottom:60px\"]],[false,{\".choose-option ul\":false},[\"flex-wrap:nowrap\",\"margin-bottom:0\"]],[false,{\".custom-contact-wrapper .inner-contact\":false},[\"background-color:transparent\",\"flex-direction:column-reverse\"]],[false,{\".choose-option\":false},[\"padding-left:0\"]],[false,{\".contact-form-left .tab-content\":false},[\"padding-left:0px\"]],[false,{\".contact-form-left .choose-option\":false},[\"padding-left:0\"]],[false,{\".contact-form-left\":false},[\"padding:45px 24px 0px 24px\",\"background:#fff\",\"width:86%\",\"margin:85px auto 120px auto\",\"border-radius:0px 26px 26px 26px\",\"box-shadow:0px 20px 32px 0px rgba(0,0,0,.2)\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .col-md-4\":false},[\"max-width:100%\",\"margin-bottom:15px\",\"flex:0 0 100%\"]],[false,{\".form-group .form-control\":false},[\"padding:0px 0px 5px\"]],[false,{\".form-group label\":false},[\"font-size:14px\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box textarea\":false},[\"margin-bottom:32px\",\"margin-top:0px\",\"height:90px\"]],[false,{\".form-group::placeholder\":false},[\"font-size:16px\"]],[false,{\".form-control::-webkit-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:13px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".form-control::-ms-input-placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:13px\",\"font-weight:normal\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".form-control::placeholder\":false},[\"color:#adadad\",\"opacity:1\",\"font-size:13px\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:normal\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .form-box .wpcf7-form-control\":false},[\"font-size:13px\",\"padding:0px 0px 5px\"]],[false,{\".choose-option ul li\":false},[\"font-size:15px\",\"padding:14px 8px\",\"color:#152649\"]],[false,{\".choose-option ul li.tab.active a\":false},[\"font-weight:bold\",\"color:#152649\"]],[false,{\".choose-option ul li:last-child\":false},[\"padding:15px 20px\",\"line-height:1\"]],[false,{\".choose-option ul li:nth-child(2)\":false},[\"font-weight:bold\",\"margin-right:0px\",\"margin-left:0px\"]],[false,{\".contact-wrapper-banner .inner-hero-text p\":false},[\"display:none\"]],[false,{\".contact-wrapper-banner:before\":false},[\"width:20px\",\"height:20px\",\"bottom:-7px\",\"left:7%\",\"background-color:#101f42\"]],[false,{\".custom-contact-wrapper .inner-contact .contact-form-left .calendly-inline-widget:not(#_#_#_#_#_#_#_)\":false},[\"min-width:100%\"]],[false,{\".c-full-map amp-img\":false,\".c-full-map amp-anim\":false},[\"object-position:82% 0px\"]],[false,\"}\"],[true,\"@media (max-width: 767px){\"],[false,{\".tekteams-tabel .heading-box label\":false},[\"margin-left:0px\"]],[false,{\".tekteams-tabel .table-wrapper td.always\":false},[\"color:#28d9cb\"]],[false,{\".tekteams-tabel .table-wrapper td:last-of-type\":false},[\"color:#24c1ff\",\"font-weight:700\"]],[false,{\".tekteams-tabel .table-wrapper tr\":false},[\"display:block\",\"border-top:1px solid #c9c9c9\",\"padding:15px 0\"]],[false,{\"section.demand-sec .inner .slick-track\":false},[\"display:unset\"]],[false,{\".demand-sec .inner .colm:not(#_#_#_#_#_#_#_)\":false},[\"margin:25px 10px 25px 0\",\"padding:0\"]],[false,{\".future-vision-sec .custom-img\":false},[\"width:90%\",\"margin:auto\"]],[true,{\".footer-2022__certificates\":true},[\"margin-top:30px\"]],[false,{\".cp-cloud-native-isk\":false},[\"margin-top:70px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:12px\"]],[false,{\".heading-box h2\":false},[\"font-size:24px\"]],[false,{\".demand-sec .heading-box\":false},[\"padding-bottom:20px\"]],[false,{\".ecosystem-sec .inner\":false},[\"padding-bottom:0\"]],[false,{\".ecosystem-sec\":false},[\"padding:100px 0px 100px 0px\"]],[false,{\".solution-sec\":false},[\"padding:70px 0px\"]],[false,{\".tek-teams-heading h3\":false},[\"margin-bottom:15px\"]],[false,{\".development-team-sec .development-team-content .inner-flex-row .c-col .col-heading\":false},[\"margin-bottom:15px\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"display:block\",\"flex-direction:unset\"]],[false,{\".custom-grid-sec .inner .colm\":false},[\"padding:25px 10px 25px 0px\",\"margin:0\"]],[false,{\".custom-grid-sec .inner .slick-list\":false},[\"padding-bottom:25px\"]],[true,{\"header .new-header__menu-item\":true},[\"top:60px\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link\":true},[\"line-height:normal\",\"font-weight:600\"]],[true,{\".new-header .navbar-light .navbar-nav .nav-link:not(#_#_#_#_#_#_#_)\":true},[\"font-size:16px\",\"color:#152649\"]],[true,{\"header .new-header__nav--list li\":true},[\"margin-bottom:30px\",\"margin-left:18px\"]],[true,{\"header .new-header__nav--list\":true},[\"margin-top:46px\"]],[true,{\"header .new-header__nav--list li:nth-last-child(1)\":true},[\"margin-bottom:0\"]],[true,{\"header .dropdown-menu\":true},[\"top:0px\"]],[true,{\"header .new-header__nav--menu--title\":true},[\"font-size:14px\"]],[true,{\"header .new-header__nav--title h5\":true},[\"font-size:20px\"]],[true,{\"header .new-header__nav--list>.show\":true},[\"padding-top:10px\"]],[false,{\".c-application-development .review_sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:20px\"]],[true,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".reliability-engineers\":false},[\"margin-top:126px\"]],[false,{\".development-team-sec .development-team-content .btn-blue\":false},[\"margin:0px\",\"padding:16px 0px\",\"width:185px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide .see-more\":false,\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide h5\":false},[\"max-width:150px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon:not(#_#_#_#_#_#_#_)\":false},[\"margin-left:0\"]],[false,\"}\"],[false,\"@media (max-width:575px){\"],[false,{\".infrastructure-sec:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:-309px\"]],[false,{\".col-row ul li\":false,\".col-row ul li:nth-child(1)\":false,\".col-row ul li:nth-child(4)\":false},[\"width:100%\",\"padding-left:25px\"]],[false,{\".col-row ul li::after\":false},[\"width:19px\",\"height:19px\",\"background-size:100%\"]],[false,{\".kubernetes-sec .container-md\":false},[\"padding:0px 0px\"]],[false,{\".kubernetes-sec .custom-txt\":false},[\"padding:0px 24px\"]],[false,{\".devops-services .applications-col h5::before\":false},[\"width:25px\",\"height:25px\",\"background-size:100%\"]],[false,{\".infrastructure-sec .heading-box:not(#_#_#_#_#_#_#_)\":false},[\"margin-top:0px\"]],[false,\"}\"],[true,\"@media (max-width:480px){\"],[false,{\".custom-txt-img-sec.contact-tek-teams .custom-img\":false},[\"margin:0px 0 0px 0px\",\"padding-bottom:0px\"]],[true,{\".footer-2022__certificates\":true},[\"margin-top:0\",\"margin-bottom:20px\"]],[true,{\".footer-2022__box-end a\":true},[\"font-size:14px\"]],[true,{\".footer-2022__box-end a:nth-last-child(1)\":true},[\"margin-right:0\"]],[true,{\".row.footer-2022__mobile-items\":true},[\"padding-right:0\"]],[true,{\".footer-2022__copyright\":true},[\"font-size:14px\"]],[false,{\".future-vision-sec .custom-img\":false},[\"max-width:360px\"]],[false,{\".cp-cloud-native-isk h2\":false},[\"font-size:32px\"]],[false,{\".demand-sec\":false},[\"padding:60px 0px 40px 0px\"]],[false,{\".ecosystem-sec\":false},[\"padding:60px 0px 35px 0px\"]],[false,{\".ecosystem-sec .heading-box figure\":false},[\"top:0\",\"right:0\"]],[false,{\".ecosystem-sec .heading-box figure amp-img\":false,\".ecosystem-sec .heading-box figure amp-anim\":false},[\"width:100%\",\"height:100%\"]],[false,{\".partner-sec\":false},[\"padding:200px 0px 80px 0px\"]],[false,{\".partner-sec .colm h6\":false},[\"min-height:unset\"]],[false,{\".partner-sec .heading-box\":false},[\"padding-bottom:40px\"]],[false,{\".solution-sec\":false},[\"padding:60px 0px\"]],[false,{\".cp-tek-teams-isk h2\":false,\".tek-teams-heading h3\":false},[\"font-size:26px\"]],[false,{\".c-app-banner h2\":false},[\"font-size:32px\"]],[false,{\".c-app-banner p\":false},[\"font-size:16px\"]],[false,{\".solution-sec.dev-shop-team-sec.tekteams-tabel\":false},[\"padding:60px 0px\"]],[true,{\".footer-2022__social-media\":true},[\"margin-top:60px\"]],[true,{\".footer-2022__social-media a\":true},[\"margin:0px 30px 0px 0px\"]],[true,{\".footer-2022__social-media a:nth-last-child(1)\":true},[\"margin-right:0\"]],[true,\"}\"],[false,\"@media (max-width:420px){\"],[false,{\".future-vision-sec .custom-img\":false},[\"width:100%\",\"margin:auto\"]],[false,{\".ecosystem-sec .heading-box figure\":false},[\"margin-bottom:0\",\"top:30px\",\"width:70px\",\"height:70px\"]],[false,{\".ecosystem-sec .heading-box h2\":false},[\"width:calc(100% - 70px)\"]],[false,\"}\"],[true,{\"body .devops-styles:not(#_#_#_#_#_#_#_#_)\":true},[\"margin-top:75px\"]],[true,\"@media (max-width:1200px){\"],[true,{\"body .devops-styles:not(#_#_#_#_#_#_#_#_)\":true},[\"margin-top:55px\"]],[false,{\".contact-wrapper-banner:before\":false},[\"left:7%\"]],[true,\"}\"],[false,\"@media (min-width:1350px) and (max-height:1135px){\"],[false,{\".ecosystem-sec .colm\":false},[\"margin-bottom:25px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(36%)\"]],[false,{\".ecosystem-sec .colm:last-of-type figure\":false},[\"margin-bottom:0\"]],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"max-width:200px\",\"display:block\",\"margin:auto\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:47%\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:1035px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"transform:translateY(-50%)\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(32%)\"]],[false,{\".ecosystem-sec .colm\":false},[\"padding:15px 30px 15px 30px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"margin-bottom:15px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"padding-right:30px\",\"font-size:20px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(38%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:48%\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:898px){\"],[false,{\".ecosystem-sec .colm p\":false},[\"font-size:14px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(38%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:49%\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:16px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:15px\"]],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:18px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"width:60px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:25px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"width:130px\"]],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"width:170px\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:770px){\"],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(26%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:48%\"]],[false,{\".ecosystem-sec .colm .back-slide .see-more\":false},[\"font-size:14px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:15px\"]],[false,{\".ecosystem-sec .colm h4\":false,\".ecosystem-sec .colm h5\":false},[\"font-size:16px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .icon\":false},[\"width:60px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(4) .inner-colm .back-slide .icon\":false},[\"margin-top:25px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"width:120px\"]],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"width:140px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false,\".ecosystem-sec .colm\":false},[\"margin-bottom:20px\",\"padding:15px 20px\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"width:28%\"]],[false,{\".ecosystem-sec .colm p\":false},[\"font-size:12px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"padding-bottom:25px\"]],[false,\"}\"],[false,\"@media (min-width:1350px) and (max-height:700px){\"],[false,{\".ecosystem-sec .colm:last-of-type amp-img\":false,\".ecosystem-sec .colm:last-of-type amp-anim\":false},[\"width:110px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false},[\"transform:translateY(-41%)\"]],[false,{\".ecosystem-sec .colm:nth-of-type(5)\":false},[\"transform:translateY(25%)\"]],[false,{\".ecosystem-sec .colm:last-of-type\":false},[\"top:49%\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(6) .inner-colm .back-slide .icon\":false,\".ecosystem-sec .colm:nth-of-type(3) .inner-colm .back-slide .icon\":false},[\"margin-bottom:10px\"]],[false,{\".ecosystem-sec .inner .colm .inner-colm .back-slide .back_heading\":false},[\"margin-bottom:10px\"]],[false,{\".ecosystem-sec .colm:nth-of-type(2)\":false,\".ecosystem-sec .colm\":false},[\"margin-bottom:20px\",\"padding:10px 20px\"]],[false,{\".ecosystem-sec .colm .inner-colm .slick-track .slick-slide\":false},[\"padding-top:0\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":6539,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/kubernetes.css?v=80354413\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"00ad41532091732506b79ad4852bdcbd\",\"parse_time\":0.03337907791137695,\"shake_time\":7.605552673339844e-5,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\"#gtx-trans\":false},[\"display:none\"]],[false,{\".kubernetes__banner__dark\":false},[\"background-color:#152649\",\"padding:85px 0px\"]],[false,{\".kubernetes__banner__light\":false},[\"background-color:#fff\",\"padding:120px 0px\"]],[false,{\".kubernetes__banner__grey\":false},[\"background-color:#f1f1f1\",\"padding:120px 0px\"]],[false,{\".kubernetes__banner__bottom\":false},[\"background-color:#fff\",\"padding:65px 0px\",\"box-shadow:inset 0px 11px 8px -10px rgba(0,0,0,.1),inset 0px -11px 8px -10px rgba(0,0,0,.1)\"]],[false,{\".text__light__blue\":false},[\"color:#28d9cb\"]],[false,{\".text__blue\":false},[\"color:#00c3fc\"]],[false,{\".kubernetes__section--1 .subtitle\":false},[\"font-family:Roboto\",\"font-size:16px\",\"text-transform:uppercase\",\"letter-spacing:1.6px\"]],[false,{\".kubernetes__section--1 .titlePage\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:60px\"]],[false,{\".kubernetes .redirect__page\":false},[\"color:#7080a7\",\"align-items:center\"]],[false,{\".redirect__page > h6\":false},[\"font-family:Roboto\",\"font-size:18px\",\"margin-left:10px\",\"margin-bottom:0px\",\"color:#7080a7\"]],[false,{\".iconSmall\":false},[\"width:2px\",\"height:5px\",\"margin-right:10px\"]],[false,{\".iconMedium\":false},[\"width:15px\",\"height:13px\",\"margin-right:10px\"]],[false,{\".imgIcon\":false},[\"width:24px\",\"height:24px\",\"margin-right:10px\"]],[false,{\".kubernetes .wrap__kcsp .nav__services .service__name h6\":false},[\"color:#152649\",\"margin:0\",\"font-weight:bold\",\"font-family:Raleway\"]],[false,{\".kubernetes .titleSection\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".kubernetes .titleSection__footer\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".kubernetes .section_one_content\":false,\".kubernetes .section_three_content\":false,\".kubernetes .section_four_content\":false,\".kubernetes .section_five_content\":false},[\"font-size:20px\",\"line-height:32px\"]],[false,{\".kubernetes .nav__services\":false},[\"box-shadow:rgba(0,0,0,.45) 0px 25px 20px -20px\",\"border-radius:24px\",\"background-color:#f5f5f5\",\"border:1px solid #f5f5f5\",\"padding:26.5px 35.5px\",\"margin-top:40px\"]],[false,{\".kubernetes .nav__services h6\":false},[\"margin:0\"]],[false,{\".kubernetes .nav__services .service__name\":false},[\"font-family:Raleway\",\"font-size:16px\",\"font-weight:bold\",\"color:#152649\"]],[false,{\".kubernetes .nav__services .service__name .section_five_icon_text\":false},[\"font-size:14px\",\"line-height:32px\"]],[false,{\".service__name picture\":false,\".service__name source\":false,\".service__name div > amp-img\":false,\".service__name div > amp-anim\":false},[\"display:flex\",\"width:35px\"]],[false,{\".service__name div\":false},[\"display:flex\",\"justify-content:flex-start\",\"align-items:center\"]],[false,{\".service__name div h6\":false},[\"font-weight:bold\",\"font-size:18px\",\"font-family:Raleway\",\"margin:0\"]],[false,{\".kubernetes .btn__consultation\":false},[\"background-color:#00c3fc\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\"]],[false,{\".kubernetes .btn__consultation__light__blue\":false},[\"background-color:#28d9cb\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\"]],[false,{\".kubernetes .btn__linear\":false},[\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:40px\"]],[false,{\".kubernetes .wrap__Services .service__name\":false},[\"font-family:Raleway\",\"font-size:18px\",\"font-weight:bold\",\"color:#152649\",\"line-height:32px\"]],[false,{\".service__list\":false},[\"align-items:center\",\"border-bottom:1px solid #e1e1e1\",\"max-height:70px\"]],[false,{\".kubernetes .wrap__Services .service__list:last-child .service__name\":false},[\"border-bottom:none\"]],[false,{\".kubernetes .owl-carousel .owl-item .service__name\":false},[\"font-family:Raleway\",\"font-size:18px\",\"font-weight:bold\",\"color:#152649\",\"line-height:32px\"]],[false,{\".service__name i\":false},[\"color:#26c1ff\",\"font-size:15px\",\"margin-right:3px\"]],[false,{\".kubernetes .owl-carousel .owl-item .imgIcon\":false},[\"width:24px\",\"height:24px\",\"margin-right:10px\"]],[false,{\".kubernetes .owl-theme .owl-nav\":false},[\"display:none\"]],[false,{\".kubernetes .owl-theme .owl-dots .owl-dot span\":false},[\"width:4px\",\"height:4px\",\"background-color:#d6d6d6\"]],[false,{\".kubernetes .owl-theme .owl-dots .owl-dot.active span\":false},[\"width:24px\",\"height:4px\",\"border-radius:2px\",\"background-color:#28d9cb\"]],[false,{\".kubernetes .text\":false},[\"font-family:Raleway\",\"font-size:20px\",\"font-weight:bold\",\"color:#152649\",\"line-height:32px\"]],[false,{\".absolute__button\":false},[\"position:absolute\",\"bottom:-35px\",\"left:calc(( 100vw - 246px ) \\/ 2)\"]],[false,\"@media screen and (min-width: 1440px){\"],[false,{\".containerWidth\":false},[\"max-width:1210px\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media screen and (max-width: 991px){\"],[false,{\".kubernetes__banner__grey\":false},[\"padding:80px 0px\"]],[false,{\".kubernetes__banner__light\":false},[\"padding:50px 0px 80px 0px\"]],[false,{\".kubernetes__banner__bottom\":false},[\"padding:35px 0px\"]],[false,{\".kubernetes__section--1 .titlePage\":false},[\"font-size:32px\",\"line-height:34px\"]],[false,{\".kubernetes__section--1 .subtitle\":false},[\"font-size:12px\",\"letter-spacing:1.2px\"]],[false,{\".kubernetes .redirect__page h6\":false},[\"font-size:14px\",\"line-height:17px\",\"letter-spacing:1.4px\"]],[false,{\".kubernetes .section_one_content\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".kubernetes .wrap__kcsp .nav__services .service__name h6\":false},[\"font-size:14px\",\"line-height:16px\"]],[false,{\".kubernetes .owl-carousel .item .service__name .section_two_title\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".kubernetes .section_one_content\":false,\".kubernetes .section_three_content\":false,\".kubernetes .section_four_content\":false,\".kubernetes .section_five_content\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".kubernetes .text\":false},[\"font-size:14px\",\"line-height:22px\"]],[false,{\".owl-carousel .service__name:not(#_#_#_#_#_#_#_)\":false},[\"border-bottom:1px solid #e1e1e1\"]],[false,{\".kubernetes .titleSection__footer\":false},[\"font-size:20px\",\"line-height:24px\",\"padding:0px 58px\"]],[false,{\".kubernetes .btn__linear\":false},[\"font-size:20px\",\"padding:15px 28px\"]],[false,{\".absolute__button\":false},[\"position:absolute\",\"bottom:-25px\",\"left:calc(( 100vw - 150px ) \\/ 2)\"]],[false,\"}\"],[false,\"@media screen and (max-width: 1439px){\"],[false,{\".containerWidth\":false},[\"max-width:calc(100vw * .87692307692)\",\"margin:0px auto\"]],[false,{\".kubernetes .titleSection\":false},[\"font-family:Raleway\",\"font-weight:bold\",\"font-size:30px\",\"line-height:30px\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":9248,\"final_size\":139,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/marchine.css?v=1260057810\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"176294cfc3e123d8b5077b360bfaced0\",\"parse_time\":0.09151101112365723,\"shake_time\":0.00014495849609375,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"*\":true},[\"font-family:Raleway\"]],[true,{\":root\":true},[\"--btn_color:#0e2748\",\"--main_color:#0e2748\"]],[true,{\"a:hover\":true},[\"color:var(--main_color)\"]],[false,{\".btn-consultation\":false},[\"background-color:#00c3fc\",\"border-radius:30px\",\"padding:25px 50px\",\"color:var(--btn_color)\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\",\"z-index:3\",\"white-space:nowrap\"]],[true,{\"h1\":true,\"h2\":true,\"h3\":true,\"h4\":true,\"h5\":true,\"h6\":true},[\"font-family:Raleway\"]],[false,{\".machine_banner h1\":false},[\"font-size:60px\",\"font-weight:bold\",\"text-align:left\",\"line-height:60px\"]],[false,{\".machine_banner p\":false},[\"color:#28d9cb\",\"margin-bottom:24px\",\"font-family:Roboto\",\"font-size:16px\",\"line-height:22px\",\"text-align:left\"]],[false,{\".service_machine_new\":false},[\"background-color:#fff\"]],[false,{\".machine_future\":false},[\"margin-top:100px\"]],[false,{\".text-strong\":false},[\"font-size:50px\",\"font-weight:bold\",\"white-space:nowrap\"]],[false,{\".text-strong\":false},[\"color:#24c1ff\"]],[false,{\".machine_future h2\":false},[\"line-height:50px\"]],[false,{\".machine_future h2\":false,\".machine_future amp-img\":false,\".machine_future amp-anim\":false},[\"margin:40px 0px\",\"font-family:Raleway\",\"font-size:50px\"]],[false,{\".machine_future amp-img\":false,\".machine_future amp-anim\":false},[\"background-size:cover\"]],[false,{\".machine_future i\":false},[\"color:rgba(112,128,167,1)\",\"font-size:16px\",\"margin-right:10px\"]],[false,{\".machine_future h6\":false},[\"color:#7080a7\",\"margin-bottom:0\",\"font-family:Roboto\",\"font-size:18px\"]],[false,{\".machine_text\":false},[\"color:#707070\",\"width:90%\",\"font-size:20px\",\"line-height:32px\",\"margin-bottom:80px\"]],[false,{\".about-service\":false},[\"padding-bottom:120px\"]],[false,{\".about-service .slider-about\":false},[\"padding:0\"]],[false,{\".slider-about > div\":false},[\"height:100%\"]],[false,{\".service-machine-selection\":false},[\"display:flex\",\"justify-content:space-around\",\"background-color:#f1f1f1\",\"padding:15px 15px\",\"margin:0px\",\"border-radius:40px\"]],[false,{\".service-machine-selection > a\":false},[\"border-radius:40px\",\"padding:10px\",\"width:100%\",\"flex:1\",\"text-align:center\",\"color:#707070\",\"font-weight:bold\",\"font-size:20px\"]],[false,{\".slider-about_problems\":false,\".slider-about_solutions\":false},[\"padding:0px 50px\"]],[false,{\".slider-about_problems h3\":false},[\"font-weight:bold\",\"font-size:32px\",\"text-align:left\",\"line-height:40px\"]],[false,{\".slider-about_problems h4\":false},[\"font-size:20px\",\"color:#434343\",\"font-family:Raleway\",\"font-weight:bold\",\"line-height:32px\",\"text-align:left\"]],[false,{\".slider-about_problems p\":false},[\"font-size:18px\",\"line-height:30px\",\"line-height:40px\",\"text-align:left\"]],[false,{\".item-carousel-1:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[false,{\".item-carousel-1 amp-img\":false,\".item-carousel-1 amp-anim\":false},[\"vertical-align:top\",\"margin:0\"]],[false,{\".slider-about_problems > div:last-child\":false},[\"font-size:32px\",\"display:flex\",\"justify-content:center\",\"color:#152649\",\"font-weight:bold\"]],[false,{\".first_solution > div\":false,\".second_solution > div\":false,\".last_solution > div\":false},[\"margin-bottom:50px\"]],[false,{\".slider-about_solutions h3\":false},[\"font-weight:bold\",\"font-size:32px\",\"text-align:left\",\"line-height:40px\"]],[false,{\".slider-about_solutions amp-img\":false,\".slider-about_solutions amp-anim\":false},[\"margin:0px\",\"margin-top:5px\",\"min-width:24px\",\"height:24px\"]],[false,{\".first_solution p:first-child\":false},[\"font-weight:bold\",\"font-size:20px\",\"line-height:32px\",\"color:#434343\",\"margin-bottom:50px\"]],[false,{\".first_solution p\":false,\".second_solution p\":false,\".last_solution p\":false},[\"color:#152649\",\"font-size:1.125rem\",\"line-height:30px\",\"text-align:left\"]],[false,{\".slider-about-text-strong\":false},[\"color:#28d9cb\"]],[false,{\".difference_slice\":false},[\"padding:0px 50px\"]],[false,{\".difference_slice div:first-child\":false},[\"align-items:center\"]],[false,{\".difference_slice div:first-child h3\":false},[\"text-align:left\",\"color:#152649\",\"font-size:32px\",\"font-weight:bold\",\"line-height:40px\"]],[false,{\".difference_slice div:last-child p\":false},[\"text-align:left\",\"color:#434343\",\"font-size:18px\",\"line-height:30px\"]],[false,{\".trusted-relationships\":false},[\"background-color:#f1f1f1\",\"padding-bottom:200px\"]],[false,{\".trusted-relationships h2\":false},[\"margin-top:156px\",\"margin-bottom:80px\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".btn-relationship\":false},[\"position:absolute\",\"margin:0\",\"margin-top:-35px\",\"background-color:#00c3fc\",\"border-radius:30px\",\"padding:25px 38px\",\"color:var(--main_color)\",\"width:auto\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:18px\",\"display:inline\",\"left:0\",\"z-index:1\"]],[false,{\".card\":false},[\"background-color:transparent\",\"border-color:transparent\"]],[false,{\".card:not(#_#_#_#_#_#_#_)\":false},[\"margin-right:20px\"]],[false,{\".card h3\":false},[\"cursor:pointer\",\"font-size:18px\",\"font-weight:bold\"]],[false,{\".card amp-img\":false,\".card amp-anim\":false},[\"width:24px\",\"height:24px\",\"margin:0px\",\"margin-top:2px\"]],[false,{\".card i\":false},[\"color:#24c1ff\",\"font-size:medium\",\"margin-left:10px\",\"margin-top:5px\",\"display:none\"]],[false,{\"#enterprise_and_fastest_content\":false},[\"position:absolute\",\"width:100%\"]],[false,{\"#enterprise_and_fastest_content:not(#_#_#_#_#_#_#_)\":false},[\"top:-130px\"]],[false,{\"#enterprise_and_fastest_content div\":false},[\"min-height:150px\",\"border-radius:24px\",\"display:flex\",\"justify-content:center\",\"padding:48px\"]],[false,{\"#enterprise_and_fastest_content div:first-child\":false},[\"background-color:#152649\",\"color:#24c1ff\"]],[false,{\"#enterprise_and_fastest_content div:first-child p\":false},[\"color:#24c1ff\",\"text-align:center\",\"font-size:24px\",\"font-weight:bold\",\"line-height:36px\"]],[false,{\"#enterprise_and_fastest_content div:nth-child(2) h2\":false},[\"font-size:50px\",\"line-height:50px\"]],[false,{\"#enterprise_and_fastest_content div:last-child\":false},[\"background-color:#f5f5f5\",\"box-shadow:rgba(0,0,0,.45) 0px 25px 20px -20px\",\"display:flex\",\"flex-direction:column\",\"justify-content:flex-start\"]],[false,{\"#enterprise_and_fastest_content div:last-child p\":false},[\"font-style:italic\",\"color:#707070\",\"text-align:left\",\"font-size:20px\"]],[false,{\"#enterprise_and_fastest_content div:last-child p:last-child\":false},[\"margin:0\",\"font-weight:bold\",\"font-style:normal\"]],[false,{\"#enterprise_and_fastest_content div:last-child amp-img\":false,\"#enterprise_and_fastest_content div:last-child amp-anim\":false},[\"width:40px\",\"height:40px\",\"left:45px\",\"top:-20px\"]],[false,{\".business\":false},[\"box-shadow:inset 0px 11px 8px -10px rgba(0,0,0,.1),inset 0px -11px 8px -10px rgba(0,0,0,.1)\"]],[false,{\".business-content\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\",\"align-items:center\",\"padding:50px 0px\",\"position:relative\"]],[false,{\".business-content a\":false},[\"background:linear-gradient(90deg,#28d9cb 0,#a0f266 100%)\",\"border-radius:30px\",\"padding:25px 38px\",\"color:#0e2748\",\"cursor:pointer\",\"font-weight:bold\",\"font-size:40px\",\"float:right\"]],[false,{\".business-content h2\":false},[\"text-align:center\",\"margin-bottom:0\",\"font-family:Raleway\",\"font-weight:bold\",\"font-size:50px\",\"line-height:50px\"]],[false,\"@media screen and (max-width: 992px){\"],[false,{\".card i\":false},[\"display:block\"]],[false,{\".card > div:last-child\":false},[\"display:none\"]],[false,{\".card\":false},[\"border-top:1px solid rgba(138,138,138,.34)\",\"padding:30px 0px 15px 0px\",\"border-radius:0\"]],[false,{\".business a\":false},[\"position:absolute\",\"bottom:-40px\",\"left:0\",\"right:0\",\"margin-left:auto\",\"margin-right:auto\",\"text-align:center\",\"width:306px\"]],[false,{\".btn-relationship\":false},[\"left:50%\",\"transform:translate(-50%,0%)\",\"white-space:nowrap\"]],[false,{\".business-content\":false},[\"flex-direction:column\"]],[false,\"}\"],[false,{\".selected\":false},[\"background-color:white\",\"border:none\"]],[false,{\".selected:not(#_#_#_#_#_#_#_)\":false},[\"color:var(--main_color)\"]],[false,{\"#container\":false},[\"position:relative\",\"overflow:hidden\",\"clear:left\",\"padding:50px 0px\"]],[false,{\".box\":false},[\"position:absolute\",\"top:0\",\"left:0\"]],[false,{\"#first\":false},[\"top:0px\",\"left:0px\",\"width:100%\",\"display:flex\"]],[false,{\"#second\":false},[\"top:0px\",\"width:100%\"]],[false,{\"#third\":false},[\"top:0px\",\"width:100%\"]],[false,{\"#slide\":false},[\"transition:transform .5s ease-in-out 0s\",\"-moz-transition:-moz-transform .5s ease-in-out 0s\",\"-webkit-transition:-webkit-transform .5s ease-in-out 0s\",\"min-height:50px\"]],[false,{\".move-to-second\":false},[\"transform:translateX(var(--tab_second))\",\"-moz-transform:translateX(var(--tab_second))\",\"-webkit-transform:translateX(var(--tab_second))\"]],[false,{\".move-to-third\":false},[\"transform:translateX(var(--tab_third))\",\"-moz-transform:translateX(var(--tab_third))\",\"-webkit-transform:translateX(var(--tab_third))\"]],[false,{\".move-to-first\":false},[\"transform:translateX(0px)\",\"-moz-transform:translateX(0px)\",\"-webkit-transform:translateX(0px)\"]],[false,{\".machine_future_title h2\":false,\".machine_future_title span\":false,\".machine_future_title p\":false},[\"font-size:50px\"]],[false,\"@media screen and (max-width: 540px){\"],[false,{\".machine_text\":false},[\"width:100%\"]],[false,{\".difference_slice\":false},[\"padding:0px 20px\"]],[false,{\".first_solution > div\":false,\".second_solution > div\":false,\".last_solution > div\":false},[\"margin-bottom:0\"]],[false,{\"#third\":false},[\"padding:20px\"]],[false,{\"#first\":false,\"#second\":false,\"#third\":false},[\"background-color:#f1f1f1\",\"border-radius:24px\",\"box-shadow:rgba(0,0,0,.45) 0px 25px 20px -20px\"]],[false,{\"#first:not(#_#_#_#_#_#_#_)\":false,\"#second:not(#_#_#_#_#_#_#_)\":false,\"#third:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:20px\",\"padding-bottom:20px\"]],[false,{\".service-machine-selection > a\":false},[\"font-size:17px\"]],[false,{\"#container\":false},[\"padding-top:15px\"]],[false,{\".btn-consultation\":false},[\"padding:25px 25px\"]],[false,{\".machine_future_title h2\":false,\".machine_future_title span\":false,\".machine_future_title p\":false},[\"font-size:45px\"]],[false,\"}\"],[false,\"@media screen and (min-width: 1440px){\"],[false,{\".containerWidth\":false},[\"max-width:1232px\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media screen and (min-width: 1440px){\"],[false,{\".containerWidth\":false},[\"max-width:1220px\",\"margin:0px auto\"]],[false,\"}\"],[false,\"@media screen and (max-width: 1439px){\"],[false,{\".containerWidth\":false},[\"max-width:calc(100vw * .87692307692)\",\"margin:0px auto\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1776,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"type\":\"text\\/css\",\"href\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/slick-carousel@1.8.1\\/slick\\/slick.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"503d87b8e892b897f5d05df814fbc0c4\",\"parse_time\":0.008713960647583008,\"shake_time\":2.5987625122070312e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".slick-slider\":false},[\"position:relative\",\"display:block\",\"box-sizing:border-box\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\",\"-webkit-touch-callout:none\",\"-khtml-user-select:none\",\"-ms-touch-action:pan-y\",\"touch-action:pan-y\",\"-webkit-tap-highlight-color:transparent\"]],[false,{\".slick-list\":false},[\"position:relative\",\"display:block\",\"overflow:hidden\",\"margin:0\",\"padding:0\"]],[false,{\".slick-list:focus\":false},[\"outline:none\"]],[false,{\".slick-list.dragging\":false},[\"cursor:pointer\",\"cursor:hand\"]],[false,{\".slick-slider .slick-track\":false,\".slick-slider .slick-list\":false},[\"-webkit-transform:translate3d(0,0,0)\",\"-moz-transform:translate3d(0,0,0)\",\"-ms-transform:translate3d(0,0,0)\",\"-o-transform:translate3d(0,0,0)\",\"transform:translate3d(0,0,0)\"]],[false,{\".slick-track\":false},[\"position:relative\",\"top:0\",\"left:0\",\"display:block\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".slick-track:before\":false,\".slick-track:after\":false},[\"display:table\",\"content:\\\"\\\"\"]],[false,{\".slick-track:after\":false},[\"clear:both\"]],[false,{\".slick-loading .slick-track\":false},[\"visibility:hidden\"]],[false,{\".slick-slide\":false},[\"display:none\",\"float:left\",\"height:100%\",\"min-height:1px\"]],[false,{\"[dir=\'rtl\'] .slick-slide\":false},[\"float:right\"]],[false,{\".slick-slide amp-img\":false,\".slick-slide amp-anim\":false},[\"display:block\"]],[false,{\".slick-slide.slick-loading amp-img\":false,\".slick-slide.slick-loading amp-anim\":false},[\"display:none\"]],[false,{\".slick-slide.dragging amp-img\":false,\".slick-slide.dragging amp-anim\":false},[\"pointer-events:none\"]],[false,{\".slick-initialized .slick-slide\":false},[\"display:block\"]],[false,{\".slick-loading .slick-slide\":false},[\"visibility:hidden\"]],[false,{\".slick-vertical .slick-slide\":false},[\"display:block\",\"height:auto\",\"border:1px solid transparent\"]],[false,{\".slick-arrow.slick-hidden\":false},[\"display:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":100701,\"final_size\":8643,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/css\\/all.min.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"2b9f797b620fd0348167564267b11933\",\"parse_time\":2.5145909786224365,\"shake_time\":0.0025250911712646484,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\",\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-v4compatibility.woff2\"],\"shaken_tokens\":[[false,{\".fa\":false},[\"font-family:var(--fa-style-family,\\\"Font Awesome 6 Free\\\")\",\"font-weight:var(--fa-style,900)\"]],[true,{\".fa\":false,\".fa-brands\":false,\".fa-duotone\":false,\".fa-light\":false,\".fa-regular\":false,\".fa-solid\":false,\".fa-thin\":false,\".fab\":false,\".fad\":false,\".fal\":false,\".far\":false,\".fas\":true,\".fat\":false},[\"-moz-osx-font-smoothing:grayscale\",\"-webkit-font-smoothing:antialiased\",\"display:var(--fa-display,inline-block)\",\"font-style:normal\",\"font-variant:normal\",\"line-height:1\",\"text-rendering:auto\"]],[false,{\".fa-1x\":false},[\"font-size:1em\"]],[false,{\".fa-2x\":false},[\"font-size:2em\"]],[false,{\".fa-3x\":false},[\"font-size:3em\"]],[false,{\".fa-4x\":false},[\"font-size:4em\"]],[false,{\".fa-5x\":false},[\"font-size:5em\"]],[false,{\".fa-6x\":false},[\"font-size:6em\"]],[false,{\".fa-7x\":false},[\"font-size:7em\"]],[false,{\".fa-8x\":false},[\"font-size:8em\"]],[false,{\".fa-9x\":false},[\"font-size:9em\"]],[false,{\".fa-10x\":false},[\"font-size:10em\"]],[false,{\".fa-2xs\":false},[\"font-size:.625em\",\"line-height:.1em\",\"vertical-align:.225em\"]],[false,{\".fa-xs\":false},[\"font-size:.75em\",\"line-height:.08333em\",\"vertical-align:.125em\"]],[false,{\".fa-sm\":false},[\"font-size:.875em\",\"line-height:.07143em\",\"vertical-align:.05357em\"]],[false,{\".fa-lg\":false},[\"font-size:1.25em\",\"line-height:.05em\",\"vertical-align:-.075em\"]],[false,{\".fa-xl\":false},[\"font-size:1.5em\",\"line-height:.04167em\",\"vertical-align:-.125em\"]],[false,{\".fa-2xl\":false},[\"font-size:2em\",\"line-height:.03125em\",\"vertical-align:-.1875em\"]],[false,{\".fa-fw\":false},[\"text-align:center\",\"width:1.25em\"]],[false,{\".fa-ul\":false},[\"list-style-type:none\",\"margin-left:var(--fa-li-margin,2.5em)\",\"padding-left:0\"]],[false,{\".fa-ul>li\":false},[\"position:relative\"]],[false,{\".fa-li\":false},[\"left:calc(var(--fa-li-width,2em) * -1)\",\"position:absolute\",\"text-align:center\",\"width:var(--fa-li-width,2em)\",\"line-height:inherit\"]],[false,{\".fa-border\":false},[\"border-radius:var(--fa-border-radius,.1em)\",\"border:var(--fa-border-width,.08em) var(--fa-border-style,solid) var(--fa-border-color,#eee)\",\"padding:var(--fa-border-padding,.2em .25em .15em)\"]],[false,{\".fa-pull-left\":false},[\"float:left\",\"margin-right:var(--fa-pull-margin,.3em)\"]],[false,{\".fa-pull-right\":false},[\"float:right\",\"margin-left:var(--fa-pull-margin,.3em)\"]],[false,{\".fa-beat\":false},[\"-webkit-animation-name:fa-beat\",\"animation-name:fa-beat\",\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out)\",\"animation-timing-function:var(--fa-animation-timing,ease-in-out)\"]],[false,{\".fa-bounce\":false},[\"-webkit-animation-name:fa-bounce\",\"animation-name:fa-bounce\",\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))\",\"animation-timing-function:var(--fa-animation-timing,cubic-bezier(.28,.84,.42,1))\"]],[false,{\".fa-fade\":false},[\"-webkit-animation-name:fa-fade\",\"animation-name:fa-fade\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\",\"animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\"]],[false,{\".fa-beat-fade\":false,\".fa-fade\":false},[\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\"]],[false,{\".fa-beat-fade\":false},[\"-webkit-animation-name:fa-beat-fade\",\"animation-name:fa-beat-fade\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\",\"animation-timing-function:var(--fa-animation-timing,cubic-bezier(.4,0,.6,1))\"]],[false,{\".fa-flip\":false},[\"-webkit-animation-name:fa-flip\",\"animation-name:fa-flip\",\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,ease-in-out)\",\"animation-timing-function:var(--fa-animation-timing,ease-in-out)\"]],[false,{\".fa-shake\":false},[\"-webkit-animation-name:fa-shake\",\"animation-name:fa-shake\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,linear)\",\"animation-timing-function:var(--fa-animation-timing,linear)\"]],[false,{\".fa-shake\":false,\".fa-spin\":false},[\"-webkit-animation-delay:var(--fa-animation-delay,0)\",\"animation-delay:var(--fa-animation-delay,0)\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\"]],[false,{\".fa-spin\":false},[\"-webkit-animation-name:fa-spin\",\"animation-name:fa-spin\",\"-webkit-animation-duration:var(--fa-animation-duration,2s)\",\"animation-duration:var(--fa-animation-duration,2s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,linear)\",\"animation-timing-function:var(--fa-animation-timing,linear)\"]],[false,{\".fa-spin-reverse\":false},[\"--fa-animation-direction:reverse\"]],[false,{\".fa-pulse\":false,\".fa-spin-pulse\":false},[\"-webkit-animation-name:fa-spin\",\"animation-name:fa-spin\",\"-webkit-animation-direction:var(--fa-animation-direction,normal)\",\"animation-direction:var(--fa-animation-direction,normal)\",\"-webkit-animation-duration:var(--fa-animation-duration,1s)\",\"animation-duration:var(--fa-animation-duration,1s)\",\"-webkit-animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"animation-iteration-count:var(--fa-animation-iteration-count,infinite)\",\"-webkit-animation-timing-function:var(--fa-animation-timing,steps(8))\",\"animation-timing-function:var(--fa-animation-timing,steps(8))\"]],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".fa-beat\":false,\".fa-beat-fade\":false,\".fa-bounce\":false,\".fa-fade\":false,\".fa-flip\":false,\".fa-pulse\":false,\".fa-shake\":false,\".fa-spin\":false,\".fa-spin-pulse\":false},[\"-webkit-animation-delay:-1ms\",\"animation-delay:-1ms\",\"-webkit-animation-duration:1ms\",\"animation-duration:1ms\",\"-webkit-animation-iteration-count:1\",\"animation-iteration-count:1\",\"transition-delay:0s\",\"transition-duration:0s\"]],[false,\"}\"],[true,\"@-webkit-keyframes fa-beat{\"],[true,\"0%,90%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}\"],[true,\"}@keyframes fa-beat{\"],[true,\"0%,90%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"45%{-webkit-transform:scale(var(--fa-beat-scale,1.25));transform:scale(var(--fa-beat-scale,1.25))}\"],[true,\"}@-webkit-keyframes fa-bounce{\"],[true,\"0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}\"],[true,\"30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}\"],[true,\"50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}\"],[true,\"57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}\"],[true,\"64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"}@keyframes fa-bounce{\"],[true,\"0%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"10%{-webkit-transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0);transform:scale(var(--fa-bounce-start-scale-x,1.1),var(--fa-bounce-start-scale-y,.9)) translateY(0)}\"],[true,\"30%{-webkit-transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em));transform:scale(var(--fa-bounce-jump-scale-x,.9),var(--fa-bounce-jump-scale-y,1.1)) translateY(var(--fa-bounce-height,-.5em))}\"],[true,\"50%{-webkit-transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0);transform:scale(var(--fa-bounce-land-scale-x,1.05),var(--fa-bounce-land-scale-y,.95)) translateY(0)}\"],[true,\"57%{-webkit-transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em));transform:scale(1) translateY(var(--fa-bounce-rebound,-.125em))}\"],[true,\"64%{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"to{-webkit-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}\"],[true,\"}@-webkit-keyframes fa-fade{\"],[true,\"50%{opacity:var(--fa-fade-opacity,.4)}\"],[true,\"}@keyframes fa-fade{\"],[true,\"50%{opacity:var(--fa-fade-opacity,.4)}\"],[true,\"}@-webkit-keyframes fa-beat-fade{\"],[true,\"0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}\"],[true,\"}@keyframes fa-beat-fade{\"],[true,\"0%,to{opacity:var(--fa-beat-fade-opacity,.4);-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"50%{opacity:1;-webkit-transform:scale(var(--fa-beat-fade-scale,1.125));transform:scale(var(--fa-beat-fade-scale,1.125))}\"],[true,\"}@-webkit-keyframes fa-flip{\"],[true,\"50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}\"],[true,\"}@keyframes fa-flip{\"],[true,\"50%{-webkit-transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg));transform:rotate3d(var(--fa-flip-x,0),var(--fa-flip-y,1),var(--fa-flip-z,0),var(--fa-flip-angle,-180deg))}\"],[true,\"}@-webkit-keyframes fa-shake{\"],[true,\"0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}\"],[true,\"4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}\"],[true,\"12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}\"],[true,\"16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}\"],[true,\"20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}\"],[true,\"32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}\"],[true,\"36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}\"],[true,\"40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}@keyframes fa-shake{\"],[true,\"0%{-webkit-transform:rotate(-15deg);transform:rotate(-15deg)}\"],[true,\"4%{-webkit-transform:rotate(15deg);transform:rotate(15deg)}\"],[true,\"8%,24%{-webkit-transform:rotate(-18deg);transform:rotate(-18deg)}\"],[true,\"12%,28%{-webkit-transform:rotate(18deg);transform:rotate(18deg)}\"],[true,\"16%{-webkit-transform:rotate(-22deg);transform:rotate(-22deg)}\"],[true,\"20%{-webkit-transform:rotate(22deg);transform:rotate(22deg)}\"],[true,\"32%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}\"],[true,\"36%{-webkit-transform:rotate(12deg);transform:rotate(12deg)}\"],[true,\"40%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"}@-webkit-keyframes fa-spin{\"],[true,\"0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}\"],[true,\"}@keyframes fa-spin{\"],[true,\"0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}\"],[true,\"to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}\"],[true,\"}\"],[false,{\".fa-rotate-90\":false},[\"-webkit-transform:rotate(90deg)\",\"transform:rotate(90deg)\"]],[false,{\".fa-rotate-180\":false},[\"-webkit-transform:rotate(180deg)\",\"transform:rotate(180deg)\"]],[false,{\".fa-rotate-270\":false},[\"-webkit-transform:rotate(270deg)\",\"transform:rotate(270deg)\"]],[false,{\".fa-flip-horizontal\":false},[\"-webkit-transform:scaleX(-1)\",\"transform:scaleX(-1)\"]],[false,{\".fa-flip-vertical\":false},[\"-webkit-transform:scaleY(-1)\",\"transform:scaleY(-1)\"]],[false,{\".fa-flip-both\":false,\".fa-flip-horizontal.fa-flip-vertical\":false},[\"-webkit-transform:scale(-1)\",\"transform:scale(-1)\"]],[false,{\".fa-rotate-by\":false},[\"-webkit-transform:rotate(var(--fa-rotate-angle,none))\",\"transform:rotate(var(--fa-rotate-angle,none))\"]],[false,{\".fa-stack\":false},[\"display:inline-block\",\"height:2em\",\"line-height:2em\",\"position:relative\",\"vertical-align:middle\",\"width:2.5em\"]],[false,{\".fa-stack-1x\":false,\".fa-stack-2x\":false},[\"left:0\",\"position:absolute\",\"text-align:center\",\"width:100%\",\"z-index:var(--fa-stack-z-index,auto)\"]],[false,{\".fa-stack-1x\":false},[\"line-height:inherit\"]],[false,{\".fa-stack-2x\":false},[\"font-size:2em\"]],[false,{\".fa-inverse\":false},[\"color:var(--fa-inverse,#fff)\"]],[false,{\".fa-0:before\":false},[\"content:\\\"0\\\"\"]],[false,{\".fa-1:before\":false},[\"content:\\\"1\\\"\"]],[false,{\".fa-2:before\":false},[\"content:\\\"2\\\"\"]],[false,{\".fa-3:before\":false},[\"content:\\\"3\\\"\"]],[false,{\".fa-4:before\":false},[\"content:\\\"4\\\"\"]],[false,{\".fa-5:before\":false},[\"content:\\\"5\\\"\"]],[false,{\".fa-6:before\":false},[\"content:\\\"6\\\"\"]],[false,{\".fa-7:before\":false},[\"content:\\\"7\\\"\"]],[false,{\".fa-8:before\":false},[\"content:\\\"8\\\"\"]],[false,{\".fa-9:before\":false},[\"content:\\\"9\\\"\"]],[false,{\".fa-a:before\":false},[\"content:\\\"A\\\"\"]],[false,{\".fa-address-book:before\":false,\".fa-contact-book:before\":false},[\"content:\\\"\\uf2b9\\\"\"]],[false,{\".fa-address-card:before\":false,\".fa-contact-card:before\":false,\".fa-vcard:before\":false},[\"content:\\\"\\uf2bb\\\"\"]],[false,{\".fa-align-center:before\":false},[\"content:\\\"\\uf037\\\"\"]],[false,{\".fa-align-justify:before\":false},[\"content:\\\"\\uf039\\\"\"]],[false,{\".fa-align-left:before\":false},[\"content:\\\"\\uf036\\\"\"]],[false,{\".fa-align-right:before\":false},[\"content:\\\"\\uf038\\\"\"]],[false,{\".fa-anchor:before\":false},[\"content:\\\"\\uf13d\\\"\"]],[false,{\".fa-anchor-circle-check:before\":false},[\"content:\\\"\\ue4aa\\\"\"]],[false,{\".fa-anchor-circle-exclamation:before\":false},[\"content:\\\"\\ue4ab\\\"\"]],[false,{\".fa-anchor-circle-xmark:before\":false},[\"content:\\\"\\ue4ac\\\"\"]],[false,{\".fa-anchor-lock:before\":false},[\"content:\\\"\\ue4ad\\\"\"]],[false,{\".fa-angle-down:before\":false},[\"content:\\\"\\uf107\\\"\"]],[false,{\".fa-angle-left:before\":false},[\"content:\\\"\\uf104\\\"\"]],[false,{\".fa-angle-right:before\":false},[\"content:\\\"\\uf105\\\"\"]],[false,{\".fa-angle-up:before\":false},[\"content:\\\"\\uf106\\\"\"]],[false,{\".fa-angle-double-down:before\":false,\".fa-angles-down:before\":false},[\"content:\\\"\\uf103\\\"\"]],[false,{\".fa-angle-double-left:before\":false,\".fa-angles-left:before\":false},[\"content:\\\"\\uf100\\\"\"]],[false,{\".fa-angle-double-right:before\":false,\".fa-angles-right:before\":false},[\"content:\\\"\\uf101\\\"\"]],[false,{\".fa-angle-double-up:before\":false,\".fa-angles-up:before\":false},[\"content:\\\"\\uf102\\\"\"]],[false,{\".fa-ankh:before\":false},[\"content:\\\"\\uf644\\\"\"]],[false,{\".fa-apple-alt:before\":false,\".fa-apple-whole:before\":false},[\"content:\\\"\\uf5d1\\\"\"]],[false,{\".fa-archway:before\":false},[\"content:\\\"\\uf557\\\"\"]],[false,{\".fa-arrow-down:before\":false},[\"content:\\\"\\uf063\\\"\"]],[false,{\".fa-arrow-down-1-9:before\":false,\".fa-sort-numeric-asc:before\":false,\".fa-sort-numeric-down:before\":false},[\"content:\\\"\\uf162\\\"\"]],[false,{\".fa-arrow-down-9-1:before\":false,\".fa-sort-numeric-desc:before\":false,\".fa-sort-numeric-down-alt:before\":false},[\"content:\\\"\\uf886\\\"\"]],[false,{\".fa-arrow-down-a-z:before\":false,\".fa-sort-alpha-asc:before\":false,\".fa-sort-alpha-down:before\":false},[\"content:\\\"\\uf15d\\\"\"]],[false,{\".fa-arrow-down-long:before\":false,\".fa-long-arrow-down:before\":false},[\"content:\\\"\\uf175\\\"\"]],[false,{\".fa-arrow-down-short-wide:before\":false,\".fa-sort-amount-desc:before\":false,\".fa-sort-amount-down-alt:before\":false},[\"content:\\\"\\uf884\\\"\"]],[false,{\".fa-arrow-down-up-across-line:before\":false},[\"content:\\\"\\ue4af\\\"\"]],[false,{\".fa-arrow-down-up-lock:before\":false},[\"content:\\\"\\ue4b0\\\"\"]],[false,{\".fa-arrow-down-wide-short:before\":false,\".fa-sort-amount-asc:before\":false,\".fa-sort-amount-down:before\":false},[\"content:\\\"\\uf160\\\"\"]],[false,{\".fa-arrow-down-z-a:before\":false,\".fa-sort-alpha-desc:before\":false,\".fa-sort-alpha-down-alt:before\":false},[\"content:\\\"\\uf881\\\"\"]],[false,{\".fa-arrow-left:before\":false},[\"content:\\\"\\uf060\\\"\"]],[false,{\".fa-arrow-left-long:before\":false,\".fa-long-arrow-left:before\":false},[\"content:\\\"\\uf177\\\"\"]],[false,{\".fa-arrow-pointer:before\":false,\".fa-mouse-pointer:before\":false},[\"content:\\\"\\uf245\\\"\"]],[false,{\".fa-arrow-right:before\":false},[\"content:\\\"\\uf061\\\"\"]],[false,{\".fa-arrow-right-arrow-left:before\":false,\".fa-exchange:before\":false},[\"content:\\\"\\uf0ec\\\"\"]],[false,{\".fa-arrow-right-from-bracket:before\":false,\".fa-sign-out:before\":false},[\"content:\\\"\\uf08b\\\"\"]],[false,{\".fa-arrow-right-long:before\":false,\".fa-long-arrow-right:before\":false},[\"content:\\\"\\uf178\\\"\"]],[false,{\".fa-arrow-right-to-bracket:before\":false,\".fa-sign-in:before\":false},[\"content:\\\"\\uf090\\\"\"]],[false,{\".fa-arrow-right-to-city:before\":false},[\"content:\\\"\\ue4b3\\\"\"]],[false,{\".fa-arrow-left-rotate:before\":false,\".fa-arrow-rotate-back:before\":false,\".fa-arrow-rotate-backward:before\":false,\".fa-arrow-rotate-left:before\":false,\".fa-undo:before\":false},[\"content:\\\"\\uf0e2\\\"\"]],[false,{\".fa-arrow-right-rotate:before\":false,\".fa-arrow-rotate-forward:before\":false,\".fa-arrow-rotate-right:before\":false,\".fa-redo:before\":false},[\"content:\\\"\\uf01e\\\"\"]],[false,{\".fa-arrow-trend-down:before\":false},[\"content:\\\"\\ue097\\\"\"]],[false,{\".fa-arrow-trend-up:before\":false},[\"content:\\\"\\ue098\\\"\"]],[false,{\".fa-arrow-turn-down:before\":false,\".fa-level-down:before\":false},[\"content:\\\"\\uf149\\\"\"]],[false,{\".fa-arrow-turn-up:before\":false,\".fa-level-up:before\":false},[\"content:\\\"\\uf148\\\"\"]],[false,{\".fa-arrow-up:before\":false},[\"content:\\\"\\uf062\\\"\"]],[false,{\".fa-arrow-up-1-9:before\":false,\".fa-sort-numeric-up:before\":false},[\"content:\\\"\\uf163\\\"\"]],[false,{\".fa-arrow-up-9-1:before\":false,\".fa-sort-numeric-up-alt:before\":false},[\"content:\\\"\\uf887\\\"\"]],[false,{\".fa-arrow-up-a-z:before\":false,\".fa-sort-alpha-up:before\":false},[\"content:\\\"\\uf15e\\\"\"]],[false,{\".fa-arrow-up-from-bracket:before\":false},[\"content:\\\"\\ue09a\\\"\"]],[false,{\".fa-arrow-up-from-ground-water:before\":false},[\"content:\\\"\\ue4b5\\\"\"]],[false,{\".fa-arrow-up-from-water-pump:before\":false},[\"content:\\\"\\ue4b6\\\"\"]],[false,{\".fa-arrow-up-long:before\":false,\".fa-long-arrow-up:before\":false},[\"content:\\\"\\uf176\\\"\"]],[false,{\".fa-arrow-up-right-dots:before\":false},[\"content:\\\"\\ue4b7\\\"\"]],[false,{\".fa-arrow-up-right-from-square:before\":false,\".fa-external-link:before\":false},[\"content:\\\"\\uf08e\\\"\"]],[false,{\".fa-arrow-up-short-wide:before\":false,\".fa-sort-amount-up-alt:before\":false},[\"content:\\\"\\uf885\\\"\"]],[false,{\".fa-arrow-up-wide-short:before\":false,\".fa-sort-amount-up:before\":false},[\"content:\\\"\\uf161\\\"\"]],[false,{\".fa-arrow-up-z-a:before\":false,\".fa-sort-alpha-up-alt:before\":false},[\"content:\\\"\\uf882\\\"\"]],[false,{\".fa-arrows-down-to-line:before\":false},[\"content:\\\"\\ue4b8\\\"\"]],[false,{\".fa-arrows-down-to-people:before\":false},[\"content:\\\"\\ue4b9\\\"\"]],[false,{\".fa-arrows-h:before\":false,\".fa-arrows-left-right:before\":false},[\"content:\\\"\\uf07e\\\"\"]],[false,{\".fa-arrows-left-right-to-line:before\":false},[\"content:\\\"\\ue4ba\\\"\"]],[false,{\".fa-arrows-rotate:before\":false,\".fa-refresh:before\":false,\".fa-sync:before\":false},[\"content:\\\"\\uf021\\\"\"]],[false,{\".fa-arrows-spin:before\":false},[\"content:\\\"\\ue4bb\\\"\"]],[false,{\".fa-arrows-split-up-and-left:before\":false},[\"content:\\\"\\ue4bc\\\"\"]],[false,{\".fa-arrows-to-circle:before\":false},[\"content:\\\"\\ue4bd\\\"\"]],[false,{\".fa-arrows-to-dot:before\":false},[\"content:\\\"\\ue4be\\\"\"]],[false,{\".fa-arrows-to-eye:before\":false},[\"content:\\\"\\ue4bf\\\"\"]],[false,{\".fa-arrows-turn-right:before\":false},[\"content:\\\"\\ue4c0\\\"\"]],[false,{\".fa-arrows-turn-to-dots:before\":false},[\"content:\\\"\\ue4c1\\\"\"]],[false,{\".fa-arrows-up-down:before\":false,\".fa-arrows-v:before\":false},[\"content:\\\"\\uf07d\\\"\"]],[false,{\".fa-arrows-up-down-left-right:before\":false,\".fa-arrows:before\":false},[\"content:\\\"\\uf047\\\"\"]],[false,{\".fa-arrows-up-to-line:before\":false},[\"content:\\\"\\ue4c2\\\"\"]],[false,{\".fa-asterisk:before\":false},[\"content:\\\"*\\\"\"]],[false,{\".fa-at:before\":false},[\"content:\\\"@\\\"\"]],[false,{\".fa-atom:before\":false},[\"content:\\\"\\uf5d2\\\"\"]],[false,{\".fa-audio-description:before\":false},[\"content:\\\"\\uf29e\\\"\"]],[false,{\".fa-austral-sign:before\":false},[\"content:\\\"\\ue0a9\\\"\"]],[false,{\".fa-award:before\":false},[\"content:\\\"\\uf559\\\"\"]],[false,{\".fa-b:before\":false},[\"content:\\\"B\\\"\"]],[false,{\".fa-baby:before\":false},[\"content:\\\"\\uf77c\\\"\"]],[false,{\".fa-baby-carriage:before\":false,\".fa-carriage-baby:before\":false},[\"content:\\\"\\uf77d\\\"\"]],[false,{\".fa-backward:before\":false},[\"content:\\\"\\uf04a\\\"\"]],[false,{\".fa-backward-fast:before\":false,\".fa-fast-backward:before\":false},[\"content:\\\"\\uf049\\\"\"]],[false,{\".fa-backward-step:before\":false,\".fa-step-backward:before\":false},[\"content:\\\"\\uf048\\\"\"]],[false,{\".fa-bacon:before\":false},[\"content:\\\"\\uf7e5\\\"\"]],[false,{\".fa-bacteria:before\":false},[\"content:\\\"\\ue059\\\"\"]],[false,{\".fa-bacterium:before\":false},[\"content:\\\"\\ue05a\\\"\"]],[false,{\".fa-bag-shopping:before\":false,\".fa-shopping-bag:before\":false},[\"content:\\\"\\uf290\\\"\"]],[false,{\".fa-bahai:before\":false},[\"content:\\\"\\uf666\\\"\"]],[false,{\".fa-baht-sign:before\":false},[\"content:\\\"\\ue0ac\\\"\"]],[false,{\".fa-ban:before\":false,\".fa-cancel:before\":false},[\"content:\\\"\\uf05e\\\"\"]],[false,{\".fa-ban-smoking:before\":false,\".fa-smoking-ban:before\":false},[\"content:\\\"\\uf54d\\\"\"]],[false,{\".fa-band-aid:before\":false,\".fa-bandage:before\":false},[\"content:\\\"\\uf462\\\"\"]],[false,{\".fa-barcode:before\":false},[\"content:\\\"\\uf02a\\\"\"]],[false,{\".fa-bars:before\":false,\".fa-navicon:before\":false},[\"content:\\\"\\uf0c9\\\"\"]],[false,{\".fa-bars-progress:before\":false,\".fa-tasks-alt:before\":false},[\"content:\\\"\\uf828\\\"\"]],[false,{\".fa-bars-staggered:before\":false,\".fa-reorder:before\":false,\".fa-stream:before\":false},[\"content:\\\"\\uf550\\\"\"]],[false,{\".fa-baseball-ball:before\":false,\".fa-baseball:before\":false},[\"content:\\\"\\uf433\\\"\"]],[false,{\".fa-baseball-bat-ball:before\":false},[\"content:\\\"\\uf432\\\"\"]],[false,{\".fa-basket-shopping:before\":false,\".fa-shopping-basket:before\":false},[\"content:\\\"\\uf291\\\"\"]],[false,{\".fa-basketball-ball:before\":false,\".fa-basketball:before\":false},[\"content:\\\"\\uf434\\\"\"]],[false,{\".fa-bath:before\":false,\".fa-bathtub:before\":false},[\"content:\\\"\\uf2cd\\\"\"]],[false,{\".fa-battery-0:before\":false,\".fa-battery-empty:before\":false},[\"content:\\\"\\uf244\\\"\"]],[false,{\".fa-battery-5:before\":false,\".fa-battery-full:before\":false,\".fa-battery:before\":false},[\"content:\\\"\\uf240\\\"\"]],[false,{\".fa-battery-3:before\":false,\".fa-battery-half:before\":false},[\"content:\\\"\\uf242\\\"\"]],[false,{\".fa-battery-2:before\":false,\".fa-battery-quarter:before\":false},[\"content:\\\"\\uf243\\\"\"]],[false,{\".fa-battery-4:before\":false,\".fa-battery-three-quarters:before\":false},[\"content:\\\"\\uf241\\\"\"]],[false,{\".fa-bed:before\":false},[\"content:\\\"\\uf236\\\"\"]],[false,{\".fa-bed-pulse:before\":false,\".fa-procedures:before\":false},[\"content:\\\"\\uf487\\\"\"]],[false,{\".fa-beer-mug-empty:before\":false,\".fa-beer:before\":false},[\"content:\\\"\\uf0fc\\\"\"]],[false,{\".fa-bell:before\":false},[\"content:\\\"\\uf0f3\\\"\"]],[false,{\".fa-bell-concierge:before\":false,\".fa-concierge-bell:before\":false},[\"content:\\\"\\uf562\\\"\"]],[false,{\".fa-bell-slash:before\":false},[\"content:\\\"\\uf1f6\\\"\"]],[false,{\".fa-bezier-curve:before\":false},[\"content:\\\"\\uf55b\\\"\"]],[false,{\".fa-bicycle:before\":false},[\"content:\\\"\\uf206\\\"\"]],[false,{\".fa-binoculars:before\":false},[\"content:\\\"\\uf1e5\\\"\"]],[false,{\".fa-biohazard:before\":false},[\"content:\\\"\\uf780\\\"\"]],[false,{\".fa-bitcoin-sign:before\":false},[\"content:\\\"\\ue0b4\\\"\"]],[false,{\".fa-blender:before\":false},[\"content:\\\"\\uf517\\\"\"]],[false,{\".fa-blender-phone:before\":false},[\"content:\\\"\\uf6b6\\\"\"]],[false,{\".fa-blog:before\":false},[\"content:\\\"\\uf781\\\"\"]],[false,{\".fa-bold:before\":false},[\"content:\\\"\\uf032\\\"\"]],[false,{\".fa-bolt:before\":false,\".fa-zap:before\":false},[\"content:\\\"\\uf0e7\\\"\"]],[false,{\".fa-bolt-lightning:before\":false},[\"content:\\\"\\ue0b7\\\"\"]],[false,{\".fa-bomb:before\":false},[\"content:\\\"\\uf1e2\\\"\"]],[false,{\".fa-bone:before\":false},[\"content:\\\"\\uf5d7\\\"\"]],[false,{\".fa-bong:before\":false},[\"content:\\\"\\uf55c\\\"\"]],[false,{\".fa-book:before\":false},[\"content:\\\"\\uf02d\\\"\"]],[false,{\".fa-atlas:before\":false,\".fa-book-atlas:before\":false},[\"content:\\\"\\uf558\\\"\"]],[false,{\".fa-bible:before\":false,\".fa-book-bible:before\":false},[\"content:\\\"\\uf647\\\"\"]],[false,{\".fa-book-bookmark:before\":false},[\"content:\\\"\\ue0bb\\\"\"]],[false,{\".fa-book-journal-whills:before\":false,\".fa-journal-whills:before\":false},[\"content:\\\"\\uf66a\\\"\"]],[false,{\".fa-book-medical:before\":false},[\"content:\\\"\\uf7e6\\\"\"]],[false,{\".fa-book-open:before\":false},[\"content:\\\"\\uf518\\\"\"]],[false,{\".fa-book-open-reader:before\":false,\".fa-book-reader:before\":false},[\"content:\\\"\\uf5da\\\"\"]],[false,{\".fa-book-quran:before\":false,\".fa-quran:before\":false},[\"content:\\\"\\uf687\\\"\"]],[false,{\".fa-book-dead:before\":false,\".fa-book-skull:before\":false},[\"content:\\\"\\uf6b7\\\"\"]],[false,{\".fa-bookmark:before\":false},[\"content:\\\"\\uf02e\\\"\"]],[false,{\".fa-border-all:before\":false},[\"content:\\\"\\uf84c\\\"\"]],[false,{\".fa-border-none:before\":false},[\"content:\\\"\\uf850\\\"\"]],[false,{\".fa-border-style:before\":false,\".fa-border-top-left:before\":false},[\"content:\\\"\\uf853\\\"\"]],[false,{\".fa-bore-hole:before\":false},[\"content:\\\"\\ue4c3\\\"\"]],[false,{\".fa-bottle-droplet:before\":false},[\"content:\\\"\\ue4c4\\\"\"]],[false,{\".fa-bottle-water:before\":false},[\"content:\\\"\\ue4c5\\\"\"]],[false,{\".fa-bowl-food:before\":false},[\"content:\\\"\\ue4c6\\\"\"]],[false,{\".fa-bowl-rice:before\":false},[\"content:\\\"\\ue2eb\\\"\"]],[false,{\".fa-bowling-ball:before\":false},[\"content:\\\"\\uf436\\\"\"]],[false,{\".fa-box:before\":false},[\"content:\\\"\\uf466\\\"\"]],[false,{\".fa-archive:before\":false,\".fa-box-archive:before\":false},[\"content:\\\"\\uf187\\\"\"]],[false,{\".fa-box-open:before\":false},[\"content:\\\"\\uf49e\\\"\"]],[false,{\".fa-box-tissue:before\":false},[\"content:\\\"\\ue05b\\\"\"]],[false,{\".fa-boxes-packing:before\":false},[\"content:\\\"\\ue4c7\\\"\"]],[false,{\".fa-boxes-alt:before\":false,\".fa-boxes-stacked:before\":false,\".fa-boxes:before\":false},[\"content:\\\"\\uf468\\\"\"]],[false,{\".fa-braille:before\":false},[\"content:\\\"\\uf2a1\\\"\"]],[false,{\".fa-brain:before\":false},[\"content:\\\"\\uf5dc\\\"\"]],[false,{\".fa-brazilian-real-sign:before\":false},[\"content:\\\"\\ue46c\\\"\"]],[false,{\".fa-bread-slice:before\":false},[\"content:\\\"\\uf7ec\\\"\"]],[false,{\".fa-bridge:before\":false},[\"content:\\\"\\ue4c8\\\"\"]],[false,{\".fa-bridge-circle-check:before\":false},[\"content:\\\"\\ue4c9\\\"\"]],[false,{\".fa-bridge-circle-exclamation:before\":false},[\"content:\\\"\\ue4ca\\\"\"]],[false,{\".fa-bridge-circle-xmark:before\":false},[\"content:\\\"\\ue4cb\\\"\"]],[false,{\".fa-bridge-lock:before\":false},[\"content:\\\"\\ue4cc\\\"\"]],[false,{\".fa-bridge-water:before\":false},[\"content:\\\"\\ue4ce\\\"\"]],[false,{\".fa-briefcase:before\":false},[\"content:\\\"\\uf0b1\\\"\"]],[false,{\".fa-briefcase-medical:before\":false},[\"content:\\\"\\uf469\\\"\"]],[false,{\".fa-broom:before\":false},[\"content:\\\"\\uf51a\\\"\"]],[false,{\".fa-broom-ball:before\":false,\".fa-quidditch-broom-ball:before\":false,\".fa-quidditch:before\":false},[\"content:\\\"\\uf458\\\"\"]],[false,{\".fa-brush:before\":false},[\"content:\\\"\\uf55d\\\"\"]],[false,{\".fa-bucket:before\":false},[\"content:\\\"\\ue4cf\\\"\"]],[false,{\".fa-bug:before\":false},[\"content:\\\"\\uf188\\\"\"]],[false,{\".fa-bug-slash:before\":false},[\"content:\\\"\\ue490\\\"\"]],[false,{\".fa-bugs:before\":false},[\"content:\\\"\\ue4d0\\\"\"]],[false,{\".fa-building:before\":false},[\"content:\\\"\\uf1ad\\\"\"]],[false,{\".fa-building-circle-arrow-right:before\":false},[\"content:\\\"\\ue4d1\\\"\"]],[false,{\".fa-building-circle-check:before\":false},[\"content:\\\"\\ue4d2\\\"\"]],[false,{\".fa-building-circle-exclamation:before\":false},[\"content:\\\"\\ue4d3\\\"\"]],[false,{\".fa-building-circle-xmark:before\":false},[\"content:\\\"\\ue4d4\\\"\"]],[false,{\".fa-bank:before\":false,\".fa-building-columns:before\":false,\".fa-institution:before\":false,\".fa-museum:before\":false,\".fa-university:before\":false},[\"content:\\\"\\uf19c\\\"\"]],[false,{\".fa-building-flag:before\":false},[\"content:\\\"\\ue4d5\\\"\"]],[false,{\".fa-building-lock:before\":false},[\"content:\\\"\\ue4d6\\\"\"]],[false,{\".fa-building-ngo:before\":false},[\"content:\\\"\\ue4d7\\\"\"]],[false,{\".fa-building-shield:before\":false},[\"content:\\\"\\ue4d8\\\"\"]],[false,{\".fa-building-un:before\":false},[\"content:\\\"\\ue4d9\\\"\"]],[false,{\".fa-building-user:before\":false},[\"content:\\\"\\ue4da\\\"\"]],[false,{\".fa-building-wheat:before\":false},[\"content:\\\"\\ue4db\\\"\"]],[false,{\".fa-bullhorn:before\":false},[\"content:\\\"\\uf0a1\\\"\"]],[false,{\".fa-bullseye:before\":false},[\"content:\\\"\\uf140\\\"\"]],[false,{\".fa-burger:before\":false,\".fa-hamburger:before\":false},[\"content:\\\"\\uf805\\\"\"]],[false,{\".fa-burst:before\":false},[\"content:\\\"\\ue4dc\\\"\"]],[false,{\".fa-bus:before\":false},[\"content:\\\"\\uf207\\\"\"]],[false,{\".fa-bus-alt:before\":false,\".fa-bus-simple:before\":false},[\"content:\\\"\\uf55e\\\"\"]],[false,{\".fa-briefcase-clock:before\":false,\".fa-business-time:before\":false},[\"content:\\\"\\uf64a\\\"\"]],[false,{\".fa-c:before\":false},[\"content:\\\"C\\\"\"]],[false,{\".fa-birthday-cake:before\":false,\".fa-cake-candles:before\":false,\".fa-cake:before\":false},[\"content:\\\"\\uf1fd\\\"\"]],[false,{\".fa-calculator:before\":false},[\"content:\\\"\\uf1ec\\\"\"]],[false,{\".fa-calendar:before\":false},[\"content:\\\"\\uf133\\\"\"]],[false,{\".fa-calendar-check:before\":false},[\"content:\\\"\\uf274\\\"\"]],[false,{\".fa-calendar-day:before\":false},[\"content:\\\"\\uf783\\\"\"]],[false,{\".fa-calendar-alt:before\":false,\".fa-calendar-days:before\":false},[\"content:\\\"\\uf073\\\"\"]],[false,{\".fa-calendar-minus:before\":false},[\"content:\\\"\\uf272\\\"\"]],[false,{\".fa-calendar-plus:before\":false},[\"content:\\\"\\uf271\\\"\"]],[false,{\".fa-calendar-week:before\":false},[\"content:\\\"\\uf784\\\"\"]],[false,{\".fa-calendar-times:before\":false,\".fa-calendar-xmark:before\":false},[\"content:\\\"\\uf273\\\"\"]],[false,{\".fa-camera-alt:before\":false,\".fa-camera:before\":false},[\"content:\\\"\\uf030\\\"\"]],[false,{\".fa-camera-retro:before\":false},[\"content:\\\"\\uf083\\\"\"]],[false,{\".fa-camera-rotate:before\":false},[\"content:\\\"\\ue0d8\\\"\"]],[false,{\".fa-campground:before\":false},[\"content:\\\"\\uf6bb\\\"\"]],[false,{\".fa-candy-cane:before\":false},[\"content:\\\"\\uf786\\\"\"]],[false,{\".fa-cannabis:before\":false},[\"content:\\\"\\uf55f\\\"\"]],[false,{\".fa-capsules:before\":false},[\"content:\\\"\\uf46b\\\"\"]],[false,{\".fa-automobile:before\":false,\".fa-car:before\":false},[\"content:\\\"\\uf1b9\\\"\"]],[false,{\".fa-battery-car:before\":false,\".fa-car-battery:before\":false},[\"content:\\\"\\uf5df\\\"\"]],[false,{\".fa-car-burst:before\":false,\".fa-car-crash:before\":false},[\"content:\\\"\\uf5e1\\\"\"]],[false,{\".fa-car-on:before\":false},[\"content:\\\"\\ue4dd\\\"\"]],[false,{\".fa-car-alt:before\":false,\".fa-car-rear:before\":false},[\"content:\\\"\\uf5de\\\"\"]],[false,{\".fa-car-side:before\":false},[\"content:\\\"\\uf5e4\\\"\"]],[false,{\".fa-car-tunnel:before\":false},[\"content:\\\"\\ue4de\\\"\"]],[false,{\".fa-caravan:before\":false},[\"content:\\\"\\uf8ff\\\"\"]],[false,{\".fa-caret-down:before\":false},[\"content:\\\"\\uf0d7\\\"\"]],[false,{\".fa-caret-left:before\":false},[\"content:\\\"\\uf0d9\\\"\"]],[false,{\".fa-caret-right:before\":false},[\"content:\\\"\\uf0da\\\"\"]],[false,{\".fa-caret-up:before\":false},[\"content:\\\"\\uf0d8\\\"\"]],[false,{\".fa-carrot:before\":false},[\"content:\\\"\\uf787\\\"\"]],[false,{\".fa-cart-arrow-down:before\":false},[\"content:\\\"\\uf218\\\"\"]],[false,{\".fa-cart-flatbed:before\":false,\".fa-dolly-flatbed:before\":false},[\"content:\\\"\\uf474\\\"\"]],[false,{\".fa-cart-flatbed-suitcase:before\":false,\".fa-luggage-cart:before\":false},[\"content:\\\"\\uf59d\\\"\"]],[false,{\".fa-cart-plus:before\":false},[\"content:\\\"\\uf217\\\"\"]],[false,{\".fa-cart-shopping:before\":false,\".fa-shopping-cart:before\":false},[\"content:\\\"\\uf07a\\\"\"]],[false,{\".fa-cash-register:before\":false},[\"content:\\\"\\uf788\\\"\"]],[false,{\".fa-cat:before\":false},[\"content:\\\"\\uf6be\\\"\"]],[false,{\".fa-cedi-sign:before\":false},[\"content:\\\"\\ue0df\\\"\"]],[false,{\".fa-cent-sign:before\":false},[\"content:\\\"\\ue3f5\\\"\"]],[false,{\".fa-certificate:before\":false},[\"content:\\\"\\uf0a3\\\"\"]],[false,{\".fa-chair:before\":false},[\"content:\\\"\\uf6c0\\\"\"]],[false,{\".fa-blackboard:before\":false,\".fa-chalkboard:before\":false},[\"content:\\\"\\uf51b\\\"\"]],[false,{\".fa-chalkboard-teacher:before\":false,\".fa-chalkboard-user:before\":false},[\"content:\\\"\\uf51c\\\"\"]],[false,{\".fa-champagne-glasses:before\":false,\".fa-glass-cheers:before\":false},[\"content:\\\"\\uf79f\\\"\"]],[false,{\".fa-charging-station:before\":false},[\"content:\\\"\\uf5e7\\\"\"]],[false,{\".fa-area-chart:before\":false,\".fa-chart-area:before\":false},[\"content:\\\"\\uf1fe\\\"\"]],[false,{\".fa-bar-chart:before\":false,\".fa-chart-bar:before\":false},[\"content:\\\"\\uf080\\\"\"]],[false,{\".fa-chart-column:before\":false},[\"content:\\\"\\ue0e3\\\"\"]],[false,{\".fa-chart-gantt:before\":false},[\"content:\\\"\\ue0e4\\\"\"]],[false,{\".fa-chart-line:before\":false,\".fa-line-chart:before\":false},[\"content:\\\"\\uf201\\\"\"]],[false,{\".fa-chart-pie:before\":false,\".fa-pie-chart:before\":false},[\"content:\\\"\\uf200\\\"\"]],[false,{\".fa-chart-simple:before\":false},[\"content:\\\"\\ue473\\\"\"]],[false,{\".fa-check:before\":false},[\"content:\\\"\\uf00c\\\"\"]],[false,{\".fa-check-double:before\":false},[\"content:\\\"\\uf560\\\"\"]],[false,{\".fa-check-to-slot:before\":false,\".fa-vote-yea:before\":false},[\"content:\\\"\\uf772\\\"\"]],[false,{\".fa-cheese:before\":false},[\"content:\\\"\\uf7ef\\\"\"]],[false,{\".fa-chess:before\":false},[\"content:\\\"\\uf439\\\"\"]],[false,{\".fa-chess-bishop:before\":false},[\"content:\\\"\\uf43a\\\"\"]],[false,{\".fa-chess-board:before\":false},[\"content:\\\"\\uf43c\\\"\"]],[false,{\".fa-chess-king:before\":false},[\"content:\\\"\\uf43f\\\"\"]],[false,{\".fa-chess-knight:before\":false},[\"content:\\\"\\uf441\\\"\"]],[false,{\".fa-chess-pawn:before\":false},[\"content:\\\"\\uf443\\\"\"]],[false,{\".fa-chess-queen:before\":false},[\"content:\\\"\\uf445\\\"\"]],[false,{\".fa-chess-rook:before\":false},[\"content:\\\"\\uf447\\\"\"]],[true,{\".fa-chevron-down:before\":true},[\"content:\\\"\\uf078\\\"\"]],[true,{\".fa-chevron-left:before\":true},[\"content:\\\"\\uf053\\\"\"]],[true,{\".fa-chevron-right:before\":true},[\"content:\\\"\\uf054\\\"\"]],[false,{\".fa-chevron-up:before\":false},[\"content:\\\"\\uf077\\\"\"]],[false,{\".fa-child:before\":false},[\"content:\\\"\\uf1ae\\\"\"]],[false,{\".fa-child-rifle:before\":false},[\"content:\\\"\\ue4e0\\\"\"]],[false,{\".fa-children:before\":false},[\"content:\\\"\\ue4e1\\\"\"]],[false,{\".fa-church:before\":false},[\"content:\\\"\\uf51d\\\"\"]],[false,{\".fa-circle:before\":false},[\"content:\\\"\\uf111\\\"\"]],[false,{\".fa-arrow-circle-down:before\":false,\".fa-circle-arrow-down:before\":false},[\"content:\\\"\\uf0ab\\\"\"]],[false,{\".fa-arrow-circle-left:before\":false,\".fa-circle-arrow-left:before\":false},[\"content:\\\"\\uf0a8\\\"\"]],[false,{\".fa-arrow-circle-right:before\":false,\".fa-circle-arrow-right:before\":false},[\"content:\\\"\\uf0a9\\\"\"]],[false,{\".fa-arrow-circle-up:before\":false,\".fa-circle-arrow-up:before\":false},[\"content:\\\"\\uf0aa\\\"\"]],[false,{\".fa-check-circle:before\":false,\".fa-circle-check:before\":false},[\"content:\\\"\\uf058\\\"\"]],[false,{\".fa-chevron-circle-down:before\":false,\".fa-circle-chevron-down:before\":false},[\"content:\\\"\\uf13a\\\"\"]],[false,{\".fa-chevron-circle-left:before\":false,\".fa-circle-chevron-left:before\":false},[\"content:\\\"\\uf137\\\"\"]],[false,{\".fa-chevron-circle-right:before\":false,\".fa-circle-chevron-right:before\":false},[\"content:\\\"\\uf138\\\"\"]],[false,{\".fa-chevron-circle-up:before\":false,\".fa-circle-chevron-up:before\":false},[\"content:\\\"\\uf139\\\"\"]],[false,{\".fa-circle-dollar-to-slot:before\":false,\".fa-donate:before\":false},[\"content:\\\"\\uf4b9\\\"\"]],[false,{\".fa-circle-dot:before\":false,\".fa-dot-circle:before\":false},[\"content:\\\"\\uf192\\\"\"]],[false,{\".fa-arrow-alt-circle-down:before\":false,\".fa-circle-down:before\":false},[\"content:\\\"\\uf358\\\"\"]],[false,{\".fa-circle-exclamation:before\":false,\".fa-exclamation-circle:before\":false},[\"content:\\\"\\uf06a\\\"\"]],[false,{\".fa-circle-h:before\":false,\".fa-hospital-symbol:before\":false},[\"content:\\\"\\uf47e\\\"\"]],[false,{\".fa-adjust:before\":false,\".fa-circle-half-stroke:before\":false},[\"content:\\\"\\uf042\\\"\"]],[false,{\".fa-circle-info:before\":false,\".fa-info-circle:before\":false},[\"content:\\\"\\uf05a\\\"\"]],[false,{\".fa-arrow-alt-circle-left:before\":false,\".fa-circle-left:before\":false},[\"content:\\\"\\uf359\\\"\"]],[false,{\".fa-circle-minus:before\":false,\".fa-minus-circle:before\":false},[\"content:\\\"\\uf056\\\"\"]],[false,{\".fa-circle-nodes:before\":false},[\"content:\\\"\\ue4e2\\\"\"]],[false,{\".fa-circle-notch:before\":false},[\"content:\\\"\\uf1ce\\\"\"]],[false,{\".fa-circle-pause:before\":false,\".fa-pause-circle:before\":false},[\"content:\\\"\\uf28b\\\"\"]],[false,{\".fa-circle-play:before\":false,\".fa-play-circle:before\":false},[\"content:\\\"\\uf144\\\"\"]],[false,{\".fa-circle-plus:before\":false,\".fa-plus-circle:before\":false},[\"content:\\\"\\uf055\\\"\"]],[false,{\".fa-circle-question:before\":false,\".fa-question-circle:before\":false},[\"content:\\\"\\uf059\\\"\"]],[false,{\".fa-circle-radiation:before\":false,\".fa-radiation-alt:before\":false},[\"content:\\\"\\uf7ba\\\"\"]],[false,{\".fa-arrow-alt-circle-right:before\":false,\".fa-circle-right:before\":false},[\"content:\\\"\\uf35a\\\"\"]],[false,{\".fa-circle-stop:before\":false,\".fa-stop-circle:before\":false},[\"content:\\\"\\uf28d\\\"\"]],[false,{\".fa-arrow-alt-circle-up:before\":false,\".fa-circle-up:before\":false},[\"content:\\\"\\uf35b\\\"\"]],[false,{\".fa-circle-user:before\":false,\".fa-user-circle:before\":false},[\"content:\\\"\\uf2bd\\\"\"]],[false,{\".fa-circle-xmark:before\":false,\".fa-times-circle:before\":false,\".fa-xmark-circle:before\":false},[\"content:\\\"\\uf057\\\"\"]],[false,{\".fa-city:before\":false},[\"content:\\\"\\uf64f\\\"\"]],[false,{\".fa-clapperboard:before\":false},[\"content:\\\"\\ue131\\\"\"]],[false,{\".fa-clipboard:before\":false},[\"content:\\\"\\uf328\\\"\"]],[false,{\".fa-clipboard-check:before\":false},[\"content:\\\"\\uf46c\\\"\"]],[false,{\".fa-clipboard-list:before\":false},[\"content:\\\"\\uf46d\\\"\"]],[false,{\".fa-clipboard-question:before\":false},[\"content:\\\"\\ue4e3\\\"\"]],[false,{\".fa-clipboard-user:before\":false},[\"content:\\\"\\uf7f3\\\"\"]],[false,{\".fa-clock-four:before\":false,\".fa-clock:before\":false},[\"content:\\\"\\uf017\\\"\"]],[false,{\".fa-clock-rotate-left:before\":false,\".fa-history:before\":false},[\"content:\\\"\\uf1da\\\"\"]],[false,{\".fa-clone:before\":false},[\"content:\\\"\\uf24d\\\"\"]],[false,{\".fa-closed-captioning:before\":false},[\"content:\\\"\\uf20a\\\"\"]],[false,{\".fa-cloud:before\":false},[\"content:\\\"\\uf0c2\\\"\"]],[false,{\".fa-cloud-arrow-down:before\":false,\".fa-cloud-download-alt:before\":false,\".fa-cloud-download:before\":false},[\"content:\\\"\\uf0ed\\\"\"]],[false,{\".fa-cloud-arrow-up:before\":false,\".fa-cloud-upload-alt:before\":false,\".fa-cloud-upload:before\":false},[\"content:\\\"\\uf0ee\\\"\"]],[false,{\".fa-cloud-bolt:before\":false,\".fa-thunderstorm:before\":false},[\"content:\\\"\\uf76c\\\"\"]],[false,{\".fa-cloud-meatball:before\":false},[\"content:\\\"\\uf73b\\\"\"]],[false,{\".fa-cloud-moon:before\":false},[\"content:\\\"\\uf6c3\\\"\"]],[false,{\".fa-cloud-moon-rain:before\":false},[\"content:\\\"\\uf73c\\\"\"]],[false,{\".fa-cloud-rain:before\":false},[\"content:\\\"\\uf73d\\\"\"]],[false,{\".fa-cloud-showers-heavy:before\":false},[\"content:\\\"\\uf740\\\"\"]],[false,{\".fa-cloud-showers-water:before\":false},[\"content:\\\"\\ue4e4\\\"\"]],[false,{\".fa-cloud-sun:before\":false},[\"content:\\\"\\uf6c4\\\"\"]],[false,{\".fa-cloud-sun-rain:before\":false},[\"content:\\\"\\uf743\\\"\"]],[false,{\".fa-clover:before\":false},[\"content:\\\"\\ue139\\\"\"]],[false,{\".fa-code:before\":false},[\"content:\\\"\\uf121\\\"\"]],[false,{\".fa-code-branch:before\":false},[\"content:\\\"\\uf126\\\"\"]],[false,{\".fa-code-commit:before\":false},[\"content:\\\"\\uf386\\\"\"]],[false,{\".fa-code-compare:before\":false},[\"content:\\\"\\ue13a\\\"\"]],[false,{\".fa-code-fork:before\":false},[\"content:\\\"\\ue13b\\\"\"]],[false,{\".fa-code-merge:before\":false},[\"content:\\\"\\uf387\\\"\"]],[false,{\".fa-code-pull-request:before\":false},[\"content:\\\"\\ue13c\\\"\"]],[false,{\".fa-coins:before\":false},[\"content:\\\"\\uf51e\\\"\"]],[false,{\".fa-colon-sign:before\":false},[\"content:\\\"\\ue140\\\"\"]],[false,{\".fa-comment:before\":false},[\"content:\\\"\\uf075\\\"\"]],[false,{\".fa-comment-dollar:before\":false},[\"content:\\\"\\uf651\\\"\"]],[false,{\".fa-comment-dots:before\":false,\".fa-commenting:before\":false},[\"content:\\\"\\uf4ad\\\"\"]],[false,{\".fa-comment-medical:before\":false},[\"content:\\\"\\uf7f5\\\"\"]],[false,{\".fa-comment-slash:before\":false},[\"content:\\\"\\uf4b3\\\"\"]],[false,{\".fa-comment-sms:before\":false,\".fa-sms:before\":false},[\"content:\\\"\\uf7cd\\\"\"]],[false,{\".fa-comments:before\":false},[\"content:\\\"\\uf086\\\"\"]],[false,{\".fa-comments-dollar:before\":false},[\"content:\\\"\\uf653\\\"\"]],[false,{\".fa-compact-disc:before\":false},[\"content:\\\"\\uf51f\\\"\"]],[false,{\".fa-compass:before\":false},[\"content:\\\"\\uf14e\\\"\"]],[false,{\".fa-compass-drafting:before\":false,\".fa-drafting-compass:before\":false},[\"content:\\\"\\uf568\\\"\"]],[false,{\".fa-compress:before\":false},[\"content:\\\"\\uf066\\\"\"]],[false,{\".fa-computer:before\":false},[\"content:\\\"\\ue4e5\\\"\"]],[false,{\".fa-computer-mouse:before\":false,\".fa-mouse:before\":false},[\"content:\\\"\\uf8cc\\\"\"]],[false,{\".fa-cookie:before\":false},[\"content:\\\"\\uf563\\\"\"]],[false,{\".fa-cookie-bite:before\":false},[\"content:\\\"\\uf564\\\"\"]],[false,{\".fa-copy:before\":false},[\"content:\\\"\\uf0c5\\\"\"]],[false,{\".fa-copyright:before\":false},[\"content:\\\"\\uf1f9\\\"\"]],[false,{\".fa-couch:before\":false},[\"content:\\\"\\uf4b8\\\"\"]],[false,{\".fa-cow:before\":false},[\"content:\\\"\\uf6c8\\\"\"]],[false,{\".fa-credit-card-alt:before\":false,\".fa-credit-card:before\":false},[\"content:\\\"\\uf09d\\\"\"]],[false,{\".fa-crop:before\":false},[\"content:\\\"\\uf125\\\"\"]],[false,{\".fa-crop-alt:before\":false,\".fa-crop-simple:before\":false},[\"content:\\\"\\uf565\\\"\"]],[false,{\".fa-cross:before\":false},[\"content:\\\"\\uf654\\\"\"]],[false,{\".fa-crosshairs:before\":false},[\"content:\\\"\\uf05b\\\"\"]],[false,{\".fa-crow:before\":false},[\"content:\\\"\\uf520\\\"\"]],[false,{\".fa-crown:before\":false},[\"content:\\\"\\uf521\\\"\"]],[false,{\".fa-crutch:before\":false},[\"content:\\\"\\uf7f7\\\"\"]],[false,{\".fa-cruzeiro-sign:before\":false},[\"content:\\\"\\ue152\\\"\"]],[false,{\".fa-cube:before\":false},[\"content:\\\"\\uf1b2\\\"\"]],[false,{\".fa-cubes:before\":false},[\"content:\\\"\\uf1b3\\\"\"]],[false,{\".fa-cubes-stacked:before\":false},[\"content:\\\"\\ue4e6\\\"\"]],[false,{\".fa-d:before\":false},[\"content:\\\"D\\\"\"]],[false,{\".fa-database:before\":false},[\"content:\\\"\\uf1c0\\\"\"]],[false,{\".fa-backspace:before\":false,\".fa-delete-left:before\":false},[\"content:\\\"\\uf55a\\\"\"]],[false,{\".fa-democrat:before\":false},[\"content:\\\"\\uf747\\\"\"]],[false,{\".fa-desktop-alt:before\":false,\".fa-desktop:before\":false},[\"content:\\\"\\uf390\\\"\"]],[false,{\".fa-dharmachakra:before\":false},[\"content:\\\"\\uf655\\\"\"]],[false,{\".fa-diagram-next:before\":false},[\"content:\\\"\\ue476\\\"\"]],[false,{\".fa-diagram-predecessor:before\":false},[\"content:\\\"\\ue477\\\"\"]],[false,{\".fa-diagram-project:before\":false,\".fa-project-diagram:before\":false},[\"content:\\\"\\uf542\\\"\"]],[false,{\".fa-diagram-successor:before\":false},[\"content:\\\"\\ue47a\\\"\"]],[false,{\".fa-diamond:before\":false},[\"content:\\\"\\uf219\\\"\"]],[false,{\".fa-diamond-turn-right:before\":false,\".fa-directions:before\":false},[\"content:\\\"\\uf5eb\\\"\"]],[false,{\".fa-dice:before\":false},[\"content:\\\"\\uf522\\\"\"]],[false,{\".fa-dice-d20:before\":false},[\"content:\\\"\\uf6cf\\\"\"]],[false,{\".fa-dice-d6:before\":false},[\"content:\\\"\\uf6d1\\\"\"]],[false,{\".fa-dice-five:before\":false},[\"content:\\\"\\uf523\\\"\"]],[false,{\".fa-dice-four:before\":false},[\"content:\\\"\\uf524\\\"\"]],[false,{\".fa-dice-one:before\":false},[\"content:\\\"\\uf525\\\"\"]],[false,{\".fa-dice-six:before\":false},[\"content:\\\"\\uf526\\\"\"]],[false,{\".fa-dice-three:before\":false},[\"content:\\\"\\uf527\\\"\"]],[false,{\".fa-dice-two:before\":false},[\"content:\\\"\\uf528\\\"\"]],[false,{\".fa-disease:before\":false},[\"content:\\\"\\uf7fa\\\"\"]],[false,{\".fa-display:before\":false},[\"content:\\\"\\ue163\\\"\"]],[false,{\".fa-divide:before\":false},[\"content:\\\"\\uf529\\\"\"]],[false,{\".fa-dna:before\":false},[\"content:\\\"\\uf471\\\"\"]],[false,{\".fa-dog:before\":false},[\"content:\\\"\\uf6d3\\\"\"]],[false,{\".fa-dollar-sign:before\":false,\".fa-dollar:before\":false,\".fa-usd:before\":false},[\"content:\\\"$\\\"\"]],[false,{\".fa-dolly-box:before\":false,\".fa-dolly:before\":false},[\"content:\\\"\\uf472\\\"\"]],[false,{\".fa-dong-sign:before\":false},[\"content:\\\"\\ue169\\\"\"]],[false,{\".fa-door-closed:before\":false},[\"content:\\\"\\uf52a\\\"\"]],[false,{\".fa-door-open:before\":false},[\"content:\\\"\\uf52b\\\"\"]],[false,{\".fa-dove:before\":false},[\"content:\\\"\\uf4ba\\\"\"]],[false,{\".fa-compress-alt:before\":false,\".fa-down-left-and-up-right-to-center:before\":false},[\"content:\\\"\\uf422\\\"\"]],[false,{\".fa-down-long:before\":false,\".fa-long-arrow-alt-down:before\":false},[\"content:\\\"\\uf309\\\"\"]],[false,{\".fa-download:before\":false},[\"content:\\\"\\uf019\\\"\"]],[false,{\".fa-dragon:before\":false},[\"content:\\\"\\uf6d5\\\"\"]],[false,{\".fa-draw-polygon:before\":false},[\"content:\\\"\\uf5ee\\\"\"]],[false,{\".fa-droplet:before\":false,\".fa-tint:before\":false},[\"content:\\\"\\uf043\\\"\"]],[false,{\".fa-droplet-slash:before\":false,\".fa-tint-slash:before\":false},[\"content:\\\"\\uf5c7\\\"\"]],[false,{\".fa-drum:before\":false},[\"content:\\\"\\uf569\\\"\"]],[false,{\".fa-drum-steelpan:before\":false},[\"content:\\\"\\uf56a\\\"\"]],[false,{\".fa-drumstick-bite:before\":false},[\"content:\\\"\\uf6d7\\\"\"]],[false,{\".fa-dumbbell:before\":false},[\"content:\\\"\\uf44b\\\"\"]],[false,{\".fa-dumpster:before\":false},[\"content:\\\"\\uf793\\\"\"]],[false,{\".fa-dumpster-fire:before\":false},[\"content:\\\"\\uf794\\\"\"]],[false,{\".fa-dungeon:before\":false},[\"content:\\\"\\uf6d9\\\"\"]],[false,{\".fa-e:before\":false},[\"content:\\\"E\\\"\"]],[false,{\".fa-deaf:before\":false,\".fa-deafness:before\":false,\".fa-ear-deaf:before\":false,\".fa-hard-of-hearing:before\":false},[\"content:\\\"\\uf2a4\\\"\"]],[false,{\".fa-assistive-listening-systems:before\":false,\".fa-ear-listen:before\":false},[\"content:\\\"\\uf2a2\\\"\"]],[false,{\".fa-earth-africa:before\":false,\".fa-globe-africa:before\":false},[\"content:\\\"\\uf57c\\\"\"]],[false,{\".fa-earth-america:before\":false,\".fa-earth-americas:before\":false,\".fa-earth:before\":false,\".fa-globe-americas:before\":false},[\"content:\\\"\\uf57d\\\"\"]],[false,{\".fa-earth-asia:before\":false,\".fa-globe-asia:before\":false},[\"content:\\\"\\uf57e\\\"\"]],[false,{\".fa-earth-europe:before\":false,\".fa-globe-europe:before\":false},[\"content:\\\"\\uf7a2\\\"\"]],[false,{\".fa-earth-oceania:before\":false,\".fa-globe-oceania:before\":false},[\"content:\\\"\\ue47b\\\"\"]],[false,{\".fa-egg:before\":false},[\"content:\\\"\\uf7fb\\\"\"]],[false,{\".fa-eject:before\":false},[\"content:\\\"\\uf052\\\"\"]],[false,{\".fa-elevator:before\":false},[\"content:\\\"\\ue16d\\\"\"]],[false,{\".fa-ellipsis-h:before\":false,\".fa-ellipsis:before\":false},[\"content:\\\"\\uf141\\\"\"]],[false,{\".fa-ellipsis-v:before\":false,\".fa-ellipsis-vertical:before\":false},[\"content:\\\"\\uf142\\\"\"]],[false,{\".fa-envelope:before\":false},[\"content:\\\"\\uf0e0\\\"\"]],[false,{\".fa-envelope-circle-check:before\":false},[\"content:\\\"\\ue4e8\\\"\"]],[false,{\".fa-envelope-open:before\":false},[\"content:\\\"\\uf2b6\\\"\"]],[false,{\".fa-envelope-open-text:before\":false},[\"content:\\\"\\uf658\\\"\"]],[false,{\".fa-envelopes-bulk:before\":false,\".fa-mail-bulk:before\":false},[\"content:\\\"\\uf674\\\"\"]],[false,{\".fa-equals:before\":false},[\"content:\\\"=\\\"\"]],[false,{\".fa-eraser:before\":false},[\"content:\\\"\\uf12d\\\"\"]],[false,{\".fa-ethernet:before\":false},[\"content:\\\"\\uf796\\\"\"]],[false,{\".fa-eur:before\":false,\".fa-euro-sign:before\":false,\".fa-euro:before\":false},[\"content:\\\"\\uf153\\\"\"]],[false,{\".fa-exclamation:before\":false},[\"content:\\\"!\\\"\"]],[false,{\".fa-expand:before\":false},[\"content:\\\"\\uf065\\\"\"]],[false,{\".fa-explosion:before\":false},[\"content:\\\"\\ue4e9\\\"\"]],[false,{\".fa-eye:before\":false},[\"content:\\\"\\uf06e\\\"\"]],[false,{\".fa-eye-dropper-empty:before\":false,\".fa-eye-dropper:before\":false,\".fa-eyedropper:before\":false},[\"content:\\\"\\uf1fb\\\"\"]],[false,{\".fa-eye-low-vision:before\":false,\".fa-low-vision:before\":false},[\"content:\\\"\\uf2a8\\\"\"]],[false,{\".fa-eye-slash:before\":false},[\"content:\\\"\\uf070\\\"\"]],[false,{\".fa-f:before\":false},[\"content:\\\"F\\\"\"]],[false,{\".fa-angry:before\":false,\".fa-face-angry:before\":false},[\"content:\\\"\\uf556\\\"\"]],[false,{\".fa-dizzy:before\":false,\".fa-face-dizzy:before\":false},[\"content:\\\"\\uf567\\\"\"]],[false,{\".fa-face-flushed:before\":false,\".fa-flushed:before\":false},[\"content:\\\"\\uf579\\\"\"]],[false,{\".fa-face-frown:before\":false,\".fa-frown:before\":false},[\"content:\\\"\\uf119\\\"\"]],[false,{\".fa-face-frown-open:before\":false,\".fa-frown-open:before\":false},[\"content:\\\"\\uf57a\\\"\"]],[false,{\".fa-face-grimace:before\":false,\".fa-grimace:before\":false},[\"content:\\\"\\uf57f\\\"\"]],[false,{\".fa-face-grin:before\":false,\".fa-grin:before\":false},[\"content:\\\"\\uf580\\\"\"]],[false,{\".fa-face-grin-beam:before\":false,\".fa-grin-beam:before\":false},[\"content:\\\"\\uf582\\\"\"]],[false,{\".fa-face-grin-beam-sweat:before\":false,\".fa-grin-beam-sweat:before\":false},[\"content:\\\"\\uf583\\\"\"]],[false,{\".fa-face-grin-hearts:before\":false,\".fa-grin-hearts:before\":false},[\"content:\\\"\\uf584\\\"\"]],[false,{\".fa-face-grin-squint:before\":false,\".fa-grin-squint:before\":false},[\"content:\\\"\\uf585\\\"\"]],[false,{\".fa-face-grin-squint-tears:before\":false,\".fa-grin-squint-tears:before\":false},[\"content:\\\"\\uf586\\\"\"]],[false,{\".fa-face-grin-stars:before\":false,\".fa-grin-stars:before\":false},[\"content:\\\"\\uf587\\\"\"]],[false,{\".fa-face-grin-tears:before\":false,\".fa-grin-tears:before\":false},[\"content:\\\"\\uf588\\\"\"]],[false,{\".fa-face-grin-tongue:before\":false,\".fa-grin-tongue:before\":false},[\"content:\\\"\\uf589\\\"\"]],[false,{\".fa-face-grin-tongue-squint:before\":false,\".fa-grin-tongue-squint:before\":false},[\"content:\\\"\\uf58a\\\"\"]],[false,{\".fa-face-grin-tongue-wink:before\":false,\".fa-grin-tongue-wink:before\":false},[\"content:\\\"\\uf58b\\\"\"]],[false,{\".fa-face-grin-wide:before\":false,\".fa-grin-alt:before\":false},[\"content:\\\"\\uf581\\\"\"]],[false,{\".fa-face-grin-wink:before\":false,\".fa-grin-wink:before\":false},[\"content:\\\"\\uf58c\\\"\"]],[false,{\".fa-face-kiss:before\":false,\".fa-kiss:before\":false},[\"content:\\\"\\uf596\\\"\"]],[false,{\".fa-face-kiss-beam:before\":false,\".fa-kiss-beam:before\":false},[\"content:\\\"\\uf597\\\"\"]],[false,{\".fa-face-kiss-wink-heart:before\":false,\".fa-kiss-wink-heart:before\":false},[\"content:\\\"\\uf598\\\"\"]],[false,{\".fa-face-laugh:before\":false,\".fa-laugh:before\":false},[\"content:\\\"\\uf599\\\"\"]],[false,{\".fa-face-laugh-beam:before\":false,\".fa-laugh-beam:before\":false},[\"content:\\\"\\uf59a\\\"\"]],[false,{\".fa-face-laugh-squint:before\":false,\".fa-laugh-squint:before\":false},[\"content:\\\"\\uf59b\\\"\"]],[false,{\".fa-face-laugh-wink:before\":false,\".fa-laugh-wink:before\":false},[\"content:\\\"\\uf59c\\\"\"]],[false,{\".fa-face-meh:before\":false,\".fa-meh:before\":false},[\"content:\\\"\\uf11a\\\"\"]],[false,{\".fa-face-meh-blank:before\":false,\".fa-meh-blank:before\":false},[\"content:\\\"\\uf5a4\\\"\"]],[false,{\".fa-face-rolling-eyes:before\":false,\".fa-meh-rolling-eyes:before\":false},[\"content:\\\"\\uf5a5\\\"\"]],[false,{\".fa-face-sad-cry:before\":false,\".fa-sad-cry:before\":false},[\"content:\\\"\\uf5b3\\\"\"]],[false,{\".fa-face-sad-tear:before\":false,\".fa-sad-tear:before\":false},[\"content:\\\"\\uf5b4\\\"\"]],[false,{\".fa-face-smile:before\":false,\".fa-smile:before\":false},[\"content:\\\"\\uf118\\\"\"]],[false,{\".fa-face-smile-beam:before\":false,\".fa-smile-beam:before\":false},[\"content:\\\"\\uf5b8\\\"\"]],[false,{\".fa-face-smile-wink:before\":false,\".fa-smile-wink:before\":false},[\"content:\\\"\\uf4da\\\"\"]],[false,{\".fa-face-surprise:before\":false,\".fa-surprise:before\":false},[\"content:\\\"\\uf5c2\\\"\"]],[false,{\".fa-face-tired:before\":false,\".fa-tired:before\":false},[\"content:\\\"\\uf5c8\\\"\"]],[false,{\".fa-fan:before\":false},[\"content:\\\"\\uf863\\\"\"]],[false,{\".fa-faucet:before\":false},[\"content:\\\"\\ue005\\\"\"]],[false,{\".fa-faucet-drip:before\":false},[\"content:\\\"\\ue006\\\"\"]],[false,{\".fa-fax:before\":false},[\"content:\\\"\\uf1ac\\\"\"]],[false,{\".fa-feather:before\":false},[\"content:\\\"\\uf52d\\\"\"]],[false,{\".fa-feather-alt:before\":false,\".fa-feather-pointed:before\":false},[\"content:\\\"\\uf56b\\\"\"]],[false,{\".fa-ferry:before\":false},[\"content:\\\"\\ue4ea\\\"\"]],[false,{\".fa-file:before\":false},[\"content:\\\"\\uf15b\\\"\"]],[false,{\".fa-file-arrow-down:before\":false,\".fa-file-download:before\":false},[\"content:\\\"\\uf56d\\\"\"]],[false,{\".fa-file-arrow-up:before\":false,\".fa-file-upload:before\":false},[\"content:\\\"\\uf574\\\"\"]],[false,{\".fa-file-audio:before\":false},[\"content:\\\"\\uf1c7\\\"\"]],[false,{\".fa-file-circle-check:before\":false},[\"content:\\\"\\ue493\\\"\"]],[false,{\".fa-file-circle-exclamation:before\":false},[\"content:\\\"\\ue4eb\\\"\"]],[false,{\".fa-file-circle-minus:before\":false},[\"content:\\\"\\ue4ed\\\"\"]],[false,{\".fa-file-circle-plus:before\":false},[\"content:\\\"\\ue4ee\\\"\"]],[false,{\".fa-file-circle-question:before\":false},[\"content:\\\"\\ue4ef\\\"\"]],[false,{\".fa-file-circle-xmark:before\":false},[\"content:\\\"\\ue494\\\"\"]],[false,{\".fa-file-code:before\":false},[\"content:\\\"\\uf1c9\\\"\"]],[false,{\".fa-file-contract:before\":false},[\"content:\\\"\\uf56c\\\"\"]],[false,{\".fa-file-csv:before\":false},[\"content:\\\"\\uf6dd\\\"\"]],[false,{\".fa-file-excel:before\":false},[\"content:\\\"\\uf1c3\\\"\"]],[false,{\".fa-arrow-right-from-file:before\":false,\".fa-file-export:before\":false},[\"content:\\\"\\uf56e\\\"\"]],[false,{\".fa-file-image:before\":false},[\"content:\\\"\\uf1c5\\\"\"]],[false,{\".fa-arrow-right-to-file:before\":false,\".fa-file-import:before\":false},[\"content:\\\"\\uf56f\\\"\"]],[false,{\".fa-file-invoice:before\":false},[\"content:\\\"\\uf570\\\"\"]],[false,{\".fa-file-invoice-dollar:before\":false},[\"content:\\\"\\uf571\\\"\"]],[false,{\".fa-file-alt:before\":false,\".fa-file-lines:before\":false,\".fa-file-text:before\":false},[\"content:\\\"\\uf15c\\\"\"]],[false,{\".fa-file-medical:before\":false},[\"content:\\\"\\uf477\\\"\"]],[false,{\".fa-file-pdf:before\":false},[\"content:\\\"\\uf1c1\\\"\"]],[false,{\".fa-file-edit:before\":false,\".fa-file-pen:before\":false},[\"content:\\\"\\uf31c\\\"\"]],[false,{\".fa-file-powerpoint:before\":false},[\"content:\\\"\\uf1c4\\\"\"]],[false,{\".fa-file-prescription:before\":false},[\"content:\\\"\\uf572\\\"\"]],[false,{\".fa-file-shield:before\":false},[\"content:\\\"\\ue4f0\\\"\"]],[false,{\".fa-file-signature:before\":false},[\"content:\\\"\\uf573\\\"\"]],[false,{\".fa-file-video:before\":false},[\"content:\\\"\\uf1c8\\\"\"]],[false,{\".fa-file-medical-alt:before\":false,\".fa-file-waveform:before\":false},[\"content:\\\"\\uf478\\\"\"]],[false,{\".fa-file-word:before\":false},[\"content:\\\"\\uf1c2\\\"\"]],[false,{\".fa-file-archive:before\":false,\".fa-file-zipper:before\":false},[\"content:\\\"\\uf1c6\\\"\"]],[false,{\".fa-fill:before\":false},[\"content:\\\"\\uf575\\\"\"]],[false,{\".fa-fill-drip:before\":false},[\"content:\\\"\\uf576\\\"\"]],[false,{\".fa-film:before\":false},[\"content:\\\"\\uf008\\\"\"]],[false,{\".fa-filter:before\":false},[\"content:\\\"\\uf0b0\\\"\"]],[false,{\".fa-filter-circle-dollar:before\":false,\".fa-funnel-dollar:before\":false},[\"content:\\\"\\uf662\\\"\"]],[false,{\".fa-filter-circle-xmark:before\":false},[\"content:\\\"\\ue17b\\\"\"]],[false,{\".fa-fingerprint:before\":false},[\"content:\\\"\\uf577\\\"\"]],[false,{\".fa-fire:before\":false},[\"content:\\\"\\uf06d\\\"\"]],[false,{\".fa-fire-burner:before\":false},[\"content:\\\"\\ue4f1\\\"\"]],[false,{\".fa-fire-extinguisher:before\":false},[\"content:\\\"\\uf134\\\"\"]],[false,{\".fa-fire-alt:before\":false,\".fa-fire-flame-curved:before\":false},[\"content:\\\"\\uf7e4\\\"\"]],[false,{\".fa-burn:before\":false,\".fa-fire-flame-simple:before\":false},[\"content:\\\"\\uf46a\\\"\"]],[false,{\".fa-fish:before\":false},[\"content:\\\"\\uf578\\\"\"]],[false,{\".fa-fish-fins:before\":false},[\"content:\\\"\\ue4f2\\\"\"]],[false,{\".fa-flag:before\":false},[\"content:\\\"\\uf024\\\"\"]],[false,{\".fa-flag-checkered:before\":false},[\"content:\\\"\\uf11e\\\"\"]],[false,{\".fa-flag-usa:before\":false},[\"content:\\\"\\uf74d\\\"\"]],[false,{\".fa-flask:before\":false},[\"content:\\\"\\uf0c3\\\"\"]],[false,{\".fa-flask-vial:before\":false},[\"content:\\\"\\ue4f3\\\"\"]],[false,{\".fa-floppy-disk:before\":false,\".fa-save:before\":false},[\"content:\\\"\\uf0c7\\\"\"]],[false,{\".fa-florin-sign:before\":false},[\"content:\\\"\\ue184\\\"\"]],[false,{\".fa-folder-blank:before\":false,\".fa-folder:before\":false},[\"content:\\\"\\uf07b\\\"\"]],[false,{\".fa-folder-closed:before\":false},[\"content:\\\"\\ue185\\\"\"]],[false,{\".fa-folder-minus:before\":false},[\"content:\\\"\\uf65d\\\"\"]],[false,{\".fa-folder-open:before\":false},[\"content:\\\"\\uf07c\\\"\"]],[false,{\".fa-folder-plus:before\":false},[\"content:\\\"\\uf65e\\\"\"]],[false,{\".fa-folder-tree:before\":false},[\"content:\\\"\\uf802\\\"\"]],[false,{\".fa-font:before\":false},[\"content:\\\"\\uf031\\\"\"]],[false,{\".fa-football-ball:before\":false,\".fa-football:before\":false},[\"content:\\\"\\uf44e\\\"\"]],[false,{\".fa-forward:before\":false},[\"content:\\\"\\uf04e\\\"\"]],[false,{\".fa-fast-forward:before\":false,\".fa-forward-fast:before\":false},[\"content:\\\"\\uf050\\\"\"]],[false,{\".fa-forward-step:before\":false,\".fa-step-forward:before\":false},[\"content:\\\"\\uf051\\\"\"]],[false,{\".fa-franc-sign:before\":false},[\"content:\\\"\\ue18f\\\"\"]],[false,{\".fa-frog:before\":false},[\"content:\\\"\\uf52e\\\"\"]],[false,{\".fa-futbol-ball:before\":false,\".fa-futbol:before\":false,\".fa-soccer-ball:before\":false},[\"content:\\\"\\uf1e3\\\"\"]],[false,{\".fa-g:before\":false},[\"content:\\\"G\\\"\"]],[false,{\".fa-gamepad:before\":false},[\"content:\\\"\\uf11b\\\"\"]],[false,{\".fa-gas-pump:before\":false},[\"content:\\\"\\uf52f\\\"\"]],[false,{\".fa-dashboard:before\":false,\".fa-gauge-med:before\":false,\".fa-gauge:before\":false,\".fa-tachometer-alt-average:before\":false},[\"content:\\\"\\uf624\\\"\"]],[false,{\".fa-gauge-high:before\":false,\".fa-tachometer-alt-fast:before\":false,\".fa-tachometer-alt:before\":false},[\"content:\\\"\\uf625\\\"\"]],[false,{\".fa-gauge-simple-med:before\":false,\".fa-gauge-simple:before\":false,\".fa-tachometer-average:before\":false},[\"content:\\\"\\uf629\\\"\"]],[false,{\".fa-gauge-simple-high:before\":false,\".fa-tachometer-fast:before\":false,\".fa-tachometer:before\":false},[\"content:\\\"\\uf62a\\\"\"]],[false,{\".fa-gavel:before\":false,\".fa-legal:before\":false},[\"content:\\\"\\uf0e3\\\"\"]],[false,{\".fa-cog:before\":false,\".fa-gear:before\":false},[\"content:\\\"\\uf013\\\"\"]],[false,{\".fa-cogs:before\":false,\".fa-gears:before\":false},[\"content:\\\"\\uf085\\\"\"]],[false,{\".fa-gem:before\":false},[\"content:\\\"\\uf3a5\\\"\"]],[false,{\".fa-genderless:before\":false},[\"content:\\\"\\uf22d\\\"\"]],[false,{\".fa-ghost:before\":false},[\"content:\\\"\\uf6e2\\\"\"]],[false,{\".fa-gift:before\":false},[\"content:\\\"\\uf06b\\\"\"]],[false,{\".fa-gifts:before\":false},[\"content:\\\"\\uf79c\\\"\"]],[false,{\".fa-glass-water:before\":false},[\"content:\\\"\\ue4f4\\\"\"]],[false,{\".fa-glass-water-droplet:before\":false},[\"content:\\\"\\ue4f5\\\"\"]],[false,{\".fa-glasses:before\":false},[\"content:\\\"\\uf530\\\"\"]],[false,{\".fa-globe:before\":false},[\"content:\\\"\\uf0ac\\\"\"]],[false,{\".fa-golf-ball-tee:before\":false,\".fa-golf-ball:before\":false},[\"content:\\\"\\uf450\\\"\"]],[false,{\".fa-gopuram:before\":false},[\"content:\\\"\\uf664\\\"\"]],[false,{\".fa-graduation-cap:before\":false,\".fa-mortar-board:before\":false},[\"content:\\\"\\uf19d\\\"\"]],[false,{\".fa-greater-than:before\":false},[\"content:\\\">\\\"\"]],[false,{\".fa-greater-than-equal:before\":false},[\"content:\\\"\\uf532\\\"\"]],[false,{\".fa-grip-horizontal:before\":false,\".fa-grip:before\":false},[\"content:\\\"\\uf58d\\\"\"]],[false,{\".fa-grip-lines:before\":false},[\"content:\\\"\\uf7a4\\\"\"]],[false,{\".fa-grip-lines-vertical:before\":false},[\"content:\\\"\\uf7a5\\\"\"]],[false,{\".fa-grip-vertical:before\":false},[\"content:\\\"\\uf58e\\\"\"]],[false,{\".fa-group-arrows-rotate:before\":false},[\"content:\\\"\\ue4f6\\\"\"]],[false,{\".fa-guarani-sign:before\":false},[\"content:\\\"\\ue19a\\\"\"]],[false,{\".fa-guitar:before\":false},[\"content:\\\"\\uf7a6\\\"\"]],[false,{\".fa-gun:before\":false},[\"content:\\\"\\ue19b\\\"\"]],[false,{\".fa-h:before\":false},[\"content:\\\"H\\\"\"]],[false,{\".fa-hammer:before\":false},[\"content:\\\"\\uf6e3\\\"\"]],[false,{\".fa-hamsa:before\":false},[\"content:\\\"\\uf665\\\"\"]],[false,{\".fa-hand-paper:before\":false,\".fa-hand:before\":false},[\"content:\\\"\\uf256\\\"\"]],[false,{\".fa-hand-back-fist:before\":false,\".fa-hand-rock:before\":false},[\"content:\\\"\\uf255\\\"\"]],[false,{\".fa-allergies:before\":false,\".fa-hand-dots:before\":false},[\"content:\\\"\\uf461\\\"\"]],[false,{\".fa-fist-raised:before\":false,\".fa-hand-fist:before\":false},[\"content:\\\"\\uf6de\\\"\"]],[false,{\".fa-hand-holding:before\":false},[\"content:\\\"\\uf4bd\\\"\"]],[false,{\".fa-hand-holding-dollar:before\":false,\".fa-hand-holding-usd:before\":false},[\"content:\\\"\\uf4c0\\\"\"]],[false,{\".fa-hand-holding-droplet:before\":false,\".fa-hand-holding-water:before\":false},[\"content:\\\"\\uf4c1\\\"\"]],[false,{\".fa-hand-holding-hand:before\":false},[\"content:\\\"\\ue4f7\\\"\"]],[false,{\".fa-hand-holding-heart:before\":false},[\"content:\\\"\\uf4be\\\"\"]],[false,{\".fa-hand-holding-medical:before\":false},[\"content:\\\"\\ue05c\\\"\"]],[false,{\".fa-hand-lizard:before\":false},[\"content:\\\"\\uf258\\\"\"]],[false,{\".fa-hand-middle-finger:before\":false},[\"content:\\\"\\uf806\\\"\"]],[false,{\".fa-hand-peace:before\":false},[\"content:\\\"\\uf25b\\\"\"]],[false,{\".fa-hand-point-down:before\":false},[\"content:\\\"\\uf0a7\\\"\"]],[false,{\".fa-hand-point-left:before\":false},[\"content:\\\"\\uf0a5\\\"\"]],[false,{\".fa-hand-point-right:before\":false},[\"content:\\\"\\uf0a4\\\"\"]],[false,{\".fa-hand-point-up:before\":false},[\"content:\\\"\\uf0a6\\\"\"]],[false,{\".fa-hand-pointer:before\":false},[\"content:\\\"\\uf25a\\\"\"]],[false,{\".fa-hand-scissors:before\":false},[\"content:\\\"\\uf257\\\"\"]],[false,{\".fa-hand-sparkles:before\":false},[\"content:\\\"\\ue05d\\\"\"]],[false,{\".fa-hand-spock:before\":false},[\"content:\\\"\\uf259\\\"\"]],[false,{\".fa-handcuffs:before\":false},[\"content:\\\"\\ue4f8\\\"\"]],[false,{\".fa-hands:before\":false,\".fa-sign-language:before\":false,\".fa-signing:before\":false},[\"content:\\\"\\uf2a7\\\"\"]],[false,{\".fa-american-sign-language-interpreting:before\":false,\".fa-asl-interpreting:before\":false,\".fa-hands-american-sign-language-interpreting:before\":false,\".fa-hands-asl-interpreting:before\":false},[\"content:\\\"\\uf2a3\\\"\"]],[false,{\".fa-hands-bound:before\":false},[\"content:\\\"\\ue4f9\\\"\"]],[false,{\".fa-hands-bubbles:before\":false,\".fa-hands-wash:before\":false},[\"content:\\\"\\ue05e\\\"\"]],[false,{\".fa-hands-clapping:before\":false},[\"content:\\\"\\ue1a8\\\"\"]],[false,{\".fa-hands-holding:before\":false},[\"content:\\\"\\uf4c2\\\"\"]],[false,{\".fa-hands-holding-child:before\":false},[\"content:\\\"\\ue4fa\\\"\"]],[false,{\".fa-hands-holding-circle:before\":false},[\"content:\\\"\\ue4fb\\\"\"]],[false,{\".fa-hands-praying:before\":false,\".fa-praying-hands:before\":false},[\"content:\\\"\\uf684\\\"\"]],[false,{\".fa-handshake:before\":false},[\"content:\\\"\\uf2b5\\\"\"]],[false,{\".fa-hands-helping:before\":false,\".fa-handshake-angle:before\":false},[\"content:\\\"\\uf4c4\\\"\"]],[false,{\".fa-handshake-alt:before\":false,\".fa-handshake-simple:before\":false},[\"content:\\\"\\uf4c6\\\"\"]],[false,{\".fa-handshake-alt-slash:before\":false,\".fa-handshake-simple-slash:before\":false},[\"content:\\\"\\ue05f\\\"\"]],[false,{\".fa-handshake-slash:before\":false},[\"content:\\\"\\ue060\\\"\"]],[false,{\".fa-hanukiah:before\":false},[\"content:\\\"\\uf6e6\\\"\"]],[false,{\".fa-hard-drive:before\":false,\".fa-hdd:before\":false},[\"content:\\\"\\uf0a0\\\"\"]],[false,{\".fa-hashtag:before\":false},[\"content:\\\"#\\\"\"]],[false,{\".fa-hat-cowboy:before\":false},[\"content:\\\"\\uf8c0\\\"\"]],[false,{\".fa-hat-cowboy-side:before\":false},[\"content:\\\"\\uf8c1\\\"\"]],[false,{\".fa-hat-wizard:before\":false},[\"content:\\\"\\uf6e8\\\"\"]],[false,{\".fa-head-side-cough:before\":false},[\"content:\\\"\\ue061\\\"\"]],[false,{\".fa-head-side-cough-slash:before\":false},[\"content:\\\"\\ue062\\\"\"]],[false,{\".fa-head-side-mask:before\":false},[\"content:\\\"\\ue063\\\"\"]],[false,{\".fa-head-side-virus:before\":false},[\"content:\\\"\\ue064\\\"\"]],[false,{\".fa-header:before\":false,\".fa-heading:before\":false},[\"content:\\\"\\uf1dc\\\"\"]],[false,{\".fa-headphones:before\":false},[\"content:\\\"\\uf025\\\"\"]],[false,{\".fa-headphones-alt:before\":false,\".fa-headphones-simple:before\":false},[\"content:\\\"\\uf58f\\\"\"]],[false,{\".fa-headset:before\":false},[\"content:\\\"\\uf590\\\"\"]],[false,{\".fa-heart:before\":false},[\"content:\\\"\\uf004\\\"\"]],[false,{\".fa-heart-circle-bolt:before\":false},[\"content:\\\"\\ue4fc\\\"\"]],[false,{\".fa-heart-circle-check:before\":false},[\"content:\\\"\\ue4fd\\\"\"]],[false,{\".fa-heart-circle-exclamation:before\":false},[\"content:\\\"\\ue4fe\\\"\"]],[false,{\".fa-heart-circle-minus:before\":false},[\"content:\\\"\\ue4ff\\\"\"]],[false,{\".fa-heart-circle-plus:before\":false},[\"content:\\\"\\ue500\\\"\"]],[false,{\".fa-heart-circle-xmark:before\":false},[\"content:\\\"\\ue501\\\"\"]],[false,{\".fa-heart-broken:before\":false,\".fa-heart-crack:before\":false},[\"content:\\\"\\uf7a9\\\"\"]],[false,{\".fa-heart-pulse:before\":false,\".fa-heartbeat:before\":false},[\"content:\\\"\\uf21e\\\"\"]],[false,{\".fa-helicopter:before\":false},[\"content:\\\"\\uf533\\\"\"]],[false,{\".fa-helicopter-symbol:before\":false},[\"content:\\\"\\ue502\\\"\"]],[false,{\".fa-hard-hat:before\":false,\".fa-hat-hard:before\":false,\".fa-helmet-safety:before\":false},[\"content:\\\"\\uf807\\\"\"]],[false,{\".fa-helmet-un:before\":false},[\"content:\\\"\\ue503\\\"\"]],[false,{\".fa-highlighter:before\":false},[\"content:\\\"\\uf591\\\"\"]],[false,{\".fa-hill-avalanche:before\":false},[\"content:\\\"\\ue507\\\"\"]],[false,{\".fa-hill-rockslide:before\":false},[\"content:\\\"\\ue508\\\"\"]],[false,{\".fa-hippo:before\":false},[\"content:\\\"\\uf6ed\\\"\"]],[false,{\".fa-hockey-puck:before\":false},[\"content:\\\"\\uf453\\\"\"]],[false,{\".fa-holly-berry:before\":false},[\"content:\\\"\\uf7aa\\\"\"]],[false,{\".fa-horse:before\":false},[\"content:\\\"\\uf6f0\\\"\"]],[false,{\".fa-horse-head:before\":false},[\"content:\\\"\\uf7ab\\\"\"]],[false,{\".fa-hospital-alt:before\":false,\".fa-hospital-wide:before\":false,\".fa-hospital:before\":false},[\"content:\\\"\\uf0f8\\\"\"]],[false,{\".fa-hospital-user:before\":false},[\"content:\\\"\\uf80d\\\"\"]],[false,{\".fa-hot-tub-person:before\":false,\".fa-hot-tub:before\":false},[\"content:\\\"\\uf593\\\"\"]],[false,{\".fa-hotdog:before\":false},[\"content:\\\"\\uf80f\\\"\"]],[false,{\".fa-hotel:before\":false},[\"content:\\\"\\uf594\\\"\"]],[false,{\".fa-hourglass-2:before\":false,\".fa-hourglass-half:before\":false,\".fa-hourglass:before\":false},[\"content:\\\"\\uf254\\\"\"]],[false,{\".fa-hourglass-empty:before\":false},[\"content:\\\"\\uf252\\\"\"]],[false,{\".fa-hourglass-3:before\":false,\".fa-hourglass-end:before\":false},[\"content:\\\"\\uf253\\\"\"]],[false,{\".fa-hourglass-1:before\":false,\".fa-hourglass-start:before\":false},[\"content:\\\"\\uf251\\\"\"]],[false,{\".fa-home-alt:before\":false,\".fa-home-lg-alt:before\":false,\".fa-home:before\":false,\".fa-house:before\":false},[\"content:\\\"\\uf015\\\"\"]],[false,{\".fa-home-lg:before\":false,\".fa-house-chimney:before\":false},[\"content:\\\"\\ue3af\\\"\"]],[false,{\".fa-house-chimney-crack:before\":false,\".fa-house-damage:before\":false},[\"content:\\\"\\uf6f1\\\"\"]],[false,{\".fa-clinic-medical:before\":false,\".fa-house-chimney-medical:before\":false},[\"content:\\\"\\uf7f2\\\"\"]],[false,{\".fa-house-chimney-user:before\":false},[\"content:\\\"\\ue065\\\"\"]],[false,{\".fa-house-chimney-window:before\":false},[\"content:\\\"\\ue00d\\\"\"]],[false,{\".fa-house-circle-check:before\":false},[\"content:\\\"\\ue509\\\"\"]],[false,{\".fa-house-circle-exclamation:before\":false},[\"content:\\\"\\ue50a\\\"\"]],[false,{\".fa-house-circle-xmark:before\":false},[\"content:\\\"\\ue50b\\\"\"]],[false,{\".fa-house-crack:before\":false},[\"content:\\\"\\ue3b1\\\"\"]],[false,{\".fa-house-fire:before\":false},[\"content:\\\"\\ue50c\\\"\"]],[false,{\".fa-house-flag:before\":false},[\"content:\\\"\\ue50d\\\"\"]],[false,{\".fa-house-flood-water:before\":false},[\"content:\\\"\\ue50e\\\"\"]],[false,{\".fa-house-flood-water-circle-arrow-right:before\":false},[\"content:\\\"\\ue50f\\\"\"]],[false,{\".fa-house-laptop:before\":false,\".fa-laptop-house:before\":false},[\"content:\\\"\\ue066\\\"\"]],[false,{\".fa-house-lock:before\":false},[\"content:\\\"\\ue510\\\"\"]],[false,{\".fa-house-medical:before\":false},[\"content:\\\"\\ue3b2\\\"\"]],[false,{\".fa-house-medical-circle-check:before\":false},[\"content:\\\"\\ue511\\\"\"]],[false,{\".fa-house-medical-circle-exclamation:before\":false},[\"content:\\\"\\ue512\\\"\"]],[false,{\".fa-house-medical-circle-xmark:before\":false},[\"content:\\\"\\ue513\\\"\"]],[false,{\".fa-house-medical-flag:before\":false},[\"content:\\\"\\ue514\\\"\"]],[false,{\".fa-house-signal:before\":false},[\"content:\\\"\\ue012\\\"\"]],[false,{\".fa-house-tsunami:before\":false},[\"content:\\\"\\ue515\\\"\"]],[false,{\".fa-home-user:before\":false,\".fa-house-user:before\":false},[\"content:\\\"\\ue1b0\\\"\"]],[false,{\".fa-hryvnia-sign:before\":false,\".fa-hryvnia:before\":false},[\"content:\\\"\\uf6f2\\\"\"]],[false,{\".fa-hurricane:before\":false},[\"content:\\\"\\uf751\\\"\"]],[false,{\".fa-i:before\":false},[\"content:\\\"I\\\"\"]],[false,{\".fa-i-cursor:before\":false},[\"content:\\\"\\uf246\\\"\"]],[false,{\".fa-ice-cream:before\":false},[\"content:\\\"\\uf810\\\"\"]],[false,{\".fa-icicles:before\":false},[\"content:\\\"\\uf7ad\\\"\"]],[false,{\".fa-heart-music-camera-bolt:before\":false,\".fa-icons:before\":false},[\"content:\\\"\\uf86d\\\"\"]],[false,{\".fa-id-badge:before\":false},[\"content:\\\"\\uf2c1\\\"\"]],[false,{\".fa-drivers-license:before\":false,\".fa-id-card:before\":false},[\"content:\\\"\\uf2c2\\\"\"]],[false,{\".fa-id-card-alt:before\":false,\".fa-id-card-clip:before\":false},[\"content:\\\"\\uf47f\\\"\"]],[false,{\".fa-igloo:before\":false},[\"content:\\\"\\uf7ae\\\"\"]],[false,{\".fa-image:before\":false},[\"content:\\\"\\uf03e\\\"\"]],[false,{\".fa-image-portrait:before\":false,\".fa-portrait:before\":false},[\"content:\\\"\\uf3e0\\\"\"]],[false,{\".fa-images:before\":false},[\"content:\\\"\\uf302\\\"\"]],[false,{\".fa-inbox:before\":false},[\"content:\\\"\\uf01c\\\"\"]],[false,{\".fa-indent:before\":false},[\"content:\\\"\\uf03c\\\"\"]],[false,{\".fa-indian-rupee-sign:before\":false,\".fa-indian-rupee:before\":false,\".fa-inr:before\":false},[\"content:\\\"\\ue1bc\\\"\"]],[false,{\".fa-industry:before\":false},[\"content:\\\"\\uf275\\\"\"]],[false,{\".fa-infinity:before\":false},[\"content:\\\"\\uf534\\\"\"]],[false,{\".fa-info:before\":false},[\"content:\\\"\\uf129\\\"\"]],[false,{\".fa-italic:before\":false},[\"content:\\\"\\uf033\\\"\"]],[false,{\".fa-j:before\":false},[\"content:\\\"J\\\"\"]],[false,{\".fa-jar:before\":false},[\"content:\\\"\\ue516\\\"\"]],[false,{\".fa-jar-wheat:before\":false},[\"content:\\\"\\ue517\\\"\"]],[false,{\".fa-jedi:before\":false},[\"content:\\\"\\uf669\\\"\"]],[false,{\".fa-fighter-jet:before\":false,\".fa-jet-fighter:before\":false},[\"content:\\\"\\uf0fb\\\"\"]],[false,{\".fa-jet-fighter-up:before\":false},[\"content:\\\"\\ue518\\\"\"]],[false,{\".fa-joint:before\":false},[\"content:\\\"\\uf595\\\"\"]],[false,{\".fa-jug-detergent:before\":false},[\"content:\\\"\\ue519\\\"\"]],[false,{\".fa-k:before\":false},[\"content:\\\"K\\\"\"]],[false,{\".fa-kaaba:before\":false},[\"content:\\\"\\uf66b\\\"\"]],[false,{\".fa-key:before\":false},[\"content:\\\"\\uf084\\\"\"]],[false,{\".fa-keyboard:before\":false},[\"content:\\\"\\uf11c\\\"\"]],[false,{\".fa-khanda:before\":false},[\"content:\\\"\\uf66d\\\"\"]],[false,{\".fa-kip-sign:before\":false},[\"content:\\\"\\ue1c4\\\"\"]],[false,{\".fa-first-aid:before\":false,\".fa-kit-medical:before\":false},[\"content:\\\"\\uf479\\\"\"]],[false,{\".fa-kitchen-set:before\":false},[\"content:\\\"\\ue51a\\\"\"]],[false,{\".fa-kiwi-bird:before\":false},[\"content:\\\"\\uf535\\\"\"]],[false,{\".fa-l:before\":false},[\"content:\\\"L\\\"\"]],[false,{\".fa-land-mine-on:before\":false},[\"content:\\\"\\ue51b\\\"\"]],[false,{\".fa-landmark:before\":false},[\"content:\\\"\\uf66f\\\"\"]],[false,{\".fa-landmark-alt:before\":false,\".fa-landmark-dome:before\":false},[\"content:\\\"\\uf752\\\"\"]],[false,{\".fa-landmark-flag:before\":false},[\"content:\\\"\\ue51c\\\"\"]],[false,{\".fa-language:before\":false},[\"content:\\\"\\uf1ab\\\"\"]],[false,{\".fa-laptop:before\":false},[\"content:\\\"\\uf109\\\"\"]],[false,{\".fa-laptop-code:before\":false},[\"content:\\\"\\uf5fc\\\"\"]],[false,{\".fa-laptop-file:before\":false},[\"content:\\\"\\ue51d\\\"\"]],[false,{\".fa-laptop-medical:before\":false},[\"content:\\\"\\uf812\\\"\"]],[false,{\".fa-lari-sign:before\":false},[\"content:\\\"\\ue1c8\\\"\"]],[false,{\".fa-layer-group:before\":false},[\"content:\\\"\\uf5fd\\\"\"]],[false,{\".fa-leaf:before\":false},[\"content:\\\"\\uf06c\\\"\"]],[false,{\".fa-left-long:before\":false,\".fa-long-arrow-alt-left:before\":false},[\"content:\\\"\\uf30a\\\"\"]],[false,{\".fa-arrows-alt-h:before\":false,\".fa-left-right:before\":false},[\"content:\\\"\\uf337\\\"\"]],[false,{\".fa-lemon:before\":false},[\"content:\\\"\\uf094\\\"\"]],[false,{\".fa-less-than:before\":false},[\"content:\\\"<\\\"\"]],[false,{\".fa-less-than-equal:before\":false},[\"content:\\\"\\uf537\\\"\"]],[false,{\".fa-life-ring:before\":false},[\"content:\\\"\\uf1cd\\\"\"]],[false,{\".fa-lightbulb:before\":false},[\"content:\\\"\\uf0eb\\\"\"]],[false,{\".fa-lines-leaning:before\":false},[\"content:\\\"\\ue51e\\\"\"]],[false,{\".fa-chain:before\":false,\".fa-link:before\":false},[\"content:\\\"\\uf0c1\\\"\"]],[false,{\".fa-chain-broken:before\":false,\".fa-chain-slash:before\":false,\".fa-link-slash:before\":false,\".fa-unlink:before\":false},[\"content:\\\"\\uf127\\\"\"]],[false,{\".fa-lira-sign:before\":false},[\"content:\\\"\\uf195\\\"\"]],[false,{\".fa-list-squares:before\":false,\".fa-list:before\":false},[\"content:\\\"\\uf03a\\\"\"]],[false,{\".fa-list-check:before\":false,\".fa-tasks:before\":false},[\"content:\\\"\\uf0ae\\\"\"]],[false,{\".fa-list-1-2:before\":false,\".fa-list-numeric:before\":false,\".fa-list-ol:before\":false},[\"content:\\\"\\uf0cb\\\"\"]],[false,{\".fa-list-dots:before\":false,\".fa-list-ul:before\":false},[\"content:\\\"\\uf0ca\\\"\"]],[false,{\".fa-litecoin-sign:before\":false},[\"content:\\\"\\ue1d3\\\"\"]],[false,{\".fa-location-arrow:before\":false},[\"content:\\\"\\uf124\\\"\"]],[false,{\".fa-location-crosshairs:before\":false,\".fa-location:before\":false},[\"content:\\\"\\uf601\\\"\"]],[false,{\".fa-location-dot:before\":false,\".fa-map-marker-alt:before\":false},[\"content:\\\"\\uf3c5\\\"\"]],[false,{\".fa-location-pin:before\":false,\".fa-map-marker:before\":false},[\"content:\\\"\\uf041\\\"\"]],[false,{\".fa-location-pin-lock:before\":false},[\"content:\\\"\\ue51f\\\"\"]],[false,{\".fa-lock:before\":false},[\"content:\\\"\\uf023\\\"\"]],[false,{\".fa-lock-open:before\":false},[\"content:\\\"\\uf3c1\\\"\"]],[false,{\".fa-locust:before\":false},[\"content:\\\"\\ue520\\\"\"]],[false,{\".fa-lungs:before\":false},[\"content:\\\"\\uf604\\\"\"]],[false,{\".fa-lungs-virus:before\":false},[\"content:\\\"\\ue067\\\"\"]],[false,{\".fa-m:before\":false},[\"content:\\\"M\\\"\"]],[false,{\".fa-magnet:before\":false},[\"content:\\\"\\uf076\\\"\"]],[false,{\".fa-magnifying-glass:before\":false,\".fa-search:before\":false},[\"content:\\\"\\uf002\\\"\"]],[false,{\".fa-magnifying-glass-arrow-right:before\":false},[\"content:\\\"\\ue521\\\"\"]],[false,{\".fa-magnifying-glass-chart:before\":false},[\"content:\\\"\\ue522\\\"\"]],[false,{\".fa-magnifying-glass-dollar:before\":false,\".fa-search-dollar:before\":false},[\"content:\\\"\\uf688\\\"\"]],[false,{\".fa-magnifying-glass-location:before\":false,\".fa-search-location:before\":false},[\"content:\\\"\\uf689\\\"\"]],[false,{\".fa-magnifying-glass-minus:before\":false,\".fa-search-minus:before\":false},[\"content:\\\"\\uf010\\\"\"]],[false,{\".fa-magnifying-glass-plus:before\":false,\".fa-search-plus:before\":false},[\"content:\\\"\\uf00e\\\"\"]],[false,{\".fa-manat-sign:before\":false},[\"content:\\\"\\ue1d5\\\"\"]],[false,{\".fa-map:before\":false},[\"content:\\\"\\uf279\\\"\"]],[false,{\".fa-map-location:before\":false,\".fa-map-marked:before\":false},[\"content:\\\"\\uf59f\\\"\"]],[false,{\".fa-map-location-dot:before\":false,\".fa-map-marked-alt:before\":false},[\"content:\\\"\\uf5a0\\\"\"]],[false,{\".fa-map-pin:before\":false},[\"content:\\\"\\uf276\\\"\"]],[false,{\".fa-marker:before\":false},[\"content:\\\"\\uf5a1\\\"\"]],[false,{\".fa-mars:before\":false},[\"content:\\\"\\uf222\\\"\"]],[false,{\".fa-mars-and-venus:before\":false},[\"content:\\\"\\uf224\\\"\"]],[false,{\".fa-mars-and-venus-burst:before\":false},[\"content:\\\"\\ue523\\\"\"]],[false,{\".fa-mars-double:before\":false},[\"content:\\\"\\uf227\\\"\"]],[false,{\".fa-mars-stroke:before\":false},[\"content:\\\"\\uf229\\\"\"]],[false,{\".fa-mars-stroke-h:before\":false,\".fa-mars-stroke-right:before\":false},[\"content:\\\"\\uf22b\\\"\"]],[false,{\".fa-mars-stroke-up:before\":false,\".fa-mars-stroke-v:before\":false},[\"content:\\\"\\uf22a\\\"\"]],[false,{\".fa-glass-martini-alt:before\":false,\".fa-martini-glass:before\":false},[\"content:\\\"\\uf57b\\\"\"]],[false,{\".fa-cocktail:before\":false,\".fa-martini-glass-citrus:before\":false},[\"content:\\\"\\uf561\\\"\"]],[false,{\".fa-glass-martini:before\":false,\".fa-martini-glass-empty:before\":false},[\"content:\\\"\\uf000\\\"\"]],[false,{\".fa-mask:before\":false},[\"content:\\\"\\uf6fa\\\"\"]],[false,{\".fa-mask-face:before\":false},[\"content:\\\"\\ue1d7\\\"\"]],[false,{\".fa-mask-ventilator:before\":false},[\"content:\\\"\\ue524\\\"\"]],[false,{\".fa-masks-theater:before\":false,\".fa-theater-masks:before\":false},[\"content:\\\"\\uf630\\\"\"]],[false,{\".fa-mattress-pillow:before\":false},[\"content:\\\"\\ue525\\\"\"]],[false,{\".fa-expand-arrows-alt:before\":false,\".fa-maximize:before\":false},[\"content:\\\"\\uf31e\\\"\"]],[false,{\".fa-medal:before\":false},[\"content:\\\"\\uf5a2\\\"\"]],[false,{\".fa-memory:before\":false},[\"content:\\\"\\uf538\\\"\"]],[false,{\".fa-menorah:before\":false},[\"content:\\\"\\uf676\\\"\"]],[false,{\".fa-mercury:before\":false},[\"content:\\\"\\uf223\\\"\"]],[false,{\".fa-comment-alt:before\":false,\".fa-message:before\":false},[\"content:\\\"\\uf27a\\\"\"]],[false,{\".fa-meteor:before\":false},[\"content:\\\"\\uf753\\\"\"]],[false,{\".fa-microchip:before\":false},[\"content:\\\"\\uf2db\\\"\"]],[false,{\".fa-microphone:before\":false},[\"content:\\\"\\uf130\\\"\"]],[false,{\".fa-microphone-alt:before\":false,\".fa-microphone-lines:before\":false},[\"content:\\\"\\uf3c9\\\"\"]],[false,{\".fa-microphone-alt-slash:before\":false,\".fa-microphone-lines-slash:before\":false},[\"content:\\\"\\uf539\\\"\"]],[false,{\".fa-microphone-slash:before\":false},[\"content:\\\"\\uf131\\\"\"]],[false,{\".fa-microscope:before\":false},[\"content:\\\"\\uf610\\\"\"]],[false,{\".fa-mill-sign:before\":false},[\"content:\\\"\\ue1ed\\\"\"]],[false,{\".fa-compress-arrows-alt:before\":false,\".fa-minimize:before\":false},[\"content:\\\"\\uf78c\\\"\"]],[false,{\".fa-minus:before\":false,\".fa-subtract:before\":false},[\"content:\\\"\\uf068\\\"\"]],[false,{\".fa-mitten:before\":false},[\"content:\\\"\\uf7b5\\\"\"]],[false,{\".fa-mobile-android:before\":false,\".fa-mobile-phone:before\":false,\".fa-mobile:before\":false},[\"content:\\\"\\uf3ce\\\"\"]],[false,{\".fa-mobile-button:before\":false},[\"content:\\\"\\uf10b\\\"\"]],[false,{\".fa-mobile-retro:before\":false},[\"content:\\\"\\ue527\\\"\"]],[false,{\".fa-mobile-android-alt:before\":false,\".fa-mobile-screen:before\":false},[\"content:\\\"\\uf3cf\\\"\"]],[false,{\".fa-mobile-alt:before\":false,\".fa-mobile-screen-button:before\":false},[\"content:\\\"\\uf3cd\\\"\"]],[false,{\".fa-money-bill:before\":false},[\"content:\\\"\\uf0d6\\\"\"]],[false,{\".fa-money-bill-1:before\":false,\".fa-money-bill-alt:before\":false},[\"content:\\\"\\uf3d1\\\"\"]],[false,{\".fa-money-bill-1-wave:before\":false,\".fa-money-bill-wave-alt:before\":false},[\"content:\\\"\\uf53b\\\"\"]],[false,{\".fa-money-bill-transfer:before\":false},[\"content:\\\"\\ue528\\\"\"]],[false,{\".fa-money-bill-trend-up:before\":false},[\"content:\\\"\\ue529\\\"\"]],[false,{\".fa-money-bill-wave:before\":false},[\"content:\\\"\\uf53a\\\"\"]],[false,{\".fa-money-bill-wheat:before\":false},[\"content:\\\"\\ue52a\\\"\"]],[false,{\".fa-money-bills:before\":false},[\"content:\\\"\\ue1f3\\\"\"]],[false,{\".fa-money-check:before\":false},[\"content:\\\"\\uf53c\\\"\"]],[false,{\".fa-money-check-alt:before\":false,\".fa-money-check-dollar:before\":false},[\"content:\\\"\\uf53d\\\"\"]],[false,{\".fa-monument:before\":false},[\"content:\\\"\\uf5a6\\\"\"]],[false,{\".fa-moon:before\":false},[\"content:\\\"\\uf186\\\"\"]],[false,{\".fa-mortar-pestle:before\":false},[\"content:\\\"\\uf5a7\\\"\"]],[false,{\".fa-mosque:before\":false},[\"content:\\\"\\uf678\\\"\"]],[false,{\".fa-mosquito:before\":false},[\"content:\\\"\\ue52b\\\"\"]],[false,{\".fa-mosquito-net:before\":false},[\"content:\\\"\\ue52c\\\"\"]],[false,{\".fa-motorcycle:before\":false},[\"content:\\\"\\uf21c\\\"\"]],[false,{\".fa-mound:before\":false},[\"content:\\\"\\ue52d\\\"\"]],[false,{\".fa-mountain:before\":false},[\"content:\\\"\\uf6fc\\\"\"]],[false,{\".fa-mountain-city:before\":false},[\"content:\\\"\\ue52e\\\"\"]],[false,{\".fa-mountain-sun:before\":false},[\"content:\\\"\\ue52f\\\"\"]],[false,{\".fa-mug-hot:before\":false},[\"content:\\\"\\uf7b6\\\"\"]],[false,{\".fa-coffee:before\":false,\".fa-mug-saucer:before\":false},[\"content:\\\"\\uf0f4\\\"\"]],[false,{\".fa-music:before\":false},[\"content:\\\"\\uf001\\\"\"]],[false,{\".fa-n:before\":false},[\"content:\\\"N\\\"\"]],[false,{\".fa-naira-sign:before\":false},[\"content:\\\"\\ue1f6\\\"\"]],[false,{\".fa-network-wired:before\":false},[\"content:\\\"\\uf6ff\\\"\"]],[false,{\".fa-neuter:before\":false},[\"content:\\\"\\uf22c\\\"\"]],[false,{\".fa-newspaper:before\":false},[\"content:\\\"\\uf1ea\\\"\"]],[false,{\".fa-not-equal:before\":false},[\"content:\\\"\\uf53e\\\"\"]],[false,{\".fa-note-sticky:before\":false,\".fa-sticky-note:before\":false},[\"content:\\\"\\uf249\\\"\"]],[false,{\".fa-notes-medical:before\":false},[\"content:\\\"\\uf481\\\"\"]],[false,{\".fa-o:before\":false},[\"content:\\\"O\\\"\"]],[false,{\".fa-object-group:before\":false},[\"content:\\\"\\uf247\\\"\"]],[false,{\".fa-object-ungroup:before\":false},[\"content:\\\"\\uf248\\\"\"]],[false,{\".fa-oil-can:before\":false},[\"content:\\\"\\uf613\\\"\"]],[false,{\".fa-oil-well:before\":false},[\"content:\\\"\\ue532\\\"\"]],[false,{\".fa-om:before\":false},[\"content:\\\"\\uf679\\\"\"]],[false,{\".fa-otter:before\":false},[\"content:\\\"\\uf700\\\"\"]],[false,{\".fa-dedent:before\":false,\".fa-outdent:before\":false},[\"content:\\\"\\uf03b\\\"\"]],[false,{\".fa-p:before\":false},[\"content:\\\"P\\\"\"]],[false,{\".fa-pager:before\":false},[\"content:\\\"\\uf815\\\"\"]],[false,{\".fa-paint-roller:before\":false},[\"content:\\\"\\uf5aa\\\"\"]],[false,{\".fa-paint-brush:before\":false,\".fa-paintbrush:before\":false},[\"content:\\\"\\uf1fc\\\"\"]],[false,{\".fa-palette:before\":false},[\"content:\\\"\\uf53f\\\"\"]],[false,{\".fa-pallet:before\":false},[\"content:\\\"\\uf482\\\"\"]],[false,{\".fa-panorama:before\":false},[\"content:\\\"\\ue209\\\"\"]],[false,{\".fa-paper-plane:before\":false},[\"content:\\\"\\uf1d8\\\"\"]],[false,{\".fa-paperclip:before\":false},[\"content:\\\"\\uf0c6\\\"\"]],[false,{\".fa-parachute-box:before\":false},[\"content:\\\"\\uf4cd\\\"\"]],[false,{\".fa-paragraph:before\":false},[\"content:\\\"\\uf1dd\\\"\"]],[false,{\".fa-passport:before\":false},[\"content:\\\"\\uf5ab\\\"\"]],[false,{\".fa-file-clipboard:before\":false,\".fa-paste:before\":false},[\"content:\\\"\\uf0ea\\\"\"]],[false,{\".fa-pause:before\":false},[\"content:\\\"\\uf04c\\\"\"]],[false,{\".fa-paw:before\":false},[\"content:\\\"\\uf1b0\\\"\"]],[false,{\".fa-peace:before\":false},[\"content:\\\"\\uf67c\\\"\"]],[false,{\".fa-pen:before\":false},[\"content:\\\"\\uf304\\\"\"]],[false,{\".fa-pen-alt:before\":false,\".fa-pen-clip:before\":false},[\"content:\\\"\\uf305\\\"\"]],[false,{\".fa-pen-fancy:before\":false},[\"content:\\\"\\uf5ac\\\"\"]],[false,{\".fa-pen-nib:before\":false},[\"content:\\\"\\uf5ad\\\"\"]],[false,{\".fa-pen-ruler:before\":false,\".fa-pencil-ruler:before\":false},[\"content:\\\"\\uf5ae\\\"\"]],[false,{\".fa-edit:before\":false,\".fa-pen-to-square:before\":false},[\"content:\\\"\\uf044\\\"\"]],[false,{\".fa-pencil-alt:before\":false,\".fa-pencil:before\":false},[\"content:\\\"\\uf303\\\"\"]],[false,{\".fa-people-arrows-left-right:before\":false,\".fa-people-arrows:before\":false},[\"content:\\\"\\ue068\\\"\"]],[false,{\".fa-people-carry-box:before\":false,\".fa-people-carry:before\":false},[\"content:\\\"\\uf4ce\\\"\"]],[false,{\".fa-people-group:before\":false},[\"content:\\\"\\ue533\\\"\"]],[false,{\".fa-people-line:before\":false},[\"content:\\\"\\ue534\\\"\"]],[false,{\".fa-people-pulling:before\":false},[\"content:\\\"\\ue535\\\"\"]],[false,{\".fa-people-robbery:before\":false},[\"content:\\\"\\ue536\\\"\"]],[false,{\".fa-people-roof:before\":false},[\"content:\\\"\\ue537\\\"\"]],[false,{\".fa-pepper-hot:before\":false},[\"content:\\\"\\uf816\\\"\"]],[false,{\".fa-percent:before\":false,\".fa-percentage:before\":false},[\"content:\\\"%\\\"\"]],[false,{\".fa-male:before\":false,\".fa-person:before\":false},[\"content:\\\"\\uf183\\\"\"]],[false,{\".fa-person-arrow-down-to-line:before\":false},[\"content:\\\"\\ue538\\\"\"]],[false,{\".fa-person-arrow-up-from-line:before\":false},[\"content:\\\"\\ue539\\\"\"]],[false,{\".fa-biking:before\":false,\".fa-person-biking:before\":false},[\"content:\\\"\\uf84a\\\"\"]],[false,{\".fa-person-booth:before\":false},[\"content:\\\"\\uf756\\\"\"]],[false,{\".fa-person-breastfeeding:before\":false},[\"content:\\\"\\ue53a\\\"\"]],[false,{\".fa-person-burst:before\":false},[\"content:\\\"\\ue53b\\\"\"]],[false,{\".fa-person-cane:before\":false},[\"content:\\\"\\ue53c\\\"\"]],[false,{\".fa-person-chalkboard:before\":false},[\"content:\\\"\\ue53d\\\"\"]],[false,{\".fa-person-circle-check:before\":false},[\"content:\\\"\\ue53e\\\"\"]],[false,{\".fa-person-circle-exclamation:before\":false},[\"content:\\\"\\ue53f\\\"\"]],[false,{\".fa-person-circle-minus:before\":false},[\"content:\\\"\\ue540\\\"\"]],[false,{\".fa-person-circle-plus:before\":false},[\"content:\\\"\\ue541\\\"\"]],[false,{\".fa-person-circle-question:before\":false},[\"content:\\\"\\ue542\\\"\"]],[false,{\".fa-person-circle-xmark:before\":false},[\"content:\\\"\\ue543\\\"\"]],[false,{\".fa-digging:before\":false,\".fa-person-digging:before\":false},[\"content:\\\"\\uf85e\\\"\"]],[false,{\".fa-diagnoses:before\":false,\".fa-person-dots-from-line:before\":false},[\"content:\\\"\\uf470\\\"\"]],[false,{\".fa-female:before\":false,\".fa-person-dress:before\":false},[\"content:\\\"\\uf182\\\"\"]],[false,{\".fa-person-dress-burst:before\":false},[\"content:\\\"\\ue544\\\"\"]],[false,{\".fa-person-drowning:before\":false},[\"content:\\\"\\ue545\\\"\"]],[false,{\".fa-person-falling:before\":false},[\"content:\\\"\\ue546\\\"\"]],[false,{\".fa-person-falling-burst:before\":false},[\"content:\\\"\\ue547\\\"\"]],[false,{\".fa-person-half-dress:before\":false},[\"content:\\\"\\ue548\\\"\"]],[false,{\".fa-person-harassing:before\":false},[\"content:\\\"\\ue549\\\"\"]],[false,{\".fa-hiking:before\":false,\".fa-person-hiking:before\":false},[\"content:\\\"\\uf6ec\\\"\"]],[false,{\".fa-person-military-pointing:before\":false},[\"content:\\\"\\ue54a\\\"\"]],[false,{\".fa-person-military-rifle:before\":false},[\"content:\\\"\\ue54b\\\"\"]],[false,{\".fa-person-military-to-person:before\":false},[\"content:\\\"\\ue54c\\\"\"]],[false,{\".fa-person-praying:before\":false,\".fa-pray:before\":false},[\"content:\\\"\\uf683\\\"\"]],[false,{\".fa-person-pregnant:before\":false},[\"content:\\\"\\ue31e\\\"\"]],[false,{\".fa-person-rays:before\":false},[\"content:\\\"\\ue54d\\\"\"]],[false,{\".fa-person-rifle:before\":false},[\"content:\\\"\\ue54e\\\"\"]],[false,{\".fa-person-running:before\":false,\".fa-running:before\":false},[\"content:\\\"\\uf70c\\\"\"]],[false,{\".fa-person-shelter:before\":false},[\"content:\\\"\\ue54f\\\"\"]],[false,{\".fa-person-skating:before\":false,\".fa-skating:before\":false},[\"content:\\\"\\uf7c5\\\"\"]],[false,{\".fa-person-skiing:before\":false,\".fa-skiing:before\":false},[\"content:\\\"\\uf7c9\\\"\"]],[false,{\".fa-person-skiing-nordic:before\":false,\".fa-skiing-nordic:before\":false},[\"content:\\\"\\uf7ca\\\"\"]],[false,{\".fa-person-snowboarding:before\":false,\".fa-snowboarding:before\":false},[\"content:\\\"\\uf7ce\\\"\"]],[false,{\".fa-person-swimming:before\":false,\".fa-swimmer:before\":false},[\"content:\\\"\\uf5c4\\\"\"]],[false,{\".fa-person-through-window:before\":false},[\"content:\\\"\\ue433\\\"\"]],[false,{\".fa-person-walking:before\":false,\".fa-walking:before\":false},[\"content:\\\"\\uf554\\\"\"]],[false,{\".fa-person-walking-arrow-loop-left:before\":false},[\"content:\\\"\\ue551\\\"\"]],[false,{\".fa-person-walking-arrow-right:before\":false},[\"content:\\\"\\ue552\\\"\"]],[false,{\".fa-person-walking-dashed-line-arrow-right:before\":false},[\"content:\\\"\\ue553\\\"\"]],[false,{\".fa-person-walking-luggage:before\":false},[\"content:\\\"\\ue554\\\"\"]],[false,{\".fa-blind:before\":false,\".fa-person-walking-with-cane:before\":false},[\"content:\\\"\\uf29d\\\"\"]],[false,{\".fa-peseta-sign:before\":false},[\"content:\\\"\\ue221\\\"\"]],[false,{\".fa-peso-sign:before\":false},[\"content:\\\"\\ue222\\\"\"]],[false,{\".fa-phone:before\":false},[\"content:\\\"\\uf095\\\"\"]],[false,{\".fa-phone-alt:before\":false,\".fa-phone-flip:before\":false},[\"content:\\\"\\uf879\\\"\"]],[false,{\".fa-phone-slash:before\":false},[\"content:\\\"\\uf3dd\\\"\"]],[false,{\".fa-phone-volume:before\":false,\".fa-volume-control-phone:before\":false},[\"content:\\\"\\uf2a0\\\"\"]],[false,{\".fa-photo-film:before\":false,\".fa-photo-video:before\":false},[\"content:\\\"\\uf87c\\\"\"]],[false,{\".fa-piggy-bank:before\":false},[\"content:\\\"\\uf4d3\\\"\"]],[false,{\".fa-pills:before\":false},[\"content:\\\"\\uf484\\\"\"]],[false,{\".fa-pizza-slice:before\":false},[\"content:\\\"\\uf818\\\"\"]],[false,{\".fa-place-of-worship:before\":false},[\"content:\\\"\\uf67f\\\"\"]],[false,{\".fa-plane:before\":false},[\"content:\\\"\\uf072\\\"\"]],[false,{\".fa-plane-arrival:before\":false},[\"content:\\\"\\uf5af\\\"\"]],[false,{\".fa-plane-circle-check:before\":false},[\"content:\\\"\\ue555\\\"\"]],[false,{\".fa-plane-circle-exclamation:before\":false},[\"content:\\\"\\ue556\\\"\"]],[false,{\".fa-plane-circle-xmark:before\":false},[\"content:\\\"\\ue557\\\"\"]],[false,{\".fa-plane-departure:before\":false},[\"content:\\\"\\uf5b0\\\"\"]],[false,{\".fa-plane-lock:before\":false},[\"content:\\\"\\ue558\\\"\"]],[false,{\".fa-plane-slash:before\":false},[\"content:\\\"\\ue069\\\"\"]],[false,{\".fa-plane-up:before\":false},[\"content:\\\"\\ue22d\\\"\"]],[false,{\".fa-plant-wilt:before\":false},[\"content:\\\"\\ue43b\\\"\"]],[false,{\".fa-plate-wheat:before\":false},[\"content:\\\"\\ue55a\\\"\"]],[false,{\".fa-play:before\":false},[\"content:\\\"\\uf04b\\\"\"]],[false,{\".fa-plug:before\":false},[\"content:\\\"\\uf1e6\\\"\"]],[false,{\".fa-plug-circle-bolt:before\":false},[\"content:\\\"\\ue55b\\\"\"]],[false,{\".fa-plug-circle-check:before\":false},[\"content:\\\"\\ue55c\\\"\"]],[false,{\".fa-plug-circle-exclamation:before\":false},[\"content:\\\"\\ue55d\\\"\"]],[false,{\".fa-plug-circle-minus:before\":false},[\"content:\\\"\\ue55e\\\"\"]],[false,{\".fa-plug-circle-plus:before\":false},[\"content:\\\"\\ue55f\\\"\"]],[false,{\".fa-plug-circle-xmark:before\":false},[\"content:\\\"\\ue560\\\"\"]],[false,{\".fa-add:before\":false,\".fa-plus:before\":false},[\"content:\\\"+\\\"\"]],[false,{\".fa-plus-minus:before\":false},[\"content:\\\"\\ue43c\\\"\"]],[false,{\".fa-podcast:before\":false},[\"content:\\\"\\uf2ce\\\"\"]],[false,{\".fa-poo:before\":false},[\"content:\\\"\\uf2fe\\\"\"]],[false,{\".fa-poo-bolt:before\":false,\".fa-poo-storm:before\":false},[\"content:\\\"\\uf75a\\\"\"]],[false,{\".fa-poop:before\":false},[\"content:\\\"\\uf619\\\"\"]],[false,{\".fa-power-off:before\":false},[\"content:\\\"\\uf011\\\"\"]],[false,{\".fa-prescription:before\":false},[\"content:\\\"\\uf5b1\\\"\"]],[false,{\".fa-prescription-bottle:before\":false},[\"content:\\\"\\uf485\\\"\"]],[false,{\".fa-prescription-bottle-alt:before\":false,\".fa-prescription-bottle-medical:before\":false},[\"content:\\\"\\uf486\\\"\"]],[false,{\".fa-print:before\":false},[\"content:\\\"\\uf02f\\\"\"]],[false,{\".fa-pump-medical:before\":false},[\"content:\\\"\\ue06a\\\"\"]],[false,{\".fa-pump-soap:before\":false},[\"content:\\\"\\ue06b\\\"\"]],[false,{\".fa-puzzle-piece:before\":false},[\"content:\\\"\\uf12e\\\"\"]],[false,{\".fa-q:before\":false},[\"content:\\\"Q\\\"\"]],[false,{\".fa-qrcode:before\":false},[\"content:\\\"\\uf029\\\"\"]],[false,{\".fa-question:before\":false},[\"content:\\\"?\\\"\"]],[false,{\".fa-quote-left-alt:before\":false,\".fa-quote-left:before\":false},[\"content:\\\"\\uf10d\\\"\"]],[false,{\".fa-quote-right-alt:before\":false,\".fa-quote-right:before\":false},[\"content:\\\"\\uf10e\\\"\"]],[false,{\".fa-r:before\":false},[\"content:\\\"R\\\"\"]],[false,{\".fa-radiation:before\":false},[\"content:\\\"\\uf7b9\\\"\"]],[false,{\".fa-radio:before\":false},[\"content:\\\"\\uf8d7\\\"\"]],[false,{\".fa-rainbow:before\":false},[\"content:\\\"\\uf75b\\\"\"]],[false,{\".fa-ranking-star:before\":false},[\"content:\\\"\\ue561\\\"\"]],[false,{\".fa-receipt:before\":false},[\"content:\\\"\\uf543\\\"\"]],[false,{\".fa-record-vinyl:before\":false},[\"content:\\\"\\uf8d9\\\"\"]],[false,{\".fa-ad:before\":false,\".fa-rectangle-ad:before\":false},[\"content:\\\"\\uf641\\\"\"]],[false,{\".fa-list-alt:before\":false,\".fa-rectangle-list:before\":false},[\"content:\\\"\\uf022\\\"\"]],[false,{\".fa-rectangle-times:before\":false,\".fa-rectangle-xmark:before\":false,\".fa-times-rectangle:before\":false,\".fa-window-close:before\":false},[\"content:\\\"\\uf410\\\"\"]],[false,{\".fa-recycle:before\":false},[\"content:\\\"\\uf1b8\\\"\"]],[false,{\".fa-registered:before\":false},[\"content:\\\"\\uf25d\\\"\"]],[false,{\".fa-repeat:before\":false},[\"content:\\\"\\uf363\\\"\"]],[false,{\".fa-mail-reply:before\":false,\".fa-reply:before\":false},[\"content:\\\"\\uf3e5\\\"\"]],[false,{\".fa-mail-reply-all:before\":false,\".fa-reply-all:before\":false},[\"content:\\\"\\uf122\\\"\"]],[false,{\".fa-republican:before\":false},[\"content:\\\"\\uf75e\\\"\"]],[false,{\".fa-restroom:before\":false},[\"content:\\\"\\uf7bd\\\"\"]],[false,{\".fa-retweet:before\":false},[\"content:\\\"\\uf079\\\"\"]],[false,{\".fa-ribbon:before\":false},[\"content:\\\"\\uf4d6\\\"\"]],[false,{\".fa-right-from-bracket:before\":false,\".fa-sign-out-alt:before\":false},[\"content:\\\"\\uf2f5\\\"\"]],[false,{\".fa-exchange-alt:before\":false,\".fa-right-left:before\":false},[\"content:\\\"\\uf362\\\"\"]],[false,{\".fa-long-arrow-alt-right:before\":false,\".fa-right-long:before\":false},[\"content:\\\"\\uf30b\\\"\"]],[false,{\".fa-right-to-bracket:before\":false,\".fa-sign-in-alt:before\":false},[\"content:\\\"\\uf2f6\\\"\"]],[false,{\".fa-ring:before\":false},[\"content:\\\"\\uf70b\\\"\"]],[false,{\".fa-road:before\":false},[\"content:\\\"\\uf018\\\"\"]],[false,{\".fa-road-barrier:before\":false},[\"content:\\\"\\ue562\\\"\"]],[false,{\".fa-road-bridge:before\":false},[\"content:\\\"\\ue563\\\"\"]],[false,{\".fa-road-circle-check:before\":false},[\"content:\\\"\\ue564\\\"\"]],[false,{\".fa-road-circle-exclamation:before\":false},[\"content:\\\"\\ue565\\\"\"]],[false,{\".fa-road-circle-xmark:before\":false},[\"content:\\\"\\ue566\\\"\"]],[false,{\".fa-road-lock:before\":false},[\"content:\\\"\\ue567\\\"\"]],[false,{\".fa-road-spikes:before\":false},[\"content:\\\"\\ue568\\\"\"]],[false,{\".fa-robot:before\":false},[\"content:\\\"\\uf544\\\"\"]],[false,{\".fa-rocket:before\":false},[\"content:\\\"\\uf135\\\"\"]],[false,{\".fa-rotate:before\":false,\".fa-sync-alt:before\":false},[\"content:\\\"\\uf2f1\\\"\"]],[false,{\".fa-rotate-back:before\":false,\".fa-rotate-backward:before\":false,\".fa-rotate-left:before\":false,\".fa-undo-alt:before\":false},[\"content:\\\"\\uf2ea\\\"\"]],[false,{\".fa-redo-alt:before\":false,\".fa-rotate-forward:before\":false,\".fa-rotate-right:before\":false},[\"content:\\\"\\uf2f9\\\"\"]],[false,{\".fa-route:before\":false},[\"content:\\\"\\uf4d7\\\"\"]],[false,{\".fa-feed:before\":false,\".fa-rss:before\":false},[\"content:\\\"\\uf09e\\\"\"]],[false,{\".fa-rouble:before\":false,\".fa-rub:before\":false,\".fa-ruble-sign:before\":false,\".fa-ruble:before\":false},[\"content:\\\"\\uf158\\\"\"]],[false,{\".fa-rug:before\":false},[\"content:\\\"\\ue569\\\"\"]],[false,{\".fa-ruler:before\":false},[\"content:\\\"\\uf545\\\"\"]],[false,{\".fa-ruler-combined:before\":false},[\"content:\\\"\\uf546\\\"\"]],[false,{\".fa-ruler-horizontal:before\":false},[\"content:\\\"\\uf547\\\"\"]],[false,{\".fa-ruler-vertical:before\":false},[\"content:\\\"\\uf548\\\"\"]],[false,{\".fa-rupee-sign:before\":false,\".fa-rupee:before\":false},[\"content:\\\"\\uf156\\\"\"]],[false,{\".fa-rupiah-sign:before\":false},[\"content:\\\"\\ue23d\\\"\"]],[false,{\".fa-s:before\":false},[\"content:\\\"S\\\"\"]],[false,{\".fa-sack-dollar:before\":false},[\"content:\\\"\\uf81d\\\"\"]],[false,{\".fa-sack-xmark:before\":false},[\"content:\\\"\\ue56a\\\"\"]],[false,{\".fa-sailboat:before\":false},[\"content:\\\"\\ue445\\\"\"]],[false,{\".fa-satellite:before\":false},[\"content:\\\"\\uf7bf\\\"\"]],[false,{\".fa-satellite-dish:before\":false},[\"content:\\\"\\uf7c0\\\"\"]],[false,{\".fa-balance-scale:before\":false,\".fa-scale-balanced:before\":false},[\"content:\\\"\\uf24e\\\"\"]],[false,{\".fa-balance-scale-left:before\":false,\".fa-scale-unbalanced:before\":false},[\"content:\\\"\\uf515\\\"\"]],[false,{\".fa-balance-scale-right:before\":false,\".fa-scale-unbalanced-flip:before\":false},[\"content:\\\"\\uf516\\\"\"]],[false,{\".fa-school:before\":false},[\"content:\\\"\\uf549\\\"\"]],[false,{\".fa-school-circle-check:before\":false},[\"content:\\\"\\ue56b\\\"\"]],[false,{\".fa-school-circle-exclamation:before\":false},[\"content:\\\"\\ue56c\\\"\"]],[false,{\".fa-school-circle-xmark:before\":false},[\"content:\\\"\\ue56d\\\"\"]],[false,{\".fa-school-flag:before\":false},[\"content:\\\"\\ue56e\\\"\"]],[false,{\".fa-school-lock:before\":false},[\"content:\\\"\\ue56f\\\"\"]],[false,{\".fa-cut:before\":false,\".fa-scissors:before\":false},[\"content:\\\"\\uf0c4\\\"\"]],[false,{\".fa-screwdriver:before\":false},[\"content:\\\"\\uf54a\\\"\"]],[false,{\".fa-screwdriver-wrench:before\":false,\".fa-tools:before\":false},[\"content:\\\"\\uf7d9\\\"\"]],[false,{\".fa-scroll:before\":false},[\"content:\\\"\\uf70e\\\"\"]],[false,{\".fa-scroll-torah:before\":false,\".fa-torah:before\":false},[\"content:\\\"\\uf6a0\\\"\"]],[false,{\".fa-sd-card:before\":false},[\"content:\\\"\\uf7c2\\\"\"]],[false,{\".fa-section:before\":false},[\"content:\\\"\\ue447\\\"\"]],[false,{\".fa-seedling:before\":false,\".fa-sprout:before\":false},[\"content:\\\"\\uf4d8\\\"\"]],[false,{\".fa-server:before\":false},[\"content:\\\"\\uf233\\\"\"]],[false,{\".fa-shapes:before\":false,\".fa-triangle-circle-square:before\":false},[\"content:\\\"\\uf61f\\\"\"]],[false,{\".fa-arrow-turn-right:before\":false,\".fa-mail-forward:before\":false,\".fa-share:before\":false},[\"content:\\\"\\uf064\\\"\"]],[false,{\".fa-share-from-square:before\":false,\".fa-share-square:before\":false},[\"content:\\\"\\uf14d\\\"\"]],[false,{\".fa-share-alt:before\":false,\".fa-share-nodes:before\":false},[\"content:\\\"\\uf1e0\\\"\"]],[false,{\".fa-sheet-plastic:before\":false},[\"content:\\\"\\ue571\\\"\"]],[false,{\".fa-ils:before\":false,\".fa-shekel-sign:before\":false,\".fa-shekel:before\":false,\".fa-sheqel-sign:before\":false,\".fa-sheqel:before\":false},[\"content:\\\"\\uf20b\\\"\"]],[false,{\".fa-shield-blank:before\":false,\".fa-shield:before\":false},[\"content:\\\"\\uf132\\\"\"]],[false,{\".fa-shield-cat:before\":false},[\"content:\\\"\\ue572\\\"\"]],[false,{\".fa-shield-dog:before\":false},[\"content:\\\"\\ue573\\\"\"]],[false,{\".fa-shield-alt:before\":false,\".fa-shield-halved:before\":false},[\"content:\\\"\\uf3ed\\\"\"]],[false,{\".fa-shield-heart:before\":false},[\"content:\\\"\\ue574\\\"\"]],[false,{\".fa-shield-virus:before\":false},[\"content:\\\"\\ue06c\\\"\"]],[false,{\".fa-ship:before\":false},[\"content:\\\"\\uf21a\\\"\"]],[false,{\".fa-shirt:before\":false,\".fa-t-shirt:before\":false,\".fa-tshirt:before\":false},[\"content:\\\"\\uf553\\\"\"]],[false,{\".fa-shoe-prints:before\":false},[\"content:\\\"\\uf54b\\\"\"]],[false,{\".fa-shop:before\":false,\".fa-store-alt:before\":false},[\"content:\\\"\\uf54f\\\"\"]],[false,{\".fa-shop-lock:before\":false},[\"content:\\\"\\ue4a5\\\"\"]],[false,{\".fa-shop-slash:before\":false,\".fa-store-alt-slash:before\":false},[\"content:\\\"\\ue070\\\"\"]],[false,{\".fa-shower:before\":false},[\"content:\\\"\\uf2cc\\\"\"]],[false,{\".fa-shrimp:before\":false},[\"content:\\\"\\ue448\\\"\"]],[false,{\".fa-random:before\":false,\".fa-shuffle:before\":false},[\"content:\\\"\\uf074\\\"\"]],[false,{\".fa-shuttle-space:before\":false,\".fa-space-shuttle:before\":false},[\"content:\\\"\\uf197\\\"\"]],[false,{\".fa-sign-hanging:before\":false,\".fa-sign:before\":false},[\"content:\\\"\\uf4d9\\\"\"]],[false,{\".fa-signal-5:before\":false,\".fa-signal-perfect:before\":false,\".fa-signal:before\":false},[\"content:\\\"\\uf012\\\"\"]],[false,{\".fa-signature:before\":false},[\"content:\\\"\\uf5b7\\\"\"]],[false,{\".fa-map-signs:before\":false,\".fa-signs-post:before\":false},[\"content:\\\"\\uf277\\\"\"]],[false,{\".fa-sim-card:before\":false},[\"content:\\\"\\uf7c4\\\"\"]],[false,{\".fa-sink:before\":false},[\"content:\\\"\\ue06d\\\"\"]],[false,{\".fa-sitemap:before\":false},[\"content:\\\"\\uf0e8\\\"\"]],[false,{\".fa-skull:before\":false},[\"content:\\\"\\uf54c\\\"\"]],[false,{\".fa-skull-crossbones:before\":false},[\"content:\\\"\\uf714\\\"\"]],[false,{\".fa-slash:before\":false},[\"content:\\\"\\uf715\\\"\"]],[false,{\".fa-sleigh:before\":false},[\"content:\\\"\\uf7cc\\\"\"]],[false,{\".fa-sliders-h:before\":false,\".fa-sliders:before\":false},[\"content:\\\"\\uf1de\\\"\"]],[false,{\".fa-smog:before\":false},[\"content:\\\"\\uf75f\\\"\"]],[false,{\".fa-smoking:before\":false},[\"content:\\\"\\uf48d\\\"\"]],[false,{\".fa-snowflake:before\":false},[\"content:\\\"\\uf2dc\\\"\"]],[false,{\".fa-snowman:before\":false},[\"content:\\\"\\uf7d0\\\"\"]],[false,{\".fa-snowplow:before\":false},[\"content:\\\"\\uf7d2\\\"\"]],[false,{\".fa-soap:before\":false},[\"content:\\\"\\ue06e\\\"\"]],[false,{\".fa-socks:before\":false},[\"content:\\\"\\uf696\\\"\"]],[false,{\".fa-solar-panel:before\":false},[\"content:\\\"\\uf5ba\\\"\"]],[false,{\".fa-sort:before\":false,\".fa-unsorted:before\":false},[\"content:\\\"\\uf0dc\\\"\"]],[false,{\".fa-sort-desc:before\":false,\".fa-sort-down:before\":false},[\"content:\\\"\\uf0dd\\\"\"]],[false,{\".fa-sort-asc:before\":false,\".fa-sort-up:before\":false},[\"content:\\\"\\uf0de\\\"\"]],[false,{\".fa-spa:before\":false},[\"content:\\\"\\uf5bb\\\"\"]],[false,{\".fa-pastafarianism:before\":false,\".fa-spaghetti-monster-flying:before\":false},[\"content:\\\"\\uf67b\\\"\"]],[false,{\".fa-spell-check:before\":false},[\"content:\\\"\\uf891\\\"\"]],[false,{\".fa-spider:before\":false},[\"content:\\\"\\uf717\\\"\"]],[false,{\".fa-spinner:before\":false},[\"content:\\\"\\uf110\\\"\"]],[false,{\".fa-splotch:before\":false},[\"content:\\\"\\uf5bc\\\"\"]],[false,{\".fa-spoon:before\":false,\".fa-utensil-spoon:before\":false},[\"content:\\\"\\uf2e5\\\"\"]],[false,{\".fa-spray-can:before\":false},[\"content:\\\"\\uf5bd\\\"\"]],[false,{\".fa-air-freshener:before\":false,\".fa-spray-can-sparkles:before\":false},[\"content:\\\"\\uf5d0\\\"\"]],[false,{\".fa-square:before\":false},[\"content:\\\"\\uf0c8\\\"\"]],[false,{\".fa-external-link-square:before\":false,\".fa-square-arrow-up-right:before\":false},[\"content:\\\"\\uf14c\\\"\"]],[false,{\".fa-caret-square-down:before\":false,\".fa-square-caret-down:before\":false},[\"content:\\\"\\uf150\\\"\"]],[false,{\".fa-caret-square-left:before\":false,\".fa-square-caret-left:before\":false},[\"content:\\\"\\uf191\\\"\"]],[false,{\".fa-caret-square-right:before\":false,\".fa-square-caret-right:before\":false},[\"content:\\\"\\uf152\\\"\"]],[false,{\".fa-caret-square-up:before\":false,\".fa-square-caret-up:before\":false},[\"content:\\\"\\uf151\\\"\"]],[false,{\".fa-check-square:before\":false,\".fa-square-check:before\":false},[\"content:\\\"\\uf14a\\\"\"]],[false,{\".fa-envelope-square:before\":false,\".fa-square-envelope:before\":false},[\"content:\\\"\\uf199\\\"\"]],[false,{\".fa-square-full:before\":false},[\"content:\\\"\\uf45c\\\"\"]],[false,{\".fa-h-square:before\":false,\".fa-square-h:before\":false},[\"content:\\\"\\uf0fd\\\"\"]],[false,{\".fa-minus-square:before\":false,\".fa-square-minus:before\":false},[\"content:\\\"\\uf146\\\"\"]],[false,{\".fa-square-nfi:before\":false},[\"content:\\\"\\ue576\\\"\"]],[false,{\".fa-parking:before\":false,\".fa-square-parking:before\":false},[\"content:\\\"\\uf540\\\"\"]],[false,{\".fa-pen-square:before\":false,\".fa-pencil-square:before\":false,\".fa-square-pen:before\":false},[\"content:\\\"\\uf14b\\\"\"]],[false,{\".fa-square-person-confined:before\":false},[\"content:\\\"\\ue577\\\"\"]],[false,{\".fa-phone-square:before\":false,\".fa-square-phone:before\":false},[\"content:\\\"\\uf098\\\"\"]],[false,{\".fa-phone-square-alt:before\":false,\".fa-square-phone-flip:before\":false},[\"content:\\\"\\uf87b\\\"\"]],[false,{\".fa-plus-square:before\":false,\".fa-square-plus:before\":false},[\"content:\\\"\\uf0fe\\\"\"]],[false,{\".fa-poll-h:before\":false,\".fa-square-poll-horizontal:before\":false},[\"content:\\\"\\uf682\\\"\"]],[false,{\".fa-poll:before\":false,\".fa-square-poll-vertical:before\":false},[\"content:\\\"\\uf681\\\"\"]],[false,{\".fa-square-root-alt:before\":false,\".fa-square-root-variable:before\":false},[\"content:\\\"\\uf698\\\"\"]],[false,{\".fa-rss-square:before\":false,\".fa-square-rss:before\":false},[\"content:\\\"\\uf143\\\"\"]],[false,{\".fa-share-alt-square:before\":false,\".fa-square-share-nodes:before\":false},[\"content:\\\"\\uf1e1\\\"\"]],[false,{\".fa-external-link-square-alt:before\":false,\".fa-square-up-right:before\":false},[\"content:\\\"\\uf360\\\"\"]],[false,{\".fa-square-virus:before\":false},[\"content:\\\"\\ue578\\\"\"]],[false,{\".fa-square-xmark:before\":false,\".fa-times-square:before\":false,\".fa-xmark-square:before\":false},[\"content:\\\"\\uf2d3\\\"\"]],[false,{\".fa-rod-asclepius:before\":false,\".fa-rod-snake:before\":false,\".fa-staff-aesculapius:before\":false,\".fa-staff-snake:before\":false},[\"content:\\\"\\ue579\\\"\"]],[false,{\".fa-stairs:before\":false},[\"content:\\\"\\ue289\\\"\"]],[false,{\".fa-stamp:before\":false},[\"content:\\\"\\uf5bf\\\"\"]],[false,{\".fa-star:before\":false},[\"content:\\\"\\uf005\\\"\"]],[false,{\".fa-star-and-crescent:before\":false},[\"content:\\\"\\uf699\\\"\"]],[false,{\".fa-star-half:before\":false},[\"content:\\\"\\uf089\\\"\"]],[false,{\".fa-star-half-alt:before\":false,\".fa-star-half-stroke:before\":false},[\"content:\\\"\\uf5c0\\\"\"]],[false,{\".fa-star-of-david:before\":false},[\"content:\\\"\\uf69a\\\"\"]],[false,{\".fa-star-of-life:before\":false},[\"content:\\\"\\uf621\\\"\"]],[false,{\".fa-gbp:before\":false,\".fa-pound-sign:before\":false,\".fa-sterling-sign:before\":false},[\"content:\\\"\\uf154\\\"\"]],[false,{\".fa-stethoscope:before\":false},[\"content:\\\"\\uf0f1\\\"\"]],[false,{\".fa-stop:before\":false},[\"content:\\\"\\uf04d\\\"\"]],[false,{\".fa-stopwatch:before\":false},[\"content:\\\"\\uf2f2\\\"\"]],[false,{\".fa-stopwatch-20:before\":false},[\"content:\\\"\\ue06f\\\"\"]],[false,{\".fa-store:before\":false},[\"content:\\\"\\uf54e\\\"\"]],[false,{\".fa-store-slash:before\":false},[\"content:\\\"\\ue071\\\"\"]],[false,{\".fa-street-view:before\":false},[\"content:\\\"\\uf21d\\\"\"]],[false,{\".fa-strikethrough:before\":false},[\"content:\\\"\\uf0cc\\\"\"]],[false,{\".fa-stroopwafel:before\":false},[\"content:\\\"\\uf551\\\"\"]],[false,{\".fa-subscript:before\":false},[\"content:\\\"\\uf12c\\\"\"]],[false,{\".fa-suitcase:before\":false},[\"content:\\\"\\uf0f2\\\"\"]],[false,{\".fa-medkit:before\":false,\".fa-suitcase-medical:before\":false},[\"content:\\\"\\uf0fa\\\"\"]],[false,{\".fa-suitcase-rolling:before\":false},[\"content:\\\"\\uf5c1\\\"\"]],[false,{\".fa-sun:before\":false},[\"content:\\\"\\uf185\\\"\"]],[false,{\".fa-sun-plant-wilt:before\":false},[\"content:\\\"\\ue57a\\\"\"]],[false,{\".fa-superscript:before\":false},[\"content:\\\"\\uf12b\\\"\"]],[false,{\".fa-swatchbook:before\":false},[\"content:\\\"\\uf5c3\\\"\"]],[false,{\".fa-synagogue:before\":false},[\"content:\\\"\\uf69b\\\"\"]],[false,{\".fa-syringe:before\":false},[\"content:\\\"\\uf48e\\\"\"]],[false,{\".fa-t:before\":false},[\"content:\\\"T\\\"\"]],[false,{\".fa-table:before\":false},[\"content:\\\"\\uf0ce\\\"\"]],[false,{\".fa-table-cells:before\":false,\".fa-th:before\":false},[\"content:\\\"\\uf00a\\\"\"]],[false,{\".fa-table-cells-large:before\":false,\".fa-th-large:before\":false},[\"content:\\\"\\uf009\\\"\"]],[false,{\".fa-columns:before\":false,\".fa-table-columns:before\":false},[\"content:\\\"\\uf0db\\\"\"]],[false,{\".fa-table-list:before\":false,\".fa-th-list:before\":false},[\"content:\\\"\\uf00b\\\"\"]],[false,{\".fa-ping-pong-paddle-ball:before\":false,\".fa-table-tennis-paddle-ball:before\":false,\".fa-table-tennis:before\":false},[\"content:\\\"\\uf45d\\\"\"]],[false,{\".fa-tablet-android:before\":false,\".fa-tablet:before\":false},[\"content:\\\"\\uf3fb\\\"\"]],[false,{\".fa-tablet-button:before\":false},[\"content:\\\"\\uf10a\\\"\"]],[false,{\".fa-tablet-alt:before\":false,\".fa-tablet-screen-button:before\":false},[\"content:\\\"\\uf3fa\\\"\"]],[false,{\".fa-tablets:before\":false},[\"content:\\\"\\uf490\\\"\"]],[false,{\".fa-digital-tachograph:before\":false,\".fa-tachograph-digital:before\":false},[\"content:\\\"\\uf566\\\"\"]],[false,{\".fa-tag:before\":false},[\"content:\\\"\\uf02b\\\"\"]],[false,{\".fa-tags:before\":false},[\"content:\\\"\\uf02c\\\"\"]],[false,{\".fa-tape:before\":false},[\"content:\\\"\\uf4db\\\"\"]],[false,{\".fa-tarp:before\":false},[\"content:\\\"\\ue57b\\\"\"]],[false,{\".fa-tarp-droplet:before\":false},[\"content:\\\"\\ue57c\\\"\"]],[false,{\".fa-cab:before\":false,\".fa-taxi:before\":false},[\"content:\\\"\\uf1ba\\\"\"]],[false,{\".fa-teeth:before\":false},[\"content:\\\"\\uf62e\\\"\"]],[false,{\".fa-teeth-open:before\":false},[\"content:\\\"\\uf62f\\\"\"]],[false,{\".fa-temperature-arrow-down:before\":false,\".fa-temperature-down:before\":false},[\"content:\\\"\\ue03f\\\"\"]],[false,{\".fa-temperature-arrow-up:before\":false,\".fa-temperature-up:before\":false},[\"content:\\\"\\ue040\\\"\"]],[false,{\".fa-temperature-0:before\":false,\".fa-temperature-empty:before\":false,\".fa-thermometer-0:before\":false,\".fa-thermometer-empty:before\":false},[\"content:\\\"\\uf2cb\\\"\"]],[false,{\".fa-temperature-4:before\":false,\".fa-temperature-full:before\":false,\".fa-thermometer-4:before\":false,\".fa-thermometer-full:before\":false},[\"content:\\\"\\uf2c7\\\"\"]],[false,{\".fa-temperature-2:before\":false,\".fa-temperature-half:before\":false,\".fa-thermometer-2:before\":false,\".fa-thermometer-half:before\":false},[\"content:\\\"\\uf2c9\\\"\"]],[false,{\".fa-temperature-high:before\":false},[\"content:\\\"\\uf769\\\"\"]],[false,{\".fa-temperature-low:before\":false},[\"content:\\\"\\uf76b\\\"\"]],[false,{\".fa-temperature-1:before\":false,\".fa-temperature-quarter:before\":false,\".fa-thermometer-1:before\":false,\".fa-thermometer-quarter:before\":false},[\"content:\\\"\\uf2ca\\\"\"]],[false,{\".fa-temperature-3:before\":false,\".fa-temperature-three-quarters:before\":false,\".fa-thermometer-3:before\":false,\".fa-thermometer-three-quarters:before\":false},[\"content:\\\"\\uf2c8\\\"\"]],[false,{\".fa-tenge-sign:before\":false,\".fa-tenge:before\":false},[\"content:\\\"\\uf7d7\\\"\"]],[false,{\".fa-tent:before\":false},[\"content:\\\"\\ue57d\\\"\"]],[false,{\".fa-tent-arrow-down-to-line:before\":false},[\"content:\\\"\\ue57e\\\"\"]],[false,{\".fa-tent-arrow-left-right:before\":false},[\"content:\\\"\\ue57f\\\"\"]],[false,{\".fa-tent-arrow-turn-left:before\":false},[\"content:\\\"\\ue580\\\"\"]],[false,{\".fa-tent-arrows-down:before\":false},[\"content:\\\"\\ue581\\\"\"]],[false,{\".fa-tents:before\":false},[\"content:\\\"\\ue582\\\"\"]],[false,{\".fa-terminal:before\":false},[\"content:\\\"\\uf120\\\"\"]],[false,{\".fa-text-height:before\":false},[\"content:\\\"\\uf034\\\"\"]],[false,{\".fa-remove-format:before\":false,\".fa-text-slash:before\":false},[\"content:\\\"\\uf87d\\\"\"]],[false,{\".fa-text-width:before\":false},[\"content:\\\"\\uf035\\\"\"]],[false,{\".fa-thermometer:before\":false},[\"content:\\\"\\uf491\\\"\"]],[false,{\".fa-thumbs-down:before\":false},[\"content:\\\"\\uf165\\\"\"]],[false,{\".fa-thumbs-up:before\":false},[\"content:\\\"\\uf164\\\"\"]],[false,{\".fa-thumb-tack:before\":false,\".fa-thumbtack:before\":false},[\"content:\\\"\\uf08d\\\"\"]],[false,{\".fa-ticket:before\":false},[\"content:\\\"\\uf145\\\"\"]],[false,{\".fa-ticket-alt:before\":false,\".fa-ticket-simple:before\":false},[\"content:\\\"\\uf3ff\\\"\"]],[false,{\".fa-timeline:before\":false},[\"content:\\\"\\ue29c\\\"\"]],[false,{\".fa-toggle-off:before\":false},[\"content:\\\"\\uf204\\\"\"]],[false,{\".fa-toggle-on:before\":false},[\"content:\\\"\\uf205\\\"\"]],[false,{\".fa-toilet:before\":false},[\"content:\\\"\\uf7d8\\\"\"]],[false,{\".fa-toilet-paper:before\":false},[\"content:\\\"\\uf71e\\\"\"]],[false,{\".fa-toilet-paper-slash:before\":false},[\"content:\\\"\\ue072\\\"\"]],[false,{\".fa-toilet-portable:before\":false},[\"content:\\\"\\ue583\\\"\"]],[false,{\".fa-toilets-portable:before\":false},[\"content:\\\"\\ue584\\\"\"]],[false,{\".fa-toolbox:before\":false},[\"content:\\\"\\uf552\\\"\"]],[false,{\".fa-tooth:before\":false},[\"content:\\\"\\uf5c9\\\"\"]],[false,{\".fa-torii-gate:before\":false},[\"content:\\\"\\uf6a1\\\"\"]],[false,{\".fa-tornado:before\":false},[\"content:\\\"\\uf76f\\\"\"]],[false,{\".fa-broadcast-tower:before\":false,\".fa-tower-broadcast:before\":false},[\"content:\\\"\\uf519\\\"\"]],[false,{\".fa-tower-cell:before\":false},[\"content:\\\"\\ue585\\\"\"]],[false,{\".fa-tower-observation:before\":false},[\"content:\\\"\\ue586\\\"\"]],[false,{\".fa-tractor:before\":false},[\"content:\\\"\\uf722\\\"\"]],[false,{\".fa-trademark:before\":false},[\"content:\\\"\\uf25c\\\"\"]],[false,{\".fa-traffic-light:before\":false},[\"content:\\\"\\uf637\\\"\"]],[false,{\".fa-trailer:before\":false},[\"content:\\\"\\ue041\\\"\"]],[false,{\".fa-train:before\":false},[\"content:\\\"\\uf238\\\"\"]],[false,{\".fa-subway:before\":false,\".fa-train-subway:before\":false},[\"content:\\\"\\uf239\\\"\"]],[false,{\".fa-train-tram:before\":false,\".fa-tram:before\":false},[\"content:\\\"\\uf7da\\\"\"]],[false,{\".fa-transgender-alt:before\":false,\".fa-transgender:before\":false},[\"content:\\\"\\uf225\\\"\"]],[false,{\".fa-trash:before\":false},[\"content:\\\"\\uf1f8\\\"\"]],[false,{\".fa-trash-arrow-up:before\":false,\".fa-trash-restore:before\":false},[\"content:\\\"\\uf829\\\"\"]],[false,{\".fa-trash-alt:before\":false,\".fa-trash-can:before\":false},[\"content:\\\"\\uf2ed\\\"\"]],[false,{\".fa-trash-can-arrow-up:before\":false,\".fa-trash-restore-alt:before\":false},[\"content:\\\"\\uf82a\\\"\"]],[false,{\".fa-tree:before\":false},[\"content:\\\"\\uf1bb\\\"\"]],[false,{\".fa-tree-city:before\":false},[\"content:\\\"\\ue587\\\"\"]],[false,{\".fa-exclamation-triangle:before\":false,\".fa-triangle-exclamation:before\":false,\".fa-warning:before\":false},[\"content:\\\"\\uf071\\\"\"]],[false,{\".fa-trophy:before\":false},[\"content:\\\"\\uf091\\\"\"]],[false,{\".fa-trowel:before\":false},[\"content:\\\"\\ue589\\\"\"]],[false,{\".fa-trowel-bricks:before\":false},[\"content:\\\"\\ue58a\\\"\"]],[false,{\".fa-truck:before\":false},[\"content:\\\"\\uf0d1\\\"\"]],[false,{\".fa-truck-arrow-right:before\":false},[\"content:\\\"\\ue58b\\\"\"]],[false,{\".fa-truck-droplet:before\":false},[\"content:\\\"\\ue58c\\\"\"]],[false,{\".fa-shipping-fast:before\":false,\".fa-truck-fast:before\":false},[\"content:\\\"\\uf48b\\\"\"]],[false,{\".fa-truck-field:before\":false},[\"content:\\\"\\ue58d\\\"\"]],[false,{\".fa-truck-field-un:before\":false},[\"content:\\\"\\ue58e\\\"\"]],[false,{\".fa-truck-front:before\":false},[\"content:\\\"\\ue2b7\\\"\"]],[false,{\".fa-ambulance:before\":false,\".fa-truck-medical:before\":false},[\"content:\\\"\\uf0f9\\\"\"]],[false,{\".fa-truck-monster:before\":false},[\"content:\\\"\\uf63b\\\"\"]],[false,{\".fa-truck-moving:before\":false},[\"content:\\\"\\uf4df\\\"\"]],[false,{\".fa-truck-pickup:before\":false},[\"content:\\\"\\uf63c\\\"\"]],[false,{\".fa-truck-plane:before\":false},[\"content:\\\"\\ue58f\\\"\"]],[false,{\".fa-truck-loading:before\":false,\".fa-truck-ramp-box:before\":false},[\"content:\\\"\\uf4de\\\"\"]],[false,{\".fa-teletype:before\":false,\".fa-tty:before\":false},[\"content:\\\"\\uf1e4\\\"\"]],[false,{\".fa-try:before\":false,\".fa-turkish-lira-sign:before\":false,\".fa-turkish-lira:before\":false},[\"content:\\\"\\ue2bb\\\"\"]],[false,{\".fa-level-down-alt:before\":false,\".fa-turn-down:before\":false},[\"content:\\\"\\uf3be\\\"\"]],[false,{\".fa-level-up-alt:before\":false,\".fa-turn-up:before\":false},[\"content:\\\"\\uf3bf\\\"\"]],[false,{\".fa-television:before\":false,\".fa-tv-alt:before\":false,\".fa-tv:before\":false},[\"content:\\\"\\uf26c\\\"\"]],[false,{\".fa-u:before\":false},[\"content:\\\"U\\\"\"]],[false,{\".fa-umbrella:before\":false},[\"content:\\\"\\uf0e9\\\"\"]],[false,{\".fa-umbrella-beach:before\":false},[\"content:\\\"\\uf5ca\\\"\"]],[false,{\".fa-underline:before\":false},[\"content:\\\"\\uf0cd\\\"\"]],[false,{\".fa-universal-access:before\":false},[\"content:\\\"\\uf29a\\\"\"]],[false,{\".fa-unlock:before\":false},[\"content:\\\"\\uf09c\\\"\"]],[false,{\".fa-unlock-alt:before\":false,\".fa-unlock-keyhole:before\":false},[\"content:\\\"\\uf13e\\\"\"]],[false,{\".fa-arrows-alt-v:before\":false,\".fa-up-down:before\":false},[\"content:\\\"\\uf338\\\"\"]],[false,{\".fa-arrows-alt:before\":false,\".fa-up-down-left-right:before\":false},[\"content:\\\"\\uf0b2\\\"\"]],[false,{\".fa-long-arrow-alt-up:before\":false,\".fa-up-long:before\":false},[\"content:\\\"\\uf30c\\\"\"]],[false,{\".fa-expand-alt:before\":false,\".fa-up-right-and-down-left-from-center:before\":false},[\"content:\\\"\\uf424\\\"\"]],[false,{\".fa-external-link-alt:before\":false,\".fa-up-right-from-square:before\":false},[\"content:\\\"\\uf35d\\\"\"]],[false,{\".fa-upload:before\":false},[\"content:\\\"\\uf093\\\"\"]],[false,{\".fa-user:before\":false},[\"content:\\\"\\uf007\\\"\"]],[false,{\".fa-user-astronaut:before\":false},[\"content:\\\"\\uf4fb\\\"\"]],[false,{\".fa-user-check:before\":false},[\"content:\\\"\\uf4fc\\\"\"]],[false,{\".fa-user-clock:before\":false},[\"content:\\\"\\uf4fd\\\"\"]],[false,{\".fa-user-doctor:before\":false,\".fa-user-md:before\":false},[\"content:\\\"\\uf0f0\\\"\"]],[false,{\".fa-user-cog:before\":false,\".fa-user-gear:before\":false},[\"content:\\\"\\uf4fe\\\"\"]],[false,{\".fa-user-graduate:before\":false},[\"content:\\\"\\uf501\\\"\"]],[false,{\".fa-user-friends:before\":false,\".fa-user-group:before\":false},[\"content:\\\"\\uf500\\\"\"]],[false,{\".fa-user-injured:before\":false},[\"content:\\\"\\uf728\\\"\"]],[false,{\".fa-user-alt:before\":false,\".fa-user-large:before\":false},[\"content:\\\"\\uf406\\\"\"]],[false,{\".fa-user-alt-slash:before\":false,\".fa-user-large-slash:before\":false},[\"content:\\\"\\uf4fa\\\"\"]],[false,{\".fa-user-lock:before\":false},[\"content:\\\"\\uf502\\\"\"]],[false,{\".fa-user-minus:before\":false},[\"content:\\\"\\uf503\\\"\"]],[false,{\".fa-user-ninja:before\":false},[\"content:\\\"\\uf504\\\"\"]],[false,{\".fa-user-nurse:before\":false},[\"content:\\\"\\uf82f\\\"\"]],[false,{\".fa-user-edit:before\":false,\".fa-user-pen:before\":false},[\"content:\\\"\\uf4ff\\\"\"]],[false,{\".fa-user-plus:before\":false},[\"content:\\\"\\uf234\\\"\"]],[false,{\".fa-user-secret:before\":false},[\"content:\\\"\\uf21b\\\"\"]],[false,{\".fa-user-shield:before\":false},[\"content:\\\"\\uf505\\\"\"]],[false,{\".fa-user-slash:before\":false},[\"content:\\\"\\uf506\\\"\"]],[false,{\".fa-user-tag:before\":false},[\"content:\\\"\\uf507\\\"\"]],[false,{\".fa-user-tie:before\":false},[\"content:\\\"\\uf508\\\"\"]],[false,{\".fa-user-times:before\":false,\".fa-user-xmark:before\":false},[\"content:\\\"\\uf235\\\"\"]],[false,{\".fa-users:before\":false},[\"content:\\\"\\uf0c0\\\"\"]],[false,{\".fa-users-between-lines:before\":false},[\"content:\\\"\\ue591\\\"\"]],[false,{\".fa-users-cog:before\":false,\".fa-users-gear:before\":false},[\"content:\\\"\\uf509\\\"\"]],[false,{\".fa-users-line:before\":false},[\"content:\\\"\\ue592\\\"\"]],[false,{\".fa-users-rays:before\":false},[\"content:\\\"\\ue593\\\"\"]],[false,{\".fa-users-rectangle:before\":false},[\"content:\\\"\\ue594\\\"\"]],[false,{\".fa-users-slash:before\":false},[\"content:\\\"\\ue073\\\"\"]],[false,{\".fa-users-viewfinder:before\":false},[\"content:\\\"\\ue595\\\"\"]],[false,{\".fa-cutlery:before\":false,\".fa-utensils:before\":false},[\"content:\\\"\\uf2e7\\\"\"]],[false,{\".fa-v:before\":false},[\"content:\\\"V\\\"\"]],[false,{\".fa-shuttle-van:before\":false,\".fa-van-shuttle:before\":false},[\"content:\\\"\\uf5b6\\\"\"]],[false,{\".fa-vault:before\":false},[\"content:\\\"\\ue2c5\\\"\"]],[false,{\".fa-vector-square:before\":false},[\"content:\\\"\\uf5cb\\\"\"]],[false,{\".fa-venus:before\":false},[\"content:\\\"\\uf221\\\"\"]],[false,{\".fa-venus-double:before\":false},[\"content:\\\"\\uf226\\\"\"]],[false,{\".fa-venus-mars:before\":false},[\"content:\\\"\\uf228\\\"\"]],[false,{\".fa-vest:before\":false},[\"content:\\\"\\ue085\\\"\"]],[false,{\".fa-vest-patches:before\":false},[\"content:\\\"\\ue086\\\"\"]],[false,{\".fa-vial:before\":false},[\"content:\\\"\\uf492\\\"\"]],[false,{\".fa-vial-circle-check:before\":false},[\"content:\\\"\\ue596\\\"\"]],[false,{\".fa-vial-virus:before\":false},[\"content:\\\"\\ue597\\\"\"]],[false,{\".fa-vials:before\":false},[\"content:\\\"\\uf493\\\"\"]],[false,{\".fa-video-camera:before\":false,\".fa-video:before\":false},[\"content:\\\"\\uf03d\\\"\"]],[false,{\".fa-video-slash:before\":false},[\"content:\\\"\\uf4e2\\\"\"]],[false,{\".fa-vihara:before\":false},[\"content:\\\"\\uf6a7\\\"\"]],[false,{\".fa-virus:before\":false},[\"content:\\\"\\ue074\\\"\"]],[false,{\".fa-virus-covid:before\":false},[\"content:\\\"\\ue4a8\\\"\"]],[false,{\".fa-virus-covid-slash:before\":false},[\"content:\\\"\\ue4a9\\\"\"]],[false,{\".fa-virus-slash:before\":false},[\"content:\\\"\\ue075\\\"\"]],[false,{\".fa-viruses:before\":false},[\"content:\\\"\\ue076\\\"\"]],[false,{\".fa-voicemail:before\":false},[\"content:\\\"\\uf897\\\"\"]],[false,{\".fa-volcano:before\":false},[\"content:\\\"\\uf770\\\"\"]],[false,{\".fa-volleyball-ball:before\":false,\".fa-volleyball:before\":false},[\"content:\\\"\\uf45f\\\"\"]],[false,{\".fa-volume-high:before\":false,\".fa-volume-up:before\":false},[\"content:\\\"\\uf028\\\"\"]],[false,{\".fa-volume-down:before\":false,\".fa-volume-low:before\":false},[\"content:\\\"\\uf027\\\"\"]],[false,{\".fa-volume-off:before\":false},[\"content:\\\"\\uf026\\\"\"]],[false,{\".fa-volume-mute:before\":false,\".fa-volume-times:before\":false,\".fa-volume-xmark:before\":false},[\"content:\\\"\\uf6a9\\\"\"]],[false,{\".fa-vr-cardboard:before\":false},[\"content:\\\"\\uf729\\\"\"]],[false,{\".fa-w:before\":false},[\"content:\\\"W\\\"\"]],[false,{\".fa-walkie-talkie:before\":false},[\"content:\\\"\\uf8ef\\\"\"]],[false,{\".fa-wallet:before\":false},[\"content:\\\"\\uf555\\\"\"]],[false,{\".fa-magic:before\":false,\".fa-wand-magic:before\":false},[\"content:\\\"\\uf0d0\\\"\"]],[false,{\".fa-magic-wand-sparkles:before\":false,\".fa-wand-magic-sparkles:before\":false},[\"content:\\\"\\ue2ca\\\"\"]],[false,{\".fa-wand-sparkles:before\":false},[\"content:\\\"\\uf72b\\\"\"]],[false,{\".fa-warehouse:before\":false},[\"content:\\\"\\uf494\\\"\"]],[false,{\".fa-water:before\":false},[\"content:\\\"\\uf773\\\"\"]],[false,{\".fa-ladder-water:before\":false,\".fa-swimming-pool:before\":false,\".fa-water-ladder:before\":false},[\"content:\\\"\\uf5c5\\\"\"]],[false,{\".fa-wave-square:before\":false},[\"content:\\\"\\uf83e\\\"\"]],[false,{\".fa-weight-hanging:before\":false},[\"content:\\\"\\uf5cd\\\"\"]],[false,{\".fa-weight-scale:before\":false,\".fa-weight:before\":false},[\"content:\\\"\\uf496\\\"\"]],[false,{\".fa-wheat-alt:before\":false,\".fa-wheat-awn:before\":false},[\"content:\\\"\\ue2cd\\\"\"]],[false,{\".fa-wheat-awn-circle-exclamation:before\":false},[\"content:\\\"\\ue598\\\"\"]],[false,{\".fa-wheelchair:before\":false},[\"content:\\\"\\uf193\\\"\"]],[false,{\".fa-wheelchair-alt:before\":false,\".fa-wheelchair-move:before\":false},[\"content:\\\"\\ue2ce\\\"\"]],[false,{\".fa-glass-whiskey:before\":false,\".fa-whiskey-glass:before\":false},[\"content:\\\"\\uf7a0\\\"\"]],[false,{\".fa-wifi-3:before\":false,\".fa-wifi-strong:before\":false,\".fa-wifi:before\":false},[\"content:\\\"\\uf1eb\\\"\"]],[false,{\".fa-wind:before\":false},[\"content:\\\"\\uf72e\\\"\"]],[false,{\".fa-window-maximize:before\":false},[\"content:\\\"\\uf2d0\\\"\"]],[false,{\".fa-window-minimize:before\":false},[\"content:\\\"\\uf2d1\\\"\"]],[false,{\".fa-window-restore:before\":false},[\"content:\\\"\\uf2d2\\\"\"]],[false,{\".fa-wine-bottle:before\":false},[\"content:\\\"\\uf72f\\\"\"]],[false,{\".fa-wine-glass:before\":false},[\"content:\\\"\\uf4e3\\\"\"]],[false,{\".fa-wine-glass-alt:before\":false,\".fa-wine-glass-empty:before\":false},[\"content:\\\"\\uf5ce\\\"\"]],[false,{\".fa-krw:before\":false,\".fa-won-sign:before\":false,\".fa-won:before\":false},[\"content:\\\"\\uf159\\\"\"]],[false,{\".fa-worm:before\":false},[\"content:\\\"\\ue599\\\"\"]],[false,{\".fa-wrench:before\":false},[\"content:\\\"\\uf0ad\\\"\"]],[false,{\".fa-x:before\":false},[\"content:\\\"X\\\"\"]],[false,{\".fa-x-ray:before\":false},[\"content:\\\"\\uf497\\\"\"]],[false,{\".fa-close:before\":false,\".fa-multiply:before\":false,\".fa-remove:before\":false,\".fa-times:before\":false,\".fa-xmark:before\":false},[\"content:\\\"\\uf00d\\\"\"]],[false,{\".fa-xmarks-lines:before\":false},[\"content:\\\"\\ue59a\\\"\"]],[false,{\".fa-y:before\":false},[\"content:\\\"Y\\\"\"]],[false,{\".fa-cny:before\":false,\".fa-jpy:before\":false,\".fa-rmb:before\":false,\".fa-yen-sign:before\":false,\".fa-yen:before\":false},[\"content:\\\"\\uf157\\\"\"]],[false,{\".fa-yin-yang:before\":false},[\"content:\\\"\\uf6ad\\\"\"]],[false,{\".fa-z:before\":false},[\"content:\\\"Z\\\"\"]],[false,{\".fa-sr-only\":false,\".fa-sr-only-focusable:not(:focus)\":false,\".sr-only\":false,\".sr-only-focusable:not(:focus)\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"white-space:nowrap\",\"border-width:0\"]],[true,{\":host\":true,\":root\":true},[\"--fa-font-brands:normal 400 1em\\/1 \\\"Font Awesome 6 Brands\\\"\"]],[true,\"@font-face{font-family:\\\"Font Awesome 6 Brands\\\";font-style:normal;font-weight:400;font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\")}\"],[false,{\".fa-brands\":false,\".fab\":false},[\"font-family:\\\"Font Awesome 6 Brands\\\"\",\"font-weight:400\"]],[false,{\".fa-42-group:before\":false,\".fa-innosoft:before\":false},[\"content:\\\"\\ue080\\\"\"]],[false,{\".fa-500px:before\":false},[\"content:\\\"\\uf26e\\\"\"]],[false,{\".fa-accessible-icon:before\":false},[\"content:\\\"\\uf368\\\"\"]],[false,{\".fa-accusoft:before\":false},[\"content:\\\"\\uf369\\\"\"]],[false,{\".fa-adn:before\":false},[\"content:\\\"\\uf170\\\"\"]],[false,{\".fa-adversal:before\":false},[\"content:\\\"\\uf36a\\\"\"]],[false,{\".fa-affiliatetheme:before\":false},[\"content:\\\"\\uf36b\\\"\"]],[false,{\".fa-airbnb:before\":false},[\"content:\\\"\\uf834\\\"\"]],[false,{\".fa-algolia:before\":false},[\"content:\\\"\\uf36c\\\"\"]],[false,{\".fa-alipay:before\":false},[\"content:\\\"\\uf642\\\"\"]],[false,{\".fa-amazon:before\":false},[\"content:\\\"\\uf270\\\"\"]],[false,{\".fa-amazon-pay:before\":false},[\"content:\\\"\\uf42c\\\"\"]],[false,{\".fa-amilia:before\":false},[\"content:\\\"\\uf36d\\\"\"]],[false,{\".fa-android:before\":false},[\"content:\\\"\\uf17b\\\"\"]],[false,{\".fa-angellist:before\":false},[\"content:\\\"\\uf209\\\"\"]],[false,{\".fa-angrycreative:before\":false},[\"content:\\\"\\uf36e\\\"\"]],[false,{\".fa-angular:before\":false},[\"content:\\\"\\uf420\\\"\"]],[false,{\".fa-app-store:before\":false},[\"content:\\\"\\uf36f\\\"\"]],[false,{\".fa-app-store-ios:before\":false},[\"content:\\\"\\uf370\\\"\"]],[false,{\".fa-apper:before\":false},[\"content:\\\"\\uf371\\\"\"]],[false,{\".fa-apple:before\":false},[\"content:\\\"\\uf179\\\"\"]],[false,{\".fa-apple-pay:before\":false},[\"content:\\\"\\uf415\\\"\"]],[false,{\".fa-artstation:before\":false},[\"content:\\\"\\uf77a\\\"\"]],[false,{\".fa-asymmetrik:before\":false},[\"content:\\\"\\uf372\\\"\"]],[false,{\".fa-atlassian:before\":false},[\"content:\\\"\\uf77b\\\"\"]],[false,{\".fa-audible:before\":false},[\"content:\\\"\\uf373\\\"\"]],[false,{\".fa-autoprefixer:before\":false},[\"content:\\\"\\uf41c\\\"\"]],[false,{\".fa-avianex:before\":false},[\"content:\\\"\\uf374\\\"\"]],[false,{\".fa-aviato:before\":false},[\"content:\\\"\\uf421\\\"\"]],[false,{\".fa-aws:before\":false},[\"content:\\\"\\uf375\\\"\"]],[false,{\".fa-bandcamp:before\":false},[\"content:\\\"\\uf2d5\\\"\"]],[false,{\".fa-battle-net:before\":false},[\"content:\\\"\\uf835\\\"\"]],[false,{\".fa-behance:before\":false},[\"content:\\\"\\uf1b4\\\"\"]],[false,{\".fa-behance-square:before\":false},[\"content:\\\"\\uf1b5\\\"\"]],[false,{\".fa-bilibili:before\":false},[\"content:\\\"\\ue3d9\\\"\"]],[false,{\".fa-bimobject:before\":false},[\"content:\\\"\\uf378\\\"\"]],[false,{\".fa-bitbucket:before\":false},[\"content:\\\"\\uf171\\\"\"]],[false,{\".fa-bitcoin:before\":false},[\"content:\\\"\\uf379\\\"\"]],[false,{\".fa-bity:before\":false},[\"content:\\\"\\uf37a\\\"\"]],[false,{\".fa-black-tie:before\":false},[\"content:\\\"\\uf27e\\\"\"]],[false,{\".fa-blackberry:before\":false},[\"content:\\\"\\uf37b\\\"\"]],[false,{\".fa-blogger:before\":false},[\"content:\\\"\\uf37c\\\"\"]],[false,{\".fa-blogger-b:before\":false},[\"content:\\\"\\uf37d\\\"\"]],[false,{\".fa-bluetooth:before\":false},[\"content:\\\"\\uf293\\\"\"]],[false,{\".fa-bluetooth-b:before\":false},[\"content:\\\"\\uf294\\\"\"]],[false,{\".fa-bootstrap:before\":false},[\"content:\\\"\\uf836\\\"\"]],[false,{\".fa-bots:before\":false},[\"content:\\\"\\ue340\\\"\"]],[false,{\".fa-btc:before\":false},[\"content:\\\"\\uf15a\\\"\"]],[false,{\".fa-buffer:before\":false},[\"content:\\\"\\uf837\\\"\"]],[false,{\".fa-buromobelexperte:before\":false},[\"content:\\\"\\uf37f\\\"\"]],[false,{\".fa-buy-n-large:before\":false},[\"content:\\\"\\uf8a6\\\"\"]],[false,{\".fa-buysellads:before\":false},[\"content:\\\"\\uf20d\\\"\"]],[false,{\".fa-canadian-maple-leaf:before\":false},[\"content:\\\"\\uf785\\\"\"]],[false,{\".fa-cc-amazon-pay:before\":false},[\"content:\\\"\\uf42d\\\"\"]],[false,{\".fa-cc-amex:before\":false},[\"content:\\\"\\uf1f3\\\"\"]],[false,{\".fa-cc-apple-pay:before\":false},[\"content:\\\"\\uf416\\\"\"]],[false,{\".fa-cc-diners-club:before\":false},[\"content:\\\"\\uf24c\\\"\"]],[false,{\".fa-cc-discover:before\":false},[\"content:\\\"\\uf1f2\\\"\"]],[false,{\".fa-cc-jcb:before\":false},[\"content:\\\"\\uf24b\\\"\"]],[false,{\".fa-cc-mastercard:before\":false},[\"content:\\\"\\uf1f1\\\"\"]],[false,{\".fa-cc-paypal:before\":false},[\"content:\\\"\\uf1f4\\\"\"]],[false,{\".fa-cc-stripe:before\":false},[\"content:\\\"\\uf1f5\\\"\"]],[false,{\".fa-cc-visa:before\":false},[\"content:\\\"\\uf1f0\\\"\"]],[false,{\".fa-centercode:before\":false},[\"content:\\\"\\uf380\\\"\"]],[false,{\".fa-centos:before\":false},[\"content:\\\"\\uf789\\\"\"]],[false,{\".fa-chrome:before\":false},[\"content:\\\"\\uf268\\\"\"]],[false,{\".fa-chromecast:before\":false},[\"content:\\\"\\uf838\\\"\"]],[false,{\".fa-cloudflare:before\":false},[\"content:\\\"\\ue07d\\\"\"]],[false,{\".fa-cloudscale:before\":false},[\"content:\\\"\\uf383\\\"\"]],[false,{\".fa-cloudsmith:before\":false},[\"content:\\\"\\uf384\\\"\"]],[false,{\".fa-cloudversify:before\":false},[\"content:\\\"\\uf385\\\"\"]],[false,{\".fa-cmplid:before\":false},[\"content:\\\"\\ue360\\\"\"]],[false,{\".fa-codepen:before\":false},[\"content:\\\"\\uf1cb\\\"\"]],[false,{\".fa-codiepie:before\":false},[\"content:\\\"\\uf284\\\"\"]],[false,{\".fa-confluence:before\":false},[\"content:\\\"\\uf78d\\\"\"]],[false,{\".fa-connectdevelop:before\":false},[\"content:\\\"\\uf20e\\\"\"]],[false,{\".fa-contao:before\":false},[\"content:\\\"\\uf26d\\\"\"]],[false,{\".fa-cotton-bureau:before\":false},[\"content:\\\"\\uf89e\\\"\"]],[false,{\".fa-cpanel:before\":false},[\"content:\\\"\\uf388\\\"\"]],[false,{\".fa-creative-commons:before\":false},[\"content:\\\"\\uf25e\\\"\"]],[false,{\".fa-creative-commons-by:before\":false},[\"content:\\\"\\uf4e7\\\"\"]],[false,{\".fa-creative-commons-nc:before\":false},[\"content:\\\"\\uf4e8\\\"\"]],[false,{\".fa-creative-commons-nc-eu:before\":false},[\"content:\\\"\\uf4e9\\\"\"]],[false,{\".fa-creative-commons-nc-jp:before\":false},[\"content:\\\"\\uf4ea\\\"\"]],[false,{\".fa-creative-commons-nd:before\":false},[\"content:\\\"\\uf4eb\\\"\"]],[false,{\".fa-creative-commons-pd:before\":false},[\"content:\\\"\\uf4ec\\\"\"]],[false,{\".fa-creative-commons-pd-alt:before\":false},[\"content:\\\"\\uf4ed\\\"\"]],[false,{\".fa-creative-commons-remix:before\":false},[\"content:\\\"\\uf4ee\\\"\"]],[false,{\".fa-creative-commons-sa:before\":false},[\"content:\\\"\\uf4ef\\\"\"]],[false,{\".fa-creative-commons-sampling:before\":false},[\"content:\\\"\\uf4f0\\\"\"]],[false,{\".fa-creative-commons-sampling-plus:before\":false},[\"content:\\\"\\uf4f1\\\"\"]],[false,{\".fa-creative-commons-share:before\":false},[\"content:\\\"\\uf4f2\\\"\"]],[false,{\".fa-creative-commons-zero:before\":false},[\"content:\\\"\\uf4f3\\\"\"]],[false,{\".fa-critical-role:before\":false},[\"content:\\\"\\uf6c9\\\"\"]],[false,{\".fa-css3:before\":false},[\"content:\\\"\\uf13c\\\"\"]],[false,{\".fa-css3-alt:before\":false},[\"content:\\\"\\uf38b\\\"\"]],[false,{\".fa-cuttlefish:before\":false},[\"content:\\\"\\uf38c\\\"\"]],[false,{\".fa-d-and-d:before\":false},[\"content:\\\"\\uf38d\\\"\"]],[false,{\".fa-d-and-d-beyond:before\":false},[\"content:\\\"\\uf6ca\\\"\"]],[false,{\".fa-dailymotion:before\":false},[\"content:\\\"\\ue052\\\"\"]],[false,{\".fa-dashcube:before\":false},[\"content:\\\"\\uf210\\\"\"]],[false,{\".fa-deezer:before\":false},[\"content:\\\"\\ue077\\\"\"]],[false,{\".fa-delicious:before\":false},[\"content:\\\"\\uf1a5\\\"\"]],[false,{\".fa-deploydog:before\":false},[\"content:\\\"\\uf38e\\\"\"]],[false,{\".fa-deskpro:before\":false},[\"content:\\\"\\uf38f\\\"\"]],[false,{\".fa-dev:before\":false},[\"content:\\\"\\uf6cc\\\"\"]],[false,{\".fa-deviantart:before\":false},[\"content:\\\"\\uf1bd\\\"\"]],[false,{\".fa-dhl:before\":false},[\"content:\\\"\\uf790\\\"\"]],[false,{\".fa-diaspora:before\":false},[\"content:\\\"\\uf791\\\"\"]],[false,{\".fa-digg:before\":false},[\"content:\\\"\\uf1a6\\\"\"]],[false,{\".fa-digital-ocean:before\":false},[\"content:\\\"\\uf391\\\"\"]],[false,{\".fa-discord:before\":false},[\"content:\\\"\\uf392\\\"\"]],[false,{\".fa-discourse:before\":false},[\"content:\\\"\\uf393\\\"\"]],[false,{\".fa-dochub:before\":false},[\"content:\\\"\\uf394\\\"\"]],[false,{\".fa-docker:before\":false},[\"content:\\\"\\uf395\\\"\"]],[false,{\".fa-draft2digital:before\":false},[\"content:\\\"\\uf396\\\"\"]],[false,{\".fa-dribbble:before\":false},[\"content:\\\"\\uf17d\\\"\"]],[false,{\".fa-dribbble-square:before\":false},[\"content:\\\"\\uf397\\\"\"]],[false,{\".fa-dropbox:before\":false},[\"content:\\\"\\uf16b\\\"\"]],[false,{\".fa-drupal:before\":false},[\"content:\\\"\\uf1a9\\\"\"]],[false,{\".fa-dyalog:before\":false},[\"content:\\\"\\uf399\\\"\"]],[false,{\".fa-earlybirds:before\":false},[\"content:\\\"\\uf39a\\\"\"]],[false,{\".fa-ebay:before\":false},[\"content:\\\"\\uf4f4\\\"\"]],[false,{\".fa-edge:before\":false},[\"content:\\\"\\uf282\\\"\"]],[false,{\".fa-edge-legacy:before\":false},[\"content:\\\"\\ue078\\\"\"]],[false,{\".fa-elementor:before\":false},[\"content:\\\"\\uf430\\\"\"]],[false,{\".fa-ello:before\":false},[\"content:\\\"\\uf5f1\\\"\"]],[false,{\".fa-ember:before\":false},[\"content:\\\"\\uf423\\\"\"]],[false,{\".fa-empire:before\":false},[\"content:\\\"\\uf1d1\\\"\"]],[false,{\".fa-envira:before\":false},[\"content:\\\"\\uf299\\\"\"]],[false,{\".fa-erlang:before\":false},[\"content:\\\"\\uf39d\\\"\"]],[false,{\".fa-ethereum:before\":false},[\"content:\\\"\\uf42e\\\"\"]],[false,{\".fa-etsy:before\":false},[\"content:\\\"\\uf2d7\\\"\"]],[false,{\".fa-evernote:before\":false},[\"content:\\\"\\uf839\\\"\"]],[false,{\".fa-expeditedssl:before\":false},[\"content:\\\"\\uf23e\\\"\"]],[false,{\".fa-facebook:before\":false},[\"content:\\\"\\uf09a\\\"\"]],[false,{\".fa-facebook-f:before\":false},[\"content:\\\"\\uf39e\\\"\"]],[false,{\".fa-facebook-messenger:before\":false},[\"content:\\\"\\uf39f\\\"\"]],[false,{\".fa-facebook-square:before\":false},[\"content:\\\"\\uf082\\\"\"]],[false,{\".fa-fantasy-flight-games:before\":false},[\"content:\\\"\\uf6dc\\\"\"]],[false,{\".fa-fedex:before\":false},[\"content:\\\"\\uf797\\\"\"]],[false,{\".fa-fedora:before\":false},[\"content:\\\"\\uf798\\\"\"]],[false,{\".fa-figma:before\":false},[\"content:\\\"\\uf799\\\"\"]],[false,{\".fa-firefox:before\":false},[\"content:\\\"\\uf269\\\"\"]],[false,{\".fa-firefox-browser:before\":false},[\"content:\\\"\\ue007\\\"\"]],[false,{\".fa-first-order:before\":false},[\"content:\\\"\\uf2b0\\\"\"]],[false,{\".fa-first-order-alt:before\":false},[\"content:\\\"\\uf50a\\\"\"]],[false,{\".fa-firstdraft:before\":false},[\"content:\\\"\\uf3a1\\\"\"]],[false,{\".fa-flickr:before\":false},[\"content:\\\"\\uf16e\\\"\"]],[false,{\".fa-flipboard:before\":false},[\"content:\\\"\\uf44d\\\"\"]],[false,{\".fa-fly:before\":false},[\"content:\\\"\\uf417\\\"\"]],[false,{\".fa-font-awesome-flag:before\":false,\".fa-font-awesome-logo-full:before\":false,\".fa-font-awesome:before\":false},[\"content:\\\"\\uf2b4\\\"\"]],[false,{\".fa-fonticons:before\":false},[\"content:\\\"\\uf280\\\"\"]],[false,{\".fa-fonticons-fi:before\":false},[\"content:\\\"\\uf3a2\\\"\"]],[false,{\".fa-fort-awesome:before\":false},[\"content:\\\"\\uf286\\\"\"]],[false,{\".fa-fort-awesome-alt:before\":false},[\"content:\\\"\\uf3a3\\\"\"]],[false,{\".fa-forumbee:before\":false},[\"content:\\\"\\uf211\\\"\"]],[false,{\".fa-foursquare:before\":false},[\"content:\\\"\\uf180\\\"\"]],[false,{\".fa-free-code-camp:before\":false},[\"content:\\\"\\uf2c5\\\"\"]],[false,{\".fa-freebsd:before\":false},[\"content:\\\"\\uf3a4\\\"\"]],[false,{\".fa-fulcrum:before\":false},[\"content:\\\"\\uf50b\\\"\"]],[false,{\".fa-galactic-republic:before\":false},[\"content:\\\"\\uf50c\\\"\"]],[false,{\".fa-galactic-senate:before\":false},[\"content:\\\"\\uf50d\\\"\"]],[false,{\".fa-get-pocket:before\":false},[\"content:\\\"\\uf265\\\"\"]],[false,{\".fa-gg:before\":false},[\"content:\\\"\\uf260\\\"\"]],[false,{\".fa-gg-circle:before\":false},[\"content:\\\"\\uf261\\\"\"]],[false,{\".fa-git:before\":false},[\"content:\\\"\\uf1d3\\\"\"]],[false,{\".fa-git-alt:before\":false},[\"content:\\\"\\uf841\\\"\"]],[false,{\".fa-git-square:before\":false},[\"content:\\\"\\uf1d2\\\"\"]],[false,{\".fa-github:before\":false},[\"content:\\\"\\uf09b\\\"\"]],[false,{\".fa-github-alt:before\":false},[\"content:\\\"\\uf113\\\"\"]],[false,{\".fa-github-square:before\":false},[\"content:\\\"\\uf092\\\"\"]],[false,{\".fa-gitkraken:before\":false},[\"content:\\\"\\uf3a6\\\"\"]],[false,{\".fa-gitlab:before\":false},[\"content:\\\"\\uf296\\\"\"]],[false,{\".fa-gitter:before\":false},[\"content:\\\"\\uf426\\\"\"]],[false,{\".fa-glide:before\":false},[\"content:\\\"\\uf2a5\\\"\"]],[false,{\".fa-glide-g:before\":false},[\"content:\\\"\\uf2a6\\\"\"]],[false,{\".fa-gofore:before\":false},[\"content:\\\"\\uf3a7\\\"\"]],[false,{\".fa-golang:before\":false},[\"content:\\\"\\ue40f\\\"\"]],[false,{\".fa-goodreads:before\":false},[\"content:\\\"\\uf3a8\\\"\"]],[false,{\".fa-goodreads-g:before\":false},[\"content:\\\"\\uf3a9\\\"\"]],[false,{\".fa-google:before\":false},[\"content:\\\"\\uf1a0\\\"\"]],[false,{\".fa-google-drive:before\":false},[\"content:\\\"\\uf3aa\\\"\"]],[false,{\".fa-google-pay:before\":false},[\"content:\\\"\\ue079\\\"\"]],[false,{\".fa-google-play:before\":false},[\"content:\\\"\\uf3ab\\\"\"]],[false,{\".fa-google-plus:before\":false},[\"content:\\\"\\uf2b3\\\"\"]],[false,{\".fa-google-plus-g:before\":false},[\"content:\\\"\\uf0d5\\\"\"]],[false,{\".fa-google-plus-square:before\":false},[\"content:\\\"\\uf0d4\\\"\"]],[false,{\".fa-google-wallet:before\":false},[\"content:\\\"\\uf1ee\\\"\"]],[false,{\".fa-gratipay:before\":false},[\"content:\\\"\\uf184\\\"\"]],[false,{\".fa-grav:before\":false},[\"content:\\\"\\uf2d6\\\"\"]],[false,{\".fa-gripfire:before\":false},[\"content:\\\"\\uf3ac\\\"\"]],[false,{\".fa-grunt:before\":false},[\"content:\\\"\\uf3ad\\\"\"]],[false,{\".fa-guilded:before\":false},[\"content:\\\"\\ue07e\\\"\"]],[false,{\".fa-gulp:before\":false},[\"content:\\\"\\uf3ae\\\"\"]],[false,{\".fa-hacker-news:before\":false},[\"content:\\\"\\uf1d4\\\"\"]],[false,{\".fa-hacker-news-square:before\":false},[\"content:\\\"\\uf3af\\\"\"]],[false,{\".fa-hackerrank:before\":false},[\"content:\\\"\\uf5f7\\\"\"]],[false,{\".fa-hashnode:before\":false},[\"content:\\\"\\ue499\\\"\"]],[false,{\".fa-hips:before\":false},[\"content:\\\"\\uf452\\\"\"]],[false,{\".fa-hire-a-helper:before\":false},[\"content:\\\"\\uf3b0\\\"\"]],[false,{\".fa-hive:before\":false},[\"content:\\\"\\ue07f\\\"\"]],[false,{\".fa-hooli:before\":false},[\"content:\\\"\\uf427\\\"\"]],[false,{\".fa-hornbill:before\":false},[\"content:\\\"\\uf592\\\"\"]],[false,{\".fa-hotjar:before\":false},[\"content:\\\"\\uf3b1\\\"\"]],[false,{\".fa-houzz:before\":false},[\"content:\\\"\\uf27c\\\"\"]],[false,{\".fa-html5:before\":false},[\"content:\\\"\\uf13b\\\"\"]],[false,{\".fa-hubspot:before\":false},[\"content:\\\"\\uf3b2\\\"\"]],[false,{\".fa-ideal:before\":false},[\"content:\\\"\\ue013\\\"\"]],[false,{\".fa-imdb:before\":false},[\"content:\\\"\\uf2d8\\\"\"]],[false,{\".fa-instagram:before\":false},[\"content:\\\"\\uf16d\\\"\"]],[false,{\".fa-instagram-square:before\":false},[\"content:\\\"\\ue055\\\"\"]],[false,{\".fa-instalod:before\":false},[\"content:\\\"\\ue081\\\"\"]],[false,{\".fa-intercom:before\":false},[\"content:\\\"\\uf7af\\\"\"]],[false,{\".fa-internet-explorer:before\":false},[\"content:\\\"\\uf26b\\\"\"]],[false,{\".fa-invision:before\":false},[\"content:\\\"\\uf7b0\\\"\"]],[false,{\".fa-ioxhost:before\":false},[\"content:\\\"\\uf208\\\"\"]],[false,{\".fa-itch-io:before\":false},[\"content:\\\"\\uf83a\\\"\"]],[false,{\".fa-itunes:before\":false},[\"content:\\\"\\uf3b4\\\"\"]],[false,{\".fa-itunes-note:before\":false},[\"content:\\\"\\uf3b5\\\"\"]],[false,{\".fa-java:before\":false},[\"content:\\\"\\uf4e4\\\"\"]],[false,{\".fa-jedi-order:before\":false},[\"content:\\\"\\uf50e\\\"\"]],[false,{\".fa-jenkins:before\":false},[\"content:\\\"\\uf3b6\\\"\"]],[false,{\".fa-jira:before\":false},[\"content:\\\"\\uf7b1\\\"\"]],[false,{\".fa-joget:before\":false},[\"content:\\\"\\uf3b7\\\"\"]],[false,{\".fa-joomla:before\":false},[\"content:\\\"\\uf1aa\\\"\"]],[false,{\".fa-js:before\":false},[\"content:\\\"\\uf3b8\\\"\"]],[false,{\".fa-js-square:before\":false},[\"content:\\\"\\uf3b9\\\"\"]],[false,{\".fa-jsfiddle:before\":false},[\"content:\\\"\\uf1cc\\\"\"]],[false,{\".fa-kaggle:before\":false},[\"content:\\\"\\uf5fa\\\"\"]],[false,{\".fa-keybase:before\":false},[\"content:\\\"\\uf4f5\\\"\"]],[false,{\".fa-keycdn:before\":false},[\"content:\\\"\\uf3ba\\\"\"]],[false,{\".fa-kickstarter:before\":false},[\"content:\\\"\\uf3bb\\\"\"]],[false,{\".fa-kickstarter-k:before\":false},[\"content:\\\"\\uf3bc\\\"\"]],[false,{\".fa-korvue:before\":false},[\"content:\\\"\\uf42f\\\"\"]],[false,{\".fa-laravel:before\":false},[\"content:\\\"\\uf3bd\\\"\"]],[false,{\".fa-lastfm:before\":false},[\"content:\\\"\\uf202\\\"\"]],[false,{\".fa-lastfm-square:before\":false},[\"content:\\\"\\uf203\\\"\"]],[false,{\".fa-leanpub:before\":false},[\"content:\\\"\\uf212\\\"\"]],[false,{\".fa-less:before\":false},[\"content:\\\"\\uf41d\\\"\"]],[false,{\".fa-line:before\":false},[\"content:\\\"\\uf3c0\\\"\"]],[false,{\".fa-linkedin:before\":false},[\"content:\\\"\\uf08c\\\"\"]],[false,{\".fa-linkedin-in:before\":false},[\"content:\\\"\\uf0e1\\\"\"]],[false,{\".fa-linode:before\":false},[\"content:\\\"\\uf2b8\\\"\"]],[false,{\".fa-linux:before\":false},[\"content:\\\"\\uf17c\\\"\"]],[false,{\".fa-lyft:before\":false},[\"content:\\\"\\uf3c3\\\"\"]],[false,{\".fa-magento:before\":false},[\"content:\\\"\\uf3c4\\\"\"]],[false,{\".fa-mailchimp:before\":false},[\"content:\\\"\\uf59e\\\"\"]],[false,{\".fa-mandalorian:before\":false},[\"content:\\\"\\uf50f\\\"\"]],[false,{\".fa-markdown:before\":false},[\"content:\\\"\\uf60f\\\"\"]],[false,{\".fa-mastodon:before\":false},[\"content:\\\"\\uf4f6\\\"\"]],[false,{\".fa-maxcdn:before\":false},[\"content:\\\"\\uf136\\\"\"]],[false,{\".fa-mdb:before\":false},[\"content:\\\"\\uf8ca\\\"\"]],[false,{\".fa-medapps:before\":false},[\"content:\\\"\\uf3c6\\\"\"]],[false,{\".fa-medium-m:before\":false,\".fa-medium:before\":false},[\"content:\\\"\\uf23a\\\"\"]],[false,{\".fa-medrt:before\":false},[\"content:\\\"\\uf3c8\\\"\"]],[false,{\".fa-meetup:before\":false},[\"content:\\\"\\uf2e0\\\"\"]],[false,{\".fa-megaport:before\":false},[\"content:\\\"\\uf5a3\\\"\"]],[false,{\".fa-mendeley:before\":false},[\"content:\\\"\\uf7b3\\\"\"]],[false,{\".fa-microblog:before\":false},[\"content:\\\"\\ue01a\\\"\"]],[false,{\".fa-microsoft:before\":false},[\"content:\\\"\\uf3ca\\\"\"]],[false,{\".fa-mix:before\":false},[\"content:\\\"\\uf3cb\\\"\"]],[false,{\".fa-mixcloud:before\":false},[\"content:\\\"\\uf289\\\"\"]],[false,{\".fa-mixer:before\":false},[\"content:\\\"\\ue056\\\"\"]],[false,{\".fa-mizuni:before\":false},[\"content:\\\"\\uf3cc\\\"\"]],[false,{\".fa-modx:before\":false},[\"content:\\\"\\uf285\\\"\"]],[false,{\".fa-monero:before\":false},[\"content:\\\"\\uf3d0\\\"\"]],[false,{\".fa-napster:before\":false},[\"content:\\\"\\uf3d2\\\"\"]],[false,{\".fa-neos:before\":false},[\"content:\\\"\\uf612\\\"\"]],[false,{\".fa-nfc-directional:before\":false},[\"content:\\\"\\ue530\\\"\"]],[false,{\".fa-nfc-symbol:before\":false},[\"content:\\\"\\ue531\\\"\"]],[false,{\".fa-nimblr:before\":false},[\"content:\\\"\\uf5a8\\\"\"]],[false,{\".fa-node:before\":false},[\"content:\\\"\\uf419\\\"\"]],[false,{\".fa-node-js:before\":false},[\"content:\\\"\\uf3d3\\\"\"]],[false,{\".fa-npm:before\":false},[\"content:\\\"\\uf3d4\\\"\"]],[false,{\".fa-ns8:before\":false},[\"content:\\\"\\uf3d5\\\"\"]],[false,{\".fa-nutritionix:before\":false},[\"content:\\\"\\uf3d6\\\"\"]],[false,{\".fa-octopus-deploy:before\":false},[\"content:\\\"\\ue082\\\"\"]],[false,{\".fa-odnoklassniki:before\":false},[\"content:\\\"\\uf263\\\"\"]],[false,{\".fa-odnoklassniki-square:before\":false},[\"content:\\\"\\uf264\\\"\"]],[false,{\".fa-old-republic:before\":false},[\"content:\\\"\\uf510\\\"\"]],[false,{\".fa-opencart:before\":false},[\"content:\\\"\\uf23d\\\"\"]],[false,{\".fa-openid:before\":false},[\"content:\\\"\\uf19b\\\"\"]],[false,{\".fa-opera:before\":false},[\"content:\\\"\\uf26a\\\"\"]],[false,{\".fa-optin-monster:before\":false},[\"content:\\\"\\uf23c\\\"\"]],[false,{\".fa-orcid:before\":false},[\"content:\\\"\\uf8d2\\\"\"]],[false,{\".fa-osi:before\":false},[\"content:\\\"\\uf41a\\\"\"]],[false,{\".fa-padlet:before\":false},[\"content:\\\"\\ue4a0\\\"\"]],[false,{\".fa-page4:before\":false},[\"content:\\\"\\uf3d7\\\"\"]],[false,{\".fa-pagelines:before\":false},[\"content:\\\"\\uf18c\\\"\"]],[false,{\".fa-palfed:before\":false},[\"content:\\\"\\uf3d8\\\"\"]],[false,{\".fa-patreon:before\":false},[\"content:\\\"\\uf3d9\\\"\"]],[false,{\".fa-paypal:before\":false},[\"content:\\\"\\uf1ed\\\"\"]],[false,{\".fa-perbyte:before\":false},[\"content:\\\"\\ue083\\\"\"]],[false,{\".fa-periscope:before\":false},[\"content:\\\"\\uf3da\\\"\"]],[false,{\".fa-phabricator:before\":false},[\"content:\\\"\\uf3db\\\"\"]],[false,{\".fa-phoenix-framework:before\":false},[\"content:\\\"\\uf3dc\\\"\"]],[false,{\".fa-phoenix-squadron:before\":false},[\"content:\\\"\\uf511\\\"\"]],[false,{\".fa-php:before\":false},[\"content:\\\"\\uf457\\\"\"]],[false,{\".fa-pied-piper:before\":false},[\"content:\\\"\\uf2ae\\\"\"]],[false,{\".fa-pied-piper-alt:before\":false},[\"content:\\\"\\uf1a8\\\"\"]],[false,{\".fa-pied-piper-hat:before\":false},[\"content:\\\"\\uf4e5\\\"\"]],[false,{\".fa-pied-piper-pp:before\":false},[\"content:\\\"\\uf1a7\\\"\"]],[false,{\".fa-pied-piper-square:before\":false},[\"content:\\\"\\ue01e\\\"\"]],[false,{\".fa-pinterest:before\":false},[\"content:\\\"\\uf0d2\\\"\"]],[false,{\".fa-pinterest-p:before\":false},[\"content:\\\"\\uf231\\\"\"]],[false,{\".fa-pinterest-square:before\":false},[\"content:\\\"\\uf0d3\\\"\"]],[false,{\".fa-pix:before\":false},[\"content:\\\"\\ue43a\\\"\"]],[false,{\".fa-playstation:before\":false},[\"content:\\\"\\uf3df\\\"\"]],[false,{\".fa-product-hunt:before\":false},[\"content:\\\"\\uf288\\\"\"]],[false,{\".fa-pushed:before\":false},[\"content:\\\"\\uf3e1\\\"\"]],[false,{\".fa-python:before\":false},[\"content:\\\"\\uf3e2\\\"\"]],[false,{\".fa-qq:before\":false},[\"content:\\\"\\uf1d6\\\"\"]],[false,{\".fa-quinscape:before\":false},[\"content:\\\"\\uf459\\\"\"]],[false,{\".fa-quora:before\":false},[\"content:\\\"\\uf2c4\\\"\"]],[false,{\".fa-r-project:before\":false},[\"content:\\\"\\uf4f7\\\"\"]],[false,{\".fa-raspberry-pi:before\":false},[\"content:\\\"\\uf7bb\\\"\"]],[false,{\".fa-ravelry:before\":false},[\"content:\\\"\\uf2d9\\\"\"]],[false,{\".fa-react:before\":false},[\"content:\\\"\\uf41b\\\"\"]],[false,{\".fa-reacteurope:before\":false},[\"content:\\\"\\uf75d\\\"\"]],[false,{\".fa-readme:before\":false},[\"content:\\\"\\uf4d5\\\"\"]],[false,{\".fa-rebel:before\":false},[\"content:\\\"\\uf1d0\\\"\"]],[false,{\".fa-red-river:before\":false},[\"content:\\\"\\uf3e3\\\"\"]],[false,{\".fa-reddit:before\":false},[\"content:\\\"\\uf1a1\\\"\"]],[false,{\".fa-reddit-alien:before\":false},[\"content:\\\"\\uf281\\\"\"]],[false,{\".fa-reddit-square:before\":false},[\"content:\\\"\\uf1a2\\\"\"]],[false,{\".fa-redhat:before\":false},[\"content:\\\"\\uf7bc\\\"\"]],[false,{\".fa-renren:before\":false},[\"content:\\\"\\uf18b\\\"\"]],[false,{\".fa-replyd:before\":false},[\"content:\\\"\\uf3e6\\\"\"]],[false,{\".fa-researchgate:before\":false},[\"content:\\\"\\uf4f8\\\"\"]],[false,{\".fa-resolving:before\":false},[\"content:\\\"\\uf3e7\\\"\"]],[false,{\".fa-rev:before\":false},[\"content:\\\"\\uf5b2\\\"\"]],[false,{\".fa-rocketchat:before\":false},[\"content:\\\"\\uf3e8\\\"\"]],[false,{\".fa-rockrms:before\":false},[\"content:\\\"\\uf3e9\\\"\"]],[false,{\".fa-rust:before\":false},[\"content:\\\"\\ue07a\\\"\"]],[false,{\".fa-safari:before\":false},[\"content:\\\"\\uf267\\\"\"]],[false,{\".fa-salesforce:before\":false},[\"content:\\\"\\uf83b\\\"\"]],[false,{\".fa-sass:before\":false},[\"content:\\\"\\uf41e\\\"\"]],[false,{\".fa-schlix:before\":false},[\"content:\\\"\\uf3ea\\\"\"]],[false,{\".fa-screenpal:before\":false},[\"content:\\\"\\ue570\\\"\"]],[false,{\".fa-scribd:before\":false},[\"content:\\\"\\uf28a\\\"\"]],[false,{\".fa-searchengin:before\":false},[\"content:\\\"\\uf3eb\\\"\"]],[false,{\".fa-sellcast:before\":false},[\"content:\\\"\\uf2da\\\"\"]],[false,{\".fa-sellsy:before\":false},[\"content:\\\"\\uf213\\\"\"]],[false,{\".fa-servicestack:before\":false},[\"content:\\\"\\uf3ec\\\"\"]],[false,{\".fa-shirtsinbulk:before\":false},[\"content:\\\"\\uf214\\\"\"]],[false,{\".fa-shopify:before\":false},[\"content:\\\"\\ue057\\\"\"]],[false,{\".fa-shopware:before\":false},[\"content:\\\"\\uf5b5\\\"\"]],[false,{\".fa-simplybuilt:before\":false},[\"content:\\\"\\uf215\\\"\"]],[false,{\".fa-sistrix:before\":false},[\"content:\\\"\\uf3ee\\\"\"]],[false,{\".fa-sith:before\":false},[\"content:\\\"\\uf512\\\"\"]],[false,{\".fa-sitrox:before\":false},[\"content:\\\"\\ue44a\\\"\"]],[false,{\".fa-sketch:before\":false},[\"content:\\\"\\uf7c6\\\"\"]],[false,{\".fa-skyatlas:before\":false},[\"content:\\\"\\uf216\\\"\"]],[false,{\".fa-skype:before\":false},[\"content:\\\"\\uf17e\\\"\"]],[false,{\".fa-slack-hash:before\":false,\".fa-slack:before\":false},[\"content:\\\"\\uf198\\\"\"]],[false,{\".fa-slideshare:before\":false},[\"content:\\\"\\uf1e7\\\"\"]],[false,{\".fa-snapchat-ghost:before\":false,\".fa-snapchat:before\":false},[\"content:\\\"\\uf2ab\\\"\"]],[false,{\".fa-snapchat-square:before\":false},[\"content:\\\"\\uf2ad\\\"\"]],[false,{\".fa-soundcloud:before\":false},[\"content:\\\"\\uf1be\\\"\"]],[false,{\".fa-sourcetree:before\":false},[\"content:\\\"\\uf7d3\\\"\"]],[false,{\".fa-speakap:before\":false},[\"content:\\\"\\uf3f3\\\"\"]],[false,{\".fa-speaker-deck:before\":false},[\"content:\\\"\\uf83c\\\"\"]],[false,{\".fa-spotify:before\":false},[\"content:\\\"\\uf1bc\\\"\"]],[false,{\".fa-square-font-awesome:before\":false},[\"content:\\\"\\uf425\\\"\"]],[false,{\".fa-font-awesome-alt:before\":false,\".fa-square-font-awesome-stroke:before\":false},[\"content:\\\"\\uf35c\\\"\"]],[false,{\".fa-squarespace:before\":false},[\"content:\\\"\\uf5be\\\"\"]],[false,{\".fa-stack-exchange:before\":false},[\"content:\\\"\\uf18d\\\"\"]],[false,{\".fa-stack-overflow:before\":false},[\"content:\\\"\\uf16c\\\"\"]],[false,{\".fa-stackpath:before\":false},[\"content:\\\"\\uf842\\\"\"]],[false,{\".fa-staylinked:before\":false},[\"content:\\\"\\uf3f5\\\"\"]],[false,{\".fa-steam:before\":false},[\"content:\\\"\\uf1b6\\\"\"]],[false,{\".fa-steam-square:before\":false},[\"content:\\\"\\uf1b7\\\"\"]],[false,{\".fa-steam-symbol:before\":false},[\"content:\\\"\\uf3f6\\\"\"]],[false,{\".fa-sticker-mule:before\":false},[\"content:\\\"\\uf3f7\\\"\"]],[false,{\".fa-strava:before\":false},[\"content:\\\"\\uf428\\\"\"]],[false,{\".fa-stripe:before\":false},[\"content:\\\"\\uf429\\\"\"]],[false,{\".fa-stripe-s:before\":false},[\"content:\\\"\\uf42a\\\"\"]],[false,{\".fa-studiovinari:before\":false},[\"content:\\\"\\uf3f8\\\"\"]],[false,{\".fa-stumbleupon:before\":false},[\"content:\\\"\\uf1a4\\\"\"]],[false,{\".fa-stumbleupon-circle:before\":false},[\"content:\\\"\\uf1a3\\\"\"]],[false,{\".fa-superpowers:before\":false},[\"content:\\\"\\uf2dd\\\"\"]],[false,{\".fa-supple:before\":false},[\"content:\\\"\\uf3f9\\\"\"]],[false,{\".fa-suse:before\":false},[\"content:\\\"\\uf7d6\\\"\"]],[false,{\".fa-swift:before\":false},[\"content:\\\"\\uf8e1\\\"\"]],[false,{\".fa-symfony:before\":false},[\"content:\\\"\\uf83d\\\"\"]],[false,{\".fa-teamspeak:before\":false},[\"content:\\\"\\uf4f9\\\"\"]],[false,{\".fa-telegram-plane:before\":false,\".fa-telegram:before\":false},[\"content:\\\"\\uf2c6\\\"\"]],[false,{\".fa-tencent-weibo:before\":false},[\"content:\\\"\\uf1d5\\\"\"]],[false,{\".fa-the-red-yeti:before\":false},[\"content:\\\"\\uf69d\\\"\"]],[false,{\".fa-themeco:before\":false},[\"content:\\\"\\uf5c6\\\"\"]],[false,{\".fa-themeisle:before\":false},[\"content:\\\"\\uf2b2\\\"\"]],[false,{\".fa-think-peaks:before\":false},[\"content:\\\"\\uf731\\\"\"]],[false,{\".fa-tiktok:before\":false},[\"content:\\\"\\ue07b\\\"\"]],[false,{\".fa-trade-federation:before\":false},[\"content:\\\"\\uf513\\\"\"]],[false,{\".fa-trello:before\":false},[\"content:\\\"\\uf181\\\"\"]],[false,{\".fa-tumblr:before\":false},[\"content:\\\"\\uf173\\\"\"]],[false,{\".fa-tumblr-square:before\":false},[\"content:\\\"\\uf174\\\"\"]],[false,{\".fa-twitch:before\":false},[\"content:\\\"\\uf1e8\\\"\"]],[false,{\".fa-twitter:before\":false},[\"content:\\\"\\uf099\\\"\"]],[false,{\".fa-twitter-square:before\":false},[\"content:\\\"\\uf081\\\"\"]],[false,{\".fa-typo3:before\":false},[\"content:\\\"\\uf42b\\\"\"]],[false,{\".fa-uber:before\":false},[\"content:\\\"\\uf402\\\"\"]],[false,{\".fa-ubuntu:before\":false},[\"content:\\\"\\uf7df\\\"\"]],[false,{\".fa-uikit:before\":false},[\"content:\\\"\\uf403\\\"\"]],[false,{\".fa-umbraco:before\":false},[\"content:\\\"\\uf8e8\\\"\"]],[false,{\".fa-uncharted:before\":false},[\"content:\\\"\\ue084\\\"\"]],[false,{\".fa-uniregistry:before\":false},[\"content:\\\"\\uf404\\\"\"]],[false,{\".fa-unity:before\":false},[\"content:\\\"\\ue049\\\"\"]],[false,{\".fa-unsplash:before\":false},[\"content:\\\"\\ue07c\\\"\"]],[false,{\".fa-untappd:before\":false},[\"content:\\\"\\uf405\\\"\"]],[false,{\".fa-ups:before\":false},[\"content:\\\"\\uf7e0\\\"\"]],[false,{\".fa-usb:before\":false},[\"content:\\\"\\uf287\\\"\"]],[false,{\".fa-usps:before\":false},[\"content:\\\"\\uf7e1\\\"\"]],[false,{\".fa-ussunnah:before\":false},[\"content:\\\"\\uf407\\\"\"]],[false,{\".fa-vaadin:before\":false},[\"content:\\\"\\uf408\\\"\"]],[false,{\".fa-viacoin:before\":false},[\"content:\\\"\\uf237\\\"\"]],[false,{\".fa-viadeo:before\":false},[\"content:\\\"\\uf2a9\\\"\"]],[false,{\".fa-viadeo-square:before\":false},[\"content:\\\"\\uf2aa\\\"\"]],[false,{\".fa-viber:before\":false},[\"content:\\\"\\uf409\\\"\"]],[false,{\".fa-vimeo:before\":false},[\"content:\\\"\\uf40a\\\"\"]],[false,{\".fa-vimeo-square:before\":false},[\"content:\\\"\\uf194\\\"\"]],[false,{\".fa-vimeo-v:before\":false},[\"content:\\\"\\uf27d\\\"\"]],[false,{\".fa-vine:before\":false},[\"content:\\\"\\uf1ca\\\"\"]],[false,{\".fa-vk:before\":false},[\"content:\\\"\\uf189\\\"\"]],[false,{\".fa-vnv:before\":false},[\"content:\\\"\\uf40b\\\"\"]],[false,{\".fa-vuejs:before\":false},[\"content:\\\"\\uf41f\\\"\"]],[false,{\".fa-watchman-monitoring:before\":false},[\"content:\\\"\\ue087\\\"\"]],[false,{\".fa-waze:before\":false},[\"content:\\\"\\uf83f\\\"\"]],[false,{\".fa-weebly:before\":false},[\"content:\\\"\\uf5cc\\\"\"]],[false,{\".fa-weibo:before\":false},[\"content:\\\"\\uf18a\\\"\"]],[false,{\".fa-weixin:before\":false},[\"content:\\\"\\uf1d7\\\"\"]],[false,{\".fa-whatsapp:before\":false},[\"content:\\\"\\uf232\\\"\"]],[false,{\".fa-whatsapp-square:before\":false},[\"content:\\\"\\uf40c\\\"\"]],[false,{\".fa-whmcs:before\":false},[\"content:\\\"\\uf40d\\\"\"]],[false,{\".fa-wikipedia-w:before\":false},[\"content:\\\"\\uf266\\\"\"]],[false,{\".fa-windows:before\":false},[\"content:\\\"\\uf17a\\\"\"]],[false,{\".fa-wirsindhandwerk:before\":false,\".fa-wsh:before\":false},[\"content:\\\"\\ue2d0\\\"\"]],[false,{\".fa-wix:before\":false},[\"content:\\\"\\uf5cf\\\"\"]],[false,{\".fa-wizards-of-the-coast:before\":false},[\"content:\\\"\\uf730\\\"\"]],[false,{\".fa-wodu:before\":false},[\"content:\\\"\\ue088\\\"\"]],[false,{\".fa-wolf-pack-battalion:before\":false},[\"content:\\\"\\uf514\\\"\"]],[false,{\".fa-wordpress:before\":false},[\"content:\\\"\\uf19a\\\"\"]],[false,{\".fa-wordpress-simple:before\":false},[\"content:\\\"\\uf411\\\"\"]],[false,{\".fa-wpbeginner:before\":false},[\"content:\\\"\\uf297\\\"\"]],[false,{\".fa-wpexplorer:before\":false},[\"content:\\\"\\uf2de\\\"\"]],[false,{\".fa-wpforms:before\":false},[\"content:\\\"\\uf298\\\"\"]],[false,{\".fa-wpressr:before\":false},[\"content:\\\"\\uf3e4\\\"\"]],[false,{\".fa-xbox:before\":false},[\"content:\\\"\\uf412\\\"\"]],[false,{\".fa-xing:before\":false},[\"content:\\\"\\uf168\\\"\"]],[false,{\".fa-xing-square:before\":false},[\"content:\\\"\\uf169\\\"\"]],[false,{\".fa-y-combinator:before\":false},[\"content:\\\"\\uf23b\\\"\"]],[false,{\".fa-yahoo:before\":false},[\"content:\\\"\\uf19e\\\"\"]],[false,{\".fa-yammer:before\":false},[\"content:\\\"\\uf840\\\"\"]],[false,{\".fa-yandex:before\":false},[\"content:\\\"\\uf413\\\"\"]],[false,{\".fa-yandex-international:before\":false},[\"content:\\\"\\uf414\\\"\"]],[false,{\".fa-yarn:before\":false},[\"content:\\\"\\uf7e3\\\"\"]],[false,{\".fa-yelp:before\":false},[\"content:\\\"\\uf1e9\\\"\"]],[false,{\".fa-yoast:before\":false},[\"content:\\\"\\uf2b1\\\"\"]],[false,{\".fa-youtube:before\":false},[\"content:\\\"\\uf167\\\"\"]],[false,{\".fa-youtube-square:before\":false},[\"content:\\\"\\uf431\\\"\"]],[false,{\".fa-zhihu:before\":false},[\"content:\\\"\\uf63f\\\"\"]],[true,{\":host\":true,\":root\":true},[\"--fa-font-regular:normal 400 1em\\/1 \\\"Font Awesome 6 Free\\\"\"]],[true,\"@font-face{font-family:\\\"Font Awesome 6 Free\\\";font-style:normal;font-weight:400;font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\")}\"],[false,{\".fa-regular\":false,\".far\":false},[\"font-family:\\\"Font Awesome 6 Free\\\"\",\"font-weight:400\"]],[true,{\":host\":true,\":root\":true},[\"--fa-font-solid:normal 900 1em\\/1 \\\"Font Awesome 6 Free\\\"\"]],[true,\"@font-face{font-family:\\\"Font Awesome 6 Free\\\";font-style:normal;font-weight:900;font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\")}\"],[true,{\".fa-solid\":false,\".fas\":true},[\"font-family:\\\"Font Awesome 6 Free\\\"\",\"font-weight:900\"]],[true,\"@font-face{font-family:\\\"Font Awesome 5 Brands\\\";font-display:block;font-weight:400;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-display:block;font-weight:900;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"Font Awesome 5 Free\\\";font-display:block;font-weight:400;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-solid-900.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-brands-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-regular-400.ttf\\\") format(\\\"truetype\\\")}@font-face{font-family:\\\"FontAwesome\\\";font-display:block;src:url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-v4compatibility.woff2\\\") format(\\\"woff2\\\"),url(\\\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/webfonts\\/fa-v4compatibility.ttf\\\") format(\\\"truetype\\\")}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":16466,\"final_size\":2468,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.css\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":50,\"hash\":\"f525e508f09233d1bbad77f319ca5b46\",\"parse_time\":0.25615501403808594,\"shake_time\":0.011227130889892578,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,\"@font-face{font-family:swiper-icons;src:url(\\\"data:application\\/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj\\/\\/wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA\\/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu\\/j+W2+MnAzMYDAzaX6QjD6\\/4\\/\\/Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+\\/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg\\/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4\\/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9\\/w8UBfEMgLzE\\/\\/\\/\\/P\\/5\\/\\/f\\/V\\/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA\\/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP\\/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj\\/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB\\/yIY09An6AH2Bdu\\/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z\\/PEJ6YOB5hKh4dj3EvXhxPqH\\/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN\\/d\\/gczfEimrE\\/fs\\/bOuq29Zmn8tloORaXgZgGa78yO9\\/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i\\/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH\\/\\/wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv\\/H9ezGI6Z5XBAw8CBK\\/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow\\/P\\/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA\\\");font-weight:400;font-style:normal}\"],[true,{\":root\":true},[\"--swiper-theme-color:#007aff\"]],[false,{\".swiper\":false},[\"margin-left:auto\",\"margin-right:auto\",\"position:relative\",\"overflow:hidden\",\"list-style:none\",\"padding:0\",\"z-index:1\"]],[false,{\".swiper-vertical>.swiper-wrapper\":false},[\"flex-direction:column\"]],[false,{\".swiper-wrapper\":false},[\"position:relative\",\"width:100%\",\"height:100%\",\"z-index:1\",\"display:flex\",\"transition-property:transform\",\"box-sizing:content-box\"]],[false,{\".swiper-android .swiper-slide\":false,\".swiper-wrapper\":false},[\"transform:translate3d(0px,0,0)\"]],[false,{\".swiper-pointer-events\":false},[\"touch-action:pan-y\"]],[false,{\".swiper-pointer-events.swiper-vertical\":false},[\"touch-action:pan-x\"]],[false,{\".swiper-slide\":false},[\"flex-shrink:0\",\"width:100%\",\"height:100%\",\"position:relative\",\"transition-property:transform\"]],[false,{\".swiper-slide-invisible-blank\":false},[\"visibility:hidden\"]],[false,{\".swiper-autoheight\":false,\".swiper-autoheight .swiper-slide\":false},[\"height:auto\"]],[false,{\".swiper-autoheight .swiper-wrapper\":false},[\"align-items:flex-start\",\"transition-property:transform,height\"]],[false,{\".swiper-backface-hidden .swiper-slide\":false},[\"transform:translateZ(0)\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".swiper-3d\":false,\".swiper-3d.swiper-css-mode .swiper-wrapper\":false},[\"perspective:1200px\"]],[false,{\".swiper-3d .swiper-cube-shadow\":false,\".swiper-3d .swiper-slide\":false,\".swiper-3d .swiper-slide-shadow\":false,\".swiper-3d .swiper-slide-shadow-bottom\":false,\".swiper-3d .swiper-slide-shadow-left\":false,\".swiper-3d .swiper-slide-shadow-right\":false,\".swiper-3d .swiper-slide-shadow-top\":false,\".swiper-3d .swiper-wrapper\":false},[\"transform-style:preserve-3d\"]],[false,{\".swiper-3d .swiper-slide-shadow\":false,\".swiper-3d .swiper-slide-shadow-bottom\":false,\".swiper-3d .swiper-slide-shadow-left\":false,\".swiper-3d .swiper-slide-shadow-right\":false,\".swiper-3d .swiper-slide-shadow-top\":false},[\"position:absolute\",\"left:0\",\"top:0\",\"width:100%\",\"height:100%\",\"pointer-events:none\",\"z-index:10\"]],[false,{\".swiper-3d .swiper-slide-shadow\":false},[\"background:rgba(0,0,0,.15)\"]],[false,{\".swiper-3d .swiper-slide-shadow-left\":false},[\"background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-3d .swiper-slide-shadow-right\":false},[\"background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-3d .swiper-slide-shadow-top\":false},[\"background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-3d .swiper-slide-shadow-bottom\":false},[\"background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))\"]],[false,{\".swiper-css-mode>.swiper-wrapper\":false},[\"overflow:auto\",\"scrollbar-width:none\",\"-ms-overflow-style:none\"]],[false,{\".swiper-css-mode>.swiper-wrapper::-webkit-scrollbar\":false},[\"display:none\"]],[false,{\".swiper-css-mode>.swiper-wrapper>.swiper-slide\":false},[\"scroll-snap-align:start start\"]],[false,{\".swiper-horizontal.swiper-css-mode>.swiper-wrapper\":false},[\"scroll-snap-type:x mandatory\"]],[false,{\".swiper-vertical.swiper-css-mode>.swiper-wrapper\":false},[\"scroll-snap-type:y mandatory\"]],[false,{\".swiper-centered>.swiper-wrapper::before\":false},[\"content:\\\"\\\"\",\"flex-shrink:0\",\"order:9999\"]],[false,{\".swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child\":false},[\"margin-inline-start:var(--swiper-centered-offset-before)\"]],[false,{\".swiper-centered.swiper-horizontal>.swiper-wrapper::before\":false},[\"height:100%\",\"min-height:1px\",\"width:var(--swiper-centered-offset-after)\"]],[false,{\".swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child\":false},[\"margin-block-start:var(--swiper-centered-offset-before)\"]],[false,{\".swiper-centered.swiper-vertical>.swiper-wrapper::before\":false},[\"width:100%\",\"min-width:1px\",\"height:var(--swiper-centered-offset-after)\"]],[false,{\".swiper-centered>.swiper-wrapper>.swiper-slide\":false},[\"scroll-snap-align:center center\"]],[false,{\".swiper-virtual .swiper-slide\":false},[\"-webkit-backface-visibility:hidden\",\"transform:translateZ(0)\"]],[false,{\".swiper-virtual.swiper-css-mode .swiper-wrapper::after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"left:0\",\"top:0\",\"pointer-events:none\"]],[false,{\".swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after\":false},[\"height:1px\",\"width:var(--swiper-virtual-size)\"]],[false,{\".swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after\":false},[\"width:1px\",\"height:var(--swiper-virtual-size)\"]],[true,{\":root\":true},[\"--swiper-navigation-size:44px\"]],[false,{\".swiper-button-next\":false,\".swiper-button-prev\":false},[\"position:absolute\",\"top:50%\",\"width:calc(var(--swiper-navigation-size) \\/ 44 * 27)\",\"height:var(--swiper-navigation-size)\",\"margin-top:calc(0px - ( var(--swiper-navigation-size) \\/ 2 ))\",\"z-index:10\",\"cursor:pointer\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"color:var(--swiper-navigation-color,var(--swiper-theme-color))\"]],[false,{\".swiper-button-next.swiper-button-disabled\":false,\".swiper-button-prev.swiper-button-disabled\":false},[\"opacity:.35\",\"cursor:auto\",\"pointer-events:none\"]],[false,{\".swiper-button-next.swiper-button-hidden\":false,\".swiper-button-prev.swiper-button-hidden\":false},[\"opacity:0\",\"cursor:auto\",\"pointer-events:none\"]],[false,{\".swiper-navigation-disabled .swiper-button-next:not(#_#_#_#_#_#_#_)\":false,\".swiper-navigation-disabled .swiper-button-prev:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-button-next:after\":false,\".swiper-button-prev:after\":false},[\"font-family:swiper-icons\",\"font-size:var(--swiper-navigation-size)\",\"letter-spacing:0\",\"font-variant:initial\",\"line-height:1\"]],[false,{\".swiper-button-next:after:not(#_#_#_#_#_#_#_#_)\":false,\".swiper-button-prev:after:not(#_#_#_#_#_#_#_#_)\":false},[\"text-transform:none\"]],[false,{\".swiper-button-prev\":false,\".swiper-rtl .swiper-button-next\":false},[\"left:10px\",\"right:auto\"]],[false,{\".swiper-button-prev:after\":false,\".swiper-rtl .swiper-button-next:after\":false},[\"content:\\\"prev\\\"\"]],[false,{\".swiper-button-next\":false,\".swiper-rtl .swiper-button-prev\":false},[\"right:10px\",\"left:auto\"]],[false,{\".swiper-button-next:after\":false,\".swiper-rtl .swiper-button-prev:after\":false},[\"content:\\\"next\\\"\"]],[false,{\".swiper-button-lock\":false},[\"display:none\"]],[false,{\".swiper-pagination\":false},[\"position:absolute\",\"text-align:center\",\"transition:.3s opacity\",\"transform:translate3d(0,0,0)\",\"z-index:10\"]],[false,{\".swiper-pagination.swiper-pagination-hidden\":false},[\"opacity:0\"]],[false,{\".swiper-pagination-disabled>.swiper-pagination:not(#_#_#_#_#_#_#_)\":false,\".swiper-pagination.swiper-pagination-disabled:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets\":false,\".swiper-pagination-bullets.swiper-pagination-horizontal\":false,\".swiper-pagination-custom\":false,\".swiper-pagination-fraction\":false},[\"bottom:10px\",\"left:0\",\"width:100%\"]],[false,{\".swiper-pagination-bullets-dynamic\":false},[\"overflow:hidden\",\"font-size:0\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"transform:scale(.33)\",\"position:relative\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active\":false},[\"transform:scale(1)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main\":false},[\"transform:scale(1)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev\":false},[\"transform:scale(.66)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev\":false},[\"transform:scale(.33)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next\":false},[\"transform:scale(.66)\"]],[false,{\".swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next\":false},[\"transform:scale(.33)\"]],[false,{\".swiper-pagination-bullet\":false},[\"width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px))\",\"height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px))\",\"display:inline-block\",\"border-radius:50%\",\"background:var(--swiper-pagination-bullet-inactive-color,#000)\",\"opacity:var(--swiper-pagination-bullet-inactive-opacity,.2)\"]],[false,{\"button.swiper-pagination-bullet\":false},[\"border:none\",\"margin:0\",\"padding:0\",\"box-shadow:none\",\"-webkit-appearance:none\",\"appearance:none\"]],[false,{\".swiper-pagination-clickable .swiper-pagination-bullet\":false},[\"cursor:pointer\"]],[false,{\".swiper-pagination-bullet:only-child:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-pagination-bullet-active\":false},[\"opacity:var(--swiper-pagination-bullet-opacity,1)\",\"background:var(--swiper-pagination-color,var(--swiper-theme-color))\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets\":false,\".swiper-vertical>.swiper-pagination-bullets\":false},[\"right:10px\",\"top:50%\",\"transform:translate3d(0px,-50%,0)\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet\":false,\".swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet\":false},[\"margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0\",\"display:block\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false,\".swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false},[\"top:50%\",\"transform:translateY(-50%)\",\"width:8px\"]],[false,{\".swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false,\".swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"display:inline-block\",\"transition:.2s transform,.2s top\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet\":false,\".swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet\":false},[\"margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false,\".swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic\":false},[\"left:50%\",\"transform:translateX(-50%)\",\"white-space:nowrap\"]],[false,{\".swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false,\".swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"transition:.2s transform,.2s left\"]],[false,{\".swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet\":false},[\"transition:.2s transform,.2s right\"]],[false,{\".swiper-pagination-progressbar\":false},[\"background:rgba(0,0,0,.25)\",\"position:absolute\"]],[false,{\".swiper-pagination-progressbar .swiper-pagination-progressbar-fill\":false},[\"background:var(--swiper-pagination-color,var(--swiper-theme-color))\",\"position:absolute\",\"left:0\",\"top:0\",\"width:100%\",\"height:100%\",\"transform:scale(0)\",\"transform-origin:left top\"]],[false,{\".swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill\":false},[\"transform-origin:right top\"]],[false,{\".swiper-horizontal>.swiper-pagination-progressbar\":false,\".swiper-pagination-progressbar.swiper-pagination-horizontal\":false,\".swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite\":false,\".swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite\":false},[\"width:100%\",\"height:4px\",\"left:0\",\"top:0\"]],[false,{\".swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite\":false,\".swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite\":false,\".swiper-pagination-progressbar.swiper-pagination-vertical\":false,\".swiper-vertical>.swiper-pagination-progressbar\":false},[\"width:4px\",\"height:100%\",\"left:0\",\"top:0\"]],[false,{\".swiper-pagination-lock\":false},[\"display:none\"]],[false,{\".swiper-scrollbar\":false},[\"border-radius:10px\",\"position:relative\",\"-ms-touch-action:none\",\"background:rgba(0,0,0,.1)\"]],[false,{\".swiper-scrollbar-disabled>.swiper-scrollbar:not(#_#_#_#_#_#_#_)\":false,\".swiper-scrollbar.swiper-scrollbar-disabled:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".swiper-horizontal>.swiper-scrollbar\":false,\".swiper-scrollbar.swiper-scrollbar-horizontal\":false},[\"position:absolute\",\"left:1%\",\"bottom:3px\",\"z-index:50\",\"height:5px\",\"width:98%\"]],[false,{\".swiper-scrollbar.swiper-scrollbar-vertical\":false,\".swiper-vertical>.swiper-scrollbar\":false},[\"position:absolute\",\"right:3px\",\"top:1%\",\"z-index:50\",\"width:5px\",\"height:98%\"]],[false,{\".swiper-scrollbar-drag\":false},[\"height:100%\",\"width:100%\",\"position:relative\",\"background:rgba(0,0,0,.5)\",\"border-radius:10px\",\"left:0\",\"top:0\"]],[false,{\".swiper-scrollbar-cursor-drag\":false},[\"cursor:move\"]],[false,{\".swiper-scrollbar-lock\":false},[\"display:none\"]],[false,{\".swiper-zoom-container\":false},[\"width:100%\",\"height:100%\",\"display:flex\",\"justify-content:center\",\"align-items:center\",\"text-align:center\"]],[false,{\".swiper-zoom-container>canvas\":false,\".swiper-zoom-container>amp-img\":false,\".swiper-zoom-container>amp-anim\":false,\".swiper-zoom-container>svg\":false},[\"max-width:100%\",\"max-height:100%\",\"object-fit:contain\"]],[false,{\".swiper-slide-zoomed\":false},[\"cursor:move\"]],[false,{\".swiper-lazy-preloader\":false},[\"width:42px\",\"height:42px\",\"position:absolute\",\"left:50%\",\"top:50%\",\"margin-left:-21px\",\"margin-top:-21px\",\"z-index:10\",\"transform-origin:50%\",\"box-sizing:border-box\",\"border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color))\",\"border-radius:50%\",\"border-top-color:transparent\"]],[false,{\".swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader\":false,\".swiper:not(.swiper-watch-progress) .swiper-lazy-preloader\":false},[\"animation:swiper-preloader-spin 1s infinite linear\"]],[false,{\".swiper-lazy-preloader-white\":false},[\"--swiper-preloader-color:#fff\"]],[false,{\".swiper-lazy-preloader-black\":false},[\"--swiper-preloader-color:#000\"]],[true,\"@keyframes swiper-preloader-spin{\"],[true,\"0%{transform:rotate(0deg)}\"],[true,\"100%{transform:rotate(360deg)}\"],[true,\"}\"],[false,{\".swiper .swiper-notification\":false},[\"position:absolute\",\"left:0\",\"top:0\",\"pointer-events:none\",\"opacity:0\",\"z-index:-1000\"]],[false,{\".swiper-free-mode>.swiper-wrapper\":false},[\"transition-timing-function:ease-out\",\"margin:0 auto\"]],[false,{\".swiper-grid>.swiper-wrapper\":false},[\"flex-wrap:wrap\"]],[false,{\".swiper-grid-column>.swiper-wrapper\":false},[\"flex-wrap:wrap\",\"flex-direction:column\"]],[false,{\".swiper-fade.swiper-free-mode .swiper-slide\":false},[\"transition-timing-function:ease-out\"]],[false,{\".swiper-fade .swiper-slide\":false},[\"pointer-events:none\",\"transition-property:opacity\"]],[false,{\".swiper-fade .swiper-slide .swiper-slide\":false},[\"pointer-events:none\"]],[false,{\".swiper-fade .swiper-slide-active\":false,\".swiper-fade .swiper-slide-active .swiper-slide-active\":false},[\"pointer-events:auto\"]],[false,{\".swiper-cube\":false},[\"overflow:visible\"]],[false,{\".swiper-cube .swiper-slide\":false},[\"pointer-events:none\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"z-index:1\",\"visibility:hidden\",\"transform-origin:0 0\",\"width:100%\",\"height:100%\"]],[false,{\".swiper-cube .swiper-slide .swiper-slide\":false},[\"pointer-events:none\"]],[false,{\".swiper-cube.swiper-rtl .swiper-slide\":false},[\"transform-origin:100% 0\"]],[false,{\".swiper-cube .swiper-slide-active\":false,\".swiper-cube .swiper-slide-active .swiper-slide-active\":false},[\"pointer-events:auto\"]],[false,{\".swiper-cube .swiper-slide-active\":false,\".swiper-cube .swiper-slide-next\":false,\".swiper-cube .swiper-slide-next+.swiper-slide\":false,\".swiper-cube .swiper-slide-prev\":false},[\"pointer-events:auto\",\"visibility:visible\"]],[false,{\".swiper-cube .swiper-slide-shadow-bottom\":false,\".swiper-cube .swiper-slide-shadow-left\":false,\".swiper-cube .swiper-slide-shadow-right\":false,\".swiper-cube .swiper-slide-shadow-top\":false},[\"z-index:0\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".swiper-cube .swiper-cube-shadow\":false},[\"position:absolute\",\"left:0\",\"bottom:0px\",\"width:100%\",\"height:100%\",\"opacity:.6\",\"z-index:0\"]],[false,{\".swiper-cube .swiper-cube-shadow:before\":false},[\"content:\\\"\\\"\",\"background:#000\",\"position:absolute\",\"left:0\",\"top:0\",\"bottom:0\",\"right:0\",\"filter:blur(50px)\"]],[false,{\".swiper-flip\":false},[\"overflow:visible\"]],[false,{\".swiper-flip .swiper-slide\":false},[\"pointer-events:none\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"z-index:1\"]],[false,{\".swiper-flip .swiper-slide .swiper-slide\":false},[\"pointer-events:none\"]],[false,{\".swiper-flip .swiper-slide-active\":false,\".swiper-flip .swiper-slide-active .swiper-slide-active\":false},[\"pointer-events:auto\"]],[false,{\".swiper-flip .swiper-slide-shadow-bottom\":false,\".swiper-flip .swiper-slide-shadow-left\":false,\".swiper-flip .swiper-slide-shadow-right\":false,\".swiper-flip .swiper-slide-shadow-top\":false},[\"z-index:0\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".swiper-creative .swiper-slide\":false},[\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"overflow:hidden\",\"transition-property:transform,opacity,height\"]],[false,{\".swiper-cards\":false},[\"overflow:visible\"]],[false,{\".swiper-cards .swiper-slide\":false},[\"transform-origin:center bottom\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"overflow:hidden\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":810,\"final_size\":766,\"element\":{\"name\":\"style\",\"attributes\":[]},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Header_Output.php\",\"line\":69,\"function\":\"SWP_Header_Output::add_header_output\",\"hook\":\"wp_head\",\"priority\":1}],\"priority\":70,\"hash\":\"0a9255310f1740c2ab6cffd5f5a29640\",\"parse_time\":0.0011060237884521484,\"shake_time\":3.0994415283203125e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0#iefix\"],\"shaken_tokens\":[[true,\"@font-face{font-family:\\\"sw-icon-font\\\";src:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0\\\");src:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.woff?ver=4.3.0\\\") format(\\\"woff\\\"),url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.ttf?ver=4.3.0\\\") format(\\\"truetype\\\"),url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.svg?ver=4.3.0#1445203416\\\") format(\\\"svg\\\");font-weight:normal;font-style:normal;font-display:block}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2209,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"social-warfare-block-css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/js\\/post-editor\\/dist\\/blocks.style.build.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"assets\\/js\\/post-editor\\/blocks.php\",\"line\":20,\"function\":\"register_gutenberg_blocks\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social-warfare-block-css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"c542eecf74fba8e6b26c437634e5223e\",\"parse_time\":0.010244131088256836,\"shake_time\":1.9073486328125e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".social-warfare-admin-block\":false},[\"font-family:\\\"SF Pro Text\\\",\\\"Helvetica\\\",sans-serif\",\"font-size:13px\"]],[false,{\".social-warfare-admin-block .head\":false},[\"width:100%\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-align:center\",\"align-items:center\",\"-ms-flex-pack:justify\",\"justify-content:space-between\"]],[false,{\".social-warfare-admin-block .head p\":false},[\"font-weight:bold\"]],[false,{\".social-warfare-admin-block .swp-block-icon\":false},[\"margin:0 28px 0 14px\",\"font-size:18px\",\"width:32px\",\"height:32px\"]],[false,{\".social-warfare-block-wrap input\":false,\".social-warfare-block-wrap select\":false},[\"width:100%\"]],[false,{\".swp-active-block\":false},[\"height:100%\"]],[false,{\".swp-active-block input\":false,\".swp-active-block select\":false,\".swp-active-block textarea\":false},[\"display:block\",\"width:100%\",\"padding:5px\",\"height:42px\",\"border:1px solid #e2e4e7\"]],[false,{\".swp-active-block textarea\":false},[\"height:64px\"]],[false,{\".swp-active-block .swp-inner-block-50\":false},[\"width:50%\",\"display:inline-block\",\"padding:0 1px\"]],[false,{\".swp-active-block .head>div\":false},[\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row no-wrap\",\"flex-flow:row no-wrap\",\"-ms-flex-pack:center\",\"justify-content:center\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".swp-active-block .head .swp-block-icon\":false,\".swp-active-block .head .swp-block-title\":false},[\"display:inline-block\"]],[false,{\".swp-active-block p\":false},[\"margin:25px 0 5px 0\"]],[false,{\".swp-active-block .head p\":false},[\"margin:initial\"]],[false,{\".swp-inactive-block\":false},[\"min-height:50px\",\"display:-ms-flexbox\",\"display:flex\",\"-ms-flex-flow:row nowrap\",\"flex-flow:row nowrap\",\"-ms-flex-align:center\",\"align-items:center\"]],[false,{\".swp-inactive-block code\":false},[\"display:block\",\"width:100%\",\"padding:5px\",\"height:42px\"]],[false,{\".swp-inactive-block .swp-preview\":false},[\"background:#f5f5f5\",\"width:100%\",\"display:block\",\"font-family:\\\"SF Pro Text\\\",\\\"Helvetica\\\",sans-sans-serif\",\"font-size:13px\",\"padding:15px\",\"border-radius:4px\"]],[false,{\".swp-inactive-block .swp-dashicon\":false},[\"margin:0 14px\"]],[false,{\".click-to-tweet-block-wrap textarea[name=\\\"tweetText\\\"]\":false},[\"border-top-right-radius:0px\"]],[false,{\".click-to-tweet-block-wrap .block-characters-remaining\":false},[\"font-size:16px\",\"font-size:13px\",\"font-weight:normal\",\"color:white\",\"padding:5px\",\"padding:5px 15px\",\"border-top-right-radius:4px\",\"border-top-left-radius:4px\",\"background:#30394f\",\"margin:0\",\"float:right\",\"max-width:200px\",\"position:relative\",\"-webkit-transition:all 300ms\",\"-o-transition:all 300ms\",\"transition:all 300ms\"]],[false,{\".click-to-tweet-block-wrap .block-characters-remaining.over-limit\":false},[\"background:#ee464f\",\"color:#fff\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":1388,\"final_size\":709,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=2.3.0\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1020,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2261,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"82cd798ece835d3c574519b60ef930fe\",\"parse_time\":0.0071032047271728516,\"shake_time\":0.0006458759307861328,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-unknown-size\":false,\"amp-anim.amp-wp-enforced-sizes\":false,\"amp-img.amp-wp-enforced-sizes\":true},[\"-o-object-fit:contain\",\"object-fit:contain\"]],[false,{\"body amp-audio:not([controls])\":false},[\"display:inline-block\",\"height:auto\"]],[true,{\".amp-wp-default-form-message>p\":true},[\"margin:1em 0\",\"padding:.5em\"]],[true,{\".amp-wp-default-form-message[submit-success]>p.amp-wp-form-redirecting\":true,\".amp-wp-default-form-message[submitting]>p\":true},[\"font-style:italic\"]],[true,{\".amp-wp-default-form-message[submit-success]>p:not(.amp-wp-form-redirecting)\":true},[\"background-color:#90ee90\",\"border:1px solid green\",\"color:#000\"]],[true,{\".amp-wp-default-form-message[submit-error]>p\":true},[\"background-color:#ffb6c1\",\"border:1px solid red\",\"color:#000\"]],[true,{\".amp-wp-default-form-message[submit-success]>p:empty\":true},[\"display:none\"]],[false,{\"amp-carousel .amp-wp-gallery-caption\":false},[\"background-color:rgba(0,0,0,.5)\",\"bottom:0\",\"color:#fff\",\"left:0\",\"margin-bottom:0\",\"padding:1rem\",\"position:absolute\",\"right:0\",\"text-align:center\"]],[false,{\"amp-carousel .amp-wp-gallery-caption a\":false},[\"color:inherit\"]],[false,{\".wp-block-gallery[data-amp-carousel=true]\":false,\".wp-block-gallery[data-amp-carousel=true].has-nested-images\":false},[\"display:block\",\"flex-wrap:unset\"]],[false,{\".wp-video\":false},[\"margin-bottom:1.5em\",\"max-width:100%\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"height:auto\"]],[false,{\"button[overflow]\":false},[\"bottom:0\"]],[true,{\"amp-anim img\":false,\"amp-anim noscript\":false,\"amp-iframe iframe\":false,\"amp-iframe noscript\":false,\"amp-img img\":true,\"amp-img noscript\":true,\"amp-video noscript\":false,\"amp-video video\":false},[\"image-rendering:inherit\",\"-o-object-fit:inherit\",\"object-fit:inherit\",\"-o-object-position:inherit\",\"object-position:inherit\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":80574,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"wp-block-library-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/css\\/dist\\/block-library\\/style.min.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":1381,\"function\":\"wp_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2246,\"function\":\"wp_common_block_scripts_and_styles\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"wp-block-library\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":20,\"hash\":\"db08bb47cd026dcad266bd62ddc38fd8\",\"parse_time\":1.007054090499878,\"shake_time\":0.0009009838104248047,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\"#start-resizable-editor-section\":false},[\"display:none\"]],[false,{\".wp-block-audio\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-audio figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-audio amp-audio\":false},[\"width:100%\",\"min-width:300px\"]],[false,{\".wp-block-button__link\":false},[\"color:#fff\",\"background-color:#32373c\",\"border-radius:9999px\",\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"font-size:1.125em\",\"padding:calc(.667em + 2px) calc(1.333em + 2px)\",\"text-align:center\",\"text-decoration:none\",\"overflow-wrap:break-word\",\"box-sizing:border-box\"]],[false,{\".wp-block-button__link:active\":false,\".wp-block-button__link:focus\":false,\".wp-block-button__link:hover\":false,\".wp-block-button__link:visited\":false},[\"color:#fff\"]],[false,{\".wp-block-button__link.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-button__link.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width\":false},[\"max-width:none\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-width .wp-block-button__link\":false},[\"width:100%\"]],[false,{\".wp-block-buttons>.wp-block-button.has-custom-font-size .wp-block-button__link\":false},[\"font-size:inherit\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"width:calc(100% - .5em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100:only-child\":false},[\"margin-right:0\",\"width:100%\"]],[false,\"@supports (column-gap:0.5em){\"],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button.wp-block-button\":false,\".wp-block-buttons>.wp-block-button.wp-block-button\":false},[\"margin-right:0\",\"margin-left:0\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-25\":false},[\"width:calc(25% - .375em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-50\":false},[\"width:calc(50% - .25em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-75\":false},[\"width:calc(75% - .125em)\"]],[false,{\".wp-block-buttons>.wp-block-button.wp-block-button__width-100\":false},[\"width:auto\",\"flex-basis:100%\"]],[false,\"}\"],[false,{\".wp-block-button.is-style-squared\":false,\".wp-block-button__link.wp-block-button.is-style-squared\":false},[\"border-radius:0\"]],[false,{\".wp-block-button.no-border-radius:not(#_#_#_#_#_#_#_)\":false,\".wp-block-button__link.no-border-radius:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\"]],[false,{\".is-style-outline>.wp-block-button__link\":false,\".wp-block-button__link.is-style-outline\":false},[\"border:2px solid\",\"padding:.667em 1.333em\"]],[false,{\".is-style-outline>.wp-block-button__link:not(.has-text-color)\":false,\".wp-block-button__link.is-style-outline:not(.has-text-color)\":false},[\"color:currentColor\"]],[false,{\".is-style-outline>.wp-block-button__link:not(.has-background)\":false,\".wp-block-button__link.is-style-outline:not(.has-background)\":false},[\"background-color:transparent\"]],[false,{\".wp-block-buttons\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\",\"column-gap:.5em\"]],[false,{\".wp-block-buttons.is-vertical\":false},[\"flex-direction:column\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.is-vertical>.wp-block-button:last-child\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-buttons>.wp-block-button\":false},[\"display:inline-block\",\"margin-left:0\",\"margin-right:.5em\",\"margin-bottom:.5em\"]],[false,{\".wp-block-buttons>.wp-block-button:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.is-content-justification-left\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-left.is-vertical\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-buttons.is-content-justification-center\":false},[\"justify-content:center\"]],[false,{\".wp-block-buttons.is-content-justification-center.is-vertical\":false},[\"align-items:center\"]],[false,{\".wp-block-buttons.is-content-justification-right\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button\":false},[\"margin-left:.5em\",\"margin-right:0\"]],[false,{\".wp-block-buttons.is-content-justification-right>.wp-block-button:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-buttons.is-content-justification-right.is-vertical\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-buttons.is-content-justification-space-between\":false},[\"justify-content:space-between\"]],[false,{\".wp-block-buttons.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-buttons.alignleft .wp-block-button\":false},[\"margin-left:0\",\"margin-right:.5em\"]],[false,{\".wp-block-buttons.alignleft .wp-block-button:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-buttons.alignright .wp-block-button\":false},[\"margin-right:0\",\"margin-left:.5em\"]],[false,{\".wp-block-buttons.alignright .wp-block-button:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-button.aligncenter\":false,\".wp-block-calendar\":false},[\"text-align:center\"]],[false,{\".wp-block-calendar tbody td\":false,\".wp-block-calendar th\":false},[\"padding:.25em\",\"border:1px solid #ddd\"]],[false,{\".wp-block-calendar tfoot td\":false},[\"border:none\"]],[false,{\".wp-block-calendar table\":false},[\"width:100%\",\"border-collapse:collapse\"]],[false,{\".wp-block-calendar table th\":false},[\"font-weight:400\",\"background:#ddd\"]],[false,{\".wp-block-calendar a\":false},[\"text-decoration:underline\"]],[false,{\".wp-block-calendar table caption\":false,\".wp-block-calendar table tbody\":false},[\"color:#40464d\"]],[false,{\".wp-block-categories.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-categories.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-code code\":false},[\"display:block\",\"white-space:pre-wrap\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-columns\":false},[\"display:flex\",\"margin-bottom:1.75em\",\"box-sizing:border-box\",\"flex-wrap:wrap\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-columns\":false},[\"flex-wrap:nowrap\"]],[false,\"}\"],[false,{\".wp-block-columns.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-columns.are-vertically-aligned-top\":false},[\"align-items:flex-start\"]],[false,{\".wp-block-columns.are-vertically-aligned-center\":false},[\"align-items:center\"]],[false,{\".wp-block-columns.are-vertically-aligned-bottom\":false},[\"align-items:flex-end\"]],[false,{\".wp-block-column\":false},[\"flex-grow:1\",\"min-width:0\",\"word-break:break-word\",\"overflow-wrap:break-word\"]],[false,\"@media (max-width:599px){\"],[false,{\".wp-block-column:not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:100%\"]],[false,\"}\"],[false,\"@media (min-width:600px) and (max-width:781px){\"],[false,{\".wp-block-column:not(:only-child)\":false},[\"flex-grow:0\"]],[false,{\".wp-block-column:not(:only-child):not(#_#_#_#_#_#_#_)\":false},[\"flex-basis:calc(50% - 1em)\"]],[false,{\".wp-block-column:nth-child(2n)\":false},[\"margin-left:2em\"]],[false,\"}\"],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-column\":false},[\"flex-basis:0\",\"flex-grow:1\"]],[false,{\".wp-block-column[data-amp-original-style*=flex-basis]\":false},[\"flex-grow:0\"]],[false,{\".wp-block-column:not(:first-child)\":false},[\"margin-left:2em\"]],[false,\"}\"],[false,{\".wp-block-column.is-vertically-aligned-top\":false},[\"align-self:flex-start\"]],[false,{\".wp-block-column.is-vertically-aligned-center\":false},[\"align-self:center\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false},[\"align-self:flex-end\"]],[false,{\".wp-block-column.is-vertically-aligned-bottom\":false,\".wp-block-column.is-vertically-aligned-center\":false,\".wp-block-column.is-vertically-aligned-top\":false},[\"width:100%\"]],[false,{\".wp-block-cover\":false,\".wp-block-cover-image\":false},[\"position:relative\",\"background-size:cover\",\"background-position:50%\",\"min-height:430px\",\"width:100%\",\"display:flex\",\"justify-content:center\",\"align-items:center\",\"padding:1em\",\"box-sizing:border-box\"]],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:fixed\"]],[false,\"@supports (-webkit-overflow-scrolling:touch){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-cover-image.has-parallax\":false,\".wp-block-cover.has-parallax\":false},[\"background-attachment:scroll\"]],[false,\"}\"],[false,{\".wp-block-cover-image.is-repeated\":false,\".wp-block-cover.is-repeated\":false},[\"background-repeat:repeat\",\"background-size:auto\"]],[false,{\".wp-block-cover-image.has-background-dim:not([class*=-background-color])\":false,\".wp-block-cover.has-background-dim:not([class*=-background-color])\":false},[\"background-color:#000\"]],[false,{\".wp-block-cover-image.has-background-dim:before\":false,\".wp-block-cover.has-background-dim:before\":false},[\"content:\\\"\\\"\",\"background-color:inherit\"]],[false,{\".wp-block-cover-image.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover-image .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim:not(.has-background-gradient):before\":false,\".wp-block-cover .wp-block-cover__gradient-background\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"bottom:0\",\"right:0\",\"z-index:1\",\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-10 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-10:not(.has-background-gradient):before\":false},[\"opacity:.1\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-20 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-20:not(.has-background-gradient):before\":false},[\"opacity:.2\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-30 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-30:not(.has-background-gradient):before\":false},[\"opacity:.3\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-40 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-40:not(.has-background-gradient):before\":false},[\"opacity:.4\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-50 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-50:not(.has-background-gradient):before\":false},[\"opacity:.5\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-60 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-60:not(.has-background-gradient):before\":false},[\"opacity:.6\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-70 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-70:not(.has-background-gradient):before\":false},[\"opacity:.7\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-80 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-80:not(.has-background-gradient):before\":false},[\"opacity:.8\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-90 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-90:not(.has-background-gradient):before\":false},[\"opacity:.9\"]],[false,{\".wp-block-cover-image.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover-image.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false,\".wp-block-cover.has-background-dim.has-background-dim-100 .wp-block-cover__gradient-background\":false,\".wp-block-cover.has-background-dim.has-background-dim-100:not(.has-background-gradient):before\":false},[\"opacity:1\"]],[false,{\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".wp-block-cover-image:after\":false,\".wp-block-cover:after\":false},[\"display:block\",\"content:\\\"\\\"\",\"font-size:0\",\"min-height:inherit\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-cover-image:after\":false,\".wp-block-cover:after\":false},[\"content:none\"]],[false,\"}\"],[false,{\".wp-block-cover-image.aligncenter\":false,\".wp-block-cover-image.alignleft\":false,\".wp-block-cover-image.alignright\":false,\".wp-block-cover.aligncenter\":false,\".wp-block-cover.alignleft\":false,\".wp-block-cover.alignright\":false},[\"display:flex\"]],[false,{\".wp-block-cover-image .wp-block-cover__inner-container\":false,\".wp-block-cover .wp-block-cover__inner-container\":false},[\"width:100%\",\"z-index:1\",\"color:#fff\"]],[false,{\".wp-block-cover-image h1:not(.has-text-color)\":false,\".wp-block-cover-image h2:not(.has-text-color)\":false,\".wp-block-cover-image h3:not(.has-text-color)\":false,\".wp-block-cover-image h4:not(.has-text-color)\":false,\".wp-block-cover-image h5:not(.has-text-color)\":false,\".wp-block-cover-image h6:not(.has-text-color)\":false,\".wp-block-cover-image p:not(.has-text-color)\":false,\".wp-block-cover h1:not(.has-text-color)\":false,\".wp-block-cover h2:not(.has-text-color)\":false,\".wp-block-cover h3:not(.has-text-color)\":false,\".wp-block-cover h4:not(.has-text-color)\":false,\".wp-block-cover h5:not(.has-text-color)\":false,\".wp-block-cover h6:not(.has-text-color)\":false,\".wp-block-cover p:not(.has-text-color)\":false},[\"color:inherit\"]],[false,{\".wp-block-cover-image.is-position-top-left\":false,\".wp-block-cover.is-position-top-left\":false},[\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-top-center\":false,\".wp-block-cover.is-position-top-center\":false},[\"align-items:flex-start\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-top-right\":false,\".wp-block-cover.is-position-top-right\":false},[\"align-items:flex-start\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-center-left\":false,\".wp-block-cover.is-position-center-left\":false},[\"align-items:center\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-center-center\":false,\".wp-block-cover.is-position-center-center\":false},[\"align-items:center\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-center-right\":false,\".wp-block-cover.is-position-center-right\":false},[\"align-items:center\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.is-position-bottom-left\":false,\".wp-block-cover.is-position-bottom-left\":false},[\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image.is-position-bottom-center\":false,\".wp-block-cover.is-position-bottom-center\":false},[\"align-items:flex-end\",\"justify-content:center\"]],[false,{\".wp-block-cover-image.is-position-bottom-right\":false,\".wp-block-cover.is-position-bottom-right\":false},[\"align-items:flex-end\",\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false,\".wp-block-cover.has-custom-content-position.has-custom-content-position .wp-block-cover__inner-container\":false},[\"margin:0\",\"width:auto\"]],[false,{\".wp-block-cover-image amp-img.wp-block-cover__image-background\":false,\".wp-block-cover-image amp-anim.wp-block-cover__image-background\":false,\".wp-block-cover-image amp-video.wp-block-cover__video-background\":false,\".wp-block-cover-image amp-youtube.wp-block-cover__video-background\":false,\".wp-block-cover amp-img.wp-block-cover__image-background\":false,\".wp-block-cover amp-anim.wp-block-cover__image-background\":false,\".wp-block-cover amp-video.wp-block-cover__video-background\":false,\".wp-block-cover amp-youtube.wp-block-cover__video-background\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"margin:0\",\"padding:0\",\"width:100%\",\"height:100%\",\"max-width:none\",\"max-height:none\",\"-o-object-fit:cover\",\"object-fit:cover\",\"outline:none\",\"border:none\",\"box-shadow:none\"]],[false,{\".wp-block-cover__image-background\":false,\".wp-block-cover__video-background\":false},[\"z-index:0\"]],[false,{\".wp-block-cover-image-text\":false,\".wp-block-cover-image-text a\":false,\".wp-block-cover-image-text a:active\":false,\".wp-block-cover-image-text a:focus\":false,\".wp-block-cover-image-text a:hover\":false,\".wp-block-cover-text\":false,\".wp-block-cover-text a\":false,\".wp-block-cover-text a:active\":false,\".wp-block-cover-text a:focus\":false,\".wp-block-cover-text a:hover\":false,\"section.wp-block-cover-image h2\":false,\"section.wp-block-cover-image h2 a\":false,\"section.wp-block-cover-image h2 a:active\":false,\"section.wp-block-cover-image h2 a:focus\":false,\"section.wp-block-cover-image h2 a:hover\":false},[\"color:#fff\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-left-content\":false},[\"justify-content:flex-start\"]],[false,{\".wp-block-cover-image .wp-block-cover.has-right-content\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-cover-image.has-left-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-left-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-left-content>h2\":false},[\"margin-left:0\",\"text-align:left\"]],[false,{\".wp-block-cover-image.has-right-content .wp-block-cover-image-text\":false,\".wp-block-cover.has-right-content .wp-block-cover-text\":false,\"section.wp-block-cover-image.has-right-content>h2\":false},[\"margin-right:0\",\"text-align:right\"]],[false,{\".wp-block-cover-image .wp-block-cover-image-text\":false,\".wp-block-cover .wp-block-cover-text\":false,\"section.wp-block-cover-image>h2\":false},[\"font-size:2em\",\"line-height:1.25\",\"z-index:1\",\"margin-bottom:0\",\"max-width:840px\",\"padding:.44em\",\"text-align:center\"]],[false,{\".wp-block-embed.alignleft\":false,\".wp-block-embed.alignright\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"]\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"]\":false},[\"max-width:360px\",\"width:100%\"]],[false,{\".wp-block-embed.alignleft .wp-block-embed__wrapper\":false,\".wp-block-embed.alignright .wp-block-embed__wrapper\":false,\".wp-block[data-align=left]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false,\".wp-block[data-align=right]>[data-type=\\\"core\\/embed\\\"] .wp-block-embed__wrapper\":false},[\"min-width:280px\"]],[false,{\".wp-block-cover .wp-block-embed\":false},[\"min-width:320px\",\"min-height:240px\"]],[false,{\".wp-block-embed\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-embed figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-embed amp-iframe\":false},[\"max-width:100%\"]],[false,{\".wp-block-embed__wrapper\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio .wp-block-embed__wrapper:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-has-aspect-ratio amp-iframe\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"height:100%\",\"width:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-21-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:42.85%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-18-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:50%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-16-9 .wp-block-embed__wrapper:before\":false},[\"padding-top:56.25%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before\":false},[\"padding-top:75%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-1 .wp-block-embed__wrapper:before\":false},[\"padding-top:100%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-9-16 .wp-block-embed__wrapper:before\":false},[\"padding-top:177.77%\"]],[false,{\".wp-embed-responsive .wp-embed-aspect-1-2 .wp-block-embed__wrapper:before\":false},[\"padding-top:200%\"]],[false,{\".wp-block-file\":false},[\"margin-bottom:1.5em\"]],[false,{\".wp-block-file.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-file.alignright\":false},[\"text-align:right\"]],[false,{\".wp-block-file .wp-block-file__embed\":false},[\"margin-bottom:1em\"]],[false,{\".wp-block-file .wp-block-file__button\":false},[\"background:#32373c\",\"border-radius:2em\",\"color:#fff\",\"font-size:.8em\",\"padding:.5em 1em\"]],[false,{\".wp-block-file a.wp-block-file__button\":false},[\"text-decoration:none\"]],[false,{\".wp-block-file a.wp-block-file__button:active\":false,\".wp-block-file a.wp-block-file__button:focus\":false,\".wp-block-file a.wp-block-file__button:hover\":false,\".wp-block-file a.wp-block-file__button:visited\":false},[\"box-shadow:none\",\"color:#fff\",\"opacity:.85\",\"text-decoration:none\"]],[false,{\".wp-block-file *+.wp-block-file__button\":false},[\"margin-left:.75em\"]],[false,{\".blocks-gallery-grid\":false,\".wp-block-gallery\":false},[\"display:flex\",\"flex-wrap:wrap\",\"list-style-type:none\",\"padding:0\",\"margin:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image\":false,\".blocks-gallery-grid .blocks-gallery-item\":false,\".wp-block-gallery .blocks-gallery-image\":false,\".wp-block-gallery .blocks-gallery-item\":false},[\"margin:0 1em 1em 0\",\"display:flex\",\"flex-grow:1\",\"flex-direction:column\",\"justify-content:center\",\"position:relative\",\"align-self:flex-start\",\"width:calc(50% - 1em)\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery .blocks-gallery-item:nth-of-type(2n)\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image figure\":false,\".blocks-gallery-grid .blocks-gallery-item figure\":false,\".wp-block-gallery .blocks-gallery-image figure\":false,\".wp-block-gallery .blocks-gallery-item figure\":false},[\"margin:0\",\"height:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid .blocks-gallery-image figure\":false,\".blocks-gallery-grid .blocks-gallery-item figure\":false,\".wp-block-gallery .blocks-gallery-image figure\":false,\".wp-block-gallery .blocks-gallery-item figure\":false},[\"display:flex\",\"align-items:flex-end\",\"justify-content:flex-start\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item amp-anim\":false,\".wp-block-gallery .blocks-gallery-image amp-img\":false,\".wp-block-gallery .blocks-gallery-image amp-anim\":false,\".wp-block-gallery .blocks-gallery-item amp-img\":false,\".wp-block-gallery .blocks-gallery-item amp-anim\":false},[\"display:block\",\"max-width:100%\",\"height:auto\",\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item amp-anim\":false,\".wp-block-gallery .blocks-gallery-image amp-img\":false,\".wp-block-gallery .blocks-gallery-image amp-anim\":false,\".wp-block-gallery .blocks-gallery-item amp-img\":false,\".wp-block-gallery .blocks-gallery-item amp-anim\":false},[\"width:auto\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image figcaption\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption\":false,\".wp-block-gallery .blocks-gallery-image figcaption\":false,\".wp-block-gallery .blocks-gallery-item figcaption\":false},[\"position:absolute\",\"bottom:0\",\"width:100%\",\"max-height:100%\",\"overflow:auto\",\"padding:3em .77em .7em\",\"color:#fff\",\"text-align:center\",\"font-size:.8em\",\"background:linear-gradient(0deg,rgba(0,0,0,.7),rgba(0,0,0,.3) 70%,transparent)\",\"box-sizing:border-box\",\"margin:0\"]],[false,{\".blocks-gallery-grid .blocks-gallery-image figcaption amp-img\":false,\".blocks-gallery-grid .blocks-gallery-image figcaption amp-anim\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption amp-img\":false,\".blocks-gallery-grid .blocks-gallery-item figcaption amp-anim\":false,\".wp-block-gallery .blocks-gallery-image figcaption amp-img\":false,\".wp-block-gallery .blocks-gallery-image figcaption amp-anim\":false,\".wp-block-gallery .blocks-gallery-item figcaption amp-img\":false,\".wp-block-gallery .blocks-gallery-item figcaption amp-anim\":false},[\"display:inline\"]],[false,{\".blocks-gallery-grid figcaption\":false,\".wp-block-gallery figcaption\":false},[\"flex-grow:1\"]],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item\":false},[\"align-self:inherit\"]],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-anim\":false},[\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".blocks-gallery-grid.is-cropped .blocks-gallery-image a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-image amp-anim\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item a\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-img\":false,\".blocks-gallery-grid.is-cropped .blocks-gallery-item amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-image amp-anim\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item a\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-img\":false,\".wp-block-gallery.is-cropped .blocks-gallery-item amp-anim\":false},[\"height:100%\",\"flex:1\",\"-o-object-fit:cover\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".blocks-gallery-grid.columns-1 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-1 .blocks-gallery-item\":false,\".wp-block-gallery.columns-1 .blocks-gallery-image\":false,\".wp-block-gallery.columns-1 .blocks-gallery-item\":false},[\"width:100%\",\"margin-right:0\"]],[false,\"@media (min-width:600px){\"],[false,{\".blocks-gallery-grid.columns-3 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-item\":false,\".wp-block-gallery.columns-3 .blocks-gallery-image\":false,\".wp-block-gallery.columns-3 .blocks-gallery-item\":false},[\"width:calc(33.33333% - .66667em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-4 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-item\":false,\".wp-block-gallery.columns-4 .blocks-gallery-image\":false,\".wp-block-gallery.columns-4 .blocks-gallery-item\":false},[\"width:calc(25% - .75em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-5 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-item\":false,\".wp-block-gallery.columns-5 .blocks-gallery-image\":false,\".wp-block-gallery.columns-5 .blocks-gallery-item\":false},[\"width:calc(20% - .8em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-6 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-item\":false,\".wp-block-gallery.columns-6 .blocks-gallery-image\":false,\".wp-block-gallery.columns-6 .blocks-gallery-item\":false},[\"width:calc(16.66667% - .83333em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-7 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-item\":false,\".wp-block-gallery.columns-7 .blocks-gallery-image\":false,\".wp-block-gallery.columns-7 .blocks-gallery-item\":false},[\"width:calc(14.28571% - .85714em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-8 .blocks-gallery-image\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-item\":false,\".wp-block-gallery.columns-8 .blocks-gallery-image\":false,\".wp-block-gallery.columns-8 .blocks-gallery-item\":false},[\"width:calc(12.5% - .875em)\",\"margin-right:1em\"]],[false,{\".blocks-gallery-grid.columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".blocks-gallery-grid.columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".blocks-gallery-grid.columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".blocks-gallery-grid.columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".blocks-gallery-grid.columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".blocks-gallery-grid.columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".blocks-gallery-grid.columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".blocks-gallery-grid.columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".blocks-gallery-grid.columns-8 .blocks-gallery-item:nth-of-type(8n)\":false,\".wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n)\":false,\".wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n)\":false,\".wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n)\":false,\".wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n)\":false,\".wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n)\":false,\".wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n)\":false,\".wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n)\":false,\".wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n)\":false,\".wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n)\":false,\".wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n)\":false,\".wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n)\":false,\".wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n)\":false,\".wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n)\":false,\".wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n)\":false,\".wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n)\":false,\".wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".blocks-gallery-grid .blocks-gallery-image:last-child\":false,\".blocks-gallery-grid .blocks-gallery-item:last-child\":false,\".wp-block-gallery .blocks-gallery-image:last-child\":false,\".wp-block-gallery .blocks-gallery-item:last-child\":false},[\"margin-right:0\"]],[false,{\".blocks-gallery-grid.alignleft\":false,\".blocks-gallery-grid.alignright\":false,\".wp-block-gallery.alignleft\":false,\".wp-block-gallery.alignright\":false},[\"max-width:420px\",\"width:100%\"]],[false,{\".blocks-gallery-grid.aligncenter .blocks-gallery-item figure\":false,\".wp-block-gallery.aligncenter .blocks-gallery-item figure\":false},[\"justify-content:center\"]],[false,{\".wp-block-group\":false},[\"box-sizing:border-box\"]],[false,{\"h1.has-background\":false,\"h2.has-background\":false,\"h3.has-background\":false,\"h4.has-background\":false,\"h5.has-background\":false,\"h6.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-image\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-image amp-img\":false,\".wp-block-image amp-anim\":false},[\"max-width:100%\"]],[false,{\".wp-block-image:not(.is-style-rounded) amp-img\":false,\".wp-block-image:not(.is-style-rounded) amp-anim\":false},[\"border-radius:inherit\"]],[false,{\".wp-block-image.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-image.alignfull amp-img\":false,\".wp-block-image.alignfull amp-anim\":false,\".wp-block-image.alignwide amp-img\":false,\".wp-block-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\".wp-block-image .aligncenter\":false,\".wp-block-image .alignleft\":false,\".wp-block-image .alignright\":false},[\"display:table\"]],[false,{\".wp-block-image .aligncenter>figcaption\":false,\".wp-block-image .alignleft>figcaption\":false,\".wp-block-image .alignright>figcaption\":false},[\"display:table-caption\",\"caption-side:bottom\"]],[false,{\".wp-block-image .alignleft\":false},[\"float:left\",\"margin:.5em 1em .5em 0\"]],[false,{\".wp-block-image .alignright\":false},[\"float:right\",\"margin:.5em 0 .5em 1em\"]],[false,{\".wp-block-image .aligncenter\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".wp-block-image figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false,\".wp-block-image.is-style-rounded amp-img\":false,\".wp-block-image.is-style-rounded amp-anim\":false},[\"border-radius:9999px\"]],[false,\"@supports ((-webkit-mask-image:none) or (mask-image:none)) or (-webkit-mask-image:none){\"],[false,{\".wp-block-image.is-style-circle-mask amp-img\":false,\".wp-block-image.is-style-circle-mask amp-anim\":false},[\"-webkit-mask-image:url(\\\"data:image\\/svg+xml;utf8,<\\/svg>\\\")\",\"mask-image:url(\\\"data:image\\/svg+xml;utf8,<\\/svg>\\\")\",\"mask-mode:alpha\",\"-webkit-mask-repeat:no-repeat\",\"mask-repeat:no-repeat\",\"-webkit-mask-size:contain\",\"mask-size:contain\",\"-webkit-mask-position:center\",\"mask-position:center\",\"border-radius:0\"]],[false,\"}\"],[false,{\".wp-block-image figure\":false},[\"margin:0\"]],[false,{\"ol.wp-block-latest-comments\":false},[\"margin-left:0\"]],[false,{\".wp-block-latest-comments .wp-block-latest-comments\":false},[\"padding-left:0\"]],[false,{\".wp-block-latest-comments__comment\":false},[\"line-height:1.1\",\"list-style:none\",\"margin-bottom:1em\"]],[false,{\".has-avatars .wp-block-latest-comments__comment\":false},[\"min-height:2.25em\",\"list-style:none\"]],[false,{\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt\":false,\".has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta\":false},[\"margin-left:3.25em\"]],[false,{\".has-dates .wp-block-latest-comments__comment\":false,\".has-excerpts .wp-block-latest-comments__comment\":false},[\"line-height:1.5\"]],[false,{\".wp-block-latest-comments__comment-excerpt p\":false},[\"font-size:.875em\",\"line-height:1.8\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-latest-comments__comment-date\":false},[\"display:block\",\"font-size:.75em\"]],[false,{\".wp-block-latest-comments .avatar\":false,\".wp-block-latest-comments__comment-avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-latest-posts.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-latest-posts.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list\":false},[\"list-style:none\",\"padding-left:0\"]],[false,{\".wp-block-latest-posts.wp-block-latest-posts__list li\":false},[\"clear:both\"]],[false,{\".wp-block-latest-posts.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\"]],[false,{\".wp-block-latest-posts.is-grid li\":false},[\"margin:0 1.25em 1.25em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-latest-posts.columns-2 li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-latest-posts.columns-2 li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-3 li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-latest-posts.columns-3 li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-4 li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-latest-posts.columns-4 li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-latest-posts.columns-5 li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-latest-posts.columns-6 li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-latest-posts.columns-6 li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".wp-block-latest-posts__post-author\":false,\".wp-block-latest-posts__post-date\":false},[\"display:block\",\"color:#555\",\"font-size:.8125em\"]],[false,{\".wp-block-latest-posts__post-excerpt\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-latest-posts__featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-latest-posts__featured-image amp-img\":false,\".wp-block-latest-posts__featured-image amp-anim\":false},[\"height:auto\",\"width:auto\",\"max-width:100%\"]],[false,{\".wp-block-latest-posts__featured-image.alignleft\":false},[\"margin-right:1em\"]],[false,{\".wp-block-latest-posts__featured-image.alignright\":false},[\"margin-left:1em\"]],[false,{\".wp-block-latest-posts__featured-image.aligncenter\":false},[\"margin-bottom:1em\",\"text-align:center\"]],[false,{\".block-editor-image-alignment-control__row .components-base-control__field\":false},[\"display:flex\",\"justify-content:space-between\",\"align-items:center\"]],[false,{\".block-editor-image-alignment-control__row .components-base-control__field .components-base-control__label\":false},[\"margin-bottom:0\"]],[false,{\"ol.has-background\":false,\"ul.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-media-text\":false},[\"direction:ltr\",\"display:grid\",\"grid-template-columns:50% 1fr\",\"grid-template-rows:auto\"]],[false,{\".wp-block-media-text.has-media-on-the-right\":false},[\"grid-template-columns:1fr 50%\"]],[false,{\".wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media\":false},[\"align-self:start\"]],[false,{\".wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media\":false,\".wp-block-media-text .wp-block-media-text__content\":false,\".wp-block-media-text .wp-block-media-text__media\":false},[\"align-self:center\"]],[false,{\".wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content\":false,\".wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media\":false},[\"align-self:end\"]],[false,{\".wp-block-media-text .wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\",\"margin:0\"]],[false,{\".wp-block-media-text .wp-block-media-text__content\":false},[\"direction:ltr\",\"grid-column:2\",\"grid-row:1\",\"padding:0 8%\",\"word-break:break-word\"]],[false,{\".wp-block-media-text.has-media-on-the-right .wp-block-media-text__media\":false},[\"grid-column:2\",\"grid-row:1\"]],[false,{\".wp-block-media-text.has-media-on-the-right .wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text__media amp-img\":false,\".wp-block-media-text__media amp-anim\":false,\".wp-block-media-text__media amp-video\":false,\".wp-block-media-text__media amp-youtube\":false},[\"max-width:unset\",\"width:100%\",\"vertical-align:middle\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media\":false},[\"height:100%\",\"min-height:250px\",\"background-size:cover\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media>a\":false},[\"display:block\",\"height:100%\"]],[false,{\".wp-block-media-text.is-image-fill .wp-block-media-text__media amp-img\":false,\".wp-block-media-text.is-image-fill .wp-block-media-text__media amp-anim\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,\"@media (max-width:600px){\"],[false,{\".wp-block-media-text.is-stacked-on-mobile:not(#_#_#_#_#_#_#_)\":false},[\"grid-template-columns:100%\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media\":false},[\"grid-column:1\",\"grid-row:1\"]],[false,{\".wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content\":false},[\"grid-column:1\",\"grid-row:2\"]],[false,\"}\"],[false,{\".wp-block-navigation\":false},[\"position:relative\"]],[false,{\".wp-block-navigation ul\":false,\".wp-block-navigation ul li\":false},[\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-navigation .wp-block-navigation-link\":false,\".wp-block-navigation .wp-block-pages-list__item\":false},[\"display:flex\",\"align-items:center\",\"position:relative\"]],[false,{\".wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__container:empty\":false,\".wp-block-navigation .wp-block-pages-list__item .wp-block-navigation-link__container:empty\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__content\":false,\".wp-block-navigation .wp-block-pages-list__item__link\":false},[\"color:inherit\",\"display:block\"]],[false,{\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__container\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-navigation-link__content:focus\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-pages-list__item__link:focus\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-navigation-link__content:focus\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-pages-list__item__link:focus\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .wp-block-page-list__submenu-icon\":false},[\"height:inherit\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .wp-block-page-list__submenu-icon svg\":false},[\"stroke:currentColor\"]],[false,{\".wp-block-navigation .wp-block-navigation-link .wp-block-navigation-link__content.wp-block-navigation-link__content.wp-block-navigation-link__content\":false,\".wp-block-navigation .wp-block-pages-list__item .wp-block-pages-list__item__link\":false},[\"padding:0\"]],[false,{\".wp-block-navigation .has-child>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child>.wp-block-pages-list__item__link\":false},[\"margin-right:.5em\"]],[false,{\".wp-block-navigation .has-child .submenu-container\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container\":false},[\"background-color:inherit\",\"color:inherit\",\"position:absolute\",\"z-index:2\",\"flex-direction:column\",\"align-items:normal\",\"min-width:200px\",\"display:none\",\"opacity:0\",\"transition:opacity .1s linear\",\"visibility:hidden\"]],[false,{\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-pages-list__item__link\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-navigation-link__content\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-pages-list__item__link\":false},[\"flex-grow:1\"]],[false,{\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-navigation-link>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .submenu-container>.wp-block-pages-list__item>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-navigation-link>.wp-block-page-list__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container>.wp-block-pages-list__item>.wp-block-page-list__submenu-icon\":false},[\"padding-right:.5em\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation .has-child .submenu-container .submenu-container:before\":false,\".wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container:before\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container:before\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"right:100%\",\"height:100%\",\"display:block\",\"width:.5em\",\"background:transparent\"]],[false,{\".wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .has-child .submenu-container .wp-block-page-list__submenu-icon svg\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__submenu-icon svg\":false,\".wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-page-list__submenu-icon svg\":false},[\"transform:rotate(-90deg)\"]],[false,\"}\"],[false,{\".wp-block-navigation .has-child:hover>.wp-block-navigation-link__container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:focus-within>.wp-block-navigation-link__container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:hover\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation .has-child:hover>.submenu-container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation .has-child:focus-within\":false},[\"cursor:pointer\"]],[false,{\".wp-block-navigation .has-child:focus-within>.submenu-container\":false},[\"display:flex\",\"visibility:visible\",\"opacity:1\"]],[false,{\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container\":false},[\"left:auto\",\"right:0\"]],[false,{\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.submenu-container .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-right>.wp-block-navigation__container .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.submenu-container>.has-child:last-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.items-justified-space-between>.wp-block-navigation__container>.has-child:last-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:auto\",\"right:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation .wp-block-navigation__container>.wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list>.wp-block-pages-list__item\":false},[\"margin:0 2em 0 0\"]],[false,{\".wp-block-navigation.wp-block-navigation .wp-block-navigation__container>.wp-block-navigation-link:last-child\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list:last-child\":false,\".wp-block-navigation.wp-block-navigation .wp-block-page-list>.wp-block-pages-list__item:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .wp-block-navigation__container>.wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list>.wp-block-pages-list__item\":false},[\"margin:0 .5em 0 0\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .wp-block-navigation__container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation.has-background .wp-block-page-list .wp-block-pages-list__item__link\":false},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container\":false},[\"left:-1em\",\"top:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-pages-list__item\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-pages-list__item\":false},[\"margin:0\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-pages-list__item__link\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__content\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-pages-list__item__link\":false},[\"padding:.5em 1em\"]],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:-1px\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:100%\",\"top:-1px\"]],[false,\"}\"],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container\":false},[\"left:0\",\"top:100%\"]],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:0\"]],[false,\"@media (min-width:782px){\"],[false,{\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .submenu-container .wp-block-navigation-link__container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .submenu-container\":false,\".wp-block-navigation.wp-block-navigation.has-background .has-child .wp-block-navigation-link__container .wp-block-navigation-link__container\":false},[\"left:100%\",\"top:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .submenu-container\":false,\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-navigation-link__container\":false},[\"background-color:#fff\",\"color:#000\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation__container\":false},[\"align-items:center\",\"list-style:none\",\"margin:0\",\"padding-left:0\"]],[false,{\".wp-block-navigation__container .is-responsive\":false},[\"display:none\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__container\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".is-vertical .wp-block-navigation__container\":false},[\"display:block\",\"flex-direction:column\",\"align-items:flex-start\"]],[false,\"}\"],[false,{\".items-justified-center .wp-block-navigation__container\":false},[\"justify-content:center\"]],[false,{\".items-justified-right .wp-block-navigation__container\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between .wp-block-navigation__container\":false},[\"justify-content:space-between\"]],[false,{\".is-vertical.items-justified-center>ul\":false},[\"align-items:center\"]],[false,{\".is-vertical.items-justified-right>ul\":false},[\"align-items:flex-end\"]],[false,{\".is-vertical.items-justified-right>ul .wp-block-navigation-link\":false,\".is-vertical.items-justified-right>ul .wp-block-pages-list__item\":false},[\"margin-right:0\",\"justify-content:flex-end\"]],[false,{\".wp-block-navigation__responsive-container\":false},[\"display:none\",\"position:fixed\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"z-index:1\",\"align-items:flex-start\",\"justify-content:flex-start\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open\":false},[\"display:flex\",\"flex-direction:column\",\"overflow:auto\",\"z-index:100000\",\"padding:24px\",\"background-color:inherit\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container\":false},[\"display:flex\",\"flex-direction:column\",\"margin-left:auto\",\"margin-right:auto\",\"align-items:flex-start\",\"line-height:48px\",\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container .wp-block-page-list\":false},[\"flex-direction:column\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link .wp-block-navigation-link__container:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item:not(#_#_#_#_#_#_#_)\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item .submenu-container:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open)\":false},[\"display:flex\",\"flex-direction:row\",\"position:relative\",\"background-color:inherit\"]],[false,{\".wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__responsive-container-close\":false},[\"display:none\"]],[false,{\".wp-block-navigation__responsive-container.is-menu-open .submenu-container.submenu-container.submenu-container.submenu-container\":false,\".wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link__container.wp-block-navigation-link__container.wp-block-navigation-link__container.wp-block-navigation-link__container\":false},[\"left:0\"]],[false,\"}\"],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__responsive-container.is-menu-open\":false},[\"background-color:#fff\",\"color:#000\"]],[false,{\".wp-block-navigation__responsive-container-close\":false,\".wp-block-navigation__responsive-container-open\":false},[\"vertical-align:middle\",\"cursor:pointer\",\"color:currentColor\",\"background:transparent\",\"border:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-navigation__responsive-container-close svg\":false,\".wp-block-navigation__responsive-container-open svg\":false},[\"fill:currentColor\",\"pointer-events:none\",\"display:block\",\"width:24px\",\"height:24px\"]],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:flex\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-navigation__responsive-container-open\":false},[\"display:none\"]],[false,\"}\"],[false,{\".items-justified-left .wp-block-navigation__responsive-container-open\":false},[\"margin-left:0\",\"margin-right:auto\"]],[false,{\".items-justified-center .wp-block-navigation__responsive-container-open\":false},[\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".items-justified-right .wp-block-navigation__responsive-container-open\":false},[\"margin-left:auto\",\"margin-right:0\"]],[false,{\".wp-block-navigation__responsive-container-close\":false},[\"position:absolute\",\"top:24px\",\"right:24px\",\"z-index:2\"]],[false,{\".wp-block-navigation__responsive-close\":false},[\"width:100%\"]],[false,{\".is-menu-open .wp-block-navigation__responsive-close\":false,\".is-menu-open .wp-block-navigation__responsive-container-content\":false,\".is-menu-open .wp-block-navigation__responsive-dialog\":false},[\"width:100%\",\"height:100%\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link__submenu-icon\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-page-list__submenu-icon\":false},[\"display:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .has-child .submenu-container\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .has-child .wp-block-navigation-link__container\":false},[\"position:relative\",\"opacity:1\",\"visibility:visible\",\"padding:0 0 0 32px\",\"border:none\"]],[false,{\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-link\":false,\".wp-block-navigation .wp-block-navigation__responsive-container.is-menu-open .wp-block-pages-list__item\":false},[\"flex-direction:column\",\"align-items:flex-start\"]],[false,{\"html.has-modal-open\":false},[\"overflow:hidden\"]],[false,{\".wp-block-navigation .wp-block-navigation-link__label\":false},[\"word-break:normal\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-navigation .wp-block-home-link__content\":false},[\"color:inherit\",\"display:block\",\"padding:.5em 1em\"]],[false,{\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content:active\":false,\".wp-block-navigation[data-amp-original-style*=text-decoration] .wp-block-home-link__content:focus\":false},[\"text-decoration:inherit\"]],[false,{\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content:active\":false,\".wp-block-navigation:not([data-amp-original-style*=text-decoration]) .wp-block-home-link__content:focus\":false},[\"text-decoration:none\"]],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-home-link__container\":false},[\"background-color:#fff\",\"color:#000\",\"border:1px solid rgba(0,0,0,.15)\"]],[false,{\".wp-block-navigation:not(.has-background) .wp-block-navigation__container .wp-block-home-link__container .wp-block-home-link__container\":false},[\"top:-1px\"]],[false,{\".wp-block-navigation .wp-block-page-list\":false},[\"display:flex\",\"flex-wrap:wrap\",\"background-color:inherit\"]],[false,{\".wp-block-navigation .wp-block-pages-list__item\":false},[\"background-color:inherit\"]],[false,{\".wp-block-navigation .wp-block-page-list__submenu-icon\":false},[\"display:none\"]],[false,{\".is-open .wp-block-navigation__container .wp-block-page-list\":false,\".is-vertical .wp-block-navigation__container .wp-block-page-list\":false,\".wp-block-navigation .show-submenu-icons .wp-block-page-list__submenu-icon\":false},[\"display:block\"]],[false,\"@media (min-width:480px){\"],[false,{\".is-open .wp-block-navigation__container .wp-block-page-list\":false},[\"display:flex\"]],[false,\"}\"],[false,{\".items-justified-space-between .wp-block-page-list\":false},[\"display:contents\"]],[false,{\".is-small-text\":false},[\"font-size:.875em\"]],[false,{\".is-regular-text\":false},[\"font-size:1em\"]],[false,{\".is-large-text\":false},[\"font-size:2.25em\"]],[false,{\".is-larger-text\":false},[\"font-size:3em\"]],[false,{\".has-drop-cap:not(:focus):first-letter\":false},[\"float:left\",\"font-size:8.4em\",\"line-height:.68\",\"font-weight:100\",\"margin:.05em .1em 0 0\",\"text-transform:uppercase\",\"font-style:normal\"]],[false,{\"p.has-drop-cap.has-background\":false},[\"overflow:hidden\"]],[false,{\"p.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\"p.has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-post-author\":false},[\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-author__byline\":false},[\"width:100%\",\"margin-top:0\",\"margin-bottom:0\",\"font-size:.5em\"]],[false,{\".wp-block-post-author__avatar\":false},[\"margin-right:1em\"]],[false,{\".wp-block-post-author__bio\":false},[\"margin-bottom:.7em\",\"font-size:.7em\"]],[false,{\".wp-block-post-author__content\":false},[\"flex-grow:1\",\"flex-basis:0\"]],[false,{\".wp-block-post-author__name\":false},[\"font-weight:700\",\"margin:0\"]],[false,{\".wp-block-post-comments .commentlist\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .commentlist .comment\":false},[\"min-height:2.25em\",\"padding-left:3.25em\"]],[false,{\".wp-block-post-comments .commentlist .comment p\":false},[\"font-size:.875em\",\"line-height:1.8\",\"margin:.36em 0 1.4em\"]],[false,{\".wp-block-post-comments .commentlist .children\":false},[\"list-style:none\",\"margin:0\",\"padding:0\"]],[false,{\".wp-block-post-comments .comment-author\":false},[\"line-height:1.5\",\"margin-left:-3.25em\"]],[false,{\".wp-block-post-comments .comment-author .avatar\":false},[\"border-radius:1.5em\",\"display:block\",\"float:left\",\"height:2.5em\",\"margin-right:.75em\",\"width:2.5em\"]],[false,{\".wp-block-post-comments .comment-author cite\":false},[\"font-style:normal\"]],[false,{\".wp-block-post-comments .comment-meta\":false},[\"line-height:1.5\",\"margin-left:-3.25em\"]],[false,{\".wp-block-post-comments .comment-body .commentmetadata\":false},[\"font-size:.75em\"]],[false,{\".wp-block-post-comments .comment-form-author label\":false,\".wp-block-post-comments .comment-form-comment label\":false,\".wp-block-post-comments .comment-form-email label\":false,\".wp-block-post-comments .comment-form-url label\":false},[\"display:block\"]],[false,{\".wp-block-post-comments .comment-form-comment textarea\":false},[\"box-sizing:border-box\",\"width:100%\"]],[false,{\".wp-block-post-comments .reply\":false},[\"font-size:.75em\",\"margin-bottom:1.4em\"]],[false,{\".wp-block-post-comments input\":false,\".wp-block-post-comments textarea\":false},[\"border:1px solid #949494\"]],[false,{\".wp-block-post-comments-form input[type=submit]\":false},[\"border:none\",\"box-shadow:none\",\"cursor:pointer\",\"display:inline-block\",\"text-align:center\",\"overflow-wrap:break-word\"]],[false,{\".wp-block-post-excerpt__more-link\":false,\".wp-block-post-title a\":false},[\"display:inline-block\"]],[false,{\".wp-block-preformatted\":false},[\"white-space:pre-wrap\"]],[false,{\".wp-block-preformatted.has-background\":false},[\"padding:1.25em 2.375em\"]],[false,{\".wp-block-pullquote\":false},[\"margin:0 0 1em\",\"padding:3em 0\",\"text-align:center\"]],[false,{\".wp-block-pullquote.alignleft\":false,\".wp-block-pullquote.alignright\":false},[\"max-width:420px\"]],[false,{\".wp-block-pullquote.alignleft p\":false,\".wp-block-pullquote.alignright p\":false},[\"font-size:1.25em\"]],[false,{\".wp-block-pullquote p\":false},[\"font-size:1.75em\",\"line-height:1.6\"]],[false,{\".wp-block-pullquote cite\":false,\".wp-block-pullquote footer\":false},[\"position:relative\"]],[false,{\".wp-block-pullquote .has-text-color a\":false},[\"color:inherit\"]],[false,{\".wp-block-pullquote:not(.is-style-solid-color)\":false},[\"background:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color\":false},[\"border:none\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote\":false},[\"margin-left:auto\",\"margin-right:auto\",\"text-align:left\",\"max-width:60%\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote p\":false},[\"margin-top:0\",\"margin-bottom:0\",\"font-size:2em\"]],[false,{\".wp-block-pullquote.is-style-solid-color blockquote cite\":false},[\"text-transform:none\",\"font-style:normal\"]],[false,{\".wp-block-pullquote cite\":false},[\"color:inherit\"]],[false,{\".wp-block-post-template\":false,\".wp-block-query-loop\":false},[\"max-width:100%\",\"list-style:none\",\"padding:0\"]],[false,{\".wp-block-post-template li\":false,\".wp-block-query-loop li\":false},[\"clear:both\"]],[false,{\".wp-block-post-template.is-flex-container\":false,\".wp-block-query-loop.is-flex-container\":false},[\"flex-direction:row\",\"display:flex\",\"flex-wrap:wrap\"]],[false,{\".wp-block-post-template.is-flex-container li\":false,\".wp-block-query-loop.is-flex-container li\":false},[\"margin:0 0 1.25em\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-post-template.is-flex-container li\":false,\".wp-block-query-loop.is-flex-container li\":false},[\"margin-right:1.25em\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li\":false},[\"width:calc(50% - .625em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-2>li:nth-child(2n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-2>li:nth-child(2n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li\":false},[\"width:calc(33.33333% - .83333em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-3>li:nth-child(3n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-3>li:nth-child(3n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li\":false},[\"width:calc(25% - .9375em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-4>li:nth-child(4n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-4>li:nth-child(4n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-5>li:nth-child(5n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-5>li:nth-child(5n)\":false},[\"margin-right:0\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li\":false},[\"width:calc(16.66667% - 1.04167em)\"]],[false,{\".wp-block-post-template.is-flex-container.is-flex-container.columns-6>li:nth-child(6n)\":false,\".wp-block-query-loop.is-flex-container.is-flex-container.columns-6>li:nth-child(6n)\":false},[\"margin-right:0\"]],[false,\"}\"],[false,{\".wp-block-query-pagination\":false},[\"display:flex\",\"flex-direction:row\",\"flex-wrap:wrap\"]],[false,{\".wp-block-query-pagination>.wp-block-query-pagination-next\":false,\".wp-block-query-pagination>.wp-block-query-pagination-numbers\":false,\".wp-block-query-pagination>.wp-block-query-pagination-previous\":false},[\"display:inline-block\",\"margin-right:.5em\",\"margin-bottom:.5em\"]],[false,{\".wp-block-query-pagination>.wp-block-query-pagination-next:last-child\":false,\".wp-block-query-pagination>.wp-block-query-pagination-numbers:last-child\":false,\".wp-block-query-pagination>.wp-block-query-pagination-previous:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-quote.is-large\":false,\".wp-block-quote.is-style-large\":false},[\"margin-bottom:1em\",\"padding:0 1em\"]],[false,{\".wp-block-quote.is-large p\":false,\".wp-block-quote.is-style-large p\":false},[\"font-size:1.5em\",\"font-style:italic\",\"line-height:1.6\"]],[false,{\".wp-block-quote.is-large cite\":false,\".wp-block-quote.is-large footer\":false,\".wp-block-quote.is-style-large cite\":false,\".wp-block-quote.is-style-large footer\":false},[\"font-size:1.125em\",\"text-align:right\"]],[false,{\".wp-block-rss.wp-block-rss\":false},[\"box-sizing:border-box\"]],[false,{\".wp-block-rss.alignleft\":false},[\"margin-right:2em\"]],[false,{\".wp-block-rss.alignright\":false},[\"margin-left:2em\"]],[false,{\".wp-block-rss.is-grid\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding:0\",\"list-style:none\"]],[false,{\".wp-block-rss.is-grid li\":false},[\"margin:0 1em 1em 0\",\"width:100%\"]],[false,\"@media (min-width:600px){\"],[false,{\".wp-block-rss.columns-2 li\":false},[\"width:calc(50% - 1em)\"]],[false,{\".wp-block-rss.columns-3 li\":false},[\"width:calc(33.33333% - 1em)\"]],[false,{\".wp-block-rss.columns-4 li\":false},[\"width:calc(25% - 1em)\"]],[false,{\".wp-block-rss.columns-5 li\":false},[\"width:calc(20% - 1em)\"]],[false,{\".wp-block-rss.columns-6 li\":false},[\"width:calc(16.66667% - 1em)\"]],[false,\"}\"],[false,{\".wp-block-rss__item-author\":false,\".wp-block-rss__item-publish-date\":false},[\"display:block\",\"color:#555\",\"font-size:.8125em\"]],[false,{\".wp-block-search .wp-block-search__button\":false},[\"background:#f7f7f7\",\"border:1px solid #ccc\",\"padding:.375em .625em\",\"color:#32373c\",\"margin-left:.625em\",\"word-break:normal\"]],[false,{\".wp-block-search .wp-block-search__button.has-icon\":false},[\"line-height:0\"]],[false,{\".wp-block-search .wp-block-search__button svg\":false},[\"min-width:1.5em\",\"min-height:1.5em\"]],[false,{\".wp-block-search .wp-block-search__inside-wrapper\":false},[\"display:flex\",\"flex:auto\",\"flex-wrap:nowrap\",\"max-width:100%\"]],[false,{\".wp-block-search .wp-block-search__label\":false},[\"width:100%\"]],[false,{\".wp-block-search .wp-block-search__input\":false},[\"flex-grow:1\",\"min-width:3em\",\"border:1px solid #949494\"]],[false,{\".wp-block-search.wp-block-search__button-only .wp-block-search__button\":false},[\"margin-left:0\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper\":false},[\"padding:4px\",\"border:1px solid #949494\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input\":false},[\"border-radius:0\",\"border:none\",\"padding:0 0 0 .25em\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus\":false},[\"outline:none\"]],[false,{\".wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button\":false},[\"padding:.125em .5em\"]],[false,{\".wp-block-search.aligncenter .wp-block-search__inside-wrapper\":false},[\"margin:auto\"]],[false,{\".wp-block-separator\":false},[\"border-top:1px solid\",\"border-bottom:1px solid\"]],[false,{\".wp-block-separator.is-style-wide\":false},[\"border-bottom-width:1px\"]],[false,{\".wp-block-separator.is-style-dots\":false},[\"border:none\",\"text-align:center\",\"width:none\",\"line-height:1\",\"height:auto\"]],[false,{\".wp-block-separator.is-style-dots:not(#_#_#_#_#_#_#_)\":false},[\"background:none\"]],[false,{\".wp-block-separator.is-style-dots:before\":false},[\"content:\\\"\\u00b7\\u00b7\\u00b7\\\"\",\"color:currentColor\",\"font-size:1.5em\",\"letter-spacing:2em\",\"padding-left:2em\",\"font-family:serif\"]],[false,{\".wp-block-site-logo\":false},[\"line-height:0\"]],[false,{\".wp-block-site-logo a\":false},[\"display:inline-block\"]],[false,{\".wp-block-site-logo.is-default-size amp-img\":false,\".wp-block-site-logo.is-default-size amp-anim\":false},[\"width:120px\",\"height:auto\"]],[false,{\".wp-block-site-logo .aligncenter\":false},[\"display:table\"]],[false,{\".wp-block-site-logo.is-style-rounded amp-img\":false,\".wp-block-site-logo.is-style-rounded amp-anim\":false},[\"border-radius:9999px\"]],[false,{\".wp-block-social-links\":false},[\"display:flex\",\"flex-wrap:wrap\",\"padding-left:0\",\"padding-right:0\",\"text-indent:0\",\"margin-left:0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false,\".wp-block-social-links .wp-social-link a:hover\":false},[\"text-decoration:none\",\"border-bottom:0\",\"box-shadow:none\"]],[false,{\".wp-block-social-links .wp-social-link.wp-social-link.wp-social-link\":false},[\"margin:4px 8px 4px 0\"]],[false,{\".wp-block-social-links .wp-social-link a\":false},[\"padding:.25em\"]],[false,{\".wp-block-social-links .wp-social-link svg\":false},[\"width:1em\",\"height:1em\"]],[false,{\".wp-block-social-links.has-small-icon-size\":false},[\"font-size:16px\"]],[false,{\".wp-block-social-links\":false,\".wp-block-social-links.has-normal-icon-size\":false},[\"font-size:24px\"]],[false,{\".wp-block-social-links.has-large-icon-size\":false},[\"font-size:36px\"]],[false,{\".wp-block-social-links.has-huge-icon-size\":false},[\"font-size:48px\"]],[false,{\".wp-block-social-links.aligncenter\":false},[\"justify-content:center\",\"display:flex\"]],[false,{\".wp-block-social-links.alignright\":false},[\"justify-content:flex-end\"]],[false,{\".wp-block-social-link\":false},[\"display:block\",\"border-radius:9999px\",\"transition:transform .1s ease\",\"height:auto\"]],[false,\"@media (prefers-reduced-motion:reduce){\"],[false,{\".wp-block-social-link\":false},[\"transition-duration:0s\",\"transition-delay:0s\"]],[false,\"}\"],[false,{\".wp-block-social-link a\":false},[\"display:block\",\"line-height:0\",\"transition:transform .1s ease\"]],[false,{\".wp-block-social-link:hover\":false},[\"transform:scale(1.1)\"]],[false,{\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:active\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:hover\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:visited\":false,\".wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg\":false},[\"color:currentColor\",\"fill:currentColor\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link\":false},[\"background-color:#f0f0f0\",\"color:#444\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon\":false},[\"background-color:#f90\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp\":false},[\"background-color:#1ea0c3\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance\":false},[\"background-color:#0757fe\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen\":false},[\"background-color:#1e1f26\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart\":false},[\"background-color:#02e49b\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble\":false},[\"background-color:#e94c89\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox\":false},[\"background-color:#4280ff\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy\":false},[\"background-color:#f45800\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook\":false},[\"background-color:#1778f2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr\":false},[\"background-color:#0461dd\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare\":false},[\"background-color:#e65678\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github\":false},[\"background-color:#24292d\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads\":false},[\"background-color:#eceadd\",\"color:#382110\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google\":false},[\"background-color:#ea4434\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram\":false},[\"background-color:#f00075\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm\":false},[\"background-color:#e21b24\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin\":false},[\"background-color:#0d66c2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon\":false},[\"background-color:#3288d4\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium\":false},[\"background-color:#02ab6c\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup\":false},[\"background-color:#f6405f\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon\":false},[\"background-color:#ff424d\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest\":false},[\"background-color:#e60122\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket\":false},[\"background-color:#ef4155\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit\":false},[\"background-color:#fe4500\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype\":false},[\"background-color:#0478d7\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat\":false},[\"background-color:#fefc00\",\"color:#fff\",\"stroke:#000\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud\":false},[\"background-color:#ff5600\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify\":false},[\"background-color:#1bd760\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram\":false},[\"background-color:#2aabee\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok\":false},[\"background-color:#000\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr\":false},[\"background-color:#011835\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch\":false},[\"background-color:#6440a4\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter\":false},[\"background-color:#1da1f2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo\":false},[\"background-color:#1eb7ea\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk\":false},[\"background-color:#4680c2\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress\":false},[\"background-color:#3499cd\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp\":false},[\"background-color:#d32422\",\"color:#fff\"]],[false,{\".wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube\":false},[\"background-color:red\",\"color:#fff\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link\":false},[\"background:none\",\"padding:4px\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-amazon\":false},[\"color:#f90\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp\":false},[\"color:#1ea0c3\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-behance\":false},[\"color:#0757fe\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-codepen\":false},[\"color:#1e1f26\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-deviantart\":false},[\"color:#02e49b\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-dribbble\":false},[\"color:#e94c89\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-dropbox\":false},[\"color:#4280ff\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-etsy\":false},[\"color:#f45800\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-facebook\":false},[\"color:#1778f2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx\":false},[\"color:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-flickr\":false},[\"color:#0461dd\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-foursquare\":false},[\"color:#e65678\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-github\":false},[\"color:#24292d\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-goodreads\":false},[\"color:#382110\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-google\":false},[\"color:#ea4434\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-instagram\":false},[\"color:#f00075\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-lastfm\":false},[\"color:#e21b24\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-linkedin\":false},[\"color:#0d66c2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-mastodon\":false},[\"color:#3288d4\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-medium\":false},[\"color:#02ab6c\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-meetup\":false},[\"color:#f6405f\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-patreon\":false},[\"color:#ff424d\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-pinterest\":false},[\"color:#e60122\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-pocket\":false},[\"color:#ef4155\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-reddit\":false},[\"color:#fe4500\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-skype\":false},[\"color:#0478d7\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-snapchat\":false},[\"color:#fff\",\"stroke:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud\":false},[\"color:#ff5600\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-spotify\":false},[\"color:#1bd760\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-telegram\":false},[\"color:#2aabee\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-tiktok\":false},[\"color:#000\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-tumblr\":false},[\"color:#011835\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-twitch\":false},[\"color:#6440a4\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-twitter\":false},[\"color:#1da1f2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-vimeo\":false},[\"color:#1eb7ea\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-vk\":false},[\"color:#4680c2\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-wordpress\":false},[\"color:#3499cd\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-yelp\":false},[\"color:#d32422\"]],[false,{\".wp-block-social-links.is-style-logos-only .wp-social-link-youtube\":false},[\"color:red\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link\":false},[\"width:auto\"]],[false,{\".wp-block-social-links.is-style-pill-shape .wp-social-link a\":false},[\"padding-left:.66667em\",\"padding-right:.66667em\"]],[false,{\".wp-block-spacer\":false},[\"clear:both\"]],[false,{\".wp-block-tag-cloud.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-tag-cloud.alignfull\":false},[\"padding-left:1em\",\"padding-right:1em\"]],[false,{\".wp-block-table\":false},[\"margin:0 0 1em\",\"overflow-x:auto\"]],[false,{\".wp-block-table table\":false},[\"border-collapse:collapse\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout\":false},[\"table-layout:fixed\",\"width:100%\"]],[false,{\".wp-block-table .has-fixed-layout td\":false,\".wp-block-table .has-fixed-layout th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table.aligncenter\":false,\".wp-block-table.alignleft\":false,\".wp-block-table.alignright\":false},[\"display:table\",\"width:auto\"]],[false,{\".wp-block-table.aligncenter td\":false,\".wp-block-table.aligncenter th\":false,\".wp-block-table.alignleft td\":false,\".wp-block-table.alignleft th\":false,\".wp-block-table.alignright td\":false,\".wp-block-table.alignright th\":false},[\"word-break:break-word\"]],[false,{\".wp-block-table .has-subtle-light-gray-background-color\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table .has-subtle-pale-green-background-color\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table .has-subtle-pale-blue-background-color\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table .has-subtle-pale-pink-background-color\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes\":false},[\"border-spacing:0\",\"border-collapse:inherit\",\"background-color:transparent\",\"border-bottom:1px solid #f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes tbody tr:nth-child(odd)\":false},[\"background-color:#f0f0f0\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#f3f4f5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e9fbe5\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#e7f5fe\"]],[false,{\".wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd)\":false},[\"background-color:#fcf0ef\"]],[false,{\".wp-block-table.is-style-stripes td\":false,\".wp-block-table.is-style-stripes th\":false},[\"border-color:transparent\"]],[false,{\".wp-block-table .has-border-color>*\":false,\".wp-block-table .has-border-color td\":false,\".wp-block-table .has-border-color th\":false,\".wp-block-table .has-border-color tr\":false},[\"border-color:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-style]>*\":false,\".wp-block-table table[data-amp-original-style*=border-style] td\":false,\".wp-block-table table[data-amp-original-style*=border-style] th\":false,\".wp-block-table table[data-amp-original-style*=border-style] tr\":false},[\"border-style:inherit\"]],[false,{\".wp-block-table table[data-amp-original-style*=border-width]>*\":false,\".wp-block-table table[data-amp-original-style*=border-width] td\":false,\".wp-block-table table[data-amp-original-style*=border-width] th\":false,\".wp-block-table table[data-amp-original-style*=border-width] tr\":false},[\"border-width:inherit\"]],[false,{\".wp-block-text-columns\":false,\".wp-block-text-columns.aligncenter\":false},[\"display:flex\"]],[false,{\".wp-block-text-columns .wp-block-column\":false},[\"margin:0 1em\",\"padding:0\"]],[false,{\".wp-block-text-columns .wp-block-column:first-child\":false},[\"margin-left:0\"]],[false,{\".wp-block-text-columns .wp-block-column:last-child\":false},[\"margin-right:0\"]],[false,{\".wp-block-text-columns.columns-2 .wp-block-column\":false},[\"width:50%\"]],[false,{\".wp-block-text-columns.columns-3 .wp-block-column\":false},[\"width:33.33333%\"]],[false,{\".wp-block-text-columns.columns-4 .wp-block-column\":false},[\"width:25%\"]],[false,{\"pre.wp-block-verse\":false},[\"font-family:inherit\",\"overflow:auto\",\"white-space:pre-wrap\"]],[false,{\".wp-block-video\":false},[\"margin:0 0 1em\"]],[false,{\".wp-block-video amp-video\":false,\".wp-block-video amp-youtube\":false},[\"width:100%\"]],[false,\"@supports (position:sticky){\"],[false,{\".wp-block-video [poster]\":false},[\"-o-object-fit:cover\",\"object-fit:cover\"]],[false,\"}\"],[false,{\".wp-block-video.aligncenter\":false},[\"text-align:center\"]],[false,{\".wp-block-video figcaption\":false},[\"margin-top:.5em\",\"margin-bottom:1em\"]],[false,{\".wp-block-post-featured-image\":false},[\"margin-left:0\",\"margin-right:0\"]],[false,{\".wp-block-post-featured-image a\":false},[\"display:inline-block\"]],[false,{\".wp-block-post-featured-image amp-img\":false,\".wp-block-post-featured-image amp-anim\":false},[\"max-width:100%\",\"height:auto\"]],[false,{\".wp-block-post-featured-image.alignfull amp-img\":false,\".wp-block-post-featured-image.alignfull amp-anim\":false,\".wp-block-post-featured-image.alignwide amp-img\":false,\".wp-block-post-featured-image.alignwide amp-anim\":false},[\"width:100%\"]],[false,{\":root .has-pale-pink-background-color\":false},[\"background-color:#f78da7\"]],[false,{\":root .has-vivid-red-background-color\":false},[\"background-color:#cf2e2e\"]],[false,{\":root .has-luminous-vivid-orange-background-color\":false},[\"background-color:#ff6900\"]],[false,{\":root .has-luminous-vivid-amber-background-color\":false},[\"background-color:#fcb900\"]],[false,{\":root .has-light-green-cyan-background-color\":false},[\"background-color:#7bdcb5\"]],[false,{\":root .has-vivid-green-cyan-background-color\":false},[\"background-color:#00d084\"]],[false,{\":root .has-pale-cyan-blue-background-color\":false},[\"background-color:#8ed1fc\"]],[false,{\":root .has-vivid-cyan-blue-background-color\":false},[\"background-color:#0693e3\"]],[false,{\":root .has-vivid-purple-background-color\":false},[\"background-color:#9b51e0\"]],[false,{\":root .has-white-background-color\":false},[\"background-color:#fff\"]],[false,{\":root .has-very-light-gray-background-color\":false},[\"background-color:#eee\"]],[false,{\":root .has-cyan-bluish-gray-background-color\":false},[\"background-color:#abb8c3\"]],[false,{\":root .has-very-dark-gray-background-color\":false},[\"background-color:#313131\"]],[false,{\":root .has-black-background-color\":false},[\"background-color:#000\"]],[false,{\":root .has-pale-pink-color\":false},[\"color:#f78da7\"]],[false,{\":root .has-vivid-red-color\":false},[\"color:#cf2e2e\"]],[false,{\":root .has-luminous-vivid-orange-color\":false},[\"color:#ff6900\"]],[false,{\":root .has-luminous-vivid-amber-color\":false},[\"color:#fcb900\"]],[false,{\":root .has-light-green-cyan-color\":false},[\"color:#7bdcb5\"]],[false,{\":root .has-vivid-green-cyan-color\":false},[\"color:#00d084\"]],[false,{\":root .has-pale-cyan-blue-color\":false},[\"color:#8ed1fc\"]],[false,{\":root .has-vivid-cyan-blue-color\":false},[\"color:#0693e3\"]],[false,{\":root .has-vivid-purple-color\":false},[\"color:#9b51e0\"]],[false,{\":root .has-white-color\":false},[\"color:#fff\"]],[false,{\":root .has-very-light-gray-color\":false},[\"color:#eee\"]],[false,{\":root .has-cyan-bluish-gray-color\":false},[\"color:#abb8c3\"]],[false,{\":root .has-very-dark-gray-color\":false},[\"color:#313131\"]],[false,{\":root .has-black-color\":false},[\"color:#000\"]],[false,{\":root .has-vivid-cyan-blue-to-vivid-purple-gradient-background\":false},[\"background:linear-gradient(135deg,#0693e3,#9b51e0)\"]],[false,{\":root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background\":false},[\"background:linear-gradient(135deg,#00d084,#0693e3)\"]],[false,{\":root .has-light-green-cyan-to-vivid-green-cyan-gradient-background\":false},[\"background:linear-gradient(135deg,#7adcb4,#00d082)\"]],[false,{\":root .has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background\":false},[\"background:linear-gradient(135deg,#fcb900,#ff6900)\"]],[false,{\":root .has-luminous-vivid-orange-to-vivid-red-gradient-background\":false},[\"background:linear-gradient(135deg,#ff6900,#cf2e2e)\"]],[false,{\":root .has-very-light-gray-to-cyan-bluish-gray-gradient-background\":false},[\"background:linear-gradient(135deg,#eee,#a9b8c3)\"]],[false,{\":root .has-cool-to-warm-spectrum-gradient-background\":false},[\"background:linear-gradient(135deg,#4aeadc,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c)\"]],[false,{\":root .has-blush-light-purple-gradient-background\":false},[\"background:linear-gradient(135deg,#ffceec,#9896f0)\"]],[false,{\":root .has-blush-bordeaux-gradient-background\":false},[\"background:linear-gradient(135deg,#fecda5,#fe2d2d 50%,#6b003e)\"]],[false,{\":root .has-purple-crush-gradient-background\":false},[\"background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)\"]],[false,{\":root .has-luminous-dusk-gradient-background\":false},[\"background:linear-gradient(135deg,#ffcb70,#c751c0 50%,#4158d0)\"]],[false,{\":root .has-hazy-dawn-gradient-background\":false},[\"background:linear-gradient(135deg,#faaca8,#dad0ec)\"]],[false,{\":root .has-pale-ocean-gradient-background\":false},[\"background:linear-gradient(135deg,#fff5cb,#b6e3d4 50%,#33a7b5)\"]],[false,{\":root .has-electric-grass-gradient-background\":false},[\"background:linear-gradient(135deg,#caf880,#71ce7e)\"]],[false,{\":root .has-subdued-olive-gradient-background\":false},[\"background:linear-gradient(135deg,#fafae1,#67a671)\"]],[false,{\":root .has-atomic-cream-gradient-background\":false},[\"background:linear-gradient(135deg,#fdd79a,#004a59)\"]],[false,{\":root .has-nightshade-gradient-background\":false},[\"background:linear-gradient(135deg,#330968,#31cdcf)\"]],[false,{\":root .has-midnight-gradient-background\":false},[\"background:linear-gradient(135deg,#020381,#2874fc)\"]],[false,{\".has-small-font-size\":false},[\"font-size:.8125em\"]],[false,{\".has-normal-font-size\":false,\".has-regular-font-size\":false},[\"font-size:1em\"]],[false,{\".has-medium-font-size\":false},[\"font-size:1.25em\"]],[false,{\".has-large-font-size\":false},[\"font-size:2.25em\"]],[false,{\".has-huge-font-size\":false,\".has-larger-font-size\":false},[\"font-size:2.625em\"]],[false,{\".has-text-align-center\":false},[\"text-align:center\"]],[false,{\".has-text-align-left\":false},[\"text-align:left\"]],[false,{\".has-text-align-right\":false},[\"text-align:right\"]],[false,{\"#end-resizable-editor-section\":false},[\"display:none\"]],[false,{\".aligncenter\":false},[\"clear:both\"]],[false,{\".items-justified-left\":false},[\"justify-content:flex-start\"]],[false,{\".items-justified-center\":false},[\"justify-content:center\"]],[false,{\".items-justified-right\":false},[\"justify-content:flex-end\"]],[false,{\".items-justified-space-between\":false},[\"justify-content:space-between\"]],[false,{\".screen-reader-text\":false},[\"border:0\",\"clip:rect(1px,1px,1px,1px)\",\"-webkit-clip-path:inset(50%)\",\"clip-path:inset(50%)\",\"height:1px\",\"margin:-1px\",\"overflow:hidden\",\"padding:0\",\"position:absolute\",\"width:1px\"]],[false,{\".screen-reader-text:not(#_#_#_#_#_#_#_)\":false},[\"word-wrap:normal\"]],[false,{\".screen-reader-text:focus\":false},[\"background-color:#ddd\",\"-webkit-clip-path:none\",\"clip-path:none\",\"color:#444\",\"display:block\",\"font-size:1em\",\"height:auto\",\"left:5px\",\"line-height:normal\",\"padding:15px 23px 14px\",\"text-decoration:none\",\"top:5px\",\"width:auto\",\"z-index:100000\"]],[false,{\".screen-reader-text:focus:not(#_#_#_#_#_#_#_)\":false},[\"clip:auto\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":3559,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"mkaz-code-syntax-prism-css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/code-syntax-block\\/assets\\/prism-onedark.css?ver=1661882328\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"code-syntax-block\",\"file\":\"index.php\",\"line\":74,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"mkaz-code-syntax-prism-css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"mkaz-code-syntax-prism-css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"b7b5255abde5592da9aaee00aa2fd9e1\",\"parse_time\":0.015298843383789062,\"shake_time\":4.100799560546875e-5,\"cached\":false,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\"pre.wp-block-code code\":false},[\"color:#abb2bf\",\"padding-left:0\",\"border:none\",\"overflow-x:initial\"]],[false,{\"code[class*=\'language-\']\":false,\"pre[class*=\'language-\']\":false},[\"color:#abb2bf\",\"background:none\",\"font-family:Hack,\\\"Fira Code\\\",Consolas,Menlo,Monaco,\\\"Andale Mono\\\",\\\"Lucida Console\\\",\\\"Lucida Sans Typewriter\\\",\\\"DejaVu Sans Mono\\\",\\\"Bitstream Vera Sans Mono\\\",\\\"Liberation Mono\\\",\\\"Nimbus Mono L\\\",\\\"Courier New\\\",Courier,monospace\",\"line-height:1.5\",\"text-align:left\",\"white-space:pre\",\"word-spacing:normal\",\"word-break:normal\",\"word-wrap:normal\",\"-moz-tab-size:4\",\"-o-tab-size:4\",\"tab-size:4\",\"-webkit-hyphens:none\",\"-moz-hyphens:none\",\"-ms-hyphens:none\",\"hyphens:none\"]],[false,{\"pre[class*=\'language-\']::selection\":false,\"pre[class*=\'language-\'] ::selection\":false,\"code[class*=\'language-\']::selection\":false,\"code[class*=\'language-\'] ::selection\":false},[\"text-shadow:none\",\"background:#d84315\",\"color:#fff\"]],[false,\"@media print{\"],[false,{\"code[class*=\'language-\']\":false,\"pre[class*=\'language-\']\":false},[\"text-shadow:none\"]],[false,\"}\"],[false,{\"pre.wp-block-code\":false},[\"background:#282c34\",\"padding:1rem\",\"margin:.5em auto\",\"overflow:auto\",\"border-radius:8px\",\"border:none\"]],[false,{\".entry .entry-content .wp-block-code\":false},[\"border:none\"]],[false,{\".entry .entry-content .wp-block-code:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:8px\"]],[false,{\".token.comment\":false,\".token.prolog\":false,\".token.doctype\":false,\".token.cdata\":false},[\"color:#5c6370\",\"border:none\",\"padding-left:0\"]],[false,{\".token.punctuation\":false},[\"color:#abb2bf\"]],[false,{\".token.selector\":false,\".token.tag\":false},[\"color:#e06c75\"]],[false,{\".token.property\":false,\".token.boolean\":false,\".token.number\":false,\".token.constant\":false,\".token.symbol\":false,\".token.attr-name\":false,\".token.deleted\":false},[\"color:#d19a66\"]],[false,{\".token.string\":false,\".token.char\":false,\".token.attr-value\":false,\".token.builtin\":false,\".token.inserted\":false},[\"color:#98c379\"]],[false,{\".token.operator\":false,\".token.entity\":false,\".token.url\":false,\".language-css .token.string\":false,\".style .token.string\":false},[\"color:#56b6c2\"]],[false,{\".token.atrule\":false,\".token.keyword\":false},[\"color:#c678dd\"]],[false,{\".token.function\":false},[\"color:#61afef\"]],[false,{\".token.regex\":false,\".token.important\":false,\".token.variable\":false},[\"color:#c678dd\"]],[false,{\".token.important\":false,\".token.bold\":false},[\"font-weight:bold\"]],[false,{\".token.italic\":false},[\"font-style:italic\"]],[false,{\".token.entity\":false},[\"cursor:help\"]],[false,{\"pre.line-numbers\":false},[\"position:relative\",\"padding-left:3.8em\",\"counter-reset:linenumber\"]],[false,{\"pre.line-numbers > code\":false},[\"position:relative\"]],[false,{\"pre.line-numbers > code:not(#_#_#_#_#_#_#_#_)\":false},[\"padding-top:0\"]],[false,{\".line-numbers .line-numbers-rows\":false},[\"position:absolute\",\"pointer-events:none\",\"top:0\",\"font-size:100%\",\"left:-3.8em\",\"width:3em\",\"letter-spacing:-1px\",\"border-right:0\",\"-webkit-user-select:none\",\"-moz-user-select:none\",\"-ms-user-select:none\",\"user-select:none\"]],[false,{\".line-numbers-rows > span\":false},[\"pointer-events:none\",\"display:block\",\"counter-increment:linenumber\"]],[false,{\".line-numbers-rows > span:before\":false},[\"content:counter(linenumber)\",\"color:#5c6370\",\"display:block\",\"padding-right:.8em\",\"text-align:right\"]],[false,{\".prism-titlename\":false},[\"margin:-16px -16px 24px -16px\",\"padding:4px 16px\",\"font-family:-apple-system,BlinkMacSystemFont,\\\"Segoe UI\\\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\\\"Helvetica Neue\\\",sans-serif\",\"font-weight:bold\",\"color:orange\",\"background-color:#383c44\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2731,\"final_size\":790,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"contact-form-7-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/css\\/styles.css?ver=5.5.3\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"212b20af9d955c5d566d0549c68d0998\",\"parse_time\":0.03908491134643555,\"shake_time\":6.818771362304688e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".wpcf7 .screen-reader-response\":true},[\"position:absolute\",\"overflow:hidden\",\"clip:rect(1px,1px,1px,1px)\",\"clip-path:inset(50%)\",\"height:1px\",\"width:1px\",\"margin:-1px\",\"padding:0\",\"border:0\"]],[true,{\".wpcf7 .screen-reader-response:not(#_#_#_#_#_#_#_)\":true},[\"word-wrap:normal\"]],[true,{\".wpcf7 form .wpcf7-response-output\":true},[\"margin:2em .5em 1em\",\"padding:.2em 1em\",\"border:2px solid #00a0d2\"]],[true,{\".wpcf7 form.init .wpcf7-response-output\":true,\".wpcf7 form.resetting .wpcf7-response-output\":false,\".wpcf7 form.submitting .wpcf7-response-output\":false},[\"display:none\"]],[false,{\".wpcf7 form.sent .wpcf7-response-output\":false},[\"border-color:#46b450\"]],[false,{\".wpcf7 form.failed .wpcf7-response-output\":false,\".wpcf7 form.aborted .wpcf7-response-output\":false},[\"border-color:#dc3232\"]],[false,{\".wpcf7 form.spam .wpcf7-response-output\":false},[\"border-color:#f56e28\"]],[false,{\".wpcf7 form.invalid .wpcf7-response-output\":false,\".wpcf7 form.unaccepted .wpcf7-response-output\":false,\".wpcf7 form.payment-required .wpcf7-response-output\":false},[\"border-color:#ffb900\"]],[true,{\".wpcf7-form-control-wrap\":true},[\"position:relative\"]],[false,{\".wpcf7-not-valid-tip\":false},[\"color:#dc3232\",\"font-size:1em\",\"font-weight:normal\",\"display:block\"]],[false,{\".use-floating-validation-tip .wpcf7-not-valid-tip\":false},[\"position:relative\",\"top:-2ex\",\"left:1em\",\"z-index:100\",\"border:1px solid #dc3232\",\"background:#fff\",\"padding:.2em .8em\",\"width:24em\"]],[false,{\".wpcf7-list-item\":false},[\"display:inline-block\",\"margin:0 0 0 1em\"]],[false,{\".wpcf7-list-item-label::before\":false,\".wpcf7-list-item-label::after\":false},[\"content:\\\" \\\"\"]],[false,{\".wpcf7-spinner\":false},[\"visibility:hidden\",\"display:inline-block\",\"background-color:#23282d\",\"opacity:.75\",\"width:24px\",\"height:24px\",\"border:none\",\"border-radius:100%\",\"padding:0\",\"margin:0 24px\",\"position:relative\"]],[false,{\"form.submitting .wpcf7-spinner\":false},[\"visibility:visible\"]],[false,{\".wpcf7-spinner::before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"background-color:#fbfbfc\",\"top:4px\",\"left:4px\",\"width:6px\",\"height:6px\",\"border:none\",\"border-radius:100%\",\"transform-origin:8px 8px\",\"animation-name:spin\",\"animation-duration:1000ms\",\"animation-timing-function:linear\",\"animation-iteration-count:infinite\"]],[false,\"@media (prefers-reduced-motion: reduce){\"],[false,{\".wpcf7-spinner::before\":false},[\"animation-name:blink\",\"animation-duration:2000ms\"]],[false,\"}\"],[true,\"@keyframes spin{\"],[true,\"from{transform:rotate(0deg)}\"],[true,\"to{transform:rotate(360deg)}\"],[true,\"}@keyframes blink{\"],[true,\"from{opacity:0}\"],[true,\"50%{opacity:1}\"],[true,\"to{opacity:0}\"],[true,\"}\"],[true,{\".wpcf7 input[type=\\\"file\\\"]\":true},[\"cursor:pointer\"]],[true,{\".wpcf7 input[type=\\\"file\\\"]:disabled\":true},[\"cursor:default\"]],[true,{\".wpcf7 .wpcf7-submit:disabled\":true},[\"cursor:not-allowed\"]],[true,{\".wpcf7 input[type=\\\"url\\\"]\":true,\".wpcf7 input[type=\\\"email\\\"]\":true,\".wpcf7 input[type=\\\"tel\\\"]\":true},[\"direction:ltr\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":3027,\"final_size\":290,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"emcs_calendly_css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/embed-calendly-scheduling\\/assets\\/css\\/widget.css?ver=5.8.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"embed-calendly-scheduling\",\"file\":\"embed-calendly-scheduling.php\",\"line\":39,\"function\":\"emcs_calendly_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"99d6ad74e1d82f040a9c3a773af31054\",\"parse_time\":0.053494930267333984,\"shake_time\":3.4809112548828125e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".calendly-inline-widget\":false,\".calendly-inline-widget *\":false,\".calendly-badge-widget\":false,\".calendly-badge-widget *\":false,\".calendly-overlay\":false,\".calendly-overlay *\":false},[\"font-size:16px\",\"line-height:1.2em\"]],[false,{\".calendly-inline-widget amp-iframe\":false,\".calendly-badge-widget amp-iframe\":false,\".calendly-overlay amp-iframe\":false},[\"display:inline\",\"width:100%\",\"height:100%\"]],[false,{\".calendly-popup-content\":false},[\"position:relative\"]],[false,{\".calendly-popup-content.calendly-mobile\":false},[\"-webkit-overflow-scrolling:touch\",\"overflow-y:auto\"]],[false,{\".calendly-overlay\":false},[\"position:fixed\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\",\"overflow:hidden\",\"z-index:9999\",\"background-color:#a5a5a5\",\"background-color:rgba(31,31,31,.4)\"]],[false,{\".calendly-overlay .calendly-close-overlay\":false},[\"position:absolute\",\"top:0\",\"left:0\",\"right:0\",\"bottom:0\"]],[false,{\".calendly-overlay .calendly-popup\":false},[\"box-sizing:border-box\",\"position:absolute\",\"top:50%\",\"left:50%\",\"-webkit-transform:translateY(-50%) translateX(-50%)\",\"transform:translateY(-50%) translateX(-50%)\",\"width:80%\",\"min-width:900px\",\"max-width:1000px\",\"height:90%\",\"max-height:680px\"]],[false,\"@media (max-width:975px){\"],[false,{\".calendly-overlay .calendly-popup\":false},[\"position:fixed\",\"top:50px\",\"left:0\",\"right:0\",\"bottom:0\",\"-webkit-transform:none\",\"transform:none\",\"width:100%\",\"height:auto\",\"min-width:0\",\"max-height:none\"]],[false,\"}\"],[false,{\".calendly-overlay .calendly-popup .calendly-popup-content\":false},[\"height:100%\"]],[false,{\".calendly-overlay .calendly-popup-close\":false},[\"position:absolute\",\"top:25px\",\"right:25px\",\"color:#fff\",\"width:19px\",\"height:19px\",\"cursor:pointer\",\"background:url(\\\"\\/assets\\/external\\/close-icon.svg\\\") no-repeat\",\"background-size:contain\"]],[false,\"@media (max-width:975px){\"],[false,{\".calendly-overlay .calendly-popup-close\":false},[\"top:15px\",\"right:15px\"]],[false,\"}\"],[false,{\".calendly-badge-widget\":false},[\"position:fixed\",\"right:20px\",\"bottom:15px\",\"z-index:9998\"]],[false,{\".calendly-badge-widget .calendly-badge-content\":false},[\"display:table-cell\",\"width:auto\",\"height:45px\",\"padding:0 30px\",\"border-radius:25px\",\"box-shadow:rgba(0,0,0,.25) 0 2px 5px\",\"font-family:sans-serif\",\"text-align:center\",\"vertical-align:middle\",\"font-weight:700\",\"font-size:14px\",\"color:#fff\",\"cursor:pointer\"]],[false,{\".calendly-badge-widget .calendly-badge-content.calendly-white\":false},[\"color:#666a73\"]],[false,{\".calendly-badge-widget .calendly-badge-content span\":false},[\"display:block\",\"font-size:12px\"]],[false,{\".calendly-spinner\":false},[\"position:absolute\",\"top:50%\",\"left:0\",\"right:0\",\"-webkit-transform:translateY(-50%)\",\"transform:translateY(-50%)\",\"text-align:center\",\"z-index:-1\"]],[false,{\".calendly-spinner>div\":false},[\"display:inline-block\",\"width:18px\",\"height:18px\",\"background-color:#e1e1e1\",\"border-radius:50%\",\"vertical-align:middle\",\"-webkit-animation:calendly-bouncedelay 1.4s infinite ease-in-out\",\"animation:calendly-bouncedelay 1.4s infinite ease-in-out\",\"-webkit-animation-fill-mode:both\",\"animation-fill-mode:both\"]],[false,{\".calendly-spinner .calendly-bounce1\":false},[\"-webkit-animation-delay:-.32s\",\"animation-delay:-.32s\"]],[false,{\".calendly-spinner .calendly-bounce2\":false},[\"-webkit-animation-delay:-.16s\",\"animation-delay:-.16s\"]],[true,\"@-webkit-keyframes calendly-bouncedelay{\"],[true,\"0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}\"],[true,\"40%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}@keyframes calendly-bouncedelay{\"],[true,\"0%,80%,100%{-webkit-transform:scale(0);transform:scale(0)}\"],[true,\"40%{-webkit-transform:scale(1);transform:scale(1)}\"],[true,\"}\"],[false,\"@media only screen and (max-device-width :768px){\"],[false,{\"#calendly-inline-widget:not(#_#_#_#_#_#_#_)\":false},[\"min-width:auto\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":89113,\"final_size\":55,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"social_warfare-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/css\\/style.min.css?ver=4.3.0\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Script.php\",\"line\":94,\"function\":\"SWP_Script::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"e220b783a5a07d3a59270f77ece9859a\",\"parse_time\":1.1959950923919678,\"shake_time\":0.024940013885498047,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".swp_social_panel.swp_default_full_color a\":false,\"html body .swp_social_panel.swp_individual_full_color .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_full_color:hover a\":false},[\"color:white\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_blogger\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_blogger:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_blogger:not(:hover)\":false},[\"border:1px solid #ff5722\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_blogger\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_blogger:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_blogger\":false},[\"background:#ff5722\",\"border:1px solid #ee3900\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_blogger\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_blogger:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_blogger\":false},[\"border-bottom:3px solid #ee3900\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_blogger a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_blogger a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_blogger a\":false},[\"color:#ff5722\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_blogger\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_blogger:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_blogger\":false},[\"background:transparent\",\"border:1px solid #ff5722\"]],[false,{\".swp-blogger\":false},[\"background:#ff5722\",\"border-color:#ee3900\"]],[false,{\".swp-blogger a\":false},[\"color:#ff5722\"]],[false,{\".swp-blogger a:hover\":false},[\"background:#ee3900\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_buffer\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_buffer:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_buffer:not(:hover)\":false},[\"border:1px solid #323b43\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_buffer\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_buffer:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_buffer\":false},[\"background:#323b43\",\"border:1px solid #1c2126\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_buffer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_buffer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_buffer\":false},[\"border-bottom:3px solid #1c2126\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_buffer a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_buffer a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_buffer a\":false},[\"color:#323b43\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_buffer\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_buffer:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_buffer\":false},[\"background:transparent\",\"border:1px solid #323b43\"]],[false,{\".swp-buffer\":false},[\"background:#323b43\",\"border-color:#1c2126\"]],[false,{\".swp-buffer a\":false},[\"color:#323b43\"]],[false,{\".swp-buffer a:hover\":false},[\"background:#1c2126\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_ello\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_ello:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_ello:not(:hover)\":false},[\"border:1px solid #000\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_ello\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_ello:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_ello\":false},[\"background:#000\",\"border:1px solid #000\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_ello\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_ello:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_ello\":false},[\"border-bottom:3px solid #000\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_ello a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_ello a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_ello a\":false},[\"color:#000\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_ello\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_ello:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_ello\":false},[\"background:transparent\",\"border:1px solid #000\"]],[false,{\".swp-ello\":false},[\"background:#000\",\"border-color:#000\"]],[false,{\".swp-ello a\":false},[\"color:#000\"]],[false,{\".swp-ello a:hover\":false},[\"background:#000\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_email\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_email:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_email:not(:hover)\":false},[\"border:1px solid #6bcce9\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_email\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_email:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_email\":false},[\"background:#6bcce9\",\"border:1px solid #3fbde2\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_email\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_email:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_email\":false},[\"border-bottom:3px solid #3fbde2\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_email a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_email a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_email a\":false},[\"color:#6bcce9\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_email\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_email:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_email\":false},[\"background:transparent\",\"border:1px solid #6bcce9\"]],[false,{\".swp-email\":false},[\"background:#6bcce9\",\"border-color:#3fbde2\"]],[false,{\".swp-email a\":false},[\"color:#6bcce9\"]],[false,{\".swp-email a:hover\":false},[\"background:#3fbde2\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_evernote\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_evernote:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_evernote:not(:hover)\":false},[\"border:1px solid #2dbe60\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_evernote\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_evernote:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_evernote\":false},[\"background:#2dbe60\",\"border:1px solid #23954b\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_evernote\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_evernote:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_evernote\":false},[\"border-bottom:3px solid #23954b\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_evernote a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_evernote a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_evernote a\":false},[\"color:#2dbe60\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_evernote\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_evernote:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_evernote\":false},[\"background:transparent\",\"border:1px solid #2dbe60\"]],[false,{\".swp-evernote\":false},[\"background:#2dbe60\",\"border-color:#23954b\"]],[false,{\".swp-evernote a\":false},[\"color:#2dbe60\"]],[false,{\".swp-evernote a:hover\":false},[\"background:#23954b\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_facebook\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_facebook:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_facebook:not(:hover)\":false},[\"border:1px solid #1877f2\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_facebook\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_facebook:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_facebook\":false},[\"background:#1877f2\",\"border:1px solid #0b5fcc\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_facebook\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_facebook:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_facebook\":false},[\"border-bottom:3px solid #0b5fcc\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_facebook a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_facebook a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_facebook a\":false},[\"color:#1877f2\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_facebook\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_facebook:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_facebook\":false},[\"background:transparent\",\"border:1px solid #1877f2\"]],[false,{\".swp-facebook\":false},[\"background:#1877f2\",\"border-color:#0b5fcc\"]],[false,{\".swp-facebook a\":false},[\"color:#1877f2\"]],[false,{\".swp-facebook a:hover\":false},[\"background:#0b5fcc\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_flickr\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_flickr:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_flickr:not(:hover)\":false},[\"border:1px solid #ff0084\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_flickr\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_flickr:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_flickr\":false},[\"background:#ff0084\",\"border:1px solid #cc006a\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_flickr\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_flickr:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_flickr\":false},[\"border-bottom:3px solid #cc006a\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flickr a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flickr a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flickr a\":false},[\"color:#ff0084\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flickr\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flickr:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flickr\":false},[\"background:transparent\",\"border:1px solid #ff0084\"]],[false,{\".swp-flickr\":false},[\"background:#ff0084\",\"border-color:#cc006a\"]],[false,{\".swp-flickr a\":false},[\"color:#ff0084\"]],[false,{\".swp-flickr a:hover\":false},[\"background:#cc006a\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_flipboard\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_flipboard:not(:hover)\":false},[\"border:1px solid #bf2626\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_flipboard\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_flipboard\":false},[\"background:#bf2626\",\"border:1px solid #941e1e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_flipboard\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_flipboard\":false},[\"border-bottom:3px solid #941e1e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flipboard a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flipboard a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flipboard a\":false},[\"color:#bf2626\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_flipboard\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_flipboard:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_flipboard\":false},[\"background:transparent\",\"border:1px solid #bf2626\"]],[false,{\".swp-flipboard\":false},[\"background:#bf2626\",\"border-color:#941e1e\"]],[false,{\".swp-flipboard a\":false},[\"color:#bf2626\"]],[false,{\".swp-flipboard a:hover\":false},[\"background:#941e1e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_hacker_news\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_hacker_news:not(:hover)\":false},[\"border:1px solid #d85623\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_hacker_news\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_hacker_news\":false},[\"background:#d85623\",\"border:1px solid #ac451c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_hacker_news\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_hacker_news\":false},[\"border-bottom:3px solid #ac451c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_hacker_news a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_hacker_news a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_hacker_news a\":false},[\"color:#d85623\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_hacker_news\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_hacker_news:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_hacker_news\":false},[\"background:transparent\",\"border:1px solid #d85623\"]],[false,{\".swp-hacker_news\":false},[\"background:#d85623\",\"border-color:#ac451c\"]],[false,{\".swp-hacker_news a\":false},[\"color:#d85623\"]],[false,{\".swp-hacker_news a:hover\":false},[\"background:#ac451c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_instagram\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_instagram:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_instagram:not(:hover)\":false},[\"border:1px solid #ea2454\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_instagram\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_instagram:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_instagram\":false},[\"background:#ea2454\",\"border:1px solid #c8133f\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_instagram\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_instagram:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_instagram\":false},[\"border-bottom:3px solid #c8133f\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_instagram a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_instagram a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_instagram a\":false},[\"color:#ea2454\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_instagram\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_instagram:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_instagram\":false},[\"background:transparent\",\"border:1px solid #ea2454\"]],[false,{\".swp-instagram\":false},[\"background:#ea2454\",\"border-color:#c8133f\"]],[false,{\".swp-instagram a\":false},[\"color:#ea2454\"]],[false,{\".swp-instagram a:hover\":false},[\"background:#c8133f\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_linkedin\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_linkedin:not(:hover)\":false},[\"border:1px solid #2767b1\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_linkedin\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_linkedin\":false},[\"background:#2767b1\",\"border:1px solid #1e4f87\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_linkedin\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_linkedin\":false},[\"border-bottom:3px solid #1e4f87\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_linkedin a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_linkedin a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_linkedin a\":false},[\"color:#2767b1\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_linkedin\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_linkedin:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_linkedin\":false},[\"background:transparent\",\"border:1px solid #2767b1\"]],[false,{\".swp-linkedin\":false},[\"background:#2767b1\",\"border-color:#1e4f87\"]],[false,{\".swp-linkedin a\":false},[\"color:#2767b1\"]],[false,{\".swp-linkedin a:hover\":false},[\"background:#1e4f87\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_medium\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_medium:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_medium:not(:hover)\":false},[\"border:1px solid #00ab6c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_medium\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_medium:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_medium\":false},[\"background:#00ab6c\",\"border:1px solid #00784c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_medium\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_medium:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_medium\":false},[\"border-bottom:3px solid #00784c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_medium a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_medium a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_medium a\":false},[\"color:#00ab6c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_medium\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_medium:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_medium\":false},[\"background:transparent\",\"border:1px solid #00ab6c\"]],[false,{\".swp-medium\":false},[\"background:#00ab6c\",\"border-color:#00784c\"]],[false,{\".swp-medium a\":false},[\"color:#00ab6c\"]],[false,{\".swp-medium a:hover\":false},[\"background:#00784c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_mix\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_mix:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_mix:not(:hover)\":false},[\"border:1px solid #f4812c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_mix\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_mix:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_mix\":false},[\"background:#f4812c\",\"border:1px solid #e1660c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_mix\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_mix:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_mix\":false},[\"border-bottom:3px solid #e1660c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_mix a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_mix a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_mix a\":false},[\"color:#f4812c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_mix\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_mix:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_mix\":false},[\"background:transparent\",\"border:1px solid #f4812c\"]],[false,{\".swp-mix\":false},[\"background:#f4812c\",\"border-color:#e1660c\"]],[false,{\".swp-mix a\":false},[\"color:#f4812c\"]],[false,{\".swp-mix a:hover\":false},[\"background:#e1660c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_more\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_more:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_more:not(:hover)\":false},[\"border:1px solid #ee464f\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_more\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_more:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_more\":false},[\"background:#ee464f\",\"border:1px solid #ea1723\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_more\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_more:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_more\":false},[\"border-bottom:3px solid #ea1723\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_more a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_more a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_more a\":false},[\"color:#ee464f\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_more\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_more:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_more\":false},[\"background:transparent\",\"border:1px solid #ee464f\"]],[false,{\".swp-more\":false},[\"background:#ee464f\",\"border-color:#ea1723\"]],[false,{\".swp-more a\":false},[\"color:#ee464f\"]],[false,{\".swp-more a:hover\":false},[\"background:#ea1723\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_parler\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_parler:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_parler:not(:hover)\":false},[\"border:1px solid #be1e2c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_parler\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_parler:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_parler\":false},[\"background:#be1e2c\",\"border:1px solid #921722\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_parler\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_parler:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_parler\":false},[\"border-bottom:3px solid #921722\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_parler a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_parler a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_parler a\":false},[\"color:#be1e2c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_parler\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_parler:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_parler\":false},[\"background:transparent\",\"border:1px solid #be1e2c\"]],[false,{\".swp-parler\":false},[\"background:#be1e2c\",\"border-color:#921722\"]],[false,{\".swp-parler a\":false},[\"color:#be1e2c\"]],[false,{\".swp-parler a:hover\":false},[\"background:#921722\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_periscope\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_periscope:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_periscope:not(:hover)\":false},[\"border:1px solid #3aa4c6\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_periscope\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_periscope:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_periscope\":false},[\"background:#3aa4c6\",\"border:1px solid #2e849f\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_periscope\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_periscope:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_periscope\":false},[\"border-bottom:3px solid #2e849f\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_periscope a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_periscope a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_periscope a\":false},[\"color:#3aa4c6\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_periscope\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_periscope:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_periscope\":false},[\"background:transparent\",\"border:1px solid #3aa4c6\"]],[false,{\".swp-periscope\":false},[\"background:#3aa4c6\",\"border-color:#2e849f\"]],[false,{\".swp-periscope a\":false},[\"color:#3aa4c6\"]],[false,{\".swp-periscope a:hover\":false},[\"background:#2e849f\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_pinterest\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_pinterest:not(:hover)\":false},[\"border:1px solid #e60023\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_pinterest\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_pinterest\":false},[\"background:#e60023\",\"border:1px solid #b3001b\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_pinterest\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_pinterest\":false},[\"border-bottom:3px solid #b3001b\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pinterest a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pinterest a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pinterest a\":false},[\"color:#e60023\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pinterest\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pinterest:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pinterest\":false},[\"background:transparent\",\"border:1px solid #e60023\"]],[false,{\".swp-pinterest\":false},[\"background:#e60023\",\"border-color:#b3001b\"]],[false,{\".swp-pinterest a\":false},[\"color:#e60023\"]],[false,{\".swp-pinterest a:hover\":false},[\"background:#b3001b\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_pocket\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_pocket:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_pocket:not(:hover)\":false},[\"border:1px solid #ef4056\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_pocket\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_pocket:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_pocket\":false},[\"background:#ef4056\",\"border:1px solid #e9132e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_pocket\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_pocket:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_pocket\":false},[\"border-bottom:3px solid #e9132e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pocket a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pocket a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pocket a\":false},[\"color:#ef4056\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_pocket\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_pocket:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_pocket\":false},[\"background:transparent\",\"border:1px solid #ef4056\"]],[false,{\".swp-pocket\":false},[\"background:#ef4056\",\"border-color:#e9132e\"]],[false,{\".swp-pocket a\":false},[\"color:#ef4056\"]],[false,{\".swp-pocket a:hover\":false},[\"background:#e9132e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_print\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_print:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_print:not(:hover)\":false},[\"border:1px solid #777\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_print\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_print:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_print\":false},[\"background:#777\",\"border:1px solid #5e5e5e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_print\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_print:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_print\":false},[\"border-bottom:3px solid #5e5e5e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_print a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_print a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_print a\":false},[\"color:#777\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_print\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_print:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_print\":false},[\"background:transparent\",\"border:1px solid #777\"]],[false,{\".swp-print\":false},[\"background:#777\",\"border-color:#5e5e5e\"]],[false,{\".swp-print a\":false},[\"color:#777\"]],[false,{\".swp-print a:hover\":false},[\"background:#5e5e5e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_reddit\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_reddit:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_reddit:not(:hover)\":false},[\"border:1px solid #f04b23\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_reddit\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_reddit:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_reddit\":false},[\"background:#f04b23\",\"border:1px solid #d2340e\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_reddit\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_reddit:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_reddit\":false},[\"border-bottom:3px solid #d2340e\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_reddit a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_reddit a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_reddit a\":false},[\"color:#f04b23\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_reddit\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_reddit:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_reddit\":false},[\"background:transparent\",\"border:1px solid #f04b23\"]],[false,{\".swp-reddit\":false},[\"background:#f04b23\",\"border-color:#d2340e\"]],[false,{\".swp-reddit a\":false},[\"color:#f04b23\"]],[false,{\".swp-reddit a:hover\":false},[\"background:#d2340e\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_snapchat\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_snapchat:not(:hover)\":false},[\"border:1px solid #fffc00\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_snapchat\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_snapchat\":false},[\"background:#fffc00\",\"border:1px solid #ccca00\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_snapchat\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_snapchat\":false},[\"border-bottom:3px solid #ccca00\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_snapchat a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_snapchat a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_snapchat a\":false},[\"color:#fffc00\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_snapchat\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_snapchat:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_snapchat\":false},[\"background:transparent\",\"border:1px solid #fffc00\"]],[false,{\".swp-snapchat\":false},[\"background:#fffc00\",\"border-color:#ccca00\"]],[false,{\".swp-snapchat a\":false},[\"color:#fffc00\"]],[false,{\".swp-snapchat a:hover\":false},[\"background:#ccca00\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_telegram\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_telegram:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_telegram:not(:hover)\":false},[\"border:1px solid #08c\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_telegram\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_telegram:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_telegram\":false},[\"background:#08c\",\"border:1px solid #069\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_telegram\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_telegram:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_telegram\":false},[\"border-bottom:3px solid #069\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_telegram a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_telegram a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_telegram a\":false},[\"color:#08c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_telegram\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_telegram:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_telegram\":false},[\"background:transparent\",\"border:1px solid #08c\"]],[false,{\".swp-telegram\":false},[\"background:#08c\",\"border-color:#069\"]],[false,{\".swp-telegram a\":false},[\"color:#08c\"]],[false,{\".swp-telegram a:hover\":false},[\"background:#069\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_twitter\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_twitter:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_twitter:not(:hover)\":false},[\"border:1px solid #1da1f2\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_twitter\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_twitter:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_twitter\":false},[\"background:#1da1f2\",\"border:1px solid #0c85d0\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_twitter\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_twitter:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_twitter\":false},[\"border-bottom:3px solid #0c85d0\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_twitter a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_twitter a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_twitter a\":false},[\"color:#1da1f2\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_twitter\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_twitter:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_twitter\":false},[\"background:transparent\",\"border:1px solid #1da1f2\"]],[false,{\".swp-twitter\":false},[\"background:#1da1f2\",\"border-color:#0c85d0\"]],[false,{\".swp-twitter a\":false},[\"color:#1da1f2\"]],[false,{\".swp-twitter a:hover\":false},[\"background:#0c85d0\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_tumblr\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_tumblr:not(:hover)\":false},[\"border:1px solid #39475d\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_tumblr\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_tumblr\":false},[\"background:#39475d\",\"border:1px solid #262f3d\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_tumblr\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_tumblr\":false},[\"border-bottom:3px solid #262f3d\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_tumblr a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_tumblr a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_tumblr a\":false},[\"color:#39475d\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_tumblr\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_tumblr:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_tumblr\":false},[\"background:transparent\",\"border:1px solid #39475d\"]],[false,{\".swp-tumblr\":false},[\"background:#39475d\",\"border-color:#262f3d\"]],[false,{\".swp-tumblr a\":false},[\"color:#39475d\"]],[false,{\".swp-tumblr a:hover\":false},[\"background:#262f3d\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_vimeo\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_vimeo:not(:hover)\":false},[\"border:1px solid #162221\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_vimeo\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_vimeo\":false},[\"background:#162221\",\"border:1px solid #020303\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_vimeo\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_vimeo\":false},[\"border-bottom:3px solid #020303\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vimeo a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vimeo a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vimeo a\":false},[\"color:#162221\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vimeo\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vimeo:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vimeo\":false},[\"background:transparent\",\"border:1px solid #162221\"]],[false,{\".swp-vimeo\":false},[\"background:#162221\",\"border-color:#020303\"]],[false,{\".swp-vimeo a\":false},[\"color:#162221\"]],[false,{\".swp-vimeo a:hover\":false},[\"background:#020303\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_viber\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_viber:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_viber:not(:hover)\":false},[\"border:1px solid #8f5db7\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_viber\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_viber:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_viber\":false},[\"background:#8f5db7\",\"border:1px solid #75459c\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_viber\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_viber:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_viber\":false},[\"border-bottom:3px solid #75459c\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_viber a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_viber a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_viber a\":false},[\"color:#8f5db7\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_viber\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_viber:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_viber\":false},[\"background:transparent\",\"border:1px solid #8f5db7\"]],[false,{\".swp-viber\":false},[\"background:#8f5db7\",\"border-color:#75459c\"]],[false,{\".swp-viber a\":false},[\"color:#8f5db7\"]],[false,{\".swp-viber a:hover\":false},[\"background:#75459c\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_vk\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_vk:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_vk:not(:hover)\":false},[\"border:1px solid #4a76a8\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_vk\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_vk:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_vk\":false},[\"background:#4a76a8\",\"border:1px solid #3a5d85\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_vk\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_vk:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_vk\":false},[\"border-bottom:3px solid #3a5d85\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vk a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vk a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vk a\":false},[\"color:#4a76a8\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_vk\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_vk:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_vk\":false},[\"background:transparent\",\"border:1px solid #4a76a8\"]],[false,{\".swp-vk\":false},[\"background:#4a76a8\",\"border-color:#3a5d85\"]],[false,{\".swp-vk a\":false},[\"color:#4a76a8\"]],[false,{\".swp-vk a:hover\":false},[\"background:#3a5d85\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_whatsapp\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_whatsapp:not(:hover)\":false},[\"border:1px solid #71c169\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_whatsapp\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_whatsapp\":false},[\"background:#71c169\",\"border:1px solid #52af48\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_whatsapp\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_whatsapp\":false},[\"border-bottom:3px solid #52af48\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_whatsapp a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_whatsapp a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_whatsapp a\":false},[\"color:#71c169\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_whatsapp\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_whatsapp:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_whatsapp\":false},[\"background:transparent\",\"border:1px solid #71c169\"]],[false,{\".swp-whatsapp\":false},[\"background:#71c169\",\"border-color:#52af48\"]],[false,{\".swp-whatsapp a\":false},[\"color:#71c169\"]],[false,{\".swp-whatsapp a:hover\":false},[\"background:#52af48\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_xing\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_xing:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_xing:not(:hover)\":false},[\"border:1px solid #026466\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_xing\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_xing:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_xing\":false},[\"background:#026466\",\"border:1px solid #013334\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_xing\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_xing:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_xing\":false},[\"border-bottom:3px solid #013334\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_xing a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_xing a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_xing a\":false},[\"color:#026466\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_xing\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_xing:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_xing\":false},[\"background:transparent\",\"border:1px solid #026466\"]],[false,{\".swp-xing\":false},[\"background:#026466\",\"border-color:#013334\"]],[false,{\".swp-xing a\":false},[\"color:#026466\"]],[false,{\".swp-xing a:hover\":false},[\"background:#013334\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_flat_fresh.swp_default_full_color .swp_yummly\":false,\"html body .swp_social_panel.swp_flat_fresh.swp_individual_full_color .swp_yummly:hover\":false,\"body .swp_social_panel.swp_flat_fresh.swp_other_full_color:hover .swp_yummly:not(:hover)\":false},[\"border:1px solid #e26426\"]],[false,{\".swp_social_panel.swp_default_full_color .swp_yummly\":false,\"html body .swp_social_panel.swp_individual_full_color .swp_yummly:hover\":false,\"body .swp_social_panel.swp_other_full_color:hover .swp_yummly\":false},[\"background:#e26426\",\"border:1px solid #bc4f19\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_full_color .swp_yummly\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_full_color .swp_yummly:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_full_color:hover .swp_yummly\":false},[\"border-bottom:3px solid #bc4f19\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_yummly a\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_yummly a:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_yummly a\":false},[\"color:#e26426\"]],[false,{\".swp_social_panel.swp_default_color_outlines .swp_yummly\":false,\"html body .swp_social_panel.swp_individual_color_outlines .swp_yummly:hover\":false,\"body .swp_social_panel.swp_other_color_outlines:hover .swp_yummly\":false},[\"background:transparent\",\"border:1px solid #e26426\"]],[false,{\".swp-yummly\":false},[\"background:#e26426\",\"border-color:#bc4f19\"]],[false,{\".swp-yummly a\":false},[\"color:#e26426\"]],[false,{\".swp-yummly a:hover\":false},[\"background:#bc4f19\",\"color:#fff\"]],[false,{\".swp_social_panel.swp_default_light_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_light_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_light_gray:hover .nc_tweetContainer\":false},[\"background-color:#ccc\",\"border:1px solid #ccc\"]],[false,{\".swp_social_panel.swp_default_light_gray .nc_tweetContainer a\":false,\"html body .swp_social_panel.swp_individual_light_gray .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_light_gray:hover .nc_tweetContainer a\":false},[\"color:#fff\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_light_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_light_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_light_gray .nc_tweetContainer:hover\":false},[\"border-bottom:3px solid #b3b3b3\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_light_gray .nc_tweetContainer.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_light_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false,\"body .swp_social_panel.swp_three_dee.swp_other_light_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:none\"]],[false,{\".swp_social_panel.swp_default_light_gray_outlines a\":false,\"html body .swp_social_panel.swp_individual_light_gray_outlines a:hover\":false,\"body .swp_social_panel.swp_other_light_gray_outlines:hover a\":false},[\"color:#ccc\"]],[false,{\".swp_social_panel.swp_default_light_gray_outlines .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_light_gray_outlines .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_light_gray_outlines:hover .nc_tweetContainer\":false},[\"background:transparent\",\"border:1px solid #ccc\"]],[false,{\".swp_social_panel.swp_default_medium_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_medium_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_medium_gray:hover .nc_tweetContainer\":false},[\"background-color:#999\",\"border:1px solid #999\"]],[false,{\".swp_social_panel.swp_default_medium_gray .nc_tweetContainer a\":false,\"html body .swp_social_panel.swp_individual_medium_gray .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_medium_gray:hover .nc_tweetContainer a\":false},[\"color:#fff\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_medium_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_medium_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_medium_gray .nc_tweetContainer:hover\":false},[\"border-bottom:3px solid gray\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_medium_gray .nc_tweetContainer.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_medium_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false,\"body .swp_social_panel.swp_three_dee.swp_other_medium_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:none\"]],[false,{\".swp_social_panel.swp_default_medium_gray_outlines a\":false,\"html body .swp_social_panel.swp_individual_medium_gray_outlines a:hover\":false,\"body .swp_social_panel.swp_other_medium_gray_outlines:hover a\":false},[\"color:#999\"]],[false,{\".swp_social_panel.swp_default_medium_gray_outlines .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_medium_gray_outlines .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_medium_gray_outlines:hover .nc_tweetContainer\":false},[\"background:transparent\",\"border:1px solid #999\"]],[false,{\".swp_social_panel.swp_default_dark_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_dark_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_dark_gray:hover .nc_tweetContainer\":false},[\"background-color:#444\",\"border:1px solid #444\"]],[false,{\".swp_social_panel.swp_default_dark_gray .nc_tweetContainer a\":false,\"html body .swp_social_panel.swp_individual_dark_gray .nc_tweetContainer:hover a\":false,\"body .swp_social_panel.swp_other_dark_gray:hover .nc_tweetContainer a\":false},[\"color:#fff\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_dark_gray .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_dark_gray .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_three_dee.swp_other_dark_gray .nc_tweetContainer:hover\":false},[\"border-bottom:3px solid #2b2b2b\"]],[false,{\".swp_social_panel.swp_three_dee.swp_default_dark_gray .nc_tweetContainer.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\"html body .swp_social_panel.swp_three_dee.swp_individual_dark_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false,\"body .swp_social_panel.swp_three_dee.swp_other_dark_gray .nc_tweetContainer:hover.total_sharesalt:not(#_#_#_#_#_#_#_#_)\":false},[\"border-bottom:none\"]],[false,{\".swp_social_panel.swp_default_dark_gray_outlines a\":false,\"html body .swp_social_panel.swp_individual_dark_gray_outlines a:hover\":false,\"body .swp_social_panel.swp_other_dark_gray_outlines:hover a\":false},[\"color:#444\"]],[false,{\".swp_social_panel.swp_default_dark_gray_outlines .nc_tweetContainer\":false,\"html body .swp_social_panel.swp_individual_dark_gray_outlines .nc_tweetContainer:hover\":false,\"body .swp_social_panel.swp_other_dark_gray_outlines:hover .nc_tweetContainer\":false},[\"background:transparent\",\"border:1px solid #444\"]],[false,{\".swp_social_panel.swp_modern\":false,\".swp_social_panel.swp_dark\":false},[\"background:#fff\",\"height:62px\",\"padding:0\",\"border-radius:8px\",\"border:1px solid #eee\",\"box-shadow:0 2px 4px 0 rgba(0,0,0,.01),0 4px 5px 0 rgba(0,0,0,.014),0 4px 15px 0 rgba(0,0,0,.09)\"]],[false,{\".swp_social_panel.swp_modern .swp_share_button\":false,\".swp_social_panel.swp_dark .swp_share_button\":false},[\"padding-bottom:1px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_button:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .swp_share_button:not(#_#_#_#_#_#_#_)\":false},[\"border:none\",\"border-radius:0\",\"margin:0\",\"height:61px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_button.total_shares.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .swp_share_button.total_shares.total_sharesalt:not(#_#_#_#_#_#_#_)\":false},[\"padding:15px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_link\":false,\".swp_social_panel.swp_dark .swp_share_link\":false},[\"border-radius:0\",\"padding:15px\"]],[false,{\".swp_social_panel.swp_modern .swp_share_link:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .swp_share_link:not(#_#_#_#_#_#_#_)\":false},[\"height:61px\"]],[false,{\".swp_social_panel.swp_modern .iconFiller:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .iconFiller:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:10px\"]],[false,{\".swp_social_panel.swp_modern .nc_wrapper.bottom:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_dark .nc_wrapper.bottom:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\"]],[false,{\".swp_dark .swp_share_button:not(#_#_#_#_#_#_#_)\":false},[\"background:#222\",\"border-color:#222\",\"margin:0\",\"height:62px\"]],[false,{\".swp_dark .swp_share_link:hover\":false},[\"background:#444\"]],[false,{\".scale-70\":false},[\"transform:scale(.7)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-70.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:142.85714%\"]],[false,{\".scale-80\":false},[\"transform:scale(.8)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-80.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:125%\"]],[false,{\".scale-90\":false},[\"transform:scale(.9)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-90.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:111.11111%\"]],[false,{\".scale-100\":false},[\"transform:scale(1)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-100.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".scale-110\":false},[\"transform:scale(1.1)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-110.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:90.90909%\"]],[false,{\".scale-120\":false},[\"transform:scale(1.2)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-120.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:83.33333%\"]],[false,{\".scale-130\":false},[\"transform:scale(1.3)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-130.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:76.92308%\"]],[false,{\".scale-140\":false},[\"transform:scale(1.4)\"]],[false,{\".swp_social_panel:not(.nc_floater).scale-140.scale-full_width:not(#_#_#_#_#_#_#_)\":false},[\"width:71.42857%\"]],[false,{\".scale-left\":false},[\"transform-origin:left\"]],[false,{\".scale-center\":false},[\"transform-origin:center\"]],[false,{\".scale-right\":false},[\"transform-origin:right\"]],[false,{\".scale-full_width\":false},[\"transform-origin:left\"]],[false,{\"div.swp_social_panel .nc_tweetContainer.swp_emphasize\":false},[\"flex:2\"]],[false,\"@media print{\"],[false,{\".swp_social_panel\":false},[\"display:none\",\"opacity:0\",\"visibility:collapse\"]],[false,\"}\"],[false,{\"html[lang] .site * i.sw:not(#_#_#_#_#_#_#_#_)\":false},[\"font-family:sw-icon-font\"]],[false,{\".swp_social_panel\":false},[\"clear:both\",\"display:flex\",\"height:34px\",\"line-height:1\",\"overflow:hidden\",\"padding:0\",\"align-items:stretch\",\"-webkit-box-align:stretch\",\"-moz-box-align:stretch\",\"-webkit-box-pack:justify\",\"-moz-box-pack:justify\",\"direction:ltr\",\"-ms-flex-align:stretch\",\"-ms-flex-line-pack:center\",\"-ms-flex-pack:justify\",\"flex-wrap:wrap\",\"justify-content:space-between\"]],[false,{\".swp_social_panel:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:20px\",\"margin-top:20px\"]],[false,{\".swp_social_panel .nc_tweetContainer a.nc_tweet\":false,\".swp_social_panel .nc_tweetContainer.total_shares .swp_count\":false},[\"display:block\",\"display:flex\",\"font-family:Lato,sans-serif\",\"font-weight:bold\",\"height:30px\",\"text-transform:none\",\"flex-flow:row wrap\",\"box-shadow:none\"]],[false,{\".swp_social_panel .nc_tweetContainer a.nc_tweet:not(#_#_#_#_#_#_#_#_)\":false,\".swp_social_panel .nc_tweetContainer.total_shares .swp_count:not(#_#_#_#_#_#_#_)\":false},[\"font-size:18px\",\"text-decoration:none\"]],[false,{\".swp_social_panel .nc_tweetContainer:not(.total_shares):not(.total_sharesalt)\":false},[\"border-radius:2px\",\"cursor:pointer\",\"float:left\",\"font-family:Lato\",\"height:32px\",\"margin:0 5px 3px 5px\",\"min-width:34px\",\"overflow:hidden\",\"text-align:center\",\"transition:all .1s linear\"]],[false,{\".swp_social_panel .nc_tweetContainer .spaceManWilly\":false},[\"display:block\",\"width:120px\"]],[false,{\".swp_social_panel .swp_label\":false},[\"display:block\",\"margin-top:13px\",\"position:absolute\",\"text-transform:uppercase\"]],[false,{\".swp_social_panel .swp_label:not(#_#_#_#_#_#_#_)\":false},[\"font-size:9px\",\"text-align:center\"]],[false,{\".swp_social_panel .swp_share\":false},[\"display:block\",\"float:right\",\"float:left\",\"font-size:14px\",\"font-weight:normal\",\"height:30px\",\"line-height:32px\",\"margin:0 0 0 6px\"]],[false,{\".swp_social_panel .swp_share:not(#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\".swp_social_panel .total_shares\":false},[\"border-radius:2px\",\"color:white\",\"cursor:default\",\"display:block\",\"font-size:19px\",\"padding:0 10px\"]],[false,{\".swp_social_panel .total_shares:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\",\"border:none\",\"flex:none\"]],[false,{\".swp_social_panel .total_shares .swp_count\":false},[\"line-height:30px\"]],[false,{\".swp_social_panel .total_shares .swp_label\":false},[\"font-size:10px\",\"vertical-align:middle\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt:not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\",\"border:none\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt:before\":false},[\"content:\\\"G\\\"\",\"display:inline-block\",\"font-family:sw-icon-font\",\"margin-top:7px\",\"vertical-align:top\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt.total_sharesalt\":false,\".swp_social_panel .total_shares.total_sharesalt:not(:nth-child(1))\":false},[\"border:none\",\"color:#474b4d\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt.total_sharesalt:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel .total_shares.total_sharesalt:not(:nth-child(1)):not(#_#_#_#_#_#_#_)\":false},[\"background:transparent\",\"margin-left:0\",\"margin-bottom:10px\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt .swp_count\":false},[\"color:#474b4d\",\"font-size:24px\"]],[false,{\".swp_social_panel .total_shares.total_sharesalt .swp_label\":false},[\"color:#474b4d\",\"letter-spacing:0\",\"min-width:40px\"]],[false,{\".swp_social_panel a .swp_count\":false},[\"font-size:14px\"]],[false,{\".swp_social_panel a .swp_count:not(.swp_hide)\":false},[\"display:inline-block\",\"line-height:32px\",\"margin:0\",\"padding:0 5px\",\"flex:1\"]],[false,{\".swp_social_panel a .swp_count.swp_hide\":false},[\"margin:0 auto\",\"width:auto\"]],[false,{\".swp_social_panel:not(.nc_floater):not(.swp_social_panelSide):not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".swp_social_panel:not(.nc_floater):not(.swp_social_panelSide).swp_shift\":false},[\"padding:0 10px\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide)\":false},[\"transition:opacity .2s ease-in-out\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer\":false},[\"flex:1\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer.swp-emphasize\":false},[\"flex:2\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer:nth-child(1)\":false},[\"margin-left:0\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) .nc_tweetContainer:nth-last-child(1)\":false},[\"margin-right:0\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt:before\":false},[\"content:\\\"G\\\"\",\"display:inline-block\",\"font-family:sw-icon-font\",\"margin-top:7px\",\"vertical-align:top\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt .swp_count\":false},[\"display:inline-block\",\"line-height:0\",\"margin-left:8px\",\"margin-top:12px\",\"min-width:45px\",\"position:relative\",\"vertical-align:middle\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt:nth-child(1)\":false},[\"margin-left:0\",\"margin-right:15px\",\"padding-left:0\"]],[false,{\".swp_social_panel:not(.swp_social_panelSide) div.total_shares.total_sharesalt:nth-last-child(1)\":false},[\"margin-right:0\",\"padding-right:0\"]],[false,{\".swp_social_panel span:before:not(#_#_#_#_#_#_#_#_)\":false},[\"content:initial\"]],[false,{\".swp_social_panel .iconFiller\":false},[\"font-size:18px\",\"margin:0 auto\",\"display:block\",\"float:left\",\"height:30px\",\"overflow:hidden\",\"transition:width .1s linear\",\"width:30px\"]],[false,{\".swp_social_panel .sw\":false},[\"float:left\",\"height:30px\",\"line-height:32px\",\"margin:1px 5px 0\",\"width:20px\"]],[false,{\".swp_social_panel .sw:not(#_#_#_#_#_#_#_)\":false},[\"text-shadow:none\"]],[false,{\".swp_social_panel.notMobile .nc_tweetContainer:nth-child(1)\":false},[\"margin-left:0\"]],[false,{\".swp_social_panel:hover .total_shares\":false,\".swp_social_panel.swp_full_color .total_shares\":false,\".swp_social_panel.swp_fade .total_shares\":false,\".swp_social_panel.swp_customFull:hover .total_shares\":false},[\"background:#e08a0f\"]],[false,{\".swp_social_panel.swp_leaf .nc_tweetContainer\":false},[\"border-width:1px\"]],[false,{\".swp_social_panel.swp_leaf .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:15px 0\"]],[false,{\".swp_social_panel.swp_pill .nc_tweetContainer\":false},[\"border-width:1px\"]],[false,{\".swp_social_panel.swp_pill .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:50px\"]],[false,{\".swp_social_panel.swp_shift .nc_tweetContainer:not(.total_shares)\":false},[\"border-width:1px\",\"transform:skew(-25deg)\"]],[false,{\".swp_social_panel.swp_shift .nc_tweetContainer a\":false},[\"transform:skew(25deg)\"]],[false,{\".swp_social_panel.swp_connected:hover .nc_tweetContainer\":false,\".swp_social_panel.swp_connected .nc_tweetContainer\":false,\".swp_social_panel.swp_connected .nc_tweetContainer:hover\":false},[\"border-width:1px\"]],[false,{\".swp_social_panel.swp_connected:hover .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_connected .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panel.swp_connected .nc_tweetContainer:hover:not(#_#_#_#_#_#_#_)\":false},[\"border-radius:0\",\"margin:0\"]],[false,{\".swp_social_panel.mobile .iconFiller ~ .swp_count\":false,\".sw-content-locator\":false},[\"display:none\"]],[true,{\"div[class*=custom_color][class^=_wrapper]\":true},[\"display:none\"]],[false,{\"pre.swp_debug_data\":false},[\"white-space:pre-wrap\",\"padding:0 25px\",\"max-width:1000px\",\"margin:0 auto 50px auto\",\"border:3px solid #666\"]],[false,{\".wp-editor-container .swp_twitter:before\":false},[\"color:#429cd6\"]],[false,{\".swp_powered_by\":false},[\"font-family:helvetica,arial,sans-serif\",\"color:black\"]],[false,{\".swp_powered_by span\":false},[\"clear:both\",\"width:100%\",\"display:block\",\"margin:36px 0px -30px 0\"]],[false,{\".swp_powered_by a\":false},[\"color:black\",\"text-decoration:none\"]],[false,{\".swp_powered_by amp-img\":false,\".swp_powered_by amp-anim\":false},[\"max-height:40px\",\"margin-top:30px\"]],[false,{\".sw\":false},[\"display:inline-block\",\"font-size:inherit\",\"-moz-osx-font-smoothing:grayscale\",\"-webkit-font-smoothing:antialiased\",\"font-style:normal\",\"font-weight:normal\",\"text-rendering:auto\",\"transform:translate(0,0)\",\"transform:translate(0,0)\",\"-webkit-transform:translate(0,0)\",\"-moz-transform:translate(0,0)\",\"-ms-transform:translate(0,0)\",\"-o-transform:translate(0,0)\"]],[false,{\".sw:not(#_#_#_#_#_#_#_)\":false},[\"font-family:sw-icon-font\",\"text-transform:none\"]],[false,{\".sw:before:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\"i.swp_blogger_icon:before\":false},[\"content:\\\"c\\\"\"]],[false,{\"i.swp_buffer_icon:before\":false},[\"content:\\\"d\\\"\"]],[false,{\"i.swp_ello_icon:before\":false},[\"content:\\\"h\\\"\"]],[false,{\"i.swp_email_icon:before\":false},[\"content:\\\"i\\\"\"]],[false,{\"i.swp_evernote_icon:before\":false},[\"content:\\\"j\\\"\"]],[false,{\"i.swp_facebook_icon:before\":false},[\"content:\\\"k\\\"\"]],[false,{\"i.swp_flickr_icon:before\":false},[\"content:\\\"l\\\"\"]],[false,{\"i.swp_flipboard_icon:before\":false},[\"content:\\\"m\\\"\"]],[false,{\"i.swp_hacker_news_icon:before\":false},[\"content:\\\"o\\\"\"]],[false,{\"i.swp_instagram_icon:before\":false},[\"content:\\\"q\\\"\"]],[false,{\"i.swp_linkedin_icon:before\":false},[\"content:\\\"s\\\"\"]],[false,{\"i.swp_medium_icon:before\":false},[\"content:\\\"u\\\"\"]],[false,{\"i.swp_mix_icon:before\":false},[\"content:\\\"w\\\"\"]],[false,{\"i.swp_more_icon:before\":false},[\"content:\\\"B\\\"\"]],[false,{\"i.swp_parler_icon:before\":false},[\"content:\\\"0\\\"\"]],[false,{\"i.swp_periscope_icon:before\":false},[\"content:\\\"y\\\"\"]],[false,{\"i.swp_pinterest_icon:before\":false},[\"content:\\\"A\\\"\"]],[false,{\"i.swp_pin_icon:before\":false},[\"content:\\\"z\\\"\"]],[false,{\"i.swp_pocket_icon:before\":false},[\"content:\\\"C\\\"\"]],[false,{\"i.swp_print_icon:before\":false},[\"content:\\\"D\\\"\"]],[false,{\"i.swp_reddit_icon:before\":false},[\"content:\\\"E\\\"\"]],[false,{\"i.swp_share_icon:before\":false},[\"content:\\\"G\\\"\"]],[false,{\"i.swp_social-warfare_icon:before\":false},[\"content:\\\"K\\\"\"]],[false,{\"i.swp_snapchat_icon:before\":false},[\"content:\\\"J\\\"\"]],[false,{\"i.swp_telegram_icon:before\":false},[\"content:\\\"L\\\"\"]],[false,{\"i.swp_tumblr_icon:before\":false},[\"content:\\\"M\\\"\"]],[false,{\"i.swp_twitter_icon:before\":false},[\"content:\\\"N\\\"\"]],[false,{\"i.swp_viber_icon:before\":false},[\"content:\\\"O\\\"\"]],[false,{\"i.swp_vimeo_icon:before\":false},[\"content:\\\"P\\\"\"]],[false,{\"i.swp_vk_icon:before\":false},[\"content:\\\"R\\\"\"]],[false,{\"i.swp_warfare-plugins_icon:before\":false},[\"content:\\\"Z\\\"\"]],[false,{\"i.swp_whatsapp_icon:before\":false},[\"content:\\\"T\\\"\"]],[false,{\"i.swp_xing_icon:before\":false},[\"content:\\\"V\\\"\"]],[false,{\"i.swp_yummly_icon:before\":false},[\"content:\\\"Y\\\"\"]],[false,{\".sw-social-warfare:before\":false},[\"content:\\\"K\\\"\"]],[false,{\".wp-editor-container .sw:before\":false},[\"font-size:18px\",\"line-height:22px\"]],[false,{\".wp-editor-container .sw-social-warfare:before\":false,\".mce-ico.sw-social-warfare:before\":false,\".mce-ico.sw-social-warfare\":false},[\"color:#ee464f\"]],[false,{\".mce-container .sw-social-warfare\":false},[\"color:#ee464f\",\"font-size:20px\",\"margin-right:15px\",\"vertical-align:middle\"]],[false,{\".swp_social_panelSide\":false},[\"transition:all .2s linear\",\"flex-direction:column\",\"height:auto\",\"overflow:visible\",\"z-index:9998\",\"padding:0\"]],[false,{\".swp_social_panelSide:not(#_#_#_#_#_#_#_)\":false},[\"margin:10px 5px\"]],[false,{\".swp_social_panelSide.slide\":false,\".swp_social_panelSide.fade\":false},[\"transition:all .2s linear\",\"position:fixed\"]],[false,{\".swp_social_panelSide.fade\":false},[\"display:none\"]],[false,{\".swp_social_panelSide.fade .swp_float_left\":false},[\"left:5px\"]],[false,{\".swp_social_panelSide.fade .swp_float_right\":false},[\"right:5px\"]],[false,{\".swp_social_panelSide.hideCounts a\":false},[\"text-align:center\"]],[false,{\".swp_social_panelSide.hideCounts .iconFiller\":false},[\"float:none\",\"text-align:left\"]],[false,{\".swp_social_panelSide[class*=swp_side]\":false},[\"height:auto\",\"display:flex\",\"position:fixed\",\"padding:30px 0\"]],[false,{\".swp_social_panelSide.swp_float_right\":false},[\"align-content:flex-end\"]],[false,{\".swp_social_panelSide.swp_side_top\":false},[\"top:15px\"]],[false,{\".swp_social_panelSide.swp_side_bottom\":false},[\"bottom:15px\"]],[false,{\".swp_social_panelSide.swp_default .nc_tweetContainer .sw\":false},[\"line-height:32px\"]],[false,{\".swp_social_panelSide.swp_default .nc_tweetContainer .swp_share\":false},[\"line-height:32px\"]],[false,{\".swp_social_panelSide span.swp_label\":false},[\"margin-top:0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer\":false},[\"transition:all .1s linear\",\"border-radius:3px\",\"clear:both\",\"display:block\",\"font-family:Lato,sans-serif\",\"height:32px\",\"overflow:hidden\",\"padding:0\",\"width:90px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"margin:3px 0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares\":false},[\"background:rgba(0,0,0,0)\",\"font-weight:800\",\"height:55px\",\"margin:0\",\"padding:0\",\"text-align:center\",\"width:90px\",\"order:-100\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares:not(#_#_#_#_#_#_#_)\":false},[\"border:0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares .swp_count\":false},[\"color:#444\",\"display:block\",\"font-family:Lato,sans-serif\",\"height:28px\",\"text-align:center\",\"width:100%\"]],[false,{\".swp_social_panelSide .nc_tweetContainer.total_shares .swp_label\":false},[\"color:#444\",\"display:block\",\"font-family:Lato,sans-serif\",\"font-size:50%\",\"position:relative\",\"text-align:center\",\"width:100%\"]],[false,{\".swp_social_panelSide .nc_tweetContainer:not(.total_shares)\":false},[\"line-height:34px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer:hover\":false,\".swp_social_panelSide .nc_tweetContainer:hover .iconFiller\":false,\".swp_social_panelSide .nc_tweetContainer:hover .swp_count\":false},[\"transition:all .1s linear\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .iconFiller\":false},[\"transition:all .1s linear\",\"display:inline-block\",\"height:40px\",\"margin:0 6px\",\"padding:0\",\"vertical-align:middle\",\"width:21px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .swp_count\":false},[\"transition:all .1s linear\",\"display:inline-block\",\"font-size:14px\",\"height:32px\",\"line-height:16px\",\"margin:0\",\"padding:0\",\"overflow:hidden\",\"text-align:right\",\"vertical-align:top\",\"width:0\"]],[false,{\".swp_social_panelSide .nc_tweetContainer a\":false},[\"transition:all .1s linear\",\"cursor:pointer\",\"display:block\",\"font-weight:500\",\"height:36px\",\"margin:0\",\"padding:0\",\"text-decoration:none\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .sw\":false,\".swp_social_panelSide .nc_tweetContainer .swp_share\":false},[\"float:left\",\"line-height:34px\"]],[false,{\".swp_social_panelSide .nc_tweetContainer .swp_share\":false},[\"font-size:13px\",\"margin:0\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer\":false},[\"margin-bottom:5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false},[\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer a\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer a\":false},[\"width:67.5px\",\"position:relative\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer a:not(#_#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer a:not(#_#_#_#_#_#_#_#_)\":false},[\"height:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .total_shares\":false,\".swp_social_panelSide.swp_circles .total_shares\":false},[\"padding:0\"]],[false,{\".swp_social_panelSide.swp_boxed .total_shares:not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .total_shares:not(#_#_#_#_#_#_#_)\":false},[\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer span.iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer span.iconFiller\":false},[\"height:40px\",\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer i.sw\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer i.sw\":false},[\"font-size:27px\",\"height:40px\",\"margin:0\",\"padding-top:10px\",\"text-align:center\",\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_share\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) span.swp_share\":false},[\"height:35px\",\"opacity:0\",\"position:absolute\",\"bottom:0\",\"left:0\",\"text-align:center\",\"width:67.5px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_count\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) span.swp_count\":false},[\"height:35px\",\"margin:0\",\"padding:0\",\"position:absolute\",\"bottom:0\",\"left:0\",\"text-align:center\",\"transition:padding .1s linear\",\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_hide span.swp_share\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover span.swp_share:not(.swp_hide)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_hide span.swp_share\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):hover span.swp_share:not(.swp_hide)\":false},[\"opacity:1\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover span.swp_count:not(.swp_hide)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):hover span.swp_count:not(.swp_hide)\":false},[\"opacity:0\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_count\":false},[\"padding:0 8px\",\"width:48px\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide\":false},[\"padding:0\",\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide .iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .swp_count.swp_hide .iconFiller\":false},[\"display:block\",\"float:none\",\"margin:0 auto\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares):hover .iconFiller\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) .spaceManWilly\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):hover .iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) .spaceManWilly\":false},[\"width:100%\"]],[false,{\".swp_social_panelSide.swp_boxed .nc_tweetContainer:not(.total_shares) span.swp_count.swp_hide\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer span.swp_hide .iconFiller\":false,\".swp_social_panelSide.swp_boxed .nc_tweetContainer span.swp_hide .spaceManWilly\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) span.swp_count.swp_hide\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer span.swp_hide .iconFiller\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer span.swp_hide .spaceManWilly\":false},[\"height:67.5px\",\"opacity:1\"]],[false,{\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares):not(#_#_#_#_#_#_#_)\":false,\".swp_social_panelSide.swp_circles .nc_tweetContainer:not(.total_shares) a:not(#_#_#_#_#_#_#_#_)\":false},[\"border-radius:50%\"]],[false,{\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares) .iconFiller\":false},[\"margin-left:2px\",\"width:30px\"]],[false,{\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares)[data-network]:not(.total_shares):hover span.iconFiller\":false,\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares):not(.total_shares) .spaceManWilly\":false},[\"width:90px\"]],[false,{\".swp_social_panelSide:not(.swp_boxed):not(.swp_circles) .nc_tweetContainer:not(.total_shares):hover\":false},[\"width:150px\"]],[false,{\".nc_wrapper\":false},[\"background:white\",\"position:fixed\",\"transition:top .5s bottom .5s\",\"width:100%\",\"z-index:99999\"]],[false,{\".nc_wrapper.bottom\":false},[\"bottom:0\",\"left:0\"]],[false,{\".nc_wrapper.top\":false},[\"top:0\",\"left:0\"]],[false,{\".nc_wrapper .swp_social_panel:not(#_#_#_#_#_#_#_)\":false},[\"margin-bottom:10px\",\"margin-top:10px\"]],[false,{\".nc_floater\":false},[\"margin:10px 0\",\"position:relative\"]],[false,{\".float-position-top-left\":false},[\"transform-origin:top left\"]],[false,{\".float-position-center-left\":false},[\"transform-origin:center left\"]],[false,{\".float-position-bottom-left\":false},[\"transform-origin:bottom left\"]],[false,{\".float-position-top-right\":false},[\"transform-origin:top right\"]],[false,{\".float-position-center-right\":false},[\"transform-origin:center right\"]],[false,{\".float-position-bottom-right\":false},[\"transform-origin:bottom right\"]],[false,{\".sw-tweet-clear\":false},[\"zoom:1\"]],[false,{\".sw-tweet-clear:after\":false},[\"clear:both\",\"content:\\\".\\\"\",\"display:block\",\"height:0\",\"visibility:hidden\"]],[false,{\"a.swp_CTT\":false},[\"cursor:pointer\"]],[false,{\"a.swp_CTT:not(#_#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\"a.swp_CTT .sw-click-to-tweet\":false},[\"display:block\",\"margin:15px 0\",\"padding:15px 30px\",\"position:relative\"]],[false,{\"a.swp_CTT .sw-click-to-tweet:after\":false},[\"clear:both\",\"content:\\\".\\\"\",\"display:block\",\"height:0\",\"line-height:0\",\"visibility:hidden\"]],[false,{\"a.swp_CTT .sw-click-to-tweet .sw-ctt-text\":false},[\"margin:0 0 10px\",\"margin:0\",\"padding:0\",\"padding:0\",\"position:relative\",\"position:relative\",\"word-wrap:break-word\",\"display:block\",\"font-size:24px\",\"font-weight:500\",\"line-height:140%\",\"text-decoration:none\",\"text-transform:none\"]],[false,{\"a.swp_CTT .sw-click-to-tweet .sw-ctt-btn\":false},[\"display:block\",\"float:right\",\"font-family:\\\"Helvetica Neue\\\",Helvetica,Arial,sans-serif\",\"font-size:12px\",\"font-weight:bold\",\"line-height:100%\",\"margin:10px 0 0\",\"padding:3px 5px 3px 3px\",\"position:relative\",\"text-decoration:none\",\"text-transform:uppercase\"]],[false,{\"a.swp_CTT .sw-click-to-tweet i.swp_twitter_icon\":false},[\"float:right\",\"font-size:21px\",\"margin-top:2px\",\"text-transform:none\"]],[false,{\"a.swp_CTT .sw-click-to-tweet i.swp_twitter_icon:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-left:15px\"]],[false,{\"a.swp_CTT.style1 .sw-click-to-tweet\":false},[\"background-color:#fff\",\"border:1px solid #ddd\",\"border-radius:4px\"]],[false,{\"a.swp_CTT.style1 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#1da1f2\"]],[false,{\"a.swp_CTT.style1 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style1 .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#999\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style1:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style1:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#666\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style2 .sw-click-to-tweet\":false},[\"background-color:#fff\",\"border:4px double #ddd\",\"border-radius:0\"]],[false,{\"a.swp_CTT.style2 .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#1da1f2\"]],[false,{\"a.swp_CTT.style2 .sw-click-to-tweet .sw-ctt-text\":false},[\"color:#666\",\"font-style:italic\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style2:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style2:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#666\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style3 .sw-click-to-tweet\":false},[\"background-color:#1da1f2\",\"border:none\",\"border-left:10px solid #15202b\",\"border-radius:0\",\"padding-right:20px\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style3 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style3 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style3 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style3 .sw-click-to-tweet .sw-ctt-text\":false},[\"font-style:italic\"]],[false,{\"a.swp_CTT.style3:hover .sw-click-to-tweet\":false},[\"border-left:10px solid #15202b\",\"padding-right:20px\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style3:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style3:hover .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style3:hover .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style4 .sw-click-to-tweet\":false},[\"background-color:#333\",\"border-left:10px solid #c33\",\"border-radius:0\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style4 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style4 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style4 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style4:hover .sw-click-to-tweet\":false},[\"border-left:10px solid #3c87b2\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style4:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style4:hover .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style4:hover .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style5 .sw-click-to-tweet\":false},[\"background-color:#30394f\",\"border-left:10px solid #d34250\",\"border-radius:0\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style5 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style5 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style5 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style5:hover .sw-click-to-tweet\":false},[\"background-color:#d34250\",\"border-left:10px solid #30394f\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style5:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style5:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style6 .sw-click-to-tweet\":false},[\"background-color:#eee\",\"border-left:10px solid #d34250\",\"border-radius:0\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style6 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style6 .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style6 .sw-click-to-tweet i.swp_twitter\":false},[\"color:#30394f\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style6:hover .sw-click-to-tweet\":false},[\"background-color:#ced3dc\",\"border-left:10px solid #d34250\",\"transition:all .2s linear\"]],[false,{\"a.swp_CTT.style6:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style6:hover .sw-click-to-tweet .sw-ctt-btn\":false,\"a.swp_CTT.style6:hover .sw-click-to-tweet i.swp_twitter\":false},[\"color:#2a2d34\",\"text-decoration:none\"]],[false,{\"a.swp_CTT.style7 .sw-click-to-tweet\":false},[\"transition:all .2s linear\",\"background:#f9f9f9\",\"color:#1da1f2\",\"border-radius:10px\",\"transform:skewX(-15deg)\",\"border:7px dashed #e5e5e5\"]],[false,{\"a.swp_CTT.style7 .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style7 .sw-click-to-tweet .sw-ctt-btn\":false},[\"transition:all .2s linear\",\"transform:skewX(15deg)\"]],[false,{\"a.swp_CTT.style7:hover .sw-click-to-tweet\":false},[\"transition:all .2s linear\",\"background:#fff\",\"border-color:#ddd\",\"transform:skewX(-10deg) scale(1.02)\"]],[false,{\"a.swp_CTT.style7:hover .sw-click-to-tweet .sw-ctt-text\":false,\"a.swp_CTT.style7:hover .sw-click-to-tweet .sw-ctt-btn\":false},[\"transition:all .2s linear\",\"transform:skewX(10deg)\"]],[false,{\".swfw-follow-container\":false},[\"display:flex\",\"position:relative\"]],[false,{\".swfw-follow-container .swfw-container-message\":false},[\"font-weight:bold\"]],[false,{\".swfw-follow-container.swfw_square_container\":false},[\"flex-flow:row wrap\"]],[false,{\".swfw-follow-container.swfw_buttons_container\":false},[\"flex-flow:column nowrap\",\"justify-content:flex-start\",\"align-items:space-between\"]],[false,{\".swfw-follow-container.swfw_block_container\":false},[\"flex-flow:column nowrap\",\"justify-content:flex-start\",\"align-items:flex-start\"]],[false,{\".swfw-follow-container a\":false},[\"text-decoration:none\"]],[false,{\"div.swp-blogger\":false},[\"background:#ff5722\",\"border-color:#ee3900\"]],[false,{\"div.swp-blogger a\":false},[\"color:#ff5722\"]],[false,{\"div.swp-blogger a:hover\":false},[\"background:#ee3900\",\"color:#fff\"]],[false,{\"div.swp-buffer\":false},[\"background:#323b43\",\"border-color:#1c2126\"]],[false,{\"div.swp-buffer a\":false},[\"color:#323b43\"]],[false,{\"div.swp-buffer a:hover\":false},[\"background:#1c2126\",\"color:#fff\"]],[false,{\"div.swp-ello\":false},[\"background:#000\",\"border-color:#000\"]],[false,{\"div.swp-ello a\":false},[\"color:#000\"]],[false,{\"div.swp-ello a:hover\":false},[\"background:#000\",\"color:#fff\"]],[false,{\"div.swp-email\":false},[\"background:#6bcce9\",\"border-color:#3fbde2\"]],[false,{\"div.swp-email a\":false},[\"color:#6bcce9\"]],[false,{\"div.swp-email a:hover\":false},[\"background:#3fbde2\",\"color:#fff\"]],[false,{\"div.swp-evernote\":false},[\"background:#2dbe60\",\"border-color:#23954b\"]],[false,{\"div.swp-evernote a\":false},[\"color:#2dbe60\"]],[false,{\"div.swp-evernote a:hover\":false},[\"background:#23954b\",\"color:#fff\"]],[false,{\"div.swp-facebook\":false},[\"background:#1877f2\",\"border-color:#0b5fcc\"]],[false,{\"div.swp-facebook a\":false},[\"color:#1877f2\"]],[false,{\"div.swp-facebook a:hover\":false},[\"background:#0b5fcc\",\"color:#fff\"]],[false,{\"div.swp-flickr\":false},[\"background:#ff0084\",\"border-color:#cc006a\"]],[false,{\"div.swp-flickr a\":false},[\"color:#ff0084\"]],[false,{\"div.swp-flickr a:hover\":false},[\"background:#cc006a\",\"color:#fff\"]],[false,{\"div.swp-flipboard\":false},[\"background:#bf2626\",\"border-color:#941e1e\"]],[false,{\"div.swp-flipboard a\":false},[\"color:#bf2626\"]],[false,{\"div.swp-flipboard a:hover\":false},[\"background:#941e1e\",\"color:#fff\"]],[false,{\"div.swp-hacker_news\":false},[\"background:#d85623\",\"border-color:#ac451c\"]],[false,{\"div.swp-hacker_news a\":false},[\"color:#d85623\"]],[false,{\"div.swp-hacker_news a:hover\":false},[\"background:#ac451c\",\"color:#fff\"]],[false,{\"div.swp-instagram\":false},[\"background:#ea2454\",\"border-color:#c8133f\"]],[false,{\"div.swp-instagram a\":false},[\"color:#ea2454\"]],[false,{\"div.swp-instagram a:hover\":false},[\"background:#c8133f\",\"color:#fff\"]],[false,{\"div.swp-linkedin\":false},[\"background:#2767b1\",\"border-color:#1e4f87\"]],[false,{\"div.swp-linkedin a\":false},[\"color:#2767b1\"]],[false,{\"div.swp-linkedin a:hover\":false},[\"background:#1e4f87\",\"color:#fff\"]],[false,{\"div.swp-medium\":false},[\"background:#00ab6c\",\"border-color:#00784c\"]],[false,{\"div.swp-medium a\":false},[\"color:#00ab6c\"]],[false,{\"div.swp-medium a:hover\":false},[\"background:#00784c\",\"color:#fff\"]],[false,{\"div.swp-mix\":false},[\"background:#f4812c\",\"border-color:#e1660c\"]],[false,{\"div.swp-mix a\":false},[\"color:#f4812c\"]],[false,{\"div.swp-mix a:hover\":false},[\"background:#e1660c\",\"color:#fff\"]],[false,{\"div.swp-more\":false},[\"background:#ee464f\",\"border-color:#ea1723\"]],[false,{\"div.swp-more a\":false},[\"color:#ee464f\"]],[false,{\"div.swp-more a:hover\":false},[\"background:#ea1723\",\"color:#fff\"]],[false,{\"div.swp-parler\":false},[\"background:#be1e2c\",\"border-color:#921722\"]],[false,{\"div.swp-parler a\":false},[\"color:#be1e2c\"]],[false,{\"div.swp-parler a:hover\":false},[\"background:#921722\",\"color:#fff\"]],[false,{\"div.swp-periscope\":false},[\"background:#3aa4c6\",\"border-color:#2e849f\"]],[false,{\"div.swp-periscope a\":false},[\"color:#3aa4c6\"]],[false,{\"div.swp-periscope a:hover\":false},[\"background:#2e849f\",\"color:#fff\"]],[false,{\"div.swp-pinterest\":false},[\"background:#e60023\",\"border-color:#b3001b\"]],[false,{\"div.swp-pinterest a\":false},[\"color:#e60023\"]],[false,{\"div.swp-pinterest a:hover\":false},[\"background:#b3001b\",\"color:#fff\"]],[false,{\"div.swp-pocket\":false},[\"background:#ef4056\",\"border-color:#e9132e\"]],[false,{\"div.swp-pocket a\":false},[\"color:#ef4056\"]],[false,{\"div.swp-pocket a:hover\":false},[\"background:#e9132e\",\"color:#fff\"]],[false,{\"div.swp-print\":false},[\"background:#777\",\"border-color:#5e5e5e\"]],[false,{\"div.swp-print a\":false},[\"color:#777\"]],[false,{\"div.swp-print a:hover\":false},[\"background:#5e5e5e\",\"color:#fff\"]],[false,{\"div.swp-reddit\":false},[\"background:#f04b23\",\"border-color:#d2340e\"]],[false,{\"div.swp-reddit a\":false},[\"color:#f04b23\"]],[false,{\"div.swp-reddit a:hover\":false},[\"background:#d2340e\",\"color:#fff\"]],[false,{\"div.swp-snapchat\":false},[\"background:#fffc00\",\"border-color:#ccca00\"]],[false,{\"div.swp-snapchat a\":false},[\"color:#fffc00\"]],[false,{\"div.swp-snapchat a:hover\":false},[\"background:#ccca00\",\"color:#fff\"]],[false,{\"div.swp-telegram\":false},[\"background:#08c\",\"border-color:#069\"]],[false,{\"div.swp-telegram a\":false},[\"color:#08c\"]],[false,{\"div.swp-telegram a:hover\":false},[\"background:#069\",\"color:#fff\"]],[false,{\"div.swp-twitter\":false},[\"background:#1da1f2\",\"border-color:#0c85d0\"]],[false,{\"div.swp-twitter a\":false},[\"color:#1da1f2\"]],[false,{\"div.swp-twitter a:hover\":false},[\"background:#0c85d0\",\"color:#fff\"]],[false,{\"div.swp-tumblr\":false},[\"background:#39475d\",\"border-color:#262f3d\"]],[false,{\"div.swp-tumblr a\":false},[\"color:#39475d\"]],[false,{\"div.swp-tumblr a:hover\":false},[\"background:#262f3d\",\"color:#fff\"]],[false,{\"div.swp-vimeo\":false},[\"background:#162221\",\"border-color:#020303\"]],[false,{\"div.swp-vimeo a\":false},[\"color:#162221\"]],[false,{\"div.swp-vimeo a:hover\":false},[\"background:#020303\",\"color:#fff\"]],[false,{\"div.swp-viber\":false},[\"background:#8f5db7\",\"border-color:#75459c\"]],[false,{\"div.swp-viber a\":false},[\"color:#8f5db7\"]],[false,{\"div.swp-viber a:hover\":false},[\"background:#75459c\",\"color:#fff\"]],[false,{\"div.swp-vk\":false},[\"background:#4a76a8\",\"border-color:#3a5d85\"]],[false,{\"div.swp-vk a\":false},[\"color:#4a76a8\"]],[false,{\"div.swp-vk a:hover\":false},[\"background:#3a5d85\",\"color:#fff\"]],[false,{\"div.swp-whatsapp\":false},[\"background:#71c169\",\"border-color:#52af48\"]],[false,{\"div.swp-whatsapp a\":false},[\"color:#71c169\"]],[false,{\"div.swp-whatsapp a:hover\":false},[\"background:#52af48\",\"color:#fff\"]],[false,{\"div.swp-xing\":false},[\"background:#026466\",\"border-color:#013334\"]],[false,{\"div.swp-xing a\":false},[\"color:#026466\"]],[false,{\"div.swp-xing a:hover\":false},[\"background:#013334\",\"color:#fff\"]],[false,{\"div.swp-yummly\":false},[\"background:#e26426\",\"border-color:#bc4f19\"]],[false,{\"div.swp-yummly a\":false},[\"color:#e26426\"]],[false,{\"div.swp-yummly a:hover\":false},[\"background:#bc4f19\",\"color:#fff\"]],[false,{\".swfw-follow-button\":false,\".swfw_square_button\":false,\".swfw_buttons_button\":false,\".swfw_block_button\":false,\".swfw-follow-button.swfw_leaf_button\":false,\".swfw-follow-button.swfw_pill_button\":false,\".swfw-follow-button.swfw_shift_button\":false},[\"align-items:center\",\"border-radius:8px\",\"display:flex\",\"color:white\",\"font-family:\\\"Helvetica\\\",sans-serif\",\"font-size:initial\",\"justify-content:space-between\",\"line-height:1\",\"margin-bottom:10px\",\"padding:15px 5%\",\"width:90%\"]],[false,{\".swfw-follow-button.swp-snapchat\":false,\".swp-snapchat.swfw_square_button\":false,\".swp-snapchat.swfw_buttons_button\":false,\".swp-snapchat.swfw_block_button\":false,\".swfw-follow-button.swp-snapchat a\":false,\".swp-snapchat.swfw_square_button a\":false,\".swp-snapchat.swfw_buttons_button a\":false,\".swp-snapchat.swfw_block_button a\":false},[\"color:black\"]],[false,{\".swfw-follow-button a\":false,\".swfw_square_button a\":false,\".swfw_buttons_button a\":false,\".swfw_block_button a\":false,\".swfw-follow-button.swfw_leaf_button a\":false,\".swfw-follow-button.swfw_pill_button a\":false,\".swfw-follow-button.swfw_shift_button a\":false},[\"background:#fff\",\"border-radius:4px\",\"transition:all .2s ease-in-out\"]],[false,{\".swfw-follow-button a :hover\":false,\".swfw_square_button a :hover\":false,\".swfw_buttons_button a :hover\":false,\".swfw_block_button a :hover\":false},[\"color:white\"]],[false,{\".swfw-follow-button a :hover.swp-snapchat\":false,\".swfw_square_button a :hover.swp-snapchat\":false,\".swfw_buttons_button a :hover.swp-snapchat\":false,\".swfw_block_button a :hover.swp-snapchat\":false},[\"color:black\"]],[false,{\".swfw-follow-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_square_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_block_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_leaf_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_pill_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_shift_button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-text:not(#_#_#_#_#_#_#_)\":false,\".swfw-follow-button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-cta:not(#_#_#_#_#_#_#_)\":false,\".swfw-follow-button .swfw-count:not(#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-count:not(#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-count:not(#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-count:not(#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\".swfw-follow-button .swfw-network-icon i\":false,\".swfw_square_button .swfw-network-icon i\":false,\".swfw_buttons_button .swfw-network-icon i\":false,\".swfw_block_button .swfw-network-icon i\":false},[\"width:32px\",\"height:32px\",\"border-radius:100px\",\"font-size:24px\",\"line-height:32px\"]],[false,{\".swfw-follow-button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_square_button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_buttons_button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false,\".swfw_block_button .swfw-network-icon i:not(#_#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\".swfw_square_button\":false},[\"width:60px\",\"height:60px\",\"position:relative\",\"display:flex\",\"flex-flow:column nowrap\",\"align-items:center\",\"text-align:center\",\"margin:5px\",\"padding:0\",\"justify-content:center\",\"border-radius:4px\"]],[false,{\".swfw_square_button .swfw-network-icon\":false},[\"margin-top:-12px\"]],[false,{\".swfw_square_button .swfw-text\":false},[\"width:100%\"]],[false,{\".swfw_square_button .swfw-cta\":false,\".swfw_square_button .swfw-count\":false},[\"display:block\",\"width:100%\",\"position:absolute\"]],[false,{\".swfw_square_button .swfw-count\":false},[\"opacity:1\",\"transition:opacity 120ms 0\",\"font-size:12px\"]],[false,{\".swfw_square_button .swfw-cta\":false},[\"opacity:0\",\"transition:opacity 120ms 0\",\"font-size:12px\"]],[false,{\".swfw_square_button:hover .swfw-count\":false},[\"opacity:0\",\"transition:opacity 120ms 120ms\"]],[false,{\".swfw_square_button:hover .swfw-cta\":false},[\"opacity:1\",\"transition:opacity 120ms 120ms\"]],[false,{\".swfw_buttons_button\":false},[\"display:flex\",\"flex-flow:row nowrap\",\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\",\"margin:10px 5px\",\"border-radius:4px\",\"padding:5px 15px\",\"color:white\"]],[false,{\".swfw_buttons_button .swfw-network-icon\":false},[\"padding:0\",\"font-size:32px\"]],[false,{\".swfw_buttons_button .swfw-text\":false},[\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\",\"margin:0 10px\",\"transition:margin 300ms\",\"display:flex\",\"justify-content:center\",\"line-height:32px\",\"color:white\"]],[false,{\".swfw_buttons_button .swfw-text .swfw-cta\":false,\".swfw_buttons_button .swfw-text .swfw-count\":false},[\"display:inline\",\"position:relative\",\"transition:all 300ms\"]],[false,{\".swfw_buttons_button .swfw-text .swfw-cta\":false},[\"width:0\",\"overflow-x:hidden\",\"position:absolute\",\"color:transparent\",\"margin-right:0\",\"font-weight:normal\"]],[false,{\".swfw_buttons_button .swfw-text:hover .swfw-cta\":false},[\"color:white\"]],[false,{\".swfw_buttons_button.swp-snapchat .swfw-text\":false},[\"color:black\"]],[false,{\".swfw_buttons_button.swp-snapchat .swfw-text:hover .swfw-cta\":false},[\"color:black\"]],[false,{\".swfw_buttons_button:hover .swfw-text\":false},[\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\"]],[false,{\".swfw_buttons_button:hover .swfw-text .swfw-cta\":false},[\"width:-moz-min-content\",\"width:-webkit-min-content\",\"width:min-content\",\"overflow-x:visible\",\"position:relative\",\"margin-right:10px\",\"color:white\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_pill_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_shift_button .swfw-network-icon\":false},[\"margin-left:10px\",\"flex:1\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-text\":false,\".swfw-follow-button.swfw_pill_button .swfw-text\":false,\".swfw-follow-button.swfw_shift_button .swfw-text\":false},[\"flex:2\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button\":false},[\"flex:1\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a\":false},[\"padding:none\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a div\":false},[\"padding:10px 30px\",\"background:white\",\"border-radius:2px\"]],[false,{\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a:hover div\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a:hover div\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a:hover div\":false},[\"background:rgba(33,33,33,.3)\"]],[false,{\".swfw_block_button\":false,\".swfw-follow-button.swfw_leaf_button\":false,\".swfw-follow-button.swfw_pill_button\":false,\".swfw-follow-button.swfw_shift_button\":false},[\"flex-flow:row nowrap\",\"align-items:center\",\"justify-content:space-between\",\"cursor:initial\",\"position:relative\"]],[false,{\".swfw_block_button>*\":false,\".swfw-follow-button.swfw_leaf_button>*\":false,\".swfw-follow-button.swfw_pill_button>*\":false,\".swfw-follow-button.swfw_shift_button>*\":false},[\"width:-moz-min-content\",\"width:-webkit-min-content\",\"width:min-content\"]],[false,{\".swfw_block_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_leaf_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_pill_button .swfw-network-icon\":false,\".swfw-follow-button.swfw_shift_button .swfw-network-icon\":false},[\"margin-left:10px\"]],[false,{\".swfw_block_button .swfw-text\":false,\".swfw-follow-button.swfw_leaf_button .swfw-text\":false,\".swfw-follow-button.swfw_pill_button .swfw-text\":false,\".swfw-follow-button.swfw_shift_button .swfw-text\":false},[\"font-size:12px\",\"line-height:24px\",\"left:calc(10px + 60px)\",\"color:white\",\"text-align:center\"]],[false,{\".swfw_block_button .swfw-text .swfw-count\":false,\".swfw-follow-button.swfw_leaf_button .swfw-text .swfw-count\":false,\".swfw-follow-button.swfw_pill_button .swfw-text .swfw-count\":false,\".swfw-follow-button.swfw_shift_button .swfw-text .swfw-count\":false},[\"width:-moz-max-content\",\"width:-webkit-max-content\",\"width:max-content\",\"font-size:15px\"]],[false,{\".swfw_block_button.swp-snapchat .swfw-text\":false,\".swp-snapchat.swfw-follow-button.swfw_leaf_button .swfw-text\":false,\".swp-snapchat.swfw-follow-button.swfw_pill_button .swfw-text\":false,\".swp-snapchat.swfw-follow-button.swfw_shift_button .swfw-text\":false},[\"color:black\"]],[false,{\".swfw_block_button .swfw-cta\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta\":false},[\"border-radius:3px\"]],[false,{\".swfw_block_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button\":false},[\"font-size:24px\",\"padding:5px\",\"line-height:24px\",\"border-radius:4px\",\"text-align:center\",\"right:0\"]],[false,{\".swfw_block_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a:not(#_#_#_#_#_#_#_#_)\":false},[\"text-decoration:none\"]],[false,{\".swfw_block_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a div\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a div\":false},[\"font-size:14px\",\"min-width:100px\",\"border-radius:3px\",\"background:white\",\"padding:5px 15px\"]],[false,{\".swfw_block_button .swfw-cta-button a div:hover\":false,\".swfw-follow-button.swfw_leaf_button .swfw-cta-button a div:hover\":false,\".swfw-follow-button.swfw_pill_button .swfw-cta-button a div:hover\":false,\".swfw-follow-button.swfw_shift_button .swfw-cta-button a div:hover\":false},[\"transition:opacity 200ms\",\"background:rgba(30,30,30,.3)\",\"cursor:pointer\",\"color:white\"]],[false,{\".swfw_leaf_button.swfw_square_button\":false,\".swfw_leaf_button.swfw_buttons_button\":false,\".swfw_leaf_button.swfw_block_button\":false,\".swfw_leaf_button.swfw-follow-button\":false},[\"border-top-left-radius:21px\",\"border-top-right-radius:3px\",\"border-bottom-left-radius:3px\",\"border-bottom-right-radius:21px\"]],[false,{\".swfw_leaf_button.swfw_square_button .swfw-network-icon\":false,\".swfw_leaf_button.swfw_buttons_button .swfw-network-icon\":false,\".swfw_leaf_button.swfw_block_button .swfw-network-icon\":false,\".swfw_leaf_button.swfw-follow-button .swfw-network-icon\":false},[\"margin-left:10px\"]],[false,{\".swfw_pill_button.swfw_square_button\":false,\".swfw_pill_button.swfw_buttons_button\":false,\".swfw_pill_button.swfw_block_button\":false,\".swfw_pill_button.swfw-follow-button\":false},[\"border-radius:50px\",\"padding:20px\"]],[false,{\".swfw_pill_button.swfw_square_button .swfw-network-icon\":false,\".swfw_pill_button.swfw_buttons_button .swfw-network-icon\":false,\".swfw_pill_button.swfw_block_button .swfw-network-icon\":false,\".swfw_pill_button.swfw-follow-button .swfw-network-icon\":false},[\"margin-left:10px\"]],[false,{\".swfw_pill_button.swfw_square_button .swfw-cta-button a\":false,\".swfw_pill_button.swfw_buttons_button .swfw-cta-button a\":false,\".swfw_pill_button.swfw_block_button .swfw-cta-button a\":false,\".swfw_pill_button.swfw-follow-button .swfw-cta-button a\":false},[\"border-radius:50px\"]],[false,{\".swfw_pill_button.swfw_square_button .swfw-cta-button a div\":false,\".swfw_pill_button.swfw_buttons_button .swfw-cta-button a div\":false,\".swfw_pill_button.swfw_block_button .swfw-cta-button a div\":false,\".swfw_pill_button.swfw-follow-button .swfw-cta-button a div\":false},[\"border-radius:50px\"]],[false,{\".swfw_shift_button.swfw_square_button\":false,\".swfw_shift_button.swfw_buttons_button\":false,\".swfw_shift_button.swfw_block_button\":false,\".swfw_shift_button.swfw-follow-button\":false},[\"transform:skew(-20deg)\",\"-moz-transform:skew(-20deg)\",\"-o-transform:skew(-20deg)\",\"-webkit-transform:skew(-20deg)\"]],[false,{\".swfw_shift_button.swfw_square_button div\":false,\".swfw_shift_button.swfw_buttons_button div\":false,\".swfw_shift_button.swfw_block_button div\":false,\".swfw_shift_button.swfw-follow-button div\":false},[\"transform:skew(20deg)\",\"-moz-transform:skew(20deg)\",\"-o-transform:skew(20deg)\",\"-webkit-transform:skew(20deg)\",\"align-items:center\",\"display:flex\",\"justify-content:space-around\",\"width:100%\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button\":false},[\"transform:skew(0deg)\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a\":false},[\"padding:none\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a:hover\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a:hover\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a:hover\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a:hover\":false},[\"background:rgba(33,33,33,.3)\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a div\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a div\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a div\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a div\":false},[\"background:none\",\"transform:skew(20deg)\",\"padding:10px 30px\"]],[false,{\".swfw_shift_button.swfw_square_button .swfw-cta-button a div:hover\":false,\".swfw_shift_button.swfw_buttons_button .swfw-cta-button a div:hover\":false,\".swfw_shift_button.swfw_block_button .swfw-cta-button a div:hover\":false,\".swfw_shift_button.swfw-follow-button .swfw-cta-button a div:hover\":false},[\"background:none\"]],[false,{\".swfw-revoke-button\":false,\".swfw-authorization-button\":false},[\"width:70%\",\"text-align:center\",\"max-width:200px\"]],[false,{\".swfw-input-field\":false,\".swfw-follow-field\":false},[\"display:flex\",\"flex-flow:row nowrap\",\"justify-content:space-between\",\"align-items:center\",\"height:50px\",\"margin:15px auto\"]],[false,{\".swfw-follow-field.swfw-inactive a\":false},[\"cursor:initial\"]],[false,{\".swfw-follow-field.swfw-active a\":false},[\"cursor:pointer\"]],[false,{\".swfw-follow-field-icon\":false},[\"color:black\",\"width:40px\",\"font-size:40px\",\"line-height:42px\",\"font-weight:bold\",\"transition:all 200ms\",\"border-radius:3px\",\"height:40px\",\"text-align:center\",\"padding:2px\"]],[false,{\".swfw-widget label\":false},[\"font-size:14px\",\"width:100px\"]],[false,{\".swfw-follow-field label\":false},[\"text-align:right\"]],[false,{\".swfw-input-field input\":false,\".swfw-input-field select\":false,\".swfw-follow-field input\":false},[\"padding:10px\",\"width:50%\",\"height:100%\",\"border-radius:4px\"]],[false,{\".swfw-follow-field.swfw-inactive div\":false},[\"background:white\"]],[false,{\".swfw-follow-field.swfw-active div\":false},[\"color:white\"]],[false,{\"a.swp-hover-pin-button\":false},[\"background:#cd2029\",\"border:1px solid #aa1b29\",\"border:0\",\"border-bottom:none\",\"border-radius:3px\",\"box-shadow:none\",\"color:#fff\",\"font-family:Lato,sans-serif\",\"font-size:15px\",\"height:32px\",\"line-height:32px\",\"padding:0 20px\",\"position:absolute\",\"position:absolute\",\"text-decoration:none\",\"text-align:center\",\"transition:opacity .5s\",\"z-index:3200\",\"cursor:pointer\"]],[false,{\"a.swp-hover-pin-button:not(#_#_#_#_#_#_#_#_)\":false},[\"width:120px\"]],[false,{\"a.swp-hover-pin-button::before\":false},[\"content:\\\"A\\\"\",\"color:#fff\",\"float:left\",\"font-family:sw-icon-font\",\"font-size:20px\",\"font-weight:400\",\"line-height:36px\",\"margin-left:-5px\",\"margin-right:10px\"]],[false,{\"a.swp-hover-pin-button:hover::before\":false},[\"content:\\\"z\\\"\"]],[false,{\"a.swp-hover-pin-button:hover\":false,\"a.swp-hover-pin-button:focus\":false},[\"background:#aa1b29\",\"color:#fff\",\"text-decoration:none\"]],[false,{\".swp-pinterest-image-top\":false},[\"margin-bottom:20px\"]],[false,{\".swp-pinterest-image-bottom\":false},[\"margin-top:20px\"]],[false,{\".swp_pop_thumb\":false},[\"border-radius:3px\",\"float:left\",\"height:100px\",\"margin:5px 25px 5px 0\",\"width:100px\"]],[false,{\".swp_popular_post\":false},[\"clear:both\"]],[false,{\".swp_popular_post a.swp_popularity\":false},[\"border:none\",\"display:block\",\"line-height:1.5\",\"margin:20px 0\"]],[false,{\".swp_clearfix:after\":false},[\"clear:both\",\"content:\\\" \\\"\",\"display:block\",\"height:0\",\"visibility:hidden\"]],[false,{\"span.swp_pop_count\":false},[\"display:block\",\"font-size:70%\"]],[false,{\".swp_widget_box\":false},[\"border-radius:3px\"]],[false,{\".swp_hidden_pin_image\":false},[\"height:0\",\"opacity:0\",\"position:absolute\",\"top:0\",\"width:0\",\"z-index:-10\"]],[false,{\".swp-content-locator:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"margin:0\"]],[false,{\".swp-lightbox-wrapper\":false},[\"width:100%\",\"height:100%\",\"position:fixed\",\"top:0\",\"background:#fff\",\"z-index:999999\"]],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner\":false},[\"width:50%\",\"left:25%\",\"position:relative\",\"text-align:center\",\"top:10%\",\"background:#fff\",\"padding:35px\",\"border-radius:10px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner\":false},[\"width:80%\",\"left:10%\"]],[false,\"}\"],[false,\"@media (max-width: 450px){\"],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner\":false},[\"width:90%\",\"left:5%\"]],[false,\"}\"],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner h5\":false},[\"font-family:Lato,sans-serif\",\"font-size:25px\",\"margin-bottom:40px\",\"text-align:center\"]],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner .swp-lightbox-close\":false},[\"font-weight:bold\",\"height:20px\",\"width:20px\",\"cursor:pointer\",\"color:#30394f\",\"text-align:right\",\"transform:rotate(45deg)\",\"display:inline-block\",\"float:right\",\"margin:-30px\",\"font-size:25px\"]],[false,{\".swp-lightbox-wrapper .swp-lightbox-inner .swp-lightbox-close:before\":false},[\"content:\\\"+\\\"\",\"font-family:arial\"]],[false,\"@media print{\"],[false,{\".swp-lightbox-wrapper\":false},[\"display:none\"]],[false,\"}\"],[false,{\".swp-lightbox-wrapper .swp_pinterest_icon.top_icon\":false,\".swp-lightbox-wrapper .swp_share_icon\":false},[\"color:#cd2029\",\"font-size:45px\",\"margin:0\",\"padding:0\",\"line-height:0\"]],[false,{\".swp-lightbox-wrapper .swp_share_icon\":false},[\"color:#000\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .swp-lightbox-inner\":false},[\"width:70%\",\"left:15%\",\"height:80%\",\"overflow-y:auto\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .swp-lightbox-inner h5\":false},[\"margin-bottom:40px\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper\":false},[\"text-align:center\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper\":false},[\"display:inline-block\",\"width:24%\",\"margin-right:1%\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper amp-img\":false,\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper amp-anim\":false},[\"border-radius:3px\",\"max-width:100%\",\"height:auto\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper .swp-hover-pin-button\":false},[\"position:initial\",\"display:block\",\"margin-top:10px\",\"margin-bottom:40px\"]],[false,{\".swp-lightbox-wrapper.pinterest-overlay .pin_images_wrapper .pin_image_select_wrapper .swp-hover-pin-button:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":8320,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"__EPYT__style-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/styles\\/ytprefs.min.css?ver=14.1.2\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"style\",\"handle\":\"__EPYT__style\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"__EPYT__style\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}],\"priority\":30,\"hash\":\"9c3e04efd2df5c19054e5b96b851efb8\",\"parse_time\":0.0915369987487793,\"shake_time\":0.00011897087097167969,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".epyt-debug\":false},[\"cursor:pointer\",\"text-align:left\",\"background-color:#ddd\",\"color:#000\"]],[false,{\"amp-iframe.__youtube_prefs__\":false},[\"border-width:0\"]],[false,{\".epyt-gallery\":false},[\"text-align:center\"]],[false,{\".epyt-gallery .epyt-figure\":false},[\"margin-inline:0\",\"margin-block:0\"]],[false,{\".epyt-gallery amp-iframe\":false},[\"margin-bottom:0\"]],[false,{\".epyt-gallery.epyt-lb amp-iframe\":false},[\"display:none\"]],[false,{\".epyt-gallery.epyt-lb amp-iframe:not(#_#_#_#_#_#_#_#_)\":false},[\"height:0\"]],[false,{\".epyt-gallery-list\":false},[\"margin:0 -8px 0 -8px\",\"position:relative\",\"transition:opacity ease-out .3s\",\"display:block\"]],[false,{\".epyt-gallery-list .epyt-gallery-thumb\":false},[\"box-sizing:border-box\"]],[false,{\".epyt-gallery-list p\":false},[\"display:none\"]],[false,{\".epyt-gallery-clear\":false},[\"clear:both\"]],[false,{\".epyt-gallery-list.epyt-loading\":false},[\"opacity:.5\",\"transition:opacity ease-out .3s\"]],[false,{\".epyt-gallery-thumb\":false},[\"position:relative\",\"box-sizing:border-box\",\"overflow-y:hidden\",\"cursor:pointer\",\"opacity:1\",\"float:left\",\"padding:0 8px 10px 8px\",\"height:auto\"]],[false,{\".epyt-gallery-thumb:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".epyt-gallery-thumb.hover\":false},[\"position:relative\",\"opacity:1\",\"transition:opacity ease-out .3s\",\"height:auto\"]],[false,{\".epyt-gallery-img-box\":false},[\"width:100%\"]],[false,{\".epyt-gallery-img\":false},[\"height:0\",\"width:100%\",\"position:relative\"]],[false,{\".epyt-gallery-img:not(#_#_#_#_#_#_#_)\":false},[\"padding-top:56.25%\",\"overflow:hidden\",\"background-size:cover\",\"background-position:center\"]],[false,{\".epyt-gallery-playhover\":false},[\"opacity:0\",\"position:absolute\",\"top:-10px\",\"left:0\",\"width:100%\",\"height:100%\",\"vertical-align:middle\",\"text-align:center\",\"transition:opacity ease-out .3s\"]],[false,{\".epyt-gallery-thumb.hover .epyt-gallery-playhover\":false,\".epyt-gallery-thumb.epyt-current-video .epyt-gallery-playhover\":false},[\"opacity:1\",\"top:0\",\"transition:all ease-out .3s\"]],[false,{\".epyt-gallery-thumb .epyt-gallery-playcrutch\":false},[\"display:inline-block\",\"height:100%\",\"vertical-align:middle\",\"width:0\"]],[false,{\".epyt-gallery-playhover .epyt-play-img\":false},[\"width:auto\",\"border:0\",\"box-sizing:border-box\"]],[false,{\".epyt-gallery-playhover .epyt-play-img:not(#_#_#_#_#_#_#_)\":false},[\"height:auto\",\"max-width:15%\",\"padding:0\",\"margin:0\",\"min-width:30px\",\"vertical-align:middle\",\"display:inline-block\"]],[false,{\".epyt-gallery-title\":false},[\"font-size:80%\",\"line-height:120%\",\"padding:10px\"]],[false,{\".epyt-gallery-notitle\":false},[\"padding:4px\"]],[false,{\".epyt-gallery-notitle span\":false},[\"display:none\"]],[false,{\".epyt-gallery-rowtitle\":false},[\"text-align:center\",\"width:100%\",\"position:absolute\",\"left:0\",\"top:100%\",\"opacity:0\",\"z-index:10\",\"overflow-x:hidden\",\"text-overflow:ellipsis\",\"white-space:nowrap\"]],[false,{\".epyt-gallery-rowtitle.hover\":false},[\"opacity:1\",\"transition:opacity linear .2s\"]],[false,{\".epyt-gallery-rowbreak\":false},[\"clear:both\"]],[false,{\".epyt-pagination\":false},[\"clear:both\",\"text-align:center\",\"padding:10px 8px 10px 8px\"]],[false,{\".epyt-pagination.epyt-hide-pagination *:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".epyt-pagination>div\":false,\".epyt-pagenumbers>div\":false},[\"display:inline-block\",\"padding:0 2px 0 2px\",\"vertical-align:middle\"]],[false,{\".epyt-pagination .epyt-pagebutton\":false},[\"cursor:pointer\",\"display:inline-block\",\"padding:0 10px 0 10px\"]],[false,{\".epyt-pagebutton>div\":false},[\"display:inline\"]],[false,{\".epyt-pagination .epyt-loader\":false},[\"display:none\"]],[false,{\".epyt-gallery-list.epyt-loading .epyt-pagination .epyt-loader\":false},[\"display:inline-block\"]],[false,{\"body .lity-container\":false},[\"width:100%\",\"max-width:964px\"]],[false,{\".epyt-curtain .lity-opened amp-iframe\":false},[\"opacity:0\",\"transition:opacity .3s linear .5s\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-1 .epyt-gallery-thumb\":false},[\"width:100%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-2 .epyt-gallery-thumb\":false},[\"width:50%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-3 .epyt-gallery-thumb\":false},[\"width:33.333%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-4 .epyt-gallery-thumb\":false},[\"width:25%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-5 .epyt-gallery-thumb\":false},[\"width:20%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-6 .epyt-gallery-thumb\":false},[\"width:16.666%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-7 .epyt-gallery-thumb\":false},[\"width:14.285%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-8 .epyt-gallery-thumb\":false},[\"width:12.5%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-9 .epyt-gallery-thumb\":false},[\"width:11.111%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-10 .epyt-gallery-thumb\":false},[\"width:10%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-11 .epyt-gallery-thumb\":false},[\"width:9.09%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-12 .epyt-gallery-thumb\":false},[\"width:8.333%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-13 .epyt-gallery-thumb\":false},[\"width:7.692%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-14 .epyt-gallery-thumb\":false},[\"width:7.142%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-15 .epyt-gallery-thumb\":false},[\"width:6.666%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-16 .epyt-gallery-thumb\":false},[\"width:6.25%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-17 .epyt-gallery-thumb\":false},[\"width:5.882%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-18 .epyt-gallery-thumb\":false},[\"width:5.555%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-19 .epyt-gallery-thumb\":false},[\"width:5.263%\"]],[false,{\".epyt-gallery-allthumbs.epyt-cols-20 .epyt-gallery-thumb\":false},[\"width:5%\"]],[false,{\".epyt-pagebutton.hide:not(#_#_#_#_#_#_#_)\":false,\".epyt-pagenumbers.hide:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"opacity:0\",\"visibility:hidden\"]],[false,{\".epyt-gallery-subscribe\":false},[\"text-align:center\",\"padding:15px 0 10px 0\",\"clear:both\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton:hover\":false},[\"display:inline-block\",\"padding:5px 10px\",\"border-radius:3px\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton:not(#_#_#_#_#_#_#_#_)\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:#e62117\",\"color:#fff\",\"text-decoration:none\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-img\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-anim\":false},[\"padding:0 6px 3px 0\",\"display:inline-block\",\"background:transparent\",\"-webkit-box-shadow:none\",\"box-shadow:none\",\"margin:0\"]],[false,{\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".epyt-gallery-subscribe a.epyt-gallery-subbutton amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:20px\",\"height:auto\",\"vertical-align:middle\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__\":false},[\"background-color:#000\",\"background-image:-webkit-linear-gradient(top,#000,#444)\",\"background-image:linear-gradient(to bottom,#000,#444)\",\"padding:25px\",\"height:auto\",\"text-align:left\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ *:not(#_#_#_#_#_#_#_#_)\":false},[\"color:#e3e3e3\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ a\":false},[\"text-decoration:underline\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:hover\":false},[\"display:inline-block\",\"padding:5px 10px\",\"border-radius:3px\",\"font-weight:normal\",\"border-width:0\",\"box-sizing:border-box\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:not(#_#_#_#_#_#_#_#_)\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__:hover:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#e62117\",\"color:#fff\",\"text-decoration:none\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-img\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-anim\":false},[\"padding:0 6px 3px 0\",\"display:inline-block\",\"background:transparent\",\"-webkit-box-shadow:none\",\"box-shadow:none\",\"margin-left:8px\"]],[false,{\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-img:not(#_#_#_#_#_#_#_#_)\":false,\"body div.__youtube_prefs__.__youtube_prefs_gdpr__ button.__youtube_prefs_gdpr__ amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:20px\",\"height:auto\",\"vertical-align:middle\"]],[false,{\"body .epyt-gallery-img-gdpr\":false},[\"background-color:#000\",\"background-image:-webkit-linear-gradient(top,#000,#444)\",\"background-image:linear-gradient(to bottom,#000,#444)\"]],[false,{\".epyt-facade\":false},[\"position:relative\",\"padding-bottom:56.25%\",\"height:0\",\"overflow:hidden\",\"max-width:100%\",\"-webkit-transition:.4s all\",\"-moz-transition:.4s all\",\"transition:.4s all\"]],[false,{\".epyt-facade:hover\":false},[\"-webkit-filter:brightness(90%)\",\"-moz-filter:brightness(90%)\",\"filter:brightness(90%)\"]],[false,{\".epyt-facade amp-img.epyt-facade-poster\":false,\".epyt-facade amp-anim.epyt-facade-poster\":false},[\"display:block\",\"margin:0\",\"max-width:100%\",\"width:100%\",\"position:absolute\",\"top:50%\",\"left:50%\",\"transform:translate(-50%,-50%)\",\"border:0\",\"height:auto\",\"cursor:pointer\"]],[false,{\".epyt-facade button.epyt-facade-play\":false},[\"position:absolute\",\"left:50%\",\"top:50%\",\"width:68px\",\"height:48px\",\"margin-left:-34px\",\"margin-top:-24px\",\"-webkit-transition:opacity .25s cubic-bezier(0,0,.2,1)\",\"transition:opacity .25s cubic-bezier(0,0,.2,1)\",\"cursor:pointer\"]],[false,{\".epyt-facade button.epyt-facade-play:not(#_#_#_#_#_#_#_#_)\":false},[\"background-color:transparent\",\"border-width:0\"]],[false,{\".epyt-facade button.epyt-facade-play svg\":false},[\"height:100%\",\"left:0\",\"position:absolute\",\"top:0\",\"width:100%\",\"pointer-events:none\"]],[false,{\".epyt-facade button.epyt-facade-play svg .ytp-large-play-button-bg\":false},[\"-webkit-transition:fill .1s cubic-bezier(.4,0,1,1),fill-opacity .1s cubic-bezier(.4,0,1,1)\",\"transition:fill .1s cubic-bezier(.4,0,1,1),fill-opacity .1s cubic-bezier(.4,0,1,1)\",\"fill:#212121\",\"fill-opacity:.8\"]],[false,{\".epyt-facade:hover button.epyt-facade-play svg .ytp-large-play-button-bg\":false},[\"-webkit-transition:fill .1s cubic-bezier(0,0,.2,1),fill-opacity .1s cubic-bezier(0,0,.2,1)\",\"transition:fill .1s cubic-bezier(0,0,.2,1),fill-opacity .1s cubic-bezier(0,0,.2,1)\",\"fill:#f00\",\"fill-opacity:1\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.epyt-facade\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\"]],[false,{\".wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.__youtube_prefs_gdpr__\":false},[\"position:relative\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper .epyt-is-override.__youtube_prefs_gdpr__\":false},[\"position:absolute\",\"top:0\",\"right:0\",\"bottom:0\",\"left:0\",\"overflow-y:auto\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper.epyt-is-override__wrapper:before\":false},[\"padding:0\"]],[false,{\".wp-embed-responsive .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper.epyt-is-override__wrapper .epyt-is-override.__youtube_prefs_gdpr__\":false},[\"position:relative\",\"top:unset\",\"right:unset\",\"bottom:unset\",\"left:unset\"]],[false,{\".ytvi-story-container\":false},[\"display:block\",\"max-width:100%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":81,\"final_size\":0,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"__EPYT__style-inline-css\",\"type\":\"text\\/css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"\\r\\n .epyt-gallery-thumb {\\r\\n width: 33.333%;\\r\\n }\\r\\n \",\"handle\":\"__EPYT__style\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"\\r\\n .epyt-gallery-thumb {\\r\\n width: 33.333%;\\r\\n }\\r\\n \",\"handle\":\"__EPYT__style\"}],\"priority\":70,\"hash\":\"c0787a0c009a93e8e21ea0b9ce09b54f\",\"parse_time\":0.0006740093231201172,\"shake_time\":2.86102294921875e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".epyt-gallery-thumb\":false},[\"width:33.333%\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":323,\"final_size\":64,\"element\":{\"name\":\"style\",\"attributes\":{\"type\":\"text\\/css\",\"id\":\"wp-custom-css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"theme.php\",\"line\":1824,\"function\":\"wp_custom_css_cb\",\"hook\":\"wp_head\",\"priority\":101}],\"priority\":60,\"hash\":\"ed93f9bffe93712a600c426300d64207\",\"parse_time\":0.002050161361694336,\"shake_time\":2.4080276489257812e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".tek-ai\":false},[\"height:auto\"]],[false,{\".tek-ai amp-img\":false,\".tek-ai amp-anim\":false},[\"max-height:570px\"]],[false,{\".tek-ai amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".tek-ai amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"height:auto\"]],[false,\"@media (max-width:992px){\"],[false,{\".tek-ai\":false},[\"height:auto\"]],[false,{\".tek-ai:not(#_#_#_#_#_#_#_)\":false},[\"text-align:center\"]],[false,\"}\"],[false,\"@media (min-width: 1400px){\"],[false,{\".tek-ai\":false},[\"height:auto\"]],[false,\"}\"],[true,{\".footer-2022__menu--list.footer_links:nth-child(4)\":true},[\"display:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":23614,\"final_size\":1439,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/landing-page.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"6bf24272588771b3d041d8d342dc232e\",\"parse_time\":0.2652928829193115,\"shake_time\":0.00035190582275390625,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"body\":true},[\"background-color:#fff\",\"color:#818181\",\"font-size:19px\",\"font-weight:500\",\"line-height:32px\"]],[true,{\"body:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:\\\"Roboto\\\",sans-serif\"]],[true,\"@media (max-width: 768px){\"],[true,{\"body\":true},[\"line-height:21px\"]],[true,\"}\"],[true,{\"amp-img\":true,\"amp-anim\":false},[\"max-width:100%\"]],[true,{\"h1\":true},[\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#fff\",\"font-size:40px\",\"line-height:38px\",\"font-weight:600\",\"margin-bottom:40px\"]],[true,{\"h2\":true},[\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#fff\",\"font-size:48px\",\"line-height:50px\",\"font-weight:600\",\"margin-bottom:30px\"]],[true,\"@media (max-width: 768px){\"],[true,{\"h2\":true},[\"font-size:35px\",\"line-height:36px\"]],[true,\"}\"],[true,{\"h3\":true},[\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#fff\",\"font-size:40px\",\"line-height:38px\",\"font-weight:600\",\"margin:40px 0\"]],[true,{\"header\":true},[\"top:0\",\"width:100%\",\"height:100px\",\"position:absolute\",\"background-color:transparent\",\"z-index:3\"]],[true,{\"header .container\":true,\"header .row\":true},[\"height:100%\"]],[true,{\"button\":true,\"[type=submit]\":true},[\"cursor:pointer\"]],[true,{\"a\":true,\"a:hover\":true,\"a:visited\":true},[\"color:inherit\",\"text-decoration:none\"]],[true,{\"footer\":true},[\"padding:80px 0\",\"background-color:#fff\",\"border-top:2px solid #0ad1e2\"]],[true,{\"footer small\":true},[\"font-size:21px\",\"line-height:28px\",\"display:block\",\"font-weight:500\",\"color:#8d8d8d\"]],[false,{\".footer__blue-bg\":false},[\"background-color:#00abeb\",\"color:#fff\"]],[false,{\".footer__side-text\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"color:#00abeb\",\"font-size:22px\",\"font-weight:600\"]],[false,{\".footer__side-text strong\":false},[\"color:#152649\"]],[false,{\".footer__ready\":false},[\"text-align:center\",\"margin-top:50px\",\"position:relative\"]],[false,{\".footer__ready:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"width:100%\",\"height:1px\",\"background-color:#cacaca\",\"left:0\",\"top:50%\",\"z-index:0\"]],[false,{\".footer__ready-button\":false},[\"padding:10px 20px\",\"color:#fff\",\"border:0\",\"background-color:#00abeb\",\"text-transform:uppercase\",\"font-weight:600\",\"display:inline-block\",\"font-size:13px\",\"position:relative\"]],[false,{\".footer__ready-button--short\":false},[\"margin-top:-15px\"]],[false,{\".footer__services\":false},[\"padding:40px 0\",\"text-transform:uppercase\",\"font-size:15px\",\"line-height:20px\"]],[false,{\".footer__services amp-img\":false,\".footer__services amp-anim\":false},[\"margin-left:30px\"]],[false,{\".footer__kubernetes\":false},[\"text-align:center\",\"margin-top:50px\",\"position:relative\"]],[false,{\".footer__kubernetes:before\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"width:100%\",\"height:1px\",\"background-color:#cacaca\",\"left:0\",\"top:calc(50% - 15px)\",\"z-index:0\"]],[false,{\".footer__kubernetes--short:before\":false},[\"top:calc(50% - 5px)\"]],[false,{\".footer__kubernetes-wrap\":false},[\"position:relative\"]],[true,\"@media (max-width: 768px){\"],[true,{\"footer\":true},[\"border-top:0\"]],[false,{\".footer__separate\":false},[\"display:block\"]],[false,{\".footer__services amp-img\":false,\".footer__services amp-anim\":false},[\"margin-left:0\",\"max-width:33%\",\"margin-top:10px\",\"height:50px\"]],[false,{\".footer__call amp-img\":false,\".footer__call amp-anim\":false},[\"max-width:70px\",\"margin-top:50px\",\"margin-bottom:20px\"]],[true,\"}\"],[false,\"@media (max-width: 600px){\"],[false,{\".footer__side-text\":false},[\"padding:0 20%\"]],[false,{\"footer .logo amp-img\":false,\"footer .logo amp-anim\":false},[\"margin-bottom:50px\"]],[false,\"}\"],[false,{\".top-banner\":false},[\"width:100%\",\"height:620px\",\"background-color:#2a2929\",\"background-repeat:no-repeat\",\"background-position:center\",\"background-size:cover\",\"position:relative\",\"overflow:hidden\"]],[false,\"@media (max-width: 768px){\"],[false,{\".top-banner\":false},[\"height:auto\",\"padding-top:120px\"]],[false,\"}\"],[false,{\".top-banner .container\":false,\".top-banner .row\":false},[\"height:100%\",\"position:relative\",\"z-index:1\"]],[false,{\".top-banner__image\":false},[\"margin-top:auto\"]],[false,\"@media (max-width: 768px){\"],[false,{\".top-banner__image\":false},[\"z-index:-1\"]],[false,\"}\"],[false,{\".top-banner__item\":false},[\"color:#fff\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:18px\",\"line-height:18px\",\"margin-top:20px\",\"margin-left:0\",\"position:relative\",\"font-weight:700\"]],[false,{\".top-banner__green-box\":false},[\"background-color:rgba(20,178,237,.2)\",\"padding:20px\",\"color:#fff\",\"border-radius:10px\"]],[false,{\".top-text\":false},[\"font-size:25px\",\"line-height:25px\",\"margin-bottom:20px\"]],[false,{\".form-top\":false},[\"border:0\",\"border-bottom:1px solid #fff\",\"background:transparent\",\"height:40px\",\"margin-bottom:25px\",\"padding:0\",\"width:100%\",\"font-size:13px\",\"color:#fff\"]],[false,{\".top-banner__green-box .wpcf7-not-valid-tip\":false},[\"font-size:10px\",\"line-height:15px\",\"margin-top:-20px\",\"margin-bottom:5px\"]],[false,{\".top-banner__green-box .wpcf7-response-output\":false},[\"font-size:12px\",\"line-height:15px\"]],[false,{\".form-textarea\":false},[\"border:1px solid #fff\",\"background:transparent\",\"margin-bottom:10px\",\"padding:0 10px\",\"width:100%\",\"font-size:13px\",\"color:#fff\",\"height:90px\",\"position:relative\",\"border-radius:5px\",\"margin-top:10px\"]],[false,{\".top-banner__green-box .message:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"width:32px\",\"height:40px\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/04\\/mrdata4.png\\\")\",\"top:-20px\",\"right:-15px\"]],[false,{\".form-checkbox\":false},[\"display:flex\",\"flex-wrap:wrap\",\"justify-content:space-between\",\"margin-bottom:20px\",\"margin-top:10px\"]],[false,{\".form-checkbox .wpcf7-list-item\":false},[\"margin:0\",\"margin:0\",\"width:30%\",\"border:1px solid #fff\",\"padding:10px 5px\",\"font-size:12px\",\"line-height:12px\",\"text-align:center\",\"font-weight:400\"]],[false,{\".form-checkbox .wpcf7-list-item input[type=radio]\":false},[\"display:none\"]],[false,{\".form-checkbox .wpcf7-list-item.checked\":false},[\"background-color:#eee\",\"color:#09aeec\",\"font-weight:800\"]],[false,{\".form-checkbox .wpcf7-list-item label\":false},[\"margin-bottom:0\",\"display:flex\",\"align-items:center\",\"height:100%\",\"justify-content:center\"]],[false,{\".top-btn\":false},[\"padding:10px\",\"color:#fff\",\"border:0\",\"background-color:#09aeec\",\"text-transform:uppercase\",\"font-weight:700\",\"float:left\",\"width:100%\"]],[false,{\".top-banner--cl h1\":false},[\"color:#152649\"]],[false,{\".top-banner--cl:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:100%\",\"height:100%\",\"background:#fff\",\"background:linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,1) 90%,rgba(255,255,255,1) 100%)\",\"top:0\",\"left:0\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".top-banner--cl:after\":false},[\"background:linear-gradient(270deg,rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%)\"]],[false,\"}\"],[false,\"@media (max-width: 700px){\"],[false,{\".top-banner--cl:after\":false},[\"background:linear-gradient(0deg,rgba(255,255,255,0) 0%,rgba(255,255,255,1) 90%,rgba(255,255,255,1) 100%)\"]],[false,\"}\"],[false,{\".top-banner--cl .top-banner__item\":false},[\"color:#03aceb\"]],[false,{\".top-banner--cl .top-banner__green-box\":false},[\"background-color:rgba(9,174,236,.6)\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".top-banner--cl .top-banner__green-box\":false},[\"margin-bottom:60px\"]],[false,\"}\"],[false,{\"#calendly-button-top\":false},[\"position:absolute\",\"bottom:20px\",\"z-index:1\",\"left:50%\",\"transform:translate(-50%,0)\",\"width:70%\"]],[false,{\"#calendly-button-top.top-mid\":false},[\"top:-57px\"]],[false,{\".top-btn\":false},[\"padding:15px 30px\"]],[false,{\".trusted-by\":false},[\"width:100%\",\"height:80px\",\"background-color:#2a2929\"]],[false,{\".trusted-by .container\":false,\".trusted-by .row\":false},[\"height:100%\"]],[false,{\".trusted-by amp-img\":false,\".trusted-by amp-anim\":false},[\"height:auto\"]],[false,{\".trusted-by amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".trusted-by amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:auto\"]],[false,{\".trusted-by__wrap-guide\":false},[\"width:150px\",\"height:80px\",\"float:left\",\"display:flex\",\"justify-content:center\",\"align-items:center\"]],[false,{\".trusted-by .trusted-guide\":false},[\"height:auto\"]],[false,{\".trusted-by .trusted-guide:not(#_#_#_#_#_#_#_)\":false},[\"width:140px\"]],[false,{\".trusted-by__gallery\":false},[\"width:calc(100% - 200px)\",\"margin-left:50px\",\"float:right\"]],[false,{\".trusted-by__gallery:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,{\".trusted-by__gallery .item\":false},[\"display:flex\",\"justify-content:center\",\"align-items:center\",\"height:80px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".trusted-by__wrap-guide\":false},[\"width:100px\"]],[false,{\".trusted-by .trusted-guide:not(#_#_#_#_#_#_#_)\":false},[\"width:90px\"]],[false,{\".trusted-by__gallery\":false},[\"width:calc(100% - 130px)\",\"margin-left:30px\"]],[false,{\".trusted-by__gallery:not(#_#_#_#_#_#_#_)\":false},[\"display:inline-block\"]],[false,\"}\"],[false,{\".steps\":false},[\"width:100%\",\"position:relative\",\"padding:150px 0\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/04\\/bd-1.png\\\")\",\"background-repeat:no-repeat\",\"background-position:center\",\"background-size:cover\"]],[false,\"@media (max-width: 768px){\"],[false,{\".steps\":false},[\"padding:80px 0\"]],[false,\"}\"],[false,{\".steps h2\":false},[\"color:#21283b\"]],[false,{\".steps strong\":false},[\"color:#21283b\",\"font-weight:600\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".steps amp-img\":false,\".steps amp-anim\":false},[\"margin-bottom:70px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".steps strong\":false},[\"display:block\",\"margin-top:20px\"]],[false,\"}\"],[false,{\".phrase\":false},[\"width:100%\",\"position:relative\",\"font-size:22px\",\"background-color:#151515\"]],[false,{\".phrase--mid\":false},[\"padding:0px 0 260px\"]],[false,{\".trusted--mid\":false},[\"margin-top:50px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".phrase\":false},[\"padding:0\"]],[false,\"}\"],[false,{\".phrase strong\":false},[\"font-weight:600\",\"color:#09aeec\"]],[false,{\".phrase__btn\":false},[\"padding:15px 50px\",\"color:#fff\",\"border:0\",\"background-color:#09aeec\",\"margin-top:30px\",\"text-transform:uppercase\",\"font-weight:600\"]],[false,{\".phrase__wrap-content\":false},[\"position:absolute\",\"bottom:100px\",\"width:100%\",\"color:#fff\"]],[false,{\".phrase__wrap-content--kindle:not(#_#_#_#_#_#_#_)\":false},[\"bottom:200px\"]],[false,{\".phrase__wrap-content--mid:not(#_#_#_#_#_#_#_)\":false},[\"bottom:200px\"]],[false,{\".phrase__wrap-content p\":false},[\"max-width:950px\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".phrase__wrap-content amp-img\":false,\".phrase__wrap-content amp-anim\":false},[\"float:left\",\"margin-right:40px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".phrase__wrap-content amp-img\":false,\".phrase__wrap-content amp-anim\":false},[\"float:none\",\"display:block\",\"margin:0 auto 40px\"]],[false,\"}\"],[false,{\".phrase__wrap-content a\":false},[\"margin:0 auto\",\"display:block\",\"text-align:center\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".phrase\":false},[\"line-height:25px\",\"font-weight:400\"]],[false,{\".phrase__wrap-bg\":false},[\"background-color:#151515\",\"overflow-x:hidden\"]],[false,{\".phrase__wrap-bg amp-img\":false,\".phrase__wrap-bg amp-anim\":false},[\"height:700px\",\"width:auto\",\"max-width:none\",\"margin:0 -433px 200px\"]],[false,{\".devops-styles .phrase__wrap-bg amp-img\":false,\".devops-styles .phrase__wrap-bg amp-anim\":false},[\"margin:0 -433px 0px\"]],[false,{\".phrase__wrap-content:not(#_#_#_#_#_#_#_)\":false},[\"bottom:50px\"]],[false,{\".phrase__wrap-content--kindle:not(#_#_#_#_#_#_#_)\":false},[\"bottom:200px\"]],[false,{\".devops-styles .phrase__wrap-content:not(#_#_#_#_#_#_#_)\":false},[\"bottom:30px\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".phrase__wrap-content--kindle:not(#_#_#_#_#_#_#_)\":false},[\"bottom:50px\"]],[false,\"}\"],[false,{\".time-money\":false},[\"width:100%\",\"position:relative\",\"padding:100px 0\",\"background-color:#fff\",\"color:#8d8d8d\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/04\\/bd-2.png\\\")\",\"background-repeat:no-repeat\",\"background-position:bottom center\",\"background-size:cover\"]],[false,{\".time-money--mid\":false},[\"color:#152649\"]],[false,{\".time-money--short\":false},[\"padding:100px 0 250px\"]],[false,{\".time-money--short4\":false},[\"padding:100px 0 170px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".time-money--short4\":false},[\"padding:100px 0 50px\"]],[false,\"}\"],[false,{\".time-money h2\":false},[\"color:#152649\",\"margin-bottom:50px\"]],[false,{\".time-money strong\":false},[\"color:#09aeec\",\"font-weight:600\"]],[false,{\".time-money--mid p\":false},[\"font-weight:400\"]],[false,{\".time-money--mid p strong\":false},[\"color:inherit\"]],[false,{\".time-money__image\":false},[\"margin-bottom:50px\"]],[false,{\".time-money .trusted-by\":false},[\"margin-top:50px\",\"border-radius:10px\"]],[false,\"@media (max-width: 600px){\"],[false,{\".time-money__image\":false},[\"margin-bottom:0\"]],[false,\"}\"],[false,{\".time-money__light\":false},[\"font-weight:300\"]],[false,{\".time-money__btn\":false},[\"padding:15px 50px\",\"color:#fff\",\"border:0\",\"background-color:#09aeec\",\"margin-top:30px\",\"text-transform:uppercase\",\"font-weight:600\"]],[false,{\".time-money--short p\":false},[\"max-width:950px\",\"margin-left:auto\",\"margin-right:auto\"]],[false,{\".time-money--short p amp-img\":false,\".time-money--short p amp-anim\":false},[\"float:left\",\"margin-right:40px\",\"margin-bottom:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".time-money--short p amp-img\":false,\".time-money--short p amp-anim\":false},[\"float:none\",\"display:block\",\"margin:0 auto 40px\"]],[false,\"}\"],[false,{\".time-money--short a\":false},[\"margin:0 auto\",\"display:block\",\"text-align:center\"]],[false,{\".graphics-gallery .owl-dots\":false},[\"display:flex\",\"justify-content:center\",\"position:relative\",\"margin:30px auto\",\"flex-direction:row\"]],[false,{\".graphics-gallery .owl-dot\":false},[\"border:0\",\"border-radius:50%\",\"display:block\",\"width:15px\",\"height:15px\",\"margin:0 5px\"]],[false,{\".graphics-gallery .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#e5e5e5\"]],[false,{\".graphics-gallery .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#152649\"]],[false,{\".kubernetes\":false},[\"width:100%\",\"position:relative\",\"padding:100px 0 80px\",\"background-color:#ececec\",\"color:#8d8d8d\",\"font-weight:600\"]],[false,{\".kubernetes--long\":false},[\"padding:100px 0 180px\"]],[false,{\".kubernetes h2\":false},[\"color:#09aeec\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes\":false},[\"padding:50px 0\"]],[false,{\".kubernetes h2\":false},[\"border:1px solid #ccc\",\"padding:20px\",\"font-size:30px\",\"line-height:32px\",\"margin-top:30px\"]],[false,\"}\"],[false,{\".kubernetes strong\":false},[\"color:#8d8d8d\",\"margin-bottom:10px\",\"font-size:21px\",\"display:block\"]],[false,{\".kubernetes__item\":false},[\"margin-bottom:10px\",\"font-size:16px\"]],[false,{\".kubernetes__item i\":false},[\"color:#152649\",\"margin-right:10px\"]],[false,{\".kubernetes__contour\":false},[\"background-color:#09aeec\",\"color:#fff\",\"font-size:16px\",\"display:inline\",\"padding:3px 10px\",\"font-weight:500\"]],[false,{\".kubernetes__contour strong\":false},[\"color:#fff\",\"font-size:16px\",\"display:inline\",\"margin-bottom:0\",\"font-weight:600\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__contour\":false},[\"display:block\",\"text-align:center\",\"margin-top:20px\",\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".city-phrase\":false},[\"width:100%\",\"position:relative\",\"padding:200px 0 300px\",\"background-color:#151515\"]],[false,{\".city-phrase--mid\":false},[\"padding:0px 0 300px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".city-phrase\":false},[\"padding:50px 0\"]],[false,\"}\"],[false,{\".clients\":false},[\"width:100%\",\"position:relative\",\"background-color:#f1f1f1\",\"padding-bottom:40px\",\"border-top:2px solid #0ad1e2\"]],[false,{\".clients__wrap\":false},[\"margin-top:-150px\",\"background-color:#fff\",\"padding:60px 60px 80px\",\"border-radius:10px\",\"-webkit-box-shadow:10px 10px 20px 0 rgba(12,39,41,.5)\",\"box-shadow:10px 10px 20px 0 rgba(12,39,41,.5)\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".clients\":false},[\"background-color:#fff\",\"border-top:0\",\"-webkit-box-shadow:10px 10px 20px 0 rgba(12,39,41,.5)\",\"box-shadow:10px 10px 20px 0 rgba(12,39,41,.5)\",\"z-index:1\",\"padding:50px 0 70px\",\"overflow-x:hidden\"]],[false,{\".clients__wrap\":false},[\"margin-top:0\",\"padding:0\",\"-webkit-box-shadow:none\",\"box-shadow:none\"]],[false,{\".clients .container-fluid\":false},[\"padding:0\"]],[false,\"}\"],[false,{\".clients__wrap h2\":false},[\"color:#152649\",\"margin-bottom:0\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".clients__wrap h2\":false},[\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".clients__slider\":false,\".clients__slider2\":false},[\"padding-right:50px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".clients__slider\":false,\".clients__slider2\":false},[\"padding-right:0\"]],[false,\"}\"],[false,{\".clients__slider .owl-nav\":false},[\"position:absolute\",\"width:calc(100% - 50px)\",\"text-align:center\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"margin-top:20px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".clients__slider .owl-nav\":false},[\"width:80px\",\"justify-content:flex-start\",\"z-index:1\"]],[false,\"}\"],[false,{\".clients__slider .owl-prev\":false,\".clients__slider .owl-next\":false},[\"width:30px\",\"height:30px\",\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[false,{\".clients__slider .owl-prev:not(#_#_#_#_#_#_#_)\":false,\".clients__slider .owl-next:not(#_#_#_#_#_#_#_)\":false},[\"color:#152649\",\"border:2px solid #152649\",\"font-size:15px\",\"line-height:15px\"]],[false,{\".clients__slider .owl-prev\":false},[\"margin-right:10px\"]],[false,{\".clients__slider .owl-dots\":false},[\"position:absolute\",\"right:15px\",\"display:flex\",\"margin:auto\",\"height:80px\",\"bottom:calc(50% - 40px)\",\"flex-direction:column\",\"justify-content:center\"]],[false,\"@media (max-width: 768px){\"],[false,{\".clients__slider .owl-dots\":false},[\"justify-content:flex-end\"]],[false,\"}\"],[false,{\".clients__slider2 .owl-dots\":false},[\"position:absolute\",\"right:15px\",\"display:flex\",\"display:block\",\"margin:auto\",\"height:80px\",\"bottom:calc(50% - 15px)\",\"flex-direction:column\",\"justify-content:center\"]],[false,{\".clients__slider .owl-dot\":false,\".clients__slider2 .owl-dot\":false},[\"width:10px\",\"height:10px\",\"border:0\",\"border-radius:50%\",\"display:block\",\"margin:5px 0\"]],[false,{\".clients__slider .owl-dot:not(#_#_#_#_#_#_#_)\":false,\".clients__slider2 .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#e5e5e5\"]],[false,{\".clients__slider .owl-dot.active:not(#_#_#_#_#_#_#_)\":false,\".clients__slider2 .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#00abeb\"]],[false,\"@media (max-width: 768px){\"],[false,{\".clients__slider .owl-dots\":false,\".clients__slider2 .owl-dots\":false},[\"position:relative\",\"margin-top:30px\",\"flex-direction:row\",\"right:0\",\"height:auto\",\"display:flex\"]],[false,{\".clients__slider .owl-dot\":false,\".clients__slider2 .owl-dot\":false},[\"width:15px\",\"height:15px\",\"margin:0 5px\"]],[false,{\".clients__slider .owl-dot.active:not(#_#_#_#_#_#_#_)\":false,\".clients__slider2 .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#152649\"]],[false,\"}\"],[false,{\".clients__slider .owl-stage\":false},[\"display:flex\",\"align-items:stretch\"]],[false,{\".clients__slider .owl-item\":false},[\"display:flex\"]],[false,{\".clients__text\":false},[\"overflow:hidden\"]],[false,{\".clients__name\":false},[\"overflow:hidden\"]],[false,{\".clients__item\":false},[\"border:2px solid #00abeb\",\"border-radius:5px\",\"padding:40px\",\"color:#000\",\"font-size:16px\",\"line-height:18px\",\"display:flex\",\"flex-direction:column\",\"justify-content:space-between\",\"margin-left:10px\"]],[false,{\".clients__by\":false},[\"display:flex\",\"align-items:center\"]],[false,{\".clients__picture\":false},[\"width:70px\",\"height:70px\",\"min-width:70px\",\"border-radius:50%\",\"border:5px solid #00abeb\",\"margin-right:20px\",\"justify-content:center\",\"align-items:center\",\"display:flex\",\"object-fit:cover\",\"overflow:hidden\"]],[false,{\".clients__picture amp-img\":false,\".clients__picture amp-anim\":false},[\"object-fit:contain\",\"filter:grayscale(1)\"]],[false,{\".clients__name\":false},[\"font-family:\\\"Rajdhani\\\",sans-serif\",\"color:#5b5b5b\",\"font-weight:600\",\"text-transform:uppercase\",\"line-height:20px\"]],[false,{\".clients__name strong\":false},[\"color:#00abeb\"]],[false,{\".contact\":false},[\"width:100%\",\"position:relative\",\"padding:80px 0 100px\",\"background-color:#f1f1f1\",\"color:#21283b\",\"font-size:13px\",\"font-weight:700\"]],[false,\"@media (max-width: 768px){\"],[false,{\".contact\":false},[\"padding:50px 0 30px\",\"border-bottom:1px solid #c5c8cf\"]],[false,\"}\"],[false,{\".contact h3\":false},[\"color:#21283b\",\"margin-top:0\",\"font-weight:800\"]],[false,{\".devops-styles .contact h3\":false},[\"text-transform:none\"]],[false,{\".contact p\":false},[\"font-family:\\\"Raleway\\\",sans-serif\",\"margin-bottom:40px\",\"line-height:20px\",\"color:#636363\"]],[false,{\".contact strong\":false},[\"color:#21283b\",\"font-weight:900\"]],[false,{\".devops-styles .contact strong\":false},[\"font-size:18px\",\"display:block\"]],[true,{\".contact__ceo\":true},[\"margin-bottom:80px\"]],[true,\"@media (max-width: 1000px){\"],[true,{\".contact__ceo\":true},[\"float:left\",\"width:40%\",\"margin-bottom:0\",\"margin-right:20px\"]],[false,{\".contact p\":false},[\"margin-bottom:10px\",\"line-height:16px\"]],[false,{\".contact__rotate\":false},[\"width:40%\",\"margin-bottom:0\",\"margin-right:20px\",\"margin-top:70px\"]],[false,{\".contact__rotate .item amp-img\":false,\".contact__rotate .item amp-anim\":false},[\"margin-bottom:20px\"]],[false,{\".devops-styles .contact strong\":false},[\"margin-bottom:30px\"]],[true,\"}\"],[false,{\".contact__blue:not(#_#_#_#_#_#_#_)\":false},[\"color:#00abeb\"]],[true,{\"form\":true},[\"font-family:\\\"Raleway\\\",sans-serif\"]],[false,{\"#wpcf7-f2555-o2 strong\":false},[\"font-size:18px\",\"display:block\",\"margin-bottom:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\"#wpcf7-f2555-o2 .no-margin\":false},[\"margin-top:30px\",\"margin-bottom:30px\",\"padding-bottom:50px\",\"border-bottom:1px solid #c5c8cf\"]],[false,\"}\"],[false,{\".form-contact\":false},[\"width:100%\",\"border:0\",\"border-bottom:1px solid #ddd\",\"background-color:transparent\",\"color:#959595\",\"font-size:15px\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".form-contact .col-md-4\":false,\".devops-styles .contact .col-md-3\":false},[\"margin-bottom:20px\"]],[false,{\"input.form-contact\":false},[\"height:40px\"]],[false,{\"textarea.form-contact\":false},[\"height:115px\",\"line-height:20px\"]],[false,{\".form-btn\":false},[\"color:#21283b\",\"border:1px solid #21283b\",\"padding:10px 30px\",\"text-transform:uppercase\",\"font-size:15px\",\"font-weight:700\",\"border-radius:5px\"]],[false,{\".devops-styles .form-btn\":false},[\"width:100%\"]],[true,{\"::-webkit-input-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:#959595\"]],[true,{\":-moz-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:#959595\"]],[true,{\"::-moz-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:#959595\"]],[true,{\":-ms-input-placeholder:not(#_#_#_#_#_#_)\":true},[\"color:#959595\"]],[false,{\".top-banner ::-webkit-input-placeholder:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".top-banner :-moz-placeholder:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".top-banner ::-moz-placeholder:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".top-banner :-ms-input-placeholder:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".ajax-loader:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":32514,\"final_size\":862,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/new-styles.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"027619c7f9b61a6c4dcfcb8a6160ac60\",\"parse_time\":0.4198160171508789,\"shake_time\":0.000392913818359375,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\"body\":true},[\"background-color:#f7f7f7\"]],[true,{\"body:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:\\\"Roboto\\\",sans-serif\"]],[false,{\".no-overflow\":false},[\"overflow:hidden\"]],[true,{\"h1\":true},[\"font-family:\\\"Raleway\\\",sans-serif\"]],[true,{\"h2\":true},[\"font-size:32px\",\"line-height:32px\",\"font-family:\\\"Rajdhani\\\",sans-serif\",\"font-weight:400\",\"color:#182647\",\"margin-bottom:20px\",\"padding-bottom:20px\"]],[true,{\"h2 strong\":true},[\"color:#182647\",\"font-weight:700\"]],[true,{\"h2:after\":true},[\"width:470px\",\"max-width:100%\",\"height:1px\",\"left:0\",\"bottom:0\",\"content:\\\"\\\"\",\"background-color:#182647\",\"position:absolute\",\"box-shadow:3px 3px 12px rgba(24,38,71,.4)\"]],[false,{\"h2.bolder\":false},[\"text-transform:uppercase\",\"font-weight:700\"]],[true,{\"h3\":true},[\"font-size:40px\",\"line-height:40px\",\"text-transform:uppercase\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:700\",\"color:#182647\"]],[true,\"@media (max-width: 1024px){\"],[true,{\"h3\":true},[\"font-size:30px\",\"line-height:30px\"]],[true,\"}\"],[false,{\".container-fluid\":false},[\"max-width:unset\"]],[false,{\".container-fluid:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".new-home__top\":false},[\"width:100%\",\"height:600px\",\"background-color:#121d3d\",\"margin-top:100px\",\"color:#182647\",\"font-size:24px\",\"line-height:30px\"]],[false,{\".new-home__top:not(#_#_#_#_#_#_#_)\":false},[\"opacity:0\"]],[false,{\".new-home__top .owl-nav\":false},[\"position:absolute\",\"width:calc(100%)\",\"text-align:center\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"margin-top:-50px\"]],[false,{\".new-home__top .owl-prev\":false,\".new-home__top .owl-next\":false},[\"width:30px\",\"height:30px\",\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[false,{\".new-home__top .owl-prev:not(#_#_#_#_#_#_#_)\":false,\".new-home__top .owl-next:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\",\"border:2px solid #fff\",\"font-size:15px\",\"line-height:15px\"]],[false,{\".new-home__top .owl-prev\":false},[\"margin-right:10px\"]],[false,{\".new-home__top h1\":false},[\"font-size:90px\",\"line-height:90px\",\"color:#fff\",\"font-weight:700\",\"margin:0 0 15px\"]],[false,{\".new-home__top .color-point\":false},[\"color:#24ffff\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__top h1\":false},[\"font-size:45px\",\"line-height:45px\"]],[false,\"}\"],[false,{\".new-home__top h2\":false},[\"line-height:23px\",\"color:#24c1ff\",\"margin:0 0 20px\",\"text-transform:uppercase\",\"border:1px solid #24c1ff\",\"padding:8px 15px\",\"display:inline-block\"]],[false,{\".new-home__top h2:not(#_#_#_#_#_#_#_#_)\":false},[\"font-family:\\\"Rajdhani\\\",sans-serif\",\"font-size:20px\",\"font-weight:500\"]],[false,{\".new-home__top h2:after\":false},[\"display:none\"]],[false,{\".new-home__top h3\":false},[\"color:#24c1ff\",\"font-size:23px\",\"line-height:28px\",\"text-transform:inherit\",\"margin-bottom:20px\"]],[false,{\".new-home__top p\":false},[\"color:#fff\",\"font-size:17px\",\"line-height:23px\",\"font-weight:300\"]],[false,{\".new-home__top p a\":false},[\"text-decoration:underline\"]],[false,{\".new-home__top-button\":false},[\"width:250px\",\"height:45px\",\"border:0\",\"background-color:#fff\",\"color:#000\",\"text-transform:uppercase\",\"font-size:15px\",\"font-weight:600\",\"margin-top:20px\"]],[false,{\".new-home__top .owl-dots\":false},[\"position:absolute\",\"bottom:100px\",\"right:15px\"]],[false,{\".new-home__top .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".new-home__top .owl-dot\":false},[\"width:10px\",\"height:10px\",\"border:0\",\"border-radius:50%\",\"display:block\",\"margin:8px 0\"]],[false,{\".new-home__top .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#dbdbde\"]],[false,{\".new-home__top .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#adef7f\"]],[false,{\".new-home__item\":false},[\"background-position:right center\",\"background-size:auto 100%\",\"background-repeat:no-repeat\",\"height:600px\",\"background-color:#121d3d\",\"max-width:1990px\",\"margin:0 auto\",\"position:relative\"]],[false,\"@media (max-width: 1200px){\"],[false,{\".new-home__item\":false},[\"background-size:auto 70%\"]],[false,\"}\"],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__item:not(#_#_#_#_#_#_#_)\":false},[\"background-image:unset\"]],[false,\"}\"],[false,\"@media (max-width: 1000px) and (orientation: landscape){\"],[false,{\".new-home__item:not(#_#_#_#_#_#_#_)\":false},[\"background-image:unset\"]],[false,\"}\"],[false,{\".new-home__top .dot\":false},[\"display:inline-block\",\"color:#b7f254\",\"animation:blinker 1s linear infinite\"]],[false,{\".new-home__video\":false},[\"max-width:55%\",\"height:100%\",\"position:absolute\",\"right:0\",\"top:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__video\":false},[\"display:none\"]],[false,\"}\"],[false,\"@media (max-width: 1200px){\"],[false,{\".new-home__video\":false},[\"max-width:50%\"]],[false,\"}\"],[false,\"@media (max-width: 1000px) and (orientation: landscape){\"],[false,{\".new-home__video\":false},[\"display:none\"]],[false,\"}\"],[false,{\".new-home__item .container\":false,\".new-home__item .row\":false},[\"height:100%\"]],[false,{\".new-home__features\":false},[\"width:100%\",\"background-color:#f7f7f7\",\"padding-top:50px\",\"padding-bottom:80px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__features-item\":false},[\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".new-home__post-item\":false},[\"width:100%\",\"height:250px\",\"background-color:#182647\",\"color:#fff\",\"font-size:20px\",\"line-height:25px\",\"padding:25px\"]],[false,{\".new-home__post-button\":false},[\"width:130px\",\"height:40px\",\"border:0\",\"background-color:#182647\",\"color:#fff\",\"text-transform:uppercase\",\"font-size:14px\",\"margin-top:25px\"]],[false,{\".new-home__features-item:nth-child(even)\":false},[\"display:flex\",\"flex-direction:column\"]],[false,{\".new-home__features-item:nth-child(even) .new-home__post-item\":false},[\"background-color:#adef7f\",\"color:#182647\",\"order:2\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__features-item:nth-child(even) .new-home__post-item\":false},[\"order:1\"]],[false,\"}\"],[false,{\".new-home__features-item:nth-child(even) .new-home__post-button\":false},[\"order:1\",\"margin:0 0 25px auto\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__features-item:nth-child(even) .new-home__post-button\":false},[\"order:2\",\"margin:25px 0 0 0\"]],[false,\"}\"],[false,{\".new-home__process\":false},[\"width:100%\",\"background-color:#e6e6e6\",\"padding-bottom:50px\",\"font-size:24px\",\"line-height:30px\",\"color:#182647\"]],[false,{\".new-home__service\":false},[\"padding-bottom:80px\",\"background-color:#f7f7f7\",\"position:relative\",\"overflow:hidden\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".new-home__service\":false},[\"padding-bottom:0\"]],[false,\"}\"],[false,{\".new-home__service h2\":false},[\"color:#6a4896\",\"text-transform:uppercase\",\"font-weight:700\"]],[false,{\".new-home__service-text\":false},[\"background-color:#dbdbde\",\"min-height:470px\",\"padding:80px 15% 80px 15px\",\"font-size:24px\",\"line-height:30px\"]],[false,{\".new-home__service:nth-child(even) .new-home__service-text:before\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:50vw\",\"height:100%\",\"top:0\",\"left:-50vw\",\"background-color:#dbdbde\",\"z-index:-1\"]],[false,{\".new-home__service:nth-child(odd) .new-home__service-text\":false},[\"padding:80px 15px 80px 15%\"]],[false,{\".new-home__service:nth-child(odd) .new-home__service-text:after\":false},[\"position:absolute\",\"content:\\\"\\\"\",\"width:50vw\",\"height:100%\",\"top:0\",\"right:-50vw\",\"background-color:#dbdbde\",\"z-index:-1\"]],[false,\"@media (max-width: 1400px){\"],[false,{\".new-home__service-text\":false},[\"min-height:430px\",\"padding:70px 15%\"]],[false,\"}\"],[false,\"@media (max-width: 1024px){\"],[false,{\".new-home__service-text:not(#_#_#_#_#_#_#_)\":false},[\"padding:70px 10%\"]],[false,{\".new-home__service:nth-child(odd) .new-home__service-text\":false},[\"background-color:#f7f7f7\"]],[false,\"}\"],[false,{\".new-home__service-button\":false},[\"width:130px\",\"height:40px\",\"border:0\",\"background-color:#182647\",\"color:#fff\",\"text-transform:uppercase\",\"font-size:14px\",\"margin-top:100px\"]],[false,{\".new-home__service-image\":false},[\"padding:40px 0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__service-image\":false},[\"display:none\"]],[false,\"}\"],[false,{\".new-home__service-image amp-img\":false,\".new-home__service-image amp-anim\":false},[\"background-color:#fff\",\"max-height:390px\",\"margin-left:-25%\",\"box-shadow:4px 4px 8px rgba(173,239,127,.5)\"]],[false,{\".new-home__service:nth-child(odd) .new-home__service-image amp-img\":false,\".new-home__service:nth-child(odd) .new-home__service-image amp-anim\":false},[\"margin-right:-25%\",\"margin-left:auto\",\"box-shadow:-4px 4px 8px rgba(173,239,127,.5)\"]],[false,{\".new-home__case-study\":false},[\"background-color:#c4c4c4\"]],[false,{\".new-home__case-text\":false},[\"padding:80px 15px\",\"font-size:24px\",\"line-height:30px\"]],[false,{\".new-home__case-text .preh\":false},[\"font-size:32px\",\"line-height:37px\",\"color:#6a4896\",\"text-transform:uppercase\",\"margin-bottom:15px\",\"display:block\"]],[false,{\".new-home__case-text h2\":false},[\"font-size:40px\",\"line-height:47px\"]],[false,{\".new-home__case-button\":false},[\"width:130px\",\"height:40px\",\"border:0\",\"background-color:#182647\",\"color:#fff\",\"text-transform:uppercase\",\"font-size:14px\",\"margin-top:25px\"]],[false,{\".new-home__case-img\":false},[\"height:410px\",\"margin:30px 0\"]],[false,{\".new-home__clients\":false},[\"width:100%\",\"background-color:#f7f7f7\",\"padding-top:80px\",\"padding-bottom:40px\"]],[false,{\".new-home__clients .owl-item\":false},[\"box-shadow:4px 7px 7px rgba(196,196,196,.6)\",\"margin-bottom:30px\"]],[false,{\".new-home__clients .item\":false},[\"background-color:#fff\",\"display:flex\",\"justify-content:center\",\"align-items:center\",\"height:145px\"]],[false,{\".new-home__clients .item amp-img\":false,\".new-home__clients .item amp-anim\":false},[\"width:auto\",\"max-width:90%\",\"max-height:90%\"]],[false,{\".new-home__clients .owl-dots\":false},[\"text-align:center\"]],[false,{\".new-home__clients .owl-dot\":false},[\"width:10px\",\"height:10px\",\"border-radius:50%\",\"margin:0 4px\"]],[false,{\".new-home__clients .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#bbb\"]],[false,{\".new-home__clients .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#5b5b5b\"]],[false,{\".new-home__contact\":false},[\"width:100%\",\"background-color:#f7f7f7\",\"padding-top:20px\"]],[false,{\".new-home__contact--intern\":false},[\"background-color:#182647\",\"padding-top:0px\"]],[false,{\".new-home__contact--intern .wpcf7-response-output\":false},[\"color:#fff\"]],[false,{\".new-home__contact-form\":false},[\"padding:20px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".new-home__contact-form\":false},[\"margin-right:15px\",\"max-width:100%\"]],[false,\"}\"],[false,{\".new-home__contact-form .row\":false},[\"margin-left:-10px\",\"margin-right:-10px\"]],[false,{\".new-home__contact-form .col-lg-6\":false,\".new-home__contact-form .col-12\":false},[\"padding-right:10px\",\"padding-left:10px\"]],[false,{\".new-home__input\":false},[\"height:40px\",\"width:100%\",\"background:#f7f7f7\",\"color:#182647\",\"line-height:40px\",\"border:0\",\"margin-bottom:20px\",\"border-radius:0\",\"padding:0 10px\"]],[false,{\".new-home__textarea\":false},[\"height:145px\",\"width:100%\",\"background:#f7f7f7\",\"color:#182647\",\"border:0\",\"margin-bottom:15px\",\"border-radius:0\",\"padding:5px 10px\"]],[false,{\".new-home__input-btn\":false},[\"width:80px\",\"height:40px\",\"background-color:#f7f7f7\",\"color:#182647\",\"border:0\",\"text-transform:uppercase\",\"font-size:14px\"]],[false,{\"#wpgmza_map:not(#_#_#_#_#_#_#_)\":false},[\"height:100%\"]],[false,\"@media (max-width: 768px){\"],[false,{\"#wpgmza_map\":false},[\"margin-left:15px\"]],[false,{\"#wpgmza_map:not(#_#_#_#_#_#_#_)\":false},[\"height:301px\",\"width:calc(100% - 30px)\"]],[false,\"}\"],[false,{\".what__top\":false},[\"width:100%\",\"position:relative\",\"background-color:#fff\",\"padding-top:100px\"]],[false,{\".what__top--carousel\":false},[\"height:auto\"]],[false,{\".what__top--desktop:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".what__top--mobile:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".what__top .owl-dots\":false},[\"position:absolute\",\"bottom:100px\",\"right:15px\",\"height:auto\"]],[false,{\".what__top .owl-dots:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".what__top .owl-dot\":false},[\"width:10px\",\"height:10px\",\"border:0\",\"border-radius:50%\",\"display:block\",\"margin:8px 0\"]],[false,{\".what__top .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#dbdbde\"]],[false,{\".what__top .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#adef7f\"]],[false,\"@media (max-width: 1024px){\"],[false,{\".what__top--desktop:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".what__top--mobile:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,\"}\"],[false,{\".what__top div\":false},[\"height:100%\"]],[false,{\".what__featured\":false},[\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[false,{\".what__featured amp-img\":false,\".what__featured amp-anim\":false},[\"max-height:100%\"]],[false,{\".what__content\":false},[\"background-color:#f7f7f7\",\"padding:40px 0 0\",\"color:#182647\",\"font-size:20px\",\"line-height:24px\"]],[false,{\".what__content .wp-block-button__link\":false},[\"width:auto\",\"border:0\",\"background-color:#182647\",\"text-transform:uppercase\",\"font-size:14px\",\"line-height:20px\",\"border-radius:0\",\"margin-bottom:25px\"]],[false,{\".what__content .wp-block-button__link:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\"]],[false,{\".what__clients\":false},[\"background-color:#f7f7f7\",\"padding:0 0 40px\",\"color:#182647\",\"font-size:20px\",\"line-height:30px\"]],[false,{\".what__content h1\":false},[\"font-size:40px\",\"line-height:40px\",\"color:#182647\",\"margin-bottom:20px\",\"padding-bottom:20px\",\"font-weight:700\"]],[false,{\".what__content h1:after\":false},[\"width:470px\",\"max-width:100%\",\"height:1px\",\"left:0\",\"bottom:0\",\"content:\\\"\\\"\",\"background-color:#182647\",\"position:absolute\",\"box-shadow:3px 3px 12px rgba(24,38,71,.4)\"]],[false,{\".what__content h2\":false,\".what__clients h2\":false},[\"font-weight:700\"]],[false,{\".what__content h3\":false,\".what__clients h3\":false},[\"font-size:24px\",\"line-height:30px\"]],[false,{\".what__content h4\":false},[\"margin-bottom:40px\"]],[false,{\".what__content p\":false},[\"margin-bottom:25px\"]],[false,{\".what__content p amp-img\":false,\".what__content p amp-anim\":false},[\"vertical-align:bottom\"]],[false,{\".what__content p + h2\":false},[\"margin-top:40px\"]],[false,{\".what__content amp-img\":false,\".what__content amp-anim\":false},[\"width:100%\"]],[false,{\".client-testimonial\":false},[\"width:calc(50% - 30px)\",\"max-width:50%\",\"position:relative\",\"min-height:1px\",\"margin-right:15px\",\"margin-left:15px\",\"padding:15px\",\"box-shadow:4px 7px 7px rgba(196,196,196,.6)\",\"margin-bottom:40px\"]],[false,\"@media (max-width: 960px){\"],[false,{\".client-testimonial\":false},[\"width:calc(100% - 30px)\",\"max-width:unset\"]],[false,\"}\"],[false,{\".client-testimonial p\":false},[\"margin-bottom:0\"]],[false,{\".client-testimonial p + strong\":false},[\"margin-top:20px\",\"display:block\"]],[false,{\".client-testimonial:nth-child(even)\":false},[\"color:#182647\",\"background-color:#adef7f\"]],[false,{\".client-testimonial:nth-child(odd)\":false},[\"background-color:#182647\",\"color:#adef7f\"]],[false,{\".whats-next__img\":false},[\"width:100%\",\"height:230px\",\"background-color:#c4c4c4\",\"margin-bottom:25px\"]],[false,{\".green-background\":false},[\"background-color:#adef7f\",\"padding:40px 0\",\"margin-bottom:40px\"]],[false,{\".green-background h4\":false},[\"margin-bottom:0\",\"line-height:34px\"]],[false,{\".wp-block-quote\":false},[\"background-color:#fff\",\"padding:25px 100px\",\"margin:40px auto\"]],[false,{\".wp-block-quote p\":false},[\"color:#6a4896\",\"font-weight:700\",\"font-size:28px\",\"line-height:32px\"]],[false,{\".wp-block-quote cite\":false},[\"font-style:inherit\",\"font-size:14px\"]],[false,{\".wp-block-quote cite amp-img\":false,\".wp-block-quote cite amp-anim\":false},[\"vertical-align:bottom\"]],[false,{\".wp-block-columns\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-columns.nospace:not(#_#_#_#_#_#_#_)\":false},[\"padding:0\"]],[false,{\".wp-block-columns .wp-block-image\":false,\".wp-block-columns .mrdata\":false},[\"margin-bottom:0\"]],[false,{\".wp-block-columns .mrdata\":false},[\"line-height:38px\"]],[false,{\".wp-block-columns .mrdata amp-img\":false,\".wp-block-columns .mrdata amp-anim\":false},[\"width:auto\"]],[false,{\".kubernetes__section\":false},[\"color:white\",\"width:100%\",\"position:relative\",\"padding:0\",\"border-bottom:1px solid #6490eb\",\"background-repeat:no-repeat\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__section\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,{\".kubernetes__section h1\":false},[\"position:relative\",\"font-weight:700\",\"line-height:50px\",\"font-size:50px\",\"color:#fff\",\"margin:0 0 20px\",\"padding-top:30px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__section h1\":false},[\"line-height:30px\",\"font-size:30px\"]],[false,\"}\"],[false,{\".kubernetes__section h1:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".kubernetes__section h1:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__section h1:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".kubernetes__section h2\":false},[\"position:relative\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"color:#fff\",\"margin:0 0 5px\"]],[false,{\".kubernetes__section h2:after\":false},[\"display:none\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__section .wrap-image\":false},[\"margin-top:100px\",\"position:relative\"]],[false,{\".kubernetes__section .wrap-image:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".kubernetes__section .wrap-image:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"}\"],[false,{\".kubernetes__section .service-padding\":false},[\"padding:100px 0\",\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".kubernetes__section .service-padding\":false},[\"padding:0 0 100px\"]],[false,\"}\"],[false,{\".kubernetes__section .subitems .item\":false},[\"color:#fff\",\"font-family:\\\"Rajdhani\\\"\"]],[false,{\".kubernetes__section button\":false},[\"height:40px\",\"border:0\",\"background-color:#fff\",\"color:#182647\",\"text-transform:uppercase\",\"font-size:14px\",\"font-weight:600\",\"vertical-align:top\",\"padding:0 20px\"]],[false,{\".kubernetes__services\":false},[\"margin-bottom:100px\"]],[false,{\".kubernetes__service\":false},[\"margin-bottom:10px\"]],[false,{\".kubernetes__section--1\":false},[\"background-color:#03173c\",\"margin-top:100px\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/03\\/watermark-1.png\\\")\",\"background-position:top 30px right\"]],[false,{\".kubernetes__section--2\":false},[\"background-color:#142453\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/03\\/watermark-4.png\\\")\",\"background-position:top 30px left 30px\"]],[false,{\".kubernetes__section--3\":false},[\"background-color:#03173c\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/03\\/watermark-2.png\\\")\",\"background-position:top -100px right -50px\"]],[false,{\".kubernetes__section--4\":false},[\"background-color:#142453\",\"background-image:url(\\\"https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2021\\/03\\/watermark-3.png\\\")\",\"background-position:top 30px left 30px\"]],[false,{\".tek__section\":false},[\"width:100%\",\"position:relative\",\"padding:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek__section\":false},[\"padding:0 15px\"]],[false,\"}\"],[false,{\".tek__section h1\":false},[\"position:relative\",\"font-weight:700\",\"line-height:50px\",\"font-size:50px\",\"color:#152649\",\"margin:0 0 20px\",\"padding-top:30px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek__section h1\":false},[\"line-height:30px\",\"font-size:30px\"]],[false,\"}\"],[false,{\".tek__section h1:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"transition:all .3s ease-in-out\",\"top:0\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".tek__section h1:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek__section h1:after\":false},[\"display:none\"]],[false,\"}\"],[false,{\".tek__section h2\":false},[\"position:relative\",\"font-weight:700\",\"line-height:25px\",\"font-size:25px\",\"margin:0 0 5px\"]],[false,{\".tek__section h2:after\":false},[\"display:none\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek__section .wrap-image\":false},[\"margin-top:100px\",\"position:relative\"]],[false,{\".tek__section .wrap-image:after\":false},[\"width:50px\",\"height:6px\",\"border-radius:3px\",\"transition:all .3s ease-in-out\",\"top:-20px\",\"left:0\",\"position:absolute\",\"content:\\\"\\\"\",\"background-color:#05bed4\"]],[false,{\".tek__section .wrap-image:hover:after\":false},[\"width:70px\",\"background-color:#0086a7\"]],[false,\"}\"],[false,{\".tek__section .service-padding\":false},[\"padding:100px 0\",\"position:relative\"]],[false,\"@media (max-width: 768px){\"],[false,{\".tek__section .service-padding\":false},[\"padding:0 0 100px\"]],[false,\"}\"],[false,{\".tek__section--1\":false},[\"margin-top:100px\"]],[false,{\".tek__section--2\":false},[\"background-color:#efefef\"]],[false,{\".tek__section--4\":false},[\"background-color:#efefef\"]],[false,{\".tek__section--6\":false},[\"background-color:#efefef\"]],[true,{\".devops-styles\":true},[\"font-size:21px\",\"line-height:30px\"]],[true,{\".devops-styles h2\":true},[\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:40px\",\"font-weight:600\"]],[true,{\".devops-styles h2:after\":true},[\"display:none\"]],[false,{\".devops-styles .what__top\":false},[\"padding-top:0\"]],[false,{\".devops__top\":false},[\"width:100%\",\"position:relative\",\"background-color:#03173c\",\"margin-top:100px\"]],[false,{\".devops__top-title\":false},[\"position:absolute\",\"z-index:1\",\"top:0\",\"left:50%\",\"display:flex\",\"height:100%\",\"align-items:center\"]],[false,{\".devops__top-title--noshow\":false},[\"pointer-events:none\"]],[false,{\".devops__top-title--noshow:not(#_#_#_#_#_#_#_)\":false},[\"opacity:0\"]],[false,{\".devops__top-title h1:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-bottom:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__top-title h1\":false},[\"font-size:23px\",\"line-height:28px\"]],[false,\"}\"],[false,{\".devops__content\":false},[\"padding:70px 0 20px\",\"color:#787878\"]],[false,{\".devops__content h1\":false},[\"color:#182647\",\"font-size:40px\"]],[false,{\".devops__content .mr-data\":false},[\"margin:40px auto 0\"]],[false,{\".devops__content .mr-data amp-img\":false,\".devops__content .mr-data amp-anim\":false},[\"width:100%\",\"height:auto\",\"max-height:100%\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__content .mr-data amp-img\":false,\".devops__content .mr-data amp-anim\":false},[\"width:50%\",\"margin-bottom:20px\"]],[false,\"}\"],[false,{\".devops__content .mr-data strong\":false},[\"color:#09aeec\"]],[false,{\".devops__quote\":false},[\"background-color:#e6e6e6\",\"padding:70px 0\",\"text-align:center\",\"position:relative\",\"color:#03173c\"]],[false,{\".devops__quote-button\":false},[\"width:350px\",\"height:45px\",\"color:#fff\",\"border:0\",\"background-color:#09aeec\",\"text-transform:uppercase\",\"font-weight:600\",\"position:absolute\",\"bottom:-25px\",\"left:calc(50% - 175px)\",\"z-index:1\"]],[false,{\".devops__author amp-img\":false,\".devops__author amp-anim\":false},[\"height:25px\",\"margin-right:10px\"]],[false,{\".devops__solution\":false},[\"padding:0 0 70px\",\"color:#787878\"]],[false,{\".devops__solution .blue\":false},[\"color:#09aeec\"]],[false,{\".devops__solution small\":false},[\"display:block\",\"padding-left:20px\",\"border-left:9px solid #09aeec\",\"font-size:20px\"]],[false,{\".devops__roadmap\":false},[\"padding:80px 0 70px\"]],[false,{\".devops__services\":false},[\"padding:120px 0 150px\",\"background-color:#e6e6e6\",\"margin-top:-150px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__services\":false},[\"padding:50px 0\",\"background-color:#e6e6e6\",\"margin-top:0\"]],[false,\"}\"],[false,{\".devops__services .border-item\":false},[\"border-left:5px solid #09aeec\",\"padding-left:10px\",\"margin-top:20px\",\"line-height:21px\"]],[false,{\".devops__services .list-item\":false},[\"padding-left:20px\"]],[false,{\".devops__phrase\":false},[\"position:relative\",\"color:#03173c\"]],[false,{\".devops__phrase .container\":false},[\"position:relative\"]],[false,{\".devops__phrase .row\":false},[\"background-color:#fff\",\"border-radius:10px\",\"padding:30px\",\"top:-110px\",\"position:absolute\",\"z-index:1\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__phrase .row\":false},[\"position:relative\",\"top:0\",\"border-radius:0\"]],[false,\"}\"],[false,{\".devops__ready-to-compete\":false},[\"padding:150px 0 70px\",\"background-color:#03173c\",\"position:relative\",\"color:#fff\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__ready-to-compete\":false},[\"padding:50px 0\"]],[false,\"}\"],[false,{\".devops__ready-to-compete h3\":false},[\"text-transform:none\",\"color:#fff\",\"font-weight:400\",\"margin-bottom:30px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:50px\",\"line-height:50px\"]],[false,{\".devops__tags\":false},[\"background-color:#e6e6e6\",\"padding:70px 0\",\"text-align:center\",\"position:relative\"]],[false,{\".devops__tag\":false},[\"display:inline-block\",\"margin:0 0 10px 20px\",\"padding-left:20px\",\"border-left:1px solid #03173c\",\"font-weight:600\",\"color:#03173c\"]],[false,{\".devops__tag:first-child\":false,\".devops__tag:nth-child(3n + 4)\":false},[\"border-left:0\",\"margin-left:0\",\"padding-left:0\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devops__tag\":false},[\"width:100%\",\"display:block\"]],[false,{\".devops__tag:not(#_#_#_#_#_#_#_)\":false},[\"border:0\",\"margin:20px 0\"]],[false,\"}\"],[false,{\".devops__services2\":false},[\"padding:70px 0\",\"color:#787878\"]],[false,{\".devops__services2 .p-bg\":false},[\"background-color:#b7bbc4\",\"color:#fff\",\"padding:10px 0\",\"margin-bottom:40px\"]],[false,{\".devopos__service-item\":false},[\"border-bottom:1px solid #b7bbc4\",\"padding-bottom:10px\",\"margin-bottom:10px\"]],[false,\"@media (max-width: 768px){\"],[false,{\".devopos__service-item:first-child\":false},[\"margin-top:30px\"]],[false,\"}\"],[false,{\".devops-styles .phrase\":false},[\"padding:0\"]],[false,{\".devops-styles .phrase h2\":false},[\"color:#fff\",\"font-weight:500\",\"line-height:44px\"]],[false,{\".devops-styles .phrase__wrap-content\":false},[\"bottom:230px\"]],[false,{\".app__about\":false},[\"background-color:#fafafa\",\"padding:70px 0 100px\"]],[false,{\".app__about h1\":false},[\"color:#182647\",\"font-size:40px\"]],[false,{\".app__about .top-section strong\":false},[\"color:#8218e5\"]],[false,{\".app__about .gray-bg\":false},[\"background-color:#e6e6e6\",\"color:#787878\",\"text-align:center\",\"padding:10px\",\"margin-bottom:40px\"]],[false,{\".app__about .gray-bg strong\":false},[\"color:#787878\"]],[false,{\".app__about h3\":false},[\"color:#8218e5\",\"font-size:35px\",\"line-height:35px\",\"text-transform:inherit\"]],[false,{\".app__about .blue\":false,\".app__about .blue strong\":false},[\"color:#182647\"]],[false,{\".app__slider\":false},[\"background-color:#fff\",\"position:relative\"]],[false,{\".app__slider h2.link-to\":false},[\"padding-bottom:0\",\"font-size:30px\",\"clear:both\",\"margin-bottom:0\",\"margin-top:40px\"]],[false,{\".app__slider h2.link-to amp-img\":false,\".app__slider h2.link-to amp-anim\":false},[\"height:35px\",\"float:left\",\"margin-right:20px\"]],[false,{\".app__slider h2.pink\":false},[\"color:#8218e5\"]],[false,{\".app__slider h2.blue\":false},[\"color:#2678f2\"]],[false,{\".app__slider .side-img\":false},[\"height:700px\"]],[false,{\".app__slider .side-img:not(#_#_#_#_#_#_#_)\":false},[\"width:auto\"]],[false,{\".app__slider .icon-img\":false},[\"margin-bottom:30px\"]],[false,{\".app__slider .icon-img:not(#_#_#_#_#_#_#_)\":false},[\"width:auto\"]],[false,{\".app__slider .owl-nav\":false},[\"position:relative\",\"width:50%\",\"margin:-50px auto 20px\",\"text-align:right\",\"padding-left:15px\",\"padding-right:10px\",\"display:inline-flex\",\"align-items:center\",\"justify-content:flex-end\"]],[false,{\".app__slider .owl-prev\":false,\".app__slider .owl-next\":false},[\"width:30px\",\"height:30px\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"margin-bottom:10px\"]],[false,{\".app__slider .owl-prev:not(#_#_#_#_#_#_#_)\":false,\".app__slider .owl-next:not(#_#_#_#_#_#_#_)\":false},[\"color:#152649\",\"border:2px solid #152649\",\"font-size:15px\",\"line-height:15px\"]],[false,{\".app__slider .owl-prev\":false},[\"margin-right:10px\"]],[false,{\".app__slider .owl-dots\":false},[\"width:50%\",\"margin:-50px auto 20px\",\"text-align:left\",\"position:relative\",\"display:inline-block\",\"padding-left:10px\"]],[false,{\".app__slider .owl-dot\":false},[\"width:15px\",\"height:15px\",\"border-radius:50%\",\"margin-right:30px\"]],[false,{\".app__slider .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#e0e0e0\"]],[false,{\".app__slider .owl-dot:last-child\":false},[\"margin:0\"]],[false,{\".app__slider .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#182647\"]],[false,\"@media (max-width: 1020px){\"],[false,{\".app__slider .hide-mobile\":false},[\"display:none\"]],[false,\"}\"],[false,{\".app__image1\":false},[\"padding:70px 0 0\",\"background-color:#fff\"]],[false,{\".app__image1 h4\":false},[\"font-size:31px\",\"line-height:40px\",\"font-weight:600\",\"margin-bottom:25px\"]],[false,{\".app__tags\":false},[\"text-align:center\",\"margin-top:20px\",\"margin-bottom:50px\",\"color:#09aeec\",\"font-weight:700\"]],[false,{\".app__quote\":false},[\"background-color:#e6e6e6\",\"padding:100px 0 70px\",\"margin-top:-80px\",\"color:#182647\"]],[false,{\".app__quote .gray\":false},[\"margin-bottom:40px\",\"color:#818181\"]],[false,{\".app__image2\":false},[\"padding:70px 0 0\"]],[false,{\".app__image2 h4\":false},[\"font-size:28px\",\"line-height:37px\",\"font-weight:600\",\"margin-bottom:25px\",\"text-align:center\"]],[false,{\".app__solutions\":false},[\"background-color:#e6e6e6\",\"padding:200px 0 70px\",\"margin-top:-150px\",\"color:#182647\"]],[false,{\".app__solutions .quote-button\":false},[\"width:350px\",\"height:45px\",\"color:#fff\",\"border:0\",\"background-color:#09aeec\",\"text-transform:uppercase\",\"font-weight:600\",\"margin-bottom:40px\"]],[false,{\".app__solutions .upper-space\":false},[\"margin-top:80px\"]],[false,{\".app__solutions strong\":false},[\"color:#09aeec\"]],[false,{\".app__values\":false},[\"padding:70px 0 200px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".app__values\":false},[\"padding:50px 0\"]],[false,\"}\"],[false,{\".app__values strong\":false,\".app__values i\":false},[\"color:#09aeec\"]],[false,{\".app__values i\":false},[\"margin-right:10px\"]],[false,{\".app__values .blue\":false},[\"color:#182647\",\"font-weight:700\",\"margin-bottom:30px\"]],[false,{\".app__values-phrase\":false},[\"margin-top:50px\",\"font-family:\\\"Raleway\\\",sans-serif\",\"font-size:30px\",\"font-weight:600\",\"color:#182647\"]],[false,{\".new-home__posts-upper-title\":false},[\"background-color:#fff\",\"padding:50px 0 200px\",\"color:#182647\",\"font-size:40px\",\"line-height:45px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".new-home__posts-upper-title\":false},[\"padding:50px 0\"]],[false,\"}\"],[false,{\".new-home__posts\":false},[\"width:100%\",\"background-color:#e6e6e6\",\"padding-bottom:80px\"]],[false,{\".new-home__process h2\":false},[\"position:relative\",\"overflow:hidden\"]],[false,{\".new-home__process h2:after\":false},[\"width:100%\",\"height:1px\",\"background-color:#182647\",\"top:18px\",\"left:280px\",\"position:absolute\",\"content:\\\"\\\"\"]],[false,{\".new-home__process h2:after:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".new-home__posts-wrap\":false},[\"display:grid\"]],[false,{\".new-home__posts-item\":false},[\"margin-top:-150px\",\"width:100%\",\"background-color:#fff\",\"color:#787878\",\"font-size:18px\",\"line-height:30px\",\"padding:25px\",\"border-top:10px solid #09aeec\",\"border-radius:0 0 10px 10px\",\"box-shadow:4px 7px 7px rgba(196,196,196,.6)\",\"display:flex\",\"flex-direction:column\",\"justify-content:space-between\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".new-home__posts-item\":false},[\"margin-top:0\",\"margin-bottom:40px\"]],[false,\"}\"],[false,{\".new-home__posts-title\":false},[\"color:#09aeec\",\"font-size:25px\",\"line-height:30px\",\"font-weight:800\",\"margin-bottom:15px\"]],[false,{\".new-home__posts-button\":false},[\"width:130px\",\"height:40px\",\"border:0\",\"background-color:#09aeec\",\"color:#fff\",\"text-transform:uppercase\",\"font-size:14px\",\"margin-top:25px\",\"font-weight:700\"]],[false,{\".new-home__posts-wrap:nth-child(even) .new-home__posts-item\":false},[\"border-top:10px solid #182647\"]],[false,{\".new-home__posts-wrap:nth-child(even) .new-home__posts-title\":false},[\"color:#182647\"]],[false,{\".new-home__posts-wrap:nth-child(even) .new-home__posts-button\":false},[\"background-color:#182647\"]],[false,{\".new-home__process\":false},[\"padding:0 0 250px\",\"color:#787878\",\"font-size:18px\",\"line-height:30px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".new-home__process\":false},[\"padding:0 0 50px\"]],[false,\"}\"],[false,{\".new-home__process h3\":false},[\"color:#182647\",\"font-size:25px\",\"line-height:30px\",\"font-weight:800\",\"margin-bottom:15px\",\"text-transform:none\"]],[false,{\".new-home__process a\":false},[\"color:#09aeec\",\"text-decoration:underline\"]],[false,{\".new-home__services\":false},[\"background-color:#fff\",\"padding:0 0 200px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".new-home__services\":false},[\"padding:50px 20px\"]],[false,\"}\"],[false,{\".new-home__service-item\":false},[\"background-color:#fff\",\"border-bottom:10px solid #09aeec\",\"border-radius:10px 10px 0 0\",\"box-shadow:7px 3px 18px rgba(196,196,196,.6)\",\"margin-bottom:40px\",\"padding:10px 10px 0\"]],[false,{\".new-home__service-item:nth-child(odd) .new-home__service-item-text\":false},[\"padding:50px 0 50px 80px\"]],[false,{\".new-home__service-item:nth-child(even) .new-home__service-item-text\":false},[\"padding:50px 80px 50px 0\"]],[false,{\".new-home__service-item .different-icon\":false},[\"float:left\",\"margin-right:13px\",\"margin-top:10px\"]],[false,{\".new-home__service-item strong\":false},[\"color:#09aeec\"]],[false,{\".new-home__service-item button\":false},[\"margin-bottom:20px\"]],[false,{\".new-home__service-item--1\":false},[\"margin-top:-150px\"]],[false,\"@media (max-width: 1000px){\"],[false,{\".new-home__service-item-text:not(#_#_#_#_#_#_#_)\":false},[\"padding:30px\"]],[false,{\".new-home__service-item-text amp-img\":false,\".new-home__service-item-text amp-anim\":false},[\"display:none\"]],[false,{\".new-home__service-item--1\":false},[\"margin-top:0\"]],[false,\"}\"],[false,{\".partners--new\":false},[\"padding:50px 0 40px\"]],[false,{\".partners--new .owl-dots .owl-dot\":false},[\"width:10px\",\"height:10px\",\"border-radius:50%\"]],[false,{\".partners--new .owl-dots .owl-dot:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#e5e5e5\"]],[false,{\".partners--new .owl-dots .owl-dot.active\":false},[\"width:10px\",\"height:10px\"]],[false,{\".partners--new .owl-dots .owl-dot.active:not(#_#_#_#_#_#_#_)\":false},[\"background-color:#00abeb\"]],[false,{\".new-home__process--img\":false},[\"width:56px\",\"height:62px\"]],[false,{\".new-home__services--img\":false},[\"width:50px\",\"height:55px\"]],[true,{\".new-header__logo amp-img\":true,\".new-header__logo amp-anim\":false},[\"width:100%\",\"height:100%\"]],[false,{\".revslider-subtitle-home:not(#_#_#_#_#_#_#_)\":false},[\"background-color:red\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":262,\"final_size\":0,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/default-theme.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"f6edf5f7585de26e26e3d9795f4be840\",\"parse_time\":0.0013489723205566406,\"shake_time\":4.0531158447265625e-6,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\".default__btn-green\":false},[\"background:transparent linear-gradient(90deg,#27d9cb 0%,#a1f266 100%)\"]],[false,{\".default__btn-blue\":false},[\"background-color:#23bbff\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2687,\"final_size\":1031,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-clients\\/our-clients.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"8b21ca69c88569bdc8a03e02863f336e\",\"parse_time\":0.021306991577148438,\"shake_time\":4.601478576660156e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".cp-our-clients\":true},[\"background-color:#fff\",\"padding:2rem 0\"]],[false,{\".cp-our-clients__button\":false},[\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[false,{\".cp-our-clients__button div\":false},[\"writing-mode:vertical-rl\",\"transform:rotate(180deg)\",\"font-family:raleway,sans-serif\",\"font-weight:500\",\"border:1px solid #979797\",\"padding:0 .2rem\",\"color:#979797\",\"font-size:.9rem\",\"cursor:pointer\",\"height:110px\",\"text-align:center\"]],[true,{\".cp-our-clients__slider-child .item\":true},[\"display:table\",\"width:100%\",\"height:100px\"]],[true,{\".cp-our-clients__wrap-item\":true},[\"width:100%\",\"height:100%\",\"display:table-row\"]],[true,{\".cp-our-clients__image\":true},[\"width:100%\",\"height:100%\",\"display:table-cell\",\"vertical-align:middle\",\"text-align:center\"]],[false,{\".cp-our-clients__image picture amp-img\":false,\".cp-our-clients__image picture amp-anim\":false},[\"max-width:80%\",\"max-height:70px\",\"height:auto\",\"filter:grayscale(1)\"]],[false,{\".cp-our-clients__image picture amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".cp-our-clients__image picture amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:auto\",\"display:inline-block\"]],[true,{\".cp-our-clients__slider\":true},[\"align-items:center\"]],[true,{\".cp-our-clients__slider:not(#_#_#_#_#_#_#_)\":true},[\"display:flex\"]],[false,{\".cp-our-clients__button--our-partners\":false},[\"display:none\"]],[false,{\".cp-our-clients__slider .owl-dot.active span:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#53c8fd\"]],[true,{\".cp-our-clients__icon\":true},[\"display:none\"]],[true,\"@media (max-width: 575.98px){\"],[false,{\".cp-our-clients__button div\":false},[\"writing-mode:horizontal-tb\",\"transform:none\",\"height:auto\",\"padding:.2rem .5rem\",\"margin-bottom:.5rem\"]],[true,{\".cp-our-clients__slider\":true},[\"margin-top:1rem\"]],[true,{\".cp-our-clients__slider:not(#_#_#_#_#_#_#_)\":true},[\"display:block\"]],[true,{\".cp-our-clients\":true},[\"padding:0 0 2rem\"]],[true,{\".cp-our-clients__icon\":true},[\"text-align:center\",\"position:relative\",\"margin:0 auto\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"margin-bottom:2rem\"]],[true,{\".cp-our-clients__icon--box\":true},[\"position:absolute\",\"top:-35px\",\"background:#f2f2f2\",\"width:25%\",\"margin:0 auto\",\"align-items:center\",\"justify-content:center\",\"display:none\",\"height:50px\",\"border-radius:100px 100px 0px 0px\"]],[true,{\".cp-our-clients__icon-down\":true},[\"color:#53c8fd\",\"border-radius:40px 40px 0px 0px\",\"font-size:1.5rem\"]],[true,\"}\"],[false,\"@media (min-width: 600px) and (max-width: 768px){\"],[false,{\".cp-our-clients__image picture amp-img\":false,\".cp-our-clients__image picture amp-anim\":false},[\"max-width:60%\"]],[false,\"}\"]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":2687,\"final_size\":1031,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-clients\\/our-clients.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"8b21ca69c88569bdc8a03e02863f336e\",\"parse_time\":0.021306991577148438,\"shake_time\":3.0994415283203125e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".cp-our-clients\":true},[\"background-color:#fff\",\"padding:2rem 0\"]],[false,{\".cp-our-clients__button\":false},[\"display:flex\",\"align-items:center\",\"justify-content:center\"]],[false,{\".cp-our-clients__button div\":false},[\"writing-mode:vertical-rl\",\"transform:rotate(180deg)\",\"font-family:raleway,sans-serif\",\"font-weight:500\",\"border:1px solid #979797\",\"padding:0 .2rem\",\"color:#979797\",\"font-size:.9rem\",\"cursor:pointer\",\"height:110px\",\"text-align:center\"]],[true,{\".cp-our-clients__slider-child .item\":true},[\"display:table\",\"width:100%\",\"height:100px\"]],[true,{\".cp-our-clients__wrap-item\":true},[\"width:100%\",\"height:100%\",\"display:table-row\"]],[true,{\".cp-our-clients__image\":true},[\"width:100%\",\"height:100%\",\"display:table-cell\",\"vertical-align:middle\",\"text-align:center\"]],[false,{\".cp-our-clients__image picture amp-img\":false,\".cp-our-clients__image picture amp-anim\":false},[\"max-width:80%\",\"max-height:70px\",\"height:auto\",\"filter:grayscale(1)\"]],[false,{\".cp-our-clients__image picture amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".cp-our-clients__image picture amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:auto\",\"display:inline-block\"]],[true,{\".cp-our-clients__slider\":true},[\"align-items:center\"]],[true,{\".cp-our-clients__slider:not(#_#_#_#_#_#_#_)\":true},[\"display:flex\"]],[false,{\".cp-our-clients__button--our-partners\":false},[\"display:none\"]],[false,{\".cp-our-clients__slider .owl-dot.active span:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#53c8fd\"]],[true,{\".cp-our-clients__icon\":true},[\"display:none\"]],[true,\"@media (max-width: 575.98px){\"],[false,{\".cp-our-clients__button div\":false},[\"writing-mode:horizontal-tb\",\"transform:none\",\"height:auto\",\"padding:.2rem .5rem\",\"margin-bottom:.5rem\"]],[true,{\".cp-our-clients__slider\":true},[\"margin-top:1rem\"]],[true,{\".cp-our-clients__slider:not(#_#_#_#_#_#_#_)\":true},[\"display:block\"]],[true,{\".cp-our-clients\":true},[\"padding:0 0 2rem\"]],[true,{\".cp-our-clients__icon\":true},[\"text-align:center\",\"position:relative\",\"margin:0 auto\",\"display:flex\",\"align-items:center\",\"justify-content:center\",\"margin-bottom:2rem\"]],[true,{\".cp-our-clients__icon--box\":true},[\"position:absolute\",\"top:-35px\",\"background:#f2f2f2\",\"width:25%\",\"margin:0 auto\",\"align-items:center\",\"justify-content:center\",\"display:none\",\"height:50px\",\"border-radius:100px 100px 0px 0px\"]],[true,{\".cp-our-clients__icon-down\":true},[\"color:#53c8fd\",\"border-radius:40px 40px 0px 0px\",\"font-size:1.5rem\"]],[true,\"}\"],[false,\"@media (min-width: 600px) and (max-width: 768px){\"],[false,{\".cp-our-clients__image picture amp-img\":false,\".cp-our-clients__image picture amp-anim\":false},[\"max-width:60%\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":3124,\"final_size\":1911,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/cloud-native\\/cloud-native.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"33c80fa7ffda8a897d0576def3234372\",\"parse_time\":0.04736495018005371,\"shake_time\":3.910064697265625e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".cp-cloud-native\":true},[\"padding:1rem 0 8rem\",\"background-repeat:no-repeat\",\"background-size:cover\",\"background-position-x:center\",\"background-position-y:top\"]],[true,{\".cp-cloud-native__title\":true},[\"margin:3rem 0 5rem\",\"text-align:center\",\"color:#121d3d\",\"font-size:2rem\",\"font-family:raleway,sans-serif\"]],[true,{\".cp-cloud-native__title:not(#_#_#_#_#_#_#_)\":true},[\"font-weight:400\"]],[true,{\".cp-cloud-native__title strong\":true},[\"font-weight:900\"]],[true,{\".cp-cloud-native__desktop\":true},[\"display:block\"]],[true,{\".cp-cloud-native__mobile\":true},[\"display:none\"]],[true,{\".cp-cloud-native__box\":true},[\"padding:3rem 4rem 1rem\",\"background:#fff\",\"border-top:10px solid #121d3d\",\"border-radius:0px 0px 9px 9px\",\"box-shadow:0px 8px 10px rgba(0,0,0,.16)\"]],[true,{\".cp-cloud-native__subtitle\":true},[\"font-weight:900\",\"font-family:\\\"Roboto\\\",sans-serif\",\"color:#121d3d\",\"margin:0\",\"line-height:46px\",\"font-size:38px\"]],[true,{\".cp-cloud-native__btn\":true},[\"color:#fff\",\"background:transparent linear-gradient(90deg,#27d9cb 0%,#a1f266 100%)\",\"height:45px\",\"border:0\",\"text-transform:uppercase\",\"font-size:15px\",\"font-weight:bold\",\"margin-top:20px\",\"padding:0 2rem\",\"cursor:pointer\",\"font-family:\\\"Roboto\\\",sans-serif\"]],[true,{\".cp-cloud-native__text\":true},[\"color:#707070\",\"padding:0 2rem\",\"font-size:1.3rem\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-weight:300\"]],[false,{\".cp-cloud-native__box .owl-dot.active span:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#53c8fd\"]],[false,{\".cp-cloud-native__box .owl-dot\":false},[\"outline:none\"]],[true,\"@media (max-width: 575.98px){\"],[true,{\".cp-cloud-native__title\":true},[\"font-size:1.3rem\",\"margin:1rem 0 1.5rem\"]],[true,{\".cp-cloud-native__title strong\":true},[\"display:block\"]],[true,{\".cp-cloud-native__box\":true},[\"padding:3rem 1rem\",\"border-top:15px solid #121d3d\"]],[true,{\".cp-cloud-native__subtitle\":true},[\"font-size:1.3rem\",\"text-align:center\"]],[true,{\".cp-cloud-native__desktop\":true},[\"display:none\"]],[true,{\".cp-cloud-native__mobile\":true},[\"display:block\"]],[true,{\".cp-cloud-native__mobile--container\":true},[\"display:block\",\"width:100%\",\"padding:.5rem .5rem 2rem\"]],[false,{\".cp-cloud-native__box .owl-dot.active span:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#53c8fd\"]],[true,{\".cp-cloud-native__text\":true},[\"font-size:1rem\",\"margin-top:1rem\",\"padding:0 .5rem\"]],[false,{\".cp-cloud-native__slider .owl-dot.active span:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#53c8fd\"]],[true,{\".cp-cloud-native\":true},[\"padding:1rem 0 4rem\"]],[true,{\".cp-cloud-native__mobile--off-padding:not(#_#_#_#_#_#_#_)\":true},[\"padding:0\"]],[true,\"}\"],[true,\"@media (min-width: 600px) and (max-width: 768px){\"],[true,{\".cp-cloud-native__title\":true},[\"font-size:1.5rem\"]],[true,{\".cp-cloud-native__subtitle\":true},[\"font-size:1.6rem\"]],[true,{\".cp-cloud-native__text\":true},[\"padding:0 1rem\",\"font-size:1rem\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":2317,\"final_size\":2012,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-process\\/our-process.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"1e81358d6ff1f90278f187d155a959ac\",\"parse_time\":0.009158134460449219,\"shake_time\":4.792213439941406e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".cp-our-process\":true},[\"padding:2rem 0 5rem\",\"background:#fdfdfd\"]],[true,{\".cp-our-process__title\":true},[\"color:#121d3d\",\"font-family:raleway,sans-serif\",\"display:flex\",\"align-items:center\",\"font-size:2rem\"]],[true,{\".cp-our-process__title:not(#_#_#_#_#_#_#_)\":true},[\"font-weight:100\"]],[true,{\".cp-our-process__title strong\":true},[\"margin-left:1rem\"]],[true,{\".cp-our-process__title strong:not(#_#_#_#_#_#_#_#_)\":true},[\"font-weight:800\"]],[true,{\".cp-our-process__title:after\":true},[\"width:100%\",\"height:1px\",\"background-color:#182647\",\"content:\\\"\\\"\",\"margin-left:2rem\"]],[true,{\".cp-our-process__title:after:not(#_#_#_#_#_#_#_#_)\":true},[\"display:block\"]],[true,{\".cp-our-process__slider--img\":true},[\"display:flex\",\"justify-content:center\",\"align-items:center\",\"height:200px\",\"min-height:200px\"]],[true,{\".cp-our-process__slider--img amp-img\":true,\".cp-our-process__slider--img amp-anim\":false},[\"margin:0 auto\"]],[true,{\".cp-our-process__slider--img amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".cp-our-process__slider--img amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:30%\"]],[true,{\".cp-our-process__slider--title\":true},[\"font-weight:bold\",\"font-family:roboto,sans-serif\",\"color:#121d3d\",\"margin-bottom:2rem\"]],[true,{\".cp-our-process__slider--title:not(#_#_#_#_#_#_#_)\":true},[\"font-size:1.4rem\",\"text-transform:capitalize\"]],[true,{\".cp-our-process__slider--text\":true},[\"color:#707070\",\"padding:0 1rem\",\"margin:0 0 2rem\"]],[true,{\".cp-our-process__slider--text:not(#_#_#_#_#_#_#_)\":true},[\"font-size:1rem\",\"font-weight:400\"]],[true,{\".cp-our-process__slider--link\":true},[\"font-family:roboto,sans-serif\",\"font-weight:700\",\"cursor:pointer\",\"text-decoration:underline\"]],[true,{\".cp-our-process__slider--link:not(#_#_#_#_#_#_#_)\":true},[\"color:#23bbff\"]],[true,{\".cp-our-process__slider--link:hover:not(#_#_#_#_#_#_#_)\":true},[\"color:#68e796\"]],[true,\"@media (max-width: 575.98px){\"],[false,{\".cp-our-process__slider .owl-dot.active span:not(#_#_#_#_#_#_#_#_)\":false},[\"background:#53c8fd\"]],[true,{\".cp-our-process__title:after:not(#_#_#_#_#_#_#_#_)\":true},[\"display:none\"]],[true,{\".cp-our-process__title\":true},[\"justify-content:center\"]],[true,{\".cp-our-process__slider--img:after\":true,\".cp-our-process__slider--img:before\":true},[\"width:20%\",\"height:1px\",\"background-color:#182647\",\"content:\\\"\\\"\"]],[true,{\".cp-our-process__slider--img:after:not(#_#_#_#_#_#_#_#_)\":true,\".cp-our-process__slider--img:before:not(#_#_#_#_#_#_#_#_)\":true},[\"display:block\"]],[true,{\".cp-our-process__slider--img amp-img\":true,\".cp-our-process__slider--img amp-anim\":false},[\"margin:0 1rem\"]],[true,\"}\"],[true,\"@media (min-width: 600px) and (max-width: 768px){\"],[true,{\".cp-our-process__slider--title\":true},[\"font-size:1.5em\"]],[true,{\".cp-our-process__slider--img amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".cp-our-process__slider--img amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:40%\"]],[true,{\".cp-our-process__slider--text\":true},[\"margin:0\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":3524,\"final_size\":2617,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/services\\/services.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"d5abd9b59c3d2e3b368016c0243840cc\",\"parse_time\":0.13952994346618652,\"shake_time\":6.103515625e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".cp-services\":true},[\"padding:1rem 0 5rem\",\"background-repeat:no-repeat\",\"background-position:top\",\"background-size:cover\"]],[true,{\".cp-services__columns\":true},[\"display:flex\",\"flex-direction:row\",\"justify-content:center\"]],[true,{\".cp-services__box\":true},[\"display:flex\",\"flex-direction:row-reverse\"]],[true,{\".cp-services__box--column\":true},[\"background-color:#23bbff\",\"border-radius:15px\",\"box-shadow:0 9px 21px rgba(0,0,0,.16)\",\"text-align:center\",\"padding:2rem 1.5rem\",\"display:flex\",\"flex-direction:column\",\"margin:0 .5rem\",\"align-items:center\",\"justify-content:start\",\"cursor:pointer\"]],[true,{\".cp-services__box--column i\":true},[\"font-size:1.5rem\",\"color:#121d3d\"]],[true,{\".cp-services__box--button\":true},[\"writing-mode:vertical-rl\",\"transform:rotate(180deg)\",\"margin-top:1rem\",\"color:#121d3d\",\"font-family:raleway,sans-serif\",\"font-weight:600\"]],[true,{\".cp-services__card\":true},[\"background-color:#fff\",\"box-shadow:0 9px 21px rgba(0,0,0,.16)\",\"border-radius:15px\",\"height:100%\",\"transition:auto\",\"width:90%\",\"padding:3rem\",\"background-size:50%\",\"background-repeat:no-repeat\",\"background-position-x:right\",\"background-position-y:bottom\",\"margin:0 auto\"]],[true,{\".cp-services__card--column-one\":true},[\"display:flex\",\"align-items:center\",\"justify-content:flex-start\",\"margin-bottom:1.5rem\"]],[true,{\".cp-services__card--title\":true},[\"color:#121d3d\",\"margin:0\"]],[true,{\".cp-services__card--title:not(#_#_#_#_#_#_#_)\":true},[\"font-family:raleway,sans-serif\",\"font-weight:600\",\"font-size:1.5rem\",\"padding:0\"]],[true,{\".cp-services__card--img\":true},[\"width:50px\",\"height:auto\",\"margin-right:.5rem\"]],[true,{\".cp-services__card--text\":true},[\"color:#707070\",\"font-family:roboto,sans-serif\",\"font-weight:500\"]],[true,{\".cp-services__card--text:not(#_#_#_#_#_#_#_)\":true},[\"font-size:1rem\"]],[true,{\".cp-services__card--text strong\":true},[\"color:#23bbff\",\"text-decoration:underline\"]],[true,{\".cp-services__card--button\":true},[\"margin-top:1rem\",\"background:#23bbff\",\"border:none\",\"box-shadow:none\",\"padding:.3rem 1rem\"]],[true,{\".cp-services__card--button a\":true},[\"color:#fff\",\"font-family:roboto,sans-serif\",\"font-weight:700\",\"text-transform:uppercase\",\"font-size:14px\",\"text-decoration:none\"]],[true,{\"#headingOne\":true},[\"display:none\"]],[true,{\"#headingTwo\":true},[\"display:block\"]],[true,{\"#headingThree\":true},[\"display:block\",\"background:transparent linear-gradient(180deg,#27d9cb 0%,#a1f266 100%) 0% 0% no-repeat padding-box\"]],[false,{\".cp-services__card-web:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".cp-services__card-mobile:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[true,\"@media (max-width: 575.98px){\"],[true,{\".cp-services__card\":true},[\"padding:1rem\",\"margin:0\",\"width:100%\"]],[true,{\".cp-services__card:not(#_#_#_#_#_#_#_)\":true},[\"background-image:none\"]],[true,{\".cp-services__box--column\":true},[\"margin:0\",\"padding:2rem 1rem\",\"border-radius:5px\"]],[true,{\".cp-services__card--title\":true},[\"line-height:initial\",\"padding:0\"]],[true,{\".cp-services__card--title:not(#_#_#_#_#_#_#_)\":true},[\"font-size:1rem\"]],[true,{\".cp-services__card--img\":true},[\"width:30px\"]],[true,{\".cp-services__card--text\":true},[\"font-size:.9rem\"]],[true,{\".cp-services__card--text:not(#_#_#_#_#_#_#_)\":true},[\"line-height:initial\"]],[false,{\".cp-services__card-web:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".cp-services__card-mobile:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[true,\"}\"],[true,\"@media (min-width: 600px) and (max-width: 768px){\"],[true,{\".cp-services__card:not(#_#_#_#_#_#_#_)\":true},[\"background-image:none\"]],[true,{\".cp-services__card--title:not(#_#_#_#_#_#_#_)\":true},[\"font-size:1.5rem\"]],[false,{\".cp-services__card-web:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".cp-services__card-mobile:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":3280,\"final_size\":2575,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/client-testimonial\\/client-testimonial.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"5337a633a57395e1a71e48ca5e7dbe57\",\"parse_time\":0.06432199478149414,\"shake_time\":0.00013494491577148438,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".cp-client-testimonial\":true},[\"background-color:#121d3d\",\"padding:3rem 0 1rem\"]],[true,{\".cp-client-testimonial__title\":true},[\"color:#53c8fd\",\"font-family:raleway,sans-serif\",\"margin:0\",\"padding:0\"]],[true,{\".cp-client-testimonial__title:not(#_#_#_#_#_#_#_)\":true},[\"font-weight:100\",\"font-size:1.9rem\"]],[true,{\".cp-client-testimonial__little-dots\":true},[\"color:#53c8fd\",\"font-size:1.9rem\"]],[true,{\".cp-client-testimonial__little-dots-mobile\":true},[\"display:none\",\"color:#53c8fd\",\"font-size:1.9rem\"]],[true,{\".cp-client-testimonial__little-dots-tablet\":true},[\"display:none\",\"color:#53c8fd\",\"font-size:1.9rem\"]],[true,{\".cp-client-testimonial__title strong\":true},[\"color:#53c8fd\",\"font-weight:700\"]],[true,{\".cp-client-testimonial__slider\":true},[\"margin-top:2rem\"]],[true,{\".cp-client-testimonial__subtitle\":true},[\"margin-bottom:2rem\"]],[true,{\".cp-client-testimonial__subtitle h3\":true},[\"font-size:2.5rem\",\"letter-spacing:0px\",\"line-height:45px\",\"color:#fff\",\"margin:0\",\"font-family:raleway,sans-serif\",\"font-weight:900\",\"text-transform:inherit\"]],[true,{\".cp-client-testimonial__name\":true},[\"color:#53c8fd\",\"font-size:18px\",\"margin:0\",\"text-transform:uppercase\"]],[true,{\".cp-client-testimonial__office\":true},[\"color:#fff\",\"margin:0\",\"font-size:12px\",\"line-height:20px\"]],[true,{\".cp-client-testimonial__logo\":true},[\"max-width:80%\"]],[true,{\".cp-client-testimonial__logo amp-img:not(#_#_#_#_#_#_#_#_)\":true,\".cp-client-testimonial__logo amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"width:auto\"]],[true,{\".cp-client-testimonial__testimonial\":true},[\"color:#818181\",\"font-family:roboto,sans-serif\",\"font-size:21px\"]],[true,{\".cp-client-testimonial_nav\":true},[\"width:100%\",\"text-align:center\",\"margin-top:2rem\",\"display:flex\",\"flex-direction:row\",\"align-items:center\",\"justify-content:flex-start\"]],[true,{\".cp-client-testimonial_nav-button\":true},[\"width:40%\",\"border:1px solid #23bbff\",\"border-radius:15px\",\"background-color:transparent\",\"color:#23bbff\",\"margin:0 .5rem\",\"cursor:pointer\"]],[true,{\".cp-client-testimonial_nav-button:hover\":true},[\"background-color:#23bbff\",\"color:#fff\"]],[true,{\".cp-client-testimonial_nav-button i\":true},[\"font-size:1rem\"]],[false,{\".owl-nav\":false},[\"display:none\"]],[true,\"@media (max-width: 575.98px){\"],[true,{\".cp-client-testimonial__title:not(#_#_#_#_#_#_#_)\":true},[\"font-size:1rem\",\"padding:0\",\"line-height:20px\"]],[true,{\".cp-client-testimonial__subtitle h3\":true},[\"font-size:30px\",\"line-height:42px\"]],[true,{\".cp-client-testimonial__office\":true},[\"font-size:12px\",\"line-height:17px\"]],[true,{\".cp-client-testimonial__name\":true},[\"font-size:15px\"]],[true,{\".cp-client-testimonial__testimonial\":true},[\"margin-top:2rem\"]],[true,{\".cp-client-testimonial_nav\":true},[\"padding-bottom:2rem\"]],[true,{\".cp-client-testimonial__little-dots\":true},[\"display:none\"]],[true,{\".cp-client-testimonial__little-dots-mobile\":true},[\"display:block\"]],[true,\"}\"],[true,\"@media (min-width: 600px) and (max-width: 768px){\"],[true,{\".cp-client-testimonial__subtitle h3\":true},[\"font-size:2rem\",\"line-height:40px\"]],[true,{\".cp-client-testimonial__name\":true},[\"font-size:18px\"]],[true,{\".cp-client-testimonial__office\":true},[\"font-size:12px\"]],[true,{\".cp-client-testimonial__testimonial\":true},[\"font-size:15px\"]],[true,{\".cp-client-testimonial__little-dots\":true},[\"display:none\"]],[true,{\".cp-client-testimonial__little-dots-mobile\":true},[\"display:none\"]],[true,{\".cp-client-testimonial__little-dots-tablet\":true},[\"display:block\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":3496,\"final_size\":2544,\"element\":{\"name\":\"link\",\"attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/contact-us\\/contact-us.css\",\"rel\":\"stylesheet\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":1,\"hash\":\"5f9ce1a3cec945a8f2f9e8ab816246ae\",\"parse_time\":0.08191609382629395,\"shake_time\":5.507469177246094e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".cp-contact-us\":true},[\"background:linear-gradient(0deg,rgba(195,242,74,1) 0%,rgba(152,242,110,1) 20%,rgba(10,210,226,1) 80%,rgba(10,210,226,1) 100%)\",\"padding:3rem 0 5rem\"]],[true,{\".cp-contact-us__box\":true},[\"border-radius:15px\",\"background:#fff\",\"box-shadow:0px 9px 21px rgba(0,0,0,.16)\"]],[true,{\".cp-contact-us__box-layout\":true},[\"padding:2rem 3rem\"]],[true,{\".cp-contact-us__title\":true},[\"font-size:40px\",\"color:#121d3d\",\"font-weight:900\",\"font-family:raleway,sans-serif\",\"margin:0\"]],[true,{\".cp-contact-us__subtitle\":true},[\"color:#23bbff\",\"text-decoration:underline\",\"cursor:pointer\",\"font-family:raleway,sans-serif\",\"font-weight:bold\",\"margin:0\"]],[true,{\".cp-contact-us__form\":true},[\"padding-top:1.5rem\"]],[true,{\".cp-contact-us__form label\":true},[\"display:block\",\"color:#121d3d\",\"font-size:15px\",\"font-weight:bold\",\"margin-bottom:.5rem\"]],[true,{\".cp-contact-us__form label:not(#_#_#_#_#_#_#_#_)\":true},[\"font-family:\\\"Roboto\\\",sans-serif\"]],[true,{\".cp-contact-us__form input\":true,\"textarea\":true},[\"border:none\",\"border-bottom:1px solid #b0b0b0\",\"color:#b0b0b0\",\"font-size:13px\",\"margin-bottom:1.5rem\",\"width:100%\",\"outline:none\"]],[true,{\".cp-contact-us__form--button\":true},[\"background-color:#23bbff\",\"padding:1rem 0\",\"width:100%\",\"border:none\",\"cursor:pointer\",\"font-weight:700\",\"font-family:\\\"Roboto\\\",sans-serif\",\"outline:none\",\"font-size:1rem\"]],[true,{\".cp-contact-us__form--button:not(#_#_#_#_#_#_#_)\":true},[\"color:#fff\"]],[true,{\".cp-contact-us__partner-data\":true},[\"background-color:#121d3d\",\"border-radius:0px 15px 15px 0px\"]],[true,{\".cp-contact-us__partner-data--title\":true},[\"color:#fff\",\"font-family:raleway,sans-serif\",\"font-weight:bold\",\"font-size:1.4rem\",\"margin:0\",\"line-height:25px\"]],[true,{\".cp-contact-us__partner-data--title span\":true},[\"color:#23bbff\"]],[true,{\".cp-contact-us__partner-data--name\":true},[\"line-height:20px\",\"color:#23bbff\",\"margin:2rem 0 1rem\",\"font-weight:900\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-size:1rem\"]],[true,{\".cp-contact-us__partner-data--name span\":true},[\"font-weight:100\",\"color:#fff\"]],[true,{\".cp-contact-us__partner-data--email-message\":true},[\"margin:0\",\"color:#fff\",\"font-weight:900\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-size:1rem\"]],[true,{\".cp-contact-us__partner-data--email\":true},[\"color:#23bbff\",\"font-weight:500\",\"font-family:\\\"Roboto\\\",sans-serif\",\"margin:0\",\"font-size:1rem\"]],[true,{\".cp-contact-us__partner-data--phone\":true},[\"margin:0\",\"color:#23bbff\",\"font-weight:900\",\"font-family:\\\"Roboto\\\",sans-serif\",\"font-size:1rem\"]],[true,\"@media (max-width: 575.98px){\"],[true,{\".cp-contact-us\":true},[\"padding:3rem .5rem 5rem\"]],[true,{\".cp-contact-us__box-layout\":true},[\"padding:2rem 2rem\"]],[true,{\".cp-contact-us__title\":true},[\"font-size:20px\"]],[true,{\".cp-contact-us__subtitle\":true},[\"font-size:17px\",\"float:right\"]],[true,{\".cp-contact-us__form--button\":true},[\"margin-bottom:2rem\"]],[true,{\".cp-contact-us__partner-data\":true},[\"border-radius:0px 0px 15px 15px\"]],[true,\"}\"],[true,\"@media (min-width: 600px) and (max-width: 768px){\"],[true,{\".cp-contact-us__title\":true},[\"font-size:25px\"]],[true,{\".cp-contact-us__partner-data--title\":true},[\"font-size:1.1rem\"]],[true,{\".cp-contact-us__partner-data--email\":true},[\"word-break:break-all\"]],[true,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":57925,\"final_size\":10464,\"element\":{\"name\":\"link\",\"attributes\":{\"rel\":\"stylesheet\",\"id\":\"rs-plugin-settings-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/rs6.css?ver=6.5.23\",\"media\":\"all\"}},\"origin\":\"link_element\",\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":134,\"function\":\"RevSliderFront::add_inline_css\",\"hook\":\"wp_footer\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"rs-plugin-settings\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}],\"priority\":30,\"hash\":\"4a682d94bb410f9ebfc91fae35d45117\",\"parse_time\":0.7066469192504883,\"shake_time\":0.001138925552368164,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.eot?5510888#iefix\"],\"shaken_tokens\":[[true,{\".rs-p-wp-fix:not(#_#_#_#_#_#_#_)\":true},[\"display:none\",\"margin:0\",\"height:0px\"]],[false,{\".wp-block-themepunch-revslider\":false},[\"position:relative\"]],[false,{\"rs-modal:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"z-index:9999999\",\"pointer-events:none\"]],[false,{\"rs-modal.rs-modal-auto\":false},[\"top:auto\",\"bottom:auto\",\"left:auto\",\"right:auto\"]],[false,{\"rs-modal.rs-modal-fullwidth\":false,\"rs-modal.rs-modal-fullscreen\":false},[\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\"]],[false,{\"rs-modal rs-fullwidth-wrap\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"height:100%\"]],[false,{\"rs-module-wrap.rs-modal\":false},[\"display:none\"]],[false,{\"rs-module-wrap.rs-modal:not(#_#_#_#_#_#_#_#_)\":false},[\"max-height:100%\",\"overflow:auto\",\"pointer-events:auto\"]],[false,{\"rs-module-wrap.hideallscrollbars.rs-modal:not(#_#_#_#_#_#_#_#_)\":false},[\"overflow:hidden\",\"max-width:100%\"]],[false,{\"rs-modal-cover\":false},[\"width:100%\",\"height:100%\",\"z-index:0\",\"background:transparent\",\"position:absolute\",\"top:0px\",\"left:0px\",\"cursor:pointer\",\"pointer-events:auto\"]],[false,{\"body>rs-modal-cover\":false},[\"position:fixed\"]],[false,{\"body>rs-modal-cover:not(#_#_#_#_#_#_#_#_)\":false},[\"z-index:9999995\"]],[false,{\"rs-sbg-px\":false},[\"pointer-events:none\"]],[false,{\".rs-forceuntouchable:not(#_#_#_#_#_#_#_)\":false,\".rs-forceuntouchable *:not(#_#_#_#_#_#_#_)\":false},[\"pointer-events:none\"]],[false,{\".rs-forcehidden *:not(#_#_#_#_#_#_#_)\":false},[\"visibility:hidden\"]],[false,{\".rs_splitted_lines\":false},[\"display:block\"]],[false,{\".rs_splitted_lines:not(#_#_#_#_#_#_#_)\":false},[\"white-space:nowrap\"]],[false,{\".rs-go-fullscreen\":false},[\"background:#fff\"]],[false,{\".rs-go-fullscreen:not(#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\",\"z-index:9999999\"]],[false,{\".rtl\":false},[\"direction:rtl\"]],[true,\"@font-face{font-family:\\\"revicons\\\";src:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.eot?5510888\\\");src:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.eot?5510888#iefix\\\") format(\\\"embedded-opentype\\\"),url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.woff?5510888\\\") format(\\\"woff\\\"),url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.ttf?5510888\\\") format(\\\"truetype\\\"),url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/fonts\\/revicons\\/revicons.svg?5510888#revicons\\\") format(\\\"svg\\\");font-weight:normal;font-style:normal;font-display:swap}\"],[true,{\"[class^=\\\"revicon-\\\"]:before\":true,\"[class*=\\\" revicon-\\\"]:before\":true},[\"font-family:\\\"revicons\\\"\",\"font-style:normal\",\"font-weight:normal\",\"speak:never\",\"speak-as:spell-out\",\"display:inline-block\",\"text-decoration:inherit\",\"width:1em\",\"margin-right:.2em\",\"text-align:center\",\"font-variant:normal\",\"text-transform:none\",\"line-height:1em\",\"margin-left:.2em\"]],[true,{\"rs-module i[class^=\\\"fa-\\\"]\":true,\"rs-module i[class*=\\\" fa-\\\"]\":true,\".rb-modal-wrapper i[class^=\\\"fa-\\\"]\":false,\".rb-modal-wrapper i[class*=\\\" fa-\\\"]\":false,\"#waitaminute i[class^=\\\"fa-\\\"]\":false,\"#waitaminute i[class*=\\\" fa-\\\"]\":false,\"#objectlibrary i[class^=\\\"fa-\\\"]\":false,\"#objectlibrary i[class*=\\\" fa-\\\"]\":false,\"#rs_overview i[class^=\\\"fa-\\\"]\":false,\"#rs_overview i[class*=\\\" fa-\\\"]\":false,\"#rs_overview_menu i[class^=\\\"fa-\\\"]\":false,\"#rs_overview_menu i[class*=\\\" fa-\\\"]\":false,\"#builderView i[class^=\\\"fa-\\\"]\":false,\"#builderView i[class*=\\\" fa-\\\"]\":false},[\"display:inline-block\",\"font:normal normal normal 14px\\/1 FontAwesome\",\"font-size:inherit\",\"text-rendering:auto\",\"-webkit-font-smoothing:antialiased\",\"-moz-osx-font-smoothing:grayscale\"]],[true,{\"rs-module [class^=\\\"fa-\\\"]:before\":true,\"rs-module [class*=\\\" fa-\\\"]:before\":true,\".rb-modal-wrapper [class^=\\\"fa-\\\"]:before\":false,\".rb-modal-wrapper [class*=\\\" fa-\\\"]:before\":false,\"#rs_overview [class^=\\\"fa-\\\"]:before\":false,\"#rs_overview [class*=\\\" fa-\\\"]:before\":false,\"#objectlibrary [class^=\\\"fa-\\\"]:before\":false,\"#objectlibrary [class*=\\\" fa-\\\"]:before\":false,\"#waitaminute [class^=\\\"fa-\\\"]:before\":false,\"#waitaminute [class*=\\\" fa-\\\"]:before\":false,\"#rs_overview_menu [class^=\\\"fa-\\\"]:before\":false,\"#rs_overview_menu [class*=\\\" fa-\\\"]:before\":false,\"#builderView [class^=\\\"fa-\\\"]:before\":false,\"#builderView [class*=\\\" fa-\\\"]:before\":false},[\"font-family:FontAwesome\",\"font-style:normal\",\"font-weight:400\",\"speak:never\",\"speak-as:spell-out\",\"display:inline-block\",\"text-decoration:inherit\",\"width:auto\",\"margin-right:0\",\"text-align:center\",\"font-variant:normal\",\"text-transform:none\",\"line-height:inherit\",\"margin-left:0\"]],[false,{\"rs-module .sr-only\":false,\"#objectlibrary .sr-only\":false,\"#waitaminute .sr-only\":false,\"#rs_overview .sr-only\":false,\"#rs_overview_menu .sr-only\":false,\".rb-modal-wrapper .sr-only\":false,\"#builderView .sr-only\":false},[\"position:absolute\",\"width:1px\",\"height:1px\",\"padding:0\",\"margin:-1px\",\"overflow:hidden\",\"clip:rect(0,0,0,0)\",\"border:0\"]],[false,{\"rs-module .sr-only-focusable:active\":false,\"rs-module .sr-only-focusable:focus\":false,\"#waitaminute .sr-only-focusable:active\":false,\"#waitaminute .sr-only-focusable:focus\":false,\"#objectlibrary .sr-only-focusable:active\":false,\"#objectlibrary .sr-only-focusable:focus\":false,\"#rs_overview .sr-only-focusable:active\":false,\"#rs_overview .sr-only-focusable:focus\":false,\"#rs_overview_menu .sr-only-focusable:active\":false,\"#rs_overview_menu .sr-only-focusable:focus\":false,\".rb-modal-wrapper .sr-only-focusable:active\":false,\".rb-modal-wrapper .sr-only-focusable:focus\":false,\"#builderView .sr-only-focusable:active\":false,\"#builderView .sr-only-focusable:focus\":false},[\"position:static\",\"width:auto\",\"height:auto\",\"margin:0\",\"overflow:visible\",\"clip:auto\"]],[false,{\".revicon-search-1:before\":false},[\"content:\\\"\\ue802\\\"\"]],[false,{\".revicon-pencil-1:before\":false},[\"content:\\\"\\ue831\\\"\"]],[false,{\".revicon-picture-1:before\":false},[\"content:\\\"\\ue803\\\"\"]],[false,{\".revicon-cancel:before\":false},[\"content:\\\"\\ue80a\\\"\"]],[false,{\".revicon-info-circled:before\":false},[\"content:\\\"\\ue80f\\\"\"]],[false,{\".revicon-trash:before\":false},[\"content:\\\"\\ue801\\\"\"]],[false,{\".revicon-left-dir:before\":false},[\"content:\\\"\\ue817\\\"\"]],[false,{\".revicon-right-dir:before\":false},[\"content:\\\"\\ue818\\\"\"]],[false,{\".revicon-down-open:before\":false},[\"content:\\\"\\ue83b\\\"\"]],[false,{\".revicon-left-open:before\":false},[\"content:\\\"\\ue819\\\"\"]],[false,{\".revicon-right-open:before\":false},[\"content:\\\"\\ue81a\\\"\"]],[false,{\".revicon-angle-left:before\":false},[\"content:\\\"\\ue820\\\"\"]],[false,{\".revicon-angle-right:before\":false},[\"content:\\\"\\ue81d\\\"\"]],[false,{\".revicon-left-big:before\":false},[\"content:\\\"\\ue81f\\\"\"]],[false,{\".revicon-right-big:before\":false},[\"content:\\\"\\ue81e\\\"\"]],[false,{\".revicon-magic:before\":false},[\"content:\\\"\\ue807\\\"\"]],[false,{\".revicon-picture:before\":false},[\"content:\\\"\\ue800\\\"\"]],[false,{\".revicon-export:before\":false},[\"content:\\\"\\ue80b\\\"\"]],[false,{\".revicon-cog:before\":false},[\"content:\\\"\\ue832\\\"\"]],[false,{\".revicon-login:before\":false},[\"content:\\\"\\ue833\\\"\"]],[false,{\".revicon-logout:before\":false},[\"content:\\\"\\ue834\\\"\"]],[false,{\".revicon-video:before\":false},[\"content:\\\"\\ue805\\\"\"]],[false,{\".revicon-arrow-combo:before\":false},[\"content:\\\"\\ue827\\\"\"]],[false,{\".revicon-left-open-1:before\":false},[\"content:\\\"\\ue82a\\\"\"]],[false,{\".revicon-right-open-1:before\":false},[\"content:\\\"\\ue82b\\\"\"]],[false,{\".revicon-left-open-mini:before\":false},[\"content:\\\"\\ue822\\\"\"]],[false,{\".revicon-right-open-mini:before\":false},[\"content:\\\"\\ue823\\\"\"]],[false,{\".revicon-left-open-big:before\":false},[\"content:\\\"\\ue824\\\"\"]],[false,{\".revicon-right-open-big:before\":false},[\"content:\\\"\\ue825\\\"\"]],[false,{\".revicon-left:before\":false},[\"content:\\\"\\ue836\\\"\"]],[false,{\".revicon-right:before\":false},[\"content:\\\"\\ue826\\\"\"]],[false,{\".revicon-ccw:before\":false},[\"content:\\\"\\ue808\\\"\"]],[false,{\".revicon-arrows-ccw:before\":false},[\"content:\\\"\\ue806\\\"\"]],[false,{\".revicon-palette:before\":false},[\"content:\\\"\\ue829\\\"\"]],[false,{\".revicon-list-add:before\":false},[\"content:\\\"\\ue80c\\\"\"]],[false,{\".revicon-doc:before\":false},[\"content:\\\"\\ue809\\\"\"]],[false,{\".revicon-left-open-outline:before\":false},[\"content:\\\"\\ue82e\\\"\"]],[false,{\".revicon-left-open-2:before\":false},[\"content:\\\"\\ue82c\\\"\"]],[false,{\".revicon-right-open-outline:before\":false},[\"content:\\\"\\ue82f\\\"\"]],[false,{\".revicon-right-open-2:before\":false},[\"content:\\\"\\ue82d\\\"\"]],[false,{\".revicon-equalizer:before\":false},[\"content:\\\"\\ue83a\\\"\"]],[false,{\".revicon-layers-alt:before\":false},[\"content:\\\"\\ue804\\\"\"]],[false,{\".revicon-popup:before\":false},[\"content:\\\"\\ue828\\\"\"]],[false,{\".tp-fullwidth-forcer\":false},[\"z-index:0\",\"pointer-events:none\"]],[true,{\"rs-module-wrap\":true},[\"visibility:hidden\"]],[true,{\"rs-module-wrap\":true,\"rs-module-wrap *\":true},[\"box-sizing:border-box\",\"-webkit-tap-highlight-color:rgba(0,0,0,0)\"]],[true,{\"rs-module-wrap\":true},[\"position:relative\",\"z-index:1\",\"width:100%\",\"display:block\"]],[false,{\".rs-fixedscrollon rs-module-wrap\":false},[\"z-index:1000\"]],[false,{\".rs-fixedscrollon rs-module-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"position:fixed\",\"top:0px\",\"left:0\"]],[false,{\".rs-stickyscrollon rs-module-wrap\":false},[\"top:0px\",\"z-index:1000\"]],[false,{\".rs-stickyscrollon rs-module-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"position:sticky\"]],[false,{\".rs-stickyscrollon:not(#_#_#_#_#_#_#_)\":false},[\"overflow:visible\"]],[false,{\"rs-fw-forcer\":false},[\"display:block\",\"width:100%\",\"pointer-events:none\"]],[true,{\"rs-module\":true},[\"position:relative\",\"overflow:hidden\",\"display:block\"]],[false,{\"rs-module.disableVerticalScroll\":false},[\"-ms-touch-action:pan-x\",\"touch-action:pan-x\"]],[false,{\"rs-pzimg-wrap\":false,\"rs-sbg-effectwrap\":false,\"rs-sbg\":false},[\"display:block\",\"pointer-events:none\"]],[false,{\"rs-sbg-effectwrap\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\"]],[false,{\"rs-carousel-wrap rs-column rs-layer amp-img\":false,\"rs-carousel-wrap rs-column rs-layer amp-anim\":false},[\"width:0px\",\"height:0px\"]],[false,{\"rs-sbg-px\":false,\"rs-sbg-wrap\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"z-index:0\",\"width:100%\",\"height:100%\",\"display:block\"]],[true,{\"a.rs-layer\":true,\"a.rs-layer:-webkit-any-link\":true},[\"text-decoration:none\"]],[false,{\"a[x-apple-data-detectors]:not(#_#_#_#_#_#_#_#_)\":false},[\"color:inherit\",\"text-decoration:none\",\"font-size:inherit\",\"font-family:inherit\",\"font-weight:inherit\",\"line-height:inherit\"]],[true,{\".entry-content rs-module a\":false,\"rs-module a\":true},[\"box-shadow:none\"]],[false,{\".rs-ov-hidden:not(#_#_#_#_#_#_#_)\":false},[\"overflow:hidden\"]],[false,{\".rs-forceoverflow:not(#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-module-wrap:not(#_#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-module:not(#_#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-slides:not(#_#_#_#_#_#_#_#_)\":false,\".rs-forceoverflow rs-slide:not(#_#_#_#_#_#_#_#_)\":false},[\"overflow:visible\"]],[true,{\".tp-simpleresponsive amp-img\":false,\".tp-simpleresponsive amp-anim\":false,\"rs-module amp-img\":true,\"rs-module amp-anim\":false},[\"transition:none\",\"margin:0px\",\"padding:0px\",\"border:none\"]],[true,{\".tp-simpleresponsive amp-img:not(#_#_#_#_#_#_#_#_)\":false,\".tp-simpleresponsive amp-anim:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-img:not(#_#_#_#_#_#_#_#_)\":true,\"rs-module amp-anim:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\"rs-module .no-slides-text\":false},[\"font-weight:bold\",\"text-align:center\",\"padding-top:80px\"]],[true,{\"rs-slides\":true,\"rs-slide\":true,\"rs-slide:before\":true},[\"position:absolute\",\"text-indent:0em\",\"top:0px\",\"left:0px\"]],[true,{\"rs-slide\":true,\"rs-slide:before\":true},[\"display:block\",\"visibility:hidden\"]],[false,{\".rs-layer .rs-untoggled-content\":false},[\"display:block\"]],[false,{\".rs-layer .rs-toggled-content\":false},[\"display:none\"]],[false,{\".rs-tc-active.rs-layer > .rs-toggled-content\":false},[\"display:block\"]],[false,{\".rs-tc-active.rs-layer > .rs-untoggled-content\":false},[\"display:none\"]],[false,{\".rs-layer-video\":false},[\"overflow:hidden\"]],[false,{\".rs_html5vidbasicstyles\":false},[\"position:relative\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"overflow:hidden\"]],[true,{\"rs-module rs-layer\":true,\"rs-module .rs-layer\":true},[\"opacity:0\",\"position:relative\",\"visibility:hidden\",\"display:block\",\"-webkit-tap-highlight-color:rgba(0,0,0,0)\",\"-moz-osx-font-smoothing:grayscale\",\"z-index:1\",\"font-display:swap\"]],[true,{\"rs-module rs-layer:not(#_#_#_#_#_#_#_#_)\":true,\"rs-module .rs-layer:not(#_#_#_#_#_#_#_#_)\":true},[\"-webkit-font-smoothing:antialiased\"]],[true,{\"rs-layer-wrap\":false,\"rs-mask\":false,\"rs-module-wrap\":true,\"rs-module .rs-layer\":true,\"rs-module amp-img\":true,\"rs-module amp-anim\":false},[\"user-select:none\"]],[false,{\"rs-module rs-mask-wrap .rs-layer\":false,\"rs-module rs-mask-wrap *:last-child\":false,\".wpb_text_column rs-module rs-mask-wrap .rs-layer\":false,\".wpb_text_column rs-module rs-mask-wrap *:last-child\":false},[\"margin-bottom:0\"]],[false,{\".rs-svg svg\":false},[\"width:100%\",\"height:100%\",\"position:relative\",\"vertical-align:top\"]],[true,{\"rs-layer:not(.rs-wtbindex):not(#_#_#_#_#_#_#_#_)\":true,\".rs-layer:not(.rs-wtbindex):not(#_#_#_#_#_#_#_)\":true,\"rs-alyer *:not(.rs-wtbindex):not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer *:not(.rs-wtbindex):not(#_#_#_#_#_#_#_)\":true},[\"outline:none\"]],[false,{\"rs-carousel-wrap\":false},[\"cursor:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/openhand.cur\\\"),move\"]],[false,{\"rs-carousel-wrap.dragged\":false},[\"cursor:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/closedhand.cur\\\"),move\"]],[false,{\"rs-carousel-wrap.noswipe\":false},[\"cursor:default\"]],[false,{\"rs-carousel-wrap\":false},[\"position:absolute\",\"overflow:hidden\",\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\"]],[false,{\"rs-carousel-space\":false},[\"clear:both\",\"display:block\",\"width:100%\",\"height:0px\",\"position:relative\"]],[false,{\".tp_inner_padding\":false},[\"box-sizing:border-box\"]],[false,{\".tp_inner_padding:not(#_#_#_#_#_#_#_)\":false},[\"max-height:none\"]],[false,{\".rs-layer.rs-selectable\":false},[\"user-select:text\"]],[false,{\"rs-px-mask\":false},[\"overflow:hidden\",\"display:block\",\"width:100%\",\"height:100%\",\"position:relative\"]],[false,{\"rs-module embed\":false,\"rs-module amp-iframe\":false,\"rs-module amp-google-document-embed\":false,\"rs-module amp-audio\":false,\"rs-module amp-video\":false,\"rs-module amp-youtube\":false},[\"border:none\"]],[false,{\"rs-module embed:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-iframe:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-google-document-embed:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-audio:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-video:not(#_#_#_#_#_#_#_#_)\":false,\"rs-module amp-youtube:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\"rs-bg-elem\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"z-index:0\",\"display:block\",\"pointer-events:none\"]],[false,{\".tp-blockmask\":false,\".tp-blockmask_in\":false,\".tp-blockmask_out\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"background:#fff\",\"z-index:1000\",\"transform:scaleX(0) scaleY(0)\"]],[false,{\"rs-zone\":false},[\"position:absolute\",\"width:100%\",\"left:0px\",\"box-sizing:border-box\",\"min-height:50px\",\"font-size:0px\",\"pointer-events:none\"]],[false,{\"rs-row-wrap\":false,\"rs-column\":false,\"rs-cbg-mask-wrap\":false},[\"display:block\",\"visibility:hidden\"]],[false,{\"rs-layer-wrap\":false,\"rs-parallax-wrap\":false,\"rs-loop-wrap\":false,\"rs-mask-wrap\":false},[\"display:block\"]],[false,{\"rs-column-wrap>rs-loop-wrap\":false},[\"z-index:1\"]],[false,{\"rs-layer-wrap\":false,\"rs-mask-wrap\":false,\"rs-cbg-mask-wrap\":false},[\"transform-style:flat\"]],[false,\"@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0){\"],[false,{\"rs-carousel-wrap rs-layer-wrap\":false,\"rs-carousel-wrap rs-loop-wrap\":false},[\"backface-visibility:hidden\",\"transform-style:preserve-3d\"]],[false,\"}\"],[false,{\".safarifix rs-layer-wrap\":false},[\"perspective:1000000\"]],[false,\"@-moz-document url-prefix(){\"],[false,{\"rs-layer-wrap\":false,\"rs-mask-wrap\":false,\"rs-cbg-mask-wrap\":false},[\"perspective:none\"]],[false,\"}\"],[false,{\"rs-mask-wrap\":false},[\"overflow:hidden\"]],[false,{\"rs-fullwidth-wrap\":false},[\"position:relative\",\"width:100%\",\"height:auto\",\"display:block\",\"overflow:visible\"]],[false,{\"rs-fullwidth-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"max-width:none\"]],[false,{\".rev_row_zone_top\":false},[\"top:0px\"]],[false,{\".rev_row_zone_bottom\":false},[\"bottom:0px\"]],[false,{\".rev_row_zone_middle\":false},[\"top:0px\"]],[false,{\"rs-column-wrap .rs-parallax-wrap\":false},[\"vertical-align:top\"]],[true,{\".rs-layer amp-img\":true,\".rs-layer amp-anim\":false,\"rs-layer amp-img\":true,\"rs-layer amp-anim\":false},[\"vertical-align:top\"]],[false,{\"rs-row\":false,\"rs-row.rs-layer\":false},[\"display:table\",\"position:relative\",\"table-layout:fixed\",\"box-sizing:border-box\",\"vertical-align:top\",\"height:auto\",\"font-size:0px\"]],[false,{\"rs-row:not(#_#_#_#_#_#_#_#_)\":false,\"rs-row.rs-layer:not(#_#_#_#_#_#_#_#_)\":false},[\"width:100%\"]],[false,{\".rs-layer.rs-waction.iospermaccwait.permanenthidden:not(#_#_#_#_#_#_#_)\":false},[\"display:none\",\"visibility:hidden\",\"pointer-events:none\"]],[false,{\"rs-column-wrap\":false},[\"display:table-cell\",\"position:relative\",\"vertical-align:top\",\"height:auto\",\"box-sizing:border-box\",\"font-size:0px\"]],[false,{\"rs-column\":false},[\"box-sizing:border-box\",\"display:block\",\"position:relative\"]],[false,{\"rs-column:not(#_#_#_#_#_#_#_#_)\":false},[\"width:100%\",\"height:auto\",\"white-space:normal\"]],[false,{\"rs-cbg-mask-wrap\":false},[\"position:absolute\",\"z-index:0\",\"box-sizing:border-box\"]],[false,{\"rs-column-wrap rs-cbg-mask-wrap\":false},[\"top:0px\",\"left:0px\",\"bottom:0px\",\"right:0px\"]],[false,{\"rs-column-bg\":false},[\"position:absolute\",\"z-index:0\",\"box-sizing:border-box\",\"width:100%\",\"height:100%\"]],[false,{\".rs-pelock *:not(#_#_#_#_#_#_#_)\":false},[\"pointer-events:none\"]],[false,{\"rs-column .rs-parallax-wrap\":false,\"rs-column rs-loop-wrap\":false,\"rs-column rs-mask-wrap\":false},[\"text-align:inherit\"]],[false,{\"rs-column rs-mask-wrap\":false},[\"display:inline-block\"]],[false,{\"rs-column .rs-parallax-wrap rs-loop-wrap\":false,\"rs-column .rs-parallax-wrap rs-mask-wrap\":false,\"rs-column .rs-parallax-wrap\":false},[\"line-height:0px\"]],[false,{\"rs-column .rs-parallax-wrap rs-loop-wrap:not(#_#_#_#_#_#_#_#_)\":false,\"rs-column .rs-parallax-wrap rs-mask-wrap:not(#_#_#_#_#_#_#_#_)\":false,\"rs-column .rs-parallax-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"position:relative\",\"left:auto\",\"top:auto\"]],[false,{\"rs-column .rs-parallax-wrap rs-loop-wrap\":false,\"rs-column .rs-parallax-wrap rs-mask-wrap\":false,\"rs-column .rs-parallax-wrap\":false,\"rs-column .rev_layer_in_column\":false},[\"vertical-align:top\"]],[false,{\".rev_break_columns:not(#_#_#_#_#_#_#_)\":false},[\"display:block\"]],[false,{\".rev_break_columns rs-column-wrap.rs-parallax-wrap:not(#_#_#_#_#_#_#_#_)\":false},[\"display:block\",\"width:100%\"]],[false,{\".rev_break_columns rs-column-wrap.rs-parallax-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_#_)\":false,\".tp-forcenotvisible:not(#_#_#_#_#_#_#_)\":false,\".tp-hide-revslider:not(#_#_#_#_#_#_#_)\":false,\"rs-row-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_#_)\":false,\"rs-column-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer.rs-layer-hidden:not(#_#_#_#_#_#_#_)\":false,\".rs-layer-audio.rs-layer-hidden:not(#_#_#_#_#_#_#_)\":false,\".rs-parallax-wrap.rs-layer-hidden:not(#_#_#_#_#_#_#_)\":false},[\"visibility:hidden\",\"display:none\"]],[false,{\"a.rs-layer.rs-nointeraction >.div:not(#_#_#_#_#_#_#_#_)\":false,\"rs-layer.rs-nointeraction:not(a):not(#_#_#_#_#_#_#_#_)\":false,\".rs-layer.rs-nointeraction:not(a):not(#_#_#_#_#_#_#_)\":false},[\"pointer-events:none\"]],[false,{\"rs-static-layers\":false},[\"position:absolute\",\"z-index:101\",\"top:0px\",\"left:0px\",\"display:block\",\"width:100%\",\"height:100%\",\"pointer-events:none\",\"overflow:hidden\"]],[false,{\"rs-static-layers.rs-stl-back\":false},[\"z-index:0\"]],[false,{\".rs-stl-visible:not(#_#_#_#_#_#_#_)\":false},[\"overflow:visible\"]],[false,{\".rs-layer rs-fcr\":false},[\"width:0\",\"height:0\",\"border-left:40px solid transparent\",\"border-right:0px solid transparent\",\"border-top:40px solid #00a8ff\",\"position:absolute\",\"right:100%\",\"top:0px\"]],[false,{\".rs-layer rs-fcrt\":false},[\"width:0\",\"height:0\",\"border-left:40px solid transparent\",\"border-right:0px solid transparent\",\"border-bottom:40px solid #00a8ff\",\"position:absolute\",\"right:100%\",\"top:0px\"]],[false,{\".rs-layer rs-bcr\":false},[\"width:0\",\"height:0\",\"border-left:0px solid transparent\",\"border-right:40px solid transparent\",\"border-bottom:40px solid #00a8ff\",\"position:absolute\",\"left:100%\",\"top:0px\"]],[false,{\".rs-layer rs-bcrt\":false},[\"width:0\",\"height:0\",\"border-left:0px solid transparent\",\"border-right:40px solid transparent\",\"border-top:40px solid #00a8ff\",\"position:absolute\",\"left:100%\",\"top:0px\"]],[false,{\".tp-layer-inner-rotation:not(#_#_#_#_#_#_#_)\":false},[\"position:relative\"]],[false,{\"amp-img.tp-slider-alternative-image\":false,\"amp-anim.tp-slider-alternative-image\":false},[\"width:100%\",\"height:auto\"]],[false,{\".noFilterClass:not(#_#_#_#_#_#_#_)\":false},[\"filter:none\"]],[false,{\"rs-bgvideo\":false},[\"position:absolute\",\"top:0px\",\"left:0px\",\"width:100%\",\"height:100%\",\"z-index:0\",\"display:block\"]],[false,{\".rs-layer.rs-fsv\":false},[\"top:0px\",\"left:0px\",\"position:absolute\",\"width:100%\",\"height:100%\"]],[false,{\".rs-layer.rs-fsv amp-audio\":false,\".rs-layer.rs-fsv amp-video\":false,\".rs-layer.rs-fsv amp-youtube\":false,\".rs-layer.rs-fsv amp-iframe\":false,\".rs-layer.rs-fsv amp-iframe amp-audio\":false,\".rs-layer.rs-fsv amp-iframe amp-video\":false,\".rs-layer.rs-fsv amp-iframe amp-youtube\":false},[\"width:100%\",\"height:100%\"]],[false,{\".rs-fsv amp-video\":false,\".rs-fsv amp-youtube\":false},[\"background:#000\"]],[false,{\".fullcoveredvideo rs-poster\":false},[\"background-position:center center\",\"background-size:cover\",\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\"]],[false,{\".videoisplaying .html5vid rs-poster\":false},[\"display:none\"]],[false,{\".tp-video-play-button\":false},[\"background:#000\",\"background:rgba(0,0,0,.3)\",\"border-radius:5px\",\"position:absolute\",\"top:50%\",\"left:50%\",\"color:#fff\",\"z-index:3\",\"z-index:4\",\"margin-top:-25px\",\"margin-left:-25px\",\"text-align:center\",\"cursor:pointer\",\"width:50px\",\"height:50px\",\"box-sizing:border-box\",\"display:inline-block\",\"vertical-align:top\",\"opacity:0\"]],[false,{\".tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"line-height:50px\",\"transition:opacity 300ms ease-out\"]],[false,{\".rs-ISM .tp-video-play-button\":false},[\"opacity:1\",\"z-index:6\"]],[false,{\".rs-ISM .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"transition:none\"]],[false,{\".rs-audio .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".rs-layer .html5vid:not(#_#_#_#_#_#_#_)\":false},[\"width:100%\",\"height:100%\"]],[false,{\".tp-video-play-button i\":false},[\"width:50px\",\"height:50px\",\"display:inline-block\",\"vertical-align:top\"]],[false,{\".tp-video-play-button i:not(#_#_#_#_#_#_#_#_)\":false},[\"text-align:center\",\"line-height:50px\",\"font-size:30px\"]],[false,{\".rs-layer:hover .tp-video-play-button\":false},[\"opacity:1\",\"display:block\",\"z-index:6\"]],[false,{\".rs-layer .tp-revstop\":false},[\"display:none\",\"width:15px\",\"transform:translateX(50%) translateY(50%)\",\"height:20px\"]],[false,{\".rs-layer .tp-revstop:not(#_#_#_#_#_#_#_)\":false},[\"border-right:5px solid #fff\",\"border-left:5px solid #fff\",\"margin-left:11px\",\"margin-top:5px\"]],[false,{\".videoisplaying .revicon-right-dir\":false},[\"display:none\"]],[false,{\".videoisplaying .tp-revstop\":false},[\"display:block\"]],[false,{\".videoisplaying .tp-video-play-button\":false},[\"display:none\"]],[false,{\".fullcoveredvideo .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".rs-fsv .rs-fsv amp-audio:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:contain\"]],[false,{\".rs-fsv .rs-fsv amp-video:not(#_#_#_#_#_#_#_#_)\":false,\".rs-fsv .rs-fsv amp-youtube:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:contain\"]],[false,{\".rs-layer-video .html5vid.hidefullscreen amp-video::-webkit-media-controls-fullscreen-button\":false,\".rs-layer-video .html5vid.hidefullscreen amp-youtube::-webkit-media-controls-fullscreen-button\":false},[\"display:none\"]],[false,\"@supports not (-ms-high-contrast:none){\"],[false,{\".rs-fsv .fullcoveredvideo amp-audio:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:cover\"]],[false,{\".rs-fsv .fullcoveredvideo amp-video:not(#_#_#_#_#_#_#_#_)\":false,\".rs-fsv .fullcoveredvideo amp-youtube:not(#_#_#_#_#_#_#_#_)\":false},[\"object-fit:cover\"]],[false,\"}\"],[false,{\".rs-fullvideo-cover\":false},[\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\",\"position:absolute\",\"background:transparent\",\"z-index:5\"]],[false,{\".rs-nolc .tp-video-play-button:not(#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-video::-webkit-media-controls-start-playback-button:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-youtube::-webkit-media-controls-start-playback-button:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-video::-webkit-media-controls:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-youtube::-webkit-media-controls:not(#_#_#_#_#_#_#_#_)\":false,\"rs-bgvideo amp-audio::-webkit-media-controls:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\".rs-audio .tp-video-controls:not(#_#_#_#_#_#_#_)\":false},[\"opacity:1\",\"visibility:visible\"]],[true,{\"rs-module h1.rs-layer\":true,\"rs-module h2.rs-layer\":true,\"rs-module h3.rs-layer\":true,\"rs-module h4.rs-layer\":true,\"rs-module h5.rs-layer\":true,\"rs-module h6.rs-layer\":true,\"rs-module div.rs-layer\":true,\"rs-module span.rs-layer\":true,\"rs-module p.rs-layer\":true},[\"margin:0\",\"padding:0\",\"margin-block-start:0\",\"margin-block-end:0\",\"margin-inline-start:0\",\"margin-inline-end:0\"]],[true,{\"rs-module h1.rs-layer:before\":true,\"rs-module h2.rs-layer:before\":true,\"rs-module h3.rs-layer:before\":true,\"rs-module h4.rs-layer:before\":true,\"rs-module h5.rs-layer:before\":true,\"rs-module h6.rs-layer:before\":true},[\"content:none\"]],[false,{\"rs-dotted\":false},[\"background-repeat:repeat\",\"width:100%\",\"height:100%\",\"position:absolute\",\"top:0px\",\"left:0px\",\"z-index:3\",\"display:block\",\"pointer-events:none\"]],[false,{\"rs-sbg-wrap rs-dotted\":false},[\"z-index:31\"]],[false,{\"rs-dotted.twoxtwo\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile.png\\\")\"]],[false,{\"rs-dotted.twoxtwowhite\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile_white.png\\\")\"]],[false,{\"rs-dotted.threexthree\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile_3x3.png\\\")\"]],[false,{\"rs-dotted.threexthreewhite\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/gridtile_3x3_white.png\\\")\"]],[false,{\".tp-shadowcover\":false},[\"width:100%\",\"height:100%\",\"top:0px\",\"left:0px\",\"background:#fff\",\"position:absolute\",\"z-index:-1\"]],[false,{\".tp-shadow1\":false},[\"box-shadow:0 10px 6px -6px rgba(0,0,0,.8)\"]],[false,{\".tp-shadow2:before\":false,\".tp-shadow2:after\":false,\".tp-shadow3:before\":false,\".tp-shadow4:after\":false},[\"z-index:-2\",\"position:absolute\",\"content:\\\"\\\"\",\"bottom:10px\",\"left:10px\",\"width:50%\",\"top:85%\",\"max-width:300px\",\"background:transparent\",\"box-shadow:0 15px 10px rgba(0,0,0,.8)\",\"transform:rotate(-3deg)\"]],[false,{\".tp-shadow2:after\":false,\".tp-shadow4:after\":false},[\"transform:rotate(3deg)\",\"right:10px\",\"left:auto\"]],[false,{\".tp-shadow5\":false},[\"position:relative\",\"box-shadow:0 1px 4px rgba(0,0,0,.3),0 0 40px rgba(0,0,0,.1) inset\"]],[false,{\".tp-shadow5:before\":false,\".tp-shadow5:after\":false},[\"content:\\\"\\\"\",\"position:absolute\",\"z-index:-2\",\"box-shadow:0 0 25px 0px rgba(0,0,0,.6)\",\"top:30%\",\"bottom:0\",\"left:20px\",\"right:20px\",\"border-radius:100px\\/20px\"]],[true,{\".rev-btn\":true,\".rev-btn:visited\":true},[\"box-shadow:none\",\"box-sizing:border-box\",\"cursor:pointer\"]],[true,{\".rev-btn:not(#_#_#_#_#_#_#_)\":true,\".rev-btn:visited:not(#_#_#_#_#_#_#_)\":true},[\"outline:none\",\"text-decoration:none\"]],[false,{\".rev-btn.rev-uppercase\":false,\".rev-btn.rev-uppercase:visited\":false},[\"text-transform:uppercase\"]],[true,{\".rev-btn i\":true},[\"font-size:inherit\",\"font-weight:normal\",\"position:relative\",\"top:0px\",\"transition:opacity .2s ease-out,margin .2s ease-out\",\"margin-left:0px\",\"line-height:inherit\"]],[false,{\".rev-btn.rev-hiddenicon i\":false},[\"font-size:inherit\",\"font-weight:normal\",\"position:relative\",\"top:0px\",\"transition:opacity .2s ease-out,margin .2s ease-out\",\"opacity:0\"]],[false,{\".rev-btn.rev-hiddenicon i:not(#_#_#_#_#_#_#_#_)\":false},[\"margin-left:0px\",\"width:0px\"]],[false,{\".rev-btn.rev-hiddenicon:hover i:not(#_#_#_#_#_#_#_#_)\":false},[\"opacity:1\",\"margin-left:10px\",\"width:auto\"]],[false,{\".rev-burger\":false},[\"position:relative\",\"box-sizing:border-box\",\"padding:22px 14px 22px 14px\",\"border-radius:50%\",\"border:1px solid rgba(51,51,51,.25)\",\"-webkit-tap-highlight-color:rgba(0,0,0,0)\",\"-webkit-tap-highlight-color:transparent\",\"cursor:pointer\"]],[false,{\".rev-burger span\":false},[\"display:block\",\"width:30px\",\"height:3px\",\"background:#333\",\"transition:.7s\",\"pointer-events:none\"]],[false,{\".rev-burger span:not(#_#_#_#_#_#_#_#_)\":false},[\"transform-style:flat\"]],[false,{\".rev-burger span:nth-child(2)\":false},[\"margin:3px 0\"]],[false,{\".quick_style_example_wrap .rev-burger:hover :first-child\":false,\"#dialog_addbutton .rev-burger:hover :first-child\":false,\".open .rev-burger :first-child\":false,\".open.rev-burger :first-child\":false},[\"transform:translateY(6px) rotate(-45deg)\"]],[false,{\".quick_style_example_wrap .rev-burger:hover :nth-child(2)\":false,\"#dialog_addbutton .rev-burger:hover :nth-child(2)\":false,\".open .rev-burger :nth-child(2)\":false,\".open.rev-burger :nth-child(2)\":false},[\"transform:rotate(-45deg)\",\"opacity:0\"]],[false,{\".quick_style_example_wrap .rev-burger:hover :last-child\":false,\"#dialog_addbutton .rev-burger:hover :last-child\":false,\".open .rev-burger :last-child\":false,\".open.rev-burger :last-child\":false},[\"transform:translateY(-6px) rotate(-135deg)\"]],[false,{\".rev-burger.revb-white\":false},[\"border:2px solid rgba(255,255,255,.2)\"]],[false,{\".rev-b-span-light span\":false,\".rev-burger.revb-white span\":false},[\"background:#fff\"]],[false,{\".rev-burger.revb-whitenoborder\":false},[\"border:0\"]],[false,{\".rev-burger.revb-whitenoborder span\":false},[\"background:#fff\"]],[false,{\".rev-burger.revb-darknoborder\":false},[\"border:0\"]],[false,{\".rev-b-span-dark span\":false,\".rev-burger.revb-darknoborder span\":false},[\"background:#333\"]],[false,{\".rev-burger.revb-whitefull\":false},[\"background:#fff\",\"border:none\"]],[false,{\".rev-burger.revb-whitefull span\":false},[\"background:#333\"]],[false,{\".rev-burger.revb-darkfull\":false},[\"background:#333\",\"border:none\"]],[false,{\".rev-burger.revb-darkfull span\":false},[\"background:#fff\"]],[true,\"@keyframes rev-ani-mouse{\"],[true,\"0%{opacity:1;top:29%}\"],[true,\"15%{opacity:1;top:70%}\"],[true,\"50%{opacity:0;top:70%}\"],[true,\"100%{opacity:0;top:29%}\"],[true,\"}\"],[false,{\".rev-scroll-btn\":false},[\"display:inline-block\",\"position:relative\",\"left:0\",\"right:0\",\"text-align:center\",\"cursor:pointer\",\"width:35px\",\"height:55px\",\"box-sizing:border-box\",\"border:3px solid white\",\"border-radius:23px\"]],[false,{\".rev-scroll-btn > *\":false},[\"display:inline-block\",\"line-height:18px\",\"font-size:13px\",\"font-weight:normal\",\"color:#7f8c8d\",\"color:#fff\",\"font-family:\\\"proxima-nova\\\",\\\"Helvetica Neue\\\",Helvetica,Arial,sans-serif\",\"letter-spacing:2px\"]],[false,{\".rev-scroll-btn > *:hover\":false,\".rev-scroll-btn > *:focus\":false,\".rev-scroll-btn > *.active\":false},[\"color:#fff\"]],[false,{\".rev-scroll-btn > *:hover\":false,\".rev-scroll-btn > *:focus\":false,\".rev-scroll-btn > *:active\":false,\".rev-scroll-btn > *.active\":false},[\"opacity:.8\"]],[false,{\".rev-scroll-btn.revs-fullwhite\":false},[\"background:#fff\"]],[false,{\".rev-scroll-btn.revs-fullwhite span\":false},[\"background:#333\"]],[false,{\".rev-scroll-btn.revs-fulldark\":false},[\"background:#333\",\"border:none\"]],[false,{\".rev-scroll-btn.revs-fulldark span\":false},[\"background:#fff\"]],[false,{\".rev-scroll-btn span\":false},[\"position:absolute\",\"display:block\",\"top:29%\",\"left:50%\",\"width:8px\",\"height:8px\",\"margin:-4px 0 0 -4px\",\"border-radius:50%\",\"animation:rev-ani-mouse 2.5s linear infinite\",\"background:#fff\"]],[false,{\".rev-scroll-btn.rev-b-span-dark\":false},[\"border-color:#333\"]],[false,{\".rev-scroll-btn.rev-b-span-dark span\":false,\".rev-scroll-btn.revs-dark span\":false},[\"background:#333\"]],[false,{\".rev-control-btn\":false},[\"position:relative\",\"display:inline-block\",\"z-index:5\",\"color:#fff\",\"font-size:20px\",\"line-height:60px\",\"font-weight:400\",\"font-style:normal\",\"font-family:Raleway\",\"text-decoration:none\",\"text-align:center\",\"background-color:#000\",\"background-color:rgba(0,0,0,.5)\",\"border-radius:50px\",\"text-shadow:none\",\"width:60px\",\"height:60px\",\"box-sizing:border-box\",\"cursor:pointer\"]],[false,{\".rev-cbutton-dark-sr\":false},[\"border-radius:3px\"]],[false,{\".rev-cbutton-light\":false},[\"color:#333\",\"background-color:rgba(255,255,255,.75)\"]],[false,{\".rev-cbutton-light-sr\":false},[\"color:#333\",\"border-radius:3px\",\"background-color:rgba(255,255,255,.75)\"]],[false,{\".rev-sbutton\":false},[\"line-height:37px\",\"width:37px\",\"height:37px\"]],[false,{\".rev-sbutton-blue\":false},[\"background-color:#3b5998\"]],[false,{\".rev-sbutton-lightblue\":false},[\"background-color:#00a0d1\"]],[false,{\".rev-sbutton-red\":false},[\"background-color:#dd4b39\"]],[false,{\"rs-progress\":false},[\"visibility:hidden\",\"position:absolute\",\"z-index:200\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-bar\":false,\".rs-progress-bar\":false},[\"display:block\",\"z-index:20\",\"box-sizing:border-box\",\"background-clip:content-box\",\"position:absolute\",\"line-height:0px\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-bgs\":false},[\"display:block\",\"z-index:15\",\"box-sizing:border-box\",\"width:100%\",\"position:absolute\",\"height:100%\",\"top:0px\",\"left:0px\"]],[false,{\"rs-progress-bg\":false},[\"display:block\",\"background-clip:content-box\",\"position:absolute\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-gap\":false},[\"display:block\",\"background-clip:content-box\",\"position:absolute\",\"width:100%\",\"height:100%\"]],[false,{\"rs-progress-vis\":false},[\"display:block\",\"width:100%\",\"height:100%\",\"position:absolute\",\"top:0px\",\"left:0px\"]],[true,{\".rs-layer amp-img\":true,\".rs-layer amp-anim\":false},[\"background:transparent\",\"-ms-filter:\\\"progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)\\\"\",\"filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=rgba(0,255,255,1),endColorstr=rgba(0,255,255,1))\"]],[false,{\".rs-layer.slidelink\":false},[\"cursor:pointer\",\"width:100%\",\"height:100%\"]],[false,{\".rs-layer.slidelink a\":false},[\"width:100%\",\"height:100%\",\"display:block\"]],[false,{\".rs-layer.slidelink a div\":false},[\"width:3000px\",\"height:1500px\",\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/coloredbg.png\\\") repeat\"]],[false,{\".rs-layer.slidelink a span\":false},[\"background:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/coloredbg.png\\\") repeat\",\"width:100%\",\"height:100%\",\"display:block\"]],[false,{\".rs-layer .rs-starring\":false},[\"display:inline-block\"]],[false,{\".rs-layer .rs-starring .star-rating\":false},[\"float:none\",\"display:inline-block\",\"vertical-align:top\"]],[false,{\".rs-layer .rs-starring .star-rating:not(#_#_#_#_#_#_#_)\":false},[\"color:#ffc321\"]],[false,{\".rs-layer .rs-starring .star-rating\":false,\".rs-layer .rs-starring-page .star-rating\":false},[\"position:relative\",\"height:1em\",\"width:5.4em\",\"font-family:star\"]],[false,{\".rs-layer .rs-starring .star-rating:not(#_#_#_#_#_#_#_)\":false,\".rs-layer .rs-starring-page .star-rating:not(#_#_#_#_#_#_#_)\":false},[\"font-size:1em\"]],[false,{\".rs-layer .rs-starring .star-rating:before\":false,\".rs-layer .rs-starring-page .star-rating:before\":false},[\"content:\\\"sssss\\\"\",\"color:#e0dadf\",\"float:left\",\"top:0\",\"left:0\",\"position:absolute\"]],[false,{\".rs-layer .rs-starring .star-rating span\":false},[\"overflow:hidden\",\"float:left\",\"top:0\",\"left:0\",\"position:absolute\",\"padding-top:1.5em\"]],[false,{\".rs-layer .rs-starring .star-rating span:not(#_#_#_#_#_#_#_#_)\":false},[\"font-size:1em\"]],[false,{\".rs-layer .rs-starring .star-rating span:before\":false},[\"content:\\\"SSSSS\\\"\",\"top:0\",\"position:absolute\",\"left:0\"]],[false,{\"rs-loader\":false},[\"top:50%\",\"left:50%\",\"z-index:10000\",\"position:absolute\"]],[false,{\"rs-loader.off:not(#_#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,{\"rs-loader.spinner0\":false},[\"width:40px\",\"height:40px\",\"background-color:#fff\",\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/loader.gif\\\")\",\"background-repeat:no-repeat\",\"background-position:center center\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"margin-top:-20px\",\"margin-left:-20px\",\"animation:tp-rotateplane 1.2s infinite ease-in-out\",\"border-radius:3px\"]],[false,{\"rs-loader.spinner1\":false},[\"width:40px\",\"height:40px\",\"background-color:#fff\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"margin-top:-20px\",\"margin-left:-20px\",\"animation:tp-rotateplane 1.2s infinite ease-in-out\",\"border-radius:3px\"]],[false,{\"rs-loader.spinner5\":false},[\"background-image:url(\\\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/assets\\/loader.gif\\\")\",\"background-repeat:no-repeat\",\"background-position:10px 10px\",\"background-color:#fff\",\"margin:-22px -22px\",\"width:44px\",\"height:44px\",\"border-radius:3px\"]],[true,\"@keyframes tp-rotateplane{\"],[true,\"0%{transform:perspective(120px) rotateX(0deg) rotateY(0deg)}\"],[true,\"50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0deg)}\"],[true,\"100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner2\":false},[\"width:40px\",\"height:40px\",\"margin-top:-20px\",\"margin-left:-20px\",\"background-color:#f00\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"border-radius:100%\",\"animation:tp-scaleout 1s infinite ease-in-out\"]],[true,\"@keyframes tp-scaleout{\"],[true,\"0%{transform:scale(0)}\"],[true,\"100%{transform:scale(1);opacity:0}\"],[true,\"}\"],[false,{\"rs-loader.spinner3\":false},[\"margin:-9px 0px 0px -35px\",\"width:70px\",\"text-align:center\"]],[false,{\"rs-loader.spinner3 .bounce1\":false,\"rs-loader.spinner3 .bounce2\":false,\"rs-loader.spinner3 .bounce3\":false},[\"width:18px\",\"height:18px\",\"background-color:#fff\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\",\"border-radius:100%\",\"display:inline-block\",\"animation:tp-bouncedelay 1.4s infinite ease-in-out\",\"animation-fill-mode:both\"]],[false,{\"rs-loader.spinner3 .bounce1\":false},[\"animation-delay:-.32s\"]],[false,{\"rs-loader.spinner3 .bounce2\":false},[\"animation-delay:-.16s\"]],[true,\"@keyframes tp-bouncedelay{\"],[true,\"0%,80%,100%{transform:scale(0)}\"],[true,\"40%{transform:scale(1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner4\":false},[\"margin:-20px 0px 0px -20px\",\"width:40px\",\"height:40px\",\"text-align:center\",\"animation:tp-rotate 2s infinite linear\"]],[false,{\"rs-loader.spinner4 .dot1\":false,\"rs-loader.spinner4 .dot2\":false},[\"width:60%\",\"height:60%\",\"display:inline-block\",\"position:absolute\",\"top:0\",\"background-color:#fff\",\"border-radius:100%\",\"animation:tp-bounce 2s infinite ease-in-out\",\"box-shadow:0px 0px 20px 0px rgba(0,0,0,.15)\"]],[false,{\"rs-loader.spinner4 .dot2\":false},[\"top:auto\",\"bottom:0px\",\"animation-delay:-1s\"]],[true,\"@keyframes tp-rotate{\"],[true,\"100%{transform:rotate(360deg)}\"],[true,\"}@keyframes tp-bounce{\"],[true,\"0%,100%{transform:scale(0)}\"],[true,\"50%{transform:scale(1)}\"],[true,\"}\"],[false,{\"rs-layer amp-iframe\":false},[\"visibility:hidden\"]],[false,{\"rs-layer.rs-ii-o amp-iframe\":false},[\"visibility:visible\"]],[true,{\"rs-layer input[type=\\\"text\\\"]\":true,\"rs-layer input[type=\\\"email\\\"]\":true,\"rs-layer input[type=\\\"url\\\"]\":true,\"rs-layer input[type=\\\"password\\\"]\":true,\"rs-layer input[type=\\\"search\\\"]\":true,\"rs-layer input[type=\\\"number\\\"]\":true,\"rs-layer input[type=\\\"tel\\\"]\":true,\"rs-layer input[type=\\\"range\\\"]\":true,\"rs-layer input[type=\\\"date\\\"]\":true,\"rs-layer input[type=\\\"month\\\"]\":true,\"rs-layer input[type=\\\"week\\\"]\":true,\"rs-layer input[type=\\\"time\\\"]\":true,\"rs-layer input[type=\\\"datetime\\\"]\":true,\"rs-layer input[type=\\\"datetime-local\\\"]\":true},[\"display:inline-block\"]],[true,{\"rs-layer input::placeholder\":true},[\"vertical-align:middle\"]],[true,{\"rs-layer input::placeholder:not(#_#_#_#_#_#_#_#_)\":true},[\"line-height:inherit\"]],[true,{\"a.rs-layer\":true},[\"transition:none\"]],[false,{\"rs-thumbs-wrap\":false,\"rs-tabs-wrap\":false,\"rs-thumbs\":false,\"rs-thumb\":false,\"rs-tab\":false,\"rs-bullet\":false,\"rs-bullets\":false,\"rs-navmask\":false,\"rs-tabs\":false,\"rs-arrow\":false},[\"display:block\",\"pointer-events:all\"]],[false,{\".tp-thumbs.navbar\":false,\".tp-bullets.navbar\":false,\".tp-tabs.navbar\":false},[\"border:none\",\"min-height:0\",\"margin:0\",\"border-radius:0\"]],[false,{\".tp-tabs\":false,\".tp-thumbs\":false,\".tp-bullets\":false},[\"position:absolute\",\"display:block\",\"z-index:1000\",\"top:0px\",\"left:0px\"]],[false,{\".tp-tab\":false,\".tp-thumb\":false},[\"cursor:pointer\",\"position:absolute\",\"opacity:.5\",\"box-sizing:border-box\"]],[false,{\".tp-arr-imgholder\":false,\"rs-poster\":false,\".tp-thumb-image\":false,\".tp-tab-image\":false},[\"background-position:center center\",\"background-size:cover\",\"width:100%\",\"height:100%\",\"display:block\",\"position:absolute\",\"top:0px\",\"left:0px\"]],[false,{\"rs-poster\":false},[\"cursor:pointer\",\"z-index:3\"]],[false,{\".tp-tab.rs-touchhover\":false,\".tp-tab.selected\":false,\".tp-thumb.rs-touchhover\":false,\".tp-thumb.selected\":false},[\"opacity:1\"]],[false,{\".tp-tab-mask:not(#_#_#_#_#_#_#_)\":false,\".tp-thumb-mask:not(#_#_#_#_#_#_#_)\":false},[\"box-sizing:border-box\"]],[false,{\".tp-tabs:not(#_#_#_#_#_#_#_)\":false,\".tp-thumbs:not(#_#_#_#_#_#_#_)\":false},[\"box-sizing:content-box\"]],[false,{\".tp-bullet\":false},[\"width:15px\",\"height:15px\",\"position:absolute\",\"background:#fff\",\"background:rgba(255,255,255,.3)\",\"cursor:pointer\"]],[false,{\".tp-bullet.selected\":false,\".tp-bullet.rs-touchhover\":false},[\"background:#fff\"]],[false,{\".tparrows\":false},[\"cursor:pointer\",\"background:#000\",\"background:rgba(0,0,0,.5)\",\"width:40px\",\"height:40px\",\"position:absolute\",\"display:block\",\"z-index:1000\"]],[false,{\".tparrows.rs-touchhover\":false},[\"background:#000\"]],[false,{\".tparrows:before\":false},[\"font-family:\\\"revicons\\\"\",\"font-size:15px\",\"color:#fff\",\"display:block\",\"line-height:40px\",\"text-align:center\"]],[false,{\".tparrows.tp-leftarrow:before\":false},[\"content:\\\"\\ue824\\\"\"]],[false,{\".tparrows.tp-rightarrow:before\":false},[\"content:\\\"\\ue825\\\"\"]],[true,{\".rs-layer [class^=\\\"pe-7s-\\\"]:before\":true,\".rs-layer [class*=\\\" pe-7s-\\\"]:before\":true,\".rs-layer [class^=\\\"pe-7s-\\\"]\":true,\".rs-layer [class*=\\\" pe-7s-\\\"]\":true},[\"width:auto\",\"margin:0\",\"line-height:inherit\",\"box-sizing:inherit\"]],[false,{\"rs-pzimg-wrap\":false},[\"display:block\"]],[false,{\"body.rtl .rs-pzimg:not(#_#_#_#_#_#_#_#_)\":false},[\"left:0\"]],[false,{\".rs_fake_cube\":false},[\"transform-style:preserve-3d\"]],[false,{\".rs_fake_cube\":false,\".rs_fake_cube_wall\":false},[\"position:absolute\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\",\"left:0px\",\"top:0px\",\"z-index:0\"]],[false,{\".rs-builder-mode rs-sbg-wrap canvas\":false,\"rs-sbg canvas\":false},[\"overflow:hidden\",\"z-index:5\",\"-webkit-backface-visibility:hidden\",\"backface-visibility:hidden\"]],[false,{\".dddwrappershadow\":false},[\"box-shadow:0 45px 100px rgba(0,0,0,.4)\"]],[false,{\".dddwrapper\":false},[\"transform-style:flat\",\"perspective:10000px\"]],[false,{\".rs_error_message_box\":false},[\"background:#111\",\"width:800px\",\"margin:40px auto\",\"padding:40px 20px\",\"text-align:center\",\"font-family:\\\"Open Sans\\\",sans-serif\"]],[false,{\".rs_error_message_oops\":false},[\"margin:0px 0px 20px\",\"line-height:60px\",\"font-size:34px\",\"color:#fff\"]],[false,{\".rs_error_message_content\":false},[\"margin:0px 0px 20px\",\"line-height:25px\",\"font-size:17px\",\"color:#fff\"]],[false,{\".rs_error_message_button\":false},[\"background:#333\",\"display:inline-block\",\"padding:10px 15px\",\"text-align:right\",\"border-radius:5px\",\"cursor:pointer\"]],[false,{\".rs_error_message_button:not(#_#_#_#_#_#_#_)\":false},[\"color:#fff\",\"text-decoration:none\"]],[false,{\".rs_error_message_button:hover\":false},[\"background:#5e35b1\"]],[false,{\".hglayerinfo\":false},[\"position:fixed\",\"bottom:0px\",\"left:0px\",\"color:#fff\",\"font-size:12px\",\"line-height:20px\",\"font-weight:600\",\"background:rgba(0,0,0,.75)\",\"padding:5px 10px\",\"z-index:2000\",\"white-space:normal\"]],[false,{\".hginfo\":false},[\"position:absolute\",\"top:-2px\",\"left:-2px\",\"color:#e74c3c\",\"font-size:12px\",\"font-weight:600\",\"background:#000\",\"padding:2px 5px\"]],[false,{\".indebugmode .rs-layer:hover:not(#_#_#_#_#_#_#_)\":false},[\"border:1px dashed #c0392b\"]],[false,{\".helpgrid\":false},[\"border:2px dashed #c0392b\",\"position:absolute\",\"top:0px\",\"left:0px\",\"z-index:0\"]],[false,{\"#revsliderlogloglog\":false},[\"padding:15px\",\"color:#fff\",\"position:fixed\",\"top:0px\",\"left:0px\",\"width:200px\",\"height:150px\",\"background:rgba(0,0,0,.7)\",\"z-index:100000\",\"font-size:10px\",\"overflow:scroll\"]],[false,{\".aden\":false},[\"filter:hue-rotate(-20deg) contrast(.9) saturate(.85) brightness(1.2)\"]],[false,{\".aden::after\":false},[\"background:linear-gradient(to right,rgba(66,10,14,.2),transparent)\",\"mix-blend-mode:darken\"]],[false,{\".perpetua::after\":false,\".reyes::after\":false},[\"mix-blend-mode:soft-light\",\"opacity:.5\"]],[false,{\".inkwell\":false},[\"filter:sepia(.3) contrast(1.1) brightness(1.1) grayscale(1)\"]],[false,{\".perpetua::after\":false},[\"background:linear-gradient(to bottom,#005b9a,#e6c13d)\"]],[false,{\".reyes\":false},[\"filter:sepia(.22) brightness(1.1) contrast(.85) saturate(.75)\"]],[false,{\".reyes::after\":false},[\"background:#efcdad\"]],[false,{\".gingham\":false},[\"filter:brightness(1.05) hue-rotate(-10deg)\"]],[false,{\".gingham::after\":false},[\"background:linear-gradient(to right,rgba(66,10,14,.2),transparent)\",\"mix-blend-mode:darken\"]],[false,{\".toaster\":false},[\"filter:contrast(1.5) brightness(.9)\"]],[false,{\".toaster::after\":false},[\"background:radial-gradient(circle,#804e0f,#3b003b)\",\"mix-blend-mode:screen\"]],[false,{\".walden\":false},[\"filter:brightness(1.1) hue-rotate(-10deg) sepia(.3) saturate(1.6)\"]],[false,{\".walden::after\":false},[\"background:#04c\",\"mix-blend-mode:screen\",\"opacity:.3\"]],[false,{\".hudson\":false},[\"filter:brightness(1.2) contrast(.9) saturate(1.1)\"]],[false,{\".hudson::after\":false},[\"background:radial-gradient(circle,#a6b1ff 50%,#342134)\",\"mix-blend-mode:multiply\",\"opacity:.5\"]],[false,{\".earlybird\":false},[\"filter:contrast(.9) sepia(.2)\"]],[false,{\".earlybird::after\":false},[\"background:radial-gradient(circle,#d0ba8e 20%,#360309 85%,#1d0210 100%)\",\"mix-blend-mode:overlay\"]],[false,{\".mayfair\":false},[\"filter:contrast(1.1) saturate(1.1)\"]],[false,{\".mayfair::after\":false},[\"background:radial-gradient(circle at 40% 40%,rgba(255,255,255,.8),rgba(255,200,200,.6),#111 60%)\",\"mix-blend-mode:overlay\",\"opacity:.4\"]],[false,{\".lofi\":false},[\"filter:saturate(1.1) contrast(1.5)\"]],[false,{\".lofi::after\":false},[\"background:radial-gradient(circle,transparent 70%,#222 150%)\",\"mix-blend-mode:multiply\"]],[false,{\"._1977\":false},[\"filter:contrast(1.1) brightness(1.1) saturate(1.3)\"]],[false,{\"._1977:after\":false},[\"background:rgba(243,106,188,.3)\",\"mix-blend-mode:screen\"]],[false,{\".brooklyn\":false},[\"filter:contrast(.9) brightness(1.1)\"]],[false,{\".brooklyn::after\":false},[\"background:radial-gradient(circle,rgba(168,223,193,.4) 70%,#c4b7c8)\",\"mix-blend-mode:overlay\"]],[false,{\".xpro2\":false},[\"filter:sepia(.3)\"]],[false,{\".xpro2::after\":false},[\"background:radial-gradient(circle,#e6e7e0 40%,rgba(43,42,161,.6) 110%)\",\"mix-blend-mode:color-burn\"]],[false,{\".nashville\":false},[\"filter:sepia(.2) contrast(1.2) brightness(1.05) saturate(1.2)\"]],[false,{\".nashville::after\":false},[\"background:rgba(0,70,150,.4)\",\"mix-blend-mode:lighten\"]],[false,{\".nashville::before\":false},[\"background:rgba(247,176,153,.56)\",\"mix-blend-mode:darken\"]],[false,{\".lark\":false},[\"filter:contrast(.9)\"]],[false,{\".lark::after\":false},[\"background:rgba(242,242,242,.8)\",\"mix-blend-mode:darken\"]],[false,{\".lark::before\":false},[\"background:#22253f\",\"mix-blend-mode:color-dodge\"]],[false,{\".moon\":false},[\"filter:grayscale(1) contrast(1.1) brightness(1.1)\"]],[false,{\".moon::before\":false},[\"background:#a0a0a0\",\"mix-blend-mode:soft-light\"]],[false,{\".moon::after\":false},[\"background:#383838\",\"mix-blend-mode:lighten\"]],[false,{\".clarendon\":false},[\"filter:contrast(1.2) saturate(1.35)\"]],[false,{\".clarendon:before\":false},[\"background:rgba(127,187,227,.2)\",\"mix-blend-mode:overlay\"]],[false,{\".willow\":false},[\"filter:grayscale(.5) contrast(.95) brightness(.9)\"]],[false,{\".willow::before\":false},[\"background-image:radial-gradient(circle,40%,#d4a9af 55%,#000 150%)\",\"mix-blend-mode:overlay\"]],[false,{\".rise\":false},[\"filter:brightness(1.05) sepia(.2) contrast(.9) saturate(.9)\"]],[false,{\".rise::after\":false},[\"background:radial-gradient(circle,rgba(232,197,152,.8),transparent 90%)\",\"mix-blend-mode:overlay\",\"opacity:.6\"]],[false,{\".rise::before\":false},[\"background:radial-gradient(circle,rgba(236,205,169,.15) 55%,rgba(50,30,7,.4))\",\"mix-blend-mode:multiply\"]],[false,{\"._1977:after\":false,\"._1977:before\":false,\"rs-pzimg-wrap.aden:after\":false,\".aden:before\":false,\".brooklyn:after\":false,\".brooklyn:before\":false,\".clarendon:after\":false,\".clarendon:before\":false,\".earlybird:after\":false,\".earlybird:before\":false,\".gingham:after\":false,\".gingham:before\":false,\".hudson:after\":false,\".hudson:before\":false,\".inkwell:after\":false,\".inkwell:before\":false,\".lark:after\":false,\".lark:before\":false,\".lofi:after\":false,\".lofi:before\":false,\".mayfair:after\":false,\".mayfair:before\":false,\".moon:after\":false,\".moon:before\":false,\".nashville:after\":false,\".nashville:before\":false,\".perpetua:after\":false,\".perpetua:before\":false,\".reyes:after\":false,\".reyes:before\":false,\".rise:after\":false,\".rise:before\":false,\".slumber:after\":false,\".slumber:before\":false,\".toaster:after\":false,\".toaster:before\":false,\".walden:after\":false,\".walden:before\":false,\".willow:after\":false,\".willow:before\":false,\".xpro2:after\":false,\".xpro2:before\":false},[\"content:\\\"\\\"\",\"display:block\",\"height:100%\",\"width:100%\",\"top:0\",\"left:0\",\"position:absolute\",\"pointer-events:none\"]],[false,{\"._1977\":false,\".aden\":false,\".brooklyn\":false,\".clarendon\":false,\".earlybird\":false,\".gingham\":false,\".hudson\":false,\".inkwell\":false,\".lark\":false,\".lofi\":false,\".mayfair\":false,\".moon\":false,\".nashville\":false,\".perpetua\":false,\".reyes\":false,\".rise\":false,\".slumber\":false,\".toaster\":false,\".walden\":false,\".willow\":false,\".xpro2\":false},[\"position:absolute\"]],[false,{\"._1977:before\":false,\".aden:before\":false,\".brooklyn:before\":false,\".clarendon:before\":false,\".earlybird:before\":false,\".gingham:before\":false,\".hudson:before\":false,\".inkwell:before\":false,\".lark:before\":false,\".lofi:before\":false,\".mayfair:before\":false,\".moon:before\":false,\".nashville:before\":false,\".perpetua:before\":false,\".reyes:before\":false,\".rise:before\":false,\".slumber:before\":false,\".toaster:before\":false,\".walden:before\":false,\".willow:before\":false,\".xpro2:before\":false},[\"z-index:30\"]],[false,{\"._1977:after\":false,\".aden:after\":false,\".brooklyn:after\":false,\".clarendon:after\":false,\".earlybird:after\":false,\".gingham:after\":false,\".hudson:after\":false,\".inkwell:after\":false,\".lark:after\":false,\".lofi:after\":false,\".mayfair:after\":false,\".moon:after\":false,\".nashville:after\":false,\".perpetua:after\":false,\".reyes:after\":false,\".rise:after\":false,\".slumber:after\":false,\".toaster:after\":false,\".walden:after\":false,\".willow:after\":false,\".xpro2:after\":false},[\"z-index:40\"]],[false,{\".slumber\":false},[\"filter:saturate(.66) brightness(1.05)\"]],[false,{\".slumber::after\":false},[\"background:rgba(125,105,24,.5)\",\"mix-blend-mode:soft-light\"]],[false,{\".slumber::before\":false},[\"background:rgba(69,41,12,.4)\",\"mix-blend-mode:lighten\"]],[false,{\".willow::after\":false},[\"background-color:#d8cdcb\",\"mix-blend-mode:color\"]],[false,\"@media not all and (min-resolution:.001dpcm){\"],[false,\"@supports (-webkit-appearance:none){\"],[false,{\".willow\":false},[\"filter:grayscale(1) contrast(.95) brightness(.9)\"]],[false,{\".willow::after\":false},[\"background-color:transparent\"]],[false,\"}\"],[false,\"}\"],[false,{\"rs-pzimg-wrap.perpetua:before\":false,\"rs-pzimg-wrap.perpetua:after\":false,\"rs-pzimg-wrap.nashville:before\":false,\"rs-pzimg-wrap.nashville:after\":false,\"rs-pzimg-wrap.xpro2:before\":false,\"rs-pzimg-wrap.xpro2:after\":false,\"rs-pzimg-wrap._1977:after\":false,\"rs-pzimg-wrap._1977:before\":false,\"rs-pzimg-wrap.aden:after\":false,\"rs-pzimg-wrap.aden:before\":false,\"rs-pzimg-wrap.brooklyn:after\":false,\"rs-pzimg-wrap.brooklyn:before\":false,\"rs-pzimg-wrap.clarendon:after\":false,\"rs-pzimg-wrap.clarendon:before\":false,\"rs-pzimg-wrap.earlybird:after\":false,\"rs-pzimg-wrap.earlybird:before\":false,\"rs-pzimg-wrap.gingham:after\":false,\"rs-pzimg-wrap.gingham:before\":false,\"rs-pzimg-wrap.hudson:after\":false,\"rs-pzimg-wrap.hudson:before\":false,\"rs-pzimg-wrap.inkwell:after\":false,\"rs-pzimg-wrap.inkwell:before\":false,\"rs-pzimg-wrap.lark:after\":false,\"rs-pzimg-wrap.lark:before\":false,\"rs-pzimg-wrap.lofi:after\":false,\"rs-pzimg-wrap.lofi:before\":false,\"rs-pzimg-wrap.mayfair:after\":false,\"rs-pzimg-wrap.mayfair:before\":false,\"rs-pzimg-wrap.moon:after\":false,\"rs-pzimg-wrap.moon:before\":false,\"rs-pzimg-wrap.reyes:after\":false,\"rs-pzimg-wrap.reyes:before\":false,\"rs-pzimg-wrap.rise:after\":false,\"rs-pzimg-wrap.rise:before\":false,\"rs-pzimg-wrap.slumber:after\":false,\"rs-pzimg-wrap.slumber:before\":false,\"rs-pzimg-wrap.toaster:after\":false,\"rs-pzimg-wrap.toaster:before\":false,\"rs-pzimg-wrap.walden:after\":false,\"rs-pzimg-wrap.walden:before\":false,\"rs-pzimg-wrap.willow:after\":false,\"rs-pzimg-wrap.willow:before\":false,\"rs-pzimg-wrap:before\":false,\"rs-pzimg-wrap:after\":false},[\"height:500%\",\"width:500%\"]],[false,{\"rs-loader.spinner6\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"display:inline-block\",\"-webkit-animation:rs-revealer-6 1.4s linear infinite\",\"animation:rs-revealer-6 1.4s linear infinite\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span\":false},[\"position:absolute\",\"vertical-align:top\",\"border-radius:100%\",\"display:inline-block\",\"width:8px\",\"height:8px\",\"margin-left:16px\",\"transform-origin:center 20px\",\"-webkit-transform-origin:center 20px\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(2)\":false},[\"transform:rotate(36deg)\",\"-webkit-transform:rotate(36deg)\",\"opacity:.1\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(3)\":false},[\"transform:rotate(72deg)\",\"-webkit-transform:rotate(72deg)\",\"opacity:.2\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(4)\":false},[\"transform:rotate(108deg)\",\"-webkit-transform:rotate(108deg)\",\"opacity:.3\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(5)\":false},[\"transform:rotate(144deg)\",\"-webkit-transform:rotate(144deg)\",\"opacity:.4\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(6)\":false},[\"transform:rotate(180deg)\",\"-webkit-transform:rotate(180deg)\",\"opacity:.5\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(7)\":false},[\"transform:rotate(216deg)\",\"-webkit-transform:rotate(216deg)\",\"opacity:.6\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(8)\":false},[\"transform:rotate(252deg)\",\"-webkit-transform:rotate(252deg)\",\"opacity:.7\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(9)\":false},[\"transform:rotate(288deg)\",\"-webkit-transform:rotate(288deg)\",\"opacity:.8\"]],[false,{\"rs-loader.spinner6 .rs-spinner-inner span:nth-child(10)\":false},[\"transform:rotate(324deg)\",\"-webkit-transform:rotate(324deg)\",\"opacity:.9\"]],[true,\"@keyframes rs-revealer-6{\"],[true,\"from{transform:rotate(0)}\"],[true,\"to{transform:rotate(360deg)}\"],[true,\"}@-webkit-keyframes rs-revealer-6{\"],[true,\"from{-webkit-transform:rotate(0)}\"],[true,\"to{-webkit-transform:rotate(360deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner7\":false},[\"width:35px\",\"height:35px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner7 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"display:inline-block\",\"padding:0\",\"border-radius:100%\",\"border:2px solid\",\"-webkit-animation:rs-revealer-7 .8s linear infinite\",\"animation:rs-revealer-7 .8s linear infinite\"]],[true,\"@keyframes rs-revealer-7{\"],[true,\"from{transform:rotate(0)}\"],[true,\"to{transform:rotate(360deg)}\"],[true,\"}@-webkit-keyframes rs-revealer-7{\"],[true,\"from{-webkit-transform:rotate(0)}\"],[true,\"to{-webkit-transform:rotate(360deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner8\":false},[\"width:50px\",\"height:50px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner8 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"display:inline-block\",\"padding:0\",\"text-align:left\"]],[false,{\"rs-loader.spinner8 .rs-spinner-inner span\":false},[\"position:absolute\",\"display:inline-block\",\"width:100%\",\"height:100%\",\"border-radius:100%\",\"-webkit-animation:rs-revealer-8 1.6s linear infinite\",\"animation:rs-revealer-8 1.6s linear infinite\"]],[false,{\"rs-loader.spinner8 .rs-spinner-inner span:last-child\":false},[\"animation-delay:-.8s\",\"-webkit-animation-delay:-.8s\"]],[true,\"@keyframes rs-revealer-8{\"],[true,\"0%{transform:scale(0,0);opacity:.5}\"],[true,\"100%{transform:scale(1,1);opacity:0}\"],[true,\"}@-webkit-keyframes rs-revealer-8{\"],[true,\"0%{-webkit-transform:scale(0,0);opacity:.5}\"],[true,\"100%{-webkit-transform:scale(1,1);opacity:0}\"],[true,\"}\"],[false,{\"rs-loader.spinner9\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner9 .rs-spinner-inner span\":false},[\"display:block\",\"width:100%\",\"height:100%\",\"border-radius:50%\",\"opacity:.6\",\"position:absolute\",\"top:0\",\"left:0\",\"-webkit-animation:rs-revealer-9 2s infinite ease-in-out\",\"animation:rs-revealer-9 2s infinite ease-in-out\"]],[false,{\"rs-loader.spinner9 .rs-spinner-inner span:last-child\":false},[\"-webkit-animation-delay:-1s\",\"animation-delay:-1s\"]],[true,\"@-webkit-keyframes rs-revealer-9{\"],[true,\"0%,100%{-webkit-transform:scale(0)}\"],[true,\"50%{-webkit-transform:scale(1)}\"],[true,\"}@keyframes rs-revealer-9{\"],[true,\"0%,100%{transform:scale(0);-webkit-transform:scale(0)}\"],[true,\"50%{transform:scale(1);-webkit-transform:scale(1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner10\":false},[\"width:54px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"text-align:center\",\"font-size:10px\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span\":false},[\"display:block\",\"display:inline-block\",\"height:100%\",\"width:6px\",\"-webkit-animation:rs-revealer-10 1.2s infinite ease-in-out\",\"animation:rs-revealer-10 1.2s infinite ease-in-out\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(2)\":false},[\"-webkit-animation-delay:-1.1s\",\"animation-delay:-1.1s\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(3)\":false},[\"-webkit-animation-delay:-1s\",\"animation-delay:-1s\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(4)\":false},[\"-webkit-animation-delay:-.9s\",\"animation-delay:-.9s\"]],[false,{\"rs-loader.spinner10 .rs-spinner-inner span:nth-child(5)\":false},[\"-webkit-animation-delay:-.8s\",\"animation-delay:-.8s\"]],[true,\"@-webkit-keyframes rs-revealer-10{\"],[true,\"0%,100%,40%{-webkit-transform:scaleY(.4)}\"],[true,\"20%{-webkit-transform:scaleY(1)}\"],[true,\"}@keyframes rs-revealer-10{\"],[true,\"0%,100%,40%{transform:scaleY(.4);-webkit-transform:scaleY(.4)}\"],[true,\"20%{transform:scaleY(1);-webkit-transform:scaleY(1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner11\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span\":false},[\"display:block\",\"width:33%\",\"height:33%\",\"background-color:#333\",\"float:left\",\"-webkit-animation:rs-revealer-11 1.3s infinite ease-in-out\",\"animation:rs-revealer-11 1.3s infinite ease-in-out\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(1)\":false},[\"-webkit-animation-delay:.2s\",\"animation-delay:.2s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(2)\":false},[\"-webkit-animation-delay:.3s\",\"animation-delay:.3s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(3)\":false},[\"-webkit-animation-delay:.4s\",\"animation-delay:.4s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(4)\":false},[\"-webkit-animation-delay:.1s\",\"animation-delay:.1s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(5)\":false},[\"-webkit-animation-delay:.2s\",\"animation-delay:.2s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(6)\":false},[\"-webkit-animation-delay:.3s\",\"animation-delay:.3s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(7)\":false},[\"-webkit-animation-delay:0s\",\"animation-delay:0s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(8)\":false},[\"-webkit-animation-delay:.1s\",\"animation-delay:.1s\"]],[false,{\"rs-loader.spinner11 .rs-spinner-inner span:nth-child(9)\":false},[\"-webkit-animation-delay:.2s\",\"animation-delay:.2s\"]],[true,\"@-webkit-keyframes rs-revealer-11{\"],[true,\"0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}\"],[true,\"35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}\"],[true,\"}@keyframes rs-revealer-11{\"],[true,\"0%,100%,70%{-webkit-transform:scale3D(1,1,1);transform:scale3D(1,1,1)}\"],[true,\"35%{-webkit-transform:scale3D(0,0,1);transform:scale3D(0,0,1)}\"],[true,\"}\"],[false,{\"rs-loader.spinner12\":false},[\"width:35px\",\"height:35px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner12 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"-webkit-animation:rs-revealer-12 1s infinite linear\",\"animation:rs-revealer-12 1s infinite linear\"]],[true,\"@-webkit-keyframes rs-revealer-12{\"],[true,\"0%{-webkit-transform:rotate(0)}\"],[true,\"100%{-webkit-transform:rotate(360deg)}\"],[true,\"}@keyframes rs-revealer-12{\"],[true,\"0%{transform:rotate(0)}\"],[true,\"100%{transform:rotate(360deg)}\"],[true,\"}\"],[false,{\"rs-loader.spinner13\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span\":false},[\"display:block\",\"width:40%\",\"height:40%\",\"position:absolute\",\"border-radius:50%\",\"-webkit-animation:rs-revealer-13 2s ease infinite\",\"animation:rs-revealer-13 2s ease infinite\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span:nth-child(1)\":false},[\"animation-delay:-1.5s\",\"-webkit-animation-delay:-1.5s\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span:nth-child(2)\":false},[\"animation-delay:-1s\",\"-webkit-animation-delay:-1s\"]],[false,{\"rs-loader.spinner13 .rs-spinner-inner span:nth-child(3)\":false},[\"animation-delay:-.5s\",\"-webkit-animation-delay:-.5s\"]],[true,\"@keyframes rs-revealer-13{\"],[true,\"0%,100%{transform:translate(0)}\"],[true,\"25%{transform:translate(160%)}\"],[true,\"50%{transform:translate(160%,160%)}\"],[true,\"75%{transform:translate(0,160%)}\"],[true,\"}@-webkit-keyframes rs-revealer-13{\"],[true,\"0%,100%{-webkit-transform:translate(0)}\"],[true,\"25%{-webkit-transform:translate(160%)}\"],[true,\"50%{-webkit-transform:translate(160%,160%)}\"],[true,\"75%{-webkit-transform:translate(0,160%)}\"],[true,\"}\"],[false,{\"rs-loader.spinner14\":false},[\"width:40px\",\"height:40px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\",\"animation:rs-revealer-14 1s infinite linear\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span\":false},[\"display:block\",\"position:absolute\",\"top:50%\",\"left:50%\",\"width:16px\",\"height:16px\",\"border-radius:50%\",\"margin:-8px\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(1)\":false},[\"-webkit-animation:rs-revealer-14-1 2s infinite\",\"animation:rs-revealer-14-1 2s infinite\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(2)\":false},[\"-webkit-animation:rs-revealer-14-2 2s infinite\",\"animation:rs-revealer-14-2 2s infinite\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(3)\":false},[\"-webkit-animation:rs-revealer-14-3 2s infinite\",\"animation:rs-revealer-14-3 2s infinite\"]],[false,{\"rs-loader.spinner14 .rs-spinner-inner span:nth-child(4)\":false},[\"-webkit-animation:rs-revealer-14-4 2s infinite\",\"animation:rs-revealer-14-4 2s infinite\"]],[true,\"@-webkit-keyframes rs-revealer-14-1{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(80%,80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(80%,80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@-webkit-keyframes rs-revealer-14-2{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(80%,-80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(80%,-80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@-webkit-keyframes rs-revealer-14-3{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(-80%,-80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(-80%,-80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@-webkit-keyframes rs-revealer-14-4{\"],[true,\"0%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{-webkit-transform:rotate3d(0,0,1,0deg) translate3d(-80%,80%,0)}\"],[true,\"80%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(-80%,80%,0)}\"],[true,\"100%{-webkit-transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-1{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(80%,80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(80%,80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-2{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(80%,-80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(80%,-80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-3{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(-80%,-80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(-80%,-80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}@keyframes rs-revealer-14-4{\"],[true,\"0%{transform:rotate3d(0,0,1,0deg) translate3d(0,0,0)}\"],[true,\"20%{transform:rotate3d(0,0,1,0deg) translate3d(-80%,80%,0)}\"],[true,\"80%{transform:rotate3d(0,0,1,360deg) translate3d(-80%,80%,0)}\"],[true,\"100%{transform:rotate3d(0,0,1,360deg) translate3d(0,0,0)}\"],[true,\"}\"],[false,{\"rs-loader.spinner15\":false},[\"width:40px\",\"height:40px\",\"margin-top:-4px\",\"-webkit-transform:translate(-50%,-50%)\",\"transform:translate(-50%,-50%)\"]],[false,{\"rs-loader.spinner15 .rs-spinner-inner\":false},[\"width:100%\",\"height:100%\"]],[false,{\"rs-loader.spinner15 .rs-spinner-inner span\":false},[\"display:block\",\"width:20px\",\"height:20px\",\"position:absolute\",\"top:0\",\"left:0\",\"-webkit-animation:rs-revealer-15 1.8s infinite ease-in-out\",\"animation:rs-revealer-15 1.8s infinite ease-in-out\"]],[false,{\"rs-loader.spinner15 .rs-spinner-inner:last-child\":false},[\"-webkit-animation-delay:-.9s\",\"animation-delay:-.9s\"]],[true,\"@-webkit-keyframes rs-revealer-15{\"],[true,\"25%{-webkit-transform:translateX(30px) rotate(-90deg) scale(.5)}\"],[true,\"50%{-webkit-transform:translateX(30px) translateY(30px) rotate(-180deg)}\"],[true,\"75%{-webkit-transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5)}\"],[true,\"100%{-webkit-transform:rotate(-360deg)}\"],[true,\"}@keyframes rs-revealer-15{\"],[true,\"25%{transform:translateX(30px) rotate(-90deg) scale(.5);-webkit-transform:translateX(30px) rotate(-90deg) scale(.5)}\"],[true,\"50%{transform:translateX(30px) translateY(30px) rotate(-179deg);-webkit-transform:translateX(30px) translateY(30px) rotate(-179deg)}\"],[true,\"50.1%{transform:translateX(30px) translateY(30px) rotate(-180deg);-webkit-transform:translateX(30px) translateY(30px) rotate(-180deg)}\"],[true,\"75%{transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5);-webkit-transform:translateX(0) translateY(30px) rotate(-270deg) scale(.5)}\"],[true,\"100%{transform:rotate(-360deg);-webkit-transform:rotate(-360deg)}\"],[true,\"}\"],[false,{\".bgcanvas\":false},[\"display:none\",\"position:absolute\",\"overflow:hidden\"]],[false,{\".RSscrollbar-measure\":false},[\"width:100px\",\"height:100px\",\"overflow:scroll\",\"position:absolute\",\"top:-9999px\"]],[false,{\".avada-has-rev-slider-styles .rev_slider_wrapper\":false},[\"transform:none\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":5235,\"final_size\":0,\"element\":{\"name\":\"style\",\"attributes\":{\"id\":\"rs-plugin-settings-inline-css\",\"type\":\"text\\/css\"}},\"origin\":\"style_element\",\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":134,\"function\":\"RevSliderFront::add_inline_css\",\"hook\":\"wp_footer\",\"priority\":10,\"dependency_type\":\"style\",\"extra_key\":\"after\",\"text\":\"\\t\\t#rev_slider_7_1_wrapper .uranus.tparrows{width:50px; height:50px; background:rgba(255,255,255,0)}#rev_slider_7_1_wrapper .uranus.tparrows:before{width:50px; height:50px; line-height:50px; font-size:15px; transition:all 0.3s;-webkit-transition:all 0.3s}#rev_slider_7_1_wrapper .uranus.tparrows.rs-touchhover:before{opacity:0.75}#rev_slider_7_1_wrapper .ares_copy42.tp-bullets{}#rev_slider_7_1_wrapper .ares_copy42.tp-bullets:before{content:\' \';position:absolute;width:100%;height:100%;background:transparent;padding:10px;margin-left:-10px;margin-top:-10px;box-sizing:content-box}#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet{width:5px;height:5px;position:absolute;background:#FFF;border-radius:50%;cursor:pointer;box-sizing:content-box}#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.rs-touchhover,#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.selected{background:#FFF; width:7px;height:7px; top:-1px!important}#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet-title{position:absolute; color:#888888; font-size:12px; padding:0px 10px; font-weight:600; right:27px; top:-4px; background:rgba(255,255,255,0.75); visibility:hidden; transform:translatex(-20px); -webkit-transform:translatex(-20px); transition:transform 0.3s; -webkit-transition:transform 0.3s; line-height:20px; white-space:nowrap; display:none}#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet-title:after{width:0px;height:0px;border-style:solid;border-width:10px 0 10px 10px;border-color:transparent transparent transparent rgba(255,255,255,0.75);content:\' \'; position:absolute; right:-10px;top:0px}#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.rs-touchhover .tp-bullet-title{visibility:visible; transform:translatex(0px); -webkit-transform:translatex(0px)}#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.selected.rs-touchhover .tp-bullet-title{background:#ffffff}#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.selected.rs-touchhover .tp-bullet-title:after{border-color:transparent transparent transparent #ffffff}#rev_slider_7_1_wrapper .ares_copy42.tp-bullets.rs-touchhover .tp-bullet-title{visibility:hidden}#rev_slider_7_1_wrapper .ares_copy42.tp-bullets.rs-touchhover .tp-bullet.rs-touchhover .tp-bullet-title{visibility:visible; transform:translateX(0px) translatey(0px); -webkit-transform:translateX(0px) translatey(0px)}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet-title{right:auto; left:27px; transform:translatex(20px); -webkit-transform:translatex(20px)}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet-title:after{border-width:10px 10px 10px 0 !important; border-color:transparent rgba(255,255,255,0.75) transparent transparent; right:auto !important; left:-10px !important}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet.selected.rs-touchhover .tp-bullet-title:after{border-color:transparent #ffffff transparent transparent !important}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet-title,#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet-title{top:-35px; left:50%; right:auto; transform:translateX(-50%) translateY(-10px);-webkit-transform:translateX(-50%) translateY(-10px)}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet-title:after,#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet-title:after{border-width:10px 10px 0px 10px; border-color:rgba(255,255,255,0.75) transparent transparent transparent; right:auto; left:50%; margin-left:-10px; top:auto; bottom:-10px}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet.selected.rs-touchhover .tp-bullet-title:after,#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet.selected.rs-touchhover .tp-bullet-title:after{border-color:#ffffff transparent transparent transparent}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet.rs-touchhover .tp-bullet-title,#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet.rs-touchhover .tp-bullet-title{transform:translateX(-50%) translatey(0px); -webkit-transform:translateX(-50%) translatey(0px)}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet-title{top:25px; left:50%; right:auto; transform:translateX(-50%) translateY(10px);-webkit-transform:translateX(-50%) translateY(10px)}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet-title:after{border-width:0 10px 10px 10px; border-color:transparent transparent rgba(255,255,255,0.75) transparent; right:auto; left:50%; margin-left:-10px; bottom:auto; top:-10px}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet.selected.rs-touchhover .tp-bullet-title:after{border-color:transparent transparent #ffffff transparent}#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet.rs-touchhover .tp-bullet-title{transform:translateX(-50%) translatey(0px); -webkit-transform:translateX(-50%) translatey(0px)}@media (min-width:300px) and (max-width:768px){.tp-tabs,.tp-thumbs,.tp-bullets{display:none !important}}\",\"handle\":\"rs-plugin-settings\"}],\"priority\":70,\"hash\":\"4edc0f42f13b10bbd40b93ed4864131a\",\"parse_time\":0.06254005432128906,\"shake_time\":4.100799560546875e-5,\"cached\":true,\"imported_font_urls\":[],\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[false,{\"#rev_slider_7_1_wrapper .uranus.tparrows\":false},[\"width:50px\",\"height:50px\",\"background:rgba(255,255,255,0)\"]],[false,{\"#rev_slider_7_1_wrapper .uranus.tparrows:before\":false},[\"width:50px\",\"height:50px\",\"line-height:50px\",\"font-size:15px\",\"transition:all .3s\",\"-webkit-transition:all .3s\"]],[false,{\"#rev_slider_7_1_wrapper .uranus.tparrows.rs-touchhover:before\":false},[\"opacity:.75\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.tp-bullets:before\":false},[\"content:\\\" \\\"\",\"position:absolute\",\"width:100%\",\"height:100%\",\"background:transparent\",\"padding:10px\",\"margin-left:-10px\",\"margin-top:-10px\",\"box-sizing:content-box\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet\":false},[\"width:5px\",\"height:5px\",\"position:absolute\",\"background:#fff\",\"border-radius:50%\",\"cursor:pointer\",\"box-sizing:content-box\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.rs-touchhover\":false,\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.selected\":false},[\"background:#fff\",\"width:7px\",\"height:7px\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.rs-touchhover:not(#_#_#_#_#_#_#_#_)\":false,\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.selected:not(#_#_#_#_#_#_#_#_)\":false},[\"top:-1px\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet-title\":false},[\"position:absolute\",\"color:#888\",\"font-size:12px\",\"padding:0px 10px\",\"font-weight:600\",\"right:27px\",\"top:-4px\",\"background:rgba(255,255,255,.75)\",\"visibility:hidden\",\"transform:translatex(-20px)\",\"-webkit-transform:translatex(-20px)\",\"transition:transform .3s\",\"-webkit-transition:transform .3s\",\"line-height:20px\",\"white-space:nowrap\",\"display:none\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet-title:after\":false},[\"width:0px\",\"height:0px\",\"border-style:solid\",\"border-width:10px 0 10px 10px\",\"border-color:transparent transparent transparent rgba(255,255,255,.75)\",\"content:\\\" \\\"\",\"position:absolute\",\"right:-10px\",\"top:0px\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.rs-touchhover .tp-bullet-title\":false},[\"visibility:visible\",\"transform:translatex(0px)\",\"-webkit-transform:translatex(0px)\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.selected.rs-touchhover .tp-bullet-title\":false},[\"background:#fff\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42 .tp-bullet.selected.rs-touchhover .tp-bullet-title:after\":false},[\"border-color:transparent transparent transparent #fff\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.tp-bullets.rs-touchhover .tp-bullet-title\":false},[\"visibility:hidden\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.tp-bullets.rs-touchhover .tp-bullet.rs-touchhover .tp-bullet-title\":false},[\"visibility:visible\",\"transform:translateX(0px) translatey(0px)\",\"-webkit-transform:translateX(0px) translatey(0px)\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet-title\":false},[\"right:auto\",\"left:27px\",\"transform:translatex(20px)\",\"-webkit-transform:translatex(20px)\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet-title:after\":false},[\"border-color:transparent rgba(255,255,255,.75) transparent transparent\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet-title:after:not(#_#_#_#_#_#_#_#_#_)\":false},[\"border-width:10px 10px 10px 0\",\"right:auto\",\"left:-10px\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet.selected.rs-touchhover .tp-bullet-title:after:not(#_#_#_#_#_#_#_#_#_)\":false},[\"border-color:transparent #fff transparent transparent\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet-title\":false,\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet-title\":false},[\"top:-35px\",\"left:50%\",\"right:auto\",\"transform:translateX(-50%) translateY(-10px)\",\"-webkit-transform:translateX(-50%) translateY(-10px)\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet-title:after\":false,\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet-title:after\":false},[\"border-width:10px 10px 0px 10px\",\"border-color:rgba(255,255,255,.75) transparent transparent transparent\",\"right:auto\",\"left:50%\",\"margin-left:-10px\",\"top:auto\",\"bottom:-10px\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet.selected.rs-touchhover .tp-bullet-title:after\":false,\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet.selected.rs-touchhover .tp-bullet-title:after\":false},[\"border-color:#fff transparent transparent transparent\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet.rs-touchhover .tp-bullet-title\":false,\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet.rs-touchhover .tp-bullet-title\":false},[\"transform:translateX(-50%) translatey(0px)\",\"-webkit-transform:translateX(-50%) translatey(0px)\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet-title\":false},[\"top:25px\",\"left:50%\",\"right:auto\",\"transform:translateX(-50%) translateY(10px)\",\"-webkit-transform:translateX(-50%) translateY(10px)\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet-title:after\":false},[\"border-width:0 10px 10px 10px\",\"border-color:transparent transparent rgba(255,255,255,.75) transparent\",\"right:auto\",\"left:50%\",\"margin-left:-10px\",\"bottom:auto\",\"top:-10px\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet.selected.rs-touchhover .tp-bullet-title:after\":false},[\"border-color:transparent transparent #fff transparent\"]],[false,{\"#rev_slider_7_1_wrapper .ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet.rs-touchhover .tp-bullet-title\":false},[\"transform:translateX(-50%) translatey(0px)\",\"-webkit-transform:translateX(-50%) translatey(0px)\"]],[false,\"@media (min-width:300px) and (max-width:768px){\"],[false,{\".tp-tabs:not(#_#_#_#_#_#_#_)\":false,\".tp-thumbs:not(#_#_#_#_#_#_#_)\":false,\".tp-bullets:not(#_#_#_#_#_#_#_)\":false},[\"display:none\"]],[false,\"}\"]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":59,\"final_size\":57,\"element\":{\"name\":\"section\",\"attributes\":{\"data-amp-original-style\":\"background-color: #121D3D;\",\"class\":\"amp-wp-61d4b04\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"602068f9dec4c05112d946a4b1d7d0a3\",\"parse_time\":0.0005710124969482422,\"shake_time\":3.814697265625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-61d4b04:not(#_#_#_#_#_)\":true},[\"background-color:#121d3d\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":129,\"final_size\":128,\"element\":{\"name\":\"rs-module-wrap\",\"attributes\":{\"id\":\"rev_slider_7_1_wrapper\",\"data-alias\":\"slider-02-01-2022\",\"data-source\":\"gallery\",\"data-amp-original-style\":\"visibility:hidden;background:transparent;padding:0;margin:0px auto;margin-top:0;margin-bottom:0;\",\"class\":\"amp-wp-58a99c6\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"2b9d737fe3de4ea7c708c05ce03f2a09\",\"parse_time\":0.000720977783203125,\"shake_time\":3.0994415283203125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-58a99c6:not(#_#_#_#_#_)\":true},[\"visibility:hidden\",\"background:transparent\",\"padding:0\",\"margin:0px auto\",\"margin-top:0\",\"margin-bottom:0\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":52,\"final_size\":50,\"element\":{\"name\":\"rs-slide\",\"attributes\":{\"data-key\":\"rs-27\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner1.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"112c6091d6ff7d5241b1adf8ca901016\",\"parse_time\":0.0004780292510986328,\"shake_time\":3.0994415283203125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-b38de02:not(#_#_#_#_#_)\":true},[\"position:absolute\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-27-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,50;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"5c1ba2e9472bf7716ead6a2e12670cac\",\"parse_time\":0.0005280971527099609,\"shake_time\":1.0013580322265625e-5,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fcd20be:not(#_#_#_#_#_)\":true},[\"z-index:10\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":153,\"final_size\":152,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-27-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,26,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,auto,681px,454px;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"be67f1f785e9d5d1c6ca54f27372baa8\",\"parse_time\":0.0007510185241699219,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-ac51d1e:not(#_#_#_#_#_)\":true},[\"z-index:9\",\"font-family:\\\"Raleway\\\"\",\"color:#24c1ff\",\"font-size:23px\",\"line-height:28px\",\"text-transform:inherit\",\"margin-bottom:20px\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":44,\"final_size\":43,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-27-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"bbfcefaead6a66022e70d0b0a9946cf6\",\"parse_time\":0.0007910728454589844,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d31032b:not(#_#_#_#_#_)\":true},[\"z-index:12\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-27-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"74f97608ca23b9ed09ba478fbc32a19c\",\"parse_time\":0.0012199878692626953,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d3bb080:not(#_#_#_#_#_)\":true},[\"z-index:11\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":148,\"final_size\":145,\"element\":{\"name\":\"a\",\"attributes\":{\"id\":\"slider-7-slide-27-layer-8\",\"class\":\"rs-layer rev-btn amp-wp-dfa190a\",\"href\":\"https:\\/\\/translucent.local\\/tekteams\\/\",\"target\":\"_self\",\"data-type\":\"button\",\"data-color\":\"#182647\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,2px,0;yo:479px,490px,489px,400px;\",\"data-text\":\"w:normal;s:18,17,15,20;l:50,41,50,50;fw:900,900,900,700;a:left,left,center,center;\",\"data-dim\":\"minh:0px,none,none,none;\",\"data-padding\":\"t:7,6,0,0;r:50,41,63,53;b:7,6,0,0;l:50,41,63,53;\",\"data-border\":\"bor:30px,30px,30px,30px;\",\"data-frame_0\":\"x:0,0,0px,0px;y:0,0,0px,0px;\",\"data-frame_1\":\"x:0,0,0px,0px;y:0,0,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-frame_hover\":\"c:#182647;bgc:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);bor:30px,30px,30px,30px;sp:100;e:power1.inOut;bri:120%;\",\"data-amp-original-style\":\"z-index:8;background:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);font-family:\'Raleway\';\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"141dd3c895332502f4f5ffdc7a38015d\",\"parse_time\":0.000993967056274414,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-dfa190a:not(#_#_#_#_#_)\":true},[\"z-index:8\",\"background:linear-gradient(90deg,rgba(39,217,203,1) 0%,rgba(161,242,102,1) 100%)\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":52,\"final_size\":50,\"element\":{\"name\":\"rs-slide\",\"attributes\":{\"data-key\":\"rs-30\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/home4.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"112c6091d6ff7d5241b1adf8ca901016\",\"parse_time\":0.0004780292510986328,\"shake_time\":3.0994415283203125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-b38de02:not(#_#_#_#_#_)\":true},[\"position:absolute\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-30-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,50;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,630px,443px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"5c1ba2e9472bf7716ead6a2e12670cac\",\"parse_time\":0.0005280971527099609,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fcd20be:not(#_#_#_#_#_)\":true},[\"z-index:10\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":153,\"final_size\":152,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-30-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,26,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,687px,728px,454px;h:auto,auto,61px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"be67f1f785e9d5d1c6ca54f27372baa8\",\"parse_time\":0.0007510185241699219,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-ac51d1e:not(#_#_#_#_#_)\":true},[\"z-index:9\",\"font-family:\\\"Raleway\\\"\",\"color:#24c1ff\",\"font-size:23px\",\"line-height:28px\",\"text-transform:inherit\",\"margin-bottom:20px\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":44,\"final_size\":43,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-30-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"bbfcefaead6a66022e70d0b0a9946cf6\",\"parse_time\":0.0007910728454589844,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d31032b:not(#_#_#_#_#_)\":true},[\"z-index:12\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-30-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"74f97608ca23b9ed09ba478fbc32a19c\",\"parse_time\":0.0012199878692626953,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d3bb080:not(#_#_#_#_#_)\":true},[\"z-index:11\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":148,\"final_size\":145,\"element\":{\"name\":\"a\",\"attributes\":{\"id\":\"slider-7-slide-30-layer-8\",\"class\":\"rs-layer rev-btn amp-wp-dfa190a\",\"href\":\"https:\\/\\/translucent.local\\/cloud-native-solutions\\/\",\"target\":\"_self\",\"data-type\":\"button\",\"data-color\":\"#182647\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,2px,0;yo:480px,490px,489px,400px;\",\"data-text\":\"w:normal;s:18,17,15,20;l:50,41,50,50;fw:900,900,900,700;a:left,left,center,center;\",\"data-dim\":\"minh:0px,none,none,none;\",\"data-padding\":\"t:7,6,0,0;r:50,41,63,53;b:7,6,0,0;l:50,41,63,53;\",\"data-border\":\"bor:30px,30px,30px,30px;\",\"data-frame_0\":\"x:0,0,0px,0px;y:0,0,0px,0px;\",\"data-frame_1\":\"x:0,0,0px,0px;y:0,0,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-frame_hover\":\"c:#182647;bgc:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);bor:30px,30px,30px,30px;sp:100;e:power1.inOut;bri:120%;\",\"data-amp-original-style\":\"z-index:8;background:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);font-family:\'Raleway\';\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"141dd3c895332502f4f5ffdc7a38015d\",\"parse_time\":0.000993967056274414,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-dfa190a:not(#_#_#_#_#_)\":true},[\"z-index:8\",\"background:linear-gradient(90deg,rgba(39,217,203,1) 0%,rgba(161,242,102,1) 100%)\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":52,\"final_size\":50,\"element\":{\"name\":\"rs-slide\",\"attributes\":{\"data-key\":\"rs-29\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/home31.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"112c6091d6ff7d5241b1adf8ca901016\",\"parse_time\":0.0004780292510986328,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-b38de02:not(#_#_#_#_#_)\":true},[\"position:absolute\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-29-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,50;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,846px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"5c1ba2e9472bf7716ead6a2e12670cac\",\"parse_time\":0.0005280971527099609,\"shake_time\":9.059906005859375e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fcd20be:not(#_#_#_#_#_)\":true},[\"z-index:10\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":153,\"final_size\":152,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-29-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,26,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,1025px,722px,454px;h:auto,auto,89px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"be67f1f785e9d5d1c6ca54f27372baa8\",\"parse_time\":0.0007510185241699219,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-ac51d1e:not(#_#_#_#_#_)\":true},[\"z-index:9\",\"font-family:\\\"Raleway\\\"\",\"color:#24c1ff\",\"font-size:23px\",\"line-height:28px\",\"text-transform:inherit\",\"margin-bottom:20px\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":44,\"final_size\":43,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-29-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"bbfcefaead6a66022e70d0b0a9946cf6\",\"parse_time\":0.0007910728454589844,\"shake_time\":4.0531158447265625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d31032b:not(#_#_#_#_#_)\":true},[\"z-index:12\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-29-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"74f97608ca23b9ed09ba478fbc32a19c\",\"parse_time\":0.0012199878692626953,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d3bb080:not(#_#_#_#_#_)\":true},[\"z-index:11\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":148,\"final_size\":145,\"element\":{\"name\":\"a\",\"attributes\":{\"id\":\"slider-7-slide-29-layer-8\",\"class\":\"rs-layer rev-btn amp-wp-dfa190a\",\"href\":\"https:\\/\\/translucent.local\\/tek-world\\/\",\"target\":\"_self\",\"data-type\":\"button\",\"data-color\":\"#182647\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,2px,0;yo:480px,490px,489px,400px;\",\"data-text\":\"w:normal;s:18,17,15,20;l:50,41,50,50;fw:900,900,900,700;a:left,left,center,center;\",\"data-dim\":\"minh:0px,none,none,none;\",\"data-padding\":\"t:7,6,0,0;r:50,41,63,53;b:7,6,0,0;l:50,41,63,53;\",\"data-border\":\"bor:30px,30px,30px,30px;\",\"data-frame_0\":\"x:0,0,0px,0px;y:0,0,0px,0px;\",\"data-frame_1\":\"x:0,0,0px,0px;y:0,0,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-frame_hover\":\"c:#182647;bgc:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);bor:30px,30px,30px,30px;sp:100;e:power1.inOut;bri:120%;\",\"data-amp-original-style\":\"z-index:8;background:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);font-family:\'Raleway\';\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"141dd3c895332502f4f5ffdc7a38015d\",\"parse_time\":0.000993967056274414,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-dfa190a:not(#_#_#_#_#_)\":true},[\"z-index:8\",\"background:linear-gradient(90deg,rgba(39,217,203,1) 0%,rgba(161,242,102,1) 100%)\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":52,\"final_size\":50,\"element\":{\"name\":\"rs-slide\",\"attributes\":{\"data-key\":\"rs-28\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner2.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"112c6091d6ff7d5241b1adf8ca901016\",\"parse_time\":0.0004780292510986328,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-b38de02:not(#_#_#_#_#_)\":true},[\"position:absolute\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-28-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,42;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"5c1ba2e9472bf7716ead6a2e12670cac\",\"parse_time\":0.0005280971527099609,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fcd20be:not(#_#_#_#_#_)\":true},[\"z-index:10\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":153,\"final_size\":152,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-28-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,25,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,auto,714px,454px;h:auto,auto,89px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"be67f1f785e9d5d1c6ca54f27372baa8\",\"parse_time\":0.0007510185241699219,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-ac51d1e:not(#_#_#_#_#_)\":true},[\"z-index:9\",\"font-family:\\\"Raleway\\\"\",\"color:#24c1ff\",\"font-size:23px\",\"line-height:28px\",\"text-transform:inherit\",\"margin-bottom:20px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":44,\"final_size\":43,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-28-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"bbfcefaead6a66022e70d0b0a9946cf6\",\"parse_time\":0.0007910728454589844,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d31032b:not(#_#_#_#_#_)\":true},[\"z-index:12\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":66,\"final_size\":65,\"element\":{\"name\":\"rs-layer\",\"attributes\":{\"id\":\"slider-7-slide-28-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:150;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"74f97608ca23b9ed09ba478fbc32a19c\",\"parse_time\":0.0012199878692626953,\"shake_time\":1.0013580322265625e-5,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-d3bb080:not(#_#_#_#_#_)\":true},[\"z-index:11\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":148,\"final_size\":145,\"element\":{\"name\":\"a\",\"attributes\":{\"id\":\"slider-7-slide-28-layer-8\",\"class\":\"rs-layer rev-btn amp-wp-dfa190a\",\"href\":\"https:\\/\\/calendly.com\\/tc-results\",\"target\":\"_self\",\"data-type\":\"button\",\"data-color\":\"#182647\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,2px,0;yo:480px,490px,489px,400px;\",\"data-text\":\"w:normal;s:18,17,15,20;l:50,41,50,50;fw:900,900,900,700;a:left,left,center,center;\",\"data-dim\":\"minh:0px,none,none,none;\",\"data-padding\":\"t:7,6,0,0;r:50,41,63,53;b:7,6,0,0;l:50,41,63,53;\",\"data-border\":\"bor:30px,30px,30px,30px;\",\"data-frame_0\":\"x:0,0,0px,0px;y:0,0,0px,0px;\",\"data-frame_1\":\"x:0,0,0px,0px;y:0,0,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-frame_hover\":\"c:#182647;bgc:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);bor:30px,30px,30px,30px;sp:100;e:power1.inOut;bri:120%;\",\"data-amp-original-style\":\"z-index:8;background:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);font-family:\'Raleway\';\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}],\"priority\":70,\"hash\":\"141dd3c895332502f4f5ffdc7a38015d\",\"parse_time\":0.000993967056274414,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-dfa190a:not(#_#_#_#_#_)\":true},[\"z-index:8\",\"background:linear-gradient(90deg,rgba(39,217,203,1) 0%,rgba(161,242,102,1) 100%)\",\"font-family:\\\"Raleway\\\"\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"amp-img\",\"attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2019\\/03\\/2000px-The_Hospital_for_Sick_Children_Logo.svg_.png \",\"width\":\"310\",\"height\":\"100\",\"class\":\"amp-wp-enforced-sizes amp-wp-035b591\",\"layout\":\"intrinsic\",\"data-amp-original-style\":\"max-height: 50px;\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"392cacdfabd8f873a803a5357eeac04a\",\"parse_time\":0.0007510185241699219,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-035b591:not(#_#_#_#_#_)\":true},[\"max-height:50px\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":9.059906005859375e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":9.5367431640625e-7,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":1.9073486328125e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":false,\"duplicate\":true},{\"group\":\"amp-custom\",\"original_size\":50,\"final_size\":48,\"element\":{\"name\":\"span\",\"attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}],\"priority\":70,\"hash\":\"98df992c0ba16abdbb97ddc5e185c31f\",\"parse_time\":0.006999015808105469,\"shake_time\":2.1457672119140625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-fe3f5cc:not(#_#_#_#_#_)\":true},[\"font-weight:400\"]]],\"included\":true},{\"group\":\"amp-custom\",\"original_size\":47,\"final_size\":45,\"element\":{\"name\":\"div\",\"attributes\":{\"data-amp-original-style\":\"display: none;\",\"class\":\"amp-wp-224b51a\"}},\"origin\":\"style_attribute\",\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/contact-form-functions.php\",\"line\":105,\"function\":\"wpcf7_contact_form_tag_func\",\"shortcode\":\"contact-form-7\"}],\"priority\":70,\"hash\":\"0d67461750eb10cd670295b16ae09708\",\"parse_time\":0.0006639957427978516,\"shake_time\":3.814697265625e-6,\"cached\":true,\"important_count\":0,\"kept_error_count\":0,\"preload_font_urls\":[],\"shaken_tokens\":[[true,{\".amp-wp-224b51a:not(#_#_#_#_#_)\":true},[\"display:none\"]]],\"included\":true}]'); INSERT INTO `wp_postmeta` VALUES (169805,4795,'_pinterest_shares','0'),(169806,4795,'_total_shares','0'),(169808,4794,'_pinterest_shares','0'),(169809,4794,'_total_shares','0'),(169818,4805,'top-image',''),(169819,4805,'_top-image','field_5c488d805f5d4'),(169820,4805,'top_title',''),(169821,4805,'_top_title','field_5edfac92f4226'),(169822,4805,'top-text',''),(169823,4805,'_top-text','field_5c488e575f5d5'),(169824,4805,'features',''),(169825,4805,'_features','field_5c4890bc3ae1f'),(169826,4805,'about-title',''),(169827,4805,'_about-title','field_5c488e7a5f5d6'),(169828,4805,'about-text',''),(169829,4805,'_about-text','field_5c488e945f5d7'),(169830,4805,'problems',''),(169831,4805,'_problems','field_5c488ec75f5d8'),(169832,4805,'solutions',''),(169833,4805,'_solutions','field_5c488ed95f5d9'),(169834,4805,'difference',''),(169835,4805,'_difference','field_5c488eed5f5da'),(169836,4805,'panel',''),(169837,4805,'_panel','field_5c488f195f5db'),(169838,4805,'more-text',''),(169839,4805,'_more-text','field_5c488f8f5f5df'),(169840,4805,'phrase',''),(169841,4805,'_phrase','field_5c488faf5f5e0'),(169842,4805,'author',''),(169843,4805,'_author','field_5c488fba5f5e1'),(169844,4805,'top_description','Machine Learning'),(169845,4805,'_top_description','field_63170e008cc99'),(169846,4805,'top_background_desktop','4803'),(169847,4805,'_top_background_desktop','field_631eb1728b709'),(169848,4805,'top_background_mobile','4804'),(169849,4805,'_top_background_mobile','field_631eb1988b70a'),(169850,4805,'section_one_section_one_breadcrumb','THE FUTURE'),(169851,4805,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(169852,4805,'section_one_section_one_title','

How intelligent is your
\r\nbusiness?

'),(169853,4805,'_section_one_section_one_title','field_6316f2764091e'),(169854,4805,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(169855,4805,'_section_one_section_one_content','field_6316f2934091f'),(169856,4805,'section_one_section_one_image','4679'),(169857,4805,'_section_one_section_one_image','field_6316f2ab40920'),(169858,4805,'section_one_section_one_button_text','Book a consultation now'),(169859,4805,'_section_one_section_one_button_text','field_6316f2ca40921'),(169860,4805,'section_one',''),(169861,4805,'_section_one','field_6316f7ba1cd27'),(169862,4805,'section_two_section_two_button_text','Book a consultation now'),(169863,4805,'_section_two_section_two_button_text','field_6316fe1ff751b'),(169864,4805,'section_two_section_two_tab_one_header_title','Problems'),(169865,4805,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(169866,4805,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(169867,4805,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(169868,4805,'section_two_section_two_tab_one_image','4680'),(169869,4805,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(169870,4805,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(169871,4805,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(169872,4805,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(169873,4805,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(169874,4805,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(169875,4805,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(169876,4805,'section_two_section_two_tab_two_header_title','Solutions'),(169877,4805,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(169878,4805,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(169879,4805,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(169880,4805,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(169881,4805,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(169882,4805,'section_two_section_two_tab_two_content_icon_1','4683'),(169883,4805,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(169884,4805,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(169885,4805,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(169886,4805,'section_two_section_two_tab_two_content_icon_2','4684'),(169887,4805,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(169888,4805,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(169889,4805,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(169890,4805,'section_two_section_two_tab_two_content_icon_3','4685'),(169891,4805,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(169892,4805,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(169893,4805,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(169894,4805,'section_two_section_two_tab_two_content_icon_4','4686'),(169895,4805,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(169896,4805,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(169897,4805,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(169898,4805,'section_two_section_two_tab_three_header_title','Difference'),(169899,4805,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(169900,4805,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(169901,4805,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(169902,4805,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(169903,4805,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(169904,4805,'section_two_section_two_tab_three_image','4705'),(169905,4805,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(169906,4805,'section_two',''),(169907,4805,'_section_two','field_6316fa2531589'),(169908,4805,'section_three_section_three_title','Trusted Relationships'),(169909,4805,'_section_three_section_three_title','field_6316febdf751c'),(169910,4805,'section_three_section_three_one_icon','4687'),(169911,4805,'_section_three_section_three_one_icon','field_6316fefff751e'),(169912,4805,'section_three_section_three_one_title','Data Entry Automation'),(169913,4805,'_section_three_section_three_one_title','field_6316ff1cf751f'),(169914,4805,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169915,4805,'_section_three_section_three_one_content','field_6316ff29f7520'),(169916,4805,'section_three_section_three_two_icon','4688'),(169917,4805,'_section_three_section_three_two_icon','field_6316ff77f7523'),(169918,4805,'section_three_section_three_two_title','Product Recommendation'),(169919,4805,'_section_three_section_three_two_title','field_6316ff90f7524'),(169920,4805,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169921,4805,'_section_three_section_three_two_content','field_6316ff5df7522'),(169922,4805,'section_three_section_three_three_icon','4689'),(169923,4805,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(169924,4805,'section_three_section_three_three_title','Medical Diagnosis'),(169925,4805,'_section_three_section_three_three_title','field_6316fff5f7527'),(169926,4805,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169927,4805,'_section_three_section_three_three_content','field_63170010f7528'),(169928,4805,'section_three_section_three_four_icon','4690'),(169929,4805,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(169930,4805,'section_three_section_three_four_title','Clients: Who is buying what'),(169931,4805,'_section_three_section_three_four_title','field_631707992b1ca'),(169932,4805,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169933,4805,'_section_three_section_three_four_content','field_631707b42b1cb'),(169934,4805,'section_three_section_three_five_icon','4691'),(169935,4805,'_section_three_section_three_five_icon','field_631707e52b1cd'),(169936,4805,'section_three_section_three_five_title','User Behavior'),(169937,4805,'_section_three_section_three_five_title','field_631708002b1ce'),(169938,4805,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169939,4805,'_section_three_section_three_five_content','field_6317081c2b1cf'),(169940,4805,'section_three_section_three_six_icon','4692'),(169941,4805,'_section_three_section_three_six_icon','field_631708572b1d1'),(169942,4805,'section_three_section_three_six_title','BI: Automated Reporting'),(169943,4805,'_section_three_section_three_six_title','field_631708712b1d2'),(169944,4805,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169945,4805,'_section_three_section_three_six_content','field_6317088d2b1d3'),(169946,4805,'section_three_section_three_seven_icon','4693'),(169947,4805,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(169948,4805,'section_three_section_three_seven_title','Detecting Spam in Emails'),(169949,4805,'_section_three_section_three_seven_title','field_631708da2b1d6'),(169950,4805,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169951,4805,'_section_three_section_three_seven_content','field_631708f62b1d7'),(169952,4805,'section_three_section_three_eight_icon','4694'),(169953,4805,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(169954,4805,'section_three_section_three_eight_title','Analytics'),(169955,4805,'_section_three_section_three_eight_title','field_631709462b1da'),(169956,4805,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(169957,4805,'_section_three_section_three_eight_content','field_6317095e2b1db'),(169958,4805,'section_three',''),(169959,4805,'_section_three','field_6316fcf4f751a'),(169960,4805,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(169961,4805,'_section_four_section_four_content','field_63170ac9aa9a2'),(169962,4805,'section_four_section_four_button_text','Book a consultation now'),(169963,4805,'_section_four_section_four_button_text','field_63170b08aa9a3'),(169964,4805,'section_four',''),(169965,4805,'_section_four','field_63170a81aa9a1'),(169966,4805,'section_five_section_five_title','We listen. We learn. We inform.'),(169967,4805,'_section_five_section_five_title','field_63170b8564fc2'),(169968,4805,'section_five_section_five_quote','

“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”

'),(169969,4805,'_section_five_section_five_quote','field_632013fd76a3e'),(169970,4805,'section_five_section_five_footer','forbes.com'),(169971,4805,'_section_five_section_five_footer','field_63170bad64fc4'),(169972,4805,'section_five',''),(169973,4805,'_section_five','field_63170b5f64fc1'),(169974,4805,'footer_title','We treat your business like our own.'),(169975,4805,'_footer_title','field_63170f4c8cc9a'),(169976,4805,'footer_button_text','Let\'s talk!'),(169977,4805,'_footer_button_text','field_63170f6f8cc9b'),(169978,4805,'top_title_1','CLOUD NATIVE SOLUTIONS'),(169979,4805,'_top_title_1','field_631ed55492adc'),(169980,4805,'top_title_page','CLOUD NATIVE SOLUTIONS'),(169981,4805,'_top_title_page','field_631ed55492adc'),(169982,4563,'_pinterest_shares','0'),(169983,4563,'_total_shares','0'),(169984,4563,'swp_cache_timestamp','461960'),(169990,4779,'_wp_attachment_image_alt','learn_informa_plan'),(169991,4777,'_wp_attachment_image_alt','24-7_2'),(169992,4776,'_wp_attachment_image_alt','kubernetes_and_conteiners_2'),(169993,4775,'_wp_attachment_image_alt','kubernetes_certified_icon'),(169994,4758,'_wp_attachment_image_alt','service-level-indicator'),(169995,4756,'_wp_attachment_image_alt','service-level-objectives'),(169996,4754,'_wp_attachment_image_alt','service-level-agreeents'),(169997,4752,'_wp_attachment_image_alt','site-relicability'),(169998,4750,'_wp_attachment_image_alt','production-grade-kubernets'),(169999,4748,'_wp_attachment_image_alt','continuous-delivery'),(170000,4746,'_wp_attachment_image_alt','application-modernization'),(170001,4744,'_wp_attachment_image_alt','design-buid-and-monitor'),(170002,4741,'_wp_attachment_image_alt','cloud-native-transformation'),(170003,4738,'_wp_attachment_image_alt','cloud-native-tranformation'),(170004,4736,'_wp_attachment_image_alt','continuous'),(170005,4734,'_wp_attachment_image_alt','cloud-native'),(170006,4710,'_wp_attachment_image_alt','1160358'),(170007,4705,'_wp_attachment_image_alt','difference'),(170008,4694,'_wp_attachment_image_alt','analytics'),(170009,4693,'_wp_attachment_image_alt','detecting_spam'),(170010,4692,'_wp_attachment_image_alt','automated_reporting'),(170011,4691,'_wp_attachment_image_alt','user_behavior'),(170012,4690,'_wp_attachment_image_alt','who_is_buying'),(170013,4689,'_wp_attachment_image_alt','medical-diagnosis'),(170014,4688,'_wp_attachment_image_alt','product-recommendation'),(170015,4687,'_wp_attachment_image_alt','data_entry'),(170016,4686,'_wp_attachment_image_alt','Group 8786@3x'),(170017,4685,'_wp_attachment_image_alt','Group 8785@3x'),(170018,4684,'_wp_attachment_image_alt','Group 8784@3x'),(170019,4683,'_wp_attachment_image_alt','Group 8783@3x'),(170020,4680,'_wp_attachment_image_alt','hand_tool'),(170021,4679,'_wp_attachment_image_alt','machine_learning_banner'),(170022,4496,'_wp_attachment_image_alt','shutterstock_1874749972'),(170023,4428,'_wp_attachment_image_alt','bg-people-tc1-min'),(170024,4427,'_wp_attachment_image_alt','bg-people-tc1-mo-min'),(170025,4409,'_wp_attachment_image_alt','kubernets_graph-min'),(170026,4408,'_wp_attachment_image_alt','mrdata2-min'),(170027,4407,'_wp_attachment_image_alt','devops_roadmap-min'),(170028,4406,'_wp_attachment_image_alt','kubernetes-w-min'),(170029,4405,'_wp_attachment_image_alt','devops_coonsulting-min'),(170030,4366,'_wp_attachment_image_alt','app-banner-min'),(170031,4365,'_wp_attachment_image_alt','Union-21-min'),(170032,4358,'_wp_attachment_image_alt','Group 8556'),(170033,4357,'_wp_attachment_image_alt','Group 8710'),(170034,4356,'_wp_attachment_image_alt','Group 8712'),(170035,4355,'_wp_attachment_image_alt','Group 8713'),(170036,4354,'_wp_attachment_image_alt','Group 8711'),(170037,4353,'_wp_attachment_image_alt','bg-people-tc1-mo'),(170038,4352,'_wp_attachment_image_alt','icon3'),(170039,4351,'_wp_attachment_image_alt','icon2'),(170040,4350,'_wp_attachment_image_alt','loaction'),(170041,4349,'_wp_attachment_image_alt','icon'),(170042,4348,'_wp_attachment_image_alt','ppl'),(170043,4347,'_wp_attachment_image_alt','clck'),(170044,4346,'_wp_attachment_image_alt','cstmr'),(170045,4345,'_wp_attachment_image_alt','wrld'),(170046,4344,'_wp_attachment_image_alt','auto'),(170047,4343,'_wp_attachment_image_alt','drive'),(170048,4342,'_wp_attachment_image_alt','dlr'),(170049,4334,'_wp_attachment_image_alt','Union 21'),(170050,4333,'_wp_attachment_image_alt','bg-people-tc1'),(170051,4332,'_wp_attachment_image_alt','mrdata2'),(170052,4330,'_wp_attachment_image_alt','kubernets_graph'),(170053,4329,'_wp_attachment_image_alt','kubernetes-w'),(170054,4328,'_wp_attachment_image_alt','devops_roadmap'),(170055,4327,'_wp_attachment_image_alt','Group 8578'),(170056,4324,'_wp_attachment_image_alt','devops_coonsulting'),(170057,4320,'_wp_attachment_image_alt','mobil-baner-app'),(170058,4316,'_wp_attachment_image_alt','scroll-right'),(170059,4315,'_wp_attachment_image_alt','sroll-l'),(170060,4312,'_wp_attachment_image_alt','mobile-scroll'),(170061,4306,'_wp_attachment_image_alt','Group-8594'),(170062,4304,'_wp_attachment_image_alt','Group-8625'),(170063,4303,'_wp_attachment_image_alt','Group-8594'),(170064,4301,'_wp_attachment_image_alt','Group-8625'),(170065,4295,'_wp_attachment_image_alt','Group-8578'),(170066,4294,'_wp_attachment_image_alt','replatform'),(170067,4293,'_wp_attachment_image_alt','rebuild_1'),(170068,46,'_pinterest_shares','0'),(170069,46,'_total_shares','0'),(170070,46,'swp_cache_timestamp','461963'),(170071,3956,'_wp_old_date','2022-09-12'),(170073,3972,'_wp_old_date','2022-09-12'),(170075,3977,'_wp_old_date','2022-09-12'),(170077,3984,'_wp_old_date','2022-09-12'),(170079,3988,'_wp_old_date','2022-09-12'),(170081,3989,'_wp_old_date','2022-09-12'),(170083,3957,'_wp_attachment_image_alt','Applications'),(170084,3957,'_wp_old_slug','applications'),(170085,3958,'_wp_attachment_image_alt','DevOps'),(170086,3959,'_wp_attachment_image_alt','kubernates'),(170087,3960,'_wp_attachment_image_alt','zerotrust'),(170088,3961,'_wp_attachment_image_alt','datdriven'),(170089,3962,'_wp_attachment_image_alt','Machine-Learning'),(170090,3956,'_wp_old_date','2022-09-13'),(170091,3956,'_menu_sgpb_popup_id','0'),(170092,3972,'_wp_old_date','2022-09-13'),(170093,3972,'_menu_sgpb_popup_id','0'),(170094,3977,'_wp_old_date','2022-09-13'),(170095,3977,'_menu_sgpb_popup_id','0'),(170096,3984,'_wp_old_date','2022-09-13'),(170097,3984,'_menu_sgpb_popup_id','0'),(170098,3988,'_wp_old_date','2022-09-13'),(170099,3988,'_menu_sgpb_popup_id','0'),(170100,3989,'_wp_old_date','2022-09-13'),(170101,3989,'_menu_sgpb_popup_id','0'),(170102,838,'_pinterest_shares','0'),(170103,838,'_total_shares','0'),(170104,838,'swp_cache_timestamp','461980'),(170105,4810,'top_title','Kubernetes Professional Services'),(170106,4810,'_top_title','field_6317168918e96'),(170107,4810,'top_description','CLOUD NATIVE SOLUTIONS'),(170108,4810,'_top_description','field_6317169e18e97'),(170109,4810,'section_one_section_one_breadcrumb','KCSP'),(170110,4810,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(170111,4810,'section_one_section_one_title','

Kubernetes Certified Service Provider

'),(170112,4810,'_section_one_section_one_title','field_6317172018e9a'),(170113,4810,'section_one_section_one_image','4775'),(170114,4810,'_section_one_section_one_image','field_63171ca018e9c'),(170115,4810,'section_one_section_one_content','

Lets us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.

\r\n
\r\n
 
\r\n
'),(170116,4810,'_section_one_section_one_content','field_6317174118e9b'),(170117,4810,'section_one_section_one_navigation_one','
Cloud Native Applications
'),(170118,4810,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(170119,4810,'section_one_section_one_navigation_two','
Cloud Native DevOps
'),(170120,4810,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(170121,4810,'section_one_section_one_navigation_three','
Cloud Native Machine Learning
'),(170122,4810,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(170123,4810,'section_one_section_one_button_text','Book Consultation Now'),(170124,4810,'_section_one_section_one_button_text','field_63171dc918ea0'),(170125,4810,'section_one',''),(170126,4810,'_section_one','field_631716de18e98'),(170127,4810,'section_two_section_two_title','Our Services'),(170128,4810,'_section_two_section_two_title','field_63171e1457be9'),(170129,4810,'section_two_section_two_icon_one','4734'),(170130,4810,'_section_two_section_two_icon_one','field_63171e2c57bea'),(170131,4810,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(170132,4810,'_section_two_section_two_title_one','field_63171e5f57beb'),(170133,4810,'section_two_section_two_icon_two','4741'),(170134,4810,'_section_two_section_two_icon_two','field_63171e7357bec'),(170135,4810,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(170136,4810,'_section_two_section_two_title_two','field_63171ea157bee'),(170137,4810,'section_two_section_two_icon_three','4736'),(170138,4810,'_section_two_section_two_icon_three','field_63171e8557bed'),(170139,4810,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(170140,4810,'_section_two_section_two_title_three','field_63171ec257bef'),(170141,4810,'section_two_section_two_icon_four','4738'),(170142,4810,'_section_two_section_two_icon_four','field_63171ee257bf0'),(170143,4810,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(170144,4810,'_section_two_section_two_title_four','field_63171ef757bf1'),(170145,4810,'section_two_section_two_icon_five','4744'),(170146,4810,'_section_two_section_two_icon_five','field_63171f2857bf3'),(170147,4810,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(170148,4810,'_section_two_section_two_title_five','field_63171f3957bf4'),(170149,4810,'section_two_section_two_icon_six','4746'),(170150,4810,'_section_two_section_two_icon_six','field_63171f5057bf5'),(170151,4810,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(170152,4810,'_section_two_section_two_title_six','field_63171f6657bf6'),(170153,4810,'section_two_section_two_icon_seven','4748'),(170154,4810,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(170155,4810,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(170156,4810,'_section_two_section_two_title_seven','field_63171f9757bf8'),(170157,4810,'section_two_section_two_icon_eight','4750'),(170158,4810,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(170159,4810,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(170160,4810,'_section_two_section_two_title_eight','field_63171fc057bfa'),(170161,4810,'section_two',''),(170162,4810,'_section_two','field_63171dfb57be8'),(170163,4810,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(170164,4810,'_section_three_section_three_breadcrumb','field_631723036988b'),(170165,4810,'section_three_section_three_title','

Plan Your Next Kubernetes Project
\r\nwith Translucent

'),(170166,4810,'_section_three_section_three_title','field_631723176988c'),(170167,4810,'section_three_section_three_image','4779'),(170168,4810,'_section_three_section_three_image','field_631723ac6988e'),(170169,4810,'section_three_section_three_content','

Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.

\r\n
\r\n
 
\r\n
'),(170170,4810,'_section_three_section_three_content','field_631723906988d'),(170171,4810,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(170172,4810,'_section_three_section_three_footer','field_631723c36988f'),(170173,4810,'section_three_section_three_button_text','Book Consultation Now'),(170174,4810,'_section_three_section_three_button_text','field_631723d769890'),(170175,4810,'section_three',''),(170176,4810,'_section_three','field_631722b96988a'),(170177,4810,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(170178,4810,'_section_four_section_four_breadcrumb','field_6317271523757'),(170179,4810,'section_four_section_four_title','

Driving Digital Transformation with Containers and Kubernetes

'),(170180,4810,'_section_four_section_four_title','field_6317271523758'),(170181,4810,'section_four_section_four_image','4776'),(170182,4810,'_section_four_section_four_image','field_6317271523759'),(170183,4810,'section_four_section_four_content','

Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.

\r\n
\r\n
 
\r\n
'),(170184,4810,'_section_four_section_four_content','field_631727152375a'),(170185,4810,'section_four_section_four_footer','Build - Rebuild - Replatform'),(170186,4810,'_section_four_section_four_footer','field_631727152375b'),(170187,4810,'section_four',''),(170188,4810,'_section_four','field_6317271523756'),(170189,4810,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(170190,4810,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(170191,4810,'section_five_section_five_title','

24/7 support and maintenance
\r\nwith our site reliability engineering services

'),(170192,4810,'_section_five_section_five_title','field_631727bbd69dd'),(170193,4810,'section_five_section_five_image','4777'),(170194,4810,'_section_five_section_five_image','field_631727bbd69de'),(170195,4810,'section_five_section_five_content','

From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.

'),(170196,4810,'_section_five_section_five_content','field_631727bbd69df'),(170197,4810,'section_five_section_five_footer',''),(170198,4810,'_section_five_section_five_footer','field_631727bbd69e0'),(170199,4810,'section_five',''),(170200,4810,'_section_five','field_631727bbd69db'),(170201,4810,'footer_title','We treat your business like our own.'),(170202,4810,'_footer_title','field_631729e2753c6'),(170203,4810,'footer_button_text','Let\'s talk!'),(170204,4810,'_footer_button_text','field_63172a06753c7'),(170205,4810,'section_five_section_five_icon_one','4752'),(170206,4810,'_section_five_section_five_icon_one','field_631727bbd69e0'),(170207,4810,'section_five_section_five_icon_text_one','

SRE - Site Reliability Engineering

'),(170208,4810,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(170209,4810,'section_five_section_five_icon_two','4754'),(170210,4810,'_section_five_section_five_icon_two','field_631ef504912c5'),(170211,4810,'section_five_section_five_icon_text_two','

SLA - Service Level Agreements

'),(170212,4810,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(170213,4810,'section_five_section_five_icon_three','4756'),(170214,4810,'_section_five_section_five_icon_three','field_631ef510912c6'),(170215,4810,'section_five_section_five_icon_text_three','

SLO - Service Level Objectives

'),(170216,4810,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(170217,4810,'section_five_section_five_icon_four','4758'),(170218,4810,'_section_five_section_five_icon_four','field_631ef51c912c7'),(170219,4810,'section_five_section_five_icon_text_four','

SLI - Service Level Indicator

'),(170220,4810,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(170221,4811,'top_title','Kubernetes Professional Services'),(170222,4811,'_top_title','field_6317168918e96'),(170223,4811,'top_description','CLOUD NATIVE SOLUTIONS'),(170224,4811,'_top_description','field_6317169e18e97'),(170225,4811,'section_one_section_one_breadcrumb','KCSP'),(170226,4811,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(170227,4811,'section_one_section_one_title','

Kubernetes Certified Service Provider

'),(170228,4811,'_section_one_section_one_title','field_6317172018e9a'),(170229,4811,'section_one_section_one_image','4775'),(170230,4811,'_section_one_section_one_image','field_63171ca018e9c'),(170231,4811,'section_one_section_one_content','

Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.

\r\n
\r\n
 
\r\n
'),(170232,4811,'_section_one_section_one_content','field_6317174118e9b'),(170233,4811,'section_one_section_one_navigation_one','
Cloud Native Applications
'),(170234,4811,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(170235,4811,'section_one_section_one_navigation_two','
Cloud Native DevOps
'),(170236,4811,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(170237,4811,'section_one_section_one_navigation_three','
Cloud Native Machine Learning
'),(170238,4811,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(170239,4811,'section_one_section_one_button_text','Book Consultation Now'),(170240,4811,'_section_one_section_one_button_text','field_63171dc918ea0'),(170241,4811,'section_one',''),(170242,4811,'_section_one','field_631716de18e98'),(170243,4811,'section_two_section_two_title','Our Services'),(170244,4811,'_section_two_section_two_title','field_63171e1457be9'),(170245,4811,'section_two_section_two_icon_one','4734'),(170246,4811,'_section_two_section_two_icon_one','field_63171e2c57bea'),(170247,4811,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(170248,4811,'_section_two_section_two_title_one','field_63171e5f57beb'),(170249,4811,'section_two_section_two_icon_two','4741'),(170250,4811,'_section_two_section_two_icon_two','field_63171e7357bec'),(170251,4811,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(170252,4811,'_section_two_section_two_title_two','field_63171ea157bee'),(170253,4811,'section_two_section_two_icon_three','4736'),(170254,4811,'_section_two_section_two_icon_three','field_63171e8557bed'),(170255,4811,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(170256,4811,'_section_two_section_two_title_three','field_63171ec257bef'),(170257,4811,'section_two_section_two_icon_four','4738'),(170258,4811,'_section_two_section_two_icon_four','field_63171ee257bf0'),(170259,4811,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(170260,4811,'_section_two_section_two_title_four','field_63171ef757bf1'),(170261,4811,'section_two_section_two_icon_five','4744'),(170262,4811,'_section_two_section_two_icon_five','field_63171f2857bf3'),(170263,4811,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(170264,4811,'_section_two_section_two_title_five','field_63171f3957bf4'),(170265,4811,'section_two_section_two_icon_six','4746'),(170266,4811,'_section_two_section_two_icon_six','field_63171f5057bf5'),(170267,4811,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(170268,4811,'_section_two_section_two_title_six','field_63171f6657bf6'),(170269,4811,'section_two_section_two_icon_seven','4748'),(170270,4811,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(170271,4811,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(170272,4811,'_section_two_section_two_title_seven','field_63171f9757bf8'),(170273,4811,'section_two_section_two_icon_eight','4750'),(170274,4811,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(170275,4811,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(170276,4811,'_section_two_section_two_title_eight','field_63171fc057bfa'),(170277,4811,'section_two',''),(170278,4811,'_section_two','field_63171dfb57be8'),(170279,4811,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(170280,4811,'_section_three_section_three_breadcrumb','field_631723036988b'),(170281,4811,'section_three_section_three_title','

Plan Your Next Kubernetes Project
\r\nwith Translucent

'),(170282,4811,'_section_three_section_three_title','field_631723176988c'),(170283,4811,'section_three_section_three_image','4779'),(170284,4811,'_section_three_section_three_image','field_631723ac6988e'),(170285,4811,'section_three_section_three_content','

Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.

\r\n
\r\n
 
\r\n
'),(170286,4811,'_section_three_section_three_content','field_631723906988d'),(170287,4811,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(170288,4811,'_section_three_section_three_footer','field_631723c36988f'),(170289,4811,'section_three_section_three_button_text','Book Consultation Now'),(170290,4811,'_section_three_section_three_button_text','field_631723d769890'),(170291,4811,'section_three',''),(170292,4811,'_section_three','field_631722b96988a'),(170293,4811,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(170294,4811,'_section_four_section_four_breadcrumb','field_6317271523757'),(170295,4811,'section_four_section_four_title','

Driving Digital Transformation with Containers and Kubernetes

'),(170296,4811,'_section_four_section_four_title','field_6317271523758'),(170297,4811,'section_four_section_four_image','4776'),(170298,4811,'_section_four_section_four_image','field_6317271523759'),(170299,4811,'section_four_section_four_content','

Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.

\r\n
\r\n
 
\r\n
'),(170300,4811,'_section_four_section_four_content','field_631727152375a'),(170301,4811,'section_four_section_four_footer','Build - Rebuild - Replatform'),(170302,4811,'_section_four_section_four_footer','field_631727152375b'),(170303,4811,'section_four',''),(170304,4811,'_section_four','field_6317271523756'),(170305,4811,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(170306,4811,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(170307,4811,'section_five_section_five_title','

24/7 support and maintenance
\r\nwith our site reliability engineering services

'),(170308,4811,'_section_five_section_five_title','field_631727bbd69dd'),(170309,4811,'section_five_section_five_image','4777'),(170310,4811,'_section_five_section_five_image','field_631727bbd69de'),(170311,4811,'section_five_section_five_content','

From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.

'),(170312,4811,'_section_five_section_five_content','field_631727bbd69df'),(170313,4811,'section_five_section_five_footer',''),(170314,4811,'_section_five_section_five_footer','field_631727bbd69e0'),(170315,4811,'section_five',''),(170316,4811,'_section_five','field_631727bbd69db'),(170317,4811,'footer_title','We treat your business like our own.'),(170318,4811,'_footer_title','field_631729e2753c6'),(170319,4811,'footer_button_text','Let\'s talk!'),(170320,4811,'_footer_button_text','field_63172a06753c7'),(170321,4811,'section_five_section_five_icon_one','4752'),(170322,4811,'_section_five_section_five_icon_one','field_631727bbd69e0'),(170323,4811,'section_five_section_five_icon_text_one','

SRE - Site Reliability Engineering

'),(170324,4811,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(170325,4811,'section_five_section_five_icon_two','4754'),(170326,4811,'_section_five_section_five_icon_two','field_631ef504912c5'),(170327,4811,'section_five_section_five_icon_text_two','

SLA - Service Level Agreements

'),(170328,4811,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(170329,4811,'section_five_section_five_icon_three','4756'),(170330,4811,'_section_five_section_five_icon_three','field_631ef510912c6'),(170331,4811,'section_five_section_five_icon_text_three','

SLO - Service Level Objectives

'),(170332,4811,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(170333,4811,'section_five_section_five_icon_four','4758'),(170334,4811,'_section_five_section_five_icon_four','field_631ef51c912c7'),(170335,4811,'section_five_section_five_icon_text_four','

SLI - Service Level Indicator

'),(170336,4811,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(170337,4820,'_wp_attached_file','2022/09/kubernetes_certified_icon-1.png'),(170338,4820,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:120;s:6:\"height\";i:131;s:4:\"file\";s:39:\"2022/09/kubernetes_certified_icon-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(170339,4820,'_imagify_optimization_level','2'),(170340,4820,'_imagify_status','success'),(170341,4820,'_imagify_data','a:2:{s:5:\"sizes\";a:2:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40027;s:14:\"optimized_size\";i:4610;s:7:\"percent\";d:88.48;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40027;s:14:\"optimized_size\";i:6412;s:7:\"percent\";d:83.98;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:80054;s:14:\"optimized_size\";i:11022;s:7:\"percent\";d:86.23;}}'),(170342,4821,'_wp_attached_file','2022/09/learn_informa_plan-1.png'),(170343,4821,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:342;s:6:\"height\";i:96;s:4:\"file\";s:32:\"2022/09/learn_informa_plan-1.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"learn_informa_plan-1-300x84.png\";s:5:\"width\";i:300;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"learn_informa_plan-1-150x96.png\";s:5:\"width\";i:150;s:6:\"height\";i:96;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:{}}}'),(170344,4821,'_imagify_optimization_level','2'),(170345,4821,'_imagify_status','success'),(170346,4821,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27021;s:14:\"optimized_size\";i:4065;s:7:\"percent\";d:84.96;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5720;s:14:\"optimized_size\";i:2312;s:7:\"percent\";d:59.58;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11079;s:14:\"optimized_size\";i:3426;s:7:\"percent\";d:69.08;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27021;s:14:\"optimized_size\";i:4288;s:7:\"percent\";d:84.13;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11079;s:14:\"optimized_size\";i:4086;s:7:\"percent\";d:63.12;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5720;s:14:\"optimized_size\";i:1368;s:7:\"percent\";d:76.08;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:87640;s:14:\"optimized_size\";i:19545;s:7:\"percent\";d:77.7;}}'),(170347,4708,'section_one_section_one_image_mobile','4820'),(170348,4708,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(170349,4708,'section_three_section_three_image_mobile','4821'),(170350,4708,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(170351,4708,'section_four_section_four_image_mobile','4823'),(170352,4708,'_section_four_section_four_image_mobile','field_632155def8a3f'),(170353,4708,'section_five_section_five_image_mobile','4824'),(170354,4708,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(170355,4822,'top_title','Kubernetes Professional Services'),(170356,4822,'_top_title','field_6317168918e96'),(170357,4822,'top_description','CLOUD NATIVE SOLUTIONS'),(170358,4822,'_top_description','field_6317169e18e97'),(170359,4822,'section_one_section_one_breadcrumb','KCSP'),(170360,4822,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(170361,4822,'section_one_section_one_title','

Kubernetes Certified Service Provider

'),(170362,4822,'_section_one_section_one_title','field_6317172018e9a'),(170363,4822,'section_one_section_one_image','4775'),(170364,4822,'_section_one_section_one_image','field_63171ca018e9c'),(170365,4822,'section_one_section_one_content','

Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.

\r\n
\r\n
 
\r\n
'),(170366,4822,'_section_one_section_one_content','field_6317174118e9b'),(170367,4822,'section_one_section_one_navigation_one','
Cloud Native Applications
'),(170368,4822,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(170369,4822,'section_one_section_one_navigation_two','
Cloud Native DevOps
'),(170370,4822,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(170371,4822,'section_one_section_one_navigation_three','
Cloud Native Machine Learning
'),(170372,4822,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(170373,4822,'section_one_section_one_button_text','Book Consultation Now'),(170374,4822,'_section_one_section_one_button_text','field_63171dc918ea0'),(170375,4822,'section_one',''),(170376,4822,'_section_one','field_631716de18e98'),(170377,4822,'section_two_section_two_title','Our Services'),(170378,4822,'_section_two_section_two_title','field_63171e1457be9'),(170379,4822,'section_two_section_two_icon_one','4734'),(170380,4822,'_section_two_section_two_icon_one','field_63171e2c57bea'),(170381,4822,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(170382,4822,'_section_two_section_two_title_one','field_63171e5f57beb'),(170383,4822,'section_two_section_two_icon_two','4741'),(170384,4822,'_section_two_section_two_icon_two','field_63171e7357bec'),(170385,4822,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(170386,4822,'_section_two_section_two_title_two','field_63171ea157bee'),(170387,4822,'section_two_section_two_icon_three','4736'),(170388,4822,'_section_two_section_two_icon_three','field_63171e8557bed'),(170389,4822,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(170390,4822,'_section_two_section_two_title_three','field_63171ec257bef'),(170391,4822,'section_two_section_two_icon_four','4738'),(170392,4822,'_section_two_section_two_icon_four','field_63171ee257bf0'),(170393,4822,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(170394,4822,'_section_two_section_two_title_four','field_63171ef757bf1'),(170395,4822,'section_two_section_two_icon_five','4744'),(170396,4822,'_section_two_section_two_icon_five','field_63171f2857bf3'),(170397,4822,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(170398,4822,'_section_two_section_two_title_five','field_63171f3957bf4'),(170399,4822,'section_two_section_two_icon_six','4746'),(170400,4822,'_section_two_section_two_icon_six','field_63171f5057bf5'),(170401,4822,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(170402,4822,'_section_two_section_two_title_six','field_63171f6657bf6'),(170403,4822,'section_two_section_two_icon_seven','4748'),(170404,4822,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(170405,4822,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(170406,4822,'_section_two_section_two_title_seven','field_63171f9757bf8'),(170407,4822,'section_two_section_two_icon_eight','4750'),(170408,4822,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(170409,4822,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(170410,4822,'_section_two_section_two_title_eight','field_63171fc057bfa'),(170411,4822,'section_two',''),(170412,4822,'_section_two','field_63171dfb57be8'),(170413,4822,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(170414,4822,'_section_three_section_three_breadcrumb','field_631723036988b'),(170415,4822,'section_three_section_three_title','

Plan Your Next Kubernetes Project
\r\nwith Translucent

'),(170416,4822,'_section_three_section_three_title','field_631723176988c'),(170417,4822,'section_three_section_three_image','4779'),(170418,4822,'_section_three_section_three_image','field_631723ac6988e'),(170419,4822,'section_three_section_three_content','

Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.

\r\n
\r\n
 
\r\n
'),(170420,4822,'_section_three_section_three_content','field_631723906988d'),(170421,4822,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(170422,4822,'_section_three_section_three_footer','field_631723c36988f'),(170423,4822,'section_three_section_three_button_text','Book Consultation Now'),(170424,4822,'_section_three_section_three_button_text','field_631723d769890'),(170425,4822,'section_three',''),(170426,4822,'_section_three','field_631722b96988a'),(170427,4822,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(170428,4822,'_section_four_section_four_breadcrumb','field_6317271523757'),(170429,4822,'section_four_section_four_title','

Driving Digital Transformation with Containers and Kubernetes

'),(170430,4822,'_section_four_section_four_title','field_6317271523758'),(170431,4822,'section_four_section_four_image','4776'),(170432,4822,'_section_four_section_four_image','field_6317271523759'),(170433,4822,'section_four_section_four_content','

Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.

\r\n
\r\n
 
\r\n
'),(170434,4822,'_section_four_section_four_content','field_631727152375a'),(170435,4822,'section_four_section_four_footer','Build - Rebuild - Replatform'),(170436,4822,'_section_four_section_four_footer','field_631727152375b'),(170437,4822,'section_four',''),(170438,4822,'_section_four','field_6317271523756'),(170439,4822,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(170440,4822,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(170441,4822,'section_five_section_five_title','

24/7 support and maintenance
\r\nwith our site reliability engineering services

'),(170442,4822,'_section_five_section_five_title','field_631727bbd69dd'),(170443,4822,'section_five_section_five_image','4777'),(170444,4822,'_section_five_section_five_image','field_631727bbd69de'),(170445,4822,'section_five_section_five_content','

From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.

'),(170446,4822,'_section_five_section_five_content','field_631727bbd69df'),(170447,4822,'section_five_section_five_footer',''),(170448,4822,'_section_five_section_five_footer','field_631727bbd69e0'),(170449,4822,'section_five',''),(170450,4822,'_section_five','field_631727bbd69db'),(170451,4822,'footer_title','We treat your business like our own.'),(170452,4822,'_footer_title','field_631729e2753c6'),(170453,4822,'footer_button_text','Let\'s talk!'),(170454,4822,'_footer_button_text','field_63172a06753c7'),(170455,4822,'section_five_section_five_icon_one','4752'),(170456,4822,'_section_five_section_five_icon_one','field_631727bbd69e0'),(170457,4822,'section_five_section_five_icon_text_one','

SRE - Site Reliability Engineering

'),(170458,4822,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(170459,4822,'section_five_section_five_icon_two','4754'),(170460,4822,'_section_five_section_five_icon_two','field_631ef504912c5'),(170461,4822,'section_five_section_five_icon_text_two','

SLA - Service Level Agreements

'),(170462,4822,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(170463,4822,'section_five_section_five_icon_three','4756'),(170464,4822,'_section_five_section_five_icon_three','field_631ef510912c6'),(170465,4822,'section_five_section_five_icon_text_three','

SLO - Service Level Objectives

'),(170466,4822,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(170467,4822,'section_five_section_five_icon_four','4758'),(170468,4822,'_section_five_section_five_icon_four','field_631ef51c912c7'),(170469,4822,'section_five_section_five_icon_text_four','

SLI - Service Level Indicator

'),(170470,4822,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(170471,4822,'section_one_section_one_image_mobile','4820'),(170472,4822,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(170473,4822,'section_three_section_three_image_mobile','4821'),(170474,4822,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(170475,4822,'section_four_section_four_image_mobile',''),(170476,4822,'_section_four_section_four_image_mobile','field_632170be11994'),(170477,4822,'section_five_section_five_image_mobile',''),(170478,4822,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(170479,4823,'_wp_attached_file','2022/09/kubernetes_and_conteiners_2-1.png'),(170480,4823,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:342;s:6:\"height\";i:275;s:4:\"file\";s:41:\"2022/09/kubernetes_and_conteiners_2-1.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"kubernetes_and_conteiners_2-1-300x241.png\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"kubernetes_and_conteiners_2-1-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:{}}}'),(170481,4823,'_imagify_optimization_level','2'),(170482,4823,'_imagify_status','success'),(170483,4823,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:145758;s:14:\"optimized_size\";i:31417;s:7:\"percent\";d:78.45;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33415;s:14:\"optimized_size\";i:10700;s:7:\"percent\";d:67.98;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:80218;s:14:\"optimized_size\";i:23714;s:7:\"percent\";d:70.44;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:145758;s:14:\"optimized_size\";i:33456;s:7:\"percent\";d:77.05;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:80218;s:14:\"optimized_size\";i:25235;s:7:\"percent\";d:68.54;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:33415;s:14:\"optimized_size\";i:10650;s:7:\"percent\";d:68.13;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:518782;s:14:\"optimized_size\";i:135172;s:7:\"percent\";d:73.94;}}'),(170484,4824,'_wp_attached_file','2022/09/24-7_2-1.png'),(170485,4824,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:244;s:6:\"height\";i:211;s:4:\"file\";s:20:\"2022/09/24-7_2-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"24-7_2-1-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:{}}}'),(170486,4824,'_wp_attachment_image_alt','24-7_2'),(170487,4824,'_imagify_optimization_level','2'),(170488,4824,'_imagify_status','success'),(170489,4824,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:64539;s:14:\"optimized_size\";i:14826;s:7:\"percent\";d:77.03;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25891;s:14:\"optimized_size\";i:7326;s:7:\"percent\";d:71.7;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:64539;s:14:\"optimized_size\";i:14046;s:7:\"percent\";d:78.24;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25891;s:14:\"optimized_size\";i:4594;s:7:\"percent\";d:82.26;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:180860;s:14:\"optimized_size\";i:40792;s:7:\"percent\";d:77.45;}}'),(170490,4823,'_wp_attachment_image_alt','kubernetes_and_conteiners_2'),(170491,4821,'_wp_attachment_image_alt','learn_informa_plan'),(170492,4820,'_wp_attachment_image_alt','kubernetes_certified_icon'),(170493,4825,'top_title','Kubernetes Professional Services'),(170494,4825,'_top_title','field_6317168918e96'),(170495,4825,'top_description','CLOUD NATIVE SOLUTIONS'),(170496,4825,'_top_description','field_6317169e18e97'),(170497,4825,'section_one_section_one_breadcrumb','KCSP'),(170498,4825,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(170499,4825,'section_one_section_one_title','

Kubernetes Certified Service Provider

'),(170500,4825,'_section_one_section_one_title','field_6317172018e9a'),(170501,4825,'section_one_section_one_image','4775'),(170502,4825,'_section_one_section_one_image','field_63171ca018e9c'),(170503,4825,'section_one_section_one_content','

Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.

\r\n
\r\n
 
\r\n
'),(170504,4825,'_section_one_section_one_content','field_6317174118e9b'),(170505,4825,'section_one_section_one_navigation_one','
Cloud Native Applications
'),(170506,4825,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(170507,4825,'section_one_section_one_navigation_two','
Cloud Native DevOps
'),(170508,4825,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(170509,4825,'section_one_section_one_navigation_three','
Cloud Native Machine Learning
'),(170510,4825,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(170511,4825,'section_one_section_one_button_text','Book Consultation Now'),(170512,4825,'_section_one_section_one_button_text','field_63171dc918ea0'),(170513,4825,'section_one',''),(170514,4825,'_section_one','field_631716de18e98'),(170515,4825,'section_two_section_two_title','Our Services'),(170516,4825,'_section_two_section_two_title','field_63171e1457be9'),(170517,4825,'section_two_section_two_icon_one','4734'),(170518,4825,'_section_two_section_two_icon_one','field_63171e2c57bea'),(170519,4825,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(170520,4825,'_section_two_section_two_title_one','field_63171e5f57beb'),(170521,4825,'section_two_section_two_icon_two','4741'),(170522,4825,'_section_two_section_two_icon_two','field_63171e7357bec'),(170523,4825,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(170524,4825,'_section_two_section_two_title_two','field_63171ea157bee'),(170525,4825,'section_two_section_two_icon_three','4736'),(170526,4825,'_section_two_section_two_icon_three','field_63171e8557bed'),(170527,4825,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(170528,4825,'_section_two_section_two_title_three','field_63171ec257bef'),(170529,4825,'section_two_section_two_icon_four','4738'),(170530,4825,'_section_two_section_two_icon_four','field_63171ee257bf0'),(170531,4825,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(170532,4825,'_section_two_section_two_title_four','field_63171ef757bf1'),(170533,4825,'section_two_section_two_icon_five','4744'),(170534,4825,'_section_two_section_two_icon_five','field_63171f2857bf3'),(170535,4825,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(170536,4825,'_section_two_section_two_title_five','field_63171f3957bf4'),(170537,4825,'section_two_section_two_icon_six','4746'),(170538,4825,'_section_two_section_two_icon_six','field_63171f5057bf5'),(170539,4825,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(170540,4825,'_section_two_section_two_title_six','field_63171f6657bf6'),(170541,4825,'section_two_section_two_icon_seven','4748'),(170542,4825,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(170543,4825,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(170544,4825,'_section_two_section_two_title_seven','field_63171f9757bf8'),(170545,4825,'section_two_section_two_icon_eight','4750'),(170546,4825,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(170547,4825,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(170548,4825,'_section_two_section_two_title_eight','field_63171fc057bfa'),(170549,4825,'section_two',''),(170550,4825,'_section_two','field_63171dfb57be8'),(170551,4825,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(170552,4825,'_section_three_section_three_breadcrumb','field_631723036988b'),(170553,4825,'section_three_section_three_title','

Plan Your Next Kubernetes Project
\r\nwith Translucent

'),(170554,4825,'_section_three_section_three_title','field_631723176988c'),(170555,4825,'section_three_section_three_image','4779'),(170556,4825,'_section_three_section_three_image','field_631723ac6988e'),(170557,4825,'section_three_section_three_content','

Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.

\r\n
\r\n
 
\r\n
'),(170558,4825,'_section_three_section_three_content','field_631723906988d'),(170559,4825,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(170560,4825,'_section_three_section_three_footer','field_631723c36988f'),(170561,4825,'section_three_section_three_button_text','Book Consultation Now'),(170562,4825,'_section_three_section_three_button_text','field_631723d769890'),(170563,4825,'section_three',''),(170564,4825,'_section_three','field_631722b96988a'),(170565,4825,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(170566,4825,'_section_four_section_four_breadcrumb','field_6317271523757'),(170567,4825,'section_four_section_four_title','

Driving Digital Transformation with Containers and Kubernetes

'),(170568,4825,'_section_four_section_four_title','field_6317271523758'),(170569,4825,'section_four_section_four_image','4776'),(170570,4825,'_section_four_section_four_image','field_6317271523759'),(170571,4825,'section_four_section_four_content','

Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.

\r\n
\r\n
 
\r\n
'),(170572,4825,'_section_four_section_four_content','field_631727152375a'),(170573,4825,'section_four_section_four_footer','Build - Rebuild - Replatform'),(170574,4825,'_section_four_section_four_footer','field_631727152375b'),(170575,4825,'section_four',''),(170576,4825,'_section_four','field_6317271523756'),(170577,4825,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(170578,4825,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(170579,4825,'section_five_section_five_title','

24/7 support and maintenance
\r\nwith our site reliability engineering services

'),(170580,4825,'_section_five_section_five_title','field_631727bbd69dd'),(170581,4825,'section_five_section_five_image','4777'),(170582,4825,'_section_five_section_five_image','field_631727bbd69de'),(170583,4825,'section_five_section_five_content','

From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.

'),(170584,4825,'_section_five_section_five_content','field_631727bbd69df'),(170585,4825,'section_five_section_five_footer',''),(170586,4825,'_section_five_section_five_footer','field_631727bbd69e0'),(170587,4825,'section_five',''),(170588,4825,'_section_five','field_631727bbd69db'),(170589,4825,'footer_title','We treat your business like our own.'),(170590,4825,'_footer_title','field_631729e2753c6'),(170591,4825,'footer_button_text','Let\'s talk!'),(170592,4825,'_footer_button_text','field_63172a06753c7'),(170593,4825,'section_five_section_five_icon_one','4752'),(170594,4825,'_section_five_section_five_icon_one','field_631727bbd69e0'),(170595,4825,'section_five_section_five_icon_text_one','

SRE - Site Reliability Engineering

'),(170596,4825,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(170597,4825,'section_five_section_five_icon_two','4754'),(170598,4825,'_section_five_section_five_icon_two','field_631ef504912c5'),(170599,4825,'section_five_section_five_icon_text_two','

SLA - Service Level Agreements

'),(170600,4825,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(170601,4825,'section_five_section_five_icon_three','4756'),(170602,4825,'_section_five_section_five_icon_three','field_631ef510912c6'),(170603,4825,'section_five_section_five_icon_text_three','

SLO - Service Level Objectives

'),(170604,4825,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(170605,4825,'section_five_section_five_icon_four','4758'),(170606,4825,'_section_five_section_five_icon_four','field_631ef51c912c7'),(170607,4825,'section_five_section_five_icon_text_four','

SLI - Service Level Indicator

'),(170608,4825,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(170609,4825,'section_one_section_one_image_mobile','4820'),(170610,4825,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(170611,4825,'section_three_section_three_image_mobile','4821'),(170612,4825,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(170613,4825,'section_four_section_four_image_mobile','4823'),(170614,4825,'_section_four_section_four_image_mobile','field_632155def8a3f'),(170615,4825,'section_five_section_five_image_mobile','4824'),(170616,4825,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(170623,4827,'_wp_attached_file','2022/09/hand_tools.png'),(170624,4827,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:268;s:6:\"height\";i:167;s:4:\"file\";s:22:\"2022/09/hand_tools.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"hand_tools-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:{}}}'),(170625,4827,'_imagify_optimization_level','2'),(170626,4827,'_imagify_status','success'),(170627,4827,'_imagify_data','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:71855;s:14:\"optimized_size\";i:11624;s:7:\"percent\";d:83.82;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27035;s:14:\"optimized_size\";i:10056;s:7:\"percent\";d:62.8;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:71855;s:14:\"optimized_size\";i:13872;s:7:\"percent\";d:80.69;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:27035;s:14:\"optimized_size\";i:6304;s:7:\"percent\";d:76.68;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:197780;s:14:\"optimized_size\";i:41856;s:7:\"percent\";d:78.84;}}'),(170628,4827,'_wp_attachment_image_alt','hand_tools'),(170635,4563,'section_one_section_one_image_mobile','4865'),(170636,4563,'_section_one_section_one_image_mobile','field_6321741c8e5ae'),(170637,4563,'section_two_section_two_tab_one_image_mobile','4827'),(170638,4563,'_section_two_section_two_tab_one_image_mobile','field_632174678e5af'),(170639,4563,'section_two_section_two_tab_three_image_mobile','4866'),(170640,4563,'_section_two_section_two_tab_three_image_mobile','field_632174798e5b0'),(170641,4829,'top-image',''),(170642,4829,'_top-image','field_5c488d805f5d4'),(170643,4829,'top_title',''),(170644,4829,'_top_title','field_5edfac92f4226'),(170645,4829,'top-text',''),(170646,4829,'_top-text','field_5c488e575f5d5'),(170647,4829,'features',''),(170648,4829,'_features','field_5c4890bc3ae1f'),(170649,4829,'about-title',''),(170650,4829,'_about-title','field_5c488e7a5f5d6'),(170651,4829,'about-text',''),(170652,4829,'_about-text','field_5c488e945f5d7'),(170653,4829,'problems',''),(170654,4829,'_problems','field_5c488ec75f5d8'),(170655,4829,'solutions',''),(170656,4829,'_solutions','field_5c488ed95f5d9'),(170657,4829,'difference',''),(170658,4829,'_difference','field_5c488eed5f5da'),(170659,4829,'panel',''),(170660,4829,'_panel','field_5c488f195f5db'),(170661,4829,'more-text',''),(170662,4829,'_more-text','field_5c488f8f5f5df'),(170663,4829,'phrase',''),(170664,4829,'_phrase','field_5c488faf5f5e0'),(170665,4829,'author',''),(170666,4829,'_author','field_5c488fba5f5e1'),(170667,4829,'top_description','Machine Learning'),(170668,4829,'_top_description','field_63170e008cc99'),(170669,4829,'top_background_desktop','4803'),(170670,4829,'_top_background_desktop','field_631eb1728b709'),(170671,4829,'top_background_mobile','4804'),(170672,4829,'_top_background_mobile','field_631eb1988b70a'),(170673,4829,'section_one_section_one_breadcrumb','THE FUTURE'),(170674,4829,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(170675,4829,'section_one_section_one_title','

How intelligent is your
\r\nbusiness?

'),(170676,4829,'_section_one_section_one_title','field_6316f2764091e'),(170677,4829,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(170678,4829,'_section_one_section_one_content','field_6316f2934091f'),(170679,4829,'section_one_section_one_image','4679'),(170680,4829,'_section_one_section_one_image','field_6316f2ab40920'),(170681,4829,'section_one_section_one_button_text','Book a consultation now'),(170682,4829,'_section_one_section_one_button_text','field_6316f2ca40921'),(170683,4829,'section_one',''),(170684,4829,'_section_one','field_6316f7ba1cd27'),(170685,4829,'section_two_section_two_button_text','Book a consultation now'),(170686,4829,'_section_two_section_two_button_text','field_6316fe1ff751b'),(170687,4829,'section_two_section_two_tab_one_header_title','Problems'),(170688,4829,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(170689,4829,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(170690,4829,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(170691,4829,'section_two_section_two_tab_one_image','4680'),(170692,4829,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(170693,4829,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(170694,4829,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(170695,4829,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(170696,4829,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(170697,4829,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(170698,4829,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(170699,4829,'section_two_section_two_tab_two_header_title','Solutions'),(170700,4829,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(170701,4829,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(170702,4829,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(170703,4829,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(170704,4829,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(170705,4829,'section_two_section_two_tab_two_content_icon_1','4683'),(170706,4829,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(170707,4829,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(170708,4829,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(170709,4829,'section_two_section_two_tab_two_content_icon_2','4684'),(170710,4829,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(170711,4829,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(170712,4829,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(170713,4829,'section_two_section_two_tab_two_content_icon_3','4685'),(170714,4829,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(170715,4829,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(170716,4829,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(170717,4829,'section_two_section_two_tab_two_content_icon_4','4686'),(170718,4829,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(170719,4829,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(170720,4829,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(170721,4829,'section_two_section_two_tab_three_header_title','Difference'),(170722,4829,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(170723,4829,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(170724,4829,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(170725,4829,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(170726,4829,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(170727,4829,'section_two_section_two_tab_three_image','4705'),(170728,4829,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(170729,4829,'section_two',''),(170730,4829,'_section_two','field_6316fa2531589'),(170731,4829,'section_three_section_three_title','Trusted Relationships'),(170732,4829,'_section_three_section_three_title','field_6316febdf751c'),(170733,4829,'section_three_section_three_one_icon','4687'),(170734,4829,'_section_three_section_three_one_icon','field_6316fefff751e'),(170735,4829,'section_three_section_three_one_title','Data Entry Automation'),(170736,4829,'_section_three_section_three_one_title','field_6316ff1cf751f'),(170737,4829,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(170738,4829,'_section_three_section_three_one_content','field_6316ff29f7520'),(170739,4829,'section_three_section_three_two_icon','4688'),(170740,4829,'_section_three_section_three_two_icon','field_6316ff77f7523'),(170741,4829,'section_three_section_three_two_title','Product Recommendation'),(170742,4829,'_section_three_section_three_two_title','field_6316ff90f7524'),(170743,4829,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(170744,4829,'_section_three_section_three_two_content','field_6316ff5df7522'),(170745,4829,'section_three_section_three_three_icon','4689'),(170746,4829,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(170747,4829,'section_three_section_three_three_title','Medical Diagnosis'),(170748,4829,'_section_three_section_three_three_title','field_6316fff5f7527'),(170749,4829,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(170750,4829,'_section_three_section_three_three_content','field_63170010f7528'),(170751,4829,'section_three_section_three_four_icon','4690'),(170752,4829,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(170753,4829,'section_three_section_three_four_title','Clients: Who is buying what'),(170754,4829,'_section_three_section_three_four_title','field_631707992b1ca'),(170755,4829,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(170756,4829,'_section_three_section_three_four_content','field_631707b42b1cb'),(170757,4829,'section_three_section_three_five_icon','4691'),(170758,4829,'_section_three_section_three_five_icon','field_631707e52b1cd'),(170759,4829,'section_three_section_three_five_title','User Behavior'),(170760,4829,'_section_three_section_three_five_title','field_631708002b1ce'),(170761,4829,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(170762,4829,'_section_three_section_three_five_content','field_6317081c2b1cf'),(170763,4829,'section_three_section_three_six_icon','4692'),(170764,4829,'_section_three_section_three_six_icon','field_631708572b1d1'),(170765,4829,'section_three_section_three_six_title','BI: Automated Reporting'),(170766,4829,'_section_three_section_three_six_title','field_631708712b1d2'),(170767,4829,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(170768,4829,'_section_three_section_three_six_content','field_6317088d2b1d3'),(170769,4829,'section_three_section_three_seven_icon','4693'),(170770,4829,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(170771,4829,'section_three_section_three_seven_title','Detecting Spam in Emails'),(170772,4829,'_section_three_section_three_seven_title','field_631708da2b1d6'),(170773,4829,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(170774,4829,'_section_three_section_three_seven_content','field_631708f62b1d7'),(170775,4829,'section_three_section_three_eight_icon','4694'),(170776,4829,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(170777,4829,'section_three_section_three_eight_title','Analytics'),(170778,4829,'_section_three_section_three_eight_title','field_631709462b1da'),(170779,4829,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(170780,4829,'_section_three_section_three_eight_content','field_6317095e2b1db'),(170781,4829,'section_three',''),(170782,4829,'_section_three','field_6316fcf4f751a'),(170783,4829,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(170784,4829,'_section_four_section_four_content','field_63170ac9aa9a2'),(170785,4829,'section_four_section_four_button_text','Book a consultation now'),(170786,4829,'_section_four_section_four_button_text','field_63170b08aa9a3'),(170787,4829,'section_four',''),(170788,4829,'_section_four','field_63170a81aa9a1'),(170789,4829,'section_five_section_five_title','We listen. We learn. We inform.'),(170790,4829,'_section_five_section_five_title','field_63170b8564fc2'),(170791,4829,'section_five_section_five_quote','

“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”

'),(170792,4829,'_section_five_section_five_quote','field_632013fd76a3e'),(170793,4829,'section_five_section_five_footer','forbes.com'),(170794,4829,'_section_five_section_five_footer','field_63170bad64fc4'),(170795,4829,'section_five',''),(170796,4829,'_section_five','field_63170b5f64fc1'),(170797,4829,'footer_title','We treat your business like our own.'),(170798,4829,'_footer_title','field_63170f4c8cc9a'),(170799,4829,'footer_button_text','Let\'s talk!'),(170800,4829,'_footer_button_text','field_63170f6f8cc9b'),(170801,4829,'top_title_1','CLOUD NATIVE SOLUTIONS'),(170802,4829,'_top_title_1','field_631ed55492adc'),(170803,4829,'top_title_page','CLOUD NATIVE SOLUTIONS'),(170804,4829,'_top_title_page','field_631ed55492adc'),(170805,4829,'section_one_section_one_image_mobile','4826'),(170806,4829,'_section_one_section_one_image_mobile','field_6321741c8e5ae'),(170807,4829,'section_two_section_two_tab_one_image_mobile','4827'),(170808,4829,'_section_two_section_two_tab_one_image_mobile','field_632174678e5af'),(170809,4829,'section_two_section_two_tab_three_image_mobile','4828'),(170810,4829,'_section_two_section_two_tab_three_image_mobile','field_632174798e5b0'),(170811,4830,'top_title','Kubernetes Professional Services'),(170812,4830,'_top_title','field_6317168918e96'),(170813,4830,'top_description','CLOUD NATIVE SOLUTIONS'),(170814,4830,'_top_description','field_6317169e18e97'),(170815,4830,'section_one_section_one_breadcrumb','KCSP'),(170816,4830,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(170817,4830,'section_one_section_one_title','

Kubernetes Certified Service Provider

'),(170818,4830,'_section_one_section_one_title','field_6317172018e9a'),(170819,4830,'section_one_section_one_image','4775'),(170820,4830,'_section_one_section_one_image','field_63171ca018e9c'),(170821,4830,'section_one_section_one_content','

Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.

'),(170822,4830,'_section_one_section_one_content','field_6317174118e9b'),(170823,4830,'section_one_section_one_navigation_one','
Cloud Native Applications
'),(170824,4830,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(170825,4830,'section_one_section_one_navigation_two','
Cloud Native DevOps
'),(170826,4830,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(170827,4830,'section_one_section_one_navigation_three','
Cloud Native Machine Learning
'),(170828,4830,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(170829,4830,'section_one_section_one_button_text','Book Consultation Now'),(170830,4830,'_section_one_section_one_button_text','field_63171dc918ea0'),(170831,4830,'section_one',''),(170832,4830,'_section_one','field_631716de18e98'),(170833,4830,'section_two_section_two_title','Our Services'),(170834,4830,'_section_two_section_two_title','field_63171e1457be9'),(170835,4830,'section_two_section_two_icon_one','4734'),(170836,4830,'_section_two_section_two_icon_one','field_63171e2c57bea'),(170837,4830,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(170838,4830,'_section_two_section_two_title_one','field_63171e5f57beb'),(170839,4830,'section_two_section_two_icon_two','4741'),(170840,4830,'_section_two_section_two_icon_two','field_63171e7357bec'),(170841,4830,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(170842,4830,'_section_two_section_two_title_two','field_63171ea157bee'),(170843,4830,'section_two_section_two_icon_three','4736'),(170844,4830,'_section_two_section_two_icon_three','field_63171e8557bed'),(170845,4830,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(170846,4830,'_section_two_section_two_title_three','field_63171ec257bef'),(170847,4830,'section_two_section_two_icon_four','4738'),(170848,4830,'_section_two_section_two_icon_four','field_63171ee257bf0'),(170849,4830,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(170850,4830,'_section_two_section_two_title_four','field_63171ef757bf1'),(170851,4830,'section_two_section_two_icon_five','4744'),(170852,4830,'_section_two_section_two_icon_five','field_63171f2857bf3'),(170853,4830,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(170854,4830,'_section_two_section_two_title_five','field_63171f3957bf4'),(170855,4830,'section_two_section_two_icon_six','4746'),(170856,4830,'_section_two_section_two_icon_six','field_63171f5057bf5'),(170857,4830,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(170858,4830,'_section_two_section_two_title_six','field_63171f6657bf6'),(170859,4830,'section_two_section_two_icon_seven','4748'),(170860,4830,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(170861,4830,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(170862,4830,'_section_two_section_two_title_seven','field_63171f9757bf8'),(170863,4830,'section_two_section_two_icon_eight','4750'),(170864,4830,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(170865,4830,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(170866,4830,'_section_two_section_two_title_eight','field_63171fc057bfa'),(170867,4830,'section_two',''),(170868,4830,'_section_two','field_63171dfb57be8'),(170869,4830,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(170870,4830,'_section_three_section_three_breadcrumb','field_631723036988b'),(170871,4830,'section_three_section_three_title','

Plan Your Next Kubernetes Project
\r\nwith Translucent

'),(170872,4830,'_section_three_section_three_title','field_631723176988c'),(170873,4830,'section_three_section_three_image','4779'),(170874,4830,'_section_three_section_three_image','field_631723ac6988e'),(170875,4830,'section_three_section_three_content','

Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.

\r\n
\r\n
 
\r\n
'),(170876,4830,'_section_three_section_three_content','field_631723906988d'),(170877,4830,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(170878,4830,'_section_three_section_three_footer','field_631723c36988f'),(170879,4830,'section_three_section_three_button_text','Book Consultation Now'),(170880,4830,'_section_three_section_three_button_text','field_631723d769890'),(170881,4830,'section_three',''),(170882,4830,'_section_three','field_631722b96988a'),(170883,4830,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(170884,4830,'_section_four_section_four_breadcrumb','field_6317271523757'),(170885,4830,'section_four_section_four_title','

Driving Digital Transformation with Containers and Kubernetes

'),(170886,4830,'_section_four_section_four_title','field_6317271523758'),(170887,4830,'section_four_section_four_image','4776'),(170888,4830,'_section_four_section_four_image','field_6317271523759'),(170889,4830,'section_four_section_four_content','

Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.

\r\n
\r\n
 
\r\n
'),(170890,4830,'_section_four_section_four_content','field_631727152375a'),(170891,4830,'section_four_section_four_footer','Build - Rebuild - Replatform'),(170892,4830,'_section_four_section_four_footer','field_631727152375b'),(170893,4830,'section_four',''),(170894,4830,'_section_four','field_6317271523756'),(170895,4830,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(170896,4830,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(170897,4830,'section_five_section_five_title','

24/7 support and maintenance
\r\nwith our site reliability engineering services

'),(170898,4830,'_section_five_section_five_title','field_631727bbd69dd'),(170899,4830,'section_five_section_five_image','4777'),(170900,4830,'_section_five_section_five_image','field_631727bbd69de'),(170901,4830,'section_five_section_five_content','

From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.

'),(170902,4830,'_section_five_section_five_content','field_631727bbd69df'),(170903,4830,'section_five_section_five_footer',''),(170904,4830,'_section_five_section_five_footer','field_631727bbd69e0'),(170905,4830,'section_five',''),(170906,4830,'_section_five','field_631727bbd69db'),(170907,4830,'footer_title','We treat your business like our own.'),(170908,4830,'_footer_title','field_631729e2753c6'),(170909,4830,'footer_button_text','Let\'s talk!'),(170910,4830,'_footer_button_text','field_63172a06753c7'),(170911,4830,'section_five_section_five_icon_one','4752'),(170912,4830,'_section_five_section_five_icon_one','field_631727bbd69e0'),(170913,4830,'section_five_section_five_icon_text_one','

SRE - Site Reliability Engineering

'),(170914,4830,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(170915,4830,'section_five_section_five_icon_two','4754'),(170916,4830,'_section_five_section_five_icon_two','field_631ef504912c5'),(170917,4830,'section_five_section_five_icon_text_two','

SLA - Service Level Agreements

'),(170918,4830,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(170919,4830,'section_five_section_five_icon_three','4756'),(170920,4830,'_section_five_section_five_icon_three','field_631ef510912c6'),(170921,4830,'section_five_section_five_icon_text_three','

SLO - Service Level Objectives

'),(170922,4830,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(170923,4830,'section_five_section_five_icon_four','4758'),(170924,4830,'_section_five_section_five_icon_four','field_631ef51c912c7'),(170925,4830,'section_five_section_five_icon_text_four','

SLI - Service Level Indicator

'),(170926,4830,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(170927,4830,'section_one_section_one_image_mobile','4820'),(170928,4830,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(170929,4830,'section_three_section_three_image_mobile','4821'),(170930,4830,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(170931,4830,'section_four_section_four_image_mobile','4823'),(170932,4830,'_section_four_section_four_image_mobile','field_632155def8a3f'),(170933,4830,'section_five_section_five_image_mobile','4824'),(170934,4830,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(170935,4831,'top_title','Kubernetes Professional Services'),(170936,4831,'_top_title','field_6317168918e96'),(170937,4831,'top_description','CLOUD NATIVE SOLUTIONS'),(170938,4831,'_top_description','field_6317169e18e97'),(170939,4831,'section_one_section_one_breadcrumb','KCSP'),(170940,4831,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(170941,4831,'section_one_section_one_title','

Kubernetes Certified Service Provider

'),(170942,4831,'_section_one_section_one_title','field_6317172018e9a'),(170943,4831,'section_one_section_one_image','4775'),(170944,4831,'_section_one_section_one_image','field_63171ca018e9c'),(170945,4831,'section_one_section_one_content','

Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.

'),(170946,4831,'_section_one_section_one_content','field_6317174118e9b'),(170947,4831,'section_one_section_one_navigation_one','
Cloud Native Applications
'),(170948,4831,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(170949,4831,'section_one_section_one_navigation_two','
Cloud Native DevOps
'),(170950,4831,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(170951,4831,'section_one_section_one_navigation_three','
Cloud Native Machine Learning
'),(170952,4831,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(170953,4831,'section_one_section_one_button_text','Book Consultation Now'),(170954,4831,'_section_one_section_one_button_text','field_63171dc918ea0'),(170955,4831,'section_one',''),(170956,4831,'_section_one','field_631716de18e98'),(170957,4831,'section_two_section_two_title','Our Services'),(170958,4831,'_section_two_section_two_title','field_63171e1457be9'),(170959,4831,'section_two_section_two_icon_one','4734'),(170960,4831,'_section_two_section_two_icon_one','field_63171e2c57bea'),(170961,4831,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(170962,4831,'_section_two_section_two_title_one','field_63171e5f57beb'),(170963,4831,'section_two_section_two_icon_two','4741'),(170964,4831,'_section_two_section_two_icon_two','field_63171e7357bec'),(170965,4831,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(170966,4831,'_section_two_section_two_title_two','field_63171ea157bee'),(170967,4831,'section_two_section_two_icon_three','4736'),(170968,4831,'_section_two_section_two_icon_three','field_63171e8557bed'),(170969,4831,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(170970,4831,'_section_two_section_two_title_three','field_63171ec257bef'),(170971,4831,'section_two_section_two_icon_four','4738'),(170972,4831,'_section_two_section_two_icon_four','field_63171ee257bf0'),(170973,4831,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(170974,4831,'_section_two_section_two_title_four','field_63171ef757bf1'),(170975,4831,'section_two_section_two_icon_five','4744'),(170976,4831,'_section_two_section_two_icon_five','field_63171f2857bf3'),(170977,4831,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(170978,4831,'_section_two_section_two_title_five','field_63171f3957bf4'),(170979,4831,'section_two_section_two_icon_six','4746'),(170980,4831,'_section_two_section_two_icon_six','field_63171f5057bf5'),(170981,4831,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(170982,4831,'_section_two_section_two_title_six','field_63171f6657bf6'),(170983,4831,'section_two_section_two_icon_seven','4748'),(170984,4831,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(170985,4831,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(170986,4831,'_section_two_section_two_title_seven','field_63171f9757bf8'),(170987,4831,'section_two_section_two_icon_eight','4750'),(170988,4831,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(170989,4831,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(170990,4831,'_section_two_section_two_title_eight','field_63171fc057bfa'),(170991,4831,'section_two',''),(170992,4831,'_section_two','field_63171dfb57be8'),(170993,4831,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(170994,4831,'_section_three_section_three_breadcrumb','field_631723036988b'),(170995,4831,'section_three_section_three_title','

Plan Your Next Kubernetes Project
\r\nwith Translucent

'),(170996,4831,'_section_three_section_three_title','field_631723176988c'),(170997,4831,'section_three_section_three_image','4779'),(170998,4831,'_section_three_section_three_image','field_631723ac6988e'),(170999,4831,'section_three_section_three_content','

Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.

'),(171000,4831,'_section_three_section_three_content','field_631723906988d'),(171001,4831,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(171002,4831,'_section_three_section_three_footer','field_631723c36988f'),(171003,4831,'section_three_section_three_button_text','Book Consultation Now'),(171004,4831,'_section_three_section_three_button_text','field_631723d769890'),(171005,4831,'section_three',''),(171006,4831,'_section_three','field_631722b96988a'),(171007,4831,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(171008,4831,'_section_four_section_four_breadcrumb','field_6317271523757'),(171009,4831,'section_four_section_four_title','

Driving Digital Transformation with Containers and Kubernetes

'),(171010,4831,'_section_four_section_four_title','field_6317271523758'),(171011,4831,'section_four_section_four_image','4776'),(171012,4831,'_section_four_section_four_image','field_6317271523759'),(171013,4831,'section_four_section_four_content','

Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.

'),(171014,4831,'_section_four_section_four_content','field_631727152375a'),(171015,4831,'section_four_section_four_footer','Build - Rebuild - Replatform'),(171016,4831,'_section_four_section_four_footer','field_631727152375b'),(171017,4831,'section_four',''),(171018,4831,'_section_four','field_6317271523756'),(171019,4831,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(171020,4831,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(171021,4831,'section_five_section_five_title','

24/7 support and maintenance
\r\nwith our site reliability engineering services

'),(171022,4831,'_section_five_section_five_title','field_631727bbd69dd'),(171023,4831,'section_five_section_five_image','4777'),(171024,4831,'_section_five_section_five_image','field_631727bbd69de'),(171025,4831,'section_five_section_five_content','

From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.

'),(171026,4831,'_section_five_section_five_content','field_631727bbd69df'),(171027,4831,'section_five_section_five_footer',''),(171028,4831,'_section_five_section_five_footer','field_631727bbd69e0'),(171029,4831,'section_five',''),(171030,4831,'_section_five','field_631727bbd69db'),(171031,4831,'footer_title','We treat your business like our own.'),(171032,4831,'_footer_title','field_631729e2753c6'),(171033,4831,'footer_button_text','Let\'s talk!'),(171034,4831,'_footer_button_text','field_63172a06753c7'),(171035,4831,'section_five_section_five_icon_one','4752'),(171036,4831,'_section_five_section_five_icon_one','field_631727bbd69e0'),(171037,4831,'section_five_section_five_icon_text_one','

SRE - Site Reliability Engineering

'),(171038,4831,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(171039,4831,'section_five_section_five_icon_two','4754'),(171040,4831,'_section_five_section_five_icon_two','field_631ef504912c5'),(171041,4831,'section_five_section_five_icon_text_two','

SLA - Service Level Agreements

'),(171042,4831,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(171043,4831,'section_five_section_five_icon_three','4756'),(171044,4831,'_section_five_section_five_icon_three','field_631ef510912c6'),(171045,4831,'section_five_section_five_icon_text_three','

SLO - Service Level Objectives

'),(171046,4831,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(171047,4831,'section_five_section_five_icon_four','4758'),(171048,4831,'_section_five_section_five_icon_four','field_631ef51c912c7'),(171049,4831,'section_five_section_five_icon_text_four','

SLI - Service Level Indicator

'),(171050,4831,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(171051,4831,'section_one_section_one_image_mobile','4820'),(171052,4831,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(171053,4831,'section_three_section_three_image_mobile','4821'),(171054,4831,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(171055,4831,'section_four_section_four_image_mobile','4823'),(171056,4831,'_section_four_section_four_image_mobile','field_632155def8a3f'),(171057,4831,'section_five_section_five_image_mobile','4824'),(171058,4831,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(171065,4833,'top-image',''),(171066,4833,'_top-image','field_5c488d805f5d4'),(171067,4833,'top_title',''),(171068,4833,'_top_title','field_5edfac92f4226'),(171069,4833,'top-text',''),(171070,4833,'_top-text','field_5c488e575f5d5'),(171071,4833,'features',''),(171072,4833,'_features','field_5c4890bc3ae1f'),(171073,4833,'about-title',''),(171074,4833,'_about-title','field_5c488e7a5f5d6'),(171075,4833,'about-text',''),(171076,4833,'_about-text','field_5c488e945f5d7'),(171077,4833,'problems',''),(171078,4833,'_problems','field_5c488ec75f5d8'),(171079,4833,'solutions',''),(171080,4833,'_solutions','field_5c488ed95f5d9'),(171081,4833,'difference',''),(171082,4833,'_difference','field_5c488eed5f5da'),(171083,4833,'panel',''),(171084,4833,'_panel','field_5c488f195f5db'),(171085,4833,'more-text',''),(171086,4833,'_more-text','field_5c488f8f5f5df'),(171087,4833,'phrase',''),(171088,4833,'_phrase','field_5c488faf5f5e0'),(171089,4833,'author',''),(171090,4833,'_author','field_5c488fba5f5e1'),(171091,4833,'top_description','Machine Learning'),(171092,4833,'_top_description','field_63170e008cc99'),(171093,4833,'top_background_desktop','4803'),(171094,4833,'_top_background_desktop','field_631eb1728b709'),(171095,4833,'top_background_mobile','4832'),(171096,4833,'_top_background_mobile','field_631eb1988b70a'),(171097,4833,'section_one_section_one_breadcrumb','THE FUTURE'),(171098,4833,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(171099,4833,'section_one_section_one_title','

How intelligent is your
\r\nbusiness?

'),(171100,4833,'_section_one_section_one_title','field_6316f2764091e'),(171101,4833,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(171102,4833,'_section_one_section_one_content','field_6316f2934091f'),(171103,4833,'section_one_section_one_image','4679'),(171104,4833,'_section_one_section_one_image','field_6316f2ab40920'),(171105,4833,'section_one_section_one_button_text','Book a consultation now'),(171106,4833,'_section_one_section_one_button_text','field_6316f2ca40921'),(171107,4833,'section_one',''),(171108,4833,'_section_one','field_6316f7ba1cd27'),(171109,4833,'section_two_section_two_button_text','Book a consultation now'),(171110,4833,'_section_two_section_two_button_text','field_6316fe1ff751b'),(171111,4833,'section_two_section_two_tab_one_header_title','Problems'),(171112,4833,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(171113,4833,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(171114,4833,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(171115,4833,'section_two_section_two_tab_one_image','4680'),(171116,4833,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(171117,4833,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(171118,4833,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(171119,4833,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(171120,4833,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(171121,4833,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(171122,4833,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(171123,4833,'section_two_section_two_tab_two_header_title','Solutions'),(171124,4833,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(171125,4833,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(171126,4833,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(171127,4833,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(171128,4833,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(171129,4833,'section_two_section_two_tab_two_content_icon_1','4683'),(171130,4833,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(171131,4833,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(171132,4833,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(171133,4833,'section_two_section_two_tab_two_content_icon_2','4684'),(171134,4833,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(171135,4833,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(171136,4833,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(171137,4833,'section_two_section_two_tab_two_content_icon_3','4685'),(171138,4833,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(171139,4833,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(171140,4833,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(171141,4833,'section_two_section_two_tab_two_content_icon_4','4686'),(171142,4833,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(171143,4833,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(171144,4833,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(171145,4833,'section_two_section_two_tab_three_header_title','Difference'),(171146,4833,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(171147,4833,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(171148,4833,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(171149,4833,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(171150,4833,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(171151,4833,'section_two_section_two_tab_three_image','4705'),(171152,4833,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(171153,4833,'section_two',''),(171154,4833,'_section_two','field_6316fa2531589'),(171155,4833,'section_three_section_three_title','Trusted Relationships'),(171156,4833,'_section_three_section_three_title','field_6316febdf751c'),(171157,4833,'section_three_section_three_one_icon','4687'),(171158,4833,'_section_three_section_three_one_icon','field_6316fefff751e'),(171159,4833,'section_three_section_three_one_title','Data Entry Automation'),(171160,4833,'_section_three_section_three_one_title','field_6316ff1cf751f'),(171161,4833,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171162,4833,'_section_three_section_three_one_content','field_6316ff29f7520'),(171163,4833,'section_three_section_three_two_icon','4688'),(171164,4833,'_section_three_section_three_two_icon','field_6316ff77f7523'),(171165,4833,'section_three_section_three_two_title','Product Recommendation'),(171166,4833,'_section_three_section_three_two_title','field_6316ff90f7524'),(171167,4833,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171168,4833,'_section_three_section_three_two_content','field_6316ff5df7522'),(171169,4833,'section_three_section_three_three_icon','4689'),(171170,4833,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(171171,4833,'section_three_section_three_three_title','Medical Diagnosis'),(171172,4833,'_section_three_section_three_three_title','field_6316fff5f7527'),(171173,4833,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171174,4833,'_section_three_section_three_three_content','field_63170010f7528'),(171175,4833,'section_three_section_three_four_icon','4690'),(171176,4833,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(171177,4833,'section_three_section_three_four_title','Clients: Who is buying what'),(171178,4833,'_section_three_section_three_four_title','field_631707992b1ca'),(171179,4833,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171180,4833,'_section_three_section_three_four_content','field_631707b42b1cb'),(171181,4833,'section_three_section_three_five_icon','4691'),(171182,4833,'_section_three_section_three_five_icon','field_631707e52b1cd'),(171183,4833,'section_three_section_three_five_title','User Behavior'),(171184,4833,'_section_three_section_three_five_title','field_631708002b1ce'),(171185,4833,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171186,4833,'_section_three_section_three_five_content','field_6317081c2b1cf'),(171187,4833,'section_three_section_three_six_icon','4692'),(171188,4833,'_section_three_section_three_six_icon','field_631708572b1d1'),(171189,4833,'section_three_section_three_six_title','BI: Automated Reporting'),(171190,4833,'_section_three_section_three_six_title','field_631708712b1d2'),(171191,4833,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171192,4833,'_section_three_section_three_six_content','field_6317088d2b1d3'),(171193,4833,'section_three_section_three_seven_icon','4693'),(171194,4833,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(171195,4833,'section_three_section_three_seven_title','Detecting Spam in Emails'),(171196,4833,'_section_three_section_three_seven_title','field_631708da2b1d6'),(171197,4833,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171198,4833,'_section_three_section_three_seven_content','field_631708f62b1d7'),(171199,4833,'section_three_section_three_eight_icon','4694'),(171200,4833,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(171201,4833,'section_three_section_three_eight_title','Analytics'),(171202,4833,'_section_three_section_three_eight_title','field_631709462b1da'),(171203,4833,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171204,4833,'_section_three_section_three_eight_content','field_6317095e2b1db'),(171205,4833,'section_three',''),(171206,4833,'_section_three','field_6316fcf4f751a'),(171207,4833,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(171208,4833,'_section_four_section_four_content','field_63170ac9aa9a2'),(171209,4833,'section_four_section_four_button_text','Book a consultation now'),(171210,4833,'_section_four_section_four_button_text','field_63170b08aa9a3'),(171211,4833,'section_four',''),(171212,4833,'_section_four','field_63170a81aa9a1'),(171213,4833,'section_five_section_five_title','We listen. We learn. We inform.'),(171214,4833,'_section_five_section_five_title','field_63170b8564fc2'),(171215,4833,'section_five_section_five_quote','

“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”

'),(171216,4833,'_section_five_section_five_quote','field_632013fd76a3e'),(171217,4833,'section_five_section_five_footer','forbes.com'),(171218,4833,'_section_five_section_five_footer','field_63170bad64fc4'),(171219,4833,'section_five',''),(171220,4833,'_section_five','field_63170b5f64fc1'),(171221,4833,'footer_title','We treat your business like our own.'),(171222,4833,'_footer_title','field_63170f4c8cc9a'),(171223,4833,'footer_button_text','Let\'s talk!'),(171224,4833,'_footer_button_text','field_63170f6f8cc9b'),(171225,4833,'top_title_1','CLOUD NATIVE SOLUTIONS'),(171226,4833,'_top_title_1','field_631ed55492adc'),(171227,4833,'top_title_page','CLOUD NATIVE SOLUTIONS'),(171228,4833,'_top_title_page','field_631ed55492adc'),(171229,4833,'section_one_section_one_image_mobile','4826'),(171230,4833,'_section_one_section_one_image_mobile','field_6321741c8e5ae'),(171231,4833,'section_two_section_two_tab_one_image_mobile','4827'),(171232,4833,'_section_two_section_two_tab_one_image_mobile','field_632174678e5af'),(171233,4833,'section_two_section_two_tab_three_image_mobile','4828'),(171234,4833,'_section_two_section_two_tab_three_image_mobile','field_632174798e5b0'),(171235,4834,'top-image',''),(171236,4834,'_top-image','field_5c488d805f5d4'),(171237,4834,'top_title',''),(171238,4834,'_top_title','field_5edfac92f4226'),(171239,4834,'top-text',''),(171240,4834,'_top-text','field_5c488e575f5d5'),(171241,4834,'features',''),(171242,4834,'_features','field_5c4890bc3ae1f'),(171243,4834,'about-title',''),(171244,4834,'_about-title','field_5c488e7a5f5d6'),(171245,4834,'about-text',''),(171246,4834,'_about-text','field_5c488e945f5d7'),(171247,4834,'problems',''),(171248,4834,'_problems','field_5c488ec75f5d8'),(171249,4834,'solutions',''),(171250,4834,'_solutions','field_5c488ed95f5d9'),(171251,4834,'difference',''),(171252,4834,'_difference','field_5c488eed5f5da'),(171253,4834,'panel',''),(171254,4834,'_panel','field_5c488f195f5db'),(171255,4834,'more-text',''),(171256,4834,'_more-text','field_5c488f8f5f5df'),(171257,4834,'phrase',''),(171258,4834,'_phrase','field_5c488faf5f5e0'),(171259,4834,'author',''),(171260,4834,'_author','field_5c488fba5f5e1'),(171261,4834,'top_description','Machine Learning'),(171262,4834,'_top_description','field_63170e008cc99'),(171263,4834,'top_background_desktop','4803'),(171264,4834,'_top_background_desktop','field_631eb1728b709'),(171265,4834,'top_background_mobile','4832'),(171266,4834,'_top_background_mobile','field_631eb1988b70a'),(171267,4834,'section_one_section_one_breadcrumb','THE FUTURE'),(171268,4834,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(171269,4834,'section_one_section_one_title','How intelligent is your
\r\nbusiness?'),(171270,4834,'_section_one_section_one_title','field_6316f2764091e'),(171271,4834,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(171272,4834,'_section_one_section_one_content','field_6316f2934091f'),(171273,4834,'section_one_section_one_image','4679'),(171274,4834,'_section_one_section_one_image','field_6316f2ab40920'),(171275,4834,'section_one_section_one_button_text','Book a consultation now'),(171276,4834,'_section_one_section_one_button_text','field_6316f2ca40921'),(171277,4834,'section_one',''),(171278,4834,'_section_one','field_6316f7ba1cd27'),(171279,4834,'section_two_section_two_button_text','Book a consultation now'),(171280,4834,'_section_two_section_two_button_text','field_6316fe1ff751b'),(171281,4834,'section_two_section_two_tab_one_header_title','Problems'),(171282,4834,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(171283,4834,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(171284,4834,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(171285,4834,'section_two_section_two_tab_one_image','4680'),(171286,4834,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(171287,4834,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(171288,4834,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(171289,4834,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(171290,4834,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(171291,4834,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(171292,4834,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(171293,4834,'section_two_section_two_tab_two_header_title','Solutions'),(171294,4834,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(171295,4834,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(171296,4834,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(171297,4834,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(171298,4834,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(171299,4834,'section_two_section_two_tab_two_content_icon_1','4683'),(171300,4834,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(171301,4834,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(171302,4834,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(171303,4834,'section_two_section_two_tab_two_content_icon_2','4684'),(171304,4834,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(171305,4834,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(171306,4834,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(171307,4834,'section_two_section_two_tab_two_content_icon_3','4685'),(171308,4834,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(171309,4834,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(171310,4834,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(171311,4834,'section_two_section_two_tab_two_content_icon_4','4686'),(171312,4834,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(171313,4834,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(171314,4834,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(171315,4834,'section_two_section_two_tab_three_header_title','Difference'),(171316,4834,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(171317,4834,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(171318,4834,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(171319,4834,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(171320,4834,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(171321,4834,'section_two_section_two_tab_three_image','4705'),(171322,4834,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(171323,4834,'section_two',''),(171324,4834,'_section_two','field_6316fa2531589'),(171325,4834,'section_three_section_three_title','Trusted Relationships'),(171326,4834,'_section_three_section_three_title','field_6316febdf751c'),(171327,4834,'section_three_section_three_one_icon','4687'),(171328,4834,'_section_three_section_three_one_icon','field_6316fefff751e'),(171329,4834,'section_three_section_three_one_title','Data Entry Automation'),(171330,4834,'_section_three_section_three_one_title','field_6316ff1cf751f'),(171331,4834,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171332,4834,'_section_three_section_three_one_content','field_6316ff29f7520'),(171333,4834,'section_three_section_three_two_icon','4688'),(171334,4834,'_section_three_section_three_two_icon','field_6316ff77f7523'),(171335,4834,'section_three_section_three_two_title','Product Recommendation'),(171336,4834,'_section_three_section_three_two_title','field_6316ff90f7524'),(171337,4834,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171338,4834,'_section_three_section_three_two_content','field_6316ff5df7522'),(171339,4834,'section_three_section_three_three_icon','4689'),(171340,4834,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(171341,4834,'section_three_section_three_three_title','Medical Diagnosis'),(171342,4834,'_section_three_section_three_three_title','field_6316fff5f7527'),(171343,4834,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171344,4834,'_section_three_section_three_three_content','field_63170010f7528'),(171345,4834,'section_three_section_three_four_icon','4690'),(171346,4834,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(171347,4834,'section_three_section_three_four_title','Clients: Who is buying what'),(171348,4834,'_section_three_section_three_four_title','field_631707992b1ca'),(171349,4834,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171350,4834,'_section_three_section_three_four_content','field_631707b42b1cb'),(171351,4834,'section_three_section_three_five_icon','4691'),(171352,4834,'_section_three_section_three_five_icon','field_631707e52b1cd'),(171353,4834,'section_three_section_three_five_title','User Behavior'),(171354,4834,'_section_three_section_three_five_title','field_631708002b1ce'),(171355,4834,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171356,4834,'_section_three_section_three_five_content','field_6317081c2b1cf'),(171357,4834,'section_three_section_three_six_icon','4692'),(171358,4834,'_section_three_section_three_six_icon','field_631708572b1d1'),(171359,4834,'section_three_section_three_six_title','BI: Automated Reporting'),(171360,4834,'_section_three_section_three_six_title','field_631708712b1d2'),(171361,4834,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171362,4834,'_section_three_section_three_six_content','field_6317088d2b1d3'),(171363,4834,'section_three_section_three_seven_icon','4693'),(171364,4834,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(171365,4834,'section_three_section_three_seven_title','Detecting Spam in Emails'),(171366,4834,'_section_three_section_three_seven_title','field_631708da2b1d6'),(171367,4834,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171368,4834,'_section_three_section_three_seven_content','field_631708f62b1d7'),(171369,4834,'section_three_section_three_eight_icon','4694'),(171370,4834,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(171371,4834,'section_three_section_three_eight_title','Analytics'),(171372,4834,'_section_three_section_three_eight_title','field_631709462b1da'),(171373,4834,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171374,4834,'_section_three_section_three_eight_content','field_6317095e2b1db'),(171375,4834,'section_three',''),(171376,4834,'_section_three','field_6316fcf4f751a'),(171377,4834,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(171378,4834,'_section_four_section_four_content','field_63170ac9aa9a2'),(171379,4834,'section_four_section_four_button_text','Book a consultation now'),(171380,4834,'_section_four_section_four_button_text','field_63170b08aa9a3'),(171381,4834,'section_four',''),(171382,4834,'_section_four','field_63170a81aa9a1'),(171383,4834,'section_five_section_five_title','We listen. We learn. We inform.'),(171384,4834,'_section_five_section_five_title','field_63170b8564fc2'),(171385,4834,'section_five_section_five_quote','

“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”

'),(171386,4834,'_section_five_section_five_quote','field_632013fd76a3e'),(171387,4834,'section_five_section_five_footer','forbes.com'),(171388,4834,'_section_five_section_five_footer','field_63170bad64fc4'),(171389,4834,'section_five',''),(171390,4834,'_section_five','field_63170b5f64fc1'),(171391,4834,'footer_title','We treat your business like our own.'),(171392,4834,'_footer_title','field_63170f4c8cc9a'),(171393,4834,'footer_button_text','Let\'s talk!'),(171394,4834,'_footer_button_text','field_63170f6f8cc9b'),(171395,4834,'top_title_1','CLOUD NATIVE SOLUTIONS'),(171396,4834,'_top_title_1','field_631ed55492adc'),(171397,4834,'top_title_page','CLOUD NATIVE SOLUTIONS'),(171398,4834,'_top_title_page','field_631ed55492adc'),(171399,4834,'section_one_section_one_image_mobile','4826'),(171400,4834,'_section_one_section_one_image_mobile','field_6321741c8e5ae'),(171401,4834,'section_two_section_two_tab_one_image_mobile','4827'),(171402,4834,'_section_two_section_two_tab_one_image_mobile','field_632174678e5af'),(171403,4834,'section_two_section_two_tab_three_image_mobile','4828'),(171404,4834,'_section_two_section_two_tab_three_image_mobile','field_632174798e5b0'),(171405,4835,'top-image',''),(171406,4835,'_top-image','field_5c488d805f5d4'),(171407,4835,'top_title',''),(171408,4835,'_top_title','field_5edfac92f4226'),(171409,4835,'top-text',''),(171410,4835,'_top-text','field_5c488e575f5d5'),(171411,4835,'features',''),(171412,4835,'_features','field_5c4890bc3ae1f'),(171413,4835,'about-title',''),(171414,4835,'_about-title','field_5c488e7a5f5d6'),(171415,4835,'about-text',''),(171416,4835,'_about-text','field_5c488e945f5d7'),(171417,4835,'problems',''),(171418,4835,'_problems','field_5c488ec75f5d8'),(171419,4835,'solutions',''),(171420,4835,'_solutions','field_5c488ed95f5d9'),(171421,4835,'difference',''),(171422,4835,'_difference','field_5c488eed5f5da'),(171423,4835,'panel',''),(171424,4835,'_panel','field_5c488f195f5db'),(171425,4835,'more-text',''),(171426,4835,'_more-text','field_5c488f8f5f5df'),(171427,4835,'phrase',''),(171428,4835,'_phrase','field_5c488faf5f5e0'),(171429,4835,'author',''),(171430,4835,'_author','field_5c488fba5f5e1'),(171431,4835,'top_description','Machine Learning'),(171432,4835,'_top_description','field_63170e008cc99'),(171433,4835,'top_background_desktop','4803'),(171434,4835,'_top_background_desktop','field_631eb1728b709'),(171435,4835,'top_background_mobile','4832'),(171436,4835,'_top_background_mobile','field_631eb1988b70a'),(171437,4835,'section_one_section_one_breadcrumb','THE FUTURE'),(171438,4835,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(171439,4835,'section_one_section_one_title','How intelligent is your
\r\nbusiness?'),(171440,4835,'_section_one_section_one_title','field_6316f2764091e'),(171441,4835,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(171442,4835,'_section_one_section_one_content','field_6316f2934091f'),(171443,4835,'section_one_section_one_image','4679'),(171444,4835,'_section_one_section_one_image','field_6316f2ab40920'),(171445,4835,'section_one_section_one_button_text','Book a consultation now'),(171446,4835,'_section_one_section_one_button_text','field_6316f2ca40921'),(171447,4835,'section_one',''),(171448,4835,'_section_one','field_6316f7ba1cd27'),(171449,4835,'section_two_section_two_button_text','Book a consultation now'),(171450,4835,'_section_two_section_two_button_text','field_6316fe1ff751b'),(171451,4835,'section_two_section_two_tab_one_header_title','Problems'),(171452,4835,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(171453,4835,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(171454,4835,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(171455,4835,'section_two_section_two_tab_one_image','4680'),(171456,4835,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(171457,4835,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(171458,4835,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(171459,4835,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(171460,4835,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(171461,4835,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(171462,4835,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(171463,4835,'section_two_section_two_tab_two_header_title','Solutions'),(171464,4835,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(171465,4835,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(171466,4835,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(171467,4835,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(171468,4835,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(171469,4835,'section_two_section_two_tab_two_content_icon_1','4683'),(171470,4835,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(171471,4835,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(171472,4835,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(171473,4835,'section_two_section_two_tab_two_content_icon_2','4684'),(171474,4835,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(171475,4835,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(171476,4835,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(171477,4835,'section_two_section_two_tab_two_content_icon_3','4685'),(171478,4835,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(171479,4835,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(171480,4835,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(171481,4835,'section_two_section_two_tab_two_content_icon_4','4686'),(171482,4835,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(171483,4835,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(171484,4835,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(171485,4835,'section_two_section_two_tab_three_header_title','Difference'),(171486,4835,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(171487,4835,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(171488,4835,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(171489,4835,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(171490,4835,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(171491,4835,'section_two_section_two_tab_three_image','4705'),(171492,4835,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(171493,4835,'section_two',''),(171494,4835,'_section_two','field_6316fa2531589'),(171495,4835,'section_three_section_three_title','Trusted Relationships'),(171496,4835,'_section_three_section_three_title','field_6316febdf751c'),(171497,4835,'section_three_section_three_one_icon','4687'),(171498,4835,'_section_three_section_three_one_icon','field_6316fefff751e'),(171499,4835,'section_three_section_three_one_title','Data Entry Automation'),(171500,4835,'_section_three_section_three_one_title','field_6316ff1cf751f'),(171501,4835,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n- Lorem ipsum dolor sit amet,'),(171502,4835,'_section_three_section_three_one_content','field_6316ff29f7520'),(171503,4835,'section_three_section_three_two_icon','4688'),(171504,4835,'_section_three_section_three_two_icon','field_6316ff77f7523'),(171505,4835,'section_three_section_three_two_title','Product Recommendation'),(171506,4835,'_section_three_section_three_two_title','field_6316ff90f7524'),(171507,4835,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171508,4835,'_section_three_section_three_two_content','field_6316ff5df7522'),(171509,4835,'section_three_section_three_three_icon','4689'),(171510,4835,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(171511,4835,'section_three_section_three_three_title','Medical Diagnosis'),(171512,4835,'_section_three_section_three_three_title','field_6316fff5f7527'),(171513,4835,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171514,4835,'_section_three_section_three_three_content','field_63170010f7528'),(171515,4835,'section_three_section_three_four_icon','4690'),(171516,4835,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(171517,4835,'section_three_section_three_four_title','Clients: Who is buying what'),(171518,4835,'_section_three_section_three_four_title','field_631707992b1ca'),(171519,4835,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171520,4835,'_section_three_section_three_four_content','field_631707b42b1cb'),(171521,4835,'section_three_section_three_five_icon','4691'),(171522,4835,'_section_three_section_three_five_icon','field_631707e52b1cd'),(171523,4835,'section_three_section_three_five_title','User Behavior'),(171524,4835,'_section_three_section_three_five_title','field_631708002b1ce'),(171525,4835,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171526,4835,'_section_three_section_three_five_content','field_6317081c2b1cf'),(171527,4835,'section_three_section_three_six_icon','4692'),(171528,4835,'_section_three_section_three_six_icon','field_631708572b1d1'),(171529,4835,'section_three_section_three_six_title','BI: Automated Reporting'),(171530,4835,'_section_three_section_three_six_title','field_631708712b1d2'),(171531,4835,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171532,4835,'_section_three_section_three_six_content','field_6317088d2b1d3'),(171533,4835,'section_three_section_three_seven_icon','4693'),(171534,4835,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(171535,4835,'section_three_section_three_seven_title','Detecting Spam in Emails'),(171536,4835,'_section_three_section_three_seven_title','field_631708da2b1d6'),(171537,4835,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171538,4835,'_section_three_section_three_seven_content','field_631708f62b1d7'),(171539,4835,'section_three_section_three_eight_icon','4694'),(171540,4835,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(171541,4835,'section_three_section_three_eight_title','Analytics'),(171542,4835,'_section_three_section_three_eight_title','field_631709462b1da'),(171543,4835,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171544,4835,'_section_three_section_three_eight_content','field_6317095e2b1db'),(171545,4835,'section_three',''),(171546,4835,'_section_three','field_6316fcf4f751a'),(171547,4835,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(171548,4835,'_section_four_section_four_content','field_63170ac9aa9a2'),(171549,4835,'section_four_section_four_button_text','Book a consultation now'),(171550,4835,'_section_four_section_four_button_text','field_63170b08aa9a3'),(171551,4835,'section_four',''),(171552,4835,'_section_four','field_63170a81aa9a1'),(171553,4835,'section_five_section_five_title','We listen. We learn. We inform.'),(171554,4835,'_section_five_section_five_title','field_63170b8564fc2'),(171555,4835,'section_five_section_five_quote','

“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”

'),(171556,4835,'_section_five_section_five_quote','field_632013fd76a3e'),(171557,4835,'section_five_section_five_footer','forbes.com'),(171558,4835,'_section_five_section_five_footer','field_63170bad64fc4'),(171559,4835,'section_five',''),(171560,4835,'_section_five','field_63170b5f64fc1'),(171561,4835,'footer_title','We treat your business like our own.'),(171562,4835,'_footer_title','field_63170f4c8cc9a'),(171563,4835,'footer_button_text','Let\'s talk!'),(171564,4835,'_footer_button_text','field_63170f6f8cc9b'),(171565,4835,'top_title_1','CLOUD NATIVE SOLUTIONS'),(171566,4835,'_top_title_1','field_631ed55492adc'),(171567,4835,'top_title_page','CLOUD NATIVE SOLUTIONS'),(171568,4835,'_top_title_page','field_631ed55492adc'),(171569,4835,'section_one_section_one_image_mobile','4826'),(171570,4835,'_section_one_section_one_image_mobile','field_6321741c8e5ae'),(171571,4835,'section_two_section_two_tab_one_image_mobile','4827'),(171572,4835,'_section_two_section_two_tab_one_image_mobile','field_632174678e5af'),(171573,4835,'section_two_section_two_tab_three_image_mobile','4828'),(171574,4835,'_section_two_section_two_tab_three_image_mobile','field_632174798e5b0'),(171575,4836,'top_title','Kubernetes Professional Services'),(171576,4836,'_top_title','field_6317168918e96'),(171577,4836,'top_description','CLOUD NATIVE SOLUTIONS'),(171578,4836,'_top_description','field_6317169e18e97'),(171579,4836,'section_one_section_one_breadcrumb','KCSP'),(171580,4836,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(171581,4836,'section_one_section_one_title','Kubernetes Certified Service Provider'),(171582,4836,'_section_one_section_one_title','field_6317172018e9a'),(171583,4836,'section_one_section_one_image','4775'),(171584,4836,'_section_one_section_one_image','field_63171ca018e9c'),(171585,4836,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.'),(171586,4836,'_section_one_section_one_content','field_6317174118e9b'),(171587,4836,'section_one_section_one_navigation_one','
Cloud Native Applications
'),(171588,4836,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(171589,4836,'section_one_section_one_navigation_two','
Cloud Native DevOps
'),(171590,4836,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(171591,4836,'section_one_section_one_navigation_three','
Cloud Native Machine Learning
'),(171592,4836,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(171593,4836,'section_one_section_one_button_text','Book Consultation Now'),(171594,4836,'_section_one_section_one_button_text','field_63171dc918ea0'),(171595,4836,'section_one',''),(171596,4836,'_section_one','field_631716de18e98'),(171597,4836,'section_two_section_two_title','Our Services'),(171598,4836,'_section_two_section_two_title','field_63171e1457be9'),(171599,4836,'section_two_section_two_icon_one','4734'),(171600,4836,'_section_two_section_two_icon_one','field_63171e2c57bea'),(171601,4836,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(171602,4836,'_section_two_section_two_title_one','field_63171e5f57beb'),(171603,4836,'section_two_section_two_icon_two','4741'),(171604,4836,'_section_two_section_two_icon_two','field_63171e7357bec'),(171605,4836,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(171606,4836,'_section_two_section_two_title_two','field_63171ea157bee'),(171607,4836,'section_two_section_two_icon_three','4736'),(171608,4836,'_section_two_section_two_icon_three','field_63171e8557bed'),(171609,4836,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(171610,4836,'_section_two_section_two_title_three','field_63171ec257bef'),(171611,4836,'section_two_section_two_icon_four','4738'),(171612,4836,'_section_two_section_two_icon_four','field_63171ee257bf0'),(171613,4836,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(171614,4836,'_section_two_section_two_title_four','field_63171ef757bf1'),(171615,4836,'section_two_section_two_icon_five','4744'),(171616,4836,'_section_two_section_two_icon_five','field_63171f2857bf3'),(171617,4836,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(171618,4836,'_section_two_section_two_title_five','field_63171f3957bf4'),(171619,4836,'section_two_section_two_icon_six','4746'),(171620,4836,'_section_two_section_two_icon_six','field_63171f5057bf5'),(171621,4836,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(171622,4836,'_section_two_section_two_title_six','field_63171f6657bf6'),(171623,4836,'section_two_section_two_icon_seven','4748'),(171624,4836,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(171625,4836,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(171626,4836,'_section_two_section_two_title_seven','field_63171f9757bf8'),(171627,4836,'section_two_section_two_icon_eight','4750'),(171628,4836,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(171629,4836,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(171630,4836,'_section_two_section_two_title_eight','field_63171fc057bfa'),(171631,4836,'section_two',''),(171632,4836,'_section_two','field_63171dfb57be8'),(171633,4836,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(171634,4836,'_section_three_section_three_breadcrumb','field_631723036988b'),(171635,4836,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(171636,4836,'_section_three_section_three_title','field_631723176988c'),(171637,4836,'section_three_section_three_image','4779'),(171638,4836,'_section_three_section_three_image','field_631723ac6988e'),(171639,4836,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(171640,4836,'_section_three_section_three_content','field_631723906988d'),(171641,4836,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(171642,4836,'_section_three_section_three_footer','field_631723c36988f'),(171643,4836,'section_three_section_three_button_text','Book Consultation Now'),(171644,4836,'_section_three_section_three_button_text','field_631723d769890'),(171645,4836,'section_three',''),(171646,4836,'_section_three','field_631722b96988a'),(171647,4836,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(171648,4836,'_section_four_section_four_breadcrumb','field_6317271523757'),(171649,4836,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(171650,4836,'_section_four_section_four_title','field_6317271523758'),(171651,4836,'section_four_section_four_image','4776'),(171652,4836,'_section_four_section_four_image','field_6317271523759'),(171653,4836,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(171654,4836,'_section_four_section_four_content','field_631727152375a'),(171655,4836,'section_four_section_four_footer','Build - Rebuild - Replatform'),(171656,4836,'_section_four_section_four_footer','field_631727152375b'),(171657,4836,'section_four',''),(171658,4836,'_section_four','field_6317271523756'),(171659,4836,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(171660,4836,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(171661,4836,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(171662,4836,'_section_five_section_five_title','field_631727bbd69dd'),(171663,4836,'section_five_section_five_image','4777'),(171664,4836,'_section_five_section_five_image','field_631727bbd69de'),(171665,4836,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(171666,4836,'_section_five_section_five_content','field_631727bbd69df'),(171667,4836,'section_five_section_five_footer',''),(171668,4836,'_section_five_section_five_footer','field_631727bbd69e0'),(171669,4836,'section_five',''),(171670,4836,'_section_five','field_631727bbd69db'),(171671,4836,'footer_title','We treat your business like our own.'),(171672,4836,'_footer_title','field_631729e2753c6'),(171673,4836,'footer_button_text','Let\'s talk!'),(171674,4836,'_footer_button_text','field_63172a06753c7'),(171675,4836,'section_five_section_five_icon_one','4752'),(171676,4836,'_section_five_section_five_icon_one','field_631727bbd69e0'),(171677,4836,'section_five_section_five_icon_text_one','

SRE - Site Reliability Engineering

'),(171678,4836,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(171679,4836,'section_five_section_five_icon_two','4754'),(171680,4836,'_section_five_section_five_icon_two','field_631ef504912c5'),(171681,4836,'section_five_section_five_icon_text_two','

SLA - Service Level Agreements

'),(171682,4836,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(171683,4836,'section_five_section_five_icon_three','4756'),(171684,4836,'_section_five_section_five_icon_three','field_631ef510912c6'),(171685,4836,'section_five_section_five_icon_text_three','

SLO - Service Level Objectives

'),(171686,4836,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(171687,4836,'section_five_section_five_icon_four','4758'),(171688,4836,'_section_five_section_five_icon_four','field_631ef51c912c7'),(171689,4836,'section_five_section_five_icon_text_four','

SLI - Service Level Indicator

'),(171690,4836,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(171691,4836,'section_one_section_one_image_mobile','4820'),(171692,4836,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(171693,4836,'section_three_section_three_image_mobile','4821'),(171694,4836,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(171695,4836,'section_four_section_four_image_mobile','4823'),(171696,4836,'_section_four_section_four_image_mobile','field_632155def8a3f'),(171697,4836,'section_five_section_five_image_mobile','4824'),(171698,4836,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(171699,4837,'top_title','Kubernetes Professional Services'),(171700,4837,'_top_title','field_6317168918e96'),(171701,4837,'top_description','CLOUD NATIVE SOLUTIONS'),(171702,4837,'_top_description','field_6317169e18e97'),(171703,4837,'section_one_section_one_breadcrumb','KCSP'),(171704,4837,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(171705,4837,'section_one_section_one_title','Kubernetes Certified Service Provider'),(171706,4837,'_section_one_section_one_title','field_6317172018e9a'),(171707,4837,'section_one_section_one_image','4775'),(171708,4837,'_section_one_section_one_image','field_63171ca018e9c'),(171709,4837,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.'),(171710,4837,'_section_one_section_one_content','field_6317174118e9b'),(171711,4837,'section_one_section_one_navigation_one','Cloud Native Applications'),(171712,4837,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(171713,4837,'section_one_section_one_navigation_two','Cloud Native DevOps'),(171714,4837,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(171715,4837,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(171716,4837,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(171717,4837,'section_one_section_one_button_text','Book Consultation Now'),(171718,4837,'_section_one_section_one_button_text','field_63171dc918ea0'),(171719,4837,'section_one',''),(171720,4837,'_section_one','field_631716de18e98'),(171721,4837,'section_two_section_two_title','Our Services'),(171722,4837,'_section_two_section_two_title','field_63171e1457be9'),(171723,4837,'section_two_section_two_icon_one','4734'),(171724,4837,'_section_two_section_two_icon_one','field_63171e2c57bea'),(171725,4837,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(171726,4837,'_section_two_section_two_title_one','field_63171e5f57beb'),(171727,4837,'section_two_section_two_icon_two','4741'),(171728,4837,'_section_two_section_two_icon_two','field_63171e7357bec'),(171729,4837,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(171730,4837,'_section_two_section_two_title_two','field_63171ea157bee'),(171731,4837,'section_two_section_two_icon_three','4736'),(171732,4837,'_section_two_section_two_icon_three','field_63171e8557bed'),(171733,4837,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(171734,4837,'_section_two_section_two_title_three','field_63171ec257bef'),(171735,4837,'section_two_section_two_icon_four','4738'),(171736,4837,'_section_two_section_two_icon_four','field_63171ee257bf0'),(171737,4837,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(171738,4837,'_section_two_section_two_title_four','field_63171ef757bf1'),(171739,4837,'section_two_section_two_icon_five','4744'),(171740,4837,'_section_two_section_two_icon_five','field_63171f2857bf3'),(171741,4837,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(171742,4837,'_section_two_section_two_title_five','field_63171f3957bf4'),(171743,4837,'section_two_section_two_icon_six','4746'),(171744,4837,'_section_two_section_two_icon_six','field_63171f5057bf5'),(171745,4837,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(171746,4837,'_section_two_section_two_title_six','field_63171f6657bf6'),(171747,4837,'section_two_section_two_icon_seven','4748'),(171748,4837,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(171749,4837,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(171750,4837,'_section_two_section_two_title_seven','field_63171f9757bf8'),(171751,4837,'section_two_section_two_icon_eight','4750'),(171752,4837,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(171753,4837,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(171754,4837,'_section_two_section_two_title_eight','field_63171fc057bfa'),(171755,4837,'section_two',''),(171756,4837,'_section_two','field_63171dfb57be8'),(171757,4837,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(171758,4837,'_section_three_section_three_breadcrumb','field_631723036988b'),(171759,4837,'section_three_section_three_title','Plan Your Next Kubernetes Project\r\nwith Translucent'),(171760,4837,'_section_three_section_three_title','field_631723176988c'),(171761,4837,'section_three_section_three_image','4779'),(171762,4837,'_section_three_section_three_image','field_631723ac6988e'),(171763,4837,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(171764,4837,'_section_three_section_three_content','field_631723906988d'),(171765,4837,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(171766,4837,'_section_three_section_three_footer','field_631723c36988f'),(171767,4837,'section_three_section_three_button_text','Book Consultation Now'),(171768,4837,'_section_three_section_three_button_text','field_631723d769890'),(171769,4837,'section_three',''),(171770,4837,'_section_three','field_631722b96988a'),(171771,4837,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(171772,4837,'_section_four_section_four_breadcrumb','field_6317271523757'),(171773,4837,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(171774,4837,'_section_four_section_four_title','field_6317271523758'),(171775,4837,'section_four_section_four_image','4776'),(171776,4837,'_section_four_section_four_image','field_6317271523759'),(171777,4837,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(171778,4837,'_section_four_section_four_content','field_631727152375a'),(171779,4837,'section_four_section_four_footer','Build - Rebuild - Replatform'),(171780,4837,'_section_four_section_four_footer','field_631727152375b'),(171781,4837,'section_four',''),(171782,4837,'_section_four','field_6317271523756'),(171783,4837,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(171784,4837,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(171785,4837,'section_five_section_five_title','24/7 support and maintenance\r\nwith our site reliability engineering services'),(171786,4837,'_section_five_section_five_title','field_631727bbd69dd'),(171787,4837,'section_five_section_five_image','4777'),(171788,4837,'_section_five_section_five_image','field_631727bbd69de'),(171789,4837,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(171790,4837,'_section_five_section_five_content','field_631727bbd69df'),(171791,4837,'section_five_section_five_footer',''),(171792,4837,'_section_five_section_five_footer','field_631727bbd69e0'),(171793,4837,'section_five',''),(171794,4837,'_section_five','field_631727bbd69db'),(171795,4837,'footer_title','We treat your business like our own.'),(171796,4837,'_footer_title','field_631729e2753c6'),(171797,4837,'footer_button_text','Let\'s talk!'),(171798,4837,'_footer_button_text','field_63172a06753c7'),(171799,4837,'section_five_section_five_icon_one','4752'),(171800,4837,'_section_five_section_five_icon_one','field_631727bbd69e0'),(171801,4837,'section_five_section_five_icon_text_one','

SRE - Site Reliability Engineering

'),(171802,4837,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(171803,4837,'section_five_section_five_icon_two','4754'),(171804,4837,'_section_five_section_five_icon_two','field_631ef504912c5'),(171805,4837,'section_five_section_five_icon_text_two','

SLA - Service Level Agreements

'),(171806,4837,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(171807,4837,'section_five_section_five_icon_three','4756'),(171808,4837,'_section_five_section_five_icon_three','field_631ef510912c6'),(171809,4837,'section_five_section_five_icon_text_three','

SLO - Service Level Objectives

'),(171810,4837,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(171811,4837,'section_five_section_five_icon_four','4758'),(171812,4837,'_section_five_section_five_icon_four','field_631ef51c912c7'),(171813,4837,'section_five_section_five_icon_text_four','

SLI - Service Level Indicator

'),(171814,4837,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(171815,4837,'section_one_section_one_image_mobile','4820'),(171816,4837,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(171817,4837,'section_three_section_three_image_mobile','4821'),(171818,4837,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(171819,4837,'section_four_section_four_image_mobile','4823'),(171820,4837,'_section_four_section_four_image_mobile','field_632155def8a3f'),(171821,4837,'section_five_section_five_image_mobile','4824'),(171822,4837,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(171823,4838,'top-image',''),(171824,4838,'_top-image','field_5c488d805f5d4'),(171825,4838,'top_title',''),(171826,4838,'_top_title','field_5edfac92f4226'),(171827,4838,'top-text',''),(171828,4838,'_top-text','field_5c488e575f5d5'),(171829,4838,'features',''),(171830,4838,'_features','field_5c4890bc3ae1f'),(171831,4838,'about-title',''),(171832,4838,'_about-title','field_5c488e7a5f5d6'),(171833,4838,'about-text',''),(171834,4838,'_about-text','field_5c488e945f5d7'),(171835,4838,'problems',''),(171836,4838,'_problems','field_5c488ec75f5d8'),(171837,4838,'solutions',''),(171838,4838,'_solutions','field_5c488ed95f5d9'),(171839,4838,'difference',''),(171840,4838,'_difference','field_5c488eed5f5da'),(171841,4838,'panel',''),(171842,4838,'_panel','field_5c488f195f5db'),(171843,4838,'more-text',''),(171844,4838,'_more-text','field_5c488f8f5f5df'),(171845,4838,'phrase',''),(171846,4838,'_phrase','field_5c488faf5f5e0'),(171847,4838,'author',''),(171848,4838,'_author','field_5c488fba5f5e1'),(171849,4838,'top_description','Machine Learning'),(171850,4838,'_top_description','field_63170e008cc99'),(171851,4838,'top_background_desktop','4803'),(171852,4838,'_top_background_desktop','field_631eb1728b709'),(171853,4838,'top_background_mobile','4496'),(171854,4838,'_top_background_mobile','field_631eb1988b70a'),(171855,4838,'section_one_section_one_breadcrumb','THE FUTURE'),(171856,4838,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(171857,4838,'section_one_section_one_title','How intelligent is your
\r\nbusiness?'),(171858,4838,'_section_one_section_one_title','field_6316f2764091e'),(171859,4838,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(171860,4838,'_section_one_section_one_content','field_6316f2934091f'),(171861,4838,'section_one_section_one_image','4679'),(171862,4838,'_section_one_section_one_image','field_6316f2ab40920'),(171863,4838,'section_one_section_one_button_text','Book a consultation now'),(171864,4838,'_section_one_section_one_button_text','field_6316f2ca40921'),(171865,4838,'section_one',''),(171866,4838,'_section_one','field_6316f7ba1cd27'),(171867,4838,'section_two_section_two_button_text','Book a consultation now'),(171868,4838,'_section_two_section_two_button_text','field_6316fe1ff751b'),(171869,4838,'section_two_section_two_tab_one_header_title','Problems'),(171870,4838,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(171871,4838,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(171872,4838,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(171873,4838,'section_two_section_two_tab_one_image','4680'),(171874,4838,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(171875,4838,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(171876,4838,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(171877,4838,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(171878,4838,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(171879,4838,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(171880,4838,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(171881,4838,'section_two_section_two_tab_two_header_title','Solutions'),(171882,4838,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(171883,4838,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(171884,4838,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(171885,4838,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(171886,4838,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(171887,4838,'section_two_section_two_tab_two_content_icon_1','4683'),(171888,4838,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(171889,4838,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(171890,4838,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(171891,4838,'section_two_section_two_tab_two_content_icon_2','4684'),(171892,4838,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(171893,4838,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(171894,4838,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(171895,4838,'section_two_section_two_tab_two_content_icon_3','4685'),(171896,4838,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(171897,4838,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(171898,4838,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(171899,4838,'section_two_section_two_tab_two_content_icon_4','4686'),(171900,4838,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(171901,4838,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(171902,4838,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(171903,4838,'section_two_section_two_tab_three_header_title','Difference'),(171904,4838,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(171905,4838,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(171906,4838,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(171907,4838,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(171908,4838,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(171909,4838,'section_two_section_two_tab_three_image','4705'),(171910,4838,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(171911,4838,'section_two',''),(171912,4838,'_section_two','field_6316fa2531589'),(171913,4838,'section_three_section_three_title','Trusted Relationships'),(171914,4838,'_section_three_section_three_title','field_6316febdf751c'),(171915,4838,'section_three_section_three_one_icon','4687'),(171916,4838,'_section_three_section_three_one_icon','field_6316fefff751e'),(171917,4838,'section_three_section_three_one_title','Data Entry Automation'),(171918,4838,'_section_three_section_three_one_title','field_6316ff1cf751f'),(171919,4838,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n- Lorem ipsum dolor sit amet,'),(171920,4838,'_section_three_section_three_one_content','field_6316ff29f7520'),(171921,4838,'section_three_section_three_two_icon','4688'),(171922,4838,'_section_three_section_three_two_icon','field_6316ff77f7523'),(171923,4838,'section_three_section_three_two_title','Product Recommendation'),(171924,4838,'_section_three_section_three_two_title','field_6316ff90f7524'),(171925,4838,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171926,4838,'_section_three_section_three_two_content','field_6316ff5df7522'),(171927,4838,'section_three_section_three_three_icon','4689'),(171928,4838,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(171929,4838,'section_three_section_three_three_title','Medical Diagnosis'),(171930,4838,'_section_three_section_three_three_title','field_6316fff5f7527'),(171931,4838,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171932,4838,'_section_three_section_three_three_content','field_63170010f7528'),(171933,4838,'section_three_section_three_four_icon','4690'),(171934,4838,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(171935,4838,'section_three_section_three_four_title','Clients: Who is buying what'),(171936,4838,'_section_three_section_three_four_title','field_631707992b1ca'),(171937,4838,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171938,4838,'_section_three_section_three_four_content','field_631707b42b1cb'),(171939,4838,'section_three_section_three_five_icon','4691'),(171940,4838,'_section_three_section_three_five_icon','field_631707e52b1cd'),(171941,4838,'section_three_section_three_five_title','User Behavior'),(171942,4838,'_section_three_section_three_five_title','field_631708002b1ce'),(171943,4838,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171944,4838,'_section_three_section_three_five_content','field_6317081c2b1cf'),(171945,4838,'section_three_section_three_six_icon','4692'),(171946,4838,'_section_three_section_three_six_icon','field_631708572b1d1'),(171947,4838,'section_three_section_three_six_title','BI: Automated Reporting'),(171948,4838,'_section_three_section_three_six_title','field_631708712b1d2'),(171949,4838,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171950,4838,'_section_three_section_three_six_content','field_6317088d2b1d3'),(171951,4838,'section_three_section_three_seven_icon','4693'),(171952,4838,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(171953,4838,'section_three_section_three_seven_title','Detecting Spam in Emails'),(171954,4838,'_section_three_section_three_seven_title','field_631708da2b1d6'),(171955,4838,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171956,4838,'_section_three_section_three_seven_content','field_631708f62b1d7'),(171957,4838,'section_three_section_three_eight_icon','4694'),(171958,4838,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(171959,4838,'section_three_section_three_eight_title','Analytics'),(171960,4838,'_section_three_section_three_eight_title','field_631709462b1da'),(171961,4838,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(171962,4838,'_section_three_section_three_eight_content','field_6317095e2b1db'),(171963,4838,'section_three',''),(171964,4838,'_section_three','field_6316fcf4f751a'),(171965,4838,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(171966,4838,'_section_four_section_four_content','field_63170ac9aa9a2'),(171967,4838,'section_four_section_four_button_text','Book a consultation now'),(171968,4838,'_section_four_section_four_button_text','field_63170b08aa9a3'),(171969,4838,'section_four',''),(171970,4838,'_section_four','field_63170a81aa9a1'),(171971,4838,'section_five_section_five_title','We listen. We learn. We inform.'),(171972,4838,'_section_five_section_five_title','field_63170b8564fc2'),(171973,4838,'section_five_section_five_quote','

“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”

'),(171974,4838,'_section_five_section_five_quote','field_632013fd76a3e'),(171975,4838,'section_five_section_five_footer','forbes.com'),(171976,4838,'_section_five_section_five_footer','field_63170bad64fc4'),(171977,4838,'section_five',''),(171978,4838,'_section_five','field_63170b5f64fc1'),(171979,4838,'footer_title','We treat your business like our own.'),(171980,4838,'_footer_title','field_63170f4c8cc9a'),(171981,4838,'footer_button_text','Let\'s talk!'),(171982,4838,'_footer_button_text','field_63170f6f8cc9b'),(171983,4838,'top_title_1','CLOUD NATIVE SOLUTIONS'),(171984,4838,'_top_title_1','field_631ed55492adc'),(171985,4838,'top_title_page','CLOUD NATIVE SOLUTIONS'),(171986,4838,'_top_title_page','field_631ed55492adc'),(171987,4838,'section_one_section_one_image_mobile','4826'),(171988,4838,'_section_one_section_one_image_mobile','field_6321741c8e5ae'),(171989,4838,'section_two_section_two_tab_one_image_mobile','4827'),(171990,4838,'_section_two_section_two_tab_one_image_mobile','field_632174678e5af'),(171991,4838,'section_two_section_two_tab_three_image_mobile','4828'),(171992,4838,'_section_two_section_two_tab_three_image_mobile','field_632174798e5b0'),(171993,4839,'top-image',''),(171994,4839,'_top-image','field_5c488d805f5d4'),(171995,4839,'top_title',''),(171996,4839,'_top_title','field_5edfac92f4226'),(171997,4839,'top-text',''),(171998,4839,'_top-text','field_5c488e575f5d5'),(171999,4839,'features',''),(172000,4839,'_features','field_5c4890bc3ae1f'),(172001,4839,'about-title',''),(172002,4839,'_about-title','field_5c488e7a5f5d6'),(172003,4839,'about-text',''),(172004,4839,'_about-text','field_5c488e945f5d7'),(172005,4839,'problems',''),(172006,4839,'_problems','field_5c488ec75f5d8'),(172007,4839,'solutions',''),(172008,4839,'_solutions','field_5c488ed95f5d9'),(172009,4839,'difference',''),(172010,4839,'_difference','field_5c488eed5f5da'),(172011,4839,'panel',''),(172012,4839,'_panel','field_5c488f195f5db'),(172013,4839,'more-text',''),(172014,4839,'_more-text','field_5c488f8f5f5df'),(172015,4839,'phrase',''),(172016,4839,'_phrase','field_5c488faf5f5e0'),(172017,4839,'author',''),(172018,4839,'_author','field_5c488fba5f5e1'),(172019,4839,'top_description','Machine Learning'),(172020,4839,'_top_description','field_63170e008cc99'),(172021,4839,'top_background_desktop','4496'),(172022,4839,'_top_background_desktop','field_631eb1728b709'),(172023,4839,'top_background_mobile','4496'),(172024,4839,'_top_background_mobile','field_631eb1988b70a'),(172025,4839,'section_one_section_one_breadcrumb','THE FUTURE'),(172026,4839,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(172027,4839,'section_one_section_one_title','How intelligent is your
\r\nbusiness?'),(172028,4839,'_section_one_section_one_title','field_6316f2764091e'),(172029,4839,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(172030,4839,'_section_one_section_one_content','field_6316f2934091f'),(172031,4839,'section_one_section_one_image','4679'),(172032,4839,'_section_one_section_one_image','field_6316f2ab40920'),(172033,4839,'section_one_section_one_button_text','Book a consultation now'),(172034,4839,'_section_one_section_one_button_text','field_6316f2ca40921'),(172035,4839,'section_one',''),(172036,4839,'_section_one','field_6316f7ba1cd27'),(172037,4839,'section_two_section_two_button_text','Book a consultation now'),(172038,4839,'_section_two_section_two_button_text','field_6316fe1ff751b'),(172039,4839,'section_two_section_two_tab_one_header_title','Problems'),(172040,4839,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(172041,4839,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(172042,4839,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(172043,4839,'section_two_section_two_tab_one_image','4680'),(172044,4839,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(172045,4839,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(172046,4839,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(172047,4839,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(172048,4839,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(172049,4839,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(172050,4839,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(172051,4839,'section_two_section_two_tab_two_header_title','Solutions'),(172052,4839,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(172053,4839,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(172054,4839,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(172055,4839,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(172056,4839,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(172057,4839,'section_two_section_two_tab_two_content_icon_1','4683'),(172058,4839,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(172059,4839,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(172060,4839,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(172061,4839,'section_two_section_two_tab_two_content_icon_2','4684'),(172062,4839,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(172063,4839,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(172064,4839,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(172065,4839,'section_two_section_two_tab_two_content_icon_3','4685'),(172066,4839,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(172067,4839,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(172068,4839,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(172069,4839,'section_two_section_two_tab_two_content_icon_4','4686'),(172070,4839,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(172071,4839,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(172072,4839,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(172073,4839,'section_two_section_two_tab_three_header_title','Difference'),(172074,4839,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(172075,4839,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(172076,4839,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(172077,4839,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(172078,4839,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(172079,4839,'section_two_section_two_tab_three_image','4705'),(172080,4839,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(172081,4839,'section_two',''),(172082,4839,'_section_two','field_6316fa2531589'),(172083,4839,'section_three_section_three_title','Trusted Relationships'),(172084,4839,'_section_three_section_three_title','field_6316febdf751c'),(172085,4839,'section_three_section_three_one_icon','4687'),(172086,4839,'_section_three_section_three_one_icon','field_6316fefff751e'),(172087,4839,'section_three_section_three_one_title','Data Entry Automation'),(172088,4839,'_section_three_section_three_one_title','field_6316ff1cf751f'),(172089,4839,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n- Lorem ipsum dolor sit amet,'),(172090,4839,'_section_three_section_three_one_content','field_6316ff29f7520'),(172091,4839,'section_three_section_three_two_icon','4688'),(172092,4839,'_section_three_section_three_two_icon','field_6316ff77f7523'),(172093,4839,'section_three_section_three_two_title','Product Recommendation'),(172094,4839,'_section_three_section_three_two_title','field_6316ff90f7524'),(172095,4839,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172096,4839,'_section_three_section_three_two_content','field_6316ff5df7522'),(172097,4839,'section_three_section_three_three_icon','4689'),(172098,4839,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(172099,4839,'section_three_section_three_three_title','Medical Diagnosis'),(172100,4839,'_section_three_section_three_three_title','field_6316fff5f7527'),(172101,4839,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172102,4839,'_section_three_section_three_three_content','field_63170010f7528'),(172103,4839,'section_three_section_three_four_icon','4690'),(172104,4839,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(172105,4839,'section_three_section_three_four_title','Clients: Who is buying what'),(172106,4839,'_section_three_section_three_four_title','field_631707992b1ca'),(172107,4839,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172108,4839,'_section_three_section_three_four_content','field_631707b42b1cb'),(172109,4839,'section_three_section_three_five_icon','4691'),(172110,4839,'_section_three_section_three_five_icon','field_631707e52b1cd'),(172111,4839,'section_three_section_three_five_title','User Behavior'),(172112,4839,'_section_three_section_three_five_title','field_631708002b1ce'),(172113,4839,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172114,4839,'_section_three_section_three_five_content','field_6317081c2b1cf'),(172115,4839,'section_three_section_three_six_icon','4692'),(172116,4839,'_section_three_section_three_six_icon','field_631708572b1d1'),(172117,4839,'section_three_section_three_six_title','BI: Automated Reporting'),(172118,4839,'_section_three_section_three_six_title','field_631708712b1d2'),(172119,4839,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172120,4839,'_section_three_section_three_six_content','field_6317088d2b1d3'),(172121,4839,'section_three_section_three_seven_icon','4693'),(172122,4839,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(172123,4839,'section_three_section_three_seven_title','Detecting Spam in Emails'),(172124,4839,'_section_three_section_three_seven_title','field_631708da2b1d6'),(172125,4839,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172126,4839,'_section_three_section_three_seven_content','field_631708f62b1d7'),(172127,4839,'section_three_section_three_eight_icon','4694'),(172128,4839,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(172129,4839,'section_three_section_three_eight_title','Analytics'),(172130,4839,'_section_three_section_three_eight_title','field_631709462b1da'),(172131,4839,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172132,4839,'_section_three_section_three_eight_content','field_6317095e2b1db'),(172133,4839,'section_three',''),(172134,4839,'_section_three','field_6316fcf4f751a'),(172135,4839,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(172136,4839,'_section_four_section_four_content','field_63170ac9aa9a2'),(172137,4839,'section_four_section_four_button_text','Book a consultation now'),(172138,4839,'_section_four_section_four_button_text','field_63170b08aa9a3'),(172139,4839,'section_four',''),(172140,4839,'_section_four','field_63170a81aa9a1'),(172141,4839,'section_five_section_five_title','We listen. We learn. We inform.'),(172142,4839,'_section_five_section_five_title','field_63170b8564fc2'),(172143,4839,'section_five_section_five_quote','

“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”

'),(172144,4839,'_section_five_section_five_quote','field_632013fd76a3e'),(172145,4839,'section_five_section_five_footer','forbes.com'),(172146,4839,'_section_five_section_five_footer','field_63170bad64fc4'),(172147,4839,'section_five',''),(172148,4839,'_section_five','field_63170b5f64fc1'),(172149,4839,'footer_title','We treat your business like our own.'),(172150,4839,'_footer_title','field_63170f4c8cc9a'),(172151,4839,'footer_button_text','Let\'s talk!'),(172152,4839,'_footer_button_text','field_63170f6f8cc9b'),(172153,4839,'top_title_1','CLOUD NATIVE SOLUTIONS'),(172154,4839,'_top_title_1','field_631ed55492adc'),(172155,4839,'top_title_page','CLOUD NATIVE SOLUTIONS'),(172156,4839,'_top_title_page','field_631ed55492adc'),(172157,4839,'section_one_section_one_image_mobile','4826'),(172158,4839,'_section_one_section_one_image_mobile','field_6321741c8e5ae'),(172159,4839,'section_two_section_two_tab_one_image_mobile','4827'),(172160,4839,'_section_two_section_two_tab_one_image_mobile','field_632174678e5af'),(172161,4839,'section_two_section_two_tab_three_image_mobile','4828'),(172162,4839,'_section_two_section_two_tab_three_image_mobile','field_632174798e5b0'),(172167,4842,'top-image',''),(172168,4842,'_top-image','field_5c488d805f5d4'),(172169,4842,'top_title',''),(172170,4842,'_top_title','field_5edfac92f4226'),(172171,4842,'top-text',''),(172172,4842,'_top-text','field_5c488e575f5d5'),(172173,4842,'features',''),(172174,4842,'_features','field_5c4890bc3ae1f'),(172175,4842,'about-title',''),(172176,4842,'_about-title','field_5c488e7a5f5d6'),(172177,4842,'about-text',''),(172178,4842,'_about-text','field_5c488e945f5d7'),(172179,4842,'problems',''),(172180,4842,'_problems','field_5c488ec75f5d8'),(172181,4842,'solutions',''),(172182,4842,'_solutions','field_5c488ed95f5d9'),(172183,4842,'difference',''),(172184,4842,'_difference','field_5c488eed5f5da'),(172185,4842,'panel',''),(172186,4842,'_panel','field_5c488f195f5db'),(172187,4842,'more-text',''),(172188,4842,'_more-text','field_5c488f8f5f5df'),(172189,4842,'phrase',''),(172190,4842,'_phrase','field_5c488faf5f5e0'),(172191,4842,'author',''),(172192,4842,'_author','field_5c488fba5f5e1'),(172193,4842,'top_description','Machine Learning'),(172194,4842,'_top_description','field_63170e008cc99'),(172195,4842,'top_background_desktop','4840'),(172196,4842,'_top_background_desktop','field_631eb1728b709'),(172197,4842,'top_background_mobile','4841'),(172198,4842,'_top_background_mobile','field_631eb1988b70a'),(172199,4842,'section_one_section_one_breadcrumb','THE FUTURE'),(172200,4842,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(172201,4842,'section_one_section_one_title','How intelligent is your
\r\nbusiness?'),(172202,4842,'_section_one_section_one_title','field_6316f2764091e'),(172203,4842,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(172204,4842,'_section_one_section_one_content','field_6316f2934091f'),(172205,4842,'section_one_section_one_image','4679'),(172206,4842,'_section_one_section_one_image','field_6316f2ab40920'),(172207,4842,'section_one_section_one_button_text','Book a consultation now'),(172208,4842,'_section_one_section_one_button_text','field_6316f2ca40921'),(172209,4842,'section_one',''),(172210,4842,'_section_one','field_6316f7ba1cd27'),(172211,4842,'section_two_section_two_button_text','Book a consultation now'),(172212,4842,'_section_two_section_two_button_text','field_6316fe1ff751b'),(172213,4842,'section_two_section_two_tab_one_header_title','Problems'),(172214,4842,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(172215,4842,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(172216,4842,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(172217,4842,'section_two_section_two_tab_one_image','4680'),(172218,4842,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(172219,4842,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(172220,4842,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(172221,4842,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(172222,4842,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(172223,4842,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(172224,4842,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(172225,4842,'section_two_section_two_tab_two_header_title','Solutions'),(172226,4842,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(172227,4842,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(172228,4842,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(172229,4842,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(172230,4842,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(172231,4842,'section_two_section_two_tab_two_content_icon_1','4683'),(172232,4842,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(172233,4842,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(172234,4842,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(172235,4842,'section_two_section_two_tab_two_content_icon_2','4684'),(172236,4842,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(172237,4842,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(172238,4842,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(172239,4842,'section_two_section_two_tab_two_content_icon_3','4685'),(172240,4842,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(172241,4842,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(172242,4842,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(172243,4842,'section_two_section_two_tab_two_content_icon_4','4686'),(172244,4842,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(172245,4842,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(172246,4842,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(172247,4842,'section_two_section_two_tab_three_header_title','Difference'),(172248,4842,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(172249,4842,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(172250,4842,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(172251,4842,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(172252,4842,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(172253,4842,'section_two_section_two_tab_three_image','4705'),(172254,4842,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(172255,4842,'section_two',''),(172256,4842,'_section_two','field_6316fa2531589'),(172257,4842,'section_three_section_three_title','Trusted Relationships'),(172258,4842,'_section_three_section_three_title','field_6316febdf751c'),(172259,4842,'section_three_section_three_one_icon','4687'),(172260,4842,'_section_three_section_three_one_icon','field_6316fefff751e'),(172261,4842,'section_three_section_three_one_title','Data Entry Automation'),(172262,4842,'_section_three_section_three_one_title','field_6316ff1cf751f'),(172263,4842,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n- Lorem ipsum dolor sit amet,'),(172264,4842,'_section_three_section_three_one_content','field_6316ff29f7520'),(172265,4842,'section_three_section_three_two_icon','4688'),(172266,4842,'_section_three_section_three_two_icon','field_6316ff77f7523'),(172267,4842,'section_three_section_three_two_title','Product Recommendation'),(172268,4842,'_section_three_section_three_two_title','field_6316ff90f7524'),(172269,4842,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172270,4842,'_section_three_section_three_two_content','field_6316ff5df7522'),(172271,4842,'section_three_section_three_three_icon','4689'),(172272,4842,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(172273,4842,'section_three_section_three_three_title','Medical Diagnosis'),(172274,4842,'_section_three_section_three_three_title','field_6316fff5f7527'),(172275,4842,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172276,4842,'_section_three_section_three_three_content','field_63170010f7528'),(172277,4842,'section_three_section_three_four_icon','4690'),(172278,4842,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(172279,4842,'section_three_section_three_four_title','Clients: Who is buying what'),(172280,4842,'_section_three_section_three_four_title','field_631707992b1ca'),(172281,4842,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172282,4842,'_section_three_section_three_four_content','field_631707b42b1cb'),(172283,4842,'section_three_section_three_five_icon','4691'),(172284,4842,'_section_three_section_three_five_icon','field_631707e52b1cd'),(172285,4842,'section_three_section_three_five_title','User Behavior'),(172286,4842,'_section_three_section_three_five_title','field_631708002b1ce'),(172287,4842,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172288,4842,'_section_three_section_three_five_content','field_6317081c2b1cf'),(172289,4842,'section_three_section_three_six_icon','4692'),(172290,4842,'_section_three_section_three_six_icon','field_631708572b1d1'),(172291,4842,'section_three_section_three_six_title','BI: Automated Reporting'),(172292,4842,'_section_three_section_three_six_title','field_631708712b1d2'),(172293,4842,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172294,4842,'_section_three_section_three_six_content','field_6317088d2b1d3'),(172295,4842,'section_three_section_three_seven_icon','4693'),(172296,4842,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(172297,4842,'section_three_section_three_seven_title','Detecting Spam in Emails'),(172298,4842,'_section_three_section_three_seven_title','field_631708da2b1d6'),(172299,4842,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172300,4842,'_section_three_section_three_seven_content','field_631708f62b1d7'),(172301,4842,'section_three_section_three_eight_icon','4694'),(172302,4842,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(172303,4842,'section_three_section_three_eight_title','Analytics'),(172304,4842,'_section_three_section_three_eight_title','field_631709462b1da'),(172305,4842,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172306,4842,'_section_three_section_three_eight_content','field_6317095e2b1db'),(172307,4842,'section_three',''),(172308,4842,'_section_three','field_6316fcf4f751a'),(172309,4842,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(172310,4842,'_section_four_section_four_content','field_63170ac9aa9a2'),(172311,4842,'section_four_section_four_button_text','Book a consultation now'),(172312,4842,'_section_four_section_four_button_text','field_63170b08aa9a3'),(172313,4842,'section_four',''),(172314,4842,'_section_four','field_63170a81aa9a1'),(172315,4842,'section_five_section_five_title','We listen. We learn. We inform.'),(172316,4842,'_section_five_section_five_title','field_63170b8564fc2'),(172317,4842,'section_five_section_five_quote','

“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”

'),(172318,4842,'_section_five_section_five_quote','field_632013fd76a3e'),(172319,4842,'section_five_section_five_footer','forbes.com'),(172320,4842,'_section_five_section_five_footer','field_63170bad64fc4'),(172321,4842,'section_five',''),(172322,4842,'_section_five','field_63170b5f64fc1'),(172323,4842,'footer_title','We treat your business like our own.'),(172324,4842,'_footer_title','field_63170f4c8cc9a'),(172325,4842,'footer_button_text','Let\'s talk!'),(172326,4842,'_footer_button_text','field_63170f6f8cc9b'),(172327,4842,'top_title_1','CLOUD NATIVE SOLUTIONS'),(172328,4842,'_top_title_1','field_631ed55492adc'),(172329,4842,'top_title_page','CLOUD NATIVE SOLUTIONS'),(172330,4842,'_top_title_page','field_631ed55492adc'),(172331,4842,'section_one_section_one_image_mobile','4826'),(172332,4842,'_section_one_section_one_image_mobile','field_6321741c8e5ae'),(172333,4842,'section_two_section_two_tab_one_image_mobile','4827'),(172334,4842,'_section_two_section_two_tab_one_image_mobile','field_632174678e5af'),(172335,4842,'section_two_section_two_tab_three_image_mobile','4828'),(172336,4842,'_section_two_section_two_tab_three_image_mobile','field_632174798e5b0'),(172348,4844,'top-image',''),(172349,4844,'_top-image','field_5c488d805f5d4'),(172350,4844,'top_title',''),(172351,4844,'_top_title','field_5edfac92f4226'),(172352,4844,'top-text',''),(172353,4844,'_top-text','field_5c488e575f5d5'),(172354,4844,'features',''),(172355,4844,'_features','field_5c4890bc3ae1f'),(172356,4844,'about-title',''),(172357,4844,'_about-title','field_5c488e7a5f5d6'),(172358,4844,'about-text',''),(172359,4844,'_about-text','field_5c488e945f5d7'),(172360,4844,'problems',''),(172361,4844,'_problems','field_5c488ec75f5d8'),(172362,4844,'solutions',''),(172363,4844,'_solutions','field_5c488ed95f5d9'),(172364,4844,'difference',''),(172365,4844,'_difference','field_5c488eed5f5da'),(172366,4844,'panel',''),(172367,4844,'_panel','field_5c488f195f5db'),(172368,4844,'more-text',''),(172369,4844,'_more-text','field_5c488f8f5f5df'),(172370,4844,'phrase',''),(172371,4844,'_phrase','field_5c488faf5f5e0'),(172372,4844,'author',''),(172373,4844,'_author','field_5c488fba5f5e1'),(172374,4844,'top_description','Machine Learning'),(172375,4844,'_top_description','field_63170e008cc99'),(172376,4844,'top_background_desktop','4840'),(172377,4844,'_top_background_desktop','field_631eb1728b709'),(172378,4844,'top_background_mobile','4843'),(172379,4844,'_top_background_mobile','field_631eb1988b70a'),(172380,4844,'section_one_section_one_breadcrumb','THE FUTURE'),(172381,4844,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(172382,4844,'section_one_section_one_title','How intelligent is your
\r\nbusiness?'),(172383,4844,'_section_one_section_one_title','field_6316f2764091e'),(172384,4844,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(172385,4844,'_section_one_section_one_content','field_6316f2934091f'),(172386,4844,'section_one_section_one_image','4679'),(172387,4844,'_section_one_section_one_image','field_6316f2ab40920'),(172388,4844,'section_one_section_one_button_text','Book a consultation now'),(172389,4844,'_section_one_section_one_button_text','field_6316f2ca40921'),(172390,4844,'section_one',''),(172391,4844,'_section_one','field_6316f7ba1cd27'),(172392,4844,'section_two_section_two_button_text','Book a consultation now'),(172393,4844,'_section_two_section_two_button_text','field_6316fe1ff751b'),(172394,4844,'section_two_section_two_tab_one_header_title','Problems'),(172395,4844,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(172396,4844,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(172397,4844,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(172398,4844,'section_two_section_two_tab_one_image','4680'),(172399,4844,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(172400,4844,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(172401,4844,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(172402,4844,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money? How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(172403,4844,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(172404,4844,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(172405,4844,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(172406,4844,'section_two_section_two_tab_two_header_title','Solutions'),(172407,4844,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(172408,4844,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(172409,4844,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(172410,4844,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(172411,4844,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(172412,4844,'section_two_section_two_tab_two_content_icon_1','4683'),(172413,4844,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(172414,4844,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(172415,4844,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(172416,4844,'section_two_section_two_tab_two_content_icon_2','4684'),(172417,4844,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(172418,4844,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(172419,4844,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(172420,4844,'section_two_section_two_tab_two_content_icon_3','4685'),(172421,4844,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(172422,4844,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(172423,4844,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(172424,4844,'section_two_section_two_tab_two_content_icon_4','4686'),(172425,4844,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(172426,4844,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(172427,4844,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(172428,4844,'section_two_section_two_tab_three_header_title','Difference'),(172429,4844,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(172430,4844,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(172431,4844,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(172432,4844,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(172433,4844,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(172434,4844,'section_two_section_two_tab_three_image','4705'),(172435,4844,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(172436,4844,'section_two',''),(172437,4844,'_section_two','field_6316fa2531589'),(172438,4844,'section_three_section_three_title','Trusted Relationships'),(172439,4844,'_section_three_section_three_title','field_6316febdf751c'),(172440,4844,'section_three_section_three_one_icon','4687'),(172441,4844,'_section_three_section_three_one_icon','field_6316fefff751e'),(172442,4844,'section_three_section_three_one_title','Data Entry Automation'),(172443,4844,'_section_three_section_three_one_title','field_6316ff1cf751f'),(172444,4844,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n- Lorem ipsum dolor sit amet,'),(172445,4844,'_section_three_section_three_one_content','field_6316ff29f7520'),(172446,4844,'section_three_section_three_two_icon','4688'),(172447,4844,'_section_three_section_three_two_icon','field_6316ff77f7523'),(172448,4844,'section_three_section_three_two_title','Product Recommendation'),(172449,4844,'_section_three_section_three_two_title','field_6316ff90f7524'),(172450,4844,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172451,4844,'_section_three_section_three_two_content','field_6316ff5df7522'),(172452,4844,'section_three_section_three_three_icon','4689'),(172453,4844,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(172454,4844,'section_three_section_three_three_title','Medical Diagnosis'),(172455,4844,'_section_three_section_three_three_title','field_6316fff5f7527'),(172456,4844,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172457,4844,'_section_three_section_three_three_content','field_63170010f7528'),(172458,4844,'section_three_section_three_four_icon','4690'),(172459,4844,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(172460,4844,'section_three_section_three_four_title','Clients: Who is buying what'),(172461,4844,'_section_three_section_three_four_title','field_631707992b1ca'),(172462,4844,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172463,4844,'_section_three_section_three_four_content','field_631707b42b1cb'),(172464,4844,'section_three_section_three_five_icon','4691'),(172465,4844,'_section_three_section_three_five_icon','field_631707e52b1cd'),(172466,4844,'section_three_section_three_five_title','User Behavior'),(172467,4844,'_section_three_section_three_five_title','field_631708002b1ce'),(172468,4844,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172469,4844,'_section_three_section_three_five_content','field_6317081c2b1cf'),(172470,4844,'section_three_section_three_six_icon','4692'),(172471,4844,'_section_three_section_three_six_icon','field_631708572b1d1'),(172472,4844,'section_three_section_three_six_title','BI: Automated Reporting'),(172473,4844,'_section_three_section_three_six_title','field_631708712b1d2'),(172474,4844,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172475,4844,'_section_three_section_three_six_content','field_6317088d2b1d3'),(172476,4844,'section_three_section_three_seven_icon','4693'),(172477,4844,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(172478,4844,'section_three_section_three_seven_title','Detecting Spam in Emails'),(172479,4844,'_section_three_section_three_seven_title','field_631708da2b1d6'),(172480,4844,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172481,4844,'_section_three_section_three_seven_content','field_631708f62b1d7'),(172482,4844,'section_three_section_three_eight_icon','4694'),(172483,4844,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(172484,4844,'section_three_section_three_eight_title','Analytics'),(172485,4844,'_section_three_section_three_eight_title','field_631709462b1da'),(172486,4844,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172487,4844,'_section_three_section_three_eight_content','field_6317095e2b1db'),(172488,4844,'section_three',''),(172489,4844,'_section_three','field_6316fcf4f751a'),(172490,4844,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(172491,4844,'_section_four_section_four_content','field_63170ac9aa9a2'),(172492,4844,'section_four_section_four_button_text','Book a consultation now'),(172493,4844,'_section_four_section_four_button_text','field_63170b08aa9a3'),(172494,4844,'section_four',''),(172495,4844,'_section_four','field_63170a81aa9a1'),(172496,4844,'section_five_section_five_title','We listen. We learn. We inform.'),(172497,4844,'_section_five_section_five_title','field_63170b8564fc2'),(172498,4844,'section_five_section_five_quote','

“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”

'),(172499,4844,'_section_five_section_five_quote','field_632013fd76a3e'),(172500,4844,'section_five_section_five_footer','forbes.com'),(172501,4844,'_section_five_section_five_footer','field_63170bad64fc4'),(172502,4844,'section_five',''),(172503,4844,'_section_five','field_63170b5f64fc1'),(172504,4844,'footer_title','We treat your business like our own.'),(172505,4844,'_footer_title','field_63170f4c8cc9a'),(172506,4844,'footer_button_text','Let\'s talk!'),(172507,4844,'_footer_button_text','field_63170f6f8cc9b'),(172508,4844,'top_title_1','CLOUD NATIVE SOLUTIONS'),(172509,4844,'_top_title_1','field_631ed55492adc'),(172510,4844,'top_title_page','CLOUD NATIVE SOLUTIONS'),(172511,4844,'_top_title_page','field_631ed55492adc'),(172512,4844,'section_one_section_one_image_mobile','4826'),(172513,4844,'_section_one_section_one_image_mobile','field_6321741c8e5ae'),(172514,4844,'section_two_section_two_tab_one_image_mobile','4827'),(172515,4844,'_section_two_section_two_tab_one_image_mobile','field_632174678e5af'),(172516,4844,'section_two_section_two_tab_three_image_mobile','4828'),(172517,4844,'_section_two_section_two_tab_three_image_mobile','field_632174798e5b0'),(172518,4845,'top-image',''),(172519,4845,'_top-image','field_5c488d805f5d4'),(172520,4845,'top_title',''),(172521,4845,'_top_title','field_5edfac92f4226'),(172522,4845,'top-text',''),(172523,4845,'_top-text','field_5c488e575f5d5'),(172524,4845,'features',''),(172525,4845,'_features','field_5c4890bc3ae1f'),(172526,4845,'about-title',''),(172527,4845,'_about-title','field_5c488e7a5f5d6'),(172528,4845,'about-text',''),(172529,4845,'_about-text','field_5c488e945f5d7'),(172530,4845,'problems',''),(172531,4845,'_problems','field_5c488ec75f5d8'),(172532,4845,'solutions',''),(172533,4845,'_solutions','field_5c488ed95f5d9'),(172534,4845,'difference',''),(172535,4845,'_difference','field_5c488eed5f5da'),(172536,4845,'panel',''),(172537,4845,'_panel','field_5c488f195f5db'),(172538,4845,'more-text',''),(172539,4845,'_more-text','field_5c488f8f5f5df'),(172540,4845,'phrase',''),(172541,4845,'_phrase','field_5c488faf5f5e0'),(172542,4845,'author',''),(172543,4845,'_author','field_5c488fba5f5e1'),(172544,4845,'top_description','Machine Learning'),(172545,4845,'_top_description','field_63170e008cc99'),(172546,4845,'top_background_desktop','4840'),(172547,4845,'_top_background_desktop','field_631eb1728b709'),(172548,4845,'top_background_mobile','4843'),(172549,4845,'_top_background_mobile','field_631eb1988b70a'),(172550,4845,'section_one_section_one_breadcrumb','THE FUTURE'),(172551,4845,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(172552,4845,'section_one_section_one_title','How intelligent is your
\r\nbusiness?'),(172553,4845,'_section_one_section_one_title','field_6316f2764091e'),(172554,4845,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(172555,4845,'_section_one_section_one_content','field_6316f2934091f'),(172556,4845,'section_one_section_one_image','4679'),(172557,4845,'_section_one_section_one_image','field_6316f2ab40920'),(172558,4845,'section_one_section_one_button_text','Book a consultation now'),(172559,4845,'_section_one_section_one_button_text','field_6316f2ca40921'),(172560,4845,'section_one',''),(172561,4845,'_section_one','field_6316f7ba1cd27'),(172562,4845,'section_two_section_two_button_text','Book a consultation now'),(172563,4845,'_section_two_section_two_button_text','field_6316fe1ff751b'),(172564,4845,'section_two_section_two_tab_one_header_title','Problems'),(172565,4845,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(172566,4845,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(172567,4845,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(172568,4845,'section_two_section_two_tab_one_image','4680'),(172569,4845,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(172570,4845,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(172571,4845,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(172572,4845,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money? \r\nHow well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(172573,4845,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(172574,4845,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(172575,4845,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(172576,4845,'section_two_section_two_tab_two_header_title','Solutions'),(172577,4845,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(172578,4845,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(172579,4845,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(172580,4845,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(172581,4845,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(172582,4845,'section_two_section_two_tab_two_content_icon_1','4683'),(172583,4845,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(172584,4845,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(172585,4845,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(172586,4845,'section_two_section_two_tab_two_content_icon_2','4684'),(172587,4845,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(172588,4845,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(172589,4845,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(172590,4845,'section_two_section_two_tab_two_content_icon_3','4685'),(172591,4845,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(172592,4845,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(172593,4845,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(172594,4845,'section_two_section_two_tab_two_content_icon_4','4686'),(172595,4845,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(172596,4845,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(172597,4845,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(172598,4845,'section_two_section_two_tab_three_header_title','Difference'),(172599,4845,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(172600,4845,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(172601,4845,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(172602,4845,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(172603,4845,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(172604,4845,'section_two_section_two_tab_three_image','4705'),(172605,4845,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(172606,4845,'section_two',''),(172607,4845,'_section_two','field_6316fa2531589'),(172608,4845,'section_three_section_three_title','Trusted Relationships'),(172609,4845,'_section_three_section_three_title','field_6316febdf751c'),(172610,4845,'section_three_section_three_one_icon','4687'),(172611,4845,'_section_three_section_three_one_icon','field_6316fefff751e'),(172612,4845,'section_three_section_three_one_title','Data Entry Automation'),(172613,4845,'_section_three_section_three_one_title','field_6316ff1cf751f'),(172614,4845,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n- Lorem ipsum dolor sit amet,'),(172615,4845,'_section_three_section_three_one_content','field_6316ff29f7520'),(172616,4845,'section_three_section_three_two_icon','4688'),(172617,4845,'_section_three_section_three_two_icon','field_6316ff77f7523'),(172618,4845,'section_three_section_three_two_title','Product Recommendation'),(172619,4845,'_section_three_section_three_two_title','field_6316ff90f7524'),(172620,4845,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172621,4845,'_section_three_section_three_two_content','field_6316ff5df7522'),(172622,4845,'section_three_section_three_three_icon','4689'),(172623,4845,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(172624,4845,'section_three_section_three_three_title','Medical Diagnosis'),(172625,4845,'_section_three_section_three_three_title','field_6316fff5f7527'),(172626,4845,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172627,4845,'_section_three_section_three_three_content','field_63170010f7528'),(172628,4845,'section_three_section_three_four_icon','4690'),(172629,4845,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(172630,4845,'section_three_section_three_four_title','Clients: Who is buying what'),(172631,4845,'_section_three_section_three_four_title','field_631707992b1ca'),(172632,4845,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172633,4845,'_section_three_section_three_four_content','field_631707b42b1cb'),(172634,4845,'section_three_section_three_five_icon','4691'),(172635,4845,'_section_three_section_three_five_icon','field_631707e52b1cd'),(172636,4845,'section_three_section_three_five_title','User Behavior'),(172637,4845,'_section_three_section_three_five_title','field_631708002b1ce'),(172638,4845,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172639,4845,'_section_three_section_three_five_content','field_6317081c2b1cf'),(172640,4845,'section_three_section_three_six_icon','4692'),(172641,4845,'_section_three_section_three_six_icon','field_631708572b1d1'),(172642,4845,'section_three_section_three_six_title','BI: Automated Reporting'),(172643,4845,'_section_three_section_three_six_title','field_631708712b1d2'),(172644,4845,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172645,4845,'_section_three_section_three_six_content','field_6317088d2b1d3'),(172646,4845,'section_three_section_three_seven_icon','4693'),(172647,4845,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(172648,4845,'section_three_section_three_seven_title','Detecting Spam in Emails'),(172649,4845,'_section_three_section_three_seven_title','field_631708da2b1d6'),(172650,4845,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172651,4845,'_section_three_section_three_seven_content','field_631708f62b1d7'),(172652,4845,'section_three_section_three_eight_icon','4694'),(172653,4845,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(172654,4845,'section_three_section_three_eight_title','Analytics'),(172655,4845,'_section_three_section_three_eight_title','field_631709462b1da'),(172656,4845,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172657,4845,'_section_three_section_three_eight_content','field_6317095e2b1db'),(172658,4845,'section_three',''),(172659,4845,'_section_three','field_6316fcf4f751a'),(172660,4845,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(172661,4845,'_section_four_section_four_content','field_63170ac9aa9a2'),(172662,4845,'section_four_section_four_button_text','Book a consultation now'),(172663,4845,'_section_four_section_four_button_text','field_63170b08aa9a3'),(172664,4845,'section_four',''),(172665,4845,'_section_four','field_63170a81aa9a1'),(172666,4845,'section_five_section_five_title','We listen. We learn. We inform.'),(172667,4845,'_section_five_section_five_title','field_63170b8564fc2'),(172668,4845,'section_five_section_five_quote','

“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”

'),(172669,4845,'_section_five_section_five_quote','field_632013fd76a3e'),(172670,4845,'section_five_section_five_footer','forbes.com'),(172671,4845,'_section_five_section_five_footer','field_63170bad64fc4'),(172672,4845,'section_five',''),(172673,4845,'_section_five','field_63170b5f64fc1'),(172674,4845,'footer_title','We treat your business like our own.'),(172675,4845,'_footer_title','field_63170f4c8cc9a'),(172676,4845,'footer_button_text','Let\'s talk!'),(172677,4845,'_footer_button_text','field_63170f6f8cc9b'),(172678,4845,'top_title_1','CLOUD NATIVE SOLUTIONS'),(172679,4845,'_top_title_1','field_631ed55492adc'),(172680,4845,'top_title_page','CLOUD NATIVE SOLUTIONS'),(172681,4845,'_top_title_page','field_631ed55492adc'),(172682,4845,'section_one_section_one_image_mobile','4826'),(172683,4845,'_section_one_section_one_image_mobile','field_6321741c8e5ae'),(172684,4845,'section_two_section_two_tab_one_image_mobile','4827'),(172685,4845,'_section_two_section_two_tab_one_image_mobile','field_632174678e5af'),(172686,4845,'section_two_section_two_tab_three_image_mobile','4828'),(172687,4845,'_section_two_section_two_tab_three_image_mobile','field_632174798e5b0'),(172688,4846,'top-image',''),(172689,4846,'_top-image','field_5c488d805f5d4'),(172690,4846,'top_title',''),(172691,4846,'_top_title','field_5edfac92f4226'),(172692,4846,'top-text',''),(172693,4846,'_top-text','field_5c488e575f5d5'),(172694,4846,'features',''),(172695,4846,'_features','field_5c4890bc3ae1f'),(172696,4846,'about-title',''),(172697,4846,'_about-title','field_5c488e7a5f5d6'),(172698,4846,'about-text',''),(172699,4846,'_about-text','field_5c488e945f5d7'),(172700,4846,'problems',''),(172701,4846,'_problems','field_5c488ec75f5d8'),(172702,4846,'solutions',''),(172703,4846,'_solutions','field_5c488ed95f5d9'),(172704,4846,'difference',''),(172705,4846,'_difference','field_5c488eed5f5da'),(172706,4846,'panel',''),(172707,4846,'_panel','field_5c488f195f5db'),(172708,4846,'more-text',''),(172709,4846,'_more-text','field_5c488f8f5f5df'),(172710,4846,'phrase',''),(172711,4846,'_phrase','field_5c488faf5f5e0'),(172712,4846,'author',''),(172713,4846,'_author','field_5c488fba5f5e1'),(172714,4846,'top_description','Machine Learning'),(172715,4846,'_top_description','field_63170e008cc99'),(172716,4846,'top_background_desktop','4840'),(172717,4846,'_top_background_desktop','field_631eb1728b709'),(172718,4846,'top_background_mobile','4843'),(172719,4846,'_top_background_mobile','field_631eb1988b70a'),(172720,4846,'section_one_section_one_breadcrumb','THE FUTURE'),(172721,4846,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(172722,4846,'section_one_section_one_title','How intelligent is your
\r\nbusiness?'),(172723,4846,'_section_one_section_one_title','field_6316f2764091e'),(172724,4846,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(172725,4846,'_section_one_section_one_content','field_6316f2934091f'),(172726,4846,'section_one_section_one_image','4679'),(172727,4846,'_section_one_section_one_image','field_6316f2ab40920'),(172728,4846,'section_one_section_one_button_text','Book a consultation now'),(172729,4846,'_section_one_section_one_button_text','field_6316f2ca40921'),(172730,4846,'section_one',''),(172731,4846,'_section_one','field_6316f7ba1cd27'),(172732,4846,'section_two_section_two_button_text','Book a consultation now'),(172733,4846,'_section_two_section_two_button_text','field_6316fe1ff751b'),(172734,4846,'section_two_section_two_tab_one_header_title','Problems'),(172735,4846,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(172736,4846,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(172737,4846,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(172738,4846,'section_two_section_two_tab_one_image','4680'),(172739,4846,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(172740,4846,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(172741,4846,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(172742,4846,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money?

\r\n

How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(172743,4846,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(172744,4846,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(172745,4846,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(172746,4846,'section_two_section_two_tab_two_header_title','Solutions'),(172747,4846,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(172748,4846,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(172749,4846,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(172750,4846,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(172751,4846,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(172752,4846,'section_two_section_two_tab_two_content_icon_1','4683'),(172753,4846,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(172754,4846,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(172755,4846,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(172756,4846,'section_two_section_two_tab_two_content_icon_2','4684'),(172757,4846,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(172758,4846,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(172759,4846,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(172760,4846,'section_two_section_two_tab_two_content_icon_3','4685'),(172761,4846,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(172762,4846,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(172763,4846,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(172764,4846,'section_two_section_two_tab_two_content_icon_4','4686'),(172765,4846,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(172766,4846,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(172767,4846,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(172768,4846,'section_two_section_two_tab_three_header_title','Difference'),(172769,4846,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(172770,4846,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(172771,4846,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(172772,4846,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(172773,4846,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(172774,4846,'section_two_section_two_tab_three_image','4705'),(172775,4846,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(172776,4846,'section_two',''),(172777,4846,'_section_two','field_6316fa2531589'),(172778,4846,'section_three_section_three_title','Trusted Relationships'),(172779,4846,'_section_three_section_three_title','field_6316febdf751c'),(172780,4846,'section_three_section_three_one_icon','4687'),(172781,4846,'_section_three_section_three_one_icon','field_6316fefff751e'),(172782,4846,'section_three_section_three_one_title','Data Entry Automation'),(172783,4846,'_section_three_section_three_one_title','field_6316ff1cf751f'),(172784,4846,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\r\n- Lorem ipsum dolor sit amet,'),(172785,4846,'_section_three_section_three_one_content','field_6316ff29f7520'),(172786,4846,'section_three_section_three_two_icon','4688'),(172787,4846,'_section_three_section_three_two_icon','field_6316ff77f7523'),(172788,4846,'section_three_section_three_two_title','Product Recommendation'),(172789,4846,'_section_three_section_three_two_title','field_6316ff90f7524'),(172790,4846,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172791,4846,'_section_three_section_three_two_content','field_6316ff5df7522'),(172792,4846,'section_three_section_three_three_icon','4689'),(172793,4846,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(172794,4846,'section_three_section_three_three_title','Medical Diagnosis'),(172795,4846,'_section_three_section_three_three_title','field_6316fff5f7527'),(172796,4846,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172797,4846,'_section_three_section_three_three_content','field_63170010f7528'),(172798,4846,'section_three_section_three_four_icon','4690'),(172799,4846,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(172800,4846,'section_three_section_three_four_title','Clients: Who is buying what'),(172801,4846,'_section_three_section_three_four_title','field_631707992b1ca'),(172802,4846,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172803,4846,'_section_three_section_three_four_content','field_631707b42b1cb'),(172804,4846,'section_three_section_three_five_icon','4691'),(172805,4846,'_section_three_section_three_five_icon','field_631707e52b1cd'),(172806,4846,'section_three_section_three_five_title','User Behavior'),(172807,4846,'_section_three_section_three_five_title','field_631708002b1ce'),(172808,4846,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172809,4846,'_section_three_section_three_five_content','field_6317081c2b1cf'),(172810,4846,'section_three_section_three_six_icon','4692'),(172811,4846,'_section_three_section_three_six_icon','field_631708572b1d1'),(172812,4846,'section_three_section_three_six_title','BI: Automated Reporting'),(172813,4846,'_section_three_section_three_six_title','field_631708712b1d2'),(172814,4846,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172815,4846,'_section_three_section_three_six_content','field_6317088d2b1d3'),(172816,4846,'section_three_section_three_seven_icon','4693'),(172817,4846,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(172818,4846,'section_three_section_three_seven_title','Detecting Spam in Emails'),(172819,4846,'_section_three_section_three_seven_title','field_631708da2b1d6'),(172820,4846,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172821,4846,'_section_three_section_three_seven_content','field_631708f62b1d7'),(172822,4846,'section_three_section_three_eight_icon','4694'),(172823,4846,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(172824,4846,'section_three_section_three_eight_title','Analytics'),(172825,4846,'_section_three_section_three_eight_title','field_631709462b1da'),(172826,4846,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172827,4846,'_section_three_section_three_eight_content','field_6317095e2b1db'),(172828,4846,'section_three',''),(172829,4846,'_section_three','field_6316fcf4f751a'),(172830,4846,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(172831,4846,'_section_four_section_four_content','field_63170ac9aa9a2'),(172832,4846,'section_four_section_four_button_text','Book a consultation now'),(172833,4846,'_section_four_section_four_button_text','field_63170b08aa9a3'),(172834,4846,'section_four',''),(172835,4846,'_section_four','field_63170a81aa9a1'),(172836,4846,'section_five_section_five_title','We listen. We learn. We inform.'),(172837,4846,'_section_five_section_five_title','field_63170b8564fc2'),(172838,4846,'section_five_section_five_quote','

“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”

'),(172839,4846,'_section_five_section_five_quote','field_632013fd76a3e'),(172840,4846,'section_five_section_five_footer','forbes.com'),(172841,4846,'_section_five_section_five_footer','field_63170bad64fc4'),(172842,4846,'section_five',''),(172843,4846,'_section_five','field_63170b5f64fc1'),(172844,4846,'footer_title','We treat your business like our own.'),(172845,4846,'_footer_title','field_63170f4c8cc9a'),(172846,4846,'footer_button_text','Let\'s talk!'),(172847,4846,'_footer_button_text','field_63170f6f8cc9b'),(172848,4846,'top_title_1','CLOUD NATIVE SOLUTIONS'),(172849,4846,'_top_title_1','field_631ed55492adc'),(172850,4846,'top_title_page','CLOUD NATIVE SOLUTIONS'),(172851,4846,'_top_title_page','field_631ed55492adc'),(172852,4846,'section_one_section_one_image_mobile','4826'),(172853,4846,'_section_one_section_one_image_mobile','field_6321741c8e5ae'),(172854,4846,'section_two_section_two_tab_one_image_mobile','4827'),(172855,4846,'_section_two_section_two_tab_one_image_mobile','field_632174678e5af'),(172856,4846,'section_two_section_two_tab_three_image_mobile','4828'),(172857,4846,'_section_two_section_two_tab_three_image_mobile','field_632174798e5b0'),(172858,4847,'top-image',''),(172859,4847,'_top-image','field_5c488d805f5d4'),(172860,4847,'top_title',''),(172861,4847,'_top_title','field_5edfac92f4226'),(172862,4847,'top-text',''),(172863,4847,'_top-text','field_5c488e575f5d5'),(172864,4847,'features',''),(172865,4847,'_features','field_5c4890bc3ae1f'),(172866,4847,'about-title',''),(172867,4847,'_about-title','field_5c488e7a5f5d6'),(172868,4847,'about-text',''),(172869,4847,'_about-text','field_5c488e945f5d7'),(172870,4847,'problems',''),(172871,4847,'_problems','field_5c488ec75f5d8'),(172872,4847,'solutions',''),(172873,4847,'_solutions','field_5c488ed95f5d9'),(172874,4847,'difference',''),(172875,4847,'_difference','field_5c488eed5f5da'),(172876,4847,'panel',''),(172877,4847,'_panel','field_5c488f195f5db'),(172878,4847,'more-text',''),(172879,4847,'_more-text','field_5c488f8f5f5df'),(172880,4847,'phrase',''),(172881,4847,'_phrase','field_5c488faf5f5e0'),(172882,4847,'author',''),(172883,4847,'_author','field_5c488fba5f5e1'),(172884,4847,'top_description','Machine Learning'),(172885,4847,'_top_description','field_63170e008cc99'),(172886,4847,'top_background_desktop','4840'),(172887,4847,'_top_background_desktop','field_631eb1728b709'),(172888,4847,'top_background_mobile','4843'),(172889,4847,'_top_background_mobile','field_631eb1988b70a'),(172890,4847,'section_one_section_one_breadcrumb','THE FUTURE'),(172891,4847,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(172892,4847,'section_one_section_one_title','How intelligent is your
\r\nbusiness?'),(172893,4847,'_section_one_section_one_title','field_6316f2764091e'),(172894,4847,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(172895,4847,'_section_one_section_one_content','field_6316f2934091f'),(172896,4847,'section_one_section_one_image','4679'),(172897,4847,'_section_one_section_one_image','field_6316f2ab40920'),(172898,4847,'section_one_section_one_button_text','Book a consultation now'),(172899,4847,'_section_one_section_one_button_text','field_6316f2ca40921'),(172900,4847,'section_one',''),(172901,4847,'_section_one','field_6316f7ba1cd27'),(172902,4847,'section_two_section_two_button_text','Book a consultation now'),(172903,4847,'_section_two_section_two_button_text','field_6316fe1ff751b'),(172904,4847,'section_two_section_two_tab_one_header_title','Problems'),(172905,4847,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(172906,4847,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(172907,4847,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(172908,4847,'section_two_section_two_tab_one_image','4680'),(172909,4847,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(172910,4847,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(172911,4847,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(172912,4847,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money?

\r\n

How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(172913,4847,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(172914,4847,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(172915,4847,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(172916,4847,'section_two_section_two_tab_two_header_title','Solutions'),(172917,4847,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(172918,4847,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(172919,4847,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(172920,4847,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(172921,4847,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(172922,4847,'section_two_section_two_tab_two_content_icon_1','4683'),(172923,4847,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(172924,4847,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(172925,4847,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(172926,4847,'section_two_section_two_tab_two_content_icon_2','4684'),(172927,4847,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(172928,4847,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(172929,4847,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(172930,4847,'section_two_section_two_tab_two_content_icon_3','4685'),(172931,4847,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(172932,4847,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(172933,4847,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(172934,4847,'section_two_section_two_tab_two_content_icon_4','4686'),(172935,4847,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(172936,4847,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(172937,4847,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(172938,4847,'section_two_section_two_tab_three_header_title','Difference'),(172939,4847,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(172940,4847,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(172941,4847,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(172942,4847,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(172943,4847,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(172944,4847,'section_two_section_two_tab_three_image','4705'),(172945,4847,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(172946,4847,'section_two',''),(172947,4847,'_section_two','field_6316fa2531589'),(172948,4847,'section_three_section_three_title','Trusted Relationships'),(172949,4847,'_section_three_section_three_title','field_6316febdf751c'),(172950,4847,'section_three_section_three_one_icon','4687'),(172951,4847,'_section_three_section_three_one_icon','field_6316fefff751e'),(172952,4847,'section_three_section_three_one_title','Data Entry Automation'),(172953,4847,'_section_three_section_three_one_title','field_6316ff1cf751f'),(172954,4847,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172955,4847,'_section_three_section_three_one_content','field_6316ff29f7520'),(172956,4847,'section_three_section_three_two_icon','4688'),(172957,4847,'_section_three_section_three_two_icon','field_6316ff77f7523'),(172958,4847,'section_three_section_three_two_title','Product Recommendation'),(172959,4847,'_section_three_section_three_two_title','field_6316ff90f7524'),(172960,4847,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172961,4847,'_section_three_section_three_two_content','field_6316ff5df7522'),(172962,4847,'section_three_section_three_three_icon','4689'),(172963,4847,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(172964,4847,'section_three_section_three_three_title','Medical Diagnosis'),(172965,4847,'_section_three_section_three_three_title','field_6316fff5f7527'),(172966,4847,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172967,4847,'_section_three_section_three_three_content','field_63170010f7528'),(172968,4847,'section_three_section_three_four_icon','4690'),(172969,4847,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(172970,4847,'section_three_section_three_four_title','Clients: Who is buying what'),(172971,4847,'_section_three_section_three_four_title','field_631707992b1ca'),(172972,4847,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172973,4847,'_section_three_section_three_four_content','field_631707b42b1cb'),(172974,4847,'section_three_section_three_five_icon','4691'),(172975,4847,'_section_three_section_three_five_icon','field_631707e52b1cd'),(172976,4847,'section_three_section_three_five_title','User Behavior'),(172977,4847,'_section_three_section_three_five_title','field_631708002b1ce'),(172978,4847,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172979,4847,'_section_three_section_three_five_content','field_6317081c2b1cf'),(172980,4847,'section_three_section_three_six_icon','4692'),(172981,4847,'_section_three_section_three_six_icon','field_631708572b1d1'),(172982,4847,'section_three_section_three_six_title','BI: Automated Reporting'),(172983,4847,'_section_three_section_three_six_title','field_631708712b1d2'),(172984,4847,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172985,4847,'_section_three_section_three_six_content','field_6317088d2b1d3'),(172986,4847,'section_three_section_three_seven_icon','4693'),(172987,4847,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(172988,4847,'section_three_section_three_seven_title','Detecting Spam in Emails'),(172989,4847,'_section_three_section_three_seven_title','field_631708da2b1d6'),(172990,4847,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172991,4847,'_section_three_section_three_seven_content','field_631708f62b1d7'),(172992,4847,'section_three_section_three_eight_icon','4694'),(172993,4847,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(172994,4847,'section_three_section_three_eight_title','Analytics'),(172995,4847,'_section_three_section_three_eight_title','field_631709462b1da'),(172996,4847,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(172997,4847,'_section_three_section_three_eight_content','field_6317095e2b1db'),(172998,4847,'section_three',''),(172999,4847,'_section_three','field_6316fcf4f751a'),(173000,4847,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(173001,4847,'_section_four_section_four_content','field_63170ac9aa9a2'),(173002,4847,'section_four_section_four_button_text','Book a consultation now'),(173003,4847,'_section_four_section_four_button_text','field_63170b08aa9a3'),(173004,4847,'section_four',''),(173005,4847,'_section_four','field_63170a81aa9a1'),(173006,4847,'section_five_section_five_title','We listen. We learn. We inform.'),(173007,4847,'_section_five_section_five_title','field_63170b8564fc2'),(173008,4847,'section_five_section_five_quote','

“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”

'),(173009,4847,'_section_five_section_five_quote','field_632013fd76a3e'),(173010,4847,'section_five_section_five_footer','forbes.com'),(173011,4847,'_section_five_section_five_footer','field_63170bad64fc4'),(173012,4847,'section_five',''),(173013,4847,'_section_five','field_63170b5f64fc1'),(173014,4847,'footer_title','We treat your business like our own.'),(173015,4847,'_footer_title','field_63170f4c8cc9a'),(173016,4847,'footer_button_text','Let\'s talk!'),(173017,4847,'_footer_button_text','field_63170f6f8cc9b'),(173018,4847,'top_title_1','CLOUD NATIVE SOLUTIONS'),(173019,4847,'_top_title_1','field_631ed55492adc'),(173020,4847,'top_title_page','CLOUD NATIVE SOLUTIONS'),(173021,4847,'_top_title_page','field_631ed55492adc'),(173022,4847,'section_one_section_one_image_mobile','4826'),(173023,4847,'_section_one_section_one_image_mobile','field_6321741c8e5ae'),(173024,4847,'section_two_section_two_tab_one_image_mobile','4827'),(173025,4847,'_section_two_section_two_tab_one_image_mobile','field_632174678e5af'),(173026,4847,'section_two_section_two_tab_three_image_mobile','4828'),(173027,4847,'_section_two_section_two_tab_three_image_mobile','field_632174798e5b0'),(173037,4708,'top_background_desktop','4883'),(173038,4708,'_top_background_desktop','field_6323eda2d6f18'),(173039,4708,'top_background_mobile','4881'),(173040,4708,'_top_background_mobile','field_6323edc1d6f19'),(173041,4852,'top_title','Kubernetes Professional Services'),(173042,4852,'_top_title','field_6317168918e96'),(173043,4852,'top_description','CLOUD NATIVE SOLUTIONS'),(173044,4852,'_top_description','field_6317169e18e97'),(173045,4852,'section_one_section_one_breadcrumb','KCSP'),(173046,4852,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(173047,4852,'section_one_section_one_title','Kubernetes Certified Service Provider'),(173048,4852,'_section_one_section_one_title','field_6317172018e9a'),(173049,4852,'section_one_section_one_image','4775'),(173050,4852,'_section_one_section_one_image','field_63171ca018e9c'),(173051,4852,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.'),(173052,4852,'_section_one_section_one_content','field_6317174118e9b'),(173053,4852,'section_one_section_one_navigation_one','Cloud Native Applications'),(173054,4852,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(173055,4852,'section_one_section_one_navigation_two','Cloud Native DevOps'),(173056,4852,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(173057,4852,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(173058,4852,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(173059,4852,'section_one_section_one_button_text','Book Consultation Now'),(173060,4852,'_section_one_section_one_button_text','field_63171dc918ea0'),(173061,4852,'section_one',''),(173062,4852,'_section_one','field_631716de18e98'),(173063,4852,'section_two_section_two_title','Our Services'),(173064,4852,'_section_two_section_two_title','field_63171e1457be9'),(173065,4852,'section_two_section_two_icon_one','4734'),(173066,4852,'_section_two_section_two_icon_one','field_63171e2c57bea'),(173067,4852,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(173068,4852,'_section_two_section_two_title_one','field_63171e5f57beb'),(173069,4852,'section_two_section_two_icon_two','4741'),(173070,4852,'_section_two_section_two_icon_two','field_63171e7357bec'),(173071,4852,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(173072,4852,'_section_two_section_two_title_two','field_63171ea157bee'),(173073,4852,'section_two_section_two_icon_three','4736'),(173074,4852,'_section_two_section_two_icon_three','field_63171e8557bed'),(173075,4852,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(173076,4852,'_section_two_section_two_title_three','field_63171ec257bef'),(173077,4852,'section_two_section_two_icon_four','4738'),(173078,4852,'_section_two_section_two_icon_four','field_63171ee257bf0'),(173079,4852,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(173080,4852,'_section_two_section_two_title_four','field_63171ef757bf1'),(173081,4852,'section_two_section_two_icon_five','4744'),(173082,4852,'_section_two_section_two_icon_five','field_63171f2857bf3'),(173083,4852,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(173084,4852,'_section_two_section_two_title_five','field_63171f3957bf4'),(173085,4852,'section_two_section_two_icon_six','4746'),(173086,4852,'_section_two_section_two_icon_six','field_63171f5057bf5'),(173087,4852,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(173088,4852,'_section_two_section_two_title_six','field_63171f6657bf6'),(173089,4852,'section_two_section_two_icon_seven','4748'),(173090,4852,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(173091,4852,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(173092,4852,'_section_two_section_two_title_seven','field_63171f9757bf8'),(173093,4852,'section_two_section_two_icon_eight','4750'),(173094,4852,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(173095,4852,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(173096,4852,'_section_two_section_two_title_eight','field_63171fc057bfa'),(173097,4852,'section_two',''),(173098,4852,'_section_two','field_63171dfb57be8'),(173099,4852,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(173100,4852,'_section_three_section_three_breadcrumb','field_631723036988b'),(173101,4852,'section_three_section_three_title','Plan Your Next Kubernetes Projectwith Translucent'),(173102,4852,'_section_three_section_three_title','field_631723176988c'),(173103,4852,'section_three_section_three_image','4779'),(173104,4852,'_section_three_section_three_image','field_631723ac6988e'),(173105,4852,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(173106,4852,'_section_three_section_three_content','field_631723906988d'),(173107,4852,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(173108,4852,'_section_three_section_three_footer','field_631723c36988f'),(173109,4852,'section_three_section_three_button_text','Book Consultation Now'),(173110,4852,'_section_three_section_three_button_text','field_631723d769890'),(173111,4852,'section_three',''),(173112,4852,'_section_three','field_631722b96988a'),(173113,4852,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(173114,4852,'_section_four_section_four_breadcrumb','field_6317271523757'),(173115,4852,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(173116,4852,'_section_four_section_four_title','field_6317271523758'),(173117,4852,'section_four_section_four_image','4776'),(173118,4852,'_section_four_section_four_image','field_6317271523759'),(173119,4852,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(173120,4852,'_section_four_section_four_content','field_631727152375a'),(173121,4852,'section_four_section_four_footer','Build - Rebuild - Replatform'),(173122,4852,'_section_four_section_four_footer','field_631727152375b'),(173123,4852,'section_four',''),(173124,4852,'_section_four','field_6317271523756'),(173125,4852,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(173126,4852,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(173127,4852,'section_five_section_five_title','24/7 support and maintenancewith our site reliability engineering services'),(173128,4852,'_section_five_section_five_title','field_631727bbd69dd'),(173129,4852,'section_five_section_five_image','4777'),(173130,4852,'_section_five_section_five_image','field_631727bbd69de'),(173131,4852,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(173132,4852,'_section_five_section_five_content','field_631727bbd69df'),(173133,4852,'section_five_section_five_footer',''),(173134,4852,'_section_five_section_five_footer','field_631727bbd69e0'),(173135,4852,'section_five',''),(173136,4852,'_section_five','field_631727bbd69db'),(173137,4852,'footer_title','We treat your business like our own.'),(173138,4852,'_footer_title','field_631729e2753c6'),(173139,4852,'footer_button_text','Let\'s talk!'),(173140,4852,'_footer_button_text','field_63172a06753c7'),(173141,4852,'section_five_section_five_icon_one','4752'),(173142,4852,'_section_five_section_five_icon_one','field_631727bbd69e0'),(173143,4852,'section_five_section_five_icon_text_one','

SRE - Site Reliability Engineering

'),(173144,4852,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(173145,4852,'section_five_section_five_icon_two','4754'),(173146,4852,'_section_five_section_five_icon_two','field_631ef504912c5'),(173147,4852,'section_five_section_five_icon_text_two','

SLA - Service Level Agreements

'),(173148,4852,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(173149,4852,'section_five_section_five_icon_three','4756'),(173150,4852,'_section_five_section_five_icon_three','field_631ef510912c6'),(173151,4852,'section_five_section_five_icon_text_three','

SLO - Service Level Objectives

'),(173152,4852,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(173153,4852,'section_five_section_five_icon_four','4758'),(173154,4852,'_section_five_section_five_icon_four','field_631ef51c912c7'),(173155,4852,'section_five_section_five_icon_text_four','

SLI - Service Level Indicator

'),(173156,4852,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(173157,4852,'section_one_section_one_image_mobile','4820'),(173158,4852,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(173159,4852,'section_three_section_three_image_mobile','4821'),(173160,4852,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(173161,4852,'section_four_section_four_image_mobile','4823'),(173162,4852,'_section_four_section_four_image_mobile','field_632155def8a3f'),(173163,4852,'section_five_section_five_image_mobile','4824'),(173164,4852,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(173165,4852,'top_background_desktop','4850'),(173166,4852,'_top_background_desktop','field_6323eda2d6f18'),(173167,4852,'top_background_mobile','4851'),(173168,4852,'_top_background_mobile','field_6323edc1d6f19'),(173172,4853,'top_title','Kubernetes Professional Services'),(173173,4853,'_top_title','field_6317168918e96'),(173174,4853,'top_description','CLOUD NATIVE SOLUTIONS'),(173175,4853,'_top_description','field_6317169e18e97'),(173176,4853,'section_one_section_one_breadcrumb','KCSP'),(173177,4853,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(173178,4853,'section_one_section_one_title','Kubernetes Certified Service Provider'),(173179,4853,'_section_one_section_one_title','field_6317172018e9a'),(173180,4853,'section_one_section_one_image','4775'),(173181,4853,'_section_one_section_one_image','field_63171ca018e9c'),(173182,4853,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.'),(173183,4853,'_section_one_section_one_content','field_6317174118e9b'),(173184,4853,'section_one_section_one_navigation_one','Cloud Native Applications'),(173185,4853,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(173186,4853,'section_one_section_one_navigation_two','Cloud Native DevOps'),(173187,4853,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(173188,4853,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(173189,4853,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(173190,4853,'section_one_section_one_button_text','Book Consultation Now'),(173191,4853,'_section_one_section_one_button_text','field_63171dc918ea0'),(173192,4853,'section_one',''),(173193,4853,'_section_one','field_631716de18e98'),(173194,4853,'section_two_section_two_title','Our Services'),(173195,4853,'_section_two_section_two_title','field_63171e1457be9'),(173196,4853,'section_two_section_two_icon_one','4734'),(173197,4853,'_section_two_section_two_icon_one','field_63171e2c57bea'),(173198,4853,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(173199,4853,'_section_two_section_two_title_one','field_63171e5f57beb'),(173200,4853,'section_two_section_two_icon_two','4741'),(173201,4853,'_section_two_section_two_icon_two','field_63171e7357bec'),(173202,4853,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(173203,4853,'_section_two_section_two_title_two','field_63171ea157bee'),(173204,4853,'section_two_section_two_icon_three','4736'),(173205,4853,'_section_two_section_two_icon_three','field_63171e8557bed'),(173206,4853,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(173207,4853,'_section_two_section_two_title_three','field_63171ec257bef'),(173208,4853,'section_two_section_two_icon_four','4738'),(173209,4853,'_section_two_section_two_icon_four','field_63171ee257bf0'),(173210,4853,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(173211,4853,'_section_two_section_two_title_four','field_63171ef757bf1'),(173212,4853,'section_two_section_two_icon_five','4744'),(173213,4853,'_section_two_section_two_icon_five','field_63171f2857bf3'),(173214,4853,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(173215,4853,'_section_two_section_two_title_five','field_63171f3957bf4'),(173216,4853,'section_two_section_two_icon_six','4746'),(173217,4853,'_section_two_section_two_icon_six','field_63171f5057bf5'),(173218,4853,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(173219,4853,'_section_two_section_two_title_six','field_63171f6657bf6'),(173220,4853,'section_two_section_two_icon_seven','4748'),(173221,4853,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(173222,4853,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(173223,4853,'_section_two_section_two_title_seven','field_63171f9757bf8'),(173224,4853,'section_two_section_two_icon_eight','4750'),(173225,4853,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(173226,4853,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(173227,4853,'_section_two_section_two_title_eight','field_63171fc057bfa'),(173228,4853,'section_two',''),(173229,4853,'_section_two','field_63171dfb57be8'),(173230,4853,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(173231,4853,'_section_three_section_three_breadcrumb','field_631723036988b'),(173232,4853,'section_three_section_three_title','Plan Your Next Kubernetes Projectwith Translucent'),(173233,4853,'_section_three_section_three_title','field_631723176988c'),(173234,4853,'section_three_section_three_image','4779'),(173235,4853,'_section_three_section_three_image','field_631723ac6988e'),(173236,4853,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(173237,4853,'_section_three_section_three_content','field_631723906988d'),(173238,4853,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(173239,4853,'_section_three_section_three_footer','field_631723c36988f'),(173240,4853,'section_three_section_three_button_text','Book Consultation Now'),(173241,4853,'_section_three_section_three_button_text','field_631723d769890'),(173242,4853,'section_three',''),(173243,4853,'_section_three','field_631722b96988a'),(173244,4853,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(173245,4853,'_section_four_section_four_breadcrumb','field_6317271523757'),(173246,4853,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(173247,4853,'_section_four_section_four_title','field_6317271523758'),(173248,4853,'section_four_section_four_image','4776'),(173249,4853,'_section_four_section_four_image','field_6317271523759'),(173250,4853,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(173251,4853,'_section_four_section_four_content','field_631727152375a'),(173252,4853,'section_four_section_four_footer','Build - Rebuild - Replatform'),(173253,4853,'_section_four_section_four_footer','field_631727152375b'),(173254,4853,'section_four',''),(173255,4853,'_section_four','field_6317271523756'),(173256,4853,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(173257,4853,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(173258,4853,'section_five_section_five_title','24/7 support and maintenancewith our site reliability engineering services'),(173259,4853,'_section_five_section_five_title','field_631727bbd69dd'),(173260,4853,'section_five_section_five_image','4777'),(173261,4853,'_section_five_section_five_image','field_631727bbd69de'),(173262,4853,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(173263,4853,'_section_five_section_five_content','field_631727bbd69df'),(173264,4853,'section_five_section_five_footer',''),(173265,4853,'_section_five_section_five_footer','field_631727bbd69e0'),(173266,4853,'section_five',''),(173267,4853,'_section_five','field_631727bbd69db'),(173268,4853,'footer_title','We treat your business like our own.'),(173269,4853,'_footer_title','field_631729e2753c6'),(173270,4853,'footer_button_text','Let\'s talk!'),(173271,4853,'_footer_button_text','field_63172a06753c7'),(173272,4853,'section_five_section_five_icon_one','4752'),(173273,4853,'_section_five_section_five_icon_one','field_631727bbd69e0'),(173274,4853,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(173275,4853,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(173276,4853,'section_five_section_five_icon_two','4754'),(173277,4853,'_section_five_section_five_icon_two','field_631ef504912c5'),(173278,4853,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(173279,4853,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(173280,4853,'section_five_section_five_icon_three','4756'),(173281,4853,'_section_five_section_five_icon_three','field_631ef510912c6'),(173282,4853,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(173283,4853,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(173284,4853,'section_five_section_five_icon_four','4758'),(173285,4853,'_section_five_section_five_icon_four','field_631ef51c912c7'),(173286,4853,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(173287,4853,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(173288,4853,'section_one_section_one_image_mobile','4820'),(173289,4853,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(173290,4853,'section_three_section_three_image_mobile','4821'),(173291,4853,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(173292,4853,'section_four_section_four_image_mobile','4823'),(173293,4853,'_section_four_section_four_image_mobile','field_632155def8a3f'),(173294,4853,'section_five_section_five_image_mobile','4824'),(173295,4853,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(173296,4853,'top_background_desktop','4850'),(173297,4853,'_top_background_desktop','field_6323eda2d6f18'),(173298,4853,'top_background_mobile','4851'),(173299,4853,'_top_background_mobile','field_6323edc1d6f19'),(173300,4854,'top_title','Kubernetes Professional Services'),(173301,4854,'_top_title','field_6317168918e96'),(173302,4854,'top_description','CLOUD NATIVE SOLUTIONS'),(173303,4854,'_top_description','field_6317169e18e97'),(173304,4854,'section_one_section_one_breadcrumb','KCSP'),(173305,4854,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(173306,4854,'section_one_section_one_title','Kubernetes Certified Service Provider'),(173307,4854,'_section_one_section_one_title','field_6317172018e9a'),(173308,4854,'section_one_section_one_image','4775'),(173309,4854,'_section_one_section_one_image','field_63171ca018e9c'),(173310,4854,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.'),(173311,4854,'_section_one_section_one_content','field_6317174118e9b'),(173312,4854,'section_one_section_one_navigation_one','Cloud Native Applications'),(173313,4854,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(173314,4854,'section_one_section_one_navigation_two','Cloud Native DevOps'),(173315,4854,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(173316,4854,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(173317,4854,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(173318,4854,'section_one_section_one_button_text','Book Consultation Now'),(173319,4854,'_section_one_section_one_button_text','field_63171dc918ea0'),(173320,4854,'section_one',''),(173321,4854,'_section_one','field_631716de18e98'),(173322,4854,'section_two_section_two_title','Our Services'),(173323,4854,'_section_two_section_two_title','field_63171e1457be9'),(173324,4854,'section_two_section_two_icon_one','4734'),(173325,4854,'_section_two_section_two_icon_one','field_63171e2c57bea'),(173326,4854,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(173327,4854,'_section_two_section_two_title_one','field_63171e5f57beb'),(173328,4854,'section_two_section_two_icon_two','4741'),(173329,4854,'_section_two_section_two_icon_two','field_63171e7357bec'),(173330,4854,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(173331,4854,'_section_two_section_two_title_two','field_63171ea157bee'),(173332,4854,'section_two_section_two_icon_three','4736'),(173333,4854,'_section_two_section_two_icon_three','field_63171e8557bed'),(173334,4854,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(173335,4854,'_section_two_section_two_title_three','field_63171ec257bef'),(173336,4854,'section_two_section_two_icon_four','4738'),(173337,4854,'_section_two_section_two_icon_four','field_63171ee257bf0'),(173338,4854,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(173339,4854,'_section_two_section_two_title_four','field_63171ef757bf1'),(173340,4854,'section_two_section_two_icon_five','4744'),(173341,4854,'_section_two_section_two_icon_five','field_63171f2857bf3'),(173342,4854,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(173343,4854,'_section_two_section_two_title_five','field_63171f3957bf4'),(173344,4854,'section_two_section_two_icon_six','4746'),(173345,4854,'_section_two_section_two_icon_six','field_63171f5057bf5'),(173346,4854,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(173347,4854,'_section_two_section_two_title_six','field_63171f6657bf6'),(173348,4854,'section_two_section_two_icon_seven','4748'),(173349,4854,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(173350,4854,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(173351,4854,'_section_two_section_two_title_seven','field_63171f9757bf8'),(173352,4854,'section_two_section_two_icon_eight','4750'),(173353,4854,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(173354,4854,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(173355,4854,'_section_two_section_two_title_eight','field_63171fc057bfa'),(173356,4854,'section_two',''),(173357,4854,'_section_two','field_63171dfb57be8'),(173358,4854,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(173359,4854,'_section_three_section_three_breadcrumb','field_631723036988b'),(173360,4854,'section_three_section_three_title','Plan Your Next Kubernetes Projectwith Translucent'),(173361,4854,'_section_three_section_three_title','field_631723176988c'),(173362,4854,'section_three_section_three_image','4779'),(173363,4854,'_section_three_section_three_image','field_631723ac6988e'),(173364,4854,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(173365,4854,'_section_three_section_three_content','field_631723906988d'),(173366,4854,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(173367,4854,'_section_three_section_three_footer','field_631723c36988f'),(173368,4854,'section_three_section_three_button_text','Book Consultation Now'),(173369,4854,'_section_three_section_three_button_text','field_631723d769890'),(173370,4854,'section_three',''),(173371,4854,'_section_three','field_631722b96988a'),(173372,4854,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(173373,4854,'_section_four_section_four_breadcrumb','field_6317271523757'),(173374,4854,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(173375,4854,'_section_four_section_four_title','field_6317271523758'),(173376,4854,'section_four_section_four_image','4776'),(173377,4854,'_section_four_section_four_image','field_6317271523759'),(173378,4854,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(173379,4854,'_section_four_section_four_content','field_631727152375a'),(173380,4854,'section_four_section_four_footer','Build - Rebuild - Replatform'),(173381,4854,'_section_four_section_four_footer','field_631727152375b'),(173382,4854,'section_four',''),(173383,4854,'_section_four','field_6317271523756'),(173384,4854,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(173385,4854,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(173386,4854,'section_five_section_five_title','24/7 support and maintenancewith our site reliability engineering services'),(173387,4854,'_section_five_section_five_title','field_631727bbd69dd'),(173388,4854,'section_five_section_five_image','4777'),(173389,4854,'_section_five_section_five_image','field_631727bbd69de'),(173390,4854,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(173391,4854,'_section_five_section_five_content','field_631727bbd69df'),(173392,4854,'section_five_section_five_footer',''),(173393,4854,'_section_five_section_five_footer','field_631727bbd69e0'),(173394,4854,'section_five',''),(173395,4854,'_section_five','field_631727bbd69db'),(173396,4854,'footer_title','We treat your business like our own.'),(173397,4854,'_footer_title','field_631729e2753c6'),(173398,4854,'footer_button_text','Let\'s talk!'),(173399,4854,'_footer_button_text','field_63172a06753c7'),(173400,4854,'section_five_section_five_icon_one','4752'),(173401,4854,'_section_five_section_five_icon_one','field_631727bbd69e0'),(173402,4854,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(173403,4854,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(173404,4854,'section_five_section_five_icon_two','4754'),(173405,4854,'_section_five_section_five_icon_two','field_631ef504912c5'),(173406,4854,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(173407,4854,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(173408,4854,'section_five_section_five_icon_three','4756'),(173409,4854,'_section_five_section_five_icon_three','field_631ef510912c6'),(173410,4854,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(173411,4854,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(173412,4854,'section_five_section_five_icon_four','4758'),(173413,4854,'_section_five_section_five_icon_four','field_631ef51c912c7'),(173414,4854,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(173415,4854,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(173416,4854,'section_one_section_one_image_mobile','4820'),(173417,4854,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(173418,4854,'section_three_section_three_image_mobile','4821'),(173419,4854,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(173420,4854,'section_four_section_four_image_mobile','4823'),(173421,4854,'_section_four_section_four_image_mobile','field_632155def8a3f'),(173422,4854,'section_five_section_five_image_mobile','4824'),(173423,4854,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(173424,4854,'top_background_desktop','4850'),(173425,4854,'_top_background_desktop','field_6323eda2d6f18'),(173426,4854,'top_background_mobile','4851'),(173427,4854,'_top_background_mobile','field_6323edc1d6f19'),(173428,4708,'ao_post_optimize','a:6:{s:16:\"ao_post_optimize\";s:2:\"on\";s:19:\"ao_post_js_optimize\";s:2:\"on\";s:20:\"ao_post_css_optimize\";s:2:\"on\";s:12:\"ao_post_ccss\";s:2:\"on\";s:16:\"ao_post_lazyload\";s:2:\"on\";s:15:\"ao_post_preload\";s:0:\"\";}'),(173429,4855,'top_title','Kubernetes Professional Services'),(173430,4855,'_top_title','field_6317168918e96'),(173431,4855,'top_description','CLOUD NATIVE SOLUTIONS'),(173432,4855,'_top_description','field_6317169e18e97'),(173433,4855,'section_one_section_one_breadcrumb','KCSP'),(173434,4855,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(173435,4855,'section_one_section_one_title','Kubernetes Certified Service Provider'),(173436,4855,'_section_one_section_one_title','field_6317172018e9a'),(173437,4855,'section_one_section_one_image','4775'),(173438,4855,'_section_one_section_one_image','field_63171ca018e9c'),(173439,4855,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.'),(173440,4855,'_section_one_section_one_content','field_6317174118e9b'),(173441,4855,'section_one_section_one_navigation_one','Cloud Native Applications'),(173442,4855,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(173443,4855,'section_one_section_one_navigation_two','Cloud Native DevOps'),(173444,4855,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(173445,4855,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(173446,4855,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(173447,4855,'section_one_section_one_button_text','Book Consultation Now'),(173448,4855,'_section_one_section_one_button_text','field_63171dc918ea0'),(173449,4855,'section_one',''),(173450,4855,'_section_one','field_631716de18e98'),(173451,4855,'section_two_section_two_title','Our Services'),(173452,4855,'_section_two_section_two_title','field_63171e1457be9'),(173453,4855,'section_two_section_two_icon_one','4734'),(173454,4855,'_section_two_section_two_icon_one','field_63171e2c57bea'),(173455,4855,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(173456,4855,'_section_two_section_two_title_one','field_63171e5f57beb'),(173457,4855,'section_two_section_two_icon_two','4741'),(173458,4855,'_section_two_section_two_icon_two','field_63171e7357bec'),(173459,4855,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(173460,4855,'_section_two_section_two_title_two','field_63171ea157bee'),(173461,4855,'section_two_section_two_icon_three','4736'),(173462,4855,'_section_two_section_two_icon_three','field_63171e8557bed'),(173463,4855,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(173464,4855,'_section_two_section_two_title_three','field_63171ec257bef'),(173465,4855,'section_two_section_two_icon_four','4738'),(173466,4855,'_section_two_section_two_icon_four','field_63171ee257bf0'),(173467,4855,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(173468,4855,'_section_two_section_two_title_four','field_63171ef757bf1'),(173469,4855,'section_two_section_two_icon_five','4744'),(173470,4855,'_section_two_section_two_icon_five','field_63171f2857bf3'),(173471,4855,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(173472,4855,'_section_two_section_two_title_five','field_63171f3957bf4'),(173473,4855,'section_two_section_two_icon_six','4746'),(173474,4855,'_section_two_section_two_icon_six','field_63171f5057bf5'),(173475,4855,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(173476,4855,'_section_two_section_two_title_six','field_63171f6657bf6'),(173477,4855,'section_two_section_two_icon_seven','4748'),(173478,4855,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(173479,4855,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(173480,4855,'_section_two_section_two_title_seven','field_63171f9757bf8'),(173481,4855,'section_two_section_two_icon_eight','4750'),(173482,4855,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(173483,4855,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(173484,4855,'_section_two_section_two_title_eight','field_63171fc057bfa'),(173485,4855,'section_two',''),(173486,4855,'_section_two','field_63171dfb57be8'),(173487,4855,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(173488,4855,'_section_three_section_three_breadcrumb','field_631723036988b'),(173489,4855,'section_three_section_three_title','Plan Your Next Kubernetes Projectwith Translucent'),(173490,4855,'_section_three_section_three_title','field_631723176988c'),(173491,4855,'section_three_section_three_image','4779'),(173492,4855,'_section_three_section_three_image','field_631723ac6988e'),(173493,4855,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(173494,4855,'_section_three_section_three_content','field_631723906988d'),(173495,4855,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(173496,4855,'_section_three_section_three_footer','field_631723c36988f'),(173497,4855,'section_three_section_three_button_text','Book Consultation Now'),(173498,4855,'_section_three_section_three_button_text','field_631723d769890'),(173499,4855,'section_three',''),(173500,4855,'_section_three','field_631722b96988a'),(173501,4855,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(173502,4855,'_section_four_section_four_breadcrumb','field_6317271523757'),(173503,4855,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(173504,4855,'_section_four_section_four_title','field_6317271523758'),(173505,4855,'section_four_section_four_image','4776'),(173506,4855,'_section_four_section_four_image','field_6317271523759'),(173507,4855,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(173508,4855,'_section_four_section_four_content','field_631727152375a'),(173509,4855,'section_four_section_four_footer','Build - Rebuild - Replatform'),(173510,4855,'_section_four_section_four_footer','field_631727152375b'),(173511,4855,'section_four',''),(173512,4855,'_section_four','field_6317271523756'),(173513,4855,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(173514,4855,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(173515,4855,'section_five_section_five_title','24/7 support and maintenancewith our site reliability engineering services'),(173516,4855,'_section_five_section_five_title','field_631727bbd69dd'),(173517,4855,'section_five_section_five_image','4777'),(173518,4855,'_section_five_section_five_image','field_631727bbd69de'),(173519,4855,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(173520,4855,'_section_five_section_five_content','field_631727bbd69df'),(173521,4855,'section_five_section_five_footer',''),(173522,4855,'_section_five_section_five_footer','field_631727bbd69e0'),(173523,4855,'section_five',''),(173524,4855,'_section_five','field_631727bbd69db'),(173525,4855,'footer_title','We treat your business like our own.'),(173526,4855,'_footer_title','field_631729e2753c6'),(173527,4855,'footer_button_text','Let\'s talk!'),(173528,4855,'_footer_button_text','field_63172a06753c7'),(173529,4855,'section_five_section_five_icon_one','4752'),(173530,4855,'_section_five_section_five_icon_one','field_631727bbd69e0'),(173531,4855,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(173532,4855,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(173533,4855,'section_five_section_five_icon_two','4754'),(173534,4855,'_section_five_section_five_icon_two','field_631ef504912c5'),(173535,4855,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(173536,4855,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(173537,4855,'section_five_section_five_icon_three','4756'),(173538,4855,'_section_five_section_five_icon_three','field_631ef510912c6'),(173539,4855,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(173540,4855,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(173541,4855,'section_five_section_five_icon_four','4758'),(173542,4855,'_section_five_section_five_icon_four','field_631ef51c912c7'),(173543,4855,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(173544,4855,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(173545,4855,'section_one_section_one_image_mobile','4820'),(173546,4855,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(173547,4855,'section_three_section_three_image_mobile','4821'),(173548,4855,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(173549,4855,'section_four_section_four_image_mobile','4823'),(173550,4855,'_section_four_section_four_image_mobile','field_632155def8a3f'),(173551,4855,'section_five_section_five_image_mobile','4824'),(173552,4855,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(173553,4855,'top_background_desktop','4850'),(173554,4855,'_top_background_desktop','field_6323eda2d6f18'),(173555,4855,'top_background_mobile','4851'),(173556,4855,'_top_background_mobile','field_6323edc1d6f19'),(173557,4856,'top_title','Kubernetes Professional Services'),(173558,4856,'_top_title','field_6317168918e96'),(173559,4856,'top_description','CLOUD NATIVE SOLUTIONS'),(173560,4856,'_top_description','field_6317169e18e97'),(173561,4856,'section_one_section_one_breadcrumb','KCSP'),(173562,4856,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(173563,4856,'section_one_section_one_title','Kubernetes Certified Service Provider'),(173564,4856,'_section_one_section_one_title','field_6317172018e9a'),(173565,4856,'section_one_section_one_image','4775'),(173566,4856,'_section_one_section_one_image','field_63171ca018e9c'),(173567,4856,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.'),(173568,4856,'_section_one_section_one_content','field_6317174118e9b'),(173569,4856,'section_one_section_one_navigation_one','Cloud Native Applications'),(173570,4856,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(173571,4856,'section_one_section_one_navigation_two','Cloud Native DevOps'),(173572,4856,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(173573,4856,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(173574,4856,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(173575,4856,'section_one_section_one_button_text','Book Consultation Now'),(173576,4856,'_section_one_section_one_button_text','field_63171dc918ea0'),(173577,4856,'section_one',''),(173578,4856,'_section_one','field_631716de18e98'),(173579,4856,'section_two_section_two_title','Our Services'),(173580,4856,'_section_two_section_two_title','field_63171e1457be9'),(173581,4856,'section_two_section_two_icon_one','4734'),(173582,4856,'_section_two_section_two_icon_one','field_63171e2c57bea'),(173583,4856,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(173584,4856,'_section_two_section_two_title_one','field_63171e5f57beb'),(173585,4856,'section_two_section_two_icon_two','4741'),(173586,4856,'_section_two_section_two_icon_two','field_63171e7357bec'),(173587,4856,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(173588,4856,'_section_two_section_two_title_two','field_63171ea157bee'),(173589,4856,'section_two_section_two_icon_three','4736'),(173590,4856,'_section_two_section_two_icon_three','field_63171e8557bed'),(173591,4856,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(173592,4856,'_section_two_section_two_title_three','field_63171ec257bef'),(173593,4856,'section_two_section_two_icon_four','4738'),(173594,4856,'_section_two_section_two_icon_four','field_63171ee257bf0'),(173595,4856,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(173596,4856,'_section_two_section_two_title_four','field_63171ef757bf1'),(173597,4856,'section_two_section_two_icon_five','4744'),(173598,4856,'_section_two_section_two_icon_five','field_63171f2857bf3'),(173599,4856,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(173600,4856,'_section_two_section_two_title_five','field_63171f3957bf4'),(173601,4856,'section_two_section_two_icon_six','4746'),(173602,4856,'_section_two_section_two_icon_six','field_63171f5057bf5'),(173603,4856,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(173604,4856,'_section_two_section_two_title_six','field_63171f6657bf6'),(173605,4856,'section_two_section_two_icon_seven','4748'),(173606,4856,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(173607,4856,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(173608,4856,'_section_two_section_two_title_seven','field_63171f9757bf8'),(173609,4856,'section_two_section_two_icon_eight','4750'),(173610,4856,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(173611,4856,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(173612,4856,'_section_two_section_two_title_eight','field_63171fc057bfa'),(173613,4856,'section_two',''),(173614,4856,'_section_two','field_63171dfb57be8'),(173615,4856,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(173616,4856,'_section_three_section_three_breadcrumb','field_631723036988b'),(173617,4856,'section_three_section_three_title','Plan Your Next Kubernetes Projectwith Translucent'),(173618,4856,'_section_three_section_three_title','field_631723176988c'),(173619,4856,'section_three_section_three_image','4779'),(173620,4856,'_section_three_section_three_image','field_631723ac6988e'),(173621,4856,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(173622,4856,'_section_three_section_three_content','field_631723906988d'),(173623,4856,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(173624,4856,'_section_three_section_three_footer','field_631723c36988f'),(173625,4856,'section_three_section_three_button_text','Book Consultation Now'),(173626,4856,'_section_three_section_three_button_text','field_631723d769890'),(173627,4856,'section_three',''),(173628,4856,'_section_three','field_631722b96988a'),(173629,4856,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(173630,4856,'_section_four_section_four_breadcrumb','field_6317271523757'),(173631,4856,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(173632,4856,'_section_four_section_four_title','field_6317271523758'),(173633,4856,'section_four_section_four_image','4776'),(173634,4856,'_section_four_section_four_image','field_6317271523759'),(173635,4856,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(173636,4856,'_section_four_section_four_content','field_631727152375a'),(173637,4856,'section_four_section_four_footer','Build - Rebuild - Replatform'),(173638,4856,'_section_four_section_four_footer','field_631727152375b'),(173639,4856,'section_four',''),(173640,4856,'_section_four','field_6317271523756'),(173641,4856,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(173642,4856,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(173643,4856,'section_five_section_five_title','24/7 support and maintenancewith our site reliability engineering services'),(173644,4856,'_section_five_section_five_title','field_631727bbd69dd'),(173645,4856,'section_five_section_five_image','4777'),(173646,4856,'_section_five_section_five_image','field_631727bbd69de'),(173647,4856,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(173648,4856,'_section_five_section_five_content','field_631727bbd69df'),(173649,4856,'section_five_section_five_footer',''),(173650,4856,'_section_five_section_five_footer','field_631727bbd69e0'),(173651,4856,'section_five',''),(173652,4856,'_section_five','field_631727bbd69db'),(173653,4856,'footer_title','We treat your business like our own.'),(173654,4856,'_footer_title','field_631729e2753c6'),(173655,4856,'footer_button_text','Let\'s talk!'),(173656,4856,'_footer_button_text','field_63172a06753c7'),(173657,4856,'section_five_section_five_icon_one','4752'),(173658,4856,'_section_five_section_five_icon_one','field_631727bbd69e0'),(173659,4856,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(173660,4856,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(173661,4856,'section_five_section_five_icon_two','4754'),(173662,4856,'_section_five_section_five_icon_two','field_631ef504912c5'),(173663,4856,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(173664,4856,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(173665,4856,'section_five_section_five_icon_three','4756'),(173666,4856,'_section_five_section_five_icon_three','field_631ef510912c6'),(173667,4856,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(173668,4856,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(173669,4856,'section_five_section_five_icon_four','4758'),(173670,4856,'_section_five_section_five_icon_four','field_631ef51c912c7'),(173671,4856,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(173672,4856,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(173673,4856,'section_one_section_one_image_mobile','4820'),(173674,4856,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(173675,4856,'section_three_section_three_image_mobile','4821'),(173676,4856,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(173677,4856,'section_four_section_four_image_mobile','4823'),(173678,4856,'_section_four_section_four_image_mobile','field_632155def8a3f'),(173679,4856,'section_five_section_five_image_mobile','4824'),(173680,4856,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(173681,4856,'top_background_desktop','4850'),(173682,4856,'_top_background_desktop','field_6323eda2d6f18'),(173683,4856,'top_background_mobile','4851'),(173684,4856,'_top_background_mobile','field_6323edc1d6f19'),(173685,4857,'top_title','Kubernetes Professional Services'),(173686,4857,'_top_title','field_6317168918e96'),(173687,4857,'top_description','CLOUD NATIVE SOLUTIONS'),(173688,4857,'_top_description','field_6317169e18e97'),(173689,4857,'section_one_section_one_breadcrumb','KCSP'),(173690,4857,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(173691,4857,'section_one_section_one_title','Kubernetes Certified Service Provider'),(173692,4857,'_section_one_section_one_title','field_6317172018e9a'),(173693,4857,'section_one_section_one_image','4775'),(173694,4857,'_section_one_section_one_image','field_63171ca018e9c'),(173695,4857,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.'),(173696,4857,'_section_one_section_one_content','field_6317174118e9b'),(173697,4857,'section_one_section_one_navigation_one','Cloud Native Applications'),(173698,4857,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(173699,4857,'section_one_section_one_navigation_two','Cloud Native DevOps'),(173700,4857,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(173701,4857,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(173702,4857,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(173703,4857,'section_one_section_one_button_text','Book Consultation Now'),(173704,4857,'_section_one_section_one_button_text','field_63171dc918ea0'),(173705,4857,'section_one',''),(173706,4857,'_section_one','field_631716de18e98'),(173707,4857,'section_two_section_two_title','Our Services'),(173708,4857,'_section_two_section_two_title','field_63171e1457be9'),(173709,4857,'section_two_section_two_icon_one','4734'),(173710,4857,'_section_two_section_two_icon_one','field_63171e2c57bea'),(173711,4857,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(173712,4857,'_section_two_section_two_title_one','field_63171e5f57beb'),(173713,4857,'section_two_section_two_icon_two','4741'),(173714,4857,'_section_two_section_two_icon_two','field_63171e7357bec'),(173715,4857,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(173716,4857,'_section_two_section_two_title_two','field_63171ea157bee'),(173717,4857,'section_two_section_two_icon_three','4736'),(173718,4857,'_section_two_section_two_icon_three','field_63171e8557bed'),(173719,4857,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(173720,4857,'_section_two_section_two_title_three','field_63171ec257bef'),(173721,4857,'section_two_section_two_icon_four','4738'),(173722,4857,'_section_two_section_two_icon_four','field_63171ee257bf0'),(173723,4857,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(173724,4857,'_section_two_section_two_title_four','field_63171ef757bf1'),(173725,4857,'section_two_section_two_icon_five','4744'),(173726,4857,'_section_two_section_two_icon_five','field_63171f2857bf3'),(173727,4857,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(173728,4857,'_section_two_section_two_title_five','field_63171f3957bf4'),(173729,4857,'section_two_section_two_icon_six','4746'),(173730,4857,'_section_two_section_two_icon_six','field_63171f5057bf5'),(173731,4857,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(173732,4857,'_section_two_section_two_title_six','field_63171f6657bf6'),(173733,4857,'section_two_section_two_icon_seven','4748'),(173734,4857,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(173735,4857,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(173736,4857,'_section_two_section_two_title_seven','field_63171f9757bf8'),(173737,4857,'section_two_section_two_icon_eight','4750'),(173738,4857,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(173739,4857,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(173740,4857,'_section_two_section_two_title_eight','field_63171fc057bfa'),(173741,4857,'section_two',''),(173742,4857,'_section_two','field_63171dfb57be8'),(173743,4857,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(173744,4857,'_section_three_section_three_breadcrumb','field_631723036988b'),(173745,4857,'section_three_section_three_title','Plan Your Next Kubernetes Projectwith Translucent'),(173746,4857,'_section_three_section_three_title','field_631723176988c'),(173747,4857,'section_three_section_three_image','4779'),(173748,4857,'_section_three_section_three_image','field_631723ac6988e'),(173749,4857,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(173750,4857,'_section_three_section_three_content','field_631723906988d'),(173751,4857,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(173752,4857,'_section_three_section_three_footer','field_631723c36988f'),(173753,4857,'section_three_section_three_button_text','Book Consultation Now'),(173754,4857,'_section_three_section_three_button_text','field_631723d769890'),(173755,4857,'section_three',''),(173756,4857,'_section_three','field_631722b96988a'),(173757,4857,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(173758,4857,'_section_four_section_four_breadcrumb','field_6317271523757'),(173759,4857,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(173760,4857,'_section_four_section_four_title','field_6317271523758'),(173761,4857,'section_four_section_four_image','4776'),(173762,4857,'_section_four_section_four_image','field_6317271523759'),(173763,4857,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(173764,4857,'_section_four_section_four_content','field_631727152375a'),(173765,4857,'section_four_section_four_footer','Build - Rebuild - Replatform'),(173766,4857,'_section_four_section_four_footer','field_631727152375b'),(173767,4857,'section_four',''),(173768,4857,'_section_four','field_6317271523756'),(173769,4857,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(173770,4857,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(173771,4857,'section_five_section_five_title','24/7 support and maintenancewith our site reliability engineering services'),(173772,4857,'_section_five_section_five_title','field_631727bbd69dd'),(173773,4857,'section_five_section_five_image','4777'),(173774,4857,'_section_five_section_five_image','field_631727bbd69de'),(173775,4857,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(173776,4857,'_section_five_section_five_content','field_631727bbd69df'),(173777,4857,'section_five_section_five_footer',''),(173778,4857,'_section_five_section_five_footer','field_631727bbd69e0'),(173779,4857,'section_five',''),(173780,4857,'_section_five','field_631727bbd69db'),(173781,4857,'footer_title','We treat your business like our own.'),(173782,4857,'_footer_title','field_631729e2753c6'),(173783,4857,'footer_button_text','Let\'s talk!'),(173784,4857,'_footer_button_text','field_63172a06753c7'),(173785,4857,'section_five_section_five_icon_one','4752'),(173786,4857,'_section_five_section_five_icon_one','field_631727bbd69e0'),(173787,4857,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(173788,4857,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(173789,4857,'section_five_section_five_icon_two','4754'),(173790,4857,'_section_five_section_five_icon_two','field_631ef504912c5'),(173791,4857,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(173792,4857,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(173793,4857,'section_five_section_five_icon_three','4756'),(173794,4857,'_section_five_section_five_icon_three','field_631ef510912c6'),(173795,4857,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(173796,4857,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(173797,4857,'section_five_section_five_icon_four','4758'),(173798,4857,'_section_five_section_five_icon_four','field_631ef51c912c7'),(173799,4857,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(173800,4857,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(173801,4857,'section_one_section_one_image_mobile','4820'),(173802,4857,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(173803,4857,'section_three_section_three_image_mobile','4821'),(173804,4857,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(173805,4857,'section_four_section_four_image_mobile','4823'),(173806,4857,'_section_four_section_four_image_mobile','field_632155def8a3f'),(173807,4857,'section_five_section_five_image_mobile','4824'),(173808,4857,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(173809,4857,'top_background_desktop','4850'),(173810,4857,'_top_background_desktop','field_6323eda2d6f18'),(173811,4857,'top_background_mobile','4851'),(173812,4857,'_top_background_mobile','field_6323edc1d6f19'),(173813,4858,'top_title','Kubernetes Professional Services'),(173814,4858,'_top_title','field_6317168918e96'),(173815,4858,'top_description','CLOUD NATIVE SOLUTIONS'),(173816,4858,'_top_description','field_6317169e18e97'),(173817,4858,'section_one_section_one_breadcrumb','KCSP'),(173818,4858,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(173819,4858,'section_one_section_one_title','Kubernetes Certified Service Provider'),(173820,4858,'_section_one_section_one_title','field_6317172018e9a'),(173821,4858,'section_one_section_one_image','4775'),(173822,4858,'_section_one_section_one_image','field_63171ca018e9c'),(173823,4858,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.'),(173824,4858,'_section_one_section_one_content','field_6317174118e9b'),(173825,4858,'section_one_section_one_navigation_one','Cloud Native Applications'),(173826,4858,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(173827,4858,'section_one_section_one_navigation_two','Cloud Native DevOps'),(173828,4858,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(173829,4858,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(173830,4858,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(173831,4858,'section_one_section_one_button_text','Book Consultation Now'),(173832,4858,'_section_one_section_one_button_text','field_63171dc918ea0'),(173833,4858,'section_one',''),(173834,4858,'_section_one','field_631716de18e98'),(173835,4858,'section_two_section_two_title','Our Services'),(173836,4858,'_section_two_section_two_title','field_63171e1457be9'),(173837,4858,'section_two_section_two_icon_one','4734'),(173838,4858,'_section_two_section_two_icon_one','field_63171e2c57bea'),(173839,4858,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(173840,4858,'_section_two_section_two_title_one','field_63171e5f57beb'),(173841,4858,'section_two_section_two_icon_two','4741'),(173842,4858,'_section_two_section_two_icon_two','field_63171e7357bec'),(173843,4858,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(173844,4858,'_section_two_section_two_title_two','field_63171ea157bee'),(173845,4858,'section_two_section_two_icon_three','4736'),(173846,4858,'_section_two_section_two_icon_three','field_63171e8557bed'),(173847,4858,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(173848,4858,'_section_two_section_two_title_three','field_63171ec257bef'),(173849,4858,'section_two_section_two_icon_four','4738'),(173850,4858,'_section_two_section_two_icon_four','field_63171ee257bf0'),(173851,4858,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(173852,4858,'_section_two_section_two_title_four','field_63171ef757bf1'),(173853,4858,'section_two_section_two_icon_five','4744'),(173854,4858,'_section_two_section_two_icon_five','field_63171f2857bf3'),(173855,4858,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(173856,4858,'_section_two_section_two_title_five','field_63171f3957bf4'),(173857,4858,'section_two_section_two_icon_six','4746'),(173858,4858,'_section_two_section_two_icon_six','field_63171f5057bf5'),(173859,4858,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(173860,4858,'_section_two_section_two_title_six','field_63171f6657bf6'),(173861,4858,'section_two_section_two_icon_seven','4748'),(173862,4858,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(173863,4858,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(173864,4858,'_section_two_section_two_title_seven','field_63171f9757bf8'),(173865,4858,'section_two_section_two_icon_eight','4750'),(173866,4858,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(173867,4858,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(173868,4858,'_section_two_section_two_title_eight','field_63171fc057bfa'),(173869,4858,'section_two',''),(173870,4858,'_section_two','field_63171dfb57be8'),(173871,4858,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(173872,4858,'_section_three_section_three_breadcrumb','field_631723036988b'),(173873,4858,'section_three_section_three_title','Plan Your Next Kubernetes Projectwith Translucent'),(173874,4858,'_section_three_section_three_title','field_631723176988c'),(173875,4858,'section_three_section_three_image','4779'),(173876,4858,'_section_three_section_three_image','field_631723ac6988e'),(173877,4858,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(173878,4858,'_section_three_section_three_content','field_631723906988d'),(173879,4858,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(173880,4858,'_section_three_section_three_footer','field_631723c36988f'),(173881,4858,'section_three_section_three_button_text','Book Consultation Now'),(173882,4858,'_section_three_section_three_button_text','field_631723d769890'),(173883,4858,'section_three',''),(173884,4858,'_section_three','field_631722b96988a'),(173885,4858,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(173886,4858,'_section_four_section_four_breadcrumb','field_6317271523757'),(173887,4858,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(173888,4858,'_section_four_section_four_title','field_6317271523758'),(173889,4858,'section_four_section_four_image','4776'),(173890,4858,'_section_four_section_four_image','field_6317271523759'),(173891,4858,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(173892,4858,'_section_four_section_four_content','field_631727152375a'),(173893,4858,'section_four_section_four_footer','Build - Rebuild - Replatform'),(173894,4858,'_section_four_section_four_footer','field_631727152375b'),(173895,4858,'section_four',''),(173896,4858,'_section_four','field_6317271523756'),(173897,4858,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(173898,4858,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(173899,4858,'section_five_section_five_title','24/7 support and maintenancewith our site reliability engineering services'),(173900,4858,'_section_five_section_five_title','field_631727bbd69dd'),(173901,4858,'section_five_section_five_image','4777'),(173902,4858,'_section_five_section_five_image','field_631727bbd69de'),(173903,4858,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(173904,4858,'_section_five_section_five_content','field_631727bbd69df'),(173905,4858,'section_five_section_five_footer',''),(173906,4858,'_section_five_section_five_footer','field_631727bbd69e0'),(173907,4858,'section_five',''),(173908,4858,'_section_five','field_631727bbd69db'),(173909,4858,'footer_title','We treat your business like our own.'),(173910,4858,'_footer_title','field_631729e2753c6'),(173911,4858,'footer_button_text','Let\'s talk!'),(173912,4858,'_footer_button_text','field_63172a06753c7'),(173913,4858,'section_five_section_five_icon_one','4752'),(173914,4858,'_section_five_section_five_icon_one','field_631727bbd69e0'),(173915,4858,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(173916,4858,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(173917,4858,'section_five_section_five_icon_two','4754'),(173918,4858,'_section_five_section_five_icon_two','field_631ef504912c5'),(173919,4858,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(173920,4858,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(173921,4858,'section_five_section_five_icon_three','4756'),(173922,4858,'_section_five_section_five_icon_three','field_631ef510912c6'),(173923,4858,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(173924,4858,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(173925,4858,'section_five_section_five_icon_four','4758'),(173926,4858,'_section_five_section_five_icon_four','field_631ef51c912c7'),(173927,4858,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(173928,4858,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(173929,4858,'section_one_section_one_image_mobile','4820'),(173930,4858,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(173931,4858,'section_three_section_three_image_mobile','4821'),(173932,4858,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(173933,4858,'section_four_section_four_image_mobile','4823'),(173934,4858,'_section_four_section_four_image_mobile','field_632155def8a3f'),(173935,4858,'section_five_section_five_image_mobile','4824'),(173936,4858,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(173937,4858,'top_background_desktop','4850'),(173938,4858,'_top_background_desktop','field_6323eda2d6f18'),(173939,4858,'top_background_mobile','4851'),(173940,4858,'_top_background_mobile','field_6323edc1d6f19'),(173941,4859,'_wp_attached_file','2022/09/kubernetes_certified_icon-2.png'),(173942,4859,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:387;s:6:\"height\";i:423;s:4:\"file\";s:39:\"2022/09/kubernetes_certified_icon-2.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"kubernetes_certified_icon-2-274x300.png\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"kubernetes_certified_icon-2-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:{}}}'),(173943,4859,'_imagify_optimization_level','2'),(173944,4859,'_imagify_status','error'),(173945,4859,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(173946,4859,'_wp_attachment_image_alt','kubernetes'),(173947,4860,'top_title','Kubernetes Professional Services'),(173948,4860,'_top_title','field_6317168918e96'),(173949,4860,'top_description','CLOUD NATIVE SOLUTIONS'),(173950,4860,'_top_description','field_6317169e18e97'),(173951,4860,'section_one_section_one_breadcrumb','KCSP'),(173952,4860,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(173953,4860,'section_one_section_one_title','Kubernetes Certified Service Provider'),(173954,4860,'_section_one_section_one_title','field_6317172018e9a'),(173955,4860,'section_one_section_one_image','4775'),(173956,4860,'_section_one_section_one_image','field_63171ca018e9c'),(173957,4860,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.'),(173958,4860,'_section_one_section_one_content','field_6317174118e9b'),(173959,4860,'section_one_section_one_navigation_one','Cloud Native Applications'),(173960,4860,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(173961,4860,'section_one_section_one_navigation_two','Cloud Native DevOps'),(173962,4860,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(173963,4860,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(173964,4860,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(173965,4860,'section_one_section_one_button_text','Book Consultation Now'),(173966,4860,'_section_one_section_one_button_text','field_63171dc918ea0'),(173967,4860,'section_one',''),(173968,4860,'_section_one','field_631716de18e98'),(173969,4860,'section_two_section_two_title','Our Services'),(173970,4860,'_section_two_section_two_title','field_63171e1457be9'),(173971,4860,'section_two_section_two_icon_one','4734'),(173972,4860,'_section_two_section_two_icon_one','field_63171e2c57bea'),(173973,4860,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(173974,4860,'_section_two_section_two_title_one','field_63171e5f57beb'),(173975,4860,'section_two_section_two_icon_two','4741'),(173976,4860,'_section_two_section_two_icon_two','field_63171e7357bec'),(173977,4860,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(173978,4860,'_section_two_section_two_title_two','field_63171ea157bee'),(173979,4860,'section_two_section_two_icon_three','4736'),(173980,4860,'_section_two_section_two_icon_three','field_63171e8557bed'),(173981,4860,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(173982,4860,'_section_two_section_two_title_three','field_63171ec257bef'),(173983,4860,'section_two_section_two_icon_four','4738'),(173984,4860,'_section_two_section_two_icon_four','field_63171ee257bf0'),(173985,4860,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(173986,4860,'_section_two_section_two_title_four','field_63171ef757bf1'),(173987,4860,'section_two_section_two_icon_five','4744'),(173988,4860,'_section_two_section_two_icon_five','field_63171f2857bf3'),(173989,4860,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(173990,4860,'_section_two_section_two_title_five','field_63171f3957bf4'),(173991,4860,'section_two_section_two_icon_six','4746'),(173992,4860,'_section_two_section_two_icon_six','field_63171f5057bf5'),(173993,4860,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(173994,4860,'_section_two_section_two_title_six','field_63171f6657bf6'),(173995,4860,'section_two_section_two_icon_seven','4748'),(173996,4860,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(173997,4860,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(173998,4860,'_section_two_section_two_title_seven','field_63171f9757bf8'),(173999,4860,'section_two_section_two_icon_eight','4750'),(174000,4860,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(174001,4860,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(174002,4860,'_section_two_section_two_title_eight','field_63171fc057bfa'),(174003,4860,'section_two',''),(174004,4860,'_section_two','field_63171dfb57be8'),(174005,4860,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(174006,4860,'_section_three_section_three_breadcrumb','field_631723036988b'),(174007,4860,'section_three_section_three_title','Plan Your Next Kubernetes Projectwith Translucent'),(174008,4860,'_section_three_section_three_title','field_631723176988c'),(174009,4860,'section_three_section_three_image','4779'),(174010,4860,'_section_three_section_three_image','field_631723ac6988e'),(174011,4860,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(174012,4860,'_section_three_section_three_content','field_631723906988d'),(174013,4860,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(174014,4860,'_section_three_section_three_footer','field_631723c36988f'),(174015,4860,'section_three_section_three_button_text','Book Consultation Now'),(174016,4860,'_section_three_section_three_button_text','field_631723d769890'),(174017,4860,'section_three',''),(174018,4860,'_section_three','field_631722b96988a'),(174019,4860,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(174020,4860,'_section_four_section_four_breadcrumb','field_6317271523757'),(174021,4860,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(174022,4860,'_section_four_section_four_title','field_6317271523758'),(174023,4860,'section_four_section_four_image','4776'),(174024,4860,'_section_four_section_four_image','field_6317271523759'),(174025,4860,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(174026,4860,'_section_four_section_four_content','field_631727152375a'),(174027,4860,'section_four_section_four_footer','Build - Rebuild - Replatform'),(174028,4860,'_section_four_section_four_footer','field_631727152375b'),(174029,4860,'section_four',''),(174030,4860,'_section_four','field_6317271523756'),(174031,4860,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(174032,4860,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(174033,4860,'section_five_section_five_title','24/7 support and maintenancewith our site reliability engineering services'),(174034,4860,'_section_five_section_five_title','field_631727bbd69dd'),(174035,4860,'section_five_section_five_image','4777'),(174036,4860,'_section_five_section_five_image','field_631727bbd69de'),(174037,4860,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(174038,4860,'_section_five_section_five_content','field_631727bbd69df'),(174039,4860,'section_five_section_five_footer',''),(174040,4860,'_section_five_section_five_footer','field_631727bbd69e0'),(174041,4860,'section_five',''),(174042,4860,'_section_five','field_631727bbd69db'),(174043,4860,'footer_title','We treat your business like our own.'),(174044,4860,'_footer_title','field_631729e2753c6'),(174045,4860,'footer_button_text','Let\'s talk!'),(174046,4860,'_footer_button_text','field_63172a06753c7'),(174047,4860,'section_five_section_five_icon_one','4752'),(174048,4860,'_section_five_section_five_icon_one','field_631727bbd69e0'),(174049,4860,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(174050,4860,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(174051,4860,'section_five_section_five_icon_two','4754'),(174052,4860,'_section_five_section_five_icon_two','field_631ef504912c5'),(174053,4860,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(174054,4860,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(174055,4860,'section_five_section_five_icon_three','4756'),(174056,4860,'_section_five_section_five_icon_three','field_631ef510912c6'),(174057,4860,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(174058,4860,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(174059,4860,'section_five_section_five_icon_four','4758'),(174060,4860,'_section_five_section_five_icon_four','field_631ef51c912c7'),(174061,4860,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(174062,4860,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(174063,4860,'section_one_section_one_image_mobile','4859'),(174064,4860,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(174065,4860,'section_three_section_three_image_mobile','4821'),(174066,4860,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(174067,4860,'section_four_section_four_image_mobile','4823'),(174068,4860,'_section_four_section_four_image_mobile','field_632155def8a3f'),(174069,4860,'section_five_section_five_image_mobile','4824'),(174070,4860,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(174071,4860,'top_background_desktop','4850'),(174072,4860,'_top_background_desktop','field_6323eda2d6f18'),(174073,4860,'top_background_mobile','4851'),(174074,4860,'_top_background_mobile','field_6323edc1d6f19'),(174075,4861,'_wp_attached_file','2022/09/learn_informa_plan-2.png'),(174076,4861,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:565;s:6:\"height\";i:159;s:4:\"file\";s:32:\"2022/09/learn_informa_plan-2.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"learn_informa_plan-2-300x84.png\";s:5:\"width\";i:300;s:6:\"height\";i:84;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"learn_informa_plan-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:32:\"learn_informa_plan-2-500x159.png\";s:5:\"width\";i:500;s:6:\"height\";i:159;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:{}}}'),(174077,4861,'_imagify_optimization_level','2'),(174078,4861,'_imagify_status','error'),(174079,4861,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(174080,4861,'_wp_attachment_image_alt','learn informa plan'),(174081,4862,'_wp_attached_file','2022/09/kubernetes_and_conteiners_2-2.png'),(174082,4862,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:505;s:6:\"height\";i:407;s:4:\"file\";s:41:\"2022/09/kubernetes_and_conteiners_2-2.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"kubernetes_and_conteiners_2-2-300x242.png\";s:5:\"width\";i:300;s:6:\"height\";i:242;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"kubernetes_and_conteiners_2-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:41:\"kubernetes_and_conteiners_2-2-500x407.png\";s:5:\"width\";i:500;s:6:\"height\";i:407;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:{}}}'),(174083,4862,'_imagify_optimization_level','2'),(174084,4862,'_imagify_status','error'),(174085,4862,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(174086,4862,'_wp_attachment_image_alt','kubernetes and conteiners'),(174087,4863,'_wp_attached_file','2022/09/24-7_2-2.png'),(174088,4863,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:424;s:6:\"height\";i:369;s:4:\"file\";s:20:\"2022/09/24-7_2-2.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"24-7_2-2-300x261.png\";s:5:\"width\";i:300;s:6:\"height\";i:261;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"24-7_2-2-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:{}}}'),(174089,4863,'_imagify_optimization_level','2'),(174090,4863,'_imagify_status','error'),(174091,4863,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(174092,4863,'_wp_attachment_image_alt','24-7_2 kubernetes'),(174093,4864,'top_title','Kubernetes Professional Services'),(174094,4864,'_top_title','field_6317168918e96'),(174095,4864,'top_description','CLOUD NATIVE SOLUTIONS'),(174096,4864,'_top_description','field_6317169e18e97'),(174097,4864,'section_one_section_one_breadcrumb','KCSP'),(174098,4864,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(174099,4864,'section_one_section_one_title','Kubernetes Certified Service Provider'),(174100,4864,'_section_one_section_one_title','field_6317172018e9a'),(174101,4864,'section_one_section_one_image','4775'),(174102,4864,'_section_one_section_one_image','field_63171ca018e9c'),(174103,4864,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.'),(174104,4864,'_section_one_section_one_content','field_6317174118e9b'),(174105,4864,'section_one_section_one_navigation_one','Cloud Native Applications'),(174106,4864,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(174107,4864,'section_one_section_one_navigation_two','Cloud Native DevOps'),(174108,4864,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(174109,4864,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(174110,4864,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(174111,4864,'section_one_section_one_button_text','Book Consultation Now'),(174112,4864,'_section_one_section_one_button_text','field_63171dc918ea0'),(174113,4864,'section_one',''),(174114,4864,'_section_one','field_631716de18e98'),(174115,4864,'section_two_section_two_title','Our Services'),(174116,4864,'_section_two_section_two_title','field_63171e1457be9'),(174117,4864,'section_two_section_two_icon_one','4734'),(174118,4864,'_section_two_section_two_icon_one','field_63171e2c57bea'),(174119,4864,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(174120,4864,'_section_two_section_two_title_one','field_63171e5f57beb'),(174121,4864,'section_two_section_two_icon_two','4741'),(174122,4864,'_section_two_section_two_icon_two','field_63171e7357bec'),(174123,4864,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(174124,4864,'_section_two_section_two_title_two','field_63171ea157bee'),(174125,4864,'section_two_section_two_icon_three','4736'),(174126,4864,'_section_two_section_two_icon_three','field_63171e8557bed'),(174127,4864,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(174128,4864,'_section_two_section_two_title_three','field_63171ec257bef'),(174129,4864,'section_two_section_two_icon_four','4738'),(174130,4864,'_section_two_section_two_icon_four','field_63171ee257bf0'),(174131,4864,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(174132,4864,'_section_two_section_two_title_four','field_63171ef757bf1'),(174133,4864,'section_two_section_two_icon_five','4744'),(174134,4864,'_section_two_section_two_icon_five','field_63171f2857bf3'),(174135,4864,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(174136,4864,'_section_two_section_two_title_five','field_63171f3957bf4'),(174137,4864,'section_two_section_two_icon_six','4746'),(174138,4864,'_section_two_section_two_icon_six','field_63171f5057bf5'),(174139,4864,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(174140,4864,'_section_two_section_two_title_six','field_63171f6657bf6'),(174141,4864,'section_two_section_two_icon_seven','4748'),(174142,4864,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(174143,4864,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(174144,4864,'_section_two_section_two_title_seven','field_63171f9757bf8'),(174145,4864,'section_two_section_two_icon_eight','4750'),(174146,4864,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(174147,4864,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(174148,4864,'_section_two_section_two_title_eight','field_63171fc057bfa'),(174149,4864,'section_two',''),(174150,4864,'_section_two','field_63171dfb57be8'),(174151,4864,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(174152,4864,'_section_three_section_three_breadcrumb','field_631723036988b'),(174153,4864,'section_three_section_three_title','Plan Your Next Kubernetes Projectwith Translucent'),(174154,4864,'_section_three_section_three_title','field_631723176988c'),(174155,4864,'section_three_section_three_image','4779'),(174156,4864,'_section_three_section_three_image','field_631723ac6988e'),(174157,4864,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(174158,4864,'_section_three_section_three_content','field_631723906988d'),(174159,4864,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(174160,4864,'_section_three_section_three_footer','field_631723c36988f'),(174161,4864,'section_three_section_three_button_text','Book Consultation Now'),(174162,4864,'_section_three_section_three_button_text','field_631723d769890'),(174163,4864,'section_three',''),(174164,4864,'_section_three','field_631722b96988a'),(174165,4864,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(174166,4864,'_section_four_section_four_breadcrumb','field_6317271523757'),(174167,4864,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(174168,4864,'_section_four_section_four_title','field_6317271523758'),(174169,4864,'section_four_section_four_image','4776'),(174170,4864,'_section_four_section_four_image','field_6317271523759'),(174171,4864,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(174172,4864,'_section_four_section_four_content','field_631727152375a'),(174173,4864,'section_four_section_four_footer','Build - Rebuild - Replatform'),(174174,4864,'_section_four_section_four_footer','field_631727152375b'),(174175,4864,'section_four',''),(174176,4864,'_section_four','field_6317271523756'),(174177,4864,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(174178,4864,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(174179,4864,'section_five_section_five_title','24/7 support and maintenancewith our site reliability engineering services'),(174180,4864,'_section_five_section_five_title','field_631727bbd69dd'),(174181,4864,'section_five_section_five_image','4777'),(174182,4864,'_section_five_section_five_image','field_631727bbd69de'),(174183,4864,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(174184,4864,'_section_five_section_five_content','field_631727bbd69df'),(174185,4864,'section_five_section_five_footer',''),(174186,4864,'_section_five_section_five_footer','field_631727bbd69e0'),(174187,4864,'section_five',''),(174188,4864,'_section_five','field_631727bbd69db'),(174189,4864,'footer_title','We treat your business like our own.'),(174190,4864,'_footer_title','field_631729e2753c6'),(174191,4864,'footer_button_text','Let\'s talk!'),(174192,4864,'_footer_button_text','field_63172a06753c7'),(174193,4864,'section_five_section_five_icon_one','4752'),(174194,4864,'_section_five_section_five_icon_one','field_631727bbd69e0'),(174195,4864,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(174196,4864,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(174197,4864,'section_five_section_five_icon_two','4754'),(174198,4864,'_section_five_section_five_icon_two','field_631ef504912c5'),(174199,4864,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(174200,4864,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(174201,4864,'section_five_section_five_icon_three','4756'),(174202,4864,'_section_five_section_five_icon_three','field_631ef510912c6'),(174203,4864,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(174204,4864,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(174205,4864,'section_five_section_five_icon_four','4758'),(174206,4864,'_section_five_section_five_icon_four','field_631ef51c912c7'),(174207,4864,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(174208,4864,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(174209,4864,'section_one_section_one_image_mobile','4859'),(174210,4864,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(174211,4864,'section_three_section_three_image_mobile','4861'),(174212,4864,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(174213,4864,'section_four_section_four_image_mobile','4862'),(174214,4864,'_section_four_section_four_image_mobile','field_632155def8a3f'),(174215,4864,'section_five_section_five_image_mobile','4863'),(174216,4864,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(174217,4864,'top_background_desktop','4850'),(174218,4864,'_top_background_desktop','field_6323eda2d6f18'),(174219,4864,'top_background_mobile','4851'),(174220,4864,'_top_background_mobile','field_6323edc1d6f19'),(174221,4865,'_wp_attached_file','2022/09/machine_learning@3x.png'),(174222,4865,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1596;s:6:\"height\";i:1332;s:4:\"file\";s:31:\"2022/09/machine_learning@3x.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"machine_learning@3x-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"machine_learning@3x-1024x855.png\";s:5:\"width\";i:1024;s:6:\"height\";i:855;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"machine_learning@3x-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:\"machine_learning@3x-768x641.png\";s:5:\"width\";i:768;s:6:\"height\";i:641;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"machine_learning@3x-1536x1282.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1282;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:31:\"machine_learning@3x-500x500.png\";s:5:\"width\";i:500;s:6:\"height\";i:500;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:{}}}'),(174223,4865,'_imagify_optimization_level','2'),(174224,4865,'_imagify_status','error'),(174225,4865,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(174226,4865,'_wp_attachment_image_alt','machine learning'),(174227,4866,'_wp_attached_file','2022/09/1.png'),(174228,4866,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:942;s:6:\"height\";i:246;s:4:\"file\";s:13:\"2022/09/1.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:12:\"1-300x78.png\";s:5:\"width\";i:300;s:6:\"height\";i:78;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"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:13:\"1-768x201.png\";s:5:\"width\";i:768;s:6:\"height\";i:201;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:13:\"1-500x246.png\";s:5:\"width\";i:500;s:6:\"height\";i:246;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:{}}}'),(174229,4866,'_imagify_optimization_level','2'),(174230,4866,'_imagify_status','error'),(174231,4866,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(174232,4866,'_wp_attachment_image_alt','company still using hand tools'),(174233,4867,'top-image',''),(174234,4867,'_top-image','field_5c488d805f5d4'),(174235,4867,'top_title',''),(174236,4867,'_top_title','field_5edfac92f4226'),(174237,4867,'top-text',''),(174238,4867,'_top-text','field_5c488e575f5d5'),(174239,4867,'features',''),(174240,4867,'_features','field_5c4890bc3ae1f'),(174241,4867,'about-title',''),(174242,4867,'_about-title','field_5c488e7a5f5d6'),(174243,4867,'about-text',''),(174244,4867,'_about-text','field_5c488e945f5d7'),(174245,4867,'problems',''),(174246,4867,'_problems','field_5c488ec75f5d8'),(174247,4867,'solutions',''),(174248,4867,'_solutions','field_5c488ed95f5d9'),(174249,4867,'difference',''),(174250,4867,'_difference','field_5c488eed5f5da'),(174251,4867,'panel',''),(174252,4867,'_panel','field_5c488f195f5db'),(174253,4867,'more-text',''),(174254,4867,'_more-text','field_5c488f8f5f5df'),(174255,4867,'phrase',''),(174256,4867,'_phrase','field_5c488faf5f5e0'),(174257,4867,'author',''),(174258,4867,'_author','field_5c488fba5f5e1'),(174259,4867,'top_description','Machine Learning'),(174260,4867,'_top_description','field_63170e008cc99'),(174261,4867,'top_background_desktop','4840'),(174262,4867,'_top_background_desktop','field_631eb1728b709'),(174263,4867,'top_background_mobile','4843'),(174264,4867,'_top_background_mobile','field_631eb1988b70a'),(174265,4867,'section_one_section_one_breadcrumb','THE FUTURE'),(174266,4867,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(174267,4867,'section_one_section_one_title','How intelligent is your
\r\nbusiness?'),(174268,4867,'_section_one_section_one_title','field_6316f2764091e'),(174269,4867,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(174270,4867,'_section_one_section_one_content','field_6316f2934091f'),(174271,4867,'section_one_section_one_image','4679'),(174272,4867,'_section_one_section_one_image','field_6316f2ab40920'),(174273,4867,'section_one_section_one_button_text','Book a consultation now'),(174274,4867,'_section_one_section_one_button_text','field_6316f2ca40921'),(174275,4867,'section_one',''),(174276,4867,'_section_one','field_6316f7ba1cd27'),(174277,4867,'section_two_section_two_button_text','Book a consultation now'),(174278,4867,'_section_two_section_two_button_text','field_6316fe1ff751b'),(174279,4867,'section_two_section_two_tab_one_header_title','Problems'),(174280,4867,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(174281,4867,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(174282,4867,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(174283,4867,'section_two_section_two_tab_one_image','4680'),(174284,4867,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(174285,4867,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(174286,4867,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(174287,4867,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money?

\r\n

How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(174288,4867,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(174289,4867,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(174290,4867,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(174291,4867,'section_two_section_two_tab_two_header_title','Solutions'),(174292,4867,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(174293,4867,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(174294,4867,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(174295,4867,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(174296,4867,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(174297,4867,'section_two_section_two_tab_two_content_icon_1','4683'),(174298,4867,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(174299,4867,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(174300,4867,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(174301,4867,'section_two_section_two_tab_two_content_icon_2','4684'),(174302,4867,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(174303,4867,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(174304,4867,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(174305,4867,'section_two_section_two_tab_two_content_icon_3','4685'),(174306,4867,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(174307,4867,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(174308,4867,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(174309,4867,'section_two_section_two_tab_two_content_icon_4','4686'),(174310,4867,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(174311,4867,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(174312,4867,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(174313,4867,'section_two_section_two_tab_three_header_title','Difference'),(174314,4867,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(174315,4867,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(174316,4867,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(174317,4867,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(174318,4867,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(174319,4867,'section_two_section_two_tab_three_image','4705'),(174320,4867,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(174321,4867,'section_two',''),(174322,4867,'_section_two','field_6316fa2531589'),(174323,4867,'section_three_section_three_title','Trusted Relationships'),(174324,4867,'_section_three_section_three_title','field_6316febdf751c'),(174325,4867,'section_three_section_three_one_icon','4687'),(174326,4867,'_section_three_section_three_one_icon','field_6316fefff751e'),(174327,4867,'section_three_section_three_one_title','Data Entry Automation'),(174328,4867,'_section_three_section_three_one_title','field_6316ff1cf751f'),(174329,4867,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(174330,4867,'_section_three_section_three_one_content','field_6316ff29f7520'),(174331,4867,'section_three_section_three_two_icon','4688'),(174332,4867,'_section_three_section_three_two_icon','field_6316ff77f7523'),(174333,4867,'section_three_section_three_two_title','Product Recommendation'),(174334,4867,'_section_three_section_three_two_title','field_6316ff90f7524'),(174335,4867,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(174336,4867,'_section_three_section_three_two_content','field_6316ff5df7522'),(174337,4867,'section_three_section_three_three_icon','4689'),(174338,4867,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(174339,4867,'section_three_section_three_three_title','Medical Diagnosis'),(174340,4867,'_section_three_section_three_three_title','field_6316fff5f7527'),(174341,4867,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(174342,4867,'_section_three_section_three_three_content','field_63170010f7528'),(174343,4867,'section_three_section_three_four_icon','4690'),(174344,4867,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(174345,4867,'section_three_section_three_four_title','Clients: Who is buying what'),(174346,4867,'_section_three_section_three_four_title','field_631707992b1ca'),(174347,4867,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(174348,4867,'_section_three_section_three_four_content','field_631707b42b1cb'),(174349,4867,'section_three_section_three_five_icon','4691'),(174350,4867,'_section_three_section_three_five_icon','field_631707e52b1cd'),(174351,4867,'section_three_section_three_five_title','User Behavior'),(174352,4867,'_section_three_section_three_five_title','field_631708002b1ce'),(174353,4867,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(174354,4867,'_section_three_section_three_five_content','field_6317081c2b1cf'),(174355,4867,'section_three_section_three_six_icon','4692'),(174356,4867,'_section_three_section_three_six_icon','field_631708572b1d1'),(174357,4867,'section_three_section_three_six_title','BI: Automated Reporting'),(174358,4867,'_section_three_section_three_six_title','field_631708712b1d2'),(174359,4867,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(174360,4867,'_section_three_section_three_six_content','field_6317088d2b1d3'),(174361,4867,'section_three_section_three_seven_icon','4693'),(174362,4867,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(174363,4867,'section_three_section_three_seven_title','Detecting Spam in Emails'),(174364,4867,'_section_three_section_three_seven_title','field_631708da2b1d6'),(174365,4867,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(174366,4867,'_section_three_section_three_seven_content','field_631708f62b1d7'),(174367,4867,'section_three_section_three_eight_icon','4694'),(174368,4867,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(174369,4867,'section_three_section_three_eight_title','Analytics'),(174370,4867,'_section_three_section_three_eight_title','field_631709462b1da'),(174371,4867,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(174372,4867,'_section_three_section_three_eight_content','field_6317095e2b1db'),(174373,4867,'section_three',''),(174374,4867,'_section_three','field_6316fcf4f751a'),(174375,4867,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(174376,4867,'_section_four_section_four_content','field_63170ac9aa9a2'),(174377,4867,'section_four_section_four_button_text','Book a consultation now'),(174378,4867,'_section_four_section_four_button_text','field_63170b08aa9a3'),(174379,4867,'section_four',''),(174380,4867,'_section_four','field_63170a81aa9a1'),(174381,4867,'section_five_section_five_title','We listen. We learn. We inform.'),(174382,4867,'_section_five_section_five_title','field_63170b8564fc2'),(174383,4867,'section_five_section_five_quote','

“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”

'),(174384,4867,'_section_five_section_five_quote','field_632013fd76a3e'),(174385,4867,'section_five_section_five_footer','forbes.com'),(174386,4867,'_section_five_section_five_footer','field_63170bad64fc4'),(174387,4867,'section_five',''),(174388,4867,'_section_five','field_63170b5f64fc1'),(174389,4867,'footer_title','We treat your business like our own.'),(174390,4867,'_footer_title','field_63170f4c8cc9a'),(174391,4867,'footer_button_text','Let\'s talk!'),(174392,4867,'_footer_button_text','field_63170f6f8cc9b'),(174393,4867,'top_title_1','CLOUD NATIVE SOLUTIONS'),(174394,4867,'_top_title_1','field_631ed55492adc'),(174395,4867,'top_title_page','CLOUD NATIVE SOLUTIONS'),(174396,4867,'_top_title_page','field_631ed55492adc'),(174397,4867,'section_one_section_one_image_mobile','4865'),(174398,4867,'_section_one_section_one_image_mobile','field_6321741c8e5ae'),(174399,4867,'section_two_section_two_tab_one_image_mobile','4827'),(174400,4867,'_section_two_section_two_tab_one_image_mobile','field_632174678e5af'),(174401,4867,'section_two_section_two_tab_three_image_mobile','4866'),(174402,4867,'_section_two_section_two_tab_three_image_mobile','field_632174798e5b0'),(174403,4868,'top_title','Kubernetes Professional Services'),(174404,4868,'_top_title','field_6317168918e96'),(174405,4868,'top_description','CLOUD NATIVE SOLUTIONS'),(174406,4868,'_top_description','field_6317169e18e97'),(174407,4868,'section_one_section_one_breadcrumb','KCSP'),(174408,4868,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(174409,4868,'section_one_section_one_title','Kubernetes Certified Service Provider'),(174410,4868,'_section_one_section_one_title','field_6317172018e9a'),(174411,4868,'section_one_section_one_image','4775'),(174412,4868,'_section_one_section_one_image','field_63171ca018e9c'),(174413,4868,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.'),(174414,4868,'_section_one_section_one_content','field_6317174118e9b'),(174415,4868,'section_one_section_one_navigation_one','Cloud Native Applications'),(174416,4868,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(174417,4868,'section_one_section_one_navigation_two','Cloud Native DevOps'),(174418,4868,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(174419,4868,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(174420,4868,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(174421,4868,'section_one_section_one_button_text','Book Consultation Now'),(174422,4868,'_section_one_section_one_button_text','field_63171dc918ea0'),(174423,4868,'section_one',''),(174424,4868,'_section_one','field_631716de18e98'),(174425,4868,'section_two_section_two_title','Our Services'),(174426,4868,'_section_two_section_two_title','field_63171e1457be9'),(174427,4868,'section_two_section_two_icon_one','4734'),(174428,4868,'_section_two_section_two_icon_one','field_63171e2c57bea'),(174429,4868,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(174430,4868,'_section_two_section_two_title_one','field_63171e5f57beb'),(174431,4868,'section_two_section_two_icon_two','4741'),(174432,4868,'_section_two_section_two_icon_two','field_63171e7357bec'),(174433,4868,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(174434,4868,'_section_two_section_two_title_two','field_63171ea157bee'),(174435,4868,'section_two_section_two_icon_three','4736'),(174436,4868,'_section_two_section_two_icon_three','field_63171e8557bed'),(174437,4868,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(174438,4868,'_section_two_section_two_title_three','field_63171ec257bef'),(174439,4868,'section_two_section_two_icon_four','4738'),(174440,4868,'_section_two_section_two_icon_four','field_63171ee257bf0'),(174441,4868,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(174442,4868,'_section_two_section_two_title_four','field_63171ef757bf1'),(174443,4868,'section_two_section_two_icon_five','4744'),(174444,4868,'_section_two_section_two_icon_five','field_63171f2857bf3'),(174445,4868,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(174446,4868,'_section_two_section_two_title_five','field_63171f3957bf4'),(174447,4868,'section_two_section_two_icon_six','4746'),(174448,4868,'_section_two_section_two_icon_six','field_63171f5057bf5'),(174449,4868,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(174450,4868,'_section_two_section_two_title_six','field_63171f6657bf6'),(174451,4868,'section_two_section_two_icon_seven','4748'),(174452,4868,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(174453,4868,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(174454,4868,'_section_two_section_two_title_seven','field_63171f9757bf8'),(174455,4868,'section_two_section_two_icon_eight','4750'),(174456,4868,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(174457,4868,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(174458,4868,'_section_two_section_two_title_eight','field_63171fc057bfa'),(174459,4868,'section_two',''),(174460,4868,'_section_two','field_63171dfb57be8'),(174461,4868,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(174462,4868,'_section_three_section_three_breadcrumb','field_631723036988b'),(174463,4868,'section_three_section_three_title','Plan Your Next Kubernetes Project with Translucent'),(174464,4868,'_section_three_section_three_title','field_631723176988c'),(174465,4868,'section_three_section_three_image','4779'),(174466,4868,'_section_three_section_three_image','field_631723ac6988e'),(174467,4868,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(174468,4868,'_section_three_section_three_content','field_631723906988d'),(174469,4868,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(174470,4868,'_section_three_section_three_footer','field_631723c36988f'),(174471,4868,'section_three_section_three_button_text','Book Consultation Now'),(174472,4868,'_section_three_section_three_button_text','field_631723d769890'),(174473,4868,'section_three',''),(174474,4868,'_section_three','field_631722b96988a'),(174475,4868,'section_four_section_four_breadcrumb','LEARN, INFORM, PLAN'),(174476,4868,'_section_four_section_four_breadcrumb','field_6317271523757'),(174477,4868,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(174478,4868,'_section_four_section_four_title','field_6317271523758'),(174479,4868,'section_four_section_four_image','4776'),(174480,4868,'_section_four_section_four_image','field_6317271523759'),(174481,4868,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(174482,4868,'_section_four_section_four_content','field_631727152375a'),(174483,4868,'section_four_section_four_footer','Build - Rebuild - Replatform'),(174484,4868,'_section_four_section_four_footer','field_631727152375b'),(174485,4868,'section_four',''),(174486,4868,'_section_four','field_6317271523756'),(174487,4868,'section_five_section_five_breadcrumb','LEARN, INFORM, PLAN'),(174488,4868,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(174489,4868,'section_five_section_five_title','24/7 support and maintenancewith our site reliability engineering services'),(174490,4868,'_section_five_section_five_title','field_631727bbd69dd'),(174491,4868,'section_five_section_five_image','4777'),(174492,4868,'_section_five_section_five_image','field_631727bbd69de'),(174493,4868,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(174494,4868,'_section_five_section_five_content','field_631727bbd69df'),(174495,4868,'section_five_section_five_footer',''),(174496,4868,'_section_five_section_five_footer','field_631727bbd69e0'),(174497,4868,'section_five',''),(174498,4868,'_section_five','field_631727bbd69db'),(174499,4868,'footer_title','We treat your business like our own.'),(174500,4868,'_footer_title','field_631729e2753c6'),(174501,4868,'footer_button_text','Let\'s talk!'),(174502,4868,'_footer_button_text','field_63172a06753c7'),(174503,4868,'section_five_section_five_icon_one','4752'),(174504,4868,'_section_five_section_five_icon_one','field_631727bbd69e0'),(174505,4868,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(174506,4868,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(174507,4868,'section_five_section_five_icon_two','4754'),(174508,4868,'_section_five_section_five_icon_two','field_631ef504912c5'),(174509,4868,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(174510,4868,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(174511,4868,'section_five_section_five_icon_three','4756'),(174512,4868,'_section_five_section_five_icon_three','field_631ef510912c6'),(174513,4868,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(174514,4868,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(174515,4868,'section_five_section_five_icon_four','4758'),(174516,4868,'_section_five_section_five_icon_four','field_631ef51c912c7'),(174517,4868,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(174518,4868,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(174519,4868,'section_one_section_one_image_mobile','4820'),(174520,4868,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(174521,4868,'section_three_section_three_image_mobile','4821'),(174522,4868,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(174523,4868,'section_four_section_four_image_mobile','4823'),(174524,4868,'_section_four_section_four_image_mobile','field_632155def8a3f'),(174525,4868,'section_five_section_five_image_mobile','4824'),(174526,4868,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(174527,4868,'top_background_desktop','4850'),(174528,4868,'_top_background_desktop','field_6323eda2d6f18'),(174529,4868,'top_background_mobile','4851'),(174530,4868,'_top_background_mobile','field_6323edc1d6f19'),(174531,4869,'top_title','Kubernetes Professional Services'),(174532,4869,'_top_title','field_6317168918e96'),(174533,4869,'top_description','CLOUD NATIVE SOLUTIONS'),(174534,4869,'_top_description','field_6317169e18e97'),(174535,4869,'section_one_section_one_breadcrumb','KCSP'),(174536,4869,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(174537,4869,'section_one_section_one_title','Kubernetes Certified Service Provider'),(174538,4869,'_section_one_section_one_title','field_6317172018e9a'),(174539,4869,'section_one_section_one_image','4775'),(174540,4869,'_section_one_section_one_image','field_63171ca018e9c'),(174541,4869,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.'),(174542,4869,'_section_one_section_one_content','field_6317174118e9b'),(174543,4869,'section_one_section_one_navigation_one','Cloud Native Applications'),(174544,4869,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(174545,4869,'section_one_section_one_navigation_two','Cloud Native DevOps'),(174546,4869,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(174547,4869,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(174548,4869,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(174549,4869,'section_one_section_one_button_text','Book Consultation Now'),(174550,4869,'_section_one_section_one_button_text','field_63171dc918ea0'),(174551,4869,'section_one',''),(174552,4869,'_section_one','field_631716de18e98'),(174553,4869,'section_two_section_two_title','Our Services'),(174554,4869,'_section_two_section_two_title','field_63171e1457be9'),(174555,4869,'section_two_section_two_icon_one','4734'),(174556,4869,'_section_two_section_two_icon_one','field_63171e2c57bea'),(174557,4869,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(174558,4869,'_section_two_section_two_title_one','field_63171e5f57beb'),(174559,4869,'section_two_section_two_icon_two','4741'),(174560,4869,'_section_two_section_two_icon_two','field_63171e7357bec'),(174561,4869,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(174562,4869,'_section_two_section_two_title_two','field_63171ea157bee'),(174563,4869,'section_two_section_two_icon_three','4736'),(174564,4869,'_section_two_section_two_icon_three','field_63171e8557bed'),(174565,4869,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(174566,4869,'_section_two_section_two_title_three','field_63171ec257bef'),(174567,4869,'section_two_section_two_icon_four','4738'),(174568,4869,'_section_two_section_two_icon_four','field_63171ee257bf0'),(174569,4869,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(174570,4869,'_section_two_section_two_title_four','field_63171ef757bf1'),(174571,4869,'section_two_section_two_icon_five','4744'),(174572,4869,'_section_two_section_two_icon_five','field_63171f2857bf3'),(174573,4869,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(174574,4869,'_section_two_section_two_title_five','field_63171f3957bf4'),(174575,4869,'section_two_section_two_icon_six','4746'),(174576,4869,'_section_two_section_two_icon_six','field_63171f5057bf5'),(174577,4869,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(174578,4869,'_section_two_section_two_title_six','field_63171f6657bf6'),(174579,4869,'section_two_section_two_icon_seven','4748'),(174580,4869,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(174581,4869,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(174582,4869,'_section_two_section_two_title_seven','field_63171f9757bf8'),(174583,4869,'section_two_section_two_icon_eight','4750'),(174584,4869,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(174585,4869,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(174586,4869,'_section_two_section_two_title_eight','field_63171fc057bfa'),(174587,4869,'section_two',''),(174588,4869,'_section_two','field_63171dfb57be8'),(174589,4869,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(174590,4869,'_section_three_section_three_breadcrumb','field_631723036988b'),(174591,4869,'section_three_section_three_title','Plan Your Next Kubernetes Project with Translucent'),(174592,4869,'_section_three_section_three_title','field_631723176988c'),(174593,4869,'section_three_section_three_image','4779'),(174594,4869,'_section_three_section_three_image','field_631723ac6988e'),(174595,4869,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(174596,4869,'_section_three_section_three_content','field_631723906988d'),(174597,4869,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(174598,4869,'_section_three_section_three_footer','field_631723c36988f'),(174599,4869,'section_three_section_three_button_text','Book Consultation Now'),(174600,4869,'_section_three_section_three_button_text','field_631723d769890'),(174601,4869,'section_three',''),(174602,4869,'_section_three','field_631722b96988a'),(174603,4869,'section_four_section_four_breadcrumb','KUBERNETES CONSULTING'),(174604,4869,'_section_four_section_four_breadcrumb','field_6317271523757'),(174605,4869,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(174606,4869,'_section_four_section_four_title','field_6317271523758'),(174607,4869,'section_four_section_four_image','4776'),(174608,4869,'_section_four_section_four_image','field_6317271523759'),(174609,4869,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(174610,4869,'_section_four_section_four_content','field_631727152375a'),(174611,4869,'section_four_section_four_footer','Build - Rebuild - Replatform'),(174612,4869,'_section_four_section_four_footer','field_631727152375b'),(174613,4869,'section_four',''),(174614,4869,'_section_four','field_6317271523756'),(174615,4869,'section_five_section_five_breadcrumb','SUPPORT AND MAINTENANCE'),(174616,4869,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(174617,4869,'section_five_section_five_title','24/7 support and maintenancewith our site reliability engineering services'),(174618,4869,'_section_five_section_five_title','field_631727bbd69dd'),(174619,4869,'section_five_section_five_image','4777'),(174620,4869,'_section_five_section_five_image','field_631727bbd69de'),(174621,4869,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(174622,4869,'_section_five_section_five_content','field_631727bbd69df'),(174623,4869,'section_five_section_five_footer',''),(174624,4869,'_section_five_section_five_footer','field_631727bbd69e0'),(174625,4869,'section_five',''),(174626,4869,'_section_five','field_631727bbd69db'),(174627,4869,'footer_title','We treat your business like our own.'),(174628,4869,'_footer_title','field_631729e2753c6'),(174629,4869,'footer_button_text','Let\'s talk!'),(174630,4869,'_footer_button_text','field_63172a06753c7'),(174631,4869,'section_five_section_five_icon_one','4752'),(174632,4869,'_section_five_section_five_icon_one','field_631727bbd69e0'),(174633,4869,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(174634,4869,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(174635,4869,'section_five_section_five_icon_two','4754'),(174636,4869,'_section_five_section_five_icon_two','field_631ef504912c5'),(174637,4869,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(174638,4869,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(174639,4869,'section_five_section_five_icon_three','4756'),(174640,4869,'_section_five_section_five_icon_three','field_631ef510912c6'),(174641,4869,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(174642,4869,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(174643,4869,'section_five_section_five_icon_four','4758'),(174644,4869,'_section_five_section_five_icon_four','field_631ef51c912c7'),(174645,4869,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(174646,4869,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(174647,4869,'section_one_section_one_image_mobile','4820'),(174648,4869,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(174649,4869,'section_three_section_three_image_mobile','4821'),(174650,4869,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(174651,4869,'section_four_section_four_image_mobile','4823'),(174652,4869,'_section_four_section_four_image_mobile','field_632155def8a3f'),(174653,4869,'section_five_section_five_image_mobile','4824'),(174654,4869,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(174655,4869,'top_background_desktop','4850'),(174656,4869,'_top_background_desktop','field_6323eda2d6f18'),(174657,4869,'top_background_mobile','4851'),(174658,4869,'_top_background_mobile','field_6323edc1d6f19'),(174659,4870,'top_title','Kubernetes Professional Services'),(174660,4870,'_top_title','field_6317168918e96'),(174661,4870,'top_description','CLOUD NATIVE SOLUTIONS'),(174662,4870,'_top_description','field_6317169e18e97'),(174663,4870,'section_one_section_one_breadcrumb','KCSP'),(174664,4870,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(174665,4870,'section_one_section_one_title','Kubernetes Certified Service Provider'),(174666,4870,'_section_one_section_one_title','field_6317172018e9a'),(174667,4870,'section_one_section_one_image','4775'),(174668,4870,'_section_one_section_one_image','field_63171ca018e9c'),(174669,4870,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.'),(174670,4870,'_section_one_section_one_content','field_6317174118e9b'),(174671,4870,'section_one_section_one_navigation_one','Cloud Native Applications'),(174672,4870,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(174673,4870,'section_one_section_one_navigation_two','Cloud Native DevOps'),(174674,4870,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(174675,4870,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(174676,4870,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(174677,4870,'section_one_section_one_button_text','Book Consultation Now'),(174678,4870,'_section_one_section_one_button_text','field_63171dc918ea0'),(174679,4870,'section_one',''),(174680,4870,'_section_one','field_631716de18e98'),(174681,4870,'section_two_section_two_title','Our Services'),(174682,4870,'_section_two_section_two_title','field_63171e1457be9'),(174683,4870,'section_two_section_two_icon_one','4734'),(174684,4870,'_section_two_section_two_icon_one','field_63171e2c57bea'),(174685,4870,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(174686,4870,'_section_two_section_two_title_one','field_63171e5f57beb'),(174687,4870,'section_two_section_two_icon_two','4741'),(174688,4870,'_section_two_section_two_icon_two','field_63171e7357bec'),(174689,4870,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(174690,4870,'_section_two_section_two_title_two','field_63171ea157bee'),(174691,4870,'section_two_section_two_icon_three','4736'),(174692,4870,'_section_two_section_two_icon_three','field_63171e8557bed'),(174693,4870,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(174694,4870,'_section_two_section_two_title_three','field_63171ec257bef'),(174695,4870,'section_two_section_two_icon_four','4738'),(174696,4870,'_section_two_section_two_icon_four','field_63171ee257bf0'),(174697,4870,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(174698,4870,'_section_two_section_two_title_four','field_63171ef757bf1'),(174699,4870,'section_two_section_two_icon_five','4744'),(174700,4870,'_section_two_section_two_icon_five','field_63171f2857bf3'),(174701,4870,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(174702,4870,'_section_two_section_two_title_five','field_63171f3957bf4'),(174703,4870,'section_two_section_two_icon_six','4746'),(174704,4870,'_section_two_section_two_icon_six','field_63171f5057bf5'),(174705,4870,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(174706,4870,'_section_two_section_two_title_six','field_63171f6657bf6'),(174707,4870,'section_two_section_two_icon_seven','4748'),(174708,4870,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(174709,4870,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(174710,4870,'_section_two_section_two_title_seven','field_63171f9757bf8'),(174711,4870,'section_two_section_two_icon_eight','4750'),(174712,4870,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(174713,4870,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(174714,4870,'_section_two_section_two_title_eight','field_63171fc057bfa'),(174715,4870,'section_two',''),(174716,4870,'_section_two','field_63171dfb57be8'),(174717,4870,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(174718,4870,'_section_three_section_three_breadcrumb','field_631723036988b'),(174719,4870,'section_three_section_three_title','Plan Your Next Kubernetes Project with Translucent'),(174720,4870,'_section_three_section_three_title','field_631723176988c'),(174721,4870,'section_three_section_three_image','4779'),(174722,4870,'_section_three_section_three_image','field_631723ac6988e'),(174723,4870,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(174724,4870,'_section_three_section_three_content','field_631723906988d'),(174725,4870,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(174726,4870,'_section_three_section_three_footer','field_631723c36988f'),(174727,4870,'section_three_section_three_button_text','Book Consultation Now'),(174728,4870,'_section_three_section_three_button_text','field_631723d769890'),(174729,4870,'section_three',''),(174730,4870,'_section_three','field_631722b96988a'),(174731,4870,'section_four_section_four_breadcrumb','KUBERNETES CONSULTING'),(174732,4870,'_section_four_section_four_breadcrumb','field_6317271523757'),(174733,4870,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(174734,4870,'_section_four_section_four_title','field_6317271523758'),(174735,4870,'section_four_section_four_image','4776'),(174736,4870,'_section_four_section_four_image','field_6317271523759'),(174737,4870,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(174738,4870,'_section_four_section_four_content','field_631727152375a'),(174739,4870,'section_four_section_four_footer','Build - Rebuild - Replatform'),(174740,4870,'_section_four_section_four_footer','field_631727152375b'),(174741,4870,'section_four',''),(174742,4870,'_section_four','field_6317271523756'),(174743,4870,'section_five_section_five_breadcrumb','SUPPORT AND MAINTENANCE'),(174744,4870,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(174745,4870,'section_five_section_five_title','24/7 support and maintenancewith our site reliability engineering services'),(174746,4870,'_section_five_section_five_title','field_631727bbd69dd'),(174747,4870,'section_five_section_five_image','4777'),(174748,4870,'_section_five_section_five_image','field_631727bbd69de'),(174749,4870,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(174750,4870,'_section_five_section_five_content','field_631727bbd69df'),(174751,4870,'section_five_section_five_footer',''),(174752,4870,'_section_five_section_five_footer','field_631727bbd69e0'),(174753,4870,'section_five',''),(174754,4870,'_section_five','field_631727bbd69db'),(174755,4870,'footer_title','We treat your business like our own.'),(174756,4870,'_footer_title','field_631729e2753c6'),(174757,4870,'footer_button_text','Let\'s talk!'),(174758,4870,'_footer_button_text','field_63172a06753c7'),(174759,4870,'section_five_section_five_icon_one','4752'),(174760,4870,'_section_five_section_five_icon_one','field_631727bbd69e0'),(174761,4870,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(174762,4870,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(174763,4870,'section_five_section_five_icon_two','4754'),(174764,4870,'_section_five_section_five_icon_two','field_631ef504912c5'),(174765,4870,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(174766,4870,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(174767,4870,'section_five_section_five_icon_three','4756'),(174768,4870,'_section_five_section_five_icon_three','field_631ef510912c6'),(174769,4870,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(174770,4870,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(174771,4870,'section_five_section_five_icon_four','4758'),(174772,4870,'_section_five_section_five_icon_four','field_631ef51c912c7'),(174773,4870,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(174774,4870,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(174775,4870,'section_one_section_one_image_mobile','4820'),(174776,4870,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(174777,4870,'section_three_section_three_image_mobile','4821'),(174778,4870,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(174779,4870,'section_four_section_four_image_mobile','4823'),(174780,4870,'_section_four_section_four_image_mobile','field_632155def8a3f'),(174781,4870,'section_five_section_five_image_mobile','4824'),(174782,4870,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(174783,4870,'top_background_desktop','4850'),(174784,4870,'_top_background_desktop','field_6323eda2d6f18'),(174785,4870,'top_background_mobile','4851'),(174786,4870,'_top_background_mobile','field_6323edc1d6f19'),(174787,4871,'top_title','Kubernetes Professional Services'),(174788,4871,'_top_title','field_6317168918e96'),(174789,4871,'top_description','CLOUD NATIVE SOLUTIONS'),(174790,4871,'_top_description','field_6317169e18e97'),(174791,4871,'section_one_section_one_breadcrumb','KCSP'),(174792,4871,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(174793,4871,'section_one_section_one_title','Kubernetes Certified Service Provider'),(174794,4871,'_section_one_section_one_title','field_6317172018e9a'),(174795,4871,'section_one_section_one_image','4775'),(174796,4871,'_section_one_section_one_image','field_63171ca018e9c'),(174797,4871,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.'),(174798,4871,'_section_one_section_one_content','field_6317174118e9b'),(174799,4871,'section_one_section_one_navigation_one','Cloud Native Applications'),(174800,4871,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(174801,4871,'section_one_section_one_navigation_two','Cloud Native DevOps'),(174802,4871,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(174803,4871,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(174804,4871,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(174805,4871,'section_one_section_one_button_text','Book Consultation Now'),(174806,4871,'_section_one_section_one_button_text','field_63171dc918ea0'),(174807,4871,'section_one',''),(174808,4871,'_section_one','field_631716de18e98'),(174809,4871,'section_two_section_two_title','Our Services'),(174810,4871,'_section_two_section_two_title','field_63171e1457be9'),(174811,4871,'section_two_section_two_icon_one','4734'),(174812,4871,'_section_two_section_two_icon_one','field_63171e2c57bea'),(174813,4871,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(174814,4871,'_section_two_section_two_title_one','field_63171e5f57beb'),(174815,4871,'section_two_section_two_icon_two','4741'),(174816,4871,'_section_two_section_two_icon_two','field_63171e7357bec'),(174817,4871,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(174818,4871,'_section_two_section_two_title_two','field_63171ea157bee'),(174819,4871,'section_two_section_two_icon_three','4736'),(174820,4871,'_section_two_section_two_icon_three','field_63171e8557bed'),(174821,4871,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(174822,4871,'_section_two_section_two_title_three','field_63171ec257bef'),(174823,4871,'section_two_section_two_icon_four','4738'),(174824,4871,'_section_two_section_two_icon_four','field_63171ee257bf0'),(174825,4871,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(174826,4871,'_section_two_section_two_title_four','field_63171ef757bf1'),(174827,4871,'section_two_section_two_icon_five','4744'),(174828,4871,'_section_two_section_two_icon_five','field_63171f2857bf3'),(174829,4871,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(174830,4871,'_section_two_section_two_title_five','field_63171f3957bf4'),(174831,4871,'section_two_section_two_icon_six','4746'),(174832,4871,'_section_two_section_two_icon_six','field_63171f5057bf5'),(174833,4871,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(174834,4871,'_section_two_section_two_title_six','field_63171f6657bf6'),(174835,4871,'section_two_section_two_icon_seven','4748'),(174836,4871,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(174837,4871,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(174838,4871,'_section_two_section_two_title_seven','field_63171f9757bf8'),(174839,4871,'section_two_section_two_icon_eight','4750'),(174840,4871,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(174841,4871,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(174842,4871,'_section_two_section_two_title_eight','field_63171fc057bfa'),(174843,4871,'section_two',''),(174844,4871,'_section_two','field_63171dfb57be8'),(174845,4871,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(174846,4871,'_section_three_section_three_breadcrumb','field_631723036988b'),(174847,4871,'section_three_section_three_title','Plan Your Next Kubernetes Project with Translucent'),(174848,4871,'_section_three_section_three_title','field_631723176988c'),(174849,4871,'section_three_section_three_image','4779'),(174850,4871,'_section_three_section_three_image','field_631723ac6988e'),(174851,4871,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(174852,4871,'_section_three_section_three_content','field_631723906988d'),(174853,4871,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(174854,4871,'_section_three_section_three_footer','field_631723c36988f'),(174855,4871,'section_three_section_three_button_text','Book Consultation Now'),(174856,4871,'_section_three_section_three_button_text','field_631723d769890'),(174857,4871,'section_three',''),(174858,4871,'_section_three','field_631722b96988a'),(174859,4871,'section_four_section_four_breadcrumb','KUBERNETES CONSULTING'),(174860,4871,'_section_four_section_four_breadcrumb','field_6317271523757'),(174861,4871,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(174862,4871,'_section_four_section_four_title','field_6317271523758'),(174863,4871,'section_four_section_four_image','4776'),(174864,4871,'_section_four_section_four_image','field_6317271523759'),(174865,4871,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(174866,4871,'_section_four_section_four_content','field_631727152375a'),(174867,4871,'section_four_section_four_footer','Build - Rebuild - Replatform'),(174868,4871,'_section_four_section_four_footer','field_631727152375b'),(174869,4871,'section_four',''),(174870,4871,'_section_four','field_6317271523756'),(174871,4871,'section_five_section_five_breadcrumb','SUPPORT AND MAINTENANCE'),(174872,4871,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(174873,4871,'section_five_section_five_title','24/7 support and maintenancewith our site reliability engineering services'),(174874,4871,'_section_five_section_five_title','field_631727bbd69dd'),(174875,4871,'section_five_section_five_image','4777'),(174876,4871,'_section_five_section_five_image','field_631727bbd69de'),(174877,4871,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(174878,4871,'_section_five_section_five_content','field_631727bbd69df'),(174879,4871,'section_five_section_five_footer',''),(174880,4871,'_section_five_section_five_footer','field_631727bbd69e0'),(174881,4871,'section_five',''),(174882,4871,'_section_five','field_631727bbd69db'),(174883,4871,'footer_title','We treat your business like our own.'),(174884,4871,'_footer_title','field_631729e2753c6'),(174885,4871,'footer_button_text','Let\'s talk!'),(174886,4871,'_footer_button_text','field_63172a06753c7'),(174887,4871,'section_five_section_five_icon_one','4752'),(174888,4871,'_section_five_section_five_icon_one','field_631727bbd69e0'),(174889,4871,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(174890,4871,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(174891,4871,'section_five_section_five_icon_two','4754'),(174892,4871,'_section_five_section_five_icon_two','field_631ef504912c5'),(174893,4871,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(174894,4871,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(174895,4871,'section_five_section_five_icon_three','4756'),(174896,4871,'_section_five_section_five_icon_three','field_631ef510912c6'),(174897,4871,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(174898,4871,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(174899,4871,'section_five_section_five_icon_four','4758'),(174900,4871,'_section_five_section_five_icon_four','field_631ef51c912c7'),(174901,4871,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(174902,4871,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(174903,4871,'section_one_section_one_image_mobile','4820'),(174904,4871,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(174905,4871,'section_three_section_three_image_mobile','4821'),(174906,4871,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(174907,4871,'section_four_section_four_image_mobile','4823'),(174908,4871,'_section_four_section_four_image_mobile','field_632155def8a3f'),(174909,4871,'section_five_section_five_image_mobile','4824'),(174910,4871,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(174911,4871,'top_background_desktop','4850'),(174912,4871,'_top_background_desktop','field_6323eda2d6f18'),(174913,4871,'top_background_mobile','4851'),(174914,4871,'_top_background_mobile','field_6323edc1d6f19'),(174915,3125,'original-file','2021/06/home4-updraft-pre-smush-original.jpg'),(174916,3125,'smush-info','The file was compressed from 79.66 KB to 37.92 KB saving 52.39 percent using WP-Optimize'),(174917,3125,'smush-complete','1'),(174918,3125,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:81571;s:12:\"smushed-size\";i:38834;s:15:\"savings-percent\";d:52.39;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:81571;s:10:\"compressed\";i:38834;}s:6:\"medium\";a:2:{s:8:\"original\";i:4580;s:10:\"compressed\";i:3271;}s:5:\"large\";a:2:{s:8:\"original\";i:33679;s:10:\"compressed\";i:22682;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:21230;s:10:\"compressed\";i:14600;}s:7:\"feature\";a:2:{s:8:\"original\";i:19131;s:10:\"compressed\";i:12598;}}}'),(174919,3957,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Applications.svg - cannot be optimized, it has an invalid file type'),(174920,3957,'smush-complete',''),(174921,3958,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/DevOps.svg - cannot be optimized, it has an invalid file type'),(174922,3958,'smush-complete',''),(174923,3959,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/kubernates.svg - cannot be optimized, it has an invalid file type'),(174924,3959,'smush-complete',''),(174925,3960,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/zerotrust.svg - cannot be optimized, it has an invalid file type'),(174926,3960,'smush-complete',''),(174927,3961,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/datdriven.svg - cannot be optimized, it has an invalid file type'),(174928,3961,'smush-complete',''),(174929,3962,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Machine-Learning.svg - cannot be optimized, it has an invalid file type'),(174930,3962,'smush-complete',''),(174931,3963,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/logo.svg - cannot be optimized, it has an invalid file type'),(174932,3963,'smush-complete',''),(174933,3968,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/facebook-icon.svg - cannot be optimized, it has an invalid file type'),(174934,3968,'smush-complete',''),(174935,3969,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/linkedin-icon.svg - cannot be optimized, it has an invalid file type'),(174936,3969,'smush-complete',''),(174937,3970,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/twitter-icon.svg - cannot be optimized, it has an invalid file type'),(174938,3970,'smush-complete',''),(174939,3971,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/instagram-icon.svg - cannot be optimized, it has an invalid file type'),(174940,3971,'smush-complete',''),(174941,3974,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/tekstack.svg - cannot be optimized, it has an invalid file type'),(174942,3974,'smush-complete',''),(174943,3975,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/tekprocess.svg - cannot be optimized, it has an invalid file type'),(174944,3975,'smush-complete',''),(174945,3976,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/TEKTeams.svg - cannot be optimized, it has an invalid file type'),(174946,3976,'smush-complete',''),(174947,3978,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/mrdata-svg.svg - cannot be optimized, it has an invalid file type'),(174948,3978,'smush-complete',''),(174949,3979,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Cloud-Native-Application-1.svg - cannot be optimized, it has an invalid file type'),(174950,3979,'smush-complete',''),(174951,3980,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Cloud-Native-DevOps-1.svg - cannot be optimized, it has an invalid file type'),(174952,3980,'smush-complete',''),(174953,3981,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Cloud-Native-1.svg - cannot be optimized, it has an invalid file type'),(174954,3981,'smush-complete',''),(174955,3982,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Data-Driven-Digital-Transformation-1.svg - cannot be optimized, it has an invalid file type'),(174956,3982,'smush-complete',''),(174957,3985,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Group-8513.svg - cannot be optimized, it has an invalid file type'),(174958,3985,'smush-complete',''),(174959,3986,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Our-Team.svg - cannot be optimized, it has an invalid file type'),(174960,3986,'smush-complete',''),(174961,3987,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/aboutus.svg - cannot be optimized, it has an invalid file type'),(174962,3987,'smush-complete',''),(174963,4013,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Group-102.svg - cannot be optimized, it has an invalid file type'),(174964,4013,'smush-complete',''),(174965,4019,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Group-8212.svg - cannot be optimized, it has an invalid file type'),(174966,4019,'smush-complete',''),(174967,4020,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Group-8255.svg - cannot be optimized, it has an invalid file type'),(174968,4020,'smush-complete',''),(174969,4021,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Group-7932.svg - cannot be optimized, it has an invalid file type'),(174970,4021,'smush-complete',''),(174971,4038,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Group-7869.svg - cannot be optimized, it has an invalid file type'),(174972,4038,'smush-complete',''),(174973,4040,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/kubernetes.svg - cannot be optimized, it has an invalid file type'),(174974,4040,'smush-complete',''),(174975,4042,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Devops.svg - cannot be optimized, it has an invalid file type'),(174976,4042,'smush-complete',''),(174977,4043,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Group-7871.svg - cannot be optimized, it has an invalid file type'),(174978,4043,'smush-complete',''),(174979,4047,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Group-8020.svg - cannot be optimized, it has an invalid file type'),(174980,4047,'smush-complete',''),(174981,4048,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/MachineLearning.svg - cannot be optimized, it has an invalid file type'),(174982,4048,'smush-complete',''),(174983,4052,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Group-8035-1.svg - cannot be optimized, it has an invalid file type'),(174984,4052,'smush-complete',''),(174985,4053,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Group-8036.svg - cannot be optimized, it has an invalid file type'),(174986,4053,'smush-complete',''),(174987,4054,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Group-8038.svg - cannot be optimized, it has an invalid file type'),(174988,4054,'smush-complete',''),(174989,4071,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Group-80351.svg - cannot be optimized, it has an invalid file type'),(174990,4071,'smush-complete',''),(174991,4074,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Group-83921.svg - cannot be optimized, it has an invalid file type'),(174992,4074,'smush-complete',''),(174993,4075,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Group-83451.svg - cannot be optimized, it has an invalid file type'),(174994,4075,'smush-complete',''),(174995,4076,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Group-83631.svg - cannot be optimized, it has an invalid file type'),(174996,4076,'smush-complete',''),(174997,4077,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Group-83641.svg - cannot be optimized, it has an invalid file type'),(174998,4077,'smush-complete',''),(174999,4080,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/Group-83961.svg - cannot be optimized, it has an invalid file type'),(175000,4080,'smush-complete',''),(175001,4081,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/startjourney1.svg - cannot be optimized, it has an invalid file type'),(175002,4081,'smush-complete',''),(175003,4082,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/teamscalability1.svg - cannot be optimized, it has an invalid file type'),(175004,4082,'smush-complete',''),(175005,4083,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/accestoptechtalent1.svg - cannot be optimized, it has an invalid file type'),(175006,4083,'smush-complete',''),(175007,4084,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/accetotrnlucent1.svg - cannot be optimized, it has an invalid file type'),(175008,4084,'smush-complete',''),(175009,4085,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/remote1.svg - cannot be optimized, it has an invalid file type'),(175010,4085,'smush-complete',''),(175011,4086,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/fullymanaged1.svg - cannot be optimized, it has an invalid file type'),(175012,4086,'smush-complete',''),(175013,4089,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/tekteamwhatis1.svg - cannot be optimized, it has an invalid file type'),(175014,4089,'smush-complete',''),(175015,4090,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/fronendengineer1.svg - cannot be optimized, it has an invalid file type'),(175016,4090,'smush-complete',''),(175017,4091,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/qaenigineer1.svg - cannot be optimized, it has an invalid file type'),(175018,4091,'smush-complete',''),(175019,4092,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/businessanalysis1.svg - cannot be optimized, it has an invalid file type'),(175020,4092,'smush-complete',''),(175021,4093,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/backendengineer1.svg - cannot be optimized, it has an invalid file type'),(175022,4093,'smush-complete',''),(175023,4094,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/uiuzxengneer1.svg - cannot be optimized, it has an invalid file type'),(175024,4094,'smush-complete',''),(175025,4095,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/productowner1.svg - cannot be optimized, it has an invalid file type'),(175026,4095,'smush-complete',''),(175027,4096,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/dataml1.svg - cannot be optimized, it has an invalid file type'),(175028,4096,'smush-complete',''),(175029,4097,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/sre-devops1.svg - cannot be optimized, it has an invalid file type'),(175030,4097,'smush-complete',''),(175031,4098,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/scrummaster1.svg - cannot be optimized, it has an invalid file type'),(175032,4098,'smush-complete',''),(175033,4099,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/05/T1.svg - cannot be optimized, it has an invalid file type'),(175034,4099,'smush-complete',''),(175035,4329,'smush-info','Failed with error code invalid_file_type - /var/www/translucent/wp-content/uploads/2022/06/kubernetes-w.svg - cannot be optimized, it has an invalid file type'),(175036,4329,'smush-complete',''),(175037,4710,'smush-info','The file was compressed from 8.18 KB to 8.18 KB saving 0 percent using WP-Optimize'),(175038,4710,'smush-complete','1'),(175039,4710,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:8377;s:12:\"smushed-size\";i:8377;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:2:{s:9:\"thumbnail\";a:2:{s:8:\"original\";i:2344;s:10:\"compressed\";i:2344;}s:7:\"feature\";a:2:{s:8:\"original\";i:8981;s:10:\"compressed\";i:7937;}}}'),(175040,4872,'top_title','Kubernetes Professional Services'),(175041,4872,'_top_title','field_6317168918e96'),(175042,4872,'top_description','CLOUD NATIVE SOLUTIONS'),(175043,4872,'_top_description','field_6317169e18e97'),(175044,4872,'section_one_section_one_breadcrumb','KCSP'),(175045,4872,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(175046,4872,'section_one_section_one_title','Kubernetes Certified Service Provider'),(175047,4872,'_section_one_section_one_title','field_6317172018e9a'),(175048,4872,'section_one_section_one_image','4775'),(175049,4872,'_section_one_section_one_image','field_63171ca018e9c'),(175050,4872,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.'),(175051,4872,'_section_one_section_one_content','field_6317174118e9b'),(175052,4872,'section_one_section_one_navigation_one','Cloud Native Applications'),(175053,4872,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(175054,4872,'section_one_section_one_navigation_two','Cloud Native DevOps'),(175055,4872,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(175056,4872,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(175057,4872,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(175058,4872,'section_one_section_one_button_text','Book a consultation now'),(175059,4872,'_section_one_section_one_button_text','field_63171dc918ea0'),(175060,4872,'section_one',''),(175061,4872,'_section_one','field_631716de18e98'),(175062,4872,'section_two_section_two_title','Our Services'),(175063,4872,'_section_two_section_two_title','field_63171e1457be9'),(175064,4872,'section_two_section_two_icon_one','4734'),(175065,4872,'_section_two_section_two_icon_one','field_63171e2c57bea'),(175066,4872,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(175067,4872,'_section_two_section_two_title_one','field_63171e5f57beb'),(175068,4872,'section_two_section_two_icon_two','4741'),(175069,4872,'_section_two_section_two_icon_two','field_63171e7357bec'),(175070,4872,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(175071,4872,'_section_two_section_two_title_two','field_63171ea157bee'),(175072,4872,'section_two_section_two_icon_three','4736'),(175073,4872,'_section_two_section_two_icon_three','field_63171e8557bed'),(175074,4872,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(175075,4872,'_section_two_section_two_title_three','field_63171ec257bef'),(175076,4872,'section_two_section_two_icon_four','4738'),(175077,4872,'_section_two_section_two_icon_four','field_63171ee257bf0'),(175078,4872,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(175079,4872,'_section_two_section_two_title_four','field_63171ef757bf1'),(175080,4872,'section_two_section_two_icon_five','4744'),(175081,4872,'_section_two_section_two_icon_five','field_63171f2857bf3'),(175082,4872,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(175083,4872,'_section_two_section_two_title_five','field_63171f3957bf4'),(175084,4872,'section_two_section_two_icon_six','4746'),(175085,4872,'_section_two_section_two_icon_six','field_63171f5057bf5'),(175086,4872,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(175087,4872,'_section_two_section_two_title_six','field_63171f6657bf6'),(175088,4872,'section_two_section_two_icon_seven','4748'),(175089,4872,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(175090,4872,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(175091,4872,'_section_two_section_two_title_seven','field_63171f9757bf8'),(175092,4872,'section_two_section_two_icon_eight','4750'),(175093,4872,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(175094,4872,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(175095,4872,'_section_two_section_two_title_eight','field_63171fc057bfa'),(175096,4872,'section_two',''),(175097,4872,'_section_two','field_63171dfb57be8'),(175098,4872,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(175099,4872,'_section_three_section_three_breadcrumb','field_631723036988b'),(175100,4872,'section_three_section_three_title','Plan Your Next Kubernetes Project with Translucent'),(175101,4872,'_section_three_section_three_title','field_631723176988c'),(175102,4872,'section_three_section_three_image','4779'),(175103,4872,'_section_three_section_three_image','field_631723ac6988e'),(175104,4872,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(175105,4872,'_section_three_section_three_content','field_631723906988d'),(175106,4872,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(175107,4872,'_section_three_section_three_footer','field_631723c36988f'),(175108,4872,'section_three_section_three_button_text','Book a consultation now'),(175109,4872,'_section_three_section_three_button_text','field_631723d769890'),(175110,4872,'section_three',''),(175111,4872,'_section_three','field_631722b96988a'),(175112,4872,'section_four_section_four_breadcrumb','KUBERNETES CONSULTING'),(175113,4872,'_section_four_section_four_breadcrumb','field_6317271523757'),(175114,4872,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(175115,4872,'_section_four_section_four_title','field_6317271523758'),(175116,4872,'section_four_section_four_image','4776'),(175117,4872,'_section_four_section_four_image','field_6317271523759'),(175118,4872,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(175119,4872,'_section_four_section_four_content','field_631727152375a'),(175120,4872,'section_four_section_four_footer','Build - Rebuild - Replatform'),(175121,4872,'_section_four_section_four_footer','field_631727152375b'),(175122,4872,'section_four',''),(175123,4872,'_section_four','field_6317271523756'),(175124,4872,'section_five_section_five_breadcrumb','SUPPORT AND MAINTENANCE'),(175125,4872,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(175126,4872,'section_five_section_five_title','24/7 support and maintenancewith our site reliability engineering services'),(175127,4872,'_section_five_section_five_title','field_631727bbd69dd'),(175128,4872,'section_five_section_five_image','4777'),(175129,4872,'_section_five_section_five_image','field_631727bbd69de'),(175130,4872,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(175131,4872,'_section_five_section_five_content','field_631727bbd69df'),(175132,4872,'section_five_section_five_footer',''),(175133,4872,'_section_five_section_five_footer','field_631727bbd69e0'),(175134,4872,'section_five',''),(175135,4872,'_section_five','field_631727bbd69db'),(175136,4872,'footer_title','We treat your business like our own.'),(175137,4872,'_footer_title','field_631729e2753c6'),(175138,4872,'footer_button_text','Let\'s talk!'),(175139,4872,'_footer_button_text','field_63172a06753c7'),(175140,4872,'section_five_section_five_icon_one','4752'),(175141,4872,'_section_five_section_five_icon_one','field_631727bbd69e0'),(175142,4872,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(175143,4872,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(175144,4872,'section_five_section_five_icon_two','4754'),(175145,4872,'_section_five_section_five_icon_two','field_631ef504912c5'),(175146,4872,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(175147,4872,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(175148,4872,'section_five_section_five_icon_three','4756'),(175149,4872,'_section_five_section_five_icon_three','field_631ef510912c6'),(175150,4872,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(175151,4872,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(175152,4872,'section_five_section_five_icon_four','4758'),(175153,4872,'_section_five_section_five_icon_four','field_631ef51c912c7'),(175154,4872,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(175155,4872,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(175156,4872,'section_one_section_one_image_mobile','4820'),(175157,4872,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(175158,4872,'section_three_section_three_image_mobile','4821'),(175159,4872,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(175160,4872,'section_four_section_four_image_mobile','4823'),(175161,4872,'_section_four_section_four_image_mobile','field_632155def8a3f'),(175162,4872,'section_five_section_five_image_mobile','4824'),(175163,4872,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(175164,4872,'top_background_desktop','4850'),(175165,4872,'_top_background_desktop','field_6323eda2d6f18'),(175166,4872,'top_background_mobile','4851'),(175167,4872,'_top_background_mobile','field_6323edc1d6f19'),(175168,4873,'_wp_attached_file','2022/09/bg-ml.png'),(175169,4873,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:271;s:4:\"file\";s:17:\"2022/09/bg-ml.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"bg-ml-300x42.png\";s:5:\"width\";i:300;s:6:\"height\";i:42;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"bg-ml-1024x145.png\";s:5:\"width\";i:1024;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"bg-ml-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:\"bg-ml-768x108.png\";s:5:\"width\";i:768;s:6:\"height\";i:108;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"bg-ml-1536x217.png\";s:5:\"width\";i:1536;s:6:\"height\";i:217;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:17:\"bg-ml-500x271.png\";s:5:\"width\";i:500;s:6:\"height\";i:271;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:{}}}'),(175170,4873,'_imagify_optimization_level','2'),(175171,4873,'_imagify_status','error'),(175172,4873,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(175173,4873,'_wp_attachment_image_alt','translucent banner'),(175186,4876,'top-image',''),(175187,4876,'_top-image','field_5c488d805f5d4'),(175188,4876,'top_title',''),(175189,4876,'_top_title','field_5edfac92f4226'),(175190,4876,'top-text',''),(175191,4876,'_top-text','field_5c488e575f5d5'),(175192,4876,'features',''),(175193,4876,'_features','field_5c4890bc3ae1f'),(175194,4876,'about-title',''),(175195,4876,'_about-title','field_5c488e7a5f5d6'),(175196,4876,'about-text',''),(175197,4876,'_about-text','field_5c488e945f5d7'),(175198,4876,'problems',''),(175199,4876,'_problems','field_5c488ec75f5d8'),(175200,4876,'solutions',''),(175201,4876,'_solutions','field_5c488ed95f5d9'),(175202,4876,'difference',''),(175203,4876,'_difference','field_5c488eed5f5da'),(175204,4876,'panel',''),(175205,4876,'_panel','field_5c488f195f5db'),(175206,4876,'more-text',''),(175207,4876,'_more-text','field_5c488f8f5f5df'),(175208,4876,'phrase',''),(175209,4876,'_phrase','field_5c488faf5f5e0'),(175210,4876,'author',''),(175211,4876,'_author','field_5c488fba5f5e1'),(175212,4876,'top_description','Machine Learning'),(175213,4876,'_top_description','field_63170e008cc99'),(175214,4876,'top_background_desktop','4874'),(175215,4876,'_top_background_desktop','field_631eb1728b709'),(175216,4876,'top_background_mobile','4875'),(175217,4876,'_top_background_mobile','field_631eb1988b70a'),(175218,4876,'section_one_section_one_breadcrumb','THE FUTURE'),(175219,4876,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(175220,4876,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(175221,4876,'_section_one_section_one_title','field_6316f2764091e'),(175222,4876,'section_one_section_one_content','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(175223,4876,'_section_one_section_one_content','field_6316f2934091f'),(175224,4876,'section_one_section_one_image','4679'),(175225,4876,'_section_one_section_one_image','field_6316f2ab40920'),(175226,4876,'section_one_section_one_button_text','Book a consultation now'),(175227,4876,'_section_one_section_one_button_text','field_6316f2ca40921'),(175228,4876,'section_one',''),(175229,4876,'_section_one','field_6316f7ba1cd27'),(175230,4876,'section_two_section_two_button_text','Book a consultation now'),(175231,4876,'_section_two_section_two_button_text','field_6316fe1ff751b'),(175232,4876,'section_two_section_two_tab_one_header_title','Problems'),(175233,4876,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(175234,4876,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(175235,4876,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(175236,4876,'section_two_section_two_tab_one_image','4680'),(175237,4876,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(175238,4876,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(175239,4876,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(175240,4876,'section_two_section_two_tab_one_content','Do you know where your business is making and losing money?\r\n\r\nHow well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(175241,4876,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(175242,4876,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(175243,4876,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(175244,4876,'section_two_section_two_tab_two_header_title','Solutions'),(175245,4876,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(175246,4876,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(175247,4876,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(175248,4876,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(175249,4876,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(175250,4876,'section_two_section_two_tab_two_content_icon_1','4683'),(175251,4876,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(175252,4876,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(175253,4876,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(175254,4876,'section_two_section_two_tab_two_content_icon_2','4684'),(175255,4876,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(175256,4876,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(175257,4876,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(175258,4876,'section_two_section_two_tab_two_content_icon_3','4685'),(175259,4876,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(175260,4876,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(175261,4876,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(175262,4876,'section_two_section_two_tab_two_content_icon_4','4686'),(175263,4876,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(175264,4876,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(175265,4876,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(175266,4876,'section_two_section_two_tab_three_header_title','Difference'),(175267,4876,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(175268,4876,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(175269,4876,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(175270,4876,'section_two_section_two_tab_three_content','Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.\r\n\r\nWeave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.'),(175271,4876,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(175272,4876,'section_two_section_two_tab_three_image','4705'),(175273,4876,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(175274,4876,'section_two',''),(175275,4876,'_section_two','field_6316fa2531589'),(175276,4876,'section_three_section_three_title','Trusted Relationships'),(175277,4876,'_section_three_section_three_title','field_6316febdf751c'),(175278,4876,'section_three_section_three_one_icon','4687'),(175279,4876,'_section_three_section_three_one_icon','field_6316fefff751e'),(175280,4876,'section_three_section_three_one_title','Data Entry Automation'),(175281,4876,'_section_three_section_three_one_title','field_6316ff1cf751f'),(175282,4876,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175283,4876,'_section_three_section_three_one_content','field_6316ff29f7520'),(175284,4876,'section_three_section_three_two_icon','4688'),(175285,4876,'_section_three_section_three_two_icon','field_6316ff77f7523'),(175286,4876,'section_three_section_three_two_title','Product Recommendation'),(175287,4876,'_section_three_section_three_two_title','field_6316ff90f7524'),(175288,4876,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175289,4876,'_section_three_section_three_two_content','field_6316ff5df7522'),(175290,4876,'section_three_section_three_three_icon','4689'),(175291,4876,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(175292,4876,'section_three_section_three_three_title','Medical Diagnosis'),(175293,4876,'_section_three_section_three_three_title','field_6316fff5f7527'),(175294,4876,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175295,4876,'_section_three_section_three_three_content','field_63170010f7528'),(175296,4876,'section_three_section_three_four_icon','4690'),(175297,4876,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(175298,4876,'section_three_section_three_four_title','Clients: Who is buying what'),(175299,4876,'_section_three_section_three_four_title','field_631707992b1ca'),(175300,4876,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175301,4876,'_section_three_section_three_four_content','field_631707b42b1cb'),(175302,4876,'section_three_section_three_five_icon','4691'),(175303,4876,'_section_three_section_three_five_icon','field_631707e52b1cd'),(175304,4876,'section_three_section_three_five_title','User Behavior'),(175305,4876,'_section_three_section_three_five_title','field_631708002b1ce'),(175306,4876,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175307,4876,'_section_three_section_three_five_content','field_6317081c2b1cf'),(175308,4876,'section_three_section_three_six_icon','4692'),(175309,4876,'_section_three_section_three_six_icon','field_631708572b1d1'),(175310,4876,'section_three_section_three_six_title','BI: Automated Reporting'),(175311,4876,'_section_three_section_three_six_title','field_631708712b1d2'),(175312,4876,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175313,4876,'_section_three_section_three_six_content','field_6317088d2b1d3'),(175314,4876,'section_three_section_three_seven_icon','4693'),(175315,4876,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(175316,4876,'section_three_section_three_seven_title','Detecting Spam in Emails'),(175317,4876,'_section_three_section_three_seven_title','field_631708da2b1d6'),(175318,4876,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175319,4876,'_section_three_section_three_seven_content','field_631708f62b1d7'),(175320,4876,'section_three_section_three_eight_icon','4694'),(175321,4876,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(175322,4876,'section_three_section_three_eight_title','Analytics'),(175323,4876,'_section_three_section_three_eight_title','field_631709462b1da'),(175324,4876,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175325,4876,'_section_three_section_three_eight_content','field_6317095e2b1db'),(175326,4876,'section_three',''),(175327,4876,'_section_three','field_6316fcf4f751a'),(175328,4876,'section_four_section_four_content','The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford. '),(175329,4876,'_section_four_section_four_content','field_63170ac9aa9a2'),(175330,4876,'section_four_section_four_button_text','Book a consultation now'),(175331,4876,'_section_four_section_four_button_text','field_63170b08aa9a3'),(175332,4876,'section_four',''),(175333,4876,'_section_four','field_63170a81aa9a1'),(175334,4876,'section_five_section_five_title','We listen. We learn. We inform.'),(175335,4876,'_section_five_section_five_title','field_63170b8564fc2'),(175336,4876,'section_five_section_five_quote','“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”'),(175337,4876,'_section_five_section_five_quote','field_632013fd76a3e'),(175338,4876,'section_five_section_five_footer','forbes.com'),(175339,4876,'_section_five_section_five_footer','field_63170bad64fc4'),(175340,4876,'section_five',''),(175341,4876,'_section_five','field_63170b5f64fc1'),(175342,4876,'footer_title','We treat your business like our own.'),(175343,4876,'_footer_title','field_63170f4c8cc9a'),(175344,4876,'footer_button_text','Let\'s talk!'),(175345,4876,'_footer_button_text','field_63170f6f8cc9b'),(175346,4876,'top_title_1','CLOUD NATIVE SOLUTIONS'),(175347,4876,'_top_title_1','field_631ed55492adc'),(175348,4876,'top_title_page','CLOUD NATIVE SOLUTIONS'),(175349,4876,'_top_title_page','field_631ed55492adc'),(175350,4876,'section_one_section_one_image_mobile','4865'),(175351,4876,'_section_one_section_one_image_mobile','field_6321741c8e5ae'),(175352,4876,'section_two_section_two_tab_one_image_mobile','4827'),(175353,4876,'_section_two_section_two_tab_one_image_mobile','field_632174678e5af'),(175354,4876,'section_two_section_two_tab_three_image_mobile','4866'),(175355,4876,'_section_two_section_two_tab_three_image_mobile','field_632174798e5b0'),(175366,4873,'original-file','2022/09/bg-ml-updraft-pre-smush-original.png'),(175367,4873,'smush-complete','1'),(175368,4873,'smush-info','The file was compressed from 136.70 KB to 63.21 KB saving 53.76 percent using WP-Optimize'),(175369,4873,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:139983;s:12:\"smushed-size\";i:64729;s:15:\"savings-percent\";d:53.76;s:10:\"sizes-info\";a:7:{s:4:\"full\";a:2:{s:8:\"original\";i:139983;s:10:\"compressed\";i:64729;}s:6:\"medium\";a:2:{s:8:\"original\";i:6044;s:10:\"compressed\";i:3524;}s:5:\"large\";a:2:{s:8:\"original\";i:41159;s:10:\"compressed\";i:24587;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:11369;s:10:\"compressed\";i:6106;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:25887;s:10:\"compressed\";i:15128;}s:9:\"1536x1536\";a:2:{s:8:\"original\";i:75018;s:10:\"compressed\";i:47279;}s:7:\"feature\";a:2:{s:8:\"original\";i:42385;s:10:\"compressed\";i:25995;}}}'),(175385,4879,'_wp_attached_file','2022/09/bg-ml-1.png'),(175386,4879,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:390;s:6:\"height\";i:120;s:4:\"file\";s:19:\"2022/09/bg-ml-1.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"bg-ml-1-300x92.png\";s:5:\"width\";i:300;s:6:\"height\";i:92;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"bg-ml-1-150x120.png\";s:5:\"width\";i:150;s:6:\"height\";i:120;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:{}}}'),(175387,4879,'_imagify_optimization_level','2'),(175388,4879,'_imagify_status','error'),(175389,4879,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(175390,4879,'_wp_attachment_image_alt','translucent banner mobile'),(175391,4880,'top-image',''),(175392,4880,'_top-image','field_5c488d805f5d4'),(175393,4880,'top_title',''),(175394,4880,'_top_title','field_5edfac92f4226'),(175395,4880,'top-text',''),(175396,4880,'_top-text','field_5c488e575f5d5'),(175397,4880,'features',''),(175398,4880,'_features','field_5c4890bc3ae1f'),(175399,4880,'about-title',''),(175400,4880,'_about-title','field_5c488e7a5f5d6'),(175401,4880,'about-text',''),(175402,4880,'_about-text','field_5c488e945f5d7'),(175403,4880,'problems',''),(175404,4880,'_problems','field_5c488ec75f5d8'),(175405,4880,'solutions',''),(175406,4880,'_solutions','field_5c488ed95f5d9'),(175407,4880,'difference',''),(175408,4880,'_difference','field_5c488eed5f5da'),(175409,4880,'panel',''),(175410,4880,'_panel','field_5c488f195f5db'),(175411,4880,'more-text',''),(175412,4880,'_more-text','field_5c488f8f5f5df'),(175413,4880,'phrase',''),(175414,4880,'_phrase','field_5c488faf5f5e0'),(175415,4880,'author',''),(175416,4880,'_author','field_5c488fba5f5e1'),(175417,4880,'top_description','Machine Learning'),(175418,4880,'_top_description','field_63170e008cc99'),(175419,4880,'top_background_desktop',''),(175420,4880,'_top_background_desktop','field_631eb1728b709'),(175421,4880,'top_background_mobile','4879'),(175422,4880,'_top_background_mobile','field_631eb1988b70a'),(175423,4880,'section_one_section_one_breadcrumb','THE FUTURE'),(175424,4880,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(175425,4880,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(175426,4880,'_section_one_section_one_title','field_6316f2764091e'),(175427,4880,'section_one_section_one_content','The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!'),(175428,4880,'_section_one_section_one_content','field_6316f2934091f'),(175429,4880,'section_one_section_one_image','4679'),(175430,4880,'_section_one_section_one_image','field_6316f2ab40920'),(175431,4880,'section_one_section_one_button_text','Book a consultation now'),(175432,4880,'_section_one_section_one_button_text','field_6316f2ca40921'),(175433,4880,'section_one',''),(175434,4880,'_section_one','field_6316f7ba1cd27'),(175435,4880,'section_two_section_two_button_text','Book a consultation now'),(175436,4880,'_section_two_section_two_button_text','field_6316fe1ff751b'),(175437,4880,'section_two_section_two_tab_one_header_title','Problems'),(175438,4880,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(175439,4880,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(175440,4880,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(175441,4880,'section_two_section_two_tab_one_image','4680'),(175442,4880,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(175443,4880,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(175444,4880,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(175445,4880,'section_two_section_two_tab_one_content','Do you know where your business is making and losing money?\r\n\r\nHow well do you know your customers? Buying patterns. Upsell opportunities. Falloff.'),(175446,4880,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(175447,4880,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(175448,4880,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(175449,4880,'section_two_section_two_tab_two_header_title','Solutions'),(175450,4880,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(175451,4880,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(175452,4880,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(175453,4880,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(175454,4880,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(175455,4880,'section_two_section_two_tab_two_content_icon_1','4683'),(175456,4880,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(175457,4880,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(175458,4880,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(175459,4880,'section_two_section_two_tab_two_content_icon_2','4684'),(175460,4880,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(175461,4880,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(175462,4880,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(175463,4880,'section_two_section_two_tab_two_content_icon_3','4685'),(175464,4880,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(175465,4880,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(175466,4880,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(175467,4880,'section_two_section_two_tab_two_content_icon_4','4686'),(175468,4880,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(175469,4880,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(175470,4880,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(175471,4880,'section_two_section_two_tab_three_header_title','Difference'),(175472,4880,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(175473,4880,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(175474,4880,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(175475,4880,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(175476,4880,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(175477,4880,'section_two_section_two_tab_three_image','4705'),(175478,4880,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(175479,4880,'section_two',''),(175480,4880,'_section_two','field_6316fa2531589'),(175481,4880,'section_three_section_three_title','Trusted Relationships'),(175482,4880,'_section_three_section_three_title','field_6316febdf751c'),(175483,4880,'section_three_section_three_one_icon','4687'),(175484,4880,'_section_three_section_three_one_icon','field_6316fefff751e'),(175485,4880,'section_three_section_three_one_title','Data Entry Automation'),(175486,4880,'_section_three_section_three_one_title','field_6316ff1cf751f'),(175487,4880,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175488,4880,'_section_three_section_three_one_content','field_6316ff29f7520'),(175489,4880,'section_three_section_three_two_icon','4688'),(175490,4880,'_section_three_section_three_two_icon','field_6316ff77f7523'),(175491,4880,'section_three_section_three_two_title','Product Recommendation'),(175492,4880,'_section_three_section_three_two_title','field_6316ff90f7524'),(175493,4880,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175494,4880,'_section_three_section_three_two_content','field_6316ff5df7522'),(175495,4880,'section_three_section_three_three_icon','4689'),(175496,4880,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(175497,4880,'section_three_section_three_three_title','Medical Diagnosis'),(175498,4880,'_section_three_section_three_three_title','field_6316fff5f7527'),(175499,4880,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175500,4880,'_section_three_section_three_three_content','field_63170010f7528'),(175501,4880,'section_three_section_three_four_icon','4690'),(175502,4880,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(175503,4880,'section_three_section_three_four_title','Clients: Who is buying what'),(175504,4880,'_section_three_section_three_four_title','field_631707992b1ca'),(175505,4880,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175506,4880,'_section_three_section_three_four_content','field_631707b42b1cb'),(175507,4880,'section_three_section_three_five_icon','4691'),(175508,4880,'_section_three_section_three_five_icon','field_631707e52b1cd'),(175509,4880,'section_three_section_three_five_title','User Behavior'),(175510,4880,'_section_three_section_three_five_title','field_631708002b1ce'),(175511,4880,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175512,4880,'_section_three_section_three_five_content','field_6317081c2b1cf'),(175513,4880,'section_three_section_three_six_icon','4692'),(175514,4880,'_section_three_section_three_six_icon','field_631708572b1d1'),(175515,4880,'section_three_section_three_six_title','BI: Automated Reporting'),(175516,4880,'_section_three_section_three_six_title','field_631708712b1d2'),(175517,4880,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175518,4880,'_section_three_section_three_six_content','field_6317088d2b1d3'),(175519,4880,'section_three_section_three_seven_icon','4693'),(175520,4880,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(175521,4880,'section_three_section_three_seven_title','Detecting Spam in Emails'),(175522,4880,'_section_three_section_three_seven_title','field_631708da2b1d6'),(175523,4880,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175524,4880,'_section_three_section_three_seven_content','field_631708f62b1d7'),(175525,4880,'section_three_section_three_eight_icon','4694'),(175526,4880,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(175527,4880,'section_three_section_three_eight_title','Analytics'),(175528,4880,'_section_three_section_three_eight_title','field_631709462b1da'),(175529,4880,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175530,4880,'_section_three_section_three_eight_content','field_6317095e2b1db'),(175531,4880,'section_three',''),(175532,4880,'_section_three','field_6316fcf4f751a'),(175533,4880,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(175534,4880,'_section_four_section_four_content','field_63170ac9aa9a2'),(175535,4880,'section_four_section_four_button_text','Book a consultation now'),(175536,4880,'_section_four_section_four_button_text','field_63170b08aa9a3'),(175537,4880,'section_four',''),(175538,4880,'_section_four','field_63170a81aa9a1'),(175539,4880,'section_five_section_five_title','We listen. We learn. We inform.'),(175540,4880,'_section_five_section_five_title','field_63170b8564fc2'),(175541,4880,'section_five_section_five_quote','“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”'),(175542,4880,'_section_five_section_five_quote','field_632013fd76a3e'),(175543,4880,'section_five_section_five_footer','forbes.com'),(175544,4880,'_section_five_section_five_footer','field_63170bad64fc4'),(175545,4880,'section_five',''),(175546,4880,'_section_five','field_63170b5f64fc1'),(175547,4880,'footer_title','We treat your business like our own.'),(175548,4880,'_footer_title','field_63170f4c8cc9a'),(175549,4880,'footer_button_text','Let\'s talk!'),(175550,4880,'_footer_button_text','field_63170f6f8cc9b'),(175551,4880,'top_title_1','CLOUD NATIVE SOLUTIONS'),(175552,4880,'_top_title_1','field_631ed55492adc'),(175553,4880,'top_title_page','CLOUD NATIVE SOLUTIONS'),(175554,4880,'_top_title_page','field_631ed55492adc'),(175555,4880,'section_one_section_one_image_mobile','4865'),(175556,4880,'_section_one_section_one_image_mobile','field_6321741c8e5ae'),(175557,4880,'section_two_section_two_tab_one_image_mobile','4827'),(175558,4880,'_section_two_section_two_tab_one_image_mobile','field_632174678e5af'),(175559,4880,'section_two_section_two_tab_three_image_mobile','4866'),(175560,4880,'_section_two_section_two_tab_three_image_mobile','field_632174798e5b0'),(175561,4881,'_wp_attached_file','2022/09/banner1.png'),(175562,4881,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:390;s:6:\"height\";i:155;s:4:\"file\";s:19:\"2022/09/banner1.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"banner1-300x119.png\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"banner1-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:{}}}'),(175563,4881,'_imagify_optimization_level','2'),(175564,4881,'_imagify_status','error'),(175565,4881,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(175566,4883,'_wp_attached_file','2022/09/banner1@3x.png'),(175567,4883,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:465;s:4:\"file\";s:22:\"2022/09/banner1@3x.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"banner1@3x-300x119.png\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"banner1@3x-1024x407.png\";s:5:\"width\";i:1024;s:6:\"height\";i:407;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"banner1@3x-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:\"banner1@3x-768x305.png\";s:5:\"width\";i:768;s:6:\"height\";i:305;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"feature\";a:4:{s:4:\"file\";s:22:\"banner1@3x-500x465.png\";s:5:\"width\";i:500;s:6:\"height\";i:465;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:{}}}'),(175568,4883,'_imagify_optimization_level','2'),(175569,4883,'_imagify_status','error'),(175570,4883,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(175571,4884,'top_title','Kubernetes Professional Services'),(175572,4884,'_top_title','field_6317168918e96'),(175573,4884,'top_description','CLOUD NATIVE SOLUTIONS'),(175574,4884,'_top_description','field_6317169e18e97'),(175575,4884,'section_one_section_one_breadcrumb','KCSP'),(175576,4884,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(175577,4884,'section_one_section_one_title','Kubernetes Certified Service Provider'),(175578,4884,'_section_one_section_one_title','field_6317172018e9a'),(175579,4884,'section_one_section_one_image','4775'),(175580,4884,'_section_one_section_one_image','field_63171ca018e9c'),(175581,4884,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.'),(175582,4884,'_section_one_section_one_content','field_6317174118e9b'),(175583,4884,'section_one_section_one_navigation_one','Cloud Native Applications'),(175584,4884,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(175585,4884,'section_one_section_one_navigation_two','Cloud Native DevOps'),(175586,4884,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(175587,4884,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(175588,4884,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(175589,4884,'section_one_section_one_button_text','Book a consultation now'),(175590,4884,'_section_one_section_one_button_text','field_63171dc918ea0'),(175591,4884,'section_one',''),(175592,4884,'_section_one','field_631716de18e98'),(175593,4884,'section_two_section_two_title','Our Services'),(175594,4884,'_section_two_section_two_title','field_63171e1457be9'),(175595,4884,'section_two_section_two_icon_one','4734'),(175596,4884,'_section_two_section_two_icon_one','field_63171e2c57bea'),(175597,4884,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(175598,4884,'_section_two_section_two_title_one','field_63171e5f57beb'),(175599,4884,'section_two_section_two_icon_two','4741'),(175600,4884,'_section_two_section_two_icon_two','field_63171e7357bec'),(175601,4884,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(175602,4884,'_section_two_section_two_title_two','field_63171ea157bee'),(175603,4884,'section_two_section_two_icon_three','4736'),(175604,4884,'_section_two_section_two_icon_three','field_63171e8557bed'),(175605,4884,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(175606,4884,'_section_two_section_two_title_three','field_63171ec257bef'),(175607,4884,'section_two_section_two_icon_four','4738'),(175608,4884,'_section_two_section_two_icon_four','field_63171ee257bf0'),(175609,4884,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(175610,4884,'_section_two_section_two_title_four','field_63171ef757bf1'),(175611,4884,'section_two_section_two_icon_five','4744'),(175612,4884,'_section_two_section_two_icon_five','field_63171f2857bf3'),(175613,4884,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(175614,4884,'_section_two_section_two_title_five','field_63171f3957bf4'),(175615,4884,'section_two_section_two_icon_six','4746'),(175616,4884,'_section_two_section_two_icon_six','field_63171f5057bf5'),(175617,4884,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(175618,4884,'_section_two_section_two_title_six','field_63171f6657bf6'),(175619,4884,'section_two_section_two_icon_seven','4748'),(175620,4884,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(175621,4884,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(175622,4884,'_section_two_section_two_title_seven','field_63171f9757bf8'),(175623,4884,'section_two_section_two_icon_eight','4750'),(175624,4884,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(175625,4884,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(175626,4884,'_section_two_section_two_title_eight','field_63171fc057bfa'),(175627,4884,'section_two',''),(175628,4884,'_section_two','field_63171dfb57be8'),(175629,4884,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(175630,4884,'_section_three_section_three_breadcrumb','field_631723036988b'),(175631,4884,'section_three_section_three_title','Plan Your Next Kubernetes Project with Translucent'),(175632,4884,'_section_three_section_three_title','field_631723176988c'),(175633,4884,'section_three_section_three_image','4779'),(175634,4884,'_section_three_section_three_image','field_631723ac6988e'),(175635,4884,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(175636,4884,'_section_three_section_three_content','field_631723906988d'),(175637,4884,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(175638,4884,'_section_three_section_three_footer','field_631723c36988f'),(175639,4884,'section_three_section_three_button_text','Book a consultation now'),(175640,4884,'_section_three_section_three_button_text','field_631723d769890'),(175641,4884,'section_three',''),(175642,4884,'_section_three','field_631722b96988a'),(175643,4884,'section_four_section_four_breadcrumb','KUBERNETES CONSULTING'),(175644,4884,'_section_four_section_four_breadcrumb','field_6317271523757'),(175645,4884,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(175646,4884,'_section_four_section_four_title','field_6317271523758'),(175647,4884,'section_four_section_four_image','4776'),(175648,4884,'_section_four_section_four_image','field_6317271523759'),(175649,4884,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(175650,4884,'_section_four_section_four_content','field_631727152375a'),(175651,4884,'section_four_section_four_footer','Build - Rebuild - Replatform'),(175652,4884,'_section_four_section_four_footer','field_631727152375b'),(175653,4884,'section_four',''),(175654,4884,'_section_four','field_6317271523756'),(175655,4884,'section_five_section_five_breadcrumb','SUPPORT AND MAINTENANCE'),(175656,4884,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(175657,4884,'section_five_section_five_title','24/7 support and maintenancewith our site reliability engineering services'),(175658,4884,'_section_five_section_five_title','field_631727bbd69dd'),(175659,4884,'section_five_section_five_image','4777'),(175660,4884,'_section_five_section_five_image','field_631727bbd69de'),(175661,4884,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(175662,4884,'_section_five_section_five_content','field_631727bbd69df'),(175663,4884,'section_five_section_five_footer',''),(175664,4884,'_section_five_section_five_footer','field_631727bbd69e0'),(175665,4884,'section_five',''),(175666,4884,'_section_five','field_631727bbd69db'),(175667,4884,'footer_title','We treat your business like our own.'),(175668,4884,'_footer_title','field_631729e2753c6'),(175669,4884,'footer_button_text','Let\'s talk!'),(175670,4884,'_footer_button_text','field_63172a06753c7'),(175671,4884,'section_five_section_five_icon_one','4752'),(175672,4884,'_section_five_section_five_icon_one','field_631727bbd69e0'),(175673,4884,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(175674,4884,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(175675,4884,'section_five_section_five_icon_two','4754'),(175676,4884,'_section_five_section_five_icon_two','field_631ef504912c5'),(175677,4884,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(175678,4884,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(175679,4884,'section_five_section_five_icon_three','4756'),(175680,4884,'_section_five_section_five_icon_three','field_631ef510912c6'),(175681,4884,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(175682,4884,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(175683,4884,'section_five_section_five_icon_four','4758'),(175684,4884,'_section_five_section_five_icon_four','field_631ef51c912c7'),(175685,4884,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(175686,4884,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(175687,4882,'_edit_lock','1663318507:21'),(175688,4884,'section_one_section_one_image_mobile','4820'),(175689,4884,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(175690,4884,'section_three_section_three_image_mobile','4821'),(175691,4884,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(175692,4884,'section_four_section_four_image_mobile','4823'),(175693,4884,'_section_four_section_four_image_mobile','field_632155def8a3f'),(175694,4884,'section_five_section_five_image_mobile','4824'),(175695,4884,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(175696,4884,'top_background_desktop','4883'),(175697,4884,'_top_background_desktop','field_6323eda2d6f18'),(175698,4884,'top_background_mobile','4881'),(175699,4884,'_top_background_mobile','field_6323edc1d6f19'),(175700,4879,'original-file','2022/09/bg-ml-1-updraft-pre-smush-original.png'),(175701,4879,'smush-complete','1'),(175702,4879,'smush-info','The file was compressed from 20.61 KB to 9.07 KB saving 55.98 percent using WP-Optimize'),(175703,4879,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:21103;s:12:\"smushed-size\";i:9289;s:15:\"savings-percent\";d:55.98;s:10:\"sizes-info\";a:3:{s:4:\"full\";a:2:{s:8:\"original\";i:21103;s:10:\"compressed\";i:9289;}s:6:\"medium\";a:2:{s:8:\"original\";i:12463;s:10:\"compressed\";i:6709;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:10002;s:10:\"compressed\";i:5447;}}}'),(175704,4881,'original-file','2022/09/banner1-updraft-pre-smush-original.png'),(175705,4881,'smush-complete','1'),(175706,4881,'smush-info','The file was compressed from 6.46 KB to 6.46 KB saving 0 percent using WP-Optimize'),(175707,4881,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:6612;s:12:\"smushed-size\";i:6612;s:15:\"savings-percent\";d:0;s:10:\"sizes-info\";a:3:{s:4:\"full\";a:2:{s:8:\"original\";i:6612;s:10:\"compressed\";i:6612;}s:6:\"medium\";a:2:{s:8:\"original\";i:19531;s:10:\"compressed\";i:10555;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:14932;s:10:\"compressed\";i:8160;}}}'),(175708,4883,'original-file','2022/09/banner1@3x-updraft-pre-smush-original.png'),(175709,4883,'smush-info','The file was compressed from 287.16 KB to 141.91 KB saving 50.58 percent using WP-Optimize'),(175710,4883,'smush-complete','1'),(175711,4883,'smush-stats','a:5:{s:12:\"smushed-with\";s:11:\"re-smush-it\";s:13:\"original-size\";i:294055;s:12:\"smushed-size\";i:145315;s:15:\"savings-percent\";d:50.58;s:10:\"sizes-info\";a:5:{s:4:\"full\";a:2:{s:8:\"original\";i:294055;s:10:\"compressed\";i:145315;}s:5:\"large\";a:2:{s:8:\"original\";i:193231;s:10:\"compressed\";i:113400;}s:9:\"thumbnail\";a:2:{s:8:\"original\";i:14843;s:10:\"compressed\";i:8858;}s:12:\"medium_large\";a:2:{s:8:\"original\";i:111790;s:10:\"compressed\";i:65315;}s:7:\"feature\";a:2:{s:8:\"original\";i:147574;s:10:\"compressed\";i:81609;}}}'),(175717,4886,'top-image',''),(175718,4886,'_top-image','field_5c488d805f5d4'),(175719,4886,'top_title',''),(175720,4886,'_top_title','field_5edfac92f4226'),(175721,4886,'top-text',''),(175722,4886,'_top-text','field_5c488e575f5d5'),(175723,4886,'features',''),(175724,4886,'_features','field_5c4890bc3ae1f'),(175725,4886,'about-title',''),(175726,4886,'_about-title','field_5c488e7a5f5d6'),(175727,4886,'about-text',''),(175728,4886,'_about-text','field_5c488e945f5d7'),(175729,4886,'problems',''),(175730,4886,'_problems','field_5c488ec75f5d8'),(175731,4886,'solutions',''),(175732,4886,'_solutions','field_5c488ed95f5d9'),(175733,4886,'difference',''),(175734,4886,'_difference','field_5c488eed5f5da'),(175735,4886,'panel',''),(175736,4886,'_panel','field_5c488f195f5db'),(175737,4886,'more-text',''),(175738,4886,'_more-text','field_5c488f8f5f5df'),(175739,4886,'phrase',''),(175740,4886,'_phrase','field_5c488faf5f5e0'),(175741,4886,'author',''),(175742,4886,'_author','field_5c488fba5f5e1'),(175743,4886,'top_description','Machine Learning'),(175744,4886,'_top_description','field_63170e008cc99'),(175745,4886,'top_background_desktop','4873'),(175746,4886,'_top_background_desktop','field_631eb1728b709'),(175747,4886,'top_background_mobile','4879'),(175748,4886,'_top_background_mobile','field_631eb1988b70a'),(175749,4886,'section_one_section_one_breadcrumb','THE FUTURE'),(175750,4886,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(175751,4886,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(175752,4886,'_section_one_section_one_title','field_6316f2764091e'),(175753,4886,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(175754,4886,'_section_one_section_one_content','field_6316f2934091f'),(175755,4886,'section_one_section_one_image','4679'),(175756,4886,'_section_one_section_one_image','field_6316f2ab40920'),(175757,4886,'section_one_section_one_button_text','Book a consultation now'),(175758,4886,'_section_one_section_one_button_text','field_6316f2ca40921'),(175759,4886,'section_one',''),(175760,4886,'_section_one','field_6316f7ba1cd27'),(175761,4886,'section_two_section_two_button_text','Book a consultation now'),(175762,4886,'_section_two_section_two_button_text','field_6316fe1ff751b'),(175763,4886,'section_two_section_two_tab_one_header_title','Problems'),(175764,4886,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(175765,4886,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(175766,4886,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(175767,4886,'section_two_section_two_tab_one_image','4680'),(175768,4886,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(175769,4886,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(175770,4886,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(175771,4886,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money?

\r\n

How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(175772,4886,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(175773,4886,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(175774,4886,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(175775,4886,'section_two_section_two_tab_two_header_title','Solutions'),(175776,4886,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(175777,4886,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(175778,4886,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(175779,4886,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(175780,4886,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(175781,4886,'section_two_section_two_tab_two_content_icon_1','4683'),(175782,4886,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(175783,4886,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(175784,4886,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(175785,4886,'section_two_section_two_tab_two_content_icon_2','4684'),(175786,4886,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(175787,4886,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(175788,4886,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(175789,4886,'section_two_section_two_tab_two_content_icon_3','4685'),(175790,4886,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(175791,4886,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(175792,4886,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(175793,4886,'section_two_section_two_tab_two_content_icon_4','4686'),(175794,4886,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(175795,4886,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(175796,4886,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(175797,4886,'section_two_section_two_tab_three_header_title','Difference'),(175798,4886,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(175799,4886,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(175800,4886,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(175801,4886,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(175802,4886,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(175803,4886,'section_two_section_two_tab_three_image','4705'),(175804,4886,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(175805,4886,'section_two',''),(175806,4886,'_section_two','field_6316fa2531589'),(175807,4886,'section_three_section_three_title','Trusted Relationships'),(175808,4886,'_section_three_section_three_title','field_6316febdf751c'),(175809,4886,'section_three_section_three_one_icon','4687'),(175810,4886,'_section_three_section_three_one_icon','field_6316fefff751e'),(175811,4886,'section_three_section_three_one_title','Data Entry Automation'),(175812,4886,'_section_three_section_three_one_title','field_6316ff1cf751f'),(175813,4886,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175814,4886,'_section_three_section_three_one_content','field_6316ff29f7520'),(175815,4886,'section_three_section_three_two_icon','4688'),(175816,4886,'_section_three_section_three_two_icon','field_6316ff77f7523'),(175817,4886,'section_three_section_three_two_title','Product Recommendation'),(175818,4886,'_section_three_section_three_two_title','field_6316ff90f7524'),(175819,4886,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175820,4886,'_section_three_section_three_two_content','field_6316ff5df7522'),(175821,4886,'section_three_section_three_three_icon','4689'),(175822,4886,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(175823,4886,'section_three_section_three_three_title','Medical Diagnosis'),(175824,4886,'_section_three_section_three_three_title','field_6316fff5f7527'),(175825,4886,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175826,4886,'_section_three_section_three_three_content','field_63170010f7528'),(175827,4886,'section_three_section_three_four_icon','4690'),(175828,4886,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(175829,4886,'section_three_section_three_four_title','Clients: Who is buying what'),(175830,4886,'_section_three_section_three_four_title','field_631707992b1ca'),(175831,4886,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175832,4886,'_section_three_section_three_four_content','field_631707b42b1cb'),(175833,4886,'section_three_section_three_five_icon','4691'),(175834,4886,'_section_three_section_three_five_icon','field_631707e52b1cd'),(175835,4886,'section_three_section_three_five_title','User Behavior'),(175836,4886,'_section_three_section_three_five_title','field_631708002b1ce'),(175837,4886,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175838,4886,'_section_three_section_three_five_content','field_6317081c2b1cf'),(175839,4886,'section_three_section_three_six_icon','4692'),(175840,4886,'_section_three_section_three_six_icon','field_631708572b1d1'),(175841,4886,'section_three_section_three_six_title','BI: Automated Reporting'),(175842,4886,'_section_three_section_three_six_title','field_631708712b1d2'),(175843,4886,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175844,4886,'_section_three_section_three_six_content','field_6317088d2b1d3'),(175845,4886,'section_three_section_three_seven_icon','4693'),(175846,4886,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(175847,4886,'section_three_section_three_seven_title','Detecting Spam in Emails'),(175848,4886,'_section_three_section_three_seven_title','field_631708da2b1d6'),(175849,4886,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175850,4886,'_section_three_section_three_seven_content','field_631708f62b1d7'),(175851,4886,'section_three_section_three_eight_icon','4694'),(175852,4886,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(175853,4886,'section_three_section_three_eight_title','Analytics'),(175854,4886,'_section_three_section_three_eight_title','field_631709462b1da'),(175855,4886,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(175856,4886,'_section_three_section_three_eight_content','field_6317095e2b1db'),(175857,4886,'section_three',''),(175858,4886,'_section_three','field_6316fcf4f751a'),(175859,4886,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(175860,4886,'_section_four_section_four_content','field_63170ac9aa9a2'),(175861,4886,'section_four_section_four_button_text','Book a consultation now'),(175862,4886,'_section_four_section_four_button_text','field_63170b08aa9a3'),(175863,4886,'section_four',''),(175864,4886,'_section_four','field_63170a81aa9a1'),(175865,4886,'section_five_section_five_title','We listen. We learn. We inform.'),(175866,4886,'_section_five_section_five_title','field_63170b8564fc2'),(175867,4886,'section_five_section_five_quote','

“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”

'),(175868,4886,'_section_five_section_five_quote','field_632013fd76a3e'),(175869,4886,'section_five_section_five_footer','forbes.com'),(175870,4886,'_section_five_section_five_footer','field_63170bad64fc4'),(175871,4886,'section_five',''),(175872,4886,'_section_five','field_63170b5f64fc1'),(175873,4886,'footer_title','We treat your business like our own.'),(175874,4886,'_footer_title','field_63170f4c8cc9a'),(175875,4886,'footer_button_text','Let\'s talk!'),(175876,4886,'_footer_button_text','field_63170f6f8cc9b'),(175877,4886,'top_title_1','CLOUD NATIVE SOLUTIONS'),(175878,4886,'_top_title_1','field_631ed55492adc'),(175879,4886,'top_title_page','CLOUD NATIVE SOLUTIONS'),(175880,4886,'_top_title_page','field_631ed55492adc'),(175881,4886,'section_one_section_one_image_mobile','4865'),(175882,4886,'_section_one_section_one_image_mobile','field_6321741c8e5ae'),(175883,4886,'section_two_section_two_tab_one_image_mobile','4827'),(175884,4886,'_section_two_section_two_tab_one_image_mobile','field_632174678e5af'),(175885,4886,'section_two_section_two_tab_three_image_mobile','4866'),(175886,4886,'_section_two_section_two_tab_three_image_mobile','field_632174798e5b0'),(175887,4885,'smush-info','Failed with error code invalid_file_path - The linked attachment ID does not have a valid file path'),(175888,4885,'smush-complete',''),(175889,4887,'top_title','Kubernetes Professional Services'),(175890,4887,'_top_title','field_6317168918e96'),(175891,4887,'top_description','CLOUD NATIVE SOLUTIONS'),(175892,4887,'_top_description','field_6317169e18e97'),(175893,4887,'section_one_section_one_breadcrumb','KCSP'),(175894,4887,'_section_one_section_one_breadcrumb','field_631716fa18e99'),(175895,4887,'section_one_section_one_title','Kubernetes Certified Service Provider'),(175896,4887,'_section_one_section_one_title','field_6317172018e9a'),(175897,4887,'section_one_section_one_image','4775'),(175898,4887,'_section_one_section_one_image','field_63171ca018e9c'),(175899,4887,'section_one_section_one_content','Let us help you unlock developer productivity and operational efficiency. Our cloud native teams are experts in Docker, Kubernetes, microservices and distributed systems. We excel in building, deploying, and scaling modern applications in the cloud. We offer cost-effective consulting and implementation focused on your ROI.'),(175900,4887,'_section_one_section_one_content','field_6317174118e9b'),(175901,4887,'section_one_section_one_navigation_one','Cloud Native Applications'),(175902,4887,'_section_one_section_one_navigation_one','field_63171cdc18e9d'),(175903,4887,'section_one_section_one_navigation_two','Cloud Native DevOps'),(175904,4887,'_section_one_section_one_navigation_two','field_63171cff18e9e'),(175905,4887,'section_one_section_one_navigation_three','Cloud Native Machine Learning'),(175906,4887,'_section_one_section_one_navigation_three','field_63171d0e18e9f'),(175907,4887,'section_one_section_one_button_text','Book a consultation now'),(175908,4887,'_section_one_section_one_button_text','field_63171dc918ea0'),(175909,4887,'section_one',''),(175910,4887,'_section_one','field_631716de18e98'),(175911,4887,'section_two_section_two_title','Our Services'),(175912,4887,'_section_two_section_two_title','field_63171e1457be9'),(175913,4887,'section_two_section_two_icon_one','4734'),(175914,4887,'_section_two_section_two_icon_one','field_63171e2c57bea'),(175915,4887,'section_two_section_two_title_one','Cloud Native DevOps with Kubernetes and Serverless'),(175916,4887,'_section_two_section_two_title_one','field_63171e5f57beb'),(175917,4887,'section_two_section_two_icon_two','4741'),(175918,4887,'_section_two_section_two_icon_two','field_63171e7357bec'),(175919,4887,'section_two_section_two_title_two','Cloud Native Transformation and Strategy'),(175920,4887,'_section_two_section_two_title_two','field_63171ea157bee'),(175921,4887,'section_two_section_two_icon_three','4736'),(175922,4887,'_section_two_section_two_icon_three','field_63171e8557bed'),(175923,4887,'section_two_section_two_title_three','Continuous Security - DevSecOps'),(175924,4887,'_section_two_section_two_title_three','field_63171ec257bef'),(175925,4887,'section_two_section_two_icon_four','4738'),(175926,4887,'_section_two_section_two_icon_four','field_63171ee257bf0'),(175927,4887,'section_two_section_two_title_four','Multi-Cloud Deployment Strategy'),(175928,4887,'_section_two_section_two_title_four','field_63171ef757bf1'),(175929,4887,'section_two_section_two_icon_five','4744'),(175930,4887,'_section_two_section_two_icon_five','field_63171f2857bf3'),(175931,4887,'section_two_section_two_title_five','Design, Build and Monitor Microservices Applications'),(175932,4887,'_section_two_section_two_title_five','field_63171f3957bf4'),(175933,4887,'section_two_section_two_icon_six','4746'),(175934,4887,'_section_two_section_two_icon_six','field_63171f5057bf5'),(175935,4887,'section_two_section_two_title_six','Application Modernization - Replatforming with Kubernetes'),(175936,4887,'_section_two_section_two_title_six','field_63171f6657bf6'),(175937,4887,'section_two_section_two_icon_seven','4748'),(175938,4887,'_section_two_section_two_icon_seven','field_63171f7857bf7'),(175939,4887,'section_two_section_two_title_seven','Continuous Delivery and Automation - Faster Release Cycle'),(175940,4887,'_section_two_section_two_title_seven','field_63171f9757bf8'),(175941,4887,'section_two_section_two_icon_eight','4750'),(175942,4887,'_section_two_section_two_icon_eight','field_63171fab57bf9'),(175943,4887,'section_two_section_two_title_eight','Production-Grade Kubernetes Support'),(175944,4887,'_section_two_section_two_title_eight','field_63171fc057bfa'),(175945,4887,'section_two',''),(175946,4887,'_section_two','field_63171dfb57be8'),(175947,4887,'section_three_section_three_breadcrumb','LEARN, INFORM, PLAN'),(175948,4887,'_section_three_section_three_breadcrumb','field_631723036988b'),(175949,4887,'section_three_section_three_title','Plan Your Next Kubernetes Project with Translucent'),(175950,4887,'_section_three_section_three_title','field_631723176988c'),(175951,4887,'section_three_section_three_image','4779'),(175952,4887,'_section_three_section_three_image','field_631723ac6988e'),(175953,4887,'section_three_section_three_content','Translucent will help you create your roadmap to deploy and pilot Kubernetes to suit your business needs and system requirements. There are many options when it comes to building and running scalable applications in modern and dynamic environments, such as public, private, and hybrid clouds. We’ll help you choose the best option for your company.'),(175954,4887,'_section_three_section_three_content','field_631723906988d'),(175955,4887,'section_three_section_three_footer','We Listen - We Learn - We Inform - We Plan'),(175956,4887,'_section_three_section_three_footer','field_631723c36988f'),(175957,4887,'section_three_section_three_button_text','Book a consultation now'),(175958,4887,'_section_three_section_three_button_text','field_631723d769890'),(175959,4887,'section_three',''),(175960,4887,'_section_three','field_631722b96988a'),(175961,4887,'section_four_section_four_breadcrumb','KUBERNETES CONSULTING'),(175962,4887,'_section_four_section_four_breadcrumb','field_6317271523757'),(175963,4887,'section_four_section_four_title','Driving Digital Transformation with Containers and Kubernetes'),(175964,4887,'_section_four_section_four_title','field_6317271523758'),(175965,4887,'section_four_section_four_image','4776'),(175966,4887,'_section_four_section_four_image','field_6317271523759'),(175967,4887,'section_four_section_four_content','Build, rebuild, or replatform. Together, we can architect, migrate, and build inhouse competency to bring your stack into production.'),(175968,4887,'_section_four_section_four_content','field_631727152375a'),(175969,4887,'section_four_section_four_footer','Build - Rebuild - Replatform'),(175970,4887,'_section_four_section_four_footer','field_631727152375b'),(175971,4887,'section_four',''),(175972,4887,'_section_four','field_6317271523756'),(175973,4887,'section_five_section_five_breadcrumb','SUPPORT AND MAINTENANCE'),(175974,4887,'_section_five_section_five_breadcrumb','field_631727bbd69dc'),(175975,4887,'section_five_section_five_title','24/7 support and maintenancewith our site reliability engineering services'),(175976,4887,'_section_five_section_five_title','field_631727bbd69dd'),(175977,4887,'section_five_section_five_image','4777'),(175978,4887,'_section_five_section_five_image','field_631727bbd69de'),(175979,4887,'section_five_section_five_content','From knowledge transfer to support, the Translucent team is here with you every step of the way. We use TEKProcess to make sure our knowledge is your knowledge – because the best teams are the ones that can support themselves. With the support of Site Reliability Engineering (SRE) services, we also make sure to cover SLAs, SLOs and SLIs.'),(175980,4887,'_section_five_section_five_content','field_631727bbd69df'),(175981,4887,'section_five_section_five_footer',''),(175982,4887,'_section_five_section_five_footer','field_631727bbd69e0'),(175983,4887,'section_five',''),(175984,4887,'_section_five','field_631727bbd69db'),(175985,4887,'footer_title','We treat your business like our own.'),(175986,4887,'_footer_title','field_631729e2753c6'),(175987,4887,'footer_button_text','Let\'s talk!'),(175988,4887,'_footer_button_text','field_63172a06753c7'),(175989,4887,'section_five_section_five_icon_one','4752'),(175990,4887,'_section_five_section_five_icon_one','field_631727bbd69e0'),(175991,4887,'section_five_section_five_icon_text_one','SRE - Site Reliability Engineering'),(175992,4887,'_section_five_section_five_icon_text_one','field_631ef52f912c8'),(175993,4887,'section_five_section_five_icon_two','4754'),(175994,4887,'_section_five_section_five_icon_two','field_631ef504912c5'),(175995,4887,'section_five_section_five_icon_text_two','SLA - Service Level Agreements'),(175996,4887,'_section_five_section_five_icon_text_two','field_631ef547912c9'),(175997,4887,'section_five_section_five_icon_three','4756'),(175998,4887,'_section_five_section_five_icon_three','field_631ef510912c6'),(175999,4887,'section_five_section_five_icon_text_three','SLO - Service Level Objectives'),(176000,4887,'_section_five_section_five_icon_text_three','field_631ef57b912ca'),(176001,4887,'section_five_section_five_icon_four','4758'),(176002,4887,'_section_five_section_five_icon_four','field_631ef51c912c7'),(176003,4887,'section_five_section_five_icon_text_four','SLI - Service Level Indicator'),(176004,4887,'_section_five_section_five_icon_text_four','field_631ef58e912cb'),(176005,4887,'section_one_section_one_image_mobile','4820'),(176006,4887,'_section_one_section_one_image_mobile','field_63215545f8a3d'),(176007,4887,'section_three_section_three_image_mobile','4821'),(176008,4887,'_section_three_section_three_image_mobile','field_632155c6f8a3e'),(176009,4887,'section_four_section_four_image_mobile','4823'),(176010,4887,'_section_four_section_four_image_mobile','field_632155def8a3f'),(176011,4887,'section_five_section_five_image_mobile','4824'),(176012,4887,'_section_five_section_five_image_mobile','field_632155f4f8a40'),(176013,4887,'top_background_desktop','4883'),(176014,4887,'_top_background_desktop','field_6323eda2d6f18'),(176015,4887,'top_background_mobile','4881'),(176016,4887,'_top_background_mobile','field_6323edc1d6f19'),(176017,4888,'top-image',''),(176018,4888,'_top-image','field_5c488d805f5d4'),(176019,4888,'top_title',''),(176020,4888,'_top_title','field_5edfac92f4226'),(176021,4888,'top-text',''),(176022,4888,'_top-text','field_5c488e575f5d5'),(176023,4888,'features',''),(176024,4888,'_features','field_5c4890bc3ae1f'),(176025,4888,'about-title',''),(176026,4888,'_about-title','field_5c488e7a5f5d6'),(176027,4888,'about-text',''),(176028,4888,'_about-text','field_5c488e945f5d7'),(176029,4888,'problems',''),(176030,4888,'_problems','field_5c488ec75f5d8'),(176031,4888,'solutions',''),(176032,4888,'_solutions','field_5c488ed95f5d9'),(176033,4888,'difference',''),(176034,4888,'_difference','field_5c488eed5f5da'),(176035,4888,'panel',''),(176036,4888,'_panel','field_5c488f195f5db'),(176037,4888,'more-text',''),(176038,4888,'_more-text','field_5c488f8f5f5df'),(176039,4888,'phrase',''),(176040,4888,'_phrase','field_5c488faf5f5e0'),(176041,4888,'author',''),(176042,4888,'_author','field_5c488fba5f5e1'),(176043,4888,'top_description','Machine Learning'),(176044,4888,'_top_description','field_63170e008cc99'),(176045,4888,'top_background_desktop','4873'),(176046,4888,'_top_background_desktop','field_631eb1728b709'),(176047,4888,'top_background_mobile','4879'),(176048,4888,'_top_background_mobile','field_631eb1988b70a'),(176049,4888,'section_one_section_one_breadcrumb','THE FUTURE'),(176050,4888,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(176051,4888,'section_one_section_one_title','How intelligent is your\r\nbusiness?'),(176052,4888,'_section_one_section_one_title','field_6316f2764091e'),(176053,4888,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(176054,4888,'_section_one_section_one_content','field_6316f2934091f'),(176055,4888,'section_one_section_one_image','4679'),(176056,4888,'_section_one_section_one_image','field_6316f2ab40920'),(176057,4888,'section_one_section_one_button_text','Book a consultation now'),(176058,4888,'_section_one_section_one_button_text','field_6316f2ca40921'),(176059,4888,'section_one',''),(176060,4888,'_section_one','field_6316f7ba1cd27'),(176061,4888,'section_two_section_two_button_text','Book a consultation now'),(176062,4888,'_section_two_section_two_button_text','field_6316fe1ff751b'),(176063,4888,'section_two_section_two_tab_one_header_title','Problems'),(176064,4888,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(176065,4888,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(176066,4888,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(176067,4888,'section_two_section_two_tab_one_image','4680'),(176068,4888,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(176069,4888,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(176070,4888,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(176071,4888,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money?

\r\n

How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(176072,4888,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(176073,4888,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(176074,4888,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(176075,4888,'section_two_section_two_tab_two_header_title','Solutions'),(176076,4888,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(176077,4888,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(176078,4888,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(176079,4888,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(176080,4888,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(176081,4888,'section_two_section_two_tab_two_content_icon_1','4683'),(176082,4888,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(176083,4888,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(176084,4888,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(176085,4888,'section_two_section_two_tab_two_content_icon_2','4684'),(176086,4888,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(176087,4888,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(176088,4888,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(176089,4888,'section_two_section_two_tab_two_content_icon_3','4685'),(176090,4888,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(176091,4888,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(176092,4888,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(176093,4888,'section_two_section_two_tab_two_content_icon_4','4686'),(176094,4888,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(176095,4888,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(176096,4888,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(176097,4888,'section_two_section_two_tab_three_header_title','Difference'),(176098,4888,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(176099,4888,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(176100,4888,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(176101,4888,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(176102,4888,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(176103,4888,'section_two_section_two_tab_three_image','4705'),(176104,4888,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(176105,4888,'section_two',''),(176106,4888,'_section_two','field_6316fa2531589'),(176107,4888,'section_three_section_three_title','Trusted Relationships'),(176108,4888,'_section_three_section_three_title','field_6316febdf751c'),(176109,4888,'section_three_section_three_one_icon','4687'),(176110,4888,'_section_three_section_three_one_icon','field_6316fefff751e'),(176111,4888,'section_three_section_three_one_title','Data Entry Automation'),(176112,4888,'_section_three_section_three_one_title','field_6316ff1cf751f'),(176113,4888,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(176114,4888,'_section_three_section_three_one_content','field_6316ff29f7520'),(176115,4888,'section_three_section_three_two_icon','4688'),(176116,4888,'_section_three_section_three_two_icon','field_6316ff77f7523'),(176117,4888,'section_three_section_three_two_title','Product Recommendation'),(176118,4888,'_section_three_section_three_two_title','field_6316ff90f7524'),(176119,4888,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(176120,4888,'_section_three_section_three_two_content','field_6316ff5df7522'),(176121,4888,'section_three_section_three_three_icon','4689'),(176122,4888,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(176123,4888,'section_three_section_three_three_title','Medical Diagnosis'),(176124,4888,'_section_three_section_three_three_title','field_6316fff5f7527'),(176125,4888,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(176126,4888,'_section_three_section_three_three_content','field_63170010f7528'),(176127,4888,'section_three_section_three_four_icon','4690'),(176128,4888,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(176129,4888,'section_three_section_three_four_title','Clients: Who is buying what'),(176130,4888,'_section_three_section_three_four_title','field_631707992b1ca'),(176131,4888,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(176132,4888,'_section_three_section_three_four_content','field_631707b42b1cb'),(176133,4888,'section_three_section_three_five_icon','4691'),(176134,4888,'_section_three_section_three_five_icon','field_631707e52b1cd'),(176135,4888,'section_three_section_three_five_title','User Behavior'),(176136,4888,'_section_three_section_three_five_title','field_631708002b1ce'),(176137,4888,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(176138,4888,'_section_three_section_three_five_content','field_6317081c2b1cf'),(176139,4888,'section_three_section_three_six_icon','4692'),(176140,4888,'_section_three_section_three_six_icon','field_631708572b1d1'),(176141,4888,'section_three_section_three_six_title','BI: Automated Reporting'),(176142,4888,'_section_three_section_three_six_title','field_631708712b1d2'),(176143,4888,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(176144,4888,'_section_three_section_three_six_content','field_6317088d2b1d3'),(176145,4888,'section_three_section_three_seven_icon','4693'),(176146,4888,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(176147,4888,'section_three_section_three_seven_title','Detecting Spam in Emails'),(176148,4888,'_section_three_section_three_seven_title','field_631708da2b1d6'),(176149,4888,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(176150,4888,'_section_three_section_three_seven_content','field_631708f62b1d7'),(176151,4888,'section_three_section_three_eight_icon','4694'),(176152,4888,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(176153,4888,'section_three_section_three_eight_title','Analytics'),(176154,4888,'_section_three_section_three_eight_title','field_631709462b1da'),(176155,4888,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(176156,4888,'_section_three_section_three_eight_content','field_6317095e2b1db'),(176157,4888,'section_three',''),(176158,4888,'_section_three','field_6316fcf4f751a'),(176159,4888,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(176160,4888,'_section_four_section_four_content','field_63170ac9aa9a2'),(176161,4888,'section_four_section_four_button_text','Book a consultation now'),(176162,4888,'_section_four_section_four_button_text','field_63170b08aa9a3'),(176163,4888,'section_four',''),(176164,4888,'_section_four','field_63170a81aa9a1'),(176165,4888,'section_five_section_five_title','We listen. We learn. We inform.'),(176166,4888,'_section_five_section_five_title','field_63170b8564fc2'),(176167,4888,'section_five_section_five_quote','

“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”

'),(176168,4888,'_section_five_section_five_quote','field_632013fd76a3e'),(176169,4888,'section_five_section_five_footer','forbes.com'),(176170,4888,'_section_five_section_five_footer','field_63170bad64fc4'),(176171,4888,'section_five',''),(176172,4888,'_section_five','field_63170b5f64fc1'),(176173,4888,'footer_title','We treat your business like our own.'),(176174,4888,'_footer_title','field_63170f4c8cc9a'),(176175,4888,'footer_button_text','Let\'s talk!'),(176176,4888,'_footer_button_text','field_63170f6f8cc9b'),(176177,4888,'top_title_1','CLOUD NATIVE SOLUTIONS'),(176178,4888,'_top_title_1','field_631ed55492adc'),(176179,4888,'top_title_page','CLOUD NATIVE SOLUTIONS'),(176180,4888,'_top_title_page','field_631ed55492adc'),(176181,4888,'section_one_section_one_image_mobile','4865'),(176182,4888,'_section_one_section_one_image_mobile','field_6321741c8e5ae'),(176183,4888,'section_two_section_two_tab_one_image_mobile','4827'),(176184,4888,'_section_two_section_two_tab_one_image_mobile','field_632174678e5af'),(176185,4888,'section_two_section_two_tab_three_image_mobile','4866'),(176186,4888,'_section_two_section_two_tab_three_image_mobile','field_632174798e5b0'),(176187,4889,'top-image',''),(176188,4889,'_top-image','field_5c488d805f5d4'),(176189,4889,'top_title',''),(176190,4889,'_top_title','field_5edfac92f4226'),(176191,4889,'top-text',''),(176192,4889,'_top-text','field_5c488e575f5d5'),(176193,4889,'features',''),(176194,4889,'_features','field_5c4890bc3ae1f'),(176195,4889,'about-title',''),(176196,4889,'_about-title','field_5c488e7a5f5d6'),(176197,4889,'about-text',''),(176198,4889,'_about-text','field_5c488e945f5d7'),(176199,4889,'problems',''),(176200,4889,'_problems','field_5c488ec75f5d8'),(176201,4889,'solutions',''),(176202,4889,'_solutions','field_5c488ed95f5d9'),(176203,4889,'difference',''),(176204,4889,'_difference','field_5c488eed5f5da'),(176205,4889,'panel',''),(176206,4889,'_panel','field_5c488f195f5db'),(176207,4889,'more-text',''),(176208,4889,'_more-text','field_5c488f8f5f5df'),(176209,4889,'phrase',''),(176210,4889,'_phrase','field_5c488faf5f5e0'),(176211,4889,'author',''),(176212,4889,'_author','field_5c488fba5f5e1'),(176213,4889,'top_description','Machine Learning'),(176214,4889,'_top_description','field_63170e008cc99'),(176215,4889,'top_background_desktop','4873'),(176216,4889,'_top_background_desktop','field_631eb1728b709'),(176217,4889,'top_background_mobile','4879'),(176218,4889,'_top_background_mobile','field_631eb1988b70a'),(176219,4889,'section_one_section_one_breadcrumb','THE FUTURE'),(176220,4889,'_section_one_section_one_breadcrumb','field_6316f2214091d'),(176221,4889,'section_one_section_one_title','

How intelligent is your
\r\nbusiness?

'),(176222,4889,'_section_one_section_one_title','field_6316f2764091e'),(176223,4889,'section_one_section_one_content','

The future of business planning and client offerings is learning from what has happened in the past and what can happen in the future. If artificial intelligence is not already working for your company, you should know it is working for your competition!

'),(176224,4889,'_section_one_section_one_content','field_6316f2934091f'),(176225,4889,'section_one_section_one_image','4679'),(176226,4889,'_section_one_section_one_image','field_6316f2ab40920'),(176227,4889,'section_one_section_one_button_text','Book a consultation now'),(176228,4889,'_section_one_section_one_button_text','field_6316f2ca40921'),(176229,4889,'section_one',''),(176230,4889,'_section_one','field_6316f7ba1cd27'),(176231,4889,'section_two_section_two_button_text','Book a consultation now'),(176232,4889,'_section_two_section_two_button_text','field_6316fe1ff751b'),(176233,4889,'section_two_section_two_tab_one_header_title','Problems'),(176234,4889,'_section_two_section_two_tab_one_header_title','field_6316cdbb7a0e7'),(176235,4889,'section_two_section_two_tab_one_title','Is your company still using hand tools?'),(176236,4889,'_section_two_section_two_tab_one_title','field_6316cdd57a0e8'),(176237,4889,'section_two_section_two_tab_one_image','4680'),(176238,4889,'_section_two_section_two_tab_one_image','field_6316cecd7a0e9'),(176239,4889,'section_two_section_two_tab_one_description','Are you learning from your data and market conditions?'),(176240,4889,'_section_two_section_two_tab_one_description','field_6316cf9c4fa76'),(176241,4889,'section_two_section_two_tab_one_content','

Do you know where your business is making and losing money?

\r\n

How well do you know your customers? Buying patterns. Upsell opportunities. Falloff.

'),(176242,4889,'_section_two_section_two_tab_one_content','field_6316cfc04fa77'),(176243,4889,'section_two_section_two_tab_one_footer','

The Digital Transformation is the new Industrial Revolution.

'),(176244,4889,'_section_two_section_two_tab_one_footer','field_6316d0a74fa78'),(176245,4889,'section_two_section_two_tab_two_header_title','Solutions'),(176246,4889,'_section_two_section_two_tab_two_header_title','field_6316d0d81d1b0'),(176247,4889,'section_two_section_two_tab_two_title','Translucent Machine Learning Strategy'),(176248,4889,'_section_two_section_two_tab_two_title','field_6316d0fc1d1b1'),(176249,4889,'section_two_section_two_tab_two_description','Understanding the patterns of organizational success & giving you control over the numbers.'),(176250,4889,'_section_two_section_two_tab_two_description','field_6316d1081d1b2'),(176251,4889,'section_two_section_two_tab_two_content_icon_1','4683'),(176252,4889,'_section_two_section_two_tab_two_content_icon_1','field_6316d26076956'),(176253,4889,'section_two_section_two_tab_two_content_1','Learning from Data – understanding past & current experiences, to model your company’s future'),(176254,4889,'_section_two_section_two_tab_two_content_1','field_6316d2b77695a'),(176255,4889,'section_two_section_two_tab_two_content_icon_2','4684'),(176256,4889,'_section_two_section_two_tab_two_content_icon_2','field_6316d2a276957'),(176257,4889,'section_two_section_two_tab_two_content_2','Predictive Services – using key performance indicators to road map future possibilities'),(176258,4889,'_section_two_section_two_tab_two_content_2','field_6316d2d37695b'),(176259,4889,'section_two_section_two_tab_two_content_icon_3','4685'),(176260,4889,'_section_two_section_two_tab_two_content_icon_3','field_6316d2a676958'),(176261,4889,'section_two_section_two_tab_two_content_3','Analytics: Use your data to increase your revenues & purchasing power – in depth reporting'),(176262,4889,'_section_two_section_two_tab_two_content_3','field_6316d2da7695c'),(176263,4889,'section_two_section_two_tab_two_content_icon_4','4686'),(176264,4889,'_section_two_section_two_tab_two_content_icon_4','field_6316d2ab76959'),(176265,4889,'section_two_section_two_tab_two_content_4','Intelligent automation – enhancing improvements to operations, product recommendation, streamlining the sales process, fraud recognition, to identifying symptoms in a hospital patient'),(176266,4889,'_section_two_section_two_tab_two_content_4','field_6316d2df7695d'),(176267,4889,'section_two_section_two_tab_three_header_title','Difference'),(176268,4889,'_section_two_section_two_tab_three_header_title','field_6316d455c2ca8'),(176269,4889,'section_two_section_two_tab_three_title','Is your company still using hand tools?'),(176270,4889,'_section_two_section_two_tab_three_title','field_6316d46dc2ca9'),(176271,4889,'section_two_section_two_tab_three_content','

Pattern recognition pays! The same way that successful businesses have created habits and standards that create consistent results, Machine learning identifies patterns in operations and client behaviour. We will learn about your business, your operations, your customers, your employees and then create algorithms to understand patterns relevant to your company’s success.

\r\n

 

\r\n

Weave machine learning into your business systems meeting and exceeding industry standards and best practices. The ability to automate intelligence by department, exact need, and function in real time.

'),(176272,4889,'_section_two_section_two_tab_three_content','field_6316d4a7c2cab'),(176273,4889,'section_two_section_two_tab_three_image','4705'),(176274,4889,'_section_two_section_two_tab_three_image','field_6316d485c2caa'),(176275,4889,'section_two',''),(176276,4889,'_section_two','field_6316fa2531589'),(176277,4889,'section_three_section_three_title','Trusted Relationships'),(176278,4889,'_section_three_section_three_title','field_6316febdf751c'),(176279,4889,'section_three_section_three_one_icon','4687'),(176280,4889,'_section_three_section_three_one_icon','field_6316fefff751e'),(176281,4889,'section_three_section_three_one_title','Data Entry Automation'),(176282,4889,'_section_three_section_three_one_title','field_6316ff1cf751f'),(176283,4889,'section_three_section_three_one_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(176284,4889,'_section_three_section_three_one_content','field_6316ff29f7520'),(176285,4889,'section_three_section_three_two_icon','4688'),(176286,4889,'_section_three_section_three_two_icon','field_6316ff77f7523'),(176287,4889,'section_three_section_three_two_title','Product Recommendation'),(176288,4889,'_section_three_section_three_two_title','field_6316ff90f7524'),(176289,4889,'section_three_section_three_two_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(176290,4889,'_section_three_section_three_two_content','field_6316ff5df7522'),(176291,4889,'section_three_section_three_three_icon','4689'),(176292,4889,'_section_three_section_three_three_icon','field_6316ffdaf7526'),(176293,4889,'section_three_section_three_three_title','Medical Diagnosis'),(176294,4889,'_section_three_section_three_three_title','field_6316fff5f7527'),(176295,4889,'section_three_section_three_three_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(176296,4889,'_section_three_section_three_three_content','field_63170010f7528'),(176297,4889,'section_three_section_three_four_icon','4690'),(176298,4889,'_section_three_section_three_four_icon','field_6317077b2b1c9'),(176299,4889,'section_three_section_three_four_title','Clients: Who is buying what'),(176300,4889,'_section_three_section_three_four_title','field_631707992b1ca'),(176301,4889,'section_three_section_three_four_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(176302,4889,'_section_three_section_three_four_content','field_631707b42b1cb'),(176303,4889,'section_three_section_three_five_icon','4691'),(176304,4889,'_section_three_section_three_five_icon','field_631707e52b1cd'),(176305,4889,'section_three_section_three_five_title','User Behavior'),(176306,4889,'_section_three_section_three_five_title','field_631708002b1ce'),(176307,4889,'section_three_section_three_five_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(176308,4889,'_section_three_section_three_five_content','field_6317081c2b1cf'),(176309,4889,'section_three_section_three_six_icon','4692'),(176310,4889,'_section_three_section_three_six_icon','field_631708572b1d1'),(176311,4889,'section_three_section_three_six_title','BI: Automated Reporting'),(176312,4889,'_section_three_section_three_six_title','field_631708712b1d2'),(176313,4889,'section_three_section_three_six_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(176314,4889,'_section_three_section_three_six_content','field_6317088d2b1d3'),(176315,4889,'section_three_section_three_seven_icon','4693'),(176316,4889,'_section_three_section_three_seven_icon','field_631708be2b1d5'),(176317,4889,'section_three_section_three_seven_title','Detecting Spam in Emails'),(176318,4889,'_section_three_section_three_seven_title','field_631708da2b1d6'),(176319,4889,'section_three_section_three_seven_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(176320,4889,'_section_three_section_three_seven_content','field_631708f62b1d7'),(176321,4889,'section_three_section_three_eight_icon','4694'),(176322,4889,'_section_three_section_three_eight_icon','field_6317092c2b1d9'),(176323,4889,'section_three_section_three_eight_title','Analytics'),(176324,4889,'_section_three_section_three_eight_title','field_631709462b1da'),(176325,4889,'section_three_section_three_eight_content','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.'),(176326,4889,'_section_three_section_three_eight_content','field_6317095e2b1db'),(176327,4889,'section_three',''),(176328,4889,'_section_three','field_6316fcf4f751a'),(176329,4889,'section_four_section_four_content','

The largest enterprise and fastest growing companies are using Machine Learning from Google, Spotify, Walmart, Exxon, IBM, Amazon, to Ford.

'),(176330,4889,'_section_four_section_four_content','field_63170ac9aa9a2'),(176331,4889,'section_four_section_four_button_text','Book a consultation now'),(176332,4889,'_section_four_section_four_button_text','field_63170b08aa9a3'),(176333,4889,'section_four',''),(176334,4889,'_section_four','field_63170a81aa9a1'),(176335,4889,'section_five_section_five_title','We listen. We learn. We inform.'),(176336,4889,'_section_five_section_five_title','field_63170b8564fc2'),(176337,4889,'section_five_section_five_quote','

“76% say they are targeting higher sales growth with machine learning... machine learning is making contributions to omnichannel selling strategies today.”

'),(176338,4889,'_section_five_section_five_quote','field_632013fd76a3e'),(176339,4889,'section_five_section_five_footer','forbes.com'),(176340,4889,'_section_five_section_five_footer','field_63170bad64fc4'),(176341,4889,'section_five',''),(176342,4889,'_section_five','field_63170b5f64fc1'),(176343,4889,'footer_title','We treat your business like our own.'),(176344,4889,'_footer_title','field_63170f4c8cc9a'),(176345,4889,'footer_button_text','Let\'s talk!'),(176346,4889,'_footer_button_text','field_63170f6f8cc9b'),(176347,4889,'top_title_1','CLOUD NATIVE SOLUTIONS'),(176348,4889,'_top_title_1','field_631ed55492adc'),(176349,4889,'top_title_page','CLOUD NATIVE SOLUTIONS'),(176350,4889,'_top_title_page','field_631ed55492adc'),(176351,4889,'section_one_section_one_image_mobile','4865'),(176352,4889,'_section_one_section_one_image_mobile','field_6321741c8e5ae'),(176353,4889,'section_two_section_two_tab_one_image_mobile','4827'),(176354,4889,'_section_two_section_two_tab_one_image_mobile','field_632174678e5af'),(176355,4889,'section_two_section_two_tab_three_image_mobile','4866'),(176356,4889,'_section_two_section_two_tab_three_image_mobile','field_632174798e5b0'); /*!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 COLLATE utf8mb4_unicode_ci NOT NULL, `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL, `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish', `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL, `pinged` text COLLATE utf8mb4_unicode_ci 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 COLLATE utf8mb4_unicode_ci NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0, `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT 0, `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT 0, PRIMARY KEY (`ID`), KEY `post_name` (`post_name`(191)), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`) ) ENGINE=InnoDB AUTO_INCREMENT=4890 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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 (2,4,'2019-01-03 12:38:37','2019-01-03 14:38:37','','Home - Old','','draft','closed','closed','','translucent-digital-transformation','','','2021-05-27 21:12:04','2021-05-28 01:12:04','',0,'http://localhost:8082/?page_id=2',0,'page','',0),(8,4,'2019-01-03 12:51:58','2019-01-03 14:51:58','
\r\n
\r\n [text* first-name class:form-control placeholder \" First Name\"]\r\n
\r\n
\r\n [text* last-name class:form-control placeholder \"Last Name\"]\r\n
\r\n \r\n
\r\n
\r\n
\r\n [email* email class:form-control placeholder \"Email\"]\r\n
\r\n
\r\n [tel* phone class:form-control placeholder \"Phone Number\"]\r\n
\r\n
\r\n\r\n
\r\n
\r\n [textarea message class:form-control placeholder \"Message\"]\r\n
\r\n
\r\n
\r\n
\r\n [submit class:btn \"Submit\"]\r\n
\r\n
\n1\nDEV SERVER - TC Form Submissions: From Translucent Contact Page Form\nresults@translucentcomputing.com\nresults@translucentcomputing.com, robert@translucentcomputing.com, bsankar@translucentcomputing.com\nFrom: [first-name] [last-name] \r\nEmail: <[email]>\r\nPhone: [phone]\r\nMessage:\r\n[message]\nReply-To: [email]\n\n\n\n1\nService Inquiry | Thank you for contacting Translucent\nBradford Sankar \n[email]\nHi [first-name],\r\n\r\nWe would like to express our thanks for your interest in our cloud native services.\r\nWe will review your request with our team and be in touch shortly.\r\n\r\nYours sincerely,\r\nBradford Sankar\r\nYour Translucent Cloud Native Specialist!\nReply-To: Bradford Sankar \n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','DEV SERVER - TC Contact Page Form','','publish','closed','closed','','contact-form-1','','','2022-06-20 19:57:04','2022-06-20 23:57:04','',0,'http://localhost:8082/?post_type=wpcf7_contact_form&p=8',0,'wpcf7_contact_form','',0),(10,4,'2019-01-09 08:39:13','2019-01-09 10:39:13','','About Us','','draft','closed','closed','','about-us-old','','','2021-10-13 17:12:07','2021-10-13 21:12:07','',0,'http://localhost:8082/?page_id=10',1,'page','',0),(14,4,'2019-01-09 08:41:07','2019-01-09 10:41:07','','Microservices','','publish','closed','closed','','microservices','','','2021-09-03 21:51:42','2021-09-04 01:51:42','',829,'http://localhost:8082/?page_id=14',1,'page','',0),(16,4,'2019-01-09 08:41:24','2019-01-09 10:41:24','','Machine Learning','','publish','closed','closed','','machine-learning','','','2022-09-05 06:16:47','2022-09-05 10:16:47','',829,'http://localhost:8082/?page_id=16',2,'page','',0),(18,4,'2019-01-09 08:41:45','2019-01-09 10:41:45','','DevOps','','publish','closed','closed','','devops','','','2022-05-13 01:29:14','2022-05-13 05:29:14','',829,'http://localhost:8082/?page_id=18',3,'page','',0),(38,4,'2019-01-09 18:12:58','2019-01-09 20:12:58','','The Hospital for Sick Children Case Study','','publish','closed','closed','','the-hospital-for-sick-children','','','2022-05-13 01:19:08','2022-05-13 05:19:08','',46,'http://localhost:8082/?page_id=38',2,'page','',0),(42,4,'2019-01-09 18:15:02','2019-01-09 20:15:02','','Case Studies','','publish','closed','closed','','case-studies-2','','','2021-10-13 17:09:14','2021-10-13 21:09:14','',0,'http://localhost:8082/?p=42',9,'nav_menu_item','',0),(43,4,'2019-01-09 18:15:03','2019-01-09 20:15:03',' ','','','publish','closed','closed','','43','','','2021-10-13 17:09:15','2021-10-13 21:09:15','',46,'http://localhost:8082/?p=43',10,'nav_menu_item','',0),(44,4,'2019-01-09 19:07:33','2019-01-09 21:07:33','','Digital Transformation','','publish','closed','closed','','digital-transformation','','','2022-05-13 01:23:14','2022-05-13 05:23:14','',829,'http://localhost:8082/?page_id=44',2,'page','',0),(46,4,'2019-01-09 19:08:28','2019-01-10 00:08:28','','Case Studies','','publish','closed','closed','','case-studies','','','2022-05-13 01:20:32','2022-05-13 05:20:32','',0,'http://localhost:8082/?page_id=46',4,'page','',0),(50,4,'2019-01-11 18:19:05','2019-01-11 20:19:05','','sickkids','','inherit','open','closed','','sickkids','','','2021-10-06 23:36:18','2021-10-07 03:36:18','',2,'http://localhost:8082/wp-content/uploads/2019/01/sickkids.jpg',0,'attachment','image/jpeg',0),(51,4,'2019-01-12 11:54:59','2019-01-12 13:54:59','','logo1','','inherit','open','closed','','logo1','','','2021-10-06 23:36:03','2021-10-07 03:36:03','',2,'http://localhost:8082/wp-content/uploads/2019/01/logo1.png',0,'attachment','image/png',0),(52,4,'2019-01-12 11:55:00','2019-01-12 13:55:00','','logo2','','inherit','open','closed','','logo2','','','2021-10-06 23:35:47','2021-10-07 03:35:47','',2,'http://localhost:8082/wp-content/uploads/2019/01/logo2.png',0,'attachment','image/png',0),(53,4,'2019-01-12 11:55:00','2019-01-12 13:55:00','','logo3','','inherit','open','closed','','logo3','','','2021-10-06 23:35:58','2021-10-07 03:35:58','',2,'http://localhost:8082/wp-content/uploads/2019/01/logo3.png',0,'attachment','image/png',0),(54,4,'2019-01-12 11:55:01','2019-01-12 13:55:01','','logo4','','inherit','open','closed','','logo4','','','2021-10-06 23:35:38','2021-10-07 03:35:38','',2,'http://localhost:8082/wp-content/uploads/2019/01/logo4.png',0,'attachment','image/png',0),(55,4,'2019-01-12 11:55:02','2019-01-12 13:55:02','','logo5','','inherit','open','closed','','logo5','','','2021-10-06 23:35:33','2021-10-07 03:35:33','',2,'http://localhost:8082/wp-content/uploads/2019/01/logo5.png',0,'attachment','image/png',0),(57,4,'2019-01-13 09:04:43','2019-01-13 11:04:43','','Contact Us','','publish','closed','closed','','contact','','','2022-05-13 01:20:12','2022-05-13 05:20:12','',0,'http://localhost:8082/?page_id=57',5,'page','',0),(59,4,'2019-01-13 09:21:40','2019-01-13 11:21:40',' ','','','publish','closed','closed','','59','','','2021-10-13 17:09:15','2021-10-13 21:09:15','',0,'http://localhost:8082/?p=59',14,'nav_menu_item','',0),(60,4,'2019-01-13 09:27:03','2019-01-13 11:27:03','','Our Process','','publish','closed','closed','','tekprocess','','','2022-05-13 01:07:54','2022-05-13 05:07:54','',0,'http://localhost:8082/?page_id=60',3,'page','',0),(62,4,'2019-01-13 09:28:12','2019-01-13 11:28:12',' ','','','publish','closed','closed','','62','','','2021-10-13 17:09:14','2021-10-13 21:09:14','',0,'http://localhost:8082/?p=62',8,'nav_menu_item','',0),(63,4,'2019-01-13 10:14:18','2019-01-13 12:14:18','','sickkids','','inherit','open','closed','','sickkids-2','','','2021-10-06 23:35:24','2021-10-07 03:35:24','',2,'http://localhost:8082/wp-content/uploads/2019/01/sickkids-1.jpg',0,'attachment','image/jpeg',0),(528,4,'2019-01-13 19:46:33','2019-01-13 21:46:33','','devops-page','','inherit','open','closed','','devops-page','','','2021-10-06 23:35:14','2021-10-07 03:35:14','',2,'http://localhost:8082/wp-content/uploads/2019/01/devops-page.jpg',0,'attachment','image/jpeg',0),(529,4,'2019-01-13 23:18:56','2019-01-14 01:18:56','','mobile-mockup','','inherit','open','closed','','mobile-mockup','','','2021-10-06 23:35:00','2021-10-07 03:35:00','',2,'http://localhost:8082/wp-content/uploads/2019/01/mobile-mockup.jpg',0,'attachment','image/jpeg',0),(531,4,'2019-01-14 10:41:26','2019-01-14 12:41:26','','bg-process','','inherit','open','closed','','bg-process','','','2021-10-06 23:34:48','2021-10-07 03:34:48','',2,'http://localhost:8082/wp-content/uploads/2019/01/bg-process.jpg',0,'attachment','image/jpeg',0),(532,4,'2019-01-14 11:54:23','2019-01-14 13:54:23','','bg-about','','inherit','open','closed','','bg-about','','','2021-10-06 23:34:36','2021-10-07 03:34:36','',2,'http://localhost:8082/wp-content/uploads/2019/01/bg-about.jpg',0,'attachment','image/jpeg',0),(533,4,'2019-01-14 15:41:55','2019-01-14 17:41:55','','bg-interna-ml','','inherit','open','closed','','bg-interna-ml','','','2021-10-06 23:34:23','2021-10-07 03:34:23','',2,'http://localhost:8082/wp-content/uploads/2019/01/bg-interna-ml.png',0,'attachment','image/png',0),(534,4,'2019-01-14 16:11:24','2019-01-14 18:11:24','','bg-ml','','inherit','open','closed','','bg-ml','','','2021-10-06 23:34:15','2021-10-07 03:34:15','',2,'http://localhost:8082/wp-content/uploads/2019/01/bg-ml.jpg',0,'attachment','image/jpeg',0),(535,4,'2019-01-14 16:54:14','2019-01-14 18:54:14','','bg-micro','','inherit','open','closed','','bg-micro','','','2021-10-06 23:33:51','2021-10-07 03:33:51','',2,'http://localhost:8082/wp-content/uploads/2019/01/bg-micro.jpg',0,'attachment','image/jpeg',0),(536,4,'2019-01-14 17:15:46','2019-01-14 19:15:46','','bg-dt','','inherit','open','closed','','bg-dt','','','2021-10-06 23:33:37','2021-10-07 03:33:37','',2,'http://localhost:8082/wp-content/uploads/2019/01/bg-dt.jpg',0,'attachment','image/jpeg',0),(538,4,'2019-01-14 18:02:54','2019-01-14 20:02:54','','dt1','','inherit','open','closed','','dt1','','','2021-10-06 23:33:25','2021-10-07 03:33:25','',2,'http://localhost:8082/wp-content/uploads/2019/01/dt1.jpg',0,'attachment','image/jpeg',0),(539,4,'2019-01-14 18:02:55','2019-01-14 20:02:55','','dt9','','inherit','open','closed','','dt9','','','2021-10-06 23:33:18','2021-10-07 03:33:18','',2,'http://localhost:8082/wp-content/uploads/2019/01/dt9.jpg',0,'attachment','image/jpeg',0),(540,4,'2019-01-14 18:02:56','2019-01-14 20:02:56','','dt8','','inherit','open','closed','','dt8','','','2021-10-06 23:33:07','2021-10-07 03:33:07','',2,'http://localhost:8082/wp-content/uploads/2019/01/dt8.jpg',0,'attachment','image/jpeg',0),(541,4,'2019-01-14 18:02:57','2019-01-14 20:02:57','','dt7','','inherit','open','closed','','dt7','','','2021-10-06 23:32:55','2021-10-07 03:32:55','',2,'http://localhost:8082/wp-content/uploads/2019/01/dt7.jpg',0,'attachment','image/jpeg',0),(542,4,'2019-01-14 18:02:59','2019-01-14 20:02:59','','dt6','','inherit','open','closed','','dt6','','','2021-10-06 23:32:43','2021-10-07 03:32:43','',2,'http://localhost:8082/wp-content/uploads/2019/01/dt6.jpg',0,'attachment','image/jpeg',0),(543,4,'2019-01-14 18:03:01','2019-01-14 20:03:01','','dt5','','inherit','open','closed','','dt5','','','2021-10-06 23:32:32','2021-10-07 03:32:32','',2,'http://localhost:8082/wp-content/uploads/2019/01/dt5.jpg',0,'attachment','image/jpeg',0),(544,4,'2019-01-14 18:03:03','2019-01-14 20:03:03','','dt3','','inherit','open','closed','','dt3','','','2021-10-06 23:32:16','2021-10-07 03:32:16','',2,'http://localhost:8082/wp-content/uploads/2019/01/dt3.jpg',0,'attachment','image/jpeg',0),(545,4,'2019-01-14 18:03:04','2019-01-14 20:03:04','','dt2','','inherit','open','closed','','dt2','','','2021-10-06 23:32:00','2021-10-07 03:32:00','',2,'http://localhost:8082/wp-content/uploads/2019/01/dt2.jpg',0,'attachment','image/jpeg',0),(546,4,'2019-01-14 18:36:29','2019-01-14 20:36:29','','ms1','','inherit','open','closed','','ms1','','','2021-10-06 23:31:50','2021-10-07 03:31:50','',2,'http://localhost:8082/wp-content/uploads/2019/01/ms1.jpg',0,'attachment','image/jpeg',0),(547,4,'2019-01-14 18:36:30','2019-01-14 20:36:30','','ms8','','inherit','open','closed','','ms8','','','2021-10-06 23:31:43','2021-10-07 03:31:43','',2,'http://localhost:8082/wp-content/uploads/2019/01/ms8.jpg',0,'attachment','image/jpeg',0),(548,4,'2019-01-14 18:36:31','2019-01-14 20:36:31','','ms7','','inherit','open','closed','','ms7','','','2021-10-06 23:31:34','2021-10-07 03:31:34','',2,'http://localhost:8082/wp-content/uploads/2019/01/ms7.jpg',0,'attachment','image/jpeg',0),(549,4,'2019-01-14 18:36:32','2019-01-14 20:36:32','','ms6','','inherit','open','closed','','ms6','','','2021-10-06 23:31:20','2021-10-07 03:31:20','',2,'http://localhost:8082/wp-content/uploads/2019/01/ms6.jpg',0,'attachment','image/jpeg',0),(550,4,'2019-01-14 18:36:33','2019-01-14 20:36:33','','ms5','','inherit','open','closed','','ms5','','','2021-10-06 23:30:57','2021-10-07 03:30:57','',2,'http://localhost:8082/wp-content/uploads/2019/01/ms5.jpg',0,'attachment','image/jpeg',0),(551,4,'2019-01-14 18:36:33','2019-01-14 20:36:33','','ms4','','inherit','open','closed','','ms4','','','2021-10-06 23:31:05','2021-10-07 03:31:05','',2,'http://localhost:8082/wp-content/uploads/2019/01/ms4.jpg',0,'attachment','image/jpeg',0),(552,4,'2019-01-14 18:36:35','2019-01-14 20:36:35','','ms3','','inherit','open','closed','','ms3','','','2021-10-06 23:30:40','2021-10-07 03:30:40','',2,'http://localhost:8082/wp-content/uploads/2019/01/ms3.jpg',0,'attachment','image/jpeg',0),(553,4,'2019-01-14 18:36:36','2019-01-14 20:36:36','','ms2','','inherit','open','closed','','ms2','','','2021-10-06 23:30:28','2021-10-07 03:30:28','',2,'http://localhost:8082/wp-content/uploads/2019/01/ms2.jpg',0,'attachment','image/jpeg',0),(554,4,'2019-01-15 07:07:32','2019-01-15 09:07:32','','ml1','','inherit','open','closed','','ml1','','','2021-10-06 23:30:19','2021-10-07 03:30:19','',2,'http://localhost:8082/wp-content/uploads/2019/01/ml1.jpg',0,'attachment','image/jpeg',0),(555,4,'2019-01-15 07:07:33','2019-01-15 09:07:33','','ml8','','inherit','open','closed','','ml8','','','2021-10-06 23:30:03','2021-10-07 03:30:03','',2,'http://localhost:8082/wp-content/uploads/2019/01/ml8.jpg',0,'attachment','image/jpeg',0),(556,4,'2019-01-15 07:07:34','2019-01-15 09:07:34','','ml7','','inherit','open','closed','','ml7','','','2021-10-06 23:29:52','2021-10-07 03:29:52','',2,'http://localhost:8082/wp-content/uploads/2019/01/ml7.jpg',0,'attachment','image/jpeg',0),(557,4,'2019-01-15 07:07:35','2019-01-15 09:07:35','','ml6','','inherit','open','closed','','ml6','','','2021-10-06 23:29:27','2021-10-07 03:29:27','',2,'http://localhost:8082/wp-content/uploads/2019/01/ml6.jpg',0,'attachment','image/jpeg',0),(558,4,'2019-01-15 07:07:35','2019-01-15 09:07:35','','ml5','','inherit','open','closed','','ml5','','','2021-10-06 23:29:39','2021-10-07 03:29:39','',2,'http://localhost:8082/wp-content/uploads/2019/01/ml5.jpg',0,'attachment','image/jpeg',0),(559,4,'2019-01-15 07:07:36','2019-01-15 09:07:36','','ml4','','inherit','open','closed','','ml4','','','2021-10-06 23:29:10','2021-10-07 03:29:10','',2,'http://localhost:8082/wp-content/uploads/2019/01/ml4.jpg',0,'attachment','image/jpeg',0),(560,4,'2019-01-15 07:07:37','2019-01-15 09:07:37','','ml3','','inherit','open','closed','','ml3','','','2021-10-06 23:28:56','2021-10-07 03:28:56','',2,'http://localhost:8082/wp-content/uploads/2019/01/ml3.jpg',0,'attachment','image/jpeg',0),(561,4,'2019-01-15 07:07:38','2019-01-15 09:07:38','','ml2','','inherit','open','closed','','ml2','','','2021-10-06 23:28:41','2021-10-07 03:28:41','',2,'http://localhost:8082/wp-content/uploads/2019/01/ml2.jpg',0,'attachment','image/jpeg',0),(578,4,'2019-01-16 14:52:28','2019-01-16 16:52:28','','dev1','','inherit','open','closed','','dev1','','','2021-10-06 23:28:31','2021-10-07 03:28:31','',2,'http://localhost:8082/wp-content/uploads/2019/01/dev1.jpg',0,'attachment','image/jpeg',0),(579,4,'2019-01-16 14:52:29','2019-01-16 16:52:29','','dev8','','inherit','open','closed','','dev8','','','2021-10-06 23:28:21','2021-10-07 03:28:21','',2,'http://localhost:8082/wp-content/uploads/2019/01/dev8.jpg',0,'attachment','image/jpeg',0),(580,4,'2019-01-16 14:52:30','2019-01-16 16:52:30','','dev7','','inherit','open','closed','','dev7','','','2021-10-06 23:28:13','2021-10-07 03:28:13','',2,'http://localhost:8082/wp-content/uploads/2019/01/dev7.jpg',0,'attachment','image/jpeg',0),(581,4,'2019-01-16 14:52:32','2019-01-16 16:52:32','','dev6','','inherit','open','closed','','dev6','','','2021-10-06 23:28:05','2021-10-07 03:28:05','',2,'http://localhost:8082/wp-content/uploads/2019/01/dev6.jpg',0,'attachment','image/jpeg',0),(582,4,'2019-01-16 14:52:33','2019-01-16 16:52:33','','dev5','','inherit','open','closed','','dev5','','','2021-10-06 23:27:53','2021-10-07 03:27:53','',2,'http://localhost:8082/wp-content/uploads/2019/01/dev5.jpg',0,'attachment','image/jpeg',0),(583,4,'2019-01-16 14:52:34','2019-01-16 16:52:34','','dev4','','inherit','open','closed','','dev4','','','2021-10-06 23:27:48','2021-10-07 03:27:48','',2,'http://localhost:8082/wp-content/uploads/2019/01/dev4.jpg',0,'attachment','image/jpeg',0),(584,4,'2019-01-16 14:52:35','2019-01-16 16:52:35','','dev3','','inherit','open','closed','','dev3','','','2021-10-06 23:27:35','2021-10-07 03:27:35','',2,'http://localhost:8082/wp-content/uploads/2019/01/dev3.jpg',0,'attachment','image/jpeg',0),(585,4,'2019-01-16 14:52:36','2019-01-16 16:52:36','','dev2','','inherit','open','closed','','dev2','','','2021-10-06 23:27:20','2021-10-07 03:27:20','',2,'http://localhost:8082/wp-content/uploads/2019/01/dev2.jpg',0,'attachment','image/jpeg',0),(586,4,'2019-01-16 18:24:52','2019-01-16 20:24:52','','Volentix','','inherit','open','closed','','volentix','','','2021-10-06 23:27:02','2021-10-07 03:27:02','',2,'http://localhost:8082/wp-content/uploads/2019/01/Volentix.jpg',0,'attachment','image/jpeg',0),(587,4,'2019-01-16 18:24:54','2019-01-16 20:24:54','','US Army','','inherit','open','closed','','us-army','','','2021-10-06 23:26:55','2021-10-07 03:26:55','',2,'http://localhost:8082/wp-content/uploads/2019/01/US-Army.png',0,'attachment','image/png',0),(588,4,'2019-01-16 18:24:55','2019-01-16 20:24:55','','Prometheus','','inherit','open','closed','','prometheus','','','2021-10-06 23:26:47','2021-10-07 03:26:47','',2,'http://localhost:8082/wp-content/uploads/2019/01/Prometheus.png',0,'attachment','image/png',0),(589,4,'2019-01-16 18:24:56','2019-01-16 20:24:56','','Spinnaker','','inherit','open','closed','','spinnaker','','','2021-10-06 23:26:39','2021-10-07 03:26:39','',2,'http://localhost:8082/wp-content/uploads/2019/01/Spinnaker.png',0,'attachment','image/png',0),(590,4,'2019-01-16 18:24:57','2019-01-16 20:24:57','','Tensorflow','','inherit','open','closed','','tensorflow','','','2021-10-06 23:26:32','2021-10-07 03:26:32','',2,'http://localhost:8082/wp-content/uploads/2019/01/Tensorflow.jpg',0,'attachment','image/jpeg',0),(591,4,'2019-01-16 18:24:58','2019-01-16 20:24:58','','BMO','','inherit','open','closed','','bmo','','','2021-10-06 23:26:25','2021-10-07 03:26:25','',2,'http://localhost:8082/wp-content/uploads/2019/01/BMO.jpg',0,'attachment','image/jpeg',0),(592,4,'2019-01-16 18:24:59','2019-01-16 20:24:59','','Caliper','','inherit','open','closed','','caliper','','','2021-10-06 23:26:18','2021-10-07 03:26:18','',2,'http://localhost:8082/wp-content/uploads/2019/01/Caliper.png',0,'attachment','image/png',0),(593,4,'2019-01-16 18:25:00','2019-01-16 20:25:00','','Excellus Blue Cross','','inherit','open','closed','','excellus-blue-cross','','','2021-10-06 23:26:03','2021-10-07 03:26:03','',2,'http://localhost:8082/wp-content/uploads/2019/01/Excellus-Blue-Cross.png',0,'attachment','image/png',0),(594,4,'2019-01-16 18:25:00','2019-01-16 20:25:00','','Jenkins','','inherit','open','closed','','jenkins','','','2021-10-06 23:26:10','2021-10-07 03:26:10','',2,'http://localhost:8082/wp-content/uploads/2019/01/Jenkins.png',0,'attachment','image/png',0),(595,4,'2019-01-16 18:25:03','2019-01-16 20:25:03','','Jupyter','','inherit','open','closed','','jupyter','','','2021-10-06 23:25:57','2021-10-07 03:25:57','',2,'http://localhost:8082/wp-content/uploads/2019/01/Jupyter.png',0,'attachment','image/png',0),(596,4,'2019-01-16 18:25:05','2019-01-16 20:25:05','','Loanpro','','inherit','open','closed','','loanpro','','','2021-10-06 23:25:22','2021-10-07 03:25:22','',2,'http://localhost:8082/wp-content/uploads/2019/01/Loanpro.png',0,'attachment','image/png',0),(598,4,'2019-01-16 18:25:06','2019-01-16 20:25:06','','download','','inherit','open','closed','','download','','','2021-10-06 23:25:10','2021-10-07 03:25:10','',2,'http://localhost:8082/wp-content/uploads/2019/01/download.png',0,'attachment','image/png',0),(599,4,'2019-01-16 18:25:08','2019-01-16 20:25:08','','full_logo','','inherit','open','closed','','full_logo','','','2021-10-06 23:25:02','2021-10-07 03:25:02','',2,'http://localhost:8082/wp-content/uploads/2019/01/full_logo.png',0,'attachment','image/png',0),(600,4,'2019-01-16 18:25:09','2019-01-16 20:25:09','','google-cloud-platform','','inherit','open','closed','','google-cloud-platform','','','2021-10-06 23:24:55','2021-10-07 03:24:55','',2,'http://localhost:8082/wp-content/uploads/2019/01/google-cloud-platform.png',0,'attachment','image/png',0),(602,4,'2019-01-16 18:25:31','2019-01-16 20:25:31','','logo@1x','','inherit','open','closed','','logo1x','','','2021-10-06 23:24:46','2021-10-07 03:24:46','',2,'http://localhost:8082/wp-content/uploads/2019/01/logo@1x.png',0,'attachment','image/png',0),(603,4,'2019-01-16 18:25:34','2019-01-16 20:25:34','','docker_facebook_share','','inherit','open','closed','','docker_facebook_share','','','2021-10-06 23:24:38','2021-10-07 03:24:38','',2,'http://localhost:8082/wp-content/uploads/2019/01/docker_facebook_share.png',0,'attachment','image/png',0),(604,4,'2019-01-16 18:25:35','2019-01-16 20:25:35','','2000px-The_Hospital_for_Sick_Children_Logo.svg','','inherit','open','closed','','2000px-the_hospital_for_sick_children_logo-svg','','','2021-10-06 23:24:30','2021-10-07 03:24:30','',2,'http://localhost:8082/wp-content/uploads/2019/01/2000px-The_Hospital_for_Sick_Children_Logo.svg_.png',0,'attachment','image/png',0),(605,4,'2019-01-16 18:25:36','2019-01-16 20:25:36','','angular','','inherit','open','closed','','angular','','','2021-10-06 23:24:21','2021-10-07 03:24:21','',2,'http://localhost:8082/wp-content/uploads/2019/01/angular.png',0,'attachment','image/png',0),(606,4,'2019-01-16 18:25:37','2019-01-16 20:25:37','','CBB Logo-POS-URL-RGB-May2716','','inherit','open','closed','','cbb-logo-pos-url-rgb-may2716','','','2021-10-06 23:24:13','2021-10-07 03:24:13','',2,'http://localhost:8082/wp-content/uploads/2019/01/CBB-Logo-POS-URL-RGB-May2716.jpg',0,'attachment','image/jpeg',0),(607,4,'2019-01-16 18:25:42','2019-01-16 20:25:42','','Confluence@2x-blue','','inherit','open','closed','','confluence2x-blue','','','2021-10-06 23:24:03','2021-10-07 03:24:03','',2,'http://localhost:8082/wp-content/uploads/2019/01/Confluence@2x-blue.png',0,'attachment','image/png',0),(608,4,'2019-01-16 18:25:43','2019-01-16 20:25:43','','25LN4Pm1','','inherit','open','closed','','25ln4pm1','','','2021-10-06 23:23:57','2021-10-07 03:23:57','',2,'http://localhost:8082/wp-content/uploads/2019/01/25LN4Pm1.png',0,'attachment','image/png',0),(609,4,'2019-01-16 18:25:47','2019-01-16 20:25:47','','1280px-Samsung_Logo.svg','','inherit','open','closed','','1280px-samsung_logo-svg','','','2021-10-06 23:22:51','2021-10-07 03:22:51','',2,'http://localhost:8082/wp-content/uploads/2019/01/1280px-Samsung_Logo.svg_.png',0,'attachment','image/png',0),(610,4,'2019-01-16 18:25:48','2019-01-16 20:25:48','','2000px-Amazon_Web_Services_Logo.svg','','inherit','open','closed','','2000px-amazon_web_services_logo-svg','','','2021-10-06 23:22:45','2021-10-07 03:22:45','',2,'http://localhost:8082/wp-content/uploads/2019/01/2000px-Amazon_Web_Services_Logo.svg_.png',0,'attachment','image/png',0),(611,4,'2019-01-16 18:25:53','2019-01-16 20:25:53','','2000px-Much_-_2013_logo.svg','','inherit','open','closed','','2000px-much_-_2013_logo-svg','','','2021-10-06 23:22:39','2021-10-07 03:22:39','',2,'http://localhost:8082/wp-content/uploads/2019/01/2000px-Much_-_2013_logo.svg_.png',0,'attachment','image/png',0),(612,4,'2019-01-16 18:25:54','2019-01-16 20:25:54','','Rogers-Logo-use-this-360x360','','inherit','open','closed','','rogers-logo-use-this-360x360','','','2021-10-06 23:22:32','2021-10-07 03:22:32','',2,'http://localhost:8082/wp-content/uploads/2019/01/Rogers-Logo-use-this-360x360.png',0,'attachment','image/png',0),(613,4,'2019-01-16 18:25:55','2019-01-16 20:25:55','','Spark-Icon-Logo','','inherit','open','closed','','spark-icon-logo','','','2021-10-06 23:22:14','2021-10-07 03:22:14','',2,'http://localhost:8082/wp-content/uploads/2019/01/Spark-Icon-Logo.png',0,'attachment','image/png',0),(614,4,'2019-01-16 18:25:55','2019-01-16 20:25:55','','Stella_Artois_new_logo','','inherit','open','closed','','stella_artois_new_logo','','','2021-10-06 23:22:26','2021-10-07 03:22:26','',2,'http://localhost:8082/wp-content/uploads/2019/01/Stella_Artois_new_logo.png',0,'attachment','image/png',0),(615,4,'2019-01-16 18:25:58','2019-01-16 20:25:58','','td-logo','','inherit','open','closed','','td-logo','','','2021-10-06 23:22:09','2021-10-07 03:22:09','',2,'http://localhost:8082/wp-content/uploads/2019/01/td-logo.png',0,'attachment','image/png',0),(616,4,'2019-01-16 18:25:59','2019-01-16 20:25:59','','uw-logo-color-transparent','','inherit','open','closed','','uw-logo-color-transparent','','','2021-10-06 23:22:04','2021-10-07 03:22:04','',2,'http://localhost:8082/wp-content/uploads/2019/01/uw-logo-color-transparent.png',0,'attachment','image/png',0),(617,4,'2019-01-16 18:26:01','2019-01-16 20:26:01','','woodgreen','','inherit','open','closed','','woodgreen','','','2021-10-06 23:21:58','2021-10-07 03:21:58','',2,'http://localhost:8082/wp-content/uploads/2019/01/woodgreen.gif',0,'attachment','image/gif',0),(618,4,'2019-01-16 18:26:05','2019-01-16 20:26:05','','main-logo-test-2','','inherit','open','closed','','main-logo-test-2','','','2021-10-06 23:21:50','2021-10-07 03:21:50','',2,'http://localhost:8082/wp-content/uploads/2019/01/main-logo-test-2.png',0,'attachment','image/png',0),(619,4,'2019-01-16 18:26:06','2019-01-16 20:26:06','','Mosaic','','inherit','open','closed','','mosaic','','','2021-10-06 23:21:42','2021-10-07 03:21:42','',2,'http://localhost:8082/wp-content/uploads/2019/01/Mosaic.jpg',0,'attachment','image/jpeg',0),(620,4,'2019-01-16 18:26:08','2019-01-16 20:26:08','','resized UofT Logo.8cce108','','inherit','open','closed','','resized-uoft-logo-8cce108','','','2021-10-06 23:21:36','2021-10-07 03:21:36','',2,'http://localhost:8082/wp-content/uploads/2019/01/resized-UofT-Logo.8cce108.jpg',0,'attachment','image/jpeg',0),(621,4,'2019-01-16 18:26:09','2019-01-16 20:26:09','','logo-uhn','','inherit','open','closed','','logo-uhn','','','2021-10-06 23:21:24','2021-10-07 03:21:24','',2,'http://localhost:8082/wp-content/uploads/2019/01/logo-uhn.png',0,'attachment','image/png',0),(623,4,'2019-01-22 14:40:20','2019-01-22 16:40:20','','logo@1x','','inherit','open','closed','','logo1x-2','','','2021-10-06 23:21:07','2021-10-07 03:21:07','',2,'http://localhost:8082/wp-content/uploads/2019/01/logo@1x-1.png',0,'attachment','image/png',0),(624,4,'2019-01-22 14:41:20','2019-01-22 16:41:20','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:4:\"page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"2\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:14:{i:0;s:9:\"permalink\";i:1;s:11:\"the_content\";i:2;s:7:\"excerpt\";i:3;s:10:\"discussion\";i:4;s:8:\"comments\";i:5;s:9:\"revisions\";i:6;s:4:\"slug\";i:7;s:6:\"author\";i:8;s:6:\"format\";i:9;s:15:\"page_attributes\";i:10;s:14:\"featured_image\";i:11;s:10:\"categories\";i:12;s:4:\"tags\";i:13;s:15:\"send-trackbacks\";}s:11:\"description\";s:0:\"\";}','Home Page','home-page','publish','closed','closed','','group_5c4747840a860','','','2021-03-23 07:55:45','2021-03-23 11:55:45','',0,'http://localhost:8082/?post_type=acf-field-group&p=624',0,'acf-field-group','',0),(625,4,'2019-01-22 14:48:20','2019-01-22 16:48:20','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Top - Image','top-image','publish','closed','closed','','field_5c47486901570','','','2019-01-22 14:48:20','2019-01-22 16:48:20','',624,'http://localhost:8082/?post_type=acf-field&p=625',0,'acf-field','',0),(626,4,'2019-01-22 14:48:21','2019-01-22 16:48:21','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Top - Title','top-title','publish','closed','closed','','field_5c47489001571','','','2019-01-22 14:48:21','2019-01-22 16:48:21','',624,'http://localhost:8082/?post_type=acf-field&p=626',1,'acf-field','',0),(627,4,'2019-01-22 14:48:21','2019-01-22 16:48:21','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Top - Text','top-text','publish','closed','closed','','field_5c47489e01572','','','2019-01-22 14:48:21','2019-01-22 16:48:21','',624,'http://localhost:8082/?post_type=acf-field&p=627',2,'acf-field','',0),(628,4,'2019-01-22 14:48:22','2019-01-22 16:48:22','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:8:\"Add Item\";}','Top - Items','top-items','publish','closed','closed','','field_5c4748c401573','','','2019-01-22 14:48:22','2019-01-22 16:48:22','',624,'http://localhost:8082/?post_type=acf-field&p=628',3,'acf-field','',0),(629,4,'2019-01-22 14:48:22','2019-01-22 16:48:22','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Item','item','publish','closed','closed','','field_5c4748d001574','','','2019-01-22 14:48:22','2019-01-22 16:48:22','',628,'http://localhost:8082/?post_type=acf-field&p=629',0,'acf-field','',0),(630,4,'2019-01-22 14:48:22','2019-01-22 16:48:22','a:10:{s:4:\"type\";s:9:\"page_link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"post_type\";a:1:{i:0;s:4:\"page\";}s:8:\"taxonomy\";s:0:\"\";s:10:\"allow_null\";i:0;s:14:\"allow_archives\";i:0;s:8:\"multiple\";i:0;}','Top - Button Link','top-button','publish','closed','closed','','field_5c4748e601575','','','2019-01-22 14:48:22','2019-01-22 16:48:22','',624,'http://localhost:8082/?post_type=acf-field&p=630',4,'acf-field','',0),(631,4,'2019-01-22 14:54:03','2019-01-22 16:54:03','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Services - Presentation text','services-presentation','publish','closed','closed','','field_5c474986bee5b','','','2019-01-22 14:54:03','2019-01-22 16:54:03','',624,'http://localhost:8082/?post_type=acf-field&p=631',5,'acf-field','',0),(632,4,'2019-01-22 14:54:03','2019-01-22 16:54:03','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Call-To-Action - Title','call-title','publish','closed','closed','','field_5c4749bcbee5c','','','2019-01-22 14:54:03','2019-01-22 16:54:03','',624,'http://localhost:8082/?post_type=acf-field&p=632',6,'acf-field','',0),(633,4,'2019-01-22 14:54:03','2019-01-22 16:54:03','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Call-To-Action - Text','call-text','publish','closed','closed','','field_5c4749d7bee5d','','','2019-01-22 14:54:03','2019-01-22 16:54:03','',624,'http://localhost:8082/?post_type=acf-field&p=633',7,'acf-field','',0),(637,4,'2019-01-22 15:03:22','2019-01-22 17:03:22','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:9:\"about.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:14:{i:0;s:9:\"permalink\";i:1;s:11:\"the_content\";i:2;s:7:\"excerpt\";i:3;s:10:\"discussion\";i:4;s:8:\"comments\";i:5;s:9:\"revisions\";i:6;s:4:\"slug\";i:7;s:6:\"author\";i:8;s:6:\"format\";i:9;s:15:\"page_attributes\";i:10;s:14:\"featured_image\";i:11;s:10:\"categories\";i:12;s:4:\"tags\";i:13;s:15:\"send-trackbacks\";}s:11:\"description\";s:0:\"\";}','About Us','about-us','publish','closed','closed','','group_5c474ab82dd3d','','','2019-02-25 18:28:15','2019-02-25 21:28:15','',0,'http://localhost:8082/?post_type=acf-field-group&p=637',0,'acf-field-group','',0),(638,4,'2019-01-22 15:03:22','2019-01-22 17:03:22','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Top - Image','top-image','publish','closed','closed','','field_5c474afbe6e69','','','2019-01-22 15:03:22','2019-01-22 17:03:22','',637,'http://localhost:8082/?post_type=acf-field&p=638',0,'acf-field','',0),(639,4,'2019-01-22 15:03:22','2019-01-22 17:03:22','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Top - Mission text','top-mission','publish','closed','closed','','field_5c474b15e6e6a','','','2019-01-22 15:03:22','2019-01-22 17:03:22','',637,'http://localhost:8082/?post_type=acf-field&p=639',1,'acf-field','',0),(640,4,'2019-01-22 15:03:22','2019-01-22 17:03:22','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Our Idea - Text','idea-text','publish','closed','closed','','field_5c474b3ce6e6b','','','2019-01-22 15:03:22','2019-01-22 17:03:22','',637,'http://localhost:8082/?post_type=acf-field&p=640',2,'acf-field','',0),(641,4,'2019-01-22 15:03:22','2019-01-22 17:03:22','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Ready to be Transformed - Side text','ready-text','publish','closed','closed','','field_5c474b57e6e6c','','','2019-01-22 15:03:22','2019-01-22 17:03:22','',637,'http://localhost:8082/?post_type=acf-field&p=641',3,'acf-field','',0),(642,4,'2019-01-22 15:03:22','2019-01-22 17:03:22','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','About Translucent','about-translucent','publish','closed','closed','','field_5c474b8fe6e6d','','','2019-01-22 15:03:22','2019-01-22 17:03:22','',637,'http://localhost:8082/?post_type=acf-field&p=642',4,'acf-field','',0),(643,4,'2019-01-22 15:03:22','2019-01-22 17:03:22','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Phrase','phrase','publish','closed','closed','','field_5c474bafe6e6e','','','2019-01-22 15:03:22','2019-01-22 17:03:22','',637,'http://localhost:8082/?post_type=acf-field&p=643',5,'acf-field','',0),(644,4,'2019-01-22 15:03:22','2019-01-22 17:03:22','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Author','author','publish','closed','closed','','field_5c474bbfe6e6f','','','2019-01-22 15:03:22','2019-01-22 17:03:22','',637,'http://localhost:8082/?post_type=acf-field&p=644',6,'acf-field','',0),(645,4,'2019-01-22 15:03:22','2019-01-22 17:03:22','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Quality - Image','quality-image','publish','closed','closed','','field_5c474bfae6e70','','','2019-01-22 15:03:22','2019-01-22 17:03:22','',637,'http://localhost:8082/?post_type=acf-field&p=645',7,'acf-field','',0),(646,4,'2019-01-22 15:03:22','2019-01-22 17:03:22','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Quality - Text','quality-text','publish','closed','closed','','field_5c474c13e6e71','','','2019-01-22 15:03:22','2019-01-22 17:03:22','',637,'http://localhost:8082/?post_type=acf-field&p=646',8,'acf-field','',0),(647,4,'2019-01-22 15:03:22','2019-01-22 17:03:22','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Innovation - Image','inovation-image','publish','closed','closed','','field_5c474c2de6e72','','','2019-02-25 18:28:15','2019-02-25 21:28:15','',637,'http://localhost:8082/?post_type=acf-field&p=647',9,'acf-field','',0),(648,4,'2019-01-22 15:03:22','2019-01-22 17:03:22','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Innovation - Text','inovation-text','publish','closed','closed','','field_5c474c4be6e73','','','2019-02-25 18:28:15','2019-02-25 21:28:15','',637,'http://localhost:8082/?post_type=acf-field&p=648',10,'acf-field','',0),(649,4,'2019-01-22 15:03:22','2019-01-22 17:03:22','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Value - Image','value-image','publish','closed','closed','','field_5c474c5ae6e74','','','2019-01-22 15:03:22','2019-01-22 17:03:22','',637,'http://localhost:8082/?post_type=acf-field&p=649',11,'acf-field','',0),(650,4,'2019-01-22 15:03:22','2019-01-22 17:03:22','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Value - Text','value-text','publish','closed','closed','','field_5c474c6ce6e75','','','2019-01-22 15:03:22','2019-01-22 17:03:22','',637,'http://localhost:8082/?post_type=acf-field&p=650',12,'acf-field','',0),(651,4,'2019-01-22 15:03:22','2019-01-22 17:03:22','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:8:\"Add Logo\";}','Trusted Relationships','trusted','publish','closed','closed','','field_5c474c81e6e76','','','2019-01-22 15:03:22','2019-01-22 17:03:22','',637,'http://localhost:8082/?post_type=acf-field&p=651',13,'acf-field','',0),(652,4,'2019-01-22 15:03:22','2019-01-22 17:03:22','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Logo','logo','publish','closed','closed','','field_5c474c91e6e77','','','2019-01-22 15:03:22','2019-01-22 17:03:22','',651,'http://localhost:8082/?post_type=acf-field&p=652',0,'acf-field','',0),(654,4,'2019-01-22 17:07:43','2019-01-22 19:07:43','','bg-home','','inherit','open','closed','','bg-home','','','2021-10-06 23:20:59','2021-10-07 03:20:59','',2,'http://localhost:8082/wp-content/uploads/2019/01/bg-home.jpg',0,'attachment','image/jpeg',0),(655,4,'2019-01-22 17:08:08','2019-01-22 19:08:08','','macbook','','inherit','open','closed','','macbook','','','2021-10-06 23:20:50','2021-10-07 03:20:50','',2,'http://localhost:8082/wp-content/uploads/2019/01/macbook.png',0,'attachment','image/png',0),(659,4,'2019-01-22 17:13:04','2019-01-22 19:13:04','','bg1','','inherit','open','closed','','bg1','','','2021-10-06 23:20:41','2021-10-07 03:20:41','',10,'http://localhost:8082/wp-content/uploads/2019/01/bg1.jpg',0,'attachment','image/jpeg',0),(660,4,'2019-01-22 17:13:26','2019-01-22 19:13:26','','bg2','','inherit','open','closed','','bg2','','','2021-10-06 23:20:16','2021-10-07 03:20:16','',10,'http://localhost:8082/wp-content/uploads/2019/01/bg2.jpg',0,'attachment','image/jpeg',0),(661,4,'2019-01-22 17:13:26','2019-01-22 19:13:26','','bg3','','inherit','open','closed','','bg3','','','2021-10-06 23:20:29','2021-10-07 03:20:29','',10,'http://localhost:8082/wp-content/uploads/2019/01/bg3.jpg',0,'attachment','image/jpeg',0),(663,4,'2019-01-23 13:31:39','2019-01-23 15:31:39','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"case-studies.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:14:{i:0;s:9:\"permalink\";i:1;s:11:\"the_content\";i:2;s:7:\"excerpt\";i:3;s:10:\"discussion\";i:4;s:8:\"comments\";i:5;s:9:\"revisions\";i:6;s:4:\"slug\";i:7;s:6:\"author\";i:8;s:6:\"format\";i:9;s:15:\"page_attributes\";i:10;s:14:\"featured_image\";i:11;s:10:\"categories\";i:12;s:4:\"tags\";i:13;s:15:\"send-trackbacks\";}s:11:\"description\";s:0:\"\";}','Case Studies','case-studies','publish','closed','closed','','group_5c4888a4e8ccd','','','2019-01-23 13:41:56','2019-01-23 15:41:56','',0,'http://localhost:8082/?post_type=acf-field-group&p=663',0,'acf-field-group','',0),(664,4,'2019-01-23 13:41:54','2019-01-23 15:41:54','a:6:{s:4:\"type\";s:12:\"color_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";}','Top background color','top-color','publish','closed','closed','','field_5c4888dec7760','','','2019-01-23 13:41:54','2019-01-23 15:41:54','',663,'http://localhost:8082/?post_type=acf-field&p=664',0,'acf-field','',0),(665,4,'2019-01-23 13:41:54','2019-01-23 15:41:54','a:6:{s:4:\"type\";s:12:\"color_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";}','Top \"Success Story\" color','success-color','publish','closed','closed','','field_5c48895cc7762','','','2019-01-23 13:41:54','2019-01-23 15:41:54','',663,'http://localhost:8082/?post_type=acf-field&p=665',1,'acf-field','',0),(666,4,'2019-01-23 13:41:55','2019-01-23 15:41:55','a:6:{s:4:\"type\";s:12:\"color_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";}','Top text color','top-text-color','publish','closed','closed','','field_5c48897ec7763','','','2019-01-23 13:41:55','2019-01-23 15:41:55','',663,'http://localhost:8082/?post_type=acf-field&p=666',2,'acf-field','',0),(667,4,'2019-01-23 13:41:55','2019-01-23 15:41:55','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Top background image','top-image','publish','closed','closed','','field_5c48893dc7761','','','2019-01-23 13:41:55','2019-01-23 15:41:55','',663,'http://localhost:8082/?post_type=acf-field&p=667',3,'acf-field','',0),(668,4,'2019-01-23 13:41:55','2019-01-23 15:41:55','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Top text','top-text','publish','closed','closed','','field_5c4889acc7764','','','2019-01-23 13:41:55','2019-01-23 15:41:55','',663,'http://localhost:8082/?post_type=acf-field&p=668',4,'acf-field','',0),(669,4,'2019-01-23 13:41:55','2019-01-23 15:41:55','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Customer','costumer','publish','closed','closed','','field_5c4889e3c7765','','','2019-01-23 13:41:55','2019-01-23 15:41:55','',663,'http://localhost:8082/?post_type=acf-field&p=669',5,'acf-field','',0),(670,4,'2019-01-23 13:41:55','2019-01-23 15:41:55','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Industry','industry','publish','closed','closed','','field_5c488a0bc7766','','','2019-01-23 13:41:55','2019-01-23 15:41:55','',663,'http://localhost:8082/?post_type=acf-field&p=670',6,'acf-field','',0),(671,4,'2019-01-23 13:41:55','2019-01-23 15:41:55','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Company Size','company-size','publish','closed','closed','','field_5c488a0cc7767','','','2019-01-23 13:41:55','2019-01-23 15:41:55','',663,'http://localhost:8082/?post_type=acf-field&p=671',7,'acf-field','',0),(672,4,'2019-01-23 13:41:55','2019-01-23 15:41:55','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Location','location','publish','closed','closed','','field_5c488a10c7768','','','2019-01-23 13:41:55','2019-01-23 15:41:55','',663,'http://localhost:8082/?post_type=acf-field&p=672',8,'acf-field','',0),(673,4,'2019-01-23 13:41:56','2019-01-23 15:41:56','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Project Areas','project-areas','publish','closed','closed','','field_5c488a13c7769','','','2019-01-23 13:41:56','2019-01-23 15:41:56','',663,'http://localhost:8082/?post_type=acf-field&p=673',9,'acf-field','',0),(674,4,'2019-01-23 13:41:56','2019-01-23 15:41:56','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Key Stats','key-stats','publish','closed','closed','','field_5c488a14c776a','','','2019-01-23 13:41:56','2019-01-23 15:41:56','',663,'http://localhost:8082/?post_type=acf-field&p=674',10,'acf-field','',0),(675,4,'2019-01-23 13:41:56','2019-01-23 15:41:56','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','About','about','publish','closed','closed','','field_5c488a7dc776b','','','2019-01-23 13:41:56','2019-01-23 15:41:56','',663,'http://localhost:8082/?post_type=acf-field&p=675',11,'acf-field','',0),(676,4,'2019-01-23 13:41:56','2019-01-23 15:41:56','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','The Challenge','the-challenge','publish','closed','closed','','field_5c488a8fc776c','','','2019-01-23 13:41:56','2019-01-23 15:41:56','',663,'http://localhost:8082/?post_type=acf-field&p=676',12,'acf-field','',0),(677,4,'2019-01-23 13:41:56','2019-01-23 15:41:56','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','The Solution','the-solution','publish','closed','closed','','field_5c488a9cc776d','','','2019-01-23 13:41:56','2019-01-23 15:41:56','',663,'http://localhost:8082/?post_type=acf-field&p=677',13,'acf-field','',0),(678,4,'2019-01-23 13:41:56','2019-01-23 15:41:56','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','The Results','the-results','publish','closed','closed','','field_5c488ad1c776e','','','2019-01-23 13:41:56','2019-01-23 15:41:56','',663,'http://localhost:8082/?post_type=acf-field&p=678',14,'acf-field','',0),(679,4,'2019-01-23 13:41:56','2019-01-23 15:41:56','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Logotype','logo','publish','closed','closed','','field_5c488af6c776f','','','2019-01-23 13:41:56','2019-01-23 15:41:56','',663,'http://localhost:8082/?post_type=acf-field&p=679',15,'acf-field','',0),(680,4,'2019-01-23 13:41:56','2019-01-23 15:41:56','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:9:\"Add Image\";}','Gallery','gallery','publish','closed','closed','','field_5c488b02c7770','','','2019-01-23 13:41:56','2019-01-23 15:41:56','',663,'http://localhost:8082/?post_type=acf-field&p=680',16,'acf-field','',0),(681,4,'2019-01-23 13:41:56','2019-01-23 15:41:56','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_5c488b0fc7771','','','2019-01-23 13:41:56','2019-01-23 15:41:56','',680,'http://localhost:8082/?post_type=acf-field&p=681',0,'acf-field','',0),(682,4,'2019-01-23 13:42:38','2019-01-23 15:42:38','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:11:\"process.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:14:{i:0;s:9:\"permalink\";i:1;s:11:\"the_content\";i:2;s:7:\"excerpt\";i:3;s:10:\"discussion\";i:4;s:8:\"comments\";i:5;s:9:\"revisions\";i:6;s:4:\"slug\";i:7;s:6:\"author\";i:8;s:6:\"format\";i:9;s:15:\"page_attributes\";i:10;s:14:\"featured_image\";i:11;s:10:\"categories\";i:12;s:4:\"tags\";i:13;s:15:\"send-trackbacks\";}s:11:\"description\";s:0:\"\";}','Process','process','publish','closed','closed','','group_5c488b4a689da','','','2019-01-23 16:13:12','2019-01-23 18:13:12','',0,'http://localhost:8082/?post_type=acf-field-group&p=682',0,'acf-field-group','',0),(683,4,'2019-01-23 13:49:47','2019-01-23 15:49:47','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Background Image','background-image','publish','closed','closed','','field_5c488b8869ce6','','','2019-01-23 13:49:47','2019-01-23 15:49:47','',682,'http://localhost:8082/?post_type=acf-field&p=683',0,'acf-field','',0),(684,4,'2019-01-23 13:49:47','2019-01-23 15:49:47','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','About text','about','publish','closed','closed','','field_5c488b9a69ce7','','','2019-01-23 13:49:47','2019-01-23 15:49:47','',682,'http://localhost:8082/?post_type=acf-field&p=684',1,'acf-field','',0),(685,4,'2019-01-23 13:49:47','2019-01-23 15:49:47','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Inform & Learn - About','1about','publish','closed','closed','','field_5c488c0c69ce8','','','2019-01-23 16:10:56','2019-01-23 18:10:56','',682,'http://localhost:8082/?post_type=acf-field&p=685',3,'acf-field','',0),(686,4,'2019-01-23 13:49:47','2019-01-23 15:49:47','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Inform & Learn - Right text','1text','publish','closed','closed','','field_5c488c3969ce9','','','2019-01-23 16:10:56','2019-01-23 18:10:56','',682,'http://localhost:8082/?post_type=acf-field&p=686',4,'acf-field','',0),(687,4,'2019-01-23 13:49:47','2019-01-23 15:49:47','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Inception Discovery - Right text','2text','publish','closed','closed','','field_5c488c8d69ceb','','','2019-01-23 16:10:56','2019-01-23 18:10:56','',682,'http://localhost:8082/?post_type=acf-field&p=687',7,'acf-field','',0),(688,4,'2019-01-23 13:49:47','2019-01-23 15:49:47','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:8:\"Add item\";}','Inception Discovery - List','2list','publish','closed','closed','','field_5c488cb869cec','','','2019-01-23 16:10:56','2019-01-23 18:10:56','',682,'http://localhost:8082/?post_type=acf-field&p=688',8,'acf-field','',0),(689,4,'2019-01-23 13:49:48','2019-01-23 15:49:48','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Item','item','publish','closed','closed','','field_5c488ccc69ced','','','2019-01-23 13:49:48','2019-01-23 15:49:48','',688,'http://localhost:8082/?post_type=acf-field&p=689',0,'acf-field','',0),(690,4,'2019-01-23 13:49:50','2019-01-23 15:49:50','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Digital Transformation - About','3about','publish','closed','closed','','field_5c488c7469cea','','','2019-01-23 16:10:56','2019-01-23 18:10:56','',682,'http://localhost:8082/?post_type=acf-field&p=690',10,'acf-field','',0),(691,4,'2019-01-23 13:49:50','2019-01-23 15:49:50','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:8:\"Add item\";}','Digital Transformation - List','3list','publish','closed','closed','','field_5c488cf969cee','','','2019-01-23 16:10:56','2019-01-23 18:10:56','',682,'http://localhost:8082/?post_type=acf-field&p=691',11,'acf-field','',0),(692,4,'2019-01-23 13:49:50','2019-01-23 15:49:50','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Item','item','publish','closed','closed','','field_5c488cf969cef','','','2019-01-23 13:49:50','2019-01-23 15:49:50','',691,'http://localhost:8082/?post_type=acf-field&p=692',0,'acf-field','',0),(693,4,'2019-01-23 13:51:21','2019-01-23 15:51:21','a:8:{s:8:\"location\";a:2:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:4:\"page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"44\";}}i:1;a:1:{i:0;a:3:{s:5:\"param\";s:11:\"page_parent\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"829\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:14:{i:0;s:9:\"permalink\";i:1;s:11:\"the_content\";i:2;s:7:\"excerpt\";i:3;s:10:\"discussion\";i:4;s:8:\"comments\";i:5;s:9:\"revisions\";i:6;s:4:\"slug\";i:7;s:6:\"author\";i:8;s:6:\"format\";i:9;s:15:\"page_attributes\";i:10;s:14:\"featured_image\";i:11;s:10:\"categories\";i:12;s:4:\"tags\";i:13;s:15:\"send-trackbacks\";}s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Services','services','publish','closed','closed','','group_5c488d4420660','','','2022-09-12 02:27:48','2022-09-12 06:27:48','',0,'http://localhost:8082/?post_type=acf-field-group&p=693',0,'acf-field-group','',0),(694,4,'2019-01-23 14:01:25','2019-01-23 16:01:25','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Top Background','top-image','publish','closed','closed','','field_5c488d805f5d4','','','2022-09-12 02:27:47','2022-09-12 06:27:47','',693,'http://localhost:8082/?post_type=acf-field&p=694',0,'acf-field','',0),(695,4,'2019-01-23 14:01:25','2019-01-23 16:01:25','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Top mission text','top-text','publish','closed','closed','','field_5c488e575f5d5','','','2020-06-09 11:37:09','2020-06-09 15:37:09','',693,'http://localhost:8082/?post_type=acf-field&p=695',2,'acf-field','',0),(696,4,'2019-01-23 14:01:25','2019-01-23 16:01:25','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','About title','about-title','publish','closed','closed','','field_5c488e7a5f5d6','','','2020-06-09 11:37:09','2020-06-09 15:37:09','',693,'http://localhost:8082/?post_type=acf-field&p=696',4,'acf-field','',0),(697,4,'2019-01-23 14:01:25','2019-01-23 16:01:25','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','About text','about-text','publish','closed','closed','','field_5c488e945f5d7','','','2020-06-09 11:37:10','2020-06-09 15:37:10','',693,'http://localhost:8082/?post_type=acf-field&p=697',5,'acf-field','',0),(698,4,'2019-01-23 14:01:25','2019-01-23 16:01:25','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Problems','problems','publish','closed','closed','','field_5c488ec75f5d8','','','2020-06-09 11:37:10','2020-06-09 15:37:10','',693,'http://localhost:8082/?post_type=acf-field&p=698',6,'acf-field','',0),(699,4,'2019-01-23 14:01:25','2019-01-23 16:01:25','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Solutions','solutions','publish','closed','closed','','field_5c488ed95f5d9','','','2020-06-09 11:37:10','2020-06-09 15:37:10','',693,'http://localhost:8082/?post_type=acf-field&p=699',7,'acf-field','',0),(700,4,'2019-01-23 14:01:25','2019-01-23 16:01:25','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Difference','difference','publish','closed','closed','','field_5c488eed5f5da','','','2020-06-09 11:37:11','2020-06-09 15:37:11','',693,'http://localhost:8082/?post_type=acf-field&p=700',8,'acf-field','',0),(701,4,'2019-01-23 14:01:25','2019-01-23 16:01:25','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"block\";s:12:\"button_label\";s:14:\"Add panel item\";}','Items Panel','panel','publish','closed','closed','','field_5c488f195f5db','','','2020-06-09 11:37:11','2020-06-09 15:37:11','',693,'http://localhost:8082/?post_type=acf-field&p=701',9,'acf-field','',0),(702,4,'2019-01-23 14:01:25','2019-01-23 16:01:25','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Background','background','publish','closed','closed','','field_5c488f425f5dc','','','2019-01-23 14:01:25','2019-01-23 16:01:25','',701,'http://localhost:8082/?post_type=acf-field&p=702',0,'acf-field','',0),(703,4,'2019-01-23 14:01:25','2019-01-23 16:01:25','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title','title','publish','closed','closed','','field_5c488f525f5dd','','','2019-01-23 14:01:25','2019-01-23 16:01:25','',701,'http://localhost:8082/?post_type=acf-field&p=703',1,'acf-field','',0),(704,4,'2019-01-23 14:01:25','2019-01-23 16:01:25','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:7:\"wpautop\";}','Text','text','publish','closed','closed','','field_5c488f5b5f5de','','','2019-01-23 14:01:25','2019-01-23 16:01:25','',701,'http://localhost:8082/?post_type=acf-field&p=704',2,'acf-field','',0),(705,4,'2019-01-23 14:01:25','2019-01-23 16:01:25','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:7:\"wpautop\";}','Wanna know more text','more-text','publish','closed','closed','','field_5c488f8f5f5df','','','2020-06-09 11:37:12','2020-06-09 15:37:12','',693,'http://localhost:8082/?post_type=acf-field&p=705',10,'acf-field','',0),(706,4,'2019-01-23 14:01:25','2019-01-23 16:01:25','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Phrase','phrase','publish','closed','closed','','field_5c488faf5f5e0','','','2020-06-09 11:37:12','2020-06-09 15:37:12','',693,'http://localhost:8082/?post_type=acf-field&p=706',11,'acf-field','',0),(707,4,'2019-01-23 14:01:25','2019-01-23 16:01:25','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Author','author','publish','closed','closed','','field_5c488fba5f5e1','','','2020-06-09 11:37:13','2020-06-09 15:37:13','',693,'http://localhost:8082/?post_type=acf-field&p=707',12,'acf-field','',0),(708,4,'2019-01-23 14:03:26','2019-01-23 16:03:26','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:11:\"contact.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:14:{i:0;s:9:\"permalink\";i:1;s:11:\"the_content\";i:2;s:7:\"excerpt\";i:3;s:10:\"discussion\";i:4;s:8:\"comments\";i:5;s:9:\"revisions\";i:6;s:4:\"slug\";i:7;s:6:\"author\";i:8;s:6:\"format\";i:9;s:15:\"page_attributes\";i:10;s:14:\"featured_image\";i:11;s:10:\"categories\";i:12;s:4:\"tags\";i:13;s:15:\"send-trackbacks\";}s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Contact','contact','publish','closed','closed','','group_5c488fe8e3c41','','','2022-08-11 18:09:32','2022-08-11 22:09:32','',0,'http://localhost:8082/?post_type=acf-field-group&p=708',0,'acf-field-group','',0),(709,4,'2019-01-23 14:03:26','2019-01-23 16:03:26','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Phone','phone','publish','closed','closed','','field_5c488fee200b5','','','2019-01-23 14:03:26','2019-01-23 16:03:26','',708,'http://localhost:8082/?post_type=acf-field&p=709',0,'acf-field','',0),(710,4,'2019-01-23 14:03:26','2019-01-23 16:03:26','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Address','address','publish','closed','closed','','field_5c488ff4200b6','','','2019-01-23 14:03:26','2019-01-23 16:03:26','',708,'http://localhost:8082/?post_type=acf-field&p=710',1,'acf-field','',0),(711,4,'2019-01-23 14:03:26','2019-01-23 16:03:26','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','E-mail','email','publish','closed','closed','','field_5c489004200b7','','','2019-01-23 14:03:26','2019-01-23 16:03:26','',708,'http://localhost:8082/?post_type=acf-field&p=711',2,'acf-field','',0),(712,4,'2019-01-23 14:03:26','2019-01-23 16:03:26','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Text above contact form','text-contact','publish','closed','closed','','field_5c489019200b8','','','2019-01-23 14:03:26','2019-01-23 16:03:26','',708,'http://localhost:8082/?post_type=acf-field&p=712',3,'acf-field','',0),(713,4,'2019-01-23 14:05:56','2019-01-23 16:05:56','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:11:\"Add feature\";}','Features List','features','publish','closed','closed','','field_5c4890bc3ae1f','','','2020-06-09 11:37:09','2020-06-09 15:37:09','',693,'http://localhost:8082/?post_type=acf-field&p=713',3,'acf-field','',0),(714,4,'2019-01-23 14:05:56','2019-01-23 16:05:56','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Feature','feature','publish','closed','closed','','field_5c4890c93ae20','','','2019-01-23 14:05:56','2019-01-23 16:05:56','',713,'http://localhost:8082/?post_type=acf-field&p=714',0,'acf-field','',0),(723,4,'2019-01-23 16:10:56','2019-01-23 18:10:56','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Inform & Learn - Home resume','1home','publish','closed','closed','','field_5c48ade7a3abb','','','2019-01-23 16:10:56','2019-01-23 18:10:56','',682,'http://localhost:8082/?post_type=acf-field&p=723',2,'acf-field','',0),(724,4,'2019-01-23 16:10:56','2019-01-23 18:10:56','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Inception Discovery - Home resume','2home','publish','closed','closed','','field_5c48adffa3abc','','','2019-01-23 16:10:56','2019-01-23 18:10:56','',682,'http://localhost:8082/?post_type=acf-field&p=724',5,'acf-field','',0),(725,4,'2019-01-23 16:10:56','2019-01-23 18:10:56','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Inception Discovery - About','2about','publish','closed','closed','','field_5c48adcda3aba','','','2019-01-23 16:13:12','2019-01-23 18:13:12','',682,'http://localhost:8082/?post_type=acf-field&p=725',6,'acf-field','',0),(726,4,'2019-01-23 16:10:56','2019-01-23 18:10:56','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Digital Transformation - Home resume','3home','publish','closed','closed','','field_5c48ae0ca3abd','','','2019-01-23 16:10:56','2019-01-23 18:10:56','',682,'http://localhost:8082/?post_type=acf-field&p=726',9,'acf-field','',0),(740,4,'2019-02-01 09:42:56','2019-02-01 11:42:56','','bg-digital-1','','inherit','open','closed','','bg-digital-1','','','2021-10-06 23:20:04','2021-10-07 03:20:04','',44,'http://localhost:8082/wp-content/uploads/2019/02/bg-digital-1.jpg',0,'attachment','image/jpeg',0),(752,4,'2019-02-07 19:51:11','2019-02-07 21:51:11','','bg-devops-1','','inherit','open','closed','','bg-devops-1','','','2021-10-06 23:19:50','2021-10-07 03:19:50','',2,'http://localhost:8082/wp-content/uploads/2019/02/bg-devops-1.jpg',0,'attachment','image/jpeg',0),(753,4,'2019-02-07 19:51:16','2019-02-07 21:51:16','','bg-microservices-1','','inherit','open','closed','','bg-microservices-1','','','2021-10-06 23:19:40','2021-10-07 03:19:40','',2,'http://localhost:8082/wp-content/uploads/2019/02/bg-microservices-1.jpg',0,'attachment','image/jpeg',0),(754,4,'2019-02-07 19:51:18','2019-02-07 21:51:18','','bg-ml-1','','inherit','open','closed','','bg-ml-1','','','2021-10-06 23:19:27','2021-10-07 03:19:27','',2,'http://localhost:8082/wp-content/uploads/2019/02/bg-ml-1.jpg',0,'attachment','image/jpeg',0),(772,4,'2019-03-06 14:29:46','2019-03-06 17:29:46','','mockup_cbb_mobile','','inherit','open','closed','','mockup_cbb_mobile','','','2021-10-06 23:19:01','2021-10-07 03:19:01','',2,'http://localhost:8082/wp-content/uploads/2019/03/mockup_cbb_mobile.png',0,'attachment','image/png',0),(775,4,'2019-03-07 13:03:40','2019-03-07 16:03:40','','devops-bim','','inherit','open','closed','','devops-bim','','','2021-10-06 23:18:55','2021-10-07 03:18:55','',18,'http://localhost:8082/wp-content/uploads/2019/03/devops-bim.jpg',0,'attachment','image/jpeg',0),(776,4,'2019-03-07 13:03:56','2019-03-07 16:03:56','','devops-sec','','inherit','open','closed','','devops-sec','','','2021-10-06 23:18:36','2021-10-07 03:18:36','',18,'http://localhost:8082/wp-content/uploads/2019/03/devops-sec.jpg',0,'attachment','image/jpeg',0),(777,4,'2019-03-07 13:03:58','2019-03-07 16:03:58','','devops-prod','','inherit','open','closed','','devops-prod','','','2021-10-06 23:18:20','2021-10-07 03:18:20','',18,'http://localhost:8082/wp-content/uploads/2019/03/devops-prod.jpg',0,'attachment','image/jpeg',0),(778,4,'2019-03-07 13:03:59','2019-03-07 16:03:59','','devops-kub','','inherit','open','closed','','devops-kub','','','2021-10-06 23:18:06','2021-10-07 03:18:06','',18,'http://localhost:8082/wp-content/uploads/2019/03/devops-kub.jpg',0,'attachment','image/jpeg',0),(779,4,'2019-03-07 13:04:00','2019-03-07 16:04:00','','devops-it','','inherit','open','closed','','devops-it','','','2021-10-06 23:17:52','2021-10-07 03:17:52','',18,'http://localhost:8082/wp-content/uploads/2019/03/devops-it.jpg',0,'attachment','image/jpeg',0),(780,4,'2019-03-07 13:04:03','2019-03-07 16:04:03','','devops-com','','inherit','open','closed','','devops-com','','','2021-10-06 23:17:40','2021-10-07 03:17:40','',18,'http://localhost:8082/wp-content/uploads/2019/03/devops-com.jpg',0,'attachment','image/jpeg',0),(781,4,'2019-03-07 13:04:04','2019-03-07 16:04:04','','devops-block','','inherit','open','closed','','devops-block','','','2021-10-06 23:17:25','2021-10-07 03:17:25','',18,'http://localhost:8082/wp-content/uploads/2019/03/devops-block.jpg',0,'attachment','image/jpeg',0),(785,4,'2019-03-07 13:26:18','2019-03-07 16:26:18','','abou-top','','inherit','open','closed','','abou-top','','','2021-10-06 23:16:59','2021-10-07 03:16:59','',10,'http://localhost:8082/wp-content/uploads/2019/03/abou-top.jpg',0,'attachment','image/jpeg',0),(787,4,'2019-03-07 13:27:48','2019-03-07 16:27:48','','devops-auto','','inherit','open','closed','','devops-auto','','','2021-10-06 23:16:50','2021-10-07 03:16:50','',18,'http://localhost:8082/wp-content/uploads/2019/03/devops-auto.jpg',0,'attachment','image/jpeg',0),(790,4,'2019-03-07 16:31:48','2019-03-07 19:31:48','','about-top','','inherit','open','closed','','about-top','','','2021-10-06 23:16:18','2021-10-07 03:16:18','',10,'http://localhost:8082/wp-content/uploads/2019/03/about-top.jpg',0,'attachment','image/jpeg',0),(793,4,'2019-03-07 17:25:55','2019-03-07 20:25:55','','Tensorflow','','inherit','open','closed','','tensorflow-2','','','2021-10-06 23:16:06','2021-10-07 03:16:06','',10,'http://localhost:8082/wp-content/uploads/2019/03/Tensorflow.jpg',0,'attachment','image/jpeg',0),(794,4,'2019-03-07 17:25:57','2019-03-07 20:25:57','','Spinnaker','','inherit','open','closed','','spinnaker-2','','','2021-10-06 23:16:01','2021-10-07 03:16:01','',10,'http://localhost:8082/wp-content/uploads/2019/03/Spinnaker.jpg',0,'attachment','image/jpeg',0),(795,4,'2019-03-07 17:25:59','2019-03-07 20:25:59','','logo@1x-1-e1551968004407','','inherit','open','closed','','logo1x-1-e1551968004407','','','2021-10-06 23:15:54','2021-10-07 03:15:54','',10,'http://localhost:8082/wp-content/uploads/2019/03/logo@1x-1-e1551968004407.png',0,'attachment','image/png',0),(796,4,'2019-03-07 17:26:00','2019-03-07 20:26:00','','logo','','inherit','open','closed','','logo-2','','','2021-10-06 23:15:42','2021-10-07 03:15:42','',10,'http://localhost:8082/wp-content/uploads/2019/03/logo.png',0,'attachment','image/png',0),(797,4,'2019-03-07 17:26:02','2019-03-07 20:26:02','','google-cloud-platform','','inherit','open','closed','','google-cloud-platform-2','','','2021-10-06 23:15:34','2021-10-07 03:15:34','',10,'http://localhost:8082/wp-content/uploads/2019/03/google-cloud-platform.jpg',0,'attachment','image/jpeg',0),(798,4,'2019-03-07 17:26:03','2019-03-07 20:26:03','','Excellus-Blue-Cross','','inherit','open','closed','','excellus-blue-cross-2','','','2021-10-06 23:15:18','2021-10-07 03:15:18','',10,'http://localhost:8082/wp-content/uploads/2019/03/Excellus-Blue-Cross.jpg',0,'attachment','image/jpeg',0),(799,4,'2019-03-07 17:26:04','2019-03-07 20:26:04','','CBB-Logo-POS-URL-RGB-May2716','','inherit','open','closed','','cbb-logo-pos-url-rgb-may2716-2','','','2021-10-06 23:15:11','2021-10-07 03:15:11','',10,'http://localhost:8082/wp-content/uploads/2019/03/CBB-Logo-POS-URL-RGB-May2716.jpg',0,'attachment','image/jpeg',0),(800,4,'2019-03-07 17:26:05','2019-03-07 20:26:05','','BMO','','inherit','open','closed','','bmo-2','','','2021-10-06 23:14:53','2021-10-07 03:14:53','',10,'http://localhost:8082/wp-content/uploads/2019/03/BMO.png',0,'attachment','image/png',0),(801,4,'2019-03-07 17:26:05','2019-03-07 20:26:05','','2000px-The_Hospital_for_Sick_Children_Logo.svg_','','inherit','open','closed','','2000px-the_hospital_for_sick_children_logo-svg_','','','2021-10-06 23:15:03','2021-10-07 03:15:03','',10,'http://localhost:8082/wp-content/uploads/2019/03/2000px-The_Hospital_for_Sick_Children_Logo.svg_.png',0,'attachment','image/png',0),(802,4,'2019-03-07 17:26:06','2019-03-07 20:26:06','','2000px-Amazon_Web_Services_Logo.svg_','','inherit','open','closed','','2000px-amazon_web_services_logo-svg_','','','2021-10-06 23:14:43','2021-10-07 03:14:43','',10,'http://localhost:8082/wp-content/uploads/2019/03/2000px-Amazon_Web_Services_Logo.svg_.png',0,'attachment','image/png',0),(804,4,'2019-03-08 16:39:11','2019-03-08 19:39:11','','Canadian Black Book Case Study','','publish','closed','closed','','cbb','','','2022-05-13 01:18:10','2022-05-13 05:18:10','',46,'http://localhost:8082/?page_id=804',0,'page','',0),(811,4,'2019-03-08 16:58:19','2019-03-08 19:58:19',' ','','','publish','closed','closed','','811','','','2021-10-13 17:09:15','2021-10-13 21:09:15','',46,'http://localhost:8082/?p=811',11,'nav_menu_item','',0),(816,4,'2019-03-08 17:21:07','2019-03-08 20:21:07','','icon-about-splash','','inherit','open','closed','','icon-about-splash','','','2021-10-06 23:14:37','2021-10-07 03:14:37','',804,'http://localhost:8082/wp-content/uploads/2019/03/icon-about-splash.png',0,'attachment','image/png',0),(820,4,'2019-03-08 17:35:11','2019-03-08 20:35:11','','cbb','','inherit','open','closed','','cbb-2','','','2021-10-06 23:14:29','2021-10-07 03:14:29','',804,'http://localhost:8082/wp-content/uploads/2019/03/cbb.jpg',0,'attachment','image/jpeg',0),(822,4,'2019-03-08 17:37:50','2019-03-08 20:37:50','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"block\";s:12:\"button_label\";s:14:\"Add Case Study\";}','Case Study','case_study','publish','closed','closed','','field_5c82d238cbac5','','','2019-03-08 17:58:03','2019-03-08 20:58:03','',624,'http://localhost:8082/?post_type=acf-field&p=822',8,'acf-field','',0),(823,4,'2019-03-08 17:37:50','2019-03-08 20:37:50','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title','title','publish','closed','closed','','field_5c82d24ccbac6','','','2019-03-08 17:37:50','2019-03-08 20:37:50','',822,'http://localhost:8082/?post_type=acf-field&p=823',0,'acf-field','',0),(824,4,'2019-03-08 17:37:50','2019-03-08 20:37:50','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Text','text','publish','closed','closed','','field_5c82d258cbac7','','','2019-03-08 17:37:50','2019-03-08 20:37:50','',822,'http://localhost:8082/?post_type=acf-field&p=824',1,'acf-field','',0),(825,4,'2019-03-08 17:37:50','2019-03-08 20:37:50','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_5c82d266cbac8','','','2019-03-08 17:37:50','2019-03-08 20:37:50','',822,'http://localhost:8082/?post_type=acf-field&p=825',2,'acf-field','',0),(826,4,'2019-03-08 17:37:50','2019-03-08 20:37:50','a:10:{s:4:\"type\";s:9:\"page_link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"post_type\";a:1:{i:0;s:4:\"page\";}s:8:\"taxonomy\";s:0:\"\";s:10:\"allow_null\";i:0;s:14:\"allow_archives\";i:0;s:8:\"multiple\";i:0;}','Link','link','publish','closed','closed','','field_5c82d275cbac9','','','2019-03-08 17:44:36','2019-03-08 20:44:36','',822,'http://localhost:8082/?post_type=acf-field&p=826',3,'acf-field','',0),(829,4,'2019-03-08 20:59:41','2019-03-09 01:59:41','','Services','','publish','closed','closed','','services','','','2022-05-13 01:51:26','2022-05-13 05:51:26','',0,'http://localhost:8082/?page_id=829',2,'page','',0),(831,4,'2019-03-08 21:01:58','2019-03-09 00:01:58',' ','','','publish','closed','closed','','831','','','2021-10-13 17:09:13','2021-10-13 21:09:13','',829,'http://localhost:8082/?p=831',2,'nav_menu_item','',0),(832,4,'2019-03-08 21:01:58','2019-03-09 00:01:58',' ','','','publish','closed','closed','','832','','','2021-10-13 17:09:14','2021-10-13 21:09:14','',829,'http://localhost:8082/?p=832',5,'nav_menu_item','',0),(833,4,'2019-03-08 21:01:58','2019-03-09 00:01:58',' ','','','publish','closed','closed','','833','','','2021-10-13 17:09:13','2021-10-13 21:09:13','',829,'http://localhost:8082/?p=833',4,'nav_menu_item','',0),(834,4,'2019-03-08 21:01:58','2019-03-09 00:01:58',' ','','','publish','closed','closed','','834','','','2021-10-13 17:09:13','2021-10-13 21:09:13','',829,'http://localhost:8082/?p=834',3,'nav_menu_item','',0),(838,4,'2019-03-10 13:38:00','2019-03-10 17:38:00','\n

404 - this page doesn\'t exist. Please visit our -> Home Page.
You can also get to know our services:

\n','404','','publish','closed','closed','','404-2','','','2019-03-10 15:45:53','2019-03-10 19:45:53','',0,'http://localhost:8082/?page_id=838',0,'page','',0),(840,4,'2019-03-10 14:32:52','2019-03-10 18:32:52','','human-dt','','inherit','open','closed','','human-dt','','','2021-10-06 23:14:07','2021-10-07 03:14:07','',829,'http://localhost:8082/wp-content/uploads/2019/03/human-dt.jpg',0,'attachment','image/jpeg',0),(845,4,'2019-03-11 11:25:40','2019-03-11 15:25:40','','translucent-brand-and-icon-02','','inherit','open','closed','','translucent-brand-and-icon-02','','','2021-10-06 23:13:38','2021-10-07 03:13:38','',0,'http://localhost:8082/wp-content/uploads/2019/03/translucent-brand-and-icon-02.jpg',0,'attachment','image/jpeg',0),(847,4,'2019-03-11 11:30:10','2019-03-11 15:30:10','','translucent-brand-and-icon-02','','inherit','open','closed','','translucent-brand-and-icon-02-2','','','2021-10-06 23:13:32','2021-10-07 03:13:32','',0,'http://localhost:8082/wp-content/uploads/2019/03/translucent-brand-and-icon-02.png',0,'attachment','image/png',0),(848,4,'2019-03-11 11:32:28','2019-03-11 15:32:28','','translucent-brand-and-icon-500by200','','inherit','open','closed','','translucent-brand-and-icon-500by200','','','2021-10-06 23:13:24','2021-10-07 03:13:24','',0,'http://localhost:8082/wp-content/uploads/2019/03/translucent-brand-and-icon-500by200.png',0,'attachment','image/png',0),(859,4,'2019-03-11 17:26:13','2019-03-11 21:26:13','','Solutions','','publish','closed','closed','','859','','','2021-10-13 17:09:13','2021-10-13 21:09:13','',0,'http://localhost:8082/?p=859',1,'nav_menu_item','',0),(868,3,'2019-03-19 21:27:18','2019-03-20 01:27:18','','ChatOps - logo with background small','','inherit','open','closed','','color-logo-with-background-small','','','2021-10-06 23:13:11','2021-10-07 03:13:11','',0,'http://localhost:8082/wp-content/uploads/2019/03/Color-logo-with-background-small.png',0,'attachment','image/png',0),(869,3,'2021-08-25 15:13:10','0000-00-00 00:00:00','\n
\"\"
\n','','','draft','closed','closed','','','','','2021-08-25 15:13:10','2021-08-25 19:13:10','',0,'http://localhost:8082/?page_id=869',0,'page','',0),(871,4,'2012-01-10 08:39:21','2012-01-10 13:39:21','\n

Here is a quick one, I will show you how to extract the primary key and the value from a hibernate entity.

It took me a while to look at the API and see what I need to use, but after swimming in the API it was a couple of lines that got it all done.


First thing that you need to do is load the entity

\n\n\n\n
Parent parent= parentDao.getEntityById(1L);
\n\n\n\n

Once you load the entity call the following methods (code for the methods will follow)

\n\n\n\n

\n\n\n\n
System.out.println(\"print primary key: \" +  HibUtil.extractPrimaryColumn(parent.getClass()) );\nSystem.out.println(\"print primary key value: \" +  HibUtil.extractPrimaryKeyValue(parent,Parent.class) );
\n\n\n\n

Extract primary column name
Here is the code for the first method -> extractPrimaryColumn

\n\n\n\n

Nothing hard about this. First, we load the PersistentClass based on our entity. If all the hibernate mappings are set up correctly there shouldn\'t be any problems.

\n\n\n\n

Once we have the PC we then call this method to get the name of the primary key -> getIdentifierProperty().getName();

\n\n\n\n

\n\n\n\n
    public static String extractPrimaryColumn(Object entity)\n    {\n        PersistentClass localPC = extractPersistentClass(entity);\n\n        //Get pk column and value\n        String name = null;\n        try\n        {\n            name = localPC.getIdentifierProperty().getName();\n        }\n        catch (PropertyNotFoundException pnfe)\n        {\n            logger.info(\"Hib util, property not found\",pnfe);\n        }\n        catch (MappingException me)\n        {\n            logger.info(\"mapping not found\",me);\n        }\n        catch (HibernateException he)\n        {\n            logger.info(\"hibernate exception........but why??\",he);\n        }\n        catch (NullPointerException npe)\n        {\n            logger.info(\"we have a problem getting a value for this entity\",npe);\n        }\n\n        return name;\n    }\n
\n\n\n\n

Extract the value
Second method uses almost the same logic -> extractPrimaryKeyValue

\n\n\n\n

After we get the PC we call the following methiod to get the value of the key -> pkValue = (Long) localPC.getIdentifierProperty().getGetter(clazz).get(entity);

\n\n\n\n
public static Long extractPrimaryKeyValue(Object entity, Class clazz)\n    {\n        PersistentClass localPC = extractPersistentClass(entity);\n\n        //Get pk column and value\n        Long pkValue = null;\n        try\n        {\n            pkValue = (Long) localPC.getIdentifierProperty().getGetter(clazz).get(entity);\n        }\n        catch (PropertyNotFoundException pnfe)\n        {\n            logger.info(\"Hib util, property not found\",pnfe);\n        }\n        catch (MappingException me)\n        {\n            logger.info(\"mapping not found\",me);\n        }\n        catch (HibernateException he)\n        {\n            logger.info(\"hibernate exception........but why??\",he);\n        }\n        catch (NullPointerException npe)\n        {\n            logger.info(\"we have a problem getting a value for this entity\",npe);\n        }\n\n        return pkValue;\n    }
\n\n\n\n

In my next post I will expend and show you how I use this code.

\n\n\n\n

\n','Extract primary key from hibernate entity','','publish','open','open','','extract-primary-key-from-hibernate-entity','','','2019-04-01 15:06:01','2019-04-01 19:06:01','',0,'http://localhost:8082/?p=871',0,'post','',1),(873,3,'2012-05-07 08:43:15','2012-05-07 12:43:15','\n

This 3 part series will talk about the mobile eco system and how native apps, runtime native apps, and mobile web apps tie it all in.

If you are a developer and trying to or thinking of getting into mobile development, this is a guide for you. In just a few years mobile development has changed dramatically. The so called “old days” when we had no tools and were limited by devices are behind us.  These days mobile development is less about the phone and more about the OS. There are both high end and low end feature phones and smartphones. The distinction between the two is becoming less important now. For a while now the market has been shifting towards the smartphones. In the early adopter countries like the US and Canada, smartphones are no longer a status symbol but the norm. If you are designing for the global market and want your app to work on every possible device, you must accomodate different screen sizes, different OS’s, and different programing languages. You willl also need to structure your code so that it has a small footprint and does not “hog” bandwidth. Most feature phones have very limited memory; furthermore, the bandwidth is too expensive for a lot of people in most countries. 

The new mobile eco-system is diverse, confusing, and can be a little intimidating. My experience is with Google Android OS and the Apple iOS so I’m going to limit the scope of this discussion to these. Hopefully, some of you can add some comments about mobile development for RIM BlackBerry OS, Microsoft Windows Mobile, and various Linux OS’s.

\n\n\n\n
\"\"/
\n\n\n\n

Here is how the eco-system breaks down. There are three different versions of apps (more if you combine the three different versions into hybrid apps); we have native apps, runtime native apps, and mobile web apps. Native apps are coded in the native language, have full access to the native API’s, and are written in IDE’s by the OS providers. The runtime native apps are executed through an embedded runtime that exposes the native API’s and uses some sort of easy templating to compile the apps for different devices. The most-used templating is HTML 5, CSS, and JavaScript. Mobile web apps are either just web pages formatted for the mobile device or full apps built using JavaScript Frameworks that use HTML 5, CSS and internal browser databases. 

\n\n\n\n

Native Apps
Android apps are coded in Java programing language. Google wants to be IDE agnostic, but right now the most features that support Android development are found in Eclipse. IntelliJ version 11 has a view pane that will help with graphic user interface development. The code runs in Google’s flavor of JVM. iOS apps are coded in Objective-C. The best tool for iOS development is Xcode, however if you like IntelliJ you can use AppCode from JetBrains for iOS development.  When developing mobile apps, a developer needs to consider the environment. Although we never have infinite resources, the mobile platform has more finite resources than any personal computer or server. Furthermore, each app runs in a sandbox, meaning it is isolated from the other apps. The database and the file system of the other apps and the OS are not accessible to your app. Your app will have the same access to the mobile platform resource as the other apps. You can still affect the phone with your code, therefore you should be a good citizen and think about how your app will fit or work with other apps. With this in mind, the developer should profile and load test the app to see if the device can handle the app. Almost every Android device has different heap size. The average heap size is about 40Mb compared to average server heap size of 2Gb. Regular users will not be able to change the factory set heap size on an Android phone, so you have no choice but to make sure the app will run on different Android phones before releasing the app. The iOS system is a little more predictable, but still has finite resources.
Memory is not the only concern on mobile platforms; the bandwidth and the battery are the other major concerns. You can not assume there is limitless bandwidth, either through ignorance or design mistakes. Some popular email apps pull all the new emails when open or when running in the background. If you are on business trip in a different country and have to pay for the roaming charges and you forget to turn off the app or change some sort of setting, you might be surprised by the bill. In this case a simple change in design, such as an alert asking to pull the emails or a cap on the number of emails that can be pulled at once, would have saved the user a lot of money.  The battery has always been a concern. Now the phone comes with more and more software and hardware features. With every app asking for push notification and location services. The phone’s battery is drained so fast by the apps, you don’t have enough power to make a phone call. Every social media app wants to know your current location. The GPS is one of the most power hungry features on the phone. If your app is running in the background checking the GPS location every few seconds, the battery will be drained very quickly. Depending on the precision required by your app you might want to get the location by less power-hungry means. Both Android and iOS devices have a few different ways of finding your location. You can use cellular tower triangulation – it’s not very accurate but it is low power. The other option is to use WiFi lookup – it’s more accurate than cellular tower lookup but it needs more power. 

\n\n\n\n

part 2 -> Runtime native apps: Appcelerator titanium
part 3 -> Mobile web apps: Sencha and JQuery

\n\n\n\n

Links
Android - http://developer.android.com/index.html
iOS - http://developer.apple.com/devcenter/ios/index.action
Rhodes - http://rhomobile.com/products/rhodes/
Appcelerator - http://www.appcelerator.com/
Sencha Touch - http://www.sencha.com/products/touch/
jQuery Mobile - http://jquerymobile.com/
PhoneGap - http://phonegap.com/
AppCode - http://www.jetbrains.com/objc/

\n','Guide to mobile development: intro and native apps','','publish','open','open','','guide-to-mobile-development-intro-and-native-apps','','','2019-04-01 15:06:01','2019-04-01 19:06:01','',0,'http://localhost:8082/?p=873',0,'post','',0),(875,3,'2012-05-07 08:44:48','2012-05-07 12:44:48','\n

There are times when you need to use the Java Native Interface (JNI) when developing Android applications.  One example that is often used is bitmap processing.  You pass your bitmap to your C/C++ code with a Java native method and you do some work on the pixels in the bitmap.  Here is an example of bitmap processing that we did on recent project.

Before you start you should download and install Android NDK

We wanted to implement flood fill algorithm in a drawing application.  We started with a Java implementations.


\n\n\n\n
public static RectFS floodFillScanLineQueue(int[] pixels,int w, int h, Point pt, int targetColor, int fillColor){\n\n        if(targetColor == fillColor) return null;\n\n        Queue<point> q = new LinkedList<point>();\n\n        q.add(pt);\n        int top = pt.y,bottom=pt.y,left=pt.x,right=pt.x;\n        int y1;\n        boolean spanLeft, spanRight;\n        Point p;\n        boolean fullScreen = true;\n\n        while( q.size() > 0)\n        {\n            p = q.poll();\n            y1 =p.y;\n\n            while(y1 >= 0 && pixels[y1*w+p.x] == targetColor) y1--;\n            y1++;\n            spanLeft = spanRight = false;\n            while(y1 < h && pixels[y1*w+p.x] == targetColor )\n            {\n                pixels[y1*w+p.x]=fillColor;\n                if(top > y1) top = y1;\n                if(bottom < y1) bottom = y1;\n                if(left > p.x) left = p.x;\n                if(right < p.x) right = p.x;\n                if(!spanLeft && p.x > 0 && pixels[y1*w+(p.x-1)] == targetColor)\n                {\n                    q.add(new Point(p.x - 1, y1));\n                    spanLeft = true;\n                }\n                else if(spanLeft && p.x > 0 &&  pixels[y1*w+(p.x-1)] != targetColor)\n                {\n                    spanLeft = false;\n                    fullScreen = false;\n                }\n                if(!spanRight && p.x < w - 1 && pixels[y1*w+(p.x+1)] == targetColor)\n                {\n                    q.add(new Point(p.x + 1, y1));\n                    spanRight = true;\n                }\n                else if(spanRight && p.x < w - 1 && pixels[y1*w+(p.x+1)] != targetColor)\n                {\n                    spanRight = false;\n                    fullScreen = false;\n                }\n                y1++;\n            }\n        }\n\n        return new RectFS(new Rect(left,top,right,bottom),fullScreen);\n    }\n
\n\n\n\n

The performance was good but not great. We wanted our app to be as responsive as we could make it.  We then decide to try out JNI.  Our first step was to take the above method and implement the way it is in C.

\n\n\n\n
JNIEXPORT jobject JNICALL Java_com_golysoft_view_DrawThread_floodFillScanLineQueue(JNIEnv * env, jobject  obj,jintArray pixels,jint w, jint h, jobject pt, jint targetColor, jint fillColor)\n{\n     if(targetColor == fillColor) return NULL;\n     jint *pixelPtr;\n\n     jboolean spanLeft = JNI_FALSE, spanRight = JNI_FALSE;\n     jboolean fullScreen = JNI_TRUE;\n\n\n     pixelPtr = (*env)->GetIntArrayElements(env, pixels, NULL);\n     if (pixelPtr == NULL) {\n         return NULL;\n     }\n\n     jclass listClass = (*env)->FindClass(env, \"java/util/LinkedList\");\n\n     jmethodID listConstructor =  (*env)->GetMethodID(env, listClass, \"<init>\", \"()V\");\n     jmethodID addObj = (*env)->GetMethodID(env, listClass, \"add\", \"(Ljava/lang/Object;)Z\");\n     jmethodID sizeMethod = (*env)->GetMethodID(env, listClass, \"size\", \"()I\");\n     jmethodID pollMethod = (*env)->GetMethodID(env, listClass, \"poll\", \"()Ljava/lang/Object;\");\n\n     jobject listObj = (*env)->NewObject(env, listClass, listConstructor);\n     (*env)->CallBooleanMethod(env, listObj, addObj, pt);\n\n     jclass pointClass = (*env)->FindClass(env, \"android/graphics/Point\");\n     jmethodID pointInitWithData = (*env)->GetMethodID(env,pointClass,\"<init>\",\"(II)V\");\n\n     jfieldID pointX = (*env)->GetFieldID(env,pointClass,\"x\",\"I\");\n     jfieldID pointY = (*env)->GetFieldID(env,pointClass,\"y\",\"I\");\n\n     jint ptx = (*env)->GetIntField(env,pt,pointX);\n     jint pty = (*env)->GetIntField(env,pt,pointY);\n\n     jint top = pty, bottom=pty, left=ptx, right=ptx;\n\n     while( (*env)->CallIntMethod(env,listObj,sizeMethod) > 0)\n     {\n            jobject pointObj = (*env)->CallObjectMethod(env,listObj,pollMethod);\n\n            jint py = (*env)->GetIntField(env,pointObj,pointY);\n            jint px = (*env)->GetIntField(env,pointObj,pointX);\n\n            while(py >= 0 && pixelPtr[py*w+px] == targetColor) py--;\n            py++;\n            spanLeft = spanRight = JNI_FALSE;\n\n            while(py < h && pixelPtr[py*w+px] == targetColor )\n            {\n                pixelPtr[py*w+px]=fillColor;\n\n                if(top > py) top = py;\n                if(bottom < py) bottom = py;\n                if(left > px) left = px;\n                if(right < px) right = px;\n\n                if(spanLeft == JNI_FALSE  && px > 0 && pixelPtr[py*w+(px-1)] == targetColor)\n                {\n                    //Create new point add it to queue\n                    jobject point = (*env)->NewObject(env,pointClass,pointInitWithData,(px-1),py);\n                    (*env)->CallBooleanMethod(env, listObj, addObj, point);\n                    (*env)->DeleteLocalRef(env,point);\n\n                    spanLeft = JNI_TRUE;\n                }\n                else if(spanLeft == JNI_TRUE && px > 0 &&  pixelPtr[py*w+(px-1)] != targetColor)\n                {\n                    spanLeft = JNI_FALSE;\n                    fullScreen = JNI_FALSE;\n                }\n\n                if(spanRight == JNI_FALSE  && px < w - 1 && pixelPtr[py*w+(px+1)] == targetColor)\n                {\n                    //Create new point add it to queue\n                    jobject point = (*env)->NewObject(env,pointClass,pointInitWithData,(px+1),py);\n                    (*env)->CallBooleanMethod(env, listObj, addObj, point);\n                    (*env)->DeleteLocalRef(env,point);\n\n                    spanRight = JNI_TRUE;\n                }\n                else if(spanRight == JNI_TRUE && px < w - 1 && pixelPtr[py*w+(px+1)] != targetColor)\n                {\n                    spanRight = JNI_FALSE;\n                    fullScreen = JNI_FALSE;\n                }\n                py++;\n            }\n\n\n            (*env)->DeleteLocalRef(env,pointObj);\n      }\n\n\n        (*env)->ReleaseIntArrayElements(env, pixels, pixelPtr, 0);\n\n        jclass rectClass = (*env)->FindClass(env, \"android/graphics/Rect\");\n        jclass rectFSClass = (*env)->FindClass(env, \"com/golysoft/util/dto/RectFS\");\n\n        jmethodID rectInit = (*env)->GetMethodID(env,rectClass,\"<init>\",\"(IIII)V\");\n        jmethodID rectFSInit = (*env)->GetMethodID(env,rectFSClass,\"<init>\",\"(Landroid/graphics/Rect;Z)V\");\n\n        jobject boundingRect = (*env)->NewObject(env,rectClass,rectInit,left,top,right,bottom);\n\n        jobject rectFS = (*env)->NewObject(env,rectFSClass,rectFSInit,boundingRect,JNI_TRUE);\n\n        return rectFS;\n}\n
\n\n\n\n

The performance was little bit better but now it was time to really optimize it.  This first attempt was not really using C. It was using C to make calls to the JVM to find and use the Java classes.  We decide to change most of the calls to Java classes to true C code.  Here is the code after little bit of re-write.

\n\n\n\n
void floodFillScanLineQueue(AndroidBitmapInfo* info,void* pixels,jshort x,jshort y,uint16_t targetColor,uint16_t fillColor){\n\n   char spanLeft = 0, spanRight = 0;\n   int16_t py,px;\n\n   struct entry *item;\n\n   SLIST_INIT(&head); //initialize queue\n\n   //Add the initial point to the queue\n   item = malloc(sizeof(struct entry));\n   item->x = x;\n   item->y = y;\n   SLIST_INSERT_HEAD(&head, item, entries);\n\n   while (!SLIST_EMPTY(&head)) {\n\n        item = SLIST_FIRST(&head); //get the first element from the queue\n        SLIST_REMOVE_HEAD(&head, entries); //remove the element from the queue\n\n        //Get the point from the element\n        py = item->y;\n        px = item->x;\n\n        free(item); //element not needed free it\n\n        while(py >= 0 && getPixel(pixels,info,px,py) == targetColor) py--;\n\n        py++;\n        spanLeft = spanRight = 0;\n\n        while(py < info->height && getPixel(pixels,info,px,py) == targetColor )\n        {\n            setPixel(pixels,info,px,py,fillColor);\n           \n            if(!spanLeft && px > 0 && getPixel(pixels,info,px-1,py) == targetColor)\n            {\n                //Create new point add it to queue\n                item = malloc(sizeof(struct entry));\n                item->x = px-1;\n                item->y = py;\n                SLIST_INSERT_HEAD(&head, item, entries);\n\n                spanLeft = 1;\n            }\n            else if(spanLeft && px > 0 &&  getPixel(pixels,info,px-1,py) != targetColor)\n            {\n                spanLeft = 0;\n            }\n\n            if(!spanRight && px < info->width - 1 && getPixel(pixels,info,px+1,py) == targetColor)\n            {\n                //Create new point add it to queue\n                item = malloc(sizeof(struct entry));\n                item->x = px +1;\n                item->y = py;\n                SLIST_INSERT_HEAD(&head, item, entries);\n\n                spanRight = 1;\n            }\n            else if(spanRight && px < info->width - 1 && getPixel(pixels,info,px+1,py) != targetColor)\n            {\n                spanRight = 0;\n            }\n            py++;\n        }\n   }\n}\n
\n\n\n\n

This new implementation was using C list and was accessing the pointer to pixel array created by the method from the Bitmap.h, AndroidBitmap_lockPixels(env, bitmap, &pixels)) method. The previous two version were processing pixel array that was passed in from the Java layer. In the third implementation we decide to do all the processing on the bitmap in the C layer.  Here is the standard template you would follow to process bitmaps in C.

\n\n\n\n
   AndroidBitmapInfo info;\n   void* pixels;\n   int ret;\n\n   if ((ret = AndroidBitmap_getInfo(env, bitmap, &info)) < 0) {\n        LOGE(\"AndroidBitmap_getInfo() failed ! error=%d\", ret);\n        return;\n   }\n\n   if ((ret = AndroidBitmap_lockPixels(env, bitmap, &pixels)) < 0) {\n        LOGE(\"AndroidBitmap_lockPixels() failed ! error=%d\", ret);\n        return;\n   }\n\n\n   //PROCESS YOUR PIXELS HERE\n\n   AndroidBitmap_unlockPixels(env, bitmap);\n\n
\n\n\n\n

You would never want to use JNI for your day to day Android development, but you do have to use it once in a while. I hope this step by step will help you with you JNI development on the Android platform. The final flood fill implementation after load testing morphed into a bit different implementation. We had to optimize and restructure the code event more to handle the very low heap that is on the Android platform.

\n\n\n\n

\n\n\n\n

\n\n\n\n

\n','Android NDK, using JNI bitmap processing - comparing Java to C using flood fill algorithm','','publish','open','open','','android-ndk-using-jni-bitmap-processing-comparing-java-to-c-using-flood-fill-algorithm','','','2019-04-01 15:06:01','2019-04-01 19:06:01','',0,'http://localhost:8082/?p=875',0,'post','',0),(877,3,'2012-06-12 08:47:00','2012-06-12 12:47:00','\n

Every App, nowadays, seems to need to be integrated with Facebook.  One of our recent Android apps required such integration.  The requirement was to allow the user to like a company Facebook page.  Since this App had extremely tight dead lines there was no time to register the app with Facebook.  The registration process creates a Facebook app and generates a App ID that is used to authenticate your Android  app.  Once you have the App ID you download the Facebook SDK for Android and start your Facebook integration.  Because of the lack of time we decided not to register the app and implement our own solution that would allow a user to the like a company website.
Before you can like any thing on Facebook you have to log in.  Hence the first step is you display the Facebook login screen.  Here is the code that will create and display the Facebook login dialog fragment.


\n\n\n\n
  \n   private void showDialog() {\n        DialogFragment newFragment = new FacebookDialog();\n        newFragment.show(getFragmentManager(), \"dialog\");\n    }\n\n\n  public class FacebookDialog extends DialogFragment {\n        public FacebookDialog(){}\n\n        @Override\n        public void onCreate(Bundle savedInstanceState) {\n            super.onCreate(savedInstanceState);\n            setStyle(DialogFragment.STYLE_NO_TITLE,android.R.style.Theme_Holo_Light);\n        }\n\n        @Override\n        public View onCreateView(LayoutInflater inflater, ViewGroup container,Bundle savedInstanceState) {\n            final Context context = getActivity();\n\n            getDialog().getWindow().setLayout(1000,600);\n\n            wv = new WebView(context);\n            wv.setScrollbarFadingEnabled(false);\n            wv.setHorizontalScrollBarEnabled(false);\n            wv.getSettings().setJavaScriptEnabled(true);\n            wv.clearCache(true);\n            wv.loadUrl(\"https://m.facebook.com/\");\n            return wv;\n        }\n }\n
\n\n\n\n

The above code creates a dialog fragment. The fragment display a web view which loads the Facebook login page. The showDialog method creates and shows the dialog. This a basic setup. The dialog will popup and load the Facebook login page. Once you login you will have access to your account. The requirement was to like a company Facebook page. The user can now navigate to the company Facebook page and like it. Since the web view is in a dialog it is difficult to navigate and we want the process to be as fast as possible. Once we started to deal with the web view this became more of a web app issue than Android issue. First thing that we needed to do is to redirect to the company website after login so that the user can quickly like the company and log out and continue to use rest of the app. Here is an updated code that redirect to a company website after login. 

\n\n\n\n
          \n           wv.setWebViewClient(new WebViewClient()\n            {\n                @Override\n                public boolean shouldOverrideUrlLoading(WebView view, String url)\n                {\n                    if (url.startsWith(\"http://m.facebook.com/home.php\")) {\n                        view.loadUrl(\"http://www.facebook.com/translucent.computing\");\n                    }\n                    else{\n                        view.loadUrl(url);\n                    }\n                  return true;\n                }\n            });\n
\n\n\n\n

We added a new web view client to the web view that intercepts all the web view load calls. We then looked for the Facebook home page and redirected to a company website. After you login to Facebook you get redirect to your home page since that page is not likely to change any time soon we conclude that it was reasonable to use the home page url as flag.  Hence, after the user logs in, the next screen they will see is the company Facebook page. Where they can like the page and move one to the rest of the app.  We also added a header to the dialog fragment with a Facebook logout button that will close the dialog as well. This solution allowed as to implement the required feature quickly and we did not have to register the app and use the Facebook SDK.

\n','Android Like Facebook','','publish','open','open','','android-like-facebook','','','2019-04-01 15:06:01','2019-04-01 19:06:01','',0,'http://localhost:8082/?p=877',0,'post','',0),(879,3,'2012-06-13 08:48:28','2012-06-13 12:48:28','\n

In the previous post we showed off the code that allowed us to login into the Facebook and like a company. Here is the iOS version. 

\n\n\n\n
- (void)viewDidLoad {     
[webview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@\"http://m.facbook.com\"]
[super viewDidLoad]
]];
\n\n\n\n

;\n \n}\n\n\n-(BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{\n \n NSURL *url = [request URL];\n \n if([[url absoluteString] hasPrefix:@\"https://m.facebook.com/home.php\"]){\n [webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@\"http://www.facebook.com/translucent.computing\"]]];\n }\n \n return YES;\n}\n\n
The above code loads the Facebook login screen when the controller loads. After the user logs in the code redirects to the company website. This controller has only one outlet, UIWebview. The controller also implements the UIWebViewDelegate, shouldStartLoadingWithRequest is one of the delegate methods. We also added a header to the controller with a Facebook logout button that also closes the controller.

\n','iOS Like Facebook','','publish','open','open','','ios-like-facebook','','','2019-04-01 15:04:42','2019-04-01 19:04:42','',0,'http://localhost:8082/?p=879',0,'post','',0),(881,3,'2012-07-12 08:51:37','2012-07-12 12:51:37','\n

UPDATE  ***
Bluestack comes with its own runtime. You can install an APK using that runtime. Here are the steps:
1. open a terminal

2.  type in : cd /Applications/BlueStacks.app/Contents/Runtime

3.  type in : ./uHD-Adb devices
You\'ll get this output. It is a list of all the Android devices and emulators running/connected to your computer.

* daemon not running. starting it now on port 5037 *
* daemon started successfully *
List of devices attached
HT26MW301535 device
emulator-5554 device

4. To install the APK type in: ./uHD-Adb -s emulator-5554 install /Volumes/OtherHD/projects/Kwik/terry_test.apk

The -s switch works with the name of the device/emulator which we get from the previous command.  If you have more than one emulators running that were started before BlueStack the devices name will have a hight number in the name.  After the install enter the location of your APK. When the command excites successfully you\'ll get this output.

4789 KB/s (98000385 bytes in 19.983s)
pkg: /data/local/tmp/terry_test.apk
Success

***

BlueStacks allows you to run Android apps on your desktop/laptop. They have a launcher for Windows and Mac\'s. The Mac version is currently in Alpha. Since it is still in alpha a lot of the functionality is not there yet. One feature that would be very useful and is missing in the alpha, is to upload your own apk\'s to BlueStacks. Especially for developer, since you might want to test how your app looks/functions in BluesStacks in Windows and Mac\'s. I\'m going to show you how to quickly upload your apk from your IDE to BlueStack. Once you have BlueStacks installed and running, open your Android project in your IDE.  In the run project options choose either \"Show chooser dialog\" in Intellij or \"Always prompt to pick device\" in Eclipse.

\n\n\n\n
\"\"/
\n\n\n\n
\"\"/
\n\n\n\n

Run the project and you will see a popup to choose a device.  In the list of running device you will a see an emulator running that you have not started.

\n\n\n\n
\"\"/
\n\n\n\n
\"\"/
\n\n\n\n

This is the BlueStacks player. Choose that emulator and the app will be deployed to the BlueStacks.
Have fun.

\n','BlueStacks Installing Your Own APK\'s (Mac)','','publish','open','open','','bluestacks-installing-your-own-apks-mac','','','2019-04-01 15:04:42','2019-04-01 19:04:42','',0,'http://localhost:8082/?p=881',0,'post','',0),(883,4,'2012-11-10 08:54:18','2012-11-10 13:54:18','\n

It\'s a crazy busy time here at TCinc.  We didn\'t have much time to work on our blog...we have a lot of exciting stuff we want talk about and we will once we find more time.

In the last year we built over 20 mobile and web apps for various clients.  I must say it\'s been very exciting times.  In addition to our consulting services to which we devote about 50% of our time, we dedicate 40% into internal R&D which includes our own products and  10% is spent familiarizing ourselves with new toys (various new phones, tablets and the apps they offer) which is key to understanding today\'s market.

\n\n\n\n

TCINC APP....

\n\n\n\n

Cloud Doodle -> https://www.amazon.com/Translucent-Computing-Inc-Cloud-Doodle/dp/B00B6L6UR4

\n\n\n\n

Out of our R&D initiative a new app was born: \"Cloud Doodle: Fun, Educational, Interactive!!\"

\n\n\n\n

\n\n\n\n
\"\"/
\n\n\n\n

This a new fun app that allows you to draw freehand, colour existing drawings, send e-cards, and share all that with your friends and family.  This can be a great and fun app for kids and adults.  The first version will be released into the Android world, with iPad/iPhone, Windows and BB following soon!!

\n\n\n\n

\n\n\n\n

TESTING

\n\n\n\n

Complete product testing must be a major part of the development life cycle.  If you work in mobile space you know that fragmentation is a big issue  (It\'s also pretty bad when it come to web apps and  browsers but that market is bit more mature).  Probably the most fragmented ecosystem is Android.  As you can see below the best way to get around that is to test your app on as many devices as you can that cover various sizes and OS versions.  To complement that you will need to use emulators and you will learn how painfully slow that is.

\n\n\n\n
\"\"/
\n\n\n\n

CLOUD DOODLE FEATURES

\n\n\n\n

Over the next couple of weeks we will go over some of the cool features we included in this app and the technical challenges we encountered.  The main feature of the app is the Free Draw which allows you to draw on a blank canvas. Below you can see our designer having some fun with it - he calls it working...hmmm.  In the next blog we will talk more about Free Draw and how he created the drawing below.

\n\n\n\n
\"\"/
\n','TCinc app -> Cloud Doodle mobile drawing app','','publish','open','open','','tcinc-app-cloud-doodle-mobile-drawing-app','','','2020-11-26 23:08:07','2020-11-27 04:08:07','',0,'http://localhost:8082/?p=883',0,'post','',0),(885,4,'2012-12-05 08:55:29','2012-12-05 13:55:29','\n

We are couple weeks away form our official launch party!! We are heavy into testing, here are a few drawings that we did in Cloud Doodle...........FUN = Testing!!

1 -> \"Batman\" 

\n\n\n\n
\"\"/
\n\n\n\n

Source: Uploaded by user via TC on Pinterest

\n\n\n\n

2 -> \"Hey Kids\"

\n\n\n\n
\"\"/
\n\n\n\n

Source: Uploaded by user via TC on Pinterest

\n\n\n\n

3 -> \"Just Chilling\"

\n\n\n\n
\"\"/
\n\n\n\n

Source: Uploaded by user via TC on Pinterest

\n\n\n\n

4 -> \"Bear Love\"

\n\n\n\n
\"\"/
\n','Having fun with testing -> Cloud Doodle drawings','','publish','open','open','','having-fun-with-testing-cloud-doodle-drawings','','','2019-04-01 15:08:29','2019-04-01 19:08:29','',0,'http://localhost:8082/?p=885',0,'post','',0),(887,4,'2012-12-28 08:56:39','2012-12-28 13:56:39','\n

Designing for Cloud Doodle was a very eye opening experience. In an  addition to creating multiple layouts for the different sections of Cloud Doodle (Drawing, Free Draw and Postcards), special care had to be taken for the numerous (putting it lightly) resolutions and aspect ratios. Not only that, a decision had to be made for whether or not we wanted to allow the app be viewable in landscape or portrait view. Ultimately we made the decision to only design for landscape due to the limited screen space available. We wanted to make sure the users had as much space as possible to draw and create their images.

To give you an idea of the diversity of the android platform, take a look at the photo below.

\n\n\n\n
\"\"/
\n\n\n\n

This is a just a fraction of what the android market has to offer.  With over 15 different phones and a half dozen tablets released just this year alone, confirming our design was consistent across all devices was no small task. It took a lot of time, testing and revisions.

\n\n\n\n

\n\n\n\n

Thankfully Android provides a great wealth of information for developers and designers that streamlines the design process by ensuring that you have the knowledge you need to ensure  your content is device ready.
During, testing we found that it was necessary to divide the multiple devices into 4 categories of screen density.

\n\n\n\n

\n\n\n\n
  • ldpi: Low Density screens - 120dpi
  • mdpi: Medium Density screens (also known as \"baseline\") - 160dpi
  • hdpi: High Density screens -  240dpi
  • xhdpi: Extra High Density screens - 320dpi
\n\n\n\n

More than anything, this was necessary for designing our buttons.

\n\n\n\n

http://developer.android.com/guide/practices/screens_support.html

\n\n\n\n

This was done because creating content for every different screen size and density would seriously impact size and memory usage. We wanted to make sure that Cloud Doodle would be accessible for the majority of Android devices out there including those that did not have large internal memory.

\n\n\n\n

By separating device types into these 4 generalized sub groups we were able to limit the amount of customized content needed while letting the Android API handle any necessary adjustments in the background.

\n\n\n\n

While this worked out very well, there was still lots of tweaking that had to be done in terms of resizing of images as well and placement adjustments to make sure content and buttons were visible and accessible.

\n\n\n\n

In the days and weeks to come, I will be continuing to share my experiences in designing for Cloud Doodle and Android in general.

\n\n\n\n

~Anthony
Designer at Translucent Computing Inc.

\n','Designing for Mobile','','publish','open','open','','designing-for-mobile','','','2020-11-26 23:03:41','2020-11-27 04:03:41','',0,'http://localhost:8082/?p=887',0,'post','',0),(889,4,'2019-03-26 08:58:20','2019-03-26 12:58:20','{{unknown}}','','','publish','closed','closed','','669294c70bcf7a05b87dc31852be421f','','','2019-03-26 08:58:20','2019-03-26 12:58:20','',0,'http://localhost:8082/2019/03/669294c70bcf7a05b87dc31852be421f/',0,'oembed_cache','',0),(890,3,'2013-01-22 08:58:36','2013-01-22 13:58:36','\n

We are always trying to improve our apps. Find new and fun ways for the user to interact with our apps.  One way we try to make our apps fun is to make them more user interactive and immersive.  In our drawing & colouring app, Cloud Doodle, we decide to make the postcard section more immersive.  When we initially published the app the postcard screen was very static. Here is how it looked when the user entered the screen.

\n\n\n\n

\n\n\n\n
\"\"/
\n\n\n\n

The user was shown two big buttons, front of the postcard and the back of the postcard.  By pressing either of the buttons, the user would be taken to the edit screen where they would create the postcard.

\n\n\n\n

\n\n\n\n
\"\"/
\n\n\n\n

We have provide a lot of backgrounds and borders for the user to start the creative process. This a picture of postcard after the user has selected a background for the front of the postcard and a border for the back of the postcard.
As you can see the screen is functional and easy to use. Since this is a fun drawing app, we wanted to make the postcard screen fun and immersive.  After few meetings with the team we decide to create a 3d postcard that the user could interact with.  Here is how the final implementation looks like.

\n\n\n\n
\n\n\n\n

With the use of OpenGL we were able to create an interactive and immersive postcard that is fun to play with. Since this a blog for the dev\'s let\'s get into the code.
CodeThe OpenGL code for the postcard activity can broken down into three different section, GL surface view, the renderer, and the postcard 3d object.  To display OpenGL you need a container and GLSurfaceView is what you need to use to display OpenGL rendering.  You can create GLSurfaceView with in your activity or in your layout xml.  Since , we have a toolbar at the top of the screen it was easier just to add the GLSurfaceView to the layout xml and find it by id in the activity.  The GLSurfaceView is also responsible for processing user input.  In this case the user can rotate the the postcard around the y-axis (landsacpe). Hence, we attached on touch listener to the GLSurfaceView to capture the user sliding a finger across the screen. The drawing in the GLSurfaceView is delegate to the renderer, you can to create a renderer and assigne it to the GLSurfaceView.  That is all the configuration that we did for the GLSurfaceView. Here is the code. Since there is a lot of stuff  going on in the activity I\'ll will be just showing only the relevant code.

\n\n\n\n

\n\n\n\n
        mGLSurfaceView = (GLSurfaceView) findViewById(R.id.cardHolder);\n        mRenderer = new PostCardRenderer();\n        mGLSurfaceView.setRenderer(mRenderer);\n        mGLSurfaceView.setRenderMode(GLSurfaceView.RENDERMODE_WHEN_DIRTY);\n\n        mGLSurfaceView.setOnTouchListener(new View.OnTouchListener() {\n            @Override\n            public boolean onTouch(View view, MotionEvent e) {\n                float x = e.getX();\n                switch (e.getAction()) {\n                    case MotionEvent.ACTION_MOVE:\n                        float dx = x - mPreviousX;\n                        mRenderer.mAngleX += dx * TOUCH_SCALE_FACTOR;\n                        mGLSurfaceView.requestRender();\n                }\n                mPreviousX = x;\n                return true;\n            }\n        });\n
\n\n\n\n

The on touch listener captures the change in the finger movement and sets the angle of the postcard that will be rendered. We\'ve set the render mode to RENDERMODE_WHEN_DIRTY and because of that we need to call the requestRender() method after every angle change to render the frame. The rendering is done by the renderer assigned to the GLSurfaceView. The Renderer interface has three basic method that you have implement. One that is called when the view is created, this a good place to initialize your OpenGL properties that will not change throughout the life cycle of the view. Also, it\'s a good place to load your textures. 

\n\n\n\n

\n\n\n\n
        @Override\n        public void onSurfaceCreated(GL10 gl, EGLConfig config) {            \n            gl.glDisable(GL10.GL_DITHER); //Reduces quality but improves performance\n\n            gl.glHint(GL10.GL_PERSPECTIVE_CORRECTION_HINT, GL10.GL_FASTEST);\n\n            gl.glClearColor(0.05f, 0.5f, 0.98f, 0); //Background color\n            gl.glEnable(GL10.GL_TEXTURE_2D); //We will be using textures\n            gl.glEnable(GL10.GL_CULL_FACE); //Only polygons that face the screen will be drawn \n            gl.glShadeModel(GL10.GL_SMOOTH);\n            gl.glEnable(GL10.GL_DEPTH_TEST);\n\n            // Load the texture for the postcard\n            postCard.loadGLTexture(gl);\n        }\n
\n\n\n\n

The other method that you need to implement is onSurfacechange, which is called when the size of the view has change. Here is standard code that creates the viewport and set the projection mode and restes the matrix. 

\n\n\n\n
        @Override\n        public void onSurfaceChanged(GL10 gl, int width, int height) {\n          gl.glViewport(0, 0, width, height);\n           // make adjustments for screen ratio\n          float ratio = (float) width / height;\n          gl.glMatrixMode(GL10.GL_PROJECTION);        // set matrix to projection mode\n          gl.glLoadIdentity();                        // reset the matrix to its default state\n          gl.glFrustumf(-ratio, ratio, -1, 1, 1, 10);  // apply the projection matrix\n        }\n
\n\n\n\n

The third method is the onDrawFrame method that is called to draw the current frame. 

\n\n\n\n
 \n        @Override\n        public void onDrawFrame(GL10 gl) {\n            gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT); //clear the screen\n          \n            gl.glMatrixMode(GL10.GL_MODELVIEW);\n            gl.glLoadIdentity();\n            gl.glTranslatef(0, 0, -3.0f);\n            gl.glRotatef(mAngleX, 0, 1, 0); //Here is where the angle is changed\n\n            postCard.draw(gl); //Here we draw the postcard\n        }\n
\n\n\n\n

The importan calls before the postcard is drawn in the onDrawFrame method are the glTranslatef and glRotatef.  The glTranslatef method moves the object in-closer or further on the screen, z-axis.  If the object is too close you will not see the whole object. If the object is too far it might be appear too small.  The glRotatef method uses the angle from the on touch listener and rotates the postcard around the y-axis.  The last method in the onDrawFrame draws the postcard object.
Before you can draw the object you need to load some textures or all you will see is just some primitive shapes.  The textures are load in the onSurfaceCreated method and here is the code.

\n\n\n\n

\n\n\n\n
       public void loadGLTexture(GL10 gl) {\n\n            Bitmap bitmap1;\n            Bitmap bitmap2;\n\n            //The size are very important and not having correct \n            //sizes will prevent your texture from loading correctly\n            int width = 1024;\n            int height = 512;\n\n            //We down size for smaller screen\n            if (getWindow().getWindowManager().getDefaultDisplay().getWidth() < 1000) {\n                width = 512;\n                height = 256;\n            }\n\n            //Load your bitmaps here with the width and height defined above (create scaled bitmap)\n\n            //Here we flip the back postcard bitmap\n            //This can be done in the draw method by flipping the vertices \n            Matrix matrix = new Matrix();\n            matrix.setScale(-1.0f, 1.0f);\n            bitmap2 = Bitmap.createBitmap(temp, 0, 0, temp.getWidth(), temp.getHeight(), matrix, false);\n            temp.recycle();\n\n            gl.glGenTextures(2, textures, 0);\n\n            gl.glBindTexture(GL10.GL_TEXTURE_2D, textures[0]);\n\n            gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_MIN_FILTER, GL10.GL_NEAREST);\n            gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_MAG_FILTER, GL10.GL_LINEAR);\n            gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_WRAP_S, GL10.GL_CLAMP_TO_EDGE);\n            gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_WRAP_T, GL10.GL_CLAMP_TO_EDGE);\n            gl.glTexEnvf(GL10.GL_TEXTURE_ENV, GL10.GL_TEXTURE_ENV_MODE, GL10.GL_REPLACE);\n\n            GLUtils.texImage2D(GL10.GL_TEXTURE_2D, 0, bitmap1, 0);\n\n            bitmap1.recycle();\n\n            gl.glBindTexture(GL10.GL_TEXTURE_2D, textures[1]);\n\n            gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_MIN_FILTER, GL10.GL_NEAREST);\n            gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_MAG_FILTER, GL10.GL_LINEAR);\n            gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_WRAP_S, GL10.GL_CLAMP_TO_EDGE);\n            gl.glTexParameterf(GL10.GL_TEXTURE_2D, GL10.GL_TEXTURE_WRAP_T, GL10.GL_CLAMP_TO_EDGE);\n            gl.glTexEnvf(GL10.GL_TEXTURE_ENV, GL10.GL_TEXTURE_ENV_MODE, GL10.GL_REPLACE);\n\n            GLUtils.texImage2D(GL10.GL_TEXTURE_2D, 0, bitmap2, 0);\n\n            bitmap2.recycle();\n        }\n
\n\n\n\n

The most importnat part of loading the textures on Android OS is to have the correct width and height.  The width and the height should be, and if you want the code to work on most device it must be, a power of 2.  A lot of the Android device have issues displaying non power of 2 bitmaps as textures. Some of the clues that will tell you that the width and height are not correct are blank textures and incorrectly drawn textures. Here is an example from the Nexus S phone and the Galaxy Tablet.

\n\n\n\n

\n\n\n\n
\"\"/
\n\n\n\n
\"\"/
\n\n\n\n

As you can see the texture is blank on the Nexus S and drawn incorrectly on the Galaxy tablet.
After both of the bitmaps are created we create the textures using the bitmaps.

\n\n\n\n

Before we can draw the postcard we need to define the vertices for the 3d object.  The postcard is a simple rectangle so all we need to do is define four vertices. Also, we need to map the texture to the vertices.  The object vertices are define in 3d space using x,y,z coordinates. The texture is define using UV mapping, which gives us a way to represent 2d image in 3d space. Here are the two arrays defining the object and the texture.  

\n\n\n\n

\n\n\n\n
 \n private float vertices[] = {\n                -3.6f, -2.0f, 0.0f,\n                -3.6f, 2.0f, 0.0f,\n                3.6f, -2.0f, 0.0f,\n                3.6f, 2.0f, 0.0f\n        };\n\n private float texture[] = {\n                0.0f, 1.0f,\n                0.0f, 0.0f,\n                1.0f, 1.0f,\n                1.0f, 0.0f\n        };\n
\n\n\n\n

Before you can use the coordinates in OpenGL you have to convert the arrays to bytes with native byte order. 

\n\n\n\n
           // a float has 4 bytes so we allocate for each coordinate 4 bytes\n            ByteBuffer byteBuffer = ByteBuffer.allocateDirect(vertices.length * 4);\n            byteBuffer.order(ByteOrder.nativeOrder());\n            FloatBuffer vertexBuffer = byteBuffer.asFloatBuffer();\n            vertexBuffer.put(vertices);\n            vertexBuffer.position(0);\n\n            byteBuffer = ByteBuffer.allocateDirect(texture.length * 4);\n            byteBuffer.order(ByteOrder.nativeOrder());\n            FloatBuffer textureBuffer = byteBuffer.asFloatBuffer();\n            textureBuffer.put(texture);\n            textureBuffer.position(0);\n
\n\n\n\n

The last piece of code that is left is the postcard draw method. Here is the code. 

\n\n\n\n
 \n         public void draw(GL10 gl) {\n            gl.glCullFace(GL_BACK);\n\n            gl.glBindTexture(GL10.GL_TEXTURE_2D, textures[0]);\n\n            // Point to our buffers\n            gl.glEnableClientState(GL10.GL_VERTEX_ARRAY);\n            gl.glEnableClientState(GL10.GL_TEXTURE_COORD_ARRAY);\n\n            // Set the face rotation\n            gl.glFrontFace(GL10.GL_CW);\n\n            // Point to our vertex buffer\n            gl.glVertexPointer(3, GL10.GL_FLOAT, 0, vertexBuffer);\n            gl.glTexCoordPointer(2, GL10.GL_FLOAT, 0, textureBuffer);\n\n            // Draw the vertices as triangle strip\n            gl.glDrawArrays(GL10.GL_TRIANGLE_STRIP, 0, vertices.length / 3);\n\n            gl.glCullFace(GL_FRONT);\n\n            gl.glBindTexture(GL10.GL_TEXTURE_2D, textures[1]);\n\n            // Point to our buffers\n            gl.glEnableClientState(GL10.GL_VERTEX_ARRAY);\n            gl.glEnableClientState(GL10.GL_TEXTURE_COORD_ARRAY);\n\n            // Set the face rotation\n            gl.glFrontFace(GL10.GL_CW);\n\n            // Point to our vertex buffer\n            gl.glVertexPointer(3, GL10.GL_FLOAT, 0, vertexBuffer);\n            gl.glTexCoordPointer(2, GL10.GL_FLOAT, 0, textureBuffer);\n\n            // Draw the vertices as triangle strip\n            gl.glDrawArrays(GL10.GL_TRIANGLE_STRIP, 0, vertices.length / 3);\n\n            //Disable the client state before leaving\n            gl.glDisableClientState(GL10.GL_VERTEX_ARRAY);\n            gl.glDisableClientState(GL10.GL_TEXTURE_COORD_ARRAY);\n\n        }\n
\n\n\n\n

The draw method draws the front of the postcard followed by the back of the postcard. Depending how you use the glCullFace and glFronFace setting the textures will either be drawn correctly or flipped horizontally. Here we cull the front and the back of the images and set the front and the back face to clock wise. If you don\'t want to cull the polygons you can remove the glCullFace method and change the second glFrontFace to GL_CCW, which is counter clock wise. This will flip the texture. 

\n\n\n\n

This the basic code that you need to create a 3d object and apply texture to it and make it move. As you can see OpenGL is not only for gaming, but it can be used to enhance the user experience by making your UI more interactive and immersive.

\n','Android OS OpenGL Development','','publish','open','open','','android-os-opengl-development','','','2019-04-01 15:04:42','2019-04-01 19:04:42','',0,'http://localhost:8082/?p=890',0,'post','',0),(892,3,'2013-03-04 09:00:38','2013-03-04 14:00:38','\n

If you\'ve wanted to get into the mobile market and develop an app for Android or iOS, but you don\'t know Java or Objective-C, KWIK is the solution for you. With KWIK and Corona, all you need to know now is how to work with Photoshop; no programming required. Here is a list of items that you need to create an app for both iOS and Android and get it into the store. 

Tools:

\n\n\n\n
  • Corona SDK - $199 for Android or $199 for iOS or $349 for both per year
  • KWIK- $249
  • Photoshop CS5 (or higher) - CS5 for about $350
  • Dev Account for iOS - $99 per year
  • Dev Account for Google Play Store - $25 one time
  • Dev Account for Kindle - $99 per year
\n\n\n\n

You can try the tools for free before you buy them.We are currently using this tool stack at TCInc to create a few fun apps for kids.  With this tool stack you can reduce the time to market by creating a KWIK app with Photoshop and compiling it for both iOS and Android.  I\'m going to create a simple colouring book for kids as an example to show you how you can use KWIK to create a professional app without programming. Before we start, download the tools, install the Corona SDK, and install the KWIK Photoshop plugin. Both Corona and KWIK websites have good documentation on how to set up your development environments.There are a lot of books and colouring book apps out there in both app stores. They are a great way to market your other apps and your company. The colouring book app that I\'m creating is a simple app with a colouring image in the middle and few colours on each side of the image to choose the colour for the colouring.  The tile of the app is Alphabet Colouring.  The assets for this app are reused from our Cloud Doodle Android App. 

\n\n\n\n

Here is the video blog.

\n\n\n\n

\n\n\n\n
\n\n\n\n

Here is the final \"product\".

\n\n\n\n
\n','KWIK Apps for iOS And Android WITHOUT Any Coding','','publish','open','open','','kwik-apps-for-ios-and-android-without-any-coding','','','2020-11-26 23:02:50','2020-11-27 04:02:50','',0,'http://localhost:8082/?p=892',0,'post','',0),(894,4,'2013-04-16 09:01:56','2013-04-16 13:01:56','\n

I wanted to share some excellent design practices that I have picked up for mobile apps. What I am presenting here is not nearly the extent of good info out there, but it is a very good baseline for beginners trying to get there feet wet in designing mobile apps.



User’s first experience
The first few things a new user will be thinking about your app are:
Where am I?What can I do here?Can I do even more?
You want the answers to those questions be be as obvious as possible to your users or you will lose their interest fairly quickly. If your app has multiple sections try to create unique layouts and personalities (if it fits with your type of app). If you have multiple pages to your app that have similar layouts, to differentiate, give each section its own title or icon that indicates the page or section you are in. Don’t keep your users guessing as to what can be done on the screen. If your app has an extended amount of functionality that may not be initially apparent, consider creating a start-up tutorial that loads only on the first time start-up, that walks the user through the functionality of the app.

Important and within reach
You only have so much real estate when it comes to what I like to call “thumb space”. Regardless of how you design your app (portrait, landscape) you want to keep your most important functions/buttons within areas directly around your thumbs. ”Thumb Space”
Whether it’s a smartphone or tablet, chances are the user will be holding the device in a manner that gives them the most flexibility and ease of use. It makes sense to group your main functions in areas that are the easiest to access.

Lord of the Buttons
Let the users know which buttons are in charge. You want to create your interface with a clear hierarchy by designing and displaying the most important functions largely and brightly. Don’t be afraid of making your key functions standout from the rest, maybe try adding a subtle animation that draws the users attention. Be creative and remember that a little hand holding may be needed to make sure that the user is getting the full use out of your app. Mobile devices are used at home, at work and at play!  Remember that there are also exterior elements that can interfere, mainly SUNLIGHT! Try to create enough contrast between important elements and the rest of your screen (ie light background, dark buttons) to make them stand out!

No waiting Games!
If there is one thing you should NEVER EVER do, it is NEVER expose your user to a blank screen. Personally, if I’m using an app and in the middle of a function or screen change, if I see a blank/black screen I’m assuming something is not working right. Always let the user feel like something is happening in the background. There are all sorts of things you can add to show the user that things are running as they should. For example, during short load/save times you can show a spinner rotating on the screen, while during longer periods you could display a progress bar indicating how much time is left. You can get really creative in how you show your background functions, but just remember to let your user know that something is happening.

\n\n\n\n

~Anthony
Graphic Designer at Translucent Computing Inc.

\n','Smart Mobile Design Practices','','publish','open','open','','smart-mobile-design-practices','','','2020-11-26 23:02:06','2020-11-27 04:02:06','',0,'http://localhost:8082/?p=894',0,'post','',0),(897,4,'2013-10-29 09:06:27','2013-10-29 13:06:27','\n

Time to get Creepy!

\n\n\n\n

Creep Me Out - Google Play
With Halloween just around the corner, we here at Translucent Computing released a very scary photo app for Android titled \'Creep Me Out\'. The app lets you take your everyday photos and transform them into scary works of art to scare and share with your friends!

\n\n\n\n
\n\n\n\n

The great thing about Creep Me Out is it\'s versatility. Like most photo applications, it allows you to alter your photos in unique and interesting ways, but unlike the rest, Creep Me Out really knows how to stand out in several horrifying ways:
1) It\'s an open canvas for creativity. Along with an array of props, stamps and filters, the app lets you take advantage of free draw and a massive colour palette. The possibilities are endless, and you\'re the artist. 
2) Scary stamps! Not only are they animated and let you interact with your photos in new, terrifying ways, but each stamp has it\'s own unique noise that plays when you place it on or around your photo. Ever wanted to see what your friends would look like being chased by an army of bloody disembodied zombie hands? Well, now you can!
3) Fonts galore! The app contains a wide selection of spooky fonts that are resizable and rotatable. Want to accent your photo with a really terrifying font? Creep Me Out has got you covered. Want something a little more tame or child friendly for your photo? The app accommodates that too. 
4) Share with your friends! From Facebook to Instagram, it\'s never been easier to get your scary photos out into the world. Need some ideas for how to zombify that special someone? There\'s plenty of Creep Me Out photo examples floating around the net and our social media for you to get inspired by!
5) You can share your drawings on the web! This feature, coming soon, allows you to take your photos from your mobile device and export them to a web viewer, where you can replay your photo\'s terrifying transformation!
Check it out at:
FacebookTwitterPinterest
There\'s an easier way to make your photos scary! Give it a shot with \'Creep Me Out\' today!

\n\n\n\n

~Kelly
Marketing at Translucent Computing Inc.

\n','There\'s an easier way to make your photos scary with \'Creep Me Out\'!','','publish','open','open','','theres-an-easier-way-to-make-your-photos-scary-with-creep-me-out','','','2020-11-26 23:01:24','2020-11-27 04:01:24','',0,'http://localhost:8082/?p=897',0,'post','',0),(899,4,'2013-12-05 09:08:32','2013-12-05 14:08:32','\n

The start of December always puts me in the festive mood. From the houses on my street decorating their homes with lights, to the big Christmas displays down on Bloor, Toronto really comes alive with Christmas fever. And the shopping? We\'re entering the biggest shopping season of the year! 
But amidst all the festivities, I always find myself at a loss for something. Keeping with family tradition, every year we exchange gifts and cards and each other\'s company (and sugar cookies, but I\'d keep those all to myself if I could!). The challenge of giving everyone something unique for Christmas gets harder and harder every year, especially when we live in a generation who is constantly in touch with (and working in) the global world via mobile devices.
So why not gift give with an app?
At TCinc this month, we\'re really getting festive! We\'re releasing a brand new photo app called Kringle Me that lets you spice up your photos with a little Christmas cheer. And we\'ve just recently released a new version of Cloud Doodle: Colour and Draw, just in time to make those last minute Christmas postcards and send them off to your loved ones.
Aside from being a lot of fun, these apps let us do something that syncs up with the technological demands of our age; personalize. By personalizing our postcards, greetings, and other shareable content, we\'re still able to keep the traditions of the past, but use them on a whole new level. This year, I\'m excited to make each and every one of my family members a personalized Christmas card, straight from the Kringle Me photo editor. 
Why not get with the trend and personalize your own Christmas cards using Cloud Doodle or Kringle Me?
Check out the apps here!
Cloud Doodle: Colour & Draw 
Kringle Me

\n\n\n\n
\n\n\n\n

\n\n\n\n

Happy Holidays everyone! 
Kelly

\n','Christmas on the brain','','publish','open','open','','christmas-on-the-brain','','','2019-04-01 15:04:41','2019-04-01 19:04:41','',0,'http://localhost:8082/?p=899',0,'post','',0),(901,4,'2013-12-11 09:08:55','2013-12-11 14:08:55','\n
Gear up for the holidays with Translucent Computing and enter our Kringle Me contest! Over the next two weeks before Christmas, we\'ll be giving away two $25 Google Play Store cards for our Get Kringled raffle! There are two easy ways to enter!





\n\n\n\n

Follow us on our Facebook, Google+ and Twitter accounts here:https://www.facebook.com/translucent.computinghttps://twitter.com/translucentcomphttps://plus.google.com/+Translucentcomputing
By following us on social media, you\'ll receive one entry for our weekly draw!
Or Kringle your photo!Using our Kringle Me app, create or edit a photo and include a Christmas tree or an Ugly Christmas Sweater. Post your Kringled Christmas tree or Ugly Christmas Sweater on our Facebook, Google+ or Twitter using the hashtag #getkringled. Having problems uploading? Email us your social media user name and your Kringle Me photo to social@localhost.

\n\n\n\n

You\'ll receive five entries in our draw for every Kringled photo you submit!
Deadlines:There will be two draws. For our first round, please like, follow or submit your Kringled photo before midnight on December 16th, 2013. The winner will be announced December 17th, 2013.
For the second draw, please like, follow or submit your Kringled photo before midnight on December 23rd, 2013. The winner will be announced on December 24th, 2013.
All followers and submissions will count for both draws.
So what are you waiting for? Get Kringled today!
Need a little inspiration? Check out these awesome Kringled examples below.

\n\n\n\n
\"\"/
\n\n\n\n
\"\"/
\n','Get Kringled Contest!','','publish','open','open','','get-kringled-contest','','','2019-04-01 15:04:41','2019-04-01 19:04:41','',0,'http://localhost:8082/?p=901',0,'post','',0),(903,4,'2013-12-16 09:10:45','2013-12-16 14:10:45','\n

It\'s that time of year again that you either love or hate...

Ugly Christmas sweater party season. 
Your schedule has a massive increase in holiday themed parties where everyone wants to their guests to arrive in the most horrifying, aesthetically unappealing sweaters they could find. Bonus points for vintage! 
But while the parties are fun and festive, there\'s one side effect to an ugly Christmas sweater party that lasts past the holiday season; social media photo ops. That\'s right, that picture of you in your ugly sweater will outlive the fruit cake your grandparents brought over for Christmas dinner that no one dared touch. But instead of having that photo of you over heated and itchy in your thrift store Santa Claus threads being immortalized online forever, wouldn\'t it be easier if you could just throw on an ugly sweater with the swipe of your finger? And if your friends could do the same? And not just one ugly sweater, either. Everyone could get together, try on different ugly sweaters, and post their hilarious photos to Facebook, all without ever having to set foot into a thrift store. 
How is that even possible, you may ask?
Two words:
Kringle Me.
For the past two years, I\'ve been racking my brain for a way to avoid the ugly sweater party fiasco, and Kringle Me gives my friends and I a fun and easy way out.  Kringle Me is Translucent Computing\'s new Christmas photo app. Similar to our previous \'Creep Me Out\' photo app that launched around Halloween, Kringle Me contains a bunch of cool props and overlays that lets you make your photos more festive. And over here at TCinc, we thought having the option of resizable ugly Christmas sweaters would be doing the ugly sweater trend a huge favour. 
With that in mind, I came up with a list why using a Kringle Me is much more satisfying than putting on an actual ugly sweater. 
1) Be a part of the trend without all the itch. Let\'s be realistic here. The worst part is the itch. Create your own hilarious festive masterpiece of cheesey sweater glory instead with a few taps of a screen. And you won\'t have to get rid of a rash in time for that New Year’s dress, either.
2) The festivities don\'t just stop with the sweaters; you can choose from a selection of frames, filters and props to Christmas-ify your photo. Forgot to buy a card for aunt Judy? Send her one of your creations. You\'ll make her laugh all while sharing some festive cheer.
3) There\'s never been a more pleasant way to enjoy an ugly Christmas sweater AND fruitcake at the same time. Seriously, you should check out our fruitcake prop. It looks so delicious that you may actually want to go out and buy a fruitcake of your own. 
4) Sharing clothes has never been so easy. With a variation of ugly Christmas sweaters to choose from, you can upload photos of you, your friends, your family, or even your cat wearing hilariously festive outfits. Nothing says you\'re ready for the holidays like a Facebook page covered in virtual ugly sweaters!

\n\n\n\n
\n\n\n\n

That\'s just the tip of the iceberg! Kringle Me is available in the Google Play Store and Amazon for Android devices. Check it out here
Happy Holidays! 
Kelly

\n','The Ugly Christmas Sweater Party Fiasco','','publish','open','open','','the-ugly-christmas-sweater-party-fiasco','','','2019-04-01 15:04:41','2019-04-01 19:04:41','',0,'http://localhost:8082/?p=903',0,'post','',0),(905,4,'2013-12-19 09:11:42','2013-12-19 14:11:42','\n

With Christmas almost a week away, it\'s time we all started getting ready to send out festive greetings to our family, friends, loved ones and co-workers. In an age where e-cards and Hallmark fall into the borderline generic category during this holiday season, we here at TCinc have found a fun and festive way of making all of your Christmas greetings and activities unique with our app Kringle Me!

\n\n\n\n

Here\'s our list of 10 ways to use Kringle Me this holiday season!

\n\n\n\n

\n\n\n\n
\"\"/
\n\n\n\n

1) Corporate Christmas Joy
Need something to send out to your clients or coworkers this month to spread the festive joy? Kringle Me has a wide selection of fonts you can use to spice up your Christmas photos and send them out as Seasons Greetings cards.

\n\n\n\n
\"\"/
\n\n\n\n

2) Kringle the Kids
Want a way to make memorable Christmas photos without going through the struggle of getting your children into uncomfortable festive outfits? You can dress your kids up with a variety of Kringle Me props and send out their adorable photos to your loved ones. Print them out and put them in the family photo album to ensure hilarity and satisfying embarrassment for years to come.

\n\n\n\n
\"\"/
\n\n\n\n

3) Schedule too packed to make it to that Ugly Christmas Sweater party?
Its like you were there the whole time.

\n\n\n\n
\"\"/
\n\n\n\n

4) Christmas tree ornaments 
Create unique and personal Christmas tree ornaments with your photos from Kringle Me! Just Kringle, save and print them via your computer or bluetooth from your device.

\n\n\n\n
\"\"/
\n\n\n\n

5) Holiday pranks
Nothing says love like posting your friends photo with elf ears on their Facebook wall for their entire network to see.

\n\n\n\n
\"\"/
\n\n\n\n

6) Settle Christmas Tree debates
Think those gold ornaments would look much better than the same old red ones Dad insists on decorating the tree with every year? Give him a visual example of why your taste in Christmas tree decorating is on the trendy side.

\n\n\n\n
\"\"/
\n\n\n\n

7) Fruitcakes you won\'t feel guilty giving away!
We\'ve never seen more lovable fruitcakes. And you won\'t even have to eat them!

\n\n\n\n
\"\"/
\n\n\n\n

8) Kringle your obsessions
Need to find a Christmas photo of your favourite celebrity? Look no further.

\n\n\n\n
\"\"/
\n\n\n\n

9) Your kids can Kringle too!
There\'s an easier way to make festive Christmas cards for friends and family and avoid the mess! Kringle Me is a family friendly app, and appropriate for children of all ages. Let your kids create their own personalized Christmas cards, and share them with the rest of the family!

\n\n\n\n
\"\"/
\n\n\n\n

10) Holiday Memes
For the internet savvy and those in touch with their sense of humour, send them a festive holiday meme they\'ll never forget (and share ALL over their Facebook page for the next two weeks).

\n\n\n\n

Can you discover other ways to use Kringle Me? Click here to download the app today and give it a whirl!

\n\n\n\n
\n\n\n\n

Kelly

\n','The 10 Best Ways To Use Kringle Me!','','publish','open','open','','the-10-best-ways-to-use-kringle-me','','','2019-04-01 15:16:36','2019-04-01 19:16:36','',0,'http://localhost:8082/?p=905',0,'post','',0),(907,3,'2014-01-05 09:15:00','2014-01-05 14:15:00','\n

We bought a robotic arm because it looked cool on the box.  It took us about 3 hours to assemble it. The robot came with a control box that was hardwired to it.  The control box wasn’t designed for kids - the buttons were difficult the press and hold. So after a while the kids didn’t want to control the robot and I became the control engineer. After a few minutes, I got tired of the control box too (it was fun to control the arm, but we wanted more) so I decided to make it more fun. The first thing that we thought of was to add remote control.So in fit of  pretend DIY rage I cut the control box wire and set the robot free.

\n\n\n\n
\"\"/
\n\n\n\n

After a little while I was able to convince the kids that the robot was ok and would soon function again.  I had a quick look at the inside of the control box. I also found a simple circuit diagram inside the manual. Armed with this knowledge, we went scavenging for components.

\n\n\n\n

\n\n\n\n
\"\"/
\n\n\n\n

I have a few IOIO boards that can be connected to an Android device via USB or Bluetooth.

\n\n\n\n

\n\n\n\n
\"\"/
\n\n\n\n

https://github.com/ytai/ioio/wiki/Getting-To-Know-The-Board

\n\n\n\n

So we decided to use the IOIO boards as the control mechanism for the remote control system.  We quickly create a simple power supply for the board. The IOIO has two on board voltage regulators, one a switching regulator that can take 5V-15V and the other one linear regulator that feeds off 5V line.  Based on the components at hand I’ve decide to bypass the voltage regulators use a 9V batter with a 7805 linear voltage regulated that outputs 5V.  Here is a circuit diagram of the power supply for the IOIO.

\n\n\n\n

\n\n\n\n
\"\"/
\n\n\n\n

The IOIO board has 48 I/O pins. I’ve decided to use 10 of the pins to control 5 of the DC motors that are used by the robot arm. 2 pins are assigned to each motor for forward and reverse direction.  Here is the circuit diagram from the manual that show the DC motors on the robot arm. 

\n\n\n\n

\n\n\n\n
\"\"/
\n\n\n\n

The pins on the IOIO can be used in 2 modes, normal and open drain.  The open drain mode the logic low will force the connected circuit to the ground or 0. The logic high in open drain mode will act like it was disconnect the pin from the circuit.  Therefore, we chose the open drain so that we could pull up the the voltage to any thing wanted for the logic high or 1.The DC motors draw a lot of current, relatively what can the pin supply. We can’t drive the motors from the IOIO board.  I decided based on the available components to use automative 12V 5A single pole double throw relay.  The relays separate the IOIO board circuit from the motor circuit and are easily activated with the with low voltage. They are rated for 12V, but can be activate with voltage as low as 6V.  Since the IOIO output pins only output 5V using the open drain mode allows us to provide higher voltage to activate the relays.  I used another 9V battery and a pull up resistor to activate the relays in the open drain mode-logic high.  For debugging, I also added an LED in series with the pull up resistor.  This gave me a quick visual way of determining if the circuit was working correctly.   Here is a circuit that represents the open drain mode-logic high and shows the relay and the DC motor.

\n\n\n\n

\n\n\n\n
\"\"/
\n\n\n\n

Once we had the circuit wired we quickly created an Android app that connects to the IOIO via bluetooth.  I created a simple layout that mimicked the control box:  

\n\n\n\n

\n\n\n\n
\"\"/
\n\n\n\n

To be able to code for the IOIO board you need to download the SDK. You can get it here https://github.com/ytai/ioio/wiki/Downloads
Once you’ve set up your Android project with all the dependencies you are ready to link the UI to the output pin.  The app runs in a loop checking the registered pins and updating the state. To use a pin you first need to requester the pin and then write a value to it. For the digital I/O pins you either write a true or a false to it. Here is the code that defines the pins and writes to them.

\n\n\n\n
    class Looper extends BaseIOIOLooper {\n        private DigitalOutput led_;\n        private DigitalOutput pinM1up;\n        private DigitalOutput pinM1down;\n        private DigitalOutput pinM2up;\n        private DigitalOutput pinM2down;\n        private DigitalOutput pinM3up;\n        private DigitalOutput pinM3down;\n        private DigitalOutput pinM4up;\n        private DigitalOutput pinM4down;\n        private DigitalOutput pinM5left;\n        private DigitalOutput pinM5right;\n\n     \n        @Override\n        protected void setup() throws ConnectionLostException {\n            led_ = ioio_.openDigitalOutput(0, true);\n            pinM1up = ioio_.openDigitalOutput(18, DigitalOutput.Spec.Mode.OPEN_DRAIN, true);\n            pinM1down = ioio_.openDigitalOutput(19, DigitalOutput.Spec.Mode.OPEN_DRAIN, true);\n            pinM2up = ioio_.openDigitalOutput(20, DigitalOutput.Spec.Mode.OPEN_DRAIN, true);\n            pinM2down = ioio_.openDigitalOutput(21, DigitalOutput.Spec.Mode.OPEN_DRAIN, true);\n            pinM3up = ioio_.openDigitalOutput(22, DigitalOutput.Spec.Mode.OPEN_DRAIN, true);\n            pinM3down = ioio_.openDigitalOutput(23, DigitalOutput.Spec.Mode.OPEN_DRAIN, true);\n            pinM4up = ioio_.openDigitalOutput(24, DigitalOutput.Spec.Mode.OPEN_DRAIN, true);\n            pinM4down = ioio_.openDigitalOutput(25, DigitalOutput.Spec.Mode.OPEN_DRAIN, true);\n            pinM5left = ioio_.openDigitalOutput(26, DigitalOutput.Spec.Mode.OPEN_DRAIN, true);\n            pinM5right = ioio_.openDigitalOutput(14, DigitalOutput.Spec.Mode.OPEN_DRAIN, true);\n        }\n\n        /**\n         * Called repetitively while the IOIO is connected.     \n         */\n        @Override\n        public void loop() throws ConnectionLostException {\n            led_.write(!led.isChecked());\n            pinM1up.write(!m1up);\n            pinM2up.write(!m2up);\n            pinM3up.write(!m3up);\n            pinM4up.write(!m4up);\n            pinM5left.write(!m5left);\n            pinM1down.write(!m1down);\n            pinM2down.write(!m2down);\n            pinM3down.write(!m3down);\n            pinM4down.write(!m4down);\n            pinM5right.write(!m5right);\n\n            try {\n                Thread.sleep(100);\n            } catch (InterruptedException ignore) {\n            }\n        }\n    }
\n\n\n\n

There you go - a quick DIY project to add remotely control a robot arm.

\n\n\n\n

Here is how it looks :

\n\n\n\n
\n\n\n\n

Video

\n','Hacking Robotic Arm with Android','','publish','open','open','','hacking-robotic-arm-with-android','','','2020-11-26 22:56:22','2020-11-27 03:56:22','',0,'http://localhost:8082/?p=907',0,'post','',0),(909,4,'2019-03-26 09:16:05','2019-03-26 13:16:05','{{unknown}}','','','publish','closed','closed','','9b879a394434f774510b8a4644dc7bf2','','','2019-03-26 09:16:05','2019-03-26 13:16:05','',0,'http://localhost:8082/2019/03/9b879a394434f774510b8a4644dc7bf2/',0,'oembed_cache','',0),(910,4,'2014-01-10 09:16:10','2014-01-10 14:16:10','\n

What is a hashtag? Also known as an “octothorpe”, “the number sign”, or “pound”, the hashtag is a powerful tool for marketing on social media.  It is represented by this symbol “#”. Its purpose is to link content to a topic. Hashtags categorize keywords. Placing \"#\" before a term makes it searchable within the platform it is used. 

\n\n\n\n
\"\"
\n\n\n\n

Here is an example of a TCinc Twitter post, “#Mac now supports #Windows pic.twitter.com/tn0qjemB1D”.  Now users who are interested in searching about Mac or Windows on twitter, would type “#Mac” or “#Windows” and the post from TCinc would show up as one of the searches. Combining a mix of clever tags makes the content more “searchable”.

\n\n\n\n

Most social media platforms support hashtagging, the only difference is how they are used. For instance, Instagram photos can have multiple hashtags because it is more appropriate to do so on that platform. It is not really appropriate to use too many hashtags when posting something on Facebook.  For the most part, you do not want to spam the world with irrelevant keywords. It is important to keep it clean, organic, and clever. For example, if someone posts a picture of a monkey on Instagram, then tags the following,“#dog #cat #water #sports #android”, it is considered spam. More appropriate would be “#animal #monkey …” you get the point.
When creating a Hashtag from a phrase, all of the words within the phrase must be together without spaces.  Only the characters connected without spaces in sequence will become categorized.  If you leave a space between words when placing # before a phrase, the part of the phrase without spaces will be become the tag. Here is a demonstration of how spacing affects the categorization of a keyword. Example: “You only live once”- “#youonlyliveonce” (correct), “#youonly live once” (pointless).  In the second example, the words “you only” became searchable content.  “YOLO” and “you only” are completely different topics; one associated with pop culture, the other with romance. A spacing error can change everything.
Some hashtags are more effective than others. The most important thing to keep in mind when hashtagging is common sense.  Ask yourself what kind of audience might be searching the keyword you are about to categorize. Who do you want to target? For example \"#Android\" targets Android users, or people who are interested in Android content. Hashtags attract people to the desired content and will directly improve your pages\' SEO if used properly.

\n\n\n\n

~Kamil
Marketing & Sales at Translucent Computing Inc.

\n','THE #HASHTAG','','publish','open','open','','the-hashtag','','','2020-11-26 22:54:00','2020-11-27 03:54:00','',0,'http://localhost:8082/?p=910',0,'post','',0),(912,3,'2014-01-14 09:19:20','2014-01-14 14:19:20','\n

Here is a look of how the system runs together.

\n\n\n\n
\n\n\n\n

Video
We had so much fun playing with the robot that the kids forced me to do another video. Yes they did.  This time we decided to come up with a system that would use a lot of the technologies that we use day to day at Translucent Computing.  We had a quick brain storming session and we decided to use a web application and a mobile application with a leap motion device (https://www.leapmotion.com).  Here\'s a block diagram that shows how the system got put together.

\n\n\n\n
\"\"/
\n\n\n\n

The IOIO board connection to the Android phone via Bluetooth and connection to the robotic arm was explained in previous blog (http://blog.translucentcomputing.com/2014/01/hacking-robotic-arm-with-android.html).
Lets start with leap motion.
Leap motion tracks hands, fingers, and tools in wide open space around the device. The field of view of the device is large enough to track both hands and all fingers at the same time.It has API for all the popular programming languages, C++, Java, Objective-C, JavaScript, and more.  We chose to go with the JavaScript API and integrate leap into a web application server.  We started with the https://github.com/leapmotion/leapjs/blob/master/examples/roll-pitch-yaw.html example from https://github.com/leapmotion/leapjs . We added jQuery JavaScript library to it to make ajax calls, http://jquery.com.  And here is the \"Hello World\" leap example with some modifications.

\n\n\n\n
 \n<script type=\"text/javascript\" src=\"<c:url value=\"/resources/js/leap.js\"/>\"></script>\n<script type=\"text/javascript\" src=\"<c:url value=\"/resources/js/jquery-2.0.3.min.js\"/>\"></script>\n<script>\n var paused = false;\n window.onkeypress = function(e) {\n  if (e.charCode == 32) {\n   if (paused == false) {\n    paused = true;\n   } else {\n    paused = false;\n   }\n  }\n };\n var controller = new Leap.Controller({\n  enableGestures : false\n });\n\n controller.loop(function(frame) {\n    latestFrame = frame;\n    if (paused) {\n     document.getElementById(\'pause\').innerHTML = \"<strong>PAUSED</strong>\";\n     return;\n    } else {\n     document.getElementById(\'pause\').innerHTML = \"\";\n    }\n\n    var str = \"\";\n    for ( var i in frame.handsMap) {\n     var hand = frame.handsMap[i];\n\n     var direction = -1;\n     document.getElementById(\"direction\").innerHTML = \"STOP\";\n\n     if (hand.roll() < -0.5) {\n      document.getElementById(\"direction\").innerHTML = \"RIGHT\";\n      direction = 1;\n     } else if (hand.roll() > 0.5) {\n      document.getElementById(\"direction\").innerHTML = \"LEFT\";\n      direction = 2;\n     } else if (hand.pitch() > 0.5) {\n      document.getElementById(\"direction\").innerHTML = \"UP\";\n      direction = 3;\n     } else if (hand.pitch() < -0.5) {\n      document.getElementById(\"direction\").innerHTML = \"DOWN\";\n      direction = 4;\n     }\n     \n     $.getJSON(\n       \"${pageContext.request.contextPath}/saveDirection?direction=\"\n         + direction, function(result) {\n       });\n\n     str += \"<p>\" + \"<strong>Roll:</strong> \" + hand.roll()\n       + \"<br/><strong>Pitch:</strong> \" + hand.pitch()\n       + \"<br/><strong>Yaw:</strong> \" + hand.yaw()\n       + \"</p>\";\n    }\n    console.log(str);\n    document.getElementById(\'out\').innerHTML = str;\n   });\n</script>\n\n<body>\n <div id=\"pause\"></div>\n <div id=\"out\"></div>\n\n <h3>Direction</h3>\n <div id=\"direction\"></div>\n</body>\n
\n\n\n\n

It starts with some basic wiring for the pause key.  All the leap code runs inside the controller loop.  For each frame, basic data segment returned by leap, we check the hand object.  We wired the roll to left and right arm movements and pitch to up and down arm movements.  We send the pitch and roll data to the server using ajax and jQuery.  The leap runs at a high frame rate; for each frame it calls the server. (This is not optimal and in a real app we would limit the chatter between leap and the server.)

\n\n\n\n

The laptop is running a server that runs the leap web page and saves the leap data.  We really like Spring framework (http://projects.spring.io/spring-framework/)  and for most of our Java web apps we use Spring and Spring MVC.  If you are working with Spring and setting up a new project the best way to do it is to use Spring Tool Suite (STS).  STS is an Eclipse based IDE that has been designed for Spring development.  We created a blank Spring MVC project and set up the tc server developer edition to use with the app.  The server is integrated with STS so that makes for easy setup.  We also added flexjson dependency to the pom.xml Maven file. The flexjson library is used for serializing object to JSON and it is the one I prefer to use.  A setup detail that is often missed with a Maven project structure is that any resources like JavaScript and CSS should be placed in resources directory under webapp directory. You should also have the resources mapping the servlet-contect.xml. 
<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory --><resources mapping=\"/resources/**\" location=\"/resources/\" />
We placed both the jQuery and leap Javascript in the resources directory.  Since this is a simple app we used a single controller for all of the requests. We mapped the main request and a few other requests for testing purposes in the HomeController.java. Here is the controller:

\n\n\n\n
 \n@Controller\npublic class HomeController {\n\n @Autowired\n private ServletContext servletContext;\n\n private static final Logger logger = LoggerFactory.getLogger(HomeController.class);\n\n @RequestMapping(value = \"/\", method = RequestMethod.GET)\n public String home() {\n  logger.info(\"Welcome home!\");\n  return \"leapdata\";\n }\n\n @SuppressWarnings(\"unchecked\")\n @RequestMapping(value = \"/listDirections\", method = RequestMethod.GET)\n public String listOfDirections(Model model) {\n  List queue = (List) servletContext\n    .getAttribute(\"queue\");\n  model.addAttribute(\"queue\", queue);\n  return \"listDirections\";\n }\n\n @RequestMapping(value = \"/saveDirection\", method = RequestMethod.GET, headers = \"Accept=application/json\")\n @ResponseBody\n public void saveDirection(@RequestParam Integer direction) {\n  logger.info(\"Getting direction :\" + direction);\n  if (direction != null) {   \n   saveToQueue(direction);\n  }\n }\n\n @RequestMapping(value = \"/eatQueueItem\", method = RequestMethod.GET, headers = \"Accept=application/json\")\n @ResponseBody\n public ResponseEntity eatQueueItem() {\n  logger.info(\"Eating\");\n  QueueItem lastItem = getLastItem();\n\n  HttpHeaders headers = new HttpHeaders();\n  headers.add(\"Content-Type\", \"application/json; charset=utf-8\");\n  \n  if (lastItem == null) {\n   return new ResponseEntity(headers, HttpStatus.NOT_FOUND);\n  }\n\n  return new ResponseEntity(lastItem.toJSON(), headers,HttpStatus.OK);\n }\n\n @SuppressWarnings(\"unchecked\")\n private QueueItem getLastItem() {\n  List queue = (List) servletContext.getAttribute(\"queue\");\n  if (queue != null && !queue.isEmpty())\n   return ((LinkedList) queue).removeLast();\n  else\n   return null;\n }\n\n @SuppressWarnings(\"unchecked\")\n private void saveToQueue(Integer direction) {\n  List queue = (List) servletContext.getAttribute(\"queue\");\n  if (queue == null) {\n   queue = new LinkedList();\n   servletContext.setAttribute(\"queue\", queue);\n  }\n\n  if (!queue.isEmpty()) {\n   QueueItem queueItem = ((LinkedList) queue).getLast();\n   if (!queueItem.getDirection().equals(direction)) {\n    queue.add(new QueueItem(direction));\n   }\n  } else {\n   queue.add(new QueueItem(direction));\n  }\n }\n\n static public class QueueItem {\n  private Integer direction = -1;\n  private String strDirection = \"STOP\";\n\n  public QueueItem(Integer direction) {\n   this.direction = direction;\n   switch (direction) {\n   case -1:\n    logger.info(\"STOP\");    \n    strDirection = \"STOP\";\n    break;\n   case 1:\n    logger.info(\"RIGHT\");\n    strDirection = \"RIGHT\";\n    break;\n   case 2:\n    logger.info(\"LEFT\");\n    strDirection = \"LEFT\";\n    break;\n   case 3:\n    logger.info(\"UP\");\n    strDirection = \"UP\";\n    break;\n   case 4:\n    logger.info(\"DOWN\");\n    strDirection = \"DOWN\";\n    break;\n   default:\n    logger.info(\"STOP DEFAULT\");\n    strDirection = \"STOP\";\n    break;\n   }\n  }\n\n  public Integer getDirection() {\n   return direction;\n  }\n\n  public void setDirection(Integer direction) {\n   this.direction = direction;\n  }\n\n  public String getStrDirection() {\n   return strDirection;\n  }\n\n  public void setStrDirection(String strDirection) {\n   this.strDirection = strDirection;\n  }\n  \n  public String toJSON(){\n   return new JSONSerializer().exclude(\"*.class\").serialize(this);\n  }\n }\n}\n
\n\n\n\n

The first thing that happens in the controller is the wiring of the servlet context.  Since we did not want to set up Hibernate for this simple app, we decided to save the leap data in the servlet context.  The home method displays the leap web page.  The saveDirection method is called using ajax in the leap web page to save the leap data.  The eatQueueItem method is the method that is used to retrieved the leap data.  Other methods are used for testing.

\n\n\n\n

Once the server is started and the leap motion is used by moving your hand over it, the data is queued up on the server.  We decided to use an Android phone to pull the data from the web server.  We added a REST web service code to the IOIO control code.  The web service makes a request to eatQueueItem method and gets back a JSON string that we then use to decide which I/O pins to turn on in the IOIO. Here is the web service code used in the Android app :

\n\n\n\n
 \n class Looper extends BaseIOIOLooper {\n        private DigitalOutput pinM1up;\n        private DigitalOutput pinM1down;\n        private DigitalOutput pinM5left;\n        private DigitalOutput pinM5right;\n\n        private HttpClient httpClient;\n        private HttpGet httpGet;\n\n        private boolean processingWebservice = false;\n\n        @Override\n        protected void setup() throws ConnectionLostException {\n            this.httpClient = new DefaultHttpClient();\n            this.httpGet = new HttpGet(\"http://192.168.1.9:8080/diy/eatQueueItem\");\n\n            pinM1up = ioio_.openDigitalOutput(19, DigitalOutput.Spec.Mode.OPEN_DRAIN, true);\n            pinM1down = ioio_.openDigitalOutput(18, DigitalOutput.Spec.Mode.OPEN_DRAIN, true);\n\n            pinM5left = ioio_.openDigitalOutput(26, DigitalOutput.Spec.Mode.OPEN_DRAIN, true);\n            pinM5right = ioio_.openDigitalOutput(14, DigitalOutput.Spec.Mode.OPEN_DRAIN, true);\n        }\n\n        /**\n         * Called repetitively while the IOIO is connected.\n         */\n        @Override\n        public void loop() throws ConnectionLostException {\n            if (!processingWebservice)\n                pullNextDirection();\n\n            pinM1up.write(!m1up);\n            pinM1down.write(!m1down);\n\n            pinM5left.write(!m5left);\n            pinM5right.write(!m5right);\n\n            try {\n                Thread.sleep(100);\n            } catch (InterruptedException ignore) {\n            }\n        }\n\n        public void pullNextDirection() {\n            processingWebservice = true;\n            try {\n                HttpResponse response = httpClient.execute(httpGet);\n\n                HttpEntity entity = response.getEntity();\n                if (entity != null) {\n                    InputStream is = entity.getContent();\n                    BufferedReader reader = new BufferedReader(new InputStreamReader(is));\n\n                    String line = null;\n                    try {\n                        line = reader.readLine();\n                    } catch (IOException e) {\n                        e.printStackTrace();\n                    } finally {\n                        try {\n                            is.close();\n                        } catch (IOException e) {\n                            e.printStackTrace();\n                        }\n                    }\n\n                    if (line != null) {\n                        Log.d(\"Http Response:\", line);\n                        try {\n                            JSONObject jsonObject = new JSONObject(line);\n                            if (jsonObject.has(\"direction\")) {\n                                processDirection(jsonObject.getInt(\"direction\"), jsonObject.getString(\"strDirection\"));\n                            }\n                            else {\n                                processDirection(-1, \"STOP\");\n                            }\n                        } catch (JSONException e) {\n                            e.printStackTrace();\n                        }\n                    }\n                    else {\n                        processDirection(-1, \"STOP\");\n                    }\n                }\n            } catch (ClientProtocolException e) {\n                e.printStackTrace();\n            } catch (IOException e) {\n                e.printStackTrace();\n            }\n\n            processingWebservice = false;\n        }\n\n        private void processDirection(int direction, final String strDirection) {\n            switch (direction) {\n                case -1:\n                    m5right = false;\n                    m5left = false;\n                    m1up = false;\n                    m1down = false;\n                    break;\n                case 1:\n                    m5right = true;\n                    break;\n                case 2:\n                    m5left = true;\n                    break;\n                case 3:\n                    m1up = true;\n                    break;\n                case 4:\n                    m1down = true;\n                    break;\n                default:\n                    m5right = false;\n                    m5left = false;\n                    m1up = false;\n                    m1down = false;\n                    break;\n            }\n\n            WebserviceActivity.this.runOnUiThread(new Runnable() {\n                @Override\n                public void run() {\n                    ((TextView) findViewById(R.id.currentDirection)).setText(strDirection);\n                }\n            });\n        }\n    }\n\n
\n\n\n\n

The http client is set up at the same time as the I/O pins.  The web service call is made every time the loop method is called. Since that happens at a high rate, we add a very simple “semaphore” to stop the web service being called while another web service call is running.  The JSON string from the response is converted into a JSON object and processed.  If the last piece of code looks wierd, that\'s because UI updates can only be done in a UI thread.  Since the IOIO runs in its own thread we need to tell the app to run the text update in a UI thread.

\n\n\n\n

Some other things that you can do with this system is to control the arm over the internet.  May be control a Mars rover arm to collect samples. Record the hand motions and replay them later. Use the record feature to pre program a robot arm in an assembly plant. Or may be create a perfect basketball thrower.  Endless possibilities.

\n','Hacking Robotic Arm With Leap Motion','','publish','open','open','','hacking-robotic-arm-with-leap-motion','','','2019-04-01 15:13:20','2019-04-01 19:13:20','',0,'http://localhost:8082/?p=912',0,'post','',0),(914,3,'2014-02-14 09:22:49','2014-02-14 14:22:49','\n

Artificial Intelligence (AI), is a broad and complicated branch of computer science, a further subcomponent being Machine Learning which concerns itself with... you guessed it... learning.    At Translucent Computing, we are currently developing applications that use machine learning algorithms.  Machine learning is not a new field of study, but with the exponential growth in computer processing power we can build systems now that are cable to learning and processing data in real time.  One of the popular examples of machine learning is object recognition.  Object recognition refers to the tasks of finding, identifying, and processing objects in an image or a video.  Object recognition these days can be found in a lot of places, from robotic control systems to face detection in your mobile phone.  To show a full use case from bottom to the top, I will demonstrate machine learning performing object recognition on human handwriting. We will teach the computer to recognize hand-written numbers. 

\n\n\n\n

We started the machine learning process with creating a training data set that can be processed by a computer.  Like teaching a child, the best way to teach a computer to recognize an object is to show an image of the object to the computer.  Since we are teaching the computer to recognize hand-written numbers we start with generating a data set in our drawing application, Cloud Doodle. Here is a sample:

\n\n\n\n
\"\"/
\n\n\n\n
\"\"/
\n\n\n\n

We used the drawing app to draw multiple version of each number from 0-9.  We then created individual files from each number so that it would be easier to submit the images to the learning algorithm.  
After creating the initial data set, we began to build the learning system.  The best way to prototype a learning system is to use Matlab or Octave.  Both math programs have the necessary tools for developing a learning system quickly and efficiently.  The most-used functionality in developing machine learning algorithms that are provided by both programs are support for linear algebra with matrix-based syntax, and statistical libraries. We used Octave for this blog since it is an open source software and available for all OS\'s.  
The are multiple types of machine learning algorithms. The two major ones are supervised learning and unsupervised learning.  Supervised learning algorithms are trained on labeled data and unsupervised learning operate on unlabeled data.  Labeled data refers to data where we know the input and the corresponding output. Our machine learning algorithm is a supervised learning algorithm, since we have the input and we know what the output should be. If we pass the image of number 9 into algorithm the output should be the number 9.  Through this supervised learning method we can teach the computer to recognize hand-written numbers. It learns from every image that is passed into the algorithm.  With each new input its understating of the numbers improves. There is point where more data will not make much of a difference in the accuracy of recognizing the correct number. To simplify this blog we will defer the discussion of bias and variance to another time. There are several ways to implement a supervised learning algorithm, in this blog we will limit the discussion to neural networks.
Artificial neural networks (NN) have been inspired by the human brain and they try to mimic the interconnected neurons in the brain.  There are many different types of NN, here we will only concentrate on the most common one: a fully connected feed forward multilayer perceptron network.  Here is an example of such NN and it is the same network architecture that we used for our NN.  

\n\n\n\n

\n\n\n\n

\n\n\n\n
\"\"/
\n\n\n\n

As you can see it gets complicated fairly quickly so I’ve only created a diagram of a network with 3 inputs and a bias input, a hidden layer with 3 neurons and a bias node, and one neuron in the output layer.  The network in the diagram has a binary output which is either true or false.  The architecture used in our NN consists of 1601 inputs, 101 neurons in the hidden layer and 10 output neurons.  The size of the input layer in our NN is made up of all the pixels in the 40x40 pixel image that makes up the image of the hand-written number, plus the bias input. The 10 outputs are for the numbers 0 to 9. There are no hard rules when it comes to deciding on the NN architecture.  You want to come up with the most efficient network you can.  We ran the training set with multiple configurations and with this particular training data set we found that the best accuracy occurred when we set the hidden neurons to 100.  Also, for this blog we chose to use only one hidden layer to simplify the calculations and there was no significant gain in accuracy when we tested the network with multiple hidden layers.
Each connection between two nodes represented in the diagram has a weight associated with it. The training process adjusts the weights and through this adjustment the network learns.   To reduce the clutter in the above diagram I’ve omitted the weights that we are determining during the learning process. I’m going to use Θ (theta) to represent the weight between the connected nodes. To give an example of how to process such a network I’m going to start with node ain the hidden layer from the diagram above.  Since this is a fully connected network all the inputs feed into node a1.  When used in our NN all the pixels from the image are feeding into the that node.  The extra input node x0 is called the bias node and for now we will ignore it. Together with the weights here is the formula for the node.
            a= g(Θ10 x0 + Θ11 x1 + Θ12 x2 + Θ13 x3)
This mathematical representation is the same as the visual representation above which could be described thusly:      1.All the inputs feed into the node.       2.The inputs are adjusted by the weight and are processed.        3.The output from the node is fed into the input of the next node.  The function g() in the formula is called the activation function and it’s the method by which the inputs are processed. In our NN we choose the logistic function for the activation function.  The logistic function is a sigmoid curve represented by the question:

\n\n\n\n
\"\"/
\n\n\n\n

The curve looks like this:

\n\n\n\n
\"\"/
\n\n\n\n

The logistic function limits the output from the neurons to values between 0 and 1.  This is not the best biological representation of a neuron, but this function has some nice mathematical properties and it works well for object recognition.  One of the attractive mathematical properties of the sigmoid function is the easy of calculating the derivative which we will exploit in the learning algorithm implementation.  The bias node, x0, is not always used in the NN; we chose to use the bias node to give more flexibility to the NN.  Here is a graph that shows what happens when a bias unit is applied to the sigmoid curve.

\n\n\n\n
\"\"/
\n\n\n\n

By adding a negative or positive bias, you can shift the sigmoid curve to the right or left.
To have an effective learning algorithm it needs to be able to learn from its mistakes.  The algorithm gets feedback from the expected result and the actual result and it needs to adjust its \'thinking\' and correct any discrepancy between the two results.  If we show an image of number 5 to the algorithm and it thinks that it is a different number, ex. 2, it needs to be able to dynamically adjust all the weights in the network and correct its thinking to come up with a correct result. This process of self-correction is implemented with a backpropagation algorithm.  The result from recognizing an object is back propagated through the network and an error is calculated at each node.  To have an accurate NN we need to minimize that error at each node. The error function for our NN is:

\n\n\n\n
\"\"/
\n\n\n\n

- The second term in the equation is the regularization term and it effects the variance/bias of the NN. I will defer analyzing that term to the variance/bias blog.- m is the number of training examples, all the different images of hand-written numbers.- k is the number of different outputs, in our case k = 10 and it represents numbers from 0 - 9, 0 is mapped to 10.- y is the results we are looking for.- gΘ(x) is the result we get from the network.Our goal in training the learning algorithm is to minimize the f(Θ) -  to find the lowest error.  To visualize the process, here is an example 3D surface plot for a neuron with only 2 connections.

\n\n\n\n
\"\"/
\n\n\n\n

The minimum error is in one of the valleys in the plot. To find the minimum error you need to traverse the plot and at every step check if you are at the minimum, sort of like going down a mountain. The way you do this mathematically is to take the derivative of the error function to calculate a slope and take a small step down the slope.  Iterating through this process of going down the slope is called gradient descent.  There are a few parameters that you can adjust to help the gradient decent to converge to a global minimum. One of the parameters is the size of a step that you take down the slope.  Smaller steps will lengthen process to find the global minimum, but if the steps are too long you might overshoot the minimum.  We need to calculate the partial derivative of f(Θ) if we want to use the gradient descent.  In the backpropagation algorithm when we go backward through the network and calculate the error for each node, at the same time we calculate the partial derivative for each node.  At the end we add up all the results and we get the partial derivative for the network.  Choosing the sigmoid function made it easier to calculate the derivative during back propagation. Here is the derivative for the sigmoid function:

\n\n\n\n
\"\"/
\n\n\n\n

Using the backpropagation algorithm with gradient decent we ran the learning process multiple times with multiple parameters.  To get some feedback on which parameters were improving the accuracy, we generated graphs that showed off the system accuracy with respect to different parameters.
After we trained the system with the initial data set, we tested the system on unseen data, that is,  data that was not used to train the algorithm.  The unseen data had a very low accuracy as compare to the data that was used to train the system.  After further testing it was clear that the system was not generalizing well. This means that it learned only the numbers that it seen but it failed to understand the numbers it had not seen before.  The understanding of numbers was not generalized to similar looking numbers but only to very specific images of the numbers.  A small change in the structure of the number and the system was unable to recognize the number.  This is a common issue with machine learning and the concepts of variance and bias help to modify the algorithm and make more generic. As I’ve said before we will come back to this in another blog.
After we finished with training the learning algorithm we saved the weights into a csv file and we decide to use them in an Android application.  The weights are like our memories. Together with the NN architecture define the learning system.  We implemented the same architecture and used the same weights in an Android app to test the system.  We create a simple app that reads images of hand-written numbers and passes data from the images to a NN for processing.  Here is a video of the application working :

\n\n\n\n
\n\n\n\n

Video
Since this is already a lengthy blog I will post and comment on the Android code in another blog and talk about the variance and bias in yet another blog.

\n\n\n\n

\n','Machine Learning - Hand Written Numbers Recognition','','publish','open','open','','machine-learning-hand-written-numbers-recognition','','','2019-04-01 15:12:50','2019-04-01 19:12:50','',0,'http://localhost:8082/?p=914',0,'post','',0),(916,4,'2014-03-05 09:26:41','2014-03-05 14:26:41','\n

Getting your business out there can be hard. Here at TC, over the last couple of months, we’ve been expanding our startup and discovering a lot of new and interesting ways to get ourselves out there. It’s a challenge for any startup business, but can be very rewarding! 
One of the things we found had the most impact when communicating with potential clients and customers who use our apps was putting out creative content. Creative content is content that is original to your company or business, and compels your target demographics to learn more about your services or products. 
Here’s four very important benefits that creative content can have for your business!
1. Creative content gives the company a personality. 
Now, this doesn’t mean the people in your company aren’t full of energy, interest and fabulous personalities! Sometimes that energy is hard to convey via social media and on your website. Additional content, like blogs, videos, and photo advertisements are great ways to really convey what kind of people are behind the business. This is important, because potential clients will always want to work with people who appeal to them and who they feel comfortable around. Releasing creative content allows your company to be more than just a logo or a name; it makes the business relatable and likeable. And in a world where superficial biases can sometimes take precedent, being relatable, likeable and above all, professional is definitely key.

\n\n\n\n

2. SEO
SEO, aka Search Engine Optimization, can be a terrifying three letter phrase, but it doesn’t have to be! A lot of companies and their marketing departments will rack their brains or empty their wallets in an attempt to increase SEO in a business world that is over saturated with companies just like their own. The great thing about creative content is that it can help ease that stress. Releasing your own unique content online can not only drive your inbound marketing approach, but also raise SEO. The more content that’s out there and viewed, shared, liked, retweeted, or reblogged can make a huge difference in getting your company higher up on a search engine’s list. Make sure that you always link back to your company’s website!
3. Stand out from the crowd.
As mentioned above, we live in a business climate where there’s a lot of over saturation, and a lot of talent. Because of the internet, companies now face global competition and outsourcing issues. If there was ever a time to find a way to stand out from the crowd, now is it! Creating unique and original content is one way to start getting attention. The more creative and socially aware the content is, the greater chance there is for more people to see it, like it and share it. With social media networks like Facebook where ‘who sees what and shares it with whom’ is so important, creating original and interesting content is essential to getting the word out there about your business. Everything on the internet that goes viral has to start from somewhere, and even though viral fame may be a hard feat to accomplish, your content has the potential to at least reach a couple of hundred people if promoted right!
4. It brings the company closer together.
Sometimes creative content doesn’t need to be all work no play; it can be a fun way to entice your employees to get active with the products their creating, or services their offering. Getting employees to create content, such as blogs, can be a great way for others in the company to learn more about the particular skill sets and ideas of one another. It also allows for employees to take a break, get creative and have a little bit of fun, all while giving your business original content it’s marketing department can use. 

\n\n\n\n

Content creation is vital to any business and can really help perpetuate a company’s public image. Hope these four benefits help inspire some great content!

\n\n\n\n

Kelly
Content Writer & Marketing Coordinator

\n','The Benefits of Creative Content for your Business','','publish','open','open','','the-benefits-of-creative-content-for-your-business','','','2019-04-01 15:11:49','2019-04-01 19:11:49','',0,'http://localhost:8082/?p=916',0,'post','',0),(918,3,'2014-03-20 09:27:49','2014-03-20 13:27:49','\n

Analyzing large data sets comes with multiple challenges.  One of the challenges is to get data in the right structure for the analysis.  Without preprocessing the data, your algorithms might have difficult time converging and/or take a long time execute.  One of the techniques that we used at TCinc is Principal Component Analysis (PCA). 
The official definition of PCA from Wikipedia is “Principal component analysis (PCA) is a statistical procedure that uses orthogonal transformation to convert a set of observations of possibly correlated variables into a set of values of linearly uncorrelated variables called principal components.” 
From an engineering point of view, PCA is defined as a dimensionality reduction algorithm.  Two straightforward examples of where the dimension might need to be reduced are data visualization and data compression. For example in data visualization, spreadsheets with a lot of columns are difficult to visualize.  By reducing the data to 3 or 2 dimensions, you can chart/graph it.  An example of data compression is an image compression.  Processing large images is computationally expensive.  By reducing a large image and still preserving the critical data in the image that is required for processing, you can speed up the processing and use less resources.
Data always has some redundancies, noise, and echoes. With PCA you are looking for the component of the data that has the largest variation. In terms of math, you are looking to maximize the diagonal entries in a covariance matrix and reduce the off-diagonal entries. Here is the formula to calculate the covariance.

\n\n\n\n
\"\"/
\n\n\n\n

(I’m dividing here by m and not (m-1), both are valid.  Dividing by m gives you the population covariance matrix and dividing by (m-1) gives you the sample covariance matrix.)
The above formula says that the mean normalized data is multiplied by its transpose.  Since we want our code to run fast we should vectorize all of our operations. Here is the vector representation of the above formula that has been mean normalized ahead of time.

\n\n\n\n
\"\"/
\n\n\n\n

Before we start solving for the principal components, here are assumptions that we are making about the data and the process.  Linearity is the main assumption.  We are assuming that the data is linearly related.  We are also assuming that data has high signal to noise ratio.  This would mean that the larger principal components represent signal and the smaller components represent the noise.  The last assumption that will help us in developing the PCA algorithm is that the principal components are orthogonal.  We also define dimensionality reduction as transformation.

\n\n\n\n

\n\n\n\n
\"\"/
\n\n\n\n

We are trying to find a orthonormal matrix WD , the columns of which are the principal components that map the data \"X\" to a lower dimension and where D represents the dimension.
We have used two methods to find the principal components, eigenvector decomposition and singular value decomposition (SVD).  Both methods are dependent on the libraries available in the programming languages used and performance required.  If the data set is larger it can be computationally expensive to calculate the covariance matrix that we need in eigenvector decomposition. In SVD you don’t have to calculate the covariance matrix.  Here are the two algorithms. We will leave off the algebraic proof for both algorithms for a different blog.
The PCA eigenvector decomposition algorithm :- Mean normalize the data (feature scale if needed)- Calculate the covariance matrix - Find the eigenvectors in the covariance matrix.- Sort the eigenvectors from largest to smallest- Use the largest ones as the principal components- Multiply the data by the largest components to transform the data
The PCA SVD algorithm :- Mean normalize the data (feature scale if needed)- Use a library and call the SVD function on the data- Depending on data structure, use either the left or right singular vectors- SVD orders the principal components, use the top entries in singular vector- multiple the data by the singular vector
We have both methods implemented in multiple programming languages. I think the easiest one to understand is the R version. Here is the R version of PCA implement using SVD.

\n\n\n\n

\n\n\n\n
library(\"biOps\", lib.loc=\"/Library/Frameworks/R.framework/Versions/3.0/Resources/library\")\n\n## load image\nimg <- readJpeg(\"hadoop.jpg\")\nsize <- dim(img)\nx <- size[1]\ny <- size[2]\ngrey <- matrix(0,x,y)\n\nk <- 285 #was calculated with sum(s$d[1:285])/sum(s$d) = 0.9919 -> covers 99% of the data\n\n## convert image to grey\ngrey <- imgRGB2Grey(img)\n\n## save grey image\nwriteJpeg(\"grey.jpg\",grey)\n\n## calculate mean\ncolumnMeans <- colMeans(grey)\n\n## subtract mean\ngreyNoMean = t(apply(grey,1,columnMeans,FUN=\"-\"))\n\ns <- svd(greyNoMean)\n\nUreduce = s$v[,1:k]\n\nreduced = greyNoMean %*% Ureduce\n\n## save reduced image\nwriteJpeg(\"grey-reduced.jpg\",imagedata(reduced))\n\nrecovred =reduced %*% t(Ureduce)\n\n## add mean\nrecovredWithMean = t(apply(recovred,1,columnMeans,FUN=\"+\"))\n\n## save recovered image\nwriteJpeg(\"grey-recovred.jpg\",imagedata(recovredWithMean))\n\n
\n\n\n\n

We have used the biOps package for saving, loading and converting the image from RGB to grey.  We chose to run the algorithm on an image to show you image compression and help with visualizing what the algorithm is doing.Here is the original image, 495x500x3:

\n\n\n\n
\"\"/
\n\n\n\n

We converted the image from RGB to grey to simplify the algorithm.  In practice you often convert the image to grey since you still retain the data and you simplify the processing. Here is the grey image, 495x500:

\n\n\n\n
\"\"/
\n\n\n\n

Here is the reduced image, 285x500:

\n\n\n\n
\"\"/
\n\n\n\n

As you can see, it does not mean much to the human eye, but the important data is there. We can now apply other machine learning algorithms to the data. We wanted to preserve 99% of the data. We used the output from SVD to calculate the error.  The entries in the diagonal matrix returned from SVD are sorted from the largest to smallest. Here is the formula used to calculate the error:

\n\n\n\n
\"\"/
\n\n\n\n

In this example 285 out of 485 principal components retain 99% of the data.  We have reduced the data by 200 dimensions and still retain most of the critical data. PCA is a lossy compression. Here is how the image looks after it was recover from the reduced image, 495x500:

\n\n\n\n
\"\"/
\n\n\n\n

As you can see we were able to recover the image. There are artifacts in the image but the important data is there, you can see that the image is similar to the original image.
PCA is a powerful data preprocessing tool and it can be applied to multiple machine learning processing pipelines.

\n','Principal Component Analysis for Machine Learning','','publish','open','open','','principal-component-analysis-for-machine-learning','','','2020-11-26 22:46:30','2020-11-27 03:46:30','',0,'http://localhost:8082/?p=918',0,'post','',1),(920,2,'2014-05-26 09:28:58','2014-05-26 13:28:58','\n

We invite you to read our latest case study highlighting the use of the TCinc Platform to create two different web applications in a healthcare environment.  These projects demonstrate versatility in the software and the services offered by TCinc. 

\n\n\n\n

The first project (IDA) for The Hospital for Sick Children Research Institute leveraged TCinc Platform’s Rapid Web Application Development capabilities, and involved an newly redesigned implementation of a legacy system for an integrated database solution used by 7 departments. The system features business rules supporting independent and interdependent office processes as well as ensuring compliance with legislative regulations.

\n\n\n\n

The Second Project (PIDA) for The Department of Paediatrics at the Hospital for Sick Children exploited the data integration capabilities of the TCinc Platform. The system received data feeds from other hospital systems, either on demand  or according to a pre-determined schedule.   This project also included the first implementation of our Query Tool

\n\n\n\n

Read all about it!

\n','Healthcare Web Development Platform Case Study','','publish','open','open','','healthcare-web-development-platform-case-study','','','2020-11-26 22:41:52','2020-11-27 03:41:52','',0,'http://localhost:8082/?p=920',0,'post','',0),(922,4,'2019-04-01 14:48:44','2019-04-01 18:48:44','','Blog','','publish','closed','closed','','blog','','','2021-09-14 18:18:44','2021-09-14 22:18:44','',0,'http://localhost:8082/?page_id=922',3,'page','',0),(928,4,'2019-05-08 09:08:13','2019-05-08 13:08:13',' ','','','publish','closed','closed','','928','','','2021-10-13 17:09:15','2021-10-13 21:09:15','',0,'http://localhost:8082/?p=928',13,'nav_menu_item','',0),(929,3,'2019-05-11 14:36:11','2019-05-11 18:36:11','\n

Often a quick data import is required. The systems are getting more complicated and what once was a simple import now has to go through many layers.

\n\n\n\n

Kubernetes is the standard; it is the best clay for sculpting out a system. At Translucent we build all of our systems on top of Kubernetes. There are many different ways of interacting with Kubernetes to import data into a database running within the cluster. Here, I\'m going to describe a quick importer.

\n\n\n\n

Use case

\n\n\n\n

The Elasticsearch database is running within the Kubernetes cluster. The purpose of the database is to store logs from the cluster and every docker container running within the cluster. Email activity was extracted from SendGrid into a CSV file and our goal is to import that CSV file into an Elasticsearch index.

\n\n\n\n

Background

\n\n\n\n

We are cloud agnostic. In this case, the cluster is running within Google Cloud. Helm was used to install an Elasticsearch cluster into Kubernetes. Elasticsearch cluster is made up of six (6) data nodes, three (3) masters nodes, and one (1) client node. The data is collected and pushed to Elasticsearch from the Kubernetes cluster with Fluentd log pipeline, which was also installed with Helm.

\n\n\n\n

Process

\n\n\n\n

To import the data, we are going to open a connection to the Elasticsearch client node, execute python code locally from my computer and push the data to an Elasticsearch index.

\n\n\n\n

Code

\n\n\n\n

There are a few different Elasticsearch clients. We use Java client and NodeJS client in our Microservices. Here I chose to use Python client.

\n\n\n\n
\'\'\'\nQuick Importer - save CSV data into ES index\n\'\'\'\nfrom elasticsearch import Elasticsearch\nimport csv\nimport os\nimport datetime\n\ndef importData(fileName, indexName):		\n	es = Elasticsearch()\n\n	# get the file path, file in data dir\n	filePath = os.path.join(os.path.dirname(os.path.realpath(__file__)),os.path.join(\'data\',fileName))\n	\n	with open(filePath, \'rt\') as f:\n		reader = csv.reader(f)\n		headers = next(reader) # first line in the file is the header\n		for row in reader:\n			try:\n				obj = {}\n				for i, val in enumerate(row):\n					if i == 0:\n						# convert string to timestamp	\n						obj[headers[i]] = datetime.datetime.strptime(val, \'%m/%d/%Y %H:%M:%S\')\n					else:\n						obj[headers[i]] = val\n\n				#doc_type – Document type, defaults to _doc. Not used on ES 7 clusters.\n				es.index(index=indexName, body=obj)\n			except Exception as e:\n				print(\"Error: {}:\".format(e))						\n		\n# run the import			\nimportData(\"emails.csv\", \"emails\")
\n\n\n\n

We find the CSV file, read the file, iterate through it, create an object and save the object into Elasticsearch index.

\n\n\n\n

Importing

\n\n\n\n

For security reasons, all the clusters have the master node protected. In GKE (Google Kubernetes) you have to add your IP to the authorized network before you can access the cluster locally.

\n\n\n\n

To expose the Elasticsearch client node locally you run the port forward command.

\n\n\n\n
| => kubectl port-forward elasticsearch-monitoring-client-5f7fbd5865-mvtwd -n elasticsearch-monitoring 9200:9200\nForwarding from 127.0.0.1:9200 -> 9200\nForwarding from [::1]:9200 -> 9200\nHandling connection for 9200
\n\n\n\n

You give it the pod name of the Elasticsearch client node with the namespace and the port number. In 9200:9200, the first number is your local port. Here I chose to use 9200 for my local port since the default port in the python Elasticsearch client is 9200. Once you see \"Handling connection for 9200\" you are ready to run your python code.

\n\n\n\n
| => python3 csv_importer.py
\n\n\n\n

Kibana

\n\n\n\n

Kibana is a dashboard for Elasticsearch and can be installed with Helm as well. Make sure you match Elasticsearch and Kibana versions. We can use Kibana to inspect the index and create visualizations from the imported data.

\n\n\n\n

Using Kibana developer tools we can extract the index mapping that was created by the importer.

\n\n\n\n
GET emails\\_mapping\n{\n  \"emails\" : {\n    \"mappings\" : {\n      \"_doc\" : {\n        \"properties\" : {\n          \"message_id\" : {\n            \"type\" : \"text\",\n            \"fields\" : {\n              \"keyword\" : {\n                \"type\" : \"keyword\",\n                \"ignore_above\" : 256\n              }\n            }\n          },\n          \"timestamp\" : {\n            \"type\" : \"date\"\n          }\n        }\n      }\n    }\n  }\n}
\n\n\n\n

A quick check shows that these are the 2 columns of data that we had in the CSV and the timestamp is the correct data type. We are done with the importer!

\n\n\n\n

Links

\n\n\n\n

Elasticsearch Helm Chart

\n\n\n\n

https://github.com/helm/charts/tree/master/stable/elasticsearch

\n\n\n\n

Kibana Helm Chart

\n\n\n\n

https://github.com/helm/charts/tree/master/stable/kibana

\n\n\n\n

Fluentd Helm Chart

\n\n\n\n

https://github.com/helm/charts/tree/master/stable/fluentd

\n\n\n\n

Kubectl

\n\n\n\n

https://kubernetes.io/docs/reference/kubectl/cheatsheet/

\n\n\n\n

Python Elasticsearch Client

\n\n\n\n

https://elasticsearch-py.readthedocs.io/en/master/

\n','Kubernetes, Elasticsearch, Python Importer','','publish','open','open','','kubernetes-elasticsearch-python-importer','','','2020-01-13 20:09:57','2020-01-14 01:09:57','',0,'http://localhost:8082/?p=929',0,'post','',0),(949,3,'2019-05-11 14:08:56','2019-05-11 18:08:56','','k8s-pod-connection','','inherit','open','closed','','k8s-pod-connection','','','2021-10-06 23:12:55','2021-10-07 03:12:55','',929,'http://localhost:8082/wp-content/uploads/2019/05/k8s-pod-connection.png',0,'attachment','image/png',0),(968,4,'2019-06-13 11:52:16','2019-06-13 15:52:16','','254by34px jpeg','','inherit','open','closed','','254by34px-jpeg','','','2021-10-06 23:12:22','2021-10-07 03:12:22','',0,'http://localhost:8082/wp-content/uploads/2019/06/254by34px-jpeg.jpg',0,'attachment','image/jpeg',0),(969,4,'2019-07-01 15:18:12','2019-07-01 19:18:12','','number 1 blue 64','','inherit','open','closed','','number-1-blue-64','','','2021-10-06 23:12:12','2021-10-07 03:12:12','',0,'http://localhost:8082/wp-content/uploads/2019/07/number-1-blue-64.png',0,'attachment','image/png',0),(970,4,'2019-07-01 15:18:13','2019-07-01 19:18:13','','number 1 red 128','','inherit','open','closed','','number-1-red-128','','','2021-10-06 23:12:04','2021-10-07 03:12:04','',0,'http://localhost:8082/wp-content/uploads/2019/07/number-1-red-128.png',0,'attachment','image/png',0),(971,4,'2019-07-01 15:18:13','2019-07-01 19:18:13','','number 2 blue 64','','inherit','open','closed','','number-2-blue-64','','','2021-10-06 23:11:55','2021-10-07 03:11:55','',0,'http://localhost:8082/wp-content/uploads/2019/07/number-2-blue-64.png',0,'attachment','image/png',0),(972,4,'2019-07-01 15:18:13','2019-07-01 19:18:13','','number 2 red 128','','inherit','open','closed','','number-2-red-128','','','2021-10-06 23:11:46','2021-10-07 03:11:46','',0,'http://localhost:8082/wp-content/uploads/2019/07/number-2-red-128.png',0,'attachment','image/png',0),(973,4,'2019-07-01 15:18:13','2019-07-01 19:18:13','','number 3 black 64','','inherit','open','closed','','number-3-black-64','','','2021-10-06 23:11:32','2021-10-07 03:11:32','',0,'http://localhost:8082/wp-content/uploads/2019/07/number-3-black-64.png',0,'attachment','image/png',0),(974,4,'2019-07-01 15:18:14','2019-07-01 19:18:14','','number 4 black 64','','inherit','open','closed','','number-4-black-64','','','2021-10-06 23:11:17','2021-10-07 03:11:17','',0,'http://localhost:8082/wp-content/uploads/2019/07/number-4-black-64.png',0,'attachment','image/png',0),(975,4,'2019-07-01 15:18:14','2019-07-01 19:18:14','','number 5 black 64','','inherit','open','closed','','number-5-black-64','','','2021-10-06 23:11:25','2021-10-07 03:11:25','',0,'http://localhost:8082/wp-content/uploads/2019/07/number-5-black-64.png',0,'attachment','image/png',0),(976,4,'2019-07-01 15:18:15','2019-07-01 19:18:15','','number 1 black 64','','inherit','open','closed','','number-1-black-64','','','2021-10-06 23:11:10','2021-10-07 03:11:10','',0,'http://localhost:8082/wp-content/uploads/2019/07/number-1-black-64.png',0,'attachment','image/png',0),(977,4,'2019-07-01 15:20:09','2019-07-01 19:20:09','','number 3 blue 64','','inherit','open','closed','','number-3-blue-64','','','2021-10-06 23:10:58','2021-10-07 03:10:58','',0,'http://localhost:8082/wp-content/uploads/2019/07/number-3-blue-64.png',0,'attachment','image/png',0),(997,4,'2019-12-06 22:49:41','2019-12-07 03:49:41','','tablet','','inherit','open','closed','','tablet','','','2021-10-06 23:10:46','2021-10-07 03:10:46','',38,'http://localhost:8082/wp-content/uploads/2019/12/tablet.png',0,'attachment','image/png',0),(1000,3,'2019-12-26 19:52:38','2019-12-27 00:52:38','[iframe height=\"7000px\" src=\"http://translucentcomputing.com/wp-content/uploads/2020/01/notebook-greetings-full.html\"]','Fourier Series From Points','','publish','open','open','','fourier-series-from-points','','','2020-11-26 17:25:14','2020-11-26 22:25:14','',0,'http://localhost:8082/?p=1000',0,'post','',0),(1003,3,'2019-12-26 19:58:42','2019-12-27 00:58:42','','greetings','','inherit','open','closed','','greetings','','','2020-01-15 21:05:32','2020-01-16 02:05:32','',0,'http://localhost:8082/wp-content/uploads/2019/12/greetings.png',0,'attachment','image/png',0),(1004,3,'2019-12-29 18:06:32','2019-12-29 23:06:32','\n

Intro

\n\n\n\n

There are enormous amounts of time-series data continuously generated throughout the world, including the heart rate monitor on the Apple watch, the thermostat in your home, or a self-driving car continuously digesting data about the environment coming at it at high speed. Time-series data is data that changes over time. Time is not just a metric in the data but the primary index. Besides the technical challenges related to the ingestion and storage of time-series data, there are new engineering challenges that have emerged for machine learning (ML) and deep learning (DL) algorithms processing time-series data.

\n\n\n\n

Other Disciplines

\n\n\n\n

Before diving into ML/DL, I\'d like to explore the time-series data from an Electrical Engineering background and how the tools used to analyze electrical circuits that can be adapted to time-series ML/DL analysis.

\n\n\n\n
\"\"
I\'m ready for the snakes!
\n\n\n\n

Electrical Engineering has a long history of analyzing time-series data. They don\'t call it time-series data. Most engineers call it voltage or current or signal in general — for example, an electrical circuit that models a music player, a filter, and a speaker.

\n\n\n\n
\"\"
Ready for whacking day!
\n\n\n\n

When you find yourself in a precarious situation, where you need the dulcet tones of Barry White to save a town from the attack of the snakes, you might need such a setup. The sound from the music player is filtered for lower frequency sounds and fed into a subwoofer. Barry White\'s voice coming out of the music player is the time-series data, the change in signal over time. Here the engineering challenge is to build a filter that will filter out high-frequency sounds and only send low-frequency sound to the subwoofer.

\n\n\n\n
\"\"
RLC Filter
\n\n\n\n

I will use a second-order RLC low pass filter here for analysis. It only has a few circuit components, and it shows the complexity of classic analysis.

\n\n\n\n

Our goal here is to find the voltage across the capacitor (C), which drives the subwoofer and select the values for the resistor (R), inductor (L), and C. The values have to be selected to suppress higher frequency sounds and pass through the lower frequency sounds. Also, since the goal here is not to get lost in the mathematical weeds, I\'ll state the initial analysis with a lot of assumptions.

\n\n\n\n
\"\"
\n\n\n\n

We just started the analysis and we are faced with this complicated second-order derivative equation. It is not clear how this relates to the lower frequencies and what the R, L, and C values should be. I\'m going to walk away from that, and maybe show a full analysis for the curious ones in another post, and jump straight into frequency analysis.

\n\n\n\n

Transform The Problem

\n\n\n\n

Often in mathematics and engineering, when a problem is complicated to solve, you try to visualize it in a different domain. For our toy example, I\'m looking at filtering frequencies, and we can try to move to the frequency domain and see if that helps. In fact, most of such filter circuit analysis is done in the frequency-domain. The time-domain analysis that I\'ve called classic here is complex and not that intuitive. Moving to frequency-domain (s-domain more preciously) comes with some nice benefits here. We use something called \"Laplace Transform\" to convert the calculus to algebra. Besides simplifying the math here from calculus to algebra, we are dealing with frequencies that directly relate to the problem of creating a low-frequency filter.

\n\n\n\n
\"\"
\n\n\n\n

With a lot of assumptions and looking at only at the steady state, using Laplace transforms and algebra instead of calculus makes the analysis easier. The solution is in terms of frequencies. That helps with intuition for what frequencies would work with what component configuration, the values for R, L, and C.

\n\n\n\n

Conclusion

\n\n\n\n

We are amid a time-series data tsunami. The usual ML analysis does not apply, or it is too complicated to apply to time-series data. Transforming the data into another domain will help with data analysis.

\n\n\n\n

At Translucent, we have started experimenting with different data ingestion schemes, testing different time-series databases, and testing different approaches to time-series ML/DL analysis. We are applying the new ML/DL analysis to https://www.tekstackhealth.com/

\n','ML in Frequency Domain?','','publish','open','open','','ml-in-frequency-domain','','','2020-11-26 22:34:45','2020-11-27 03:34:45','',0,'http://localhost:8082/?p=1004',0,'post','',1),(1008,3,'2019-12-29 12:29:36','2019-12-29 17:29:36','','music-player-speaker','','inherit','open','closed','','music-player-speaker','','','2020-01-15 21:05:14','2020-01-16 02:05:14','',1004,'http://localhost:8082/wp-content/uploads/2019/12/music-player-speaker.png',0,'attachment','image/png',0),(1011,3,'2019-12-29 12:52:15','2019-12-29 17:52:15','','homer-snakes','','inherit','open','closed','','homer-snakes','','','2020-01-15 21:04:40','2020-01-16 02:04:40','',1004,'http://localhost:8082/wp-content/uploads/2019/12/homer-snakes.jpg',0,'attachment','image/jpeg',0),(1014,3,'2019-12-29 12:58:57','2019-12-29 17:58:57','','rlc','','inherit','open','closed','','rlc','','','2020-01-15 21:04:05','2020-01-16 02:04:05','',1004,'http://localhost:8082/wp-content/uploads/2019/12/rlc.png',0,'attachment','image/png',0),(1018,3,'2019-12-29 13:57:19','2019-12-29 18:57:19','','RLC-classic-analysis','','inherit','open','closed','','rlc-classic-analysis','','','2019-12-29 13:57:19','2019-12-29 18:57:19','',0,'http://localhost:8082/wp-content/uploads/2019/12/RLC-classic-analysis.html',0,'attachment','text/html',0),(1023,3,'2019-12-29 16:10:31','2019-12-29 21:10:31','','RLC-laplace','','inherit','open','closed','','rlc-laplace','','','2019-12-29 16:10:31','2019-12-29 21:10:31','',0,'http://localhost:8082/wp-content/uploads/2019/12/RLC-laplace.html',0,'attachment','text/html',0),(1030,3,'2019-12-29 16:36:56','2019-12-29 21:36:56','','voice','','inherit','open','closed','','voice','','','2020-01-15 21:03:48','2020-01-16 02:03:48','',0,'http://localhost:8082/wp-content/uploads/2019/12/voice.png',0,'attachment','image/png',0),(1048,3,'2019-12-29 17:55:38','2019-12-29 22:55:38','','rlc-circuit','','inherit','open','closed','','rlc-circuit','','','2020-01-15 21:03:30','2020-01-16 02:03:30','',0,'http://localhost:8082/wp-content/uploads/2019/12/rlc-circuit.gif',0,'attachment','image/gif',0),(1058,3,'2019-12-31 17:47:45','2019-12-31 22:47:45','\n

Intro

\n\n\n\n

Jupyter Notebook is the primary tool we use for data science tasks at Translucent. It allows for quick exploration of data and quick feedback from experimentations. Often the exploration and experimentations lead to long-running jobs in the cloud. We have vast amounts of computational resources in the cloud; locally, not so much. Most of the time, we start the data science process locally on our computers, so performance is essential when dealing with big data sets and complicated algorithms. Cloud resources and performance not withstanding, writing efficient code from the start does improve your whole processing pipeline.

\n\n\n\n

There are 3 topics I\'d like to cover in a series of posts:

\n\n\n\n
  1. Code structure and profiling
  2. Optimizing code with pandas, numpy, (Here) and sympy (Here)
  3. Going beyond Python (Cython)
\n\n\n\n

Code Structure and Instrumentation

\n\n\n\n

When writing code, in the notebooks, there is a tendency to throw away code design patterns. You get into a rhythm where you segment your code into cells, and you forget about basic coding principals like encapsulation. You can make an argument for structuring the code outside the notebook and not using the notebook as a driver for development. I acknowledge that point, and for these posts, the notebook is the driver for code development.

\n\n\n\n

I always encourage developers to start with a method instead of writing code directly in a cell. Create a method in the cell and encapsulate that code in the method. Also, in the spirit of TDD, the code writing process is flexible. You should always go back and refactor the code once your spidey sense detects code smell. Having code that is well structured helps to reason about the code.

\n\n\n\n

Code Smell - https://refactoring.guru/refactoring/smells

\n\n\n\n

I strongly disagree with the sentiment that you should not focus on performance or code quality initially, for the simple reason that we should not ignore computer science when doing data science. We should inject computer science back into data science. I\'m getting too ranty. Good code structure helps with performance analysis using magic commands.

\n\n\n\n

Magic Commands

\n\n\n\n

I define magic commands as a preprocessor. There are:

\n\n\n\n
  • line commands
  • cell commands
\n\n\n\n

They do work before a line of code is executed in a cell or before a cell is executed. When it comes to performance, these are the commands available by default:

\n\n\n\n
  • time - \"Time execution of a Python statement or expression.\"
  • timeit - \"Time execution of a Python statement or expression.\"
  • prun - \"Run a statement through the python code profiler.\"
\n\n\n\n

The next two commands, which I mostly use, require installation and loading into the notebook with a magic command:

\n\n\n\n
  • lprun - \"Execute a statement under the line-by-line profiler from the line_profiler module.\"
  • mprun - \"Execute a statement under the line-by-line memory profiler from the memory_profiler module.\"
\n\n\n\n

You install both modules with conda or pip.

\n\n\n\n

conda install -c conda-forge line_profiler
conda install -c conda-forge memory_profiler

\n\n\n\n

You load the modules into the notebook with a load_ext magic command.

\n\n\n\n

Example

\n\n\n\n

Here is my starting notebook.

\n\n\n\n

[iframe src=\"http://translucentcomputing.com/wp-content/uploads/2019/12/performance-test-top.html\"]

\n\n\n\n

Both cpu and memory line profilers are loaded, also autoreload module and others which I\'ll get to in other posts. The autoreload module is there to help with code structure. The module reloads the code before each execution. Once you get locked into a TDD loop and you start refactoring code from the notebook into additional files, this module will reload the code in the additional files.

\n\n\n\n

[iframe height=\"1700px\" src=\"http://translucentcomputing.com/wp-content/uploads/2019/12/performance-test.html\"]

\n\n\n\n

Our test example is a generation of synthetic data to be used with a machine learning algorithm. The first cell defines our method to generate some data. The second cell executes and profiles the method. The third cell is there to help visualize the data.

\n\n\n\n

Every single line in the reallySlowGenerateTimeSeriesData() test method has to be re-coded.

\n\n\n\n

Encapsulating the code in the reallySlowGenerateTimeSeriesData() method allows us to run the line profiler on the whole method. You can profile individual lines in the method. Doing that does not tell you how that line fits in the scope of the method, which might have other issues before the profiled line that leads to the slowdown of the given line.

\n\n\n\n

The lprun magic command before the method in the second cell profiles the method and outputs the profile results. It gives the total execution time and a breakdown byline of the whole method. Each line has % of execution time and the number of times it was executed. With all this feedback, we can start to reason about the performance or the lack of performance in this implementation.

\n\n\n\n

Full Code with memory profile - https://translucentcomputing.com/2019/12/slow-performance-test-notebook/

\n\n\n\n

Conclusion

\n\n\n\n

Do not ignore performance. We should use the profiler tools from the first line of code that we write, and structure the code to facilitate performance testing. During the initial phase, you most likely are re-running cells in your notebook many, many times. It all adds up, and you can find yourself in a position where you spend most of your day just waiting for slow code.

\n\n\n\n

The total execution time of the really, really slow method was about 12 seconds. In the next post, I\'ll transform the method line by line to get it executed in a fraction of a second.

\n','Performance In Jupyter Python','','publish','open','open','','performance-in-jupyter-python','','','2020-11-26 17:08:57','2020-11-26 22:08:57','',0,'http://localhost:8082/?p=1058',0,'post','',0),(1076,3,'2019-12-31 11:47:38','2019-12-31 16:47:38','','performance-test-top','','inherit','open','closed','','performance-test-top','','','2019-12-31 11:47:38','2019-12-31 16:47:38','',0,'http://localhost:8082/wp-content/uploads/2019/12/performance-test-top.html',0,'attachment','text/html',0),(1086,3,'2019-12-31 14:45:37','2019-12-31 19:45:37','','performance-test','','inherit','open','closed','','performance-test','','','2019-12-31 14:45:37','2019-12-31 19:45:37','',0,'http://localhost:8082/wp-content/uploads/2019/12/performance-test.html',0,'attachment','text/html',0),(1104,3,'2019-12-31 17:43:15','2019-12-31 22:43:15','','performance','','inherit','open','closed','','performance','','','2020-01-15 21:02:04','2020-01-16 02:02:04','',1058,'http://localhost:8082/wp-content/uploads/2019/12/performance.png',0,'attachment','image/png',0),(1109,3,'2019-12-31 22:12:15','2020-01-01 03:12:15','\n

Notebook for the slow performance post (https://translucent.local/2019/12/performance-in-jupyter-python/). The slow method has been moved into another file. The mprun magic command requires for the profiled code to be in another file.

\n\n\n\n[iframe height=\"2400px\" src=\"http://translucentcomputing.com/wp-content/uploads/2020/01/notebook-performance-test-full.html\"]\n\n\n\n

slow_example.py

\n\n\n\n
import math\nimport random\n\n# Really slow generation of synthetic data\ndef reallySlowGenerateTimeSeriesData(seconds,samples_per_second):\n    \"\"\"Generate synthetic data\"\"\"\n    \n    time = []\n    signal = []   \n    \n    # generate signal\n    sample_time = 0\n    for s in range(seconds):        \n        for sps in range(samples_per_second):\n            sample_time += 1/samples_per_second\n            noise = random.random()\n            scaled_noise = -1 + (noise * 2)\n            sample = math.sin(2*math.pi*10*sample_time) + scaled_noise\n            time.append(sample_time)\n            signal.append(sample)\n    \n    # return time and signal\n    return [time,signal]
\n','Slow Performance Test Notebook','','publish','open','open','','slow-performance-test-notebook','','','2020-11-26 17:21:42','2020-11-26 22:21:42','',0,'http://localhost:8082/?p=1109',0,'post','',0),(1114,3,'2019-12-31 22:02:32','2020-01-01 03:02:32','{{unknown}}','','','publish','closed','closed','','77f5ba246e0cefa31f8cb48d1f56a7aa','','','2019-12-31 22:02:32','2020-01-01 03:02:32','',0,'http://localhost:8082/2019/12/77f5ba246e0cefa31f8cb48d1f56a7aa/',0,'oembed_cache','',0),(1118,3,'2019-12-31 22:09:34','2020-01-01 03:09:34','','WILqvqC20V','','inherit','open','closed','','wilqvqc20v','','','2020-01-15 21:01:52','2020-01-16 02:01:52','',1109,'http://localhost:8082/wp-content/uploads/2019/12/WILqvqC20V.gif',0,'attachment','image/gif',0),(1128,3,'2020-01-01 10:28:51','2020-01-01 15:28:51','','notebook-greetings-full','','inherit','open','closed','','notebook-greetings-full','','','2020-01-01 10:28:51','2020-01-01 15:28:51','',0,'http://localhost:8082/wp-content/uploads/2020/01/notebook-greetings-full.html',0,'attachment','text/html',0),(1129,3,'2020-01-01 10:28:56','2020-01-01 15:28:56','','notebook-performance-test-full','','inherit','open','closed','','notebook-performance-test-full','','','2020-01-01 10:28:56','2020-01-01 15:28:56','',0,'http://localhost:8082/wp-content/uploads/2020/01/notebook-performance-test-full.html',0,'attachment','text/html',0),(1144,3,'2020-01-02 14:32:59','2020-01-02 19:32:59','\n

Intro

\n\n\n\n

Over the years, SciPy has emerged as one of the best frameworks for data science. SciPy defines itself as an ecosystem of open-source software for mathematics, science, and engineering. The core six packages of SciPy are NumPy, SciPy, Matplotlib, IPython, SymPy, and pandas. In this post, I\'ll use NumPy and pandas to optimize the slow implementation from the last post.

\n\n\n\n

Test Notebook - https://translucent.local/2020/01/pandas-and-numpy-performance-test-notebook/

\n\n\n\n

Additional Notebook with restructured code - https://translucent.local/2020/01/performance-waveform-generator-starter-notebook/

\n\n\n\n

Problem

\n\n\n\n

The data science task is to generate synthetic time-series data. In the previous post, we created the first naive implementation.

\n\n\n\n
def reallySlowGenerateTimeSeriesData(seconds,samples_per_second):\n    \"\"\"Generate synthetic data\"\"\"\n    \n    time = []\n    signal = []   \n    \n    # generate signal\n    sample_time = 0\n    for s in range(seconds):        \n        for sps in range(samples_per_second):\n            sample_time += 1/samples_per_second\n            noise = random.random()\n            scaled_noise = -1 + (noise * 2)\n            sample = math.sin(2*math.pi*10*sample_time) + scaled_noise\n            time.append(sample_time)\n            signal.append(sample)\n    \n    # return time and signal\n    return [time,signal]
\n\n\n\n

On average, running it locally, it takes about 14 seconds, really slow! It might not be clear from the profiler where you should start with the refactoring optimization.

\n\n\n\n
Total time: 14.0719 s\nFile: <ipython-input-5-ad467de0be46>\nFunction: reallySlowGenerateTimeSeriesData at line 2\n\nLine #      Hits         Time  Per Hit   % Time  Line Contents\n==============================================================\n     2                                           def reallySlowGenerateTimeSeriesData(seconds,samples_per_second):\n     3                                               \"\"\"Generate synthetic data\"\"\"\n     4                                               \n     5         1          4.0      4.0      0.0      time = []\n     6         1          1.0      1.0      0.0      signal = []   \n     7                                               \n     8                                               # generate signal\n     9         1          1.0      1.0      0.0      sample_time = 0\n    10      3601       1889.0      0.5      0.0      for s in range(seconds):        \n    11   3603600    1589537.0      0.4     11.3          for sps in range(samples_per_second):\n    12   3600000    2019769.0      0.6     14.4              sample_time += 1/samples_per_second\n    13   3600000    2079579.0      0.6     14.8              noise = random.random()\n    14   3600000    1921001.0      0.5     13.7              scaled_noise = -1 + (noise * 2)\n    15   3600000    2801165.0      0.8     19.9              sample = math.sin(2*math.pi*10*sample_time) + scaled_noise\n    16   3600000    1904107.0      0.5     13.5              time.append(sample_time)\n    17   3600000    1754810.0      0.5     12.5              signal.append(sample)\n    18                                               \n    19                                               # return time and signal\n    20         1          1.0      1.0      0.0      return [time,signal]
\n\n\n\n

The time is evenly distributed across all the lines within the nested for loops. There is no smoking gun such as an obvious slow execution within the loops. Your software engineering spidey sense might be directing your eyes to the nested loops and the big O complexity, O(n²), of the code structure. Let\'s start there.

\n\n\n\n

Vectorization

\n\n\n\n

The Python community and in general the scientific software development community has adopted the term \"vectorization\" to mean array programming (array-oriented computing), a process where you execute your \"business logic\" directly on the array without using loops. In Python, the NumPy library is the goto library when it comes to vectorization.

\n\n\n\n

Optimize with NumPy

\n\n\n\n

NumPy is an extension package to Python for array programming. It provides \"closer to the hardware\" optimization, which in Python means C implementation.

\n\n\n\n

Looking at the first implementation, we see that the nested loop is used to create the time list. We are starting with refactoring the time list to use NumPy array.

\n\n\n\n
def slightlyFasterGenerateTimeSeriesData(seconds,samples_per_second):\n    \"\"\"Generate synthetic data\"\"\"\n    \n    # generate time \n    time = np.arange(0,seconds,1/samples_per_second)\n    \n    # generate signal\n    signal = []\n    for t in time:   \n        noise = random.random()\n        scaled_noise = -1 + (noise * 2)\n        sample = math.sin(2*math.pi*10*t) + scaled_noise            \n        signal.append(sample)\n    \n    # return time and signal\n    return [time,signal]
\n\n\n\n

This optimization reduced the average run time to about 10 seconds. Since it looks like we are going in the right direction, let\'s try full NumPy implementation.

\n\n\n\n
def reallyFastGenerateTimeSeriesData(seconds,samples_per_second):\n    \"\"\"Generate synthetic data\"\"\"\n    \n    # generate time\n    time = np.arange(0,seconds,1/samples_per_second)\n    \n    # generate signal\n    noise = -2 * np.random.random(len(time)) + 1\n    signal = np.sin(2*np.pi*10*time) + noise\n    \n    # return time and signal\n    return [time,signal]
\n\n\n\n

WOW! This implementation executes in about 0.1 seconds, an order of magnitudes faster than previous implementations.

\n\n\n\n

NumPy library comes with a vectorized version of most of the mathematical functions in Python core, random function, and a lot more. In this implementation, Python math and random functions were replaced with the NumPy version and the signal generation was directly executed on NumPy arrays without any loops.

\n\n\n\n

When it comes to data manipulation and analysis, doing the data science thing, you use another library. While NumPy is the workhorse, pandas is the tool for doing data manipulation and analysis.

\n\n\n\n

Optimize with pandas

\n\n\n\n

pandas is the library for data manipulation and analysis. Usually, it is the starting point for your data science tasks. It allows you to read/write data from/to multiple sources. Process the missing data, align your data, reshape it, merge and join it with other data, search data, group it, slice it, really a swiss knife.

\n\n\n\n

Since most likely you will start with pandas, let\'s refactor the code to use pandas by starting with the original implementation and adding pandas to it.

\n\n\n\n
def pandasReallySlowGenerateTimeSeriesData(seconds,samples_per_second):\n    \"\"\"Generate synthetic data\"\"\"\n    \n    # generate time\n    time = np.arange(0,seconds,1/samples_per_second)\n    \n    # create pandas\n    df = pd.DataFrame(data=time, columns=[\'time\'])\n    \n    def generateSignal(t):\n        noise = random.random()\n        scaled_noise = -1 + (noise * 2)\n        return math.sin(2*math.pi*10*t) + scaled_noise \n    \n    # generate signal\n    df[\'signal\'] = df[\'time\'].apply(lambda t: generateSignal(t))\n       \n    # return time and signal\n    return [df[\'time\'],df[\'signal\']]
\n\n\n\n

On average this implementation runs in 5 seconds. pandas, like NumPy, has been designed to work with vectorization. Let\'s update the code to use vectorization.

\n\n\n\n
def pandasFasterSlowGenerateTimeSeriesData(seconds,samples_per_second):\n    \"\"\"Generate synthetic data\"\"\"\n    \n    # generate time\n    time = np.arange(0,seconds,1/samples_per_second)\n    \n    # create pandas\n    df = pd.DataFrame(data=time, columns=[\'time\'])\n    \n    def generateSignal(t):\n        noise = -2 * np.random.random(len(t)) + 1\n        return np.sin(2*np.pi*10*t) + noise\n    \n    # generate signal\n    df[\'signal\'] = generateSignal(df[\'time\'])\n       \n    # return time and signal\n    return [df[\'time\'],df[\'signal\']]
\n\n\n\n

This implementation runs in about 0.12 seconds. We are back to reasonable running times. pandas also integrates with NumPy and you can often squeeze out more performance by using NumPy arrays with pandas. Here is one such implementation.

\n\n\n\n
def pandasNumpyFastSlowGenerateTimeSeriesData(seconds,samples_per_second):\n    \"\"\"Generate synthetic data\"\"\"\n    \n    # generate time\n    time = np.arange(0,seconds,1/samples_per_second)\n    \n    # create pandas\n    df = pd.DataFrame(data=time, columns=[\'time\'])\n    \n    def generateSignal(t):\n        noise = -2 * np.random.random(len(t)) + 1\n        return np.sin(2*np.pi*10*t) + noise\n    \n    # generate signal\n    df[\'signal\'] = generateSignal(df[\'time\'].values)\n       \n    # return time and signal\n    return [df[\'time\'],df[\'signal\']]
\n\n\n\n

The change there is getting values from df[\'time\']. This implementation is slightly faster under the same test conditions and it scales nicely with a lot more data and additional processing.

\n\n\n\n
# Data types\ntype(dataFrame[\'time\'])\npandas.core.series.Series\ntype(dataFrame[\'time\'].values)\nnumpy.ndarray
\n\n\n\n

Bonus

\n\n\n\n

Since this is already a long post, I\'ll get to SymPy in the next post. Here is a visualization of the generated synthetic time-series data.

\n\n\n\n
\"\"
\n\n\n\n

You can see, and by definition, this noise data has no information in it. In the notebook, I show the initial steps of adding information into the data. The data is represented as a sound wave here, but if you change your perspective a bit, this process and data structure apply to other sources of time-series data, like a heartbeat.

\n\n\n\n

Conclusion

\n\n\n\n

The Python ecosystem is full of libraries and have been battle-tested and optimized for data science. The data science tasks are computationally intensive and writing efficient code from the start, not buying into the mantra which presupposes that premature optimization is the root of all evil, will allow you to work efficiently in your local environment before moving to the cloud.

\n','Optimizing code with pandas and NumPy','','publish','open','open','','optimizing-code-with-pandas-and-numpy','','','2020-11-26 17:20:34','2020-11-26 22:20:34','',0,'http://localhost:8082/?p=1144',0,'post','',0),(1177,3,'2020-01-02 12:36:45','2020-01-02 17:36:45','','noise-data','','inherit','open','closed','','noise-data','','','2020-01-15 21:01:22','2020-01-16 02:01:22','',1144,'http://localhost:8082/wp-content/uploads/2020/01/noise-data.png',0,'attachment','image/png',0),(1184,3,'2020-01-02 13:01:02','2020-01-02 18:01:02','','performance-extreme','','inherit','open','closed','','performance-extreme','','','2020-01-15 21:00:41','2020-01-16 02:00:41','',1144,'http://localhost:8082/wp-content/uploads/2020/01/performance-extreme.png',0,'attachment','image/png',0),(1185,3,'2020-01-02 13:13:31','2020-01-02 18:13:31','','performance-test-optimize-notebook','','inherit','open','closed','','performance-test-optimize-notebook','','','2020-01-02 13:13:31','2020-01-02 18:13:31','',0,'http://localhost:8082/wp-content/uploads/2020/01/performance-test-optimize-notebook.html',0,'attachment','text/html',0),(1186,3,'2020-01-02 13:29:50','2020-01-02 18:29:50','\n[iframe height=\"14650px\" src=\"http://translucentcomputing.com/wp-content/uploads/2020/01/performance-test-optimize-notebook.html\"]\n','Pandas and NumPy Performance Test Notebook','','publish','open','open','','pandas-and-numpy-performance-test-notebook','','','2020-11-26 17:21:23','2020-11-26 22:21:23','',0,'http://localhost:8082/?p=1186',0,'post','',0),(1195,3,'2020-01-02 13:28:05','2020-01-02 18:28:05','','XQDDaTdQeD','','inherit','open','closed','','xqddatdqed','','','2020-01-15 21:00:22','2020-01-16 02:00:22','',1186,'http://localhost:8082/wp-content/uploads/2020/01/XQDDaTdQeD.gif',0,'attachment','image/gif',0),(1213,3,'2020-01-06 19:50:51','2020-01-07 00:50:51','\n

Intro

\n\n\n\n

Computational mathematics comes in different flavours, symbolic, numerical and graphical. Numerical computations are the workhorse of computations. Graphical computations are great for visualizations. Symbolic or algebraic computations are great for getting an intuition for a mathematical problem. As an addition to the previous post, I\'m going to examine SymPy and symbolic mathematics in Python and to help with guiding the conversation, SymPy will be used to create a simplified ECG model.

\n\n\n\n

Test Notebook - https://translucent.local/2020/01/sympy-and-ecg-notebook/

\n\n\n\n

ECG

\n\n\n\n
Electrocardiography is the process of producing an electrocardiogram (ECG or EKG), a recording – a graph of voltage versus time – of the electrical activity of the heart using electrodes placed on the skin. These electrodes detect the small electrical changes that are a consequence of cardiac muscle depolarization followed by repolarization during each cardiac cycle (heartbeat).
\n\n\n\n

An ECG is a test that checks how your heart is functioning by recording the electrical activity that passed through your heart. Here is an example of ECG from a healthy individual.

\n\n\n\n
\"Real
A 12-lead ECG of a 26-year-old male with an incomplete RBBB
https://en.wikipedia.org/wiki/Electrocardiography#/media/File:12leadECG.jpg
\n\n\n\n

ECG is periodic time-series data. You can see a pattern in the image above. Such an output would be compared to known health or unhealthy patterns to help in detecting heart problems.

\n\n\n\n

For this post, we will only be focusing on modelling a normal sinus rhythm. A healthy individual pattern. Here is an example of a single heartbeat pattern with given segments in the waveform.

\n\n\n\n
\"ECG
Schematic diagram of normal sinus rhythm for a human heart as seen on ECG
https://en.wikipedia.org/wiki/Electrocardiography#/media/File:SinusRhythmLabels.svg
\n\n\n\n

Problem

\n\n\n\n

Create synthetic time-series data that models sinus rhythm for a human heart as seen on ECG. Include the different ECG segments in your model including the P, Q, R, S, T segments.

\n\n\n\n

SymPy

\n\n\n\n

SymPy is a Python library that was created for symbolic mathematics. SymPy has a lot of features and it really shines when it comes to calculus. Before we dive into the code for ECG here is a basic example that shows the main features of SymPy.

\n\n\n\n[iframe height=\"1100px\" src=\"http://translucentcomputing.com/wp-content/uploads/2020/01/sympy-example.html\"]\n\n\n\n

The example creates a symbol \"x\" and the function \"f\" is defined with the symbol \"x\". The following plot has been created from different values of \"x\". After the function is differentiated, both the function and its derivative are plot together.

\n\n\n\n

ECG Model

\n\n\n\n

There are a few different methods used to generate ECG models. Here is the research paper that we use to show how one could use the formulas defined there and SymPy to develop a model.

\n\n\n\n

Research Paper - https://www.researchgate.net/publication/328097407_MODEL_FOR_GENERATING_SIMPLE_SYNTHETIC_ECG_SIGNALS

\n\n\n\n

First, we define the symbols required by the mathematical formulas.

\n\n\n\n
# create symbols for sympy processing\nk,K_B,A_P,K_P,K_PQ,A_Q,K_Q,A_R,K_R,A_S,K_S,K_CS,s_m,A_T,K_T,K_ST,s_I,K_I= symbols(\'k K_B A_P K_P K_PQ A_Q K_Q A_R K_R A_S K_S K_CS s_m A_T K_T K_ST s_I K_I\')
\n\n\n\n

We then get to work defining the formulas in terms of the symbols.

\n\n\n\n
# P wave\nP=-A_P/2*cos((2*pi*k + 15)/K_P)+A_P/2
\n\n\n\n
\"ECG
P waveform equation
\n\n\n\n

Once we have the formula defined we can plug in some values and plot it. The Piecewise function is used to define an interval for the function.

\n\n\n\n
# P wave\nI_K_B=124\nV_A_P=0.01\nI_K_P=79\nP_SUB = P.subs([(A_P,V_A_P),(K_P,I_K_P)])\nP_P = Piecewise((P_SUB, Interval(0, I_K_P).contains(k)), (0, True))\nplot(P_P,(k,0,I_K_P))
\n\n\n\n
\"P
P Waveform
\n\n\n\n

TC ECG Model

\n\n\n\n

The model defined in the research paper strives to be as accurate as possible and customizable for different heart conditions. By contrast, in our simplified model, our goal is to approximate only the ideal version of the model.

\n\n\n\n

To reduce the complexity of the model we limit the segments of our model to simple sinusoidal signals. Using only the properties of trigonometric functions with time-shifting and time-scaling we approximate and generate an ideal version of the ECG model.

\n\n\n\n
def createECGModel():\n    p=0.1*sin((pi*k+120)/80)\n    p_p=Piecewise((p,Interval(120,200).contains(k)),(0,True))\n    q=-0.03*cos((pi*k-30)/20)\n    q_p=Piecewise((q,Interval(240,260).contains(k)),(0,True))\n    r=1.1*cos((pi*k+31.2)/20)\n    r_p=Piecewise((r,Interval(260,280).contains(k)),(0,True))\n    s=-0.06*sin(pi*k/10)\n    s_p=Piecewise((s,Interval(280,290).contains(k)),(0,True))\n    t=0.4*sin((pi*k-215)/110)\n    t_p=Piecewise((t,Interval(290,400).contains(k)),(0,True))\n    return p_p+q_p+r_p+s_p+t_p
\n\n\n\n
\"\"
\n\n\n\n

We then graph it to see how close we are to the ideal version.

\n\n\n\n
\"TC
TC ECG Model
\n\n\n\n

After we create the initial model, we want to use that in some data science tasks. We first prepare the SymPy formula and use it with our data analysis tool, pandas.

\n\n\n\n

Performance

\n\n\n\n

SymPy also supports vectorization, you can run the formulas directly with substitutions or you can define a vectorized version of the formula. Here is the non-vectorized version:

\n\n\n\n
 period = np.arange(0,500)\n data = []\n for t in period:\n     data.append(ecg.subs(k,t))
\n\n\n\n

The code loops through the values of k and generates a value for each data point. Using this code the ECG waveform generation function runs on average in 4 seconds. Here is the vectorized version:

\n\n\n\n
ecg_lam = lambdify(k,ecg,\'numpy\')\nperiod = np.arange(0,500)\ndata = ecg_lam(period)
\n\n\n\n

Here we use the lambdify function to create a vectorized version of the formula. We then apply the formula to all the data points in the array. This version runs in 0.02 seconds.

\n\n\n\n

Once we have the data for a single heartbeat in pandas, we duplicate the data to generate a continuous waveform for multiple heartbeats.

\n\n\n\n
df = pd.DataFrame(data=data)\n# duplicate data - this is for visualization only\ndf = df.append(df,ignore_index=True)\ndf = df.append(df,ignore_index=True)\ndf = df.append(df,ignore_index=True)
\n\n\n\n

Here is how the ECG waveform looks, generated by our simplified model.

\n\n\n\n
\"Generated
Generate ECG waveform
\n\n\n\n

For comparison here is the output from my Apple watch ECG.

\n\n\n\n
\"Apple
The output from My Apple Watch ECG
\n\n\n\n

Conclusion

\n\n\n\n

SymPy is one of my favourite libs to use and to play around with. Often you can reduce the complexity of your model and generate an idealized version of it. Such a model can be used to drive the initial development of your AI. It can also be used to benchmark your machine learning code.

\n','Using SymPy to Build ECG Model','','publish','open','open','','using-sympy-to-build-ecg-model','','','2020-11-26 17:19:33','2020-11-26 22:19:33','',0,'http://localhost:8082/?p=1213',0,'post','',0),(1215,3,'2020-01-06 12:43:04','2020-01-06 17:43:04','SymPy and ECG feature image for a blog.','ecg-sympy','','inherit','open','closed','','ecg-sympy','','','2020-01-06 12:44:27','2020-01-06 17:44:27','',0,'http://localhost:8082/wp-content/uploads/2020/01/ecg-sympy.jpg',0,'attachment','image/jpeg',0),(1216,3,'2020-01-06 13:03:17','2020-01-06 18:03:17','','performance-ecg','','inherit','open','closed','','performance-ecg','','','2020-01-06 13:03:17','2020-01-06 18:03:17','',0,'http://localhost:8082/wp-content/uploads/2020/01/performance-ecg.html',0,'attachment','text/html',0),(1217,3,'2020-01-06 13:30:18','2020-01-06 18:30:18','','performance-test-wave','','inherit','open','closed','','performance-test-wave','','','2020-01-06 13:30:18','2020-01-06 18:30:18','',0,'http://localhost:8082/wp-content/uploads/2020/01/performance-test-wave.html',0,'attachment','text/html',0),(1218,3,'2020-01-06 13:39:38','2020-01-06 18:39:38','','t7W4ihQb60','','inherit','open','closed','','t7w4ihqb60','','','2020-01-15 20:59:49','2020-01-16 01:59:49','',0,'http://localhost:8082/wp-content/uploads/2020/01/t7W4ihQb60.gif',0,'attachment','image/gif',0),(1219,3,'2020-01-06 13:47:15','2020-01-06 18:47:15','','CuSyhhKnYD','','inherit','open','closed','','cusyhhknyd','','','2020-01-15 20:59:24','2020-01-16 01:59:24','',0,'http://localhost:8082/wp-content/uploads/2020/01/CuSyhhKnYD.gif',0,'attachment','image/gif',0),(1220,3,'2020-01-06 13:57:08','2020-01-06 18:57:08','\n[iframe height=\"5600px\" src=\"http://translucentcomputing.com/wp-content/uploads/2020/01/performance-test-wave.html\"]\n','Performance Waveform Generator Starter Notebook','','publish','open','open','','performance-waveform-generator-starter-notebook','','','2020-11-26 17:20:00','2020-11-26 22:20:00','',0,'http://localhost:8082/?p=1220',0,'post','',0),(1231,3,'2020-01-06 14:06:39','2020-01-06 19:06:39','\n

This is a notebook for the SymPy ECG model post.

\n\n\n\n[iframe height=\"6600px\" src=\"http://translucentcomputing.com/wp-content/uploads/2020/01/performance-ecg.html\"]\n','SymPy and ECG Notebook','','publish','open','open','','sympy-and-ecg-notebook','','','2020-11-26 17:19:48','2020-11-26 22:19:48','',0,'http://localhost:8082/?p=1231',0,'post','',0),(1243,3,'2020-01-06 14:32:18','2020-01-06 19:32:18','','12leadECG','','inherit','open','closed','','12leadecg','','','2020-01-15 20:58:51','2020-01-16 01:58:51','',0,'http://localhost:8082/wp-content/uploads/2020/01/12leadECG.jpg',0,'attachment','image/jpeg',0),(1244,3,'2020-01-06 14:34:48','2020-01-06 19:34:48','','sinusrhythmlabels','','inherit','open','closed','','sinusrhythmlabels','','','2020-01-15 20:58:38','2020-01-16 01:58:38','',0,'http://localhost:8082/wp-content/uploads/2020/01/sinusrhythmlabels.jpeg',0,'attachment','image/jpeg',0),(1246,3,'2020-01-06 14:35:48','2020-01-06 19:35:48','','apple-watch-ecg','','inherit','open','closed','','apple-watch-ecg','','','2020-01-15 20:57:59','2020-01-16 01:57:59','',0,'http://localhost:8082/wp-content/uploads/2020/01/apple-watch-ecg.png',0,'attachment','image/png',0),(1275,3,'2020-01-06 17:22:46','2020-01-06 22:22:46','','sympy-example','','inherit','open','closed','','sympy-example','','','2020-01-06 17:22:46','2020-01-06 22:22:46','',0,'http://localhost:8082/wp-content/uploads/2020/01/sympy-example.html',0,'attachment','text/html',0),(1284,3,'2020-01-06 17:48:05','2020-01-06 22:48:05','','p-wave-formula','','inherit','open','closed','','p-wave-formula','','','2020-01-15 20:57:37','2020-01-16 01:57:37','',1213,'http://localhost:8082/wp-content/uploads/2020/01/p-wave-formula.png',0,'attachment','image/png',0),(1285,3,'2020-01-06 17:50:14','2020-01-06 22:50:14','','p-wave-graph','','inherit','open','closed','','p-wave-graph','','','2020-01-15 20:57:21','2020-01-16 01:57:21','',1213,'http://localhost:8082/wp-content/uploads/2020/01/p-wave-graph.png',0,'attachment','image/png',0),(1289,3,'2020-01-06 18:08:47','2020-01-06 23:08:47','','tc-ecg-model-formula','','inherit','open','closed','','tc-ecg-model-formula','','','2020-01-15 20:57:04','2020-01-16 01:57:04','',1213,'http://localhost:8082/wp-content/uploads/2020/01/tc-ecg-model-formula.png',0,'attachment','image/png',0),(1291,3,'2020-01-06 18:10:35','2020-01-06 23:10:35','','tc-ecg-model','','inherit','open','closed','','tc-ecg-model','','','2020-01-15 20:56:48','2020-01-16 01:56:48','',1213,'http://localhost:8082/wp-content/uploads/2020/01/tc-ecg-model.png',0,'attachment','image/png',0),(1298,3,'2020-01-06 18:26:22','2020-01-06 23:26:22','','tc-ecg-wave','','inherit','open','closed','','tc-ecg-wave','','','2020-01-15 20:56:31','2020-01-16 01:56:31','',1213,'http://localhost:8082/wp-content/uploads/2020/01/tc-ecg-wave.png',0,'attachment','image/png',0),(1324,3,'2020-01-10 09:41:49','2020-01-10 14:41:49','\n
TC Audio
\n\n\n\n

Intro

\n\n\n\n

Bimodal is a term often used in statistics that Gartner applied to the IT industry back in 2015. Gartner defined bimodal as \"... the practice of managing two separate but coherent styles of work: one focused on predictability; the other on exploration\". The two modes were named Mode 1 and Mode 2 (Am I the only one who thinks of Thing One and Thing Two?).  

\n\n\n\n
  • Mode 1 - \"... is optimized for areas that are more predictable and well-understood. It focuses on exploiting what is known, while renovating the legacy environment ...\"
  • Mode 2 - \"is exploratory, experimenting to solve new problems and optimized for areas of uncertainty.\"
\n\n\n\n

The bimodal concept was created to guide the IT industry in the process of digital transformation, let’s explore how that fits the Kubernetes ecosystem and Helm charts.

\n\n\n\n

The preferred method for packaging is Helm (68%) followed by managed Kubernetes offerings (19%).

\n\n\n\n

Helm

\n\n\n\n

Helm has emerged as the de facto way to manage Kubernetes applications(apps). Helm is a package manager for Kubernetes. The package is called a Chart, and it defines Kubernetes apps. There is a vast and vibrant Chart community that continuously delivers new Charts and bug fixes for current Charts. At Translucent, we leverage the community Charts to provide value to our clients.

\n\n\n\n

Chart

\n\n\n\n

There has been a rapid evolution of Chart development in both quality and innovation. The improved quality gives Chart user the ability to customize the deployment of the Kubernetes apps with more configuration options. The Chart developers are innovating by providing Charts for Kubernetes apps that pack more technologies into a single app. This recent trend in the growth of these monolithic Charts leads me to wonder if we should apply the bimodal concept to Chart development?

\n\n\n\n

Monolithic

\n\n\n\n

As the Kubernetes ecosystem continuously matures, a standard Kubernetes app pattern has emerged. App developers, following Microservice architecture, break up the app into smaller pieces, called Microservices. Besides the Microservices, the databases, jobs, and additional tools are deployed and distributed as smaller pieces in Kubernetes. Since most of the apps follow a standard pattern, there is a tendency to try to cram all the app microservices, databases, jobs, etc. into a single Chart. While such optimizations may appear to be beneficial, they feel incongruent with the DevOps or SRE approach.

\n\n\n\n
\"\"
\n\n\n\n

Conclusion

\n\n\n\n

Suppressing my inner DevOps disgruntled voices, I do have to acknowledge that packaging a whole app into a single Chart comes with benefits. You offload the app knowhow to the people who created the app and you are left with a one-click install of a single Chart. You don\'t have to worry about deploying individual pieces and gluing them together. I call these monolithic Charts, Mode 1.

\n\n\n\n

Mode 1 Helm Charts are well suited for infrastructure technologies like CI/CD tools. At Translucent we use Jenkins and Spinnaker for CI/CD. Both are packaged as Mode 1 Helm Charts. They combine all the technologies that are needed for deployment.

\n\n\n\n

We use Mode 2 Helm Charts for everything that makes up our client\'s apps. Since we continuously innovate, either by improving the Chart or by engaging in continuous deployments and delivery of individual Microservices, we require the flexibility that Mode 2 Helm Charts provide.

\n','Bimodal Helm Charts','','publish','open','open','','bimodal-helm-charts','','','2021-08-31 12:47:22','2021-08-31 16:47:22','',0,'http://localhost:8082/?p=1324',0,'post','',0),(1337,3,'2020-01-08 17:06:42','2020-01-08 22:06:42','','bimodal-helm-charts','','inherit','open','closed','','bimodal-helm-charts-2','','','2020-01-15 20:55:54','2020-01-16 01:55:54','',1324,'http://localhost:8082/wp-content/uploads/2020/01/bimodal-helm-charts.png',0,'attachment','image/png',0),(1358,3,'2020-01-08 17:54:06','2020-01-08 22:54:06','','icon_cncf_twitter','','inherit','open','closed','','icon_cncf_twitter','','','2020-01-15 20:55:38','2020-01-16 01:55:38','',1324,'http://localhost:8082/wp-content/uploads/2020/01/icon_cncf_twitter.png',0,'attachment','image/png',0),(1378,3,'2020-01-08 18:24:18','2020-01-08 23:24:18','','3lkk3v','','inherit','open','closed','','3lkk3v','','','2020-01-15 20:55:25','2020-01-16 01:55:25','',1324,'http://localhost:8082/wp-content/uploads/2020/01/3lkk3v.jpg',0,'attachment','image/jpeg',0),(1405,3,'2020-01-13 19:17:19','2020-01-14 00:17:19','\n
TC Audio
\n\n\n\n

What is Kubernetes, and should I blame my DevOps engineer?

\n\n\n\n

Kubernetes is a container orchestration system. It lets you deploy, scale, and manage containerized applications. Kubernetes is always deployed as a cluster, made up of a master node and many minion nodes. Each node is a virtual machine(VM) running in the cloud, consuming cloud resources.

\n\n\n\n

Cloud complexity and costs have forced many companies to migrate their cloud infrastructure into Kubernetes clusters. Their cloud resources get put into containers (\'containerized\'), vast Kubernetes clusters are created, and workloads are deployed into these clusters. Since the clusters are running within the cloud, the cloud providers are more than happy to assist in such a move.

\n\n\n\n

Once you go through this migration process however, you might find that your cloud bill has remained the same or increased. And there\'s no reason to blame your poor, overworked DevOps engineer. By the time you finish reading this article, you\'ll see how they\'re going to be a powerful ally against your rising cloud costs. So let\'s examine strategies that can help you to manage a Kubernetes cluster without breaking the bank.

\n\n\n\n

Almost half of C-suite executives cited cloud complexity (47%) as the factor that will have the most negative impact on cloud computing’s ROI over the next five years

\"avatar\"

Cloud Complexity Management survey results

Source
\n\n\n\n

What\'s in Our Cloud?

\n\n\n\n
\"The
The Cloud
\n\n\n\n

For analysis, we are looking at the cloud as an amorphous monolith made up of CPU, GPU (and TPU), RAM, disks, and networking. These are the primary resources that cloud providers sell. A Kubernetes cluster created and deployed in the cloud uses allocated resources to run containers.

\n\n\n\n

Kubernetes in the Cloud

\n\n\n\n
\"Kubernetes
Kubernetes Cluster
\n\n\n\n

The next logical question is: What is Kubernetes actually doing with those cloud resources? Well, the first thing it does is claim its space and marshall its resources. Think of Kubernetes as a sponge in a too-narrow beaker, dipped in not-quite-enough water. It\'s going to soak up every drop that you give it, and expand to the exact size of the container that it\'s in.

\n\n\n\n

So before cluster creation, you define the number of nodes (the size of the beaker for our sponge) and types and power levels (the amount of water poured onto the sponge) of virtual machines that are used to create the nodes. Cloud providers have a lot of different kinds of virtual machines from which to choose. The usual approach is to pick something in the middle range, not too big and not too small, something that feels like it has just enough RAM and CPU. An educated guesstimation. Your DevOps engineer can help you to do the research and make these decisions.

\n\n\n\n
\"Example
Heterogeneous Workloads - Underutilized Node Resources
\n\n\n\n

Remember: Kubernetes claims these resources and does not share with outside processes.

\n\n\n\n

Workloads running within the Kubernetes cluster are heterogeneous. The microservices, functions, jobs, databases, etc. running in the cluster utilize different amounts of cloud resources through the nodes. It\'s important to understand what resources your typical tasks are going to use, and tailor your nodes accordingly. Some workloads, like Jenkins builder for example, are CPU heavy. Other workloads, like the ElasticSearch databases, are RAM heavy. Still others, such as machine learning training jobs, are GPU heavy. Using a Kubernetes cluster that is composed of the same type of nodes to support these different workloads means you are losing money, since the cluster is not cost-optimized for any of the workloads.

\n\n\n\n
Table 1: Average Monthly Cost for Virtual Machines used by a Node
\n\n\n\n
NodeCPURAMMonthly Cost
Standard VM27.5GB$47.00
High RAM VM213GB$60.00
High CPU VM21.8GB$36.00
\n\n\n\n
* Using average cloud provider prices, not reflecting any individual cloud provider.
\n\n\n\n

Pool Strategy

\n\n\n\n
\"Kubernetes
Kubernetes Cluster
\n\n\n\n

Every major cloud provider, including AWS, GPC, and Azure, gives the ability to group multiple nodes into a node pool. The nodes in the node pool are of the same kind of virtual machine, with the same cloud resource specs. By creating specific pools that are cost-optimized for particular workloads, you can reduce the total cost of the cluster. For example, moving the CPU intensive workload to the CPU node pool, where high CPU and low RAM virtual machines have been configured, would reduce the total cost.

\n\n\n\n

This is where your DevOps engineer can really help out. They can perform a performance test that charts the typical resource usage of a given workload. Armed with that knowledge, you can assign the right processes to the right node pools.

\n\n\n\n

Using the pricing from Table 1, here is an example of a 5 node Kubernetes cluster. There are 3 clusters with 5 same kinds of nodes and one cluster with a mix of different types of nodes.

\n\n\n\n
Table 2: Average Yearly Cost for 5 Node Kubernetes Cluster.
\n\n\n\n
PoolsCPURAMMonthly CostYearly Cost
Pool (5) Standard VM1037.5GB$235$2820
Pool (5) High RAM VM1065GB$300$3600
Pool (5) High CPU VM109GB$180$900
Pool High CPU (2 VM) + Pool High RAM (1 VM) + Pool (2 VM) Standard1047.8GB$226$2712
\n\n\n\n

Using a cluster with only standard VM nodes will leave the cluster nodes underutilized with leftover CPU and/or RAM capacity. Using only high RAM VM\'s for the nodes will be costly since most likely the running workloads will not only be RAM heavy, any CPU-heavy workloads will max out the CPU allocations for the node and leave you with underutilized RAM.

\n\n\n\n

Understanding your workloads is essential to optimize the total cost of the cluster. Starting with a naive cluster configuration with homogenous VM\'s in the cluster node pool, and profiling your workloads with monitoring tools will give you insight into the cluster workloads. The feedback can then be used to create more specialized pools and fully utilize the nodes and reduce the total cost of the cloud cost for the cluster.

\n\n\n\n

Preemptible Strategy

\n\n\n\n

All the major cloud providers allow users to create virtual machines from their excess capacity. AWS has EC2 Spot, Google has Preemptible VM and Azure has Low-priority VM. These virtual machines are short-lived. The expectation is that they will be shut down, and the workloads running on them terminated. Depending on the cloud, you get different time limits. Since these are not regular virtual machines and they are short-lived, you can save up to 90% on the cost of running these virtual machines. These types of virtual machines are recommended to be used for batch jobs and fault-tolerant applications. They can also be used with the Kubernetes cluster.

\n\n\n\n
Table 3: Average Monthly Cost for Preemptible Virtual Machines used by Node
\n\n\n\n
NodeCPURAMMonthly Cost
Standard VM27.5GB$14.00
High RAM VM213GB$18.00
High CPU VM21.8GB$10.00
\n\n\n\n
*Using average cloud provider prices, not reflecting any individual cloud provider.
\n\n\n\n

Now you might be thinking, what is Kubernetes supposed to do with a bunch of virtual machines that are going to be terminated often, most likely daily? The answer is: Quite a bit. Because a Kubernetes cluster is self-healing; it will restart the nodes and workloads automatically after being terminated. So it can make use of these temporary VMs with more CPU and RAM at a fraction of the cost of regular VMs.

\n\n\n\n

Having a pool that is composed of preemptible virtual machines is essential when it comes to reducing the total cost of the cluster and running workloads efficiently. Let\'s use a Jenkins builder workload to show how the preemptible pool can save money and improve efficiency. The Jenkins builder is a job created by a DevOps engineer that pulls source code, compiles the code, runs tests and builds the Docker image.

\n\n\n\n
Use Case 1 - Swap
\n\n\n\n

\n\n\n\n

The Jenkins builder workload on average takes from 3 min to 20 min. In this use case, we are replacing the High CPU VM with Preemptible High CPU VM.

\n\n\n\n
Table 4: Preemptible Pool 5 Node Kubernetes Cluster
\n\n\n\n
PoolsCPURAMMonthly CostYearly Cost
Pool High CPU (2 VM) + Pool High RAM (1 VM) + Pool (2 VM) Standard1047.8GB$226$2712
Preemptible Pool High CPU (2 VM) + Pool High RAM (1 VM) + Pool (2 VM) Standard1047.8GB$174$2088
\n\n\n\n

Here we swap the High CPU VM\'s with Preemptible High CPU VM\'s. This is a direct replacement with VM\'s that have the same specification. The daily termination of the virtual machines only affects the Jenkins builder workloads if the virtual machine is terminated in the middle of the job. Since we are saving over $700 a year, we can allow for the terminated job to be executed again after the nodes have been restarted.

\n\n\n\n
Use Case 2 - Use more
\n\n\n\n

\n\n\n\n

The cost is a lot less for the preemptible virtual machines and we can use virtual machines with more CPU and RAM.

\n\n\n\n
Table 5: Preemptible Pool 5 Node Kubernetes Cluster with more resources
\n\n\n\n
PoolsCPURAMMonthly CostYearly Cost
Pool High CPU (2 VM) + Pool High RAM (1 VM) + Pool (2 VM) Standard1047.8GB$226$2712
Preemptible Pool High CPU (2 VM) + Pool High RAM (1 VM) + Pool (2 VM) Standard1451.4GB$196$2352
\n\n\n\n

Staying below the price of the non-preemptable cluster pool configuration, we increased both the CPU and RAM. The High CPU VMs were replaced by more powerful Preempitable High CPU VMs. It allows for the Jenkins Builder workloads to complete faster. It also leads to higher throughput since we can run more Jenkins Builder workloads within a given day. This makes our developers and QA happy, and brings a grin to our face when we see the lower cloud bill.

\n\n\n\n

Conclusion

\n\n\n\n

In this post, we hope to have thoroughly answered the question \'What is Kubernetes\', before looking at using node pools and preemptible virtual machines as a strategy to help with managing cloud costs for the Kubernetes cluster. Working alongside your DevOps engineer, these strategies will reduce cloud costs and allow you to be more efficient with the cloud resources used by the cluster nodes. In the next post, we will look at strategies for reducing the cost by examining the workloads.

\n\n\n\n
Links
\n\n\n\n\n\n\n\n

\n','What is Kubernetes, and Why are My Cloud Costs So High?! - Part 1','','publish','open','open','','strategies-for-managing-kubernetes-cloud-cost-part-1','','','2021-08-31 12:46:28','2021-08-31 16:46:28','',0,'http://localhost:8082/?p=1405',0,'post','',0),(1411,3,'2020-01-10 18:46:33','2020-01-10 23:46:33','','cloud-cost-kube','Cloud bill increasing','inherit','open','closed','','cloud-cost-kube','','','2020-01-15 20:54:59','2020-01-16 01:54:59','',0,'http://localhost:8082/wp-content/uploads/2020/01/cloud-cost-kube.png',0,'attachment','image/png',0),(1415,3,'2020-01-10 19:07:49','2020-01-11 00:07:49','','Deloitte-Logo','','inherit','open','closed','','deloitte-logo','','','2021-10-06 23:09:00','2021-10-07 03:09:00','',1405,'http://localhost:8082/wp-content/uploads/2020/01/Deloitte-Logo.png',0,'attachment','image/png',0),(1416,3,'2020-01-10 19:08:45','2020-01-11 00:08:45','','deloitte-squarelogo','','inherit','open','closed','','deloitte-squarelogo','','','2020-01-15 20:54:07','2020-01-16 01:54:07','',1405,'http://localhost:8082/wp-content/uploads/2020/01/deloitte-squarelogo.png',0,'attachment','image/png',0),(1423,3,'2020-01-12 12:18:01','2020-01-12 17:18:01','Viewing the cloud as a sum of resources.','cloudblob','Viewing the cloud as a sum of resources.','inherit','open','closed','','cloudblob','','','2021-10-06 23:08:53','2021-10-07 03:08:53','',0,'http://localhost:8082/wp-content/uploads/2020/01/cloudblob.jpeg',0,'attachment','image/jpeg',0),(1472,3,'2020-01-12 17:31:33','2020-01-12 22:31:33','Showing 3 node pools in a Kubernetes cluster.','kubenodespools','Showing 3 node pools in a Kubernetes cluster.','inherit','open','closed','','kubenodespools','','','2020-01-15 20:52:17','2020-01-16 01:52:17','',1405,'http://localhost:8082/wp-content/uploads/2020/01/kubenodespools.jpeg',0,'attachment','image/jpeg',0),(1513,3,'2020-01-13 18:47:45','2020-01-13 23:47:45','\"audio_bimodal_blog_v2\".','audio_bimodal_blog_v2','','inherit','open','closed','','audio_bimodal_blog_v2','','','2021-10-06 23:08:06','2021-10-07 03:08:06','',0,'http://localhost:8082/wp-content/uploads/2020/01/audio_bimodal_blog_v2.mp3',0,'attachment','audio/mpeg',0),(1517,3,'2020-01-13 18:57:48','2020-01-13 23:57:48','Diagram of Kubernetes cluster with the master node and many minion nodes.','kubenodes-v2','Diagram of Kubernetes cluster with the master node and many minion nodes.','inherit','open','closed','','kubenodes-v2','','','2020-01-15 20:51:25','2020-01-16 01:51:25','',1405,'http://localhost:8082/wp-content/uploads/2020/01/kubenodes-v2.jpeg',0,'attachment','image/jpeg',0),(1519,3,'2020-01-13 18:59:59','2020-01-13 23:59:59','Showing a node with underutilized CPU and underutilized RAM. ','node_resources_unused_v2','Showing a node with underutilized CPU and underutilized RAM. ','inherit','open','closed','','node_resources_unused_v2','','','2020-01-15 20:50:26','2020-01-16 01:50:26','',1405,'http://localhost:8082/wp-content/uploads/2020/01/node_resources_unused_v2.jpeg',0,'attachment','image/jpeg',0),(1526,3,'2021-08-25 15:20:43','0000-00-00 00:00:00','\n

Intro

\n\n\n\n

Developers, programmers, software engineers and hackers are familiar with the TIOBE Index. Let\'s have a more subjective look at the different programming languages. Here is our list of contestants.

\n\n\n\n
  • Java
  • Python
  • Go
  • TypeScript
  • Swift
  • PHP
  • C - Old for reference
\n\n\n\n

Our contestants will be judged on ascetics, symmetry, noise, verbosity, and maybe more.

\n\n\n\n

Round 1 - Constant and Variable

\n\n\n\n
\n\n\n\n
LanguageScoreNotes
Swift/Go10We have a tie, how exciting!
TypeScript8Expected more, shame, \"let\"?
Python7No constant, but still looks good
C6Classic, ageing well
Java5Too much noise
PHP4What a hell is \"define\"?
\n\n\n\n

Round 2 - Flow Control

\n','Beauty Index: Programming Languages','','draft','open','open','','','','','2021-08-25 15:20:43','2021-08-25 19:20:43','',0,'http://localhost:8082/?p=1526',0,'post','',0),(1539,3,'2020-01-14 09:43:21','2020-01-14 14:43:21','\"Strategies For Managing Kubernetes Cloud Cost Part 1\".','Strategies For Managing Kubernetes Cloud Cost Part 1','','inherit','open','closed','','strategies-for-managing-kubernetes-cloud-cost-part-1-2','','','2021-10-06 23:07:58','2021-10-07 03:07:58','',0,'http://localhost:8082/wp-content/uploads/2020/01/audio-kube-cost-part1_v4.mp3',0,'attachment','audio/mpeg',0),(1546,4,'2020-01-15 14:54:38','2020-01-15 19:54:38','','Default Form','','publish','closed','closed','','default-form','','','2020-01-15 14:54:38','2020-01-15 19:54:38','',0,'http://localhost:8082/2020/01/default-form/',0,'wpdiscuz_form','',0),(1554,3,'2020-01-16 13:19:16','2020-01-16 18:19:16','','Text-to-speech','','inherit','open','closed','','text-to-speech','','','2020-01-16 13:19:16','2020-01-16 18:19:16','',0,'http://localhost:8082/wp-content/uploads/2020/01/Text-to-speech.html',0,'attachment','text/html',0),(1555,3,'2020-01-16 13:29:59','2020-01-16 18:29:59','\n

Example of how we generated audio for our new blogs. Ex. (here)

\n\n\n\n[iframe height=\"2400px\" src=\"http://translucentcomputing.com/wp-content/uploads/2020/01/Text-to-speech.html\"]\n','Text-To-Speech Example','','publish','open','open','','text-to-speech-example','','','2021-08-21 12:20:16','2021-08-21 16:20:16','',0,'http://localhost:8082/?p=1555',0,'post','',2),(1560,3,'2020-01-16 13:27:54','2020-01-16 18:27:54','','LyoJL5YisS','','inherit','open','closed','','lyojl5yiss','','','2021-10-06 23:07:51','2021-10-07 03:07:51','',1555,'http://localhost:8082/wp-content/uploads/2020/01/LyoJL5YisS.gif',0,'attachment','image/gif',0),(1622,4,'2020-01-21 20:36:10','2020-01-22 01:36:10','','blogimg','','inherit','open','closed','','blogimg','','','2021-10-06 23:07:23','2021-10-07 03:07:23','',1822,'http://localhost:8082/wp-content/uploads/2020/01/blogimg.jpg',0,'attachment','image/jpeg',0),(1623,4,'2020-01-21 20:36:11','2020-01-22 01:36:11','','t-translucent','','inherit','open','closed','','t-translucent','','','2021-10-06 23:07:04','2021-10-07 03:07:04','',0,'http://localhost:8082/wp-content/uploads/2020/01/t-translucent.png',0,'attachment','image/png',0),(1628,4,'2020-04-05 15:41:13','2020-04-05 19:41:13','\n

Here is a look at total cases growth over time for the 2019 Novel Coronavirus (COVID-19). 

\n\n\n\n

Data is ordered and re-order by countries and total cases as time passes. You will see it live; new countries will flow from the left side. You can use built-in graph controls to zoom in.

\n\n\n\n

This a new feature we added our TEKStack Machine Learning platform to help in the COVID-19 Fight.

\n\n\n\n

All countries - Total Cases Growth Over Time

\n\n\n\n
\nhttps://youtu.be/vRE9rQmSLMQ\n
\n\n\n\n

Top Countries - Total Cases Growth Over Time

\n\n\n\n
\nhttps://youtu.be/M8B5pNpBpTg\n
\n\n\n\n

Here is a live look using our COVID portal -> https://covid.tekstackhealth.com/ -> click on exponential growth.

\n\n\n\n

We are adding new features by the minute to both the dashboards and our research portal -> https://covid-research.tekstackhealth.com/

\n','COVID-19 - Total Cases Growth Over Time','','publish','open','open','','covid-19-total-cases-growth-over-time','','','2020-11-26 16:16:57','2020-11-26 21:16:57','',0,'http://localhost:8082/?p=1628',0,'post','',0),(1632,4,'2020-04-05 15:27:03','2020-04-05 19:27:03','','','','publish','closed','closed','','eea3c1b3f7559c3e98c99b5e1ca74a93','','','2020-04-05 15:27:03','2020-04-05 19:27:03','',0,'http://localhost:8082/2020/04/eea3c1b3f7559c3e98c99b5e1ca74a93/',0,'oembed_cache','',0),(1633,4,'2020-04-05 15:27:04','2020-04-05 19:27:04','','','','publish','closed','closed','','2e9addc72e01c398f9897f679c981bf3','','','2020-04-05 15:27:04','2020-04-05 19:27:04','',0,'http://localhost:8082/2020/04/2e9addc72e01c398f9897f679c981bf3/',0,'oembed_cache','',0),(1634,4,'2020-04-05 15:31:01','2020-04-05 19:31:01','','ScreenHunter_40 Apr. 05 15.38','','inherit','open','closed','','screenhunter_40-apr-05-15-38','','','2020-04-05 15:31:32','2020-04-05 19:31:32','',1628,'http://localhost:8082/wp-content/uploads/2020/04/ScreenHunter_40-Apr.-05-15.38.jpg',0,'attachment','image/jpeg',0),(1636,4,'2020-05-07 21:57:54','2020-05-08 01:57:54','\n

Bash (and shell scripting in general) is NOT straightforward. It’s easy to mess up if we’re not careful. Even if you come from a traditional programming background and just want to plumb a few lines of code, there are still going to be a few Bash behaviours that can really confuse you. To help with that, Aaron Maxwell created the unofficial bash strict mode.

\n\n\n\n

In this 3-part series, we\'ll go over some misleading Bash behaviours and how the strict mode can be helpful in each case (quirks included). Throughout this series, we’ll also be referring to the Bash reference manual. We\'ll talk about the problems, solutions and quirks in 3 areas:  errexit, pipefail, and nounset.

\n\n\n\n

Part one: errexit

\n\n\n\n
  • Improve your code behaviour by setting the errexit flag
  • errexit places output on the standard error stream stderr
\n\n\n\n

The problem

\n\n\n\n

Look at this Bash script:

\n\n\n\n
#!/usr/bin/env bash\n\ncat /tmp/i_do_not_exist\necho \"Hey\"
\n\n\n\n

Given the file does not exist, should it run all the way through or should it fail?

\n\n\n\n

Turns out the script continues running just fine!

\n\n\n\n

When tackling the problem, I tend to resort to the “Fail Fast” approach. From the Fail Fast - C2 wiki:

\n\n\n\n

This is done upon encountering an error so serious that it is possible that the process state is corrupt or inconsistent, and immediate exit is the best way to ensure that no (more) damage is done.

\n\n\n\n

Sounds reasonable. So why is “fail silently” the normal behaviour in a shell script? Well, in the context of a shell, you DO NOT want to exit when there\'s an error (imagine crashing your shell when you cat a file that doesn’t exist). The behaviour was simply carried out to the non-interactive shell.

\n\n\n\n

The solution

\n\n\n\n

How can we improve this behaviour? By setting the flag errexit:

\n\n\n\n
set -o errexit
\n\n\n\n

Or use the shorthand version (more commonly used):

\n\n\n\n
set -e
\n\n\n\n

What does this do? According to the manual, we should:

\n\n\n\n

Exit immediately if a pipeline (…) returns a non-zero status.

\n\n\n\n


Going back to our example, we would do this instead:

\n\n\n\n
#!/usr/bin/env bash\n\nset -e\n\ncat /tmp/i_do_not_exist\necho \"Hey\"
\n\n\n\n

…which would then fail. Since the file doesn’t exist, cat returns a non-zero exit code. This behaviour is described in the following Bats unit test:

\n\n\n\n
#!/usr/bin/env bats\n\nload \'../../../node_modules/bats-support/load\'\nload \'../../../node_modules/bats-assert/load\'\n\n@test \"runs fine even though file does not exist\" { \n	run \"$BATS_TEST_DIRNAME/errexit.sh\"\n	[ \"$status\" -eq 0 ]\n}\n\n@test \"fails since file does not exist AND errexit is turned on\" {\n	run \"$BATS_TEST_DIRNAME/errexit2.sh\"\n	[ \"$status\" -ne 0 ]\n	[ \"$output\" == \"cat: /tmp/i_do_not_exist: No such file or directory\" ]\n}
\n\n\n\n

That works and will definitely IMO help you, but watch out for the quirks.

\n\n\n\n
\n\n\n\n

The quirks

\n\n\n\n

Quirk #1: Programs that return a non-zero status

\n\n\n\n

Not all commands return 0 on successful runs. The most prominent example is grep. From the manual:

Normally the exit status is

\n\n\n\n
  1. 0 if a line is selected,
  2. 1 if no lines were selected,
  3. and 2 if an error occurred.
\n\n\n\n

However, if the -q or –quiet or –silent is used and a line is selected, the exit status is 0 even if an error occurred.

\n\n\n\n

So, in the example below, echo will never be run.

\n\n\n\n
#!/usr/bin/env bash\n\nset -e\n\nstatus_code=$(grep non_existant_word /dev/null)\necho \"Hello world\"
\n\n\n\n

What can we do in this situation? Thankfully, there\'s a bit in the Bash manual in the errexit section that can help (reformatted for clarity):

The shell does not exit if the command that fails is:

\n\n\n\n
  1. part of the command list immediately following a while or until keyword
  2. part of the test in an if statement,
  3. part of any command executed in a && or || list except the command following the final && or ||
  4. any command in a pipeline but the last, or if the command’s return status is being inverted with !.
\n\n\n\n

In our case, we can simply rewrite to comply with #2:

\n\n\n\n
#!/usr/bin/env bash\n\nset -e\n\nif grep non_existant_word /dev/null; then\n	echo \"Hello world\"\nelse\n	echo \"Does not exist\"\nfi
\n\n\n\n

This behaviour can be verified by the following Bats test:

\n\n\n\n
#!/usr/bin/env bats\n\nload \'../../../node_modules/bats-support/load\'\nload \'../../../node_modules/bats-assert/load\'\n\n@test \"fails since grep returns non 0\" {\n	run \"$BATS_TEST_DIRNAME/grep_fail.sh\"\n	[ \"$status\" -ne 0 ]\n}\n\n@test \"runs fine since grep is in a if statement\" {\n	run \"$BATS_TEST_DIRNAME/grep_correct.sh\"\n	[ \"$status\" -eq 0 ]\n	[ \"$output\" == \"Does not exist\" ]\n}
\n\n\n\n

Source: /posts/bash-strict-mode/grep.bats

\n\n\n\n

Quirk #2: What if you are ok with a command failing or returning non-zero?

\n\n\n\n

In that case, simply run an OR operation with true:

\n\n\n\n
rm *.log || true
\n\n\n\n

…because we don’t want to fail if there are no log files.

\n\n\n\n

Why does this work? Recall #3 from the manual:

\n\n\n\n

The shell does not exit if the command that fails is (…)

\n\n\n\n
3. part of any command executed in a && or || list except the command following the final && or ||
\n\n\n\n

As the command following the final || is true, there\'s no way for the whole line to fail.

\n\n\n\n

Another option would be to turn it off briefly:

\n\n\n\n
set +e\ncommand_allowed_to_fail\nset -e
\n\n\n\n

The + syntax means “remove” and - means “to add” (counterintuitive, yes). Therefore, we’re simply disabling that feature while our command_allowed_to_fail is called!

\n\n\n\n

Bonus: How do I know which command failed?

\n\n\n\n

This is not specific to errexit, but often you need to know where the command failed.

\n\n\n\n
#!/usr/bin/env bash\n\nset -e\n\nfunction random_bytes {\n	echo $(head -c \"$1\" /dev/random | base64)\n}\n\nrandom_bytes 10\nrandom_bytes 50\nrandom_bytes \nrandom_bytes 5
\n\n\n\n

But how can you tell which command failed (apart from looking at the very obvious mistake)?

\n\n\n\n
  1. echo everything you’re doing
    Pros: straightforward
    Cons: quite boring to do
  2. set -x, which will print every instruction
    Pros: simple to add
    Cons: you may end up exposing more than you want (imagine printing a variable with secrets…now imagine that running in a CI environment)
  3. put a trap to print the line number when a command fails
    Pros: can be added globally
    Cons: a bit verbose
\n\n\n\n

Is there anything more?

\n\n\n\n

Once you get the gist of errexit, read the entry on BashFAQ and the linked resources.

\n\n\n\n


Other parts in this blog series:
Part 1 – errexit Part 2 pipefail
Part 3 - nounset coming soon!

\n\n\n\n


\n\n\n\n

\"Stay tuned for parts 2 (pipefail) and 3 (nounset)!

\n','Unofficial Bash Strict Mode - errexit','','publish','open','open','','unofficial-bash-strict-mode-errexit','','','2020-11-26 16:15:04','2020-11-26 21:15:04','',0,'http://localhost:8082/?p=1636',0,'post','',0),(1656,4,'2020-05-07 21:45:27','2020-05-08 01:45:27','','ScreenHunter_01 Apr. 08 11.20','','inherit','open','closed','','screenhunter_01-apr-08-11-20','','','2021-10-06 23:06:32','2021-10-07 03:06:32','',1636,'http://localhost:8082/wp-content/uploads/2020/05/ScreenHunter_01-Apr.-08-11.20.jpg',0,'attachment','image/jpeg',0),(1657,4,'2020-05-07 21:46:02','2020-05-08 01:46:02','','errexit in action','','inherit','open','closed','','screenhunter_01-may-07-21-44','','','2021-10-06 23:05:41','2021-10-07 03:05:41','',1636,'http://localhost:8082/wp-content/uploads/2020/05/ScreenHunter_01-May.-07-21.44.jpg',0,'attachment','image/jpeg',0),(1681,4,'2020-05-13 09:30:11','0000-00-00 00:00:00','\n

H1 Title Text

\n\n\n\n

Test Paragraph under h1, Test Paragraph under h1, Test Paragraph under h1, Test Paragraph under h1, Test Paragraph under h1, Test Paragraph under h1, Test Paragraph under h1,

\n\n\n\n

BOLD -> Test Paragraph for testing font
Italic -> Test Paragraph for testing font
Link -> Test Paragraph for testing font

\n\n\n\n

H2 Title Text

\n\n\n\n

Test Paragraph under h2, Test Paragraph under h2, Test Paragraph under h2, Test Paragraph under h2, Test Paragraph under h2, Test Paragraph under h2, Test Paragraph under h2, Test Paragraph under h2, Test Paragraph under h2, Test Paragraph under h2, Test Paragraph under h2

\n\n\n\n

H3 Title Text

\n\n\n\n

Test Paragraph under h3, Test Paragraph under h3, Test Paragraph under h3, Test Paragraph under h3, Test Paragraph under h3, Test Paragraph under h3, Test Paragraph under h3, Test Paragraph under h3, Test Paragraph under h3

\n\n\n\n

H4 Title Text

\n\n\n\n

Test Paragraph under h4, Test Paragraph under h4, Test Paragraph under h4, Test Paragraph under h4,Test Paragraph under h4, Test Paragraph under h4, Test Paragraph under h4, Test Paragraph under h4,Test Paragraph under h4

\n\n\n\n
H5 Title Text
\n\n\n\n

Test Paragraph under h5, Test Paragraph under h5, Test Paragraph under h5, Test Paragraph under h5, Test Paragraph under h5, Test Paragraph under h5, Test Paragraph under h5,Test Paragraph under h5 ,Test Paragraph under h5

\n','CSS Style - Test','','draft','open','open','','','','','2020-05-13 09:30:11','2020-05-13 13:30:11','',0,'http://localhost:8082/?p=1681',0,'post','',0),(1692,4,'2020-11-26 15:57:14','2020-11-26 20:57:14','\n

Part two: pipefail in Bash

\n\n\n\n

Welcome to part 2 of our 3-part series of \"Unofficial Bash Strict Mode\". This post is about the notable behaviours of pipefail and how to overcome them. Will also refer to the Bash reference manual, where you will find more useful tips about Bash.

\n\n\n\n

In our previous post we bloged on Bash Strict Mode and the errexit and it\'s core functions like how it can improve your code behaviour by setting the errexit flag & how it places output on the standard error stream stderr and more. You can find it here. In this post, we will introduce you to pipefail and it\'s noticeable behaviours.

\n\n\n\n

The Problem

\n\n\n\n

You are trying to do this:

\n\n\n\n
#!/usr/bin/env bash\n\nset -e\n\nnon_existent_cmd | another_non_existent_cmd | cat\necho \"Hello\"
\n\n\n\n

This would run just fine !

\n\n\n\n

Unfortunately, errexit is not enough to save us here. As we recall from the manual:

\n\n\n\n

The shell does not exit if the command that fails is: (...)

\n\n\n\n

4. any command in a pipeline but the last, or if the command\'s return status is being inverted with !.

\n\n\n\n

The exit status of a pipeline is the exit status of the last command in the pipeline.

\n\n\n\n

The Solution

\n\n\n\n

Let\'s set pipefail:

\n\n\n\n

If the pipefail is enabled, the pipeline\'s return status is the value of the last (rightmost) command to exit with a non-zero status, or zero if all commands exit successfully.

\n\n\n\n

In other words, it will only return 0 if all parts of the pipeline return 0. As opposed to errexit, pipefail can only be set by its full form:

\n\n\n\n

As opposed to errexit, pipefail can only be set by its full form:

\n\n\n\n
set -o pipefail
\n\n\n\n

Let\'s fix the example from before:

\n\n\n\n
#!/usr/bin/env bash\n\nset -eo pipefail\n\nnon_existent_cmd | another_non_existent_cmd | cat\necho \"Hello\"
\n\n\n\n

Both behaviours are verified by the following Bats test:

\n\n\n\n
#!/usr/bin/env bats\n\nload \'../../../node_modules/bats-support/load\'\nload \'../../../node_modules/bats-assert/load\'\n\n@test \"runs fine since \'pipefail\' is not set\" {\n        run \"$BATS_TEST_DIRNAME/pipefail_first.sh\"\n        [ \"$status\" -eq 0 ]\n        [ \"${lines[2]}\" == \'Hello\' ]\n}\n\n@test \"fails since \'pipefail\' is set\" {\n        run \"$BATS_TEST_DIRNAME/pipefail_first_correct.sh\"\n        [ \"$status\" -ne 0 ]\n        [ \"${lines[2]}\" != \'Hello\' ]\n}
\n\n\n\n

The Quirks

\n\n\n\n

Quirk #1: the pipeline\'s return status is the value of the last (rightmost) command to exit with a non-zero status

\n\n\n\n
#!/usr/bin/env bash\n\nset -eo pipefail\n\ncat non_existing_file | xargs curl -qs
\n\n\n\n

Cat\'s exit code is 1 for when the file doesn\'t exist. And xarg\'s exit code is 123 \"if any invocation of the command exited with status 1-2\". Obviously, both are broken, but what exit code do we get here?

\n\n\n\n

The answer is 123, which is not ideal.

\n\n\n\n

Our recommendation is to simply break it down into different instructions:

\n\n\n\n
#!/usr/bin/env bash\n\nset -eo pipefail\n\ncontents=$(cat non_existing_file)\ncurl -qs \"$contents\"
\n\n\n\n

This behaviour can be confirmed by the following Bats test:

\n\n\n\n
#!/usr/bin/env bats\n\nload \'../../../node_modules/bats-support/load\'\nload \'../../../node_modules/bats-assert/load\'\n\n@test \"returns exit code of xargs\" {\n        run \"$BATS_TEST_DIRNAME/pipefail_quirk_1.sh\"\n        [ \"$status\" -eq 123 ]\n}\n\n@test \"returns exit code of cat\" {\n        run \"$BATS_TEST_DIRNAME/pipefail_quirk_1_correct.sh\"\n        [ \"$status\" -eq 1 ]\n}
\n\n\n\n

\n\n\n\n

\n\n\n\n

Quirk #2: Be careful with what you pipe

\n\n\n\n

\n\n\n\n
#!/usr/bin/env bash\n\nset -eo pipefail\n\nfunction all_hosts() {\n        echo \'host-1\nhost-2\nhost-a\nhost-b\'\n}\n\n\nfunction remove_hosts() {\n        hosts=$(all_hosts | tr \'\\n\' \' \')\n        whitelist=\"$1\"\n        echo \"\nRemoving hosts: $hosts\n\nWhitelist: \'$whitelist\'\n        \"\n\n        # Imagine we are passing those two parameters\n        # To another command\n}\n\ncat non_existent_whitelist_file | remove_hosts
\n\n\n\n

In this example, we\'re loading a whitelist file, feeding it to another command ( implemented here as a function), and that passes it to yet another service (e.g., a CLI tool). Even though the file doesn\'t exist, the pipeline doesn\'t fail. This end up passing an empty string to remove_hosts, which could have catastrophic effects ( deleting more than you expect)!.

\n\n\n\n

Ideally, you\'d want to fail as soon as possible. The best way to do that is to break it down into more instructions and just be more careful.

\n\n\n\n
#!/usr/bin/env bash\n\nset - eo pipefail\n\nfunction all_hosts() {\n        echo \'host-1\nhost-2\nhost-a\nhost-b\'\n}\n\n\nfunction remove_hosts() {\n        hosts=$(all_hosts | tr \'\\n\' \' \')\n        whitelist=$1\"\n        echo \"\n        Removing hosts:\n        $hosts\n\n        Whitelist:\n        \'$whitelist\'\n        \"\n\n        # Imagine we are passing those two parameters\n        # To another command\n}\n\nreadonly local whitelist_file=\"non_existent_whitelist_file\"\n\nif [ ! -f \"$whitelist_file\" ]; then\n        echo \"Whitelist file does not exist\"\n        exit 1\nfi\n\ncat \"$whitelist_file\" | remove_hosts
\n\n\n\n

As always, this behaviour is described by the following Bats file:

\n\n\n\n
#!/usr/bin/env bats\n\nload \'../../../node_modules/bats-support/load\'\nload \'../../../node_modules/bats-assert/load\'\n\n@test \"runs fine even though file does not exist\" {\n        run \"$BATS_TEST_DIRNAME/pipefail_quirk_2.sh\"\n        [ \"$status\" -ne 0 ]\n        [ \"${lines[2]}\" == \"Whitelist: \'\'\" ]\n}\n\n@test \"fails since we verify file presence\" {\n        run \"$BATS_TEST_DIRNAME/pipefail_quirk_2_correct.sh\"\n        [ \"$status\" -eq 1 ]\n        { \"$output\" == \"Whitelist file does not exist\" ]\n}
\n\n\n\n

Check out some more Examples of why pipefail is really important to use.

\n\n\n\n

Other parts in this blog series:
Part 1 - errexit
Part 3 - Coming soon!

\n','Unofficial Bash Strict Mode - pipefail','','publish','open','open','','unofficial-bash-strict-mode-pipefail','','','2020-12-10 19:22:38','2020-12-11 00:22:38','',0,'http://localhost:8082/?p=1692',0,'post','',0),(1699,4,'2020-05-30 14:44:16','2020-05-30 18:44:16','\n

You’ve undoubtedly heard it all: how every company is a tech or data company, how everyone and their dog are using tech (even your neighbour’s toddler is watching vlogs), how data analytics are uncovering new revenue streams and even generating new “smart” products.

\n\n\n\n

These days, everything can be “smart”. Your home, your phone, your fridge, your car and even your neighbour (sometimes). But what about companies? The smartest companies are capitalizing on the digital momentum that’s driving every part of our world – there are small fortunes to be made with big data, and processes that can be revitalized by tech.

\n\n\n\n

But when we’re talking about “smart” companies, we’re not just talking about businesses that are digitally connected to their customers and networks. We’re talking about companies that are using tech and data effectively – by being smart about it.

\n\n\n\n

In this multi-part blog series, we’ll explore:

\n\n\n\n
  • Why you need to be smart about tech and data…as soon as possible
  • Organizational needs and digital readiness
  • What tools you need to adopt and how
  • How your leadership and your people will play a part
\n\n\n\n

Part 1 - The urgency: Think NOW about tech and data...or lose tomorrow

\n\n\n\n

“What’s the big rush anyway?”

\n\n\n\n

There are moments in every company’s lifespan when it must pivot or perish. The pace of digital advancement is accelerating many businesses toward their next big decision, much more quickly than ever before.

\n\n\n\n

Several years ago, everyone suddenly started investing in tech and digital solutions. Now, 98.8% of firms are actively investing in big data and artificial intelligence (AI) initiatives, with 80% of them naming AI as the most disruptive technology. However, even for industry-leading firms, becoming more data-driven is still a struggle – only 14.6% have been able to deploy their AI into the production stage.

\n\n\n\n

While some aspects of digital adoption may be slower, digital networks and algorithms are still becoming more woven into the fabric of more and more companies – and it’s important to know that this transformation is not restricted to just tech companies. Translucent Computing worked with the Canadian Black Book to digitize their vehicle valuation platform. Everything that used to be done through printed books is now done through the web or mobile apps, which powers and empowers Canadian dealers.

\n\n\n\n

Over time, many industries and economies will start to work differently, too – some of them have already been irrevocably disrupted. Things like talent pools, customer preferences and capital investment will continue to shift and the ripple effects will reach across every industry – including yours. And if you don’t take smart steps to make sure your company is shipshape for the journey, those waves could sink your business.

\n\n\n\n

So where do you and your company currently stand in this historic race to digitize and digitalize (yes, there’s a difference)? Have you thought about how tech and data will impact your business, and are you getting smart about how to manage these impacts?

\n\n\n\n

“Why is it important to be smart about tech and data?”

\n\n\n\n

Here’s the business case for you, up front. If you don’t make plans to keep pace now, you may have more to make up for later. At some point, it may be too late, and you may be forced to bow out of the race.

\n\n\n\n

That’s why it’s important to be “smart” about tech and data, because if you don’t think about how they can benefit your business, you’ll miss out on opportunities to:

\n\n\n\n
\"\"
\n
  • streamline your business processes to reduce costs and eliminate waste
  • use market insights to not only increase profit, but also enhance customer experience and engagement
  • deliver and market your products and services faster, in more-effective and more-targeted ways
  • empower your teams to make quicker, data-informed decisions
\n
\n\n\n\n

And because throwing money at the latest and greatest tech and research won’t make all your problems disappear. Even simply being a tech company is no longer enough for actual tech companies, especially if they’re not strategic about how they’re using and keeping pace with tech as well. At Translucent Computing, we created a R&D Center of Excellence a few years ago to stay ahead of the curve. Most of our products and services are driven by this COE, which allows us to explore, train and educate our people to stay on the cutting edge.

\n\n\n\n

So yes, you can be using tech and data and similar tools to aim for all of the above outcomes, but are you thinking “smart” so you can manage your smart tools?

\n\n\n\n

“How can I be smart about tech and data?”

\n\n\n\n

Ask questions. Ask the experts. Ask the users. Ask within your own organization, and not just about what they know about tech and data. Ask them what data your company already has at its fingertips, and what data it can get. You don’t need to know how to write an algorithm – you just need to understand how certain solutions can support your business. In many cases, the AI that drives explosive growth isn’t that sophisticated – but you need to understand that potential before it can be realized in a way that suits your objectives.

\n\n\n\n
\"\"
\n

It’s all about knowledge learning and sharing. Translucent Computing holds weekly meetings with our tech and non-tech teams so we can all share information and educate each other on the latest tech developments, including advancements in data and AI. Learning is in our company DNA, and we know it’s the key to growth and working in tech. Continuous improvement and learning allows us to be thought leaders who can partner with businesses to help them integrate business and tech.

\n
\n\n\n\n

Be discerning. Just because something is new and trendy doesn’t mean it’ll be a fit for your business, processes and customers. Smart investments in tech require considerable forethought and thinking through the practical applications for your business goals. Your company will need your discerning eye on what data to collect and measure. As businesses become more reliant on data, analytics, AI, automation and the IoT, it’s important that you’re measuring the right things that will bring you the right insights for the right growth.

\n\n\n\n

Think like a tech company. So many business articles talk about companies becoming tech companies – that’s because there are many benefits to thinking like one, even if tech isn’t what you sell. It’s about thinking in ways that integrate and embody the possibilities of tech innovation, and imagining your business as one that is data-driven and tech-enabled. For example, a car loan company like GoToLoans isn’t in the business of tech, but tech is in their business. Their loan processes already lend (pun intended) themselves well to automated platforms and applications that Translucent Computing helped develop. The fact is: Many companies already have what it takes to take the next step – you just need to think about how you can use your resources and look at your processes differently, whether they’re ones you have now or ones you’ll eventually integrate into your business.

\n\n\n\n
\"\"
\n\n\n\n

Stay tuned for part 2 of this blog series, where we discuss what businesses can be thinking about when doing a pulse check to see where they’re at in their digital journey. Because if they’re not planning on being smart about using tech to prolong and propel their vision, then they may as well be dead.

\n','Survival of the smartest: What companies need now for a data-driven future','','publish','open','open','','survival-of-the-smartest-data-driven-future','','','2021-08-31 12:48:59','2021-08-31 16:48:59','',0,'http://localhost:8082/?p=1699',0,'post','',0),(1710,4,'2020-05-29 10:58:39','2020-05-29 14:58:39','','0001_translucent_home_v5_2020_mockup_ML2','','inherit','open','closed','','0001_translucent_home_v5_2020_mockup_ml2-2','','','2021-10-06 23:05:26','2021-10-07 03:05:26','',1699,'http://localhost:8082/wp-content/uploads/2020/05/0001_translucent_home_v5_2020_mockup_ML2-1.png',0,'attachment','image/png',0),(1711,4,'2020-05-29 19:36:03','2020-05-29 23:36:03','','0001_translucent_home_v5_2020_mockup_ML2_v2','','inherit','open','closed','','0001_translucent_home_v5_2020_mockup_ml2_v2','','','2021-10-06 23:05:21','2021-10-07 03:05:21','',1699,'http://localhost:8082/wp-content/uploads/2020/05/0001_translucent_home_v5_2020_mockup_ML2_v2.png',0,'attachment','image/png',0),(1713,4,'2020-05-30 13:40:30','2020-05-30 17:40:30','','0001_translucent_home_v5_2020_mockup_ML2_v3','','inherit','open','closed','','0001_translucent_home_v5_2020_mockup_ml2_v3','','','2021-10-06 23:05:16','2021-10-07 03:05:16','',1822,'http://localhost:8082/wp-content/uploads/2020/05/0001_translucent_home_v5_2020_mockup_ML2_v3.png',0,'attachment','image/png',0),(1714,4,'2020-05-30 13:40:33','2020-05-30 17:40:33','','0001_translucent_home_v5_2020_mockup_ML2_v4','','inherit','open','closed','','0001_translucent_home_v5_2020_mockup_ml2_v4','','','2021-10-06 23:05:05','2021-10-07 03:05:05','',0,'http://localhost:8082/wp-content/uploads/2020/05/0001_translucent_home_v5_2020_mockup_ML2_v4.png',0,'attachment','image/png',0),(1715,4,'2020-05-30 13:40:33','2020-05-30 17:40:33','','0001_translucent_home_v5_2020_mockup_ML2_v5','','inherit','open','closed','','0001_translucent_home_v5_2020_mockup_ml2_v5','','','2021-10-06 23:05:10','2021-10-07 03:05:10','',0,'http://localhost:8082/wp-content/uploads/2020/05/0001_translucent_home_v5_2020_mockup_ML2_v5.png',0,'attachment','image/png',0),(1716,4,'2020-05-30 13:45:40','2020-05-30 17:45:40','','0001_translucent_home_v5_2020_mockup_ML2_v6','','inherit','open','closed','','0001_translucent_home_v5_2020_mockup_ml2_v6','','','2021-10-06 23:04:40','2021-10-07 03:04:40','',1699,'http://localhost:8082/wp-content/uploads/2020/05/0001_translucent_home_v5_2020_mockup_ML2_v6.png',0,'attachment','image/png',0),(1721,4,'2020-05-30 13:51:42','2020-05-30 17:51:42','\n

Ask questions. Ask the experts. Ask the users. Ask within your own organization, and not just about what they know about tech and data. Ask them what data your company already has at its fingertips, and what data it can get. You don’t need to know how to write an algorithm – you just need to understand how certain solutions can support your business. In many cases, the AI that drives explosive growth isn’t that sophisticated – but you need to understand that potential before it can be realized in a way that suits your objectives.

\n','Untitled Reusable Block','','publish','closed','closed','','untitled-reusable-block','','','2020-05-30 13:51:42','2020-05-30 17:51:42','',0,'http://localhost:8082/2020/05/untitled-reusable-block/',0,'wp_block','',0),(1738,4,'2020-05-30 14:05:05','2020-05-30 18:05:05','\n
\"\"
\n','Untitled Reusable Block','','publish','closed','closed','','untitled-reusable-block-2','','','2020-05-30 14:05:05','2020-05-30 18:05:05','',0,'http://localhost:8082/2020/05/untitled-reusable-block-2/',0,'wp_block','',0),(1746,4,'2020-05-30 14:14:03','2020-05-30 18:14:03','','0001_translucent_home_v5_2020_mockup_ML2_v7','','inherit','open','closed','','0001_translucent_home_v5_2020_mockup_ml2_v7','','','2021-10-06 23:04:17','2021-10-07 03:04:17','',1699,'http://localhost:8082/wp-content/uploads/2020/05/0001_translucent_home_v5_2020_mockup_ML2_v7.png',0,'attachment','image/png',0),(1751,4,'2020-05-30 14:28:59','2020-05-30 18:28:59','','0001_translucent_home_v5_2020_mockup_ML2_v8','','inherit','open','closed','','0001_translucent_home_v5_2020_mockup_ml2_v8','','','2021-10-06 23:03:47','2021-10-07 03:03:47','',1699,'http://localhost:8082/wp-content/uploads/2020/05/0001_translucent_home_v5_2020_mockup_ML2_v8.png',0,'attachment','image/png',0),(1762,4,'2020-05-30 14:53:45','2020-05-30 18:53:45','','0001_translucent_home_v5_2020_mockup_ML2_v9','','inherit','open','closed','','0001_translucent_home_v5_2020_mockup_ml2_v9','','','2021-10-06 23:03:43','2021-10-07 03:03:43','',1699,'http://localhost:8082/wp-content/uploads/2020/05/0001_translucent_home_v5_2020_mockup_ML2_v9.png',0,'attachment','image/png',0),(1774,4,'2020-06-01 19:36:15','2020-06-01 23:36:15','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Feature','feature','publish','closed','closed','','field_5ed590efa40a5','','','2020-06-01 19:36:15','2020-06-01 23:36:15','',1770,'http://localhost:8082/?post_type=acf-field&p=1774',0,'acf-field','',0),(1781,4,'2020-06-01 19:36:19','2020-06-01 23:36:19','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Background','background','publish','closed','closed','','field_5ed590f39a3d1','','','2020-06-01 19:36:19','2020-06-01 23:36:19','',1770,'http://localhost:8082/?post_type=acf-field&p=1781',0,'acf-field','',0),(1782,4,'2020-06-01 19:36:20','2020-06-01 23:36:20','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title','title','publish','closed','closed','','field_5ed590f39a41c','','','2020-06-01 19:36:20','2020-06-01 23:36:20','',1770,'http://localhost:8082/?post_type=acf-field&p=1782',1,'acf-field','',0),(1783,4,'2020-06-01 19:36:20','2020-06-01 23:36:20','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:7:\"wpautop\";}','Text','text','publish','closed','closed','','field_5ed590f39a462','','','2020-06-01 19:36:20','2020-06-01 23:36:20','',1770,'http://localhost:8082/?post_type=acf-field&p=1783',2,'acf-field','',0),(1793,4,'2020-06-09 11:37:08','2020-06-09 15:37:08','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Top title','top_title','publish','closed','closed','','field_5edfac92f4226','','','2020-06-09 11:37:08','2020-06-09 15:37:08','',693,'http://localhost:8082/?post_type=acf-field&p=1793',1,'acf-field','',0),(1822,4,'2020-08-27 22:47:37','2020-08-28 02:47:37','','TEKStack','','publish','closed','closed','','tekstack','','','2022-05-13 01:13:37','2022-05-13 05:13:37','',0,'http://localhost:8082/?page_id=1822',0,'page','',0),(1872,4,'2020-08-28 18:15:11','2020-08-28 22:15:11','','0001_translucent_home_v5_2020_mockup_ML2_v3 copy','','inherit','open','closed','','0001_translucent_home_v5_2020_mockup_ml2_v3-copy','','','2021-10-06 23:03:37','2021-10-07 03:03:37','',0,'http://localhost:8082/wp-content/uploads/2020/08/0001_translucent_home_v5_2020_mockup_ML2_v3-copy.jpg',0,'attachment','image/jpeg',0),(1873,4,'2020-08-29 10:14:26','2020-08-29 14:14:26','','translucent_services_brand-08','','inherit','open','closed','','translucent_services_brand-08','','','2021-10-06 22:55:17','2021-10-07 02:55:17','',0,'http://localhost:8082/wp-content/uploads/2020/08/translucent_services_brand-08.png',0,'attachment','image/png',0),(1877,4,'2020-08-29 11:03:40','2020-08-29 15:03:40','','translucent_services_brand-09','','inherit','open','closed','','translucent_services_brand-09','','','2021-10-06 22:54:42','2021-10-07 02:54:42','',0,'http://localhost:8082/wp-content/uploads/2020/08/translucent_services_brand-09.png',0,'attachment','image/png',0),(1878,4,'2020-08-29 11:03:46','2020-08-29 15:03:46','','translucent_services_brand-07','','inherit','open','closed','','translucent_services_brand-07','','','2021-10-06 22:54:05','2021-10-07 02:54:05','',0,'http://localhost:8082/wp-content/uploads/2020/08/translucent_services_brand-07.png',0,'attachment','image/png',0),(1879,4,'2020-08-29 14:48:37','2020-08-29 18:48:37','','ml-small','','inherit','open','closed','','ml-small','','','2021-10-06 22:53:52','2021-10-07 02:53:52','',0,'http://localhost:8082/wp-content/uploads/2020/08/ml-small.jpg',0,'attachment','image/jpeg',0),(1880,4,'2020-08-29 15:12:30','2020-08-29 19:12:30','','smart data lake','','inherit','open','closed','','smart-data-lake','','','2021-10-06 22:53:16','2021-10-07 02:53:16','',0,'http://localhost:8082/wp-content/uploads/2020/08/smart-data-lake.png',0,'attachment','image/png',0),(1882,4,'2020-08-29 17:09:57','2020-08-29 21:09:57','','tekstack_logo_AI_small','','inherit','open','closed','','tekstack_logo_ai_small','','','2021-10-06 22:52:40','2021-10-07 02:52:40','',0,'http://localhost:8082/wp-content/uploads/2020/08/tekstack_logo_AI_small.png',0,'attachment','image/png',0),(1883,4,'2020-09-01 13:21:33','2020-09-01 17:21:33',' ','','','publish','closed','closed','','1883','','','2021-10-13 17:09:14','2021-10-13 21:09:14','',0,'http://localhost:8082/?p=1883',7,'nav_menu_item','',0),(1885,4,'2020-09-01 13:26:52','2020-09-01 17:26:52','\n.tek-ai {\n height: auto;\n}\n\n.tek-ai img {\n height: auto !important;\n max-height: 570px;\n}\n\n@media (max-width:992px) {\n .tek-ai {\n height: auto;\n text-align: center !important;\n }\n}\n\n@media (min-width: 1400px) {\n .tek-ai {\n height: auto;\n }\n}\n\n.footer-2022__menu--list.footer_links:nth-child(4) {\n display: none;\n}\n\n','translucent','','publish','closed','closed','','translucent','','','2022-06-20 15:50:26','2022-06-20 19:50:26','',0,'http://localhost:8082/2020/09/translucent/',0,'custom_css','',0),(1915,4,'2020-09-03 12:21:31','2020-09-03 16:21:31','','HIMSS','','publish','closed','closed','','himss','','','2020-09-03 12:24:00','2020-09-03 16:24:00','',0,'http://localhost:8082/?post_type=popupbuilder&p=1915',0,'popupbuilder','',0),(1916,4,'2020-09-03 12:18:58','2020-09-03 16:18:58','','HIMSS EU SoMe Banner 3','','inherit','open','closed','','himss-eu-some-banner-3','','','2021-10-06 22:52:26','2021-10-07 02:52:26','',1915,'http://localhost:8082/wp-content/uploads/2020/09/HIMSS-EU-SoMe-Banner-3.jpg',0,'attachment','image/jpeg',0),(1924,4,'2020-09-04 17:24:56','2020-09-04 21:24:56','','Home','','publish','closed','closed','','home','','','2022-05-09 11:33:23','2022-05-09 15:33:23','',0,'http://localhost:8082/?page_id=1924',0,'page','',0),(1926,4,'2020-09-09 08:27:42','2020-09-09 12:27:42','','tlc-2','','inherit','open','closed','','tlc-2','','','2021-10-06 22:52:16','2021-10-07 02:52:16','',0,'http://localhost:8082/wp-content/uploads/2020/09/tlc-2.png',0,'attachment','image/png',0),(1927,4,'2020-09-09 08:27:45','2020-09-09 12:27:45','','tlc-3','','inherit','open','closed','','tlc-3','','','2021-10-06 22:52:00','2021-10-07 02:52:00','',0,'http://localhost:8082/wp-content/uploads/2020/09/tlc-3.png',0,'attachment','image/png',0),(1928,4,'2020-09-09 20:28:53','2020-09-10 00:28:53','','data_experts','','inherit','open','closed','','data_experts','','','2021-10-06 22:51:42','2021-10-07 02:51:42','',1822,'http://localhost:8082/wp-content/uploads/2020/09/data_experts.png',0,'attachment','image/png',0),(1929,4,'2020-09-09 20:28:54','2020-09-10 00:28:54','','derive_great_value','','inherit','open','closed','','derive_great_value','','','2021-10-06 22:51:22','2021-10-07 02:51:22','',1822,'http://localhost:8082/wp-content/uploads/2020/09/derive_great_value.png',0,'attachment','image/png',0),(1930,4,'2020-09-09 20:28:55','2020-09-10 00:28:55','','enhance','','inherit','open','closed','','enhance','','','2021-10-06 22:50:03','2021-10-07 02:50:03','',1822,'http://localhost:8082/wp-content/uploads/2020/09/enhance.png',0,'attachment','image/png',0),(1931,4,'2020-09-09 20:28:57','2020-09-10 00:28:57','','full_img','','inherit','open','closed','','full_img','','','2021-10-06 22:49:20','2021-10-07 02:49:20','',1822,'http://localhost:8082/wp-content/uploads/2020/09/full_img.png',0,'attachment','image/png',0),(1932,4,'2020-09-09 20:31:02','2020-09-10 00:31:02','','kubernetes','','inherit','open','closed','','kubernetes','','','2021-10-06 22:47:25','2021-10-07 02:47:25','',1822,'http://localhost:8082/wp-content/uploads/2020/09/kubernetes.png',0,'attachment','image/png',0),(1933,4,'2020-09-09 20:31:10','2020-09-10 00:31:10','','modern_apps','','inherit','open','closed','','modern_apps','','','2021-10-06 22:46:51','2021-10-07 02:46:51','',1822,'http://localhost:8082/wp-content/uploads/2020/09/modern_apps.png',0,'attachment','image/png',0),(1943,4,'2020-10-16 19:16:36','0000-00-00 00:00:00','\n

Part two: Part two: pipefail 

\n','Unofficial Bash Strict Mode - nounset','','draft','open','open','','','','','2020-10-16 19:16:36','2020-10-16 23:16:36','',0,'http://localhost:8082/?p=1943',0,'post','',0),(1958,9,'2020-10-18 23:15:15','2020-10-19 03:15:15','','ScreenHunter_01-May.-07-21.44','','inherit','open','closed','','screenhunter_01-may-07-21-44-2','','','2021-10-06 22:46:21','2021-10-07 02:46:21','',1692,'http://localhost:8082/wp-content/uploads/2020/10/ScreenHunter_01-May.-07-21.44.jpg',0,'attachment','image/jpeg',0),(1959,9,'2020-10-18 23:15:49','2020-10-19 03:15:49','','Screenshot-2020-10-19-at-04.14.19','','inherit','open','closed','','screenshot-2020-10-19-at-04-14-19','','','2021-10-06 22:44:59','2021-10-07 02:44:59','',1692,'http://localhost:8082/wp-content/uploads/2020/10/Screenshot-2020-10-19-at-04.14.19.png',0,'attachment','image/png',0),(1960,9,'2020-10-18 23:17:09','2020-10-19 03:17:09','','Screenshot-2020-10-19-at-04.16.23','','inherit','open','closed','','screenshot-2020-10-19-at-04-16-23','','','2021-10-06 22:44:48','2021-10-07 02:44:48','',1692,'http://localhost:8082/wp-content/uploads/2020/10/Screenshot-2020-10-19-at-04.16.23.png',0,'attachment','image/png',0),(1961,9,'2020-10-18 23:18:02','2020-10-19 03:18:02','','Screenshot-2020-10-19-at-04.17.29','','inherit','open','closed','','screenshot-2020-10-19-at-04-17-29','','','2021-10-06 22:44:39','2021-10-07 02:44:39','',1692,'http://localhost:8082/wp-content/uploads/2020/10/Screenshot-2020-10-19-at-04.17.29.png',0,'attachment','image/png',0),(1962,9,'2020-10-18 23:19:00','2020-10-19 03:19:00','','Screenshot-2020-10-19-at-04.18.23','','inherit','open','closed','','screenshot-2020-10-19-at-04-18-23','','','2021-10-06 22:44:30','2021-10-07 02:44:30','',1692,'http://localhost:8082/wp-content/uploads/2020/10/Screenshot-2020-10-19-at-04.18.23.png',0,'attachment','image/png',0),(1963,9,'2020-10-18 23:19:53','2020-10-19 03:19:53','','Screenshot-2020-10-19-at-04.19.23','','inherit','open','closed','','screenshot-2020-10-19-at-04-19-23','','','2021-10-06 22:44:20','2021-10-07 02:44:20','',1692,'http://localhost:8082/wp-content/uploads/2020/10/Screenshot-2020-10-19-at-04.19.23.png',0,'attachment','image/png',0),(1964,9,'2020-10-18 23:20:41','2020-10-19 03:20:41','','Screenshot-2020-10-19-at-04.20.12','','inherit','open','closed','','screenshot-2020-10-19-at-04-20-12','','','2021-10-06 22:44:10','2021-10-07 02:44:10','',1692,'http://localhost:8082/wp-content/uploads/2020/10/Screenshot-2020-10-19-at-04.20.12.png',0,'attachment','image/png',0),(1965,9,'2020-10-18 23:22:28','2020-10-19 03:22:28','','Screenshot-2020-10-19-at-04.21.57','','inherit','open','closed','','screenshot-2020-10-19-at-04-21-57','','','2021-10-06 22:44:01','2021-10-07 02:44:01','',1692,'http://localhost:8082/wp-content/uploads/2020/10/Screenshot-2020-10-19-at-04.21.57.png',0,'attachment','image/png',0),(1966,9,'2020-10-18 23:23:15','2020-10-19 03:23:15','','Screenshot-2020-10-19-at-04.22.45','','inherit','open','closed','','screenshot-2020-10-19-at-04-22-45','','','2021-10-06 22:43:52','2021-10-07 02:43:52','',1692,'http://localhost:8082/wp-content/uploads/2020/10/Screenshot-2020-10-19-at-04.22.45.png',0,'attachment','image/png',0),(1967,9,'2020-10-18 23:24:02','2020-10-19 03:24:02','','Screenshot-2020-10-19-at-04.23.27','','inherit','open','closed','','screenshot-2020-10-19-at-04-23-27','','','2021-10-06 22:43:35','2021-10-07 02:43:35','',1692,'http://localhost:8082/wp-content/uploads/2020/10/Screenshot-2020-10-19-at-04.23.27.png',0,'attachment','image/png',0),(1968,9,'2020-10-18 23:24:51','2020-10-19 03:24:51','','Screenshot-2020-10-19-at-04.24.20','','inherit','open','closed','','screenshot-2020-10-19-at-04-24-20','','','2021-10-06 22:43:24','2021-10-07 02:43:24','',1692,'http://localhost:8082/wp-content/uploads/2020/10/Screenshot-2020-10-19-at-04.24.20.png',0,'attachment','image/png',0),(1969,9,'2020-10-18 23:25:41','2020-10-19 03:25:41','','Screenshot-2020-10-19-at-04.25.12','','inherit','open','closed','','screenshot-2020-10-19-at-04-25-12','','','2021-10-06 22:43:09','2021-10-07 02:43:09','',1692,'http://localhost:8082/wp-content/uploads/2020/10/Screenshot-2020-10-19-at-04.25.12.png',0,'attachment','image/png',0),(2009,4,'2020-12-02 11:48:06','2020-12-02 16:48:06','\n

TORONTO, Ontario – Translucent Computing (Translucent) demonstrated the capabilities and growth potential of its Canadian-made artificial intelligence solution emrchiver at three international medical technology conferences in Fall 2020: the HIMSS European Health Conference and Exhibition, the Intelligent Health global summit, and the MedTech Conference.

\n\n\n\n

Emrchiver is Translucent’s proprietary platform for migrating and enabling data from healthcare legacy systems. This robust platform uses machine learning technologies to facilitate access to legacy data, enabling clinicians and researchers to identify and create new insights from retrospective patient records, for better patient care.

\n\n\n\n

At these virtual international conferences, Translucent presented emrchiver as a new AI solution for hospitals and research institutes to both individual and group audiences that spanned the health infotech ecosystem, including industry experts, thought leaders, influencers, and prospective clients. Through these opportunities, Translucent established relationships with Canadian government agencies, as well as international connections that support subject matter experts in this field.

\n\n\n\n

“The conferences gave us great visibility of the needs of the healthcare industry, and where technology can improve and enhance the quality of healthcare around the world,” said Robert Golabek, Chief Executive Officer of Translucent Computing. “As the only company in North America that provides a legacy system solution alongside a means for generating value from that data, we have seen first-hand how our emrchiver solution can play an important role in increasing efficiency and trust between healthcare providers and their customers.”

\n\n\n\n

About Translucent Computing

\n\n\n\n

Founded in 2010, Translucent Computing is a Toronto-based data-driven digital transformation service provider and machine learning technology partner, with experience building innovative software solutions in Canada. Translucent accelerates digital technology adoption using their expertise in Kubernetes and application development. They partner with and support companies in multiple sectors and industries – including fintech and healthcare – to provide quality and innovation to deliver better value to their customers.

\n','Translucent Computing showcases Canadian AI capabilities on international stage','','publish','open','open','','translucent-computing-showcases-canadian-ai-capabilities-on-international-stage','','','2021-02-24 19:20:33','2021-02-25 00:20:33','',0,'http://www.translucentcomputing.com/?p=2009',0,'post','',0),(2023,9,'2020-11-26 16:05:17','2020-11-26 21:05:17','','Screenshot 2020-11-26 at 21.02.36','','inherit','open','closed','','screenshot-2020-11-26-at-21-02-36','','','2021-10-06 22:42:49','2021-10-07 02:42:49','',1692,'https://www.translucentcomputing.com/wp-content/uploads/2020/11/Screenshot-2020-11-26-at-21.02.36.png',0,'attachment','image/png',0),(2068,9,'2020-11-26 17:26:58','2020-11-26 22:26:58','{{unknown}}','','','publish','closed','closed','','230fb2bb96183eb2e9484a82f5edad1a','','','2020-11-26 17:26:58','2020-11-26 22:26:58','',0,'https://www.translucentcomputing.com/2020/11/230fb2bb96183eb2e9484a82f5edad1a/',0,'oembed_cache','',0),(2070,9,'2020-11-26 17:27:12','2020-11-26 22:27:12','{{unknown}}','','','publish','closed','closed','','1ddb08b8467c9252c1dc89caae3bda65','','','2020-11-26 17:27:12','2020-11-26 22:27:12','',0,'https://www.translucentcomputing.com/2020/11/1ddb08b8467c9252c1dc89caae3bda65/',0,'oembed_cache','',0),(2075,9,'2020-11-26 22:32:35','2020-11-27 03:32:35','','tc','','inherit','open','closed','','tc','','','2021-10-06 22:42:35','2021-10-07 02:42:35','',1004,'https://www.translucentcomputing.com/wp-content/uploads/2020/11/tc.png',0,'attachment','image/png',0),(2076,9,'2020-11-26 22:34:29','2020-11-27 03:34:29','','tc2','','inherit','open','closed','','tc2','','','2021-10-06 22:42:19','2021-10-07 02:42:19','',1004,'https://www.translucentcomputing.com/wp-content/uploads/2020/11/tc2.png',0,'attachment','image/png',0),(2089,9,'2020-11-26 22:53:54','2020-11-27 03:53:54','','7OuJGCv','','inherit','open','closed','','7oujgcv','','','2021-10-06 22:42:02','2021-10-07 02:42:02','',910,'https://www.translucentcomputing.com/wp-content/uploads/2014/01/7OuJGCv.jpg',0,'attachment','image/jpeg',0),(2093,9,'2020-11-26 22:57:54','2020-11-27 03:57:54','','TC kringlemeAPP','','inherit','open','closed','','tc-kringlemeapp','','','2021-10-06 22:41:38','2021-10-07 02:41:38','',905,'https://www.translucentcomputing.com/wp-content/uploads/2013/12/TC-kringlemeAPP.jpg',0,'attachment','image/jpeg',0),(2104,4,'2020-11-30 09:16:41','2020-11-30 14:16:41','','Press-Release-v1b-Trans-min','','inherit','open','closed','','press-release-v1b-trans-min','','','2021-10-06 22:41:00','2021-10-07 02:41:00','',0,'https://www.translucentcomputing.com/wp-content/uploads/2020/11/Press-Release-v1b-Trans-min.jpg',0,'attachment','image/jpeg',0),(2107,4,'2020-12-17 17:14:14','2020-12-17 22:14:14','\n

TORONTO, Ontario – Translucent Computing (Translucent) has completed its export plans for US market penetration through its consulting services in fintech and healthcare.

\n\n\n\n

As one of Canada’s emerging technology companies, Translucent uses its TEKStack AI fintech solution to help lenders make informed data-driven decisions with respect to fraud detection, automation adoption and implementation, and accessing a larger customer base for microloans.

\n\n\n\n

Translucent also sees firsthand how data is changing the healthcare landscape, where the company’s Emrchiver platform is enabling healthcare administrators, practitioners and researchers through machine learning.

\n\n\n\n

At a time when many companies may be challenged by the global pandemic, Translucent has not only already adapted and planned for its next stage of growth but is also in a strong position to enter the US market.

\n\n\n\n

In September 2020, Translucent actively participated in the Trade Accelerator Program (TAP) offered by the World Trade Centre Toronto Institute. This program for export planning is sponsored and widely recognised by the Canadian government and other agencies like the Royal Bank of Canada, Export Development Canada (EDC), and the Business Development Bank of Canada (BDC).

\n\n\n\n

“Translucent Computing developed a comprehensive export plan to proactively tackle their first international market,” said Dalal Zayouna, Account Manager of the Technology Group from EDC. “We look forward to working with Translucent Computing as they continue to expand globally.”

\n\n\n\n

Malak Marzouk, Manager of the TAP, saw firsthand the enthusiasm, determination and drive that Translucent brought to the continuous refinement of their export plan. “Over the course of seven weeks as they built their extensive plan,” Marzouk remarked, “the Translucent team also provided endless and valuable insights to the conversation with other participating companies, ranging from best business practices to advice on various aspects of relationship building, salesforce management, and strategic R&D investments.”

\n\n\n\n

“Going through the TAP training and having industry thought leaders and market experts review our plan validated the effectiveness of our strategy,” said Robert Golabek, Chief Executive Officer of Translucent Computing. “We thoroughly considered the opportunities, significant market factors, timing and costs, then formalised the plan to propel our growth.”

\n\n\n\n

Digital health and electronic medical record technologies are projected to experience a significant compound annual growth rate (CAGR) of 15% over the next five years, with AI technologies in this space growing at a CAGR of 40% over the same period. While growth rates will be similar in both Canada and the US, the latter will see a slightly higher rate.

\n\n\n\n

“As the bank for Canadian entrepreneurs, we look forward to actively working with Translucent Computing on realizing their global growth ambitions,” said Nishant Raizada, Senior Account Manager of the Technology Industry at BDC. “Our Advisory team is eager to help them scale up and seize the opportunities at hand through our Revenue Growth Program.”

\n\n\n\n

“We understand that the time to enter the US market is now,” Golabek added. “We’re proud to also represent Canada’s growing tech industry, and hope to showcase our homegrown talent to our neighbours in America.”

\n\n\n\n

About Translucent Computing

\n\n\n\n

Founded in 2010, Translucent Computing is a Toronto-based data-driven digital transformation service provider and machine learning technology partner, with experience building innovative software solutions in Canada. Translucent accelerates digital technology adoption using their expertise in Kubernetes and application development. They partner with and support companies in multiple sectors and industries – including fintech and healthcare – to provide quality and innovation to deliver better value to their customers.

\n','Translucent Computing eyes growth into US market through fintech and healthcare solutions','','publish','open','open','','translucent-computing-eyes-growth-into-us-market-through-fintech-and-healthcare-solutions','','','2021-02-24 19:19:20','2021-02-25 00:19:20','',0,'http://www.translucentcomputing.com/?p=2107',0,'post','',0),(2126,4,'2020-12-31 09:23:48','2020-12-31 14:23:48','\n

In this post, we\'ll show you how to integrate Hashicorp Vault with any database that doesn\'t have a built-in connector, and show our results by doing that with Neo4j as an example. We\'ll also briefly explain what microservices architecture is and how secure Vault is.

\n\n\n\n

What do you use microservices for?

\n\n\n\n

Microservices is a system architecture where the software is built like small, independent building blocks that communicate with each other through a network, working together to provide a service we want. This pattern gives us many benefits:

\n\n\n\n
  • Less coupling, making the system easier to understand
  • Easier to scale and to ensure High Availability
  • Easier to develop and to deploy, because you can deploy each block separately
\n\n\n\n

Companies are often choosing a microservices architecture because of these benefits. As the system is split into smaller pieces, another benefit that sometimes gets overlooked is that you can use NoSQL database models to provide the best workload for every microservice.

\n\n\n\n

However, choosing this system pattern does come with some drawbacks. Having each part of a system work as its own system may imply to some people that these parts should each work individually and have their own identities, hardware resources, etc. This approach leads to a system with multiple databases, users, APIs, configurations and so on, which makes it much more complex to operate and secure.

\n\n\n\n
\"Microservices
Microservices systems tend to have variable databases
\n\n\n\n

In this type of scenario, there are a lot of services communicating with each other as an independent unit, requesting access and data, having their own credentials, authentication methods and API tokens. This setup \"sprawls\" these important pieces of information all over our infrastructure. So how do we make everything secure? Enter HashiCorp Vault.

\n\n\n\n

How does HashiCorp Vault work?

\n\n\n\n

Vault is an open-source software created by HashiCorp that addresses the scenario above by providing a centralized security entity. This entity applies security best practices when dealing with multiple and many moving parts like authentication providers, user credentials, and encryption. It does so by:

\n\n\n\n
  • Centralizing security information like credentials in many secrets engines
  • Communicating with multiple authentication providers like AWS, LDAP, etc.
  • Managing TLS certificates
  • Auditing all the accesses, so we can know who\'s accessing what
  • Making everything ephemeral, so that in case of a leak (through the Syslog or human error), this leaked credential will expire
\n\n\n\n

As the scope of this article is about databases, to make a database secure, we need:

\n\n\n\n
  • Encryption at rest and on transit
  • Least privilege access grants
  • Credential rotations
  • Dynamically generated accesses
  • Access auditing
\n\n\n\n

Vault provides every one of these features through its Database Secrets Engine.

\n\n\n\n

The main challenge

\n\n\n\n

One of Translucent Computing\'s main pillars is security and privacy, so we make sure that our solutions come with bleeding-edge security solutions. We started using Vault to secure databases – one of these is the Neo4j graph database.

\n\n\n\n

When we looked at the Vault secret engine, we found that Neo4j is not one of the databases included on their list of built-in solutions:

\n\n\n\n
\"\"
Look, there\'s no Neo4j Database!
\n\n\n\n

At the writing of this post, there are over a hundred different databases out there, so it stands to reason that Vault may not have support for all of them. HashiCorp knows this, so they\'ve built the entire database secret engine as a plugin system.

\n\n\n\n
\"\"
Here is a look at Hashicorp\'s database secret engine
\n\n\n\n

After acknowledging this fact, we started developing our own Vault plugin for Neo4j. According to HashiCorp documentation, we only had to implement a simple interface:

\n\n\n\n
type Database interface {\n\n// Initialize the database plugin. This is the equivalent of a constructor for the database object itself.\nInitialize(ctx context.Context, req InitializeRequest) (InitializeResponse, error)\n\n// NewUser creates a new user within the database. This user is temporary in that it will exist until the TTL expires.\nNewUser(ctx context.Context, req NewUserRequest) (NewUserResponse, error)\n\n// UpdateUser updates an existing user within the database.\nUpdateUser(ctx context.Context, req UpdateUserRequest) (UpdateUserResponse, error)\n\n// DeleteUser from the database. This should not error if the user didn\'t exist prior to this call.\nDeleteUser(ctx context.Context, req DeleteUserRequest) (DeleteUserResponse, error)\n\n// Type returns the Name for the particular database backend implementation. This type name is usually set as a constant within the database backend\nType() (string, error)\n\n// Close attempts to close the underlying database connection that was established by the backend.\nClose() error\n\n}
\n\n\n\n

\n\n\n\n

Now that we have a direction and a destination, it\'s time to build our car to get there. To do that, we implement the plugin in Golang. Fortunately, there\'s a Golang Neo4j driver available

\n\n\n\n

After the struggle of getting used to a new language and exploratory failings, we managed to implement the Neo4j plugin and we were ready for a test drive. To do that, we had to build and deploy it into Vault.

\n\n\n\n

To build it, use the go build command, which gathers all your files and compiles them into a binary. Now that we have a binary, we just need to put it into the plugin directory for Vault, which must be configured.

\n\n\n\n

Results

\n\n\n\n

After understanding Vault internals and deploying our own database engine plugin, here are some screenshots from a demo:

\n\n\n\n

We started with this command:

\n\n\n\n
vault server -dev -dev-root-token-id=root -dev-plugin-dir=./ -log-level
\n\n\n\n

...which starts a development Vault server with an easy root token to manage Vault and configure the plugin directory, so it can find my plugin binary.

\n\n\n\n
\"Vault
Here is my Vault server with the plugin fired up and ready to go.
\n\n\n\n

Afterwards, we spun up a Neo4j on my local Docker and queried the users from the database:

\n\n\n\n
\"Users
Users from a fresh Neo4j installation
\n\n\n\n

Then we configured the connection between the new Neo4j instance and the Vault plugin using the Vault CLI:

\n\n\n\n
// Enabling the database secret engine\nvault secrets enable database\n\n// writing my database configurations on the Vault Server\n vault write database/config/neo4j-plugin \\\n plugin_name=neo4j-plugin \\\n allowed_roles=\"readonly\" \\\n uri=bolt://192.168.99.101:7687 \\\n username=neo4j \\\n password=test \\\n database=neo4j \\\n verify_connection=true
\n\n\n\n

If you check the code above, you\'ll see that only the “readonly” role is able to access this plugin, so let’s create it:

\n\n\n\n
vault write database/roles/readonly \\\ndb_name=neo4j-plugin \\\ndefault_ttl=\"2m\" \\\nmax_ttl=\"10m\"
\n\n\n\n

Now, applications can have dynamically generated credentials for the Neo4j database, making this more secure and auditable:

\n\n\n\n
vault read database/creds/readonly\nResult:\nKey                Value\nlease_id           database/creds/readonly/ibAO9AwunXSfbfUhzvffJQHn\nlease_duration     2m\nlease_renewable    true\npassword           LyiYsbxm4Mj-w9Vpoowq\nusername           v_token_readonly_dfvqcgbux6fea9rnebuw_1608060926
\n\n\n\n

As you can see on the command results, this new user will only live for the next two minutes, so even if it leaks through the application or over the network, it will be a very small leakage window.

\n\n\n\n

Let’s check the database:

\n\n\n\n
\"Here
Here is an ephemeral user that\'ll be used by the application for the next two minutes, then it will expire.
\n\n\n\n

Are we secure now?

\n\n\n\n

Not yet, because what about the Neo4j user that we just used to let Vault access the database? What happens if it leaks? We have a solution to that as well.

\n\n\n\n

Vault also comes with a root credential rotation feature, so we can even secure that problem. Just have this command on CLI:

\n\n\n\n
vault write database/rotate-root/neo4j-plugin
\n\n\n\n

Conclusion

\n\n\n\n

Now, we\'ve guaranteed that our next Neo4j database deployments will be secure and integrated with our chosen security technology.

\n\n\n\n

We learned:

\n\n\n\n
  • How to make least privilege access grants through the roles
  • How to dynamically generate credentials through vault read database/creds/readonly
  • How to rotate the root credential
\n\n\n\n

So how secure is Vault?

\n\n\n\n

Vault database plugins allow the addition of TLS certificates on the connection. But we decided to not use TLS certificates because there\'s a better solution named Service Mesh, which we\'ll blog about in our posts. Stay tuned!

\n','Integrating Neo4j with Hashicorp Vault for secure secret management','','publish','open','open','','integrating-neo4j-with-hashicorp-vault-for-secure-secret-management','','','2020-12-31 09:47:49','2020-12-31 14:47:49','',0,'http://translucentcomputing.com/?p=2126',0,'post','',0),(2128,9,'2020-12-16 12:10:20','2020-12-16 17:10:20','','Translucent Computing prepares for US expansion','','inherit','open','closed','','translucent-computing-prepares-for-us-expansion','','','2021-10-06 22:40:38','2021-10-07 02:40:38','',2107,'https://www.translucentcomputing.com/wp-content/uploads/2020/12/Translucent-Computing-prepares-for-US-expansion.jpg',0,'attachment','image/jpeg',0),(2130,4,'2020-12-16 13:01:03','2020-12-16 18:01:03','','Monolithic-vs-Microservices-architecture-image-704x540-1','','inherit','open','closed','','monolithic-vs-microservices-architecture-image-704x540-1','','','2021-10-06 22:40:19','2021-10-07 02:40:19','',2126,'https://translucentcomputing.com/wp-content/uploads/2020/12/Monolithic-vs-Microservices-architecture-image-704x540-1.png',0,'attachment','image/png',0),(2138,4,'2020-12-18 10:12:47','2020-12-18 15:12:47','','Architecture-1','','inherit','open','closed','','architecture-1','','','2021-10-06 22:39:56','2021-10-07 02:39:56','',2126,'https://translucentcomputing.com/wp-content/uploads/2020/12/Architecture-1.png',0,'attachment','image/png',0),(2140,4,'2020-12-18 16:15:48','2020-12-18 21:15:48','','Architecture-2','','inherit','open','closed','','architecture-2','','','2021-10-06 22:39:32','2021-10-07 02:39:32','',2126,'https://translucentcomputing.com/wp-content/uploads/2020/12/Architecture-2.png',0,'attachment','image/png',0),(2154,9,'2020-12-22 19:24:19','2020-12-23 00:24:19','','vault-dynamic-secrets','','inherit','open','closed','','vault-dynamic-secrets','','','2021-10-06 22:38:25','2021-10-07 02:38:25','',2126,'https://www.translucentcomputing.com/wp-content/uploads/2020/12/vault-dynamic-secrets.png',0,'attachment','image/png',0),(2170,9,'2020-12-31 09:47:42','2020-12-31 14:47:42','','Untitled design-2','','inherit','open','closed','','untitled-design-2','','','2021-09-03 11:05:13','2021-09-03 15:05:13','',2126,'https://www.translucentcomputing.com/wp-content/uploads/2020/12/Untitled-design-2.png',0,'attachment','image/png',0),(2172,4,'2021-02-03 19:18:35','2021-02-04 00:18:35','','Multi-Cloud Deployment Strategy - What We Can Learn From Parler Going Dark','','draft','open','open','','','','','2021-02-07 11:57:26','2021-02-07 16:57:26','',0,'http://www.translucentcomputing.com/?p=2172',0,'post','',0),(2173,4,'2021-02-03 19:16:50','2021-02-04 00:16:50','','Multi-Cloud Deployment Strategy - Why Parler went down_1200x628px','','inherit','open','closed','','multi-cloud-deployment-strategy-why-parler-went-down_1200x628px','','','2021-09-03 11:04:59','2021-09-03 15:04:59','',2172,'https://www.translucentcomputing.com/wp-content/uploads/2021/02/Multi-Cloud-Deployment-Strategy-Why-Parler-went-down_1200x628px.png',0,'attachment','image/png',0),(2177,4,'2021-02-23 08:31:32','2021-02-23 13:31:32','\n

Did you know that replatforming can help you move your applications to the cloud, while still allowing you to take advantage of the benefits of the cloud and reduce your infrastructure costs?

\n\n\n\n

With every company being or becoming a tech company, we are all constantly trying to keep up with the latest advancements as we continue to grow and reduce costs.

\n\n\n\n

Technology changes rapidly and so does the market. Customers are looking for better and more-individualized user experiences. These trends put a strain on your current technology if it\'s not up to date. You could add new “upgrades” to your system, but these are only temporary, short-term fixes. Eventually, your business will not be able to keep up with the trends if you continue spending on support for your legacy applications instead of investing in new features and innovations.

\n\n\n\n

One thing you can consider is replatforming. This approach makes your applications cloud-ready and moves them to a cloud-native application platform, which heavily reduces the overall capital costs of your own infrastructure. Moving your applications to the cloud gives you more flexibility to create custom user experiences, and helps you keep up with modern platforms. Whether your company owns tens, hundreds, or even thousands of applications, replatforming can be part of your modernization strategy to move from bare-metal or virtual machines to containerized target environments.

\n\n\n\n

Replatforming can be done gradually by migrating complex legacy applications into new runtime platforms that support cloud-native architecture - it makes minimal changes to the code even as it adapts to the new platform.

\n\n\n\n

How you plan on shifting your future strategies to meet your business objectives depends heavily on the current status of your technology. When your teams already have too much on their plates, updating the architecture might not be feasible. Translucent knows how to tackle “big ball of mud” applications; we work with you and your teams to apply appropriate modernization strategies with state-of-the-art practices and principles. Translucent can help you fully define your current and future requirements, along with identifying comprehensive TCO & ROI for the years to come.

\n\n\n\n

Let us be your partner in navigating through your next big thing. Send us a message today to get started.

\n','What is Replatforming and is your company ready for this next big change?','','publish','open','open','','what-is-replatforming-and-is-your-company-ready-for-this-next-big-change','','','2021-02-24 16:32:56','2021-02-24 21:32:56','',0,'http://translucentcomputing.com/?p=2177',0,'post','',0),(2184,9,'2021-02-23 08:27:13','2021-02-23 13:27:13','','What is replatforming','','inherit','open','closed','','0005_jakub_banner_blog_microblogs_01_1200x628px','','','2021-09-03 10:58:54','2021-09-03 14:58:54','',2177,'https://translucentcomputing.com/wp-content/uploads/2021/02/0005_jakub_banner_blog_microblogs_01_1200x628px.png',0,'attachment','image/png',0),(2193,9,'2021-02-24 19:18:45','2021-02-25 00:18:45','','Translucent Computing prepares for US expansion','','inherit','open','closed','','0007_tcmp_blogs_content_new_format_1200x628_02','','','2021-09-03 10:58:42','2021-09-03 14:58:42','',2107,'https://translucentcomputing.com/wp-content/uploads/2020/12/0007_TCMP_blogs_content_new_format_1200x628_02.png',0,'attachment','image/png',0),(2195,9,'2021-02-24 19:19:59','2021-02-25 00:19:59','','Translucent Computing showcases canadian healthcare solution','','inherit','open','closed','','0007_tcmp_blogs_content_new_format_1200x628_01','','','2021-09-03 10:58:24','2021-09-03 14:58:24','',2009,'https://translucentcomputing.com/wp-content/uploads/2020/12/0007_TCMP_blogs_content_new_format_1200x628_01.png',0,'attachment','image/png',0),(2196,4,'2021-02-25 17:53:02','2021-02-25 22:53:02','','Kubernetes Professional Services','','publish','closed','closed','','kubernetes-professional-services','','','2022-05-13 01:21:43','2022-05-13 05:21:43','',0,'http://www.translucentcomputing.com/?page_id=2196',0,'page','',0),(2202,4,'2021-02-25 19:50:19','2021-02-26 00:50:19','','Kubernetes-Professional-Services','','inherit','open','closed','','kubernetes-professional-services-2','','','2021-10-06 22:11:35','2021-10-07 02:11:35','',0,'https://www.translucentcomputing.com/wp-content/uploads/2021/02/Kubernetes-Professional-Services.png',0,'attachment','image/png',0),(2203,4,'2021-02-25 20:15:24','2021-02-26 01:15:24','','Learn-Inform-Plan','','inherit','open','closed','','learn-inform-plan','','','2021-10-06 22:11:08','2021-10-07 02:11:08','',0,'https://www.translucentcomputing.com/wp-content/uploads/2021/02/Learn-Inform-Plan.png',0,'attachment','image/png',0),(2206,4,'2021-02-25 20:30:35','2021-02-26 01:30:35','','Learn-Inform-Plan-Dark','','inherit','open','closed','','learn-inform-plan-dark','','','2021-10-06 22:11:01','2021-10-07 02:11:01','',0,'https://www.translucentcomputing.com/wp-content/uploads/2021/02/Learn-Inform-Plan-Dark.png',0,'attachment','image/png',0),(2207,4,'2021-02-25 20:39:44','2021-02-26 01:39:44','','Kubernetes-Professional-Services-trans','','inherit','open','closed','','kubernetes-professional-services-trans','','','2021-10-06 22:10:21','2021-10-07 02:10:21','',2196,'https://www.translucentcomputing.com/wp-content/uploads/2021/02/Kubernetes-Professional-Services-trans.png',0,'attachment','image/png',0),(2208,4,'2021-02-25 20:39:45','2021-02-26 01:39:45','','Learn-Inform-Plan-trans','','inherit','open','closed','','learn-inform-plan-trans','','','2021-10-06 22:09:58','2021-10-07 02:09:58','',2196,'https://www.translucentcomputing.com/wp-content/uploads/2021/02/Learn-Inform-Plan-trans.png',0,'attachment','image/png',0),(2209,4,'2021-02-25 21:15:05','2021-02-26 02:15:05','','Kubernetes-Consulting-trans','','inherit','open','closed','','kubernetes-consulting-trans','','','2021-10-06 22:09:36','2021-10-07 02:09:36','',2196,'https://www.translucentcomputing.com/wp-content/uploads/2021/02/Kubernetes-Consulting-trans.png',0,'attachment','image/png',0),(2212,4,'2021-02-25 21:27:56','2021-02-26 02:27:56','','Support-and-Maintenance-trans','','inherit','open','closed','','support-and-maintenance-trans','','','2021-10-06 22:09:08','2021-10-07 02:09:08','',2196,'https://www.translucentcomputing.com/wp-content/uploads/2021/02/Support-and-Maintenance-trans.png',0,'attachment','image/png',0),(2213,4,'2021-02-26 10:23:28','2021-02-26 15:23:28',' ','','','publish','closed','closed','','2213','','','2021-10-13 17:09:14','2021-10-13 21:09:14','',0,'http://www.translucentcomputing.com/?p=2213',6,'nav_menu_item','',0),(2214,4,'2021-02-26 19:31:43','2021-02-27 00:31:43','
[text* nome class:new-home__input placeholder \"Name\"]
[email* email class:new-home__input placeholder \"Email\"]
\r\n
[text* company class:new-home__input placeholder \"Company\"]
[tel* phone class:new-home__input placeholder \"Phone number\"]
[textarea* message class:new-home__textarea placeholder \"Message\"]
[submit class:new-home__input-btn \"Send\"]
\n1\nTC Form Submissions: From Translucent What is Contact form\nresults@translucentcomputing.com\nresults@translucentcomputing.com, robert@translucentcomputing.com, bsankar@translucentcomputing.com\nFrom: [nome] <[email]>\r\n\r\nMessage:\r\n[message]\nReply-To: [email]\n\n\n\n\nTranslucent \"[your-subject]\"\nTranslucent \n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on Translucent (http://localhost:8082)\nReply-To: contato@gabithomaz.com.br\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','X - NOT IN USE - What is Contact form','','publish','closed','closed','','contact-form_copy','','','2022-01-26 18:17:49','2022-01-26 23:17:49','',0,'http://translucentcomputing.com/?post_type=wpcf7_contact_form&p=2214',0,'wpcf7_contact_form','',0),(2215,4,'2021-02-26 20:51:15','2021-02-27 01:51:15','','mockup-kids','','inherit','open','closed','','mockup-kids','','','2021-10-06 22:08:35','2021-10-07 02:08:35','',1924,'https://translucentcomputing.com/wp-content/uploads/2021/02/mockup-kids.png',0,'attachment','image/png',0),(2216,4,'2021-10-22 08:22:57','2021-03-02 13:11:21','','Cloud Native Consulting Services','','publish','closed','closed','','solutions-steps','','','2021-10-22 08:22:57','2021-10-22 12:22:57','',0,'http://translucentcomputing.com/?p=2216',3,'nav_menu_item','',0),(2217,4,'2021-10-22 08:22:58','2021-03-02 13:11:22','','Our Technology','','publish','closed','closed','','our-technology','','','2021-10-22 08:22:58','2021-10-22 12:22:58','',0,'http://translucentcomputing.com/?p=2217',9,'nav_menu_item','',0),(2218,4,'2021-10-22 08:22:58','2021-03-02 13:11:23','','Resources','','publish','closed','closed','','resources','','','2021-10-22 08:22:58','2021-10-22 12:22:58','',0,'http://translucentcomputing.com/?p=2218',12,'nav_menu_item','',0),(2222,4,'2021-10-22 08:22:59','2021-03-02 13:11:23',' ','','','publish','closed','closed','','2222','','','2021-10-22 08:22:59','2021-10-22 12:22:59','',0,'http://translucentcomputing.com/?p=2222',13,'nav_menu_item','',0),(2223,4,'2021-10-22 08:22:59','2021-03-02 13:11:23',' ','','','publish','closed','closed','','2223','','','2021-10-22 08:22:59','2021-10-22 12:22:59','',0,'http://translucentcomputing.com/?p=2223',14,'nav_menu_item','',0),(2224,4,'2021-10-22 08:22:58','2021-03-02 13:11:22',' ','','','publish','closed','closed','','2224','','','2021-10-22 08:22:58','2021-10-22 12:22:58','',0,'http://translucentcomputing.com/?p=2224',10,'nav_menu_item','',0),(2226,4,'2021-10-22 08:22:58','2021-03-02 13:11:22',' ','','','publish','closed','closed','','2226','','','2021-10-22 08:22:58','2021-10-22 12:22:58','',829,'http://translucentcomputing.com/?p=2226',8,'nav_menu_item','',0),(2228,4,'2021-10-22 08:22:57','2021-03-02 13:11:21','','Digital transformation','','publish','closed','closed','','digital-transformation','','','2021-10-22 08:22:57','2021-10-22 12:22:57','',0,'http://translucentcomputing.com/?p=2228',1,'nav_menu_item','',0),(2229,4,'2021-10-22 08:22:58','2021-03-02 13:11:21',' ','','','publish','closed','closed','','what-is-digital-transformation','','','2021-10-22 08:22:58','2021-10-22 12:22:58','',829,'http://translucentcomputing.com/?p=2229',7,'nav_menu_item','',0),(2230,4,'2021-10-22 08:22:57','2021-03-02 13:11:21',' ','','','publish','closed','closed','','2230','','','2021-10-22 08:22:57','2021-10-22 12:22:57','',0,'http://translucentcomputing.com/?p=2230',6,'nav_menu_item','',0),(2231,9,'2021-03-02 12:59:45','2021-03-02 17:59:45','\n

Last time, we talked about replatforming and how you can move your applications to the cloud without major changes, but still take advantage of the benefits of the cloud environment. Today, we will extend this point with Application Modernization which includes rebuilding, replatforming or adding new cloud-native features.;

\n\n\n\n

It’s the process of preparing enterprises to face changing business needs. Companies need to act quickly to continuously improve the quality of their digital customer service. By accelerating your digital transformation, you can transform your business to build new capabilities and deliver them quickly.

\n\n\n\n

Modernized applications can run concurrently, and seamlessly connect with a company’s existing investments. By eliminating barriers that prohibit productivity and integration, we can create new user experiences and develop new applications.

\n\n\n\n

Translucent Computing’s Cloud Transformation Advisors can help you start your modernization journey and choose the best entry point, to deliver value at each step.

\n\n\n\n

Adopting cloud-native architecture and containerization allows you to modernize your platform; adding the ability to quickly create and deliver new features & services.

\n','Why You Should Modernize Your Legacy Applications?','','publish','open','open','','why-you-should-modernize-your-legacy-applications','','','2021-03-02 13:50:39','2021-03-02 18:50:39','',0,'http://translucentcomputing.com/?p=2231',0,'post','',0),(2233,9,'2021-03-02 12:57:07','2021-03-02 17:57:07','','Application Modernization process','','inherit','open','closed','','0005_jakub_banner_blog_microblogs_02_1200x628px-2','','','2021-10-06 22:08:22','2021-10-07 02:08:22','',2231,'https://translucentcomputing.com/wp-content/uploads/2021/03/0005_jakub_banner_blog_microblogs_02_1200x628px-2.png',0,'attachment','image/png',0),(2238,4,'2021-10-22 08:22:58','2021-03-10 15:10:20','','TEKProcess','','publish','closed','closed','','tekprocess','','','2021-10-22 08:22:58','2021-10-22 12:22:58','',0,'http://www.translucentcomputing.com/?p=2238',11,'nav_menu_item','',0),(2239,4,'2021-10-22 08:22:59','2021-03-10 15:12:14','','Our Company','','publish','closed','closed','','our-company','','','2021-10-22 08:22:59','2021-10-22 12:22:59','',0,'http://www.translucentcomputing.com/?p=2239',15,'nav_menu_item','',0),(2241,4,'2021-10-22 08:22:59','2021-03-10 15:12:15',' ','','','publish','closed','closed','','2241','','','2021-10-22 08:22:59','2021-10-22 12:22:59','',0,'http://www.translucentcomputing.com/?p=2241',17,'nav_menu_item','',0),(2246,4,'2021-03-10 12:38:41','2021-03-10 17:38:41','','kubernetes-kcsp-color','','inherit','open','closed','','kubernetes-kcsp-color','','','2021-10-06 22:07:35','2021-10-07 02:07:35','',0,'https://translucentcomputing.com/wp-content/uploads/2021/03/kubernetes-kcsp-color.png',0,'attachment','image/png',0),(2248,4,'2021-03-10 13:47:28','2021-03-10 18:47:28','','Kubernetes-Professional-Services with cert','','inherit','open','closed','','kubernetes-professional-services-with-cert','','','2021-10-06 22:06:47','2021-10-07 02:06:47','',2196,'https://www.translucentcomputing.com/wp-content/uploads/2021/03/Kubernetes-Professional-Services-with-cert.png',0,'attachment','image/png',0),(2249,4,'2021-03-23 14:22:24','2021-03-23 18:22:24','\r\n

Imagine that you’re buying a smartphone. It’s the phone that you’ve desperately been waiting for, and you like the price. It\'s heavily discounted; the price is right. The phone is already in your shopping cart. Just as you’re about to make the purchase, you realize that you don’t have enough money to buy the phone. Fortunately, there’s an option for you to finance the phone through a micro-loan.

\r\n\r\n\r\n\r\n

You click Apply for a Loan on the checkout screen. All you have to do is provide your name, address, and ID validation. Behind the scenes, an AI Automated Loan Process validates your identity, performs an immediate credit score check, connects to your bank, and voilà! It’s approved in 5 minutes and you have your phone!

\r\n\r\n\r\n\r\n

You expect a simple user experience.

\r\n\r\n\r\n\r\n

Now think about your own organization. Maybe you feel your systems are “good enough”, but good enough won’t keep you competitive in today’s marketplace. Have you made data a first-class citizen? Have you ensured a simple experience for your people and customers? Are you using modern practices, automation and tools to improve efficiency, make more money and increase savings, without increasing overhead costs?

\r\n\r\n\r\n\r\n

If you answered “no” or had difficulty answering any of these questions, then you should really be thinking about a data driven approach to your organization’s transformation. Let data drive the transformation.

\r\n\r\n\r\n\r\n

Why do you care? You care because this is how your customers want to do business especially in the current market conditions. What\'s important to them must be important to you. Happy customers = higher market share.

\r\n\r\n\r\n\r\n

Before we dive into the awesomeness of data driven digital transformation, you need to understand the three types of transformations.

\r\n\r\n\r\n\r\n

Digitization, Digitalization, and Data Driven Digital Transformation

\r\n\r\n\r\n\r\n
\r\n
\r\n

Digitization refers to “creating a digital representation of physical objects”. This is also known as a digital artifact. For example, a paper contract can be digitized by converting it into a PDF document. The digitized version of the document is easier to distribute, and is easier to search through.

\r\n\r\n\r\n\r\n

Digitalization refers to “enabling, improving, or transforming business processes by leveraging digital [technologies] and digitized data”. For example, the traditional process of signing a contract means signing multiple paper copies (one for each party) of the contract by pen, and delivering a copy to each party by hand. When this process is digitalized, the single copy of the contract is the source of truth. It is signed by each party using software. All parties are notified electronically of the signing, and have access to the same electronic copy of the contract. The new process uses less paper, is a lot less complex than the old process, has a single source of truth and is automated so all parties can sign when they are available to. Taking business to much more effective level.

\r\n\r\n\r\n\r\n

Data Driven Digital Transformations enable you to achieve digitization and/or digitalization. Whatever your organization’s goals. Translucent can help you be competitive.

\r\n
\r\n\r\n\r\n\r\n
\r\n
\"\"
\r\n
\r\n
\r\n\r\n\r\n\r\n

What Data Represents Your Organization?

\r\n\r\n\r\n\r\n

You’re not Netflix. Or Facebook. Or Google. Your organization has its own unique identity, so you shouldn’t try to be like another organization. Let us help you carve your journey, by defining the data that best represents your organization. We help make your data malleable, so that other services (internal and external) may consume your data with less friction. Data is the new oil. Translucent can help you unlock your businesses untapped potential using data to give you insights and automate processes. Competing today and building for the future!

\r\n\r\n\r\n\r\n

What’s In It For Your Organization?

\r\n\r\n\r\n\r\n

There’s a new urgency for organizations to go digital, thanks in large part to the lockdowns and restrictions put in place to curb the spread of Covid19.

\r\n\r\n\r\n\r\n

We help your organization with:

\r\n\r\n\r\n\r\n
\r\n
\r\n

1. Scale. If, for example, you suddenly get more visitors to your site on Black Friday, can your infrastructure scale to handle it? It’s midnight, and most of your customers are sleeping. Why are you over-provisioned, when nobody is using your service? We build a system that is responsive to your customers’ needs. This saves you money on low-demand days, and ensures that you continue to operate smoothly on high-demand days, with minimal disruption and cost.

\r\n
\r\n\r\n\r\n\r\n
\r\n

2. Greater collaboration. Silos can be an organization’s worst enemy. They just slow every priority down. Nobody wants that. Translucent’s data driven approach builds efficient platforms and automated processes to enable greater collaboration amongst your internal and external users as well as your customers. When teams can deal with issues faster, it means faster feature rollouts, and responses to your customers needs.

\r\n
\r\n\r\n\r\n\r\n
\r\n

3. Easy integration. Every modern business partnership requires data integration. You may have to send data to a third party. You may have to receive data from a third party. With a data driven first approach, we help design secure APIs that enable your partners to easily connect with your services. This makes integration easier and less costly. Making you more money enabling cross-selling opportunities.

\r\n
\r\n
\r\n\r\n\r\n\r\n
\r\n
\r\n
\"\"
\r\n
\r\n\r\n\r\n\r\n
\r\n

The Translucent Difference

\r\n\r\n\r\n\r\n

At Translucent, we pride ourselves on our passion for technology, innovation, and change.

\r\n\r\n\r\n\r\n

We’re not here to fill your head with buzzwords. We’re here to get to work.

\r\n\r\n\r\n\r\n

Technology can be complex and confusing to navigate. We’re not here to push complex flows on you. We’re here to take complex processes and simplify them, because we understand technology well.

\r\n\r\n\r\n\r\n

We know this, because we’ve done it before, many times over.

\r\n
\r\n
\r\n','What is Data Driven Digital Transformation?','','publish','closed','closed','','what-is-data-driven-digital-transformation','','','2022-05-13 01:25:15','2022-05-13 05:25:15','',0,'http://translucentcomputing.com/?page_id=2249',0,'page','',0),(2259,4,'2021-03-25 15:04:01','0000-00-00 00:00:00','\n
\n
\n

In our first “What is” section, we talked about how easy it is for someone to buy a phone using a micro-loan (and get approved in 5 minutes) as a seamless part of an online transaction.

\n\n\n\n

This time, to dive into the cloud-native journey, imagine you are a program manager of a company called “Translucent Micro-loans” that supports such loans and purchases.

\n
\n\n\n\n
\n

This company is a digitally transformed bank that created a cloud-native solution based on their pre-existing semi-digital loan system. You were able to fully implement cloud-native transformation by creating a new dynamic culture, and applying new processes that drive innovation, like modernizing your platform by rebuilding it in a scalable dynamic cloud-native cloud platform.

\n
\n\n\n\n
\n

Your new cloud-native platform has provided great customer experience so far based on user feedback collected and analyzed in collaboration with your business, product, and development teams. Your teams are also making and adding new features daily or weekly. With a small team working and collaborating on an agile and dynamic platform, you can now compete with even the biggest companies!

\n
\n
\n\n\n\n

Are You Ready for Cloud-Native?

\n\n\n\n
\n
\n

Yes, you are. Whether you are building a new product or looking at modernizing the current one, the answer is yes.

\n\n\n\n

Before you take your company on a journey into Applications and DevOps, let’s first go over what that means and what cloud-native is.

\n\n\n\n

The first thing to know about cloud-native is how it creates and deploys applications, not where.

\n\n\n\n

Cloud-native is more than just a technology or tool. It is a philosophical approach for building and scaling applications while taking full advantage of the modern and dynamic elements of cloud computing. This new paradigm requires not only embracing new technology, but also a new way of working.

\n\n\n\n

Cloud-native is not about new technologies, but about faster innovation that helps you learn what your customers really want, then consistently deliver an improved product and experience.

\n
\n\n\n\n
\n

image

\n
\n
\n\n\n\n

Cloud-native is an approach to building and running applications that uses the advantages of the cloud computing delivery model, whether it’s public or private clouds.

\n\n\n\n

The payoff is immense, but to reach it, an organization must evolve not just its tech stack. Cloud-native transformation has to be done holistically, which means your transformation strategy and plan must include your culture, processes, and technology.

\n\n\n\n

Team Culture, Flexible Processes, Scalable
and Dynamic Environments

\n\n\n\n
\n
\n

Team Culture

\n\n\n\n

Cloud-native exists at the intersection of cloud-native tools, organizational change and culture. That’s why technology and organizations must change together and support each other.

\n\n\n\n

As an organization, you must identify and decide which technologies, processes, and cultural dynamics need to come together to create the infrastructure that can support and integrate with cloud-native environments, and the best way for you to build your cloud-native future. One of the most important building blocks of this strategy is a team culture conducive to such a transformation.

\n\n\n\n

A key factor for success with cloud-native transformation is investing in your team’s knowledge, and fostering a culture of learning and innovation. Supporting that learning will allow your teams to keep up with ever-changing user demands, as well as the evolving technologies and processes that can support these demands.

\n
\n\n\n\n
\n

image

\n
\n
\n\n\n\n
\n
\n

Flexible Processes

\n\n\n\n

Cloud-native transformation is mostly about change management as you move from the known to the unknown. Your processes need to be able to support this transformation.

\n\n\n\n

To respond to customer demands, your team will need to be nimble and adaptable, so that they can build the right applications. In line with what we just discussed about team culture, if you have the right team culture in place, then your teams will also have the space to learn and adapt their processes and refine best practices. Let your teams experiment with new processes and features, then slowly increase investment in learning and information gathering. Once you start figuring out more on what works and what doesn’t, then you can incrementally invest more in the right areas.

\n\n\n\n

Change management will also involve continuous fine-tuning and communication across teams and departments as new features develop, and there must be a continuous feedback loop that your whole organization can contribute to.

\n\n\n\n

Agile processes must be used throughout the whole company. The goal is to have your cloud-native platform reflect your product, services, and processes.

\n
\n\n\n\n
\n

Scalable and Dynamic Technologies

\n\n\n\n

Cloud-native architectures take full advantage of on-demand delivery, global deployment, elasticity, and higher-level services. They enable huge improvements in developer productivity, business agility, scalability, availability, utilization, and cost savings.

\n\n\n\n

Cloud-native technologies allow your organization to apply DevOps principles and practices that will enable you to automate your operations and infrastructure. It will give you the ability to build or rebuild your applications and tap into the smart “app” ecosystem where new features are developed by the global community. Cloud-native will allow your business to scale at the right time when business demand increases, by giving you access to new A.I. services and a global API economy where you can buy, sell, and create new features, which will increase your reach and ROI.

\n
\n
\n\n\n\n

Why Should Your Organization Go Cloud-Native?

\n\n\n\n

Cloud-native technology has taken the IT landscape by storm – and organizations must readjust to weather the storm. Slow adoption and innovation in today\'s fast-changing world could threaten your current business model and revenues.

\n\n\n\n

By moving to the cloud, you can enhance your current products and services, and also gain the ability to create a new type of component that can be used for a variety of other products. These components can be consumed through APIs or other functions to bring new and immediate ROIs, and also prepare you for the next round of technological change the world will bring. To make sure you are successful with your cloud-native transformation, you have to make sure that it’s done in a holistic way that includes culture, processes, and technology.

\n\n\n\n
\n
\n

The Translucent Difference

\n\n\n\n

At Translucent, we pride ourselves on our passion for technology, innovation, and change.

\n\n\n\n

We’re not here to fill your head with buzzwords – we’re here to help you get to work.

\n\n\n\n

Technology can be complex and confusing to navigate. We can take complex processes and simplify them because we understand technology.

\n\n\n\n

We know this because we’ve done it before, many times over.

\n\n\n\n

We were already developing cloud-native platforms before it even had a name!

\n
\n\n\n\n
\n

image

\n\n\n\n

\n
\n
\n','What Is Cloud Native?','','draft','closed','closed','','','','','2021-03-25 15:04:01','2021-03-25 19:04:01','',0,'http://translucentcomputing.com/?page_id=2259',0,'page','',0),(2263,4,'2021-03-15 09:18:26','2021-03-15 13:18:26','','logo-2','','inherit','open','closed','','logo-2-2','','','2021-10-06 22:06:12','2021-10-07 02:06:12','',0,'https://translucentcomputing.com/wp-content/uploads/2021/03/logo-2.png',0,'attachment','image/png',0),(2264,4,'2021-03-15 09:18:27','2021-03-15 13:18:27','','logo-3','','inherit','open','closed','','logo-3','','','2021-10-06 22:05:45','2021-10-07 02:05:45','',0,'https://translucentcomputing.com/wp-content/uploads/2021/03/logo-3.png',0,'attachment','image/png',0),(2265,4,'2021-03-15 11:02:05','2021-03-15 15:02:05','','digital-transformation','','inherit','open','closed','','digital-transformation-2','','','2021-10-06 22:05:24','2021-10-07 02:05:24','',0,'https://translucentcomputing.com/wp-content/uploads/2021/03/digital-transformation.png',0,'attachment','image/png',0),(2268,4,'2021-03-19 10:33:46','2021-03-19 14:33:46','','devops','','inherit','open','closed','','devops-2','','','2021-10-06 22:05:08','2021-10-07 02:05:08','',0,'https://translucentcomputing.com/wp-content/uploads/2021/03/devops.png',0,'attachment','image/png',0),(2271,4,'2021-03-20 08:46:08','2021-03-20 12:46:08','','home1','','inherit','open','closed','','home1','','','2021-10-13 10:06:46','2021-10-13 14:06:46','',0,'https://translucentcomputing.com/wp-content/uploads/2021/03/home1.png',0,'attachment','image/png',0),(2272,4,'2021-03-20 08:46:09','2021-03-20 12:46:09','','home2','','inherit','open','closed','','home2','','','2021-10-06 22:04:14','2021-10-07 02:04:14','',1924,'https://translucentcomputing.com/wp-content/uploads/2021/03/home2.png',0,'attachment','image/png',0),(2273,4,'2021-03-20 08:46:10','2021-03-20 12:46:10','','home3','','inherit','open','closed','','home3','','','2021-10-06 22:04:27','2021-10-07 02:04:27','',1924,'https://translucentcomputing.com/wp-content/uploads/2021/03/home3.png',0,'attachment','image/png',0),(2274,4,'2021-03-20 09:28:00','2021-03-20 13:28:00','','dt-2','','inherit','open','closed','','dt-2','','','2021-10-06 22:03:40','2021-10-07 02:03:40','',2249,'https://translucentcomputing.com/wp-content/uploads/2021/03/dt-2.png',0,'attachment','image/png',0),(2275,4,'2021-03-20 09:28:01','2021-03-20 13:28:01','','dt-3','','inherit','open','closed','','dt-3','','','2021-10-06 22:03:22','2021-10-07 02:03:22','',2249,'https://translucentcomputing.com/wp-content/uploads/2021/03/dt-3.png',0,'attachment','image/png',0),(2276,4,'2021-03-20 09:28:54','2021-03-20 13:28:54','','dt-1','','inherit','open','closed','','dt-1','','','2021-10-06 22:03:09','2021-10-07 02:03:09','',2249,'https://translucentcomputing.com/wp-content/uploads/2021/03/dt-1.png',0,'attachment','image/png',0),(2278,4,'2021-03-20 09:47:17','2021-03-20 13:47:17','','mrdata1','','inherit','open','closed','','mrdata1','','','2021-10-06 21:56:50','2021-10-07 01:56:50','',0,'https://translucentcomputing.com/wp-content/uploads/2021/03/mrdata1.png',0,'attachment','image/png',0),(2279,4,'2021-03-20 09:47:18','2021-03-20 13:47:18','','mrdata2','','inherit','open','closed','','mrdata2','','','2021-10-06 21:56:39','2021-10-07 01:56:39','',0,'https://translucentcomputing.com/wp-content/uploads/2021/03/mrdata2.png',0,'attachment','image/png',0),(2281,4,'2021-03-20 10:05:26','2021-03-20 14:05:26','','mrdata3','','inherit','open','closed','','mrdata3','','','2021-10-06 21:56:25','2021-10-07 01:56:25','',0,'https://translucentcomputing.com/wp-content/uploads/2021/03/mrdata3.png',0,'attachment','image/png',0),(2285,4,'2021-03-20 10:12:29','2021-03-20 14:12:29','','devops1','','inherit','open','closed','','devops1','','','2021-10-06 21:56:13','2021-10-07 01:56:13','',0,'https://translucentcomputing.com/wp-content/uploads/2021/03/devops1.png',0,'attachment','image/png',0),(2308,4,'2021-03-22 11:16:18','2021-03-22 15:16:18','','TC_BANNER','','inherit','open','closed','','tc_banner','','','2021-03-22 11:16:18','2021-03-22 15:16:18','',0,'https://www.translucentcomputing.com/wp-content/uploads/2021/03/TC_BANNER.mp4',0,'attachment','video/mp4',0),(2309,4,'2021-03-22 19:47:17','2021-03-22 23:47:17','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:4:\"page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"2196\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','Kubernetes','kubernetes','publish','closed','closed','','group_60592a28c7d00','','','2021-03-22 19:47:22','2021-03-22 23:47:22','',0,'http://translucentcomputing.com/?post_type=acf-field-group&p=2309',0,'acf-field-group','',0),(2310,4,'2021-03-22 19:47:17','2021-03-22 23:47:17','a:7:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Section 1','section_1','publish','closed','closed','','field_60592a3f2d219','','','2021-03-22 19:47:17','2021-03-22 23:47:17','',2309,'http://translucentcomputing.com/?post_type=acf-field&p=2310',0,'acf-field','',0),(2311,4,'2021-03-22 19:47:17','2021-03-22 23:47:17','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_60592c342d237','','','2021-03-22 19:47:17','2021-03-22 23:47:17','',2310,'http://translucentcomputing.com/?post_type=acf-field&p=2311',0,'acf-field','',0),(2312,4,'2021-03-22 19:47:17','2021-03-22 23:47:17','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title','title','publish','closed','closed','','field_60592a672d21a','','','2021-03-22 19:47:17','2021-03-22 23:47:17','',2310,'http://translucentcomputing.com/?post_type=acf-field&p=2312',1,'acf-field','',0),(2313,4,'2021-03-22 19:47:17','2021-03-22 23:47:17','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Subheading','subheading','publish','closed','closed','','field_60592a7b2d21b','','','2021-03-22 19:47:17','2021-03-22 23:47:17','',2310,'http://translucentcomputing.com/?post_type=acf-field&p=2313',2,'acf-field','',0),(2314,4,'2021-03-22 19:47:17','2021-03-22 23:47:17','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Text','text','publish','closed','closed','','field_60592a942d21c','','','2021-03-22 19:47:17','2021-03-22 23:47:17','',2310,'http://translucentcomputing.com/?post_type=acf-field&p=2314',3,'acf-field','',0),(2315,4,'2021-03-22 19:47:18','2021-03-22 23:47:18','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:0:\"\";s:12:\"button_label\";s:0:\"\";}','Keywords','keywords','publish','closed','closed','','field_60592aaf2d21d','','','2021-03-22 19:47:18','2021-03-22 23:47:18','',2310,'http://translucentcomputing.com/?post_type=acf-field&p=2315',4,'acf-field','',0),(2316,4,'2021-03-22 19:47:18','2021-03-22 23:47:18','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Keyword','keyword','publish','closed','closed','','field_60592ab92d21e','','','2021-03-22 19:47:18','2021-03-22 23:47:18','',2315,'http://translucentcomputing.com/?post_type=acf-field&p=2316',0,'acf-field','',0),(2317,4,'2021-03-22 19:47:18','2021-03-22 23:47:18','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','CTA text','cta_text','publish','closed','closed','','field_60592bb52d231','','','2021-03-22 19:47:18','2021-03-22 23:47:18','',2310,'http://translucentcomputing.com/?post_type=acf-field&p=2317',5,'acf-field','',0),(2318,4,'2021-03-22 19:47:18','2021-03-22 23:47:18','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','CTA link','cta_link','publish','closed','closed','','field_60592bc02d232','','','2021-03-22 19:47:18','2021-03-22 23:47:18','',2310,'http://translucentcomputing.com/?post_type=acf-field&p=2318',6,'acf-field','',0),(2319,4,'2021-03-22 19:47:18','2021-03-22 23:47:18','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Services','services','publish','closed','closed','','field_60592bfc2d235','','','2021-03-22 19:47:18','2021-03-22 23:47:18','',2309,'http://translucentcomputing.com/?post_type=acf-field&p=2319',1,'acf-field','',0),(2320,4,'2021-03-22 19:47:18','2021-03-22 23:47:18','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Service','service','publish','closed','closed','','field_60592c042d236','','','2021-03-22 19:47:18','2021-03-22 23:47:18','',2319,'http://translucentcomputing.com/?post_type=acf-field&p=2320',0,'acf-field','',0),(2321,4,'2021-03-22 19:47:19','2021-03-22 23:47:19','a:7:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Section 2','section_2','publish','closed','closed','','field_60592b6e2d21f','','','2021-03-22 19:47:19','2021-03-22 23:47:19','',2309,'http://translucentcomputing.com/?post_type=acf-field&p=2321',2,'acf-field','',0),(2322,4,'2021-03-22 19:47:19','2021-03-22 23:47:19','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_60592c4e2d239','','','2021-03-22 19:47:19','2021-03-22 23:47:19','',2321,'http://translucentcomputing.com/?post_type=acf-field&p=2322',0,'acf-field','',0),(2323,4,'2021-03-22 19:47:19','2021-03-22 23:47:19','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title','title','publish','closed','closed','','field_60592b6e2d220','','','2021-03-22 19:47:19','2021-03-22 23:47:19','',2321,'http://translucentcomputing.com/?post_type=acf-field&p=2323',1,'acf-field','',0),(2324,4,'2021-03-22 19:47:19','2021-03-22 23:47:19','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Subheading','subheading','publish','closed','closed','','field_60592b6e2d221','','','2021-03-22 19:47:19','2021-03-22 23:47:19','',2321,'http://translucentcomputing.com/?post_type=acf-field&p=2324',2,'acf-field','',0),(2325,4,'2021-03-22 19:47:19','2021-03-22 23:47:19','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Text','text','publish','closed','closed','','field_60592b6e2d222','','','2021-03-22 19:47:19','2021-03-22 23:47:19','',2321,'http://translucentcomputing.com/?post_type=acf-field&p=2325',3,'acf-field','',0),(2326,4,'2021-03-22 19:47:19','2021-03-22 23:47:19','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:0:\"\";s:12:\"button_label\";s:0:\"\";}','Keywords','keywords','publish','closed','closed','','field_60592b6e2d223','','','2021-03-22 19:47:19','2021-03-22 23:47:19','',2321,'http://translucentcomputing.com/?post_type=acf-field&p=2326',4,'acf-field','',0),(2327,4,'2021-03-22 19:47:20','2021-03-22 23:47:20','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Keyword','keyword','publish','closed','closed','','field_60592b6e2d224','','','2021-03-22 19:47:20','2021-03-22 23:47:20','',2326,'http://translucentcomputing.com/?post_type=acf-field&p=2327',0,'acf-field','',0),(2328,4,'2021-03-22 19:47:20','2021-03-22 23:47:20','a:7:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Section 3','section_3','publish','closed','closed','','field_60592b762d225','','','2021-03-22 19:47:20','2021-03-22 23:47:20','',2309,'http://translucentcomputing.com/?post_type=acf-field&p=2328',3,'acf-field','',0),(2329,4,'2021-03-22 19:47:20','2021-03-22 23:47:20','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_60592c5d2d23a','','','2021-03-22 19:47:20','2021-03-22 23:47:20','',2328,'http://translucentcomputing.com/?post_type=acf-field&p=2329',0,'acf-field','',0),(2330,4,'2021-03-22 19:47:20','2021-03-22 23:47:20','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title','title','publish','closed','closed','','field_60592b762d226','','','2021-03-22 19:47:20','2021-03-22 23:47:20','',2328,'http://translucentcomputing.com/?post_type=acf-field&p=2330',1,'acf-field','',0),(2331,4,'2021-03-22 19:47:20','2021-03-22 23:47:20','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Subheading','subheading','publish','closed','closed','','field_60592b762d227','','','2021-03-22 19:47:20','2021-03-22 23:47:20','',2328,'http://translucentcomputing.com/?post_type=acf-field&p=2331',2,'acf-field','',0),(2332,4,'2021-03-22 19:47:20','2021-03-22 23:47:20','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Text','text','publish','closed','closed','','field_60592b762d228','','','2021-03-22 19:47:20','2021-03-22 23:47:20','',2328,'http://translucentcomputing.com/?post_type=acf-field&p=2332',3,'acf-field','',0),(2333,4,'2021-03-22 19:47:21','2021-03-22 23:47:21','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:0:\"\";s:12:\"button_label\";s:0:\"\";}','Keywords','keywords','publish','closed','closed','','field_60592b762d229','','','2021-03-22 19:47:21','2021-03-22 23:47:21','',2328,'http://translucentcomputing.com/?post_type=acf-field&p=2333',4,'acf-field','',0),(2334,4,'2021-03-22 19:47:21','2021-03-22 23:47:21','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Keyword','keyword','publish','closed','closed','','field_60592b762d22a','','','2021-03-22 19:47:21','2021-03-22 23:47:21','',2333,'http://translucentcomputing.com/?post_type=acf-field&p=2334',0,'acf-field','',0),(2335,4,'2021-03-22 19:47:21','2021-03-22 23:47:21','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','CTA Text','cta_text','publish','closed','closed','','field_60592bcc2d233','','','2021-03-22 19:47:21','2021-03-22 23:47:21','',2328,'http://translucentcomputing.com/?post_type=acf-field&p=2335',5,'acf-field','',0),(2336,4,'2021-03-22 19:47:21','2021-03-22 23:47:21','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','CTA link','cta_link','publish','closed','closed','','field_60592bd22d234','','','2021-03-22 19:47:21','2021-03-22 23:47:21','',2328,'http://translucentcomputing.com/?post_type=acf-field&p=2336',6,'acf-field','',0),(2337,4,'2021-03-22 19:47:21','2021-03-22 23:47:21','a:7:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Section 4','section_4','publish','closed','closed','','field_60592b882d22b','','','2021-03-22 19:47:21','2021-03-22 23:47:21','',2309,'http://translucentcomputing.com/?post_type=acf-field&p=2337',4,'acf-field','',0),(2338,4,'2021-03-22 19:47:21','2021-03-22 23:47:21','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_60592c722d23c','','','2021-03-22 19:47:21','2021-03-22 23:47:21','',2337,'http://translucentcomputing.com/?post_type=acf-field&p=2338',0,'acf-field','',0),(2339,4,'2021-03-22 19:47:21','2021-03-22 23:47:21','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title','title','publish','closed','closed','','field_60592b882d22c','','','2021-03-22 19:47:21','2021-03-22 23:47:21','',2337,'http://translucentcomputing.com/?post_type=acf-field&p=2339',1,'acf-field','',0),(2340,4,'2021-03-22 19:47:22','2021-03-22 23:47:22','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Subheading','subheading','publish','closed','closed','','field_60592b882d22d','','','2021-03-22 19:47:22','2021-03-22 23:47:22','',2337,'http://translucentcomputing.com/?post_type=acf-field&p=2340',2,'acf-field','',0),(2341,4,'2021-03-22 19:47:22','2021-03-22 23:47:22','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Text','text','publish','closed','closed','','field_60592b882d22e','','','2021-03-22 19:47:22','2021-03-22 23:47:22','',2337,'http://translucentcomputing.com/?post_type=acf-field&p=2341',3,'acf-field','',0),(2342,4,'2021-03-22 19:47:22','2021-03-22 23:47:22','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Keywords','keywords','publish','closed','closed','','field_60592b882d22f','','','2021-03-22 19:47:22','2021-03-22 23:47:22','',2337,'http://translucentcomputing.com/?post_type=acf-field&p=2342',4,'acf-field','',0),(2343,4,'2021-03-22 19:47:22','2021-03-22 23:47:22','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Keyword','keyword','publish','closed','closed','','field_60592b882d230','','','2021-03-22 19:47:22','2021-03-22 23:47:22','',2342,'http://translucentcomputing.com/?post_type=acf-field&p=2343',0,'acf-field','',0),(2345,4,'2021-03-22 21:19:12','2021-03-23 01:19:12','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:4:\"page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"1822\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','TEKStack AI','tekstack-ai','publish','closed','closed','','group_60594208e32fd','','','2021-03-22 21:49:41','2021-03-23 01:49:41','',0,'http://translucentcomputing.com/?p=2345',0,'acf-field-group','',0),(2346,4,'2021-03-22 21:19:04','2021-03-23 01:19:04','a:6:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";}','Section 1','section_1','publish','closed','closed','','field_60594208ec82e','','','2021-03-22 21:19:06','2021-03-23 01:19:06','',2345,'http://translucentcomputing.com/?post_type=acf-field&p=2346',0,'acf-field','',0),(2347,4,'2021-03-22 21:19:05','2021-03-23 01:19:05','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_605942092a128','','','2021-03-22 21:19:05','2021-03-23 01:19:05','',2346,'http://translucentcomputing.com/?post_type=acf-field&p=2347',0,'acf-field','',0),(2348,4,'2021-03-22 21:19:05','2021-03-23 01:19:05','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title','title','publish','closed','closed','','field_605942092a176','','','2021-03-22 21:19:05','2021-03-23 01:19:05','',2346,'http://translucentcomputing.com/?post_type=acf-field&p=2348',1,'acf-field','',0),(2349,4,'2021-03-22 21:19:05','2021-03-23 01:19:05','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Subheading','subheading','publish','closed','closed','','field_605942092a1c3','','','2021-03-22 21:19:05','2021-03-23 01:19:05','',2346,'http://translucentcomputing.com/?post_type=acf-field&p=2349',2,'acf-field','',0),(2350,4,'2021-03-22 21:19:05','2021-03-23 01:19:05','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Text','text','publish','closed','closed','','field_605942092a206','','','2021-03-22 21:19:05','2021-03-23 01:19:05','',2346,'http://translucentcomputing.com/?post_type=acf-field&p=2350',3,'acf-field','',0),(2351,4,'2021-03-22 21:19:05','2021-03-23 01:19:05','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:0:\"\";s:12:\"button_label\";s:0:\"\";}','Keywords','keywords','publish','closed','closed','','field_605942092a274','','','2021-03-22 21:19:06','2021-03-23 01:19:06','',2346,'http://translucentcomputing.com/?post_type=acf-field&p=2351',4,'acf-field','',0),(2352,4,'2021-03-22 21:19:05','2021-03-23 01:19:05','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Keyword','keyword','publish','closed','closed','','field_60594209f3e6d','','','2021-03-22 21:19:05','2021-03-23 01:19:05','',2351,'http://translucentcomputing.com/?post_type=acf-field&p=2352',0,'acf-field','',0),(2357,4,'2021-03-22 21:19:07','2021-03-23 01:19:07','a:6:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";}','Section 2','section_2','publish','closed','closed','','field_60594208ec8c9','','','2021-03-22 21:29:40','2021-03-23 01:29:40','',2345,'http://translucentcomputing.com/?post_type=acf-field&p=2357',1,'acf-field','',0),(2358,4,'2021-03-22 21:19:07','2021-03-23 01:19:07','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_6059420b73dfe','','','2021-03-22 21:19:07','2021-03-23 01:19:07','',2357,'http://translucentcomputing.com/?post_type=acf-field&p=2358',0,'acf-field','',0),(2359,4,'2021-03-22 21:19:07','2021-03-23 01:19:07','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title','title','publish','closed','closed','','field_6059420b73e74','','','2021-03-22 21:19:07','2021-03-23 01:19:07','',2357,'http://translucentcomputing.com/?post_type=acf-field&p=2359',1,'acf-field','',0),(2360,4,'2021-03-22 21:19:07','2021-03-23 01:19:07','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Subheading','subheading','publish','closed','closed','','field_6059420b73ee3','','','2021-03-22 21:19:07','2021-03-23 01:19:07','',2357,'http://translucentcomputing.com/?post_type=acf-field&p=2360',2,'acf-field','',0),(2361,4,'2021-03-22 21:19:07','2021-03-23 01:19:07','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Text','text','publish','closed','closed','','field_6059420b73f3c','','','2021-03-22 21:19:07','2021-03-23 01:19:07','',2357,'http://translucentcomputing.com/?post_type=acf-field&p=2361',3,'acf-field','',0),(2362,4,'2021-03-22 21:19:08','2021-03-23 01:19:08','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:0:\"\";s:12:\"button_label\";s:0:\"\";}','Keywords','keywords','publish','closed','closed','','field_6059420b73f90','','','2021-03-22 21:19:08','2021-03-23 01:19:08','',2357,'http://translucentcomputing.com/?post_type=acf-field&p=2362',4,'acf-field','',0),(2363,4,'2021-03-22 21:19:08','2021-03-23 01:19:08','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Keyword','keyword','publish','closed','closed','','field_6059420c41697','','','2021-03-22 21:19:08','2021-03-23 01:19:08','',2362,'http://translucentcomputing.com/?post_type=acf-field&p=2363',0,'acf-field','',0),(2364,4,'2021-03-22 21:19:08','2021-03-23 01:19:08','a:6:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";}','Section 3','section_3','publish','closed','closed','','field_60594208ec909','','','2021-03-22 21:29:40','2021-03-23 01:29:40','',2345,'http://translucentcomputing.com/?post_type=acf-field&p=2364',2,'acf-field','',0),(2365,4,'2021-03-22 21:19:08','2021-03-23 01:19:08','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_6059420ce2747','','','2021-03-22 21:19:08','2021-03-23 01:19:08','',2364,'http://translucentcomputing.com/?post_type=acf-field&p=2365',0,'acf-field','',0),(2366,4,'2021-03-22 21:19:09','2021-03-23 01:19:09','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title','title','publish','closed','closed','','field_6059420ce279c','','','2021-03-22 21:19:09','2021-03-23 01:19:09','',2364,'http://translucentcomputing.com/?post_type=acf-field&p=2366',1,'acf-field','',0),(2367,4,'2021-03-22 21:19:09','2021-03-23 01:19:09','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Subheading','subheading','publish','closed','closed','','field_6059420ce27ef','','','2021-03-22 21:19:09','2021-03-23 01:19:09','',2364,'http://translucentcomputing.com/?post_type=acf-field&p=2367',2,'acf-field','',0),(2368,4,'2021-03-22 21:19:09','2021-03-23 01:19:09','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Text','text','publish','closed','closed','','field_6059420ce2832','','','2021-03-22 21:19:09','2021-03-23 01:19:09','',2364,'http://translucentcomputing.com/?post_type=acf-field&p=2368',3,'acf-field','',0),(2369,4,'2021-03-22 21:19:09','2021-03-23 01:19:09','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:0:\"\";s:12:\"button_label\";s:0:\"\";}','Keywords','keywords','publish','closed','closed','','field_6059420ce2874','','','2021-03-22 21:19:09','2021-03-23 01:19:09','',2364,'http://translucentcomputing.com/?post_type=acf-field&p=2369',4,'acf-field','',0),(2370,4,'2021-03-22 21:19:09','2021-03-23 01:19:09','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Keyword','keyword','publish','closed','closed','','field_6059420db2a80','','','2021-03-22 21:19:09','2021-03-23 01:19:09','',2369,'http://translucentcomputing.com/?post_type=acf-field&p=2370',0,'acf-field','',0),(2373,4,'2021-03-22 21:19:10','2021-03-23 01:19:10','a:6:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";}','Section 4','section_4','publish','closed','closed','','field_60594208ec95c','','','2021-03-22 21:29:40','2021-03-23 01:29:40','',2345,'http://translucentcomputing.com/?post_type=acf-field&p=2373',3,'acf-field','',0),(2374,4,'2021-03-22 21:19:10','2021-03-23 01:19:10','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_6059420ec7401','','','2021-03-22 21:19:10','2021-03-23 01:19:10','',2373,'http://translucentcomputing.com/?post_type=acf-field&p=2374',0,'acf-field','',0),(2375,4,'2021-03-22 21:19:10','2021-03-23 01:19:10','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title','title','publish','closed','closed','','field_6059420ec7454','','','2021-03-22 21:19:10','2021-03-23 01:19:10','',2373,'http://translucentcomputing.com/?post_type=acf-field&p=2375',1,'acf-field','',0),(2376,4,'2021-03-22 21:19:11','2021-03-23 01:19:11','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Subheading','subheading','publish','closed','closed','','field_6059420ec74a0','','','2021-03-22 21:19:11','2021-03-23 01:19:11','',2373,'http://translucentcomputing.com/?post_type=acf-field&p=2376',2,'acf-field','',0),(2377,4,'2021-03-22 21:19:11','2021-03-23 01:19:11','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Text','text','publish','closed','closed','','field_6059420ec74ee','','','2021-03-22 21:19:11','2021-03-23 01:19:11','',2373,'http://translucentcomputing.com/?post_type=acf-field&p=2377',3,'acf-field','',0),(2378,4,'2021-03-22 21:19:11','2021-03-23 01:19:11','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Keywords','keywords','publish','closed','closed','','field_6059420ec752d','','','2021-03-22 21:19:11','2021-03-23 01:19:11','',2373,'http://translucentcomputing.com/?post_type=acf-field&p=2378',4,'acf-field','',0),(2379,4,'2021-03-22 21:19:11','2021-03-23 01:19:11','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Keyword','keyword','publish','closed','closed','','field_6059420fa2108','','','2021-03-22 21:19:11','2021-03-23 01:19:11','',2378,'http://translucentcomputing.com/?post_type=acf-field&p=2379',0,'acf-field','',0),(2380,4,'2021-03-22 21:20:17','2021-03-23 01:20:17','a:7:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Section 5','section_5','publish','closed','closed','','field_60594243d91ef','','','2021-03-22 21:29:40','2021-03-23 01:29:40','',2345,'http://translucentcomputing.com/?post_type=acf-field&p=2380',4,'acf-field','',0),(2381,4,'2021-03-22 21:20:17','2021-03-23 01:20:17','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_60594243d91f0','','','2021-03-22 21:49:41','2021-03-23 01:49:41','',2380,'http://translucentcomputing.com/?post_type=acf-field&p=2381',0,'acf-field','',0),(2382,4,'2021-03-22 21:20:17','2021-03-23 01:20:17','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title','title','publish','closed','closed','','field_60594243d91f1','','','2021-03-22 21:20:17','2021-03-23 01:20:17','',2380,'http://translucentcomputing.com/?post_type=acf-field&p=2382',1,'acf-field','',0),(2383,4,'2021-03-22 21:20:18','2021-03-23 01:20:18','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Subheading','subheading','publish','closed','closed','','field_60594243d91f2','','','2021-03-22 21:20:18','2021-03-23 01:20:18','',2380,'http://translucentcomputing.com/?post_type=acf-field&p=2383',2,'acf-field','',0),(2384,4,'2021-03-22 21:20:18','2021-03-23 01:20:18','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Text','text','publish','closed','closed','','field_60594243d91f3','','','2021-03-22 21:20:18','2021-03-23 01:20:18','',2380,'http://translucentcomputing.com/?post_type=acf-field&p=2384',3,'acf-field','',0),(2385,4,'2021-03-22 21:20:18','2021-03-23 01:20:18','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:0:\"\";s:12:\"button_label\";s:0:\"\";}','Keywords','keywords','publish','closed','closed','','field_60594243d91f4','','','2021-03-22 21:20:18','2021-03-23 01:20:18','',2380,'http://translucentcomputing.com/?post_type=acf-field&p=2385',4,'acf-field','',0),(2386,4,'2021-03-22 21:20:18','2021-03-23 01:20:18','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Keyword','keyword','publish','closed','closed','','field_60594243d91f5','','','2021-03-22 21:20:18','2021-03-23 01:20:18','',2385,'http://translucentcomputing.com/?post_type=acf-field&p=2386',0,'acf-field','',0),(2387,4,'2021-03-22 21:20:18','2021-03-23 01:20:18','a:7:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Section 6','section_6','publish','closed','closed','','field_60594249d91f6','','','2021-03-22 21:29:40','2021-03-23 01:29:40','',2345,'http://translucentcomputing.com/?post_type=acf-field&p=2387',5,'acf-field','',0),(2388,4,'2021-03-22 21:20:18','2021-03-23 01:20:18','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_60594249d91f7','','','2021-03-22 21:20:18','2021-03-23 01:20:18','',2387,'http://translucentcomputing.com/?post_type=acf-field&p=2388',0,'acf-field','',0),(2389,4,'2021-03-22 21:20:19','2021-03-23 01:20:19','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title','title','publish','closed','closed','','field_60594249d91f8','','','2021-03-22 21:20:19','2021-03-23 01:20:19','',2387,'http://translucentcomputing.com/?post_type=acf-field&p=2389',1,'acf-field','',0),(2390,4,'2021-03-22 21:20:19','2021-03-23 01:20:19','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Subheading','subheading','publish','closed','closed','','field_60594249d91f9','','','2021-03-22 21:20:19','2021-03-23 01:20:19','',2387,'http://translucentcomputing.com/?post_type=acf-field&p=2390',2,'acf-field','',0),(2391,4,'2021-03-22 21:20:19','2021-03-23 01:20:19','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Text','text','publish','closed','closed','','field_60594249d91fa','','','2021-03-22 21:20:19','2021-03-23 01:20:19','',2387,'http://translucentcomputing.com/?post_type=acf-field&p=2391',3,'acf-field','',0),(2392,4,'2021-03-22 21:20:19','2021-03-23 01:20:19','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Keywords','keywords','publish','closed','closed','','field_60594249d91fb','','','2021-03-22 21:20:19','2021-03-23 01:20:19','',2387,'http://translucentcomputing.com/?post_type=acf-field&p=2392',4,'acf-field','',0),(2393,4,'2021-03-22 21:20:19','2021-03-23 01:20:19','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Keyword','keyword','publish','closed','closed','','field_60594249d91fc','','','2021-03-22 21:20:19','2021-03-23 01:20:19','',2392,'http://translucentcomputing.com/?post_type=acf-field&p=2393',0,'acf-field','',0),(2400,4,'2021-03-22 22:06:33','2021-03-23 02:06:33','','watermark-1','','inherit','open','closed','','watermark-1','','','2021-10-06 21:55:47','2021-10-07 01:55:47','',0,'https://translucentcomputing.com/wp-content/uploads/2021/03/watermark-1.png',0,'attachment','image/png',0),(2401,4,'2021-03-22 22:10:32','2021-03-23 02:10:32','','watermark-2','','inherit','open','closed','','watermark-2','','','2021-10-06 21:55:25','2021-10-07 01:55:25','',0,'https://translucentcomputing.com/wp-content/uploads/2021/03/watermark-2.png',0,'attachment','image/png',0),(2402,4,'2021-03-22 22:13:11','2021-03-23 02:13:11','','watermark-3','','inherit','open','closed','','watermark-3','','','2021-10-06 21:55:31','2021-10-07 01:55:31','',0,'https://translucentcomputing.com/wp-content/uploads/2021/03/watermark-3.png',0,'attachment','image/png',0),(2403,4,'2021-03-22 22:16:00','2021-03-23 02:16:00','','watermark-4','','inherit','open','closed','','watermark-4','','','2021-10-06 21:54:42','2021-10-07 01:54:42','',0,'https://translucentcomputing.com/wp-content/uploads/2021/03/watermark-4.png',0,'attachment','image/png',0),(2404,4,'2021-03-23 07:44:36','2021-03-23 11:44:36','a:7:{s:8:\"location\";a:2:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:4:\"page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"1924\";}}i:1;a:1:{i:0;a:3:{s:5:\"param\";s:4:\"page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"2953\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','Home 2021','home-2021','publish','closed','closed','','group_6059d051dbda5','','','2021-06-02 20:08:58','2021-06-03 00:08:58','',0,'http://translucentcomputing.com/?post_type=acf-field-group&p=2404',0,'acf-field-group','',0),(2405,4,'2021-03-23 07:44:36','2021-03-23 11:44:36','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:0:\"\";}','Banners','banners','publish','closed','closed','','field_6059d073ba0ba','','','2021-03-23 07:47:49','2021-03-23 11:47:49','',2404,'http://translucentcomputing.com/?post_type=acf-field&p=2405',0,'acf-field','',0),(2406,4,'2021-03-23 07:44:36','2021-03-23 11:44:36','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Banner title','banner_title','publish','closed','closed','','field_6059d268ba0bb','','','2021-03-23 07:44:36','2021-03-23 11:44:36','',2405,'http://translucentcomputing.com/?post_type=acf-field&p=2406',0,'acf-field','',0),(2407,4,'2021-03-23 07:44:36','2021-03-23 11:44:36','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Banner subheading','banner_subheading','publish','closed','closed','','field_6059d289ba0bc','','','2021-03-23 07:44:36','2021-03-23 11:44:36','',2405,'http://translucentcomputing.com/?post_type=acf-field&p=2407',1,'acf-field','',0),(2408,4,'2021-03-23 07:44:37','2021-03-23 11:44:37','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Banner Bold','banner_bold','publish','closed','closed','','field_6059d293ba0bd','','','2021-03-23 07:44:37','2021-03-23 11:44:37','',2405,'http://translucentcomputing.com/?post_type=acf-field&p=2408',2,'acf-field','',0),(2409,4,'2021-03-23 07:44:37','2021-03-23 11:44:37','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Banner text','banner_text','publish','closed','closed','','field_6059d2a2ba0be','','','2021-03-23 07:44:37','2021-03-23 11:44:37','',2405,'http://translucentcomputing.com/?post_type=acf-field&p=2409',3,'acf-field','',0),(2410,4,'2021-03-23 07:44:37','2021-03-23 11:44:37','a:10:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Video background?','video_background','publish','closed','closed','','field_6059d2b3ba0bf','','','2021-03-23 07:44:37','2021-03-23 11:44:37','',2405,'http://translucentcomputing.com/?post_type=acf-field&p=2410',4,'acf-field','',0),(2411,4,'2021-03-23 07:44:37','2021-03-23 11:44:37','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_6059d2b3ba0bf\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:1:\"1\";}}}s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Video link','video_link','publish','closed','closed','','field_6059d2ccba0c0','','','2021-03-23 07:44:37','2021-03-23 11:44:37','',2405,'http://translucentcomputing.com/?post_type=acf-field&p=2411',5,'acf-field','',0),(2412,4,'2021-03-23 07:44:37','2021-03-23 11:44:37','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Background image','background_image','publish','closed','closed','','field_6059d2e1ba0c1','','','2021-06-02 20:08:57','2021-06-03 00:08:57','',2405,'http://translucentcomputing.com/?post_type=acf-field&p=2412',6,'acf-field','',0),(2413,4,'2021-03-23 07:44:37','2021-03-23 11:44:37','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Button text','button_text','publish','closed','closed','','field_6059d309ba0c2','','','2021-03-23 07:44:37','2021-03-23 11:44:37','',2405,'http://translucentcomputing.com/?post_type=acf-field&p=2413',7,'acf-field','',0),(2414,4,'2021-03-23 07:44:38','2021-03-23 11:44:38','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Button link','button_link','publish','closed','closed','','field_6059d314ba0c3','','','2021-03-23 07:44:38','2021-03-23 11:44:38','',2405,'http://translucentcomputing.com/?post_type=acf-field&p=2414',8,'acf-field','',0),(2415,4,'2021-03-23 07:44:38','2021-03-23 11:44:38','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Blog section title','blog_section_title','publish','closed','closed','','field_6059d32dba0c4','','','2021-03-23 07:44:38','2021-03-23 11:44:38','',2404,'http://translucentcomputing.com/?post_type=acf-field&p=2415',1,'acf-field','',0),(2416,4,'2021-03-23 07:44:38','2021-03-23 11:44:38','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Inform and Learn','inform_and_learn','publish','closed','closed','','field_6059d34dba0c5','','','2021-03-23 07:44:38','2021-03-23 11:44:38','',2404,'http://translucentcomputing.com/?post_type=acf-field&p=2416',2,'acf-field','',0),(2417,4,'2021-03-23 07:44:38','2021-03-23 11:44:38','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Inception and Discovery','inception_and_discovery','publish','closed','closed','','field_6059d361ba0c6','','','2021-04-11 20:29:23','2021-04-12 00:29:23','',2404,'http://translucentcomputing.com/?post_type=acf-field&p=2417',3,'acf-field','',0),(2418,4,'2021-03-23 07:44:38','2021-03-23 11:44:38','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Digital Transformation','digital_transformation','publish','closed','closed','','field_6059d375ba0c7','','','2021-03-23 07:44:38','2021-03-23 11:44:38','',2404,'http://translucentcomputing.com/?post_type=acf-field&p=2418',4,'acf-field','',0),(2419,4,'2021-03-23 07:44:38','2021-03-23 11:44:38','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Services - Microservices','services_microservices','publish','closed','closed','','field_6059d397ba0c8','','','2021-03-23 07:44:38','2021-03-23 11:44:38','',2404,'http://translucentcomputing.com/?post_type=acf-field&p=2419',5,'acf-field','',0),(2420,4,'2021-03-23 07:44:38','2021-03-23 11:44:38','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Services - Microservices Image','services_microservices_image','publish','closed','closed','','field_6059d3b9ba0c9','','','2021-03-23 07:44:38','2021-03-23 11:44:38','',2404,'http://translucentcomputing.com/?post_type=acf-field&p=2420',6,'acf-field','',0),(2421,4,'2021-03-23 07:44:39','2021-03-23 11:44:39','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Services - Machine Learning','services_machine','publish','closed','closed','','field_6059d3ccba0ca','','','2021-03-23 07:44:39','2021-03-23 11:44:39','',2404,'http://translucentcomputing.com/?post_type=acf-field&p=2421',7,'acf-field','',0),(2422,4,'2021-03-23 07:44:39','2021-03-23 11:44:39','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Services - Machine Learning Image','services_machine_image','publish','closed','closed','','field_6059d3e2ba0cb','','','2021-03-23 07:44:39','2021-03-23 11:44:39','',2404,'http://translucentcomputing.com/?post_type=acf-field&p=2422',8,'acf-field','',0),(2423,4,'2021-03-23 07:44:39','2021-03-23 11:44:39','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Services - DevOps','services_devops','publish','closed','closed','','field_6059d402ba0cc','','','2021-03-23 07:44:39','2021-03-23 11:44:39','',2404,'http://translucentcomputing.com/?post_type=acf-field&p=2423',9,'acf-field','',0),(2424,4,'2021-03-23 07:44:39','2021-03-23 11:44:39','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Services - DevOps Image','services_devops_image','publish','closed','closed','','field_6059d412ba0cd','','','2021-03-23 07:44:39','2021-03-23 11:44:39','',2404,'http://translucentcomputing.com/?post_type=acf-field&p=2424',10,'acf-field','',0),(2430,4,'2021-03-23 07:44:40','2021-03-23 11:44:40','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Clients','clients','publish','closed','closed','','field_6059d489ba0d3','','','2021-03-23 08:51:53','2021-03-23 12:51:53','',2404,'http://translucentcomputing.com/?post_type=acf-field&p=2430',15,'acf-field','',0),(2431,4,'2021-03-23 07:44:40','2021-03-23 11:44:40','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_6059d493ba0d4','','','2021-03-23 07:44:40','2021-03-23 11:44:40','',2430,'http://translucentcomputing.com/?post_type=acf-field&p=2431',0,'acf-field','',0),(2433,4,'2021-03-23 07:51:52','2021-03-23 11:51:52','','human-devops','','inherit','open','closed','','human-devops','','','2021-09-03 10:56:38','2021-09-03 14:56:38','',1924,'https://translucentcomputing.com/wp-content/uploads/2021/03/human-devops.png',0,'attachment','image/png',0),(2434,4,'2021-03-23 07:51:54','2021-03-23 11:51:54','','human-microservices','','inherit','open','closed','','human-microservices','','','2021-09-03 10:56:25','2021-09-03 14:56:25','',1924,'https://translucentcomputing.com/wp-content/uploads/2021/03/human-microservices.png',0,'attachment','image/png',0),(2435,4,'2021-03-23 07:51:56','2021-03-23 11:51:56','','human-ml','','inherit','open','closed','','human-ml','','','2021-09-03 10:56:09','2021-09-03 14:56:09','',1924,'https://translucentcomputing.com/wp-content/uploads/2021/03/human-ml.png',0,'attachment','image/png',0),(2437,4,'2021-03-23 08:50:03','2021-03-23 12:50:03','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Case study title','case_title','publish','closed','closed','','field_6059e3a6eec00','','','2021-03-23 08:51:52','2021-03-23 12:51:52','',2404,'http://translucentcomputing.com/?post_type=acf-field&p=2437',11,'acf-field','',0),(2438,4,'2021-03-23 08:50:03','2021-03-23 12:50:03','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Case Study description','case_description','publish','closed','closed','','field_6059e3bdeec01','','','2021-03-23 08:51:53','2021-03-23 12:51:53','',2404,'http://translucentcomputing.com/?post_type=acf-field&p=2438',12,'acf-field','',0),(2439,4,'2021-03-23 08:50:03','2021-03-23 12:50:03','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Case study image','case_image','publish','closed','closed','','field_6059e3d7eec02','','','2021-03-23 08:51:53','2021-03-23 12:51:53','',2404,'http://translucentcomputing.com/?post_type=acf-field&p=2439',13,'acf-field','',0),(2440,4,'2021-03-23 08:50:03','2021-03-23 12:50:03','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Case study link','case_link','publish','closed','closed','','field_6059e3e6eec03','','','2021-03-23 08:51:53','2021-03-23 12:51:53','',2404,'http://translucentcomputing.com/?post_type=acf-field&p=2440',14,'acf-field','',0),(2452,4,'2021-03-25 13:32:53','2021-03-25 17:32:53','','0012_infographic_rob_1170x500px-01-wo-text-v2','','inherit','open','closed','','0012_infographic_rob_1170x500px-01-wo-text-v2','','','2021-09-03 10:55:45','2021-09-03 14:55:45','',0,'https://www.translucentcomputing.com/wp-content/uploads/2021/03/0012_infographic_rob_1170x500px-01-wo-text-v2.png',0,'attachment','image/png',0),(2454,4,'2021-03-25 16:46:05','2021-03-25 20:46:05','','0004_banner_header_datadriven','','inherit','open','closed','','0004_banner_header_datadriven','','','2021-10-06 21:54:05','2021-10-07 01:54:05','',2249,'https://www.translucentcomputing.com/wp-content/uploads/2021/03/0004_banner_header_datadriven.jpg',0,'attachment','image/jpeg',0),(2463,4,'2021-04-06 12:07:57','2021-04-06 16:07:57','\n

Translucent Computing is delighted to announce that we have become a Kubernetes Certified Service Provider (KCSP).

\n\n\n\n

The KCSP program is a pre-qualified tier of vetted service providers with extensive expertise in helping businesses with Kubernetes adoption. For organisations starting out on their Kubernetes journey, KCSP partners provide funding, consultancy, technical services, and training.

\n\n\n\n

After successfully completing the Kubernetes Certified Service Provider (KCSP) program co-sponsored by the Cloud Native Computing Foundation (CNCF), Translucent Computing is now officially offering Kubernetes Professional Services. Our cloud native teams are experts in Docker, Kubernetes, Microservices, and Distributed Systems. 

\n\n\n\n

The Translucent team has already built a robust service offering across Kubernetes, and successfully delivered Kubernetes engagements to a wide range of customers across industries and continents. 

\n\n\n\n

We have been inspiring companies to bring creativity into achieving strategic market results, optimize the potential of cloud technologies, and accelerate growth by leveraging Kubernetes’ global scope and ecosystem.

\n\n\n\n

Translucent can be your partner in bringing the right container capabilities and architectures to your business. We pride ourselves in excelling in building, deploying and scaling modern applications in the Cloud, to support your company in embracing innovations, and improving speed and agility while retaining autonomy and good governance.

\n\n\n\n

Our new Kubernetes Service page can be found here: Kubernetes Professional Services.

\n\n\n\n

Our team of engineers has worked on all the major cloud platforms on projects ranging from cloud native applications, chatbots, natural language processing, machine learning all built on top of Kubernetes. Our tools of choice are supported by open source and production-ready technology stack: TEKStack AI.

\n','Translucent Computing announces it\'s one of Canada\'s only Kubernetes Certified Providers (KCSP)','','publish','open','open','','translucent-computing-announces-its-one-of-canadas-only-kubernetes-certified-providers-kcsp','','','2021-04-06 13:42:51','2021-04-06 17:42:51','',0,'http://translucentcomputing.com/?p=2463',0,'post','',0),(2464,9,'2021-04-05 14:25:44','2021-04-05 18:25:44','','Kubernetes service page','','inherit','open','closed','','kubernetes-services','','','2021-09-03 10:54:19','2021-09-03 14:54:19','',2463,'https://translucentcomputing.com/wp-content/uploads/2021/04/Kubernetes-services.png',0,'attachment','image/png',0),(2465,9,'2021-04-05 14:27:26','2021-04-05 18:27:26','
Kubernetes Professional Services
','','','publish','closed','closed','','7c8188b4916b44d5298b04e1ed227f2b','','','2021-04-05 14:27:26','2021-04-05 18:27:26','',0,'https://translucentcomputing.com/2021/04/7c8188b4916b44d5298b04e1ed227f2b/',0,'oembed_cache','',0),(2466,9,'2021-04-05 14:27:26','2021-04-05 18:27:26','
TEKStack AI
','','','publish','closed','closed','','affa89a9a3963d2ab1cc6864f62f4bf9','','','2021-04-05 14:27:26','2021-04-05 18:27:26','',0,'https://translucentcomputing.com/2021/04/affa89a9a3963d2ab1cc6864f62f4bf9/',0,'oembed_cache','',0),(2468,9,'2021-04-05 14:33:57','2021-04-05 18:33:57','','News release kubernetes service page','','inherit','open','closed','','news-release-kubernetes-service-page','','','2021-09-03 10:54:03','2021-09-03 14:54:03','',2463,'https://translucentcomputing.com/wp-content/uploads/2021/04/News-release-kubernetes-service-page.png',0,'attachment','image/png',0),(2470,6,'2021-04-07 14:09:05','2021-04-07 18:09:05','\n

This week, Translucent Computing has completed the “Bias in AI\'\' course, co-sponsored by the Vector Institute and NRC IRAP. This multi-week course offered a deep dive into a range of fairness and bias problems in AI applications, providing a great way to learn and discuss existing methodologies for addressing pressing issues related to bias in artificial intelligence. The course culminated in a capstone presentation where our team showcased our point of view on how to address growing AI bias in healthcare diagnostic imaging research.

\n\n\n\n

\"The Bias in AI course was an amazing experience for the entire Translucent Computing team who participated over the last 6 weeks. We touched on a number of issues related to bias that also pertain to our business, and are excited to improve our products and services with the necessary AI bias mitigation strategies that are becoming increasingly important both now and in the future.\" - Michael Lagowski, VP Strategy and Product Development.

\n\n\n\n

As Translucent continues to grow and develop their AI and machine learning capabilities, we are working towards becoming a part of the AI leadership movement in Canada, where one of the goals is to develop standardization and governance practices towards more equal and egalitarian AI solutions. Keeping in mind the different AI bias challenges as we develop additional enterprise-level AI capabilities will be the big focus for our team going into 2021.

\n\n\n\n

For their participation in the program, Patryk Golabek, Michael Lagowski, and Sandro Coelho each received a certificate of completion:

\n\n\n\n
\"\"
\n','Translucent Successfully completed the \"Bias in AI\" course by the Vector Institute','','publish','open','open','','translucent-successfully-completed-the-bias-in-ai-course-by-the-vector-institute','','','2021-04-07 14:11:44','2021-04-07 18:11:44','',0,'http://translucentcomputing.com/?p=2470',0,'post','',0),(2473,9,'2021-04-05 15:29:01','2021-04-05 19:29:01','','AMY_NRC-IRAP_2-1200x675-1','','inherit','open','closed','','amy_nrc-irap_2-1200x675-1','','','2021-09-03 10:53:50','2021-09-03 14:53:50','',2470,'https://translucentcomputing.com/wp-content/uploads/2021/04/AMY_NRC-IRAP_2-1200x675-1.jpg',0,'attachment','image/jpeg',0),(2477,9,'2021-04-05 15:37:28','2021-04-05 19:37:28','','Bias in AI Course','','inherit','open','closed','','bias-in-ai-course','','','2021-04-05 15:37:44','2021-04-05 19:37:44','',2470,'https://translucentcomputing.com/wp-content/uploads/2021/04/Bias-in-AI-Course.png',0,'attachment','image/png',0),(2478,9,'2021-04-05 16:10:20','2021-04-05 20:10:20','','image-11','','inherit','open','closed','','image-11','','','2021-09-03 10:53:10','2021-09-03 14:53:10','',2470,'https://translucentcomputing.com/wp-content/uploads/2021/04/image-11.png',0,'attachment','image/png',0),(2481,9,'2021-04-05 16:29:26','2021-04-05 20:29:26','','0011_new_jakub_blog_banners_Bias_in_AI-CERTIFICATE','','inherit','open','closed','','0011_new_jakub_blog_banners_bias_in_ai-certificate','','','2021-09-03 10:52:59','2021-09-03 14:52:59','',2470,'https://translucentcomputing.com/wp-content/uploads/2021/04/0011_new_jakub_blog_banners_Bias_in_AI-CERTIFICATE.png',0,'attachment','image/png',0),(2508,4,'2021-04-05 18:02:21','2021-04-05 22:02:21','','0013_tc_WEBSITE_assets_devops_consulting_banner_1440x368px','','inherit','open','closed','','0013_tc_website_assets_devops_consulting_banner_1440x368px','','','2021-09-03 10:52:30','2021-09-03 14:52:30','',0,'https://www.translucentcomputing.com/wp-content/uploads/2021/04/0013_tc_WEBSITE_assets_devops_consulting_banner_1440x368px.png',0,'attachment','image/png',0),(2510,4,'2021-04-05 18:10:05','2021-04-05 22:10:05','','0003_rob_banner_blog_multicloud_1200x628px_v4','','inherit','open','closed','','0003_rob_banner_blog_multicloud_1200x628px_v4','','','2021-09-03 10:52:05','2021-09-03 14:52:05','',0,'https://www.translucentcomputing.com/wp-content/uploads/2021/04/0003_rob_banner_blog_multicloud_1200x628px_v4.png',0,'attachment','image/png',0),(2512,4,'2021-04-05 18:12:37','2021-04-05 22:12:37','','0003_rob_banner_blog_multicloud_1200x628px_v5','','inherit','open','closed','','0003_rob_banner_blog_multicloud_1200x628px_v5','','','2021-09-03 10:51:41','2021-09-03 14:51:41','',0,'https://www.translucentcomputing.com/wp-content/uploads/2021/04/0003_rob_banner_blog_multicloud_1200x628px_v5.png',0,'attachment','image/png',0),(2518,4,'2021-10-22 08:22:57','2021-04-06 21:31:58',' ','','','publish','closed','closed','','2518','','','2021-10-22 08:22:57','2021-10-22 12:22:57','',0,'http://www.translucentcomputing.com/?p=2518',2,'nav_menu_item','',0),(2526,4,'2021-04-07 19:51:15','2021-04-07 23:51:15','','Client Testimonials Include - Page ID 2526','','publish','closed','closed','','cloud-native-devops-long-bn','','','2022-05-11 13:56:30','2022-05-11 17:56:30','',0,'http://translucentcomputing.com/?page_id=2526',0,'page','',0),(2528,4,'2021-04-07 20:42:14','2021-04-08 00:42:14','','top-bg','','inherit','open','closed','','top-bg','','','2021-09-03 10:51:20','2021-09-03 14:51:20','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/top-bg.jpg',0,'attachment','image/jpeg',0),(2530,4,'2021-04-07 21:02:24','2021-04-08 01:02:24','','top-girl','','inherit','open','closed','','top-girl','','','2021-09-03 10:51:06','2021-09-03 14:51:06','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/top-girl.png',0,'attachment','image/png',0),(2531,4,'2021-04-07 21:30:25','2021-04-08 01:30:25','','t-bg','','inherit','open','closed','','t-bg','','','2021-09-03 10:50:55','2021-09-03 14:50:55','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/t-bg.png',0,'attachment','image/png',0),(2532,4,'2021-04-07 21:32:05','2021-04-08 01:32:05','','t-icon','','inherit','open','closed','','t-icon','','','2021-09-03 10:50:22','2021-09-03 14:50:22','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/t-icon.png',0,'attachment','image/png',0),(2534,4,'2021-04-08 19:10:38','2021-04-08 23:10:38','','t-bg-2','','inherit','open','closed','','t-bg-2','','','2021-09-03 10:50:06','2021-09-03 14:50:06','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/t-bg-2.png',0,'attachment','image/png',0),(2535,4,'2021-04-08 19:24:29','2021-04-08 23:24:29','','mac-canadian','','inherit','open','closed','','mac-canadian','','','2021-10-06 21:53:02','2021-10-07 01:53:02','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/mac-canadian.png',0,'attachment','image/png',0),(2537,4,'2021-04-09 22:47:06','2021-04-10 02:47:06','','banner-1','','inherit','open','closed','','banner-1','','','2021-09-03 10:49:27','2021-09-03 14:49:27','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/banner-1.jpg',0,'attachment','image/jpeg',0),(2538,4,'2021-04-09 22:47:07','2021-04-10 02:47:07','','banner-2','','inherit','open','closed','','banner-2','','','2021-09-03 10:49:10','2021-09-03 14:49:10','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/banner-2.jpg',0,'attachment','image/jpeg',0),(2539,4,'2021-04-09 22:47:08','2021-04-10 02:47:08','','banner-3','','inherit','open','closed','','banner-3','','','2021-09-03 10:49:06','2021-09-03 14:49:06','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/banner-3.jpg',0,'attachment','image/jpeg',0),(2543,4,'2021-04-11 10:58:57','2021-04-11 14:58:57','','steps','','inherit','open','closed','','steps','','','2021-10-06 21:52:53','2021-10-07 01:52:53','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/04/steps.png',0,'attachment','image/png',0),(2545,4,'2021-04-11 20:20:59','2021-04-12 00:20:59','','top-bg-2','','inherit','open','closed','','top-bg-2','','','2021-10-06 21:52:47','2021-10-07 01:52:47','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/top-bg-2.jpg',0,'attachment','image/jpeg',0),(2546,4,'2021-04-11 20:47:23','2021-04-12 00:47:23','','picture','','inherit','open','closed','','picture','','','2021-10-06 21:52:42','2021-10-07 01:52:42','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/04/picture.jpg',0,'attachment','image/jpeg',0),(2548,4,'2021-04-13 08:11:41','2021-04-13 12:11:41','','call-icon','','inherit','open','closed','','call-icon','','','2021-10-06 21:52:07','2021-10-07 01:52:07','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/call-icon.png',0,'attachment','image/png',0),(2549,4,'2021-04-13 08:15:56','2021-04-13 12:15:56','','footer-services','','inherit','open','closed','','footer-services','','','2021-09-03 10:46:59','2021-09-03 14:46:59','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/footer-services.png',0,'attachment','image/png',0),(2552,4,'2021-04-13 08:59:03','2021-04-13 12:59:03','','bd-1','','inherit','open','closed','','bd-1','','','2021-09-03 10:46:34','2021-09-03 14:46:34','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/bd-1.png',0,'attachment','image/png',0),(2555,4,'2021-04-14 20:47:52','2021-04-15 00:47:52','
\r\n
\r\nFirst Name*\r\n[text* first-name class:form-contact placeholder \"John\"]\r\n
\r\n
\r\nLast Name*\r\n[text* last-name class:form-contact placeholder \"Doe\"]\r\n
\r\n
\r\nEmail*\r\n[email* email class:form-contact placeholder \"john.doe@example.com\"]\r\n
\r\n
\r\nPhone*\r\n[tel* phone class:form-contact placeholder \"555-555\"]\r\n
\r\n
\r\nYour Company Name*\r\n[text* company class:form-contact placeholder \"Translucent\"]\r\n
\r\n
\r\nHow Can We Help You?\r\n[textarea message class:form-contact placeholder \"Message\"]\r\n
\r\n
\r\n[submit class:form-btn \"Let\'s grow together\"]\r\n
\r\n
\r\nWe Treat Your Business like our Own\r\n
\r\n
\n1\nDEV SERVER - TC Form Submissions: From Translucent Landing Page Bottom Contact Form\nresults@translucentcomputing.com\nresults@translucentcomputing.com, robert@translucentcomputing.com, bsankar@translucentcomputing.com\nFrom: [first-name] [last-name] <[email]>\r\nPhone: [phone]\r\nCompany: [company]\r\n\r\nMessage: [message]\nReply-To: [email]\n\n\n\n1\nService Inquiry | Thank you for contacting Translucent\nBradford Sankar \n[email]\nHi [first-name],\r\n\r\nWe would like to express our thanks for your interest in our cloud native services.\r\nWe will review your request with our team and be in touch shortly.\r\n\r\nYours sincerely,\r\nBradford Sankar\r\nYour Translucent Cloud Native Specialist!\nReply-To: Bradford Sankar \n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe phone number is invalid.','DEV SERVER - Landing Page Bottom Contact Form','','publish','closed','closed','','landing-page-contact','','','2022-06-20 19:57:13','2022-06-20 23:57:13','',0,'http://translucentcomputing.com/?post_type=wpcf7_contact_form&p=2555',0,'wpcf7_contact_form','',0),(2556,4,'2021-04-15 08:31:49','2021-04-15 12:31:49','
\r\n
\r\nFind the right fit for your DevOps Journey\r\n
\r\n
\r\n[text* fullname class:form-top placeholder \"Full Name\"][email* email class:form-top placeholder \"Your Work Email\"]\r\n
\r\n\r\n
\r\n[textarea message class:form-textarea placeholder \"Tell us a few more details\"]\r\n[submit class:top-btn \"Let\'s grow!\"]\r\n
\r\n
\n1\nDEV SERVER - TC Form Submissions: From Translucent Landing Page Top Contact Form\nresults@translucentcomputing.com\nbsankar@translucentcomputing.com, robert@translucentcomputing.com, results@translucentcomputing.com\nFrom: [fullname] <[email]>\r\n\r\nMessage:\r\n[message]\nReply-To: [email]\n\n\n\n1\nService Inquiry | Thank you for contacting Translucent\nBradford Sankar \n[email]\nHi [fullname],\r\n\r\nWe would like to express our thanks for your interest in our cloud native services.\r\nWe will review your request with our team and be in touch shortly.\r\n\r\nYours sincerely,\r\nBradford Sankar\r\nYour Translucent Cloud Native Specialist!\nReply-To: Bradford Sankar \n\n\n\nMessage submitted. We look forward to creating the future together!\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','DEV SERVER - Landing Page Top Contact Form','','publish','closed','closed','','landing-page-top-form','','','2022-06-20 19:57:22','2022-06-20 23:57:22','',0,'http://translucentcomputing.com/?post_type=wpcf7_contact_form&p=2556',0,'wpcf7_contact_form','',0),(2557,4,'2021-04-15 09:27:53','2021-04-15 13:27:53','','mrdata4','','inherit','open','closed','','mrdata4','','','2021-09-03 10:46:21','2021-09-03 14:46:21','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/mrdata4.png',0,'attachment','image/png',0),(2558,4,'2021-04-15 09:40:03','2021-04-15 13:40:03','','pre-item','','inherit','open','closed','','pre-item','','','2021-09-03 10:46:08','2021-09-03 14:46:08','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/pre-item.png',0,'attachment','image/png',0),(2559,4,'2021-04-15 09:57:00','2021-04-15 13:57:00','','phrase-bg','','inherit','open','closed','','phrase-bg','','','2021-09-03 10:45:49','2021-09-03 14:45:49','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/phrase-bg.jpg',0,'attachment','image/jpeg',0),(2561,4,'2021-04-15 10:01:06','2021-04-15 14:01:06','','graphics','','inherit','open','closed','','graphics','','','2021-09-03 10:45:36','2021-09-03 14:45:36','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/04/graphics.png',0,'attachment','image/png',0),(2563,14,'2021-04-15 15:57:07','2021-04-15 19:57:07','\n

It is always a pleasure to hear the other side of the spectrum and share the same interests with like-minded people. Adriana Villela is a respected friend, software engineer, speaker, and a DevOps/SRE leader. When she accepted our invitation to share her side of What Digital Transformation is, we were thrilled. We know you will be too.

\n\n\n\n

The world has gone digital, whether we like it or not. When I was a kid, I remember my parents having music on records. As I grew up, records were eventually replaced by cassette tapes, then by CDs. By the time I finished university, MP3s were slowly gaining popularity as the music medium of choice. With changes in music media also came the inevitable changes in the way we played our music. We went from bulky record players to more portable players like Sony’s iconic Walkman and Discman, and then to palm-sized MP3 players popularized by the iPod to play our favorite tracks. Now, we don’t even need to own an MP3 player to play our favorite music. The introduction of music streaming services changed that. Now, as long as you have a device that you can stream your music to, you’re all set.

\n\n\n\n

That, my friends, is a digital transformation.

\n\n\n\n

Digital Transformation is a term that is very prevalent these days. Most large enterprises have either gone through one, are in the midst of one, or are contemplating one. Many tech consultancies, from the big to the boutique, offer services to help companies with their Digital Transformations. There are courses and seminars out there on Digital Transformation, offered by the likes of Harvard and MIT in the States, and UofT and McGill in Canada. There are blog posts on Digital Transformation. Medium alone is a treasure trove of Digital Transformation blog posts. And of course, there are lots and lots of opinions on what Digital Transformation is.

\n\n\n\n

And now, I’m here to tell you that most of the info out there on Digital Transformation is hooey, and to set the records straight.

\n\n\n\n

Key Terms

\n\n\n\n

First things first. Let’s understand the key players.

\n\n\n\n

Digitization refers to creating a digital representation of a physical object. This is also known as a digital artifact. For example, a paper contract can be digitized by converting it into a PDF document. The digitized version of the document is easier to distribute, and is easier to search through.

\n\n\n\n

Digitalization refers to enabling, improving, or transforming business processes by leveraging digital technologies and digitized data. For example, the traditional process of signing a contract means signing multiple paper copies (one for each party) of the contract by pen, and delivering a copy to each party by hand. When this process is digitalized, the single copy of the contract is the source of truth. It is signed by each party using software. All parties are notified electronically of the signing, and have access to the same electronic copy of the contract. The new process uses less paper, is a lot less complex than the old process, and has a single source of truth.

\n\n\n\n

Digital Transformations enable you to achieve digitization and/or digitalization, depending on your organization’s goals. 

\n\n\n\n

But we’re not done yet. Because we’ve left out a crucial element. Digital Transformation in itself is pretty worthless unless it’s data-driven. Data-Driven Digital Transformation is about making data a first-class citizen, letting both the data and the dataflow drive how you revamp your digital artifacts and processes.

\n\n\n\n

Use Case: Buying a House

\n\n\n\n

Let’s suppose that you’re putting in an offer to buy a house.

\n\n\n\n

The Old Way

\n\n\n\n

Your real estate agent puts together the paperwork for the offer in a Word doc. The agency has their own template with some standard clauses, and the agent inserts some additional stipulations from you. Your agent then prints a copy of the agreement to give to the selling agent.

\n\n\n\n

After you’ve signed the offer, your real estate agent faxes the offer to the selling agent, and calls them to confirm receipt. The selling agent consults with their client and makes updates to the offer by hand, striking out unfavorable items and/or inserting new items. The updates are initialled by hand, to signal that they are signed off by the buyer. The amended agreement is then handed back to your agent.

\n\n\n\n

There are two more rounds of this back-and-forth, until, finally, the buyer is satisfied with the offer and signs it. The final offer looks like an exam marked by a high school English teacher.

\n\n\n\n

After everything is signed, the agents scan copies of the agreement into a PDF and shred the paper copy so that they don’t have to deal with piles of paper lying around in their respective offices. You do the same. Much easier to search through electronic records than paper ones, after all. Win.

\n\n\n\n

Congratulations. You got your house. After three hours of back-and-forth and manual BS that I’m sure you could’ve done without.

\n\n\n\n

Now, let’s see how things look when we take a data-driven approach.

\n\n\n\n

The Data-Driven Approach

\n\n\n\n

Your real estate agent has been selling homes for a while now, and runs her own brokerage. Over the years, she has come to realize that her clients are tech-savvy, busy, and on-the-go with demanding jobs. Keeping this in mind, she’s decided to invest in hiring a company to build an end-to-end digital solution for putting in an offer on a home and signing home purchase agreements. A solution that all agents in her brokerage can use.

\n\n\n\n

When you’re ready to put in an offer on the house, the agent leverages the new digital solution. First, she puts together an electronic document for the offer. The new process was built from the ground up, and its sole purpose is to allow agents to create home purchase offers quickly and efficiently. The agent selects what clauses to include from an electronic checklist, and adds in your additional terms typing them into a textbox. Looks good, so the agent hits save, and shares a link to the doc with you by email so that you can digitally sign it. After that, she shares the link with the selling agent by email.

\n\n\n\n

The selling agent then reviews the doc with their client, who makes changes directly to the agreement. The agreement is on the blockchain, so it’s very easy to see who made what changes, and because they’re verified users, changes made to the doc also provide automatic sign-off. You and your agent both get a notification once the agreement has been updated, and the two of you review the updates together over Zoom.

\n\n\n\n

After some back-and-forth (each set of edits triggering a notification), the seller accepts your offer. Congratulations! No trees were harmed during this process. No need to strike out content and initial it. All of the doc changes are tracked and are fully-transparent to all parties involved. This has been a much faster and smoother process!

\n\n\n\n

Why the Data-Driven Approach is Better

\n\n\n\n

So what did we learn from this?

\n\n\n\n

We saw that in the old way of doing things, we started with an electronic document (the Word doc) and even ended up with an electronic document. The thing to note, however, is that the document at the start and at the end was not the same document. Remember: it started out as a Word doc, and ended up as a PDF scan of the printed document (not the original Word doc). Also, the steps in-between didn’t support the electronic documents. In fact, they supported the paper version of the document instead. What’s more, the electronic documents themselves were half-hearted at best, so there was never a chance to have a good electronic workflow to support it. In the end, the workflow was manual and slow.

\n\n\n\n

The data-driven approach, however, started and ended with an electronic document. The same one. The same document was updated and amended and eventually agreed upon by all parties. No manual strike-throughs and initialling to make amendments. The digital artifact (the agreement) was made a first-class citizen from the beginning. Equally important, the entire process itself was digital. It was designed around updating and signing the agreement (the digital artifact).

\n\n\n\n

And finally, the data-driven approach started with the real estate agent understanding the fact that her clients are busy, tech savvy, and hungry for a simpler process for putting in an offer on a home. That is, the agent used data (their understanding of their clients’ needs and wants) to drive the decision to digitize and digitalize the process.

\n\n\n\n

This is a big differentiator. In fact, having the right process in place to support your artifacts is what can make or break a Digital Transformation.

\n\n\n\n

Why Some Digital Transformations Fail

\n\n\n\n

Most Digital Transformations fail for one simple reason: failure to change existing processes. Digital Transformation isn’t about lifting and shifting existing processes. It’s about reimagining and disrupting existing processes to accommodate the digital world that we live in. Data-Driven Digital Transformations let the data provide guidance on what the new processes should look like.

\n\n\n\n

We think that it’s perfectly normal to just strike out a part in a contract and initial it to make an amendment, because that’s how it’s always been done. It’s normal, and we like normal. So when we digitalize the process, we allow the ability to strike through, amend, and initial. Just like we do on the paper contract. But now it’s done on the electronic contract.

\n\n\n\n

Instead, we should treat the contract as a living document, and allow only the parties involved in the contract to make amendments as needed, and provide traceability and transparency to those amendments.

\n\n\n\n

Unfortunately, as with the contract example above, leaders will simply “lift and shift” processes, and hope for better outcomes. The problem with this type of thinking is that it’s naïve and it adds complexity to your already complex process, when the goal is to reduce complexity. The gains you think you’ve made are purely for show, because now you’ve shifted the burden to other departments. The front office might look squeaky clean (“Hey, look! All of our contracts are on web forms!”), but now the back office is a mess. You might need to create entire departments just to support this new process. For example, creating a DevOps team to work alongside your Operations team to support the newly-added overly-complex process.

\n\n\n\n

But why should it have to be that way? This is your opportunity to revisit existing processes and reimagine them. It’s your opportunity to disrupt and build cool new things from the ground up. This is your opportunity to denormalize things, and define a new normal.

\n\n\n\n

Why Digital Transformations Matter

\n\n\n\n

These days, Digital Transformations are more important than ever, as technology keeps rapidly evolving. Now, there’s a new urgency for companies to embrace Digital Transformations, thanks in large part to lockdowns and restrictions put in place as a result of the Covid19 pandemic.

\n\n\n\n

Covid19 has forced most tech companies to go fully remote. This means having proper infrastructure in place to support software engineers so that they can deliver code to production more quickly and more efficiently. It means having processes in place to communicate and collaborate on code remotely, to spin up environments, to build and deploy code, and to make and fulfill service requests in a timely manner. If a tech company can’t provide these services properly, it can’t stay competitive.

\n\n\n\n

Covid19 has also forced many retailers to up their digital game, providing a fast and efficient customer experience through online ordering, fulfillment, and returns. Retailers who didn’t have a strong online presence and solid technical infrastructure to support their online presence found themselves in a real bind, as customers expected Amazonesque service levels. Those who didn’t level up quickly and properly ran the risk of losing customers and money, or worse, shuttering for good.

\n\n\n\n

So the question you must ask yourself is, are you ready for an increasingly digital world? Can your business support an increasingly digital workforce? Can you pivot your business quickly and easily to respond to rapid technological and socio-economic changes? If you’ve answered “no” to any of these questions, then it’s time to consider a digital transformation, before your competitors leave you in the dust.

\n\n\n\n

How to Nail Your Digital Transformation

\n\n\n\n

By Adriana Villela.
\"My goal is to always push the boundaries of software delivery by learning and surrounding myself with smart people who challenge the status quo\".

\n','How to Nail Your Digital Transformation','','publish','open','open','','how-to-nail-your-digital-transformation','','','2021-04-20 14:58:36','2021-04-20 18:58:36','',0,'http://translucentcomputing.com/?p=2563',0,'post','',0),(2564,9,'2021-04-15 15:45:19','2021-04-15 19:45:19','','how to nail your digital transformation?','','inherit','open','closed','','how-to-nail-your-digital-transformation','','','2021-04-15 15:45:35','2021-04-15 19:45:35','',2563,'https://translucentcomputing.com/wp-content/uploads/2021/04/how-to-nail-your-digital-transformation.png',0,'attachment','image/png',0),(2567,9,'2021-04-15 15:48:49','2021-04-15 19:48:49','','unnamed-3','','inherit','open','closed','','unnamed-3','','','2021-09-03 10:45:18','2021-09-03 14:45:18','',2563,'https://translucentcomputing.com/wp-content/uploads/2021/04/unnamed-3.jpg',0,'attachment','image/jpeg',0),(2578,4,'2021-04-15 20:51:03','2021-04-16 00:51:03','','rob','','inherit','open','closed','','rob','','','2021-10-06 21:51:26','2021-10-07 01:51:26','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/04/rob.png',0,'attachment','image/png',0),(2579,4,'2021-04-15 21:16:05','2021-04-16 01:16:05','','kubernetes-image-2','','inherit','open','closed','','kubernetes-image-2','','','2021-10-06 21:51:06','2021-10-07 01:51:06','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/04/kubernetes-image-2.png',0,'attachment','image/png',0),(2597,4,'2021-04-19 20:55:58','2021-04-20 00:55:58','','trusted','','inherit','open','closed','','trusted-2','','','2021-10-06 21:51:01','2021-10-07 01:51:01','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/trusted.png',0,'attachment','image/png',0),(2599,4,'2021-04-19 21:01:20','2021-04-20 01:01:20','','top-girl','','inherit','open','closed','','top-girl-2','','','2021-09-03 10:43:45','2021-09-03 14:43:45','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/04/top-girl-1.png',0,'attachment','image/png',0),(2600,4,'2021-04-19 21:27:57','2021-04-20 01:27:57','','kubernetes-image','','inherit','open','closed','','kubernetes-image','','','2021-09-03 10:43:32','2021-09-03 14:43:32','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/04/kubernetes-image.png',0,'attachment','image/png',0),(2602,4,'2021-04-19 21:36:42','2021-04-20 01:36:42','','Landing Page - Cloud Native DevOps Mid - BW - BN','','draft','closed','closed','','cloud-native-devops-mid-bn','','','2021-06-15 14:07:28','2021-06-15 18:07:28','',0,'http://translucentcomputing.com/?page_id=2602',0,'page','',0),(2613,4,'2021-04-23 15:24:04','2021-04-23 19:24:04','','bg-city-tc1','','inherit','open','closed','','bg-city-tc1','','','2021-09-03 10:43:01','2021-09-03 14:43:01','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/04/bg-city-tc1.png',0,'attachment','image/png',0),(2615,4,'2021-04-23 15:28:57','2021-04-23 19:28:57','','bd-2','','inherit','open','closed','','bd-2','','','2021-09-03 10:42:41','2021-09-03 14:42:41','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/bd-2.png',0,'attachment','image/png',0),(2616,4,'2021-04-23 15:38:57','2021-04-23 19:38:57','','Landing Page - Cloud Native DevOps Short Version 5 - BW - BN','','draft','closed','closed','','cloud-native-devops-short5-bn','','','2021-06-15 14:06:55','2021-06-15 18:06:55','',0,'http://translucentcomputing.com/?page_id=2616',0,'page','',0),(2619,4,'2021-04-23 15:39:42','2021-04-23 19:39:42','','Landing Page - Cloud Native DevOps Short Version 4 - BW - BN','','draft','closed','closed','','cloud-native-devops-short4-bn','','','2021-06-15 14:07:09','2021-06-15 18:07:09','',0,'http://translucentcomputing.com/?page_id=2619',0,'page','',0),(2621,4,'2021-04-23 16:32:24','2021-04-23 20:32:24','','bg-people-tc1','','inherit','open','closed','','bg-people-tc1','','','2021-10-06 21:50:34','2021-10-07 01:50:34','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/04/bg-people-tc1.png',0,'attachment','image/png',0),(2622,4,'2021-04-23 17:59:35','2021-04-23 21:59:35','','t-icon-coloured','','inherit','open','closed','','t-icon-coloured','','','2021-09-03 10:41:51','2021-09-03 14:41:51','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/t-icon-coloured.png',0,'attachment','image/png',0),(2623,4,'2021-04-23 18:45:55','2021-04-23 22:45:55','','graphics-m1','','inherit','open','closed','','graphics-m1','','','2021-10-06 21:50:21','2021-10-07 01:50:21','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/04/graphics-m1.png',0,'attachment','image/png',0),(2624,4,'2021-04-23 18:45:56','2021-04-23 22:45:56','','graphics-m2','','inherit','open','closed','','graphics-m2','','','2021-10-06 21:50:16','2021-10-07 01:50:16','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/04/graphics-m2.png',0,'attachment','image/png',0),(2625,4,'2021-04-23 19:04:48','2021-04-23 23:04:48','','rob-mobile','','inherit','open','closed','','rob-mobile','','','2021-10-06 21:50:09','2021-10-07 01:50:09','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/04/rob-mobile.png',0,'attachment','image/png',0),(2626,4,'2021-04-23 20:20:43','2021-04-24 00:20:43','a:7:{s:8:\"location\";a:1:{i:0;a:2:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:25:\"landing-page-colorful.php\";}i:1;a:3:{s:5:\"param\";s:4:\"page\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:4:\"2526\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','Landing Page - Long','landing-page-long','publish','closed','closed','','group_608361234448e','','','2021-07-01 08:52:53','2021-07-01 12:52:53','',0,'http://translucentcomputing.com/?post_type=acf-field-group&p=2626',0,'acf-field-group','',0),(2627,4,'2021-04-23 20:20:43','2021-04-24 00:20:43','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Background','background','publish','closed','closed','','field_6083613c01a24','','','2021-04-23 20:20:43','2021-04-24 00:20:43','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=2627',0,'acf-field','',0),(2628,4,'2021-04-23 20:20:43','2021-04-24 00:20:43','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Title','title','publish','closed','closed','','field_6083614f01a25','','','2021-07-01 08:32:41','2021-07-01 12:32:41','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=2628',3,'acf-field','',0),(2629,4,'2021-04-23 20:20:44','2021-04-24 00:20:44','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Items','items','publish','closed','closed','','field_6083618a01a27','','','2021-07-01 08:32:41','2021-07-01 12:32:41','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=2629',4,'acf-field','',0),(2630,4,'2021-04-23 20:20:44','2021-04-24 00:20:44','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Item','item','publish','closed','closed','','field_608361a401a28','','','2021-04-23 20:20:44','2021-04-24 00:20:44','',2629,'http://translucentcomputing.com/?post_type=acf-field&p=2630',0,'acf-field','',0),(2631,4,'2021-04-23 20:20:44','2021-04-24 00:20:44','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_6083616401a26','','','2021-07-01 08:32:42','2021-07-01 12:32:42','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=2631',5,'acf-field','',0),(2634,4,'2021-04-23 20:20:45','2021-04-24 00:20:45','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Steps Image','steps_image','publish','closed','closed','','field_608361e101a2b','','','2021-07-01 08:52:50','2021-07-01 12:52:50','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=2634',8,'acf-field','',0),(2635,4,'2021-04-23 20:20:45','2021-04-24 00:20:45','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Steps title','steps_title','publish','closed','closed','','field_608361ee01a2c','','','2021-07-01 08:52:50','2021-07-01 12:52:50','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=2635',9,'acf-field','',0),(2636,4,'2021-04-23 20:20:45','2021-04-24 00:20:45','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Steps text','steps_text','publish','closed','closed','','field_6083620201a2d','','','2021-07-01 08:52:50','2021-07-01 12:52:50','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=2636',10,'acf-field','',0),(2637,4,'2021-04-23 20:20:45','2021-04-24 00:20:45','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','People background','people_background','publish','closed','closed','','field_6083621801a2e','','','2021-07-01 08:52:50','2021-07-01 12:52:50','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=2637',11,'acf-field','',0),(2638,4,'2021-04-23 20:20:45','2021-04-24 00:20:45','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','People title','people_title','publish','closed','closed','','field_6083622601a2f','','','2021-07-01 08:52:51','2021-07-01 12:52:51','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=2638',14,'acf-field','',0),(2639,4,'2021-04-23 20:20:46','2021-04-24 00:20:46','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','People text','people_text','publish','closed','closed','','field_6083623101a30','','','2021-07-01 08:52:51','2021-07-01 12:52:51','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=2639',15,'acf-field','',0),(2640,4,'2021-04-23 20:20:46','2021-04-24 00:20:46','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Kubernetes partnership title','kubernetes_partnership_title','publish','closed','closed','','field_6083624901a31','','','2021-07-01 08:52:51','2021-07-01 12:52:51','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=2640',16,'acf-field','',0),(2641,4,'2021-04-23 20:20:46','2021-04-24 00:20:46','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Kubernetes partnership image desktop','kubernetes_partnership_image_desktop','publish','closed','closed','','field_6083626601a33','','','2021-07-01 08:52:51','2021-07-01 12:52:51','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=2641',17,'acf-field','',0),(2642,4,'2021-04-23 20:20:46','2021-04-24 00:20:46','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Kubernetes partnership images mobile','kubernetes_partnership_images_mobile','publish','closed','closed','','field_6083627c01a34','','','2021-07-01 08:52:52','2021-07-01 12:52:52','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=2642',18,'acf-field','',0),(2643,4,'2021-04-23 20:20:46','2021-04-24 00:20:46','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_6083628a01a35','','','2021-04-23 20:20:46','2021-04-24 00:20:46','',2642,'http://translucentcomputing.com/?post_type=acf-field&p=2643',0,'acf-field','',0),(2644,4,'2021-04-23 20:20:46','2021-04-24 00:20:46','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Kubernetes partnership text','kubernetes_partnership_text','publish','closed','closed','','field_6083625901a32','','','2021-07-01 08:52:52','2021-07-01 12:52:52','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=2644',19,'acf-field','',0),(2645,4,'2021-04-23 20:20:47','2021-04-24 00:20:47','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Kubernetes seal title','kubernetes_seal_title','publish','closed','closed','','field_608362a801a36','','','2021-07-01 08:52:52','2021-07-01 12:52:52','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=2645',20,'acf-field','',0),(2646,4,'2021-04-23 20:20:47','2021-04-24 00:20:47','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Kubernetes seal subtitle','kubernetes_seal_subtitle','publish','closed','closed','','field_608362c501a37','','','2021-07-01 08:52:52','2021-07-01 12:52:52','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=2646',21,'acf-field','',0),(2647,4,'2021-04-23 20:20:47','2021-04-24 00:20:47','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Kubernetes seal items','kubernetes_seal_items','publish','closed','closed','','field_608362db01a38','','','2021-07-01 08:52:52','2021-07-01 12:52:52','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=2647',22,'acf-field','',0),(2648,4,'2021-04-23 20:20:47','2021-04-24 00:20:47','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Item','item','publish','closed','closed','','field_608362e601a39','','','2021-04-23 20:20:47','2021-04-24 00:20:47','',2647,'http://translucentcomputing.com/?post_type=acf-field&p=2648',0,'acf-field','',0),(2649,4,'2021-04-23 20:20:47','2021-04-24 00:20:47','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Kubernetes seal message','kubernetes_seal_message','publish','closed','closed','','field_6083630501a3a','','','2021-07-01 08:52:52','2021-07-01 12:52:52','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=2649',23,'acf-field','',0),(2650,4,'2021-04-23 20:20:48','2021-04-24 00:20:48','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Kubernetes seal image','kubernetes_seal_image','publish','closed','closed','','field_6083632101a3b','','','2021-07-01 08:52:53','2021-07-01 12:52:53','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=2650',24,'acf-field','',0),(2651,4,'2021-04-23 20:20:48','2021-04-24 00:20:48','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Black background phrase','black_background_phrase','publish','closed','closed','','field_6083633201a3c','','','2021-07-01 08:52:53','2021-07-01 12:52:53','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=2651',25,'acf-field','',0),(2665,4,'2021-04-23 20:47:19','2021-04-24 00:47:19','a:7:{s:8:\"location\";a:2:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:20:\"landing-page-mid.php\";}}i:1;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:29:\"landing-page-mid-colorful.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','Landing Page - Mid','landing-page-mid','publish','closed','closed','','group_60836a9061ca2','','','2021-07-01 08:53:23','2021-07-01 12:53:23','',0,'http://translucentcomputing.com/?p=2665',0,'acf-field-group','',0),(2666,4,'2021-04-23 20:47:12','2021-04-24 00:47:12','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Background','background','publish','closed','closed','','field_60836a906fbfa','','','2021-04-23 20:47:12','2021-04-24 00:47:12','',2665,'http://translucentcomputing.com/?post_type=acf-field&p=2666',0,'acf-field','',0),(2667,4,'2021-04-23 20:47:12','2021-04-24 00:47:12','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Title','title','publish','closed','closed','','field_60836a906fc4e','','','2021-07-01 08:33:46','2021-07-01 12:33:46','',2665,'http://translucentcomputing.com/?post_type=acf-field&p=2667',3,'acf-field','',0),(2668,4,'2021-04-23 20:47:12','2021-04-24 00:47:12','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Items','items','publish','closed','closed','','field_60836a906fc93','','','2021-07-01 08:33:46','2021-07-01 12:33:46','',2665,'http://translucentcomputing.com/?post_type=acf-field&p=2668',4,'acf-field','',0),(2669,4,'2021-04-23 20:47:13','2021-04-24 00:47:13','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Item','item','publish','closed','closed','','field_60836a91045e9','','','2021-04-23 20:47:13','2021-04-24 00:47:13','',2668,'http://translucentcomputing.com/?post_type=acf-field&p=2669',0,'acf-field','',0),(2670,4,'2021-04-23 20:47:13','2021-04-24 00:47:13','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_60836a906fce6','','','2021-07-01 08:33:47','2021-07-01 12:33:47','',2665,'http://translucentcomputing.com/?post_type=acf-field&p=2670',5,'acf-field','',0),(2676,4,'2021-04-23 20:47:14','2021-04-24 00:47:14','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','People background','people_background','publish','closed','closed','','field_60836a906fede','','','2021-07-01 08:53:22','2021-07-01 12:53:22','',2665,'http://translucentcomputing.com/?post_type=acf-field&p=2676',12,'acf-field','',0),(2677,4,'2021-04-23 20:47:14','2021-04-24 00:47:14','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','People title','people_title','publish','closed','closed','','field_60836a906ff2f','','','2021-07-01 08:53:22','2021-07-01 12:53:22','',2665,'http://translucentcomputing.com/?post_type=acf-field&p=2677',15,'acf-field','',0),(2678,4,'2021-04-23 20:47:14','2021-04-24 00:47:14','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','People text','people_text','publish','closed','closed','','field_60836a906ff6f','','','2021-07-01 08:53:22','2021-07-01 12:53:22','',2665,'http://translucentcomputing.com/?post_type=acf-field&p=2678',16,'acf-field','',0),(2679,4,'2021-04-23 20:47:15','2021-04-24 00:47:15','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Kubernetes partnership title','kubernetes_partnership_title','publish','closed','closed','','field_60836a906ffbf','','','2021-07-01 08:53:21','2021-07-01 12:53:21','',2665,'http://translucentcomputing.com/?post_type=acf-field&p=2679',8,'acf-field','',0),(2680,4,'2021-04-23 20:47:15','2021-04-24 00:47:15','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Kubernetes partnership image desktop','kubernetes_partnership_image_desktop','publish','closed','closed','','field_60836a9070001','','','2021-07-01 08:53:21','2021-07-01 12:53:21','',2665,'http://translucentcomputing.com/?post_type=acf-field&p=2680',9,'acf-field','',0),(2681,4,'2021-04-23 20:47:15','2021-04-24 00:47:15','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Kubernetes partnership images mobile','kubernetes_partnership_images_mobile','publish','closed','closed','','field_60836a907003f','','','2021-07-01 08:53:21','2021-07-01 12:53:21','',2665,'http://translucentcomputing.com/?post_type=acf-field&p=2681',10,'acf-field','',0),(2682,4,'2021-04-23 20:47:15','2021-04-24 00:47:15','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_60836a9390fba','','','2021-04-23 20:47:15','2021-04-24 00:47:15','',2681,'http://translucentcomputing.com/?post_type=acf-field&p=2682',0,'acf-field','',0),(2683,4,'2021-04-23 20:47:15','2021-04-24 00:47:15','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Kubernetes partnership text','kubernetes_partnership_text','publish','closed','closed','','field_60836a907007d','','','2021-07-01 08:53:21','2021-07-01 12:53:21','',2665,'http://translucentcomputing.com/?post_type=acf-field&p=2683',11,'acf-field','',0),(2690,4,'2021-04-23 20:47:17','2021-04-24 00:47:17','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Black background phrase','black_background_phrase','publish','closed','closed','','field_60836a9070202','','','2021-07-01 08:53:22','2021-07-01 12:53:22','',2665,'http://translucentcomputing.com/?post_type=acf-field&p=2690',17,'acf-field','',0),(2708,4,'2021-04-23 21:18:50','2021-04-24 01:18:50','','footer-services-1','','inherit','open','closed','','footer-services-1','','','2021-09-03 10:40:46','2021-09-03 14:40:46','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/footer-services-1.png',0,'attachment','image/png',0),(2709,4,'2021-04-23 21:18:50','2021-04-24 01:18:50','','footer-services-2','','inherit','open','closed','','footer-services-2','','','2021-09-03 10:40:56','2021-09-03 14:40:56','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/footer-services-2.png',0,'attachment','image/png',0),(2710,4,'2021-04-23 21:18:51','2021-04-24 01:18:51','','footer-services-3','','inherit','open','closed','','footer-services-3','','','2021-09-03 10:40:37','2021-09-03 14:40:37','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/footer-services-3.png',0,'attachment','image/png',0),(2711,4,'2021-04-23 21:29:28','2021-04-24 01:29:28','','blackbook','','inherit','open','closed','','blackbook','','','2021-09-03 10:38:58','2021-09-03 14:38:58','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/04/blackbook.png',0,'attachment','image/png',0),(2712,4,'2021-04-23 21:29:28','2021-04-24 01:29:28','','gotoloans','','inherit','open','closed','','gotoloans','','','2021-09-03 10:40:20','2021-09-03 14:40:20','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/04/gotoloans.png',0,'attachment','image/png',0),(2713,4,'2021-04-23 21:29:29','2021-04-24 01:29:29','','sick','','inherit','open','closed','','sick','','','2021-09-03 10:38:47','2021-09-03 14:38:47','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/04/sick.png',0,'attachment','image/png',0),(2714,4,'2021-04-23 21:29:30','2021-04-24 01:29:30','','southlake','','inherit','open','closed','','southlake','','','2021-09-03 10:38:22','2021-09-03 14:38:22','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/04/southlake.png',0,'attachment','image/png',0),(2715,4,'2021-04-23 21:29:30','2021-04-24 01:29:30','','trusted-by','','inherit','open','closed','','trusted-by','','','2021-09-03 10:38:37','2021-09-03 14:38:37','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/trusted-by.png',0,'attachment','image/png',0),(2716,4,'2021-04-23 21:29:31','2021-04-24 01:29:31','','uhn','','inherit','open','closed','','uhn','','','2021-09-03 10:38:07','2021-09-03 14:38:07','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/04/uhn.png',0,'attachment','image/png',0),(2718,4,'2021-04-23 22:00:51','2021-04-24 02:00:51','a:7:{s:8:\"location\";a:2:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:24:\"landing-page-short-5.php\";}}i:1;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:33:\"landing-page-short-5-colorful.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','Landing Page - Short 5','landing-page-short-5','publish','closed','closed','','group_60837bcb38246','','','2021-05-19 22:18:18','2021-05-20 02:18:18','',0,'http://translucentcomputing.com/?p=2718',0,'acf-field-group','',0),(2719,4,'2021-04-23 22:00:43','2021-04-24 02:00:43','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Background','background','publish','closed','closed','','field_60837bcb4601d','','','2021-04-23 22:00:43','2021-04-24 02:00:43','',2718,'http://translucentcomputing.com/?post_type=acf-field&p=2719',0,'acf-field','',0),(2720,4,'2021-04-23 22:00:43','2021-04-24 02:00:43','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Title','title','publish','closed','closed','','field_60837bcb4606e','','','2021-04-23 22:00:43','2021-04-24 02:00:43','',2718,'http://translucentcomputing.com/?post_type=acf-field&p=2720',1,'acf-field','',0),(2721,4,'2021-04-23 22:00:43','2021-04-24 02:00:43','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Items','items','publish','closed','closed','','field_60837bcb460ba','','','2021-04-23 22:00:44','2021-04-24 02:00:44','',2718,'http://translucentcomputing.com/?post_type=acf-field&p=2721',2,'acf-field','',0),(2722,4,'2021-04-23 22:00:43','2021-04-24 02:00:43','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Item','item','publish','closed','closed','','field_60837bcbda2ad','','','2021-04-23 22:00:43','2021-04-24 02:00:43','',2721,'http://translucentcomputing.com/?post_type=acf-field&p=2722',0,'acf-field','',0),(2723,4,'2021-04-23 22:00:44','2021-04-24 02:00:44','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_60837bcb46106','','','2021-04-23 22:00:44','2021-04-24 02:00:44','',2718,'http://translucentcomputing.com/?post_type=acf-field&p=2723',3,'acf-field','',0),(2729,4,'2021-04-23 22:00:45','2021-04-24 02:00:45','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','People background','people_background','publish','closed','closed','','field_60837bcb46250','','','2021-04-23 22:02:53','2021-04-24 02:02:53','',2718,'http://translucentcomputing.com/?post_type=acf-field&p=2729',9,'acf-field','',0),(2730,4,'2021-04-23 22:00:45','2021-04-24 02:00:45','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','People title','people_title','publish','closed','closed','','field_60837bcb46294','','','2021-04-23 22:02:54','2021-04-24 02:02:54','',2718,'http://translucentcomputing.com/?post_type=acf-field&p=2730',10,'acf-field','',0),(2731,4,'2021-04-23 22:00:46','2021-04-24 02:00:46','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','People text','people_text','publish','closed','closed','','field_60837bcb462fa','','','2021-04-23 22:21:08','2021-04-24 02:21:08','',2718,'http://translucentcomputing.com/?post_type=acf-field&p=2731',11,'acf-field','',0),(2737,4,'2021-04-23 22:00:47','2021-04-24 02:00:47','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Kubernetes seal title','kubernetes_seal_title','publish','closed','closed','','field_60837bcb46461','','','2021-04-23 22:02:53','2021-04-24 02:02:53','',2718,'http://translucentcomputing.com/?post_type=acf-field&p=2737',4,'acf-field','',0),(2738,4,'2021-04-23 22:00:47','2021-04-24 02:00:47','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Kubernetes seal subtitle','kubernetes_seal_subtitle','publish','closed','closed','','field_60837bcb464ca','','','2021-04-27 08:28:56','2021-04-27 12:28:56','',2718,'http://translucentcomputing.com/?post_type=acf-field&p=2738',5,'acf-field','',0),(2739,4,'2021-04-23 22:00:47','2021-04-24 02:00:47','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Kubernetes seal items','kubernetes_seal_items','publish','closed','closed','','field_60837bcb46524','','','2021-04-23 22:02:53','2021-04-24 02:02:53','',2718,'http://translucentcomputing.com/?post_type=acf-field&p=2739',6,'acf-field','',0),(2740,4,'2021-04-23 22:00:48','2021-04-24 02:00:48','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Item','item','publish','closed','closed','','field_60837bd025766','','','2021-04-23 22:00:48','2021-04-24 02:00:48','',2739,'http://translucentcomputing.com/?post_type=acf-field&p=2740',0,'acf-field','',0),(2741,4,'2021-04-23 22:00:48','2021-04-24 02:00:48','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Kubernetes seal message','kubernetes_seal_message','publish','closed','closed','','field_60837bcb46594','','','2021-04-23 22:02:53','2021-04-24 02:02:53','',2718,'http://translucentcomputing.com/?post_type=acf-field&p=2741',7,'acf-field','',0),(2742,4,'2021-04-23 22:00:48','2021-04-24 02:00:48','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Kubernetes seal image','kubernetes_seal_image','publish','closed','closed','','field_60837bcb465ef','','','2021-04-23 22:02:53','2021-04-24 02:02:53','',2718,'http://translucentcomputing.com/?post_type=acf-field&p=2742',8,'acf-field','',0),(2743,4,'2021-04-23 22:00:48','2021-04-24 02:00:48','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Black background phrase','black_background_phrase','publish','closed','closed','','field_60837bcb4668e','','','2021-04-23 22:02:54','2021-04-24 02:02:54','',2718,'http://translucentcomputing.com/?post_type=acf-field&p=2743',12,'acf-field','',0),(2759,4,'2021-04-23 22:18:33','2021-04-24 02:18:33','','call-icon-blue','','inherit','open','closed','','call-icon-blue','','','2021-09-03 10:37:47','2021-09-03 14:37:47','',2616,'https://translucentcomputing.com/wp-content/uploads/2021/04/call-icon-blue.png',0,'attachment','image/png',0),(2761,4,'2021-04-23 22:28:58','2021-04-24 02:28:58','a:7:{s:8:\"location\";a:2:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:24:\"landing-page-short-4.php\";}}i:1;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:33:\"landing-page-short-4-colorful.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','Landing Page - Short 4','landing-page-short-4','publish','closed','closed','','group_60838263734f6','','','2021-05-19 22:11:58','2021-05-20 02:11:58','',0,'http://translucentcomputing.com/?p=2761',0,'acf-field-group','',0),(2762,4,'2021-04-23 22:28:51','2021-04-24 02:28:51','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Background','background','publish','closed','closed','','field_608382637df1b','','','2021-04-23 22:28:51','2021-04-24 02:28:51','',2761,'http://translucentcomputing.com/?post_type=acf-field&p=2762',0,'acf-field','',0),(2763,4,'2021-04-23 22:28:51','2021-04-24 02:28:51','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Title','title','publish','closed','closed','','field_608382637df71','','','2021-04-23 22:28:51','2021-04-24 02:28:51','',2761,'http://translucentcomputing.com/?post_type=acf-field&p=2763',1,'acf-field','',0),(2764,4,'2021-04-23 22:28:51','2021-04-24 02:28:51','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Items','items','publish','closed','closed','','field_608382637dfb5','','','2021-04-23 22:28:52','2021-04-24 02:28:52','',2761,'http://translucentcomputing.com/?post_type=acf-field&p=2764',2,'acf-field','',0),(2765,4,'2021-04-23 22:28:52','2021-04-24 02:28:52','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Item','item','publish','closed','closed','','field_6083826409fc4','','','2021-04-23 22:28:52','2021-04-24 02:28:52','',2764,'http://translucentcomputing.com/?post_type=acf-field&p=2765',0,'acf-field','',0),(2766,4,'2021-04-23 22:28:52','2021-04-24 02:28:52','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_608382637e061','','','2021-04-23 22:28:52','2021-04-24 02:28:52','',2761,'http://translucentcomputing.com/?post_type=acf-field&p=2766',3,'acf-field','',0),(2775,4,'2021-04-23 22:28:53','2021-04-24 02:28:53','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Kubernetes partnership title','kubernetes_partnership_title','publish','closed','closed','','field_608382637e494','','','2021-04-23 22:46:07','2021-04-24 02:46:07','',2761,'http://translucentcomputing.com/?post_type=acf-field&p=2775',9,'acf-field','',0),(2776,4,'2021-04-23 22:28:54','2021-04-24 02:28:54','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Kubernetes partnership image desktop','kubernetes_partnership_image_desktop','publish','closed','closed','','field_608382637e4ee','','','2021-04-23 22:36:18','2021-04-24 02:36:18','',2761,'http://translucentcomputing.com/?post_type=acf-field&p=2776',10,'acf-field','',0),(2777,4,'2021-04-23 22:28:54','2021-04-24 02:28:54','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Kubernetes partnership images mobile','kubernetes_partnership_images_mobile','publish','closed','closed','','field_608382637e597','','','2021-04-23 22:36:18','2021-04-24 02:36:18','',2761,'http://translucentcomputing.com/?post_type=acf-field&p=2777',11,'acf-field','',0),(2778,4,'2021-04-23 22:28:54','2021-04-24 02:28:54','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_6083826669ba2','','','2021-04-23 22:28:54','2021-04-24 02:28:54','',2777,'http://translucentcomputing.com/?post_type=acf-field&p=2778',0,'acf-field','',0),(2779,4,'2021-04-23 22:28:54','2021-04-24 02:28:54','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Kubernetes partnership text','kubernetes_partnership_text','publish','closed','closed','','field_608382637e5c7','','','2021-04-23 22:39:39','2021-04-24 02:39:39','',2761,'http://translucentcomputing.com/?post_type=acf-field&p=2779',12,'acf-field','',0),(2780,4,'2021-04-23 22:28:54','2021-04-24 02:28:54','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Kubernetes seal title','kubernetes_seal_title','publish','closed','closed','','field_608382637e6d1','','','2021-04-23 22:36:17','2021-04-24 02:36:17','',2761,'http://translucentcomputing.com/?post_type=acf-field&p=2780',4,'acf-field','',0),(2781,4,'2021-04-23 22:28:55','2021-04-24 02:28:55','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Kubernetes seal subtitle','kubernetes_seal_subtitle','publish','closed','closed','','field_608382637e736','','','2021-04-27 08:29:15','2021-04-27 12:29:15','',2761,'http://translucentcomputing.com/?post_type=acf-field&p=2781',5,'acf-field','',0),(2782,4,'2021-04-23 22:28:55','2021-04-24 02:28:55','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Kubernetes seal items','kubernetes_seal_items','publish','closed','closed','','field_608382637e777','','','2021-04-23 22:36:18','2021-04-24 02:36:18','',2761,'http://translucentcomputing.com/?post_type=acf-field&p=2782',6,'acf-field','',0),(2783,4,'2021-04-23 22:28:55','2021-04-24 02:28:55','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Item','item','publish','closed','closed','','field_60838267663e6','','','2021-04-23 22:28:55','2021-04-24 02:28:55','',2782,'http://translucentcomputing.com/?post_type=acf-field&p=2783',0,'acf-field','',0),(2784,4,'2021-04-23 22:28:55','2021-04-24 02:28:55','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Kubernetes seal message','kubernetes_seal_message','publish','closed','closed','','field_608382637e7b8','','','2021-04-23 22:36:18','2021-04-24 02:36:18','',2761,'http://translucentcomputing.com/?post_type=acf-field&p=2784',7,'acf-field','',0),(2785,4,'2021-04-23 22:28:55','2021-04-24 02:28:55','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Kubernetes seal image','kubernetes_seal_image','publish','closed','closed','','field_608382637e847','','','2021-04-23 22:36:18','2021-04-24 02:36:18','',2761,'http://translucentcomputing.com/?post_type=acf-field&p=2785',8,'acf-field','',0),(2804,4,'2021-04-26 10:33:08','2021-04-26 14:33:08','\n

A multi-cloud deployment strategy is the ability to deploy your application to any cloud, allowing you to save time and money. Having a multi-cloud deployment strategy will set you up with the freedom to choose the cloud server you want based on the features it offers, the location of the datacenter, and the cost associated with the cloud computing itself. If your setup is done correctly, you can deploy your application to any cloud server with little trouble.

\n\n\n\n

To allow for smooth multi-cloud deployment, Translucent Computing\'s multi-cloud architecture patterns rely on one common abstraction layer across all clouds: Kubernetes, a container orchestration system.

\n\n\n\n

By now, all major cloud platforms generally support Kubernetes, and the platform is a must for any modern cloud-native app. Kubernetes does differ from platforms such as Anthos, which is a management platform that allows you to manage all the cloud as one, but it’s not a very big difference. Both platforms have a place in the current cloud-native world, so your solution will depend on your needs.

\n\n\n\n

Your multi-cloud deployment strategy must account for each type of cloud server and how they handle their infrastructure setup, such as storage, networking, load balancers, virtual machines, monitoring, or any cloud-proprietary managed services (which we try to avoid, if other cloud servers don’t have good alternative solutions). Some of these cloud infrastructure tasks can be handled by Terraform, an open-source infrastructure as code software tool. Other abstractions will come when working with Kubernetes. We want to get our apps as quickly as possible into the Kubernetes world, because that’s where all the fun starts!

\n\n\n\n

Through the challenges we’ve encountered from working on many cloud-native projects, Translucent has put together best practices for an open source product-ready technology stack that supports the full cloud-native journey, which we call TEKStack AI.

\n\n\n\n

Our technology stack has the best-of-the-best tools that take us from development to building, to deployment with monitoring and observatory throughout the stack. It does take a lot of effort and investment to keep current with all the tools as new ones come out every day. At Translucent, “learning is in our DNA”. We take our inspiration from Cloud Native Computing Foundation, and this community has a good sense of direction when it comes to cloud-native tools and practices. Some of the fundamental tools we use are Minikube, Jenkins, Spinnaker, Helm, Prometheus and Loki to name a few. Because the list is vast, it’s important to keep some concepts and functions steady to make sure you fully understand the tool.

\n\n\n\n

Cloud-Native Architecture Saves Money

\n\n\n\n

Yes, if done right, cloud-native architecture saves us money! By thinking of your application in terms of container-based environments or packaged apps of microservices will allow you to optimize your business and development workflow. Cloud-native architecture will enable you to start thinking about multi-cloud strategy. Cloud-native strategy will lead your company to greater team collaboration and flexibility. You can then build new features around your business, and scale your applications when business demand needs it, which can lead to thousands if not millions of dollars in savings.

\n\n\n\n

Cost savings and extra revenue will also come from new API-driven collaborations and continuous integrations. New APIs will create new business units and new revenues. Non-traditional tech companies will now become data-driven tech companies! Agile DevOps automation will give you a stable system that can run 24/7, with observability and reporting that will require fewer people to maintain it and lessen the support burden. 

\n\n\n\n

Adapting Kubernetes and Containers

\n\n\n\n

The biggest part of going cloud-native is the adaptation of Kubernetes and containers. There has been rapid growth in the number of companies adopting Kubernetes, and for good reason. Kubernetes is revolutionizing application development, bringing previously unimagined flexibility and efficiency to the development process. The speed and agility that Kubernetes offers will drive customer experience by delivering quality features to the market faster. 

\n\n\n\n

There are many benefits to having Kubernetes and containers as the main pillar of your multi-cloud deployment strategy: you get an immutable infrastructure, with predictable, repeatable, and faster development and deployments. This strategy will introduce strong dev/prod parity that allows you to keep consistent builds across all cloud environments. Strong dev/prod parity leads to greater team collaboration and less time spent on infrastructure. The spotlight is on what’s really important: bringing new business features to the market and greater value to your company. 

\n\n\n\n

Kubernetes and GitOps go hand in hand. Choosing GitOps as a prescriptive style of Infrastructure as Code will drive agile collaboration, observability, system configuration, and DevOps best practices. Gone are the days where infrastructure knowledge is hidden in silos. Every single piece of code becomes auditable, be it application code or infrastructure. Everyone can observe and contribute (with the correct permission, of course).

\n\n\n\n

Kubernetes is becoming the common language for cloud-native applications. It reduces friction when a new team member joins a  team or company by allowing easier training, so that team members can start running and contributing right away.  

\n\n\n\n

Vendor Lock-in: You are Already Locked in!

\n\n\n\n

The bad news: If you’re using the cloud, you’re already locked in (or you will be locked in soon)! This doesn’t mean you can’t use multiple cloud deployment strategies. Even if you’re already using one cloud server, you can still use other cloud servers for current or new initiatives. It does mean that you’ll need to set up a few things yourself if you want to switch to a different cloud server, but most of the time that can all be automated with tools like Terraform.

\n\n\n\n

On each cloud service, we aim to automate everything. Some of the infrastructure tasks we automate for each cloud service are: storage, networking, load balancers, virtual machines, monitoring, and managed services that belong to that cloud. We try to avoid services that don\'t have easily compatible alternatives. 

\n\n\n\n

In our work with one of our clients, we found some great cloud-specific alternatives for a database. Locally and in Google Cloud, we use Helm deployed MySQL DB; in Amazon, we use RDS. Transitioning to Google Cloud SQL wouldn’t be an issue either. 

\n\n\n\n

Using an application data abstraction like Liquibase to support the whole system will help with the whole process as well.

\n\n\n\n

Conclusion

\n\n\n\n

Businesses have many decisions to make when it comes to cloud-native architecture, and these are not easy decisions because cloud-native applications are hard to build. Clouds are very complex, but your platform doesn\'t have to be! Cloud-native architecture, proper planning, and using the right tools to support your cloud journey can take away a lot of these complexities. 

\n\n\n\n

Thinking about and getting your application ready for multi-cloud deployment from the start is a good idea, because it will lead you to make the right choices for your architecture. Using the Kubernetes container orchestration system within your local development all the way to production will get you there really quickly. With this setup, you’ll be able to run your application in most clouds. There’s still the infrastructure part you need to deal with, but that can come as you build out your system. If you adapt infrastructure as code principles early on, this step will also be easier and save costs in the long run.

\n\n\n\n

We have many options when it comes to clouds, their features, and their physical locations. With the growth of Kubernetes, we can make use of all of these options if needed,  by applying a multi-cloud deployment strategy throughout.

\n\n\n\n

\n','What is a Multi-cloud Deployment Strategy?','','publish','open','open','','what-is-a-multi-cloud-deployment-strategy','','','2021-05-13 18:59:33','2021-05-13 22:59:33','',0,'http://www.translucentcomputing.com/?p=2804',0,'post','',0),(2805,9,'2021-04-26 10:13:42','2021-04-26 14:13:42','Multi Cloud Deployment Strategy','Multi Cloud Deployment Strategy','Multi Cloud Deployment Strategy','inherit','open','closed','','multi-cloud-deployment-strategy','','','2021-09-03 10:37:11','2021-09-03 14:37:11','',2804,'https://www.translucentcomputing.com/wp-content/uploads/2021/04/Multi-Cloud-Deployment-Strategy.png',0,'attachment','image/png',0),(2847,4,'2021-04-30 23:56:37','2021-05-01 03:56:37','','brad','','inherit','open','closed','','brad','','','2021-10-06 21:48:50','2021-10-07 01:48:50','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/brad.png',0,'attachment','image/png',0),(2848,4,'2021-04-30 23:56:38','2021-05-01 03:56:38','','brad-m','','inherit','open','closed','','brad-m','','','2021-10-06 21:48:38','2021-10-07 01:48:38','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/brad-m.png',0,'attachment','image/png',0),(2849,4,'2021-04-30 23:56:38','2021-05-01 03:56:38','','patryk','','inherit','open','closed','','patryk','','','2021-09-03 06:26:52','2021-09-03 10:26:52','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/patryk.png',0,'attachment','image/png',0),(2850,4,'2021-04-30 23:56:39','2021-05-01 03:56:39','','patryk-m','','inherit','open','closed','','patryk-m','','','2021-10-06 21:48:29','2021-10-07 01:48:29','',0,'https://translucentcomputing.com/wp-content/uploads/2021/04/patryk-m.png',0,'attachment','image/png',0),(2851,4,'2021-05-02 10:52:56','2021-05-02 14:52:56','\r\n

Cost-effective automation of your operations and infrastructure, with a focus on what drives business value.

\r\n','Cloud Native DevOps Consulting','','publish','closed','closed','','cloud-native-devops','','','2022-06-03 17:39:18','2022-06-03 21:39:18','',0,'http://translucentcomputing.com/?page_id=2851',0,'page','',0),(2858,4,'2021-05-02 12:17:10','2021-05-02 16:17:10','','imagem','','inherit','open','closed','','imagem','','','2021-09-03 06:25:39','2021-09-03 10:25:39','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/imagem.png',0,'attachment','image/png',0),(2859,4,'2021-05-02 12:26:02','2021-05-02 16:26:02','','slide-1','','inherit','open','closed','','slide-1','','','2021-09-03 06:24:34','2021-09-03 10:24:34','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/slide-1.jpg',0,'attachment','image/jpeg',0),(2860,4,'2021-05-02 12:26:03','2021-05-02 16:26:03','','slide-2','','inherit','open','closed','','slide-2','','','2021-09-03 06:24:23','2021-09-03 10:24:23','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/slide-2.jpg',0,'attachment','image/jpeg',0),(2861,4,'2021-05-02 14:46:54','2021-05-02 18:46:54','','mrdata','','inherit','open','closed','','mrdata','','','2021-09-03 06:23:32','2021-09-03 10:23:32','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/mrdata.png',0,'attachment','image/png',0),(2863,4,'2021-05-02 14:50:08','2021-05-02 18:50:08','','mrdata2','','inherit','open','closed','','mrdata2-2','','','2021-10-06 21:47:37','2021-10-07 01:47:37','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/mrdata2.png',0,'attachment','image/png',0),(2864,4,'2021-05-02 14:56:34','2021-05-02 18:56:34','','image','','inherit','open','closed','','image','','','2021-09-03 06:23:05','2021-09-03 10:23:05','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/image.png',0,'attachment','image/png',0),(2866,4,'2021-05-02 21:53:11','2021-05-03 01:53:11','','top-banner','','inherit','open','closed','','top-banner','','','2021-09-03 06:20:31','2021-09-03 10:20:31','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/top-banner.jpg',0,'attachment','image/jpeg',0),(2867,4,'2021-05-02 22:04:40','2021-05-03 02:04:40','','icon-quote','','inherit','open','closed','','icon-quote','','','2021-09-03 06:20:06','2021-09-03 10:20:06','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/icon-quote.png',0,'attachment','image/png',0),(2868,4,'2021-05-02 22:09:18','2021-05-03 02:09:18','','icon-title','','inherit','open','closed','','icon-title','','','2021-10-06 21:47:11','2021-10-07 01:47:11','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/icon-title.png',0,'attachment','image/png',0),(2880,4,'2021-05-08 13:38:33','2021-05-08 17:38:33','','graphics-m2','','inherit','open','closed','','graphics-m2-2','','','2021-10-06 21:46:55','2021-10-07 01:46:55','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/05/graphics-m2.png',0,'attachment','image/png',0),(2884,4,'2021-05-08 20:15:18','2021-05-09 00:15:18','','Cloud Native Application Development','','draft','closed','closed','','cloud-native-application-development-old','','','2021-10-22 08:20:33','2021-10-22 12:20:33','',0,'http://translucentcomputing.com/?page_id=2884',0,'page','',0),(2886,4,'2021-05-09 09:47:35','2021-05-09 13:47:35','','image1','','inherit','open','closed','','image1','','','2021-09-03 06:19:01','2021-09-03 10:19:01','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/image1.jpg',0,'attachment','image/jpeg',0),(2887,4,'2021-05-09 09:52:19','2021-05-09 13:52:19','','image2','','inherit','open','closed','','image2','','','2021-10-22 07:24:57','2021-10-22 11:24:57','',3372,'https://translucentcomputing.com/wp-content/uploads/2021/05/image2.jpg',0,'attachment','image/jpeg',0),(2891,4,'2021-05-09 17:35:59','2021-05-09 21:35:59','','slider3','','inherit','open','closed','','slider3','','','2021-09-03 06:17:03','2021-09-03 10:17:03','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/slider3.png',0,'attachment','image/png',0),(2893,4,'2021-05-09 17:44:08','2021-05-09 21:44:08','','icon-rp','','inherit','open','closed','','icon-rp','','','2021-10-22 08:11:39','2021-10-22 12:11:39','',3372,'https://translucentcomputing.com/wp-content/uploads/2021/05/icon-rp.png',0,'attachment','image/png',0),(2894,4,'2021-05-09 20:20:59','2021-05-10 00:20:59','','top-banner2','','inherit','open','closed','','top-banner2','','','2021-10-06 21:46:28','2021-10-07 01:46:28','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/top-banner2.jpg',0,'attachment','image/jpeg',0),(2895,4,'2021-05-09 20:22:01','2021-05-10 00:22:01','','pink-icon','','inherit','open','closed','','pink-icon','','','2021-09-03 06:16:12','2021-09-03 10:16:12','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/pink-icon.png',0,'attachment','image/png',0),(2897,4,'2021-05-09 20:25:44','2021-05-10 00:25:44','','icon-quote-pink','','inherit','open','closed','','icon-quote-pink','','','2021-09-03 06:15:56','2021-09-03 10:15:56','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/icon-quote-pink.png',0,'attachment','image/png',0),(2903,4,'2021-05-10 20:24:28','2021-05-11 00:24:28','','top-devops','','inherit','open','closed','','top-devops','','','2021-09-03 06:15:25','2021-09-03 10:15:25','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/top-devops.jpg',0,'attachment','image/jpeg',0),(2904,4,'2021-05-10 21:40:32','2021-05-11 01:40:32','','rob','','inherit','open','closed','','rob-2','','','2021-10-06 21:46:10','2021-10-07 01:46:10','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/05/rob.png',0,'attachment','image/png',0),(2905,4,'2021-05-10 21:40:33','2021-05-11 01:40:33','','rob-mobile','','inherit','open','closed','','rob-mobile-2','','','2021-10-06 21:45:51','2021-10-07 01:45:51','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/05/rob-mobile.png',0,'attachment','image/png',0),(2907,4,'2021-05-10 21:48:04','2021-05-11 01:48:04','','new-graphic','','inherit','open','closed','','new-graphic','','','2021-09-03 06:14:50','2021-09-03 10:14:50','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/05/new-graphic.png',0,'attachment','image/png',0),(2911,4,'2021-05-10 21:52:29','2021-05-11 01:52:29','','new-graphic-1','','inherit','open','closed','','new-graphic-1','','','2021-09-03 06:14:32','2021-09-03 10:14:32','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/05/new-graphic-1.png',0,'attachment','image/png',0),(2912,4,'2021-05-10 21:52:30','2021-05-11 01:52:30','','new-graphic-2','','inherit','open','closed','','new-graphic-2','','','2021-09-03 06:14:23','2021-09-03 10:14:23','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/05/new-graphic-2.png',0,'attachment','image/png',0),(2916,4,'2021-05-10 22:08:03','2021-05-11 02:08:03','','b-icon','','inherit','open','closed','','b-icon','','','2021-09-03 06:13:43','2021-09-03 10:13:43','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/b-icon.png',0,'attachment','image/png',0),(2918,4,'2021-05-10 22:10:01','2021-05-11 02:10:01','','icon-rb','','inherit','open','closed','','icon-rb','','','2021-09-03 06:13:29','2021-09-03 10:13:29','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/icon-rb.png',0,'attachment','image/png',0),(2919,4,'2021-05-10 22:10:43','2021-05-11 02:10:43','','blue-icon','','inherit','open','closed','','blue-icon','','','2021-09-03 06:13:17','2021-09-03 10:13:17','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/blue-icon.png',0,'attachment','image/png',0),(2920,4,'2021-05-10 22:19:52','2021-05-11 02:19:52','','slider1','','inherit','open','closed','','slider1','','','2021-09-03 06:13:03','2021-09-03 10:13:03','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/slider1.png',0,'attachment','image/png',0),(2921,4,'2021-05-10 22:24:46','2021-05-11 02:24:46','','slider2','','inherit','open','closed','','slider2','','','2021-09-03 06:12:41','2021-09-03 10:12:41','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/slider2.png',0,'attachment','image/png',0),(2922,4,'2021-05-10 22:27:46','2021-05-11 02:27:46','','quote','','inherit','open','closed','','quote','','','2021-09-03 06:12:25','2021-09-03 10:12:25','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/quote.png',0,'attachment','image/png',0),(2925,4,'2021-10-22 08:22:57','2021-05-13 20:57:02','','Cloud Native DevOps','','publish','closed','closed','','2925','','','2021-10-22 08:22:57','2021-10-22 12:22:57','',0,'http://www.translucentcomputing.com/?p=2925',5,'nav_menu_item','',0),(2933,4,'2021-05-14 21:51:28','2021-05-15 01:51:28','','purple-top','','inherit','open','closed','','purple-top','','','2021-09-03 06:12:10','2021-09-03 10:12:10','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/purple-top.jpg',0,'attachment','image/jpeg',0),(2934,4,'2021-05-14 21:52:24','2021-05-15 01:52:24','','purple-icon','','inherit','open','closed','','purple-icon','','','2021-10-22 05:55:49','2021-10-22 09:55:49','',3372,'https://translucentcomputing.com/wp-content/uploads/2021/05/purple-icon.png',0,'attachment','image/png',0),(2935,4,'2021-05-14 21:53:05','2021-05-15 01:53:05','','purple-b-icon','','inherit','open','closed','','purple-b-icon','','','2021-10-22 05:55:49','2021-10-22 09:55:49','',3372,'https://translucentcomputing.com/wp-content/uploads/2021/05/purple-b-icon.png',0,'attachment','image/png',0),(2936,4,'2021-05-14 21:55:11','2021-05-15 01:55:11','','purple-quote','','inherit','open','closed','','purple-quote','','','2021-10-22 05:55:49','2021-10-22 09:55:49','',3372,'https://translucentcomputing.com/wp-content/uploads/2021/05/purple-quote.png',0,'attachment','image/png',0),(2938,4,'2021-05-14 21:57:27','2021-05-15 01:57:27','','purple-icon-rb','','inherit','open','closed','','purple-icon-rb','','','2021-10-22 05:55:49','2021-10-22 09:55:49','',3372,'https://translucentcomputing.com/wp-content/uploads/2021/05/purple-icon-rb.png',0,'attachment','image/png',0),(2939,4,'2021-05-14 21:59:46','2021-05-15 01:59:46','','purple-slider2','','inherit','open','closed','','purple-slider2','','','2021-10-22 05:55:49','2021-10-22 09:55:49','',3372,'https://translucentcomputing.com/wp-content/uploads/2021/05/purple-slider2.png',0,'attachment','image/png',0),(2940,4,'2021-05-14 22:01:38','2021-05-15 02:01:38','','purple-slider-1','','inherit','open','closed','','purple-slider-1','','','2021-10-22 05:55:49','2021-10-22 09:55:49','',3372,'https://translucentcomputing.com/wp-content/uploads/2021/05/purple-slider-1.png',0,'attachment','image/png',0),(2941,4,'2021-05-14 22:05:04','2021-05-15 02:05:04','','purple-image1','','inherit','open','closed','','purple-image1','','','2021-10-22 06:54:08','2021-10-22 10:54:08','',3372,'https://translucentcomputing.com/wp-content/uploads/2021/05/purple-image1.jpg',0,'attachment','image/jpeg',0),(2942,4,'2021-05-14 22:05:58','2021-05-15 02:05:58','','purple-icon-quote','','inherit','open','closed','','purple-icon-quote','','','2021-10-22 06:57:33','2021-10-22 10:57:33','',3372,'https://translucentcomputing.com/wp-content/uploads/2021/05/purple-icon-quote.png',0,'attachment','image/png',0),(2943,4,'2021-05-14 22:06:43','2021-05-15 02:06:43','','purple-image2','','inherit','open','closed','','purple-image2','','','2021-09-03 06:06:30','2021-09-03 10:06:30','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/purple-image2.jpg',0,'attachment','image/jpeg',0),(2953,4,'2021-05-16 13:58:55','0000-00-00 00:00:00','','Translucent Digital Transformation - Edit gabi','','draft','closed','closed','','','','','2021-05-16 13:58:55','0000-00-00 00:00:00','',0,'http://translucentcomputing.com/?page_id=2953',0,'page','',0),(2956,4,'2021-05-16 20:08:22','2021-05-17 00:08:22','','icon-3','','inherit','open','closed','','icon-3','','','2021-09-03 06:06:12','2021-09-03 10:06:12','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/icon-3.png',0,'attachment','image/png',0),(2957,4,'2021-05-16 20:08:23','2021-05-17 00:08:23','','icon-2','','inherit','open','closed','','icon-2','','','2021-09-03 06:06:09','2021-09-03 10:06:09','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/icon-2.png',0,'attachment','image/png',0),(2958,4,'2021-05-16 20:08:24','2021-05-17 00:08:24','','icon-1','','inherit','open','closed','','icon-1','','','2021-09-03 06:06:00','2021-09-03 10:06:00','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/icon-1.png',0,'attachment','image/png',0),(2959,4,'2021-05-16 21:23:43','2021-05-17 01:23:43','','services-1','','inherit','open','closed','','services-1','','','2021-10-26 09:27:00','2021-10-26 13:27:00','',3541,'https://translucentcomputing.com/wp-content/uploads/2021/05/services-1.png',0,'attachment','image/png',0),(2960,4,'2021-05-16 21:23:45','2021-05-17 01:23:45','','services-3','','inherit','open','closed','','services-3','','','2021-10-26 09:27:00','2021-10-26 13:27:00','',3541,'https://translucentcomputing.com/wp-content/uploads/2021/05/services-3.png',0,'attachment','image/png',0),(2961,4,'2021-05-16 21:23:47','2021-05-17 01:23:47','','services-2','','inherit','open','closed','','services-2','','','2021-10-26 09:27:00','2021-10-26 13:27:00','',3541,'https://translucentcomputing.com/wp-content/uploads/2021/05/services-2.png',0,'attachment','image/png',0),(2972,4,'2021-05-19 21:56:02','2021-05-20 01:56:02','','Landing Page - Cloud Native DevOps Long - CL - BN','','draft','closed','closed','','cloud-native-devops-long-cl-bn','','','2021-06-15 14:05:49','2021-06-15 18:05:49','',0,'http://translucentcomputing.com/?page_id=2972',0,'page','',0),(2974,4,'2021-05-19 21:57:39','2021-05-20 01:57:39','','bg-banner-colorful','','inherit','open','closed','','bg-banner-colorful','','','2021-09-03 06:04:07','2021-09-03 10:04:07','',2972,'https://translucentcomputing.com/wp-content/uploads/2021/05/bg-banner-colorful.jpg',0,'attachment','image/jpeg',0),(2975,4,'2021-05-19 21:58:21','2021-05-20 01:58:21','','woman-colorful','','inherit','open','closed','','woman-colorful','','','2021-09-03 06:03:51','2021-09-03 10:03:51','',2972,'https://translucentcomputing.com/wp-content/uploads/2021/05/woman-colorful.png',0,'attachment','image/png',0),(2977,4,'2021-05-19 22:20:51','2021-05-20 02:20:51','','Landing Page - Cloud Native DevOps Mid - CL - BN','','draft','closed','closed','','cloud-native-devops-mid-cl-bn','','','2021-06-15 14:07:22','2021-06-15 18:07:22','',0,'http://translucentcomputing.com/?page_id=2977',0,'page','',0),(2980,4,'2021-05-19 22:27:04','2021-05-20 02:27:04','','Landing Page - Cloud Native DevOps Short Version 4 - CL - BN','','draft','closed','closed','','cloud-native-devops-short4-cl-bn','','','2021-06-15 14:07:03','2021-06-15 18:07:03','',0,'http://translucentcomputing.com/?page_id=2980',0,'page','',0),(2983,4,'2021-05-19 22:28:44','2021-05-20 02:28:44','','Landing Page - Cloud Native DevOps Short Version 5 - CL - BN','','draft','closed','closed','','cloud-native-devops-short5-cl-bn','','','2021-06-15 14:06:46','2021-06-15 18:06:46','',0,'http://translucentcomputing.com/?page_id=2983',0,'page','',0),(3009,4,'2021-05-20 14:57:18','2021-05-20 18:57:18','','Landing Page - Cloud Native DevOps Mid - CL - BN - Canada - Ontario','','draft','closed','closed','','cloud-native-devops-mid-bn-canada-ontario','','','2022-01-25 12:23:02','2022-01-25 17:23:02','',0,'http://www.translucentcomputing.com/?page_id=3009',0,'page','',0),(3012,4,'2021-05-20 15:16:59','2021-05-20 19:16:59','','Landing Page - Cloud Native DevOps Mid - CL - BN - US - Texas','','draft','closed','closed','','cloud-native-devops-mid-bn-us-texas','','','2022-01-25 12:23:02','2022-01-25 17:23:02','',0,'http://www.translucentcomputing.com/?page_id=3012',0,'page','',0),(3014,4,'2021-05-20 15:22:50','2021-05-20 19:22:50','','Landing Page - Cloud Native DevOps Mid - CL - BN - US - Georgia','','draft','closed','closed','','cloud-native-devops-mid-bn-us-georgia','','','2022-01-25 12:23:02','2022-01-25 17:23:02','',0,'http://www.translucentcomputing.com/?page_id=3014',0,'page','',0),(3016,4,'2021-05-20 15:23:16','2021-05-20 19:23:16','','Landing Page - Cloud Native DevOps Mid - CL - BN - US - California','','draft','closed','closed','','cloud-native-devops-mid-bn-us-california','','','2022-01-25 12:23:02','2022-01-25 17:23:02','',0,'http://www.translucentcomputing.com/?page_id=3016',0,'page','',0),(3018,4,'2021-05-20 15:24:03','2021-05-20 19:24:03','','Landing Page - Cloud Native DevOps Mid - CL - BN - US - New York','','draft','closed','closed','','cloud-native-devops-mid-bn-us-newyork','','','2022-01-25 12:23:02','2022-01-25 17:23:02','',0,'http://www.translucentcomputing.com/?page_id=3018',0,'page','',0),(3043,4,'2021-05-21 16:49:45','2021-05-21 20:49:45','','Landing Page - Cloud Native DevOps Long - CL - BN - US - Texas','','draft','closed','closed','','cloud-native-devops-long-bn-us-texas','','','2022-01-25 12:23:01','2022-01-25 17:23:01','',0,'http://www.translucentcomputing.com/?page_id=3043',0,'page','',0),(3045,4,'2021-05-21 16:50:29','2021-05-21 20:50:29','','Landing Page - Cloud Native DevOps Long - CL - BN - US - Georgia','','draft','closed','closed','','cloud-native-devops-long-bn-us-georgia','','','2022-01-25 12:23:01','2022-01-25 17:23:01','',0,'http://www.translucentcomputing.com/?page_id=3045',0,'page','',0),(3047,4,'2021-05-21 16:51:30','2021-05-21 20:51:30','','Landing Page - Cloud Native DevOps Long - CL - BN - US - California','','draft','closed','closed','','cloud-native-devops-long-bn-us-california','','','2022-01-25 12:23:01','2022-01-25 17:23:01','',0,'http://www.translucentcomputing.com/?page_id=3047',0,'page','',0),(3049,4,'2021-05-21 16:52:19','2021-05-21 20:52:19','','Landing Page - Cloud Native DevOps Long - CL - BN - US - New York','','draft','closed','closed','','cloud-native-devops-long-bn-us-newyork','','','2022-01-25 12:23:01','2022-01-25 17:23:01','',0,'http://www.translucentcomputing.com/?page_id=3049',0,'page','',0),(3051,4,'2021-05-21 16:57:14','2021-05-21 20:57:14','','Landing Page - Cloud Native DevOps Long - CL - BN - Canada- Ontario','','draft','closed','closed','','cloud-native-devops-long-bn-canada-ontario','','','2022-01-25 12:23:01','2022-01-25 17:23:01','',0,'http://www.translucentcomputing.com/?page_id=3051',0,'page','',0),(3057,4,'2021-05-22 16:10:26','2021-05-22 20:10:26','','toronto','','inherit','open','closed','','toronto','','','2021-10-06 21:42:59','2021-10-07 01:42:59','',3009,'https://translucentcomputing.com/wp-content/uploads/2021/05/toronto.png',0,'attachment','image/png',0),(3064,4,'2021-05-22 16:14:42','2021-05-22 20:14:42','','newyork','','inherit','open','closed','','newyork','','','2021-10-06 21:42:55','2021-10-07 01:42:55','',3049,'https://translucentcomputing.com/wp-content/uploads/2021/05/newyork.png',0,'attachment','image/png',0),(3067,4,'2021-05-22 16:17:10','2021-05-22 20:17:10','','georgia','','inherit','open','closed','','georgia','','','2021-10-06 21:42:49','2021-10-07 01:42:49','',3014,'https://translucentcomputing.com/wp-content/uploads/2021/05/georgia.png',0,'attachment','image/png',0),(3070,4,'2021-05-22 16:20:40','2021-05-22 20:20:40','','dallas','','inherit','open','closed','','dallas','','','2021-10-06 21:42:44','2021-10-07 01:42:44','',3043,'https://translucentcomputing.com/wp-content/uploads/2021/05/dallas.png',0,'attachment','image/png',0),(3073,4,'2021-05-22 16:22:07','2021-05-22 20:22:07','','houston','','inherit','open','closed','','houston','','','2021-10-06 21:42:37','2021-10-07 01:42:37','',3043,'https://translucentcomputing.com/wp-content/uploads/2021/05/houston.png',0,'attachment','image/png',0),(3076,4,'2021-05-22 16:27:10','2021-05-22 20:27:10','','california','','inherit','open','closed','','california','','','2021-10-06 21:42:20','2021-10-07 01:42:20','',3047,'https://translucentcomputing.com/wp-content/uploads/2021/05/california.png',0,'attachment','image/png',0),(3080,4,'2021-05-23 12:15:21','2021-05-23 16:15:21','','top-purple-banner','','inherit','open','closed','','top-purple-banner','','','2021-10-22 06:00:05','2021-10-22 10:00:05','',3372,'https://translucentcomputing.com/wp-content/uploads/2021/05/top-purple-banner.jpg',0,'attachment','image/jpeg',0),(3085,4,'2021-05-23 15:57:42','2021-05-23 19:57:42','','TC_BANNER_2.0-HEX121d3d','','inherit','open','closed','','tc_banner_2-0-hex121d3d','','','2021-05-23 15:57:42','2021-05-23 19:57:42','',0,'https://translucentcomputing.com/wp-content/uploads/2021/05/TC_BANNER_2.0-HEX121d3d.webm',0,'attachment','video/webm',0),(3113,4,'2021-05-30 18:15:42','2021-05-30 22:15:42','','new-home-icon3','','inherit','open','closed','','new-home-icon3','','','2021-10-26 09:23:17','2021-10-26 13:23:17','',3541,'https://translucentcomputing.com/wp-content/uploads/2021/05/new-home-icon3.png',0,'attachment','image/png',0),(3114,4,'2021-05-30 18:15:43','2021-05-30 22:15:43','','new-home-icon2','','inherit','open','closed','','new-home-icon2','','','2021-10-26 09:23:17','2021-10-26 13:23:17','',3541,'https://translucentcomputing.com/wp-content/uploads/2021/05/new-home-icon2.png',0,'attachment','image/png',0),(3115,4,'2021-05-30 18:15:43','2021-05-30 22:15:43','','new-home-icon1','','inherit','open','closed','','new-home-icon1','','','2021-10-26 09:23:17','2021-10-26 13:23:17','',3541,'https://translucentcomputing.com/wp-content/uploads/2021/05/new-home-icon1.png',0,'attachment','image/png',0),(3123,4,'2021-06-02 17:28:28','2021-06-02 21:28:28','
\r\n
\r\nFirst Name*\r\n[text* first-name class:form-contact placeholder \"John\"]\r\n
\r\n
\r\nLast Name*\r\n[text* last-name class:form-contact placeholder \"Doe\"]\r\n
\r\n
\r\nEmail*\r\n[email* email class:form-contact placeholder \"john.doe@example.com\"]\r\n
\r\n
\r\nPhone*\r\n[tel* phone class:form-contact placeholder \"555-555\"]\r\n
\r\n
\r\nYour Company Name*\r\n[text* company class:form-contact placeholder \"Translucent\"]\r\n
\r\n
\r\nHow Can We Help You?\r\n[textarea message class:form-contact placeholder \"Message\"]\r\n
\r\n
\r\n[submit class:form-btn \"Let\'s grow together\"]\r\n
\r\n
\r\nWe Treat Your Business like our Own\r\n
\r\n
\n1\nTC Form Submissions: From Translucent Main Website Bottom Contact Form\nresults@translucentcomputing.com\nresults@translucentcomputing.com, robert@translucentcomputing.com, bsankar@translucentcomputing.com\nFrom: [first-name] [last-name] <[email]>\r\nPhone: [phone]\r\nCompany: [company]\r\n\r\nMessage: [message]\nReply-To: [email]\n\n\n\n1\nService Inquiry | Thank you for contacting Translucent\nBradford Sankar \n[email]\nHi [first-name],\r\n\r\nWe would like to express our thanks for your interest in our cloud native services.\r\nWe will review your request with our team and be in touch shortly.\r\n\r\nYours sincerely,\r\nBradford Sankar\r\nYour Translucent Cloud Native Specialist!\nReply-To: Bradford Sankar \n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe phone number is invalid.','X - NOT IN USE - Main Website Bottom Contact Form','','publish','closed','closed','','landing-page-bottom-contact-form_copy','','','2022-01-26 18:17:40','2022-01-26 23:17:40','',0,'http://www.translucentcomputing.com/?post_type=wpcf7_contact_form&p=3123',0,'wpcf7_contact_form','',0),(3124,4,'2021-06-02 20:04:29','2021-06-03 00:04:29','','home2','','inherit','open','closed','','home2-2','','','2021-10-13 09:46:24','2021-10-13 13:46:24','',1924,'https://translucentcomputing.com/wp-content/uploads/2021/06/home2.jpg',0,'attachment','image/jpeg',0),(3125,4,'2021-06-02 20:04:55','2021-06-03 00:04:55','','home4','','inherit','open','closed','','home4','','','2021-10-06 21:41:19','2021-10-07 01:41:19','',1924,'https://translucentcomputing.com/wp-content/uploads/2021/06/home4.jpg',0,'attachment','image/jpeg',0),(3126,4,'2021-06-02 20:05:06','2021-06-03 00:05:06','','home3','','inherit','open','closed','','home3-2','','','2021-10-13 10:10:33','2021-10-13 14:10:33','',1924,'https://translucentcomputing.com/wp-content/uploads/2021/06/home3.jpg',0,'attachment','image/jpeg',0),(3137,4,'2021-06-18 12:47:31','2021-06-18 16:47:31','','toronto_small','','inherit','open','closed','','toronto_small','','','2021-10-06 21:40:53','2021-10-07 01:40:53','',0,'https://www.translucentcomputing.com/wp-content/uploads/2021/06/toronto_small.png',0,'attachment','image/png',0),(3138,4,'2021-06-18 12:47:37','2021-06-18 16:47:37','','toronto_medium','','inherit','open','closed','','toronto_medium','','','2021-10-06 21:40:46','2021-10-07 01:40:46','',0,'https://www.translucentcomputing.com/wp-content/uploads/2021/06/toronto_medium.png',0,'attachment','image/png',0),(3141,4,'2021-06-18 14:13:33','2021-06-18 18:13:33','','woman-colorful_small','','inherit','open','closed','','woman-colorful_small','','','2021-09-03 05:56:06','2021-09-03 09:56:06','',3051,'https://www.translucentcomputing.com/wp-content/uploads/2021/06/woman-colorful_small.png',0,'attachment','image/png',0),(3142,4,'2021-06-18 14:13:37','2021-06-18 18:13:37','','woman-colorful_medium','','inherit','open','closed','','woman-colorful_medium','','','2021-09-03 05:55:43','2021-09-03 09:55:43','',3051,'https://www.translucentcomputing.com/wp-content/uploads/2021/06/woman-colorful_medium.png',0,'attachment','image/png',0),(3143,4,'2021-06-18 14:32:25','2021-06-18 18:32:25','','bg-people-tc1_small','','inherit','open','closed','','bg-people-tc1_small','','','2021-09-03 12:28:42','2021-09-03 16:28:42','',3051,'https://www.translucentcomputing.com/wp-content/uploads/2021/06/bg-people-tc1_small.png',0,'attachment','image/png',0),(3144,4,'2021-06-18 14:32:30','2021-06-18 18:32:30','','bg-people-tc1_medium','','inherit','open','closed','','bg-people-tc1_medium','','','2021-09-03 12:28:25','2021-09-03 16:28:25','',3051,'https://www.translucentcomputing.com/wp-content/uploads/2021/06/bg-people-tc1_medium.png',0,'attachment','image/png',0),(3146,3,'2021-06-19 11:15:46','0000-00-00 00:00:00','\n

Ops/Dev/ML cheat sheet commands and code snippets.

\n\n\n\n

Docker Clean Up

\n\n\n\n
# prune\ndocker system prune\n# prune all\ndocker system prune --all\n# prune images\ndocker image prune\n# find by name and remove an image \ndocker images -a | grep \"postgres\" | awk \'{print $3}\' | xargs docker rmi\n# remove all images\ndocker rmi $(docker images -a -q)\n# find by name and remove a container\ndocker ps -a | grep \"redis-test\" | awk \'{print $1}\' | xargs docker rm\n# remove all containers\ndocker stop $(docker ps -a -q) && docker rm $(docker ps -a -q)\n# prune volumes\ndocker volume prune
\n','Shorts','','draft','open','open','','','','','2021-06-19 11:15:46','2021-06-19 15:15:46','',0,'https://translucentcomputing.com/?p=3146',0,'post','',0),(3150,3,'2021-06-19 09:09:30','2021-06-19 13:09:30','','296243-200','','inherit','open','closed','','296243-200','','','2021-09-03 05:54:33','2021-09-03 09:54:33','',3146,'https://translucentcomputing.com/wp-content/uploads/2021/06/296243-200.png',0,'attachment','image/png',0),(3156,4,'2021-06-27 22:19:22','2021-06-28 02:19:22','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:4:\"page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"2526\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','Landing Page - Repeated content','landing-page-repeated-content','publish','closed','closed','','group_60d931a2ef973','','','2021-11-08 14:39:48','2021-11-08 19:39:48','',0,'http://translucentcomputing.com/?p=3156',0,'acf-field-group','',0),(3162,4,'2021-06-27 22:19:16','2021-06-28 02:19:16','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Trusted By Logos','trusted_by_logos','publish','closed','closed','','field_60d931a311b0f','','','2021-06-27 22:21:39','2021-06-28 02:21:39','',3156,'http://translucentcomputing.com/?post_type=acf-field&p=3162',0,'acf-field','',0),(3163,4,'2021-06-27 22:19:16','2021-06-28 02:19:16','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Logo','logo','publish','closed','closed','','field_60d931a425c8c','','','2021-06-27 22:19:16','2021-06-28 02:19:16','',3162,'http://translucentcomputing.com/?post_type=acf-field&p=3163',0,'acf-field','',0),(3182,4,'2021-06-27 22:19:19','2021-06-28 02:19:19','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"block\";s:12:\"button_label\";s:0:\"\";}','Testimonials','testimonials','publish','closed','closed','','field_60d931a312092','','','2021-06-27 22:21:39','2021-06-28 02:21:39','',3156,'http://translucentcomputing.com/?post_type=acf-field&p=3182',1,'acf-field','',0),(3183,4,'2021-06-27 22:19:20','2021-06-28 02:19:20','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Text','text','publish','closed','closed','','field_60d931a81ba7d','','','2021-06-27 22:19:20','2021-06-28 02:19:20','',3182,'http://translucentcomputing.com/?post_type=acf-field&p=3183',0,'acf-field','',0),(3184,4,'2021-06-27 22:19:20','2021-06-28 02:19:20','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Picture','picture','publish','closed','closed','','field_60d931a81bb40','','','2021-06-27 22:19:20','2021-06-28 02:19:20','',3182,'http://translucentcomputing.com/?post_type=acf-field&p=3184',1,'acf-field','',0),(3185,4,'2021-06-27 22:19:20','2021-06-28 02:19:20','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Name','name','publish','closed','closed','','field_60d931a81bbf2','','','2021-06-27 22:19:20','2021-06-28 02:19:20','',3182,'http://translucentcomputing.com/?post_type=acf-field&p=3185',2,'acf-field','',0),(3186,4,'2021-06-27 22:19:20','2021-06-28 02:19:20','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Role','role','publish','closed','closed','','field_60d931a81bc35','','','2021-06-27 22:19:20','2021-06-28 02:19:20','',3182,'http://translucentcomputing.com/?post_type=acf-field&p=3186',3,'acf-field','',0),(3190,4,'2021-06-27 22:19:21','2021-06-28 02:19:21','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Contact email','ceo_email','publish','closed','closed','','field_60d931a3121f6','','','2021-06-27 22:21:39','2021-06-28 02:21:39','',3156,'http://translucentcomputing.com/?post_type=acf-field&p=3190',2,'acf-field','',0),(3191,4,'2021-06-27 22:19:21','2021-06-28 02:19:21','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Contact Phone','ceo_phone','publish','closed','closed','','field_60d931a31223d','','','2021-06-27 22:21:40','2021-06-28 02:21:40','',3156,'http://translucentcomputing.com/?post_type=acf-field&p=3191',3,'acf-field','',0),(3192,4,'2021-06-27 22:19:21','2021-06-28 02:19:21','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Contact address','ceo_address','publish','closed','closed','','field_60d931a312283','','','2021-06-27 22:21:40','2021-06-28 02:21:40','',3156,'http://translucentcomputing.com/?post_type=acf-field&p=3192',4,'acf-field','',0),(3193,4,'2021-06-27 22:19:21','2021-06-28 02:19:21','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Footer kubernetes image','footer_kubernetes_image','publish','closed','closed','','field_60d931a3122c3','','','2021-06-27 22:21:40','2021-06-28 02:21:40','',3156,'http://translucentcomputing.com/?post_type=acf-field&p=3193',5,'acf-field','',0),(3195,4,'2021-06-27 22:32:26','2021-06-28 02:32:26','','gotoloans','','inherit','open','closed','','gotoloans-2','','','2021-09-03 05:54:21','2021-09-03 09:54:21','',2526,'https://translucentcomputing.com/wp-content/uploads/2021/06/gotoloans.png',0,'attachment','image/png',0),(3198,4,'2021-07-01 08:32:41','2021-07-01 12:32:41','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Background - medium','background_m','publish','closed','closed','','field_60ddb5aec032b','','','2021-07-01 08:32:41','2021-07-01 12:32:41','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=3198',1,'acf-field','',0),(3199,4,'2021-07-01 08:32:41','2021-07-01 12:32:41','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Background - small','background_s','publish','closed','closed','','field_60ddb5bac032c','','','2021-07-01 08:32:41','2021-07-01 12:32:41','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=3199',2,'acf-field','',0),(3200,4,'2021-07-01 08:32:42','2021-07-01 12:32:42','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','People background - medium','people_background_m','publish','closed','closed','','field_60ddb5d3c032d','','','2021-07-01 08:52:51','2021-07-01 12:52:51','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=3200',12,'acf-field','',0),(3201,4,'2021-07-01 08:32:43','2021-07-01 12:32:43','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','People background - small','people_background_s','publish','closed','closed','','field_60ddb5ddc032e','','','2021-07-01 08:52:51','2021-07-01 12:52:51','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=3201',13,'acf-field','',0),(3202,4,'2021-07-01 08:33:46','2021-07-01 12:33:46','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Background - medium','background_m','publish','closed','closed','','field_60ddb5ff59178','','','2021-07-01 08:33:46','2021-07-01 12:33:46','',2665,'http://translucentcomputing.com/?post_type=acf-field&p=3202',1,'acf-field','',0),(3203,4,'2021-07-01 08:33:46','2021-07-01 12:33:46','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Background - small','background_s','publish','closed','closed','','field_60ddb60859179','','','2021-07-01 08:33:46','2021-07-01 12:33:46','',2665,'http://translucentcomputing.com/?post_type=acf-field&p=3203',2,'acf-field','',0),(3204,4,'2021-07-01 08:33:47','2021-07-01 12:33:47','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','People background - medium','people_background_m','publish','closed','closed','','field_60ddb6155917a','','','2021-07-01 08:53:22','2021-07-01 12:53:22','',2665,'http://translucentcomputing.com/?post_type=acf-field&p=3204',13,'acf-field','',0),(3205,4,'2021-07-01 08:33:48','2021-07-01 12:33:48','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','People background - small','people_background_s','publish','closed','closed','','field_60ddb61f5917b','','','2021-07-01 08:53:22','2021-07-01 12:53:22','',2665,'http://translucentcomputing.com/?post_type=acf-field&p=3205',14,'acf-field','',0),(3207,4,'2021-07-01 08:38:41','2021-07-01 12:38:41','','0013_tc_landingpage_TOP_BANNERS_CITY_CALIFA_01','','inherit','open','closed','','0013_tc_landingpage_top_banners_city_califa_01','','','2021-10-06 21:40:11','2021-10-07 01:40:11','',3047,'https://translucentcomputing.com/wp-content/uploads/2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_CALIFA_01.png',0,'attachment','image/png',0),(3208,4,'2021-07-01 08:38:53','2021-07-01 12:38:53','','0013_tc_landingpage_TOP_BANNERS_CITY_CALIFA_01','','inherit','open','closed','','0013_tc_landingpage_top_banners_city_califa_01-2','','','2021-10-06 21:40:01','2021-10-07 01:40:01','',3047,'https://translucentcomputing.com/wp-content/uploads/2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_CALIFA_01-1.png',0,'attachment','image/png',0),(3210,4,'2021-07-01 08:39:34','2021-07-01 12:39:34','','0013_tc_landingpage_TOP_BANNERS_CITY_GEORGIA_ATLANTA','','inherit','open','closed','','0013_tc_landingpage_top_banners_city_georgia_atlanta','','','2021-10-06 21:39:42','2021-10-07 01:39:42','',3045,'https://translucentcomputing.com/wp-content/uploads/2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_GEORGIA_ATLANTA.png',0,'attachment','image/png',0),(3211,4,'2021-07-01 08:39:49','2021-07-01 12:39:49','','0013_tc_landingpage_TOP_BANNERS_CITY_GEORGIA_ATLANTA','','inherit','open','closed','','0013_tc_landingpage_top_banners_city_georgia_atlanta-2','','','2021-09-03 05:52:18','2021-09-03 09:52:18','',3045,'https://translucentcomputing.com/wp-content/uploads/2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_GEORGIA_ATLANTA-1.png',0,'attachment','image/png',0),(3213,4,'2021-07-01 08:40:22','2021-07-01 12:40:22','','0013_tc_landingpage_TOP_BANNERS_CITY_NEWYORK','','inherit','open','closed','','0013_tc_landingpage_top_banners_city_newyork','','','2021-09-03 05:52:02','2021-09-03 09:52:02','',3049,'https://translucentcomputing.com/wp-content/uploads/2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_NEWYORK.png',0,'attachment','image/png',0),(3214,4,'2021-07-01 08:40:35','2021-07-01 12:40:35','','0013_tc_landingpage_TOP_BANNERS_CITY_NEWYORK','','inherit','open','closed','','0013_tc_landingpage_top_banners_city_newyork-2','','','2021-09-03 12:26:49','2021-09-03 16:26:49','',3049,'https://translucentcomputing.com/wp-content/uploads/2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_NEWYORK-1.png',0,'attachment','image/png',0),(3216,4,'2021-07-01 08:42:05','2021-07-01 12:42:05','','0013_tc_landingpage_TOP_BANNERS_CITY_ONTARIO_01_TORONTO','','inherit','open','closed','','0013_tc_landingpage_top_banners_city_ontario_01_toronto','','','2021-09-03 12:26:24','2021-09-03 16:26:24','',3051,'https://translucentcomputing.com/wp-content/uploads/2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_ONTARIO_01_TORONTO.png',0,'attachment','image/png',0),(3217,4,'2021-07-01 08:42:17','2021-07-01 12:42:17','','0013_tc_landingpage_TOP_BANNERS_CITY_ONTARIO_01_TORONTO','','inherit','open','closed','','0013_tc_landingpage_top_banners_city_ontario_01_toronto-2','','','2021-09-03 12:25:53','2021-09-03 16:25:53','',3051,'https://translucentcomputing.com/wp-content/uploads/2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_ONTARIO_01_TORONTO-1.png',0,'attachment','image/png',0),(3219,4,'2021-07-01 08:42:56','2021-07-01 12:42:56','','0013_tc_landingpage_TOP_BANNERS_CITY_TEXAS_04_Houston','','inherit','open','closed','','0013_tc_landingpage_top_banners_city_texas_04_houston','','','2021-09-03 12:25:39','2021-09-03 16:25:39','',3043,'https://translucentcomputing.com/wp-content/uploads/2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_TEXAS_04_Houston.png',0,'attachment','image/png',0),(3220,4,'2021-07-01 08:43:14','2021-07-01 12:43:14','','0013_tc_landingpage_TOP_BANNERS_CITY_TEXAS_04_Houston','','inherit','open','closed','','0013_tc_landingpage_top_banners_city_texas_04_houston-2','','','2021-09-03 12:24:41','2021-09-03 16:24:41','',3043,'https://translucentcomputing.com/wp-content/uploads/2021/07/0013_tc_landingpage_TOP_BANNERS_CITY_TEXAS_04_Houston-1.png',0,'attachment','image/png',0),(3227,4,'2021-07-01 08:52:49','2021-07-01 12:52:49','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image - medium','image_m','publish','closed','closed','','field_60ddba8aef029','','','2021-07-01 08:52:49','2021-07-01 12:52:49','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=3227',6,'acf-field','',0),(3228,4,'2021-07-01 08:52:49','2021-07-01 12:52:49','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image - small','image_s','publish','closed','closed','','field_60ddba94ef02a','','','2021-07-01 08:52:49','2021-07-01 12:52:49','',2626,'http://translucentcomputing.com/?post_type=acf-field&p=3228',7,'acf-field','',0),(3229,4,'2021-07-01 08:53:21','2021-07-01 12:53:21','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image - medium','image_m','publish','closed','closed','','field_60ddbaaf262b1','','','2021-07-01 08:53:21','2021-07-01 12:53:21','',2665,'http://translucentcomputing.com/?post_type=acf-field&p=3229',6,'acf-field','',0),(3230,4,'2021-07-01 08:53:21','2021-07-01 12:53:21','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image - small','image_s','publish','closed','closed','','field_60ddbab6262b2','','','2021-07-01 08:53:21','2021-07-01 12:53:21','',2665,'http://translucentcomputing.com/?post_type=acf-field&p=3230',7,'acf-field','',0),(3248,4,'2021-08-04 21:46:46','2021-08-05 01:46:46','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:4:\"page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:2:\"46\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','Case Studies Menu','case-studies-menu','publish','closed','closed','','group_610b427e78c72','','','2021-08-04 21:46:47','2021-08-05 01:46:47','',0,'http://translucentcomputing.com/?post_type=acf-field-group&p=3248',0,'acf-field-group','',0),(3249,4,'2021-08-04 21:46:46','2021-08-05 01:46:46','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Case Study','case_study','publish','closed','closed','','field_610b428cb78ef','','','2021-08-04 21:46:46','2021-08-05 01:46:46','',3248,'http://translucentcomputing.com/?post_type=acf-field&p=3249',0,'acf-field','',0),(3250,4,'2021-08-04 21:46:47','2021-08-05 01:46:47','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title','title','publish','closed','closed','','field_610b429bb78f0','','','2021-08-04 21:46:47','2021-08-05 01:46:47','',3249,'http://translucentcomputing.com/?post_type=acf-field&p=3250',0,'acf-field','',0),(3251,4,'2021-08-04 21:46:47','2021-08-05 01:46:47','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:6:\"visual\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Text','text','publish','closed','closed','','field_610b42a3b78f1','','','2021-08-04 21:46:47','2021-08-05 01:46:47','',3249,'http://translucentcomputing.com/?post_type=acf-field&p=3251',1,'acf-field','',0),(3252,4,'2021-08-04 21:46:47','2021-08-05 01:46:47','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_610b42b3b78f2','','','2021-08-04 21:46:47','2021-08-05 01:46:47','',3249,'http://translucentcomputing.com/?post_type=acf-field&p=3252',2,'acf-field','',0),(3253,4,'2021-08-04 21:46:47','2021-08-05 01:46:47','a:10:{s:4:\"type\";s:9:\"page_link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"post_type\";a:1:{i:0;s:4:\"page\";}s:8:\"taxonomy\";s:0:\"\";s:10:\"allow_null\";i:0;s:14:\"allow_archives\";i:1;s:8:\"multiple\";i:0;}','Link','link','publish','closed','closed','','field_610b42c7b78f3','','','2021-08-04 21:46:47','2021-08-05 01:46:47','',3249,'http://translucentcomputing.com/?post_type=acf-field&p=3253',3,'acf-field','',0),(3262,9,'2021-08-25 15:13:09','2021-08-25 19:13:09','\n
\"\"
\n','','','inherit','closed','closed','','869-revision-v1','','','2021-08-25 15:13:09','2021-08-25 19:13:09','',869,'https://translucentcomputing.com/2021/08/869-revision-v1/',0,'revision','',0),(3263,9,'2021-08-25 15:16:26','2021-08-25 19:16:26','\n

Ops/Dev/ML cheat sheet commands and code snippets.

\n\n\n\n

Docker Clean Up

\n\n\n\n
# prune\ndocker system prune\n# prune all\ndocker system prune --all\n# prune images\ndocker image prune\n# find by name and remove an image \ndocker images -a | grep \"postgres\" | awk \'{print $3}\' | xargs docker rmi\n# remove all images\ndocker rmi $(docker images -a -q)\n# find by name and remove a container\ndocker ps -a | grep \"redis-test\" | awk \'{print $1}\' | xargs docker rm\n# remove all containers\ndocker stop $(docker ps -a -q) && docker rm $(docker ps -a -q)\n# prune volumes\ndocker volume prune
\n','Shorts','','inherit','closed','closed','','3146-autosave-v1','','','2021-08-25 15:16:26','2021-08-25 19:16:26','',3146,'https://translucentcomputing.com/2021/08/3146-autosave-v1/',0,'revision','',0),(3265,4,'2021-08-31 12:46:26','2021-08-31 16:46:26','\n
TC Audio
\n\n\n\n

What is Kubernetes, and should I blame my DevOps engineer?

\n\n\n\n

Kubernetes is a container orchestration system. It lets you deploy, scale, and manage containerized applications. Kubernetes is always deployed as a cluster, made up of a master node and many minion nodes. Each node is a virtual machine(VM) running in the cloud, consuming cloud resources.

\n\n\n\n

Cloud complexity and costs have forced many companies to migrate their cloud infrastructure into Kubernetes clusters. Their cloud resources get put into containers (\'containerized\'), vast Kubernetes clusters are created, and workloads are deployed into these clusters. Since the clusters are running within the cloud, the cloud providers are more than happy to assist in such a move.

\n\n\n\n

Once you go through this migration process however, you might find that your cloud bill has remained the same or increased. And there\'s no reason to blame your poor, overworked DevOps engineer. By the time you finish reading this article, you\'ll see how they\'re going to be a powerful ally against your rising cloud costs. So let\'s examine strategies that can help you to manage a Kubernetes cluster without breaking the bank.

\n\n\n\n

Almost half of C-suite executives cited cloud complexity (47%) as the factor that will have the most negative impact on cloud computing’s ROI over the next five years

\"avatar\"

Cloud Complexity Management survey results

Source
\n\n\n\n

What\'s in Our Cloud?

\n\n\n\n
\"The
The Cloud
\n\n\n\n

For analysis, we are looking at the cloud as an amorphous monolith made up of CPU, GPU (and TPU), RAM, disks, and networking. These are the primary resources that cloud providers sell. A Kubernetes cluster created and deployed in the cloud uses allocated resources to run containers.

\n\n\n\n

Kubernetes in the Cloud

\n\n\n\n
\"Kubernetes
Kubernetes Cluster
\n\n\n\n

The next logical question is: What is Kubernetes actually doing with those cloud resources? Well, the first thing it does is claim its space and marshall its resources. Think of Kubernetes as a sponge in a too-narrow beaker, dipped in not-quite-enough water. It\'s going to soak up every drop that you give it, and expand to the exact size of the container that it\'s in.

\n\n\n\n

So before cluster creation, you define the number of nodes (the size of the beaker for our sponge) and types and power levels (the amount of water poured onto the sponge) of virtual machines that are used to create the nodes. Cloud providers have a lot of different kinds of virtual machines from which to choose. The usual approach is to pick something in the middle range, not too big and not too small, something that feels like it has just enough RAM and CPU. An educated guesstimation. Your DevOps engineer can help you to do the research and make these decisions.

\n\n\n\n
\"Example
Heterogeneous Workloads - Underutilized Node Resources
\n\n\n\n

Remember: Kubernetes claims these resources and does not share with outside processes.

\n\n\n\n

Workloads running within the Kubernetes cluster are heterogeneous. The microservices, functions, jobs, databases, etc. running in the cluster utilize different amounts of cloud resources through the nodes. It\'s important to understand what resources your typical tasks are going to use, and tailor your nodes accordingly. Some workloads, like Jenkins builder for example, are CPU heavy. Other workloads, like the ElasticSearch databases, are RAM heavy. Still others, such as machine learning training jobs, are GPU heavy. Using a Kubernetes cluster that is composed of the same type of nodes to support these different workloads means you are losing money, since the cluster is not cost-optimized for any of the workloads.

\n\n\n\n
Table 1: Average Monthly Cost for Virtual Machines used by a Node
\n\n\n\n
NodeCPURAMMonthly Cost
Standard VM27.5GB$47.00
High RAM VM213GB$60.00
High CPU VM21.8GB$36.00
\n\n\n\n
* Using average cloud provider prices, not reflecting any individual cloud provider.
\n\n\n\n

Pool Strategy

\n\n\n\n
\"Kubernetes
Kubernetes Cluster
\n\n\n\n

Every major cloud provider, including AWS, GPC, and Azure, gives the ability to group multiple nodes into a node pool. The nodes in the node pool are of the same kind of virtual machine, with the same cloud resource specs. By creating specific pools that are cost-optimized for particular workloads, you can reduce the total cost of the cluster. For example, moving the CPU intensive workload to the CPU node pool, where high CPU and low RAM virtual machines have been configured, would reduce the total cost.

\n\n\n\n

This is where your DevOps engineer can really help out. They can perform a performance test that charts the typical resource usage of a given workload. Armed with that knowledge, you can assign the right processes to the right node pools.

\n\n\n\n

Using the pricing from Table 1, here is an example of a 5 node Kubernetes cluster. There are 3 clusters with 5 same kinds of nodes and one cluster with a mix of different types of nodes.

\n\n\n\n
Table 2: Average Yearly Cost for 5 Node Kubernetes Cluster.
\n\n\n\n
PoolsCPURAMMonthly CostYearly Cost
Pool (5) Standard VM1037.5GB$235$2820
Pool (5) High RAM VM1065GB$300$3600
Pool (5) High CPU VM109GB$180$900
Pool High CPU (2 VM) + Pool High RAM (1 VM) + Pool (2 VM) Standard1047.8GB$226$2712
\n\n\n\n

Using a cluster with only standard VM nodes will leave the cluster nodes underutilized with leftover CPU and/or RAM capacity. Using only high RAM VM\'s for the nodes will be costly since most likely the running workloads will not only be RAM heavy, any CPU-heavy workloads will max out the CPU allocations for the node and leave you with underutilized RAM.

\n\n\n\n

Understanding your workloads is essential to optimize the total cost of the cluster. Starting with a naive cluster configuration with homogenous VM\'s in the cluster node pool, and profiling your workloads with monitoring tools will give you insight into the cluster workloads. The feedback can then be used to create more specialized pools and fully utilize the nodes and reduce the total cost of the cloud cost for the cluster.

\n\n\n\n

Preemptible Strategy

\n\n\n\n

All the major cloud providers allow users to create virtual machines from their excess capacity. AWS has EC2 Spot, Google has Preemptible VM and Azure has Low-priority VM. These virtual machines are short-lived. The expectation is that they will be shut down, and the workloads running on them terminated. Depending on the cloud, you get different time limits. Since these are not regular virtual machines and they are short-lived, you can save up to 90% on the cost of running these virtual machines. These types of virtual machines are recommended to be used for batch jobs and fault-tolerant applications. They can also be used with the Kubernetes cluster.

\n\n\n\n
Table 3: Average Monthly Cost for Preemptible Virtual Machines used by Node
\n\n\n\n
NodeCPURAMMonthly Cost
Standard VM27.5GB$14.00
High RAM VM213GB$18.00
High CPU VM21.8GB$10.00
\n\n\n\n
*Using average cloud provider prices, not reflecting any individual cloud provider.
\n\n\n\n

Now you might be thinking, what is Kubernetes supposed to do with a bunch of virtual machines that are going to be terminated often, most likely daily? The answer is: Quite a bit. Because a Kubernetes cluster is self-healing; it will restart the nodes and workloads automatically after being terminated. So it can make use of these temporary VMs with more CPU and RAM at a fraction of the cost of regular VMs.

\n\n\n\n

Having a pool that is composed of preemptible virtual machines is essential when it comes to reducing the total cost of the cluster and running workloads efficiently. Let\'s use a Jenkins builder workload to show how the preemptible pool can save money and improve efficiency. The Jenkins builder is a job created by a DevOps engineer that pulls source code, compiles the code, runs tests and builds the Docker image.

\n\n\n\n
Use Case 1 - Swap
\n\n\n\n

\n\n\n\n

The Jenkins builder workload on average takes from 3 min to 20 min. In this use case, we are replacing the High CPU VM with Preemptible High CPU VM.

\n\n\n\n
Table 4: Preemptible Pool 5 Node Kubernetes Cluster
\n\n\n\n
PoolsCPURAMMonthly CostYearly Cost
Pool High CPU (2 VM) + Pool High RAM (1 VM) + Pool (2 VM) Standard1047.8GB$226$2712
Preemptible Pool High CPU (2 VM) + Pool High RAM (1 VM) + Pool (2 VM) Standard1047.8GB$174$2088
\n\n\n\n

Here we swap the High CPU VM\'s with Preemptible High CPU VM\'s. This is a direct replacement with VM\'s that have the same specification. The daily termination of the virtual machines only affects the Jenkins builder workloads if the virtual machine is terminated in the middle of the job. Since we are saving over $700 a year, we can allow for the terminated job to be executed again after the nodes have been restarted.

\n\n\n\n
Use Case 2 - Use more
\n\n\n\n

\n\n\n\n

The cost is a lot less for the preemptible virtual machines and we can use virtual machines with more CPU and RAM.

\n\n\n\n
Table 5: Preemptible Pool 5 Node Kubernetes Cluster with more resources
\n\n\n\n
PoolsCPURAMMonthly CostYearly Cost
Pool High CPU (2 VM) + Pool High RAM (1 VM) + Pool (2 VM) Standard1047.8GB$226$2712
Preemptible Pool High CPU (2 VM) + Pool High RAM (1 VM) + Pool (2 VM) Standard1451.4GB$196$2352
\n\n\n\n

Staying below the price of the non-preemptable cluster pool configuration, we increased both the CPU and RAM. The High CPU VMs were replaced by more powerful Preempitable High CPU VMs. It allows for the Jenkins Builder workloads to complete faster. It also leads to higher throughput since we can run more Jenkins Builder workloads within a given day. This makes our developers and QA happy, and brings a grin to our face when we see the lower cloud bill.

\n\n\n\n

Conclusion

\n\n\n\n

In this post, we hope to have thoroughly answered the question \'What is Kubernetes\', before looking at using node pools and preemptible virtual machines as a strategy to help with managing cloud costs for the Kubernetes cluster. Working alongside your DevOps engineer, these strategies will reduce cloud costs and allow you to be more efficient with the cloud resources used by the cluster nodes. In the next post, we will look at strategies for reducing the cost by examining the workloads.

\n\n\n\n
Links
\n\n\n\n\n\n\n\n

\n','What is Kubernetes, and Why are My Cloud Costs So High?! - Part 1','','inherit','closed','closed','','1405-revision-v1','','','2021-08-31 12:46:26','2021-08-31 16:46:26','',1405,'https://www.translucentcomputing.com/2021/08/1405-revision-v1/',0,'revision','',0),(3266,4,'2021-08-31 12:47:20','2021-08-31 16:47:20','\n
TC Audio
\n\n\n\n

Intro

\n\n\n\n

Bimodal is a term often used in statistics that Gartner applied to the IT industry back in 2015. Gartner defined bimodal as \"... the practice of managing two separate but coherent styles of work: one focused on predictability; the other on exploration\". The two modes were named Mode 1 and Mode 2 (Am I the only one who thinks of Thing One and Thing Two?).  

\n\n\n\n
  • Mode 1 - \"... is optimized for areas that are more predictable and well-understood. It focuses on exploiting what is known, while renovating the legacy environment ...\"
  • Mode 2 - \"is exploratory, experimenting to solve new problems and optimized for areas of uncertainty.\"
\n\n\n\n

The bimodal concept was created to guide the IT industry in the process of digital transformation, let’s explore how that fits the Kubernetes ecosystem and Helm charts.

\n\n\n\n

The preferred method for packaging is Helm (68%) followed by managed Kubernetes offerings (19%).

\n\n\n\n

Helm

\n\n\n\n

Helm has emerged as the de facto way to manage Kubernetes applications(apps). Helm is a package manager for Kubernetes. The package is called a Chart, and it defines Kubernetes apps. There is a vast and vibrant Chart community that continuously delivers new Charts and bug fixes for current Charts. At Translucent, we leverage the community Charts to provide value to our clients.

\n\n\n\n

Chart

\n\n\n\n

There has been a rapid evolution of Chart development in both quality and innovation. The improved quality gives Chart user the ability to customize the deployment of the Kubernetes apps with more configuration options. The Chart developers are innovating by providing Charts for Kubernetes apps that pack more technologies into a single app. This recent trend in the growth of these monolithic Charts leads me to wonder if we should apply the bimodal concept to Chart development?

\n\n\n\n

Monolithic

\n\n\n\n

As the Kubernetes ecosystem continuously matures, a standard Kubernetes app pattern has emerged. App developers, following Microservice architecture, break up the app into smaller pieces, called Microservices. Besides the Microservices, the databases, jobs, and additional tools are deployed and distributed as smaller pieces in Kubernetes. Since most of the apps follow a standard pattern, there is a tendency to try to cram all the app microservices, databases, jobs, etc. into a single Chart. While such optimizations may appear to be beneficial, they feel incongruent with the DevOps or SRE approach.

\n\n\n\n
\"\"
\n\n\n\n

Conclusion

\n\n\n\n

Suppressing my inner DevOps disgruntled voices, I do have to acknowledge that packaging a whole app into a single Chart comes with benefits. You offload the app knowhow to the people who created the app and you are left with a one-click install of a single Chart. You don\'t have to worry about deploying individual pieces and gluing them together. I call these monolithic Charts, Mode 1.

\n\n\n\n

Mode 1 Helm Charts are well suited for infrastructure technologies like CI/CD tools. At Translucent we use Jenkins and Spinnaker for CI/CD. Both are packaged as Mode 1 Helm Charts. They combine all the technologies that are needed for deployment.

\n\n\n\n

We use Mode 2 Helm Charts for everything that makes up our client\'s apps. Since we continuously innovate, either by improving the Chart or by engaging in continuous deployments and delivery of individual Microservices, we require the flexibility that Mode 2 Helm Charts provide.

\n','Bimodal Helm Charts','','inherit','closed','closed','','1324-revision-v1','','','2021-08-31 12:47:20','2021-08-31 16:47:20','',1324,'https://www.translucentcomputing.com/2021/08/1324-revision-v1/',0,'revision','',0),(3268,4,'2021-08-31 12:48:57','2021-08-31 16:48:57','\n

You’ve undoubtedly heard it all: how every company is a tech or data company, how everyone and their dog are using tech (even your neighbour’s toddler is watching vlogs), how data analytics are uncovering new revenue streams and even generating new “smart” products.

\n\n\n\n

These days, everything can be “smart”. Your home, your phone, your fridge, your car and even your neighbour (sometimes). But what about companies? The smartest companies are capitalizing on the digital momentum that’s driving every part of our world – there are small fortunes to be made with big data, and processes that can be revitalized by tech.

\n\n\n\n

But when we’re talking about “smart” companies, we’re not just talking about businesses that are digitally connected to their customers and networks. We’re talking about companies that are using tech and data effectively – by being smart about it.

\n\n\n\n

In this multi-part blog series, we’ll explore:

\n\n\n\n
  • Why you need to be smart about tech and data…as soon as possible
  • Organizational needs and digital readiness
  • What tools you need to adopt and how
  • How your leadership and your people will play a part
\n\n\n\n

Part 1 - The urgency: Think NOW about tech and data...or lose tomorrow

\n\n\n\n

“What’s the big rush anyway?”

\n\n\n\n

There are moments in every company’s lifespan when it must pivot or perish. The pace of digital advancement is accelerating many businesses toward their next big decision, much more quickly than ever before.

\n\n\n\n

Several years ago, everyone suddenly started investing in tech and digital solutions. Now, 98.8% of firms are actively investing in big data and artificial intelligence (AI) initiatives, with 80% of them naming AI as the most disruptive technology. However, even for industry-leading firms, becoming more data-driven is still a struggle – only 14.6% have been able to deploy their AI into the production stage.

\n\n\n\n

While some aspects of digital adoption may be slower, digital networks and algorithms are still becoming more woven into the fabric of more and more companies – and it’s important to know that this transformation is not restricted to just tech companies. Translucent Computing worked with the Canadian Black Book to digitize their vehicle valuation platform. Everything that used to be done through printed books is now done through the web or mobile apps, which powers and empowers Canadian dealers.

\n\n\n\n

Over time, many industries and economies will start to work differently, too – some of them have already been irrevocably disrupted. Things like talent pools, customer preferences and capital investment will continue to shift and the ripple effects will reach across every industry – including yours. And if you don’t take smart steps to make sure your company is shipshape for the journey, those waves could sink your business.

\n\n\n\n

So where do you and your company currently stand in this historic race to digitize and digitalize (yes, there’s a difference)? Have you thought about how tech and data will impact your business, and are you getting smart about how to manage these impacts?

\n\n\n\n

“Why is it important to be smart about tech and data?”

\n\n\n\n

Here’s the business case for you, up front. If you don’t make plans to keep pace now, you may have more to make up for later. At some point, it may be too late, and you may be forced to bow out of the race.

\n\n\n\n

That’s why it’s important to be “smart” about tech and data, because if you don’t think about how they can benefit your business, you’ll miss out on opportunities to:

\n\n\n\n
\"\"
\n
  • streamline your business processes to reduce costs and eliminate waste
  • use market insights to not only increase profit, but also enhance customer experience and engagement
  • deliver and market your products and services faster, in more-effective and more-targeted ways
  • empower your teams to make quicker, data-informed decisions
\n
\n\n\n\n

And because throwing money at the latest and greatest tech and research won’t make all your problems disappear. Even simply being a tech company is no longer enough for actual tech companies, especially if they’re not strategic about how they’re using and keeping pace with tech as well. At Translucent Computing, we created a R&D Center of Excellence a few years ago to stay ahead of the curve. Most of our products and services are driven by this COE, which allows us to explore, train and educate our people to stay on the cutting edge.

\n\n\n\n

So yes, you can be using tech and data and similar tools to aim for all of the above outcomes, but are you thinking “smart” so you can manage your smart tools?

\n\n\n\n

“How can I be smart about tech and data?”

\n\n\n\n

Ask questions. Ask the experts. Ask the users. Ask within your own organization, and not just about what they know about tech and data. Ask them what data your company already has at its fingertips, and what data it can get. You don’t need to know how to write an algorithm – you just need to understand how certain solutions can support your business. In many cases, the AI that drives explosive growth isn’t that sophisticated – but you need to understand that potential before it can be realized in a way that suits your objectives.

\n\n\n\n
\"\"
\n

It’s all about knowledge learning and sharing. Translucent Computing holds weekly meetings with our tech and non-tech teams so we can all share information and educate each other on the latest tech developments, including advancements in data and AI. Learning is in our company DNA, and we know it’s the key to growth and working in tech. Continuous improvement and learning allows us to be thought leaders who can partner with businesses to help them integrate business and tech.

\n
\n\n\n\n

Be discerning. Just because something is new and trendy doesn’t mean it’ll be a fit for your business, processes and customers. Smart investments in tech require considerable forethought and thinking through the practical applications for your business goals. Your company will need your discerning eye on what data to collect and measure. As businesses become more reliant on data, analytics, AI, automation and the IoT, it’s important that you’re measuring the right things that will bring you the right insights for the right growth.

\n\n\n\n

Think like a tech company. So many business articles talk about companies becoming tech companies – that’s because there are many benefits to thinking like one, even if tech isn’t what you sell. It’s about thinking in ways that integrate and embody the possibilities of tech innovation, and imagining your business as one that is data-driven and tech-enabled. For example, a car loan company like GoToLoans isn’t in the business of tech, but tech is in their business. Their loan processes already lend (pun intended) themselves well to automated platforms and applications that Translucent Computing helped develop. The fact is: Many companies already have what it takes to take the next step – you just need to think about how you can use your resources and look at your processes differently, whether they’re ones you have now or ones you’ll eventually integrate into your business.

\n\n\n\n
\"\"
\n\n\n\n

Stay tuned for part 2 of this blog series, where we discuss what businesses can be thinking about when doing a pulse check to see where they’re at in their digital journey. Because if they’re not planning on being smart about using tech to prolong and propel their vision, then they may as well be dead.

\n','Survival of the smartest: What companies need now for a data-driven future','','inherit','closed','closed','','1699-revision-v1','','','2021-08-31 12:48:57','2021-08-31 16:48:57','',1699,'https://www.translucentcomputing.com/2021/08/1699-revision-v1/',0,'revision','',0),(3272,17,'2021-09-03 19:19:02','2021-09-03 23:19:02','','Home','','inherit','closed','closed','','1924-revision-v1','','','2021-09-03 19:19:02','2021-09-03 23:19:02','',1924,'https://www.translucentcomputing.com/2021/09/1924-revision-v1/',0,'revision','',0),(3274,17,'2021-09-03 19:23:50','2021-09-03 23:23:50','','Blog','','inherit','closed','closed','','922-revision-v1','','','2021-09-03 19:23:50','2021-09-03 23:23:50','',922,'https://www.translucentcomputing.com/2021/09/922-revision-v1/',0,'revision','',0),(3275,17,'2021-09-03 19:31:19','2021-09-03 23:31:19','','About Us','','inherit','closed','closed','','10-revision-v1','','','2021-09-03 19:31:19','2021-09-03 23:31:19','',10,'https://www.translucentcomputing.com/2021/09/10-revision-v1/',0,'revision','',0),(3277,17,'2021-09-03 19:55:43','2021-09-03 23:55:43','','Our Process','','inherit','closed','closed','','60-revision-v1','','','2021-09-03 19:55:43','2021-09-03 23:55:43','',60,'https://www.translucentcomputing.com/2021/09/60-revision-v1/',0,'revision','',0),(3278,17,'2021-09-03 20:00:05','2021-09-04 00:00:05','','Case Studies','','inherit','closed','closed','','46-revision-v1','','','2021-09-03 20:00:05','2021-09-04 00:00:05','',46,'https://www.translucentcomputing.com/2021/09/46-revision-v1/',0,'revision','',0),(3279,17,'2021-09-03 20:22:55','2021-09-04 00:22:55','','Canadian Black Book Case Study','','inherit','closed','closed','','804-revision-v1','','','2021-09-03 20:22:55','2021-09-04 00:22:55','',804,'https://www.translucentcomputing.com/2021/09/804-revision-v1/',0,'revision','',0),(3280,17,'2021-09-03 20:26:38','2021-09-04 00:26:38','','The Hospital for Sick Children Case Study','','inherit','closed','closed','','38-revision-v1','','','2021-09-03 20:26:38','2021-09-04 00:26:38','',38,'https://www.translucentcomputing.com/2021/09/38-revision-v1/',0,'revision','',0),(3281,17,'2021-09-03 20:58:56','2021-09-04 00:58:56','','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2021-09-03 20:58:56','2021-09-04 00:58:56','',57,'https://www.translucentcomputing.com/2021/09/57-revision-v1/',0,'revision','',0),(3282,17,'2021-09-03 21:02:55','2021-09-04 01:02:55','','TEKStack AI','','inherit','closed','closed','','1822-revision-v1','','','2021-09-03 21:02:55','2021-09-04 01:02:55','',1822,'https://www.translucentcomputing.com/2021/09/1822-revision-v1/',0,'revision','',0),(3283,17,'2021-09-03 21:21:35','2021-09-04 01:21:35','','Kubernetes Professional Services','','inherit','closed','closed','','2196-revision-v1','','','2021-09-03 21:21:35','2021-09-04 01:21:35','',2196,'https://www.translucentcomputing.com/2021/09/2196-revision-v1/',0,'revision','',0),(3284,17,'2021-09-03 21:25:13','2021-09-04 01:25:13','\n

Imagine that you’re buying a smartphone. It’s the phone that you’ve desperately been waiting for, and you like the price. It\'s heavily discounted; the price is right. The phone is already in your shopping cart. Just as you’re about to make the purchase, you realize that you don’t have enough money to buy the phone. Fortunately, there’s an option for you to finance the phone through a micro-loan.

\n\n\n\n

You click Apply for a Loan on the checkout screen. All you have to do is provide your name, address, and ID validation. Behind the scenes, an AI Automated Loan Process validates your identity, performs an immediate credit score check, connects to your bank, and voilà! It’s approved in 5 minutes and you have your phone!

\n\n\n\n

You expect a simple user experience.

\n\n\n\n

Now think about your own organization. Maybe you feel your systems are “good enough”, but good enough won’t keep you competitive in today’s marketplace. Have you made data a first-class citizen? Have you ensured a simple experience for your people and customers? Are you using modern practices, automation and tools to improve efficiency, make more money and increase savings, without increasing overhead costs?

\n\n\n\n

If you answered “no” or had difficulty answering any of these questions, then you should really be thinking about a data driven approach to your organization’s transformation. Let data drive the transformation.

\n\n\n\n

Why do you care? You care because this is how your customers want to do business especially in the current market conditions. What\'s important to them must be important to you. Happy customers = higher market share.

\n\n\n\n

Before we dive into the awesomeness of data driven digital transformation, you need to understand the three types of transformations.

\n\n\n\n

Digitization, Digitalization, and Data Driven Digital Transformation

\n\n\n\n
\n
\n

Digitization refers to “creating a digital representation of physical objects”. This is also known as a digital artifact. For example, a paper contract can be digitized by converting it into a PDF document. The digitized version of the document is easier to distribute, and is easier to search through.

\n\n\n\n

Digitalization refers to “enabling, improving, or transforming business processes by leveraging digital [technologies] and digitized data”. For example, the traditional process of signing a contract means signing multiple paper copies (one for each party) of the contract by pen, and delivering a copy to each party by hand. When this process is digitalized, the single copy of the contract is the source of truth. It is signed by each party using software. All parties are notified electronically of the signing, and have access to the same electronic copy of the contract. The new process uses less paper, is a lot less complex than the old process, has a single source of truth and is automated so all parties can sign when they are available to. Taking business to much more effective level.

\n\n\n\n

Data Driven Digital Transformations enable you to achieve digitization and/or digitalization. Whatever your organization’s goals. Translucent can help you be competitive.

\n
\n\n\n\n
\n
\"\"
\n
\n
\n\n\n\n

What Data Represents Your Organization?

\n\n\n\n

You’re not Netflix. Or Facebook. Or Google. Your organization has its own unique identity, so you shouldn’t try to be like another organization. Let us help you carve your journey, by defining the data that best represents your organization. We help make your data malleable, so that other services (internal and external) may consume your data with less friction. Data is the new oil. Translucent can help you unlock your businesses untapped potential using data to give you insights and automate processes. Competing today and building for the future!

\n\n\n\n

What’s In It For Your Organization?

\n\n\n\n

There’s a new urgency for organizations to go digital, thanks in large part to the lockdowns and restrictions put in place to curb the spread of Covid19.

\n\n\n\n

We help your organization with:

\n\n\n\n
\n
\n

1. Scale. If, for example, you suddenly get more visitors to your site on Black Friday, can your infrastructure scale to handle it? It’s midnight, and most of your customers are sleeping. Why are you over-provisioned, when nobody is using your service? We build a system that is responsive to your customers’ needs. This saves you money on low-demand days, and ensures that you continue to operate smoothly on high-demand days, with minimal disruption and cost.

\n
\n\n\n\n
\n

2. Greater collaboration. Silos can be an organization’s worst enemy. They just slow every priority down. Nobody wants that. Translucent’s data driven approach builds efficient platforms and automated processes to enable greater collaboration amongst your internal and external users as well as your customers. When teams can deal with issues faster, it means faster feature rollouts, and responses to your customers needs.

\n
\n\n\n\n
\n

3. Easy integration. Every modern business partnership requires data integration. You may have to send data to a third party. You may have to receive data from a third party. With a data driven first approach, we help design secure APIs that enable your partners to easily connect with your services. This makes integration easier and less costly. Making you more money enabling cross-selling opportunities.

\n
\n
\n\n\n\n
\n
\n
\"\"
\n
\n\n\n\n
\n

The Translucent Difference

\n\n\n\n

At Translucent, we pride ourselves on our passion for technology, innovation, and change.

\n\n\n\n

We’re not here to fill your head with buzzwords. We’re here to get to work.

\n\n\n\n

Technology can be complex and confusing to navigate. We’re not here to push complex flows on you. We’re here to take complex processes and simplify them, because we understand technology well.

\n\n\n\n

We know this, because we’ve done it before, many times over.

\n
\n
\n','What is Data Driven Digital Transformation?','','inherit','closed','closed','','2249-revision-v1','','','2021-09-03 21:25:13','2021-09-04 01:25:13','',2249,'https://www.translucentcomputing.com/2021/09/2249-revision-v1/',0,'revision','',0),(3285,17,'2021-09-03 21:28:02','2021-09-04 01:28:02','','Cloud Native Application Development','','inherit','closed','closed','','2884-revision-v1','','','2021-09-03 21:28:02','2021-09-04 01:28:02','',2884,'https://www.translucentcomputing.com/2021/09/2884-revision-v1/',0,'revision','',0),(3286,17,'2021-09-03 21:32:30','2021-09-04 01:32:30','\n

Cost-effective automation of your operations and infrastructure, with a focus on what drives business value.

\n','Cloud Native DevOps Consulting','','inherit','closed','closed','','2851-revision-v1','','','2021-09-03 21:32:30','2021-09-04 01:32:30','',2851,'https://www.translucentcomputing.com/2021/09/2851-revision-v1/',0,'revision','',0),(3287,17,'2021-09-03 21:37:47','2021-09-04 01:37:47','','Digital Transformation','','inherit','closed','closed','','44-revision-v1','','','2021-09-03 21:37:47','2021-09-04 01:37:47','',44,'https://www.translucentcomputing.com/2021/09/44-revision-v1/',0,'revision','',0),(3288,17,'2021-09-03 21:40:59','2021-09-04 01:40:59','','DevOps','','inherit','closed','closed','','18-revision-v1','','','2021-09-03 21:40:59','2021-09-04 01:40:59','',18,'https://www.translucentcomputing.com/2021/09/18-revision-v1/',0,'revision','',0),(3289,17,'2021-09-03 21:45:07','2021-09-04 01:45:07','','Machine Learning','','inherit','closed','closed','','16-revision-v1','','','2021-09-03 21:45:07','2021-09-04 01:45:07','',16,'https://www.translucentcomputing.com/2021/09/16-revision-v1/',0,'revision','',0),(3290,17,'2021-09-03 21:50:36','2021-09-04 01:50:36','','Services','','inherit','closed','closed','','829-revision-v1','','','2021-09-03 21:50:36','2021-09-04 01:50:36','',829,'https://www.translucentcomputing.com/2021/09/829-revision-v1/',0,'revision','',0),(3291,17,'2021-09-03 21:51:40','2021-09-04 01:51:40','','Microservices','','inherit','closed','closed','','14-revision-v1','','','2021-09-03 21:51:40','2021-09-04 01:51:40','',14,'https://www.translucentcomputing.com/2021/09/14-revision-v1/',0,'revision','',0),(3292,4,'2021-09-07 13:21:22','2021-09-07 17:21:22','\n

Translucent General Privacy Statement

\n\n\n\n

Your Privacy Rights

\n\n\n\n

Translucent Computing Inc. (“Translucent”) is governed by the Personal Information Protection and Electronic Documents Act (“PIPEDA”), and the Canadian Standards Association Model Code for the Protection of Personal Information, which it incorporates. The law gives you rights concerning the privacy of your personal information.

\n\n\n\n

As a technology and business intelligence company that provides services for institutions, our customers may be subject to other legislation that protects personal information. Translucent complies with the privacy requirements of its customers upon notice of the relevant legislation and requirements. Translucent may have the role of a recipient of personal information or of an agent for its customers, depending on the circumstances.

\n\n\n\n

Translucent is responsible for the personal information we collect and hold. To ensure this accountability, we have developed this privacy statement, and trained our staff about our policies and practices.

\n\n\n\n

The language used in this privacy statement is based on Canadian legal terms.  Personal information is defined in PIPEDA as “information about an identifiable individual”. 

\n\n\n\n

Translucent respects that potentially identifiable information (i.e., that could be used with other information to identify an individual) may be protected under laws applicable to Translucent’s customers or users.

\n\n\n\n

Why do we need personal information?

\n\n\n\n

Translucent collects or has access to the following data that may include personal information:

\n\n\n\n

User information – Translucent may collect personal contact information, such as name, physical or electronic address, and phone number. User information may include a unique identifier created to identify a user of a Translucent product, and any data entered by, related to or that may identify a user.

\n\n\n\n

Financial information – Translucent may collect financial information such as billing name and address, credit card number, and the number of employees within a customer organization that will be using the services, apps or other products.

\n\n\n\n

Employee information – Translucent collects personal information from job applicants and from its employees such as resumes, curriculum vitae, and information to manage its human resources.

\n\n\n\n

Customer information – In providing services to its customers, Translucent may collect personal information or access personal information that its customers have collected as needed to develop an app or provide services.

\n\n\n\n

Maintenance access to Customer information – In providing maintenance and improvements to a platform, app or other product, Translucent may have access to personal information collected by its customers or by their users.

\n\n\n\n

Cookies and website management information – In managing its website, Translucent may use cookies that identify your browser.

\n\n\n\n

How do we collect your personal information?

\n\n\n\n

Our methods of collection of personal information and the specific information collected within an app are specified in each privacy policy addendum; each one named for a product that Translucent has made generally available.  For services and for applications or other products developed under a contract with a customer, the contract may contain such specifics and the requirements imposed by the customer.

\n\n\n\n

How will we get consent?

\n\n\n\n

Consent is typically requested in the application or, if part of a service agreement, through a consent process agreed-upon with the customer.

\n\n\n\n

What will we use your information for?  Who in our organization will see or use your information?

\n\n\n\n

Personal information is used as applicable to provide services, manage payments, or manage our human resources.  Certain aggregate information is used to develop better products.  Specific information and uses are more particularly described in the applicable privacy policy addendum, or if part of a service agreement, in the applicable service agreement.

\n\n\n\n

Who else will see or use your personal information?

\n\n\n\n

As more particularly described in each privacy policy addendum, where the data is hosted by another entity, that entity may have access to your personal information.  

\n\n\n\n

Under certain circumstances, Translucent will disclose your personal information:

\n\n\n\n
  • when we are required or authorized by law to do so, for example if a court issues a subpoena;
  • when you have consented to the disclosure;
  • when the services we are providing to you requires us give your information to third parties your consent will be implied, unless you tell us otherwise;
  • where it is necessary to establish or collect fees;
  • if we engage a third party to provide administrative services to us (like computer back-up services or archival file storage) and the third party is bound by our Privacy Policy;
  • to the resulting entity, if we are involved in a merger or acquisition of our company and the third party has agreed to keep it confidential;
  • if the information is Publicly Available Personal Information, as it is defined under the Personal Information Protection and Electronic Documents Act.
\n\n\n\n

Translucent does not otherwise provide your personal information to third parties without consent.

\n\n\n\n

How can you update your information or ask us to update your information?  What about correcting errors?

\n\n\n\n

You may ask for access to any personal information we hold about you.  If permitted under the law, we may charge reasonable fees for archive, retrieval and redacting costs.

\n\n\n\n

If we hold information about you and you can establish that it is not accurate, complete and up-to-date, we will take reasonable steps to correct it.

\n\n\n\n

Your rights to access your personal information are not absolute. We may deny access when:

\n\n\n\n
  • it is required or authorized by law;
  • to do so would reveal confidential commercial information, and the personal information cannot be severed from the record;
  • to do so could reasonably be expected to threaten the life or security of another individual, and the personal information cannot be severed from the record; or
  • the information was generated in the course of a formal dispute resolution process.
\n\n\n\n

If we deny your request for access to, or refuse a request to correct information, we will explain why. 

\n\n\n\n

If you have any questions, or wish to access your personal information, please write to our Privacy Officer at, 1 Yonge Street, Suite 1801, Toronto, Ontario, M5E1W7

\n\n\n\n

.

\n\n\n\n

If you are not satisfied with our response, the Privacy Commissioner of Canada can be reached at 112 Kent Street, Ottawa Ontario, K1A 1H3, 1.800.282.1376.

\n\n\n\n

How will we store your information and keep personal information secure?

\n\n\n\n

Translucent uses a variety of security safeguards in its products and services.  To maximize such security, users are encouraged to create strong passwords and to refrain from sharing passwords.  Further details about storage and security related to personal information is available in each privacy addendum.

\n\n\n\n

When and how will we make changes to this privacy statement?

\n\n\n\n

Translucent will update its website from time to time by adding a privacy addendum.  Translucent may change a privacy addendum or this privacy statement from time to time.  You are encouraged to check this privacy statement from time to time to ensure that you are aware of the most up to date version.

\n','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2021-09-07 13:25:52','2021-09-07 17:25:52','',0,'https://www.translucentcomputing.com/?page_id=3292',0,'page','',0),(3293,4,'2021-09-07 13:21:22','2021-09-07 17:21:22','\n

Translucent General Privacy Statement

\n\n\n\n

Your Privacy Rights

\n\n\n\n

Translucent Computing Inc. (“Translucent”) is governed by the Personal Information Protection and Electronic Documents Act (“PIPEDA”), and the Canadian Standards Association Model Code for the Protection of Personal Information, which it incorporates. The law gives you rights concerning the privacy of your personal information.

\n\n\n\n

As a technology and business intelligence company that provides services for institutions, our customers may be subject to other legislation that protects personal information. Translucent complies with the privacy requirements of its customers upon notice of the relevant legislation and requirements. Translucent may have the role of a recipient of personal information or of an agent for its customers, depending on the circumstances.

\n\n\n\n

Translucent is responsible for the personal information we collect and hold. To ensure this accountability, we have developed this privacy statement, and trained our staff about our policies and practices.

\n\n\n\n

The language used in this privacy statement is based on Canadian legal terms.  Personal information is defined in PIPEDA as “information about an identifiable individual”. 

\n\n\n\n

Translucent respects that potentially identifiable information (i.e., that could be used with other information to identify an individual) may be protected under laws applicable to Translucent’s customers or users.

\n\n\n\n

Why do we need personal information?

\n\n\n\n

Translucent collects or has access to the following data that may include personal information:

\n\n\n\n

User information – Translucent may collect personal contact information, such as name, physical or electronic address, and phone number. User information may include a unique identifier created to identify a user of a Translucent product, and any data entered by, related to or that may identify a user.

\n\n\n\n

Financial information – Translucent may collect financial information such as billing name and address, credit card number, and the number of employees within a customer organization that will be using the services, apps or other products.

\n\n\n\n

Employee information – Translucent collects personal information from job applicants and from its employees such as resumes, curriculum vitae, and information to manage its human resources.

\n\n\n\n

Customer information – In providing services to its customers, Translucent may collect personal information or access personal information that its customers have collected as needed to develop an app or provide services.

\n\n\n\n

Maintenance access to Customer information – In providing maintenance and improvements to a platform, app or other product, Translucent may have access to personal information collected by its customers or by their users.

\n\n\n\n

Cookies and website management information – In managing its website, Translucent may use cookies that identify your browser.

\n\n\n\n

How do we collect your personal information?

\n\n\n\n

Our methods of collection of personal information and the specific information collected within an app are specified in each privacy policy addendum; each one named for a product that Translucent has made generally available.  For services and for applications or other products developed under a contract with a customer, the contract may contain such specifics and the requirements imposed by the customer.

\n\n\n\n

How will we get consent?

\n\n\n\n

Consent is typically requested in the application or, if part of a service agreement, through a consent process agreed-upon with the customer.

\n\n\n\n

What will we use your information for?  Who in our organization will see or use your information?

\n\n\n\n

Personal information is used as applicable to provide services, manage payments, or manage our human resources.  Certain aggregate information is used to develop better products.  Specific information and uses are more particularly described in the applicable privacy policy addendum, or if part of a service agreement, in the applicable service agreement.

\n\n\n\n

Who else will see or use your personal information?

\n\n\n\n

As more particularly described in each privacy policy addendum, where the data is hosted by another entity, that entity may have access to your personal information.  

\n\n\n\n

Under certain circumstances, Translucent will disclose your personal information:

\n\n\n\n
  • when we are required or authorized by law to do so, for example if a court issues a subpoena;
  • when you have consented to the disclosure;
  • when the services we are providing to you requires us give your information to third parties your consent will be implied, unless you tell us otherwise;
  • where it is necessary to establish or collect fees;
  • if we engage a third party to provide administrative services to us (like computer back-up services or archival file storage) and the third party is bound by our Privacy Policy;
  • to the resulting entity, if we are involved in a merger or acquisition of our company and the third party has agreed to keep it confidential;
  • if the information is Publicly Available Personal Information, as it is defined under the Personal Information Protection and Electronic Documents Act.
\n\n\n\n

Translucent does not otherwise provide your personal information to third parties without consent.

\n\n\n\n

How can you update your information or ask us to update your information?  What about correcting errors?

\n\n\n\n

You may ask for access to any personal information we hold about you.  If permitted under the law, we may charge reasonable fees for archive, retrieval and redacting costs.

\n\n\n\n

If we hold information about you and you can establish that it is not accurate, complete and up-to-date, we will take reasonable steps to correct it.

\n\n\n\n

Your rights to access your personal information are not absolute. We may deny access when:

\n\n\n\n
  • it is required or authorized by law;
  • to do so would reveal confidential commercial information, and the personal information cannot be severed from the record;
  • to do so could reasonably be expected to threaten the life or security of another individual, and the personal information cannot be severed from the record; or
  • the information was generated in the course of a formal dispute resolution process.
\n\n\n\n

If we deny your request for access to, or refuse a request to correct information, we will explain why. 

\n\n\n\n

If you have any questions, or wish to access your personal information, please write to our Privacy Officer at, 1 Yonge Street, Suite 1801, Toronto, Ontario, M5E1W7

\n\n\n\n

.

\n\n\n\n

If you are not satisfied with our response, the Privacy Commissioner of Canada can be reached at 112 Kent Street, Ottawa Ontario, K1A 1H3, 1.800.282.1376.

\n\n\n\n

How will we store your information and keep personal information secure?

\n\n\n\n

Translucent uses a variety of security safeguards in its products and services.  To maximize such security, users are encouraged to create strong passwords and to refrain from sharing passwords.  Further details about storage and security related to personal information is available in each privacy addendum.

\n\n\n\n

When and how will we make changes to this privacy statement?

\n\n\n\n

Translucent will update its website from time to time by adding a privacy addendum.  Translucent may change a privacy addendum or this privacy statement from time to time.  You are encouraged to check this privacy statement from time to time to ensure that you are aware of the most up to date version.

\n','Privacy Policy','','inherit','closed','closed','','3292-revision-v1','','','2021-09-07 13:21:22','2021-09-07 17:21:22','',3292,'https://www.translucentcomputing.com/2021/09/3292-revision-v1/',0,'revision','',0),(3294,4,'2021-09-07 13:22:45','2021-09-07 17:22:45','\n

Website Terms of Use

\n\n\n\n

Use of this Website 

\n\n\n\n

By using this website, you agree to these terms of use. These terms of use are an Ontario contract. If you do not agree with the terms of use, do not use this website.

\n\n\n\n

Translucent Computing Inc. (“Translucent”) may change or modify the website or these terms of use at any time without notice or liability. You may not change or modify this contract in any way.

\n\n\n\n

Permitted Users/Jurisdiction/Age Requirements 

\n\n\n\n

If you are in a jurisdiction where the use of this website is illegal or prohibited, do not use this website. Translucent is not responsible and will not be liable for your use of this website in contravention of any laws. The website is provided for use by persons who are at least 19 years old and who can form legally binding contracts under applicable law. By using this website, you represent that you are at least 19 years old have the authority to enter into this contract.

\n\n\n\n

These terms of use are governed by the laws of the Province of Ontario and the federal laws of Canada applicable in Ontario. You attorn to the exclusive jurisdiction of the courts of Ontario. Any claim or dispute that you have arising from use of this website or any related matters must be commenced in a court of competent jurisdiction in the Province of Ontario within 6 months after the claim or cause of action arises, after which the claim or cause of action is forever barred.

\n\n\n\n

Privacy 

\n\n\n\n

Translucent collects, uses and discloses personal information in accordance with the Privacy Statement. By using this website, you agree to the terms of the Privacy Statement.

\n\n\n\n

Proprietary Rights

\n\n\n\n

Our Content:

\n\n\n\n

Except where expressly stated otherwise and/or referenced in these terms of use, all right, title and interest in and to this website and all content, source code, processes, designs, URLs, domain names, marks and logos forming any part of Translucent’s website (collectively, \"Our Content\") is fully vested in Translucent or our licensors and are protected by applicable copyrights, trade-marks, patents, trade secrets or other proprietary rights and laws. You agree that Our Content is licensed subject to the terms of these terms of use, including the disclaimers and limitations of liability herein. You may not copy, reproduce, modify, or re-use in any way the design or content of this website. This includes but is not limited to: designs, iconography, text, graphics, audio-visual materials, multimedia elements, photographs, videos, sound recordings, reports, documents, software, information, formulae, patterns, data and any other work. Nor may you allow any other person or entity to engage in any of the foregoing.

\n\n\n\n

Third Party Content: 

\n\n\n\n

The technology logos or corporate logos, other than those belonging to Translucent, referenced on this website are the property of the respective companies referenced and Translucent does not claim or imply any relationship or endorsement by or for these entities or products.

\n\n\n\n

Links from this website:

\n\n\n\n

Translucent does not monitor or review the content of third parties’ websites which may be linked from this website. Translucent is not responsible for the accuracy or use of content or products contained therein, nor is Translucent responsible for the privacy practices or terms of use on such websites.

\n\n\n\n

Opinions or materials on any third-party site are not necessarily shared or endorsed by Translucent and Translucent should not be regarded as the publisher or in any way responsible for such opinions or material. Translucent will not accept any responsibility for any loss or damage, howsoever caused, resulting from your interaction with third parties. 

\n\n\n\n

Links to this website:

\n\n\n\n

You may not create a link to any page of this website without prior written consent from Translucent. If you do create a link to a page of this website you do so at your own risk and the exclusions and limitations set out above will apply to your use of this website by linking to it.

\n\n\n\n

Trademarks/Use of Name and Logo 

\n\n\n\n

The name \"Translucent Computing\", the website \"https://translucent.local/\", and the logos used by Translucent are trade-marks, trade-names and service-marks (\"Marks\") owned by Translucent. Nothing on this website grants you any rights to use the Marks. You shall not use the name \"Translucent\" or \"Translucent Computing\" or any of their logos without prior written permission from Translucent.

\n\n\n\n

Disclaimers/Limitation of Liability 

\n\n\n\n

Your sole and exclusive remedy for dissatisfaction with this website is to stop using this website. Translucent is not liable to you or anyone else for any decision made or action taken based on reliance upon the information contained on or provided through this website.

\n\n\n\n

THE INFORMATION CONTAINED IN THIS WEBSITE IS PROVIDED BY TRANSLUCENT “AS IS” FOR GENERAL INFORMATION PURPOSES. WHILE TRANSLUCENT ENDEAVOURS TO KEEP THE INFORMATION UP TO DATE AND CORRECT, TRANSLUCENT MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ABOUT THE COMPLETENESS, ACCURACY, RELIABILITY, SUITABILITY OR AVAILABILITY WITH RESPECT TO THE WEBSITE OR THE INFORMATION, PRODUCTS, SERVICES, OR RELATED GRAPHICS CONTAINED ON THE WEBSITE FOR ANY PURPOSE. TRANSLUCENT MAKES NO GUARANTEE THAT ANY INFORMATION CONTAINED ON THIS SITE WILL BE ERROR-FREE. YOUR USE OF THIS SITE AND ANY RELIANCE YOU PLACE ON SUCH INFORMATION IS THEREFORE STRICTLY AT YOUR SOLE RISK. IN NO EVENT WILL TRANSLUCENT BE LIABLE FOR ANY LOSS OR DAMAGE INCLUDING WITHOUT LIMITATION, INDIRECT OR CONSEQUENTIAL LOSS OR DAMAGE, OR ANY LOSS OR DAMAGE WHATSOEVER ARISING FROM LOSS OF DATA OR PROFITS ARISING OUT OF, OR IN CONNECTION WITH, THE USE OF THIS WEBSITE. TRANSLUCENT TAKES NO RESPONSIBILITY FOR, AND WILL NOT BE LIABLE FOR, THE WEBSITE BEING TEMPORARILY UNAVAILABLE.  

\n\n\n\n

When using the website, information will be transmitted over a medium that is beyond the control and jurisdiction of Translucent. Translucent assumes no liability for or relating to the delay, failure, interruption or corruption of any data or other information transmitted in connection with use of this website.  Translucent does not represent that files available for downloading will be free from any code that contains contaminating or destructive properties, including infections, viruses, worms or Trojan horses.

\n\n\n\n

General Terms 

\n\n\n\n

Translucent’s failure to act with respect to a breach of these terms of use by you or anyone else does not waive our right to act with respect to subsequent or similar breaches. These terms of use set forth the entire understanding and agreement between you and Translucent with respect to the use of this website. In the event of a conflict between these terms of use and any statement or materials on the website, these terms of use prevail.

\n\n\n\n

Translucent may assign these terms and the website at its sole discretion without your consent and without notice or liability. You may not assign this contract or your rights or obligations under this contract.

\n\n\n\n

The parties have expressly requested and required that this contract and all other related documents be drawn up in the English language. Les parties conviennent et exigent expressement que ce contrat et tous les documents qui s\'y rapportent soient rediges en anglais.

\n\n\n\n

If you have any questions about these terms of use or the website in general, please contact us via e-mail at info@translucentcomputing.com.

\n\n\n\n

Termination/Survival 

\n\n\n\n

If you breach these terms of use, in addition to any other remedies it may have, Translucent has the right to terminate your use of this website or any portion of it. Translucent will not be liable to you or anyone else for any such termination. The Disclaimers/Limitation of Liability provision survives any termination of these terms.

\n','Terms of Use','','publish','closed','closed','','terms-of-use','','','2021-09-07 13:28:14','2021-09-07 17:28:14','',0,'https://www.translucentcomputing.com/?page_id=3294',0,'page','',0),(3295,4,'2021-09-07 13:22:45','2021-09-07 17:22:45','\n

Website Terms of Use

\n\n\n\n

Use of this Website 

\n\n\n\n

By using this website, you agree to these terms of use. These terms of use are an Ontario contract. If you do not agree with the terms of use, do not use this website.

\n\n\n\n

Translucent Computing Inc. (“Translucent”) may change or modify the website or these terms of use at any time without notice or liability. You may not change or modify this contract in any way.

\n\n\n\n

Permitted Users/Jurisdiction/Age Requirements 

\n\n\n\n

If you are in a jurisdiction where the use of this website is illegal or prohibited, do not use this website. Translucent is not responsible and will not be liable for your use of this website in contravention of any laws. The website is provided for use by persons who are at least 19 years old and who can form legally binding contracts under applicable law. By using this website, you represent that you are at least 19 years old have the authority to enter into this contract.

\n\n\n\n

These terms of use are governed by the laws of the Province of Ontario and the federal laws of Canada applicable in Ontario. You attorn to the exclusive jurisdiction of the courts of Ontario. Any claim or dispute that you have arising from use of this website or any related matters must be commenced in a court of competent jurisdiction in the Province of Ontario within 6 months after the claim or cause of action arises, after which the claim or cause of action is forever barred.

\n\n\n\n

Privacy 

\n\n\n\n

Translucent collects, uses and discloses personal information in accordance with the Privacy Statement. By using this website, you agree to the terms of the Privacy Statement.

\n\n\n\n

Proprietary Rights

\n\n\n\n

Our Content:

\n\n\n\n

Except where expressly stated otherwise and/or referenced in these terms of use, all right, title and interest in and to this website and all content, source code, processes, designs, URLs, domain names, marks and logos forming any part of Translucent’s website (collectively, \"Our Content\") is fully vested in Translucent or our licensors and are protected by applicable copyrights, trade-marks, patents, trade secrets or other proprietary rights and laws. You agree that Our Content is licensed subject to the terms of these terms of use, including the disclaimers and limitations of liability herein. You may not copy, reproduce, modify, or re-use in any way the design or content of this website. This includes but is not limited to: designs, iconography, text, graphics, audio-visual materials, multimedia elements, photographs, videos, sound recordings, reports, documents, software, information, formulae, patterns, data and any other work. Nor may you allow any other person or entity to engage in any of the foregoing.

\n\n\n\n

Third Party Content: 

\n\n\n\n

The technology logos or corporate logos, other than those belonging to Translucent, referenced on this website are the property of the respective companies referenced and Translucent does not claim or imply any relationship or endorsement by or for these entities or products.

\n\n\n\n

Links from this website:

\n\n\n\n

Translucent does not monitor or review the content of third parties’ websites which may be linked from this website. Translucent is not responsible for the accuracy or use of content or products contained therein, nor is Translucent responsible for the privacy practices or terms of use on such websites.

\n\n\n\n

Opinions or materials on any third-party site are not necessarily shared or endorsed by Translucent and Translucent should not be regarded as the publisher or in any way responsible for such opinions or material. Translucent will not accept any responsibility for any loss or damage, howsoever caused, resulting from your interaction with third parties. 

\n\n\n\n

Links to this website:

\n\n\n\n

You may not create a link to any page of this website without prior written consent from Translucent. If you do create a link to a page of this website you do so at your own risk and the exclusions and limitations set out above will apply to your use of this website by linking to it.

\n\n\n\n

Trademarks/Use of Name and Logo 

\n\n\n\n

The name \"Translucent Computing\", the website \"https://translucent.local/\", and the logos used by Translucent are trade-marks, trade-names and service-marks (\"Marks\") owned by Translucent. Nothing on this website grants you any rights to use the Marks. You shall not use the name \"Translucent\" or \"Translucent Computing\" or any of their logos without prior written permission from Translucent.

\n\n\n\n

Disclaimers/Limitation of Liability 

\n\n\n\n

Your sole and exclusive remedy for dissatisfaction with this website is to stop using this website. Translucent is not liable to you or anyone else for any decision made or action taken based on reliance upon the information contained on or provided through this website.

\n\n\n\n

THE INFORMATION CONTAINED IN THIS WEBSITE IS PROVIDED BY TRANSLUCENT “AS IS” FOR GENERAL INFORMATION PURPOSES. WHILE TRANSLUCENT ENDEAVOURS TO KEEP THE INFORMATION UP TO DATE AND CORRECT, TRANSLUCENT MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, ABOUT THE COMPLETENESS, ACCURACY, RELIABILITY, SUITABILITY OR AVAILABILITY WITH RESPECT TO THE WEBSITE OR THE INFORMATION, PRODUCTS, SERVICES, OR RELATED GRAPHICS CONTAINED ON THE WEBSITE FOR ANY PURPOSE. TRANSLUCENT MAKES NO GUARANTEE THAT ANY INFORMATION CONTAINED ON THIS SITE WILL BE ERROR-FREE. YOUR USE OF THIS SITE AND ANY RELIANCE YOU PLACE ON SUCH INFORMATION IS THEREFORE STRICTLY AT YOUR SOLE RISK. IN NO EVENT WILL TRANSLUCENT BE LIABLE FOR ANY LOSS OR DAMAGE INCLUDING WITHOUT LIMITATION, INDIRECT OR CONSEQUENTIAL LOSS OR DAMAGE, OR ANY LOSS OR DAMAGE WHATSOEVER ARISING FROM LOSS OF DATA OR PROFITS ARISING OUT OF, OR IN CONNECTION WITH, THE USE OF THIS WEBSITE. TRANSLUCENT TAKES NO RESPONSIBILITY FOR, AND WILL NOT BE LIABLE FOR, THE WEBSITE BEING TEMPORARILY UNAVAILABLE.  

\n\n\n\n

When using the website, information will be transmitted over a medium that is beyond the control and jurisdiction of Translucent. Translucent assumes no liability for or relating to the delay, failure, interruption or corruption of any data or other information transmitted in connection with use of this website.  Translucent does not represent that files available for downloading will be free from any code that contains contaminating or destructive properties, including infections, viruses, worms or Trojan horses.

\n\n\n\n

General Terms 

\n\n\n\n

Translucent’s failure to act with respect to a breach of these terms of use by you or anyone else does not waive our right to act with respect to subsequent or similar breaches. These terms of use set forth the entire understanding and agreement between you and Translucent with respect to the use of this website. In the event of a conflict between these terms of use and any statement or materials on the website, these terms of use prevail.

\n\n\n\n

Translucent may assign these terms and the website at its sole discretion without your consent and without notice or liability. You may not assign this contract or your rights or obligations under this contract.

\n\n\n\n

The parties have expressly requested and required that this contract and all other related documents be drawn up in the English language. Les parties conviennent et exigent expressement que ce contrat et tous les documents qui s\'y rapportent soient rediges en anglais.

\n\n\n\n

If you have any questions about these terms of use or the website in general, please contact us via e-mail at info@translucentcomputing.com.

\n\n\n\n

Termination/Survival 

\n\n\n\n

If you breach these terms of use, in addition to any other remedies it may have, Translucent has the right to terminate your use of this website or any portion of it. Translucent will not be liable to you or anyone else for any such termination. The Disclaimers/Limitation of Liability provision survives any termination of these terms.

\n','Terms of Use','','inherit','closed','closed','','3294-revision-v1','','','2021-09-07 13:22:45','2021-09-07 17:22:45','',3294,'https://www.translucentcomputing.com/2021/09/3294-revision-v1/',0,'revision','',0),(3296,4,'2021-10-22 08:22:59','2021-09-07 17:24:40',' ','','','publish','closed','closed','','3296','','','2021-10-22 08:22:59','2021-10-22 12:22:59','',0,'https://www.translucentcomputing.com/?p=3296',19,'nav_menu_item','',0),(3297,4,'2021-10-22 08:22:59','2021-09-07 17:24:40',' ','','','publish','closed','closed','','3297','','','2021-10-22 08:22:59','2021-10-22 12:22:59','',0,'https://www.translucentcomputing.com/?p=3297',18,'nav_menu_item','',0),(3307,4,'2021-10-13 16:11:39','2021-10-13 20:11:39','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"about-us-new.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";a:14:{i:0;s:9:\"permalink\";i:1;s:11:\"the_content\";i:2;s:7:\"excerpt\";i:3;s:10:\"discussion\";i:4;s:8:\"comments\";i:5;s:9:\"revisions\";i:6;s:4:\"slug\";i:7;s:6:\"author\";i:8;s:6:\"format\";i:9;s:15:\"page_attributes\";i:10;s:14:\"featured_image\";i:11;s:10:\"categories\";i:12;s:4:\"tags\";i:13;s:15:\"send-trackbacks\";}s:11:\"description\";s:0:\"\";}','About Us New [Full]','about-us-new-full','publish','closed','closed','','group_6143a535cbc8b','','','2021-10-13 16:11:39','2021-10-13 20:11:39','',0,'https://www.translucentcomputing.com/?p=3307',0,'acf-field-group','',0),(3308,4,'2021-10-13 16:11:35','2021-10-13 20:11:35','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Top - Image','top-image','publish','closed','closed','','field_6143a535dfc53','','','2021-10-13 16:11:35','2021-10-13 20:11:35','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3308',0,'acf-field','',0),(3309,4,'2021-10-13 16:11:35','2021-10-13 20:11:35','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Title','title-about','publish','closed','closed','','field_6143a576598b8','','','2021-10-13 16:11:35','2021-10-13 20:11:35','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3309',1,'acf-field','',0),(3310,4,'2021-10-13 16:11:36','2021-10-13 20:11:36','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Button Call to Action','button-call','publish','closed','closed','','field_6143a7ff974b4','','','2021-10-13 16:11:36','2021-10-13 20:11:36','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3310',2,'acf-field','',0),(3311,4,'2021-10-13 16:11:36','2021-10-13 20:11:36','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Top - Mission text','top-mission','publish','closed','closed','','field_6143a535dfca2','','','2021-10-13 16:11:36','2021-10-13 20:11:36','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3311',3,'acf-field','',0),(3312,4,'2021-10-13 16:11:36','2021-10-13 20:11:36','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Circle 1','circle-1','publish','closed','closed','','field_6143aa38565c3','','','2021-10-13 16:11:36','2021-10-13 20:11:36','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3312',4,'acf-field','',0),(3313,4,'2021-10-13 16:11:36','2021-10-13 20:11:36','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Circle 2','circle-2','publish','closed','closed','','field_6143aa58565c4','','','2021-10-13 16:11:36','2021-10-13 20:11:36','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3313',5,'acf-field','',0),(3314,4,'2021-10-13 16:11:36','2021-10-13 20:11:36','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Circle 3','circle-3','publish','closed','closed','','field_6143aa67565c5','','','2021-10-13 16:11:36','2021-10-13 20:11:36','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3314',6,'acf-field','',0),(3315,4,'2021-10-13 16:11:36','2021-10-13 20:11:36','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Button CTA 2','button-call-2','publish','closed','closed','','field_6143a994eea5f','','','2021-10-13 16:11:36','2021-10-13 20:11:36','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3315',7,'acf-field','',0),(3316,4,'2021-10-13 16:11:37','2021-10-13 20:11:37','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Our Idea - Text','idea-text','publish','closed','closed','','field_6143a535dfce9','','','2021-10-13 16:11:37','2021-10-13 20:11:37','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3316',8,'acf-field','',0),(3317,4,'2021-10-13 16:11:37','2021-10-13 20:11:37','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Title','section-text','publish','closed','closed','','field_6143b4a0dd081','','','2021-10-13 16:11:37','2021-10-13 20:11:37','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3317',9,'acf-field','',0),(3318,4,'2021-10-13 16:11:37','2021-10-13 20:11:37','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Ready to be Transformed - Side text','ready-text','publish','closed','closed','','field_6143a535dfd67','','','2021-10-13 16:11:37','2021-10-13 20:11:37','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3318',10,'acf-field','',0),(3319,4,'2021-10-13 16:11:37','2021-10-13 20:11:37','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','About Translucent','about-translucent','publish','closed','closed','','field_6143a535dfdb1','','','2021-10-13 16:11:37','2021-10-13 20:11:37','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3319',11,'acf-field','',0),(3320,4,'2021-10-13 16:11:37','2021-10-13 20:11:37','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Phrase','phrase','publish','closed','closed','','field_6143a535dfdfa','','','2021-10-13 16:11:37','2021-10-13 20:11:37','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3320',12,'acf-field','',0),(3321,4,'2021-10-13 16:11:37','2021-10-13 20:11:37','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:2:\"br\";}','Author','author','publish','closed','closed','','field_6143a535dfe40','','','2021-10-13 16:11:37','2021-10-13 20:11:37','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3321',13,'acf-field','',0),(3322,4,'2021-10-13 16:11:37','2021-10-13 20:11:37','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Circle 4','circle-4','publish','closed','closed','','field_6143abcb19fdc','','','2021-10-13 16:11:37','2021-10-13 20:11:37','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3322',14,'acf-field','',0),(3323,4,'2021-10-13 16:11:37','2021-10-13 20:11:37','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Circle 5','circle-5','publish','closed','closed','','field_6143abdc19fdd','','','2021-10-13 16:11:37','2021-10-13 20:11:37','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3323',15,'acf-field','',0),(3324,4,'2021-10-13 16:11:38','2021-10-13 20:11:38','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Circle 6','circle-6','publish','closed','closed','','field_6143abea19fde','','','2021-10-13 16:11:38','2021-10-13 20:11:38','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3324',16,'acf-field','',0),(3325,4,'2021-10-13 16:11:38','2021-10-13 20:11:38','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Quality - Image','quality-image','publish','closed','closed','','field_6143a535dfe92','','','2021-10-13 16:11:38','2021-10-13 20:11:38','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3325',17,'acf-field','',0),(3326,4,'2021-10-13 16:11:38','2021-10-13 20:11:38','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Quality - Text','quality-text','publish','closed','closed','','field_6143a535dfed9','','','2021-10-13 16:11:38','2021-10-13 20:11:38','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3326',18,'acf-field','',0),(3327,4,'2021-10-13 16:11:38','2021-10-13 20:11:38','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Innovation - Image','inovation-image','publish','closed','closed','','field_6143a535dff2d','','','2021-10-13 16:11:38','2021-10-13 20:11:38','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3327',19,'acf-field','',0),(3328,4,'2021-10-13 16:11:38','2021-10-13 20:11:38','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Innovation - Text','inovation-text','publish','closed','closed','','field_6143a535dff6f','','','2021-10-13 16:11:38','2021-10-13 20:11:38','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3328',20,'acf-field','',0),(3329,4,'2021-10-13 16:11:38','2021-10-13 20:11:38','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Value - Image','value-image','publish','closed','closed','','field_6143a535dffb1','','','2021-10-13 16:11:38','2021-10-13 20:11:38','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3329',21,'acf-field','',0),(3330,4,'2021-10-13 16:11:38','2021-10-13 20:11:38','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:5:\"basic\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Value - Text','value-text','publish','closed','closed','','field_6143a535dfff1','','','2021-10-13 16:11:38','2021-10-13 20:11:38','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3330',22,'acf-field','',0),(3331,4,'2021-10-13 16:11:39','2021-10-13 20:11:39','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Phrase 1','phrase-1','publish','closed','closed','','field_6143b242ba7b9','','','2021-10-13 16:11:39','2021-10-13 20:11:39','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3331',23,'acf-field','',0),(3332,4,'2021-10-13 16:11:39','2021-10-13 20:11:39','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Phrase 2','phrase-2','publish','closed','closed','','field_6143b1974f197','','','2021-10-13 16:11:39','2021-10-13 20:11:39','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3332',24,'acf-field','',0),(3333,4,'2021-10-13 16:11:39','2021-10-13 20:11:39','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:8:\"Add Logo\";}','Trusted Relationships','trusted','publish','closed','closed','','field_6143a535e0032','','','2021-10-13 16:11:39','2021-10-13 20:11:39','',3307,'https://www.translucentcomputing.com/?post_type=acf-field&p=3333',25,'acf-field','',0),(3334,4,'2021-10-13 16:11:39','2021-10-13 20:11:39','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Logo','logo','publish','closed','closed','','field_6143a538ef7d3','','','2021-10-13 16:11:39','2021-10-13 20:11:39','',3333,'https://www.translucentcomputing.com/?post_type=acf-field&p=3334',0,'acf-field','',0),(3335,4,'2021-10-13 16:21:34','2021-10-13 20:21:34','','About Us','','publish','closed','closed','','about-us','','','2022-05-13 01:17:05','2022-05-13 05:17:05','',0,'https://www.translucentcomputing.com/?page_id=3335',1,'page','',0),(3336,4,'2021-10-13 16:18:31','2021-10-13 20:18:31','','About Us','','inherit','closed','closed','','3335-revision-v1','','','2021-10-13 16:18:31','2021-10-13 20:18:31','',3335,'https://www.translucentcomputing.com/2021/10/3335-revision-v1/',0,'revision','',0),(3337,4,'2021-10-13 16:18:32','2021-10-13 20:18:32','','About Us','','inherit','closed','closed','','3335-revision-v1','','','2021-10-13 16:18:32','2021-10-13 20:18:32','',3335,'https://www.translucentcomputing.com/2021/10/3335-revision-v1/',0,'revision','',0),(3338,4,'2021-10-13 16:18:38','2021-10-13 20:18:38','','About Us','','inherit','closed','closed','','3335-revision-v1','','','2021-10-13 16:18:38','2021-10-13 20:18:38','',3335,'https://www.translucentcomputing.com/2021/10/3335-revision-v1/',0,'revision','',0),(3339,4,'2021-10-13 16:19:05','2021-10-13 20:19:05','','About Us','','inherit','closed','closed','','3335-revision-v1','','','2021-10-13 16:19:05','2021-10-13 20:19:05','',3335,'https://www.translucentcomputing.com/2021/10/3335-revision-v1/',0,'revision','',0),(3340,4,'2021-10-13 17:07:38','2021-10-13 21:07:38',' ','','','publish','closed','closed','','3340','','','2021-10-13 17:09:15','2021-10-13 21:09:15','',0,'https://www.translucentcomputing.com/?p=3340',12,'nav_menu_item','',0),(3341,4,'2021-10-22 08:22:59','2021-10-13 21:09:13',' ','','','publish','closed','closed','','3341','','','2021-10-22 08:22:59','2021-10-22 12:22:59','',0,'https://www.translucentcomputing.com/?p=3341',16,'nav_menu_item','',0),(3346,4,'2021-10-22 05:48:32','2021-10-22 09:48:32','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:33:\"cloud-native-applications-new.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','Cloud Native Application Dev','cloud-native-application-dev','publish','closed','closed','','group_615e31912070a','','','2021-10-22 08:19:01','2021-10-22 12:19:01','',0,'https://www.translucentcomputing.com/?p=3346',0,'acf-field-group','',0),(3347,4,'2021-10-22 05:48:29','2021-10-22 09:48:29','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','top-banner','top-banner','publish','closed','closed','','field_615ea94aa14ad','','','2021-10-22 05:48:29','2021-10-22 09:48:29','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3347',0,'acf-field','',0),(3348,4,'2021-10-22 05:48:29','2021-10-22 09:48:29','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','top-title','top-title','publish','closed','closed','','field_615ea986a14ae','','','2021-10-22 05:48:29','2021-10-22 09:48:29','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3348',1,'acf-field','',0),(3349,4,'2021-10-22 05:48:29','2021-10-22 09:48:29','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','purple-icon-sq','purple-icon-sq','publish','closed','closed','','field_615eb6e1990d3','','','2021-10-22 05:48:29','2021-10-22 09:48:29','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3349',2,'acf-field','',0),(3350,4,'2021-10-22 05:48:29','2021-10-22 09:48:29','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','phrase-1','phrase-1','publish','closed','closed','','field_615ec3e936adb','','','2021-10-22 05:48:29','2021-10-22 09:48:29','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3350',3,'acf-field','',0),(3351,4,'2021-10-22 05:48:29','2021-10-22 09:48:29','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','phrase-2','phrase-2','publish','closed','closed','','field_615ec4b052c68','','','2021-10-22 05:48:29','2021-10-22 09:48:29','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3351',4,'acf-field','',0),(3352,4,'2021-10-22 05:48:29','2021-10-22 09:48:29','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','purple-icon-b','purple-icon-b','publish','closed','closed','','field_615ec54f0247b','','','2021-10-22 05:48:29','2021-10-22 09:48:29','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3352',5,'acf-field','',0),(3353,4,'2021-10-22 05:48:30','2021-10-22 09:48:30','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','phrase-icon','phrase-icon','publish','closed','closed','','field_615ec5eb0499b','','','2021-10-22 05:48:30','2021-10-22 09:48:30','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3353',6,'acf-field','',0),(3354,4,'2021-10-22 05:48:30','2021-10-22 09:48:30','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','phrase-i-subtitle','phrase-i-subtitle','publish','closed','closed','','field_615ec6aaadf65','','','2021-10-22 05:48:30','2021-10-22 09:48:30','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3354',7,'acf-field','',0),(3355,4,'2021-10-22 05:48:30','2021-10-22 09:48:30','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','text-i-sec','text-i-sec','publish','closed','closed','','field_615ec761c96fb','','','2021-10-22 05:48:30','2021-10-22 09:48:30','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3355',8,'acf-field','',0),(3356,4,'2021-10-22 05:48:30','2021-10-22 09:48:30','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','purple-quote-img','purple-quote-img','publish','closed','closed','','field_615eca8c68d41','','','2021-10-22 05:48:30','2021-10-22 09:48:30','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3356',9,'acf-field','',0),(3357,4,'2021-10-22 05:48:30','2021-10-22 09:48:30','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','phrase-slider-1','phrase-slider-1','publish','closed','closed','','field_615ed12966bce','','','2021-10-22 05:48:30','2021-10-22 09:48:30','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3357',10,'acf-field','',0),(3358,4,'2021-10-22 05:48:30','2021-10-22 09:48:30','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','text-slider-1','text-slider-1','publish','closed','closed','','field_615ed1ea36c7c','','','2021-10-22 05:48:30','2021-10-22 09:48:30','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3358',11,'acf-field','',0),(3359,4,'2021-10-22 05:48:30','2021-10-22 09:48:30','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','rb-icon-slider','rb-icon-slider','publish','closed','closed','','field_615ed3500b12c','','','2021-10-22 05:48:30','2021-10-22 09:48:30','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3359',12,'acf-field','',0),(3360,4,'2021-10-22 05:48:30','2021-10-22 09:48:30','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','phrase-rb','phrase-rb','publish','closed','closed','','field_615f0f2dc37ac','','','2021-10-22 05:48:30','2021-10-22 09:48:30','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3360',13,'acf-field','',0),(3361,4,'2021-10-22 05:48:30','2021-10-22 09:48:30','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','link-rb','link-rb','publish','closed','closed','','field_615f10dc69c6c','','','2021-10-22 08:19:00','2021-10-22 12:19:00','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3361',14,'acf-field','',0),(3362,4,'2021-10-22 05:48:31','2021-10-22 09:48:31','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','rp-icon-slider','rp-icon-slider','publish','closed','closed','','field_615ed383c1a5e','','','2021-10-22 05:48:31','2021-10-22 09:48:31','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3362',15,'acf-field','',0),(3363,4,'2021-10-22 05:48:31','2021-10-22 09:48:31','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','phrase-rp','phrase-rp','publish','closed','closed','','field_615f0f63c37ad','','','2021-10-22 05:48:31','2021-10-22 09:48:31','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3363',16,'acf-field','',0),(3364,4,'2021-10-22 05:48:31','2021-10-22 09:48:31','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','link-rp','link-rp','publish','closed','closed','','field_615f1218b6ffd','','','2021-10-22 08:18:29','2021-10-22 12:18:29','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3364',17,'acf-field','',0),(3365,4,'2021-10-22 05:48:31','2021-10-22 09:48:31','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','img-slider-1','img-slider-1','publish','closed','closed','','field_615f13c3c0cf3','','','2021-10-22 05:48:31','2021-10-22 09:48:31','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3365',18,'acf-field','',0),(3366,4,'2021-10-22 05:48:31','2021-10-22 09:48:31','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','title-slide-rb','title-slide-rb','publish','closed','closed','','field_615f2512c338c','','','2021-10-22 05:48:31','2021-10-22 09:48:31','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3366',19,'acf-field','',0),(3367,4,'2021-10-22 05:48:31','2021-10-22 09:48:31','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','text-slide-rb','text-slide-rb','publish','closed','closed','','field_615f24e2c338b','','','2021-10-22 05:48:31','2021-10-22 09:48:31','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3367',20,'acf-field','',0),(3368,4,'2021-10-22 05:48:31','2021-10-22 09:48:31','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','img-slider-2','img-slider-2','publish','closed','closed','','field_615f2539c338d','','','2021-10-22 05:48:31','2021-10-22 09:48:31','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3368',21,'acf-field','',0),(3369,4,'2021-10-22 05:48:31','2021-10-22 09:48:31','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','title-slide-rp','title-slide-rp','publish','closed','closed','','field_615f27d9335b6','','','2021-10-22 05:48:31','2021-10-22 09:48:31','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3369',22,'acf-field','',0),(3370,4,'2021-10-22 05:48:31','2021-10-22 09:48:31','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','text-slide-rp','text-slide-rp','publish','closed','closed','','field_615f27ee335b7','','','2021-10-22 05:48:31','2021-10-22 09:48:31','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3370',23,'acf-field','',0),(3371,4,'2021-10-22 05:48:31','2021-10-22 09:48:31','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','img-slider-3','img-slider-3','publish','closed','closed','','field_615f27ff335b8','','','2021-10-22 05:48:31','2021-10-22 09:48:31','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3371',24,'acf-field','',0),(3372,4,'2021-10-22 08:20:45','2021-10-22 12:20:45','','Cloud Native Application Development','','publish','closed','closed','','cloud-native-application-development','','','2022-06-03 17:08:34','2022-06-03 21:08:34','',0,'https://www.translucentcomputing.com/?page_id=3372',0,'page','',0),(3373,4,'2021-10-22 05:49:27','2021-10-22 09:49:27','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 05:49:27','2021-10-22 09:49:27','',3372,'https://www.translucentcomputing.com/?p=3373',0,'revision','',0),(3374,4,'2021-10-22 05:55:49','2021-10-22 09:55:49','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 05:55:49','2021-10-22 09:55:49','',3372,'https://www.translucentcomputing.com/?p=3374',0,'revision','',0),(3375,4,'2021-10-22 05:55:52','2021-10-22 09:55:52','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 05:55:52','2021-10-22 09:55:52','',3372,'https://www.translucentcomputing.com/?p=3375',0,'revision','',0),(3376,4,'2021-10-22 06:00:05','2021-10-22 10:00:05','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 06:00:05','2021-10-22 10:00:05','',3372,'https://www.translucentcomputing.com/?p=3376',0,'revision','',0),(3377,4,'2021-10-22 06:00:07','2021-10-22 10:00:07','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 06:00:07','2021-10-22 10:00:07','',3372,'https://www.translucentcomputing.com/?p=3377',0,'revision','',0),(3378,4,'2021-10-22 06:01:13','2021-10-22 10:01:13','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 06:01:13','2021-10-22 10:01:13','',3372,'https://www.translucentcomputing.com/?p=3378',0,'revision','',0),(3379,4,'2021-10-22 06:36:25','2021-10-22 10:36:25','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','title-after-slider-h4','title-after-slider-h4','publish','closed','closed','','field_6172940c9f539','','','2021-10-22 06:36:25','2021-10-22 10:36:25','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3379',25,'acf-field','',0),(3380,4,'2021-10-22 06:38:50','2021-10-22 10:38:50','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','text-data-driven','text-data-driven','publish','closed','closed','','field_61729471e80a2','','','2021-10-22 06:54:23','2021-10-22 10:54:23','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3380',26,'acf-field','',0),(3381,4,'2021-10-22 06:41:00','2021-10-22 10:41:00','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','text-tags','text-tags','publish','closed','closed','','field_617295261e2bc','','','2021-10-22 06:41:00','2021-10-22 10:41:00','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3381',27,'acf-field','',0),(3382,4,'2021-10-22 06:43:22','2021-10-22 10:43:22','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','img-app-modernization','img-app-modernization','publish','closed','closed','','field_617295ac82cd3','','','2021-10-22 06:43:22','2021-10-22 10:43:22','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3382',28,'acf-field','',0),(3383,4,'2021-10-22 06:45:08','2021-10-22 10:45:08','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','phrase-rb-rp','phrase-rb-rp','publish','closed','closed','','field_6172960479081','','','2021-10-22 06:45:08','2021-10-22 10:45:08','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3383',29,'acf-field','',0),(3384,4,'2021-10-22 06:48:22','2021-10-22 10:48:22','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','phrase-tc','phrase-tc','publish','closed','closed','','field_617296a28447f','','','2021-10-22 06:48:22','2021-10-22 10:48:22','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3384',30,'acf-field','',0),(3385,4,'2021-10-22 06:50:07','2021-10-22 10:50:07','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 06:50:07','2021-10-22 10:50:07','',3372,'https://www.translucentcomputing.com/?p=3385',0,'revision','',0),(3386,4,'2021-10-22 06:54:08','2021-10-22 10:54:08','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 06:54:08','2021-10-22 10:54:08','',3372,'https://www.translucentcomputing.com/?p=3386',0,'revision','',0),(3387,4,'2021-10-22 06:54:30','2021-10-22 10:54:30','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 06:54:30','2021-10-22 10:54:30','',3372,'https://www.translucentcomputing.com/?p=3387',0,'revision','',0),(3388,4,'2021-10-22 06:54:33','2021-10-22 10:54:33','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 06:54:33','2021-10-22 10:54:33','',3372,'https://www.translucentcomputing.com/?p=3388',0,'revision','',0),(3389,4,'2021-10-22 06:56:39','2021-10-22 10:56:39','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','icon-t','icon-t','publish','closed','closed','','field_617298d4928e0','','','2021-10-22 06:56:39','2021-10-22 10:56:39','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3389',31,'acf-field','',0),(3390,4,'2021-10-22 06:57:33','2021-10-22 10:57:33','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 06:57:33','2021-10-22 10:57:33','',3372,'https://www.translucentcomputing.com/?p=3390',0,'revision','',0),(3391,4,'2021-10-22 06:57:37','2021-10-22 10:57:37','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 06:57:37','2021-10-22 10:57:37','',3372,'https://www.translucentcomputing.com/?p=3391',0,'revision','',0),(3392,4,'2021-10-22 06:58:54','2021-10-22 10:58:54','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','team-member','team-member','publish','closed','closed','','field_6172995811847','','','2021-10-22 06:58:54','2021-10-22 10:58:54','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3392',32,'acf-field','',0),(3393,4,'2021-10-22 07:00:07','2021-10-22 11:00:07','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:00:07','2021-10-22 11:00:07','',3372,'https://www.translucentcomputing.com/?p=3393',0,'revision','',0),(3394,4,'2021-10-22 07:00:11','2021-10-22 11:00:11','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:00:11','2021-10-22 11:00:11','',3372,'https://www.translucentcomputing.com/?p=3394',0,'revision','',0),(3395,4,'2021-10-22 07:22:00','2021-10-22 11:22:00','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','phrase-consulting','phrase-consulting','publish','closed','closed','','field_61729ea05b9e6','','','2021-10-22 07:22:00','2021-10-22 11:22:00','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3395',33,'acf-field','',0),(3396,4,'2021-10-22 07:23:50','2021-10-22 11:23:50','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','image-consulting','image-consulting','publish','closed','closed','','field_61729f356923f','','','2021-10-22 07:23:50','2021-10-22 11:23:50','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3396',34,'acf-field','',0),(3397,4,'2021-10-22 07:24:57','2021-10-22 11:24:57','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:24:57','2021-10-22 11:24:57','',3372,'https://www.translucentcomputing.com/?p=3397',0,'revision','',0),(3398,4,'2021-10-22 07:25:02','2021-10-22 11:25:02','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:25:02','2021-10-22 11:25:02','',3372,'https://www.translucentcomputing.com/?p=3398',0,'revision','',0),(3399,4,'2021-10-22 07:26:17','2021-10-22 11:26:17','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','button-consulting','button-consulting','publish','closed','closed','','field_61729fcbe169a','','','2021-10-22 07:26:17','2021-10-22 11:26:17','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3399',35,'acf-field','',0),(3400,4,'2021-10-22 07:26:44','2021-10-22 11:26:44','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:26:44','2021-10-22 11:26:44','',3372,'https://www.translucentcomputing.com/?p=3400',0,'revision','',0),(3401,4,'2021-10-22 07:26:48','2021-10-22 11:26:48','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:26:48','2021-10-22 11:26:48','',3372,'https://www.translucentcomputing.com/?p=3401',0,'revision','',0),(3402,4,'2021-10-22 07:27:27','2021-10-22 11:27:27','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','services-title','services-title','publish','closed','closed','','field_6172a01105ae7','','','2021-10-22 07:27:27','2021-10-22 11:27:27','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3402',36,'acf-field','',0),(3403,4,'2021-10-22 07:28:53','2021-10-22 11:28:53','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:28:53','2021-10-22 11:28:53','',3372,'https://www.translucentcomputing.com/?p=3403',0,'revision','',0),(3404,4,'2021-10-22 07:28:56','2021-10-22 11:28:56','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:28:56','2021-10-22 11:28:56','',3372,'https://www.translucentcomputing.com/?p=3404',0,'revision','',0),(3405,4,'2021-10-22 07:30:07','2021-10-22 11:30:07','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','services-col-left','services-col-left','publish','closed','closed','','field_6172a091834a5','','','2021-10-22 07:30:07','2021-10-22 11:30:07','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3405',37,'acf-field','',0),(3406,4,'2021-10-22 07:30:07','2021-10-22 11:30:07','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','services-col-right','services-col-right','publish','closed','closed','','field_6172a0a9834a6','','','2021-10-22 07:30:07','2021-10-22 11:30:07','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3406',38,'acf-field','',0),(3407,4,'2021-10-22 07:32:26','2021-10-22 11:32:26','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:32:26','2021-10-22 11:32:26','',3372,'https://www.translucentcomputing.com/?p=3407',0,'revision','',0),(3408,4,'2021-10-22 07:32:29','2021-10-22 11:32:29','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:32:29','2021-10-22 11:32:29','',3372,'https://www.translucentcomputing.com/?p=3408',0,'revision','',0),(3409,4,'2021-10-22 07:33:55','2021-10-22 11:33:55','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','phrase-services','phrase-services','publish','closed','closed','','field_6172a1941f2ef','','','2021-10-22 07:33:55','2021-10-22 11:33:55','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3409',39,'acf-field','',0),(3410,4,'2021-10-22 07:34:01','2021-10-22 11:34:01','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:34:01','2021-10-22 11:34:01','',3372,'https://www.translucentcomputing.com/?p=3410',0,'revision','',0),(3411,4,'2021-10-22 07:35:20','2021-10-22 11:35:20','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','tag-services','tag-services','publish','closed','closed','','field_6172a1ebc36e4','','','2021-10-22 07:35:20','2021-10-22 11:35:20','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3411',40,'acf-field','',0),(3412,4,'2021-10-22 07:36:09','2021-10-22 11:36:09','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:36:09','2021-10-22 11:36:09','',3372,'https://www.translucentcomputing.com/?p=3412',0,'revision','',0),(3413,4,'2021-10-22 07:36:13','2021-10-22 11:36:13','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:36:13','2021-10-22 11:36:13','',3372,'https://www.translucentcomputing.com/?p=3413',0,'revision','',0),(3414,4,'2021-10-22 07:36:32','2021-10-22 11:36:32','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:36:32','2021-10-22 11:36:32','',3372,'https://www.translucentcomputing.com/?p=3414',0,'revision','',0),(3415,4,'2021-10-22 07:36:35','2021-10-22 11:36:35','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:36:35','2021-10-22 11:36:35','',3372,'https://www.translucentcomputing.com/?p=3415',0,'revision','',0),(3416,4,'2021-10-22 07:37:20','2021-10-22 11:37:20','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:37:20','2021-10-22 11:37:20','',3372,'https://www.translucentcomputing.com/?p=3416',0,'revision','',0),(3417,4,'2021-10-22 07:38:26','2021-10-22 11:38:26','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','values-title','values-title','publish','closed','closed','','field_6172a2a40fd02','','','2021-10-22 07:38:26','2021-10-22 11:38:26','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3417',41,'acf-field','',0),(3418,4,'2021-10-22 07:40:13','2021-10-22 11:40:13','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:40:13','2021-10-22 11:40:13','',3372,'https://www.translucentcomputing.com/?p=3418',0,'revision','',0),(3419,4,'2021-10-22 07:40:15','2021-10-22 11:40:15','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:40:15','2021-10-22 11:40:15','',3372,'https://www.translucentcomputing.com/?p=3419',0,'revision','',0),(3420,4,'2021-10-22 07:40:54','2021-10-22 11:40:54','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','values-phrase','values-phrase','publish','closed','closed','','field_6172a3355f6bb','','','2021-10-22 07:40:54','2021-10-22 11:40:54','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3420',42,'acf-field','',0),(3421,4,'2021-10-22 07:41:24','2021-10-22 11:41:24','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:41:24','2021-10-22 11:41:24','',3372,'https://www.translucentcomputing.com/?p=3421',0,'revision','',0),(3422,4,'2021-10-22 07:42:40','2021-10-22 11:42:40','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:42:40','2021-10-22 11:42:40','',3372,'https://www.translucentcomputing.com/?p=3422',0,'revision','',0),(3423,4,'2021-10-22 07:42:43','2021-10-22 11:42:43','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:42:43','2021-10-22 11:42:43','',3372,'https://www.translucentcomputing.com/?p=3423',0,'revision','',0),(3424,4,'2021-10-22 07:45:33','2021-10-22 11:45:33','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','values-item-1','values-item-1','publish','closed','closed','','field_6172a44bd49d9','','','2021-10-22 07:52:11','2021-10-22 11:52:11','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3424',43,'acf-field','',0),(3425,4,'2021-10-22 07:48:15','2021-10-22 11:48:15','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:48:15','2021-10-22 11:48:15','',3372,'https://www.translucentcomputing.com/?p=3425',0,'revision','',0),(3426,4,'2021-10-22 07:48:18','2021-10-22 11:48:18','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:48:18','2021-10-22 11:48:18','',3372,'https://www.translucentcomputing.com/?p=3426',0,'revision','',0),(3427,4,'2021-10-22 07:52:11','2021-10-22 11:52:11','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','values-item-2','values-item-2','publish','closed','closed','','field_6172a5a7e1457','','','2021-10-22 07:52:11','2021-10-22 11:52:11','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3427',44,'acf-field','',0),(3428,4,'2021-10-22 07:52:11','2021-10-22 11:52:11','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','values-item-3','values-item-3','publish','closed','closed','','field_6172a5b0e1458','','','2021-10-22 07:52:11','2021-10-22 11:52:11','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3428',45,'acf-field','',0),(3429,4,'2021-10-22 07:52:11','2021-10-22 11:52:11','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','values-item-4','values-item-4','publish','closed','closed','','field_6172a5b7e1459','','','2021-10-22 07:52:11','2021-10-22 11:52:11','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3429',46,'acf-field','',0),(3430,4,'2021-10-22 07:52:12','2021-10-22 11:52:12','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','values-item-5','values-item-5','publish','closed','closed','','field_6172a5bee145a','','','2021-10-22 07:52:12','2021-10-22 11:52:12','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3430',47,'acf-field','',0),(3431,4,'2021-10-22 07:52:12','2021-10-22 11:52:12','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','values-item-6','values-item-6','publish','closed','closed','','field_6172a5c4e145b','','','2021-10-22 07:52:12','2021-10-22 11:52:12','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3431',48,'acf-field','',0),(3432,4,'2021-10-22 07:52:12','2021-10-22 11:52:12','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','values-item-7','values-item-7','publish','closed','closed','','field_6172a5cbe145c','','','2021-10-22 07:52:12','2021-10-22 11:52:12','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3432',49,'acf-field','',0),(3433,4,'2021-10-22 07:52:12','2021-10-22 11:52:12','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','values-item-8','values-item-8','publish','closed','closed','','field_6172a5d3e145d','','','2021-10-22 07:52:12','2021-10-22 11:52:12','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3433',50,'acf-field','',0),(3434,4,'2021-10-22 07:52:12','2021-10-22 11:52:12','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','values-item-9','values-item-9','publish','closed','closed','','field_6172a5dbe145e','','','2021-10-22 07:52:12','2021-10-22 11:52:12','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3434',51,'acf-field','',0),(3435,4,'2021-10-22 07:59:09','2021-10-22 11:59:09','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:59:09','2021-10-22 11:59:09','',3372,'https://www.translucentcomputing.com/?p=3435',0,'revision','',0),(3436,4,'2021-10-22 07:59:12','2021-10-22 11:59:12','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 07:59:12','2021-10-22 11:59:12','',3372,'https://www.translucentcomputing.com/?p=3436',0,'revision','',0),(3437,4,'2021-10-22 08:01:18','2021-10-22 12:01:18','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 08:01:18','2021-10-22 12:01:18','',3372,'https://www.translucentcomputing.com/?p=3437',0,'revision','',0),(3438,4,'2021-10-22 08:01:49','2021-10-22 12:01:49','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','final-phrase','final-phrase','publish','closed','closed','','field_6172a81bcf043','','','2021-10-22 08:01:49','2021-10-22 12:01:49','',3346,'https://www.translucentcomputing.com/?post_type=acf-field&p=3438',52,'acf-field','',0),(3439,4,'2021-10-22 08:03:39','2021-10-22 12:03:39','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 08:03:39','2021-10-22 12:03:39','',3372,'https://www.translucentcomputing.com/?p=3439',0,'revision','',0),(3440,4,'2021-10-22 08:03:41','2021-10-22 12:03:41','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 08:03:41','2021-10-22 12:03:41','',3372,'https://www.translucentcomputing.com/?p=3440',0,'revision','',0),(3441,4,'2021-10-22 08:04:29','2021-10-22 12:04:29','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 08:04:29','2021-10-22 12:04:29','',3372,'https://www.translucentcomputing.com/?p=3441',0,'revision','',0),(3442,4,'2021-10-22 08:04:32','2021-10-22 12:04:32','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 08:04:32','2021-10-22 12:04:32','',3372,'https://www.translucentcomputing.com/?p=3442',0,'revision','',0),(3443,4,'2021-10-22 08:04:53','2021-10-22 12:04:53','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 08:04:53','2021-10-22 12:04:53','',3372,'https://www.translucentcomputing.com/?p=3443',0,'revision','',0),(3444,4,'2021-10-22 08:11:39','2021-10-22 12:11:39','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 08:11:39','2021-10-22 12:11:39','',3372,'https://www.translucentcomputing.com/?p=3444',0,'revision','',0),(3445,4,'2021-10-22 08:11:42','2021-10-22 12:11:42','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 08:11:42','2021-10-22 12:11:42','',3372,'https://www.translucentcomputing.com/?p=3445',0,'revision','',0),(3446,4,'2021-10-22 08:11:53','2021-10-22 12:11:53','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 08:11:53','2021-10-22 12:11:53','',3372,'https://www.translucentcomputing.com/?p=3446',0,'revision','',0),(3447,4,'2021-10-22 08:12:14','2021-10-22 12:12:14','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 08:12:14','2021-10-22 12:12:14','',3372,'https://www.translucentcomputing.com/?p=3447',0,'revision','',0),(3448,4,'2021-10-22 08:12:55','2021-10-22 12:12:55','','Cloud Native Application Development','','inherit','closed','closed','','3372-revision-v1','','','2021-10-22 08:12:55','2021-10-22 12:12:55','',3372,'https://www.translucentcomputing.com/?p=3448',0,'revision','',0),(3449,4,'2021-10-22 08:22:57','2021-10-22 12:22:57',' ','','','publish','closed','closed','','3449','','','2021-10-22 08:22:57','2021-10-22 12:22:57','',0,'https://www.translucentcomputing.com/?p=3449',4,'nav_menu_item','',0),(3450,4,'2021-10-25 10:12:38','2021-10-25 14:12:38','','Testimonials','','draft','closed','closed','','testimonials','','','2021-10-26 12:15:16','2021-10-26 16:15:16','',0,'https://www.translucentcomputing.com/?page_id=3450',0,'page','',0),(3451,4,'2021-10-25 10:05:38','2021-10-25 14:05:38','','Testimonials','','inherit','closed','closed','','3450-revision-v1','','','2021-10-25 10:05:38','2021-10-25 14:05:38','',3450,'https://www.translucentcomputing.com/?p=3451',0,'revision','',0),(3452,4,'2021-10-25 10:08:00','2021-10-25 14:08:00','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:22:\"client-testimonial.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','Testimonials [include]','testimonials-include','publish','closed','closed','','group_6176a29a6c8d9','','','2021-10-25 10:08:00','2021-10-25 14:08:00','',0,'https://www.translucentcomputing.com/?p=3452',0,'acf-field-group','',0),(3453,4,'2021-10-25 10:07:59','2021-10-25 14:07:59','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','top-phrase','top-phrase','publish','closed','closed','','field_6176a2d7d64cf','','','2021-10-25 10:07:59','2021-10-25 14:07:59','',3452,'https://www.translucentcomputing.com/?post_type=acf-field&p=3453',0,'acf-field','',0),(3454,4,'2021-10-25 10:07:59','2021-10-25 14:07:59','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','cta-phrase-1','cta-phrase-1','publish','closed','closed','','field_6176a356d64d1','','','2021-10-25 10:07:59','2021-10-25 14:07:59','',3452,'https://www.translucentcomputing.com/?post_type=acf-field&p=3454',1,'acf-field','',0),(3455,4,'2021-10-25 10:07:59','2021-10-25 14:07:59','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','author-1','author-1','publish','closed','closed','','field_6176a387d64d3','','','2021-10-25 10:07:59','2021-10-25 14:07:59','',3452,'https://www.translucentcomputing.com/?post_type=acf-field&p=3455',2,'acf-field','',0),(3456,4,'2021-10-25 10:07:59','2021-10-25 14:07:59','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','company-1','company-1','publish','closed','closed','','field_6176a4590a26c','','','2021-10-25 10:07:59','2021-10-25 14:07:59','',3452,'https://www.translucentcomputing.com/?post_type=acf-field&p=3456',3,'acf-field','',0),(3457,4,'2021-10-25 10:07:59','2021-10-25 14:07:59','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','text-1','text-1','publish','closed','closed','','field_6176a3aed64d5','','','2021-10-25 10:07:59','2021-10-25 14:07:59','',3452,'https://www.translucentcomputing.com/?post_type=acf-field&p=3457',4,'acf-field','',0),(3458,4,'2021-10-25 10:07:59','2021-10-25 14:07:59','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','cta-phrase-2','cta-phrase-2','publish','closed','closed','','field_6176a364d64d2','','','2021-10-25 10:07:59','2021-10-25 14:07:59','',3452,'https://www.translucentcomputing.com/?post_type=acf-field&p=3458',5,'acf-field','',0),(3459,4,'2021-10-25 10:08:00','2021-10-25 14:08:00','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','author-2','author-2','publish','closed','closed','','field_6176a391d64d4','','','2021-10-25 10:08:00','2021-10-25 14:08:00','',3452,'https://www.translucentcomputing.com/?post_type=acf-field&p=3459',6,'acf-field','',0),(3460,4,'2021-10-25 10:08:00','2021-10-25 14:08:00','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','company-2','company-2','publish','closed','closed','','field_6176a4780a26d','','','2021-10-25 10:08:00','2021-10-25 14:08:00','',3452,'https://www.translucentcomputing.com/?post_type=acf-field&p=3460',7,'acf-field','',0),(3461,4,'2021-10-25 10:08:00','2021-10-25 14:08:00','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','text-2','text-2','publish','closed','closed','','field_6176a3c2d64d6','','','2021-10-25 10:08:00','2021-10-25 14:08:00','',3452,'https://www.translucentcomputing.com/?post_type=acf-field&p=3461',8,'acf-field','',0),(3462,4,'2021-10-25 10:10:18','2021-10-25 14:10:18','','Testimonials','','inherit','closed','closed','','3450-revision-v1','','','2021-10-25 10:10:18','2021-10-25 14:10:18','',3450,'https://www.translucentcomputing.com/?p=3462',0,'revision','',0),(3463,4,'2021-10-25 10:12:40','2021-10-25 14:12:40','','Testimonials','','inherit','closed','closed','','3450-revision-v1','','','2021-10-25 10:12:40','2021-10-25 14:12:40','',3450,'https://www.translucentcomputing.com/?p=3463',0,'revision','',0),(3464,4,'2021-10-25 10:13:34','2021-10-25 14:13:34','','Testimonials','','inherit','closed','closed','','3450-revision-v1','','','2021-10-25 10:13:34','2021-10-25 14:13:34','',3450,'https://www.translucentcomputing.com/?p=3464',0,'revision','',0),(3465,4,'2021-10-26 08:33:14','2021-10-26 12:33:14','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"cloud-native.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','Cloud Native Solutions [include]','cloud-native-solutions-include','publish','closed','closed','','group_6176c30f8e171','','','2021-10-26 11:11:46','2021-10-26 15:11:46','',0,'https://www.translucentcomputing.com/?p=3465',0,'acf-field-group','',0),(3466,4,'2021-10-26 08:33:12','2021-10-26 12:33:12','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','main-title','main-title','publish','closed','closed','','field_6176c354de231','','','2021-10-26 08:33:12','2021-10-26 12:33:12','',3465,'https://www.translucentcomputing.com/?post_type=acf-field&p=3466',0,'acf-field','',0),(3467,4,'2021-10-26 08:33:13','2021-10-26 12:33:13','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','title-1','title-1','publish','closed','closed','','field_6176c363de232','','','2021-10-26 08:33:13','2021-10-26 12:33:13','',3465,'https://www.translucentcomputing.com/?post_type=acf-field&p=3467',1,'acf-field','',0),(3468,4,'2021-10-26 08:33:13','2021-10-26 12:33:13','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','phrase-1','phrase-1','publish','closed','closed','','field_6176c396de234','','','2021-10-26 08:33:13','2021-10-26 12:33:13','',3465,'https://www.translucentcomputing.com/?post_type=acf-field&p=3468',2,'acf-field','',0),(3469,4,'2021-10-26 08:33:13','2021-10-26 12:33:13','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','button-cta-1','button-cta-1','publish','closed','closed','','field_6176c3c9de236','','','2021-10-26 08:33:13','2021-10-26 12:33:13','',3465,'https://www.translucentcomputing.com/?post_type=acf-field&p=3469',3,'acf-field','',0),(3470,4,'2021-10-26 08:33:13','2021-10-26 12:33:13','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','title-2','title-2','publish','closed','closed','','field_6176c388de233','','','2021-10-26 11:11:45','2021-10-26 15:11:45','',3465,'https://www.translucentcomputing.com/?post_type=acf-field&p=3470',5,'acf-field','',0),(3471,4,'2021-10-26 08:33:13','2021-10-26 12:33:13','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','phrase-2','phrase-2','publish','closed','closed','','field_6176c3adde235','','','2021-10-26 11:11:45','2021-10-26 15:11:45','',3465,'https://www.translucentcomputing.com/?post_type=acf-field&p=3471',6,'acf-field','',0),(3472,4,'2021-10-26 08:33:13','2021-10-26 12:33:13','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','button-cta-2','button-cta-2','publish','closed','closed','','field_6176c3d7de237','','','2021-10-26 11:11:45','2021-10-26 15:11:45','',3465,'https://www.translucentcomputing.com/?post_type=acf-field&p=3472',7,'acf-field','',0),(3473,4,'2021-10-26 08:33:14','2021-10-26 12:33:14','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','background','background','publish','closed','closed','','field_6176cdd41416a','','','2021-10-26 11:11:46','2021-10-26 15:11:46','',3465,'https://www.translucentcomputing.com/?post_type=acf-field&p=3473',9,'acf-field','',0),(3474,4,'2021-10-26 08:33:16','2021-10-26 12:33:16','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:14:\"contact-us.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','Contact [include]','contact-include','publish','closed','closed','','group_6177327f9559c','','','2021-10-26 08:33:16','2021-10-26 12:33:16','',0,'https://www.translucentcomputing.com/?p=3474',0,'acf-field-group','',0),(3475,4,'2021-10-26 08:33:14','2021-10-26 12:33:14','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','main-title','main-title','publish','closed','closed','','field_61773432e6ceb','','','2021-10-26 08:33:14','2021-10-26 12:33:14','',3474,'https://www.translucentcomputing.com/?post_type=acf-field&p=3475',0,'acf-field','',0),(3476,4,'2021-10-26 08:33:14','2021-10-26 12:33:14','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','sub-title','sub-title','publish','closed','closed','','field_61773452e6cec','','','2021-10-26 08:33:14','2021-10-26 12:33:14','',3474,'https://www.translucentcomputing.com/?post_type=acf-field&p=3476',1,'acf-field','',0),(3477,4,'2021-10-26 08:33:14','2021-10-26 12:33:14','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','phrase-1','phrase-1','publish','closed','closed','','field_617732a4e6cde','','','2021-10-26 08:33:14','2021-10-26 12:33:14','',3474,'https://www.translucentcomputing.com/?post_type=acf-field&p=3477',2,'acf-field','',0),(3478,4,'2021-10-26 08:33:15','2021-10-26 12:33:15','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','img-1','img-1','publish','closed','closed','','field_617732cae6cdf','','','2021-10-26 08:33:15','2021-10-26 12:33:15','',3474,'https://www.translucentcomputing.com/?post_type=acf-field&p=3478',3,'acf-field','',0),(3479,4,'2021-10-26 08:33:15','2021-10-26 12:33:15','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','name-1','name-1','publish','closed','closed','','field_61773304e6ce2','','','2021-10-26 08:33:15','2021-10-26 12:33:15','',3474,'https://www.translucentcomputing.com/?post_type=acf-field&p=3479',4,'acf-field','',0),(3480,4,'2021-10-26 08:33:15','2021-10-26 12:33:15','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','position-1','position-1','publish','closed','closed','','field_6177334de6ce5','','','2021-10-26 08:33:15','2021-10-26 12:33:15','',3474,'https://www.translucentcomputing.com/?post_type=acf-field&p=3480',5,'acf-field','',0),(3481,4,'2021-10-26 08:33:15','2021-10-26 12:33:15','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','img-2','img-2','publish','closed','closed','','field_617732e3e6ce0','','','2021-10-26 08:33:15','2021-10-26 12:33:15','',3474,'https://www.translucentcomputing.com/?post_type=acf-field&p=3481',6,'acf-field','',0),(3482,4,'2021-10-26 08:33:15','2021-10-26 12:33:15','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','name-2','name-2','publish','closed','closed','','field_61773313e6ce3','','','2021-10-26 08:33:15','2021-10-26 12:33:15','',3474,'https://www.translucentcomputing.com/?post_type=acf-field&p=3482',7,'acf-field','',0),(3483,4,'2021-10-26 08:33:15','2021-10-26 12:33:15','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','position-2','position-2','publish','closed','closed','','field_61773370e6ce6','','','2021-10-26 08:33:15','2021-10-26 12:33:15','',3474,'https://www.translucentcomputing.com/?post_type=acf-field&p=3483',8,'acf-field','',0),(3484,4,'2021-10-26 08:33:15','2021-10-26 12:33:15','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','img-3','img-3','publish','closed','closed','','field_617732f0e6ce1','','','2021-10-26 08:33:15','2021-10-26 12:33:15','',3474,'https://www.translucentcomputing.com/?post_type=acf-field&p=3484',9,'acf-field','',0),(3485,4,'2021-10-26 08:33:16','2021-10-26 12:33:16','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','name-3','name-3','publish','closed','closed','','field_6177331fe6ce4','','','2021-10-26 08:33:16','2021-10-26 12:33:16','',3474,'https://www.translucentcomputing.com/?post_type=acf-field&p=3485',10,'acf-field','',0),(3486,4,'2021-10-26 08:33:16','2021-10-26 12:33:16','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','position-3','position-3','publish','closed','closed','','field_6177337be6ce7','','','2021-10-26 08:33:16','2021-10-26 12:33:16','',3474,'https://www.translucentcomputing.com/?post_type=acf-field&p=3486',11,'acf-field','',0),(3487,4,'2021-10-26 08:33:16','2021-10-26 12:33:16','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','field-1','field-1','publish','closed','closed','','field_61773393e6ce8','','','2021-10-26 08:33:16','2021-10-26 12:33:16','',3474,'https://www.translucentcomputing.com/?post_type=acf-field&p=3487',12,'acf-field','',0),(3488,4,'2021-10-26 08:33:16','2021-10-26 12:33:16','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','field-2','field-2','publish','closed','closed','','field_617733c5e6ce9','','','2021-10-26 08:33:16','2021-10-26 12:33:16','',3474,'https://www.translucentcomputing.com/?post_type=acf-field&p=3488',13,'acf-field','',0),(3489,4,'2021-10-26 08:33:16','2021-10-26 12:33:16','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','field-3','field-3','publish','closed','closed','','field_617733d2e6cea','','','2021-10-26 08:33:16','2021-10-26 12:33:16','',3474,'https://www.translucentcomputing.com/?post_type=acf-field&p=3489',14,'acf-field','',0),(3490,4,'2021-10-26 08:33:19','2021-10-26 12:33:19','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:15:\"our-process.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','Our Process [include]','our-process-include','publish','closed','closed','','group_6176d470e4245','','','2021-10-26 08:33:19','2021-10-26 12:33:19','',0,'https://www.translucentcomputing.com/?p=3490',0,'acf-field-group','',0),(3491,4,'2021-10-26 08:33:17','2021-10-26 12:33:17','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','main-title','main-title','publish','closed','closed','','field_6176d497ea6e8','','','2021-10-26 08:33:17','2021-10-26 12:33:17','',3490,'https://www.translucentcomputing.com/?post_type=acf-field&p=3491',0,'acf-field','',0),(3492,4,'2021-10-26 08:33:17','2021-10-26 12:33:17','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','img-1','img-1','publish','closed','closed','','field_6176d4f3ea6ec','','','2021-10-26 08:33:17','2021-10-26 12:33:17','',3490,'https://www.translucentcomputing.com/?post_type=acf-field&p=3492',1,'acf-field','',0),(3493,4,'2021-10-26 08:33:17','2021-10-26 12:33:17','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','title-1','title-1','publish','closed','closed','','field_6176d51eea6ef','','','2021-10-26 08:33:17','2021-10-26 12:33:17','',3490,'https://www.translucentcomputing.com/?post_type=acf-field&p=3493',2,'acf-field','',0),(3494,4,'2021-10-26 08:33:17','2021-10-26 12:33:17','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','text-1','text-1','publish','closed','closed','','field_6176d4a6ea6e9','','','2021-10-26 08:33:17','2021-10-26 12:33:17','',3490,'https://www.translucentcomputing.com/?post_type=acf-field&p=3494',3,'acf-field','',0),(3495,4,'2021-10-26 08:33:17','2021-10-26 12:33:17','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','img-2','img-2','publish','closed','closed','','field_6176d506ea6ed','','','2021-10-26 08:33:17','2021-10-26 12:33:17','',3490,'https://www.translucentcomputing.com/?post_type=acf-field&p=3495',4,'acf-field','',0),(3496,4,'2021-10-26 08:33:17','2021-10-26 12:33:17','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','title-2','title-2','publish','closed','closed','','field_6176d527ea6f0','','','2021-10-26 08:33:17','2021-10-26 12:33:17','',3490,'https://www.translucentcomputing.com/?post_type=acf-field&p=3496',5,'acf-field','',0),(3497,4,'2021-10-26 08:33:18','2021-10-26 12:33:18','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','text-2','text-2','publish','closed','closed','','field_6176d4c3ea6ea','','','2021-10-26 08:33:18','2021-10-26 12:33:18','',3490,'https://www.translucentcomputing.com/?post_type=acf-field&p=3497',6,'acf-field','',0),(3498,4,'2021-10-26 08:33:18','2021-10-26 12:33:18','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','img-3','img-3','publish','closed','closed','','field_6176d50dea6ee','','','2021-10-26 08:33:18','2021-10-26 12:33:18','',3490,'https://www.translucentcomputing.com/?post_type=acf-field&p=3498',7,'acf-field','',0),(3499,4,'2021-10-26 08:33:18','2021-10-26 12:33:18','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','title-3','title-3','publish','closed','closed','','field_6176d537ea6f1','','','2021-10-26 08:33:18','2021-10-26 12:33:18','',3490,'https://www.translucentcomputing.com/?post_type=acf-field&p=3499',8,'acf-field','',0),(3500,4,'2021-10-26 08:33:18','2021-10-26 12:33:18','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','text-3','text-3','publish','closed','closed','','field_6176d4cfea6eb','','','2021-10-26 08:33:18','2021-10-26 12:33:18','',3490,'https://www.translucentcomputing.com/?post_type=acf-field&p=3500',9,'acf-field','',0),(3501,4,'2021-10-26 08:33:18','2021-10-26 12:33:18','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','button','button','publish','closed','closed','','field_6176d548ea6f2','','','2021-10-26 08:33:18','2021-10-26 12:33:18','',3490,'https://www.translucentcomputing.com/?post_type=acf-field&p=3501',10,'acf-field','',0),(3502,4,'2021-10-26 08:33:19','2021-10-26 12:33:19','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','link-button','link-button','publish','closed','closed','','field_617708ef74394','','','2021-10-26 08:33:19','2021-10-26 12:33:19','',3490,'https://www.translucentcomputing.com/?post_type=acf-field&p=3502',11,'acf-field','',0),(3503,4,'2021-10-26 08:33:22','2021-10-26 12:33:22','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:16:\"services-inc.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','Services [include]','services-include','publish','closed','closed','','group_61771a69b14eb','','','2021-10-26 08:33:22','2021-10-26 12:33:22','',0,'https://www.translucentcomputing.com/?p=3503',0,'acf-field-group','',0),(3504,4,'2021-10-26 08:33:19','2021-10-26 12:33:19','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','icon-1','icon-1','publish','closed','closed','','field_61771b1e08856','','','2021-10-26 08:33:19','2021-10-26 12:33:19','',3503,'https://www.translucentcomputing.com/?post_type=acf-field&p=3504',0,'acf-field','',0),(3505,4,'2021-10-26 08:33:19','2021-10-26 12:33:19','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','title-1','title-1','publish','closed','closed','','field_61771a9908852','','','2021-10-26 08:33:19','2021-10-26 12:33:19','',3503,'https://www.translucentcomputing.com/?post_type=acf-field&p=3505',1,'acf-field','',0),(3506,4,'2021-10-26 08:33:19','2021-10-26 12:33:19','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','text-1','text-1','publish','closed','closed','','field_61771c77557fe','','','2021-10-26 08:33:19','2021-10-26 12:33:19','',3503,'https://www.translucentcomputing.com/?post_type=acf-field&p=3506',2,'acf-field','',0),(3507,4,'2021-10-26 08:33:19','2021-10-26 12:33:19','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','img-1','img-1','publish','closed','closed','','field_61771cdb68720','','','2021-10-26 08:33:19','2021-10-26 12:33:19','',3503,'https://www.translucentcomputing.com/?post_type=acf-field&p=3507',3,'acf-field','',0),(3508,4,'2021-10-26 08:33:20','2021-10-26 12:33:20','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','button-1','button-1','publish','closed','closed','','field_61771d677c6cd','','','2021-10-26 08:33:20','2021-10-26 12:33:20','',3503,'https://www.translucentcomputing.com/?post_type=acf-field&p=3508',4,'acf-field','',0),(3509,4,'2021-10-26 08:33:20','2021-10-26 12:33:20','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','link-button-1','link-button-1','publish','closed','closed','','field_61771da87c6d0','','','2021-10-26 08:33:20','2021-10-26 12:33:20','',3503,'https://www.translucentcomputing.com/?post_type=acf-field&p=3509',5,'acf-field','',0),(3510,4,'2021-10-26 08:33:20','2021-10-26 12:33:20','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','icon-2','icon-2','publish','closed','closed','','field_61771b4308857','','','2021-10-26 08:33:20','2021-10-26 12:33:20','',3503,'https://www.translucentcomputing.com/?post_type=acf-field&p=3510',6,'acf-field','',0),(3511,4,'2021-10-26 08:33:20','2021-10-26 12:33:20','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','title-2','title-2','publish','closed','closed','','field_61771ae908853','','','2021-10-26 08:33:20','2021-10-26 12:33:20','',3503,'https://www.translucentcomputing.com/?post_type=acf-field&p=3511',7,'acf-field','',0),(3512,4,'2021-10-26 08:33:20','2021-10-26 12:33:20','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','text-2','text-2','publish','closed','closed','','field_61771c8a557ff','','','2021-10-26 08:33:20','2021-10-26 12:33:20','',3503,'https://www.translucentcomputing.com/?post_type=acf-field&p=3512',8,'acf-field','',0),(3513,4,'2021-10-26 08:33:20','2021-10-26 12:33:20','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','img-2','img-2','publish','closed','closed','','field_61771cf568721','','','2021-10-26 08:33:20','2021-10-26 12:33:20','',3503,'https://www.translucentcomputing.com/?post_type=acf-field&p=3513',9,'acf-field','',0),(3514,4,'2021-10-26 08:33:21','2021-10-26 12:33:21','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','button-2','button-2','publish','closed','closed','','field_61771d767c6ce','','','2021-10-26 08:33:21','2021-10-26 12:33:21','',3503,'https://www.translucentcomputing.com/?post_type=acf-field&p=3514',10,'acf-field','',0),(3515,4,'2021-10-26 08:33:21','2021-10-26 12:33:21','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','link-button-2','link-button-2','publish','closed','closed','','field_61771dda7c6d1','','','2021-10-26 08:33:21','2021-10-26 12:33:21','',3503,'https://www.translucentcomputing.com/?post_type=acf-field&p=3515',11,'acf-field','',0),(3516,4,'2021-10-26 08:33:21','2021-10-26 12:33:21','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','icon-3','icon-3','publish','closed','closed','','field_61771b4e08858','','','2021-10-26 08:33:21','2021-10-26 12:33:21','',3503,'https://www.translucentcomputing.com/?post_type=acf-field&p=3516',12,'acf-field','',0),(3517,4,'2021-10-26 08:33:21','2021-10-26 12:33:21','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','title-3','title-3','publish','closed','closed','','field_61771aff08855','','','2021-10-26 08:33:21','2021-10-26 12:33:21','',3503,'https://www.translucentcomputing.com/?post_type=acf-field&p=3517',13,'acf-field','',0),(3518,4,'2021-10-26 08:33:21','2021-10-26 12:33:21','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','text-3','text-3','publish','closed','closed','','field_61771c9b55800','','','2021-10-26 08:33:21','2021-10-26 12:33:21','',3503,'https://www.translucentcomputing.com/?post_type=acf-field&p=3518',14,'acf-field','',0),(3519,4,'2021-10-26 08:33:21','2021-10-26 12:33:21','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','img-3','img-3','publish','closed','closed','','field_61771d0368722','','','2021-10-26 08:33:21','2021-10-26 12:33:21','',3503,'https://www.translucentcomputing.com/?post_type=acf-field&p=3519',15,'acf-field','',0),(3520,4,'2021-10-26 08:33:22','2021-10-26 12:33:22','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','button-3','button-3','publish','closed','closed','','field_61771d837c6cf','','','2021-10-26 08:33:22','2021-10-26 12:33:22','',3503,'https://www.translucentcomputing.com/?post_type=acf-field&p=3520',16,'acf-field','',0),(3521,4,'2021-10-26 08:33:22','2021-10-26 12:33:22','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','link-button-3','link-button-3','publish','closed','closed','','field_61771de57c6d2','','','2021-10-26 08:33:22','2021-10-26 12:33:22','',3503,'https://www.translucentcomputing.com/?post_type=acf-field&p=3521',17,'acf-field','',0),(3522,4,'2021-10-26 08:33:22','2021-10-26 12:33:22','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','background','background','publish','closed','closed','','field_61771d2e6c2f9','','','2021-10-26 08:33:22','2021-10-26 12:33:22','',3503,'https://www.translucentcomputing.com/?post_type=acf-field&p=3522',18,'acf-field','',0),(3523,4,'2021-10-26 11:42:11','2021-10-26 15:42:11','','Cloud Native Solutions [inc][home]','','publish','closed','closed','','cloud-native-solutions-1','','','2022-05-05 10:18:52','2022-05-05 14:18:52','',0,'https://www.translucentcomputing.com/?page_id=3523',0,'page','',0),(3524,4,'2021-10-26 08:42:59','2021-10-26 12:42:59','','Cloud Native Solutions [inc][home]','','inherit','closed','closed','','3523-revision-v1','','','2021-10-26 08:42:59','2021-10-26 12:42:59','',3523,'https://www.translucentcomputing.com/?p=3524',0,'revision','',0),(3526,4,'2021-10-26 08:45:47','2021-10-26 12:45:47','','Cloud Native Solutions [inc][home]','','inherit','closed','closed','','3523-revision-v1','','','2021-10-26 08:45:47','2021-10-26 12:45:47','',3523,'https://www.translucentcomputing.com/?p=3526',0,'revision','',0),(3527,4,'2021-10-26 11:13:20','2021-10-26 15:13:20','','Contact [inc]','','draft','closed','closed','','contact-inc','','','2021-10-30 07:53:42','2021-10-30 11:53:42','',0,'https://www.translucentcomputing.com/?page_id=3527',0,'page','',0),(3528,4,'2021-10-26 08:50:53','2021-10-26 12:50:53','','rob','','inherit','open','closed','','rob-3','','','2021-10-26 08:50:53','2021-10-26 12:50:53','',3527,'https://www.translucentcomputing.com/wp-content/uploads/2021/10/rob.png',0,'attachment','image/png',0),(3529,4,'2021-10-26 08:51:21','2021-10-26 12:51:21','','patryk','','inherit','open','closed','','patryk-2','','','2021-10-26 08:51:21','2021-10-26 12:51:21','',3527,'https://www.translucentcomputing.com/wp-content/uploads/2021/10/patryk.png',0,'attachment','image/png',0),(3530,4,'2021-10-26 08:52:10','2021-10-26 12:52:10','','brad','','inherit','open','closed','','brad-2','','','2021-10-26 08:52:10','2021-10-26 12:52:10','',3527,'https://www.translucentcomputing.com/wp-content/uploads/2021/10/brad.png',0,'attachment','image/png',0),(3531,4,'2021-10-26 08:52:56','2021-10-26 12:52:56','','Contact [inc]','','inherit','closed','closed','','3527-revision-v1','','','2021-10-26 08:52:56','2021-10-26 12:52:56','',3527,'https://www.translucentcomputing.com/?p=3531',0,'revision','',0),(3532,4,'2021-10-26 08:52:57','2021-10-26 12:52:57','','Contact [inc]','','inherit','closed','closed','','3527-revision-v1','','','2021-10-26 08:52:57','2021-10-26 12:52:57','',3527,'https://www.translucentcomputing.com/?p=3532',0,'revision','',0),(3533,4,'2021-10-26 08:56:32','2021-10-26 12:56:32','','Contact [inc]','','inherit','closed','closed','','3527-revision-v1','','','2021-10-26 08:56:32','2021-10-26 12:56:32','',3527,'https://www.translucentcomputing.com/?p=3533',0,'revision','',0),(3534,4,'2021-10-26 08:56:50','2021-10-26 12:56:50','','Contact [inc]','','inherit','closed','closed','','3527-revision-v1','','','2021-10-26 08:56:50','2021-10-26 12:56:50','',3527,'https://www.translucentcomputing.com/?p=3534',0,'revision','',0),(3535,4,'2021-10-26 11:13:57','2021-10-26 15:13:57','','Our Process [inc][home]','','draft','closed','closed','','our-process-inc','','','2021-10-26 12:14:46','2021-10-26 16:14:46','',0,'https://www.translucentcomputing.com/?page_id=3535',0,'page','',0),(3536,4,'2021-10-26 09:02:34','2021-10-26 13:02:34','','Our Process [inc][home]','','inherit','closed','closed','','3535-revision-v1','','','2021-10-26 09:02:34','2021-10-26 13:02:34','',3535,'https://www.translucentcomputing.com/?p=3536',0,'revision','',0),(3537,4,'2021-10-26 09:08:06','2021-10-26 13:08:06','','inform-and-learn','','inherit','open','closed','','inform-and-learn','','','2021-10-26 09:08:06','2021-10-26 13:08:06','',3535,'https://www.translucentcomputing.com/wp-content/uploads/2021/10/inform-and-learn.png',0,'attachment','image/png',0),(3538,4,'2021-10-26 09:08:19','2021-10-26 13:08:19','','inception-and-discovery','','inherit','open','closed','','inception-and-discovery','','','2021-10-26 09:08:19','2021-10-26 13:08:19','',3535,'https://www.translucentcomputing.com/wp-content/uploads/2021/10/inception-and-discovery.png',0,'attachment','image/png',0),(3539,4,'2021-10-26 09:08:36','2021-10-26 13:08:36','','digital-transformation','','inherit','open','closed','','digital-transformation-3','','','2021-10-26 09:08:36','2021-10-26 13:08:36','',3535,'https://www.translucentcomputing.com/wp-content/uploads/2021/10/digital-transformation.png',0,'attachment','image/png',0),(3540,4,'2021-10-26 09:08:56','2021-10-26 13:08:56','','Our Process [inc][home]','','inherit','closed','closed','','3535-revision-v1','','','2021-10-26 09:08:56','2021-10-26 13:08:56','',3535,'https://www.translucentcomputing.com/?p=3540',0,'revision','',0),(3541,4,'2021-10-26 11:13:41','2021-10-26 15:13:41','','Services [inc][home]','','draft','closed','closed','','services-inc','','','2021-10-26 12:14:56','2021-10-26 16:14:56','',0,'https://www.translucentcomputing.com/?page_id=3541',0,'page','',0),(3542,4,'2021-10-26 09:10:32','2021-10-26 13:10:32','','Services [inc][home]','','inherit','closed','closed','','3541-revision-v1','','','2021-10-26 09:10:32','2021-10-26 13:10:32','',3541,'https://www.translucentcomputing.com/?p=3542',0,'revision','',0),(3543,4,'2021-10-26 09:23:17','2021-10-26 13:23:17','','Services [inc][home]','','inherit','closed','closed','','3541-revision-v1','','','2021-10-26 09:23:17','2021-10-26 13:23:17','',3541,'https://www.translucentcomputing.com/?p=3543',0,'revision','',0),(3545,4,'2021-10-26 09:27:00','2021-10-26 13:27:00','','Services [inc][home]','','inherit','closed','closed','','3541-revision-v1','','','2021-10-26 09:27:00','2021-10-26 13:27:00','',3541,'https://www.translucentcomputing.com/?p=3545',0,'revision','',0),(3547,4,'2021-10-26 12:07:45','2021-10-26 16:07:45','','Our clients [inc]','','draft','closed','closed','','our-clients-inc','','','2021-10-26 12:14:01','2021-10-26 16:14:01','',0,'https://www.translucentcomputing.com/?page_id=3547',0,'page','',0),(3548,4,'2021-10-26 10:07:35','2021-10-26 14:07:35','','Our clients [inc]','','inherit','closed','closed','','3547-revision-v1','','','2021-10-26 10:07:35','2021-10-26 14:07:35','',3547,'https://www.translucentcomputing.com/?p=3548',0,'revision','',0),(3549,4,'2021-10-26 10:16:10','2021-10-26 14:16:10','a:7:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:14:\"our-client.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','Our Clients [include]','our-clients-include','publish','closed','closed','','group_61780c91705d0','','','2021-10-26 12:07:16','2021-10-26 16:07:16','',0,'https://www.translucentcomputing.com/?post_type=acf-field-group&p=3549',0,'acf-field-group','',0),(3550,4,'2021-10-26 10:16:10','2021-10-26 14:16:10','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','side-text-1','side-text-1','publish','closed','closed','','field_61780cca952c9','','','2021-10-26 10:16:10','2021-10-26 14:16:10','',3549,'https://www.translucentcomputing.com/?post_type=acf-field&p=3550',0,'acf-field','',0),(3551,4,'2021-10-26 10:16:11','2021-10-26 14:16:11','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','side-text-2','side-text-2','publish','closed','closed','','field_61780cdb952ca','','','2021-10-26 12:07:16','2021-10-26 16:07:16','',3549,'https://www.translucentcomputing.com/?post_type=acf-field&p=3551',6,'acf-field','',0),(3552,4,'2021-10-26 10:16:11','2021-10-26 14:16:11','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','logo-1','logo-1','publish','closed','closed','','field_61780d1b952cb','','','2021-10-26 12:07:16','2021-10-26 16:07:16','',3549,'https://www.translucentcomputing.com/?post_type=acf-field&p=3552',1,'acf-field','',0),(3553,4,'2021-10-26 10:16:11','2021-10-26 14:16:11','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','logo-2','logo-2','publish','closed','closed','','field_61780d34952cc','','','2021-10-26 12:07:16','2021-10-26 16:07:16','',3549,'https://www.translucentcomputing.com/?post_type=acf-field&p=3553',2,'acf-field','',0),(3554,4,'2021-10-26 10:16:11','2021-10-26 14:16:11','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','logo-3','logo-3','publish','closed','closed','','field_61780d3d952cd','','','2021-10-26 12:07:16','2021-10-26 16:07:16','',3549,'https://www.translucentcomputing.com/?post_type=acf-field&p=3554',3,'acf-field','',0),(3555,4,'2021-10-26 10:16:11','2021-10-26 14:16:11','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','logo-4','logo-4','publish','closed','closed','','field_61780d47952ce','','','2021-10-26 12:07:16','2021-10-26 16:07:16','',3549,'https://www.translucentcomputing.com/?post_type=acf-field&p=3555',4,'acf-field','',0),(3556,4,'2021-10-26 10:16:11','2021-10-26 14:16:11','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','logo-5','logo-5','publish','closed','closed','','field_61780d54952cf','','','2021-10-26 12:07:16','2021-10-26 16:07:16','',3549,'https://www.translucentcomputing.com/?post_type=acf-field&p=3556',5,'acf-field','',0),(3557,4,'2021-10-26 10:16:11','2021-10-26 14:16:11','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','logo-6','logo-6','publish','closed','closed','','field_61780d5f952d0','','','2021-10-26 10:16:11','2021-10-26 14:16:11','',3549,'https://www.translucentcomputing.com/?post_type=acf-field&p=3557',7,'acf-field','',0),(3558,4,'2021-10-26 10:16:12','2021-10-26 14:16:12','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','logo-7','logo-7','publish','closed','closed','','field_61780d69952d1','','','2021-10-26 10:16:12','2021-10-26 14:16:12','',3549,'https://www.translucentcomputing.com/?post_type=acf-field&p=3558',8,'acf-field','',0),(3559,4,'2021-10-26 10:16:12','2021-10-26 14:16:12','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','logo-8','logo-8','publish','closed','closed','','field_61780d7a952d2','','','2021-10-26 10:16:12','2021-10-26 14:16:12','',3549,'https://www.translucentcomputing.com/?post_type=acf-field&p=3559',9,'acf-field','',0),(3560,4,'2021-10-26 10:16:12','2021-10-26 14:16:12','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','logo-9','logo-9','publish','closed','closed','','field_61780d88952d3','','','2021-10-26 10:16:12','2021-10-26 14:16:12','',3549,'https://www.translucentcomputing.com/?post_type=acf-field&p=3560',10,'acf-field','',0),(3561,4,'2021-10-26 10:16:12','2021-10-26 14:16:12','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:3:\"url\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','logo-10','logo-10','publish','closed','closed','','field_61780d96952d4','','','2021-10-26 10:16:12','2021-10-26 14:16:12','',3549,'https://www.translucentcomputing.com/?post_type=acf-field&p=3561',11,'acf-field','',0),(3563,4,'2021-10-26 10:21:26','2021-10-26 14:21:26','','Our clients [inc]','','inherit','closed','closed','','3547-revision-v1','','','2021-10-26 10:21:26','2021-10-26 14:21:26','',3547,'https://www.translucentcomputing.com/?p=3563',0,'revision','',0),(3564,4,'2021-10-26 10:21:52','2021-10-26 14:21:52','','Our clients [inc]','','inherit','closed','closed','','3547-revision-v1','','','2021-10-26 10:21:52','2021-10-26 14:21:52','',3547,'https://www.translucentcomputing.com/?p=3564',0,'revision','',0),(3565,4,'2021-10-26 10:24:21','2021-10-26 14:24:21','','Contact [inc]','','inherit','closed','closed','','3527-revision-v1','','','2021-10-26 10:24:21','2021-10-26 14:24:21','',3527,'https://www.translucentcomputing.com/?p=3565',0,'revision','',0),(3566,4,'2021-10-26 10:27:11','2021-10-26 14:27:11','','Our clients [inc]','','inherit','closed','closed','','3547-revision-v1','','','2021-10-26 10:27:11','2021-10-26 14:27:11','',3547,'https://www.translucentcomputing.com/?p=3566',0,'revision','',0),(3567,4,'2021-10-26 10:34:49','2021-10-26 14:34:49','','Our clients [inc]','','inherit','closed','closed','','3547-revision-v1','','','2021-10-26 10:34:49','2021-10-26 14:34:49','',3547,'https://www.translucentcomputing.com/?p=3567',0,'revision','',0),(3568,4,'2021-10-26 10:35:42','2021-10-26 14:35:42','','Our clients [inc]','','inherit','closed','closed','','3547-revision-v1','','','2021-10-26 10:35:42','2021-10-26 14:35:42','',3547,'https://www.translucentcomputing.com/?p=3568',0,'revision','',0),(3569,4,'2021-10-26 10:54:17','2021-10-26 14:54:17','','Cloud Native Solutions [inc][home]','','inherit','closed','closed','','3523-revision-v1','','','2021-10-26 10:54:17','2021-10-26 14:54:17','',3523,'https://www.translucentcomputing.com/?p=3569',0,'revision','',0),(3570,4,'2021-10-26 11:02:18','2021-10-26 15:02:18','','Cloud Native Solutions [inc][home]','','inherit','closed','closed','','3523-revision-v1','','','2021-10-26 11:02:18','2021-10-26 15:02:18','',3523,'https://www.translucentcomputing.com/?p=3570',0,'revision','',0),(3571,4,'2021-10-26 11:11:45','2021-10-26 15:11:45','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','link-cta-1','link-cta-1','publish','closed','closed','','field_61781a892a517','','','2021-10-26 11:11:45','2021-10-26 15:11:45','',3465,'https://www.translucentcomputing.com/?post_type=acf-field&p=3571',4,'acf-field','',0),(3572,4,'2021-10-26 11:11:45','2021-10-26 15:11:45','a:7:{s:4:\"type\";s:3:\"url\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";}','link-cta-2','link-cta-2','publish','closed','closed','','field_61781a982a518','','','2021-10-26 11:11:45','2021-10-26 15:11:45','',3465,'https://www.translucentcomputing.com/?post_type=acf-field&p=3572',8,'acf-field','',0),(3573,4,'2021-10-26 11:14:55','2021-10-26 15:14:55','','Cloud Native Solutions [inc][home]','','inherit','closed','closed','','3523-revision-v1','','','2021-10-26 11:14:55','2021-10-26 15:14:55','',3523,'https://www.translucentcomputing.com/?p=3573',0,'revision','',0),(3574,4,'2021-10-26 11:15:36','2021-10-26 15:15:36','','Cloud Native Solutions [inc][home]','','inherit','closed','closed','','3523-revision-v1','','','2021-10-26 11:15:36','2021-10-26 15:15:36','',3523,'https://www.translucentcomputing.com/?p=3574',0,'revision','',0),(3575,4,'2021-10-26 11:26:09','2021-10-26 15:26:09','','Cloud Native Solutions [inc][home]','','inherit','closed','closed','','3523-revision-v1','','','2021-10-26 11:26:09','2021-10-26 15:26:09','',3523,'https://www.translucentcomputing.com/?p=3575',0,'revision','',0),(3576,4,'2021-10-26 11:26:48','2021-10-26 15:26:48','','Cloud Native Solutions [inc][home]','','inherit','closed','closed','','3523-revision-v1','','','2021-10-26 11:26:48','2021-10-26 15:26:48','',3523,'https://www.translucentcomputing.com/?p=3576',0,'revision','',0),(3577,4,'2021-10-26 11:27:28','2021-10-26 15:27:28','','Cloud Native Solutions [inc][home]','','inherit','closed','closed','','3523-revision-v1','','','2021-10-26 11:27:28','2021-10-26 15:27:28','',3523,'https://www.translucentcomputing.com/?p=3577',0,'revision','',0),(3578,4,'2021-10-26 11:27:37','2021-10-26 15:27:37','','Cloud Native Solutions [inc][home]','','inherit','closed','closed','','3523-revision-v1','','','2021-10-26 11:27:37','2021-10-26 15:27:37','',3523,'https://www.translucentcomputing.com/?p=3578',0,'revision','',0),(3579,4,'2021-10-26 11:41:41','2021-10-26 15:41:41','','Cloud Native Solutions [inc][home]','','inherit','closed','closed','','3523-revision-v1','','','2021-10-26 11:41:41','2021-10-26 15:41:41','',3523,'https://www.translucentcomputing.com/?p=3579',0,'revision','',0),(3580,4,'2021-10-26 11:42:11','2021-10-26 15:42:11','','Cloud Native Solutions [inc][home]','','inherit','closed','closed','','3523-revision-v1','','','2021-10-26 11:42:11','2021-10-26 15:42:11','',3523,'https://www.translucentcomputing.com/?p=3580',0,'revision','',0),(3581,4,'2021-10-26 11:56:21','2021-10-26 15:56:21','','Our clients [inc]','','inherit','closed','closed','','3547-revision-v1','','','2021-10-26 11:56:21','2021-10-26 15:56:21','',3547,'https://www.translucentcomputing.com/?p=3581',0,'revision','',0),(3582,4,'2021-10-26 11:59:12','2021-10-26 15:59:12','','Our clients [inc]','','inherit','closed','closed','','3547-revision-v1','','','2021-10-26 11:59:12','2021-10-26 15:59:12','',3547,'https://www.translucentcomputing.com/?p=3582',0,'revision','',0),(3583,4,'2021-10-26 12:04:10','2021-10-26 16:04:10','','Our clients [inc]','','inherit','closed','closed','','3547-revision-v1','','','2021-10-26 12:04:10','2021-10-26 16:04:10','',3547,'https://www.translucentcomputing.com/?p=3583',0,'revision','',0),(3584,4,'2021-10-26 12:06:32','2021-10-26 16:06:32','','Our clients [inc]','','inherit','closed','closed','','3547-revision-v1','','','2021-10-26 12:06:32','2021-10-26 16:06:32','',3547,'https://www.translucentcomputing.com/?p=3584',0,'revision','',0),(3585,4,'2021-10-26 12:06:48','2021-10-26 16:06:48','','Our clients [inc]','','inherit','closed','closed','','3547-revision-v1','','','2021-10-26 12:06:48','2021-10-26 16:06:48','',3547,'https://www.translucentcomputing.com/?p=3585',0,'revision','',0),(3586,4,'2021-10-29 14:57:25','2021-10-29 18:57:25','
\r\n
\r\n
\r\n \r\n [text* first-name placeholder \"Your Name\"]\r\n
\r\n
\r\n \r\n [email* email placeholder \"name@example.com\"]\r\n
\r\n
\r\n \r\n [text company ]\r\n
\r\n
\r\n \r\n [tel phone placeholder \" +00 000 0000 \"]\r\n
\r\n
\r\n \r\n\r\n [textarea message x5 placeholder \"Message\"]\r\n
\r\n
\r\n [submit class:cp-contact-us__form--button \"SEND MESSAGE\"]\r\n
\r\n
\r\n
\n1\nDEV SERVER - TC Form Submissions: From Translucent Main Website Bottom Contact Form\nresults@translucentcomputing.com\nresults@translucentcomputing.com, robert@translucentcomputing.com, bsankar@translucentcomputing.com\nFrom: [first-name] <[email]>\r\nPhone: [phone]\r\nCompany: [company]\r\n\r\nMessage: [message]\nReply-To: [email]\n\n\n\n1\nService Inquiry | Thank you for contacting Translucent\nBradford Sankar \n[email]\nHi [first-name],\r\n\r\nWe would like to express our thanks for your interest in our cloud native services.\r\nWe will review your request with our team and be in touch shortly.\r\n\r\nYours sincerely,\r\nBradford Sankar\r\nYour Translucent Cloud Native Specialist!\nReply-To: Bradford Sankar \n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe phone number is invalid.','DEV SERVER - Main Website Bottom Contact Form v2','','publish','closed','closed','','main-website-bottom-contact-form_copy','','','2022-06-20 19:57:31','2022-06-20 23:57:31','',0,'https://www.translucentcomputing.com/?post_type=wpcf7_contact_form&p=3586',0,'wpcf7_contact_form','',0),(3587,4,'2021-10-29 17:11:24','2021-10-29 21:11:24','','Home','','inherit','closed','closed','','1924-revision-v1','','','2021-10-29 17:11:24','2021-10-29 21:11:24','',1924,'https://www.translucentcomputing.com/?p=3587',0,'revision','',0),(3589,4,'2021-10-30 07:53:24','2021-10-30 11:53:24','','Contact [inc]','','inherit','closed','closed','','3527-revision-v1','','','2021-10-30 07:53:24','2021-10-30 11:53:24','',3527,'https://www.translucentcomputing.com/?p=3589',0,'revision','',0),(3590,4,'2021-10-30 07:53:42','2021-10-30 11:53:42','','Contact [inc]','','inherit','closed','closed','','3527-revision-v1','','','2021-10-30 07:53:42','2021-10-30 11:53:42','',3527,'https://www.translucentcomputing.com/?p=3590',0,'revision','',0),(3591,4,'2021-11-01 16:53:15','2021-11-01 20:53:15','','Cloud Native Solutions [inc][home]','','inherit','closed','closed','','3523-revision-v1','','','2021-11-01 16:53:15','2021-11-01 20:53:15','',3523,'https://www.translucentcomputing.com/?p=3591',0,'revision','',0),(3593,4,'2021-11-08 14:39:47','2021-11-08 19:39:47','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','phrase','phrase','publish','closed','closed','','field_61897cf2a836b','','','2021-11-08 14:39:47','2021-11-08 19:39:47','',3182,'https://www.translucentcomputing.com/?post_type=acf-field&p=3593',4,'acf-field','',0),(3594,4,'2021-11-08 14:43:43','2021-11-08 19:43:43','','Landing Page - Repeated content','','inherit','closed','closed','','2526-revision-v1','','','2021-11-08 14:43:43','2021-11-08 19:43:43','',2526,'https://www.translucentcomputing.com/2021/11/2526-revision-v1/',0,'revision','',0),(3595,4,'2021-11-08 14:43:43','2021-11-08 19:43:43','','Landing Page - Repeated content','','inherit','closed','closed','','2526-revision-v1','','','2021-11-08 14:43:43','2021-11-08 19:43:43','',2526,'https://www.translucentcomputing.com/2021/11/2526-revision-v1/',0,'revision','',0),(3596,4,'2021-11-08 14:44:22','2021-11-08 19:44:22','','Landing Page - Repeated content','','inherit','closed','closed','','2526-revision-v1','','','2021-11-08 14:44:22','2021-11-08 19:44:22','',2526,'https://www.translucentcomputing.com/2021/11/2526-revision-v1/',0,'revision','',0),(3597,4,'2021-11-08 15:03:02','2021-11-08 20:03:02','','volentix3','','inherit','open','closed','','volentix3','','','2021-11-08 15:03:02','2021-11-08 20:03:02','',2526,'https://www.translucentcomputing.com/wp-content/uploads/2021/11/volentix3.png',0,'attachment','image/png',0),(3598,4,'2021-11-08 15:06:12','2021-11-08 20:06:12','','logo-nuc_notag','','inherit','open','closed','','logo-nuc_notag','','','2021-11-08 15:06:12','2021-11-08 20:06:12','',2526,'https://www.translucentcomputing.com/wp-content/uploads/2021/11/logo-nuc_notag.jpg',0,'attachment','image/jpeg',0),(3599,4,'2021-11-08 15:06:55','2021-11-08 20:06:55','','Landing Page - Repeated content','','inherit','closed','closed','','2526-revision-v1','','','2021-11-08 15:06:55','2021-11-08 20:06:55','',2526,'https://www.translucentcomputing.com/2021/11/2526-revision-v1/',0,'revision','',0),(3601,4,'2021-11-09 16:51:51','2021-11-09 21:51:51','','Landing Page - Repeated content','','inherit','closed','closed','','2526-revision-v1','','','2021-11-09 16:51:51','2021-11-09 21:51:51','',2526,'https://www.translucentcomputing.com/2021/11/2526-revision-v1/',0,'revision','',0),(3602,4,'2021-11-09 16:54:03','2021-11-09 21:54:03','','Landing Page - Repeated content','','inherit','closed','closed','','2526-revision-v1','','','2021-11-09 16:54:03','2021-11-09 21:54:03','',2526,'https://www.translucentcomputing.com/2021/11/2526-revision-v1/',0,'revision','',0),(3603,4,'2021-11-11 15:27:46','2021-11-11 20:27:46','','Landing Page - Repeated content','','inherit','closed','closed','','2526-revision-v1','','','2021-11-11 15:27:46','2021-11-11 20:27:46','',2526,'https://www.translucentcomputing.com/2021/11/2526-revision-v1/',0,'revision','',0),(3606,4,'2021-11-16 19:30:18','2021-11-17 00:30:18','','Home','','inherit','closed','closed','','1924-revision-v1','','','2021-11-16 19:30:18','2021-11-17 00:30:18','',1924,'https://www.translucentcomputing.com/2021/11/1924-revision-v1/',0,'revision','',0),(3608,3,'2021-11-22 09:54:34','2021-11-22 14:54:34','\n

A workflow is made up of an orchestrated and repeatable pattern of activity. These activities are enabled by resources that are systematically organized into processes. These processes transform materials, provide services, or process information. A workflow can be depicted as a sequence of operations, the work of a person or group, the work of an organization of staff, or one or more simple or complex mechanisms.

\n\n\n\n

In computing, a pipeline (also known as a data pipeline) is a connected series of data processing elements, where the output of one element is the input of the next one. The elements of a pipeline are often executed in parallel or in a time-sliced way.

\n\n\n\n

Workflow Types

\n\n\n\n

There are several different workflow types. Data plays a crucial role in product development and management. Companies and projects are continuously becoming more data-driven, adopting data-centric processes that combine different systems for product development and data analysis. These data-oriented workflows implement the data pipelines.

\n\n\n\n

There are many different ways to implement a workflow. They commonly range from simple cron jobs to workflows implemented in custom applications.

\n\n\n\n
\"\"
\n\n\n\n

Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)https://youtu.be/GeNFEtt-D4k

\n\n\n\n

The common approaches do not generalize, and developers focus on building the workflow engines, data pipelines, data tasks, and business rules for each workflow implementation. A workflow manager must support easy creation, scheduling, and workflow monitoring so that the developers can focus on delivering value through the data pipeline rather than building workflow engines.

\n\n\n\n
\"\"
\"Table 1.1 Overview of several well-known workflow managers and their key characteristics. Bas P. Harenslak, Julian R. de Ruiter. Data Pipelines with Apache Airflow\"
\n\n\n\n

What is a Data Pipeline?

\n\n\n\n

The workflow manager facilitates the creation and scheduling of a data pipeline. 

\n\n\n\n

A data pipeline is a chronological execution of an individual task in sequence or parallel, with data coming from different data sources and data transformation, ultimately loading the data into sinks that support business operations.

\n\n\n\n
\"\"
\n\n\n\n

Data Pipeline Example

\n\n\n\n

As you can see in the example above, a data pipeline is made up of tasks, and could be composed of many tasks intertwined with dependencies. 

\n\n\n\n

This means having a task management strategy is essential. Task management is mainly concerned with task dependency and task order of execution. Graph theory addresses both concerns and is an efficient way to manage tasks with the help of Directed Acyclic Graph (DAG).

\n\n\n\n

What is DAG?

\n\n\n\n

In mathematics, particularly graph theory and computer science, a directed acyclic graph (DAG) is a directed graph with no directed cycles. That means it consists of vertices and edges (also called arcs), with each edge directed from one vertex to another, such that following those directions will never form a closed loop.

\n\n\n\n

A directed graph is a DAG if (and only if) it can be topologically ordered by arranging the vertices in a linear order consistent with all edge directions. DAGs have many scientific and computational applications, ranging from biology (evolution, family trees, epidemiology) to sociology (citation networks) to computation (scheduling).

\n\n\n\n
\"\"
\n\n\n\n

Example of a DAG - https://upload.wikimedia.org/wikipedia/commons/5/51/Tred-G.png

\n\n\n\n

Using DAGs in a data pipeline to manage tasks gives us a theoretical and practical methodology and approach to deal with task dependencies and order of execution. DAG task management is a fundamental and necessary feature of a workflow manager.

\n\n\n\n

Workflow Manager

\n\n\n\n

In our current cloud native ecosystem, there are several workflow managers with different features. Translucent Computing  uses a common selection pattern to select an appropriate tool for cloud native environments. We look at a tool’s maturity to choose one that marries the theoretical and practical. This is why we use Apache Airflow, an open-source workflow manager that supports workflow creation, scheduling, and monitoring with support for DAGs.

\n\n\n\n

There’s more in our pipeline when it comes to pipeline content, so stay tuned for more!

\n','Workflow Engine - Data Pipeline','','publish','open','open','','workflow-engine-data-pipeline','','','2022-05-20 18:13:03','2022-05-20 22:13:03','',0,'https://www.translucentcomputing.com/?p=3608',0,'post','',0),(3609,9,'2021-11-19 06:52:59','2021-11-19 11:52:59','','unnamed-3','','inherit','open','closed','','unnamed-3-2','','','2021-11-19 06:52:59','2021-11-19 11:52:59','',3608,'https://www.translucentcomputing.com/wp-content/uploads/2021/11/unnamed-3.png',0,'attachment','image/png',0),(3610,9,'2021-11-19 06:54:26','2021-11-19 11:54:26','','unnamed-4','','inherit','open','closed','','unnamed-4','','','2021-11-19 06:54:26','2021-11-19 11:54:26','',3608,'https://www.translucentcomputing.com/wp-content/uploads/2021/11/unnamed-4.png',0,'attachment','image/png',0),(3611,9,'2021-11-19 06:54:28','2021-11-19 11:54:28','\n

A workflow is made up of an orchestrated and repeatable pattern of activity. These activities are enabled by resources that are systematically organized into processes. These processes transform materials, provide services, or process information. A workflow can be depicted as a sequence of operations, the work of a person or group, the work of an organization of staff, or one or more simple or complex mechanisms.

\n\n\n\n

In computing, a pipeline (also known as a data pipeline) is a connected series of data processing elements, where the output of one element is the input of the next one. The elements of a pipeline are often executed in parallel or in a time-sliced way.

\n\n\n\n

Workflow Types

\n\n\n\n

There are several different workflow types. Data plays a crucial role in product development and management. Companies and projects are continuously becoming more data-driven, adopting data-centric processes that combine different systems for product development and data analysis. These data-oriented workflows implement the data pipelines.

\n\n\n\n

There are many different ways to implement a workflow. They commonly range from simple cron jobs to workflows implemented in custom applications.

\n\n\n\n
\"\"
\n\n\n\n

Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)https://youtu.be/GeNFEtt-D4k

\n\n\n\n

The common approaches do not generalize, and developers focus on building the workflow engines, data pipelines, data tasks, and business rules for each workflow implementation. A workflow manager must support easy creation, scheduling, and workflow monitoring so that the developers can focus on delivering value through the data pipeline rather than building workflow engines.

\n\n\n\n
\"\"
\n','Workflow Engine - Data Pipeline','','inherit','closed','closed','','3608-revision-v1','','','2021-11-19 06:54:28','2021-11-19 11:54:28','',3608,'https://www.translucentcomputing.com/2021/11/3608-revision-v1/',0,'revision','',0),(3612,9,'2021-11-19 06:56:14','2021-11-19 11:56:14','','unnamed-5','','inherit','open','closed','','unnamed-5','','','2021-11-19 06:56:14','2021-11-19 11:56:14','',3608,'https://www.translucentcomputing.com/wp-content/uploads/2021/11/unnamed-5.png',0,'attachment','image/png',0),(3613,9,'2021-11-19 06:56:18','2021-11-19 11:56:18','\n

A workflow is made up of an orchestrated and repeatable pattern of activity. These activities are enabled by resources that are systematically organized into processes. These processes transform materials, provide services, or process information. A workflow can be depicted as a sequence of operations, the work of a person or group, the work of an organization of staff, or one or more simple or complex mechanisms.

\n\n\n\n

In computing, a pipeline (also known as a data pipeline) is a connected series of data processing elements, where the output of one element is the input of the next one. The elements of a pipeline are often executed in parallel or in a time-sliced way.

\n\n\n\n

Workflow Types

\n\n\n\n

There are several different workflow types. Data plays a crucial role in product development and management. Companies and projects are continuously becoming more data-driven, adopting data-centric processes that combine different systems for product development and data analysis. These data-oriented workflows implement the data pipelines.

\n\n\n\n

There are many different ways to implement a workflow. They commonly range from simple cron jobs to workflows implemented in custom applications.

\n\n\n\n
\"\"
\n\n\n\n

Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)https://youtu.be/GeNFEtt-D4k

\n\n\n\n

The common approaches do not generalize, and developers focus on building the workflow engines, data pipelines, data tasks, and business rules for each workflow implementation. A workflow manager must support easy creation, scheduling, and workflow monitoring so that the developers can focus on delivering value through the data pipeline rather than building workflow engines.

\n\n\n\n
\"\"
\n','Workflow Engine - Data Pipeline','','inherit','closed','closed','','3608-revision-v1','','','2021-11-19 06:56:18','2021-11-19 11:56:18','',3608,'https://www.translucentcomputing.com/2021/11/3608-revision-v1/',0,'revision','',0),(3614,9,'2021-11-19 06:57:11','2021-11-19 11:57:11','','unnamed-3-1','','inherit','open','closed','','unnamed-3-1','','','2021-11-19 06:57:11','2021-11-19 11:57:11','',3608,'https://www.translucentcomputing.com/wp-content/uploads/2021/11/unnamed-3-1.png',0,'attachment','image/png',0),(3615,9,'2021-11-19 07:03:31','2021-11-19 12:03:31','','Screenshot-2021-11-19-at-12.02.50','','inherit','open','closed','','screenshot-2021-11-19-at-12-02-50','','','2021-11-19 07:03:31','2021-11-19 12:03:31','',3608,'https://www.translucentcomputing.com/wp-content/uploads/2021/11/Screenshot-2021-11-19-at-12.02.50.png',0,'attachment','image/png',0),(3616,9,'2021-11-19 07:06:30','2021-11-19 12:06:30','','directd-acyclic-graph','','inherit','open','closed','','directd-acyclic-graph','','','2021-11-19 07:06:30','2021-11-19 12:06:30','',3608,'https://www.translucentcomputing.com/wp-content/uploads/2021/11/directd-acyclic-graph.png',0,'attachment','image/png',0),(3617,9,'2021-11-19 07:06:37','2021-11-19 12:06:37','\n

A workflow is made up of an orchestrated and repeatable pattern of activity. These activities are enabled by resources that are systematically organized into processes. These processes transform materials, provide services, or process information. A workflow can be depicted as a sequence of operations, the work of a person or group, the work of an organization of staff, or one or more simple or complex mechanisms.

\n\n\n\n

In computing, a pipeline (also known as a data pipeline) is a connected series of data processing elements, where the output of one element is the input of the next one. The elements of a pipeline are often executed in parallel or in a time-sliced way.

\n\n\n\n

Workflow Types

\n\n\n\n

There are several different workflow types. Data plays a crucial role in product development and management. Companies and projects are continuously becoming more data-driven, adopting data-centric processes that combine different systems for product development and data analysis. These data-oriented workflows implement the data pipelines.

\n\n\n\n

There are many different ways to implement a workflow. They commonly range from simple cron jobs to workflows implemented in custom applications.

\n\n\n\n
\"\"
\n\n\n\n

Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)https://youtu.be/GeNFEtt-D4k

\n\n\n\n

The common approaches do not generalize, and developers focus on building the workflow engines, data pipelines, data tasks, and business rules for each workflow implementation. A workflow manager must support easy creation, scheduling, and workflow monitoring so that the developers can focus on delivering value through the data pipeline rather than building workflow engines.

\n\n\n\n
\"\"
\n\n\n\n

Table 1.1 Overview of several well-known workflow managers and their key characteristics. Bas P. Harenslak, Julian R. de Ruiter. Data Pipelines with Apache Airflow

\n\n\n\n

What is a Data Pipeline?

\n\n\n\n

The workflow manager facilitates the creation and scheduling of a data pipeline. 

\n\n\n\n

A data pipeline is a chronological execution of an individual task in sequence or parallel, with data coming from different data sources and data transformation, ultimately loading the data into sinks that support business operations.

\n\n\n\n
\"\"
\n\n\n\n

Data Pipeline Example

\n\n\n\n

As you can see in the example above, a data pipeline is made up of tasks, and could be composed of many tasks intertwined with dependencies. 

\n\n\n\n

This means having a task management strategy is essential. Task management is mainly concerned with task dependency and task order of execution. Graph theory addresses both concerns and is an efficient way to manage tasks with the help of Directed Acyclic Graph (DAG).

\n\n\n\n

What is DAG?

\n\n\n\n

In mathematics, particularly graph theory and computer science, a directed acyclic graph (DAG) is a directed graph with no directed cycles. That means it consists of vertices and edges (also called arcs), with each edge directed from one vertex to another, such that following those directions will never form a closed loop.

\n\n\n\n

A directed graph is a DAG if (and only if) it can be topologically ordered by arranging the vertices in a linear order consistent with all edge directions. DAGs have many scientific and computational applications, ranging from biology (evolution, family trees, epidemiology) to sociology (citation networks) to computation (scheduling).

\n\n\n\n
\"\"
\n\n\n\n

\n','Workflow Engine - Data Pipeline','','inherit','closed','closed','','3608-revision-v1','','','2021-11-19 07:06:37','2021-11-19 12:06:37','',3608,'https://www.translucentcomputing.com/2021/11/3608-revision-v1/',0,'revision','',0),(3618,9,'2021-11-19 07:07:00','2021-11-19 12:07:00','\n

A workflow is made up of an orchestrated and repeatable pattern of activity. These activities are enabled by resources that are systematically organized into processes. These processes transform materials, provide services, or process information. A workflow can be depicted as a sequence of operations, the work of a person or group, the work of an organization of staff, or one or more simple or complex mechanisms.

\n\n\n\n

In computing, a pipeline (also known as a data pipeline) is a connected series of data processing elements, where the output of one element is the input of the next one. The elements of a pipeline are often executed in parallel or in a time-sliced way.

\n\n\n\n

Workflow Types

\n\n\n\n

There are several different workflow types. Data plays a crucial role in product development and management. Companies and projects are continuously becoming more data-driven, adopting data-centric processes that combine different systems for product development and data analysis. These data-oriented workflows implement the data pipelines.

\n\n\n\n

There are many different ways to implement a workflow. They commonly range from simple cron jobs to workflows implemented in custom applications.

\n\n\n\n
\"\"
\n\n\n\n

Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)https://youtu.be/GeNFEtt-D4k

\n\n\n\n

The common approaches do not generalize, and developers focus on building the workflow engines, data pipelines, data tasks, and business rules for each workflow implementation. A workflow manager must support easy creation, scheduling, and workflow monitoring so that the developers can focus on delivering value through the data pipeline rather than building workflow engines.

\n\n\n\n
\"\"
\n\n\n\n

Table 1.1 Overview of several well-known workflow managers and their key characteristics. Bas P. Harenslak, Julian R. de Ruiter. Data Pipelines with Apache Airflow

\n\n\n\n

What is a Data Pipeline?

\n\n\n\n

The workflow manager facilitates the creation and scheduling of a data pipeline. 

\n\n\n\n

A data pipeline is a chronological execution of an individual task in sequence or parallel, with data coming from different data sources and data transformation, ultimately loading the data into sinks that support business operations.

\n\n\n\n
\"\"
\n\n\n\n

Data Pipeline Example

\n\n\n\n

As you can see in the example above, a data pipeline is made up of tasks, and could be composed of many tasks intertwined with dependencies. 

\n\n\n\n

This means having a task management strategy is essential. Task management is mainly concerned with task dependency and task order of execution. Graph theory addresses both concerns and is an efficient way to manage tasks with the help of Directed Acyclic Graph (DAG).

\n\n\n\n

What is DAG?

\n\n\n\n

In mathematics, particularly graph theory and computer science, a directed acyclic graph (DAG) is a directed graph with no directed cycles. That means it consists of vertices and edges (also called arcs), with each edge directed from one vertex to another, such that following those directions will never form a closed loop.

\n\n\n\n

A directed graph is a DAG if (and only if) it can be topologically ordered by arranging the vertices in a linear order consistent with all edge directions. DAGs have many scientific and computational applications, ranging from biology (evolution, family trees, epidemiology) to sociology (citation networks) to computation (scheduling).

\n\n\n\n
\"\"
\n\n\n\n

\n','Workflow Engine - Data Pipeline','','inherit','closed','closed','','3608-revision-v1','','','2021-11-19 07:07:00','2021-11-19 12:07:00','',3608,'https://www.translucentcomputing.com/2021/11/3608-revision-v1/',0,'revision','',0),(3619,9,'2021-11-19 07:08:08','2021-11-19 12:08:08','\n

A workflow is made up of an orchestrated and repeatable pattern of activity. These activities are enabled by resources that are systematically organized into processes. These processes transform materials, provide services, or process information. A workflow can be depicted as a sequence of operations, the work of a person or group, the work of an organization of staff, or one or more simple or complex mechanisms.

\n\n\n\n

In computing, a pipeline (also known as a data pipeline) is a connected series of data processing elements, where the output of one element is the input of the next one. The elements of a pipeline are often executed in parallel or in a time-sliced way.

\n\n\n\n

Workflow Types

\n\n\n\n

There are several different workflow types. Data plays a crucial role in product development and management. Companies and projects are continuously becoming more data-driven, adopting data-centric processes that combine different systems for product development and data analysis. These data-oriented workflows implement the data pipelines.

\n\n\n\n

There are many different ways to implement a workflow. They commonly range from simple cron jobs to workflows implemented in custom applications.

\n\n\n\n
\"\"
\n\n\n\n

Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)https://youtu.be/GeNFEtt-D4k

\n\n\n\n

The common approaches do not generalize, and developers focus on building the workflow engines, data pipelines, data tasks, and business rules for each workflow implementation. A workflow manager must support easy creation, scheduling, and workflow monitoring so that the developers can focus on delivering value through the data pipeline rather than building workflow engines.

\n\n\n\n
\"\"
\n\n\n\n

Table 1.1 Overview of several well-known workflow managers and their key characteristics. Bas P. Harenslak, Julian R. de Ruiter. Data Pipelines with Apache Airflow

\n\n\n\n

What is a Data Pipeline?

\n\n\n\n

The workflow manager facilitates the creation and scheduling of a data pipeline. 

\n\n\n\n

A data pipeline is a chronological execution of an individual task in sequence or parallel, with data coming from different data sources and data transformation, ultimately loading the data into sinks that support business operations.

\n\n\n\n
\"\"
\n\n\n\n

Data Pipeline Example

\n\n\n\n

As you can see in the example above, a data pipeline is made up of tasks, and could be composed of many tasks intertwined with dependencies. 

\n\n\n\n

This means having a task management strategy is essential. Task management is mainly concerned with task dependency and task order of execution. Graph theory addresses both concerns and is an efficient way to manage tasks with the help of Directed Acyclic Graph (DAG).

\n\n\n\n

What is DAG?

\n\n\n\n

In mathematics, particularly graph theory and computer science, a directed acyclic graph (DAG) is a directed graph with no directed cycles. That means it consists of vertices and edges (also called arcs), with each edge directed from one vertex to another, such that following those directions will never form a closed loop.

\n\n\n\n

A directed graph is a DAG if (and only if) it can be topologically ordered by arranging the vertices in a linear order consistent with all edge directions. DAGs have many scientific and computational applications, ranging from biology (evolution, family trees, epidemiology) to sociology (citation networks) to computation (scheduling).

\n\n\n\n
\"\"
\n\n\n\n

Example of a DAG - https://upload.wikimedia.org/wikipedia/commons/5/51/Tred-G.png

\n\n\n\n

Using DAGs in a data pipeline to manage tasks gives us a theoretical and practical methodology and approach to deal with task dependencies and order of execution. DAG task management is a fundamental and necessary feature of a workflow manager.

\n\n\n\n

Workflow Manager

\n\n\n\n

In our current cloud native ecosystem, there are several workflow managers with different features. Translucent Computing  uses a common selection pattern to select an appropriate tool for cloud native environments. We look at a tool’s maturity to choose one that marries the theoretical and practical. This is why we use Apache Airflow, an open-source workflow manager that supports workflow creation, scheduling, and monitoring with support for DAGs.

\n\n\n\n

There’s more in our pipeline when it comes to pipeline content, so stay tuned for more!

\n','Workflow Engine - Data Pipeline','','inherit','closed','closed','','3608-revision-v1','','','2021-11-19 07:08:08','2021-11-19 12:08:08','',3608,'https://www.translucentcomputing.com/2021/11/3608-revision-v1/',0,'revision','',0),(3620,9,'2021-11-19 09:20:55','2021-11-19 14:20:55','','workflow engine - data pipeline','','inherit','open','closed','','workflow-engine-data-pipeline','','','2021-11-19 09:21:12','2021-11-19 14:21:12','',3608,'https://www.translucentcomputing.com/wp-content/uploads/2021/11/workflow-engine-data-pipeline.png',0,'attachment','image/png',0),(3621,9,'2021-11-22 09:53:23','2021-11-22 14:53:23','\n

A workflow is made up of an orchestrated and repeatable pattern of activity. These activities are enabled by resources that are systematically organized into processes. These processes transform materials, provide services, or process information. A workflow can be depicted as a sequence of operations, the work of a person or group, the work of an organization of staff, or one or more simple or complex mechanisms.

\n\n\n\n

In computing, a pipeline (also known as a data pipeline) is a connected series of data processing elements, where the output of one element is the input of the next one. The elements of a pipeline are often executed in parallel or in a time-sliced way.

\n\n\n\n

Workflow Types

\n\n\n\n

There are several different workflow types. Data plays a crucial role in product development and management. Companies and projects are continuously becoming more data-driven, adopting data-centric processes that combine different systems for product development and data analysis. These data-oriented workflows implement the data pipelines.

\n\n\n\n

There are many different ways to implement a workflow. They commonly range from simple cron jobs to workflows implemented in custom applications.

\n\n\n\n
\"\"
\n\n\n\n

Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)https://youtu.be/GeNFEtt-D4k

\n\n\n\n

The common approaches do not generalize, and developers focus on building the workflow engines, data pipelines, data tasks, and business rules for each workflow implementation. A workflow manager must support easy creation, scheduling, and workflow monitoring so that the developers can focus on delivering value through the data pipeline rather than building workflow engines.

\n\n\n\n
\"\"
\n\n\n\n

Table 1.1 Overview of several well-known workflow managers and their key characteristics. Bas P. Harenslak, Julian R. de Ruiter. Data Pipelines with Apache Airflow

\n\n\n\n

What is a Data Pipeline?

\n\n\n\n

The workflow manager facilitates the creation and scheduling of a data pipeline. 

\n\n\n\n

A data pipeline is a chronological execution of an individual task in sequence or parallel, with data coming from different data sources and data transformation, ultimately loading the data into sinks that support business operations.

\n\n\n\n
\"\"
\n\n\n\n

Data Pipeline Example

\n\n\n\n

As you can see in the example above, a data pipeline is made up of tasks, and could be composed of many tasks intertwined with dependencies. 

\n\n\n\n

This means having a task management strategy is essential. Task management is mainly concerned with task dependency and task order of execution. Graph theory addresses both concerns and is an efficient way to manage tasks with the help of Directed Acyclic Graph (DAG).

\n\n\n\n

What is DAG?

\n\n\n\n

In mathematics, particularly graph theory and computer science, a directed acyclic graph (DAG) is a directed graph with no directed cycles. That means it consists of vertices and edges (also called arcs), with each edge directed from one vertex to another, such that following those directions will never form a closed loop.

\n\n\n\n

A directed graph is a DAG if (and only if) it can be topologically ordered by arranging the vertices in a linear order consistent with all edge directions. DAGs have many scientific and computational applications, ranging from biology (evolution, family trees, epidemiology) to sociology (citation networks) to computation (scheduling).

\n\n\n\n
\"\"
\n\n\n\n

Example of a DAG - https://upload.wikimedia.org/wikipedia/commons/5/51/Tred-G.png

\n\n\n\n

Using DAGs in a data pipeline to manage tasks gives us a theoretical and practical methodology and approach to deal with task dependencies and order of execution. DAG task management is a fundamental and necessary feature of a workflow manager.

\n\n\n\n

Workflow Manager

\n\n\n\n

In our current cloud native ecosystem, there are several workflow managers with different features. Translucent Computing  uses a common selection pattern to select an appropriate tool for cloud native environments. We look at a tool’s maturity to choose one that marries the theoretical and practical. This is why we use Apache Airflow, an open-source workflow manager that supports workflow creation, scheduling, and monitoring with support for DAGs.

\n\n\n\n

There’s more in our pipeline when it comes to pipeline content, so stay tuned for more!

\n','Workflow Engine - Data Pipeline','','inherit','closed','closed','','3608-revision-v1','','','2021-11-22 09:53:23','2021-11-22 14:53:23','',3608,'https://www.translucentcomputing.com/2021/11/3608-revision-v1/',0,'revision','',0),(3625,9,'2021-11-25 09:10:09','2021-11-25 14:10:09','\n

A workflow is made up of an orchestrated and repeatable pattern of activity. These activities are enabled by resources that are systematically organized into processes. These processes transform materials, provide services, or process information. A workflow can be depicted as a sequence of operations, the work of a person or group, the work of an organization of staff, or one or more simple or complex mechanisms.

\n\n\n\n

In computing, a pipeline (also known as a data pipeline) is a connected series of data processing elements, where the output of one element is the input of the next one. The elements of a pipeline are often executed in parallel or in a time-sliced way.

\n\n\n\n

Workflow Types

\n\n\n\n

There are several different workflow types. Data plays a crucial role in product development and management. Companies and projects are continuously becoming more data-driven, adopting data-centric processes that combine different systems for product development and data analysis. These data-oriented workflows implement the data pipelines.

\n\n\n\n

There are many different ways to implement a workflow. They commonly range from simple cron jobs to workflows implemented in custom applications.

\n\n\n\n
\"\"
\n\n\n\n

Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)https://youtu.be/GeNFEtt-D4k

\n\n\n\n

The common approaches do not generalize, and developers focus on building the workflow engines, data pipelines, data tasks, and business rules for each workflow implementation. A workflow manager must support easy creation, scheduling, and workflow monitoring so that the developers can focus on delivering value through the data pipeline rather than building workflow engines.

\n\n\n\n
\"\"
\n\n\n\n

Table 1.1 Overview of several well-known workflow managers and their key characteristics. Bas P. Harenslak, Julian R. de Ruiter. Data Pipelines with Apache Airflow

\n\n\n\n

What is a Data Pipeline?

\n\n\n\n

The workflow manager facilitates the creation and scheduling of a data pipeline. 

\n\n\n\n

A data pipeline is a chronological execution of an individual task in sequence or parallel, with data coming from different data sources and data transformation, ultimately loading the data into sinks that support business operations.

\n\n\n\n
\"\"
\n\n\n\n

Data Pipeline Example

\n\n\n\n

As you can see in the example above, a data pipeline is made up of tasks, and could be composed of many tasks intertwined with dependencies. 

\n\n\n\n

This means having a task management strategy is essential. Task management is mainly concerned with task dependency and task order of execution. Graph theory addresses both concerns and is an efficient way to manage tasks with the help of Directed Acyclic Graph (DAG).

\n\n\n\n

What is DAG?

\n\n\n\n

In mathematics, particularly graph theory and computer science, a directed acyclic graph (DAG) is a directed graph with no directed cycles. That means it consists of vertices and edges (also called arcs), with each edge directed from one vertex to another, such that following those directions will never form a closed loop.

\n\n\n\n

A directed graph is a DAG if (and only if) it can be topologically ordered by arranging the vertices in a linear order consistent with all edge directions. DAGs have many scientific and computational applications, ranging from biology (evolution, family trees, epidemiology) to sociology (citation networks) to computation (scheduling).

\n\n\n\n
\"\"
\n\n\n\n

Example of a DAG - https://upload.wikimedia.org/wikipedia/commons/5/51/Tred-G.png

\n\n\n\n

Using DAGs in a data pipeline to manage tasks gives us a theoretical and practical methodology and approach to deal with task dependencies and order of execution. DAG task management is a fundamental and necessary feature of a workflow manager.

\n\n\n\n

Workflow Manager

\n\n\n\n

In our current cloud native ecosystem, there are several workflow managers with different features. Translucent Computing  uses a common selection pattern to select an appropriate tool for cloud native environments. We look at a tool’s maturity to choose one that marries the theoretical and practical. This is why we use Apache Airflow, an open-source workflow manager that supports workflow creation, scheduling, and monitoring with support for DAGs.

\n\n\n\n

There’s more in our pipeline when it comes to pipeline content, so stay tuned for more!

\n','Workflow Engine - Data Pipeline','','inherit','closed','closed','','3608-revision-v1','','','2021-11-25 09:10:09','2021-11-25 14:10:09','',3608,'https://www.translucentcomputing.com/?p=3625',0,'revision','',0),(3626,9,'2021-11-25 09:10:38','2021-11-25 14:10:38','\n

A workflow is made up of an orchestrated and repeatable pattern of activity. These activities are enabled by resources that are systematically organized into processes. These processes transform materials, provide services, or process information. A workflow can be depicted as a sequence of operations, the work of a person or group, the work of an organization of staff, or one or more simple or complex mechanisms.

\n\n\n\n

In computing, a pipeline (also known as a data pipeline) is a connected series of data processing elements, where the output of one element is the input of the next one. The elements of a pipeline are often executed in parallel or in a time-sliced way.

\n\n\n\n

Workflow Types

\n\n\n\n

There are several different workflow types. Data plays a crucial role in product development and management. Companies and projects are continuously becoming more data-driven, adopting data-centric processes that combine different systems for product development and data analysis. These data-oriented workflows implement the data pipelines.

\n\n\n\n

There are many different ways to implement a workflow. They commonly range from simple cron jobs to workflows implemented in custom applications.

\n\n\n\n
\"\"
\n\n\n\n

Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)https://youtu.be/GeNFEtt-D4k

\n\n\n\n

The common approaches do not generalize, and developers focus on building the workflow engines, data pipelines, data tasks, and business rules for each workflow implementation. A workflow manager must support easy creation, scheduling, and workflow monitoring so that the developers can focus on delivering value through the data pipeline rather than building workflow engines.

\n\n\n\n
\"\"
\n\n\n\n

Table 1.1 Overview of several well-known workflow managers and their key characteristics. Bas P. Harenslak, Julian R. de Ruiter. Data Pipelines with Apache Airflow

\n\n\n\n

What is a Data Pipeline?

\n\n\n\n

The workflow manager facilitates the creation and scheduling of a data pipeline. 

\n\n\n\n

A data pipeline is a chronological execution of an individual task in sequence or parallel, with data coming from different data sources and data transformation, ultimately loading the data into sinks that support business operations.

\n\n\n\n
\"\"
\n\n\n\n

Data Pipeline Example

\n\n\n\n

As you can see in the example above, a data pipeline is made up of tasks, and could be composed of many tasks intertwined with dependencies. 

\n\n\n\n

This means having a task management strategy is essential. Task management is mainly concerned with task dependency and task order of execution. Graph theory addresses both concerns and is an efficient way to manage tasks with the help of Directed Acyclic Graph (DAG).

\n\n\n\n

What is DAG?

\n\n\n\n

In mathematics, particularly graph theory and computer science, a directed acyclic graph (DAG) is a directed graph with no directed cycles. That means it consists of vertices and edges (also called arcs), with each edge directed from one vertex to another, such that following those directions will never form a closed loop.

\n\n\n\n

A directed graph is a DAG if (and only if) it can be topologically ordered by arranging the vertices in a linear order consistent with all edge directions. DAGs have many scientific and computational applications, ranging from biology (evolution, family trees, epidemiology) to sociology (citation networks) to computation (scheduling).

\n\n\n\n
\"\"
\n\n\n\n

Example of a DAG - https://upload.wikimedia.org/wikipedia/commons/5/51/Tred-G.png

\n\n\n\n

Using DAGs in a data pipeline to manage tasks gives us a theoretical and practical methodology and approach to deal with task dependencies and order of execution. DAG task management is a fundamental and necessary feature of a workflow manager.

\n\n\n\n

Workflow Manager

\n\n\n\n

In our current cloud native ecosystem, there are several workflow managers with different features. Translucent Computing  uses a common selection pattern to select an appropriate tool for cloud native environments. We look at a tool’s maturity to choose one that marries the theoretical and practical. This is why we use Apache Airflow, an open-source workflow manager that supports workflow creation, scheduling, and monitoring with support for DAGs.

\n\n\n\n

There’s more in our pipeline when it comes to pipeline content, so stay tuned for more!

\n','Workflow Engine - Data Pipeline','','inherit','closed','closed','','3608-revision-v1','','','2021-11-25 09:10:38','2021-11-25 14:10:38','',3608,'https://www.translucentcomputing.com/?p=3626',0,'revision','',0),(3627,9,'2021-11-25 09:11:12','2021-11-25 14:11:12','\n

A workflow is made up of an orchestrated and repeatable pattern of activity. These activities are enabled by resources that are systematically organized into processes. These processes transform materials, provide services, or process information. A workflow can be depicted as a sequence of operations, the work of a person or group, the work of an organization of staff, or one or more simple or complex mechanisms.

\n\n\n\n

In computing, a pipeline (also known as a data pipeline) is a connected series of data processing elements, where the output of one element is the input of the next one. The elements of a pipeline are often executed in parallel or in a time-sliced way.

\n\n\n\n

Workflow Types

\n\n\n\n

There are several different workflow types. Data plays a crucial role in product development and management. Companies and projects are continuously becoming more data-driven, adopting data-centric processes that combine different systems for product development and data analysis. These data-oriented workflows implement the data pipelines.

\n\n\n\n

There are many different ways to implement a workflow. They commonly range from simple cron jobs to workflows implemented in custom applications.

\n\n\n\n
\"\"
\n\n\n\n

Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)https://youtu.be/GeNFEtt-D4k

\n\n\n\n

The common approaches do not generalize, and developers focus on building the workflow engines, data pipelines, data tasks, and business rules for each workflow implementation. A workflow manager must support easy creation, scheduling, and workflow monitoring so that the developers can focus on delivering value through the data pipeline rather than building workflow engines.

\n\n\n\n
\"\"
\n\n\n\n

Table 1.1 Overview of several well-known workflow managers and their key characteristics. Bas P. Harenslak, Julian R. de Ruiter. Data Pipelines with Apache Airflow

\n\n\n\n

What is a Data Pipeline?

\n\n\n\n

The workflow manager facilitates the creation and scheduling of a data pipeline. 

\n\n\n\n

A data pipeline is a chronological execution of an individual task in sequence or parallel, with data coming from different data sources and data transformation, ultimately loading the data into sinks that support business operations.

\n\n\n\n
\"\"
\n\n\n\n

Data Pipeline Example

\n\n\n\n

As you can see in the example above, a data pipeline is made up of tasks, and could be composed of many tasks intertwined with dependencies. 

\n\n\n\n

This means having a task management strategy is essential. Task management is mainly concerned with task dependency and task order of execution. Graph theory addresses both concerns and is an efficient way to manage tasks with the help of Directed Acyclic Graph (DAG).

\n\n\n\n

What is DAG?

\n\n\n\n

In mathematics, particularly graph theory and computer science, a directed acyclic graph (DAG) is a directed graph with no directed cycles. That means it consists of vertices and edges (also called arcs), with each edge directed from one vertex to another, such that following those directions will never form a closed loop.

\n\n\n\n

A directed graph is a DAG if (and only if) it can be topologically ordered by arranging the vertices in a linear order consistent with all edge directions. DAGs have many scientific and computational applications, ranging from biology (evolution, family trees, epidemiology) to sociology (citation networks) to computation (scheduling).

\n\n\n\n
\"\"
\n\n\n\n

Example of a DAG - https://upload.wikimedia.org/wikipedia/commons/5/51/Tred-G.png

\n\n\n\n

Using DAGs in a data pipeline to manage tasks gives us a theoretical and practical methodology and approach to deal with task dependencies and order of execution. DAG task management is a fundamental and necessary feature of a workflow manager.

\n\n\n\n

Workflow Manager

\n\n\n\n

In our current cloud native ecosystem, there are several workflow managers with different features. Translucent Computing  uses a common selection pattern to select an appropriate tool for cloud native environments. We look at a tool’s maturity to choose one that marries the theoretical and practical. This is why we use Apache Airflow, an open-source workflow manager that supports workflow creation, scheduling, and monitoring with support for DAGs.

\n\n\n\n

There’s more in our pipeline when it comes to pipeline content, so stay tuned for more!

\n','Workflow Engine - Data Pipeline','','inherit','closed','closed','','3608-revision-v1','','','2021-11-25 09:11:12','2021-11-25 14:11:12','',3608,'https://www.translucentcomputing.com/?p=3627',0,'revision','',0); INSERT INTO `wp_posts` VALUES (3628,9,'2021-11-25 09:11:27','2021-11-25 14:11:27','\n

A workflow is made up of an orchestrated and repeatable pattern of activity. These activities are enabled by resources that are systematically organized into processes. These processes transform materials, provide services, or process information. A workflow can be depicted as a sequence of operations, the work of a person or group, the work of an organization of staff, or one or more simple or complex mechanisms.

\n\n\n\n

In computing, a pipeline (also known as a data pipeline) is a connected series of data processing elements, where the output of one element is the input of the next one. The elements of a pipeline are often executed in parallel or in a time-sliced way.

\n\n\n\n

Workflow Types

\n\n\n\n

There are several different workflow types. Data plays a crucial role in product development and management. Companies and projects are continuously becoming more data-driven, adopting data-centric processes that combine different systems for product development and data analysis. These data-oriented workflows implement the data pipelines.

\n\n\n\n

There are many different ways to implement a workflow. They commonly range from simple cron jobs to workflows implemented in custom applications.

\n\n\n\n
\"\"
\n\n\n\n

Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)https://youtu.be/GeNFEtt-D4k

\n\n\n\n

The common approaches do not generalize, and developers focus on building the workflow engines, data pipelines, data tasks, and business rules for each workflow implementation. A workflow manager must support easy creation, scheduling, and workflow monitoring so that the developers can focus on delivering value through the data pipeline rather than building workflow engines.

\n\n\n\n
\"\"
\n\n\n\n

Table 1.1 Overview of several well-known workflow managers and their key characteristics. Bas P. Harenslak, Julian R. de Ruiter. Data Pipelines with Apache Airflow

\n\n\n\n

What is a Data Pipeline?

\n\n\n\n

The workflow manager facilitates the creation and scheduling of a data pipeline. 

\n\n\n\n

A data pipeline is a chronological execution of an individual task in sequence or parallel, with data coming from different data sources and data transformation, ultimately loading the data into sinks that support business operations.

\n\n\n\n
\"\"
\n\n\n\n

Data Pipeline Example

\n\n\n\n

As you can see in the example above, a data pipeline is made up of tasks, and could be composed of many tasks intertwined with dependencies. 

\n\n\n\n

This means having a task management strategy is essential. Task management is mainly concerned with task dependency and task order of execution. Graph theory addresses both concerns and is an efficient way to manage tasks with the help of Directed Acyclic Graph (DAG).

\n\n\n\n

What is DAG?

\n\n\n\n

In mathematics, particularly graph theory and computer science, a directed acyclic graph (DAG) is a directed graph with no directed cycles. That means it consists of vertices and edges (also called arcs), with each edge directed from one vertex to another, such that following those directions will never form a closed loop.

\n\n\n\n

A directed graph is a DAG if (and only if) it can be topologically ordered by arranging the vertices in a linear order consistent with all edge directions. DAGs have many scientific and computational applications, ranging from biology (evolution, family trees, epidemiology) to sociology (citation networks) to computation (scheduling).

\n\n\n\n
\"\"
\n\n\n\n

Example of a DAG - https://upload.wikimedia.org/wikipedia/commons/5/51/Tred-G.png

\n\n\n\n

Using DAGs in a data pipeline to manage tasks gives us a theoretical and practical methodology and approach to deal with task dependencies and order of execution. DAG task management is a fundamental and necessary feature of a workflow manager.

\n\n\n\n

Workflow Manager

\n\n\n\n

In our current cloud native ecosystem, there are several workflow managers with different features. Translucent Computing  uses a common selection pattern to select an appropriate tool for cloud native environments. We look at a tool’s maturity to choose one that marries the theoretical and practical. This is why we use Apache Airflow, an open-source workflow manager that supports workflow creation, scheduling, and monitoring with support for DAGs.

\n\n\n\n

There’s more in our pipeline when it comes to pipeline content, so stay tuned for more!

\n','Workflow Engine - Data Pipeline','','inherit','closed','closed','','3608-revision-v1','','','2021-11-25 09:11:27','2021-11-25 14:11:27','',3608,'https://www.translucentcomputing.com/?p=3628',0,'revision','',0),(3629,9,'2021-11-25 09:11:43','2021-11-25 14:11:43','\n

A workflow is made up of an orchestrated and repeatable pattern of activity. These activities are enabled by resources that are systematically organized into processes. These processes transform materials, provide services, or process information. A workflow can be depicted as a sequence of operations, the work of a person or group, the work of an organization of staff, or one or more simple or complex mechanisms.

\n\n\n\n

In computing, a pipeline (also known as a data pipeline) is a connected series of data processing elements, where the output of one element is the input of the next one. The elements of a pipeline are often executed in parallel or in a time-sliced way.

\n\n\n\n

Workflow Types

\n\n\n\n

There are several different workflow types. Data plays a crucial role in product development and management. Companies and projects are continuously becoming more data-driven, adopting data-centric processes that combine different systems for product development and data analysis. These data-oriented workflows implement the data pipelines.

\n\n\n\n

There are many different ways to implement a workflow. They commonly range from simple cron jobs to workflows implemented in custom applications.

\n\n\n\n
\"\"
\n\n\n\n

Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)https://youtu.be/GeNFEtt-D4k

\n\n\n\n

The common approaches do not generalize, and developers focus on building the workflow engines, data pipelines, data tasks, and business rules for each workflow implementation. A workflow manager must support easy creation, scheduling, and workflow monitoring so that the developers can focus on delivering value through the data pipeline rather than building workflow engines.

\n\n\n\n
\"\"
\n\n\n\n

Table 1.1 Overview of several well-known workflow managers and their key characteristics. Bas P. Harenslak, Julian R. de Ruiter. Data Pipelines with Apache Airflow

\n\n\n\n

What is a Data Pipeline?

\n\n\n\n

The workflow manager facilitates the creation and scheduling of a data pipeline. 

\n\n\n\n

A data pipeline is a chronological execution of an individual task in sequence or parallel, with data coming from different data sources and data transformation, ultimately loading the data into sinks that support business operations.

\n\n\n\n
\"\"
\n\n\n\n

Data Pipeline Example

\n\n\n\n

As you can see in the example above, a data pipeline is made up of tasks, and could be composed of many tasks intertwined with dependencies. 

\n\n\n\n

This means having a task management strategy is essential. Task management is mainly concerned with task dependency and task order of execution. Graph theory addresses both concerns and is an efficient way to manage tasks with the help of Directed Acyclic Graph (DAG).

\n\n\n\n

What is DAG?

\n\n\n\n

In mathematics, particularly graph theory and computer science, a directed acyclic graph (DAG) is a directed graph with no directed cycles. That means it consists of vertices and edges (also called arcs), with each edge directed from one vertex to another, such that following those directions will never form a closed loop.

\n\n\n\n

A directed graph is a DAG if (and only if) it can be topologically ordered by arranging the vertices in a linear order consistent with all edge directions. DAGs have many scientific and computational applications, ranging from biology (evolution, family trees, epidemiology) to sociology (citation networks) to computation (scheduling).

\n\n\n\n
\"\"
\n\n\n\n

Example of a DAG - https://upload.wikimedia.org/wikipedia/commons/5/51/Tred-G.png

\n\n\n\n

Using DAGs in a data pipeline to manage tasks gives us a theoretical and practical methodology and approach to deal with task dependencies and order of execution. DAG task management is a fundamental and necessary feature of a workflow manager.

\n\n\n\n

Workflow Manager

\n\n\n\n

In our current cloud native ecosystem, there are several workflow managers with different features. Translucent Computing  uses a common selection pattern to select an appropriate tool for cloud native environments. We look at a tool’s maturity to choose one that marries the theoretical and practical. This is why we use Apache Airflow, an open-source workflow manager that supports workflow creation, scheduling, and monitoring with support for DAGs.

\n\n\n\n

There’s more in our pipeline when it comes to pipeline content, so stay tuned for more!

\n','Workflow Engine - Data Pipeline','','inherit','closed','closed','','3608-revision-v1','','','2021-11-25 09:11:43','2021-11-25 14:11:43','',3608,'https://www.translucentcomputing.com/?p=3629',0,'revision','',0),(3631,9,'2021-11-25 09:16:58','2021-11-25 14:16:58','\n

A workflow is made up of an orchestrated and repeatable pattern of activity. These activities are enabled by resources that are systematically organized into processes. These processes transform materials, provide services, or process information. A workflow can be depicted as a sequence of operations, the work of a person or group, the work of an organization of staff, or one or more simple or complex mechanisms.

\n\n\n\n

In computing, a pipeline (also known as a data pipeline) is a connected series of data processing elements, where the output of one element is the input of the next one. The elements of a pipeline are often executed in parallel or in a time-sliced way.

\n\n\n\n

Workflow Types

\n\n\n\n

There are several different workflow types. Data plays a crucial role in product development and management. Companies and projects are continuously becoming more data-driven, adopting data-centric processes that combine different systems for product development and data analysis. These data-oriented workflows implement the data pipelines.

\n\n\n\n

There are many different ways to implement a workflow. They commonly range from simple cron jobs to workflows implemented in custom applications.

\n\n\n\n
\"\"
\n\n\n\n

Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)https://youtu.be/GeNFEtt-D4k

\n\n\n\n

The common approaches do not generalize, and developers focus on building the workflow engines, data pipelines, data tasks, and business rules for each workflow implementation. A workflow manager must support easy creation, scheduling, and workflow monitoring so that the developers can focus on delivering value through the data pipeline rather than building workflow engines.

\n\n\n\n
\"\"
\n\n\n\n

Table 1.1 Overview of several well-known workflow managers and their key characteristics. Bas P. Harenslak, Julian R. de Ruiter. Data Pipelines with Apache Airflow

\n\n\n\n

What is a Data Pipeline?

\n\n\n\n

The workflow manager facilitates the creation and scheduling of a data pipeline. 

\n\n\n\n

A data pipeline is a chronological execution of an individual task in sequence or parallel, with data coming from different data sources and data transformation, ultimately loading the data into sinks that support business operations.

\n\n\n\n
\"\"
\n\n\n\n

Data Pipeline Example

\n\n\n\n

As you can see in the example above, a data pipeline is made up of tasks, and could be composed of many tasks intertwined with dependencies. 

\n\n\n\n

This means having a task management strategy is essential. Task management is mainly concerned with task dependency and task order of execution. Graph theory addresses both concerns and is an efficient way to manage tasks with the help of Directed Acyclic Graph (DAG).

\n\n\n\n

What is DAG?

\n\n\n\n

In mathematics, particularly graph theory and computer science, a directed acyclic graph (DAG) is a directed graph with no directed cycles. That means it consists of vertices and edges (also called arcs), with each edge directed from one vertex to another, such that following those directions will never form a closed loop.

\n\n\n\n

A directed graph is a DAG if (and only if) it can be topologically ordered by arranging the vertices in a linear order consistent with all edge directions. DAGs have many scientific and computational applications, ranging from biology (evolution, family trees, epidemiology) to sociology (citation networks) to computation (scheduling).

\n\n\n\n
\"\"
\n\n\n\n

Example of a DAG - https://upload.wikimedia.org/wikipedia/commons/5/51/Tred-G.png

\n\n\n\n

Using DAGs in a data pipeline to manage tasks gives us a theoretical and practical methodology and approach to deal with task dependencies and order of execution. DAG task management is a fundamental and necessary feature of a workflow manager.

\n\n\n\n

Workflow Manager

\n\n\n\n

In our current cloud native ecosystem, there are several workflow managers with different features. Translucent Computing  uses a common selection pattern to select an appropriate tool for cloud native environments. We look at a tool’s maturity to choose one that marries the theoretical and practical. This is why we use Apache Airflow, an open-source workflow manager that supports workflow creation, scheduling, and monitoring with support for DAGs.

\n\n\n\n

There’s more in our pipeline when it comes to pipeline content, so stay tuned for more!

\n','Workflow Engine - Data Pipeline','','inherit','closed','closed','','3608-revision-v1','','','2021-11-25 09:16:58','2021-11-25 14:16:58','',3608,'https://www.translucentcomputing.com/?p=3631',0,'revision','',0),(3633,9,'2021-11-25 09:22:13','2021-11-25 14:22:13','\n

A workflow is made up of an orchestrated and repeatable pattern of activity. These activities are enabled by resources that are systematically organized into processes. These processes transform materials, provide services, or process information. A workflow can be depicted as a sequence of operations, the work of a person or group, the work of an organization of staff, or one or more simple or complex mechanisms.

\n\n\n\n

In computing, a pipeline (also known as a data pipeline) is a connected series of data processing elements, where the output of one element is the input of the next one. The elements of a pipeline are often executed in parallel or in a time-sliced way.

\n\n\n\n

Workflow Types

\n\n\n\n

There are several different workflow types. Data plays a crucial role in product development and management. Companies and projects are continuously becoming more data-driven, adopting data-centric processes that combine different systems for product development and data analysis. These data-oriented workflows implement the data pipelines.

\n\n\n\n

There are many different ways to implement a workflow. They commonly range from simple cron jobs to workflows implemented in custom applications.

\n\n\n\n
\"\"
\n\n\n\n

Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)https://youtu.be/GeNFEtt-D4k

\n\n\n\n

The common approaches do not generalize, and developers focus on building the workflow engines, data pipelines, data tasks, and business rules for each workflow implementation. A workflow manager must support easy creation, scheduling, and workflow monitoring so that the developers can focus on delivering value through the data pipeline rather than building workflow engines.

\n\n\n\n
\"\"
\n\n\n\n

Table 1.1 Overview of several well-known workflow managers and their key characteristics. Bas P. Harenslak, Julian R. de Ruiter. Data Pipelines with Apache Airflow

\n\n\n\n

What is a Data Pipeline?

\n\n\n\n

The workflow manager facilitates the creation and scheduling of a data pipeline. 

\n\n\n\n

A data pipeline is a chronological execution of an individual task in sequence or parallel, with data coming from different data sources and data transformation, ultimately loading the data into sinks that support business operations.

\n\n\n\n
\"\"
\n\n\n\n

Data Pipeline Example

\n\n\n\n

As you can see in the example above, a data pipeline is made up of tasks, and could be composed of many tasks intertwined with dependencies. 

\n\n\n\n

This means having a task management strategy is essential. Task management is mainly concerned with task dependency and task order of execution. Graph theory addresses both concerns and is an efficient way to manage tasks with the help of Directed Acyclic Graph (DAG).

\n\n\n\n

What is DAG?

\n\n\n\n

In mathematics, particularly graph theory and computer science, a directed acyclic graph (DAG) is a directed graph with no directed cycles. That means it consists of vertices and edges (also called arcs), with each edge directed from one vertex to another, such that following those directions will never form a closed loop.

\n\n\n\n

A directed graph is a DAG if (and only if) it can be topologically ordered by arranging the vertices in a linear order consistent with all edge directions. DAGs have many scientific and computational applications, ranging from biology (evolution, family trees, epidemiology) to sociology (citation networks) to computation (scheduling).

\n\n\n\n
\"\"
\n\n\n\n

Example of a DAG - https://upload.wikimedia.org/wikipedia/commons/5/51/Tred-G.png

\n\n\n\n

Using DAGs in a data pipeline to manage tasks gives us a theoretical and practical methodology and approach to deal with task dependencies and order of execution. DAG task management is a fundamental and necessary feature of a workflow manager.

\n\n\n\n

Workflow Manager

\n\n\n\n

In our current cloud native ecosystem, there are several workflow managers with different features. Translucent Computing  uses a common selection pattern to select an appropriate tool for cloud native environments. We look at a tool’s maturity to choose one that marries the theoretical and practical. This is why we use Apache Airflow, an open-source workflow manager that supports workflow creation, scheduling, and monitoring with support for DAGs.

\n\n\n\n

There’s more in our pipeline when it comes to pipeline content, so stay tuned for more!

\n','Workflow Engine - Data Pipeline','','inherit','closed','closed','','3608-revision-v1','','','2021-11-25 09:22:13','2021-11-25 14:22:13','',3608,'https://www.translucentcomputing.com/?p=3633',0,'revision','',0),(3636,4,'2021-11-25 10:40:48','2021-11-25 15:40:48','\n

A workflow is made up of an orchestrated and repeatable pattern of activity. These activities are enabled by resources that are systematically organized into processes. These processes transform materials, provide services, or process information. A workflow can be depicted as a sequence of operations, the work of a person or group, the work of an organization of staff, or one or more simple or complex mechanisms.

\n\n\n\n

In computing, a pipeline (also known as a data pipeline) is a connected series of data processing elements, where the output of one element is the input of the next one. The elements of a pipeline are often executed in parallel or in a time-sliced way.

\n\n\n\n

Workflow Types

\n\n\n\n

There are several different workflow types. Data plays a crucial role in product development and management. Companies and projects are continuously becoming more data-driven, adopting data-centric processes that combine different systems for product development and data analysis. These data-oriented workflows implement the data pipelines.

\n\n\n\n

There are many different ways to implement a workflow. They commonly range from simple cron jobs to workflows implemented in custom applications.

\n\n\n\n
\"\"
\n\n\n\n

Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)https://youtu.be/GeNFEtt-D4k

\n\n\n\n

The common approaches do not generalize, and developers focus on building the workflow engines, data pipelines, data tasks, and business rules for each workflow implementation. A workflow manager must support easy creation, scheduling, and workflow monitoring so that the developers can focus on delivering value through the data pipeline rather than building workflow engines.

\n\n\n\n
\"\"
\n\n\n\n

\"Table 1.1 Overview of several well-known workflow managers and their key characteristics. Bas P. Harenslak, Julian R. de Ruiter. Data Pipelines with Apache Airflow\"

test
\n\n\n\n

What is a Data Pipeline?

\n\n\n\n

The workflow manager facilitates the creation and scheduling of a data pipeline. 

\n\n\n\n

A data pipeline is a chronological execution of an individual task in sequence or parallel, with data coming from different data sources and data transformation, ultimately loading the data into sinks that support business operations.

\n\n\n\n
\"\"
\n\n\n\n

Data Pipeline Example

\n\n\n\n

As you can see in the example above, a data pipeline is made up of tasks, and could be composed of many tasks intertwined with dependencies. 

\n\n\n\n

This means having a task management strategy is essential. Task management is mainly concerned with task dependency and task order of execution. Graph theory addresses both concerns and is an efficient way to manage tasks with the help of Directed Acyclic Graph (DAG).

\n\n\n\n

What is DAG?

\n\n\n\n

In mathematics, particularly graph theory and computer science, a directed acyclic graph (DAG) is a directed graph with no directed cycles. That means it consists of vertices and edges (also called arcs), with each edge directed from one vertex to another, such that following those directions will never form a closed loop.

\n\n\n\n

A directed graph is a DAG if (and only if) it can be topologically ordered by arranging the vertices in a linear order consistent with all edge directions. DAGs have many scientific and computational applications, ranging from biology (evolution, family trees, epidemiology) to sociology (citation networks) to computation (scheduling).

\n\n\n\n
\"\"
\n\n\n\n

Example of a DAG - https://upload.wikimedia.org/wikipedia/commons/5/51/Tred-G.png

\n\n\n\n

Using DAGs in a data pipeline to manage tasks gives us a theoretical and practical methodology and approach to deal with task dependencies and order of execution. DAG task management is a fundamental and necessary feature of a workflow manager.

\n\n\n\n

Workflow Manager

\n\n\n\n

In our current cloud native ecosystem, there are several workflow managers with different features. Translucent Computing  uses a common selection pattern to select an appropriate tool for cloud native environments. We look at a tool’s maturity to choose one that marries the theoretical and practical. This is why we use Apache Airflow, an open-source workflow manager that supports workflow creation, scheduling, and monitoring with support for DAGs.

\n\n\n\n

There’s more in our pipeline when it comes to pipeline content, so stay tuned for more!

\n','Workflow Engine - Data Pipeline','','inherit','closed','closed','','3608-revision-v1','','','2021-11-25 10:40:48','2021-11-25 15:40:48','',3608,'https://www.translucentcomputing.com/?p=3636',0,'revision','',0),(3638,4,'2021-11-25 10:42:35','2021-11-25 15:42:35','\n

A workflow is made up of an orchestrated and repeatable pattern of activity. These activities are enabled by resources that are systematically organized into processes. These processes transform materials, provide services, or process information. A workflow can be depicted as a sequence of operations, the work of a person or group, the work of an organization of staff, or one or more simple or complex mechanisms.

\n\n\n\n

In computing, a pipeline (also known as a data pipeline) is a connected series of data processing elements, where the output of one element is the input of the next one. The elements of a pipeline are often executed in parallel or in a time-sliced way.

\n\n\n\n

Workflow Types

\n\n\n\n

There are several different workflow types. Data plays a crucial role in product development and management. Companies and projects are continuously becoming more data-driven, adopting data-centric processes that combine different systems for product development and data analysis. These data-oriented workflows implement the data pipelines.

\n\n\n\n

There are many different ways to implement a workflow. They commonly range from simple cron jobs to workflows implemented in custom applications.

\n\n\n\n
\"\"
\n\n\n\n

Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)https://youtu.be/GeNFEtt-D4k

\n\n\n\n

The common approaches do not generalize, and developers focus on building the workflow engines, data pipelines, data tasks, and business rules for each workflow implementation. A workflow manager must support easy creation, scheduling, and workflow monitoring so that the developers can focus on delivering value through the data pipeline rather than building workflow engines.

\n\n\n\n
\"\"
\n\n\n\n

\"Table 1.1 Overview of several well-known workflow managers and their key characteristics. Bas P. Harenslak, Julian R. de Ruiter. Data Pipelines with Apache Airflow\"

\n\n\n\n
test
\n\n\n\n

What is a Data Pipeline?

\n\n\n\n

The workflow manager facilitates the creation and scheduling of a data pipeline. 

\n\n\n\n

A data pipeline is a chronological execution of an individual task in sequence or parallel, with data coming from different data sources and data transformation, ultimately loading the data into sinks that support business operations.

\n\n\n\n
\"\"
\n\n\n\n

Data Pipeline Example

\n\n\n\n

As you can see in the example above, a data pipeline is made up of tasks, and could be composed of many tasks intertwined with dependencies. 

\n\n\n\n

This means having a task management strategy is essential. Task management is mainly concerned with task dependency and task order of execution. Graph theory addresses both concerns and is an efficient way to manage tasks with the help of Directed Acyclic Graph (DAG).

\n\n\n\n

What is DAG?

\n\n\n\n

In mathematics, particularly graph theory and computer science, a directed acyclic graph (DAG) is a directed graph with no directed cycles. That means it consists of vertices and edges (also called arcs), with each edge directed from one vertex to another, such that following those directions will never form a closed loop.

\n\n\n\n

A directed graph is a DAG if (and only if) it can be topologically ordered by arranging the vertices in a linear order consistent with all edge directions. DAGs have many scientific and computational applications, ranging from biology (evolution, family trees, epidemiology) to sociology (citation networks) to computation (scheduling).

\n\n\n\n
\"\"
\n\n\n\n

Example of a DAG - https://upload.wikimedia.org/wikipedia/commons/5/51/Tred-G.png

\n\n\n\n

Using DAGs in a data pipeline to manage tasks gives us a theoretical and practical methodology and approach to deal with task dependencies and order of execution. DAG task management is a fundamental and necessary feature of a workflow manager.

\n\n\n\n

Workflow Manager

\n\n\n\n

In our current cloud native ecosystem, there are several workflow managers with different features. Translucent Computing  uses a common selection pattern to select an appropriate tool for cloud native environments. We look at a tool’s maturity to choose one that marries the theoretical and practical. This is why we use Apache Airflow, an open-source workflow manager that supports workflow creation, scheduling, and monitoring with support for DAGs.

\n\n\n\n

There’s more in our pipeline when it comes to pipeline content, so stay tuned for more!

\n','Workflow Engine - Data Pipeline','','inherit','closed','closed','','3608-revision-v1','','','2021-11-25 10:42:35','2021-11-25 15:42:35','',3608,'https://www.translucentcomputing.com/?p=3638',0,'revision','',0),(3640,4,'2021-11-25 10:44:41','2021-11-25 15:44:41','\n

A workflow is made up of an orchestrated and repeatable pattern of activity. These activities are enabled by resources that are systematically organized into processes. These processes transform materials, provide services, or process information. A workflow can be depicted as a sequence of operations, the work of a person or group, the work of an organization of staff, or one or more simple or complex mechanisms.

\n\n\n\n

In computing, a pipeline (also known as a data pipeline) is a connected series of data processing elements, where the output of one element is the input of the next one. The elements of a pipeline are often executed in parallel or in a time-sliced way.

\n\n\n\n

Workflow Types

\n\n\n\n

There are several different workflow types. Data plays a crucial role in product development and management. Companies and projects are continuously becoming more data-driven, adopting data-centric processes that combine different systems for product development and data analysis. These data-oriented workflows implement the data pipelines.

\n\n\n\n

There are many different ways to implement a workflow. They commonly range from simple cron jobs to workflows implemented in custom applications.

\n\n\n\n
\"\"
\n\n\n\n

Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)https://youtu.be/GeNFEtt-D4k

\n\n\n\n

The common approaches do not generalize, and developers focus on building the workflow engines, data pipelines, data tasks, and business rules for each workflow implementation. A workflow manager must support easy creation, scheduling, and workflow monitoring so that the developers can focus on delivering value through the data pipeline rather than building workflow engines.

\n\n\n\n
\"\"
\n\n\n\n

\"Table 1.1 Overview of several well-known workflow managers and their key characteristics. Bas P. Harenslak, Julian R. de Ruiter. Data Pipelines with Apache Airflow\"

\n\n\n\nThe quick brown fox jumps over the lazy dog\n\n\n\n

What is a Data Pipeline?

\n\n\n\n

The workflow manager facilitates the creation and scheduling of a data pipeline. 

\n\n\n\n

A data pipeline is a chronological execution of an individual task in sequence or parallel, with data coming from different data sources and data transformation, ultimately loading the data into sinks that support business operations.

\n\n\n\n
\"\"
\n\n\n\n

Data Pipeline Example

\n\n\n\n

As you can see in the example above, a data pipeline is made up of tasks, and could be composed of many tasks intertwined with dependencies. 

\n\n\n\n

This means having a task management strategy is essential. Task management is mainly concerned with task dependency and task order of execution. Graph theory addresses both concerns and is an efficient way to manage tasks with the help of Directed Acyclic Graph (DAG).

\n\n\n\n

What is DAG?

\n\n\n\n

In mathematics, particularly graph theory and computer science, a directed acyclic graph (DAG) is a directed graph with no directed cycles. That means it consists of vertices and edges (also called arcs), with each edge directed from one vertex to another, such that following those directions will never form a closed loop.

\n\n\n\n

A directed graph is a DAG if (and only if) it can be topologically ordered by arranging the vertices in a linear order consistent with all edge directions. DAGs have many scientific and computational applications, ranging from biology (evolution, family trees, epidemiology) to sociology (citation networks) to computation (scheduling).

\n\n\n\n
\"\"
\n\n\n\n

Example of a DAG - https://upload.wikimedia.org/wikipedia/commons/5/51/Tred-G.png

\n\n\n\n

Using DAGs in a data pipeline to manage tasks gives us a theoretical and practical methodology and approach to deal with task dependencies and order of execution. DAG task management is a fundamental and necessary feature of a workflow manager.

\n\n\n\n

Workflow Manager

\n\n\n\n

In our current cloud native ecosystem, there are several workflow managers with different features. Translucent Computing  uses a common selection pattern to select an appropriate tool for cloud native environments. We look at a tool’s maturity to choose one that marries the theoretical and practical. This is why we use Apache Airflow, an open-source workflow manager that supports workflow creation, scheduling, and monitoring with support for DAGs.

\n\n\n\n

There’s more in our pipeline when it comes to pipeline content, so stay tuned for more!

\n','Workflow Engine - Data Pipeline','','inherit','closed','closed','','3608-revision-v1','','','2021-11-25 10:44:41','2021-11-25 15:44:41','',3608,'https://www.translucentcomputing.com/?p=3640',0,'revision','',0),(3642,4,'2021-11-25 10:45:49','2021-11-25 15:45:49','\n

A workflow is made up of an orchestrated and repeatable pattern of activity. These activities are enabled by resources that are systematically organized into processes. These processes transform materials, provide services, or process information. A workflow can be depicted as a sequence of operations, the work of a person or group, the work of an organization of staff, or one or more simple or complex mechanisms.

\n\n\n\n

In computing, a pipeline (also known as a data pipeline) is a connected series of data processing elements, where the output of one element is the input of the next one. The elements of a pipeline are often executed in parallel or in a time-sliced way.

\n\n\n\n

Workflow Types

\n\n\n\n

There are several different workflow types. Data plays a crucial role in product development and management. Companies and projects are continuously becoming more data-driven, adopting data-centric processes that combine different systems for product development and data analysis. These data-oriented workflows implement the data pipelines.

\n\n\n\n

There are many different ways to implement a workflow. They commonly range from simple cron jobs to workflows implemented in custom applications.

\n\n\n\n
\"\"
\n\n\n\n

Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)https://youtu.be/GeNFEtt-D4k

\n\n\n\n

The common approaches do not generalize, and developers focus on building the workflow engines, data pipelines, data tasks, and business rules for each workflow implementation. A workflow manager must support easy creation, scheduling, and workflow monitoring so that the developers can focus on delivering value through the data pipeline rather than building workflow engines.

\n\n\n\n
\"\"
\"Table 1.1 Overview of several well-known workflow managers and their key characteristics. Bas P. Harenslak, Julian R. de Ruiter. Data Pipelines with Apache Airflow\"
\n\n\n\nTable 1.1 Overview of several well-known workflow managers and their key characteristics. Bas P. Harenslak, Julian R. de Ruiter. Data Pipelines with Apache Airflow\n\n\n\n

What is a Data Pipeline?

\n\n\n\n

The workflow manager facilitates the creation and scheduling of a data pipeline. 

\n\n\n\n

A data pipeline is a chronological execution of an individual task in sequence or parallel, with data coming from different data sources and data transformation, ultimately loading the data into sinks that support business operations.

\n\n\n\n
\"\"
\n\n\n\n

Data Pipeline Example

\n\n\n\n

As you can see in the example above, a data pipeline is made up of tasks, and could be composed of many tasks intertwined with dependencies. 

\n\n\n\n

This means having a task management strategy is essential. Task management is mainly concerned with task dependency and task order of execution. Graph theory addresses both concerns and is an efficient way to manage tasks with the help of Directed Acyclic Graph (DAG).

\n\n\n\n

What is DAG?

\n\n\n\n

In mathematics, particularly graph theory and computer science, a directed acyclic graph (DAG) is a directed graph with no directed cycles. That means it consists of vertices and edges (also called arcs), with each edge directed from one vertex to another, such that following those directions will never form a closed loop.

\n\n\n\n

A directed graph is a DAG if (and only if) it can be topologically ordered by arranging the vertices in a linear order consistent with all edge directions. DAGs have many scientific and computational applications, ranging from biology (evolution, family trees, epidemiology) to sociology (citation networks) to computation (scheduling).

\n\n\n\n
\"\"
\n\n\n\n

Example of a DAG - https://upload.wikimedia.org/wikipedia/commons/5/51/Tred-G.png

\n\n\n\n

Using DAGs in a data pipeline to manage tasks gives us a theoretical and practical methodology and approach to deal with task dependencies and order of execution. DAG task management is a fundamental and necessary feature of a workflow manager.

\n\n\n\n

Workflow Manager

\n\n\n\n

In our current cloud native ecosystem, there are several workflow managers with different features. Translucent Computing  uses a common selection pattern to select an appropriate tool for cloud native environments. We look at a tool’s maturity to choose one that marries the theoretical and practical. This is why we use Apache Airflow, an open-source workflow manager that supports workflow creation, scheduling, and monitoring with support for DAGs.

\n\n\n\n

There’s more in our pipeline when it comes to pipeline content, so stay tuned for more!

\n','Workflow Engine - Data Pipeline','','inherit','closed','closed','','3608-revision-v1','','','2021-11-25 10:45:49','2021-11-25 15:45:49','',3608,'https://www.translucentcomputing.com/?p=3642',0,'revision','',0),(3643,4,'2021-11-25 10:46:08','2021-11-25 15:46:08','\n

A workflow is made up of an orchestrated and repeatable pattern of activity. These activities are enabled by resources that are systematically organized into processes. These processes transform materials, provide services, or process information. A workflow can be depicted as a sequence of operations, the work of a person or group, the work of an organization of staff, or one or more simple or complex mechanisms.

\n\n\n\n

In computing, a pipeline (also known as a data pipeline) is a connected series of data processing elements, where the output of one element is the input of the next one. The elements of a pipeline are often executed in parallel or in a time-sliced way.

\n\n\n\n

Workflow Types

\n\n\n\n

There are several different workflow types. Data plays a crucial role in product development and management. Companies and projects are continuously becoming more data-driven, adopting data-centric processes that combine different systems for product development and data analysis. These data-oriented workflows implement the data pipelines.

\n\n\n\n

There are many different ways to implement a workflow. They commonly range from simple cron jobs to workflows implemented in custom applications.

\n\n\n\n
\"\"
\n\n\n\n

Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)https://youtu.be/GeNFEtt-D4k

\n\n\n\n

The common approaches do not generalize, and developers focus on building the workflow engines, data pipelines, data tasks, and business rules for each workflow implementation. A workflow manager must support easy creation, scheduling, and workflow monitoring so that the developers can focus on delivering value through the data pipeline rather than building workflow engines.

\n\n\n\n
\"\"
\"Table 1.1 Overview of several well-known workflow managers and their key characteristics. Bas P. Harenslak, Julian R. de Ruiter. Data Pipelines with Apache Airflow\"
\n\n\n\n

What is a Data Pipeline?

\n\n\n\n

The workflow manager facilitates the creation and scheduling of a data pipeline. 

\n\n\n\n

A data pipeline is a chronological execution of an individual task in sequence or parallel, with data coming from different data sources and data transformation, ultimately loading the data into sinks that support business operations.

\n\n\n\n
\"\"
\n\n\n\n

Data Pipeline Example

\n\n\n\n

As you can see in the example above, a data pipeline is made up of tasks, and could be composed of many tasks intertwined with dependencies. 

\n\n\n\n

This means having a task management strategy is essential. Task management is mainly concerned with task dependency and task order of execution. Graph theory addresses both concerns and is an efficient way to manage tasks with the help of Directed Acyclic Graph (DAG).

\n\n\n\n

What is DAG?

\n\n\n\n

In mathematics, particularly graph theory and computer science, a directed acyclic graph (DAG) is a directed graph with no directed cycles. That means it consists of vertices and edges (also called arcs), with each edge directed from one vertex to another, such that following those directions will never form a closed loop.

\n\n\n\n

A directed graph is a DAG if (and only if) it can be topologically ordered by arranging the vertices in a linear order consistent with all edge directions. DAGs have many scientific and computational applications, ranging from biology (evolution, family trees, epidemiology) to sociology (citation networks) to computation (scheduling).

\n\n\n\n
\"\"
\n\n\n\n

Example of a DAG - https://upload.wikimedia.org/wikipedia/commons/5/51/Tred-G.png

\n\n\n\n

Using DAGs in a data pipeline to manage tasks gives us a theoretical and practical methodology and approach to deal with task dependencies and order of execution. DAG task management is a fundamental and necessary feature of a workflow manager.

\n\n\n\n

Workflow Manager

\n\n\n\n

In our current cloud native ecosystem, there are several workflow managers with different features. Translucent Computing  uses a common selection pattern to select an appropriate tool for cloud native environments. We look at a tool’s maturity to choose one that marries the theoretical and practical. This is why we use Apache Airflow, an open-source workflow manager that supports workflow creation, scheduling, and monitoring with support for DAGs.

\n\n\n\n

There’s more in our pipeline when it comes to pipeline content, so stay tuned for more!

\n','Workflow Engine - Data Pipeline','','inherit','closed','closed','','3608-revision-v1','','','2021-11-25 10:46:08','2021-11-25 15:46:08','',3608,'https://www.translucentcomputing.com/?p=3643',0,'revision','',0),(3645,4,'2021-11-25 18:09:07','2021-11-25 18:09:07','','home11.png','','inherit','closed','closed','','home11-png','','','2021-11-25 18:09:07','2021-11-25 18:09:07','',0,'https://www.translucentcomputing.com/wp-content/uploads/revslider/slider-1/home11.png',0,'attachment','image/png',0),(3646,4,'2021-11-25 18:09:07','2021-11-25 18:09:07','','home-fundo.png','','inherit','closed','closed','','home-fundo-png','','','2021-11-25 18:09:07','2021-11-25 18:09:07','',0,'https://www.translucentcomputing.com/wp-content/uploads/revslider/slider-1/home-fundo.png',0,'attachment','image/png',0),(3647,4,'2021-11-25 18:09:07','2021-11-25 18:09:07','','home31.jpg','','inherit','closed','closed','','home31-jpg','','','2021-11-25 18:09:07','2021-11-25 18:09:07','',0,'https://www.translucentcomputing.com/wp-content/uploads/revslider/slider-1/home31.jpg',0,'attachment','image/jpeg',0),(3648,4,'2021-11-25 19:27:24','2021-11-26 00:27:24','','Home','','inherit','closed','closed','','1924-revision-v1','','','2021-11-25 19:27:24','2021-11-26 00:27:24','',1924,'https://www.translucentcomputing.com/?p=3648',0,'revision','',0),(3649,4,'2021-11-25 19:28:13','2021-11-26 00:28:13','','Home','','inherit','closed','closed','','1924-revision-v1','','','2021-11-25 19:28:13','2021-11-26 00:28:13','',1924,'https://www.translucentcomputing.com/?p=3649',0,'revision','',0),(3650,4,'2021-11-25 19:34:37','2021-11-26 00:34:37','','Home','','inherit','closed','closed','','1924-revision-v1','','','2021-11-25 19:34:37','2021-11-26 00:34:37','',1924,'https://www.translucentcomputing.com/?p=3650',0,'revision','',0),(3652,3,'2021-11-26 14:40:27','2021-11-26 19:40:27','\n

Apache Airflow (AA) is an open-source software. This type of software comes with common issues related to DevSecOps operational management.

\n\n\n\n

The AA open-source project is mainly concerned with the workflow engine. It leaves the deployment strategy, security, and maintenance to the companies that want to use AA as their workflow manager.

\n\n\n\n

To provide production-ready AA cloud deployment, Translucent Computing uses two different management approaches: self-managed and cloud-managed.

\n\n\n\n

Before we look at each one, here’s how we define both:

\n\n\n\n

Self-managed: managing a system within a Kubernetes cluster

\n\n\n\n

Cloud-managed: managing a system through a cloud provider-managed service

\n\n\n\n

Self-managed Airflow

\n\n\n\n

\n\n\n\n
\"\"
Simplified  diagram of Translucent Kubernetes Airflow dev environment
\n\n\n\n

Self-managed AA assumes that your organization has the resources and skills to manage the AA’s secure deployment and maintenance. Beyond the security, depending on the industry, deployment is further complicated by regulations related to data and privacy. To adhere to robust security standards, compliance and regulations, Translucent adds additional technologies to support AA, including:

\n\n\n\n
  • Hashicorp Vault to manage static/dynamic secrets, encryption as service, and certificate management (PKI)
  • Hashicorp Consul to manage secure communication between resources and a backend for Vault
  • Keycloak for managing identity and access to Airflow UI and other tools, including access to monitoring tools through Grafana
  • Grafana stack including Grafana for monitoring dashboards, Prometheus for metrics, Loki for logs, and Jaeger for tracing
  • Immudb which is an immutable database for tracking AA DAG activities and user activities for compliance 
  • OpenSearch to support ELT and additional security analysis from web application firewall (WAF)
  • Falco to act as a runtime security scanner
\n\n\n\n

All these tools must be deployed and configured. Translucent found that the most efficient way to deploy and configure the cloud infrastructure required for AA is with CI/CD pipeline that uses infrastructure as code (IaC).

\n\n\n\n

Cloud-managed Airflow

\n\n\n\n

Managing secure and production-ready AA puts a strain on DevSecOps teams. With Google Cloud Composer, we now have an option to use a cloud-managed service to reduce the burden on the DevSecOps team. Google Cloud Composer marries the Google Cloud Platform with the AA.

\n\n\n\n

\n\n\n\n
\"\"
Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next ’18)
\n\n\n\n

The Google Cloud Platform provides enterprise features including security, deployments, and AA management. The Google Cloud Composer manages the AA metadata store and web server, and provides security tools and observability tools while using Kubernetes to execute AA workflows.

\n\n\n\n

\n\n\n\n
\"\"
https://cloud.google.com/composer/docs/images/composer-1-private-ip-architecture.svg
\n\n\n\n

Should You Self-manage?

\n\n\n\n

The AA management approach depends on use cases and DevSecOps. While you do have complete control when you self-manage AA, the complexity of a secure production-ready system requires investment in DevSecOps and continuous investment in maintaining the system.

\n\n\n\n

However, for Translucent, the main benefit of a self-managed AA is cloud independence. We can provide a secure and production-ready workflow manager in any cloud and on-premises built on the Kubernetes cluster. 

\n\n\n\n

At the same time, Cloud Composer is also attractive for most Translucent use cases, because of benefits like deployment speed, managed environment, predictable cost, and code portability from other AA.

\n','Apache Airflow - Management','','publish','open','open','','apache-airflow-management','','','2022-05-20 18:12:50','2022-05-20 22:12:50','',0,'https://www.translucentcomputing.com/?p=3652',0,'post','',0),(3653,9,'2021-11-26 14:28:56','2021-11-26 19:28:56','','self-managed-airflow','','inherit','open','closed','','self-managed-airflow','','','2021-11-26 14:28:56','2021-11-26 19:28:56','',3652,'https://www.translucentcomputing.com/wp-content/uploads/2021/11/self-managed-airflow.png',0,'attachment','image/png',0),(3654,9,'2021-11-26 14:31:37','2021-11-26 19:31:37','','cloud-managed-airflow','','inherit','open','closed','','cloud-managed-airflow','','','2021-11-26 14:31:37','2021-11-26 19:31:37','',3652,'https://www.translucentcomputing.com/wp-content/uploads/2021/11/cloud-managed-airflow.png',0,'attachment','image/png',0),(3655,9,'2021-11-26 14:33:22','2021-11-26 19:33:22','','composer-1-private-ip-architecture','','inherit','open','closed','','composer-1-private-ip-architecture','','','2021-11-26 14:33:22','2021-11-26 19:33:22','',3652,'https://www.translucentcomputing.com/wp-content/uploads/2021/11/composer-1-private-ip-architecture.png',0,'attachment','image/png',0),(3656,9,'2021-11-26 14:34:32','2021-11-26 19:34:32','\n

Apache Airflow (AA) is an open-source software. This type of software comes with common issues related to DevSecOps operational management.

\n\n\n\n

The AA open-source project is mainly concerned with the workflow engine. It leaves the deployment strategy, security, and maintenance to the companies that want to use AA as their workflow manager.

\n\n\n\n

To provide production-ready AA cloud deployment, Translucent Computing uses two different management approaches: self-managed and cloud-managed.

\n\n\n\n

Before we look at each one, here’s how we define both:

\n\n\n\n

Self-managed: managing a system within a Kubernetes cluster

\n\n\n\n

Cloud-managed: managing a system through a cloud provider-managed service

\n\n\n\n

Self-managed Airflow

\n\n\n\n

\n\n\n\n
\"\"
Simplified  diagram of Translucent Kubernetes Airflow dev environment
\n\n\n\n

Self-managed AA assumes that your organization has the resources and skills to manage the AA’s secure deployment and maintenance. Beyond the security, depending on the industry, deployment is further complicated by regulations related to data and privacy. To adhere to robust security standards, compliance and regulations, Translucent adds additional technologies to support AA, including:

\n\n\n\n
  • Hashicorp Vault to manage static/dynamic secrets, encryption as service, and certificate management (PKI)
  • Hashicorp Consul to manage secure communication between resources and a backend for Vault
  • Keycloak for managing identity and access to Airflow UI and other tools, including access to monitoring tools through Grafana
  • Grafana stack including Grafana for monitoring dashboards, Prometheus for metrics, Loki for logs, and Jaeger for tracing
  • Immudb which is an immutable database for tracking AA DAG activities and user activities for compliance 
  • OpenSearch to support ELT and additional security analysis from web application firewall (WAF)
  • Falco to act as a runtime security scanner
\n\n\n\n

All these tools must be deployed and configured. Translucent found that the most efficient way to deploy and configure the cloud infrastructure required for AA is with CI/CD pipeline that uses infrastructure as code (IaC).

\n\n\n\n

Cloud-managed Airflow

\n\n\n\n

Managing secure and production-ready AA puts a strain on DevSecOps teams. With Google Cloud Composer, we now have an option to use a cloud-managed service to reduce the burden on the DevSecOps team. Google Cloud Composer marries the Google Cloud Platform with the AA.

\n\n\n\n

\n\n\n\n
\"\"
Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)
\n\n\n\n

The Google Cloud Platform provides enterprise features including security, deployments, and AA management. The Google Cloud Composer manages the AA metadata store and web server, and provides security tools and observability tools while using Kubernetes to execute AA workflows.

\n\n\n\n

\n\n\n\n
\"\"
https://cloud.google.com/composer/docs/images/composer-1-private-ip-architecture.svg
\n\n\n\n

vg

\n\n\n\n

Should You Self-manage?

\n\n\n\n

The AA management approach depends on use cases and DevSecOps. While you do have complete control when you self-manage AA, the complexity of a secure production-ready system requires investment in DevSecOps and continuous investment in maintaining the system.

\n\n\n\n

However, for Translucent, the main benefit of a self-managed AA is cloud independence. We can provide a secure and production-ready workflow manager in any cloud and on-premises built on the Kubernetes cluster. 

\n\n\n\n

At the same time, Cloud Composer is also attractive for most Translucent use cases, because of benefits like deployment speed, managed environment, predictable cost, and code portability from other AA.

\n','Apache Airflow - Management','','inherit','closed','closed','','3652-revision-v1','','','2021-11-26 14:34:32','2021-11-26 19:34:32','',3652,'https://www.translucentcomputing.com/?p=3656',0,'revision','',0),(3657,9,'2021-11-26 14:35:19','2021-11-26 19:35:19','','apache airflow management','','inherit','open','closed','','apache-airflow-management','','','2021-11-26 14:35:30','2021-11-26 19:35:30','',3652,'https://www.translucentcomputing.com/wp-content/uploads/2021/11/apache-airflow-management.png',0,'attachment','image/png',0),(3659,9,'2021-11-26 14:37:43','2021-11-26 19:37:43','\n

Apache Airflow (AA) is an open-source software. This type of software comes with common issues related to DevSecOps operational management.

\n\n\n\n

The AA open-source project is mainly concerned with the workflow engine. It leaves the deployment strategy, security, and maintenance to the companies that want to use AA as their workflow manager.

\n\n\n\n

To provide production-ready AA cloud deployment, Translucent Computing uses two different management approaches: self-managed and cloud-managed.

\n\n\n\n

Before we look at each one, here’s how we define both:

\n\n\n\n

Self-managed: managing a system within a Kubernetes cluster

\n\n\n\n

Cloud-managed: managing a system through a cloud provider-managed service

\n\n\n\n

Self-managed Airflow

\n\n\n\n

\n\n\n\n
\"\"
Simplified  diagram of Translucent Kubernetes Airflow dev environment
\n\n\n\n

Self-managed AA assumes that your organization has the resources and skills to manage the AA’s secure deployment and maintenance. Beyond the security, depending on the industry, deployment is further complicated by regulations related to data and privacy. To adhere to robust security standards, compliance and regulations, Translucent adds additional technologies to support AA, including:

\n\n\n\n
  • Hashicorp Vault to manage static/dynamic secrets, encryption as service, and certificate management (PKI)
  • Hashicorp Consul to manage secure communication between resources and a backend for Vault
  • Keycloak for managing identity and access to Airflow UI and other tools, including access to monitoring tools through Grafana
  • Grafana stack including Grafana for monitoring dashboards, Prometheus for metrics, Loki for logs, and Jaeger for tracing
  • Immudb which is an immutable database for tracking AA DAG activities and user activities for compliance 
  • OpenSearch to support ELT and additional security analysis from web application firewall (WAF)
  • Falco to act as a runtime security scanner
\n\n\n\n

All these tools must be deployed and configured. Translucent found that the most efficient way to deploy and configure the cloud infrastructure required for AA is with CI/CD pipeline that uses infrastructure as code (IaC).

\n\n\n\n

Cloud-managed Airflow

\n\n\n\n

Managing secure and production-ready AA puts a strain on DevSecOps teams. With Google Cloud Composer, we now have an option to use a cloud-managed service to reduce the burden on the DevSecOps team. Google Cloud Composer marries the Google Cloud Platform with the AA.

\n\n\n\n

\n\n\n\n
\"\"
Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)
\n\n\n\n

The Google Cloud Platform provides enterprise features including security, deployments, and AA management. The Google Cloud Composer manages the AA metadata store and web server, and provides security tools and observability tools while using Kubernetes to execute AA workflows.

\n\n\n\n

\n\n\n\n
\"\"
https://cloud.google.com/composer/docs/images/composer-1-private-ip-architecture.svg
\n\n\n\n

Should You Self-manage?

\n\n\n\n

The AA management approach depends on use cases and DevSecOps. While you do have complete control when you self-manage AA, the complexity of a secure production-ready system requires investment in DevSecOps and continuous investment in maintaining the system.

\n\n\n\n

However, for Translucent, the main benefit of a self-managed AA is cloud independence. We can provide a secure and production-ready workflow manager in any cloud and on-premises built on the Kubernetes cluster. 

\n\n\n\n

At the same time, Cloud Composer is also attractive for most Translucent use cases, because of benefits like deployment speed, managed environment, predictable cost, and code portability from other AA.

\n','Apache Airflow - Management','','inherit','closed','closed','','3652-revision-v1','','','2021-11-26 14:37:43','2021-11-26 19:37:43','',3652,'https://www.translucentcomputing.com/?p=3659',0,'revision','',0),(3660,9,'2021-11-26 14:38:18','2021-11-26 19:38:18','\n

Apache Airflow (AA) is an open-source software. This type of software comes with common issues related to DevSecOps operational management.

\n\n\n\n

The AA open-source project is mainly concerned with the workflow engine. It leaves the deployment strategy, security, and maintenance to the companies that want to use AA as their workflow manager.

\n\n\n\n

To provide production-ready AA cloud deployment, Translucent Computing uses two different management approaches: self-managed and cloud-managed.

\n\n\n\n

Before we look at each one, here’s how we define both:

\n\n\n\n

Self-managed: managing a system within a Kubernetes cluster

\n\n\n\n

Cloud-managed: managing a system through a cloud provider-managed service

\n\n\n\n

Self-managed Airflow

\n\n\n\n

\n\n\n\n
\"\"
Simplified  diagram of Translucent Kubernetes Airflow dev environment
\n\n\n\n

Self-managed AA assumes that your organization has the resources and skills to manage the AA’s secure deployment and maintenance. Beyond the security, depending on the industry, deployment is further complicated by regulations related to data and privacy. To adhere to robust security standards, compliance and regulations, Translucent adds additional technologies to support AA, including:

\n\n\n\n
  • Hashicorp Vault to manage static/dynamic secrets, encryption as service, and certificate management (PKI)
  • Hashicorp Consul to manage secure communication between resources and a backend for Vault
  • Keycloak for managing identity and access to Airflow UI and other tools, including access to monitoring tools through Grafana
  • Grafana stack including Grafana for monitoring dashboards, Prometheus for metrics, Loki for logs, and Jaeger for tracing
  • Immudb which is an immutable database for tracking AA DAG activities and user activities for compliance 
  • OpenSearch to support ELT and additional security analysis from web application firewall (WAF)
  • Falco to act as a runtime security scanner
\n\n\n\n

All these tools must be deployed and configured. Translucent found that the most efficient way to deploy and configure the cloud infrastructure required for AA is with CI/CD pipeline that uses infrastructure as code (IaC).

\n\n\n\n

Cloud-managed Airflow

\n\n\n\n

Managing secure and production-ready AA puts a strain on DevSecOps teams. With Google Cloud Composer, we now have an option to use a cloud-managed service to reduce the burden on the DevSecOps team. Google Cloud Composer marries the Google Cloud Platform with the AA.

\n\n\n\n

\n\n\n\n
\"\"
Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next \'18)
\n\n\n\n

The Google Cloud Platform provides enterprise features including security, deployments, and AA management. The Google Cloud Composer manages the AA metadata store and web server, and provides security tools and observability tools while using Kubernetes to execute AA workflows.

\n\n\n\n

\n\n\n\n
\"\"
https://cloud.google.com/composer/docs/images/composer-1-private-ip-architecture.svg
\n\n\n\n

Should You Self-manage?

\n\n\n\n

The AA management approach depends on use cases and DevSecOps. While you do have complete control when you self-manage AA, the complexity of a secure production-ready system requires investment in DevSecOps and continuous investment in maintaining the system.

\n\n\n\n

However, for Translucent, the main benefit of a self-managed AA is cloud independence. We can provide a secure and production-ready workflow manager in any cloud and on-premises built on the Kubernetes cluster. 

\n\n\n\n

At the same time, Cloud Composer is also attractive for most Translucent use cases, because of benefits like deployment speed, managed environment, predictable cost, and code portability from other AA.

\n','Apache Airflow - Management','','inherit','closed','closed','','3652-revision-v1','','','2021-11-26 14:38:18','2021-11-26 19:38:18','',3652,'https://www.translucentcomputing.com/?p=3660',0,'revision','',0),(3661,9,'2021-11-26 14:39:07','2021-11-26 19:39:07','\n

Apache Airflow (AA) is an open-source software. This type of software comes with common issues related to DevSecOps operational management.

\n\n\n\n

The AA open-source project is mainly concerned with the workflow engine. It leaves the deployment strategy, security, and maintenance to the companies that want to use AA as their workflow manager.

\n\n\n\n

To provide production-ready AA cloud deployment, Translucent Computing uses two different management approaches: self-managed and cloud-managed.

\n\n\n\n

Before we look at each one, here’s how we define both:

\n\n\n\n

Self-managed: managing a system within a Kubernetes cluster

\n\n\n\n

Cloud-managed: managing a system through a cloud provider-managed service

\n\n\n\n

Self-managed Airflow

\n\n\n\n

\n\n\n\n
\"\"
Simplified  diagram of Translucent Kubernetes Airflow dev environment
\n\n\n\n

Self-managed AA assumes that your organization has the resources and skills to manage the AA’s secure deployment and maintenance. Beyond the security, depending on the industry, deployment is further complicated by regulations related to data and privacy. To adhere to robust security standards, compliance and regulations, Translucent adds additional technologies to support AA, including:

\n\n\n\n
  • Hashicorp Vault to manage static/dynamic secrets, encryption as service, and certificate management (PKI)
  • Hashicorp Consul to manage secure communication between resources and a backend for Vault
  • Keycloak for managing identity and access to Airflow UI and other tools, including access to monitoring tools through Grafana
  • Grafana stack including Grafana for monitoring dashboards, Prometheus for metrics, Loki for logs, and Jaeger for tracing
  • Immudb which is an immutable database for tracking AA DAG activities and user activities for compliance 
  • OpenSearch to support ELT and additional security analysis from web application firewall (WAF)
  • Falco to act as a runtime security scanner
\n\n\n\n

All these tools must be deployed and configured. Translucent found that the most efficient way to deploy and configure the cloud infrastructure required for AA is with CI/CD pipeline that uses infrastructure as code (IaC).

\n\n\n\n

Cloud-managed Airflow

\n\n\n\n

Managing secure and production-ready AA puts a strain on DevSecOps teams. With Google Cloud Composer, we now have an option to use a cloud-managed service to reduce the burden on the DevSecOps team. Google Cloud Composer marries the Google Cloud Platform with the AA.

\n\n\n\n

\n\n\n\n
\"\"
Flexible, Easy Data Pipelines on Google Cloud with Cloud Composer (Cloud Next ’18)
\n\n\n\n

The Google Cloud Platform provides enterprise features including security, deployments, and AA management. The Google Cloud Composer manages the AA metadata store and web server, and provides security tools and observability tools while using Kubernetes to execute AA workflows.

\n\n\n\n

\n\n\n\n
\"\"
https://cloud.google.com/composer/docs/images/composer-1-private-ip-architecture.svg
\n\n\n\n

Should You Self-manage?

\n\n\n\n

The AA management approach depends on use cases and DevSecOps. While you do have complete control when you self-manage AA, the complexity of a secure production-ready system requires investment in DevSecOps and continuous investment in maintaining the system.

\n\n\n\n

However, for Translucent, the main benefit of a self-managed AA is cloud independence. We can provide a secure and production-ready workflow manager in any cloud and on-premises built on the Kubernetes cluster. 

\n\n\n\n

At the same time, Cloud Composer is also attractive for most Translucent use cases, because of benefits like deployment speed, managed environment, predictable cost, and code portability from other AA.

\n','Apache Airflow - Management','','inherit','closed','closed','','3652-revision-v1','','','2021-11-26 14:39:07','2021-11-26 19:39:07','',3652,'https://www.translucentcomputing.com/?p=3661',0,'revision','',0),(3662,4,'2021-11-28 19:39:44','2021-11-29 00:39:44','','Home','','inherit','closed','closed','','1924-revision-v1','','','2021-11-28 19:39:44','2021-11-29 00:39:44','',1924,'https://www.translucentcomputing.com/?p=3662',0,'revision','',0),(3663,4,'2021-11-28 19:50:49','2021-11-29 00:50:49','','Home','','inherit','closed','closed','','1924-revision-v1','','','2021-11-28 19:50:49','2021-11-29 00:50:49','',1924,'https://www.translucentcomputing.com/?p=3663',0,'revision','',0),(3664,4,'2021-11-28 19:58:54','2021-11-29 00:58:54','','Home','','inherit','closed','closed','','1924-revision-v1','','','2021-11-28 19:58:54','2021-11-29 00:58:54','',1924,'https://www.translucentcomputing.com/?p=3664',0,'revision','',0),(3666,4,'2021-12-02 11:41:12','2021-12-02 16:41:12','\n

Kubernetes does not offer a simple way to manage the underlying virtual machines (yet), but you can use a configuration management tool like Terraform, Chef, Puppet, or Ansible. 

\n\n\n\n

Whether you’re running your own self-managed Kubernetes and have access to both the master and worker nodes or your Kubernetes engine is cloud-managed so you only have access to the worker nodes , securing your nodes and configurations are essential.

\n\n\n\n

Some best practices:

\n\n\n\n
  • Always update your operating systems with the latest patches. 
  • Set up automatic security updates. 
  • Use antivirus software. 
  • Install a vulnerability scanning agent on your network. 
  • Export your security and audit logs to a centralized server outside the cluster so you can properly detect and respond to any threats. 
  • Configure your IAM, network security and network policy.
  • Limit/restrict access to your VMs to only people who need access.
\n\n\n\n

Have you already done any or all of the above? If not and you want to start, let us know and we can help!

\n','Provision Kubernetes: Securing Virtual Machines','','publish','open','open','','provision-kubernetes-securing-virtual-machines','','','2021-12-02 11:41:14','2021-12-02 16:41:14','',0,'https://www.translucentcomputing.com/?p=3666',0,'post','',0),(3667,9,'2021-12-02 11:39:54','2021-12-02 16:39:54','','provisioning kubernetes - securing virtual machines','','inherit','open','closed','','provisioning-kubernetes-securing-virtual-machines','','','2021-12-02 11:40:01','2021-12-02 16:40:01','',3666,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/provisioning-kubernetes-securing-virtual-machines.png',0,'attachment','image/png',0),(3668,9,'2021-12-02 11:40:03','2021-12-02 16:40:03','\n

Kubernetes does not offer a simple way to manage the underlying virtual machines (yet?), but you can use a configuration management tool like Terraform, Chef, Puppet, or Ansible. 

\n\n\n\n

Whether you’re running your own self-managed Kubernetes and have access to both the master and worker nodes or your Kubernetes engine is cloud-managed so you only have access to the worker nodes , securing your nodes and configurations are essential.

\n\n\n\n

Some best practices:

\n\n\n\n
  • Always update your operating systems with the latest patches. 
  • Set up automatic security updates. 
  • Use antivirus software. 
  • Install a vulnerability scanning agent on your network. 
  • Export your security and audit logs to a centralized server outside the cluster so you can properly detect and respond to any threats. 
  • Configure your IAM, network security and network policy.
  • Limit/restrict access to your VMs to only people who need access.
\n\n\n\n

Have you already done any or all of the above? If not and you want to start, let us know and we can help!

\n','Provision Kubernetes: Securing Virtual Machines','','inherit','closed','closed','','3666-revision-v1','','','2021-12-02 11:40:03','2021-12-02 16:40:03','',3666,'https://www.translucentcomputing.com/?p=3668',0,'revision','',0),(3669,9,'2021-12-02 11:40:39','2021-12-02 16:40:39','\n

Kubernetes does not offer a simple way to manage the underlying virtual machines (yet), but you can use a configuration management tool like Terraform, Chef, Puppet, or Ansible. 

\n\n\n\n

Whether you’re running your own self-managed Kubernetes and have access to both the master and worker nodes or your Kubernetes engine is cloud-managed so you only have access to the worker nodes , securing your nodes and configurations are essential.

\n\n\n\n

Some best practices:

\n\n\n\n
  • Always update your operating systems with the latest patches. 
  • Set up automatic security updates. 
  • Use antivirus software. 
  • Install a vulnerability scanning agent on your network. 
  • Export your security and audit logs to a centralized server outside the cluster so you can properly detect and respond to any threats. 
  • Configure your IAM, network security and network policy.
  • Limit/restrict access to your VMs to only people who need access.
\n\n\n\n

Have you already done any or all of the above? If not and you want to start, let us know and we can help!

\n','Provision Kubernetes: Securing Virtual Machines','','inherit','closed','closed','','3666-revision-v1','','','2021-12-02 11:40:39','2021-12-02 16:40:39','',3666,'https://www.translucentcomputing.com/?p=3669',0,'revision','',0),(3670,3,'2021-12-03 10:32:07','2021-12-03 15:32:07','\n

Apache Airflow(AA) is an open-source workflow manager tool designed to create, schedule, and monitor workflows. AA allows defining workflow as code using Python. The data pipelines or workflows are defined as Direct Acyclic Graphs (DAGs) of tasks. A DAG represents a task order of execution and the dependencies between tasks.

\n\n\n\n
\"\"
Figure 1.7 Airflow pipelines are defined as DAGs using Python code in DAG files. Bas P. Harenslak, Julian R. de Ruiter. “Data Pipelines with Apache Airflow”
\n\n\n\n

A task is a piece of work that a data pipeline wants to do, like a SQL query to load data. The piece of work in a task is implemented via operators. The task manages the state of the operator.

\n\n\n\n
\"\"
Figure 2.4 DAGs and Operators are used by Airflow users. - Bas P. Harenslak, Julian R. de Ruiter. “Data Pipelines with Apache Airflow”
\n\n\n\n

Taking lessons from transactional database systems, tasks should be atomic and idempotent. Atomic tasks ensure that everything or nothing completes in a task, no half work is produced. Idempotent tasks have no additional effects. Executing the same task multiple times with the same inputs should not change the overall output.

\n\n\n\n
\"\"
Figure 3.9 - Bas P. Harenslak, Julian R. de Ruiter. “Data Pipelines with Apache Airflow”
\n\n\n\n

AA comes with several special operators defined for a specific task, including bash, SQL, and email. Additionally, AA provides sensors that are special types of operators that continuously poll for a given condition to be true. Continuous polling can check for the existence of files or inspect a database for specific records.

\n\n\n\n

Airflow Architecture

\n\n\n\n
\"\"
https://airflow.apache.org/docs/apache-airflow/stable/_images/arch-diag-basic.png
\n\n\n\n

The heart of the AA architecture is the scheduler. The scheduler determines when and how the workflow is executed. The scheduler triggers the workflows retrieved from the DAG directory and submits them to executors. The executors push the task execution to workers. The webserver allows users to inspect, debug and trigger workflows via UI. A metadata database is provided to manage the state in AA and support the scheduler, executor, and webserver.

\n\n\n\n

Kubernetes

\n\n\n\n
\"\"
https://airflow.apache.org/docs/apache-airflow/stable/_images/arch-diag-kubernetes2.png
\n\n\n\n

At Translucent Computing, we engineer cloud-native systems with Kubernetes as the core. AA provides the Kubernetes executor to push task execution to the Kubernetes cluster. The Kubernetes cluster can dynamically and elastically respond to the demands of the workers. Furthermore, at Translucent, we deploy AA into the Kubernetes cluster, as in the diagram above.  Using the Kubernetes cluster to support AA and worker deployment simplifies the DevOps CI/CD pipeline and allows DataOps to manage workflows effectively.

\n','Apache Airflow - Data Pipeline','','publish','open','open','','apache-airflow-data-pipeline','','','2022-05-20 18:13:39','2022-05-20 22:13:39','',0,'https://www.translucentcomputing.com/?p=3670',0,'post','',0),(3671,9,'2021-12-03 10:25:24','2021-12-03 15:25:24','','unnamed-4','','inherit','open','closed','','unnamed-4-2','','','2021-12-03 10:25:24','2021-12-03 15:25:24','',3670,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/unnamed-4.png',0,'attachment','image/png',0),(3672,9,'2021-12-03 10:26:16','2021-12-03 15:26:16','','unnamed-5','','inherit','open','closed','','unnamed-5-2','','','2021-12-03 10:26:16','2021-12-03 15:26:16','',3670,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/unnamed-5.png',0,'attachment','image/png',0),(3673,9,'2021-12-03 10:28:01','2021-12-03 15:28:01','','unnamed-4-1','','inherit','open','closed','','unnamed-4-1','','','2021-12-03 10:28:01','2021-12-03 15:28:01','',3670,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/unnamed-4-1.png',0,'attachment','image/png',0),(3674,9,'2021-12-03 10:28:34','2021-12-03 15:28:34','','unnamed-5-1','','inherit','open','closed','','unnamed-5-1','','','2021-12-03 10:28:34','2021-12-03 15:28:34','',3670,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/unnamed-5-1.png',0,'attachment','image/png',0),(3675,9,'2021-12-03 10:29:24','2021-12-03 15:29:24','','unnamed-4-2','','inherit','open','closed','','unnamed-4-2-2','','','2021-12-03 10:29:24','2021-12-03 15:29:24','',3670,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/unnamed-4-2.png',0,'attachment','image/png',0),(3676,9,'2021-12-03 10:30:19','2021-12-03 15:30:19','','unnamed-5-2','','inherit','open','closed','','unnamed-5-2-2','','','2021-12-03 10:30:19','2021-12-03 15:30:19','',3670,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/unnamed-5-2.png',0,'attachment','image/png',0),(3677,9,'2021-12-03 10:30:38','2021-12-03 15:30:38','\n

Apache Airflow(AA) is an open-source workflow manager tool designed to create, schedule, and monitor workflows. AA allows defining workflow as code using Python. The data pipelines or workflows are defined as Direct Acyclic Graphs (DAGs) of tasks. A DAG represents a task order of execution and the dependencies between tasks.

\n\n\n\n
\"\"
Figure 1.7 Airflow pipelines are defined as DAGs using Python code in DAG files. Bas P. Harenslak, Julian R. de Ruiter. “Data Pipelines with Apache Airflow”
\n\n\n\n

A task is a piece of work that a data pipeline wants to do, like a SQL query to load data. The piece of work in a task is implemented via operators. The task manages the state of the operator.

\n\n\n\n
\"\"
Figure 2.4 DAGs and Operators are used by Airflow users. - Bas P. Harenslak, Julian R. de Ruiter. “Data Pipelines with Apache Airflow”
\n\n\n\n

Taking lessons from transactional database systems, tasks should be atomic and idempotent. Atomic tasks ensure that everything or nothing completes in a task, no half work is produced. Idempotent tasks have no additional effects. Executing the same task multiple times with the same inputs should not change the overall output.

\n\n\n\n
\"\"
Figure 3.9 - Bas P. Harenslak, Julian R. de Ruiter. “Data Pipelines with Apache Airflow”
\n\n\n\n

AA comes with several special operators defined for a specific task, including bash, SQL, and email. Additionally, AA provides sensors that are special types of operators that continuously poll for a given condition to be true. Continuous polling can check for the existence of files or inspect a database for specific records.

\n\n\n\n

Airflow Architecture

\n\n\n\n
\"\"
https://airflow.apache.org/docs/apache-airflow/stable/_images/arch-diag-basic.png
\n\n\n\n

The heart of the AA architecture is the scheduler. The scheduler determines when and how the workflow is executed. The scheduler triggers the workflows retrieved from the DAG directory and submits them to executors. The executors push the task execution to workers. The webserver allows users to inspect, debug and trigger workflows via UI. A metadata database is provided to manage the state in AA and support the scheduler, executor, and webserver.

\n\n\n\n

Kubernetes

\n\n\n\n
\"\"
https://airflow.apache.org/docs/apache-airflow/stable/_images/arch-diag-kubernetes2.png
\n\n\n\n

At Translucent Computing, we engineer cloud-native systems with Kubernetes as the core. AA provides the Kubernetes executor to push task execution to the Kubernetes cluster. The Kubernetes cluster can dynamically and elastically respond to the demands of the workers. Furthermore, at Translucent, we deploy AA into the Kubernetes cluster, as in the diagram above.  Using the Kubernetes cluster to support AA and worker deployment simplifies the DevOps CI/CD pipeline and allows DataOps to manage workflows effectively.

\n','Apache Airflow - Data Pipeline','','inherit','closed','closed','','3670-revision-v1','','','2021-12-03 10:30:38','2021-12-03 15:30:38','',3670,'https://www.translucentcomputing.com/?p=3677',0,'revision','',0),(3678,9,'2021-12-03 10:31:40','2021-12-03 15:31:40','','0011_new_jakub_blog_banners_46_apacheairflow_datapipeline','','inherit','open','closed','','0011_new_jakub_blog_banners_46_apacheairflow_datapipeline','','','2021-12-03 10:31:40','2021-12-03 15:31:40','',3670,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/0011_new_jakub_blog_banners_46_apacheairflow_datapipeline.png',0,'attachment','image/png',0),(3679,4,'2021-12-03 10:46:23','2021-12-03 15:46:23','','home11-crop','','inherit','open','closed','','home11-crop','','','2021-12-03 10:46:23','2021-12-03 15:46:23','',0,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/home11-crop.png',0,'attachment','image/png',0),(3680,4,'2021-12-03 11:22:56','2021-12-03 16:22:56','','home3-crop','','inherit','open','closed','','home3-crop','','','2021-12-03 11:22:56','2021-12-03 16:22:56','',0,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/home3-crop.jpg',0,'attachment','image/jpeg',0),(3681,4,'2021-12-03 11:26:25','2021-12-03 16:26:25','','home2-crop','','inherit','open','closed','','home2-crop','','','2021-12-03 11:26:25','2021-12-03 16:26:25','',0,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/home2-crop.png',0,'attachment','image/png',0),(3682,4,'2021-12-03 11:26:27','2021-12-03 16:26:27','','home4-crop','','inherit','open','closed','','home4-crop','','','2021-12-03 11:26:27','2021-12-03 16:26:27','',0,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/home4-crop.png',0,'attachment','image/png',0),(3683,4,'2021-12-03 11:26:29','2021-12-03 16:26:29','','hom3-crop','','inherit','open','closed','','hom3-crop','','','2021-12-03 11:26:29','2021-12-03 16:26:29','',0,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/hom3-crop.png',0,'attachment','image/png',0),(3684,4,'2021-12-03 12:06:37','2021-12-03 17:06:37','','Cloud Native Solutions [inc][home]','','inherit','closed','closed','','3523-revision-v1','','','2021-12-03 12:06:37','2021-12-03 17:06:37','',3523,'https://www.translucentcomputing.com/?p=3684',0,'revision','',0),(3685,4,'2021-12-03 12:09:24','2021-12-03 17:09:24','','Cloud Native Solutions [inc][home]','','inherit','closed','closed','','3523-revision-v1','','','2021-12-03 12:09:24','2021-12-03 17:09:24','',3523,'https://www.translucentcomputing.com/?p=3685',0,'revision','',0),(3688,3,'2021-12-10 12:50:58','2021-12-10 17:50:58','\r\n

At Translucent Computing, we are continuously examining our DevSecOp processes to deliver better value to our customers. Google Cloud Composer is managed Apache Airflow service that provides speed of deployment and enterprise security, leading to providing more efficient service to our clients by focusing on delivering the business value from data pipelines executed in Apache Airflow and spending less time on the infrastructure deployment and management. Here we examine the deployment of Cloud Composer with Terraform.

\r\n\r\n\r\n\r\n

List of files used in this deployment.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

We start with configuring a service account for the Terraform script execution. Kicking off a Bash script with variables that are required by the gcloud commands.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

We can create the service account and credentials file using the above parameters and assign the required roles to the service account.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

Since we also have chosen to use Google Cloud Storage as our backend to store the Terraform state, we create a bucket in Google Cloud Storage and generate a backend Terraform file.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

This initial configuration is enough to use Terraform for the rest of the deployment. Google provides Terraform providers for the Google Cloud and Google Cloud Composer. Since we have transitioned to Google Cloud Composer 2 which provides benefits of Google GKE Autopilot which is designed to reduce the operational cost, we have to use the Google beta Terraform provider.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

We next configure the provider.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

With backend.tf generated and the provider configured we can focus on the deployment of Cloud Composer. We start by defining the supporting resources that are required by Cloud Composer.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

We can now define the main Terraform resource that creates the Cloud Composer.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

The configuration Cloud Composer starts with the image versions to use. The image version defines the Cloud Composer version that is created and the Airflow version and Python version. Google publishes the Cloud Composer image versions here https://cloud.google.com/composer/docs/concepts/versioning/composer-versions . Next is the environment size, which defines the resource configuration for the scheduler, web server, and workers.

\r\n\r\n\r\n\r\n
\"\"\r\n
Small Environment Size Configuration
\r\n
\r\n\r\n\r\n\r\n

The predefined configuration can be customized, which means all the resource configurations would have to be added to the Terraform resource configuration.

\r\n\r\n\r\n\r\n

Google cloud composer provides enterprise security with several security configuration options.

\r\n\r\n\r\n\r\n
\"\"\r\n
https://youtu.be/RrKXZcKOz4A
\r\n
\r\n\r\n\r\n\r\n

For this development environment, Cloud Composer deployment, we choose to deploy Cloud Composer in a Private IP strategy with VPC-Native mode. The GKE deployed with Cloud Composer is deployed as a private cluster, Cloud Composer is deployed to a private network, and the Cloud SQL deployed with Cloud Composer is deployed to a private network. Only public or internet access allowed is to the Apache Airflow Web Server with SSO managed by Google IAM. To accomplish such configuration, we define private_environment_config and node_config in the Terraform Cloud Composer resource config. Lastly, we define a maintenance window to allow for system upgrades.

\r\n\r\n\r\n\r\n

Once you execute the Terraform script with

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

after about 30 min the networking, GKE, Cloud SQL, AirFlow Web Server, and Cloud Composer will be deployed and ready to use. To support further processing we define output Terraform variables that provide feedback from the deployment.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

The outputs provide the information about the GKE cluster, AirFlow Web Server URL, and the Google Storage bucket where the AirFlow DAG should be stored.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

There are many variables used in the Terraform script defined in the variables.tf file. Here we list some of the most relevant values for these variables.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

The Terraform deployment allows us to deploy data pipelines infrastructure fast, securely, and with different configurations for production deployment. It is a part of a broader CI/CD pipeline that focuses on delivering value to Translucent clients via efficient DevSecOps.

\r\n','Cloud Composer - Terraform Deployment','','publish','open','open','','cloud-composer-terraform-deployment','','','2022-05-20 18:11:48','2022-05-20 22:11:48','',0,'https://www.translucentcomputing.com/?p=3688',0,'post','',0),(3689,9,'2021-12-10 11:29:31','2021-12-10 16:29:31','','Screenshot-2021-12-10-at-16.28.49','','inherit','open','closed','','screenshot-2021-12-10-at-16-28-49','','','2021-12-10 11:29:31','2021-12-10 16:29:31','',3688,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/Screenshot-2021-12-10-at-16.28.49.png',0,'attachment','image/png',0),(3690,9,'2021-12-10 11:31:36','2021-12-10 16:31:36','','Screenshot-2021-12-10-at-16.30.46','','inherit','open','closed','','screenshot-2021-12-10-at-16-30-46','','','2021-12-10 11:31:36','2021-12-10 16:31:36','',3688,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/Screenshot-2021-12-10-at-16.30.46.png',0,'attachment','image/png',0),(3691,9,'2021-12-10 11:34:04','2021-12-10 16:34:04','','Screenshot-2021-12-10-at-16.33.26','','inherit','open','closed','','screenshot-2021-12-10-at-16-33-26','','','2021-12-10 11:34:04','2021-12-10 16:34:04','',3688,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/Screenshot-2021-12-10-at-16.33.26.png',0,'attachment','image/png',0),(3692,9,'2021-12-10 11:35:02','2021-12-10 16:35:02','','Screenshot-2021-12-10-at-16.34.31','','inherit','open','closed','','screenshot-2021-12-10-at-16-34-31','','','2021-12-10 11:35:02','2021-12-10 16:35:02','',3688,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/Screenshot-2021-12-10-at-16.34.31.png',0,'attachment','image/png',0),(3693,9,'2021-12-10 11:35:57','2021-12-10 16:35:57','','Screenshot-2021-12-10-at-16.35.15','','inherit','open','closed','','screenshot-2021-12-10-at-16-35-15','','','2021-12-10 11:35:57','2021-12-10 16:35:57','',3688,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/Screenshot-2021-12-10-at-16.35.15.png',0,'attachment','image/png',0),(3694,9,'2021-12-10 11:41:20','2021-12-10 16:41:20','','Screenshot-2021-12-10-at-16.38.31','','inherit','open','closed','','screenshot-2021-12-10-at-16-38-31','','','2021-12-10 11:41:20','2021-12-10 16:41:20','',3688,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/Screenshot-2021-12-10-at-16.38.31.png',0,'attachment','image/png',0),(3695,9,'2021-12-10 11:42:17','2021-12-10 16:42:17','','Screenshot-2021-12-10-at-16.41.44','','inherit','open','closed','','screenshot-2021-12-10-at-16-41-44','','','2021-12-10 11:42:17','2021-12-10 16:42:17','',3688,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/Screenshot-2021-12-10-at-16.41.44.png',0,'attachment','image/png',0),(3696,9,'2021-12-10 11:43:26','2021-12-10 16:43:26','','Screenshot-2021-12-10-at-16.42.49','','inherit','open','closed','','screenshot-2021-12-10-at-16-42-49','','','2021-12-10 11:43:26','2021-12-10 16:43:26','',3688,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/Screenshot-2021-12-10-at-16.42.49.png',0,'attachment','image/png',0),(3697,9,'2021-12-10 11:44:55','2021-12-10 16:44:55','','Screenshot-2021-12-10-at-16.44.15','','inherit','open','closed','','screenshot-2021-12-10-at-16-44-15','','','2021-12-10 11:44:55','2021-12-10 16:44:55','',3688,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/Screenshot-2021-12-10-at-16.44.15.png',0,'attachment','image/png',0),(3698,9,'2021-12-10 11:45:30','2021-12-10 16:45:30','','Screenshot-2021-12-10-at-16.44.56','','inherit','open','closed','','screenshot-2021-12-10-at-16-44-56','','','2021-12-10 11:45:30','2021-12-10 16:45:30','',3688,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/Screenshot-2021-12-10-at-16.44.56.png',0,'attachment','image/png',0),(3699,9,'2021-12-10 11:47:15','2021-12-10 16:47:15','','Screenshot-2021-12-10-at-16.44.56-1','','inherit','open','closed','','screenshot-2021-12-10-at-16-44-56-1','','','2021-12-10 11:47:15','2021-12-10 16:47:15','',3688,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/Screenshot-2021-12-10-at-16.44.56-1.png',0,'attachment','image/png',0),(3700,9,'2021-12-10 12:44:42','2021-12-10 17:44:42','','Screenshot-2021-12-10-at-17.44.06','','inherit','open','closed','','screenshot-2021-12-10-at-17-44-06','','','2021-12-10 12:44:42','2021-12-10 17:44:42','',3688,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/Screenshot-2021-12-10-at-17.44.06.png',0,'attachment','image/png',0),(3701,9,'2021-12-10 12:45:49','2021-12-10 17:45:49','','Screenshot-2021-12-10-at-17.45.19','','inherit','open','closed','','screenshot-2021-12-10-at-17-45-19','','','2021-12-10 12:45:49','2021-12-10 17:45:49','',3688,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/Screenshot-2021-12-10-at-17.45.19.png',0,'attachment','image/png',0),(3702,9,'2021-12-10 12:47:06','2021-12-10 17:47:06','','Screenshot-2021-12-10-at-17.46.41','','inherit','open','closed','','screenshot-2021-12-10-at-17-46-41','','','2021-12-10 12:47:06','2021-12-10 17:47:06','',3688,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/Screenshot-2021-12-10-at-17.46.41.png',0,'attachment','image/png',0),(3703,9,'2021-12-10 12:47:46','2021-12-10 17:47:46','','Screenshot-2021-12-10-at-17.47.21','','inherit','open','closed','','screenshot-2021-12-10-at-17-47-21','','','2021-12-10 12:47:46','2021-12-10 17:47:46','',3688,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/Screenshot-2021-12-10-at-17.47.21.png',0,'attachment','image/png',0),(3704,9,'2021-12-10 12:48:38','2021-12-10 17:48:38','','Screenshot-2021-12-10-at-17.48.15','','inherit','open','closed','','screenshot-2021-12-10-at-17-48-15','','','2021-12-10 12:48:38','2021-12-10 17:48:38','',3688,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/Screenshot-2021-12-10-at-17.48.15.png',0,'attachment','image/png',0),(3705,9,'2021-12-10 12:49:16','2021-12-10 17:49:16','','Screenshot-2021-12-10-at-17.48.50','','inherit','open','closed','','screenshot-2021-12-10-at-17-48-50','','','2021-12-10 12:49:16','2021-12-10 17:49:16','',3688,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/Screenshot-2021-12-10-at-17.48.50.png',0,'attachment','image/png',0),(3706,9,'2021-12-10 12:50:22','2021-12-10 17:50:22','','0011_new_jakub_blog_banners_50_terraformingdeployment','','inherit','open','closed','','0011_new_jakub_blog_banners_50_terraformingdeployment','','','2021-12-10 12:50:22','2021-12-10 17:50:22','',3688,'https://www.translucentcomputing.com/wp-content/uploads/2021/12/0011_new_jakub_blog_banners_50_terraformingdeployment.png',0,'attachment','image/png',0),(3707,9,'2021-12-10 12:50:28','2021-12-10 17:50:28','\n

At Translucent Computing, we are continuously examining our DevSecOp processes to deliver better value to our customers. Google Cloud Composer is managed Apache Airflow service that provides speed of deployment and enterprise security, leading to providing more efficient service to our clients by focusing on delivering the business value from data pipelines executed in Apache Airflow and spending less time on the infrastructure deployment and management. Here we examine the deployment of Cloud Composer with Terraform.

\n\n\n\n

List of files used in this deployment.

\n\n\n\n
\"\"
\n\n\n\n

We start with configuring a service account for the Terraform script execution. Kicking off a Bash script with variables that are required by the gcloud commands.

\n\n\n\n
\"\"
\n\n\n\n

We can create the service account and credentials file using the above parameters and assign the required roles to the service account.

\n\n\n\n
\"\"
\n\n\n\n

Since we also have chosen to use Google Cloud Storage as our backend to store the Terraform state, we create a bucket in Google Cloud Storage and generate a backend Terraform file.

\n\n\n\n
\"\"
\n\n\n\n

This initial configuration is enough to use Terraform for the rest of the deployment. Google provides Terraform providers for the Google Cloud and Google Cloud Composer. Since we have transitioned to Google Cloud Composer 2 which provides benefits of Google GKE Autopilot which is designed to reduce the operational cost, we have to use the Google beta Terraform provider.

\n\n\n\n
\"\"
\n\n\n\n

We next configure the provider.

\n\n\n\n
\"\"
\n\n\n\n

With backend.tf generated and the provider configured we can focus on the deployment of Cloud Composer. We start by defining the supporting resources that are required by Cloud Composer.

\n\n\n\n
\"\"
\n\n\n\n
\"\"
\n\n\n\n

We can now define the main Terraform resource that creates the Cloud Composer.

\n\n\n\n
\"\"
\n\n\n\n
\"\"
\n\n\n\n

The configuration Cloud Composer starts with the image versions to use. The image version defines the Cloud Composer version that is created and the Airflow version and Python version. Google publishes the Cloud Composer image versions here https://cloud.google.com/composer/docs/concepts/versioning/composer-versions . Next is the environment size, which defines the resource configuration for the scheduler, web server, and workers.

\n\n\n\n
\"\"
Small Environment Size Configuration
\n\n\n\n

The predefined configuration can be customized, which means all the resource configurations would have to be added to the Terraform resource configuration.

\n\n\n\n

Google cloud composer provides enterprise security with several security configuration options.

\n\n\n\n
\"\"
https://youtu.be/RrKXZcKOz4A
\n\n\n\n

For this development environment, Cloud Composer deployment, we choose to deploy Cloud Composer in a Private IP strategy with VPC-Native mode. The GKE deployed with Cloud Composer is deployed as a private cluster, Cloud Composer is deployed to a private network, and the Cloud SQL deployed with Cloud Composer is deployed to a private network. Only public or internet access allowed is to the Apache Airflow Web Server with SSO managed by Google IAM. To accomplish such configuration, we define private_environment_config and node_config in the Terraform Cloud Composer resource config. Lastly, we define a maintenance window to allow for system upgrades.

\n\n\n\n

Once you execute the Terraform script with

\n\n\n\n
\"\"
\n\n\n\n

after about 30 min the networking, GKE, Cloud SQL, AirFlow Web Server, and Cloud Composer will be deployed and ready to use. To support further processing we define output Terraform variables that provide feedback from the deployment.

\n\n\n\n
\"\"
\n\n\n\n

The outputs provide the information about the GKE cluster, AirFlow Web Server URL, and the Google Storage bucket where the AirFlow DAG should be stored.

\n\n\n\n
\"\"
\n\n\n\n

There are many variables used in the Terraform script defined in the variables.tf file. Here we list some of the most relevant values for these variables.

\n\n\n\n
\"\"
\n\n\n\n

The Terraform deployment allows us to deploy data pipelines infrastructure fast, securely, and with different configurations for production deployment. It is a part of a broader CI/CD pipeline that focuses on delivering value to Translucent clients via efficient DevSecOps.

\n','Cloud Composer - Terraform Deployment','','inherit','closed','closed','','3688-revision-v1','','','2021-12-10 12:50:28','2021-12-10 17:50:28','',3688,'https://www.translucentcomputing.com/2021/12/3688-revision-v1/',0,'revision','',0),(3711,4,'2022-01-20 18:43:50','2022-01-20 23:43:50','','ScreenHunter 1244','','inherit','open','closed','','screenhunter-1244','','','2022-01-20 18:43:50','2022-01-20 23:43:50','',0,'https://www.translucentcomputing.com/wp-content/uploads/2022/01/ScreenHunter-1244.png',0,'attachment','image/png',0),(3712,4,'2022-01-20 21:25:58','2022-01-21 02:25:58','','About Us','','inherit','closed','closed','','3335-revision-v1','','','2022-01-20 21:25:58','2022-01-21 02:25:58','',3335,'https://www.translucentcomputing.com/2022/01/3335-revision-v1/',0,'revision','',0),(3713,4,'2022-01-20 21:26:09','2022-01-21 02:26:09','','About Us','','inherit','closed','closed','','3335-revision-v1','','','2022-01-20 21:26:09','2022-01-21 02:26:09','',3335,'https://www.translucentcomputing.com/2022/01/3335-revision-v1/',0,'revision','',0),(3714,4,'2022-01-20 21:26:34','2022-01-21 02:26:34','','About Us','','inherit','closed','closed','','3335-revision-v1','','','2022-01-20 21:26:34','2022-01-21 02:26:34','',3335,'https://www.translucentcomputing.com/2022/01/3335-revision-v1/',0,'revision','',0),(3715,4,'2022-01-20 21:26:48','2022-01-21 02:26:48','','About Us','','inherit','closed','closed','','3335-revision-v1','','','2022-01-20 21:26:48','2022-01-21 02:26:48','',3335,'https://www.translucentcomputing.com/2022/01/3335-revision-v1/',0,'revision','',0),(3716,4,'2022-01-20 21:29:01','2022-01-21 02:29:01','','About Us','','inherit','closed','closed','','3335-revision-v1','','','2022-01-20 21:29:01','2022-01-21 02:29:01','',3335,'https://www.translucentcomputing.com/2022/01/3335-revision-v1/',0,'revision','',0),(3717,4,'2022-01-20 21:29:18','2022-01-21 02:29:18','','About Us','','inherit','closed','closed','','3335-revision-v1','','','2022-01-20 21:29:18','2022-01-21 02:29:18','',3335,'https://www.translucentcomputing.com/2022/01/3335-revision-v1/',0,'revision','',0),(3718,4,'2022-01-25 12:23:01','2022-01-25 17:23:01','','Landing Page - Cloud Native DevOps Long - CL - BN - Canada- Ontario','','inherit','closed','closed','','3051-revision-v1','','','2022-01-25 12:23:01','2022-01-25 17:23:01','',3051,'https://www.translucentcomputing.com/2022/01/3051-revision-v1/',0,'revision','',0),(3719,4,'2022-01-25 12:23:01','2022-01-25 17:23:01','','Landing Page - Cloud Native DevOps Long - CL - BN - US - California','','inherit','closed','closed','','3047-revision-v1','','','2022-01-25 12:23:01','2022-01-25 17:23:01','',3047,'https://www.translucentcomputing.com/2022/01/3047-revision-v1/',0,'revision','',0),(3720,4,'2022-01-25 12:23:01','2022-01-25 17:23:01','','Landing Page - Cloud Native DevOps Long - CL - BN - US - Georgia','','inherit','closed','closed','','3045-revision-v1','','','2022-01-25 12:23:01','2022-01-25 17:23:01','',3045,'https://www.translucentcomputing.com/2022/01/3045-revision-v1/',0,'revision','',0),(3721,4,'2022-01-25 12:23:01','2022-01-25 17:23:01','','Landing Page - Cloud Native DevOps Long - CL - BN - US - New York','','inherit','closed','closed','','3049-revision-v1','','','2022-01-25 12:23:01','2022-01-25 17:23:01','',3049,'https://www.translucentcomputing.com/2022/01/3049-revision-v1/',0,'revision','',0),(3722,4,'2022-01-25 12:23:01','2022-01-25 17:23:01','','Landing Page - Cloud Native DevOps Long - CL - BN - US - Texas','','inherit','closed','closed','','3043-revision-v1','','','2022-01-25 12:23:01','2022-01-25 17:23:01','',3043,'https://www.translucentcomputing.com/2022/01/3043-revision-v1/',0,'revision','',0),(3723,4,'2022-01-25 12:23:02','2022-01-25 17:23:02','','Landing Page - Cloud Native DevOps Mid - CL - BN - Canada - Ontario','','inherit','closed','closed','','3009-revision-v1','','','2022-01-25 12:23:02','2022-01-25 17:23:02','',3009,'https://www.translucentcomputing.com/2022/01/3009-revision-v1/',0,'revision','',0),(3724,4,'2022-01-25 12:23:02','2022-01-25 17:23:02','','Landing Page - Cloud Native DevOps Mid - CL - BN - US - California','','inherit','closed','closed','','3016-revision-v1','','','2022-01-25 12:23:02','2022-01-25 17:23:02','',3016,'https://www.translucentcomputing.com/2022/01/3016-revision-v1/',0,'revision','',0),(3725,4,'2022-01-25 12:23:02','2022-01-25 17:23:02','','Landing Page - Cloud Native DevOps Mid - CL - BN - US - Georgia','','inherit','closed','closed','','3014-revision-v1','','','2022-01-25 12:23:02','2022-01-25 17:23:02','',3014,'https://www.translucentcomputing.com/2022/01/3014-revision-v1/',0,'revision','',0),(3726,4,'2022-01-25 12:23:02','2022-01-25 17:23:02','','Landing Page - Cloud Native DevOps Mid - CL - BN - US - New York','','inherit','closed','closed','','3018-revision-v1','','','2022-01-25 12:23:02','2022-01-25 17:23:02','',3018,'https://www.translucentcomputing.com/2022/01/3018-revision-v1/',0,'revision','',0),(3727,4,'2022-01-25 12:23:02','2022-01-25 17:23:02','','Landing Page - Cloud Native DevOps Mid - CL - BN - US - Texas','','inherit','closed','closed','','3012-revision-v1','','','2022-01-25 12:23:02','2022-01-25 17:23:02','',3012,'https://www.translucentcomputing.com/2022/01/3012-revision-v1/',0,'revision','',0),(3728,4,'2022-01-26 17:11:57','2022-01-26 22:11:57','','Contact Us','','inherit','closed','closed','','57-revision-v1','','','2022-01-26 17:11:57','2022-01-26 22:11:57','',57,'https://www.translucentcomputing.com/2022/01/57-revision-v1/',0,'revision','',0),(3729,4,'2022-01-26 17:12:34','2022-01-26 22:12:34','[wpgmza id=\"1\"]','Translucent','','publish','closed','closed','','map','','','2022-01-26 17:12:34','2022-01-26 22:12:34','',0,'https://www.translucentcomputing.com/map/',0,'page','',0),(3738,20,'2022-05-04 18:05:23','2022-05-04 22:05:23','','mt-sample-background','','inherit','open','closed','','mt-sample-background','','','2022-05-04 18:05:23','2022-05-04 22:05:23','',0,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/mt-sample-background.jpg',0,'attachment','image/jpeg',0),(3739,20,'2022-05-04 18:23:41','2022-05-04 22:23:41','a:8:{s:8:\"location\";a:2:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"post\";}}i:1;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:21:\"flexible-template.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Flexible Templates','flexible-templates','publish','closed','closed','','group_62c414299cab0','','','2022-07-15 12:00:00','2022-07-15 16:00:00','',0,'https://www.translucentcomputing.com/?p=3739',0,'acf-field-group','',0),(3740,20,'2022-05-04 18:23:10','2022-05-04 22:23:10','a:9:{s:4:\"type\";s:16:\"flexible_content\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"layouts\";a:40:{s:20:\"layout_6254f4de0c31e\";a:6:{s:3:\"key\";s:20:\"layout_6254f4de0c31e\";s:5:\"label\";s:16:\"Tek Teams Banner\";s:4:\"name\";s:16:\"tek-teams-banner\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62551a3fa6f95\";a:6:{s:3:\"key\";s:20:\"layout_62551a3fa6f95\";s:5:\"label\";s:27:\"Tek Teams Banner Two Column\";s:4:\"name\";s:20:\"tek-teams-two-column\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_6255239d9609e\";a:6:{s:3:\"key\";s:20:\"layout_6255239d9609e\";s:5:\"label\";s:15:\"Tek Teams About\";s:4:\"name\";s:14:\"tek-team-about\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_625529e452710\";a:6:{s:3:\"key\";s:20:\"layout_625529e452710\";s:5:\"label\";s:21:\"Tek Teams Development\";s:4:\"name\";s:21:\"tek-teams-development\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_6255385116baf\";a:6:{s:3:\"key\";s:20:\"layout_6255385116baf\";s:5:\"label\";s:18:\"Tek Teams Benifits\";s:4:\"name\";s:18:\"tek_teams_benifits\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62553df959053\";a:6:{s:3:\"key\";s:20:\"layout_62553df959053\";s:5:\"label\";s:18:\"Tek Teams Whats Is\";s:4:\"name\";s:17:\"tek-team-whats-is\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62554b1f172d6\";a:6:{s:3:\"key\";s:20:\"layout_62554b1f172d6\";s:5:\"label\";s:34:\"Tek Teams Translucent Differential\";s:4:\"name\";s:34:\"tek-teams-translucent-differential\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_625565214146c\";a:6:{s:3:\"key\";s:20:\"layout_625565214146c\";s:5:\"label\";s:17:\"Lets Talk Section\";s:4:\"name\";s:17:\"lets_talk_section\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62569ad0f7c62\";a:6:{s:3:\"key\";s:20:\"layout_62569ad0f7c62\";s:5:\"label\";s:19:\"Cloud Native Banner\";s:4:\"name\";s:19:\"cloud_native_banner\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62569f093c0ac\";a:6:{s:3:\"key\";s:20:\"layout_62569f093c0ac\";s:5:\"label\";s:35:\"Cloud Native Expert dedicated teams\";s:4:\"name\";s:35:\"cloud_native_expert_dedicated_teams\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_6256a613dea7b\";a:6:{s:3:\"key\";s:20:\"layout_6256a613dea7b\";s:5:\"label\";s:39:\"Cloud Native Solving Digital Challenges\";s:4:\"name\";s:39:\"cloud_native_solving_digital_challenges\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_6256a9f161879\";a:6:{s:3:\"key\";s:20:\"layout_6256a9f161879\";s:5:\"label\";s:26:\"Cloud Native Scale Demands\";s:4:\"name\";s:26:\"cloud_native_scale_demands\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_6256ac9ff89e3\";a:6:{s:3:\"key\";s:20:\"layout_6256ac9ff89e3\";s:5:\"label\";s:22:\"Cloud Native Ecosystem\";s:4:\"name\";s:22:\"cloud_native_ecosystem\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_6256dbbbc0c82\";a:6:{s:3:\"key\";s:20:\"layout_6256dbbbc0c82\";s:5:\"label\";s:31:\"Cloud Native Technology Partner\";s:4:\"name\";s:31:\"cloud_native_technology_partner\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_625732eb5d791\";a:6:{s:3:\"key\";s:20:\"layout_625732eb5d791\";s:5:\"label\";s:26:\"Cloud Nature Future Vision\";s:4:\"name\";s:26:\"cloud_nature_future_vision\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_6257babb27dca\";a:6:{s:3:\"key\";s:20:\"layout_6257babb27dca\";s:5:\"label\";s:16:\"TEK World Banner\";s:4:\"name\";s:16:\"tek_world_banner\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_6257bdba45e42\";a:6:{s:3:\"key\";s:20:\"layout_6257bdba45e42\";s:5:\"label\";s:26:\"Tek World Scale your Teams\";s:4:\"name\";s:26:\"tek_world_scale_your_teams\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_6257c2f0705f8\";a:6:{s:3:\"key\";s:20:\"layout_6257c2f0705f8\";s:5:\"label\";s:28:\"Tek World Stack Process Team\";s:4:\"name\";s:28:\"tek_world_stack_process_team\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_6257cf791672f\";a:6:{s:3:\"key\";s:20:\"layout_6257cf791672f\";s:5:\"label\";s:20:\"Tek World Zero Trust\";s:4:\"name\";s:20:\"tek_world_zero_trust\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_6257df4a78147\";a:6:{s:3:\"key\";s:20:\"layout_6257df4a78147\";s:5:\"label\";s:21:\"Tek World TEK Success\";s:4:\"name\";s:21:\"tek_world_tek_success\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_6257e913b4ea6\";a:6:{s:3:\"key\";s:20:\"layout_6257e913b4ea6\";s:5:\"label\";s:26:\"Tek World Translucent Blog\";s:4:\"name\";s:26:\"tek_world_translucent_blog\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_6257e8ffb4ea5\";a:6:{s:3:\"key\";s:20:\"layout_6257e8ffb4ea5\";s:5:\"label\";s:37:\"Cloud Native Translucent Differential\";s:4:\"name\";s:37:\"cloud_native_translucent_differential\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62bb16d744679\";a:6:{s:3:\"key\";s:20:\"layout_62bb16d744679\";s:5:\"label\";s:31:\"Cloud Native Application Banner\";s:4:\"name\";s:31:\"cloud_native_application_banner\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62bb1c7c62e89\";a:6:{s:3:\"key\";s:20:\"layout_62bb1c7c62e89\";s:5:\"label\";s:50:\"Cloud Native Application Building New Applications\";s:4:\"name\";s:50:\"cloud_native_application_building_new_applications\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62bb1dda62e93\";a:6:{s:3:\"key\";s:20:\"layout_62bb1dda62e93\";s:5:\"label\";s:47:\"Cloud Native Application Rebuild And Replatform\";s:4:\"name\";s:47:\"cloud_native_application_rebuild_and_replatform\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62bb1d3a62e8e\";a:6:{s:3:\"key\";s:20:\"layout_62bb1d3a62e8e\";s:5:\"label\";s:40:\"Cloud Native Application Fullwidth Image\";s:4:\"name\";s:40:\"cloud_native_application_fullwidth_image\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62bb209362ea0\";a:6:{s:3:\"key\";s:20:\"layout_62bb209362ea0\";s:5:\"label\";s:49:\"Cloud Native Application Build Rebuild Replatform\";s:4:\"name\";s:49:\"cloud_native_application_build_rebuild_replatform\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62bb223662ead\";a:6:{s:3:\"key\";s:20:\"layout_62bb223662ead\";s:5:\"label\";s:35:\"Cloud Native Applications Solutions\";s:4:\"name\";s:35:\"cloud_native_applications_solutions\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62bb290b62eb4\";a:6:{s:3:\"key\";s:20:\"layout_62bb290b62eb4\";s:5:\"label\";s:47:\"Cloud Native Applications The Translucent Value\";s:4:\"name\";s:47:\"cloud_native_applications_the_translucent_value\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62bb2a5462eba\";a:6:{s:3:\"key\";s:20:\"layout_62bb2a5462eba\";s:5:\"label\";s:40:\"Cloud Native Application Copy And Button\";s:4:\"name\";s:40:\"cloud_native_application_copy_and_button\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62c40804624b5\";a:6:{s:3:\"key\";s:20:\"layout_62c40804624b5\";s:5:\"label\";s:28:\"Cloud Native Solution Banner\";s:4:\"name\";s:28:\"cloud_native_solution_banner\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62c40b14f22ed\";a:6:{s:3:\"key\";s:20:\"layout_62c40b14f22ed\";s:5:\"label\";s:36:\"Cloud Native Solution Drive Business\";s:4:\"name\";s:36:\"cloud_native_solution_drive_business\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62c40ce9f22f7\";a:6:{s:3:\"key\";s:20:\"layout_62c40ce9f22f7\";s:5:\"label\";s:29:\"Cloud Native Solution Journey\";s:4:\"name\";s:29:\"cloud_native_solution_journey\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62c40d79f22fb\";a:6:{s:3:\"key\";s:20:\"layout_62c40d79f22fb\";s:5:\"label\";s:29:\"Cloud Native Solution Service\";s:4:\"name\";s:29:\"cloud_native_solution_service\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62c4101cf230b\";a:6:{s:3:\"key\";s:20:\"layout_62c4101cf230b\";s:5:\"label\";s:27:\"Cloud Native Solution Build\";s:4:\"name\";s:27:\"cloud_native_solution_build\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62c410d3f2311\";a:6:{s:3:\"key\";s:20:\"layout_62c410d3f2311\";s:5:\"label\";s:42:\"Cloud Native Solution Book Consulation Now\";s:4:\"name\";s:42:\"cloud_native_solution_book_consulation_now\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62c41bac1348c\";a:6:{s:3:\"key\";s:20:\"layout_62c41bac1348c\";s:5:\"label\";s:33:\"Cloud Native Solution Data Driven\";s:4:\"name\";s:33:\"cloud_native_solution_data_driven\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62c41d5e525e4\";a:6:{s:3:\"key\";s:20:\"layout_62c41d5e525e4\";s:5:\"label\";s:36:\"Cloud Native Solution Infrastructure\";s:4:\"name\";s:36:\"cloud_native_solution_infrastructure\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62d180cd0fdf9\";a:6:{s:3:\"key\";s:20:\"layout_62d180cd0fdf9\";s:5:\"label\";s:14:\"Contact Banner\";s:4:\"name\";s:14:\"contact_banner\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}s:20:\"layout_62d181160fdfd\";a:6:{s:3:\"key\";s:20:\"layout_62d181160fdfd\";s:5:\"label\";s:19:\"Contact Main Layout\";s:4:\"name\";s:19:\"contact_main_layout\";s:7:\"display\";s:5:\"block\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}}s:12:\"button_label\";s:7:\"Add Row\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";}','Flexible Templates','flexible_templates','publish','closed','closed','','field_6254f4d84ef9b','','','2022-07-15 11:20:45','2022-07-15 15:20:45','',3739,'https://www.translucentcomputing.com/?post_type=acf-field&p=3740',0,'acf-field','',0),(3741,20,'2022-05-04 18:23:10','2022-05-04 22:23:10','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc5efa2a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6254f4de0c31e\";}','Background Image','background_image','publish','closed','closed','','field_6255038c2e6ae','','','2022-05-04 18:23:10','2022-05-04 22:23:10','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3741',0,'acf-field','',0),(3742,20,'2022-05-04 18:23:10','2022-05-04 22:23:10','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdcbefa2b\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6254f4de0c31e\";}','Background Image Mobile','background_image_mobile','publish','closed','closed','','field_625503db2e6af','','','2022-05-04 18:23:10','2022-05-04 22:23:10','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3742',1,'acf-field','',0),(3743,20,'2022-05-04 18:23:10','2022-05-04 22:23:10','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62550482480cb\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6254f4de0c31e\";}','Icon','icon','publish','closed','closed','','field_6255095042ef2','','','2022-05-04 18:23:10','2022-05-04 22:23:10','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3743',2,'acf-field','',0),(3744,20,'2022-05-04 18:23:11','2022-05-04 22:23:11','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6254f4de0c31e\";}','Heading','heading','publish','closed','closed','','field_6255096442ef3','','','2022-05-04 18:23:11','2022-05-04 22:23:11','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3744',3,'acf-field','',0),(3745,20,'2022-05-04 18:23:11','2022-05-04 22:23:11','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdbaefa28\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6254f4de0c31e\";}','Sub Heading','sub_heading','publish','closed','closed','','field_6255097642ef4','','','2022-05-04 18:23:11','2022-05-04 22:23:11','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3745',4,'acf-field','',0),(3746,20,'2022-05-04 18:23:11','2022-05-04 22:23:11','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62551a3fa6f95\";}','Heading','heading','publish','closed','closed','','field_62551ac3a6f96','','','2022-05-04 18:23:11','2022-05-04 22:23:11','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3746',0,'acf-field','',0),(3747,20,'2022-05-04 18:23:11','2022-05-04 22:23:11','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdbaefa28\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62551a3fa6f95\";}','Sub Heading','sub_heading','publish','closed','closed','','field_62551ae4a6f97','','','2022-05-04 18:23:11','2022-05-04 22:23:11','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3747',1,'acf-field','',0),(3748,20,'2022-05-04 18:23:11','2022-05-04 22:23:11','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b3e101c4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62551a3fa6f95\";}','CTA','cta','publish','closed','closed','','field_62551b56a6f98','','','2022-05-04 18:23:11','2022-05-04 22:23:11','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3748',2,'acf-field','',0),(3749,20,'2022-05-04 18:23:12','2022-05-04 22:23:12','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc0efa29\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62551a3fa6f95\";}','Copy','copy','publish','closed','closed','','field_62551b74a6f99','','','2022-05-04 18:23:12','2022-05-04 22:23:12','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3749',3,'acf-field','',0),(3750,20,'2022-05-04 18:23:12','2022-05-04 22:23:12','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc5efa2a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6255239d9609e\";}','Image','image','publish','closed','closed','','field_625523de9609f','','','2022-05-04 18:23:12','2022-05-04 22:23:12','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3750',0,'acf-field','',0),(3751,20,'2022-05-04 18:23:12','2022-05-04 22:23:12','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdcbefa2b\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6255239d9609e\";}','Mob Image','mob_image','publish','closed','closed','','field_625523f4960a0','','','2022-05-04 18:23:12','2022-05-04 22:23:12','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3751',1,'acf-field','',0),(3752,20,'2022-05-04 18:23:12','2022-05-04 22:23:12','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62550482480cb\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6255239d9609e\";}','Icon','icon','publish','closed','closed','','field_6255246d960a1','','','2022-05-04 18:23:12','2022-05-04 22:23:12','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3752',2,'acf-field','',0),(3753,20,'2022-05-04 18:23:12','2022-05-04 22:23:12','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6255239d9609e\";}','Heading','heading','publish','closed','closed','','field_62552482960a2','','','2022-05-04 18:23:12','2022-05-04 22:23:12','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3753',3,'acf-field','',0),(3754,20,'2022-05-04 18:23:12','2022-05-04 22:23:12','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;s:13:\"parent_layout\";s:20:\"layout_6255239d9609e\";}','Copy','copy','publish','closed','closed','','field_625525b15629c','','','2022-05-04 18:23:12','2022-05-04 22:23:12','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3754',4,'acf-field','',0),(3755,20,'2022-05-04 18:23:13','2022-05-04 22:23:13','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;s:13:\"parent_layout\";s:20:\"layout_6255239d9609e\";}','Copy Right','content_right','publish','closed','closed','','field_625525ba5629d','','','2022-05-04 18:23:13','2022-05-04 22:23:13','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3755',5,'acf-field','',0),(3756,20,'2022-05-04 18:23:13','2022-05-04 22:23:13','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc5efa2a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_625529e452710\";}','Image','image','publish','closed','closed','','field_62552ada52711','','','2022-05-04 18:23:13','2022-05-04 22:23:13','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3756',0,'acf-field','',0),(3757,20,'2022-05-04 18:23:13','2022-05-04 22:23:13','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdcbefa2b\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_625529e452710\";}','Mob Image','mob_image','publish','closed','closed','','field_62552aed52712','','','2022-05-04 18:23:13','2022-05-04 22:23:13','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3757',1,'acf-field','',0),(3758,20,'2022-05-04 18:23:13','2022-05-04 22:23:13','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62550482480cb\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_625529e452710\";}','Icon','icon','publish','closed','closed','','field_62552b7652713','','','2022-05-04 18:23:13','2022-05-04 22:23:13','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3758',2,'acf-field','',0),(3759,20,'2022-05-04 18:23:13','2022-05-04 22:23:13','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_625529e452710\";}','Heading','heading','publish','closed','closed','','field_62552baf52715','','','2022-05-04 18:23:13','2022-05-04 22:23:13','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3759',3,'acf-field','',0),(3760,20,'2022-05-04 18:23:14','2022-05-04 22:23:14','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc0efa29\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_625529e452710\";}','Copy','copy','publish','closed','closed','','field_62552b8552714','','','2022-05-04 18:23:14','2022-05-04 22:23:14','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3760',4,'acf-field','',0),(3761,20,'2022-05-04 18:23:14','2022-05-04 22:23:14','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:0:\"\";s:13:\"parent_layout\";s:20:\"layout_625529e452710\";}','Development Team Steps','development_team_steps','publish','closed','closed','','field_62552cbb784a8','','','2022-05-04 18:23:14','2022-05-04 22:23:14','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3761',5,'acf-field','',0),(3762,20,'2022-05-04 18:23:14','2022-05-04 22:23:14','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62550482480cb\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Icon','icon','publish','closed','closed','','field_62552cdb784a9','','','2022-05-04 18:23:14','2022-05-04 22:23:14','',3761,'https://www.translucentcomputing.com/?post_type=acf-field&p=3762',0,'acf-field','',0),(3763,20,'2022-05-04 18:23:14','2022-05-04 22:23:14','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Heading','heading','publish','closed','closed','','field_62552ced784aa','','','2022-05-04 18:23:14','2022-05-04 22:23:14','',3761,'https://www.translucentcomputing.com/?post_type=acf-field&p=3763',1,'acf-field','',0),(3764,20,'2022-05-04 18:23:14','2022-05-04 22:23:14','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc0efa29\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Copy','copy','publish','closed','closed','','field_62552cfe784ab','','','2022-05-04 18:23:14','2022-05-04 22:23:14','',3761,'https://www.translucentcomputing.com/?post_type=acf-field&p=3764',2,'acf-field','',0),(3765,20,'2022-05-04 18:23:14','2022-05-04 22:23:14','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b3e101c4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_625529e452710\";}','CTA','cta','publish','closed','closed','','field_62552c6a784a7','','','2022-05-04 18:23:14','2022-05-04 22:23:14','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3765',6,'acf-field','',0),(3766,20,'2022-05-04 18:23:15','2022-05-04 22:23:15','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc5efa2a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6255385116baf\";}','Image','image','publish','closed','closed','','field_625538ef16bb0','','','2022-05-04 18:23:15','2022-05-04 22:23:15','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3766',0,'acf-field','',0),(3767,20,'2022-05-04 18:23:15','2022-05-04 22:23:15','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdcbefa2b\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6255385116baf\";}','Mob Image','mob_image','publish','closed','closed','','field_6255391616bb1','','','2022-05-04 18:23:15','2022-05-04 22:23:15','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3767',1,'acf-field','',0),(3768,20,'2022-05-04 18:23:15','2022-05-04 22:23:15','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62550482480cb\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6255385116baf\";}','Icon','icon','publish','closed','closed','','field_62553d28bca93','','','2022-05-04 18:23:15','2022-05-04 22:23:15','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3768',2,'acf-field','',0),(3769,20,'2022-05-04 18:23:15','2022-05-04 22:23:15','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6255385116baf\";}','Heading','heading','publish','closed','closed','','field_6255397e16bb2','','','2022-05-04 18:23:15','2022-05-04 22:23:15','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3769',3,'acf-field','',0),(3770,20,'2022-05-04 18:23:15','2022-05-04 22:23:15','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:0:\"\";s:13:\"parent_layout\";s:20:\"layout_6255385116baf\";}','Benefits','development_team_steps','publish','closed','closed','','field_625539a816bb3','','','2022-05-04 18:23:15','2022-05-04 22:23:15','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3770',4,'acf-field','',0),(3771,20,'2022-05-04 18:23:16','2022-05-04 22:23:16','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62550482480cb\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Icon','icon','publish','closed','closed','','field_625539a816bb4','','','2022-05-04 18:23:16','2022-05-04 22:23:16','',3770,'https://www.translucentcomputing.com/?post_type=acf-field&p=3771',0,'acf-field','',0),(3772,20,'2022-05-04 18:23:16','2022-05-04 22:23:16','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Heading','heading','publish','closed','closed','','field_625539a816bb5','','','2022-05-04 18:23:16','2022-05-04 22:23:16','',3770,'https://www.translucentcomputing.com/?post_type=acf-field&p=3772',1,'acf-field','',0),(3773,20,'2022-05-04 18:23:16','2022-05-04 22:23:16','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc0efa29\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Copy','copy','publish','closed','closed','','field_625539a816bb6','','','2022-05-04 18:23:16','2022-05-04 22:23:16','',3770,'https://www.translucentcomputing.com/?post_type=acf-field&p=3773',2,'acf-field','',0),(3774,20,'2022-05-04 18:23:16','2022-05-04 22:23:16','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b3e101c4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6255385116baf\";}','CTA','cta','publish','closed','closed','','field_625539ce16bb7','','','2022-05-04 18:23:16','2022-05-04 22:23:16','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3774',5,'acf-field','',0),(3775,20,'2022-05-04 18:23:16','2022-05-04 22:23:16','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc5efa2a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62553df959053\";}','Image','image','publish','closed','closed','','field_62553e7d5dd54','','','2022-05-04 18:23:16','2022-05-04 22:23:16','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3775',0,'acf-field','',0),(3776,20,'2022-05-04 18:23:16','2022-05-04 22:23:16','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdcbefa2b\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62553df959053\";}','Mob Image','mob_image','publish','closed','closed','','field_62553eab5dd55','','','2022-05-04 18:23:16','2022-05-04 22:23:16','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3776',1,'acf-field','',0),(3777,20,'2022-05-04 18:23:17','2022-05-04 22:23:17','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62550482480cb\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62553df959053\";}','Icon','icon','publish','closed','closed','','field_62553eee5dd56','','','2022-05-04 18:23:17','2022-05-04 22:23:17','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3777',2,'acf-field','',0),(3778,20,'2022-05-04 18:23:17','2022-05-04 22:23:17','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62553df959053\";}','Heading','heading','publish','closed','closed','','field_62553f075dd57','','','2022-05-04 18:23:17','2022-05-04 22:23:17','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3778',3,'acf-field','',0),(3779,20,'2022-05-04 18:23:17','2022-05-04 22:23:17','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:13:\"parent_layout\";s:20:\"layout_62553df959053\";}','Heading Mobile','heading_mobile','publish','closed','closed','','field_62553f185dd58','','','2022-05-04 18:23:17','2022-05-04 22:23:17','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3779',4,'acf-field','',0),(3780,20,'2022-05-04 18:23:17','2022-05-04 22:23:17','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc0efa29\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62553df959053\";}','Copy','copy','publish','closed','closed','','field_62553f315dd59','','','2022-05-04 18:23:17','2022-05-04 22:23:17','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3780',5,'acf-field','',0),(3781,20,'2022-05-04 18:23:17','2022-05-04 22:23:17','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:0:\"\";s:13:\"parent_layout\";s:20:\"layout_62553df959053\";}','Structure','development_team_steps','publish','closed','closed','','field_625540b262815','','','2022-05-04 18:23:17','2022-05-04 22:23:17','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3781',6,'acf-field','',0),(3782,20,'2022-05-04 18:23:17','2022-05-04 22:23:17','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62550482480cb\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Icon','icon','publish','closed','closed','','field_625540b262816','','','2022-05-04 18:23:17','2022-05-04 22:23:17','',3781,'https://www.translucentcomputing.com/?post_type=acf-field&p=3782',0,'acf-field','',0),(3783,20,'2022-05-04 18:23:18','2022-05-04 22:23:18','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Heading','heading','publish','closed','closed','','field_625540b262817','','','2022-05-04 18:23:18','2022-05-04 22:23:18','',3781,'https://www.translucentcomputing.com/?post_type=acf-field&p=3783',1,'acf-field','',0),(3784,20,'2022-05-04 18:23:18','2022-05-04 22:23:18','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc0efa29\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Copy','copy','publish','closed','closed','','field_625540b262818','','','2022-05-04 18:23:18','2022-05-04 22:23:18','',3781,'https://www.translucentcomputing.com/?post_type=acf-field&p=3784',2,'acf-field','',0),(3785,20,'2022-05-04 18:23:18','2022-05-04 22:23:18','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b3e101c4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62553df959053\";}','CTA','cta','publish','closed','closed','','field_6255410462819','','','2022-05-04 18:23:18','2022-05-04 22:23:18','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3785',7,'acf-field','',0),(3786,20,'2022-05-04 18:23:18','2022-05-04 22:23:18','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62554b1f172d6\";}','Headig','headig','publish','closed','closed','','field_62554b91172d7','','','2022-05-04 18:23:18','2022-05-04 22:23:18','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3786',0,'acf-field','',0),(3787,20,'2022-05-04 18:23:18','2022-05-04 22:23:18','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdbaefa28\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62554b1f172d6\";}','Sub Heading','sub_','publish','closed','closed','','field_62554ba5172d8','','','2022-05-04 18:23:18','2022-05-04 22:23:18','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3787',1,'acf-field','',0),(3788,20,'2022-05-04 18:23:19','2022-05-04 22:23:19','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62550482480cb\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62554b1f172d6\";}','Icon','icon','publish','closed','closed','','field_62554d69172e1','','','2022-05-04 18:23:19','2022-05-04 22:23:19','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3788',2,'acf-field','',0),(3789,20,'2022-05-04 18:23:19','2022-05-04 22:23:19','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";s:13:\"parent_layout\";s:20:\"layout_62554b1f172d6\";}','Differential Translucent Header','differential_translucent_header','publish','closed','closed','','field_6256884687279','','','2022-05-04 18:23:19','2022-05-04 22:23:19','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3789',3,'acf-field','',0),(3790,20,'2022-05-04 18:23:19','2022-05-04 22:23:19','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Heading','heading','publish','closed','closed','','field_625688668727a','','','2022-05-04 18:23:19','2022-05-04 22:23:19','',3789,'https://www.translucentcomputing.com/?post_type=acf-field&p=3790',0,'acf-field','',0),(3791,20,'2022-05-04 18:23:19','2022-05-04 22:23:19','a:8:{s:4:\"type\";s:12:\"color_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:14:\"enable_opacity\";i:0;s:13:\"return_format\";s:6:\"string\";}','Color','color','publish','closed','closed','','field_62568e42de80b','','','2022-05-04 18:23:19','2022-05-04 22:23:19','',3789,'https://www.translucentcomputing.com/?post_type=acf-field&p=3791',1,'acf-field','',0),(3792,20,'2022-05-04 18:23:19','2022-05-04 22:23:19','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:19:\"field_62554d45172dc\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:0:\"\";s:13:\"parent_layout\";s:20:\"layout_62554b1f172d6\";}','Differential Translucent','differential_translucent','publish','closed','closed','','field_62554c30172da','','','2022-05-04 18:23:19','2022-05-04 22:23:19','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3792',4,'acf-field','',0),(3793,20,'2022-05-04 18:23:20','2022-05-04 22:23:20','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Heading 1','heading_1','publish','closed','closed','','field_625689c138821','','','2022-05-04 18:23:20','2022-05-04 22:23:20','',3792,'https://www.translucentcomputing.com/?post_type=acf-field&p=3793',0,'acf-field','',0),(3794,20,'2022-05-04 18:23:20','2022-05-04 22:23:20','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Column 1','column_1','publish','closed','closed','','field_62554d45172dc','','','2022-05-04 18:23:20','2022-05-04 22:23:20','',3792,'https://www.translucentcomputing.com/?post_type=acf-field&p=3794',1,'acf-field','',0),(3795,20,'2022-05-04 18:23:20','2022-05-04 22:23:20','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Heading 2','heading_2','publish','closed','closed','','field_62568a29727b5','','','2022-05-04 18:23:20','2022-05-04 22:23:20','',3792,'https://www.translucentcomputing.com/?post_type=acf-field&p=3795',2,'acf-field','',0),(3796,20,'2022-05-04 18:23:20','2022-05-04 22:23:20','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Column 2','column_2','publish','closed','closed','','field_62554d4a172dd','','','2022-05-04 18:23:20','2022-05-04 22:23:20','',3792,'https://www.translucentcomputing.com/?post_type=acf-field&p=3796',3,'acf-field','',0),(3797,20,'2022-05-04 18:23:20','2022-05-04 22:23:20','a:8:{s:4:\"type\";s:12:\"color_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:14:\"enable_opacity\";i:0;s:13:\"return_format\";s:6:\"string\";}','Column 2 Color','column_2_color','publish','closed','closed','','field_62554fcda0e79','','','2022-05-04 18:23:20','2022-05-04 22:23:20','',3792,'https://www.translucentcomputing.com/?post_type=acf-field&p=3797',4,'acf-field','',0),(3798,20,'2022-05-04 18:23:21','2022-05-04 22:23:21','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Heading 3','heading_3','publish','closed','closed','','field_62568a30727b6','','','2022-05-04 18:23:21','2022-05-04 22:23:21','',3792,'https://www.translucentcomputing.com/?post_type=acf-field&p=3798',5,'acf-field','',0),(3799,20,'2022-05-04 18:23:21','2022-05-04 22:23:21','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Column 3','column_3','publish','closed','closed','','field_62554d4d172de','','','2022-05-04 18:23:21','2022-05-04 22:23:21','',3792,'https://www.translucentcomputing.com/?post_type=acf-field&p=3799',6,'acf-field','',0),(3800,20,'2022-05-04 18:23:21','2022-05-04 22:23:21','a:8:{s:4:\"type\";s:12:\"color_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:14:\"enable_opacity\";i:0;s:13:\"return_format\";s:6:\"string\";}','Column 3 Color','column_3_color','publish','closed','closed','','field_62554ff6a0e7a','','','2022-05-04 18:23:21','2022-05-04 22:23:21','',3792,'https://www.translucentcomputing.com/?post_type=acf-field&p=3800',7,'acf-field','',0),(3801,20,'2022-05-04 18:23:21','2022-05-04 22:23:21','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Heading 4','heading_4','publish','closed','closed','','field_62568a37727b7','','','2022-05-04 18:23:21','2022-05-04 22:23:21','',3792,'https://www.translucentcomputing.com/?post_type=acf-field&p=3801',8,'acf-field','',0),(3802,20,'2022-05-04 18:23:21','2022-05-04 22:23:21','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Column 4','column_4','publish','closed','closed','','field_62554d4f172df','','','2022-05-04 18:23:21','2022-05-04 22:23:21','',3792,'https://www.translucentcomputing.com/?post_type=acf-field&p=3802',9,'acf-field','',0),(3803,20,'2022-05-04 18:23:22','2022-05-04 22:23:22','a:8:{s:4:\"type\";s:12:\"color_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:14:\"enable_opacity\";i:0;s:13:\"return_format\";s:6:\"string\";}','Column 4 Color','column_4_color','publish','closed','closed','','field_62555028a0e7c','','','2022-05-04 18:23:22','2022-05-04 22:23:22','',3792,'https://www.translucentcomputing.com/?post_type=acf-field&p=3803',10,'acf-field','',0),(3804,20,'2022-05-04 18:23:22','2022-05-04 22:23:22','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Heading 5','heading_5','publish','closed','closed','','field_62568a40727b8','','','2022-05-04 18:23:22','2022-05-04 22:23:22','',3792,'https://www.translucentcomputing.com/?post_type=acf-field&p=3804',11,'acf-field','',0),(3805,20,'2022-05-04 18:23:22','2022-05-04 22:23:22','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Column 5','column_5','publish','closed','closed','','field_62555011a0e7b','','','2022-05-04 18:23:22','2022-05-04 22:23:22','',3792,'https://www.translucentcomputing.com/?post_type=acf-field&p=3805',12,'acf-field','',0),(3806,20,'2022-05-04 18:23:22','2022-05-04 22:23:22','a:8:{s:4:\"type\";s:12:\"color_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:14:\"enable_opacity\";i:0;s:13:\"return_format\";s:6:\"string\";}','Column 5 Color','column_5_color','publish','closed','closed','','field_6255503aa0e7d','','','2022-05-04 18:23:22','2022-05-04 22:23:22','',3792,'https://www.translucentcomputing.com/?post_type=acf-field&p=3806',13,'acf-field','',0),(3807,20,'2022-05-04 18:23:22','2022-05-04 22:23:22','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_625565214146c\";}','Heading','heading','publish','closed','closed','','field_625565e14146d','','','2022-05-04 18:23:22','2022-05-04 22:23:22','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3807',0,'acf-field','',0),(3808,20,'2022-05-04 18:23:22','2022-05-04 22:23:22','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b3e101c4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_625565214146c\";}','CTA','cta','publish','closed','closed','','field_625565fa4146e','','','2022-05-04 18:23:22','2022-05-04 22:23:22','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3808',1,'acf-field','',0),(3809,20,'2022-05-04 18:23:23','2022-05-04 22:23:23','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc5efa2a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62569ad0f7c62\";}','Backgroud','backgroud','publish','closed','closed','','field_62569b35f7c63','','','2022-05-04 18:23:23','2022-05-04 22:23:23','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3809',0,'acf-field','',0),(3810,20,'2022-05-04 18:23:23','2022-05-04 22:23:23','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62550482480cb\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62569ad0f7c62\";}','Icon','icon','publish','closed','closed','','field_62569b69f7c64','','','2022-05-04 18:23:23','2022-05-04 22:23:23','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3810',1,'acf-field','',0),(3811,20,'2022-05-04 18:23:23','2022-05-04 22:23:23','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62569ad0f7c62\";}','Heading','heading','publish','closed','closed','','field_62569b87f7c65','','','2022-05-04 18:23:23','2022-05-04 22:23:23','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3811',2,'acf-field','',0),(3812,20,'2022-05-04 18:23:23','2022-05-04 22:23:23','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdbaefa28\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62569ad0f7c62\";}','Sub Heading','sub_heading','publish','closed','closed','','field_62569ba5f7c66','','','2022-05-04 18:23:23','2022-05-04 22:23:23','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3812',3,'acf-field','',0),(3813,20,'2022-05-04 18:23:23','2022-05-04 22:23:23','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b3e101c4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62569ad0f7c62\";}','CTA','cta','publish','closed','closed','','field_62569bcff7c67','','','2022-05-04 18:23:23','2022-05-04 22:23:23','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3813',4,'acf-field','',0),(3814,20,'2022-05-04 18:23:24','2022-05-04 22:23:24','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc5efa2a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62569f093c0ac\";}','Image','image','publish','closed','closed','','field_6256a05dda66c','','','2022-05-04 18:23:24','2022-05-04 22:23:24','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3814',0,'acf-field','',0),(3815,20,'2022-05-04 18:23:24','2022-05-04 22:23:24','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62569f093c0ac\";}','Heading','heading','publish','closed','closed','','field_62569f6d3c0ad','','','2022-05-04 18:23:24','2022-05-04 22:23:24','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3815',1,'acf-field','',0),(3816,20,'2022-05-04 18:23:24','2022-05-04 22:23:24','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdbaefa28\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62569f093c0ac\";}','Sub Heading','sub_heading','publish','closed','closed','','field_62569f7a3c0ae','','','2022-05-04 18:23:24','2022-05-04 22:23:24','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3816',2,'acf-field','',0),(3817,20,'2022-05-04 18:23:24','2022-05-04 22:23:24','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc0efa29\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62569f093c0ac\";}','Copy','copy','publish','closed','closed','','field_6256a175dc200','','','2022-05-04 18:23:24','2022-05-04 22:23:24','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3817',3,'acf-field','',0),(3818,20,'2022-05-04 18:23:24','2022-05-04 22:23:24','a:11:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";s:13:\"parent_layout\";s:20:\"layout_62569f093c0ac\";}','Copy Long','copy_long','publish','closed','closed','','field_6256a026da66a','','','2022-05-04 18:23:24','2022-05-04 22:23:24','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3818',4,'acf-field','',0),(3819,20,'2022-05-04 18:23:25','2022-05-04 22:23:25','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b3e101c4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_62569f093c0ac\";}','CTA','cta','publish','closed','closed','','field_6256a03ada66b','','','2022-05-04 18:23:25','2022-05-04 22:23:25','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3819',5,'acf-field','',0),(3820,20,'2022-05-04 18:23:25','2022-05-04 22:23:25','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6256a613dea7b\";}','Heading','heading','publish','closed','closed','','field_6256a640dea7c','','','2022-05-04 18:23:25','2022-05-04 22:23:25','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3820',0,'acf-field','',0),(3821,20,'2022-05-04 18:23:25','2022-05-04 22:23:25','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdbaefa28\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6256a613dea7b\";}','Sub Heading','sub_heading_','publish','closed','closed','','field_6256a66cdea7d','','','2022-05-04 18:23:25','2022-05-04 22:23:25','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3821',1,'acf-field','',0),(3822,20,'2022-05-04 18:23:25','2022-05-04 22:23:25','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:0:\"\";s:13:\"parent_layout\";s:20:\"layout_6256a613dea7b\";}','Posts Grid','posts_grid','publish','closed','closed','','field_6256a698dea7e','','','2022-05-04 18:23:25','2022-05-04 22:23:25','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3822',2,'acf-field','',0),(3823,20,'2022-05-04 18:23:25','2022-05-04 22:23:25','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62550482480cb\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','icon','icon','publish','closed','closed','','field_6256a6c0dea7f','','','2022-05-04 18:23:25','2022-05-04 22:23:25','',3822,'https://www.translucentcomputing.com/?post_type=acf-field&p=3823',0,'acf-field','',0),(3824,20,'2022-05-04 18:23:26','2022-05-04 22:23:26','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Heading','heading','publish','closed','closed','','field_6256a6d9dea80','','','2022-05-04 18:23:26','2022-05-04 22:23:26','',3822,'https://www.translucentcomputing.com/?post_type=acf-field&p=3824',1,'acf-field','',0),(3825,20,'2022-05-04 18:23:26','2022-05-04 22:23:26','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc0efa29\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Copy','copy','publish','closed','closed','','field_6256a6ebdea81','','','2022-05-04 18:23:26','2022-05-04 22:23:26','',3822,'https://www.translucentcomputing.com/?post_type=acf-field&p=3825',2,'acf-field','',0),(3826,20,'2022-05-04 18:23:26','2022-05-04 22:23:26','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b3e101c4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','CTA','cta','publish','closed','closed','','field_6256a6f8dea82','','','2022-05-04 18:23:26','2022-05-04 22:23:26','',3822,'https://www.translucentcomputing.com/?post_type=acf-field&p=3826',3,'acf-field','',0),(3827,20,'2022-05-04 18:23:26','2022-05-04 22:23:26','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b3e101c4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6256a613dea7b\";}','CTA','cta','publish','closed','closed','','field_6256a725dea83','','','2022-05-04 18:23:26','2022-05-04 22:23:26','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3827',3,'acf-field','',0),(3828,20,'2022-05-04 18:23:26','2022-05-04 22:23:26','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6256a9f161879\";}','Heading','heading','publish','closed','closed','','field_6256aa0c6187a','','','2022-05-04 18:23:26','2022-05-04 22:23:26','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3828',0,'acf-field','',0),(3829,20,'2022-05-04 18:23:27','2022-05-04 22:23:27','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:0:\"\";s:13:\"parent_layout\";s:20:\"layout_6256a9f161879\";}','Scale Demands','scale_demands','publish','closed','closed','','field_6256aa366187b','','','2022-05-04 18:23:27','2022-05-04 22:23:27','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3829',1,'acf-field','',0),(3830,20,'2022-05-04 18:23:27','2022-05-04 22:23:27','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62550482480cb\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Icon','icon','publish','closed','closed','','field_6256aa4e6187c','','','2022-05-04 18:23:27','2022-05-04 22:23:27','',3829,'https://www.translucentcomputing.com/?post_type=acf-field&p=3830',0,'acf-field','',0),(3831,20,'2022-05-04 18:23:27','2022-05-04 22:23:27','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Heading','heading','publish','closed','closed','','field_6256aa866187d','','','2022-05-04 18:23:27','2022-05-04 22:23:27','',3829,'https://www.translucentcomputing.com/?post_type=acf-field&p=3831',1,'acf-field','',0),(3832,20,'2022-05-04 18:23:27','2022-05-04 22:23:27','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc0efa29\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Copy','copy','publish','closed','closed','','field_6256aa986187e','','','2022-05-04 18:23:27','2022-05-04 22:23:27','',3829,'https://www.translucentcomputing.com/?post_type=acf-field&p=3832',2,'acf-field','',0),(3833,20,'2022-05-04 18:23:27','2022-05-04 22:23:27','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b3e101c4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','CTA','cta','publish','closed','closed','','field_6256aab66187f','','','2022-05-04 18:23:27','2022-05-04 22:23:27','',3829,'https://www.translucentcomputing.com/?post_type=acf-field&p=3833',3,'acf-field','',0),(3834,20,'2022-05-04 18:23:27','2022-05-04 22:23:27','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6256ac9ff89e3\";}','Heading','heading','publish','closed','closed','','field_6256acb5f89e4','','','2022-05-04 18:23:27','2022-05-04 22:23:27','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3834',0,'acf-field','',0),(3835,20,'2022-05-04 18:23:28','2022-05-04 22:23:28','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdbaefa28\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6256ac9ff89e3\";}','Sub Heading','syb_heading','publish','closed','closed','','field_6256acc6f89e5','','','2022-05-04 18:23:28','2022-05-04 22:23:28','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3835',1,'acf-field','',0),(3836,20,'2022-05-04 18:23:28','2022-05-04 22:23:28','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62550482480cb\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6256ac9ff89e3\";}','Centre Image (Icon)','centre_image','publish','closed','closed','','field_6256db0a20c28','','','2022-05-04 18:23:28','2022-05-04 22:23:28','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3836',2,'acf-field','',0),(3837,20,'2022-05-04 18:23:28','2022-05-04 22:23:28','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc5efa2a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6256ac9ff89e3\";}','Centre Image Mobile','centre_image_mobile','publish','closed','closed','','field_6257293fdf3c8','','','2022-05-04 18:23:28','2022-05-04 22:23:28','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3837',3,'acf-field','',0),(3838,20,'2022-05-04 18:23:28','2022-05-04 22:23:28','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:0:\"\";s:13:\"parent_layout\";s:20:\"layout_6256ac9ff89e3\";}','Technology','technology','publish','closed','closed','','field_6256acf8f89e6','','','2022-05-04 18:23:28','2022-05-04 22:23:28','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3838',4,'acf-field','',0),(3839,20,'2022-05-04 18:23:28','2022-05-04 22:23:28','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Heading','heading','publish','closed','closed','','field_6256ad09f89e7','','','2022-05-04 18:23:28','2022-05-04 22:23:28','',3838,'https://www.translucentcomputing.com/?post_type=acf-field&p=3839',0,'acf-field','',0),(3840,20,'2022-05-04 18:23:29','2022-05-04 22:23:29','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdbaefa28\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Sub Heading','sub_heading','publish','closed','closed','','field_6256ad33f89e8','','','2022-05-04 18:23:29','2022-05-04 22:23:29','',3838,'https://www.translucentcomputing.com/?post_type=acf-field&p=3840',1,'acf-field','',0),(3841,20,'2022-05-04 18:23:29','2022-05-04 22:23:29','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc0efa29\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Copy','copy','publish','closed','closed','','field_6256ada6f89ea','','','2022-05-04 18:23:29','2022-05-04 22:23:29','',3838,'https://www.translucentcomputing.com/?post_type=acf-field&p=3841',2,'acf-field','',0),(3842,20,'2022-05-04 18:23:29','2022-05-04 22:23:29','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Back Heading','back_heading','publish','closed','closed','','field_6256b2b61a441','','','2022-05-04 18:23:29','2022-05-04 22:23:29','',3838,'https://www.translucentcomputing.com/?post_type=acf-field&p=3842',3,'acf-field','',0),(3843,20,'2022-05-04 18:23:29','2022-05-04 22:23:29','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62550482480cb\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Icon','icon','publish','closed','closed','','field_6256b2be1a442','','','2022-05-04 18:23:29','2022-05-04 22:23:29','',3838,'https://www.translucentcomputing.com/?post_type=acf-field&p=3843',4,'acf-field','',0),(3844,20,'2022-05-04 18:23:29','2022-05-04 22:23:29','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Back Copy','back_copy','publish','closed','closed','','field_6256b2e31a443','','','2022-05-04 18:23:29','2022-05-04 22:23:29','',3838,'https://www.translucentcomputing.com/?post_type=acf-field&p=3844',5,'acf-field','',0),(3845,20,'2022-05-04 18:23:30','2022-05-04 22:23:30','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc5efa2a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Image','image','publish','closed','closed','','field_6256b3011a444','','','2022-05-04 18:23:30','2022-05-04 22:23:30','',3838,'https://www.translucentcomputing.com/?post_type=acf-field&p=3845',6,'acf-field','',0),(3846,20,'2022-05-04 18:23:30','2022-05-04 22:23:30','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b3e101c4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','CTA','cta','publish','closed','closed','','field_6256ad66f89e9','','','2022-05-04 18:23:30','2022-05-04 22:23:30','',3838,'https://www.translucentcomputing.com/?post_type=acf-field&p=3846',7,'acf-field','',0),(3847,20,'2022-05-04 18:23:30','2022-05-04 22:23:30','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc5efa2a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6256dbbbc0c82\";}','Image','image','publish','closed','closed','','field_6256dbdfc0c83','','','2022-05-04 18:23:30','2022-05-04 22:23:30','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3847',0,'acf-field','',0),(3848,20,'2022-05-04 18:23:30','2022-05-04 22:23:30','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdcbefa2b\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6256dbbbc0c82\";}','Mob Image','mob_image','publish','closed','closed','','field_6256dbeec0c84','','','2022-05-04 18:23:30','2022-05-04 22:23:30','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3848',1,'acf-field','',0),(3849,20,'2022-05-04 18:23:30','2022-05-04 22:23:30','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6256dbbbc0c82\";}','Heading','heading','publish','closed','closed','','field_6256dc0cc0c85','','','2022-05-04 18:23:30','2022-05-04 22:23:30','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3849',2,'acf-field','',0),(3850,20,'2022-05-04 18:23:31','2022-05-04 22:23:31','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:0:\"\";s:13:\"parent_layout\";s:20:\"layout_6256dbbbc0c82\";}','Technology Partner','technology_partner','publish','closed','closed','','field_6256dc3fc0c86','','','2022-05-04 18:23:31','2022-05-04 22:23:31','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3850',3,'acf-field','',0),(3851,20,'2022-05-04 18:23:31','2022-05-04 22:23:31','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Heading','heading','publish','closed','closed','','field_6256dc62c0c87','','','2022-05-04 18:23:31','2022-05-04 22:23:31','',3850,'https://www.translucentcomputing.com/?post_type=acf-field&p=3851',0,'acf-field','',0),(3852,20,'2022-05-04 18:23:31','2022-05-04 22:23:31','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62550482480cb\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Icon','icon','publish','closed','closed','','field_6256dc78c0c88','','','2022-05-04 18:23:31','2022-05-04 22:23:31','',3850,'https://www.translucentcomputing.com/?post_type=acf-field&p=3852',1,'acf-field','',0),(3853,20,'2022-05-04 18:23:31','2022-05-04 22:23:31','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc0efa29\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Copy','copy','publish','closed','closed','','field_6256dc8bc0c89','','','2022-05-04 18:23:31','2022-05-04 22:23:31','',3850,'https://www.translucentcomputing.com/?post_type=acf-field&p=3853',2,'acf-field','',0),(3854,20,'2022-05-04 18:23:31','2022-05-04 22:23:31','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_625732eb5d791\";}','Heading','heading','publish','closed','closed','','field_625733105d792','','','2022-05-04 18:23:31','2022-05-04 22:23:31','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3854',0,'acf-field','',0),(3855,20,'2022-05-04 18:23:32','2022-05-04 22:23:32','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6255310ecf4de\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_625732eb5d791\";}','Copy','copy','publish','closed','closed','','field_625733205d793','','','2022-05-04 18:23:32','2022-05-04 22:23:32','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3855',1,'acf-field','',0),(3856,20,'2022-05-04 18:23:32','2022-05-04 22:23:32','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc5efa2a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_625732eb5d791\";}','Image','image','publish','closed','closed','','field_625733375d794','','','2022-05-04 18:23:32','2022-05-04 22:23:32','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3856',2,'acf-field','',0),(3857,20,'2022-05-04 18:23:32','2022-05-04 22:23:32','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62550482480cb\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_625732eb5d791\";}','Icon','icon','publish','closed','closed','','field_625733495d795','','','2022-05-04 18:23:32','2022-05-04 22:23:32','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3857',3,'acf-field','',0),(3858,20,'2022-05-04 18:23:32','2022-05-04 22:23:32','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:13:\"parent_layout\";s:20:\"layout_625732eb5d791\";}','Sick Kids Text','sick_kids_text','publish','closed','closed','','field_62573ad019bd0','','','2022-05-04 18:23:32','2022-05-04 22:23:32','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3858',4,'acf-field','',0),(3859,20,'2022-05-04 18:23:32','2022-05-04 22:23:32','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:13:\"parent_layout\";s:20:\"layout_625732eb5d791\";}','TEK Stack Case','tek_stack_case','publish','closed','closed','','field_625733b05d797','','','2022-05-04 18:23:32','2022-05-04 22:23:32','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3859',5,'acf-field','',0),(3860,20,'2022-05-04 18:23:33','2022-05-04 22:23:33','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b3e101c4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_625732eb5d791\";}','CTA','cta','publish','closed','closed','','field_625733895d796','','','2022-05-04 18:23:33','2022-05-04 22:23:33','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3860',6,'acf-field','',0),(3861,20,'2022-05-04 18:23:33','2022-05-04 22:23:33','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc5efa2a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257babb27dca\";}','Background Image','background_image','publish','closed','closed','','field_6257bb6127dce','','','2022-05-04 18:23:33','2022-05-04 22:23:33','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3861',0,'acf-field','',0),(3862,20,'2022-05-04 18:23:33','2022-05-04 22:23:33','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257babb27dca\";}','Heading','heading','publish','closed','closed','','field_6257bb2027dcb','','','2022-05-04 18:23:33','2022-05-04 22:23:33','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3862',1,'acf-field','',0),(3863,20,'2022-05-04 18:23:33','2022-05-04 22:23:33','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdbaefa28\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257babb27dca\";}','Sub Heading','sub_heading','publish','closed','closed','','field_6257bb3a27dcc','','','2022-05-04 18:23:33','2022-05-04 22:23:33','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3863',2,'acf-field','',0),(3864,20,'2022-05-04 18:23:33','2022-05-04 22:23:33','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62550482480cb\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257babb27dca\";}','Icon','icon','publish','closed','closed','','field_6257bb5127dcd','','','2022-05-04 18:23:33','2022-05-04 22:23:33','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3864',3,'acf-field','',0),(3865,20,'2022-05-04 18:23:33','2022-05-04 22:23:33','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b3e101c4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257babb27dca\";}','CTA','cta','publish','closed','closed','','field_6257bb7d27dcf','','','2022-05-04 18:23:33','2022-05-04 22:23:33','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3865',4,'acf-field','',0),(3866,20,'2022-05-04 18:23:34','2022-05-04 22:23:34','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257bdba45e42\";}','Heading','heading','publish','closed','closed','','field_6257bde945e43','','','2022-05-04 18:23:34','2022-05-04 22:23:34','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3866',0,'acf-field','',0),(3867,20,'2022-05-04 18:23:34','2022-05-04 22:23:34','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdbaefa28\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257bdba45e42\";}','Sub Heading','heading_copy','publish','closed','closed','','field_6257bdf945e44','','','2022-05-04 18:23:34','2022-05-04 22:23:34','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3867',1,'acf-field','',0),(3868,20,'2022-05-04 18:23:34','2022-05-04 22:23:34','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc0efa29\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257bdba45e42\";}','Content / Copy','content__copy','publish','closed','closed','','field_6257be1045e45','','','2022-05-04 18:23:34','2022-05-04 22:23:34','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3868',2,'acf-field','',0),(3869,20,'2022-05-04 18:23:34','2022-05-04 22:23:34','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc5efa2a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257bdba45e42\";}','Image','image','publish','closed','closed','','field_6257be2845e46','','','2022-05-04 18:23:34','2022-05-04 22:23:34','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3869',3,'acf-field','',0),(3870,20,'2022-05-04 18:23:35','2022-05-04 22:23:35','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:0:\"\";s:13:\"parent_layout\";s:20:\"layout_6257c2f0705f8\";}','Stack Process Team','stack_process_team','publish','closed','closed','','field_6257c35c705f9','','','2022-05-04 18:23:35','2022-05-04 22:23:35','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3870',0,'acf-field','',0),(3871,20,'2022-05-04 18:23:35','2022-05-04 22:23:35','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62550482480cb\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Icon','icon','publish','closed','closed','','field_6257c3a4705fa','','','2022-05-04 18:23:35','2022-05-04 22:23:35','',3870,'https://www.translucentcomputing.com/?post_type=acf-field&p=3871',0,'acf-field','',0),(3872,20,'2022-05-04 18:23:35','2022-05-04 22:23:35','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Heading','heading','publish','closed','closed','','field_6257c3e8705fb','','','2022-05-04 18:23:35','2022-05-04 22:23:35','',3870,'https://www.translucentcomputing.com/?post_type=acf-field&p=3872',1,'acf-field','',0),(3873,20,'2022-05-04 18:23:35','2022-05-04 22:23:35','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6255310ecf4de\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Copy','copy','publish','closed','closed','','field_6257c3fb705fc','','','2022-05-04 18:23:35','2022-05-04 22:23:35','',3870,'https://www.translucentcomputing.com/?post_type=acf-field&p=3873',2,'acf-field','',0),(3874,20,'2022-05-04 18:23:35','2022-05-04 22:23:35','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b3e101c4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','CTA','cta','publish','closed','closed','','field_6257c421705fd','','','2022-05-04 18:23:35','2022-05-04 22:23:35','',3870,'https://www.translucentcomputing.com/?post_type=acf-field&p=3874',3,'acf-field','',0),(3875,20,'2022-05-04 18:23:35','2022-05-04 22:23:35','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257cf791672f\";}','Heading','heading','publish','closed','closed','','field_6257cf9016730','','','2022-05-04 18:23:35','2022-05-04 22:23:35','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3875',0,'acf-field','',0),(3876,20,'2022-05-04 18:23:36','2022-05-04 22:23:36','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdbaefa28\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257cf791672f\";}','Sub Heading','sub_heading','publish','closed','closed','','field_6257cf9d16731','','','2022-05-04 18:23:36','2022-05-04 22:23:36','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3876',1,'acf-field','',0),(3877,20,'2022-05-04 18:23:36','2022-05-04 22:23:36','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc0efa29\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257cf791672f\";}','Copy','copy','publish','closed','closed','','field_6257cfab16732','','','2022-05-04 18:23:36','2022-05-04 22:23:36','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3877',2,'acf-field','',0),(3878,20,'2022-05-04 18:23:36','2022-05-04 22:23:36','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b3e101c4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257cf791672f\";}','CTA','cta','publish','closed','closed','','field_6257cfc216733','','','2022-05-04 18:23:36','2022-05-04 22:23:36','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3878',3,'acf-field','',0),(3879,20,'2022-05-04 18:23:36','2022-05-04 22:23:36','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc5efa2a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257cf791672f\";}','Image','image','publish','closed','closed','','field_6257d00f54444','','','2022-05-04 18:23:36','2022-05-04 22:23:36','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3879',4,'acf-field','',0),(3880,20,'2022-05-04 18:23:36','2022-05-04 22:23:36','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257df4a78147\";}','Heading','heading','publish','closed','closed','','field_6257e09378148','','','2022-05-04 18:23:36','2022-05-04 22:23:36','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3880',0,'acf-field','',0),(3881,20,'2022-05-04 18:23:37','2022-05-04 22:23:37','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdbaefa28\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257df4a78147\";}','Sub Heading','heading_copy','publish','closed','closed','','field_6257e0a878149','','','2022-05-04 18:23:37','2022-05-04 22:23:37','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3881',1,'acf-field','',0),(3882,20,'2022-05-04 18:23:37','2022-05-04 22:23:37','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc0efa29\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257df4a78147\";}','Copy','copy','publish','closed','closed','','field_6257e55e006ca','','','2022-05-04 18:23:37','2022-05-04 22:23:37','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3882',2,'acf-field','',0),(3883,20,'2022-05-04 18:23:37','2022-05-04 22:23:37','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc5efa2a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257df4a78147\";}','Image','image','publish','closed','closed','','field_6257e0e87814a','','','2022-05-04 18:23:37','2022-05-04 22:23:37','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3883',3,'acf-field','',0),(3884,20,'2022-05-04 18:23:37','2022-05-04 22:23:37','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdcbefa2b\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257df4a78147\";}','Mob Image','image_copy','publish','closed','closed','','field_6257e1057814b','','','2022-05-04 18:23:37','2022-05-04 22:23:37','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3884',4,'acf-field','',0),(3885,20,'2022-05-04 18:23:37','2022-05-04 22:23:37','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b3e101c4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257df4a78147\";}','CTA','cta','publish','closed','closed','','field_6257e1367814c','','','2022-05-04 18:23:37','2022-05-04 22:23:37','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3885',5,'acf-field','',0),(3886,20,'2022-05-04 18:23:38','2022-05-04 22:23:38','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257e913b4ea6\";}','Heading','heading','publish','closed','closed','','field_6257e9c8b4ea7','','','2022-05-04 18:23:38','2022-05-04 22:23:38','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3886',0,'acf-field','',0),(3887,20,'2022-05-04 18:23:38','2022-05-04 22:23:38','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdbaefa28\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257e913b4ea6\";}','Sub Heading','heading_copy','publish','closed','closed','','field_6257e9d9b4ea8','','','2022-05-04 18:23:38','2022-05-04 22:23:38','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3887',1,'acf-field','',0),(3888,20,'2022-05-04 18:23:38','2022-05-04 22:23:38','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257e8ffb4ea5\";}','Heading','heading','publish','closed','closed','','field_62590b7cdf000','','','2022-05-04 18:23:38','2022-05-04 22:23:38','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3888',0,'acf-field','',0),(3889,20,'2022-05-04 18:23:38','2022-05-04 22:23:38','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdbaefa28\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257e8ffb4ea5\";}','Sub Heading','sub_heading','publish','closed','closed','','field_62590b8bdf001','','','2022-05-04 18:23:38','2022-05-04 22:23:38','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3889',1,'acf-field','',0),(3890,20,'2022-05-04 18:23:38','2022-05-04 22:23:38','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62550482480cb\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;s:13:\"parent_layout\";s:20:\"layout_6257e8ffb4ea5\";}','icon','icon','publish','closed','closed','','field_62590bc5df002','','','2022-05-04 18:23:38','2022-05-04 22:23:38','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3890',2,'acf-field','',0),(3891,20,'2022-05-04 18:23:39','2022-05-04 22:23:39','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";s:13:\"parent_layout\";s:20:\"layout_6257e8ffb4ea5\";}','Differential Translucent Header','differential_translucent_header','publish','closed','closed','','field_62590bf9df003','','','2022-05-04 18:23:39','2022-05-04 22:23:39','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3891',3,'acf-field','',0),(3892,20,'2022-05-04 18:23:39','2022-05-04 22:23:39','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Heading','heading','publish','closed','closed','','field_62590c01df004','','','2022-05-04 18:23:39','2022-05-04 22:23:39','',3891,'https://www.translucentcomputing.com/?post_type=acf-field&p=3892',0,'acf-field','',0),(3893,20,'2022-05-04 18:23:39','2022-05-04 22:23:39','a:8:{s:4:\"type\";s:12:\"color_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:14:\"enable_opacity\";i:0;s:13:\"return_format\";s:6:\"string\";}','Color','color','publish','closed','closed','','field_62590c11df005','','','2022-05-04 18:23:39','2022-05-04 22:23:39','',3891,'https://www.translucentcomputing.com/?post_type=acf-field&p=3893',1,'acf-field','',0),(3894,20,'2022-05-04 18:23:39','2022-05-04 22:23:39','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:19:\"field_62554d45172dc\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";s:13:\"parent_layout\";s:20:\"layout_6257e8ffb4ea5\";}','Differential Translucent','differential_translucent','publish','closed','closed','','field_62590c30df006','','','2022-05-04 18:23:39','2022-05-04 22:23:39','',3740,'https://www.translucentcomputing.com/?post_type=acf-field&p=3894',4,'acf-field','',0),(3895,20,'2022-05-04 18:23:39','2022-05-04 22:23:39','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Column 1','column_1','publish','closed','closed','','field_62590c30df008','','','2022-05-04 18:23:39','2022-05-04 22:23:39','',3894,'https://www.translucentcomputing.com/?post_type=acf-field&p=3895',0,'acf-field','',0),(3896,20,'2022-05-04 18:23:40','2022-05-04 22:23:40','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Column 2','column_2','publish','closed','closed','','field_62590c30df00a','','','2022-05-04 18:23:40','2022-05-04 22:23:40','',3894,'https://www.translucentcomputing.com/?post_type=acf-field&p=3896',1,'acf-field','',0),(3897,20,'2022-05-04 18:23:40','2022-05-04 22:23:40','a:8:{s:4:\"type\";s:12:\"color_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:14:\"enable_opacity\";i:0;s:13:\"return_format\";s:6:\"string\";}','Column 2 Color','column_2_color','publish','closed','closed','','field_62590c30df00b','','','2022-05-04 18:23:40','2022-05-04 22:23:40','',3894,'https://www.translucentcomputing.com/?post_type=acf-field&p=3897',2,'acf-field','',0),(3898,20,'2022-05-04 18:23:40','2022-05-04 22:23:40','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Column 3','column_3','publish','closed','closed','','field_62590c30df00d','','','2022-05-04 18:23:40','2022-05-04 22:23:40','',3894,'https://www.translucentcomputing.com/?post_type=acf-field&p=3898',3,'acf-field','',0),(3899,20,'2022-05-04 18:23:40','2022-05-04 22:23:40','a:8:{s:4:\"type\";s:12:\"color_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:14:\"enable_opacity\";i:0;s:13:\"return_format\";s:6:\"string\";}','Column 3 Color','column_3_color','publish','closed','closed','','field_62590c30df00e','','','2022-05-04 18:23:40','2022-05-04 22:23:40','',3894,'https://www.translucentcomputing.com/?post_type=acf-field&p=3899',4,'acf-field','',0),(3900,20,'2022-05-04 18:23:40','2022-05-04 22:23:40','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Column 4','column_4','publish','closed','closed','','field_62590c30df010','','','2022-05-04 18:23:40','2022-05-04 22:23:40','',3894,'https://www.translucentcomputing.com/?post_type=acf-field&p=3900',5,'acf-field','',0),(3901,20,'2022-05-04 18:23:41','2022-05-04 22:23:41','a:8:{s:4:\"type\";s:12:\"color_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:14:\"enable_opacity\";i:0;s:13:\"return_format\";s:6:\"string\";}','Column 4 Color','column_4_color','publish','closed','closed','','field_62590c30df011','','','2022-05-04 18:23:41','2022-05-04 22:23:41','',3894,'https://www.translucentcomputing.com/?post_type=acf-field&p=3901',6,'acf-field','',0),(3902,20,'2022-05-04 18:23:41','2022-05-04 22:23:41','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Column 5','column_5','publish','closed','closed','','field_62590c30df013','','','2022-05-04 18:23:41','2022-05-04 22:23:41','',3894,'https://www.translucentcomputing.com/?post_type=acf-field&p=3902',7,'acf-field','',0),(3903,20,'2022-05-04 18:23:41','2022-05-04 22:23:41','a:8:{s:4:\"type\";s:12:\"color_picker\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:14:\"enable_opacity\";i:0;s:13:\"return_format\";s:6:\"string\";}','Column 5 Color','column_5_color','publish','closed','closed','','field_62590c30df014','','','2022-05-04 18:23:41','2022-05-04 22:23:41','',3894,'https://www.translucentcomputing.com/?post_type=acf-field&p=3903',8,'acf-field','',0),(3904,20,'2022-05-04 18:23:45','2022-05-04 22:23:45','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:12:\"options_page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:18:\"acf-options-footer\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Footer Options','footer-options','publish','closed','closed','','group_626a56cd35fc9','','','2022-05-04 18:23:45','2022-05-04 22:23:45','',0,'https://www.translucentcomputing.com/?p=3904',0,'acf-field-group','',0),(3905,20,'2022-05-04 18:23:41','2022-05-04 22:23:41','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Logo Copyright Social','','publish','closed','closed','','field_626a888354898','','','2022-05-04 18:23:41','2022-05-04 22:23:41','',3904,'https://www.translucentcomputing.com/?post_type=acf-field&p=3905',0,'acf-field','',0),(3906,20,'2022-05-04 18:23:42','2022-05-04 22:23:42','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Footer Logo','footer_logo','publish','closed','closed','','field_626a56e00753b','','','2022-05-04 18:23:42','2022-05-04 22:23:42','',3904,'https://www.translucentcomputing.com/?post_type=acf-field&p=3906',1,'acf-field','',0),(3907,20,'2022-05-04 18:23:42','2022-05-04 22:23:42','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Partnerships & Certifications Label','partnerships_&_certifications_label','publish','closed','closed','','field_626a57234e71f','','','2022-05-04 18:23:42','2022-05-04 22:23:42','',3904,'https://www.translucentcomputing.com/?post_type=acf-field&p=3907',2,'acf-field','',0),(3908,20,'2022-05-04 18:23:42','2022-05-04 22:23:42','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Partnerships & Certifications','partnerships_certifications','publish','closed','closed','','field_626a570e4e71d','','','2022-05-04 18:23:42','2022-05-04 22:23:42','',3904,'https://www.translucentcomputing.com/?post_type=acf-field&p=3908',3,'acf-field','',0),(3909,20,'2022-05-04 18:23:42','2022-05-04 22:23:42','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Images','images','publish','closed','closed','','field_626a571c4e71e','','','2022-05-04 18:23:42','2022-05-04 22:23:42','',3908,'https://www.translucentcomputing.com/?post_type=acf-field&p=3909',0,'acf-field','',0),(3910,20,'2022-05-04 18:23:42','2022-05-04 22:23:42','a:6:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";}','CTA','cta','publish','closed','closed','','field_626a6285f4e18','','','2022-05-04 18:23:42','2022-05-04 22:23:42','',3908,'https://www.translucentcomputing.com/?post_type=acf-field&p=3910',1,'acf-field','',0),(3911,20,'2022-05-04 18:23:43','2022-05-04 22:23:43','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Class ( FOR DEVELOPMENT PURPOSE ONLY)','class','publish','closed','closed','','field_626a63ec6f364','','','2022-05-04 18:23:43','2022-05-04 22:23:43','',3908,'https://www.translucentcomputing.com/?post_type=acf-field&p=3911',2,'acf-field','',0),(3912,20,'2022-05-04 18:23:43','2022-05-04 22:23:43','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Social Media','social_media','publish','closed','closed','','field_626a573a104b1','','','2022-05-04 18:23:43','2022-05-04 22:23:43','',3904,'https://www.translucentcomputing.com/?post_type=acf-field&p=3912',4,'acf-field','',0),(3913,20,'2022-05-04 18:23:43','2022-05-04 22:23:43','a:6:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";}','CTA','cta','publish','closed','closed','','field_626a5743104b2','','','2022-05-04 18:23:43','2022-05-04 22:23:43','',3912,'https://www.translucentcomputing.com/?post_type=acf-field&p=3913',0,'acf-field','',0),(3914,20,'2022-05-04 18:23:43','2022-05-04 22:23:43','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Icon','icon','publish','closed','closed','','field_626a574d104b3','','','2022-05-04 18:23:43','2022-05-04 22:23:43','',3912,'https://www.translucentcomputing.com/?post_type=acf-field&p=3914',1,'acf-field','',0),(3915,20,'2022-05-04 18:23:43','2022-05-04 22:23:43','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Copy Right Text','copy_right_text','publish','closed','closed','','field_626a5781ddc51','','','2022-05-04 18:23:43','2022-05-04 22:23:43','',3904,'https://www.translucentcomputing.com/?post_type=acf-field&p=3915',5,'acf-field','',0),(3916,20,'2022-05-04 18:23:44','2022-05-04 22:23:44','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Privacy & Terms','privacy_terms','publish','closed','closed','','field_626a71829af99','','','2022-05-04 18:23:44','2022-05-04 22:23:44','',3904,'https://www.translucentcomputing.com/?post_type=acf-field&p=3916',6,'acf-field','',0),(3917,20,'2022-05-04 18:23:44','2022-05-04 22:23:44','a:6:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";}','Select Page','select_page','publish','closed','closed','','field_626a72179af9a','','','2022-05-04 18:23:44','2022-05-04 22:23:44','',3916,'https://www.translucentcomputing.com/?post_type=acf-field&p=3917',0,'acf-field','',0),(3918,20,'2022-05-04 18:23:44','2022-05-04 22:23:44','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Class (Dev Purpose Only)','class_dev_purpose_only','publish','closed','closed','','field_626a7282c4b86','','','2022-05-04 18:23:44','2022-05-04 22:23:44','',3916,'https://www.translucentcomputing.com/?post_type=acf-field&p=3918',1,'acf-field','',0),(3919,20,'2022-05-04 18:23:44','2022-05-04 22:23:44','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Menu Headings','','publish','closed','closed','','field_626a886c54897','','','2022-05-04 18:23:44','2022-05-04 22:23:44','',3904,'https://www.translucentcomputing.com/?post_type=acf-field&p=3919',7,'acf-field','',0),(3920,20,'2022-05-04 18:23:44','2022-05-04 22:23:44','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Headline Column 1','headline_column_1','publish','closed','closed','','field_626a88a354899','','','2022-05-04 18:23:44','2022-05-04 22:23:44','',3904,'https://www.translucentcomputing.com/?post_type=acf-field&p=3920',8,'acf-field','',0),(3921,20,'2022-05-04 18:23:45','2022-05-04 22:23:45','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Headline Column 2','headline_column_2','publish','closed','closed','','field_626a88b25489a','','','2022-05-04 18:23:45','2022-05-04 22:23:45','',3904,'https://www.translucentcomputing.com/?post_type=acf-field&p=3921',9,'acf-field','',0),(3922,20,'2022-05-04 18:23:45','2022-05-04 22:23:45','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Headline Column 3','headline_column_3','publish','closed','closed','','field_626a88b55489b','','','2022-05-04 18:23:45','2022-05-04 22:23:45','',3904,'https://www.translucentcomputing.com/?post_type=acf-field&p=3922',10,'acf-field','',0),(3923,20,'2022-05-04 18:23:45','2022-05-04 22:23:45','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Headline Column 4','headline_column_4','publish','closed','closed','','field_626a88b75489c','','','2022-05-04 18:23:45','2022-05-04 22:23:45','',3904,'https://www.translucentcomputing.com/?post_type=acf-field&p=3923',11,'acf-field','',0),(3924,20,'2022-05-04 18:23:45','2022-05-04 22:23:45','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Headline Column 5','headline_column_5','publish','closed','closed','','field_626a88b95489d','','','2022-05-04 18:23:45','2022-05-04 22:23:45','',3904,'https://www.translucentcomputing.com/?post_type=acf-field&p=3924',12,'acf-field','',0),(3925,20,'2022-05-04 18:23:46','2022-05-04 22:23:46','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:12:\"options_page\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:18:\"acf-options-header\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Header Options','header-options','publish','closed','closed','','group_626a8a3d643d3','','','2022-05-04 18:23:46','2022-05-04 22:23:46','',0,'https://www.translucentcomputing.com/?p=3925',0,'acf-field-group','',0),(3926,20,'2022-05-04 18:23:46','2022-05-04 22:23:46','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Header Logo','header_logo','publish','closed','closed','','field_626a8a53746b6','','','2022-05-04 18:23:46','2022-05-04 22:23:46','',3925,'https://www.translucentcomputing.com/?post_type=acf-field&p=3926',0,'acf-field','',0),(3927,20,'2022-05-04 18:23:46','2022-05-04 22:23:46','a:6:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";}','Talk to Expert CTA','talk_to_expert_cta','publish','closed','closed','','field_626a8a73746b7','','','2022-05-04 18:23:46','2022-05-04 22:23:46','',3925,'https://www.translucentcomputing.com/?post_type=acf-field&p=3927',1,'acf-field','',0),(3928,20,'2022-05-04 18:23:49','2022-05-04 22:23:49','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"nav_menu_item\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"all\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Mega Menu','mega-menu','publish','closed','closed','','group_6243031e74e81','','','2022-05-04 18:25:14','2022-05-04 22:25:14','',0,'https://www.translucentcomputing.com/?p=3928',0,'acf-field-group','',0),(3929,20,'2022-05-04 18:23:46','2022-05-04 22:23:46','a:12:{s:4:\"type\";s:5:\"radio\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:2:{s:3:\"Yes\";s:3:\"Yes\";s:2:\"No\";s:2:\"No\";}s:10:\"allow_null\";i:0;s:12:\"other_choice\";i:0;s:13:\"default_value\";s:0:\"\";s:6:\"layout\";s:8:\"vertical\";s:13:\"return_format\";s:5:\"value\";s:17:\"save_other_choice\";i:0;}','Mega menu','mega_menu','publish','closed','closed','','field_6243305d826ef','','','2022-05-04 18:23:46','2022-05-04 22:23:46','',3928,'https://www.translucentcomputing.com/?post_type=acf-field&p=3929',0,'acf-field','',0),(3930,20,'2022-05-04 18:23:46','2022-05-04 22:23:46','a:7:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_6243305d826ef\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"Yes\";}}}s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Section1','section1','publish','closed','closed','','field_624303a62cd38','','','2022-05-04 18:23:46','2022-05-04 22:23:46','',3928,'https://www.translucentcomputing.com/?post_type=acf-field&p=3930',1,'acf-field','',0),(3931,20,'2022-05-04 18:23:46','2022-05-04 22:23:46','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Heading','heading','publish','closed','closed','','field_6243100030153','','','2022-05-04 18:23:46','2022-05-04 22:23:46','',3930,'https://www.translucentcomputing.com/?post_type=acf-field&p=3931',0,'acf-field','',0),(3932,20,'2022-05-04 18:23:47','2022-05-04 22:23:47','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Icon','icon','publish','closed','closed','','field_62440d59dd33e','','','2022-05-04 18:23:47','2022-05-04 22:23:47','',3930,'https://www.translucentcomputing.com/?post_type=acf-field&p=3932',1,'acf-field','',0),(3933,20,'2022-05-04 18:23:47','2022-05-04 22:23:47','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Short Text','short_text','publish','closed','closed','','field_6243100830154','','','2022-05-04 18:23:47','2022-05-04 22:23:47','',3930,'https://www.translucentcomputing.com/?post_type=acf-field&p=3933',2,'acf-field','',0),(3934,20,'2022-05-04 18:23:47','2022-05-04 22:23:47','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b3e101c4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','CTA','cta','publish','closed','closed','','field_6269e3c4aaa41','','','2022-05-04 18:23:47','2022-05-04 22:23:47','',3930,'https://www.translucentcomputing.com/?post_type=acf-field&p=3934',3,'acf-field','',0),(3935,20,'2022-05-04 18:23:47','2022-05-04 22:23:47','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_6243305d826ef\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"Yes\";}}}s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:0:\"\";}','Section 2','section_2','publish','closed','closed','','field_6243113be9003','','','2022-05-04 18:23:47','2022-05-04 22:23:47','',3928,'https://www.translucentcomputing.com/?post_type=acf-field&p=3935',2,'acf-field','',0),(3936,20,'2022-05-04 18:23:47','2022-05-04 22:23:47','a:10:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Hide It','hide_it','publish','closed','closed','','field_6269f278b9204','','','2022-05-04 18:23:47','2022-05-04 22:23:47','',3935,'https://www.translucentcomputing.com/?post_type=acf-field&p=3936',0,'acf-field','',0),(3937,20,'2022-05-04 18:23:48','2022-05-04 22:23:48','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_6269f278b9204\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"1\";}}}s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Menu icon','menu_icon','publish','closed','closed','','field_624311d4b5db7','','','2022-05-04 18:23:48','2022-05-04 22:23:48','',3935,'https://www.translucentcomputing.com/?post_type=acf-field&p=3937',1,'acf-field','',0),(3938,20,'2022-05-04 18:23:48','2022-05-04 22:23:48','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_6269f278b9204\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"1\";}}}s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Subheading','subheading','publish','closed','closed','','field_6243118ce9006','','','2022-05-04 18:23:48','2022-05-04 22:23:48','',3935,'https://www.translucentcomputing.com/?post_type=acf-field&p=3938',2,'acf-field','',0),(3939,20,'2022-05-04 18:23:48','2022-05-04 22:23:48','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_6269f278b9204\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"1\";}}}s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Menu short Content','menu_short_content','publish','closed','closed','','field_624311e1b5db8','','','2022-05-04 18:23:48','2022-05-04 22:23:48','',3935,'https://www.translucentcomputing.com/?post_type=acf-field&p=3939',3,'acf-field','',0),(3940,20,'2022-05-04 18:23:48','2022-05-04 22:23:48','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b3e101c4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','CTA','cta','publish','closed','closed','','field_6269e4b076518','','','2022-05-04 18:23:48','2022-05-04 22:23:48','',3935,'https://www.translucentcomputing.com/?post_type=acf-field&p=3940',4,'acf-field','',0),(3941,20,'2022-05-04 18:23:48','2022-05-04 22:23:48','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_6243305d826ef\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:3:\"Yes\";}}}s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";i:0;s:3:\"max\";i:0;s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:0:\"\";}','Section 3','section_3','publish','closed','closed','','field_6243123286169','','','2022-05-04 18:23:48','2022-05-04 22:23:48','',3928,'https://www.translucentcomputing.com/?post_type=acf-field&p=3941',3,'acf-field','',0),(3942,20,'2022-05-04 18:23:48','2022-05-04 22:23:48','a:10:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:0;s:2:\"ui\";i:0;s:10:\"ui_on_text\";s:0:\"\";s:11:\"ui_off_text\";s:0:\"\";}','Hide It','hide_it','publish','closed','closed','','field_6269f8293d71b','','','2022-05-04 18:23:48','2022-05-04 22:23:48','',3941,'https://www.translucentcomputing.com/?post_type=acf-field&p=3942',0,'acf-field','',0),(3943,20,'2022-05-04 18:23:49','2022-05-04 22:23:49','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_6269f8293d71b\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"1\";}}}s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Menu icon','menu_icon','publish','closed','closed','','field_624312328616c','','','2022-05-04 18:23:49','2022-05-04 22:23:49','',3941,'https://www.translucentcomputing.com/?post_type=acf-field&p=3943',1,'acf-field','',0),(3944,20,'2022-05-04 18:23:49','2022-05-04 22:23:49','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_6269f8293d71b\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"1\";}}}s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Subheading','subheading','publish','closed','closed','','field_624312328616a','','','2022-05-04 18:23:49','2022-05-04 22:23:49','',3941,'https://www.translucentcomputing.com/?post_type=acf-field&p=3944',2,'acf-field','',0),(3945,20,'2022-05-04 18:23:49','2022-05-04 22:23:49','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"field\";s:19:\"field_6269f8293d71b\";s:8:\"operator\";s:2:\"!=\";s:5:\"value\";s:1:\"1\";}}}s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Menu short Content','menu_short_content','publish','closed','closed','','field_624312328616d','','','2022-05-04 18:23:49','2022-05-04 22:23:49','',3941,'https://www.translucentcomputing.com/?post_type=acf-field&p=3945',3,'acf-field','',0),(3946,20,'2022-05-04 18:23:49','2022-05-04 22:23:49','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b3e101c4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','CTA','cta','publish','closed','closed','','field_6269e57776519','','','2022-05-04 18:23:49','2022-05-04 22:23:49','',3941,'https://www.translucentcomputing.com/?post_type=acf-field&p=3946',4,'acf-field','',0),(3947,20,'2022-05-04 18:23:51','2022-05-04 22:23:51','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"post\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Reusable Fields','reusable-fields','publish','closed','closed','','group_6254fda17114f','','','2022-06-28 12:22:27','2022-06-28 16:22:27','',0,'https://www.translucentcomputing.com/?p=3947',0,'acf-field-group','',0),(3948,20,'2022-05-04 18:23:50','2022-05-04 22:23:50','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Heading','heading','publish','closed','closed','','field_6254fdb2efa27','','','2022-05-04 18:23:50','2022-05-04 22:23:50','',3947,'https://www.translucentcomputing.com/?post_type=acf-field&p=3948',0,'acf-field','',0),(3949,20,'2022-05-04 18:23:50','2022-05-04 22:23:50','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Sub Heading','sub_heading','publish','closed','closed','','field_6254fdbaefa28','','','2022-05-04 18:23:50','2022-05-04 22:23:50','',3947,'https://www.translucentcomputing.com/?post_type=acf-field&p=3949',1,'acf-field','',0),(3950,20,'2022-05-04 18:23:50','2022-05-04 22:23:50','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Copy','copy','publish','closed','closed','','field_6254fdc0efa29','','','2022-05-04 18:23:50','2022-05-04 22:23:50','',3947,'https://www.translucentcomputing.com/?post_type=acf-field&p=3950',2,'acf-field','',0),(3951,20,'2022-05-04 18:23:50','2022-05-04 22:23:50','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Copy WYSIWYG','copy_wysiwyg','publish','closed','closed','','field_6255310ecf4de','','','2022-05-04 18:23:50','2022-05-04 22:23:50','',3947,'https://www.translucentcomputing.com/?post_type=acf-field&p=3951',3,'acf-field','',0),(3952,20,'2022-05-04 18:23:50','2022-05-04 22:23:50','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Icon','icon','publish','closed','closed','','field_62550482480cb','','','2022-05-04 18:23:50','2022-05-04 22:23:50','',3947,'https://www.translucentcomputing.com/?post_type=acf-field&p=3952',4,'acf-field','',0),(3953,20,'2022-05-04 18:23:51','2022-05-04 22:23:51','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_6254fdc5efa2a','','','2022-05-04 18:23:51','2022-05-04 22:23:51','',3947,'https://www.translucentcomputing.com/?post_type=acf-field&p=3953',5,'acf-field','',0),(3954,20,'2022-05-04 18:23:51','2022-05-04 22:23:51','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Mob Image','mob_image','publish','closed','closed','','field_6254fdcbefa2b','','','2022-05-04 18:23:51','2022-05-04 22:23:51','',3947,'https://www.translucentcomputing.com/?post_type=acf-field&p=3954',6,'acf-field','',0),(3955,20,'2022-05-04 18:23:51','2022-05-04 22:23:51','a:6:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";}','CTA','cta','publish','closed','closed','','field_62551b3e101c4','','','2022-05-04 18:23:51','2022-05-04 22:23:51','',3947,'https://www.translucentcomputing.com/?post_type=acf-field&p=3955',7,'acf-field','',0),(3956,20,'2022-09-14 00:30:07','2022-05-04 22:31:05','','WHAT WE DO','','publish','closed','closed','','what-we-do','','','2022-09-14 00:30:07','2022-09-14 04:30:07','',0,'https://www.translucentcomputing.com/?p=3956',1,'nav_menu_item','',0),(3957,20,'2022-05-04 18:43:23','2022-05-04 22:43:23','','Applications','','inherit','open','closed','','applications-2','','','2022-09-14 00:29:22','2022-09-14 04:29:22','',3956,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Applications.svg',0,'attachment','image/svg+xml',0),(3958,20,'2022-05-04 18:44:11','2022-05-04 22:44:11','','DevOps','','inherit','open','closed','','devops-3','','','2022-09-14 00:29:33','2022-09-14 04:29:33','',3956,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/DevOps.svg',0,'attachment','image/svg+xml',0),(3959,20,'2022-05-04 18:44:51','2022-05-04 22:44:51','','kubernates','','inherit','open','closed','','kubernates','','','2022-09-14 00:29:40','2022-09-14 04:29:40','',3956,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/kubernates.svg',0,'attachment','image/svg+xml',0),(3960,20,'2022-05-04 18:45:28','2022-05-04 22:45:28','','zerotrust','','inherit','open','closed','','zerotrust','','','2022-09-14 00:29:47','2022-09-14 04:29:47','',3956,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/zerotrust.svg',0,'attachment','image/svg+xml',0),(3961,20,'2022-05-04 18:46:04','2022-05-04 22:46:04','','datdriven','','inherit','open','closed','','datdriven','','','2022-09-14 00:29:54','2022-09-14 04:29:54','',3956,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/datdriven.svg',0,'attachment','image/svg+xml',0),(3962,20,'2022-05-04 18:46:37','2022-05-04 22:46:37','','Machine-Learning','','inherit','open','closed','','machine-learning-2','','','2022-05-04 18:46:50','2022-05-04 22:46:50','',3956,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Machine-Learning.svg',0,'attachment','image/svg+xml',0),(3963,20,'2022-05-04 19:26:25','2022-05-04 23:26:25','','logo','','inherit','open','closed','','logo','','','2022-05-04 19:26:25','2022-05-04 23:26:25','',0,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/logo.svg',0,'attachment','image/svg+xml',0),(3964,20,'2022-05-04 19:39:25','2022-05-04 23:39:25','','Translucent-branco@2x','','inherit','open','closed','','translucent-branco2x','','','2022-05-04 19:39:25','2022-05-04 23:39:25','',0,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Translucent-branco@2x.png',0,'attachment','image/png',0),(3965,20,'2022-05-04 19:41:01','2022-05-04 23:41:01','','linux_foundation@2x','','inherit','open','closed','','linux_foundation2x','','','2022-05-04 19:41:01','2022-05-04 23:41:01','',0,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/linux_foundation@2x.png',0,'attachment','image/png',0),(3966,20,'2022-05-04 19:41:04','2022-05-04 23:41:04','','kubernets_certified@2x','','inherit','open','closed','','kubernets_certified2x','','','2022-05-04 19:41:04','2022-05-04 23:41:04','',0,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/kubernets_certified@2x.png',0,'attachment','image/png',0),(3967,20,'2022-05-04 19:41:05','2022-05-04 23:41:05','','cloud_native_computing_foundation@2x','','inherit','open','closed','','cloud_native_computing_foundation2x','','','2022-05-04 19:41:05','2022-05-04 23:41:05','',0,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/cloud_native_computing_foundation@2x.png',0,'attachment','image/png',0),(3968,20,'2022-05-04 19:48:48','2022-05-04 23:48:48','','facebook-icon','','inherit','open','closed','','facebook-icon','','','2022-05-04 19:48:48','2022-05-04 23:48:48','',0,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/facebook-icon.svg',0,'attachment','image/svg+xml',0),(3969,20,'2022-05-04 19:49:03','2022-05-04 23:49:03','','linkedin-icon','','inherit','open','closed','','linkedin-icon','','','2022-05-04 19:49:03','2022-05-04 23:49:03','',0,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/linkedin-icon.svg',0,'attachment','image/svg+xml',0),(3970,20,'2022-05-04 19:49:11','2022-05-04 23:49:11','','twitter-icon','','inherit','open','closed','','twitter-icon','','','2022-05-04 19:49:11','2022-05-04 23:49:11','',0,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/twitter-icon.svg',0,'attachment','image/svg+xml',0),(3971,20,'2022-05-04 19:49:17','2022-05-04 23:49:17','','instagram-icon','','inherit','open','closed','','instagram-icon','','','2022-05-04 19:49:17','2022-05-04 23:49:17','',0,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/instagram-icon.svg',0,'attachment','image/svg+xml',0),(3972,20,'2022-09-14 00:30:07','2022-05-05 00:07:00','','HOW WE DO IT','','publish','closed','closed','','how-we-do-it','','','2022-09-14 00:30:07','2022-09-14 04:30:07','',0,'https://www.translucentcomputing.com/?p=3972',2,'nav_menu_item','',0),(3974,20,'2022-05-05 02:21:52','2022-05-05 06:21:52','','tekstack','','inherit','open','closed','','tekstack','','','2022-05-05 03:55:23','2022-05-05 07:55:23','',3972,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/tekstack.svg',0,'attachment','image/svg+xml',0),(3975,20,'2022-05-05 02:22:00','2022-05-05 06:22:00','','tekprocess','','inherit','open','closed','','tekprocess-2','','','2022-05-05 03:55:23','2022-05-05 07:55:23','',3972,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/tekprocess.svg',0,'attachment','image/svg+xml',0),(3976,20,'2022-05-05 02:22:14','2022-05-05 06:22:14','','TEKTeams','','inherit','open','closed','','tekteams','','','2022-05-05 03:55:23','2022-05-05 07:55:23','',3972,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/TEKTeams.svg',0,'attachment','image/svg+xml',0),(3977,20,'2022-09-14 00:30:07','2022-05-05 07:55:24','','WHAT IS CLOUD NATIVE','','publish','closed','closed','','what-is-cloud-native','','','2022-09-14 00:30:07','2022-09-14 04:30:07','',0,'https://www.translucentcomputing.com/?p=3977',3,'nav_menu_item','',0),(3978,20,'2022-05-05 02:24:51','2022-05-05 06:24:51','','mrdata-svg','','inherit','open','closed','','mrdata-svg','','','2022-05-05 03:55:23','2022-05-05 07:55:23','',3977,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/mrdata-svg.svg',0,'attachment','image/svg+xml',0),(3979,20,'2022-05-05 03:53:01','2022-05-05 07:53:01','','Cloud-Native-Application-1','','inherit','open','closed','','cloud-native-application-1','','','2022-05-05 03:55:23','2022-05-05 07:55:23','',3977,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Cloud-Native-Application-1.svg',0,'attachment','image/svg+xml',0),(3980,20,'2022-05-05 03:54:24','2022-05-05 07:54:24','','Cloud-Native-DevOps-1','','inherit','open','closed','','cloud-native-devops-1','','','2022-05-05 03:55:23','2022-05-05 07:55:23','',3977,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Cloud-Native-DevOps-1.svg',0,'attachment','image/svg+xml',0),(3981,20,'2022-05-05 03:54:50','2022-05-05 07:54:50','','Cloud-Native-1','','inherit','open','closed','','cloud-native-1','','','2022-05-05 03:55:23','2022-05-05 07:55:23','',3977,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Cloud-Native-1.svg',0,'attachment','image/svg+xml',0),(3982,20,'2022-05-05 03:55:11','2022-05-05 07:55:11','','Data-Driven-Digital-Transformation-1','','inherit','open','closed','','data-driven-digital-transformation-1','','','2022-05-05 03:55:23','2022-05-05 07:55:23','',3977,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Data-Driven-Digital-Transformation-1.svg',0,'attachment','image/svg+xml',0),(3984,20,'2022-09-14 00:30:07','2022-05-05 08:22:29','','OUR COMPANY','','publish','closed','closed','','our-company-2','','','2022-09-14 00:30:07','2022-09-14 04:30:07','',0,'https://www.translucentcomputing.com/?p=3984',4,'nav_menu_item','',0),(3985,20,'2022-05-05 04:19:32','2022-05-05 08:19:32','','Group-8513','','inherit','open','closed','','group-8513','','','2022-05-05 04:22:29','2022-05-05 08:22:29','',3984,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-8513.svg',0,'attachment','image/svg+xml',0),(3986,20,'2022-05-05 04:20:44','2022-05-05 08:20:44','','Our-Team','','inherit','open','closed','','our-team','','','2022-05-05 04:22:29','2022-05-05 08:22:29','',3984,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Our-Team.svg',0,'attachment','image/svg+xml',0),(3987,20,'2022-05-05 04:22:05','2022-05-05 08:22:05','','aboutus','','inherit','open','closed','','aboutus','','','2022-05-05 04:22:29','2022-05-05 08:22:29','',3984,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/aboutus.svg',0,'attachment','image/svg+xml',0),(3988,20,'2022-09-14 00:30:07','2022-05-05 08:27:08','','CASE STUDIES','','publish','closed','closed','','case-studies','','','2022-09-14 00:30:07','2022-09-14 04:30:07','',0,'https://www.translucentcomputing.com/?p=3988',5,'nav_menu_item','',0),(3989,20,'2022-09-14 00:30:07','2022-05-05 08:27:08','','BLOG','','publish','closed','closed','','blog','','','2022-09-14 00:30:07','2022-09-14 04:30:07','',0,'https://www.translucentcomputing.com/?p=3989',6,'nav_menu_item','',0),(3990,20,'2022-05-05 04:36:58','2022-05-05 08:36:58',' ','','','publish','closed','closed','','3990','','','2022-05-11 13:40:56','2022-05-11 17:40:56','',0,'https://www.translucentcomputing.com/?p=3990',1,'nav_menu_item','',0),(3991,20,'2022-05-05 04:36:58','2022-05-05 08:36:58','','Contact','','publish','closed','closed','','contact','','','2022-05-11 13:40:57','2022-05-11 17:40:57','',0,'https://www.translucentcomputing.com/?p=3991',2,'nav_menu_item','',0),(3992,20,'2022-05-05 04:36:59','2022-05-05 08:36:59','','Our Team','Coming Soon!','publish','closed','closed','','our-team','','','2022-05-11 13:40:57','2022-05-11 17:40:57','',0,'https://www.translucentcomputing.com/?p=3992',3,'nav_menu_item','',0),(3993,20,'2022-09-12 06:56:58','2022-05-05 08:50:16','',' Cloud native solutions','','publish','closed','closed','','cloud-native-solutions','','','2022-09-12 06:56:58','2022-09-12 10:56:58','',0,'https://www.translucentcomputing.com/?p=3993',1,'nav_menu_item','',0),(3994,20,'2022-09-12 06:56:59','2022-05-05 08:50:16','','Applications','','publish','closed','closed','','applications','','','2022-09-12 06:56:59','2022-09-12 10:56:59','',0,'https://www.translucentcomputing.com/?p=3994',2,'nav_menu_item','',0),(3995,20,'2022-09-12 06:57:00','2022-05-05 08:50:16','','Kubernetes','','publish','closed','closed','','kubernetes','','','2022-09-12 06:57:00','2022-09-12 10:57:00','',0,'https://www.translucentcomputing.com/?p=3995',3,'nav_menu_item','',0),(3996,20,'2022-09-12 06:57:01','2022-05-05 08:50:17','','Data-Driven','','publish','closed','closed','','data-driven','','','2022-09-12 06:57:01','2022-09-12 10:57:01','',0,'https://www.translucentcomputing.com/?p=3996',4,'nav_menu_item','',0),(3997,20,'2022-09-12 06:57:02','2022-05-05 08:50:17','','DevOps','','publish','closed','closed','','devops','','','2022-09-12 06:57:02','2022-09-12 10:57:02','',0,'https://www.translucentcomputing.com/?p=3997',5,'nav_menu_item','',0),(3998,20,'2022-09-12 06:57:03','2022-05-05 08:50:17','','Zero Trust','','publish','closed','closed','','zero-trust','','','2022-09-12 06:57:03','2022-09-12 10:57:03','',0,'https://www.translucentcomputing.com/?p=3998',6,'nav_menu_item','',0),(3999,20,'2022-09-12 06:57:05','2022-05-05 08:50:17','','Machine Learning','','publish','closed','closed','','machine-learning','','','2022-09-12 06:57:05','2022-09-12 10:57:05','',0,'https://www.translucentcomputing.com/?p=3999',7,'nav_menu_item','',0),(4000,20,'2022-05-05 04:54:04','2022-05-05 08:54:04','','Data-Driven Digital Transformation','','publish','closed','closed','','data-driven-digital-transformation','','','2022-05-05 10:22:43','2022-05-05 14:22:43','',0,'https://www.translucentcomputing.com/?p=4000',1,'nav_menu_item','',0),(4004,20,'2022-05-05 05:04:27','2022-05-05 09:04:27','','HealthCare','','publish','closed','closed','','healthcare','','','2022-05-05 05:07:35','2022-05-05 09:07:35','',0,'https://www.translucentcomputing.com/?p=4004',1,'nav_menu_item','',0),(4005,20,'2022-05-05 05:04:27','2022-05-05 09:04:27','','Automotive','','publish','closed','closed','','automotive','','','2022-05-05 05:07:35','2022-05-05 09:07:35','',0,'https://www.translucentcomputing.com/?p=4005',2,'nav_menu_item','',0),(4006,20,'2022-05-05 05:04:27','2022-05-05 09:04:27','','Fintech','','publish','closed','closed','','fintech','','','2022-05-05 05:07:35','2022-05-05 09:07:35','',0,'https://www.translucentcomputing.com/?p=4006',3,'nav_menu_item','',0),(4007,20,'2022-06-20 15:47:46','2022-05-05 09:06:46','',' TEK™ World','','publish','closed','closed','','tek-world','','','2022-06-20 15:47:46','2022-06-20 19:47:46','',0,'https://www.translucentcomputing.com/?p=4007',1,'nav_menu_item','',0),(4008,20,'2022-06-20 15:47:46','2022-05-05 09:06:46','','TEKStack','','publish','closed','closed','','tekstack','','','2022-06-20 15:47:46','2022-06-20 19:47:46','',0,'https://www.translucentcomputing.com/?p=4008',2,'nav_menu_item','',0),(4009,20,'2022-06-20 15:47:46','2022-05-05 09:06:46','','TEKTeams','','publish','closed','closed','','tekteams','','','2022-06-20 15:47:46','2022-06-20 19:47:46','',0,'https://www.translucentcomputing.com/?p=4009',3,'nav_menu_item','',0),(4010,20,'2022-06-20 15:47:47','2022-05-05 09:06:47','','TEKProcess','','publish','closed','closed','','tekprocess-2','','','2022-06-20 15:47:47','2022-06-20 19:47:47','',0,'https://www.translucentcomputing.com/?p=4010',4,'nav_menu_item','',0),(4011,20,'2022-05-05 07:12:21','2022-05-05 11:12:21','','TEK World','','publish','closed','closed','','tek-world','','','2022-05-19 10:35:38','2022-05-19 14:35:38','',0,'https://www.translucentcomputing.com/?page_id=4011',0,'page','',0),(4012,20,'2022-05-05 07:12:21','2022-05-05 11:12:21','','TEK World','','inherit','closed','closed','','4011-revision-v1','','','2022-05-05 07:12:21','2022-05-05 11:12:21','',4011,'https://www.translucentcomputing.com/2022/05/4011-revision-v1/',0,'revision','',0),(4013,20,'2022-05-05 07:14:29','2022-05-05 11:14:29','','Group-102','','inherit','open','closed','','group-102','','','2022-05-05 07:14:29','2022-05-05 11:14:29','',4011,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-102.svg',0,'attachment','image/svg+xml',0),(4014,20,'2022-05-05 07:15:00','2022-05-05 11:15:00','','Union-20@2x-2-scaled','','inherit','open','closed','','union-202x-2-scaled','','','2022-05-05 07:15:00','2022-05-05 11:15:00','',4011,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Union-20@2x-2-scaled-1.jpg',0,'attachment','image/jpeg',0),(4015,20,'2022-05-05 07:15:11','2022-05-05 11:15:11','','TEK World','','inherit','closed','closed','','4011-revision-v1','','','2022-05-05 07:15:11','2022-05-05 11:15:11','',4011,'https://www.translucentcomputing.com/2022/05/4011-revision-v1/',0,'revision','',0),(4016,20,'2022-05-05 07:16:43','2022-05-05 11:16:43','','Group-8207','','inherit','open','closed','','group-8207','','','2022-05-05 07:16:43','2022-05-05 11:16:43','',4011,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-8207.png',0,'attachment','image/png',0),(4017,20,'2022-05-05 07:16:53','2022-05-05 11:16:53','','TEK World','','inherit','closed','closed','','4011-revision-v1','','','2022-05-05 07:16:53','2022-05-05 11:16:53','',4011,'https://www.translucentcomputing.com/2022/05/4011-revision-v1/',0,'revision','',0),(4018,20,'2022-05-05 07:22:50','2022-05-05 11:22:50','','TEK World','','inherit','closed','closed','','4011-revision-v1','','','2022-05-05 07:22:50','2022-05-05 11:22:50','',4011,'https://www.translucentcomputing.com/2022/05/4011-revision-v1/',0,'revision','',0),(4019,20,'2022-05-05 07:49:43','2022-05-05 11:49:43','','Group-8212','','inherit','open','closed','','group-8212','','','2022-05-05 07:49:43','2022-05-05 11:49:43','',4011,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-8212.svg',0,'attachment','image/svg+xml',0),(4020,20,'2022-05-05 07:50:05','2022-05-05 11:50:05','','Group-8255','','inherit','open','closed','','group-8255','','','2022-05-05 07:50:05','2022-05-05 11:50:05','',4011,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-8255.svg',0,'attachment','image/svg+xml',0),(4021,20,'2022-05-05 07:50:13','2022-05-05 11:50:13','','Group-7932','','inherit','open','closed','','group-7932','','','2022-05-05 07:50:13','2022-05-05 11:50:13','',4011,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-7932.svg',0,'attachment','image/svg+xml',0),(4022,20,'2022-05-05 07:50:23','2022-05-05 11:50:23','','TEK World','','inherit','closed','closed','','4011-revision-v1','','','2022-05-05 07:50:23','2022-05-05 11:50:23','',4011,'https://www.translucentcomputing.com/2022/05/4011-revision-v1/',0,'revision','',0),(4023,20,'2022-05-05 07:53:11','2022-05-05 11:53:11','','cadeado@2x','','inherit','open','closed','','cadeado2x','','','2022-05-05 07:53:11','2022-05-05 11:53:11','',4011,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/cadeado@2x.jpg',0,'attachment','image/jpeg',0),(4024,20,'2022-05-05 07:53:31','2022-05-05 11:53:31','','TEK World','','inherit','closed','closed','','4011-revision-v1','','','2022-05-05 07:53:31','2022-05-05 11:53:31','',4011,'https://www.translucentcomputing.com/2022/05/4011-revision-v1/',0,'revision','',0),(4025,20,'2022-05-05 07:55:32','2022-05-05 11:55:32','','case_tek@2x-1','','inherit','open','closed','','case_tek2x-1','','','2022-05-05 07:55:32','2022-05-05 11:55:32','',4011,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/case_tek@2x-1.jpg',0,'attachment','image/jpeg',0),(4026,20,'2022-05-05 07:55:41','2022-05-05 11:55:41','','case_tek@2x-scaled','','inherit','open','closed','','case_tek2x-scaled','','','2022-05-05 07:55:41','2022-05-05 11:55:41','',4011,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/case_tek@2x-scaled-1.jpg',0,'attachment','image/jpeg',0),(4027,20,'2022-05-05 07:57:25','2022-05-05 11:57:25','','TEK World','','inherit','closed','closed','','4011-revision-v1','','','2022-05-05 07:57:25','2022-05-05 11:57:25','',4011,'https://www.translucentcomputing.com/2022/05/4011-revision-v1/',0,'revision','',0),(4028,20,'2022-05-05 08:16:18','2022-05-05 12:16:18','','Cloud Native Solutions','','publish','closed','closed','','cloud-native-solutions','','','2022-05-19 10:33:31','2022-05-19 14:33:31','',0,'https://www.translucentcomputing.com/?page_id=4028',0,'page','',0),(4029,20,'2022-05-05 08:16:18','2022-05-05 12:16:18','','Cloud Native Solutions','','inherit','closed','closed','','4028-revision-v1','','','2022-05-05 08:16:18','2022-05-05 12:16:18','',4028,'https://www.translucentcomputing.com/2022/05/4028-revision-v1/',0,'revision','',0),(4030,20,'2022-05-05 08:26:38','2022-05-05 12:26:38','','Union-20@2x-1-scaled','','inherit','open','closed','','union-202x-1-scaled','','','2022-05-05 08:26:38','2022-05-05 12:26:38','',4028,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Union-20@2x-1-scaled-1.jpg',0,'attachment','image/jpeg',0),(4031,20,'2022-05-05 08:28:25','2022-05-05 12:28:25','','Asset-1@4x@2x','','inherit','open','closed','','asset-14x2x','','','2022-05-05 08:28:25','2022-05-05 12:28:25','',4028,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Asset-1@4x@2x.jpg',0,'attachment','image/jpeg',0),(4032,20,'2022-05-05 08:28:38','2022-05-05 12:28:38','','Cloud Native Solutions','','inherit','closed','closed','','4028-revision-v1','','','2022-05-05 08:28:38','2022-05-05 12:28:38','',4028,'https://www.translucentcomputing.com/2022/05/4028-revision-v1/',0,'revision','',0),(4033,20,'2022-05-05 08:42:04','2022-05-05 12:42:04','','Group-8301@2x','','inherit','open','closed','','group-83012x','','','2022-05-05 08:42:04','2022-05-05 12:42:04','',4028,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-8301@2x.jpg',0,'attachment','image/jpeg',0),(4034,20,'2022-05-05 08:42:16','2022-05-05 12:42:16','','Group-8302@2x','','inherit','open','closed','','group-83022x','','','2022-05-05 08:42:16','2022-05-05 12:42:16','',4028,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-8302@2x.jpg',0,'attachment','image/jpeg',0),(4035,20,'2022-05-05 08:42:25','2022-05-05 12:42:25','','Group-8303@2x','','inherit','open','closed','','group-83032x','','','2022-05-05 08:42:25','2022-05-05 12:42:25','',4028,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-8303@2x.jpg',0,'attachment','image/jpeg',0),(4036,20,'2022-05-05 08:42:34','2022-05-05 12:42:34','','Cloud Native Solutions','','inherit','closed','closed','','4028-revision-v1','','','2022-05-05 08:42:34','2022-05-05 12:42:34','',4028,'https://www.translucentcomputing.com/2022/05/4028-revision-v1/',0,'revision','',0),(4037,20,'2022-05-05 08:47:38','2022-05-05 12:47:38','','Cloud Native Solutions','','inherit','closed','closed','','4028-revision-v1','','','2022-05-05 08:47:38','2022-05-05 12:47:38','',4028,'https://www.translucentcomputing.com/2022/05/4028-revision-v1/',0,'revision','',0),(4038,20,'2022-05-05 08:57:08','2022-05-05 12:57:08','','Group-7869','','inherit','open','closed','','group-7869','','','2022-05-05 08:57:08','2022-05-05 12:57:08','',4028,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-7869.svg',0,'attachment','image/svg+xml',0),(4039,20,'2022-05-05 08:58:34','2022-05-05 12:58:34','','kubernetes-kcsp-color','','inherit','open','closed','','kubernetes-kcsp-color-2','','','2022-05-05 08:58:34','2022-05-05 12:58:34','',4028,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/kubernetes-kcsp-color.png',0,'attachment','image/png',0),(4040,20,'2022-05-05 08:59:13','2022-05-05 12:59:13','','kubernetes','','inherit','open','closed','','kubernetes-2','','','2022-05-05 08:59:13','2022-05-05 12:59:13','',4028,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/kubernetes.svg',0,'attachment','image/svg+xml',0),(4041,20,'2022-05-05 08:59:57','2022-05-05 12:59:57','','cloudAsset-1@4x@2x','','inherit','open','closed','','cloudasset-14x2x','','','2022-05-05 08:59:57','2022-05-05 12:59:57','',4028,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/cloudAsset-1@4x@2x.png',0,'attachment','image/png',0),(4042,20,'2022-05-05 09:03:07','2022-05-05 13:03:07','','Devops','','inherit','open','closed','','devops-4','','','2022-05-05 09:03:07','2022-05-05 13:03:07','',4028,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Devops.svg',0,'attachment','image/svg+xml',0),(4043,20,'2022-05-05 09:05:04','2022-05-05 13:05:04','','Group-7871','','inherit','open','closed','','group-7871','','','2022-05-05 09:05:04','2022-05-05 13:05:04','',4028,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-7871.svg',0,'attachment','image/svg+xml',0),(4044,20,'2022-05-05 09:06:23','2022-05-05 13:06:23','','Cloud Native Solutions','','inherit','closed','closed','','4028-revision-v1','','','2022-05-05 09:06:23','2022-05-05 13:06:23','',4028,'https://www.translucentcomputing.com/2022/05/4028-revision-v1/',0,'revision','',0),(4045,20,'2022-05-05 09:10:34','2022-05-05 13:10:34','','TEK Teams','','draft','closed','closed','','tek-teams','','','2022-06-20 10:19:37','2022-06-20 14:19:37','',0,'https://www.translucentcomputing.com/?page_id=4045',0,'page','',0),(4046,20,'2022-05-05 09:10:34','2022-05-05 13:10:34','','TEK Teams','','inherit','closed','closed','','4045-revision-v1','','','2022-05-05 09:10:34','2022-05-05 13:10:34','',4045,'https://www.translucentcomputing.com/2022/05/4045-revision-v1/',0,'revision','',0),(4047,20,'2022-05-05 09:13:19','2022-05-05 13:13:19','','Group-8020','','inherit','open','closed','','group-8020','','','2022-05-05 09:13:19','2022-05-05 13:13:19','',4028,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-8020.svg',0,'attachment','image/svg+xml',0),(4048,20,'2022-05-05 09:15:13','2022-05-05 13:15:13','','MachineLearning','','inherit','open','closed','','machinelearning','','','2022-05-05 09:15:13','2022-05-05 13:15:13','',4028,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/MachineLearning.svg',0,'attachment','image/svg+xml',0),(4049,20,'2022-05-05 09:17:24','2022-05-05 13:17:24','','Cloud Native Solutions','','inherit','closed','closed','','4028-revision-v1','','','2022-05-05 09:17:24','2022-05-05 13:17:24','',4028,'https://www.translucentcomputing.com/2022/05/4028-revision-v1/',0,'revision','',0),(4050,20,'2022-05-05 09:19:17','2022-05-05 13:19:17','','blog_pic_1@2x-2','','inherit','open','closed','','blog_pic_12x-2','','','2022-05-05 09:19:17','2022-05-05 13:19:17','',4028,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/blog_pic_1@2x-2.jpg',0,'attachment','image/jpeg',0),(4051,20,'2022-05-05 09:19:26','2022-05-05 13:19:26','','blog_pic_1@2x-1-scaled','','inherit','open','closed','','blog_pic_12x-1-scaled','','','2022-05-05 09:19:26','2022-05-05 13:19:26','',4028,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/blog_pic_1@2x-1-scaled-1.jpg',0,'attachment','image/jpeg',0),(4052,20,'2022-05-05 09:23:00','2022-05-05 13:23:00','','Group-8035-1','','inherit','open','closed','','group-8035-1','','','2022-05-05 09:23:00','2022-05-05 13:23:00','',4028,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-8035-1.svg',0,'attachment','image/svg+xml',0),(4053,20,'2022-05-05 09:23:06','2022-05-05 13:23:06','','Group-8036','','inherit','open','closed','','group-8036','','','2022-05-05 09:23:06','2022-05-05 13:23:06','',4028,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-8036.svg',0,'attachment','image/svg+xml',0),(4054,20,'2022-05-05 09:23:12','2022-05-05 13:23:12','','Group-8038','','inherit','open','closed','','group-8038','','','2022-05-05 09:23:12','2022-05-05 13:23:12','',4028,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-8038.svg',0,'attachment','image/svg+xml',0),(4055,20,'2022-05-05 09:23:23','2022-05-05 13:23:23','','Cloud Native Solutions','','inherit','closed','closed','','4028-revision-v1','','','2022-05-05 09:23:23','2022-05-05 13:23:23','',4028,'https://www.translucentcomputing.com/2022/05/4028-revision-v1/',0,'revision','',0),(4056,20,'2022-05-05 09:30:47','2022-05-05 13:30:47','','Cloud Native Solutions','','inherit','closed','closed','','4028-revision-v1','','','2022-05-05 09:30:47','2022-05-05 13:30:47','',4028,'https://www.translucentcomputing.com/2022/05/4028-revision-v1/',0,'revision','',0),(4057,20,'2022-05-05 09:35:27','2022-05-05 13:35:27','','Image-1@2x','','inherit','open','closed','','image-12x','','','2022-05-05 09:35:27','2022-05-05 13:35:27','',4028,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Image-1@2x.jpg',0,'attachment','image/jpeg',0),(4058,20,'2022-05-05 09:35:44','2022-05-05 13:35:44','','SickKids-logo-1','','inherit','open','closed','','sickkids-logo-1','','','2022-05-05 09:35:44','2022-05-05 13:35:44','',4028,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/SickKids-logo-1.png',0,'attachment','image/png',0),(4059,20,'2022-05-05 09:37:33','2022-05-05 13:37:33','','Cloud Native Solutions','','inherit','closed','closed','','4028-revision-v1','','','2022-05-05 09:37:33','2022-05-05 13:37:33','',4028,'https://www.translucentcomputing.com/2022/05/4028-revision-v1/',0,'revision','',0),(4060,20,'2022-05-05 09:39:22','2022-05-05 13:39:22','','Cloud Native Solutions','','inherit','closed','closed','','4028-revision-v1','','','2022-05-05 09:39:22','2022-05-05 13:39:22','',4028,'https://www.translucentcomputing.com/2022/05/4028-revision-v1/',0,'revision','',0),(4061,20,'2022-05-05 09:42:19','2022-05-05 13:42:19','','Cloud Native Solutions','','inherit','closed','closed','','4028-revision-v1','','','2022-05-05 09:42:19','2022-05-05 13:42:19','',4028,'https://www.translucentcomputing.com/2022/05/4028-revision-v1/',0,'revision','',0),(4062,20,'2022-05-05 09:56:28','2022-05-05 13:56:28','','Cloud Native Solutions','','inherit','closed','closed','','4028-revision-v1','','','2022-05-05 09:56:28','2022-05-05 13:56:28','',4028,'https://www.translucentcomputing.com/2022/05/4028-revision-v1/',0,'revision','',0),(4063,20,'2022-05-05 10:01:24','2022-05-05 14:01:24','','Cloud Native Solutions','','inherit','closed','closed','','4028-revision-v1','','','2022-05-05 10:01:24','2022-05-05 14:01:24','',4028,'https://www.translucentcomputing.com/2022/05/4028-revision-v1/',0,'revision','',0),(4064,20,'2022-05-05 10:14:36','2022-05-05 14:14:36','','TEKTeams','','publish','closed','closed','','tekteams','','','2022-07-05 02:57:35','2022-07-05 06:57:35','',0,'https://www.translucentcomputing.com/?page_id=4064',0,'page','',0),(4065,20,'2022-05-05 10:14:36','2022-05-05 14:14:36','','TEK Teams','','inherit','closed','closed','','4064-revision-v1','','','2022-05-05 10:14:36','2022-05-05 14:14:36','',4064,'https://www.translucentcomputing.com/2022/05/4064-revision-v1/',0,'revision','',0),(4066,20,'2022-05-05 10:18:52','2022-05-05 14:18:52','','Union-20@2x-scaled[1]','','inherit','open','closed','','union-202x-scaled1','','','2022-05-05 10:18:52','2022-05-05 14:18:52','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Union-20@2x-scaled1.jpg',0,'attachment','image/jpeg',0),(4067,20,'2022-05-05 10:19:13','2022-05-05 14:19:13','','Union-21@2x[1]','','inherit','open','closed','','union-212x1','','','2022-05-05 10:19:13','2022-05-05 14:19:13','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Union-21@2x1.png',0,'attachment','image/png',0),(4068,20,'2022-05-05 10:19:33','2022-05-05 14:19:33','','Group-102@2x[1]','','inherit','open','closed','','group-1022x1','','','2022-05-05 10:19:33','2022-05-05 14:19:33','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-102@2x1.png',0,'attachment','image/png',0),(4069,20,'2022-05-05 10:20:53','2022-05-05 14:20:53','','blog_pic_1@2x-scaled[1]','','inherit','open','closed','','blog_pic_12x-scaled1','','','2022-05-05 10:20:53','2022-05-05 14:20:53','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/blog_pic_1@2x-scaled1.jpg',0,'attachment','image/jpeg',0),(4070,20,'2022-05-05 10:21:14','2022-05-05 14:21:14','','blog_pic_1@2x-1[1]','','inherit','open','closed','','blog_pic_12x-11','','','2022-05-05 10:21:14','2022-05-05 14:21:14','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/blog_pic_1@2x-11.png',0,'attachment','image/png',0),(4071,20,'2022-05-05 10:21:37','2022-05-05 14:21:37','','Group-8035[1]','','inherit','open','closed','','group-80351','','','2022-05-05 10:21:37','2022-05-05 14:21:37','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-80351.svg',0,'attachment','image/svg+xml',0),(4072,20,'2022-05-05 10:22:23','2022-05-05 14:22:23','','blog_pic_1-4[1]','','inherit','open','closed','','blog_pic_1-41','','','2022-05-05 10:22:23','2022-05-05 14:22:23','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/blog_pic_1-41.png',0,'attachment','image/png',0),(4073,20,'2022-05-05 10:23:05','2022-05-05 14:23:05','','blog_pic_1@2x[1]','','inherit','open','closed','','blog_pic_12x1','','','2022-05-05 10:23:05','2022-05-05 14:23:05','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/blog_pic_1@2x1.png',0,'attachment','image/png',0),(4074,20,'2022-05-05 10:23:26','2022-05-05 14:23:26','','Group-8392[1]','','inherit','open','closed','','group-83921','','','2022-05-05 10:23:26','2022-05-05 14:23:26','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-83921.svg',0,'attachment','image/svg+xml',0),(4075,20,'2022-05-05 10:24:07','2022-05-05 14:24:07','','Group-8345[1]','','inherit','open','closed','','group-83451','','','2022-05-05 10:24:07','2022-05-05 14:24:07','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-83451.svg',0,'attachment','image/svg+xml',0),(4076,20,'2022-05-05 10:24:29','2022-05-05 14:24:29','','Group-8363[1]','','inherit','open','closed','','group-83631','','','2022-05-05 10:24:29','2022-05-05 14:24:29','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-83631.svg',0,'attachment','image/svg+xml',0),(4077,20,'2022-05-05 10:24:58','2022-05-05 14:24:58','','Group-8364[1]','','inherit','open','closed','','group-83641','','','2022-05-05 10:24:58','2022-05-05 14:24:58','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-83641.svg',0,'attachment','image/svg+xml',0),(4078,20,'2022-05-05 10:25:49','2022-05-05 14:25:49','','benefits_teams@2x-scaled[1]','','inherit','open','closed','','benefits_teams2x-scaled1','','','2022-05-05 10:25:49','2022-05-05 14:25:49','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/benefits_teams@2x-scaled1.jpg',0,'attachment','image/jpeg',0),(4079,20,'2022-05-05 10:26:07','2022-05-05 14:26:07','','benefits_teams@2x[1]','','inherit','open','closed','','benefits_teams2x1','','','2022-05-05 10:26:07','2022-05-05 14:26:07','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/benefits_teams@2x1.png',0,'attachment','image/png',0),(4080,20,'2022-05-05 10:26:27','2022-05-05 14:26:27','','Group-8396[1]','','inherit','open','closed','','group-83961','','','2022-05-05 10:26:27','2022-05-05 14:26:27','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/Group-83961.svg',0,'attachment','image/svg+xml',0),(4081,20,'2022-05-05 10:28:13','2022-05-05 14:28:13','','startjourney[1]','','inherit','open','closed','','startjourney1','','','2022-05-05 10:28:13','2022-05-05 14:28:13','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/startjourney1.svg',0,'attachment','image/svg+xml',0),(4082,20,'2022-05-05 10:28:30','2022-05-05 14:28:30','','teamscalability[1]','','inherit','open','closed','','teamscalability1','','','2022-05-05 10:28:30','2022-05-05 14:28:30','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/teamscalability1.svg',0,'attachment','image/svg+xml',0),(4083,20,'2022-05-05 10:28:51','2022-05-05 14:28:51','','accestoptechtalent[1]','','inherit','open','closed','','accestoptechtalent1','','','2022-05-05 10:28:51','2022-05-05 14:28:51','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/accestoptechtalent1.svg',0,'attachment','image/svg+xml',0),(4084,20,'2022-05-05 10:29:18','2022-05-05 14:29:18','','accetotrnlucent[1]','','inherit','open','closed','','accetotrnlucent1','','','2022-05-05 10:29:18','2022-05-05 14:29:18','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/accetotrnlucent1.svg',0,'attachment','image/svg+xml',0),(4085,20,'2022-05-05 10:29:58','2022-05-05 14:29:58','','remote[1]','','inherit','open','closed','','remote1','','','2022-05-05 10:29:58','2022-05-05 14:29:58','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/remote1.svg',0,'attachment','image/svg+xml',0),(4086,20,'2022-05-05 10:30:20','2022-05-05 14:30:20','','fullymanaged[1]','','inherit','open','closed','','fullymanaged1','','','2022-05-05 10:30:20','2022-05-05 14:30:20','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/fullymanaged1.svg',0,'attachment','image/svg+xml',0),(4087,20,'2022-05-05 10:31:13','2022-05-05 14:31:13','','shutterstock_1257061039@2x-scaled[1]','','inherit','open','closed','','shutterstock_12570610392x-scaled1','','','2022-05-05 10:31:13','2022-05-05 14:31:13','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/shutterstock_1257061039@2x-scaled1.jpg',0,'attachment','image/jpeg',0),(4088,20,'2022-05-05 10:31:33','2022-05-05 14:31:33','','shutterstock_1257061039@2x[1]','','inherit','open','closed','','shutterstock_12570610392x1','','','2022-05-05 10:31:33','2022-05-05 14:31:33','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/shutterstock_1257061039@2x1.png',0,'attachment','image/png',0),(4089,20,'2022-05-05 10:31:50','2022-05-05 14:31:50','','tekteamwhatis[1]','','inherit','open','closed','','tekteamwhatis1','','','2022-05-05 10:31:50','2022-05-05 14:31:50','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/tekteamwhatis1.svg',0,'attachment','image/svg+xml',0),(4090,20,'2022-05-05 10:32:42','2022-05-05 14:32:42','','fronendengineer[1]','','inherit','open','closed','','fronendengineer1','','','2022-05-05 10:32:42','2022-05-05 14:32:42','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/fronendengineer1.svg',0,'attachment','image/svg+xml',0),(4091,20,'2022-05-05 10:33:01','2022-05-05 14:33:01','','qaenigineer[1]','','inherit','open','closed','','qaenigineer1','','','2022-05-05 10:33:01','2022-05-05 14:33:01','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/qaenigineer1.svg',0,'attachment','image/svg+xml',0),(4092,20,'2022-05-05 10:33:30','2022-05-05 14:33:30','','businessanalysis[1]','','inherit','open','closed','','businessanalysis1','','','2022-05-05 10:33:30','2022-05-05 14:33:30','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/businessanalysis1.svg',0,'attachment','image/svg+xml',0),(4093,20,'2022-05-05 10:34:06','2022-05-05 14:34:06','','backendengineer[1]','','inherit','open','closed','','backendengineer1','','','2022-05-05 10:34:06','2022-05-05 14:34:06','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/backendengineer1.svg',0,'attachment','image/svg+xml',0),(4094,20,'2022-05-05 10:34:34','2022-05-05 14:34:34','','uiuzxengneer[1]','','inherit','open','closed','','uiuzxengneer1','','','2022-05-05 10:34:34','2022-05-05 14:34:34','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/uiuzxengneer1.svg',0,'attachment','image/svg+xml',0),(4095,20,'2022-05-05 10:35:03','2022-05-05 14:35:03','','productowner[1]','','inherit','open','closed','','productowner1','','','2022-05-05 10:35:03','2022-05-05 14:35:03','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/productowner1.svg',0,'attachment','image/svg+xml',0),(4096,20,'2022-05-05 10:35:29','2022-05-05 14:35:29','','dataml[1]','','inherit','open','closed','','dataml1','','','2022-05-05 10:35:29','2022-05-05 14:35:29','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/dataml1.svg',0,'attachment','image/svg+xml',0),(4097,20,'2022-05-05 10:36:08','2022-05-05 14:36:08','','sre-devops[1]','','inherit','open','closed','','sre-devops1','','','2022-05-05 10:36:08','2022-05-05 14:36:08','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/sre-devops1.svg',0,'attachment','image/svg+xml',0),(4098,20,'2022-05-05 10:36:40','2022-05-05 14:36:40','','scrummaster[1]','','inherit','open','closed','','scrummaster1','','','2022-05-05 10:36:40','2022-05-05 14:36:40','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/scrummaster1.svg',0,'attachment','image/svg+xml',0),(4099,20,'2022-05-05 10:41:23','2022-05-05 14:41:23','','T[1]','','inherit','open','closed','','t1','','','2022-05-05 10:41:23','2022-05-05 14:41:23','',4064,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/T1.svg',0,'attachment','image/svg+xml',0),(4100,20,'2022-05-05 10:50:47','2022-05-05 14:50:47','','TEK Teams','','inherit','closed','closed','','4064-revision-v1','','','2022-05-05 10:50:47','2022-05-05 14:50:47','',4064,'https://www.translucentcomputing.com/2022/05/4064-revision-v1/',0,'revision','',0),(4103,4,'2022-05-11 13:56:30','2022-05-11 17:56:30','','Client Testimonials Include - Page ID 2526','','inherit','closed','closed','','2526-revision-v1','','','2022-05-11 13:56:30','2022-05-11 17:56:30','',2526,'https://www.translucentcomputing.com/2022/05/2526-revision-v1/',0,'revision','',0),(4104,4,'2022-05-11 21:01:26','2022-05-12 01:01:26','','TEK World','','inherit','closed','closed','','4011-revision-v1','','','2022-05-11 21:01:26','2022-05-12 01:01:26','',4011,'https://www.translucentcomputing.com/2022/05/4011-revision-v1/',0,'revision','',0),(4105,17,'2022-05-12 11:54:51','2022-05-12 15:54:51','','TEKTeams','','inherit','closed','closed','','4064-revision-v1','','','2022-05-12 11:54:51','2022-05-12 15:54:51','',4064,'https://www.translucentcomputing.com/2022/05/4064-revision-v1/',0,'revision','',0),(4106,17,'2022-05-12 13:11:12','2022-05-12 17:11:12','','TEK World','','inherit','closed','closed','','4011-autosave-v1','','','2022-05-12 13:11:12','2022-05-12 17:11:12','',4011,'https://www.translucentcomputing.com/2022/05/4011-autosave-v1/',0,'revision','',0),(4107,17,'2022-05-12 13:11:32','2022-05-12 17:11:32','','TEK World','','inherit','closed','closed','','4011-revision-v1','','','2022-05-12 13:11:32','2022-05-12 17:11:32','',4011,'https://www.translucentcomputing.com/2022/05/4011-revision-v1/',0,'revision','',0),(4108,17,'2022-05-12 13:17:04','2022-05-12 17:17:04','','TEK World','','inherit','closed','closed','','4011-revision-v1','','','2022-05-12 13:17:04','2022-05-12 17:17:04','',4011,'https://www.translucentcomputing.com/2022/05/4011-revision-v1/',0,'revision','',0),(4109,17,'2022-05-12 17:05:11','2022-05-12 21:05:11','','Cloud Native Solutions','','inherit','closed','closed','','4028-revision-v1','','','2022-05-12 17:05:11','2022-05-12 21:05:11','',4028,'https://www.translucentcomputing.com/2022/05/4028-revision-v1/',0,'revision','',0),(4111,17,'2022-05-12 23:51:25','2022-05-13 03:51:25','','TEKTeams','','inherit','closed','closed','','4064-revision-v1','','','2022-05-12 23:51:25','2022-05-13 03:51:25','',4064,'https://www.translucentcomputing.com/2022/05/4064-revision-v1/',0,'revision','',0),(4112,17,'2022-05-13 00:27:41','2022-05-13 04:27:41','','TEKTeams','','inherit','closed','closed','','4064-revision-v1','','','2022-05-13 00:27:41','2022-05-13 04:27:41','',4064,'https://www.translucentcomputing.com/2022/05/4064-revision-v1/',0,'revision','',0),(4113,17,'2022-05-13 00:38:01','2022-05-13 04:38:01','','TEKTeams','','inherit','closed','closed','','4064-revision-v1','','','2022-05-13 00:38:01','2022-05-13 04:38:01','',4064,'https://www.translucentcomputing.com/2022/05/4064-revision-v1/',0,'revision','',0),(4114,17,'2022-05-13 01:07:34','2022-05-13 05:07:34','','Our Process','','inherit','closed','closed','','60-autosave-v1','','','2022-05-13 01:07:34','2022-05-13 05:07:34','',60,'https://www.translucentcomputing.com/2022/05/60-autosave-v1/',0,'revision','',0),(4115,17,'2022-05-13 01:11:44','2022-05-13 05:11:44','','TEKStack','','inherit','closed','closed','','1822-autosave-v1','','','2022-05-13 01:11:44','2022-05-13 05:11:44','',1822,'https://www.translucentcomputing.com/2022/05/1822-autosave-v1/',0,'revision','',0),(4116,17,'2022-05-13 01:13:37','2022-05-13 05:13:37','','TEKStack','','inherit','closed','closed','','1822-revision-v1','','','2022-05-13 01:13:37','2022-05-13 05:13:37','',1822,'https://www.translucentcomputing.com/2022/05/1822-revision-v1/',0,'revision','',0),(4117,17,'2022-05-13 01:14:21','2022-05-13 05:14:21','','Canadian Black Book Case Study','','inherit','closed','closed','','804-autosave-v1','','','2022-05-13 01:14:21','2022-05-13 05:14:21','',804,'https://www.translucentcomputing.com/2022/05/804-autosave-v1/',0,'revision','',0),(4118,17,'2022-05-13 01:20:19','2022-05-13 05:20:19','','Case Studies','','inherit','closed','closed','','46-autosave-v1','','','2022-05-13 01:20:19','2022-05-13 05:20:19','',46,'https://www.translucentcomputing.com/2022/05/46-autosave-v1/',0,'revision','',0),(4119,17,'2022-05-13 01:25:15','2022-05-13 05:25:15','\r\n

Imagine that you’re buying a smartphone. It’s the phone that you’ve desperately been waiting for, and you like the price. It\'s heavily discounted; the price is right. The phone is already in your shopping cart. Just as you’re about to make the purchase, you realize that you don’t have enough money to buy the phone. Fortunately, there’s an option for you to finance the phone through a micro-loan.

\r\n\r\n\r\n\r\n

You click Apply for a Loan on the checkout screen. All you have to do is provide your name, address, and ID validation. Behind the scenes, an AI Automated Loan Process validates your identity, performs an immediate credit score check, connects to your bank, and voilà! It’s approved in 5 minutes and you have your phone!

\r\n\r\n\r\n\r\n

You expect a simple user experience.

\r\n\r\n\r\n\r\n

Now think about your own organization. Maybe you feel your systems are “good enough”, but good enough won’t keep you competitive in today’s marketplace. Have you made data a first-class citizen? Have you ensured a simple experience for your people and customers? Are you using modern practices, automation and tools to improve efficiency, make more money and increase savings, without increasing overhead costs?

\r\n\r\n\r\n\r\n

If you answered “no” or had difficulty answering any of these questions, then you should really be thinking about a data driven approach to your organization’s transformation. Let data drive the transformation.

\r\n\r\n\r\n\r\n

Why do you care? You care because this is how your customers want to do business especially in the current market conditions. What\'s important to them must be important to you. Happy customers = higher market share.

\r\n\r\n\r\n\r\n

Before we dive into the awesomeness of data driven digital transformation, you need to understand the three types of transformations.

\r\n\r\n\r\n\r\n

Digitization, Digitalization, and Data Driven Digital Transformation

\r\n\r\n\r\n\r\n
\r\n
\r\n

Digitization refers to “creating a digital representation of physical objects”. This is also known as a digital artifact. For example, a paper contract can be digitized by converting it into a PDF document. The digitized version of the document is easier to distribute, and is easier to search through.

\r\n\r\n\r\n\r\n

Digitalization refers to “enabling, improving, or transforming business processes by leveraging digital [technologies] and digitized data”. For example, the traditional process of signing a contract means signing multiple paper copies (one for each party) of the contract by pen, and delivering a copy to each party by hand. When this process is digitalized, the single copy of the contract is the source of truth. It is signed by each party using software. All parties are notified electronically of the signing, and have access to the same electronic copy of the contract. The new process uses less paper, is a lot less complex than the old process, has a single source of truth and is automated so all parties can sign when they are available to. Taking business to much more effective level.

\r\n\r\n\r\n\r\n

Data Driven Digital Transformations enable you to achieve digitization and/or digitalization. Whatever your organization’s goals. Translucent can help you be competitive.

\r\n
\r\n\r\n\r\n\r\n
\r\n
\"\"
\r\n
\r\n
\r\n\r\n\r\n\r\n

What Data Represents Your Organization?

\r\n\r\n\r\n\r\n

You’re not Netflix. Or Facebook. Or Google. Your organization has its own unique identity, so you shouldn’t try to be like another organization. Let us help you carve your journey, by defining the data that best represents your organization. We help make your data malleable, so that other services (internal and external) may consume your data with less friction. Data is the new oil. Translucent can help you unlock your businesses untapped potential using data to give you insights and automate processes. Competing today and building for the future!

\r\n\r\n\r\n\r\n

What’s In It For Your Organization?

\r\n\r\n\r\n\r\n

There’s a new urgency for organizations to go digital, thanks in large part to the lockdowns and restrictions put in place to curb the spread of Covid19.

\r\n\r\n\r\n\r\n

We help your organization with:

\r\n\r\n\r\n\r\n
\r\n
\r\n

1. Scale. If, for example, you suddenly get more visitors to your site on Black Friday, can your infrastructure scale to handle it? It’s midnight, and most of your customers are sleeping. Why are you over-provisioned, when nobody is using your service? We build a system that is responsive to your customers’ needs. This saves you money on low-demand days, and ensures that you continue to operate smoothly on high-demand days, with minimal disruption and cost.

\r\n
\r\n\r\n\r\n\r\n
\r\n

2. Greater collaboration. Silos can be an organization’s worst enemy. They just slow every priority down. Nobody wants that. Translucent’s data driven approach builds efficient platforms and automated processes to enable greater collaboration amongst your internal and external users as well as your customers. When teams can deal with issues faster, it means faster feature rollouts, and responses to your customers needs.

\r\n
\r\n\r\n\r\n\r\n
\r\n

3. Easy integration. Every modern business partnership requires data integration. You may have to send data to a third party. You may have to receive data from a third party. With a data driven first approach, we help design secure APIs that enable your partners to easily connect with your services. This makes integration easier and less costly. Making you more money enabling cross-selling opportunities.

\r\n
\r\n
\r\n\r\n\r\n\r\n
\r\n
\r\n
\"\"
\r\n
\r\n\r\n\r\n\r\n
\r\n

The Translucent Difference

\r\n\r\n\r\n\r\n

At Translucent, we pride ourselves on our passion for technology, innovation, and change.

\r\n\r\n\r\n\r\n

We’re not here to fill your head with buzzwords. We’re here to get to work.

\r\n\r\n\r\n\r\n

Technology can be complex and confusing to navigate. We’re not here to push complex flows on you. We’re here to take complex processes and simplify them, because we understand technology well.

\r\n\r\n\r\n\r\n

We know this, because we’ve done it before, many times over.

\r\n
\r\n
\r\n','What is Data Driven Digital Transformation?','','inherit','closed','closed','','2249-revision-v1','','','2022-05-13 01:25:15','2022-05-13 05:25:15','',2249,'https://www.translucentcomputing.com/2022/05/2249-revision-v1/',0,'revision','',0),(4120,17,'2022-05-13 01:31:21','2022-05-13 05:31:21','','DevOps','','inherit','closed','closed','','18-autosave-v1','','','2022-05-13 01:31:21','2022-05-13 05:31:21','',18,'https://www.translucentcomputing.com/2022/05/18-autosave-v1/',0,'revision','',0),(4121,17,'2022-05-13 01:51:02','2022-05-13 05:51:02','','Services','','inherit','closed','closed','','829-autosave-v1','','','2022-05-13 01:51:02','2022-05-13 05:51:02','',829,'https://www.translucentcomputing.com/2022/05/829-autosave-v1/',0,'revision','',0),(4122,17,'2022-05-13 02:08:03','2022-05-13 06:08:03','','TEKTeams','','inherit','closed','closed','','4064-revision-v1','','','2022-05-13 02:08:03','2022-05-13 06:08:03','',4064,'https://www.translucentcomputing.com/2022/05/4064-revision-v1/',0,'revision','',0),(4123,17,'2022-05-13 03:26:30','2022-05-13 07:26:30','','TEKTeams','','inherit','closed','closed','','4064-revision-v1','','','2022-05-13 03:26:30','2022-05-13 07:26:30','',4064,'https://www.translucentcomputing.com/2022/05/4064-revision-v1/',0,'revision','',0),(4124,17,'2022-05-13 11:30:09','2022-05-13 15:30:09','','TEKTeams','','inherit','closed','closed','','4064-revision-v1','','','2022-05-13 11:30:09','2022-05-13 15:30:09','',4064,'https://www.translucentcomputing.com/2022/05/4064-revision-v1/',0,'revision','',0),(4125,17,'2022-05-13 11:42:04','2022-05-13 15:42:04','','TEKTeams','','inherit','closed','closed','','4064-revision-v1','','','2022-05-13 11:42:04','2022-05-13 15:42:04','',4064,'https://www.translucentcomputing.com/2022/05/4064-revision-v1/',0,'revision','',0),(4126,17,'2022-05-13 22:38:02','2022-05-14 02:38:02','','TEKTeams','','inherit','closed','closed','','4064-autosave-v1','','','2022-05-13 22:38:02','2022-05-14 02:38:02','',4064,'https://www.translucentcomputing.com/2022/05/4064-autosave-v1/',0,'revision','',0),(4127,17,'2022-05-13 16:58:05','2022-05-13 20:58:05','','TEKTeams','','inherit','closed','closed','','4064-revision-v1','','','2022-05-13 16:58:05','2022-05-13 20:58:05','',4064,'https://www.translucentcomputing.com/2022/05/4064-revision-v1/',0,'revision','',0),(4128,17,'2022-05-13 17:04:40','2022-05-13 21:04:40','','Cloud Native Solutions','','inherit','closed','closed','','4028-revision-v1','','','2022-05-13 17:04:40','2022-05-13 21:04:40','',4028,'https://www.translucentcomputing.com/2022/05/4028-revision-v1/',0,'revision','',0),(4129,17,'2022-05-13 22:38:39','2022-05-14 02:38:39','','TEKTeams','','inherit','closed','closed','','4064-revision-v1','','','2022-05-13 22:38:39','2022-05-14 02:38:39','',4064,'https://www.translucentcomputing.com/2022/05/4064-revision-v1/',0,'revision','',0),(4131,20,'2022-05-17 21:16:42','2022-05-18 01:16:42','','fundopattern','','inherit','open','closed','','fundopattern','','','2022-05-17 21:16:42','2022-05-18 01:16:42','',0,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/fundopattern.png',0,'attachment','image/png',0),(4132,20,'2022-05-17 21:31:24','2022-05-18 01:31:24','','fundopattern-services','','inherit','open','closed','','fundopattern-services','','','2022-05-17 21:31:24','2022-05-18 01:31:24','',0,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/fundopattern-services.png',0,'attachment','image/png',0),(4133,1,'2022-05-17 21:42:55','2022-05-17 21:42:55','','banner1.png','','inherit','closed','closed','','banner1-png','','','2022-05-17 21:42:55','2022-05-17 21:42:55','',0,'https://www.translucentcomputing.com/wp-content/uploads/revslider/slider-02-01-2022/banner1.png',0,'attachment','image/png',0),(4134,1,'2022-05-17 21:42:56','2022-05-17 21:42:56','','Group-102@3x.png','','inherit','closed','closed','','group-1023x-png','','','2022-05-17 21:42:56','2022-05-17 21:42:56','',0,'https://www.translucentcomputing.com/wp-content/uploads/revslider/slider-02-01-2022/Group-102@3x.png',0,'attachment','image/png',0),(4135,1,'2022-05-17 21:42:56','2022-05-17 21:42:56','','banner2.png','','inherit','closed','closed','','banner2-png','','','2022-05-17 21:42:56','2022-05-17 21:42:56','',0,'https://www.translucentcomputing.com/wp-content/uploads/revslider/slider-02-01-2022/banner2.png',0,'attachment','image/png',0),(4136,1,'2022-05-17 21:42:56','2022-05-17 21:42:56','','home31.png','','inherit','closed','closed','','home31-png','','','2022-05-17 21:42:56','2022-05-17 21:42:56','',0,'https://www.translucentcomputing.com/wp-content/uploads/revslider/slider-02-01-2022/home31.png',0,'attachment','image/png',0),(4137,1,'2022-05-17 21:42:56','2022-05-17 21:42:56','','home4.png','','inherit','closed','closed','','home4-png','','','2022-05-17 21:42:56','2022-05-17 21:42:56','',0,'https://www.translucentcomputing.com/wp-content/uploads/revslider/slider-02-01-2022/home4.png',0,'attachment','image/png',0),(4140,4,'2022-05-19 10:33:31','2022-05-19 14:33:31','','Cloud Native Solutions','','inherit','closed','closed','','4028-revision-v1','','','2022-05-19 10:33:31','2022-05-19 14:33:31','',4028,'https://www.translucentcomputing.com/2022/05/4028-revision-v1/',0,'revision','',0),(4141,4,'2022-05-19 10:35:38','2022-05-19 14:35:38','','TEK World','','inherit','closed','closed','','4011-revision-v1','','','2022-05-19 10:35:38','2022-05-19 14:35:38','',4011,'https://www.translucentcomputing.com/2022/05/4011-revision-v1/',0,'revision','',0),(4143,4,'2022-05-20 12:19:31','2022-05-20 16:19:31','Translucent helps companies build and scale smart applications, working together to achieve the best results.\r\n

Here are five Ways to Increase Software Innovation:

\r\n

Recognizing client\'s requirements and goals

\r\nBefore any technological development, having a full grasp of desired client goals helps create an accurate, flexible roadmap that fulfills the client’s vision.\r\n

Solving client problems

\r\nFocusing attention on issues that the client has struggled with helps ensure the scalability of application development and marketing the right way.\r\n

Continuous feedback

\r\nEnsuring the solution is aligned with the client\'s expectations is essential throughout the process. Test the application as often and possible and act on end user feedback.\r\n

Assembling the best team

\r\nHaving a team with the right combination of skills to accomplish any given task during the development stages of the software innovation is crucial.\r\n

Innovate

\r\nInnovating within the organization by having your internal teams collaborate more and sharing new fresh ideas helps identify and refine potential areas for improvement or new features for your application. Additionally, focusing on simplifying repetitive tasks can have a tremendous business impact on your company’s future application.\r\n\r\nHave a question regarding the process of increasing your software innovation? Reach out to Translucents consultants and they will be happy to answer any questions!','5 Ways To Increase Software Innovation','','publish','open','open','','5-ways-to-increase-software-innovation','','','2022-05-23 11:16:17','2022-05-23 15:16:17','',0,'https://www.translucentcomputing.com/?p=4143',0,'post','',0),(4144,9,'2022-05-20 11:58:22','2022-05-20 15:58:22','Translucent helps companies build and scale smart applications, working together to achieve the best results.\r\n\r\n \r\n\r\nHere are five Ways to Increase Software Innovation:\r\n\r\n \r\n\r\nRecognizing client\'s requirements and goals\r\n\r\nBefore any technological development, having a full grasp of desired client goals helps create an accurate, flexible roadmap that fulfills the client’s vision.\r\n\r\n \r\n\r\nSolving client problems\r\n\r\nFocusing attention on issues that the client has struggled with helps ensure the scalability of application development and marketing the right way.\r\n\r\n \r\n\r\nContinuous feedback\r\n\r\nEnsuring the solution is aligned with the client\'s expectations is essential throughout the process. Test the application as often and possible and act on end user feedback.\r\n\r\n \r\n\r\nAssembling the best team\r\n\r\nHaving a team with the right combination of skills to accomplish any given task during the development stages of the software innovation is crucial.\r\n\r\n \r\n\r\nInnovate\r\n\r\nInnovating within the organization by having your internal teams collaborate more and sharing new fresh ideas helps identify and refine potential areas for improvement or new features for your application. Additionally, focusing on simplifying repetitive tasks can have a tremendous business impact on your company’s future application.\r\n\r\n \r\n\r\nHave a question regarding the process of increasing your software innovation? Reach out to Translucents consultants and they will be happy to answer any questions!\r\n\r\n ','5 Ways To Increase Software Innovation','','inherit','closed','closed','','4143-revision-v1','','','2022-05-20 11:58:22','2022-05-20 15:58:22','',4143,'https://www.translucentcomputing.com/2022/05/4143-revision-v1/',0,'revision','',0),(4145,9,'2022-05-20 11:58:59','2022-05-20 15:58:59','Translucent helps companies build and scale smart applications, working together to achieve the best results.\r\n\r\n \r\n\r\nHere are five Ways to Increase Software Innovation:\r\n\r\n \r\n\r\nRecognizing client\'s requirements and goals\r\n\r\nBefore any technological development, having a full grasp of desired client goals helps create an accurate, flexible roadmap that fulfills the client’s vision.\r\n\r\n \r\n\r\nSolving client problems\r\n\r\nFocusing attention on issues that the client has struggled with helps ensure the scalability of application development and marketing the right way.\r\n\r\n \r\n\r\nContinuous feedback\r\n\r\nEnsuring the solution is aligned with the client\'s expectations is essential throughout the process. Test the application as often and possible and act on end user feedback.\r\n\r\n \r\n\r\nAssembling the best team\r\n\r\nHaving a team with the right combination of skills to accomplish any given task during the development stages of the software innovation is crucial.\r\n\r\n \r\n\r\nInnovate\r\n\r\nInnovating within the organization by having your internal teams collaborate more and sharing new fresh ideas helps identify and refine potential areas for improvement or new features for your application. Additionally, focusing on simplifying repetitive tasks can have a tremendous business impact on your company’s future application.\r\n\r\n \r\n\r\nHave a question regarding the process of increasing your software innovation? Reach out to Translucents consultants and they will be happy to answer any questions!\r\n\r\n ','','','inherit','closed','closed','','4143-revision-v1','','','2022-05-20 11:58:59','2022-05-20 15:58:59','',4143,'https://www.translucentcomputing.com/2022/05/4143-revision-v1/',0,'revision','',0),(4146,9,'2022-05-20 11:59:03','2022-05-20 15:59:03','Translucent helps companies build and scale smart applications, working together to achieve the best results.\r\n\r\n \r\n\r\nHere are five Ways to Increase Software Innovation:\r\n\r\n \r\n\r\nRecognizing client\'s requirements and goals\r\n\r\nBefore any technological development, having a full grasp of desired client goals helps create an accurate, flexible roadmap that fulfills the client’s vision.\r\n\r\n \r\n\r\nSolving client problems\r\n\r\nFocusing attention on issues that the client has struggled with helps ensure the scalability of application development and marketing the right way.\r\n\r\n \r\n\r\nContinuous feedback\r\n\r\nEnsuring the solution is aligned with the client\'s expectations is essential throughout the process. Test the application as often and possible and act on end user feedback.\r\n\r\n \r\n\r\nAssembling the best team\r\n\r\nHaving a team with the right combination of skills to accomplish any given task during the development stages of the software innovation is crucial.\r\n\r\n \r\n\r\nInnovate\r\n\r\nInnovating within the organization by having your internal teams collaborate more and sharing new fresh ideas helps identify and refine potential areas for improvement or new features for your application. Additionally, focusing on simplifying repetitive tasks can have a tremendous business impact on your company’s future application.\r\n\r\n \r\n\r\nHave a question regarding the process of increasing your software innovation? Reach out to Translucents consultants and they will be happy to answer any questions!\r\n\r\n ','','','inherit','closed','closed','','4143-revision-v1','','','2022-05-20 11:59:03','2022-05-20 15:59:03','',4143,'https://www.translucentcomputing.com/2022/05/4143-revision-v1/',0,'revision','',0),(4147,9,'2022-05-20 11:59:19','2022-05-20 15:59:19','Translucent helps companies build and scale smart applications, working together to achieve the best results.\r\n\r\n \r\n\r\nHere are five Ways to Increase Software Innovation:\r\n\r\n \r\n\r\nRecognizing client\'s requirements and goals\r\n\r\nBefore any technological development, having a full grasp of desired client goals helps create an accurate, flexible roadmap that fulfills the client’s vision.\r\n\r\n \r\n\r\nSolving client problems\r\n\r\nFocusing attention on issues that the client has struggled with helps ensure the scalability of application development and marketing the right way.\r\n\r\n \r\n\r\nContinuous feedback\r\n\r\nEnsuring the solution is aligned with the client\'s expectations is essential throughout the process. Test the application as often and possible and act on end user feedback.\r\n\r\n \r\n\r\nAssembling the best team\r\n\r\nHaving a team with the right combination of skills to accomplish any given task during the development stages of the software innovation is crucial.\r\n\r\n \r\n\r\nInnovate\r\n\r\nInnovating within the organization by having your internal teams collaborate more and sharing new fresh ideas helps identify and refine potential areas for improvement or new features for your application. Additionally, focusing on simplifying repetitive tasks can have a tremendous business impact on your company’s future application.\r\n\r\n \r\n\r\nHave a question regarding the process of increasing your software innovation? Reach out to Translucents consultants and they will be happy to answer any questions!\r\n\r\n ','5 Ways To Increase Software Innovation','','inherit','closed','closed','','4143-revision-v1','','','2022-05-20 11:59:19','2022-05-20 15:59:19','',4143,'https://www.translucentcomputing.com/2022/05/4143-revision-v1/',0,'revision','',0),(4148,9,'2022-05-20 11:59:54','2022-05-20 15:59:54','Translucent helps companies build and scale smart applications, working together to achieve the best results.\r\n\r\n \r\n\r\nHere are five Ways to Increase Software Innovation:\r\n\r\n \r\n\r\nRecognizing client\'s requirements and goals\r\n\r\nBefore any technological development, having a full grasp of desired client goals helps create an accurate, flexible roadmap that fulfills the client’s vision.\r\n\r\n \r\n\r\nSolving client problems\r\n\r\nFocusing attention on issues that the client has struggled with helps ensure the scalability of application development and marketing the right way.\r\n\r\n \r\n\r\nContinuous feedback\r\n\r\nEnsuring the solution is aligned with the client\'s expectations is essential throughout the process. Test the application as often and possible and act on end user feedback.\r\n\r\n \r\n\r\nAssembling the best team\r\n\r\nHaving a team with the right combination of skills to accomplish any given task during the development stages of the software innovation is crucial.\r\n\r\n \r\n\r\nInnovate\r\n\r\nInnovating within the organization by having your internal teams collaborate more and sharing new fresh ideas helps identify and refine potential areas for improvement or new features for your application. Additionally, focusing on simplifying repetitive tasks can have a tremendous business impact on your company’s future application.\r\n\r\n \r\n\r\nHave a question regarding the process of increasing your software innovation? Reach out to Translucents consultants and they will be happy to answer any questions!\r\n\r\n ','5 Ways To Increase Software Innovation','','inherit','closed','closed','','4143-revision-v1','','','2022-05-20 11:59:54','2022-05-20 15:59:54','',4143,'https://www.translucentcomputing.com/2022/05/4143-revision-v1/',0,'revision','',0),(4149,9,'2022-05-20 12:01:26','2022-05-20 16:01:26','\r\n

At Translucent Computing, we are continuously examining our DevSecOp processes to deliver better value to our customers. Google Cloud Composer is managed Apache Airflow service that provides speed of deployment and enterprise security, leading to providing more efficient service to our clients by focusing on delivering the business value from data pipelines executed in Apache Airflow and spending less time on the infrastructure deployment and management. Here we examine the deployment of Cloud Composer with Terraform.

\r\n\r\n\r\n\r\n

List of files used in this deployment.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

We start with configuring a service account for the Terraform script execution. Kicking off a Bash script with variables that are required by the gcloud commands.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

We can create the service account and credentials file using the above parameters and assign the required roles to the service account.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

Since we also have chosen to use Google Cloud Storage as our backend to store the Terraform state, we create a bucket in Google Cloud Storage and generate a backend Terraform file.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

This initial configuration is enough to use Terraform for the rest of the deployment. Google provides Terraform providers for the Google Cloud and Google Cloud Composer. Since we have transitioned to Google Cloud Composer 2 which provides benefits of Google GKE Autopilot which is designed to reduce the operational cost, we have to use the Google beta Terraform provider.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

We next configure the provider.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

With backend.tf generated and the provider configured we can focus on the deployment of Cloud Composer. We start by defining the supporting resources that are required by Cloud Composer.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

We can now define the main Terraform resource that creates the Cloud Composer.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

The configuration Cloud Composer starts with the image versions to use. The image version defines the Cloud Composer version that is created and the Airflow version and Python version. Google publishes the Cloud Composer image versions here https://cloud.google.com/composer/docs/concepts/versioning/composer-versions . Next is the environment size, which defines the resource configuration for the scheduler, web server, and workers.

\r\n\r\n\r\n\r\n
\"\"\r\n
Small Environment Size Configuration
\r\n
\r\n\r\n\r\n\r\n

The predefined configuration can be customized, which means all the resource configurations would have to be added to the Terraform resource configuration.

\r\n\r\n\r\n\r\n

Google cloud composer provides enterprise security with several security configuration options.

\r\n\r\n\r\n\r\n
\"\"\r\n
https://youtu.be/RrKXZcKOz4A
\r\n
\r\n\r\n\r\n\r\n

For this development environment, Cloud Composer deployment, we choose to deploy Cloud Composer in a Private IP strategy with VPC-Native mode. The GKE deployed with Cloud Composer is deployed as a private cluster, Cloud Composer is deployed to a private network, and the Cloud SQL deployed with Cloud Composer is deployed to a private network. Only public or internet access allowed is to the Apache Airflow Web Server with SSO managed by Google IAM. To accomplish such configuration, we define private_environment_config and node_config in the Terraform Cloud Composer resource config. Lastly, we define a maintenance window to allow for system upgrades.

\r\n\r\n\r\n\r\n

Once you execute the Terraform script with

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

after about 30 min the networking, GKE, Cloud SQL, AirFlow Web Server, and Cloud Composer will be deployed and ready to use. To support further processing we define output Terraform variables that provide feedback from the deployment.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

The outputs provide the information about the GKE cluster, AirFlow Web Server URL, and the Google Storage bucket where the AirFlow DAG should be stored.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

There are many variables used in the Terraform script defined in the variables.tf file. Here we list some of the most relevant values for these variables.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

The Terraform deployment allows us to deploy data pipelines infrastructure fast, securely, and with different configurations for production deployment. It is a part of a broader CI/CD pipeline that focuses on delivering value to Translucent clients via efficient DevSecOps.

\r\n','Cloud Composer - Terraform Deployment','','inherit','closed','closed','','3688-autosave-v1','','','2022-05-20 12:01:26','2022-05-20 16:01:26','',3688,'https://www.translucentcomputing.com/2022/05/3688-autosave-v1/',0,'revision','',0),(4151,9,'2022-05-23 11:15:57','2022-05-23 15:15:57','Translucent helps companies build and scale smart applications, working together to achieve the best results.\r\n

Here are five Ways to Increase Software Innovation:

\r\n

Recognizing client\'s requirements and goals

\r\nBefore any technological development, having a full grasp of desired client goals helps create an accurate, flexible roadmap that fulfills the client’s vision.\r\n

Solving client problems

\r\nFocusing attention on issues that the client has struggled with helps ensure the scalability of application development and marketing the right way.\r\n

Continuous feedback

\r\nEnsuring the solution is aligned with the client\'s expectations is essential throughout the process. Test the application as often and possible and act on end user feedback.\r\n

Assembling the best team

\r\nHaving a team with the right combination of skills to accomplish any given task during the development stages of the software innovation is crucial.\r\n

Innovate

\r\nInnovating within the organization by having your internal teams collaborate more and sharing new fresh ideas helps identify and refine potential areas for improvement or new features for your application. Additionally, focusing on simplifying repetitive tasks can have a tremendous business impact on your company’s future application.\r\n\r\nHave a question regarding the process of increasing your software innovation? Reach out to Translucents consultants and they will be happy to answer any questions!','5 Ways To Increase Software Innovation','','inherit','closed','closed','','4143-autosave-v1','','','2022-05-23 11:15:57','2022-05-23 15:15:57','',4143,'https://www.translucentcomputing.com/2022/05/4143-autosave-v1/',0,'revision','',0),(4153,9,'2022-05-20 12:08:57','2022-05-20 16:08:57','Translucent helps companies build and scale smart applications, working together to achieve the best results.\r\n\r\nHere are five Ways to Increase Software Innovation:\r\n\r\nRecognizing client\'s requirements and goals\r\n\r\nBefore any technological development, having a full grasp of desired client goals helps create an accurate, flexible roadmap that fulfills the client’s vision.\r\n\r\nSolving client problems\r\n\r\nFocusing attention on issues that the client has struggled with helps ensure the scalability of application development and marketing the right way.\r\n\r\nContinuous feedback\r\n\r\nEnsuring the solution is aligned with the client\'s expectations is essential throughout the process. Test the application as often and possible and act on end user feedback.\r\n\r\nAssembling the best team\r\n\r\nHaving a team with the right combination of skills to accomplish any given task during the development stages of the software innovation is crucial.\r\n\r\nInnovate\r\n\r\nInnovating within the organization by having your internal teams collaborate more and sharing new fresh ideas helps identify and refine potential areas for improvement or new features for your application. Additionally, focusing on simplifying repetitive tasks can have a tremendous business impact on your company’s future application.\r\n\r\nHave a question regarding the process of increasing your software innovation? Reach out to Translucents consultants and they will be happy to answer any questions!','5 Ways To Increase Software Innovation','','inherit','closed','closed','','4143-revision-v1','','','2022-05-20 12:08:57','2022-05-20 16:08:57','',4143,'https://www.translucentcomputing.com/2022/05/4143-revision-v1/',0,'revision','',0),(4154,9,'2022-05-20 12:09:37','2022-05-20 16:09:37','Translucent helps companies build and scale smart applications, working together to achieve the best results.\r\n\r\nHere are five Ways to Increase Software Innovation:\r\n\r\nRecognizing client\'s requirements and goals\r\n\r\nBefore any technological development, having a full grasp of desired client goals helps create an accurate, flexible roadmap that fulfills the client’s vision.\r\n\r\nSolving client problems\r\n\r\nFocusing attention on issues that the client has struggled with helps ensure the scalability of application development and marketing the right way.\r\n\r\nContinuous feedback\r\n\r\nEnsuring the solution is aligned with the client\'s expectations is essential throughout the process. Test the application as often and possible and act on end user feedback.\r\n\r\nAssembling the best team\r\n\r\nHaving a team with the right combination of skills to accomplish any given task during the development stages of the software innovation is crucial.\r\n\r\nInnovate\r\n\r\nInnovating within the organization by having your internal teams collaborate more and sharing new fresh ideas helps identify and refine potential areas for improvement or new features for your application. Additionally, focusing on simplifying repetitive tasks can have a tremendous business impact on your company’s future application.\r\n\r\nHave a question regarding the process of increasing your software innovation? Reach out to Translucents consultants and they will be happy to answer any questions!','5 Ways To Increase Software Innovation','','inherit','closed','closed','','4143-revision-v1','','','2022-05-20 12:09:37','2022-05-20 16:09:37','',4143,'https://www.translucentcomputing.com/2022/05/4143-revision-v1/',0,'revision','',0),(4155,9,'2022-05-20 12:15:57','2022-05-20 16:15:57','Translucent helps companies build and scale smart applications, working together to achieve the best results.\r\n\r\nHere are five Ways to Increase Software Innovation:\r\n

Recognizing client\'s requirements and goals

\r\nBefore any technological development, having a full grasp of desired client goals helps create an accurate, flexible roadmap that fulfills the client’s vision.\r\n

Solving client problems

\r\nFocusing attention on issues that the client has struggled with helps ensure the scalability of application development and marketing the right way.\r\n

Continuous feedback

\r\nEnsuring the solution is aligned with the client\'s expectations is essential throughout the process. Test the application as often and possible and act on end user feedback.\r\n

Assembling the best team

\r\nHaving a team with the right combination of skills to accomplish any given task during the development stages of the software innovation is crucial.\r\n

Innovate

\r\nInnovating within the organization by having your internal teams collaborate more and sharing new fresh ideas helps identify and refine potential areas for improvement or new features for your application. Additionally, focusing on simplifying repetitive tasks can have a tremendous business impact on your company’s future application.\r\n\r\nHave a question regarding the process of increasing your software innovation? Reach out to Translucents consultants and they will be happy to answer any questions!','5 Ways To Increase Software Innovation','','inherit','closed','closed','','4143-revision-v1','','','2022-05-20 12:15:57','2022-05-20 16:15:57','',4143,'https://www.translucentcomputing.com/2022/05/4143-revision-v1/',0,'revision','',0),(4156,9,'2022-05-20 12:16:45','2022-05-20 16:16:45','Translucent helps companies build and scale smart applications, working together to achieve the best results.\r\n

Here are five Ways to Increase Software Innovation:

\r\n

Recognizing client\'s requirements and goals

\r\nBefore any technological development, having a full grasp of desired client goals helps create an accurate, flexible roadmap that fulfills the client’s vision.\r\n

Solving client problems

\r\nFocusing attention on issues that the client has struggled with helps ensure the scalability of application development and marketing the right way.\r\n

Continuous feedback

\r\nEnsuring the solution is aligned with the client\'s expectations is essential throughout the process. Test the application as often and possible and act on end user feedback.\r\n

Assembling the best team

\r\nHaving a team with the right combination of skills to accomplish any given task during the development stages of the software innovation is crucial.\r\n

Innovate

\r\nInnovating within the organization by having your internal teams collaborate more and sharing new fresh ideas helps identify and refine potential areas for improvement or new features for your application. Additionally, focusing on simplifying repetitive tasks can have a tremendous business impact on your company’s future application.\r\n\r\nHave a question regarding the process of increasing your software innovation? Reach out to Translucents consultants and they will be happy to answer any questions!','5 Ways To Increase Software Innovation','','inherit','closed','closed','','4143-revision-v1','','','2022-05-20 12:16:45','2022-05-20 16:16:45','',4143,'https://www.translucentcomputing.com/2022/05/4143-revision-v1/',0,'revision','',0),(4157,9,'2022-05-20 12:18:47','2022-05-20 16:18:47','Translucent helps companies build and scale smart applications, working together to achieve the best results.\r\n

Here are five Ways to Increase Software Innovation:

\r\n

Recognizing client\'s requirements and goals

\r\nBefore any technological development, having a full grasp of desired client goals helps create an accurate, flexible roadmap that fulfills the client’s vision.\r\n

Solving client problems

\r\nFocusing attention on issues that the client has struggled with helps ensure the scalability of application development and marketing the right way.\r\n

Continuous feedback

\r\nEnsuring the solution is aligned with the client\'s expectations is essential throughout the process. Test the application as often and possible and act on end user feedback.\r\n

Assembling the best team

\r\nHaving a team with the right combination of skills to accomplish any given task during the development stages of the software innovation is crucial.\r\n

Innovate

\r\nInnovating within the organization by having your internal teams collaborate more and sharing new fresh ideas helps identify and refine potential areas for improvement or new features for your application. Additionally, focusing on simplifying repetitive tasks can have a tremendous business impact on your company’s future application.\r\n\r\nHave a question regarding the process of increasing your software innovation? Reach out to Translucents consultants and they will be happy to answer any questions!','5 Ways To Increase Software Innovation','','inherit','closed','closed','','4143-revision-v1','','','2022-05-20 12:18:47','2022-05-20 16:18:47','',4143,'https://www.translucentcomputing.com/2022/05/4143-revision-v1/',0,'revision','',0),(4158,9,'2022-05-20 12:24:22','2022-05-20 16:24:22','','5 Ways To Increase Software Innovation','','inherit','open','closed','','ih-linkedin-04-4','','','2022-05-20 12:24:36','2022-05-20 16:24:36','',4143,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/IH-Linkedin-04-4.png',0,'attachment','image/png',0),(4159,4,'2022-05-20 18:11:48','2022-05-20 22:11:48','\r\n

At Translucent Computing, we are continuously examining our DevSecOp processes to deliver better value to our customers. Google Cloud Composer is managed Apache Airflow service that provides speed of deployment and enterprise security, leading to providing more efficient service to our clients by focusing on delivering the business value from data pipelines executed in Apache Airflow and spending less time on the infrastructure deployment and management. Here we examine the deployment of Cloud Composer with Terraform.

\r\n\r\n\r\n\r\n

List of files used in this deployment.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

We start with configuring a service account for the Terraform script execution. Kicking off a Bash script with variables that are required by the gcloud commands.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

We can create the service account and credentials file using the above parameters and assign the required roles to the service account.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

Since we also have chosen to use Google Cloud Storage as our backend to store the Terraform state, we create a bucket in Google Cloud Storage and generate a backend Terraform file.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

This initial configuration is enough to use Terraform for the rest of the deployment. Google provides Terraform providers for the Google Cloud and Google Cloud Composer. Since we have transitioned to Google Cloud Composer 2 which provides benefits of Google GKE Autopilot which is designed to reduce the operational cost, we have to use the Google beta Terraform provider.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

We next configure the provider.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

With backend.tf generated and the provider configured we can focus on the deployment of Cloud Composer. We start by defining the supporting resources that are required by Cloud Composer.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

We can now define the main Terraform resource that creates the Cloud Composer.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

The configuration Cloud Composer starts with the image versions to use. The image version defines the Cloud Composer version that is created and the Airflow version and Python version. Google publishes the Cloud Composer image versions here https://cloud.google.com/composer/docs/concepts/versioning/composer-versions . Next is the environment size, which defines the resource configuration for the scheduler, web server, and workers.

\r\n\r\n\r\n\r\n
\"\"\r\n
Small Environment Size Configuration
\r\n
\r\n\r\n\r\n\r\n

The predefined configuration can be customized, which means all the resource configurations would have to be added to the Terraform resource configuration.

\r\n\r\n\r\n\r\n

Google cloud composer provides enterprise security with several security configuration options.

\r\n\r\n\r\n\r\n
\"\"\r\n
https://youtu.be/RrKXZcKOz4A
\r\n
\r\n\r\n\r\n\r\n

For this development environment, Cloud Composer deployment, we choose to deploy Cloud Composer in a Private IP strategy with VPC-Native mode. The GKE deployed with Cloud Composer is deployed as a private cluster, Cloud Composer is deployed to a private network, and the Cloud SQL deployed with Cloud Composer is deployed to a private network. Only public or internet access allowed is to the Apache Airflow Web Server with SSO managed by Google IAM. To accomplish such configuration, we define private_environment_config and node_config in the Terraform Cloud Composer resource config. Lastly, we define a maintenance window to allow for system upgrades.

\r\n\r\n\r\n\r\n

Once you execute the Terraform script with

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

after about 30 min the networking, GKE, Cloud SQL, AirFlow Web Server, and Cloud Composer will be deployed and ready to use. To support further processing we define output Terraform variables that provide feedback from the deployment.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

The outputs provide the information about the GKE cluster, AirFlow Web Server URL, and the Google Storage bucket where the AirFlow DAG should be stored.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

There are many variables used in the Terraform script defined in the variables.tf file. Here we list some of the most relevant values for these variables.

\r\n\r\n\r\n\r\n
\"\"
\r\n\r\n\r\n\r\n

The Terraform deployment allows us to deploy data pipelines infrastructure fast, securely, and with different configurations for production deployment. It is a part of a broader CI/CD pipeline that focuses on delivering value to Translucent clients via efficient DevSecOps.

\r\n','Cloud Composer - Terraform Deployment','','inherit','closed','closed','','3688-revision-v1','','','2022-05-20 18:11:48','2022-05-20 22:11:48','',3688,'https://www.translucentcomputing.com/?p=4159',0,'revision','',0),(4160,4,'2022-05-23 11:16:29','2022-05-23 15:16:29','As a business owner, it\'s usually no surprise when you run into the dilemma of how you\'re going to scale your business efficiently and cost-effectively. ????\r\n\r\nIf you\'re currently running into scaling issues, here are 5 ways you can use to take your business to the next level:\r\n
    \r\n
  1. \r\n

    Expand output bandwidth:

    \r\nA great way to scale is by adding other functional aspects to your business that can alleviate time-consuming tasks. For instance, hiring a virtual assistant that helps with scheduling and communicating or hiring a bookkeeper to handle your financial responsibilities can free up the time you spend on admin tasks to allow you to focus on other essential factors of your business.
  2. \r\n
  3. \r\n

    Increased sales:

    \r\n We all want more deals, and of course, an increase in cash flow will help you scale. You can also offer your network\' finder fees\' for referring new clients, from doubling down on referral requests through your existing clients or personal network connections. 
  4. \r\n
  5. \r\n

    Invest wisely:

    \r\nScaling your business won\'t come without costs, so it\'s imperative to understand where you\'re allocating your physical and financial resources to grow seamlessly. 
  6. \r\n
  7. \r\n

    Your customers\' wants/needs:

    \r\nTaking your business to the next level can involve understanding the demand in your industry and meeting your clients with the supply. You\'ll be able to offer innovative solutions to your customer\'s pain points and increase your service offerings in the process. 
  8. \r\n
  9. \r\n

    Implementing the Right Tools/Infrastructure:

    \r\n When choosing the right tools for your business, keep in mind that you don\'t want to add too much complexity or unnecessary hassle to your daily workflow. At Translucent, we build systems responsive to your customers\' needs, which ultimately saves you money on low-demand days and ensures that you can continue to operate smoothly on high-demand days with minimal disruption and cost.  
  10. \r\n
\r\n???? If you\'re ready to take your business to the next level, the next step is speaking with our Translucent team. We\'re here to implement complex processes, build efficient platforms, and give you peace of mind to grow your business. Please send us a message at esults@translucentcomputing.com! ','5 Ways You Can Scale Your Business','','publish','open','open','','5-ways-you-can-scale-your-business','','','2022-05-23 11:16:29','2022-05-23 15:16:29','',0,'https://www.translucentcomputing.com/?p=4160',0,'post','',0),(4161,9,'2022-05-23 11:12:59','2022-05-23 15:12:59','','#DTI_-_Linkedin_#02','','inherit','open','closed','','dti_-_linkedin_02','','','2022-05-23 11:13:08','2022-05-23 15:13:08','',4160,'https://www.translucentcomputing.com/wp-content/uploads/2022/05/DTI_-_Linkedin_02.png',0,'attachment','image/png',0),(4162,9,'2022-05-23 11:14:37','2022-05-23 15:14:37','As a business owner, it\'s usually no surprise when you run into the dilemma of how you\'re going to scale your business efficiently and cost-effectively. ????\r\n\r\nIf you\'re currently running into scaling issues, here are 5 ways you can use to take your business to the next level:\r\n
    \r\n
  1. Expand output bandwidth: A great way to scale is by adding other functional aspects to your business that can alleviate time-consuming tasks. For instance, hiring a virtual assistant that helps with scheduling and communicating or hiring a bookkeeper to handle your financial responsibilities can free up the time you spend on admin tasks to allow you to focus on other essential factors of your business.
  2. \r\n
  3. Increased sales: We all want more deals, and of course, an increase in cash flow will help you scale. You can also offer your network\' finder fees\' for referring new clients, from doubling down on referral requests through your existing clients or personal network connections. 
  4. \r\n
  5. Invest wisely: Scaling your business won\'t come without costs, so it\'s imperative to understand where you\'re allocating your physical and financial resources to grow seamlessly. 
  6. \r\n
  7. Your customers\' wants/needs: Taking your business to the next level can involve understanding the demand in your industry and meeting your clients with the supply. You\'ll be able to offer innovative solutions to your customer\'s pain points and increase your service offerings in the process. 
  8. \r\n
  9. Implementing the Right Tools/Infrastructure: When choosing the right tools for your business, keep in mind that you don\'t want to add too much complexity or unnecessary hassle to your daily workflow. At Translucent, we build systems responsive to your customers\' needs, which ultimately saves you money on low-demand days and ensures that you can continue to operate smoothly on high-demand days with minimal disruption and cost.  
  10. \r\n
\r\n???? If you\'re ready to take your business to the next level, the next step is speaking with our Translucent team. We\'re here to implement complex processes, build efficient platforms, and give you peace of mind to grow your business. Please send us a message at esults@translucentcomputing.com! ','5 Ways You Can Scale Your Business','','inherit','closed','closed','','4160-revision-v1','','','2022-05-23 11:14:37','2022-05-23 15:14:37','',4160,'https://www.translucentcomputing.com/?p=4162',0,'revision','',0),(4163,9,'2022-05-23 11:15:35','2022-05-23 15:15:35','As a business owner, it\'s usually no surprise when you run into the dilemma of how you\'re going to scale your business efficiently and cost-effectively. ????\r\n\r\nIf you\'re currently running into scaling issues, here are 5 ways you can use to take your business to the next level:\r\n
    \r\n
  1. \r\n

    Expand output bandwidth:

    \r\nA great way to scale is by adding other functional aspects to your business that can alleviate time-consuming tasks. For instance, hiring a virtual assistant that helps with scheduling and communicating or hiring a bookkeeper to handle your financial responsibilities can free up the time you spend on admin tasks to allow you to focus on other essential factors of your business.
  2. \r\n
  3. \r\n

    Increased sales:

    \r\n We all want more deals, and of course, an increase in cash flow will help you scale. You can also offer your network\' finder fees\' for referring new clients, from doubling down on referral requests through your existing clients or personal network connections. 
  4. \r\n
  5. \r\n

    Invest wisely:

    \r\nScaling your business won\'t come without costs, so it\'s imperative to understand where you\'re allocating your physical and financial resources to grow seamlessly. 
  6. \r\n
  7. \r\n

    Your customers\' wants/needs:

    \r\nTaking your business to the next level can involve understanding the demand in your industry and meeting your clients with the supply. You\'ll be able to offer innovative solutions to your customer\'s pain points and increase your service offerings in the process. 
  8. \r\n
  9. \r\n

    Implementing the Right Tools/Infrastructure:

    \r\n When choosing the right tools for your business, keep in mind that you don\'t want to add too much complexity or unnecessary hassle to your daily workflow. At Translucent, we build systems responsive to your customers\' needs, which ultimately saves you money on low-demand days and ensures that you can continue to operate smoothly on high-demand days with minimal disruption and cost.  
  10. \r\n
\r\n???? If you\'re ready to take your business to the next level, the next step is speaking with our Translucent team. We\'re here to implement complex processes, build efficient platforms, and give you peace of mind to grow your business. Please send us a message at esults@translucentcomputing.com! ','5 Ways You Can Scale Your Business','','inherit','closed','closed','','4160-revision-v1','','','2022-05-23 11:15:35','2022-05-23 15:15:35','',4160,'https://www.translucentcomputing.com/?p=4163',0,'revision','',0),(4166,4,'2022-06-03 12:35:50','2022-06-03 16:35:50','Fintech has been growing exponentially. ????\r\n\r\nFintech has become a part of our everyday lives, which has created an increase in demand for financial technology services. Many traditional financial institutions are starting to embrace this demand and are developing their Fintech apps to serve their customers better.\r\n\r\nHere are 5 steps to building a successful Fintech application:\r\n

1. Regulations:

\r\nBeing aware of all the necessary financial regulations before beginning your Fintech journey is essential. Financial institution apps all have several complex regulations that allow them to sustain in the market. Having an app that complies with the required regulations from the initial stages will get you started on the right path. \r\n

2. Be user-friendly:

\r\nBNPL apps (aka “Buy Now Pay Later”), among other Fintech apps, need a user-friendly UI/UX interface to help their customers navigate seamlessly through their products. When apps are difficult to navigate or information is challenging to find, users can often get frustrated and switch to a competitor. \r\n

3. Security is key:  

\r\nSecurity is paramount when it comes to developing any app, but Fintech apps have a higher level of risk due to the sensitive nature of the data they handle. Ensuring your Fintech app has the necessary functionalities to keep data safe and information private is critical to building and maintaining customer trust.\r\n

4. Funds:

\r\nFrom complying with industry regulations to creating an aesthetic UI, developing a Fintech app requires capital to see the project through. Depending on how intricate and extensive you envision your app capabilities, you’ll need to consider capital to cover planning, UI/UX wireframing, development, testing and ongoing support after launch.\r\n

5. Stay innovating:

\r\nAfter you’ve built your app, maintaining, optimizing and innovating are crucial for success. Being responsive to customer demands and innovating for market conditions will help you actively stay on top of your competition.\r\n\r\n????‍???? Talk to one of our Fintech Experts https://calendly.com/tc-results','5 Steps to Building a Successful Fintech App','','publish','open','open','','5-steps-to-building-a-successful-fintech-app','','','2022-06-03 12:35:50','2022-06-03 16:35:50','',0,'https://www.translucentcomputing.com/?p=4166',0,'post','',0),(4167,9,'2022-06-03 12:32:03','2022-06-03 16:32:03','','#IH - Linkedin #05','','inherit','open','closed','','ih-linkedin-05','','','2022-06-03 12:32:03','2022-06-03 16:32:03','',4166,'https://www.translucentcomputing.com/wp-content/uploads/2022/06/IH-Linkedin-05.png',0,'attachment','image/png',0),(4168,9,'2022-06-03 12:32:28','2022-06-03 16:32:28','Fintech has been growing exponentially. ????\r\n\r\nFintech has become a part of our everyday lives, which has created an increase in demand for financial technology services. Many traditional financial institutions are starting to embrace this demand and are developing their Fintech apps to serve their customers better.\r\n\r\nHere are 5 steps to building a successful Fintech application:\r\n
    \r\n
  1. Regulations: Being aware of all the necessary financial regulations before beginning your Fintech journey is essential. Financial institution apps all have several complex regulations that allow them to sustain in the market. Having an app that complies with the required regulations from the initial stages will get you started on the right path. 
  2. \r\n
  3. Be user-friendly: BNPL apps (aka “Buy Now Pay Later”), among other Fintech apps, need a user-friendly UI/UX interface to help their customers navigate seamlessly through their products. When apps are difficult to navigate or information is challenging to find, users can often get frustrated and switch to a competitor. 
  4. \r\n
  5. Security is key:  Security is paramount when it comes to developing any app, but Fintech apps have a higher level of risk due to the sensitive nature of the data they handle. Ensuring your Fintech app has the necessary functionalities to keep data safe and information private is critical to building and maintaining customer trust.
  6. \r\n
  7. Funds: From complying with industry regulations to creating an aesthetic UI, developing a Fintech app requires capital to see the project through. Depending on how intricate and extensive you envision your app capabilities, you’ll need to consider capital to cover planning, UI/UX wireframing, development, testing and ongoing support after launch.
  8. \r\n
  9. Stay innovating: After you’ve built your app, maintaining, optimizing and innovating are crucial for success. Being responsive to customer demands and innovating for market conditions will help you actively stay on top of your competition.
  10. \r\n
\r\n????‍???? Talk to one of our Fintech Experts https://calendly.com/tc-results','5 Steps to Building a Successful Fintech App','','inherit','closed','closed','','4166-revision-v1','','','2022-06-03 12:32:28','2022-06-03 16:32:28','',4166,'https://www.translucentcomputing.com/2022/06/4166-revision-v1/',0,'revision','',0),(4169,9,'2022-06-03 12:35:20','2022-06-03 16:35:20','Fintech has been growing exponentially. ????\r\n\r\nFintech has become a part of our everyday lives, which has created an increase in demand for financial technology services. Many traditional financial institutions are starting to embrace this demand and are developing their Fintech apps to serve their customers better.\r\n\r\nHere are 5 steps to building a successful Fintech application:\r\n

1. Regulations:

\r\n \r\n\r\nBeing aware of all the necessary financial regulations before beginning your Fintech journey is essential. Financial institution apps all have several complex regulations that allow them to sustain in the market. Having an app that complies with the required regulations from the initial stages will get you started on the right path. \r\n

2. Be user-friendly:

\r\nBNPL apps (aka “Buy Now Pay Later”), among other Fintech apps, need a user-friendly UI/UX interface to help their customers navigate seamlessly through their products. When apps are difficult to navigate or information is challenging to find, users can often get frustrated and switch to a competitor. \r\n

3. Security is key:  

\r\nSecurity is paramount when it comes to developing any app, but Fintech apps have a higher level of risk due to the sensitive nature of the data they handle. Ensuring your Fintech app has the necessary functionalities to keep data safe and information private is critical to building and maintaining customer trust.\r\n

4. Funds:

\r\nFrom complying with industry regulations to creating an aesthetic UI, developing a Fintech app requires capital to see the project through. Depending on how intricate and extensive you envision your app capabilities, you’ll need to consider capital to cover planning, UI/UX wireframing, development, testing and ongoing support after launch.\r\n

5. Stay innovating:

\r\nAfter you’ve built your app, maintaining, optimizing and innovating are crucial for success. Being responsive to customer demands and innovating for market conditions will help you actively stay on top of your competition.\r\n\r\n????‍???? Talk to one of our Fintech Experts https://calendly.com/tc-results','5 Steps to Building a Successful Fintech App','','inherit','closed','closed','','4166-autosave-v1','','','2022-06-03 12:35:20','2022-06-03 16:35:20','',4166,'https://www.translucentcomputing.com/2022/06/4166-autosave-v1/',0,'revision','',0),(4170,9,'2022-06-03 12:35:13','2022-06-03 16:35:13','Fintech has been growing exponentially. ????\r\n\r\nFintech has become a part of our everyday lives, which has created an increase in demand for financial technology services. Many traditional financial institutions are starting to embrace this demand and are developing their Fintech apps to serve their customers better.\r\n\r\nHere are 5 steps to building a successful Fintech application:\r\n

1. Regulations:

\r\n \r\n\r\nBeing aware of all the necessary financial regulations before beginning your Fintech journey is essential. Financial institution apps all have several complex regulations that allow them to sustain in the market. Having an app that complies with the required regulations from the initial stages will get you started on the right path. \r\n

2. Be user-friendly:

\r\nBNPL apps (aka “Buy Now Pay Later”), among other Fintech apps, need a user-friendly UI/UX interface to help their customers navigate seamlessly through their products. When apps are difficult to navigate or information is challenging to find, users can often get frustrated and switch to a competitor. \r\n

3. Security is key:  

\r\nSecurity is paramount when it comes to developing any app, but Fintech apps have a higher level of risk due to the sensitive nature of the data they handle. Ensuring your Fintech app has the necessary functionalities to keep data safe and information private is critical to building and maintaining customer trust.\r\n

4. Funds:

\r\nFrom complying with industry regulations to creating an aesthetic UI, developing a Fintech app requires capital to see the project through. Depending on how intricate and extensive you envision your app capabilities, you’ll need to consider capital to cover planning, UI/UX wireframing, development, testing and ongoing support after launch.\r\n

5. Stay innovating:

\r\nAfter you’ve built your app, maintaining, optimizing and innovating are crucial for success. Being responsive to customer demands and innovating for market conditions will help you actively stay on top of your competition.\r\n\r\n????‍???? Talk to one of our Fintech Experts https://calendly.com/tc-results','5 Steps to Building a Successful Fintech App','','inherit','closed','closed','','4166-revision-v1','','','2022-06-03 12:35:13','2022-06-03 16:35:13','',4166,'https://www.translucentcomputing.com/2022/06/4166-revision-v1/',0,'revision','',0),(4171,9,'2022-06-03 12:35:40','2022-06-03 16:35:40','Fintech has been growing exponentially. ????\r\n\r\nFintech has become a part of our everyday lives, which has created an increase in demand for financial technology services. Many traditional financial institutions are starting to embrace this demand and are developing their Fintech apps to serve their customers better.\r\n\r\nHere are 5 steps to building a successful Fintech application:\r\n

1. Regulations:

\r\nBeing aware of all the necessary financial regulations before beginning your Fintech journey is essential. Financial institution apps all have several complex regulations that allow them to sustain in the market. Having an app that complies with the required regulations from the initial stages will get you started on the right path. \r\n

2. Be user-friendly:

\r\nBNPL apps (aka “Buy Now Pay Later”), among other Fintech apps, need a user-friendly UI/UX interface to help their customers navigate seamlessly through their products. When apps are difficult to navigate or information is challenging to find, users can often get frustrated and switch to a competitor. \r\n

3. Security is key:  

\r\nSecurity is paramount when it comes to developing any app, but Fintech apps have a higher level of risk due to the sensitive nature of the data they handle. Ensuring your Fintech app has the necessary functionalities to keep data safe and information private is critical to building and maintaining customer trust.\r\n

4. Funds:

\r\nFrom complying with industry regulations to creating an aesthetic UI, developing a Fintech app requires capital to see the project through. Depending on how intricate and extensive you envision your app capabilities, you’ll need to consider capital to cover planning, UI/UX wireframing, development, testing and ongoing support after launch.\r\n

5. Stay innovating:

\r\nAfter you’ve built your app, maintaining, optimizing and innovating are crucial for success. Being responsive to customer demands and innovating for market conditions will help you actively stay on top of your competition.\r\n\r\n????‍???? Talk to one of our Fintech Experts https://calendly.com/tc-results','5 Steps to Building a Successful Fintech App','','inherit','closed','closed','','4166-revision-v1','','','2022-06-03 12:35:40','2022-06-03 16:35:40','',4166,'https://www.translucentcomputing.com/2022/06/4166-revision-v1/',0,'revision','',0),(4175,4,'2022-06-06 16:40:33','2022-06-06 20:40:33','Leveraging the right tools, technologies, and culture to protect your infrastructure against cyberattacks is a necessity, and this is what Zero Trust is all about.\r\n\r\nImplementing Zero Trust can protect you from multiple breaches due to bad actors, hackers, malpractice, ignorance or just human error. Zero Trust is a framework or strategic approach to security that will help your infrastructure remain as secure as possible to prevent security breaches by safeguarding what matters most: the trust of your customers and company\'s information. \r\n\r\nHere are some security tips:\r\n

Defining protect surface:

\r\nYour protect surface encompasses the critical data, applications, assets and services. The protect surface is dynamic and ever-changing, expanding and contracting as the risk around it changes - such as the arrival of a new hire or the departure of a high-risk contractor. \r\n

Mapping flow of transactions:

\r\nThe way in which traffic passes through a network dictates how it should be safeguarded. Mapping all of your critical data, applications, assets, and services will allow you to document how specific resources interact and properly enforce controls to help protect your data without affecting your business.\r\n

Architecting network:

\r\nZero Trust is not based on a single, universal architecture. After mapping flows and defining the protected surface, you can map out the Zero Trust architecture, starting with a next-generation firewall. \r\n

Zero Trust Policy:

\r\nYou\'ll need to set Zero Trust policies using the \"Kipling Method\" to whitelist which resources should have access to others after the network is built. In his poem \"Six Serving Men,\" Kipling, a well-known novelist, proposed the concept of \"who, what, when, where, why, and how.\"\r\n

Monitoring network:

\r\nEvaluating all logs, both internal and external, all the way through Layer 7, with a focus on the Zero Trust operational components, is the final phase. Inspection and logging of all traffic will provide critical information on how to enhance the network over time, as Zero Trust is an iterative process.\r\n\r\nℹ️ To learn more about our approach to building secure applications, get in touch with one of our experts. ','Why is ZERO TRUST SECURITY important for your business?','','publish','open','open','','why-is-zero-trust-security-important-for-your-business','','','2022-06-06 16:40:33','2022-06-06 20:40:33','',0,'https://www.translucentcomputing.com/?p=4175',0,'post','',0),(4176,9,'2022-06-06 16:39:10','2022-06-06 20:39:10','','why is zero trust important?','','inherit','open','closed','','dti-linkedin-04','','','2022-06-06 16:39:32','2022-06-06 20:39:32','',4175,'https://www.translucentcomputing.com/wp-content/uploads/2022/06/DTI-Linkedin-04.png',0,'attachment','image/png',0),(4177,9,'2022-06-06 16:39:37','2022-06-06 20:39:37','Leveraging the right tools, technologies, and culture to protect your infrastructure against cyberattacks is a necessity, and this is what Zero Trust is all about.\r\n\r\nImplementing Zero Trust can protect you from multiple breaches due to bad actors, hackers, malpractice, ignorance or just human error. Zero Trust is a framework or strategic approach to security that will help your infrastructure remain as secure as possible to prevent security breaches by safeguarding what matters most: the trust of your customers and company\'s information. \r\n\r\nHere are some security tips:\r\n

Defining protect surface:

\r\nYour protect surface encompasses the critical data, applications, assets and services. The protect surface is dynamic and ever-changing, expanding and contracting as the risk around it changes - such as the arrival of a new hire or the departure of a high-risk contractor. \r\n

Mapping flow of transactions:

\r\nThe way in which traffic passes through a network dictates how it should be safeguarded. Mapping all of your critical data, applications, assets, and services will allow you to document how specific resources interact and properly enforce controls to help protect your data without affecting your business.\r\n

Architecting network:

\r\nZero Trust is not based on a single, universal architecture. After mapping flows and defining the protected surface, you can map out the Zero Trust architecture, starting with a next-generation firewall. \r\n

Zero Trust Policy:

\r\nYou\'ll need to set Zero Trust policies using the \"Kipling Method\" to whitelist which resources should have access to others after the network is built. In his poem \"Six Serving Men,\" Kipling, a well-known novelist, proposed the concept of \"who, what, when, where, why, and how.\"\r\n

Monitoring network:

\r\nEvaluating all logs, both internal and external, all the way through Layer 7, with a focus on the Zero Trust operational components, is the final phase. Inspection and logging of all traffic will provide critical information on how to enhance the network over time, as Zero Trust is an iterative process.\r\n\r\nℹ️ To learn more about our approach to building secure applications, get in touch with one of our experts. https://calendly.com/tc-results','Why is ZERO TRUST SECURITY important for your business?','','inherit','closed','closed','','4175-revision-v1','','','2022-06-06 16:39:37','2022-06-06 20:39:37','',4175,'https://www.translucentcomputing.com/2022/06/4175-revision-v1/',0,'revision','',0),(4178,9,'2022-06-06 16:39:52','2022-06-06 20:39:52','Leveraging the right tools, technologies, and culture to protect your infrastructure against cyberattacks is a necessity, and this is what Zero Trust is all about.\r\n\r\nImplementing Zero Trust can protect you from multiple breaches due to bad actors, hackers, malpractice, ignorance or just human error. Zero Trust is a framework or strategic approach to security that will help your infrastructure remain as secure as possible to prevent security breaches by safeguarding what matters most: the trust of your customers and company\'s information. \r\n\r\nHere are some security tips:\r\n

Defining protect surface:

\r\nYour protect surface encompasses the critical data, applications, assets and services. The protect surface is dynamic and ever-changing, expanding and contracting as the risk around it changes - such as the arrival of a new hire or the departure of a high-risk contractor. \r\n

Mapping flow of transactions:

\r\nThe way in which traffic passes through a network dictates how it should be safeguarded. Mapping all of your critical data, applications, assets, and services will allow you to document how specific resources interact and properly enforce controls to help protect your data without affecting your business.\r\n

Architecting network:

\r\nZero Trust is not based on a single, universal architecture. After mapping flows and defining the protected surface, you can map out the Zero Trust architecture, starting with a next-generation firewall. \r\n

Zero Trust Policy:

\r\nYou\'ll need to set Zero Trust policies using the \"Kipling Method\" to whitelist which resources should have access to others after the network is built. In his poem \"Six Serving Men,\" Kipling, a well-known novelist, proposed the concept of \"who, what, when, where, why, and how.\"\r\n

Monitoring network:

\r\nEvaluating all logs, both internal and external, all the way through Layer 7, with a focus on the Zero Trust operational components, is the final phase. Inspection and logging of all traffic will provide critical information on how to enhance the network over time, as Zero Trust is an iterative process.\r\n\r\nℹ️ To learn more about our approach to building secure applications, get in touch with one of our experts. https://calendly.com/tc-results','Why is ZERO TRUST SECURITY important for your business?','','inherit','closed','closed','','4175-autosave-v1','','','2022-06-06 16:39:52','2022-06-06 20:39:52','',4175,'https://www.translucentcomputing.com/2022/06/4175-autosave-v1/',0,'revision','',0),(4179,9,'2022-06-06 16:40:33','2022-06-06 20:40:33','Leveraging the right tools, technologies, and culture to protect your infrastructure against cyberattacks is a necessity, and this is what Zero Trust is all about.\r\n\r\nImplementing Zero Trust can protect you from multiple breaches due to bad actors, hackers, malpractice, ignorance or just human error. Zero Trust is a framework or strategic approach to security that will help your infrastructure remain as secure as possible to prevent security breaches by safeguarding what matters most: the trust of your customers and company\'s information. \r\n\r\nHere are some security tips:\r\n

Defining protect surface:

\r\nYour protect surface encompasses the critical data, applications, assets and services. The protect surface is dynamic and ever-changing, expanding and contracting as the risk around it changes - such as the arrival of a new hire or the departure of a high-risk contractor. \r\n

Mapping flow of transactions:

\r\nThe way in which traffic passes through a network dictates how it should be safeguarded. Mapping all of your critical data, applications, assets, and services will allow you to document how specific resources interact and properly enforce controls to help protect your data without affecting your business.\r\n

Architecting network:

\r\nZero Trust is not based on a single, universal architecture. After mapping flows and defining the protected surface, you can map out the Zero Trust architecture, starting with a next-generation firewall. \r\n

Zero Trust Policy:

\r\nYou\'ll need to set Zero Trust policies using the \"Kipling Method\" to whitelist which resources should have access to others after the network is built. In his poem \"Six Serving Men,\" Kipling, a well-known novelist, proposed the concept of \"who, what, when, where, why, and how.\"\r\n

Monitoring network:

\r\nEvaluating all logs, both internal and external, all the way through Layer 7, with a focus on the Zero Trust operational components, is the final phase. Inspection and logging of all traffic will provide critical information on how to enhance the network over time, as Zero Trust is an iterative process.\r\n\r\nℹ️ To learn more about our approach to building secure applications, get in touch with one of our experts. ','Why is ZERO TRUST SECURITY important for your business?','','inherit','closed','closed','','4175-revision-v1','','','2022-06-06 16:40:33','2022-06-06 20:40:33','',4175,'https://www.translucentcomputing.com/2022/06/4175-revision-v1/',0,'revision','',0),(4180,4,'2022-06-08 14:47:21','2022-06-08 18:47:21','When you browse through social media, click a link on a website or make a purchase when online shopping, all of this data is being processed & stored - but where? ????\r\n\r\nBig Data is a collection of data that is immense in volume and yet growing exponentially every single minute. From Netflix, Instagram, and YouTube to Public Sectors, Big Data is being stored almost everywhere globally. Data is being created faster than ever, so it’s essential to invest in better data management to ensure businesses can benefit from it.\r\n\r\nTo define Big Data even better, a collection of 6 vs can help us here:\r\n

Volume

\r\nHuge amounts of data coming from different sources which need good storage, proper data ingestion and compute power.\r\n

Variety

\r\nDifferent types of data coming from e.g. social media. They can be structured, semi-structured and unstructured.\r\n

Velocity

\r\nThe rate of generating data from different sources in real-time, near real-time, and batch processing. The flow of data is massive and continuous.\r\n

Veracity

\r\nRequires robust systems to be built due to large amounts of different data sources, which can lead to inconsistency and lack of trust.\r\n

Value

\r\nThe business side and value of data being collected. Allows businesses to make competitive decisions, increase their profits and grow in their market.\r\n

Variability

\r\nActs as a way in which data can be used, giving variable insights and formatting changes.\r\n\r\nAs you see, Big Data effectively reduces time and costs, creates an attractive offer for customers and enables making strategically good decisions and actions. The 6 vs sum up all the different angles of Big Data usage and its benefits for businesses. \r\n\r\nInvesting in Big Data tools in your company, whose purpose is to collect, process and analyze data, is an investment in the development and bright future of business.\r\n\r\nTo learn more about Big Data, get in touch with one of our experts.','What is Big Data?','','publish','open','open','','what-is-big-data','','','2022-06-08 14:47:21','2022-06-08 18:47:21','',0,'https://www.translucentcomputing.com/?p=4180',0,'post','',0),(4181,9,'2022-06-08 14:46:08','2022-06-08 18:46:08','','#WHAT - Linkedin #04','','inherit','open','closed','','what-linkedin-04','','','2022-06-08 14:46:08','2022-06-08 18:46:08','',4180,'https://www.translucentcomputing.com/wp-content/uploads/2022/06/WHAT-Linkedin-04.png',0,'attachment','image/png',0),(4182,9,'2022-06-08 14:46:30','2022-06-08 18:46:30','When you browse through social media, click a link on a website or make a purchase when online shopping, all of this data is being processed & stored - but where? ????\r\n\r\nBig Data is a collection of data that is immense in volume and yet growing exponentially every single minute. From Netflix, Instagram, and YouTube to Public Sectors, Big Data is being stored almost everywhere globally. Data is being created faster than ever, so it’s essential to invest in better data management to ensure businesses can benefit from it.\r\n\r\nTo define Big Data even better, a collection of 6 vs can help us here:\r\n

Volume

\r\nHuge amounts of data coming from different sources which need good storage, proper data ingestion and compute power.\r\n

Variety

\r\nDifferent types of data coming from e.g. social media. They can be structured, semi-structured and unstructured.\r\n

Velocity

\r\nThe rate of generating data from different sources in real-time, near real-time, and batch processing. The flow of data is massive and continuous.\r\n

Veracity

\r\nRequires robust systems to be built due to large amounts of different data sources, which can lead to inconsistency and lack of trust.\r\n

Value

\r\nThe business side and value of data being collected. Allows businesses to make competitive decisions, increase their profits and grow in their market.\r\n

Variability

\r\nActs as a way in which data can be used, giving variable insights and formatting changes.\r\n\r\nAs you see, Big Data effectively reduces time and costs, creates an attractive offer for customers and enables making strategically good decisions and actions. The 6 vs sum up all the different angles of Big Data usage and its benefits for businesses. \r\n\r\nInvesting in Big Data tools in your company, whose purpose is to collect, process and analyze data, is an investment in the development and bright future of business.\r\n\r\nTo learn more about Big Data, get in touch with one of our experts. https://calendly.com/tc-results','What is Big Data?','','inherit','closed','closed','','4180-revision-v1','','','2022-06-08 14:46:30','2022-06-08 18:46:30','',4180,'https://www.translucentcomputing.com/2022/06/4180-revision-v1/',0,'revision','',0),(4183,9,'2022-06-08 14:46:46','2022-06-08 18:46:46','When you browse through social media, click a link on a website or make a purchase when online shopping, all of this data is being processed & stored - but where? ????\r\n\r\nBig Data is a collection of data that is immense in volume and yet growing exponentially every single minute. From Netflix, Instagram, and YouTube to Public Sectors, Big Data is being stored almost everywhere globally. Data is being created faster than ever, so it’s essential to invest in better data management to ensure businesses can benefit from it.\r\n\r\nTo define Big Data even better, a collection of 6 vs can help us here:\r\n

Volume

\r\nHuge amounts of data coming from different sources which need good storage, proper data ingestion and compute power.\r\n

Variety

\r\nDifferent types of data coming from e.g. social media. They can be structured, semi-structured and unstructured.\r\n

Velocity

\r\nThe rate of generating data from different sources in real-time, near real-time, and batch processing. The flow of data is massive and continuous.\r\n

Veracity

\r\nRequires robust systems to be built due to large amounts of different data sources, which can lead to inconsistency and lack of trust.\r\n

Value

\r\nThe business side and value of data being collected. Allows businesses to make competitive decisions, increase their profits and grow in their market.\r\n

Variability

\r\nActs as a way in which data can be used, giving variable insights and formatting changes.\r\n\r\nAs you see, Big Data effectively reduces time and costs, creates an attractive offer for customers and enables making strategically good decisions and actions. The 6 vs sum up all the different angles of Big Data usage and its benefits for businesses. \r\n\r\nInvesting in Big Data tools in your company, whose purpose is to collect, process and analyze data, is an investment in the development and bright future of business.\r\n\r\nTo learn more about Big Data, get in touch with one of our experts. https://calendly.com/tc-results','What is Big Data?','','inherit','closed','closed','','4180-autosave-v1','','','2022-06-08 14:46:46','2022-06-08 18:46:46','',4180,'https://www.translucentcomputing.com/2022/06/4180-autosave-v1/',0,'revision','',0),(4184,9,'2022-06-08 14:47:13','2022-06-08 18:47:13','When you browse through social media, click a link on a website or make a purchase when online shopping, all of this data is being processed & stored - but where? ????\r\n\r\nBig Data is a collection of data that is immense in volume and yet growing exponentially every single minute. From Netflix, Instagram, and YouTube to Public Sectors, Big Data is being stored almost everywhere globally. Data is being created faster than ever, so it’s essential to invest in better data management to ensure businesses can benefit from it.\r\n\r\nTo define Big Data even better, a collection of 6 vs can help us here:\r\n

Volume

\r\nHuge amounts of data coming from different sources which need good storage, proper data ingestion and compute power.\r\n

Variety

\r\nDifferent types of data coming from e.g. social media. They can be structured, semi-structured and unstructured.\r\n

Velocity

\r\nThe rate of generating data from different sources in real-time, near real-time, and batch processing. The flow of data is massive and continuous.\r\n

Veracity

\r\nRequires robust systems to be built due to large amounts of different data sources, which can lead to inconsistency and lack of trust.\r\n

Value

\r\nThe business side and value of data being collected. Allows businesses to make competitive decisions, increase their profits and grow in their market.\r\n

Variability

\r\nActs as a way in which data can be used, giving variable insights and formatting changes.\r\n\r\nAs you see, Big Data effectively reduces time and costs, creates an attractive offer for customers and enables making strategically good decisions and actions. The 6 vs sum up all the different angles of Big Data usage and its benefits for businesses. \r\n\r\nInvesting in Big Data tools in your company, whose purpose is to collect, process and analyze data, is an investment in the development and bright future of business.\r\n\r\nTo learn more about Big Data, get in touch with one of our experts.','What is Big Data?','','inherit','closed','closed','','4180-revision-v1','','','2022-06-08 14:47:13','2022-06-08 18:47:13','',4180,'https://www.translucentcomputing.com/2022/06/4180-revision-v1/',0,'revision','',0),(4185,4,'2022-06-09 12:20:19','2022-06-09 16:20:19','With Translucent, all our clients experience the true cloud native app journey with our dedicated on-demand software teams, cloud native platform and flexible process to build award-winning cloud-native applications.\r\n\r\nWe make sure to ask the essential questions to build an appropriate solution that works for your business & your clients while staying within budget and avoiding unnecessary costs. \r\n\r\nWe ensure our clients meet consumer demands by helping remove complexities in the cloud to deliver the best user experience. Translucent provides solutions that work.\r\n

What\'s In It for Your Organization?

\r\n

1️⃣  Team Culture

\r\nCloud native exists at the intersection of cloud native tools, organizational change and culture. That\'s why technology and organizations must change together and support each other.\r\n

2️⃣  Flexible Processes

\r\nCloud native transformation is primarily about change management as you move from the known to the unknown. Your processes need to be able to support this transformation.\r\n

3️⃣  Scalable and Dynamic Technologies

\r\nCloud native architecture takes full advantage of on-demand delivery, global deployment, elasticity, and higher-level services. They enable considerable improvements in developer productivity, business agility, scalability, availability, utilization, and cost savings. \r\n\r\nIs your enterprise ready for cloud native innovation? Do you have a well-defined cloud native strategy? Speak to one of our consultants to learn more about how we can take you there.','How Translucent is Changing The Cloud Native Industry','','publish','open','open','','how-translucent-is-changing-the-cloud-native-industry','','','2022-06-09 12:46:26','2022-06-09 16:46:26','',0,'https://www.translucentcomputing.com/?p=4185',0,'post','',0),(4186,9,'2022-06-09 12:17:14','2022-06-09 16:17:14','With Translucent, all our clients experience the true cloud native app journey with our dedicated on-demand software teams, cloud native platform and flexible process to build award-winning cloud-native applications.\r\n\r\nWe make sure to ask the essential questions to build an appropriate solution that works for your business & your clients while staying within budget and avoiding unnecessary costs. \r\n\r\nWe ensure our clients meet consumer demands by helping remove complexities in the cloud to deliver the best user experience. Translucent provides solutions that work.\r\n

What\'s In It for Your Organization?

\r\n

1️⃣  Team Culture

\r\nCloud native exists at the intersection of cloud native tools, organizational change and culture. That\'s why technology and organizations must change together and support each other.\r\n

2️⃣  Flexible Processes

\r\nCloud native transformation is primarily about change management as you move from the known to the unknown. Your processes need to be able to support this transformation.\r\n

3️⃣  Scalable and Dynamic Technologies

\r\nCloud native architecture takes full advantage of on-demand delivery, global deployment, elasticity, and higher-level services. They enable considerable improvements in developer productivity, business agility, scalability, availability, utilization, and cost savings. \r\n\r\nIs your enterprise ready for cloud native innovation? Do you have a well-defined cloud native strategy? Speak to one of our consultants to learn more about how we can take you there.','How Translucent is changing the Cloud Native industry','','inherit','closed','closed','','4185-revision-v1','','','2022-06-09 12:17:14','2022-06-09 16:17:14','',4185,'https://www.translucentcomputing.com/2022/06/4185-revision-v1/',0,'revision','',0),(4187,9,'2022-06-09 12:19:26','2022-06-09 16:19:26','','How Translucent is changing the Cloud Native industry','','inherit','open','closed','','how-translucent-is-changing-the-cloud-native-industry','','','2022-06-09 12:19:34','2022-06-09 16:19:34','',4185,'https://www.translucentcomputing.com/wp-content/uploads/2022/06/How-Translucent-is-changing-the-Cloud-Native-industry.png',0,'attachment','image/png',0),(4188,9,'2022-06-09 12:19:49','2022-06-09 16:19:49','With Translucent, all our clients experience the true cloud native app journey with our dedicated on-demand software teams, cloud native platform and flexible process to build award-winning cloud-native applications.\r\n\r\nWe make sure to ask the essential questions to build an appropriate solution that works for your business & your clients while staying within budget and avoiding unnecessary costs. \r\n\r\nWe ensure our clients meet consumer demands by helping remove complexities in the cloud to deliver the best user experience. Translucent provides solutions that work.\r\n

What\'s In It for Your Organization?

\r\n

1️⃣  Team Culture

\r\nCloud native exists at the intersection of cloud native tools, organizational change and culture. That\'s why technology and organizations must change together and support each other.\r\n

2️⃣  Flexible Processes

\r\nCloud native transformation is primarily about change management as you move from the known to the unknown. Your processes need to be able to support this transformation.\r\n

3️⃣  Scalable and Dynamic Technologies

\r\nCloud native architecture takes full advantage of on-demand delivery, global deployment, elasticity, and higher-level services. They enable considerable improvements in developer productivity, business agility, scalability, availability, utilization, and cost savings. \r\n\r\nIs your enterprise ready for cloud native innovation? Do you have a well-defined cloud native strategy? Speak to one of our consultants to learn more about how we can take you there.','How Translucent is changing the Cloud Native industry','','inherit','closed','closed','','4185-autosave-v1','','','2022-06-09 12:19:49','2022-06-09 16:19:49','',4185,'https://www.translucentcomputing.com/2022/06/4185-autosave-v1/',0,'revision','',0),(4189,9,'2022-06-09 12:46:07','2022-06-09 16:46:07','With Translucent, all our clients experience the true cloud native app journey with our dedicated on-demand software teams, cloud native platform and flexible process to build award-winning cloud-native applications.\r\n\r\nWe make sure to ask the essential questions to build an appropriate solution that works for your business & your clients while staying within budget and avoiding unnecessary costs. \r\n\r\nWe ensure our clients meet consumer demands by helping remove complexities in the cloud to deliver the best user experience. Translucent provides solutions that work.\r\n

What\'s In It for Your Organization?

\r\n

1️⃣  Team Culture

\r\nCloud native exists at the intersection of cloud native tools, organizational change and culture. That\'s why technology and organizations must change together and support each other.\r\n

2️⃣  Flexible Processes

\r\nCloud native transformation is primarily about change management as you move from the known to the unknown. Your processes need to be able to support this transformation.\r\n

3️⃣  Scalable and Dynamic Technologies

\r\nCloud native architecture takes full advantage of on-demand delivery, global deployment, elasticity, and higher-level services. They enable considerable improvements in developer productivity, business agility, scalability, availability, utilization, and cost savings. \r\n\r\nIs your enterprise ready for cloud native innovation? Do you have a well-defined cloud native strategy? Speak to one of our consultants to learn more about how we can take you there.','How Translucent is Changing The Cloud Native Industry','','inherit','closed','closed','','4185-revision-v1','','','2022-06-09 12:46:07','2022-06-09 16:46:07','',4185,'https://www.translucentcomputing.com/2022/06/4185-revision-v1/',0,'revision','',0),(4194,17,'2022-06-16 12:21:18','2022-06-16 16:21:18','','TEKTeams','','inherit','closed','closed','','4064-revision-v1','','','2022-06-16 12:21:18','2022-06-16 16:21:18','',4064,'https://www.translucentcomputing.com/2022/06/4064-revision-v1/',0,'revision','',0),(4196,4,'2022-06-18 15:25:05','2022-06-18 19:25:05','','TEK Teams','','inherit','closed','closed','','4045-autosave-v1','','','2022-06-18 15:25:05','2022-06-18 19:25:05','',4045,'https://www.translucentcomputing.com/2022/06/4045-autosave-v1/',0,'revision','',0),(4199,4,'2022-06-20 10:18:35','2022-06-20 14:18:35','','TEKTeams','','inherit','closed','closed','','4064-autosave-v1','','','2022-06-20 10:18:35','2022-06-20 14:18:35','',4064,'https://www.translucentcomputing.com/2022/06/4064-autosave-v1/',0,'revision','',0),(4201,4,'2022-06-20 15:50:26','2022-06-20 19:50:26','\n.tek-ai {\n height: auto;\n}\n\n.tek-ai img {\n height: auto !important;\n max-height: 570px;\n}\n\n@media (max-width:992px) {\n .tek-ai {\n height: auto;\n text-align: center !important;\n }\n}\n\n@media (min-width: 1400px) {\n .tek-ai {\n height: auto;\n }\n}\n\n.footer-2022__menu--list.footer_links:nth-child(4) {\n display: none;\n}\n\n','translucent','','inherit','closed','closed','','1885-revision-v1','','','2022-06-20 15:50:26','2022-06-20 19:50:26','',1885,'https://translucent.local/?p=4201',0,'revision','',0),(4203,20,'2022-06-22 10:19:52','2022-06-22 14:19:52','','Cloud Native Application','','publish','closed','closed','','cloud-native-application','','','2022-06-22 10:19:52','2022-06-22 14:19:52','',0,'https://translucent.local/?page_id=4203',0,'page','',0),(4204,20,'2022-06-22 10:19:52','2022-06-22 14:19:52','','Cloud Native Application','','inherit','closed','closed','','4203-revision-v1','','','2022-06-22 10:19:52','2022-06-22 14:19:52','',4203,'https://translucent.local/?p=4204',0,'revision','',0),(4205,20,'2022-06-22 12:22:20','2022-06-22 16:22:20','','Asset 1','','inherit','open','closed','','asset-1','','','2022-06-22 12:22:20','2022-06-22 16:22:20','',0,'https://translucent.local/wp-content/uploads/2022/06/Asset-1.jpg',0,'attachment','image/jpeg',0),(4206,20,'2022-06-22 13:25:41','2022-06-22 17:25:41','','Group 8578','','inherit','open','closed','','group-8578','','','2022-06-22 13:25:41','2022-06-22 17:25:41','',0,'https://translucent.local/wp-content/uploads/2022/06/Group-8578.png',0,'attachment','image/png',0),(4207,20,'2022-06-23 03:35:50','2022-06-23 07:35:50','','Group 8578','','inherit','open','closed','','group-8578-2','','','2022-06-23 03:35:50','2022-06-23 07:35:50','',0,'https://translucent.local/wp-content/uploads/2022/06/Group-8578.jpg',0,'attachment','image/jpeg',0),(4208,20,'2022-06-23 03:35:58','2022-06-23 07:35:58','','replatform','','inherit','open','closed','','replatform','','','2022-06-23 03:35:58','2022-06-23 07:35:58','',0,'https://translucent.local/wp-content/uploads/2022/06/replatform.jpg',0,'attachment','image/jpeg',0),(4209,20,'2022-06-23 03:36:04','2022-06-23 07:36:04','','rebuild_1','','inherit','open','closed','','rebuild_1','','','2022-06-23 03:36:04','2022-06-23 07:36:04','',0,'https://translucent.local/wp-content/uploads/2022/06/rebuild_1.jpg',0,'attachment','image/jpeg',0),(4213,20,'2022-06-23 09:28:18','2022-06-23 13:28:18','','Group 8625','','inherit','open','closed','','group-8625','','','2022-06-23 09:28:18','2022-06-23 13:28:18','',0,'https://translucent.local/wp-content/uploads/2022/06/Group-8625.png',0,'attachment','image/png',0),(4214,20,'2022-06-23 11:52:12','2022-06-23 15:52:12','','Group 8594','','inherit','open','closed','','group-8594','','','2022-06-23 11:52:12','2022-06-23 15:52:12','',0,'https://translucent.local/wp-content/uploads/2022/06/Group-8594.png',0,'attachment','image/png',0),(4216,20,'2022-06-23 12:25:48','2022-06-23 16:25:48','','Group 8544','','inherit','open','closed','','group-8544','','','2022-06-23 12:25:48','2022-06-23 16:25:48','',0,'https://translucent.local/wp-content/uploads/2022/06/Group-8544.png',0,'attachment','image/png',0),(4219,20,'2022-06-23 13:15:31','2022-06-23 17:15:31','','Group 8624','','inherit','open','closed','','group-8624-3','','','2022-06-28 15:57:29','2022-06-28 19:57:29','',4242,'https://translucent.local/wp-content/uploads/2022/06/Group-8624-2.png',0,'attachment','image/png',0),(4220,20,'2022-06-23 13:31:34','2022-06-23 17:31:34','','Group 8556','','inherit','open','closed','','group-8556','','','2022-06-23 13:31:34','2022-06-23 17:31:34','',0,'https://translucent.local/wp-content/uploads/2022/06/Group-8556.png',0,'attachment','image/png',0),(4221,20,'2022-06-23 13:49:48','2022-06-23 17:49:48','','Group 8550','','inherit','open','closed','','group-8550','','','2022-06-23 13:49:48','2022-06-23 17:49:48','',0,'https://translucent.local/wp-content/uploads/2022/06/Group-8550.png',0,'attachment','image/png',0),(4222,20,'2022-06-23 13:50:57','2022-06-23 17:50:57','','Group 8554','','inherit','open','closed','','group-8554','','','2022-06-23 13:50:57','2022-06-23 17:50:57','',0,'https://translucent.local/wp-content/uploads/2022/06/Group-8554.png',0,'attachment','image/png',0),(4223,20,'2022-06-23 13:51:30','2022-06-23 17:51:30','','Group 8548','','inherit','open','closed','','group-8548','','','2022-06-23 13:51:30','2022-06-23 17:51:30','',0,'https://translucent.local/wp-content/uploads/2022/06/Group-8548.png',0,'attachment','image/png',0),(4224,20,'2022-06-23 13:52:08','2022-06-23 17:52:08','','Group 8551','','inherit','open','closed','','group-8551','','','2022-06-23 13:52:08','2022-06-23 17:52:08','',0,'https://translucent.local/wp-content/uploads/2022/06/Group-8551.png',0,'attachment','image/png',0),(4225,20,'2022-06-23 13:52:35','2022-06-23 17:52:35','','Group 8555','','inherit','open','closed','','group-8555','','','2022-06-23 13:52:35','2022-06-23 17:52:35','',0,'https://translucent.local/wp-content/uploads/2022/06/Group-8555.png',0,'attachment','image/png',0),(4226,20,'2022-06-23 13:53:02','2022-06-23 17:53:02','','Group 8549','','inherit','open','closed','','group-8549','','','2022-06-23 13:53:02','2022-06-23 17:53:02','',0,'https://translucent.local/wp-content/uploads/2022/06/Group-8549.png',0,'attachment','image/png',0),(4227,20,'2022-06-23 13:53:35','2022-06-23 17:53:35','','Group 8552','','inherit','open','closed','','group-8552','','','2022-06-23 13:53:35','2022-06-23 17:53:35','',0,'https://translucent.local/wp-content/uploads/2022/06/Group-8552.png',0,'attachment','image/png',0),(4228,20,'2022-06-23 13:54:01','2022-06-23 17:54:01','','Group 8553','','inherit','open','closed','','group-8553','','','2022-06-23 13:54:01','2022-06-23 17:54:01','',0,'https://translucent.local/wp-content/uploads/2022/06/Group-8553.png',0,'attachment','image/png',0),(4231,20,'2022-06-24 10:05:01','2022-06-24 14:05:01','','right-arrow','','inherit','open','closed','','right-arrow','','','2022-06-24 10:05:01','2022-06-24 14:05:01','',0,'https://translucent.local/wp-content/uploads/2022/06/right-arrow.png',0,'attachment','image/png',0),(4236,20,'2022-06-24 10:15:39','2022-06-24 14:15:39','','left-arrow','','inherit','open','closed','','left-arrow','','','2022-06-24 10:15:39','2022-06-24 14:15:39','',0,'https://translucent.local/wp-content/uploads/2022/06/left-arrow.png',0,'attachment','image/png',0),(4238,20,'2022-06-26 15:17:05','2022-06-26 19:17:05','','app-banner','','inherit','open','closed','','app-banner','','','2022-06-28 11:10:20','2022-06-28 15:10:20','',4242,'https://translucent.local/wp-content/uploads/2022/06/app-banner.png',0,'attachment','image/png',0),(4239,20,'2022-06-27 12:12:10','2022-06-27 16:12:10','','left-arrow','','inherit','open','closed','','left-arrow-2','','','2022-06-27 12:12:10','2022-06-27 16:12:10','',0,'https://translucent.local/wp-content/uploads/2022/06/left-arrow-1.png',0,'attachment','image/png',0),(4241,20,'2022-06-28 10:03:53','2022-06-28 14:03:53','','mobil-baner-app','','inherit','open','closed','','mobil-baner-app','','','2022-06-28 10:03:53','2022-06-28 14:03:53','',0,'https://translucent.local/wp-content/uploads/2022/06/mobil-baner-app.png',0,'attachment','image/png',0),(4242,20,'2022-06-28 11:07:57','2022-06-28 15:07:57','','Cloud Native Application - New','','publish','closed','closed','','cloud-native-application-new','','','2022-07-07 03:51:59','2022-07-07 07:51:59','',0,'https://translucent.local/?page_id=4242',0,'page','',0),(4243,20,'2022-06-28 11:07:43','2022-06-28 15:07:43','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb16d744679\";s:5:\"clone\";a:1:{i:0;s:19:\"field_62552ada52711\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Image','image','publish','closed','closed','','field_62bb17034467a','','','2022-06-28 11:17:49','2022-06-28 15:17:49','',3740,'https://translucent.local/?post_type=acf-field&p=4243',0,'acf-field','',0),(4244,20,'2022-06-28 11:07:43','2022-06-28 15:07:43','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb16d744679\";s:5:\"clone\";a:1:{i:0;s:19:\"field_6255097642ef4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Sub Heading','sub_heading','publish','closed','closed','','field_62bb173b4467b','','','2022-06-29 10:08:48','2022-06-29 14:08:48','',3740,'https://translucent.local/?post_type=acf-field&p=4244',2,'acf-field','',0),(4245,20,'2022-06-28 11:07:44','2022-06-28 15:07:44','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb16d744679\";s:5:\"clone\";a:1:{i:0;s:19:\"field_62551ac3a6f96\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Heading','heading','publish','closed','closed','','field_62bb17614467c','','','2022-06-29 10:08:48','2022-06-29 14:08:48','',3740,'https://translucent.local/?post_type=acf-field&p=4245',3,'acf-field','',0),(4246,20,'2022-06-28 11:07:44','2022-06-28 15:07:44','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb16d744679\";s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b74a6f99\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Copy','copy','publish','closed','closed','','field_62bb17874467d','','','2022-06-29 10:08:48','2022-06-29 14:08:48','',3740,'https://translucent.local/?post_type=acf-field&p=4246',4,'acf-field','',0),(4247,20,'2022-06-28 11:07:57','2022-06-28 15:07:57','','Cloud Native Application - New','','inherit','closed','closed','','4242-revision-v1','','','2022-06-28 11:07:57','2022-06-28 15:07:57','',4242,'https://translucent.local/?p=4247',0,'revision','',0),(4248,20,'2022-06-28 11:10:20','2022-06-28 15:10:20','','Cloud Native Application - New','','inherit','closed','closed','','4242-revision-v1','','','2022-06-28 11:10:20','2022-06-28 15:10:20','',4242,'https://translucent.local/?p=4248',0,'revision','',0),(4249,20,'2022-06-28 12:00:36','2022-06-28 16:00:36','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";i:1;s:6:\"layout\";s:5:\"block\";s:12:\"button_label\";s:0:\"\";}','Testimonial Section','testimonial_section','publish','closed','closed','','field_62bb251c6c317','','','2022-06-28 12:00:36','2022-06-28 16:00:36','',3947,'https://translucent.local/?post_type=acf-field&p=4249',8,'acf-field','',0),(4250,20,'2022-06-28 12:00:37','2022-06-28 16:00:37','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Icon','icon','publish','closed','closed','','field_62bb25696c318','','','2022-06-28 12:00:37','2022-06-28 16:00:37','',4249,'https://translucent.local/?post_type=acf-field&p=4250',0,'acf-field','',0),(4251,20,'2022-06-28 12:00:37','2022-06-28 16:00:37','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Heading','heading','publish','closed','closed','','field_62bb25736c319','','','2022-06-28 12:00:37','2022-06-28 16:00:37','',4249,'https://translucent.local/?post_type=acf-field&p=4251',1,'acf-field','',0),(4252,20,'2022-06-28 12:00:37','2022-06-28 16:00:37','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Copy','copy','publish','closed','closed','','field_62bb25786c31a','','','2022-06-28 12:00:37','2022-06-28 16:00:37','',4249,'https://translucent.local/?post_type=acf-field&p=4252',2,'acf-field','',0),(4253,20,'2022-06-28 12:10:33','2022-06-28 16:10:33','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Name','name','publish','closed','closed','','field_62bb260117e59','','','2022-06-28 12:10:33','2022-06-28 16:10:33','',4249,'https://translucent.local/?post_type=acf-field&p=4253',3,'acf-field','',0),(4254,20,'2022-06-28 12:10:33','2022-06-28 16:10:33','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Designation','designation','publish','closed','closed','','field_62bb260c17e5a','','','2022-06-28 12:10:33','2022-06-28 16:10:33','',4249,'https://translucent.local/?post_type=acf-field&p=4254',4,'acf-field','',0),(4255,20,'2022-06-28 12:22:56','2022-06-28 16:22:56','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb1c7c62e89\";s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdbaefa28\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Sub Heading','sub_heading','publish','closed','closed','','field_62bb1c9962e8a','','','2022-06-28 12:31:18','2022-06-28 16:31:18','',3740,'https://translucent.local/?post_type=acf-field&p=4255',0,'acf-field','',0),(4256,20,'2022-06-28 12:22:56','2022-06-28 16:22:56','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb1c7c62e89\";s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Heading','heading','publish','closed','closed','','field_62bb1c9f62e8b','','','2022-06-28 12:31:18','2022-06-28 16:31:18','',3740,'https://translucent.local/?post_type=acf-field&p=4256',1,'acf-field','',0),(4257,20,'2022-06-28 12:22:56','2022-06-28 16:22:56','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb1c7c62e89\";s:5:\"clone\";a:1:{i:0;s:19:\"field_6255310ecf4de\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Copy WYSIWYG','copy_wysiwyg','publish','closed','closed','','field_62bb1cb462e8c','','','2022-06-28 12:31:18','2022-06-28 16:31:18','',3740,'https://translucent.local/?post_type=acf-field&p=4257',2,'acf-field','',0),(4258,20,'2022-06-28 12:22:56','2022-06-28 16:22:56','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb1c7c62e89\";s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc5efa2a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Image','image','publish','closed','closed','','field_62bb1cf662e8d','','','2022-06-28 12:31:18','2022-06-28 16:31:18','',3740,'https://translucent.local/?post_type=acf-field&p=4258',3,'acf-field','',0),(4259,20,'2022-06-28 12:22:56','2022-06-28 16:22:56','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb1c7c62e89\";s:5:\"clone\";a:1:{i:0;s:19:\"field_62bb251c6c317\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Testimonial Section','testimonial_section','publish','closed','closed','','field_62bb1d7162e8f','','','2022-06-28 12:31:19','2022-06-28 16:31:19','',3740,'https://translucent.local/?post_type=acf-field&p=4259',4,'acf-field','',0),(4260,20,'2022-06-28 12:22:56','2022-06-28 16:22:56','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb1dda62e93\";s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdbaefa28\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Sub Heading','sub_heading','publish','closed','closed','','field_62bb1e2962e94','','','2022-06-28 12:31:19','2022-06-28 16:31:19','',3740,'https://translucent.local/?post_type=acf-field&p=4260',0,'acf-field','',0),(4261,20,'2022-06-28 12:22:57','2022-06-28 16:22:57','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb1dda62e93\";s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Heading','heading','publish','closed','closed','','field_62bb1e3b62e95','','','2022-06-28 12:31:19','2022-06-28 16:31:19','',3740,'https://translucent.local/?post_type=acf-field&p=4261',1,'acf-field','',0),(4262,20,'2022-06-28 12:22:57','2022-06-28 16:22:57','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb1dda62e93\";s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"block\";s:12:\"button_label\";s:0:\"\";}','Build And Platform Section','build_and_platform_section','publish','closed','closed','','field_62bb1eeb62e96','','','2022-06-28 14:26:27','2022-06-28 18:26:27','',3740,'https://translucent.local/?post_type=acf-field&p=4262',3,'acf-field','',0),(4263,20,'2022-06-28 12:22:57','2022-06-28 16:22:57','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_6255096442ef3\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Heading','heading','publish','closed','closed','','field_62bb1f1262e97','','','2022-06-28 12:22:57','2022-06-28 16:22:57','',4262,'https://translucent.local/?post_type=acf-field&p=4263',0,'acf-field','',0),(4264,20,'2022-06-28 12:22:57','2022-06-28 16:22:57','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_625523de9609f\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Image','image','publish','closed','closed','','field_62bb1f7662e98','','','2022-06-28 12:22:57','2022-06-28 16:22:57','',4262,'https://translucent.local/?post_type=acf-field&p=4264',1,'acf-field','',0),(4265,20,'2022-06-28 12:22:57','2022-06-28 16:22:57','a:10:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:5:\"clone\";a:1:{i:0;s:19:\"field_625525b15629c\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Copy WYSIWYG','copy_wysiwyg','publish','closed','closed','','field_62bb1f8662e99','','','2022-06-28 14:26:27','2022-06-28 18:26:27','',4262,'https://translucent.local/?post_type=acf-field&p=4265',2,'acf-field','',0),(4266,20,'2022-06-28 12:22:58','2022-06-28 16:22:58','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb1dda62e93\";s:5:\"clone\";a:1:{i:0;s:19:\"field_62bb251c6c317\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Testimonial Section','testimonial_section','publish','closed','closed','','field_62bb1fc662e9a','','','2022-06-28 14:26:27','2022-06-28 18:26:27','',3740,'https://translucent.local/?post_type=acf-field&p=4266',4,'acf-field','',0),(4267,20,'2022-06-28 12:22:58','2022-06-28 16:22:58','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb1d3a62e8e\";s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc5efa2a\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Image','image','publish','closed','closed','','field_62bb205e62e9f','','','2022-06-28 12:31:20','2022-06-28 16:31:20','',3740,'https://translucent.local/?post_type=acf-field&p=4267',0,'acf-field','',0),(4268,20,'2022-06-28 12:22:58','2022-06-28 16:22:58','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb209362ea0\";s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdbaefa28\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Sub Heading','sub_heading','publish','closed','closed','','field_62bb20b262ea1','','','2022-06-28 12:31:20','2022-06-28 16:31:20','',3740,'https://translucent.local/?post_type=acf-field&p=4268',0,'acf-field','',0),(4269,20,'2022-06-28 12:22:58','2022-06-28 16:22:58','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb209362ea0\";s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Heading','heading','publish','closed','closed','','field_62bb20b862ea2','','','2022-06-28 12:31:20','2022-06-28 16:31:20','',3740,'https://translucent.local/?post_type=acf-field&p=4269',1,'acf-field','',0),(4270,20,'2022-06-28 12:22:58','2022-06-28 16:22:58','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb209362ea0\";s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc0efa29\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Copy','copy','publish','closed','closed','','field_62bb20bd62ea3','','','2022-06-28 12:31:20','2022-06-28 16:31:20','',3740,'https://translucent.local/?post_type=acf-field&p=4270',2,'acf-field','',0),(4271,20,'2022-06-28 12:22:59','2022-06-28 16:22:59','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb209362ea0\";s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Table','table','publish','closed','closed','','field_62bb211762ea4','','','2022-06-28 12:22:59','2022-06-28 16:22:59','',3740,'https://translucent.local/?post_type=acf-field&p=4271',3,'acf-field','',0),(4272,20,'2022-06-28 12:22:59','2022-06-28 16:22:59','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Text','text','publish','closed','closed','','field_62bb212762ea5','','','2022-06-28 12:22:59','2022-06-28 16:22:59','',4271,'https://translucent.local/?post_type=acf-field&p=4272',0,'acf-field','',0),(4273,20,'2022-06-28 12:22:59','2022-06-28 16:22:59','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb209362ea0\";s:5:\"clone\";a:1:{i:0;s:19:\"field_62bb251c6c317\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Testimonial Section','testimonial_section','publish','closed','closed','','field_62bb214c62ea6','','','2022-06-28 12:31:21','2022-06-28 16:31:21','',3740,'https://translucent.local/?post_type=acf-field&p=4273',4,'acf-field','',0),(4274,20,'2022-06-28 12:22:59','2022-06-28 16:22:59','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb209362ea0\";s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Left Image','left_image','publish','closed','closed','','field_62bb21e962eaa','','','2022-06-28 12:22:59','2022-06-28 16:22:59','',3740,'https://translucent.local/?post_type=acf-field&p=4274',5,'acf-field','',0),(4275,20,'2022-06-28 12:22:59','2022-06-28 16:22:59','a:11:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb209362ea0\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Middle Copy','middle_copy','publish','closed','closed','','field_62bb21f462eab','','','2022-06-28 12:22:59','2022-06-28 16:22:59','',3740,'https://translucent.local/?post_type=acf-field&p=4275',6,'acf-field','',0),(4276,20,'2022-06-28 12:22:59','2022-06-28 16:22:59','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb209362ea0\";s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b3e101c4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','CTA','cta','publish','closed','closed','','field_62bb220b62eac','','','2022-06-28 12:31:21','2022-06-28 16:31:21','',3740,'https://translucent.local/?post_type=acf-field&p=4276',7,'acf-field','',0),(4277,20,'2022-06-28 12:23:00','2022-06-28 16:23:00','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb223662ead\";s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdbaefa28\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Sub Heading','sub_heading','publish','closed','closed','','field_62bb224b62eae','','','2022-06-28 12:31:21','2022-06-28 16:31:21','',3740,'https://translucent.local/?post_type=acf-field&p=4277',0,'acf-field','',0),(4278,20,'2022-06-28 12:23:00','2022-06-28 16:23:00','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb223662ead\";s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Heading','heading','publish','closed','closed','','field_62bb226062eaf','','','2022-06-28 12:31:21','2022-06-28 16:31:21','',3740,'https://translucent.local/?post_type=acf-field&p=4278',1,'acf-field','',0),(4279,20,'2022-06-28 12:23:00','2022-06-28 16:23:00','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb223662ead\";s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Left Section','left_section','publish','closed','closed','','field_62bb28a762eb0','','','2022-06-28 12:23:00','2022-06-28 16:23:00','',3740,'https://translucent.local/?post_type=acf-field&p=4279',2,'acf-field','',0),(4280,20,'2022-06-28 12:23:00','2022-06-28 16:23:00','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Text','text','publish','closed','closed','','field_62bb28b062eb1','','','2022-06-28 12:23:00','2022-06-28 16:23:00','',4279,'https://translucent.local/?post_type=acf-field&p=4280',0,'acf-field','',0),(4281,20,'2022-06-28 12:23:01','2022-06-28 16:23:01','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb223662ead\";s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','Right Section','right_section','publish','closed','closed','','field_62bb28be62eb2','','','2022-06-28 12:23:01','2022-06-28 16:23:01','',3740,'https://translucent.local/?post_type=acf-field&p=4281',3,'acf-field','',0),(4282,20,'2022-06-28 12:23:01','2022-06-28 16:23:01','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Text','text','publish','closed','closed','','field_62bb28be62eb3','','','2022-06-28 12:23:01','2022-06-28 16:23:01','',4281,'https://translucent.local/?post_type=acf-field&p=4282',0,'acf-field','',0),(4283,20,'2022-06-28 12:23:01','2022-06-28 16:23:01','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb290b62eb4\";s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdbaefa28\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Sub Heading','sub_heading','publish','closed','closed','','field_62bb293062eb5','','','2022-06-28 12:31:21','2022-06-28 16:31:21','',3740,'https://translucent.local/?post_type=acf-field&p=4283',0,'acf-field','',0),(4284,20,'2022-06-28 12:23:01','2022-06-28 16:23:01','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb290b62eb4\";s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdb2efa27\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Heading','heading','publish','closed','closed','','field_62bb295b62eb6','','','2022-06-28 12:31:22','2022-06-28 16:31:22','',3740,'https://translucent.local/?post_type=acf-field&p=4284',1,'acf-field','',0),(4285,20,'2022-06-28 12:23:01','2022-06-28 16:23:01','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb290b62eb4\";s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"block\";s:12:\"button_label\";s:0:\"\";}','List Section','list_section','publish','closed','closed','','field_62bb29b362eb7','','','2022-06-28 12:23:01','2022-06-28 16:23:01','',3740,'https://translucent.local/?post_type=acf-field&p=4285',2,'acf-field','',0),(4286,20,'2022-06-28 12:23:02','2022-06-28 16:23:02','a:10:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:5:\"table\";s:12:\"button_label\";s:0:\"\";}','List','list','publish','closed','closed','','field_62bb29bd62eb8','','','2022-06-28 12:23:02','2022-06-28 16:23:02','',4285,'https://translucent.local/?post_type=acf-field&p=4286',0,'acf-field','',0),(4287,20,'2022-06-28 12:23:02','2022-06-28 16:23:02','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Copy','copy','publish','closed','closed','','field_62bb2a0462eb9','','','2022-06-28 12:23:02','2022-06-28 16:23:02','',4286,'https://translucent.local/?post_type=acf-field&p=4287',0,'acf-field','',0),(4288,20,'2022-06-28 12:23:02','2022-06-28 16:23:02','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb2a5462eba\";s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdc0efa29\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Copy','copy','publish','closed','closed','','field_62bb2a7262ebb','','','2022-06-28 12:31:22','2022-06-28 16:31:22','',3740,'https://translucent.local/?post_type=acf-field&p=4288',0,'acf-field','',0),(4289,20,'2022-06-28 12:23:02','2022-06-28 16:23:02','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb2a5462eba\";s:5:\"clone\";a:1:{i:0;s:19:\"field_62551b3e101c4\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','CTA','cta','publish','closed','closed','','field_62bb2a8962ebc','','','2022-06-28 12:31:22','2022-06-28 16:31:22','',3740,'https://translucent.local/?post_type=acf-field&p=4289',1,'acf-field','',0),(4290,20,'2022-06-28 14:26:27','2022-06-28 18:26:27','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb1dda62e93\";s:5:\"clone\";a:1:{i:0;s:19:\"field_6255310ecf4de\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Copy WYSIWYG','copy_wysiwyg','publish','closed','closed','','field_62bb44696be57','','','2022-06-28 14:26:27','2022-06-28 18:26:27','',3740,'https://translucent.local/?post_type=acf-field&p=4290',2,'acf-field','',0),(4291,20,'2022-06-28 14:30:22','2022-06-28 18:30:22','','Asset-1','','inherit','open','closed','','asset-1-2','','','2022-06-28 14:30:22','2022-06-28 18:30:22','',4242,'https://translucent.local/wp-content/uploads/2022/06/Asset-1-1.jpg',0,'attachment','image/jpeg',0),(4292,20,'2022-06-28 14:30:38','2022-06-28 18:30:38','','Cloud Native Application - New','','inherit','closed','closed','','4242-revision-v1','','','2022-06-28 14:30:38','2022-06-28 18:30:38','',4242,'https://translucent.local/?p=4292',0,'revision','',0),(4293,20,'2022-06-28 14:50:35','2022-06-28 18:50:35','','rebuild_1','','inherit','open','closed','','rebuild_1-2','','','2022-09-13 06:00:28','2022-09-13 10:00:28','',4242,'https://translucent.local/wp-content/uploads/2022/06/rebuild_1-1.jpg',0,'attachment','image/jpeg',0),(4294,20,'2022-06-28 14:51:23','2022-06-28 18:51:23','','replatform','','inherit','open','closed','','replatform-2','','','2022-09-13 06:00:23','2022-09-13 10:00:23','',4242,'https://translucent.local/wp-content/uploads/2022/06/replatform-1.jpg',0,'attachment','image/jpeg',0),(4295,20,'2022-06-28 14:53:24','2022-06-28 18:53:24','','Group-8578','','inherit','open','closed','','group-8578-3','','','2022-09-13 06:00:20','2022-09-13 10:00:20','',4242,'https://translucent.local/wp-content/uploads/2022/06/Group-8578-1.jpg',0,'attachment','image/jpeg',0),(4296,20,'2022-06-28 14:54:41','2022-06-28 18:54:41','','Cloud Native Application - New','','inherit','closed','closed','','4242-revision-v1','','','2022-06-28 14:54:41','2022-06-28 18:54:41','',4242,'https://translucent.local/?p=4296',0,'revision','',0),(4297,20,'2022-06-28 14:59:24','2022-06-28 18:59:24','','Cloud Native Application - New','','inherit','closed','closed','','4242-revision-v1','','','2022-06-28 14:59:24','2022-06-28 18:59:24','',4242,'https://translucent.local/?p=4297',0,'revision','',0),(4298,20,'2022-06-28 15:02:45','2022-06-28 19:02:45','','Cloud Native Application - New','','inherit','closed','closed','','4242-revision-v1','','','2022-06-28 15:02:45','2022-06-28 19:02:45','',4242,'https://translucent.local/?p=4298',0,'revision','',0),(4299,20,'2022-06-28 15:14:43','2022-06-28 19:14:43','','Cloud Native Application - New','','inherit','closed','closed','','4242-revision-v1','','','2022-06-28 15:14:43','2022-06-28 19:14:43','',4242,'https://translucent.local/?p=4299',0,'revision','',0),(4300,20,'2022-06-28 15:19:41','2022-06-28 19:19:41','','Cloud Native Application - New','','inherit','closed','closed','','4242-revision-v1','','','2022-06-28 15:19:41','2022-06-28 19:19:41','',4242,'https://translucent.local/?p=4300',0,'revision','',0),(4301,20,'2022-06-28 15:23:21','2022-06-28 19:23:21','','Group-8625','','inherit','open','closed','','group-8625-2','','','2022-09-13 06:00:17','2022-09-13 10:00:17','',4242,'https://translucent.local/wp-content/uploads/2022/06/Group-8625-1.png',0,'attachment','image/png',0),(4302,20,'2022-06-28 15:24:00','2022-06-28 19:24:00','','Cloud Native Application - New','','inherit','closed','closed','','4242-revision-v1','','','2022-06-28 15:24:00','2022-06-28 19:24:00','',4242,'https://translucent.local/?p=4302',0,'revision','',0),(4303,20,'2022-06-28 15:27:48','2022-06-28 19:27:48','','Group-8594','','inherit','open','closed','','group-8594-2','','','2022-09-13 06:00:15','2022-09-13 10:00:15','',4242,'https://translucent.local/wp-content/uploads/2022/06/Group-8594-1.png',0,'attachment','image/png',0),(4304,20,'2022-06-28 15:27:55','2022-06-28 19:27:55','','Group-8625','','inherit','open','closed','','group-8625-3','','','2022-09-13 06:00:12','2022-09-13 10:00:12','',4242,'https://translucent.local/wp-content/uploads/2022/06/Group-8625-2.png',0,'attachment','image/png',0),(4305,20,'2022-06-28 15:28:01','2022-06-28 19:28:01','','Cloud Native Application - New','','inherit','closed','closed','','4242-revision-v1','','','2022-06-28 15:28:01','2022-06-28 19:28:01','',4242,'https://translucent.local/?p=4305',0,'revision','',0),(4306,20,'2022-06-28 15:28:17','2022-06-28 19:28:17','','Group-8594','','inherit','open','closed','','group-8594-3','','','2022-09-13 06:00:09','2022-09-13 10:00:09','',4242,'https://translucent.local/wp-content/uploads/2022/06/Group-8594-2.png',0,'attachment','image/png',0),(4307,20,'2022-06-28 15:55:25','2022-06-28 19:55:25','','Cloud Native Application - New','','inherit','closed','closed','','4242-revision-v1','','','2022-06-28 15:55:25','2022-06-28 19:55:25','',4242,'https://translucent.local/?p=4307',0,'revision','',0),(4309,20,'2022-06-28 15:57:29','2022-06-28 19:57:29','','Cloud Native Application - New','','inherit','closed','closed','','4242-revision-v1','','','2022-06-28 15:57:29','2022-06-28 19:57:29','',4242,'https://translucent.local/?p=4309',0,'revision','',0),(4310,20,'2022-06-28 16:05:22','2022-06-28 20:05:22','','Cloud Native Application - New','','inherit','closed','closed','','4242-revision-v1','','','2022-06-28 16:05:22','2022-06-28 20:05:22','',4242,'https://translucent.local/?p=4310',0,'revision','',0),(4311,20,'2022-06-28 16:06:36','2022-06-28 20:06:36','','Cloud Native Application - New','','inherit','closed','closed','','4242-revision-v1','','','2022-06-28 16:06:36','2022-06-28 20:06:36','',4242,'https://translucent.local/?p=4311',0,'revision','',0),(4312,20,'2022-06-28 17:18:49','2022-06-28 21:18:49','','mobile-scroll','','inherit','open','closed','','mobile-scroll','','','2022-09-13 06:00:07','2022-09-13 10:00:07','',4242,'https://translucent.local/wp-content/uploads/2022/06/mobile-scroll.png',0,'attachment','image/png',0),(4315,20,'2022-06-28 17:23:33','2022-06-28 21:23:33','','sroll-l','','inherit','open','closed','','sroll-l','','','2022-09-13 06:00:04','2022-09-13 10:00:04','',0,'https://translucent.local/wp-content/uploads/2022/06/sroll-l.png',0,'attachment','image/png',0),(4316,20,'2022-06-28 17:24:09','2022-06-28 21:24:09','','scroll-right','','inherit','open','closed','','scroll-right','','','2022-09-13 06:00:00','2022-09-13 10:00:00','',0,'https://translucent.local/wp-content/uploads/2022/06/scroll-right.png',0,'attachment','image/png',0),(4319,20,'2022-06-29 10:08:47','2022-06-29 14:08:47','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb16d744679\";s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdcbefa2b\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Mob Image','mob_image','publish','closed','closed','','field_62bc5c91b8f13','','','2022-06-29 10:08:47','2022-06-29 14:08:47','',3740,'https://translucent.local/?post_type=acf-field&p=4319',1,'acf-field','',0),(4320,20,'2022-06-29 10:12:10','2022-06-29 14:12:10','','mobil-baner-app','','inherit','open','closed','','mobil-baner-app-2','','','2022-09-13 05:59:57','2022-09-13 09:59:57','',4242,'https://translucent.local/wp-content/uploads/2022/06/mobil-baner-app-1.png',0,'attachment','image/png',0),(4321,20,'2022-06-29 10:12:36','2022-06-29 14:12:36','','Cloud Native Application - New','','inherit','closed','closed','','4242-revision-v1','','','2022-06-29 10:12:36','2022-06-29 14:12:36','',4242,'https://translucent.local/?p=4321',0,'revision','',0),(4322,20,'2022-06-29 10:25:56','2022-06-29 14:25:56','a:11:{s:4:\"type\";s:5:\"clone\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62bb1d3a62e8e\";s:5:\"clone\";a:1:{i:0;s:19:\"field_6254fdcbefa2b\";}s:7:\"display\";s:8:\"seamless\";s:6:\"layout\";s:5:\"block\";s:12:\"prefix_label\";i:0;s:11:\"prefix_name\";i:0;}','Mob Image','mob_image','publish','closed','closed','','field_62bc5fba29a08','','','2022-06-29 10:25:56','2022-06-29 14:25:56','',3740,'https://translucent.local/?post_type=acf-field&p=4322',1,'acf-field','',0),(4323,20,'2022-06-29 10:27:42','2022-06-29 14:27:42','','Cloud Native Application - New','','inherit','closed','closed','','4242-revision-v1','','','2022-06-29 10:27:42','2022-06-29 14:27:42','',4242,'https://translucent.local/?p=4323',0,'revision','',0),(4324,20,'2022-06-29 11:43:05','2022-06-29 15:43:05','','devops_coonsulting','','inherit','open','closed','','devops_coonsulting','','','2022-09-13 05:59:54','2022-09-13 09:59:54','',0,'https://translucent.local/wp-content/uploads/2022/06/devops_coonsulting.png',0,'attachment','image/png',0),(4327,20,'2022-06-30 08:50:07','2022-06-30 12:50:07','','Group 8578','','inherit','open','closed','','group-8578-4','','','2022-09-13 05:59:51','2022-09-13 09:59:51','',0,'https://translucent.local/wp-content/uploads/2022/06/Group-8578-1.png',0,'attachment','image/png',0),(4328,20,'2022-06-30 08:55:43','2022-06-30 12:55:43','','devops_roadmap','','inherit','open','closed','','devops_roadmap','','','2022-09-13 05:59:48','2022-09-13 09:59:48','',0,'https://translucent.local/wp-content/uploads/2022/06/devops_roadmap.png',0,'attachment','image/png',0),(4329,20,'2022-06-30 09:31:56','2022-06-30 13:31:56','','kubernetes-w','','inherit','open','closed','','kubernetes-w','','','2022-09-13 05:59:46','2022-09-13 09:59:46','',0,'https://translucent.local/wp-content/uploads/2022/06/kubernetes-w.svg',0,'attachment','image/svg+xml',0),(4330,20,'2022-06-30 11:23:20','2022-06-30 15:23:20','','kubernets_graph','','inherit','open','closed','','kubernets_graph','','','2022-09-13 05:59:43','2022-09-13 09:59:43','',0,'https://translucent.local/wp-content/uploads/2022/06/kubernets_graph.png',0,'attachment','image/png',0),(4332,20,'2022-06-30 11:27:12','2022-06-30 15:27:12','','mrdata2','','inherit','open','closed','','mrdata2-3','','','2022-09-13 05:59:40','2022-09-13 09:59:40','',0,'https://translucent.local/wp-content/uploads/2022/06/mrdata2.png',0,'attachment','image/png',0),(4333,20,'2022-06-30 16:27:50','2022-06-30 20:27:50','','bg-people-tc1','','inherit','open','closed','','bg-people-tc1-2','','','2022-09-13 05:59:37','2022-09-13 09:59:37','',0,'https://translucent.local/wp-content/uploads/2022/06/bg-people-tc1.png',0,'attachment','image/png',0),(4334,20,'2022-06-30 17:59:07','2022-06-30 21:59:07','','Union 21','','inherit','open','closed','','union-21','','','2022-09-13 05:59:34','2022-09-13 09:59:34','',0,'https://translucent.local/wp-content/uploads/2022/06/Union-21.png',0,'attachment','image/png',0),(4335,20,'2022-07-01 05:42:40','2022-07-01 09:42:40','','Cloud Native Application - New','','inherit','closed','closed','','4242-revision-v1','','','2022-07-01 05:42:40','2022-07-01 09:42:40','',4242,'https://translucent.local/?p=4335',0,'revision','',0),(4336,20,'2022-07-01 06:00:20','2022-07-01 10:00:20','','Cloud Native Application - New','','inherit','closed','closed','','4242-revision-v1','','','2022-07-01 06:00:20','2022-07-01 10:00:20','',4242,'https://translucent.local/?p=4336',0,'revision','',0),(4337,20,'2022-07-01 06:32:39','0000-00-00 00:00:00','','New C','','draft','closed','closed','','','','','2022-07-01 06:32:39','2022-07-01 10:32:39','',0,'https://translucent.local/?page_id=4337',0,'page','',0),(4338,20,'2022-07-01 08:55:43','2022-07-01 12:55:43','','Cloud Native DevOps Consulting Isk','','publish','closed','closed','','cloud-native-devops-consulting-isk','','','2022-07-15 16:14:17','2022-07-15 20:14:17','',0,'https://translucent.local/?page_id=4338',0,'page','',0),(4339,20,'2022-07-01 08:55:43','2022-07-01 12:55:43','','Cloud Native DevOps Consulting Isk','','inherit','closed','closed','','4338-revision-v1','','','2022-07-01 08:55:43','2022-07-01 12:55:43','',4338,'https://translucent.local/?p=4339',0,'revision','',0),(4342,20,'2022-07-01 11:18:40','2022-07-01 15:18:40','','dlr','','inherit','open','closed','','dlr','','','2022-09-13 05:59:31','2022-09-13 09:59:31','',0,'https://translucent.local/wp-content/uploads/2022/07/dlr.png',0,'attachment','image/png',0),(4343,20,'2022-07-01 11:19:03','2022-07-01 15:19:03','','drive','','inherit','open','closed','','drive','','','2022-09-13 05:59:29','2022-09-13 09:59:29','',0,'https://translucent.local/wp-content/uploads/2022/07/drive.png',0,'attachment','image/png',0),(4344,20,'2022-07-01 11:19:20','2022-07-01 15:19:20','','auto','','inherit','open','closed','','auto','','','2022-09-13 05:59:25','2022-09-13 09:59:25','',0,'https://translucent.local/wp-content/uploads/2022/07/auto.png',0,'attachment','image/png',0),(4345,20,'2022-07-01 11:19:36','2022-07-01 15:19:36','','wrld','','inherit','open','closed','','wrld','','','2022-09-13 05:59:22','2022-09-13 09:59:22','',0,'https://translucent.local/wp-content/uploads/2022/07/wrld.png',0,'attachment','image/png',0),(4346,20,'2022-07-01 11:20:21','2022-07-01 15:20:21','','cstmr','','inherit','open','closed','','cstmr','','','2022-09-13 05:59:18','2022-09-13 09:59:18','',0,'https://translucent.local/wp-content/uploads/2022/07/cstmr.png',0,'attachment','image/png',0),(4347,20,'2022-07-01 11:24:20','2022-07-01 15:24:20','','clck','','inherit','open','closed','','clck','','','2022-09-13 05:59:02','2022-09-13 09:59:02','',0,'https://translucent.local/wp-content/uploads/2022/07/clck.png',0,'attachment','image/png',0),(4348,20,'2022-07-01 11:50:56','2022-07-01 15:50:56','','ppl','','inherit','open','closed','','ppl','','','2022-09-13 05:58:59','2022-09-13 09:58:59','',0,'https://translucent.local/wp-content/uploads/2022/07/ppl.png',0,'attachment','image/png',0),(4349,20,'2022-07-01 11:51:24','2022-07-01 15:51:24','','icon','','inherit','open','closed','','icon','','','2022-09-13 05:58:56','2022-09-13 09:58:56','',0,'https://translucent.local/wp-content/uploads/2022/07/icon.png',0,'attachment','image/png',0),(4350,20,'2022-07-01 11:52:03','2022-07-01 15:52:03','','loaction','','inherit','open','closed','','loaction','','','2022-09-13 05:58:53','2022-09-13 09:58:53','',0,'https://translucent.local/wp-content/uploads/2022/07/loaction.png',0,'attachment','image/png',0),(4351,20,'2022-07-01 11:52:57','2022-07-01 15:52:57','','icon2','','inherit','open','closed','','icon2','','','2022-09-13 05:58:52','2022-09-13 09:58:52','',0,'https://translucent.local/wp-content/uploads/2022/07/icon2.png',0,'attachment','image/png',0),(4352,20,'2022-07-01 12:00:59','2022-07-01 16:00:59','','icon3','','inherit','open','closed','','icon3','','','2022-09-13 05:58:47','2022-09-13 09:58:47','',0,'https://translucent.local/wp-content/uploads/2022/07/icon3.png',0,'attachment','image/png',0),(4353,20,'2022-07-01 12:06:25','2022-07-01 16:06:25','','bg-people-tc1-mo','','inherit','open','closed','','bg-people-tc1-mo','','','2022-09-13 05:58:44','2022-09-13 09:58:44','',0,'https://translucent.local/wp-content/uploads/2022/07/bg-people-tc1-mo.png',0,'attachment','image/png',0),(4354,20,'2022-07-04 10:44:36','2022-07-04 14:44:36','','Group 8711','','inherit','open','closed','','group-8711','','','2022-09-13 05:58:40','2022-09-13 09:58:40','',0,'https://translucent.local/wp-content/uploads/2022/07/Group-8711.png',0,'attachment','image/png',0),(4355,20,'2022-07-04 10:45:08','2022-07-04 14:45:08','','Group 8713','','inherit','open','closed','','group-8713','','','2022-09-13 05:58:38','2022-09-13 09:58:38','',0,'https://translucent.local/wp-content/uploads/2022/07/Group-8713.png',0,'attachment','image/png',0),(4356,20,'2022-07-04 10:45:24','2022-07-04 14:45:24','','Group 8712','','inherit','open','closed','','group-8712','','','2022-09-13 05:58:35','2022-09-13 09:58:35','',0,'https://translucent.local/wp-content/uploads/2022/07/Group-8712.png',0,'attachment','image/png',0),(4357,20,'2022-07-04 10:45:39','2022-07-04 14:45:39','','Group 8710','','inherit','open','closed','','group-8710','','','2022-09-13 05:58:32','2022-09-13 09:58:32','',0,'https://translucent.local/wp-content/uploads/2022/07/Group-8710.png',0,'attachment','image/png',0),(4358,20,'2022-07-04 10:45:56','2022-07-04 14:45:56','','Group 8556','','inherit','open','closed','','group-8556-2','','','2022-09-13 05:58:29','2022-09-13 09:58:29','',0,'https://translucent.local/wp-content/uploads/2022/07/Group-8556.png',0,'attachment','image/png',0),(4360,20,'2022-07-05 02:56:55','2022-07-05 06:56:55','','TEKTeams','','inherit','closed','closed','','4064-autosave-v1','','','2022-07-05 02:56:55','2022-07-05 06:56:55','',4064,'https://translucent.local/?p=4360',0,'revision','',0),(4361,20,'2022-07-05 05:53:03','2022-07-05 09:53:03','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40804624b5\";s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Mobile Image','mobile_image','publish','closed','closed','','field_62c409bd624b6','','','2022-07-05 05:53:03','2022-07-05 09:53:03','',3740,'https://translucent.local/?post_type=acf-field&p=4361',0,'acf-field','',0),(4362,20,'2022-07-05 05:53:04','2022-07-05 09:53:04','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40804624b5\";s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_62c409cf624b7','','','2022-07-05 05:53:04','2022-07-05 09:53:04','',3740,'https://translucent.local/?post_type=acf-field&p=4362',1,'acf-field','',0),(4363,20,'2022-07-05 05:53:04','2022-07-05 09:53:04','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40804624b5\";s:13:\"default_value\";s:22:\"CLOUD NATIVE SOLUTIONS\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Heading','heading','publish','closed','closed','','field_62c409db624b8','','','2022-07-05 05:53:04','2022-07-05 09:53:04','',3740,'https://translucent.local/?post_type=acf-field&p=4363',2,'acf-field','',0),(4364,20,'2022-07-05 05:53:04','2022-07-05 09:53:04','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40804624b5\";s:13:\"default_value\";s:30:\"Cloud Native DevOps Consulting\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Sub Heading','sub_heading','publish','closed','closed','','field_62c409e8624b9','','','2022-07-05 05:53:04','2022-07-05 09:53:04','',3740,'https://translucent.local/?post_type=acf-field&p=4364',3,'acf-field','',0),(4365,20,'2022-07-05 05:56:01','2022-07-05 09:56:01','','Union-21-min','','inherit','open','closed','','union-21-min','','','2022-09-13 05:58:27','2022-09-13 09:58:27','',4338,'https://translucent.local/wp-content/uploads/2022/07/Union-21-min.png',0,'attachment','image/png',0),(4366,20,'2022-07-05 05:56:44','2022-07-05 09:56:44','','app-banner-min','','inherit','open','closed','','app-banner-min','','','2022-09-13 05:58:24','2022-09-13 09:58:24','',4338,'https://translucent.local/wp-content/uploads/2022/07/app-banner-min.png',0,'attachment','image/png',0),(4367,20,'2022-07-05 05:57:19','2022-07-05 09:57:19','','Cloud Native DevOps Consulting Isk','','inherit','closed','closed','','4338-revision-v1','','','2022-07-05 05:57:19','2022-07-05 09:57:19','',4338,'https://translucent.local/?p=4367',0,'revision','',0),(4369,20,'2022-07-05 06:36:18','2022-07-05 10:36:18','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40b14f22ed\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:1;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:3:\"Yes\";s:11:\"ui_off_text\";s:2:\"No\";}','Left Arrow Show Hide','left_arrow_show_hide','publish','closed','closed','','field_62c40bccf22ef','','','2022-07-05 06:36:18','2022-07-05 10:36:18','',3740,'https://translucent.local/?post_type=acf-field&p=4369',0,'acf-field','',0),(4370,20,'2022-07-05 06:36:18','2022-07-05 10:36:18','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40b14f22ed\";s:13:\"default_value\";s:25:\"COST-EFFECTIVE AUTOMATION\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Label Text','label_text','publish','closed','closed','','field_62c40b9bf22ee','','','2022-07-05 06:36:18','2022-07-05 10:36:18','',3740,'https://translucent.local/?post_type=acf-field&p=4370',1,'acf-field','',0),(4371,20,'2022-07-05 06:36:18','2022-07-05 10:36:18','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40b14f22ed\";s:13:\"default_value\";s:59:\"Focused On What Drives Business Value\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Heading','heading','publish','closed','closed','','field_62c40be6f22f0','','','2022-07-05 06:36:18','2022-07-05 10:36:18','',3740,'https://translucent.local/?post_type=acf-field&p=4371',2,'acf-field','',0),(4372,20,'2022-07-05 06:36:19','2022-07-05 10:36:19','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40b14f22ed\";s:13:\"default_value\";s:182:\"

Our solution increases your team collaboration and system automation. Our continuous technology improvements drive business value and cross-collaboration between teams.

\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Content','content','publish','closed','closed','','field_62c40c05f22f1','','','2022-07-05 06:36:19','2022-07-05 10:36:19','',3740,'https://translucent.local/?post_type=acf-field&p=4372',3,'acf-field','',0),(4373,20,'2022-07-05 06:36:19','2022-07-05 10:36:19','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40b14f22ed\";s:13:\"default_value\";s:154:\"

We help improve the experience of your clients, customers, staff, and third parties without the need for the added cost of people resources.

\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Grey Box Content','grey_box_content','publish','closed','closed','','field_62c40c1ef22f2','','','2022-07-05 06:36:19','2022-07-05 10:36:19','',3740,'https://translucent.local/?post_type=acf-field&p=4373',4,'acf-field','',0),(4374,20,'2022-07-05 06:36:19','2022-07-05 10:36:19','a:7:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40b14f22ed\";s:13:\"return_format\";s:5:\"array\";}','Button','button','publish','closed','closed','','field_62c40c38f22f3','','','2022-07-05 06:36:19','2022-07-05 10:36:19','',3740,'https://translucent.local/?post_type=acf-field&p=4374',5,'acf-field','',0),(4375,20,'2022-07-05 06:36:19','2022-07-05 10:36:19','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40b14f22ed\";s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_62c40c4cf22f4','','','2022-07-05 06:36:19','2022-07-05 10:36:19','',3740,'https://translucent.local/?post_type=acf-field&p=4375',6,'acf-field','',0),(4376,20,'2022-07-05 06:36:19','2022-07-05 10:36:19','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40b14f22ed\";s:13:\"default_value\";s:382:\"Translucent’s understanding of the cloud native DevOps space and expertise in Kubernetes through to data driven applications has proven extremely valuable… Their holistic understanding of cloud native technology, Infrastructure as Code (IaC) and security…has been invaluable. I would use them again if I could. In fact, I would use their team for everything if I could!\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Review Content','review_content','publish','closed','closed','','field_62c40c97f22f5','','','2022-07-05 06:36:19','2022-07-05 10:36:19','',3740,'https://translucent.local/?post_type=acf-field&p=4376',7,'acf-field','',0),(4377,20,'2022-07-05 06:36:19','2022-07-05 10:36:19','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40b14f22ed\";s:13:\"default_value\";s:50:\"Rhys Parry - CTO - Volentix\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Review Title','review_title','publish','closed','closed','','field_62c40cb4f22f6','','','2022-07-05 06:36:19','2022-07-05 10:36:19','',3740,'https://translucent.local/?post_type=acf-field&p=4377',8,'acf-field','',0),(4378,20,'2022-07-05 06:36:19','2022-07-05 10:36:19','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40ce9f22f7\";s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Journey Logo Map Image','journey_logo_map_image','publish','closed','closed','','field_62c40d24f22f8','','','2022-07-05 06:36:19','2022-07-05 10:36:19','',3740,'https://translucent.local/?post_type=acf-field&p=4378',0,'acf-field','',0),(4379,20,'2022-07-05 06:36:19','2022-07-05 10:36:19','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40ce9f22f7\";s:13:\"default_value\";s:49:\"Your DevOps Journey Roadmap\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Heading','heading','publish','closed','closed','','field_62c40d46f22f9','','','2022-07-05 06:36:19','2022-07-05 10:36:19','',3740,'https://translucent.local/?post_type=acf-field&p=4379',1,'acf-field','',0),(4380,20,'2022-07-05 06:36:20','2022-07-05 10:36:20','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40ce9f22f7\";s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Scroll Image','scroll_image','publish','closed','closed','','field_62c40d60f22fa','','','2022-07-05 06:36:20','2022-07-05 10:36:20','',3740,'https://translucent.local/?post_type=acf-field&p=4380',2,'acf-field','',0),(4381,20,'2022-07-05 06:36:20','2022-07-05 10:36:20','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40d79f22fb\";s:13:\"default_value\";s:8:\"Services\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Heading','heading','publish','closed','closed','','field_62c40db8f22fc','','','2022-07-05 06:36:20','2022-07-05 10:36:20','',3740,'https://translucent.local/?post_type=acf-field&p=4381',0,'acf-field','',0),(4382,20,'2022-07-05 06:36:20','2022-07-05 10:36:20','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40d79f22fb\";s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Application First Column','','publish','closed','closed','','field_62c40fe0f230a','','','2022-07-05 06:44:26','2022-07-05 10:44:26','',3740,'https://translucent.local/?post_type=acf-field&p=4382',1,'acf-field','',0),(4383,20,'2022-07-05 06:36:21','2022-07-05 10:36:21','a:11:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40d79f22fb\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Application Column Heading','application_column_heading','publish','closed','closed','','field_62c40e07f22fd','','','2022-07-05 06:36:21','2022-07-05 10:36:21','',3740,'https://translucent.local/?post_type=acf-field&p=4383',2,'acf-field','',0),(4384,20,'2022-07-05 06:36:21','2022-07-05 10:36:21','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40d79f22fb\";s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:0:\"\";}','Application Text Repeater','application_text_repeater','publish','closed','closed','','field_62c40e34f22fe','','','2022-07-05 06:36:21','2022-07-05 10:36:21','',3740,'https://translucent.local/?post_type=acf-field&p=4384',3,'acf-field','',0),(4385,20,'2022-07-05 06:36:21','2022-07-05 10:36:21','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Text','text','publish','closed','closed','','field_62c40e41f22ff','','','2022-07-05 06:36:21','2022-07-05 10:36:21','',4384,'https://translucent.local/?post_type=acf-field&p=4385',0,'acf-field','',0),(4386,20,'2022-07-05 06:36:22','2022-07-05 10:36:22','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40d79f22fb\";s:13:\"default_value\";s:52:\"Deliver DevOps culture and best practices to clients\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Application Sub Text','application_sub_text','publish','closed','closed','','field_62c40e52f2300','','','2022-07-05 06:36:22','2022-07-05 10:36:22','',3740,'https://translucent.local/?post_type=acf-field&p=4386',4,'acf-field','',0),(4387,20,'2022-07-05 06:36:22','2022-07-05 10:36:22','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40d79f22fb\";s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Application Second Column','','publish','closed','closed','','field_62c40fc5f2309','','','2022-07-05 06:44:27','2022-07-05 10:44:27','',3740,'https://translucent.local/?post_type=acf-field&p=4387',5,'acf-field','',0),(4388,20,'2022-07-05 06:36:22','2022-07-05 10:36:22','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40d79f22fb\";s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:0:\"\";}','Application Column Second Slide Repeater','application_column_second_slide_repeater','publish','closed','closed','','field_62c40ee2f2301','','','2022-07-05 06:36:22','2022-07-05 10:36:22','',3740,'https://translucent.local/?post_type=acf-field&p=4388',6,'acf-field','',0),(4389,20,'2022-07-05 06:36:22','2022-07-05 10:36:22','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Heading','heading','publish','closed','closed','','field_62c40efaf2302','','','2022-07-05 06:36:22','2022-07-05 10:36:22','',4388,'https://translucent.local/?post_type=acf-field&p=4389',0,'acf-field','',0),(4390,20,'2022-07-05 06:36:22','2022-07-05 10:36:22','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Paragraph','paragraph','publish','closed','closed','','field_62c40f05f2303','','','2022-07-05 06:36:22','2022-07-05 10:36:22','',4388,'https://translucent.local/?post_type=acf-field&p=4390',1,'acf-field','',0),(4391,20,'2022-07-05 06:36:23','2022-07-05 10:36:23','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40d79f22fb\";s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Bottom Text','','publish','closed','closed','','field_62c40faaf2308','','','2022-07-05 06:44:27','2022-07-05 10:44:27','',3740,'https://translucent.local/?post_type=acf-field&p=4391',7,'acf-field','',0),(4392,20,'2022-07-05 06:36:23','2022-07-05 10:36:23','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40d79f22fb\";s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Reliability Engineers Bottom','reliability_engineers_bottom','publish','closed','closed','','field_62c40f50f2304','','','2022-07-05 06:36:23','2022-07-05 10:36:23','',3740,'https://translucent.local/?post_type=acf-field&p=4392',8,'acf-field','',0),(4393,20,'2022-07-05 06:36:23','2022-07-05 10:36:23','a:11:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40d79f22fb\";s:13:\"default_value\";s:102:\"Translucent’s Site Reliability Engineers (SRE) experts in DevOps are Kubernetes Certified Providers.\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Reliability Engineers Content','reliability_engineers_content','publish','closed','closed','','field_62c40f64f2305','','','2022-07-05 06:36:23','2022-07-05 10:36:23','',3740,'https://translucent.local/?post_type=acf-field&p=4393',9,'acf-field','',0),(4394,20,'2022-07-05 06:36:23','2022-07-05 10:36:23','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40d79f22fb\";s:13:\"default_value\";s:45:\"\"71% of Fortune 100 companies use Kubernetes.\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Text Box','text_box','publish','closed','closed','','field_62c40f79f2306','','','2022-07-05 06:36:23','2022-07-05 10:36:23','',3740,'https://translucent.local/?post_type=acf-field&p=4394',10,'acf-field','',0),(4395,20,'2022-07-05 06:36:23','2022-07-05 10:36:23','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c40d79f22fb\";s:13:\"default_value\";s:17:\"(source: CNCF.IO)\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Right Short Text','right_short_text','publish','closed','closed','','field_62c40f93f2307','','','2022-07-05 06:36:23','2022-07-05 10:36:23','',3740,'https://translucent.local/?post_type=acf-field&p=4395',11,'acf-field','',0),(4396,20,'2022-07-05 06:36:23','2022-07-05 10:36:23','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c4101cf230b\";s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_62c41066f230c','','','2022-07-05 06:36:23','2022-07-05 10:36:23','',3740,'https://translucent.local/?post_type=acf-field&p=4396',0,'acf-field','',0),(4397,20,'2022-07-05 06:36:23','2022-07-05 10:36:23','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c4101cf230b\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:1;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:3:\"Yes\";s:11:\"ui_off_text\";s:2:\"No\";}','Arrow Show Hide Build','arrow_show_hide_build','publish','closed','closed','','field_62c41086f230e','','','2022-07-05 06:36:23','2022-07-05 10:36:23','',3740,'https://translucent.local/?post_type=acf-field&p=4397',1,'acf-field','',0),(4398,20,'2022-07-05 06:36:24','2022-07-05 10:36:24','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c4101cf230b\";s:13:\"default_value\";s:29:\"BUILD - REBUILD - REPLATAFORM\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Label Text','label_text','publish','closed','closed','','field_62c41075f230d','','','2022-07-05 06:36:24','2022-07-05 10:36:24','',3740,'https://translucent.local/?post_type=acf-field&p=4398',2,'acf-field','',0),(4399,20,'2022-07-05 06:36:24','2022-07-05 10:36:24','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c4101cf230b\";s:13:\"default_value\";s:55:\"Is your company ready to compete?\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Heading','heading','publish','closed','closed','','field_62c410a3f230f','','','2022-07-05 06:36:24','2022-07-05 10:36:24','',3740,'https://translucent.local/?post_type=acf-field&p=4399',3,'acf-field','',0),(4400,20,'2022-07-05 06:36:24','2022-07-05 10:36:24','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c4101cf230b\";s:13:\"default_value\";s:224:\"

No matter how simple or complex, Translucent’s cloud native data driven Devops solutions can be tailored to your exact needs to
save your company money, keep clients happier, and close new customers.

\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Content','content','publish','closed','closed','','field_62c410bef2310','','','2022-07-05 06:36:24','2022-07-05 10:36:24','',3740,'https://translucent.local/?post_type=acf-field&p=4400',4,'acf-field','',0),(4401,20,'2022-07-05 06:36:24','2022-07-05 10:36:24','a:7:{s:4:\"type\";s:4:\"link\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c410d3f2311\";s:13:\"return_format\";s:5:\"array\";}','Button','button','publish','closed','closed','','field_62c4110df2312','','','2022-07-05 06:36:24','2022-07-05 10:36:24','',3740,'https://translucent.local/?post_type=acf-field&p=4401',0,'acf-field','',0),(4402,20,'2022-07-05 06:36:25','2022-07-05 10:36:25','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c410d3f2311\";s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:0:\"\";}','Book Now Text','book_now_text','publish','closed','closed','','field_62c4112df2313','','','2022-07-05 06:36:25','2022-07-05 10:36:25','',3740,'https://translucent.local/?post_type=acf-field&p=4402',1,'acf-field','',0),(4403,20,'2022-07-05 06:36:25','2022-07-05 10:36:25','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Text','text','publish','closed','closed','','field_62c4113df2314','','','2022-07-05 06:36:25','2022-07-05 10:36:25','',4402,'https://translucent.local/?post_type=acf-field&p=4403',0,'acf-field','',0),(4404,20,'2022-07-05 06:45:01','2022-07-05 10:45:01','','Cloud Native DevOps Consulting Isk','','inherit','closed','closed','','4338-revision-v1','','','2022-07-05 06:45:01','2022-07-05 10:45:01','',4338,'https://translucent.local/?p=4404',0,'revision','',0),(4405,20,'2022-07-05 06:53:34','2022-07-05 10:53:34','','devops_coonsulting-min','','inherit','open','closed','','devops_coonsulting-min','','','2022-09-13 05:58:21','2022-09-13 09:58:21','',4338,'https://translucent.local/wp-content/uploads/2022/07/devops_coonsulting-min.png',0,'attachment','image/png',0),(4406,20,'2022-07-05 06:55:40','2022-07-05 10:55:40','','kubernetes-w-min','','inherit','open','closed','','kubernetes-w-min','','','2022-09-13 05:58:18','2022-09-13 09:58:18','',4338,'https://translucent.local/wp-content/uploads/2022/07/kubernetes-w-min.png',0,'attachment','image/png',0),(4407,20,'2022-07-05 06:56:15','2022-07-05 10:56:15','','devops_roadmap-min','','inherit','open','closed','','devops_roadmap-min','','','2022-09-13 05:58:15','2022-09-13 09:58:15','',4338,'https://translucent.local/wp-content/uploads/2022/07/devops_roadmap-min.png',0,'attachment','image/png',0),(4408,20,'2022-07-05 06:58:59','2022-07-05 10:58:59','','mrdata2-min','','inherit','open','closed','','mrdata2-min','','','2022-09-13 05:58:12','2022-09-13 09:58:12','',4338,'https://translucent.local/wp-content/uploads/2022/07/mrdata2-min.png',0,'attachment','image/png',0),(4409,20,'2022-07-05 06:59:41','2022-07-05 10:59:41','','kubernets_graph-min','','inherit','open','closed','','kubernets_graph-min','','','2022-09-13 05:58:09','2022-09-13 09:58:09','',4338,'https://translucent.local/wp-content/uploads/2022/07/kubernets_graph-min.png',0,'attachment','image/png',0),(4410,20,'2022-07-05 07:13:53','2022-07-05 11:13:53','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c41bac1348c\";s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Top','top','publish','closed','closed','','field_62c41c4413490','','','2022-07-05 07:13:53','2022-07-05 11:13:53','',3740,'https://translucent.local/?post_type=acf-field&p=4410',0,'acf-field','',0),(4411,20,'2022-07-05 07:13:53','2022-07-05 11:13:53','a:11:{s:4:\"type\";s:10:\"true_false\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c41bac1348c\";s:7:\"message\";s:0:\"\";s:13:\"default_value\";i:1;s:2:\"ui\";i:1;s:10:\"ui_on_text\";s:3:\"Yes\";s:11:\"ui_off_text\";s:2:\"No\";}','Arrow Hide and Show Data Driven','arrow_hide_and_show_data_driven','publish','closed','closed','','field_62c41be01348d','','','2022-07-05 07:13:53','2022-07-05 11:13:53','',3740,'https://translucent.local/?post_type=acf-field&p=4411',1,'acf-field','',0),(4412,20,'2022-07-05 07:13:53','2022-07-05 11:13:53','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c41bac1348c\";s:13:\"default_value\";s:25:\"COST-EFFECTIVE AUTOMATION\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Label Text','label_text','publish','closed','closed','','field_62c41c061348e','','','2022-07-05 07:13:53','2022-07-05 11:13:53','',3740,'https://translucent.local/?post_type=acf-field&p=4412',2,'acf-field','',0),(4413,20,'2022-07-05 07:13:53','2022-07-05 11:13:53','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c41bac1348c\";s:13:\"default_value\";s:140:\"

Translucent takes the best functions in your operational workflow and wraps data-driven digital DevOps technology around them, which:

\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Left Text','left_text','publish','closed','closed','','field_62c41c1b1348f','','','2022-07-05 08:44:06','2022-07-05 12:44:06','',3740,'https://translucent.local/?post_type=acf-field&p=4413',4,'acf-field','',0),(4414,20,'2022-07-05 07:13:54','2022-07-05 11:13:54','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c41bac1348c\";s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Middle','middle','publish','closed','closed','','field_62c41c6013491','','','2022-07-05 08:44:06','2022-07-05 12:44:06','',3740,'https://translucent.local/?post_type=acf-field&p=4414',5,'acf-field','',0),(4415,20,'2022-07-05 07:13:54','2022-07-05 11:13:54','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c41bac1348c\";s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:0:\"\";}','Application Col First','application_col_first','publish','closed','closed','','field_62c41c6813492','','','2022-07-05 08:44:06','2022-07-05 12:44:06','',3740,'https://translucent.local/?post_type=acf-field&p=4415',6,'acf-field','',0),(4416,20,'2022-07-05 07:13:54','2022-07-05 11:13:54','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Text','text','publish','closed','closed','','field_62c41c7a13493','','','2022-07-05 07:13:54','2022-07-05 11:13:54','',4415,'https://translucent.local/?post_type=acf-field&p=4416',0,'acf-field','',0),(4417,20,'2022-07-05 07:13:54','2022-07-05 11:13:54','a:11:{s:4:\"type\";s:8:\"repeater\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c41bac1348c\";s:9:\"collapsed\";s:0:\"\";s:3:\"min\";s:0:\"\";s:3:\"max\";s:0:\"\";s:6:\"layout\";s:3:\"row\";s:12:\"button_label\";s:0:\"\";}','Application Col Second','application_col_second','publish','closed','closed','','field_62c41c8413494','','','2022-07-05 08:44:06','2022-07-05 12:44:06','',3740,'https://translucent.local/?post_type=acf-field&p=4417',7,'acf-field','',0),(4418,20,'2022-07-05 07:13:54','2022-07-05 11:13:54','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Text','text','publish','closed','closed','','field_62c41c9413495','','','2022-07-05 07:13:54','2022-07-05 11:13:54','',4417,'https://translucent.local/?post_type=acf-field&p=4418',0,'acf-field','',0),(4419,20,'2022-07-05 07:13:54','2022-07-05 11:13:54','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c41bac1348c\";s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Bottom','bottom','publish','closed','closed','','field_62c41ca413496','','','2022-07-05 08:44:07','2022-07-05 12:44:07','',3740,'https://translucent.local/?post_type=acf-field&p=4419',8,'acf-field','',0),(4420,20,'2022-07-05 07:13:55','2022-07-05 11:13:55','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c41bac1348c\";s:13:\"default_value\";s:154:\"This is not just about cloud native DevOps technology. It’s about… People, Business, Operations, and Results. Oh, and People! Did I say People?\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Swiper Content','swiper_content','publish','closed','closed','','field_62c41caf13497','','','2022-07-05 08:44:07','2022-07-05 12:44:07','',3740,'https://translucent.local/?post_type=acf-field&p=4420',9,'acf-field','',0),(4421,20,'2022-07-05 07:13:55','2022-07-05 11:13:55','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c41bac1348c\";s:13:\"default_value\";s:72:\"Bradford A. M. Sankar COO - Translucent Computing\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Swiper Text','swiper_text','publish','closed','closed','','field_62c41ccd13498','','','2022-07-05 08:44:07','2022-07-05 12:44:07','',3740,'https://translucent.local/?post_type=acf-field&p=4421',10,'acf-field','',0),(4422,20,'2022-07-05 07:13:59','2022-07-05 11:13:59','','Cloud Native DevOps Consulting Isk','','inherit','closed','closed','','4338-revision-v1','','','2022-07-05 07:13:59','2022-07-05 11:13:59','',4338,'https://translucent.local/?p=4422',0,'revision','',0),(4423,20,'2022-07-05 07:15:19','2022-07-05 11:15:19','','Cloud Native DevOps Consulting Isk','','inherit','closed','closed','','4338-revision-v1','','','2022-07-05 07:15:19','2022-07-05 11:15:19','',4338,'https://translucent.local/?p=4423',0,'revision','',0),(4424,20,'2022-07-05 07:17:18','2022-07-05 11:17:18','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c41d5e525e4\";s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Mobile Image','mobile_image','publish','closed','closed','','field_62c41d81525e5','','','2022-07-05 07:17:18','2022-07-05 11:17:18','',3740,'https://translucent.local/?post_type=acf-field&p=4424',0,'acf-field','',0),(4425,20,'2022-07-05 07:17:18','2022-07-05 11:17:18','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c41d5e525e4\";s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_62c41d91525e6','','','2022-07-05 07:17:18','2022-07-05 11:17:18','',3740,'https://translucent.local/?post_type=acf-field&p=4425',1,'acf-field','',0),(4426,20,'2022-07-05 07:17:18','2022-07-05 11:17:18','a:11:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c41d5e525e4\";s:13:\"default_value\";s:129:\"Cost-effective automation of your operations and infrastructure, with a focus on what drives business value\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Heading','heading','publish','closed','closed','','field_62c41da0525e7','','','2022-07-05 07:17:18','2022-07-05 11:17:18','',3740,'https://translucent.local/?post_type=acf-field&p=4426',2,'acf-field','',0),(4427,20,'2022-07-05 07:18:40','2022-07-05 11:18:40','','bg-people-tc1-mo-min','','inherit','open','closed','','bg-people-tc1-mo-min','','','2022-09-13 05:58:07','2022-09-13 09:58:07','',4338,'https://translucent.local/wp-content/uploads/2022/07/bg-people-tc1-mo-min.png',0,'attachment','image/png',0),(4428,20,'2022-07-05 07:19:12','2022-07-05 11:19:12','','bg-people-tc1-min','','inherit','open','closed','','bg-people-tc1-min','','','2022-09-13 05:58:03','2022-09-13 09:58:03','',4338,'https://translucent.local/wp-content/uploads/2022/07/bg-people-tc1-min.png',0,'attachment','image/png',0),(4429,20,'2022-07-05 07:19:29','2022-07-05 11:19:29','','Cloud Native DevOps Consulting Isk','','inherit','closed','closed','','4338-revision-v1','','','2022-07-05 07:19:29','2022-07-05 11:19:29','',4338,'https://translucent.local/?p=4429',0,'revision','',0),(4431,20,'2022-07-05 07:45:51','2022-07-05 11:45:51','','Cloud Native DevOps Consulting Isk','','inherit','closed','closed','','4338-revision-v1','','','2022-07-05 07:45:51','2022-07-05 11:45:51','',4338,'https://translucent.local/?p=4431',0,'revision','',0),(4432,20,'2022-07-05 07:46:16','2022-07-05 11:46:16','','Cloud Native DevOps Consulting Isk','','inherit','closed','closed','','4338-revision-v1','','','2022-07-05 07:46:16','2022-07-05 11:46:16','',4338,'https://translucent.local/?p=4432',0,'revision','',0),(4433,20,'2022-07-05 08:19:36','2022-07-05 12:19:36','','Cloud Native DevOps Consulting Isk','','inherit','closed','closed','','4338-revision-v1','','','2022-07-05 08:19:36','2022-07-05 12:19:36','',4338,'https://translucent.local/?p=4433',0,'revision','',0),(4434,20,'2022-07-05 08:24:25','2022-07-05 12:24:25','','Cloud Native DevOps Consulting Isk','','inherit','closed','closed','','4338-revision-v1','','','2022-07-05 08:24:25','2022-07-05 12:24:25','',4338,'https://translucent.local/?p=4434',0,'revision','',0),(4435,20,'2022-07-05 08:44:06','2022-07-05 12:44:06','a:11:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62c41bac1348c\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Heading','heading','publish','closed','closed','','field_62c430cf84dde','','','2022-07-05 08:44:06','2022-07-05 12:44:06','',3740,'https://translucent.local/?post_type=acf-field&p=4435',3,'acf-field','',0),(4436,20,'2022-07-05 08:44:43','2022-07-05 12:44:43','','Cloud Native DevOps Consulting Isk','','inherit','closed','closed','','4338-revision-v1','','','2022-07-05 08:44:43','2022-07-05 12:44:43','',4338,'https://translucent.local/?p=4436',0,'revision','',0),(4437,20,'2022-07-05 08:47:02','2022-07-05 12:47:02','','Cloud Native DevOps Consulting Isk','','inherit','closed','closed','','4338-revision-v1','','','2022-07-05 08:47:02','2022-07-05 12:47:02','',4338,'https://translucent.local/?p=4437',0,'revision','',0),(4438,20,'2022-07-05 08:48:41','2022-07-05 12:48:41','','Cloud Native DevOps Consulting Isk','','inherit','closed','closed','','4338-revision-v1','','','2022-07-05 08:48:41','2022-07-05 12:48:41','',4338,'https://translucent.local/?p=4438',0,'revision','',0),(4439,20,'2022-07-05 08:49:06','2022-07-05 12:49:06','','Cloud Native DevOps Consulting Isk','','inherit','closed','closed','','4338-revision-v1','','','2022-07-05 08:49:06','2022-07-05 12:49:06','',4338,'https://translucent.local/?p=4439',0,'revision','',0),(4444,20,'2022-07-07 03:51:59','2022-07-07 07:51:59','','Cloud Native Application - New','','inherit','closed','closed','','4242-revision-v1','','','2022-07-07 03:51:59','2022-07-07 07:51:59','',4242,'https://translucent.local/?p=4444',0,'revision','',0),(4446,20,'2022-07-08 18:30:00','2022-07-08 22:30:00','','Contact Us Isk','','publish','closed','closed','','contact-us-isk','','','2022-08-09 16:06:02','2022-08-09 20:06:02','',0,'https://translucent.local/?page_id=4446',0,'page','',0),(4447,20,'2022-07-08 18:30:00','2022-07-08 22:30:00','','Contact Us Isk','','inherit','closed','closed','','4446-revision-v1','','','2022-07-08 18:30:00','2022-07-08 22:30:00','',4446,'https://translucent.local/?p=4447',0,'revision','',0),(4448,4,'2022-06-28 11:07:57','2022-06-28 15:07:57','','Cloud Native Application - New','','draft','closed','closed','','','','','2022-06-28 11:07:57','2022-06-28 15:07:57','',4242,'https://translucent.local/?page_id=4448',0,'page','',0),(4449,4,'2022-07-11 13:50:19','2022-07-11 17:50:19','testest aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa','Test Robs','','publish','closed','closed','','test-robs','','','2022-07-11 13:55:57','2022-07-11 17:55:57','',0,'https://translucent.local/?page_id=4449',0,'page','',0),(4450,4,'2022-07-11 13:50:19','2022-07-11 17:50:19','','Test Robs','','inherit','closed','closed','','4449-revision-v1','','','2022-07-11 13:50:19','2022-07-11 17:50:19','',4449,'https://translucent.local/?p=4450',0,'revision','',0),(4454,4,'2022-07-11 13:52:41','2022-07-11 17:52:41','','Test Robs','','inherit','closed','closed','','4449-revision-v1','','','2022-07-11 13:52:41','2022-07-11 17:52:41','',4449,'https://translucent.local/?p=4454',0,'revision','',0),(4456,4,'2022-07-11 13:53:36','2022-07-11 17:53:36','testest','Test Robs','','inherit','closed','closed','','4449-revision-v1','','','2022-07-11 13:53:36','2022-07-11 17:53:36','',4449,'https://translucent.local/?p=4456',0,'revision','',0),(4462,4,'2022-07-11 13:50:19','2022-07-11 17:50:19','testest','Test Robs','','draft','closed','closed','','','','','2022-07-11 13:50:19','2022-07-11 17:50:19','',4449,'https://translucent.local/?page_id=4462',0,'page','',0),(4463,4,'2022-07-11 13:55:57','2022-07-11 17:55:57','testest aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa','Test Robs','','inherit','closed','closed','','4449-revision-v1','','','2022-07-11 13:55:57','2022-07-11 17:55:57','',4449,'https://translucent.local/?p=4463',0,'revision','',0),(4467,20,'2022-07-15 11:20:45','2022-07-15 15:20:45','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62d180cd0fdf9\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Heading','heading','publish','closed','closed','','field_62d180e40fdfa','','','2022-07-15 11:20:45','2022-07-15 15:20:45','',3740,'https://translucent.local/?post_type=acf-field&p=4467',0,'acf-field','',0),(4468,20,'2022-07-15 11:20:45','2022-07-15 15:20:45','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62d180cd0fdf9\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Sub Heading','sub_heading','publish','closed','closed','','field_62d180e90fdfb','','','2022-07-15 11:20:45','2022-07-15 15:20:45','',3740,'https://translucent.local/?post_type=acf-field&p=4468',1,'acf-field','',0),(4469,20,'2022-07-15 11:20:46','2022-07-15 15:20:46','a:16:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62d180cd0fdf9\";s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:9:\"thumbnail\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Image','image','publish','closed','closed','','field_62d180f20fdfc','','','2022-07-15 11:20:46','2022-07-15 15:20:46','',3740,'https://translucent.local/?post_type=acf-field&p=4469',2,'acf-field','',0),(4470,20,'2022-07-15 11:20:46','2022-07-15 15:20:46','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62d181160fdfd\";s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Left Section','left_section','publish','closed','closed','','field_62d1812c0fdfe','','','2022-07-15 11:20:46','2022-07-15 15:20:46','',3740,'https://translucent.local/?post_type=acf-field&p=4470',0,'acf-field','',0),(4471,20,'2022-07-15 11:20:46','2022-07-15 15:20:46','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:16:\"For Desktop View\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62d181160fdfd\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Message Heading','message_heading','publish','closed','closed','','field_62d1814b0fdff','','','2022-07-15 11:30:17','2022-07-15 15:30:17','',3740,'https://translucent.local/?post_type=acf-field&p=4471',1,'acf-field','',0),(4472,20,'2022-07-15 11:20:46','2022-07-15 15:20:46','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:16:\"For Desktop View\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62d181160fdfd\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Consultant Heading','consultant_heading','publish','closed','closed','','field_62d1815d0fe00','','','2022-07-15 11:30:17','2022-07-15 15:30:17','',3740,'https://translucent.local/?post_type=acf-field&p=4472',2,'acf-field','',0),(4473,20,'2022-07-15 11:20:46','2022-07-15 15:20:46','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62d181160fdfd\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Form Shortcode','form_shortcode','publish','closed','closed','','field_62d181750fe01','','','2022-07-15 11:59:58','2022-07-15 15:59:58','',3740,'https://translucent.local/?post_type=acf-field&p=4473',5,'acf-field','',0),(4474,20,'2022-07-15 11:20:46','2022-07-15 15:20:46','a:8:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62d181160fdfd\";s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Right Section','right_section','publish','closed','closed','','field_62d1818f0fe02','','','2022-07-15 11:59:59','2022-07-15 15:59:59','',3740,'https://translucent.local/?post_type=acf-field&p=4474',8,'acf-field','',0),(4475,20,'2022-07-15 11:20:47','2022-07-15 15:20:47','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62d181160fdfd\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Main Heading','main_heading','publish','closed','closed','','field_62d181990fe03','','','2022-07-15 11:59:59','2022-07-15 15:59:59','',3740,'https://translucent.local/?post_type=acf-field&p=4475',9,'acf-field','',0),(4476,20,'2022-07-15 11:20:47','2022-07-15 15:20:47','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62d181160fdfd\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Contact Number','contact_number','publish','closed','closed','','field_62d181be0fe04','','','2022-07-15 11:59:59','2022-07-15 15:59:59','',3740,'https://translucent.local/?post_type=acf-field&p=4476',10,'acf-field','',0),(4477,20,'2022-07-15 11:20:47','2022-07-15 15:20:47','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62d181160fdfd\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Contact Number Link','contact_number_link','publish','closed','closed','','field_62d184e00fe07','','','2022-07-15 11:59:59','2022-07-15 15:59:59','',3740,'https://translucent.local/?post_type=acf-field&p=4477',11,'acf-field','',0),(4478,20,'2022-07-15 11:20:47','2022-07-15 15:20:47','a:11:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62d181160fdfd\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Address','address','publish','closed','closed','','field_62d181c90fe05','','','2022-07-15 12:00:00','2022-07-15 16:00:00','',3740,'https://translucent.local/?post_type=acf-field&p=4478',12,'acf-field','',0),(4479,20,'2022-07-15 11:20:47','2022-07-15 15:20:47','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62d181160fdfd\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Email Id','email_id','publish','closed','closed','','field_62d181e90fe06','','','2022-07-15 12:00:00','2022-07-15 16:00:00','',3740,'https://translucent.local/?post_type=acf-field&p=4479',13,'acf-field','',0),(4481,20,'2022-07-15 11:30:17','2022-07-15 15:30:17','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:15:\"For Mobile View\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62d181160fdfd\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Message Heading','message_heading_mob','publish','closed','closed','','field_62d1877178584','','','2022-07-15 11:30:17','2022-07-15 15:30:17','',3740,'https://translucent.local/?post_type=acf-field&p=4481',3,'acf-field','',0),(4482,20,'2022-07-15 11:30:18','2022-07-15 15:30:18','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:15:\"For Mobile View\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:2:\"50\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62d181160fdfd\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Consultant Heading','consultant_heading_mob','publish','closed','closed','','field_62d1879178585','','','2022-07-15 11:30:18','2022-07-15 15:30:18','',3740,'https://translucent.local/?post_type=acf-field&p=4482',4,'acf-field','',0),(4483,20,'2022-07-15 11:30:28','2022-07-15 15:30:28','','Contact Us Isk','','inherit','closed','closed','','4446-revision-v1','','','2022-07-15 11:30:28','2022-07-15 15:30:28','',4446,'https://translucent.local/?p=4483',0,'revision','',0),(4484,20,'2022-07-15 11:31:59','2022-07-15 15:31:59','','Contact Us Isk','','inherit','closed','closed','','4446-revision-v1','','','2022-07-15 11:31:59','2022-07-15 15:31:59','',4446,'https://translucent.local/?p=4484',0,'revision','',0),(4485,20,'2022-07-15 11:33:23','2022-07-15 15:33:23','','Contact Us Isk','','inherit','closed','closed','','4446-revision-v1','','','2022-07-15 11:33:23','2022-07-15 15:33:23','',4446,'https://translucent.local/?p=4485',0,'revision','',0),(4487,20,'2022-07-15 11:54:56','2022-07-15 15:54:56','','Contact Us Isk','','inherit','closed','closed','','4446-revision-v1','','','2022-07-15 11:54:56','2022-07-15 15:54:56','',4446,'https://translucent.local/?p=4487',0,'revision','',0),(4488,20,'2022-07-15 11:59:58','2022-07-15 15:59:58','a:11:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62d181160fdfd\";s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Calendar Main Heading','calendar_main_heading','publish','closed','closed','','field_62d18eac83874','','','2022-07-15 11:59:58','2022-07-15 15:59:58','',3740,'https://translucent.local/?post_type=acf-field&p=4488',6,'acf-field','',0),(4489,20,'2022-07-15 11:59:58','2022-07-15 15:59:58','a:11:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"parent_layout\";s:20:\"layout_62d181160fdfd\";s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Calendar Shortcode','calendar_shortcode','publish','closed','closed','','field_62d18e5483873','','','2022-07-15 11:59:58','2022-07-15 15:59:58','',3740,'https://translucent.local/?post_type=acf-field&p=4489',7,'acf-field','',0),(4490,20,'2022-07-15 12:00:25','2022-07-15 16:00:25','','Contact Us Isk','','inherit','closed','closed','','4446-revision-v1','','','2022-07-15 12:00:25','2022-07-15 16:00:25','',4446,'https://translucent.local/?p=4490',0,'revision','',0),(4491,20,'2022-07-15 12:01:11','2022-07-15 16:01:11','','Contact Us Isk','','inherit','closed','closed','','4446-revision-v1','','','2022-07-15 12:01:11','2022-07-15 16:01:11','',4446,'https://translucent.local/?p=4491',0,'revision','',0),(4492,20,'2022-07-15 12:03:14','2022-07-15 16:03:14','','Contact Us Isk','','inherit','closed','closed','','4446-revision-v1','','','2022-07-15 12:03:14','2022-07-15 16:03:14','',4446,'https://translucent.local/?p=4492',0,'revision','',0),(4493,20,'2022-07-15 12:42:28','2022-07-15 16:42:28','','Contact Us Isk','','inherit','closed','closed','','4446-revision-v1','','','2022-07-15 12:42:28','2022-07-15 16:42:28','',4446,'https://translucent.local/?p=4493',0,'revision','',0),(4494,20,'2022-07-15 12:48:17','2022-07-15 16:48:17','','Contact Us Isk','','inherit','closed','closed','','4446-revision-v1','','','2022-07-15 12:48:17','2022-07-15 16:48:17','',4446,'https://translucent.local/?p=4494',0,'revision','',0),(4495,20,'2022-07-15 13:47:08','2022-07-15 17:47:08','','Contact Us Isk','','inherit','closed','closed','','4446-revision-v1','','','2022-07-15 13:47:08','2022-07-15 17:47:08','',4446,'https://translucent.local/?p=4495',0,'revision','',0),(4496,20,'2022-07-15 15:06:30','2022-07-15 19:06:30','','shutterstock_1874749972','','inherit','open','closed','','shutterstock_1874749972','','','2022-09-13 05:58:01','2022-09-13 09:58:01','',4446,'https://translucent.local/wp-content/uploads/2022/07/shutterstock_1874749972.png',0,'attachment','image/png',0),(4497,20,'2022-07-15 15:06:49','2022-07-15 19:06:49','','Contact Us Isk','','inherit','closed','closed','','4446-revision-v1','','','2022-07-15 15:06:49','2022-07-15 19:06:49','',4446,'https://translucent.local/?p=4497',0,'revision','',0),(4500,20,'2022-07-15 16:14:17','2022-07-15 20:14:17','','Cloud Native DevOps Consulting Isk','','inherit','closed','closed','','4338-revision-v1','','','2022-07-15 16:14:17','2022-07-15 20:14:17','',4338,'https://translucent.local/?p=4500',0,'revision','',0),(4506,17,'2022-07-29 16:13:48','2022-07-29 20:13:48','','Contact Us Isk','','inherit','closed','closed','','4446-revision-v1','','','2022-07-29 16:13:48','2022-07-29 20:13:48','',4446,'https://translucent.local/?p=4506',0,'revision','',0),(4513,4,'2022-08-09 14:56:19','2022-08-09 18:56:19','','Contact Us Isk','','inherit','closed','closed','','4446-revision-v1','','','2022-08-09 14:56:19','2022-08-09 18:56:19','',4446,'https://translucent.local/?p=4513',0,'revision','',0),(4514,4,'2022-08-09 16:06:02','2022-08-09 20:06:02','','Contact Us Isk','','inherit','closed','closed','','4446-revision-v1','','','2022-08-09 16:06:02','2022-08-09 20:06:02','',4446,'https://translucent.local/?p=4514',0,'revision','',0),(4521,21,'2022-08-26 08:10:59','2022-08-26 12:10:59','','Cloud Native Application','','inherit','closed','closed','','4203-autosave-v1','','','2022-08-26 08:10:59','2022-08-26 12:10:59','',4203,'https://translucent.local/?p=4521',0,'revision','',0),(4524,21,'2022-09-05 06:16:47','2022-09-05 10:16:47','','Machine Learning','','inherit','closed','closed','','16-revision-v1','','','2022-09-05 06:16:47','2022-09-05 10:16:47','',16,'https://translucent.local/?p=4524',0,'revision','',0),(4541,21,'2022-09-06 00:27:32','2022-09-06 04:27:32','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:24:\"machine-learning-new.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Machine Learning New','machine-learning-new','publish','closed','closed','','group_6316ca38afc6f','','','2022-09-14 02:28:56','2022-09-14 06:28:56','',0,'https://translucent.local/?post_type=acf-field-group&p=4541',0,'acf-field-group','',0),(4542,21,'2022-09-06 00:41:02','2022-09-06 04:41:02','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Two Tab One Header Title','section_two_tab_one_header_title','publish','closed','closed','','field_6316cdbb7a0e7','','','2022-09-06 04:09:24','2022-09-06 08:09:24','',4574,'https://translucent.local/?post_type=acf-field&p=4542',2,'acf-field','',0),(4543,21,'2022-09-06 00:41:03','2022-09-06 04:41:03','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Two Tab One Title','section_two_tab_one_title','publish','closed','closed','','field_6316cdd57a0e8','','','2022-09-06 04:09:25','2022-09-06 08:09:25','',4574,'https://translucent.local/?post_type=acf-field&p=4543',3,'acf-field','',0),(4544,21,'2022-09-06 00:41:04','2022-09-06 04:41:04','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Two Tab One Image','section_two_tab_one_image','publish','closed','closed','','field_6316cecd7a0e9','','','2022-09-06 04:09:26','2022-09-06 08:09:26','',4574,'https://translucent.local/?post_type=acf-field&p=4544',4,'acf-field','',0),(4545,21,'2022-09-06 00:46:49','2022-09-06 04:46:49','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Two Tab One Description','section_two_tab_one_description','publish','closed','closed','','field_6316cf9c4fa76','','','2022-09-14 02:28:55','2022-09-14 06:28:55','',4574,'https://translucent.local/?post_type=acf-field&p=4545',6,'acf-field','',0),(4546,21,'2022-09-06 00:46:51','2022-09-06 04:46:51','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Section Two Tab One Content','section_two_tab_one_content','publish','closed','closed','','field_6316cfc04fa77','','','2022-09-14 02:28:56','2022-09-14 06:28:56','',4574,'https://translucent.local/?post_type=acf-field&p=4546',7,'acf-field','',0),(4547,21,'2022-09-06 00:46:52','2022-09-06 04:46:52','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Section Two Tab One Footer','section_two_tab_one_footer','publish','closed','closed','','field_6316d0a74fa78','','','2022-09-14 02:28:56','2022-09-14 06:28:56','',4574,'https://translucent.local/?post_type=acf-field&p=4547',8,'acf-field','',0),(4548,21,'2022-09-06 00:48:51','2022-09-06 04:48:51','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Two Tab Two Header Title','section_two_tab_two_header_title','publish','closed','closed','','field_6316d0d81d1b0','','','2022-09-14 02:28:56','2022-09-14 06:28:56','',4574,'https://translucent.local/?post_type=acf-field&p=4548',10,'acf-field','',0),(4549,21,'2022-09-06 00:48:52','2022-09-06 04:48:52','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Two Tab Two Title','section_two_tab_two_title','publish','closed','closed','','field_6316d0fc1d1b1','','','2022-09-14 02:28:56','2022-09-14 06:28:56','',4574,'https://translucent.local/?post_type=acf-field&p=4549',11,'acf-field','',0),(4550,21,'2022-09-06 00:48:53','2022-09-06 04:48:53','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Two Tab Two Description','section_two_tab_two_description','publish','closed','closed','','field_6316d1081d1b2','','','2022-09-14 02:28:56','2022-09-14 06:28:56','',4574,'https://translucent.local/?post_type=acf-field&p=4550',12,'acf-field','',0),(4551,21,'2022-09-06 00:56:31','2022-09-06 04:56:31','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Two Tab Two Content Icon 1','section_two_tab_two_content_icon_1','publish','closed','closed','','field_6316d26076956','','','2022-09-14 02:28:56','2022-09-14 06:28:56','',4574,'https://translucent.local/?post_type=acf-field&p=4551',13,'acf-field','',0),(4552,21,'2022-09-06 00:56:32','2022-09-06 04:56:32','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Section Two Tab Two Content 1','section_two_tab_two_content_1','publish','closed','closed','','field_6316d2b77695a','','','2022-09-14 02:28:56','2022-09-14 06:28:56','',4574,'https://translucent.local/?post_type=acf-field&p=4552',14,'acf-field','',0),(4553,21,'2022-09-06 00:56:34','2022-09-06 04:56:34','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Two Tab Two Content Icon 2','section_two_tab_two_content_icon_2','publish','closed','closed','','field_6316d2a276957','','','2022-09-14 02:28:56','2022-09-14 06:28:56','',4574,'https://translucent.local/?post_type=acf-field&p=4553',15,'acf-field','',0),(4554,21,'2022-09-06 00:56:35','2022-09-06 04:56:35','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Section Two Tab Two Content 2','section_two_tab_two_content_2','publish','closed','closed','','field_6316d2d37695b','','','2022-09-14 02:28:56','2022-09-14 06:28:56','',4574,'https://translucent.local/?post_type=acf-field&p=4554',16,'acf-field','',0),(4555,21,'2022-09-06 00:56:36','2022-09-06 04:56:36','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Two Tab Two Content Icon 3','section_two_tab_two_content_icon_3','publish','closed','closed','','field_6316d2a676958','','','2022-09-14 02:28:56','2022-09-14 06:28:56','',4574,'https://translucent.local/?post_type=acf-field&p=4555',17,'acf-field','',0),(4556,21,'2022-09-06 00:56:37','2022-09-06 04:56:37','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Section Two Tab Two Content 3','section_two_tab_two_content_3','publish','closed','closed','','field_6316d2da7695c','','','2022-09-14 02:28:56','2022-09-14 06:28:56','',4574,'https://translucent.local/?post_type=acf-field&p=4556',18,'acf-field','',0),(4557,21,'2022-09-06 00:56:38','2022-09-06 04:56:38','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Two Tab Two Content Icon 4','section_two_tab_two_content_icon_4','publish','closed','closed','','field_6316d2ab76959','','','2022-09-14 02:28:56','2022-09-14 06:28:56','',4574,'https://translucent.local/?post_type=acf-field&p=4557',19,'acf-field','',0),(4558,21,'2022-09-06 00:56:39','2022-09-06 04:56:39','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Section Two Tab Two Content 4','section_two_tab_two_content_4','publish','closed','closed','','field_6316d2df7695d','','','2022-09-14 02:28:56','2022-09-14 06:28:56','',4574,'https://translucent.local/?post_type=acf-field&p=4558',20,'acf-field','',0),(4559,21,'2022-09-06 01:03:54','2022-09-06 05:03:54','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Two Tab Three Header Title','section_two_tab_three_header_title','publish','closed','closed','','field_6316d455c2ca8','','','2022-09-14 02:28:56','2022-09-14 06:28:56','',4574,'https://translucent.local/?post_type=acf-field&p=4559',22,'acf-field','',0),(4560,21,'2022-09-06 01:03:55','2022-09-06 05:03:55','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Two Tab Three Title','section_two_tab_three_title','publish','closed','closed','','field_6316d46dc2ca9','','','2022-09-14 02:28:56','2022-09-14 06:28:56','',4574,'https://translucent.local/?post_type=acf-field&p=4560',23,'acf-field','',0),(4561,21,'2022-09-06 01:03:56','2022-09-06 05:03:56','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Two Tab Three Image','section_two_tab_three_image','publish','closed','closed','','field_6316d485c2caa','','','2022-09-14 02:28:56','2022-09-14 06:28:56','',4574,'https://translucent.local/?post_type=acf-field&p=4561',25,'acf-field','',0),(4562,21,'2022-09-06 01:03:57','2022-09-06 05:03:57','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:0;s:5:\"delay\";i:0;}','Section Two Tab Three Content','section_two_tab_three_content','publish','closed','closed','','field_6316d4a7c2cab','','','2022-09-14 02:28:56','2022-09-14 06:28:56','',4574,'https://translucent.local/?post_type=acf-field&p=4562',24,'acf-field','',0),(4563,21,'2022-09-06 02:57:02','2022-09-06 06:57:02','','Machine Learning New','','publish','closed','closed','','machine-learning-new','','','2022-09-16 05:30:19','2022-09-16 09:30:19','',829,'https://translucent.local/?page_id=4563',0,'page','',0),(4564,21,'2022-09-06 02:57:02','2022-09-06 06:57:02','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-06 02:57:02','2022-09-06 06:57:02','',4563,'https://translucent.local/?p=4564',0,'revision','',0),(4565,21,'2022-09-06 03:13:34','2022-09-06 07:13:34','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Section One Title','section_one_title','publish','closed','closed','','field_6316f2764091e','','','2022-09-12 00:20:41','2022-09-12 04:20:41','',4573,'https://translucent.local/?post_type=acf-field&p=4565',1,'acf-field','',0),(4566,21,'2022-09-06 03:13:35','2022-09-06 07:13:35','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section One Breadcrumb','section_one_breadcrumb','publish','closed','closed','','field_6316f2214091d','','','2022-09-12 00:20:40','2022-09-12 04:20:40','',4573,'https://translucent.local/?post_type=acf-field&p=4566',0,'acf-field','',0),(4567,21,'2022-09-06 03:13:36','2022-09-06 07:13:36','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Section One Content','section_one_content','publish','closed','closed','','field_6316f2934091f','','','2022-09-06 03:40:19','2022-09-06 07:40:19','',4573,'https://translucent.local/?post_type=acf-field&p=4567',2,'acf-field','',0),(4568,21,'2022-09-06 03:13:37','2022-09-06 07:13:37','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section One Button Text','section_one_button_text','publish','closed','closed','','field_6316f2ca40921','','','2022-09-14 02:28:55','2022-09-14 06:28:55','',4573,'https://translucent.local/?post_type=acf-field&p=4568',5,'acf-field','',0),(4569,21,'2022-09-06 03:13:41','2022-09-06 07:13:41','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section One Image','section_one_image','publish','closed','closed','','field_6316f2ab40920','','','2022-09-06 03:40:20','2022-09-06 07:40:20','',4573,'https://translucent.local/?post_type=acf-field&p=4569',3,'acf-field','',0),(4570,21,'2022-09-06 03:27:34','2022-09-06 07:27:34','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Tab One','tab_one','publish','closed','closed','','field_6316f623c281f','','','2022-09-06 04:09:23','2022-09-06 08:09:23','',4574,'https://translucent.local/?post_type=acf-field&p=4570',1,'acf-field','',0),(4571,21,'2022-09-06 03:31:54','2022-09-06 07:31:54','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Tab Three','tab_one_copy2','publish','closed','closed','','field_6316f74abf948','','','2022-09-14 02:28:56','2022-09-14 06:28:56','',4574,'https://translucent.local/?post_type=acf-field&p=4571',21,'acf-field','',0),(4572,21,'2022-09-06 03:32:06','2022-09-06 07:32:06','a:7:{s:4:\"type\";s:3:\"tab\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:9:\"placement\";s:3:\"top\";s:8:\"endpoint\";i:0;}','Tab Two','tab_one_copy','publish','closed','closed','','field_6316f727bf947','','','2022-09-14 02:28:56','2022-09-14 06:28:56','',4574,'https://translucent.local/?post_type=acf-field&p=4572',9,'acf-field','',0),(4573,21,'2022-09-06 03:34:26','2022-09-06 07:34:26','a:7:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Section One','section_one','publish','closed','closed','','field_6316f7ba1cd27','','','2022-09-12 02:46:35','2022-09-12 06:46:35','',4541,'https://translucent.local/?post_type=acf-field&p=4573',4,'acf-field','',0),(4574,21,'2022-09-06 03:49:45','2022-09-06 07:49:45','a:7:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Section Two','section_two','publish','closed','closed','','field_6316fa2531589','','','2022-09-12 02:46:36','2022-09-12 06:46:36','',4541,'https://translucent.local/?post_type=acf-field&p=4574',5,'acf-field','',0),(4575,21,'2022-09-06 04:09:22','2022-09-06 08:09:22','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Two Button Text','section_two_button_text','publish','closed','closed','','field_6316fe1ff751b','','','2022-09-06 04:09:22','2022-09-06 08:09:22','',4574,'https://translucent.local/?post_type=acf-field&p=4575',0,'acf-field','',0),(4576,21,'2022-09-06 04:09:51','2022-09-06 08:09:51','a:7:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Section Three','section_three','publish','closed','closed','','field_6316fcf4f751a','','','2022-09-12 02:46:37','2022-09-12 06:46:37','',4541,'https://translucent.local/?post_type=acf-field&p=4576',6,'acf-field','',0),(4577,21,'2022-09-06 04:09:52','2022-09-06 08:09:52','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Three Title','section_three_title','publish','closed','closed','','field_6316febdf751c','','','2022-09-06 04:09:52','2022-09-06 08:09:52','',4576,'https://translucent.local/?post_type=acf-field&p=4577',0,'acf-field','',0),(4578,21,'2022-09-06 04:09:53','2022-09-06 08:09:53','a:8:{s:4:\"type\";s:9:\"accordion\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:4:\"open\";i:0;s:12:\"multi_expand\";i:0;s:8:\"endpoint\";i:0;}','Section Three One','section_three_one','publish','closed','closed','','field_6316fee5f751d','','','2022-09-06 04:09:53','2022-09-06 08:09:53','',4576,'https://translucent.local/?post_type=acf-field&p=4578',1,'acf-field','',0),(4579,21,'2022-09-06 04:09:54','2022-09-06 08:09:54','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Three One Icon','section_three_one_icon','publish','closed','closed','','field_6316fefff751e','','','2022-09-06 04:09:54','2022-09-06 08:09:54','',4576,'https://translucent.local/?post_type=acf-field&p=4579',2,'acf-field','',0),(4580,21,'2022-09-06 04:09:55','2022-09-06 08:09:55','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Three One Title','section_three_one_title','publish','closed','closed','','field_6316ff1cf751f','','','2022-09-06 04:09:55','2022-09-06 08:09:55','',4576,'https://translucent.local/?post_type=acf-field&p=4580',3,'acf-field','',0),(4581,21,'2022-09-06 04:09:56','2022-09-06 08:09:56','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Section Three One Content','section_three_one_content','publish','closed','closed','','field_6316ff29f7520','','','2022-09-06 04:09:56','2022-09-06 08:09:56','',4576,'https://translucent.local/?post_type=acf-field&p=4581',4,'acf-field','',0),(4582,21,'2022-09-06 04:09:57','2022-09-06 08:09:57','a:8:{s:4:\"type\";s:9:\"accordion\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:4:\"open\";i:0;s:12:\"multi_expand\";i:0;s:8:\"endpoint\";i:0;}','Section Three Two','section_three_one_copy','publish','closed','closed','','field_6316ff46f7521','','','2022-09-06 04:09:57','2022-09-06 08:09:57','',4576,'https://translucent.local/?post_type=acf-field&p=4582',5,'acf-field','',0),(4583,21,'2022-09-06 04:09:58','2022-09-06 08:09:58','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Three Two Icon','section_three_two_icon','publish','closed','closed','','field_6316ff77f7523','','','2022-09-06 04:09:58','2022-09-06 08:09:58','',4576,'https://translucent.local/?post_type=acf-field&p=4583',6,'acf-field','',0),(4584,21,'2022-09-06 04:09:59','2022-09-06 08:09:59','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Three Two Title','section_three_two_title','publish','closed','closed','','field_6316ff90f7524','','','2022-09-06 04:09:59','2022-09-06 08:09:59','',4576,'https://translucent.local/?post_type=acf-field&p=4584',7,'acf-field','',0),(4585,21,'2022-09-06 04:10:01','2022-09-06 08:10:01','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Section Three Two Content','section_three_two_content','publish','closed','closed','','field_6316ff5df7522','','','2022-09-06 04:10:01','2022-09-06 08:10:01','',4576,'https://translucent.local/?post_type=acf-field&p=4585',8,'acf-field','',0),(4586,21,'2022-09-06 04:10:02','2022-09-06 08:10:02','a:8:{s:4:\"type\";s:9:\"accordion\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:4:\"open\";i:0;s:12:\"multi_expand\";i:0;s:8:\"endpoint\";i:0;}','Section Three Three','section_three_one_copy2','publish','closed','closed','','field_6316ffb7f7525','','','2022-09-06 04:10:02','2022-09-06 08:10:02','',4576,'https://translucent.local/?post_type=acf-field&p=4586',9,'acf-field','',0),(4587,21,'2022-09-06 04:10:03','2022-09-06 08:10:03','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Three Three Icon','section_three_three_icon','publish','closed','closed','','field_6316ffdaf7526','','','2022-09-06 04:49:05','2022-09-06 08:49:05','',4576,'https://translucent.local/?post_type=acf-field&p=4587',10,'acf-field','',0),(4588,21,'2022-09-06 04:10:04','2022-09-06 08:10:04','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Three Three Title','section_three_three_title','publish','closed','closed','','field_6316fff5f7527','','','2022-09-06 04:49:06','2022-09-06 08:49:06','',4576,'https://translucent.local/?post_type=acf-field&p=4588',11,'acf-field','',0),(4589,21,'2022-09-06 04:10:05','2022-09-06 08:10:05','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Section Three Three Content','section_three_three_content','publish','closed','closed','','field_63170010f7528','','','2022-09-06 04:49:07','2022-09-06 08:49:07','',4576,'https://translucent.local/?post_type=acf-field&p=4589',12,'acf-field','',0),(4590,21,'2022-09-06 04:49:08','2022-09-06 08:49:08','a:8:{s:4:\"type\";s:9:\"accordion\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:4:\"open\";i:0;s:12:\"multi_expand\";i:0;s:8:\"endpoint\";i:0;}','Section Three Four','_copy','publish','closed','closed','','field_6317075e2b1c8','','','2022-09-06 04:49:08','2022-09-06 08:49:08','',4576,'https://translucent.local/?post_type=acf-field&p=4590',13,'acf-field','',0),(4591,21,'2022-09-06 04:49:09','2022-09-06 08:49:09','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Three Four Icon','section_three_four_icon','publish','closed','closed','','field_6317077b2b1c9','','','2022-09-06 04:49:09','2022-09-06 08:49:09','',4576,'https://translucent.local/?post_type=acf-field&p=4591',14,'acf-field','',0),(4592,21,'2022-09-06 04:49:10','2022-09-06 08:49:10','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Three Four Title','section_three_four_title','publish','closed','closed','','field_631707992b1ca','','','2022-09-06 04:49:10','2022-09-06 08:49:10','',4576,'https://translucent.local/?post_type=acf-field&p=4592',15,'acf-field','',0),(4593,21,'2022-09-06 04:49:11','2022-09-06 08:49:11','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Section Three Four Content','section_three_four_content','publish','closed','closed','','field_631707b42b1cb','','','2022-09-06 04:49:11','2022-09-06 08:49:11','',4576,'https://translucent.local/?post_type=acf-field&p=4593',16,'acf-field','',0),(4594,21,'2022-09-06 04:49:12','2022-09-06 08:49:12','a:8:{s:4:\"type\";s:9:\"accordion\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:4:\"open\";i:0;s:12:\"multi_expand\";i:0;s:8:\"endpoint\";i:0;}','Section Three Five','_copy2','publish','closed','closed','','field_631707d72b1cc','','','2022-09-06 04:49:12','2022-09-06 08:49:12','',4576,'https://translucent.local/?post_type=acf-field&p=4594',17,'acf-field','',0),(4595,21,'2022-09-06 04:49:13','2022-09-06 08:49:13','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Three Five Icon','section_three_five_icon','publish','closed','closed','','field_631707e52b1cd','','','2022-09-06 04:49:13','2022-09-06 08:49:13','',4576,'https://translucent.local/?post_type=acf-field&p=4595',18,'acf-field','',0),(4596,21,'2022-09-06 04:49:14','2022-09-06 08:49:14','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Three Five Title','section_three_five_title','publish','closed','closed','','field_631708002b1ce','','','2022-09-06 04:49:14','2022-09-06 08:49:14','',4576,'https://translucent.local/?post_type=acf-field&p=4596',19,'acf-field','',0),(4597,21,'2022-09-06 04:49:15','2022-09-06 08:49:15','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Section Three Five Content','section_three_five_content','publish','closed','closed','','field_6317081c2b1cf','','','2022-09-06 04:49:15','2022-09-06 08:49:15','',4576,'https://translucent.local/?post_type=acf-field&p=4597',20,'acf-field','',0),(4598,21,'2022-09-06 04:49:16','2022-09-06 08:49:16','a:8:{s:4:\"type\";s:9:\"accordion\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:4:\"open\";i:0;s:12:\"multi_expand\";i:0;s:8:\"endpoint\";i:0;}','Section Three Six','_copy3','publish','closed','closed','','field_631708462b1d0','','','2022-09-06 04:49:16','2022-09-06 08:49:16','',4576,'https://translucent.local/?post_type=acf-field&p=4598',21,'acf-field','',0),(4599,21,'2022-09-06 04:49:17','2022-09-06 08:49:17','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Three Six Icon','section_three_six_icon','publish','closed','closed','','field_631708572b1d1','','','2022-09-06 04:49:17','2022-09-06 08:49:17','',4576,'https://translucent.local/?post_type=acf-field&p=4599',22,'acf-field','',0),(4600,21,'2022-09-06 04:49:18','2022-09-06 08:49:18','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Three Six Title','section_three_six_title','publish','closed','closed','','field_631708712b1d2','','','2022-09-06 04:49:18','2022-09-06 08:49:18','',4576,'https://translucent.local/?post_type=acf-field&p=4600',23,'acf-field','',0),(4601,21,'2022-09-06 04:49:19','2022-09-06 08:49:19','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Section Three Six Content','section_three_six_content','publish','closed','closed','','field_6317088d2b1d3','','','2022-09-06 04:49:19','2022-09-06 08:49:19','',4576,'https://translucent.local/?post_type=acf-field&p=4601',24,'acf-field','',0),(4602,21,'2022-09-06 04:49:20','2022-09-06 08:49:20','a:8:{s:4:\"type\";s:9:\"accordion\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:4:\"open\";i:0;s:12:\"multi_expand\";i:0;s:8:\"endpoint\";i:0;}','Section Three Seven','_copy4','publish','closed','closed','','field_631708af2b1d4','','','2022-09-06 04:49:20','2022-09-06 08:49:20','',4576,'https://translucent.local/?post_type=acf-field&p=4602',25,'acf-field','',0),(4603,21,'2022-09-06 04:49:21','2022-09-06 08:49:21','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Three Seven Icon','section_three_seven_icon','publish','closed','closed','','field_631708be2b1d5','','','2022-09-06 04:49:21','2022-09-06 08:49:21','',4576,'https://translucent.local/?post_type=acf-field&p=4603',26,'acf-field','',0),(4604,21,'2022-09-06 04:49:23','2022-09-06 08:49:23','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Three Seven Title','section_three_seven_title','publish','closed','closed','','field_631708da2b1d6','','','2022-09-06 04:49:23','2022-09-06 08:49:23','',4576,'https://translucent.local/?post_type=acf-field&p=4604',27,'acf-field','',0),(4605,21,'2022-09-06 04:49:24','2022-09-06 08:49:24','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Section Three Seven Content','section_three_seven_content','publish','closed','closed','','field_631708f62b1d7','','','2022-09-06 04:49:24','2022-09-06 08:49:24','',4576,'https://translucent.local/?post_type=acf-field&p=4605',28,'acf-field','',0),(4606,21,'2022-09-06 04:49:25','2022-09-06 08:49:25','a:8:{s:4:\"type\";s:9:\"accordion\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:4:\"open\";i:0;s:12:\"multi_expand\";i:0;s:8:\"endpoint\";i:0;}','Section Three Eight','_copy5','publish','closed','closed','','field_6317091c2b1d8','','','2022-09-06 04:49:25','2022-09-06 08:49:25','',4576,'https://translucent.local/?post_type=acf-field&p=4606',29,'acf-field','',0),(4607,21,'2022-09-06 04:49:26','2022-09-06 08:49:26','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Three Eight Icon','section_three_eight_icon','publish','closed','closed','','field_6317092c2b1d9','','','2022-09-06 04:49:26','2022-09-06 08:49:26','',4576,'https://translucent.local/?post_type=acf-field&p=4607',30,'acf-field','',0),(4608,21,'2022-09-06 04:49:27','2022-09-06 08:49:27','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Three Eight Title','section_three_eight_title','publish','closed','closed','','field_631709462b1da','','','2022-09-06 04:49:27','2022-09-06 08:49:27','',4576,'https://translucent.local/?post_type=acf-field&p=4608',31,'acf-field','',0),(4609,21,'2022-09-06 04:49:28','2022-09-06 08:49:28','a:10:{s:4:\"type\";s:8:\"textarea\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";s:4:\"rows\";s:0:\"\";s:9:\"new_lines\";s:0:\"\";}','Section Three Eight Content','section_three_eight_content','publish','closed','closed','','field_6317095e2b1db','','','2022-09-06 04:49:28','2022-09-06 08:49:28','',4576,'https://translucent.local/?post_type=acf-field&p=4609',32,'acf-field','',0),(4610,21,'2022-09-06 04:56:00','2022-09-06 08:56:00','a:7:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Section Four','section_four','publish','closed','closed','','field_63170a81aa9a1','','','2022-09-12 02:46:38','2022-09-12 06:46:38','',4541,'https://translucent.local/?post_type=acf-field&p=4610',7,'acf-field','',0),(4611,21,'2022-09-06 04:56:01','2022-09-06 08:56:01','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Section Four Content','section_four_content','publish','closed','closed','','field_63170ac9aa9a2','','','2022-09-06 04:56:01','2022-09-06 08:56:01','',4610,'https://translucent.local/?post_type=acf-field&p=4611',0,'acf-field','',0),(4612,21,'2022-09-06 04:56:02','2022-09-06 08:56:02','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Four Button Text','section_four_button_text','publish','closed','closed','','field_63170b08aa9a3','','','2022-09-06 04:56:02','2022-09-06 08:56:02','',4610,'https://translucent.local/?post_type=acf-field&p=4612',1,'acf-field','',0),(4613,21,'2022-09-06 04:58:43','2022-09-06 08:58:43','a:7:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Section Five','section_five','publish','closed','closed','','field_63170b5f64fc1','','','2022-09-13 01:25:12','2022-09-13 05:25:12','',4541,'https://translucent.local/?post_type=acf-field&p=4613',8,'acf-field','',0),(4614,21,'2022-09-06 04:58:44','2022-09-06 08:58:44','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Five Title','section_five_title','publish','closed','closed','','field_63170b8564fc2','','','2022-09-06 04:58:44','2022-09-06 08:58:44','',4613,'https://translucent.local/?post_type=acf-field&p=4614',0,'acf-field','',0),(4616,21,'2022-09-06 04:58:46','2022-09-06 08:58:46','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Five Footer','section_five_footer','publish','closed','closed','','field_63170bad64fc4','','','2022-09-13 01:27:04','2022-09-13 05:27:04','',4613,'https://translucent.local/?post_type=acf-field&p=4616',2,'acf-field','',0),(4618,21,'2022-09-06 05:15:00','2022-09-06 09:15:00','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Top Description','top_description','publish','closed','closed','','field_63170e008cc99','','','2022-09-12 02:46:30','2022-09-12 06:46:30','',4541,'https://translucent.local/?post_type=acf-field&p=4618',1,'acf-field','',0),(4619,21,'2022-09-06 05:15:06','2022-09-06 09:15:06','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Footer Title','footer_title','publish','closed','closed','','field_63170f4c8cc9a','','','2022-09-12 02:46:40','2022-09-12 06:46:40','',4541,'https://translucent.local/?post_type=acf-field&p=4619',9,'acf-field','',0),(4620,21,'2022-09-06 05:15:07','2022-09-06 09:15:07','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Footer Button Text','footer_button_text','publish','closed','closed','','field_63170f6f8cc9b','','','2022-09-12 02:46:42','2022-09-12 06:46:42','',4541,'https://translucent.local/?post_type=acf-field&p=4620',10,'acf-field','',0),(4622,21,'2022-09-06 05:38:02','2022-09-06 09:38:02','a:8:{s:8:\"location\";a:1:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:13:\"page_template\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:40:\"kubernetes-professional-services-new.php\";}}}s:8:\"position\";s:6:\"normal\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";s:12:\"show_in_rest\";i:0;}','Kubernetes New','kubernetes-new','publish','closed','closed','','group_631714956d39f','','','2022-09-15 23:30:51','2022-09-16 03:30:51','',0,'https://translucent.local/?post_type=acf-field-group&p=4622',0,'acf-field-group','',0),(4623,21,'2022-09-06 06:16:02','2022-09-06 10:16:02','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Top Title','top_title','publish','closed','closed','','field_6317168918e96','','','2022-09-06 06:16:02','2022-09-06 10:16:02','',4622,'https://translucent.local/?post_type=acf-field&p=4623',0,'acf-field','',0),(4624,21,'2022-09-06 06:16:03','2022-09-06 10:16:03','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Top Description','top_description','publish','closed','closed','','field_6317169e18e97','','','2022-09-06 06:16:03','2022-09-06 10:16:03','',4622,'https://translucent.local/?post_type=acf-field&p=4624',1,'acf-field','',0),(4625,21,'2022-09-06 06:16:04','2022-09-06 10:16:04','a:7:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Section One','section_one','publish','closed','closed','','field_631716de18e98','','','2022-09-15 23:30:51','2022-09-16 03:30:51','',4622,'https://translucent.local/?post_type=acf-field&p=4625',4,'acf-field','',0),(4626,21,'2022-09-06 06:16:05','2022-09-06 10:16:05','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section One Breadcrumb','section_one_breadcrumb','publish','closed','closed','','field_631716fa18e99','','','2022-09-06 06:16:05','2022-09-06 10:16:05','',4625,'https://translucent.local/?post_type=acf-field&p=4626',0,'acf-field','',0),(4627,21,'2022-09-06 06:16:06','2022-09-06 10:16:06','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section One Title','section_one_title','publish','closed','closed','','field_6317172018e9a','','','2022-09-15 23:01:24','2022-09-16 03:01:24','',4625,'https://translucent.local/?post_type=acf-field&p=4627',1,'acf-field','',0),(4628,21,'2022-09-06 06:16:07','2022-09-06 10:16:07','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section One Image','section_one_image','publish','closed','closed','','field_63171ca018e9c','','','2022-09-06 06:16:07','2022-09-06 10:16:07','',4625,'https://translucent.local/?post_type=acf-field&p=4628',2,'acf-field','',0),(4629,21,'2022-09-06 06:16:08','2022-09-06 10:16:08','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Section One Content','section_one_content','publish','closed','closed','','field_6317174118e9b','','','2022-09-14 02:14:45','2022-09-14 06:14:45','',4625,'https://translucent.local/?post_type=acf-field&p=4629',4,'acf-field','',0),(4630,21,'2022-09-06 06:16:09','2022-09-06 10:16:09','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section One Navigation One','section_one_navigation_one','publish','closed','closed','','field_63171cdc18e9d','','','2022-09-14 02:14:45','2022-09-14 06:14:45','',4625,'https://translucent.local/?post_type=acf-field&p=4630',5,'acf-field','',0),(4631,21,'2022-09-06 06:16:10','2022-09-06 10:16:10','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section One Navigation Two','section_one_navigation_two','publish','closed','closed','','field_63171cff18e9e','','','2022-09-14 02:14:45','2022-09-14 06:14:45','',4625,'https://translucent.local/?post_type=acf-field&p=4631',6,'acf-field','',0),(4632,21,'2022-09-06 06:16:11','2022-09-06 10:16:11','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section One Navigation Three','section_one_navigation_three','publish','closed','closed','','field_63171d0e18e9f','','','2022-09-14 02:14:45','2022-09-14 06:14:45','',4625,'https://translucent.local/?post_type=acf-field&p=4632',7,'acf-field','',0),(4633,21,'2022-09-06 06:16:12','2022-09-06 10:16:12','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section One Button Text','section_one_button_text','publish','closed','closed','','field_63171dc918ea0','','','2022-09-14 02:14:45','2022-09-14 06:14:45','',4625,'https://translucent.local/?post_type=acf-field&p=4633',8,'acf-field','',0),(4634,21,'2022-09-06 06:24:28','2022-09-06 10:24:28','a:7:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Section Two','section_two','publish','closed','closed','','field_63171dfb57be8','','','2022-09-15 23:30:51','2022-09-16 03:30:51','',4622,'https://translucent.local/?post_type=acf-field&p=4634',5,'acf-field','',0),(4635,21,'2022-09-06 06:24:29','2022-09-06 10:24:29','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Two Title','section_two_title','publish','closed','closed','','field_63171e1457be9','','','2022-09-06 06:24:29','2022-09-06 10:24:29','',4634,'https://translucent.local/?post_type=acf-field&p=4635',0,'acf-field','',0),(4636,21,'2022-09-06 06:24:30','2022-09-06 10:24:30','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Two Icon One','section_two_icon_one','publish','closed','closed','','field_63171e2c57bea','','','2022-09-06 06:24:30','2022-09-06 10:24:30','',4634,'https://translucent.local/?post_type=acf-field&p=4636',1,'acf-field','',0),(4637,21,'2022-09-06 06:24:31','2022-09-06 10:24:31','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Two Title One','section_two_title_one','publish','closed','closed','','field_63171e5f57beb','','','2022-09-06 06:24:31','2022-09-06 10:24:31','',4634,'https://translucent.local/?post_type=acf-field&p=4637',2,'acf-field','',0),(4638,21,'2022-09-06 06:24:32','2022-09-06 10:24:32','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Two Icon Two','section_two_icon_two','publish','closed','closed','','field_63171e7357bec','','','2022-09-06 06:24:32','2022-09-06 10:24:32','',4634,'https://translucent.local/?post_type=acf-field&p=4638',3,'acf-field','',0),(4639,21,'2022-09-06 06:24:33','2022-09-06 10:24:33','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Two Title Two','section_two_title_two','publish','closed','closed','','field_63171ea157bee','','','2022-09-06 06:24:33','2022-09-06 10:24:33','',4634,'https://translucent.local/?post_type=acf-field&p=4639',4,'acf-field','',0),(4640,21,'2022-09-06 06:24:34','2022-09-06 10:24:34','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Two Icon Three','section_two_icon_three','publish','closed','closed','','field_63171e8557bed','','','2022-09-06 06:24:34','2022-09-06 10:24:34','',4634,'https://translucent.local/?post_type=acf-field&p=4640',5,'acf-field','',0),(4641,21,'2022-09-06 06:24:35','2022-09-06 10:24:35','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Two Title Three','section_two_title_three','publish','closed','closed','','field_63171ec257bef','','','2022-09-06 06:24:35','2022-09-06 10:24:35','',4634,'https://translucent.local/?post_type=acf-field&p=4641',6,'acf-field','',0),(4642,21,'2022-09-06 06:24:36','2022-09-06 10:24:36','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Two Icon Four','section_two_icon_four','publish','closed','closed','','field_63171ee257bf0','','','2022-09-06 06:24:36','2022-09-06 10:24:36','',4634,'https://translucent.local/?post_type=acf-field&p=4642',7,'acf-field','',0),(4643,21,'2022-09-06 06:24:38','2022-09-06 10:24:38','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Two Title Four','section_two_title_four','publish','closed','closed','','field_63171ef757bf1','','','2022-09-06 06:24:38','2022-09-06 10:24:38','',4634,'https://translucent.local/?post_type=acf-field&p=4643',8,'acf-field','',0),(4644,21,'2022-09-06 06:24:39','2022-09-06 10:24:39','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Two Icon Five','section_two_icon_five','publish','closed','closed','','field_63171f2857bf3','','','2022-09-06 06:24:39','2022-09-06 10:24:39','',4634,'https://translucent.local/?post_type=acf-field&p=4644',9,'acf-field','',0),(4645,21,'2022-09-06 06:24:40','2022-09-06 10:24:40','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Two Title Five','section_two_title_five','publish','closed','closed','','field_63171f3957bf4','','','2022-09-06 06:24:40','2022-09-06 10:24:40','',4634,'https://translucent.local/?post_type=acf-field&p=4645',10,'acf-field','',0),(4646,21,'2022-09-06 06:24:41','2022-09-06 10:24:41','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Two Icon Six','section_two_icon_six','publish','closed','closed','','field_63171f5057bf5','','','2022-09-06 06:24:41','2022-09-06 10:24:41','',4634,'https://translucent.local/?post_type=acf-field&p=4646',11,'acf-field','',0),(4647,21,'2022-09-06 06:24:42','2022-09-06 10:24:42','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Two Title Six','section_two_title_six','publish','closed','closed','','field_63171f6657bf6','','','2022-09-06 06:24:42','2022-09-06 10:24:42','',4634,'https://translucent.local/?post_type=acf-field&p=4647',12,'acf-field','',0),(4648,21,'2022-09-06 06:24:43','2022-09-06 10:24:43','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Two Icon Seven','section_two_icon_seven','publish','closed','closed','','field_63171f7857bf7','','','2022-09-06 06:24:43','2022-09-06 10:24:43','',4634,'https://translucent.local/?post_type=acf-field&p=4648',13,'acf-field','',0),(4649,21,'2022-09-06 06:24:44','2022-09-06 10:24:44','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Two Title Seven','section_two_title_seven','publish','closed','closed','','field_63171f9757bf8','','','2022-09-06 06:24:44','2022-09-06 10:24:44','',4634,'https://translucent.local/?post_type=acf-field&p=4649',14,'acf-field','',0),(4650,21,'2022-09-06 06:24:45','2022-09-06 10:24:45','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Two Icon Eight','section_two_icon_eight','publish','closed','closed','','field_63171fab57bf9','','','2022-09-06 06:24:45','2022-09-06 10:24:45','',4634,'https://translucent.local/?post_type=acf-field&p=4650',15,'acf-field','',0),(4651,21,'2022-09-06 06:24:46','2022-09-06 10:24:46','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Two Title Eight','section_two_title_eight','publish','closed','closed','','field_63171fc057bfa','','','2022-09-06 06:24:46','2022-09-06 10:24:46','',4634,'https://translucent.local/?post_type=acf-field&p=4651',16,'acf-field','',0),(4653,21,'2022-09-06 06:41:55','2022-09-06 10:41:55','a:7:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Section Three','section_three','publish','closed','closed','','field_631722b96988a','','','2022-09-15 23:30:51','2022-09-16 03:30:51','',4622,'https://translucent.local/?post_type=acf-field&p=4653',6,'acf-field','',0),(4654,21,'2022-09-06 06:41:56','2022-09-06 10:41:56','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Three Breadcrumb','section_three_breadcrumb','publish','closed','closed','','field_631723036988b','','','2022-09-06 06:41:56','2022-09-06 10:41:56','',4653,'https://translucent.local/?post_type=acf-field&p=4654',0,'acf-field','',0),(4655,21,'2022-09-06 06:41:57','2022-09-06 10:41:57','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Three Title','section_three_title','publish','closed','closed','','field_631723176988c','','','2022-09-15 23:03:05','2022-09-16 03:03:05','',4653,'https://translucent.local/?post_type=acf-field&p=4655',1,'acf-field','',0),(4656,21,'2022-09-06 06:41:58','2022-09-06 10:41:58','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Three Image','section_three_image','publish','closed','closed','','field_631723ac6988e','','','2022-09-06 06:41:58','2022-09-06 10:41:58','',4653,'https://translucent.local/?post_type=acf-field&p=4656',2,'acf-field','',0),(4657,21,'2022-09-06 06:41:59','2022-09-06 10:41:59','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Section Three Content','section_three_content','publish','closed','closed','','field_631723906988d','','','2022-09-14 02:14:45','2022-09-14 06:14:45','',4653,'https://translucent.local/?post_type=acf-field&p=4657',4,'acf-field','',0),(4658,21,'2022-09-06 06:42:00','2022-09-06 10:42:00','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Three Footer','section_three_footer','publish','closed','closed','','field_631723c36988f','','','2022-09-14 02:14:45','2022-09-14 06:14:45','',4653,'https://translucent.local/?post_type=acf-field&p=4658',5,'acf-field','',0),(4659,21,'2022-09-06 06:42:01','2022-09-06 10:42:01','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Three Button Text','section_three_button_text','publish','closed','closed','','field_631723d769890','','','2022-09-14 02:14:45','2022-09-14 06:14:45','',4653,'https://translucent.local/?post_type=acf-field&p=4659',6,'acf-field','',0),(4660,21,'2022-09-06 06:57:18','2022-09-06 10:57:18','a:7:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Section Four','section_four','publish','closed','closed','','field_6317271523756','','','2022-09-15 23:30:51','2022-09-16 03:30:51','',4622,'https://translucent.local/?post_type=acf-field&p=4660',7,'acf-field','',0),(4661,21,'2022-09-06 06:57:19','2022-09-06 10:57:19','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Four Breadcrumb','section_four_breadcrumb','publish','closed','closed','','field_6317271523757','','','2022-09-06 06:57:19','2022-09-06 10:57:19','',4660,'https://translucent.local/?post_type=acf-field&p=4661',0,'acf-field','',0),(4662,21,'2022-09-06 06:57:20','2022-09-06 10:57:20','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Four Title','section_four_title','publish','closed','closed','','field_6317271523758','','','2022-09-15 23:04:38','2022-09-16 03:04:38','',4660,'https://translucent.local/?post_type=acf-field&p=4662',1,'acf-field','',0),(4663,21,'2022-09-06 06:57:21','2022-09-06 10:57:21','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Four Image','section_four_image','publish','closed','closed','','field_6317271523759','','','2022-09-06 06:57:21','2022-09-06 10:57:21','',4660,'https://translucent.local/?post_type=acf-field&p=4663',2,'acf-field','',0),(4664,21,'2022-09-06 06:57:22','2022-09-06 10:57:22','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Section Four Content','section_four_content','publish','closed','closed','','field_631727152375a','','','2022-09-14 03:04:48','2022-09-14 07:04:48','',4660,'https://translucent.local/?post_type=acf-field&p=4664',4,'acf-field','',0),(4665,21,'2022-09-06 06:57:23','2022-09-06 10:57:23','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Four Footer','section_four_footer','publish','closed','closed','','field_631727152375b','','','2022-09-14 03:04:48','2022-09-14 07:04:48','',4660,'https://translucent.local/?post_type=acf-field&p=4665',5,'acf-field','',0),(4666,21,'2022-09-06 06:59:43','2022-09-06 10:59:43','a:7:{s:4:\"type\";s:5:\"group\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:6:\"layout\";s:5:\"block\";s:10:\"sub_fields\";a:0:{}}','Section Five','section_five','publish','closed','closed','','field_631727bbd69db','','','2022-09-15 23:30:51','2022-09-16 03:30:51','',4622,'https://translucent.local/?post_type=acf-field&p=4666',8,'acf-field','',0),(4667,21,'2022-09-06 06:59:45','2022-09-06 10:59:45','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Five Breadcrumb','section_five_breadcrumb','publish','closed','closed','','field_631727bbd69dc','','','2022-09-06 06:59:45','2022-09-06 10:59:45','',4666,'https://translucent.local/?post_type=acf-field&p=4667',0,'acf-field','',0),(4668,21,'2022-09-06 06:59:47','2022-09-06 10:59:47','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Five Title','section_five_title','publish','closed','closed','','field_631727bbd69dd','','','2022-09-15 23:08:45','2022-09-16 03:08:45','',4666,'https://translucent.local/?post_type=acf-field&p=4668',1,'acf-field','',0),(4669,21,'2022-09-06 06:59:48','2022-09-06 10:59:48','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Five Image','section_five_image','publish','closed','closed','','field_631727bbd69de','','','2022-09-06 06:59:48','2022-09-06 10:59:48','',4666,'https://translucent.local/?post_type=acf-field&p=4669',2,'acf-field','',0),(4670,21,'2022-09-06 06:59:49','2022-09-06 10:59:49','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Section Five Content','section_five_content','publish','closed','closed','','field_631727bbd69df','','','2022-09-14 02:14:45','2022-09-14 06:14:45','',4666,'https://translucent.local/?post_type=acf-field&p=4670',4,'acf-field','',0),(4671,21,'2022-09-06 06:59:50','2022-09-06 10:59:50','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Five Icon One','section_five_icon_one','publish','closed','closed','','field_631727bbd69e0','','','2022-09-14 02:14:45','2022-09-14 06:14:45','',4666,'https://translucent.local/?post_type=acf-field&p=4671',5,'acf-field','',0),(4672,21,'2022-09-06 07:08:06','2022-09-06 11:08:06','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Footer Title','footer_title','publish','closed','closed','','field_631729e2753c6','','','2022-09-15 23:30:51','2022-09-16 03:30:51','',4622,'https://translucent.local/?post_type=acf-field&p=4672',9,'acf-field','',0),(4673,21,'2022-09-06 07:08:08','2022-09-06 11:08:08','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Footer Button Text','footer_button_text','publish','closed','closed','','field_63172a06753c7','','','2022-09-15 23:30:51','2022-09-16 03:30:51','',4622,'https://translucent.local/?post_type=acf-field&p=4673',10,'acf-field','',0),(4674,21,'2022-09-12 00:12:57','2022-09-12 04:12:57','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Top Background Desktop','top_background_desktop','publish','closed','closed','','field_631eb1728b709','','','2022-09-12 02:46:32','2022-09-12 06:46:32','',4541,'https://translucent.local/?post_type=acf-field&p=4674',2,'acf-field','',0),(4675,21,'2022-09-12 00:12:58','2022-09-12 04:12:58','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Top Background Mobile','top_background_mobile','publish','closed','closed','','field_631eb1988b70a','','','2022-09-12 02:46:33','2022-09-12 06:46:33','',4541,'https://translucent.local/?post_type=acf-field&p=4675',3,'acf-field','',0),(4678,21,'2022-09-12 00:22:22','2022-09-12 04:22:22','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-12 00:22:22','2022-09-12 04:22:22','',4563,'https://translucent.local/?p=4678',0,'revision','',0),(4679,21,'2022-09-12 00:25:10','2022-09-12 04:25:10','','machine_learning_banner','','inherit','open','closed','','machine_learning_banner','','','2022-09-13 05:57:58','2022-09-13 09:57:58','',4563,'https://translucent.local/wp-content/uploads/2022/09/machine_learning_banner.png',0,'attachment','image/png',0),(4680,21,'2022-09-12 00:30:58','2022-09-12 04:30:58','','hand_tool','','inherit','open','closed','','hand_tool','','','2022-09-13 05:57:54','2022-09-13 09:57:54','',4563,'https://translucent.local/wp-content/uploads/2022/09/hand_tool.png',0,'attachment','image/png',0),(4681,21,'2022-09-12 00:32:52','2022-09-12 04:32:52','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-12 00:32:52','2022-09-12 04:32:52','',4563,'https://translucent.local/?p=4681',0,'revision','',0),(4682,21,'2022-09-12 00:37:47','2022-09-12 04:37:47','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-12 00:37:47','2022-09-12 04:37:47','',4563,'https://translucent.local/?p=4682',0,'revision','',0),(4683,21,'2022-09-12 00:44:51','2022-09-12 04:44:51','','Group 8783@3x','','inherit','open','closed','','group-87833x','','','2022-09-13 05:57:52','2022-09-13 09:57:52','',4563,'https://translucent.local/wp-content/uploads/2022/09/Group-8783@3x.png',0,'attachment','image/png',0),(4684,21,'2022-09-12 00:45:30','2022-09-12 04:45:30','','Group 8784@3x','','inherit','open','closed','','group-87843x','','','2022-09-13 05:57:49','2022-09-13 09:57:49','',4563,'https://translucent.local/wp-content/uploads/2022/09/Group-8784@3x.png',0,'attachment','image/png',0),(4685,21,'2022-09-12 00:45:57','2022-09-12 04:45:57','','Group 8785@3x','','inherit','open','closed','','group-87853x','','','2022-09-13 05:57:46','2022-09-13 09:57:46','',4563,'https://translucent.local/wp-content/uploads/2022/09/Group-8785@3x.png',0,'attachment','image/png',0),(4686,21,'2022-09-12 00:46:48','2022-09-12 04:46:48','','Group 8786@3x','','inherit','open','closed','','group-87863x','','','2022-09-13 05:57:44','2022-09-13 09:57:44','',4563,'https://translucent.local/wp-content/uploads/2022/09/Group-8786@3x.png',0,'attachment','image/png',0),(4687,21,'2022-09-12 00:48:55','2022-09-12 04:48:55','','data_entry','','inherit','open','closed','','data_entry','','','2022-09-13 05:57:39','2022-09-13 09:57:39','',4563,'https://translucent.local/wp-content/uploads/2022/09/data_entry.png',0,'attachment','image/png',0),(4688,21,'2022-09-12 00:50:40','2022-09-12 04:50:40','','product-recommendation','','inherit','open','closed','','product-recommendation','','','2022-09-13 05:57:36','2022-09-13 09:57:36','',4563,'https://translucent.local/wp-content/uploads/2022/09/product-recommendation.png',0,'attachment','image/png',0),(4689,21,'2022-09-12 00:51:30','2022-09-12 04:51:30','','medical-diagnosis','','inherit','open','closed','','medical-diagnosis','','','2022-09-13 05:57:33','2022-09-13 09:57:33','',4563,'https://translucent.local/wp-content/uploads/2022/09/medical-diagnosis.png',0,'attachment','image/png',0),(4690,21,'2022-09-12 00:52:45','2022-09-12 04:52:45','','who_is_buying','','inherit','open','closed','','who_is_buying','','','2022-09-13 05:57:31','2022-09-13 09:57:31','',4563,'https://translucent.local/wp-content/uploads/2022/09/who_is_buying.png',0,'attachment','image/png',0),(4691,21,'2022-09-12 00:53:48','2022-09-12 04:53:48','','user_behavior','','inherit','open','closed','','user_behavior','','','2022-09-13 05:57:29','2022-09-13 09:57:29','',4563,'https://translucent.local/wp-content/uploads/2022/09/user_behavior.png',0,'attachment','image/png',0),(4692,21,'2022-09-12 00:54:54','2022-09-12 04:54:54','','automated_reporting','','inherit','open','closed','','automated_reporting','','','2022-09-13 05:57:25','2022-09-13 09:57:25','',4563,'https://translucent.local/wp-content/uploads/2022/09/automated_reporting.png',0,'attachment','image/png',0),(4693,21,'2022-09-12 00:55:59','2022-09-12 04:55:59','','detecting_spam','','inherit','open','closed','','detecting_spam','','','2022-09-13 05:57:22','2022-09-13 09:57:22','',4563,'https://translucent.local/wp-content/uploads/2022/09/detecting_spam.png',0,'attachment','image/png',0),(4694,21,'2022-09-12 00:56:57','2022-09-12 04:56:57','','analytics','','inherit','open','closed','','analytics','','','2022-09-13 05:57:19','2022-09-13 09:57:19','',4563,'https://translucent.local/wp-content/uploads/2022/09/analytics.png',0,'attachment','image/png',0),(4695,21,'2022-09-12 00:57:33','2022-09-12 04:57:33','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-12 00:57:33','2022-09-12 04:57:33','',4563,'https://translucent.local/?p=4695',0,'revision','',0),(4696,21,'2022-09-12 01:01:03','2022-09-12 05:01:03','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-12 01:01:03','2022-09-12 05:01:03','',4563,'https://translucent.local/?p=4696',0,'revision','',0),(4697,21,'2022-09-12 01:07:18','2022-09-12 05:07:18','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-12 01:07:18','2022-09-12 05:07:18','',4563,'https://translucent.local/?p=4697',0,'revision','',0),(4698,21,'2022-09-12 02:43:19','2022-09-12 06:43:19','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-12 02:43:19','2022-09-12 06:43:19','',4563,'https://translucent.local/?p=4698',0,'revision','',0),(4699,21,'2022-09-12 02:44:03','2022-09-12 06:44:03','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-12 02:44:03','2022-09-12 06:44:03','',4563,'https://translucent.local/?p=4699',0,'revision','',0),(4700,21,'2022-09-12 02:45:13','2022-09-12 06:45:13','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Top Title','top_title_page','publish','closed','closed','','field_631ed55492adc','','','2022-09-12 02:47:10','2022-09-12 06:47:10','',4541,'https://translucent.local/?post_type=acf-field&p=4700',0,'acf-field','',0),(4701,21,'2022-09-12 02:45:55','2022-09-12 06:45:55','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-12 02:45:55','2022-09-12 06:45:55','',4563,'https://translucent.local/?p=4701',0,'revision','',0),(4702,21,'2022-09-12 02:48:03','2022-09-12 06:48:03','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-12 02:48:03','2022-09-12 06:48:03','',4563,'https://translucent.local/?p=4702',0,'revision','',0),(4703,21,'2022-09-12 03:20:10','2022-09-12 07:20:10','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-12 03:20:10','2022-09-12 07:20:10','',4563,'https://translucent.local/?p=4703',0,'revision','',0),(4704,21,'2022-09-12 03:21:19','2022-09-12 07:21:19','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-12 03:21:19','2022-09-12 07:21:19','',4563,'https://translucent.local/?p=4704',0,'revision','',0),(4705,21,'2022-09-12 03:23:06','2022-09-12 07:23:06','','difference','','inherit','open','closed','','difference','','','2022-09-13 05:57:16','2022-09-13 09:57:16','',4563,'https://translucent.local/wp-content/uploads/2022/09/difference.png',0,'attachment','image/png',0),(4706,21,'2022-09-12 03:23:18','2022-09-12 07:23:18','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-12 03:23:18','2022-09-12 07:23:18','',4563,'https://translucent.local/?p=4706',0,'revision','',0),(4707,21,'2022-09-12 03:43:17','2022-09-12 07:43:17','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-12 03:43:17','2022-09-12 07:43:17','',4563,'https://translucent.local/?p=4707',0,'revision','',0),(4708,21,'2022-09-12 03:53:05','2022-09-12 07:53:05','','Kubernetes Professional Services New','','publish','closed','closed','','kubernetes-professional-services-new','','','2022-09-16 05:13:37','2022-09-16 09:13:37','',0,'https://translucent.local/?page_id=4708',0,'page','',0),(4709,21,'2022-09-12 03:53:05','2022-09-12 07:53:05','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 03:53:05','2022-09-12 07:53:05','',4708,'https://translucent.local/?p=4709',0,'revision','',0),(4710,21,'2022-09-12 04:28:07','2022-09-12 08:28:07','','1160358','','inherit','open','closed','','1160358','','','2022-09-13 05:57:13','2022-09-13 09:57:13','',4708,'https://translucent.local/wp-content/uploads/2022/09/1160358.png',0,'attachment','image/png',0),(4711,21,'2022-09-12 04:32:05','2022-09-12 08:32:05','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 04:32:05','2022-09-12 08:32:05','',4708,'https://translucent.local/?p=4711',0,'revision','',0),(4712,21,'2022-09-12 04:46:11','2022-09-12 08:46:11','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 04:46:11','2022-09-12 08:46:11','',4708,'https://translucent.local/?p=4712',0,'revision','',0),(4713,21,'2022-09-12 05:03:18','2022-09-12 09:03:18','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Five Icon Text One','section_five_icon_text_one','publish','closed','closed','','field_631ef52f912c8','','','2022-09-15 23:14:29','2022-09-16 03:14:29','',4666,'https://translucent.local/?post_type=acf-field&p=4713',6,'acf-field','',0),(4714,21,'2022-09-12 05:03:19','2022-09-12 09:03:19','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Five Icon Two','section_five_icon_two','publish','closed','closed','','field_631ef504912c5','','','2022-09-14 02:14:45','2022-09-14 06:14:45','',4666,'https://translucent.local/?post_type=acf-field&p=4714',7,'acf-field','',0),(4715,21,'2022-09-12 05:03:20','2022-09-12 09:03:20','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Five Icon Text Two','section_five_icon_text_two','publish','closed','closed','','field_631ef547912c9','','','2022-09-15 23:14:29','2022-09-16 03:14:29','',4666,'https://translucent.local/?post_type=acf-field&p=4715',8,'acf-field','',0),(4716,21,'2022-09-12 05:03:21','2022-09-12 09:03:21','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Five Icon Three','section_five_icon_three','publish','closed','closed','','field_631ef510912c6','','','2022-09-14 02:14:45','2022-09-14 06:14:45','',4666,'https://translucent.local/?post_type=acf-field&p=4716',9,'acf-field','',0),(4717,21,'2022-09-12 05:03:23','2022-09-12 09:03:23','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Five Icon Text Three','section_five_icon_text_three','publish','closed','closed','','field_631ef57b912ca','','','2022-09-15 23:14:29','2022-09-16 03:14:29','',4666,'https://translucent.local/?post_type=acf-field&p=4717',10,'acf-field','',0),(4718,21,'2022-09-12 05:03:24','2022-09-12 09:03:24','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Five Icon Four','section_five_icon_four','publish','closed','closed','','field_631ef51c912c7','','','2022-09-14 02:14:45','2022-09-14 06:14:45','',4666,'https://translucent.local/?post_type=acf-field&p=4718',11,'acf-field','',0),(4719,21,'2022-09-12 05:03:25','2022-09-12 09:03:25','a:10:{s:4:\"type\";s:4:\"text\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:11:\"placeholder\";s:0:\"\";s:7:\"prepend\";s:0:\"\";s:6:\"append\";s:0:\"\";s:9:\"maxlength\";s:0:\"\";}','Section Five Icon Text Four','section_five_icon_text_four','publish','closed','closed','','field_631ef58e912cb','','','2022-09-15 23:14:29','2022-09-16 03:14:29','',4666,'https://translucent.local/?post_type=acf-field&p=4719',12,'acf-field','',0),(4720,21,'2022-09-12 05:07:18','2022-09-12 09:07:18','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 05:07:18','2022-09-12 09:07:18','',4708,'https://translucent.local/?p=4720',0,'revision','',0),(4721,21,'2022-09-12 05:59:14','2022-09-12 09:59:14','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 05:59:14','2022-09-12 09:59:14','',4708,'https://translucent.local/?p=4721',0,'revision','',0),(4722,21,'2022-09-12 06:00:20','2022-09-12 10:00:20','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 06:00:20','2022-09-12 10:00:20','',4708,'https://translucent.local/?p=4722',0,'revision','',0),(4723,21,'2022-09-12 07:51:57','2022-09-12 11:51:57','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-12 07:51:57','2022-09-12 11:51:57','',4563,'https://translucent.mesoishop.com/?p=4723',0,'revision','',0),(4724,21,'2022-09-12 09:16:36','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2022-09-12 09:16:36','0000-00-00 00:00:00','',0,'https://translucent.mesoishop.com/?p=4724',0,'post','',0),(4726,21,'2022-09-12 09:24:22','2022-09-12 13:24:22','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 09:24:22','2022-09-12 13:24:22','',4708,'https://translucent.mesoishop.com/?p=4726',0,'revision','',0),(4728,21,'2022-09-12 09:26:09','2022-09-12 13:26:09','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 09:26:09','2022-09-12 13:26:09','',4708,'https://translucent.mesoishop.com/?p=4728',0,'revision','',0),(4731,21,'2022-09-12 09:27:36','2022-09-12 13:27:36','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 09:27:36','2022-09-12 13:27:36','',4708,'https://translucent.mesoishop.com/?p=4731',0,'revision','',0),(4733,21,'2022-09-12 09:29:20','2022-09-12 13:29:20','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 09:29:20','2022-09-12 13:29:20','',4708,'https://translucent.mesoishop.com/?p=4733',0,'revision','',0),(4734,21,'2022-09-12 09:31:12','2022-09-12 13:31:12','','cloud-native','','inherit','open','closed','','cloud-native','','','2022-09-13 05:57:10','2022-09-13 09:57:10','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/cloud-native.png',0,'attachment','image/png',0),(4735,21,'2022-09-12 09:31:21','2022-09-12 13:31:21','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 09:31:21','2022-09-12 13:31:21','',4708,'https://translucent.mesoishop.com/?p=4735',0,'revision','',0),(4736,21,'2022-09-12 09:32:24','2022-09-12 13:32:24','','continuous','','inherit','open','closed','','continuous','','','2022-09-13 05:57:06','2022-09-13 09:57:06','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/continuous.png',0,'attachment','image/png',0),(4737,21,'2022-09-12 09:32:35','2022-09-12 13:32:35','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 09:32:35','2022-09-12 13:32:35','',4708,'https://translucent.mesoishop.com/?p=4737',0,'revision','',0),(4738,21,'2022-09-12 09:33:36','2022-09-12 13:33:36','','cloud-native-tranformation','','inherit','open','closed','','cloud-native-tranformation','','','2022-09-13 05:57:03','2022-09-13 09:57:03','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/cloud-native-tranformation.png',0,'attachment','image/png',0),(4739,21,'2022-09-12 09:33:45','2022-09-12 13:33:45','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 09:33:45','2022-09-12 13:33:45','',4708,'https://translucent.mesoishop.com/?p=4739',0,'revision','',0),(4740,21,'2022-09-12 09:34:41','2022-09-12 13:34:41','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 09:34:41','2022-09-12 13:34:41','',4708,'https://translucent.mesoishop.com/?p=4740',0,'revision','',0),(4741,21,'2022-09-12 09:37:19','2022-09-12 13:37:19','','cloud-native-transformation','','inherit','open','closed','','cloud-native-transformation','','','2022-09-13 05:57:00','2022-09-13 09:57:00','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/cloud-native-transformation.png',0,'attachment','image/png',0),(4742,21,'2022-09-12 09:37:33','2022-09-12 13:37:33','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 09:37:33','2022-09-12 13:37:33','',4708,'https://translucent.mesoishop.com/?p=4742',0,'revision','',0),(4743,21,'2022-09-12 09:38:38','2022-09-12 13:38:38','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 09:38:38','2022-09-12 13:38:38','',4708,'https://translucent.mesoishop.com/?p=4743',0,'revision','',0),(4744,21,'2022-09-12 09:40:17','2022-09-12 13:40:17','','design-buid-and-monitor','','inherit','open','closed','','design-buid-and-monitor','','','2022-09-13 05:56:57','2022-09-13 09:56:57','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/design-buid-and-monitor.png',0,'attachment','image/png',0),(4745,21,'2022-09-12 09:40:28','2022-09-12 13:40:28','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 09:40:28','2022-09-12 13:40:28','',4708,'https://translucent.mesoishop.com/?p=4745',0,'revision','',0),(4746,21,'2022-09-12 09:41:38','2022-09-12 13:41:38','','application-modernization','','inherit','open','closed','','application-modernization','','','2022-09-13 05:56:54','2022-09-13 09:56:54','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/application-modernization.png',0,'attachment','image/png',0),(4747,21,'2022-09-12 09:41:52','2022-09-12 13:41:52','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 09:41:52','2022-09-12 13:41:52','',4708,'https://translucent.mesoishop.com/?p=4747',0,'revision','',0),(4748,21,'2022-09-12 09:44:17','2022-09-12 13:44:17','','continuous-delivery','','inherit','open','closed','','continuous-delivery','','','2022-09-13 05:56:51','2022-09-13 09:56:51','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/continuous-delivery.png',0,'attachment','image/png',0),(4749,21,'2022-09-12 09:44:38','2022-09-12 13:44:38','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 09:44:38','2022-09-12 13:44:38','',4708,'https://translucent.mesoishop.com/?p=4749',0,'revision','',0),(4750,21,'2022-09-12 09:46:32','2022-09-12 13:46:32','','production-grade-kubernets','','inherit','open','closed','','production-grade-kubernets','','','2022-09-13 05:56:47','2022-09-13 09:56:47','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/production-grade-kubernets.png',0,'attachment','image/png',0),(4751,21,'2022-09-12 09:46:40','2022-09-12 13:46:40','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 09:46:40','2022-09-12 13:46:40','',4708,'https://translucent.mesoishop.com/?p=4751',0,'revision','',0),(4752,21,'2022-09-12 09:47:53','2022-09-12 13:47:53','','site-relicability','','inherit','open','closed','','site-relicability','','','2022-09-13 05:56:44','2022-09-13 09:56:44','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/site-relicability.png',0,'attachment','image/png',0),(4753,21,'2022-09-12 09:48:15','2022-09-12 13:48:15','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 09:48:15','2022-09-12 13:48:15','',4708,'https://translucent.mesoishop.com/?p=4753',0,'revision','',0),(4754,21,'2022-09-12 09:50:29','2022-09-12 13:50:29','','service-level-agreeents','','inherit','open','closed','','service-level-agreeents','','','2022-09-13 05:56:39','2022-09-13 09:56:39','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/service-level-agreeents.png',0,'attachment','image/png',0),(4755,21,'2022-09-12 09:50:48','2022-09-12 13:50:48','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 09:50:48','2022-09-12 13:50:48','',4708,'https://translucent.mesoishop.com/?p=4755',0,'revision','',0),(4756,21,'2022-09-12 09:52:18','2022-09-12 13:52:18','','service-level-objectives','','inherit','open','closed','','service-level-objectives','','','2022-09-13 05:56:37','2022-09-13 09:56:37','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/service-level-objectives.png',0,'attachment','image/png',0),(4757,21,'2022-09-12 09:52:28','2022-09-12 13:52:28','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 09:52:28','2022-09-12 13:52:28','',4708,'https://translucent.mesoishop.com/?p=4757',0,'revision','',0),(4758,21,'2022-09-12 09:53:12','2022-09-12 13:53:12','','service-level-indicator','','inherit','open','closed','','service-level-indicator','','','2022-09-13 05:56:33','2022-09-13 09:56:33','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/service-level-indicator.png',0,'attachment','image/png',0),(4759,21,'2022-09-12 09:53:27','2022-09-12 13:53:27','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 09:53:27','2022-09-12 13:53:27','',4708,'https://translucent.mesoishop.com/?p=4759',0,'revision','',0),(4760,21,'2022-09-12 22:51:10','2022-09-13 02:51:10','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 22:51:10','2022-09-13 02:51:10','',4708,'https://translucent.mesoishop.com/?p=4760',0,'revision','',0),(4761,21,'2022-09-12 22:52:40','2022-09-13 02:52:40','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-12 22:52:40','2022-09-13 02:52:40','',4708,'https://translucent.mesoishop.com/?p=4761',0,'revision','',0),(4762,21,'2022-09-12 23:25:04','2022-09-13 03:25:04','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-12 23:25:04','2022-09-13 03:25:04','',4563,'https://translucent.mesoishop.com/?p=4762',0,'revision','',0),(4763,21,'2022-09-12 23:33:58','2022-09-13 03:33:58','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-12 23:33:58','2022-09-13 03:33:58','',4563,'https://translucent.mesoishop.com/?p=4763',0,'revision','',0),(4764,21,'2022-09-12 23:36:32','2022-09-13 03:36:32','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-12 23:36:32','2022-09-13 03:36:32','',4563,'https://translucent.mesoishop.com/?p=4764',0,'revision','',0),(4765,21,'2022-09-12 23:45:40','2022-09-13 03:45:40','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-12 23:45:40','2022-09-13 03:45:40','',4563,'https://translucent.mesoishop.com/?p=4765',0,'revision','',0),(4766,21,'2022-09-12 23:54:31','2022-09-13 03:54:31','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-12 23:54:31','2022-09-13 03:54:31','',4563,'https://translucent.mesoishop.com/?p=4766',0,'revision','',0),(4767,21,'2022-09-13 00:40:43','2022-09-13 04:40:43','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-13 00:40:43','2022-09-13 04:40:43','',4708,'https://translucent.mesoishop.com/?p=4767',0,'revision','',0),(4768,21,'2022-09-13 00:43:21','2022-09-13 04:43:21','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-13 00:43:21','2022-09-13 04:43:21','',4708,'https://translucent.mesoishop.com/?p=4768',0,'revision','',0),(4769,21,'2022-09-13 00:47:43','2022-09-13 04:47:43','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-13 00:47:43','2022-09-13 04:47:43','',4563,'https://translucent.mesoishop.com/?p=4769',0,'revision','',0),(4770,21,'2022-09-13 00:47:50','2022-09-13 04:47:50','','Machine Learning New','','inherit','closed','closed','','4563-autosave-v1','','','2022-09-13 00:47:50','2022-09-13 04:47:50','',4563,'https://translucent.mesoishop.com/?p=4770',0,'revision','',0),(4771,21,'2022-09-13 00:49:16','2022-09-13 04:49:16','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-13 00:49:16','2022-09-13 04:49:16','',4708,'https://translucent.mesoishop.com/?p=4771',0,'revision','',0),(4772,21,'2022-09-13 00:50:10','2022-09-13 04:50:10','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-13 00:50:10','2022-09-13 04:50:10','',4708,'https://translucent.mesoishop.com/?p=4772',0,'revision','',0),(4773,21,'2022-09-13 00:54:04','2022-09-13 04:54:04','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-13 00:54:04','2022-09-13 04:54:04','',4708,'https://translucent.mesoishop.com/?p=4773',0,'revision','',0),(4774,21,'2022-09-13 00:55:04','2022-09-13 04:55:04','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-13 00:55:04','2022-09-13 04:55:04','',4708,'https://translucent.mesoishop.com/?p=4774',0,'revision','',0),(4775,21,'2022-09-13 01:01:16','2022-09-13 05:01:16','','kubernetes_certified_icon','','inherit','open','closed','','kubernetes_certified_icon','','','2022-09-13 05:56:30','2022-09-13 09:56:30','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/kubernetes_certified_icon.png',0,'attachment','image/png',0),(4776,21,'2022-09-13 01:01:44','2022-09-13 05:01:44','','kubernetes_and_conteiners_2','','inherit','open','closed','','kubernetes_and_conteiners_2','','','2022-09-13 05:56:28','2022-09-13 09:56:28','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/kubernetes_and_conteiners_2.png',0,'attachment','image/png',0),(4777,21,'2022-09-13 01:02:03','2022-09-13 05:02:03','','24-7_2','','inherit','open','closed','','24-7_2','','','2022-09-13 05:56:23','2022-09-13 09:56:23','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/24-7_2.png',0,'attachment','image/png',0),(4778,21,'2022-09-13 01:02:16','2022-09-13 05:02:16','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-13 01:02:16','2022-09-13 05:02:16','',4708,'https://translucent.mesoishop.com/?p=4778',0,'revision','',0),(4779,21,'2022-09-13 01:02:41','2022-09-13 05:02:41','','learn_informa_plan','','inherit','open','closed','','learn_informa_plan','','','2022-09-13 05:56:17','2022-09-13 09:56:17','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/learn_informa_plan.png',0,'attachment','image/png',0),(4780,21,'2022-09-13 01:02:48','2022-09-13 05:02:48','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-13 01:02:48','2022-09-13 05:02:48','',4708,'https://translucent.mesoishop.com/?p=4780',0,'revision','',0),(4782,21,'2022-09-13 01:25:13','2022-09-13 05:25:13','a:10:{s:4:\"type\";s:7:\"wysiwyg\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"default_value\";s:0:\"\";s:4:\"tabs\";s:3:\"all\";s:7:\"toolbar\";s:4:\"full\";s:12:\"media_upload\";i:1;s:5:\"delay\";i:0;}','Section Five Quote','section_five_quote','publish','closed','closed','','field_632013fd76a3e','','','2022-09-13 01:27:03','2022-09-13 05:27:03','',4613,'https://translucent.mesoishop.com/?post_type=acf-field&p=4782',1,'acf-field','',0),(4784,21,'2022-09-13 01:27:53','2022-09-13 05:27:53','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-13 01:27:53','2022-09-13 05:27:53','',4563,'https://translucent.mesoishop.com/?p=4784',0,'revision','',0),(4785,21,'2022-09-13 01:28:46','2022-09-13 05:28:46','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-13 01:28:46','2022-09-13 05:28:46','',4563,'https://translucent.mesoishop.com/?p=4785',0,'revision','',0),(4786,21,'2022-09-13 01:29:46','2022-09-13 05:29:46','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-13 01:29:46','2022-09-13 05:29:46','',4563,'https://translucent.mesoishop.com/?p=4786',0,'revision','',0),(4787,21,'2022-09-13 01:30:37','2022-09-13 05:30:37','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-13 01:30:37','2022-09-13 05:30:37','',4563,'https://translucent.mesoishop.com/?p=4787',0,'revision','',0),(4788,21,'2022-09-13 01:34:20','2022-09-13 05:34:20','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-13 01:34:20','2022-09-13 05:34:20','',4563,'https://translucent.mesoishop.com/?p=4788',0,'revision','',0),(4789,21,'2022-09-13 02:30:13','2022-09-13 06:30:13','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-13 02:30:13','2022-09-13 06:30:13','',4708,'https://translucent.mesoishop.com/?p=4789',0,'revision','',0),(4790,21,'2022-09-13 02:31:46','2022-09-13 06:31:46','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-13 02:31:46','2022-09-13 06:31:46','',4708,'https://translucent.mesoishop.com/?p=4790',0,'revision','',0),(4792,21,'2022-09-13 04:34:36','2022-09-13 08:34:36','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-13 04:34:36','2022-09-13 08:34:36','',4563,'https://translucent.mesoishop.com/?p=4792',0,'revision','',0),(4793,21,'2022-09-13 04:36:58','2022-09-13 08:36:58','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-13 04:36:58','2022-09-13 08:36:58','',4563,'https://translucent.mesoishop.com/?p=4793',0,'revision','',0),(4794,21,'2022-09-13 04:51:17','2022-09-13 08:51:17','[]','https://translucent.mesoishop.com/test-robs/','','publish','closed','closed','','9b1220020e76daf0afad288626f7fdf9','','','2022-09-13 04:51:17','2022-09-13 08:51:17','',0,'https://translucent.mesoishop.com/amp_validated_url/9b1220020e76daf0afad288626f7fdf9/',0,'amp_validated_url','',0),(4795,21,'2022-09-13 04:51:17','2022-09-13 08:51:17','[]','https://translucent.mesoishop.com/2022/06/how-translucent-is-changing-the-cloud-native-industry/','','publish','closed','closed','','8a5e7093d047c378504721998336145e','','','2022-09-13 04:51:17','2022-09-13 08:51:17','',0,'https://translucent.mesoishop.com/amp_validated_url/8a5e7093d047c378504721998336145e/',0,'amp_validated_url','',0),(4796,21,'2022-09-13 04:44:06','2022-09-13 08:44:06','[{\"term_slug\":\"b6319eb11967f233e8deca9ac7919f84\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/shared.css?v=637286258\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"74383adda30d63a82e52f5fb1bd448fe\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/styles.css\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"c683711a32c941e886a2bff9cd5d9c49\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/css\\/owl.carousel.css\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"754f2bd220d369a2310b0727edf58c57\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"contact-form-7-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/css\\/styles.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"17e920edc403db5a65f76c4be11cbd90\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"social_warfare-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/css\\/style.min.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Script.php\",\"line\":94,\"function\":\"SWP_Script::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"b2b05336e9d16428fe4d70031a73afc4\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"rs-plugin-settings-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/rs6.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":134,\"function\":\"RevSliderFront::add_inline_css\",\"hook\":\"wp_footer\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"rs-plugin-settings\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"698ed8c3c1252be738d6986e0c37c3cf\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"emcs_calendly_css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/embed-calendly-scheduling\\/assets\\/css\\/widget.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"embed-calendly-scheduling\",\"file\":\"embed-calendly-scheduling.php\",\"line\":39,\"function\":\"emcs_calendly_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"157c13b55df6d419a7a4a7c952b848f6\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1020,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2261,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"6d4404ba5312e7463b373a66c2eda446\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/css\\/all.min.css\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"a845e1e06b53116c205bceaff1516022\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.css\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"0ad7242b71b7e1675d4323aa70985997\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"style\",\"node_attributes\":{\"type\":\"text\\/css\",\"id\":\"wp-custom-css\"},\"text\":\"\\n\\t\\t\\t\\n.tek-ai {\\n\\theight: auto;\\n}\\n\\n.tek-ai img {\\n\\theight: auto !important;\\n\\tmax-height: 570px;\\n}\\n\\n@media (max-width:992px) {\\n .tek-ai {\\n \\theight: auto;\\n\\t\\ttext-align: center !important;\\n\\t}\\n}\\n\\n@media (min-width: 1400px) {\\n .tek-ai {\\n \\theight: auto;\\n\\t}\\n}\\n\\n.footer-2022__menu--list.footer_links:nth-child(4) {\\n display: none;\\n}\\n\\n\\t\\t\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"theme.php\",\"line\":1824,\"function\":\"wp_custom_css_cb\",\"hook\":\"wp_head\",\"priority\":101}]}},{\"term_slug\":\"23b6b9c56b1db07e4393c6bc7d02ba95\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"div\",\"parent_name\":\"div\",\"node_attributes\":{\"class\":\"col-lg-6 blog-title-main amp-wp-7597b7e\",\"data-amp-original-style\":\"background-image: url(\'https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2020\\/01\\/blogimg.jpg\')\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"84e497b381cbb079db874863c5b11bd7\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"style\",\"node_attributes\":[],\"text\":\"\\r\\n\\t@font-face {\\r\\n\\t\\tfont-family: \\\"sw-icon-font\\\";\\r\\n\\t\\tsrc:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0\\\");\\r\\n\\t\\tsrc:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0#iefix\\\") format(\\\"embedded-opentype\\\"),\\r\\n\\t\\turl(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.woff?ver=4.3.0\\\") format(\\\"woff\\\"),\\r\\n\\t\\turl(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.ttf?ver=4.3.0\\\") format(\\\"truetype\\\"),\\r\\n\\t\\turl(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.svg?ver=4.3.0#1445203416\\\") format(\\\"svg\\\");\\r\\n\\t\\tfont-weight: normal;\\r\\n\\t\\tfont-style: normal;\\r\\n\\t\\tfont-display:block;\\r\\n\\t}\\r\\n\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Header_Output.php\",\"line\":69,\"function\":\"SWP_Header_Output::add_header_output\",\"hook\":\"wp_head\",\"priority\":1}]}},{\"term_slug\":\"9bc4b078f5f0e9eaab12cf1127980410\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"div\",\"parent_name\":\"div\",\"node_attributes\":{\"class\":\"col-lg-6 blog-main amp-wp-946752b\",\"data-amp-original-style\":\"background-image: url(\'https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2022\\/06\\/How-Translucent-is-changing-the-Cloud-Native-industry.png\');\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"4281f21ed8dba5c268ac3796b5136911\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/embed-calendly-scheduling\\/assets\\/js\\/widget.js?ver=__normalized__\",\"id\":\"emcs_calendly_js-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"embed-calendly-scheduling\",\"file\":\"embed-calendly-scheduling.php\",\"line\":39,\"function\":\"emcs_calendly_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"emcs_calendly_js\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"emcs_calendly_js\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"ad851d2fd6457e6427554d69d5544899\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/jquery\\/jquery.min.js?ver=__normalized__\",\"id\":\"jquery-core-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"d95172fdd6b6200ab9aad6f23b20546c\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/jquery\\/jquery-migrate.min.js?ver=__normalized__\",\"id\":\"jquery-migrate-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"22a3cbf1fa1e43f7e3d9b33f00da4349\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"__ytprefs__-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var _EPYT_ = {\\\"ajaxurl\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-admin\\\\\\/admin-ajax.php\\\",\\\"security\\\":\\\"a8468eb17c\\\",\\\"gallery_scrolloffset\\\":\\\"20\\\",\\\"eppathtoscripts\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/scripts\\\\\\/\\\",\\\"eppath\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/\\\",\\\"epresponsiveselector\\\":\\\"[\\\\\\\"iframe.__youtube_prefs__\\\\\\\",\\\\\\\"iframe[src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-gallerysrc*=\'youtube.com\']\\\\\\\"]\\\",\\\"epdovol\\\":\\\"1\\\",\\\"version\\\":\\\"14.1.2\\\",\\\"evselector\\\":\\\"iframe.__youtube_prefs__[src], iframe[src*=\\\\\\\"youtube.com\\\\\\/embed\\\\\\/\\\\\\\"], iframe[src*=\\\\\\\"youtube-nocookie.com\\\\\\/embed\\\\\\/\\\\\\\"]\\\",\\\"ajax_compat\\\":\\\"\\\",\\\"ytapi_load\\\":\\\"light\\\",\\\"pause_others\\\":\\\"\\\",\\\"stopMobileBuffer\\\":\\\"1\\\",\\\"facade_mode\\\":\\\"\\\",\\\"not_live_on_channel\\\":\\\"\\\",\\\"vi_active\\\":\\\"\\\",\\\"vi_js_posttypes\\\":[]};\",\"handle\":\"__ytprefs__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var _EPYT_ = {\\\"ajaxurl\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-admin\\\\\\/admin-ajax.php\\\",\\\"security\\\":\\\"a8468eb17c\\\",\\\"gallery_scrolloffset\\\":\\\"20\\\",\\\"eppathtoscripts\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/scripts\\\\\\/\\\",\\\"eppath\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/\\\",\\\"epresponsiveselector\\\":\\\"[\\\\\\\"iframe.__youtube_prefs__\\\\\\\",\\\\\\\"iframe[src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-gallerysrc*=\'youtube.com\']\\\\\\\"]\\\",\\\"epdovol\\\":\\\"1\\\",\\\"version\\\":\\\"14.1.2\\\",\\\"evselector\\\":\\\"iframe.__youtube_prefs__[src], iframe[src*=\\\\\\\"youtube.com\\\\\\/embed\\\\\\/\\\\\\\"], iframe[src*=\\\\\\\"youtube-nocookie.com\\\\\\/embed\\\\\\/\\\\\\\"]\\\",\\\"ajax_compat\\\":\\\"\\\",\\\"ytapi_load\\\":\\\"light\\\",\\\"pause_others\\\":\\\"\\\",\\\"stopMobileBuffer\\\":\\\"1\\\",\\\"facade_mode\\\":\\\"\\\",\\\"not_live_on_channel\\\":\\\"\\\",\\\"vi_active\\\":\\\"\\\",\\\"vi_js_posttypes\\\":[]};\",\"handle\":\"__ytprefs__\"}]}},{\"term_slug\":\"38f5af99f1aa7d42f770794b2aebc370\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/scripts\\/ytprefs.min.js?ver=__normalized__\",\"id\":\"__ytprefs__-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"__ytprefs__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"__ytprefs__\"},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"60cb9e5de0de6a4012c105b98464b149\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"function setREVStartSize(e){\\n\\t\\t\\t\\/\\/window.requestAnimationFrame(function() {\\n\\t\\t\\t\\twindow.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW;\\n\\t\\t\\t\\twindow.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH;\\n\\t\\t\\t\\ttry {\\n\\t\\t\\t\\t\\tvar pw = document.getElementById(e.c).parentNode.offsetWidth,\\n\\t\\t\\t\\t\\t\\tnewh;\\n\\t\\t\\t\\t\\tpw = pw===__INT__ || isNaN(pw) || (e.l==__DOUBLE_QUOTED_STRING__ || e.layout==__DOUBLE_QUOTED_STRING__) ? window.RSIW : pw;\\n\\t\\t\\t\\t\\te.tabw = e.tabw===undefined ? __INT__ : parseInt(e.tabw);\\n\\t\\t\\t\\t\\te.thumbw = e.thumbw===undefined ? __INT__ : parseInt(e.thumbw);\\n\\t\\t\\t\\t\\te.tabh = e.tabh===undefined ? __INT__ : parseInt(e.tabh);\\n\\t\\t\\t\\t\\te.thumbh = e.thumbh===undefined ? __INT__ : parseInt(e.thumbh);\\n\\t\\t\\t\\t\\te.tabhide = e.tabhide===undefined ? __INT__ : parseInt(e.tabhide);\\n\\t\\t\\t\\t\\te.thumbhide = e.thumbhide===undefined ? __INT__ : parseInt(e.thumbhide);\\n\\t\\t\\t\\t\\te.mh = e.mh===undefined || e.mh==__DOUBLE_QUOTED_STRING__ || e.mh===__DOUBLE_QUOTED_STRING__ ? __INT__ : parseInt(e.mh,__INT__);\\n\\t\\t\\t\\t\\tif(e.layout===__DOUBLE_QUOTED_STRING__ || e.l===__DOUBLE_QUOTED_STRING__)\\n\\t\\t\\t\\t\\t\\tnewh = Math.max(e.mh,window.RSIH);\\n\\t\\t\\t\\t\\telse{\\n\\t\\t\\t\\t\\t\\te.gw = Array.isArray(e.gw) ? e.gw : [e.gw];\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===__INT__) e.gw[i] = e.gw[i__INT__];\\n\\t\\t\\t\\t\\t\\te.gh = e.el===undefined || e.el===__DOUBLE_QUOTED_STRING__ || (Array.isArray(e.el) && e.el.length==__INT__)? e.gh : e.el;\\n\\t\\t\\t\\t\\t\\te.gh = Array.isArray(e.gh) ? e.gh : [e.gh];\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===__INT__) e.gh[i] = e.gh[i__INT__];\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\tvar nl = new Array(e.rl.length),\\n\\t\\t\\t\\t\\t\\t\\tix = __INT__,\\n\\t\\t\\t\\t\\t\\t\\tsl;\\n\\t\\t\\t\\t\\t\\te.tabw = e.tabhide>=pw ? __INT__ : e.tabw;\\n\\t\\t\\t\\t\\t\\te.thumbw = e.thumbhide>=pw ? __INT__ : e.thumbw;\\n\\t\\t\\t\\t\\t\\te.tabh = e.tabhide>=pw ? __INT__ : e.tabh;\\n\\t\\t\\t\\t\\t\\te.thumbh = e.thumbhide>=pw ? __INT__ : e.thumbh;\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) nl[i] = e.rl[i]nl[i] && nl[i]>__INT__) { sl = nl[i]; ix=i;}\\n\\t\\t\\t\\t\\t\\tvar m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? __INT__ : (pw-(e.tabw+e.thumbw)) \\/ (e.gw[ix]);\\n\\t\\t\\t\\t\\t\\tnewh = (e.gh[ix] * m) + (e.tabh + e.thumbh);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\tvar el = document.getElementById(e.c);\\n\\t\\t\\t\\t\\tif (el!==null && el) el.style.height = newh+__DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\tel = document.getElementById(e.c+__DOUBLE_QUOTED_STRING__);\\n\\t\\t\\t\\t\\tif (el!==null && el) {\\n\\t\\t\\t\\t\\t\\tel.style.height = newh+__DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\t\\tel.style.display = __DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t} catch(e){\\n\\t\\t\\t\\t\\tconsole.log(__DOUBLE_QUOTED_STRING__ + e)\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\/\\/});\\n\\t\\t };\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"394a14393ccb142d4278875b36d749de\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/jquery-1.11.0.min.js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"d0f41d87dfbb44c74917aa3e7e6f4c9c\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/viewport-checker\\/dist\\/jquery.viewportchecker.min.js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"0858ec58dbe60e96b4fdf2e45aa60f95\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/typewriter.js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"68b2b21a33a01e0e112230069b0192f7\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n\\t\\t\\twindow.RS_MODULES = window.RS_MODULES || {};\\n\\t\\t\\twindow.RS_MODULES.modules = window.RS_MODULES.modules || {};\\n\\t\\t\\twindow.RS_MODULES.waiting = window.RS_MODULES.waiting || [];\\n\\t\\t\\twindow.RS_MODULES.defered = true;\\n\\t\\t\\twindow.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {};\\n\\t\\t\\twindow.RS_MODULES.type = __SINGLE_QUOTED_STRING__;\\n\\t\\t\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":229,\"function\":\"RevSliderFront::add_waiting_script\",\"hook\":\"wp_footer\",\"priority\":1}]}},{\"term_slug\":\"a198fa0278eff5b1007238f21a844cb8\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/dist\\/vendor\\/regenerator-runtime.min.js?ver=__normalized__\",\"id\":\"regenerator-runtime-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":549,\"function\":\"wp_default_packages\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":549,\"function\":\"wp_default_packages\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"29c76d030187be64189aa8a62c361d19\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill.min.js?ver=__normalized__\",\"id\":\"wp-polyfill-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":549,\"function\":\"wp_default_packages\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"6fc0da9f0d23eae8410103820c7c1c5c\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"contact-form-7-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7 = {\\\"api\\\":{\\\"root\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-json\\\\\\/\\\",\\\"namespace\\\":\\\"contact-form-7\\\\\\/v1\\\"}};\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7 = {\\\"api\\\":{\\\"root\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-json\\\\\\/\\\",\\\"namespace\\\":\\\"contact-form-7\\\\\\/v1\\\"}};\",\"handle\":\"contact-form-7\"}]}},{\"term_slug\":\"6b7e94cb0640140eccfeb0c6d126d3fa\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/js\\/index.js?ver=__normalized__\",\"id\":\"contact-form-7-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"455e0d79375d5c0e7bb2fe24f4408fe7\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/js\\/rbtools.min.js?ver=__normalized__\",\"defer\":\"defer\",\"async\":\"\",\"id\":\"tp-tools-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"tp-tools\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"tp-tools\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"9d2fbb97c2aba76b5c2e11048abcd7a3\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/js\\/rs6.min.js?ver=__normalized__\",\"defer\":\"defer\",\"async\":\"\",\"id\":\"revmin-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"revmin\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"revmin\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"0d54ab34f1393ff50a990bcd43ac9b89\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/www.google.com\\/recaptcha\\/api.js?render=6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s&ver=__normalized__\",\"id\":\"google-recaptcha-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"google-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"google-recaptcha\"},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"google-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"google-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"fffd38e1e2b741ded941b11c8bcee8e2\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"wpcf7-recaptcha-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7_recaptcha = {\\\"sitekey\\\":\\\"6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s\\\",\\\"actions\\\":{\\\"homepage\\\":\\\"homepage\\\",\\\"contactform\\\":\\\"contactform\\\"}};\",\"handle\":\"wpcf7-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7_recaptcha = {\\\"sitekey\\\":\\\"6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s\\\",\\\"actions\\\":{\\\"homepage\\\":\\\"homepage\\\",\\\"contactform\\\":\\\"contactform\\\"}};\",\"handle\":\"wpcf7-recaptcha\"}]}},{\"term_slug\":\"8a7fe833154a0ee7052f4d4fc864ab44\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/modules\\/recaptcha\\/index.js?ver=__normalized__\",\"id\":\"wpcf7-recaptcha-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"b700eea7e3e60850ee69274a67ef5ead\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/scripts\\/fitvids.min.js?ver=__normalized__\",\"id\":\"__ytprefsfitvids__-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"e95a68c301f2a3e94af3ab60d1e49223\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/popper.js\\/1.14.3\\/umd\\/popper.min.js\",\"integrity\":\"sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK\\/l8WvCWPIPm49\",\"crossorigin\":\"anonymous\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"dbdfe8cccebe34ff7041e208736a7942\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/stackpath.bootstrapcdn.com\\/bootstrap\\/4.1.3\\/js\\/bootstrap.min.js\",\"integrity\":\"sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW\\/JmZQ5stwEULTy\",\"crossorigin\":\"anonymous\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"7120b7b6f6e5e34eaab178a0de4148ac\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/validation\\/validate.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"dab16e046124505937d40d90a371de48\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"\\/\\/ajax.aspnetcdn.com\\/ajax\\/jquery.validate\\/1.11.1\\/jquery.validate.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"67c9c739d09cfdaf1697c37a00630a3d\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"\\/\\/ajax.microsoft.com\\/ajax\\/jquery.validate\\/1.11.1\\/additional-methods.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9ca7e7b07112fab0f2659963d081c647\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/validation\\/masks.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e2c5b7b289252d89a64585273c024ec4\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/js\\/owl.carousel.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"ef932f7d78102026336c4df6b9e8ff91\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/fancybox\\/jquery.fancybox.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"54f0b92713a27edb9d4a223c245ad681\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/typewriter-effect\\/dist\\/core.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"308a2319835188db90cf07f966466146\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/vivus@latest\\/dist\\/vivus.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d63eeee74cd3bfbc3da018462afd7b3f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/main.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"285f76a33582e621571d8109572b729f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/client-testimonial\\/client-testimonial.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"30ecfff784f957bc89bf72081232cb3b\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/cloud-native\\/cloud-native.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"c1becf0684470267fde5176dfd043567\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-process\\/our-process.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"de5df74cbbe78f3f4a0610587a35e184\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/services\\/services.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d9fea8205636ef843e6b598ace10ec9f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-clients\\/our-clients.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"22e139cf096a29785f5e03c3cdf7b16d\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b2a1b5e6c3786b7700a4fcb53b4481f1\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"src\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/slick-carousel@1.8.1\\/slick\\/slick.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b2badd021972c22702da7e27c5d6a2c0\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/aos@2.3.1\\/dist\\/aos.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d3db2d0fa38d97f62aac99a855396e59\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(document).ready(function() {\\n\\n$(__SINGLE_QUOTED_STRING__).click(function() {\\n$(__SINGLE_QUOTED_STRING__).slideToggle(__DOUBLE_QUOTED_STRING__);\\n});\\n\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: false,\\ninfinite: false,\\narrows: false,\\nspeed: __INT__,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\nresponsive: [\\n{\\nbreakpoint: __INT__,\\nsettings: {\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__\\n}\\n},\\n{\\nbreakpoint: __INT__,\\nsettings: {\\nslidesToShow: __FLOAT__,\\nslidesToScroll: __INT__\\n}\\n}\\n]\\n});\\nif($(window).width()<__INT__){\\nconst slider1 = $(__SINGLE_QUOTED_STRING__);\\nfunction onSliderAfterChange(event, slick, currentSlide) {\\n$(event.target).data(__SINGLE_QUOTED_STRING__, currentSlide);\\n}\\nfunction onSliderWheel(e) {\\nvar deltaY = e.originalEvent.deltaY,\\n $currentSlider = $(e.currentTarget),\\n currentSlickIndex = $currentSlider.data(__SINGLE_QUOTED_STRING__) || __INT__;\\nif (\\n (deltaY < __INT__ && currentSlickIndex == __INT__) ||\\n (deltaY > __INT__ && currentSlickIndex == $currentSlider.data(__SINGLE_QUOTED_STRING__) - __INT__)\\n) {\\n return;\\n}\\n\\ne.preventDefault();\\n\\nif (e.originalEvent.deltaY < __INT__) {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n} else {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n}\\n}\\n\\nslider1.each(function(index, element) {\\nvar $element = $(element);\\n$element.data(__SINGLE_QUOTED_STRING__, $element.children().length);\\n})\\n.slick({\\nresponsive: [\\n {\\n breakpoint: __INT__,\\n settings: __DOUBLE_QUOTED_STRING__\\n },\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n dots: true,\\n vertical: true,\\n verticalSwiping: true,\\n verticalSwiping: true,\\n infinite: false,\\n }\\n }\\n]\\n})\\n.on(__SINGLE_QUOTED_STRING__, onSliderAfterChange)\\n.on(__SINGLE_QUOTED_STRING__, onSliderWheel);\\n}\\nif($(window).width()<__INT__ && $()){\\nconst slider = $(__SINGLE_QUOTED_STRING__);\\nfunction onSliderAfterChange(event, slick, currentSlide) {\\n$(event.target).data(__SINGLE_QUOTED_STRING__, currentSlide);\\n}\\nfunction onSliderWheel(e) {\\nvar deltaY = e.originalEvent.deltaY,\\n $currentSlider = $(e.currentTarget),\\n currentSlickIndex = $currentSlider.data(__SINGLE_QUOTED_STRING__) || __INT__;\\nif (\\n (deltaY < __INT__ && currentSlickIndex == __INT__) ||\\n (deltaY > __INT__ && currentSlickIndex == $currentSlider.data(__SINGLE_QUOTED_STRING__) - __INT__)\\n) {\\n return;\\n}\\n\\ne.preventDefault();\\n\\nif (e.originalEvent.deltaY < __INT__) {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n} else {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n}\\n}\\n\\nslider.each(function(index, element) {\\nvar $element = $(element);\\n$element.data(__SINGLE_QUOTED_STRING__, $element.children().length);\\n})\\n.slick({\\nresponsive: [\\n {\\n breakpoint: __INT__,\\n settings: __DOUBLE_QUOTED_STRING__\\n },\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n dots: true,\\n vertical: true,\\n verticalSwiping: true,\\n verticalSwiping: true,\\n infinite: false,\\n }\\n }\\n]\\n})\\n.on(__SINGLE_QUOTED_STRING__, onSliderAfterChange)\\n.on(__SINGLE_QUOTED_STRING__, onSliderWheel);\\n}\\n\\nsetTimeout(function () {\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: true,\\narrows: true,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\ninfinite: false,\\nfade: true,\\nprevArrow:__DOUBLE_QUOTED_STRING__,\\nnextArrow:__DOUBLE_QUOTED_STRING__\\n});\\n\\n}, __INT__);\\n\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: false,\\ninfinite: false,\\narrows: false,\\nspeed: __INT__,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\nprevArrow:__DOUBLE_QUOTED_STRING__,\\nnextArrow:__DOUBLE_QUOTED_STRING__,\\nresponsive: [\\n{\\nbreakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: true,\\n\\n }\\n},\\n{\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: true,\\n }\\n}\\n]\\n});\\n\\n\\n\\n\\n\\n\\/\\/ jQuery(__DOUBLE_QUOTED_STRING__).click(()=>{\\n\\/\\/ jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n\\/\\/ })\\n});\\n\\n$(window).on(__DOUBLE_QUOTED_STRING__, function(e){\\nvar windowWidth = $(window).width();\\nif(windowWidth < __INT__){\\n $(__SINGLE_QUOTED_STRING__).slick({\\n dots: false,\\n arrows: false,\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n infinite: false,\\n responsive: [\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __FLOAT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n }\\n }\\n ]\\n });\\n\\n}else{\\n $(__SINGLE_QUOTED_STRING__).slick(__SINGLE_QUOTED_STRING__);\\n}\\n\\n}) \\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"46a6e66b9caf788b688275cac7a26bb5\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\nsetTimeout(() => {\\n $(__DOUBLE_QUOTED_STRING__).attr(__SINGLE_QUOTED_STRING__, __SINGLE_QUOTED_STRING__);\\n}, __INT__);\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"2c372ecf7923e7043aa08b5735b0e957\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n $(__SINGLE_QUOTED_STRING__).click(function(){\\n $(__SINGLE_QUOTED_STRING__).toggleClass(__SINGLE_QUOTED_STRING__);\\n });\\n\\n $(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(__DOUBLE_QUOTED_STRING__).click(function(){\\n jQuery(this).siblings(__DOUBLE_QUOTED_STRING__).slideToggle();\\n jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n console.log(__DOUBLE_QUOTED_STRING__)\\n if (jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).is(__DOUBLE_QUOTED_STRING__)) {\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).slideUp();\\n jQuery(this).siblings(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n }\\n })\\n }\\n \\njQuery(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n});\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"12562413cb77cf11c8ec1b1270ffeca2\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){ \\n $(__DOUBLE_QUOTED_STRING__).slideUp()\\n $(__DOUBLE_QUOTED_STRING__).slideDown()\\n $(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__)\\n jQuery(__DOUBLE_QUOTED_STRING__).click(function(){\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).slideToggle();\\n jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n if (jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).is(__DOUBLE_QUOTED_STRING__)) {\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).slideUp();\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n }\\n }); \\n var numRows = $(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__).length;\\nvar SHOWN = __INT__;\\nvar MORE = __INT__;\\n\\n\\/* get how many more can be shown *\\/\\nvar getNumMore = function(ns) {\\n var more = MORE;\\n var leftOver = numRows - ns;\\n if ((leftOver) < more) {\\n more = leftOver;\\n }\\n return more;\\n}\\n\\/* how many are shown *\\/\\nvar getInitialNumShown = function() {\\n var shown = SHOWN;\\n if (numRows < shown) {\\n shown = numRows;\\n }\\n return shown;\\n}\\n\\/* set how many are initially shown *\\/\\nvar numShown = getInitialNumShown();\\n\\n\\/* set the numMore if less than __INT__ *\\/\\nvar numMore = getNumMore(numShown);\\n\\n\\/* set more html *\\/\\nif (numMore > __INT__) {\\nvar more_html = __SINGLE_QUOTED_STRING__;\\n$(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__ + (numShown - __INT__) + __SINGLE_QUOTED_STRING__).hide().end().after(more_html);\\n}\\n$(__SINGLE_QUOTED_STRING__).click(function() {\\n\\/* determine how much more we should update *\\/\\nnumMore = getNumMore(numShown);\\n\\/* update num shown *\\/\\nnumShown = numShown + numMore;\\n$(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__ + numShown + __SINGLE_QUOTED_STRING__).show();\\n\\n\\/* determine if to show more and how much left over *\\/\\nnumMore = getNumMore(numShown);\\nif (numMore > __INT__) {\\n $(__SINGLE_QUOTED_STRING__).html(numMore);\\n} else {\\n $(__SINGLE_QUOTED_STRING__).remove();\\n}\\n}); \\n }\\n})\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b018faa0938622cc9d86adc1c5b500ae\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n $(__DOUBLE_QUOTED_STRING__).click(function() {\\n $(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).slideUp();\\n if (!$(this).next().is(__DOUBLE_QUOTED_STRING__)) {\\n $(this).next().slideDown();\\n $(this).addClass(__DOUBLE_QUOTED_STRING__);\\n }\\n })\\n }\\n jQuery(__SINGLE_QUOTED_STRING__).trigger(__SINGLE_QUOTED_STRING__);\\n });\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"6563f33063a8fda3041e500a21a4f19f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n $(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n \\n }\\n \\n \\n });\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9564124c6f316693f9a84b1137b0cba7\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n $(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n spaceBetween: __INT__,\\n longSwipesRatio: __FLOAT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n });\\n \\n }\\n \\n \\n });\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"561f494215f84bac2f890b40eb75db0a\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(document).ready(function() {\\n jQuery(__SINGLE_QUOTED_STRING__).trigger(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).click(function (e) {\\n e.preventDefault();\\n var popId = jQuery(this).attr(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n jQuery(popId).addClass(__SINGLE_QUOTED_STRING__);\\n })\\n});\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"82eea9842ad50c4a8eddf3aa2f5897e3\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n $(__SINGLE_QUOTED_STRING__).on(__SINGLE_QUOTED_STRING__, function(evt) {\\n evt.preventDefault();\\n \\/\\/ $(this).toggleClass(__SINGLE_QUOTED_STRING__);\\n $(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n $(this).addClass(__SINGLE_QUOTED_STRING__);\\n var sel = this.getAttribute(__SINGLE_QUOTED_STRING__);\\n $(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__).filter(sel).addClass(__SINGLE_QUOTED_STRING__);\\n });\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"433d165ac337e5a9f6a29f7820563801\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\"},\"text\":\"\\r\\n\\r\\n(function($) {\\r\\n __DOUBLE_QUOTED_STRING__;\\r\\n \\r\\n \\/\\/Begin - Document Ready\\r\\n $(document).ready(function(){\\r\\n \\r\\n\\tvar tela = $(window).width();\\r\\n\\r\\n if(tela > __INT__) {\\r\\n \\tvar larg = $(__SINGLE_QUOTED_STRING__).width();\\r\\n\\t var larg2 = larg * __INT__ * __FLOAT__ + __INT__;\\r\\n } else if(tela > __INT__) {\\r\\n \\tvar larg2 = (tela - __INT__)\\/__INT__ + __INT__;\\r\\n } else {\\r\\n \\tvar larg2 = __INT__;\\r\\n }\\r\\n\\r\\n $(__SINGLE_QUOTED_STRING__).css(__SINGLE_QUOTED_STRING__,larg2);\\r\\n\\t$(__SINGLE_QUOTED_STRING__).css(__SINGLE_QUOTED_STRING__,larg2);\\r\\n\\r\\n $(window).resize(function(){\\r\\n \\tif(tela > __INT__) {\\r\\n\\t \\tvar larg = $(__SINGLE_QUOTED_STRING__).width();\\r\\n\\t\\t var larg2 = larg * __INT__ * __FLOAT__ + __INT__;\\r\\n\\t } else if(tela > __INT__) {\\r\\n\\t \\tvar larg2 = (tela - __INT__)\\/__INT__ + __INT__;\\r\\n\\t } else {\\r\\n\\t \\tvar larg2 = __INT__;\\r\\n\\t }\\r\\n\\r\\n\\t $(__SINGLE_QUOTED_STRING__).css(__SINGLE_QUOTED_STRING__,larg2);\\r\\n\\t\\t$(__SINGLE_QUOTED_STRING__).css(__SINGLE_QUOTED_STRING__,larg2);\\r\\n });\\r\\n \\r\\n \\/\\/End - Document Ready\\r\\n });\\r\\n\\r\\n\\/\\/End - Use Strict mode\\r\\n})(jQuery);\\r\\n\",\"node_type\":1,\"sources\":[]}}]','https://translucent.mesoishop.com/blog/','','publish','closed','closed','','b12e70af1f937b5d972984a48f24d5c0','','','2022-09-13 04:44:06','2022-09-13 08:44:06','',0,'https://translucent.mesoishop.com/amp_validated_url/b12e70af1f937b5d972984a48f24d5c0/',0,'amp_validated_url','',0),(4797,21,'2022-09-13 04:44:08','2022-09-13 08:44:08','[{\"term_slug\":\"cca5d429d4c2ac617e7a3b1aa7f0a461\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/style-isk.css?v=1535218598\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"c683711a32c941e886a2bff9cd5d9c49\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/css\\/owl.carousel.css\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"74383adda30d63a82e52f5fb1bd448fe\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/styles.css\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"5152f2c37041b38ceee81ff8554df8e3\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/shared.css?v=107993241\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"702471c876b89c3c8e5f8f2ecb8e0f27\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/marchine.css?v=307997873\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"157c13b55df6d419a7a4a7c952b848f6\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1020,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2261,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"754f2bd220d369a2310b0727edf58c57\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"contact-form-7-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/css\\/styles.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"698ed8c3c1252be738d6986e0c37c3cf\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"emcs_calendly_css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/embed-calendly-scheduling\\/assets\\/css\\/widget.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"embed-calendly-scheduling\",\"file\":\"embed-calendly-scheduling.php\",\"line\":39,\"function\":\"emcs_calendly_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"17e920edc403db5a65f76c4be11cbd90\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"social_warfare-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/css\\/style.min.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Script.php\",\"line\":94,\"function\":\"SWP_Script::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"b2b05336e9d16428fe4d70031a73afc4\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"rs-plugin-settings-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/rs6.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":134,\"function\":\"RevSliderFront::add_inline_css\",\"hook\":\"wp_footer\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"rs-plugin-settings\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"a845e1e06b53116c205bceaff1516022\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.css\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"6d4404ba5312e7463b373a66c2eda446\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/css\\/all.min.css\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"0ad7242b71b7e1675d4323aa70985997\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"style\",\"node_attributes\":{\"type\":\"text\\/css\",\"id\":\"wp-custom-css\"},\"text\":\"\\n\\t\\t\\t\\n.tek-ai {\\n\\theight: auto;\\n}\\n\\n.tek-ai img {\\n\\theight: auto !important;\\n\\tmax-height: 570px;\\n}\\n\\n@media (max-width:992px) {\\n .tek-ai {\\n \\theight: auto;\\n\\t\\ttext-align: center !important;\\n\\t}\\n}\\n\\n@media (min-width: 1400px) {\\n .tek-ai {\\n \\theight: auto;\\n\\t}\\n}\\n\\n.footer-2022__menu--list.footer_links:nth-child(4) {\\n display: none;\\n}\\n\\n\\t\\t\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"theme.php\",\"line\":1824,\"function\":\"wp_custom_css_cb\",\"hook\":\"wp_head\",\"priority\":101}]}},{\"term_slug\":\"28973f0cc11760f5194f0f375115bb5a\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"rs-slide\",\"parent_name\":\"rs-slides\",\"node_attributes\":{\"data-key\":\"rs-28\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner2.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"907dbeff6585cfea5c5b45a6e7da3fb0\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,42;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"327b1739bdcf02881c195c26b04cb722\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,25,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,auto,714px,454px;h:auto,auto,89px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"1f75be8113554ac16a6902c13d81ed3b\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"51079d28a732c15e6a7abb2e096a3773\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:150;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"6fd2ec91fec809029dda3394c39907de\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"a\",\"parent_name\":\"rs-slide\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-8\",\"class\":\"rs-layer rev-btn amp-wp-dfa190a\",\"href\":\"https:\\/\\/calendly.com\\/tc-results\",\"target\":\"_self\",\"data-type\":\"button\",\"data-color\":\"#182647\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,2px,0;yo:480px,490px,489px,400px;\",\"data-text\":\"w:normal;s:18,17,15,20;l:50,41,50,50;fw:900,900,900,700;a:left,left,center,center;\",\"data-dim\":\"minh:0px,none,none,none;\",\"data-padding\":\"t:7,6,0,0;r:50,41,63,53;b:7,6,0,0;l:50,41,63,53;\",\"data-border\":\"bor:30px,30px,30px,30px;\",\"data-frame_0\":\"x:0,0,0px,0px;y:0,0,0px,0px;\",\"data-frame_1\":\"x:0,0,0px,0px;y:0,0,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-frame_hover\":\"c:#182647;bgc:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);bor:30px,30px,30px,30px;sp:100;e:power1.inOut;bri:120%;\",\"data-amp-original-style\":\"z-index:8;background:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);font-family:\'Raleway\';\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"1a19dd503158279d1f97ad286870f18d\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"amp-img\",\"parent_name\":\"div\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2019\\/03\\/2000px-The_Hospital_for_Sick_Children_Logo.svg_.png \",\"width\":\"310\",\"height\":\"100\",\"class\":\"amp-wp-enforced-sizes amp-wp-035b591\",\"layout\":\"intrinsic\",\"data-amp-original-style\":\"max-height: 50px;\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"b102a27293ee6465b3e25a5e44d74aa6\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"span\",\"parent_name\":\"p\",\"node_attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"062fe80a5344eb489ed5e93302040e68\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"div\",\"parent_name\":\"form\",\"node_attributes\":{\"data-amp-original-style\":\"display: none;\",\"class\":\"amp-wp-224b51a\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/contact-form-functions.php\",\"line\":105,\"function\":\"wpcf7_contact_form_tag_func\",\"shortcode\":\"contact-form-7\"}]}},{\"term_slug\":\"84e497b381cbb079db874863c5b11bd7\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"style\",\"node_attributes\":[],\"text\":\"\\r\\n\\t@font-face {\\r\\n\\t\\tfont-family: \\\"sw-icon-font\\\";\\r\\n\\t\\tsrc:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0\\\");\\r\\n\\t\\tsrc:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0#iefix\\\") format(\\\"embedded-opentype\\\"),\\r\\n\\t\\turl(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.woff?ver=4.3.0\\\") format(\\\"woff\\\"),\\r\\n\\t\\turl(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.ttf?ver=4.3.0\\\") format(\\\"truetype\\\"),\\r\\n\\t\\turl(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.svg?ver=4.3.0#1445203416\\\") format(\\\"svg\\\");\\r\\n\\t\\tfont-weight: normal;\\r\\n\\t\\tfont-style: normal;\\r\\n\\t\\tfont-display:block;\\r\\n\\t}\\r\\n\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Header_Output.php\",\"line\":69,\"function\":\"SWP_Header_Output::add_header_output\",\"hook\":\"wp_head\",\"priority\":1}]}},{\"term_slug\":\"0dba9387ee3b61c1895ca5730d0d026d\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"section\",\"parent_name\":\"div\",\"node_attributes\":{\"data-amp-original-style\":\"background-color: #121D3D;\",\"class\":\"amp-wp-61d4b04\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"3945dd509b3ef3f0c91f0c850ce6d074\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"rs-module-wrap\",\"parent_name\":\"div\",\"node_attributes\":{\"id\":\"rev_slider_7_1_wrapper\",\"data-alias\":\"slider-02-01-2022\",\"data-source\":\"gallery\",\"data-amp-original-style\":\"visibility:hidden;background:transparent;padding:0;margin:0px auto;margin-top:0;margin-bottom:0;\",\"class\":\"amp-wp-58a99c6\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"df8b37bdf772800d94026a25d5108162\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"div\",\"parent_name\":\"body\",\"node_attributes\":{\"class\":\"swp-hidden-panel-wrap amp-wp-041e5bc\",\"data-amp-original-style\":\"display: none; visibility: collapse; opacity: 0\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":254,\"function\":\"SWP_Buttons_panel_Loader::add_static_panel_fallback_footer\",\"hook\":\"wp_footer\",\"priority\":20}]}},{\"term_slug\":\"4281f21ed8dba5c268ac3796b5136911\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/embed-calendly-scheduling\\/assets\\/js\\/widget.js?ver=__normalized__\",\"id\":\"emcs_calendly_js-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"embed-calendly-scheduling\",\"file\":\"embed-calendly-scheduling.php\",\"line\":39,\"function\":\"emcs_calendly_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"emcs_calendly_js\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"emcs_calendly_js\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"ad851d2fd6457e6427554d69d5544899\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/jquery\\/jquery.min.js?ver=__normalized__\",\"id\":\"jquery-core-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"d95172fdd6b6200ab9aad6f23b20546c\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/jquery\\/jquery-migrate.min.js?ver=__normalized__\",\"id\":\"jquery-migrate-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"22a3cbf1fa1e43f7e3d9b33f00da4349\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"__ytprefs__-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var _EPYT_ = {\\\"ajaxurl\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-admin\\\\\\/admin-ajax.php\\\",\\\"security\\\":\\\"a8468eb17c\\\",\\\"gallery_scrolloffset\\\":\\\"20\\\",\\\"eppathtoscripts\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/scripts\\\\\\/\\\",\\\"eppath\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/\\\",\\\"epresponsiveselector\\\":\\\"[\\\\\\\"iframe.__youtube_prefs__\\\\\\\",\\\\\\\"iframe[src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-gallerysrc*=\'youtube.com\']\\\\\\\"]\\\",\\\"epdovol\\\":\\\"1\\\",\\\"version\\\":\\\"14.1.2\\\",\\\"evselector\\\":\\\"iframe.__youtube_prefs__[src], iframe[src*=\\\\\\\"youtube.com\\\\\\/embed\\\\\\/\\\\\\\"], iframe[src*=\\\\\\\"youtube-nocookie.com\\\\\\/embed\\\\\\/\\\\\\\"]\\\",\\\"ajax_compat\\\":\\\"\\\",\\\"ytapi_load\\\":\\\"light\\\",\\\"pause_others\\\":\\\"\\\",\\\"stopMobileBuffer\\\":\\\"1\\\",\\\"facade_mode\\\":\\\"\\\",\\\"not_live_on_channel\\\":\\\"\\\",\\\"vi_active\\\":\\\"\\\",\\\"vi_js_posttypes\\\":[]};\",\"handle\":\"__ytprefs__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var _EPYT_ = {\\\"ajaxurl\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-admin\\\\\\/admin-ajax.php\\\",\\\"security\\\":\\\"a8468eb17c\\\",\\\"gallery_scrolloffset\\\":\\\"20\\\",\\\"eppathtoscripts\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/scripts\\\\\\/\\\",\\\"eppath\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/\\\",\\\"epresponsiveselector\\\":\\\"[\\\\\\\"iframe.__youtube_prefs__\\\\\\\",\\\\\\\"iframe[src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-gallerysrc*=\'youtube.com\']\\\\\\\"]\\\",\\\"epdovol\\\":\\\"1\\\",\\\"version\\\":\\\"14.1.2\\\",\\\"evselector\\\":\\\"iframe.__youtube_prefs__[src], iframe[src*=\\\\\\\"youtube.com\\\\\\/embed\\\\\\/\\\\\\\"], iframe[src*=\\\\\\\"youtube-nocookie.com\\\\\\/embed\\\\\\/\\\\\\\"]\\\",\\\"ajax_compat\\\":\\\"\\\",\\\"ytapi_load\\\":\\\"light\\\",\\\"pause_others\\\":\\\"\\\",\\\"stopMobileBuffer\\\":\\\"1\\\",\\\"facade_mode\\\":\\\"\\\",\\\"not_live_on_channel\\\":\\\"\\\",\\\"vi_active\\\":\\\"\\\",\\\"vi_js_posttypes\\\":[]};\",\"handle\":\"__ytprefs__\"}]}},{\"term_slug\":\"38f5af99f1aa7d42f770794b2aebc370\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/scripts\\/ytprefs.min.js?ver=__normalized__\",\"id\":\"__ytprefs__-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"__ytprefs__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"__ytprefs__\"},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"60cb9e5de0de6a4012c105b98464b149\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"function setREVStartSize(e){\\n\\t\\t\\t\\/\\/window.requestAnimationFrame(function() {\\n\\t\\t\\t\\twindow.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW;\\n\\t\\t\\t\\twindow.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH;\\n\\t\\t\\t\\ttry {\\n\\t\\t\\t\\t\\tvar pw = document.getElementById(e.c).parentNode.offsetWidth,\\n\\t\\t\\t\\t\\t\\tnewh;\\n\\t\\t\\t\\t\\tpw = pw===__INT__ || isNaN(pw) || (e.l==__DOUBLE_QUOTED_STRING__ || e.layout==__DOUBLE_QUOTED_STRING__) ? window.RSIW : pw;\\n\\t\\t\\t\\t\\te.tabw = e.tabw===undefined ? __INT__ : parseInt(e.tabw);\\n\\t\\t\\t\\t\\te.thumbw = e.thumbw===undefined ? __INT__ : parseInt(e.thumbw);\\n\\t\\t\\t\\t\\te.tabh = e.tabh===undefined ? __INT__ : parseInt(e.tabh);\\n\\t\\t\\t\\t\\te.thumbh = e.thumbh===undefined ? __INT__ : parseInt(e.thumbh);\\n\\t\\t\\t\\t\\te.tabhide = e.tabhide===undefined ? __INT__ : parseInt(e.tabhide);\\n\\t\\t\\t\\t\\te.thumbhide = e.thumbhide===undefined ? __INT__ : parseInt(e.thumbhide);\\n\\t\\t\\t\\t\\te.mh = e.mh===undefined || e.mh==__DOUBLE_QUOTED_STRING__ || e.mh===__DOUBLE_QUOTED_STRING__ ? __INT__ : parseInt(e.mh,__INT__);\\n\\t\\t\\t\\t\\tif(e.layout===__DOUBLE_QUOTED_STRING__ || e.l===__DOUBLE_QUOTED_STRING__)\\n\\t\\t\\t\\t\\t\\tnewh = Math.max(e.mh,window.RSIH);\\n\\t\\t\\t\\t\\telse{\\n\\t\\t\\t\\t\\t\\te.gw = Array.isArray(e.gw) ? e.gw : [e.gw];\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===__INT__) e.gw[i] = e.gw[i__INT__];\\n\\t\\t\\t\\t\\t\\te.gh = e.el===undefined || e.el===__DOUBLE_QUOTED_STRING__ || (Array.isArray(e.el) && e.el.length==__INT__)? e.gh : e.el;\\n\\t\\t\\t\\t\\t\\te.gh = Array.isArray(e.gh) ? e.gh : [e.gh];\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===__INT__) e.gh[i] = e.gh[i__INT__];\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\tvar nl = new Array(e.rl.length),\\n\\t\\t\\t\\t\\t\\t\\tix = __INT__,\\n\\t\\t\\t\\t\\t\\t\\tsl;\\n\\t\\t\\t\\t\\t\\te.tabw = e.tabhide>=pw ? __INT__ : e.tabw;\\n\\t\\t\\t\\t\\t\\te.thumbw = e.thumbhide>=pw ? __INT__ : e.thumbw;\\n\\t\\t\\t\\t\\t\\te.tabh = e.tabhide>=pw ? __INT__ : e.tabh;\\n\\t\\t\\t\\t\\t\\te.thumbh = e.thumbhide>=pw ? __INT__ : e.thumbh;\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) nl[i] = e.rl[i]nl[i] && nl[i]>__INT__) { sl = nl[i]; ix=i;}\\n\\t\\t\\t\\t\\t\\tvar m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? __INT__ : (pw-(e.tabw+e.thumbw)) \\/ (e.gw[ix]);\\n\\t\\t\\t\\t\\t\\tnewh = (e.gh[ix] * m) + (e.tabh + e.thumbh);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\tvar el = document.getElementById(e.c);\\n\\t\\t\\t\\t\\tif (el!==null && el) el.style.height = newh+__DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\tel = document.getElementById(e.c+__DOUBLE_QUOTED_STRING__);\\n\\t\\t\\t\\t\\tif (el!==null && el) {\\n\\t\\t\\t\\t\\t\\tel.style.height = newh+__DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\t\\tel.style.display = __DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t} catch(e){\\n\\t\\t\\t\\t\\tconsole.log(__DOUBLE_QUOTED_STRING__ + e)\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\/\\/});\\n\\t\\t };\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"394a14393ccb142d4278875b36d749de\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/jquery-1.11.0.min.js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"d0f41d87dfbb44c74917aa3e7e6f4c9c\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/viewport-checker\\/dist\\/jquery.viewportchecker.min.js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"0858ec58dbe60e96b4fdf2e45aa60f95\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/typewriter.js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"3904651acb2c4c1a36bbf2eea35a01ba\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-27-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,50;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"7b5e889ea3d42183be9b55c1edcfbc2b\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-27-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,26,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,auto,681px,454px;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"aaab19a79deb4ac531da87ba40e11216\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-27-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"0aed1255823257c61057140d7bb2c87c\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-27-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"2f30b3cfc5ac886741ed7e829ea10dcb\",\"data\":{\"node_name\":\"rs-slide\",\"parent_name\":\"rs-slides\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"data-key\":\"rs-27\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner1.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"ceeebf838b1b80b0344ea4e74a224185\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-30-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,50;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,630px,443px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"2a7c3571eea257538e926d4f1017694a\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-30-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,26,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,687px,728px,454px;h:auto,auto,61px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"08d09df5d3e5e4dc0ed7cebb2bde858f\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-30-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"b1f69cd6028d56c6fcfd976ccc5f0bb5\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-30-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"ac6237c605e83296cb48c362d8f95986\",\"data\":{\"node_name\":\"rs-slide\",\"parent_name\":\"rs-slides\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"data-key\":\"rs-30\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/home4.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"abd80e162efd58f72c1290c2d1f5216a\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-29-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,50;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,846px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"8cc0d02ea3049623c89539e9e28fd6f0\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-29-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,26,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,1025px,722px,454px;h:auto,auto,89px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"50af8f4d5f21bdee419239a3567badcc\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-29-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"ad4ebac89e192f20b89a49267e72fa38\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-29-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"591ae21bed9d9edb2b6db9f01fc0cf1d\",\"data\":{\"node_name\":\"rs-slide\",\"parent_name\":\"rs-slides\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"data-key\":\"rs-29\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/home31.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"202e2f6a377113b03e5b248699e2c239\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,42;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"628624e4cdb78df8fd5d4aadc6668cc9\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,25,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,auto,714px,454px;h:auto,auto,89px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"5879dd0446a5dcdc3d415ffa1dfc0a53\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"912487ff20bb195ed59441158086f5ed\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:150;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"545094b279f4c55f91bd2a471115680e\",\"data\":{\"node_name\":\"rs-slide\",\"parent_name\":\"rs-slides\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"data-key\":\"rs-28\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner2.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"e63b409eb86607034e13f0995b45120a\",\"data\":{\"node_name\":\"rs-slides\",\"parent_name\":\"rs-module\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":[],\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"75bb11fc9ebb26f1f4b64912338d9750\",\"data\":{\"node_name\":\"rs-module\",\"parent_name\":\"rs-module-wrap\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"rev_slider_7_1\",\"data-version\":\"6.5.23\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"50aa68c36e299f37c43660ce1c8e7b18\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"rs-module-wrap\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n\\t\\t\\t\\t\\tsetREVStartSize({c: __SINGLE_QUOTED_STRING__,rl:[__INT__,__INT__,__INT__,__INT__],el:[__INT__,__INT__,__INT__,__INT__],gw:[__INT__,__INT__,__INT__,__INT__],gh:[__INT__,__INT__,__INT__,__INT__],type:__SINGLE_QUOTED_STRING__,justify:__SINGLE_QUOTED_STRING__,layout:__SINGLE_QUOTED_STRING__,mh:__DOUBLE_QUOTED_STRING__});if (window.RS_MODULES!==undefined && window.RS_MODULES.modules!==undefined && window.RS_MODULES.modules[__DOUBLE_QUOTED_STRING__]!==undefined) {window.RS_MODULES.modules[__DOUBLE_QUOTED_STRING__].once = false;window.revapi7 = undefined;if (window.RS_MODULES.checkMinimal!==undefined) window.RS_MODULES.checkMinimal()}\\n\\t\\t\\t\\t\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"e47c6c22bfca9bbab0c46ce97914d209\",\"data\":{\"node_name\":\"rs-module-wrap\",\"parent_name\":\"div\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"rev_slider_7_1_wrapper\",\"data-alias\":\"slider-02-01-2022\",\"data-source\":\"gallery\",\"data-amp-original-style\":\"visibility:hidden;background:transparent;padding:0;margin:0px auto;margin-top:0;margin-bottom:0;\",\"class\":\"amp-wp-58a99c6\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"dd4ea0d50e6331de5a89561bfe24ffca\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"div\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\r\\n $(document).ready(function() {\\r\\n if (window.screen.availWidth >= __INT__) {\\r\\n console.log(__SINGLE_QUOTED_STRING__, window.screen.availWidth)\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n } else {\\r\\n console.log(__SINGLE_QUOTED_STRING__, window.screen.availWidth)\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n }\\r\\n })\\r\\n\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"2d27220cfea15653af76d8312c3dd31f\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"id\":\"headingOne\",\"class\":\"cp-services__box--column\",\"type\":\"button\",\"data-toggle\":\"collapse\",\"data-target\":\"#collapseOne\",\"aria-expanded\":\"true\",\"aria-controls\":\"collapseOne\"},\"node_name\":\"type\",\"parent_name\":\"div\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"3b0ee603f3aa83553e1574a2a66dc58b\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"id\":\"headingTwo\",\"class\":\"cp-services__box--column\",\"type\":\"button\",\"data-toggle\":\"collapse\",\"data-target\":\"#collapseTwo\",\"aria-expanded\":\"false\",\"aria-controls\":\"collapseTwo\"},\"node_name\":\"type\",\"parent_name\":\"div\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"39bd6c29d1862a73d9d5efe977c98dc7\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"id\":\"headingThree\",\"class\":\"cp-services__box--column\",\"type\":\"button\",\"data-toggle\":\"collapse\",\"data-target\":\"#collapseThree\",\"aria-expanded\":\"false\",\"aria-controls\":\"collapseThree\"},\"node_name\":\"type\",\"parent_name\":\"div\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"63bca055743ddac99d793e2ad9520292\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/06\\/gotoloans.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"143\",\"height\":\"37\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"b0deb28a473276707cdc63f576ff7a32\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/06\\/gotoloans.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"143\",\"height\":\"37\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"b4f0efc7236126de4f46ae929436c3f9\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/blackbook.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"227\",\"height\":\"31\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"7d1496ce660ac21d39094ec8c969dc90\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/blackbook.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"227\",\"height\":\"31\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"358c370403358aaf8d16beaee1ce222e\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/volentix3.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"96\",\"height\":\"96\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"e1aec95a897868f7c1f258d1a009dc43\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/volentix3.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"96\",\"height\":\"96\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"073590543cb1c4f8ce2d56d4300475b1\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/uhn.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"108\",\"height\":\"32\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"2808956575f8ac30a93a8d5693af02a7\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/uhn.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"108\",\"height\":\"32\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"63bca055743ddac99d793e2ad9520292\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/06\\/gotoloans.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"143\",\"height\":\"37\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"b0deb28a473276707cdc63f576ff7a32\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/06\\/gotoloans.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"143\",\"height\":\"37\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"b4f0efc7236126de4f46ae929436c3f9\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/blackbook.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"227\",\"height\":\"31\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"7d1496ce660ac21d39094ec8c969dc90\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/blackbook.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"227\",\"height\":\"31\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"8fc491d10cf3d4f353141f2c85b9641f\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2019\\/03\\/2000px-The_Hospital_for_Sick_Children_Logo.svg_.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"310\",\"height\":\"100\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"1998a41cc20254f3fbedcfad6f4353c5\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2019\\/03\\/2000px-The_Hospital_for_Sick_Children_Logo.svg_.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"310\",\"height\":\"100\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"6c4c478544820da9cdf0cdeba3b91ab5\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/logo-nuc_notag.jpg\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"280\",\"height\":\"89\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"e03c25c8ba975c77e0c366bf30a5bd38\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/logo-nuc_notag.jpg\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"280\",\"height\":\"89\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"358c370403358aaf8d16beaee1ce222e\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/volentix3.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"96\",\"height\":\"96\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"e1aec95a897868f7c1f258d1a009dc43\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/volentix3.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"96\",\"height\":\"96\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"68b2b21a33a01e0e112230069b0192f7\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n\\t\\t\\twindow.RS_MODULES = window.RS_MODULES || {};\\n\\t\\t\\twindow.RS_MODULES.modules = window.RS_MODULES.modules || {};\\n\\t\\t\\twindow.RS_MODULES.waiting = window.RS_MODULES.waiting || [];\\n\\t\\t\\twindow.RS_MODULES.defered = true;\\n\\t\\t\\twindow.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {};\\n\\t\\t\\twindow.RS_MODULES.type = __SINGLE_QUOTED_STRING__;\\n\\t\\t\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":229,\"function\":\"RevSliderFront::add_waiting_script\",\"hook\":\"wp_footer\",\"priority\":1}]}},{\"term_slug\":\"07f331d5771ab8204fd812e9bd91d3ea\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n\\t\\tif(typeof revslider_showDoubleJqueryError === __DOUBLE_QUOTED_STRING__) {function revslider_showDoubleJqueryError(sliderID) {console.log(__DOUBLE_QUOTED_STRING__);console.log(__DOUBLE_QUOTED_STRING__);console.log(__DOUBLE_QUOTED_STRING__);console.log(__DOUBLE_QUOTED_STRING__);return __DOUBLE_QUOTED_STRING__;}}\\n\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"includes\\/output.class.php\",\"line\":7058,\"function\":\"RevSliderOutput::add_inline_double_jquery_error\",\"hook\":\"wp_footer\",\"priority\":10}]}},{\"term_slug\":\"a198fa0278eff5b1007238f21a844cb8\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/dist\\/vendor\\/regenerator-runtime.min.js?ver=__normalized__\",\"id\":\"regenerator-runtime-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":549,\"function\":\"wp_default_packages\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":549,\"function\":\"wp_default_packages\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"29c76d030187be64189aa8a62c361d19\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill.min.js?ver=__normalized__\",\"id\":\"wp-polyfill-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":549,\"function\":\"wp_default_packages\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"6fc0da9f0d23eae8410103820c7c1c5c\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"contact-form-7-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7 = {\\\"api\\\":{\\\"root\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-json\\\\\\/\\\",\\\"namespace\\\":\\\"contact-form-7\\\\\\/v1\\\"}};\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7 = {\\\"api\\\":{\\\"root\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-json\\\\\\/\\\",\\\"namespace\\\":\\\"contact-form-7\\\\\\/v1\\\"}};\",\"handle\":\"contact-form-7\"}]}},{\"term_slug\":\"6b7e94cb0640140eccfeb0c6d126d3fa\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/js\\/index.js?ver=__normalized__\",\"id\":\"contact-form-7-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"455e0d79375d5c0e7bb2fe24f4408fe7\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/js\\/rbtools.min.js?ver=__normalized__\",\"defer\":\"defer\",\"async\":\"\",\"id\":\"tp-tools-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"tp-tools\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"tp-tools\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"9d2fbb97c2aba76b5c2e11048abcd7a3\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/js\\/rs6.min.js?ver=__normalized__\",\"defer\":\"defer\",\"async\":\"\",\"id\":\"revmin-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"revmin\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"revmin\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"0d54ab34f1393ff50a990bcd43ac9b89\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/www.google.com\\/recaptcha\\/api.js?render=6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s&ver=__normalized__\",\"id\":\"google-recaptcha-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"google-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"google-recaptcha\"},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"google-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"google-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"fffd38e1e2b741ded941b11c8bcee8e2\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"wpcf7-recaptcha-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7_recaptcha = {\\\"sitekey\\\":\\\"6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s\\\",\\\"actions\\\":{\\\"homepage\\\":\\\"homepage\\\",\\\"contactform\\\":\\\"contactform\\\"}};\",\"handle\":\"wpcf7-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7_recaptcha = {\\\"sitekey\\\":\\\"6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s\\\",\\\"actions\\\":{\\\"homepage\\\":\\\"homepage\\\",\\\"contactform\\\":\\\"contactform\\\"}};\",\"handle\":\"wpcf7-recaptcha\"}]}},{\"term_slug\":\"8a7fe833154a0ee7052f4d4fc864ab44\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/modules\\/recaptcha\\/index.js?ver=__normalized__\",\"id\":\"wpcf7-recaptcha-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"b700eea7e3e60850ee69274a67ef5ead\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/scripts\\/fitvids.min.js?ver=__normalized__\",\"id\":\"__ytprefsfitvids__-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"d9c993ebac688f060c8b7b4c18f2346f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"id\":\"rs-initialisation-scripts\"},\"text\":\"\\n\\t\\tvar\\ttpj = jQuery;\\n\\n\\t\\tvar\\trevapi7;\\n\\n\\t\\tif(window.RS_MODULES === undefined) window.RS_MODULES = {};\\n\\t\\tif(RS_MODULES.modules === undefined) RS_MODULES.modules = {};\\n\\t\\tRS_MODULES.modules[__DOUBLE_QUOTED_STRING__] = {once: RS_MODULES.modules[__DOUBLE_QUOTED_STRING__]!==undefined ? RS_MODULES.modules[__DOUBLE_QUOTED_STRING__].once : undefined, init:function() {\\n\\t\\t\\twindow.revapi7 = window.revapi7===undefined || window.revapi7===null || window.revapi7.length===__INT__ ? document.getElementById(__DOUBLE_QUOTED_STRING__) : window.revapi7;\\n\\t\\t\\tif(window.revapi7 === null || window.revapi7 === undefined || window.revapi7.length==__INT__) { window.revapi7initTry = window.revapi7initTry ===undefined ? __INT__ : window.revapi7initTry+__INT__; if (window.revapi7initTry<__INT__) requestAnimationFrame(function() {RS_MODULES.modules[__DOUBLE_QUOTED_STRING__].init()}); return;}\\n\\t\\t\\twindow.revapi7 = jQuery(window.revapi7);\\n\\t\\t\\tif(window.revapi7.revolution==undefined){ revslider_showDoubleJqueryError(__DOUBLE_QUOTED_STRING__); return;}\\n\\t\\t\\trevapi7.revolutionInit({\\n\\t\\t\\t\\t\\trevapi:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tDPR:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tsliderLayout:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tvisibilityLevels:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tgridwidth:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tgridheight:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tlazyType:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tperspective:__INT__,\\n\\t\\t\\t\\t\\tperspectiveType:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\teditorheight:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tresponsiveLevels:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tprogressBar:{disableProgressBar:true},\\n\\t\\t\\t\\t\\tnavigation: {\\n\\t\\t\\t\\t\\t\\twheelCallDelay:__INT__,\\n\\t\\t\\t\\t\\t\\ttouch: {\\n\\t\\t\\t\\t\\t\\t\\ttouchenabled:true,\\n\\t\\t\\t\\t\\t\\t\\ttouchOnDesktop:true\\n\\t\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\t\\tarrows: {\\n\\t\\t\\t\\t\\t\\t\\tenable:true,\\n\\t\\t\\t\\t\\t\\t\\tstyle:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\tleft: {\\n\\t\\t\\t\\t\\t\\t\\t\\th_align:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\t\\tv_align:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\t\\th_offset:__INT__,\\n\\t\\t\\t\\t\\t\\t\\t\\tv_offset:__INT__\\n\\t\\t\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\t\\t\\tright: {\\n\\t\\t\\t\\t\\t\\t\\t\\tanim:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\t\\th_align:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\t\\tv_align:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\t\\th_offset:__INT__,\\n\\t\\t\\t\\t\\t\\t\\t\\tv_offset:__INT__\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\t\\tbullets: {\\n\\t\\t\\t\\t\\t\\t\\tenable:true,\\n\\t\\t\\t\\t\\t\\t\\ttmp:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\tstyle:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\tv_offset:__INT__\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\tviewPort: {\\n\\t\\t\\t\\t\\t\\tglobal:true,\\n\\t\\t\\t\\t\\t\\tglobalDist:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\tenable:false\\n\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\tfallbacks: {\\n\\t\\t\\t\\t\\t\\tallowHTML5AutoPlayOnAndroid:true\\n\\t\\t\\t\\t\\t},\\n\\t\\t\\t});\\n\\t\\t\\t\\n\\t\\t}} \\/\\/ End of RevInitScript\\n\\n\\t\\tif (window.RS_MODULES.checkMinimal!==undefined) { window.RS_MODULES.checkMinimal();};\\n\\t\",\"node_type\":1,\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":162,\"function\":\"RevSliderFront::add_inline_js\",\"hook\":\"wp_print_footer_scripts\",\"priority\":100}]}},{\"term_slug\":\"e95a68c301f2a3e94af3ab60d1e49223\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/popper.js\\/1.14.3\\/umd\\/popper.min.js\",\"integrity\":\"sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK\\/l8WvCWPIPm49\",\"crossorigin\":\"anonymous\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"dbdfe8cccebe34ff7041e208736a7942\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/stackpath.bootstrapcdn.com\\/bootstrap\\/4.1.3\\/js\\/bootstrap.min.js\",\"integrity\":\"sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW\\/JmZQ5stwEULTy\",\"crossorigin\":\"anonymous\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"7120b7b6f6e5e34eaab178a0de4148ac\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/validation\\/validate.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"dab16e046124505937d40d90a371de48\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"\\/\\/ajax.aspnetcdn.com\\/ajax\\/jquery.validate\\/1.11.1\\/jquery.validate.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"67c9c739d09cfdaf1697c37a00630a3d\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"\\/\\/ajax.microsoft.com\\/ajax\\/jquery.validate\\/1.11.1\\/additional-methods.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9ca7e7b07112fab0f2659963d081c647\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/validation\\/masks.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e2c5b7b289252d89a64585273c024ec4\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/js\\/owl.carousel.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"ef932f7d78102026336c4df6b9e8ff91\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/fancybox\\/jquery.fancybox.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"54f0b92713a27edb9d4a223c245ad681\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/typewriter-effect\\/dist\\/core.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"308a2319835188db90cf07f966466146\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/vivus@latest\\/dist\\/vivus.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d63eeee74cd3bfbc3da018462afd7b3f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/main.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"285f76a33582e621571d8109572b729f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/client-testimonial\\/client-testimonial.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"30ecfff784f957bc89bf72081232cb3b\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/cloud-native\\/cloud-native.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"c1becf0684470267fde5176dfd043567\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-process\\/our-process.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"de5df74cbbe78f3f4a0610587a35e184\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/services\\/services.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d9fea8205636ef843e6b598ace10ec9f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-clients\\/our-clients.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"22e139cf096a29785f5e03c3cdf7b16d\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b2a1b5e6c3786b7700a4fcb53b4481f1\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"src\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/slick-carousel@1.8.1\\/slick\\/slick.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b2badd021972c22702da7e27c5d6a2c0\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/aos@2.3.1\\/dist\\/aos.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d3db2d0fa38d97f62aac99a855396e59\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(document).ready(function() {\\n\\n$(__SINGLE_QUOTED_STRING__).click(function() {\\n$(__SINGLE_QUOTED_STRING__).slideToggle(__DOUBLE_QUOTED_STRING__);\\n});\\n\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: false,\\ninfinite: false,\\narrows: false,\\nspeed: __INT__,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\nresponsive: [\\n{\\nbreakpoint: __INT__,\\nsettings: {\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__\\n}\\n},\\n{\\nbreakpoint: __INT__,\\nsettings: {\\nslidesToShow: __FLOAT__,\\nslidesToScroll: __INT__\\n}\\n}\\n]\\n});\\nif($(window).width()<__INT__){\\nconst slider1 = $(__SINGLE_QUOTED_STRING__);\\nfunction onSliderAfterChange(event, slick, currentSlide) {\\n$(event.target).data(__SINGLE_QUOTED_STRING__, currentSlide);\\n}\\nfunction onSliderWheel(e) {\\nvar deltaY = e.originalEvent.deltaY,\\n $currentSlider = $(e.currentTarget),\\n currentSlickIndex = $currentSlider.data(__SINGLE_QUOTED_STRING__) || __INT__;\\nif (\\n (deltaY < __INT__ && currentSlickIndex == __INT__) ||\\n (deltaY > __INT__ && currentSlickIndex == $currentSlider.data(__SINGLE_QUOTED_STRING__) - __INT__)\\n) {\\n return;\\n}\\n\\ne.preventDefault();\\n\\nif (e.originalEvent.deltaY < __INT__) {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n} else {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n}\\n}\\n\\nslider1.each(function(index, element) {\\nvar $element = $(element);\\n$element.data(__SINGLE_QUOTED_STRING__, $element.children().length);\\n})\\n.slick({\\nresponsive: [\\n {\\n breakpoint: __INT__,\\n settings: __DOUBLE_QUOTED_STRING__\\n },\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n dots: true,\\n vertical: true,\\n verticalSwiping: true,\\n verticalSwiping: true,\\n infinite: false,\\n }\\n }\\n]\\n})\\n.on(__SINGLE_QUOTED_STRING__, onSliderAfterChange)\\n.on(__SINGLE_QUOTED_STRING__, onSliderWheel);\\n}\\nif($(window).width()<__INT__ && $()){\\nconst slider = $(__SINGLE_QUOTED_STRING__);\\nfunction onSliderAfterChange(event, slick, currentSlide) {\\n$(event.target).data(__SINGLE_QUOTED_STRING__, currentSlide);\\n}\\nfunction onSliderWheel(e) {\\nvar deltaY = e.originalEvent.deltaY,\\n $currentSlider = $(e.currentTarget),\\n currentSlickIndex = $currentSlider.data(__SINGLE_QUOTED_STRING__) || __INT__;\\nif (\\n (deltaY < __INT__ && currentSlickIndex == __INT__) ||\\n (deltaY > __INT__ && currentSlickIndex == $currentSlider.data(__SINGLE_QUOTED_STRING__) - __INT__)\\n) {\\n return;\\n}\\n\\ne.preventDefault();\\n\\nif (e.originalEvent.deltaY < __INT__) {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n} else {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n}\\n}\\n\\nslider.each(function(index, element) {\\nvar $element = $(element);\\n$element.data(__SINGLE_QUOTED_STRING__, $element.children().length);\\n})\\n.slick({\\nresponsive: [\\n {\\n breakpoint: __INT__,\\n settings: __DOUBLE_QUOTED_STRING__\\n },\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n dots: true,\\n vertical: true,\\n verticalSwiping: true,\\n verticalSwiping: true,\\n infinite: false,\\n }\\n }\\n]\\n})\\n.on(__SINGLE_QUOTED_STRING__, onSliderAfterChange)\\n.on(__SINGLE_QUOTED_STRING__, onSliderWheel);\\n}\\n\\nsetTimeout(function () {\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: true,\\narrows: true,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\ninfinite: false,\\nfade: true,\\nprevArrow:__DOUBLE_QUOTED_STRING__,\\nnextArrow:__DOUBLE_QUOTED_STRING__\\n});\\n\\n}, __INT__);\\n\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: false,\\ninfinite: false,\\narrows: false,\\nspeed: __INT__,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\nprevArrow:__DOUBLE_QUOTED_STRING__,\\nnextArrow:__DOUBLE_QUOTED_STRING__,\\nresponsive: [\\n{\\nbreakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: true,\\n\\n }\\n},\\n{\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: true,\\n }\\n}\\n]\\n});\\n\\n\\n\\n\\n\\n\\/\\/ jQuery(__DOUBLE_QUOTED_STRING__).click(()=>{\\n\\/\\/ jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n\\/\\/ })\\n});\\n\\n$(window).on(__DOUBLE_QUOTED_STRING__, function(e){\\nvar windowWidth = $(window).width();\\nif(windowWidth < __INT__){\\n $(__SINGLE_QUOTED_STRING__).slick({\\n dots: false,\\n arrows: false,\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n infinite: false,\\n responsive: [\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __FLOAT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n }\\n }\\n ]\\n });\\n\\n}else{\\n $(__SINGLE_QUOTED_STRING__).slick(__SINGLE_QUOTED_STRING__);\\n}\\n\\n}) \\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"46a6e66b9caf788b688275cac7a26bb5\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\nsetTimeout(() => {\\n $(__DOUBLE_QUOTED_STRING__).attr(__SINGLE_QUOTED_STRING__, __SINGLE_QUOTED_STRING__);\\n}, __INT__);\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"2c372ecf7923e7043aa08b5735b0e957\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n $(__SINGLE_QUOTED_STRING__).click(function(){\\n $(__SINGLE_QUOTED_STRING__).toggleClass(__SINGLE_QUOTED_STRING__);\\n });\\n\\n $(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(__DOUBLE_QUOTED_STRING__).click(function(){\\n jQuery(this).siblings(__DOUBLE_QUOTED_STRING__).slideToggle();\\n jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n console.log(__DOUBLE_QUOTED_STRING__)\\n if (jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).is(__DOUBLE_QUOTED_STRING__)) {\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).slideUp();\\n jQuery(this).siblings(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n }\\n })\\n }\\n \\njQuery(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n});\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"12562413cb77cf11c8ec1b1270ffeca2\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){ \\n $(__DOUBLE_QUOTED_STRING__).slideUp()\\n $(__DOUBLE_QUOTED_STRING__).slideDown()\\n $(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__)\\n jQuery(__DOUBLE_QUOTED_STRING__).click(function(){\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).slideToggle();\\n jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n if (jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).is(__DOUBLE_QUOTED_STRING__)) {\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).slideUp();\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n }\\n }); \\n var numRows = $(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__).length;\\nvar SHOWN = __INT__;\\nvar MORE = __INT__;\\n\\n\\/* get how many more can be shown *\\/\\nvar getNumMore = function(ns) {\\n var more = MORE;\\n var leftOver = numRows - ns;\\n if ((leftOver) < more) {\\n more = leftOver;\\n }\\n return more;\\n}\\n\\/* how many are shown *\\/\\nvar getInitialNumShown = function() {\\n var shown = SHOWN;\\n if (numRows < shown) {\\n shown = numRows;\\n }\\n return shown;\\n}\\n\\/* set how many are initially shown *\\/\\nvar numShown = getInitialNumShown();\\n\\n\\/* set the numMore if less than __INT__ *\\/\\nvar numMore = getNumMore(numShown);\\n\\n\\/* set more html *\\/\\nif (numMore > __INT__) {\\nvar more_html = __SINGLE_QUOTED_STRING__;\\n$(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__ + (numShown - __INT__) + __SINGLE_QUOTED_STRING__).hide().end().after(more_html);\\n}\\n$(__SINGLE_QUOTED_STRING__).click(function() {\\n\\/* determine how much more we should update *\\/\\nnumMore = getNumMore(numShown);\\n\\/* update num shown *\\/\\nnumShown = numShown + numMore;\\n$(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__ + numShown + __SINGLE_QUOTED_STRING__).show();\\n\\n\\/* determine if to show more and how much left over *\\/\\nnumMore = getNumMore(numShown);\\nif (numMore > __INT__) {\\n $(__SINGLE_QUOTED_STRING__).html(numMore);\\n} else {\\n $(__SINGLE_QUOTED_STRING__).remove();\\n}\\n}); \\n }\\n})\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b018faa0938622cc9d86adc1c5b500ae\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n $(__DOUBLE_QUOTED_STRING__).click(function() {\\n $(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).slideUp();\\n if (!$(this).next().is(__DOUBLE_QUOTED_STRING__)) {\\n $(this).next().slideDown();\\n $(this).addClass(__DOUBLE_QUOTED_STRING__);\\n }\\n })\\n }\\n jQuery(__SINGLE_QUOTED_STRING__).trigger(__SINGLE_QUOTED_STRING__);\\n });\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"6563f33063a8fda3041e500a21a4f19f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n $(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n \\n }\\n \\n \\n });\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9564124c6f316693f9a84b1137b0cba7\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n $(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n spaceBetween: __INT__,\\n longSwipesRatio: __FLOAT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n });\\n \\n }\\n \\n \\n });\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"561f494215f84bac2f890b40eb75db0a\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(document).ready(function() {\\n jQuery(__SINGLE_QUOTED_STRING__).trigger(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).click(function (e) {\\n e.preventDefault();\\n var popId = jQuery(this).attr(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n jQuery(popId).addClass(__SINGLE_QUOTED_STRING__);\\n })\\n});\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"82eea9842ad50c4a8eddf3aa2f5897e3\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n $(__SINGLE_QUOTED_STRING__).on(__SINGLE_QUOTED_STRING__, function(evt) {\\n evt.preventDefault();\\n \\/\\/ $(this).toggleClass(__SINGLE_QUOTED_STRING__);\\n $(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n $(this).addClass(__SINGLE_QUOTED_STRING__);\\n var sel = this.getAttribute(__SINGLE_QUOTED_STRING__);\\n $(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__).filter(sel).addClass(__SINGLE_QUOTED_STRING__);\\n });\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"22e51996b5d317a78d80c2948b527a9d\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/landing-page.js\"},\"node_type\":1,\"sources\":[]}}]','https://translucent.mesoishop.com/','','publish','closed','closed','','6ed0a7ca22bcdd80390fed931f47d7bf','','','2022-09-13 04:44:08','2022-09-13 08:44:08','',0,'https://translucent.mesoishop.com/amp_validated_url/6ed0a7ca22bcdd80390fed931f47d7bf/',0,'amp_validated_url','',0),(4798,21,'2022-09-13 04:44:19','2022-09-13 08:44:19','[{\"term_slug\":\"3b8bc37eb3ca95929f7270d722792be5\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/shared.css?v=2138898239\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"74383adda30d63a82e52f5fb1bd448fe\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/styles.css\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"c683711a32c941e886a2bff9cd5d9c49\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/css\\/owl.carousel.css\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"754f2bd220d369a2310b0727edf58c57\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"contact-form-7-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/css\\/styles.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"17e920edc403db5a65f76c4be11cbd90\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"social_warfare-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/css\\/style.min.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Script.php\",\"line\":94,\"function\":\"SWP_Script::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"b2b05336e9d16428fe4d70031a73afc4\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"rs-plugin-settings-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/rs6.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":134,\"function\":\"RevSliderFront::add_inline_css\",\"hook\":\"wp_footer\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"rs-plugin-settings\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"698ed8c3c1252be738d6986e0c37c3cf\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"emcs_calendly_css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/embed-calendly-scheduling\\/assets\\/css\\/widget.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"embed-calendly-scheduling\",\"file\":\"embed-calendly-scheduling.php\",\"line\":39,\"function\":\"emcs_calendly_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"157c13b55df6d419a7a4a7c952b848f6\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1020,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2261,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"6d4404ba5312e7463b373a66c2eda446\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/css\\/all.min.css\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"a845e1e06b53116c205bceaff1516022\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.css\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"0ad7242b71b7e1675d4323aa70985997\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"style\",\"node_attributes\":{\"type\":\"text\\/css\",\"id\":\"wp-custom-css\"},\"text\":\"\\n\\t\\t\\t\\n.tek-ai {\\n\\theight: auto;\\n}\\n\\n.tek-ai img {\\n\\theight: auto !important;\\n\\tmax-height: 570px;\\n}\\n\\n@media (max-width:992px) {\\n .tek-ai {\\n \\theight: auto;\\n\\t\\ttext-align: center !important;\\n\\t}\\n}\\n\\n@media (min-width: 1400px) {\\n .tek-ai {\\n \\theight: auto;\\n\\t}\\n}\\n\\n.footer-2022__menu--list.footer_links:nth-child(4) {\\n display: none;\\n}\\n\\n\\t\\t\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"theme.php\",\"line\":1824,\"function\":\"wp_custom_css_cb\",\"hook\":\"wp_head\",\"priority\":101}]}},{\"term_slug\":\"23b6b9c56b1db07e4393c6bc7d02ba95\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"div\",\"parent_name\":\"div\",\"node_attributes\":{\"class\":\"col-lg-6 blog-title-main amp-wp-7597b7e\",\"data-amp-original-style\":\"background-image: url(\'https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2020\\/01\\/blogimg.jpg\')\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"84e497b381cbb079db874863c5b11bd7\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"style\",\"node_attributes\":[],\"text\":\"\\r\\n\\t@font-face {\\r\\n\\t\\tfont-family: \\\"sw-icon-font\\\";\\r\\n\\t\\tsrc:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0\\\");\\r\\n\\t\\tsrc:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0#iefix\\\") format(\\\"embedded-opentype\\\"),\\r\\n\\t\\turl(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.woff?ver=4.3.0\\\") format(\\\"woff\\\"),\\r\\n\\t\\turl(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.ttf?ver=4.3.0\\\") format(\\\"truetype\\\"),\\r\\n\\t\\turl(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.svg?ver=4.3.0#1445203416\\\") format(\\\"svg\\\");\\r\\n\\t\\tfont-weight: normal;\\r\\n\\t\\tfont-style: normal;\\r\\n\\t\\tfont-display:block;\\r\\n\\t}\\r\\n\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Header_Output.php\",\"line\":69,\"function\":\"SWP_Header_Output::add_header_output\",\"hook\":\"wp_head\",\"priority\":1}]}},{\"term_slug\":\"9bc4b078f5f0e9eaab12cf1127980410\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"div\",\"parent_name\":\"div\",\"node_attributes\":{\"class\":\"col-lg-6 blog-main amp-wp-946752b\",\"data-amp-original-style\":\"background-image: url(\'https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2022\\/06\\/How-Translucent-is-changing-the-Cloud-Native-industry.png\');\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"4281f21ed8dba5c268ac3796b5136911\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/embed-calendly-scheduling\\/assets\\/js\\/widget.js?ver=__normalized__\",\"id\":\"emcs_calendly_js-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"embed-calendly-scheduling\",\"file\":\"embed-calendly-scheduling.php\",\"line\":39,\"function\":\"emcs_calendly_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"emcs_calendly_js\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"emcs_calendly_js\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"ad851d2fd6457e6427554d69d5544899\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/jquery\\/jquery.min.js?ver=__normalized__\",\"id\":\"jquery-core-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"d95172fdd6b6200ab9aad6f23b20546c\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/jquery\\/jquery-migrate.min.js?ver=__normalized__\",\"id\":\"jquery-migrate-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"22a3cbf1fa1e43f7e3d9b33f00da4349\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"__ytprefs__-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var _EPYT_ = {\\\"ajaxurl\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-admin\\\\\\/admin-ajax.php\\\",\\\"security\\\":\\\"a8468eb17c\\\",\\\"gallery_scrolloffset\\\":\\\"20\\\",\\\"eppathtoscripts\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/scripts\\\\\\/\\\",\\\"eppath\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/\\\",\\\"epresponsiveselector\\\":\\\"[\\\\\\\"iframe.__youtube_prefs__\\\\\\\",\\\\\\\"iframe[src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-gallerysrc*=\'youtube.com\']\\\\\\\"]\\\",\\\"epdovol\\\":\\\"1\\\",\\\"version\\\":\\\"14.1.2\\\",\\\"evselector\\\":\\\"iframe.__youtube_prefs__[src], iframe[src*=\\\\\\\"youtube.com\\\\\\/embed\\\\\\/\\\\\\\"], iframe[src*=\\\\\\\"youtube-nocookie.com\\\\\\/embed\\\\\\/\\\\\\\"]\\\",\\\"ajax_compat\\\":\\\"\\\",\\\"ytapi_load\\\":\\\"light\\\",\\\"pause_others\\\":\\\"\\\",\\\"stopMobileBuffer\\\":\\\"1\\\",\\\"facade_mode\\\":\\\"\\\",\\\"not_live_on_channel\\\":\\\"\\\",\\\"vi_active\\\":\\\"\\\",\\\"vi_js_posttypes\\\":[]};\",\"handle\":\"__ytprefs__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var _EPYT_ = {\\\"ajaxurl\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-admin\\\\\\/admin-ajax.php\\\",\\\"security\\\":\\\"a8468eb17c\\\",\\\"gallery_scrolloffset\\\":\\\"20\\\",\\\"eppathtoscripts\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/scripts\\\\\\/\\\",\\\"eppath\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/\\\",\\\"epresponsiveselector\\\":\\\"[\\\\\\\"iframe.__youtube_prefs__\\\\\\\",\\\\\\\"iframe[src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-gallerysrc*=\'youtube.com\']\\\\\\\"]\\\",\\\"epdovol\\\":\\\"1\\\",\\\"version\\\":\\\"14.1.2\\\",\\\"evselector\\\":\\\"iframe.__youtube_prefs__[src], iframe[src*=\\\\\\\"youtube.com\\\\\\/embed\\\\\\/\\\\\\\"], iframe[src*=\\\\\\\"youtube-nocookie.com\\\\\\/embed\\\\\\/\\\\\\\"]\\\",\\\"ajax_compat\\\":\\\"\\\",\\\"ytapi_load\\\":\\\"light\\\",\\\"pause_others\\\":\\\"\\\",\\\"stopMobileBuffer\\\":\\\"1\\\",\\\"facade_mode\\\":\\\"\\\",\\\"not_live_on_channel\\\":\\\"\\\",\\\"vi_active\\\":\\\"\\\",\\\"vi_js_posttypes\\\":[]};\",\"handle\":\"__ytprefs__\"}]}},{\"term_slug\":\"38f5af99f1aa7d42f770794b2aebc370\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/scripts\\/ytprefs.min.js?ver=__normalized__\",\"id\":\"__ytprefs__-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"__ytprefs__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"__ytprefs__\"},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"60cb9e5de0de6a4012c105b98464b149\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"function setREVStartSize(e){\\n\\t\\t\\t\\/\\/window.requestAnimationFrame(function() {\\n\\t\\t\\t\\twindow.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW;\\n\\t\\t\\t\\twindow.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH;\\n\\t\\t\\t\\ttry {\\n\\t\\t\\t\\t\\tvar pw = document.getElementById(e.c).parentNode.offsetWidth,\\n\\t\\t\\t\\t\\t\\tnewh;\\n\\t\\t\\t\\t\\tpw = pw===__INT__ || isNaN(pw) || (e.l==__DOUBLE_QUOTED_STRING__ || e.layout==__DOUBLE_QUOTED_STRING__) ? window.RSIW : pw;\\n\\t\\t\\t\\t\\te.tabw = e.tabw===undefined ? __INT__ : parseInt(e.tabw);\\n\\t\\t\\t\\t\\te.thumbw = e.thumbw===undefined ? __INT__ : parseInt(e.thumbw);\\n\\t\\t\\t\\t\\te.tabh = e.tabh===undefined ? __INT__ : parseInt(e.tabh);\\n\\t\\t\\t\\t\\te.thumbh = e.thumbh===undefined ? __INT__ : parseInt(e.thumbh);\\n\\t\\t\\t\\t\\te.tabhide = e.tabhide===undefined ? __INT__ : parseInt(e.tabhide);\\n\\t\\t\\t\\t\\te.thumbhide = e.thumbhide===undefined ? __INT__ : parseInt(e.thumbhide);\\n\\t\\t\\t\\t\\te.mh = e.mh===undefined || e.mh==__DOUBLE_QUOTED_STRING__ || e.mh===__DOUBLE_QUOTED_STRING__ ? __INT__ : parseInt(e.mh,__INT__);\\n\\t\\t\\t\\t\\tif(e.layout===__DOUBLE_QUOTED_STRING__ || e.l===__DOUBLE_QUOTED_STRING__)\\n\\t\\t\\t\\t\\t\\tnewh = Math.max(e.mh,window.RSIH);\\n\\t\\t\\t\\t\\telse{\\n\\t\\t\\t\\t\\t\\te.gw = Array.isArray(e.gw) ? e.gw : [e.gw];\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===__INT__) e.gw[i] = e.gw[i__INT__];\\n\\t\\t\\t\\t\\t\\te.gh = e.el===undefined || e.el===__DOUBLE_QUOTED_STRING__ || (Array.isArray(e.el) && e.el.length==__INT__)? e.gh : e.el;\\n\\t\\t\\t\\t\\t\\te.gh = Array.isArray(e.gh) ? e.gh : [e.gh];\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===__INT__) e.gh[i] = e.gh[i__INT__];\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\tvar nl = new Array(e.rl.length),\\n\\t\\t\\t\\t\\t\\t\\tix = __INT__,\\n\\t\\t\\t\\t\\t\\t\\tsl;\\n\\t\\t\\t\\t\\t\\te.tabw = e.tabhide>=pw ? __INT__ : e.tabw;\\n\\t\\t\\t\\t\\t\\te.thumbw = e.thumbhide>=pw ? __INT__ : e.thumbw;\\n\\t\\t\\t\\t\\t\\te.tabh = e.tabhide>=pw ? __INT__ : e.tabh;\\n\\t\\t\\t\\t\\t\\te.thumbh = e.thumbhide>=pw ? __INT__ : e.thumbh;\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) nl[i] = e.rl[i]nl[i] && nl[i]>__INT__) { sl = nl[i]; ix=i;}\\n\\t\\t\\t\\t\\t\\tvar m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? __INT__ : (pw-(e.tabw+e.thumbw)) \\/ (e.gw[ix]);\\n\\t\\t\\t\\t\\t\\tnewh = (e.gh[ix] * m) + (e.tabh + e.thumbh);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\tvar el = document.getElementById(e.c);\\n\\t\\t\\t\\t\\tif (el!==null && el) el.style.height = newh+__DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\tel = document.getElementById(e.c+__DOUBLE_QUOTED_STRING__);\\n\\t\\t\\t\\t\\tif (el!==null && el) {\\n\\t\\t\\t\\t\\t\\tel.style.height = newh+__DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\t\\tel.style.display = __DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t} catch(e){\\n\\t\\t\\t\\t\\tconsole.log(__DOUBLE_QUOTED_STRING__ + e)\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\/\\/});\\n\\t\\t };\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"394a14393ccb142d4278875b36d749de\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/jquery-1.11.0.min.js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"d0f41d87dfbb44c74917aa3e7e6f4c9c\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/viewport-checker\\/dist\\/jquery.viewportchecker.min.js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"0858ec58dbe60e96b4fdf2e45aa60f95\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/typewriter.js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"68b2b21a33a01e0e112230069b0192f7\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n\\t\\t\\twindow.RS_MODULES = window.RS_MODULES || {};\\n\\t\\t\\twindow.RS_MODULES.modules = window.RS_MODULES.modules || {};\\n\\t\\t\\twindow.RS_MODULES.waiting = window.RS_MODULES.waiting || [];\\n\\t\\t\\twindow.RS_MODULES.defered = true;\\n\\t\\t\\twindow.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {};\\n\\t\\t\\twindow.RS_MODULES.type = __SINGLE_QUOTED_STRING__;\\n\\t\\t\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":229,\"function\":\"RevSliderFront::add_waiting_script\",\"hook\":\"wp_footer\",\"priority\":1}]}},{\"term_slug\":\"a198fa0278eff5b1007238f21a844cb8\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/dist\\/vendor\\/regenerator-runtime.min.js?ver=__normalized__\",\"id\":\"regenerator-runtime-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":549,\"function\":\"wp_default_packages\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":549,\"function\":\"wp_default_packages\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"29c76d030187be64189aa8a62c361d19\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill.min.js?ver=__normalized__\",\"id\":\"wp-polyfill-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":549,\"function\":\"wp_default_packages\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"6fc0da9f0d23eae8410103820c7c1c5c\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"contact-form-7-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7 = {\\\"api\\\":{\\\"root\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-json\\\\\\/\\\",\\\"namespace\\\":\\\"contact-form-7\\\\\\/v1\\\"}};\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7 = {\\\"api\\\":{\\\"root\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-json\\\\\\/\\\",\\\"namespace\\\":\\\"contact-form-7\\\\\\/v1\\\"}};\",\"handle\":\"contact-form-7\"}]}},{\"term_slug\":\"6b7e94cb0640140eccfeb0c6d126d3fa\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/js\\/index.js?ver=__normalized__\",\"id\":\"contact-form-7-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"455e0d79375d5c0e7bb2fe24f4408fe7\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/js\\/rbtools.min.js?ver=__normalized__\",\"defer\":\"defer\",\"async\":\"\",\"id\":\"tp-tools-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"tp-tools\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"tp-tools\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"9d2fbb97c2aba76b5c2e11048abcd7a3\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/js\\/rs6.min.js?ver=__normalized__\",\"defer\":\"defer\",\"async\":\"\",\"id\":\"revmin-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"revmin\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"revmin\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"0d54ab34f1393ff50a990bcd43ac9b89\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/www.google.com\\/recaptcha\\/api.js?render=6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s&ver=__normalized__\",\"id\":\"google-recaptcha-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"google-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"google-recaptcha\"},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"google-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"google-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"fffd38e1e2b741ded941b11c8bcee8e2\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"wpcf7-recaptcha-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7_recaptcha = {\\\"sitekey\\\":\\\"6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s\\\",\\\"actions\\\":{\\\"homepage\\\":\\\"homepage\\\",\\\"contactform\\\":\\\"contactform\\\"}};\",\"handle\":\"wpcf7-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7_recaptcha = {\\\"sitekey\\\":\\\"6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s\\\",\\\"actions\\\":{\\\"homepage\\\":\\\"homepage\\\",\\\"contactform\\\":\\\"contactform\\\"}};\",\"handle\":\"wpcf7-recaptcha\"}]}},{\"term_slug\":\"8a7fe833154a0ee7052f4d4fc864ab44\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/modules\\/recaptcha\\/index.js?ver=__normalized__\",\"id\":\"wpcf7-recaptcha-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"b700eea7e3e60850ee69274a67ef5ead\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/scripts\\/fitvids.min.js?ver=__normalized__\",\"id\":\"__ytprefsfitvids__-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"e95a68c301f2a3e94af3ab60d1e49223\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/popper.js\\/1.14.3\\/umd\\/popper.min.js\",\"integrity\":\"sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK\\/l8WvCWPIPm49\",\"crossorigin\":\"anonymous\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"dbdfe8cccebe34ff7041e208736a7942\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/stackpath.bootstrapcdn.com\\/bootstrap\\/4.1.3\\/js\\/bootstrap.min.js\",\"integrity\":\"sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW\\/JmZQ5stwEULTy\",\"crossorigin\":\"anonymous\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"7120b7b6f6e5e34eaab178a0de4148ac\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/validation\\/validate.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"dab16e046124505937d40d90a371de48\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"\\/\\/ajax.aspnetcdn.com\\/ajax\\/jquery.validate\\/1.11.1\\/jquery.validate.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"67c9c739d09cfdaf1697c37a00630a3d\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"\\/\\/ajax.microsoft.com\\/ajax\\/jquery.validate\\/1.11.1\\/additional-methods.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9ca7e7b07112fab0f2659963d081c647\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/validation\\/masks.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e2c5b7b289252d89a64585273c024ec4\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/js\\/owl.carousel.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"ef932f7d78102026336c4df6b9e8ff91\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/fancybox\\/jquery.fancybox.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"54f0b92713a27edb9d4a223c245ad681\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/typewriter-effect\\/dist\\/core.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"308a2319835188db90cf07f966466146\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/vivus@latest\\/dist\\/vivus.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d63eeee74cd3bfbc3da018462afd7b3f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/main.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"285f76a33582e621571d8109572b729f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/client-testimonial\\/client-testimonial.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"30ecfff784f957bc89bf72081232cb3b\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/cloud-native\\/cloud-native.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"c1becf0684470267fde5176dfd043567\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-process\\/our-process.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"de5df74cbbe78f3f4a0610587a35e184\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/services\\/services.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d9fea8205636ef843e6b598ace10ec9f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-clients\\/our-clients.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"22e139cf096a29785f5e03c3cdf7b16d\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b2a1b5e6c3786b7700a4fcb53b4481f1\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"src\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/slick-carousel@1.8.1\\/slick\\/slick.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b2badd021972c22702da7e27c5d6a2c0\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/aos@2.3.1\\/dist\\/aos.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d3db2d0fa38d97f62aac99a855396e59\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(document).ready(function() {\\n\\n$(__SINGLE_QUOTED_STRING__).click(function() {\\n$(__SINGLE_QUOTED_STRING__).slideToggle(__DOUBLE_QUOTED_STRING__);\\n});\\n\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: false,\\ninfinite: false,\\narrows: false,\\nspeed: __INT__,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\nresponsive: [\\n{\\nbreakpoint: __INT__,\\nsettings: {\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__\\n}\\n},\\n{\\nbreakpoint: __INT__,\\nsettings: {\\nslidesToShow: __FLOAT__,\\nslidesToScroll: __INT__\\n}\\n}\\n]\\n});\\nif($(window).width()<__INT__){\\nconst slider1 = $(__SINGLE_QUOTED_STRING__);\\nfunction onSliderAfterChange(event, slick, currentSlide) {\\n$(event.target).data(__SINGLE_QUOTED_STRING__, currentSlide);\\n}\\nfunction onSliderWheel(e) {\\nvar deltaY = e.originalEvent.deltaY,\\n $currentSlider = $(e.currentTarget),\\n currentSlickIndex = $currentSlider.data(__SINGLE_QUOTED_STRING__) || __INT__;\\nif (\\n (deltaY < __INT__ && currentSlickIndex == __INT__) ||\\n (deltaY > __INT__ && currentSlickIndex == $currentSlider.data(__SINGLE_QUOTED_STRING__) - __INT__)\\n) {\\n return;\\n}\\n\\ne.preventDefault();\\n\\nif (e.originalEvent.deltaY < __INT__) {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n} else {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n}\\n}\\n\\nslider1.each(function(index, element) {\\nvar $element = $(element);\\n$element.data(__SINGLE_QUOTED_STRING__, $element.children().length);\\n})\\n.slick({\\nresponsive: [\\n {\\n breakpoint: __INT__,\\n settings: __DOUBLE_QUOTED_STRING__\\n },\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n dots: true,\\n vertical: true,\\n verticalSwiping: true,\\n verticalSwiping: true,\\n infinite: false,\\n }\\n }\\n]\\n})\\n.on(__SINGLE_QUOTED_STRING__, onSliderAfterChange)\\n.on(__SINGLE_QUOTED_STRING__, onSliderWheel);\\n}\\nif($(window).width()<__INT__ && $()){\\nconst slider = $(__SINGLE_QUOTED_STRING__);\\nfunction onSliderAfterChange(event, slick, currentSlide) {\\n$(event.target).data(__SINGLE_QUOTED_STRING__, currentSlide);\\n}\\nfunction onSliderWheel(e) {\\nvar deltaY = e.originalEvent.deltaY,\\n $currentSlider = $(e.currentTarget),\\n currentSlickIndex = $currentSlider.data(__SINGLE_QUOTED_STRING__) || __INT__;\\nif (\\n (deltaY < __INT__ && currentSlickIndex == __INT__) ||\\n (deltaY > __INT__ && currentSlickIndex == $currentSlider.data(__SINGLE_QUOTED_STRING__) - __INT__)\\n) {\\n return;\\n}\\n\\ne.preventDefault();\\n\\nif (e.originalEvent.deltaY < __INT__) {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n} else {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n}\\n}\\n\\nslider.each(function(index, element) {\\nvar $element = $(element);\\n$element.data(__SINGLE_QUOTED_STRING__, $element.children().length);\\n})\\n.slick({\\nresponsive: [\\n {\\n breakpoint: __INT__,\\n settings: __DOUBLE_QUOTED_STRING__\\n },\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n dots: true,\\n vertical: true,\\n verticalSwiping: true,\\n verticalSwiping: true,\\n infinite: false,\\n }\\n }\\n]\\n})\\n.on(__SINGLE_QUOTED_STRING__, onSliderAfterChange)\\n.on(__SINGLE_QUOTED_STRING__, onSliderWheel);\\n}\\n\\nsetTimeout(function () {\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: true,\\narrows: true,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\ninfinite: false,\\nfade: true,\\nprevArrow:__DOUBLE_QUOTED_STRING__,\\nnextArrow:__DOUBLE_QUOTED_STRING__\\n});\\n\\n}, __INT__);\\n\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: false,\\ninfinite: false,\\narrows: false,\\nspeed: __INT__,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\nprevArrow:__DOUBLE_QUOTED_STRING__,\\nnextArrow:__DOUBLE_QUOTED_STRING__,\\nresponsive: [\\n{\\nbreakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: true,\\n\\n }\\n},\\n{\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: true,\\n }\\n}\\n]\\n});\\n\\n\\n\\n\\n\\n\\/\\/ jQuery(__DOUBLE_QUOTED_STRING__).click(()=>{\\n\\/\\/ jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n\\/\\/ })\\n});\\n\\n$(window).on(__DOUBLE_QUOTED_STRING__, function(e){\\nvar windowWidth = $(window).width();\\nif(windowWidth < __INT__){\\n $(__SINGLE_QUOTED_STRING__).slick({\\n dots: false,\\n arrows: false,\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n infinite: false,\\n responsive: [\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __FLOAT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n }\\n }\\n ]\\n });\\n\\n}else{\\n $(__SINGLE_QUOTED_STRING__).slick(__SINGLE_QUOTED_STRING__);\\n}\\n\\n}) \\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"46a6e66b9caf788b688275cac7a26bb5\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\nsetTimeout(() => {\\n $(__DOUBLE_QUOTED_STRING__).attr(__SINGLE_QUOTED_STRING__, __SINGLE_QUOTED_STRING__);\\n}, __INT__);\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"2c372ecf7923e7043aa08b5735b0e957\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n $(__SINGLE_QUOTED_STRING__).click(function(){\\n $(__SINGLE_QUOTED_STRING__).toggleClass(__SINGLE_QUOTED_STRING__);\\n });\\n\\n $(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(__DOUBLE_QUOTED_STRING__).click(function(){\\n jQuery(this).siblings(__DOUBLE_QUOTED_STRING__).slideToggle();\\n jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n console.log(__DOUBLE_QUOTED_STRING__)\\n if (jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).is(__DOUBLE_QUOTED_STRING__)) {\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).slideUp();\\n jQuery(this).siblings(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n }\\n })\\n }\\n \\njQuery(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n});\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"12562413cb77cf11c8ec1b1270ffeca2\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){ \\n $(__DOUBLE_QUOTED_STRING__).slideUp()\\n $(__DOUBLE_QUOTED_STRING__).slideDown()\\n $(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__)\\n jQuery(__DOUBLE_QUOTED_STRING__).click(function(){\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).slideToggle();\\n jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n if (jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).is(__DOUBLE_QUOTED_STRING__)) {\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).slideUp();\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n }\\n }); \\n var numRows = $(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__).length;\\nvar SHOWN = __INT__;\\nvar MORE = __INT__;\\n\\n\\/* get how many more can be shown *\\/\\nvar getNumMore = function(ns) {\\n var more = MORE;\\n var leftOver = numRows - ns;\\n if ((leftOver) < more) {\\n more = leftOver;\\n }\\n return more;\\n}\\n\\/* how many are shown *\\/\\nvar getInitialNumShown = function() {\\n var shown = SHOWN;\\n if (numRows < shown) {\\n shown = numRows;\\n }\\n return shown;\\n}\\n\\/* set how many are initially shown *\\/\\nvar numShown = getInitialNumShown();\\n\\n\\/* set the numMore if less than __INT__ *\\/\\nvar numMore = getNumMore(numShown);\\n\\n\\/* set more html *\\/\\nif (numMore > __INT__) {\\nvar more_html = __SINGLE_QUOTED_STRING__;\\n$(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__ + (numShown - __INT__) + __SINGLE_QUOTED_STRING__).hide().end().after(more_html);\\n}\\n$(__SINGLE_QUOTED_STRING__).click(function() {\\n\\/* determine how much more we should update *\\/\\nnumMore = getNumMore(numShown);\\n\\/* update num shown *\\/\\nnumShown = numShown + numMore;\\n$(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__ + numShown + __SINGLE_QUOTED_STRING__).show();\\n\\n\\/* determine if to show more and how much left over *\\/\\nnumMore = getNumMore(numShown);\\nif (numMore > __INT__) {\\n $(__SINGLE_QUOTED_STRING__).html(numMore);\\n} else {\\n $(__SINGLE_QUOTED_STRING__).remove();\\n}\\n}); \\n }\\n})\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b018faa0938622cc9d86adc1c5b500ae\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n $(__DOUBLE_QUOTED_STRING__).click(function() {\\n $(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).slideUp();\\n if (!$(this).next().is(__DOUBLE_QUOTED_STRING__)) {\\n $(this).next().slideDown();\\n $(this).addClass(__DOUBLE_QUOTED_STRING__);\\n }\\n })\\n }\\n jQuery(__SINGLE_QUOTED_STRING__).trigger(__SINGLE_QUOTED_STRING__);\\n });\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"6563f33063a8fda3041e500a21a4f19f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n $(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n \\n }\\n \\n \\n });\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9564124c6f316693f9a84b1137b0cba7\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n $(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n spaceBetween: __INT__,\\n longSwipesRatio: __FLOAT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n });\\n \\n }\\n \\n \\n });\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"561f494215f84bac2f890b40eb75db0a\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(document).ready(function() {\\n jQuery(__SINGLE_QUOTED_STRING__).trigger(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).click(function (e) {\\n e.preventDefault();\\n var popId = jQuery(this).attr(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n jQuery(popId).addClass(__SINGLE_QUOTED_STRING__);\\n })\\n});\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"82eea9842ad50c4a8eddf3aa2f5897e3\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n $(__SINGLE_QUOTED_STRING__).on(__SINGLE_QUOTED_STRING__, function(evt) {\\n evt.preventDefault();\\n \\/\\/ $(this).toggleClass(__SINGLE_QUOTED_STRING__);\\n $(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n $(this).addClass(__SINGLE_QUOTED_STRING__);\\n var sel = this.getAttribute(__SINGLE_QUOTED_STRING__);\\n $(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__).filter(sel).addClass(__SINGLE_QUOTED_STRING__);\\n });\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"64d07e9dba76f8b08f7cd70fdd9ae020\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n\\tvar app2 = document.getElementById(__SINGLE_QUOTED_STRING__);\\n\\n var typewriter = new Typewriter(app2, {\\n loop: true,\\n cursor: __SINGLE_QUOTED_STRING__,\\n cursorClassName: __SINGLE_QUOTED_STRING__\\n });\\n\\n typewriter.typeString(__SINGLE_QUOTED_STRING__)\\n .pauseFor(__INT__)\\n .deleteAll()\\n .typeString(__SINGLE_QUOTED_STRING__)\\n .pauseFor(__INT__)\\n .deleteAll()\\n .typeString(__SINGLE_QUOTED_STRING__)\\n .pauseFor(__INT__)\\n .start();\\n\\t\\n\\tvar tela = $(window).width();\\n\\n if(tela > __INT__) {\\n \\tvar larg = $(__SINGLE_QUOTED_STRING__).width();\\n\\t var larg2 = larg * __INT__ * __FLOAT__ + __INT__;\\n } else if(tela > __INT__) {\\n \\tvar larg2 = (tela - __INT__)\\/__INT__ + __INT__;\\n } else {\\n \\tvar larg2 = __INT__;\\n }\\n\\n $(__SINGLE_QUOTED_STRING__).css(__SINGLE_QUOTED_STRING__,larg2);\\n\\t$(__SINGLE_QUOTED_STRING__).css(__SINGLE_QUOTED_STRING__,larg2);\\n\\n $(window).resize(function(){\\n \\tif(tela > __INT__) {\\n\\t \\tvar larg = $(__SINGLE_QUOTED_STRING__).width();\\n\\t\\t var larg2 = larg * __INT__ * __FLOAT__ + __INT__;\\n\\t } else if(tela > __INT__) {\\n\\t \\tvar larg2 = (tela - __INT__)\\/__INT__ + __INT__;\\n\\t } else {\\n\\t \\tvar larg2 = __INT__;\\n\\t }\\n\\n\\t $(__SINGLE_QUOTED_STRING__).css(__SINGLE_QUOTED_STRING__,larg2);\\n\\t\\t$(__SINGLE_QUOTED_STRING__).css(__SINGLE_QUOTED_STRING__,larg2);\\n });\\n\",\"node_type\":1,\"sources\":[]}}]','https://translucent.mesoishop.com/category/technology/','','publish','closed','closed','','60f189399c0ba7448318d661d875fa14','','','2022-09-13 04:44:19','2022-09-13 08:44:19','',0,'https://translucent.mesoishop.com/amp_validated_url/60f189399c0ba7448318d661d875fa14/',0,'amp_validated_url','',0); INSERT INTO `wp_posts` VALUES (4799,21,'2022-09-13 04:44:20','2022-09-13 08:44:20','[{\"term_slug\":\"119f0fc62ebf75644afb9b13428151de\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/kubernetes.css?v=1787594022\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"f580ee9073e2167a99519fdc30175fb6\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/new-styles.css\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"74383adda30d63a82e52f5fb1bd448fe\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/styles.css\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"262ecf0781d46061fb584a067443783c\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/shared.css?v=882585420\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"c683711a32c941e886a2bff9cd5d9c49\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/css\\/owl.carousel.css\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"b2b05336e9d16428fe4d70031a73afc4\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"rs-plugin-settings-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/rs6.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":134,\"function\":\"RevSliderFront::add_inline_css\",\"hook\":\"wp_footer\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"rs-plugin-settings\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"17e920edc403db5a65f76c4be11cbd90\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"social_warfare-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/css\\/style.min.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Script.php\",\"line\":94,\"function\":\"SWP_Script::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"698ed8c3c1252be738d6986e0c37c3cf\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"emcs_calendly_css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/embed-calendly-scheduling\\/assets\\/css\\/widget.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"embed-calendly-scheduling\",\"file\":\"embed-calendly-scheduling.php\",\"line\":39,\"function\":\"emcs_calendly_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"754f2bd220d369a2310b0727edf58c57\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"contact-form-7-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/css\\/styles.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"157c13b55df6d419a7a4a7c952b848f6\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1020,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2261,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"a845e1e06b53116c205bceaff1516022\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.css\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"6d4404ba5312e7463b373a66c2eda446\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/css\\/all.min.css\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"0ad7242b71b7e1675d4323aa70985997\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"style\",\"node_attributes\":{\"type\":\"text\\/css\",\"id\":\"wp-custom-css\"},\"text\":\"\\n\\t\\t\\t\\n.tek-ai {\\n\\theight: auto;\\n}\\n\\n.tek-ai img {\\n\\theight: auto !important;\\n\\tmax-height: 570px;\\n}\\n\\n@media (max-width:992px) {\\n .tek-ai {\\n \\theight: auto;\\n\\t\\ttext-align: center !important;\\n\\t}\\n}\\n\\n@media (min-width: 1400px) {\\n .tek-ai {\\n \\theight: auto;\\n\\t}\\n}\\n\\n.footer-2022__menu--list.footer_links:nth-child(4) {\\n display: none;\\n}\\n\\n\\t\\t\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"theme.php\",\"line\":1824,\"function\":\"wp_custom_css_cb\",\"hook\":\"wp_head\",\"priority\":101}]}},{\"term_slug\":\"df0ff9d05846e2707ba6991f464f0aae\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"p\",\"parent_name\":\"div\",\"node_attributes\":{\"data-amp-original-style\":\"margin-bottom: 0px;\",\"class\":\"amp-wp-7ba55e4\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"222fa7b0f7619473f1ad089a053229a4\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"span\",\"parent_name\":\"p\",\"node_attributes\":{\"data-amp-original-style\":\"color: #707070;\",\"class\":\"amp-wp-309e5e2\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"264d8d4d1114a10f205e7f86c58b7bfd\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"span\",\"parent_name\":\"span\",\"node_attributes\":{\"data-amp-original-style\":\"color: #000000;\",\"class\":\"amp-wp-5443cfc\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"c49913c688d4509868dbd402dfeaf183\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"span\",\"parent_name\":\"p\",\"node_attributes\":{\"data-amp-original-style\":\"color: #999999;\",\"class\":\"amp-wp-2111d24\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"8b8133815b019458c4ab0828f742918f\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"div\",\"parent_name\":\"div\",\"node_attributes\":{\"id\":\"gtx-trans\",\"data-amp-original-style\":\"position: absolute; left: -113px; top: -10px;\",\"class\":\"amp-wp-47fc5b1\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"10dd3fafee0856f33bffad7bb9c63fa9\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"div\",\"parent_name\":\"div\",\"node_attributes\":{\"id\":\"gtx-trans\",\"data-amp-original-style\":\"position: absolute; left: -46px; top: -10px;\",\"class\":\"amp-wp-2a0531c\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"2ff5885227c2ace503cc444ee7525e56\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"div\",\"parent_name\":\"div\",\"node_attributes\":{\"id\":\"gtx-trans\",\"data-amp-original-style\":\"position: absolute; left: 1149px; top: 62px;\",\"class\":\"amp-wp-4c18308\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"84e497b381cbb079db874863c5b11bd7\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"style\",\"node_attributes\":[],\"text\":\"\\r\\n\\t@font-face {\\r\\n\\t\\tfont-family: \\\"sw-icon-font\\\";\\r\\n\\t\\tsrc:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0\\\");\\r\\n\\t\\tsrc:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0#iefix\\\") format(\\\"embedded-opentype\\\"),\\r\\n\\t\\turl(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.woff?ver=4.3.0\\\") format(\\\"woff\\\"),\\r\\n\\t\\turl(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.ttf?ver=4.3.0\\\") format(\\\"truetype\\\"),\\r\\n\\t\\turl(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.svg?ver=4.3.0#1445203416\\\") format(\\\"svg\\\");\\r\\n\\t\\tfont-weight: normal;\\r\\n\\t\\tfont-style: normal;\\r\\n\\t\\tfont-display:block;\\r\\n\\t}\\r\\n\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Header_Output.php\",\"line\":69,\"function\":\"SWP_Header_Output::add_header_output\",\"hook\":\"wp_head\",\"priority\":1}]}},{\"term_slug\":\"df8b37bdf772800d94026a25d5108162\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"div\",\"parent_name\":\"body\",\"node_attributes\":{\"class\":\"swp-hidden-panel-wrap amp-wp-041e5bc\",\"data-amp-original-style\":\"display: none; visibility: collapse; opacity: 0\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/buttons-panel\\/SWP_Buttons_Panel_Loader.php\",\"line\":254,\"function\":\"SWP_Buttons_panel_Loader::add_static_panel_fallback_footer\",\"hook\":\"wp_footer\",\"priority\":20}]}},{\"term_slug\":\"4281f21ed8dba5c268ac3796b5136911\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/embed-calendly-scheduling\\/assets\\/js\\/widget.js?ver=__normalized__\",\"id\":\"emcs_calendly_js-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"embed-calendly-scheduling\",\"file\":\"embed-calendly-scheduling.php\",\"line\":39,\"function\":\"emcs_calendly_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"emcs_calendly_js\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"emcs_calendly_js\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"ad851d2fd6457e6427554d69d5544899\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/jquery\\/jquery.min.js?ver=__normalized__\",\"id\":\"jquery-core-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"d95172fdd6b6200ab9aad6f23b20546c\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/jquery\\/jquery-migrate.min.js?ver=__normalized__\",\"id\":\"jquery-migrate-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"22a3cbf1fa1e43f7e3d9b33f00da4349\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"__ytprefs__-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var _EPYT_ = {\\\"ajaxurl\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-admin\\\\\\/admin-ajax.php\\\",\\\"security\\\":\\\"a8468eb17c\\\",\\\"gallery_scrolloffset\\\":\\\"20\\\",\\\"eppathtoscripts\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/scripts\\\\\\/\\\",\\\"eppath\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/\\\",\\\"epresponsiveselector\\\":\\\"[\\\\\\\"iframe.__youtube_prefs__\\\\\\\",\\\\\\\"iframe[src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-gallerysrc*=\'youtube.com\']\\\\\\\"]\\\",\\\"epdovol\\\":\\\"1\\\",\\\"version\\\":\\\"14.1.2\\\",\\\"evselector\\\":\\\"iframe.__youtube_prefs__[src], iframe[src*=\\\\\\\"youtube.com\\\\\\/embed\\\\\\/\\\\\\\"], iframe[src*=\\\\\\\"youtube-nocookie.com\\\\\\/embed\\\\\\/\\\\\\\"]\\\",\\\"ajax_compat\\\":\\\"\\\",\\\"ytapi_load\\\":\\\"light\\\",\\\"pause_others\\\":\\\"\\\",\\\"stopMobileBuffer\\\":\\\"1\\\",\\\"facade_mode\\\":\\\"\\\",\\\"not_live_on_channel\\\":\\\"\\\",\\\"vi_active\\\":\\\"\\\",\\\"vi_js_posttypes\\\":[]};\",\"handle\":\"__ytprefs__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var _EPYT_ = {\\\"ajaxurl\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-admin\\\\\\/admin-ajax.php\\\",\\\"security\\\":\\\"a8468eb17c\\\",\\\"gallery_scrolloffset\\\":\\\"20\\\",\\\"eppathtoscripts\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/scripts\\\\\\/\\\",\\\"eppath\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/\\\",\\\"epresponsiveselector\\\":\\\"[\\\\\\\"iframe.__youtube_prefs__\\\\\\\",\\\\\\\"iframe[src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-gallerysrc*=\'youtube.com\']\\\\\\\"]\\\",\\\"epdovol\\\":\\\"1\\\",\\\"version\\\":\\\"14.1.2\\\",\\\"evselector\\\":\\\"iframe.__youtube_prefs__[src], iframe[src*=\\\\\\\"youtube.com\\\\\\/embed\\\\\\/\\\\\\\"], iframe[src*=\\\\\\\"youtube-nocookie.com\\\\\\/embed\\\\\\/\\\\\\\"]\\\",\\\"ajax_compat\\\":\\\"\\\",\\\"ytapi_load\\\":\\\"light\\\",\\\"pause_others\\\":\\\"\\\",\\\"stopMobileBuffer\\\":\\\"1\\\",\\\"facade_mode\\\":\\\"\\\",\\\"not_live_on_channel\\\":\\\"\\\",\\\"vi_active\\\":\\\"\\\",\\\"vi_js_posttypes\\\":[]};\",\"handle\":\"__ytprefs__\"}]}},{\"term_slug\":\"38f5af99f1aa7d42f770794b2aebc370\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/scripts\\/ytprefs.min.js?ver=__normalized__\",\"id\":\"__ytprefs__-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"__ytprefs__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"__ytprefs__\"},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"60cb9e5de0de6a4012c105b98464b149\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"function setREVStartSize(e){\\n\\t\\t\\t\\/\\/window.requestAnimationFrame(function() {\\n\\t\\t\\t\\twindow.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW;\\n\\t\\t\\t\\twindow.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH;\\n\\t\\t\\t\\ttry {\\n\\t\\t\\t\\t\\tvar pw = document.getElementById(e.c).parentNode.offsetWidth,\\n\\t\\t\\t\\t\\t\\tnewh;\\n\\t\\t\\t\\t\\tpw = pw===__INT__ || isNaN(pw) || (e.l==__DOUBLE_QUOTED_STRING__ || e.layout==__DOUBLE_QUOTED_STRING__) ? window.RSIW : pw;\\n\\t\\t\\t\\t\\te.tabw = e.tabw===undefined ? __INT__ : parseInt(e.tabw);\\n\\t\\t\\t\\t\\te.thumbw = e.thumbw===undefined ? __INT__ : parseInt(e.thumbw);\\n\\t\\t\\t\\t\\te.tabh = e.tabh===undefined ? __INT__ : parseInt(e.tabh);\\n\\t\\t\\t\\t\\te.thumbh = e.thumbh===undefined ? __INT__ : parseInt(e.thumbh);\\n\\t\\t\\t\\t\\te.tabhide = e.tabhide===undefined ? __INT__ : parseInt(e.tabhide);\\n\\t\\t\\t\\t\\te.thumbhide = e.thumbhide===undefined ? __INT__ : parseInt(e.thumbhide);\\n\\t\\t\\t\\t\\te.mh = e.mh===undefined || e.mh==__DOUBLE_QUOTED_STRING__ || e.mh===__DOUBLE_QUOTED_STRING__ ? __INT__ : parseInt(e.mh,__INT__);\\n\\t\\t\\t\\t\\tif(e.layout===__DOUBLE_QUOTED_STRING__ || e.l===__DOUBLE_QUOTED_STRING__)\\n\\t\\t\\t\\t\\t\\tnewh = Math.max(e.mh,window.RSIH);\\n\\t\\t\\t\\t\\telse{\\n\\t\\t\\t\\t\\t\\te.gw = Array.isArray(e.gw) ? e.gw : [e.gw];\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===__INT__) e.gw[i] = e.gw[i__INT__];\\n\\t\\t\\t\\t\\t\\te.gh = e.el===undefined || e.el===__DOUBLE_QUOTED_STRING__ || (Array.isArray(e.el) && e.el.length==__INT__)? e.gh : e.el;\\n\\t\\t\\t\\t\\t\\te.gh = Array.isArray(e.gh) ? e.gh : [e.gh];\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===__INT__) e.gh[i] = e.gh[i__INT__];\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\tvar nl = new Array(e.rl.length),\\n\\t\\t\\t\\t\\t\\t\\tix = __INT__,\\n\\t\\t\\t\\t\\t\\t\\tsl;\\n\\t\\t\\t\\t\\t\\te.tabw = e.tabhide>=pw ? __INT__ : e.tabw;\\n\\t\\t\\t\\t\\t\\te.thumbw = e.thumbhide>=pw ? __INT__ : e.thumbw;\\n\\t\\t\\t\\t\\t\\te.tabh = e.tabhide>=pw ? __INT__ : e.tabh;\\n\\t\\t\\t\\t\\t\\te.thumbh = e.thumbhide>=pw ? __INT__ : e.thumbh;\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) nl[i] = e.rl[i]nl[i] && nl[i]>__INT__) { sl = nl[i]; ix=i;}\\n\\t\\t\\t\\t\\t\\tvar m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? __INT__ : (pw-(e.tabw+e.thumbw)) \\/ (e.gw[ix]);\\n\\t\\t\\t\\t\\t\\tnewh = (e.gh[ix] * m) + (e.tabh + e.thumbh);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\tvar el = document.getElementById(e.c);\\n\\t\\t\\t\\t\\tif (el!==null && el) el.style.height = newh+__DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\tel = document.getElementById(e.c+__DOUBLE_QUOTED_STRING__);\\n\\t\\t\\t\\t\\tif (el!==null && el) {\\n\\t\\t\\t\\t\\t\\tel.style.height = newh+__DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\t\\tel.style.display = __DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t} catch(e){\\n\\t\\t\\t\\t\\tconsole.log(__DOUBLE_QUOTED_STRING__ + e)\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\/\\/});\\n\\t\\t };\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"394a14393ccb142d4278875b36d749de\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/jquery-1.11.0.min.js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"d0f41d87dfbb44c74917aa3e7e6f4c9c\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/viewport-checker\\/dist\\/jquery.viewportchecker.min.js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"0858ec58dbe60e96b4fdf2e45aa60f95\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/typewriter.js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"1f89399ca73888cdc6eac0be8d96512b\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"id\":\"calendly-button-1\",\"class\":\"mt-5 btn__consultation\",\"href\":\"\",\"onclick\":\"Calendly.initPopupWidget({url: \'https:\\/\\/calendly.com\\/tc-results\'});return false;\"},\"node_name\":\"onclick\",\"parent_name\":\"a\",\"type\":\"js_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"793426c83e9dfe44d0b6fd888f3b1db1\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"id\":\"calendly-button-1\",\"class\":\"mt-5 btn__consultation__light__blue\",\"href\":\"\",\"onclick\":\"Calendly.initPopupWidget({url: \'https:\\/\\/calendly.com\\/tc-results\'});return false;\"},\"node_name\":\"onclick\",\"parent_name\":\"a\",\"type\":\"js_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"68b2b21a33a01e0e112230069b0192f7\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n\\t\\t\\twindow.RS_MODULES = window.RS_MODULES || {};\\n\\t\\t\\twindow.RS_MODULES.modules = window.RS_MODULES.modules || {};\\n\\t\\t\\twindow.RS_MODULES.waiting = window.RS_MODULES.waiting || [];\\n\\t\\t\\twindow.RS_MODULES.defered = true;\\n\\t\\t\\twindow.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {};\\n\\t\\t\\twindow.RS_MODULES.type = __SINGLE_QUOTED_STRING__;\\n\\t\\t\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":229,\"function\":\"RevSliderFront::add_waiting_script\",\"hook\":\"wp_footer\",\"priority\":1}]}},{\"term_slug\":\"a198fa0278eff5b1007238f21a844cb8\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/dist\\/vendor\\/regenerator-runtime.min.js?ver=__normalized__\",\"id\":\"regenerator-runtime-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":549,\"function\":\"wp_default_packages\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":549,\"function\":\"wp_default_packages\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"29c76d030187be64189aa8a62c361d19\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill.min.js?ver=__normalized__\",\"id\":\"wp-polyfill-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":549,\"function\":\"wp_default_packages\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"6fc0da9f0d23eae8410103820c7c1c5c\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"contact-form-7-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7 = {\\\"api\\\":{\\\"root\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-json\\\\\\/\\\",\\\"namespace\\\":\\\"contact-form-7\\\\\\/v1\\\"}};\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7 = {\\\"api\\\":{\\\"root\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-json\\\\\\/\\\",\\\"namespace\\\":\\\"contact-form-7\\\\\\/v1\\\"}};\",\"handle\":\"contact-form-7\"}]}},{\"term_slug\":\"6b7e94cb0640140eccfeb0c6d126d3fa\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/js\\/index.js?ver=__normalized__\",\"id\":\"contact-form-7-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"455e0d79375d5c0e7bb2fe24f4408fe7\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/js\\/rbtools.min.js?ver=__normalized__\",\"defer\":\"defer\",\"async\":\"\",\"id\":\"tp-tools-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"tp-tools\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"tp-tools\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"9d2fbb97c2aba76b5c2e11048abcd7a3\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/js\\/rs6.min.js?ver=__normalized__\",\"defer\":\"defer\",\"async\":\"\",\"id\":\"revmin-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"revmin\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"revmin\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"0d54ab34f1393ff50a990bcd43ac9b89\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/www.google.com\\/recaptcha\\/api.js?render=6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s&ver=__normalized__\",\"id\":\"google-recaptcha-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"google-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"google-recaptcha\"},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"google-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"google-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"fffd38e1e2b741ded941b11c8bcee8e2\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"wpcf7-recaptcha-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7_recaptcha = {\\\"sitekey\\\":\\\"6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s\\\",\\\"actions\\\":{\\\"homepage\\\":\\\"homepage\\\",\\\"contactform\\\":\\\"contactform\\\"}};\",\"handle\":\"wpcf7-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7_recaptcha = {\\\"sitekey\\\":\\\"6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s\\\",\\\"actions\\\":{\\\"homepage\\\":\\\"homepage\\\",\\\"contactform\\\":\\\"contactform\\\"}};\",\"handle\":\"wpcf7-recaptcha\"}]}},{\"term_slug\":\"8a7fe833154a0ee7052f4d4fc864ab44\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/modules\\/recaptcha\\/index.js?ver=__normalized__\",\"id\":\"wpcf7-recaptcha-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"b700eea7e3e60850ee69274a67ef5ead\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/scripts\\/fitvids.min.js?ver=__normalized__\",\"id\":\"__ytprefsfitvids__-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"e95a68c301f2a3e94af3ab60d1e49223\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/popper.js\\/1.14.3\\/umd\\/popper.min.js\",\"integrity\":\"sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK\\/l8WvCWPIPm49\",\"crossorigin\":\"anonymous\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"dbdfe8cccebe34ff7041e208736a7942\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/stackpath.bootstrapcdn.com\\/bootstrap\\/4.1.3\\/js\\/bootstrap.min.js\",\"integrity\":\"sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW\\/JmZQ5stwEULTy\",\"crossorigin\":\"anonymous\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"7120b7b6f6e5e34eaab178a0de4148ac\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/validation\\/validate.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"dab16e046124505937d40d90a371de48\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"\\/\\/ajax.aspnetcdn.com\\/ajax\\/jquery.validate\\/1.11.1\\/jquery.validate.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"67c9c739d09cfdaf1697c37a00630a3d\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"\\/\\/ajax.microsoft.com\\/ajax\\/jquery.validate\\/1.11.1\\/additional-methods.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9ca7e7b07112fab0f2659963d081c647\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/validation\\/masks.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e2c5b7b289252d89a64585273c024ec4\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/js\\/owl.carousel.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"ef932f7d78102026336c4df6b9e8ff91\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/fancybox\\/jquery.fancybox.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"54f0b92713a27edb9d4a223c245ad681\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/typewriter-effect\\/dist\\/core.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"308a2319835188db90cf07f966466146\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/vivus@latest\\/dist\\/vivus.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d63eeee74cd3bfbc3da018462afd7b3f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/main.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"285f76a33582e621571d8109572b729f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/client-testimonial\\/client-testimonial.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"30ecfff784f957bc89bf72081232cb3b\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/cloud-native\\/cloud-native.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"c1becf0684470267fde5176dfd043567\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-process\\/our-process.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"de5df74cbbe78f3f4a0610587a35e184\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/services\\/services.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d9fea8205636ef843e6b598ace10ec9f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-clients\\/our-clients.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"22e139cf096a29785f5e03c3cdf7b16d\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b2a1b5e6c3786b7700a4fcb53b4481f1\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"src\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/slick-carousel@1.8.1\\/slick\\/slick.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b2badd021972c22702da7e27c5d6a2c0\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/aos@2.3.1\\/dist\\/aos.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d3db2d0fa38d97f62aac99a855396e59\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(document).ready(function() {\\n\\n$(__SINGLE_QUOTED_STRING__).click(function() {\\n$(__SINGLE_QUOTED_STRING__).slideToggle(__DOUBLE_QUOTED_STRING__);\\n});\\n\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: false,\\ninfinite: false,\\narrows: false,\\nspeed: __INT__,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\nresponsive: [\\n{\\nbreakpoint: __INT__,\\nsettings: {\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__\\n}\\n},\\n{\\nbreakpoint: __INT__,\\nsettings: {\\nslidesToShow: __FLOAT__,\\nslidesToScroll: __INT__\\n}\\n}\\n]\\n});\\nif($(window).width()<__INT__){\\nconst slider1 = $(__SINGLE_QUOTED_STRING__);\\nfunction onSliderAfterChange(event, slick, currentSlide) {\\n$(event.target).data(__SINGLE_QUOTED_STRING__, currentSlide);\\n}\\nfunction onSliderWheel(e) {\\nvar deltaY = e.originalEvent.deltaY,\\n $currentSlider = $(e.currentTarget),\\n currentSlickIndex = $currentSlider.data(__SINGLE_QUOTED_STRING__) || __INT__;\\nif (\\n (deltaY < __INT__ && currentSlickIndex == __INT__) ||\\n (deltaY > __INT__ && currentSlickIndex == $currentSlider.data(__SINGLE_QUOTED_STRING__) - __INT__)\\n) {\\n return;\\n}\\n\\ne.preventDefault();\\n\\nif (e.originalEvent.deltaY < __INT__) {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n} else {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n}\\n}\\n\\nslider1.each(function(index, element) {\\nvar $element = $(element);\\n$element.data(__SINGLE_QUOTED_STRING__, $element.children().length);\\n})\\n.slick({\\nresponsive: [\\n {\\n breakpoint: __INT__,\\n settings: __DOUBLE_QUOTED_STRING__\\n },\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n dots: true,\\n vertical: true,\\n verticalSwiping: true,\\n verticalSwiping: true,\\n infinite: false,\\n }\\n }\\n]\\n})\\n.on(__SINGLE_QUOTED_STRING__, onSliderAfterChange)\\n.on(__SINGLE_QUOTED_STRING__, onSliderWheel);\\n}\\nif($(window).width()<__INT__ && $()){\\nconst slider = $(__SINGLE_QUOTED_STRING__);\\nfunction onSliderAfterChange(event, slick, currentSlide) {\\n$(event.target).data(__SINGLE_QUOTED_STRING__, currentSlide);\\n}\\nfunction onSliderWheel(e) {\\nvar deltaY = e.originalEvent.deltaY,\\n $currentSlider = $(e.currentTarget),\\n currentSlickIndex = $currentSlider.data(__SINGLE_QUOTED_STRING__) || __INT__;\\nif (\\n (deltaY < __INT__ && currentSlickIndex == __INT__) ||\\n (deltaY > __INT__ && currentSlickIndex == $currentSlider.data(__SINGLE_QUOTED_STRING__) - __INT__)\\n) {\\n return;\\n}\\n\\ne.preventDefault();\\n\\nif (e.originalEvent.deltaY < __INT__) {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n} else {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n}\\n}\\n\\nslider.each(function(index, element) {\\nvar $element = $(element);\\n$element.data(__SINGLE_QUOTED_STRING__, $element.children().length);\\n})\\n.slick({\\nresponsive: [\\n {\\n breakpoint: __INT__,\\n settings: __DOUBLE_QUOTED_STRING__\\n },\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n dots: true,\\n vertical: true,\\n verticalSwiping: true,\\n verticalSwiping: true,\\n infinite: false,\\n }\\n }\\n]\\n})\\n.on(__SINGLE_QUOTED_STRING__, onSliderAfterChange)\\n.on(__SINGLE_QUOTED_STRING__, onSliderWheel);\\n}\\n\\nsetTimeout(function () {\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: true,\\narrows: true,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\ninfinite: false,\\nfade: true,\\nprevArrow:__DOUBLE_QUOTED_STRING__,\\nnextArrow:__DOUBLE_QUOTED_STRING__\\n});\\n\\n}, __INT__);\\n\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: false,\\ninfinite: false,\\narrows: false,\\nspeed: __INT__,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\nprevArrow:__DOUBLE_QUOTED_STRING__,\\nnextArrow:__DOUBLE_QUOTED_STRING__,\\nresponsive: [\\n{\\nbreakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: true,\\n\\n }\\n},\\n{\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: true,\\n }\\n}\\n]\\n});\\n\\n\\n\\n\\n\\n\\/\\/ jQuery(__DOUBLE_QUOTED_STRING__).click(()=>{\\n\\/\\/ jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n\\/\\/ })\\n});\\n\\n$(window).on(__DOUBLE_QUOTED_STRING__, function(e){\\nvar windowWidth = $(window).width();\\nif(windowWidth < __INT__){\\n $(__SINGLE_QUOTED_STRING__).slick({\\n dots: false,\\n arrows: false,\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n infinite: false,\\n responsive: [\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __FLOAT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n }\\n }\\n ]\\n });\\n\\n}else{\\n $(__SINGLE_QUOTED_STRING__).slick(__SINGLE_QUOTED_STRING__);\\n}\\n\\n}) \\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"46a6e66b9caf788b688275cac7a26bb5\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\nsetTimeout(() => {\\n $(__DOUBLE_QUOTED_STRING__).attr(__SINGLE_QUOTED_STRING__, __SINGLE_QUOTED_STRING__);\\n}, __INT__);\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"2c372ecf7923e7043aa08b5735b0e957\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n $(__SINGLE_QUOTED_STRING__).click(function(){\\n $(__SINGLE_QUOTED_STRING__).toggleClass(__SINGLE_QUOTED_STRING__);\\n });\\n\\n $(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(__DOUBLE_QUOTED_STRING__).click(function(){\\n jQuery(this).siblings(__DOUBLE_QUOTED_STRING__).slideToggle();\\n jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n console.log(__DOUBLE_QUOTED_STRING__)\\n if (jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).is(__DOUBLE_QUOTED_STRING__)) {\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).slideUp();\\n jQuery(this).siblings(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n }\\n })\\n }\\n \\njQuery(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n});\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"12562413cb77cf11c8ec1b1270ffeca2\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){ \\n $(__DOUBLE_QUOTED_STRING__).slideUp()\\n $(__DOUBLE_QUOTED_STRING__).slideDown()\\n $(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__)\\n jQuery(__DOUBLE_QUOTED_STRING__).click(function(){\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).slideToggle();\\n jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n if (jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).is(__DOUBLE_QUOTED_STRING__)) {\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).slideUp();\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n }\\n }); \\n var numRows = $(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__).length;\\nvar SHOWN = __INT__;\\nvar MORE = __INT__;\\n\\n\\/* get how many more can be shown *\\/\\nvar getNumMore = function(ns) {\\n var more = MORE;\\n var leftOver = numRows - ns;\\n if ((leftOver) < more) {\\n more = leftOver;\\n }\\n return more;\\n}\\n\\/* how many are shown *\\/\\nvar getInitialNumShown = function() {\\n var shown = SHOWN;\\n if (numRows < shown) {\\n shown = numRows;\\n }\\n return shown;\\n}\\n\\/* set how many are initially shown *\\/\\nvar numShown = getInitialNumShown();\\n\\n\\/* set the numMore if less than __INT__ *\\/\\nvar numMore = getNumMore(numShown);\\n\\n\\/* set more html *\\/\\nif (numMore > __INT__) {\\nvar more_html = __SINGLE_QUOTED_STRING__;\\n$(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__ + (numShown - __INT__) + __SINGLE_QUOTED_STRING__).hide().end().after(more_html);\\n}\\n$(__SINGLE_QUOTED_STRING__).click(function() {\\n\\/* determine how much more we should update *\\/\\nnumMore = getNumMore(numShown);\\n\\/* update num shown *\\/\\nnumShown = numShown + numMore;\\n$(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__ + numShown + __SINGLE_QUOTED_STRING__).show();\\n\\n\\/* determine if to show more and how much left over *\\/\\nnumMore = getNumMore(numShown);\\nif (numMore > __INT__) {\\n $(__SINGLE_QUOTED_STRING__).html(numMore);\\n} else {\\n $(__SINGLE_QUOTED_STRING__).remove();\\n}\\n}); \\n }\\n})\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b018faa0938622cc9d86adc1c5b500ae\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n $(__DOUBLE_QUOTED_STRING__).click(function() {\\n $(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).slideUp();\\n if (!$(this).next().is(__DOUBLE_QUOTED_STRING__)) {\\n $(this).next().slideDown();\\n $(this).addClass(__DOUBLE_QUOTED_STRING__);\\n }\\n })\\n }\\n jQuery(__SINGLE_QUOTED_STRING__).trigger(__SINGLE_QUOTED_STRING__);\\n });\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"6563f33063a8fda3041e500a21a4f19f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n $(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n \\n }\\n \\n \\n });\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9564124c6f316693f9a84b1137b0cba7\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n $(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n spaceBetween: __INT__,\\n longSwipesRatio: __FLOAT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n });\\n \\n }\\n \\n \\n });\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"561f494215f84bac2f890b40eb75db0a\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(document).ready(function() {\\n jQuery(__SINGLE_QUOTED_STRING__).trigger(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).click(function (e) {\\n e.preventDefault();\\n var popId = jQuery(this).attr(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n jQuery(popId).addClass(__SINGLE_QUOTED_STRING__);\\n })\\n});\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"82eea9842ad50c4a8eddf3aa2f5897e3\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n $(__SINGLE_QUOTED_STRING__).on(__SINGLE_QUOTED_STRING__, function(evt) {\\n evt.preventDefault();\\n \\/\\/ $(this).toggleClass(__SINGLE_QUOTED_STRING__);\\n $(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n $(this).addClass(__SINGLE_QUOTED_STRING__);\\n var sel = this.getAttribute(__SINGLE_QUOTED_STRING__);\\n $(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__).filter(sel).addClass(__SINGLE_QUOTED_STRING__);\\n });\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"8a3f70de89835aeada2da51bc2353128\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n\\t$(__SINGLE_QUOTED_STRING__).owlCarousel({\\n\\t\\tautoplay: true,\\n\\t\\tloop: true,\\n\\t\\tnav: true,\\n\\t\\tresponsive: {\\n\\t\\t\\t__INT__: {\\n\\t\\t\\t\\titems: __INT__\\n\\t\\t\\t},\\n\\t\\t}\\n\\t})\\n\",\"node_type\":1,\"sources\":[]}}]','https://translucent.mesoishop.com/kubernetes-professional-services-new/','','publish','closed','closed','','0fb358a54cc7e34eaa694485b9d82ba8','','','2022-09-13 04:44:20','2022-09-13 08:44:20','',0,'https://translucent.mesoishop.com/amp_validated_url/0fb358a54cc7e34eaa694485b9d82ba8/',0,'amp_validated_url','',0),(4800,21,'2022-09-13 04:44:46','2022-09-13 08:44:46','[{\"term_slug\":\"1154d9e645eee85946a815449fd5d911\",\"data\":{\"code\":\"ATTR_REQUIRED_BUT_MISSING\",\"attributes\":[\"src\"],\"spec_name\":\"amp-img\",\"node_name\":\"img\",\"parent_name\":\"a\",\"type\":\"html_element_error\",\"node_attributes\":{\"src\":\"\",\"class\":\"post-img\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"9059024a12c04f13c4bc37ed89391619\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/shared.css?v=1602747630\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"74383adda30d63a82e52f5fb1bd448fe\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/styles.css\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"c683711a32c941e886a2bff9cd5d9c49\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/css\\/owl.carousel.css\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"754f2bd220d369a2310b0727edf58c57\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"contact-form-7-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/css\\/styles.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"17e920edc403db5a65f76c4be11cbd90\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"social_warfare-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/css\\/style.min.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Script.php\",\"line\":94,\"function\":\"SWP_Script::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"b2b05336e9d16428fe4d70031a73afc4\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"rs-plugin-settings-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/rs6.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":134,\"function\":\"RevSliderFront::add_inline_css\",\"hook\":\"wp_footer\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"rs-plugin-settings\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"698ed8c3c1252be738d6986e0c37c3cf\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"emcs_calendly_css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/embed-calendly-scheduling\\/assets\\/css\\/widget.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"embed-calendly-scheduling\",\"file\":\"embed-calendly-scheduling.php\",\"line\":39,\"function\":\"emcs_calendly_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"157c13b55df6d419a7a4a7c952b848f6\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1020,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2261,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"6d4404ba5312e7463b373a66c2eda446\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/css\\/all.min.css\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"a845e1e06b53116c205bceaff1516022\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.css\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"0ad7242b71b7e1675d4323aa70985997\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"style\",\"node_attributes\":{\"type\":\"text\\/css\",\"id\":\"wp-custom-css\"},\"text\":\"\\n\\t\\t\\t\\n.tek-ai {\\n\\theight: auto;\\n}\\n\\n.tek-ai img {\\n\\theight: auto !important;\\n\\tmax-height: 570px;\\n}\\n\\n@media (max-width:992px) {\\n .tek-ai {\\n \\theight: auto;\\n\\t\\ttext-align: center !important;\\n\\t}\\n}\\n\\n@media (min-width: 1400px) {\\n .tek-ai {\\n \\theight: auto;\\n\\t}\\n}\\n\\n.footer-2022__menu--list.footer_links:nth-child(4) {\\n display: none;\\n}\\n\\n\\t\\t\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"theme.php\",\"line\":1824,\"function\":\"wp_custom_css_cb\",\"hook\":\"wp_head\",\"priority\":101}]}},{\"term_slug\":\"23b6b9c56b1db07e4393c6bc7d02ba95\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"div\",\"parent_name\":\"div\",\"node_attributes\":{\"class\":\"col-lg-6 blog-title-main amp-wp-7597b7e\",\"data-amp-original-style\":\"background-image: url(\'https:\\/\\/translucentcomputing.com\\/wp-content\\/uploads\\/2020\\/01\\/blogimg.jpg\')\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"84e497b381cbb079db874863c5b11bd7\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"style\",\"node_attributes\":[],\"text\":\"\\r\\n\\t@font-face {\\r\\n\\t\\tfont-family: \\\"sw-icon-font\\\";\\r\\n\\t\\tsrc:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0\\\");\\r\\n\\t\\tsrc:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0#iefix\\\") format(\\\"embedded-opentype\\\"),\\r\\n\\t\\turl(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.woff?ver=4.3.0\\\") format(\\\"woff\\\"),\\r\\n\\t\\turl(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.ttf?ver=4.3.0\\\") format(\\\"truetype\\\"),\\r\\n\\t\\turl(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.svg?ver=4.3.0#1445203416\\\") format(\\\"svg\\\");\\r\\n\\t\\tfont-weight: normal;\\r\\n\\t\\tfont-style: normal;\\r\\n\\t\\tfont-display:block;\\r\\n\\t}\\r\\n\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Header_Output.php\",\"line\":69,\"function\":\"SWP_Header_Output::add_header_output\",\"hook\":\"wp_head\",\"priority\":1}]}},{\"term_slug\":\"9bc4b078f5f0e9eaab12cf1127980410\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"div\",\"parent_name\":\"div\",\"node_attributes\":{\"class\":\"col-lg-6 blog-main amp-wp-946752b\",\"data-amp-original-style\":\"background-image: url(\'https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2022\\/06\\/How-Translucent-is-changing-the-Cloud-Native-industry.png\');\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"4281f21ed8dba5c268ac3796b5136911\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/embed-calendly-scheduling\\/assets\\/js\\/widget.js?ver=__normalized__\",\"id\":\"emcs_calendly_js-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"embed-calendly-scheduling\",\"file\":\"embed-calendly-scheduling.php\",\"line\":39,\"function\":\"emcs_calendly_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"emcs_calendly_js\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"emcs_calendly_js\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"ad851d2fd6457e6427554d69d5544899\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/jquery\\/jquery.min.js?ver=__normalized__\",\"id\":\"jquery-core-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"d95172fdd6b6200ab9aad6f23b20546c\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/jquery\\/jquery-migrate.min.js?ver=__normalized__\",\"id\":\"jquery-migrate-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"22a3cbf1fa1e43f7e3d9b33f00da4349\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"__ytprefs__-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var _EPYT_ = {\\\"ajaxurl\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-admin\\\\\\/admin-ajax.php\\\",\\\"security\\\":\\\"a8468eb17c\\\",\\\"gallery_scrolloffset\\\":\\\"20\\\",\\\"eppathtoscripts\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/scripts\\\\\\/\\\",\\\"eppath\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/\\\",\\\"epresponsiveselector\\\":\\\"[\\\\\\\"iframe.__youtube_prefs__\\\\\\\",\\\\\\\"iframe[src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-gallerysrc*=\'youtube.com\']\\\\\\\"]\\\",\\\"epdovol\\\":\\\"1\\\",\\\"version\\\":\\\"14.1.2\\\",\\\"evselector\\\":\\\"iframe.__youtube_prefs__[src], iframe[src*=\\\\\\\"youtube.com\\\\\\/embed\\\\\\/\\\\\\\"], iframe[src*=\\\\\\\"youtube-nocookie.com\\\\\\/embed\\\\\\/\\\\\\\"]\\\",\\\"ajax_compat\\\":\\\"\\\",\\\"ytapi_load\\\":\\\"light\\\",\\\"pause_others\\\":\\\"\\\",\\\"stopMobileBuffer\\\":\\\"1\\\",\\\"facade_mode\\\":\\\"\\\",\\\"not_live_on_channel\\\":\\\"\\\",\\\"vi_active\\\":\\\"\\\",\\\"vi_js_posttypes\\\":[]};\",\"handle\":\"__ytprefs__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var _EPYT_ = {\\\"ajaxurl\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-admin\\\\\\/admin-ajax.php\\\",\\\"security\\\":\\\"a8468eb17c\\\",\\\"gallery_scrolloffset\\\":\\\"20\\\",\\\"eppathtoscripts\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/scripts\\\\\\/\\\",\\\"eppath\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/\\\",\\\"epresponsiveselector\\\":\\\"[\\\\\\\"iframe.__youtube_prefs__\\\\\\\",\\\\\\\"iframe[src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-gallerysrc*=\'youtube.com\']\\\\\\\"]\\\",\\\"epdovol\\\":\\\"1\\\",\\\"version\\\":\\\"14.1.2\\\",\\\"evselector\\\":\\\"iframe.__youtube_prefs__[src], iframe[src*=\\\\\\\"youtube.com\\\\\\/embed\\\\\\/\\\\\\\"], iframe[src*=\\\\\\\"youtube-nocookie.com\\\\\\/embed\\\\\\/\\\\\\\"]\\\",\\\"ajax_compat\\\":\\\"\\\",\\\"ytapi_load\\\":\\\"light\\\",\\\"pause_others\\\":\\\"\\\",\\\"stopMobileBuffer\\\":\\\"1\\\",\\\"facade_mode\\\":\\\"\\\",\\\"not_live_on_channel\\\":\\\"\\\",\\\"vi_active\\\":\\\"\\\",\\\"vi_js_posttypes\\\":[]};\",\"handle\":\"__ytprefs__\"}]}},{\"term_slug\":\"38f5af99f1aa7d42f770794b2aebc370\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/scripts\\/ytprefs.min.js?ver=__normalized__\",\"id\":\"__ytprefs__-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"__ytprefs__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"__ytprefs__\"},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"60cb9e5de0de6a4012c105b98464b149\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"function setREVStartSize(e){\\n\\t\\t\\t\\/\\/window.requestAnimationFrame(function() {\\n\\t\\t\\t\\twindow.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW;\\n\\t\\t\\t\\twindow.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH;\\n\\t\\t\\t\\ttry {\\n\\t\\t\\t\\t\\tvar pw = document.getElementById(e.c).parentNode.offsetWidth,\\n\\t\\t\\t\\t\\t\\tnewh;\\n\\t\\t\\t\\t\\tpw = pw===__INT__ || isNaN(pw) || (e.l==__DOUBLE_QUOTED_STRING__ || e.layout==__DOUBLE_QUOTED_STRING__) ? window.RSIW : pw;\\n\\t\\t\\t\\t\\te.tabw = e.tabw===undefined ? __INT__ : parseInt(e.tabw);\\n\\t\\t\\t\\t\\te.thumbw = e.thumbw===undefined ? __INT__ : parseInt(e.thumbw);\\n\\t\\t\\t\\t\\te.tabh = e.tabh===undefined ? __INT__ : parseInt(e.tabh);\\n\\t\\t\\t\\t\\te.thumbh = e.thumbh===undefined ? __INT__ : parseInt(e.thumbh);\\n\\t\\t\\t\\t\\te.tabhide = e.tabhide===undefined ? __INT__ : parseInt(e.tabhide);\\n\\t\\t\\t\\t\\te.thumbhide = e.thumbhide===undefined ? __INT__ : parseInt(e.thumbhide);\\n\\t\\t\\t\\t\\te.mh = e.mh===undefined || e.mh==__DOUBLE_QUOTED_STRING__ || e.mh===__DOUBLE_QUOTED_STRING__ ? __INT__ : parseInt(e.mh,__INT__);\\n\\t\\t\\t\\t\\tif(e.layout===__DOUBLE_QUOTED_STRING__ || e.l===__DOUBLE_QUOTED_STRING__)\\n\\t\\t\\t\\t\\t\\tnewh = Math.max(e.mh,window.RSIH);\\n\\t\\t\\t\\t\\telse{\\n\\t\\t\\t\\t\\t\\te.gw = Array.isArray(e.gw) ? e.gw : [e.gw];\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===__INT__) e.gw[i] = e.gw[i__INT__];\\n\\t\\t\\t\\t\\t\\te.gh = e.el===undefined || e.el===__DOUBLE_QUOTED_STRING__ || (Array.isArray(e.el) && e.el.length==__INT__)? e.gh : e.el;\\n\\t\\t\\t\\t\\t\\te.gh = Array.isArray(e.gh) ? e.gh : [e.gh];\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===__INT__) e.gh[i] = e.gh[i__INT__];\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\tvar nl = new Array(e.rl.length),\\n\\t\\t\\t\\t\\t\\t\\tix = __INT__,\\n\\t\\t\\t\\t\\t\\t\\tsl;\\n\\t\\t\\t\\t\\t\\te.tabw = e.tabhide>=pw ? __INT__ : e.tabw;\\n\\t\\t\\t\\t\\t\\te.thumbw = e.thumbhide>=pw ? __INT__ : e.thumbw;\\n\\t\\t\\t\\t\\t\\te.tabh = e.tabhide>=pw ? __INT__ : e.tabh;\\n\\t\\t\\t\\t\\t\\te.thumbh = e.thumbhide>=pw ? __INT__ : e.thumbh;\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) nl[i] = e.rl[i]nl[i] && nl[i]>__INT__) { sl = nl[i]; ix=i;}\\n\\t\\t\\t\\t\\t\\tvar m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? __INT__ : (pw-(e.tabw+e.thumbw)) \\/ (e.gw[ix]);\\n\\t\\t\\t\\t\\t\\tnewh = (e.gh[ix] * m) + (e.tabh + e.thumbh);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\tvar el = document.getElementById(e.c);\\n\\t\\t\\t\\t\\tif (el!==null && el) el.style.height = newh+__DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\tel = document.getElementById(e.c+__DOUBLE_QUOTED_STRING__);\\n\\t\\t\\t\\t\\tif (el!==null && el) {\\n\\t\\t\\t\\t\\t\\tel.style.height = newh+__DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\t\\tel.style.display = __DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t} catch(e){\\n\\t\\t\\t\\t\\tconsole.log(__DOUBLE_QUOTED_STRING__ + e)\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\/\\/});\\n\\t\\t };\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"394a14393ccb142d4278875b36d749de\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/jquery-1.11.0.min.js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"d0f41d87dfbb44c74917aa3e7e6f4c9c\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/viewport-checker\\/dist\\/jquery.viewportchecker.min.js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"0858ec58dbe60e96b4fdf2e45aa60f95\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/typewriter.js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"68b2b21a33a01e0e112230069b0192f7\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n\\t\\t\\twindow.RS_MODULES = window.RS_MODULES || {};\\n\\t\\t\\twindow.RS_MODULES.modules = window.RS_MODULES.modules || {};\\n\\t\\t\\twindow.RS_MODULES.waiting = window.RS_MODULES.waiting || [];\\n\\t\\t\\twindow.RS_MODULES.defered = true;\\n\\t\\t\\twindow.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {};\\n\\t\\t\\twindow.RS_MODULES.type = __SINGLE_QUOTED_STRING__;\\n\\t\\t\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":229,\"function\":\"RevSliderFront::add_waiting_script\",\"hook\":\"wp_footer\",\"priority\":1}]}},{\"term_slug\":\"a198fa0278eff5b1007238f21a844cb8\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/dist\\/vendor\\/regenerator-runtime.min.js?ver=__normalized__\",\"id\":\"regenerator-runtime-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":549,\"function\":\"wp_default_packages\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":549,\"function\":\"wp_default_packages\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"29c76d030187be64189aa8a62c361d19\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill.min.js?ver=__normalized__\",\"id\":\"wp-polyfill-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":549,\"function\":\"wp_default_packages\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"6fc0da9f0d23eae8410103820c7c1c5c\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"contact-form-7-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7 = {\\\"api\\\":{\\\"root\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-json\\\\\\/\\\",\\\"namespace\\\":\\\"contact-form-7\\\\\\/v1\\\"}};\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7 = {\\\"api\\\":{\\\"root\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-json\\\\\\/\\\",\\\"namespace\\\":\\\"contact-form-7\\\\\\/v1\\\"}};\",\"handle\":\"contact-form-7\"}]}},{\"term_slug\":\"6b7e94cb0640140eccfeb0c6d126d3fa\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/js\\/index.js?ver=__normalized__\",\"id\":\"contact-form-7-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"455e0d79375d5c0e7bb2fe24f4408fe7\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/js\\/rbtools.min.js?ver=__normalized__\",\"defer\":\"defer\",\"async\":\"\",\"id\":\"tp-tools-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"tp-tools\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"tp-tools\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"9d2fbb97c2aba76b5c2e11048abcd7a3\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/js\\/rs6.min.js?ver=__normalized__\",\"defer\":\"defer\",\"async\":\"\",\"id\":\"revmin-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"revmin\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"revmin\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"0d54ab34f1393ff50a990bcd43ac9b89\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/www.google.com\\/recaptcha\\/api.js?render=6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s&ver=__normalized__\",\"id\":\"google-recaptcha-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"google-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"google-recaptcha\"},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"google-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"google-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"fffd38e1e2b741ded941b11c8bcee8e2\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"wpcf7-recaptcha-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7_recaptcha = {\\\"sitekey\\\":\\\"6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s\\\",\\\"actions\\\":{\\\"homepage\\\":\\\"homepage\\\",\\\"contactform\\\":\\\"contactform\\\"}};\",\"handle\":\"wpcf7-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7_recaptcha = {\\\"sitekey\\\":\\\"6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s\\\",\\\"actions\\\":{\\\"homepage\\\":\\\"homepage\\\",\\\"contactform\\\":\\\"contactform\\\"}};\",\"handle\":\"wpcf7-recaptcha\"}]}},{\"term_slug\":\"8a7fe833154a0ee7052f4d4fc864ab44\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/modules\\/recaptcha\\/index.js?ver=__normalized__\",\"id\":\"wpcf7-recaptcha-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"b700eea7e3e60850ee69274a67ef5ead\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/scripts\\/fitvids.min.js?ver=__normalized__\",\"id\":\"__ytprefsfitvids__-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"e95a68c301f2a3e94af3ab60d1e49223\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/popper.js\\/1.14.3\\/umd\\/popper.min.js\",\"integrity\":\"sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK\\/l8WvCWPIPm49\",\"crossorigin\":\"anonymous\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"dbdfe8cccebe34ff7041e208736a7942\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/stackpath.bootstrapcdn.com\\/bootstrap\\/4.1.3\\/js\\/bootstrap.min.js\",\"integrity\":\"sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW\\/JmZQ5stwEULTy\",\"crossorigin\":\"anonymous\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"7120b7b6f6e5e34eaab178a0de4148ac\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/validation\\/validate.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"dab16e046124505937d40d90a371de48\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"\\/\\/ajax.aspnetcdn.com\\/ajax\\/jquery.validate\\/1.11.1\\/jquery.validate.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"67c9c739d09cfdaf1697c37a00630a3d\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"\\/\\/ajax.microsoft.com\\/ajax\\/jquery.validate\\/1.11.1\\/additional-methods.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9ca7e7b07112fab0f2659963d081c647\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/validation\\/masks.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e2c5b7b289252d89a64585273c024ec4\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/js\\/owl.carousel.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"ef932f7d78102026336c4df6b9e8ff91\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/fancybox\\/jquery.fancybox.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"54f0b92713a27edb9d4a223c245ad681\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/typewriter-effect\\/dist\\/core.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"308a2319835188db90cf07f966466146\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/vivus@latest\\/dist\\/vivus.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d63eeee74cd3bfbc3da018462afd7b3f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/main.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"285f76a33582e621571d8109572b729f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/client-testimonial\\/client-testimonial.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"30ecfff784f957bc89bf72081232cb3b\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/cloud-native\\/cloud-native.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"c1becf0684470267fde5176dfd043567\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-process\\/our-process.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"de5df74cbbe78f3f4a0610587a35e184\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/services\\/services.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d9fea8205636ef843e6b598ace10ec9f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-clients\\/our-clients.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"22e139cf096a29785f5e03c3cdf7b16d\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b2a1b5e6c3786b7700a4fcb53b4481f1\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"src\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/slick-carousel@1.8.1\\/slick\\/slick.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b2badd021972c22702da7e27c5d6a2c0\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/aos@2.3.1\\/dist\\/aos.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d3db2d0fa38d97f62aac99a855396e59\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(document).ready(function() {\\n\\n$(__SINGLE_QUOTED_STRING__).click(function() {\\n$(__SINGLE_QUOTED_STRING__).slideToggle(__DOUBLE_QUOTED_STRING__);\\n});\\n\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: false,\\ninfinite: false,\\narrows: false,\\nspeed: __INT__,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\nresponsive: [\\n{\\nbreakpoint: __INT__,\\nsettings: {\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__\\n}\\n},\\n{\\nbreakpoint: __INT__,\\nsettings: {\\nslidesToShow: __FLOAT__,\\nslidesToScroll: __INT__\\n}\\n}\\n]\\n});\\nif($(window).width()<__INT__){\\nconst slider1 = $(__SINGLE_QUOTED_STRING__);\\nfunction onSliderAfterChange(event, slick, currentSlide) {\\n$(event.target).data(__SINGLE_QUOTED_STRING__, currentSlide);\\n}\\nfunction onSliderWheel(e) {\\nvar deltaY = e.originalEvent.deltaY,\\n $currentSlider = $(e.currentTarget),\\n currentSlickIndex = $currentSlider.data(__SINGLE_QUOTED_STRING__) || __INT__;\\nif (\\n (deltaY < __INT__ && currentSlickIndex == __INT__) ||\\n (deltaY > __INT__ && currentSlickIndex == $currentSlider.data(__SINGLE_QUOTED_STRING__) - __INT__)\\n) {\\n return;\\n}\\n\\ne.preventDefault();\\n\\nif (e.originalEvent.deltaY < __INT__) {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n} else {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n}\\n}\\n\\nslider1.each(function(index, element) {\\nvar $element = $(element);\\n$element.data(__SINGLE_QUOTED_STRING__, $element.children().length);\\n})\\n.slick({\\nresponsive: [\\n {\\n breakpoint: __INT__,\\n settings: __DOUBLE_QUOTED_STRING__\\n },\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n dots: true,\\n vertical: true,\\n verticalSwiping: true,\\n verticalSwiping: true,\\n infinite: false,\\n }\\n }\\n]\\n})\\n.on(__SINGLE_QUOTED_STRING__, onSliderAfterChange)\\n.on(__SINGLE_QUOTED_STRING__, onSliderWheel);\\n}\\nif($(window).width()<__INT__ && $()){\\nconst slider = $(__SINGLE_QUOTED_STRING__);\\nfunction onSliderAfterChange(event, slick, currentSlide) {\\n$(event.target).data(__SINGLE_QUOTED_STRING__, currentSlide);\\n}\\nfunction onSliderWheel(e) {\\nvar deltaY = e.originalEvent.deltaY,\\n $currentSlider = $(e.currentTarget),\\n currentSlickIndex = $currentSlider.data(__SINGLE_QUOTED_STRING__) || __INT__;\\nif (\\n (deltaY < __INT__ && currentSlickIndex == __INT__) ||\\n (deltaY > __INT__ && currentSlickIndex == $currentSlider.data(__SINGLE_QUOTED_STRING__) - __INT__)\\n) {\\n return;\\n}\\n\\ne.preventDefault();\\n\\nif (e.originalEvent.deltaY < __INT__) {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n} else {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n}\\n}\\n\\nslider.each(function(index, element) {\\nvar $element = $(element);\\n$element.data(__SINGLE_QUOTED_STRING__, $element.children().length);\\n})\\n.slick({\\nresponsive: [\\n {\\n breakpoint: __INT__,\\n settings: __DOUBLE_QUOTED_STRING__\\n },\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n dots: true,\\n vertical: true,\\n verticalSwiping: true,\\n verticalSwiping: true,\\n infinite: false,\\n }\\n }\\n]\\n})\\n.on(__SINGLE_QUOTED_STRING__, onSliderAfterChange)\\n.on(__SINGLE_QUOTED_STRING__, onSliderWheel);\\n}\\n\\nsetTimeout(function () {\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: true,\\narrows: true,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\ninfinite: false,\\nfade: true,\\nprevArrow:__DOUBLE_QUOTED_STRING__,\\nnextArrow:__DOUBLE_QUOTED_STRING__\\n});\\n\\n}, __INT__);\\n\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: false,\\ninfinite: false,\\narrows: false,\\nspeed: __INT__,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\nprevArrow:__DOUBLE_QUOTED_STRING__,\\nnextArrow:__DOUBLE_QUOTED_STRING__,\\nresponsive: [\\n{\\nbreakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: true,\\n\\n }\\n},\\n{\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: true,\\n }\\n}\\n]\\n});\\n\\n\\n\\n\\n\\n\\/\\/ jQuery(__DOUBLE_QUOTED_STRING__).click(()=>{\\n\\/\\/ jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n\\/\\/ })\\n});\\n\\n$(window).on(__DOUBLE_QUOTED_STRING__, function(e){\\nvar windowWidth = $(window).width();\\nif(windowWidth < __INT__){\\n $(__SINGLE_QUOTED_STRING__).slick({\\n dots: false,\\n arrows: false,\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n infinite: false,\\n responsive: [\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __FLOAT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n }\\n }\\n ]\\n });\\n\\n}else{\\n $(__SINGLE_QUOTED_STRING__).slick(__SINGLE_QUOTED_STRING__);\\n}\\n\\n}) \\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"46a6e66b9caf788b688275cac7a26bb5\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\nsetTimeout(() => {\\n $(__DOUBLE_QUOTED_STRING__).attr(__SINGLE_QUOTED_STRING__, __SINGLE_QUOTED_STRING__);\\n}, __INT__);\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"2c372ecf7923e7043aa08b5735b0e957\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n $(__SINGLE_QUOTED_STRING__).click(function(){\\n $(__SINGLE_QUOTED_STRING__).toggleClass(__SINGLE_QUOTED_STRING__);\\n });\\n\\n $(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(__DOUBLE_QUOTED_STRING__).click(function(){\\n jQuery(this).siblings(__DOUBLE_QUOTED_STRING__).slideToggle();\\n jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n console.log(__DOUBLE_QUOTED_STRING__)\\n if (jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).is(__DOUBLE_QUOTED_STRING__)) {\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).slideUp();\\n jQuery(this).siblings(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n }\\n })\\n }\\n \\njQuery(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n});\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"12562413cb77cf11c8ec1b1270ffeca2\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){ \\n $(__DOUBLE_QUOTED_STRING__).slideUp()\\n $(__DOUBLE_QUOTED_STRING__).slideDown()\\n $(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__)\\n jQuery(__DOUBLE_QUOTED_STRING__).click(function(){\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).slideToggle();\\n jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n if (jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).is(__DOUBLE_QUOTED_STRING__)) {\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).slideUp();\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n }\\n }); \\n var numRows = $(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__).length;\\nvar SHOWN = __INT__;\\nvar MORE = __INT__;\\n\\n\\/* get how many more can be shown *\\/\\nvar getNumMore = function(ns) {\\n var more = MORE;\\n var leftOver = numRows - ns;\\n if ((leftOver) < more) {\\n more = leftOver;\\n }\\n return more;\\n}\\n\\/* how many are shown *\\/\\nvar getInitialNumShown = function() {\\n var shown = SHOWN;\\n if (numRows < shown) {\\n shown = numRows;\\n }\\n return shown;\\n}\\n\\/* set how many are initially shown *\\/\\nvar numShown = getInitialNumShown();\\n\\n\\/* set the numMore if less than __INT__ *\\/\\nvar numMore = getNumMore(numShown);\\n\\n\\/* set more html *\\/\\nif (numMore > __INT__) {\\nvar more_html = __SINGLE_QUOTED_STRING__;\\n$(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__ + (numShown - __INT__) + __SINGLE_QUOTED_STRING__).hide().end().after(more_html);\\n}\\n$(__SINGLE_QUOTED_STRING__).click(function() {\\n\\/* determine how much more we should update *\\/\\nnumMore = getNumMore(numShown);\\n\\/* update num shown *\\/\\nnumShown = numShown + numMore;\\n$(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__ + numShown + __SINGLE_QUOTED_STRING__).show();\\n\\n\\/* determine if to show more and how much left over *\\/\\nnumMore = getNumMore(numShown);\\nif (numMore > __INT__) {\\n $(__SINGLE_QUOTED_STRING__).html(numMore);\\n} else {\\n $(__SINGLE_QUOTED_STRING__).remove();\\n}\\n}); \\n }\\n})\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b018faa0938622cc9d86adc1c5b500ae\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n $(__DOUBLE_QUOTED_STRING__).click(function() {\\n $(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).slideUp();\\n if (!$(this).next().is(__DOUBLE_QUOTED_STRING__)) {\\n $(this).next().slideDown();\\n $(this).addClass(__DOUBLE_QUOTED_STRING__);\\n }\\n })\\n }\\n jQuery(__SINGLE_QUOTED_STRING__).trigger(__SINGLE_QUOTED_STRING__);\\n });\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"6563f33063a8fda3041e500a21a4f19f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n $(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n \\n }\\n \\n \\n });\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9564124c6f316693f9a84b1137b0cba7\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n $(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n spaceBetween: __INT__,\\n longSwipesRatio: __FLOAT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n });\\n \\n }\\n \\n \\n });\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"561f494215f84bac2f890b40eb75db0a\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(document).ready(function() {\\n jQuery(__SINGLE_QUOTED_STRING__).trigger(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).click(function (e) {\\n e.preventDefault();\\n var popId = jQuery(this).attr(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n jQuery(popId).addClass(__SINGLE_QUOTED_STRING__);\\n })\\n});\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"82eea9842ad50c4a8eddf3aa2f5897e3\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n $(__SINGLE_QUOTED_STRING__).on(__SINGLE_QUOTED_STRING__, function(evt) {\\n evt.preventDefault();\\n \\/\\/ $(this).toggleClass(__SINGLE_QUOTED_STRING__);\\n $(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n $(this).addClass(__SINGLE_QUOTED_STRING__);\\n var sel = this.getAttribute(__SINGLE_QUOTED_STRING__);\\n $(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__).filter(sel).addClass(__SINGLE_QUOTED_STRING__);\\n });\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"64d07e9dba76f8b08f7cd70fdd9ae020\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n\\tvar app2 = document.getElementById(__SINGLE_QUOTED_STRING__);\\n\\n var typewriter = new Typewriter(app2, {\\n loop: true,\\n cursor: __SINGLE_QUOTED_STRING__,\\n cursorClassName: __SINGLE_QUOTED_STRING__\\n });\\n\\n typewriter.typeString(__SINGLE_QUOTED_STRING__)\\n .pauseFor(__INT__)\\n .deleteAll()\\n .typeString(__SINGLE_QUOTED_STRING__)\\n .pauseFor(__INT__)\\n .deleteAll()\\n .typeString(__SINGLE_QUOTED_STRING__)\\n .pauseFor(__INT__)\\n .start();\\n\\t\\n\\tvar tela = $(window).width();\\n\\n if(tela > __INT__) {\\n \\tvar larg = $(__SINGLE_QUOTED_STRING__).width();\\n\\t var larg2 = larg * __INT__ * __FLOAT__ + __INT__;\\n } else if(tela > __INT__) {\\n \\tvar larg2 = (tela - __INT__)\\/__INT__ + __INT__;\\n } else {\\n \\tvar larg2 = __INT__;\\n }\\n\\n $(__SINGLE_QUOTED_STRING__).css(__SINGLE_QUOTED_STRING__,larg2);\\n\\t$(__SINGLE_QUOTED_STRING__).css(__SINGLE_QUOTED_STRING__,larg2);\\n\\n $(window).resize(function(){\\n \\tif(tela > __INT__) {\\n\\t \\tvar larg = $(__SINGLE_QUOTED_STRING__).width();\\n\\t\\t var larg2 = larg * __INT__ * __FLOAT__ + __INT__;\\n\\t } else if(tela > __INT__) {\\n\\t \\tvar larg2 = (tela - __INT__)\\/__INT__ + __INT__;\\n\\t } else {\\n\\t \\tvar larg2 = __INT__;\\n\\t }\\n\\n\\t $(__SINGLE_QUOTED_STRING__).css(__SINGLE_QUOTED_STRING__,larg2);\\n\\t\\t$(__SINGLE_QUOTED_STRING__).css(__SINGLE_QUOTED_STRING__,larg2);\\n });\\n\",\"node_type\":1,\"sources\":[]}}]','https://translucent.mesoishop.com/tag/hibernate/','','publish','closed','closed','','0c38ffbdff24b0b7cb6651e5f449ade9','','','2022-09-13 04:44:46','2022-09-13 08:44:46','',0,'https://translucent.mesoishop.com/amp_validated_url/0c38ffbdff24b0b7cb6651e5f449ade9/',0,'amp_validated_url','',0),(4801,21,'2022-09-13 04:44:56','2022-09-13 08:44:56','[{\"term_slug\":\"9ef121d867689dffb1e369a9adaf23c4\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/style-isk.css?v=1392178670\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"c683711a32c941e886a2bff9cd5d9c49\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/css\\/owl.carousel.css\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"90a24301d50cfe79801316fe3f329e0e\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/shared.css?v=885986021\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"03cd21eff26611ab82f1811dd26daeab\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/marchine.css?v=2064148582\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"157c13b55df6d419a7a4a7c952b848f6\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1020,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2261,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"754f2bd220d369a2310b0727edf58c57\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"contact-form-7-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/css\\/styles.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"698ed8c3c1252be738d6986e0c37c3cf\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"emcs_calendly_css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/embed-calendly-scheduling\\/assets\\/css\\/widget.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"embed-calendly-scheduling\",\"file\":\"embed-calendly-scheduling.php\",\"line\":39,\"function\":\"emcs_calendly_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"17e920edc403db5a65f76c4be11cbd90\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"social_warfare-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/css\\/style.min.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Script.php\",\"line\":94,\"function\":\"SWP_Script::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"b2b05336e9d16428fe4d70031a73afc4\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"rs-plugin-settings-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/rs6.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":134,\"function\":\"RevSliderFront::add_inline_css\",\"hook\":\"wp_footer\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"rs-plugin-settings\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"a845e1e06b53116c205bceaff1516022\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.css\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"6d4404ba5312e7463b373a66c2eda446\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/css\\/all.min.css\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"0ad7242b71b7e1675d4323aa70985997\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"style\",\"node_attributes\":{\"type\":\"text\\/css\",\"id\":\"wp-custom-css\"},\"text\":\"\\n\\t\\t\\t\\n.tek-ai {\\n\\theight: auto;\\n}\\n\\n.tek-ai img {\\n\\theight: auto !important;\\n\\tmax-height: 570px;\\n}\\n\\n@media (max-width:992px) {\\n .tek-ai {\\n \\theight: auto;\\n\\t\\ttext-align: center !important;\\n\\t}\\n}\\n\\n@media (min-width: 1400px) {\\n .tek-ai {\\n \\theight: auto;\\n\\t}\\n}\\n\\n.footer-2022__menu--list.footer_links:nth-child(4) {\\n display: none;\\n}\\n\\n\\t\\t\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"theme.php\",\"line\":1824,\"function\":\"wp_custom_css_cb\",\"hook\":\"wp_head\",\"priority\":101}]}},{\"term_slug\":\"28973f0cc11760f5194f0f375115bb5a\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"rs-slide\",\"parent_name\":\"rs-slides\",\"node_attributes\":{\"data-key\":\"rs-28\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner2.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"907dbeff6585cfea5c5b45a6e7da3fb0\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,42;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"327b1739bdcf02881c195c26b04cb722\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,25,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,auto,714px,454px;h:auto,auto,89px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"1f75be8113554ac16a6902c13d81ed3b\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"51079d28a732c15e6a7abb2e096a3773\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:150;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"6fd2ec91fec809029dda3394c39907de\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"a\",\"parent_name\":\"rs-slide\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-8\",\"class\":\"rs-layer rev-btn amp-wp-dfa190a\",\"href\":\"https:\\/\\/calendly.com\\/tc-results\",\"target\":\"_self\",\"data-type\":\"button\",\"data-color\":\"#182647\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,2px,0;yo:480px,490px,489px,400px;\",\"data-text\":\"w:normal;s:18,17,15,20;l:50,41,50,50;fw:900,900,900,700;a:left,left,center,center;\",\"data-dim\":\"minh:0px,none,none,none;\",\"data-padding\":\"t:7,6,0,0;r:50,41,63,53;b:7,6,0,0;l:50,41,63,53;\",\"data-border\":\"bor:30px,30px,30px,30px;\",\"data-frame_0\":\"x:0,0,0px,0px;y:0,0,0px,0px;\",\"data-frame_1\":\"x:0,0,0px,0px;y:0,0,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-frame_hover\":\"c:#182647;bgc:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);bor:30px,30px,30px,30px;sp:100;e:power1.inOut;bri:120%;\",\"data-amp-original-style\":\"z-index:8;background:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);font-family:\'Raleway\';\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"1a19dd503158279d1f97ad286870f18d\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"amp-img\",\"parent_name\":\"div\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2019\\/03\\/2000px-The_Hospital_for_Sick_Children_Logo.svg_.png \",\"width\":\"310\",\"height\":\"100\",\"class\":\"amp-wp-enforced-sizes amp-wp-035b591\",\"layout\":\"intrinsic\",\"data-amp-original-style\":\"max-height: 50px;\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"b102a27293ee6465b3e25a5e44d74aa6\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"span\",\"parent_name\":\"p\",\"node_attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"3945dd509b3ef3f0c91f0c850ce6d074\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"rs-module-wrap\",\"parent_name\":\"div\",\"node_attributes\":{\"id\":\"rev_slider_7_1_wrapper\",\"data-alias\":\"slider-02-01-2022\",\"data-source\":\"gallery\",\"data-amp-original-style\":\"visibility:hidden;background:transparent;padding:0;margin:0px auto;margin-top:0;margin-bottom:0;\",\"class\":\"amp-wp-58a99c6\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"84e497b381cbb079db874863c5b11bd7\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"style\",\"node_attributes\":[],\"text\":\"\\r\\n\\t@font-face {\\r\\n\\t\\tfont-family: \\\"sw-icon-font\\\";\\r\\n\\t\\tsrc:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0\\\");\\r\\n\\t\\tsrc:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0#iefix\\\") format(\\\"embedded-opentype\\\"),\\r\\n\\t\\turl(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.woff?ver=4.3.0\\\") format(\\\"woff\\\"),\\r\\n\\t\\turl(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.ttf?ver=4.3.0\\\") format(\\\"truetype\\\"),\\r\\n\\t\\turl(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.svg?ver=4.3.0#1445203416\\\") format(\\\"svg\\\");\\r\\n\\t\\tfont-weight: normal;\\r\\n\\t\\tfont-style: normal;\\r\\n\\t\\tfont-display:block;\\r\\n\\t}\\r\\n\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Header_Output.php\",\"line\":69,\"function\":\"SWP_Header_Output::add_header_output\",\"hook\":\"wp_head\",\"priority\":1}]}},{\"term_slug\":\"0dba9387ee3b61c1895ca5730d0d026d\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"section\",\"parent_name\":\"div\",\"node_attributes\":{\"data-amp-original-style\":\"background-color: #121D3D;\",\"class\":\"amp-wp-61d4b04\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"062fe80a5344eb489ed5e93302040e68\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"div\",\"parent_name\":\"form\",\"node_attributes\":{\"data-amp-original-style\":\"display: none;\",\"class\":\"amp-wp-224b51a\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/contact-form-functions.php\",\"line\":105,\"function\":\"wpcf7_contact_form_tag_func\",\"shortcode\":\"contact-form-7\"}]}},{\"term_slug\":\"4281f21ed8dba5c268ac3796b5136911\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/embed-calendly-scheduling\\/assets\\/js\\/widget.js?ver=__normalized__\",\"id\":\"emcs_calendly_js-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"embed-calendly-scheduling\",\"file\":\"embed-calendly-scheduling.php\",\"line\":39,\"function\":\"emcs_calendly_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"emcs_calendly_js\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"emcs_calendly_js\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"ad851d2fd6457e6427554d69d5544899\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/jquery\\/jquery.min.js?ver=__normalized__\",\"id\":\"jquery-core-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"d95172fdd6b6200ab9aad6f23b20546c\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/jquery\\/jquery-migrate.min.js?ver=__normalized__\",\"id\":\"jquery-migrate-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"22a3cbf1fa1e43f7e3d9b33f00da4349\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"__ytprefs__-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var _EPYT_ = {\\\"ajaxurl\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-admin\\\\\\/admin-ajax.php\\\",\\\"security\\\":\\\"a8468eb17c\\\",\\\"gallery_scrolloffset\\\":\\\"20\\\",\\\"eppathtoscripts\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/scripts\\\\\\/\\\",\\\"eppath\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/\\\",\\\"epresponsiveselector\\\":\\\"[\\\\\\\"iframe.__youtube_prefs__\\\\\\\",\\\\\\\"iframe[src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-gallerysrc*=\'youtube.com\']\\\\\\\"]\\\",\\\"epdovol\\\":\\\"1\\\",\\\"version\\\":\\\"14.1.2\\\",\\\"evselector\\\":\\\"iframe.__youtube_prefs__[src], iframe[src*=\\\\\\\"youtube.com\\\\\\/embed\\\\\\/\\\\\\\"], iframe[src*=\\\\\\\"youtube-nocookie.com\\\\\\/embed\\\\\\/\\\\\\\"]\\\",\\\"ajax_compat\\\":\\\"\\\",\\\"ytapi_load\\\":\\\"light\\\",\\\"pause_others\\\":\\\"\\\",\\\"stopMobileBuffer\\\":\\\"1\\\",\\\"facade_mode\\\":\\\"\\\",\\\"not_live_on_channel\\\":\\\"\\\",\\\"vi_active\\\":\\\"\\\",\\\"vi_js_posttypes\\\":[]};\",\"handle\":\"__ytprefs__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var _EPYT_ = {\\\"ajaxurl\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-admin\\\\\\/admin-ajax.php\\\",\\\"security\\\":\\\"a8468eb17c\\\",\\\"gallery_scrolloffset\\\":\\\"20\\\",\\\"eppathtoscripts\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/scripts\\\\\\/\\\",\\\"eppath\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/\\\",\\\"epresponsiveselector\\\":\\\"[\\\\\\\"iframe.__youtube_prefs__\\\\\\\",\\\\\\\"iframe[src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-gallerysrc*=\'youtube.com\']\\\\\\\"]\\\",\\\"epdovol\\\":\\\"1\\\",\\\"version\\\":\\\"14.1.2\\\",\\\"evselector\\\":\\\"iframe.__youtube_prefs__[src], iframe[src*=\\\\\\\"youtube.com\\\\\\/embed\\\\\\/\\\\\\\"], iframe[src*=\\\\\\\"youtube-nocookie.com\\\\\\/embed\\\\\\/\\\\\\\"]\\\",\\\"ajax_compat\\\":\\\"\\\",\\\"ytapi_load\\\":\\\"light\\\",\\\"pause_others\\\":\\\"\\\",\\\"stopMobileBuffer\\\":\\\"1\\\",\\\"facade_mode\\\":\\\"\\\",\\\"not_live_on_channel\\\":\\\"\\\",\\\"vi_active\\\":\\\"\\\",\\\"vi_js_posttypes\\\":[]};\",\"handle\":\"__ytprefs__\"}]}},{\"term_slug\":\"38f5af99f1aa7d42f770794b2aebc370\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/scripts\\/ytprefs.min.js?ver=__normalized__\",\"id\":\"__ytprefs__-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"__ytprefs__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"__ytprefs__\"},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"60cb9e5de0de6a4012c105b98464b149\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"function setREVStartSize(e){\\n\\t\\t\\t\\/\\/window.requestAnimationFrame(function() {\\n\\t\\t\\t\\twindow.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW;\\n\\t\\t\\t\\twindow.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH;\\n\\t\\t\\t\\ttry {\\n\\t\\t\\t\\t\\tvar pw = document.getElementById(e.c).parentNode.offsetWidth,\\n\\t\\t\\t\\t\\t\\tnewh;\\n\\t\\t\\t\\t\\tpw = pw===__INT__ || isNaN(pw) || (e.l==__DOUBLE_QUOTED_STRING__ || e.layout==__DOUBLE_QUOTED_STRING__) ? window.RSIW : pw;\\n\\t\\t\\t\\t\\te.tabw = e.tabw===undefined ? __INT__ : parseInt(e.tabw);\\n\\t\\t\\t\\t\\te.thumbw = e.thumbw===undefined ? __INT__ : parseInt(e.thumbw);\\n\\t\\t\\t\\t\\te.tabh = e.tabh===undefined ? __INT__ : parseInt(e.tabh);\\n\\t\\t\\t\\t\\te.thumbh = e.thumbh===undefined ? __INT__ : parseInt(e.thumbh);\\n\\t\\t\\t\\t\\te.tabhide = e.tabhide===undefined ? __INT__ : parseInt(e.tabhide);\\n\\t\\t\\t\\t\\te.thumbhide = e.thumbhide===undefined ? __INT__ : parseInt(e.thumbhide);\\n\\t\\t\\t\\t\\te.mh = e.mh===undefined || e.mh==__DOUBLE_QUOTED_STRING__ || e.mh===__DOUBLE_QUOTED_STRING__ ? __INT__ : parseInt(e.mh,__INT__);\\n\\t\\t\\t\\t\\tif(e.layout===__DOUBLE_QUOTED_STRING__ || e.l===__DOUBLE_QUOTED_STRING__)\\n\\t\\t\\t\\t\\t\\tnewh = Math.max(e.mh,window.RSIH);\\n\\t\\t\\t\\t\\telse{\\n\\t\\t\\t\\t\\t\\te.gw = Array.isArray(e.gw) ? e.gw : [e.gw];\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===__INT__) e.gw[i] = e.gw[i__INT__];\\n\\t\\t\\t\\t\\t\\te.gh = e.el===undefined || e.el===__DOUBLE_QUOTED_STRING__ || (Array.isArray(e.el) && e.el.length==__INT__)? e.gh : e.el;\\n\\t\\t\\t\\t\\t\\te.gh = Array.isArray(e.gh) ? e.gh : [e.gh];\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===__INT__) e.gh[i] = e.gh[i__INT__];\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\tvar nl = new Array(e.rl.length),\\n\\t\\t\\t\\t\\t\\t\\tix = __INT__,\\n\\t\\t\\t\\t\\t\\t\\tsl;\\n\\t\\t\\t\\t\\t\\te.tabw = e.tabhide>=pw ? __INT__ : e.tabw;\\n\\t\\t\\t\\t\\t\\te.thumbw = e.thumbhide>=pw ? __INT__ : e.thumbw;\\n\\t\\t\\t\\t\\t\\te.tabh = e.tabhide>=pw ? __INT__ : e.tabh;\\n\\t\\t\\t\\t\\t\\te.thumbh = e.thumbhide>=pw ? __INT__ : e.thumbh;\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) nl[i] = e.rl[i]nl[i] && nl[i]>__INT__) { sl = nl[i]; ix=i;}\\n\\t\\t\\t\\t\\t\\tvar m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? __INT__ : (pw-(e.tabw+e.thumbw)) \\/ (e.gw[ix]);\\n\\t\\t\\t\\t\\t\\tnewh = (e.gh[ix] * m) + (e.tabh + e.thumbh);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\tvar el = document.getElementById(e.c);\\n\\t\\t\\t\\t\\tif (el!==null && el) el.style.height = newh+__DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\tel = document.getElementById(e.c+__DOUBLE_QUOTED_STRING__);\\n\\t\\t\\t\\t\\tif (el!==null && el) {\\n\\t\\t\\t\\t\\t\\tel.style.height = newh+__DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\t\\tel.style.display = __DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t} catch(e){\\n\\t\\t\\t\\t\\tconsole.log(__DOUBLE_QUOTED_STRING__ + e)\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\/\\/});\\n\\t\\t };\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"394a14393ccb142d4278875b36d749de\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/jquery-1.11.0.min.js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"d0f41d87dfbb44c74917aa3e7e6f4c9c\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/viewport-checker\\/dist\\/jquery.viewportchecker.min.js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"0858ec58dbe60e96b4fdf2e45aa60f95\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/typewriter.js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"3904651acb2c4c1a36bbf2eea35a01ba\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-27-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,50;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"7b5e889ea3d42183be9b55c1edcfbc2b\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-27-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,26,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,auto,681px,454px;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"aaab19a79deb4ac531da87ba40e11216\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-27-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"0aed1255823257c61057140d7bb2c87c\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-27-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"2f30b3cfc5ac886741ed7e829ea10dcb\",\"data\":{\"node_name\":\"rs-slide\",\"parent_name\":\"rs-slides\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"data-key\":\"rs-27\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner1.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"ceeebf838b1b80b0344ea4e74a224185\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-30-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,50;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,630px,443px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"2a7c3571eea257538e926d4f1017694a\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-30-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,26,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,687px,728px,454px;h:auto,auto,61px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"08d09df5d3e5e4dc0ed7cebb2bde858f\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-30-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"b1f69cd6028d56c6fcfd976ccc5f0bb5\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-30-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"ac6237c605e83296cb48c362d8f95986\",\"data\":{\"node_name\":\"rs-slide\",\"parent_name\":\"rs-slides\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"data-key\":\"rs-30\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/home4.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"abd80e162efd58f72c1290c2d1f5216a\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-29-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,50;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,846px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"8cc0d02ea3049623c89539e9e28fd6f0\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-29-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,26,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,1025px,722px,454px;h:auto,auto,89px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"50af8f4d5f21bdee419239a3567badcc\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-29-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"ad4ebac89e192f20b89a49267e72fa38\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-29-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"591ae21bed9d9edb2b6db9f01fc0cf1d\",\"data\":{\"node_name\":\"rs-slide\",\"parent_name\":\"rs-slides\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"data-key\":\"rs-29\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/home31.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"202e2f6a377113b03e5b248699e2c239\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,42;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"628624e4cdb78df8fd5d4aadc6668cc9\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,25,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,auto,714px,454px;h:auto,auto,89px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"5879dd0446a5dcdc3d415ffa1dfc0a53\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"912487ff20bb195ed59441158086f5ed\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:150;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"545094b279f4c55f91bd2a471115680e\",\"data\":{\"node_name\":\"rs-slide\",\"parent_name\":\"rs-slides\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"data-key\":\"rs-28\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner2.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"e63b409eb86607034e13f0995b45120a\",\"data\":{\"node_name\":\"rs-slides\",\"parent_name\":\"rs-module\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":[],\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"75bb11fc9ebb26f1f4b64912338d9750\",\"data\":{\"node_name\":\"rs-module\",\"parent_name\":\"rs-module-wrap\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"rev_slider_7_1\",\"data-version\":\"6.5.23\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"50aa68c36e299f37c43660ce1c8e7b18\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"rs-module-wrap\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n\\t\\t\\t\\t\\tsetREVStartSize({c: __SINGLE_QUOTED_STRING__,rl:[__INT__,__INT__,__INT__,__INT__],el:[__INT__,__INT__,__INT__,__INT__],gw:[__INT__,__INT__,__INT__,__INT__],gh:[__INT__,__INT__,__INT__,__INT__],type:__SINGLE_QUOTED_STRING__,justify:__SINGLE_QUOTED_STRING__,layout:__SINGLE_QUOTED_STRING__,mh:__DOUBLE_QUOTED_STRING__});if (window.RS_MODULES!==undefined && window.RS_MODULES.modules!==undefined && window.RS_MODULES.modules[__DOUBLE_QUOTED_STRING__]!==undefined) {window.RS_MODULES.modules[__DOUBLE_QUOTED_STRING__].once = false;window.revapi7 = undefined;if (window.RS_MODULES.checkMinimal!==undefined) window.RS_MODULES.checkMinimal()}\\n\\t\\t\\t\\t\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"e47c6c22bfca9bbab0c46ce97914d209\",\"data\":{\"node_name\":\"rs-module-wrap\",\"parent_name\":\"div\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"rev_slider_7_1_wrapper\",\"data-alias\":\"slider-02-01-2022\",\"data-source\":\"gallery\",\"data-amp-original-style\":\"visibility:hidden;background:transparent;padding:0;margin:0px auto;margin-top:0;margin-bottom:0;\",\"class\":\"amp-wp-58a99c6\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"dd4ea0d50e6331de5a89561bfe24ffca\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"div\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\r\\n $(document).ready(function() {\\r\\n if (window.screen.availWidth >= __INT__) {\\r\\n console.log(__SINGLE_QUOTED_STRING__, window.screen.availWidth)\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n } else {\\r\\n console.log(__SINGLE_QUOTED_STRING__, window.screen.availWidth)\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n }\\r\\n })\\r\\n\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"2d27220cfea15653af76d8312c3dd31f\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"id\":\"headingOne\",\"class\":\"cp-services__box--column\",\"type\":\"button\",\"data-toggle\":\"collapse\",\"data-target\":\"#collapseOne\",\"aria-expanded\":\"true\",\"aria-controls\":\"collapseOne\"},\"node_name\":\"type\",\"parent_name\":\"div\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"3b0ee603f3aa83553e1574a2a66dc58b\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"id\":\"headingTwo\",\"class\":\"cp-services__box--column\",\"type\":\"button\",\"data-toggle\":\"collapse\",\"data-target\":\"#collapseTwo\",\"aria-expanded\":\"false\",\"aria-controls\":\"collapseTwo\"},\"node_name\":\"type\",\"parent_name\":\"div\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"39bd6c29d1862a73d9d5efe977c98dc7\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"id\":\"headingThree\",\"class\":\"cp-services__box--column\",\"type\":\"button\",\"data-toggle\":\"collapse\",\"data-target\":\"#collapseThree\",\"aria-expanded\":\"false\",\"aria-controls\":\"collapseThree\"},\"node_name\":\"type\",\"parent_name\":\"div\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"63bca055743ddac99d793e2ad9520292\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/06\\/gotoloans.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"143\",\"height\":\"37\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"b0deb28a473276707cdc63f576ff7a32\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/06\\/gotoloans.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"143\",\"height\":\"37\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"b4f0efc7236126de4f46ae929436c3f9\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/blackbook.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"227\",\"height\":\"31\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"7d1496ce660ac21d39094ec8c969dc90\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/blackbook.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"227\",\"height\":\"31\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"358c370403358aaf8d16beaee1ce222e\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/volentix3.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"96\",\"height\":\"96\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"e1aec95a897868f7c1f258d1a009dc43\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/volentix3.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"96\",\"height\":\"96\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"073590543cb1c4f8ce2d56d4300475b1\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/uhn.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"108\",\"height\":\"32\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"2808956575f8ac30a93a8d5693af02a7\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/uhn.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"108\",\"height\":\"32\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"63bca055743ddac99d793e2ad9520292\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/06\\/gotoloans.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"143\",\"height\":\"37\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"b0deb28a473276707cdc63f576ff7a32\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/06\\/gotoloans.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"143\",\"height\":\"37\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"b4f0efc7236126de4f46ae929436c3f9\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/blackbook.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"227\",\"height\":\"31\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"7d1496ce660ac21d39094ec8c969dc90\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/blackbook.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"227\",\"height\":\"31\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"8fc491d10cf3d4f353141f2c85b9641f\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2019\\/03\\/2000px-The_Hospital_for_Sick_Children_Logo.svg_.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"310\",\"height\":\"100\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"1998a41cc20254f3fbedcfad6f4353c5\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2019\\/03\\/2000px-The_Hospital_for_Sick_Children_Logo.svg_.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"310\",\"height\":\"100\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"6c4c478544820da9cdf0cdeba3b91ab5\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/logo-nuc_notag.jpg\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"280\",\"height\":\"89\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"e03c25c8ba975c77e0c366bf30a5bd38\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/logo-nuc_notag.jpg\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"280\",\"height\":\"89\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"358c370403358aaf8d16beaee1ce222e\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/volentix3.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"96\",\"height\":\"96\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"e1aec95a897868f7c1f258d1a009dc43\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/volentix3.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"96\",\"height\":\"96\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"68b2b21a33a01e0e112230069b0192f7\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n\\t\\t\\twindow.RS_MODULES = window.RS_MODULES || {};\\n\\t\\t\\twindow.RS_MODULES.modules = window.RS_MODULES.modules || {};\\n\\t\\t\\twindow.RS_MODULES.waiting = window.RS_MODULES.waiting || [];\\n\\t\\t\\twindow.RS_MODULES.defered = true;\\n\\t\\t\\twindow.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {};\\n\\t\\t\\twindow.RS_MODULES.type = __SINGLE_QUOTED_STRING__;\\n\\t\\t\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":229,\"function\":\"RevSliderFront::add_waiting_script\",\"hook\":\"wp_footer\",\"priority\":1}]}},{\"term_slug\":\"07f331d5771ab8204fd812e9bd91d3ea\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n\\t\\tif(typeof revslider_showDoubleJqueryError === __DOUBLE_QUOTED_STRING__) {function revslider_showDoubleJqueryError(sliderID) {console.log(__DOUBLE_QUOTED_STRING__);console.log(__DOUBLE_QUOTED_STRING__);console.log(__DOUBLE_QUOTED_STRING__);console.log(__DOUBLE_QUOTED_STRING__);return __DOUBLE_QUOTED_STRING__;}}\\n\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"includes\\/output.class.php\",\"line\":7058,\"function\":\"RevSliderOutput::add_inline_double_jquery_error\",\"hook\":\"wp_footer\",\"priority\":10}]}},{\"term_slug\":\"a198fa0278eff5b1007238f21a844cb8\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/dist\\/vendor\\/regenerator-runtime.min.js?ver=__normalized__\",\"id\":\"regenerator-runtime-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":549,\"function\":\"wp_default_packages\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":549,\"function\":\"wp_default_packages\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"29c76d030187be64189aa8a62c361d19\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill.min.js?ver=__normalized__\",\"id\":\"wp-polyfill-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":549,\"function\":\"wp_default_packages\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"6fc0da9f0d23eae8410103820c7c1c5c\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"contact-form-7-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7 = {\\\"api\\\":{\\\"root\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-json\\\\\\/\\\",\\\"namespace\\\":\\\"contact-form-7\\\\\\/v1\\\"}};\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7 = {\\\"api\\\":{\\\"root\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-json\\\\\\/\\\",\\\"namespace\\\":\\\"contact-form-7\\\\\\/v1\\\"}};\",\"handle\":\"contact-form-7\"}]}},{\"term_slug\":\"6b7e94cb0640140eccfeb0c6d126d3fa\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/js\\/index.js?ver=__normalized__\",\"id\":\"contact-form-7-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"455e0d79375d5c0e7bb2fe24f4408fe7\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/js\\/rbtools.min.js?ver=__normalized__\",\"defer\":\"defer\",\"async\":\"\",\"id\":\"tp-tools-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"tp-tools\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"tp-tools\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"9d2fbb97c2aba76b5c2e11048abcd7a3\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/js\\/rs6.min.js?ver=__normalized__\",\"defer\":\"defer\",\"async\":\"\",\"id\":\"revmin-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"revmin\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"revmin\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"0d54ab34f1393ff50a990bcd43ac9b89\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/www.google.com\\/recaptcha\\/api.js?render=6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s&ver=__normalized__\",\"id\":\"google-recaptcha-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"google-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"google-recaptcha\"},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"google-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"google-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"fffd38e1e2b741ded941b11c8bcee8e2\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"wpcf7-recaptcha-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7_recaptcha = {\\\"sitekey\\\":\\\"6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s\\\",\\\"actions\\\":{\\\"homepage\\\":\\\"homepage\\\",\\\"contactform\\\":\\\"contactform\\\"}};\",\"handle\":\"wpcf7-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7_recaptcha = {\\\"sitekey\\\":\\\"6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s\\\",\\\"actions\\\":{\\\"homepage\\\":\\\"homepage\\\",\\\"contactform\\\":\\\"contactform\\\"}};\",\"handle\":\"wpcf7-recaptcha\"}]}},{\"term_slug\":\"8a7fe833154a0ee7052f4d4fc864ab44\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/modules\\/recaptcha\\/index.js?ver=__normalized__\",\"id\":\"wpcf7-recaptcha-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"b700eea7e3e60850ee69274a67ef5ead\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/scripts\\/fitvids.min.js?ver=__normalized__\",\"id\":\"__ytprefsfitvids__-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"d9c993ebac688f060c8b7b4c18f2346f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"id\":\"rs-initialisation-scripts\"},\"text\":\"\\n\\t\\tvar\\ttpj = jQuery;\\n\\n\\t\\tvar\\trevapi7;\\n\\n\\t\\tif(window.RS_MODULES === undefined) window.RS_MODULES = {};\\n\\t\\tif(RS_MODULES.modules === undefined) RS_MODULES.modules = {};\\n\\t\\tRS_MODULES.modules[__DOUBLE_QUOTED_STRING__] = {once: RS_MODULES.modules[__DOUBLE_QUOTED_STRING__]!==undefined ? RS_MODULES.modules[__DOUBLE_QUOTED_STRING__].once : undefined, init:function() {\\n\\t\\t\\twindow.revapi7 = window.revapi7===undefined || window.revapi7===null || window.revapi7.length===__INT__ ? document.getElementById(__DOUBLE_QUOTED_STRING__) : window.revapi7;\\n\\t\\t\\tif(window.revapi7 === null || window.revapi7 === undefined || window.revapi7.length==__INT__) { window.revapi7initTry = window.revapi7initTry ===undefined ? __INT__ : window.revapi7initTry+__INT__; if (window.revapi7initTry<__INT__) requestAnimationFrame(function() {RS_MODULES.modules[__DOUBLE_QUOTED_STRING__].init()}); return;}\\n\\t\\t\\twindow.revapi7 = jQuery(window.revapi7);\\n\\t\\t\\tif(window.revapi7.revolution==undefined){ revslider_showDoubleJqueryError(__DOUBLE_QUOTED_STRING__); return;}\\n\\t\\t\\trevapi7.revolutionInit({\\n\\t\\t\\t\\t\\trevapi:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tDPR:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tsliderLayout:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tvisibilityLevels:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tgridwidth:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tgridheight:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tlazyType:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tperspective:__INT__,\\n\\t\\t\\t\\t\\tperspectiveType:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\teditorheight:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tresponsiveLevels:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tprogressBar:{disableProgressBar:true},\\n\\t\\t\\t\\t\\tnavigation: {\\n\\t\\t\\t\\t\\t\\twheelCallDelay:__INT__,\\n\\t\\t\\t\\t\\t\\ttouch: {\\n\\t\\t\\t\\t\\t\\t\\ttouchenabled:true,\\n\\t\\t\\t\\t\\t\\t\\ttouchOnDesktop:true\\n\\t\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\t\\tarrows: {\\n\\t\\t\\t\\t\\t\\t\\tenable:true,\\n\\t\\t\\t\\t\\t\\t\\tstyle:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\tleft: {\\n\\t\\t\\t\\t\\t\\t\\t\\th_align:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\t\\tv_align:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\t\\th_offset:__INT__,\\n\\t\\t\\t\\t\\t\\t\\t\\tv_offset:__INT__\\n\\t\\t\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\t\\t\\tright: {\\n\\t\\t\\t\\t\\t\\t\\t\\tanim:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\t\\th_align:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\t\\tv_align:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\t\\th_offset:__INT__,\\n\\t\\t\\t\\t\\t\\t\\t\\tv_offset:__INT__\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\t\\tbullets: {\\n\\t\\t\\t\\t\\t\\t\\tenable:true,\\n\\t\\t\\t\\t\\t\\t\\ttmp:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\tstyle:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\tv_offset:__INT__\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\tviewPort: {\\n\\t\\t\\t\\t\\t\\tglobal:true,\\n\\t\\t\\t\\t\\t\\tglobalDist:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\tenable:false\\n\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\tfallbacks: {\\n\\t\\t\\t\\t\\t\\tallowHTML5AutoPlayOnAndroid:true\\n\\t\\t\\t\\t\\t},\\n\\t\\t\\t});\\n\\t\\t\\t\\n\\t\\t}} \\/\\/ End of RevInitScript\\n\\n\\t\\tif (window.RS_MODULES.checkMinimal!==undefined) { window.RS_MODULES.checkMinimal();};\\n\\t\",\"node_type\":1,\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":162,\"function\":\"RevSliderFront::add_inline_js\",\"hook\":\"wp_print_footer_scripts\",\"priority\":100}]}},{\"term_slug\":\"e95a68c301f2a3e94af3ab60d1e49223\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/popper.js\\/1.14.3\\/umd\\/popper.min.js\",\"integrity\":\"sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK\\/l8WvCWPIPm49\",\"crossorigin\":\"anonymous\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"dbdfe8cccebe34ff7041e208736a7942\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/stackpath.bootstrapcdn.com\\/bootstrap\\/4.1.3\\/js\\/bootstrap.min.js\",\"integrity\":\"sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW\\/JmZQ5stwEULTy\",\"crossorigin\":\"anonymous\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"7120b7b6f6e5e34eaab178a0de4148ac\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/validation\\/validate.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"dab16e046124505937d40d90a371de48\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"\\/\\/ajax.aspnetcdn.com\\/ajax\\/jquery.validate\\/1.11.1\\/jquery.validate.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"67c9c739d09cfdaf1697c37a00630a3d\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"\\/\\/ajax.microsoft.com\\/ajax\\/jquery.validate\\/1.11.1\\/additional-methods.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9ca7e7b07112fab0f2659963d081c647\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/validation\\/masks.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e2c5b7b289252d89a64585273c024ec4\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/js\\/owl.carousel.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"ef932f7d78102026336c4df6b9e8ff91\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/fancybox\\/jquery.fancybox.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"54f0b92713a27edb9d4a223c245ad681\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/typewriter-effect\\/dist\\/core.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"308a2319835188db90cf07f966466146\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/vivus@latest\\/dist\\/vivus.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d63eeee74cd3bfbc3da018462afd7b3f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/main.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"285f76a33582e621571d8109572b729f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/client-testimonial\\/client-testimonial.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"30ecfff784f957bc89bf72081232cb3b\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/cloud-native\\/cloud-native.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"c1becf0684470267fde5176dfd043567\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-process\\/our-process.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"de5df74cbbe78f3f4a0610587a35e184\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/services\\/services.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d9fea8205636ef843e6b598ace10ec9f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-clients\\/our-clients.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"22e139cf096a29785f5e03c3cdf7b16d\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b2a1b5e6c3786b7700a4fcb53b4481f1\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"src\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/slick-carousel@1.8.1\\/slick\\/slick.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b2badd021972c22702da7e27c5d6a2c0\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/aos@2.3.1\\/dist\\/aos.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d3db2d0fa38d97f62aac99a855396e59\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(document).ready(function() {\\n\\n$(__SINGLE_QUOTED_STRING__).click(function() {\\n$(__SINGLE_QUOTED_STRING__).slideToggle(__DOUBLE_QUOTED_STRING__);\\n});\\n\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: false,\\ninfinite: false,\\narrows: false,\\nspeed: __INT__,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\nresponsive: [\\n{\\nbreakpoint: __INT__,\\nsettings: {\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__\\n}\\n},\\n{\\nbreakpoint: __INT__,\\nsettings: {\\nslidesToShow: __FLOAT__,\\nslidesToScroll: __INT__\\n}\\n}\\n]\\n});\\nif($(window).width()<__INT__){\\nconst slider1 = $(__SINGLE_QUOTED_STRING__);\\nfunction onSliderAfterChange(event, slick, currentSlide) {\\n$(event.target).data(__SINGLE_QUOTED_STRING__, currentSlide);\\n}\\nfunction onSliderWheel(e) {\\nvar deltaY = e.originalEvent.deltaY,\\n $currentSlider = $(e.currentTarget),\\n currentSlickIndex = $currentSlider.data(__SINGLE_QUOTED_STRING__) || __INT__;\\nif (\\n (deltaY < __INT__ && currentSlickIndex == __INT__) ||\\n (deltaY > __INT__ && currentSlickIndex == $currentSlider.data(__SINGLE_QUOTED_STRING__) - __INT__)\\n) {\\n return;\\n}\\n\\ne.preventDefault();\\n\\nif (e.originalEvent.deltaY < __INT__) {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n} else {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n}\\n}\\n\\nslider1.each(function(index, element) {\\nvar $element = $(element);\\n$element.data(__SINGLE_QUOTED_STRING__, $element.children().length);\\n})\\n.slick({\\nresponsive: [\\n {\\n breakpoint: __INT__,\\n settings: __DOUBLE_QUOTED_STRING__\\n },\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n dots: true,\\n vertical: true,\\n verticalSwiping: true,\\n verticalSwiping: true,\\n infinite: false,\\n }\\n }\\n]\\n})\\n.on(__SINGLE_QUOTED_STRING__, onSliderAfterChange)\\n.on(__SINGLE_QUOTED_STRING__, onSliderWheel);\\n}\\nif($(window).width()<__INT__ && $()){\\nconst slider = $(__SINGLE_QUOTED_STRING__);\\nfunction onSliderAfterChange(event, slick, currentSlide) {\\n$(event.target).data(__SINGLE_QUOTED_STRING__, currentSlide);\\n}\\nfunction onSliderWheel(e) {\\nvar deltaY = e.originalEvent.deltaY,\\n $currentSlider = $(e.currentTarget),\\n currentSlickIndex = $currentSlider.data(__SINGLE_QUOTED_STRING__) || __INT__;\\nif (\\n (deltaY < __INT__ && currentSlickIndex == __INT__) ||\\n (deltaY > __INT__ && currentSlickIndex == $currentSlider.data(__SINGLE_QUOTED_STRING__) - __INT__)\\n) {\\n return;\\n}\\n\\ne.preventDefault();\\n\\nif (e.originalEvent.deltaY < __INT__) {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n} else {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n}\\n}\\n\\nslider.each(function(index, element) {\\nvar $element = $(element);\\n$element.data(__SINGLE_QUOTED_STRING__, $element.children().length);\\n})\\n.slick({\\nresponsive: [\\n {\\n breakpoint: __INT__,\\n settings: __DOUBLE_QUOTED_STRING__\\n },\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n dots: true,\\n vertical: true,\\n verticalSwiping: true,\\n verticalSwiping: true,\\n infinite: false,\\n }\\n }\\n]\\n})\\n.on(__SINGLE_QUOTED_STRING__, onSliderAfterChange)\\n.on(__SINGLE_QUOTED_STRING__, onSliderWheel);\\n}\\n\\nsetTimeout(function () {\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: true,\\narrows: true,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\ninfinite: false,\\nfade: true,\\nprevArrow:__DOUBLE_QUOTED_STRING__,\\nnextArrow:__DOUBLE_QUOTED_STRING__\\n});\\n\\n}, __INT__);\\n\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: false,\\ninfinite: false,\\narrows: false,\\nspeed: __INT__,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\nprevArrow:__DOUBLE_QUOTED_STRING__,\\nnextArrow:__DOUBLE_QUOTED_STRING__,\\nresponsive: [\\n{\\nbreakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: true,\\n\\n }\\n},\\n{\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: true,\\n }\\n}\\n]\\n});\\n\\n\\n\\n\\n\\n\\/\\/ jQuery(__DOUBLE_QUOTED_STRING__).click(()=>{\\n\\/\\/ jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n\\/\\/ })\\n});\\n\\n$(window).on(__DOUBLE_QUOTED_STRING__, function(e){\\nvar windowWidth = $(window).width();\\nif(windowWidth < __INT__){\\n $(__SINGLE_QUOTED_STRING__).slick({\\n dots: false,\\n arrows: false,\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n infinite: false,\\n responsive: [\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __FLOAT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n }\\n }\\n ]\\n });\\n\\n}else{\\n $(__SINGLE_QUOTED_STRING__).slick(__SINGLE_QUOTED_STRING__);\\n}\\n\\n}) \\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"46a6e66b9caf788b688275cac7a26bb5\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\nsetTimeout(() => {\\n $(__DOUBLE_QUOTED_STRING__).attr(__SINGLE_QUOTED_STRING__, __SINGLE_QUOTED_STRING__);\\n}, __INT__);\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"2c372ecf7923e7043aa08b5735b0e957\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n $(__SINGLE_QUOTED_STRING__).click(function(){\\n $(__SINGLE_QUOTED_STRING__).toggleClass(__SINGLE_QUOTED_STRING__);\\n });\\n\\n $(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(__DOUBLE_QUOTED_STRING__).click(function(){\\n jQuery(this).siblings(__DOUBLE_QUOTED_STRING__).slideToggle();\\n jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n console.log(__DOUBLE_QUOTED_STRING__)\\n if (jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).is(__DOUBLE_QUOTED_STRING__)) {\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).slideUp();\\n jQuery(this).siblings(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n }\\n })\\n }\\n \\njQuery(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n});\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"12562413cb77cf11c8ec1b1270ffeca2\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){ \\n $(__DOUBLE_QUOTED_STRING__).slideUp()\\n $(__DOUBLE_QUOTED_STRING__).slideDown()\\n $(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__)\\n jQuery(__DOUBLE_QUOTED_STRING__).click(function(){\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).slideToggle();\\n jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n if (jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).is(__DOUBLE_QUOTED_STRING__)) {\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).slideUp();\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n }\\n }); \\n var numRows = $(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__).length;\\nvar SHOWN = __INT__;\\nvar MORE = __INT__;\\n\\n\\/* get how many more can be shown *\\/\\nvar getNumMore = function(ns) {\\n var more = MORE;\\n var leftOver = numRows - ns;\\n if ((leftOver) < more) {\\n more = leftOver;\\n }\\n return more;\\n}\\n\\/* how many are shown *\\/\\nvar getInitialNumShown = function() {\\n var shown = SHOWN;\\n if (numRows < shown) {\\n shown = numRows;\\n }\\n return shown;\\n}\\n\\/* set how many are initially shown *\\/\\nvar numShown = getInitialNumShown();\\n\\n\\/* set the numMore if less than __INT__ *\\/\\nvar numMore = getNumMore(numShown);\\n\\n\\/* set more html *\\/\\nif (numMore > __INT__) {\\nvar more_html = __SINGLE_QUOTED_STRING__;\\n$(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__ + (numShown - __INT__) + __SINGLE_QUOTED_STRING__).hide().end().after(more_html);\\n}\\n$(__SINGLE_QUOTED_STRING__).click(function() {\\n\\/* determine how much more we should update *\\/\\nnumMore = getNumMore(numShown);\\n\\/* update num shown *\\/\\nnumShown = numShown + numMore;\\n$(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__ + numShown + __SINGLE_QUOTED_STRING__).show();\\n\\n\\/* determine if to show more and how much left over *\\/\\nnumMore = getNumMore(numShown);\\nif (numMore > __INT__) {\\n $(__SINGLE_QUOTED_STRING__).html(numMore);\\n} else {\\n $(__SINGLE_QUOTED_STRING__).remove();\\n}\\n}); \\n }\\n})\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b018faa0938622cc9d86adc1c5b500ae\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n $(__DOUBLE_QUOTED_STRING__).click(function() {\\n $(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).slideUp();\\n if (!$(this).next().is(__DOUBLE_QUOTED_STRING__)) {\\n $(this).next().slideDown();\\n $(this).addClass(__DOUBLE_QUOTED_STRING__);\\n }\\n })\\n }\\n jQuery(__SINGLE_QUOTED_STRING__).trigger(__SINGLE_QUOTED_STRING__);\\n });\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"6563f33063a8fda3041e500a21a4f19f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n $(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n \\n }\\n \\n \\n });\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9564124c6f316693f9a84b1137b0cba7\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n $(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n spaceBetween: __INT__,\\n longSwipesRatio: __FLOAT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n });\\n \\n }\\n \\n \\n });\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"561f494215f84bac2f890b40eb75db0a\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(document).ready(function() {\\n jQuery(__SINGLE_QUOTED_STRING__).trigger(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).click(function (e) {\\n e.preventDefault();\\n var popId = jQuery(this).attr(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n jQuery(popId).addClass(__SINGLE_QUOTED_STRING__);\\n })\\n});\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"82eea9842ad50c4a8eddf3aa2f5897e3\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n $(__SINGLE_QUOTED_STRING__).on(__SINGLE_QUOTED_STRING__, function(evt) {\\n evt.preventDefault();\\n \\/\\/ $(this).toggleClass(__SINGLE_QUOTED_STRING__);\\n $(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n $(this).addClass(__SINGLE_QUOTED_STRING__);\\n var sel = this.getAttribute(__SINGLE_QUOTED_STRING__);\\n $(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__).filter(sel).addClass(__SINGLE_QUOTED_STRING__);\\n });\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"22e51996b5d317a78d80c2948b527a9d\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/landing-page.js\"},\"node_type\":1,\"sources\":[]}}]','https://translucent.mesoishop.com/2022/','','publish','closed','closed','','ccdc9276a2b0274f598827010c251346','','','2022-09-13 04:44:56','2022-09-13 08:44:56','',0,'https://translucent.mesoishop.com/amp_validated_url/ccdc9276a2b0274f598827010c251346/',0,'amp_validated_url','',0),(4802,21,'2022-09-13 04:44:56','2022-09-13 08:44:56','[{\"term_slug\":\"f1befabcc105a54e449f89de6d4762bc\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/style-isk.css?v=949774448\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"57e1a790a1299ec25f0d4f77ee5a95df\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/marchine.css?v=1260057810\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"c1c808673b8f2bf9a7d63efc07e9503d\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/shared.css?v=405726095\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"c683711a32c941e886a2bff9cd5d9c49\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/css\\/owl.carousel.css\",\"rel\":\"stylesheet\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"698ed8c3c1252be738d6986e0c37c3cf\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"emcs_calendly_css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/embed-calendly-scheduling\\/assets\\/css\\/widget.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"embed-calendly-scheduling\",\"file\":\"embed-calendly-scheduling.php\",\"line\":39,\"function\":\"emcs_calendly_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"emcs_calendly_css\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"754f2bd220d369a2310b0727edf58c57\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"contact-form-7-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/css\\/styles.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"contact-form-7\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"b2b05336e9d16428fe4d70031a73afc4\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"rs-plugin-settings-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/css\\/rs6.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":134,\"function\":\"RevSliderFront::add_inline_css\",\"hook\":\"wp_footer\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"rs-plugin-settings\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"157c13b55df6d419a7a4a7c952b848f6\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"amp-default-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/amp\\/assets\\/css\\/amp-default.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/amp-helper-functions.php\",\"line\":1020,\"function\":\"amp_register_default_styles\",\"hook\":\"wp_default_styles\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"advanced-custom-fields-pro\",\"file\":\"includes\\/assets.php\",\"line\":108,\"function\":\"ACF_Assets::register_scripts\",\"hook\":\"init\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"amp\",\"file\":\"includes\\/class-amp-theme-support.php\",\"line\":2261,\"function\":\"AMP_Theme_Support::enqueue_assets\",\"hook\":\"wp_enqueue_scripts\",\"priority\":0,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"amp-default\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"17e920edc403db5a65f76c4be11cbd90\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"social_warfare-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/css\\/style.min.css?ver=__normalized__\",\"media\":\"all\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Script.php\",\"line\":94,\"function\":\"SWP_Script::enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"style\",\"handle\":\"social_warfare\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"functions.wp-styles.php\",\"line\":44,\"function\":\"wp_print_styles\",\"hook\":\"wp_head\",\"priority\":8}]}},{\"term_slug\":\"a845e1e06b53116c205bceaff1516022\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.css\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"6d4404ba5312e7463b373a66c2eda446\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"link\",\"node_attributes\":{\"rel\":\"stylesheet\",\"href\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/font-awesome\\/6.1.0\\/css\\/all.min.css\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"0ad7242b71b7e1675d4323aa70985997\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"style\",\"node_attributes\":{\"type\":\"text\\/css\",\"id\":\"wp-custom-css\"},\"text\":\"\\n\\t\\t\\t\\n.tek-ai {\\n\\theight: auto;\\n}\\n\\n.tek-ai img {\\n\\theight: auto !important;\\n\\tmax-height: 570px;\\n}\\n\\n@media (max-width:992px) {\\n .tek-ai {\\n \\theight: auto;\\n\\t\\ttext-align: center !important;\\n\\t}\\n}\\n\\n@media (min-width: 1400px) {\\n .tek-ai {\\n \\theight: auto;\\n\\t}\\n}\\n\\n.footer-2022__menu--list.footer_links:nth-child(4) {\\n display: none;\\n}\\n\\n\\t\\t\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"theme.php\",\"line\":1824,\"function\":\"wp_custom_css_cb\",\"hook\":\"wp_head\",\"priority\":101}]}},{\"term_slug\":\"28973f0cc11760f5194f0f375115bb5a\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"rs-slide\",\"parent_name\":\"rs-slides\",\"node_attributes\":{\"data-key\":\"rs-28\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner2.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"907dbeff6585cfea5c5b45a6e7da3fb0\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,42;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"327b1739bdcf02881c195c26b04cb722\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,25,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,auto,714px,454px;h:auto,auto,89px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"1f75be8113554ac16a6902c13d81ed3b\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"51079d28a732c15e6a7abb2e096a3773\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:150;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"6fd2ec91fec809029dda3394c39907de\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"a\",\"parent_name\":\"rs-slide\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-8\",\"class\":\"rs-layer rev-btn amp-wp-dfa190a\",\"href\":\"https:\\/\\/calendly.com\\/tc-results\",\"target\":\"_self\",\"data-type\":\"button\",\"data-color\":\"#182647\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,2px,0;yo:480px,490px,489px,400px;\",\"data-text\":\"w:normal;s:18,17,15,20;l:50,41,50,50;fw:900,900,900,700;a:left,left,center,center;\",\"data-dim\":\"minh:0px,none,none,none;\",\"data-padding\":\"t:7,6,0,0;r:50,41,63,53;b:7,6,0,0;l:50,41,63,53;\",\"data-border\":\"bor:30px,30px,30px,30px;\",\"data-frame_0\":\"x:0,0,0px,0px;y:0,0,0px,0px;\",\"data-frame_1\":\"x:0,0,0px,0px;y:0,0,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-frame_hover\":\"c:#182647;bgc:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);bor:30px,30px,30px,30px;sp:100;e:power1.inOut;bri:120%;\",\"data-amp-original-style\":\"z-index:8;background:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);font-family:\'Raleway\';\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"1a19dd503158279d1f97ad286870f18d\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"amp-img\",\"parent_name\":\"div\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2019\\/03\\/2000px-The_Hospital_for_Sick_Children_Logo.svg_.png \",\"width\":\"310\",\"height\":\"100\",\"class\":\"amp-wp-enforced-sizes amp-wp-035b591\",\"layout\":\"intrinsic\",\"data-amp-original-style\":\"max-height: 50px;\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"b102a27293ee6465b3e25a5e44d74aa6\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"span\",\"parent_name\":\"p\",\"node_attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"3945dd509b3ef3f0c91f0c850ce6d074\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"rs-module-wrap\",\"parent_name\":\"div\",\"node_attributes\":{\"id\":\"rev_slider_7_1_wrapper\",\"data-alias\":\"slider-02-01-2022\",\"data-source\":\"gallery\",\"data-amp-original-style\":\"visibility:hidden;background:transparent;padding:0;margin:0px auto;margin-top:0;margin-bottom:0;\",\"class\":\"amp-wp-58a99c6\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"84e497b381cbb079db874863c5b11bd7\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"style\",\"node_attributes\":[],\"text\":\"\\r\\n\\t@font-face {\\r\\n\\t\\tfont-family: \\\"sw-icon-font\\\";\\r\\n\\t\\tsrc:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0\\\");\\r\\n\\t\\tsrc:url(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.eot?ver=4.3.0#iefix\\\") format(\\\"embedded-opentype\\\"),\\r\\n\\t\\turl(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.woff?ver=4.3.0\\\") format(\\\"woff\\\"),\\r\\n\\t\\turl(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.ttf?ver=4.3.0\\\") format(\\\"truetype\\\"),\\r\\n\\t\\turl(\\\"http:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/social-warfare\\/assets\\/fonts\\/sw-icon-font.svg?ver=4.3.0#1445203416\\\") format(\\\"svg\\\");\\r\\n\\t\\tfont-weight: normal;\\r\\n\\t\\tfont-style: normal;\\r\\n\\t\\tfont-display:block;\\r\\n\\t}\\r\\n\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"social-warfare\",\"file\":\"lib\\/frontend-output\\/SWP_Header_Output.php\",\"line\":69,\"function\":\"SWP_Header_Output::add_header_output\",\"hook\":\"wp_head\",\"priority\":1}]}},{\"term_slug\":\"0dba9387ee3b61c1895ca5730d0d026d\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"section\",\"parent_name\":\"div\",\"node_attributes\":{\"data-amp-original-style\":\"background-color: #121D3D;\",\"class\":\"amp-wp-61d4b04\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"062fe80a5344eb489ed5e93302040e68\",\"data\":{\"code\":\"STYLESHEET_TOO_LONG\",\"type\":\"css_error\",\"spec_name\":\"style amp-custom\",\"node_name\":\"div\",\"parent_name\":\"form\",\"node_attributes\":{\"data-amp-original-style\":\"display: none;\",\"class\":\"amp-wp-224b51a\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/contact-form-functions.php\",\"line\":105,\"function\":\"wpcf7_contact_form_tag_func\",\"shortcode\":\"contact-form-7\"}]}},{\"term_slug\":\"4281f21ed8dba5c268ac3796b5136911\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/embed-calendly-scheduling\\/assets\\/js\\/widget.js?ver=__normalized__\",\"id\":\"emcs_calendly_js-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"embed-calendly-scheduling\",\"file\":\"embed-calendly-scheduling.php\",\"line\":39,\"function\":\"emcs_calendly_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"emcs_calendly_js\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"emcs_calendly_js\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"ad851d2fd6457e6427554d69d5544899\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/jquery\\/jquery.min.js?ver=__normalized__\",\"id\":\"jquery-core-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-core\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"d95172fdd6b6200ab9aad6f23b20546c\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/jquery\\/jquery-migrate.min.js?ver=__normalized__\",\"id\":\"jquery-migrate-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"tp-tools\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery\",\"dependency_handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":608,\"function\":\"wp_default_scripts\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"jquery-migrate\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"22a3cbf1fa1e43f7e3d9b33f00da4349\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"__ytprefs__-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var _EPYT_ = {\\\"ajaxurl\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-admin\\\\\\/admin-ajax.php\\\",\\\"security\\\":\\\"a8468eb17c\\\",\\\"gallery_scrolloffset\\\":\\\"20\\\",\\\"eppathtoscripts\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/scripts\\\\\\/\\\",\\\"eppath\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/\\\",\\\"epresponsiveselector\\\":\\\"[\\\\\\\"iframe.__youtube_prefs__\\\\\\\",\\\\\\\"iframe[src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-gallerysrc*=\'youtube.com\']\\\\\\\"]\\\",\\\"epdovol\\\":\\\"1\\\",\\\"version\\\":\\\"14.1.2\\\",\\\"evselector\\\":\\\"iframe.__youtube_prefs__[src], iframe[src*=\\\\\\\"youtube.com\\\\\\/embed\\\\\\/\\\\\\\"], iframe[src*=\\\\\\\"youtube-nocookie.com\\\\\\/embed\\\\\\/\\\\\\\"]\\\",\\\"ajax_compat\\\":\\\"\\\",\\\"ytapi_load\\\":\\\"light\\\",\\\"pause_others\\\":\\\"\\\",\\\"stopMobileBuffer\\\":\\\"1\\\",\\\"facade_mode\\\":\\\"\\\",\\\"not_live_on_channel\\\":\\\"\\\",\\\"vi_active\\\":\\\"\\\",\\\"vi_js_posttypes\\\":[]};\",\"handle\":\"__ytprefs__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var _EPYT_ = {\\\"ajaxurl\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-admin\\\\\\/admin-ajax.php\\\",\\\"security\\\":\\\"a8468eb17c\\\",\\\"gallery_scrolloffset\\\":\\\"20\\\",\\\"eppathtoscripts\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/scripts\\\\\\/\\\",\\\"eppath\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/youtube-embed-plus\\\\\\/\\\",\\\"epresponsiveselector\\\":\\\"[\\\\\\\"iframe.__youtube_prefs__\\\\\\\",\\\\\\\"iframe[src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube.com\']\\\\\\\",\\\\\\\"iframe[data-ep-src*=\'youtube-nocookie.com\']\\\\\\\",\\\\\\\"iframe[data-ep-gallerysrc*=\'youtube.com\']\\\\\\\"]\\\",\\\"epdovol\\\":\\\"1\\\",\\\"version\\\":\\\"14.1.2\\\",\\\"evselector\\\":\\\"iframe.__youtube_prefs__[src], iframe[src*=\\\\\\\"youtube.com\\\\\\/embed\\\\\\/\\\\\\\"], iframe[src*=\\\\\\\"youtube-nocookie.com\\\\\\/embed\\\\\\/\\\\\\\"]\\\",\\\"ajax_compat\\\":\\\"\\\",\\\"ytapi_load\\\":\\\"light\\\",\\\"pause_others\\\":\\\"\\\",\\\"stopMobileBuffer\\\":\\\"1\\\",\\\"facade_mode\\\":\\\"\\\",\\\"not_live_on_channel\\\":\\\"\\\",\\\"vi_active\\\":\\\"\\\",\\\"vi_js_posttypes\\\":[]};\",\"handle\":\"__ytprefs__\"}]}},{\"term_slug\":\"38f5af99f1aa7d42f770794b2aebc370\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/scripts\\/ytprefs.min.js?ver=__normalized__\",\"id\":\"__ytprefs__-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"__ytprefs__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\",\"dependency_handle\":\"__ytprefs__\"},{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":5937,\"function\":\"YouTubePrefs::ytprefsscript\",\"hook\":\"wp_enqueue_scripts\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefs__\"},{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2031,\"function\":\"wp_print_head_scripts\",\"hook\":\"wp_head\",\"priority\":9}]}},{\"term_slug\":\"60cb9e5de0de6a4012c105b98464b149\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"function setREVStartSize(e){\\n\\t\\t\\t\\/\\/window.requestAnimationFrame(function() {\\n\\t\\t\\t\\twindow.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW;\\n\\t\\t\\t\\twindow.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH;\\n\\t\\t\\t\\ttry {\\n\\t\\t\\t\\t\\tvar pw = document.getElementById(e.c).parentNode.offsetWidth,\\n\\t\\t\\t\\t\\t\\tnewh;\\n\\t\\t\\t\\t\\tpw = pw===__INT__ || isNaN(pw) || (e.l==__DOUBLE_QUOTED_STRING__ || e.layout==__DOUBLE_QUOTED_STRING__) ? window.RSIW : pw;\\n\\t\\t\\t\\t\\te.tabw = e.tabw===undefined ? __INT__ : parseInt(e.tabw);\\n\\t\\t\\t\\t\\te.thumbw = e.thumbw===undefined ? __INT__ : parseInt(e.thumbw);\\n\\t\\t\\t\\t\\te.tabh = e.tabh===undefined ? __INT__ : parseInt(e.tabh);\\n\\t\\t\\t\\t\\te.thumbh = e.thumbh===undefined ? __INT__ : parseInt(e.thumbh);\\n\\t\\t\\t\\t\\te.tabhide = e.tabhide===undefined ? __INT__ : parseInt(e.tabhide);\\n\\t\\t\\t\\t\\te.thumbhide = e.thumbhide===undefined ? __INT__ : parseInt(e.thumbhide);\\n\\t\\t\\t\\t\\te.mh = e.mh===undefined || e.mh==__DOUBLE_QUOTED_STRING__ || e.mh===__DOUBLE_QUOTED_STRING__ ? __INT__ : parseInt(e.mh,__INT__);\\n\\t\\t\\t\\t\\tif(e.layout===__DOUBLE_QUOTED_STRING__ || e.l===__DOUBLE_QUOTED_STRING__)\\n\\t\\t\\t\\t\\t\\tnewh = Math.max(e.mh,window.RSIH);\\n\\t\\t\\t\\t\\telse{\\n\\t\\t\\t\\t\\t\\te.gw = Array.isArray(e.gw) ? e.gw : [e.gw];\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===__INT__) e.gw[i] = e.gw[i__INT__];\\n\\t\\t\\t\\t\\t\\te.gh = e.el===undefined || e.el===__DOUBLE_QUOTED_STRING__ || (Array.isArray(e.el) && e.el.length==__INT__)? e.gh : e.el;\\n\\t\\t\\t\\t\\t\\te.gh = Array.isArray(e.gh) ? e.gh : [e.gh];\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===__INT__) e.gh[i] = e.gh[i__INT__];\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\tvar nl = new Array(e.rl.length),\\n\\t\\t\\t\\t\\t\\t\\tix = __INT__,\\n\\t\\t\\t\\t\\t\\t\\tsl;\\n\\t\\t\\t\\t\\t\\te.tabw = e.tabhide>=pw ? __INT__ : e.tabw;\\n\\t\\t\\t\\t\\t\\te.thumbw = e.thumbhide>=pw ? __INT__ : e.thumbw;\\n\\t\\t\\t\\t\\t\\te.tabh = e.tabhide>=pw ? __INT__ : e.tabh;\\n\\t\\t\\t\\t\\t\\te.thumbh = e.thumbhide>=pw ? __INT__ : e.thumbh;\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) nl[i] = e.rl[i]nl[i] && nl[i]>__INT__) { sl = nl[i]; ix=i;}\\n\\t\\t\\t\\t\\t\\tvar m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? __INT__ : (pw-(e.tabw+e.thumbw)) \\/ (e.gw[ix]);\\n\\t\\t\\t\\t\\t\\tnewh = (e.gh[ix] * m) + (e.tabh + e.thumbh);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\tvar el = document.getElementById(e.c);\\n\\t\\t\\t\\t\\tif (el!==null && el) el.style.height = newh+__DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\tel = document.getElementById(e.c+__DOUBLE_QUOTED_STRING__);\\n\\t\\t\\t\\t\\tif (el!==null && el) {\\n\\t\\t\\t\\t\\t\\tel.style.height = newh+__DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\t\\tel.style.display = __DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t} catch(e){\\n\\t\\t\\t\\t\\tconsole.log(__DOUBLE_QUOTED_STRING__ + e)\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\/\\/});\\n\\t\\t };\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"394a14393ccb142d4278875b36d749de\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/jquery-1.11.0.min.js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"d0f41d87dfbb44c74917aa3e7e6f4c9c\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/viewport-checker\\/dist\\/jquery.viewportchecker.min.js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"0858ec58dbe60e96b4fdf2e45aa60f95\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"head\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/typewriter.js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"3904651acb2c4c1a36bbf2eea35a01ba\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-27-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,50;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"7b5e889ea3d42183be9b55c1edcfbc2b\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-27-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,26,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,auto,681px,454px;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"aaab19a79deb4ac531da87ba40e11216\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-27-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"0aed1255823257c61057140d7bb2c87c\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-27-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"2f30b3cfc5ac886741ed7e829ea10dcb\",\"data\":{\"node_name\":\"rs-slide\",\"parent_name\":\"rs-slides\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"data-key\":\"rs-27\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner1.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"ceeebf838b1b80b0344ea4e74a224185\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-30-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,50;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,630px,443px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"2a7c3571eea257538e926d4f1017694a\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-30-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,26,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,687px,728px,454px;h:auto,auto,61px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"08d09df5d3e5e4dc0ed7cebb2bde858f\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-30-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"b1f69cd6028d56c6fcfd976ccc5f0bb5\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-30-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"ac6237c605e83296cb48c362d8f95986\",\"data\":{\"node_name\":\"rs-slide\",\"parent_name\":\"rs-slides\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"data-key\":\"rs-30\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/home4.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"abd80e162efd58f72c1290c2d1f5216a\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-29-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,50;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,846px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"8cc0d02ea3049623c89539e9e28fd6f0\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-29-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,26,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,1025px,722px,454px;h:auto,auto,89px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"50af8f4d5f21bdee419239a3567badcc\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-29-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"ad4ebac89e192f20b89a49267e72fa38\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-29-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"591ae21bed9d9edb2b6db9f01fc0cf1d\",\"data\":{\"node_name\":\"rs-slide\",\"parent_name\":\"rs-slides\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"data-key\":\"rs-29\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/home31.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"202e2f6a377113b03e5b248699e2c239\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,42;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"628624e4cdb78df8fd5d4aadc6668cc9\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,25,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,auto,714px,454px;h:auto,auto,89px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"5879dd0446a5dcdc3d415ffa1dfc0a53\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"912487ff20bb195ed59441158086f5ed\",\"data\":{\"node_name\":\"rs-layer\",\"parent_name\":\"rs-slide\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:150;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"545094b279f4c55f91bd2a471115680e\",\"data\":{\"node_name\":\"rs-slide\",\"parent_name\":\"rs-slides\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"data-key\":\"rs-28\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner2.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"e63b409eb86607034e13f0995b45120a\",\"data\":{\"node_name\":\"rs-slides\",\"parent_name\":\"rs-module\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":[],\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"75bb11fc9ebb26f1f4b64912338d9750\",\"data\":{\"node_name\":\"rs-module\",\"parent_name\":\"rs-module-wrap\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"rev_slider_7_1\",\"data-version\":\"6.5.23\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"50aa68c36e299f37c43660ce1c8e7b18\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"rs-module-wrap\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n\\t\\t\\t\\t\\tsetREVStartSize({c: __SINGLE_QUOTED_STRING__,rl:[__INT__,__INT__,__INT__,__INT__],el:[__INT__,__INT__,__INT__,__INT__],gw:[__INT__,__INT__,__INT__,__INT__],gh:[__INT__,__INT__,__INT__,__INT__],type:__SINGLE_QUOTED_STRING__,justify:__SINGLE_QUOTED_STRING__,layout:__SINGLE_QUOTED_STRING__,mh:__DOUBLE_QUOTED_STRING__});if (window.RS_MODULES!==undefined && window.RS_MODULES.modules!==undefined && window.RS_MODULES.modules[__DOUBLE_QUOTED_STRING__]!==undefined) {window.RS_MODULES.modules[__DOUBLE_QUOTED_STRING__].once = false;window.revapi7 = undefined;if (window.RS_MODULES.checkMinimal!==undefined) window.RS_MODULES.checkMinimal()}\\n\\t\\t\\t\\t\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"e47c6c22bfca9bbab0c46ce97914d209\",\"data\":{\"node_name\":\"rs-module-wrap\",\"parent_name\":\"div\",\"code\":\"DISALLOWED_TAG\",\"type\":\"html_element_error\",\"node_attributes\":{\"id\":\"rev_slider_7_1_wrapper\",\"data-alias\":\"slider-02-01-2022\",\"data-source\":\"gallery\",\"data-amp-original-style\":\"visibility:hidden;background:transparent;padding:0;margin:0px auto;margin-top:0;margin-bottom:0;\",\"class\":\"amp-wp-58a99c6\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"revslider.php\",\"line\":90,\"function\":\"rev_slider_shortcode\",\"shortcode\":\"rev_slider\"}]}},{\"term_slug\":\"dd4ea0d50e6331de5a89561bfe24ffca\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"div\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\r\\n $(document).ready(function() {\\r\\n if (window.screen.availWidth >= __INT__) {\\r\\n console.log(__SINGLE_QUOTED_STRING__, window.screen.availWidth)\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n } else {\\r\\n console.log(__SINGLE_QUOTED_STRING__, window.screen.availWidth)\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n }\\r\\n })\\r\\n\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"2d27220cfea15653af76d8312c3dd31f\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"id\":\"headingOne\",\"class\":\"cp-services__box--column\",\"type\":\"button\",\"data-toggle\":\"collapse\",\"data-target\":\"#collapseOne\",\"aria-expanded\":\"true\",\"aria-controls\":\"collapseOne\"},\"node_name\":\"type\",\"parent_name\":\"div\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"3b0ee603f3aa83553e1574a2a66dc58b\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"id\":\"headingTwo\",\"class\":\"cp-services__box--column\",\"type\":\"button\",\"data-toggle\":\"collapse\",\"data-target\":\"#collapseTwo\",\"aria-expanded\":\"false\",\"aria-controls\":\"collapseTwo\"},\"node_name\":\"type\",\"parent_name\":\"div\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"39bd6c29d1862a73d9d5efe977c98dc7\",\"data\":{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"id\":\"headingThree\",\"class\":\"cp-services__box--column\",\"type\":\"button\",\"data-toggle\":\"collapse\",\"data-target\":\"#collapseThree\",\"aria-expanded\":\"false\",\"aria-controls\":\"collapseThree\"},\"node_name\":\"type\",\"parent_name\":\"div\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"63bca055743ddac99d793e2ad9520292\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/06\\/gotoloans.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"143\",\"height\":\"37\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"b0deb28a473276707cdc63f576ff7a32\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/06\\/gotoloans.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"143\",\"height\":\"37\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"b4f0efc7236126de4f46ae929436c3f9\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/blackbook.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"227\",\"height\":\"31\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"7d1496ce660ac21d39094ec8c969dc90\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/blackbook.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"227\",\"height\":\"31\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"358c370403358aaf8d16beaee1ce222e\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/volentix3.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"96\",\"height\":\"96\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"e1aec95a897868f7c1f258d1a009dc43\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/volentix3.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"96\",\"height\":\"96\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"073590543cb1c4f8ce2d56d4300475b1\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/uhn.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"108\",\"height\":\"32\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"2808956575f8ac30a93a8d5693af02a7\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/uhn.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"108\",\"height\":\"32\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"63bca055743ddac99d793e2ad9520292\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/06\\/gotoloans.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"143\",\"height\":\"37\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"b0deb28a473276707cdc63f576ff7a32\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/06\\/gotoloans.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"143\",\"height\":\"37\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"b4f0efc7236126de4f46ae929436c3f9\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/blackbook.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"227\",\"height\":\"31\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"7d1496ce660ac21d39094ec8c969dc90\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/blackbook.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"227\",\"height\":\"31\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"8fc491d10cf3d4f353141f2c85b9641f\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2019\\/03\\/2000px-The_Hospital_for_Sick_Children_Logo.svg_.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"310\",\"height\":\"100\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"1998a41cc20254f3fbedcfad6f4353c5\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2019\\/03\\/2000px-The_Hospital_for_Sick_Children_Logo.svg_.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"310\",\"height\":\"100\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"6c4c478544820da9cdf0cdeba3b91ab5\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/logo-nuc_notag.jpg\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"280\",\"height\":\"89\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"e03c25c8ba975c77e0c366bf30a5bd38\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/logo-nuc_notag.jpg\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"280\",\"height\":\"89\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"358c370403358aaf8d16beaee1ce222e\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/volentix3.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"96\",\"height\":\"96\"},\"node_name\":\"srcset\",\"parent_name\":\"img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"e1aec95a897868f7c1f258d1a009dc43\",\"data\":{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/volentix3.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"96\",\"height\":\"96\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\",\"node_type\":2,\"sources\":[{\"type\":\"plugin\",\"name\":\"wordpress-seo\",\"file\":\"src\\/integrations\\/front-end\\/force-rewrite-title.php\",\"line\":88,\"function\":\"Yoast\\\\WP\\\\SEO\\\\Integrations\\\\Front_End\\\\Force_Rewrite_Title::flush_cache\",\"hook\":\"wp_footer\",\"priority\":-1}]}},{\"term_slug\":\"68b2b21a33a01e0e112230069b0192f7\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n\\t\\t\\twindow.RS_MODULES = window.RS_MODULES || {};\\n\\t\\t\\twindow.RS_MODULES.modules = window.RS_MODULES.modules || {};\\n\\t\\t\\twindow.RS_MODULES.waiting = window.RS_MODULES.waiting || [];\\n\\t\\t\\twindow.RS_MODULES.defered = true;\\n\\t\\t\\twindow.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {};\\n\\t\\t\\twindow.RS_MODULES.type = __SINGLE_QUOTED_STRING__;\\n\\t\\t\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":229,\"function\":\"RevSliderFront::add_waiting_script\",\"hook\":\"wp_footer\",\"priority\":1}]}},{\"term_slug\":\"07f331d5771ab8204fd812e9bd91d3ea\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n\\t\\tif(typeof revslider_showDoubleJqueryError === __DOUBLE_QUOTED_STRING__) {function revslider_showDoubleJqueryError(sliderID) {console.log(__DOUBLE_QUOTED_STRING__);console.log(__DOUBLE_QUOTED_STRING__);console.log(__DOUBLE_QUOTED_STRING__);console.log(__DOUBLE_QUOTED_STRING__);return __DOUBLE_QUOTED_STRING__;}}\\n\",\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"includes\\/output.class.php\",\"line\":7058,\"function\":\"RevSliderOutput::add_inline_double_jquery_error\",\"hook\":\"wp_footer\",\"priority\":10}]}},{\"term_slug\":\"b75f1394d2950300074b793601c00c0b\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"mkaz-code-syntax-prism-js-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"code-syntax-block\",\"file\":\"index.php\",\"line\":74,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var prism_settings = {\\\"pluginUrl\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/code-syntax-block\\\\\\/\\\"};\",\"handle\":\"mkaz-code-syntax-prism-js\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var prism_settings = {\\\"pluginUrl\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-content\\\\\\/plugins\\\\\\/code-syntax-block\\\\\\/\\\"};\",\"handle\":\"mkaz-code-syntax-prism-js\"}]}},{\"term_slug\":\"d79415d341c0f65e0358e4084d74739e\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/code-syntax-block\\/assets\\/prism\\/prism.js?ver=__normalized__\",\"id\":\"mkaz-code-syntax-prism-js-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"code-syntax-block\",\"file\":\"index.php\",\"line\":74,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"mkaz-code-syntax-prism-js\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"mkaz-code-syntax-prism-js\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"a198fa0278eff5b1007238f21a844cb8\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/dist\\/vendor\\/regenerator-runtime.min.js?ver=__normalized__\",\"id\":\"regenerator-runtime-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":549,\"function\":\"wp_default_packages\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\",\"dependency_handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":549,\"function\":\"wp_default_packages\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"regenerator-runtime\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"29c76d030187be64189aa8a62c361d19\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill.min.js?ver=__normalized__\",\"id\":\"wp-polyfill-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\",\"dependency_handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":549,\"function\":\"wp_default_packages\",\"hook\":\"wp_default_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"class-wp-widget-factory.php\",\"line\":89,\"function\":\"WP_Widget_Factory::_register_widgets\",\"hook\":\"widgets_init\",\"priority\":100,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"widgets.php\",\"line\":1759,\"function\":\"wp_widgets_init\",\"hook\":\"init\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wp-polyfill\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"6fc0da9f0d23eae8410103820c7c1c5c\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"contact-form-7-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7 = {\\\"api\\\":{\\\"root\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-json\\\\\\/\\\",\\\"namespace\\\":\\\"contact-form-7\\\\\\/v1\\\"}};\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7 = {\\\"api\\\":{\\\"root\\\":\\\"https:\\\\\\/\\\\\\/translucent.mesoishop.com\\\\\\/wp-json\\\\\\/\\\",\\\"namespace\\\":\\\"contact-form-7\\\\\\/v1\\\"}};\",\"handle\":\"contact-form-7\"}]}},{\"term_slug\":\"6b7e94cb0640140eccfeb0c6d126d3fa\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/js\\/index.js?ver=__normalized__\",\"id\":\"contact-form-7-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"includes\\/controller.php\",\"line\":36,\"function\":\"{closure}\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"contact-form-7\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"455e0d79375d5c0e7bb2fe24f4408fe7\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/js\\/rbtools.min.js?ver=__normalized__\",\"defer\":\"defer\",\"async\":\"\",\"id\":\"tp-tools-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"tp-tools\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"tp-tools\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"9d2fbb97c2aba76b5c2e11048abcd7a3\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/js\\/rs6.min.js?ver=__normalized__\",\"defer\":\"defer\",\"async\":\"\",\"id\":\"revmin-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":51,\"function\":\"RevSliderFront::add_actions\",\"hook\":\"wp_enqueue_scripts\",\"priority\":10,\"dependency_type\":\"script\",\"handle\":\"revmin\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"revmin\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"0d54ab34f1393ff50a990bcd43ac9b89\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/www.google.com\\/recaptcha\\/api.js?render=6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s&ver=__normalized__\",\"id\":\"google-recaptcha-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"google-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\",\"dependency_handle\":\"google-recaptcha\"},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"google-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"google-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"fffd38e1e2b741ded941b11c8bcee8e2\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"wpcf7-recaptcha-js-extra\"},\"text\":\"\\n\\/* *\\/\\n\",\"node_type\":1,\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10},{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7_recaptcha = {\\\"sitekey\\\":\\\"6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s\\\",\\\"actions\\\":{\\\"homepage\\\":\\\"homepage\\\",\\\"contactform\\\":\\\"contactform\\\"}};\",\"handle\":\"wpcf7-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"extra_key\":\"data\",\"text\":\"var wpcf7_recaptcha = {\\\"sitekey\\\":\\\"6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s\\\",\\\"actions\\\":{\\\"homepage\\\":\\\"homepage\\\",\\\"contactform\\\":\\\"contactform\\\"}};\",\"handle\":\"wpcf7-recaptcha\"}]}},{\"term_slug\":\"8a7fe833154a0ee7052f4d4fc864ab44\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/modules\\/recaptcha\\/index.js?ver=__normalized__\",\"id\":\"wpcf7-recaptcha-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"contact-form-7\",\"file\":\"modules\\/recaptcha\\/recaptcha.php\",\"line\":19,\"function\":\"wpcf7_recaptcha_enqueue_scripts\",\"hook\":\"wp_enqueue_scripts\",\"priority\":20,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"wpcf7-recaptcha\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"b700eea7e3e60850ee69274a67ef5ead\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/scripts\\/fitvids.min.js?ver=__normalized__\",\"id\":\"__ytprefsfitvids__-js\"},\"node_type\":1,\"sources\":[{\"type\":\"plugin\",\"name\":\"youtube-embed-plus\",\"file\":\"youtube.php\",\"line\":1865,\"function\":\"YouTubePrefs::fitvids\",\"hook\":\"wp_enqueue_scripts\",\"priority\":101,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2077,\"function\":\"wp_enqueue_scripts\",\"hook\":\"wp_head\",\"priority\":1,\"dependency_type\":\"script\",\"handle\":\"__ytprefsfitvids__\"},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2050,\"function\":\"_wp_footer_scripts\",\"hook\":\"wp_print_footer_scripts\",\"priority\":10}]}},{\"term_slug\":\"d9c993ebac688f060c8b7b4c18f2346f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"id\":\"rs-initialisation-scripts\"},\"text\":\"\\n\\t\\tvar\\ttpj = jQuery;\\n\\n\\t\\tvar\\trevapi7;\\n\\n\\t\\tif(window.RS_MODULES === undefined) window.RS_MODULES = {};\\n\\t\\tif(RS_MODULES.modules === undefined) RS_MODULES.modules = {};\\n\\t\\tRS_MODULES.modules[__DOUBLE_QUOTED_STRING__] = {once: RS_MODULES.modules[__DOUBLE_QUOTED_STRING__]!==undefined ? RS_MODULES.modules[__DOUBLE_QUOTED_STRING__].once : undefined, init:function() {\\n\\t\\t\\twindow.revapi7 = window.revapi7===undefined || window.revapi7===null || window.revapi7.length===__INT__ ? document.getElementById(__DOUBLE_QUOTED_STRING__) : window.revapi7;\\n\\t\\t\\tif(window.revapi7 === null || window.revapi7 === undefined || window.revapi7.length==__INT__) { window.revapi7initTry = window.revapi7initTry ===undefined ? __INT__ : window.revapi7initTry+__INT__; if (window.revapi7initTry<__INT__) requestAnimationFrame(function() {RS_MODULES.modules[__DOUBLE_QUOTED_STRING__].init()}); return;}\\n\\t\\t\\twindow.revapi7 = jQuery(window.revapi7);\\n\\t\\t\\tif(window.revapi7.revolution==undefined){ revslider_showDoubleJqueryError(__DOUBLE_QUOTED_STRING__); return;}\\n\\t\\t\\trevapi7.revolutionInit({\\n\\t\\t\\t\\t\\trevapi:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tDPR:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tsliderLayout:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tvisibilityLevels:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tgridwidth:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tgridheight:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tlazyType:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tperspective:__INT__,\\n\\t\\t\\t\\t\\tperspectiveType:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\teditorheight:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tresponsiveLevels:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tprogressBar:{disableProgressBar:true},\\n\\t\\t\\t\\t\\tnavigation: {\\n\\t\\t\\t\\t\\t\\twheelCallDelay:__INT__,\\n\\t\\t\\t\\t\\t\\ttouch: {\\n\\t\\t\\t\\t\\t\\t\\ttouchenabled:true,\\n\\t\\t\\t\\t\\t\\t\\ttouchOnDesktop:true\\n\\t\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\t\\tarrows: {\\n\\t\\t\\t\\t\\t\\t\\tenable:true,\\n\\t\\t\\t\\t\\t\\t\\tstyle:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\tleft: {\\n\\t\\t\\t\\t\\t\\t\\t\\th_align:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\t\\tv_align:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\t\\th_offset:__INT__,\\n\\t\\t\\t\\t\\t\\t\\t\\tv_offset:__INT__\\n\\t\\t\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\t\\t\\tright: {\\n\\t\\t\\t\\t\\t\\t\\t\\tanim:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\t\\th_align:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\t\\tv_align:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\t\\th_offset:__INT__,\\n\\t\\t\\t\\t\\t\\t\\t\\tv_offset:__INT__\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\t\\tbullets: {\\n\\t\\t\\t\\t\\t\\t\\tenable:true,\\n\\t\\t\\t\\t\\t\\t\\ttmp:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\tstyle:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\tv_offset:__INT__\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\tviewPort: {\\n\\t\\t\\t\\t\\t\\tglobal:true,\\n\\t\\t\\t\\t\\t\\tglobalDist:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\tenable:false\\n\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\tfallbacks: {\\n\\t\\t\\t\\t\\t\\tallowHTML5AutoPlayOnAndroid:true\\n\\t\\t\\t\\t\\t},\\n\\t\\t\\t});\\n\\t\\t\\t\\n\\t\\t}} \\/\\/ End of RevInitScript\\n\\n\\t\\tif (window.RS_MODULES.checkMinimal!==undefined) { window.RS_MODULES.checkMinimal();};\\n\\t\",\"node_type\":1,\"sources\":[{\"type\":\"core\",\"name\":\"wp-includes\",\"file\":\"script-loader.php\",\"line\":2060,\"function\":\"wp_print_footer_scripts\",\"hook\":\"wp_footer\",\"priority\":20},{\"type\":\"plugin\",\"name\":\"revslider\",\"file\":\"public\\/revslider-front.class.php\",\"line\":162,\"function\":\"RevSliderFront::add_inline_js\",\"hook\":\"wp_print_footer_scripts\",\"priority\":100}]}},{\"term_slug\":\"e95a68c301f2a3e94af3ab60d1e49223\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/popper.js\\/1.14.3\\/umd\\/popper.min.js\",\"integrity\":\"sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK\\/l8WvCWPIPm49\",\"crossorigin\":\"anonymous\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"dbdfe8cccebe34ff7041e208736a7942\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/stackpath.bootstrapcdn.com\\/bootstrap\\/4.1.3\\/js\\/bootstrap.min.js\",\"integrity\":\"sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW\\/JmZQ5stwEULTy\",\"crossorigin\":\"anonymous\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"7120b7b6f6e5e34eaab178a0de4148ac\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/validation\\/validate.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"dab16e046124505937d40d90a371de48\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"\\/\\/ajax.aspnetcdn.com\\/ajax\\/jquery.validate\\/1.11.1\\/jquery.validate.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"67c9c739d09cfdaf1697c37a00630a3d\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"\\/\\/ajax.microsoft.com\\/ajax\\/jquery.validate\\/1.11.1\\/additional-methods.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9ca7e7b07112fab0f2659963d081c647\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/validation\\/masks.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"e2c5b7b289252d89a64585273c024ec4\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/js\\/owl.carousel.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"ef932f7d78102026336c4df6b9e8ff91\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/fancybox\\/jquery.fancybox.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"54f0b92713a27edb9d4a223c245ad681\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/typewriter-effect\\/dist\\/core.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"308a2319835188db90cf07f966466146\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/vivus@latest\\/dist\\/vivus.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d63eeee74cd3bfbc3da018462afd7b3f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/main.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"285f76a33582e621571d8109572b729f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/client-testimonial\\/client-testimonial.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"30ecfff784f957bc89bf72081232cb3b\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/cloud-native\\/cloud-native.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"c1becf0684470267fde5176dfd043567\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-process\\/our-process.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"de5df74cbbe78f3f4a0610587a35e184\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/services\\/services.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d9fea8205636ef843e6b598ace10ec9f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-clients\\/our-clients.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"22e139cf096a29785f5e03c3cdf7b16d\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b2a1b5e6c3786b7700a4fcb53b4481f1\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"src\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/slick-carousel@1.8.1\\/slick\\/slick.min.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b2badd021972c22702da7e27c5d6a2c0\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/aos@2.3.1\\/dist\\/aos.js\"},\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"d3db2d0fa38d97f62aac99a855396e59\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(document).ready(function() {\\n\\n$(__SINGLE_QUOTED_STRING__).click(function() {\\n$(__SINGLE_QUOTED_STRING__).slideToggle(__DOUBLE_QUOTED_STRING__);\\n});\\n\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: false,\\ninfinite: false,\\narrows: false,\\nspeed: __INT__,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\nresponsive: [\\n{\\nbreakpoint: __INT__,\\nsettings: {\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__\\n}\\n},\\n{\\nbreakpoint: __INT__,\\nsettings: {\\nslidesToShow: __FLOAT__,\\nslidesToScroll: __INT__\\n}\\n}\\n]\\n});\\nif($(window).width()<__INT__){\\nconst slider1 = $(__SINGLE_QUOTED_STRING__);\\nfunction onSliderAfterChange(event, slick, currentSlide) {\\n$(event.target).data(__SINGLE_QUOTED_STRING__, currentSlide);\\n}\\nfunction onSliderWheel(e) {\\nvar deltaY = e.originalEvent.deltaY,\\n $currentSlider = $(e.currentTarget),\\n currentSlickIndex = $currentSlider.data(__SINGLE_QUOTED_STRING__) || __INT__;\\nif (\\n (deltaY < __INT__ && currentSlickIndex == __INT__) ||\\n (deltaY > __INT__ && currentSlickIndex == $currentSlider.data(__SINGLE_QUOTED_STRING__) - __INT__)\\n) {\\n return;\\n}\\n\\ne.preventDefault();\\n\\nif (e.originalEvent.deltaY < __INT__) {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n} else {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n}\\n}\\n\\nslider1.each(function(index, element) {\\nvar $element = $(element);\\n$element.data(__SINGLE_QUOTED_STRING__, $element.children().length);\\n})\\n.slick({\\nresponsive: [\\n {\\n breakpoint: __INT__,\\n settings: __DOUBLE_QUOTED_STRING__\\n },\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n dots: true,\\n vertical: true,\\n verticalSwiping: true,\\n verticalSwiping: true,\\n infinite: false,\\n }\\n }\\n]\\n})\\n.on(__SINGLE_QUOTED_STRING__, onSliderAfterChange)\\n.on(__SINGLE_QUOTED_STRING__, onSliderWheel);\\n}\\nif($(window).width()<__INT__ && $()){\\nconst slider = $(__SINGLE_QUOTED_STRING__);\\nfunction onSliderAfterChange(event, slick, currentSlide) {\\n$(event.target).data(__SINGLE_QUOTED_STRING__, currentSlide);\\n}\\nfunction onSliderWheel(e) {\\nvar deltaY = e.originalEvent.deltaY,\\n $currentSlider = $(e.currentTarget),\\n currentSlickIndex = $currentSlider.data(__SINGLE_QUOTED_STRING__) || __INT__;\\nif (\\n (deltaY < __INT__ && currentSlickIndex == __INT__) ||\\n (deltaY > __INT__ && currentSlickIndex == $currentSlider.data(__SINGLE_QUOTED_STRING__) - __INT__)\\n) {\\n return;\\n}\\n\\ne.preventDefault();\\n\\nif (e.originalEvent.deltaY < __INT__) {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n} else {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n}\\n}\\n\\nslider.each(function(index, element) {\\nvar $element = $(element);\\n$element.data(__SINGLE_QUOTED_STRING__, $element.children().length);\\n})\\n.slick({\\nresponsive: [\\n {\\n breakpoint: __INT__,\\n settings: __DOUBLE_QUOTED_STRING__\\n },\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n dots: true,\\n vertical: true,\\n verticalSwiping: true,\\n verticalSwiping: true,\\n infinite: false,\\n }\\n }\\n]\\n})\\n.on(__SINGLE_QUOTED_STRING__, onSliderAfterChange)\\n.on(__SINGLE_QUOTED_STRING__, onSliderWheel);\\n}\\n\\nsetTimeout(function () {\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: true,\\narrows: true,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\ninfinite: false,\\nfade: true,\\nprevArrow:__DOUBLE_QUOTED_STRING__,\\nnextArrow:__DOUBLE_QUOTED_STRING__\\n});\\n\\n}, __INT__);\\n\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: false,\\ninfinite: false,\\narrows: false,\\nspeed: __INT__,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\nprevArrow:__DOUBLE_QUOTED_STRING__,\\nnextArrow:__DOUBLE_QUOTED_STRING__,\\nresponsive: [\\n{\\nbreakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: true,\\n\\n }\\n},\\n{\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: true,\\n }\\n}\\n]\\n});\\n\\n\\n\\n\\n\\n\\/\\/ jQuery(__DOUBLE_QUOTED_STRING__).click(()=>{\\n\\/\\/ jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n\\/\\/ })\\n});\\n\\n$(window).on(__DOUBLE_QUOTED_STRING__, function(e){\\nvar windowWidth = $(window).width();\\nif(windowWidth < __INT__){\\n $(__SINGLE_QUOTED_STRING__).slick({\\n dots: false,\\n arrows: false,\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n infinite: false,\\n responsive: [\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __FLOAT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n }\\n }\\n ]\\n });\\n\\n}else{\\n $(__SINGLE_QUOTED_STRING__).slick(__SINGLE_QUOTED_STRING__);\\n}\\n\\n}) \\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"46a6e66b9caf788b688275cac7a26bb5\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\nsetTimeout(() => {\\n $(__DOUBLE_QUOTED_STRING__).attr(__SINGLE_QUOTED_STRING__, __SINGLE_QUOTED_STRING__);\\n}, __INT__);\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"2c372ecf7923e7043aa08b5735b0e957\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n $(__SINGLE_QUOTED_STRING__).click(function(){\\n $(__SINGLE_QUOTED_STRING__).toggleClass(__SINGLE_QUOTED_STRING__);\\n });\\n\\n $(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(__DOUBLE_QUOTED_STRING__).click(function(){\\n jQuery(this).siblings(__DOUBLE_QUOTED_STRING__).slideToggle();\\n jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n console.log(__DOUBLE_QUOTED_STRING__)\\n if (jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).is(__DOUBLE_QUOTED_STRING__)) {\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).slideUp();\\n jQuery(this).siblings(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n }\\n })\\n }\\n \\njQuery(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n});\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"12562413cb77cf11c8ec1b1270ffeca2\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){ \\n $(__DOUBLE_QUOTED_STRING__).slideUp()\\n $(__DOUBLE_QUOTED_STRING__).slideDown()\\n $(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__)\\n jQuery(__DOUBLE_QUOTED_STRING__).click(function(){\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).slideToggle();\\n jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n if (jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).is(__DOUBLE_QUOTED_STRING__)) {\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).slideUp();\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n }\\n }); \\n var numRows = $(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__).length;\\nvar SHOWN = __INT__;\\nvar MORE = __INT__;\\n\\n\\/* get how many more can be shown *\\/\\nvar getNumMore = function(ns) {\\n var more = MORE;\\n var leftOver = numRows - ns;\\n if ((leftOver) < more) {\\n more = leftOver;\\n }\\n return more;\\n}\\n\\/* how many are shown *\\/\\nvar getInitialNumShown = function() {\\n var shown = SHOWN;\\n if (numRows < shown) {\\n shown = numRows;\\n }\\n return shown;\\n}\\n\\/* set how many are initially shown *\\/\\nvar numShown = getInitialNumShown();\\n\\n\\/* set the numMore if less than __INT__ *\\/\\nvar numMore = getNumMore(numShown);\\n\\n\\/* set more html *\\/\\nif (numMore > __INT__) {\\nvar more_html = __SINGLE_QUOTED_STRING__;\\n$(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__ + (numShown - __INT__) + __SINGLE_QUOTED_STRING__).hide().end().after(more_html);\\n}\\n$(__SINGLE_QUOTED_STRING__).click(function() {\\n\\/* determine how much more we should update *\\/\\nnumMore = getNumMore(numShown);\\n\\/* update num shown *\\/\\nnumShown = numShown + numMore;\\n$(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__ + numShown + __SINGLE_QUOTED_STRING__).show();\\n\\n\\/* determine if to show more and how much left over *\\/\\nnumMore = getNumMore(numShown);\\nif (numMore > __INT__) {\\n $(__SINGLE_QUOTED_STRING__).html(numMore);\\n} else {\\n $(__SINGLE_QUOTED_STRING__).remove();\\n}\\n}); \\n }\\n})\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"b018faa0938622cc9d86adc1c5b500ae\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n $(__DOUBLE_QUOTED_STRING__).click(function() {\\n $(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).slideUp();\\n if (!$(this).next().is(__DOUBLE_QUOTED_STRING__)) {\\n $(this).next().slideDown();\\n $(this).addClass(__DOUBLE_QUOTED_STRING__);\\n }\\n })\\n }\\n jQuery(__SINGLE_QUOTED_STRING__).trigger(__SINGLE_QUOTED_STRING__);\\n });\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"6563f33063a8fda3041e500a21a4f19f\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n $(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n \\n }\\n \\n \\n });\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"9564124c6f316693f9a84b1137b0cba7\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n $(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n spaceBetween: __INT__,\\n longSwipesRatio: __FLOAT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n });\\n \\n }\\n \\n \\n });\\n\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"561f494215f84bac2f890b40eb75db0a\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n$(document).ready(function() {\\n jQuery(__SINGLE_QUOTED_STRING__).trigger(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).click(function (e) {\\n e.preventDefault();\\n var popId = jQuery(this).attr(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n jQuery(popId).addClass(__SINGLE_QUOTED_STRING__);\\n })\\n});\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"82eea9842ad50c4a8eddf3aa2f5897e3\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":[],\"text\":\"\\n $(__SINGLE_QUOTED_STRING__).on(__SINGLE_QUOTED_STRING__, function(evt) {\\n evt.preventDefault();\\n \\/\\/ $(this).toggleClass(__SINGLE_QUOTED_STRING__);\\n $(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n $(this).addClass(__SINGLE_QUOTED_STRING__);\\n var sel = this.getAttribute(__SINGLE_QUOTED_STRING__);\\n $(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__).filter(sel).addClass(__SINGLE_QUOTED_STRING__);\\n });\\n\",\"node_type\":1,\"sources\":[]}},{\"term_slug\":\"22e51996b5d317a78d80c2948b527a9d\",\"data\":{\"node_name\":\"script\",\"parent_name\":\"body\",\"code\":\"DISALLOWED_TAG\",\"type\":\"js_error\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/landing-page.js\"},\"node_type\":1,\"sources\":[]}}]','https://translucent.mesoishop.com/?s=example','','publish','closed','closed','','de9797b6c610aa8822d497f61bfec432','','','2022-09-13 04:44:56','2022-09-13 08:44:56','',0,'https://translucent.mesoishop.com/amp_validated_url/de9797b6c610aa8822d497f61bfec432/',0,'amp_validated_url','',0),(4805,21,'2022-09-13 04:54:29','2022-09-13 08:54:29','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-13 04:54:29','2022-09-13 08:54:29','',4563,'https://translucent.mesoishop.com/?p=4805',0,'revision','',0),(4806,21,'2022-09-14 00:18:16','2022-09-14 04:18:16','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section One Image Mobile','section_one_image_mobile','publish','closed','closed','','field_63215545f8a3d','','','2022-09-14 00:18:16','2022-09-14 04:18:16','',4625,'https://translucent.mesoishop.com/?post_type=acf-field&p=4806',3,'acf-field','',0),(4807,21,'2022-09-14 00:18:16','2022-09-14 04:18:16','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Three Image Mobile','section_three_image_mobile','publish','closed','closed','','field_632155c6f8a3e','','','2022-09-14 00:18:16','2022-09-14 04:18:16','',4653,'https://translucent.mesoishop.com/?post_type=acf-field&p=4807',3,'acf-field','',0),(4808,21,'2022-09-14 00:18:16','2022-09-14 04:18:16','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Four Image Mobile','section_four_image_mobile','publish','closed','closed','','field_632155def8a3f','','','2022-09-14 00:18:16','2022-09-14 04:18:16','',4660,'https://translucent.mesoishop.com/?post_type=acf-field&p=4808',3,'acf-field','',0),(4809,21,'2022-09-14 00:18:16','2022-09-14 04:18:16','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Five Image Mobile','section_five_image_mobile','publish','closed','closed','','field_632155f4f8a40','','','2022-09-14 00:18:16','2022-09-14 04:18:16','',4666,'https://translucent.mesoishop.com/?post_type=acf-field&p=4809',3,'acf-field','',0),(4810,21,'2022-09-14 02:02:39','2022-09-14 06:02:39','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-14 02:02:39','2022-09-14 06:02:39','',4708,'https://translucent.mesoishop.com/?p=4810',0,'revision','',0),(4811,21,'2022-09-14 02:03:10','2022-09-14 06:03:10','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-14 02:03:10','2022-09-14 06:03:10','',4708,'https://translucent.mesoishop.com/?p=4811',0,'revision','',0),(4817,21,'2022-09-14 02:28:55','2022-09-14 06:28:55','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section One Image Mobile','section_one_image_mobile','publish','closed','closed','','field_6321741c8e5ae','','','2022-09-14 02:28:55','2022-09-14 06:28:55','',4573,'https://translucent.mesoishop.com/?post_type=acf-field&p=4817',4,'acf-field','',0),(4818,21,'2022-09-14 02:28:55','2022-09-14 06:28:55','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Two Tab One Image Mobile','section_two_tab_one_image_mobile','publish','closed','closed','','field_632174678e5af','','','2022-09-14 02:28:55','2022-09-14 06:28:55','',4574,'https://translucent.mesoishop.com/?post_type=acf-field&p=4818',5,'acf-field','',0),(4819,21,'2022-09-14 02:28:56','2022-09-14 06:28:56','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Section Two Tab Three Image Mobile','section_two_tab_three_image_mobile','publish','closed','closed','','field_632174798e5b0','','','2022-09-14 02:28:56','2022-09-14 06:28:56','',4574,'https://translucent.mesoishop.com/?post_type=acf-field&p=4819',26,'acf-field','',0),(4820,21,'2022-09-14 03:02:31','2022-09-14 07:02:31','','kubernetes_certified_icon','','inherit','open','closed','','kubernetes_certified_icon-2','','','2022-09-14 03:09:24','2022-09-14 07:09:24','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/kubernetes_certified_icon-1.png',0,'attachment','image/png',0),(4821,21,'2022-09-14 03:03:49','2022-09-14 07:03:49','','learn_informa_plan','','inherit','open','closed','','learn_informa_plan-2','','','2022-09-14 03:09:15','2022-09-14 07:09:15','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/learn_informa_plan-1.png',0,'attachment','image/png',0),(4822,21,'2022-09-14 03:04:13','2022-09-14 07:04:13','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-14 03:04:13','2022-09-14 07:04:13','',4708,'https://translucent.mesoishop.com/?p=4822',0,'revision','',0),(4823,21,'2022-09-14 03:08:33','2022-09-14 07:08:33','','kubernetes_and_conteiners_2','','inherit','open','closed','','kubernetes_and_conteiners_2-2','','','2022-09-14 03:09:07','2022-09-14 07:09:07','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/kubernetes_and_conteiners_2-1.png',0,'attachment','image/png',0),(4824,21,'2022-09-14 03:08:45','2022-09-14 07:08:45','','24-7_2','','inherit','open','closed','','24-7_2-2','','','2022-09-14 03:08:57','2022-09-14 07:08:57','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/24-7_2-1.png',0,'attachment','image/png',0),(4825,21,'2022-09-14 03:09:31','2022-09-14 07:09:31','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-14 03:09:31','2022-09-14 07:09:31','',4708,'https://translucent.mesoishop.com/?p=4825',0,'revision','',0),(4827,21,'2022-09-14 03:21:18','2022-09-14 07:21:18','','hand_tools','','inherit','open','closed','','hand_tools','','','2022-09-14 03:21:26','2022-09-14 07:21:26','',4563,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/hand_tools.png',0,'attachment','image/png',0),(4829,21,'2022-09-14 03:23:54','2022-09-14 07:23:54','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-14 03:23:54','2022-09-14 07:23:54','',4563,'https://translucent.mesoishop.com/?p=4829',0,'revision','',0),(4830,21,'2022-09-14 05:33:56','2022-09-14 09:33:56','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-14 05:33:56','2022-09-14 09:33:56','',4708,'https://translucent.mesoishop.com/?p=4830',0,'revision','',0),(4831,21,'2022-09-14 05:34:48','2022-09-14 09:34:48','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-14 05:34:48','2022-09-14 09:34:48','',4708,'https://translucent.mesoishop.com/?p=4831',0,'revision','',0),(4833,21,'2022-09-14 05:45:49','2022-09-14 09:45:49','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-14 05:45:49','2022-09-14 09:45:49','',4563,'https://translucent.mesoishop.com/?p=4833',0,'revision','',0),(4834,21,'2022-09-14 06:21:01','2022-09-14 10:21:01','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-14 06:21:01','2022-09-14 10:21:01','',4563,'https://translucent.mesoishop.com/?p=4834',0,'revision','',0),(4835,21,'2022-09-14 12:20:25','2022-09-14 16:20:25','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-14 12:20:25','2022-09-14 16:20:25','',4563,'https://translucent.mesoishop.com/?p=4835',0,'revision','',0),(4836,21,'2022-09-14 23:06:31','2022-09-15 03:06:31','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-14 23:06:31','2022-09-15 03:06:31','',4708,'https://translucent.mesoishop.com/?p=4836',0,'revision','',0),(4837,21,'2022-09-15 03:52:13','2022-09-15 07:52:13','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-15 03:52:13','2022-09-15 07:52:13','',4708,'https://translucent.mesoishop.com/?p=4837',0,'revision','',0),(4838,21,'2022-09-15 04:53:24','2022-09-15 08:53:24','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-15 04:53:24','2022-09-15 08:53:24','',4563,'https://translucent.mesoishop.com/?p=4838',0,'revision','',0),(4839,21,'2022-09-15 04:53:58','2022-09-15 08:53:58','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-15 04:53:58','2022-09-15 08:53:58','',4563,'https://translucent.mesoishop.com/?p=4839',0,'revision','',0),(4842,21,'2022-09-15 05:02:23','2022-09-15 09:02:23','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-15 05:02:23','2022-09-15 09:02:23','',4563,'https://translucent.mesoishop.com/?p=4842',0,'revision','',0),(4844,21,'2022-09-15 05:05:05','2022-09-15 09:05:05','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-15 05:05:05','2022-09-15 09:05:05','',4563,'https://translucent.mesoishop.com/?p=4844',0,'revision','',0),(4845,21,'2022-09-15 05:23:45','2022-09-15 09:23:45','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-15 05:23:45','2022-09-15 09:23:45','',4563,'https://translucent.mesoishop.com/?p=4845',0,'revision','',0),(4846,21,'2022-09-15 05:25:41','2022-09-15 09:25:41','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-15 05:25:41','2022-09-15 09:25:41','',4563,'https://translucent.mesoishop.com/?p=4846',0,'revision','',0),(4847,21,'2022-09-15 05:39:00','2022-09-15 09:39:00','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-15 05:39:00','2022-09-15 09:39:00','',4563,'https://translucent.mesoishop.com/?p=4847',0,'revision','',0),(4848,21,'2022-09-15 23:30:51','2022-09-16 03:30:51','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Top Background Desktop','top_background_desktop','publish','closed','closed','','field_6323eda2d6f18','','','2022-09-15 23:30:51','2022-09-16 03:30:51','',4622,'https://translucent.mesoishop.com/?post_type=acf-field&p=4848',2,'acf-field','',0),(4849,21,'2022-09-15 23:30:51','2022-09-16 03:30:51','a:15:{s:4:\"type\";s:5:\"image\";s:12:\"instructions\";s:0:\"\";s:8:\"required\";i:0;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:13:\"return_format\";s:5:\"array\";s:12:\"preview_size\";s:6:\"medium\";s:7:\"library\";s:3:\"all\";s:9:\"min_width\";s:0:\"\";s:10:\"min_height\";s:0:\"\";s:8:\"min_size\";s:0:\"\";s:9:\"max_width\";s:0:\"\";s:10:\"max_height\";s:0:\"\";s:8:\"max_size\";s:0:\"\";s:10:\"mime_types\";s:0:\"\";}','Top Background Mobile','top_background_mobile','publish','closed','closed','','field_6323edc1d6f19','','','2022-09-15 23:30:51','2022-09-16 03:30:51','',4622,'https://translucent.mesoishop.com/?post_type=acf-field&p=4849',3,'acf-field','',0),(4852,21,'2022-09-15 23:37:03','2022-09-16 03:37:03','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-15 23:37:03','2022-09-16 03:37:03','',4708,'https://translucent.mesoishop.com/?p=4852',0,'revision','',0),(4853,21,'2022-09-16 00:08:09','2022-09-16 04:08:09','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-16 00:08:09','2022-09-16 04:08:09','',4708,'https://translucent.mesoishop.com/?p=4853',0,'revision','',0),(4854,21,'2022-09-16 00:32:22','2022-09-16 04:32:22','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-16 00:32:22','2022-09-16 04:32:22','',4708,'https://translucent.mesoishop.com/?p=4854',0,'revision','',0),(4855,21,'2022-09-16 00:33:16','2022-09-16 04:33:16','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-16 00:33:16','2022-09-16 04:33:16','',4708,'https://translucent.mesoishop.com/?p=4855',0,'revision','',0),(4856,21,'2022-09-16 00:43:40','2022-09-16 04:43:40','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-16 00:43:40','2022-09-16 04:43:40','',4708,'https://translucent.mesoishop.com/?p=4856',0,'revision','',0),(4857,21,'2022-09-16 02:45:19','2022-09-16 06:45:19','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-16 02:45:19','2022-09-16 06:45:19','',4708,'https://translucent.mesoishop.com/?p=4857',0,'revision','',0),(4858,21,'2022-09-16 02:55:48','2022-09-16 06:55:48','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-16 02:55:48','2022-09-16 06:55:48','',4708,'https://translucent.mesoishop.com/?p=4858',0,'revision','',0),(4859,21,'2022-09-16 03:09:58','2022-09-16 07:09:58','','kubernetes_certified_icon','','inherit','open','closed','','kubernetes_certified_icon-3','','','2022-09-16 03:10:14','2022-09-16 07:10:14','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/kubernetes_certified_icon-2.png',0,'attachment','image/png',0),(4860,21,'2022-09-16 03:10:22','2022-09-16 07:10:22','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-16 03:10:22','2022-09-16 07:10:22','',4708,'https://translucent.mesoishop.com/?p=4860',0,'revision','',0),(4861,21,'2022-09-16 03:12:44','2022-09-16 07:12:44','','learn_informa_plan','','inherit','open','closed','','learn_informa_plan-3','','','2022-09-16 03:13:01','2022-09-16 07:13:01','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/learn_informa_plan-2.png',0,'attachment','image/png',0),(4862,21,'2022-09-16 03:13:12','2022-09-16 07:13:12','','kubernetes_and_conteiners_2','','inherit','open','closed','','kubernetes_and_conteiners_2-3','','','2022-09-16 03:13:26','2022-09-16 07:13:26','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/kubernetes_and_conteiners_2-2.png',0,'attachment','image/png',0),(4863,21,'2022-09-16 03:13:39','2022-09-16 07:13:39','','24-7_2','','inherit','open','closed','','24-7_2-3','','','2022-09-16 03:13:56','2022-09-16 07:13:56','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/24-7_2-2.png',0,'attachment','image/png',0),(4864,21,'2022-09-16 03:14:10','2022-09-16 07:14:10','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-16 03:14:10','2022-09-16 07:14:10','',4708,'https://translucent.mesoishop.com/?p=4864',0,'revision','',0),(4865,21,'2022-09-16 03:19:57','2022-09-16 07:19:57','machine learning','machine learning','','inherit','open','closed','','machine_learning3x','','','2022-09-16 03:20:16','2022-09-16 07:20:16','',4563,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/machine_learning@3x.png',0,'attachment','image/png',0),(4866,21,'2022-09-16 03:21:03','2022-09-16 07:21:03','company still using hand tools','company still using hand tools','company still using hand tools','inherit','open','closed','','1','','','2022-09-16 03:21:36','2022-09-16 07:21:36','',4563,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/1.png',0,'attachment','image/png',0),(4867,21,'2022-09-16 03:21:47','2022-09-16 07:21:47','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-16 03:21:47','2022-09-16 07:21:47','',4563,'https://translucent.mesoishop.com/?p=4867',0,'revision','',0),(4868,21,'2022-09-16 03:23:20','2022-09-16 07:23:20','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-16 03:23:20','2022-09-16 07:23:20','',4708,'https://translucent.mesoishop.com/?p=4868',0,'revision','',0),(4869,21,'2022-09-16 03:39:53','2022-09-16 07:39:53','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-16 03:39:53','2022-09-16 07:39:53','',4708,'https://translucent.mesoishop.com/?p=4869',0,'revision','',0),(4870,21,'2022-09-16 03:40:48','2022-09-16 07:40:48','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-16 03:40:48','2022-09-16 07:40:48','',4708,'https://translucent.mesoishop.com/?p=4870',0,'revision','',0),(4871,21,'2022-09-16 03:45:21','2022-09-16 07:45:21','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-16 03:45:21','2022-09-16 07:45:21','',4708,'https://translucent.mesoishop.com/?p=4871',0,'revision','',0),(4872,21,'2022-09-16 03:59:24','2022-09-16 07:59:24','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-16 03:59:24','2022-09-16 07:59:24','',4708,'https://translucent.mesoishop.com/?p=4872',0,'revision','',0),(4873,21,'2022-09-16 04:45:17','2022-09-16 08:45:17','translucent banner','bg-ml','translucent banner','inherit','open','closed','','bg-ml-2','','','2022-09-16 04:45:45','2022-09-16 08:45:45','',4563,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/bg-ml.png',0,'attachment','image/png',0),(4876,21,'2022-09-16 04:46:53','2022-09-16 08:46:53','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-16 04:46:53','2022-09-16 08:46:53','',4563,'https://translucent.mesoishop.com/?p=4876',0,'revision','',0),(4879,21,'2022-09-16 04:54:18','2022-09-16 08:54:18','translucent banner mobile','bg-ml','translucent banner mobile','inherit','open','closed','','bg-ml-3','','','2022-09-16 04:54:33','2022-09-16 08:54:33','',4563,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/bg-ml-1.png',0,'attachment','image/png',0),(4880,21,'2022-09-16 04:54:36','2022-09-16 08:54:36','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-16 04:54:36','2022-09-16 08:54:36','',4563,'https://translucent.mesoishop.com/?p=4880',0,'revision','',0),(4881,21,'2022-09-16 04:54:43','2022-09-16 08:54:43','','banner1','','inherit','open','closed','','banner1','','','2022-09-16 04:54:43','2022-09-16 08:54:43','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/banner1.png',0,'attachment','image/png',0),(4882,21,'2022-09-16 04:54:45','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2022-09-16 04:54:45','0000-00-00 00:00:00','',0,'https://translucent.mesoishop.com/?page_id=4882',0,'page','',0),(4883,21,'2022-09-16 04:54:58','2022-09-16 08:54:58','','banner1@3x','','inherit','open','closed','','banner13x','','','2022-09-16 04:54:58','2022-09-16 08:54:58','',4708,'https://translucent.mesoishop.com/wp-content/uploads/2022/09/banner1@3x.png',0,'attachment','image/png',0),(4884,21,'2022-09-16 04:55:05','2022-09-16 08:55:05','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-16 04:55:05','2022-09-16 08:55:05','',4708,'https://translucent.mesoishop.com/?p=4884',0,'revision','',0),(4886,21,'2022-09-16 05:04:12','2022-09-16 09:04:12','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-16 05:04:12','2022-09-16 09:04:12','',4563,'https://translucent.mesoishop.com/?p=4886',0,'revision','',0),(4887,21,'2022-09-16 05:13:37','2022-09-16 09:13:37','','Kubernetes Professional Services New','','inherit','closed','closed','','4708-revision-v1','','','2022-09-16 05:13:37','2022-09-16 09:13:37','',4708,'https://translucent.mesoishop.com/?p=4887',0,'revision','',0),(4888,21,'2022-09-16 05:29:44','2022-09-16 09:29:44','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-16 05:29:44','2022-09-16 09:29:44','',4563,'https://translucent.mesoishop.com/?p=4888',0,'revision','',0),(4889,21,'2022-09-16 05:30:19','2022-09-16 09:30:19','','Machine Learning New','','inherit','closed','closed','','4563-revision-v1','','','2022-09-16 05:30:19','2022-09-16 09:30:19','',4563,'https://translucent.mesoishop.com/?p=4889',0,'revision','',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(11) unsigned NOT NULL AUTO_INCREMENT, `created` datetime NOT NULL, `url` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `domain` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `agent` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `referrer` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `http_code` int(11) unsigned NOT NULL DEFAULT 0, `request_method` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_data` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `ip` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `created` (`created`), KEY `referrer` (`referrer`(191)), KEY `ip` (`ip`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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 */; /*!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(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `tracking` int(11) NOT NULL DEFAULT 1, `module_id` int(11) unsigned NOT NULL DEFAULT 0, `status` enum('enabled','disabled') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'enabled', `position` int(11) 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_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(11) unsigned NOT NULL AUTO_INCREMENT, `url` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `match_url` varchar(2000) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `match_data` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `regex` int(11) unsigned NOT NULL DEFAULT 0, `position` int(11) unsigned NOT NULL DEFAULT 0, `last_count` int(10) unsigned NOT NULL DEFAULT 0, `last_access` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `group_id` int(11) NOT NULL DEFAULT 0, `status` enum('enabled','disabled') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'enabled', `action_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `action_code` int(11) unsigned NOT NULL, `action_data` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `match_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `title` text COLLATE utf8mb4_unicode_ci 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=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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,'/2014/01/the-hashtag-5975-html/','/2014/01/the-hashtag-5975-html','{\"source\":{\"flag_regex\":false}}',0,0,0,'0000-00-00 00:00:00',1,'enabled','url',301,'http://localhost:8082/2014/01/the-hashtag/','url',NULL),(2,'/2014/01/the-hashtag-5975/','/2014/01/the-hashtag-5975','{\"source\":{\"flag_regex\":false}}',0,1,0,'0000-00-00 00:00:00',1,'enabled','url',301,'http://localhost:8082/2014/01/the-hashtag/','url',NULL),(3,'/2020/01/using-sympy-to-build-ecg-model-model/','/2020/01/using-sympy-to-build-ecg-model-model','{\"source\":{\"flag_regex\":false}}',0,2,139,'2022-05-13 14:09:35',1,'enabled','url',301,'http://localhost:8082/2020/01/using-sympy-to-build-ecg-model/','url',NULL),(4,'/covidsolutions/','/covidsolutions',NULL,0,3,17,'2020-04-30 17:59:16',1,'enabled','url',301,'http://localhost:8082/services/','url',''); /*!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(11) unsigned NOT NULL AUTO_INCREMENT, `created` datetime NOT NULL, `url` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, `domain` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sent_to` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `agent` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `referrer` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `http_code` int(11) unsigned NOT NULL DEFAULT 0, `request_method` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_data` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `redirect_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `redirection_id` int(11) unsigned DEFAULT NULL, `ip` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `created` (`created`), KEY `redirection_id` (`redirection_id`), KEY `ip` (`ip`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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 */; /*!40000 ALTER TABLE `wp_redirection_logs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_revslider_css` -- DROP TABLE IF EXISTS `wp_revslider_css`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_revslider_css` ( `id` int(9) NOT NULL AUTO_INCREMENT, `handle` text NOT NULL, `settings` longtext DEFAULT NULL, `hover` longtext DEFAULT NULL, `advanced` longtext DEFAULT NULL, `params` longtext NOT NULL, PRIMARY KEY (`id`), KEY `handle_index` (`handle`(64)) ) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_revslider_css` -- LOCK TABLES `wp_revslider_css` WRITE; /*!40000 ALTER TABLE `wp_revslider_css` DISABLE KEYS */; INSERT INTO `wp_revslider_css` VALUES (1,'.tp-caption.medium_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\"}'),(2,'.tp-caption.small_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(3,'.tp-caption.medium_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(4,'.tp-caption.large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(5,'.tp-caption.very_large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(6,'.tp-caption.very_big_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#000\"}'),(7,'.tp-caption.very_big_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#fff\"}'),(8,'.tp-caption.modern_medium_fat','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(9,'.tp-caption.modern_medium_fat_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(10,'.tp-caption.modern_medium_light','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(11,'.tp-caption.modern_big_bluebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\"}'),(12,'.tp-caption.modern_big_redbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\"}'),(13,'.tp-caption.modern_small_text_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#555\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(14,'.tp-caption.boxshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"},\"hover\":\"\"}','[]'),(15,'.tp-caption.black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#000\"}'),(16,'.tp-caption.noshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','[]'),(17,'.tp-caption.thinheadline_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(18,'.tp-caption.thintext_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(19,'.tp-caption.largeblackbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(20,'.tp-caption.largepinkbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(21,'.tp-caption.largewhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(22,'.tp-caption.largegreenbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(23,'.tp-caption.excerpt','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"-1.5px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\"},\"hover\":\"\"}','{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px 4px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(24,'.tp-caption.large_bold_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(25,'.tp-caption.medium_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(26,'.tp-caption.small_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(27,'.tp-caption.lightgrey_divider','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(28,'.tp-caption.large_bold_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(29,'.tp-caption.medium_bg_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(30,'.tp-caption.medium_bold_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(31,'.tp-caption.medium_light_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(32,'.tp-caption.medium_bg_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(33,'.tp-caption.medium_bold_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(34,'.tp-caption.medium_bg_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(35,'.tp-caption.grassfloor','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"4000px\",\"height\":\"150px\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(36,'.tp-caption.large_bold_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(37,'.tp-caption.medium_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(38,'.tp-caption.mediumlarge_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(39,'.tp-caption.mediumlarge_light_white_center','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(40,'.tp-caption.medium_bg_asbestos','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(41,'.tp-caption.medium_light_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(42,'.tp-caption.large_bold_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(43,'.tp-caption.mediumlarge_light_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(44,'.tp-caption.small_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(45,'.tp-caption.roundedimage','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(46,'.tp-caption.large_bg_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(47,'.tp-caption.mediumwhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}'),(48,'.tp-caption.MarkerDisplay','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ff0000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-style\":\"normal\",\"font-family\":\"Permanent Marker\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(49,'.tp-caption.Restaurant-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"120px\",\"line-height\":\"120px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(50,'.tp-caption.Restaurant-Cursive','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Nothing you could do\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(51,'.tp-caption.Restaurant-ScrollDownText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(52,'.tp-caption.Restaurant-Description','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(53,'.tp-caption.Restaurant-Price','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(54,'.tp-caption.Restaurant-Menuitem','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"power2.inOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(55,'.tp-caption.Furniture-LogoText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"160px\",\"line-height\":\"150px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(56,'.tp-caption.Furniture-Plus','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0.5\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"box-shadow\":\"rgba(0,0,0,0.1) 0 1px 3px\"},\"hover\":\"\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"6px\",\"7px\",\"4px\",\"7px\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(57,'.tp-caption.Furniture-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(58,'.tp-caption.Furniture-Subtitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(59,'.tp-caption.Gym-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(60,'.tp-caption.Gym-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(61,'.tp-caption.Gym-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"22\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(62,'.tp-caption.Fashion-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"20px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(63,'.tp-caption.Fashion-BigDisplay','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(64,'.tp-caption.Fashion-TextBlock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"40px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(65,'.tp-caption.Sports-Display','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"13px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(66,'.tp-caption.Sports-DisplayFat','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":[\"\"],\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(67,'.tp-caption.Sports-Subline','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"4px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"32px\",\"line-height\":\"32px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(68,'.tp-caption.Instagram-Caption','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(69,'.tp-caption.News-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"60px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(70,'.tp-caption.News-Subtitle','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0px\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"300\",\"easing\":\"power3.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"24px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(71,'.tp-caption.Photography-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(72,'.tp-caption.Photography-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#777777\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(73,'.tp-caption.Photography-ImageHover','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"1000\",\"easing\":\"power3.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(74,'.tp-caption.Photography-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#00ffde\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(75,'.tp-caption.Photography-Textblock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(76,'.tp-caption.Photography-Subline-2','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(77,'.tp-caption.Photography-ImageHover2','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"back.out\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Arial\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(78,'.tp-caption.WebProduct-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(79,'.tp-caption.WebProduct-SubTitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(80,'.tp-caption.WebProduct-Content','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(81,'.tp-caption.WebProduct-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(82,'.tp-caption.WebProduct-Title-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(83,'.tp-caption.WebProduct-SubTitle-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),(84,'.tp-caption.WebProduct-Content-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),(85,'.tp-caption.FatRounded','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"20px\",\"22px\",\"20px\",\"25px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.5\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(86,'.tp-caption.NotGeneric-Title','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"[object Object]\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"70px\",\"font-weight\":\"800\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 0px 10px 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(87,'.tp-caption.NotGeneric-SubTitle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(88,'.tp-caption.NotGeneric-CallToAction','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 30px 10px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(89,'.tp-caption.NotGeneric-Icon','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"default\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(90,'.tp-caption.NotGeneric-Menuitem','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"27px 30px 27px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(91,'.tp-caption.MarkerStyle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Permanent Marker\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(92,'.tp-caption.Gym-Menuitem','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(93,'.tp-caption.Newspaper-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"17px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(94,'.tp-caption.Newspaper-Subtitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#a8d8ee\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(95,'.tp-caption.Newspaper-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(96,'.tp-caption.Newspaper-Title-Centered','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"center\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(97,'.tp-caption.Hero-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(98,'.tp-caption.Video-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(99,'.tp-caption.Video-SubTitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"12px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.35\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(100,'.tp-caption.NotGeneric-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(101,'.tp-caption.NotGeneric-BigButton','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"27px\",\"30px\",\"27px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(102,'.tp-caption.WebProduct-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"48px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0px\",\"40px\",\"0px\",\"40px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(103,'.tp-caption.Restaurant-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffe081\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#0a0a0a\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(104,'.tp-caption.Gym-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#8bc027\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(105,'.tp-caption.Gym-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"0\",\"border-color\":\"#8bc027\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power2.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(106,'.tp-caption.Sports-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(107,'.tp-caption.Sports-Button-Red','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#db1c22\",\"background-transparency\":\"1\",\"border-color\":\"#db1c22\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(108,'.tp-caption.Photography-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(109,'.tp-caption.Newspaper-Button-2','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'); /*!40000 ALTER TABLE `wp_revslider_css` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_revslider_css_bkp` -- DROP TABLE IF EXISTS `wp_revslider_css_bkp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_revslider_css_bkp` ( `id` int(9) NOT NULL AUTO_INCREMENT, `handle` text NOT NULL, `settings` longtext DEFAULT NULL, `hover` longtext DEFAULT NULL, `advanced` longtext DEFAULT NULL, `params` longtext NOT NULL, PRIMARY KEY (`id`), KEY `handle_index` (`handle`(64)) ) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_revslider_css_bkp` -- LOCK TABLES `wp_revslider_css_bkp` WRITE; /*!40000 ALTER TABLE `wp_revslider_css_bkp` DISABLE KEYS */; INSERT INTO `wp_revslider_css_bkp` VALUES (1,'.tp-caption.medium_grey','','','','{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\",\"white-space\":\"nowrap\"}'),(2,'.tp-caption.small_text','','','','{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(3,'.tp-caption.medium_text','','','','{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(4,'.tp-caption.large_text','','','','{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(5,'.tp-caption.very_large_text','','','','{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"}'),(6,'.tp-caption.very_big_white','','','','{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#000\"}'),(7,'.tp-caption.very_big_black','','','','{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#fff\"}'),(8,'.tp-caption.modern_medium_fat','','','','{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(9,'.tp-caption.modern_medium_fat_white','','','','{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(10,'.tp-caption.modern_medium_light','','','','{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(11,'.tp-caption.modern_big_bluebg','','','','{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\",\"letter-spacing\":\"0\"}'),(12,'.tp-caption.modern_big_redbg','','','','{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\",\"letter-spacing\":\"0\"}'),(13,'.tp-caption.modern_small_text_dark','','','','{\"position\":\"absolute\",\"color\":\"#555\",\"text-shadow\":\"none\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(14,'.tp-caption.boxshadow','','','','{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"}'),(15,'.tp-caption.black','','','','{\"color\":\"#000\",\"text-shadow\":\"none\"}'),(16,'.tp-caption.noshadow','','','','{\"text-shadow\":\"none\"}'),(17,'.tp-caption.thinheadline_dark','','','','{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(18,'.tp-caption.thintext_dark','','','','{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(19,'.tp-caption.largeblackbg','','','','{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(20,'.tp-caption.largepinkbg','','','','{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(21,'.tp-caption.largewhitebg','','','','{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(22,'.tp-caption.largegreenbg','','','','{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(23,'.tp-caption.excerpt','','','','{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"letter-spacing\":\"-1.5px\",\"padding\":\"1px 4px 0px 4px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(24,'.tp-caption.large_bold_grey','','','','{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(25,'.tp-caption.medium_thin_grey','','','','{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(26,'.tp-caption.small_thin_grey','','','','{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(27,'.tp-caption.lightgrey_divider','','','','{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(28,'.tp-caption.large_bold_darkblue','','','','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(29,'.tp-caption.medium_bg_darkblue','','','','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(30,'.tp-caption.medium_bold_red','','','','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(31,'.tp-caption.medium_light_red','','','','{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(32,'.tp-caption.medium_bg_red','','','','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(33,'.tp-caption.medium_bold_orange','','','','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(34,'.tp-caption.medium_bg_orange','','','','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(35,'.tp-caption.grassfloor','','','','{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"width\":\"4000px\",\"height\":\"150px\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(36,'.tp-caption.large_bold_white','','','','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(37,'.tp-caption.medium_light_white','','','','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(38,'.tp-caption.mediumlarge_light_white','','','','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(39,'.tp-caption.mediumlarge_light_white_center','','','','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(40,'.tp-caption.medium_bg_asbestos','','','','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(41,'.tp-caption.medium_light_black','','','','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(42,'.tp-caption.large_bold_black','','','','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(43,'.tp-caption.mediumlarge_light_darkblue','','','','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(44,'.tp-caption.small_light_white','','','','{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(45,'.tp-caption.roundedimage','','','','{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(46,'.tp-caption.large_bg_black','','','','{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(47,'.tp-caption.mediumwhitebg','','','','{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"text-shadow\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}'); /*!40000 ALTER TABLE `wp_revslider_css_bkp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_revslider_layer_animations` -- DROP TABLE IF EXISTS `wp_revslider_layer_animations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_revslider_layer_animations` ( `id` int(9) NOT NULL AUTO_INCREMENT, `handle` text NOT NULL, `params` text NOT NULL, `settings` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_revslider_layer_animations` -- LOCK TABLES `wp_revslider_layer_animations` WRITE; /*!40000 ALTER TABLE `wp_revslider_layer_animations` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_revslider_layer_animations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_revslider_layer_animations_bkp` -- DROP TABLE IF EXISTS `wp_revslider_layer_animations_bkp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_revslider_layer_animations_bkp` ( `id` int(9) NOT NULL AUTO_INCREMENT, `handle` text NOT NULL, `params` text NOT NULL, `settings` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_revslider_layer_animations_bkp` -- LOCK TABLES `wp_revslider_layer_animations_bkp` WRITE; /*!40000 ALTER TABLE `wp_revslider_layer_animations_bkp` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_revslider_layer_animations_bkp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_revslider_navigations` -- DROP TABLE IF EXISTS `wp_revslider_navigations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_revslider_navigations` ( `id` int(9) NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `handle` varchar(191) NOT NULL, `type` varchar(191) NOT NULL, `css` longtext NOT NULL, `markup` longtext NOT NULL, `settings` longtext DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_revslider_navigations` -- LOCK TABLES `wp_revslider_navigations` WRITE; /*!40000 ALTER TABLE `wp_revslider_navigations` DISABLE KEYS */; INSERT INTO `wp_revslider_navigations` VALUES (1,'arrows-translucent','hesperiden_copy103','arrows','.hesperiden_copy103.tparrows {\n cursor:pointer;\n background: transparent;\n width:##bg-size##px;\n height:##bg-size##px;\n position:absolute;\n display:block;\n z-index:1000;\n border-radius: 50%;\n border: 1px solid #fff;\n}\n\n.hesperiden_copy103.tparrows.rs-touchhover {\n background: linear-gradient(90deg,#28d9cb 0,#a0f266 100%);\n}\n.hesperiden_copy103.tparrows:before {\n font-family: \\\'revicons\\\';\n font-size:##arrow-size##px;\n color:##arrow-color##;\n display:block;\n line-height: 36px;\n text-align: center;\n}\n.hesperiden_copy103.tparrows.tp-leftarrow:before {\n content: \\\'\\\\2190\\\';\n}\n.hesperiden_copy103.tparrows.tp-rightarrow:before {\n content: \\\'\\\\2192\\\';\n}\n\n@media (min-width: 300px) and (max-width: 768px) {\n .hesperiden_copy103.tparrows {\n display: none !important;\n }\n}','','{\"dim\":{\"width\":\"160\",\"height\":\"160\"},\"placeholders\":{\"bg-color\":{\"title\":\"BG-Color\",\"type\":\"color\",\"data\":\"rgba(0,0,0,0.5)\"},\"bg-size\":{\"title\":\"BG-Size\",\"type\":\"custom\",\"data\":\"40\"},\"arrow-color\":{\"title\":\"Arrow-Color\",\"type\":\"color\",\"data\":\"#ffffff\"},\"arrow-size\":{\"title\":\"Arrow-Size\",\"type\":\"custom\",\"data\":\"20\"},\"hover-bg-color\":{\"title\":\"Hover-BG-Color\",\"type\":\"color\",\"data\":\"#000000\"},\"left-icon\":{\"title\":\"Left-Icon-trans\",\"type\":\"icon\",\"data\":\"\\\\\\\\e81f\"},\"right-icon\":{\"title\":\"Right-Icon-trans\",\"type\":\"icon\",\"data\":\"\\\\\\\\e81e\"}},\"presets\":\"\",\"version\":\"6.0.0\"}'),(2,'Ares-trasnlucent','ares_copy42','bullets','.ares_copy42.tp-bullets {\n}\n.ares_copy42.tp-bullets:before {\n content:\\\' \\\';\n position:absolute;\n width:100%;\n height:100%;\n background:transparent;\n padding:10px;\n margin-left:-10px;margin-top:-10px;\n box-sizing:content-box;\n}\n.ares_copy42 .tp-bullet {\n width: 5px;\n height: 5px;\n position:absolute;\n background: #FFF;\n border-radius:50%;\n cursor: pointer;\n box-sizing:content-box;\n}\n.ares_copy42 .tp-bullet.rs-touchhover,\n.ares_copy42 .tp-bullet.selected {\n background:#FFF;\n width: 7px;\n height: 7px;\n top: -1px!important;\n}\n.ares_copy42 .tp-bullet-title {\n position:absolute;\n color:##title-color##;\n font-size:##title-font-size##px;\n padding:0px 10px;\n font-weight:600;\n right:27px;\n top:-4px; \n background:##title-bg-color##;\n visibility:hidden;\n transform:translatex(-20px);\n -webkit-transform:translatex(-20px);\n transition:transform 0.3s;\n -webkit-transition:transform 0.3s;\n line-height:20px;\n white-space:nowrap;\n display: none;\n} \n\n.ares_copy42 .tp-bullet-title:after {\n width: 0px;\n height: 0px;\n border-style: solid;\n border-width: 10px 0 10px 10px;\n border-color: transparent transparent transparent ##title-bg-color##;\n content:\\\' \\\';\n position:absolute;\n right:-10px;\n top:0px;\n}\n \n.ares_copy42 .tp-bullet.rs-touchhover .tp-bullet-title{\n visibility:visible;\n transform:translatex(0px);\n -webkit-transform:translatex(0px);\n}\n\n.ares_copy42 .tp-bullet.selected.rs-touchhover .tp-bullet-title {\n background:##hover-bullet-bg-color##;}\n.ares_copy42 .tp-bullet.selected.rs-touchhover .tp-bullet-title:after {\n border-color:transparent transparent transparent ##hover-bullet-bg-color##;\n}\n.ares_copy42.tp-bullets.rs-touchhover .tp-bullet-title {\n visibility:hidden;\n \n}\n.ares_copy42.tp-bullets.rs-touchhover .tp-bullet.rs-touchhover .tp-bullet-title {\n visibility:visible;\n transform:translateX(0px) translatey(0px);\n -webkit-transform:translateX(0px) translatey(0px);\n}\n\n\n/* VERTICAL */\n.ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet-title { right:auto; left:27px; transform:translatex(20px); -webkit-transform:translatex(20px);} \n.ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet-title:after { \n border-width: 10px 10px 10px 0 !important;\n border-color: transparent ##title-bg-color## transparent transparent;\n right:auto !important;\n left:-10px !important; \n}\n.ares_copy42.nav-dir-vertical.nav-pos-hor-left .tp-bullet.selected.rs-touchhover .tp-bullet-title:after {\n border-color: transparent ##hover-bullet-bg-color## transparent transparent !important;\n}\n\n\n\n/* HORIZONTAL BOTTOM && CENTER */\n.ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet-title,\n.ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet-title { top:-35px; left:50%; right:auto; transform: translateX(-50%) translateY(-10px);-webkit-transform: translateX(-50%) translateY(-10px); } \n\n.ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet-title:after,\n.ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet-title:after { \n border-width: 10px 10px 0px 10px;\n border-color: ##title-bg-color## transparent transparent transparent;\n right:auto;\n left:50%;\n margin-left:-10px;\n top:auto;\n bottom:-10px;\n \n}\n.ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet.selected.rs-touchhover .tp-bullet-title:after,\n.ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet.selected.rs-touchhover .tp-bullet-title:after {\n border-color: ##hover-bullet-bg-color## transparent transparent transparent;\n}\n\n.ares_copy42.nav-dir-horizontal.nav-pos-ver-center .tp-bullet.rs-touchhover .tp-bullet-title,\n.ares_copy42.nav-dir-horizontal.nav-pos-ver-bottom .tp-bullet.rs-touchhover .tp-bullet-title{\n transform:translateX(-50%) translatey(0px);\n -webkit-transform:translateX(-50%) translatey(0px);\n}\n\n\n/* HORIZONTAL TOP */\n.ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet-title { top:25px; left:50%; right:auto; transform: translateX(-50%) translateY(10px);-webkit-transform: translateX(-50%) translateY(10px); } \n.ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet-title:after { \n border-width: 0 10px 10px 10px;\n border-color: transparent transparent ##title-bg-color## transparent;\n right:auto;\n left:50%;\n margin-left:-10px;\n bottom:auto;\n top:-10px;\n \n}\n.ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet.selected.rs-touchhover .tp-bullet-title:after {\n border-color: transparent transparent ##hover-bullet-bg-color## transparent;\n}\n\n.ares_copy42.nav-dir-horizontal.nav-pos-ver-top .tp-bullet.rs-touchhover .tp-bullet-title{\n transform:translateX(-50%) translatey(0px);\n -webkit-transform:translateX(-50%) translatey(0px);\n}\n\n@media (min-width: 300px) and (max-width: 768px) {\n .tp-tabs, .tp-thumbs, .tp-bullets {\n display: none !important;\n }\n}\n\n','{{title}}','{\"dim\":{\"width\":\"160\",\"height\":\"160\"},\"placeholders\":{\"bullet-size\":{\"title\":\"Bullet-Size\",\"type\":\"custom\",\"data\":\"13\"},\"bullet-bg-color\":{\"title\":\"Bullet-Background\",\"type\":\"color\",\"data\":\"#e5e5e5\"},\"hover-bullet-bg-color\":{\"title\":\"Hover-Bullet-BG\",\"type\":\"color\",\"data\":\"#ffffff\"},\"title-color\":{\"title\":\"Title-Color\",\"type\":\"color\",\"data\":\"#888888\"},\"title-font-size\":{\"title\":\"Title-Font-Size\",\"type\":\"custom\",\"data\":\"12\"},\"title-bg-color\":{\"title\":\"Title-BG-Color\",\"type\":\"color\",\"data\":\"rgba(255,255,255,0.75)\"}},\"presets\":\"\",\"version\":\"6.0.0\"}'); /*!40000 ALTER TABLE `wp_revslider_navigations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_revslider_navigations_bkp` -- DROP TABLE IF EXISTS `wp_revslider_navigations_bkp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_revslider_navigations_bkp` ( `id` int(9) NOT NULL AUTO_INCREMENT, `name` varchar(191) NOT NULL, `handle` varchar(191) NOT NULL, `type` varchar(191) NOT NULL, `css` longtext NOT NULL, `markup` longtext NOT NULL, `settings` longtext DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_revslider_navigations_bkp` -- LOCK TABLES `wp_revslider_navigations_bkp` WRITE; /*!40000 ALTER TABLE `wp_revslider_navigations_bkp` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_revslider_navigations_bkp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_revslider_sliders` -- DROP TABLE IF EXISTS `wp_revslider_sliders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_revslider_sliders` ( `id` int(9) NOT NULL AUTO_INCREMENT, `title` tinytext NOT NULL, `alias` tinytext DEFAULT NULL, `params` longtext NOT NULL, `settings` text DEFAULT NULL, `type` varchar(191) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `type_index` (`type`(8)) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_revslider_sliders` -- LOCK TABLES `wp_revslider_sliders` WRITE; /*!40000 ALTER TABLE `wp_revslider_sliders` DISABLE KEYS */; INSERT INTO `wp_revslider_sliders` VALUES (1,'Slider Home Dev','slider-1','{\"addOns\":[],\"version\":\"6.5.10\",\"pakps\":false,\"shortcode\":\"[rev_slider alias=\\\"slider-1\\\"][\\/rev_slider]\",\"type\":\"carousel\",\"layouttype\":\"fullwidth\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":8,\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\",\"token_source\":\"account\",\"connect_with\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":8,\"transient\":1200,\"typeSource\":\"timeline\",\"token_source\":\"account\",\"connect_with\":\"\",\"page_id\":\"\"},\"flickr\":{\"apiKey\":\"\",\"count\":8,\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":8,\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":1200,\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":8,\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":8,\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":\"600px\",\"n\":\"600px\",\"t\":\"616px\",\"m\":\"500px\"},\"editorCache\":{\"d\":600,\"n\":600,\"t\":616,\"m\":500},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"justify\":true,\"justifyMaxWidth\":true,\"snap\":true,\"borderRadius\":\"1px\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":true,\"maxItems\":\"3\",\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":\"1px\",\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":\"all\"},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":0,\"dottedOverlay\":\"none\",\"dottedOverlaySize\":1,\"dottedColorA\":\"transparent\",\"dottedColorB\":\"#000000\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"off\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5px\",\"radius\":10,\"vertical\":\"bottom\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(255,255,255,0.5)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":300,\"slotAmount\":7,\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":1},\"icache\":\"default\",\"DPR\":\"dpr\",\"observeWrap\":false,\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"enableurlhash\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"global\"},\"nav\":{\"preview\":{\"width\":50,\"height\":100},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\",\"viewport\":50,\"calldelay\":1000},\"arrows\":{\"set\":true,\"rtl\":true,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1008\",\"preset\":\"\",\"presets\":{\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"15\",\"arrow-size-def\":false,\"right-arrow\":\"\\\\e825\",\"right-arrow-def\":false,\"back-color\":\"rgba(201, 201, 201, 0)\",\"back-color-def\":true,\"back-size\":\"40\",\"back-size-def\":false,\"back-hover\":\"rgba(0, 0, 0, 0)\",\"back-hover-def\":true,\"border-rgba\":\"#ffffff\",\"border-rgba-def\":false,\"left-arrow\":\"\\\\e824\",\"left-arrow-def\":false},\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"center\",\"vertical\":\"bottom\",\"offsetX\":\"-50px\",\"offsetY\":\"10px\",\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"center\",\"vertical\":\"bottom\",\"offsetX\":\"0px\",\"offsetY\":\"10px\",\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"2000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"3003\",\"preset\":\"default\",\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false},\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":0,\"offsetY\":20,\"align\":\"slider\",\"space\":5,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\",\"coverSpeed\":1000},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500,\"pullcontent\":false},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"slider-1\\\"][\\/rev_slider]\"}','{\"version\":\"6.5.10\"}',''),(4,'Slider Home Dev - New','slider-11','{\"addOns\":[],\"version\":\"6.5.10\",\"pakps\":false,\"shortcode\":\"[rev_slider alias=\\\"slider-11\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"fullwidth\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":8,\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\",\"token_source\":\"account\",\"connect_with\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":8,\"transient\":1200,\"typeSource\":\"timeline\",\"token_source\":\"account\",\"connect_with\":\"\",\"page_id\":\"\"},\"flickr\":{\"apiKey\":\"\",\"count\":8,\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":8,\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":1200,\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":8,\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":8,\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":\"600px\",\"n\":\"600px\",\"t\":\"616px\",\"m\":\"500px\"},\"editorCache\":{\"d\":600,\"n\":600,\"t\":615.994,\"m\":500},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"justify\":true,\"justifyMaxWidth\":true,\"snap\":true,\"borderRadius\":\"1px\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":true,\"maxItems\":\"3\",\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":\"1px\",\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":\"all\"},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":0,\"dottedOverlay\":\"none\",\"dottedOverlaySize\":1,\"dottedColorA\":\"transparent\",\"dottedColorB\":\"#000000\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"off\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5px\",\"radius\":10,\"vertical\":\"bottom\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(255,255,255,0.5)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":300,\"slotAmount\":7,\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":1},\"icache\":\"on\",\"DPR\":\"dpr\",\"observeWrap\":false,\"layerSelection\":false,\"lazyLoad\":\"smart\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"enableurlhash\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"global\"},\"nav\":{\"preview\":{\"width\":50,\"height\":100},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\",\"viewport\":50,\"calldelay\":1000},\"arrows\":{\"set\":true,\"rtl\":true,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1008\",\"preset\":\"\",\"presets\":{\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"15\",\"arrow-size-def\":false,\"right-arrow\":\"\\\\e825\",\"right-arrow-def\":false,\"back-color\":\"rgba(201, 201, 201, 0)\",\"back-color-def\":true,\"back-size\":\"40\",\"back-size-def\":false,\"back-hover\":\"rgba(0, 0, 0, 0)\",\"back-hover-def\":true,\"border-rgba\":\"#ffffff\",\"border-rgba-def\":false,\"left-arrow\":\"\\\\e824\",\"left-arrow-def\":false},\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"center\",\"vertical\":\"bottom\",\"offsetX\":\"-50px\",\"offsetY\":\"10px\",\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"center\",\"vertical\":\"bottom\",\"offsetX\":\"0px\",\"offsetY\":\"10px\",\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"2000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"3003\",\"preset\":\"default\",\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false},\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":0,\"offsetY\":20,\"align\":\"slider\",\"space\":5,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\",\"coverSpeed\":1000},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500,\"pullcontent\":false},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"slider-11\\\"][\\/rev_slider]\"}','{\"version\":\"6.5.10\"}',''),(6,'Slider Home Dev - 2.0','slider-home-dev-new-1','{\"addOns\":[],\"version\":\"6.5.10\",\"pakps\":false,\"shortcode\":\"[rev_slider alias=\\\"slider-home-dev-new-1\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"fullwidth\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":8,\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\",\"token_source\":\"account\",\"connect_with\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":8,\"transient\":1200,\"typeSource\":\"timeline\",\"token_source\":\"account\",\"connect_with\":\"\",\"page_id\":\"\"},\"flickr\":{\"apiKey\":\"\",\"count\":8,\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":8,\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":1200,\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":8,\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":8,\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":\"600px\",\"n\":\"600px\",\"t\":\"616px\",\"m\":\"500px\"},\"editorCache\":{\"d\":600,\"n\":600,\"t\":616,\"m\":500},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"justify\":true,\"justifyMaxWidth\":true,\"snap\":true,\"borderRadius\":\"1px\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":true,\"maxItems\":\"3\",\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":\"1px\",\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":\"all\"},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":0,\"dottedOverlay\":\"none\",\"dottedOverlaySize\":1,\"dottedColorA\":\"transparent\",\"dottedColorB\":\"#000000\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"off\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":false,\"stopSlider\":false,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5px\",\"radius\":10,\"vertical\":\"bottom\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(255,255,255,0.5)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":300,\"slotAmount\":7,\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":1},\"icache\":\"on\",\"DPR\":\"dpr\",\"observeWrap\":false,\"layerSelection\":false,\"lazyLoad\":\"smart\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"enableurlhash\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"global\"},\"nav\":{\"preview\":{\"width\":50,\"height\":100},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\",\"viewport\":50,\"calldelay\":1000},\"arrows\":{\"set\":true,\"rtl\":true,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1008\",\"preset\":\"\",\"presets\":{\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"15\",\"arrow-size-def\":false,\"right-arrow\":\"\\\\e825\",\"right-arrow-def\":false,\"back-color\":\"rgba(201, 201, 201, 0)\",\"back-color-def\":true,\"back-size\":\"40\",\"back-size-def\":false,\"back-hover\":\"rgba(0, 0, 0, 0)\",\"back-hover-def\":true,\"border-rgba\":\"#ffffff\",\"border-rgba-def\":false,\"left-arrow\":\"\\\\e824\",\"left-arrow-def\":false},\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"center\",\"vertical\":\"bottom\",\"offsetX\":\"-50px\",\"offsetY\":\"10px\",\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"center\",\"vertical\":\"bottom\",\"offsetX\":\"0px\",\"offsetY\":\"10px\",\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"2000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"3003\",\"preset\":\"default\",\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false},\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":0,\"offsetY\":20,\"align\":\"slider\",\"space\":5,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\",\"coverSpeed\":1000},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500,\"pullcontent\":false},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"slider-home-dev-new-1\\\"][\\/rev_slider]\"}','{\"version\":\"6.5.10\"}',''),(7,'Slider Home 02-01-2022','slider-02-01-2022','{\"addOns\":[],\"version\":\"6.5.10\",\"pakps\":false,\"shortcode\":\"[rev_slider alias=\\\"slider-02-01-2022\\\"][\\/rev_slider]\",\"type\":\"standard\",\"layouttype\":\"fullwidth\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":8,\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\",\"token_source\":\"account\",\"connect_with\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":8,\"transient\":1200,\"typeSource\":\"timeline\",\"token_source\":\"account\",\"connect_with\":\"\",\"page_id\":\"\"},\"flickr\":{\"apiKey\":\"\",\"count\":8,\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":8,\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":1200,\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":8,\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":8,\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":\"600px\",\"n\":\"600px\",\"t\":\"616px\",\"m\":\"500px\"},\"editorCache\":{\"d\":600,\"n\":600,\"t\":616,\"m\":500},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"justify\":true,\"justifyMaxWidth\":true,\"snap\":true,\"borderRadius\":\"1px\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":true,\"maxItems\":\"3\",\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":\"1px\",\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":\"all\"},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":0,\"dottedOverlay\":\"none\",\"dottedOverlaySize\":1,\"dottedColorA\":\"transparent\",\"dottedColorB\":\"#000000\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"off\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":true,\"stopSlider\":false,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5px\",\"radius\":10,\"vertical\":\"bottom\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(255,255,255,0.5)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":300,\"slotAmount\":7,\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":1},\"icache\":\"default\",\"DPR\":\"dpr\",\"observeWrap\":false,\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"enableurlhash\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"global\"},\"nav\":{\"preview\":{\"width\":50,\"height\":100},\"swipe\":{\"set\":true,\"setOnDesktop\":true,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\",\"viewport\":50,\"calldelay\":1000},\"arrows\":{\"set\":true,\"rtl\":false,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1013\",\"preset\":\"\",\"presets\":{\"width\":\"50\",\"width-def\":false,\"height\":\"50\",\"height-def\":false,\"font-size\":\"15\",\"font-size-def\":true,\"background\":\"rgba(255,255,255,0)\",\"background-def\":false},\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"center\",\"vertical\":\"bottom\",\"offsetX\":\"-40px\",\"offsetY\":\"-7px\",\"align\":\"slider\"},\"right\":{\"anim\":\"left\",\"horizontal\":\"center\",\"vertical\":\"bottom\",\"offsetX\":\"40px\",\"offsetY\":\"-7px\",\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"2001\",\"preset\":\"default\",\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false},\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":\"70\",\"width\":\"70\",\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":true,\"rtl\":false,\"style\":2,\"preset\":\"default\",\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false},\"alwaysOn\":true,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"0px\",\"offsetY\":\"15px\",\"align\":\"slider\",\"space\":5,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\",\"coverSpeed\":1000},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500,\"pullcontent\":false},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"slider-02-01-2022\\\"][\\/rev_slider]\"}','{\"version\":\"6.5.10\"}',''),(8,'Slider Home 02-01-2022 backup','slider-home-02-01-2022-1','{\"addOns\":[],\"version\":\"6.5.10\",\"pakps\":false,\"shortcode\":\"[rev_slider alias=\\\"slider-home-02-01-2022-1\\\"]\",\"type\":\"standard\",\"layouttype\":\"fullwidth\",\"sourcetype\":\"gallery\",\"googleFont\":[],\"id\":\"\",\"class\":\"\",\"wrapperclass\":\"\",\"snap\":{\"adjust\":\"none\",\"snap\":false,\"helpLines\":false,\"gap\":20},\"source\":{\"gallery\":[],\"post\":{\"excerptLimit\":55,\"maxPosts\":30,\"fetchType\":\"cat_tag\",\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"post\",\"list\":\"\",\"sortDirection\":\"DESC\",\"subType\":\"post\"},\"woo\":{\"excerptLimit\":55,\"maxProducts\":30,\"featuredOnly\":false,\"inStockOnly\":false,\"category\":\"\",\"sortBy\":\"ID\",\"types\":\"product\",\"sortDirection\":\"DESC\",\"regPriceFrom\":\"\",\"regPriceTo\":\"\",\"salePriceFrom\":\"\",\"salePriceTo\":\"\"},\"instagram\":{\"count\":8,\"hashTag\":\"\",\"transient\":1200,\"type\":\"user\",\"userId\":\"\",\"token_source\":\"account\",\"connect_with\":\"\"},\"facebook\":{\"album\":\"\",\"appId\":\"\",\"appSecret\":\"\",\"count\":8,\"transient\":1200,\"typeSource\":\"timeline\",\"token_source\":\"account\",\"connect_with\":\"\",\"page_id\":\"\"},\"flickr\":{\"apiKey\":\"\",\"count\":8,\"galleryURL\":\"\",\"groupURL\":\"\",\"photoSet\":\"\",\"transient\":1200,\"type\":\"publicphotos\",\"userURL\":\"\"},\"twitter\":{\"accessSecret\":\"\",\"accessToken\":\"\",\"consumerKey\":\"\",\"consumerSecret\":\"\",\"count\":8,\"excludeReplies\":false,\"imageOnly\":false,\"includeRetweets\":false,\"transient\":1200,\"userId\":\"\"},\"vimeo\":{\"albumId\":\"\",\"channelName\":\"\",\"count\":8,\"transient\":1200,\"groupName\":\"\",\"typeSource\":\"user\",\"userName\":\"\"},\"youtube\":{\"api\":\"\",\"channelId\":\"\",\"count\":8,\"playList\":\"\",\"transient\":1200,\"typeSource\":\"channel\"}},\"def\":{\"intelligentInherit\":true,\"autoResponsive\":true,\"responsiveChilds\":true,\"responsiveOffset\":true,\"transition\":\"fade\",\"transitionDuration\":300,\"delay\":9000,\"background\":{\"fit\":\"cover\",\"fitX\":100,\"fitY\":100,\"position\":\"center center\",\"positionX\":0,\"positionY\":0,\"repeat\":\"no-repeat\",\"imageSourceType\":\"full\"},\"panZoom\":{\"set\":false,\"blurStart\":0,\"blurEnd\":0,\"duration\":10000,\"ease\":\"none\",\"fitEnd\":100,\"fitStart\":100,\"xEnd\":0,\"yEnd\":0,\"xStart\":0,\"yStart\":0,\"rotateStart\":0,\"rotateEnd\":0}},\"size\":{\"enableUpscaling\":false,\"respectAspectRatio\":false,\"disableForceFullWidth\":false,\"custom\":{\"d\":true,\"n\":true,\"t\":true,\"m\":true},\"minHeightFullScreen\":\"\",\"minHeight\":\"\",\"maxWidth\":0,\"maxHeight\":0,\"fullScreenOffsetContainer\":\"\",\"fullScreenOffset\":\"\",\"width\":{\"d\":1240,\"n\":1024,\"t\":778,\"m\":480},\"height\":{\"d\":\"600px\",\"n\":\"600px\",\"t\":\"616px\",\"m\":\"500px\"},\"editorCache\":{\"d\":600,\"n\":600,\"t\":616,\"m\":500},\"overflow\":false,\"useFullScreenHeight\":true,\"overflowHidden\":false,\"gridEQModule\":false,\"forceOverflow\":false,\"keepBPHeight\":false,\"ignoreHeightChanges\":true},\"codes\":{\"css\":\"\",\"javascript\":\"\"},\"carousel\":{\"justify\":true,\"justifyMaxWidth\":true,\"snap\":true,\"borderRadius\":\"1px\",\"borderRadiusUnit\":\"px\",\"ease\":\"power3.inOut\",\"fadeOut\":true,\"scale\":false,\"offsetScale\":false,\"horizontal\":\"center\",\"vertical\":\"center\",\"infinity\":true,\"maxItems\":\"3\",\"maxRotation\":0,\"maxOpacity\":100,\"paddingTop\":0,\"paddingBottom\":0,\"rotation\":false,\"scaleDown\":50,\"space\":\"1px\",\"speed\":800,\"stretch\":false,\"varyFade\":false,\"varyRotate\":false,\"varyScale\":false,\"showAllLayers\":\"all\"},\"hero\":{\"activeSlide\":-1},\"layout\":{\"bg\":{\"color\":\"transparent\",\"padding\":0,\"dottedOverlay\":\"none\",\"dottedOverlaySize\":1,\"dottedColorA\":\"transparent\",\"dottedColorB\":\"#000000\",\"shadow\":0,\"useImage\":false,\"image\":\"\",\"imageSourceType\":\"full\",\"fit\":\"cover\",\"position\":\"center center\",\"repeat\":\"no-repeat\"},\"spinner\":{\"color\":\"#ffffff\",\"type\":\"off\"},\"position\":{\"marginTop\":0,\"marginBottom\":0,\"marginLeft\":0,\"marginRight\":0,\"align\":\"center\",\"fixedOnTop\":false,\"addClear\":false}},\"visibility\":{\"hideSelectedLayersUnderLimit\":0,\"hideAllLayersUnderLimit\":0,\"hideSliderUnderLimit\":0},\"general\":{\"slideshow\":{\"slideShow\":true,\"stopOnHover\":true,\"stopSlider\":false,\"stopAfterLoops\":0,\"stopAtSlide\":1,\"shuffle\":false,\"loopSingle\":false,\"viewPort\":false,\"viewPortStart\":\"wait\",\"viewPortArea\":{\"d\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"n\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"t\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"},\"m\":{\"v\":\"200px\",\"e\":false,\"u\":\"\"}},\"presetSliderHeight\":false,\"initDelay\":0,\"waitForInit\":false},\"progressbar\":{\"set\":false,\"alignby\":\"slider\",\"style\":\"horizontal\",\"size\":\"5px\",\"radius\":10,\"vertical\":\"bottom\",\"horizontal\":\"left\",\"x\":0,\"y\":0,\"color\":\"rgba(255,255,255,0.5)\",\"bgcolor\":\"transparent\",\"basedon\":\"slide\",\"gapsize\":0,\"gap\":false,\"gapcolor\":\"rgba(255,255,255,0.5)\",\"reset\":\"reset\",\"visibility\":{\"d\":true,\"m\":true,\"n\":true,\"t\":true}},\"firstSlide\":{\"set\":false,\"duration\":300,\"slotAmount\":7,\"type\":\"fade\",\"alternativeFirstSlideSet\":false,\"alternativeFirstSlide\":1},\"icache\":\"default\",\"DPR\":\"dpr\",\"observeWrap\":false,\"layerSelection\":false,\"lazyLoad\":\"none\",\"nextSlideOnFocus\":false,\"disableFocusListener\":false,\"enableurlhash\":false,\"disableOnMobile\":false,\"autoPlayVideoOnMobile\":true,\"disablePanZoomMobile\":false,\"useWPML\":false,\"perspective\":600,\"perspectiveType\":\"global\"},\"nav\":{\"preview\":{\"width\":50,\"height\":100},\"swipe\":{\"set\":false,\"setOnDesktop\":false,\"setMobileCarousel\":true,\"setDesktopCarousel\":true,\"blockDragVertical\":false,\"direction\":\"horizontal\",\"minTouch\":1,\"velocity\":75},\"keyboard\":{\"direction\":\"horizontal\",\"set\":false},\"mouse\":{\"set\":\"off\",\"reverse\":\"default\",\"viewport\":50,\"calldelay\":1000},\"arrows\":{\"set\":true,\"rtl\":true,\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"style\":\"1\",\"preset\":\"default\",\"presets\":{\"left-icon\":\"\\\\e81f\",\"left-icon-def\":false,\"right-icon\":\"\\\\e81e\",\"right-icon-def\":false,\"bg-color\":\"rgba(0,0,0,0.5)\",\"bg-color-def\":false,\"bg-size\":\"40\",\"bg-size-def\":false,\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"20\",\"arrow-size-def\":false,\"hover-bg-color\":\"#000000\",\"hover-bg-color-def\":false},\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"left\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"bottom\",\"offsetX\":\"102px\",\"offsetY\":\"30px\",\"align\":\"slider\"},\"right\":{\"anim\":\"fade\",\"horizontal\":\"left\",\"vertical\":\"bottom\",\"offsetX\":\"150px\",\"offsetY\":\"30px\",\"align\":\"slider\"}},\"thumbs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"2001\",\"preset\":\"default\",\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false},\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":\"70\",\"width\":\"70\",\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"tabs\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":false,\"rtl\":false,\"style\":\"4000\",\"preset\":\"default\",\"presets\":[],\"alwaysOn\":true,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778,\"spanWrapper\":false,\"horizontal\":\"center\",\"vertical\":\"bottom\",\"amount\":5,\"direction\":\"horizontal\",\"height\":50,\"width\":100,\"widthMin\":100,\"innerOuter\":\"inner\",\"offsetX\":0,\"offsetY\":20,\"space\":5,\"align\":\"slider\",\"padding\":5,\"wrapperColor\":\"transparent\",\"mhoffset\":0,\"mvoffset\":0},\"bullets\":{\"anim\":\"fade\",\"animSpeed\":\"1000ms\",\"animDelay\":\"1000ms\",\"set\":true,\"rtl\":false,\"style\":2,\"preset\":\"default\",\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false},\"alwaysOn\":true,\"horizontal\":\"left\",\"vertical\":\"bottom\",\"direction\":\"horizontal\",\"offsetX\":\"32px\",\"offsetY\":\"43px\",\"align\":\"slider\",\"space\":5,\"hideDelay\":200,\"hideDelayMobile\":1200,\"hideOver\":false,\"hideOverLimit\":0,\"hideUnder\":false,\"hideUnderLimit\":778}},\"troubleshooting\":{\"alternateImageType\":\"off\",\"alternateURL\":\"\",\"jsNoConflict\":false,\"jsInBody\":false,\"outPutFilter\":\"none\",\"simplify_ie8_ios4\":false},\"parallax\":{\"set\":false,\"setDDD\":false,\"disableOnMobile\":false,\"levels\":[5,10,15,20,25,30,35,40,45,46,47,48,49,50,51,30],\"ddd\":{\"BGFreeze\":false,\"layerOverflow\":false,\"overflow\":false,\"shadow\":false,\"zCorrection\":65},\"mouse\":{\"speed\":0,\"bgSpeed\":0,\"layersSpeed\":0,\"origo\":\"slidercenter\",\"type\":\"scroll\"}},\"modal\":{\"bodyclass\":\"\",\"horizontal\":\"center\",\"vertical\":\"middle\",\"cover\":true,\"coverColor\":\"rgba(0,0,0,0.5)\",\"coverSpeed\":1000},\"scrolleffects\":{\"set\":false,\"setBlur\":false,\"setFade\":false,\"setGrayScale\":false,\"bg\":false,\"direction\":\"both\",\"layers\":false,\"maxBlur\":10,\"multiplicator\":\"1.3\",\"multiplicatorLayers\":\"1.3\",\"disableOnMobile\":false,\"parallaxLayers\":false,\"staticLayers\":false,\"staticParallaxLayers\":false,\"tilt\":30},\"scrolltimeline\":{\"set\":false,\"fixed\":false,\"fixedStart\":2000,\"fixedEnd\":4000,\"layers\":false,\"ease\":\"none\",\"speed\":500,\"pullcontent\":false},\"skins\":{\"colorsAtStart\":false,\"cid\":2,\"colors\":[{\"alias\":\"Highlight\",\"v\":\"#ff0000\",\"ref\":[]},{\"alias\":\"Headline Text\",\"v\":\"#ffffff\",\"ref\":[]},{\"alias\":\"Content Text\",\"v\":\"#00ffff\",\"ref\":[]}]},\"modalshortcode\":\"[rev_slider usage=\\\"modal\\\" alias=\\\"slider-02-01-2022\\\"][\\/rev_slider]\",\"title\":\"Slider Home 02-01-2022 1\",\"alias\":\"slider-home-02-01-2022-1\"}','{\"version\":\"6.5.10\"}',''); /*!40000 ALTER TABLE `wp_revslider_sliders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_revslider_sliders_bkp` -- DROP TABLE IF EXISTS `wp_revslider_sliders_bkp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_revslider_sliders_bkp` ( `id` int(9) NOT NULL AUTO_INCREMENT, `title` tinytext NOT NULL, `alias` tinytext DEFAULT NULL, `params` longtext NOT NULL, `settings` text DEFAULT NULL, `type` varchar(191) NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `type_index` (`type`(8)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_revslider_sliders_bkp` -- LOCK TABLES `wp_revslider_sliders_bkp` WRITE; /*!40000 ALTER TABLE `wp_revslider_sliders_bkp` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_revslider_sliders_bkp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_revslider_slides` -- DROP TABLE IF EXISTS `wp_revslider_slides`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_revslider_slides` ( `id` int(9) NOT NULL AUTO_INCREMENT, `slider_id` int(9) NOT NULL, `slide_order` int(11) NOT NULL, `params` longtext NOT NULL, `layers` longtext NOT NULL, `settings` text NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `slider_id_index` (`slider_id`) ) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_revslider_slides` -- LOCK TABLES `wp_revslider_slides` WRITE; /*!40000 ALTER TABLE `wp_revslider_slides` DISABLE KEYS */; INSERT INTO `wp_revslider_slides` VALUES (1,1,1,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"position\":\"right top\",\"image\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-1\\/home11.png\",\"imageSourceType\":\"auto\",\"imageLib\":\"medialibrary\",\"imageWidth\":1440,\"imageHeight\":592,\"imageRatio\":2.4324324324324325,\"imageId\":3645},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"20\",\"arrow-size-def\":false,\"right-arrow\":\"\\\\e825\",\"right-arrow-def\":false,\"back-color\":\"rgba(0, 0, 0, 0)\",\"back-color-def\":true,\"back-size\":\"70\",\"back-size-def\":false,\"back-hover\":\"#000000\",\"back-hover-def\":false,\"border-rgba\":\"#ffffff\",\"border-rgba-def\":false,\"left-arrow\":\"\\\\e824\",\"left-arrow-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false}}},\"title\":\"Slide\"}','{\"0\":{\"text\":\"We Listen\",\"alias\":\"Text-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"701px\",\"e\":true},\"t\":{\"v\":\"236px\",\"e\":true},\"m\":{\"v\":\"359px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"81px\",\"e\":true},\"n\":{\"v\":\"6px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"122px\",\"e\":true},\"n\":{\"v\":\"86px\",\"e\":true},\"t\":{\"v\":\"77px\",\"e\":true},\"m\":{\"v\":\"86px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":14},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"63px\",\"e\":true},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"2px\"},\"m\":{\"v\":\"1px\"}},\"lineHeight\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"t\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"1\":{\"text\":\"With open communication.\\nYour goals become our goals.\",\"alias\":\"Text-1\",\"uid\":1,\"customCSS\":\"color: #24c1ff; font-size: 23px; line-height: 28px; text-transform: inherit; margin-bottom: 20px;\",\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"m\":{\"v\":\"53px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"86px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"299px\",\"e\":true},\"n\":{\"v\":\"244px\",\"e\":true},\"t\":{\"v\":\"231px\",\"e\":true},\"m\":{\"v\":\"243px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#24c1ff\",\"e\":true},\"n\":{\"v\":\"#24c1ff\"},\"t\":{\"v\":\"#24c1ff\"},\"m\":{\"v\":\"#24c1ff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[2,0,3,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"23px\",\"e\":true},\"n\":{\"v\":\"23px\"},\"t\":{\"v\":\"23px\",\"e\":true},\"m\":{\"v\":\"23px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"t\":{\"v\":\"21px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"textAlign\":{\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"fontFamily\":\"Roboto\"},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"Your needs matter to us\",\"alias\":\"Text-2\",\"uid\":2,\"customCSS\":\"text-transform: uppercase;\",\"customHoverCSS\":\"text-transform: uppercase;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"12px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"10px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"208px\",\"e\":true},\"n\":{\"v\":\"168px\",\"e\":true},\"t\":{\"v\":\"135px\",\"e\":true},\"m\":{\"v\":\"156px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":9},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#24c1ff\",\"e\":true},\"n\":{\"v\":\"#24c1ff\"},\"t\":{\"v\":\"#24c1ff\"},\"m\":{\"v\":\"#24c1ff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,10,0,10],\"e\":true},\"n\":{\"v\":[0,10,0,10],\"e\":false},\"t\":{\"v\":[0,13,0,13],\"e\":true},\"m\":{\"v\":[0,11,0,11],\"e\":false}},\"fontFamily\":\"Rajdhani\",\"fontSize\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"v\":\"2\"},\"n\":{\"v\":\"2\"},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"45\"},\"n\":{\"v\":\"45\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"36px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"borderColor\":\"#24c1ff\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"3\":{\"text\":\"This allows us to transform your company\",\"alias\":\"Text-3\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"t\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"87px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"366px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"294px\",\"e\":true},\"m\":{\"v\":\"313px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\"},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"lineHeight\":{\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"12px\"}},\"textAlign\":{\"n\":{\"e\":true},\"t\":{\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"fontFamily\":\"Roboto\"},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"4\":{\"text\":\"Let us help you\",\"alias\":\"Copy text-3\",\"uid\":4,\"customCSS\":\"text-decoration: underline !important;\",\"customHoverCSS\":\"text-decoration: underline !important;\",\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"87px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"388px\",\"e\":true},\"n\":{\"v\":\"318px\",\"e\":true},\"t\":{\"v\":\"316px\",\"e\":true},\"m\":{\"v\":\"333px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\"},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"lineHeight\":{\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"12px\"}},\"textAlign\":{\"n\":{\"e\":true},\"t\":{\"e\":true}},\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,\"0px\"],\"e\":true},\"borderStyle\":{\"d\":{\"e\":true}},\"borderWidth\":[\"0px\",0,\"0px\",0],\"textDecoration\":\"underline\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"fontFamily\":\"Roboto\"},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"6\":{\"text\":\".\",\"alias\":\"Copy text-0\",\"uid\":6,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"701px\",\"e\":true},\"t\":{\"v\":\"31px\",\"e\":true},\"m\":{\"v\":\"57px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"538px\",\"e\":true},\"n\":{\"v\":\"323px\",\"e\":true},\"t\":{\"v\":\"236px\",\"e\":true},\"m\":{\"v\":\"258px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"122px\",\"e\":true},\"n\":{\"v\":\"85px\",\"e\":true},\"t\":{\"v\":\"77px\",\"e\":true},\"m\":{\"v\":\"72px\",\"e\":true}},\"zIndex\":13},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#24ffff\",\"e\":true},\"n\":{\"v\":\"#24ffff\"},\"t\":{\"v\":\"#24ffff\"},\"m\":{\"v\":\"#24ffff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"63px\",\"e\":true},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"67px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"2px\"},\"m\":{\"v\":\"1px\"}},\"lineHeight\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"85px\"},\"m\":{\"v\":\"68px\"}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"8\":{\"text\":\"Book a consultation \",\"alias\":\"Button-8\",\"uid\":8,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"84px\",\"e\":true},\"n\":{\"v\":\"11px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"439px\",\"e\":true},\"n\":{\"v\":\"360px\",\"e\":true},\"t\":{\"v\":\"364px\",\"e\":true},\"m\":{\"v\":\"375px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":15},\"group\":{\"groupOrder\":15},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"v\":\"#182647\",\"e\":true},\"n\":{\"v\":\"#182647\"},\"t\":{\"v\":\"#182647\"},\"m\":{\"v\":\"#182647\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,40,0,40],\"e\":false},\"n\":{\"v\":[0,40,0,40],\"e\":false},\"t\":{\"v\":[0,63,0,63],\"e\":true},\"m\":{\"v\":[0,53,0,53],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"18\"},\"n\":{\"v\":\"18\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\"},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"fontFamily\":\"Roboto\"},\"hover\":{\"usehover\":true,\"color\":\"#182647\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"speed\":100,\"ease\":\"power1.inOut\",\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"callback\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/calendly.com\\/tc-results\",\"actioncallback\":\"Calendly.initPopupWidget({url: \'https:\\/\\/calendly.com\\/tc-results\'});return false;\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"10\":{\"text\":\"\",\"alias\":\"Image-10\",\"uid\":10,\"media\":{\"imageUrl\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-1\\/home-fundo-300x261.png\",\"loaded\":true,\"imageLib\":\"medialibrary\",\"imageId\":3646},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"300px\"},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"781px\",\"e\":true},\"m\":{\"v\":\"574px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"180px\"},\"n\":{\"v\":\"180px\"},\"t\":{\"v\":\"680px\",\"e\":true},\"m\":{\"v\":\"500px\",\"e\":true}},\"originalWidth\":680,\"originalHeight\":592,\"aspectRatio\":{\"d\":{\"v\":1.1486486486486487},\"n\":{\"v\":1.1486486486486487},\"t\":{\"v\":1.1486486486486487},\"m\":{\"v\":1.1486486486486487}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"1px\",\"e\":true}},\"horizontal\":{\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"m\":{\"v\":\"16\"}},\"lineHeight\":{\"m\":{\"v\":\"20\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"locked\":true},\"type\":\"image\",\"behavior\":{\"imageSourceType\":\"medium\"}},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.5.10\"}'),(2,1,2,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"position\":\"right top\",\"image\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-1\\/home31-768x316.jpg\",\"imageLib\":\"medialibrary\",\"imageWidth\":1440,\"imageHeight\":592,\"imageRatio\":2.4324324324324325,\"imageId\":3647,\"imageSourceType\":\"medium_large\"},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"back-color\":\"rgba(201,201,201,0.75)\",\"back-color-def\":false,\"back-size\":\"40\",\"back-size-def\":false,\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"15\",\"arrow-size-def\":false,\"back-hover\":\"#000000\",\"back-hover-def\":false,\"border-rgba\":\"#ffffff\",\"border-rgba-def\":false,\"left-arrow\":\"\\\\e824\",\"left-arrow-def\":false,\"right-arrow\":\"\\\\e825\",\"right-arrow-def\":false}}},\"title\":\"Slide\"}','{\"0\":{\"text\":\"We Learn\",\"alias\":\"Text-0\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"701px\",\"e\":true},\"t\":{\"v\":\"236px\",\"e\":true},\"m\":{\"v\":\"359px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"81px\",\"e\":true},\"n\":{\"v\":\"6px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"122px\",\"e\":true},\"n\":{\"v\":\"86px\",\"e\":true},\"t\":{\"v\":\"77px\",\"e\":true},\"m\":{\"v\":\"86px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":14},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"63px\",\"e\":true},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"2px\"},\"m\":{\"v\":\"1px\"}},\"lineHeight\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"t\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"1\":{\"text\":\"Learning is is our DNA.\\nKnowledge sharing is our passion.\",\"alias\":\"Text-1\",\"uid\":1,\"customCSS\":\"color: #24c1ff; font-size: 23px; line-height: 28px; text-transform: inherit; margin-bottom: 20px;\",\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"m\":{\"v\":\"53px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"86px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"299px\",\"e\":true},\"n\":{\"v\":\"244px\",\"e\":true},\"t\":{\"v\":\"231px\",\"e\":true},\"m\":{\"v\":\"249px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#24c1ff\",\"e\":true},\"n\":{\"v\":\"#24c1ff\"},\"t\":{\"v\":\"#24c1ff\"},\"m\":{\"v\":\"#24c1ff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[2,0,3,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"23px\",\"e\":true},\"n\":{\"v\":\"23px\"},\"t\":{\"v\":\"23px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"t\":{\"v\":\"21px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"textAlign\":{\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"fontFamily\":\"Roboto\"},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"Focused Action | Targeted results\",\"alias\":\"Text-2\",\"uid\":2,\"customCSS\":\"text-transform: uppercase;\",\"customHoverCSS\":\"text-transform: uppercase;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"t\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"12px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"206px\",\"e\":true},\"n\":{\"v\":\"168px\",\"e\":true},\"t\":{\"v\":\"135px\",\"e\":true},\"m\":{\"v\":\"156px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":9},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#24c1ff\",\"e\":true},\"n\":{\"v\":\"#24c1ff\"},\"t\":{\"v\":\"#24c1ff\"},\"m\":{\"v\":\"#24c1ff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,10,0,10],\"e\":true},\"n\":{\"v\":[0,10,0,10],\"e\":false},\"t\":{\"v\":[0,13,0,13],\"e\":true},\"m\":{\"v\":[0,11,0,11],\"e\":false}},\"fontFamily\":\"Rajdhani\",\"fontSize\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"20px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"23px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"v\":\"2\"},\"n\":{\"v\":\"2\"},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"45\"},\"n\":{\"v\":\"45\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"borderColor\":\"#24c1ff\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"3\":{\"text\":\"We share what we know, so you\'ll know what we learn.\",\"alias\":\"Text-3\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"t\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"87px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"366px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"294px\",\"e\":true},\"m\":{\"v\":\"314px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"17px\"},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"lineHeight\":{\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"textAlign\":{\"n\":{\"e\":true},\"t\":{\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"fontFamily\":\"Roboto\"},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"6\":{\"text\":\".\",\"alias\":\"Copy text-0\",\"uid\":6,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"701px\",\"e\":true},\"t\":{\"v\":\"31px\",\"e\":true},\"m\":{\"v\":\"57px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"520px\",\"e\":true},\"n\":{\"v\":\"311px\",\"e\":true},\"t\":{\"v\":\"230px\",\"e\":true},\"m\":{\"v\":\"253px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"122px\",\"e\":true},\"n\":{\"v\":\"85px\",\"e\":true},\"t\":{\"v\":\"77px\",\"e\":true},\"m\":{\"v\":\"73px\",\"e\":true}},\"zIndex\":13},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#24ffff\",\"e\":true},\"n\":{\"v\":\"#24ffff\"},\"t\":{\"v\":\"#24ffff\"},\"m\":{\"v\":\"#24ffff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"63px\",\"e\":true},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"67px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"2px\"},\"m\":{\"v\":\"1px\"}},\"lineHeight\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"85px\"},\"m\":{\"v\":\"68px\"}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"8\":{\"text\":\"Book a consultation\",\"alias\":\"Button-8\",\"uid\":8,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"84px\",\"e\":true},\"n\":{\"v\":\"11px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"439px\",\"e\":true},\"n\":{\"v\":\"360px\",\"e\":true},\"t\":{\"v\":\"364px\",\"e\":true},\"m\":{\"v\":\"375px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":15},\"group\":{\"groupOrder\":15},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"v\":\"#182647\",\"e\":true},\"n\":{\"v\":\"#182647\"},\"t\":{\"v\":\"#182647\"},\"m\":{\"v\":\"#182647\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,40,0,40],\"e\":false},\"n\":{\"v\":[0,40,0,40],\"e\":false},\"t\":{\"v\":[0,63,0,63],\"e\":true},\"m\":{\"v\":[0,53,0,53],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"18\"},\"n\":{\"v\":\"18\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\"},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"50\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}},\"fontFamily\":\"Roboto\"},\"hover\":{\"usehover\":true,\"color\":\"#182647\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"speed\":100,\"ease\":\"power1.inOut\",\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"callback\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/calendly.com\\/tc-results\",\"actioncallback\":\"Calendly.initPopupWidget({url: \'https:\\/\\/calendly.com\\/tc-results\'});return false;\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"10\":{\"text\":\"\",\"alias\":\"Image-10\",\"uid\":10,\"media\":{\"imageUrl\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-1\\/home-fundo-300x261.png\",\"loaded\":true,\"imageLib\":\"medialibrary\",\"imageId\":3646},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"300px\"},\"n\":{\"v\":\"300px\"},\"t\":{\"v\":\"781px\",\"e\":true},\"m\":{\"v\":\"574px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"180px\"},\"n\":{\"v\":\"180px\"},\"t\":{\"v\":\"680px\",\"e\":true},\"m\":{\"v\":\"500px\",\"e\":true}},\"originalWidth\":680,\"originalHeight\":592,\"aspectRatio\":{\"d\":{\"v\":1.1486486486486487},\"n\":{\"v\":1.1486486486486487},\"t\":{\"v\":1.1486486486486487},\"m\":{\"v\":1.1486486486486487}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"50px\"},\"n\":{\"v\":\"50px\"},\"t\":{\"v\":\"1px\",\"e\":true}},\"horizontal\":{\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"m\":{\"v\":\"16\"}},\"lineHeight\":{\"m\":{\"v\":\"20\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"locked\":true},\"type\":\"image\",\"behavior\":{\"imageSourceType\":\"medium\"}},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.5.10\"}'),(8,4,1,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"solid\",\"color\":\"#121d3d\",\"fit\":\"contain\",\"image\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-1\\/home11.png\",\"imageId\":3645,\"imageSourceType\":\"auto\",\"imageLib\":\"medialibrary\",\"imageWidth\":1440,\"imageHeight\":592,\"imageRatio\":2.4324324324324325},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"20\",\"arrow-size-def\":false,\"right-arrow\":\"\\\\e825\",\"right-arrow-def\":false,\"back-color\":\"rgba(0, 0, 0, 0)\",\"back-color-def\":true,\"back-size\":\"70\",\"back-size-def\":false,\"back-hover\":\"#000000\",\"back-hover-def\":false,\"border-rgba\":\"#ffffff\",\"border-rgba-def\":false,\"left-arrow\":\"\\\\e824\",\"left-arrow-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false}}}}','{\"0\":{\"text\":\"We Listen\",\"alias\":\"Title\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"701px\",\"e\":true},\"t\":{\"v\":\"236px\",\"e\":true},\"m\":{\"v\":\"359px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"81px\",\"e\":true},\"n\":{\"v\":\"6px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"122px\",\"e\":true},\"n\":{\"v\":\"86px\",\"e\":true},\"t\":{\"v\":\"77px\",\"e\":true},\"m\":{\"v\":\"86px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":14},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"63px\",\"e\":true},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"t\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"1\":{\"text\":\"With open communication.\\nYour goals become our goals.\",\"alias\":\"Action-text\",\"uid\":1,\"customCSS\":\"color: #24c1ff; font-size: 23px; line-height: 28px; text-transform: inherit; margin-bottom: 20px;\",\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"m\":{\"v\":\"53px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"86px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"299px\",\"e\":true},\"n\":{\"v\":\"244px\",\"e\":true},\"t\":{\"v\":\"231px\",\"e\":true},\"m\":{\"v\":\"243px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#24c1ff\",\"e\":true},\"n\":{\"v\":\"#24c1ff\"},\"t\":{\"v\":\"#24c1ff\"},\"m\":{\"v\":\"#24c1ff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[2,0,3,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"23px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"23px\",\"e\":true},\"m\":{\"v\":\"23px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"21px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"textAlign\":{\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"Your needs matter to us\",\"alias\":\"Subtitle\",\"uid\":2,\"customCSS\":\"text-transform: uppercase;\",\"customHoverCSS\":\"text-transform: uppercase;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"12px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"10px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"208px\",\"e\":true},\"n\":{\"v\":\"168px\",\"e\":true},\"t\":{\"v\":\"135px\",\"e\":true},\"m\":{\"v\":\"156px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":9},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#24c1ff\",\"e\":true},\"n\":{\"v\":\"#24c1ff\"},\"t\":{\"v\":\"#24c1ff\"},\"m\":{\"v\":\"#24c1ff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,10,0,10],\"e\":true},\"n\":{\"v\":[0,8,0,8],\"e\":false},\"t\":{\"v\":[0,13,0,13],\"e\":true},\"m\":{\"v\":[0,8,0,8],\"e\":false}},\"fontFamily\":\"Rajdhani\",\"fontSize\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"v\":\"2\"},\"n\":{\"v\":\"1\"},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"45\"},\"n\":{\"v\":\"37\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"36px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"borderColor\":\"#24c1ff\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"3\":{\"text\":\"This allows us to transform your company\",\"alias\":\"Sub-action-text-1\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"t\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"87px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"366px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"294px\",\"e\":true},\"m\":{\"v\":\"313px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"9px\"}},\"textAlign\":{\"n\":{\"e\":true},\"t\":{\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"4\":{\"text\":\"Let us help you\",\"alias\":\"Sub-action-text-2\",\"uid\":4,\"customCSS\":\"text-decoration: underline !important;\",\"customHoverCSS\":\"text-decoration: underline !important;\",\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"87px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"388px\",\"e\":true},\"n\":{\"v\":\"318px\",\"e\":true},\"t\":{\"v\":\"316px\",\"e\":true},\"m\":{\"v\":\"333px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"9px\"}},\"textAlign\":{\"n\":{\"e\":true},\"t\":{\"e\":true}},\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,\"0px\"],\"e\":true},\"borderStyle\":{\"d\":{\"e\":true}},\"borderWidth\":[\"0px\",0,\"0px\",0],\"textDecoration\":\"underline\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"6\":{\"text\":\".\",\"alias\":\"Title-dot\",\"uid\":6,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"701px\",\"e\":true},\"t\":{\"v\":\"31px\",\"e\":true},\"m\":{\"v\":\"57px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"538px\",\"e\":true},\"n\":{\"v\":\"323px\",\"e\":true},\"t\":{\"v\":\"236px\",\"e\":true},\"m\":{\"v\":\"258px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"122px\",\"e\":true},\"n\":{\"v\":\"85px\",\"e\":true},\"t\":{\"v\":\"77px\",\"e\":true},\"m\":{\"v\":\"72px\",\"e\":true}},\"zIndex\":13},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#24ffff\",\"e\":true},\"n\":{\"v\":\"#24ffff\"},\"t\":{\"v\":\"#24ffff\"},\"m\":{\"v\":\"#24ffff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"63px\",\"e\":true},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"67px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"63px\"},\"m\":{\"v\":\"38px\"}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"7\":{\"text\":\"\",\"alias\":\"Gb-image\",\"uid\":7,\"media\":{\"imageUrl\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/12\\/home11-crop.png\",\"imageId\":3679,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"551px\",\"e\":true},\"n\":{\"v\":\"455px\"},\"t\":{\"v\":\"339px\",\"e\":true},\"m\":{\"v\":\"209px\"}},\"height\":{\"d\":{\"v\":\"362px\",\"e\":true},\"n\":{\"v\":\"298px\"},\"t\":{\"v\":\"222px\",\"e\":true},\"m\":{\"v\":\"136px\"}},\"originalWidth\":989,\"originalHeight\":649,\"aspectRatio\":{\"d\":{\"v\":1.5238828967642526},\"n\":{\"v\":1.5238828967642526},\"t\":{\"v\":1.5238828967642526},\"m\":{\"v\":1.5238828967642526}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"v\":\"647px\",\"e\":true},\"n\":{\"v\":\"453px\",\"e\":true},\"t\":{\"v\":\"411px\",\"e\":true},\"m\":{\"v\":\"230px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"118px\",\"e\":true},\"n\":{\"v\":\"106px\",\"e\":true},\"t\":{\"v\":\"177px\",\"e\":true},\"m\":{\"v\":\"107px\",\"e\":true}},\"zIndex\":16},\"group\":{\"groupOrder\":16},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"m\":false},\"type\":\"image\"},\"8\":{\"text\":\"Book a consultation \",\"alias\":\"Book-button\",\"uid\":8,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"84px\",\"e\":true},\"n\":{\"v\":\"11px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"439px\",\"e\":true},\"n\":{\"v\":\"360px\",\"e\":true},\"t\":{\"v\":\"364px\",\"e\":true},\"m\":{\"v\":\"375px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":15},\"group\":{\"groupOrder\":15},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"v\":\"#182647\",\"e\":true},\"n\":{\"v\":\"#182647\"},\"t\":{\"v\":\"#182647\"},\"m\":{\"v\":\"#182647\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,40,0,40],\"e\":false},\"n\":{\"v\":[0,33,0,33],\"e\":false},\"t\":{\"v\":[0,63,0,63],\"e\":true},\"m\":{\"v\":[0,53,0,53],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"18\"},\"n\":{\"v\":\"14\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\"},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"41\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#182647\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"speed\":100,\"ease\":\"power1.inOut\",\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/calendly.com\\/tc-results\\/\",\"actioncallback\":\"Calendly.initPopupWidget({url: \'https:\\/\\/calendly.com\\/tc-results\'});return false;\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.5.10\"}'),(9,4,2,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"solid\",\"color\":\"#121d3d\",\"fit\":\"contain\",\"image\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-1\\/home31.jpg\",\"imageId\":3647,\"imageLib\":\"medialibrary\",\"imageWidth\":1440,\"imageHeight\":592,\"imageRatio\":2.4324324324324325},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"back-color\":\"rgba(201,201,201,0.75)\",\"back-color-def\":false,\"back-size\":\"40\",\"back-size-def\":false,\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"15\",\"arrow-size-def\":false,\"back-hover\":\"#000000\",\"back-hover-def\":false,\"border-rgba\":\"#ffffff\",\"border-rgba-def\":false,\"left-arrow\":\"\\\\e824\",\"left-arrow-def\":false,\"right-arrow\":\"\\\\e825\",\"right-arrow-def\":false}}}}','{\"0\":{\"text\":\"We Learn\",\"alias\":\"Title\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"701px\",\"e\":true},\"t\":{\"v\":\"236px\",\"e\":true},\"m\":{\"v\":\"359px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"81px\",\"e\":true},\"n\":{\"v\":\"6px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"122px\",\"e\":true},\"n\":{\"v\":\"86px\",\"e\":true},\"t\":{\"v\":\"77px\",\"e\":true},\"m\":{\"v\":\"86px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"63px\",\"e\":true},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"t\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"1\":{\"text\":\"Learning is is our DNA.\\nKnowledge sharing is our passion.\",\"alias\":\"Action-text\",\"uid\":1,\"customCSS\":\"color: #24c1ff; font-size: 23px; line-height: 28px; text-transform: inherit; margin-bottom: 20px;\",\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"m\":{\"v\":\"53px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"86px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"299px\",\"e\":true},\"n\":{\"v\":\"244px\",\"e\":true},\"t\":{\"v\":\"231px\",\"e\":true},\"m\":{\"v\":\"249px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":9},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#24c1ff\",\"e\":true},\"n\":{\"v\":\"#24c1ff\"},\"t\":{\"v\":\"#24c1ff\"},\"m\":{\"v\":\"#24c1ff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[2,0,3,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"23px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"23px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"21px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"textAlign\":{\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"Focused Action | Targeted results\",\"alias\":\"Subtitle\",\"uid\":2,\"customCSS\":\"text-transform: uppercase;\",\"customHoverCSS\":\"text-transform: uppercase;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"t\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"12px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"206px\",\"e\":true},\"n\":{\"v\":\"168px\",\"e\":true},\"t\":{\"v\":\"135px\",\"e\":true},\"m\":{\"v\":\"156px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#24c1ff\",\"e\":true},\"n\":{\"v\":\"#24c1ff\"},\"t\":{\"v\":\"#24c1ff\"},\"m\":{\"v\":\"#24c1ff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,10,0,10],\"e\":true},\"n\":{\"v\":[0,8,0,8],\"e\":false},\"t\":{\"v\":[0,13,0,13],\"e\":true},\"m\":{\"v\":[0,8,0,8],\"e\":false}},\"fontFamily\":\"Rajdhani\",\"fontSize\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"23px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"v\":\"2\"},\"n\":{\"v\":\"1\"},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"45\"},\"n\":{\"v\":\"37\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"borderColor\":\"#24c1ff\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"3\":{\"text\":\"We share what we know, \\nso you\'ll know what we learn.\",\"alias\":\"Sub-action-text-1\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"t\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"87px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"366px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"294px\",\"e\":true},\"m\":{\"v\":\"314px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"18px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"textAlign\":{\"n\":{\"e\":true},\"t\":{\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"6\":{\"text\":\".\",\"alias\":\"Title-dot\",\"uid\":6,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"701px\",\"e\":true},\"t\":{\"v\":\"31px\",\"e\":true},\"m\":{\"v\":\"57px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"520px\",\"e\":true},\"n\":{\"v\":\"311px\",\"e\":true},\"t\":{\"v\":\"230px\",\"e\":true},\"m\":{\"v\":\"253px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"122px\",\"e\":true},\"n\":{\"v\":\"85px\",\"e\":true},\"t\":{\"v\":\"77px\",\"e\":true},\"m\":{\"v\":\"73px\",\"e\":true}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#24ffff\",\"e\":true},\"n\":{\"v\":\"#24ffff\"},\"t\":{\"v\":\"#24ffff\"},\"m\":{\"v\":\"#24ffff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"63px\",\"e\":true},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"67px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"63px\"},\"m\":{\"v\":\"38px\"}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"8\":{\"text\":\"Book a consultation\",\"alias\":\"Book-button\",\"uid\":8,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"84px\",\"e\":true},\"n\":{\"v\":\"11px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"439px\",\"e\":true},\"n\":{\"v\":\"360px\",\"e\":true},\"t\":{\"v\":\"364px\",\"e\":true},\"m\":{\"v\":\"375px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":13},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"v\":\"#182647\",\"e\":true},\"n\":{\"v\":\"#182647\"},\"t\":{\"v\":\"#182647\"},\"m\":{\"v\":\"#182647\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,40,0,40],\"e\":false},\"n\":{\"v\":[0,33,0,33],\"e\":false},\"t\":{\"v\":[0,63,0,63],\"e\":true},\"m\":{\"v\":[0,53,0,53],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"18\"},\"n\":{\"v\":\"14\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\"},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"41\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#182647\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"speed\":100,\"ease\":\"power1.inOut\",\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/calendly.com\\/tc-results\\/\",\"actioncallback\":\"Calendly.initPopupWidget({url: \'https:\\/\\/calendly.com\\/tc-results\'});return false;\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"9\":{\"text\":\"\",\"alias\":\"Bg-image\",\"uid\":9,\"media\":{\"imageUrl\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/12\\/hom3-crop.png\",\"imageId\":3683,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"550.99px\",\"e\":true},\"n\":{\"v\":\"454px\"},\"t\":{\"v\":\"339.996px\",\"e\":true},\"m\":{\"v\":\"209px\"}},\"height\":{\"d\":{\"v\":\"367px\",\"e\":true},\"n\":{\"v\":\"303px\"},\"t\":{\"v\":\"241px\",\"e\":true},\"m\":{\"v\":\"148px\"}},\"originalWidth\":906,\"originalHeight\":641,\"aspectRatio\":{\"d\":{\"v\":1.4134165366614664},\"n\":{\"v\":1.4134165366614664},\"t\":{\"v\":1.4134165366614664},\"m\":{\"v\":1.4134165366614664}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"v\":\"647px\",\"e\":true},\"n\":{\"v\":\"534px\"},\"t\":{\"v\":\"411px\",\"e\":true},\"m\":{\"v\":\"253px\"}},\"y\":{\"d\":{\"v\":\"118px\",\"e\":true},\"n\":{\"v\":\"97px\"},\"t\":{\"v\":\"177px\",\"e\":true},\"m\":{\"v\":\"109px\"}},\"zIndex\":14},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"m\":false},\"type\":\"image\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.5.10\"}'),(10,4,3,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"solid\",\"color\":\"#121d3d\",\"fit\":\"contain\",\"image\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/06\\/home4.jpg\",\"imageId\":3125,\"imageLib\":\"medialibrary\",\"imageWidth\":1440,\"imageHeight\":592,\"imageRatio\":2.4324324324324325},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"back-color\":\"rgba(201,201,201,0.75)\",\"back-color-def\":false,\"back-size\":\"40\",\"back-size-def\":false,\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"15\",\"arrow-size-def\":false,\"back-hover\":\"#000000\",\"back-hover-def\":false,\"border-rgba\":\"#ffffff\",\"border-rgba-def\":false,\"left-arrow\":\"\\\\e824\",\"left-arrow-def\":false,\"right-arrow\":\"\\\\e825\",\"right-arrow-def\":false}}}}','{\"0\":{\"text\":\"We Inform\",\"alias\":\"Title\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"701px\",\"e\":true},\"t\":{\"v\":\"236px\",\"e\":true},\"m\":{\"v\":\"359px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"81px\",\"e\":true},\"n\":{\"v\":\"6px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"122px\",\"e\":true},\"n\":{\"v\":\"86px\",\"e\":true},\"t\":{\"v\":\"77px\",\"e\":true},\"m\":{\"v\":\"86px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":13},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"63px\",\"e\":true},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"t\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"1\":{\"text\":\"The cloud native partnership.\\nYour business depends on.\",\"alias\":\"Action-text\",\"uid\":1,\"customCSS\":\"color: #24c1ff; font-size: 23px; line-height: 28px; text-transform: inherit; margin-bottom: 20px;\",\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"m\":{\"v\":\"53px\",\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"86px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"299px\",\"e\":true},\"n\":{\"v\":\"244px\",\"e\":true},\"t\":{\"v\":\"231px\",\"e\":true},\"m\":{\"v\":\"252px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#24c1ff\",\"e\":true},\"n\":{\"v\":\"#24c1ff\"},\"t\":{\"v\":\"#24c1ff\"},\"m\":{\"v\":\"#24c1ff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[2,0,3,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"23px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"23px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"21px\",\"e\":true},\"m\":{\"v\":\"22px\",\"e\":true}},\"textAlign\":{\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"Data Driven | Digital Transformation\",\"alias\":\"Subtitle\",\"uid\":2,\"customCSS\":\"text-transform: uppercase;\",\"customHoverCSS\":\"text-transform: uppercase;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"t\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"12px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"206px\",\"e\":true},\"n\":{\"v\":\"168px\",\"e\":true},\"t\":{\"v\":\"135px\",\"e\":true},\"m\":{\"v\":\"156px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#24c1ff\",\"e\":true},\"n\":{\"v\":\"#24c1ff\"},\"t\":{\"v\":\"#24c1ff\"},\"m\":{\"v\":\"#24c1ff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,10,0,10],\"e\":true},\"n\":{\"v\":[0,8,0,8],\"e\":false},\"t\":{\"v\":[0,13,0,13],\"e\":true},\"m\":{\"v\":[0,8,0,8],\"e\":false}},\"fontFamily\":\"Rajdhani\",\"fontSize\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"v\":\"2\"},\"n\":{\"v\":\"1\"},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"45\"},\"n\":{\"v\":\"37\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"borderColor\":\"#24c1ff\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"3\":{\"text\":\"Every company is now a technology company.\",\"alias\":\"Sub-action-text-1\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"t\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"87px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"366px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"294px\",\"e\":true},\"m\":{\"v\":\"313px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":9},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"9px\"}},\"textAlign\":{\"n\":{\"e\":true},\"t\":{\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"4\":{\"text\":\"How can we help you?\",\"alias\":\"Sub-action-text-1\",\"uid\":4,\"customCSS\":\"text-decoration: underline !important;\",\"customHoverCSS\":\"text-decoration: underline !important;\",\"toggle\":{\"text\":\"\"},\"size\":{\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"87px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"388px\",\"e\":true},\"n\":{\"v\":\"318px\",\"e\":true},\"t\":{\"v\":\"316px\",\"e\":true},\"m\":{\"v\":\"333px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"9px\"}},\"textAlign\":{\"n\":{\"e\":true},\"t\":{\"e\":true}},\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,\"0px\"],\"e\":true},\"borderStyle\":{\"d\":{\"e\":true}},\"borderWidth\":[\"0px\",0,\"0px\",0],\"textDecoration\":\"underline\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"6\":{\"text\":\".\",\"alias\":\"Title-dot\",\"uid\":6,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"701px\",\"e\":true},\"t\":{\"v\":\"31px\",\"e\":true},\"m\":{\"v\":\"57px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"558px\",\"e\":true},\"n\":{\"v\":\"337px\",\"e\":true},\"t\":{\"v\":\"248px\",\"e\":true},\"m\":{\"v\":\"271px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"122px\",\"e\":true},\"n\":{\"v\":\"85px\",\"e\":true},\"t\":{\"v\":\"77px\",\"e\":true},\"m\":{\"v\":\"71px\",\"e\":true}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#24ffff\",\"e\":true},\"n\":{\"v\":\"#24ffff\"},\"t\":{\"v\":\"#24ffff\"},\"m\":{\"v\":\"#24ffff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"63px\",\"e\":true},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"67px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"63px\"},\"m\":{\"v\":\"38px\"}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"8\":{\"text\":\"Book a consultation\",\"alias\":\"Book-button\",\"uid\":8,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"84px\",\"e\":true},\"n\":{\"v\":\"11px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"439px\",\"e\":true},\"n\":{\"v\":\"360px\",\"e\":true},\"t\":{\"v\":\"364px\",\"e\":true},\"m\":{\"v\":\"375px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":14},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"v\":\"#182647\",\"e\":true},\"n\":{\"v\":\"#182647\"},\"t\":{\"v\":\"#182647\"},\"m\":{\"v\":\"#182647\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,40,0,40],\"e\":false},\"n\":{\"v\":[0,33,0,33],\"e\":false},\"t\":{\"v\":[0,63,0,63],\"e\":true},\"m\":{\"v\":[0,53,0,53],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"18\"},\"n\":{\"v\":\"14\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\"},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"41\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#182647\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"speed\":100,\"ease\":\"power1.inOut\",\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/calendly.com\\/tc-results\",\"actioncallback\":\"Calendly.initPopupWidget({url: \'https:\\/\\/calendly.com\\/tc-results\'});return false;\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"10\":{\"text\":\"\",\"alias\":\"Image-10\",\"uid\":10,\"media\":{\"imageUrl\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/12\\/home4-crop.png\",\"imageId\":3682,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"550.994px\",\"e\":true},\"n\":{\"v\":\"454px\"},\"t\":{\"v\":\"339.998px\",\"e\":true},\"m\":{\"v\":\"209px\"}},\"height\":{\"d\":{\"v\":\"367px\",\"e\":true},\"n\":{\"v\":\"303px\"},\"t\":{\"v\":\"241px\",\"e\":true},\"m\":{\"v\":\"148px\"}},\"originalWidth\":914,\"originalHeight\":649,\"aspectRatio\":{\"d\":{\"v\":1.4083204930662558},\"n\":{\"v\":1.4083204930662558},\"t\":{\"v\":1.4083204930662558},\"m\":{\"v\":1.4083204930662558}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"v\":\"647px\",\"e\":true},\"n\":{\"v\":\"534px\"},\"t\":{\"v\":\"411px\",\"e\":true},\"m\":{\"v\":\"253px\"}},\"y\":{\"d\":{\"v\":\"118px\",\"e\":true},\"n\":{\"v\":\"97px\"},\"t\":{\"v\":\"177px\",\"e\":true},\"m\":{\"v\":\"109px\"}},\"zIndex\":15},\"group\":{\"groupOrder\":15},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"m\":false},\"type\":\"image\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.5.10\"}'),(11,4,4,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"solid\",\"color\":\"#121d3d\",\"fit\":\"contain\",\"image\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/06\\/home2.jpg\",\"imageId\":3124,\"imageSourceType\":\"auto\",\"imageLib\":\"medialibrary\",\"imageWidth\":1440,\"imageHeight\":592,\"imageRatio\":2.4324324324324325},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"back-color\":\"rgba(201,201,201,0.75)\",\"back-color-def\":false,\"back-size\":\"40\",\"back-size-def\":false,\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"15\",\"arrow-size-def\":false,\"back-hover\":\"#000000\",\"back-hover-def\":false,\"border-rgba\":\"#ffffff\",\"border-rgba-def\":false,\"left-arrow\":\"\\\\e824\",\"left-arrow-def\":false,\"right-arrow\":\"\\\\e825\",\"right-arrow-def\":false}}}}','{\"0\":{\"text\":\"We Support\",\"alias\":\"Title\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"701px\",\"e\":true},\"t\":{\"v\":\"236px\",\"e\":true},\"m\":{\"v\":\"359px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"81px\",\"e\":true},\"n\":{\"v\":\"6px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"122px\",\"e\":true},\"n\":{\"v\":\"86px\",\"e\":true},\"t\":{\"v\":\"77px\",\"e\":true},\"m\":{\"v\":\"86px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":13},\"group\":{\"groupOrder\":13},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"63px\",\"e\":true},\"t\":{\"v\":\"39px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"t\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"1\":{\"text\":\"We support our people so they can support you, anytime and anywhere.\",\"alias\":\"Action-text\",\"uid\":1,\"customCSS\":\"color: #24c1ff; font-size: 23px; line-height: 28px; text-transform: inherit; margin-bottom: 20px;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"514.742px\",\"e\":true},\"n\":{\"v\":\"384.581px\",\"e\":true},\"t\":{\"v\":\"388.994px\",\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"55px\",\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"n\":{\"e\":true},\"t\":{\"e\":true}},\"maxHeight\":{\"n\":{\"e\":true},\"t\":{\"e\":true}},\"minWidth\":{\"n\":{\"e\":true},\"t\":{\"e\":true}},\"minHeight\":{\"n\":{\"e\":true},\"t\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"86px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"299px\",\"e\":true},\"n\":{\"v\":\"244px\",\"e\":true},\"t\":{\"v\":\"231px\",\"e\":true},\"m\":{\"v\":\"232px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"x\":{\"n\":{\"e\":true},\"t\":{\"e\":true}},\"y\":{\"n\":{\"e\":true},\"t\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"n\":{\"e\":true},\"t\":{\"e\":true}},\"y\":{\"n\":{\"e\":true},\"t\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"e\":true},\"t\":{\"e\":true}},\"y\":{\"n\":{\"e\":true},\"t\":{\"e\":true}}},\"words\":{\"x\":{\"n\":{\"e\":true},\"t\":{\"e\":true}},\"y\":{\"n\":{\"e\":true},\"t\":{\"e\":true}}},\"lines\":{\"x\":{\"n\":{\"e\":true},\"t\":{\"e\":true}},\"y\":{\"n\":{\"e\":true},\"t\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#24c1ff\",\"e\":true},\"n\":{\"v\":\"#24c1ff\"},\"t\":{\"v\":\"#24c1ff\"},\"m\":{\"v\":\"#24c1ff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[2,0,3,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"23px\",\"e\":true},\"n\":{\"v\":\"18px\"},\"t\":{\"v\":\"23px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"21\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\",\"e\":true},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"24 hour support | 7 days a week\",\"alias\":\"Subtitle\",\"uid\":2,\"customCSS\":\"text-transform: uppercase;\",\"customHoverCSS\":\"text-transform: uppercase;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"v\":\"300px\",\"e\":true}},\"height\":{\"t\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"85px\",\"e\":true},\"n\":{\"v\":\"12px\",\"e\":true},\"t\":{\"v\":\"14px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"206px\",\"e\":true},\"n\":{\"v\":\"168px\",\"e\":true},\"t\":{\"v\":\"135px\",\"e\":true},\"m\":{\"v\":\"156px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true}},\"y\":{\"t\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#24c1ff\",\"e\":true},\"n\":{\"v\":\"#24c1ff\"},\"t\":{\"v\":\"#24c1ff\"},\"m\":{\"v\":\"#24c1ff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"padding\":{\"d\":{\"v\":[0,10,0,10],\"e\":true},\"n\":{\"v\":[0,8,0,8],\"e\":false},\"t\":{\"v\":[0,13,0,13],\"e\":true},\"m\":{\"v\":[0,8,0,8],\"e\":false}},\"fontFamily\":\"Rajdhani\",\"fontSize\":{\"d\":{\"v\":\"20px\",\"e\":true},\"n\":{\"v\":\"16px\"},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"25px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"v\":\"2\"},\"n\":{\"v\":\"1\"},\"t\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"45\"},\"n\":{\"v\":\"37\"},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"28px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"borderColor\":\"#24c1ff\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderStyle\":{\"d\":{\"v\":\"solid\",\"e\":true},\"n\":{\"v\":\"solid\"},\"t\":{\"v\":\"solid\"},\"m\":{\"v\":\"solid\"}},\"borderWidth\":[\"1px\",\"1px\",\"1px\",\"1px\"],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"3\":{\"text\":\"\\\"I would use them again if I could. In fact,\\nI would use their team for everything if I could!\\\"\",\"alias\":\"Sub-action-text-1\",\"uid\":3,\"toggle\":{\"text\":\"\"},\"size\":{\"height\":{\"t\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"87px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"366px\",\"e\":true},\"n\":{\"v\":\"300px\",\"e\":true},\"t\":{\"v\":\"294px\",\"e\":true},\"m\":{\"v\":\"303px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":9},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"17px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"18px\",\"e\":true}},\"textAlign\":{\"n\":{\"e\":true},\"t\":{\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"4\":{\"text\":\"Thiago Telles - Cerberus CEO\",\"alias\":\"Sub-action-text-1\",\"uid\":4,\"customCSS\":\"text-decoration: underline !important;\",\"customHoverCSS\":\"text-decoration: underline !important;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"m\":{\"e\":true}},\"height\":{\"m\":{\"e\":true}},\"maxWidth\":{\"m\":{\"e\":true}},\"maxHeight\":{\"m\":{\"e\":true}},\"minWidth\":{\"m\":{\"e\":true}},\"minHeight\":{\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"87px\",\"e\":true},\"n\":{\"v\":\"13px\",\"e\":true},\"t\":{\"v\":\"16px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"416px\",\"e\":true},\"n\":{\"v\":\"343px\",\"e\":true},\"t\":{\"v\":\"332px\",\"e\":true},\"m\":{\"v\":\"353px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"m\":{\"e\":true}},\"y\":{\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"m\":{\"e\":true}},\"y\":{\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"m\":{\"e\":true}},\"y\":{\"m\":{\"e\":true}}},\"words\":{\"x\":{\"m\":{\"e\":true}},\"y\":{\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"m\":{\"e\":true}},\"y\":{\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"17px\",\"e\":true},\"n\":{\"v\":\"14px\"},\"t\":{\"v\":\"17px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"m\":{\"e\":true}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"textAlign\":{\"n\":{\"e\":true},\"t\":{\"e\":true}},\"borderColor\":\"#ffffff\",\"borderRadius\":{\"v\":[0,0,0,\"0px\"],\"e\":true},\"borderStyle\":{\"d\":{\"e\":true}},\"borderWidth\":[\"0px\",0,\"0px\",0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"5\":{\"text\":\"\",\"alias\":\"Bg-image\",\"uid\":5,\"media\":{\"imageUrl\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/12\\/home2-crop.png\",\"imageId\":3681,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"550px\",\"e\":true},\"n\":{\"v\":\"454px\"},\"t\":{\"v\":\"339.994px\",\"e\":true},\"m\":{\"v\":\"209px\"}},\"height\":{\"d\":{\"v\":\"399px\",\"e\":true},\"n\":{\"v\":\"329px\"},\"t\":{\"v\":\"247px\",\"e\":true},\"m\":{\"v\":\"152px\"}},\"originalWidth\":896,\"originalHeight\":650,\"aspectRatio\":{\"d\":{\"v\":1.3784615384615384},\"n\":{\"v\":1.3784615384615384},\"t\":{\"v\":1.3784615384615384},\"m\":{\"v\":1.3784615384615384}},\"scaleProportional\":true,\"originalSize\":false},\"position\":{\"x\":{\"d\":{\"v\":\"647px\",\"e\":true},\"n\":{\"v\":\"520px\",\"e\":true},\"t\":{\"v\":\"411px\",\"e\":true},\"m\":{\"v\":\"253px\"}},\"y\":{\"d\":{\"v\":\"118px\",\"e\":true},\"n\":{\"v\":\"149px\",\"e\":true},\"t\":{\"v\":\"177px\",\"e\":true},\"m\":{\"v\":\"109px\"}},\"zIndex\":15},\"group\":{\"groupOrder\":15},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"visibility\":{\"m\":false},\"type\":\"image\"},\"6\":{\"text\":\".\",\"alias\":\"Title-dot\",\"uid\":6,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"701px\",\"e\":true},\"t\":{\"v\":\"31px\",\"e\":true},\"m\":{\"v\":\"57px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"630px\",\"e\":true},\"n\":{\"v\":\"385px\",\"e\":true},\"t\":{\"v\":\"246px\",\"e\":true},\"m\":{\"v\":\"307px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"124px\",\"e\":true},\"n\":{\"v\":\"85px\",\"e\":true},\"t\":{\"v\":\"77px\",\"e\":true},\"m\":{\"v\":\"74px\",\"e\":true}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#24ffff\",\"e\":true},\"n\":{\"v\":\"#24ffff\"},\"t\":{\"v\":\"#24ffff\"},\"m\":{\"v\":\"#24ffff\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"63px\",\"e\":true},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"67px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"45px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"63px\"},\"m\":{\"v\":\"38px\"}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"8\":{\"text\":\"Book a consultation\",\"alias\":\"Book-button\",\"uid\":8,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"84px\",\"e\":true},\"n\":{\"v\":\"11px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"16px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"458px\",\"e\":true},\"n\":{\"v\":\"385px\",\"e\":true},\"t\":{\"v\":\"380px\",\"e\":true},\"m\":{\"v\":\"380px\",\"e\":true}},\"horizontal\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"zIndex\":14},\"group\":{\"groupOrder\":14},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"v\":\"#182647\",\"e\":true},\"n\":{\"v\":\"#182647\"},\"t\":{\"v\":\"#182647\"},\"m\":{\"v\":\"#182647\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,40,0,40],\"e\":false},\"n\":{\"v\":[0,33,0,33],\"e\":false},\"t\":{\"v\":[0,63,0,63],\"e\":true},\"m\":{\"v\":[0,53,0,53],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"18\"},\"n\":{\"v\":\"14\"},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"15px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\"},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"41\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#182647\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"speed\":100,\"ease\":\"power1.inOut\",\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/calendly.com\\/tc-results\\/\",\"actioncallback\":\"Calendly.initPopupWidget({url: \'https:\\/\\/calendly.com\\/tc-results\'});return false;\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.5.10\"}'),(23,6,1,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"solid\",\"color\":\"#121d3d\",\"image\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-1\\/home11.png\",\"imageId\":3645,\"imageSourceType\":\"auto\",\"imageLib\":\"medialibrary\",\"imageWidth\":1440,\"imageHeight\":592,\"imageRatio\":2.4324324324324325},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"20\",\"arrow-size-def\":false,\"right-arrow\":\"\\\\e825\",\"right-arrow-def\":false,\"back-color\":\"rgba(0, 0, 0, 0)\",\"back-color-def\":true,\"back-size\":\"70\",\"back-size-def\":false,\"back-hover\":\"#000000\",\"back-hover-def\":false,\"border-rgba\":\"#ffffff\",\"border-rgba-def\":false,\"left-arrow\":\"\\\\e824\",\"left-arrow-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false}}}}','{\"1\":{\"text\":\"We Are Your Partner in \\nCloud Native Technology\",\"alias\":\"Action-text\",\"uid\":1,\"customCSS\":\"color: #24c1ff; font-size: 23px; line-height: 28px; text-transform: inherit; margin-bottom: 20px;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"834\",\"e\":true},\"n\":{\"v\":\"787\",\"e\":true},\"t\":{\"v\":\"615px\",\"e\":true},\"m\":{\"v\":\"446px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"129\",\"e\":true},\"n\":{\"v\":\"121\",\"e\":true},\"t\":{\"v\":\"86\",\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"-5px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"149px\",\"e\":true},\"n\":{\"v\":\"138px\",\"e\":true},\"t\":{\"v\":\"141px\",\"e\":true},\"m\":{\"v\":\"93px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[4,0,6,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"47\",\"e\":true},\"n\":{\"v\":\"44\",\"e\":true},\"t\":{\"v\":\"39\",\"e\":true},\"m\":{\"v\":\"33\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"52\",\"e\":true},\"n\":{\"v\":\"49\",\"e\":true},\"t\":{\"v\":\"36\",\"e\":true},\"m\":{\"v\":\"31\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"4\":{\"text\":\"Book a consultation \",\"alias\":\"Copy book-button\",\"uid\":4,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-26px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"-1px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"481px\",\"e\":true},\"n\":{\"v\":\"476px\",\"e\":true},\"t\":{\"v\":\"505px\",\"e\":true},\"m\":{\"v\":\"355px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":15},\"group\":{\"groupOrder\":15},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"v\":\"#182647\",\"e\":true},\"n\":{\"v\":\"#182647\"},\"t\":{\"v\":\"#182647\"},\"m\":{\"v\":\"#182647\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,40,0,40],\"e\":false},\"n\":{\"v\":[0,33,0,33],\"e\":false},\"t\":{\"v\":[0,48,0,48],\"e\":true},\"m\":{\"v\":[0,43,0,43],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"18\"},\"n\":{\"v\":\"14\"},\"t\":{\"v\":\"11\",\"e\":true},\"m\":{\"v\":\"12\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\"},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"41\"},\"t\":{\"v\":\"38\",\"e\":true},\"m\":{\"v\":\"41\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"e\":true}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#182647\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"speed\":100,\"ease\":\"power1.inOut\",\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/calendly.com\\/tc-results\\/\",\"actioncallback\":\"Calendly.initPopupWidget({url: \'https:\\/\\/calendly.com\\/tc-results\'});return false;\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"11\":{\"text\":\"Our tailored software engineering teams develop and manage intelligent apps for fintech, healthcare, and any other data-driven journey. We match business goals to the right technology to drive better results.\",\"alias\":\"Copy sub-action-text-1\",\"uid\":11,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"885\",\"e\":true},\"n\":{\"v\":\"815px\",\"e\":true},\"t\":{\"v\":\"703px\",\"e\":true},\"m\":{\"v\":\"418px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"299px\",\"e\":true},\"n\":{\"v\":\"292px\",\"e\":true},\"t\":{\"v\":\"288px\",\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#77bdb6\",\"e\":true},\"n\":{\"v\":\"#77bdb6\"},\"t\":{\"v\":\"#77bdb6\"},\"m\":{\"v\":\"#77bdb6\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"26\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40\",\"e\":true},\"n\":{\"v\":\"37\",\"e\":true},\"t\":{\"v\":\"28\",\"e\":true},\"m\":{\"v\":\"20\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"14\":{\"text\":\"\",\"alias\":\"Image-14\",\"uid\":14,\"media\":{\"imageUrl\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2022\\/01\\/ScreenHunter-1244.png\",\"imageId\":3711,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"444px\",\"e\":true},\"n\":{\"v\":\"366px\"},\"t\":{\"v\":\"355px\",\"e\":true},\"m\":{\"v\":\"326px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"43px\",\"e\":true},\"n\":{\"v\":\"35px\"},\"t\":{\"v\":\"34px\",\"e\":true},\"m\":{\"v\":\"32px\",\"e\":true}},\"originalWidth\":652,\"originalHeight\":63,\"aspectRatio\":{\"d\":{\"v\":10.34920634920635},\"n\":{\"v\":10.34920634920635},\"t\":{\"v\":10.34920634920635},\"m\":{\"v\":10.34920634920635}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"v\":\"1px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"v\":\"45px\"},\"t\":{\"v\":\"34px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"zIndex\":16},\"group\":{\"groupOrder\":16},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.5.10\"}'),(24,6,4,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"solid\",\"color\":\"#121d3d\",\"image\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-1\\/home11.png\",\"imageId\":3645,\"imageSourceType\":\"auto\",\"imageLib\":\"medialibrary\",\"imageWidth\":1440,\"imageHeight\":592,\"imageRatio\":2.4324324324324325},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"20\",\"arrow-size-def\":false,\"right-arrow\":\"\\\\e825\",\"right-arrow-def\":false,\"back-color\":\"rgba(0, 0, 0, 0)\",\"back-color-def\":true,\"back-size\":\"70\",\"back-size-def\":false,\"back-hover\":\"#000000\",\"back-hover-def\":false,\"border-rgba\":\"#ffffff\",\"border-rgba-def\":false,\"left-arrow\":\"\\\\e824\",\"left-arrow-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false}}}}','{\"1\":{\"text\":\"We Build Customer-Centric\\nSoftware & Apps\",\"alias\":\"Action-text\",\"uid\":1,\"customCSS\":\"color: #24c1ff; font-size: 23px; line-height: 28px; text-transform: inherit; margin-bottom: 20px;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"834\",\"e\":true},\"n\":{\"v\":\"787\",\"e\":true},\"t\":{\"v\":\"615px\",\"e\":true},\"m\":{\"v\":\"444px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"129\",\"e\":true},\"n\":{\"v\":\"121\",\"e\":true},\"t\":{\"v\":\"86\",\"e\":true},\"m\":{\"v\":\"93\",\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-1px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"-5px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"149px\",\"e\":true},\"n\":{\"v\":\"141px\",\"e\":true},\"t\":{\"v\":\"141px\",\"e\":true},\"m\":{\"v\":\"93px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[4,0,6,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"47\",\"e\":true},\"n\":{\"v\":\"44\",\"e\":true},\"t\":{\"v\":\"39\",\"e\":true},\"m\":{\"v\":\"33\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"52\",\"e\":true},\"n\":{\"v\":\"49\",\"e\":true},\"t\":{\"v\":\"36\",\"e\":true},\"m\":{\"v\":\"31\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"8\":{\"text\":\"Book a consultation \",\"alias\":\"Book-button\",\"uid\":8,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-27px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"481px\",\"e\":true},\"n\":{\"v\":\"438px\",\"e\":true},\"t\":{\"v\":\"499px\",\"e\":true},\"m\":{\"v\":\"355px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":15},\"group\":{\"groupOrder\":15},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"v\":\"#182647\",\"e\":true},\"n\":{\"v\":\"#182647\"},\"t\":{\"v\":\"#182647\"},\"m\":{\"v\":\"#182647\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,40,0,40],\"e\":false},\"n\":{\"v\":[0,33,0,33],\"e\":false},\"t\":{\"v\":[0,48,0,48],\"e\":true},\"m\":{\"v\":[0,43,0,43],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"18\"},\"n\":{\"v\":\"14\"},\"t\":{\"v\":\"11\",\"e\":true},\"m\":{\"v\":\"12\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\"},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"41\"},\"t\":{\"v\":\"38\",\"e\":true},\"m\":{\"v\":\"41\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"e\":true}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#182647\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"speed\":100,\"ease\":\"power1.inOut\",\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/calendly.com\\/tc-results\\/\",\"actioncallback\":\"Calendly.initPopupWidget({url: \'https:\\/\\/calendly.com\\/tc-results\'});return false;\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"11\":{\"text\":\"Build new systems in the cloud, rebuild to modernize and innovate, or migrate legacy data and apps to a value-driven platform.\",\"alias\":\"Copy sub-action-text-1\",\"uid\":11,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1006px\",\"e\":true},\"n\":{\"v\":\"821px\",\"e\":true},\"t\":{\"v\":\"703px\",\"e\":true},\"m\":{\"v\":\"399px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"v\":\"94px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"304px\",\"e\":true},\"n\":{\"v\":\"292px\",\"e\":true},\"t\":{\"v\":\"288px\",\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#77bdb6\",\"e\":true},\"n\":{\"v\":\"#77bdb6\"},\"t\":{\"v\":\"#77bdb6\"},\"m\":{\"v\":\"#77bdb6\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"45\",\"e\":true},\"n\":{\"v\":\"43\",\"e\":true},\"t\":{\"v\":\"28\",\"e\":true},\"m\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"14\":{\"text\":\"\",\"alias\":\"Image-14\",\"uid\":14,\"media\":{\"imageUrl\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2022\\/01\\/ScreenHunter-1244.png\",\"imageId\":3711,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"444px\",\"e\":true},\"n\":{\"v\":\"366px\"},\"t\":{\"v\":\"355px\",\"e\":true},\"m\":{\"v\":\"326px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"43px\",\"e\":true},\"n\":{\"v\":\"35px\"},\"t\":{\"v\":\"34px\",\"e\":true},\"m\":{\"v\":\"32px\",\"e\":true}},\"originalWidth\":652,\"originalHeight\":63,\"aspectRatio\":{\"d\":{\"v\":10.34920634920635},\"n\":{\"v\":10.34920634920635},\"t\":{\"v\":10.34920634920635},\"m\":{\"v\":10.34920634920635}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"v\":\"1px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"v\":\"45px\"},\"t\":{\"v\":\"34px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"zIndex\":16},\"group\":{\"groupOrder\":16},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.5.10\"}'),(25,6,3,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"solid\",\"color\":\"#121d3d\",\"image\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-1\\/home11.png\",\"imageId\":3645,\"imageSourceType\":\"auto\",\"imageLib\":\"medialibrary\",\"imageWidth\":1440,\"imageHeight\":592,\"imageRatio\":2.4324324324324325},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"20\",\"arrow-size-def\":false,\"right-arrow\":\"\\\\e825\",\"right-arrow-def\":false,\"back-color\":\"rgba(0, 0, 0, 0)\",\"back-color-def\":true,\"back-size\":\"70\",\"back-size-def\":false,\"back-hover\":\"#000000\",\"back-hover-def\":false,\"border-rgba\":\"#ffffff\",\"border-rgba-def\":false,\"left-arrow\":\"\\\\e824\",\"left-arrow-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false}}}}','{\"1\":{\"text\":\"Experience TEK: Translucent Expert Knowledge\",\"alias\":\"Action-text\",\"uid\":1,\"customCSS\":\"color: #24c1ff; font-size: 23px; line-height: 28px; text-transform: inherit; margin-bottom: 20px;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"834\",\"e\":true},\"n\":{\"v\":\"787\",\"e\":true},\"t\":{\"v\":\"615px\",\"e\":true},\"m\":{\"v\":\"444px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"129\",\"e\":true},\"n\":{\"v\":\"121\",\"e\":true},\"t\":{\"v\":\"86\",\"e\":true},\"m\":{\"v\":\"93\",\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-1px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"-5px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"149px\",\"e\":true},\"n\":{\"v\":\"141px\",\"e\":true},\"t\":{\"v\":\"141px\",\"e\":true},\"m\":{\"v\":\"93px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[4,0,6,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"47\",\"e\":true},\"n\":{\"v\":\"44\",\"e\":true},\"t\":{\"v\":\"39\",\"e\":true},\"m\":{\"v\":\"33\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"52\",\"e\":true},\"n\":{\"v\":\"49\",\"e\":true},\"t\":{\"v\":\"36\",\"e\":true},\"m\":{\"v\":\"31\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"8\":{\"text\":\"Book a consultation \",\"alias\":\"Book-button\",\"uid\":8,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-27px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"-1px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"481px\",\"e\":true},\"n\":{\"v\":\"451px\",\"e\":true},\"t\":{\"v\":\"499px\",\"e\":true},\"m\":{\"v\":\"355px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":15},\"group\":{\"groupOrder\":15},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"v\":\"#182647\",\"e\":true},\"n\":{\"v\":\"#182647\"},\"t\":{\"v\":\"#182647\"},\"m\":{\"v\":\"#182647\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,40,0,40],\"e\":false},\"n\":{\"v\":[0,33,0,33],\"e\":false},\"t\":{\"v\":[0,48,0,48],\"e\":true},\"m\":{\"v\":[0,43,0,43],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"18\"},\"n\":{\"v\":\"14\"},\"t\":{\"v\":\"11\",\"e\":true},\"m\":{\"v\":\"12\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\"},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"41\"},\"t\":{\"v\":\"38\",\"e\":true},\"m\":{\"v\":\"41\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"e\":true}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#182647\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"speed\":100,\"ease\":\"power1.inOut\",\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/calendly.com\\/tc-results\\/\",\"actioncallback\":\"Calendly.initPopupWidget({url: \'https:\\/\\/calendly.com\\/tc-results\'});return false;\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"11\":{\"text\":\"Our on-demand resources [TEK Teams] use a collaborative business alignment process [TEK Process], combined with a production-ready data-driven cloud native platform [TEK Stack], to create proven solutions with award-winning results.\",\"alias\":\"Copy sub-action-text-1\",\"uid\":11,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1006px\",\"e\":true},\"n\":{\"v\":\"821px\",\"e\":true},\"t\":{\"v\":\"703px\",\"e\":true},\"m\":{\"v\":\"399px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"v\":\"94px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"303px\",\"e\":true},\"n\":{\"v\":\"292px\",\"e\":true},\"t\":{\"v\":\"288px\",\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#77bdb6\",\"e\":true},\"n\":{\"v\":\"#77bdb6\"},\"t\":{\"v\":\"#77bdb6\"},\"m\":{\"v\":\"#77bdb6\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"45\",\"e\":true},\"n\":{\"v\":\"43\",\"e\":true},\"t\":{\"v\":\"28\",\"e\":true},\"m\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"14\":{\"text\":\"\",\"alias\":\"Image-14\",\"uid\":14,\"media\":{\"imageUrl\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2022\\/01\\/ScreenHunter-1244.png\",\"imageId\":3711,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"444px\",\"e\":true},\"n\":{\"v\":\"366px\"},\"t\":{\"v\":\"355px\",\"e\":true},\"m\":{\"v\":\"326px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"43px\",\"e\":true},\"n\":{\"v\":\"35px\"},\"t\":{\"v\":\"34px\",\"e\":true},\"m\":{\"v\":\"32px\",\"e\":true}},\"originalWidth\":652,\"originalHeight\":63,\"aspectRatio\":{\"d\":{\"v\":10.34920634920635},\"n\":{\"v\":10.34920634920635},\"t\":{\"v\":10.34920634920635},\"m\":{\"v\":10.34920634920635}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"v\":\"1px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"v\":\"45px\"},\"t\":{\"v\":\"34px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"zIndex\":16},\"group\":{\"groupOrder\":16},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.5.10\"}'),(26,6,2,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"solid\",\"color\":\"#121d3d\",\"image\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-1\\/home11.png\",\"imageId\":3645,\"imageSourceType\":\"auto\",\"imageLib\":\"medialibrary\",\"imageWidth\":1440,\"imageHeight\":592,\"imageRatio\":2.4324324324324325},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"20\",\"arrow-size-def\":false,\"right-arrow\":\"\\\\e825\",\"right-arrow-def\":false,\"back-color\":\"rgba(0, 0, 0, 0)\",\"back-color-def\":true,\"back-size\":\"70\",\"back-size-def\":false,\"back-hover\":\"#000000\",\"back-hover-def\":false,\"border-rgba\":\"#ffffff\",\"border-rgba-def\":false,\"left-arrow\":\"\\\\e824\",\"left-arrow-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false}}}}','{\"1\":{\"text\":\"Develop Technology That Reflects Your Operations \",\"alias\":\"Action-text\",\"uid\":1,\"customCSS\":\"color: #24c1ff; font-size: 23px; line-height: 28px; text-transform: inherit; margin-bottom: 20px;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"834\",\"e\":true},\"n\":{\"v\":\"787\",\"e\":true},\"t\":{\"v\":\"615px\",\"e\":true},\"m\":{\"v\":\"444px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"129\",\"e\":true},\"n\":{\"v\":\"121\",\"e\":true},\"t\":{\"v\":\"86\",\"e\":true},\"m\":{\"v\":\"93\",\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-1px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"-5px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"149px\",\"e\":true},\"n\":{\"v\":\"141px\",\"e\":true},\"t\":{\"v\":\"141px\",\"e\":true},\"m\":{\"v\":\"93px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[4,0,6,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"47\",\"e\":true},\"n\":{\"v\":\"44\",\"e\":true},\"t\":{\"v\":\"39\",\"e\":true},\"m\":{\"v\":\"33\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\"},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"52\",\"e\":true},\"n\":{\"v\":\"49\",\"e\":true},\"t\":{\"v\":\"36\",\"e\":true},\"m\":{\"v\":\"31\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"normal\",\"e\":true},\"m\":{\"v\":\"normal\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"8\":{\"text\":\"Book a consultation \",\"alias\":\"Book-button\",\"uid\":8,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"-26px\",\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"481px\",\"e\":true},\"n\":{\"v\":\"502px\",\"e\":true},\"t\":{\"v\":\"499px\",\"e\":true},\"m\":{\"v\":\"355px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":15},\"group\":{\"groupOrder\":15},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"v\":\"#182647\",\"e\":true},\"n\":{\"v\":\"#182647\"},\"t\":{\"v\":\"#182647\"},\"m\":{\"v\":\"#182647\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,40,0,40],\"e\":false},\"n\":{\"v\":[0,33,0,33],\"e\":false},\"t\":{\"v\":[0,48,0,48],\"e\":true},\"m\":{\"v\":[0,43,0,43],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"18\"},\"n\":{\"v\":\"14\"},\"t\":{\"v\":\"11\",\"e\":true},\"m\":{\"v\":\"12\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\"},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"41\"},\"t\":{\"v\":\"38\",\"e\":true},\"m\":{\"v\":\"41\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"e\":true}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"textTransform\":\"uppercase\",\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#182647\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"speed\":100,\"ease\":\"power1.inOut\",\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_blank\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/calendly.com\\/tc-results\\/\",\"actioncallback\":\"Calendly.initPopupWidget({url: \'https:\\/\\/calendly.com\\/tc-results\'});return false;\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"11\":{\"text\":\"Your organization can do more in less time by solving digital transformation challenges and using data to create insights that drive ROI. Access to our top 1% tech talent enables your business to scale according to your demands.\",\"alias\":\"Copy sub-action-text-1\",\"uid\":11,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"1006px\",\"e\":true},\"n\":{\"v\":\"821px\",\"e\":true},\"t\":{\"v\":\"703px\",\"e\":true},\"m\":{\"v\":\"399px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"v\":\"94px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"304px\",\"e\":true},\"n\":{\"v\":\"292px\",\"e\":true},\"t\":{\"v\":\"288px\",\"e\":true},\"m\":{\"v\":\"200px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"0px\",\"e\":true},\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#77bdb6\",\"e\":true},\"n\":{\"v\":\"#77bdb6\"},\"t\":{\"v\":\"#77bdb6\"},\"m\":{\"v\":\"#77bdb6\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontSize\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"26px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"300\",\"e\":true},\"n\":{\"v\":\"300\"},\"t\":{\"v\":\"300\"},\"m\":{\"v\":\"300\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"45\",\"e\":true},\"n\":{\"v\":\"43\",\"e\":true},\"t\":{\"v\":\"28\",\"e\":true},\"m\":{\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"normal\",\"e\":true},\"n\":{\"v\":\"normal\"},\"t\":{\"v\":\"normal\"},\"m\":{\"v\":\"normal\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"14\":{\"text\":\"\",\"alias\":\"Image-14\",\"uid\":14,\"media\":{\"imageUrl\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2022\\/01\\/ScreenHunter-1244.png\",\"imageId\":3711,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"444px\",\"e\":true},\"n\":{\"v\":\"366px\"},\"t\":{\"v\":\"355px\",\"e\":true},\"m\":{\"v\":\"326px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"43px\",\"e\":true},\"n\":{\"v\":\"35px\"},\"t\":{\"v\":\"34px\",\"e\":true},\"m\":{\"v\":\"32px\",\"e\":true}},\"originalWidth\":652,\"originalHeight\":63,\"aspectRatio\":{\"d\":{\"v\":10.34920634920635},\"n\":{\"v\":10.34920634920635},\"t\":{\"v\":10.34920634920635},\"m\":{\"v\":10.34920634920635}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"e\":true},\"t\":{\"v\":\"1px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"55px\",\"e\":true},\"n\":{\"v\":\"45px\"},\"t\":{\"v\":\"34px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"v\":\"center\"},\"m\":{\"v\":\"center\"}},\"zIndex\":16},\"group\":{\"groupOrder\":16},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.5.10\"}'),(27,7,1,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"color\":\"#0d0470\",\"position\":\"center bottom\",\"image\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner1.png\",\"imageId\":4133,\"imageLib\":\"medialibrary\",\"imageWidth\":1920,\"imageHeight\":980,\"imageRatio\":1.9591836734693877},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0,\"col\":400},\"out\":{\"a\":false},\"title\":\"*east* Gradient\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"slotfade-horizontal\"},\"nav\":{\"arrows\":{\"presets\":{\"width\":\"90\",\"width-def\":false,\"height\":\"50\",\"height-def\":false,\"font-size\":\"40\",\"font-size-def\":false,\"background\":\"rgba(255,255,255,0)\",\"background-def\":false}},\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false}}}}','{\"0\":{\"text\":\"We Are Your Partner in \\nCloud Native Innovation\",\"alias\":\"Title\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"779px\",\"e\":true},\"t\":{\"v\":\"608px\",\"e\":true},\"m\":{\"v\":\"417px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"2px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-74px\",\"e\":true},\"n\":{\"v\":\"-77px\",\"e\":true},\"t\":{\"v\":\"-122px\",\"e\":true},\"m\":{\"v\":\"-98px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"start\":300,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"47px\",\"e\":true},\"n\":{\"v\":\"44px\",\"e\":true},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"33px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"49px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"1\":{\"text\":\"Our dedicated software engineering teams develop and manage intelligent apps \\nfor fintech, healthcare, and any other data-driven journey. We match business\\n goals to the right technology to drive better results.\",\"alias\":\"Subtitle\",\"uid\":1,\"customCSS\":\"color: #24c1ff; font-size: 23px; line-height: 28px; text-transform: inherit; margin-bottom: 20px;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"v\":\"681px\",\"e\":true},\"m\":{\"v\":\"454px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"5px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"320px\",\"e\":true},\"n\":{\"v\":\"336px\",\"e\":true},\"t\":{\"v\":\"307px\",\"e\":true},\"m\":{\"v\":\"247px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":9},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"start\":300,\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#28d9cb\",\"e\":true},\"n\":{\"v\":\"#28d9cb\"},\"t\":{\"v\":\"#28d9cb\"},\"m\":{\"v\":\"#28d9cb\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[2,0,3,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"37px\",\"e\":true},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"\",\"alias\":\"Image-2\",\"uid\":2,\"media\":{\"imageUrl\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/Group-102@3x.png\",\"imageId\":4134,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"35.608695652173914px\",\"e\":true},\"n\":{\"v\":\"28px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"21px\",\"e\":true},\"n\":{\"v\":\"17px\"},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"originalWidth\":78,\"originalHeight\":46,\"aspectRatio\":{\"d\":{\"v\":1.6956521739130435},\"n\":{\"v\":1.6956521739130435},\"t\":{\"v\":1.6956521739130435},\"m\":{\"v\":1.6956521739130435}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"420px\",\"e\":true},\"n\":{\"v\":\"372px\",\"e\":true},\"t\":{\"v\":\"-122px\",\"e\":true},\"m\":{\"v\":\"-115px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"78px\",\"e\":true},\"t\":{\"v\":\"41px\",\"e\":true},\"m\":{\"v\":\"39px\",\"e\":true}},\"horizontal\":{\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"5\":{\"text\":\"TRANSLUCENT COMPUTING\",\"alias\":\"Text-signature\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"282px\",\"e\":true},\"m\":{\"v\":\"275px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"46px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"46px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"start\":300,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#28d9cb\",\"e\":true},\"n\":{\"v\":\"#28d9cb\"},\"t\":{\"v\":\"#28d9cb\",\"e\":true},\"m\":{\"v\":\"#28d9cb\",\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"7px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"5px\",\"e\":true},\"m\":{\"v\":\"5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"8\":{\"text\":\"Learn More\",\"alias\":\"Button\",\"uid\":8,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"2px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"479px\",\"e\":true},\"n\":{\"v\":\"490px\",\"e\":true},\"t\":{\"v\":\"489px\",\"e\":true},\"m\":{\"v\":\"400px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"start\":300,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"v\":\"#182647\",\"e\":true},\"n\":{\"v\":\"#182647\"},\"t\":{\"v\":\"#182647\"},\"m\":{\"v\":\"#182647\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[7,50,7,50],\"e\":true},\"n\":{\"v\":[6,41,6,41],\"e\":false},\"t\":{\"v\":[0,63,0,63],\"e\":true},\"m\":{\"v\":[0,53,0,53],\"e\":true}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"18\"},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\"},\"t\":{\"v\":\"900\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"41\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#182647\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"speed\":100,\"ease\":\"power1.inOut\",\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/translucent.mesoishop.com\\/tekteams\\/\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.5.10\"}'),(28,7,4,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"color\":\"#0d0470\",\"position\":\"center bottom\",\"image\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner2.png\",\"imageId\":4135,\"imageLib\":\"medialibrary\",\"imageWidth\":1920,\"imageHeight\":980,\"imageRatio\":1.9591836734693877},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0,\"col\":400},\"out\":{\"a\":false},\"title\":\"*east* Gradient\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"slotfade-horizontal\"},\"nav\":{\"arrows\":{\"presets\":{\"height\":\"50\",\"height-def\":false,\"font-size\":\"40\",\"font-size-def\":false,\"background\":\"rgba(255,255,255,0)\",\"background-def\":false,\"width\":\"50\",\"width-def\":false}},\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false}}}}','{\"0\":{\"text\":\"Develop Technology That \\nReflects Your Operations \\n\",\"alias\":\"Title\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"779px\",\"e\":true},\"t\":{\"v\":\"608px\",\"e\":true},\"m\":{\"v\":\"417px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"2px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-74px\",\"e\":true},\"n\":{\"v\":\"-77px\",\"e\":true},\"t\":{\"v\":\"-122px\",\"e\":true},\"m\":{\"v\":\"-98px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"start\":300,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"47px\",\"e\":true},\"n\":{\"v\":\"44px\",\"e\":true},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"33px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"49px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"42px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"1\":{\"text\":\"Our on-demand TEK teams use a collaborative business alignment process, and \\nproduction-ready tools, combined with a data-driven cloud native platform to create \\nproven solutions with award-winning results.\\n\",\"alias\":\"Subtitle\",\"uid\":1,\"customCSS\":\"color: #24c1ff; font-size: 23px; line-height: 28px; text-transform: inherit; margin-bottom: 20px;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"v\":\"714px\",\"e\":true},\"m\":{\"v\":\"454px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"v\":\"89px\",\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"5px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"320px\",\"e\":true},\"n\":{\"v\":\"336px\",\"e\":true},\"t\":{\"v\":\"307px\",\"e\":true},\"m\":{\"v\":\"247px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":9},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"start\":300,\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#28d9cb\",\"e\":true},\"n\":{\"v\":\"#28d9cb\"},\"t\":{\"v\":\"#28d9cb\"},\"m\":{\"v\":\"#28d9cb\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[2,0,3,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"25px\",\"e\":true},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"37px\",\"e\":true},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"\",\"alias\":\"Image-2\",\"uid\":2,\"media\":{\"imageUrl\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/Group-102@3x.png\",\"imageId\":4134,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"35.608695652173914px\",\"e\":true},\"n\":{\"v\":\"28px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"21px\",\"e\":true},\"n\":{\"v\":\"17px\"},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"originalWidth\":78,\"originalHeight\":46,\"aspectRatio\":{\"d\":{\"v\":1.6956521739130435},\"n\":{\"v\":1.6956521739130435},\"t\":{\"v\":1.6956521739130435},\"m\":{\"v\":1.6956521739130435}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"420px\",\"e\":true},\"n\":{\"v\":\"372px\",\"e\":true},\"t\":{\"v\":\"-122px\",\"e\":true},\"m\":{\"v\":\"-115px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"78px\",\"e\":true},\"t\":{\"v\":\"41px\",\"e\":true},\"m\":{\"v\":\"39px\",\"e\":true}},\"horizontal\":{\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"5\":{\"text\":\"TRANSLUCENT COMPUTING\",\"alias\":\"Text-signature\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"282px\",\"e\":true},\"m\":{\"v\":\"275px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"46px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"46px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"start\":150,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":150},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#28d9cb\",\"e\":true},\"n\":{\"v\":\"#28d9cb\"},\"t\":{\"v\":\"#28d9cb\",\"e\":true},\"m\":{\"v\":\"#28d9cb\",\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"7px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"5px\",\"e\":true},\"m\":{\"v\":\"5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"8\":{\"text\":\"Start Scaling\",\"alias\":\"Button\",\"uid\":8,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"2px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"480px\",\"e\":true},\"n\":{\"v\":\"490px\",\"e\":true},\"t\":{\"v\":\"489px\",\"e\":true},\"m\":{\"v\":\"400px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"start\":300,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"v\":\"#182647\",\"e\":true},\"n\":{\"v\":\"#182647\"},\"t\":{\"v\":\"#182647\"},\"m\":{\"v\":\"#182647\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[7,50,7,50],\"e\":true},\"n\":{\"v\":[6,41,6,41],\"e\":false},\"t\":{\"v\":[0,63,0,63],\"e\":true},\"m\":{\"v\":[0,53,0,53],\"e\":true}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"18\"},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\"},\"t\":{\"v\":\"900\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"41\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#182647\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"speed\":100,\"ease\":\"power1.inOut\",\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/calendly.com\\/tc-results\",\"actioncallback\":\"Calendly.initPopupWidget({url: \'https:\\/\\/calendly.com\\/tc-results\'});return false;\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.5.10\"}'),(29,7,3,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"color\":\"#0d0470\",\"position\":\"center bottom\",\"image\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/home31.png\",\"imageId\":4136,\"imageLib\":\"medialibrary\",\"imageWidth\":1920,\"imageHeight\":980,\"imageRatio\":1.9591836734693877},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0,\"col\":400},\"out\":{\"a\":false},\"title\":\"*east* Gradient\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"slotfade-horizontal\"},\"nav\":{\"arrows\":{\"presets\":{\"height\":\"50\",\"height-def\":false,\"font-size\":\"40\",\"font-size-def\":false,\"background\":\"rgba(255,255,255,0)\",\"background-def\":false,\"width\":\"50\",\"width-def\":false}},\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false}}}}','{\"0\":{\"text\":\"TEK: Translucent Expert \\nKnowledge\\n\",\"alias\":\"Title\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"846px\",\"e\":true},\"t\":{\"v\":\"608px\",\"e\":true},\"m\":{\"v\":\"417px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"2px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-74px\",\"e\":true},\"n\":{\"v\":\"-77px\",\"e\":true},\"t\":{\"v\":\"-122px\",\"e\":true},\"m\":{\"v\":\"-98px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"start\":300,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"47px\",\"e\":true},\"n\":{\"v\":\"44px\",\"e\":true},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"33px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"49px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"1\":{\"text\":\"Our on-demand TEK teams use a collaborative business alignment process, and\\n production-ready tools, combined with a data-driven cloud native platform to create\\n proven solutions with award-winning results.\\n\",\"alias\":\"Subtitle\",\"uid\":1,\"customCSS\":\"color: #24c1ff; font-size: 23px; line-height: 28px; text-transform: inherit; margin-bottom: 20px;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"1025px\",\"e\":true},\"t\":{\"v\":\"722px\",\"e\":true},\"m\":{\"v\":\"454px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"89px\",\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"5px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"320px\",\"e\":true},\"n\":{\"v\":\"336px\",\"e\":true},\"t\":{\"v\":\"307px\",\"e\":true},\"m\":{\"v\":\"247px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":9},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"start\":300,\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#28d9cb\",\"e\":true},\"n\":{\"v\":\"#28d9cb\"},\"t\":{\"v\":\"#28d9cb\"},\"m\":{\"v\":\"#28d9cb\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[2,0,3,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"37px\",\"e\":true},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"\",\"alias\":\"Image-2\",\"uid\":2,\"media\":{\"imageUrl\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/Group-102@3x.png\",\"imageId\":4134,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"35.608695652173914px\",\"e\":true},\"n\":{\"v\":\"28px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"21px\",\"e\":true},\"n\":{\"v\":\"17px\"},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"originalWidth\":78,\"originalHeight\":46,\"aspectRatio\":{\"d\":{\"v\":1.6956521739130435},\"n\":{\"v\":1.6956521739130435},\"t\":{\"v\":1.6956521739130435},\"m\":{\"v\":1.6956521739130435}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"420px\",\"e\":true},\"n\":{\"v\":\"372px\",\"e\":true},\"t\":{\"v\":\"-122px\",\"e\":true},\"m\":{\"v\":\"-115px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"78px\",\"e\":true},\"t\":{\"v\":\"41px\",\"e\":true},\"m\":{\"v\":\"39px\",\"e\":true}},\"horizontal\":{\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"5\":{\"text\":\"TRANSLUCENT COMPUTING\",\"alias\":\"Text-signature\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"282px\",\"e\":true},\"m\":{\"v\":\"275px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"46px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"46px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"start\":300,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#28d9cb\",\"e\":true},\"n\":{\"v\":\"#28d9cb\"},\"t\":{\"v\":\"#28d9cb\",\"e\":true},\"m\":{\"v\":\"#28d9cb\",\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"7px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"5px\",\"e\":true},\"m\":{\"v\":\"5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"8\":{\"text\":\"Experience TEK\",\"alias\":\"Button\",\"uid\":8,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"2px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"480px\",\"e\":true},\"n\":{\"v\":\"490px\",\"e\":true},\"t\":{\"v\":\"489px\",\"e\":true},\"m\":{\"v\":\"400px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"start\":300,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"v\":\"#182647\",\"e\":true},\"n\":{\"v\":\"#182647\"},\"t\":{\"v\":\"#182647\"},\"m\":{\"v\":\"#182647\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[7,50,7,50],\"e\":true},\"n\":{\"v\":[6,41,6,41],\"e\":false},\"t\":{\"v\":[0,63,0,63],\"e\":true},\"m\":{\"v\":[0,53,0,53],\"e\":true}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"18\"},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\"},\"t\":{\"v\":\"900\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"41\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#182647\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"speed\":100,\"ease\":\"power1.inOut\",\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/translucent.mesoishop.com\\/tek-world\\/\",\"actioncallback\":\"Calendly.initPopupWidget({url: \'https:\\/\\/calendly.com\\/tc-results\'});return false;\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.5.10\"}'),(30,7,2,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"color\":\"#0d0470\",\"position\":\"center bottom\",\"image\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/home4.png\",\"imageId\":4137,\"imageLib\":\"medialibrary\",\"imageWidth\":1920,\"imageHeight\":980,\"imageRatio\":1.9591836734693877},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0,\"col\":400},\"out\":{\"a\":false},\"title\":\"*east* Gradient\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"slotfade-horizontal\"},\"nav\":{\"arrows\":{\"presets\":{\"height\":\"50\",\"height-def\":false,\"font-size\":\"40\",\"font-size-def\":false,\"background\":\"rgba(255,255,255,0)\",\"background-def\":false,\"width\":\"50\",\"width-def\":false}},\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false}}}}','{\"0\":{\"text\":\"We Build Customer-Centric\\nSoftware & Apps\\n\",\"alias\":\"Title\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"779px\",\"e\":true},\"t\":{\"v\":\"630px\",\"e\":true},\"m\":{\"v\":\"443px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"2px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-74px\",\"e\":true},\"n\":{\"v\":\"-77px\",\"e\":true},\"t\":{\"v\":\"-122px\",\"e\":true},\"m\":{\"v\":\"-98px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"start\":300,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"47px\",\"e\":true},\"n\":{\"v\":\"44px\",\"e\":true},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"33px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"49px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"1\":{\"text\":\"Build new systems in the cloud, rebuild to modernize and innovate, or migrate legacy \\ndata and apps to a value-driven platform.\\n\",\"alias\":\"Subtitle\",\"uid\":1,\"customCSS\":\"color: #24c1ff; font-size: 23px; line-height: 28px; text-transform: inherit; margin-bottom: 20px;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"687px\",\"e\":true},\"t\":{\"v\":\"728px\",\"e\":true},\"m\":{\"v\":\"454px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"61px\",\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"5px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"320px\",\"e\":true},\"n\":{\"v\":\"336px\",\"e\":true},\"t\":{\"v\":\"307px\",\"e\":true},\"m\":{\"v\":\"247px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":9},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"start\":300,\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#28d9cb\",\"e\":true},\"n\":{\"v\":\"#28d9cb\"},\"t\":{\"v\":\"#28d9cb\"},\"m\":{\"v\":\"#28d9cb\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[2,0,3,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"37px\",\"e\":true},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"\",\"alias\":\"Image-2\",\"uid\":2,\"media\":{\"imageUrl\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/Group-102@3x.png\",\"imageId\":4134,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"35.608695652173914px\",\"e\":true},\"n\":{\"v\":\"28px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"21px\",\"e\":true},\"n\":{\"v\":\"17px\"},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"originalWidth\":78,\"originalHeight\":46,\"aspectRatio\":{\"d\":{\"v\":1.6956521739130435},\"n\":{\"v\":1.6956521739130435},\"t\":{\"v\":1.6956521739130435},\"m\":{\"v\":1.6956521739130435}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"420px\",\"e\":true},\"n\":{\"v\":\"372px\",\"e\":true},\"t\":{\"v\":\"-122px\",\"e\":true},\"m\":{\"v\":\"-115px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"78px\",\"e\":true},\"t\":{\"v\":\"41px\",\"e\":true},\"m\":{\"v\":\"39px\",\"e\":true}},\"horizontal\":{\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"5\":{\"text\":\"TRANSLUCENT COMPUTING\",\"alias\":\"Text-signature\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"282px\",\"e\":true},\"m\":{\"v\":\"275px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"46px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"46px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"start\":300,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#28d9cb\",\"e\":true},\"n\":{\"v\":\"#28d9cb\"},\"t\":{\"v\":\"#28d9cb\",\"e\":true},\"m\":{\"v\":\"#28d9cb\",\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"7px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"5px\",\"e\":true},\"m\":{\"v\":\"5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"8\":{\"text\":\"Start Innovating\",\"alias\":\"Button\",\"uid\":8,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"2px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"480px\",\"e\":true},\"n\":{\"v\":\"490px\",\"e\":true},\"t\":{\"v\":\"489px\",\"e\":true},\"m\":{\"v\":\"400px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"start\":300,\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":300},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"v\":\"#182647\",\"e\":true},\"n\":{\"v\":\"#182647\"},\"t\":{\"v\":\"#182647\"},\"m\":{\"v\":\"#182647\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[7,50,7,50],\"e\":true},\"n\":{\"v\":[6,41,6,41],\"e\":false},\"t\":{\"v\":[0,63,0,63],\"e\":true},\"m\":{\"v\":[0,53,0,53],\"e\":true}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"18\"},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\"},\"t\":{\"v\":\"900\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"41\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#182647\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"speed\":100,\"ease\":\"power1.inOut\",\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/translucent.mesoishop.com\\/cloud-native-solutions\\/\",\"actioncallback\":\"Calendly.initPopupWidget({url: \'https:\\/\\/calendly.com\\/tc-results\'});return false;\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.5.10\"}'),(31,8,1,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"color\":\"#0d0470\",\"position\":\"center bottom\",\"image\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner1.png\",\"imageId\":4133,\"imageLib\":\"medialibrary\",\"imageWidth\":1920,\"imageHeight\":980,\"imageRatio\":1.9591836734693877},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"left-icon\":\"\\\\e81f\",\"left-icon-def\":false,\"right-icon\":\"\\\\e81e\",\"right-icon-def\":false,\"bg-color\":\"rgba(0,0,0,0.5)\",\"bg-color-def\":false,\"bg-size\":\"40\",\"bg-size-def\":false,\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"20\",\"arrow-size-def\":false,\"hover-bg-color\":\"#000000\",\"hover-bg-color-def\":false}},\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false}}}}','{\"0\":{\"text\":\"We Are Your Partner in \\nCloud Native Innovation\",\"alias\":\"Title\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"779px\",\"e\":true},\"t\":{\"v\":\"608px\",\"e\":true},\"m\":{\"v\":\"417px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"2px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-74px\",\"e\":true},\"n\":{\"v\":\"-77px\",\"e\":true},\"t\":{\"v\":\"-122px\",\"e\":true},\"m\":{\"v\":\"-98px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"47px\",\"e\":true},\"n\":{\"v\":\"44px\",\"e\":true},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"33px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"49px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"1\":{\"text\":\"Our dedicated software engineering teams develop and manage intelligent apps \\nfor fintech, healthcare, and any other data-driven journey. We match business\\n goals to the right technology to drive better results.\",\"alias\":\"Subtitle\",\"uid\":1,\"customCSS\":\"color: #24c1ff; font-size: 23px; line-height: 28px; text-transform: inherit; margin-bottom: 20px;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"v\":\"681px\",\"e\":true},\"m\":{\"v\":\"454px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"5px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"320px\",\"e\":true},\"n\":{\"v\":\"336px\",\"e\":true},\"t\":{\"v\":\"307px\",\"e\":true},\"m\":{\"v\":\"247px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":9},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#28d9cb\",\"e\":true},\"n\":{\"v\":\"#28d9cb\"},\"t\":{\"v\":\"#28d9cb\"},\"m\":{\"v\":\"#28d9cb\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[2,0,3,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"37px\",\"e\":true},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"\",\"alias\":\"Image-2\",\"uid\":2,\"media\":{\"imageUrl\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/Group-102@3x.png\",\"imageId\":4134,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"35.608695652173914px\",\"e\":true},\"n\":{\"v\":\"28px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"21px\",\"e\":true},\"n\":{\"v\":\"17px\"},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"originalWidth\":78,\"originalHeight\":46,\"aspectRatio\":{\"d\":{\"v\":1.6956521739130435},\"n\":{\"v\":1.6956521739130435},\"t\":{\"v\":1.6956521739130435},\"m\":{\"v\":1.6956521739130435}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"420px\",\"e\":true},\"n\":{\"v\":\"372px\",\"e\":true},\"t\":{\"v\":\"-122px\",\"e\":true},\"m\":{\"v\":\"-115px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"78px\",\"e\":true},\"t\":{\"v\":\"41px\",\"e\":true},\"m\":{\"v\":\"39px\",\"e\":true}},\"horizontal\":{\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"5\":{\"text\":\"TRANSLUCENT COMPUTING\",\"alias\":\"Text-signature\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"282px\",\"e\":true},\"m\":{\"v\":\"275px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"46px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"46px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#28d9cb\",\"e\":true},\"n\":{\"v\":\"#28d9cb\"},\"t\":{\"v\":\"#28d9cb\",\"e\":true},\"m\":{\"v\":\"#28d9cb\",\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"7px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"5px\",\"e\":true},\"m\":{\"v\":\"5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"8\":{\"text\":\"Learn More\",\"alias\":\"Button\",\"uid\":8,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"2px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"479px\",\"e\":true},\"n\":{\"v\":\"506px\",\"e\":true},\"t\":{\"v\":\"489px\",\"e\":true},\"m\":{\"v\":\"419px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"v\":\"#182647\",\"e\":true},\"n\":{\"v\":\"#182647\"},\"t\":{\"v\":\"#182647\"},\"m\":{\"v\":\"#182647\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[7,50,7,50],\"e\":true},\"n\":{\"v\":[6,41,6,41],\"e\":false},\"t\":{\"v\":[0,63,0,63],\"e\":true},\"m\":{\"v\":[0,53,0,53],\"e\":true}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"18\"},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\"},\"t\":{\"v\":\"900\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"41\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#182647\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"speed\":100,\"ease\":\"power1.inOut\",\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/translucent.mesoishop.com\\/tekteams\\/\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.5.10\"}'),(32,8,4,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"color\":\"#0d0470\",\"position\":\"center bottom\",\"image\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner2.png\",\"imageId\":4135,\"imageLib\":\"medialibrary\",\"imageWidth\":1920,\"imageHeight\":980,\"imageRatio\":1.9591836734693877},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"left-icon\":\"\\\\e81f\",\"left-icon-def\":false,\"right-icon\":\"\\\\e81e\",\"right-icon-def\":false,\"bg-color\":\"rgba(0,0,0,0.5)\",\"bg-color-def\":false,\"bg-size\":\"40\",\"bg-size-def\":false,\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"20\",\"arrow-size-def\":false,\"hover-bg-color\":\"#000000\",\"hover-bg-color-def\":false}},\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false}}}}','{\"0\":{\"text\":\"Develop Technology That \\nReflects Your Operations \\n\",\"alias\":\"Title\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"779px\",\"e\":true},\"t\":{\"v\":\"608px\",\"e\":true},\"m\":{\"v\":\"417px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"2px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-74px\",\"e\":true},\"n\":{\"v\":\"-77px\",\"e\":true},\"t\":{\"v\":\"-122px\",\"e\":true},\"m\":{\"v\":\"-98px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"47px\",\"e\":true},\"n\":{\"v\":\"44px\",\"e\":true},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"33px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"49px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"42px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"1\":{\"text\":\"Our on-demand TEK teams use a collaborative business alignment process, and \\nproduction-ready tools, combined with a data-driven cloud native platform to create \\nproven solutions with award-winning results.\\n\",\"alias\":\"Subtitle\",\"uid\":1,\"customCSS\":\"color: #24c1ff; font-size: 23px; line-height: 28px; text-transform: inherit; margin-bottom: 20px;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"t\":{\"v\":\"714px\",\"e\":true},\"m\":{\"v\":\"454px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"t\":{\"v\":\"89px\",\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"5px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"320px\",\"e\":true},\"n\":{\"v\":\"336px\",\"e\":true},\"t\":{\"v\":\"307px\",\"e\":true},\"m\":{\"v\":\"247px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":9},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#28d9cb\",\"e\":true},\"n\":{\"v\":\"#28d9cb\"},\"t\":{\"v\":\"#28d9cb\"},\"m\":{\"v\":\"#28d9cb\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[2,0,3,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"25px\",\"e\":true},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"37px\",\"e\":true},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"\",\"alias\":\"Image-2\",\"uid\":2,\"media\":{\"imageUrl\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/Group-102@3x.png\",\"imageId\":4134,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"35.608695652173914px\",\"e\":true},\"n\":{\"v\":\"28px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"21px\",\"e\":true},\"n\":{\"v\":\"17px\"},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"originalWidth\":78,\"originalHeight\":46,\"aspectRatio\":{\"d\":{\"v\":1.6956521739130435},\"n\":{\"v\":1.6956521739130435},\"t\":{\"v\":1.6956521739130435},\"m\":{\"v\":1.6956521739130435}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"420px\",\"e\":true},\"n\":{\"v\":\"372px\",\"e\":true},\"t\":{\"v\":\"-122px\",\"e\":true},\"m\":{\"v\":\"-115px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"78px\",\"e\":true},\"t\":{\"v\":\"41px\",\"e\":true},\"m\":{\"v\":\"39px\",\"e\":true}},\"horizontal\":{\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"5\":{\"text\":\"TRANSLUCENT COMPUTING\",\"alias\":\"Text-signature\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"282px\",\"e\":true},\"m\":{\"v\":\"275px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"46px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"46px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#28d9cb\",\"e\":true},\"n\":{\"v\":\"#28d9cb\"},\"t\":{\"v\":\"#28d9cb\",\"e\":true},\"m\":{\"v\":\"#28d9cb\",\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"7px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"5px\",\"e\":true},\"m\":{\"v\":\"5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"8\":{\"text\":\"Start Scaling\",\"alias\":\"Button\",\"uid\":8,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"2px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"480px\",\"e\":true},\"n\":{\"v\":\"506px\",\"e\":true},\"t\":{\"v\":\"489px\",\"e\":true},\"m\":{\"v\":\"419px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"v\":\"#182647\",\"e\":true},\"n\":{\"v\":\"#182647\"},\"t\":{\"v\":\"#182647\"},\"m\":{\"v\":\"#182647\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[7,50,7,50],\"e\":true},\"n\":{\"v\":[6,41,6,41],\"e\":false},\"t\":{\"v\":[0,63,0,63],\"e\":true},\"m\":{\"v\":[0,53,0,53],\"e\":true}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"18\"},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\"},\"t\":{\"v\":\"900\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"41\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#182647\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"speed\":100,\"ease\":\"power1.inOut\",\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/calendly.com\\/tc-results\",\"actioncallback\":\"Calendly.initPopupWidget({url: \'https:\\/\\/calendly.com\\/tc-results\'});return false;\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.5.10\"}'),(33,8,3,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"color\":\"#0d0470\",\"position\":\"center bottom\",\"image\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/home31.png\",\"imageId\":4136,\"imageLib\":\"medialibrary\",\"imageWidth\":1920,\"imageHeight\":980,\"imageRatio\":1.9591836734693877},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"left-icon\":\"\\\\e81f\",\"left-icon-def\":false,\"right-icon\":\"\\\\e81e\",\"right-icon-def\":false,\"bg-color\":\"rgba(0,0,0,0.5)\",\"bg-color-def\":false,\"bg-size\":\"40\",\"bg-size-def\":false,\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"20\",\"arrow-size-def\":false,\"hover-bg-color\":\"#000000\",\"hover-bg-color-def\":false}},\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false}}}}','{\"0\":{\"text\":\"TEK: Translucent Expert \\nKnowledge\\n\",\"alias\":\"Title\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"846px\",\"e\":true},\"t\":{\"v\":\"608px\",\"e\":true},\"m\":{\"v\":\"417px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"2px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-74px\",\"e\":true},\"n\":{\"v\":\"-77px\",\"e\":true},\"t\":{\"v\":\"-122px\",\"e\":true},\"m\":{\"v\":\"-98px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"47px\",\"e\":true},\"n\":{\"v\":\"44px\",\"e\":true},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"33px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"49px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"1\":{\"text\":\"Our on-demand TEK teams use a collaborative business alignment process, and\\n production-ready tools, combined with a data-driven cloud native platform to create\\n proven solutions with award-winning results.\\n\",\"alias\":\"Subtitle\",\"uid\":1,\"customCSS\":\"color: #24c1ff; font-size: 23px; line-height: 28px; text-transform: inherit; margin-bottom: 20px;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"1025px\",\"e\":true},\"t\":{\"v\":\"722px\",\"e\":true},\"m\":{\"v\":\"454px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"89px\",\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"5px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"320px\",\"e\":true},\"n\":{\"v\":\"336px\",\"e\":true},\"t\":{\"v\":\"307px\",\"e\":true},\"m\":{\"v\":\"247px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":9},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#28d9cb\",\"e\":true},\"n\":{\"v\":\"#28d9cb\"},\"t\":{\"v\":\"#28d9cb\"},\"m\":{\"v\":\"#28d9cb\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[2,0,3,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"37px\",\"e\":true},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"\",\"alias\":\"Image-2\",\"uid\":2,\"media\":{\"imageUrl\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/Group-102@3x.png\",\"imageId\":4134,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"35.608695652173914px\",\"e\":true},\"n\":{\"v\":\"28px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"21px\",\"e\":true},\"n\":{\"v\":\"17px\"},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"originalWidth\":78,\"originalHeight\":46,\"aspectRatio\":{\"d\":{\"v\":1.6956521739130435},\"n\":{\"v\":1.6956521739130435},\"t\":{\"v\":1.6956521739130435},\"m\":{\"v\":1.6956521739130435}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"420px\",\"e\":true},\"n\":{\"v\":\"372px\",\"e\":true},\"t\":{\"v\":\"-122px\",\"e\":true},\"m\":{\"v\":\"-115px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"78px\",\"e\":true},\"t\":{\"v\":\"41px\",\"e\":true},\"m\":{\"v\":\"39px\",\"e\":true}},\"horizontal\":{\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"5\":{\"text\":\"TRANSLUCENT COMPUTING\",\"alias\":\"Text-signature\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"282px\",\"e\":true},\"m\":{\"v\":\"275px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"46px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"46px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#28d9cb\",\"e\":true},\"n\":{\"v\":\"#28d9cb\"},\"t\":{\"v\":\"#28d9cb\",\"e\":true},\"m\":{\"v\":\"#28d9cb\",\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"7px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"5px\",\"e\":true},\"m\":{\"v\":\"5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"8\":{\"text\":\"Experience TEK\",\"alias\":\"Button\",\"uid\":8,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"2px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"480px\",\"e\":true},\"n\":{\"v\":\"506px\",\"e\":true},\"t\":{\"v\":\"489px\",\"e\":true},\"m\":{\"v\":\"419px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"v\":\"#182647\",\"e\":true},\"n\":{\"v\":\"#182647\"},\"t\":{\"v\":\"#182647\"},\"m\":{\"v\":\"#182647\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[7,50,7,50],\"e\":true},\"n\":{\"v\":[6,41,6,41],\"e\":false},\"t\":{\"v\":[0,63,0,63],\"e\":true},\"m\":{\"v\":[0,53,0,53],\"e\":true}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"18\"},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\"},\"t\":{\"v\":\"900\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"41\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#182647\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"speed\":100,\"ease\":\"power1.inOut\",\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/translucent.mesoishop.com\\/tek-world\\/\",\"actioncallback\":\"Calendly.initPopupWidget({url: \'https:\\/\\/calendly.com\\/tc-results\'});return false;\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.5.10\"}'),(34,8,2,'{\"runtime\":{\"collapsedGroups\":[]},\"bg\":{\"type\":\"image\",\"color\":\"#0d0470\",\"position\":\"center bottom\",\"image\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/home4.png\",\"imageId\":4137,\"imageLib\":\"medialibrary\",\"imageWidth\":1920,\"imageHeight\":980,\"imageRatio\":1.9591836734693877},\"info\":{\"params\":[{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10},{\"v\":\"\",\"l\":10}]},\"slideChange\":{\"in\":{\"o\":0},\"out\":{\"a\":false},\"title\":\"*opacity* Fade In\",\"main\":\"basic\",\"group\":\"fade\",\"preset\":\"fade\"},\"nav\":{\"arrows\":{\"presets\":{\"left-icon\":\"\\\\e81f\",\"left-icon-def\":false,\"right-icon\":\"\\\\e81e\",\"right-icon-def\":false,\"bg-color\":\"rgba(0,0,0,0.5)\",\"bg-color-def\":false,\"bg-size\":\"40\",\"bg-size-def\":false,\"arrow-color\":\"#ffffff\",\"arrow-color-def\":false,\"arrow-size\":\"20\",\"arrow-size-def\":false,\"hover-bg-color\":\"#000000\",\"hover-bg-color-def\":false}},\"thumbs\":{\"presets\":{\"bg\":\"rgba(0,0,0,0.25)\",\"bg-def\":false,\"titlebg\":\"rgba(255,255,255,0.81)\",\"titlebg-def\":false,\"hovercolor\":\"#ffffff\",\"hovercolor-def\":false,\"hbgb\":\"#777777\",\"hbgb-def\":false}},\"bullets\":{\"presets\":{\"bullet-size\":\"13\",\"bullet-size-def\":false,\"bullet-bg-color\":\"#e5e5e5\",\"bullet-bg-color-def\":false,\"hover-bullet-bg-color\":\"#ffffff\",\"hover-bullet-bg-color-def\":false,\"title-color\":\"#888888\",\"title-color-def\":false,\"title-font-size\":\"12\",\"title-font-size-def\":false,\"title-bg-color\":\"rgba(255,255,255,0.75)\",\"title-bg-color-def\":false}}}}','{\"0\":{\"text\":\"We Build Customer-Centric\\nSoftware & Apps\\n\",\"alias\":\"Title\",\"uid\":0,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"779px\",\"e\":true},\"t\":{\"v\":\"630px\",\"e\":true},\"m\":{\"v\":\"443px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"2px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"-74px\",\"e\":true},\"n\":{\"v\":\"-77px\",\"e\":true},\"t\":{\"v\":\"-122px\",\"e\":true},\"m\":{\"v\":\"-98px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"v\":\"middle\",\"e\":true},\"n\":{\"v\":\"middle\"},\"t\":{\"v\":\"middle\",\"e\":true},\"m\":{\"v\":\"middle\"}},\"zIndex\":10},\"group\":{\"groupOrder\":10},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#fff\"},\"n\":{\"v\":\"#fff\"},\"t\":{\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"47px\",\"e\":true},\"n\":{\"v\":\"44px\",\"e\":true},\"t\":{\"v\":\"45px\",\"e\":true},\"m\":{\"v\":\"33px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"2px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"1px\"},\"m\":{\"v\":\"0px\"}},\"lineHeight\":{\"d\":{\"v\":\"60px\",\"e\":true},\"n\":{\"v\":\"49px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"1\":{\"text\":\"Build new systems in the cloud, rebuild to modernize and innovate, or migrate legacy \\ndata and apps to a value-driven platform.\\n\",\"alias\":\"Subtitle\",\"uid\":1,\"customCSS\":\"color: #24c1ff; font-size: 23px; line-height: 28px; text-transform: inherit; margin-bottom: 20px;\",\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"v\":\"687px\",\"e\":true},\"t\":{\"v\":\"728px\",\"e\":true},\"m\":{\"v\":\"454px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"61px\",\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true}},\"minHeight\":{\"d\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"v\":\"5px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"320px\",\"e\":true},\"n\":{\"v\":\"336px\",\"e\":true},\"t\":{\"v\":\"307px\",\"e\":true},\"m\":{\"v\":\"247px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":9},\"group\":{\"groupOrder\":9},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true}},\"y\":{\"d\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#28d9cb\",\"e\":true},\"n\":{\"v\":\"#28d9cb\"},\"t\":{\"v\":\"#28d9cb\"},\"m\":{\"v\":\"#28d9cb\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[2,0,3,0],\"e\":true},\"m\":{\"v\":[0,0,0,0],\"e\":true}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"26px\",\"e\":true},\"n\":{\"v\":\"26px\",\"e\":true},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"500\",\"e\":true},\"n\":{\"v\":\"500\"},\"t\":{\"v\":\"500\"},\"m\":{\"v\":\"500\"}},\"letterSpacing\":{\"d\":{\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"40px\",\"e\":true},\"n\":{\"v\":\"37px\",\"e\":true},\"t\":{\"v\":\"28px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"2\":{\"text\":\"\",\"alias\":\"Image-2\",\"uid\":2,\"media\":{\"imageUrl\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/Group-102@3x.png\",\"imageId\":4134,\"loaded\":true,\"imageLib\":\"medialibrary\"},\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"v\":\"35.608695652173914px\",\"e\":true},\"n\":{\"v\":\"28px\"},\"t\":{\"v\":\"30px\",\"e\":true},\"m\":{\"v\":\"40px\",\"e\":true}},\"height\":{\"d\":{\"v\":\"21px\",\"e\":true},\"n\":{\"v\":\"17px\"},\"t\":{\"v\":\"18px\",\"e\":true},\"m\":{\"v\":\"24px\",\"e\":true}},\"originalWidth\":78,\"originalHeight\":46,\"aspectRatio\":{\"d\":{\"v\":1.6956521739130435},\"n\":{\"v\":1.6956521739130435},\"t\":{\"v\":1.6956521739130435},\"m\":{\"v\":1.6956521739130435}},\"scaleProportional\":true,\"originalSize\":true},\"position\":{\"x\":{\"d\":{\"v\":\"420px\",\"e\":true},\"n\":{\"v\":\"372px\",\"e\":true},\"t\":{\"v\":\"-122px\",\"e\":true},\"m\":{\"v\":\"-115px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"93px\",\"e\":true},\"n\":{\"v\":\"78px\",\"e\":true},\"t\":{\"v\":\"41px\",\"e\":true},\"m\":{\"v\":\"39px\",\"e\":true}},\"horizontal\":{\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\"}},\"zIndex\":12},\"group\":{\"groupOrder\":12},\"timeline\":{\"frames\":{\"frame_0\":{\"timeline\":{\"endWithSlide\":false}},\"frame_1\":{\"timeline\":{\"endWithSlide\":false,\"frameLength\":300}},\"frame_999\":{\"transform\":{\"opacity\":0},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300}}},\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"hoverFilterUsed\":false,\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontSize\":{\"n\":{\"v\":\"16\"},\"t\":{\"v\":\"12\"},\"m\":{\"v\":\"7\"}},\"lineHeight\":{\"n\":{\"v\":\"20\"},\"t\":{\"v\":\"15\"},\"m\":{\"v\":\"9\"}},\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"image\"},\"5\":{\"text\":\"TRANSLUCENT COMPUTING\",\"alias\":\"Text-signature\",\"uid\":5,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"282px\",\"e\":true},\"m\":{\"v\":\"275px\",\"e\":true}},\"height\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"maxHeight\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":0,\"e\":true},\"n\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"40px\",\"e\":true},\"m\":{\"v\":\"46px\",\"e\":true}},\"y\":{\"d\":{\"v\":\"90px\",\"e\":true},\"n\":{\"v\":\"46px\",\"e\":true},\"t\":{\"v\":\"20px\",\"e\":true},\"m\":{\"v\":\"26px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"vertical\":{\"d\":{\"e\":true}},\"zIndex\":11},\"group\":{\"groupOrder\":11},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_1\":{\"transform\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"mask\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"words\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}},\"lines\":{\"x\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}},\"y\":{\"n\":{\"v\":\"0px\",\"e\":true},\"t\":{\"v\":\"0px\"},\"m\":{\"v\":\"0px\"}}}},\"frame_999\":{\"transform\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"words\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}},\"lines\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true}},\"y\":{\"d\":{\"e\":true},\"n\":{\"e\":true}}}}},\"hoverFilterUsed\":false,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":false},\"idle\":{\"color\":{\"d\":{\"v\":\"#28d9cb\",\"e\":true},\"n\":{\"v\":\"#28d9cb\"},\"t\":{\"v\":\"#28d9cb\",\"e\":true},\"m\":{\"v\":\"#28d9cb\",\"e\":true}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":false},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":true},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"15px\",\"e\":true},\"n\":{\"v\":\"15px\",\"e\":true},\"t\":{\"v\":\"12px\",\"e\":true},\"m\":{\"v\":\"12px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"700\",\"e\":true},\"n\":{\"v\":\"700\",\"e\":true},\"t\":{\"v\":\"700\"},\"m\":{\"v\":\"700\"}},\"letterSpacing\":{\"d\":{\"v\":\"7px\",\"e\":true},\"n\":{\"v\":\"2px\",\"e\":true},\"t\":{\"v\":\"5px\",\"e\":true},\"m\":{\"v\":\"5px\",\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"29px\",\"e\":true},\"n\":{\"v\":\"83px\",\"e\":true},\"t\":{\"v\":\"63px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\"},\"t\":{\"e\":true}},\"borderRadius\":{\"v\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"borderRadius\":{\"v\":[0,0,0,0]},\"borderWidth\":[0,0,0,0]},\"actions\":{\"action\":[]},\"type\":\"text\"},\"8\":{\"text\":\"Start Innovating\",\"alias\":\"Button\",\"uid\":8,\"toggle\":{\"text\":\"\"},\"size\":{\"width\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"height\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxWidth\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"maxHeight\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minWidth\":{\"d\":{\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"minHeight\":{\"d\":{\"v\":\"0px\",\"e\":true},\"t\":{\"e\":true},\"m\":{\"e\":true}},\"aspectRatio\":{\"d\":{\"v\":\"none\"},\"n\":{\"v\":\"none\"},\"t\":{\"v\":\"none\"},\"m\":{\"v\":\"none\"}},\"scaleProportional\":false},\"position\":{\"x\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"2px\",\"e\":true},\"m\":{\"e\":true}},\"y\":{\"d\":{\"v\":\"480px\",\"e\":true},\"n\":{\"v\":\"506px\",\"e\":true},\"t\":{\"v\":\"489px\",\"e\":true},\"m\":{\"v\":\"419px\",\"e\":true}},\"horizontal\":{\"d\":{\"v\":\"center\",\"e\":true},\"n\":{\"v\":\"center\",\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"zIndex\":8},\"group\":{\"groupOrder\":8},\"timeline\":{\"frames\":{\"frame_0\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_1\":{\"transform\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"mask\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"timeline\":{\"endWithSlide\":false,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"words\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}},\"y\":{\"t\":{\"v\":\"0px\",\"e\":true},\"m\":{\"v\":\"0px\",\"e\":true}}}},\"frame_999\":{\"transform\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"opacity\":0},\"mask\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"timeline\":{\"start\":9000,\"endWithSlide\":true,\"frameLength\":300},\"chars\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"words\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}},\"lines\":{\"x\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"y\":{\"t\":{\"e\":true},\"m\":{\"e\":true}}}}},\"hoverFilterUsed\":true,\"frameOrder\":[{\"id\":\"frame_0\",\"start\":-1},{\"id\":\"frame_1\",\"start\":0},{\"id\":\"frame_999\",\"start\":9000}],\"split\":false,\"sessionFilterUsed\":true},\"idle\":{\"color\":{\"d\":{\"v\":\"#182647\",\"e\":true},\"n\":{\"v\":\"#182647\"},\"t\":{\"v\":\"#182647\"},\"m\":{\"v\":\"#182647\"}},\"margin\":{\"d\":{\"v\":[0,0,0,0],\"e\":true},\"n\":{\"v\":[0,0,0,0],\"e\":false},\"t\":{\"v\":[0,0,0,0],\"e\":false},\"m\":{\"v\":[0,0,0,0],\"e\":false}},\"padding\":{\"d\":{\"v\":[7,50,7,50],\"e\":true},\"n\":{\"v\":[6,41,6,41],\"e\":false},\"t\":{\"v\":[0,63,0,63],\"e\":true},\"m\":{\"v\":[0,53,0,53],\"e\":true}},\"fontFamily\":\"Raleway\",\"fontSize\":{\"d\":{\"v\":\"18\"},\"n\":{\"v\":\"17px\",\"e\":true},\"t\":{\"v\":\"15px\",\"e\":true},\"m\":{\"v\":\"20px\",\"e\":true}},\"fontWeight\":{\"d\":{\"v\":\"900\",\"e\":true},\"n\":{\"v\":\"900\"},\"t\":{\"v\":\"900\"},\"m\":{\"v\":\"700\",\"e\":true}},\"letterSpacing\":{\"t\":{\"e\":true},\"m\":{\"e\":true}},\"lineHeight\":{\"d\":{\"v\":\"50\"},\"n\":{\"v\":\"41\"},\"t\":{\"v\":\"50px\",\"e\":true},\"m\":{\"v\":\"50px\",\"e\":true}},\"textAlign\":{\"d\":{\"e\":true},\"n\":{\"e\":true},\"t\":{\"v\":\"center\",\"e\":true},\"m\":{\"v\":\"center\",\"e\":true}},\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"whiteSpace\":{\"d\":{\"v\":\"full\"},\"n\":{\"v\":\"full\"},\"t\":{\"v\":\"full\"},\"m\":{\"v\":\"full\"}}},\"hover\":{\"usehover\":true,\"color\":\"#182647\",\"backgroundColor\":\"{&type&:&linear&,&angle&:&90&,&colors&:[{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&top&},{&r&:39,&g&:217,&b&:203,&a&:1,&position&:0,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&bottom&},{&r&:161,&g&:242,&b&:102,&a&:1,&position&:100,&align&:&top&}],&easing&:&none&,&strength&:100}\",\"borderRadius\":{\"v\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"e\":true},\"borderWidth\":[0,0,0,0],\"speed\":100,\"ease\":\"power1.inOut\",\"filter\":{\"brightness\":\"120%\",\"blir\":0}},\"actions\":{\"action\":[{\"action\":\"link\",\"tooltip_event\":\"click\",\"link_help_in\":\"keep\",\"link_open_in\":\"_self\",\"link_follow\":\"follow\",\"link_type\":\"a\",\"image_link\":\"https:\\/\\/translucent.mesoishop.com\\/cloud-native-solutions\\/\",\"actioncallback\":\"Calendly.initPopupWidget({url: \'https:\\/\\/calendly.com\\/tc-results\'});return false;\"}]},\"runtime\":{\"internalClass\":\"rev-btn\"},\"type\":\"button\"},\"top\":{\"uid\":\"top\",\"group\":{\"puid\":-1,\"groupOrder\":7},\"type\":\"zone\",\"alias\":\"TOP ROWS\",\"position\":{\"zIndex\":7},\"text\":\"\"},\"middle\":{\"uid\":\"middle\",\"group\":{\"puid\":-1,\"groupOrder\":6},\"type\":\"zone\",\"alias\":\"MID ROWS\",\"position\":{\"zIndex\":6},\"text\":\"\"},\"bottom\":{\"uid\":\"bottom\",\"group\":{\"puid\":-1,\"groupOrder\":5},\"type\":\"zone\",\"alias\":\"BOTTOM ROWS\",\"position\":{\"zIndex\":5},\"text\":\"\"}}','{\"version\":\"6.5.10\"}'); /*!40000 ALTER TABLE `wp_revslider_slides` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_revslider_slides_bkp` -- DROP TABLE IF EXISTS `wp_revslider_slides_bkp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_revslider_slides_bkp` ( `id` int(9) NOT NULL AUTO_INCREMENT, `slider_id` int(9) NOT NULL, `slide_order` int(11) NOT NULL, `params` longtext NOT NULL, `layers` longtext NOT NULL, `settings` text NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `slider_id_index` (`slider_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_revslider_slides_bkp` -- LOCK TABLES `wp_revslider_slides_bkp` WRITE; /*!40000 ALTER TABLE `wp_revslider_slides_bkp` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_revslider_slides_bkp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_revslider_static_slides` -- DROP TABLE IF EXISTS `wp_revslider_static_slides`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_revslider_static_slides` ( `id` int(9) NOT NULL AUTO_INCREMENT, `slider_id` int(9) NOT NULL, `params` longtext NOT NULL, `layers` longtext NOT NULL, `settings` text NOT NULL, PRIMARY KEY (`id`), KEY `slider_id_index` (`slider_id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_revslider_static_slides` -- LOCK TABLES `wp_revslider_static_slides` WRITE; /*!40000 ALTER TABLE `wp_revslider_static_slides` DISABLE KEYS */; INSERT INTO `wp_revslider_static_slides` VALUES (1,1,'{\"version\":\"\",\"bg\":{\"image\":\"\"},\"image\":\"\"}','[]','{\"temp\":true}'),(4,4,'{\"version\":\"\",\"bg\":{\"image\":\"\"},\"image\":\"\"}','[]','{\"temp\":true}'),(6,6,'{\"version\":\"\",\"bg\":{\"image\":\"\"},\"image\":\"\"}','[]','{\"temp\":true}'),(7,7,'{\"version\":\"\",\"bg\":{\"image\":\"\"},\"image\":\"\"}','[]','{\"temp\":true}'),(8,8,'{\"version\":\"\",\"bg\":{\"image\":\"\"},\"image\":\"\"}','[]','{\"temp\":true}'); /*!40000 ALTER TABLE `wp_revslider_static_slides` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_revslider_static_slides_bkp` -- DROP TABLE IF EXISTS `wp_revslider_static_slides_bkp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_revslider_static_slides_bkp` ( `id` int(9) NOT NULL AUTO_INCREMENT, `slider_id` int(9) NOT NULL, `params` longtext NOT NULL, `layers` longtext NOT NULL, `settings` text NOT NULL, PRIMARY KEY (`id`), KEY `slider_id_index` (`slider_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_revslider_static_slides_bkp` -- LOCK TABLES `wp_revslider_static_slides_bkp` WRITE; /*!40000 ALTER TABLE `wp_revslider_static_slides_bkp` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_revslider_static_slides_bkp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_sgpb_subscribers` -- DROP TABLE IF EXISTS `wp_sgpb_subscribers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_sgpb_subscribers` ( `id` int(12) NOT NULL AUTO_INCREMENT, `firstName` varchar(255) DEFAULT NULL, `lastName` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `subscriptionType` int(12) DEFAULT NULL, `cDate` date DEFAULT NULL, `status` varchar(255) DEFAULT NULL, `unsubscribed` int(11) DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_sgpb_subscribers` -- LOCK TABLES `wp_sgpb_subscribers` WRITE; /*!40000 ALTER TABLE `wp_sgpb_subscribers` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_sgpb_subscribers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_sgpb_subscription_error_log` -- DROP TABLE IF EXISTS `wp_sgpb_subscription_error_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_sgpb_subscription_error_log` ( `id` int(12) NOT NULL AUTO_INCREMENT, `firstName` varchar(255) DEFAULT NULL, `popupType` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `date` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_sgpb_subscription_error_log` -- LOCK TABLES `wp_sgpb_subscription_error_log` WRITE; /*!40000 ALTER TABLE `wp_sgpb_subscription_error_log` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_sgpb_subscription_error_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_smush_dir_images` -- DROP TABLE IF EXISTS `wp_smush_dir_images`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_smush_dir_images` ( `id` mediumint(9) NOT NULL AUTO_INCREMENT, `path` text COLLATE utf8mb4_unicode_ci NOT NULL, `path_hash` char(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resize` varchar(55) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `lossy` varchar(55) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `error` varchar(55) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image_size` int(10) unsigned DEFAULT NULL, `orig_size` int(10) unsigned DEFAULT NULL, `file_time` int(10) unsigned DEFAULT NULL, `last_scan` timestamp NULL DEFAULT '0000-00-00 00:00:00', `meta` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, UNIQUE KEY `id` (`id`), UNIQUE KEY `path_hash` (`path_hash`), KEY `image_size` (`image_size`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_smush_dir_images` -- LOCK TABLES `wp_smush_dir_images` WRITE; /*!40000 ALTER TABLE `wp_smush_dir_images` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_smush_dir_images` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_snippets` -- DROP TABLE IF EXISTS `wp_snippets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_snippets` ( `id` bigint(20) NOT NULL AUTO_INCREMENT, `name` tinytext COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `code` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `tags` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `scope` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'global', `priority` smallint(6) NOT NULL DEFAULT 10, `active` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_snippets` -- LOCK TABLES `wp_snippets` WRITE; /*!40000 ALTER TABLE `wp_snippets` DISABLE KEYS */; INSERT INTO `wp_snippets` VALUES (1,'Example HTML shortcode','This is an example snippet for demonstrating how to add an HTML shortcode. You can remove it, or edit it to add your own content.','\nadd_shortcode( \'shortcode_name\', function () {\n\n $out = \'

write your HTML shortcode content here

\';\n\n return $out;\n} );','shortcode','global',10,0),(2,'Example CSS snippet','This is an example snippet for demonstrating how to add custom CSS code to your website. You can remove it, or edit it to add your own content.','\nadd_action( \'wp_head\', function () { ?>\n \n\n \n *\\/\\n\",\"type\":\"js_error\"}',0,7),(1093,1093,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/scripts\\/ytprefs.min.js?ver=__normalized__\",\"id\":\"__ytprefs__-js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"head\",\"type\":\"js_error\"}',0,7),(1094,1094,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":[],\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"head\",\"text\":\"function setREVStartSize(e){\\n\\t\\t\\t\\/\\/window.requestAnimationFrame(function() {\\n\\t\\t\\t\\twindow.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW;\\n\\t\\t\\t\\twindow.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH;\\n\\t\\t\\t\\ttry {\\n\\t\\t\\t\\t\\tvar pw = document.getElementById(e.c).parentNode.offsetWidth,\\n\\t\\t\\t\\t\\t\\tnewh;\\n\\t\\t\\t\\t\\tpw = pw===__INT__ || isNaN(pw) || (e.l==__DOUBLE_QUOTED_STRING__ || e.layout==__DOUBLE_QUOTED_STRING__) ? window.RSIW : pw;\\n\\t\\t\\t\\t\\te.tabw = e.tabw===undefined ? __INT__ : parseInt(e.tabw);\\n\\t\\t\\t\\t\\te.thumbw = e.thumbw===undefined ? __INT__ : parseInt(e.thumbw);\\n\\t\\t\\t\\t\\te.tabh = e.tabh===undefined ? __INT__ : parseInt(e.tabh);\\n\\t\\t\\t\\t\\te.thumbh = e.thumbh===undefined ? __INT__ : parseInt(e.thumbh);\\n\\t\\t\\t\\t\\te.tabhide = e.tabhide===undefined ? __INT__ : parseInt(e.tabhide);\\n\\t\\t\\t\\t\\te.thumbhide = e.thumbhide===undefined ? __INT__ : parseInt(e.thumbhide);\\n\\t\\t\\t\\t\\te.mh = e.mh===undefined || e.mh==__DOUBLE_QUOTED_STRING__ || e.mh===__DOUBLE_QUOTED_STRING__ ? __INT__ : parseInt(e.mh,__INT__);\\n\\t\\t\\t\\t\\tif(e.layout===__DOUBLE_QUOTED_STRING__ || e.l===__DOUBLE_QUOTED_STRING__)\\n\\t\\t\\t\\t\\t\\tnewh = Math.max(e.mh,window.RSIH);\\n\\t\\t\\t\\t\\telse{\\n\\t\\t\\t\\t\\t\\te.gw = Array.isArray(e.gw) ? e.gw : [e.gw];\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===__INT__) e.gw[i] = e.gw[i__INT__];\\n\\t\\t\\t\\t\\t\\te.gh = e.el===undefined || e.el===__DOUBLE_QUOTED_STRING__ || (Array.isArray(e.el) && e.el.length==__INT__)? e.gh : e.el;\\n\\t\\t\\t\\t\\t\\te.gh = Array.isArray(e.gh) ? e.gh : [e.gh];\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===__INT__) e.gh[i] = e.gh[i__INT__];\\n\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\n\\t\\t\\t\\t\\t\\tvar nl = new Array(e.rl.length),\\n\\t\\t\\t\\t\\t\\t\\tix = __INT__,\\n\\t\\t\\t\\t\\t\\t\\tsl;\\n\\t\\t\\t\\t\\t\\te.tabw = e.tabhide>=pw ? __INT__ : e.tabw;\\n\\t\\t\\t\\t\\t\\te.thumbw = e.thumbhide>=pw ? __INT__ : e.thumbw;\\n\\t\\t\\t\\t\\t\\te.tabh = e.tabhide>=pw ? __INT__ : e.tabh;\\n\\t\\t\\t\\t\\t\\te.thumbh = e.thumbhide>=pw ? __INT__ : e.thumbh;\\n\\t\\t\\t\\t\\t\\tfor (var i in e.rl) nl[i] = e.rl[i]nl[i] && nl[i]>__INT__) { sl = nl[i]; ix=i;}\\n\\t\\t\\t\\t\\t\\tvar m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? __INT__ : (pw-(e.tabw+e.thumbw)) \\/ (e.gw[ix]);\\n\\t\\t\\t\\t\\t\\tnewh = (e.gh[ix] * m) + (e.tabh + e.thumbh);\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\tvar el = document.getElementById(e.c);\\n\\t\\t\\t\\t\\tif (el!==null && el) el.style.height = newh+__DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\tel = document.getElementById(e.c+__DOUBLE_QUOTED_STRING__);\\n\\t\\t\\t\\t\\tif (el!==null && el) {\\n\\t\\t\\t\\t\\t\\tel.style.height = newh+__DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\t\\tel.style.display = __DOUBLE_QUOTED_STRING__;\\n\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t} catch(e){\\n\\t\\t\\t\\t\\tconsole.log(__DOUBLE_QUOTED_STRING__ + e)\\n\\t\\t\\t\\t}\\n\\t\\t\\t\\/\\/});\\n\\t\\t };\",\"type\":\"js_error\"}',0,7),(1095,1095,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/jquery-1.11.0.min.js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"head\",\"type\":\"js_error\"}',0,7),(1096,1096,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/viewport-checker\\/dist\\/jquery.viewportchecker.min.js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"head\",\"type\":\"js_error\"}',0,7),(1097,1097,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/animate.css\",\"rel\":\"stylesheet\"},\"node_name\":\"link\",\"node_type\":1,\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,0),(1098,1098,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/style-isk.css?v=1535218598\",\"rel\":\"stylesheet\"},\"node_name\":\"link\",\"node_type\":1,\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,1),(1099,1099,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/typewriter.js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"head\",\"type\":\"js_error\"}',0,7),(1100,1100,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"wpdiscuz-combo-css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/wpdiscuz\\/assets\\/css\\/wpdiscuz-combo.min.css?ver=__normalized__\",\"media\":\"all\"},\"node_name\":\"link\",\"node_type\":1,\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,0),(1101,1101,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/shared.css?v=107993241\",\"rel\":\"stylesheet\"},\"node_name\":\"link\",\"node_type\":1,\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,1),(1102,1102,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":[],\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"text\":\"\\n\\t\\t\\twindow.RS_MODULES = window.RS_MODULES || {};\\n\\t\\t\\twindow.RS_MODULES.modules = window.RS_MODULES.modules || {};\\n\\t\\t\\twindow.RS_MODULES.waiting = window.RS_MODULES.waiting || [];\\n\\t\\t\\twindow.RS_MODULES.defered = true;\\n\\t\\t\\twindow.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {};\\n\\t\\t\\twindow.RS_MODULES.type = __SINGLE_QUOTED_STRING__;\\n\\t\\t\",\"type\":\"js_error\"}',0,7),(1103,1103,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"wpdiscuz-fa-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/wpdiscuz\\/assets\\/third-party\\/font-awesome-5.13.0\\/css\\/fa.min.css?ver=__normalized__\",\"media\":\"all\"},\"node_name\":\"link\",\"node_type\":1,\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,0),(1104,1104,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/marchine.css?v=307997873\",\"rel\":\"stylesheet\"},\"node_name\":\"link\",\"node_type\":1,\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,1),(1105,1105,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"rel\":\"stylesheet\",\"id\":\"wpdiscuz-frontend-css-css\",\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/wpdiscuz\\/themes\\/default\\/style.css?ver=__normalized__\",\"media\":\"all\"},\"node_name\":\"link\",\"node_type\":1,\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,0),(1106,1106,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/dist\\/vendor\\/regenerator-runtime.min.js?ver=__normalized__\",\"id\":\"regenerator-runtime-js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1107,1107,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"data-key\":\"rs-28\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner2.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"},\"node_name\":\"rs-slide\",\"node_type\":1,\"parent_name\":\"rs-slides\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,3),(1108,1108,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"class\":\"wpdiscuz-subscribe-form-option amp-wp-ac2a7a8\",\"data-amp-original-style\":\"width:65%;\"},\"node_name\":\"div\",\"node_type\":1,\"parent_name\":\"form\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,0),(1109,1109,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-includes\\/js\\/dist\\/vendor\\/wp-polyfill.min.js?ver=__normalized__\",\"id\":\"wp-polyfill-js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1110,1110,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,42;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"},\"node_name\":\"rs-layer\",\"node_type\":1,\"parent_name\":\"rs-slide\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,3),(1111,1111,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"for\":\"wc-textarea-wpdiscuzuniqueid\",\"data-amp-original-style\":\"display: none;\",\"class\":\"amp-wp-224b51a\"},\"node_name\":\"label\",\"node_type\":1,\"parent_name\":\"div\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,0),(1112,1112,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,25,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,auto,714px,454px;h:auto,auto,89px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"},\"node_name\":\"rs-layer\",\"node_type\":1,\"parent_name\":\"rs-slide\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,3),(1113,1113,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"contact-form-7-js-extra\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"text\":\"\\n\\/* *\\/\\n\",\"type\":\"js_error\"}',0,7),(1114,1114,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"data-amp-original-style\":\"font-weight: 400;\",\"class\":\"amp-wp-fe3f5cc\"},\"node_name\":\"span\",\"node_type\":1,\"parent_name\":\"p\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,3),(1115,1115,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"},\"node_name\":\"rs-layer\",\"node_type\":1,\"parent_name\":\"rs-slide\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,3),(1116,1116,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"id\":\"wpdUserContentInfo\",\"class\":\"lity-hide amp-wp-ad5770b\",\"data-amp-original-style\":\"overflow:auto;background:#FDFDF6;padding:20px;width:600px;max-width:100%;border-radius:6px;\"},\"node_name\":\"div\",\"node_type\":1,\"parent_name\":\"body\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,0),(1117,1117,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/includes\\/js\\/index.js?ver=__normalized__\",\"id\":\"contact-form-7-js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1118,1118,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:150;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"},\"node_name\":\"rs-layer\",\"node_type\":1,\"parent_name\":\"rs-slide\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,3),(1119,1119,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"id\":\"respond\",\"data-amp-original-style\":\"width: 0;height: 0;clear: both;margin: 0;padding: 0;\",\"class\":\"amp-wp-f100f70\"},\"node_name\":\"div\",\"node_type\":1,\"parent_name\":\"div\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,0),(1120,1120,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-8\",\"class\":\"rs-layer rev-btn amp-wp-dfa190a\",\"href\":\"https:\\/\\/calendly.com\\/tc-results\",\"target\":\"_self\",\"data-type\":\"button\",\"data-color\":\"#182647\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,2px,0;yo:480px,490px,489px,400px;\",\"data-text\":\"w:normal;s:18,17,15,20;l:50,41,50,50;fw:900,900,900,700;a:left,left,center,center;\",\"data-dim\":\"minh:0px,none,none,none;\",\"data-padding\":\"t:7,6,0,0;r:50,41,63,53;b:7,6,0,0;l:50,41,63,53;\",\"data-border\":\"bor:30px,30px,30px,30px;\",\"data-frame_0\":\"x:0,0,0px,0px;y:0,0,0px,0px;\",\"data-frame_1\":\"x:0,0,0px,0px;y:0,0,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-frame_hover\":\"c:#182647;bgc:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);bor:30px,30px,30px,30px;sp:100;e:power1.inOut;bri:120%;\",\"data-amp-original-style\":\"z-index:8;background:linear-gradient(90deg, rgba(39,217,203,1) 0%, rgba(161,242,102,1) 100%);font-family:\'Raleway\';\"},\"node_name\":\"a\",\"node_type\":1,\"parent_name\":\"rs-slide\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,3),(1121,1121,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/js\\/rbtools.min.js?ver=__normalized__\",\"defer\":\"defer\",\"async\":\"\",\"id\":\"tp-tools-js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1122,1122,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"id\":\"wpdiscuz-frontend-css-inline-css\",\"type\":\"text\\/css\"},\"node_name\":\"style\",\"node_type\":1,\"spec_name\":\"style amp-custom\",\"text\":\"\\n #wpdcom .wpd-blog-administrator .wpd-comment-label{color:#ffffff;background-color:#00B38F;border:none}#wpdcom .wpd-blog-administrator .wpd-comment-author, #wpdcom .wpd-blog-administrator .wpd-comment-author a{color:#00B38F}#wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-administrator .wpd-avatar img{border-color:#00B38F}#wpdcom.wpd-layout-2 .wpd-comment.wpd-reply .wpd-comment-wrap.wpd-blog-administrator{border-left:3px solid #00B38F}#wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-administrator .wpd-avatar img{border-bottom-color:#00B38F}#wpdcom.wpd-layout-3 .wpd-blog-administrator .wpd-comment-subheader{border-top:1px dashed #00B38F}#wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-administrator .wpd-comment-right{border-left:1px solid #00B38F}#wpdcom .wpd-blog-editor .wpd-comment-label{color:#ffffff;background-color:#00B38F;border:none}#wpdcom .wpd-blog-editor .wpd-comment-author, #wpdcom .wpd-blog-editor .wpd-comment-author a{color:#00B38F}#wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-editor .wpd-avatar img{border-color:#00B38F}#wpdcom.wpd-layout-2 .wpd-comment.wpd-reply .wpd-comment-wrap.wpd-blog-editor{border-left:3px solid #00B38F}#wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-editor .wpd-avatar img{border-bottom-color:#00B38F}#wpdcom.wpd-layout-3 .wpd-blog-editor .wpd-comment-subheader{border-top:1px dashed #00B38F}#wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-editor .wpd-comment-right{border-left:1px solid #00B38F}#wpdcom .wpd-blog-author .wpd-comment-label{color:#ffffff;background-color:#00B38F;border:none}#wpdcom .wpd-blog-author .wpd-comment-author, #wpdcom .wpd-blog-author .wpd-comment-author a{color:#00B38F}#wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-author .wpd-avatar img{border-color:#00B38F}#wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-author .wpd-avatar img{border-bottom-color:#00B38F}#wpdcom.wpd-layout-3 .wpd-blog-author .wpd-comment-subheader{border-top:1px dashed #00B38F}#wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-author .wpd-comment-right{border-left:1px solid #00B38F}#wpdcom .wpd-blog-contributor .wpd-comment-label{color:#ffffff;background-color:#00B38F;border:none}#wpdcom .wpd-blog-contributor .wpd-comment-author, #wpdcom .wpd-blog-contributor .wpd-comment-author a{color:#00B38F}#wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-contributor .wpd-avatar img{border-color:#00B38F}#wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-contributor .wpd-avatar img{border-bottom-color:#00B38F}#wpdcom.wpd-layout-3 .wpd-blog-contributor .wpd-comment-subheader{border-top:1px dashed #00B38F}#wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-contributor .wpd-comment-right{border-left:1px solid #00B38F}#wpdcom .wpd-blog-subscriber .wpd-comment-label{color:#ffffff;background-color:#00B38F;border:none}#wpdcom .wpd-blog-subscriber .wpd-comment-author, #wpdcom .wpd-blog-subscriber .wpd-comment-author a{color:#00B38F}#wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-subscriber .wpd-avatar img{border-bottom-color:#00B38F}#wpdcom.wpd-layout-3 .wpd-blog-subscriber .wpd-comment-subheader{border-top:1px dashed #00B38F}#wpdcom .wpd-blog-wpseo_manager .wpd-comment-label{color:#ffffff;background-color:#00B38F;border:none}#wpdcom .wpd-blog-wpseo_manager .wpd-comment-author, #wpdcom .wpd-blog-wpseo_manager .wpd-comment-author a{color:#00B38F}#wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-wpseo_manager .wpd-avatar img{border-color:#00B38F}#wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-wpseo_manager .wpd-avatar img{border-bottom-color:#00B38F}#wpdcom.wpd-layout-3 .wpd-blog-wpseo_manager .wpd-comment-subheader{border-top:1px dashed #00B38F}#wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-wpseo_manager .wpd-comment-right{border-left:1px solid #00B38F}#wpdcom .wpd-blog-wpseo_editor .wpd-comment-label{color:#ffffff;background-color:#00B38F;border:none}#wpdcom .wpd-blog-wpseo_editor .wpd-comment-author, #wpdcom .wpd-blog-wpseo_editor .wpd-comment-author a{color:#00B38F}#wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-wpseo_editor .wpd-avatar img{border-color:#00B38F}#wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-wpseo_editor .wpd-avatar img{border-bottom-color:#00B38F}#wpdcom.wpd-layout-3 .wpd-blog-wpseo_editor .wpd-comment-subheader{border-top:1px dashed #00B38F}#wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-wpseo_editor .wpd-comment-right{border-left:1px solid #00B38F}#wpdcom .wpd-blog-post_author .wpd-comment-label{color:#ffffff;background-color:#00B38F;border:none}#wpdcom .wpd-blog-post_author .wpd-comment-author, #wpdcom .wpd-blog-post_author .wpd-comment-author a{color:#00B38F}#wpdcom .wpd-blog-post_author .wpd-avatar img{border-color:#00B38F}#wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-post_author .wpd-avatar img{border-color:#00B38F}#wpdcom.wpd-layout-2 .wpd-comment.wpd-reply .wpd-comment-wrap.wpd-blog-post_author{border-left:3px solid #00B38F}#wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-post_author .wpd-avatar img{border-bottom-color:#00B38F}#wpdcom.wpd-layout-3 .wpd-blog-post_author .wpd-comment-subheader{border-top:1px dashed #00B38F}#wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-post_author .wpd-comment-right{border-left:1px solid #00B38F}#wpdcom .wpd-blog-guest .wpd-comment-label{color:#ffffff;background-color:#00B38F;border:none}#wpdcom .wpd-blog-guest .wpd-comment-author, #wpdcom .wpd-blog-guest .wpd-comment-author a{color:#00B38F}#wpdcom.wpd-layout-3 .wpd-blog-guest .wpd-comment-subheader{border-top:1px dashed #00B38F}#comments, #respond, .comments-area, #wpdcom{}#wpdcom .ql-editor > *{color:#777777}#wpdcom .ql-editor::before{}#wpdcom .ql-toolbar{border:1px solid #DDDDDD;border-top:none}#wpdcom .ql-container{border:1px solid #DDDDDD;border-bottom:none}#wpdcom .wpd-form-row .wpdiscuz-item input[type=\\\"text\\\"], #wpdcom .wpd-form-row .wpdiscuz-item input[type=\\\"email\\\"], #wpdcom .wpd-form-row .wpdiscuz-item input[type=\\\"url\\\"], #wpdcom .wpd-form-row .wpdiscuz-item input[type=\\\"color\\\"], #wpdcom .wpd-form-row .wpdiscuz-item input[type=\\\"date\\\"], #wpdcom .wpd-form-row .wpdiscuz-item input[type=\\\"datetime\\\"], #wpdcom .wpd-form-row .wpdiscuz-item input[type=\\\"datetime-local\\\"], #wpdcom .wpd-form-row .wpdiscuz-item input[type=\\\"month\\\"], #wpdcom .wpd-form-row .wpdiscuz-item input[type=\\\"number\\\"], #wpdcom .wpd-form-row .wpdiscuz-item input[type=\\\"time\\\"], #wpdcom textarea, #wpdcom select{border:1px solid #DDDDDD;color:#777777}#wpdcom .wpd-form-row .wpdiscuz-item textarea{border:1px solid #DDDDDD}#wpdcom input::placeholder, #wpdcom textarea::placeholder, #wpdcom input::-moz-placeholder, #wpdcom textarea::-webkit-input-placeholder{}#wpdcom .wpd-comment-text{color:#777777}#wpdcom .wpd-thread-head .wpd-thread-info{border-bottom:2px solid #00B38F}#wpdcom .wpd-thread-head .wpd-thread-info.wpd-reviews-tab svg{fill:#00B38F}#wpdcom .wpd-thread-head .wpdiscuz-user-settings{border-bottom:2px solid #00B38F}#wpdcom .wpd-thread-head .wpdiscuz-user-settings:hover{color:#00B38F}#wpdcom .wpd-comment .wpd-follow-link:hover{color:#00B38F}#wpdcom .wpd-comment-status .wpd-sticky{color:#00B38F}#wpdcom .wpd-thread-filter .wpdf-active{color:#00B38F;border-bottom-color:#00B38F}#wpdcom .wpd-comment-info-bar{border:1px dashed #33c3a6;background:#e6f8f4}#wpdcom .wpd-comment-info-bar .wpd-current-view i{color:#00B38F}#wpdcom .wpd-filter-view-all:hover{background:#00B38F}#wpdcom .wpdiscuz-item .wpdiscuz-rating > label{color:#DDDDDD}#wpdcom .wpdiscuz-item .wpdiscuz-rating:not(:checked) > label:hover, .wpdiscuz-rating:not(:checked) > label:hover ~ label{}#wpdcom .wpdiscuz-item .wpdiscuz-rating > input ~ label:hover, #wpdcom .wpdiscuz-item .wpdiscuz-rating > input:not(:checked) ~ label:hover ~ label, #wpdcom .wpdiscuz-item .wpdiscuz-rating > input:not(:checked) ~ label:hover ~ label{color:#FFED85}#wpdcom .wpdiscuz-item .wpdiscuz-rating > input:checked ~ label:hover, #wpdcom .wpdiscuz-item .wpdiscuz-rating > input:checked ~ label:hover, #wpdcom .wpdiscuz-item .wpdiscuz-rating > label:hover ~ input:checked ~ label, #wpdcom .wpdiscuz-item .wpdiscuz-rating > input:checked + label:hover ~ label, #wpdcom .wpdiscuz-item .wpdiscuz-rating > input:checked ~ label:hover ~ label, .wpd-custom-field .wcf-active-star, #wpdcom .wpdiscuz-item .wpdiscuz-rating > input:checked ~ label{color:#FFD700}#wpd-post-rating .wpd-rating-wrap .wpd-rating-stars svg .wpd-star{fill:#DDDDDD}#wpd-post-rating .wpd-rating-wrap .wpd-rating-stars svg .wpd-active{fill:#FFD700}#wpd-post-rating .wpd-rating-wrap .wpd-rate-starts svg .wpd-star{fill:#DDDDDD}#wpd-post-rating .wpd-rating-wrap .wpd-rate-starts:hover svg .wpd-star{fill:#FFED85}#wpd-post-rating.wpd-not-rated .wpd-rating-wrap .wpd-rate-starts svg:hover ~ svg .wpd-star{fill:#DDDDDD}.wpdiscuz-post-rating-wrap .wpd-rating .wpd-rating-wrap .wpd-rating-stars svg .wpd-star{fill:#DDDDDD}.wpdiscuz-post-rating-wrap .wpd-rating .wpd-rating-wrap .wpd-rating-stars svg .wpd-active{fill:#FFD700}#wpdcom .wpd-comment .wpd-follow-active{color:#ff7a00}#wpdcom .page-numbers{color:#555;border:#555 1px solid}#wpdcom span.current{background:#555}#wpdcom.wpd-layout-1 .wpd-new-loaded-comment > .wpd-comment-wrap > .wpd-comment-right{background:#FFFAD6}#wpdcom.wpd-layout-2 .wpd-new-loaded-comment.wpd-comment > .wpd-comment-wrap > .wpd-comment-right{background:#FFFAD6}#wpdcom.wpd-layout-2 .wpd-new-loaded-comment.wpd-comment.wpd-reply > .wpd-comment-wrap > .wpd-comment-right{background:transparent}#wpdcom.wpd-layout-2 .wpd-new-loaded-comment.wpd-comment.wpd-reply > .wpd-comment-wrap{background:#FFFAD6}#wpdcom.wpd-layout-3 .wpd-new-loaded-comment.wpd-comment > .wpd-comment-wrap > .wpd-comment-right{background:#FFFAD6}#wpdcom .wpd-follow:hover i, #wpdcom .wpd-unfollow:hover i, #wpdcom .wpd-comment .wpd-follow-active:hover i{color:#00B38F}#wpdcom .wpdiscuz-readmore{cursor:pointer;color:#00B38F}.wpd-custom-field .wcf-pasiv-star, #wpcomm .wpdiscuz-item .wpdiscuz-rating > label{color:#DDDDDD}.wpd-wrapper .wpd-list-item.wpd-active{border-top:3px solid #00B38F}#wpdcom.wpd-layout-2 .wpd-comment.wpd-reply.wpd-unapproved-comment .wpd-comment-wrap{border-left:3px solid #FFFAD6}#wpdcom.wpd-layout-3 .wpd-comment.wpd-reply.wpd-unapproved-comment .wpd-comment-right{border-left:1px solid #FFFAD6}#wpdcom .wpd-prim-button{background-color:#555555;color:#FFFFFF}#wpdcom .wpd_label__check i.wpdicon-on{color:#555555;border:1px solid #aaaaaa}#wpd-bubble-wrapper #wpd-bubble-all-comments-count{color:#1DB99A}#wpd-bubble-wrapper > div{background-color:#1DB99A}#wpd-bubble-wrapper > #wpd-bubble #wpd-bubble-add-message{background-color:#1DB99A}#wpd-bubble-wrapper > #wpd-bubble #wpd-bubble-add-message::before{border-left-color:#1DB99A;border-right-color:#1DB99A}#wpd-bubble-wrapper.wpd-right-corner > #wpd-bubble #wpd-bubble-add-message::before{border-left-color:#1DB99A;border-right-color:#1DB99A}.wpd-inline-icon-wrapper path.wpd-inline-icon-first{fill:#1DB99A}.wpd-inline-icon-count{background-color:#1DB99A}.wpd-inline-icon-count::before{border-right-color:#1DB99A}.wpd-inline-form-wrapper::before{border-bottom-color:#1DB99A}.wpd-inline-form-question{background-color:#1DB99A}.wpd-inline-form{background-color:#1DB99A}.wpd-last-inline-comments-wrapper{border-color:#1DB99A}.wpd-last-inline-comments-wrapper::before{border-bottom-color:#1DB99A}.wpd-last-inline-comments-wrapper .wpd-view-all-inline-comments{background:#1DB99A}.wpd-last-inline-comments-wrapper .wpd-view-all-inline-comments:hover,.wpd-last-inline-comments-wrapper .wpd-view-all-inline-comments:active,.wpd-last-inline-comments-wrapper .wpd-view-all-inline-comments:focus{background-color:#1DB99A}#wpdcom .ql-snow .ql-tooltip[data-mode=\\\"link\\\"]::before{content:\\\"Enter link:\\\"}#wpdcom .ql-snow .ql-tooltip.ql-editing a.ql-action::after{content:\\\"Save\\\"}.comments-area{width:auto}\\n\",\"type\":\"css_error\"}',0,0),(1123,1123,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2019\\/03\\/2000px-The_Hospital_for_Sick_Children_Logo.svg_.png \",\"width\":\"310\",\"height\":\"100\",\"class\":\"amp-wp-enforced-sizes amp-wp-035b591\",\"layout\":\"intrinsic\",\"data-amp-original-style\":\"max-height: 50px;\"},\"node_name\":\"amp-img\",\"node_type\":1,\"parent_name\":\"div\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,3),(1124,1124,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/revslider\\/public\\/assets\\/js\\/rs6.min.js?ver=__normalized__\",\"defer\":\"defer\",\"async\":\"\",\"id\":\"revmin-js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1125,1125,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"data-amp-original-style\":\"display: none;\",\"class\":\"amp-wp-224b51a\"},\"node_name\":\"div\",\"node_type\":1,\"parent_name\":\"form\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,3),(1126,1126,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/www.google.com\\/recaptcha\\/api.js?render=6LcPxMsUAAAAABsFvHcCW8rV1CslMEUL2SoaBt8s&ver=__normalized__\",\"id\":\"google-recaptcha-js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1127,1127,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"id\":\"wpd-bubble-all-comments-count\",\"title\":\"0\",\"data-amp-original-style\":\"display:none;\",\"class\":\"amp-wp-93b8ea5\"},\"node_name\":\"span\",\"node_type\":1,\"parent_name\":\"div\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,0),(1128,1128,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"data-amp-original-style\":\"background-color: #121D3D;\",\"class\":\"amp-wp-61d4b04\"},\"node_name\":\"section\",\"node_type\":1,\"parent_name\":\"div\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,3),(1129,1129,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"id\":\"rev_slider_7_1_wrapper\",\"data-alias\":\"slider-02-01-2022\",\"data-source\":\"gallery\",\"data-amp-original-style\":\"visibility:hidden;background:transparent;padding:0;margin:0px auto;margin-top:0;margin-bottom:0;\",\"class\":\"amp-wp-58a99c6\"},\"node_name\":\"rs-module-wrap\",\"node_type\":1,\"parent_name\":\"div\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,3),(1130,1130,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"wpcf7-recaptcha-js-extra\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"text\":\"\\n\\/* *\\/\\n\",\"type\":\"js_error\"}',0,7),(1131,1131,'amp_validation_error','{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"class\":\"wmu-upload-wrap\",\"wpd-tooltip\":\"Attach an image to this comment\",\"wpd-tooltip-position\":\"left\"},\"node_name\":\"wpd-tooltip\",\"node_type\":2,\"parent_name\":\"span\",\"type\":\"html_attribute_error\"}',0,0),(1132,1132,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"class\":\"swp-hidden-panel-wrap amp-wp-041e5bc\",\"data-amp-original-style\":\"display: none; visibility: collapse; opacity: 0\"},\"node_name\":\"div\",\"node_type\":1,\"parent_name\":\"body\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,2),(1133,1133,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/contact-form-7\\/modules\\/recaptcha\\/index.js?ver=__normalized__\",\"id\":\"wpcf7-recaptcha-js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1134,1134,'amp_validation_error','{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"class\":\"wmu-upload-wrap\",\"wpd-tooltip\":\"Attach an image to this comment\",\"wpd-tooltip-position\":\"left\"},\"node_name\":\"wpd-tooltip-position\",\"node_type\":2,\"parent_name\":\"span\",\"type\":\"html_attribute_error\"}',0,0),(1135,1135,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"id\":\"slider-7-slide-27-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,50;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"},\"node_name\":\"rs-layer\",\"node_type\":1,\"parent_name\":\"rs-slide\",\"type\":\"html_element_error\"}',0,3),(1136,1136,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/youtube-embed-plus\\/scripts\\/fitvids.min.js?ver=__normalized__\",\"id\":\"__ytprefsfitvids__-js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1137,1137,'amp_validation_error','{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"class\":\"wpd_label\",\"wpd-tooltip\":\"Stick this comment\"},\"node_name\":\"wpd-tooltip\",\"node_type\":2,\"parent_name\":\"label\",\"type\":\"html_attribute_error\"}',0,0),(1138,1138,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"id\":\"slider-7-slide-27-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,26,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,auto,681px,454px;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"},\"node_name\":\"rs-layer\",\"node_type\":1,\"parent_name\":\"rs-slide\",\"type\":\"html_element_error\"}',0,3),(1139,1139,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/popper.js\\/1.14.3\\/umd\\/popper.min.js\",\"integrity\":\"sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK\\/l8WvCWPIPm49\",\"crossorigin\":\"anonymous\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1140,1140,'amp_validation_error','{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"class\":\"wpd_label\",\"wpd-tooltip\":\"Close this thread\"},\"node_name\":\"wpd-tooltip\",\"node_type\":2,\"parent_name\":\"label\",\"type\":\"html_attribute_error\"}',0,0),(1141,1141,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"id\":\"slider-7-slide-27-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"},\"node_name\":\"rs-layer\",\"node_type\":1,\"parent_name\":\"rs-slide\",\"type\":\"html_element_error\"}',0,3),(1142,1142,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/stackpath.bootstrapcdn.com\\/bootstrap\\/4.1.3\\/js\\/bootstrap.min.js\",\"integrity\":\"sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW\\/JmZQ5stwEULTy\",\"crossorigin\":\"anonymous\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1143,1143,'amp_validation_error','{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"class\":\"wpd_label\",\"wpd-tooltip\":\"Notify of new replies to this comment\"},\"node_name\":\"wpd-tooltip\",\"node_type\":2,\"parent_name\":\"label\",\"type\":\"html_attribute_error\"}',0,0),(1144,1144,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"id\":\"slider-7-slide-27-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"},\"node_name\":\"rs-layer\",\"node_type\":1,\"parent_name\":\"rs-slide\",\"type\":\"html_element_error\"}',0,3),(1145,1145,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/validation\\/validate.js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1146,1146,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":[],\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"form\",\"text\":\"(function(){if(window===window.parent){document.getElementById(__SINGLE_QUOTED_STRING__).name=__SINGLE_QUOTED_STRING__;}})();\",\"type\":\"js_error\"}',0,0),(1147,1147,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"data-key\":\"rs-27\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner1.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"},\"node_name\":\"rs-slide\",\"node_type\":1,\"parent_name\":\"rs-slides\",\"type\":\"html_element_error\"}',0,3),(1148,1148,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"\\/\\/ajax.aspnetcdn.com\\/ajax\\/jquery.validate\\/1.11.1\\/jquery.validate.js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1149,1149,'amp_validation_error','{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"class\":\"wpdiscuz-user-settings wpd-info wpd-not-clicked\",\"wpd-tooltip\":\"My content and settings\",\"wpd-tooltip-position\":\"right\"},\"node_name\":\"wpd-tooltip\",\"node_type\":2,\"parent_name\":\"div\",\"type\":\"html_attribute_error\"}',0,0),(1150,1150,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"id\":\"slider-7-slide-30-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,50;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,630px,443px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"},\"node_name\":\"rs-layer\",\"node_type\":1,\"parent_name\":\"rs-slide\",\"type\":\"html_element_error\"}',0,3),(1151,1151,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"\\/\\/ajax.microsoft.com\\/ajax\\/jquery.validate\\/1.11.1\\/additional-methods.js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1152,1152,'amp_validation_error','{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"class\":\"wpdiscuz-user-settings wpd-info wpd-not-clicked\",\"wpd-tooltip\":\"My content and settings\",\"wpd-tooltip-position\":\"right\"},\"node_name\":\"wpd-tooltip-position\",\"node_type\":2,\"parent_name\":\"div\",\"type\":\"html_attribute_error\"}',0,0),(1153,1153,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"id\":\"slider-7-slide-30-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,26,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,687px,728px,454px;h:auto,auto,61px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"},\"node_name\":\"rs-layer\",\"node_type\":1,\"parent_name\":\"rs-slide\",\"type\":\"html_element_error\"}',0,3),(1154,1154,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/validation\\/masks.js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1155,1155,'amp_validation_error','{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"class\":\"wpd-filter wpdf-reacted wpd_not_clicked\",\"wpd-tooltip\":\"Most reacted comment\"},\"node_name\":\"wpd-tooltip\",\"node_type\":2,\"parent_name\":\"div\",\"type\":\"html_attribute_error\"}',0,0),(1156,1156,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"id\":\"slider-7-slide-30-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"},\"node_name\":\"rs-layer\",\"node_type\":1,\"parent_name\":\"rs-slide\",\"type\":\"html_element_error\"}',0,3),(1157,1157,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/owl-carousel\\/js\\/owl.carousel.min.js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1158,1158,'amp_validation_error','{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"class\":\"wpd-filter wpdf-hottest wpd_not_clicked\",\"wpd-tooltip\":\"Hottest comment thread\"},\"node_name\":\"wpd-tooltip\",\"node_type\":2,\"parent_name\":\"div\",\"type\":\"html_attribute_error\"}',0,0),(1159,1159,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"id\":\"slider-7-slide-30-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"},\"node_name\":\"rs-layer\",\"node_type\":1,\"parent_name\":\"rs-slide\",\"type\":\"html_element_error\"}',0,3),(1160,1160,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/plugins\\/fancybox\\/jquery.fancybox.js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1161,1161,'amp_validation_error','{\"code\":\"INVALID_URL_PROTOCOL\",\"element_attributes\":{\"href\":\"javascript:void(0);\",\"id\":\"wpdUserContentInfoAnchor\",\"rel\":\"#wpdUserContentInfo\",\"data-wpd-lity\":\"\",\"data-amp-original-style\":\"display:none;\",\"class\":\"amp-wp-93b8ea5\"},\"node_name\":\"href\",\"node_type\":2,\"parent_name\":\"a\",\"type\":\"html_attribute_error\"}',0,0),(1162,1162,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"data-key\":\"rs-30\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/home4.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"},\"node_name\":\"rs-slide\",\"node_type\":1,\"parent_name\":\"rs-slides\",\"type\":\"html_element_error\"}',0,3),(1163,1163,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/typewriter-effect\\/dist\\/core.js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1164,1164,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"id\":\"slider-7-slide-29-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,50;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,846px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"},\"node_name\":\"rs-layer\",\"node_type\":1,\"parent_name\":\"rs-slide\",\"type\":\"html_element_error\"}',0,3),(1165,1165,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/vivus@latest\\/dist\\/vivus.min.js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1166,1166,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"wpdiscuz-combo-js-js-extra\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"text\":\"\\n\\/* *\\/\\n\",\"type\":\"js_error\"}',0,0),(1167,1167,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"id\":\"slider-7-slide-29-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,26,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,1025px,722px,454px;h:auto,auto,89px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"},\"node_name\":\"rs-layer\",\"node_type\":1,\"parent_name\":\"rs-slide\",\"type\":\"html_element_error\"}',0,3),(1168,1168,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/main.min.js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1169,1169,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"id\":\"wpdiscuz-combo-js-js-before\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"text\":\"\\n var wpdiscuzEditorOptions = {\\r\\n modules: {\\r\\n toolbar: __DOUBLE_QUOTED_STRING__,\\r\\n counter: {\\r\\n uniqueID: __DOUBLE_QUOTED_STRING__,\\r\\n commentmaxcount : __INT__,\\r\\n replymaxcount : __INT__,\\r\\n commentmincount : __INT__,\\r\\n replymincount : __INT__,\\r\\n },\\r\\n },\\r\\n wc_be_the_first_text: __DOUBLE_QUOTED_STRING__,\\r\\n wc_comment_join_text: __DOUBLE_QUOTED_STRING__,\\r\\n theme: __SINGLE_QUOTED_STRING__,\\r\\n debug: __SINGLE_QUOTED_STRING__\\r\\n };\\r\\n \\n\",\"type\":\"js_error\"}',0,0),(1170,1170,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"id\":\"slider-7-slide-29-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"},\"node_name\":\"rs-layer\",\"node_type\":1,\"parent_name\":\"rs-slide\",\"type\":\"html_element_error\"}',0,3),(1171,1171,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/client-testimonial\\/client-testimonial.js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1172,1172,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/wpdiscuz\\/assets\\/js\\/wpdiscuz-combo.min.js?ver=__normalized__\",\"id\":\"wpdiscuz-combo-js-js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,0),(1173,1173,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"id\":\"slider-7-slide-29-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"},\"node_name\":\"rs-layer\",\"node_type\":1,\"parent_name\":\"rs-slide\",\"type\":\"html_element_error\"}',0,3),(1174,1174,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/cloud-native\\/cloud-native.js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1175,1175,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"data-key\":\"rs-29\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/home31.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"},\"node_name\":\"rs-slide\",\"node_type\":1,\"parent_name\":\"rs-slides\",\"type\":\"html_element_error\"}',0,3),(1176,1176,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-process\\/our-process.js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1177,1177,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/services\\/services.js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1178,1178,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-0\",\"data-type\":\"text\",\"data-color\":\"#fff||#fff||#ffffff||#ffffff\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,2px;y:m;yo:-74px,-77px,-122px,-98px;\",\"data-text\":\"w:normal;s:47,44,45,33;l:60,49,63,42;ls:2px,2px,1px,0px;fw:700;a:center;\",\"data-dim\":\"w:auto,779px,608px,417px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:10;font-family:\'Raleway\';\",\"class\":\"amp-wp-fcd20be\"},\"node_name\":\"rs-layer\",\"node_type\":1,\"parent_name\":\"rs-slide\",\"type\":\"html_element_error\"}',0,3),(1179,1179,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/component-page\\/our-clients\\/our-clients.js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1180,1180,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/swiper\\/swiper-bundle.min.js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1181,1181,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-1\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:0,0,0,5px;yo:320px,336px,307px,247px;\",\"data-text\":\"w:normal;s:26,25,18,20;l:40,37,28,20;ls:0,0,0,0px;fw:500;a:center;\",\"data-dim\":\"w:auto,auto,714px,454px;h:auto,auto,89px,auto;\",\"data-padding\":\"t:0,0,2,0;b:0,0,3,0;\",\"data-frame_1\":\"st:300;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:9;font-family:\'Raleway\';color:#24c1ff;font-size:23px;line-height:28px;text-transform:inherit;margin-bottom:20px;\",\"class\":\"amp-wp-ac51d1e\"},\"node_name\":\"rs-layer\",\"node_type\":1,\"parent_name\":\"rs-slide\",\"type\":\"html_element_error\"}',0,3),(1182,1182,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"src\":\"\\/\\/cdn.jsdelivr.net\\/npm\\/slick-carousel@1.8.1\\/slick\\/slick.min.js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1183,1183,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/unpkg.com\\/aos@2.3.1\\/dist\\/aos.js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,7),(1184,1184,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-2\",\"data-type\":\"image\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:l,l,c,c;xo:420px,372px,-122px,-115px;yo:93px,78px,41px,39px;\",\"data-text\":\"w:normal;s:20,16,12,7;l:0,20,15,9;\",\"data-dim\":\"w:35.608695652173914px,28px,30px,40px;h:21px,17px,18px,24px;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:12;\",\"class\":\"amp-wp-d31032b\"},\"node_name\":\"rs-layer\",\"node_type\":1,\"parent_name\":\"rs-slide\",\"type\":\"html_element_error\"}',0,3),(1185,1185,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":[],\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"text\":\"\\n$(document).ready(function() {\\n\\n$(__SINGLE_QUOTED_STRING__).click(function() {\\n$(__SINGLE_QUOTED_STRING__).slideToggle(__DOUBLE_QUOTED_STRING__);\\n});\\n\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: false,\\ninfinite: false,\\narrows: false,\\nspeed: __INT__,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\nresponsive: [\\n{\\nbreakpoint: __INT__,\\nsettings: {\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__\\n}\\n},\\n{\\nbreakpoint: __INT__,\\nsettings: {\\nslidesToShow: __FLOAT__,\\nslidesToScroll: __INT__\\n}\\n}\\n]\\n});\\nif($(window).width()<__INT__){\\nconst slider1 = $(__SINGLE_QUOTED_STRING__);\\nfunction onSliderAfterChange(event, slick, currentSlide) {\\n$(event.target).data(__SINGLE_QUOTED_STRING__, currentSlide);\\n}\\nfunction onSliderWheel(e) {\\nvar deltaY = e.originalEvent.deltaY,\\n $currentSlider = $(e.currentTarget),\\n currentSlickIndex = $currentSlider.data(__SINGLE_QUOTED_STRING__) || __INT__;\\nif (\\n (deltaY < __INT__ && currentSlickIndex == __INT__) ||\\n (deltaY > __INT__ && currentSlickIndex == $currentSlider.data(__SINGLE_QUOTED_STRING__) - __INT__)\\n) {\\n return;\\n}\\n\\ne.preventDefault();\\n\\nif (e.originalEvent.deltaY < __INT__) {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n} else {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n}\\n}\\n\\nslider1.each(function(index, element) {\\nvar $element = $(element);\\n$element.data(__SINGLE_QUOTED_STRING__, $element.children().length);\\n})\\n.slick({\\nresponsive: [\\n {\\n breakpoint: __INT__,\\n settings: __DOUBLE_QUOTED_STRING__\\n },\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n dots: true,\\n vertical: true,\\n verticalSwiping: true,\\n verticalSwiping: true,\\n infinite: false,\\n }\\n }\\n]\\n})\\n.on(__SINGLE_QUOTED_STRING__, onSliderAfterChange)\\n.on(__SINGLE_QUOTED_STRING__, onSliderWheel);\\n}\\nif($(window).width()<__INT__ && $()){\\nconst slider = $(__SINGLE_QUOTED_STRING__);\\nfunction onSliderAfterChange(event, slick, currentSlide) {\\n$(event.target).data(__SINGLE_QUOTED_STRING__, currentSlide);\\n}\\nfunction onSliderWheel(e) {\\nvar deltaY = e.originalEvent.deltaY,\\n $currentSlider = $(e.currentTarget),\\n currentSlickIndex = $currentSlider.data(__SINGLE_QUOTED_STRING__) || __INT__;\\nif (\\n (deltaY < __INT__ && currentSlickIndex == __INT__) ||\\n (deltaY > __INT__ && currentSlickIndex == $currentSlider.data(__SINGLE_QUOTED_STRING__) - __INT__)\\n) {\\n return;\\n}\\n\\ne.preventDefault();\\n\\nif (e.originalEvent.deltaY < __INT__) {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n} else {\\n $currentSlider.slick(__SINGLE_QUOTED_STRING__);\\n}\\n}\\n\\nslider.each(function(index, element) {\\nvar $element = $(element);\\n$element.data(__SINGLE_QUOTED_STRING__, $element.children().length);\\n})\\n.slick({\\nresponsive: [\\n {\\n breakpoint: __INT__,\\n settings: __DOUBLE_QUOTED_STRING__\\n },\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n dots: true,\\n vertical: true,\\n verticalSwiping: true,\\n verticalSwiping: true,\\n infinite: false,\\n }\\n }\\n]\\n})\\n.on(__SINGLE_QUOTED_STRING__, onSliderAfterChange)\\n.on(__SINGLE_QUOTED_STRING__, onSliderWheel);\\n}\\n\\nsetTimeout(function () {\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: true,\\narrows: true,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\ninfinite: false,\\nfade: true,\\nprevArrow:__DOUBLE_QUOTED_STRING__,\\nnextArrow:__DOUBLE_QUOTED_STRING__\\n});\\n\\n}, __INT__);\\n\\n$(__SINGLE_QUOTED_STRING__).slick({\\ndots: false,\\ninfinite: false,\\narrows: false,\\nspeed: __INT__,\\nslidesToShow: __INT__,\\nslidesToScroll: __INT__,\\nprevArrow:__DOUBLE_QUOTED_STRING__,\\nnextArrow:__DOUBLE_QUOTED_STRING__,\\nresponsive: [\\n{\\nbreakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: true,\\n\\n }\\n},\\n{\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n arrows: true,\\n }\\n}\\n]\\n});\\n\\n\\n\\n\\n\\n\\/\\/ jQuery(__DOUBLE_QUOTED_STRING__).click(()=>{\\n\\/\\/ jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n\\/\\/ })\\n});\\n\\n$(window).on(__DOUBLE_QUOTED_STRING__, function(e){\\nvar windowWidth = $(window).width();\\nif(windowWidth < __INT__){\\n $(__SINGLE_QUOTED_STRING__).slick({\\n dots: false,\\n arrows: false,\\n slidesToShow: __INT__,\\n slidesToScroll: __INT__,\\n infinite: false,\\n responsive: [\\n {\\n breakpoint: __INT__,\\n settings: {\\n slidesToShow: __FLOAT__,\\n slidesToScroll: __INT__,\\n arrows: false,\\n }\\n }\\n ]\\n });\\n\\n}else{\\n $(__SINGLE_QUOTED_STRING__).slick(__SINGLE_QUOTED_STRING__);\\n}\\n\\n}) \\n\",\"type\":\"js_error\"}',0,7),(1186,1186,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":[],\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"text\":\"\\nsetTimeout(() => {\\n $(__DOUBLE_QUOTED_STRING__).attr(__SINGLE_QUOTED_STRING__, __SINGLE_QUOTED_STRING__);\\n}, __INT__);\\n\\n\",\"type\":\"js_error\"}',0,7),(1187,1187,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"id\":\"slider-7-slide-28-layer-5\",\"data-type\":\"text\",\"data-color\":\"#28d9cb\",\"data-rsp_ch\":\"on\",\"data-xy\":\"x:c;xo:15px,15px,40px,46px;yo:90px,46px,20px,26px;\",\"data-text\":\"w:normal;s:15,15,12,12;l:29,83,63,50;ls:7px,2px,5px,5px;fw:700;a:center,center,left,left;\",\"data-dim\":\"w:auto,auto,282px,275px;minh:0,none,none,none;\",\"data-frame_0\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;\",\"data-frame_1\":\"x:0,0px,0px,0px;y:0,0px,0px,0px;st:150;\",\"data-frame_999\":\"o:0;st:w;\",\"data-amp-original-style\":\"z-index:11;font-family:\'Raleway\';\",\"class\":\"amp-wp-d3bb080\"},\"node_name\":\"rs-layer\",\"node_type\":1,\"parent_name\":\"rs-slide\",\"type\":\"html_element_error\"}',0,3),(1188,1188,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":[],\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n $(__SINGLE_QUOTED_STRING__).click(function(){\\n $(__SINGLE_QUOTED_STRING__).toggleClass(__SINGLE_QUOTED_STRING__);\\n });\\n\\n $(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(__DOUBLE_QUOTED_STRING__).click(function(){\\n jQuery(this).siblings(__DOUBLE_QUOTED_STRING__).slideToggle();\\n jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n console.log(__DOUBLE_QUOTED_STRING__)\\n if (jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).is(__DOUBLE_QUOTED_STRING__)) {\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).slideUp();\\n jQuery(this).siblings(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings().children(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n }\\n })\\n }\\n \\njQuery(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n});\\n\\n\",\"type\":\"js_error\"}',0,7),(1189,1189,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"data-key\":\"rs-28\",\"data-title\":\"Slide\",\"data-thumb\":\"\\/\\/translucent.local\\/wp-content\\/uploads\\/revslider\\/slider-02-01-2022\\/banner2.png\",\"data-in\":\"o:0;col:400;\",\"data-out\":\"a:false;\",\"data-amp-original-style\":\"position: absolute;\",\"class\":\"amp-wp-b38de02\"},\"node_name\":\"rs-slide\",\"node_type\":1,\"parent_name\":\"rs-slides\",\"type\":\"html_element_error\"}',0,3),(1190,1190,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":[],\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){ \\n $(__DOUBLE_QUOTED_STRING__).slideUp()\\n $(__DOUBLE_QUOTED_STRING__).slideDown()\\n $(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__)\\n jQuery(__DOUBLE_QUOTED_STRING__).click(function(){\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).slideToggle();\\n jQuery(this).toggleClass(__DOUBLE_QUOTED_STRING__);\\n if (jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).is(__DOUBLE_QUOTED_STRING__)) {\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).slideUp();\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).slideDown();\\n jQuery(this).parents(__DOUBLE_QUOTED_STRING__).siblings(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).children(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n }\\n }); \\n var numRows = $(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__).length;\\nvar SHOWN = __INT__;\\nvar MORE = __INT__;\\n\\n\\/* get how many more can be shown *\\/\\nvar getNumMore = function(ns) {\\n var more = MORE;\\n var leftOver = numRows - ns;\\n if ((leftOver) < more) {\\n more = leftOver;\\n }\\n return more;\\n}\\n\\/* how many are shown *\\/\\nvar getInitialNumShown = function() {\\n var shown = SHOWN;\\n if (numRows < shown) {\\n shown = numRows;\\n }\\n return shown;\\n}\\n\\/* set how many are initially shown *\\/\\nvar numShown = getInitialNumShown();\\n\\n\\/* set the numMore if less than __INT__ *\\/\\nvar numMore = getNumMore(numShown);\\n\\n\\/* set more html *\\/\\nif (numMore > __INT__) {\\nvar more_html = __SINGLE_QUOTED_STRING__;\\n$(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__ + (numShown - __INT__) + __SINGLE_QUOTED_STRING__).hide().end().after(more_html);\\n}\\n$(__SINGLE_QUOTED_STRING__).click(function() {\\n\\/* determine how much more we should update *\\/\\nnumMore = getNumMore(numShown);\\n\\/* update num shown *\\/\\nnumShown = numShown + numMore;\\n$(__SINGLE_QUOTED_STRING__).find(__SINGLE_QUOTED_STRING__ + numShown + __SINGLE_QUOTED_STRING__).show();\\n\\n\\/* determine if to show more and how much left over *\\/\\nnumMore = getNumMore(numShown);\\nif (numMore > __INT__) {\\n $(__SINGLE_QUOTED_STRING__).html(numMore);\\n} else {\\n $(__SINGLE_QUOTED_STRING__).remove();\\n}\\n}); \\n }\\n})\\n\",\"type\":\"js_error\"}',0,7),(1191,1191,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":[],\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"text\":\"\\n$(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n $(__DOUBLE_QUOTED_STRING__).click(function() {\\n $(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).removeClass(__DOUBLE_QUOTED_STRING__);\\n $(__DOUBLE_QUOTED_STRING__).slideUp();\\n if (!$(this).next().is(__DOUBLE_QUOTED_STRING__)) {\\n $(this).next().slideDown();\\n $(this).addClass(__DOUBLE_QUOTED_STRING__);\\n }\\n })\\n }\\n jQuery(__SINGLE_QUOTED_STRING__).trigger(__SINGLE_QUOTED_STRING__);\\n });\\n\",\"type\":\"js_error\"}',0,7),(1192,1192,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":[],\"node_name\":\"rs-slides\",\"node_type\":1,\"parent_name\":\"rs-module\",\"type\":\"html_element_error\"}',0,3),(1193,1193,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":[],\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"text\":\"\\n $(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n \\n }\\n \\n \\n });\\n\\n\",\"type\":\"js_error\"}',0,7),(1194,1194,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":[],\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"text\":\"\\n $(window).on(__DOUBLE_QUOTED_STRING__, function (e) {\\n if($(window).width()<__INT__){\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n longSwipesRatio: __FLOAT__,\\n spaceBetween: __INT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n navigation: {\\n nextEl: __DOUBLE_QUOTED_STRING__,\\n prevEl: __DOUBLE_QUOTED_STRING__,\\n },\\n });\\n var heroSwiper = new Swiper(__DOUBLE_QUOTED_STRING__, {\\n loop: false,\\n parallax: true,\\n speed: __INT__,\\n spaceBetween: __INT__,\\n longSwipesRatio: __FLOAT__,\\n pagination: {\\n el: __SINGLE_QUOTED_STRING__,\\n clickable: true\\n },\\n });\\n \\n }\\n \\n \\n });\\n\\n\",\"type\":\"js_error\"}',0,7),(1195,1195,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"id\":\"rev_slider_7_1\",\"data-version\":\"6.5.23\"},\"node_name\":\"rs-module\",\"node_type\":1,\"parent_name\":\"rs-module-wrap\",\"type\":\"html_element_error\"}',0,3),(1196,1196,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":[],\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"text\":\"\\n$(document).ready(function() {\\n jQuery(__SINGLE_QUOTED_STRING__).trigger(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).click(function (e) {\\n e.preventDefault();\\n var popId = jQuery(this).attr(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n jQuery(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n jQuery(this).parent(__DOUBLE_QUOTED_STRING__).addClass(__DOUBLE_QUOTED_STRING__);\\n jQuery(popId).addClass(__SINGLE_QUOTED_STRING__);\\n })\\n});\\n\",\"type\":\"js_error\"}',0,7),(1197,1197,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":[],\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"text\":\"\\n $(__SINGLE_QUOTED_STRING__).on(__SINGLE_QUOTED_STRING__, function(evt) {\\n evt.preventDefault();\\n \\/\\/ $(this).toggleClass(__SINGLE_QUOTED_STRING__);\\n $(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__);\\n $(this).addClass(__SINGLE_QUOTED_STRING__);\\n var sel = this.getAttribute(__SINGLE_QUOTED_STRING__);\\n $(__SINGLE_QUOTED_STRING__).removeClass(__SINGLE_QUOTED_STRING__).filter(sel).addClass(__SINGLE_QUOTED_STRING__);\\n });\\n\",\"type\":\"js_error\"}',0,7),(1198,1198,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":[],\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"rs-module-wrap\",\"text\":\"\\n\\t\\t\\t\\t\\tsetREVStartSize({c: __SINGLE_QUOTED_STRING__,rl:[__INT__,__INT__,__INT__,__INT__],el:[__INT__,__INT__,__INT__,__INT__],gw:[__INT__,__INT__,__INT__,__INT__],gh:[__INT__,__INT__,__INT__,__INT__],type:__SINGLE_QUOTED_STRING__,justify:__SINGLE_QUOTED_STRING__,layout:__SINGLE_QUOTED_STRING__,mh:__DOUBLE_QUOTED_STRING__});if (window.RS_MODULES!==undefined && window.RS_MODULES.modules!==undefined && window.RS_MODULES.modules[__DOUBLE_QUOTED_STRING__]!==undefined) {window.RS_MODULES.modules[__DOUBLE_QUOTED_STRING__].once = false;window.revapi7 = undefined;if (window.RS_MODULES.checkMinimal!==undefined) window.RS_MODULES.checkMinimal()}\\n\\t\\t\\t\\t\",\"type\":\"js_error\"}',0,3),(1199,1199,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"type\":\"text\\/javascript\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"text\":\"\\r\\n\\r\\n(function($) {\\r\\n __DOUBLE_QUOTED_STRING__;\\r\\n \\r\\n \\/\\/Begin - Document Ready\\r\\n $(document).ready(function(){\\r\\n \\r\\n\\tvar tela = $(window).width();\\r\\n\\r\\n if(tela > __INT__) {\\r\\n \\tvar larg = $(__SINGLE_QUOTED_STRING__).width();\\r\\n\\t var larg2 = larg * __INT__ * __FLOAT__ + __INT__;\\r\\n } else if(tela > __INT__) {\\r\\n \\tvar larg2 = (tela - __INT__)\\/__INT__ + __INT__;\\r\\n } else {\\r\\n \\tvar larg2 = __INT__;\\r\\n }\\r\\n\\r\\n $(__SINGLE_QUOTED_STRING__).css(__SINGLE_QUOTED_STRING__,larg2);\\r\\n\\t$(__SINGLE_QUOTED_STRING__).css(__SINGLE_QUOTED_STRING__,larg2);\\r\\n\\r\\n $(window).resize(function(){\\r\\n \\tif(tela > __INT__) {\\r\\n\\t \\tvar larg = $(__SINGLE_QUOTED_STRING__).width();\\r\\n\\t\\t var larg2 = larg * __INT__ * __FLOAT__ + __INT__;\\r\\n\\t } else if(tela > __INT__) {\\r\\n\\t \\tvar larg2 = (tela - __INT__)\\/__INT__ + __INT__;\\r\\n\\t } else {\\r\\n\\t \\tvar larg2 = __INT__;\\r\\n\\t }\\r\\n\\r\\n\\t $(__SINGLE_QUOTED_STRING__).css(__SINGLE_QUOTED_STRING__,larg2);\\r\\n\\t\\t$(__SINGLE_QUOTED_STRING__).css(__SINGLE_QUOTED_STRING__,larg2);\\r\\n });\\r\\n \\r\\n \\/\\/End - Document Ready\\r\\n });\\r\\n\\r\\n\\/\\/End - Use Strict mode\\r\\n})(jQuery);\\r\\n\",\"type\":\"js_error\"}',0,1),(1200,1200,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"id\":\"rev_slider_7_1_wrapper\",\"data-alias\":\"slider-02-01-2022\",\"data-source\":\"gallery\",\"data-amp-original-style\":\"visibility:hidden;background:transparent;padding:0;margin:0px auto;margin-top:0;margin-bottom:0;\",\"class\":\"amp-wp-58a99c6\"},\"node_name\":\"rs-module-wrap\",\"node_type\":1,\"parent_name\":\"div\",\"type\":\"html_element_error\"}',0,3),(1201,1201,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":[],\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"div\",\"text\":\"\\r\\n $(document).ready(function() {\\r\\n if (window.screen.availWidth >= __INT__) {\\r\\n console.log(__SINGLE_QUOTED_STRING__, window.screen.availWidth)\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n } else {\\r\\n console.log(__SINGLE_QUOTED_STRING__, window.screen.availWidth)\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n $(__DOUBLE_QUOTED_STRING__).css(__DOUBLE_QUOTED_STRING__, __DOUBLE_QUOTED_STRING__);\\r\\n }\\r\\n })\\r\\n\",\"type\":\"js_error\"}',0,3),(1202,1202,'amp_validation_error','{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"id\":\"headingOne\",\"class\":\"cp-services__box--column\",\"type\":\"button\",\"data-toggle\":\"collapse\",\"data-target\":\"#collapseOne\",\"aria-expanded\":\"true\",\"aria-controls\":\"collapseOne\"},\"node_name\":\"type\",\"node_type\":2,\"parent_name\":\"div\",\"type\":\"html_attribute_error\"}',0,3),(1203,1203,'amp_validation_error','{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"id\":\"headingTwo\",\"class\":\"cp-services__box--column\",\"type\":\"button\",\"data-toggle\":\"collapse\",\"data-target\":\"#collapseTwo\",\"aria-expanded\":\"false\",\"aria-controls\":\"collapseTwo\"},\"node_name\":\"type\",\"node_type\":2,\"parent_name\":\"div\",\"type\":\"html_attribute_error\"}',0,3),(1204,1204,'amp_validation_error','{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"id\":\"headingThree\",\"class\":\"cp-services__box--column\",\"type\":\"button\",\"data-toggle\":\"collapse\",\"data-target\":\"#collapseThree\",\"aria-expanded\":\"false\",\"aria-controls\":\"collapseThree\"},\"node_name\":\"type\",\"node_type\":2,\"parent_name\":\"div\",\"type\":\"html_attribute_error\"}',0,3),(1205,1205,'amp_validation_error','{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/06\\/gotoloans.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"143\",\"height\":\"37\"},\"node_name\":\"srcset\",\"node_type\":2,\"parent_name\":\"img\",\"type\":\"html_attribute_error\"}',0,3),(1206,1206,'amp_validation_error','{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/06\\/gotoloans.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"143\",\"height\":\"37\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"node_type\":2,\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\"}',0,3),(1207,1207,'amp_validation_error','{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/blackbook.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"227\",\"height\":\"31\"},\"node_name\":\"srcset\",\"node_type\":2,\"parent_name\":\"img\",\"type\":\"html_attribute_error\"}',0,3),(1208,1208,'amp_validation_error','{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/blackbook.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"227\",\"height\":\"31\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"node_type\":2,\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\"}',0,3),(1209,1209,'amp_validation_error','{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/volentix3.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"96\",\"height\":\"96\"},\"node_name\":\"srcset\",\"node_type\":2,\"parent_name\":\"img\",\"type\":\"html_attribute_error\"}',0,3),(1210,1210,'amp_validation_error','{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/volentix3.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"96\",\"height\":\"96\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"node_type\":2,\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\"}',0,3),(1211,1211,'amp_validation_error','{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/uhn.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"108\",\"height\":\"32\"},\"node_name\":\"srcset\",\"node_type\":2,\"parent_name\":\"img\",\"type\":\"html_attribute_error\"}',0,3),(1212,1212,'amp_validation_error','{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/04\\/uhn.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"108\",\"height\":\"32\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"node_type\":2,\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\"}',0,3),(1213,1213,'amp_validation_error','{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2019\\/03\\/2000px-The_Hospital_for_Sick_Children_Logo.svg_.png\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"310\",\"height\":\"100\"},\"node_name\":\"srcset\",\"node_type\":2,\"parent_name\":\"img\",\"type\":\"html_attribute_error\"}',0,3),(1214,1214,'amp_validation_error','{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2019\\/03\\/2000px-The_Hospital_for_Sick_Children_Logo.svg_.png\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"310\",\"height\":\"100\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"node_type\":2,\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\"}',0,3),(1215,1215,'amp_validation_error','{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/logo-nuc_notag.jpg\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"280\",\"height\":\"89\"},\"node_name\":\"srcset\",\"node_type\":2,\"parent_name\":\"img\",\"type\":\"html_attribute_error\"}',0,3),(1216,1216,'amp_validation_error','{\"code\":\"MISSING_URL\",\"element_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/uploads\\/2021\\/11\\/logo-nuc_notag.jpg\",\"class\":\"cp-client-testimonial__logo amp-wp-enforced-sizes\",\"alt\":\"\",\"srcset\":\"\",\"width\":\"280\",\"height\":\"89\",\"layout\":\"intrinsic\"},\"node_name\":\"srcset\",\"node_type\":2,\"parent_name\":\"amp-img\",\"type\":\"html_attribute_error\"}',0,3),(1217,1217,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":[],\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"text\":\"\\n\\t\\tif(typeof revslider_showDoubleJqueryError === __DOUBLE_QUOTED_STRING__) {function revslider_showDoubleJqueryError(sliderID) {console.log(__DOUBLE_QUOTED_STRING__);console.log(__DOUBLE_QUOTED_STRING__);console.log(__DOUBLE_QUOTED_STRING__);console.log(__DOUBLE_QUOTED_STRING__);return __DOUBLE_QUOTED_STRING__;}}\\n\",\"type\":\"js_error\"}',0,3),(1218,1218,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"id\":\"rs-initialisation-scripts\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"text\":\"\\n\\t\\tvar\\ttpj = jQuery;\\n\\n\\t\\tvar\\trevapi7;\\n\\n\\t\\tif(window.RS_MODULES === undefined) window.RS_MODULES = {};\\n\\t\\tif(RS_MODULES.modules === undefined) RS_MODULES.modules = {};\\n\\t\\tRS_MODULES.modules[__DOUBLE_QUOTED_STRING__] = {once: RS_MODULES.modules[__DOUBLE_QUOTED_STRING__]!==undefined ? RS_MODULES.modules[__DOUBLE_QUOTED_STRING__].once : undefined, init:function() {\\n\\t\\t\\twindow.revapi7 = window.revapi7===undefined || window.revapi7===null || window.revapi7.length===__INT__ ? document.getElementById(__DOUBLE_QUOTED_STRING__) : window.revapi7;\\n\\t\\t\\tif(window.revapi7 === null || window.revapi7 === undefined || window.revapi7.length==__INT__) { window.revapi7initTry = window.revapi7initTry ===undefined ? __INT__ : window.revapi7initTry+__INT__; if (window.revapi7initTry<__INT__) requestAnimationFrame(function() {RS_MODULES.modules[__DOUBLE_QUOTED_STRING__].init()}); return;}\\n\\t\\t\\twindow.revapi7 = jQuery(window.revapi7);\\n\\t\\t\\tif(window.revapi7.revolution==undefined){ revslider_showDoubleJqueryError(__DOUBLE_QUOTED_STRING__); return;}\\n\\t\\t\\trevapi7.revolutionInit({\\n\\t\\t\\t\\t\\trevapi:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tDPR:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tsliderLayout:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tvisibilityLevels:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tgridwidth:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tgridheight:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tlazyType:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tperspective:__INT__,\\n\\t\\t\\t\\t\\tperspectiveType:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\teditorheight:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tresponsiveLevels:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\tprogressBar:{disableProgressBar:true},\\n\\t\\t\\t\\t\\tnavigation: {\\n\\t\\t\\t\\t\\t\\twheelCallDelay:__INT__,\\n\\t\\t\\t\\t\\t\\ttouch: {\\n\\t\\t\\t\\t\\t\\t\\ttouchenabled:true,\\n\\t\\t\\t\\t\\t\\t\\ttouchOnDesktop:true\\n\\t\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\t\\tarrows: {\\n\\t\\t\\t\\t\\t\\t\\tenable:true,\\n\\t\\t\\t\\t\\t\\t\\tstyle:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\tleft: {\\n\\t\\t\\t\\t\\t\\t\\t\\th_align:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\t\\tv_align:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\t\\th_offset:__INT__,\\n\\t\\t\\t\\t\\t\\t\\t\\tv_offset:__INT__\\n\\t\\t\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\t\\t\\tright: {\\n\\t\\t\\t\\t\\t\\t\\t\\tanim:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\t\\th_align:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\t\\tv_align:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\t\\th_offset:__INT__,\\n\\t\\t\\t\\t\\t\\t\\t\\tv_offset:__INT__\\n\\t\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\t\\tbullets: {\\n\\t\\t\\t\\t\\t\\t\\tenable:true,\\n\\t\\t\\t\\t\\t\\t\\ttmp:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\tstyle:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\t\\tv_offset:__INT__\\n\\t\\t\\t\\t\\t\\t}\\n\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\tviewPort: {\\n\\t\\t\\t\\t\\t\\tglobal:true,\\n\\t\\t\\t\\t\\t\\tglobalDist:__DOUBLE_QUOTED_STRING__,\\n\\t\\t\\t\\t\\t\\tenable:false\\n\\t\\t\\t\\t\\t},\\n\\t\\t\\t\\t\\tfallbacks: {\\n\\t\\t\\t\\t\\t\\tallowHTML5AutoPlayOnAndroid:true\\n\\t\\t\\t\\t\\t},\\n\\t\\t\\t});\\n\\t\\t\\t\\n\\t\\t}} \\/\\/ End of RevInitScript\\n\\n\\t\\tif (window.RS_MODULES.checkMinimal!==undefined) { window.RS_MODULES.checkMinimal();};\\n\\t\",\"type\":\"js_error\"}',0,3),(1219,1219,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/js\\/landing-page.js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',0,3),(1220,1220,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/shared.css?v=2138898239\",\"rel\":\"stylesheet\"},\"node_name\":\"link\",\"node_type\":1,\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,1),(1221,1221,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/kubernetes.css?v=1787594022\",\"rel\":\"stylesheet\"},\"node_name\":\"link\",\"node_type\":1,\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,1),(1222,1222,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/new-styles.css\",\"rel\":\"stylesheet\"},\"node_name\":\"link\",\"node_type\":1,\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,1),(1223,1223,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/shared.css?v=882585420\",\"rel\":\"stylesheet\"},\"node_name\":\"link\",\"node_type\":1,\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,1),(1224,1224,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"data-amp-original-style\":\"margin-bottom: 0px;\",\"class\":\"amp-wp-7ba55e4\"},\"node_name\":\"p\",\"node_type\":1,\"parent_name\":\"div\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,1),(1225,1225,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"data-amp-original-style\":\"color: #707070;\",\"class\":\"amp-wp-309e5e2\"},\"node_name\":\"span\",\"node_type\":1,\"parent_name\":\"p\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,1),(1226,1226,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":[],\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"text\":\"\\n\\tvar app2 = document.getElementById(__SINGLE_QUOTED_STRING__);\\n\\n var typewriter = new Typewriter(app2, {\\n loop: true,\\n cursor: __SINGLE_QUOTED_STRING__,\\n cursorClassName: __SINGLE_QUOTED_STRING__\\n });\\n\\n typewriter.typeString(__SINGLE_QUOTED_STRING__)\\n .pauseFor(__INT__)\\n .deleteAll()\\n .typeString(__SINGLE_QUOTED_STRING__)\\n .pauseFor(__INT__)\\n .deleteAll()\\n .typeString(__SINGLE_QUOTED_STRING__)\\n .pauseFor(__INT__)\\n .start();\\n\\t\\n\\tvar tela = $(window).width();\\n\\n if(tela > __INT__) {\\n \\tvar larg = $(__SINGLE_QUOTED_STRING__).width();\\n\\t var larg2 = larg * __INT__ * __FLOAT__ + __INT__;\\n } else if(tela > __INT__) {\\n \\tvar larg2 = (tela - __INT__)\\/__INT__ + __INT__;\\n } else {\\n \\tvar larg2 = __INT__;\\n }\\n\\n $(__SINGLE_QUOTED_STRING__).css(__SINGLE_QUOTED_STRING__,larg2);\\n\\t$(__SINGLE_QUOTED_STRING__).css(__SINGLE_QUOTED_STRING__,larg2);\\n\\n $(window).resize(function(){\\n \\tif(tela > __INT__) {\\n\\t \\tvar larg = $(__SINGLE_QUOTED_STRING__).width();\\n\\t\\t var larg2 = larg * __INT__ * __FLOAT__ + __INT__;\\n\\t } else if(tela > __INT__) {\\n\\t \\tvar larg2 = (tela - __INT__)\\/__INT__ + __INT__;\\n\\t } else {\\n\\t \\tvar larg2 = __INT__;\\n\\t }\\n\\n\\t $(__SINGLE_QUOTED_STRING__).css(__SINGLE_QUOTED_STRING__,larg2);\\n\\t\\t$(__SINGLE_QUOTED_STRING__).css(__SINGLE_QUOTED_STRING__,larg2);\\n });\\n\",\"type\":\"js_error\"}',0,2),(1227,1227,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"data-amp-original-style\":\"color: #000000;\",\"class\":\"amp-wp-5443cfc\"},\"node_name\":\"span\",\"node_type\":1,\"parent_name\":\"span\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,1),(1228,1228,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"data-amp-original-style\":\"color: #999999;\",\"class\":\"amp-wp-2111d24\"},\"node_name\":\"span\",\"node_type\":1,\"parent_name\":\"p\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,1),(1229,1229,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"id\":\"gtx-trans\",\"data-amp-original-style\":\"position: absolute; left: -113px; top: -10px;\",\"class\":\"amp-wp-47fc5b1\"},\"node_name\":\"div\",\"node_type\":1,\"parent_name\":\"div\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,1),(1230,1230,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"id\":\"gtx-trans\",\"data-amp-original-style\":\"position: absolute; left: -46px; top: -10px;\",\"class\":\"amp-wp-2a0531c\"},\"node_name\":\"div\",\"node_type\":1,\"parent_name\":\"div\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,1),(1231,1231,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"id\":\"gtx-trans\",\"data-amp-original-style\":\"position: absolute; left: 1149px; top: 62px;\",\"class\":\"amp-wp-4c18308\"},\"node_name\":\"div\",\"node_type\":1,\"parent_name\":\"div\",\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,1),(1232,1232,'amp_validation_error','{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"id\":\"calendly-button-1\",\"class\":\"mt-5 btn__consultation\",\"href\":\"\",\"onclick\":\"Calendly.initPopupWidget({url: \'https:\\/\\/calendly.com\\/tc-results\'});return false;\"},\"node_name\":\"onclick\",\"node_type\":2,\"parent_name\":\"a\",\"type\":\"js_error\"}',0,1),(1233,1233,'amp_validation_error','{\"code\":\"DISALLOWED_ATTR\",\"element_attributes\":{\"id\":\"calendly-button-1\",\"class\":\"mt-5 btn__consultation__light__blue\",\"href\":\"\",\"onclick\":\"Calendly.initPopupWidget({url: \'https:\\/\\/calendly.com\\/tc-results\'});return false;\"},\"node_name\":\"onclick\",\"node_type\":2,\"parent_name\":\"a\",\"type\":\"js_error\"}',0,1),(1234,1234,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":[],\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"text\":\"\\n\\t$(__SINGLE_QUOTED_STRING__).owlCarousel({\\n\\t\\tautoplay: true,\\n\\t\\tloop: true,\\n\\t\\tnav: true,\\n\\t\\tresponsive: {\\n\\t\\t\\t__INT__: {\\n\\t\\t\\t\\titems: __INT__\\n\\t\\t\\t},\\n\\t\\t}\\n\\t})\\n\",\"type\":\"js_error\"}',0,1),(1235,1235,'amp_validation_error','{\"attributes\":[\"src\"],\"code\":\"ATTR_REQUIRED_BUT_MISSING\",\"node_attributes\":{\"src\":\"\",\"class\":\"post-img\"},\"node_name\":\"img\",\"node_type\":1,\"parent_name\":\"a\",\"spec_name\":\"amp-img\",\"type\":\"html_element_error\"}',0,1),(1236,1236,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/shared.css?v=1602747630\",\"rel\":\"stylesheet\"},\"node_name\":\"link\",\"node_type\":1,\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,1),(1237,1237,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/style-isk.css?v=1392178670\",\"rel\":\"stylesheet\"},\"node_name\":\"link\",\"node_type\":1,\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,1),(1238,1238,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/shared.css?v=885986021\",\"rel\":\"stylesheet\"},\"node_name\":\"link\",\"node_type\":1,\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,1),(1239,1239,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/style-isk.css?v=949774448\",\"rel\":\"stylesheet\"},\"node_name\":\"link\",\"node_type\":1,\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,1),(1240,1240,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/marchine.css?v=2064148582\",\"rel\":\"stylesheet\"},\"node_name\":\"link\",\"node_type\":1,\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,1),(1241,1241,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/marchine.css?v=1260057810\",\"rel\":\"stylesheet\"},\"node_name\":\"link\",\"node_type\":1,\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,1),(1242,1242,'amp_validation_error','{\"code\":\"STYLESHEET_TOO_LONG\",\"node_attributes\":{\"href\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/themes\\/translucent\\/css\\/shared.css?v=405726095\",\"rel\":\"stylesheet\"},\"node_name\":\"link\",\"node_type\":1,\"spec_name\":\"style amp-custom\",\"type\":\"css_error\"}',0,1),(1243,1243,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"type\":\"text\\/javascript\",\"id\":\"mkaz-code-syntax-prism-js-js-extra\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"text\":\"\\n\\/* *\\/\\n\",\"type\":\"js_error\"}',0,1),(1244,1244,'amp_validation_error','{\"code\":\"DISALLOWED_TAG\",\"node_attributes\":{\"src\":\"https:\\/\\/translucent.mesoishop.com\\/wp-content\\/plugins\\/code-syntax-block\\/assets\\/prism\\/prism.js?ver=__normalized__\",\"id\":\"mkaz-code-syntax-prism-js-js\"},\"node_name\":\"script\",\"node_type\":1,\"parent_name\":\"body\",\"type\":\"js_error\"}',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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=171 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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,1075,'created_date_gmt','2022-09-13 08:44:00'),(2,1076,'created_date_gmt','2022-09-13 08:44:00'),(3,1077,'created_date_gmt','2022-09-13 08:44:00'),(4,1078,'created_date_gmt','2022-09-13 08:44:00'),(5,1079,'created_date_gmt','2022-09-13 08:44:00'),(6,1080,'created_date_gmt','2022-09-13 08:44:00'),(7,1081,'created_date_gmt','2022-09-13 08:44:00'),(8,1082,'created_date_gmt','2022-09-13 08:44:00'),(9,1083,'created_date_gmt','2022-09-13 08:44:01'),(10,1084,'created_date_gmt','2022-09-13 08:44:01'),(11,1085,'created_date_gmt','2022-09-13 08:44:01'),(12,1086,'created_date_gmt','2022-09-13 08:44:01'),(13,1087,'created_date_gmt','2022-09-13 08:44:01'),(14,1088,'created_date_gmt','2022-09-13 08:44:01'),(15,1089,'created_date_gmt','2022-09-13 08:44:01'),(16,1090,'created_date_gmt','2022-09-13 08:44:01'),(17,1091,'created_date_gmt','2022-09-13 08:44:02'),(18,1092,'created_date_gmt','2022-09-13 08:44:02'),(19,1093,'created_date_gmt','2022-09-13 08:44:02'),(20,1094,'created_date_gmt','2022-09-13 08:44:02'),(21,1095,'created_date_gmt','2022-09-13 08:44:02'),(22,1096,'created_date_gmt','2022-09-13 08:44:02'),(23,1097,'created_date_gmt','2022-09-13 08:44:02'),(24,1098,'created_date_gmt','2022-09-13 08:44:03'),(25,1099,'created_date_gmt','2022-09-13 08:44:03'),(26,1100,'created_date_gmt','2022-09-13 08:44:03'),(27,1101,'created_date_gmt','2022-09-13 08:44:03'),(28,1102,'created_date_gmt','2022-09-13 08:44:03'),(29,1103,'created_date_gmt','2022-09-13 08:44:03'),(30,1104,'created_date_gmt','2022-09-13 08:44:03'),(31,1105,'created_date_gmt','2022-09-13 08:44:03'),(32,1106,'created_date_gmt','2022-09-13 08:44:03'),(33,1107,'created_date_gmt','2022-09-13 08:44:03'),(34,1108,'created_date_gmt','2022-09-13 08:44:03'),(35,1109,'created_date_gmt','2022-09-13 08:44:03'),(36,1110,'created_date_gmt','2022-09-13 08:44:03'),(37,1111,'created_date_gmt','2022-09-13 08:44:03'),(38,1112,'created_date_gmt','2022-09-13 08:44:03'),(39,1113,'created_date_gmt','2022-09-13 08:44:03'),(40,1114,'created_date_gmt','2022-09-13 08:44:03'),(41,1115,'created_date_gmt','2022-09-13 08:44:03'),(42,1116,'created_date_gmt','2022-09-13 08:44:03'),(43,1117,'created_date_gmt','2022-09-13 08:44:03'),(44,1118,'created_date_gmt','2022-09-13 08:44:03'),(45,1119,'created_date_gmt','2022-09-13 08:44:03'),(46,1120,'created_date_gmt','2022-09-13 08:44:03'),(47,1121,'created_date_gmt','2022-09-13 08:44:03'),(48,1123,'created_date_gmt','2022-09-13 08:44:04'),(49,1122,'created_date_gmt','2022-09-13 08:44:04'),(50,1124,'created_date_gmt','2022-09-13 08:44:04'),(51,1125,'created_date_gmt','2022-09-13 08:44:04'),(52,1126,'created_date_gmt','2022-09-13 08:44:04'),(53,1127,'created_date_gmt','2022-09-13 08:44:04'),(54,1128,'created_date_gmt','2022-09-13 08:44:04'),(55,1129,'created_date_gmt','2022-09-13 08:44:04'),(56,1130,'created_date_gmt','2022-09-13 08:44:04'),(57,1131,'created_date_gmt','2022-09-13 08:44:04'),(58,1132,'created_date_gmt','2022-09-13 08:44:04'),(59,1133,'created_date_gmt','2022-09-13 08:44:04'),(60,1134,'created_date_gmt','2022-09-13 08:44:04'),(61,1135,'created_date_gmt','2022-09-13 08:44:04'),(62,1136,'created_date_gmt','2022-09-13 08:44:04'),(63,1137,'created_date_gmt','2022-09-13 08:44:04'),(64,1138,'created_date_gmt','2022-09-13 08:44:04'),(65,1139,'created_date_gmt','2022-09-13 08:44:04'),(66,1140,'created_date_gmt','2022-09-13 08:44:04'),(67,1141,'created_date_gmt','2022-09-13 08:44:04'),(68,1142,'created_date_gmt','2022-09-13 08:44:04'),(69,1143,'created_date_gmt','2022-09-13 08:44:04'),(70,1144,'created_date_gmt','2022-09-13 08:44:04'),(71,1145,'created_date_gmt','2022-09-13 08:44:05'),(72,1146,'created_date_gmt','2022-09-13 08:44:05'),(73,1147,'created_date_gmt','2022-09-13 08:44:05'),(74,1148,'created_date_gmt','2022-09-13 08:44:05'),(75,1149,'created_date_gmt','2022-09-13 08:44:05'),(76,1150,'created_date_gmt','2022-09-13 08:44:05'),(77,1151,'created_date_gmt','2022-09-13 08:44:05'),(78,1152,'created_date_gmt','2022-09-13 08:44:05'),(79,1153,'created_date_gmt','2022-09-13 08:44:05'),(80,1154,'created_date_gmt','2022-09-13 08:44:05'),(81,1155,'created_date_gmt','2022-09-13 08:44:05'),(82,1156,'created_date_gmt','2022-09-13 08:44:05'),(83,1157,'created_date_gmt','2022-09-13 08:44:05'),(84,1158,'created_date_gmt','2022-09-13 08:44:05'),(85,1159,'created_date_gmt','2022-09-13 08:44:05'),(86,1160,'created_date_gmt','2022-09-13 08:44:05'),(87,1161,'created_date_gmt','2022-09-13 08:44:05'),(88,1162,'created_date_gmt','2022-09-13 08:44:05'),(89,1163,'created_date_gmt','2022-09-13 08:44:05'),(90,1164,'created_date_gmt','2022-09-13 08:44:05'),(91,1165,'created_date_gmt','2022-09-13 08:44:05'),(92,1166,'created_date_gmt','2022-09-13 08:44:05'),(93,1167,'created_date_gmt','2022-09-13 08:44:05'),(94,1168,'created_date_gmt','2022-09-13 08:44:05'),(95,1169,'created_date_gmt','2022-09-13 08:44:05'),(96,1170,'created_date_gmt','2022-09-13 08:44:05'),(97,1171,'created_date_gmt','2022-09-13 08:44:05'),(98,1172,'created_date_gmt','2022-09-13 08:44:05'),(99,1173,'created_date_gmt','2022-09-13 08:44:06'),(100,1174,'created_date_gmt','2022-09-13 08:44:06'),(101,1175,'created_date_gmt','2022-09-13 08:44:06'),(102,1176,'created_date_gmt','2022-09-13 08:44:06'),(103,1177,'created_date_gmt','2022-09-13 08:44:06'),(104,1178,'created_date_gmt','2022-09-13 08:44:06'),(105,1179,'created_date_gmt','2022-09-13 08:44:06'),(106,1180,'created_date_gmt','2022-09-13 08:44:06'),(107,1181,'created_date_gmt','2022-09-13 08:44:06'),(108,1182,'created_date_gmt','2022-09-13 08:44:06'),(109,1183,'created_date_gmt','2022-09-13 08:44:06'),(110,1184,'created_date_gmt','2022-09-13 08:44:06'),(111,1185,'created_date_gmt','2022-09-13 08:44:06'),(112,1186,'created_date_gmt','2022-09-13 08:44:06'),(113,1187,'created_date_gmt','2022-09-13 08:44:06'),(114,1188,'created_date_gmt','2022-09-13 08:44:06'),(115,1189,'created_date_gmt','2022-09-13 08:44:06'),(116,1190,'created_date_gmt','2022-09-13 08:44:06'),(117,1191,'created_date_gmt','2022-09-13 08:44:06'),(118,1192,'created_date_gmt','2022-09-13 08:44:06'),(119,1193,'created_date_gmt','2022-09-13 08:44:06'),(120,1194,'created_date_gmt','2022-09-13 08:44:06'),(121,1195,'created_date_gmt','2022-09-13 08:44:06'),(122,1196,'created_date_gmt','2022-09-13 08:44:06'),(123,1197,'created_date_gmt','2022-09-13 08:44:06'),(124,1198,'created_date_gmt','2022-09-13 08:44:06'),(125,1199,'created_date_gmt','2022-09-13 08:44:06'),(126,1200,'created_date_gmt','2022-09-13 08:44:06'),(127,1201,'created_date_gmt','2022-09-13 08:44:07'),(128,1202,'created_date_gmt','2022-09-13 08:44:07'),(129,1203,'created_date_gmt','2022-09-13 08:44:07'),(130,1204,'created_date_gmt','2022-09-13 08:44:07'),(131,1205,'created_date_gmt','2022-09-13 08:44:07'),(132,1206,'created_date_gmt','2022-09-13 08:44:07'),(133,1207,'created_date_gmt','2022-09-13 08:44:07'),(134,1208,'created_date_gmt','2022-09-13 08:44:07'),(135,1209,'created_date_gmt','2022-09-13 08:44:07'),(136,1210,'created_date_gmt','2022-09-13 08:44:07'),(137,1211,'created_date_gmt','2022-09-13 08:44:08'),(138,1212,'created_date_gmt','2022-09-13 08:44:08'),(139,1213,'created_date_gmt','2022-09-13 08:44:08'),(140,1214,'created_date_gmt','2022-09-13 08:44:08'),(141,1215,'created_date_gmt','2022-09-13 08:44:08'),(142,1216,'created_date_gmt','2022-09-13 08:44:08'),(143,1217,'created_date_gmt','2022-09-13 08:44:08'),(144,1218,'created_date_gmt','2022-09-13 08:44:08'),(145,1219,'created_date_gmt','2022-09-13 08:44:08'),(146,1220,'created_date_gmt','2022-09-13 08:44:19'),(147,1221,'created_date_gmt','2022-09-13 08:44:19'),(148,1222,'created_date_gmt','2022-09-13 08:44:19'),(149,1223,'created_date_gmt','2022-09-13 08:44:19'),(150,1224,'created_date_gmt','2022-09-13 08:44:19'),(151,1225,'created_date_gmt','2022-09-13 08:44:19'),(152,1226,'created_date_gmt','2022-09-13 08:44:19'),(153,1227,'created_date_gmt','2022-09-13 08:44:19'),(154,1228,'created_date_gmt','2022-09-13 08:44:19'),(155,1229,'created_date_gmt','2022-09-13 08:44:19'),(156,1230,'created_date_gmt','2022-09-13 08:44:19'),(157,1231,'created_date_gmt','2022-09-13 08:44:19'),(158,1232,'created_date_gmt','2022-09-13 08:44:19'),(159,1233,'created_date_gmt','2022-09-13 08:44:19'),(160,1234,'created_date_gmt','2022-09-13 08:44:20'),(161,1235,'created_date_gmt','2022-09-13 08:44:46'),(162,1236,'created_date_gmt','2022-09-13 08:44:46'),(163,1237,'created_date_gmt','2022-09-13 08:44:55'),(164,1238,'created_date_gmt','2022-09-13 08:44:55'),(165,1239,'created_date_gmt','2022-09-13 08:44:55'),(166,1240,'created_date_gmt','2022-09-13 08:44:55'),(167,1241,'created_date_gmt','2022-09-13 08:44:55'),(168,1242,'created_date_gmt','2022-09-13 08:44:55'),(169,1243,'created_date_gmt','2022-09-13 08:44:56'),(170,1244,'created_date_gmt','2022-09-13 08:44:56'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `slug` varchar(200) COLLATE utf8mb4_unicode_ci 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=1245 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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,'Technology','technology',0),(2,'Main Menu','main-menu',0),(3,'Hibernate','hibernate',0),(4,'Android','android',0),(5,'iOS','ios',0),(6,'Mobile','mobile',0),(7,'C','c',0),(8,'Cloud Doodle','cloud-doodle',0),(9,'Flood fill','flood-fill',0),(10,'JNI','jni',0),(11,'NDK','ndk',0),(12,'Facebook','facebook',0),(13,'iPhone','iphone',0),(14,'APK','apk',0),(15,'BlueStacks','bluestacks',0),(16,'install','install',0),(17,'Mac','mac',0),(18,'mobile design','mobile-design',0),(19,'OpenGL','opengl',0),(20,'Java','java',0),(21,'texture','texture',0),(22,'Corona SDK','corona-sdk',0),(23,'KWIK','kwik',0),(24,'Photoshop','photoshop',0),(25,'layouts','layouts',0),(26,'beginner','beginner',0),(27,'design practices','design-practices',0),(28,'design layouts','design-layouts',0),(29,'creative','creative',0),(30,'mobile apps','mobile-apps',0),(31,'Creep Me Out','creep-me-out',0),(32,'Drawing','drawing',0),(33,'festive','festive',0),(34,'Christmas','christmas',0),(35,'gift ideas','gift-ideas',0),(36,'Kringle Me','kringle-me',0),(37,'contest','contest',0),(38,'giveaway','giveaway',0),(39,'kringle','kringle',0),(40,'holidays','holidays',0),(41,'mobile app','mobile-app',0),(42,'ugly christmas sweater','ugly-christmas-sweater',0),(43,'cats','cats',0),(44,'christmas ornaments','christmas-ornaments',0),(45,'christmas memes','christmas-memes',0),(46,'christmas trees','christmas-trees',0),(47,'fruitcakes','fruitcakes',0),(48,'jennifer lawrence','jennifer-lawrence',0),(49,'holiday cards','holiday-cards',0),(50,'IOIO','ioio',0),(51,'robot','robot',0),(52,'bluetooth','bluetooth',0),(53,'remote control','remote-control',0),(54,'robot arm','robot-arm',0),(55,'robotics','robotics',0),(56,'Leap Motion','leap-motion',0),(57,'Leap','leap',0),(58,'Artificial Intelligence','artificial-intelligence',0),(59,'logistic function','logistic-function',0),(60,'backpropagation','backpropagation',0),(61,'handwritten','handwritten',0),(62,'neural networks','neural-networks',0),(63,'Machine Learning','machine-learning',0),(64,'perceptron','perceptron',0),(65,'recognition','recognition',0),(66,'numbers','numbers',0),(67,'sigmoid','sigmoid',0),(68,'applications','applications',0),(69,'creative content','creative-content',0),(70,'content creation','content-creation',0),(71,'business','business',0),(72,'creativity','creativity',0),(73,'marketing','marketing',0),(74,'SEO','seo',0),(75,'writing','writing',0),(76,'image compression','image-compression',0),(77,'PCA','pca',0),(78,'covariance','covariance',0),(79,'dimensionality reduction','dimensionality-reduction',0),(80,'R','r',0),(81,'SVD','svd',0),(82,'case study','case-study',0),(83,'healthcare','healthcare',0),(84,'rapid web development','rapid-web-development',0),(85,'Kubernetes','kubernetes',0),(86,'Elasticsearch','elasticsearch',0),(87,'Python','python',0),(88,'Mathematics','mathematics',0),(89,'Jupyter Notebook','jupyter-notebook',0),(90,'Applied Machine Learning','applied-machine-learning',0),(91,'Time-Series Data','time-series-data',0),(92,'SymPy','sympy',0),(93,'ECG','ecg',0),(94,'Kubernetes In Action','kubernetes-in-action',0),(95,'Helm','helm',0),(96,'Cloud Computing','cloud-computing',0),(762,'errexit','errexit',0),(763,'Bash','bash',0),(875,'Data-Driven','data-driven',0),(1022,'News Release','news-release',0),(1023,'replatforming','replatforming',0),(1024,'devops','devops',0),(1025,'cloud native applications','cloud-native-applications',0),(1026,'cloud native','cloud-native',0),(1027,'Microblog','microblog',0),(1028,'Menu 2021','menu-2021',0),(1029,'modernization','modernization',0),(1030,'certified','certified',0),(1031,'KCSP','kcsp',0),(1032,'Vector','vector',0),(1033,'Bias','bias',0),(1034,'AI','ai',0),(1035,'Guest Post','guest-post',0),(1036,'digital transformation','digital-transformation',0),(1037,'data driven','data-driven',0),(1038,'cloud','cloud',0),(1039,'strategy','strategy',0),(1040,'Landing Page','landing-page',0),(1041,'LP-Long','lp-long',0),(1042,'LP-MID','lp-mid',0),(1043,'Texas','texas',0),(1044,'LP-Short4','lp-short4',0),(1045,'LP-Short5','lp-short5',0),(1046,'LP-Ontario','lp-ontario',0),(1047,'LP-Texas','lp-texas',0),(1048,'LP-California','lp-california',0),(1049,'LP-Georgia','lp-georgia',0),(1050,'LP-New York','lp-new-york',0),(1051,'Docker','docker',0),(1052,'Includes','inc',0),(1053,'inc','inc',0),(1054,'pipeline','pipeline',0),(1055,'workflow engine','workflow-engine',0),(1056,'apache','apache',0),(1057,'management','management',0),(1058,'security','security',0),(1059,'vm','vm',0),(1060,'data','data',0),(1061,'devsecop','devsecop',0),(1062,'airflow','airflow',0),(1063,'Menu 2022','menu-2022',0),(1064,'OUR COMPANY 2022','our-company-2022',0),(1065,'WHAT WE DO 2022','what-we-do-2022',0),(1066,'WHAT IS CLOUD NATIVE 2022','what-is-cloud-native-2022',0),(1067,'INDUSTRIES 2022','industries-2022',0),(1068,'HOW WE DO IT 2022','how-we-do-it-2022',0),(1069,'microblog','microblog',0),(1070,'software','software',0),(1071,'fintech','fintech',0),(1072,'zero trust','zero-trust',0),(1073,'big data','big-data',0),(1074,'business value','business-value',0),(1075,'b6319eb11967f233e8deca9ac7919f84','b6319eb11967f233e8deca9ac7919f84',0),(1076,'74383adda30d63a82e52f5fb1bd448fe','74383adda30d63a82e52f5fb1bd448fe',0),(1077,'c683711a32c941e886a2bff9cd5d9c49','c683711a32c941e886a2bff9cd5d9c49',0),(1078,'754f2bd220d369a2310b0727edf58c57','754f2bd220d369a2310b0727edf58c57',0),(1079,'17e920edc403db5a65f76c4be11cbd90','17e920edc403db5a65f76c4be11cbd90',0),(1080,'b2b05336e9d16428fe4d70031a73afc4','b2b05336e9d16428fe4d70031a73afc4',0),(1081,'698ed8c3c1252be738d6986e0c37c3cf','698ed8c3c1252be738d6986e0c37c3cf',0),(1082,'157c13b55df6d419a7a4a7c952b848f6','157c13b55df6d419a7a4a7c952b848f6',0),(1083,'6d4404ba5312e7463b373a66c2eda446','6d4404ba5312e7463b373a66c2eda446',0),(1084,'a845e1e06b53116c205bceaff1516022','a845e1e06b53116c205bceaff1516022',0),(1085,'0ad7242b71b7e1675d4323aa70985997','0ad7242b71b7e1675d4323aa70985997',0),(1086,'23b6b9c56b1db07e4393c6bc7d02ba95','23b6b9c56b1db07e4393c6bc7d02ba95',0),(1087,'84e497b381cbb079db874863c5b11bd7','84e497b381cbb079db874863c5b11bd7',0),(1088,'9bc4b078f5f0e9eaab12cf1127980410','9bc4b078f5f0e9eaab12cf1127980410',0),(1089,'4281f21ed8dba5c268ac3796b5136911','4281f21ed8dba5c268ac3796b5136911',1),(1090,'ad851d2fd6457e6427554d69d5544899','ad851d2fd6457e6427554d69d5544899',1),(1091,'d95172fdd6b6200ab9aad6f23b20546c','d95172fdd6b6200ab9aad6f23b20546c',1),(1092,'22a3cbf1fa1e43f7e3d9b33f00da4349','22a3cbf1fa1e43f7e3d9b33f00da4349',1),(1093,'38f5af99f1aa7d42f770794b2aebc370','38f5af99f1aa7d42f770794b2aebc370',1),(1094,'60cb9e5de0de6a4012c105b98464b149','60cb9e5de0de6a4012c105b98464b149',1),(1095,'394a14393ccb142d4278875b36d749de','394a14393ccb142d4278875b36d749de',1),(1096,'d0f41d87dfbb44c74917aa3e7e6f4c9c','d0f41d87dfbb44c74917aa3e7e6f4c9c',1),(1097,'6bd6eacda5a2ea7b6562a218dcad923e','6bd6eacda5a2ea7b6562a218dcad923e',0),(1098,'cca5d429d4c2ac617e7a3b1aa7f0a461','cca5d429d4c2ac617e7a3b1aa7f0a461',0),(1099,'0858ec58dbe60e96b4fdf2e45aa60f95','0858ec58dbe60e96b4fdf2e45aa60f95',1),(1100,'d6e5d5993d83874d712cfc9c8b2c1019','d6e5d5993d83874d712cfc9c8b2c1019',0),(1101,'5152f2c37041b38ceee81ff8554df8e3','5152f2c37041b38ceee81ff8554df8e3',0),(1102,'68b2b21a33a01e0e112230069b0192f7','68b2b21a33a01e0e112230069b0192f7',1),(1103,'4831bbe3a4ece8e8a55514971a499e73','4831bbe3a4ece8e8a55514971a499e73',0),(1104,'702471c876b89c3c8e5f8f2ecb8e0f27','702471c876b89c3c8e5f8f2ecb8e0f27',0),(1105,'9929f50949a5d410afb7c64a4c8d6606','9929f50949a5d410afb7c64a4c8d6606',0),(1106,'a198fa0278eff5b1007238f21a844cb8','a198fa0278eff5b1007238f21a844cb8',1),(1107,'28973f0cc11760f5194f0f375115bb5a','28973f0cc11760f5194f0f375115bb5a',0),(1108,'d3386b1c6766791e7a0a7a17c169d958','d3386b1c6766791e7a0a7a17c169d958',0),(1109,'29c76d030187be64189aa8a62c361d19','29c76d030187be64189aa8a62c361d19',1),(1110,'907dbeff6585cfea5c5b45a6e7da3fb0','907dbeff6585cfea5c5b45a6e7da3fb0',0),(1111,'12f949e56bc3b1dcc27d22504fba3707','12f949e56bc3b1dcc27d22504fba3707',0),(1112,'327b1739bdcf02881c195c26b04cb722','327b1739bdcf02881c195c26b04cb722',0),(1113,'6fc0da9f0d23eae8410103820c7c1c5c','6fc0da9f0d23eae8410103820c7c1c5c',1),(1114,'b102a27293ee6465b3e25a5e44d74aa6','b102a27293ee6465b3e25a5e44d74aa6',0),(1115,'1f75be8113554ac16a6902c13d81ed3b','1f75be8113554ac16a6902c13d81ed3b',0),(1116,'51d630a7f19ba347aa8bd4410815e0ab','51d630a7f19ba347aa8bd4410815e0ab',0),(1117,'6b7e94cb0640140eccfeb0c6d126d3fa','6b7e94cb0640140eccfeb0c6d126d3fa',1),(1118,'51079d28a732c15e6a7abb2e096a3773','51079d28a732c15e6a7abb2e096a3773',0),(1119,'4c290f97e9cdc8000e615a12cbebe108','4c290f97e9cdc8000e615a12cbebe108',0),(1120,'6fd2ec91fec809029dda3394c39907de','6fd2ec91fec809029dda3394c39907de',0),(1121,'455e0d79375d5c0e7bb2fe24f4408fe7','455e0d79375d5c0e7bb2fe24f4408fe7',1),(1122,'5e08eaa7a894f9236b9e6a9280efc3f7','5e08eaa7a894f9236b9e6a9280efc3f7',0),(1123,'1a19dd503158279d1f97ad286870f18d','1a19dd503158279d1f97ad286870f18d',0),(1124,'9d2fbb97c2aba76b5c2e11048abcd7a3','9d2fbb97c2aba76b5c2e11048abcd7a3',1),(1125,'062fe80a5344eb489ed5e93302040e68','062fe80a5344eb489ed5e93302040e68',0),(1126,'0d54ab34f1393ff50a990bcd43ac9b89','0d54ab34f1393ff50a990bcd43ac9b89',1),(1127,'aa8d07d2048c788ab60baa80ffdf2202','aa8d07d2048c788ab60baa80ffdf2202',0),(1128,'0dba9387ee3b61c1895ca5730d0d026d','0dba9387ee3b61c1895ca5730d0d026d',0),(1129,'3945dd509b3ef3f0c91f0c850ce6d074','3945dd509b3ef3f0c91f0c850ce6d074',0),(1130,'fffd38e1e2b741ded941b11c8bcee8e2','fffd38e1e2b741ded941b11c8bcee8e2',1),(1131,'b3943380268749fc4af3cf6f5350d59a','b3943380268749fc4af3cf6f5350d59a',1),(1132,'df8b37bdf772800d94026a25d5108162','df8b37bdf772800d94026a25d5108162',0),(1133,'8a7fe833154a0ee7052f4d4fc864ab44','8a7fe833154a0ee7052f4d4fc864ab44',1),(1134,'8f509ba072d402b4b1a85d7ea8dd8d4e','8f509ba072d402b4b1a85d7ea8dd8d4e',1),(1135,'3904651acb2c4c1a36bbf2eea35a01ba','3904651acb2c4c1a36bbf2eea35a01ba',1),(1136,'b700eea7e3e60850ee69274a67ef5ead','b700eea7e3e60850ee69274a67ef5ead',1),(1137,'c4ccde325e16568d2d43e34d11e4b303','c4ccde325e16568d2d43e34d11e4b303',1),(1138,'7b5e889ea3d42183be9b55c1edcfbc2b','7b5e889ea3d42183be9b55c1edcfbc2b',1),(1139,'e95a68c301f2a3e94af3ab60d1e49223','e95a68c301f2a3e94af3ab60d1e49223',1),(1140,'641d3b282960efed5901e5c84d38f126','641d3b282960efed5901e5c84d38f126',1),(1141,'aaab19a79deb4ac531da87ba40e11216','aaab19a79deb4ac531da87ba40e11216',1),(1142,'dbdfe8cccebe34ff7041e208736a7942','dbdfe8cccebe34ff7041e208736a7942',1),(1143,'211aaa5344cadddcd90fca0234b5ef94','211aaa5344cadddcd90fca0234b5ef94',1),(1144,'0aed1255823257c61057140d7bb2c87c','0aed1255823257c61057140d7bb2c87c',1),(1145,'7120b7b6f6e5e34eaab178a0de4148ac','7120b7b6f6e5e34eaab178a0de4148ac',1),(1146,'29467223f8335ea4e332a781dc78545a','29467223f8335ea4e332a781dc78545a',1),(1147,'2f30b3cfc5ac886741ed7e829ea10dcb','2f30b3cfc5ac886741ed7e829ea10dcb',1),(1148,'dab16e046124505937d40d90a371de48','dab16e046124505937d40d90a371de48',1),(1149,'19def1ca614293462393928e53d0926d','19def1ca614293462393928e53d0926d',1),(1150,'ceeebf838b1b80b0344ea4e74a224185','ceeebf838b1b80b0344ea4e74a224185',1),(1151,'67c9c739d09cfdaf1697c37a00630a3d','67c9c739d09cfdaf1697c37a00630a3d',1),(1152,'1f346b87c15029bd6f2a313c55cb69d1','1f346b87c15029bd6f2a313c55cb69d1',1),(1153,'2a7c3571eea257538e926d4f1017694a','2a7c3571eea257538e926d4f1017694a',1),(1154,'9ca7e7b07112fab0f2659963d081c647','9ca7e7b07112fab0f2659963d081c647',1),(1155,'c6a364a82041fe705f5412d95af0447d','c6a364a82041fe705f5412d95af0447d',1),(1156,'08d09df5d3e5e4dc0ed7cebb2bde858f','08d09df5d3e5e4dc0ed7cebb2bde858f',1),(1157,'e2c5b7b289252d89a64585273c024ec4','e2c5b7b289252d89a64585273c024ec4',1),(1158,'ea676df36496b7086ae92b5342930261','ea676df36496b7086ae92b5342930261',1),(1159,'b1f69cd6028d56c6fcfd976ccc5f0bb5','b1f69cd6028d56c6fcfd976ccc5f0bb5',1),(1160,'ef932f7d78102026336c4df6b9e8ff91','ef932f7d78102026336c4df6b9e8ff91',1),(1161,'b1c93ecd2b2c806327455cc8d4fa4e3a','b1c93ecd2b2c806327455cc8d4fa4e3a',1),(1162,'ac6237c605e83296cb48c362d8f95986','ac6237c605e83296cb48c362d8f95986',1),(1163,'54f0b92713a27edb9d4a223c245ad681','54f0b92713a27edb9d4a223c245ad681',1),(1164,'abd80e162efd58f72c1290c2d1f5216a','abd80e162efd58f72c1290c2d1f5216a',1),(1165,'308a2319835188db90cf07f966466146','308a2319835188db90cf07f966466146',1),(1166,'a07c2d368e3eb0b48d9437b7904b5085','a07c2d368e3eb0b48d9437b7904b5085',1),(1167,'8cc0d02ea3049623c89539e9e28fd6f0','8cc0d02ea3049623c89539e9e28fd6f0',1),(1168,'d63eeee74cd3bfbc3da018462afd7b3f','d63eeee74cd3bfbc3da018462afd7b3f',1),(1169,'7b3448e0cdeab8a3a127d29cf557d50a','7b3448e0cdeab8a3a127d29cf557d50a',1),(1170,'50af8f4d5f21bdee419239a3567badcc','50af8f4d5f21bdee419239a3567badcc',1),(1171,'285f76a33582e621571d8109572b729f','285f76a33582e621571d8109572b729f',1),(1172,'1534502b6825fef6d7bbadb175548b7a','1534502b6825fef6d7bbadb175548b7a',1),(1173,'ad4ebac89e192f20b89a49267e72fa38','ad4ebac89e192f20b89a49267e72fa38',1),(1174,'30ecfff784f957bc89bf72081232cb3b','30ecfff784f957bc89bf72081232cb3b',1),(1175,'591ae21bed9d9edb2b6db9f01fc0cf1d','591ae21bed9d9edb2b6db9f01fc0cf1d',1),(1176,'c1becf0684470267fde5176dfd043567','c1becf0684470267fde5176dfd043567',1),(1177,'de5df74cbbe78f3f4a0610587a35e184','de5df74cbbe78f3f4a0610587a35e184',1),(1178,'202e2f6a377113b03e5b248699e2c239','202e2f6a377113b03e5b248699e2c239',1),(1179,'d9fea8205636ef843e6b598ace10ec9f','d9fea8205636ef843e6b598ace10ec9f',1),(1180,'22e139cf096a29785f5e03c3cdf7b16d','22e139cf096a29785f5e03c3cdf7b16d',1),(1181,'628624e4cdb78df8fd5d4aadc6668cc9','628624e4cdb78df8fd5d4aadc6668cc9',1),(1182,'b2a1b5e6c3786b7700a4fcb53b4481f1','b2a1b5e6c3786b7700a4fcb53b4481f1',1),(1183,'b2badd021972c22702da7e27c5d6a2c0','b2badd021972c22702da7e27c5d6a2c0',1),(1184,'5879dd0446a5dcdc3d415ffa1dfc0a53','5879dd0446a5dcdc3d415ffa1dfc0a53',1),(1185,'d3db2d0fa38d97f62aac99a855396e59','d3db2d0fa38d97f62aac99a855396e59',1),(1186,'46a6e66b9caf788b688275cac7a26bb5','46a6e66b9caf788b688275cac7a26bb5',1),(1187,'912487ff20bb195ed59441158086f5ed','912487ff20bb195ed59441158086f5ed',1),(1188,'2c372ecf7923e7043aa08b5735b0e957','2c372ecf7923e7043aa08b5735b0e957',1),(1189,'545094b279f4c55f91bd2a471115680e','545094b279f4c55f91bd2a471115680e',1),(1190,'12562413cb77cf11c8ec1b1270ffeca2','12562413cb77cf11c8ec1b1270ffeca2',1),(1191,'b018faa0938622cc9d86adc1c5b500ae','b018faa0938622cc9d86adc1c5b500ae',1),(1192,'e63b409eb86607034e13f0995b45120a','e63b409eb86607034e13f0995b45120a',1),(1193,'6563f33063a8fda3041e500a21a4f19f','6563f33063a8fda3041e500a21a4f19f',1),(1194,'9564124c6f316693f9a84b1137b0cba7','9564124c6f316693f9a84b1137b0cba7',1),(1195,'75bb11fc9ebb26f1f4b64912338d9750','75bb11fc9ebb26f1f4b64912338d9750',1),(1196,'561f494215f84bac2f890b40eb75db0a','561f494215f84bac2f890b40eb75db0a',1),(1197,'82eea9842ad50c4a8eddf3aa2f5897e3','82eea9842ad50c4a8eddf3aa2f5897e3',1),(1198,'50aa68c36e299f37c43660ce1c8e7b18','50aa68c36e299f37c43660ce1c8e7b18',1),(1199,'433d165ac337e5a9f6a29f7820563801','433d165ac337e5a9f6a29f7820563801',1),(1200,'e47c6c22bfca9bbab0c46ce97914d209','e47c6c22bfca9bbab0c46ce97914d209',1),(1201,'dd4ea0d50e6331de5a89561bfe24ffca','dd4ea0d50e6331de5a89561bfe24ffca',1),(1202,'2d27220cfea15653af76d8312c3dd31f','2d27220cfea15653af76d8312c3dd31f',1),(1203,'3b0ee603f3aa83553e1574a2a66dc58b','3b0ee603f3aa83553e1574a2a66dc58b',1),(1204,'39bd6c29d1862a73d9d5efe977c98dc7','39bd6c29d1862a73d9d5efe977c98dc7',1),(1205,'63bca055743ddac99d793e2ad9520292','63bca055743ddac99d793e2ad9520292',1),(1206,'b0deb28a473276707cdc63f576ff7a32','b0deb28a473276707cdc63f576ff7a32',1),(1207,'b4f0efc7236126de4f46ae929436c3f9','b4f0efc7236126de4f46ae929436c3f9',1),(1208,'7d1496ce660ac21d39094ec8c969dc90','7d1496ce660ac21d39094ec8c969dc90',1),(1209,'358c370403358aaf8d16beaee1ce222e','358c370403358aaf8d16beaee1ce222e',1),(1210,'e1aec95a897868f7c1f258d1a009dc43','e1aec95a897868f7c1f258d1a009dc43',1),(1211,'073590543cb1c4f8ce2d56d4300475b1','073590543cb1c4f8ce2d56d4300475b1',1),(1212,'2808956575f8ac30a93a8d5693af02a7','2808956575f8ac30a93a8d5693af02a7',1),(1213,'8fc491d10cf3d4f353141f2c85b9641f','8fc491d10cf3d4f353141f2c85b9641f',1),(1214,'1998a41cc20254f3fbedcfad6f4353c5','1998a41cc20254f3fbedcfad6f4353c5',1),(1215,'6c4c478544820da9cdf0cdeba3b91ab5','6c4c478544820da9cdf0cdeba3b91ab5',1),(1216,'e03c25c8ba975c77e0c366bf30a5bd38','e03c25c8ba975c77e0c366bf30a5bd38',1),(1217,'07f331d5771ab8204fd812e9bd91d3ea','07f331d5771ab8204fd812e9bd91d3ea',1),(1218,'d9c993ebac688f060c8b7b4c18f2346f','d9c993ebac688f060c8b7b4c18f2346f',1),(1219,'22e51996b5d317a78d80c2948b527a9d','22e51996b5d317a78d80c2948b527a9d',1),(1220,'3b8bc37eb3ca95929f7270d722792be5','3b8bc37eb3ca95929f7270d722792be5',0),(1221,'119f0fc62ebf75644afb9b13428151de','119f0fc62ebf75644afb9b13428151de',0),(1222,'f580ee9073e2167a99519fdc30175fb6','f580ee9073e2167a99519fdc30175fb6',0),(1223,'262ecf0781d46061fb584a067443783c','262ecf0781d46061fb584a067443783c',0),(1224,'df0ff9d05846e2707ba6991f464f0aae','df0ff9d05846e2707ba6991f464f0aae',0),(1225,'222fa7b0f7619473f1ad089a053229a4','222fa7b0f7619473f1ad089a053229a4',0),(1226,'64d07e9dba76f8b08f7cd70fdd9ae020','64d07e9dba76f8b08f7cd70fdd9ae020',1),(1227,'264d8d4d1114a10f205e7f86c58b7bfd','264d8d4d1114a10f205e7f86c58b7bfd',0),(1228,'c49913c688d4509868dbd402dfeaf183','c49913c688d4509868dbd402dfeaf183',0),(1229,'8b8133815b019458c4ab0828f742918f','8b8133815b019458c4ab0828f742918f',0),(1230,'10dd3fafee0856f33bffad7bb9c63fa9','10dd3fafee0856f33bffad7bb9c63fa9',0),(1231,'2ff5885227c2ace503cc444ee7525e56','2ff5885227c2ace503cc444ee7525e56',0),(1232,'1f89399ca73888cdc6eac0be8d96512b','1f89399ca73888cdc6eac0be8d96512b',1),(1233,'793426c83e9dfe44d0b6fd888f3b1db1','793426c83e9dfe44d0b6fd888f3b1db1',1),(1234,'8a3f70de89835aeada2da51bc2353128','8a3f70de89835aeada2da51bc2353128',1),(1235,'1154d9e645eee85946a815449fd5d911','1154d9e645eee85946a815449fd5d911',1),(1236,'9059024a12c04f13c4bc37ed89391619','9059024a12c04f13c4bc37ed89391619',0),(1237,'9ef121d867689dffb1e369a9adaf23c4','9ef121d867689dffb1e369a9adaf23c4',0),(1238,'90a24301d50cfe79801316fe3f329e0e','90a24301d50cfe79801316fe3f329e0e',0),(1239,'f1befabcc105a54e449f89de6d4762bc','f1befabcc105a54e449f89de6d4762bc',0),(1240,'03cd21eff26611ab82f1811dd26daeab','03cd21eff26611ab82f1811dd26daeab',0),(1241,'57e1a790a1299ec25f0d4f77ee5a95df','57e1a790a1299ec25f0d4f77ee5a95df',0),(1242,'c1c808673b8f2bf9a7d63efc07e9503d','c1c808673b8f2bf9a7d63efc07e9503d',0),(1243,'b75f1394d2950300074b793601c00c0b','b75f1394d2950300074b793601c00c0b',1),(1244,'d79415d341c0f65e0358e4084d74739e','d79415d341c0f65e0358e4084d74739e',1); /*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_tm_taskmeta` -- DROP TABLE IF EXISTS `wp_tm_taskmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_tm_taskmeta` ( `meta_id` bigint(20) NOT NULL AUTO_INCREMENT, `task_id` bigint(20) NOT NULL DEFAULT 0, `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `meta_key` (`meta_key`(191)), KEY `task_id` (`task_id`) ) ENGINE=InnoDB AUTO_INCREMENT=162 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_tm_taskmeta` -- LOCK TABLES `wp_tm_taskmeta` WRITE; /*!40000 ALTER TABLE `wp_tm_taskmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_tm_taskmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_tm_tasks` -- DROP TABLE IF EXISTS `wp_tm_tasks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_tm_tasks` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` bigint(20) NOT NULL, `type` varchar(300) COLLATE utf8mb4_unicode_ci NOT NULL, `class_identifier` varchar(300) COLLATE utf8mb4_unicode_ci DEFAULT '0', `attempts` int(11) DEFAULT 0, `description` varchar(300) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `time_created` timestamp NOT NULL DEFAULT current_timestamp(), `last_locked_at` bigint(20) DEFAULT 0, `status` varchar(300) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=162 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_tm_tasks` -- LOCK TABLES `wp_tm_tasks` WRITE; /*!40000 ALTER TABLE `wp_tm_tasks` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_tm_tasks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_usermeta` -- DROP TABLE IF EXISTS `wp_usermeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = 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) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=856 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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 (30,2,'nickname','stacee'),(31,2,'first_name','Stacee'),(32,2,'last_name','Golabek'),(33,2,'description',''),(34,2,'rich_editing','true'),(35,2,'syntax_highlighting','true'),(36,2,'comment_shortcuts','false'),(37,2,'admin_color','fresh'),(38,2,'use_ssl','0'),(39,2,'show_admin_bar_front','true'),(40,2,'locale',''),(41,2,'wp_capabilities','a:1:{s:6:\"editor\";b:1;}'),(42,2,'wp_user_level','7'),(43,2,'dismissed_wp_pointers','wp496_privacy'),(44,3,'nickname','patryk'),(45,3,'first_name','Patryk'),(46,3,'last_name','Golabek'),(47,3,'description',''),(48,3,'rich_editing','true'),(49,3,'syntax_highlighting','true'),(50,3,'comment_shortcuts','false'),(51,3,'admin_color','ocean'),(52,3,'use_ssl','0'),(53,3,'show_admin_bar_front','true'),(54,3,'locale',''),(55,3,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(56,3,'wp_user_level','10'),(57,3,'dismissed_wp_pointers','wp496_privacy,theme_editor_notice,custom_admin_pointers13_3_1_new_items,custom_admin_pointers13_4_3_new_items'),(58,4,'nickname','robert'),(59,4,'first_name','Robert'),(60,4,'last_name','Golabek'),(61,4,'description',''),(62,4,'rich_editing','true'),(63,4,'syntax_highlighting','true'),(64,4,'comment_shortcuts','false'),(65,4,'admin_color','fresh'),(66,4,'use_ssl','0'),(67,4,'show_admin_bar_front','true'),(68,4,'locale',''),(69,4,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(70,4,'wp_user_level','10'),(71,4,'dismissed_wp_pointers','wp496_privacy,custom_admin_pointers13_3_1_new_items,theme_editor_notice,custom_admin_pointers13_4_2_new_items,custom_admin_pointers13_4_3_new_items,custom_admin_pointers14_0_new_items,custom_admin_pointers14_0_1_1_new_items,custom_admin_pointers14_0_1_4_new_items,custom_admin_pointers14_1_new_items,custom_admin_pointers14_1_1_new_items,custom_admin_pointers14_1_2_new_items'),(72,5,'nickname','brad'),(73,5,'first_name','Brad'),(74,5,'last_name','Sankar'),(75,5,'description',''),(76,5,'rich_editing','true'),(77,5,'syntax_highlighting','true'),(78,5,'comment_shortcuts','false'),(79,5,'admin_color','fresh'),(80,5,'use_ssl','0'),(81,5,'show_admin_bar_front','true'),(82,5,'locale',''),(83,5,'wp_capabilities','a:1:{s:6:\"editor\";b:1;}'),(84,5,'wp_user_level','7'),(85,5,'dismissed_wp_pointers','wp496_privacy'),(89,4,'closedpostboxes_page','a:3:{i:0;s:12:\"revisionsdiv\";i:1;s:10:\"wpseo_meta\";i:2;s:22:\"yoast_internal_linking\";}'),(90,4,'metaboxhidden_page','a:9:{i:0;s:9:\"authordiv\";i:1;s:17:\"wpd_reset_ratings\";i:2;s:4:\"hefo\";i:3;s:16:\"commentstatusdiv\";i:4;s:11:\"categorydiv\";i:5;s:12:\"revisionsdiv\";i:6;s:25:\"slider_revolution_metabox\";i:7;s:12:\"postimagediv\";i:8;s:11:\"commentsdiv\";}'),(93,3,'manageedit-pagecolumnshidden','a:0:{}'),(94,3,'_yoast_wpseo_profile_updated','1552180134'),(95,3,'wpseo_title',''),(96,3,'wpseo_metadesc',''),(97,3,'wpseo_noindex_author',''),(98,3,'wpseo_content_analysis_disable',''),(99,3,'wpseo_keyword_analysis_disable',''),(100,3,'googleplus',''),(101,3,'twitter',''),(102,3,'facebook',''),(105,3,'wp_dashboard_quick_press_last_post_id','3145'),(108,4,'meta-box-order_page','a:4:{s:15:\"acf_after_title\";s:0:\"\";s:4:\"side\";s:162:\"authordiv,submitdiv,wpd_reset_ratings,hefo,commentstatusdiv,slugdiv,categorydiv,revisionsdiv,tagsdiv-post_tag,pageparentdiv,slider_revolution_metabox,postimagediv\";s:6:\"normal\";s:46:\"acf-group_5c488fe8e3c41,wpseo_meta,commentsdiv\";s:8:\"advanced\";s:22:\"yoast_internal_linking\";}'),(109,4,'wp_user-settings','editor=html&libraryContent=browse&mfold=o'),(110,4,'wp_user-settings-time','1660071110'),(112,4,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:27:\"exactmetrics_reports_widget\";s:4:\"side\";s:26:\"sendgrid_statistics_widget\";s:7:\"column3\";s:18:\"dashboard_activity\";s:7:\"column4\";s:24:\"wpseo-dashboard-overview\";}'),(113,4,'wpseo-has-mailchimp-signup','1'),(119,3,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:103:\"gadwp-widget,dashboard_activity,sendgrid_statistics_widget,wpseo-dashboard-overview,health_check_status\";s:4:\"side\";s:0:\"\";s:7:\"column3\";s:24:\"tinypng_dashboard_widget\";s:7:\"column4\";s:0:\"\";}'),(120,3,'wp_user-settings','libraryContent=browse&mfold=o&unfold=1&posts_list_mode=list'),(121,3,'wp_user-settings-time','1624115287'),(122,5,'_yoast_wpseo_profile_updated','1618581878'),(124,4,'_yoast_wpseo_profile_updated','1552338108'),(125,2,'_yoast_wpseo_profile_updated','1552338108'),(133,4,'nav_menu_recently_edited','1068'),(134,4,'managenav-menuscolumnshidden','a:2:{i:0;s:3:\"xfn\";i:1;s:11:\"description\";}'),(135,4,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(149,3,'nav_menu_recently_edited','2'),(150,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\";}'),(151,3,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(152,6,'nickname','mlagowski'),(153,6,'first_name','Mike'),(154,6,'last_name','Lagowski'),(155,6,'description',''),(156,6,'rich_editing','true'),(157,6,'syntax_highlighting','true'),(158,6,'comment_shortcuts','false'),(159,6,'admin_color','fresh'),(160,6,'use_ssl','0'),(161,6,'show_admin_bar_front','true'),(162,6,'locale',''),(163,6,'wp_capabilities','a:1:{s:6:\"editor\";b:1;}'),(164,6,'wp_user_level','7'),(165,6,'dismissed_wp_pointers','wp496_privacy'),(166,6,'default_password_nag',''),(171,3,'hesh_surveyNoticeDismissedB',''),(172,3,'hesh_theme','wordpress'),(173,3,'hesh_tabSize','4'),(174,3,'hesh_lineWrapping','1'),(175,3,'hesh_lineNumbers','1'),(176,3,'hesh_fontSize','13'),(177,3,'hesh_lineHeight','1.5'),(178,3,'hesh_matchBrackets',''),(179,3,'hesh_matchTags',''),(180,3,'hesh_highlightSelectionMatches',''),(181,3,'hesh_autoCloseTags',''),(182,3,'hesh_autoCloseBrackets',''),(183,3,'hesh_foldGutter',''),(184,3,'hesh_scrollbarStyle',''),(185,3,'hesh_keyMap','default'),(189,4,'wp_media_library_mode','list'),(193,5,'wpseo_title',''),(194,5,'wpseo_metadesc',''),(195,5,'wpseo_noindex_author',''),(196,5,'wpseo_content_analysis_disable',''),(197,5,'wpseo_keyword_analysis_disable',''),(198,5,'facebook',''),(199,5,'instagram',''),(200,5,'linkedin',''),(201,5,'myspace',''),(202,5,'pinterest',''),(203,5,'soundcloud',''),(204,5,'tumblr',''),(205,5,'twitter',''),(206,5,'youtube',''),(207,5,'wikipedia',''),(210,6,'_yoast_wpseo_profile_updated','1574095155'),(211,6,'wpseo_title',''),(212,6,'wpseo_metadesc',''),(213,6,'wpseo_noindex_author',''),(214,6,'wpseo_content_analysis_disable',''),(215,6,'wpseo_keyword_analysis_disable',''),(216,6,'facebook',''),(217,6,'instagram',''),(218,6,'linkedin',''),(219,6,'myspace',''),(220,6,'pinterest',''),(221,6,'soundcloud',''),(222,6,'tumblr',''),(223,6,'twitter',''),(224,6,'youtube',''),(225,6,'wikipedia',''),(227,3,'closedpostboxes_post','a:1:{i:0;s:17:\"wpd_reset_ratings\";}'),(228,3,'metaboxhidden_post','a:0:{}'),(229,3,'closedpostboxes_page','a:0:{}'),(230,3,'metaboxhidden_page','a:0:{}'),(232,3,'closedpostboxes_dashboard','a:0:{}'),(233,3,'metaboxhidden_dashboard','a:2:{i:0;s:19:\"health_check_status\";i:1;s:24:\"tinypng_dashboard_widget\";}'),(234,4,'tcb_edit_key','79be0025e9'),(235,3,'tcb_edit_key','d4d7bbc79c'),(237,2,'default_password_nag',''),(239,2,'tcb_edit_key','2b92392558'),(240,2,'meta-box-order_post','a:4:{s:6:\"normal\";s:10:\"wpseo_meta\";s:15:\"acf_after_title\";s:0:\"\";s:4:\"side\";s:0:\"\";s:8:\"advanced\";s:0:\"\";}'),(276,4,'closedpostboxes_dashboard','a:0:{}'),(277,4,'metaboxhidden_dashboard','a:0:{}'),(282,4,'exactmetrics_user_preferences','a:5:{s:5:\"width\";s:7:\"regular\";s:8:\"interval\";i:30;s:7:\"compact\";b:0;s:7:\"reports\";a:4:{s:8:\"overview\";a:4:{s:8:\"toppages\";b:0;s:11:\"newvsreturn\";b:0;s:7:\"devices\";b:0;s:8:\"overview\";b:1;}s:9:\"publisher\";a:5:{s:12:\"landingpages\";b:0;s:9:\"exitpages\";b:0;s:13:\"outboundlinks\";b:0;s:14:\"affiliatelinks\";b:0;s:13:\"downloadlinks\";b:0;}s:9:\"ecommerce\";a:6:{s:7:\"infobox\";b:0;s:8:\"products\";b:0;s:11:\"conversions\";b:0;s:9:\"addremove\";b:0;s:4:\"days\";b:0;s:8:\"sessions\";b:0;}s:11:\"notice30day\";b:0;}s:11:\"notice30day\";i:1589984695;}'),(283,4,'closedpostboxes_post','a:0:{}'),(284,4,'metaboxhidden_post','a:1:{i:0;s:22:\"yoast_internal_linking\";}'),(314,4,'closedpostboxes_acf-field-group','a:0:{}'),(315,4,'metaboxhidden_acf-field-group','a:1:{i:0;s:7:\"slugdiv\";}'),(318,9,'nickname','jakub'),(319,9,'first_name','Jakub'),(320,9,'last_name',''),(321,9,'description',''),(322,9,'rich_editing','true'),(323,9,'syntax_highlighting','true'),(324,9,'comment_shortcuts','false'),(325,9,'admin_color','fresh'),(326,9,'use_ssl','0'),(327,9,'show_admin_bar_front','true'),(328,9,'locale',''),(329,9,'wp_capabilities','a:1:{s:6:\"editor\";b:1;}'),(330,9,'wp_user_level','7'),(331,9,'_yoast_wpseo_profile_updated','1602895238'),(332,9,'dismissed_wp_pointers',''),(333,9,'facebook',''),(334,9,'instagram',''),(335,9,'linkedin',''),(336,9,'myspace',''),(337,9,'pinterest',''),(338,9,'soundcloud',''),(339,9,'tumblr',''),(340,9,'twitter',''),(341,9,'youtube',''),(342,9,'wikipedia',''),(369,9,'meta-box-order_post','a:4:{s:4:\"side\";s:33:\"wpseo_meta,yoast_internal_linking\";s:15:\"acf_after_title\";s:0:\"\";s:6:\"normal\";s:0:\"\";s:8:\"advanced\";s:0:\"\";}'),(370,9,'closedpostboxes_post','a:2:{i:0;s:10:\"wpseo_meta\";i:1;s:22:\"yoast_internal_linking\";}'),(371,9,'metaboxhidden_post','a:0:{}'),(372,9,'wp_user-settings','libraryContent=browse&mfold=o'),(373,9,'wp_user-settings-time','1607644625'),(469,4,'wp_dashboard_quick_press_last_post_id','4522'),(470,4,'community-events-location','a:1:{s:2:\"ip\";s:20:\"2607:fea8:12e0:ce7::\";}'),(479,9,'wp_dashboard_quick_press_last_post_id','4195'),(480,9,'community-events-location','a:1:{s:2:\"ip\";s:20:\"2607:fea8:12e0:ce7::\";}'),(481,5,'swp_twitter',''),(482,5,'swp_fb_author',''),(483,14,'nickname','adriana'),(484,14,'first_name','Adriana'),(485,14,'last_name','Villela'),(486,14,'description',''),(487,14,'rich_editing','true'),(488,14,'syntax_highlighting','true'),(489,14,'comment_shortcuts','false'),(490,14,'admin_color','fresh'),(491,14,'use_ssl','0'),(492,14,'show_admin_bar_front','true'),(493,14,'locale',''),(494,14,'wp_capabilities','a:1:{s:6:\"author\";b:1;}'),(495,14,'wp_user_level','2'),(496,14,'_yoast_wpseo_profile_updated','1618939984'),(497,14,'dismissed_wp_pointers',''),(498,14,'facebook',''),(499,14,'instagram',''),(500,14,'linkedin',''),(501,14,'myspace',''),(502,14,'pinterest',''),(503,14,'soundcloud',''),(504,14,'tumblr',''),(505,14,'twitter',''),(506,14,'youtube',''),(507,14,'wikipedia',''),(508,15,'nickname','cerberus'),(509,15,'first_name','Diego AKA cerberus'),(510,15,'last_name',''),(511,15,'description',''),(512,15,'rich_editing','true'),(513,15,'syntax_highlighting','true'),(514,15,'comment_shortcuts','false'),(515,15,'admin_color','fresh'),(516,15,'use_ssl','0'),(517,15,'show_admin_bar_front','true'),(518,15,'locale',''),(519,15,'wp_capabilities','a:1:{s:6:\"editor\";b:1;}'),(520,15,'wp_user_level','7'),(521,15,'_yoast_wpseo_profile_updated','1619128207'),(522,15,'dismissed_wp_pointers',''),(523,15,'facebook',''),(524,15,'instagram',''),(525,15,'linkedin',''),(526,15,'myspace',''),(527,15,'pinterest',''),(528,15,'soundcloud',''),(529,15,'tumblr',''),(530,15,'twitter',''),(531,15,'youtube',''),(532,15,'wikipedia',''),(534,15,'wp_dashboard_quick_press_last_post_id','2824'),(535,15,'community-events-location','a:1:{s:2:\"ip\";s:13:\"131.196.236.0\";}'),(536,5,'wp_dashboard_quick_press_last_post_id','2832'),(537,5,'community-events-location','a:1:{s:2:\"ip\";s:10:\"99.251.1.0\";}'),(538,5,'meta-box-order_page','a:4:{s:6:\"normal\";s:10:\"wpseo_meta\";s:8:\"advanced\";s:28:\"acf-group_608361234448e,hefo\";s:15:\"acf_after_title\";s:0:\"\";s:4:\"side\";s:40:\"wpd_reset_ratings,yoast_internal_linking\";}'),(540,4,'manageedit-pagecolumnshidden','a:5:{i:0;s:10:\"categories\";i:1;s:8:\"comments\";i:2;s:14:\"swSocialShares\";i:3;s:14:\"wpseo-metadesc\";i:4;s:13:\"wpseo-focuskw\";}'),(545,16,'nickname','aman'),(546,16,'first_name','Aman'),(547,16,'last_name',''),(548,16,'description',''),(549,16,'rich_editing','true'),(550,16,'syntax_highlighting','true'),(551,16,'comment_shortcuts','false'),(552,16,'admin_color','fresh'),(553,16,'use_ssl','0'),(554,16,'show_admin_bar_front','true'),(555,16,'locale',''),(556,16,'wp_capabilities','a:1:{s:6:\"editor\";b:1;}'),(557,16,'wp_user_level','7'),(558,16,'_yoast_wpseo_profile_updated','1622668554'),(559,16,'dismissed_wp_pointers',''),(560,16,'facebook',''),(561,16,'instagram',''),(562,16,'linkedin',''),(563,16,'myspace',''),(564,16,'pinterest',''),(565,16,'soundcloud',''),(566,16,'tumblr',''),(567,16,'twitter',''),(568,16,'youtube',''),(569,16,'wikipedia',''),(571,16,'wp_dashboard_quick_press_last_post_id','3122'),(572,16,'community-events-location','a:1:{s:2:\"ip\";s:11:\"99.245.70.0\";}'),(573,4,'wpcf7_hide_welcome_panel_on','a:2:{i:0;s:3:\"5.4\";i:1;s:3:\"5.5\";}'),(574,6,'swp_twitter',''),(575,6,'swp_fb_author',''),(577,6,'wp_dashboard_quick_press_last_post_id','3242'),(578,6,'community-events-location','a:1:{s:2:\"ip\";s:10:\"99.247.3.0\";}'),(579,16,'wp_user-settings','libraryContent=browse'),(580,16,'wp_user-settings-time','1622746268'),(582,4,'leadin_email','robert@translucentcomputing.com'),(584,4,'rocket_boxes','a:4:{i:0;s:36:\"rocket_warning_wp_config_permissions\";i:1;s:24:\"rocket_activation_notice\";i:2;s:35:\"rocket_warning_htaccess_permissions\";i:3;s:34:\"rocket_warning_plugin_modification\";}'),(585,4,'wp_yoast_notifications','a:2:{i:0;a:2:{s:7:\"message\";s:296:\"

Because of a change in your permalink structure, some of your SEO data needs to be reprocessed.

We estimate this will take a couple of minutes.

Start SEO data optimization\";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:\"4\";s:10:\"user_login\";s:6:\"robert\";s:9:\"user_pass\";s:34:\"$P$B0eBtum.YNJsu5q9j2svsWW5xUi8e4/\";s:13:\"user_nicename\";s:6:\"robert\";s:10:\"user_email\";s:16:\"robert@localhost\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2019-03-08 23:21:55\";s:19:\"user_activation_key\";s:45:\"1552087315:$P$B4qwdRhutl9bomFcGXCky6fsENlzfZ.\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:14:\"Robert Golabek\";}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:118:{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:12:\"access_zopim\";b:1;s:11:\"tve-use-tcm\";b:1;s:10:\"tve-use-td\";b:1;s:12:\"tve-edit-cpt\";b:1;s:18:\"read_wpdiscuz_form\";b:1;s:19:\"read_wpdiscuz_forms\";b:1;s:18:\"edit_wpdiscuz_form\";b:1;s:19:\"edit_wpdiscuz_forms\";b:1;s:26:\"edit_others_wpdiscuz_forms\";b:1;s:29:\"edit_published_wpdiscuz_forms\";b:1;s:22:\"publish_wpdiscuz_forms\";b:1;s:20:\"delete_wpdiscuz_form\";b:1;s:21:\"delete_wpdiscuz_forms\";b:1;s:28:\"delete_others_wpdiscuz_forms\";b:1;s:29:\"delete_private_wpdiscuz_forms\";b:1;s:31:\"delete_published_wpdiscuz_forms\";b:1;s:20:\"wpseo_manage_options\";b:1;s:10:\"copy_posts\";b:1;s:9:\"read_post\";b:1;s:24:\"read_private_sgpb_popups\";b:1;s:15:\"edit_sgpb_popup\";b:1;s:16:\"edit_sgpb_popups\";b:1;s:23:\"edit_others_sgpb_popups\";b:1;s:26:\"edit_published_sgpb_popups\";b:1;s:19:\"publish_sgpb_popups\";b:1;s:18:\"delete_sgpb_popups\";b:1;s:25:\"delete_others_sgpb_popups\";b:1;s:26:\"delete_private_sgpb_popups\";b:1;s:25:\"delete_private_sgpb_popup\";b:1;s:28:\"delete_published_sgpb_popups\";b:1;s:19:\"sgpb_manage_options\";b:1;s:18:\"manage_popup_terms\";b:1;s:29:\"manage_popup_categories_terms\";b:1;s:23:\"vxcf_hubspot_read_feeds\";b:1;s:23:\"vxcf_hubspot_edit_feeds\";b:1;s:22:\"vxcf_hubspot_read_logs\";b:1;s:26:\"vxcf_hubspot_read_settings\";b:1;s:26:\"vxcf_hubspot_edit_settings\";b:1;s:24:\"vxcf_hubspot_send_to_crm\";b:1;s:24:\"vxcf_hubspot_export_logs\";b:1;s:25:\"vxcf_hubspot_read_license\";b:1;s:22:\"vxcf_hubspot_uninstall\";b:1;s:23:\"vx_crmperks_view_addons\";b:1;s:23:\"vx_crmperks_edit_addons\";b:1;s:22:\"wpseo_manage_redirects\";b:1;s:21:\"rocket_manage_options\";b:1;s:18:\"rocket_purge_cache\";b:1;s:18:\"rocket_purge_posts\";b:1;s:18:\"rocket_purge_terms\";b:1;s:18:\"rocket_purge_users\";b:1;s:20:\"rocket_purge_opcache\";b:1;s:29:\"rocket_purge_cloudflare_cache\";b:1;s:25:\"rocket_purge_sucuri_cache\";b:1;s:20:\"rocket_preload_cache\";b:1;s:30:\"rocket_regenerate_critical_css\";b:1;s:24:\"rocket_remove_unused_css\";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:328:\"You are not receiving updates or support! Fix this problem by adding this site and enabling Yoast SEO Premium for it in My Yoast.\";s:7:\"options\";a:10:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:31:\"wpseo-dismiss-yoast-seo-premium\";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:6:\"robert\";s:9:\"user_pass\";s:34:\"$P$BVhd27KCLVfQ3sYIRFzYxx4zEhdG/f0\";s:13:\"user_nicename\";s:6:\"robert\";s:10:\"user_email\";s:0:\"\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2019-03-08 23:21:55\";s:19:\"user_activation_key\";s:45:\"1655578549:$P$BhcfmOd.LZkzW7/8a1RPJ9H9yW1cJM.\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:14:\"Robert Golabek\";}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:118:{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:12:\"access_zopim\";b:1;s:11:\"tve-use-tcm\";b:1;s:10:\"tve-use-td\";b:1;s:12:\"tve-edit-cpt\";b:1;s:18:\"read_wpdiscuz_form\";b:1;s:19:\"read_wpdiscuz_forms\";b:1;s:18:\"edit_wpdiscuz_form\";b:1;s:19:\"edit_wpdiscuz_forms\";b:1;s:26:\"edit_others_wpdiscuz_forms\";b:1;s:29:\"edit_published_wpdiscuz_forms\";b:1;s:22:\"publish_wpdiscuz_forms\";b:1;s:20:\"delete_wpdiscuz_form\";b:1;s:21:\"delete_wpdiscuz_forms\";b:1;s:28:\"delete_others_wpdiscuz_forms\";b:1;s:29:\"delete_private_wpdiscuz_forms\";b:1;s:31:\"delete_published_wpdiscuz_forms\";b:1;s:20:\"wpseo_manage_options\";b:1;s:10:\"copy_posts\";b:1;s:9:\"read_post\";b:1;s:24:\"read_private_sgpb_popups\";b:1;s:15:\"edit_sgpb_popup\";b:1;s:16:\"edit_sgpb_popups\";b:1;s:23:\"edit_others_sgpb_popups\";b:1;s:26:\"edit_published_sgpb_popups\";b:1;s:19:\"publish_sgpb_popups\";b:1;s:18:\"delete_sgpb_popups\";b:1;s:25:\"delete_others_sgpb_popups\";b:1;s:26:\"delete_private_sgpb_popups\";b:1;s:25:\"delete_private_sgpb_popup\";b:1;s:28:\"delete_published_sgpb_popups\";b:1;s:19:\"sgpb_manage_options\";b:1;s:18:\"manage_popup_terms\";b:1;s:29:\"manage_popup_categories_terms\";b:1;s:23:\"vxcf_hubspot_read_feeds\";b:1;s:23:\"vxcf_hubspot_edit_feeds\";b:1;s:22:\"vxcf_hubspot_read_logs\";b:1;s:26:\"vxcf_hubspot_read_settings\";b:1;s:26:\"vxcf_hubspot_edit_settings\";b:1;s:24:\"vxcf_hubspot_send_to_crm\";b:1;s:24:\"vxcf_hubspot_export_logs\";b:1;s:25:\"vxcf_hubspot_read_license\";b:1;s:22:\"vxcf_hubspot_uninstall\";b:1;s:23:\"vx_crmperks_view_addons\";b:1;s:23:\"vx_crmperks_edit_addons\";b:1;s:22:\"wpseo_manage_redirects\";b:1;s:21:\"rocket_manage_options\";b:1;s:18:\"rocket_purge_cache\";b:1;s:18:\"rocket_purge_posts\";b:1;s:18:\"rocket_purge_terms\";b:1;s:18:\"rocket_purge_users\";b:1;s:20:\"rocket_purge_opcache\";b:1;s:29:\"rocket_purge_cloudflare_cache\";b:1;s:25:\"rocket_purge_sucuri_cache\";b:1;s:20:\"rocket_preload_cache\";b:1;s:30:\"rocket_regenerate_critical_css\";b:1;s:24:\"rocket_remove_unused_css\";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\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(586,3,'wp_yoast_notifications','a:2:{i:0;a:2:{s:7:\"message\";s:300:\"

Because of a change in your home URL setting, some of your SEO data needs to be reprocessed.

We estimate this will take a couple of minutes.

Start SEO data optimization\";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:6:\"patryk\";s:9:\"user_pass\";s:34:\"$P$B8b199uNVavX6l6eKztwiXtMN9F2yH/\";s:13:\"user_nicename\";s:6:\"patryk\";s:10:\"user_email\";s:16:\"patryk@localhost\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2019-03-08 23:21:13\";s:19:\"user_activation_key\";s:45:\"1552087273:$P$B5nip5WILjGsv86p0TnUxo7TJaDR05/\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:14:\"Patryk Golabek\";}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:107:{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:12:\"access_zopim\";b:1;s:11:\"tve-use-tcm\";b:1;s:10:\"tve-use-td\";b:1;s:12:\"tve-edit-cpt\";b:1;s:18:\"read_wpdiscuz_form\";b:1;s:19:\"read_wpdiscuz_forms\";b:1;s:18:\"edit_wpdiscuz_form\";b:1;s:19:\"edit_wpdiscuz_forms\";b:1;s:26:\"edit_others_wpdiscuz_forms\";b:1;s:29:\"edit_published_wpdiscuz_forms\";b:1;s:22:\"publish_wpdiscuz_forms\";b:1;s:20:\"delete_wpdiscuz_form\";b:1;s:21:\"delete_wpdiscuz_forms\";b:1;s:28:\"delete_others_wpdiscuz_forms\";b:1;s:29:\"delete_private_wpdiscuz_forms\";b:1;s:31:\"delete_published_wpdiscuz_forms\";b:1;s:20:\"wpseo_manage_options\";b:1;s:10:\"copy_posts\";b:1;s:9:\"read_post\";b:1;s:24:\"read_private_sgpb_popups\";b:1;s:15:\"edit_sgpb_popup\";b:1;s:16:\"edit_sgpb_popups\";b:1;s:23:\"edit_others_sgpb_popups\";b:1;s:26:\"edit_published_sgpb_popups\";b:1;s:19:\"publish_sgpb_popups\";b:1;s:18:\"delete_sgpb_popups\";b:1;s:25:\"delete_others_sgpb_popups\";b:1;s:26:\"delete_private_sgpb_popups\";b:1;s:25:\"delete_private_sgpb_popup\";b:1;s:28:\"delete_published_sgpb_popups\";b:1;s:19:\"sgpb_manage_options\";b:1;s:18:\"manage_popup_terms\";b:1;s:29:\"manage_popup_categories_terms\";b:1;s:23:\"vxcf_hubspot_read_feeds\";b:1;s:23:\"vxcf_hubspot_edit_feeds\";b:1;s:22:\"vxcf_hubspot_read_logs\";b:1;s:26:\"vxcf_hubspot_read_settings\";b:1;s:26:\"vxcf_hubspot_edit_settings\";b:1;s:24:\"vxcf_hubspot_send_to_crm\";b:1;s:24:\"vxcf_hubspot_export_logs\";b:1;s:25:\"vxcf_hubspot_read_license\";b:1;s:22:\"vxcf_hubspot_uninstall\";b:1;s:23:\"vx_crmperks_view_addons\";b:1;s:23:\"vx_crmperks_edit_addons\";b:1;s:22:\"wpseo_manage_redirects\";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:315:\"You are not receiving updates or support! Fix this problem by adding this site and enabling Yoast SEO Premium for it in My Yoast.\";s:7:\"options\";a:10:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:31:\"wpseo-dismiss-yoast-seo-premium\";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:6:\"patryk\";s:9:\"user_pass\";s:34:\"$P$B8b199uNVavX6l6eKztwiXtMN9F2yH/\";s:13:\"user_nicename\";s:6:\"patryk\";s:10:\"user_email\";s:16:\"patryk@localhost\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2019-03-08 23:21:13\";s:19:\"user_activation_key\";s:45:\"1552087273:$P$B5nip5WILjGsv86p0TnUxo7TJaDR05/\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:14:\"Patryk Golabek\";}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:118:{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:12:\"access_zopim\";b:1;s:11:\"tve-use-tcm\";b:1;s:10:\"tve-use-td\";b:1;s:12:\"tve-edit-cpt\";b:1;s:18:\"read_wpdiscuz_form\";b:1;s:19:\"read_wpdiscuz_forms\";b:1;s:18:\"edit_wpdiscuz_form\";b:1;s:19:\"edit_wpdiscuz_forms\";b:1;s:26:\"edit_others_wpdiscuz_forms\";b:1;s:29:\"edit_published_wpdiscuz_forms\";b:1;s:22:\"publish_wpdiscuz_forms\";b:1;s:20:\"delete_wpdiscuz_form\";b:1;s:21:\"delete_wpdiscuz_forms\";b:1;s:28:\"delete_others_wpdiscuz_forms\";b:1;s:29:\"delete_private_wpdiscuz_forms\";b:1;s:31:\"delete_published_wpdiscuz_forms\";b:1;s:20:\"wpseo_manage_options\";b:1;s:10:\"copy_posts\";b:1;s:9:\"read_post\";b:1;s:24:\"read_private_sgpb_popups\";b:1;s:15:\"edit_sgpb_popup\";b:1;s:16:\"edit_sgpb_popups\";b:1;s:23:\"edit_others_sgpb_popups\";b:1;s:26:\"edit_published_sgpb_popups\";b:1;s:19:\"publish_sgpb_popups\";b:1;s:18:\"delete_sgpb_popups\";b:1;s:25:\"delete_others_sgpb_popups\";b:1;s:26:\"delete_private_sgpb_popups\";b:1;s:25:\"delete_private_sgpb_popup\";b:1;s:28:\"delete_published_sgpb_popups\";b:1;s:19:\"sgpb_manage_options\";b:1;s:18:\"manage_popup_terms\";b:1;s:29:\"manage_popup_categories_terms\";b:1;s:23:\"vxcf_hubspot_read_feeds\";b:1;s:23:\"vxcf_hubspot_edit_feeds\";b:1;s:22:\"vxcf_hubspot_read_logs\";b:1;s:26:\"vxcf_hubspot_read_settings\";b:1;s:26:\"vxcf_hubspot_edit_settings\";b:1;s:24:\"vxcf_hubspot_send_to_crm\";b:1;s:24:\"vxcf_hubspot_export_logs\";b:1;s:25:\"vxcf_hubspot_read_license\";b:1;s:22:\"vxcf_hubspot_uninstall\";b:1;s:23:\"vx_crmperks_view_addons\";b:1;s:23:\"vx_crmperks_edit_addons\";b:1;s:22:\"wpseo_manage_redirects\";b:1;s:21:\"rocket_manage_options\";b:1;s:18:\"rocket_purge_cache\";b:1;s:18:\"rocket_purge_posts\";b:1;s:18:\"rocket_purge_terms\";b:1;s:18:\"rocket_purge_users\";b:1;s:20:\"rocket_purge_opcache\";b:1;s:29:\"rocket_purge_cloudflare_cache\";b:1;s:25:\"rocket_purge_sucuri_cache\";b:1;s:20:\"rocket_preload_cache\";b:1;s:30:\"rocket_regenerate_critical_css\";b:1;s:24:\"rocket_remove_unused_css\";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\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(587,3,'community-events-location','a:1:{s:2:\"ip\";s:10:\"72.39.95.0\";}'),(588,3,'_imagify_ignore_notices','a:2:{i:0;s:6:\"rating\";i:1;s:9:\"grid-view\";}'),(589,3,'manageedit-postcolumnshidden','a:0:{}'),(590,3,'edit_post_per_page','20'),(598,4,'closedpostboxes_','a:1:{i:0;s:23:\"acf-group_610b427e78c72\";}'),(599,4,'metaboxhidden_','a:0:{}'),(600,4,'meta-box-order_','a:4:{s:6:\"normal\";s:10:\"wpseo_meta\";s:8:\"advanced\";s:28:\"acf-group_610b427e78c72,hefo\";s:4:\"side\";s:48:\"wpd_reset_ratings,rocket_post_exclude,ao_metabox\";s:15:\"acf_after_title\";s:0:\"\";}'),(601,4,'rocketcdn_dismiss_notice','1'),(603,17,'nickname','kamil'),(604,17,'first_name','Kamil'),(605,17,'last_name',''),(606,17,'description',''),(607,17,'rich_editing','true'),(608,17,'syntax_highlighting','true'),(609,17,'comment_shortcuts','false'),(610,17,'admin_color','fresh'),(611,17,'use_ssl','0'),(612,17,'show_admin_bar_front','true'),(613,17,'locale',''),(614,17,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(615,17,'wp_user_level','10'),(616,17,'dismissed_wp_pointers','custom_admin_pointers13_4_3_new_items,custom_admin_pointers14_0_1_1_new_items,custom_admin_pointers14_0_1_4_new_items,custom_admin_pointers14_1_new_items,custom_admin_pointers14_1_1_new_items'),(617,17,'_yoast_wpseo_profile_updated','1656551355'),(618,17,'facebook',''),(619,17,'instagram',''),(620,17,'linkedin',''),(621,17,'myspace',''),(622,17,'pinterest',''),(623,17,'soundcloud',''),(624,17,'tumblr',''),(625,17,'twitter',''),(626,17,'youtube',''),(627,17,'wikipedia','robert'),(629,17,'wp_dashboard_quick_press_last_post_id','4509'),(631,17,'community-events-location','a:1:{s:2:\"ip\";s:13:\"142.113.221.0\";}'),(632,17,'rocket_boxes','a:2:{i:0;s:34:\"rocket_warning_plugin_modification\";i:1;s:35:\"rocket_warning_htaccess_permissions\";}'),(633,17,'rocketcdn_dismiss_notice','1'),(635,17,'wp_yoast_notifications','a:2:{i:0;a:2:{s:7:\"message\";s:293:\"

Because of a change in your home URL setting, some of your SEO data needs to be reprocessed.

We estimate this will take a couple of minutes.

Start SEO data optimization\";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:2:\"17\";s:10:\"user_login\";s:5:\"kamil\";s:9:\"user_pass\";s:34:\"$P$BRYwdBnfSDPAYoVv3fHvsi/kiQdfUx0\";s:13:\"user_nicename\";s:5:\"kamil\";s:10:\"user_email\";s:30:\"kamil@translucentcomputing.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2021-09-03 22:51:17\";s:19:\"user_activation_key\";s:45:\"1630709477:$P$Byd1jKK9uj8K2GsJbWc1sZ0OQVxCVq1\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:5:\"Kamil\";}s:2:\"ID\";i:17;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:118:{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:12:\"access_zopim\";b:1;s:11:\"tve-use-tcm\";b:1;s:10:\"tve-use-td\";b:1;s:12:\"tve-edit-cpt\";b:1;s:18:\"read_wpdiscuz_form\";b:1;s:19:\"read_wpdiscuz_forms\";b:1;s:18:\"edit_wpdiscuz_form\";b:1;s:19:\"edit_wpdiscuz_forms\";b:1;s:26:\"edit_others_wpdiscuz_forms\";b:1;s:29:\"edit_published_wpdiscuz_forms\";b:1;s:22:\"publish_wpdiscuz_forms\";b:1;s:20:\"delete_wpdiscuz_form\";b:1;s:21:\"delete_wpdiscuz_forms\";b:1;s:28:\"delete_others_wpdiscuz_forms\";b:1;s:29:\"delete_private_wpdiscuz_forms\";b:1;s:31:\"delete_published_wpdiscuz_forms\";b:1;s:20:\"wpseo_manage_options\";b:1;s:10:\"copy_posts\";b:1;s:9:\"read_post\";b:1;s:24:\"read_private_sgpb_popups\";b:1;s:15:\"edit_sgpb_popup\";b:1;s:16:\"edit_sgpb_popups\";b:1;s:23:\"edit_others_sgpb_popups\";b:1;s:26:\"edit_published_sgpb_popups\";b:1;s:19:\"publish_sgpb_popups\";b:1;s:18:\"delete_sgpb_popups\";b:1;s:25:\"delete_others_sgpb_popups\";b:1;s:26:\"delete_private_sgpb_popups\";b:1;s:25:\"delete_private_sgpb_popup\";b:1;s:28:\"delete_published_sgpb_popups\";b:1;s:19:\"sgpb_manage_options\";b:1;s:18:\"manage_popup_terms\";b:1;s:29:\"manage_popup_categories_terms\";b:1;s:23:\"vxcf_hubspot_read_feeds\";b:1;s:23:\"vxcf_hubspot_edit_feeds\";b:1;s:22:\"vxcf_hubspot_read_logs\";b:1;s:26:\"vxcf_hubspot_read_settings\";b:1;s:26:\"vxcf_hubspot_edit_settings\";b:1;s:24:\"vxcf_hubspot_send_to_crm\";b:1;s:24:\"vxcf_hubspot_export_logs\";b:1;s:25:\"vxcf_hubspot_read_license\";b:1;s:22:\"vxcf_hubspot_uninstall\";b:1;s:23:\"vx_crmperks_view_addons\";b:1;s:23:\"vx_crmperks_edit_addons\";b:1;s:22:\"wpseo_manage_redirects\";b:1;s:21:\"rocket_manage_options\";b:1;s:18:\"rocket_purge_cache\";b:1;s:18:\"rocket_purge_posts\";b:1;s:18:\"rocket_purge_terms\";b:1;s:18:\"rocket_purge_users\";b:1;s:20:\"rocket_purge_opcache\";b:1;s:29:\"rocket_purge_cloudflare_cache\";b:1;s:25:\"rocket_purge_sucuri_cache\";b:1;s:20:\"rocket_preload_cache\";b:1;s:30:\"rocket_regenerate_critical_css\";b:1;s:24:\"rocket_remove_unused_css\";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:315:\"You are not receiving updates or support! Fix this problem by adding this site and enabling Yoast SEO Premium for it in My Yoast.\";s:7:\"options\";a:10:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:31:\"wpseo-dismiss-yoast-seo-premium\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:2:\"17\";s:10:\"user_login\";s:5:\"kamil\";s:9:\"user_pass\";s:34:\"$P$BE.JocGOe/x8cZWPpqdt/zm.VuQodG/\";s:13:\"user_nicename\";s:5:\"kamil\";s:10:\"user_email\";s:30:\"kamil@translucentcomputing.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2021-09-03 22:51:17\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:5:\"Kamil\";}s:2:\"ID\";i:17;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:118:{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:12:\"access_zopim\";b:1;s:11:\"tve-use-tcm\";b:1;s:10:\"tve-use-td\";b:1;s:12:\"tve-edit-cpt\";b:1;s:18:\"read_wpdiscuz_form\";b:1;s:19:\"read_wpdiscuz_forms\";b:1;s:18:\"edit_wpdiscuz_form\";b:1;s:19:\"edit_wpdiscuz_forms\";b:1;s:26:\"edit_others_wpdiscuz_forms\";b:1;s:29:\"edit_published_wpdiscuz_forms\";b:1;s:22:\"publish_wpdiscuz_forms\";b:1;s:20:\"delete_wpdiscuz_form\";b:1;s:21:\"delete_wpdiscuz_forms\";b:1;s:28:\"delete_others_wpdiscuz_forms\";b:1;s:29:\"delete_private_wpdiscuz_forms\";b:1;s:31:\"delete_published_wpdiscuz_forms\";b:1;s:20:\"wpseo_manage_options\";b:1;s:10:\"copy_posts\";b:1;s:9:\"read_post\";b:1;s:24:\"read_private_sgpb_popups\";b:1;s:15:\"edit_sgpb_popup\";b:1;s:16:\"edit_sgpb_popups\";b:1;s:23:\"edit_others_sgpb_popups\";b:1;s:26:\"edit_published_sgpb_popups\";b:1;s:19:\"publish_sgpb_popups\";b:1;s:18:\"delete_sgpb_popups\";b:1;s:25:\"delete_others_sgpb_popups\";b:1;s:26:\"delete_private_sgpb_popups\";b:1;s:25:\"delete_private_sgpb_popup\";b:1;s:28:\"delete_published_sgpb_popups\";b:1;s:19:\"sgpb_manage_options\";b:1;s:18:\"manage_popup_terms\";b:1;s:29:\"manage_popup_categories_terms\";b:1;s:23:\"vxcf_hubspot_read_feeds\";b:1;s:23:\"vxcf_hubspot_edit_feeds\";b:1;s:22:\"vxcf_hubspot_read_logs\";b:1;s:26:\"vxcf_hubspot_read_settings\";b:1;s:26:\"vxcf_hubspot_edit_settings\";b:1;s:24:\"vxcf_hubspot_send_to_crm\";b:1;s:24:\"vxcf_hubspot_export_logs\";b:1;s:25:\"vxcf_hubspot_read_license\";b:1;s:22:\"vxcf_hubspot_uninstall\";b:1;s:23:\"vx_crmperks_view_addons\";b:1;s:23:\"vx_crmperks_edit_addons\";b:1;s:22:\"wpseo_manage_redirects\";b:1;s:21:\"rocket_manage_options\";b:1;s:18:\"rocket_purge_cache\";b:1;s:18:\"rocket_purge_posts\";b:1;s:18:\"rocket_purge_terms\";b:1;s:18:\"rocket_purge_users\";b:1;s:20:\"rocket_purge_opcache\";b:1;s:29:\"rocket_purge_cloudflare_cache\";b:1;s:25:\"rocket_purge_sucuri_cache\";b:1;s:20:\"rocket_preload_cache\";b:1;s:30:\"rocket_regenerate_critical_css\";b:1;s:24:\"rocket_remove_unused_css\";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\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(636,17,'wp_media_library_mode','list'),(637,17,'_imagify_ignore_notices','a:1:{i:0;s:6:\"rating\";}'),(638,17,'wp_user-settings','libraryContent=browse&editor=html'),(639,17,'wp_user-settings-time','1657119995'),(640,4,'duplicator_pro_created_format','1'),(735,20,'nickname','Nate'),(736,20,'first_name',''),(737,20,'last_name',''),(738,20,'description',''),(739,20,'rich_editing','true'),(740,20,'syntax_highlighting','true'),(741,20,'comment_shortcuts','false'),(742,20,'admin_color','fresh'),(743,20,'use_ssl','0'),(744,20,'show_admin_bar_front','true'),(745,20,'locale',''),(746,20,'wp_capabilities','a:0:{}'),(747,20,'wp_user_level','0'),(748,20,'dismissed_wp_pointers','custom_admin_pointers14_0_1_4_new_items,custom_admin_pointers14_1_new_items,custom_admin_pointers14_1_1_new_items,theme_editor_notice'),(749,20,'_yoast_wpseo_profile_updated','1661305625'),(750,20,'facebook',''),(751,20,'instagram',''),(752,20,'linkedin',''),(753,20,'myspace',''),(754,20,'pinterest',''),(755,20,'soundcloud',''),(756,20,'tumblr',''),(757,20,'twitter',''),(758,20,'youtube',''),(759,20,'wikipedia',''),(761,20,'wp_dashboard_quick_press_last_post_id','4516'),(762,20,'wp_yoast_notifications','a:2:{i:0;a:2:{s:7:\"message\";s:293:\"

Because of a change in your home URL setting, some of your SEO data needs to be reprocessed.

We estimate this will take a couple of minutes.

Start SEO data optimization\";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:2:\"20\";s:10:\"user_login\";s:4:\"Nate\";s:9:\"user_pass\";s:34:\"$P$B9OgeQfxGrc8DX2iGF8/AdcYMkSRta.\";s:13:\"user_nicename\";s:4:\"nate\";s:10:\"user_email\";s:15:\"nate@iskpro.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2022-04-29 15:10:35\";s:19:\"user_activation_key\";s:45:\"1651245035:$P$B9qPd3AL.LgC/zypRdZJsrAip/7hvB0\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:4:\"Nate\";}s:2:\"ID\";i:20;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:118:{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:12:\"access_zopim\";b:1;s:11:\"tve-use-tcm\";b:1;s:10:\"tve-use-td\";b:1;s:12:\"tve-edit-cpt\";b:1;s:18:\"read_wpdiscuz_form\";b:1;s:19:\"read_wpdiscuz_forms\";b:1;s:18:\"edit_wpdiscuz_form\";b:1;s:19:\"edit_wpdiscuz_forms\";b:1;s:26:\"edit_others_wpdiscuz_forms\";b:1;s:29:\"edit_published_wpdiscuz_forms\";b:1;s:22:\"publish_wpdiscuz_forms\";b:1;s:20:\"delete_wpdiscuz_form\";b:1;s:21:\"delete_wpdiscuz_forms\";b:1;s:28:\"delete_others_wpdiscuz_forms\";b:1;s:29:\"delete_private_wpdiscuz_forms\";b:1;s:31:\"delete_published_wpdiscuz_forms\";b:1;s:20:\"wpseo_manage_options\";b:1;s:10:\"copy_posts\";b:1;s:9:\"read_post\";b:1;s:24:\"read_private_sgpb_popups\";b:1;s:15:\"edit_sgpb_popup\";b:1;s:16:\"edit_sgpb_popups\";b:1;s:23:\"edit_others_sgpb_popups\";b:1;s:26:\"edit_published_sgpb_popups\";b:1;s:19:\"publish_sgpb_popups\";b:1;s:18:\"delete_sgpb_popups\";b:1;s:25:\"delete_others_sgpb_popups\";b:1;s:26:\"delete_private_sgpb_popups\";b:1;s:25:\"delete_private_sgpb_popup\";b:1;s:28:\"delete_published_sgpb_popups\";b:1;s:19:\"sgpb_manage_options\";b:1;s:18:\"manage_popup_terms\";b:1;s:29:\"manage_popup_categories_terms\";b:1;s:23:\"vxcf_hubspot_read_feeds\";b:1;s:23:\"vxcf_hubspot_edit_feeds\";b:1;s:22:\"vxcf_hubspot_read_logs\";b:1;s:26:\"vxcf_hubspot_read_settings\";b:1;s:26:\"vxcf_hubspot_edit_settings\";b:1;s:24:\"vxcf_hubspot_send_to_crm\";b:1;s:24:\"vxcf_hubspot_export_logs\";b:1;s:25:\"vxcf_hubspot_read_license\";b:1;s:22:\"vxcf_hubspot_uninstall\";b:1;s:23:\"vx_crmperks_view_addons\";b:1;s:23:\"vx_crmperks_edit_addons\";b:1;s:22:\"wpseo_manage_redirects\";b:1;s:21:\"rocket_manage_options\";b:1;s:18:\"rocket_purge_cache\";b:1;s:18:\"rocket_purge_posts\";b:1;s:18:\"rocket_purge_terms\";b:1;s:18:\"rocket_purge_users\";b:1;s:20:\"rocket_purge_opcache\";b:1;s:29:\"rocket_purge_cloudflare_cache\";b:1;s:25:\"rocket_purge_sucuri_cache\";b:1;s:20:\"rocket_preload_cache\";b:1;s:30:\"rocket_regenerate_critical_css\";b:1;s:24:\"rocket_remove_unused_css\";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:315:\"You are not receiving updates or support! Fix this problem by adding this site and enabling Yoast SEO Premium for it in My Yoast.\";s:7:\"options\";a:10:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:31:\"wpseo-dismiss-yoast-seo-premium\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:2:\"20\";s:10:\"user_login\";s:4:\"Nate\";s:9:\"user_pass\";s:34:\"$P$B9OgeQfxGrc8DX2iGF8/AdcYMkSRta.\";s:13:\"user_nicename\";s:4:\"nate\";s:10:\"user_email\";s:15:\"nate@iskpro.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2022-04-29 15:10:35\";s:19:\"user_activation_key\";s:45:\"1651245035:$P$B9qPd3AL.LgC/zypRdZJsrAip/7hvB0\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:4:\"Nate\";}s:2:\"ID\";i:20;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:118:{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:12:\"access_zopim\";b:1;s:11:\"tve-use-tcm\";b:1;s:10:\"tve-use-td\";b:1;s:12:\"tve-edit-cpt\";b:1;s:18:\"read_wpdiscuz_form\";b:1;s:19:\"read_wpdiscuz_forms\";b:1;s:18:\"edit_wpdiscuz_form\";b:1;s:19:\"edit_wpdiscuz_forms\";b:1;s:26:\"edit_others_wpdiscuz_forms\";b:1;s:29:\"edit_published_wpdiscuz_forms\";b:1;s:22:\"publish_wpdiscuz_forms\";b:1;s:20:\"delete_wpdiscuz_form\";b:1;s:21:\"delete_wpdiscuz_forms\";b:1;s:28:\"delete_others_wpdiscuz_forms\";b:1;s:29:\"delete_private_wpdiscuz_forms\";b:1;s:31:\"delete_published_wpdiscuz_forms\";b:1;s:20:\"wpseo_manage_options\";b:1;s:10:\"copy_posts\";b:1;s:9:\"read_post\";b:1;s:24:\"read_private_sgpb_popups\";b:1;s:15:\"edit_sgpb_popup\";b:1;s:16:\"edit_sgpb_popups\";b:1;s:23:\"edit_others_sgpb_popups\";b:1;s:26:\"edit_published_sgpb_popups\";b:1;s:19:\"publish_sgpb_popups\";b:1;s:18:\"delete_sgpb_popups\";b:1;s:25:\"delete_others_sgpb_popups\";b:1;s:26:\"delete_private_sgpb_popups\";b:1;s:25:\"delete_private_sgpb_popup\";b:1;s:28:\"delete_published_sgpb_popups\";b:1;s:19:\"sgpb_manage_options\";b:1;s:18:\"manage_popup_terms\";b:1;s:29:\"manage_popup_categories_terms\";b:1;s:23:\"vxcf_hubspot_read_feeds\";b:1;s:23:\"vxcf_hubspot_edit_feeds\";b:1;s:22:\"vxcf_hubspot_read_logs\";b:1;s:26:\"vxcf_hubspot_read_settings\";b:1;s:26:\"vxcf_hubspot_edit_settings\";b:1;s:24:\"vxcf_hubspot_send_to_crm\";b:1;s:24:\"vxcf_hubspot_export_logs\";b:1;s:25:\"vxcf_hubspot_read_license\";b:1;s:22:\"vxcf_hubspot_uninstall\";b:1;s:23:\"vx_crmperks_view_addons\";b:1;s:23:\"vx_crmperks_edit_addons\";b:1;s:22:\"wpseo_manage_redirects\";b:1;s:21:\"rocket_manage_options\";b:1;s:18:\"rocket_purge_cache\";b:1;s:18:\"rocket_purge_posts\";b:1;s:18:\"rocket_purge_terms\";b:1;s:18:\"rocket_purge_users\";b:1;s:20:\"rocket_purge_opcache\";b:1;s:29:\"rocket_purge_cloudflare_cache\";b:1;s:25:\"rocket_purge_sucuri_cache\";b:1;s:20:\"rocket_preload_cache\";b:1;s:30:\"rocket_regenerate_critical_css\";b:1;s:24:\"rocket_remove_unused_css\";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\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(763,20,'community-events-location','a:1:{s:2:\"ip\";s:13:\"103.254.207.0\";}'),(764,20,'rocket_boxes','a:1:{i:0;s:35:\"rocket_warning_htaccess_permissions\";}'),(765,20,'duplicator_pro_created_format','1'),(766,20,'wp_user-settings','libraryContent=browse&editor=html'),(767,20,'wp_user-settings-time','1657899199'),(768,20,'nav_menu_recently_edited','1063'),(769,20,'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\";}'),(770,20,'metaboxhidden_nav-menus','a:2:{i:0;s:26:\"add-post-type-popupbuilder\";i:1;s:12:\"add-post_tag\";}'),(771,20,'closedpostboxes_theme-settings_page_acf-options-header','a:0:{}'),(772,20,'metaboxhidden_theme-settings_page_acf-options-header','a:0:{}'),(773,20,'closedpostboxes_page','a:11:{i:0;s:11:\"categorydiv\";i:1;s:16:\"tagsdiv-post_tag\";i:2;s:25:\"slider_revolution_metabox\";i:3;s:12:\"postimagediv\";i:4;s:17:\"wpd_reset_ratings\";i:5;s:22:\"yoast_internal_linking\";i:6;s:10:\"wpseo_meta\";i:7;s:12:\"revisionsdiv\";i:8;s:11:\"commentsdiv\";i:9;s:7:\"slugdiv\";i:10;s:4:\"hefo\";}'),(774,20,'metaboxhidden_page','a:2:{i:0;s:16:\"commentstatusdiv\";i:1;s:9:\"authordiv\";}'),(775,20,'leadin_review_banner_last_call','1654825731'),(776,4,'screen_layout_page','2'),(777,4,'leadin_review_banner_last_call','1655754706'),(778,17,'leadin_review_banner_last_call','1655396370'),(779,17,'meta-box-order_page','a:4:{s:15:\"acf_after_title\";s:0:\"\";s:4:\"side\";s:163:\"submitdiv,categorydiv,tagsdiv-post_tag,pageparentdiv,rocket_post_exclude,slider_revolution_metabox,ao_metabox,postimagediv,wpd_reset_ratings,yoast_internal_linking\";s:6:\"normal\";s:70:\"wpseo_meta,revisionsdiv,commentstatusdiv,commentsdiv,slugdiv,authordiv\";s:8:\"advanced\";s:28:\"acf-group_6254f3abceebc,hefo\";}'),(780,17,'screen_layout_page','2'),(781,20,'closedpostboxes_dashboard','a:7:{i:0;s:26:\"sendgrid_statistics_widget\";i:1;s:21:\"dashboard_site_health\";i:2;s:19:\"dashboard_right_now\";i:3;s:18:\"dashboard_activity\";i:4;s:24:\"wpseo-dashboard-overview\";i:5;s:21:\"dashboard_quick_press\";i:6;s:17:\"dashboard_primary\";}'),(782,20,'metaboxhidden_dashboard','a:0:{}'),(783,20,'_imagify_ignore_notices','a:2:{i:0;s:9:\"grid-view\";i:1;s:6:\"rating\";}'),(784,17,'nav_menu_recently_edited','1068'),(785,17,'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\";}'),(786,17,'metaboxhidden_nav-menus','a:2:{i:0;s:26:\"add-post-type-popupbuilder\";i:1;s:12:\"add-post_tag\";}'),(787,20,'rocketcdn_dismiss_notice','1'),(788,1,'updraftcentral_login_key','a:3:{s:3:\"key\";s:64:\"84f913ccfcb302c8af684a4320f15cf51a0270890cffb7cde3b9e371e1922e4e\";s:7:\"created\";i:1655831322;s:12:\"redirect_url\";s:35:\"https://translucent.local/wp-admin/\";}'),(789,17,'default_password_nag',''),(790,17,'swp_twitter',''),(791,17,'swp_fb_author',''),(792,17,'wpseo_title',''),(793,17,'wpseo_metadesc',''),(794,17,'wpseo_noindex_author',''),(795,17,'wpseo_content_analysis_disable',''),(796,17,'wpseo_keyword_analysis_disable',''),(797,17,'wpseo_user_schema','a:0:{}'),(798,20,'wp_media_library_mode','list'),(799,20,'swp_twitter',''),(800,20,'swp_fb_author',''),(801,20,'wpseo_title',''),(802,20,'wpseo_metadesc',''),(803,20,'wpseo_noindex_author',''),(804,20,'wpseo_content_analysis_disable',''),(805,20,'wpseo_keyword_analysis_disable',''),(806,20,'wpseo_user_schema','a:0:{}'),(807,21,'nickname','phong'),(808,21,'first_name','Phong'),(809,21,'last_name',''),(810,21,'description',''),(811,21,'rich_editing','true'),(812,21,'syntax_highlighting','true'),(813,21,'comment_shortcuts','false'),(814,21,'admin_color','fresh'),(815,21,'use_ssl','0'),(816,21,'show_admin_bar_front','true'),(817,21,'locale',''),(818,21,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(819,21,'wp_user_level','10'),(820,21,'_yoast_wpseo_profile_updated','1661519850'),(821,21,'dismissed_wp_pointers','custom_admin_pointers14_1_1_new_items,custom_admin_pointers14_1_2_new_items'),(822,21,'facebook',''),(823,21,'instagram',''),(824,21,'linkedin',''),(825,21,'myspace',''),(826,21,'pinterest',''),(827,21,'soundcloud',''),(828,21,'tumblr',''),(829,21,'twitter',''),(830,21,'youtube',''),(831,21,'wikipedia',''),(833,21,'wp_dashboard_quick_press_last_post_id','4724'),(834,21,'community-events-location','a:1:{s:2:\"ip\";s:20:\"2402:800:6375:10ce::\";}'),(835,21,'swp_twitter',''),(836,21,'swp_fb_author',''),(837,21,'wpseo_title',''),(838,21,'wpseo_metadesc',''),(839,21,'wpseo_noindex_author',''),(840,21,'wpseo_content_analysis_disable',''),(841,21,'wpseo_keyword_analysis_disable',''),(842,21,'wpseo_user_schema','a:0:{}'),(844,21,'wp_user-settings','mfold=o&libraryContent=browse&editor=tinymce&hidetb=1'),(845,21,'wp_user-settings-time','1663320584'),(846,21,'session_tokens','a:10:{s:64:\"bf87f87d742db0119642a0134a5fe3a618a1cd0eaf81a0fc94f3fea4ec07315f\";a:4:{s:10:\"expiration\";i:1663578300;s:2:\"ip\";s:9:\"127.0.0.1\";s:2:\"ua\";s:105:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36\";s:5:\"login\";i:1662368700;}s:64:\"869376b8a55538d797faf5dfeb9fd3a44359cd95562755a7e75202fa1a449e48\";a:4:{s:10:\"expiration\";i:1664345320;s:2:\"ip\";s:14:\"172.70.206.221\";s:2:\"ua\";s:101:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36\";s:5:\"login\";i:1663135720;}s:64:\"47c96909a39fee74bf49fabeaa1e75f1d47e66eb839d3a581c12840fc87cfd2b\";a:4:{s:10:\"expiration\";i:1663321247;s:2:\"ip\";s:13:\"172.70.206.49\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36\";s:5:\"login\";i:1663148447;}s:64:\"ec056f943a40d3ff03f180772252cdc6dbfea92670e1c208df7bf3caa7a3638f\";a:4:{s:10:\"expiration\";i:1663345012;s:2:\"ip\";s:14:\"162.158.178.61\";s:2:\"ua\";s:101:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36\";s:5:\"login\";i:1663172212;}s:64:\"0cb2db5bcb6ae7bf13b375d2c424eb4664fed0e753ad84c2ebd7933e44e1caf7\";a:4:{s:10:\"expiration\";i:1663383946;s:2:\"ip\";s:14:\"172.70.214.191\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36\";s:5:\"login\";i:1663211146;}s:64:\"9528b575d8f52489ea1d4cd7772cf1bccf6ffef9918b12586b70f40154c4d8d7\";a:4:{s:10:\"expiration\";i:1663396829;s:2:\"ip\";s:14:\"162.158.171.26\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36\";s:5:\"login\";i:1663224029;}s:64:\"3dfa1a25f6592eaf6d7bf36aca6db197f3bbf65f73228758de0195a6604bddf9\";a:4:{s:10:\"expiration\";i:1663473338;s:2:\"ip\";s:14:\"162.158.179.70\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36\";s:5:\"login\";i:1663300538;}s:64:\"ad9d67646d2fb2eed0faf713df0d3dbc3f7eac233af4b5792759d032173ae888\";a:4:{s:10:\"expiration\";i:1663476131;s:2:\"ip\";s:12:\"172.69.34.22\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1663303331;}s:64:\"586031b018cabae82709e2f6c23545b7e46710cef1390f67f3442ae3d2c4907f\";a:4:{s:10:\"expiration\";i:1663476165;s:2:\"ip\";s:12:\"172.69.34.22\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1663303365;}s:64:\"5b3cc15f4090d01b839d7f330b3b9d5ae68170b4945890e25fa52df2de1ebafc\";a:4:{s:10:\"expiration\";i:1663476217;s:2:\"ip\";s:12:\"172.69.34.22\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36\";s:5:\"login\";i:1663303417;}}'),(847,21,'meta-box-order_page','a:4:{s:15:\"acf_after_title\";s:0:\"\";s:4:\"side\";s:132:\"categorydiv,tagsdiv-post_tag,pageparentdiv,submitdiv,slider_revolution_metabox,postimagediv,wpd_reset_ratings,yoast_internal_linking\";s:6:\"normal\";s:70:\"wpseo_meta,commentstatusdiv,commentsdiv,slugdiv,authordiv,revisionsdiv\";s:8:\"advanced\";s:28:\"acf-group_5c488d4420660,hefo\";}'),(848,21,'screen_layout_page','2'),(849,21,'closedpostboxes_page','a:0:{}'),(850,21,'metaboxhidden_page','a:6:{i:0;s:11:\"categorydiv\";i:1;s:16:\"tagsdiv-post_tag\";i:2;s:12:\"postimagediv\";i:3;s:16:\"commentstatusdiv\";i:4;s:7:\"slugdiv\";i:5;s:9:\"authordiv\";}'),(852,21,'nav_menu_recently_edited','1063'),(853,21,'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\";}'),(854,21,'metaboxhidden_nav-menus','a:2:{i:0;s:26:\"add-post-type-popupbuilder\";i:1;s:12:\"add-post_tag\";}'),(855,21,'wp_yoast_notifications','a:2:{i:0;a:2:{s:7:\"message\";s:301:\"

Because of a change in your home URL setting, some of your SEO data needs to be reprocessed.

We estimate this will take a couple of minutes.

Start SEO data optimization\";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:2:\"21\";s:10:\"user_login\";s:5:\"phong\";s:9:\"user_pass\";s:34:\"$P$BddCGzGWgFNtBegvGbfhEH9Z/PMS6H1\";s:13:\"user_nicename\";s:5:\"phong\";s:10:\"user_email\";s:18:\"phong@aimfirst.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2022-08-24 01:48:25\";s:19:\"user_activation_key\";s:45:\"1661305706:$P$B3gMHTlKU2sctg38a3vh6upDrkE1tY0\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:5:\"Phong\";}s:2:\"ID\";i:21;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:118:{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:12:\"access_zopim\";b:1;s:11:\"tve-use-tcm\";b:1;s:10:\"tve-use-td\";b:1;s:12:\"tve-edit-cpt\";b:1;s:18:\"read_wpdiscuz_form\";b:1;s:19:\"read_wpdiscuz_forms\";b:1;s:18:\"edit_wpdiscuz_form\";b:1;s:19:\"edit_wpdiscuz_forms\";b:1;s:26:\"edit_others_wpdiscuz_forms\";b:1;s:29:\"edit_published_wpdiscuz_forms\";b:1;s:22:\"publish_wpdiscuz_forms\";b:1;s:20:\"delete_wpdiscuz_form\";b:1;s:21:\"delete_wpdiscuz_forms\";b:1;s:28:\"delete_others_wpdiscuz_forms\";b:1;s:29:\"delete_private_wpdiscuz_forms\";b:1;s:31:\"delete_published_wpdiscuz_forms\";b:1;s:10:\"copy_posts\";b:1;s:9:\"read_post\";b:1;s:24:\"read_private_sgpb_popups\";b:1;s:15:\"edit_sgpb_popup\";b:1;s:16:\"edit_sgpb_popups\";b:1;s:23:\"edit_others_sgpb_popups\";b:1;s:26:\"edit_published_sgpb_popups\";b:1;s:19:\"publish_sgpb_popups\";b:1;s:18:\"delete_sgpb_popups\";b:1;s:25:\"delete_others_sgpb_popups\";b:1;s:26:\"delete_private_sgpb_popups\";b:1;s:25:\"delete_private_sgpb_popup\";b:1;s:28:\"delete_published_sgpb_popups\";b:1;s:19:\"sgpb_manage_options\";b:1;s:18:\"manage_popup_terms\";b:1;s:29:\"manage_popup_categories_terms\";b:1;s:23:\"vxcf_hubspot_read_feeds\";b:1;s:23:\"vxcf_hubspot_edit_feeds\";b:1;s:22:\"vxcf_hubspot_read_logs\";b:1;s:26:\"vxcf_hubspot_read_settings\";b:1;s:26:\"vxcf_hubspot_edit_settings\";b:1;s:24:\"vxcf_hubspot_send_to_crm\";b:1;s:24:\"vxcf_hubspot_export_logs\";b:1;s:25:\"vxcf_hubspot_read_license\";b:1;s:22:\"vxcf_hubspot_uninstall\";b:1;s:23:\"vx_crmperks_view_addons\";b:1;s:23:\"vx_crmperks_edit_addons\";b:1;s:21:\"rocket_manage_options\";b:1;s:18:\"rocket_purge_cache\";b:1;s:18:\"rocket_purge_posts\";b:1;s:18:\"rocket_purge_terms\";b:1;s:18:\"rocket_purge_users\";b:1;s:20:\"rocket_purge_opcache\";b:1;s:29:\"rocket_purge_cloudflare_cache\";b:1;s:25:\"rocket_purge_sucuri_cache\";b:1;s:20:\"rocket_preload_cache\";b:1;s:30:\"rocket_regenerate_critical_css\";b:1;s:24:\"rocket_remove_unused_css\";b:1;s:20:\"wpseo_manage_options\";b:1;s:22:\"wpseo_manage_redirects\";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:315:\"You are not receiving updates or support! Fix this problem by adding this site and enabling Yoast SEO Premium for it in My Yoast.\";s:7:\"options\";a:10:{s:4:\"type\";s:5:\"error\";s:2:\"id\";s:31:\"wpseo-dismiss-yoast-seo-premium\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:2:\"21\";s:10:\"user_login\";s:5:\"phong\";s:9:\"user_pass\";s:34:\"$P$BddCGzGWgFNtBegvGbfhEH9Z/PMS6H1\";s:13:\"user_nicename\";s:5:\"phong\";s:10:\"user_email\";s:18:\"phong@aimfirst.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2022-08-24 01:48:25\";s:19:\"user_activation_key\";s:45:\"1661305706:$P$B3gMHTlKU2sctg38a3vh6upDrkE1tY0\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:5:\"Phong\";}s:2:\"ID\";i:21;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:118:{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:12:\"access_zopim\";b:1;s:11:\"tve-use-tcm\";b:1;s:10:\"tve-use-td\";b:1;s:12:\"tve-edit-cpt\";b:1;s:18:\"read_wpdiscuz_form\";b:1;s:19:\"read_wpdiscuz_forms\";b:1;s:18:\"edit_wpdiscuz_form\";b:1;s:19:\"edit_wpdiscuz_forms\";b:1;s:26:\"edit_others_wpdiscuz_forms\";b:1;s:29:\"edit_published_wpdiscuz_forms\";b:1;s:22:\"publish_wpdiscuz_forms\";b:1;s:20:\"delete_wpdiscuz_form\";b:1;s:21:\"delete_wpdiscuz_forms\";b:1;s:28:\"delete_others_wpdiscuz_forms\";b:1;s:29:\"delete_private_wpdiscuz_forms\";b:1;s:31:\"delete_published_wpdiscuz_forms\";b:1;s:10:\"copy_posts\";b:1;s:9:\"read_post\";b:1;s:24:\"read_private_sgpb_popups\";b:1;s:15:\"edit_sgpb_popup\";b:1;s:16:\"edit_sgpb_popups\";b:1;s:23:\"edit_others_sgpb_popups\";b:1;s:26:\"edit_published_sgpb_popups\";b:1;s:19:\"publish_sgpb_popups\";b:1;s:18:\"delete_sgpb_popups\";b:1;s:25:\"delete_others_sgpb_popups\";b:1;s:26:\"delete_private_sgpb_popups\";b:1;s:25:\"delete_private_sgpb_popup\";b:1;s:28:\"delete_published_sgpb_popups\";b:1;s:19:\"sgpb_manage_options\";b:1;s:18:\"manage_popup_terms\";b:1;s:29:\"manage_popup_categories_terms\";b:1;s:23:\"vxcf_hubspot_read_feeds\";b:1;s:23:\"vxcf_hubspot_edit_feeds\";b:1;s:22:\"vxcf_hubspot_read_logs\";b:1;s:26:\"vxcf_hubspot_read_settings\";b:1;s:26:\"vxcf_hubspot_edit_settings\";b:1;s:24:\"vxcf_hubspot_send_to_crm\";b:1;s:24:\"vxcf_hubspot_export_logs\";b:1;s:25:\"vxcf_hubspot_read_license\";b:1;s:22:\"vxcf_hubspot_uninstall\";b:1;s:23:\"vx_crmperks_view_addons\";b:1;s:23:\"vx_crmperks_edit_addons\";b:1;s:21:\"rocket_manage_options\";b:1;s:18:\"rocket_purge_cache\";b:1;s:18:\"rocket_purge_posts\";b:1;s:18:\"rocket_purge_terms\";b:1;s:18:\"rocket_purge_users\";b:1;s:20:\"rocket_purge_opcache\";b:1;s:29:\"rocket_purge_cloudflare_cache\";b:1;s:25:\"rocket_purge_sucuri_cache\";b:1;s:20:\"rocket_preload_cache\";b:1;s:30:\"rocket_regenerate_critical_css\";b:1;s:24:\"rocket_remove_unused_css\";b:1;s:20:\"wpseo_manage_options\";b:1;s:22:\"wpseo_manage_redirects\";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\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'); /*!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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT 0, `display_name` varchar(250) COLLATE utf8mb4_unicode_ci 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=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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 (2,'stacee','$P$BUFgnWJTd62Ck/et6JeKvocNojBLLi0','stacee','stacee@localhost','','2019-03-08 23:20:09','',0,'Stacee Golabek'),(3,'patryk','$P$B8b199uNVavX6l6eKztwiXtMN9F2yH/','patryk','patryk@localhost','','2019-03-08 23:21:13','1552087273:$P$B5nip5WILjGsv86p0TnUxo7TJaDR05/',0,'Patryk Golabek'),(4,'robert','$P$BVhd27KCLVfQ3sYIRFzYxx4zEhdG/f0','robert','','','2019-03-08 23:21:55','1655578549:$P$BhcfmOd.LZkzW7/8a1RPJ9H9yW1cJM.',0,'Robert Golabek'),(5,'brad','$P$BNcVi3j6OvZRBBs.nlRIbLJHj8QbNc/','brad','bsankar@translucentcomputing.com','','2019-03-08 23:23:34','',0,'Brad Sankar'),(6,'mlagowski','$P$BINY4KSrmF7G7se04AIbkYRJM9vYKD.','mlagowski','mlagowski@translucentcomputing.com','','2019-03-25 15:51:19','',0,'Mike Lagowski'),(9,'jakub','$P$BVhd27KCLVfQ3sYIRFzYxx4zEhdG/f0','jakub','jakubgolaszewski96@gmail.com','','2020-10-17 00:40:38','1602895238:$P$B6IIcKU3btnU.JIYVhz09J8/awxK5a1',0,'Jakub'),(14,'adriana','$P$BuS6gPZUTTCDd4MF34.skS0KyrzxfG1','adriana','adriana@dzerolabs.io','https://medium.com/@dee_zero','2021-04-20 17:33:04','1618939984:$P$B1DS7LErV1fDq9uBaB2647jL7Cx3Rg0',0,'Adriana Villela'),(15,'cerberus','$P$BZS7jFhfG1ygXONsUNVuCT6yfYOxhl1','cerberus','bruno@wearecerberus.com.br','','2021-04-22 21:50:07','1619128207:$P$BVEuEMrc0he.VitfWKtSsyDkqEZNzm1',0,'Diego AKA cerberus'),(16,'aman','$P$BG0wUOzFIjzpn9te7C6c7B/OVXyXtz/','aman','asingh@translucentcomputing.com','','2021-06-02 21:15:54','1622668554:$P$BarKKZzjwqLuFEKX0fxGMvwVRYacfY1',0,'Aman'),(17,'kamil','$P$BE.JocGOe/x8cZWPpqdt/zm.VuQodG/','kamil','kamil@translucentcomputing.com','','2021-09-03 22:51:17','',0,'Kamil'),(20,'Nate','$P$B9OgeQfxGrc8DX2iGF8/AdcYMkSRta.','nate','nate@iskpro.com','','2022-04-29 15:10:35','1651245035:$P$B9qPd3AL.LgC/zypRdZJsrAip/7hvB0',0,'Nate'),(21,'phong','$P$BddCGzGWgFNtBegvGbfhEH9Z/PMS6H1','phong','phong@aimfirst.com','','2022-08-24 01:48:25','1661305706:$P$B3gMHTlKU2sctg38a3vh6upDrkE1tY0',0,'Phong'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_vxcf_hubspot` -- DROP TABLE IF EXISTS `wp_vxcf_hubspot`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_vxcf_hubspot` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `form_id` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL, `account` mediumint(8) NOT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `sort` mediumint(8) NOT NULL DEFAULT 0, `name` varchar(240) COLLATE utf8mb4_unicode_ci NOT NULL, `object` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `meta` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `time` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `form_id` (`form_id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_vxcf_hubspot` -- LOCK TABLES `wp_vxcf_hubspot` WRITE; /*!40000 ALTER TABLE `wp_vxcf_hubspot` DISABLE KEYS */; INSERT INTO `wp_vxcf_hubspot` VALUES (1,'cf_8',1,1,0,'TC Contact Page Form','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','{\"fields\":{\"firstname\":{\"name\":\"firstname\",\"label\":\"First name\",\"type\":\"text\",\"req\":\"true\"},\"lastname\":{\"name\":\"lastname\",\"label\":\"Last name\",\"type\":\"text\",\"req\":\"true\"},\"email\":{\"name\":\"email\",\"label\":\"Email\",\"type\":\"text\",\"req\":\"true\"},\"phone\":{\"name\":\"phone\",\"label\":\"Phone number\",\"type\":\"text\",\"req\":\"\",\"is_custom\":\"true\"},\"message\":{\"name\":\"message\",\"label\":\"Message\",\"type\":\"textarea\",\"req\":\"\"},\"vx_consent\":{\"name\":\"vx_consent\",\"label\":\"GDPR Consent\",\"type\":\"boolean\"},\"vx_url\":{\"name\":\"vx_url\",\"label\":\"Page URL\",\"type\":\"URL\"},\"vx_title\":{\"name\":\"vx_title\",\"label\":\"Page Title\",\"type\":\"text\"},\"vx_camp_id\":{\"name\":\"vx_camp_id\",\"label\":\"SFDC Campaign ID\",\"type\":\"text\"},\"vx_webinar_key\":{\"name\":\"vx_webinar_key\",\"label\":\"GoToWebinar key\",\"type\":\"text\"},\"vx_ip\":{\"name\":\"vx_ip\",\"label\":\"IP Address\",\"type\":\"text\"},\"skipValidation\":{\"name\":\"skipValidation\",\"label\":\"Skip Validation\",\"type\":\"boolean\",\"eg\":\"0 or 1\",\"options\":[{\"label\":\"True\",\"value\":\"1\"},{\"label\":\"False\",\"value\":\"0\"}]}}}','{\"map\":{\"firstname\":{\"type\":\"\",\"value\":\"\",\"field\":\"first-name\"},\"lastname\":{\"type\":\"\",\"value\":\"\",\"field\":\"last-name\"},\"email\":{\"type\":\"\",\"value\":\"\",\"field\":\"email\"},\"message\":{\"type\":\"\",\"value\":\"\",\"field\":\"message\"},\"phone\":{\"type\":\"\",\"value\":\"\",\"field\":\"phone\"}},\"filters\":{\"1\":{\"1\":{\"field\":\"\",\"op\":\"is\",\"value\":\"\"}}},\"note_val\":\"\",\"object_company\":\"\",\"object_contact\":\"\"}','2021-06-02 21:09:14'),(2,'cf_2556',1,1,0,'Landing page top form','vxf_55513920-4838-4fa4-bb54-941ae6f36a04','{\"fields\":{\"full_name\":{\"name\":\"full_name\",\"label\":\"Full name\",\"type\":\"text\",\"req\":\"\",\"is_custom\":\"true\"},\"email\":{\"name\":\"email\",\"label\":\"Email\",\"type\":\"text\",\"req\":\"true\"},\"message\":{\"name\":\"message\",\"label\":\"Message\",\"type\":\"textarea\",\"req\":\"\"},\"vx_consent\":{\"name\":\"vx_consent\",\"label\":\"GDPR Consent\",\"type\":\"boolean\"},\"vx_url\":{\"name\":\"vx_url\",\"label\":\"Page URL\",\"type\":\"URL\"},\"vx_title\":{\"name\":\"vx_title\",\"label\":\"Page Title\",\"type\":\"text\"},\"vx_camp_id\":{\"name\":\"vx_camp_id\",\"label\":\"SFDC Campaign ID\",\"type\":\"text\"},\"vx_webinar_key\":{\"name\":\"vx_webinar_key\",\"label\":\"GoToWebinar key\",\"type\":\"text\"},\"vx_ip\":{\"name\":\"vx_ip\",\"label\":\"IP Address\",\"type\":\"text\"},\"skipValidation\":{\"name\":\"skipValidation\",\"label\":\"Skip Validation\",\"type\":\"boolean\",\"eg\":\"0 or 1\",\"options\":[{\"label\":\"True\",\"value\":\"1\"},{\"label\":\"False\",\"value\":\"0\"}]}}}','{\"map\":{\"email\":{\"type\":\"\",\"value\":\"\",\"field\":\"email\"},\"message\":{\"type\":\"\",\"value\":\"\",\"field\":\"message\"},\"full_name\":{\"type\":\"\",\"value\":\"\",\"field\":\"fullname\"}},\"filters\":{\"1\":{\"1\":{\"field\":\"\",\"op\":\"is\",\"value\":\"\"}}},\"note_val\":\"\",\"object_company\":\"\",\"object_contact\":\"\"}','2021-06-02 21:08:23'),(3,'cf_2555',1,1,0,'Landing Page Bottom Contact Form','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','{\"fields\":{\"firstname\":{\"name\":\"firstname\",\"label\":\"First name\",\"type\":\"text\",\"req\":\"\"},\"lastname\":{\"name\":\"lastname\",\"label\":\"Last name\",\"type\":\"text\",\"req\":\"\"},\"email\":{\"name\":\"email\",\"label\":\"Email\",\"type\":\"text\",\"req\":\"true\"},\"phone\":{\"name\":\"phone\",\"label\":\"Phone number\",\"type\":\"text\",\"req\":\"\",\"is_custom\":\"true\"},\"company\":{\"name\":\"company\",\"label\":\"Company name\",\"type\":\"text\",\"req\":\"\"},\"message\":{\"name\":\"message\",\"label\":\"Message\",\"type\":\"textarea\",\"req\":\"\"},\"vx_consent\":{\"name\":\"vx_consent\",\"label\":\"GDPR Consent\",\"type\":\"boolean\"},\"vx_url\":{\"name\":\"vx_url\",\"label\":\"Page URL\",\"type\":\"URL\"},\"vx_title\":{\"name\":\"vx_title\",\"label\":\"Page Title\",\"type\":\"text\"},\"vx_camp_id\":{\"name\":\"vx_camp_id\",\"label\":\"SFDC Campaign ID\",\"type\":\"text\"},\"vx_webinar_key\":{\"name\":\"vx_webinar_key\",\"label\":\"GoToWebinar key\",\"type\":\"text\"},\"vx_ip\":{\"name\":\"vx_ip\",\"label\":\"IP Address\",\"type\":\"text\"},\"skipValidation\":{\"name\":\"skipValidation\",\"label\":\"Skip Validation\",\"type\":\"boolean\",\"eg\":\"0 or 1\",\"options\":[{\"label\":\"True\",\"value\":\"1\"},{\"label\":\"False\",\"value\":\"0\"}]}}}','{\"map\":{\"email\":{\"type\":\"\",\"value\":\"\",\"field\":\"email\"},\"firstname\":{\"type\":\"\",\"value\":\"\",\"field\":\"first-name\"},\"lastname\":{\"type\":\"\",\"value\":\"\",\"field\":\"last-name\"},\"company\":{\"type\":\"\",\"value\":\"\",\"field\":\"company\"},\"message\":{\"type\":\"\",\"value\":\"\",\"field\":\"message\"},\"phone\":{\"type\":\"\",\"value\":\"\",\"field\":\"phone\"}},\"filters\":{\"1\":{\"1\":{\"field\":\"\",\"op\":\"is\",\"value\":\"\"}}},\"note_val\":\"\",\"object_company\":\"\",\"object_contact\":\"\"}','2021-06-02 21:08:48'),(4,'cf_3123',1,1,0,'Main Website Bottom Contact Form','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','{\"fields\":{\"firstname\":{\"name\":\"firstname\",\"label\":\"First name\",\"type\":\"text\",\"req\":\"\"},\"lastname\":{\"name\":\"lastname\",\"label\":\"Last name\",\"type\":\"text\",\"req\":\"\"},\"email\":{\"name\":\"email\",\"label\":\"Email\",\"type\":\"text\",\"req\":\"true\"},\"phone\":{\"name\":\"phone\",\"label\":\"Phone number\",\"type\":\"text\",\"req\":\"\",\"is_custom\":\"true\"},\"company\":{\"name\":\"company\",\"label\":\"Company name\",\"type\":\"text\",\"req\":\"\"},\"message\":{\"name\":\"message\",\"label\":\"Message\",\"type\":\"textarea\",\"req\":\"\"},\"vx_consent\":{\"name\":\"vx_consent\",\"label\":\"GDPR Consent\",\"type\":\"boolean\"},\"vx_url\":{\"name\":\"vx_url\",\"label\":\"Page URL\",\"type\":\"URL\"},\"vx_title\":{\"name\":\"vx_title\",\"label\":\"Page Title\",\"type\":\"text\"},\"vx_camp_id\":{\"name\":\"vx_camp_id\",\"label\":\"SFDC Campaign ID\",\"type\":\"text\"},\"vx_webinar_key\":{\"name\":\"vx_webinar_key\",\"label\":\"GoToWebinar key\",\"type\":\"text\"},\"vx_ip\":{\"name\":\"vx_ip\",\"label\":\"IP Address\",\"type\":\"text\"},\"skipValidation\":{\"name\":\"skipValidation\",\"label\":\"Skip Validation\",\"type\":\"boolean\",\"eg\":\"0 or 1\",\"options\":[{\"label\":\"True\",\"value\":\"1\"},{\"label\":\"False\",\"value\":\"0\"}]}}}','{\"map\":{\"email\":{\"type\":\"\",\"value\":\"\",\"field\":\"email\"},\"firstname\":{\"type\":\"\",\"value\":\"\",\"field\":\"first-name\"},\"lastname\":{\"type\":\"\",\"value\":\"\",\"field\":\"last-name\"},\"phone\":{\"type\":\"\",\"value\":\"\",\"field\":\"phone\"},\"company\":{\"type\":\"\",\"value\":\"\",\"field\":\"company\"},\"message\":{\"type\":\"\",\"value\":\"\",\"field\":\"message\"}},\"filters\":{\"1\":{\"1\":{\"field\":\"\",\"op\":\"is\",\"value\":\"\"}}},\"note_val\":\"\",\"object_company\":\"\",\"object_contact\":\"\"}','2021-06-02 21:31:58'),(5,'cf_3586',1,1,0,'Main Website Bottom Contact Form v2','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','{\"fields\":{\"firstname\":{\"name\":\"firstname\",\"label\":\"First name\",\"type\":\"text\",\"req\":\"\"},\"lastname\":{\"name\":\"lastname\",\"label\":\"Last name\",\"type\":\"text\",\"req\":\"\"},\"email\":{\"name\":\"email\",\"label\":\"Email\",\"type\":\"text\",\"req\":\"true\"},\"phone\":{\"name\":\"phone\",\"label\":\"Phone number\",\"type\":\"text\",\"req\":\"\",\"is_custom\":\"true\"},\"company\":{\"name\":\"company\",\"label\":\"Company name\",\"type\":\"text\",\"req\":\"\"},\"message\":{\"name\":\"message\",\"label\":\"Message\",\"type\":\"textarea\",\"req\":\"\"},\"vx_consent\":{\"name\":\"vx_consent\",\"label\":\"GDPR Consent\",\"type\":\"boolean\"},\"vx_url\":{\"name\":\"vx_url\",\"label\":\"Page URL\",\"type\":\"URL\"},\"vx_title\":{\"name\":\"vx_title\",\"label\":\"Page Title\",\"type\":\"text\"},\"vx_camp_id\":{\"name\":\"vx_camp_id\",\"label\":\"SFDC Campaign ID\",\"type\":\"text\"},\"vx_webinar_key\":{\"name\":\"vx_webinar_key\",\"label\":\"GoToWebinar key\",\"type\":\"text\"},\"vx_ip\":{\"name\":\"vx_ip\",\"label\":\"IP Address\",\"type\":\"text\"},\"skipValidation\":{\"name\":\"skipValidation\",\"label\":\"Skip Validation\",\"type\":\"boolean\",\"eg\":\"0 or 1\",\"options\":[{\"label\":\"True\",\"value\":\"1\"},{\"label\":\"False\",\"value\":\"0\"}]}}}','{\"map\":{\"email\":{\"type\":\"\",\"value\":\"\",\"field\":\"email\"},\"firstname\":{\"type\":\"\",\"value\":\"\",\"field\":\"first-name\"},\"phone\":{\"type\":\"\",\"value\":\"\",\"field\":\"phone\"},\"company\":{\"type\":\"\",\"value\":\"\",\"field\":\"company\"},\"message\":{\"type\":\"\",\"value\":\"\",\"field\":\"message\"}},\"filters\":{\"1\":{\"1\":{\"field\":\"\",\"op\":\"is\",\"value\":\"\"}}},\"note_val\":\"\",\"object_company\":\"\",\"object_contact\":\"\"}','2021-10-29 21:07:04'),(6,'',0,1,0,'','',NULL,NULL,NULL); /*!40000 ALTER TABLE `wp_vxcf_hubspot` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_vxcf_hubspot_accounts` -- DROP TABLE IF EXISTS `wp_vxcf_hubspot_accounts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_vxcf_hubspot_accounts` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` int(1) NOT NULL DEFAULT 0, `time` datetime DEFAULT NULL, `updated` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_vxcf_hubspot_accounts` -- LOCK TABLES `wp_vxcf_hubspot_accounts` WRITE; /*!40000 ALTER TABLE `wp_vxcf_hubspot_accounts` DISABLE KEYS */; INSERT INTO `wp_vxcf_hubspot_accounts` VALUES (1,'TC Main HubSpot Account','{\"time\":\"2021-04-30 23:45:22\",\"id\":\"1\",\"portal_id\":6899710,\"instance_url\":\"\",\"access_token\":\"CLe629CWMBIOEAMBUAAAASIAAAD8BwEY_o-lAyD5l8gEKNG2AjIUHzUdKS9U9gMBtpAB1rwp_jxuRk06MAAEIMEAAAAAwAcwAAAABAAAhgAAAAAAAAAMACAcAAAOAOAxAAAAAAFA__8fABDwA0IU6793dANZEx24U7x2vmIXBxfPYgtKA25hMVIAWgA\",\"client_id\":\"66c8b02a-06d8-47f1-b7c9-a0e0b1b28384\",\"_id\":\"\",\"refresh_token\":\"fe887d83-22b9-482d-a1b8-74bf9d1d52eb\",\"signature\":\"\",\"token_time\":1655340492,\"_time\":1620067676,\"error\":\"\",\"api\":\"api\",\"class\":\"updated\",\"valid_token\":\"true\",\"time_zone\":\"US\\/Eastern\",\"currency\":\"USD\",\"msg\":\"Successfully Connected to Hub Spot - May 03, 2021 06:47:56 PM\",\"name\":\"TC Main HubSpot Account\",\"api_key\":\"\",\"app_id\":\"\",\"app_secret\":\"\",\"app_url\":\"\",\"error_email\":\"\",\"custom_app\":\"\"}','{\"portal_id\":6899710,\"objects\":{\"Contact\":\"Contact\",\"Company\":\"Company\",\"Task\":\"Task\",\"Ticket\":\"Ticket\",\"Deal\":\"Deal\",\"vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7\":\"TC Main Website - HubSpot Form\",\"vxf_55513920-4838-4fa4-bb54-941ae6f36a04\":\"TC Landing Page Top - HubSpot Form\",\"vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd\":\"TC Landing Page Bottom - HubSpot Form\",\"vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e\":\"TC Contact Page - HubSpot Form\"},\"fields\":{\"firstname\":{\"name\":\"firstname\",\"label\":\"First name\",\"type\":\"text\",\"req\":\"\"},\"lastname\":{\"name\":\"lastname\",\"label\":\"Last name\",\"type\":\"text\",\"req\":\"\"},\"email\":{\"name\":\"email\",\"label\":\"Email\",\"type\":\"text\",\"req\":\"true\"},\"phone\":{\"name\":\"phone\",\"label\":\"Phone number\",\"type\":\"text\",\"req\":\"\",\"is_custom\":\"true\"},\"company\":{\"name\":\"company\",\"label\":\"Company name\",\"type\":\"text\",\"req\":\"\"},\"message\":{\"name\":\"message\",\"label\":\"Message\",\"type\":\"textarea\",\"req\":\"\"},\"vx_consent\":{\"name\":\"vx_consent\",\"label\":\"GDPR Consent\",\"type\":\"boolean\"},\"vx_url\":{\"name\":\"vx_url\",\"label\":\"Page URL\",\"type\":\"URL\"},\"vx_title\":{\"name\":\"vx_title\",\"label\":\"Page Title\",\"type\":\"text\"},\"vx_camp_id\":{\"name\":\"vx_camp_id\",\"label\":\"SFDC Campaign ID\",\"type\":\"text\"},\"vx_webinar_key\":{\"name\":\"vx_webinar_key\",\"label\":\"GoToWebinar key\",\"type\":\"text\"},\"vx_ip\":{\"name\":\"vx_ip\",\"label\":\"IP Address\",\"type\":\"text\"},\"skipValidation\":{\"name\":\"skipValidation\",\"label\":\"Skip Validation\",\"type\":\"boolean\",\"eg\":\"0 or 1\",\"options\":[{\"label\":\"True\",\"value\":\"1\"},{\"label\":\"False\",\"value\":\"0\"}]}},\"object\":\"vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7\"}',1,'2021-04-30 23:45:22','2022-06-16 00:48:12'),(2,'',NULL,NULL,9,NULL,NULL); /*!40000 ALTER TABLE `wp_vxcf_hubspot_accounts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_vxcf_hubspot_log` -- DROP TABLE IF EXISTS `wp_vxcf_hubspot_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_vxcf_hubspot_log` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `entry_id` int(11) NOT NULL, `form_id` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL, `feed_id` int(11) NOT NULL, `parent_id` int(11) NOT NULL, `crm_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `object` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `meta` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL, `event` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL, `data` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `response` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `extra` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `time` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `entry_id` (`entry_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3382 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_vxcf_hubspot_log` -- LOCK TABLES `wp_vxcf_hubspot_log` WRITE; /*!40000 ALTER TABLE `wp_vxcf_hubspot_log` DISABLE KEYS */; INSERT INTO `wp_vxcf_hubspot_log` VALUES (1,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','[]','','[]',1,'2021-04-30 23:47:30'),(2,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Form \'d3abe351-fdf3-4da0-9d30-6533a80af89e\' can\'t receive API submissions as Captcha (SPAM prevention) is enabled.','submit','{\"firstname\":{\"value\":\"aa\",\"label\":\"Name\"},\"message\":{\"value\":\"bbbbbbbbbbb\",\"label\":\"Message\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"d3c2fec8-5849-424f-bdb1-fe1ceeb2fa43\",\"errors\":[{\"message\":\"Form \'d3abe351-fdf3-4da0-9d30-6533a80af89e\' can\'t receive API submissions as Captcha (SPAM prevention) is enabled.\",\"errorType\":\"FORM_HAS_RECAPTCHA_ENABLED\"}]}','[]',0,'2021-04-30 23:54:39'),(3,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Form \'d3abe351-fdf3-4da0-9d30-6533a80af89e\' can\'t receive API submissions as Captcha (SPAM prevention) is enabled.','submit','{\"firstname\":{\"value\":\"Robert Golabek\",\"label\":\"Name\"},\"message\":{\"value\":\"test today\",\"label\":\"Message\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"3689d18f-da14-48ab-bc68-57434082ea48\",\"errors\":[{\"message\":\"Form \'d3abe351-fdf3-4da0-9d30-6533a80af89e\' can\'t receive API submissions as Captcha (SPAM prevention) is enabled.\",\"errorType\":\"FORM_HAS_RECAPTCHA_ENABLED\"}]}','[]',0,'2021-05-03 18:33:28'),(4,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Form \'d3abe351-fdf3-4da0-9d30-6533a80af89e\' can\'t receive API submissions as Captcha (SPAM prevention) is enabled.','submit','{\"firstname\":{\"value\":\"Marlena Golabek\",\"label\":\"Name\"},\"message\":{\"value\":\"Hi, I\'m looking to submit a proposal\",\"label\":\"Message\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"2f4fe833-5958-4dc8-b773-f0466830e6f8\",\"errors\":[{\"message\":\"Form \'d3abe351-fdf3-4da0-9d30-6533a80af89e\' can\'t receive API submissions as Captcha (SPAM prevention) is enabled.\",\"errorType\":\"FORM_HAS_RECAPTCHA_ENABLED\"}]}','[]',0,'2021-05-03 18:36:23'),(5,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Required field \'email\' is missing','submit','{\"firstname\":{\"value\":\"Robert Golabek\",\"label\":\"Name\"},\"message\":{\"value\":\"7 Sedgebrook Crescent\",\"label\":\"Message\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"592d8aa7-b95e-48eb-b2ed-8264f9effb0c\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Required field \'email\' is missing\",\"errorType\":\"REQUIRED_FIELD\"}]}','[]',0,'2021-05-03 18:38:23'),(6,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"email\":{\"value\":\"robertski@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Robert Golabek\",\"label\":\"Name\"},\"message\":{\"value\":\"7 Sedgebrook Crescent\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-05-03 18:39:07'),(7,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"email\":{\"value\":\"robert@translucentcomputing.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Marlena Golabek\",\"label\":\"Name\"},\"message\":{\"value\":\"hi i\'m talking to you\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-05-03 18:42:00'),(8,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"email\":{\"value\":\"robertski@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Robert Golabek\",\"label\":\"Name\"},\"message\":{\"value\":\"tttttttttt\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-05-03 18:51:45'),(9,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Form \'d3abe351-fdf3-4da0-9d30-6533a80af89e\' can\'t receive API submissions as Captcha (SPAM prevention) is enabled.','submit','{\"email\":{\"value\":\"robert@translucentcomputing.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Marlena Golabek\",\"label\":\"Name\"},\"message\":{\"value\":\"Hi, i\'m looking to speak to Robert.\",\"label\":\"Message\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"a0ceb4a6-ffea-448a-ac1f-76a59b4db3a8\",\"errors\":[{\"message\":\"Form \'d3abe351-fdf3-4da0-9d30-6533a80af89e\' can\'t receive API submissions as Captcha (SPAM prevention) is enabled.\",\"errorType\":\"FORM_HAS_RECAPTCHA_ENABLED\"}]}','[]',0,'2021-05-03 18:55:38'),(10,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Form \'d3abe351-fdf3-4da0-9d30-6533a80af89e\' can\'t receive API submissions as Captcha (SPAM prevention) is enabled.','submit','{\"email\":{\"value\":\"robertski@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Robert Golabek\",\"label\":\"Name\"},\"message\":{\"value\":\"teeeeeeeeeeeeeeeeeeeeeeeeee\",\"label\":\"Message\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"2e5e7a38-b90d-4121-b935-3011dad3d66e\",\"errors\":[{\"message\":\"Form \'d3abe351-fdf3-4da0-9d30-6533a80af89e\' can\'t receive API submissions as Captcha (SPAM prevention) is enabled.\",\"errorType\":\"FORM_HAS_RECAPTCHA_ENABLED\"}]}','[]',0,'2021-05-03 19:33:30'),(11,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Form \'d3abe351-fdf3-4da0-9d30-6533a80af89e\' can\'t receive API submissions as Captcha (SPAM prevention) is enabled.','submit','{\"email\":{\"value\":\"robertski@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"test\",\"label\":\"Name\"},\"message\":{\"value\":\"test\",\"label\":\"Message\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"2119314c-134b-438a-ae90-095bf039a56a\",\"errors\":[{\"message\":\"Form \'d3abe351-fdf3-4da0-9d30-6533a80af89e\' can\'t receive API submissions as Captcha (SPAM prevention) is enabled.\",\"errorType\":\"FORM_HAS_RECAPTCHA_ENABLED\"}]}','[]',0,'2021-05-03 21:49:01'),(12,0,'cf_2556',2,0,'','vxf_55513920-4838-4fa4-bb54-941ae6f36a04','','','submit','{\"email\":{\"value\":\"robertski@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"test\",\"label\":\"Message\"},\"firstname\":{\"value\":\"Robert Golabek\",\"label\":\"First name\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-02 20:01:23'),(13,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"robertski@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Robert\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Golabek\",\"label\":\"Last name\"},\"company\":{\"value\":\"test\",\"label\":\"Company name\"},\"message\":{\"value\":\"tttttttttttttest\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-02 20:28:09'),(14,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"robertski@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Robert\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Golabek\",\"label\":\"Last name\"},\"company\":{\"value\":\"test22\",\"label\":\"Company name\"},\"message\":{\"value\":\"hello 22\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-02 20:35:51'),(15,0,'cf_2556',2,0,'','vxf_55513920-4838-4fa4-bb54-941ae6f36a04','','','submit','{\"email\":{\"value\":\"robertski@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"yeeeeeeeeeee\",\"label\":\"Message\"},\"firstname\":{\"value\":\"Robert Golabek\",\"label\":\"First name\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-02 20:38:13'),(16,0,'cf_2556',2,0,'','vxf_55513920-4838-4fa4-bb54-941ae6f36a04','','','submit','{\"email\":{\"value\":\"robertski@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"tests\",\"label\":\"Message\"},\"firstname\":{\"value\":\"Robert Golabek\",\"label\":\"First name\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-02 20:39:50'),(17,0,'cf_2556',2,0,'','vxf_55513920-4838-4fa4-bb54-941ae6f36a04','','','submit','{\"email\":{\"value\":\"robertski@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"test\",\"label\":\"Message\"},\"firstname\":{\"value\":\"Robert Golabek\",\"label\":\"First name\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-02 20:40:53'),(18,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.firstname\'. Required field \'firstname\' is missing','submit','{\"email\":{\"value\":\"robertski@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"testing contact form\",\"label\":\"Message\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"8cf13969-9032-490d-8880-caa907eb0b62\",\"errors\":[{\"message\":\"Error in \'fields.firstname\'. Required field \'firstname\' is missing\",\"errorType\":\"REQUIRED_FIELD\"},{\"message\":\"Error in \'fields.lastname\'. Required field \'lastname\' is missing\",\"errorType\":\"REQUIRED_FIELD\"}]}','[]',0,'2021-06-02 20:58:29'),(19,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"testy@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Jakub test\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Gold test\",\"label\":\"Last name\"},\"company\":{\"value\":\"Tc forever\",\"label\":\"Company name\"},\"message\":{\"value\":\"Test\",\"label\":\"Message\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"9c78dc29-8030-4110-8b65-fabf6bea9f6d\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-06-02 21:03:07'),(20,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"nskdj@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Test\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Ndkd\",\"label\":\"Last name\"},\"company\":{\"value\":\"Tc forever\",\"label\":\"Company name\"},\"message\":{\"value\":\"Trsting this right now\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-02 21:05:05'),(21,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"robertski@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Robert\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Golabek\",\"label\":\"Last name\"},\"company\":{\"value\":\"test\",\"label\":\"Company name\"},\"message\":{\"value\":\"home page moment\",\"label\":\"Message\"},\"phone\":{\"value\":\"4166710030\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-02 21:11:08'),(22,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"robert@translucentcomputing.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Robert\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Golabek\",\"label\":\"Last name\"},\"phone\":{\"value\":\"4166710030\",\"label\":\"Phone number\"},\"company\":{\"value\":\"Translucent Computing Inc\",\"label\":\"Company name\"},\"message\":{\"value\":\"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-02 21:44:34'),(23,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"laurah.idarraga@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"laura\",\"label\":\"First name\"},\"lastname\":{\"value\":\"hincapie\",\"label\":\"Last name\"},\"company\":{\"value\":\"test test\",\"label\":\"Company name\"},\"message\":{\"value\":\"test test test\",\"label\":\"Message\"},\"phone\":{\"value\":\"6475747917\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-03 02:08:24'),(24,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"test@test.ca\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Test\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Test\",\"label\":\"Last name\"},\"phone\":{\"value\":\"3553223\",\"label\":\"Phone number\"},\"company\":{\"value\":\"Test\",\"label\":\"Company name\"},\"message\":{\"value\":\"Testing\",\"label\":\"Message\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"834af34c-bb9b-4e28-83c8-7c16d1d7ba1c\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-06-03 13:54:38'),(25,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"robert@translucentcomputing.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Robert\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Golabek\",\"label\":\"Last name\"},\"phone\":{\"value\":\"4166710030\",\"label\":\"Phone number\"},\"company\":{\"value\":\"Translucent Computing Inc\",\"label\":\"Company name\"},\"message\":{\"value\":\"aaaaaa\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-03 13:57:31'),(26,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Test\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Test\",\"label\":\"Last name\"},\"email\":{\"value\":\"test@test.ca\",\"label\":\"Email\"},\"message\":{\"value\":\"Testing Contact Us page response\",\"label\":\"Message\"},\"phone\":{\"value\":\"2342342\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"6f84e6d2-ba32-45be-b3ab-7f9efa7d1855\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-06-03 13:58:59'),(27,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"test@test.ca\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Test\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Test\",\"label\":\"Last name\"},\"phone\":{\"value\":\"3904208\",\"label\":\"Phone number\"},\"company\":{\"value\":\"Test\",\"label\":\"Company name\"},\"message\":{\"value\":\"Cloud Native Application Development page testing\",\"label\":\"Message\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"22e58dd0-dd11-49c9-876a-7b272ddeecf5\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-06-03 14:00:55'),(28,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"test@test.ca\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Test\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Test\",\"label\":\"Last name\"},\"phone\":{\"value\":\"2348987\",\"label\":\"Phone number\"},\"company\":{\"value\":\"Test\",\"label\":\"Company name\"},\"message\":{\"value\":\"Cloud Native DevOps page testing\",\"label\":\"Message\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"89a75565-1a71-4e8a-9df2-6eea392cf82c\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-06-03 14:01:56'),(29,0,'cf_2556',2,0,'','vxf_55513920-4838-4fa4-bb54-941ae6f36a04','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"test@test.ca\",\"label\":\"Email\"},\"message\":{\"value\":\"Mid Ontario Landing Page Top page form testing\",\"label\":\"Message\"},\"full_name\":{\"value\":\"Test\",\"label\":\"Full name\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"6228a766-e67b-4161-84fe-7b36310811f7\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-06-03 14:19:43'),(30,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"test@test.ca\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Test\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Test\",\"label\":\"Last name\"},\"company\":{\"value\":\"Test\",\"label\":\"Company name\"},\"message\":{\"value\":\"Mid-Ontario Landing bottom page form testing\",\"label\":\"Message\"},\"phone\":{\"value\":\"189312\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"88097f8c-c551-4884-a7f8-93c371dea9a6\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"},{\"message\":\"Error in \'fields.phone\'. Value provided for number field \'phone\' is out of range\",\"errorType\":\"NUMBER_OUT_OF_RANGE\"}]}','[]',0,'2021-06-03 14:23:02'),(31,0,'cf_2556',2,0,'','vxf_55513920-4838-4fa4-bb54-941ae6f36a04','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"test@test.ca\",\"label\":\"Email\"},\"message\":{\"value\":\"The top form of Landing Long Ontario page testing\",\"label\":\"Message\"},\"full_name\":{\"value\":\"Test\",\"label\":\"Full name\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"9dc59264-e3f8-4f9f-b96e-05f2373b13e2\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-06-03 14:39:29'),(32,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"test@test.ca\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Test\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Test\",\"label\":\"Last name\"},\"company\":{\"value\":\"Test\",\"label\":\"Company name\"},\"message\":{\"value\":\"The bottom form of Landing Long Ontario page testing\",\"label\":\"Message\"},\"phone\":{\"value\":\"8923741\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"b2b681d8-07dd-44cc-8198-28b4e0483d32\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-06-03 14:40:41'),(33,0,'cf_2556',2,0,'','vxf_55513920-4838-4fa4-bb54-941ae6f36a04','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"test@test.ca\",\"label\":\"Email\"},\"message\":{\"value\":\"The top form of Landing Long US page testing\",\"label\":\"Message\"},\"full_name\":{\"value\":\"Test\",\"label\":\"Full name\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"4ff3680c-3d7c-497a-a22c-185149350bc7\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-06-03 14:41:25'),(34,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"test@test.ca\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Test\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Test\",\"label\":\"Last name\"},\"company\":{\"value\":\"Test\",\"label\":\"Company name\"},\"message\":{\"value\":\"The bottom form of Landing Long US page testing\",\"label\":\"Message\"},\"phone\":{\"value\":\"981271\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"68a2ab07-96af-49af-bfcb-227040b68cb0\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"},{\"message\":\"Error in \'fields.phone\'. Value provided for number field \'phone\' is out of range\",\"errorType\":\"NUMBER_OUT_OF_RANGE\"}]}','[]',0,'2021-06-03 14:45:26'),(35,0,'cf_2556',2,0,'','vxf_55513920-4838-4fa4-bb54-941ae6f36a04','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"test@test.ca\",\"label\":\"Email\"},\"message\":{\"value\":\"The top form of Landing MID US page testing\",\"label\":\"Message\"},\"full_name\":{\"value\":\"Test\",\"label\":\"Full name\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"0c6a5bc5-8e29-403e-b61a-bbaad37ae09b\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-06-03 14:46:26'),(36,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"test@test.ca\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Test\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Test\",\"label\":\"Last name\"},\"company\":{\"value\":\"Test\",\"label\":\"Company name\"},\"message\":{\"value\":\"The bottom form of Landing MID US page testing\",\"label\":\"Message\"},\"phone\":{\"value\":\"235232532\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"b9b81f9c-c226-4962-a81b-b98332d28ee6\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-06-03 14:47:01'),(37,0,'cf_2556',2,0,'','vxf_55513920-4838-4fa4-bb54-941ae6f36a04','','','submit','{\"email\":{\"value\":\"robertski@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"espen\",\"label\":\"Message\"},\"full_name\":{\"value\":\"Robert Golabek\",\"label\":\"Full name\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-03 16:40:56'),(38,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Cora\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Noe\",\"label\":\"Last name\"},\"email\":{\"value\":\"cora.noe@googlemail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello\\r\\nWe offer 12000+ Fresh, Clean, Safe Themes\\/Plugins\\/Scripts for Wordpress\\/WooCommerce\\/Joomla\\/Prestashop\\/Opencart\\/Magento\\r\\nWe have 8500 active and paid members already.\\r\\n1 Month price is just $9.90 for now. \\r\\nPlease check it \\r\\nhttps:\\/\\/yukapo.com\\/?utm_source=wsc&utm_medium=contact&utm_campaign=EN\\r\\nYUKAPO.COM\",\"label\":\"Message\"},\"phone\":{\"value\":\"077 6705 2038\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-03 23:36:59'),(39,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"leu.myl7@oranga.fr\",\"label\":\"Email\"},\"firstname\":{\"value\":\"RichardShisp\",\"label\":\"First name\"},\"lastname\":{\"value\":\"RichardShisp\",\"label\":\"Last name\"},\"phone\":{\"value\":\"85437782372\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"For a comfortable life, you need to take just a couple of steps: Invest $ 690 and get passive income of $ 6100 per day >>>>>>>>>>>>>> http:\\/\\/www.bank.com.fatphillys.net\\/300000eur?991 <<<<<<<<<<<<<\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-04 02:20:09'),(40,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Preston\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Farmer\",\"label\":\"Last name\"},\"email\":{\"value\":\"PrestonFarmer0265@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello there, I am just checking in to see if you need any help with your online reviews. We specialize in burying negative reviews in the search engines by getting other sites to rank above your negative reviews. We can also help you to get a lot more positive reviews to dilute negative reviews that are already out there. We would love to work with your company, so please let me know if you are interested in learning more about what we do. \\r\\n\\r\\nThank you,\\n\\nThank you.\\r\\nPreston Farmer\",\"label\":\"Message\"},\"phone\":{\"value\":\"9757798944\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-04 19:42:58'),(41,0,'cf_2556',2,0,'','vxf_55513920-4838-4fa4-bb54-941ae6f36a04','','','submit','{\"email\":{\"value\":\"robertski@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi sir i\'m looking for you... i ...\",\"label\":\"Message\"},\"full_name\":{\"value\":\"Robert Golabek\",\"label\":\"Full name\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-04 20:19:15'),(42,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Harlan\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Conde\",\"label\":\"Last name\"},\"email\":{\"value\":\"omouhcinejerrafh@sotosegerr.xyz\",\"label\":\"Email\"},\"message\":{\"value\":\"Still waiting for visitors to come in from all your SEO efforts? How long has it been? 1 Month? 3 Months? Longer? Did they change their algorithm? Did you make a mistake? If you\'re tired of waiting then here\'s a quick and easy way to boost traffic for your site without breaking the bank. We run ad campaigns for your site on popular sites like cnn.com to generate lots of instant traffic. The best part is that we offer a full money back guarantee if you\'re not satisfied. That\'s how confident we are that you will get results! The best part is, you never pay for clicks only a one time flat rate. Check it out: http:\\/\\/www.flatratepromotion.link\",\"label\":\"Message\"},\"phone\":{\"value\":\"(08) 9364 1501\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"4662477a-b570-4255-bfa9-a4ad1ab4fb5e\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-06-04 23:33:09'),(43,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"chinwijamyki@hotmail.fr\",\"label\":\"Email\"},\"firstname\":{\"value\":\"RichardShisp\",\"label\":\"First name\"},\"lastname\":{\"value\":\"RichardShisp\",\"label\":\"Last name\"},\"phone\":{\"value\":\"87675113453\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"All you need is at your fingertips, do not hesitate! Invest $ 557 and get passive income of $ 6200 per day >>>>>>>>>>>>>> http:\\/\\/www.bank.com.fatphillys.net\\/bigwin?570 <<<<<<<<<<<<<\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-05 06:42:47'),(44,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"enricolorenz1@gmx.de\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Arthurtaush\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Arthurtaush\",\"label\":\"Last name\"},\"phone\":{\"value\":\"89223979552\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Passive income from 3000 EURO. Join and Become Rich with our unique system. \\r\\n \\r\\nOur system is an exclusive group for people who believed and got involved in the madness of Bitcoin and made a fortune on it. \\r\\nOur members enjoy a worldwide vacation every month while making money on their laptop with just a few minutes of \\u201cwork\\u201d every day. \\r\\nEach new member starts earning from 3000 EURO on the very first day. Forget loans and hated jobs. soon you will not have them because you will soon become rich. \\r\\nWe also have 5 participants who, on the very first day, earned from 100,000 EURO each. This is a very excellent indicator. \\r\\nDon\'t waste time, register and start making good money right now. \\r\\n \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc2iVZz&sa=D&Mp=Jp&usg=AFQjCNFJ6DQ-GgLJiqgZRHHBoeSsdUCiIw \\r\\n \\r\\nThere is no other trading application in the world like our system that gives 99.4% accuracy. \\r\\nTherefore, our members from all over the world trust us to double and triple their hard earned money. \\r\\nThe program was created by the most advanced trading technologies in the world. \\r\\nThe program is ahead of the market by 0.01 seconds. \\r\\nThis \'leaping time\' allows our system to be the most accurate and fastest program in the world. \\r\\nDue to this, you will receive passive income from 3000 EURO per day. \\r\\nDon\'t waste time, register and start making good money right now. \\r\\n \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc2iVZz&sa=D&Gp=Cd&usg=AFQjCNFJ6DQ-GgLJiqgZRHHBoeSsdUCiIw \\r\\n \\r\\nOur app has won numerous awards. \\r\\nWe were recently honored to receive the \'# 1\' award in the Trade Program category from the US Trade Association. \\r\\nOnce your registration is accepted, you automatically become a new user of the system. \\r\\nYou will be able to use the trading system for free. \\r\\nLike any other business, you need start-up capital to get started. \\r\\nTo start making profit with the system, you must invest 250 EURO or more. \\r\\nDon\'t waste time, register and start making good money right now. \\r\\n \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc2iVZz&sa=D&Ja=Xw&usg=AFQjCNFJ6DQ-GgLJiqgZRHHBoeSsdUCiIw \\r\\n \\r\\nClick \'trade\' to enjoy accurate and automated trading based on a winning algorithm. \\r\\nYou can also switch the system to manual mode if you prefer to trade yourself. \\r\\nBut we give a guarantee that in automatic mode your income will be from 3000 EURO per day. \\r\\nDon\'t waste time, register and start making good money right now. \\r\\n \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc2iVZz&sa=D&Kw=Ks&usg=AFQjCNFJ6DQ-GgLJiqgZRHHBoeSsdUCiIw\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-05 22:02:27'),(45,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aguzarova.2022@bk.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"AnthonySeals\",\"label\":\"First name\"},\"lastname\":{\"value\":\"AnthonySeals\",\"label\":\"Last name\"},\"phone\":{\"value\":\"81856773469\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"\\u041d\\u0438\\u043a\\u0430\\u043a\\u0438\\u0445 \\u043f\\u0440\\u043e\\u0434\\u0430\\u0436, \\u043f\\u0430\\u0440\\u0442\\u043d\\u0435\\u0440\\u043e\\u043a, \\u0437\\u0430\\u043a\\u0430\\u0437\\u043e\\u0432 \\u0438 Kwork. \\u0418\\u0434\\u0435\\u0430\\u043b\\u044c\\u043d\\u044b\\u0439 \\u0437\\u0430\\u0440\\u0430\\u0431\\u043e\\u0442\\u043e\\u043a \\u0431\\u0435\\u0437 \\u0432\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0439! \\r\\n\\u0430\\u0432\\u0442\\u043e\\u0434\\u043e\\u0445\\u043e\\u0434 \\u0434\\u043e 130 000 \\u0440\\u0443\\u0431\\u043b\\u0435\\u0439 \\u0432 \\u043c\\u0435\\u0441\\u044f\\u0446 https:\\/\\/bit.ly\\/3wjIev6 \\r\\n\\u043f\\u043e\\u0441\\u043b\\u0435 \\u0437\\u0430\\u043f\\u0443\\u0441\\u043a\\u0430 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u044b \\u0432\\u044b \\u0431\\u0443\\u0434\\u0435\\u0442\\u0435 \\u043f\\u043e\\u043b\\u0443\\u0447\\u0430\\u0442\\u044c \\u0434\\u043e\\u0445\\u043e\\u0434, \\u043a\\u0430\\u043a \\u043c\\u0438\\u043d\\u0438\\u043c\\u0443\\u043c \\u0435\\u0449\\u0435 10 \\u043b\\u0435\\u0442 \\r\\n- \\u0437\\u0430\\u0440\\u0430\\u0431\\u0430\\u0442\\u044b\\u0432\\u0430\\u0435\\u0442\\u0435 \\u043d\\u0430 \\u043e\\u0431\\u044b\\u0447\\u043d\\u044b\\u0445 \\u043a\\u0430\\u0440\\u0442\\u0438\\u043d\\u043a\\u0430\\u0445. \\r\\n- \\u043a\\u043e\\u043f\\u0438\\u0440\\u0443\\u0435\\u0442\\u0443 \\u043a\\u0430\\u0440\\u0442\\u0438\\u043d\\u043a\\u0443 \\u0438\\u0437 \\u0443\\u043a\\u0430\\u0437\\u0430\\u043d\\u043d\\u043e\\u0433\\u043e \\u0438\\u0441\\u0442\\u043e\\u0447\\u043d\\u0438\\u043a\\u0430 \\r\\n- \\u0437\\u0430\\u0433\\u0440\\u0443\\u0436\\u0430\\u0435\\u0442\\u0435 \\u043a\\u0430\\u0440\\u0442\\u0438\\u043d\\u043a\\u0443 \\u043d\\u0430 \\u0441\\u0435\\u0440\\u0432\\u0438\\u0441 \\r\\n- \\u0434\\u0435\\u043b\\u0430\\u0435\\u0442\\u0435 \\u043d\\u0430\\u0441\\u0442\\u0440\\u043e\\u0439\\u043a\\u0438 \\u043f\\u043e \\u0438\\u043d\\u0441\\u0442\\u0440\\u0443\\u043a\\u0446\\u0438\\u0438 \\r\\n- \\u0432\\u044b\\u0432\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0434\\u0435\\u043d\\u044c\\u0433\\u0438 \\r\\n- \\u043f\\u043e\\u0436\\u0438\\u0437\\u043d\\u0435\\u043d\\u043d\\u044b\\u0439 \\u043f\\u0430\\u0441\\u0441\\u0438\\u0432\\u043d\\u044b\\u0439 \\u0434\\u043e\\u0445\\u043e\\u0434 \\r\\n\\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u0434\\u043b\\u044f \\u043e\\u043f\\u043b\\u0430\\u0442\\u044b https:\\/\\/bit.ly\\/2RtQ9Hq\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-06 13:36:12'),(46,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Kristie\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Moore\",\"label\":\"Last name\"},\"email\":{\"value\":\"kristie@business-directory.link\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \\r\\n\\r\\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\\r\\n\\r\\nIts simple & easy; Register your business here --> \\r\\nhttps:\\/\\/business-directory.link\\/abcc1\\/?=translucentcomputing.com\\r\\n\\r\\n\\r\\nKristie\\r\\nVoice Activation Follow-up Specialist\\r\\nBusiness Directory Link\\r\\n\\r\\n\\r\\n\\r\\n \\r\\n2764 Pleasant Road Suite Suite A PMB 708\\r\\nFort Mill, SC 29708\\r\\n\\r\\nYou can skip future marketing messages here:\\r\\nhttps:\\/\\/business-directory.link\\/out.php?site=translucentcomputing.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"805-372-3246\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"03f79c12-c22f-4198-b0ce-e81aadad21ee\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-06-06 16:24:22'),(47,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"magnovo@wanadoo.fr\",\"label\":\"Email\"},\"firstname\":{\"value\":\"RichardShisp\",\"label\":\"First name\"},\"lastname\":{\"value\":\"RichardShisp\",\"label\":\"Last name\"},\"phone\":{\"value\":\"87747783227\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Get the lucky one! Invest $ 698 and get passive income of $ 5300 per day >>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc1PsE1&sa=D&Ca=Cr&usg=AFQjCNGCUIRa4fS6cDrEAZvz_5ew1ySmpQ <<<<<<<<<<<<<\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-07 09:12:51'),(48,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natalie@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"NataFew\",\"label\":\"First name\"},\"lastname\":{\"value\":\"NataFew\",\"label\":\"Last name\"},\"phone\":{\"value\":\"83881525493\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Didn\'t find other contacts went here - https:\\/\\/best-sex-here1.com\\/?u=41nkd08&o=8dhpkzk \\r\\nRegister and find me by nickname Marie! Do it now!\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-08 12:20:37'),(49,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Preston\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Farmer\",\"label\":\"Last name\"},\"email\":{\"value\":\"PrestonFarmer0265@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello there, I am just checking in to see if you need any help with your online reviews. We specialize in burying negative reviews in the search engines by getting other sites to rank above your negative reviews. We can also help you to get a lot more positive reviews to dilute negative reviews that are already out there. We would love to work with your company, so please let me know if you are interested in learning more about what we do. \\r\\n\\r\\nThank you,\\n\\nThank you.\\r\\nPreston Farmer\",\"label\":\"Message\"},\"phone\":{\"value\":\"9757798944\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-08 13:49:14'),(50,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Keat\\r\\n\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mike Keat\\r\\n\",\"label\":\"Last name\"},\"phone\":{\"value\":\"84483671237\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi there \\r\\n \\r\\nIncrease your translucentcomputing.com SEO metrics values with us and get more visibility and exposure for your website. \\r\\n \\r\\nMore info: \\r\\nhttps:\\/\\/www.monkeydigital.org\\/product\\/moz-da50-seo-plan\\/ \\r\\n \\r\\nNEW: \\r\\nhttps:\\/\\/www.monkeydigital.org\\/product\\/ahrefs-dr50-ur70-seo-plan\\/ \\r\\nhttps:\\/\\/www.monkeydigital.org\\/product\\/trust-flow-seo-package\\/ \\r\\n \\r\\n \\r\\nthank you \\r\\nMike Keat\\r\\n\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-08 17:44:37'),(51,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sousou_12.kdj@hotmail.fr\",\"label\":\"Email\"},\"firstname\":{\"value\":\"RichardShisp\",\"label\":\"First name\"},\"lastname\":{\"value\":\"RichardShisp\",\"label\":\"Last name\"},\"phone\":{\"value\":\"84642631536\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"The psychology of profit: how to start acting. Invest $ 459 and get passive income of $ 6600 per day >>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc1PsE1&sa=D&Za=Ko&usg=AFQjCNGCUIRa4fS6cDrEAZvz_5ew1ySmpQ <<<<<<<<<<<<<\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-09 00:03:16'),(52,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marie_pierre.kessler@tiscali.fr\",\"label\":\"Email\"},\"firstname\":{\"value\":\"RichardShisp\",\"label\":\"First name\"},\"lastname\":{\"value\":\"RichardShisp\",\"label\":\"Last name\"},\"phone\":{\"value\":\"88119619779\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"The digital world: its advantages for revenue. Invest $ 365 and get passive income of $ 5000 per day >>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc1PsE1&sa=D&Vo=Jo&usg=AFQjCNGCUIRa4fS6cDrEAZvz_5ew1ySmpQ <<<<<<<<<<<<<\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-10 02:59:20'),(53,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"maygrigory2021@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"MerryApatt\",\"label\":\"First name\"},\"lastname\":{\"value\":\"MerryApatt\",\"label\":\"Last name\"},\"phone\":{\"value\":\"83133653627\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Chinese class: I took Chinese at school as a freshman. On one particular day, we didn\\u0432\\u0402\\u2122t have anything to do in class since we had gone through the whole curriculum for the semester. Our teacher wanted us to watch a Chinese movie in that free time, and I just so happened to watch one recently on YouTube. I offered to find it, and my teacher let me use her computer, that was connected to a Promethean board so that the whole class could see what I was doing on the screen. After a couple of minutes of searching, I couldn\\u0432\\u0402\\u2122t find the movie since I didn\\u0432\\u0402\\u2122t know the exact title, so I logged into my YouTube account and decided to find it in my history. When I opened my history I was mortified since stupid me had forgotten that being the awkward virgin that I was at the time I had searched up tutorials on kissing and making out that previous night. The whole class was hysterically laughing, my teacher was extremely confused, and I almost cried as I scrolled past all the kissing tutorials and finally found the movie. I went back to my seat and didn\\u0432\\u0402\\u2122t speak to anyone in class for the rest of the week. I still haven\\u0432\\u0402\\u2122t lived it down.<\\/a>\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-10 13:00:44'),(54,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Aubrey\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Sweeney\",\"label\":\"Last name\"},\"email\":{\"value\":\"AubreySweeney0160@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Do you have a bad reputation online, due to bad reviews or a lack of reviews? I specialize in reputation management and would love to work with you. Everyone looks at your reviews before buying, so having bad reviews can absolutely crush your business, whether you realize it or not. We have numerous ways of fixing your reputation online and can help you to boost your sales through the power of a strong reputation. \\r\\n\\r\\nLet me know if this is something you\'re interested in and I can provide you with more information. \\r\\n\\r\\nSincerely, \\n\\nBest regards,\\r\\nAubrey Sweeney\",\"label\":\"Message\"},\"phone\":{\"value\":\"9756384136\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-10 20:57:17'),(55,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"magmoy@free.fr\",\"label\":\"Email\"},\"firstname\":{\"value\":\"RichardShisp\",\"label\":\"First name\"},\"lastname\":{\"value\":\"RichardShisp\",\"label\":\"Last name\"},\"phone\":{\"value\":\"88726173386\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Get x2 Bitcoins from Tesla >>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc2Ou0l&sa=D&Ke=Xe&usg=AFQjCNEqmEVL_8lT0s5VT1H9xJof7LQCIw <<<<<<<<<<<<<\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-11 11:32:45'),(56,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Chrissy\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Allan\",\"label\":\"Last name\"},\"email\":{\"value\":\"chrissy@youralexadirectory.link\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \\r\\n\\r\\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\\r\\n\\r\\nIts simple & easy; Register your business here --> \\r\\nhttps:\\/\\/voiceregbiz1.xyz\\/mroe-cusotmers\\/?=translucentcomputing.com\\r\\n\\r\\n\\r\\nChrissy\\r\\nVoice Activation Follow-up Specialist\\r\\nYour Alexa Directory\\r\\n\\r\\n\\r\\n\\r\\n \\r\\n2764 Pleasant Road Suite Suite A PMB 708\\r\\nFort Mill, SC 29708\\r\\n\\r\\nYou can skip future marketing messages here:\\r\\nhttps:\\/\\/voiceregbiz1.xyz\\/unsubscribe.php\\/?site=translucentcomputing.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"805-372-3366\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"3e092527-7acc-4d95-83f3-5c96cff22535\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-06-12 05:57:10'),(57,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Preston\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Farmer\",\"label\":\"Last name\"},\"email\":{\"value\":\"PrestonFarmer0265@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello there, I am just checking in to see if you need any help with your online reviews. We specialize in burying negative reviews in the search engines by getting other sites to rank above your negative reviews. We can also help you to get a lot more positive reviews to dilute negative reviews that are already out there. We would love to work with your company, so please let me know if you are interested in learning more about what we do. \\r\\n\\r\\nThank you,\\n\\nThank you.\\r\\nPreston Farmer\",\"label\":\"Message\"},\"phone\":{\"value\":\"9757798944\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-12 07:41:36'),(58,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"no-replyentaisk@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Donaldnousy\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Donaldnousy\",\"label\":\"Last name\"},\"phone\":{\"value\":\"87324478166\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello! translucentcomputing.com \\r\\n \\r\\nDid you know that it is possible to send message totally legally? \\r\\nWe proffer a new legitimate method of sending commercial offer through feedback forms. Such forms are located on many sites. \\r\\nWhen such requests are sent, no personal data is used, and messages are sent to forms specifically designed to receive messages and appeals. \\r\\nalso, messages sent through contact Forms do not get into spam because such messages are considered important. \\r\\nWe offer you to test our service for free. We will send up to 50,000 messages for you. \\r\\nThe cost of sending one million messages is 49 USD. \\r\\n \\r\\nThis offer is created automatically. Please use the contact details below to contact us. \\r\\n \\r\\nContact us. \\r\\nTelegram - @FeedbackMessages \\r\\nSkype live:contactform_18 \\r\\nWhatsApp - +375259112693 \\r\\n \\r\\nWe only use chat.\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-12 11:33:37'),(59,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"chatenetjp@orange.fr\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Conradwrill\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Conradwrill\",\"label\":\"Last name\"},\"phone\":{\"value\":\"88917799323\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Three months ago, when I came home from work, \\r\\nI was watching the evening news and there they were just interviewing a housewife from Paris (I don\'t remember her name anymore) \\r\\nwho made a fortune by investing only $ 1500 in global automated trading systems (trading robots) without understanding anything in this thread. \\r\\nShe named three automated trading systems on which she earned more than $ 30,000,000 in 7 months by investing only $ 1,500, that is, $ 500 in each system. \\r\\nI thought to myself why the hell are they showing this, because this is just an advertisement for some kind of trading system services and nothing more. \\r\\nAnd besides, if everything is so great with them, why show it on the news and tell others. But in the end I decided to give it a try. \\r\\nThis news intrigued me, in the end I signed up, the manager called me, we set everything up, \\r\\nI invested $ 2100, $ 700 in each system and launched automated trading robots. For a whole week after the investment, \\r\\nI did not look at what was happening there, as there were a lot of things to do, but a week later when I opened my personal accounts in all three systems, \\r\\nI just silently opened my mouth and looked at my balance and wondered if I was sleeping because my passive income was quite is equal to $ 960,000! \\r\\nAnd in just three months my income was $ 11,520,850! \\r\\nTo hell with everything, just take it and do it, if I succeed then you will certainly succeed. \\r\\nHere are my passive income and links to these three sites that made me a millionaire: \\r\\n1. Income $ 5,359,673 \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc2JnE8&sa=D&sntz=1&usg=AFQjCNFcvJhMW5sGMUv7j_-ItTr8aGwmaw \\r\\n2. Income $ 3,752,098 \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc1Jpgr&sa=D&sntz=1&usg=AFQjCNFtc0f-Znle2hYDkjNlqovjfh5SnQ \\r\\n3. Income $ 2,409,079 \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc2JnRF&sa=D&sntz=1&usg=AFQjCNE4usgK_TRXvziyBdhyHX5CrW7Szw\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-13 02:01:14'),(60,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"piskello_diaboliko@alice.it\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mariodok\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mariodok\",\"label\":\"Last name\"},\"phone\":{\"value\":\"84182446341\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello, \\r\\n \\r\\nNew music: https:\\/\\/popeurope.blogspot.com \\r\\nMP3\\/FLAC, Label, LIVESETS, Music Videos, TV Series. \\r\\nDownload Dance, Electro, House, Techno, Trance, Pop, Rock, Rap... \\r\\n \\r\\nBest regards, \\r\\n0day MP3s\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-13 12:21:46'),(61,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"no-replyOxine@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike White\\r\\n\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mike White\\r\\n\",\"label\":\"Last name\"},\"phone\":{\"value\":\"87833455436\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Good Day \\r\\n \\r\\nWe will increase your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \\r\\n \\r\\nPlease check our pricelist here, we offer Local SEO at cheap rates. \\r\\nhttps:\\/\\/speed-seo.net\\/product\\/local-seo-package\\/ \\r\\n \\r\\nNEW: \\r\\nhttps:\\/\\/www.speed-seo.net\\/product\\/zip-codes-gmaps-citations\\/ \\r\\n \\r\\nregards \\r\\nMike White\\r\\n \\r\\nSpeed SEO Digital Agency\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-14 09:57:15'),(62,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Eric\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jones\",\"label\":\"Last name\"},\"email\":{\"value\":\"eric.jones.z.mail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Good day, \\r\\n\\r\\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement \\u2013 Congratulations\\r\\n\\r\\nWhat for? \\r\\n\\r\\nPart of my job is to check out websites and the work you\\u2019ve done with translucentcomputing.com definitely stands out. \\r\\n\\r\\nIt\\u2019s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\\r\\n\\r\\nThere is, however, a catch\\u2026 more accurately, a question\\u2026\\r\\n\\r\\nSo when someone like me happens to find your site \\u2013 maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \\r\\n\\r\\nMore importantly, how do you make a connection with that person?\\r\\n\\r\\nStudies show that 7 out of 10 visitors don\\u2019t stick around \\u2013 they\\u2019re there one second and then gone with the wind.\\r\\n\\r\\nHere\\u2019s a way to create INSTANT engagement that you may not have known about\\u2026 \\r\\n\\r\\nTalk With Web Visitor is a software widget that\\u2019s works on your site, ready to capture any visitor\\u2019s Name, Email address and Phone Number. It lets you know INSTANTLY that they\\u2019re interested \\u2013 so that you can talk to that lead while they\\u2019re literally checking out translucentcomputing.com.\\r\\n\\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\\r\\n\\r\\nIt could be a game-changer for your business \\u2013 and it gets even better\\u2026 once you\\u2019ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation \\u2013 immediately (and there\\u2019s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\\r\\n\\r\\nPlus then, even if you don\\u2019t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\\r\\n\\r\\nEverything I\\u2019ve just described is simple, easy, and effective. \\r\\n\\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\\r\\n\\r\\nYou could be converting up to 100X more leads today!\\r\\n\\r\\nEric\\r\\nPS: Talk With Web Visitor offers a FREE 14 days trial \\u2013 and it even includes International Long Distance Calling. \\r\\nYou have customers waiting to talk with you right now\\u2026 don\\u2019t keep them waiting. \\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to try Talk With Web Visitor now.\\r\\n\\r\\nIf you\'d like to unsubscribe click here http:\\/\\/talkwithwebvisitors.com\\/unsubscribe.aspx?d=translucentcomputing.com\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"555-555-1212\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-14 11:48:53'),(63,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ashlayhazalton36145@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Ashlay Hazalton\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Ashlay Hazalton\",\"label\":\"Last name\"},\"phone\":{\"value\":\"83829289897\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi, this is Chris. \\r\\nWho win all online casinos by using FREE BONUS. \\r\\n \\r\\nWitch mean, I don\\u2019t really spend money in online casinos. \\r\\n \\r\\nBut I win every time, and actually, everybody can win by following my directions. \\r\\n \\r\\neven you can win! \\r\\n \\r\\nSo, if you\\u2019re the person, who can listen to someone really smart, you should just try!! \\r\\n \\r\\nThe best online casino, that I really recommend is, Vera&John. \\r\\nEstablished in 2010 and became best online casino in the world. \\r\\n \\r\\nThey give you free bonus when you charge more than $50. \\r\\nIf you charge $50, your bonus is going to be $50. \\r\\n \\r\\nIf you charge $500, you get $500 Free bonus. \\r\\nYou can bet up to $1000. \\r\\n \\r\\nJust try roulette, poker, black jack\\u2026any games with dealers. \\r\\nBecause dealers always have to make some to win and, only thing you need to do is to be chosen. \\r\\n \\r\\nDon\\u2019t ever spend your bonus at slot machines. \\r\\nYOU\\u2019RE GONNA LOSE YOUR MONEY!! \\r\\n \\r\\nNext time, I will let you know how to win in online casino against dealers!! \\r\\n \\r\\nDon\\u2019t forget to open your VERA&JOHN account, otherwise you\\u2019re gonna miss even more chances!! \\r\\n \\r\\n \\r\\n \\r\\nOpen Vera&John account (free) \\r\\nhttps:\\/\\/bit.ly\\/3wZkpco\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-15 02:29:28'),(64,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ali-g-du-63333@hotmail.fr\",\"label\":\"Email\"},\"firstname\":{\"value\":\"RichardShisp\",\"label\":\"First name\"},\"lastname\":{\"value\":\"RichardShisp\",\"label\":\"Last name\"},\"phone\":{\"value\":\"86768878535\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"It`s quite natural to want more revenue. Invest $ 666 and get passive income of $ 6000 per day >>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc1PsE1&sa=D&Ds=Ky&usg=AFQjCNGCUIRa4fS6cDrEAZvz_5ew1ySmpQ <<<<<<<<<<<<<\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-15 07:23:45'),(65,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Eric\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jones\",\"label\":\"Last name\"},\"email\":{\"value\":\"eric.jones.z.mail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hey, this is Eric and I ran across translucentcomputing.com a few minutes ago.\\r\\n\\r\\nLooks great\\u2026 but now what?\\r\\n\\r\\nBy that I mean, when someone like me finds your website \\u2013 either through Search or just bouncing around \\u2013 what happens next? Do you get a lot of leads from your site, or at least enough to make you happy?\\r\\n\\r\\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site\\u2019s visitors disappear and are gone forever after just a moment.\\r\\n\\r\\nHere\\u2019s an idea\\u2026\\r\\n \\r\\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site\\u2026\\r\\n \\r\\nYou can \\u2013\\r\\n \\r\\nTalk With Web Visitor is a software widget that\\u2019s works on your site, ready to capture any visitor\\u2019s Name, Email address and Phone Number. It signals you the moment they let you know they\\u2019re interested \\u2013 so that you can talk to that lead while they\\u2019re literally looking over your site.\\r\\n\\r\\nCLICK HERE http:\\/\\/talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\\r\\n\\r\\nYou\\u2019ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\\r\\n\\r\\nIt gets even better\\u2026 once you\\u2019ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\\r\\n \\r\\nThat way, even if you don\\u2019t close a deal right away, you can follow up with text messages for new offers, content links, even just \\u201chow you doing?\\u201d notes to build a relationship.\\r\\n\\r\\nPretty sweet \\u2013 AND effective.\\r\\n\\r\\nCLICK HERE http:\\/\\/talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\\r\\n\\r\\nYou could be converting up to 100X more leads today!\\r\\n\\r\\nEric\\r\\nPS: Talk With Web Visitor offers a FREE 14 days trial \\u2013 and it even includes International Long Distance Calling. \\r\\nYou have customers waiting to talk with you right now\\u2026 don\\u2019t keep them waiting. \\r\\nCLICK HERE http:\\/\\/talkwithcustomer.com to try Talk With Web Visitor now.\\r\\n\\r\\nIf you\'d like to unsubscribe click here http:\\/\\/talkwithcustomer.com\\/unsubscribe.aspx?d=translucentcomputing.com\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"555-555-1212\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-16 00:33:24'),(66,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Melanie\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Lee\",\"label\":\"Last name\"},\"email\":{\"value\":\"MelanieLee10240@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello there, I am just checking in to see if you need any help with your online reviews. We specialize in burying negative reviews in the search engines by getting other sites to rank above your negative reviews. We can also help you to get a lot more positive reviews to dilute negative reviews that are already out there. We would love to work with your company, so please let me know if you are interested in learning more about what we do. \\r\\n\\r\\nThank you,\\n\\nMelanie Lee\",\"label\":\"Message\"},\"phone\":{\"value\":\"7081120600\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-17 00:05:10'),(67,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"RichardShisp\",\"label\":\"First name\"},\"lastname\":{\"value\":\"RichardShisp\",\"label\":\"Last name\"},\"email\":{\"value\":\"chloegillard@yahoo.fr\",\"label\":\"Email\"},\"message\":{\"value\":\"Start acting right now! Invest $ 490 and get passive income of $ 8300 per day >>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc1PsE1&sa=D&Hu=Hd&usg=AFQjCNGCUIRa4fS6cDrEAZvz_5ew1ySmpQ <<<<<<<<<<<<<\",\"label\":\"Message\"},\"phone\":{\"value\":\"83482966664\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-17 01:05:56'),(68,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"AL SAEED CORPORATION LLC\",\"label\":\"First name\"},\"lastname\":{\"value\":\"AL SAEED CORPORATION LLC\",\"label\":\"Last name\"},\"email\":{\"value\":\"alsaeedcorporation963@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"We are AL SAEED CORPORATION LLC \\r\\nWe give out loans to individuals\\/companies at 2% interest rate annually. We are interested in financing projects of large volume. The repayment period is 1 year to 30 years. \\r\\nCONTACT US: \\r\\nE-mail: adelhamad@alsaeedcorp.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"85999735946\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-17 06:15:25'),(69,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Steve\",\"label\":\"First name\"},\"lastname\":{\"value\":\"James\",\"label\":\"Last name\"},\"email\":{\"value\":\"steve@explainervideos4u.info\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi,\\r\\n\\r\\nWe\'d like to introduce to you our explainer video service which we feel can benefit your site translucentcomputing.com.\\r\\n\\r\\nCheck out some of our existing videos here:\\r\\nhttps:\\/\\/www.youtube.com\\/watch?v=zvGF7uRfH04\\r\\nhttps:\\/\\/www.youtube.com\\/watch?v=cZPsp217Iik\\r\\nhttps:\\/\\/www.youtube.com\\/watch?v=JHfnqS2zpU8\\r\\n\\r\\nAll of our videos are in a similar animated format as the above examples and we have voice over artists with US\\/UK\\/Australian accents.\\r\\nWe can also produce voice overs in languages other than English.\\r\\n\\r\\nThey can show a solution to a problem or simply promote one of your products or services. They are concise, can be uploaded to video such as Youtube, and can be embedded into your website or featured on landing pages.\\r\\n\\r\\nOur prices are as follows depending on video length:\\r\\n1 minute = $189\\r\\n1-2 minutes = $339\\r\\n2-3 minutes = $449\\r\\n\\r\\n*All prices above are in USD and include an engaging, captivating video with full script and voice-over.\\r\\n\\r\\nIf this is something you would like to discuss further, don\'t hesitate to get in touch.\\r\\n\\r\\nKind Regards,\\r\\nSteve\",\"label\":\"Message\"},\"phone\":{\"value\":\"011394960794\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-17 19:29:16'),(70,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Henryunfox\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Henryunfox\",\"label\":\"Last name\"},\"email\":{\"value\":\"audrey_vincent@hotmail.fr\",\"label\":\"Email\"},\"message\":{\"value\":\"Hey! We buy top-end video cards and mining equipment at closed auctions of customs confiscated. \\r\\nAnd we sell at once for 10 pieces in one order, at favorable prices both for you and for us. \\r\\nAll equipment is brand new. We deliver worldwide within two weeks after payment of the order. \\r\\nIf you are a miner or reseller, this is the perfect offer for you. \\r\\nAt the moment we have in stock: Mining farm for Chia coin, 60Tb - 500 pieces and \\r\\nGIGABYTE NVIDIA GeForce RTX 3090, GV-N3090AORUS X-24GD, 24GB, GDDR6X - 1300 pieces. \\r\\nYou can get acquainted with the assortment and prices here: https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc30MFC&sa=D&sntz=1&usg=AFQjCNEKxorlqqm159Sm9cRk-7WfHI_FYA\",\"label\":\"Message\"},\"phone\":{\"value\":\"82247679658\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-18 04:35:10'),(71,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Eric\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jones\",\"label\":\"Last name\"},\"email\":{\"value\":\"eric.jones.z.mail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hey, this is Eric and I ran across translucentcomputing.com a few minutes ago.\\r\\n\\r\\nLooks great\\u2026 but now what?\\r\\n\\r\\nBy that I mean, when someone like me finds your website \\u2013 either through Search or just bouncing around \\u2013 what happens next? Do you get a lot of leads from your site, or at least enough to make you happy?\\r\\n\\r\\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site\\u2019s visitors disappear and are gone forever after just a moment.\\r\\n\\r\\nHere\\u2019s an idea\\u2026\\r\\n \\r\\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site\\u2026\\r\\n \\r\\nYou can \\u2013\\r\\n \\r\\nTalk With Web Visitor is a software widget that\\u2019s works on your site, ready to capture any visitor\\u2019s Name, Email address and Phone Number. It signals you the moment they let you know they\\u2019re interested \\u2013 so that you can talk to that lead while they\\u2019re literally looking over your site.\\r\\n\\r\\nCLICK HERE http:\\/\\/talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\\r\\n\\r\\nYou\\u2019ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\\r\\n\\r\\nIt gets even better\\u2026 once you\\u2019ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\\r\\n \\r\\nThat way, even if you don\\u2019t close a deal right away, you can follow up with text messages for new offers, content links, even just \\u201chow you doing?\\u201d notes to build a relationship.\\r\\n\\r\\nPretty sweet \\u2013 AND effective.\\r\\n\\r\\nCLICK HERE http:\\/\\/talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\\r\\n\\r\\nYou could be converting up to 100X more leads today!\\r\\n\\r\\nEric\\r\\nPS: Talk With Web Visitor offers a FREE 14 days trial \\u2013 and it even includes International Long Distance Calling. \\r\\nYou have customers waiting to talk with you right now\\u2026 don\\u2019t keep them waiting. \\r\\nCLICK HERE http:\\/\\/talkwithcustomer.com to try Talk With Web Visitor now.\\r\\n\\r\\nIf you\'d like to unsubscribe click here http:\\/\\/talkwithcustomer.com\\/unsubscribe.aspx?d=translucentcomputing.com\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"555-555-1212\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-19 00:35:08'),(72,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Bethviave\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Bethviave\",\"label\":\"Last name\"},\"email\":{\"value\":\"gvm.marcos@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"I\'m in you - http:\\/\\/2track.info\\/vPfF\",\"label\":\"Message\"},\"phone\":{\"value\":\"89764213435\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-19 05:09:56'),(73,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"RichardShisp\",\"label\":\"First name\"},\"lastname\":{\"value\":\"RichardShisp\",\"label\":\"Last name\"},\"email\":{\"value\":\"keithreed15@free.fr\",\"label\":\"Email\"},\"message\":{\"value\":\"Register and be on a roll! Invest $ 676 and get passive income of $ 6500 per day >>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc1PsE1&sa=D&Sq=Hh&usg=AFQjCNGCUIRa4fS6cDrEAZvz_5ew1ySmpQ <<<<<<<<<<<<<\",\"label\":\"Message\"},\"phone\":{\"value\":\"85248268924\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-19 05:46:26'),(74,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Bill\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Grant\",\"label\":\"Last name\"},\"email\":{\"value\":\"BillGrant0124@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi! \\r\\n\\r\\nIf you are interested in starting and\\/or improving the performance of your existing campaign thru an internet advertising model used to drive traffic to your websites and on platforms like Google Ads, Bing Ads, Facebook Ads, and etc., please let me know! I can provide and give you guaranteed traffic that can make a huge impact on sales. Thanks!\\r\\n\\r\\nTalk soon!\\r\\n\\r\\n\\n\\nThank you.\\r\\nBill Grant\",\"label\":\"Message\"},\"phone\":{\"value\":\"9291986277\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-20 05:32:19'),(75,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Shay\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Layne\",\"label\":\"Last name\"},\"email\":{\"value\":\"ia.zebari49g@dongphucmaugiao.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Go here to see a list of high traffic sites that accept free ad submissions: http:\\/\\/www.freetrafficwebsites.click\",\"label\":\"Message\"},\"phone\":{\"value\":\"(12) 8990-6863\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"1f9c5f08-8bb4-48ef-a262-78da0fe8f53d\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-06-21 08:47:58'),(76,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Mike Samuels\\r\\n\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mike Samuels\\r\\n\",\"label\":\"Last name\"},\"email\":{\"value\":\"no-reply@google.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Howdy \\r\\n \\r\\nI have just verified your SEO on translucentcomputing.com for its SEO Trend and saw that your website could use a boost. \\r\\n \\r\\nWe will enhance your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \\r\\n \\r\\nPlease check our pricelist here, we offer SEO at cheap rates. \\r\\nhttps:\\/\\/www.hilkom-digital.de\\/cheap-seo-packages\\/ \\r\\n \\r\\nStart improving your sales and leads with us, today! \\r\\n \\r\\nregards \\r\\nMike Samuels\\r\\n \\r\\nHilkom Digital Team \\r\\nsupport@hilkom-digital.de\",\"label\":\"Message\"},\"phone\":{\"value\":\"81181342879\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-21 21:43:38'),(77,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Ramonexali\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Ramonexali\",\"label\":\"Last name\"},\"email\":{\"value\":\"adcom@wanadoo.fr\",\"label\":\"Email\"},\"message\":{\"value\":\"All you need is at your fingertips, do not hesitate! Invest $ 475 and get passive income of $ 5200 per day >>>>>>>>>>>>>> http:\\/\\/www.google.com\\/url?q=http%3A%2F%2Fgo.tipirock4.com%2F0e42&sa=D&Ha=Hs&usg=AFQjCNFU9A-BJV6zo6zbiu_s4SpbUgqfZQ <<<<<<<<<<<<<\",\"label\":\"Message\"},\"phone\":{\"value\":\"87194233385\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-21 23:18:22'),(78,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Hilda\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Sutton\",\"label\":\"Last name\"},\"email\":{\"value\":\"HildaSutton982@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi there! \\r\\n\\r\\nAre you interested in starting an ad campaign or want a guaranteed traffic that can make a huge impact on sales of performance of your existing campaign on platforms like Google Ads, Bing Ads, Facebook Ads etc? Please let me know and I can provide you with some information and pricing.\\r\\n\\r\\nThanks!\\n\\nSincerely,\\r\\nHilda Sutton\",\"label\":\"Message\"},\"phone\":{\"value\":\"9662466177\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-22 20:34:31'),(79,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"TEST@GMAIL.COM\",\"label\":\"Email\"},\"firstname\":{\"value\":\"JAKUBTEST\",\"label\":\"First name\"},\"lastname\":{\"value\":\"JAKUBTEST\",\"label\":\"Last name\"},\"phone\":{\"value\":\"00123456789\",\"label\":\"Phone number\"},\"company\":{\"value\":\"TEST\",\"label\":\"Company name\"},\"message\":{\"value\":\"TEST\",\"label\":\"Message\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"8b05b81c-6140-4720-b50d-39fd979ed483\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-06-22 20:44:53'),(80,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"astetriax@rvmail.xyz\",\"label\":\"Email\"},\"firstname\":{\"value\":\"depphalge\",\"label\":\"First name\"},\"lastname\":{\"value\":\"depphalge\",\"label\":\"Last name\"},\"phone\":{\"value\":\"84961647989\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"accutane\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-23 02:46:36'),(81,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Bill\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Grant\",\"label\":\"Last name\"},\"email\":{\"value\":\"BillGrant0124@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi! \\r\\n\\r\\nIf you are interested in starting and\\/or improving the performance of your existing campaign thru an internet advertising model used to drive traffic to your websites and on platforms like Google Ads, Bing Ads, Facebook Ads, and etc., please let me know! I can provide and give you guaranteed traffic that can make a huge impact on sales. Thanks!\\r\\n\\r\\nTalk soon!\\r\\n\\r\\n\\n\\nThank you.\\r\\nBill Grant\",\"label\":\"Message\"},\"phone\":{\"value\":\"9291986277\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-23 04:38:49'),(82,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"smithvoidejn@nettirautakauppa.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"SmithApatt\",\"label\":\"First name\"},\"lastname\":{\"value\":\"SmithApatt\",\"label\":\"Last name\"},\"phone\":{\"value\":\"86474681516\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Sputnik V vaccination has begun in Slovakia. The provisioning of the Russian vaccine to the countryside was accompanied away a civic spot and led to the forgoing of Prime Benefit Igor Matovich and a realignment of the government. As a evolve, the territory received the Russian vaccine, ignoring the fact that neither the European regulator nor the WHO has moreover approved it. \\r\\nIn neighboring Hungary, which approved the advantage of Sputnik in February as the anything else in Europe, more than 50% of the ripe natives has already been vaccinated; in Russia - a scant more than 10%. In Slovakia, five thousand people signed up toward the Sputnik vaccination. \\r\\nKazhdyj raz vozvrawajus\\u2019 k vam snova, i ne razocharovyvajus\\u2019.. You can be familiar with another article on this matter at this link https:\\/\\/shopyourway.znizka.site<\\/a>\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-23 18:43:48'),(83,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yourmail@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"TracyBub\",\"label\":\"First name\"},\"lastname\":{\"value\":\"TracyBub\",\"label\":\"Last name\"},\"phone\":{\"value\":\"84375315566\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\" \\r\\nI bought accounts here, was necessary for work. I would like to highlight a good assortment, reasonable prices. In general, I was satisfied with everything. Can recommend the service. \\r\\nClick \\r\\nhttps:\\/\\/accstores.com\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-23 22:35:48'),(84,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lonWainna@svmail.xyz\",\"label\":\"Email\"},\"firstname\":{\"value\":\"binquinty\",\"label\":\"First name\"},\"lastname\":{\"value\":\"binquinty\",\"label\":\"Last name\"},\"phone\":{\"value\":\"89476218171\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"levitra 40 mg samples\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-24 01:16:41'),(85,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lonWainna@svmail.xyz\",\"label\":\"Email\"},\"firstname\":{\"value\":\"binquinty\",\"label\":\"First name\"},\"lastname\":{\"value\":\"binquinty\",\"label\":\"Last name\"},\"phone\":{\"value\":\"85169361977\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"osu levitra comprar\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-24 03:45:05'),(86,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nick@saaytext.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Nick Davis\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Nick Davis\",\"label\":\"Last name\"},\"phone\":{\"value\":\"87685591945\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi Its Nick, \\r\\n \\r\\nWe have a business texting platform that will help your team engage customers, leads & past clients through texting. \\r\\n \\r\\nIt\'s 49\\/mo for 30,000 texts, which is under 0.002 per message. \\r\\n \\r\\nYou can text your WHOLE LIST at once using the bulk send feature or send two-way texts and get replies. \\r\\n \\r\\n \\r\\nCheck it out @ http:\\/\\/SaayText.com \\r\\n \\r\\nThank you, \\r\\nNick\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-24 04:01:29'),(87,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"Buigolf@sufmail.xyz\",\"label\":\"Email\"},\"firstname\":{\"value\":\"JUINNYDIZ\",\"label\":\"First name\"},\"lastname\":{\"value\":\"JUINNYDIZ\",\"label\":\"Last name\"},\"phone\":{\"value\":\"88356491177\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cialis otc\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-24 06:07:36'),(88,0,'cf_2556',2,0,'','vxf_55513920-4838-4fa4-bb54-941ae6f36a04','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"test@company.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Please ignore, this is a test.\",\"label\":\"Message\"},\"full_name\":{\"value\":\"Test Lead\",\"label\":\"Full name\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"0787f90b-e593-4e87-8708-6ca81d8150d8\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-06-24 17:31:45'),(89,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"christellegourmelin@wanadoo.fr\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Ramonexali\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Ramonexali\",\"label\":\"Last name\"},\"phone\":{\"value\":\"89253841355\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Verdienst im Internet ab 7000 EUR pro Tag >>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc3dCJG&sa=D&Ay=No&usg=AFQjCNGsri5FB8turonndeWUSP449YcSrA <<<<<<<<<<<<<\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-25 00:24:44'),(90,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"umglutadtrem@berbuibreakra.bizml.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"VadimPetrov\",\"label\":\"First name\"},\"lastname\":{\"value\":\"VadimPetrov\",\"label\":\"Last name\"},\"phone\":{\"value\":\"89775360836\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"\\u0413\\u043e\\u0442\\u043e\\u0432\\u044b \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0438\\u0442\\u044c \\u0432\\u0430\\u043c \\u0443\\u0441\\u043b\\u0443\\u0433\\u0443: \\r\\n\\\"\\u0421\\u0442\\u043e\\u043f\\u0440\\u043e\\u0446\\u0435\\u043d\\u0442\\u043d\\u0430\\u044f \\u043b\\u0438\\u043a\\u0432\\u0438\\u0434\\u0430\\u0446\\u0438\\u044f \\u043e\\u043d\\u043b\\u0430\\u0439\\u043d-\\u0441\\u0430\\u0439\\u0442\\u043e\\u0432 \\u043a\\u043e\\u043d\\u043a\\u0443\\u0440\\u0435\\u043d\\u0442\\u043e\\u0432 \\u0438\\u043b\\u0438 \\u043c\\u043e\\u0448\\u0435\\u043d\\u043d\\u0438\\u043a\\u043e\\u0432!\\\" \\r\\n\\u041a\\u0430\\u043a \\u044d\\u0442\\u043e \\u043e\\u0441\\u0443\\u0449\\u0435\\u0441\\u0442\\u0432\\u043b\\u044f\\u044e\\u0442 \\u043d\\u0430\\u0448\\u0438 \\u044d\\u043a\\u0441\\u043f\\u0435\\u0440\\u0442\\u044b?! \\r\\n- \\u0423 \\u043d\\u0430\\u0441 \\u043e\\u043f\\u044b\\u0442 - \\u0431\\u043e\\u043b\\u044c\\u0448\\u0435 \\u0434\\u0435\\u0441\\u044f\\u0442\\u0438 \\u043b\\u0435\\u0442. \\r\\n- \\u0418\\u0441\\u043f\\u043e\\u043b\\u044c\\u0437\\u0443\\u0435\\u043c \\u0441\\u0435\\u043a\\u0440\\u0435\\u0442\\u043d\\u044b\\u0435 \\u043c\\u0435\\u0442\\u043e\\u0434\\u044b. \\r\\n- \\u041d\\u0430\\u0440\\u0430\\u0449\\u0438\\u0432\\u0430\\u0435\\u043c \\u043e\\u0433\\u0440\\u043e\\u043c\\u043d\\u0443\\u044e \\u0441\\u0441\\u044b\\u043b\\u043e\\u0447\\u043d\\u0443\\u044e \\u043c\\u0430\\u0441\\u0441\\u0443 \\u043f\\u043e\\u0441\\u0440\\u0435\\u0434\\u0441\\u0442\\u0432\\u043e\\u043c \\u0432\\u0438\\u0440\\u0443\\u0441\\u043d\\u044b\\u0445 \\u0441\\u0441\\u044b\\u043b\\u043e\\u043a. \\r\\n- \\u041b\\u044e\\u0431\\u043e\\u0439 \\u043f\\u043e\\u0438\\u0441\\u043a\\u043e\\u0432\\u0438\\u043a \\u043c\\u043e\\u043c\\u0435\\u043d\\u0442\\u0430\\u043b\\u044c\\u043d\\u043e \\u0440\\u0435\\u0430\\u0433\\u0438\\u0440\\u0443\\u0435\\u0442 \\u043d\\u0430 \\u043d\\u0430\\u0448\\u0438 \\u0442\\u0435\\u0445\\u043d\\u043e\\u043b\\u043e\\u0433\\u0438\\u0438. \\r\\n- \\u0412\\u0441\\u0435 \\u0440\\u0430\\u0437\\u043c\\u0435\\u0449\\u0435\\u043d\\u043d\\u044b\\u0435 \\u0442\\u0435\\u043a\\u0441\\u0442\\u044b \\u0441 \\u0438\\u043d\\u0442\\u0435\\u0440\\u043d\\u0435\\u0442-\\u0440\\u0435\\u0441\\u0443\\u0440\\u0441\\u0430 \\u0441\\u043f\\u0430\\u043c\\u044f\\u0442\\u0441\\u044f, \\u0447\\u0442\\u043e \\u0434\\u0435\\u043b\\u0430\\u0435\\u0442 \\u0438\\u0445 \\u043d\\u0435\\u0443\\u043d\\u0438\\u043a\\u0430\\u043b\\u044c\\u043d\\u044b\\u043c\\u0438. \\r\\n- \\u0423 \\u043d\\u0430\\u0448\\u0435\\u0439 \\u043a\\u043e\\u043c\\u043f\\u0430\\u043d\\u0438\\u0438 \\u043e\\u0433\\u0440\\u043e\\u043c\\u043d\\u044b\\u0435 \\u0432\\u043e\\u0437\\u043c\\u043e\\u0436\\u043d\\u043e\\u0441\\u0442\\u0438 \\u0438 \\u043e\\u043f\\u044b\\u0442 \\u0432 \\u044d\\u0442\\u043e\\u043c \\u043d\\u0430\\u043f\\u0440\\u0430\\u0432\\u043b\\u0435\\u043d\\u0438\\u0438. \\r\\n \\r\\n\\u0421\\u0442\\u043e\\u0438\\u043c\\u043e\\u0441\\u0442\\u044c $80 \\r\\n\\u041f\\u043e\\u043b\\u043d\\u0430\\u044f \\u043e\\u0442\\u0447\\u0451\\u0442\\u043d\\u043e\\u0441\\u0442\\u044c. \\r\\n\\u041e\\u043f\\u043b\\u0430\\u0442\\u0430: Qiwi, Yandex.Money, Bitcoin, Visa, MasterCard... \\r\\n \\r\\n\\u0422\\u0435\\u043b\\u0435\\u0433\\u0430: @xrumers \\r\\nSkype: xrumer.pro \\r\\nWhatsApp: +7(977)536-08-36 \\r\\n\\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043a\\u0430: support@xrumer.cc \\r\\n \\r\\n\\u0422\\u043e\\u043b\\u044c\\u043a\\u043e \\u044d\\u0442\\u0438! \\r\\n\\u0410 \\u0442\\u0410\\u043a\\u043e\\u0436 \\u0420\\u0430\\u0431\\u043e\\u0442\\u0430\\u0435\\u043c \\u0441\\u043e \\u0421\\u0442\\u0443\\u0434\\u0438\\u044f\\u043c\\u0438!\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-25 22:48:29'),(91,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"lethelpworld2@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Tracytiree\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Tracytiree\",\"label\":\"Last name\"},\"phone\":{\"value\":\"85844263552\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Help me save the world - http:\\/\\/link-world.xyz\\/2Z7Dl\",\"label\":\"Message\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"b5214a17-b39e-4351-82bc-6ee78088a1e8\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-06-27 00:35:46'),(92,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mayer.olivier@freesurf.fr\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Ramonexali\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Ramonexali\",\"label\":\"Last name\"},\"phone\":{\"value\":\"85133929144\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Passives Online-Einkommen ab 3500 EUR pro Tag >>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc3dCG6&sa=D&Ff=Dd&usg=AFQjCNFLQMCiRQiARVa8QoPKHO3-uxzRyQ <<<<<<<<<<<<<\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-27 04:27:53'),(93,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"svidinfo1980@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0421loudjoype\",\"label\":\"First name\"},\"lastname\":{\"value\":\"\\u0421loudjoype\",\"label\":\"Last name\"},\"phone\":{\"value\":\"81327375835\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello, let me introduce you to our program. \\r\\nA program for fast website promotion. \\r\\nResult: \\r\\n- Your site is in the top of the search results. \\r\\n- The counter of visits grows before our eyes. \\r\\n- High scores on all indicators. \\r\\n- Earn money from advertising. \\r\\nThe program has the ability to glue the sites of competitors to omit them in the search results. \\r\\nLearn more about the program. \\r\\nhttps:\\/\\/freetopfast.com\\/ \\r\\ndownload\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-27 23:16:03'),(94,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Violette\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Penman\",\"label\":\"Last name\"},\"email\":{\"value\":\"violette.penman@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi,\\r\\n\\r\\nWe\\u2019re reaching out to ask if you\\u2019d be interested in featuring a guest post on your website. We believe we can add value to your audience on a few related topics that would resonate with your readers. \\r\\n\\r\\nIf our offer is of interest to you, please complete the form here: https:\\/\\/backlinkpro.club\\/add-your-site\\r\\n\\r\\nKind Regards,\\r\\nViolette\",\"label\":\"Message\"},\"phone\":{\"value\":\"056 667 15 46\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-29 03:14:54'),(95,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"essay_5@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"CfsGP\",\"label\":\"First name\"},\"lastname\":{\"value\":\"CfsGP\",\"label\":\"Last name\"},\"phone\":{\"value\":\"82951917466\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Medicine information leaflet. Drug Class. \\r\\nfluoxetine no prescription<\\/a> in USA \\r\\nSome information about medicine. Get information here.\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-29 06:22:06'),(96,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yourmail@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"JosueCig\",\"label\":\"First name\"},\"lastname\":{\"value\":\"JosueCig\",\"label\":\"Last name\"},\"phone\":{\"value\":\"81433286222\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"B\\u00e1n TWITTER C\\u1ed4 REG 2009>2015 - Instagram accounts \\r\\nClick \\r\\nhttps:\\/\\/accs.vn\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-29 18:24:41'),(97,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"info.rohtopharmaceutical@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Yasuhiro Yamada\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Yasuhiro Yamada\",\"label\":\"Last name\"},\"phone\":{\"value\":\"88476374525\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello, \\r\\n \\r\\n \\r\\nWith all due respect. If you are based in United States or Canada, I write to inform you that we need you to serve as our Spokesperson\\/Financial Coordinator for our company ROHTO PHARMACEUTICAL CO., LTD. and its clients in the United States and Canada. It\'s a part-time job and will only take few minutes of your time daily and it will not bring any conflict of interest in case you are working with another company. If interested reply me using this email address: admin@rohtopharmaceutical.jp \\r\\n \\r\\n \\r\\nYasuhiro Yamada \\r\\nSenior Executive Officer, \\r\\nROHTO Pharmaceutical Co.,Ltd. \\r\\n1-8-1 Tatsumi-nishi, \\r\\nIkuno-Ku, Osaka, 544-8666, \\r\\nJapan.\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-30 00:04:21'),(98,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Hilda\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Sutton\",\"label\":\"Last name\"},\"email\":{\"value\":\"HildaSutton982@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi there! \\r\\n\\r\\nAre you interested in starting an ad campaign or want a guaranteed traffic that can make a huge impact on sales of performance of your existing campaign on platforms like Google Ads, Bing Ads, Facebook Ads etc? Please let me know and I can provide you with some information and pricing.\\r\\n\\r\\nThanks!\\n\\nSincerely,\\r\\nHilda Sutton\",\"label\":\"Message\"},\"phone\":{\"value\":\"9662466177\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-06-30 14:33:26'),(99,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"lethelpworld3@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"TheresaVow\",\"label\":\"First name\"},\"lastname\":{\"value\":\"TheresaVow\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Find your destiny - http:\\/\\/link-world.xyz\\/2Z7Dl\",\"label\":\"Message\"},\"phone\":{\"value\":\"88915393882\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-01 06:23:56'),(100,0,'cf_2556',2,0,'','vxf_55513920-4838-4fa4-bb54-941ae6f36a04','','','submit','{\"email\":{\"value\":\"robertski@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"test\",\"label\":\"Message\"},\"full_name\":{\"value\":\"Robert Golabek\",\"label\":\"Full name\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-01 16:54:56'),(101,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"sofiyasamylkin1987911be1+3126@bk.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"GlennAnask\",\"label\":\"First name\"},\"lastname\":{\"value\":\"GlennAnask\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"translucentcomputing.com, bndjcsfwhejvdkmcndhbsjcsdifefedjgf\",\"label\":\"Message\"},\"phone\":{\"value\":\"88165579192\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-01 19:33:05'),(102,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"nacy1s0@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Gloriasuilk\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Gloriasuilk\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Today Lenovo - https:\\/\\/bit.ly\\/3w5LjyB\",\"label\":\"Message\"},\"phone\":{\"value\":\"88688329977\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-02 02:38:25'),(103,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"olgaaaa7@foxmaily.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Miethmr\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Miethmr\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hqd \\u043c\\u043e\\u0440\\u0433\\u0430\\u0435\\u0442 \\u0437\\u0435\\u043b\\u0435\\u043d\\u044b\\u043c<\\/a> \\r\\n \\r\\n\\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0435 \\u0441\\u0438\\u0433\\u0430\\u0440\\u0435\\u0442\\u044b \\u043f\\u043e \\u0432\\u0441\\u0435\\u0439 \\u0440\\u043e\\u0441\\u0441\\u0438\\u0438\",\"label\":\"Message\"},\"phone\":{\"value\":\"87543141731\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-02 11:55:00'),(104,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"yourmail@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Daviddof\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Daviddof\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\" \\r\\nGreat service. Good selection of accounts. The prices are reasonable, small. The quality is high, I was very pleased. I will definitely use the service again. I definitely recommend it! \\r\\nVisit here \\r\\nhttps:\\/\\/accstores.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"82974128769\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-02 13:06:56'),(105,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"yourmail@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"FloydCof\",\"label\":\"First name\"},\"lastname\":{\"value\":\"FloydCof\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"B\\u00e1n TWITTER C\\u1ed4 REG 2009>2015 - Instagram accounts \\r\\nClick here \\r\\nhttps:\\/\\/accs.vn\",\"label\":\"Message\"},\"phone\":{\"value\":\"81216929643\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-03 04:13:29'),(106,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"r.bahramiw1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"DeborahHuh\",\"label\":\"First name\"},\"lastname\":{\"value\":\"DeborahHuh\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Free world US - https:\\/\\/bit.ly\\/3qHfz1F\",\"label\":\"Message\"},\"phone\":{\"value\":\"82991388625\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-03 11:39:37'),(107,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Dennis\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Perpetua\",\"label\":\"Last name\"},\"email\":{\"value\":\"dennis@qualitybloggeroutreach.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello, \\r\\n\\r\\nMy name is Dennis Perpetua and I work for QGP.com, \\r\\n\\r\\nWe\\u2019re interested in advertising on your site. \\r\\n\\r\\nIs this something you\\u2019d be willing to discuss? \\r\\n\\r\\n\\r\\nDennis Perpetua\\r\\nOutreach Manager\\r\\nwww.qgp.com\\r\\n\\r\\n\\r\\n\\r\\nP.S.: If you don\'t want me to contact you again, just let me know.\",\"label\":\"Message\"},\"phone\":{\"value\":\"833-288-8913\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-05 03:51:22'),(108,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Carmela\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Branson\",\"label\":\"Last name\"},\"email\":{\"value\":\"leeanneault532@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi there\\r\\n\\r\\nWe have just checked your translucentcomputing.com for the ranking keywords and found that you could use a boost.\\r\\n\\r\\nIf interested in getting more out of your organic efforts, kindly email us: support@digital-x-press.com\\r\\n\\r\\nthanks\\r\\nSEO X Press Team\",\"label\":\"Message\"},\"phone\":{\"value\":\"0676 873 39 81\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-05 08:38:30'),(109,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"sofiyasamylkin1987911be1+120495@bk.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"MichaelOnerb\",\"label\":\"First name\"},\"lastname\":{\"value\":\"MichaelOnerb\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"translucentcomputing.com, bndjcsfwhejvdkmcndhbsjcsdifefedjgf\",\"label\":\"Message\"},\"phone\":{\"value\":\"81976757231\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-05 13:48:04'),(110,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Eric\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jones\",\"label\":\"Last name\"},\"email\":{\"value\":\"eric.jones.z.mail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"My name\\u2019s Eric and I just found your site translucentcomputing.com.\\r\\n\\r\\nIt\\u2019s got a lot going for it, but here\\u2019s an idea to make it even MORE effective.\\r\\n\\r\\nTalk With Web Visitor \\u2013 CLICK HERE https:\\/\\/talkwithwebvisitors.com for a live demo now.\\r\\n\\r\\nTalk With Web Visitor is a software widget that\\u2019s works on your site, ready to capture any visitor\\u2019s Name, Email address and Phone Number. It signals you the moment they let you know they\\u2019re interested \\u2013 so that you can talk to that lead while they\\u2019re literally looking over your site.\\r\\n\\r\\nAnd once you\\u2019ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation\\u2026 and if they don\\u2019t take you up on your offer then, you can follow up with text messages for new offers, content links, even just \\u201chow you doing?\\u201d notes to build a relationship.\\r\\n\\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\\r\\n\\r\\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\\r\\n\\r\\nEric\\r\\nPS: Studies show that 70% of a site\\u2019s visitors disappear and are gone forever after just a moment. Don\\u2019t keep losing them. \\r\\nTalk With Web Visitor offers a FREE 14 days trial \\u2013 and it even includes International Long Distance Calling. \\r\\nYou have customers waiting to talk with you right now\\u2026 don\\u2019t keep them waiting. \\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to try Talk With Web Visitor now.\\r\\n\\r\\nIf you\'d like to unsubscribe click here http:\\/\\/talkwithwebvisitors.com\\/unsubscribe.aspx?d=translucentcomputing.com\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"555-555-1212\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-06 05:36:35'),(111,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"kostig51@foxmaily.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Lieshmr\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Lieshmr\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hqd \\u043f\\u0440\\u043e\\u0434\\u0430\\u0436\\u0430 \\u043d\\u0435\\u0441\\u043e\\u0432\\u0435\\u0440\\u0448\\u0435\\u043d\\u043d\\u043e\\u043b\\u0435\\u0442\\u043d\\u0438\\u043c<\\/a> \\r\\n \\r\\n\\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u0430\\u044f \\u0441\\u0438\\u0433\\u0430\\u0440\\u0435\\u0442\\u0430 \\u0432 \\u043f\\u0438\\u0440\\u043e\\u0433\\u043e\\u0432\\u0435\",\"label\":\"Message\"},\"phone\":{\"value\":\"89458124567\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-06 21:49:33'),(112,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Diane\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Morgan\",\"label\":\"Last name\"},\"email\":{\"value\":\"diane.morgan367@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi,\\r\\n\\r\\nI am reaching out to see if you\'re interested in starting an ad campaign or improving the performance of an existing campaign on platforms like Google Ads, Bing Ads, Facebook Ads, and more by using PPC (Per-Per-Click)?\\r\\n\\r\\nI am an expert in online advertising, and I will provide and will give you guaranteed traffic to your site that can make a huge impact on sales. Let me know if you\'re interested.\\r\\n\\r\\nThank you!\\n\\nBest regards,\\r\\nDiane Morgan\",\"label\":\"Message\"},\"phone\":{\"value\":\"9456332359\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-08 09:41:12'),(113,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"no-replyentaisk@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"JamesSib\",\"label\":\"First name\"},\"lastname\":{\"value\":\"JamesSib\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Good day! translucentcomputing.com \\r\\n \\r\\nDo you know the simplest way to mention your product or services? Sending messages using contact forms will permit you to simply enter the markets of any country (full geographical coverage for all countries of the world). The advantage of such a mailing is that the emails that may be sent through it will end up within the mailbox that is intended for such messages. Causing messages using Feedback forms isn\'t blocked by mail systems, which means it is guaranteed to reach the recipient. You may be ready to send your provide to potential customers who were previously untouchable due to email filters. \\r\\nWe offer you to test our service at no cost. We\'ll send up to fifty thousand message for you. \\r\\nThe cost of sending one million messages is us $ 49. \\r\\n \\r\\nThis offer is created automatically. Please use the contact details below to contact us. \\r\\n \\r\\nContact us. \\r\\nTelegram - @FeedbackMessages \\r\\nSkype live:contactform_18 \\r\\nWhatsApp - +375259112693 \\r\\nWe only use chat.\",\"label\":\"Message\"},\"phone\":{\"value\":\"84114297789\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-08 12:45:27'),(114,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"moenchcarly32@gmail.com\\r\\n\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Donaldson\\r\\n\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mike Donaldson\\r\\n\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi there \\r\\n \\r\\nDo you want a quick boost in ranks and sales for your translucentcomputing.com website? \\r\\nHaving a high DA score, always helps \\r\\n \\r\\nGet your translucentcomputing.com to have a DA between 50 to 60 points in Moz with us today and rip the benefits of such a great feat. \\r\\n \\r\\nSee our offers here: \\r\\nhttps:\\/\\/www.monkeydigital.co\\/product\\/moz-da50-seo-plan\\/ \\r\\n \\r\\nNEW: \\r\\nhttps:\\/\\/www.monkeydigital.co\\/product\\/ahrefs-dr60\\/ \\r\\n \\r\\n \\r\\nthank you \\r\\nMike Donaldson\\r\\n \\r\\nsupport@monkeydigital.co\",\"label\":\"Message\"},\"phone\":{\"value\":\"89617941969\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-08 19:27:34'),(115,0,'cf_3123',4,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"astetriax@rvmail.xyz\",\"label\":\"Email\"},\"firstname\":{\"value\":\"depphalge\",\"label\":\"First name\"},\"lastname\":{\"value\":\"depphalge\",\"label\":\"Last name\"},\"phone\":{\"value\":\"86421986779\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cialis cost<\\/a>\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-08 23:09:47'),(116,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"alexiacrok32@gmail.com\\r\\n\",\"label\":\"Email\"},\"firstname\":{\"value\":\"SEO X Press Digital Agency\",\"label\":\"First name\"},\"lastname\":{\"value\":\"SEO X Press Digital Agency\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi \\r\\n \\r\\n \\r\\nI have just analyzed translucentcomputing.com for its SEO Trend and saw that your website could use a boost. \\r\\n \\r\\n \\r\\nWe will improve your Ranks organically and safely, using only whitehat methods, \\r\\n \\r\\n \\r\\nIf interested, please email us \\r\\n \\r\\nsupport@digital-x-press.com \\r\\n \\r\\n \\r\\nregards \\r\\nMike Oakman\\r\\n \\r\\nSEO X Press Digital Agency \\r\\nhttps:\\/\\/www.digital-x-press.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"81274698688\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-09 07:03:19'),(117,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Daviddof\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Daviddof\",\"label\":\"Last name\"},\"email\":{\"value\":\"yourmail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\" \\r\\nAccStores.com is a very good account store. Good choice, average prices. The range is very large, you can choose almost any parameter. Accounts are only high-quality, with different registration terms. Personally, I am satisfied with everything as a client, I do not see any complaints, we plan to continue using the service. I recommend this service. \\r\\nClick here \\r\\nhttps:\\/\\/accstores.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"83455386918\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-10 08:03:54'),(118,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"Buigolf@sufmail.xyz\",\"label\":\"Email\"},\"firstname\":{\"value\":\"JUINNYDIZ\",\"label\":\"First name\"},\"lastname\":{\"value\":\"JUINNYDIZ\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"non generic prednisone online<\\/a>\",\"label\":\"Message\"},\"phone\":{\"value\":\"85654659464\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-10 20:49:07'),(119,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"yourmail@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"FloydCof\",\"label\":\"First name\"},\"lastname\":{\"value\":\"FloydCof\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"B\\u00e1n TWITTER C\\u1ed4 REG 2009>2015 - Instagram accounts \\r\\nClick \\r\\nhttps:\\/\\/accs.vn\",\"label\":\"Message\"},\"phone\":{\"value\":\"84921265432\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-10 22:19:16'),(120,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"lonWainna@svmail.xyz\",\"label\":\"Email\"},\"firstname\":{\"value\":\"binquinty\",\"label\":\"First name\"},\"lastname\":{\"value\":\"binquinty\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"levitra overnight delivery<\\/a>\",\"label\":\"Message\"},\"phone\":{\"value\":\"86865721657\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-11 18:13:41'),(121,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"lonWainna@svmail.xyz\",\"label\":\"Email\"},\"firstname\":{\"value\":\"binquinty\",\"label\":\"First name\"},\"lastname\":{\"value\":\"binquinty\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"<\\/a>\",\"label\":\"Message\"},\"phone\":{\"value\":\"84731736356\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-11 21:50:38'),(122,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"sbaglios3@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Helenasug\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Helenasug\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Best of Ali - https:\\/\\/bit.ly\\/3hx9fpd\",\"label\":\"Message\"},\"phone\":{\"value\":\"81976867528\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-12 19:55:41'),(123,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"rinkerhuon32@gmail.com\\r\\n\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Nash\\r\\n\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mike Nash\\r\\n\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Greetings \\r\\n \\r\\nWe will improve your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \\r\\n \\r\\nPlease check our pricelist here, we offer Local SEO at cheap rates. \\r\\nhttps:\\/\\/speed-seo.net\\/product\\/local-seo-package\\/ \\r\\n \\r\\nNEW: \\r\\nhttps:\\/\\/www.speed-seo.net\\/product\\/zip-codes-gmaps-citations\\/ \\r\\n \\r\\nregards \\r\\nMike Nash\\r\\n \\r\\nSpeed SEO Digital Agency\",\"label\":\"Message\"},\"phone\":{\"value\":\"88637466815\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-13 04:50:48'),(124,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"yourmail@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"JosueCig\",\"label\":\"First name\"},\"lastname\":{\"value\":\"JosueCig\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"B\\u00e1n TWITTER C\\u1ed4 REG 2009>2015 - Instagram accounts \\r\\nClick here \\r\\nhttps:\\/\\/accs.vn\",\"label\":\"Message\"},\"phone\":{\"value\":\"89212341694\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-13 06:04:14'),(125,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Diane\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Morgan\",\"label\":\"Last name\"},\"email\":{\"value\":\"diane.morgan367@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi,\\r\\n\\r\\nI am reaching out to see if you\'re interested in starting an ad campaign or improving the performance of an existing campaign on platforms like Google Ads, Bing Ads, Facebook Ads, and more by using PPC (Per-Per-Click)?\\r\\n\\r\\nI am an expert in online advertising, and I will provide and will give you guaranteed traffic to your site that can make a huge impact on sales. Let me know if you\'re interested.\\r\\n\\r\\nThank you!\\n\\nBest regards,\\r\\nDiane Morgan\",\"label\":\"Message\"},\"phone\":{\"value\":\"9456332359\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-13 07:49:35'),(126,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"sparvalquirest@dupwaharri.bizml.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"StasVlasov\",\"label\":\"First name\"},\"lastname\":{\"value\":\"StasVlasov\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\" \\r\\n\\u041d\\u0430\\u0448\\u0430 \\u0444\\u0438\\u0440\\u043c\\u0430 \\u043f\\u0440\\u0435\\u0434\\u043b\\u0430\\u0433\\u0430\\u0435\\u0442 \\u044d\\u0444\\u0444\\u0435\\u043a\\u0442\\u0438\\u0432\\u043d\\u044b\\u0439 \\u0441\\u043f\\u043e\\u0441\\u043e\\u0431 \\\"\\u0443\\u0431\\u0438\\u0442\\u044c\\\" \\u0438\\u043d\\u0442\\u0435\\u0440\\u043d\\u0435\\u0442-\\u0441\\u0430\\u0439\\u0442 \\u0432\\u0430\\u0448\\u0435\\u0433\\u043e \\u043a\\u043e\\u043d\\u043a\\u0443\\u0440\\u0435\\u043d\\u0442\\u0430. \\r\\n\\u0418\\u0441\\u043f\\u043e\\u043b\\u044c\\u0437\\u0443\\u0435\\u043c \\u043f\\u0440\\u043e\\u0434\\u0432\\u0438\\u043d\\u0443\\u0442\\u044b\\u0435 \\u0442\\u0435\\u0445\\u043d\\u043e\\u043b\\u043e\\u0433\\u0438\\u0438: \\r\\n- \\u041a\\u0430\\u0447\\u0435\\u0441\\u0442\\u0432\\u0435\\u043d\\u043d\\u043e \\u0443\\u0441\\u0442\\u0440\\u0430\\u043d\\u044f\\u0435\\u043c \\u0441\\u0430\\u0439\\u0442\\u044b \\u043f\\u043e \\u043b\\u044e\\u0431\\u044b\\u043c \\u043a\\u043b\\u044e\\u0447\\u0435\\u0432\\u044b\\u043c \\u0437\\u0430\\u043f\\u0440\\u043e\\u0441\\u0430\\u043c. \\r\\n- \\u0414\\u0435\\u043b\\u0430\\u0435\\u043c 300000-400000 \\u0441\\u043f\\u0430\\u043c\\u043d\\u044b\\u0445 \\u0431\\u0435\\u043a\\u043b\\u0438\\u043d\\u043a\\u043e\\u0432. \\r\\n- \\u0421\\u043f\\u0430\\u043c\\u0438\\u043c \\u0433\\u043b\\u0430\\u0432\\u043d\\u044b\\u0439 \\u0435\\u043c\\u0435\\u0439\\u043b \\u0444\\u0438\\u0440\\u043c\\u044b \\u043f\\u0438\\u0441\\u044c\\u043c\\u0430\\u043c\\u0438 \\u0441 \\u0440\\u0430\\u0441\\u0441\\u044b\\u043b\\u043a\\u0430\\u043c\\u0438 \\r\\n- \\u041f\\u043e\\u043d\\u0438\\u0436\\u0435\\u043d\\u0438\\u0435 \\u043f\\u043e\\u0437\\u0438\\u0446\\u0438\\u0439 \\u0441\\u0430\\u0439\\u0442\\u0430 \\u0432 \\u043f\\u043e\\u0438\\u0441\\u043a\\u043e\\u0432\\u0438\\u043a\\u0435 \\u043f\\u043e \\u043b\\u044e\\u0431\\u044b\\u043c \\u043a\\u043e\\u043c\\u043c\\u0435\\u0440\\u0447\\u0435\\u0441\\u043a\\u0438\\u043c \\u043a\\u043b\\u044e\\u0447\\u0430\\u043c. \\r\\n- \\u0421\\u0435\\u043a\\u0440\\u0435\\u0442\\u043d\\u0430\\u044f \\u0442\\u0435\\u0445\\u043d\\u043e\\u043b\\u043e\\u0433\\u0438\\u044f. \\u041e\\u043f\\u044b\\u0442 \\u0440\\u0430\\u0431\\u043e\\u0442\\u044b \\u0441\\u0432\\u044b\\u0448\\u0435 10 \\u043b\\u0435\\u0442. \\r\\n- \\u0413\\u0430\\u0440\\u0430\\u043d\\u0442\\u0438\\u0440\\u0443\\u0435\\u043c \\u0432\\u043e\\u0437\\u0432\\u0440\\u0430\\u0442 \\u0434\\u0435\\u043d\\u0435\\u0436\\u043d\\u044b\\u0445 \\u0441\\u0440\\u0435\\u0434\\u0441\\u0442\\u0432 \\u0432 \\u0441\\u043b\\u0443\\u0447\\u0430\\u0435 \\u043d\\u0435\\u0443\\u0434\\u0430\\u0447\\u0438. \\r\\n- 100% \\u043e\\u0442\\u0447\\u0451\\u0442\\u043d\\u043e\\u0441\\u0442\\u044c. \\r\\n- \\u0421\\u0435\\u043a\\u0440\\u0435\\u0442\\u043d\\u043e\\u0441\\u0442\\u044c \\u043d\\u0430\\u0448\\u0435\\u0439 \\u0440\\u0430\\u0431\\u043e\\u0442\\u044b. \\u041f\\u0440\\u043e \\u0432\\u0430\\u0441 \\u043d\\u0438\\u043a\\u0442\\u043e \\u043d\\u0435 \\u0441\\u043c\\u043e\\u0436\\u0435\\u0442 \\u0443\\u0437\\u043d\\u0430\\u0442\\u044c. \\r\\n \\r\\n\\u0421\\u0442\\u043e\\u0438\\u043c\\u043e\\u0441\\u0442\\u044c \\u0443\\u0441\\u043b\\u0443\\u0433\\u0438 6000 \\u0440\\u0443\\u0431\\u043b\\u0435\\u0439 \\r\\n\\u041f\\u043e\\u043b\\u043d\\u0430\\u044f \\u043e\\u0442\\u0447\\u0451\\u0442\\u043d\\u043e\\u0441\\u0442\\u044c. \\r\\n\\u041e\\u043f\\u043b\\u0430\\u0442\\u0430: \\u041a\\u0438\\u0432\\u0438, \\u042f\\u043d\\u0434\\u0435\\u043a\\u0441.\\u0414\\u0435\\u043d\\u044c\\u0433\\u0438, Bitcoin, Visa, MasterCard... \\r\\n \\r\\n\\u0422\\u0435\\u043b\\u0435\\u0433\\u0430: @xrumers \\r\\nSkype: xrumer.pro \\r\\nWhatsApp: +7(977)536-08-36 \\r\\nemail: support@xrumer.cc \\r\\n \\r\\n\\u0422\\u043e\\u043b\\u044c\\u043a\\u043e \\u044d\\u0442\\u0438! \\r\\n\\u0410 \\u0442\\u0410\\u043a\\u043e\\u0436 \\u0420\\u0430\\u0431\\u043e\\u0442\\u0430\\u0435\\u043c \\u0441\\u043e \\u0421\\u0442\\u0443\\u0434\\u0438\\u044f\\u043c\\u0438!\",\"label\":\"Message\"},\"phone\":{\"value\":\"89775360836\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-15 12:20:09'),(127,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"svidinfo1980@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0421loudjoype\",\"label\":\"First name\"},\"lastname\":{\"value\":\"\\u0421loudjoype\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello, let me introduce you to our program. \\r\\nA program for fast website promotion. \\r\\nResult: \\r\\n- Your site is in the top of the search results. \\r\\n- The counter of visits grows before our eyes. \\r\\n- High scores on all indicators. \\r\\n- Earn money from advertising. \\r\\nThe program has the ability to glue the sites of competitors to omit them in the search results. \\r\\nLearn more about the program. \\r\\nhttps:\\/\\/freetopfast.com\\/ \\r\\ndownload\",\"label\":\"Message\"},\"phone\":{\"value\":\"87367531914\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-15 12:35:55'),(128,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"levkovich-masljukvelimira1991@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"contactwcxlmx\",\"label\":\"First name\"},\"lastname\":{\"value\":\"contactwcxlmx\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Dear sir! \\r\\n \\r\\nWe will send Your messages via contact configurations to the sites of business organizations via all countries of the world in any languages. \\r\\n \\r\\nThe commercial offer is sent to electronic box of institution hundred % will get to inside of the inbox folder! \\r\\n \\r\\n2000 bases: \\r\\nPrice List =\\u00bb xn----7sbb1bbndheurc1a.xn--p1ai\\/prajs-list\\/ \\r\\n \\r\\nTest: \\r\\ntwenty thousand messages on foreign zones to your email - twenty $. \\r\\nWe need from You only E-mail, title and text of the letter. \\r\\n \\r\\nIn our price there are more 800 databases for all domains of the world. \\r\\nCommon databases: \\r\\nAll Europe 44 countries 60726150 of domains - 1100$ \\r\\nAll European Union 28 countries 56752547 of domains- 1000$ \\r\\nAll Asia 48 countries 14662004 of domain names - 300$ \\r\\nAll Africa 50 countries 1594390 of sites - 200$ \\r\\nAll North and Central America in 35 countries 7441637 of domains - 300$ \\r\\nAll South America 14 countries 5826884 of domains - 200$ \\r\\nNew sites from around the world registered 24-48 hours ago. (A cycle of 15 mailings during the month) - 500$ \\r\\nCompanies and Enterprises of Russia 4025015 - 300$ \\r\\nUkraine 1114526 of sites - 100$ \\r\\nAll Russian-speaking countries minus RF are 14 countries and there are 1979217 of domains - 200$ \\r\\nNew sites of the Russian Federation, registered 24-48 hours ago (A cycle of 15 mailings during the month) - 250$ \\r\\n \\r\\nOur databases: \\r\\nWhois-service databases of domain names for all nations of the world. \\r\\nYou can purchase our databases separately from newsletter\'s service at the request. \\r\\n \\r\\nP\\/S \\r\\nPls., do not respond to this letter from your mailbox, as it has been generated in automatic mode and will not reach us! \\r\\nContact Feedback form =\\u00bb xn----7sbb1bbndheurc1a.xn--p1ai\\/to-order\\/ \\r\\n \\r\\nPRICE LIST: \\r\\n \\r\\nTest mailing: $20 \\u2013 20000 contact forms websites \\r\\n \\r\\nAll Europe 44 countries there are 60726150 websites \\u2013 $1100 \\r\\n \\r\\nAll EU 28 countries there are 56752547 websites \\u2013 $1000 \\r\\n \\r\\nAll Asia 48 countries there are 14662004 websites \\u2013 $500 \\r\\n \\r\\nAll Africa 50 countries there are 1594390 websites \\u2013 $200 \\r\\n \\r\\nAll North and Central America is 35 countries there are 7441637 websites \\u2013 $300 \\r\\n \\r\\nAll South America 14 countries there are 5826884 websites \\u2013 $200 \\r\\n \\r\\nTop 1 Million World\\u2019s Best websites \\u2013 $100 \\r\\n \\r\\nTop 16821856 the most visited websites in the world \\u2013 $300 \\r\\n \\r\\nNew websites from around the world registered 24-48 hours ago. (A cycle of 15 mailings during the month) \\u2013 500$ \\r\\n \\r\\nBusinesses and organizations of the Russian Federation \\u2013 there are 4025015 websites \\u2013 $300 \\r\\n \\r\\nAll Russian-speaking countries minus Russia \\u2013 there are 14 countries and 2440822 websites \\u2013 $200 \\r\\n \\r\\nNew websites of the Russian Federation, registered 24-48 hours ago. (A cycle of 15 mailings during the month) \\u2013 250$ \\r\\n \\r\\n1499203 of hosting websites around the world (there are selections for all countries, are excluded from databases for mailings) \\u2013 $150 \\r\\n \\r\\n295285 websites of public authorities of all countries of the world (selections for all countries, are excluded from databases for mailings) \\u2013 $100 \\r\\n \\r\\n13623819 websites online stores Worldwide \\u2013 $350 \\r\\n \\r\\nCMS mailings: \\r\\n \\r\\n3dCart 14689 websites - $50 \\r\\nAdobe CQ5 133567 websites - $80 \\r\\nAdvance 17589 websites - $50 \\r\\nAdVantShop.NET 2453 websites - $30 \\r\\nALMA 7095 websites - $30 \\r\\nAmetys 2389 websites - $30 \\r\\nAmiro 29587 websites - $30 \\r\\nAngora 20357 websites - $50 \\r\\nAVS 1369 websites - $30 \\r\\nBbPress 1487 websites - $30 \\r\\nBESTWEB 2699 websites - $30 \\r\\nBigCommerce 78257 websites - $50 \\r\\nBitrix 319687 websites - $80 \\r\\nBlogger 658267 websites - $80 \\r\\nBlogspot 279865 websites - $80 \\r\\nBuddyPress 51477 websites - $50 \\r\\nBurning Board 4659 websites - $30 \\r\\nCatalyst Web 11689 websites - $50 \\r\\nClassiPress 11796 websites - $50 \\r\\nCMSimple 11052 websites - $30 \\r\\nConcrete5 72100 websites - $50 \\r\\nContao 110897 websites - $80 \\r\\nCONTENIDO 5069 websites - $30 \\r\\nConvio 2268 websites - $30 \\r\\nCoppermine Photo 1296 websites - $30 \\r\\nCS Cart 11400 websites - $30 \\r\\nDatalife Engine\\t42587 websites - $50 \\r\\nDede 230589 websites - $100 \\r\\nDedeEIMS 96068 websites - $50 \\r\\nDIAFAN 4058 websites - $30 \\r\\nDiscuz 47962 websites - $50 \\r\\nDjango 71167 websites - $50 \\r\\nDokuWiki 9588 websites - $30 \\r\\nDotnetnuke 82964 websites - $50 \\r\\nDrupal 978298 websites - $100 \\r\\nEasyBlog 1165978 websites - $100 \\r\\nEPiServer 29876 websites - $50 \\r\\nExpressionEngine 1769823 websites - $150 \\r\\neZ Publish 5367 websites - $30 \\r\\nF- 9356 websites - $30 \\r\\nFireBoard 1567 websites - $30 \\r\\nGeneral Blogs 2067 websites - $30 \\r\\nGetSimple 23094 websites - $50 \\r\\nHost 6871 websites - $30 \\r\\nHostCMS\\t5042 websites - $30 \\r\\nHubSpot 31762 websites - $50 \\r\\ni- 9438 websites - $30 \\r\\nImage 1368 websites - $30 \\r\\nInSales 14149 websites - $50 \\r\\nInSales\\t 11081 websites - $30 \\r\\nInstantCMS 4136 websites - $30 \\r\\nInteractiveBBS 32367 websites - $50 \\r\\nInvision Power Board 2430 websites - $30 \\r\\nIPBoard 2266 websites - $30 \\r\\nIT 15189 websites - $50 \\r\\njforum 1056 websites - $30 \\r\\njobberBase 3387 websites - $30 \\r\\nJoomla K2 154367 websites - $80 \\r\\nJoomla\\t 1906994 websites - $200 \\r\\nKoobi 3722 websites - $30 \\r\\nLiferay\\t 5137 websites - $30 \\r\\nMade Simple 20567 websites - $50 \\r\\nMagento\\t 369447 websites - $80 \\r\\nMediaMaxScript 103896 websites - $80 \\r\\nMediaWiki 41468 websites - $50 \\r\\nMicrosoft SharePoint 13198 \\r\\nMODx\\t 64023 websites - $50 \\r\\nMoodle 8195 websites - $30 \\r\\nMovable Type 13096 websites - $50 \\r\\nMyBB 4367 websites - $30 \\r\\nmyUPB 3397 websites - $30 \\r\\nNetCat\\t 7294 websites - $30 \\r\\nNG 18356 websites - $50 \\r\\nNING 3687 websites - $30 \\r\\nNopCommerce 18600 websites - $30 \\r\\nOpen 5916 websites - $30 \\r\\nOpenCart 667000 websites - $80 \\r\\nOsclass 4652 websites - $30 \\r\\nosCommerce 68468 websites - $50 \\r\\nOUR- 3096 websites - $30 \\r\\nOXID eShop 12200 websites - $50 \\r\\nOxwall 6800 websites - $30 \\r\\nParallels Plesk Sitebuilder 174216 websites - $80 \\r\\nphp 14367 websites - $50 \\r\\nphp Link 2298 websites - $30 \\r\\nphpBB\\t 24400 websites - $30 \\r\\nPHP-Fusion 2596 websites - $30 \\r\\nPHPMelody 2365 websites - $30 \\r\\nPHP-Nuke 2489 websites - $30 \\r\\nPHPShop 2667 websites - $30 \\r\\nPHPWeb 29789 websites - $50 \\r\\nPHPWind 4032 websites - $30 \\r\\nPlone 84962 websites - $50 \\r\\nPowerEasy 1697 websites - $30 \\r\\nPrestashop 434100 websites - $80 \\r\\nQuestion2Answer 5598 websites - $30 \\r\\nR 296498 websites - $80 \\r\\nReadyScript 6487682 websites - $80 \\r\\nS.Builder 394367 websites - $80 \\r\\nShopify\\t 6571650 sites websites - $400 \\r\\nShoutbox 145564 websites - $80 \\r\\nSilverStripe 31721 websites - $50 \\r\\nSimpla 17429 websites - $50 \\r\\nSitecore 74861 websites - $50 \\r\\nSitefinity 4183 websites - $30 \\r\\nSMF 8111 websites - $30 \\r\\nSocialGO 54267 websites - $50 \\r\\nSPIP 28269 websites - $50 \\r\\nSquarespace 1098231 websites - $100 \\r\\nStoreLand 8257 websites - $30 \\r\\nSupeSite 12367 websites - $50 \\r\\nTextpattern 10900 websites - $30 \\r\\nTikiWiki 1446 websites - $30 \\r\\nTilda 47396 websites - $50 \\r\\nTumblr 302357 websites - $80 \\r\\nTYPO3 845009 websites - $80 \\r\\nUmbraco 146064 websites - $80 \\r\\nUMI.CMS\\t 13191 websites - $50 \\r\\nVamShop 1737 websites - $30 \\r\\nvBulletin 14460 websites - $30 \\r\\nVolusion 16006 websites - $50 \\r\\nWallpaperSiteScript 2811 websites - $30 \\r\\nWeebly 191753 websites - $80 \\r\\nWix 3379081 sites websites - $250 \\r\\nWooCommerce 6403862 websites - $400 \\r\\nWordpress 35354537 websites - $650 \\r\\nXenForo 21105 websites - $30 \\r\\nXOOPS 20467 websites - $50 \\r\\nXpressEngine 8565 websites - $30 \\r\\nZen Cart 26524 websites - $30 \\r\\n \\r\\nCountry: \\r\\n \\r\\n.ae 200462 websites United Arab Emirates - $50 \\r\\n.ae 1820 websites International zone United Arab Emirates:.com .net .biz .info .name .tel \\r\\n.ag 11931 websites Antigua & Barbuda - $50 \\r\\n.ai 33130 websites Anguilla - $50 \\r\\n.am 21995 websites Armenia - $50 \\r\\n.am 1684 websites International zone Republic Of Armenia:.com .net .biz .info .name .tel \\r\\n.ar 782608 websites Argentine Republic - $80 \\r\\n.ar 75496 websites International zone Argentina:.com .net .biz .info .name .tel .mobi .asia - $50 \\r\\n.ar.com 135 websites - $30 \\r\\n.at 1356722 websites Republic Of Austria - $100 \\r\\n.at 181907 websites International zone Austria :.com .net .biz .info .name \\r\\n.au 2432174 websites Australia - $150 \\r\\n.au 461279 websites International zone Australia:.com .net .biz .info .name \\r\\n.az 17855 websites Azerbaijan - $50 \\r\\n.az 2036 websites International zone Azerbaijan:.com .net .biz .info .name .tel .mobi .asia - $30 \\r\\n.ba 15725 websites Bosnia and Herzegovina - $30 \\r\\n.ba 2291 websites international zone Bosnia and Herzegovina:.com.net.biz.info.org.name.tel.mobi.asia-$30 \\r\\n.be 1349658 websites Belgium - $100 \\r\\n.be 1056248 websites International zone Belgium:.com .net .biz .info .name \\r\\n.bg 54418 websites Bulgaria - $50 \\r\\n.bg 50685 websites International zone Bulgaria:.com .net .biz .info .name \\r\\n.bo 2602 websites Bolivia - $30 \\r\\n.bo 29415 websites International zone Plurinational State Of Bolivia:.com .net .biz .info .name .tel .mobi .asia-$50 \\r\\n.br 3205100 websites Federative Republic Of Brazil - $200 \\r\\n.br 1230078 websites International zoneFederative Republic Of Brazil:.com .net .biz .info .name . \\r\\n.by 99148 websites Belarus - $50 \\r\\n.by 1574 websites International zone Republic Of Belarus:.com .net .biz .info .name .tel \\r\\n.ca 2587463 websites Canada - $150 \\r\\n.ca 288395 websites International zone Canada:.com .net .biz .info .name \\r\\n.cc 436396 Cocos Keeling Islands websites - $80 \\r\\n.cc 1920589 websites Cocos Islands- $150 \\r\\n.cf 2461460 websites Central African Republic - $150 \\r\\n.cg 526 websites The Democratic Republic Of The Congo - $30 \\r\\n.ch 1629450 websites Swiss Confederation - $100 \\r\\n.ch 205292 websites International zone Switzerland:.com .net .biz .info .name .tel .mobi .asia-$50 \\r\\n.ci 5794 websites Ivory Coast - $30 \\r\\n.ci 112 websites International zone Cote D\'ivoire:.com .net .biz .info .name \\r\\n.cl 590401 websites Chile - $80 \\r\\n.cl 65996 websites International zone Chile:.com .net .biz .info .name .tel .mobi .asia-$50 \\r\\n.cm 29221 websites Cameroon - $50 \\r\\n.cn 23160610 websites China - $600 \\r\\n.cn 1372416 websites International zone China:.com .net .biz .info .name .tel .mobi .asia-$100 \\r\\n.co 1878923 websites Colombia - $100 \\r\\n.co 10854 websites International zone Republic Of Colombia:.com .net .biz .info .name .tel .mobi .asia-$30 \\r\\n.cx 15753 websites Christmas Island - $50 \\r\\n.cy 11092 websites Cyprus - $50 \\r\\n.cy 744 websites International zone Cyprus:.com .net .biz .info .name .tel .mobi .asia-$30 \\r\\n.cz 1001208 websites Czech Republic - $100 \\r\\n.cz 193400 websites International zone Czech:.com .net .biz .info .name .tel .mobi .asia-$50 \\r\\n.de 15078512 websites Federal Republic Of Germany - $350 \\r\\n.de 3894156 websites International zone Germany:.com .net .biz .info .name .tel .mobi .asia-$150 \\r\\n.dk 1319155 websites Denmark - $100 \\r\\n.dk 148164 websites International zone Denmark:.com .net .biz .info .name .tel .mobi .asia-$50 \\r\\n.dm 23318 websites Dominican - $50 \\r\\n.dn.ua 1835 websites - $30 \\r\\n.do 5255 websites Dominican Republic- $30 \\r\\n.dy.fi 1112 websites - $30 \\r\\n.dz 5382 websites Algerian People\'s - $30 \\r\\n.ec 11731 websites Republic Of Ecuador - $50 \\r\\n.ec 2897 websites International zone Republic Of Ecuador:.com .net .biz .info .name .tel .mobi .asia-$30 \\r\\n.ee 131791 websites Republic Estonia - $50 \\r\\n.ee 10490 websites International zone Republic Estonia:.com .net .biz .info .name .tel .mobi .asia-$30 \\r\\n.es 1509048 websites The Kingdom Of Spain - $100 \\r\\n.es 683845 websites International zone Spain:.com .net .biz .info .name .tel .eu 3046076 websites European Union - $150 \\r\\n.eu 633384 websites International zone Europe:.com .net .biz .info .name .fi 361111 websites Republic of Finland - $80 \\r\\n.fi 69631 websites International zone Republic of Finland:.com .net .biz .info .name .fr 2810983 websites French Republic - $150 \\r\\n.fr 639546 websites International zone France:.com .net .biz .info .name .ge 24598 websites Republic Of Georgia - $50 \\r\\n.ge 1676 websites International zone Georgia:.com .net .biz .info .name .tel .gf 996 websites Guiana - $30 \\r\\n.gg 10528 websites Guernsey - $50 \\r\\n.gh 703 websites Ghana - $30 \\r\\n.gi 981 websites Gibraltar - $30 \\r\\n.gp 2044 websites Guadeloupe - $30 \\r\\n.gq 2027422 websites Equatorial Guinea - $100 \\r\\n.gr 327215 websites Hellenic Republic - $80 \\r\\n.gr 57984 websites International zone Hellenic Republic:.com .net .biz .info .name .tel .mobi .asia-$150 \\r\\n.gt 15351 websites Guatemala - $50 \\r\\n.hk 116093 websites Hong Kong Special Administrative Region Of China Hong Kong - $50 \\r\\n.hm 335 websites Heard and McDonald islands - $30 \\r\\n.hn 4732 websites Republic Of Honduras - $30 \\r\\n.hr 75736 websites Croatia Hrvatska - $50 \\r\\n.hr 16592 websites International zone Croatia Hrvatska:.com .net .biz .info .name .tel .mobi .asia \\r\\n.ht 1299 websites Haiti - $30 \\r\\n.hu 53940 websites International zone Hungary:.com .net .biz .info .name .tel .mobi .asia-$50 \\r\\n.ie 209620 websites Republic of Ireland - $50 \\r\\n.ie 49861 websites International zone Republic of Ireland:.com .net .biz .info .name .il 196266 websites The State Of Israel - $80 \\r\\n.il 38537 websites International zone The State Of Israel:.com .net .biz .info .name .tel .in 1157482 websites India - $100 \\r\\n.in 266179 websites International zone India:.com .net .biz .info .name .tel \\r\\n.io 496216 websites British Indian Ocean - $80 \\r\\n.iq 2401 websites Iraq - $30 \\r\\n.ir 574258 websites The Islamic Republic Of Iran - $80 \\r\\n.ir 15487 websites International zone Islamic Republic Of Iran:.com .net .biz .info .name .tel .mobi .asia \\r\\n.it 2410105 websites Italy \\u2013 $150 \\r\\n.it 954040 websites International zone Italian Republic:.com.net.biz.info.org.name.tel.mobi.asia - $100 \\r\\n.je 3016 websites Republic of Ireland - $30 \\r\\n.jp 1825219 websites Japan - $150 \\r\\n.jp 4683252 websites International zone Japan:.com.net.biz.info.org.name.tel.mobi.asia - $200 \\r\\n.jp.net 5170 websites - $30 \\r\\n.ke 14677 websites Republic Of Kenya - $50 \\r\\n.kg 10350 websites Kyrgyz Republic - $30 \\r\\n.kg 664 websites International zone Kyrgyzstan:.com .net .biz .info .name .tel .mobi .asia-$30 \\r\\n.ki 79 websites Kiribati - $30 \\r\\n.kn 3211 websites Saint Kitts and Nevis - $30 \\r\\n.kr 272463 websites Republic Of Korea- $80 \\r\\n.kw 484 websites The State Of Kuwait - $30 \\r\\n.ky 5783 websites Island Cayman - $30 \\r\\n.kz 113180 websites Kazakhstan - $80 \\r\\n.kz 5876 websites International zone Republic Of Kazakhstan:.com .net .biz .info .name .tel .mobi .asia-$30 \\r\\n.lc 1121 websites Saint Lucia - $30 \\r\\n.lk 32654 websites Sri Lanka - $30 \\r\\n.lt 137666 websites Republic Of Lithuania- $50 \\r\\n.lt 27710 websites International zone Lithuania:.com .net .biz .info .name .tel .mobi .asia- $50 \\r\\n.lu 74322 websites Luxembourg - $50 \\r\\n.lu 4125 websites International zone Luxembourg:.com .net .biz .info .name .tel .mobi .asia-$30 \\r\\n.lv 86593 websites Republic Of Latvia - $50 \\r\\n.lv 8887 websites International zone Republic Of Latvia:.com .net .biz .info .name .tel .mobi .asia-$30 \\r\\n.ma 59103 websites The Kingdom Of Morocco - $50 \\r\\n.mc 3046 websites Principality Of Monaco - $30 \\r\\n.md 16730 websites Moldova - $50 \\r\\n.md 1293 websites International zone Moldova:.com .net .biz .info .name .tel .mobi .asia-$30 \\r\\n.me 761596 websites Montenegro - $80 \\r\\n.me 86897 websites International zone Montenegro:.com .net .biz .info .name .tel .mobi .asia-$50 \\r\\n.mg 3715 websites Madagascar- $30 \\r\\n.mk 13266 websites Republic Of Macedonia - $50 \\r\\n.ml 2158835 websites Republic Of Mali - $100 \\r\\n.mn 17044 websites Mongolia - $50 \\r\\n.mq 1112 websites Martinique (French) - $30 \\r\\n.mr 776 websites Mauritania - $30 \\r\\n.ms 7265 websites Montserrat - $30 \\r\\n.mt 1402 websites Republic Of Malta - $30 \\r\\n.mu 6475 websites Maurifius - $30 \\r\\n.mv 1996 websites Republic Of Maldives - $30 \\r\\n.mw 8579 websites Malawi - $30 \\r\\n.mx 670901 websites United Mexican States- $80 \\r\\n.mx 174571 websites International zone Mexico:.com .net .biz .info .name .tel .mobi .asia-$50 \\r\\n.my 143039 websites Malaysia - $50 \\r\\n.na 1094 websites Republic of Namibia - $30 \\r\\n.nc 3497 websites New Coledonia - $30 \\r\\n.nl 3925784 websites The Netherlands - $200 \\r\\n.nl 1019697 websites International zone The Netherlands:.com .net .biz .info .name .tel .mobi .asia-$100 \\r\\n.no 620882 websites Norway - $80 \\r\\n.no 74318 websites International zone Norway:.com .net .biz .info .name .tel .mobi .asia-$50 \\r\\n.nu 255161 websites Republic Of Niue- $50 \\r\\n.nz 593127 websites New Zealand - $80 \\r\\n.om 1701 websites Oman - $30 \\r\\n.pe 83224 websites Republic Of Peru - $50 \\r\\n.pe 59157 websites International zone Republic Of Peru:.com .net .biz .info .name .tel .mobi .asia-$50 \\r\\n.pk 44464 websites Pakistan - $50 \\r\\n.pl 1795299 websites Poland - $100 \\r\\n.pl 327587 websites International zone Republic Of Poland:.com .net .biz .info .name .tel .mobi .asia-$50 \\r\\n.pr 1358 websites Commonwealthof Puerto Rico - $30 \\r\\n.pt 263136 websites Portugal - $80 \\r\\n.pt 17691 websites International zone Republica Portuguesa:.com .net .biz .info .name .tel .mobi .asia-$50 \\r\\n.py 5593 websites Paraguay - $30 \\r\\n.py 653 websites International zone Republic Of Paraguay:.com .net .biz .info .name .tel .mobi .asia - $30 \\r\\n.re 15089 websites Reunion (French) - $50 \\r\\n.ro 424401 websites Republic Of Romania - $80 \\r\\n.ro 42046 websites International zone Republic Of Romania:.com .net .biz .info .name .tel .mobi .asia-$50 \\r\\n.rs 85503 websites Republic Of Serbia - $50 \\r\\n.ru 5025331 websites Russian Federation - $250 \\r\\n.ru 514668 websites International zone Russia:.com .net .biz .info .name .tel .mobi .asia-$80 \\r\\n.rw 3806 websites Rwandese Republic - $30 \\r\\n.sa 20421 websites Saudi Arabia- $50 \\r\\n.sa 5064 websites International zone Saudi Arabia:.com .net .biz .info .name .tel .mobi .asia - $30 \\r\\n.sc 4442 websites Republic Of Seychelles- $30 \\r\\n.se 1491677 websites The Kingdom Of Sweden - $100 \\r\\n.se 293316 websites International zone The Kingdom Of Sweden:.com .net .biz .info .name .tel .mobi .asia-$50 \\r\\n.sg 150351 websites Republic Of Singapore - $50 \\r\\n.sh 7560 websites Saint Helena - $30 \\r\\n.si 103778 websites Republic Of Slovenia- $50 \\r\\n.si 12879 websites International zone Slovenia:.com .net .biz .info .name .tel .mobi .asia-$50 \\r\\n.sk 414198 websites Slovakia- $80 \\r\\n.sk 31572 websites International zone Slovak Republic:.com .net .biz .info .name .tel .mobi .asia-$50 \\r\\n.sm 8897 websites San Marino - $30 \\r\\n.sn 4465 websites Senegal - $30 \\r\\n.sn 344 websites International zone Senegal:.com .net .biz .info .name .tel .mobi .asia-$30 \\r\\n.sr 580 websites Suriname - $30 \\r\\n.sv 8432 websites El Salvador- $30 \\r\\n.sx 2901 websites Sint Maarten - $30 \\r\\n.sy 2972 websites Syria - $30 \\r\\n.sz 321 websites Swaziland - $30 \\r\\n.tc 16384 websites Turks And Caicos Islands - $50 \\r\\n.tf 19841 websites French Southern and Antarctic Territories - $50 \\r\\n.tg 1230 websites Togolez Republic - $30 \\r\\n.th 22368 websites Kingdom Of Thailand- $50 \\r\\n.tj 6874 websites Republic Of Tajikistan- $30 \\r\\n.tj 34 websites International zone Tajikistan:.com .net .biz .info .name .tel .mobi .asia \\r\\n.tk 20085806 websites Tokelau - $500 \\r\\n.tl 2748 websites Democratic Republic of East Timor - $30 \\r\\n.tm 6395 websites Turkmenistan- $30 \\r\\n.tm 44 websites International zone Turkmenistan:.com .net .biz .info .name .tel .mobi .asia \\r\\n.tr 243347 websites Turkish Republic - $80 \\r\\n.tr 138818 International zone Turkish Republic:.com .net .biz .info .name .tel .mobi .asia - $50 \\r\\n.tt 1017 websites Trinidad and Tobago - $30 \\r\\n.ua 553216 websites Ukraina - $80 \\r\\n.ua 147202 websites International zone Ukraine:.com .net .biz .info .name .tel .mobi .asia-$50 \\r\\n.ug 3806 websites Republic Of Uganda - $30 \\r\\n.ug 720 websites International zone Republic Of Uganda:.com .net .biz .info .name .tel .mobi.asia-$30 \\r\\n.uk 5975887 websites United Kingdom - $250 \\r\\n.uk 3304606 websites International zone UK:.com .net .biz .info .name .tel .mobi .asia-$150 \\r\\n.us 3139563 websites United States of America - $200 \\r\\n.us 578927 websites International zone United States of America:.com .net .biz .info .name .tel .mobi .asia-$80 \\r\\n.uy 15571 websites Eastern Republic Of Uruguay - $50 \\r\\n.uy 31812 websites International zone Uruguay:.com .net .biz .info .name .tel .mobi .asia-$30 \\r\\n.uz 38357 websites Republic Of Uzbekistan - $50 \\r\\n.uz 365 websites International zone Republic Of Uzbekistan:.com .net .biz .info .name .tel .mobi .asia \\r\\n.vc 18641 websites Saint Vincent & Grenadines - $50 \\r\\n.ve 14015 websites Venezuela - $50 \\r\\n.ve 2898 websites International zone Bolivarian Republic Of Venezuela:.com .net .biz .info .name .tel .mobi .asia - $30 \\r\\n.vg 8389 websites Virgin Islands (British) - $50 \\r\\n.vi 109 websites Virgin Islands (United States of America) - $30 \\r\\n.vn 436005 websites Socialist Republic Of Vietnam - $80 \\r\\n.vn 161855 websites International zone Socialist Republic Of Vietnam:.com .net .biz .info .name .tel .mobi .asia - $50 \\r\\n.vu 1051 websites Vanuatu - $30 \\r\\n.wf 1133 websites Wallis & Futuna Islands - $30 \\r\\n.ws 99308 websites Independent State Of Samoa - $80 \\r\\n.ye 18 websites Republic Of Yemen - $30 \\r\\n.yt 2004 websites Mayotte (French) - $30 \\r\\n.za 1008308 websites South Africa Republic - $100 \\r\\n \\r\\nwebsite =\\u00bb xn----7sbb1bbndheurc1a.xn--p1ai\",\"label\":\"Message\"},\"phone\":{\"value\":\"82976369748\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-15 14:15:33'),(129,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"c.wolgen@tele2.nl\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Andreafag\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Andreafag\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello, \\r\\n \\r\\nDownload Music Scene Releases: http:\\/\\/0daymusic.org\\/premium.php \\r\\nServer\'s capacity 186 TB Music \\r\\nSupport for FTP, FTPS, SFTP, HTTP, HTTPS. \\r\\nDownload Dance, Electro, House, Techno, Trance, Pop, Rock, Rap... \\r\\n \\r\\nBest regards, \\r\\n0day MP3s\",\"label\":\"Message\"},\"phone\":{\"value\":\"89176317671\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-16 19:37:42'),(130,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"yourmail@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Matthewdralo\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Matthewdralo\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Software to support live stream - Facebook FPlusLive Full \\r\\n \\r\\nFPlusLive Features FPlusLive User Guide \\r\\nYou need to live video on multiple walls, pages, groups at the same time, schedule live videos to live on walls, groups... \\r\\nFPLUSLIVE FUNCTIONS \\r\\nLive video, webcam on page wall, profile, group \\r\\nLive video on multiple pages, walls, groups at the same time. \\r\\nLive webcam on multiple pages, walls, groups at the same time. \\r\\nLive screen on multiple pages, walls, groups at the same time. \\r\\nSchedule live videos on multiple pages and walls. \\r\\nLive repeats 1 or more videos. \\r\\nPlayback the video being livestreamed on facebook (Play Forward). \\r\\nLive youtube videos to facebook. \\r\\nSchedule a live video to the group \\r\\nSchedule a live video to the group once or repeat daily. \\r\\n \\r\\nFree Download Here: \\r\\n \\r\\nhttps:\\/\\/drive.google.com\\/file\\/d\\/1TjiTv3xTvBIN7o_z7-zdDyoaMMMSRrf3 \\r\\nhttps:\\/\\/www.mediafire.com\\/file\\/ytabpfj3euwxzu2\\/FPlusLive.zip \\r\\nhttps:\\/\\/www.dropbox.com\\/s\\/4gve4s1nm8tvxkx\\/FPlusLive.zip \\r\\n \\r\\n \\r\\nThx u\",\"label\":\"Message\"},\"phone\":{\"value\":\"86735128474\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-16 23:41:50'),(131,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"staskrrr@foxmaily.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Jeisamr\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jeisamr\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"\\u043a\\u0430\\u043a\\u0438\\u0435 \\u0432\\u043a\\u0443\\u0441\\u044b \\u0435\\u0441\\u0442\\u044c \\u0443 hqd<\\/a> \\r\\n \\r\\n\\u043a\\u0443\\u043f\\u0438\\u0442\\u044c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0435 \\u0441\\u0438\\u0433\\u0430\\u0440\\u0435\\u0442\\u044b \\u0432 \\u0432\\u043e\\u043b\\u044c\\u0441\\u043a\\u0435\",\"label\":\"Message\"},\"phone\":{\"value\":\"88241823182\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-17 20:30:16'),(132,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"yourmail@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Matthewdralo\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Matthewdralo\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Software to support live stream - Facebook FPlusLive Full \\r\\n \\r\\nFPlusLive Features FPlusLive User Guide \\r\\nYou need to live video on multiple walls, pages, groups at the same time, schedule live videos to live on walls, groups... \\r\\nFPLUSLIVE FUNCTIONS \\r\\nLive video, webcam on page wall, profile, group \\r\\nLive video on multiple pages, walls, groups at the same time. \\r\\nLive webcam on multiple pages, walls, groups at the same time. \\r\\nLive screen on multiple pages, walls, groups at the same time. \\r\\nSchedule live videos on multiple pages and walls. \\r\\nLive repeats 1 or more videos. \\r\\nPlayback the video being livestreamed on facebook (Play Forward). \\r\\nLive youtube videos to facebook. \\r\\nSchedule a live video to the group \\r\\nSchedule a live video to the group once or repeat daily. \\r\\n \\r\\nFree Download Here: \\r\\n \\r\\nhttps:\\/\\/drive.google.com\\/file\\/d\\/1TjiTv3xTvBIN7o_z7-zdDyoaMMMSRrf3 \\r\\nhttps:\\/\\/www.mediafire.com\\/file\\/ytabpfj3euwxzu2\\/FPlusLive.zip \\r\\nhttps:\\/\\/www.dropbox.com\\/s\\/4gve4s1nm8tvxkx\\/FPlusLive.zip \\r\\n \\r\\n \\r\\nThx\",\"label\":\"Message\"},\"phone\":{\"value\":\"82354246328\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-17 21:39:32'),(133,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Jeisamr\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jeisamr\",\"label\":\"Last name\"},\"email\":{\"value\":\"arngolc4@foxmaily.com\",\"label\":\"Email\"},\"message\":{\"value\":\"hqd \\u0441\\u043e\\u0441\\u0442\\u0430\\u0432 \\u0436\\u0438\\u0434\\u043a\\u043e\\u0441\\u0442\\u0438<\\/a> \\r\\n \\r\\n\\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u0430\\u044f \\u0441\\u0438\\u0433\\u0430\\u0440\\u0435\\u0442\\u0430 \\u043a\\u043e\\u043c\\u043f\\u0430\\u043d\\u0438\\u0438 ruyan group ltd.\",\"label\":\"Message\"},\"phone\":{\"value\":\"85415754693\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-17 21:53:11'),(134,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"yourmail@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"DavidPaili\",\"label\":\"First name\"},\"lastname\":{\"value\":\"DavidPaili\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Stealing messages from friends on FACEBOOK \\r\\n \\r\\nLink to download the 7-day trial version: \\r\\n \\r\\nhttps:\\/\\/drive.google.com\\/file\\/d\\/1bflJfzSC-kjdWUFq0DH0z_hNZScNe6A7 \\r\\nhttps:\\/\\/www.mediafire.com\\/file\\/cry2hqji049ymdm\\/Read+Facebook+Messages+2021.zip \\r\\nhttps:\\/\\/www.dropbox.com\\/s\\/mfdniwr64rcyz70\\/Read%20Facebook%20Messages%202021.zip \\r\\n \\r\\n \\r\\n \\r\\n \\r\\nSome of the main functions of the software. \\r\\ndisplay messages. \\r\\nAutomatic location check. \\r\\nCopy the content you choose. and some other functions. \\r\\nWho hasn\'t downloaded yet inbox me directly. \\r\\n \\r\\nThx u\",\"label\":\"Message\"},\"phone\":{\"value\":\"84522888749\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-19 20:06:18'),(135,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"karlenebro32@gmail.com\\r\\n\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Ogden\\r\\n\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mike Ogden\\r\\n\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi \\r\\n \\r\\nI have just verified your SEO on translucentcomputing.com for its SEO metrics and saw that your website could use a push. \\r\\n \\r\\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \\r\\n \\r\\nPlease check our pricelist here, we offer SEO at cheap rates. \\r\\nhttps:\\/\\/www.hilkom-digital.de\\/cheap-seo-packages\\/ \\r\\n \\r\\nStart enhancing your sales and leads with us, today! \\r\\n \\r\\nregards \\r\\nMike Ogden\\r\\n \\r\\nHilkom Digital Team \\r\\nsupport@hilkom-digital.de\",\"label\":\"Message\"},\"phone\":{\"value\":\"83968217834\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-20 05:24:12'),(136,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"svidinfo1980@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0421loudjoype\",\"label\":\"First name\"},\"lastname\":{\"value\":\"\\u0421loudjoype\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello, let me introduce you to our program. \\r\\nA program for fast website promotion. \\r\\nResult: \\r\\n- Your site is in the top of the search results. \\r\\n- The counter of visits grows before our eyes. \\r\\n- High scores on all indicators. \\r\\n- Earn money from advertising. \\r\\nThe program has the ability to glue the sites of competitors to omit them in the search results. \\r\\nLearn more about the program. \\r\\nhttps:\\/\\/freetopfast.com\\/ \\r\\ndownload\",\"label\":\"Message\"},\"phone\":{\"value\":\"81489829596\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-22 09:44:52'),(137,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Peter\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Marini\",\"label\":\"Last name\"},\"email\":{\"value\":\"peter.marini@tigera.io\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello,\\r\\n\\r\\nI represent Tigera - the inventor and maintainer of Project Calico, the most widely adopted open source Kubernetes networking\\/network policy solution globally.\\r\\n\\r\\nWe offer a commercially supported version of Calico that provides network Security and Observability (microsegmentation, encryption, IDS, flow logs) for Kubernetes, used by organizations like Ford, AT&T, JPMC, Morgan Stanley, Merck, Visa, Servicenow, Box etc.\\r\\n\\r\\nWe have a channel program and would like to check if you have interest in partnering with us?\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"2369967456\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-22 23:39:30'),(138,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"ik-nic-666@yahoo.co.uk\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Ramonexali\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Ramonexali\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Altcoins that will make you a millionaire >>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc4cmzn&sa=D&Lw=Cy&usg=AFQjCNEP3pFIxmdAcAgRw9u1yiPvJjQPhA <<<<<<<<<<<<<\",\"label\":\"Message\"},\"phone\":{\"value\":\"83165717183\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-23 07:45:06'),(139,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Chad\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mason\",\"label\":\"Last name\"},\"email\":{\"value\":\"chad.mason270@hotmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi there,\\r\\n\\r\\nWould you be interested in getting a free consultation to learn a little more about how search engine optimization can help make your website more profitable? I\'m a freelancer who provides search engine optimization services, and I\'m seeking new clients that have good businesses, but are struggling with their search engine rankings. \\r\\n\\r\\nThere are some issues that need to be fixed for your website to move up in the rankings in Google and the other search engines. I\'d like to bring more traffic\\/sales to your site, let me know your preferred contact number and the best time for a call. Talk to you soon! \\n\\nChad Mason\",\"label\":\"Message\"},\"phone\":{\"value\":\"(342) 565-7781\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-24 20:33:50'),(140,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"hameda786@hotmail.co.uk\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Ramonexali\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Ramonexali\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Buy altcoins for $ 5,000 and sell them for $ 16,000,000 >>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc4ckxi&sa=D&Bd=Vq&usg=AFQjCNHWvyBJV8dDSVZri0fbrNeioHNymQ <<<<<<<<<<<<<\",\"label\":\"Message\"},\"phone\":{\"value\":\"86493287997\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-25 05:28:04'),(141,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"fedornisum@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Ramonexali\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Ramonexali\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Manage to earn millions of dollars on altcoins >>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc4i9X0&sa=D&Ve=Jh&usg=AFQjCNE2EmOUFVcE166-vAX00JJWo-a21Q <<<<<<<<<<<<<\",\"label\":\"Message\"},\"phone\":{\"value\":\"85461922636\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-26 04:53:56'),(142,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"info@translucentcomputing.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Ashly\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Ashly\",\"label\":\"Last name\"},\"company\":{\"value\":\"Ashly\",\"label\":\"Company name\"},\"message\":{\"value\":\"Good Morning\\r\\n\\r\\nOur Medical-Grade Toenail Clippers is the safest and especially recommended for those with troubles with winding nails, hard nails, two nails, nail cracks, deep nails, thickened nails etc..\\r\\n\\r\\nGet yours: thepodiatrist.online\\r\\n\\r\\nCheers,\\r\\n\\r\\nAshly\\r\\nHome | Translucent | Toronto\'s Cloud Native Application Development & DevOps Consultants | We Listen. We Learn. We Inform. We Support\",\"label\":\"Message\"},\"phone\":{\"value\":\"0290-7838715\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-27 10:38:40'),(143,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Rick\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Carlson\",\"label\":\"Last name\"},\"email\":{\"value\":\"rc7389@pronovapartners.com\",\"label\":\"Email\"},\"message\":{\"value\":\"ProNova Partners would like to collaborate with you on the sale of your business ASAP. Buyer demand is sky-high for our offerings - we closed ALMOST ALL of the new engagements we were hired for nationwide in 2020 despite the pandemic. Valuations are ridiculous {STILL}, our closing timeframes are short, and the good times I\'m afraid won\'t last forever. Interest rates will rise eventually, which will make it increasingly harder for Buyers to leverage up & pay 4-9x (PLUS) NET income on the best opportunities, plus there lies the possiblity of long term capital gains taxes on the sale of your business nearly doubling....The time is now!\\r\\n\\r\\nIf you\'re interested in selling or just checking in on the valuation of your enterprise, please feel free to reach out to me directly to book an appointment {CONFIDENTIALLY} to explore further: https:\\/\\/www.calendly.com\\/rickcarlson\\r\\n\\r\\nOn our end - we had 13 closings in \'Q2, with a dozen more (ranging from $275k to $35MM all-cash) closings scheduled by 9\\/30\\/21 and we\'re running low on salable inventory again. M&A marches onward despite these uncertain times!! \\r\\n\\r\\nSome of our recent new engagements just listed from \'Q1 include: \\r\\n\\r\\nA sales recruiting firm with high traffic websites, submit the NDA HERE--------->https:\\/\\/pronovapartners.com\\/engagement\\/sales-recruiting-firm-with-high-traffic-websites-for-sale\\/\\r\\nHigh net income specialized container logistics broker, submit the NDA HERE--------->https:\\/\\/pronovapartners.com\\/engagement\\/growing-nimble-trucking-company-licensed-48-states-for-sale\\/\\r\\nFortune 500 operational IT security firm, submit the NDA HERE--------->https:\\/\\/pronovapartners.com\\/engagement\\/fortune-500-operational-it-security-firm-for-sale\\/\\r\\nCoastal California home remodeling company with $5MM in rev\'s, submit the NDA HERE--------->https:\\/\\/pronovapartners.com\\/engagement\\/coastal-california-home-remodeling-company-for-sale\\/\\r\\nAn awesome \'farm to table software platform\' for sale, submit the NDA HERE--------->https:\\/\\/pronovapartners.com\\/engagement\\/literal-farm-to-table-technology-platform-for-sale\\/\\r\\n20% Net margin nationwide notary services firm, submit the NDA HERE--------->https:\\/\\/pronovapartners.com\\/engagement\\/nationwide-notary-service-company\\/\\r\\n\\r\\nOr check out one of our other 105+ active engagements across all SIC codes \\/ geographies \\/ valuations! You can also bookmark our website, https:\\/\\/www.pronovpartners.com\\/engagements\\/ to check in on future deals anytime.\\r\\n\\r\\nI\'d ideally like to take some time to begin a discussion on the sale of your Company & we can commence \'packaging\' this opportunity together so we can hopefully go to market and close by year end. If you disagree, for whatever reason, hopefully just give me a follow up date that you think makes sense and I can circle back with you at that time. \\r\\n\\r\\nBut why ProNova Partners?\\r\\n\\r\\n- We have plenty of cash buyers that are active & decisive acquirers for good inventory. \\r\\n- We possess the network and the experiences to orchestrate virtually any transaction from initial consultation to the close of escrow in a timely manner.\\r\\n- We pay for upgraded advertising which in turn ensures maximum exposure to your business far beyond our company database of 32,334+ buyers looking for interesting targets.\\r\\n- We specialize in highly-sensitive and confidential sales and recognize its importance, therefore all buyers have an NDA on file with us.\\r\\n- We work together with our highly skilled team to produce top-tier marketing materials and pitch books that impel buyers to write offers.\\r\\n- We are experts in valuation - by applying the correct valuation strategy to your firm, we can therefore negotiate the highest possible price for your business.\\r\\n- We understand the importance of time to close, and considering all of the above we also have an average 90 days to close for our buyers \\/ sellers.\\r\\n- We are a success fee firm, unless we close the transaction for you, there is no charge to you.\\r\\n\\r\\nIf you\'re interested in joining me on a jouney to increase the value of your business, take the value builder score questionnaire and in 12-24 months we\'ll sell your business for maximum value, no matter the outcome of tax legislation the improvements to your business will not matter in comparison to the higher sales price we\'ll achieve together: https:\\/\\/www.pronovapartners.com\\/services\\/\\r\\n\\r\\nWhat\'s your magic #? What\'s your exit plan strategy? What are you waiting for?\\r\\n\\r\\nCheers,\\r\\n\\r\\n-Rick.\\r\\n-- \\r\\nRick Carlson\\r\\nCEO\\r\\nProNova Partners\\r\\n825 Wilshire Blvd., Suite 536\\r\\nSanta Monica, CA 90401\\r\\nPhone: 833-776-6682\\r\\nEmail: RC7389@ProNovaPartners.com\\r\\nWeb: https:\\/\\/www.ProNovaPartners.com\\r\\n_______________________________________\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"8337766682\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-27 11:49:08'),(144,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"noreply@get-more-leads-now.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Ultimate\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Ultimate\",\"label\":\"Last name\"},\"company\":{\"value\":\"http:\\/\\/Get-More-Leads-Now.com\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi, would you like more business leads at a lower cost? Currently http:\\/\\/Get-More-Leads-Now.com is offering our popular unlimited lead generation software package - at a reduced price for a limited time. \\r\\n \\r\\nDownload and install now to be building databases of leads in minutes: \\r\\n \\r\\nhttp:\\/\\/Get-More-Leads-Now.com \\r\\n \\r\\nThe Ultimate Lead Generation Pack works by automatically visting yellow page directories and building a database according to your search terms. Other software in the pack then finds emails, phone numbers, and other details for that database. The results can be used for email, cold-calling, direct mail, or to sell immediately - priced per lead. Runs on Windows, Mac, and Linux with multiple job and VPN\\/proxy support. Similar software retails for over $100 with less features. \\r\\n \\r\\nThis pack is only available on sale as a short promotional offer, please download now if at all interested. \\r\\n \\r\\nClick Here: http:\\/\\/Get-More-Leads-Now.com \\r\\n \\r\\nHave a Great Day, \\r\\nThe Ultimate Lead Generation Pack Team \\r\\n \\r\\nunsubscribe\\/remove Here: http:\\/\\/get-more-leads-now.com\\/r.php?url=translucentcomputing.com&id=ulg36\",\"label\":\"Message\"},\"phone\":{\"value\":\"438-190-7764\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-27 21:14:44'),(145,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"dcjulien10@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"ChristyHuh\",\"label\":\"First name\"},\"lastname\":{\"value\":\"ChristyHuh\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Free world US - https:\\/\\/bit.ly\\/3qHfz1F\",\"label\":\"Message\"},\"phone\":{\"value\":\"84714791158\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"e4e38653-2589-4fee-9e16-ba409dcf5670\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-07-28 17:18:44'),(146,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"yourmail@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Stevenwhame\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Stevenwhame\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Download GPlus software - Auto Marketing for Youtube \\r\\n \\r\\nYou are selling online, and do not have an effective product marketing solution. FPlus is the number 1 choice in Youtube marketing. \\r\\nFree Download Here: \\r\\n \\r\\nhttps:\\/\\/drive.google.com\\/file\\/d\\/1vrl4EGBRKpJ2rAOEfMyIIWyfGephEjvp \\r\\nhttps:\\/\\/www.mediafire.com\\/file\\/o89ib5at4ydt6xn\\/GPlus.zip \\r\\nhttps:\\/\\/www.dropbox.com\\/s\\/bnvybd6v3iye9nr\\/GPlus.zip \\r\\n \\r\\n \\r\\n \\r\\n \\r\\nThe main functions of the software \\r\\n \\r\\nCreate a youtube channel - Create Channel - GPlus \\r\\nGPlus helps you create many different channels on youtube of the same gmail account. Thus, you can use it to perform cross-channel interactions on youtube, increase interaction for channels... \\r\\nGPlus helps you to search for videos by keyword. You can set the conditions of the videos you want to search (by rating, view ...) and choose to search on multiple pages. \\r\\nGPlus supports you to scan the playlist of a channel on youtube. You can scan the number of videos in a playlist, the total number of views and the names of these playlists. \\r\\nGPlus helps you increase subscribers on youtube channels. You can use sub accounts to increase the subs of the main channels. \\r\\nGPlus will help you comment on youtube videos, and help increase likes and subscribers for your youtube channel. \\r\\nGPlus helps you subscribe to the channels you want on youtube quickly. This function allows using multiple accounts to subscribe to one or more channels, from there, you can subscribe to your own or someone else\'s chanel. \\r\\nThis function will help you get the Links of the Contributors of the videos on your youtube channel using GPlus software. This link allows anyone to edit your playlist without your permission, as long as there is a collaborator link, other people can edit this playlist. \\r\\nYou can set up and reset your playlist: security, sort or change playlist name only with GPlus software. \\r\\nHelps you to search videos by keyword. You can find the address ID, title, view\\u2026 At the same time, you can also download the background image of any video to your computer and GPlus. \\r\\nGPlus helps you check the playlist information of any channel: ID, title, number of videos... \\r\\nGPlus helps you scan and remove corrupted videos from your playlist or add, mix new videos into your playlist. \\r\\nGPlus helps you to create a series of playlists on your youtube channel. Playlist is created from the videos you find by keyword on youtube and your videos are added in the video link list. \\r\\nScan and check proxy quickly, support scanning proxy with 1000 threads at the same time. \\r\\nAutomatically find youtube video links and automatically bulk comment on found videos. \\r\\n \\r\\nThank you\",\"label\":\"Message\"},\"phone\":{\"value\":\"87936781179\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-28 22:55:17'),(147,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"povstemskajalada1985@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"postingilsa\",\"label\":\"First name\"},\"lastname\":{\"value\":\"postingilsa\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Good whatever time of day it is where you are! \\r\\n \\r\\nWidespread placement of ads on the Internet for organic growth of factors influencing consumer behaviour. \\r\\nwebsite: xn----ftbeand5abdikisgee.xn--p1ai\\/home\\/ \\r\\n \\r\\nFactors influencing consumer behaviour are certain actions of users on the internet resource, such as: \\r\\nlogging in to the website, viewing pages, time spent on the web page, \\u201cclicks\\u201d on links, returns to the web page. \\r\\n \\r\\nUTO: \\r\\nMass placement of your ads on the Internet in order to attract potential customers. \\r\\nGrowth of behavioural factors occurs by the mass placement of your ads without specifying the address of your internet resource, but with the indication of other identifying features according to which you directly become number one in the search results. These features can include a phone number, a unique name of the company or website, an identifier (a number, a product code, services, promotions), a physical address of the company and etc. \\r\\n \\r\\nMAIN AIM: \\r\\nThe large-scale attraction of customers to your online resource, services and products. \\r\\nGrowth of factors influencing consumer behaviour. \\r\\n \\r\\nBENEFIT: \\r\\nAn increase in internet resource visitors who will find your webpage directly from ads using search as well as through additional results of search engines themselves related to a wide range of user queries on your subject. \\r\\n \\r\\nTHE MAIN ADVANTAGES OF THIS AD: \\r\\n1. Mass promotion. \\r\\n2. Quick placement. \\r\\n3. Cost. \\r\\n4. Placement by subject. \\r\\n5. The widest reach. \\r\\n6. Targeting. \\r\\n7. Organic growth of behavioural factors. \\r\\n \\r\\nREASONS TO ORDER MASS ADS PLACEMENT ON THE INTERNET \\u0414\\u041b\\u042f GROWTH OF BEHAVIOURAL FACTORS: \\r\\n \\r\\n1.Large-scale attraction of customers to your services and products through direct traffic from ads. \\r\\n2.Organic promotion of your online resource, due to search beginning to additionally show it for the widest range of search queries based on your topic. \\r\\n3. The absence of \\\"bans\\\" and \\\"filters\\\" of search, due to ads being published without an indication of an live link to the website. \\r\\n4. An increase in website traffic, which leads to an increase in orders and an expansion of the client base. \\r\\n5. \\\"Warm traffic\\\", since only interested users visit the online resource. \\r\\n6. Attraction of legal entities and individuals. \\r\\n7. Analysis of demand for services and goods. \\r\\n8.Placement of your ads in different countries around the world. \\r\\n \\r\\nWHERE ADS ARE PUBLISHED: \\r\\n \\r\\nAds are placed: on billboards, in guest books, on forums, in comments, in catalogues. \\r\\nAds are placed on your: landing pages,websites, phones, YouTube videos, social media accounts , and on links to your other ads. \\r\\n \\r\\nBAN: \\r\\nIn this ad a ban by search engine is not possible, since ads are published without specifying an URL to the website. \\r\\n \\r\\nYour actions: \\r\\nYou send us the text of the ad, where your identifier or unique name is indicated at the end of the message, according to which an engaged visitor can quickly find your web page in search results in order to get more information about your service. \\r\\nTo do this, identifier or a unique name must be published in the appropriate section of your online resource \\u0438 easily be found in search results. \\r\\n \\r\\n \\r\\nMacros: \\r\\nRandomisation of ads is done according to the formula, which is commonly accepted by many programs. As a result of randomisation, a lot of unique ads are obtained from a single ad variant. \\r\\n \\r\\nThis is achieved by physically synomising the ad text, while the meaning of the messages does not change and remains understandable. \\r\\n \\r\\nwebsite: xn----ftbeand5abdikisgee.xn--p1ai\\/home\\/\",\"label\":\"Message\"},\"phone\":{\"value\":\"81447456577\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-28 23:57:58'),(148,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"astetriax@rvmail.xyz\",\"label\":\"Email\"},\"firstname\":{\"value\":\"depphalge\",\"label\":\"First name\"},\"lastname\":{\"value\":\"depphalge\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"daily cialis online<\\/a>\",\"label\":\"Message\"},\"phone\":{\"value\":\"89891621886\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-29 02:02:16'),(149,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"lonWainna@svmail.xyz\",\"label\":\"Email\"},\"firstname\":{\"value\":\"binquinty\",\"label\":\"First name\"},\"lastname\":{\"value\":\"binquinty\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"order cialis<\\/a>\",\"label\":\"Message\"},\"phone\":{\"value\":\"88885332193\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-29 07:40:45'),(150,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"lonWainna@svmail.xyz\",\"label\":\"Email\"},\"firstname\":{\"value\":\"binquinty\",\"label\":\"First name\"},\"lastname\":{\"value\":\"binquinty\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"buy cialis on line<\\/a>\",\"label\":\"Message\"},\"phone\":{\"value\":\"82893955777\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-29 09:19:10'),(151,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"Buigolf@sufmail.xyz\",\"label\":\"Email\"},\"firstname\":{\"value\":\"JUINNYDIZ\",\"label\":\"First name\"},\"lastname\":{\"value\":\"JUINNYDIZ\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"purchasing cialis online<\\/a>\",\"label\":\"Message\"},\"phone\":{\"value\":\"89963349739\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-29 09:57:54'),(152,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Chad\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mason\",\"label\":\"Last name\"},\"email\":{\"value\":\"chad.mason270@hotmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi there,\\r\\n\\r\\nWould you be interested in getting a free consultation to learn a little more about how search engine optimization can help make your website more profitable? I\'m a freelancer who provides search engine optimization services, and I\'m seeking new clients that have good businesses, but are struggling with their search engine rankings. \\r\\n\\r\\nThere are some issues that need to be fixed for your website to move up in the rankings in Google and the other search engines. I\'d like to bring more traffic\\/sales to your site, let me know your preferred contact number and the best time for a call. Talk to you soon! \\n\\nChad Mason\",\"label\":\"Message\"},\"phone\":{\"value\":\"(342) 565-7781\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-30 14:31:56'),(153,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Chloe\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Morgan\",\"label\":\"Last name\"},\"email\":{\"value\":\"chloemorgan965@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi There,\\r\\n\\r\\nI am just checking to see if you are interested in getting your site to the top of the search engines. I am a search engine optimizer and I\'m very good at what I do. Getting to the top of the search engines for your keywords is the very best thing you can do to increase sales dramatically. \\r\\n\\r\\nPlease let me know. \\n\\nThank you!\\r\\nChloe Morgan\",\"label\":\"Message\"},\"phone\":{\"value\":\"(904) 417-8071\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-30 15:46:49'),(154,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Dennis\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Perpetua\",\"label\":\"Last name\"},\"email\":{\"value\":\"dennis@qualitybloggeroutreach.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello, \\r\\n\\r\\nI wonder if you received the message I sent a few days ago? \\r\\n\\r\\nThis is Dennis Perpetua from QGP.com,\\r\\n\\r\\nWe\\u2019re interested in advertising on your site. Is this something you\\u2019d be willing to discuss? \\r\\n\\r\\n\\r\\n\\r\\nDennis Perpetua\\r\\nOutreach Manager\\r\\nwww.qgp.com\\r\\n\\r\\n\\r\\n\\r\\nP.S.: If you don\'t want me to contact you again, just let me know.\",\"label\":\"Message\"},\"phone\":{\"value\":\"833-288-8913\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-07-31 00:52:18'),(155,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"vanessavoidejn@nettirautakauppa.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"VanessaApatt\",\"label\":\"First name\"},\"lastname\":{\"value\":\"VanessaApatt\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"A month ago, when a 37-year-old dispassionate of a Singapore boarding squaddie constitution school in lieu of of people with daft disorders was diagnosed with a coronavirus, the unceasing of the classifying did not get a panic. Prepossessing into account the specifics of the primary principle, all its shillelagh and most of the fret crop inhabitants were vaccinated against Covid-19 as being at jeopardy lodged with someone in February-March. Anyway, accepted in engulf, the boarding govern was closed in compensation quarantine, and all employees, patients and other people who recently communicated with the algolagnic handmaiden or her manage were quarantined and began to be regularly tested. Days the next week, the virus was detected in three dozen people, including the 30-year-old pains by reason of at from the Philippines, as adequately as four other employees of the boarding midway from the word go and 26 of its lasting residents. Most of those infected were fully vaccinated against Covid-19... You can be in with another article on this concern at this entanglement https:\\/\\/pocsports.forsaljning.site<\\/a> I think you are wrong. I\'m sure. Let\'s discuss it. Write to me in PM, we will talk.. \\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"82937629652\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-03 04:14:35'),(156,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"earnestbell7162@gmail.com\\r\\n\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Allford\\r\\n\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mike Allford\\r\\n\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi there \\r\\n \\r\\nDo you want a quick boost in ranks and sales for your translucentcomputing.com website? \\r\\nHaving a high DA score, always helps \\r\\n \\r\\nGet your translucentcomputing.com to have a DA between 50 to 60 points in Moz with us today and rip the benefits of such a great feat. \\r\\n \\r\\nSee our offers here: \\r\\nhttps:\\/\\/www.monkeydigital.co\\/product\\/moz-da50-seo-plan\\/ \\r\\n \\r\\nNEW: \\r\\nhttps:\\/\\/www.monkeydigital.co\\/product\\/ahrefs-dr60\\/ \\r\\n \\r\\n \\r\\nthank you \\r\\nMike Allford\\r\\n \\r\\nsupport@monkeydigital.co\",\"label\":\"Message\"},\"phone\":{\"value\":\"87475588292\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-03 04:38:58'),(157,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"cardwell.cathryn@msn.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Cathryn\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Cathryn\",\"label\":\"Last name\"},\"company\":{\"value\":\"Cathryn\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello there \\r\\n \\r\\nCAREDOGBEST\\u2122 - Personalized Dog Harness. All sizes from XS to XXL. Easy ON\\/OFF in just 2 seconds. LIFETIME WARRANTY.\\r\\n\\r\\nClick here: caredogbest.com\\r\\n \\r\\nHave a great time, \\r\\n \\r\\nCathryn\\r\\nHome | Translucent | Toronto\'s Cloud Native Application Development & DevOps Consultants | We Listen. We Learn. We Inform. We Support\",\"label\":\"Message\"},\"phone\":{\"value\":\"(35) 6166-4750\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-03 05:52:02'),(158,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"a.v.massenbach@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"ColinNab\",\"label\":\"First name\"},\"lastname\":{\"value\":\"ColinNab\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello. \\r\\nWhy did you remove the news that the inhabitants of Australia and New Zealand began to earn massively from $15,000 per week using cryptocurrency without doing anything, just investing once? \\r\\nIs this due to the fact that people began to quit en masse? \\r\\nI also registered in this system and now my passive income ranges from $27000 to $35000 per week https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc4qpHr&sa=D&Nf=By&usg=AFQjCNGi73hD0ca-Pznb1dMX6SOtxVHJ2A \\r\\nEven my parents who do not understand computers, and even more so in cryptocurrencies, easily earn from $13,000 per week https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc4qpHr&sa=D&Cp=Hi&usg=AFQjCNGi73hD0ca-Pznb1dMX6SOtxVHJ2A\",\"label\":\"Message\"},\"phone\":{\"value\":\"85776721622\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-04 05:06:45'),(159,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"helensantana7162@gmail.com\\r\\n\",\"label\":\"Email\"},\"firstname\":{\"value\":\"SEO X Press Digital Agency\",\"label\":\"First name\"},\"lastname\":{\"value\":\"SEO X Press Digital Agency\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi there \\r\\n \\r\\n \\r\\nI have just checked translucentcomputing.com for the current search visibility and saw that your website could use a push. \\r\\n \\r\\n \\r\\nWe will improve your Ranks organically and safely, using only whitehat methods, \\r\\n \\r\\n \\r\\nIf interested, please email us \\r\\n \\r\\nsupport@digital-x-press.com \\r\\n \\r\\n \\r\\nregards \\r\\nMike Bishop\\r\\n \\r\\nSEO X Press Digital Agency \\r\\nhttps:\\/\\/www.digital-x-press.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"81627637471\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-04 17:07:57'),(160,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Jarred\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Miller\",\"label\":\"Last name\"},\"email\":{\"value\":\"jmiller22@hotmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"It looks like you have a couple spelling errors on your website such as the word \\\"Telles\\\". Check out a service like SpellAce.com to help. We\'ve used it in the past and liked it.\",\"label\":\"Message\"},\"phone\":{\"value\":\"914-282-1841\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-05 02:06:40'),(161,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"RalphFes\",\"label\":\"First name\"},\"lastname\":{\"value\":\"RalphFes\",\"label\":\"Last name\"},\"email\":{\"value\":\"yourmail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Bin card creation software to create a Canva Pro account 1 month \\r\\n \\r\\n \\r\\n \\r\\n \\r\\nDownload here : \\r\\nhttps:\\/\\/filehug.com\\/BIN_CCGEN_2021.zip \\r\\nhttps:\\/\\/filerap.com\\/BIN_CCGEN_2021.zip \\r\\nhttps:\\/\\/fileshe.com\\/BIN_CCGEN_2021.zip \\r\\n \\r\\nThank you\",\"label\":\"Message\"},\"phone\":{\"value\":\"89671418334\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-05 06:39:00'),(162,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"davidjorgo366@dublin.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"DavidBramn\",\"label\":\"First name\"},\"lastname\":{\"value\":\"DavidBramn\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Everyone who needs money should try this Robot out. \\r\\n------> thankfulhannl.geronmonet.cn<\\/a> \\r\\n------> defeatedeafee.geronmonet.cn\",\"label\":\"Message\"},\"phone\":{\"value\":\"88533974312\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-05 17:34:44'),(163,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Chrissy\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Allan\",\"label\":\"Last name\"},\"email\":{\"value\":\"chrissy@youralexadirectory.link\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \\r\\n\\r\\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\\r\\n\\r\\nIts simple & easy; Register your business here --> \\r\\nhttps:\\/\\/voiceregbiz1.xyz\\/mroe-cusotmers\\/?=translucentcomputing.com\\r\\n\\r\\n\\r\\nChrissy\\r\\nVoice Activation Follow-up Specialist\\r\\nYour Alexa Directory\\r\\n\\r\\n\\r\\n\\r\\n \\r\\n2764 Pleasant Road Suite Suite A PMB 708\\r\\nFort Mill, SC 29708\\r\\n\\r\\nYou can skip future marketing messages here:\\r\\nhttps:\\/\\/voiceregbiz1.xyz\\/unsubscribe.php\\/?site=translucentcomputing.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"805-372-3366\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"08da899c-17a3-4d99-9f80-5ed61dc7d493\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-08-05 22:42:38'),(164,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"temptheatsecon1981@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"callmeAdusa\",\"label\":\"First name\"},\"lastname\":{\"value\":\"callmeAdusa\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"call me whatsapp: https:\\/\\/wa.me\\/79910404425\",\"label\":\"Message\"},\"phone\":{\"value\":\"89761482665\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-06 03:47:44'),(165,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"jeannine.cremean36@msn.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Jeannine\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jeannine\",\"label\":\"Last name\"},\"company\":{\"value\":\"Jeannine\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hey there \\r\\n \\r\\nBody Revolution - Medico Postura\\u2122 Body Posture Corrector\\r\\nImprove Your Posture INSTANTLY!\\r\\n\\r\\nGet it while it\'s still 60% OFF! FREE Worldwide Shipping!\\r\\n\\r\\nGet yours here: medicopostura.com\\r\\n \\r\\nEnjoy, \\r\\n \\r\\nJeannine\\r\\nHome | Translucent | Toronto\'s Cloud Native Application Development & DevOps Consultants | We Listen. We Learn. We Inform. We Support\",\"label\":\"Message\"},\"phone\":{\"value\":\"482 0761\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-06 15:48:05'),(166,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"malinoleg91@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"skyreveryMouck\",\"label\":\"First name\"},\"lastname\":{\"value\":\"skyreveryMouck\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\" \\r\\nhttps:\\/\\/www.skyrevery.com\\/destinations\\/private-jet-linz\\/ - Linz Private Jet Charter - more information on our website https:\\/\\/skyrevery.com - skyrevery.com \\r\\nhttps:\\/\\/skyrevery.com\\/ - Private jet rental at SkyRevery allows you to use such valuable resource as time most efficiently. \\r\\nYou are the one who decides where and when your private jet will fly. It is possible to organize and perform a flight between any two civil airports worldwide round the clock. In airports, private jet passengers use special VIP terminals where airport formalities are minimized, and all handling is really fast \\u2013 you come just 30 minutes before the estimated time of the departure of the rented private jet. \\r\\nWhen you need https:\\/\\/skyrevery.com\\/ - private jet charter now, we can organise your flight with departure in 3 hours from confirmation.\",\"label\":\"Message\"},\"phone\":{\"value\":\"82812623279\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-07 09:32:37'),(167,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"LorenzoAssix\",\"label\":\"First name\"},\"lastname\":{\"value\":\"LorenzoAssix\",\"label\":\"Last name\"},\"email\":{\"value\":\"christiedazzo@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\" \\u0414\\u043e\\u043b\\u0433\\u043e \\u0438\\u0441\\u043a\\u0430\\u043b \\u0438 \\u043d\\u0430\\u043a\\u043e\\u043d\\u0435\\u0446 \\u043d\\u0430\\u0448\\u0435\\u043b \\u0434\\u0435\\u0439\\u0441\\u0442\\u0432\\u0438\\u0442\\u0435\\u043b\\u044c\\u043d\\u043e \\u043f\\u043e\\u043b\\u0435\\u0437\\u043d\\u044b\\u0439 \\u0441\\u0430\\u0439\\u0442 \\u043f\\u0440\\u043e \\u0430\\u0432\\u0442\\u043e \\r\\n \\r\\n \\r\\n\\u0441\\u0442\\u0430\\u0442\\u044c\\u0438 \\u043f\\u0440\\u043e \\u0430\\u0432\\u0442\\u043e\\u043c\\u043e\\u0431\\u0438\\u043b\\u0438 https:\\/\\/autodoc24.ru\\/\",\"label\":\"Message\"},\"phone\":{\"value\":\"88974454746\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-07 12:18:11'),(168,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Heather\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Ellison\",\"label\":\"Last name\"},\"email\":{\"value\":\"heathere011@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello, Could you use the services of a seasoned Web Design Specialist. Are you hoping to start restructuring your site soon or are you maybe thinking of developing a completely different site? My rates are quite competitive and my designs are high quality. I\'d really appreciate it if you would reply back and tell me if you are possibly interested in viewing a few of my sites or possibly interested in getting a web design proposal and I will contact you right away.\\n\\nThank you,\\r\\nHeather Ellison\",\"label\":\"Message\"},\"phone\":{\"value\":\"(352) 405-5498\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-08 07:44:23'),(169,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"inaruncoppots@davislama.bizml.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"SashaVlasov\",\"label\":\"First name\"},\"lastname\":{\"value\":\"SashaVlasov\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"\\u0412\\u0441\\u0435\\u0433\\u0434\\u0430 \\u0440\\u0430\\u0434\\u044b \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0438\\u0442\\u044c \\u043f\\u0440\\u043e\\u0432\\u0435\\u0440\\u0435\\u043d\\u043d\\u0443\\u044e \\u0432\\u0440\\u0435\\u043c\\u0435\\u043d\\u0435\\u043c \\u0443\\u0441\\u043b\\u0443\\u0433\\u0443: \\r\\n\\\"\\u042d\\u0444\\u0444\\u0435\\u043a\\u0442\\u0438\\u0432\\u043d\\u043e\\u0435 \\u0443\\u0441\\u0442\\u0440\\u0430\\u043d\\u0435\\u043d\\u0438\\u0435 \\u043e\\u043d\\u043b\\u0430\\u0439\\u043d-\\u0441\\u0430\\u0439\\u0442\\u043e\\u0432 \\u043a\\u043e\\u043d\\u043a\\u0443\\u0440\\u0435\\u043d\\u0442\\u0430 \\u0438\\u043b\\u0438 \\u043c\\u043e\\u0448\\u0435\\u043d\\u043d\\u0438\\u043a\\u0430!\\\" \\r\\n\\u041a\\u0430\\u043a \\u044d\\u0442\\u043e \\u043e\\u0441\\u0443\\u0449\\u0435\\u0441\\u0442\\u0432\\u043b\\u044f\\u044e\\u0442 \\u043d\\u0430\\u0448\\u0438 \\u0441\\u043f\\u0435\\u0446\\u0438\\u0430\\u043b\\u0438\\u0441\\u0442\\u044b?! \\r\\n- \\u041d\\u0430\\u0448 \\u043e\\u043f\\u044b\\u0442 - 10 \\u043b\\u0435\\u0442. \\r\\n- \\u0418\\u0441\\u043f\\u043e\\u043b\\u044c\\u0437\\u0443\\u0435\\u043c \\u0441\\u0435\\u043a\\u0440\\u0435\\u0442\\u043d\\u044b\\u0435 \\u0441\\u0445\\u0435\\u043c\\u044b. \\r\\n- \\u041d\\u0430\\u0440\\u0430\\u0449\\u0438\\u0432\\u0430\\u0435\\u043c \\u043e\\u0433\\u0440\\u043e\\u043c\\u043d\\u0443\\u044e \\u0441\\u0441\\u044b\\u043b\\u043e\\u0447\\u043d\\u0443\\u044e \\u043c\\u0430\\u0441\\u0441\\u0443 \\u0432\\u0438\\u0440\\u0443\\u0441\\u043d\\u044b\\u043c\\u0438 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0430\\u043c\\u0438. \\r\\n- \\u041b\\u044e\\u0431\\u0430\\u044f \\u043f\\u043e\\u0438\\u0441\\u043a\\u043e\\u0432\\u0430\\u044f \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u0430 \\u043c\\u043e\\u043b\\u043d\\u0438\\u0435\\u043d\\u043e\\u0441\\u043d\\u043e \\u0440\\u0435\\u0430\\u0433\\u0438\\u0440\\u0443\\u0435\\u0442 \\u043d\\u0430 \\u043d\\u0430\\u0448\\u0438 \\u0442\\u0435\\u0445\\u043d\\u043e\\u043b\\u043e\\u0433\\u0438\\u0438. \\r\\n- \\u0412\\u0441\\u0435 \\u0440\\u0430\\u0437\\u043c\\u0435\\u0449\\u0435\\u043d\\u043d\\u044b\\u0435 \\u0442\\u0435\\u043a\\u0441\\u0442\\u044b \\u0441 \\u0432\\u0435\\u0431-\\u0441\\u0430\\u0439\\u0442\\u0430 \\u0441\\u043f\\u0430\\u043c\\u044f\\u0442\\u0441\\u044f, \\u0447\\u0442\\u043e \\u0441\\u0440\\u0430\\u0437\\u0443 \\u0434\\u0435\\u043b\\u0430\\u0435\\u0442 \\u0438\\u0445 \\u043d\\u0435\\u0443\\u043d\\u0438\\u043a\\u0430\\u043b\\u044c\\u043d\\u044b\\u043c\\u0438. \\r\\n- \\u0423 \\u043d\\u0430\\u0441 \\u043e\\u0447\\u0435\\u043d\\u044c \\u0431\\u043e\\u043b\\u044c\\u0448\\u0438\\u0435 \\u0432\\u043e\\u0437\\u043c\\u043e\\u0436\\u043d\\u043e\\u0441\\u0442\\u0438 \\u0438 \\u043e\\u043f\\u044b\\u0442 \\u0432 \\u044d\\u0442\\u043e\\u043c \\u043d\\u0430\\u043f\\u0440\\u0430\\u0432\\u043b\\u0435\\u043d\\u0438\\u0438. \\r\\n \\r\\n\\u0421\\u0442\\u043e\\u0438\\u043c\\u043e\\u0441\\u0442\\u044c 6000py. \\r\\n\\u041f\\u043e\\u043b\\u043d\\u0430\\u044f \\u043e\\u0442\\u0447\\u0451\\u0442\\u043d\\u043e\\u0441\\u0442\\u044c. \\r\\n\\u041e\\u043f\\u043b\\u0430\\u0442\\u0430: Qiwi, \\u042f\\u043d\\u0434\\u0435\\u043a\\u0441.\\u0414\\u0435\\u043d\\u044c\\u0433\\u0438, Bitcoin, Visa, MasterCard... \\r\\n \\r\\nTelgrm: @xrumers \\r\\nSkype: xrumer.pro \\r\\nWhatsApp: +7(977)536-08-36 \\r\\n\\u043c\\u0430\\u0438\\u043b: support@xrumer.cc \\r\\n \\r\\n\\u0422\\u043e\\u043b\\u044c\\u043a\\u043e \\u044d\\u0442\\u0438! \\r\\n\\u0410 \\u0442\\u0410\\u043a\\u043e\\u0436 \\u0420\\u0430\\u0431\\u043e\\u0442\\u0430\\u0435\\u043c \\u0441\\u043e \\u0421\\u0442\\u0443\\u0434\\u0438\\u044f\\u043c\\u0438!\",\"label\":\"Message\"},\"phone\":{\"value\":\"89775360836\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-09 08:55:35'),(170,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"kevencoleman7162@gmail.com\\r\\n\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Wainwright\\r\\n\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mike Wainwright\\r\\n\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Greetings \\r\\n \\r\\nWe will improve your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \\r\\n \\r\\nPlease check our services below, we offer Local SEO at cheap rates. \\r\\nhttps:\\/\\/speed-seo.net\\/product\\/local-seo-package\\/ \\r\\n \\r\\nNEW: \\r\\nhttps:\\/\\/www.speed-seo.net\\/product\\/zip-codes-gmaps-citations\\/ \\r\\n \\r\\nregards \\r\\nMike Wainwright\\r\\n \\r\\nSpeed SEO Digital Agency\",\"label\":\"Message\"},\"phone\":{\"value\":\"88976589867\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-09 09:36:01'),(171,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Jessica\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Robert\",\"label\":\"Last name\"},\"email\":{\"value\":\"jessicarobertjss@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi\\r\\nYour website\'s design is absolutely brilliant. The visuals really enhance your message and the content compels action. I have forwarded it to a few of my contacts who I think could benefit from your services.\\r\\n\\r\\nWhen I was looking at your website, though, I noticed a slight issue re: your SEO that I thought you might not be aware of. It is a relatively simple fix. Would you like me to write it up so that you can share it with your web team? If this is a priority, I can also get on a call.\\r\\n\\r\\nRegards,\\r\\nJessica Robert\\r\\n\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"2012012012\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-09 10:05:24'),(172,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"malinoleg91@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"skyreveryMouck\",\"label\":\"First name\"},\"lastname\":{\"value\":\"skyreveryMouck\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\" \\r\\nManchester Private Jet Charter <\\/a> - more information on our website skyrevery.com<\\/a> \\r\\nPrivate jet rental<\\/a> at SkyRevery allows you to use such valuable resource as time most efficiently. \\r\\nYou are the one who decides where and when your private jet will fly. It is possible to organize and perform a flight between any two civil airports worldwide round the clock. In airports, private jet passengers use special VIP terminals where airport formalities are minimized, and all handling is really fast \\u2013 you come just 30 minutes before the estimated time of the departure of the rented private jet. \\r\\nWhen you need private jet charter<\\/a> now, we can organise your flight with departure in 3 hours from confirmation.\",\"label\":\"Message\"},\"phone\":{\"value\":\"85853478273\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-09 11:46:40'),(173,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Jeremy\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Russell\",\"label\":\"Last name\"},\"email\":{\"value\":\"circle357marketing@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello there! \\r\\n\\r\\n I\'m a mobile app developer that can design and program on any platform (Android, iOs) for an affordable price. Would you\'d be interested in building a mobile app for your business?There are various types of apps that can help your business, whether in terms of marketing, business efficiency, or both. If you already have some ideas, I would love to hear about them to help you more on how we can make them all possible.\\r\\n\\r\\nI have many ideas of my own that I\'d really like to share with you of things that have worked really well for my other clients. If you\'re interested in building an app, or getting more information about it, then I\'d love to give you a free consultation. Kindly reply to let me know when you\'d like to be contacted. Talk to you soon!\\n\\nJeremy Russell\\r\\n\\r\\np.s. I don\'t want to annoy anyone, so if you\'d like to be removed from any of my emails, please just email me back with the word \\\"stop\\\" in the subject line and I\'ll exclude you from any further messages. Best Regards.\",\"label\":\"Message\"},\"phone\":{\"value\":\"(307) 228-0751\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-10 05:12:09'),(174,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Eric\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jones\",\"label\":\"Last name\"},\"email\":{\"value\":\"eric.jones.z.mail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Good day, \\r\\n\\r\\nMy name is Eric and unlike a lot of emails you might get, I wanted to instead provide you with a word of encouragement \\u2013 Congratulations\\r\\n\\r\\nWhat for? \\r\\n\\r\\nPart of my job is to check out websites and the work you\\u2019ve done with translucentcomputing.com definitely stands out. \\r\\n\\r\\nIt\\u2019s clear you took building a website seriously and made a real investment of time and resources into making it top quality.\\r\\n\\r\\nThere is, however, a catch\\u2026 more accurately, a question\\u2026\\r\\n\\r\\nSo when someone like me happens to find your site \\u2013 maybe at the top of the search results (nice job BTW) or just through a random link, how do you know? \\r\\n\\r\\nMore importantly, how do you make a connection with that person?\\r\\n\\r\\nStudies show that 7 out of 10 visitors don\\u2019t stick around \\u2013 they\\u2019re there one second and then gone with the wind.\\r\\n\\r\\nHere\\u2019s a way to create INSTANT engagement that you may not have known about\\u2026 \\r\\n\\r\\nTalk With Web Visitor is a software widget that\\u2019s works on your site, ready to capture any visitor\\u2019s Name, Email address and Phone Number. It lets you know INSTANTLY that they\\u2019re interested \\u2013 so that you can talk to that lead while they\\u2019re literally checking out translucentcomputing.com.\\r\\n\\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\\r\\n\\r\\nIt could be a game-changer for your business \\u2013 and it gets even better\\u2026 once you\\u2019ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation \\u2013 immediately (and there\\u2019s literally a 100X difference between contacting someone within 5 minutes versus 30 minutes.)\\r\\n\\r\\nPlus then, even if you don\\u2019t close a deal right away, you can connect later on with text messages for new offers, content links, even just follow up notes to build a relationship.\\r\\n\\r\\nEverything I\\u2019ve just described is simple, easy, and effective. \\r\\n\\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\\r\\n\\r\\nYou could be converting up to 100X more leads today!\\r\\n\\r\\nEric\\r\\nPS: Talk With Web Visitor offers a FREE 14 days trial \\u2013 and it even includes International Long Distance Calling. \\r\\nYou have customers waiting to talk with you right now\\u2026 don\\u2019t keep them waiting. \\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to try Talk With Web Visitor now.\\r\\n\\r\\nIf you\'d like to unsubscribe click here http:\\/\\/talkwithwebvisitors.com\\/unsubscribe.aspx?d=translucentcomputing.com\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"555-555-1212\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-10 18:42:12'),(175,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"dusicheg@foxmaily.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Linxamr\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Linxamr\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hqd \\u0433\\u043e\\u0440\\u0438\\u0442 \\u043b\\u0430\\u043c\\u043f\\u043e\\u0447\\u043a\\u0430 \\u0441\\u0438\\u043d\\u0438\\u043c<\\/a> \\r\\n \\r\\n\\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u0430\\u044f \\u0441\\u0438\\u0433\\u0430\\u0440\\u0435\\u0442\\u0430 \\u0432 \\u0432\\u043e\\u043b\\u0433\\u043e\\u0440\\u0435\\u0447\\u0435\\u043d\\u0441\\u043a\\u0435\",\"label\":\"Message\"},\"phone\":{\"value\":\"86154355297\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-10 20:35:03'),(176,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"lambert.palma@googlemail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Palma\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Palma\",\"label\":\"Last name\"},\"company\":{\"value\":\"Palma\",\"label\":\"Company name\"},\"message\":{\"value\":\"Get The Worlds Greatest Magic Sand Free Beach Mat!\\r\\n\\r\\nWatch sand, dirt & dust disappear right before your eyes! It\'s perfect for beach, picnic, camping or hiking.\\r\\n\\r\\nAct Now And Receive A Special Discount For Our Magic Mat!\\r\\n\\r\\nGet Yours Here: magicmat.shop\\r\\n\\r\\nHave a great time, \\r\\n \\r\\nPalma\\r\\nHome | Translucent | Toronto\'s Cloud Native Application Development & DevOps Consultants | We Listen. We Learn. We Inform. We Support\",\"label\":\"Message\"},\"phone\":{\"value\":\"446 0598\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-10 20:43:13'),(177,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"WTE\",\"label\":\"First name\"},\"lastname\":{\"value\":\"WTE\",\"label\":\"Last name\"},\"email\":{\"value\":\"100x@wtebank.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Submit\",\"label\":\"Message\"},\"phone\":{\"value\":\"6145047000\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-11 04:38:06'),(178,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Nelsontob\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Nelsontob\",\"label\":\"Last name\"},\"email\":{\"value\":\"olinesquivias@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u041a\\u0430\\u0436\\u0434\\u044b\\u0439 \\u0447\\u0435\\u043b\\u043e\\u0432\\u0435\\u043a \\u0437\\u0430\\u043c\\u0435\\u0447\\u0430\\u043b \\u0437\\u0430 \\u0441\\u043e\\u0431\\u043e\\u0439, \\u0447\\u0442\\u043e \\u0442\\u044f\\u0436\\u0435\\u043b\\u043e \\u0441\\u0440\\u0430\\u0437\\u0443 \\u0436\\u0435 \\u0437\\u0430\\u0441\\u043d\\u0443\\u0442\\u044c \\u043f\\u043e\\u0441\\u043b\\u0435 \\u043d\\u0430\\u043f\\u0440\\u044f\\u0436\\u0435\\u043d\\u043d\\u043e\\u0433\\u043e \\u0440\\u0430\\u0431\\u043e\\u0447\\u0435\\u0433\\u043e \\u0434\\u043d\\u044f. \\u041f\\u0440\\u0438\\u0445\\u043e\\u0434\\u0438\\u0442\\u0441\\u044f \\u0434\\u043e\\u043b\\u0433\\u043e \\u043b\\u0435\\u0436\\u0430\\u0442\\u044c \\u0438 \\u0441\\u043c\\u043e\\u0442\\u0440\\u0435\\u0442\\u044c \\u0432 \\u043f\\u043e\\u0442\\u043e\\u043b\\u043e\\u043a, \\u0442\\u0430\\u043a \\u043a\\u0430\\u043a \\u0447\\u0435\\u043b\\u043e\\u0432\\u0435\\u0447\\u0435\\u0441\\u043a\\u0438\\u0439 \\u043c\\u043e\\u0437\\u0433 \\u043d\\u0435 \\u043c\\u043e\\u0436\\u0435\\u0442 \\u0431\\u044b\\u0441\\u0442\\u0440\\u043e\\\"\\u0440\\u0430\\u0437\\u0433\\u0440\\u0443\\u0437\\u0438\\u0442\\u044c\\u0441\\u044f\\\". \\u0413\\u0430\\u0434\\u0436\\u0435\\u0442 \\u0434\\u043b\\u044f \\u0437\\u0430\\u0441\\u044b\\u043f\\u0430\\u043d\\u0438\\u044f \\u043f\\u043e\\u0434 \\u043d\\u0430\\u0437\\u0432\\u0430\\u043d\\u0438\\u0435\\u043c Tranquil Moments Advanced Sleep Sounds \\u043f\\u043e\\u043c\\u043e\\u0436\\u0435\\u0442 \\u0412\\u0430\\u043c \\u0432 \\u0440\\u0435\\u0448\\u0435\\u043d\\u0438\\u0438 \\u044d\\u0442\\u043e\\u0439 \\u043f\\u0440\\u043e\\u0431\\u043b\\u0435\\u043c\\u044b. \\u0411\\u043b\\u0430\\u0433\\u043e\\u0434\\u0430\\u0440\\u044f \\u043f\\u043e\\u0434\\u043e\\u0431\\u0440\\u0430\\u043d\\u043d\\u044b\\u043c \\u0441\\u043e\\u0447\\u0435\\u0442\\u0430\\u043d\\u0438\\u044f\\u043c \\u0433\\u0440\\u043e\\u043c\\u043a\\u043e\\u0441\\u0442\\u0438 \\u0438 \\u0441\\u043a\\u043e\\u0440\\u043e\\u0441\\u0442\\u0438 \\u043c\\u0435\\u043b\\u043e\\u0434\\u0438\\u0439, \\u043e\\u0441\\u0443\\u0449\\u0435\\u0441\\u0442\\u0432\\u043b\\u044f\\u0435\\u0442\\u0441\\u044f \\u0443\\u0441\\u043f\\u043e\\u043a\\u0430\\u0438\\u0432\\u0430\\u044e\\u0449\\u0438\\u0439 \\u044d\\u0444\\u0444\\u0435\\u043a\\u0442 \\u043d\\u0430 \\u0430\\u043b\\u044c\\u0444\\u0430-, \\u0434\\u0435\\u043b\\u044c\\u0442\\u0430- \\u0438 \\u0442\\u0435\\u0442\\u0430-\\u0432\\u043e\\u043b\\u043d\\u044b \\u043c\\u043e\\u0437\\u0433\\u0430, \\u0447\\u0442\\u043e \\u043f\\u0440\\u0438\\u0432\\u043e\\u0434\\u0438\\u0442 \\u043a \\u0433\\u043b\\u0443\\u0431\\u043e\\u043a\\u043e\\u043c\\u0443 \\u0438 \\u0441\\u043f\\u043e\\u043a\\u043e\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0441\\u043d\\u0443. \\u041c\\u043e\\u0436\\u043d\\u043e \\u0438\\u0441\\u043f\\u043e\\u043b\\u044c\\u0437\\u043e\\u0432\\u0430\\u0442\\u044c \\u0433\\u0430\\u0434\\u0436\\u0435\\u0442 \\u0432 \\u043a\\u0430\\u0447\\u0435\\u0441\\u0442\\u0432\\u0435 \\u0442\\u0435\\u0440\\u0430\\u043f\\u0435\\u0432\\u0442\\u0438\\u0447\\u0435\\u0441\\u043a\\u043e\\u0433\\u043e \\u0443\\u0441\\u043f\\u043e\\u043a\\u0430\\u0438\\u0432\\u0430\\u044e\\u0449\\u0435\\u0433\\u043e \\u0441\\u0440\\u0435\\u0434\\u0441\\u0442\\u0432\\u0430. \\u0421\\u0442\\u043e\\u0438\\u043c\\u043e\\u0441\\u0442\\u044c \\u0443\\u0441\\u0442\\u0440\\u043e\\u0439\\u0441\\u0442\\u0432\\u0430 \\u0441\\u043e\\u0441\\u0442\\u0430\\u0432\\u043b\\u044f\\u0435\\u0442 170 \\u0434\\u043e\\u043b\\u043b\\u0430\\u0440\\u043e\\u0432. \\u041c\\u043e\\u0436\\u043d\\u043e \\u0441\\u043a\\u0430\\u0437\\u0430\\u0442\\u044c, \\u0447\\u0442\\u043e \\u044d\\u0442\\u043e \\u0447\\u0442\\u043e-\\u0442\\u043e \\u0441\\u0440\\u0435\\u0434\\u043d\\u0435\\u0435 \\u043c\\u0435\\u0436\\u0434\\u0443 \\u043c\\u0430\\u0433\\u043d\\u0438\\u0442\\u043e\\u0444\\u043e\\u043d\\u043e\\u043c \\u0438 \\u0440\\u0430\\u0434\\u0438\\u043e, \\u043f\\u043e \\u0444\\u043e\\u0440\\u043c\\u0435 \\u0438 \\u0432\\u043d\\u0435\\u0448\\u043d\\u0435\\u043c\\u0443 \\u0432\\u0438\\u0434\\u0443 \\u0443\\u0441\\u0442\\u0440\\u043e\\u0439\\u0441\\u0442\\u0432\\u043e \\u043d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u0442 \\u043d\\u0430\\u0441\\u0442\\u043e\\u043b\\u044c\\u043d\\u044b\\u0435 \\u0447\\u0430\\u0441\\u044b. \\u0423\\u0441\\u0442\\u0440\\u043e\\u0439\\u0441\\u0442\\u0432\\u043e \\u0438\\u043c\\u0435\\u0435\\u0442 \\u043f\\u0440\\u043e\\u0441\\u0442\\u043e\\u0439 \\u0438 \\u043f\\u043e\\u043d\\u044f\\u0442\\u043d\\u044b\\u0439 \\u0438\\u043d\\u0442\\u0435\\u0440\\u0444\\u0435\\u0439\\u0441, \\u043d\\u0435\\u0431\\u043e\\u043b\\u044c\\u0448\\u043e\\u0439 \\u043a\\u043e\\u0440\\u043f\\u0443\\u0441, \\u043a\\u043e\\u0442\\u043e\\u0440\\u044b\\u0439 \\u0441\\u043e\\u0447\\u0435\\u0442\\u0430\\u0435\\u0442 \\u0432 \\u0441\\u0435\\u0431\\u0435 \\u0444\\u0443\\u043d\\u043a\\u0446\\u0438\\u0438 \\u0447\\u0430\\u0441\\u043e\\u0432-\\u0431\\u0443\\u0434\\u0438\\u043b\\u044c\\u043d\\u0438\\u043a\\u0430. \\u0412\\u043e\\u0437\\u043c\\u043e\\u0436\\u043d\\u043e, \\u0447\\u0442\\u043e \\u0432 \\u0441\\u043a\\u043e\\u0440\\u043e\\u043c \\u0432\\u0440\\u0435\\u043c\\u0435\\u043d\\u0438 \\u044d\\u0442\\u043e \\u0443\\u0441\\u0442\\u0440\\u043e\\u0439\\u0441\\u0442\\u0432\\u043e \\u0431\\u0443\\u0434\\u0443\\u0442 \\u0440\\u0435\\u043a\\u043e\\u043c\\u0435\\u043d\\u0434\\u043e\\u0432\\u0430\\u0442\\u044c \\u0442\\u0435\\u0440\\u0430\\u043f\\u0435\\u0432\\u0442\\u044b \\u0441\\u0432\\u043e\\u0438\\u043c \\u043f\\u0430\\u0446\\u0438\\u0435\\u043d\\u0442\\u0430\\u043c, \\u0432\\u0435\\u0434\\u044c \\u044d\\u0442\\u043e \\u0443\\u0441\\u0442\\u0440\\u043e\\u0439\\u0441\\u0442\\u0432\\u043e, \\u043a\\u0430\\u043a \\u043f\\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0438 \\u0438\\u0441\\u0441\\u043b\\u0435\\u0434\\u043e\\u0432\\u0430\\u043d\\u0438\\u044f, \\u0434\\u043e\\u0441\\u0442\\u043e\\u0439\\u043d\\u0430\\u044f \\u0437\\u0430\\u043c\\u0435\\u043d\\u0430 \\u0441\\u043d\\u043e\\u0442\\u0432\\u043e\\u0440\\u043d\\u044b\\u043c \\u0438 \\u0441\\u0435\\u0434\\u0430\\u0442\\u0438\\u0432\\u043d\\u044b\\u043c \\u043f\\u0440\\u0435\\u043f\\u0430\\u0440\\u0430\\u0442\\u0430\\u043c. \\u0410 \\u0435\\u0441\\u043b\\u0438 \\u0443 \\u0432\\u0430\\u0441 \\u0435\\u0441\\u0442\\u044c \\u0430\\u0432\\u0442\\u043e\\u043c\\u043e\\u0431\\u0438\\u043b\\u044c, \\u0447\\u0442\\u043e\\u0431\\u044b \\u043d\\u0435 \\u043c\\u0443\\u0447\\u0438\\u043b\\u0430 \\u0431\\u0435\\u0441\\u0441\\u043e\\u043d\\u043d\\u0438\\u0446\\u0430 \\u043e\\u0442 \\u0432\\u043e\\u043b\\u043d\\u0435\\u043d\\u0438\\u044f, \\u043c\\u044b \\u0440\\u0435\\u043a\\u043e\\u043c\\u0435\\u043d\\u0434\\u0443\\u0435\\u043c \\u043a\\u0443\\u043f\\u0438\\u0442\\u044c \\u0448\\u0438\\u043d\\u044b \\u041a\\u043e\\u043d\\u0442\\u0438\\u043d\\u0435\\u043d\\u0442\\u0430\\u043b\\u044c. \\u0422\\u043e\\u0433\\u0434\\u0430 \\u0443\\u0436 \\u0442\\u043e\\u0447\\u043d\\u043e \\u0432\\u044b \\u0431\\u0443\\u0434\\u0435\\u0442\\u0435 \\u0432\\u0438\\u0434\\u0435\\u0442\\u044c \\u043a\\u0440\\u0430\\u0441\\u0438\\u0432\\u044b\\u0435 \\u0438 \\u0441\\u043b\\u0430\\u0434\\u043a\\u0438\\u0435 \\u0441\\u043d\\u044b. \\r\\n \\r\\n \\u0427\\u0438\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0434\\u0440\\u0443\\u0433\\u0438\\u0435 \\u043d\\u043e\\u0432\\u043e\\u0441\\u0442\\u0438 \\u043d\\u0430 \\u043f\\u043e\\u0440\\u0442\\u0430\\u043b\\u0435 https:\\/\\/rufinder.ru\\/\",\"label\":\"Message\"},\"phone\":{\"value\":\"84387939342\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-11 07:31:26'),(179,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Eric\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jones\",\"label\":\"Last name\"},\"email\":{\"value\":\"eric.jones.z.mail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hey, this is Eric and I ran across translucentcomputing.com a few minutes ago.\\r\\n\\r\\nLooks great\\u2026 but now what?\\r\\n\\r\\nBy that I mean, when someone like me finds your website \\u2013 either through Search or just bouncing around \\u2013 what happens next? Do you get a lot of leads from your site, or at least enough to make you happy?\\r\\n\\r\\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site\\u2019s visitors disappear and are gone forever after just a moment.\\r\\n\\r\\nHere\\u2019s an idea\\u2026\\r\\n \\r\\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site\\u2026\\r\\n \\r\\nYou can \\u2013\\r\\n \\r\\nTalk With Web Visitor is a software widget that\\u2019s works on your site, ready to capture any visitor\\u2019s Name, Email address and Phone Number. It signals you the moment they let you know they\\u2019re interested \\u2013 so that you can talk to that lead while they\\u2019re literally looking over your site.\\r\\n\\r\\nCLICK HERE http:\\/\\/talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\\r\\n\\r\\nYou\\u2019ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\\r\\n\\r\\nIt gets even better\\u2026 once you\\u2019ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\\r\\n \\r\\nThat way, even if you don\\u2019t close a deal right away, you can follow up with text messages for new offers, content links, even just \\u201chow you doing?\\u201d notes to build a relationship.\\r\\n\\r\\nPretty sweet \\u2013 AND effective.\\r\\n\\r\\nCLICK HERE http:\\/\\/talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\\r\\n\\r\\nYou could be converting up to 100X more leads today!\\r\\n\\r\\nEric\\r\\nPS: Talk With Web Visitor offers a FREE 14 days trial \\u2013 and it even includes International Long Distance Calling. \\r\\nYou have customers waiting to talk with you right now\\u2026 don\\u2019t keep them waiting. \\r\\nCLICK HERE http:\\/\\/talkwithcustomer.com to try Talk With Web Visitor now.\\r\\n\\r\\nIf you\'d like to unsubscribe click here http:\\/\\/talkwithcustomer.com\\/unsubscribe.aspx?d=translucentcomputing.com\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"555-555-1212\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-11 21:48:23'),(180,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"100X ROI\",\"label\":\"First name\"},\"lastname\":{\"value\":\"100X ROI\",\"label\":\"Last name\"},\"email\":{\"value\":\"100x@wtebank.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Submit\",\"label\":\"Message\"},\"phone\":{\"value\":\"6145047000\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-12 19:01:15'),(181,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Justin\",\"label\":\"First name\"},\"lastname\":{\"value\":\"McCarty\",\"label\":\"Last name\"},\"email\":{\"value\":\"mccartyjustin@protonmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello,\\r\\n\\r\\nWondering if you accepted guest posts on your site. Also would you be willing to insert links in existing posts?\\r\\n\\r\\nHow much would you charge for this?\\r\\n\\r\\nJustin\",\"label\":\"Message\"},\"phone\":{\"value\":\"606-467-9727\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-13 02:22:32'),(182,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Stevenwhame\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Stevenwhame\",\"label\":\"Last name\"},\"email\":{\"value\":\"yourmail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Download GPlus software - Auto Marketing for Youtube \\r\\n \\r\\nYou are selling online, and do not have an effective product marketing solution. FPlus is the number 1 choice in Youtube marketing. \\r\\nFree Download Here: \\r\\n \\r\\nhttps:\\/\\/filehug.com\\/GPlus.zip \\r\\nhttps:\\/\\/filerap.com\\/GPlus.zip \\r\\nhttps:\\/\\/fileshe.com\\/GPlus.zip \\r\\n \\r\\n \\r\\n \\r\\n \\r\\nThe main functions of the software \\r\\n \\r\\nCreate a youtube channel - Create Channel - GPlus \\r\\nGPlus helps you create many different channels on youtube of the same gmail account. Thus, you can use it to perform cross-channel interactions on youtube, increase interaction for channels... \\r\\nGPlus helps you to search for videos by keyword. You can set the conditions of the videos you want to search (by rating, view ...) and choose to search on multiple pages. \\r\\nGPlus supports you to scan the playlist of a channel on youtube. You can scan the number of videos in a playlist, the total number of views and the names of these playlists. \\r\\nGPlus helps you increase subscribers on youtube channels. You can use sub accounts to increase the subs of the main channels. \\r\\nGPlus will help you comment on youtube videos, and help increase likes and subscribers for your youtube channel. \\r\\nGPlus helps you subscribe to the channels you want on youtube quickly. This function allows using multiple accounts to subscribe to one or more channels, from there, you can subscribe to your own or someone else\'s chanel. \\r\\nThis function will help you get the Links of the Contributors of the videos on your youtube channel using GPlus software. This link allows anyone to edit your playlist without your permission, as long as there is a collaborator link, other people can edit this playlist. \\r\\nYou can set up and reset your playlist: security, sort or change playlist name only with GPlus software. \\r\\nHelps you to search videos by keyword. You can find the address ID, title, view\\u2026 At the same time, you can also download the background image of any video to your computer and GPlus. \\r\\nGPlus helps you check the playlist information of any channel: ID, title, number of videos... \\r\\nGPlus helps you scan and remove corrupted videos from your playlist or add, mix new videos into your playlist. \\r\\nGPlus helps you to create a series of playlists on your youtube channel. Playlist is created from the videos you find by keyword on youtube and your videos are added in the video link list. \\r\\nScan and check proxy quickly, support scanning proxy with 1000 threads at the same time. \\r\\nAutomatically find youtube video links and automatically bulk comment on found videos. \\r\\n \\r\\nThx\",\"label\":\"Message\"},\"phone\":{\"value\":\"81143113456\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-14 11:40:46'),(183,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Dennis\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Perpetua\",\"label\":\"Last name\"},\"email\":{\"value\":\"dennis@qualitybloggeroutreach.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello, \\r\\n\\r\\nJust wanted to send one final follow up in case you didn\'t get my last two messages, \\r\\n\\r\\nWe\\u2019re interested in discreet advertising on your site. \\r\\n\\r\\nIs this something you\\u2019d be willing to discuss? \\r\\n\\r\\n\\r\\nDennis Perpetua\\r\\nOutreach Manager\\r\\nwww.qgp.com\\r\\n\\r\\n\\r\\n\\r\\nP.S.: If you don\'t want me to contact you again, just let me know.\",\"label\":\"Message\"},\"phone\":{\"value\":\"833-288-8913\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-14 17:11:43'),(184,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"brook.gillum@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Brook\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Brook\",\"label\":\"Last name\"},\"company\":{\"value\":\"Brook\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi there\\r\\n\\r\\nBuy medical disposable face mask to protect your loved ones from the deadly CoronaVirus. The price is $0.28 each. If interested, please check our site: pharmacyoutlets.online\\r\\n\\r\\nMany Thanks,\\r\\n\\r\\nBrook\\r\\nHome | Translucent | Toronto\'s Cloud Native Application Development & DevOps Consultants | We Listen. We Learn. We Inform. We Support\",\"label\":\"Message\"},\"phone\":{\"value\":\"770-949-8701\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-14 18:26:55'),(185,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"WTE\",\"label\":\"First name\"},\"lastname\":{\"value\":\"WTE\",\"label\":\"Last name\"},\"email\":{\"value\":\"100x@wtebank.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Submit\",\"label\":\"Message\"},\"phone\":{\"value\":\"6145047000\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-15 16:13:52'),(186,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Heather\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Ellison\",\"label\":\"Last name\"},\"email\":{\"value\":\"heathere011@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello, I would like to know if you need a exceptional Web Design Professional. Are you considering changing your website this year or are you wanting to start on developing another site? My fees are extremely low and my development work is impressive. Please tell me if you would be interested in taking a look at a few of my sites or possibly interested in getting a development proposal and I\'ll reply quickly.\\n\\nThank you,\\r\\nHeather Ellison\",\"label\":\"Message\"},\"phone\":{\"value\":\"(352) 405-5498\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-16 01:44:52'),(187,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"WTE\",\"label\":\"First name\"},\"lastname\":{\"value\":\"WTE\",\"label\":\"Last name\"},\"email\":{\"value\":\"100x@wtebank.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Submit\",\"label\":\"Message\"},\"phone\":{\"value\":\"6145047000\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-16 09:50:26'),(188,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"WTE\",\"label\":\"First name\"},\"lastname\":{\"value\":\"WTE\",\"label\":\"Last name\"},\"email\":{\"value\":\"100x@wtebank.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Submit\",\"label\":\"Message\"},\"phone\":{\"value\":\"6145047000\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-16 10:10:20'),(189,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"zakharov39.vasia@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Michaelkal\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Michaelkal\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"\\u0423\\u0441\\u043b\\u0443\\u0433\\u0438 seo \\u043f\\u0440\\u043e\\u0434\\u0432\\u0438\\u0436\\u0435\\u043d\\u0438\\u044f \\u0441 \\u043f\\u0440\\u043e\\u0434\\u0432\\u0438\\u043d\\u0443\\u0442\\u044b\\u043c \\u0444\\u0443\\u043d\\u043a\\u0446\\u0438\\u043e\\u043d\\u0430\\u043b\\u043e\\u043c \\u0432 \\u043a\\u0440\\u0443\\u043f\\u043d\\u043e\\u043c \\u0433\\u043e\\u0440\\u043e\\u0434\\u0435 \\u041f\\u0435\\u043d\\u0437\\u0430 \\r\\n \\r\\n\\u041b\\u0443\\u0447\\u0448\\u0438\\u0439 \\u0441\\u0435\\u0439\\u0447\\u0430\\u0441 seo \\u043f\\u0440\\u043e\\u0434\\u0443\\u043a\\u0442. \\u042d\\u0442\\u043e \\u043d\\u0430\\u0441\\u0442\\u043e\\u044f\\u0449\\u0438\\u0439 \\u043a\\u043e\\u043c\\u0431\\u0430\\u0438\\u043d \\u0432 seo, \\u043c\\u043e\\u0436\\u0435\\u0442 \\u0440\\u0435\\u0448\\u0438\\u0442\\u044c \\u0432\\u0441\\u044f\\u043a\\u0438\\u0435 \\u0437\\u0430\\u0434\\u0430\\u0447\\u0438. \\u0420\\u0430\\u0431\\u043e\\u0442\\u0430\\u0435\\u0442 \\u0432 \\u043c\\u043d\\u043e\\u0433\\u043e-\\u043f\\u043e\\u0442\\u043e\\u043a\\u0435 \\u0432 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u0435 \\u0435\\u0441\\u0442\\u044c \\u0441\\u0432\\u043e\\u0438 \\u043f\\u0440\\u043e\\u043a\\u0441\\u0438 \\u043a\\u043e\\u0442\\u043e\\u0440\\u044b\\u0435 \\u0441\\u0435\\u0439\\u0447\\u0430\\u0441 \\u0441\\u0447\\u0438\\u0442\\u0430\\u044e\\u0442\\u0441\\u044f \\u043d\\u0430 \\u0441\\u0435\\u0433\\u043e\\u0434\\u043d\\u044f \\u043b\\u0443\\u0447\\u0448\\u0438\\u043c\\u0438. \\r\\n \\r\\n\\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u043c \\u043f\\u043e \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435 \\u0438 \\u0434\\u0435\\u043b\\u0430\\u0435\\u043c \\u0434\\u0435\\u043d\\u044c\\u0433\\u0438 \\r\\n \\r\\n\\u0410\\u043d\\u0430\\u043b\\u0438\\u0437\\u0430 seo \\u043f\\u0440\\u043e\\u0433\\u0440\\u0430\\u043c\\u043c\\u0430<\\/a>\",\"label\":\"Message\"},\"phone\":{\"value\":\"88925318869\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-17 16:20:56'),(190,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"reyes.eddy@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Eddy\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Eddy\",\"label\":\"Last name\"},\"company\":{\"value\":\"Eddy\",\"label\":\"Company name\"},\"message\":{\"value\":\"New Multifunction Anti-theft Waterproof Sling Bag\\r\\n\\r\\nThe best ever SUPER Sling Bag: Drop-proof\\/Anti-theft\\/Scratch-resistant\\/USB Charging\\r\\n\\r\\n50% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping for a LIMITED time\\r\\n\\r\\nBuy now: fashiondaily.online\\r\\n\\r\\nCheers, \\r\\n\\r\\nEddy\\r\\nHome | Translucent | Toronto\'s Cloud Native Application Development & DevOps Consultants | We Listen. We Learn. We Inform. We Support\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"06-38881373\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-18 07:20:48'),(191,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"admin@2xbinancebonushelp.network\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Simon Jones\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Simon Jones\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"To celebrate the 2 year anniversary of Binance\\u2019s acquisition of Trust Wallet, we\\u2019re teaming up with Trust for the biggest giveaway ever!. \\r\\n \\r\\nYou will receive a 2x\\/3x bonus depending on the amount you participate with. This event will end once the assigned coins are distributed completely. To participate, you are required to have at least the Following in your wallet. \\r\\n1 ETH, 0.05 BTC, 1000.0 XRP, 15,000 TRX, 2.5 LTC. \\r\\n \\r\\n \\r\\nhttps:\\/\\/2xbonusstore.online\",\"label\":\"Message\"},\"phone\":{\"value\":\"84839549652\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-18 13:43:46'),(192,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"WTE\",\"label\":\"First name\"},\"lastname\":{\"value\":\"WTE\",\"label\":\"Last name\"},\"email\":{\"value\":\"100x@wtebank.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Submit\",\"label\":\"Message\"},\"phone\":{\"value\":\"6145047000\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-18 23:13:40'),(193,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"matthewperry3262@gmail.com\\r\\n\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Davidson\\r\\n\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mike Davidson\\r\\n\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Howdy \\r\\n \\r\\nI have just took an in depth look on your translucentcomputing.com for the ranking keywords and saw that your website could use a push. \\r\\n \\r\\nWe will enhance your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \\r\\n \\r\\nPlease check our pricelist here, we offer SEO at cheap rates. \\r\\nhttps:\\/\\/www.hilkom-digital.de\\/cheap-seo-packages\\/ \\r\\n \\r\\nStart enhancing your sales and leads with us, today! \\r\\n \\r\\nregards \\r\\nMike Davidson\\r\\n \\r\\nHilkom Digital Team \\r\\nsupport@hilkom-digital.de\",\"label\":\"Message\"},\"phone\":{\"value\":\"83441561814\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-19 20:08:32'),(194,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Landon\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Buckland\",\"label\":\"Last name\"},\"email\":{\"value\":\"lsbcklnd@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello there... :)\\r\\n\\r\\nI just have a question. I am a web designer looking for new clients and I wanted to see if you are interested in redesigning your website or making some upgrades. I don\'t want to sound like I\'m \\\"tooting my own horn\\\" too much, but I can do some pretty amazing things, not only design-wise, but with adding features to your site that automate your business processes, or make your marketing phenomenally easier. \\r\\n\\r\\nI\'d love to talk with you about some options if you\'re interested, so please let me know if you would like to know more about what I can do. I\'ll be happy to send some info and setup a call. \\r\\n\\r\\nThank you so much for reading this!\\n\\nKind regards, \\r\\nLandon Buckland\",\"label\":\"Message\"},\"phone\":{\"value\":\"(941) 479-0331\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-19 20:35:04'),(195,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"JosephPhade\",\"label\":\"First name\"},\"lastname\":{\"value\":\"JosephPhade\",\"label\":\"Last name\"},\"email\":{\"value\":\"paiprepag1990@mail.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u041f\\u0440\\u0438\\u0432\\u0435\\u0442 \\u043d\\u0430\\u0448\\u0435\\u043b \\u043a\\u043b\\u0430\\u0441\\u0441\\u043d\\u044b\\u0439 \\u0441\\u0430\\u0439\\u0442 \\u043f\\u0440\\u043e \\u0430\\u0432\\u0442\\u043e\\u043c\\u043e\\u0431\\u0438\\u043b\\u0438 \\u043c\\u043d\\u043e\\u0433\\u043e \\u043f\\u043e\\u043b\\u0435\\u0437\\u043d\\u043e\\u0439 \\u0438\\u043d\\u0444\\u043e\\u0440\\u043c\\u0430\\u0446\\u0438\\u0438 https:\\/\\/aboutmycar.ru\\/\",\"label\":\"Message\"},\"phone\":{\"value\":\"87456612416\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-19 22:57:58'),(196,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Whitney\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Ziesemer\",\"label\":\"Last name\"},\"email\":{\"value\":\"nzen@ctopulse.com\",\"label\":\"Email\"},\"message\":{\"value\":\"This new method allows you to advertise for free on sites like Google. Find out more here: https:\\/\\/bit.ly\\/20-ways-to-get-free-ads\",\"label\":\"Message\"},\"phone\":{\"value\":\"070 2553 6128\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"320c642f-3cba-46e9-a565-9c9f7286a99a\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-08-20 09:00:24'),(197,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Jack\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Reed\",\"label\":\"Last name\"},\"email\":{\"value\":\"reedj781@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello! \\r\\n\\r\\nIs your website generating enough business for you, or do you need some help? I am an experienced Search Engine Optimizer and I\'m looking for clients who are interested in getting their businesses on top of the searches on search engines like Google. I do this kind of work for a very affordable price. \\r\\n\\r\\nOptimal efficiency is something that I value greatly and if this is something you\'re also interested in, I would be happy to give you a call and tell you about the work I do. Please let me know about when\'s the best time to contact you. \\n\\n- Jack Reed\",\"label\":\"Message\"},\"phone\":{\"value\":\"(707) 109-5668\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-20 14:53:18'),(198,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"couliou.mar@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Estherviave\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Estherviave\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Looking for new acquaintances - http:\\/\\/2track.info\\/PrTi\",\"label\":\"Message\"},\"phone\":{\"value\":\"83876579121\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"426f4f12-559d-4366-a2de-dbd4a5e4c507\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-08-21 08:32:12'),(199,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"astetriax@rvmail.xyz\",\"label\":\"Email\"},\"firstname\":{\"value\":\"depphalge\",\"label\":\"First name\"},\"lastname\":{\"value\":\"depphalge\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"generic cialis<\\/a>\",\"label\":\"Message\"},\"phone\":{\"value\":\"81344391488\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-21 18:12:11'),(200,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"Buigolf@sufmail.xyz\",\"label\":\"Email\"},\"firstname\":{\"value\":\"JUINNYDIZ\",\"label\":\"First name\"},\"lastname\":{\"value\":\"JUINNYDIZ\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"where to buy cialis online<\\/a>\",\"label\":\"Message\"},\"phone\":{\"value\":\"82159975519\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-22 16:17:09'),(201,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"lonWainna@svmail.xyz\",\"label\":\"Email\"},\"firstname\":{\"value\":\"binquinty\",\"label\":\"First name\"},\"lastname\":{\"value\":\"binquinty\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"buying cialis online reviews<\\/a>\",\"label\":\"Message\"},\"phone\":{\"value\":\"82546272743\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-22 20:17:41'),(202,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"lonWainna@svmail.xyz\",\"label\":\"Email\"},\"firstname\":{\"value\":\"binquinty\",\"label\":\"First name\"},\"lastname\":{\"value\":\"binquinty\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"buy cialis 5mg<\\/a>\",\"label\":\"Message\"},\"phone\":{\"value\":\"83945586136\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-22 22:45:12'),(203,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"RobertJoymn\",\"label\":\"First name\"},\"lastname\":{\"value\":\"RobertJoymn\",\"label\":\"Last name\"},\"email\":{\"value\":\"jesusakoester@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\" \\u041f\\u043e\\u0440\\u0442\\u0430\\u043b \\u043d\\u0430 \\u043a\\u043e\\u0442\\u043e\\u0440\\u043e\\u043c \\u0441\\u043e\\u0431\\u0440\\u0430\\u043d\\u044b \\u0432\\u0441\\u0435 \\u0441\\u0442\\u0440\\u043e\\u0438\\u0442\\u0435\\u043b\\u044c\\u043d\\u044b\\u0435 \\u0441\\u0442\\u0430\\u0442\\u044c\\u0438, \\u0431\\u0443\\u0434\\u0435\\u0442 \\u043f\\u043e\\u043b\\u0435\\u0437\\u0435\\u043d \\u0432\\u0441\\u0435\\u043c \\r\\n \\r\\n \\r\\nhttps:\\/\\/stroitelux.ru\\/dizajn-spalni\\/krasivyj-dizajn-spalni-2021-2022-goda-foto-novinki-tendencii\\/\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"84935161666\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-22 23:38:40'),(204,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"gertraude.bambauer@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Scotteaget\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Scotteaget\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi. \\r\\nMy manual is a life hack on 2 pages of PDF. \\r\\nThere I will show in screenshots with explanations where and what price to put down and thus save the advertising budget (reduce the advertising budget by 5-10 times). \\r\\nMost ad networks lure advertisers to themselves with a low cost per click of $ 0.001, but they do not specify that such a price is only for Tier 3 countries. \\r\\nAnd for countries of Tier 1 and Tier 2, the price starts at $ 0.01 per click. \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc5auPc&sa=D&Ae=Ct&usg=AFQjCNHbbkCgtKD94ARGz03zJgrbUnHVRg \\r\\nBut we are not satisfied with this price, we need a lot of traffic at a price of $ 0.001 per click from Tier 1 countries. \\r\\nI will show you how to bypass the minimum price limit of $ 0.01 and buy traffic at $ 0.001 - $ 0.005 per click from countries of the Tier 1. \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc5auPc&sa=D&Ae=Xh&usg=AFQjCNHbbkCgtKD94ARGz03zJgrbUnHVRg \\r\\nAnd also, as a bonus, I will give one more ad network with high-quality traffic and a minimum price of $ 0.001 per click from Tier 1 Countries. \\r\\nThis life hack is suitable for business owners, affiliates and all those who need a lot of high-quality and cheap traffic. \\r\\nUsing this technique, I reduced my advertising budget from $ 150,000 to $ 50,000 per week, it turns out three times and I began to earn 5 times more. \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc5auPc&sa=D&Md=Gh&usg=AFQjCNHbbkCgtKD94ARGz03zJgrbUnHVRg\",\"label\":\"Message\"},\"phone\":{\"value\":\"84885471266\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-23 06:02:11'),(205,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Eric\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jones\",\"label\":\"Last name\"},\"email\":{\"value\":\"eric.jones.z.mail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hey there, I just found your site, quick question\\u2026\\r\\n\\r\\nMy name\\u2019s Eric, I found translucentcomputing.com after doing a quick search \\u2013 you showed up near the top of the rankings, so whatever you\\u2019re doing for SEO, looks like it\\u2019s working well.\\r\\n\\r\\nSo here\\u2019s my question \\u2013 what happens AFTER someone lands on your site? Anything?\\r\\n\\r\\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear\\u2026 forever.\\r\\n\\r\\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\\r\\n\\r\\nWhy would you want all that good work \\u2013 and the great site you\\u2019ve built \\u2013 go to waste?\\r\\n\\r\\nBecause the odds are they\\u2019ll just skip over calling or even grabbing their phone, leaving you high and dry.\\r\\n\\r\\nBut here\\u2019s a thought\\u2026 what if you could make it super-simple for someone to raise their hand, say, \\u201cokay, let\\u2019s talk\\u201d without requiring them to even pull their cell phone from their pocket?\\r\\n \\r\\nYou can \\u2013 thanks to revolutionary new software that can literally make that first call happen NOW.\\r\\n\\r\\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor\\u2019s Name, Email address and Phone Number. It lets you know IMMEDIATELY \\u2013 so that you can talk to that lead while they\\u2019re still there at your site.\\r\\n \\r\\nYou know, strike when the iron\\u2019s hot!\\r\\n\\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\\r\\n\\r\\nWhen targeting leads, you HAVE to act fast \\u2013 the difference between contacting someone within 5 minutes versus 30 minutes later is huge \\u2013 like 100 times better!\\r\\n\\r\\nThat\\u2019s why you should check out our new SMS Text With Lead feature as well\\u2026 once you\\u2019ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \\r\\n \\r\\nImagine how powerful this could be \\u2013 even if they don\\u2019t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\\r\\n\\r\\nJust this alone could be a game changer to make your website even more effective.\\r\\n\\r\\nStrike when the iron\\u2019s hot!\\r\\n\\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to learn more about everything Talk With Web Visitor can do for your business \\u2013 you\\u2019ll be amazed.\\r\\n\\r\\nThanks and keep up the great work!\\r\\n\\r\\nEric\\r\\nPS: Talk With Web Visitor offers a FREE 14 days trial \\u2013 you could be converting up to 100x more leads immediately! \\r\\nIt even includes International Long Distance Calling. \\r\\nStop wasting money chasing eyeballs that don\\u2019t turn into paying customers. \\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to try Talk With Web Visitor now.\\r\\n\\r\\nIf you\'d like to unsubscribe click here http:\\/\\/talkwithwebvisitors.com\\/unsubscribe.aspx?d=translucentcomputing.com\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"555-555-1212\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-23 23:52:46'),(206,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"Buigolf@sufmail.xyz\",\"label\":\"Email\"},\"firstname\":{\"value\":\"JUINNYDIZ\",\"label\":\"First name\"},\"lastname\":{\"value\":\"JUINNYDIZ\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cialis prices<\\/a>\",\"label\":\"Message\"},\"phone\":{\"value\":\"85713897555\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-24 01:01:22'),(207,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"daryl.poe@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Daryl\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Poe\",\"label\":\"Last name\"},\"company\":{\"value\":\"Daryl Poe\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello\\r\\n \\r\\nYOU NEED QUALITY VISITORS FOR YOUR: translucentcomputing.com ?\\r\\n \\r\\nWe Provide Website Traffic 100% safe for your site, from Search Engines or Social Media Sites from any country you want.\\r\\nWith this traffic, you can boost ranking in SERP, SEO, profit from CPM\\r\\n \\r\\nCLAIM YOUR 24 HOURS FREE TEST HERE=> seosubmitter@mail.com\\r\\n \\r\\nThanks, Daryl Poe\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"964 87 208\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-24 04:52:33'),(208,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Aimee\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Menne\",\"label\":\"Last name\"},\"email\":{\"value\":\"aimee@sourcegraph.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello,\\r\\nMy name is Aimee Menne and I am the Vice President of Customer Engineering at Sourcegraph. We are an on-prem developer productivity tool which is typically deployed within a customers\' infrastructure on Docker or Kubernetes. One of our customers is having a resourcing conflict and is unable to perform the Kubernetes deployment and install \\/ configure Sourcegraph; they have asked for us to bring in an individual to complete this work.\\r\\nIf this is the kind of work you do, would love to set up an initial discussion. There may also be an appetite for this sort of engagement across multiple customers going forward.\\r\\n\\r\\nBest,\\r\\nAimee\",\"label\":\"Message\"},\"phone\":{\"value\":\"+16503322551\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-25 22:11:14'),(209,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"gafinanci.e.r@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Gabriel Angelo\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Gabriel Angelo\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Dear Entrepreneur, \\r\\n \\r\\nI\'m Gabriel Angelo, My company can bridge funds for your new or ongoing business. do let me know when you receive this message for further procedure. \\r\\n \\r\\nWe also pay 1% commission to brokers and friends who introduce project owners for finance or other opportunities. \\r\\n \\r\\nYou can reach me directly using this email address: gabriel_angelo@nestalconsultants.com \\r\\n \\r\\nRegards, \\r\\nGabriel Angelo\",\"label\":\"Message\"},\"phone\":{\"value\":\"87342829568\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-26 11:07:50'),(210,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"s.lavrov@mextscalanov.bizml.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"VlasovsPetr\",\"label\":\"First name\"},\"lastname\":{\"value\":\"VlasovsPetr\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\" \\r\\n\\u0417\\u0434\\u0440\\u0430\\u0432\\u0441\\u0442\\u0432\\u0443\\u0439\\u0442\\u0435! \\r\\n\\u0425\\u043e\\u0442\\u0438\\u043c \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0438\\u0442\\u044c \\u043b\\u0443\\u0447\\u0448\\u0438\\u0435 \\u043f\\u0440\\u043e\\u0433\\u043e\\u043d\\u044b, \\u043a\\u043e\\u0442\\u043e\\u0440\\u044b\\u0435 \\u043c\\u043e\\u0433\\u0443\\u0442 \\\"\\u0443\\u0442\\u043e\\u043f\\u0438\\u0442\\u044c\\\" \\u0441\\u0430\\u0439\\u0442 \\u0432\\u0430\\u0448\\u0435\\u0433\\u043e \\u043a\\u043e\\u043d\\u043a\\u0443\\u0440\\u0435\\u043d\\u0442\\u0430. \\u0421\\u0442\\u043e\\u0438\\u043c\\u043e\\u0441\\u0442\\u044c: \\u043e\\u0442 2 \\u0442\\u044b\\u0441 \\u0440\\u0443\\u0431\\u043b\\u0435\\u0439. \\r\\n- \\u0413\\u0430\\u0440\\u0430\\u043d\\u0442\\u0438\\u0440\\u043e\\u0432\\u0430\\u043d\\u043d\\u044b\\u0439 \\u0440\\u0435\\u0437\\u0443\\u043b\\u044c\\u0442\\u0430\\u0442. \\u041e\\u043d\\u043b\\u0430\\u0439\\u043d-\\u0441\\u0430\\u0439\\u0442\\u044b \\u0432\\u0430\\u0448\\u0438\\u0445 \\u043a\\u043e\\u043d\\u043a\\u0443\\u0440\\u0435\\u043d\\u0442\\u043e\\u0432 \\\"\\u0443\\u043c\\u0440\\u0443\\u0442\\\". \\r\\n- \\u041c\\u0430\\u043a\\u0441\\u0438\\u043c\\u0430\\u043b\\u044c\\u043d\\u043e\\u0435 \\u0447\\u0438\\u0441\\u043b\\u043e \\u043d\\u0435\\u0433\\u0430\\u0442\\u0438\\u0432\\u043d\\u044b\\u0445 \\u0444\\u0438\\u0442\\u0431\\u0435\\u043a\\u043e\\u0432. \\r\\n- \\u0421\\u043e\\u0431\\u0440\\u0430\\u043d\\u0430 \\u0441\\u043f\\u0435\\u0446\\u0438\\u0430\\u043b\\u044c\\u043d\\u0430\\u044f \\u0431\\u0430\\u0437\\u0430 - \\u043c\\u0430\\u043a\\u0441\\u0438\\u043c\\u0430\\u043b\\u044c\\u043d\\u043e \\\"\\u0441\\u043c\\u0435\\u0440\\u0442\\u043e\\u043d\\u043e\\u0441\\u043d\\u044b\\u0435\\\" \\u043f\\u043b\\u043e\\u0449\\u0430\\u0434\\u043a\\u0438 \\u0438\\u0437 10 000 000 \\u0441\\u0430\\u0439\\u0442\\u043e\\u0432 (\\u0432\\u0438\\u0440\\u0443\\u0441\\u043d\\u044b\\u0445, \\u0441\\u043f\\u0430\\u043c\\u043d\\u044b\\u0445, \\u043f\\u043e\\u0440\\u043d\\u043e \\u0438 \\u0442\\u043e\\u043c\\u0443 \\u043f\\u043e\\u0434\\u043e\\u0431\\u043d\\u044b\\u0445). \\u0420\\u0430\\u0431\\u043e\\u0442\\u0430\\u0435\\u0442 \\u0431\\u0435\\u0437\\u043e\\u0442\\u043a\\u0430\\u0437\\u043d\\u043e. \\r\\n- \\u041f\\u0440\\u043e\\u0433\\u043e\\u043d \\u043f\\u0440\\u043e\\u0432\\u043e\\u0434\\u0438\\u043c \\u0441\\u0440\\u0430\\u0437\\u0443 \\u0441 \\u0447\\u0435\\u0442\\u044b\\u0440\\u0435\\u0445 \\u043c\\u043e\\u0449\\u043d\\u044b\\u0445 \\u0441\\u0435\\u0440\\u0432\\u0435\\u0440\\u043e\\u0432. \\r\\n- \\u041d\\u0435\\u043f\\u0440\\u0435\\u043a\\u0440\\u0430\\u0449\\u0430\\u044e\\u0449\\u0430\\u044f\\u0441\\u044f \\u043e\\u0442\\u043f\\u0440\\u0430\\u0432\\u043a\\u0430 \\u0432\\u0438\\u0440\\u0443\\u0441\\u043d\\u044b\\u0445 \\u0441\\u0441\\u044b\\u043b\\u043e\\u043a \\u043d\\u0430 \\u043e\\u0444\\u0438\\u0446\\u0438\\u0430\\u043b\\u044c\\u043d\\u044b\\u0439 email. \\r\\n- \\u0412\\u044b\\u043f\\u043e\\u043b\\u043d\\u0435\\u043d\\u0438\\u0435 \\u0432 \\u0442\\u0435\\u0447\\u0435\\u043d\\u0438\\u0435 40-240 \\u0447\\u0430\\u0441\\u043e\\u0432 \\u0434\\u0435\\u043d\\u044c \\u0438 \\u043d\\u043e\\u0447\\u044c. \\u041c\\u043e\\u0436\\u0435\\u043c \\u0440\\u0430\\u0441\\u0442\\u044f\\u043d\\u0443\\u0442\\u044c \\u043f\\u043e \\u0432\\u0440\\u0435\\u043c\\u0435\\u043d\\u0438 \\u043a\\u0430\\u043a \\u0443\\u0433\\u043e\\u0434\\u043d\\u043e. \\r\\n- \\u041f\\u0440\\u043e\\u0433\\u043e\\u043d \\u0441 \\u0437\\u0430\\u043f\\u0440\\u0435\\u0449\\u0451\\u043d\\u043d\\u044b\\u043c\\u0438 \\u043a\\u043b\\u044e\\u0447\\u0430\\u043c\\u0438. \\r\\n- \\u041f\\u0440\\u0438 2-\\u0445 \\u043f\\u0440\\u043e\\u0433\\u043e\\u043d\\u0430\\u0445 - \\u043e\\u0442\\u043b\\u0438\\u0447\\u043d\\u044b\\u0435 \\u0431\\u043e\\u043d\\u0443\\u0441\\u044b. \\r\\n \\r\\n\\u0421\\u0442\\u043e\\u0438\\u043c\\u043e\\u0441\\u0442\\u044c $80 \\r\\n\\u041f\\u043e\\u043b\\u043d\\u0430\\u044f \\u043e\\u0442\\u0447\\u0451\\u0442\\u043d\\u043e\\u0441\\u0442\\u044c. \\r\\n\\u041e\\u043f\\u043b\\u0430\\u0442\\u0430: \\u041a\\u0438\\u0432\\u0438, Yandex.Money, Bitcoin, Visa, MasterCard... \\r\\n \\r\\n\\u0422\\u0435\\u043b\\u0435\\u0433\\u0430: @xrumers \\r\\nSkype: xrumer.pro \\r\\nWhatsApp: +7(977)536-08-36 \\r\\n\\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043a\\u0430: support@xrumer.cc \\r\\n \\r\\n\\u0422\\u043e\\u043b\\u044c\\u043a\\u043e \\u044d\\u0442\\u0438! \\r\\n\\u0410 \\u0442\\u0410\\u043a\\u043e\\u0436 \\u0420\\u0430\\u0431\\u043e\\u0442\\u0430\\u0435\\u043c \\u0441\\u043e \\u0421\\u0442\\u0443\\u0434\\u0438\\u044f\\u043c\\u0438!\",\"label\":\"Message\"},\"phone\":{\"value\":\"89775360836\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-27 12:27:21'),(211,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"neradchtovzad@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"MikkyCluby\",\"label\":\"First name\"},\"lastname\":{\"value\":\"MikkyCluby\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"\\u0418\\u043d\\u0442\\u0435\\u0440\\u0435\\u0441\\u043d\\u043e \\u0441\\u043f\\u0430\\u0441\\u0435\\u0442 \\u043a\\u0440\\u0430\\u0441\\u043e\\u0442\\u0430 \\u043c\\u0438\\u0440 \\u0438\\u043b\\u0438 \\u0443\\u0436\\u0435 \\u043d\\u0435\\u0442.<\\/a> \\u041c\\u043e\\u0436\\u0435\\u0442 \\u0432\\u0441\\u0435 ? \\u0421\\u043e\\u0436\\u0435\\u0442 \\u043c\\u044b \\u0443\\u0436\\u0435 \\u043e\\u043f\\u043e\\u0437\\u0434\\u0430\\u043b\\u0438 \\u043d\\u0430\\u0432\\u0441\\u0435\\u0433\\u0434\\u0430?\",\"label\":\"Message\"},\"phone\":{\"value\":\"82324527851\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-27 12:42:14'),(212,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Eric\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jones\",\"label\":\"Last name\"},\"email\":{\"value\":\"eric.jones.z.mail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hey, this is Eric and I ran across translucentcomputing.com a few minutes ago.\\r\\n\\r\\nLooks great\\u2026 but now what?\\r\\n\\r\\nBy that I mean, when someone like me finds your website \\u2013 either through Search or just bouncing around \\u2013 what happens next? Do you get a lot of leads from your site, or at least enough to make you happy?\\r\\n\\r\\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site\\u2019s visitors disappear and are gone forever after just a moment.\\r\\n\\r\\nHere\\u2019s an idea\\u2026\\r\\n \\r\\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site\\u2026\\r\\n \\r\\nYou can \\u2013\\r\\n \\r\\nTalk With Web Visitor is a software widget that\\u2019s works on your site, ready to capture any visitor\\u2019s Name, Email address and Phone Number. It signals you the moment they let you know they\\u2019re interested \\u2013 so that you can talk to that lead while they\\u2019re literally looking over your site.\\r\\n\\r\\nCLICK HERE http:\\/\\/talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\\r\\n\\r\\nYou\\u2019ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\\r\\n\\r\\nIt gets even better\\u2026 once you\\u2019ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\\r\\n \\r\\nThat way, even if you don\\u2019t close a deal right away, you can follow up with text messages for new offers, content links, even just \\u201chow you doing?\\u201d notes to build a relationship.\\r\\n\\r\\nPretty sweet \\u2013 AND effective.\\r\\n\\r\\nCLICK HERE http:\\/\\/talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\\r\\n\\r\\nYou could be converting up to 100X more leads today!\\r\\n\\r\\nEric\\r\\nPS: Talk With Web Visitor offers a FREE 14 days trial \\u2013 and it even includes International Long Distance Calling. \\r\\nYou have customers waiting to talk with you right now\\u2026 don\\u2019t keep them waiting. \\r\\nCLICK HERE http:\\/\\/talkwithcustomer.com to try Talk With Web Visitor now.\\r\\n\\r\\nIf you\'d like to unsubscribe click here http:\\/\\/talkwithcustomer.com\\/unsubscribe.aspx?d=translucentcomputing.com\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"555-555-1212\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-27 13:06:17'),(213,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Eric\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jones\",\"label\":\"Last name\"},\"email\":{\"value\":\"eric.jones.z.mail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hey, this is Eric and I ran across translucentcomputing.com a few minutes ago.\\r\\n\\r\\nLooks great\\u2026 but now what?\\r\\n\\r\\nBy that I mean, when someone like me finds your website \\u2013 either through Search or just bouncing around \\u2013 what happens next? Do you get a lot of leads from your site, or at least enough to make you happy?\\r\\n\\r\\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site\\u2019s visitors disappear and are gone forever after just a moment.\\r\\n\\r\\nHere\\u2019s an idea\\u2026\\r\\n \\r\\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site\\u2026\\r\\n \\r\\nYou can \\u2013\\r\\n \\r\\nTalk With Web Visitor is a software widget that\\u2019s works on your site, ready to capture any visitor\\u2019s Name, Email address and Phone Number. It signals you the moment they let you know they\\u2019re interested \\u2013 so that you can talk to that lead while they\\u2019re literally looking over your site.\\r\\n\\r\\nCLICK HERE http:\\/\\/talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\\r\\n\\r\\nYou\\u2019ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\\r\\n\\r\\nIt gets even better\\u2026 once you\\u2019ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\\r\\n \\r\\nThat way, even if you don\\u2019t close a deal right away, you can follow up with text messages for new offers, content links, even just \\u201chow you doing?\\u201d notes to build a relationship.\\r\\n\\r\\nPretty sweet \\u2013 AND effective.\\r\\n\\r\\nCLICK HERE http:\\/\\/talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\\r\\n\\r\\nYou could be converting up to 100X more leads today!\\r\\n\\r\\nEric\\r\\nPS: Talk With Web Visitor offers a FREE 14 days trial \\u2013 and it even includes International Long Distance Calling. \\r\\nYou have customers waiting to talk with you right now\\u2026 don\\u2019t keep them waiting. \\r\\nCLICK HERE http:\\/\\/talkwithcustomer.com to try Talk With Web Visitor now.\\r\\n\\r\\nIf you\'d like to unsubscribe click here http:\\/\\/talkwithcustomer.com\\/unsubscribe.aspx?d=translucentcomputing.com\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"555-555-1212\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-28 02:55:35'),(214,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Chrissy\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Allan\",\"label\":\"Last name\"},\"email\":{\"value\":\"chrissy@youralexadirectory.link\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \\r\\n\\r\\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\\r\\n\\r\\nIts simple & easy; Register your business here --> \\r\\nhttps:\\/\\/voiceregbiz1.xyz\\/mroe-cusotmers\\/?=translucentcomputing.com\\r\\n\\r\\n\\r\\nChrissy\\r\\nVoice Activation Follow-up Specialist\\r\\nYour Alexa Directory\\r\\n\\r\\n\\r\\n\\r\\n \\r\\n2764 Pleasant Road Suite Suite A PMB 708\\r\\nFort Mill, SC 29708\\r\\n\\r\\nYou can skip future marketing messages here:\\r\\nhttps:\\/\\/voiceregbiz1.xyz\\/unsubscribe.php\\/?site=translucentcomputing.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"805-372-3366\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-29 04:42:56'),(215,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Michael\",\"label\":\"First name\"},\"lastname\":{\"value\":\"W.\",\"label\":\"Last name\"},\"email\":{\"value\":\"scrapingrobot@protonmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi! My name is Michael W. and I am the Senior Customer Success for Scraping Robot .com. \\r\\n\\r\\nI am extremely interested in promoting our services on your website translucentcomputing.com\\r\\n\\r\\nWe would like to know more about your rates for native ads and sponsored articles (or any other advertising options available).\\r\\n\\r\\nOur company provides one of the most reliable scraping services at a fraction of the cost of other companies! \\r\\n\\r\\nLooking forward for your reply, and thank you in advance!\\r\\n\\r\\nMichael W.\\r\\nSenior Customer Success\\r\\nscrapingrobot@protonmail.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"(03) 5386 0012\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-30 09:58:40'),(216,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Victoria\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Short\",\"label\":\"Last name\"},\"email\":{\"value\":\"victoriashort44@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello there! \\r\\n\\r\\nWould you\'d be interested in building a mobile app for your business? I\'m a mobile app developer that can design and program on any platform (Android, iOs) for an affordable price. There are various types of apps that can help your business, whether in terms of marketing, business efficiency, or both. If you already have some ideas for an app, I would love to hear about them to help you more on how we can make them all possible. I have many ideas of my own that I\'d really like to share with you of things that have worked really well for my other clients. \\r\\n\\r\\nIf you\'re interested in building an app, or getting more information about it, then I\'d love to give you a free consultation. Kindly reply to let me know when you\'d like to be contacted. I hope to speak with you soon! \\n\\nThanks!\\r\\nVictoria Short - Web Development and Business Optimization Specialist\",\"label\":\"Message\"},\"phone\":{\"value\":\"(302) 316-5084\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-30 22:48:35'),(217,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"juliaholliday7162@gmail.com\\r\\n\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Adamson\\r\\n\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mike Adamson\\r\\n\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi there \\r\\n \\r\\nDo you want a quick boost in ranks and sales for your translucentcomputing.com website? \\r\\nHaving a high DA score, always helps \\r\\n \\r\\nGet your translucentcomputing.com to have a DA between 50 to 60 points in Moz with us today and rip the benefits of such a great feat. \\r\\n \\r\\nSee our offers here: \\r\\nhttps:\\/\\/www.monkeydigital.co\\/product\\/moz-da50-seo-plan\\/ \\r\\n \\r\\nNEW: \\r\\nhttps:\\/\\/www.monkeydigital.co\\/product\\/ahrefs-dr60\\/ \\r\\n \\r\\n \\r\\nthank you \\r\\nMike Adamson\\r\\n \\r\\nsupport@monkeydigital.co\",\"label\":\"Message\"},\"phone\":{\"value\":\"81989881764\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-08-31 20:37:55'),(218,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"catattack@wir.pl\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Lxaddiday\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Lxaddiday\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"shortcircuit swashbuckling special https:\\/\\/www.noclegipracowniczneaugustow.site<\\/a> \\r\\nnoclegi pracownicze nieopodal suwalk noclegi pracownicze nieopodal suwalk<\\/a> \\r\\napartamenty ziolowa augustow https:\\/\\/www.noclegipracowniczneaugustow.site\\/03aqgw7.htm \\r\\nstx21\",\"label\":\"Message\"},\"phone\":{\"value\":\"88821761679\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-01 19:03:25'),(219,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"lutwyche.valerie@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Valerie\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Valerie\",\"label\":\"Last name\"},\"company\":{\"value\":\"Valerie\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi there \\r\\n\\r\\n50% OFF!! Hurry to get your Baseball Cap Now!\\r\\n\\r\\nThese Caps are SO cool! Perfect for this Summer!\\r\\n\\r\\nFree worldwide shipping!\\r\\n\\r\\nGET IT HERE: capshop.online\\r\\n\\r\\nBest, \\r\\n \\r\\nValerie\",\"label\":\"Message\"},\"phone\":{\"value\":\"0485 16 20 98\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-03 05:39:48'),(220,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Victoria\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Short\",\"label\":\"Last name\"},\"email\":{\"value\":\"victoriashort44@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello there! \\r\\n\\r\\nWould you\'d be interested in building a mobile app for your business? I\'m a mobile app developer that can design and program on any platform (Android, iOs) for an affordable price. There are various types of apps that can help your business, whether in terms of marketing, business efficiency, or both. If you already have some ideas for an app, I would love to hear about them to help you more on how we can make them all possible. I have many ideas of my own that I\'d really like to share with you of things that have worked really well for my other clients. \\r\\n\\r\\nIf you\'re interested in building an app, or getting more information about it, then I\'d love to give you a free consultation. Kindly reply to let me know when you\'d like to be contacted. I hope to speak with you soon! \\n\\nThanks!\\r\\nVictoria Short - Web Development and Business Optimization Specialist\",\"label\":\"Message\"},\"phone\":{\"value\":\"(302) 316-5084\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-03 07:41:50'),(221,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Adderiy\\r\\n\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mike Adderiy\\r\\n\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi there \\r\\n \\r\\nGet your translucentcomputing.com ranks back, fix your SEO trend with the best clean-up service ever. \\r\\n \\r\\nOur 3 way clean up strategy: \\r\\n\\u00a0 \\r\\nWe will check all pages of your website for plagiarism \\r\\nWe will check all linking domains for indexing, \\r\\nWe`ll check all linking domains for the TF\\/CF Ratio \\r\\n \\r\\nThen, we`ll assemble your final disavow file and submit it to the google disavow tool \\r\\n \\r\\nOrder this service today\\u00a0and in just few weeks time your ranks will be fully restored \\r\\nhttps:\\/\\/www.digital-x-press.com\\/product\\/clean-up-service\\/ \\r\\n \\r\\nIt works and its very effective, email us to send you examples of trend reversals. \\r\\n \\r\\nMike Adderiy\\r\\n \\r\\nSEO X Press \\r\\nsupport@digital-x-press.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"84671155338\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-03 14:02:41'),(222,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"remi1.bisinotto@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Emmaviave\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Emmaviave\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Looking for new acquaintances - http:\\/\\/2track.info\\/PrTi\",\"label\":\"Message\"},\"phone\":{\"value\":\"89891938439\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"22af4f36-1c78-4735-9459-f5bdf791d94b\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-09-04 05:00:58'),(223,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"artoncraftscn\",\"label\":\"First name\"},\"lastname\":{\"value\":\"artoncraftscn\",\"label\":\"Last name\"},\"email\":{\"value\":\"artoncraftscnx@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello. And Bye.\",\"label\":\"Message\"},\"phone\":{\"value\":\"83342534757\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-04 14:53:14'),(224,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"kostanovi4@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EdwinInjum\",\"label\":\"First name\"},\"lastname\":{\"value\":\"EdwinInjum\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\" \\u041d\\u0430\\u0448\\u0435\\u043b \\u0441\\u0430\\u0439\\u0442 \\u043f\\u0440\\u043e \\u0441\\u0442\\u0440\\u043e\\u0438\\u0442\\u0435\\u043b\\u044c\\u0441\\u0442\\u0432\\u043e, \\u043c\\u043d\\u043e\\u0433\\u043e \\u043f\\u043e\\u043b\\u0435\\u0437\\u043d\\u044b\\u0445 \\u0441\\u0442\\u0430\\u0442\\u0435\\u0439 \\r\\n \\r\\n \\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"89327681575\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-05 02:27:36'),(225,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"lethelpworld3@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"TheresaVow\",\"label\":\"First name\"},\"lastname\":{\"value\":\"TheresaVow\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Find your destiny - http:\\/\\/link-world.xyz\\/2Z7Dl\",\"label\":\"Message\"},\"phone\":{\"value\":\"81339646852\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"76871d90-a7d0-43c8-bc68-9efe6b944f05\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-09-05 08:03:00'),(226,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"aa1102aaaj@outlook.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"AnnetPounk\",\"label\":\"First name\"},\"lastname\":{\"value\":\"AnnetPounk\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cat in the hat writing paper \\r\\n \\r\\n \\r\\nDriver Tools<\\/a>\\r\\nPC Tools<\\/a>\\r\\n\\u0420\\u201c\\u0420\\u00bb\\u0420\\u00b0\\u0420\\u0406\\u0420\\u0405\\u0420\\u00b0\\u0421\\u040f<\\/a>\\r\\nPC Optimization<\\/a>\\r\\nHome<\\/a>\\r\\nAntivirus<\\/a>\\r\\nsystem<\\/a>\\r\\nTools<\\/a>\\r\\nInternet<\\/a>\\r\\nGraphic<\\/a>\\r\\n \\r\\n \\r\\nWhat should I do if my card is lost or stolen, or if I notice unauthorized card transactions?\\r\\nUnited Bank of India, 1.\\r\\nSee our coronavirus updates about financial relief, locations, banking and more.\\r\\naccount number and transit routing number, you can use online banking or an app to transfer money into their account.\\r\\nState Bank of India provides many opportunities for young graduates as well as experienced professionals for accelerated career growth.\\r\\n \\r\\nhow to write a descriptive paper<\\/a> 3f48f07 \\r\\n \\r\\n7bcf5b79eba2ad7852254d79dafe5b4dse\",\"label\":\"Message\"},\"phone\":{\"value\":\"89484799831\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"50d2d643-38fa-4bd5-bc86-07a7a330de6b\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-09-06 04:20:41'),(227,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"McKenzie\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Wilson\",\"label\":\"Last name\"},\"email\":{\"value\":\"mckenziewilson0021@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi,\\r\\n\\r\\nI want to contribute high-quality content to your website in form of a guest post through a simple 3 step process.\\r\\n\\r\\n1. I will send three amazing topic ideas that are up to the trend and your readers\' interest\\r\\n2. You need to choose one topic out of those.\\r\\n3. I will then send a high-quality, plagiarism-free article on that topic.\\r\\n\\r\\nYou will just have to publish it with one do-follow backlink to my website. It will be a win-win.\\r\\n\\r\\nPlease let me know if we shall start with step 1?\\r\\n\\r\\nBest,\\r\\n\\r\\nMcKenzie Wilson\",\"label\":\"Message\"},\"phone\":{\"value\":\"0980-3643525\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-07 00:58:41'),(228,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Eric\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jones\",\"label\":\"Last name\"},\"email\":{\"value\":\"eric.jones.z.mail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"My name\\u2019s Eric and I just found your site translucentcomputing.com.\\r\\n\\r\\nIt\\u2019s got a lot going for it, but here\\u2019s an idea to make it even MORE effective.\\r\\n\\r\\nTalk With Web Visitor \\u2013 CLICK HERE https:\\/\\/talkwithwebvisitors.com for a live demo now.\\r\\n\\r\\nTalk With Web Visitor is a software widget that\\u2019s works on your site, ready to capture any visitor\\u2019s Name, Email address and Phone Number. It signals you the moment they let you know they\\u2019re interested \\u2013 so that you can talk to that lead while they\\u2019re literally looking over your site.\\r\\n\\r\\nAnd once you\\u2019ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation\\u2026 and if they don\\u2019t take you up on your offer then, you can follow up with text messages for new offers, content links, even just \\u201chow you doing?\\u201d notes to build a relationship.\\r\\n\\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\\r\\n\\r\\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\\r\\n\\r\\nEric\\r\\nPS: Studies show that 70% of a site\\u2019s visitors disappear and are gone forever after just a moment. Don\\u2019t keep losing them. \\r\\nTalk With Web Visitor offers a FREE 14 days trial \\u2013 and it even includes International Long Distance Calling. \\r\\nYou have customers waiting to talk with you right now\\u2026 don\\u2019t keep them waiting. \\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to try Talk With Web Visitor now.\\r\\n\\r\\nIf you\'d like to unsubscribe click here http:\\/\\/talkwithwebvisitors.com\\/unsubscribe.aspx?d=translucentcomputing.com\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"555-555-1212\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-07 05:47:40'),(229,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"HenryDaync\",\"label\":\"First name\"},\"lastname\":{\"value\":\"HenryDaync\",\"label\":\"Last name\"},\"email\":{\"value\":\"denisandreev1989521a1n+71@list.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"RE: A Passive Income Success Story. Way To Earn $10000 Per Month In Passive Income \\r\\nRE: Passive Income My Success Story in 1 Month. How to invest $1000 to generate passive income \\r\\nFwd: $ 10,000 success story. How to make $10000 a Month Passive Income \\r\\nFwd: Passive Income My Success Story in 1 Month. How to generate $10000 a month in passive income \\r\\nRE: My success story. Earn $10000 Passive Income Per Month in 2020 \\r\\nRE: Passive Income My Success Story in 1 Month. How to Make Passive Income With Only $1000 \\r\\nRE: My success story. How I make $10000 per month through Passive Income \\r\\nRE: $ 10,000 success story. Generate $10000 in Monthly Passive Income \\r\\nFwd: Story of Successful Passive Income Strategies. Strategy to Earn $10000 Per Month In Passive Income \\r\\nRE: $ 10,000 success story. Passive Income Idea 2020: $10000\\/month \\r\\nFwd: A Passive Income Success Story. Passive Income: How I Make $10,000 Per Month \\r\\nRE: A Passive Income Success Story. How to Get $10000\\/Mo Passive Income \\r\\nRE: Success Stories - Smart Passive Income. Make money online - $10000+ Passive Income \\r\\nRE: $ 10,000 success story per week. The $10000 per Month Guide to Passive Income \\r\\nRE: $ 10,000 success story per week. How To Make $10000 A Month In Passive Income \\r\\nRE: $ 10,000 success story. Passive Income: Way To Make $10000 Per Month From Home \\r\\nRE: $ 10,000 success story. Way to earn passive income $10000 Per Month \\r\\nRE: $ 10,000 success story. Road to $10000 per Month of Passive Income \\r\\nRE: $ 10,000 success story. How To Make $10000 Per Month From Home: Passive Income. \\r\\ntranslucentcomputing.com, bndjcsfwhejvdkmcndhbsjcsdifefedjgf\",\"label\":\"Message\"},\"phone\":{\"value\":\"85834362868\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-08 07:31:47'),(230,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"RobertJoymn\",\"label\":\"First name\"},\"lastname\":{\"value\":\"RobertJoymn\",\"label\":\"Last name\"},\"email\":{\"value\":\"jesusakoester@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u041f\\u0440\\u0438\\u0432\\u0435\\u0442 \\u043f\\u043e\\u043b\\u0435\\u0437\\u043d\\u044b\\u0439 \\u0441\\u0442\\u0440\\u043e\\u0438\\u0442\\u0435\\u043b\\u044c\\u043d\\u044b\\u0439 \\u043f\\u043e\\u0440\\u0442\\u0430\\u043b \\r\\n \\r\\n \\r\\nhttps:\\/\\/stroitelux.ru\\/elektrika\\/raschet-osveshheniya-svetodiodnymi-svetilnikami-kalkulyator\\/\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"85998271614\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-08 18:15:51'),(231,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"denisandreev1989521a1n+4t@list.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"AubreyhIz\",\"label\":\"First name\"},\"lastname\":{\"value\":\"AubreyhIz\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RE: Passive Income My Success Story in 1 Month. Way To Earn $10000 Per Month In Passive Income \\r\\nRE: My success story. How to invest $1000 to generate passive income \\r\\nRE: $ 10,000 success story. How to make $10000 a Month Passive Income \\r\\nFwd: Success Stories - Smart Passive Income. How to generate $10000 a month in passive income \\r\\nRE: Passive Income My Success Story in 1 Month. Earn $10000 Passive Income Per Month in 2020 \\r\\nRE: Story of Successful Passive Income Strategies. How to Make Passive Income With Only $1000 \\r\\nRE: MAKE $200,000 IN PASSIVE INCOME! TRUE STORY. How I make $10000 per month through Passive Income \\r\\nFwd: Story of Successful Passive Income Strategies. Generate $10000 in Monthly Passive Income \\r\\nFwd: Passive Income My Success Story in 1 Month. Strategy to Earn $10000 Per Month In Passive Income \\r\\nRE: A Passive Income Success Story. Passive Income Idea 2020: $10000\\/month \\r\\nRE: Story of Successful Passive Income Strategies. Passive Income: How I Make $10,000 Per Month \\r\\nFwd: $ 10,000 success story per week. How to Get $10000\\/Mo Passive Income \\r\\nFwd: A Passive Income Success Story. Make money online - $10000+ Passive Income \\r\\nFwd: Success Stories - Smart Passive Income. The $10000 per Month Guide to Passive Income \\r\\nRE: My success story. How To Make $10000 A Month In Passive Income \\r\\nFwd: Success Stories - Smart Passive Income. Passive Income: Way To Make $10000 Per Month From Home \\r\\nRE: Passive Income My Success Story in 1 Month. Way to earn passive income $10000 Per Month \\r\\nFwd: MAKE $200,000 IN PASSIVE INCOME! TRUE STORY. Road to $10000 per Month of Passive Income \\r\\nFwd: My success story. How To Make $10000 Per Month From Home: Passive Income. \\r\\ntranslucentcomputing.com, bndjcsfwhejvdkmcndhbsjcsdifefedjgf\",\"label\":\"Message\"},\"phone\":{\"value\":\"81648185512\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-08 19:34:12'),(232,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Bane\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Davis\",\"label\":\"Last name\"},\"email\":{\"value\":\"banedavis210@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello there! \\r\\n\\r\\nMobile apps are the revolution of the Web - and online businesses. Whatever your business goals may be, a mobile app, which is installed and directly used by customers on their smartphones, is now more powerful than conventional websites. \\r\\n\\r\\nDo you have a mobile app for your business? Potential clients nowadays are more comfortable doing business with companies whose mobile app does not only have an amazing look and feel, but also has some features that make doing most business processes easier. I am an expert app developer and I specialized in Android, iOS and many other mobile platforms. I know that you have some great ideas about your future mobile app, and I cannot wait to hear all of them. I\'ve been thinking of some superstar ideas of my own, too. \\r\\n\\r\\nIf you\'d like to know more info, I\'ll send you my portfolio containing the apps that I\'ve made for my other clients, and I\'ll also show you data about how the app helps their business. Please reply to let me know what you think. Talk to you soon! \\n\\n \\r\\nRegards,\\r\\nBane Davis\",\"label\":\"Message\"},\"phone\":{\"value\":\"(681) 238-9274\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-09 16:55:02'),(233,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Hawkins\\r\\n\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mike Hawkins\\r\\n\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Howdy \\r\\n \\r\\nWe will enhance your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \\r\\n \\r\\nPlease check our plans here, we offer Local SEO at cheap rates. \\r\\nhttps:\\/\\/speed-seo.net\\/product\\/local-seo-package\\/ \\r\\n \\r\\nNEW: \\r\\nhttps:\\/\\/www.speed-seo.net\\/product\\/zip-codes-gmaps-citations\\/ \\r\\n \\r\\nregards \\r\\nMike Hawkins\\r\\n \\r\\nSpeed SEO Digital Agency\",\"label\":\"Message\"},\"phone\":{\"value\":\"87231398843\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-10 20:59:37'),(234,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Ian\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Rutherford\",\"label\":\"Last name\"},\"email\":{\"value\":\"IanRutherford433@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Do you have a bad reputation online, due to bad reviews or a lack of reviews? I specialize in reputation management and would love to work with you. Everyone looks at your reviews before buying, so having bad reviews can absolutely crush your business, whether you realize it or not. We have numerous ways of fixing your reputation online and can help you to boost your sales through the power of a strong reputation. \\r\\n\\r\\nLet me know if this is something you\'re interested in and I can provide you with more information. \\r\\n\\r\\nSincerely, \\n\\nIan Rutherford | Web Optimizer and Marketing Specialist\",\"label\":\"Message\"},\"phone\":{\"value\":\"7081102119\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-11 01:48:04'),(235,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"dyagileva92@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Anitaviave\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Anitaviave\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Looking for new acquaintances - http:\\/\\/2track.info\\/PrTi\",\"label\":\"Message\"},\"phone\":{\"value\":\"89677438599\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-11 05:35:28'),(236,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Anna\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Martin-Zacharias\",\"label\":\"Last name\"},\"email\":{\"value\":\"info@elegantstonehouse.ca\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi,\\r\\n\\r\\nI\'m looking to do some online marketing for my new small business, Elegant Stone House. Is this something you do?\\r\\n\\r\\nThanks\\r\\nAnna\",\"label\":\"Message\"},\"phone\":{\"value\":\"5198978500\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-13 12:58:14'),(237,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"EdwinInjum\",\"label\":\"First name\"},\"lastname\":{\"value\":\"EdwinInjum\",\"label\":\"Last name\"},\"email\":{\"value\":\"kostanovi4@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u041f\\u0440\\u0438\\u0432\\u0435\\u0442 \\u043f\\u043e\\u043b\\u0435\\u0437\\u043d\\u044b\\u0439 \\u0441\\u0442\\u0440\\u043e\\u0438\\u0442\\u0435\\u043b\\u044c\\u043d\\u044b\\u0439 \\u043f\\u043e\\u0440\\u0442\\u0430\\u043b \\r\\n \\r\\n \\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"85661329549\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-13 19:44:56'),(238,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"bedford.akilah@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Akilah\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Akilah\",\"label\":\"Last name\"},\"company\":{\"value\":\"Akilah\",\"label\":\"Company name\"},\"message\":{\"value\":\"Good day \\r\\n \\r\\nCAREDOGBEST\\u2122 - Personalized Dog Harness. All sizes from XS to XXL. Easy ON\\/OFF in just 2 seconds. LIFETIME WARRANTY.\\r\\n\\r\\nClick here: caredogbest.com\\r\\n \\r\\nTo your success, \\r\\n \\r\\nAkilah\\r\\nTranslucent I Cloud Native Solutions & DevOps Experts\",\"label\":\"Message\"},\"phone\":{\"value\":\"0950-3282919\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-14 12:12:18'),(239,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Leapman\\r\\n\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mike Leapman\\r\\n\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello \\r\\n \\r\\nI have just verified your SEO on translucentcomputing.com for its SEO Trend and saw that your website could use an upgrade. \\r\\n \\r\\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \\r\\n \\r\\nPlease check our pricelist here, we offer SEO at cheap rates. \\r\\nhttps:\\/\\/www.hilkom-digital.de\\/cheap-seo-packages\\/ \\r\\n \\r\\nStart improving your sales and leads with us, today! \\r\\n \\r\\nregards \\r\\nMike Leapman\\r\\n \\r\\nHilkom Digital Team \\r\\nsupport@hilkom-digital.de\",\"label\":\"Message\"},\"phone\":{\"value\":\"81743268171\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-14 21:49:31'),(240,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Sneha\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Sneha Sonam\",\"label\":\"Last name\"},\"email\":{\"value\":\"siterank2@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello and Good Day\\r\\nI am Sneha Sonam Marketing Manager with a reputable online marketing company based in India.\\r\\nWe can fairly quickly promote your website to the top of the search rankings with no long term contracts!\\r\\nWe can place your website on top of the Natural Listings on Google, Yahoo and MSN. Our Search Engine Optimization team delivers more top rankings than anyone else and we can prove it. We do not use \\\"link farms\\\" or \\\"black hat\\\" methods that Google and the other search engines frown upon and can use to de-list or ban your site. The techniques are proprietary, involving some valuable closely held trade secrets.\\r\\nWe would be happy to send you a proposal using the top search phrases for your area of expertise. Please contact me at your convenience so we can start saving you some money.\\r\\nIn order for us to respond to your request for information, please include your company\\u2019s website address (mandatory) and or phone number.\\r\\nSo let me know if you would like me to mail you more details or schedule a call. We\'ll be pleased to serve you.\\r\\nI look forward to your mail.\\r\\nThanks and Regards\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"7077060205\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-16 10:00:04'),(241,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Bill\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Grant\",\"label\":\"Last name\"},\"email\":{\"value\":\"BillGrant0124@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi,\\r\\n\\r\\nI am reaching out to see if you\'re interested in starting an ad campaign or improving the performance of an existing campaign on platforms like Google Ads, Bing Ads, Facebook Ads, and more by using PPC (Per-Per-Click)?\\r\\n\\r\\nI am an expert in online advertising, and I will provide and will give you guaranteed traffic to your site that can make a huge impact on sales. Let me know if you\'re interested.\\r\\n\\r\\nThank you!\\n\\nThank you.\\r\\nBill Grant\",\"label\":\"Message\"},\"phone\":{\"value\":\"9291986277\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-18 16:16:15'),(242,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"abuse@argotel.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Ronaldpes\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Ronaldpes\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"\\u0412\\u0438\\u0440\\u0442\\u0443\\u0430\\u043b\\u044c\\u043d\\u044b\\u0439 \\u0445\\u043e\\u0441\\u0442\\u0438\\u043d\\u0433<\\/a> \\r\\n\\u0412\\u0438\\u0440\\u0442\\u0443\\u0430\\u043b\\u044c\\u043d\\u044b\\u0439 \\u0445\\u043e\\u0441\\u0442\\u0438\\u043d\\u0433<\\/a>\",\"label\":\"Message\"},\"phone\":{\"value\":\"82125593481\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-18 19:32:47'),(243,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Lavonda\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Underhill\",\"label\":\"Last name\"},\"email\":{\"value\":\"lavonda.underhill@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi there, we are creating Amazon affiliate websites for free.\\r\\nI was wondering if you would like us to create a site\\r\\nfor you in exchange for sharing your honest review about our services on Social media?\\r\\nThat way we get testimonials and you get a website for free.\\r\\nkind of win-win. :)\\r\\n\\r\\nWe are a new company and now we are starting to build our reputation online.\\r\\n\\r\\nYou just have to pick a niche and domain - our staff will take care for the rest.\\r\\nIf it\'s relevant you can contact us at:\\r\\n\\r\\nstaff@affiliatesitemasters.com\\r\\n\\r\\nBest regards\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"904-238-6320\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-20 04:49:28'),(244,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Diane\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Morgan\",\"label\":\"Last name\"},\"email\":{\"value\":\"diane.morgan367@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi there! \\r\\n\\r\\nAre you interested in starting an ad campaign or want a guaranteed traffic that can make a huge impact on sales of performance of your existing campaign on platforms like Google Ads, Bing Ads, Facebook Ads etc? Please let me know and I can provide you with some information and pricing.\\r\\n\\r\\nThanks!\\n\\nBest regards,\\r\\nDiane Morgan\",\"label\":\"Message\"},\"phone\":{\"value\":\"9456332359\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-20 14:35:54'),(245,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"LorenzoAssix\",\"label\":\"First name\"},\"lastname\":{\"value\":\"LorenzoAssix\",\"label\":\"Last name\"},\"email\":{\"value\":\"christiedazzo@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u0427\\u0442\\u043e\\u0431\\u044b \\u0443\\u0432\\u0435\\u043b\\u0438\\u0447\\u0438\\u0442\\u044c \\u0438\\u043d\\u0442\\u0435\\u0440\\u0432\\u0430\\u043b \\u043c\\u0435\\u0436\\u0434\\u0443 \\u043e\\u0431\\u0440\\u0430\\u0449\\u0435\\u043d\\u0438\\u044f\\u043c\\u0438 \\u0432 \\u0430\\u0432\\u0442\\u043e\\u0441\\u0435\\u0440\\u0432\\u0438\\u0441, \\u0432\\u044b\\u0431\\u0438\\u0440\\u0430\\u0439\\u0442\\u0435 \\u043a\\u0430\\u0447\\u0435\\u0441\\u0442\\u0432\\u0435\\u043d\\u043d\\u044b\\u0435 \\u0441\\u0440\\u0435\\u0434\\u0441\\u0442\\u0432\\u0430 \\u0434\\u043b\\u044f \\u0440\\u0435\\u0433\\u0443\\u043b\\u044f\\u0440\\u043d\\u043e\\u0433\\u043e \\u0443\\u0445\\u043e\\u0434\\u0430 \\u0437\\u0430 \\u043e\\u0441\\u043d\\u043e\\u0432\\u043d\\u044b\\u043c\\u0438 \\u0443\\u0437\\u043b\\u0430\\u043c\\u0438 \\u0430\\u0432\\u0442\\u043e\\u043c\\u043e\\u0431\\u0438\\u043b\\u044f. \\u041f\\u0440\\u0438\\u0441\\u0430\\u0434\\u043a\\u0438 \\u0434\\u043b\\u044f \\u0431\\u0435\\u043d\\u0437\\u0438\\u043d\\u0430 \\u0438 \\u0434\\u0438\\u0437\\u0435\\u043b\\u044c\\u043d\\u043e\\u0433\\u043e \\u0442\\u043e\\u043f\\u043b\\u0438\\u0432\\u0430, \\u043a\\u043e\\u0442\\u043e\\u0440\\u044b\\u0435 \\u0437\\u0430\\u0449\\u0438\\u0442\\u044f\\u0442 \\u0444\\u043e\\u0440\\u0441\\u0443\\u043d\\u043a\\u0438 \\u0438 \\u043a\\u043b\\u0430\\u043f\\u0430\\u043d\\u044b \\u0434\\u0432\\u0438\\u0433\\u0430\\u0442\\u0435\\u043b\\u044f \\u043e\\u0442 \\u043f\\u0440\\u0435\\u0436\\u0434\\u0435\\u0432\\u0440\\u0435\\u043c\\u0435\\u043d\\u043d\\u043e\\u0433\\u043e \\u0438\\u0437\\u043d\\u043e\\u0441\\u0430, \\u0430 \\u0442\\u0430\\u043a\\u0436\\u0435 \\u043e\\u0447\\u0438\\u0441\\u0442\\u0438\\u0442\\u0435\\u043b\\u0438 \\u0438 \\u0441\\u043f\\u0435\\u0446\\u0438\\u0430\\u043b\\u044c\\u043d\\u044b\\u0435 \\u0441\\u0440\\u0435\\u0434\\u0441\\u0442\\u0432\\u0430 \\u0434\\u043b\\u044f \\u0430\\u0432\\u0442\\u043e\\u0441\\u0435\\u0440\\u0432\\u0438\\u0441\\u043e\\u0432. \\r\\n \\r\\n\\u041a\\u043e\\u043c\\u043f\\u0430\\u043d\\u0438\\u044f \\u0438\\u0437\\u0432\\u0435\\u0441\\u0442\\u043d\\u0430 \\u043a\\u0430\\u043a \\u043a\\u0440\\u0443\\u043f\\u043d\\u0435\\u0439\\u0448\\u0438\\u0439 \\u0440\\u0430\\u0437\\u0440\\u0430\\u0431\\u043e\\u0442\\u0447\\u0438\\u043a \\u0438\\u043d\\u043d\\u043e\\u0432\\u0430\\u0446\\u0438\\u043e\\u043d\\u043d\\u044b\\u0445 \\u0441\\u043c\\u0430\\u0437\\u043e\\u0447\\u043d\\u044b\\u0445 \\u043c\\u0430\\u0442\\u0435\\u0440\\u0438\\u0430\\u043b\\u043e\\u0432 \\u0434\\u043b\\u044f \\u043f\\u0440\\u043e\\u0444\\u0435\\u0441\\u0441\\u0438\\u043e\\u043d\\u0430\\u043b\\u044c\\u043d\\u043e\\u0433\\u043e \\u043f\\u0440\\u0438\\u043c\\u0435\\u043d\\u0435\\u043d\\u0438\\u044f. \\u041e\\u0441\\u043e\\u0431\\u043e\\u0435 \\u043c\\u0435\\u0441\\u0442\\u043e \\u0432 \\u043b\\u0438\\u043d\\u0435\\u0439\\u043a\\u0435 \\u043f\\u0440\\u043e\\u0434\\u0443\\u043a\\u0446\\u0438\\u0438 \\u0437\\u0430\\u043d\\u0438\\u043c\\u0430\\u044e\\u0442 \\u043c\\u0430\\u0441\\u043b\\u0430 \\u043d\\u0430 \\u0431\\u0430\\u0437\\u0435 \\u044d\\u0441\\u0442\\u0435\\u0440\\u043e\\u0432 (\\u0438\\u0445 \\u0434\\u043e\\u043b\\u044f \\u0432 \\u0441\\u043e\\u0441\\u0442\\u0430\\u0432\\u0435 \\u0433\\u043e\\u0442\\u043e\\u0432\\u043e\\u0433\\u043e \\u043f\\u0440\\u043e\\u0434\\u0443\\u043a\\u0442\\u0430 \\u043c\\u043e\\u0436\\u0435\\u0442 \\u0434\\u043e\\u0441\\u0442\\u0438\\u0433\\u0430\\u0442\\u044c 40-60%) \\u0438 \\u041d\\u0435\\u0441\\u0442\\u0435\\u0440\\u043e\\u0432\\u043e\\u0439-\\u043a\\u0435\\u0440\\u0430\\u043c\\u0438\\u0447\\u0435\\u0441\\u043a\\u0438\\u0435 \\u043f\\u0440\\u0438\\u0441\\u0430\\u0434\\u043a\\u0438. \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\u0442\\u0435\\u0445\\u043d\\u0438\\u0447\\u0435\\u0441\\u043a\\u0430\\u044f \\u044d\\u043a\\u0441\\u043f\\u043b\\u0443\\u0430\\u0442\\u0430\\u0446\\u0438\\u044f \\u0430\\u0432\\u0442\\u043e\\u043c\\u043e\\u0431\\u0438\\u043b\\u0435\\u0439<\\/a>\",\"label\":\"Message\"},\"phone\":{\"value\":\"82395255624\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-21 00:12:34'),(246,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"catattack@wir.pl\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Liaddiday\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Liaddiday\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"noclegi augustow agroturystyka www.noclegipracowniczneaugustow.site<\\/a> \\r\\nchallengers tongs accords nocleg w augustowie<\\/a> \\r\\nmornings iteration gastric https:\\/\\/www.noclegipracowniczneaugustow.site\\/zacisze-kwatery-augustow.htm \\r\\nstx21\",\"label\":\"Message\"},\"phone\":{\"value\":\"83439482654\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-21 07:08:12'),(247,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"rashidov.arsensla@orange.fr\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Kevinlip\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Kevinlip\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi. \\r\\n \\r\\nIt is a smart AI-based trading robot that will make 93% of successful trades. \\r\\n \\r\\nThe set of users is limited, there are 39 places left. \\r\\n \\r\\nAll other users will pay 10% of each transaction for using our AI trading robot. \\r\\n \\r\\nRegister now and use it for free. \\r\\n \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc5TErp&sa=D&vw=7m&usg=AFQjCNGER3suzFXrVfFj8alSN_WnyidwBQ \\r\\n \\r\\n19 out of 75 of our beta testers became dollar millionaires in 2-3 months with an investment of $ 1000, the rest, using our trading robot, receive passive income of $ 47,000 per month. \\r\\n \\r\\nYou don\'t need to know anything here, work experience is not needed, your personal manager will help you with everything. \\r\\n \\r\\nHurry up to register and start earning passive income. \\r\\n \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc5TErp&sa=D&2s=ql&usg=AFQjCNGER3suzFXrVfFj8alSN_WnyidwBQ\",\"label\":\"Message\"},\"phone\":{\"value\":\"84515611989\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-21 15:58:47'),(248,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"f.pimenov@paypromesan.bizml.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"MirraVlasovs\",\"label\":\"First name\"},\"lastname\":{\"value\":\"MirraVlasovs\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\" \\r\\n\\u0413\\u043e\\u0442\\u043e\\u0432\\u044b \\u043f\\u0440\\u0435\\u0434\\u043b\\u043e\\u0436\\u0438\\u0442\\u044c \\u0434\\u0435\\u0439\\u0441\\u0442\\u0432\\u0435\\u043d\\u043d\\u044b\\u0439 \\u0432\\u0430\\u0440\\u0438\\u0430\\u043d\\u0442 \\u0434\\u043b\\u044f \\\"\\u0443\\u0431\\u0438\\u0439\\u0441\\u0442\\u0432\\u0430\\\" \\u043e\\u043d\\u043b\\u0430\\u0439\\u043d-\\u0441\\u0430\\u0439\\u0442\\u0430 \\u0432\\u0430\\u0448\\u0435\\u0433\\u043e \\u043a\\u043e\\u043d\\u043a\\u0443\\u0440\\u0435\\u043d\\u0442\\u0430. \\r\\n\\u0418\\u0441\\u043f\\u043e\\u043b\\u044c\\u0437\\u0443\\u0435\\u043c \\u0441\\u043e\\u0432\\u0440\\u0435\\u043c\\u0435\\u043d\\u043d\\u044b\\u0435 \\u0442\\u0435\\u0445\\u043d\\u043e\\u043b\\u043e\\u0433\\u0438\\u0438, \\u043f\\u0440\\u043e\\u0432\\u0435\\u0440\\u0435\\u043d\\u043d\\u044b\\u0435 \\u043d\\u0435 \\u043e\\u0434\\u043d\\u0438\\u043c \\u043f\\u0440\\u043e\\u0435\\u043a\\u0442\\u043e\\u043c: \\r\\n- \\u0423\\u043d\\u0438\\u0447\\u0442\\u043e\\u0436\\u0430\\u0435\\u043c \\u0441\\u0430\\u0439\\u0442\\u044b \\u043f\\u043e \\u043a\\u0430\\u043a\\u0438\\u043c \\u0443\\u0433\\u043e\\u0434\\u043d\\u043e \\u043a\\u043b\\u044e\\u0447\\u0430\\u043c. \\r\\n- 300000-400000 \\u0441\\u043f\\u0430\\u043c\\u043d\\u044b\\u0445 \\u0431\\u0435\\u043a\\u043b\\u0438\\u043d\\u043a\\u043e\\u0432. \\r\\n- \\u0417\\u0430\\u0441\\u043f\\u0430\\u043c\\u043b\\u0435\\u043d\\u043e\\u0441\\u0442\\u044c \\u043e\\u0441\\u043d\\u043e\\u0432\\u043d\\u043e\\u0433\\u043e \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u043e\\u0433\\u043e \\u044f\\u0449\\u0438\\u043a\\u0430 \\u043e\\u0440\\u0433\\u0430\\u043d\\u0438\\u0437\\u0430\\u0446\\u0438\\u0438 \\u043f\\u0438\\u0441\\u044c\\u043c\\u0430\\u043c\\u0438 \\u0441 \\u0441\\u043e\\u043c\\u043d\\u0438\\u0442\\u0435\\u043b\\u044c\\u043d\\u044b\\u043c\\u0438 \\u0440\\u0430\\u0441\\u0441\\u044b\\u043b\\u043a\\u0430\\u043c\\u0438 \\r\\n- \\u041f\\u043e\\u043d\\u0438\\u0436\\u0435\\u043d\\u0438\\u0435 \\u043f\\u043e\\u0437\\u0438\\u0446\\u0438\\u0439 \\u043e\\u043d\\u043b\\u0430\\u0439\\u043d-\\u0441\\u0430\\u0439\\u0442\\u0430 \\u0432 \\u043f\\u043e\\u0438\\u0441\\u043a\\u043e\\u0432\\u0438\\u043a\\u0430\\u0445 \\u043f\\u043e \\u043b\\u044e\\u0431\\u044b\\u043c \\u043a\\u043e\\u043c\\u043c\\u0435\\u0440\\u0447\\u0435\\u0441\\u043a\\u0438\\u043c \\u043a\\u043b\\u044e\\u0447\\u0435\\u0432\\u044b\\u043c \\u0444\\u0440\\u0430\\u0437\\u0430\\u043c. \\r\\n- \\u0421\\u0435\\u043a\\u0440\\u0435\\u0442\\u043d\\u0430\\u044f \\u043c\\u0435\\u0442\\u043e\\u0434\\u0438\\u043a\\u0430. \\u042d\\u0442\\u043e \\u0438\\u0437\\u0432\\u0435\\u0441\\u0442\\u043d\\u043e \\u0442\\u043e\\u043b\\u044c\\u043a\\u043e \\u043d\\u0430\\u0448\\u0438\\u043c \\u0441\\u043f\\u0435\\u0446\\u0438\\u0430\\u043b\\u0438\\u0441\\u0442\\u0430\\u043c. \\r\\n- \\u0413\\u0430\\u0440\\u0430\\u043d\\u0442\\u0438\\u044f \\u0432\\u043e\\u0437\\u0432\\u0440\\u0430\\u0442\\u0430 \\u0434\\u0435\\u043d\\u0435\\u0436\\u043d\\u044b\\u0445 \\u0441\\u0440\\u0435\\u0434\\u0441\\u0442\\u0432 \\u043f\\u0440\\u0438 \\u0443\\u0441\\u043b\\u043e\\u0432\\u0438\\u0438 \\u043d\\u0435\\u0443\\u0434\\u0430\\u0447\\u0438. \\r\\n- \\u041f\\u043e\\u043b\\u043d\\u0430\\u044f \\u043e\\u0442\\u0447\\u0451\\u0442\\u043d\\u043e\\u0441\\u0442\\u044c. \\r\\n- \\u041f\\u043e\\u043b\\u043d\\u0430\\u044f \\u0441\\u0435\\u043a\\u0440\\u0435\\u0442\\u043d\\u043e\\u0441\\u0442\\u044c \\u043d\\u0430\\u0448\\u0435\\u0439 \\u0440\\u0430\\u0431\\u043e\\u0442\\u044b. \\u041d\\u0438\\u043a\\u0442\\u043e \\u043d\\u0435 \\u0441\\u043c\\u043e\\u0436\\u0435\\u0442 \\u0443\\u0437\\u043d\\u0430\\u0442\\u044c \\u043f\\u0440\\u043e \\u043d\\u0430\\u0448\\u0443 \\u0434\\u0435\\u044f\\u0442\\u0435\\u043b\\u044c\\u043d\\u043e\\u0441\\u0442\\u044c. \\r\\n \\r\\n\\u0426\\u0435\\u043d\\u0430 80$ \\r\\n\\u041f\\u043e\\u043b\\u043d\\u0430\\u044f \\u043e\\u0442\\u0447\\u0451\\u0442\\u043d\\u043e\\u0441\\u0442\\u044c. \\r\\n\\u041e\\u043f\\u043b\\u0430\\u0442\\u0430: Qiwi, \\u042f\\u043d\\u0434\\u0435\\u043a\\u0441.\\u0414\\u0435\\u043d\\u044c\\u0433\\u0438, Bitcoin, Visa, MasterCard... \\r\\n \\r\\n\\u0422\\u0435\\u043b\\u0435\\u0433\\u0430: @xrumers \\r\\nSkype: xrumer.pro \\r\\nWhatsApp: +7(977)536-08-36 \\r\\nemail: support@xrumer.cc \\r\\n \\r\\n\\u0422\\u043e\\u043b\\u044c\\u043a\\u043e \\u044d\\u0442\\u0438! \\r\\n\\u0410 \\u0442\\u0410\\u043a\\u043e\\u0436 \\u0420\\u0430\\u0431\\u043e\\u0442\\u0430\\u0435\\u043c \\u0441\\u043e \\u0421\\u0442\\u0443\\u0434\\u0438\\u044f\\u043c\\u0438!\",\"label\":\"Message\"},\"phone\":{\"value\":\"89775360836\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-21 21:18:22'),(249,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Holmes\\r\\n\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mike Holmes\\r\\n\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello \\r\\n \\r\\nWe all know the importance that dofollow link have on any website`s ranks. \\r\\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \\r\\n \\r\\nBuy quality dofollow links from us, that will impact your ranks in a positive way \\r\\nhttps:\\/\\/www.digital-x-press.com\\/product\\/150-dofollow-backlinks\\/ \\r\\n \\r\\nBest regards \\r\\nMike Holmes\\r\\n \\r\\nsupport@digital-x-press.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"81224386619\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-22 06:47:25'),(250,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"m3tiss3-gu3ss-974@live.fr\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Ramonexali\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Ramonexali\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"How I Earn $1500 A Day - Passive Income >>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc5TErp&sa=D&7g=q7&usg=AFQjCNGER3suzFXrVfFj8alSN_WnyidwBQ <<<<<<<<<<<<<\",\"label\":\"Message\"},\"phone\":{\"value\":\"89244845734\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-23 02:17:04'),(251,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Rachel\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Florent\",\"label\":\"Last name\"},\"email\":{\"value\":\"rachel.florent@videomarketingnow.xyz\",\"label\":\"Email\"},\"message\":{\"value\":\"Hey, \\r\\n\\r\\nYou have a lot going on right now, but maybe we can help?\\r\\n\\r\\nWe make professional videos for businesses to put on their websites.\\r\\n\\r\\nSee examples of what we can do for you:\\r\\nhttps:\\/\\/bestvideo2.xyz\\/video\\/?=translucentcomputing.com\\r\\n\\r\\nThese videos are helping businesses GROW right now, at a time when they need it most.\\r\\n\\r\\nRachel Florent\\r\\nCustom Video Specialist\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n410 Santa Clara St. East, Unit 817\\t\\r\\nSan Jose,\\tCA 95113\\r\\n \\r\\nNo more video marketing:\\r\\nhttps:\\/\\/bestvideo2.xyz\\/unsubscribe.php\\/?site=translucentcomputing.com\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"326-421-1751\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-23 10:19:51'),(252,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"dyan.dunham@googlemail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Dyan\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Dyan\",\"label\":\"Last name\"},\"company\":{\"value\":\"Dyan\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello there \\r\\n\\r\\nThe New Powerful LED Flashlight is The Perfect Flashlight For Any Situation!\\r\\n\\r\\nThe 3,000 Lumens & Adjustable Zoom gives you the wide field of view and brightness other flashlights don\\u2019t have.\\r\\n\\r\\n50% OFF + Free Shipping! Get it Now: linterna.shop\\r\\n\\r\\nBest regards, \\r\\n\\r\\nDyan\",\"label\":\"Message\"},\"phone\":{\"value\":\"(07) 3556 9409\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-23 20:44:50'),(253,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Michealvef\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Michealvef\",\"label\":\"Last name\"},\"email\":{\"value\":\"carpartcing1991@mail.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u041d\\u043e\\u0432\\u043e\\u0441\\u0442\\u0438 \\u0438\\u043d\\u0432\\u0435\\u0441\\u0442\\u0438\\u0446\\u0438\\u0439 \\u0438 \\u0444\\u0438\\u043d\\u0430\\u043d\\u0441\\u043e\\u0432 \\r\\n \\r\\n \\r\\nhttps:\\/\\/cfeed.ru\\/biznes-idei\\/biznes-idei-s-minimalnymi-vlozheniyami-kto-chto-gde-2\\/\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"82959544764\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-23 23:25:10'),(254,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Akshita \",\"label\":\"First name\"},\"lastname\":{\"value\":\"Diwan\",\"label\":\"Last name\"},\"email\":{\"value\":\"akshita.d@staqwise.com\",\"label\":\"Email\"},\"message\":{\"value\":\"I went through your website and found it interesting and it looks like you are developing a useful business for clients in need of Website design, Product design services.\\r\\nI would love to collaborate as a technology partner.\\r\\nWe help companies provide UI\\/UX for better user experience, Web & Mobile application development, offshore product development services.\",\"label\":\"Message\"},\"phone\":{\"value\":\"347 377 0861\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-24 07:57:13'),(255,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"liberated_ramonz@hotmail.fr\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Ramonexali\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Ramonexali\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Buy altcoins for $ 9,000 and sell them for $ 17,000,000 >>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc5TErp&sa=D&yk=7g&usg=AFQjCNGER3suzFXrVfFj8alSN_WnyidwBQ <<<<<<<<<<<<<\",\"label\":\"Message\"},\"phone\":{\"value\":\"88944589338\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-24 13:05:50'),(256,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"no-replyentaisk@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"JamesSib\",\"label\":\"First name\"},\"lastname\":{\"value\":\"JamesSib\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi! translucentcomputing.com \\r\\n \\r\\nDo you know the easiest way to mention your products or services? Sending messages using feedback forms will permit you to simply enter the markets of any country (full geographical coverage for all countries of the world). The advantage of such a mailing is that the emails which will be sent through it\'ll end up within the mailbox that is meant for such messages. Causing messages using Feedback forms isn\'t blocked by mail systems, which suggests it\'s bound to reach the client. You may be able to send your offer to potential customers who were previously unobtainable because of spam filters. \\r\\nWe offer you to check our service for complimentary. We will send up to 50,000 message for you. \\r\\nThe cost of sending one million messages is us $ 49. \\r\\n \\r\\nThis offer is created automatically. Please use the contact details below to contact us. \\r\\n \\r\\nContact us. \\r\\nTelegram - @FeedbackMessages \\r\\nSkype live:contactform_18 \\r\\nWhatsApp - +375259112693 \\r\\nWe only use chat.\",\"label\":\"Message\"},\"phone\":{\"value\":\"83769989379\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-25 06:43:55'),(257,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Karl\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Gargett\",\"label\":\"Last name\"},\"email\":{\"value\":\"crotonz12@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi there,\\r\\n\\r\\nHire Live Chat Agents - Unlimited chats - 24\\/7 coverage - Good Communication - Top Notch Support - Increase your sales 3 times with our 24\\/7 Live Chat Agents to generate more leads and excellent customer support. \\r\\nhttps:\\/\\/crotonz.com\\/live-chat.php\\r\\n\\r\\nHire Virtual Assistants and Agents for your website & business. Flexible Plans\\/ Pricing and Expert Employees. 15 days Free Trial. \\r\\nhttps:\\/\\/crotonz.com\\/virtual-assistants.php\\r\\n\\r\\nBest Regards\\r\\nSam Miller\\r\\ninfo@crotonz.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"337-320-0850\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-25 07:49:01'),(258,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"gvm.marcos2@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"ErikadiZ\",\"label\":\"First name\"},\"lastname\":{\"value\":\"ErikadiZ\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"War - https:\\/\\/bit.ly\\/3yUDi1k\",\"label\":\"Message\"},\"phone\":{\"value\":\"89424136256\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"f29e9f81-cb01-4896-b37b-4894c057b448\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-09-25 16:16:55'),(259,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"nicolas_vincent_62@hotmail.fr\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Ramonexali\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Ramonexali\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Get the lucky one! Invest $ 395 and get passive income of $ 7400 per day >>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc5TErp&sa=D&bm=me&usg=AFQjCNGER3suzFXrVfFj8alSN_WnyidwBQ <<<<<<<<<<<<<\",\"label\":\"Message\"},\"phone\":{\"value\":\"82251565523\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-26 04:55:24'),(260,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"olegivanover2@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"BennyRuits\",\"label\":\"First name\"},\"lastname\":{\"value\":\"BennyRuits\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Free weight loss 15 kg for 1 month! --> http:\\/\\/weightlosstrue.freecluster.eu\\/ \\r\\nFree weight loss<\\/a> Detail<\\/a>: Free weight loss<\\/a> \\r\\n \\r\\nDiet and weight loss \\r\\n \\r\\nStudies have shown that just about any diet will result in weight loss, if it\\u2019s one that someone can follow.1,2 Esteemed Yale physician and nutrition expert David Katz examined over 58 popular diets and found that the most successful in terms of both weight loss and nutrition consist of \\u201creal food.\\u201d By that he means plants, whole grains, nuts and seeds, as well as meat (ideally, from animals that ate plants). Basically, foods closer to nature. The other key is minimizing processed foods, including sugars and flours.3 \\r\\n \\r\\nWithout realizing it, I followed Katz\\u2019s advice: I ate mostly fruits and vegetables, nuts, seeds, and dairy. I occasionally had whole grains like quinoa or farro, even rice or corn chips. And, of course, an occasional treat. But I had sworn off sugars and flours, for the most part. \\r\\nBehavior change and weight loss \\r\\n \\r\\nIt\\u2019s hard to keep track of how much we eat. But a lot of research shows that when we keep track of intake, we eat less. This is called self-monitoring, and why writing down what I ate and weighed helped me.4,5,6 There are so many ways to do this nowadays: from the old-school paper-and-pencil method, to apps like MyFitnessPal, or the Weight Watchers points system.7 \\r\\n \\r\\nAnother key approach: forgive your failures. Studies show that people who \\u201cmess up\\u201d their diet plan and then \\u201cgive up\\u201d end up gaining, while people who forgive themselves and move on continue to lose. It\\u2019s called self-acceptance.8,9 Look, we\\u2019re human. Birthdays, office parties, weddings, random movie nights: they happen, and we celebrate by having the amazing chocolate cake, or Betsy\\u2019s famous buffalo chicken dip, waaaay too much champagne, or buttered popcorn. Expect this, enjoy, and then move on. \\r\\nExercise and weight loss \\r\\n \\r\\nMost major weight loss is followed by weight gain, as people revert to their old habits. But, some folks manage to keep it off. How do they do it? Researchers have found that maintaining a healthy diet, ongoing self-monitoring, plenty of self-acceptance, as well as a high level of physical activity are all associated with keeping the pounds off.10 \\r\\n \\r\\nWhen I feel like I\\u2019m slipping, I start logging again. Nowadays, I use an online fitness app on my phone to more easily keep track of my daily food intake. Red wine and dark chocolate are always in stock in our house, and that\\u2019s OK. Exercise is important, too, but in my book, any and all physical activity counts. Two or three workouts a week help me maintain muscle tone and cardiovascular fitness. If I can\\u2019t get to the gym, I run. If I can\\u2019t run, I do something at home, like five minutes of in-place kickboxing moves, or dancing around the living room like a crazy person with my kids. I take the stairs wherever I am as often as possible. I use a carry basket at the grocery store, and switch from arm to arm while I shop: biceps curls! Hey, it all counts. \\r\\nStaying at a healthy weight for life \\r\\n \\r\\nThe old adage is \\u201ceat less, exercise more,\\u201d and this is still true, to some extent. But human beings are psychologically and sociologically complex creatures, and that adage is a lot harder to follow than it sounds. For average adults who do not have contributing medical or psychological issues, a nutritious plant-based diet low in processed foods and carbohydrates, consistent self-monitoring of intake and progress, forgiving oneself when expected lapses occur, all combined with regular physical activity, can result in weight loss for life.\",\"label\":\"Message\"},\"phone\":{\"value\":\"83877685155\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"5aa4bdf7-1102-49c4-8c58-ac0d7c236e34\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-09-26 16:19:11'),(261,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Ranker\",\"label\":\"First name\"},\"lastname\":{\"value\":\"SEO\",\"label\":\"Last name\"},\"email\":{\"value\":\"support@ranker.one\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello,\\r\\nYour website looks good.\\r\\nIt seems like you are trying to rank your website on Google for some medium competitive keywords.\\r\\nRanker is here to help you achieve your dream of ranking higher on Google SERP. Use our service and rank your website. Cheap and best SEO service.We have ranked a lot of websites. For real proofs and case studies, contact us. https:\\/\\/www.ranker.one\",\"label\":\"Message\"},\"phone\":{\"value\":\"0325 5326142\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-26 20:14:22'),(262,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Marina\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Elizabeth\",\"label\":\"Last name\"},\"email\":{\"value\":\"marinaelizabeth.98ht@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hey, I\'m Marina.. I found your profile in Social network. I\'m single and horny.. Please come and chat with me. Come here to chat with me. \\r\\n\\r\\nhere is my profile link\\r\\nhttps:\\/\\/www.fully.sex\\/chat\\/MarinaElizabeth\\/\\r\\n\\r\\nplease come fast...\",\"label\":\"Message\"},\"phone\":{\"value\":\"608-713-7273\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"e858601c-8389-4213-b7a2-aeeeb7b92f89\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-09-27 20:53:00'),(263,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Michealvef\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Michealvef\",\"label\":\"Last name\"},\"email\":{\"value\":\"stantonjarbo@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u0421\\u0428\\u0410 \\u043f\\u043b\\u0430\\u043d\\u0438\\u0440\\u0443\\u044e\\u0442 \\u0441\\u043e\\u0437\\u0434\\u0430\\u0442\\u044c \\u0441\\u043e \\u0441\\u0442\\u0440\\u0430\\u043d\\u0430\\u043c\\u0438 \\u0426\\u0410 \\u0438\\u043d\\u0432\\u0435\\u0441\\u0442\\u0438\\u0446\\u0438\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0444\\u043e\\u043d\\u0434.\\r\\n\\u0415\\u0432\\u0440\\u043e\\u043f\\u0435\\u0439\\u0441\\u043a\\u0438\\u0439 \\u0431\\u0430\\u043d\\u043a \\u0440\\u0435\\u043a\\u043e\\u043d\\u0441\\u0442\\u0440\\u0443\\u043a\\u0446\\u0438\\u0438 \\u0438 \\u0440\\u0430\\u0437\\u0432\\u0438\\u0442\\u0438\\u044f \\u0438 \\u0422\\u0430\\u0434\\u0436\\u0438\\u043a\\u0438\\u0441\\u0442\\u0430\\u043d \\u0434\\u043e\\u0433\\u043e\\u0432\\u043e\\u0440\\u0438\\u043b\\u0438\\u0441\\u044c \\u043e \\u0444\\u0438\\u043d\\u0430\\u043d\\u0441\\u0438\\u0440\\u043e\\u0432\\u0430\\u043d\\u0438\\u0438 \\u0441\\u0442\\u0440\\u043e\\u0438\\u0442\\u0435\\u043b\\u044c\\u0441\\u0442\\u0432\\u0430 \\u0440\\u0435\\u0433\\u0438\\u043e\\u043d\\u0430\\u043b\\u044c\\u043d\\u043e\\u0439 \\u0430\\u0432\\u0442\\u043e\\u0434\\u043e\\u0440\\u043e\\u0433\\u0438.\\r\\n\\u043f\\u0440\\u0435\\u0434\\u043f\\u0440\\u0438\\u044f\\u0442\\u0438\\u044f \\u0441 \\u0438\\u043d\\u043e\\u0441\\u0442\\u0440\\u0430\\u043d\\u043d\\u044b\\u043c \\u043a\\u0430\\u043f\\u0438\\u0442\\u0430\\u043b\\u043e\\u043c, \\u0437\\u0430\\u0440\\u0435\\u0433\\u0438\\u0441\\u0442\\u0440\\u0438\\u0440\\u043e\\u0432\\u0430\\u043d\\u043d\\u044b\\u0435 \\u043d\\u0430 \\u0442\\u0435\\u0440\\u0440\\u0438\\u0442\\u043e\\u0440\\u0438\\u0438 \\u0423\\u043a\\u0440\\u0430\\u0438\\u043d\\u044b.\\r\\n \\r\\n \\r\\n\\u0422\\u0435\\u043d\\u0434\\u0435\\u0440\\u043d\\u043e\\u0435 \\u0441\\u043e\\u043f\\u0440\\u043e\\u0432\\u043e\\u0436\\u0434\\u0435\\u043d\\u0438\\u0435 \\u043f\\u043e\\u0434 \\u043a\\u043b\\u044e\\u0447 \\u0432 \\u0422\\u043e\\u043b\\u044c\\u044f\\u0442\\u0442\\u0438 \\u0431\\u0435\\u0437 \\u0440\\u0438\\u0441\\u043a\\u0430 \\u0438 \\u0441 \\u0433\\u0430\\u0440\\u0430\\u043d\\u0442\\u0438\\u0435\\u0439 \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b, \\u043e\\u043f\\u043b\\u0430\\u0442\\u0430 \\u0437\\u0430 \\u0440\\u0435\\u0437\\u0443\\u043b\\u044c\\u0442\\u0430\\u0442<\\/a>\\r\\n \\r\\n \\r\\n\\u041d\\u0435\\u0431\\u043e\\u043b\\u044c\\u0448\\u0438\\u0435 \\u0431\\u0430\\u043d\\u043a\\u0438, \\u043a\\u0430\\u043a \\u043f\\u0440\\u0430\\u0432\\u0438\\u043b\\u043e, \\u0441\\u043e\\u0441\\u0442\\u0430\\u0432\\u043b\\u044f\\u044e\\u0442 \\u0441\\u0432\\u043e\\u044e \\u0438\\u043d\\u0432\\u0435\\u0441\\u0442\\u0438\\u0446\\u0438\\u043e\\u043d\\u043d\\u0443\\u044e \\u043f\\u043e\\u043b\\u0438\\u0442\\u0438\\u043a\\u0443, \\u043f\\u043e\\u043b\\u044c\\u0437\\u0443\\u044f\\u0441\\u044c \\u0443\\u0441\\u043b\\u0443\\u0433\\u0430\\u043c\\u0438 \\u0440\\u0430\\u0437\\u043b\\u0438\\u0447\\u043d\\u044b\\u0445 \\u0441\\u0442\\u0430\\u0442\\u0438\\u0441\\u0442\\u0438\\u0447\\u0435\\u0441\\u043a\\u0438\\u0445 \\u0430\\u0433\\u0435\\u043d\\u0442\\u0441\\u0442\\u0432 \\u0438 \\u043a\\u0440\\u0443\\u043f\\u043d\\u044b\\u0445 \\u0431\\u0430\\u043d\\u043a\\u043e\\u0432.\\r\\n\\u0418\\u0437\\u0443\\u0447\\u0430\\u0435\\u0442\\u0435, \\u043a\\u0443\\u0434\\u0430 \\u0432\\u043b\\u043e\\u0436\\u0438\\u0442\\u044c \\u0444\\u0438\\u043d\\u0430\\u043d\\u0441\\u044b? \\u0420\\u0430\\u0437\\u043c\\u044b\\u0448\\u043b\\u044f\\u0435\\u0442\\u0435 \\u043f\\u0440\\u0438\\u0432\\u043b\\u0435\\u0447\\u044c \\u0438\\u043d\\u0432\\u0435\\u0441\\u0442\\u0438\\u0446\\u0438\\u0438 \\u0438\\u043b\\u0438 \\u043f\\u0440\\u043e\\u0434\\u0430\\u0442\\u044c \\u0434\\u0435\\u0439\\u0441\\u0442\\u0432\\u0443\\u044e\\u0449\\u0438\\u0439 \\u0431\\u0438\\u0437\\u043d\\u0435\\u0441? \\u0420\\u0430\\u0437\\u043c\\u0435\\u0441\\u0442\\u0438\\u0442\\u0435 \\u0438\\u043d\\u0444\\u043e\\u0440\\u043c\\u0430\\u0446\\u0438\\u044e \\u0432 \\u043e\\u0431\\u044a\\u044f\\u0432\\u043b\\u0435\\u043d\\u0438\\u044f\\u0445 \\u043d\\u0430 \\u0441\\u0430\\u0439\\u0442\\u0435, \\u0438 \\u0412\\u0430\\u0448 \\u043f\\u0440\\u043e\\u0435\\u043a\\u0442 \\u043d\\u0430\\u0432\\u0435\\u0440\\u043d\\u044f\\u043a\\u0430 \\u0432\\u044b\\u0437\\u043e\\u0432\\u0435\\u0442 \\u0438\\u043d\\u0442\\u0435\\u0440\\u0435\\u0441 \\u0430\\u0443\\u0434\\u0438\\u0442\\u043e\\u0440\\u0438\\u0438.\\r\\n\\u0417\\u0430\\u0440\\u0430\\u0431\\u0430\\u0442\\u044b\\u0432\\u0430\\u0442\\u044c \\u0438 \\u043f\\u0440\\u0435\\u0443\\u043c\\u043d\\u043e\\u0436\\u0430\\u0442\\u044c \\u0434\\u0435\\u043d\\u044c\\u0433\\u0438 \\u043b\\u0435\\u0433\\u043a\\u043e! \\u0418 \\u043c\\u044b \\u0412\\u0430\\u043c \\u044d\\u0442\\u043e \\u043f\\u043e\\u043a\\u0430\\u0436\\u0435\\u043c.\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"85493463288\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-27 23:02:51'),(264,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Molligan\\r\\n\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mike Molligan\\r\\n\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi there \\r\\n \\r\\nDo you want a quick boost in ranks and sales for your translucentcomputing.com website? \\r\\nHaving a high DA score, always helps \\r\\n \\r\\nGet your translucentcomputing.com to have a DA between 50 to 60 points in Moz with us today and reap the benefits of such a great feat. \\r\\n \\r\\nSee our offers here: \\r\\nhttps:\\/\\/www.monkeydigital.co\\/product\\/moz-da50-seo-plan\\/ \\r\\n \\r\\nNEW: \\r\\nhttps:\\/\\/www.monkeydigital.co\\/product\\/ahrefs-dr60\\/ \\r\\n \\r\\n \\r\\nthank you \\r\\nMike Molligan\\r\\n \\r\\nsupport@monkeydigital.co\",\"label\":\"Message\"},\"phone\":{\"value\":\"85665643257\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-28 03:33:28'),(265,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Lorraine\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Knight\",\"label\":\"Last name\"},\"email\":{\"value\":\"LorraineKnight904@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi there! \\r\\n\\r\\nI am wondering if your company needs help or interested in starting an ad campaign or improving the performance of an existing campaign on platforms like Google Ads, Bing Ads, Facebook Ads, and more by using PPC (Per-Per-Click)? I am an expert in online advertising, and I will provide and will give you guaranteed traffic to your site that can make a huge impact on sales. \\r\\n\\r\\nI look forward to hearing from you.\\n\\nThanks.\\r\\nLorraine Knight\",\"label\":\"Message\"},\"phone\":{\"value\":\"9957586394\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-28 11:26:37'),(266,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Molly\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Blair\",\"label\":\"Last name\"},\"email\":{\"value\":\"molly.blair049@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi! \\r\\n\\r\\nI am an expert in an internet advertising model used to drive traffic to websites and on platforms like Google Ads, Facebook Ads, and etc. Please let me know if you are interested in starting and\\/or improving the performance of your existing campaign and I can give you guaranteed traffic that can make a huge impact on sales. \\r\\n\\r\\nI look forward to hearing from you.\\n\\nThank you.\\r\\nMolly Blair\",\"label\":\"Message\"},\"phone\":{\"value\":\"9561383162\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-29 07:45:28'),(267,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"support@ranker.one\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Ranker\",\"label\":\"First name\"},\"lastname\":{\"value\":\"SEO\",\"label\":\"Last name\"},\"company\":{\"value\":\"Ranker SEO Service\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello,\\r\\nYour website looks good.\\r\\nIt seems like you are trying to rank your website on Google for some medium competitive keywords.\\r\\nRanker is here to help you achieve your dream of ranking higher on Google SERP. Use our service and rank your website. Cheap and best SEO service.We have ranked a lot of websites. For real proofs and case studies, contact us. https:\\/\\/www.ranker.one\",\"label\":\"Message\"},\"phone\":{\"value\":\"06827 19 43 01\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-09-30 13:53:40'),(268,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Chrissy\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Allan\",\"label\":\"Last name\"},\"email\":{\"value\":\"chrissy@youralexadirectory.link\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \\r\\n\\r\\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\\r\\n\\r\\nIts simple & easy; Register your business here --> \\r\\nhttps:\\/\\/voiceregbiz1.xyz\\/mroe-cusotmers\\/?=translucentcomputing.com\\r\\n\\r\\n\\r\\nChrissy\\r\\nVoice Activation Follow-up Specialist\\r\\nYour Alexa Directory\\r\\n\\r\\n\\r\\n\\r\\n \\r\\n2764 Pleasant Road Suite Suite A PMB 708\\r\\nFort Mill, SC 29708\\r\\n\\r\\nYou can skip future marketing messages here:\\r\\nhttps:\\/\\/voiceregbiz1.xyz\\/unsubscribe.php\\/?site=translucentcomputing.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"805-372-3366\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"59cdca37-9d0a-405a-8494-8aa18729ce47\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-10-01 00:50:53'),(269,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Peterstare\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Peterstare\",\"label\":\"Last name\"},\"email\":{\"value\":\"shannonihrig@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\" \\u041b\\u0443\\u0448\\u0447\\u0438\\u0435 \\u0434\\u0438\\u0437\\u0430\\u0439\\u043d\\u044b \\u0438\\u043d\\u0442\\u0435\\u0440\\u044c\\u0435\\u0440\\u043e\\u0432 \\u043d\\u0430 \\u0441\\u0430\\u0439\\u0442\\u0435 \\r\\nhttps:\\/\\/deezme.ru\\/dizajn-vannoj\\/dizajn-vannoj-komnaty-v-krasnoyarske\\/\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"86863624897\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-01 13:49:03'),(270,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"yannis.b272010@wanadoo.fr\",\"label\":\"Email\"},\"firstname\":{\"value\":\"CoreyHig\",\"label\":\"First name\"},\"lastname\":{\"value\":\"CoreyHig\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Amazon, together with the companies Euronext and Norton, have developed a smart system for generating passive income from the difference between cryptocurrencies, including Bitcoin. \\r\\n \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc6jWfc&sa=D&do=6d&usg=AFQjCNHdwHGe2DxgDiPDujhsvUic-IZkjA \\r\\n \\r\\nNow you can also receive passive income from $ 15,000 per week without doing anything and without having any skills. \\r\\n \\r\\nAct now, register and launch the system and by the end of next week you will have more than $ 25,000 in your account. \\r\\n \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc6jWfc&sa=D&1o=fe&usg=AFQjCNHdwHGe2DxgDiPDujhsvUic-IZkjA\",\"label\":\"Message\"},\"phone\":{\"value\":\"88222421361\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-02 01:40:12'),(271,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Blondell\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Lashley\",\"label\":\"Last name\"},\"email\":{\"value\":\"blondell.lashley@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hey, I\'m George and I have noticed your site is loading very slow and there are a lot of things you can do you improve your site speed such as:\\r\\n- Reducing image sizes\\r\\n- Implementing a better cache for static content, database and dynamic queries\\r\\n- Remove content load blocking scripts and CSS\\r\\n- And much more...\\r\\n\\r\\nI am willing to do all of these things for you for FREE and gurantee that you will get at least 85+ score on Google Page Speed checker which will enhance your SEO & let your visitors see your great site much faster than now.\\r\\n\\r\\nWhy am I doing this? Because I am proffesional website speed optimization expert and I would like to get as many honest, real reviews on my service.\\r\\n\\r\\nTo give you the best experience, I have partnered with the fastest, WordPress managed Cloud server in the world, because everyone knows a great server makes all the difference when it comes to page load speed optimization.\\r\\n\\r\\nSo I will:\\r\\n- Increase your site speed\\r\\n- Reduce your WordPress server costs\\r\\n\\r\\nFor free and you don\'t need to do anything! I will walk you though the whole proccess...\\r\\n\\r\\nFor more info check;\\r\\nhttps:\\/\\/l.bestsellers.to\\/ksph\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"07402 29 67 86\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-02 21:45:02'),(272,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Marina\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Elizabeth\",\"label\":\"Last name\"},\"email\":{\"value\":\"marinaelizabeth.98ht@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Marina sent you 2 messages yesterday and waiting for your reply. She is horny, come quick.\\r\\n\\r\\nclick here to chat with her. \\r\\n\\r\\nhttps:\\/\\/www.fully.sex\\/chat\\/MarinaElizabeth\\/\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"(31) 6612-3256\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"21f38879-b364-43ce-a136-e410c7d02055\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-10-03 09:29:11'),(273,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"lifesmystery_20@orange.fr\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Ruebensef - Apple\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Ruebensef - Apple\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Apple has developed the latest AI-based trading robot that makes more than 90% of successful transactions in cryptocurrency trading. \\r\\n \\r\\nYou are guaranteed to receive from $ 5000 per week of passive income while your trading robot is working 24\\/7. \\r\\n \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc6jWfc&sa=D&bh=jd&usg=AFQjCNHdwHGe2DxgDiPDujhsvUic-IZkjA \\r\\n \\r\\nYou don\'t need any skills. \\r\\n \\r\\nTo get started, you need to take the following steps: \\r\\n \\r\\n1. Register on the website of our trading robot https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc6jWfc&sa=D&2n=d2&usg=AFQjCNHdwHGe2DxgDiPDujhsvUic-IZkjA \\r\\n \\r\\n2. Top up the balance in your personal account for at least $ 500 \\r\\n \\r\\n3. Launch a trading robot \\r\\n \\r\\n4. Watch how your account balance grows \\r\\n \\r\\n5. Withdraw profit every week \\r\\n \\r\\n6. Enjoy life\",\"label\":\"Message\"},\"phone\":{\"value\":\"85452242257\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-04 02:18:33'),(274,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Tammi\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Sons\",\"label\":\"Last name\"},\"email\":{\"value\":\"sons.tammi@outlook.com\",\"label\":\"Email\"},\"message\":{\"value\":\"If you play this 18+ sex game, you will get addicted in 5 minutes.\\r\\n\\r\\nThe game is free to download and play until this christmas.\\r\\n\\r\\nClick here to play this horny adult game\\r\\n\\r\\nhttps:\\/\\/www.fully.sex\\/game\\/start\\/\",\"label\":\"Message\"},\"phone\":{\"value\":\"06236 41 87 90\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-04 04:08:10'),(275,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"hayden.hyman@outlook.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Hayden\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Hayden\",\"label\":\"Last name\"},\"company\":{\"value\":\"Hayden\",\"label\":\"Company name\"},\"message\":{\"value\":\"EASE YOUR PAIN IN 10 MINUTES EFFORTLESSLY\\r\\n\\r\\nBe Free from Neck Pain! Try NeckFlexer & Relieve Neck Pain Effortlessly In 10 Min!\\r\\n\\r\\nSave 50% OFF + FREE Worldwide Shipping\\r\\n\\r\\nShop Now: neckflexer.online\\r\\n\\r\\nSincerely, \\r\\n\\r\\nHayden\",\"label\":\"Message\"},\"phone\":{\"value\":\"07051 59 61 45\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-04 07:30:54'),(276,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Marina\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Elizabeth\",\"label\":\"Last name\"},\"email\":{\"value\":\"marinaelizabeth.98ht@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Marina sent you 2 messages yesterday and waiting for your reply. She is horny, come quick.\\r\\n\\r\\nclick here to chat with her. \\r\\n\\r\\nhttps:\\/\\/www.fully.sex\\/chat\\/MarinaElizabeth\\/\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"0911 84 34 18\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"e5c488a4-acc3-4ad0-ae5d-8d7eb400c662\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-10-04 16:32:26'),(277,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Garry\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Sparks\",\"label\":\"Last name\"},\"email\":{\"value\":\"sparks.garry@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"If you play this 18+ sex game, you will get addicted in 5 minutes.\\r\\n\\r\\nThe game is free to download and play until this christmas.\\r\\n\\r\\nClick here to play this horny adult game\\r\\n\\r\\nhttps:\\/\\/www.fully.sex\\/game\\/start\\/\",\"label\":\"Message\"},\"phone\":{\"value\":\"0590-8365392\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-04 20:15:48'),(278,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"malinoleg91@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"skyreveryMouck\",\"label\":\"First name\"},\"lastname\":{\"value\":\"skyreveryMouck\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\" \\r\\nhttps:\\/\\/skyrevery.ru\\/airplanes\\/legacy-450\\/ - \\u0427\\u0430\\u0441\\u0442\\u043d\\u044b\\u0439 \\u0441\\u0430\\u043c\\u043e\\u043b\\u0435\\u0442 Embraer Legacy 450 (\\u042d\\u043c\\u0431\\u0440\\u0430\\u0435\\u0440 \\u041b\\u0435\\u0433\\u0430\\u0441\\u0438 450) - SkyRevery - \\u043f\\u043e\\u0434\\u0440\\u043e\\u0431\\u043d\\u0435\\u0435 \\u043d\\u0430 \\u043d\\u0430\\u0448\\u0435\\u043c \\u0441\\u0430\\u0439\\u0442\\u0435 https:\\/\\/skyrevery.ru - skyrevery.ru \\r\\nhttps:\\/\\/skyrevery.ru\\/ - \\u0410\\u0440\\u0435\\u043d\\u0434\\u0430 \\u0447\\u0430\\u0441\\u0442\\u043d\\u043e\\u0433\\u043e \\u0441\\u0430\\u043c\\u043e\\u043b\\u0435\\u0442\\u0430 \\u0441 \\u044d\\u043a\\u0438\\u043f\\u0430\\u0436\\u0435\\u043c \\u0432 \\u043a\\u043e\\u043c\\u043f\\u0430\\u043d\\u0438\\u0438 SkyRevery \\u2013 \\u044d\\u0442\\u043e \\u0432\\u044b\\u0431\\u043e\\u0440 \\u0442\\u0435\\u0445, \\u043a\\u0442\\u043e \\u0446\\u0435\\u043d\\u0438\\u0442 \\u0441\\u0432\\u043e\\u0435 \\u0432\\u0440\\u0435\\u043c\\u044f \\u0438 \\u0436\\u0438\\u0432\\u0435\\u0442 \\u043f\\u043e \\u0441\\u0432\\u043e\\u0435\\u043c\\u0443 \\u0440\\u0430\\u0441\\u043f\\u0438\\u0441\\u0430\\u043d\\u0438\\u044e! \\r\\n\\u0410\\u0440\\u0435\\u043d\\u0434\\u0430 \\u0447\\u0430\\u0441\\u0442\\u043d\\u043e\\u0433\\u043e \\u0441\\u0430\\u043c\\u043e\\u043b\\u0435\\u0442\\u0430 \\u043f\\u043e\\u043c\\u043e\\u0433\\u0430\\u0435\\u0442 \\u044d\\u043a\\u043e\\u043d\\u043e\\u043c\\u0438\\u0442\\u044c \\u0441\\u0430\\u043c\\u044b\\u0439 \\u0432\\u0430\\u0436\\u043d\\u044b\\u0439 \\u0440\\u0435\\u0441\\u0443\\u0440\\u0441 \\u2013 \\u0432\\u0440\\u0435\\u043c\\u044f. \\u0410\\u0440\\u0435\\u043d\\u0434\\u043e\\u0432\\u0430\\u0432 \\u0447\\u0430\\u0441\\u0442\\u043d\\u044b\\u0439 \\u0441\\u0430\\u043c\\u043e\\u043b\\u0435\\u0442, \\u0438\\u043c\\u0435\\u043d\\u043d\\u043e \\u0412\\u044b \\u0440\\u0435\\u0448\\u0430\\u0435\\u0442\\u0435, \\u043a\\u043e\\u0433\\u0434\\u0430 \\u0438 \\u043a\\u0443\\u0434\\u0430 \\u043f\\u043e\\u043b\\u0435\\u0442\\u0438\\u0442\\u0435. \\u0414\\u043b\\u044f \\u0432\\u044b\\u043f\\u043e\\u043b\\u043d\\u0435\\u043d\\u0438\\u044f \\u0447\\u0430\\u0440\\u0442\\u0435\\u0440\\u043d\\u044b\\u0445 \\u0440\\u0435\\u0439\\u0441\\u043e\\u0432 \\u043c\\u044b \\u043f\\u0440\\u0435\\u0434\\u043b\\u0430\\u0433\\u0430\\u0435\\u043c \\u0447\\u0430\\u0441\\u0442\\u043d\\u044b\\u0435 \\u0441\\u0430\\u043c\\u043e\\u043b\\u0435\\u0442\\u044b \\u0438\\u043d\\u043e\\u0441\\u0442\\u0440\\u0430\\u043d\\u043d\\u043e\\u0433\\u043e \\u043f\\u0440\\u043e\\u0438\\u0437\\u0432\\u043e\\u0434\\u0441\\u0442\\u0432\\u0430, \\u0433\\u0430\\u0440\\u0430\\u043d\\u0442\\u0438\\u0440\\u0443\\u044e\\u0449\\u0438\\u0435 \\u0432\\u044b\\u0441\\u043e\\u043a\\u0438\\u0439 \\u0443\\u0440\\u043e\\u0432\\u0435\\u043d\\u044c \\u043a\\u043e\\u043c\\u0444\\u043e\\u0440\\u0442\\u0430 \\u0438 \\u0431\\u0435\\u0437\\u043e\\u043f\\u0430\\u0441\\u043d\\u043e\\u0441\\u0442\\u0438 \\u043f\\u043e\\u043b\\u0435\\u0442\\u0430. \\u0412\\u043d\\u0438\\u043c\\u0430\\u0442\\u0435\\u043b\\u044c\\u043d\\u044b\\u0435 \\u0431\\u043e\\u0440\\u0442\\u043f\\u0440\\u043e\\u0432\\u043e\\u0434\\u043d\\u0438\\u043a\\u0438 \\u0438 \\u0432\\u044b\\u0441\\u043e\\u043a\\u043e\\u043f\\u0440\\u043e\\u0444\\u0435\\u0441\\u0441\\u0438\\u043e\\u043d\\u0430\\u043b\\u044c\\u043d\\u044b\\u0435 \\u043f\\u0438\\u043b\\u043e\\u0442\\u044b \\u0441\\u0434\\u0435\\u043b\\u0430\\u044e\\u0442 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u043b\\u0435\\u0442 \\u043c\\u0430\\u043a\\u0441\\u0438\\u043c\\u0430\\u043b\\u044c\\u043d\\u043e \\u043f\\u0440\\u0438\\u044f\\u0442\\u043d\\u044b\\u043c \\u0438 \\u0443\\u0434\\u043e\\u0431\\u043d\\u044b\\u043c. \\r\\n\\u041a\\u043e\\u0433\\u0434\\u0430 \\u0412\\u0430\\u043c \\u043d\\u0443\\u0436\\u043d\\u0430 https:\\/\\/skyrevery.ru\\/ - \\u0430\\u0440\\u0435\\u043d\\u0434\\u0430 \\u0441\\u0430\\u043c\\u043e\\u043b\\u0435\\u0442\\u0430 \\u0441\\u0440\\u043e\\u0447\\u043d\\u043e, \\u043c\\u044b \\u043c\\u043e\\u0436\\u0435\\u043c \\u043e\\u0440\\u0433\\u0430\\u043d\\u0438\\u0437\\u043e\\u0432\\u0430\\u0442\\u044c \\u0434\\u043b\\u044f \\u0412\\u0430\\u0441 \\u0432\\u044b\\u043b\\u0435\\u0442 \\u043f\\u043e \\u0433\\u043e\\u0442\\u043e\\u0432\\u043d\\u043e\\u0441\\u0442\\u0438 \\u043e\\u0442 3 \\u0447\\u0430\\u0441\\u043e\\u0432 \\u0441 \\u043c\\u043e\\u043c\\u0435\\u043d\\u0442\\u0430 \\u043f\\u043e\\u0434\\u0442\\u0432\\u0435\\u0440\\u0436\\u0434\\u0435\\u043d\\u0438\\u044f.\",\"label\":\"Message\"},\"phone\":{\"value\":\"88632154728\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-04 20:59:15'),(279,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Katherine\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Husky\",\"label\":\"Last name\"},\"email\":{\"value\":\"katherine.husky@yahoo.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Katherine sent you 2 pics yesterday and waiting for your reply. She is horny, come quick.\\r\\n\\r\\nclick here to chat with her. \\r\\n\\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/KatherineHusky\\/\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"337-583-6906\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"c70342ab-7eec-4c9c-a50c-1b7e0780fed1\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-10-05 04:50:23'),(280,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Peterstare\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Peterstare\",\"label\":\"Last name\"},\"email\":{\"value\":\"marcelenelomely@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\" \\u041e\\u0442\\u043b\\u0438\\u0447\\u043d\\u044b\\u0439 \\u0441\\u0430\\u0439\\u0442 \\u0434\\u043b\\u044f \\u0434\\u0430\\u0447\\u043d\\u0438\\u043a\\u043e\\u0432, \\u043f\\u043e\\u043b\\u0435\\u0437\\u043d\\u044b\\u0435 \\u0441\\u043e\\u0432\\u0435\\u0442\\u044b \\u043a\\u0430\\u043a \\u0432\\u044b\\u0440\\u0430\\u0441\\u0442\\u0438\\u0442\\u044c \\u043e\\u0442\\u043b\\u0438\\u0447\\u043d\\u044b\\u0439 \\u0443\\u0440\\u043e\\u0436\\u0430\\u0439 \\r\\n \\r\\n \\r\\n\\u041f\\u043e\\u0441\\u0430\\u0434\\u043a\\u0430 \\u043f\\u043b\\u043e\\u0434\\u043e\\u0432\\u044b\\u0445 \\u043a\\u0443\\u043b\\u044c\\u0442\\u0443\\u0440. \\u042d\\u0442\\u043e \\u043c\\u043e\\u0433\\u0443\\u0442 \\u0431\\u044b\\u0442\\u044c \\u0430\\u0431\\u0440\\u0438\\u043a\\u043e\\u0441\\u044b, \\u044f\\u0431\\u043b\\u043e\\u043a\\u0438, \\u043f\\u0435\\u0440\\u0441\\u0438\\u043a\\u0438, \\u0433\\u0440\\u0443\\u0448\\u0438, \\u0430 \\u0442\\u0430\\u043a\\u0436\\u0435 \\u0432\\u043e\\u0437\\u043c\\u043e\\u0436\\u043d\\u0430 \\u043f\\u043e\\u0441\\u0430\\u0434\\u043a\\u0430 \\u0432\\u0438\\u043d\\u043e\\u0433\\u0440\\u0430\\u0434\\u0430, \\u043a\\u0440\\u044b\\u0436\\u043e\\u0432\\u043d\\u0438\\u043a\\u0430 \\u0438 \\u0441\\u043c\\u043e\\u0440\\u043e\\u0434\\u0438\\u043d\\u044b.\\r\\n\\u0421\\u0431\\u043e\\u0440 \\u043f\\u043e\\u0441\\u043b\\u0435\\u0434\\u043d\\u0438\\u0445 \\u043e\\u0432\\u043e\\u0449\\u043d\\u044b\\u0445 \\u043a\\u0443\\u043b\\u044c\\u0442\\u0443\\u0440. \\u041f\\u0435\\u0440\\u0432\\u044b\\u0435 \\u0437\\u0430\\u043c\\u043e\\u0440\\u043e\\u0437\\u043a\\u0438 \\u043c\\u043e\\u0433\\u0443\\u0442 \\u043d\\u0435\\u0433\\u0430\\u0442\\u0438\\u0432\\u043d\\u043e \\u043e\\u0442\\u043e\\u0431\\u0440\\u0430\\u0437\\u0438\\u0442\\u044c\\u0441\\u044f \\u043d\\u0430 \\u043a\\u0430\\u0440\\u0442\\u043e\\u0444\\u0435\\u043b\\u0435 \\u0438\\u043b\\u0438 \\u043f\\u043e\\u043c\\u0438\\u0434\\u043e\\u0440\\u0430\\u0445.\\r\\n \\r\\n\\u0418\\u0437 \\u043a\\u0430\\u043a\\u0438\\u0445 \\u044d\\u043b\\u0435\\u043c\\u0435\\u043d\\u0442\\u043e\\u0432 \\u0441\\u043e\\u0441\\u0442\\u043e\\u0438\\u0442 \\u043b\\u043e\\u043a\\u0430\\u043b\\u044c\\u043d\\u0430\\u044f \\u043a\\u0430\\u043d\\u0430\\u043b\\u0438\\u0437\\u0430\\u0446\\u0438\\u044f<\\/a>\\r\\n \\r\\n\\u041f\\u043e\\u0441\\u0430\\u0434\\u043a\\u0430 \\u043f\\u043b\\u043e\\u0434\\u043e\\u0432\\u044b\\u0445 \\u043a\\u0443\\u043b\\u044c\\u0442\\u0443\\u0440. \\u042d\\u0442\\u043e \\u043c\\u043e\\u0433\\u0443\\u0442 \\u0431\\u044b\\u0442\\u044c \\u0430\\u0431\\u0440\\u0438\\u043a\\u043e\\u0441\\u044b, \\u044f\\u0431\\u043b\\u043e\\u043a\\u0438, \\u043f\\u0435\\u0440\\u0441\\u0438\\u043a\\u0438, \\u0433\\u0440\\u0443\\u0448\\u0438, \\u0430 \\u0442\\u0430\\u043a\\u0436\\u0435 \\u0432\\u043e\\u0437\\u043c\\u043e\\u0436\\u043d\\u0430 \\u043f\\u043e\\u0441\\u0430\\u0434\\u043a\\u0430 \\u0432\\u0438\\u043d\\u043e\\u0433\\u0440\\u0430\\u0434\\u0430, \\u043a\\u0440\\u044b\\u0436\\u043e\\u0432\\u043d\\u0438\\u043a\\u0430 \\u0438 \\u0441\\u043c\\u043e\\u0440\\u043e\\u0434\\u0438\\u043d\\u044b.\\r\\n\\u0412 \\u043d\\u043e\\u044f\\u0431\\u0440\\u0435 \\u043f\\u0440\\u043e\\u0432\\u043e\\u0434\\u044f\\u0442 \\u0437\\u0430\\u0432\\u0435\\u0440\\u0448\\u0430\\u044e\\u0449\\u0438\\u0435 \\u0440\\u0430\\u0431\\u043e\\u0442\\u044b \\u043f\\u043e \\u043f\\u043e\\u0434\\u0433\\u043e\\u0442\\u043e\\u0432\\u043a\\u0435 \\u043e\\u0433\\u043e\\u0440\\u043e\\u0434\\u0430 \\u0438 \\u0441\\u0430\\u0434\\u0430 \\u043a \\u0437\\u0438\\u043c\\u043e\\u0432\\u043a\\u0435. \\u0412 \\u043f\\u0435\\u0440\\u0432\\u0443\\u044e \\u043e\\u0447\\u0435\\u0440\\u0435\\u0434\\u044c \\u043d\\u0443\\u0436\\u043d\\u043e \\u0443\\u043a\\u0440\\u044b\\u0442\\u044c \\u043d\\u0435\\u043a\\u043e\\u0442\\u043e\\u0440\\u044b\\u0435 \\u0440\\u0430\\u0441\\u0442\\u0435\\u043d\\u0438\\u044f. \\u041d\\u0430\\u043f\\u0440\\u0438\\u043c\\u0435\\u0440, \\u0435\\u0441\\u0442\\u044c \\u043e\\u043f\\u0440\\u0435\\u0434\\u0435\\u043b\\u0435\\u043d\\u043d\\u044b\\u0439 \\u0441\\u043e\\u0440\\u0442 \\u0432\\u0438\\u043d\\u043e\\u0433\\u0440\\u0430\\u0434\\u0430, \\u043b\\u043e\\u0437\\u0443 \\u043a\\u043e\\u0442\\u043e\\u0440\\u043e\\u0439 \\u043d\\u0430 \\u0437\\u0438\\u043c\\u0443 \\u0443\\u043a\\u0440\\u044b\\u0432\\u0430\\u044e\\u0442 \\u0434\\u0430\\u0436\\u0435 \\u043d\\u0430 \\u0442\\u0435\\u0440\\u0440\\u0438\\u0442\\u043e\\u0440\\u0438\\u0438 \\u044e\\u0436\\u043d\\u044b\\u0445 \\u0440\\u0435\\u0433\\u0438\\u043e\\u043d\\u043e\\u0432, \\u0433\\u0434\\u0435 \\u043f\\u0440\\u0435\\u043e\\u0431\\u043b\\u0430\\u0434\\u0430\\u0435\\u0442 \\u043c\\u044f\\u0433\\u043a\\u0438\\u0439 \\u043a\\u043b\\u0438\\u043c\\u0430\\u0442.\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"86798936877\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-05 04:55:27'),(281,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Kerstin\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Augustine\",\"label\":\"Last name\"},\"email\":{\"value\":\"augustine.kerstin@hotmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"If you play this 18+ sex game, you will get addicted in 5 minutes.\\r\\n\\r\\nThe game is free to download and play until this christmas.\\r\\n\\r\\nClick here to play this horny adult game\\r\\n\\r\\nhttps:\\/\\/sexlovers.club\\/game\\/play\\/\",\"label\":\"Message\"},\"phone\":{\"value\":\"026 922 15 40\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-05 06:57:34'),(282,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"castroverderodin@yahoo.de\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Ramonexali\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Ramonexali\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Habst du jemals versucht Cybersex? Lasst uns einander heute Abend Freude bereiten! Klicken Sie auf den Link: >>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fhot-girls-here.com%2FZsd9gYcd&sa=D&mw=y7&usg=AFQjCNH1cFMpf5xulRS_ME8x6B8wpeKUyw <<<<<<<<<<<<<\",\"label\":\"Message\"},\"phone\":{\"value\":\"85415414531\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-06 01:48:18'),(283,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Eric\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jones\",\"label\":\"Last name\"},\"email\":{\"value\":\"eric.jones.z.mail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hey there, I just found your site, quick question\\u2026\\r\\n\\r\\nMy name\\u2019s Eric, I found translucentcomputing.com after doing a quick search \\u2013 you showed up near the top of the rankings, so whatever you\\u2019re doing for SEO, looks like it\\u2019s working well.\\r\\n\\r\\nSo here\\u2019s my question \\u2013 what happens AFTER someone lands on your site? Anything?\\r\\n\\r\\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear\\u2026 forever.\\r\\n\\r\\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\\r\\n\\r\\nWhy would you want all that good work \\u2013 and the great site you\\u2019ve built \\u2013 go to waste?\\r\\n\\r\\nBecause the odds are they\\u2019ll just skip over calling or even grabbing their phone, leaving you high and dry.\\r\\n\\r\\nBut here\\u2019s a thought\\u2026 what if you could make it super-simple for someone to raise their hand, say, \\u201cokay, let\\u2019s talk\\u201d without requiring them to even pull their cell phone from their pocket?\\r\\n \\r\\nYou can \\u2013 thanks to revolutionary new software that can literally make that first call happen NOW.\\r\\n\\r\\nTalk With Web Visitor is a software widget that sits on your site, ready and waiting to capture any visitor\\u2019s Name, Email address and Phone Number. It lets you know IMMEDIATELY \\u2013 so that you can talk to that lead while they\\u2019re still there at your site.\\r\\n \\r\\nYou know, strike when the iron\\u2019s hot!\\r\\n\\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\\r\\n\\r\\nWhen targeting leads, you HAVE to act fast \\u2013 the difference between contacting someone within 5 minutes versus 30 minutes later is huge \\u2013 like 100 times better!\\r\\n\\r\\nThat\\u2019s why you should check out our new SMS Text With Lead feature as well\\u2026 once you\\u2019ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \\r\\n \\r\\nImagine how powerful this could be \\u2013 even if they don\\u2019t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\\r\\n\\r\\nJust this alone could be a game changer to make your website even more effective.\\r\\n\\r\\nStrike when the iron\\u2019s hot!\\r\\n\\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to learn more about everything Talk With Web Visitor can do for your business \\u2013 you\\u2019ll be amazed.\\r\\n\\r\\nThanks and keep up the great work!\\r\\n\\r\\nEric\\r\\nPS: Talk With Web Visitor offers a FREE 14 days trial \\u2013 you could be converting up to 100x more leads immediately! \\r\\nIt even includes International Long Distance Calling. \\r\\nStop wasting money chasing eyeballs that don\\u2019t turn into paying customers. \\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to try Talk With Web Visitor now.\\r\\n\\r\\nIf you\'d like to unsubscribe click here http:\\/\\/talkwithwebvisitors.com\\/unsubscribe.aspx?d=translucentcomputing.com\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"555-555-1212\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-06 14:51:12'),(284,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Horny\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Shriya\",\"label\":\"Last name\"},\"email\":{\"value\":\"hornyshriya98@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Horny Shriya sent you 2 pics yesterday and waiting for your reply. She is horny, come quick.\\r\\n\\r\\nclick here to chat with her. \\r\\n\\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/HornyShriya\\/\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"077 4774 8893\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"8070e119-53f4-4b59-8605-0666d512e698\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-10-06 23:25:37'),(285,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Horny\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Shriya\",\"label\":\"Last name\"},\"email\":{\"value\":\"hornyshriya98@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Horny Shriya sent you 2 pics yesterday and waiting for your reply. She is horny, come quick.\\r\\n\\r\\nclick here to chat with her. \\r\\n\\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/HornyShriya\\/\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"(03) 6224 6810\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"b9361ed8-81e3-4426-91b0-c134891367ad\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-10-07 07:05:25'),(286,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Coin2xVoili\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Coin2xVoili\",\"label\":\"Last name\"},\"email\":{\"value\":\"yourmail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"We provide the fastest bitcoin doubler. Our system is fully automated it\'s only need 24 hours to double your bitcoins. \\r\\nAll you need to do is just send your bitcoins, and wait 24 hours to receive the doubled bitcoins to your address! \\r\\n \\r\\nGUARANTEED! https:\\/\\/coin2x.org \\r\\n \\r\\n \\r\\nVisit site \\r\\n \\r\\nhttps:\\/\\/coin2x.org \\r\\n \\r\\nthnx\",\"label\":\"Message\"},\"phone\":{\"value\":\"82452841153\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-07 12:42:57'),(287,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Eric\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jones\",\"label\":\"Last name\"},\"email\":{\"value\":\"eric.jones.z.mail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hey, this is Eric and I ran across translucentcomputing.com a few minutes ago.\\r\\n\\r\\nLooks great\\u2026 but now what?\\r\\n\\r\\nBy that I mean, when someone like me finds your website \\u2013 either through Search or just bouncing around \\u2013 what happens next? Do you get a lot of leads from your site, or at least enough to make you happy?\\r\\n\\r\\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site\\u2019s visitors disappear and are gone forever after just a moment.\\r\\n\\r\\nHere\\u2019s an idea\\u2026\\r\\n \\r\\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site\\u2026\\r\\n \\r\\nYou can \\u2013\\r\\n \\r\\nTalk With Web Visitor is a software widget that\\u2019s works on your site, ready to capture any visitor\\u2019s Name, Email address and Phone Number. It signals you the moment they let you know they\\u2019re interested \\u2013 so that you can talk to that lead while they\\u2019re literally looking over your site.\\r\\n\\r\\nCLICK HERE http:\\/\\/talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\\r\\n\\r\\nYou\\u2019ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\\r\\n\\r\\nIt gets even better\\u2026 once you\\u2019ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\\r\\n \\r\\nThat way, even if you don\\u2019t close a deal right away, you can follow up with text messages for new offers, content links, even just \\u201chow you doing?\\u201d notes to build a relationship.\\r\\n\\r\\nPretty sweet \\u2013 AND effective.\\r\\n\\r\\nCLICK HERE http:\\/\\/talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\\r\\n\\r\\nYou could be converting up to 100X more leads today!\\r\\n\\r\\nEric\\r\\nPS: Talk With Web Visitor offers a FREE 14 days trial \\u2013 and it even includes International Long Distance Calling. \\r\\nYou have customers waiting to talk with you right now\\u2026 don\\u2019t keep them waiting. \\r\\nCLICK HERE http:\\/\\/talkwithcustomer.com to try Talk With Web Visitor now.\\r\\n\\r\\nIf you\'d like to unsubscribe click here http:\\/\\/talkwithcustomer.com\\/unsubscribe.aspx?d=translucentcomputing.com\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"555-555-1212\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-07 14:26:03'),(288,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Michael\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Daniels\",\"label\":\"Last name\"},\"email\":{\"value\":\"micheal.daniels058@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi! \\r\\n\\r\\nDifferent kinds of apps help businesses whether in terms of marketing, business efficiency or both. Does your website have an app? Potential clients are drawn to businesses whose mobile app doesn\'t only have an amazing user-interface, but also has some features that make doing business easier between you and them. \\r\\n\\r\\nI\'m a talented app developer that can design\\/program on any platform (Android, iOs). I\'ve got some great app ideas of my own that I\'d like to share with you of things that have worked really well for my other clients. If you already have ideas, I\'d like to hear about them so we can make them all possible. \\r\\n\\r\\nI would like to tell you more about this with you during a free consultation if you\'re interested. Kindly reply about when you are free to be contacted. I hope to speak with you soon.\\n\\nBest regards,\\r\\nMichael Daniels\",\"label\":\"Message\"},\"phone\":{\"value\":\"9456332359\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-07 15:43:32'),(289,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Horny\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Shriya\",\"label\":\"Last name\"},\"email\":{\"value\":\"hornyshriya98@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Horny Shriya sent you 2 pics yesterday and waiting for your reply. She is horny, come quick.\\r\\n\\r\\nclick here to chat with her. \\r\\n\\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/HornyShriya\\/\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"0676 998 42 64\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"45d5fd12-c21e-46cb-9cec-12517030e282\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-10-07 16:12:57'),(290,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Heather\",\"label\":\"First name\"},\"lastname\":{\"value\":\"King\",\"label\":\"Last name\"},\"email\":{\"value\":\"kingoheahther@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi there,\\r\\n\\r\\nDo you know the magic of 10K Instagram followers?\\r\\n\\r\\nA 10k follower count on Instagram isn\\u2019t just an awareness metric. \\r\\nThe milestone comes with an immediate, tangible benefit. \\r\\n\\r\\nOnce you have 10k followers, Instagram will make it easier for you to get people\\r\\nto your website via Stories with the swipe up to link feature.\\r\\n\\r\\nSwipe up is the only way to get a direct link from your Instagram to your other web properties. \\r\\nAnd, it\\u2019s available in STORIES, if you have 10k followers.\\r\\n\\r\\nThe swipeable link in stories lets you send people to your blog, your ecommerce page, or your email signup list, \\r\\nwithout requiring the visitor to click to your bio first. The feature alone is a game changer!\\r\\n\\r\\nTestimonial:\\r\\n\\u201cBefore this, Instagram rarely showed up as a traffic source for my shop or blog. \\r\\nSince that feature was added, I\\u2019m able to get more people to my websites directly from IG.\\u201d\\r\\n\\r\\nTo order 10k or see all other packages please go to https:\\/\\/social-media-blast.com\\r\\n\\r\\nBest,\\r\\nHeather K.\\r\\nS.M.B.\\r\\n\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"555-555-5555\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-07 16:52:35'),(291,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Eddington\\r\\n\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mike Eddington\\r\\n\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Greetings \\r\\n \\r\\nWe will enhance your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \\r\\n \\r\\nPlease check our plans here, we offer Local SEO at cheap rates. \\r\\nhttps:\\/\\/speed-seo.net\\/product\\/local-seo-package\\/ \\r\\n \\r\\nNEW: \\r\\nhttps:\\/\\/www.speed-seo.net\\/product\\/zip-codes-gmaps-citations\\/ \\r\\n \\r\\nregards \\r\\nMike Eddington\\r\\n \\r\\nSpeed SEO Digital Agency\",\"label\":\"Message\"},\"phone\":{\"value\":\"87466845991\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-08 03:37:36'),(292,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Horny\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Shriya\",\"label\":\"Last name\"},\"email\":{\"value\":\"hornyshriya298@yahoo.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Horny Shriya sent you 2 messages yesterday and waiting for your reply. She is horny, come quick.\\r\\n\\r\\nclick here to chat with her. \\r\\n\\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/HornyShriya\\/\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"(14) 2997-3378\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"1f40a132-425e-4325-a77e-762e25a131c8\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-10-08 12:09:58'),(293,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"KevinTiz\",\"label\":\"First name\"},\"lastname\":{\"value\":\"KevinTiz\",\"label\":\"Last name\"},\"email\":{\"value\":\"daryakaxx@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\" \\u041d\\u043e\\u0432\\u043e\\u0441\\u0442\\u0438 \\u0438\\u043d\\u0432\\u0435\\u0441\\u0442\\u0438\\u0446\\u0438\\u0439 \\u0438 \\u0444\\u0438\\u043d\\u0430\\u043d\\u0441\\u043e\\u0432 \\r\\n \\r\\nhttps:\\/\\/minermag.ru\\/potrebitelskij-kredit\\/kak-i-gde-mozhno-vzyat-kredit-pod-nizkij-procent\\/\\r\\nhttps:\\/\\/minermag.ru\\/ipoteka\\/ipoteka-otkrytie-s-gospodderzhkoj\\/\\r\\nhttps:\\/\\/minermag.ru\\/ipoteka\\/chem-otlichaetsya-potrebitelskij-kredit-ot-ipoteki\\/\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"82286559547\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-08 21:33:56'),(294,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Eric\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jones\",\"label\":\"Last name\"},\"email\":{\"value\":\"eric.jones.z.mail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hey, this is Eric and I ran across translucentcomputing.com a few minutes ago.\\r\\n\\r\\nLooks great\\u2026 but now what?\\r\\n\\r\\nBy that I mean, when someone like me finds your website \\u2013 either through Search or just bouncing around \\u2013 what happens next? Do you get a lot of leads from your site, or at least enough to make you happy?\\r\\n\\r\\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site\\u2019s visitors disappear and are gone forever after just a moment.\\r\\n\\r\\nHere\\u2019s an idea\\u2026\\r\\n \\r\\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site\\u2026\\r\\n \\r\\nYou can \\u2013\\r\\n \\r\\nTalk With Web Visitor is a software widget that\\u2019s works on your site, ready to capture any visitor\\u2019s Name, Email address and Phone Number. It signals you the moment they let you know they\\u2019re interested \\u2013 so that you can talk to that lead while they\\u2019re literally looking over your site.\\r\\n\\r\\nCLICK HERE http:\\/\\/talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\\r\\n\\r\\nYou\\u2019ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\\r\\n\\r\\nIt gets even better\\u2026 once you\\u2019ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\\r\\n \\r\\nThat way, even if you don\\u2019t close a deal right away, you can follow up with text messages for new offers, content links, even just \\u201chow you doing?\\u201d notes to build a relationship.\\r\\n\\r\\nPretty sweet \\u2013 AND effective.\\r\\n\\r\\nCLICK HERE http:\\/\\/talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\\r\\n\\r\\nYou could be converting up to 100X more leads today!\\r\\n\\r\\nEric\\r\\nPS: Talk With Web Visitor offers a FREE 14 days trial \\u2013 and it even includes International Long Distance Calling. \\r\\nYou have customers waiting to talk with you right now\\u2026 don\\u2019t keep them waiting. \\r\\nCLICK HERE http:\\/\\/talkwithcustomer.com to try Talk With Web Visitor now.\\r\\n\\r\\nIf you\'d like to unsubscribe click here http:\\/\\/talkwithcustomer.com\\/unsubscribe.aspx?d=translucentcomputing.com\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"555-555-1212\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-09 11:37:50'),(295,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Horny\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Shriya\",\"label\":\"Last name\"},\"email\":{\"value\":\"etsuko.alger@outlook.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Horny Shriya sent you 2 messages yesterday and waiting for your reply. She is horny, come quick.\\r\\n\\r\\nclick here to chat with her. \\r\\n\\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/HornyShriya\\/\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"203-855-1970\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-09 15:10:01'),(296,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"torri.waldrup@googlemail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Torri\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Torri\",\"label\":\"Last name\"},\"company\":{\"value\":\"Torri\",\"label\":\"Company name\"},\"message\":{\"value\":\"Good day\\r\\n\\r\\nBe Buzz Free! The Original Mosquito Trap.\\r\\n\\r\\n60% OFF for the next 24 Hours ONLY + FREE Worldwide Shipping\\r\\n\\u2714\\ufe0fLED Bionic Wave Technology\\r\\n\\u2714\\ufe0fEco-Friendly\\r\\n\\u2714\\ufe0f15 Day Money-Back Guarantee\\r\\n\\r\\nShop Now: mosquitotrap.online\\r\\n\\r\\nRegards,\\r\\n\\r\\nTorri\\r\\nTranslucent I Cloud Native Solutions & DevOps Experts\",\"label\":\"Message\"},\"phone\":{\"value\":\"027 901 55 79\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-09 19:39:17'),(297,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"brendel-wolfgang@arcor.de\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Louisgab\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Louisgab\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Trade Forex & Win Tesla Model 3 - 100 Cars Drawn \\r\\n \\r\\nHello dear subscriber. Now you have every chance to win a new Tesla Model 3 car - https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc6IjTY&sa=D&439=450&usg=AFQjCNFcCi_AW0KZy1-k7bYu2x-9Vy_TAQ \\r\\nTo participate in the promotion, you need to take three simple steps: \\r\\n1. Register on our website - https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc6IueF&sa=D&sntz=1&usg=AFQjCNGcfsC5yehR_jdJlkas6Es4v5B7VQ \\r\\n2. In your personal account, make a deposit of at least $ 500 \\r\\n3. Launch a trading robot (your personal manager will help you) \\r\\n4. Now every day until October 31, inclusive, you will need to enter your personal account and see how much the robot has traded. \\r\\nThe essence of the competition is to whom the trading robot earned the most money. The percentage of successful deals is from 60%, so you will be in the black anyway. The winners will be determined on November 1. \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc6IueF&sa=D&sntz=1&usg=AFQjCNGcfsC5yehR_jdJlkas6Es4v5B7VQ \\r\\nHurry up to register and complete all the steps to participate in the competition - the number of participants is growing every day. \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc6IueF&sa=D&sntz=1&usg=AFQjCNGcfsC5yehR_jdJlkas6Es4v5B7VQ\",\"label\":\"Message\"},\"phone\":{\"value\":\"81939875928\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-10 03:56:53'),(298,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"rinat-mironov_197364@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Henrywix\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Henrywix\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"\\u0410\\u0434\\u0432\\u043e\\u043a\\u0430\\u0442 \\u0417\\u0430\\u043f\\u043e\\u0440\\u043e\\u0436\\u044c\\u0435<\\/a> \\r\\n \\r\\n\\u0430\\u0434\\u0432\\u043e\\u043a\\u0430\\u0442 \\u0414\\u043d\\u0435\\u043f\\u0440 \\r\\n\\u0421\\u043a\\u043e\\u043b\\u044c\\u043a\\u043e \\u0441\\u0442\\u043e\\u044f\\u0442 \\u0443\\u0441\\u043b\\u0443\\u0433\\u0438 \\u0430\\u0434\\u0432\\u043e\\u043a\\u0430\\u0442\\u0430 \\u0432 \\u0417\\u0430\\u043f\\u043e\\u0440\\u043e\\u0436\\u044c\\u0435 \\u0438 \\u0414\\u043d\\u0435\\u043f\\u0440\\u0435? - \\u043e\\u0434\\u0438\\u043d \\u0438\\u0437 \\u043d\\u0430\\u0438\\u0431\\u043e\\u043b\\u0435\\u0435 \\u0447\\u0430\\u0441\\u0442\\u044b\\u0445 \\u0437\\u0430\\u0434\\u0430\\u0432\\u0430\\u0435\\u043c\\u044b\\u0445 \\u0432\\u043e\\u043f\\u0440\\u043e\\u0441\\u043e\\u0432 \\u0441\\u043e \\u0441\\u0442\\u043e\\u0440\\u043e\\u043d\\u044b \\u043a\\u043b\\u0438\\u0435\\u043d\\u0442\\u043e\\u0432, \\u043a\\u043e\\u0442\\u043e\\u0440\\u044b\\u0435 \\u0438\\u0449\\u0443\\u0442 \\u0441\\u0435\\u0431\\u0435 \\u0445\\u043e\\u0440\\u043e\\u0448\\u0435\\u0433\\u043e \\u0430\\u0434\\u0432\\u043e\\u043a\\u0430\\u0442\\u0430 \\u0438\\u043b\\u0438 \\u044e\\u0440\\u0438\\u0441\\u0442\\u0430 \\u0434\\u043b\\u044f \\u0437\\u0430\\u0449\\u0438\\u0442\\u044b \\u0441\\u0432\\u043e\\u0438\\u0445 \\u043f\\u0440\\u0430\\u0432 \\u0438 \\u0438\\u043d\\u0442\\u0435\\u0440\\u0435\\u0441\\u043e\\u0432. \\u041f\\u043e\\u044d\\u0442\\u043e\\u043c\\u0443, \\u043c\\u044b \\u0441\\u043e\\u0431\\u0440\\u0430\\u043b\\u0438 \\u043d\\u0430\\u0438\\u0431\\u043e\\u043b\\u0435\\u0435 \\u0447\\u0430\\u0441\\u0442\\u043e \\u0437\\u0430\\u0434\\u0430\\u0432\\u0430\\u0435\\u043c\\u044b\\u0435 \\u0432\\u043e\\u043f\\u0440\\u043e\\u0441\\u044b \\u0432 \\u043e\\u0434\\u043d\\u0443 \\u0441\\u0442\\u0430\\u0442\\u044c\\u044e, \\u0438 \\u043d\\u0438\\u0436\\u0435 \\u043f\\u043e\\u0441\\u0442\\u0430\\u0440\\u0430\\u0435\\u043c\\u0441\\u044f \\u0434\\u0430\\u0442\\u044c \\u0438\\u0441\\u0447\\u0435\\u0440\\u043f\\u044b\\u0432\\u0430\\u044e\\u0449\\u0438\\u0435 \\u043e\\u0442\\u0432\\u0435\\u0442\\u044b \\u043d\\u0430 \\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0438\\u0435 \\u0432\\u043e\\u043f\\u0440\\u043e\\u0441\\u044b: \\r\\n \\r\\nhttps:\\/\\/advokat-zp.best\\/\",\"label\":\"Message\"},\"phone\":{\"value\":\"88468841133\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-10 13:45:10'),(299,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Donna\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Lee\",\"label\":\"Last name\"},\"email\":{\"value\":\"donna.lee2514@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello there! \\r\\n\\r\\nWould you\'d be interested in building a mobile app for your business? I\'m a mobile app developer that can design and program on any platform (Android, iOs) for an affordable price. There are various types of apps that can help your business, whether in terms of marketing, business efficiency, or both. If you already have some ideas, I would love to hear about them to help you more on how we can make them all possible. \\r\\n\\r\\nI have many ideas of my own that I\'d really like to share with you of things that have worked really well for my other clients. If you\'re interested in building an app, or getting more information about it, then I\'d love to give you a free consultation. Kindly reply to let me know when you\'d like to be contacted. I hope to speak with you soon! \\n\\nThank you.\\r\\nDonna Lee\",\"label\":\"Message\"},\"phone\":{\"value\":\"9677146922\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-10 20:40:22'),(300,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"eric.jones.z.mail@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Eric\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jones\",\"label\":\"Last name\"},\"company\":{\"value\":\"talkwithwebvisitor.com\",\"label\":\"Company name\"},\"message\":{\"value\":\"My name\\u2019s Eric and I just found your site translucentcomputing.com.\\r\\n\\r\\nIt\\u2019s got a lot going for it, but here\\u2019s an idea to make it even MORE effective.\\r\\n\\r\\nTalk With Web Visitor \\u2013 CLICK HERE https:\\/\\/talkwithwebvisitors.com for a live demo now.\\r\\n\\r\\nTalk With Web Visitor is a software widget that\\u2019s works on your site, ready to capture any visitor\\u2019s Name, Email address and Phone Number. It signals you the moment they let you know they\\u2019re interested \\u2013 so that you can talk to that lead while they\\u2019re literally looking over your site.\\r\\n\\r\\nAnd once you\\u2019ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation\\u2026 and if they don\\u2019t take you up on your offer then, you can follow up with text messages for new offers, content links, even just \\u201chow you doing?\\u201d notes to build a relationship.\\r\\n\\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\\r\\n\\r\\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\\r\\n\\r\\nEric\\r\\nPS: Studies show that 70% of a site\\u2019s visitors disappear and are gone forever after just a moment. Don\\u2019t keep losing them. \\r\\nTalk With Web Visitor offers a FREE 14 days trial \\u2013 and it even includes International Long Distance Calling. \\r\\nYou have customers waiting to talk with you right now\\u2026 don\\u2019t keep them waiting. \\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to try Talk With Web Visitor now.\\r\\n\\r\\nIf you\'d like to unsubscribe click here http:\\/\\/talkwithwebvisitors.com\\/unsubscribe.aspx?d=translucentcomputing.com\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"555-555-1212\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-10 23:06:12'),(301,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Marina\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Elizabeth\",\"label\":\"Last name\"},\"email\":{\"value\":\"natasha.hodges@outlook.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Marina Elizabeth sent you 3 messages and waiting for your reply.\\r\\nclick here to chat with her. \\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/MarinaElizabeth\\/\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"707-967-3369\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-11 10:33:27'),(302,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Valarie\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Stansberry\",\"label\":\"Last name\"},\"email\":{\"value\":\"valarie.stansberry@msn.com\",\"label\":\"Email\"},\"message\":{\"value\":\"{Hi|Hello) ,\\r\\nI came across your site translucentcomputing.com and I was wondering if you would like to test our whatsapp chat bot to automate your support & lead gen process?\\r\\n\\r\\nChat bots can provide your clients with :\\r\\n1. 24\\/7 Customer support\\r\\n2. Auto-response for Frequently Asked Questions\\r\\n3. Increase user engagement\\r\\n4. Automatic Lead-gen\\r\\n\\r\\nAccording to Forbes magazine businesses are able to increase their revenue by up to 67% with chat-bots.\\r\\nhttps:\\/\\/www.forbes.com\\/sites\\/gilpress\\/2019\\/11\\/25\\/ai-stats-news-chatbots-increase-sales-by-67-but-87-of-consumers-prefer-humans\\/\\r\\n\\r\\nOur chats bot benefits:\\r\\n\\r\\n- Bulk Messaging\\r\\n- Chatbot\\r\\n- Multi Agent WhatsApp Web\\r\\n- Triggers & Automation\\r\\n- API to WhatsApp - from Zapier, Integromat and Webhooks\\r\\n- Statistics\\r\\n- Customer List Management & Marketing\\r\\n\\r\\nCurrently, starting to use it is free for 14 days only, so don\'t miss your chance to give it a try: \\r\\nhttps:\\/\\/l.bestsellers.to\\/kscb\",\"label\":\"Message\"},\"phone\":{\"value\":\"079 4675 2714\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-12 01:39:54'),(303,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"info@translucentcomputing.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Kayleigh\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Kayleigh\",\"label\":\"Last name\"},\"company\":{\"value\":\"Kayleigh\",\"label\":\"Company name\"},\"message\":{\"value\":\"World\'s Best Neck Massager Get it Now 50% OFF + Free Shipping!\\r\\n\\r\\nWellness Enthusiasts! There has never been a better time to take care of your neck pain! \\r\\n\\r\\nOur clinical-grade TENS technology will ensure you have neck relief in as little as 20 minutes.\\r\\n\\r\\nGet Yours: hineck.online\\r\\n\\r\\nBest regards,\\r\\n\\r\\nKayleigh\\r\\nTranslucent I Cloud Native Solutions & DevOps Experts\",\"label\":\"Message\"},\"phone\":{\"value\":\"(81) 9653-9486\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-12 11:28:34'),(304,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"jasonward9681@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Jason Ward\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jason Ward\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello, \\r\\n \\r\\nOur company, RatingsKing, specializes in posting 5-star testimonials on all major review sites. This way people can find you much easier and get a good impression of your business. \\r\\nJust go on our website and choose the package that best fits your needs at https:\\/\\/ratingsking.com\\/packages.php \\r\\n \\r\\nOur packages start from $49\\/month. \\r\\nDepending on your package you will have a number of positive reviews that we will do for you. You will have reports monthly with the work that has been done in your account. \\r\\n \\r\\nUsually, we are posting on all major reviews sites or other listings you may have.\",\"label\":\"Message\"},\"phone\":{\"value\":\"88119263166\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-12 13:40:23'),(305,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Sharon\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Singleton\",\"label\":\"Last name\"},\"email\":{\"value\":\"sharon@smartertactics.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hey,\\r\\n \\r\\nYour website\'s design is absolutely brilliant. The visuals really enhance your message and the content compels action. I\'ve forwarded it to a few of my contacts who I think could benefit from your services.\\r\\n \\r\\nWhen I was looking at your site, though, I noticed a mistake that you\'ve made re: search engine optimization which may be leading to a decline in your SEO results. It\'s a relatively simple fix. Would you like me to write it up so that you can share it with your web team? If this is a priority, I can also get on a call.\\r\\n \\r\\nRegards,\\r\\nSharon Singleton\\r\\nDigital Marketing Manager\\r\\n(888) 417-4867\\r\\nSmarter Tactics\\r\\nDigital Marketing | Ad Words Management | Content & Social | Influencer Marketing\",\"label\":\"Message\"},\"phone\":{\"value\":\"8884174867\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-12 16:04:15'),(306,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Hailey\\r\\n\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mike Hailey\\r\\n\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi there \\r\\n \\r\\nI have just checked translucentcomputing.com for the ranking keywords and saw that your website could use an upgrade. \\r\\n \\r\\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \\r\\n \\r\\nPlease check our services below, we offer SEO at cheap rates. \\r\\nhttps:\\/\\/www.hilkom-digital.de\\/cheap-seo-packages\\/ \\r\\n \\r\\nStart enhancing your sales and leads with us, today! \\r\\n \\r\\nregards \\r\\nMike Hailey\\r\\n \\r\\nHilkom Digital Team \\r\\nsupport@hilkom-digital.de\",\"label\":\"Message\"},\"phone\":{\"value\":\"88649682736\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-12 19:12:53'),(307,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Leonie\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Musgrove\",\"label\":\"Last name\"},\"email\":{\"value\":\"leonie.musgrove@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"If you play this 18+ sex game, you will get addicted in 5 minutes.\\r\\n\\r\\nThe game is free to download and play until this christmas.\\r\\n\\r\\nClick here to play this horny adult game\\r\\n\\r\\nhttps:\\/\\/sexlovers.club\\/game\\/play\\/\",\"label\":\"Message\"},\"phone\":{\"value\":\"06-95324754\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-12 22:03:33'),(308,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"fjh69101z@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Charlotteviave\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Charlotteviave\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Looking for new acquaintances - http:\\/\\/2track.info\\/PrTi\",\"label\":\"Message\"},\"phone\":{\"value\":\"81221467647\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"c5516778-a304-4cf8-8942-2d8e1642c190\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-10-13 08:06:07'),(309,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Katherin\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Sainthill\",\"label\":\"Last name\"},\"email\":{\"value\":\"katherin.sainthill87@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Shriya sent you a friend request.\\r\\nclick here to accept it and chat with her. She is online.\\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/HornyShriya\\/\",\"label\":\"Message\"},\"phone\":{\"value\":\"02863 45 68 25\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-13 14:46:57'),(310,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"JosephPhade\",\"label\":\"First name\"},\"lastname\":{\"value\":\"JosephPhade\",\"label\":\"Last name\"},\"email\":{\"value\":\"abalbel1986@mail.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u041f\\u0440\\u0438\\u0432\\u0435\\u0442\\u0441\\u0442\\u0432\\u0443\\u044e \\u0444\\u043e\\u0440\\u0443\\u043c\\u0447\\u0430\\u043d\\u0435 \\r\\n \\r\\n\\u0412\\u0441\\u0435 \\u043c\\u0438\\u0440\\u043e\\u0432\\u044b\\u0435 \\u043d\\u043e\\u0432\\u043e\\u0441\\u0442\\u0438 \\u044d\\u043a\\u043d\\u043e\\u043c\\u0438\\u043a\\u0438 \\u0438 \\u0444\\u0438\\u043d\\u0430\\u043d\\u0441\\u043e\\u0432 \\u043d\\u0430 \\u0441\\u0430\\u0439\\u0442\\u0435 https:\\/\\/finans-info.ru \",\"label\":\"Message\"},\"phone\":{\"value\":\"87927886518\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-14 07:20:53'),(311,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Kristie\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Moore\",\"label\":\"Last name\"},\"email\":{\"value\":\"kristie@business-directory.link\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \\r\\n\\r\\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\\r\\n\\r\\nIts simple & easy; Register your business here --> \\r\\nhttps:\\/\\/voiceregbiz.xyz\\/mroe-cusotmers\\/?=translucentcomputing.com\\r\\n\\r\\n\\r\\nKristie\\r\\nVoice Activation Follow-up Specialist\\r\\nBusiness Directory Link\\r\\n\\r\\n\\r\\n\\r\\n \\r\\n2764 Pleasant Road Suite Suite A PMB 708\\r\\nFort Mill, SC 29708\\r\\n\\r\\nYou can skip future marketing messages here:\\r\\nhttps:\\/\\/voiceregbiz.xyz\\/unsubscribe.php\\/?site=translucentcomputing.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"805-372-3246\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"1e208cf8-0b26-4751-84bd-2fdc68148154\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-10-16 03:04:37'),(312,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Donna\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Lee\",\"label\":\"Last name\"},\"email\":{\"value\":\"donna.lee2514@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello there! \\r\\n\\r\\nWould you\'d be interested in building a mobile app for your business? I\'m a mobile app developer that can design and program on any platform (Android, iOs) for an affordable price. There are various types of apps that can help your business, whether in terms of marketing, business efficiency, or both. If you already have some ideas, I would love to hear about them to help you more on how we can make them all possible. \\r\\n\\r\\nI have many ideas of my own that I\'d really like to share with you of things that have worked really well for my other clients. If you\'re interested in building an app, or getting more information about it, then I\'d love to give you a free consultation. Kindly reply to let me know when you\'d like to be contacted. I hope to speak with you soon! \\n\\nThank you.\\r\\nDonna Lee\",\"label\":\"Message\"},\"phone\":{\"value\":\"9677146922\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-16 14:45:35'),(313,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"a.bozhko@leftdirustfil.bizml.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"AlexsVlasovs\",\"label\":\"First name\"},\"lastname\":{\"value\":\"AlexsVlasovs\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\" \\r\\n\\u0416\\u0435\\u043b\\u0430\\u0435\\u0442\\u0435 \\\"\\u0443\\u0431\\u0438\\u0442\\u044c\\\" \\u0441\\u0430\\u0439\\u0442 \\u043a\\u043e\\u043d\\u043a\\u0443\\u0440\\u0435\\u043d\\u0442\\u0430? \\u041c\\u044b \\u043f\\u043e\\u043c\\u043e\\u0436\\u0435\\u043c. \\r\\n\\u0418\\u0441\\u043f\\u043e\\u043b\\u044c\\u0437\\u0443\\u0435\\u043c \\u043b\\u0443\\u0447\\u0448\\u0438\\u0435 \\u0442\\u0435\\u0445\\u043d\\u043e\\u043b\\u043e\\u0433\\u0438\\u0438: \\r\\n- \\u041b\\u0438\\u043a\\u0432\\u0438\\u0434\\u0438\\u0440\\u0443\\u0435\\u043c \\u0441\\u0430\\u0439\\u0442\\u044b \\u043f\\u043e \\u043a\\u0430\\u043a\\u0438\\u043c \\u0443\\u0433\\u043e\\u0434\\u043d\\u043e \\u043a\\u043b\\u044e\\u0447\\u0430\\u043c. \\r\\n- 300000-400000 \\u0441\\u043f\\u0430\\u043c\\u043d\\u044b\\u0445 \\u0431\\u0435\\u043a\\u043b\\u0438\\u043d\\u043a\\u043e\\u0432. \\r\\n- \\u0421\\u043f\\u0430\\u043c\\u0438\\u043c \\u0433\\u043b\\u0430\\u0432\\u043d\\u0443\\u044e \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u0443\\u044e \\u043f\\u043e\\u0447\\u0442\\u0443 \\u043a\\u043e\\u043c\\u043f\\u0430\\u043d\\u0438\\u0438 \\u043f\\u0438\\u0441\\u044c\\u043c\\u0430\\u043c\\u0438 \\u0441 \\u0440\\u0435\\u0433\\u0438\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u044f\\u043c\\u0438 \\u043d\\u0430 \\u0441\\u043e\\u043c\\u043d\\u0438\\u0442\\u0435\\u043b\\u044c\\u043d\\u044b\\u0445 \\u0440\\u0435\\u0441\\u0443\\u0440\\u0441\\u0430\\u0445 \\r\\n- \\u0423\\u0441\\u0442\\u0440\\u0430\\u043d\\u0435\\u043d\\u0438\\u0435 \\u043f\\u043e\\u0437\\u0438\\u0446\\u0438\\u0439 \\u043e\\u043d\\u043b\\u0430\\u0439\\u043d-\\u0440\\u0435\\u0441\\u0443\\u0440\\u0441\\u0430 \\u0432 \\u043f\\u043e\\u0438\\u0441\\u043a\\u043e\\u0432\\u0438\\u043a\\u0430\\u0445 \\u043f\\u043e \\u0441\\u0430\\u043c\\u044b\\u043c \\u043a\\u043e\\u043c\\u043c\\u0435\\u0440\\u0447\\u0435\\u0441\\u043a\\u0438\\u043c \\u043a\\u043b\\u044e\\u0447\\u0435\\u0432\\u044b\\u043c \\u0444\\u0440\\u0430\\u0437\\u0430\\u043c. \\r\\n- \\u0418\\u0441\\u043f\\u043e\\u043b\\u044c\\u0437\\u0443\\u0435\\u0442\\u0441\\u044f \\u0441\\u0435\\u043a\\u0440\\u0435\\u0442\\u043d\\u0430\\u044f \\u0443\\u043d\\u0438\\u043a\\u0430\\u043b\\u044c\\u043d\\u0430\\u044f \\u043c\\u0435\\u0442\\u043e\\u0434\\u0438\\u043a\\u0430. \\u041e\\u043f\\u044b\\u0442 \\u0440\\u0430\\u0431\\u043e\\u0442\\u044b \\u0431\\u043e\\u043b\\u0435\\u0435 10 \\u043b\\u0435\\u0442. \\r\\n- \\u0413\\u0430\\u0440\\u0430\\u043d\\u0442\\u0438\\u0440\\u0443\\u0435\\u043c \\u0432\\u043e\\u0437\\u0432\\u0440\\u0430\\u0442 \\u0434\\u0435\\u043d\\u0435\\u0436\\u043d\\u044b\\u0445 \\u0441\\u0440\\u0435\\u0434\\u0441\\u0442\\u0432 \\u0447\\u0435\\u0440\\u0435\\u0437 3 \\u043c\\u0435\\u0441\\u044f\\u0446\\u0430. \\r\\n- 100% \\u043e\\u0442\\u0447\\u0451\\u0442\\u043d\\u043e\\u0441\\u0442\\u044c. \\r\\n- \\u041f\\u043e\\u043b\\u043d\\u0430\\u044f \\u0441\\u0435\\u043a\\u0440\\u0435\\u0442\\u043d\\u043e\\u0441\\u0442\\u044c \\u043d\\u0430\\u0448\\u0435\\u0439 \\u0440\\u0430\\u0431\\u043e\\u0442\\u044b. \\u041d\\u0438\\u043a\\u0442\\u043e \\u043d\\u0435 \\u0443\\u0437\\u043d\\u0430\\u0435\\u0442 \\u043f\\u0440\\u043e \\u043d\\u0430\\u0448\\u0443 \\u0434\\u0435\\u044f\\u0442\\u0435\\u043b\\u044c\\u043d\\u043e\\u0441\\u0442\\u044c. \\r\\n \\r\\n\\u0426\\u0435\\u043d\\u0430 $80 \\r\\n\\u041f\\u043e\\u043b\\u043d\\u0430\\u044f \\u043e\\u0442\\u0447\\u0451\\u0442\\u043d\\u043e\\u0441\\u0442\\u044c. \\r\\n\\u041e\\u043f\\u043b\\u0430\\u0442\\u0430: Qiwi, \\u042f\\u043d\\u0434\\u0435\\u043a\\u0441.\\u0414\\u0435\\u043d\\u044c\\u0433\\u0438, Bitcoin, Visa, MasterCard... \\r\\n \\r\\n\\u0422\\u0435\\u043b\\u0435\\u0433\\u0430: @xrumers \\r\\nSkype: xrumer.pro \\r\\nWhatsApp: +7(977)536-08-36 \\r\\n \\r\\n \\r\\n\\u0422\\u043e\\u043b\\u044c\\u043a\\u043e \\u044d\\u0442\\u0438! \\r\\n\\u0410 \\u0442\\u0410\\u043a\\u043e\\u0436 \\u0420\\u0430\\u0431\\u043e\\u0442\\u0430\\u0435\\u043c \\u0441\\u043e \\u0421\\u0442\\u0443\\u0434\\u0438\\u044f\\u043c\\u0438!\",\"label\":\"Message\"},\"phone\":{\"value\":\"89775360836\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-17 02:56:32'),(314,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"ShermanScelm\",\"label\":\"First name\"},\"lastname\":{\"value\":\"ShermanScelm\",\"label\":\"Last name\"},\"email\":{\"value\":\"yourmail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Sell Accounts Twitter c\\u1ed5 2009>2015 - Nick Gmail M\\u1edbi Ch\\u1ea5t l\\u01b0\\u1ee3ng t\\u1ed1t : https:\\/\\/CloneVia.com \\r\\n \\r\\nClick \\r\\n \\r\\nhttps:\\/\\/CloneVia.com \\r\\n \\r\\nThanks a lot \\r\\n \\r\\nTags: \\r\\nmua T\\u00e0i kho\\u1ea3n twitter c\\u1ed5 \\r\\nmua b\\u00e1n email twitter \\r\\nb\\u00e1n nick twitter \\r\\n\\u0111\\u0103ng k\\u00fd accounts twitter\",\"label\":\"Message\"},\"phone\":{\"value\":\"88489752252\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-17 10:11:19'),(315,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"olegivanover4@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"BennyRuits\",\"label\":\"First name\"},\"lastname\":{\"value\":\"BennyRuits\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Free deep throat porn for you! --> http:\\/\\/trueweightloss.iceiy.com \\r\\nFree porn <\\/a> Detail <\\/a>: Free porn <\\/a>\",\"label\":\"Message\"},\"phone\":{\"value\":\"83512294614\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-17 11:43:42'),(316,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Lara\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Gorton\",\"label\":\"Last name\"},\"email\":{\"value\":\"lara@bizvideo.link\",\"label\":\"Email\"},\"message\":{\"value\":\"Hey, great site!\\r\\n\\r\\nHave you thought about adding a video in response to COVID-19?\\r\\n\\r\\nWe can make one for you: \\r\\nhttps:\\/\\/bestvideo1.xyz\\/video1\\/?=translucentcomputing.com\\r\\n\\r\\nCustomers are worried right now. A short video like this can make a big impact for your business in the long term. People will remember it!\\r\\n\\r\\nBe well,\\r\\nLara\\r\\n\\r\\nP.S. Due to coronavirus, we have also lowered our prices by up to 55%. \\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n- This commercial message sent from PJLK Marketing LC\\r\\n410 E Santa Clara Street STE 817\\r\\nSan Jose, CA 95113\\r\\n\\r\\nTo unsubscribe click here:\\r\\nhttps:\\/\\/bestvideo1.xyz\\/unsubscribe.php\\/?site=translucentcomputing.com\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"213-558-6156\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"5ebc0d16-3913-49af-a2c4-9d64b967f600\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-10-18 12:58:44'),(317,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"LorenzoAssix\",\"label\":\"First name\"},\"lastname\":{\"value\":\"LorenzoAssix\",\"label\":\"Last name\"},\"email\":{\"value\":\"christiedazzo@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u0427\\u0442\\u043e\\u0431\\u044b \\u0443\\u0432\\u0435\\u043b\\u0438\\u0447\\u0438\\u0442\\u044c \\u0438\\u043d\\u0442\\u0435\\u0440\\u0432\\u0430\\u043b \\u043c\\u0435\\u0436\\u0434\\u0443 \\u043e\\u0431\\u0440\\u0430\\u0449\\u0435\\u043d\\u0438\\u044f\\u043c\\u0438 \\u0432 \\u0430\\u0432\\u0442\\u043e\\u0441\\u0435\\u0440\\u0432\\u0438\\u0441, \\u0432\\u044b\\u0431\\u0438\\u0440\\u0430\\u0439\\u0442\\u0435 \\u043a\\u0430\\u0447\\u0435\\u0441\\u0442\\u0432\\u0435\\u043d\\u043d\\u044b\\u0435 \\u0441\\u0440\\u0435\\u0434\\u0441\\u0442\\u0432\\u0430 \\u0434\\u043b\\u044f \\u0440\\u0435\\u0433\\u0443\\u043b\\u044f\\u0440\\u043d\\u043e\\u0433\\u043e \\u0443\\u0445\\u043e\\u0434\\u0430 \\u0437\\u0430 \\u043e\\u0441\\u043d\\u043e\\u0432\\u043d\\u044b\\u043c\\u0438 \\u0443\\u0437\\u043b\\u0430\\u043c\\u0438 \\u0430\\u0432\\u0442\\u043e\\u043c\\u043e\\u0431\\u0438\\u043b\\u044f. \\u041f\\u0440\\u0438\\u0441\\u0430\\u0434\\u043a\\u0438 \\u0434\\u043b\\u044f \\u0431\\u0435\\u043d\\u0437\\u0438\\u043d\\u0430 \\u0438 \\u0434\\u0438\\u0437\\u0435\\u043b\\u044c\\u043d\\u043e\\u0433\\u043e \\u0442\\u043e\\u043f\\u043b\\u0438\\u0432\\u0430, \\u043a\\u043e\\u0442\\u043e\\u0440\\u044b\\u0435 \\u0437\\u0430\\u0449\\u0438\\u0442\\u044f\\u0442 \\u0444\\u043e\\u0440\\u0441\\u0443\\u043d\\u043a\\u0438 \\u0438 \\u043a\\u043b\\u0430\\u043f\\u0430\\u043d\\u044b \\u0434\\u0432\\u0438\\u0433\\u0430\\u0442\\u0435\\u043b\\u044f \\u043e\\u0442 \\u043f\\u0440\\u0435\\u0436\\u0434\\u0435\\u0432\\u0440\\u0435\\u043c\\u0435\\u043d\\u043d\\u043e\\u0433\\u043e \\u0438\\u0437\\u043d\\u043e\\u0441\\u0430, \\u0430 \\u0442\\u0430\\u043a\\u0436\\u0435 \\u043e\\u0447\\u0438\\u0441\\u0442\\u0438\\u0442\\u0435\\u043b\\u0438 \\u0438 \\u0441\\u043f\\u0435\\u0446\\u0438\\u0430\\u043b\\u044c\\u043d\\u044b\\u0435 \\u0441\\u0440\\u0435\\u0434\\u0441\\u0442\\u0432\\u0430 \\u0434\\u043b\\u044f \\u0430\\u0432\\u0442\\u043e\\u0441\\u0435\\u0440\\u0432\\u0438\\u0441\\u043e\\u0432. \\r\\n \\r\\n\\u041a\\u043e\\u043c\\u043f\\u0430\\u043d\\u0438\\u044f \\u0438\\u0437\\u0432\\u0435\\u0441\\u0442\\u043d\\u0430 \\u043a\\u0430\\u043a \\u043a\\u0440\\u0443\\u043f\\u043d\\u0435\\u0439\\u0448\\u0438\\u0439 \\u0440\\u0430\\u0437\\u0440\\u0430\\u0431\\u043e\\u0442\\u0447\\u0438\\u043a \\u0438\\u043d\\u043d\\u043e\\u0432\\u0430\\u0446\\u0438\\u043e\\u043d\\u043d\\u044b\\u0445 \\u0441\\u043c\\u0430\\u0437\\u043e\\u0447\\u043d\\u044b\\u0445 \\u043c\\u0430\\u0442\\u0435\\u0440\\u0438\\u0430\\u043b\\u043e\\u0432 \\u0434\\u043b\\u044f \\u043f\\u0440\\u043e\\u0444\\u0435\\u0441\\u0441\\u0438\\u043e\\u043d\\u0430\\u043b\\u044c\\u043d\\u043e\\u0433\\u043e \\u043f\\u0440\\u0438\\u043c\\u0435\\u043d\\u0435\\u043d\\u0438\\u044f. \\u041e\\u0441\\u043e\\u0431\\u043e\\u0435 \\u043c\\u0435\\u0441\\u0442\\u043e \\u0432 \\u043b\\u0438\\u043d\\u0435\\u0439\\u043a\\u0435 \\u043f\\u0440\\u043e\\u0434\\u0443\\u043a\\u0446\\u0438\\u0438 \\u0437\\u0430\\u043d\\u0438\\u043c\\u0430\\u044e\\u0442 \\u043c\\u0430\\u0441\\u043b\\u0430 \\u043d\\u0430 \\u0431\\u0430\\u0437\\u0435 \\u044d\\u0441\\u0442\\u0435\\u0440\\u043e\\u0432 (\\u0438\\u0445 \\u0434\\u043e\\u043b\\u044f \\u0432 \\u0441\\u043e\\u0441\\u0442\\u0430\\u0432\\u0435 \\u0433\\u043e\\u0442\\u043e\\u0432\\u043e\\u0433\\u043e \\u043f\\u0440\\u043e\\u0434\\u0443\\u043a\\u0442\\u0430 \\u043c\\u043e\\u0436\\u0435\\u0442 \\u0434\\u043e\\u0441\\u0442\\u0438\\u0433\\u0430\\u0442\\u044c 40-60%) \\u0438 \\u041d\\u0435\\u0441\\u0442\\u0435\\u0440\\u043e\\u0432\\u043e\\u0439-\\u043a\\u0435\\u0440\\u0430\\u043c\\u0438\\u0447\\u0435\\u0441\\u043a\\u0438\\u0435 \\u043f\\u0440\\u0438\\u0441\\u0430\\u0434\\u043a\\u0438. \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\\u0441\\u0440\\u043e\\u043a \\u044d\\u043a\\u0441\\u043f\\u043b\\u0443\\u0430\\u0442\\u0430\\u0446\\u0438\\u0438 \\u0430\\u0432\\u0442\\u043e\\u043c\\u043e\\u0431\\u0438\\u043b\\u044f<\\/a>\",\"label\":\"Message\"},\"phone\":{\"value\":\"89651313186\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-19 15:16:59'),(318,0,'cf_2555',3,0,'','vxf_abcc1b9d-8b1c-429b-b172-10ae7de9adbd','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike MacDonald\\r\\n\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mike MacDonald\\r\\n\",\"label\":\"Last name\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello \\r\\n \\r\\nWe all know the importance that dofollow link have on any website`s ranks. \\r\\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \\r\\n \\r\\nBuy quality dofollow links from us, that will impact your ranks in a positive way \\r\\nhttps:\\/\\/www.digital-x-press.com\\/product\\/150-dofollow-backlinks\\/ \\r\\n \\r\\nBest regards \\r\\nMike MacDonald\\r\\n \\r\\nsupport@digital-x-press.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"88476432251\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-21 22:44:15'),(319,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Anthonyval\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Anthonyval\",\"label\":\"Last name\"},\"email\":{\"value\":\"cynthiasprinkel@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u0414\\u0430\\u0440\\u043e\\u0432 \\u0435\\u0441\\u0442\\u044c \\u0438\\u043d\\u0442\\u0435\\u0440\\u0435\\u0441\\u043d\\u044b\\u0439 \\u0441\\u0430\\u0439\\u0442 https:\\/\\/traveltofly.ru \",\"label\":\"Message\"},\"phone\":{\"value\":\"82533376656\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-23 12:15:50'),(320,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Paige\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Shipp\",\"label\":\"Last name\"},\"email\":{\"value\":\"virgot312@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi there,\\r\\n\\r\\nTurnkey Chat Software & Trained Live Chat Agents 24\\/7 for Your Industry. Request a Demo! Boost Your Leads, Engage Your Prospects & Take Your Customer Service to a New Level. Easy Setup. App for iOs & Android. Click here: https:\\/\\/crotonz.com\\/livechat\\/\\r\\n\\r\\nAffordable & Professional Web Development - Wordpress\\/ Woocommerce\\/ Shopify and Custom Web development. Highly Experienced and Certified. Know More: https:\\/\\/crotonz.com\\/website-design-virtual-assistant.php\\r\\n\\r\\nKind Regards,\\r\\nSam Miller\\r\\ninfo@crotonz.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"06-82357166\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-24 06:16:41'),(321,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Jan\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Burgess\",\"label\":\"Last name\"},\"email\":{\"value\":\"janburgess913@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi! \\r\\n\\r\\nNewer websites out there are now integrated with features that make business processes easier to run for both the company and their clients. I\'m a freelance web designer who can help you integrate smart features that a business website should have, as well as a modern look and feel. I\'m sending you this message because I\'d like to help you out with your website\'s design. I\'m able to work with most of the major programming languages, website platforms, and shopping carts, and I specialize in one platform that\'s truly amazing called WordPress. Designing your site on a platform gives you an incredible number of features and allows you to personally make changes to your site in a really easy manner. \\r\\n\\r\\nI do all the work by myself freelance and I never outsource. I\'d also like to hear your ideas for the website design and provide you with a few of my own as well. Kindly write back to let me know if this is something you\'d like to know more about and we\'ll take it from there. Talk soon!\\n\\nJan Burgess\",\"label\":\"Message\"},\"phone\":{\"value\":\"(709) 909-1574\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-25 05:17:12'),(322,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Jan\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Burgess\",\"label\":\"Last name\"},\"email\":{\"value\":\"janburgess913@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi! \\r\\n\\r\\nNewer websites out there are now integrated with features that make business processes easier to run for both the company and their clients. I\'m a freelance web designer who can help you integrate smart features that a business website should have, as well as a modern look and feel. I\'m sending you this message because I\'d like to help you out with your website\'s design. I\'m able to work with most of the major programming languages, website platforms, and shopping carts, and I specialize in one platform that\'s truly amazing called WordPress. Designing your site on a platform gives you an incredible number of features and allows you to personally make changes to your site in a really easy manner. \\r\\n\\r\\nI do all the work by myself freelance and I never outsource. I\'d also like to hear your ideas for the website design and provide you with a few of my own as well. Kindly write back to let me know if this is something you\'d like to know more about and we\'ll take it from there. Talk soon!\\n\\nJan Burgess\",\"label\":\"Message\"},\"phone\":{\"value\":\"(709) 909-1574\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-25 07:52:25'),(323,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','Error in \'fields.email\'. Required field \'email\' is missing','submit','{\"firstname\":{\"value\":\"Robert\",\"label\":\"First name\"},\"phone\":{\"value\":\"4166710030\",\"label\":\"Phone number\"},\"company\":{\"value\":\"Translucent Computing Inc\",\"label\":\"Company name\"},\"message\":{\"value\":\"test\",\"label\":\"Message\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"2e819ccd-9b21-437b-9f49-563200f545c1\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Required field \'email\' is missing\",\"errorType\":\"REQUIRED_FIELD\"}]}','[]',0,'2021-10-29 21:04:13'),(324,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"robertski@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Robert\",\"label\":\"First name\"},\"phone\":{\"value\":\"4166710030\",\"label\":\"Phone number\"},\"company\":{\"value\":\"Translucent Computing Inc\",\"label\":\"Company name\"},\"message\":{\"value\":\"ttttest\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-29 21:07:16'),(325,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Estelle\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Andy\",\"label\":\"Last name\"},\"email\":{\"value\":\"estelleandy02@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Estelle sent you 1 nude pic. She is online and very horny now.\\r\\nPlease click here to chat with her.\\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/EstelleAndy\",\"label\":\"Message\"},\"phone\":{\"value\":\"9043558989\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"714b89b8-7745-4943-be5d-ea866229fd58\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-10-30 10:38:03'),(326,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gabrielmont.ire@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Gabriel\",\"label\":\"First name\"},\"phone\":{\"value\":\"+353858049807\",\"label\":\"Phone number\"},\"company\":{\"value\":\"Translucent\",\"label\":\"Company name\"},\"message\":{\"value\":\"Test email form\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-30 11:54:23'),(327,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"RobertQuift\",\"label\":\"First name\"},\"lastname\":{\"value\":\"RobertQuift\",\"label\":\"Last name\"},\"email\":{\"value\":\"tashawnwilliams118@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\" \\r\\nH\\u1ec7 th\\u1ed1ng \\u0111\\u1ed5i th\\u1ebb c\\u00e0o th\\u00e0nh ti\\u1ec1n m\\u1eb7t nhanh ch\\u00f3ng v\\u00e0 uy t\\u00edn. Cam k\\u1ebft d\\u1ecbch v\\u1ee5 \\u0111\\u1ea3m b\\u1ea3o an to\\u00e0n, quy\\u1ec1n l\\u1ee3i kh\\u00e1ch h\\u00e0ng v\\u00e0 chi\\u1ebft kh\\u1ea5u cao nh\\u1ea5t ! \\u0111\\u1ed5i th\\u1ebb c\\u00e0o, ... \\r\\n \\r\\n\\u0110\\u1ed5i th\\u1ebb c\\u00e0o - Doithenap.com https:\\/\\/doithenap.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"84476956379\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-30 19:06:50'),(328,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Autumn\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Marion\",\"label\":\"Last name\"},\"email\":{\"value\":\"autumn.marion@yahoo.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Are you having difficulties in sleeping?\\r\\n\\r\\nDo you find it hard to sleep in time? don\'t worry.\\r\\n\\r\\nWe find the best solution for you. No.1 genuine product to sleep faster without any side effects.\\r\\n\\r\\nVisit the website to get surprised.\\r\\n\\r\\nhttps:\\/\\/forbes.blog\\/sleep\",\"label\":\"Message\"},\"phone\":{\"value\":\"416-940-6098\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-30 22:12:30'),(329,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Eric\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jones\",\"label\":\"Last name\"},\"email\":{\"value\":\"eric.jones.z.mail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"My name\\u2019s Eric and I just found your site translucentcomputing.com.\\r\\n\\r\\nIt\\u2019s got a lot going for it, but here\\u2019s an idea to make it even MORE effective.\\r\\n\\r\\nTalk With Web Visitor \\u2013 CLICK HERE https:\\/\\/talkwithwebvisitors.com for a live demo now.\\r\\n\\r\\nTalk With Web Visitor is a software widget that\\u2019s works on your site, ready to capture any visitor\\u2019s Name, Email address and Phone Number. It signals you the moment they let you know they\\u2019re interested \\u2013 so that you can talk to that lead while they\\u2019re literally looking over your site.\\r\\n\\r\\nAnd once you\\u2019ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation\\u2026 and if they don\\u2019t take you up on your offer then, you can follow up with text messages for new offers, content links, even just \\u201chow you doing?\\u201d notes to build a relationship.\\r\\n\\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\\r\\n\\r\\nThe difference between contacting someone within 5 minutes versus a half-hour means you could be converting up to 100X more leads today!\\r\\n\\r\\nEric\\r\\nPS: Studies show that 70% of a site\\u2019s visitors disappear and are gone forever after just a moment. Don\\u2019t keep losing them. \\r\\nTalk With Web Visitor offers a FREE 14 days trial \\u2013 and it even includes International Long Distance Calling. \\r\\nYou have customers waiting to talk with you right now\\u2026 don\\u2019t keep them waiting. \\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to try Talk With Web Visitor now.\\r\\n\\r\\nIf you\'d like to unsubscribe click here http:\\/\\/talkwithwebvisitors.com\\/unsubscribe.aspx?d=translucentcomputing.com\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"555-555-1212\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-30 23:29:31'),(330,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"allisonharry683@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"ApkJoyblisa\",\"label\":\"First name\"},\"phone\":{\"value\":\"81886883152\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"You can download any of the provided casinos more than without any problems. If you download the casino app, it command travail like a classic replication of the power supply site from the movable version. Unfortunately, all the apps you download choice just commission on Android. Download casino in 1 click from the list, these are the most advanced mechanical applications. \\r\\n \\r\\nThe most suitable casino apps for Android \\r\\nThe problem is that finding Android apps and downloading them can be tricky, as Google doesn\'t authorize legitimate small change Android casinos to be placed in the Play Store. \\r\\n \\r\\nDownload casino app \\r\\nBut don\'t stew, there is a simple dissolving, you can download the casino app from casinoapk2.xyz. \\r\\n \\r\\nAs so multitudinous users bear been asking around casino gaming on their Android phones or tablets. We dug there a portion to learn you the kindest casino apps contribution the in spite of actual well-heeled experience. \\r\\n \\r\\nThe most simplified Android casino<\\/a>, download Pin-up. \\r\\n \\r\\nReviewers verify each perseverance notwithstanding refuge to insure positiveness; \\r\\nWe will relieve you rouse loyal money gambling apps with the best Android apps; \\r\\nThe casinos tender the in the most suitable way group of games. \\r\\nDownload Real Money Casino \\r\\nIt is not often plain to download genuine change casinos, even on more normal smartphones like Samsung Galaxy, HTC Joined or Sony Xperia. So if you want to download the app to out first money, pore over all below. \\r\\n \\r\\nOur party ground the prime casinos present quality gambling in return your device and ran an intense 25-step verification process benefit of them. \\r\\n \\r\\nOn this epoch you will-power on an relevancy on the side of Android: \\r\\n \\r\\nAcceptable Promotions - We recognize how much players want to accept interest of the bonuses, so we made sure that our featured sites proffer classy deals after Android. \\r\\nDiversity of games. Bad determination is a jumbo minus. We only praise the app, the game portfolio is interminable and varied. \\r\\nDeposits - You be in want of as few restrictions as thinkable when it comes to depositing and withdrawing filthy lucre to your casino app account. We make inevitable that all apps we vouch for brook a far-reaching class of payment methods. \\r\\nFleet payouts. All applications offer loyal payments with true fortune, credited to the account in a insufficient hours. \\r\\nTransportable Compatibility - Engage in Apps Anywhere. \\r\\nConsumer Hold up - To be featured on the Featured List, we call for online casinos to present comprehensive and receptive person service. \\r\\nAdvantages of an online JoyCasino<\\/a> app for Android \\r\\nExcess video graphics and usability in Android apps. \\r\\nCircumstance the uniform stunning PC experience. \\r\\nImmediate access from the application. \\r\\nCasino apps - looking looking for the best \\r\\nWe halt and download casino apps to protect they come together great standards. The criteria euphemistic pre-owned to select a casino app are just as stringent as the criteria utilized to rate a PC casino. Each appeal has: \\r\\n \\r\\nHighest quality graphics; \\r\\nEasy loading and playing measure; \\r\\nLustful payouts.\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-10-31 02:03:11'),(331,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Estelle\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Andy\",\"label\":\"Last name\"},\"email\":{\"value\":\"estelleandy02@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Estelle sent you 1 nude pic. She is online and very horny now.\\r\\nPlease click here to chat with her.\\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/EstelleAndy\",\"label\":\"Message\"},\"phone\":{\"value\":\"9043558989\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"54989a6d-ec07-42d5-adcb-3371c3721ab6\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-10-31 17:51:51'),(332,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Timmons\\r\\n\",\"label\":\"First name\"},\"phone\":{\"value\":\"88753185394\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Howdy \\r\\n \\r\\nWe will enhance your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \\r\\n \\r\\nPlease check our plans here, we offer Local SEO at cheap rates. \\r\\nhttps:\\/\\/speed-seo.net\\/product\\/local-seo-package\\/ \\r\\n \\r\\nNEW: \\r\\nhttps:\\/\\/www.speed-seo.net\\/product\\/zip-codes-gmaps-citations\\/ \\r\\n \\r\\nregards \\r\\nMike Timmons\\r\\n \\r\\nSpeed SEO Digital Agency\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-01 18:54:02'),(333,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sfsdsdvdsdv@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"DanielGoavy\",\"label\":\"First name\"},\"phone\":{\"value\":\"82795115421\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\" \\r\\nFree deep throat porn for you! --> http:\\/\\/bsdbsdb.byethost22.com \\r\\nFree porn <\\/a> Detail <\\/a>: Free porn <\\/a>\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-02 15:33:00'),(334,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"noreply@googlemail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Chau Cheung\",\"label\":\"First name\"},\"phone\":{\"value\":\"88542685723\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello, \\r\\nI am contacting you regarding a transaction of mutual benefit, I am an attorney who managed a client\'s account that passed away many years ago, he passed away without any known relative. \\r\\nWe can work together mutually to process and receive the funds, let me know if you wish to know more about my proposal and I shall provide you with more information. \\r\\n \\r\\nRegards, \\r\\nMr Chau Shiu Cheung \\r\\nchaushuicheung@hongkongsolicitors.org\",\"label\":\"Message\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"b55b3caf-9a81-4db7-ba0e-81b8f8dfb094\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-11-03 00:50:43'),(335,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Bane\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Davis\",\"label\":\"Last name\"},\"email\":{\"value\":\"banedavis210@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello there! \\r\\n\\r\\nMobile apps are the revolution of the Web - and online businesses. Whatever your business goals may be, a mobile app, which is installed and directly used by customers on their smartphones, is now more powerful than conventional websites. \\r\\n\\r\\nDo you have a mobile app for your business? Potential clients nowadays are more comfortable doing business with companies whose mobile app does not only have an amazing look and feel, but also has some features that make doing most business processes easier. I am an expert app developer and I specialized in Android, iOS and many other mobile platforms. I know that you have some great ideas about your future mobile app, and I cannot wait to hear all of them. I\'ve been thinking of some superstar ideas of my own, too. \\r\\n\\r\\nIf you\'d like to know more info, I\'ll send you my portfolio containing the apps that I\'ve made for my other clients, and I\'ll also show you data about how the app helps their business. Please reply to let me know what you think. Talk to you soon! \\n\\n \\r\\nRegards,\\r\\nBane Davis\",\"label\":\"Message\"},\"phone\":{\"value\":\"(681) 238-9274\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-03 04:29:19'),(336,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Wilsoncloum\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Wilsoncloum\",\"label\":\"Last name\"},\"email\":{\"value\":\"swetafiw2bn@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u0415\\u0441\\u043b\\u0438 \\u0412\\u0430\\u0448 \\u043a\\u043e\\u043c\\u043f\\u044c\\u044e\\u0442\\u0435\\u0440 \\u0430\\u0432\\u0430\\u0440\\u0438\\u0439\\u043d\\u043e \\u0432\\u044b\\u043a\\u043b\\u044e\\u0447\\u0430\\u0435\\u0442\\u0441\\u044f \\u0438\\u0437-\\u0437\\u0430 \\u043f\\u0435\\u0440\\u0435\\u0433\\u0440\\u0435\\u0432\\u0430 \\u043f\\u0440\\u043e\\u0446\\u0435\\u0441\\u0441\\u043e\\u0440\\u0430 \\u043f\\u0440\\u0438 \\u0432\\u044b\\u0441\\u043e\\u043a\\u043e\\u0439 \\u043d\\u0430\\u0433\\u0440\\u0443\\u0437\\u043a\\u0435 \\u043d\\u0430 \\u043d\\u0435\\u0433\\u043e \\u0438\\u043b\\u0438 \\u0412\\u0430\\u043c \\u043d\\u0435 \\u043d\\u0440\\u0430\\u0432\\u0438\\u0442\\u0441\\u044f \\u0441\\u043b\\u0438\\u0448\\u043a\\u043e\\u043c \\u0432\\u044b\\u0441\\u043e\\u043a\\u0430\\u044f \\u0442\\u0435\\u043c\\u043f\\u0435\\u0440\\u0430\\u0442\\u0443\\u0440\\u0430 \\u043f\\u0440\\u043e\\u0446\\u0435\\u0441\\u0441\\u043e\\u0440\\u0430, \\u0430 \\u0447\\u0438\\u0441\\u0442\\u043a\\u0430 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u043d\\u043e\\u0433\\u043e \\u0431\\u043b\\u043e\\u043a\\u0430 \\u0438 \\u043a\\u0443\\u043b\\u0435\\u0440\\u0430 \\u043d\\u0435 \\u043f\\u0440\\u0438\\u0432\\u0435\\u043b\\u0430 \\u043a \\u043e\\u0436\\u0438\\u0434\\u0430\\u0435\\u043c\\u044b\\u043c \\u0440\\u0435\\u0437\\u0443\\u043b\\u044c\\u0442\\u0430\\u0442\\u0430\\u043c, \\u0442\\u043e\\u0433\\u0434\\u0430 \\u044d\\u0442\\u043e\\u0442 \\u0441\\u043e\\u0432\\u0435\\u0442 \\u0434\\u043b\\u044f \\u0412\\u0430\\u0441. \\u0421\\u043a\\u043e\\u0440\\u0435\\u0435 \\u0432\\u0441\\u0435\\u0433\\u043e, \\u043f\\u0440\\u043e\\u0431\\u043b\\u0435\\u043c\\u0430 \\u0432 \\u0441\\u0442\\u0430\\u0440\\u043e\\u0439 \\u0442\\u0435\\u0440\\u043c\\u043e\\u043f\\u0430\\u0441\\u0442\\u0435, \\u043a\\u043e\\u0442\\u043e\\u0440\\u0430\\u044f \\u043d\\u0430\\u043d\\u0435\\u0441\\u0435\\u043d\\u0430 \\u043d\\u0430 \\u043f\\u0440\\u043e\\u0446\\u0435\\u0441\\u0441\\u043e\\u0440. \\u0418 \\u0432 \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0442\\u0430\\u0442\\u044c\\u0435 \\u043c\\u044b \\u0440\\u0430\\u0437\\u0431\\u0435\\u0440\\u0435\\u043c, \\u043a\\u0430\\u043a \\u0437\\u0430\\u043c\\u0435\\u043d\\u0438\\u0442\\u044c \\u0442\\u0435\\u0440\\u043c\\u043e\\u043f\\u0430\\u0441\\u0442\\u0443.\\r\\n\\u041f\\u043e\\u0441\\u043b\\u0435 \\u0442\\u043e\\u0433\\u043e, \\u043a\\u0430\\u043a \\u0438\\u0437\\u0431\\u0430\\u0432\\u0438\\u043b\\u0438\\u0441\\u044c \\u043e\\u0442 \\u0441\\u0442\\u0430\\u0440\\u043e\\u0439 \\u043f\\u0430\\u0441\\u0442\\u044b, \\u043c\\u043e\\u0436\\u043d\\u043e \\u043d\\u0430\\u043d\\u043e\\u0441\\u0438\\u0442\\u044c \\u0441\\u0432\\u0435\\u0436\\u0443\\u044e. \\u0412\\u044b\\u0434\\u0430\\u0432\\u043b\\u0438\\u0432\\u0430\\u0435\\u043c \\u043d\\u0435\\u0431\\u043e\\u043b\\u044c\\u0448\\u043e\\u0435 \\u043a\\u043e\\u043b\\u0438\\u0447\\u0435\\u0441\\u0442\\u0432\\u043e \\u0438\\u0437 \\u0442\\u044e\\u0431\\u0438\\u043a\\u0430 \\u043d\\u0430 \\u0441\\u0440\\u0435\\u0434\\u0438\\u043d\\u0443 \\u043a\\u0440\\u0438\\u0441\\u0442\\u0430\\u043b\\u043b\\u0430. \\u0422\\u0435\\u043f\\u0435\\u0440\\u044c \\u043d\\u0435\\u043e\\u0431\\u0445\\u043e\\u0434\\u0438\\u043c\\u043e \\u0440\\u0430\\u0441\\u043f\\u0440\\u0435\\u0434\\u0435\\u043b\\u0438\\u0442\\u044c \\u0435\\u0435 \\u0440\\u0430\\u0432\\u043d\\u043e\\u043c\\u0435\\u0440\\u043d\\u044b\\u043c, \\u0442\\u043e\\u043d\\u043a\\u0438\\u043c \\u0441\\u043b\\u043e\\u0435\\u043c. \\u0414\\u043b\\u044f \\u044d\\u0442\\u043e\\u0433\\u043e \\u043b\\u0443\\u0447\\u0448\\u0435 \\u0432\\u0441\\u0435\\u0433\\u043e \\u0432\\u043e\\u0441\\u043f\\u043e\\u043b\\u044c\\u0437\\u043e\\u0432\\u0430\\u0442\\u044c\\u0441\\u044f \\u043b\\u044e\\u0431\\u043e\\u0439 \\u043f\\u043b\\u0430\\u0441\\u0442\\u0438\\u043a\\u043e\\u0432\\u043e\\u0439 \\u043a\\u0430\\u0440\\u0442\\u043e\\u0447\\u043a\\u043e\\u0439 \\u0438\\u043b\\u0438 \\u0440\\u0443\\u043a\\u0430\\u043c\\u0438, \\u043d\\u043e \\u0432 \\u0434\\u0430\\u043d\\u043d\\u043e\\u043c \\u0441\\u043b\\u0443\\u0447\\u0430\\u0435 \\u0441\\u043b\\u043e\\u0439 \\u0431\\u0443\\u0434\\u0435\\u0442 \\u043d\\u0430\\u043d\\u0435\\u0441\\u0435\\u043d \\u043d\\u0435\\u0440\\u0430\\u0432\\u043d\\u043e\\u043c\\u0435\\u0440\\u043d\\u043e. \\u0415\\u0441\\u043b\\u0438 \\u0442\\u0435\\u0440\\u043c\\u043e\\u043f\\u0430\\u0441\\u0442\\u0430 \\u0432\\u044b\\u0442\\u0435\\u043a\\u043b\\u0430 \\u0437\\u0430 \\u043f\\u0440\\u0435\\u0434\\u0435\\u043b\\u044b \\u043f\\u0440\\u043e\\u0446\\u0435\\u0441\\u0441\\u043e\\u0440\\u0430, \\u0442\\u043e \\u0435\\u0435 \\u043d\\u0443\\u0436\\u043d\\u043e \\u0443\\u0434\\u0430\\u043b\\u0438\\u0442\\u044c. \\u041f\\u043e\\u0441\\u043b\\u0435 \\u044d\\u0442\\u043e\\u0433\\u043e \\u043f\\u0440\\u0438\\u043a\\u0440\\u0443\\u0447\\u0438\\u0432\\u0430\\u0435\\u043c \\u043a\\u0443\\u043b\\u0435\\u0440 \\u0438 \\u0432\\u043e\\u0437\\u0432\\u0440\\u0430\\u0449\\u0430\\u0435\\u043c \\u0432\\u0441\\u0435 \\u043e\\u0431\\u0440\\u0430\\u0442\\u043d\\u043e.\\r\\n \\u043d\\u043e\\u0432\\u043e\\u0441\\u0442\\u0438 \\u0436\\u0435\\u043b\\u0435\\u0437\\u0430 \\u043f\\u043a https:\\/\\/prohardisoft.ru \\r\\n \\r\\n\\u0414\\u043b\\u044f \\u043d\\u0430\\u0447\\u0430\\u043b\\u0430 \\u043d\\u0443\\u0436\\u043d\\u043e \\u0432\\u044b\\u043a\\u043b\\u044e\\u0447\\u0438\\u0442\\u044c \\u043a\\u043e\\u043c\\u043f\\u044c\\u044e\\u0442\\u0435\\u0440, \\u043e\\u0442\\u0441\\u043e\\u0435\\u0434\\u0438\\u043d\\u0438\\u0442\\u044c \\u043f\\u0440\\u043e\\u0432\\u043e\\u0434\\u0430, \\u0441\\u043d\\u044f\\u0442\\u044c \\u043a\\u0440\\u044b\\u0448\\u043a\\u0443, \\u0441\\u043d\\u044f\\u0442\\u044c \\u043a\\u0443\\u043b\\u0435\\u0440. \\u0418\\u0442\\u0430\\u043a, \\u043f\\u043e\\u0441\\u043b\\u0435 \\u0442\\u043e\\u0433\\u043e \\u043a\\u0430\\u043a \\u043c\\u044b \\u0441\\u043d\\u044f\\u043b\\u0438 \\u043a\\u0443\\u043b\\u0435\\u0440 \\u043c\\u044b \\u0443\\u0432\\u0438\\u0434\\u0438\\u043c \\u043a\\u0440\\u0438\\u0441\\u0442\\u0430\\u043b\\u043b \\u043f\\u0440\\u043e\\u0446\\u0435\\u0441\\u0441\\u043e\\u0440\\u0430. \\u0421\\u0432\\u0435\\u0440\\u0445\\u0443 \\u043d\\u0430 \\u043d\\u0435\\u043c \\u0431\\u0443\\u0434\\u0435\\u0442 \\u0432\\u044b\\u0441\\u043e\\u0445\\u0448\\u0435\\u0435 \\u0431\\u0435\\u043b\\u043e\\u0435 \\u0432\\u0435\\u0449\\u0435\\u0441\\u0442\\u0432\\u043e \\u2013 \\u044d\\u0442\\u043e \\u0441\\u0442\\u0430\\u0440\\u0430\\u044f \\u043f\\u0430\\u0441\\u0442\\u0430. \\u041f\\u043e\\u044d\\u0442\\u043e\\u043c\\u0443 \\u043f\\u0435\\u0440\\u0435\\u0434 \\u0442\\u0435\\u043c \\u043a\\u0430\\u043a \\u043d\\u0430\\u043d\\u0435\\u0441\\u0442\\u0438 \\u043d\\u043e\\u0432\\u0443\\u044e, \\u0441\\u0442\\u0430\\u0440\\u0443\\u044e \\u043d\\u0435\\u043e\\u0431\\u0445\\u043e\\u0434\\u0438\\u043c\\u043e \\u0443\\u0434\\u0430\\u043b\\u0438\\u0442\\u044c.\\r\\n\\u0414\\u043b\\u044f \\u0442\\u043e\\u0433\\u043e \\u0447\\u0442\\u043e\\u0431\\u044b \\u0438\\u0437\\u0431\\u0430\\u0432\\u0438\\u0442\\u0441\\u044f \\u043e\\u0442 \\u0441\\u0442\\u0430\\u0440\\u043e\\u0439 \\u0442\\u0435\\u0440\\u043c\\u043e\\u043f\\u0430\\u0441\\u0442\\u044b \\u043c\\u043e\\u0436\\u043d\\u043e \\u043a\\u0443\\u043f\\u0438\\u0442\\u044c \\u0441\\u043f\\u0435\\u0446\\u0438\\u0430\\u043b\\u044c\\u043d\\u044b\\u0435 \\u0441\\u0440\\u0435\\u0434\\u0441\\u0442\\u0432\\u0430, \\u0430 \\u043c\\u043e\\u0436\\u043d\\u043e \\u0432\\u043e\\u0441\\u043f\\u043e\\u043b\\u044c\\u0437\\u043e\\u0432\\u0430\\u0442\\u044c\\u0441\\u044f \\u043e\\u0431\\u044b\\u043a\\u043d\\u043e\\u0432\\u0435\\u043d\\u043d\\u044b\\u043c \\u0441\\u043f\\u0438\\u0440\\u0442\\u043e\\u043c \\u0438 \\u0441\\u0443\\u0445\\u043e\\u0439 \\u0442\\u043a\\u0430\\u043d\\u044c\\u044e. \\u041d\\u0430\\u043d\\u043e\\u0441\\u0438\\u043c \\u043d\\u0435\\u0431\\u043e\\u043b\\u044c\\u0448\\u043e\\u0435 \\u043a\\u043e\\u043b\\u0438\\u0447\\u0435\\u0441\\u0442\\u0432\\u043e \\u0441\\u043f\\u0438\\u0440\\u0442\\u0430 \\u043d\\u0430 \\u043a\\u0440\\u0438\\u0441\\u0442\\u0430\\u043b\\u043b, \\u0436\\u0434\\u0435\\u043c \\u043f\\u043e\\u043a\\u0430 \\u043f\\u0430\\u0441\\u0442\\u0430 \\u0432 \\u043d\\u0435\\u043c \\u0440\\u0430\\u0441\\u0442\\u0432\\u043e\\u0440\\u0438\\u0442\\u0441\\u044f, \\u0438 \\u0430\\u043a\\u043a\\u0443\\u0440\\u0430\\u0442\\u043d\\u043e \\u0432\\u044b\\u0442\\u0438\\u0440\\u0430\\u0435\\u043c \\u0442\\u0440\\u044f\\u043f\\u043e\\u0447\\u043a\\u043e\\u0439.\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"83954538139\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-04 14:36:15'),(337,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"brandydaniels_17@live.ca\",\"label\":\"Email\"},\"firstname\":{\"value\":\"AnthonyTow\",\"label\":\"First name\"},\"phone\":{\"value\":\"86489335174\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi site owner translucentcomputing.com! \\r\\nWe have a lucrative offer for you with an income of $ 1500 per day. \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc7Dfvb&sa=D&78=20&usg=AFQjCNFj2oseFtHI_XwJeWiFMuUV3NTIfA \\r\\nThe bottom line is that artificial intelligence will make you money. \\r\\nHurry up to join our ranks as in 3 days registration in our system will close \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc7Dfvb&sa=D&48=00&usg=AFQjCNFj2oseFtHI_XwJeWiFMuUV3NTIfA\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-05 03:28:41'),(338,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Ranker\",\"label\":\"First name\"},\"lastname\":{\"value\":\"SEO\",\"label\":\"Last name\"},\"email\":{\"value\":\"rowan.jose@msn.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Rank 1 on Google With 50% Off Diwali Sale\\r\\n\\r\\nThe offer is applicable only for Indian customers.\\r\\nUse this special festive sale to rank your website on the first page on Google. 50% off for the next 48 hours. World\'s leading SEO agency. Guaranteed ranking improvements in 3 months. 100% results-oriented link-building methods.\\r\\n\\r\\nFor more details, visit our website https:\\/\\/www.ranker.one\\r\\nContact us via skype: Ranker Support\\r\\n\\r\\nThanks.\",\"label\":\"Message\"},\"phone\":{\"value\":\"626-306-4160\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-05 11:53:52'),(339,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Judith\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Angeles\",\"label\":\"Last name\"},\"email\":{\"value\":\"jfangeles01@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"v\",\"label\":\"Message\"},\"phone\":{\"value\":\"8257413974\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-07 02:04:51'),(340,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Judith\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Angeles\",\"label\":\"Last name\"},\"email\":{\"value\":\"jfangeles01@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello, my name is Judith from TDS. We have a domain that is currently on sale that you might be interested in - Kcsp.net\\r\\n \\r\\nWhenever someone types KCSP, or any other phrase with this keyword into their browser, your site could be the first they see!\\r\\n\\r\\nThe internet is the most efficient way to acquire new customers\\r\\n\\r\\nAvg Google Search Results for this domain is: 474,000\\r\\nYou can easily redirect all the traffic this domain gets to your current site!\\r\\n\\r\\nEstiBot.com appraises this domain at $2,200.\\r\\n\\r\\nPriced at only $998 for a limited time! If interested please go to Kcsp.net and select Buy Now, or purchase directly at GoDaddy. \\r\\nAct Fast! First person to select Buy Now gets it! \\r\\n\\r\\nThank you very much for your time.\\r\\nTop Domain Sellers (TDS)\\r\\nJudith Angeles\",\"label\":\"Message\"},\"phone\":{\"value\":\"8257413974\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-07 02:04:57'),(341,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Judith\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Angeles\",\"label\":\"Last name\"},\"email\":{\"value\":\"jfangeles01@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello, my name is Judith from TDS. We have a domain that is currently on sale that you might be interested in - Kcsp.net\\r\\n \\r\\nWhenever someone types KCSP, or any other phrase with this keyword into their browser, your site could be the first they see!\\r\\n\\r\\nThe internet is the most efficient way to acquire new customers\\r\\n\\r\\nAvg Google Search Results for this domain is: 474,000\\r\\nYou can easily redirect all the traffic this domain gets to your current site!\\r\\n\\r\\nEstiBot.com appraises this domain at $2,200.\\r\\n\\r\\nPriced at only $998 for a limited time! If interested please go to Kcsp.net and select Buy Now, or purchase directly at GoDaddy. \\r\\nAct Fast! First person to select Buy Now gets it! \\r\\n\\r\\nThank you very much for your time.\\r\\nTop Domain Sellers (TDS)\\r\\nJudith Angeles\",\"label\":\"Message\"},\"phone\":{\"value\":\"8257413974\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-07 02:24:58'),(342,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"noreply@googlemail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"David Song\",\"label\":\"First name\"},\"phone\":{\"value\":\"88346939811\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello, \\r\\nThis is a consultancy and brokerage Firm specializing in Growth Financial Loan and Equity Funding Investments. We specialize in investments in all Private and public sectors in a broad range of areas within our Financial Investment Services. We are experts in financial and operational management, due diligence and capital planning in all markets and industries. \\r\\nOur Investors wish to invest in any viable Project presented by your Management after reviews on your Business Project Presentation Plan. We look forward to your Swift response. \\r\\n \\r\\nRegards, \\r\\nMr. David Song \\r\\nEmail:davidsong2030@gmail.com\",\"label\":\"Message\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"554e64a2-c2fe-4b5d-9901-4d8bb2166136\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-11-07 05:51:42'),(343,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"w.as.e.r.i.ok21.0@gmail.com\\r\\n\",\"label\":\"Email\"},\"firstname\":{\"value\":\"DarwinHab\",\"label\":\"First name\"},\"phone\":{\"value\":\"84895133649\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Play roulette for free win real money casino slot games apps <\\/a> online casino no deposit free spins canada \\r\\nPlay blackjack online for real money no deposit casino slots free games <\\/a> online casino real money no deposit malaysia \\r\\nFrom dusk till dawn ganzer film deutsch stream casino online free slot games <\\/a> caesars slots free slot machines & casino games \\r\\nhttps:\\/\\/sites.google.com\\/view\\/t-slot-router-bit-home-depot-r\\/ \\r\\nhttps:\\/\\/sites.google.com\\/view\\/slotty-vegas-10-euro-50-free-s\\/ \\r\\nhttps:\\/\\/slotfreebiesgamebonuseskaraoban.blogspot.com\\/ \",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-07 07:06:08'),(344,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Steve\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Watson\",\"label\":\"Last name\"},\"email\":{\"value\":\"steve@explainervideos4u.xyz\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi,\\r\\n\\r\\nWe\'d like to introduce to you our explainer video service which we feel can benefit your site translucentcomputing.com.\\r\\n\\r\\nCheck out some of our existing videos here:\\r\\nhttps:\\/\\/www.youtube.com\\/watch?v=oYoUQjxvhA0\\r\\nhttps:\\/\\/www.youtube.com\\/watch?v=MOnhn77TgDE\\r\\nhttps:\\/\\/www.youtube.com\\/watch?v=NKY4a3hvmUc\\r\\n\\r\\nAll of our videos are in a similar animated format as the above examples and we have voice over artists with US\\/UK\\/Australian accents.\\r\\n\\r\\nThey can show a solution to a problem or simply promote one of your products or services. They are concise, can be uploaded to video such as Youtube, and can be embedded into your website or featured on landing pages.\\r\\n\\r\\nOur prices are as follows depending on video length:\\r\\n1 minute = $239\\r\\n1-2 minutes = $339\\r\\n2-3 minutes = $449\\r\\n\\r\\n*All prices above are in USD and include an engaging, captivating video with full script and voice-over.\\r\\n\\r\\nIf this is something you would like to discuss further, don\'t hesitate to get in touch.\\r\\nIf you are not interested, simply delete this message and we won\'t contact you again.\\r\\n\\r\\nKind Regards,\\r\\nSteve\",\"label\":\"Message\"},\"phone\":{\"value\":\"06-13401149\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-07 08:51:00'),(345,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"grosmaseo@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"PornoGov\",\"label\":\"First name\"},\"phone\":{\"value\":\"84275299313\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"\\u041d\\u0435\\u0436\\u043d\\u043e\\u0435 \\u043f\\u043e\\u0440\\u043d\\u043e \\u0437\\u0430\\u043f\\u0438\\u0441\\u044c \\u0434\\u043b\\u044f \\u0432\\u0441\\u0435\\u0445 \\u043e\\u043d\\u043b\\u0430\\u0439\\u043d \\u043d\\u0430 https:\\/\\/porno-go.website \\u0432 \\u0432\\u044b\\u0441\\u043e\\u043a\\u043e\\u043c \\u043a\\u0430\\u0447\\u0435\\u0441\\u0442\\u0432\\u0435 \\r\\n\\u0413\\u043e\\u0440\\u044f\\u0447\\u0435\\u0435 \\u0441\\u0435\\u043a\\u0441 \\u0444\\u0438\\u043b\\u044c\\u043c\\u044b \\u0431\\u0435\\u0437 \\u0433\\u0440\\u0430\\u043d\\u0438\\u0446 \\u043f\\u0440\\u043e\\u0441\\u043c\\u043e\\u0442\\u0440 \\u043d\\u0430 https:\\/\\/porno-go.ru \\u0432 HD1080 \\r\\n\\u0413\\u043e\\u0440\\u044f\\u0447\\u0435\\u0435 \\u0441\\u0435\\u043a\\u0441 \\u0441\\u044a\\u0435\\u043c\\u043a\\u0430 \\u0434\\u043b\\u044f \\u0432\\u0441\\u0435\\u0445 \\u043e\\u043d\\u043b\\u0430\\u0439\\u043d \\u043d\\u0430 https:\\/\\/porno-go.top \\u0432 HD1080 \\r\\n\\u041d\\u0435\\u0436\\u043d\\u043e\\u0435 \\u0441\\u0435\\u043a\\u0441 \\u0432\\u0438\\u0434\\u0435\\u043e \\u0431\\u0435\\u0441\\u043f\\u043b\\u0430\\u0442\\u043d\\u043e \\u043e\\u043d\\u043b\\u0430\\u0439\\u043d \\u043d\\u0430 https:\\/\\/porno-go.pro \\u0432 \\u0432\\u044b\\u0441\\u043e\\u043a\\u043e\\u043c \\u043a\\u0430\\u0447\\u0435\\u0441\\u0442\\u0432\\u0435 \\r\\n\\u041d\\u043e\\u0432\\u0438\\u043d\\u043a\\u0438 \\u0441\\u0435\\u043a\\u0441 \\u0432\\u0438\\u0434\\u0435\\u043e \\u0431\\u0435\\u0437 \\u0440\\u0435\\u0433\\u0438\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u0438 \\u043e\\u043d\\u043b\\u0430\\u0439\\u043d \\u043d\\u0430 https:\\/\\/porno-go.mobi \\u0432 HD1080 \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n.\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-07 22:31:54'),(346,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Martinamulp\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Martinamulp\",\"label\":\"Last name\"},\"email\":{\"value\":\"ewdokiya4fwot@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\" \\u041d\\u043e\\u0432\\u043e\\u0441\\u0442\\u0438 \\u0430\\u0432\\u0442\\u043e\\u043c\\u043e\\u0431\\u0438\\u043b\\u0435 \\u0441\\u0442\\u0440\\u043e\\u0435\\u043d\\u0438\\u044f \\u0432 \\u0442\\u0435\\u043b\\u0435\\u0433\\u0440\\u0430\\u043c \\u043a\\u0430\\u043d\\u0430\\u043b\\u0435 https:\\/\\/t.me\\/Avto_Digest\\/1026\",\"label\":\"Message\"},\"phone\":{\"value\":\"85442784743\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-08 01:58:25'),(347,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"petrischeffden@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"PornoGop\",\"label\":\"First name\"},\"phone\":{\"value\":\"89493327496\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"\\u0428\\u0438\\u043a\\u0430\\u0440\\u043d\\u043e\\u0435 \\u043f\\u043e\\u0440\\u043d\\u043e \\u0437\\u0430\\u043f\\u0438\\u0441\\u044c \\u0431\\u0435\\u0437 \\u0433\\u0440\\u0430\\u043d\\u0438\\u0446 \\u043f\\u0440\\u043e\\u0441\\u043c\\u043e\\u0442\\u0440 \\u043d\\u0430 https:\\/\\/porno-go.website \\u0432 HD1080 \\r\\n\\u0421\\u043e \\u0432\\u0441\\u0435\\u0433\\u043e \\u043c\\u0438\\u0440\\u0430 \\u043f\\u043e\\u0440\\u043d\\u043e \\u0437\\u0430\\u043f\\u0438\\u0441\\u044c \\u0431\\u0435\\u0437 \\u0433\\u0440\\u0430\\u043d\\u0438\\u0446 \\u0441\\u043c\\u043e\\u0442\\u0440\\u0435\\u0442\\u044c \\u043d\\u0430 https:\\/\\/porno-go.ru \\u0432 \\u0432\\u044b\\u0441\\u043e\\u043a\\u043e\\u043c \\u043a\\u0430\\u0447\\u0435\\u0441\\u0442\\u0432\\u0435 \\r\\n\\u041d\\u0435\\u0436\\u043d\\u043e\\u0435 \\u043f\\u043e\\u0440\\u043d\\u043e \\u0444\\u0438\\u043b\\u044c\\u043c\\u044b \\u0434\\u043b\\u044f \\u0432\\u0441\\u0435\\u0445 \\u0441\\u043c\\u043e\\u0442\\u0440\\u0435\\u0442\\u044c \\u043d\\u0430 https:\\/\\/porno-go.top \\u0432 HD1080 \\r\\n\\u041d\\u0435\\u0436\\u043d\\u043e\\u0435 \\u0441\\u0435\\u043a\\u0441 \\u0432\\u0438\\u0434\\u0435\\u043e \\u0434\\u043b\\u044f \\u0432\\u0441\\u0435\\u0445 \\u043e\\u043d\\u043b\\u0430\\u0439\\u043d \\u043d\\u0430 https:\\/\\/porno-go.pro \\u0432 HD1080 \\r\\n\\u041d\\u043e\\u0432\\u0438\\u043d\\u043a\\u0438 \\u043f\\u043e\\u0440\\u043d\\u043e \\u0444\\u0438\\u043b\\u044c\\u043c\\u044b \\u0431\\u0435\\u0441\\u043f\\u043b\\u0430\\u0442\\u043d\\u043e \\u043e\\u043d\\u043b\\u0430\\u0439\\u043d \\u043d\\u0430 https:\\/\\/porno-go.mobi \\u0432 \\u0432\\u044b\\u0441\\u043e\\u043a\\u043e\\u043c \\u043a\\u0430\\u0447\\u0435\\u0441\\u0442\\u0432\\u0435 \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n.\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-08 15:30:26'),(348,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Chrissy\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Allan\",\"label\":\"Last name\"},\"email\":{\"value\":\"chrissy@youralexadirectory.link\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \\r\\n\\r\\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\\r\\n\\r\\nIts simple & easy; Register your business here --> \\r\\nhttps:\\/\\/voiceregbiz1.xyz\\/mroe-cusotmers\\/?=translucentcomputing.com\\r\\n\\r\\n\\r\\nChrissy\\r\\nVoice Activation Follow-up Specialist\\r\\nYour Alexa Directory\\r\\n\\r\\n\\r\\n\\r\\n \\r\\n2764 Pleasant Road Suite Suite A PMB 708\\r\\nFort Mill, SC 29708\\r\\n\\r\\nYou can skip future marketing messages here:\\r\\nhttps:\\/\\/voiceregbiz1.xyz\\/unsubscribe.php\\/?site=translucentcomputing.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"805-372-3366\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-09 02:05:04'),(349,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"caceres_cherlin@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Michaelmer\",\"label\":\"First name\"},\"phone\":{\"value\":\"87771992764\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Invest $ 500 once and get passive income from $ 300 to $ 15000 per day every day for many years \\r\\n \\r\\n>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc7HjuG&sa=D&sntz=1&usg=AFQjCNEDG7vlHXIn6j0zk1z9pDSCFsciKw <<<<<<<<<<<<<<\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-09 02:45:01'),(350,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dimafokin199506780tx+1351@inbox.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"GerardGooky\",\"label\":\"First name\"},\"phone\":{\"value\":\"83648624855\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"translucentcomputing.com tyrueoswkdhfbjksdhbdvsddnajkmkxdbfsdjdfadladabfhghgdhsjkd\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-09 12:15:28'),(351,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Estelle\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Andy\",\"label\":\"Last name\"},\"email\":{\"value\":\"estelleandy02@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Estelle sent you 1 nude pic. She is online and very horny now.\\r\\nPlease click here to chat with her.\\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/EstelleAndy\",\"label\":\"Message\"},\"phone\":{\"value\":\"9043558989\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"58b759bd-a2aa-44ac-aa98-585026d746ca\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-11-09 15:33:44'),(352,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zdanpitov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"MichaelWef\",\"label\":\"First name\"},\"phone\":{\"value\":\"85692839158\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"\\u043f\\u043e\\u0440\\u043d\\u043e \\u043a\\u043e\\u043c\\u0438\\u043a\\u0441 \\u0438\\u0437\\u0432\\u0440\\u0430\\u0449\\u0435\\u043d\\u043a\\u0430 https:\\/\\/sexs-photo.com\\/ \\r\\n \\r\\n \\r\\n\\u0441\\u0442\\u0443\\u0434\\u0438\\u0438 \\u043f\\u043e\\u0440\\u043d\\u043e \\u043a\\u043e\\u043c\\u0438\\u043a\\u0441\\u043e\\u0432 https:\\/\\/sexs-photo.com\\/tags\\/krupnyj-plan\\/ \\u0441\\u0435\\u043a\\u0441 \\u043a\\u043e\\u043c\\u0438\\u043a\\u0441 \\u0430\\u043d\\u0443\\u0431\\u0438\\u0441 \\r\\n \\r\\n \\r\\n\\u0441\\u043c\\u043e\\u0442\\u0440\\u0435\\u0442\\u044c \\u0438\\u0442\\u0430\\u043b\\u044c\\u044f\\u043d\\u0441\\u043a\\u0438\\u0435 \\u043f\\u043e\\u0440\\u043d\\u043e \\u0444\\u0438\\u043b\\u044c\\u043c\\u044b<\\/a>\\r\\n\\u0441\\u0435\\u043a\\u0441 \\u043c\\u0430\\u043c\\u0430 \\u0441\\u043f\\u0438\\u0442<\\/a>\\r\\n\\u0431\\u0430\\u0433 \\u0438 \\u043a\\u043e\\u0442 \\u0441\\u0435\\u043a\\u0441<\\/a>\\r\\n\\u0441\\u043a\\u0430\\u0447\\u0430\\u0442\\u044c \\u043f\\u043e\\u0440\\u043d\\u043e \\u043c\\u043e\\u043b\\u043e\\u0434\\u044b\\u0445<\\/a>\\r\\n\\u0433\\u043e\\u043b\\u044b\\u0435 \\u0432\\u043e\\u0435\\u043d\\u043d\\u044b\\u0435 \\u0436\\u0435\\u043d\\u0449\\u0438\\u043d\\u044b<\\/a>\\r\\n\\u0440\\u0443\\u0441\\u0441\\u043a\\u043e\\u0435 \\u043f\\u043e\\u0440\\u043d\\u043e \\u0437\\u0440\\u0435\\u043b\\u044b\\u0445 \\u043f\\u044c\\u044f\\u043d\\u044b\\u0445 \\u0436\\u0435\\u043d\\u0449\\u0438\\u043d<\\/a>\\r\\n\\u0441\\u043c\\u043e\\u0442\\u0440\\u0435\\u0442\\u044c \\u043f\\u043e\\u0440\\u043d\\u043e \\u0431\\u043e\\u043b\\u044c\\u0448\\u0438\\u0435 \\u0447\\u043b\\u0435\\u043d\\u044b \\u043a\\u043e\\u043d\\u0447\\u0430\\u044e\\u0442<\\/a>\\r\\n\\u0434\\u043e\\u043c\\u0430\\u0448\\u043d\\u0435\\u0435 \\u043f\\u043e\\u0440\\u043d\\u043e \\u043e\\u0440\\u0433\\u0430\\u0437\\u043c<\\/a>\\r\\n\\u0430\\u043d\\u0430\\u043b\\u044c\\u043d\\u044b\\u0439 \\u0441\\u0435\\u043a\\u0441 \\u0431\\u0435\\u0441\\u043f\\u043b\\u0430\\u0442\\u043d\\u043e<\\/a>\\r\\n\\u0441\\u043c\\u043e\\u0442\\u0440\\u0435\\u0442\\u044c \\u043f\\u043e\\u0440\\u043d\\u043e \\u0441 \\u043a\\u0440\\u0430\\u0441\\u0438\\u0432\\u044b\\u043c\\u0438 \\u043c\\u0430\\u043c\\u043a\\u0430\\u043c\\u0438<\\/a>\\r\\n 3_85810 \",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-09 21:45:20'),(353,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Jesiica\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Phillips\",\"label\":\"Last name\"},\"email\":{\"value\":\"phillips609@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"In case you didn\'t realize, the word \\\"Telles\\\" on your site is spelled incorrectly. I had similar issues on my website which hurt my credibility until someone pointed it out and I discovered some of the services like SpellHelper.com or SpellingCheck.com which help with these type of issues.\",\"label\":\"Message\"},\"phone\":{\"value\":\"609-482-4528\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"8f70b504-fae6-4c2c-b2a7-f9d34111946c\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-11-10 16:01:52'),(354,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"luiza7832@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Richardmah\",\"label\":\"First name\"},\"phone\":{\"value\":\"81326385821\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PERSONAL INVITATION ONLY FOR translucentcomputing.com \\r\\nOnly by the end of this week you have a chance to get into our team and start making passive income of $ 1300 per day, investing only $ 500 once. \\r\\nSurely someone from your neighbors, colleagues or acquaintances is already in our team and makes passive income on cryptocurrency from $ 1300 to $ 27000 per day and does not say anything to anyone. \\r\\nThere are already 4997 people in our team, there are only 3 free places left. Hurry up! Sign up now, invest $ 500 and click the mouse button to get permanent passive income !!! \\r\\n>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc7PBEn&sa=D&sntz=1&usg=AFQjCNGe6N_TnJtfngvlhur3zZQDVZ7WFA <<<<<<<< \\r\\nPERSONAL INVITATION ONLY FOR translucentcomputing.com\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-11 01:15:29'),(355,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Scott\\r\\n\",\"label\":\"First name\"},\"phone\":{\"value\":\"81862843724\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Howdy \\r\\n \\r\\nI have just checked translucentcomputing.com for the current search visibility and saw that your website could use a boost. \\r\\n \\r\\nWe will enhance your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \\r\\n \\r\\nPlease check our plans here, we offer SEO at cheap rates. \\r\\nhttps:\\/\\/www.hilkom-digital.de\\/cheap-seo-packages\\/ \\r\\n \\r\\nStart improving your sales and leads with us, today! \\r\\n \\r\\nregards \\r\\nMike Scott\\r\\n \\r\\nHilkom Digital Team \\r\\nsupport@hilkom-digital.de\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-11 05:08:36'),(356,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"woodthighgire1988@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"NataFew\",\"label\":\"First name\"},\"phone\":{\"value\":\"87342458329\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\" \\r\\nIf you Want Private Videos, Look this https:\\/\\/localchicks3.com\\/?u=41nkd08&o=8dhpkzk\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-11 13:07:01'),(357,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Wilsoncloum\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Wilsoncloum\",\"label\":\"Last name\"},\"email\":{\"value\":\"swetafiw2bn@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u041f\\u043e\\u0441\\u043b\\u0435 \\u0442\\u043e\\u0433\\u043e, \\u043a\\u0430\\u043a \\u0438\\u0437\\u0431\\u0430\\u0432\\u0438\\u043b\\u0438\\u0441\\u044c \\u043e\\u0442 \\u0441\\u0442\\u0430\\u0440\\u043e\\u0439 \\u043f\\u0430\\u0441\\u0442\\u044b, \\u043c\\u043e\\u0436\\u043d\\u043e \\u043d\\u0430\\u043d\\u043e\\u0441\\u0438\\u0442\\u044c \\u0441\\u0432\\u0435\\u0436\\u0443\\u044e. \\u0412\\u044b\\u0434\\u0430\\u0432\\u043b\\u0438\\u0432\\u0430\\u0435\\u043c \\u043d\\u0435\\u0431\\u043e\\u043b\\u044c\\u0448\\u043e\\u0435 \\u043a\\u043e\\u043b\\u0438\\u0447\\u0435\\u0441\\u0442\\u0432\\u043e \\u0438\\u0437 \\u0442\\u044e\\u0431\\u0438\\u043a\\u0430 \\u043d\\u0430 \\u0441\\u0440\\u0435\\u0434\\u0438\\u043d\\u0443 \\u043a\\u0440\\u0438\\u0441\\u0442\\u0430\\u043b\\u043b\\u0430. \\u0422\\u0435\\u043f\\u0435\\u0440\\u044c \\u043d\\u0435\\u043e\\u0431\\u0445\\u043e\\u0434\\u0438\\u043c\\u043e \\u0440\\u0430\\u0441\\u043f\\u0440\\u0435\\u0434\\u0435\\u043b\\u0438\\u0442\\u044c \\u0435\\u0435 \\u0440\\u0430\\u0432\\u043d\\u043e\\u043c\\u0435\\u0440\\u043d\\u044b\\u043c, \\u0442\\u043e\\u043d\\u043a\\u0438\\u043c \\u0441\\u043b\\u043e\\u0435\\u043c. \\u0414\\u043b\\u044f \\u044d\\u0442\\u043e\\u0433\\u043e \\u043b\\u0443\\u0447\\u0448\\u0435 \\u0432\\u0441\\u0435\\u0433\\u043e \\u0432\\u043e\\u0441\\u043f\\u043e\\u043b\\u044c\\u0437\\u043e\\u0432\\u0430\\u0442\\u044c\\u0441\\u044f \\u043b\\u044e\\u0431\\u043e\\u0439 \\u043f\\u043b\\u0430\\u0441\\u0442\\u0438\\u043a\\u043e\\u0432\\u043e\\u0439 \\u043a\\u0430\\u0440\\u0442\\u043e\\u0447\\u043a\\u043e\\u0439 \\u0438\\u043b\\u0438 \\u0440\\u0443\\u043a\\u0430\\u043c\\u0438, \\u043d\\u043e \\u0432 \\u0434\\u0430\\u043d\\u043d\\u043e\\u043c \\u0441\\u043b\\u0443\\u0447\\u0430\\u0435 \\u0441\\u043b\\u043e\\u0439 \\u0431\\u0443\\u0434\\u0435\\u0442 \\u043d\\u0430\\u043d\\u0435\\u0441\\u0435\\u043d \\u043d\\u0435\\u0440\\u0430\\u0432\\u043d\\u043e\\u043c\\u0435\\u0440\\u043d\\u043e. \\u0415\\u0441\\u043b\\u0438 \\u0442\\u0435\\u0440\\u043c\\u043e\\u043f\\u0430\\u0441\\u0442\\u0430 \\u0432\\u044b\\u0442\\u0435\\u043a\\u043b\\u0430 \\u0437\\u0430 \\u043f\\u0440\\u0435\\u0434\\u0435\\u043b\\u044b \\u043f\\u0440\\u043e\\u0446\\u0435\\u0441\\u0441\\u043e\\u0440\\u0430, \\u0442\\u043e \\u0435\\u0435 \\u043d\\u0443\\u0436\\u043d\\u043e \\u0443\\u0434\\u0430\\u043b\\u0438\\u0442\\u044c. \\u041f\\u043e\\u0441\\u043b\\u0435 \\u044d\\u0442\\u043e\\u0433\\u043e \\u043f\\u0440\\u0438\\u043a\\u0440\\u0443\\u0447\\u0438\\u0432\\u0430\\u0435\\u043c \\u043a\\u0443\\u043b\\u0435\\u0440 \\u0438 \\u0432\\u043e\\u0437\\u0432\\u0440\\u0430\\u0449\\u0430\\u0435\\u043c \\u0432\\u0441\\u0435 \\u043e\\u0431\\u0440\\u0430\\u0442\\u043d\\u043e.\\r\\n\\u0414\\u043b\\u044f \\u043d\\u0430\\u0447\\u0430\\u043b\\u0430 \\u0435\\u0435 \\u043d\\u0443\\u0436\\u043d\\u043e \\u043a\\u0443\\u043f\\u0438\\u0442\\u044c. \\u0411\\u043e\\u043b\\u044c\\u0448\\u0438\\u0445 \\u043e\\u0431\\u044a\\u0435\\u043c\\u043e\\u0432 \\u043d\\u0430\\u043c \\u043d\\u0435 \\u043f\\u043e\\u0442\\u0440\\u0435\\u0431\\u0443\\u0435\\u0442\\u0441\\u044f, \\u0442\\u0430\\u043a \\u043a\\u0430\\u043a \\u0437\\u0430\\u043c\\u0435\\u043d\\u0430 \\u043f\\u0440\\u043e\\u0438\\u0441\\u0445\\u043e\\u0434\\u0438\\u0442 \\u043e\\u0447\\u0435\\u043d\\u044c \\u0440\\u0435\\u0434\\u043a\\u043e. \\u0422\\u0435\\u0440\\u043c\\u043e\\u043f\\u0430\\u0441\\u0442\\u0443 \\u043c\\u043e\\u0436\\u043d\\u043e \\u043a\\u0443\\u043f\\u0438\\u0442\\u044c \\u043f\\u0440\\u0430\\u043a\\u0442\\u0438\\u0447\\u0435\\u0441\\u043a\\u0438 \\u0432 \\u043b\\u044e\\u0431\\u043e\\u043c \\u043c\\u0430\\u0433\\u0430\\u0437\\u0438\\u043d\\u0435 \\u043f\\u043e \\u043f\\u0440\\u043e\\u0434\\u0430\\u0436\\u0430\\u043c \\u041f\\u041a \\u0438\\u043b\\u0438 \\u0437\\u0430\\u043a\\u0430\\u0437\\u0430\\u0442\\u044c \\u0432 \\u0418\\u043d\\u0442\\u0435\\u0440\\u043d\\u0435\\u0442\\u0435.\\r\\n \\u043e\\u0431\\u0437\\u043e\\u0440\\u044b \\u043f\\u043a https:\\/\\/t.me\\/ChanelPC\\/599 \\r\\n \\r\\n\\u0414\\u043b\\u044f \\u0442\\u043e\\u0433\\u043e \\u0447\\u0442\\u043e\\u0431\\u044b \\u0438\\u0437\\u0431\\u0430\\u0432\\u0438\\u0442\\u0441\\u044f \\u043e\\u0442 \\u0441\\u0442\\u0430\\u0440\\u043e\\u0439 \\u0442\\u0435\\u0440\\u043c\\u043e\\u043f\\u0430\\u0441\\u0442\\u044b \\u043c\\u043e\\u0436\\u043d\\u043e \\u043a\\u0443\\u043f\\u0438\\u0442\\u044c \\u0441\\u043f\\u0435\\u0446\\u0438\\u0430\\u043b\\u044c\\u043d\\u044b\\u0435 \\u0441\\u0440\\u0435\\u0434\\u0441\\u0442\\u0432\\u0430, \\u0430 \\u043c\\u043e\\u0436\\u043d\\u043e \\u0432\\u043e\\u0441\\u043f\\u043e\\u043b\\u044c\\u0437\\u043e\\u0432\\u0430\\u0442\\u044c\\u0441\\u044f \\u043e\\u0431\\u044b\\u043a\\u043d\\u043e\\u0432\\u0435\\u043d\\u043d\\u044b\\u043c \\u0441\\u043f\\u0438\\u0440\\u0442\\u043e\\u043c \\u0438 \\u0441\\u0443\\u0445\\u043e\\u0439 \\u0442\\u043a\\u0430\\u043d\\u044c\\u044e. \\u041d\\u0430\\u043d\\u043e\\u0441\\u0438\\u043c \\u043d\\u0435\\u0431\\u043e\\u043b\\u044c\\u0448\\u043e\\u0435 \\u043a\\u043e\\u043b\\u0438\\u0447\\u0435\\u0441\\u0442\\u0432\\u043e \\u0441\\u043f\\u0438\\u0440\\u0442\\u0430 \\u043d\\u0430 \\u043a\\u0440\\u0438\\u0441\\u0442\\u0430\\u043b\\u043b, \\u0436\\u0434\\u0435\\u043c \\u043f\\u043e\\u043a\\u0430 \\u043f\\u0430\\u0441\\u0442\\u0430 \\u0432 \\u043d\\u0435\\u043c \\u0440\\u0430\\u0441\\u0442\\u0432\\u043e\\u0440\\u0438\\u0442\\u0441\\u044f, \\u0438 \\u0430\\u043a\\u043a\\u0443\\u0440\\u0430\\u0442\\u043d\\u043e \\u0432\\u044b\\u0442\\u0438\\u0440\\u0430\\u0435\\u043c \\u0442\\u0440\\u044f\\u043f\\u043e\\u0447\\u043a\\u043e\\u0439.\\r\\n\\u041f\\u043e\\u0441\\u043b\\u0435 \\u0442\\u043e\\u0433\\u043e, \\u043a\\u0430\\u043a \\u0438\\u0437\\u0431\\u0430\\u0432\\u0438\\u043b\\u0438\\u0441\\u044c \\u043e\\u0442 \\u0441\\u0442\\u0430\\u0440\\u043e\\u0439 \\u043f\\u0430\\u0441\\u0442\\u044b, \\u043c\\u043e\\u0436\\u043d\\u043e \\u043d\\u0430\\u043d\\u043e\\u0441\\u0438\\u0442\\u044c \\u0441\\u0432\\u0435\\u0436\\u0443\\u044e. \\u0412\\u044b\\u0434\\u0430\\u0432\\u043b\\u0438\\u0432\\u0430\\u0435\\u043c \\u043d\\u0435\\u0431\\u043e\\u043b\\u044c\\u0448\\u043e\\u0435 \\u043a\\u043e\\u043b\\u0438\\u0447\\u0435\\u0441\\u0442\\u0432\\u043e \\u0438\\u0437 \\u0442\\u044e\\u0431\\u0438\\u043a\\u0430 \\u043d\\u0430 \\u0441\\u0440\\u0435\\u0434\\u0438\\u043d\\u0443 \\u043a\\u0440\\u0438\\u0441\\u0442\\u0430\\u043b\\u043b\\u0430. \\u0422\\u0435\\u043f\\u0435\\u0440\\u044c \\u043d\\u0435\\u043e\\u0431\\u0445\\u043e\\u0434\\u0438\\u043c\\u043e \\u0440\\u0430\\u0441\\u043f\\u0440\\u0435\\u0434\\u0435\\u043b\\u0438\\u0442\\u044c \\u0435\\u0435 \\u0440\\u0430\\u0432\\u043d\\u043e\\u043c\\u0435\\u0440\\u043d\\u044b\\u043c, \\u0442\\u043e\\u043d\\u043a\\u0438\\u043c \\u0441\\u043b\\u043e\\u0435\\u043c. \\u0414\\u043b\\u044f \\u044d\\u0442\\u043e\\u0433\\u043e \\u043b\\u0443\\u0447\\u0448\\u0435 \\u0432\\u0441\\u0435\\u0433\\u043e \\u0432\\u043e\\u0441\\u043f\\u043e\\u043b\\u044c\\u0437\\u043e\\u0432\\u0430\\u0442\\u044c\\u0441\\u044f \\u043b\\u044e\\u0431\\u043e\\u0439 \\u043f\\u043b\\u0430\\u0441\\u0442\\u0438\\u043a\\u043e\\u0432\\u043e\\u0439 \\u043a\\u0430\\u0440\\u0442\\u043e\\u0447\\u043a\\u043e\\u0439 \\u0438\\u043b\\u0438 \\u0440\\u0443\\u043a\\u0430\\u043c\\u0438, \\u043d\\u043e \\u0432 \\u0434\\u0430\\u043d\\u043d\\u043e\\u043c \\u0441\\u043b\\u0443\\u0447\\u0430\\u0435 \\u0441\\u043b\\u043e\\u0439 \\u0431\\u0443\\u0434\\u0435\\u0442 \\u043d\\u0430\\u043d\\u0435\\u0441\\u0435\\u043d \\u043d\\u0435\\u0440\\u0430\\u0432\\u043d\\u043e\\u043c\\u0435\\u0440\\u043d\\u043e. \\u0415\\u0441\\u043b\\u0438 \\u0442\\u0435\\u0440\\u043c\\u043e\\u043f\\u0430\\u0441\\u0442\\u0430 \\u0432\\u044b\\u0442\\u0435\\u043a\\u043b\\u0430 \\u0437\\u0430 \\u043f\\u0440\\u0435\\u0434\\u0435\\u043b\\u044b \\u043f\\u0440\\u043e\\u0446\\u0435\\u0441\\u0441\\u043e\\u0440\\u0430, \\u0442\\u043e \\u0435\\u0435 \\u043d\\u0443\\u0436\\u043d\\u043e \\u0443\\u0434\\u0430\\u043b\\u0438\\u0442\\u044c. \\u041f\\u043e\\u0441\\u043b\\u0435 \\u044d\\u0442\\u043e\\u0433\\u043e \\u043f\\u0440\\u0438\\u043a\\u0440\\u0443\\u0447\\u0438\\u0432\\u0430\\u0435\\u043c \\u043a\\u0443\\u043b\\u0435\\u0440 \\u0438 \\u0432\\u043e\\u0437\\u0432\\u0440\\u0430\\u0449\\u0430\\u0435\\u043c \\u0432\\u0441\\u0435 \\u043e\\u0431\\u0440\\u0430\\u0442\\u043d\\u043e.\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"88787796685\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-11 14:22:25'),(358,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"cec-cep@outlook.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Megan Hounam\",\"label\":\"First name\"},\"phone\":{\"value\":\"5198276468\",\"label\":\"Phone number\"},\"company\":{\"value\":\"Career Education Council\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello,\\r\\n \\r\\nMy name is Megan and I\\u2019m with the Career Education Council. We are a registered charity that provides youth with meaningful opportunities for experiential learning, career exploration and skill development. We also focus on providing opportunities for employers to take an active role in shaping a skilled future workforce. \\r\\n \\r\\nI am reaching out because we are currently working on a project with Apple and local school boards to provide training on coding to youth who are interested in the Information, Communication and Technology sector. \\r\\n \\r\\nDetails for mentorship for this program include:\\r\\n \\r\\nPlacement for the next group is scheduled from Nov 24 to Jan 28, 2022 (I believe we have 2-3 youth in Dufferin).\\r\\nMentors will ideally own a Mac computer.\\r\\nIdeal mentor candidates will have programming expertise and experience in a Mac environment, including knowledge of alternate coding languages.\\r\\nPlacement involves developing a virtual app using SWIFT programming language, which the mentor will provide some guidance on.\\r\\nStudents\\u2019 are also in contact with a mentor (YOU?) to guide learning (1-2\\/per week) - virtually.\\r\\nFinal task involves presenting and pitching the created virtual applications. Mentors are invited to attend.\\r\\nApple will provide a mentorship information session prior to the first session starting.\\r\\nInterested mentors will have the option to assist with additional groups of students in the future (through the Career Education Council)\\r\\nApple is not giving\\/or receiving any funding directly related to this educational and community benefit initiative. \\r\\n \\r\\nFurther to our specific needs for this program, the Career Education Council also offers local teachers access to a database of volunteers who are willing to be contacted to speak virtually or face to face about their education, career experience, insights, etc. \\r\\n\\r\\nI would be happy to provide more information on the project with Apple and what all is involved with becoming a mentor, if you are interested. \\r\\n \\r\\nWe have an upcoming information session about the project on November 11th, at 6PM. Please let me know if you are interested and I would be happy to provide more information and answer any questions you may have.\\r\\n \\r\\nBest regards,\\r\\n \\r\\nMegan Hounam (She\\/Her)\\r\\nBusiness Development Specialist\\r\\nCareer Education Council\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-11 17:42:59'),(359,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Estelle\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Andy\",\"label\":\"Last name\"},\"email\":{\"value\":\"estelleandy02@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Estelle sent you 1 nude pic. She is online and very horny now.\\r\\nPlease click here to chat with her.\\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/EstelleAndy\",\"label\":\"Message\"},\"phone\":{\"value\":\"9043558989\",\"label\":\"Phone number\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"9defb058-42c0-46f0-a143-ad0bc758211f\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-11-11 23:41:34'),(360,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"repk1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"BeverlyNIP\",\"label\":\"First name\"},\"phone\":{\"value\":\"84171423642\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"11-11 - https:\\/\\/bit.ly\\/30hUx0w\",\"label\":\"Message\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"3a11b475-f7bb-4a85-829d-c6672289f521\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-11-12 04:00:43'),(361,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"visie.musical@tele2.nl\",\"label\":\"Email\"},\"firstname\":{\"value\":\"BennieTrend\",\"label\":\"First name\"},\"phone\":{\"value\":\"89427537697\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hey, \\r\\n \\r\\nTrance music for DJ live sets https:\\/\\/psytrance2020.blogspot.com\\/ download music private server. \\r\\n \\r\\nBest Regards, Bennie\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-12 05:56:14'),(362,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Tracy\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Edmunds\",\"label\":\"Last name\"},\"email\":{\"value\":\"traceyedmunds57@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Good Morning,\\r\\n\\r\\nI\'m a digital marketing specialist, and I ran some Search Engine Optimization reporting tools on your website. The results showed there is a lot of additional web traffic we can get you by making sure that you\'re ranking higher in search engines like Google. \\r\\n\\r\\nYou\'re not ranking very well at the moment, but you could be. I can help you increase your website ranking by fixing a few issues found on the back-end of your website and optimizing it for search engine algorithms. This leads to increased rankings, which then leads to getting additional traffic\\/sales. \\r\\n\\r\\nIf you are interested, we can set up a time for a free consultation. If all goes well then hopefully we can work together. I hope to speak with you soon! \\n\\n \\r\\nSincerely,\\r\\nTracy Edmunds\",\"label\":\"Message\"},\"phone\":{\"value\":\"(478) 285-7219\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-12 17:27:37'),(363,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"remi1.bisinotto@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Amandaviave\",\"label\":\"First name\"},\"phone\":{\"value\":\"86412653818\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ecstasy - http:\\/\\/dtgfm.com\\/zgSc\",\"label\":\"Message\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"c439917a-e42a-45c8-94c9-fe0782ce5a7a\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-11-13 21:13:00'),(364,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"nicoletta1s@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Hollyviave\",\"label\":\"First name\"},\"phone\":{\"value\":\"87746216893\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ecstasy - http:\\/\\/dtgfm.com\\/zgSc\",\"label\":\"Message\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"b2b6af68-a34d-4b62-ac66-fc1aa0c99338\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-11-14 00:08:44'),(365,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Eric\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jones\",\"label\":\"Last name\"},\"email\":{\"value\":\"eric.jones.z.mail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Cool website!\\r\\n\\r\\nMy name\\u2019s Eric, and I just found your site - translucentcomputing.com - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you\\u2019re doing is pretty cool.\\r\\n \\r\\nBut if you don\\u2019t mind me asking \\u2013 after someone like me stumbles across translucentcomputing.com, what usually happens?\\r\\n\\r\\nIs your site generating leads for your business? \\r\\n \\r\\nI\\u2019m guessing some, but I also bet you\\u2019d like more\\u2026 studies show that 7 out 10 who land on a site wind up leaving without a trace.\\r\\n\\r\\nNot good.\\r\\n\\r\\nHere\\u2019s a thought \\u2013 what if there was an easy way for every visitor to \\u201craise their hand\\u201d to get a phone call from you INSTANTLY\\u2026 the second they hit your site and said, \\u201ccall me now.\\u201d\\r\\n\\r\\nYou can \\u2013\\r\\n \\r\\nTalk With Web Visitor is a software widget that\\u2019s works on your site, ready to capture any visitor\\u2019s Name, Email address and Phone Number. It lets you know IMMEDIATELY \\u2013 so that you can talk to that lead while they\\u2019re literally looking over your site.\\r\\n\\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\\r\\n\\r\\nTime is money when it comes to connecting with leads \\u2013 the difference between contacting someone within 5 minutes versus 30 minutes later can be huge \\u2013 like 100 times better!\\r\\n\\r\\nThat\\u2019s why we built out our new SMS Text With Lead feature\\u2026 because once you\\u2019ve captured the visitor\\u2019s phone number, you can automatically start a text message (SMS) conversation.\\r\\n \\r\\nThink about the possibilities \\u2013 even if you don\\u2019t close a deal then and there, you can follow up with text messages for new offers, content links, even just \\u201chow you doing?\\u201d notes to build a relationship.\\r\\n\\r\\nWouldn\\u2019t that be cool?\\r\\n\\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\\r\\n\\r\\nYou could be converting up to 100X more leads today!\\r\\nEric\\r\\n\\r\\nPS: Talk With Web Visitor offers a FREE 14 days trial \\u2013 and it even includes International Long Distance Calling. \\r\\nYou have customers waiting to talk with you right now\\u2026 don\\u2019t keep them waiting. \\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to try Talk With Web Visitor now.\\r\\n\\r\\nIf you\'d like to unsubscribe click here http:\\/\\/talkwithwebvisitors.com\\/unsubscribe.aspx?d=translucentcomputing.com\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"555-555-1212\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-14 14:10:35'),(366,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Estelle\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Andy\",\"label\":\"Last name\"},\"email\":{\"value\":\"arlene.macgillivray@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Estelle sent you 1 nude pic. She is online and very horny now.\\r\\nPlease click here to chat with her.\\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/EstelleAndy\",\"label\":\"Message\"},\"phone\":{\"value\":\"9043558989\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-14 16:39:57'),(367,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"c.wolgen@tele2.nl\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Andreafag\",\"label\":\"First name\"},\"phone\":{\"value\":\"85998195497\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello, \\r\\n \\r\\nNew music 2021 https:\\/\\/psytrance2020.blogspot.com \\r\\n \\r\\nBest regards, Andrea\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-16 08:38:34'),(368,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Eric\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jones\",\"label\":\"Last name\"},\"email\":{\"value\":\"eric.jones.z.mail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello, my name\\u2019s Eric and I just ran across your website at translucentcomputing.com...\\r\\n\\r\\nI found it after a quick search, so your SEO\\u2019s working out\\u2026\\r\\n\\r\\nContent looks pretty good\\u2026\\r\\n\\r\\nOne thing\\u2019s missing though\\u2026\\r\\n\\r\\nA QUICK, EASY way to connect with you NOW.\\r\\n\\r\\nBecause studies show that a web lead like me will only hang out a few seconds \\u2013 7 out of 10 disappear almost instantly, Surf Surf Surf\\u2026 then gone forever.\\r\\n\\r\\nI have the solution:\\r\\n\\r\\nTalk With Web Visitor is a software widget that\\u2019s works on your site, ready to capture any visitor\\u2019s Name, Email address and Phone Number. You\\u2019ll know immediately they\\u2019re interested and you can call them directly to TALK with them - literally while they\\u2019re still on the web looking at your site.\\r\\n\\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try\\u2026 it could be huge for your business.\\r\\n\\r\\nPlus, now that you\\u2019ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto\\u2026 which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\\r\\n\\r\\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\\r\\n\\r\\nEverything I\\u2019ve just described is extremely simple to implement, cost-effective, and profitable.\\r\\n \\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\\r\\n\\r\\nEric\\r\\nPS: Talk With Web Visitor offers a FREE 14 days trial \\u2013 and it even includes International Long Distance Calling. \\r\\nYou have customers waiting to talk with you right now\\u2026 don\\u2019t keep them waiting. \\r\\nCLICK HERE https:\\/\\/talkwithwebvisitors.com to try Talk With Web Visitor now.\\r\\n\\r\\nIf you\'d like to unsubscribe click here http:\\/\\/talkwithwebvisitors.com\\/unsubscribe.aspx?d=translucentcomputing.com\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"555-555-1212\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-16 17:05:39'),(369,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"honda_cr125_chris@yahoo.com.au\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Kennethkatly\",\"label\":\"First name\"},\"phone\":{\"value\":\"85944197166\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Quit your job and get passive income from $ 5996 in a day >>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc7Wvjo&sa=D&07=72&usg=AFQjCNHj_a66ufJc5MfSABppuo4GGGxh6w <<<<<<<<<<<\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-16 22:27:13'),(370,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Allen\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Luo\",\"label\":\"Last name\"},\"email\":{\"value\":\"ellsworth.ryan@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi There\\r\\n\\r\\nThis is Allen from Nanchang GSY Technology Co., ltd, We are a reputational supplier of FFP2 face masks, isolation gowns, protection clothes, covid test kit and other Covid-19 products. If you have an interest in our devices, please don\'t wait to mail us!\\r\\n\\r\\nBest Regards !\\r\\nAllen - Sales\\r\\nNanchang GSY Technology Co.,Ltd\\r\\nWhatsapp:+86-13418511019\\r\\nMail: allen@ncgsy.com\\r\\nHomepage: www.ncgsy.com\\r\\nAdd:302, Building D, Ziyang Avenue, High-Tech Development District, Nanchang City, China\",\"label\":\"Message\"},\"phone\":{\"value\":\"0911-4070439\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-17 03:47:56'),(371,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Dennis\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Perpetua\",\"label\":\"Last name\"},\"email\":{\"value\":\"dennis@qualitybloggeroutreach.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello, \\r\\n\\r\\nThis is Dennis Perpetua from QGP.com,\\r\\n\\r\\nWe\\u2019re interested in advertising on your blog, \\r\\n\\r\\nIs this something you\\u2019d be willing to discuss? \\r\\n\\r\\n\\r\\nDennis Perpetua\\r\\nOutreach Manager\\r\\nwww.qgp.com\\r\\n\\r\\n\\r\\n\\r\\nP.S.: If you don\'t want me to contact you again, just let me know.\",\"label\":\"Message\"},\"phone\":{\"value\":\"833-288-8913\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-17 10:28:30'),(372,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"christoph.fischer@osar.be\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EddieDix\",\"label\":\"First name\"},\"phone\":{\"value\":\"83649821755\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Quit your job and get passive income from $ 5698 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc7Wvjo&sa=D&58=06&usg=AFQjCNHj_a66ufJc5MfSABppuo4GGGxh6w <<<<<<<<<<<<<<<<<<<<<<<<\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-17 18:31:42'),(373,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"1dima11122331@aon.at\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Kennethkatly\",\"label\":\"First name\"},\"phone\":{\"value\":\"87442982664\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"A ready-made system for generating passive income from $ 7789 in a day >>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc7Wvjo&sa=D&10=09&usg=AFQjCNHj_a66ufJc5MfSABppuo4GGGxh6w <<<<<<<<<<<\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-17 19:38:39'),(374,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"davidholman200@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"David Holman\",\"label\":\"First name\"},\"phone\":{\"value\":\"84337861775\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"We are a Team of IT Experts specialized in the production of Real and authentic Documents such as Passport, Driving License , Diploma Certificates, PhD\'s, \\r\\nIELTS Certificate, Bachelor degrees, NCLEX Certificate, MBA, ID Cards, SS Cards, Associate Certificate, University Certificates, Green Cards, Death Certificate, Master Degree, Working Permits, Visa\'s etc. Contact us on WhatsApp for more information +49 1590 2969018. or Email us at... documentsservicesexperts@gmail.com\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-19 03:12:59'),(375,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Mathews\\r\\n\",\"label\":\"First name\"},\"phone\":{\"value\":\"89347452833\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello \\r\\n \\r\\nWe all know the importance that dofollow link have on any website`s ranks. \\r\\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \\r\\n \\r\\nBuy quality dofollow links from us, that will impact your ranks in a positive way \\r\\nhttps:\\/\\/www.digital-x-press.com\\/product\\/150-dofollow-backlinks\\/ \\r\\n \\r\\nBest regards \\r\\nMike Mathews\\r\\n \\r\\nsupport@digital-x-press.com\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-19 12:45:01'),(376,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Kathaleen\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Baehr\",\"label\":\"Last name\"},\"email\":{\"value\":\"virgot314@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi there,\\r\\n\\r\\nTurnkey Chat Software & Trained Live Chat Agents 24\\/7 for Your Industry. Request a Demo! Boost Your Leads, Engage Your Prospects & Take Your Customer Service to a New Level. Easy Setup. App for iOs & Android. Click here: https:\\/\\/crotonz.com\\/livechat\\/\\r\\n\\r\\nAffordable & Professional Web Development - Wordpress\\/ Woocommerce\\/ Shopify and Custom Web development. Highly Experienced and Certified. Know More: https:\\/\\/crotonz.com\\/website-design-virtual-assistant.php\\r\\n\\r\\nKind Regards,\\r\\nSam Miller\\r\\ninfo@crotonz.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"05833 50 27 84\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-19 14:15:59'),(377,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ellen.stock@sympatico.ca\",\"label\":\"Email\"},\"firstname\":{\"value\":\"ThomasSer\",\"label\":\"First name\"},\"phone\":{\"value\":\"84573837349\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"A few weeks ago, Elon Musk, in an interview, accidentally blabbed about a cryptocurrency trading robot that brings him passive income from $ 13,000 to $ 135,000 per day and asked to remove this moment from the video after filming. \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8aMsu&sa=D&06=74&usg=AFQjCNGiMsVvcKCjtUl1s1o9fbbu24TnPA \\r\\nBut the operator who filmed all this remembered the name of the trading robot and tried to make money. \\r\\nOn the same day, he made a deposit of $ 500 and launched a trading robot and after 3 hours his account had $ 3750 and a week later $ 563700. \\r\\nOn the robot, you earn in the currency of your country, Europe - EUR, Australia - AUD, Canada - CAD, Sweden - SEC and so on. \\r\\nHurry up to register as after the influx of new users, the administrators decided to stop registering new users from next week. \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8aMsu&sa=D&10=73&usg=AFQjCNGiMsVvcKCjtUl1s1o9fbbu24TnPA\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-19 17:28:23'),(378,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Karen\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Quinn\",\"label\":\"Last name\"},\"email\":{\"value\":\"quinnkaren280@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi,\\r\\n\\r\\nI wanted to see if you are interested in getting your site to the top of the search engines. I am a search engine optimizer and very good at what I do. Getting to the top of the search engines for your keywords is the very best thing you can do to increase sales dramatically. \\r\\n\\r\\nLet me know I\'d love to help. \\n\\nBest Regards,\\r\\nKaren Quinn\",\"label\":\"Message\"},\"phone\":{\"value\":\"(727) 314-5328\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-20 07:58:43'),(379,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Eric\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jones\",\"label\":\"Last name\"},\"email\":{\"value\":\"eric.jones.z.mail@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hey there, I just found your site, quick question\\u2026\\r\\n\\r\\nMy name\\u2019s Eric, I found translucentcomputing.com after doing a quick search \\u2013 you showed up near the top of the rankings, so whatever you\\u2019re doing for SEO, looks like it\\u2019s working well.\\r\\n\\r\\nSo here\\u2019s my question \\u2013 what happens AFTER someone lands on your site? Anything?\\r\\n\\r\\nResearch tells us at least 70% of the people who find your site, after a quick once-over, they disappear\\u2026 forever.\\r\\n\\r\\nThat means that all the work and effort you put into getting them to show up, goes down the tubes.\\r\\n\\r\\nWhy would you want all that good work \\u2013 and the great site you\\u2019ve built \\u2013 go to waste?\\r\\n\\r\\nBecause the odds are they\\u2019ll just skip over calling or even grabbing their phone, leaving you high and dry.\\r\\n\\r\\nBut here\\u2019s a thought\\u2026 what if you could make it super-simple for someone to raise their hand, say, \\u201cokay, let\\u2019s talk\\u201d without requiring them to even pull their cell phone from their pocket?\\r\\n \\r\\nYou can \\u2013 thanks to revolutionary new software that can literally make that first call happen NOW.\\r\\n\\r\\nTalk With Web Traffic is a software widget that sits on your site, ready and waiting to capture any visitor\\u2019s Name, Email address and Phone Number. It lets you know IMMEDIATELY \\u2013 so that you can talk to that lead while they\\u2019re still there at your site.\\r\\n \\r\\nYou know, strike when the iron\\u2019s hot!\\r\\n\\r\\nCLICK HERE https:\\/\\/talkwithwebtraffic.com to try out a Live Demo with Talk With Web Traffic now to see exactly how it works.\\r\\n\\r\\nWhen targeting leads, you HAVE to act fast \\u2013 the difference between contacting someone within 5 minutes versus 30 minutes later is huge \\u2013 like 100 times better!\\r\\n\\r\\nThat\\u2019s why you should check out our new SMS Text With Lead feature as well\\u2026 once you\\u2019ve captured the phone number of the website visitor, you can automatically kick off a text message (SMS) conversation with them. \\r\\n \\r\\nImagine how powerful this could be \\u2013 even if they don\\u2019t take you up on your offer immediately, you can stay in touch with them using text messages to make new offers, provide links to great content, and build your credibility.\\r\\n\\r\\nJust this alone could be a game changer to make your website even more effective.\\r\\n\\r\\nStrike when the iron\\u2019s hot!\\r\\n\\r\\nCLICK HERE https:\\/\\/talkwithwebtraffic.com to learn more about everything Talk With Web Traffic can do for your business \\u2013 you\\u2019ll be amazed.\\r\\n\\r\\nThanks and keep up the great work!\\r\\n\\r\\nEric\\r\\nPS: Talk With Web Traffic offers a FREE 14 days trial \\u2013 you could be converting up to 100x more leads immediately! \\r\\nIt even includes International Long Distance Calling. \\r\\nStop wasting money chasing eyeballs that don\\u2019t turn into paying customers. \\r\\nCLICK HERE https:\\/\\/talkwithwebtraffic.com to try Talk With Web Traffic now.\\r\\n\\r\\nIf you\'d like to unsubscribe click here http:\\/\\/talkwithwebtraffic.com\\/unsubscribe.aspx?d=translucentcomputing.com\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"555-555-1212\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-20 15:14:02'),(380,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Sophia\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Scott\",\"label\":\"Last name\"},\"email\":{\"value\":\"roemer.eugenia@msn.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Sophia sent you 2 messages yesterday. She is online now.\\r\\nClick the link below to view the message and reply to her.\\r\\n\\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/SophiaScott\\/\",\"label\":\"Message\"},\"phone\":{\"value\":\"9043558989\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-20 22:09:16'),(381,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rwnixon@nbnet.nb.ca\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EddieDix\",\"label\":\"First name\"},\"phone\":{\"value\":\"83993795445\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Register, press one button and get passive income from $ 6869 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8efyS&sa=D&40=14&usg=AFQjCNE19L0R90htG4gSNamEaeldZ-6c8g <<<<<<<<<<<<<<<<<<<<<<<<\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-22 08:45:57'),(382,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"maciek2120vpv@wp.pl\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EddieDix\",\"label\":\"First name\"},\"phone\":{\"value\":\"82596382768\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Register, press one button and get passive income more $ 6867 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8h3ls&sa=D&14=96&usg=AFQjCNHU-F0QOtn7o9CQDrCg8wi_ek2Ntw <<<<<<<<<<<<<<<<<<<<<<<<\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-23 22:08:41'),(383,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Macduff\\r\\n\",\"label\":\"First name\"},\"phone\":{\"value\":\"87488614661\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi there \\r\\n \\r\\nDo you want a quick boost in ranks and sales for your website? \\r\\nHaving a high DA score, always helps \\r\\n \\r\\nGet your translucentcomputing.com to have a DA between 50 to 60 points in Moz with us today and reap the benefits of such a great feat. \\r\\n \\r\\nSee our offers here: \\r\\nhttps:\\/\\/www.strictlydigital.net\\/product\\/moz-da50-seo-plan\\/ \\r\\n \\r\\nOn SALE: \\r\\nhttps:\\/\\/www.strictlydigital.net\\/product\\/ahrefs-dr60\\/ \\r\\n \\r\\n \\r\\nThank you \\r\\nMike Macduff\\r\\n\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-24 02:22:40'),(384,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Sunny\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Wong\",\"label\":\"Last name\"},\"email\":{\"value\":\"sunny@teledact.ca\",\"label\":\"Email\"},\"message\":{\"value\":\"Request for quote for mobile app development. Please email me and I will send you the preliminary requirements. thanks \",\"label\":\"Message\"},\"phone\":{\"value\":\"6478760578\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-24 22:41:20'),(385,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"coppens4@bigpond.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"DonaldGox\",\"label\":\"First name\"},\"phone\":{\"value\":\"87835924461\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"According to Binance, this is the best trading robot in the world. \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8kz55&sa=D&89=13&usg=AFQjCNEYo6mWXSP9gUinA8sLtVU0jLXlbQ \\r\\nBecause he is able to make 200% profit every day. \\r\\nFor example, you replenished your brokerage account with $ 500 (EUR, GBP, etc.) and he earned you from $ 1000 in net income within a day. Binance recommends using this particular trading robot for automated trading. \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8kz55&sa=D&59=89&usg=AFQjCNEYo6mWXSP9gUinA8sLtVU0jLXlbQ\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-25 07:18:01'),(386,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Ranker\",\"label\":\"First name\"},\"lastname\":{\"value\":\"SEO\",\"label\":\"Last name\"},\"email\":{\"value\":\"flora.annette@hotmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello, \\r\\n\\r\\nGreetings from Ranker SEO.\\r\\n\\r\\nAre you looking for a genuine SEO service to rank your website top on Google? Are you cheated by fake SEO companies? \\r\\n\\r\\nYou have found an affordable legitimate SEO agency to rank your website.\\r\\n\\r\\nWe have ranked 100s of websites such as blogs, shopify stores, ecommerce websites, adult websites, saas websites, etc. You can reach more customers by utilizing our backlinks.\\r\\n\\r\\nFor real proof, you can visit our website and check out. Contact us for more details.\\r\\n\\r\\nOur Skype ID: support@ranker.one\\r\\nOur Website: https:\\/\\/www.ranker.one\\r\\n\\r\\nThanks & Regards\\r\\nRanker SEO\",\"label\":\"Message\"},\"phone\":{\"value\":\"06-91497290\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-25 15:53:47'),(387,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rfzuluf@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Roberts Zuluf\",\"label\":\"First name\"},\"phone\":{\"value\":\"83123339693\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi \\r\\nHow are you? I wanted to reach out to you and verify that email was a good way to reach you or We can discuss this via the telephone,WhatsApp only. +90 555 140 8097 or contact@frzuluf.com \\r\\nI count in your honor for a quick response for a good deal. \\r\\nRegards, \\r\\nRoberts Zuluf\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-25 17:38:22'),(388,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Karen\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Quinn\",\"label\":\"Last name\"},\"email\":{\"value\":\"quinnkaren280@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi,\\r\\n\\r\\nI wanted to see if you are interested in getting your site to the top of the search engines. I am a search engine optimizer and very good at what I do. Getting to the top of the search engines for your keywords is the very best thing you can do to increase sales dramatically. \\r\\n\\r\\nLet me know I\'d love to help. \\n\\nBest Regards,\\r\\nKaren Quinn\",\"label\":\"Message\"},\"phone\":{\"value\":\"(727) 314-5328\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-26 03:13:52'),(389,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"schallerlukas@t-online.de\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Claudeflelp\",\"label\":\"First name\"},\"phone\":{\"value\":\"84234975717\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"According to Binance, this is the best trading robot in the world %_)( \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&91=58&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ \\r\\nBecause he is able to make 200% profit every day :+?) \\r\\nFor example, you replenished your brokerage account with $ 500 (EUR, GBP, etc.) and he earned you from $ 1000 in net income within a day \\\"^!$ \\r\\nBinance recommends using this particular trading robot for automated trading )#?$ \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&23=86&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-27 18:11:10'),(390,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Zoe\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Ramzy\",\"label\":\"Last name\"},\"email\":{\"value\":\"zoeramzy06@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hye,\\r\\n\\r\\nWhat\'s going on? \\r\\n\\r\\nI will keep it simple and concise. I need to contribute a stunning guest post to your site. For that we simply need to go with 3 Easy Steps: \\r\\n\\r\\n1. I will send you some new topics that will be tech-Oriented and in the news too.\\r\\n2. You\'ll need to pick one out of those \\r\\n3. I will then, at that point, send an excellent Well written article on that picked Topic for you to publish on your site with one do-follow connection to my site. \\r\\n\\r\\nTell me how this sounds to you? Shall we begin with step 1? \\r\\n\\r\\nBest,\\r\\n\\r\\nZoe Ramzy\",\"label\":\"Message\"},\"phone\":{\"value\":\"02183 43 01 80\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-27 22:44:54'),(391,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"desmurs.richard@epost.de\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Stephenflies\",\"label\":\"First name\"},\"phone\":{\"value\":\"88744265242\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"According to Binance, this is the best trading robot in the world \\u2116@?$ \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&76=19&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ \\r\\nBecause he is able to make 200% profit every day *)*( \\r\\nFor example, you replenished your brokerage account with $ 500 (EUR, GBP, etc.) and he earned you from $ 1000 in net income within a day ))\\u2116* \\r\\nBinance recommends using this particular trading robot for automated trading ;_!= \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&66=91&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-28 02:29:21'),(392,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"e.serov@excoymava.bizml.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"AndreyVlasovse\",\"label\":\"First name\"},\"phone\":{\"value\":\"89775360836\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"\\u041f\\u0440\\u0435\\u0434\\u043b\\u0430\\u0433\\u0430\\u0435\\u043c \\u043f\\u0440\\u043e\\u0444\\u0435\\u0441\\u0441\\u0438\\u043e\\u043d\\u0430\\u043b\\u044c\\u043d\\u0443\\u044e \\u0443\\u0441\\u043b\\u0443\\u0433\\u0443: \\r\\n\\\"\\u041b\\u0438\\u043a\\u0432\\u0438\\u0434\\u0430\\u0446\\u0438\\u044f \\u0438\\u043d\\u0442\\u0435\\u0440\\u043d\\u0435\\u0442-\\u0440\\u0435\\u0441\\u0443\\u0440\\u0441\\u043e\\u0432 \\u0432\\u0430\\u0448\\u0435\\u0433\\u043e \\u043a\\u043e\\u043d\\u043a\\u0443\\u0440\\u0435\\u043d\\u0442\\u0430!\\\" \\r\\n\\u041a\\u0430\\u043a\\u0438\\u043c \\u043c\\u0435\\u0442\\u043e\\u0434\\u043e\\u043c \\u044d\\u0442\\u043e \\u043e\\u0441\\u0443\\u0449\\u0435\\u0441\\u0442\\u0432\\u043b\\u044f\\u044e\\u0442 \\u043d\\u0430\\u0448\\u0438 \\u0441\\u043f\\u0435\\u0446\\u0438\\u0430\\u043b\\u0438\\u0441\\u0442\\u044b?! \\r\\n- \\u041d\\u0430\\u0448 \\u043e\\u043f\\u044b\\u0442 - \\u0434\\u0435\\u0441\\u044f\\u0442\\u044c \\u043b\\u0435\\u0442. \\r\\n- \\u041f\\u0440\\u0438\\u043c\\u0435\\u043d\\u044f\\u0435\\u043c \\u0443\\u043d\\u0438\\u043a\\u0430\\u043b\\u044c\\u043d\\u044b\\u0435 \\u043c\\u0435\\u0442\\u043e\\u0434\\u044b. \\r\\n- \\u041d\\u0430\\u0440\\u0430\\u0449\\u0438\\u0432\\u0430\\u043d\\u0438\\u0435 \\u0441\\u0441\\u044b\\u043b\\u043e\\u0447\\u043d\\u043e\\u0439 \\u043c\\u0430\\u0441\\u0441\\u044b \\u043f\\u0440\\u0438 \\u043f\\u043e\\u043c\\u043e\\u0449\\u0438 \\u043f\\u043e\\u0440\\u043d\\u043e \\u0438 \\u0432\\u0438\\u0440\\u0443\\u0441\\u043d\\u044b\\u0445 \\u0441\\u0441\\u044b\\u043b\\u043e\\u043a. \\r\\n- \\u041f\\u043e\\u0438\\u0441\\u043a\\u043e\\u0432\\u0438\\u043a\\u0438 \\u043c\\u043e\\u043b\\u043d\\u0438\\u0435\\u043d\\u043e\\u0441\\u043d\\u043e \\u0440\\u0435\\u0430\\u0433\\u0438\\u0440\\u0443\\u044e\\u0442 \\u043d\\u0430 \\u043d\\u0430\\u0448\\u0438 \\u0438\\u0441\\u043f\\u043e\\u043b\\u044c\\u0437\\u0443\\u0435\\u043c\\u044b\\u0435 \\u0431\\u0430\\u0437\\u044b. \\r\\n- \\u0412\\u0441\\u0435 \\u0440\\u0430\\u0437\\u043c\\u0435\\u0449\\u0435\\u043d\\u043d\\u044b\\u0435 \\u0442\\u0435\\u043a\\u0441\\u0442\\u044b \\u0441 \\u0432\\u0435\\u0431-\\u0441\\u0430\\u0439\\u0442\\u0430 \\u0441\\u043f\\u0430\\u043c\\u044f\\u0442\\u0441\\u044f, \\u043e\\u043d\\u0438 \\u0441\\u0442\\u0430\\u043d\\u043e\\u0432\\u044f\\u0442\\u0441\\u044f \\u043d\\u0435\\u0443\\u043d\\u0438\\u043a\\u0430\\u043b\\u044c\\u043d\\u044b\\u043c\\u0438. \\r\\n- \\u0423 \\u043d\\u0430\\u0441 \\u043e\\u0447\\u0435\\u043d\\u044c \\u0441\\u0435\\u0440\\u044c\\u0435\\u0437\\u043d\\u044b\\u0435 \\u0432\\u043e\\u0437\\u043c\\u043e\\u0436\\u043d\\u043e\\u0441\\u0442\\u0438 \\u0438 \\u043c\\u043d\\u043e\\u0433\\u043e\\u043b\\u0435\\u0442\\u043d\\u0438\\u0439 \\u043f\\u0440\\u0430\\u043a\\u0442\\u0438\\u0447\\u0435\\u0441\\u043a\\u0438\\u0439 \\u043e\\u043f\\u044b\\u0442 \\u0432 \\u0434\\u0430\\u043d\\u043d\\u043e\\u043c \\u043d\\u0430\\u043f\\u0440\\u0430\\u0432\\u043b\\u0435\\u043d\\u0438\\u0438. \\r\\n \\r\\n\\u0421\\u0442\\u043e\\u0438\\u043c\\u043e\\u0441\\u0442\\u044c 6000py. \\r\\n\\u041f\\u043e\\u043b\\u043d\\u0430\\u044f \\u043e\\u0442\\u0447\\u0451\\u0442\\u043d\\u043e\\u0441\\u0442\\u044c. \\r\\n\\u041e\\u043f\\u043b\\u0430\\u0442\\u0430: \\u041a\\u0438\\u0432\\u0438, \\u042f\\u043d\\u0434\\u0435\\u043a\\u0441.\\u0414\\u0435\\u043d\\u044c\\u0433\\u0438, Bitcoin, Visa, MasterCard... \\r\\n \\r\\nTelgrm: @xrumers \\r\\nSkype: xrumer.pro \\r\\nWhatsApp: +7(977)536-08-36 \\r\\n\\u043c\\u0430\\u0438\\u043b: support@xrumer.ee \\r\\n \\r\\n\\u0422\\u043e\\u043b\\u044c\\u043a\\u043e \\u044d\\u0442\\u0438! \\r\\n\\u0410 \\u0442\\u0410\\u043a\\u043e\\u0436 \\u0420\\u0430\\u0431\\u043e\\u0442\\u0430\\u0435\\u043c \\u0441\\u043e \\u0421\\u0442\\u0443\\u0434\\u0438\\u044f\\u043c\\u0438!\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-28 10:59:01'),(393,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mm.a.rkizde.sa.n.d@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"DorothyBinny\",\"label\":\"First name\"},\"phone\":{\"value\":\"82456816378\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"I precisely know, what is it \\u2014 an error. \\r\\n \\r\\nnotoriety \\r\\nperfect girl categories<\\/a> \\r\\n@@!sdg453sn!\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-29 00:28:59'),(394,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"moeller-marcel@web.de\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Edgarrof\",\"label\":\"First name\"},\"phone\":{\"value\":\"88529745917\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Blockchain recommends to all people who are interested in additional permanent passive income of $ 5000 per day with a cryptocurrency trading robot. \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&99=24&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ \\r\\nA trading robot is capable of making from 750% to 15000% profit per day \\\")\\u2116$ \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&83=77&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ \\r\\nThis success was achieved thanks to the advanced developments in the field of artificial intelligence )=:$ \\r\\nTens of thousands of people around the world are already using this trading robot, so start you !^)@ \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&04=42&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ \\r\\nTo start, you need to do just three things: \\r\\n1. Make a deposit to your brokerage account from $ 500 \\u2116*;% \\r\\n2. Launch the trading robot (*%( \\r\\n3. Receive passive income from $ 5000 per day *$\\\"$ \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&13=61&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-30 07:54:02'),(395,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"steffen.fischer.11@t-online.de\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Shawnnog\",\"label\":\"First name\"},\"phone\":{\"value\":\"83213838376\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Blockchain recommends to all people who are interested in additional permanent passive income of $ 5000 per day with a cryptocurrency trading robot. \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&17=86&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ \\r\\nA trading robot is capable of making from 750% to 15000% profit per day %@?& \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&60=45&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ \\r\\nThis success was achieved thanks to the advanced developments in the field of artificial intelligence \\u2116*\\u2116$ \\r\\nTens of thousands of people around the world are already using this trading robot, so start you :(*) \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&62=16&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ \\r\\nTo start, you need to do just three things: \\r\\n1. Make a deposit to your brokerage account from $ 500 )&\\u2116# \\r\\n2. Launch the trading robot :^\\\"( \\r\\n3. Receive passive income from $ 5000 per day ?&%^ \\r\\nhttps:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&60=74&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-11-30 20:23:47'),(396,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Jerome\\r\\n\",\"label\":\"First name\"},\"phone\":{\"value\":\"85157533353\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello \\r\\n \\r\\nWe will improve your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \\r\\n \\r\\nPlease check our plans here, we offer Local SEO at cheap rates. \\r\\nhttps:\\/\\/speed-seo.net\\/product\\/local-seo-package\\/ \\r\\n \\r\\nNEW: \\r\\nhttps:\\/\\/www.speed-seo.net\\/product\\/zip-codes-gmaps-citations\\/ \\r\\n \\r\\nregards \\r\\nMike Jerome\\r\\n \\r\\nSpeed SEO Digital Agency\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-01 06:58:31'),(397,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"petrischeffden@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"PornoGoc\",\"label\":\"First name\"},\"phone\":{\"value\":\"84974567764\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"\\u0416\\u0433\\u0443\\u0447\\u0435\\u0435 \\u0441\\u0435\\u043a\\u0441 \\u0437\\u0430\\u043f\\u0438\\u0441\\u044c \\u0434\\u043b\\u044f \\u0432\\u0437\\u0440\\u043e\\u0441\\u043b\\u044b\\u0445 \\u043f\\u0440\\u043e\\u0441\\u043c\\u043e\\u0442\\u0440 \\u043d\\u0430 https:\\/\\/porno-go.website \\u0432 \\u0432\\u044b\\u0441\\u043e\\u043a\\u043e\\u043c \\u043a\\u0430\\u0447\\u0435\\u0441\\u0442\\u0432\\u0435 \\r\\n\\u041a\\u043b\\u0430\\u0441\\u0441\\u043d\\u043e\\u0435 \\u0441\\u0435\\u043a\\u0441 \\u0441\\u044a\\u0435\\u043c\\u043a\\u0430 \\u0431\\u0435\\u0437 \\u0440\\u0435\\u0433\\u0438\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u0438 \\u043f\\u0440\\u043e\\u0441\\u043c\\u043e\\u0442\\u0440 \\u043d\\u0430 https:\\/\\/porno-go.ru \\u0432 \\u0432\\u044b\\u0441\\u043e\\u043a\\u043e\\u043c \\u043a\\u0430\\u0447\\u0435\\u0441\\u0442\\u0432\\u0435 \\r\\n\\u0421\\u0435\\u043a\\u0441\\u0443\\u0430\\u043b\\u044c\\u043d\\u043e\\u0435 \\u0441\\u0435\\u043a\\u0441 \\u0437\\u0430\\u043f\\u0438\\u0441\\u044c \\u0431\\u0435\\u0441\\u043f\\u043b\\u0430\\u0442\\u043d\\u043e \\u0441\\u043c\\u043e\\u0442\\u0440\\u0435\\u0442\\u044c \\u043d\\u0430 https:\\/\\/porno-go.top \\u0432 \\u0432\\u044b\\u0441\\u043e\\u043a\\u043e\\u043c \\u043a\\u0430\\u0447\\u0435\\u0441\\u0442\\u0432\\u0435 \\r\\n\\u041d\\u0435\\u0436\\u043d\\u043e\\u0435 \\u0441\\u0435\\u043a\\u0441 \\u0432\\u0438\\u0434\\u0435\\u043e \\u0431\\u0435\\u0441\\u043f\\u043b\\u0430\\u0442\\u043d\\u043e \\u0441\\u043c\\u043e\\u0442\\u0440\\u0435\\u0442\\u044c \\u043d\\u0430 https:\\/\\/porno-go.pro \\u0432 HD1080 \\r\\n\\u0428\\u0438\\u043a\\u0430\\u0440\\u043d\\u043e\\u0435 \\u0441\\u0435\\u043a\\u0441 \\u0444\\u0438\\u043b\\u044c\\u043c\\u044b \\u0434\\u043b\\u044f \\u0432\\u0441\\u0435\\u0445 \\u043e\\u043d\\u043b\\u0430\\u0439\\u043d \\u043d\\u0430 https:\\/\\/porno-go.mobi \\u0432 HD1080 \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n.\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-01 07:50:02'),(398,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Sophia\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Scott\",\"label\":\"Last name\"},\"email\":{\"value\":\"shippee.marcy@msn.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Sophia sent you 2 messages yesterday. She is online now.\\r\\nClick the link below to view the message and reply to her.\\r\\n\\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/SophiaScott\\/\",\"label\":\"Message\"},\"phone\":{\"value\":\"9043558989\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-01 11:43:44'),(399,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"repk3@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Hollyhab\",\"label\":\"First name\"},\"phone\":{\"value\":\"83463349165\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Your fantasies come true: https:\\/\\/2track.info\\/aSsQ\",\"label\":\"Message\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"5e9e0756-acd3-410b-bfe5-7922d7a49990\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-12-01 22:17:15'),(400,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"football@newpochta.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Newswady\",\"label\":\"First name\"},\"phone\":{\"value\":\"88883625455\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"\\u0434\\u0440\\u0443\\u0433\\u043e \\u0441 \\u043e\\u0442\\u0441\\u0442\\u044a\\u043f\\u043a\\u0430\\u043a\\u043e\\u043b\\u0438\\u0435\\u0442\\u0430-\\u043d\\u0430 \\u0432\\u0435\\u0440\\u0438\\u0433\\u0430\\u0442\\u0430 \\u0437\\u0430 \\u0434\\u043e\\u0441\\u0442\\u0430\\u0432\\u043a\\u0438\\u043a\\u0443\\u043f\\u0443\\u0432\\u0430 \\u0441\\u0442\\u0430\\u0442\\u0443\\u0435\\u0442\\u043a\\u0438 \\u0438 \\u043c\\u0438\\u043d\\u0438\\u0430\\u0442\\u044e\\u0440\\u0438\\u0430\\u0432\\u0442\\u043e\\u043c\\u043e\\u0431\\u0438\\u043b\\u043d\\u0438 \\u0441\\u0442\\u0438\\u043a\\u0435\\u0440\\u0438 \\u0435\\u0432\\u0442\\u0438\\u043d\\u0438\\u043c\\u044a\\u043d\\u0438\\u0441\\u0442\\u0430 \\u0434\\u0440\\u0443\\u0433\\u043e \\u0434\\u0430 \\u043f\\u043e\\u0440\\u044a\\u0447\\u0430\\u043c<\\/a>\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-01 23:09:47'),(401,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ewdokiya4fwot@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Martinamulp\",\"label\":\"First name\"},\"phone\":{\"value\":\"89663821967\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\" \\r\\n\\u0422\\u0435\\u043b\\u0435\\u0433\\u0440\\u0430\\u043c \\u043a\\u0430\\u043d\\u0430\\u043b \\u043e \\u0430\\u0432\\u0442\\u043e https:\\/\\/t.me\\/Avto_Digest\\/1026 \",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-02 01:04:48'),(402,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alinka_cscla@orange.fr\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EddieDix\",\"label\":\"First name\"},\"phone\":{\"value\":\"89519448367\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"You\'re going to miss out >>>>>>>>>>>>>>>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&00=20&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ <<<<<<<<<<<<<<<<<<<<<<<<\",\"label\":\"Message\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-02 16:21:01'),(403,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Hilda\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Sutton\",\"label\":\"Last name\"},\"email\":{\"value\":\"HildaSutton982@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi there! \\r\\n\\r\\nI am wondering if your company needs help or interested in starting an ad campaign or improving the performance of an existing campaign on platforms like Google Ads, Bing Ads, Facebook Ads, and more by using PPC (Per-Per-Click)? I am an expert in online advertising, and I will provide and will give you guaranteed traffic to your site that can make a huge impact on sales. \\r\\n\\r\\nI look forward to hearing from you.\\n\\nSincerely,\\r\\nHilda Sutton\",\"label\":\"Message\"},\"phone\":{\"value\":\"9662466177\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-02 20:51:59'),(404,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"YourWebCreative.com\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Web Design Company\",\"label\":\"Last name\"},\"email\":{\"value\":\"contact@yourwebcreative.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Let us design a professional website for your business, with a 100% money-back guarantee.\\r\\n\\r\\nOur web design company will create a unique, professional website for your business to bring value in the form of sales and online trust\\/reputation.\\r\\n\\r\\nWe strive to provide quality web designs for individuals and businesses around the world. We have a talented team who put their passion and creativity into producing outstanding work. \\r\\n\\r\\nCustomer services is important to us and we will not stop until you are completely pleased with the final result.\\r\\n\\r\\nOur recent website portfolio can be viewed here: https:\\/\\/www.yourwebcreative.com\\/portfolio\\/\\r\\n\\r\\nDue to the large amount of our emails not delivering or being sent to junk\\/spam folders, to prevent loss of communication we would highly advise contacting us via the messenging below.\\r\\n\\r\\nWe are happy to schedule a free consultation call about the website.\\r\\n\\r\\nPlease feel free to contact us if you have any questions.\\r\\n\\r\\nSignal: +33 7 53 29 64 21\\r\\nWhatsApp: +33 7 53 29 64 21\\r\\nViber: +33 7 53 29 64 21\\r\\nSkype: yourwebcreative\\r\\n\\r\\nBest regards,\\r\\nThe YourWebCreative team\",\"label\":\"Message\"},\"phone\":{\"value\":\"00 33 7 53 29 64 21\",\"label\":\"Phone number\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-03 06:09:48'),(405,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ginachoi222@hot.ee\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EddieDix\",\"label\":\"First name\"},\"phone\":{\"value\":\"85546242377\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Bitcoin Miiliarder told how he makes money more $ 8955 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8ED7K&sa=D&73=72&usg=AFQjCNEY3K5BsQ-mUq_FMcp6hGUAytb7Og <<<<<<<<<<<<<<<<<<<<<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"156.146.63.17\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-03 20:12:57'),(406,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Sophia\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Scott\",\"label\":\"Last name\"},\"email\":{\"value\":\"boris.hudson@msn.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Sophia sent you 2 messages yesterday. She is online now.\\r\\nClick the link below to view the message and reply to her.\\r\\n\\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/SophiaScott\\/\",\"label\":\"Message\"},\"phone\":{\"value\":\"9043558989\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.177.231.17\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-04 04:15:51'),(407,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Martinamulp\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Martinamulp\",\"label\":\"Last name\"},\"email\":{\"value\":\"ewdokiya4fwot@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\" \\r\\n\\u0410\\u0432\\u0442\\u043e \\u043a\\u0430\\u043d\\u0430\\u043b \\u0432 \\u0442\\u0435\\u043b\\u0435\\u0433\\u0440\\u0430\\u043c https:\\/\\/t.me\\/info_avto\\/2376 \",\"label\":\"Message\"},\"phone\":{\"value\":\"86942631786\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"178.168.201.244\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-04 12:46:23'),(408,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"say_hi_busta_2004@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EddieDix\",\"label\":\"First name\"},\"phone\":{\"value\":\"89633486573\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Bitcoin Miiliarder told how he makes money more $ 8595 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8ED7K&sa=D&86=29&usg=AFQjCNEY3K5BsQ-mUq_FMcp6hGUAytb7Og <<<<<<<<<<<<<<<<<<<<<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"191.101.31.17\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-06 02:23:47'),(409,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"KarolinaBup1991@wlu.rambller.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Natehalasox\",\"label\":\"First name\"},\"phone\":{\"value\":\"83924665438\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"[url=https:\\/\\/tehnoreiting.ru\\/]tehnoreiting.ru[\\/url]\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.8.22.2\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-06 07:19:34'),(410,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Forster\\r\\n\",\"label\":\"First name\"},\"phone\":{\"value\":\"81866437158\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello \\r\\n \\r\\nI have just took an in depth look on your translucentcomputing.com for the current search visibility and saw that your website could use a boost. \\r\\n \\r\\nWe will enhance your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \\r\\n \\r\\nPlease check our services below, we offer SEO at cheap rates. \\r\\nhttps:\\/\\/www.hilkom-digital.de\\/cheap-seo-packages\\/ \\r\\n \\r\\nStart increasing your sales and leads with us, today! \\r\\n \\r\\n \\r\\nregards \\r\\nMike Forster\\r\\n \\r\\nHilkom Digital Team \\r\\nsupport@hilkom-digital.de\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"37.120.235.165\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-06 13:49:51'),(411,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Hilda\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Sutton\",\"label\":\"Last name\"},\"email\":{\"value\":\"HildaSutton982@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi there! \\r\\n\\r\\nI am wondering if your company needs help or interested in starting an ad campaign or improving the performance of an existing campaign on platforms like Google Ads, Bing Ads, Facebook Ads, and more by using PPC (Per-Per-Click)? I am an expert in online advertising, and I will provide and will give you guaranteed traffic to your site that can make a huge impact on sales. \\r\\n\\r\\nI look forward to hearing from you.\\n\\nSincerely,\\r\\nHilda Sutton\",\"label\":\"Message\"},\"phone\":{\"value\":\"9662466177\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.152.139.211\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-07 21:40:14'),(412,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Martinamulp\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Martinamulp\",\"label\":\"Last name\"},\"email\":{\"value\":\"ewdokiya4fwot@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\" \\r\\n\\u0422\\u0435\\u043b\\u0435\\u0433\\u0440\\u0430\\u043c \\u043a\\u0430\\u043d\\u0430\\u043b \\u043e \\u0430\\u0432\\u0442\\u043e\\u043c\\u043e\\u0431\\u0438\\u043b\\u044f\\u0445 https:\\/\\/t.me\\/AvtoBudni\\/439 \",\"label\":\"Message\"},\"phone\":{\"value\":\"81368888567\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"178.168.201.244\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-08 06:22:18'),(413,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"eileen.sosnowski92@web.de\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EddieDix\",\"label\":\"First name\"},\"phone\":{\"value\":\"82699342573\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Passives Einkommen Vor 116000 EUR pro Tag >>>>>>>>>>>>>>>>>>>>>>>>>>> http:\\/\\/www.google.com\\/url?q=http%3A%2F%2Fgo.nihawiwa.com%2F0bnl&sa=D&25=08&usg=AFQjCNEUPijOi1LFtA_rg0rU0qfVGTKd6A <<<<<<<<<<<<<<<<<<<<<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"156.146.63.30\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-08 07:42:58'),(414,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','Error in \'fields.email\'. Invalid email address','submit','{\"firstname\":{\"value\":\"Dorine\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Gisborne\",\"label\":\"Last name\"},\"email\":{\"value\":\"qlouk@taikz.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Automatic ad submission to thousands of ad sites every month. Submit your ad now: https:\\/\\/goolnk.com\\/ErzLE5\",\"label\":\"Message\"},\"phone\":{\"value\":\"(02) 6111 2454\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"5.62.43.122\",\"label\":\"IP Address\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"42e8528b-bfd8-4aa7-b883-744edaa0153d\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-12-08 07:58:14'),(415,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Hilda\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Sutton\",\"label\":\"Last name\"},\"email\":{\"value\":\"HildaSutton982@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi there! \\r\\n\\r\\nI am wondering if your company needs help or interested in starting an ad campaign or improving the performance of an existing campaign on platforms like Google Ads, Bing Ads, Facebook Ads, and more by using PPC (Per-Per-Click)? I am an expert in online advertising, and I will provide and will give you guaranteed traffic to your site that can make a huge impact on sales. \\r\\n\\r\\nI look forward to hearing from you.\\n\\nSincerely,\\r\\nHilda Sutton\",\"label\":\"Message\"},\"phone\":{\"value\":\"9662466177\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"45.72.67.57\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-08 14:48:17'),(416,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"grosmaseo@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"PornoGoh\",\"label\":\"First name\"},\"phone\":{\"value\":\"81468398146\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"\\u0412\\u043e\\u0437\\u0431\\u0443\\u0436\\u0434\\u0430\\u044e\\u0449\\u0435\\u0435 \\u0441\\u0435\\u043a\\u0441 \\u0437\\u0430\\u043f\\u0438\\u0441\\u044c \\u0431\\u0435\\u0437 \\u0440\\u0435\\u0433\\u0438\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u0438 \\u0441\\u043c\\u043e\\u0442\\u0440\\u0435\\u0442\\u044c \\u043d\\u0430 https:\\/\\/porno-go.website \\u0432 \\u0432\\u044b\\u0441\\u043e\\u043a\\u043e\\u043c \\u043a\\u0430\\u0447\\u0435\\u0441\\u0442\\u0432\\u0435 \\r\\n\\u0416\\u0435\\u0441\\u0442\\u043a\\u043e\\u0435 \\u043f\\u043e\\u0440\\u043d\\u043e \\u0432\\u0438\\u0434\\u0435\\u043e \\u0434\\u043b\\u044f \\u0432\\u0437\\u0440\\u043e\\u0441\\u043b\\u044b\\u0445 \\u043f\\u0440\\u043e\\u0441\\u043c\\u043e\\u0442\\u0440 \\u043d\\u0430 https:\\/\\/porno-go.ru \\u0432 \\u0432\\u044b\\u0441\\u043e\\u043a\\u043e\\u043c \\u043a\\u0430\\u0447\\u0435\\u0441\\u0442\\u0432\\u0435 \\r\\n\\u0421\\u043e \\u0432\\u0441\\u0435\\u0433\\u043e \\u043c\\u0438\\u0440\\u0430 \\u043f\\u043e\\u0440\\u043d\\u043e \\u0440\\u043e\\u043b\\u0438\\u043a\\u0438 \\u0431\\u0435\\u0437 \\u0433\\u0440\\u0430\\u043d\\u0438\\u0446 \\u0441\\u043c\\u043e\\u0442\\u0440\\u0435\\u0442\\u044c \\u043d\\u0430 https:\\/\\/porno-go.top \\u0432 HD1080 \\r\\nViP \\u043f\\u043e\\u0440\\u043d\\u043e \\u0437\\u0430\\u043f\\u0438\\u0441\\u044c \\u0434\\u043b\\u044f \\u0432\\u0441\\u0435\\u0445 \\u043e\\u043d\\u043b\\u0430\\u0439\\u043d \\u043d\\u0430 https:\\/\\/porno-go.pro \\u0432 HD1080 \\r\\n\\u0416\\u0433\\u0443\\u0447\\u0435\\u0435 \\u0441\\u0435\\u043a\\u0441 \\u0440\\u043e\\u043b\\u0438\\u043a\\u0438 \\u0431\\u0435\\u0437 \\u0440\\u0435\\u0433\\u0438\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u0438 \\u043f\\u0440\\u043e\\u0441\\u043c\\u043e\\u0442\\u0440 \\u043d\\u0430 https:\\/\\/porno-go.mobi \\u0432 \\u0432\\u044b\\u0441\\u043e\\u043a\\u043e\\u043c \\u043a\\u0430\\u0447\\u0435\\u0441\\u0442\\u0432\\u0435 \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n.\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"37.192.177.23\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-08 22:06:13'),(417,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rogerdurocher1@live.ca\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EddieDix\",\"label\":\"First name\"},\"phone\":{\"value\":\"86485341297\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"A ready-made system for generating passive income from $ 9999 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&76=79&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"212.102.57.99\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-09 22:23:36'),(418,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"beast@newpochta.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Newswady\",\"label\":\"First name\"},\"phone\":{\"value\":\"87764882438\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"\\u043a\\u0443\\u043f\\u0443\\u0432\\u0430 \\u043a\\u0430\\u0440\\u0442\\u0438\\u043d\\u043a\\u0438\\u043a\\u0443\\u043f\\u0443\\u0432\\u0430 \\u043f\\u0430\\u043a\\u0435\\u0442\\u0441\\u0442\\u0438\\u043a\\u0435\\u0440\\u0438 \\u0437\\u0430 \\u0441\\u0442\\u0435\\u043d\\u0430\\u043a\\u0443\\u043f\\u0443\\u0432\\u0430 \\u0442\\u0435\\u043d\\u0438\\u0441\\u043a\\u0438\\u043f\\u0440\\u044a\\u0441\\u0442\\u0435\\u043d\\u0438 \\u0441 \\u0434\\u043e\\u0441\\u0442\\u0430\\u0432\\u043a\\u0430 \\u0440\\u0435\\u043b\\u0435 \\u0441 \\u0434\\u043e\\u0441\\u0442\\u0430\\u0432\\u043a\\u0430<\\/a>\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"176.106.247.22\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-10 12:50:31'),(419,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tbformleads@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Simon Johnson\",\"label\":\"First name\"},\"phone\":{\"value\":\"88487376871\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello \\r\\n \\r\\nMy main objective here, is to help increase revenue for you by producing an animated video that will generate leads and sales for your business 24\\/7, for just $97. \\r\\n \\r\\nBut this offer is only good this week, so get your video before the deadline. \\r\\n \\r\\nWatch Our Video Now! https:\\/\\/bit.ly\\/Xpress97offer \\r\\n \\r\\nFor less than you spend on coffee each month you get an American Owned Video company that can write your script, create your story board, lay-in a good soundtrack and produce an awesome video that brings home the bacon. \\r\\n \\r\\nAgain, this $97 promotion is for this week only. Don\\u2019t miss out!!! \\r\\n \\r\\nWatch Our Video Now! https:\\/\\/bit.ly\\/Xpress97offer\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.59.149\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-10 17:13:16'),(420,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"elementallivinglns\",\"label\":\"First name\"},\"lastname\":{\"value\":\"elementallivinglns\",\"label\":\"Last name\"},\"email\":{\"value\":\"info@relaxationone.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello, \\r\\n \\r\\nHow many times have we heard the words, \\u201cJust Breathe\\u201d? \\r\\nWHAT does that really mean? We Breathe automatically, NO? \\r\\n \\r\\nThe Good News; we now have a book that explains all the levels that breathing can help us with! \\r\\n\\u201cI Breathe Therefore I AM\\u201d dives deep into how Deep Breathing Exercises have an instant and powerful effect on our body and mind. \\r\\n \\r\\nYou may ask yourself, \\u2018Why alter something we do naturally?\\u2019 \\r\\n \\r\\nWell breathing is believing\\u2026 You have to try these exercises to feel their effect! It is actually our super-power! \\r\\n \\r\\n[b]Get the e-Book[\\/b] [url=https:\\/\\/www.kobo.com\\/us\\/en\\/ebook\\/i-breathe-therefore-i-am][b]Here[\\/b][\\/url] \\r\\n \\r\\n[b]Get the Printed Version[\\/b] [url=https:\\/\\/www.amazon.com\\/Breathe-Therefore-AM-Breathing-Experience\\/dp\\/1777120004\\/ref=sr_1_1?keywords=i+breathe+therefore+i+am&qid=1636399845&qsid=132-7114099-4706300&sprefix=i+breath+therefo,aps,540&sr=8-1&sres=1777120004,B07D14NZH1,B00OG4E4CQ,1587313774,B003PBK4QQ,B0009P5Z24,B08GQVP52P,B091KFCWHV,B06ZYS68PS,B07LGF9KWQ,B07D5NBJB3,B086TVW3PM,B00176T9OY,B079397GCQ,B06VWKVZH1,B07BTSGQQG,B08B7NFDM8,B08DN2JM83,B00Y1Z75EY,B088KTDFLK][b]Here[\\/b][\\/url] \\r\\n \\r\\nFor more information on the power of Deep Breathing, visit us! \\r\\n[b]Or Join The Elemental Living Group - the motivation is FREE - Join[\\/b] [url=https:\\/\\/www.facebook.com\\/groups\\/elementallivingcommunity][b]Here[\\/b][\\/url] \\r\\n \\r\\nIn the meantime, \\r\\nBreath Deep My Friend, \\r\\nMarcus @ \\r\\nhttps:\\/\\/elementalliving.ca\\/\",\"label\":\"Message\"},\"phone\":{\"value\":\"2503093090\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"158.255.175.83\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-10 18:47:07'),(421,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"114744@minkemacollege.nl\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EddieDix\",\"label\":\"First name\"},\"phone\":{\"value\":\"88669167354\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Passive income from $ 7997 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&66=40&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"212.102.57.99\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-10 21:53:40'),(422,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"henk.akkerman5@tele2.nl\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Louisunola\",\"label\":\"First name\"},\"phone\":{\"value\":\"81791313565\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NEW Music \\r\\n \\r\\nPsychedelic, Goa, Psy-Trance: https:\\/\\/scenepsychedelic.blogspot.com \\r\\nMusic songs Beatport DJ: https:\\/\\/tracks2020.blogspot.com \\r\\n0day Techno Music: https:\\/\\/techno-2019.blogspot.com \\r\\nRap Music Various Artists: https:\\/\\/rap-mix.blogspot.com \\r\\nScene Club Music: https:\\/\\/sceneclubs.blogspot.com \\r\\nReggae and Dance Hall FLAC: https:\\/\\/reggaedancehallska.blogspot.com \\r\\nTrance, House Live Sets Radio: https:\\/\\/liveclubradioset.blogspot.com \\r\\nFTP service is a community for DJ\\u2019s & fans that helps you gain full access to exclusive electronic music. Main target of our service is to show the world new upcoming talents as well as famous producers, populations of music culture, promotion of perspective projects. \\r\\n \\r\\nBest Regards, Louis\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"89.38.97.125\",\"label\":\"IP Address\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"0a0c42d5-411d-4088-841b-4ba6f017c445\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-12-11 03:06:37'),(423,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"strekachdjanpagy1987@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"contactwopzfh\",\"label\":\"First name\"},\"phone\":{\"value\":\"87156587231\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Good day! \\r\\n \\r\\nSending newsletters via forms into the \\\"Contact us\\\" section to the sites of business organizations via all countries and domain zones of the world in all languages. \\r\\n \\r\\nwebsite =\\u00bb xn----7sbb1bbndheurc1a.xn--p1ai \\r\\n \\r\\nWHAT IS THE MAILING OF SITES BY FEEDBACK FORMS? \\r\\nThis is a type of mailing using the feedback forms that are located in the contact section of the website and filled by our software automatically with a rate of a few thousand contact forms per 1 minute, while the alphanumeric code from the pictures (CAPTCHA) is also solved. \\r\\nAfter that, the messages including your cooperation offers are sent to the mailboxes of organisations. \\r\\nWhen sending mailing by contact contact forms, it turns out that each internet resource sends a letter to its own e-mail and, therefore, all letters arrive in the inbox of the exact electronic address in which the business receives the business information. \\r\\n \\r\\nUTP: \\r\\nFast one hundred percent informing of firms and site owners about new cooperation offers. \\r\\nSearch of new customers that other types of advertisements cannot find. \\r\\n \\r\\nAIM: \\r\\nFinding customers that cannot be found through other advertisements. \\r\\n \\r\\nBenefits: \\r\\n1.one hundred % delivery of cooperation messages. \\r\\n2.Expansion of the customer database. \\r\\n3. Increase of the market segment. \\r\\n4.Mailings based on regionality and topics. \\r\\n5. Sending e-mails to company officials. \\r\\n6. Conducting tenders and studying demand. \\r\\n7. Conducting marketing campaigns. \\r\\n8. Studying public opinion and conducting surveys. \\r\\n9. Quick notification. \\r\\n10. Cost. \\r\\n11. Entering the markets of other countries. \\r\\n \\r\\nOur competitive advantages: \\r\\n1.When sending mailing by feedback forms, all e-mails arrive in the inbox. When sending e-mail newsletters, this can reach up to 5 percent. \\r\\n \\r\\n2.When sending mailing by feedback forms it is possible to send a few million messages per 24 hours to inbox folders. When sending e-newsletters a few thousands arrive in the inbox folders, the remaining ones often either do not reach or arrive in the junk folder. \\r\\n \\r\\n3. When sending mailing by contact forms a message does not get blocked by mail services because it is sent from different websites. When sending e-mail newsletters it is possible to send a few thousands of those but nevertheless all the IP addresses from which the mailing is done will be banned. \\r\\n \\r\\n4. When sending mailing by feedback forms the minimum number of macros is used to form headings and text of the letter. When sending bulk e-mails, it is necessary to use synonyms (\\u00abmacros\\u00bb) for each word and create thousands different headings. \\r\\n \\r\\n5. A lot of firms try to hide their email and only leave a contact form for contacting with them. \\r\\n \\r\\n6. When sending bulk e-mails, your business offer is delivered to every employee of the firm, (which causes discontent) compared to mailing by contact forms where the information is received at the electronic address specifically set up for commercial offers. \\r\\n \\r\\n7.Fifty percent of business electronic addresses are placed on free mail systems, they are not very \\\"searchable\\\" by email, but when sending mailing by contact forms through these e-mail servers, all e-mails are hundred % delivered to the recipients. \\r\\n \\r\\n8. Only thirty-forty % of businesses are placed in the directories within two-three years, and the rest are already placed in our WHOIS databases and are waiting for your commercial offers. \\r\\nThus that emails of organisations from directories are filled with spam, and therefore they will not have such profit as when sending mailing by feedback forms using our the newest VOIS databases. \\r\\n \\r\\n9. Any kind of stop words in the body or headings of the letter can be sent through contact forms. When sending e-mail newsletters, such messages either are not delivered the recipient or end up in spam. \\r\\nThe list of stop words of mail systems includes almost all words and phrases that encourage recipients to take active actions. \\r\\n \\r\\nApplication: \\r\\n \\r\\n1. Increasing the customer base. \\r\\n2. Quick informing of marketplaces about new business offers. \\r\\n3. Accessing company officials. \\r\\n4.Supply. \\r\\n5. Conducting tenders. \\r\\n6.Conducting marketing campaigns. \\r\\n7.Conducting surveys and studying public opinion. \\r\\n8. Searching for customers in international markets. \\r\\n \\r\\nReasons for purchasing this service: \\r\\n \\r\\n1. 100-percent delivery of your messages and business offers to millions of businesses all over the world. \\r\\nEvery site sends a letter to itself so all filters of mail systems are bypassed. \\r\\n \\r\\n2.Mailing by feedback forms is an excellent way in in terms of conducting all sorts of researches of marketing, studies and surveys of public opinion on differentdirection and type of activity. \\r\\nWhen sending mailing by feedback forms, you will definitely know that your message has been delivered to one hundred percent of consumers of your product and service and if a product or service is \\\"badly promoted\\\", then the potential issue lies in in something else, for example in pricing. \\r\\nAt the same time, within seven days you will see real demand for your services and products, you will not need to spend funds on rent and other more time-consuming and expensive marketing activities. \\r\\n \\r\\n3.Mailing by contact forms is the quickest and the most economical way to get your product or service to the international markets. \\r\\n \\r\\n4. Mailing by contact forms is an excellent tool for conducting different tenders. \\r\\n \\r\\n5.Daily update of the database, as more than 150,000 new sites, appear all over the world daily, and you, get potentially new customers. \\r\\n \\r\\n6. Full geographical coverage for all countries of the world. \\r\\n \\r\\n7. We offer clients that are not available through other advertisement. \\r\\nWhen sending mailing by contact forms, you will be able to reach out that part of your potential clients, that are impossible to find in automatic mode in any other way. \\r\\nFor instance, you will be able to deliver a business offer to those potential customers that were earlier out of reach due to e-mail filters while sending bulk e-mails. \\r\\nIn the markets, there is a very paradoxical situation: businesses in the directories are actually spammed with all sorts of cooperation offers while very little or no e-mails are sent to the rest. \\r\\n \\r\\n8. Unique technology of decoding the CAPTCHA. \\r\\nThere are services for decoding alphanumeric code (captcha\\/CAPTCHA). It costs 1$ to solve thousand CAPTCHAs. \\r\\nIt turns out that, processing one million sites our robot decodes a million CAPTCHAs, which costs thousand dollars only to unravel captcha\\/CAPTCHA, and we provide this free for you! \\r\\n \\r\\n9. By ordering mailing by feedback forms, you are promoting your service or product not to separate people, but to entire organisations, for example domain zone .com, where more than 150 million cooperational firms from all countries are collected (we have samples of them from international zones for every state). \\r\\n \\r\\n10. Mailing by feedback forms is also a type of text mailing \\r\\nEmail that is linked to the feedback form is the primary e-mail of companies through which applications and business offers are sent. This e-mail is also set up for phones as it is necessary to respond to the messages fast so as not to misplace the order or the relevance of the cooperation offer. \\r\\n \\r\\n11. The database of countries also includes all joint companies from all countries working with or closely related to this country, for example, diasporas and national communities. \\r\\nSanctions of search engines and mail systems? \\r\\nThese mailings are an alternative to sending mass e-mails, therefore search engine sanctions and \\\"BAN\\\" do not apply to them. \\r\\nThe mail system delivers the data of messages to the inbox folder, as it passes through the \\\"warm channel\\\" from the new IP address of the internet resource to the corporate e-mail of the same website. \\r\\nSimply speaking, these mailings \\\"live in letters\\\" and mail filters do not react to them, because mail systems have trust in communication channels between sites and corporate e-mail addresses. \\r\\n \\r\\nOUR DATABASES: \\r\\nYou can buy our databases separately from the mailing by sending us a enquiry by contact form. \\r\\n \\r\\nMORE THAN 2000 VOIS DATABASES BY DOMAIN ZONES AND COUNTRIES. \\r\\n \\r\\nCOLLECTIONS OF DATABASES BY THE MAIN CONTINENTS OF THE WORLD. \\r\\n \\r\\nCOLLECTIONS OF DATABASES BY THE MAIN LANGUAGES. \\r\\n \\r\\nSELECTIONS OF DATABASES BY THE MAIN CMS. \\r\\n \\r\\nCOLLECTIONS OF DATABASES BY THE MAIN COUNTRIES OF THE WORLD. \\r\\n \\r\\nHOW TO MAKE AN PROMOTIONAL OFFER FOR MAILING BY FEEDBACK FORMS: \\r\\nThe simplest text of the message + headings, the main goal is to interest the potential customer, and they will read the rest on your internet resource. \\r\\nMost likely, all ads on your subject are already on the networks, enter the necessary requests into the search engine and choose the most interesting ones. \\r\\nThe headings are substituted one after another from .txt file. \\r\\nOnly messages in the text form are sent, links are inserted without problems, they are all \\\"clickable\\\". If the future customer needs pictures or more specific information, then you should forward the client to visit your internet resource. \\r\\n \\r\\nIn the letter: \\r\\nText without pictures, since pictures do not pass through the contact form. \\r\\nYour contact details: \\r\\nSite address: \\r\\n \\r\\nFields to fill in: \\r\\nName: \\r\\nCountry: \\r\\nCity: \\r\\nInternet resource: \\r\\nSeveral headings: \\r\\nE-mail for autoresponces: \\r\\n \\r\\nwebsite =\\u00bb xn----7sbb1bbndheurc1a.xn--p1ai \\r\\nPrice List =\\u00bb xn----7sbb1bbndheurc1a.xn--p1ai\\/en\\/price\\/\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"91.79.32.204\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-11 13:37:28'),(424,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"willem.d.haas@hetnet.nl\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EddieDix\",\"label\":\"First name\"},\"phone\":{\"value\":\"87192184881\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Bitcoin Miiliarder told how he makes money from $ 6777 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&46=86&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"212.102.57.99\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-11 16:45:59'),(425,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Sophia\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Scott\",\"label\":\"Last name\"},\"email\":{\"value\":\"jewell.chauvin@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Sophia sent you 2 messages yesterday. She is online now.\\r\\nClick the link below to view the message and reply to her.\\r\\n\\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/SophiaScott\\/\",\"label\":\"Message\"},\"phone\":{\"value\":\"9043558989\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.177.230.249\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-11 22:21:01'),(426,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hansstienstra@kpnmail.nl\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EddieDix\",\"label\":\"First name\"},\"phone\":{\"value\":\"88651888788\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Passive income on the rise and fall of bitcoin more $ 8799 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&76=65&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"212.102.57.2\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-13 15:09:28'),(427,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Farmer\\r\\n\",\"label\":\"First name\"},\"phone\":{\"value\":\"87335865461\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello \\r\\n \\r\\nWe all know the importance that dofollow link have on any website`s ranks. \\r\\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \\r\\n \\r\\nBuy quality dofollow links from us, that will impact your ranks in a positive way \\r\\nhttps:\\/\\/www.digital-x-press.com\\/product\\/150-dofollow-backlinks\\/ \\r\\n \\r\\nBest regards \\r\\nMike Farmer\\r\\n \\r\\nsupport@digital-x-press.com\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"37.120.235.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-13 18:08:05'),(428,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Dennis\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Perpetua\",\"label\":\"Last name\"},\"email\":{\"value\":\"dennis@qualitybloggeroutreach.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello, \\r\\n\\r\\nI wonder if you received the message I sent a few days ago? \\r\\n\\r\\nThis is Dennis Perpetua from QGP.com,\\r\\n\\r\\nWe\\u2019re interested in advertising on your blog. Is this something you\\u2019d be willing to discuss? \\r\\n\\r\\n\\r\\nP.S.: If you don\'t want me to contact you again, just let me know.\\r\\n\\r\\nDennis Perpetua\\r\\nOutreach Manager\\r\\nwww.qgp.com\\r\\n\\r\\n\\r\\n\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"833-288-8913\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"93.152.140.4\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-14 14:31:36'),(429,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lphoutman@hetnet.nl\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EddieDix\",\"label\":\"First name\"},\"phone\":{\"value\":\"85995288723\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Launch Artificial Intelligence with one button and earn more $ 9887 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> http:\\/\\/www.google.com\\/url?q=http%3A%2F%2Fgestyy.com%2Fep9CR9&sa=D&33=88&usg=AFQjCNHxHb5q4cvsPaKvJfESagxfB_AFOw <<<<<<<<<<<<<<<<<<<<<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"212.102.57.2\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-15 03:59:28'),(430,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"romybrosi@mijnhoutens.nl\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EddieDix\",\"label\":\"First name\"},\"phone\":{\"value\":\"83563248275\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Income from one investment more $ 8855 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http:\\/\\/www.google.com\\/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&80=40&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"212.102.57.2\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-15 18:31:56'),(431,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"b.christan@wgs-electronic.de\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EddieDix\",\"label\":\"First name\"},\"phone\":{\"value\":\"87937534657\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Confessions of a Bitcoin billionaire or passive income more $ 7865 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http:\\/\\/www.google.com\\/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&31=15&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"156.146.63.4\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-16 19:28:30'),(432,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Randall\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Rose\",\"label\":\"Last name\"},\"email\":{\"value\":\"highranks4ursite@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello there,\\r\\n\\r\\nI am a social media marketer that helps companies to generate more sales using facebook and other social media platforms. I have been at this for a long time, so I know the tricks of the trade and can generally help any company to increase sales. I provide great service, but my prices are still affordable. \\r\\n\\r\\nI\'m reaching out because I want to see if you\'re interested in boosting your sales via marketing on facebook and other platforms. Please let me know if you\'re interested and I can give you some information about what I do, how I do it, and what it costs. \\r\\n\\r\\nI would love the opportunity to work with you, so please let me know if you\'re interested. \\r\\n \\n\\nRandall Rose\",\"label\":\"Message\"},\"phone\":{\"value\":\"(709) 909-3181\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"23.229.73.76\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-17 08:08:40'),(433,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"dcjulien12@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Carlyhab\",\"label\":\"First name\"},\"phone\":{\"value\":\"85792622356\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Free sex game: https:\\/\\/2track.info\\/mjmp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"79.173.83.153\",\"label\":\"IP Address\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"c535011d-6fd5-4617-81dc-6957547c0b8e\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-12-17 08:19:38'),(434,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ww3ndnbu@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Dycle\",\"label\":\"First name\"},\"phone\":{\"value\":\"82836317624\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi, this is Jenny. I am sending you my intimate photos as I promised. https:\\/\\/tinyurl.com\\/y42yeuof\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.173\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-17 15:00:55'),(435,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"faulhaberalexander@web.de\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EddieDix\",\"label\":\"First name\"},\"phone\":{\"value\":\"88449518934\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Income from one investment from $ 9578 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> http:\\/\\/www.google.com\\/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&51=75&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"156.146.63.4\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-17 19:19:42'),(436,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"3dqmhizq@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Dycle\",\"label\":\"First name\"},\"phone\":{\"value\":\"89693396961\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi, this is Julia. I am sending you my intimate photos as I promised. https:\\/\\/tinyurl.com\\/y4xasheh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.173\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-18 05:53:48'),(437,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"cesta1958@libero.it\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EddieDix\",\"label\":\"First name\"},\"phone\":{\"value\":\"88618373216\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Launch Artificial Intelligence with one button and earn from $ 7797 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http:\\/\\/www.google.com\\/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&33=81&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"156.146.63.4\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-18 19:03:07'),(438,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Victoria\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Short\",\"label\":\"Last name\"},\"email\":{\"value\":\"victoriashort44@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello there! \\r\\n\\r\\nWould you\'d be interested in building a mobile app for your business? I\'m a mobile app developer that can design and program on any platform (Android, iOs) for an affordable price. There are various types of apps that can help your business, whether in terms of marketing, business efficiency, or both. If you already have some ideas for an app, I would love to hear about them to help you more on how we can make them all possible. I have many ideas of my own that I\'d really like to share with you of things that have worked really well for my other clients. \\r\\n\\r\\nIf you\'re interested in building an app, or getting more information about it, then I\'d love to give you a free consultation. Kindly reply to let me know when you\'d like to be contacted. I hope to speak with you soon! \\n\\nThanks!\\r\\nVictoria Short - Web Development and Business Optimization Specialist\",\"label\":\"Message\"},\"phone\":{\"value\":\"(302) 316-5084\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.186.190.137\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-18 23:06:30'),(439,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sedak32@fastwebnet.it\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EddieDix\",\"label\":\"First name\"},\"phone\":{\"value\":\"87595921479\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Confessions of a Bitcoin billionaire or passive income more $ 6958 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http:\\/\\/www.google.com\\/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&78=96&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"156.146.63.148\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-19 18:12:24'),(440,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Henryicext\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Henryicext\",\"label\":\"Last name\"},\"email\":{\"value\":\"damienkopchinski@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u0417\\u0434\\u0440\\u0430\\u0432\\u0441\\u0442\\u0432\\u0443\\u0439\\u0442\\u0435 \\u0434\\u043e\\u0440\\u043e\\u0433\\u0438\\u0435 \\u0434\\u0440\\u0443\\u0437\\u044c\\u044f https:\\/\\/pultyy.ru\\/ \",\"label\":\"Message\"},\"phone\":{\"value\":\"83569163932\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"178.168.201.244\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-20 09:40:32'),(441,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Davis\\r\\n\",\"label\":\"First name\"},\"phone\":{\"value\":\"89924494188\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi there \\r\\n \\r\\nDo you want a quick boost in ranks and sales for your website? \\r\\nHaving a high DA score, always helps \\r\\n \\r\\nApply this -35% code ( MEGAPROMOTER ) while getting your translucentcomputing.com to have a DA above 60 points in Moz with us today and reap the benefits of such a great feat at an affordable rate. \\r\\n \\r\\n \\r\\n \\r\\nSee our offers here: \\r\\nhttps:\\/\\/www.strictlydigital.net\\/product\\/moz-da50-seo-plan\\/ \\r\\nhttps:\\/\\/www.strictlydigital.net\\/product\\/moz-da60-seo-plan\\/ \\r\\n \\r\\nNEW: ahrefs DR70 is now possible: \\r\\nhttps:\\/\\/www.strictlydigital.net\\/product\\/ahrefs-seo-plan\\/ \\r\\n \\r\\n \\r\\nThank you \\r\\nMike Davis\\r\\n \\r\\nmike@strictlydigital.net\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"37.19.223.245\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-20 09:52:33'),(442,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rob.ert.s.to.l.ten.ber.g.b.i.g@gmail.com\\r\\n\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Kirillxis\",\"label\":\"First name\"},\"phone\":{\"value\":\"83925376886\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"\\u041a\\u0430\\u043a \\u0432\\u044b \\u043f\\u0440\\u043e\\u0433\\u043d\\u043e\\u0437\\u0438\\u0440\\u0443\\u0435\\u0442\\u0435 \\u043f\\u043e\\u0433\\u043e\\u0434\\u0443? \\r\\n\\u041b\\u0418\\u0447\\u043d\\u043e \\u044f \\u0441\\u043c\\u043e\\u0442\\u0440\\u044e \\u0432\\u0435\\u0447\\u0435\\u0440\\u043e\\u043c \\u043d\\u0430 \\u0437\\u0430\\u043a\\u0430\\u0442, \\u043d\\u043e \\u0435\\u0441\\u043b\\u0438 \\u043d\\u0438\\u0447\\u0435\\u0433\\u043e \\u043d\\u0435 \\u0432\\u0438\\u0436\\u0443, \\u0442\\u043e\\u0433\\u0434\\u0430 \\u0438\\u0434\\u0443 \\u043d\\u0430 \\u0441\\u0430\\u0439\\u0442 https:\\/\\/www.gismeteo.ua\\/ \\u0438 \\u0442\\u0430\\u043c \\u043f\\u043e\\u043b\\u0443\\u0447\\u0430\\u044e \\u0432\\u0435\\u0441\\u044c \\u043f\\u0440\\u043e\\u0433\\u043d\\u043e\\u0437\\u0438\\u0440\\u0443\\u0435\\u0442\\u0435. \\u0418 \\u0431\\u044b\\u043b\\u043e \\u043d\\u0435\\u0441\\u043a\\u043e\\u043b\\u044c\\u043a\\u043e \\u0440\\u0430\\u0437 \\u043a\\u043e\\u0433\\u0434\\u0430 \\u0441\\u0430\\u0439\\u0442 \\u0431\\u044b\\u043b \\u043d\\u0435 \\u043f\\u0440\\u0430\\u0432. \\r\\n\\u0422\\u0430\\u043a \\u0447\\u0442\\u043e \\u0434\\u043e\\u0432\\u0435\\u0440\\u0439, \\u043d\\u043e \\u043f\\u0440\\u043e\\u0432\\u0435\\u0440\\u044f\\u0439.\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"176.125.229.136\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-21 05:26:37'),(443,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Sophia\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Scott\",\"label\":\"Last name\"},\"email\":{\"value\":\"kyle.eichel@googlemail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Sophia sent you 2 messages yesterday. She is online now.\\r\\nClick the link below to view the message and reply to her.\\r\\n\\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/SophiaScott\\/\",\"label\":\"Message\"},\"phone\":{\"value\":\"9043558989\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"27.0.158.177\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-21 17:54:44'),(444,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zcislerbursley@freenet.de\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EddieDix\",\"label\":\"First name\"},\"phone\":{\"value\":\"86729746443\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Dies ist Ihre Chance zu verdienen Vor 16200 EUR pro Tag >>>>>>>>>>>>>>>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&93=77&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<<<<<<<<<<<<<<<<<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"156.146.63.148\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-21 18:18:48'),(445,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"x5wtdovr@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Dycle\",\"label\":\"First name\"},\"phone\":{\"value\":\"87964644362\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi, this is Jenny. I am sending you my intimate photos as I promised. https:\\/\\/tinyurl.com\\/yy6g629z\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-21 19:37:03'),(446,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"Mirzarehman.com@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mirza Rehman\",\"label\":\"First name\"},\"phone\":{\"value\":\"03046285218\",\"label\":\"Phone number\"},\"company\":{\"value\":\"Techmughal\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi, Sir\\/Mam\\r\\nI Am a Link builder\\r\\nI have many high-quality sites for guest posting.\\r\\nI will publish your article with Do Follow Back Link.\\r\\nIf you want to optimize your website\'s ranking through Guest post backlinks or through Content marketing, Then you can get good quality blogs at a reasonable cost.\\r\\n\\r\\nI am want to know what kinds of sites do you need and also tell me your Requirement about DA, PA, DR,PR, Traffic,\\r\\n\\r\\nhttps:\\/\\/newswire.net\\/ \\r\\n\\r\\nhttps:\\/\\/ventsmagazine.com\\/\\r\\nhttps:\\/\\/ridzeal.com\\/ \\r\\nhttps:\\/\\/www.gudstory.com\\/\\r\\nhttps:\\/\\/www.apzomedia.com\\/\\r\\n\\r\\nhttps:\\/\\/thenewsgod.com \\r\\n\\r\\nhttps:\\/\\/editorialge.com \\r\\n\\r\\nhttp:\\/\\/fooyoh.com\\/ \\r\\n\\r\\nhttps:\\/\\/www.techicy.com\\/\\r\\nhttps:\\/\\/scienceprog.com\\r\\n\\r\\nhttps:\\/\\/embedds.com\\/\\r\\n\\r\\nhttps:\\/\\/www.thewowstyle.com\\/\\r\\n\\r\\nhttps:\\/\\/www.techinexpert.com\\/\\r\\nhttps:\\/\\/thealmostdone.com\\/\\r\\n\\r\\n \\r\\n\\r\\nI will publish your article with Do Follow Back Link.\\r\\n\\r\\nI am waiting for your reply.\\r\\nMany.Thanks\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"156.146.59.7\",\"label\":\"IP Address\"},\"hutk\":{\"value\":\"070960f7d8f12845382f45200cc0222e\",\"label\":\"Cookie\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-22 08:02:09'),(447,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Chrissy\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Allan\",\"label\":\"Last name\"},\"email\":{\"value\":\"chrissy@youralexadirectory.link\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \\r\\n\\r\\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\\r\\n\\r\\nIts simple & easy; Register your business here --> \\r\\nhttps:\\/\\/voiceregbiz1.xyz\\/mroe-cusotmers\\/?=translucentcomputing.com\\r\\n\\r\\n\\r\\nChrissy\\r\\nVoice Activation Follow-up Specialist\\r\\nYour Alexa Directory\\r\\n\\r\\n\\r\\n\\r\\n \\r\\n2764 Pleasant Road Suite Suite A PMB 708\\r\\nFort Mill, SC 29708\\r\\n\\r\\nYou can skip future marketing messages here:\\r\\nhttps:\\/\\/voiceregbiz1.xyz\\/unsubscribe.php\\/?site=translucentcomputing.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"805-372-3366\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"45.120.50.253\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-22 11:23:03'),(448,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"james_cook78@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"JAMES COOK\",\"label\":\"First name\"},\"phone\":{\"value\":\"81647681176\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Dear sir\\/ma \\r\\nWe are a finance and investment company offering loans at 3% interest rate. We will be happy to make a loan available to your organisation for your project. Our terms and conditions will apply. Our term sheet\\/loan agreement will be sent to you for review, when we hear from you. Please reply to this email ONLY cookj5939@gmail.com \\r\\n \\r\\nRegards. \\r\\nJames Cook \\r\\nChairman & CEO Euro Finance & Commercial Ltd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.183.220.227\",\"label\":\"IP Address\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"ef19103b-7487-4dc8-8fe9-ece95bb9ae31\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-12-22 18:44:32'),(449,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Peterstare\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Peterstare\",\"label\":\"Last name\"},\"email\":{\"value\":\"annettfrails@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\" \\u0415\\u0441\\u0442\\u044c \\u043e\\u0442\\u043b\\u0438\\u0447\\u043d\\u044b\\u0439 \\u0441\\u0442\\u0440\\u043e\\u0442\\u0435\\u043b\\u044c\\u043d\\u044b\\u0439 \\u0441\\u0430\\u0439\\u0442 [url=https:\\/\\/goodhandwork.ru\\/]goodhandwork.ru[\\/url], \\u0433\\u0434\\u0435 \\u043c\\u043d\\u043e\\u0433\\u043e \\u043f\\u043e\\u043b\\u0435\\u0437\\u043d\\u044b\\u0445 \\u0441\\u043e\\u0432\\u0435\\u0442\\u043e\\u0432\",\"label\":\"Message\"},\"phone\":{\"value\":\"89762774637\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"178.168.221.111\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-23 04:34:25'),(450,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"xinapo7273@swsguide.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Joshuasolve\",\"label\":\"First name\"},\"phone\":{\"value\":\"89865999526\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"We are community driven and our main goal is create free and efficient solutions to new projects on the crypto world. Here you can trade with 0% fees, send, receive crypto. Know more at https:\\/\\/bullfinance.online\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"84.17.58.23\",\"label\":\"IP Address\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"cd94325c-ae9d-461c-896a-3238c2ab7004\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-12-23 07:41:09'),(451,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"riverelff@yahoo.co.uk\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Charliecoife\",\"label\":\"First name\"},\"phone\":{\"value\":\"88384358149\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Bonjour. \\r\\nSi vous etes interesse par ce type de revenus, sachez que des investissements de 500 EUR sont necessaires ici une fois. \\r\\nDe plus, vous recevrez a partir de 1500 EUR par semaine (@%) \\r\\n>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&55=19&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<< \\r\\nL\'essence du gain est de generer des revenus en negociant des crypto-monnaies en mode automatique, meme si tous les marches s\'effondrent, vous serez assure de recevoir votre argent a partir de 1500 EUR par semaine. \\r\\nArrangez-vous pour prendre place au soleil et inscrivez-vous ?-!# \\r\\nOffre limitee ((!+ \\r\\n>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&24=30&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"191.101.217.39\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-23 20:22:12'),(452,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"d8tusncr@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Dycle\",\"label\":\"First name\"},\"phone\":{\"value\":\"88352519253\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi, this is Julia. I am sending you my intimate photos as I promised. https:\\/\\/tinyurl.com\\/y2gryrsl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.128\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-24 07:09:01'),(453,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"robertervine@yahoo.co.uk\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Charliecoife\",\"label\":\"First name\"},\"phone\":{\"value\":\"86545255812\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Bonjour. \\r\\nSi vous etes interesse par ce type de revenus, sachez que des investissements de 500 EUR sont necessaires ici une fois. \\r\\nDe plus, vous recevrez a partir de 1500 EUR par semaine ()\\\"@ \\r\\n>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&01=03&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<< \\r\\nL\'essence du gain est de generer des revenus en negociant des crypto-monnaies en mode automatique, meme si tous les marches s\'effondrent, vous serez assure de recevoir votre argent a partir de 1500 EUR par semaine. \\r\\nArrangez-vous pour prendre place au soleil et inscrivez-vous %@%$ \\r\\nOffre limitee !^;@ \\r\\n>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&06=78&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"191.101.217.39\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-25 01:51:25'),(454,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"dcjulien13@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Deborahwap\",\"label\":\"First name\"},\"phone\":{\"value\":\"81116526969\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"I\'m waiting for you now https:\\/\\/2track.info\\/oyEq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"94.231.145.22\",\"label\":\"IP Address\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"a9698c4f-eb76-41a1-879f-d9a60c4aff94\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2021-12-25 02:26:01'),(455,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"2dyagileva3@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"BettyNIP\",\"label\":\"First name\"},\"phone\":{\"value\":\"87341427677\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"11-11 - https:\\/\\/bit.ly\\/30hUx0w\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"79.173.83.153\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-25 05:41:14'),(456,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"no-replyentaisk@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Gisela Karlsson\\r\\n\",\"label\":\"First name\"},\"phone\":{\"value\":\"85255684653\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Good day! translucentcomputing.com \\r\\n \\r\\nWe suggesting \\r\\n \\r\\nSending your commercial proposal through the feedback form which can be found on the sites in the contact section. Feedback forms are filled in by our application and the captcha is solved. The profit of this method is that messages sent through feedback forms are whitelisted. This method increases the probability that your message will be read. \\r\\n \\r\\nOur database contains more than 27 million sites around the world to which we can send your message. \\r\\n \\r\\nThe cost of one million messages 49 USD \\r\\n \\r\\nFREE TEST mailing Up to 50,000 messages. \\r\\n \\r\\n \\r\\nThis offer is created automatically. Use our contacts for communication. \\r\\n \\r\\nContact us. \\r\\nTelegram - @FeedbackMessages \\r\\nSkype live:contactform_18 \\r\\nWhatsApp - +375259112693 \\r\\nWe only use chat.\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"84.247.48.3\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-25 15:11:40'),(457,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bouabid86@yahoo.co.uk\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Charliecoife\",\"label\":\"First name\"},\"phone\":{\"value\":\"82618134668\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Bonjour. \\r\\nSi vous etes interesse par ce type de revenus, sachez que des investissements de 500 EUR sont necessaires ici une fois. \\r\\nDe plus, vous recevrez a partir de 1500 EUR par semaine ?(:= \\r\\n>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&45=09&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<< \\r\\nL\'essence du gain est de generer des revenus en negociant des crypto-monnaies en mode automatique, meme si tous les marches s\'effondrent, vous serez assure de recevoir votre argent a partir de 1500 EUR par semaine. \\r\\nArrangez-vous pour prendre place au soleil et inscrivez-vous **%# \\r\\nOffre limitee ;@!$ \\r\\n>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&01=65&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"191.101.217.39\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-26 20:43:29'),(458,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Steve\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Watson\",\"label\":\"Last name\"},\"email\":{\"value\":\"steve@explainervideos4u.info\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi,\\r\\n\\r\\nWe\'d like to introduce to you our explainer video service which we feel can benefit your site translucentcomputing.com.\\r\\n\\r\\nCheck out some of our existing videos here:\\r\\nhttps:\\/\\/www.youtube.com\\/watch?v=zvGF7uRfH04\\r\\nhttps:\\/\\/www.youtube.com\\/watch?v=cZPsp217Iik\\r\\nhttps:\\/\\/www.youtube.com\\/watch?v=JHfnqS2zpU8\\r\\n\\r\\nThey can show a solution to a problem or simply promote one of your products or services.\\r\\n\\r\\nOur prices (in USD) are as follows depending on video length:\\r\\n1 minute = $239\\r\\n1-2 minutes = $339\\r\\n2-3 minutes = $449\\r\\n\\r\\nIf this is something you would like to discuss further, don\'t hesitate to get in touch.\\r\\n\\r\\nKind Regards,\\r\\nSteve\",\"label\":\"Message\"},\"phone\":{\"value\":\"078 4938 0361\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"23.106.219.191\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-27 07:36:18'),(459,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"FrancisHak\",\"label\":\"First name\"},\"lastname\":{\"value\":\"FrancisHak\",\"label\":\"Last name\"},\"email\":{\"value\":\"alyciafleeger@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u041a\\u043b\\u0430\\u0441\\u0441\\u043d\\u044b\\u0439 \\u0441\\u0430\\u0439\\u0442 [url=https:\\/\\/sportpitbar.ru]sportpitbar.ru[\\/url] \\u043f\\u0440\\u043e \\u0441\\u043f\\u043e\\u0440\\u0442\\u0438\\u0432\\u043d\\u044b\\u0435 \\u0443\\u043f\\u0440\\u0430\\u0436\\u043d\\u0435\\u043d\\u0438\\u044f\",\"label\":\"Message\"},\"phone\":{\"value\":\"81361767241\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"178.168.221.111\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-27 19:38:10'),(460,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"p7ur1wf6@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Dycle\",\"label\":\"First name\"},\"phone\":{\"value\":\"85839763855\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi, this is Jenny. I am sending you my intimate photos as I promised. https:\\/\\/tinyurl.com\\/yyrm857k\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.128\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-28 03:51:50'),(461,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Richards\\r\\n\",\"label\":\"First name\"},\"phone\":{\"value\":\"83847966344\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Good Day \\r\\n \\r\\nWe will enhance your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \\r\\n \\r\\nPlease check our pricelist here, we offer Local SEO at cheap rates. \\r\\nhttps:\\/\\/speed-seo.net\\/product\\/local-seo-package\\/ \\r\\n \\r\\nNEW: \\r\\nhttps:\\/\\/www.speed-seo.net\\/product\\/zip-codes-gmaps-citations\\/ \\r\\n \\r\\nregards \\r\\nMike Richards\\r\\n \\r\\nSpeed SEO Digital Agency\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"194.110.115.202\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-28 06:57:14'),(462,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"couliou.mar0@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Debbiesuilk\",\"label\":\"First name\"},\"phone\":{\"value\":\"81655787979\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Today Lenovo - https:\\/\\/bit.ly\\/3w5LjyB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"94.231.145.22\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-28 19:22:25'),(463,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Jeremy\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Russell\",\"label\":\"Last name\"},\"email\":{\"value\":\"circle357marketing@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello there! \\r\\n\\r\\n I\'m a mobile app developer that can design and program on any platform (Android, iOs) for an affordable price. Would you\'d be interested in building a mobile app for your business?There are various types of apps that can help your business, whether in terms of marketing, business efficiency, or both. If you already have some ideas, I would love to hear about them to help you more on how we can make them all possible.\\r\\n\\r\\nI have many ideas of my own that I\'d really like to share with you of things that have worked really well for my other clients. If you\'re interested in building an app, or getting more information about it, then I\'d love to give you a free consultation. Kindly reply to let me know when you\'d like to be contacted. Talk to you soon!\\n\\nJeremy Russell\\r\\n\\r\\np.s. I don\'t want to annoy anyone, so if you\'d like to be removed from any of my emails, please just email me back with the word \\\"stop\\\" in the subject line and I\'ll exclude you from any further messages. Best Regards.\",\"label\":\"Message\"},\"phone\":{\"value\":\"(307) 228-0751\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.198.122.244\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-28 21:45:59'),(464,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alvarogomezh964@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"John Lucas\",\"label\":\"First name\"},\"phone\":{\"value\":\"82177959548\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\" \\r\\n \\r\\nHello Dear, \\r\\n \\r\\nMy name is John Lucas, I have been waiting for your response regarding \\r\\nthe message I sent you about Late (PETER ) inheritance. Please Kindly \\r\\nget back to me because I have received the final notice by the bank \\r\\nregarding his assets\\/Inheritance. \\r\\n \\r\\nIf you happen not to receive my previous message, let me know so that \\r\\ni can resend for you to read and understand the deal in full and what \\r\\nis required of you. \\r\\n \\r\\nContact me strictly on my E-mail: Lucasjoh2022@gmail.com \\r\\n \\r\\nKind Regards, \\r\\nBarrister. John Lucas (Esq) \\r\\nLegal Practitioner & Solicitor. \\r\\nSPAIN, UK, SWEDEN, USA & GERMANY \\r\\nAddress: Castellon de la Plana 201, 28006, Madrid \\u2013 Spain\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"188.126.73.208\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-29 16:31:18'),(465,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Victoria\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Short\",\"label\":\"Last name\"},\"email\":{\"value\":\"victoriashort44@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello there! \\r\\n\\r\\nWould you\'d be interested in building a mobile app for your business? I\'m a mobile app developer that can design and program on any platform (Android, iOs) for an affordable price. There are various types of apps that can help your business, whether in terms of marketing, business efficiency, or both. If you already have some ideas for an app, I would love to hear about them to help you more on how we can make them all possible. I have many ideas of my own that I\'d really like to share with you of things that have worked really well for my other clients. \\r\\n\\r\\nIf you\'re interested in building an app, or getting more information about it, then I\'d love to give you a free consultation. Kindly reply to let me know when you\'d like to be contacted. I hope to speak with you soon! \\n\\nThanks!\\r\\nVictoria Short - Web Development and Business Optimization Specialist\",\"label\":\"Message\"},\"phone\":{\"value\":\"(302) 316-5084\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.173.178.155\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-29 18:06:04'),(466,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Scottson\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Scottson\",\"label\":\"Last name\"},\"email\":{\"value\":\"mikaelamartinov@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u041a\\u0430\\u043a \\u043f\\u0440\\u0430\\u0432\\u0438\\u043b\\u044c\\u043d\\u043e \\u0443\\u0445\\u0430\\u0436\\u0438\\u0432\\u0430\\u0442\\u044c \\u0437\\u0430 \\u0440\\u0430\\u0441\\u0442\\u0435\\u043d\\u0438\\u044f\\u043c\\u0438, \\u043e\\u0442\\u0432\\u0435\\u0442 \\u043d\\u0430 \\u044d\\u0442\\u043e\\u0442 \\u0432\\u043e\\u043f\\u0440\\u043e\\u0441 \\u043c\\u043e\\u0436\\u043d\\u043e \\u043d\\u0430\\u0439\\u0442\\u0438 \\u043d\\u0430 \\u0441\\u0430\\u0439\\u0442\\u0435 semstomm.ru<\\/a>\",\"label\":\"Message\"},\"phone\":{\"value\":\"87155966667\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"178.168.220.14\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-30 11:07:06'),(467,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lera.minakina.93@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"nam4851764krya\",\"label\":\"First name\"},\"phone\":{\"value\":\"89284842662\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mss4851764rttyneg dx0UV4L kJH8 yzDUPNf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.128\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-30 12:44:28'),(468,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"masalitina-1979@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/3DddEkV3 SVWVE14026SVWVE\",\"label\":\"First name\"},\"phone\":{\"value\":\"87542254662\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"m7lrS7w 4cc4 tgp8tqj RKLHyHm DIsI 7yvNd8X\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.57\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-31 10:58:12'),(469,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"masalitina-1979@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/g1NQlpPQ MTGJNF14026THRT\",\"label\":\"First name\"},\"phone\":{\"value\":\"86483427791\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fpoDRxZ qMAc IAcGfF0 b1THMgA ggyh u9CnbD8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.57\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-31 11:47:52'),(470,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"matveychik.rodyakov@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: https:\\/\\/bit.ly\\/49qBj2TF SVWVE105855TUJE\",\"label\":\"First name\"},\"phone\":{\"value\":\"85187695679\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9KTtQpL mpNM G4aSgkm 9vQiaGf 83M8 khJtjiu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.57\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-31 17:29:10'),(471,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Forbes\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Blog\",\"label\":\"Last name\"},\"email\":{\"value\":\"fuchs.merry@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Christmas special prizes from Forbes.\\r\\n\\r\\nHurry up\\r\\n\\r\\nhttps:\\/\\/offers.forbes.blog\\/offers\",\"label\":\"Message\"},\"phone\":{\"value\":\"9043558989\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"168.90.97.142\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2021-12-31 23:47:56'),(472,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"matveychik.rodyakov@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: https:\\/\\/bit.ly\\/xul6E4Gc NFDAW105855NFDAW\",\"label\":\"First name\"},\"phone\":{\"value\":\"89889897577\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IKLZ7Nc 2PdT mo4VCt2 j08tjw0 IJbq G8J3MUH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.57\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-01 00:06:03'),(473,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rom.an..m.o.r.oz.ov..9.46.2@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"gobacktome\",\"label\":\"First name\"},\"phone\":{\"value\":\"82215475454\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"when will viagra offer generic what would viagra do if a woman took it<\\/a>\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"163.172.108.14\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-01 23:27:24'),(474,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"roman..m.or.o.zov...9.4.62@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"gobacktome\",\"label\":\"First name\"},\"phone\":{\"value\":\"88571182531\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"why didnt viagra work does 100mg of viagra work better than 50mg<\\/a>\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"163.172.108.14\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-02 00:22:42'),(475,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"r0z5cy3x@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Dycle\",\"label\":\"First name\"},\"phone\":{\"value\":\"82167773569\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi, this is Irina. I am sending you my intimate photos as I promised. https:\\/\\/tinyurl.com\\/y6ggzu88\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.57\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-02 02:14:42'),(476,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"xiegd661026@163.com\",\"label\":\"First name\"},\"lastname\":{\"value\":\"xiegd661026@163.com\",\"label\":\"Last name\"},\"email\":{\"value\":\"xiegd661026@163.com\",\"label\":\"Email\"},\"message\":{\"value\":\"xieyiceshi- www.translucentcomputing.com -xieyiceshi\",\"label\":\"Message\"},\"phone\":{\"value\":\"77816150\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"182.200.127.6\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-02 10:26:53'),(477,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"JosephLerse\",\"label\":\"First name\"},\"lastname\":{\"value\":\"JosephLerse\",\"label\":\"Last name\"},\"email\":{\"value\":\"anjelagorunova4355@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\" \\u0415\\u0441\\u043b\\u0438 \\u0438\\u0449\\u0435\\u0448\\u044c \\u043a\\u043b\\u0430\\u0441\\u0441\\u043d\\u044b\\u0439 \\u0441\\u0430\\u0439\\u0442 \\u043f\\u0440\\u043e \\u0430\\u0432\\u0442\\u043e \\u0437\\u0430\\u0445\\u043e\\u0434\\u0438 \\u0441\\u044e\\u0434\\u0430 avtovestie.ru<\\/a> \\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"89252744123\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"178.168.220.14\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-03 00:44:24'),(478,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Victoria\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Short\",\"label\":\"Last name\"},\"email\":{\"value\":\"victoriashort44@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello there! \\r\\n\\r\\nWould you\'d be interested in building a mobile app for your business? I\'m a mobile app developer that can design and program on any platform (Android, iOs) for an affordable price. There are various types of apps that can help your business, whether in terms of marketing, business efficiency, or both. If you already have some ideas for an app, I would love to hear about them to help you more on how we can make them all possible. I have many ideas of my own that I\'d really like to share with you of things that have worked really well for my other clients. \\r\\n\\r\\nIf you\'re interested in building an app, or getting more information about it, then I\'d love to give you a free consultation. Kindly reply to let me know when you\'d like to be contacted. I hope to speak with you soon! \\n\\nThanks!\\r\\nVictoria Short - Web Development and Business Optimization Specialist\",\"label\":\"Message\"},\"phone\":{\"value\":\"(302) 316-5084\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.173.129.103\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-04 12:35:18'),(479,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Bradberry\\r\\n\",\"label\":\"First name\"},\"phone\":{\"value\":\"81317423813\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi there \\r\\n \\r\\nI have just analyzed translucentcomputing.com for its SEO metrics and saw that your website could use a push. \\r\\n \\r\\nWe will enhance your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \\r\\n \\r\\nPlease check our services below, we offer SEO at cheap rates. \\r\\nhttps:\\/\\/www.hilkom-digital.de\\/cheap-seo-packages\\/ \\r\\n \\r\\nStart enhancing your sales and leads with us, today! \\r\\n \\r\\n \\r\\nregards \\r\\nMike Bradberry\\r\\n \\r\\nHilkom Digital Team \\r\\nsupport@hilkom-digital.de\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"37.120.235.164\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-04 13:21:41'),(480,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gyt5cotz@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Dycle\",\"label\":\"First name\"},\"phone\":{\"value\":\"87511898435\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi, this is Irina. I am sending you my intimate photos as I promised. https:\\/\\/tinyurl.com\\/y3d9lmoa\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.128\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-04 17:38:05'),(481,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"ElmerspOpe\",\"label\":\"First name\"},\"lastname\":{\"value\":\"ElmerspOpe\",\"label\":\"Last name\"},\"email\":{\"value\":\"anjelagorunova4355@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u0421\\u0430\\u043c\\u0430\\u044f \\u0448\\u0438\\u0440\\u043e\\u043a\\u0430\\u044f \\u0447\\u0430\\u0441\\u0442\\u044c \\u0434\\u043e\\u043c\\u0435\\u043d\\u043d\\u043e\\u0439 \\u043f\\u0435\\u0447\\u0438 \\u043d\\u043e\\u0441\\u0438\\u0442 \\u043d\\u0430\\u0437\\u0432\\u0430\\u043d\\u0438\\u0435 \\u0440\\u0430\\u0441\\u043f\\u0430\\u0440. \\u0417\\u0434\\u0435\\u0441\\u044c \\u043f\\u043b\\u0430\\u0432\\u0438\\u0442\\u0441\\u044f \\u043f\\u0443\\u0441\\u0442\\u0430\\u044f \\u043f\\u043e\\u0440\\u043e\\u0434\\u0430 \\u0444\\u043b\\u044e\\u0441\\u0430 \\u0438 \\u0440\\u0443\\u0434\\u044b, \\u0437\\u0430 \\u0441\\u0447\\u0435\\u0442 \\u0447\\u0435\\u0433\\u043e \\u0438\\u0437 \\u043d\\u0438\\u0445 \\u043f\\u043e\\u043b\\u0443\\u0447\\u0430\\u0435\\u0442\\u0441\\u044f \\u0448\\u043b\\u0430\\u043a.\\r\\n\\u041f\\u043e\\u0441\\u043b\\u0435 \\u0442\\u043e\\u0433\\u043e, \\u043a\\u0430\\u043a \\u0433\\u043e\\u0442\\u043e\\u0432\\u044b\\u0439 \\u043c\\u0435\\u0442\\u0430\\u043b\\u043b \\u043d\\u0430\\u043a\\u043e\\u043f\\u0438\\u043b\\u0441\\u044f \\u0432 \\u0433\\u043e\\u0440\\u043d\\u0435, \\u0435\\u0433\\u043e \\u0432\\u044b\\u043f\\u0443\\u0441\\u043a\\u0430\\u044e\\u0442 \\u0447\\u0435\\u0440\\u0435\\u0437 \\u043b\\u0435\\u0442\\u043a\\u0438. \\u0427\\u0435\\u0440\\u0435\\u0437 \\u0432\\u0435\\u0440\\u0445\\u043d\\u0435\\u0435 \\u043e\\u0442\\u0432\\u0435\\u0440\\u0441\\u0442\\u0438\\u0435 \\u0441\\u043d\\u0430\\u0447\\u0430\\u043b\\u0430 \\u0432\\u044b\\u043f\\u0443\\u0441\\u043a\\u0430\\u044e\\u0442 \\u0448\\u043b\\u0430\\u043a, \\u0430 \\u043f\\u043e\\u0441\\u043b\\u0435 \\u2013 \\u0447\\u0435\\u0440\\u0435\\u0437 \\u043d\\u0438\\u0436\\u043d\\u0435\\u0435 \\u2013 \\u0447\\u0443\\u0433\\u0443\\u043d. \\u041f\\u043e\\u0441\\u043b\\u0435\\u0434\\u043d\\u0438\\u0439 \\u0441\\u043b\\u0438\\u0432\\u0430\\u0435\\u0442\\u0441\\u044f \\u043f\\u043e \\u043a\\u0430\\u043d\\u0430\\u043b\\u0430\\u043c \\u0432 \\u043a\\u043e\\u0432\\u0448\\u0438 \\u0438 \\u043e\\u0442\\u043f\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u0442\\u0441\\u044f \\u043d\\u0430 \\u043f\\u043e\\u0441\\u043b\\u0435\\u0434\\u0443\\u044e\\u0449\\u0443\\u044e \\u043e\\u0431\\u0440\\u0430\\u0431\\u043e\\u0442\\u043a\\u0443.\\r\\nhttps:\\/\\/volst.ru\\/domennoe-proizvodstvo\\/v-domennoj-pechi-poluchajut-kak-sdelat-samostoyatelno-domennuju-pech\\/\\r\\n \\r\\n\\u041e\\u0434\\u043d\\u043e\\u0432\\u0440\\u0435\\u043c\\u0435\\u043d\\u043d\\u043e \\u0441 \\u0432\\u043e\\u0441\\u0441\\u0442\\u0430\\u043d\\u043e\\u0432\\u043b\\u0435\\u043d\\u0438\\u0435\\u043c \\u0436\\u0435\\u043b\\u0435\\u0437\\u0430 \\u043f\\u0440\\u043e\\u0438\\u0441\\u0445\\u043e\\u0434\\u044f\\u0442 \\u043f\\u0440\\u043e\\u0446\\u0435\\u0441\\u0441\\u044b \\u043e\\u0442\\u0434\\u0435\\u043b\\u0435\\u043d\\u0438\\u044f \\u043f\\u0443\\u0441\\u0442\\u043e\\u0439 \\u043f\\u043e\\u0440\\u043e\\u0434\\u044b \\u043e\\u0442 \\u0446\\u0435\\u043b\\u0435\\u0432\\u043e\\u0433\\u043e \\u043f\\u0440\\u043e\\u0434\\u0443\\u043a\\u0442\\u0430 \\u0447\\u0435\\u0440\\u0435\\u0437 \\u043e\\u0431\\u0440\\u0430\\u0437\\u043e\\u0432\\u0430\\u043d\\u0438\\u0435 \\u0448\\u043b\\u0430\\u043a\\u0430 \\u043f\\u0440\\u0438 \\u0432\\u0437\\u0430\\u0438\\u043c\\u043e\\u0434\\u0435\\u0439\\u0441\\u0442\\u0432\\u0438\\u0438 \\u043f\\u0440\\u0438\\u043c\\u0435\\u0441\\u0435\\u0439 \\u0441 \\u0444\\u043b\\u044e\\u0441\\u043e\\u0432\\u044b\\u043c\\u0438 \\u0434\\u043e\\u0431\\u0430\\u0432\\u043a\\u0430\\u043c\\u0438. \\u041a\\u043e\\u043d\\u0435\\u0447\\u043d\\u044b\\u0439 \\u0448\\u043b\\u0430\\u043a \\u043d\\u0430 85-95% \\u0441\\u043e\\u0441\\u0442\\u043e\\u0438\\u0442 \\u0438\\u0437 SiO 2 , Al 2 O 3 \\u0438 \\u0421\\u0430\\u041e; \\u043e\\u0441\\u0442\\u0430\\u043b\\u044c\\u043d\\u043e\\u0435 - Mg\\u041e (2-10%), FeO (0,2-0,6%), Mn\\u041e (0,3-2%) \\u0438 1,5-2,5% \\u0441\\u0435\\u0440\\u044b \\u0432 \\u0432\\u0438\\u0434\\u0435 CaS. \\u0421\\u0442\\u0440\\u0435\\u043c\\u044f\\u0442\\u0441\\u044f \\u0441\\u043e\\u0437\\u0434\\u0430\\u0442\\u044c \\u043d\\u0430\\u0438\\u0431\\u043e\\u043b\\u0435\\u0435 \\u043b\\u0435\\u0433\\u043a\\u043e\\u043f\\u043b\\u0430\\u0432\\u043a\\u0438\\u0439 \\u0448\\u043b\\u0430\\u043a, \\u043f\\u043e\\u044d\\u0442\\u043e\\u043c\\u0443, \\u0432 \\u0437\\u0430\\u0432\\u0438\\u0441\\u0438\\u043c\\u043e\\u0441\\u0442\\u0438 \\u043e\\u0442 \\u0442\\u0438\\u043f\\u0430 \\u043f\\u0440\\u0438\\u043c\\u0435\\u0441\\u0435\\u0439 \\u0432 \\u0438\\u0441\\u043f\\u043e\\u043b\\u044c\\u0437\\u0443\\u0435\\u043c\\u043e\\u0439 \\u0440\\u0443\\u0434\\u0435 \\u0432 \\u0448\\u0438\\u0445\\u0442\\u0443 \\u0434\\u043e\\u0431\\u0430\\u0432\\u043b\\u044f\\u044e\\u0442 \\u043b\\u0438\\u0431\\u043e \\u043a\\u0438\\u0441\\u043b\\u044b\\u0435 (Si\\u041e 2 ), \\u043b\\u0438\\u0431\\u043e \\u0449\\u0435\\u043b\\u043e\\u0447\\u043d\\u044b\\u0435 \\u043a\\u043e\\u043c\\u043f\\u043e\\u043d\\u0435\\u043d\\u0442\\u044b (\\u043e\\u043a\\u0441\\u0438\\u0434\\u044b \\u043a\\u0430\\u043b\\u044c\\u0446\\u0438\\u044f \\u0438 \\u043c\\u0430\\u0433\\u043d\\u0438\\u044f).\\r\\n\\u041e\\u0433\\u043d\\u0435\\u0443\\u043f\\u043e\\u0440\\u043d\\u044b\\u0435 \\u043c\\u0430\\u0442\\u0435\\u0440\\u0438\\u0430\\u043b\\u044b \\u0434\\u043e\\u043c\\u0435\\u043d\\u043d\\u044b\\u0445 \\u043f\\u0435\\u0447\\u0435\\u0439.\\r\\n1. \\u0423\\u0432\\u0435\\u043b\\u0438\\u0447\\u0435\\u043d\\u0438\\u044f \\u043d\\u0435\\u043f\\u0440\\u044f\\u043c\\u043e\\u0433\\u043e \\u0438 \\u0443\\u043c\\u0435\\u043d\\u044c\\u0448\\u0435\\u043d\\u0438\\u044f \\u043f\\u0440\\u044f\\u043c\\u043e\\u0433\\u043e \\u0432\\u043e\\u0441\\u0441\\u0442\\u0430\\u043d\\u043e\\u0432\\u043b\\u0435\\u043d\\u0438\\u044f.\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"83187133977\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"178.168.220.14\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-05 02:52:40'),(482,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"maison.so11@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Cindyhab\",\"label\":\"First name\"},\"phone\":{\"value\":\"83227736678\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Free sex game: https:\\/\\/2track.info\\/aSsQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"94.231.145.22\",\"label\":\"IP Address\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"29e93ce1-bcc7-4e64-bbe9-f2fd6dcfaf04\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2022-01-05 06:55:40'),(483,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"i1a04qap@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Dycle\",\"label\":\"First name\"},\"phone\":{\"value\":\"86462426315\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi, this is Irina. I am sending you my intimate photos as I promised. https:\\/\\/tinyurl.com\\/y6nlxqqw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.128\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-05 11:22:15'),(484,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Chrissy\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Allan\",\"label\":\"Last name\"},\"email\":{\"value\":\"chrissy@youralexadirectory.link\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello, we need some additional information regarding your business to be registered on Amazon Alexa and Siri (iPhones) so people can find your company using Voice Search. \\r\\n\\r\\nThere are more then 31,500 Voice Searches being done every second, wouldn\'t you agree its time to get your fair share of those searches?\\r\\n\\r\\nIts simple & easy; Register your business here --> \\r\\nhttps:\\/\\/voiceregbiz1.xyz\\/mroe-cusotmers\\/?=translucentcomputing.com\\r\\n\\r\\n\\r\\nChrissy\\r\\nVoice Activation Follow-up Specialist\\r\\nYour Alexa Directory\\r\\n\\r\\n\\r\\n\\r\\n \\r\\n2764 Pleasant Road Suite Suite A PMB 708\\r\\nFort Mill, SC 29708\\r\\n\\r\\nYou can skip future marketing messages here:\\r\\nhttps:\\/\\/voiceregbiz1.xyz\\/unsubscribe.php\\/?site=translucentcomputing.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"805-372-3366\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"196.240.105.134\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-05 16:20:45'),(485,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Robertkes\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Robertkes\",\"label\":\"Last name\"},\"email\":{\"value\":\"valentinakimov9460@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u0420\\u0430\\u0437\\u043c\\u0435\\u0449\\u0435\\u043d\\u0438\\u0435 : \\u043d\\u0430 \\u043e\\u0437\\u0435\\u0440\\u0435 «\\u0422\\u0443\\u0440\\u0433\\u043e\\u044f\\u043a» \\u0435\\u0441\\u0442\\u044c \\u0431\\u043e\\u0433\\u0430\\u0442\\u044b\\u0439 \\u0432\\u044b\\u0431\\u043e\\u0440 \\u043e\\u0442\\u0435\\u043b\\u0435\\u0439 \\u0438 \\u0431\\u0430\\u0437 \\u043e\\u0442\\u0434\\u044b\\u0445\\u0430, \\u0432 \\u0442\\u043e\\u043c \\u0447\\u0438\\u0441\\u043b\\u0435 \\u0438\\u0437\\u0432\\u0435\\u0441\\u0442\\u043d\\u044b\\u0435 \\u043a\\u043b\\u0443\\u0431-\\u043e\\u0442\\u0435\\u043b\\u044c «\\u0417\\u043e\\u043b\\u043e\\u0442\\u043e\\u0439 \\u043f\\u043b\\u044f\\u0436», \\u043e\\u0442\\u0435\\u043b\\u044c «\\u0424\\u043e\\u043d\\u0433\\u0440\\u0430\\u0434», \\u043e\\u0442\\u0435\\u043b\\u044c «\\u041a\\u0440\\u0443\\u0442\\u0438\\u043a\\u0438». \\u041d\\u043e \\u044d\\u0442\\u043e \\u043d\\u0435\\u0434\\u0435\\u0448\\u0451\\u0432\\u044b\\u0435 \\u0432\\u0430\\u0440\\u0438\\u0430\\u043d\\u0442\\u044b \\u0440\\u0430\\u0437\\u043c\\u0435\\u0449\\u0435\\u043d\\u0438\\u044f. \\u0411\\u044e\\u0434\\u0436\\u0435\\u0442\\u043d\\u044b\\u043c \\u0442\\u0443\\u0440\\u0438\\u0441\\u0442\\u0430\\u043c \\u043c\\u043e\\u0436\\u043d\\u043e \\u0440\\u0430\\u0441\\u0441\\u043c\\u043e\\u0442\\u0440\\u0435\\u0442\\u044c, \\u043d\\u0430\\u043f\\u0440\\u0438\\u043c\\u0435\\u0440, \\u0445\\u043e\\u0441\\u0442\\u0435\\u043b «\\u0412\\u0435\\u043b\\u044c\\u0432\\u0435\\u0442» \\u0432 \\u041c\\u0438\\u0430\\u0441\\u0441\\u0435 (\\u043e\\u0442 900 \\u0440\\u0443\\u0431\\u043b\\u0435\\u0439 \\u0432 \\u0441\\u0443\\u0442\\u043a\\u0438, \\u0437\\u0430\\u0431\\u0440\\u043e\\u043d\\u0438\\u0440\\u043e\\u0432\\u0430\\u0442\\u044c \\u043c\\u043e\\u0436\\u043d\\u043e \\u0447\\u0435\\u0440\\u0435\\u0437 Booking.com).\\r\\n\\u0411\\u043e\\u0442\\u0430\\u043d\\u0438\\u0447\\u0435\\u0441\\u043a\\u0438\\u0439 \\u0441\\u0430\\u0434. \\u0411\\u043e\\u043b\\u044c\\u0448\\u0430\\u044f \\u043a\\u043e\\u043b\\u043b\\u0435\\u043a\\u0446\\u0438\\u044f \\u043c\\u0435\\u0441\\u0442\\u043d\\u044b\\u0445 \\u0438 \\u044d\\u043a\\u0437\\u043e\\u0442\\u0438\\u0447\\u0435\\u0441\\u043a\\u0438\\u0445 \\u0440\\u0430\\u0441\\u0442\\u0435\\u043d\\u0438\\u0439, \\u0440\\u0430\\u0441\\u043f\\u043e\\u043b\\u043e\\u0436\\u0435\\u043d\\u043d\\u0430\\u044f \\u043d\\u0430 \\u0442\\u0435\\u0440\\u0440\\u0438\\u0442\\u043e\\u0440\\u0438\\u0438 \\u0432 3 \\u0433\\u0430. \\u0413\\u0435\\u043e\\u0442\\u0435\\u0440\\u043c\\u0430\\u043b\\u044c\\u043d\\u044b\\u0435 \\u0438\\u0441\\u0442\\u043e\\u0447\\u043d\\u0438\\u043a\\u0438. \\u041d\\u0430\\u0445\\u043e\\u0434\\u044f\\u0442\\u0441\\u044f \\u0432 \\u043e\\u043a\\u0440\\u0435\\u0441\\u0442\\u043d\\u043e\\u0441\\u0442\\u044f\\u0445 \\u0433\\u043e\\u0440\\u043e\\u0434\\u0430. \\u0422\\u0435\\u043c\\u043f\\u0435\\u0440\\u0430\\u0442\\u0443\\u0440\\u0430 \\u0432 \\u043d\\u0438\\u0445 \\u0434\\u0435\\u0440\\u0436\\u0438\\u0442\\u0441\\u044f \\u043e\\u0442 37 \\u0434\\u043e 50 \\u0433\\u0440\\u0430\\u0434\\u0443\\u0441\\u043e\\u0432 \\u0432\\u044b\\u0448\\u0435 \\u043d\\u0443\\u043b\\u044f. \\u0418\\u0441\\u0442\\u043e\\u0447\\u043d\\u0438\\u043a\\u0438 \\u043e\\u0431\\u043b\\u0430\\u0434\\u0430\\u044e\\u0442 \\u0431\\u0430\\u043b\\u044c\\u043d\\u0435\\u043e\\u043b\\u043e\\u0433\\u0438\\u0447\\u0435\\u0441\\u043a\\u0438\\u043c\\u0438 \\u0441\\u0432\\u043e\\u0439\\u0441\\u0442\\u0432\\u0430\\u043c\\u0438. \\u041f\\u0430\\u043c\\u044f\\u0442\\u043d\\u0438\\u043a \\u0443\\u0447\\u0430\\u0449\\u0438\\u043c\\u0441\\u044f \\u0448\\u043a\\u043e\\u043b, \\u043d\\u0435 \\u0432\\u0435\\u0440\\u043d\\u0443\\u0432\\u0448\\u0438\\u043c\\u0441\\u044f \\u0441 \\u0432\\u043e\\u0439\\u043d\\u044b. \\u0421\\u043a\\u0443\\u043b\\u044c\\u043f\\u0442\\u0443\\u0440\\u0430 \\u0438\\u0437\\u043e\\u0431\\u0440\\u0430\\u0436\\u0430\\u0435\\u0442 \\u044e\\u043d\\u043e\\u0448\\u0443 \\u0432 \\u0441\\u043e\\u043b\\u0434\\u0430\\u0442\\u0441\\u043a\\u043e\\u0439 \\u0448\\u0438\\u043d\\u0435\\u043b\\u0438 \\u0438 \\u0434\\u0435\\u0432\\u0443\\u0448\\u043a\\u0443, \\u043a\\u043e\\u0442\\u043e\\u0440\\u0430\\u044f \\u0435\\u0433\\u043e \\u043f\\u0440\\u043e\\u0432\\u043e\\u0436\\u0430\\u0435\\u0442. \\u041f\\u0430\\u043c\\u044f\\u0442\\u043d\\u0438\\u043a \\u043f\\u043e\\u0441\\u0432\\u044f\\u0449\\u0435\\u043d \\u0448\\u043a\\u043e\\u043b\\u044c\\u043d\\u0438\\u043a\\u0430\\u043c-\\u0432\\u044b\\u043f\\u0443\\u0441\\u043a\\u043d\\u0438\\u043a\\u0430\\u043c \\u0442\\u044e\\u043c\\u0435\\u043d\\u0441\\u043a\\u0438\\u0445 \\u0448\\u043a\\u043e\\u043b, \\u0443\\u0448\\u0435\\u0434\\u0448\\u0438\\u043c \\u0432\\u043e\\u0435\\u0432\\u0430\\u0442\\u044c \\u0438 \\u043d\\u0435 \\u0432\\u0435\\u0440\\u043d\\u0443\\u0432\\u0448\\u0438\\u043c\\u0441\\u044f \\u043d\\u0430\\u0437\\u0430\\u0434. \\u0421\\u043a\\u0432\\u0435\\u0440 \\u0441\\u0438\\u0431\\u0438\\u0440\\u0441\\u043a\\u0438\\u0445 \\u043a\\u043e\\u0448\\u0435\\u043a. \\u041d\\u0430\\u0437\\u0432\\u0430\\u043d\\u0438\\u0435 \\u0434\\u0430\\u043b\\u0438 \\u0436\\u0438\\u0442\\u0435\\u043b\\u0438 \\u0422\\u044e\\u043c\\u0435\\u043d\\u0438 \\u0432 \\u043f\\u0430\\u043c\\u044f\\u0442\\u044c \\u043e \\u043a\\u043e\\u0448\\u043a\\u0430\\u0445, \\u043a\\u043e\\u0442\\u043e\\u0440\\u044b\\u0445 \\u0441\\u043e\\u0431\\u0438\\u0440\\u0430\\u043b\\u0438 \\u043f\\u043e \\u0432\\u0441\\u0435\\u0439 \\u0421\\u0438\\u0431\\u0438\\u0440\\u0438 \\u0434\\u043b\\u044f \\u043e\\u0442\\u043f\\u0440\\u0430\\u0432\\u043a\\u0438 \\u0432 \\u043f\\u043e\\u0441\\u043b\\u0435\\u0431\\u043b\\u043e\\u043a\\u0430\\u0434\\u043d\\u044b\\u0439 \\u041b\\u0435\\u043d\\u0438\\u043d\\u0433\\u0440\\u0430\\u0434. \\u041a\\u043e\\u043b\\u043b\\u0435\\u043a\\u0446\\u0438\\u0438 \\u042d\\u0440\\u043c\\u0438\\u0442\\u0430\\u0436\\u0430 \\u043d\\u0430\\u0434\\u043e \\u0431\\u044b\\u043b\\u043e \\u0441\\u043f\\u0430\\u0441\\u0430\\u0442\\u044c \\u043e\\u0442 \\u043a\\u0440\\u044b\\u0441, \\u0430 \\u043a\\u043e\\u0448\\u0435\\u043a \\u0432 \\u0433\\u043e\\u0440\\u043e\\u0434\\u0435 \\u043d\\u0435 \\u043e\\u0441\\u0442\\u0430\\u043b\\u043e\\u0441\\u044c. \\u0412\\u0441\\u0435\\u0433\\u043e \\u0438\\u0437 \\u0441\\u0438\\u0431\\u0438\\u0440\\u0441\\u043a\\u0438\\u0445 \\u0433\\u043e\\u0440\\u043e\\u0434\\u043e\\u0432 \\u0431\\u044b\\u043b\\u043e \\u043e\\u0442\\u043f\\u0440\\u0430\\u0432\\u043b\\u0435\\u043d\\u043e \\u043e\\u043a\\u043e\\u043b\\u043e 5 \\u0442\\u044b\\u0441\\u044f\\u0447 \\u0436\\u0438\\u0432\\u043e\\u0442\\u043d\\u044b\\u0445.\\r\\n\\u0427\\u0442\\u043e \\u043f\\u043e\\u0441\\u043c\\u043e\\u0442\\u0440\\u0435\\u0442\\u044c : \\u0440\\u0435\\u043a\\u0430 \\u0421\\u0438\\u043d\\u0430\\u0440\\u0430.\\r\\n \\r\\nhttps:\\/\\/moooga.ru\\/kitaj\\/pekin-kitaj-top-7-mest-kotorye-nuzhno-posetit-2021-travel-times\\/\\r\\n\\u041f\\u0443\\u0442\\u0435\\u0448\\u0435\\u0441\\u0442\\u0432\\u0438\\u0435 \\u043a \\u044d\\u0442\\u043e\\u0439 \\u0434\\u043e\\u0441\\u0442\\u043e\\u043f\\u0440\\u0438\\u043c\\u0435\\u0447\\u0430\\u0442\\u0435\\u043b\\u044c\\u043d\\u043e\\u0441\\u0442\\u0438 \\u0441\\u0442\\u0430\\u043d\\u0435\\u0442 \\u0438\\u0441\\u043f\\u044b\\u0442\\u0430\\u043d\\u0438\\u0435\\u043c \\u0434\\u043b\\u044f \\u043d\\u0435\\u043e\\u043f\\u044b\\u0442\\u043d\\u044b\\u0445 \\u0442\\u0443\\u0440\\u0438\\u0441\\u0442\\u043e\\u0432: \\u0434\\u043e\\u0431\\u0438\\u0440\\u0430\\u0442\\u044c\\u0441\\u044f \\u043f\\u0440\\u0438\\u0434\\u0435\\u0442\\u0441\\u044f \\u043f\\u0435\\u0448\\u043a\\u043e\\u043c \\u043e\\u043a\\u043e\\u043b\\u043e \\u0434\\u0432\\u0443\\u0445 \\u0434\\u043d\\u0435\\u0439, \\u0438\\u0437 \\u043a\\u043e\\u0442\\u043e\\u0440\\u044b\\u0445 10-12 \\u0447\\u0430\\u0441\\u043e\\u0432 \\u0443\\u0439\\u0434\\u0435\\u0442 \\u043d\\u0430 \\u0445\\u043e\\u0434\\u044c\\u0431\\u0443.\\r\\n\\u041a\\u0430\\u043a \\u0434\\u043e\\u0431\\u0440\\u0430\\u0442\\u044c\\u0441\\u044f : \\u0432\\u044b\\u0435\\u0437\\u0436\\u0430\\u0435\\u043c \\u0438\\u0437 \\u0427\\u0435\\u043b\\u044f\\u0431\\u0438\\u043d\\u0441\\u043a\\u0430 \\u0432 \\u0441\\u0442\\u043e\\u0440\\u043e\\u043d\\u0443 \\u0410\\u0448\\u0438. \\u041f\\u043e\\u0441\\u043b\\u0435 \\u043f\\u043e\\u0432\\u043e\\u0440\\u043e\\u0442\\u0430 \\u043d\\u0430 \\u0410\\u0448\\u0443 \\u043c\\u0438\\u043d\\u0443\\u0435\\u043c \\u0434\\u0435\\u0440\\u0435\\u0432\\u043d\\u044e \\u0423\\u043a. \\u041e\\u0437\\u0435\\u0440\\u043e \\u043d\\u0430\\u0445\\u043e\\u0434\\u0438\\u0442\\u0441\\u044f \\u043d\\u0430 \\u043e\\u043a\\u0440\\u0430\\u0438\\u043d\\u0435 \\u0423\\u043a\\u0430, \\u043f\\u0435\\u0440\\u0435\\u0434 \\u043f\\u043e\\u0441\\u0451\\u043b\\u043a\\u043e\\u043c \\u0438\\u043c\\u0435\\u043d\\u0438 \\u0413\\u043e\\u0440\\u044c\\u043a\\u043e\\u0433\\u043e.\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"89926738411\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"178.168.220.14\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-07 10:34:45'),(486,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"estkysen@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041e\\u0441\\u0432\\u0435\\u0434\\u043e\\u043c\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u043e \\u0442\\u043e\\u043c \\u0447\\u0442\\u043e \\u043f\\u0440\\u0438\\u043d\\u044f\\u0442 \\u0432\\u0435\\u0440\\u0434\\u0438\\u043a\\u0442 \\u043e\\u0431\\u0435\\u0441\\u043f\\u0435\\u0447\\u0438\\u0442\\u044c \\u0412\\u0430\\u043c \\u043d\\u0435\\u043a\\u0443\\u044e \\u0441\\u0443\\u043c\\u043c\\u0443. \\u041e\\u0431\\u0435\\u0437\\u043e\\u043f\\u0430\\u0441\\u044c\\u0442\\u0435 \\u0441\\u0435\\u0431\\u044f! \\u0441\\u0438\\u044e\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u043d\\u043e \\u043f\\u0440\\u043e\\u0439\\u0442\\u0438 \\u0448\\u0430\\u0433\\u0438 \\u043f\\u0440\\u043e\\u0439\\u0434\\u044f \\u043d\\u0430 \\u043e\\u0444\\u0438\\u0446\\u0438\\u0430\\u043b\\u044c\\u043d\\u0443\\u044e \\u0441\\u0442\\u0440\\u0430\\u043d\\u0438\\u0446\\u0443 \\u0441\\u0430\\u0439\\u0442\\u0430 \\u0432 \\u0442\\u0435\\u0447\\u0435\\u043d\\u0438\\u0435 5 \\u0447\\u0430\\u0441\\u043e\\u0432.\\u041d\\u0435 \\u0443\\u043f\\u0443\\u0441\\u0442\\u0438\\u0442\\u0435 \\u043c\\u043e\\u043c\\u0435\\u043d\\u0442 \\u043f\\u043e\\u043a\\u0430 \\u0412\\u0430\\u0448 \\u0434\\u043e\\u0441\\u0442\\u0443\\u043f \\u0432 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u0443 \\u043d\\u0435 \\u0437\\u0430\\u0431\\u043b\\u043e\\u043a\\u0438\\u0440\\u043e\\u0432\\u0430\\u043d!\\u0417\\u0430\\u0439\\u0442\\u0438 \\u0432 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u0443: www.tinyurl.com\\/StEUFFey SVWVE105855THRT\",\"label\":\"First name\"},\"phone\":{\"value\":\"81361982748\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hF7ot4Z zigc yevEaRb zZGXOmi veMs z5soKUv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.187.72\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-07 22:26:43'),(487,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"estkysen@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0418\\u043d\\u0444\\u043e\\u0440\\u043c\\u0438\\u0440\\u0443\\u0435\\u043c \\u0412\\u0430\\u0441 \\u043e \\u0442\\u043e\\u043c \\u0447\\u0442\\u043e \\u043f\\u0440\\u0438\\u043d\\u044f\\u0442 \\u0432\\u0435\\u0440\\u0434\\u0438\\u043a\\u0442 \\u043e\\u0431\\u0435\\u0441\\u043f\\u0435\\u0447\\u0438\\u0442\\u044c \\u0412\\u0430\\u043c \\u043d\\u0435\\u043a\\u0443\\u044e \\u0441\\u0443\\u043c\\u043c\\u0443. \\u0420\\u0435\\u043a\\u043e\\u043c\\u0435\\u043d\\u0434\\u0443\\u0435\\u043c \\u043d\\u0435 \\u043e\\u0442\\u043a\\u043b\\u0430\\u0434\\u044b\\u0432\\u0430\\u044f \\u043f\\u0440\\u043e\\u0439\\u0442\\u0438 \\u0448\\u0430\\u0433\\u0438 \\u043f\\u0435\\u0440\\u0435\\u0439\\u0434\\u044f \\u043d\\u0430 \\u043e\\u0444\\u0438\\u0446\\u0438\\u0430\\u043b\\u044c\\u043d\\u0443\\u044e \\u0441\\u0442\\u0440\\u0430\\u043d\\u0438\\u0446\\u0443 \\u0441\\u0430\\u0439\\u0442\\u0430 \\u0432 \\u0442\\u0435\\u0447\\u0435\\u043d\\u0438\\u0435 30 \\u043c\\u0438\\u043d\\u0443\\u0442.\\u041d\\u0435 \\u043f\\u0440\\u043e\\u043f\\u0443\\u0441\\u0442\\u0438\\u0442\\u0435 \\u043c\\u043e\\u043c\\u0435\\u043d\\u0442! . \\u0412 \\u0441\\u043b\\u0443\\u0447\\u0430\\u0435 \\u043f\\u0440\\u043e\\u0441\\u0440\\u043e\\u0447\\u043a\\u0438 \\u0412\\u0430\\u0448 \\u0434\\u043e\\u0441\\u0442\\u0443\\u043f \\u0432 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u0443 \\u0431\\u0443\\u0434\\u0435\\u0442 \\u0437\\u0430\\u0431\\u043b\\u043e\\u043a\\u0438\\u0440\\u043e\\u0432\\u0430\\u043d!\\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434 \\u043d\\u0430 \\u0441\\u0442\\u0440\\u0430\\u043d\\u0438\\u0446\\u0443: www.tinyurl.com\\/oUMcuMUD TUJE105855SVWVE\",\"label\":\"First name\"},\"phone\":{\"value\":\"81668822969\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KXHBbus 9NTi 6pjZVKF Jj5vzRu sZhE ZDSM167\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.187.72\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-08 00:07:41'),(488,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"estkysen@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0423\\u0432\\u0435\\u0434\\u043e\\u043c\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u043e\\u0431 \\u043e\\u0434\\u043e\\u0431\\u0440\\u0435\\u043d\\u0438\\u0438 \\u0432\\u044b\\u0434\\u0430\\u0442\\u044c \\u0412\\u0430\\u043c \\u043d\\u0435\\u043a\\u0443\\u044e \\u0441\\u0443\\u043c\\u043c\\u0443. \\u0420\\u0435\\u043a\\u043e\\u043c\\u0435\\u043d\\u0434\\u0443\\u0435\\u043c \\u0441\\u0435\\u0439\\u0447\\u0430\\u0441 \\u0441\\u0438\\u044e\\u0441\\u0435\\u043a\\u0443\\u043d\\u0434\\u043d\\u043e \\u043e\\u0444\\u043e\\u0440\\u043c\\u0438\\u0442\\u044c \\u0434\\u0435\\u0442\\u0430\\u043b\\u0438 \\u0437\\u0430\\u0439\\u0434\\u044f \\u043d\\u0430 \\u0433\\u043b\\u0430\\u0432\\u043d\\u0443\\u044e \\u0441\\u0442\\u0440\\u0430\\u043d\\u0438\\u0446\\u0443 \\u043f\\u043e\\u0447\\u0442\\u043e\\u0432\\u043e\\u0433\\u043e \\u0441\\u0435\\u0440\\u0432\\u0438\\u0441\\u0430 \\u0432 \\u043c\\u043e\\u043c\\u0435\\u043d\\u0442 \\u0434\\u043e 2 \\u0434\\u043d\\u0435\\u0439.\\u041d\\u0435 \\u0443\\u043f\\u0443\\u0441\\u0442\\u0438\\u0442\\u0435 \\u043c\\u043e\\u043c\\u0435\\u043d\\u0442 . \\u0412 \\u0441\\u043b\\u0443\\u0447\\u0430\\u0435 \\u043f\\u0440\\u043e\\u0441\\u0440\\u043e\\u0447\\u043a\\u0438 \\u0412\\u0430\\u0448 \\u0434\\u043e\\u0441\\u0442\\u0443\\u043f \\u0432 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u0443 \\u0431\\u0443\\u0434\\u0435\\u0442 \\u0430\\u043d\\u043d\\u0443\\u043b\\u0438\\u0440\\u043e\\u0432\\u0430\\u043d!\\u0417\\u0430\\u0439\\u0442\\u0438 \\u0432 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u0443: www.tinyurl.com\\/wBaq5lB9 JUYEGRT105855NFDAW\",\"label\":\"First name\"},\"phone\":{\"value\":\"83891194222\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uW42cog j4sK U4sFQ3L CyW7ryS sYY7 KFqNFk4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.187.72\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-08 11:05:31'),(489,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Horny\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Shriya\",\"label\":\"Last name\"},\"email\":{\"value\":\"isabel.elia@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Horny Shriya sent you 2 messages yesterday. She is online now.\\r\\nClick the link below to view the message and reply to her.\\r\\n\\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/HornyShriya\\/\",\"label\":\"Message\"},\"phone\":{\"value\":\"9043558989\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"168.90.97.147\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-08 14:15:33'),(490,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"HermanSpess\",\"label\":\"First name\"},\"lastname\":{\"value\":\"HermanSpess\",\"label\":\"Last name\"},\"email\":{\"value\":\"denisartemov4681@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"2.5. \\u041f\\u043e\\u043b \\u0434\\u043e\\u043b\\u0436\\u0435\\u043d \\u0431\\u044b\\u0442\\u044c \\u0440\\u043e\\u0432\\u043d\\u044b\\u043c, \\u0431\\u0435\\u0437 \\u0432\\u044b\\u0431\\u043e\\u0438\\u043d \\u0438\\u043b\\u0438 \\u0432\\u044b\\u0441\\u0442\\u0443\\u043f\\u0430\\u044e\\u0449\\u0438\\u0445 \\u0447\\u0430\\u0441\\u0442\\u0435\\u0439 \\u043f\\u043b\\u0438\\u0442\\u043a\\u0438.\\r\\n6) \\u0433\\u0440\\u0443\\u043f\\u043f\\u043e\\u0432\\u0430\\u044f \\u0442\\u0435\\u0445\\u043d\\u043e\\u043b\\u043e\\u0433\\u0438\\u044f \\u043e\\u0431\\u0440\\u0430\\u0431\\u043e\\u0442\\u043a\\u0438 \\u0434\\u0435\\u0442\\u0430\\u043b\\u0435\\u0439.\\r\\n \\r\\nhttps:\\/\\/parkgarten.ru\\/tyazhelye-metally\\/tyazhelye-metally-kak-faktor-zagryazneniya-okruzhajushhej-sredy\\/\\r\\n \\r\\n\\u0421\\u0443\\u0449\\u0435\\u0441\\u0442\\u0432\\u0443\\u0435\\u0442 \\u0435\\u0449\\u0435 \\u043e\\u0441\\u043e\\u0431\\u043e\\u0435 \\u0443\\u0441\\u0442\\u0440\\u043e\\u0439\\u0441\\u0442\\u0432\\u043e, \\u043a\\u043e\\u0442\\u043e\\u0440\\u043e\\u0435 \\u0442\\u0430\\u043a \\u0441\\u0440\\u0430\\u0431\\u0430\\u0442\\u044b\\u0432\\u0430\\u0435\\u0442, \\u0447\\u0442\\u043e \\u043f\\u0440\\u0438 \\u043e\\u0441\\u0442\\u0430\\u043d\\u043e\\u0432\\u043a\\u0435 \\u043b\\u0438\\u043d\\u0438\\u0438 \\u0440\\u0430\\u0431\\u043e\\u0447\\u0438\\u0439 \\u0445\\u043e\\u0434 \\u0435\\u0435 \\u0438\\u0441\\u043f\\u043e\\u043b\\u043d\\u0438\\u0442\\u0435\\u043b\\u044c\\u043d\\u044b\\u0445 \\u0447\\u0430\\u0441\\u0442\\u0435\\u0439, \\u0433\\u0434\\u0435 \\u0431\\u044b \\u0432 \\u044d\\u0442\\u043e\\u0442 \\u043c\\u043e\\u043c\\u0435\\u043d\\u0442 \\u043e\\u043d\\u0438 \\u043d\\u0435 \\u043d\\u0430\\u0445\\u043e\\u0434\\u0438\\u043b\\u0438\\u0441\\u044c, \\u043f\\u0440\\u043e\\u0434\\u043e\\u043b\\u0436\\u0430\\u0435\\u0442\\u0441\\u044f \\u0434\\u043e \\u0442\\u043e\\u0433\\u043e, \\u043a\\u0430\\u043a \\u043e\\u043d\\u0438 \\u043f\\u0440\\u0438\\u0434\\u0443\\u0442 \\u0432 \\u0441\\u0432\\u043e\\u0435 \\u043d\\u0430\\u0447\\u0430\\u043b\\u044c\\u043d\\u043e\\u0435 \\u043f\\u043e\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0435. \\u0422\\u043e\\u0433\\u0434\\u0430 \\u043d\\u0430\\u0441\\u0442\\u0443\\u043f\\u0430\\u0435\\u0442 \\u043f\\u043e\\u043a\\u043e\\u0439, \\u043b\\u0438\\u043d\\u0438\\u044f \\u00ab\\u043e\\u0442\\u0434\\u044b\\u0445\\u0430\\u0435\\u0442\\u00bb \\u0434\\u043e \\u043d\\u043e\\u0432\\u043e\\u0439 \\u043a\\u043e\\u043c\\u0430\\u043d\\u0434\\u044b \\u0441 \\u043f\\u0443\\u043b\\u044c\\u0442\\u0430, \\u0434\\u043e \\u043d\\u043e\\u0432\\u043e\\u0433\\u043e \\u043d\\u0430\\u0436\\u0438\\u043c\\u0430 \\u043f\\u0443\\u0441\\u043a\\u043e\\u0432\\u043e\\u0439 \\u043a\\u043d\\u043e\\u043f\\u043a\\u0438.\\r\\n\\u0421\\u0438\\u043b\\u043e\\u0432\\u044b\\u0435 \\u0443\\u0437\\u043b\\u044b.\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"87472422414\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"178.168.220.14\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-09 10:12:36'),(491,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Mathew\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Barrett\",\"label\":\"Last name\"},\"email\":{\"value\":\"webdesignzgenius@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi!\\r\\n\\r\\nI am an expert in social media marketing and I would like to know if you are looking for help with generating sales through social media. \\r\\n\\r\\nLet me know if this is something you\'re interested in and I can provide you with more information.\\n\\nMathew Barrett\",\"label\":\"Message\"},\"phone\":{\"value\":\"(708) 638-6574\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"104.144.112.103\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-09 10:42:15'),(492,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ccamddynsmall@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/2vKv0w5O JUYGTD105855JUYEGRT\",\"label\":\"First name\"},\"phone\":{\"value\":\"88921817336\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BclBNQ3 pKD8 KTQfzVW VMC92jd H23K jtUDHhf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.187.72\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-09 14:12:17'),(493,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ccamddynsmall@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/nA9PGSp0 JUYEGRT105855MTGJNF\",\"label\":\"First name\"},\"phone\":{\"value\":\"86593464657\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wu7OdbC 3MWQ wiafxAi KQgA6Vl 27WT 9ID33W4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.187.72\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-09 19:47:10'),(494,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ccamddynsmall@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/BvpGgiYd SVWVE105855SVWVE\",\"label\":\"First name\"},\"phone\":{\"value\":\"83181579848\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eOVOpRD aXS3 nW9985Z uUFPNWO Yv7u T0ADXNn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.187.72\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-09 23:26:27'),(495,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ccamddynsmall@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/vxAmiauQ SVWVE105855THRT\",\"label\":\"First name\"},\"phone\":{\"value\":\"85322128847\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NODdPLO maHp FINAH8W hpGaQA8 acYQ cqfNbV0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.187.72\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-10 17:20:28'),(496,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"m46g3dc6@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Dycle\",\"label\":\"First name\"},\"phone\":{\"value\":\"86812663488\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi, this is Julia. I am sending you my intimate photos as I promised. https:\\/\\/tinyurl.com\\/y6xhrnwt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.187.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-10 19:43:47'),(497,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fassinigutaben@mail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"WillardKnots\",\"label\":\"First name\"},\"phone\":{\"value\":\"86126715967\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Bravo, this idea is necessary just by the way\\r\\n nekkidnaked<\\/a>\\r\\n\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"54.39.29.64\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-11 00:36:39'),(498,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"petya.burov.90@inbox.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: https:\\/\\/tdzphvhs.ga\\/ THRT105855JUYGTD\",\"label\":\"First name\"},\"phone\":{\"value\":\"83148388116\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kikQNLe x2FI 4S4fNUf ANKFSbg RR0Y kdc98Ix\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.187.72\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-11 12:30:36'),(499,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Robertkes\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Robertkes\",\"label\":\"Last name\"},\"email\":{\"value\":\"valentinakimov9460@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u041f\\u0435\\u0449\\u0435\\u0440\\u0430 \\u043d\\u0430\\u0437\\u0432\\u0430\\u043d\\u0430 \\u043f\\u043e \\u0438\\u043c\\u0435\\u043d\\u0438 \\u0440\\u0430\\u0441\\u043a\\u043e\\u043b\\u044c\\u043d\\u0438\\u043a\\u0430-\\u043a\\u0435\\u0440\\u0436\\u0430\\u043a\\u0430 \\u0410\\u0432\\u0435\\u0440\\u043a\\u0438\\u044f, \\u043a\\u043e\\u0442\\u043e\\u0440\\u044b\\u0439 \\u043f\\u043e\\u044f\\u0432\\u0438\\u043b\\u0441\\u044f \\u043d\\u0430 \\u0430\\u0439\\u0441\\u043a\\u0438\\u0445 \\u0431\\u0435\\u0440\\u0435\\u0433\\u0430\\u0445 \\u0441\\u0432\\u044b\\u0448\\u0435 100 \\u043b\\u0435\\u0442 \\u043d\\u0430\\u0437\\u0430\\u0434. \\u041e\\u043d \\u043f\\u0440\\u043e\\u0436\\u0438\\u043b \\u0432 \\u044d\\u0442\\u043e\\u0439 \\u043f\\u0435\\u0449\\u0435\\u0440\\u0435 \\u043d\\u0435\\u0441\\u043a\\u043e\\u043b\\u044c\\u043a\\u043e \\u043b\\u0435\\u0442, \\u0430 \\u0437\\u0430\\u0442\\u0435\\u043c \\u0432\\u043d\\u0435\\u0437\\u0430\\u043f\\u043d\\u043e \\u0438\\u0441\\u0447\\u0435\\u0437. \\u0421\\u0443\\u0449\\u0435\\u0441\\u0442\\u0432\\u0443\\u044e\\u0442 \\u0438 \\u0434\\u0440\\u0443\\u0433\\u0438\\u0435 \\u043b\\u0435\\u0433\\u0435\\u043d\\u0434\\u044b, \\u0447\\u0442\\u043e \\u0410\\u0432\\u0435\\u0440\\u043a\\u0438\\u0439 \\u0431\\u044b\\u043b \\u0431\\u0435\\u0433\\u043b\\u044b\\u043c \\u043a\\u0430\\u0442\\u043e\\u0440\\u0436\\u043d\\u0438\\u043a\\u043e\\u043c, \\u0441\\u043a\\u0440\\u044b\\u0432\\u0430\\u0432\\u0448\\u0438\\u043c\\u0441\\u044f \\u043e\\u0442 \\u0432\\u043b\\u0430\\u0441\\u0442\\u0435\\u0439. \\u0422\\u0430\\u043a \\u0438\\u043b\\u0438 \\u0438\\u043d\\u0430\\u0447\\u0435, \\u043f\\u043e \\u043c\\u0435\\u0441\\u0442\\u043d\\u044b\\u043c \\u043f\\u0440\\u0435\\u0434\\u0430\\u043d\\u0438\\u044f\\u043c, \\u0435\\u043c\\u0443 \\u043f\\u043e\\u043c\\u043e\\u0433\\u0430\\u043b\\u0438 \\u043c\\u0435\\u0441\\u0442\\u043d\\u044b\\u0435 \\u0436\\u0438\\u0442\\u0435\\u043b\\u0438, \\u043f\\u0440\\u0438\\u043d\\u043e\\u0441\\u0438\\u0432\\u0448\\u0438\\u0435 \\u0435\\u0434\\u0443. \\u041a\\u0442\\u043e-\\u0442\\u043e \\u0434\\u0430\\u0436\\u0435 \\u0441\\u0447\\u0438\\u0442\\u0430\\u043b \\u0435\\u0433\\u043e \\u0441\\u0432\\u044f\\u0442\\u044b\\u043c. \\u041d\\u0435\\u043a\\u043e\\u0442\\u043e\\u0440\\u044b\\u0435 \\u043d\\u0430\\u0437\\u044b\\u0432\\u0430\\u043b\\u0438 \\u0435\\u0433\\u043e \\u0443\\u0440\\u0430\\u043b\\u044c\\u0441\\u043a\\u0438\\u043c \\u0420\\u0430\\u0441\\u043f\\u0443\\u0442\\u0438\\u043d\\u044b\\u043c. \\u0421\\u043e\\u0433\\u043b\\u0430\\u0441\\u043d\\u043e \\u0434\\u0440\\u0443\\u0433\\u043e\\u043c\\u0443 \\u0443\\u043a\\u043e\\u0440\\u0435\\u043d\\u0438\\u0432\\u0448\\u0435\\u043c\\u0443\\u0441\\u044f \\u043c\\u043d\\u0435\\u043d\\u0438\\u044e, \\u0437\\u0434\\u0435\\u0441\\u044c \\u0434\\u043e \\u0441\\u0430\\u043c\\u043e\\u0439 \\u0441\\u0432\\u043e\\u0435\\u0439 \\u0441\\u043c\\u0435\\u0440\\u0442\\u0438 \\u0441\\u043a\\u0440\\u044b\\u0432\\u0430\\u043b\\u0438\\u0441\\u044c \\u043e\\u0441\\u0442\\u0430\\u0442\\u043a\\u0438 \\u043f\\u0443\\u0433\\u0430\\u0447\\u0451\\u0432\\u0441\\u043a\\u043e\\u0433\\u043e \\u0432\\u043e\\u0439\\u0441\\u043a\\u0430. \\u0417\\u0434\\u0435\\u0441\\u044c \\u0436\\u0435 \\u0431\\u044b\\u043b\\u043e \\u0441\\u043f\\u0440\\u044f\\u0442\\u0430\\u043d\\u043e \\u043d\\u0430\\u0433\\u0440\\u0430\\u0431\\u043b\\u0435\\u043d\\u043d\\u043e\\u0435 \\u0415\\u043c\\u0435\\u043b\\u044c\\u044f\\u043d\\u043e\\u043c \\u041f\\u0443\\u0433\\u0430\\u0447\\u0451\\u0432\\u044b\\u043c \\u0437\\u043e\\u043b\\u043e\\u0442\\u043e. \\u0414\\u0430\\u0436\\u0435 \\u0433\\u043e\\u0432\\u043e\\u0440\\u044f\\u0442, \\u0447\\u0442\\u043e \\u043d\\u0430\\u0445\\u043e\\u0434\\u0438\\u043b\\u0438 \\u0432 \\u0410\\u0432\\u0435\\u0440\\u043a\\u0438\\u0435\\u0432\\u043e\\u0439 \\u042f\\u043c\\u0435 \\u0441\\u0442\\u0430\\u0440\\u0438\\u043d\\u043d\\u044b\\u0435 \\u043c\\u043e\\u043d\\u0435\\u0442\\u044b.\\r\\n\\u041f\\u0430\\u0440\\u043a \\u00ab\\u0411\\u0435\\u0440\\u0435\\u043d\\u0434\\u0435\\u0435\\u0432\\u043e \\u0446\\u0430\\u0440\\u0441\\u0442\\u0432\\u043e\\u00bb\\r\\n\\u0415\\u0449\\u0435 \\u0432 \\u0413\\u0430\\u0433\\u0440\\u0430\\u0445 \\u0438\\u043c\\u0435\\u0435\\u0442\\u0441\\u044f \\u043f\\u0440\\u0438\\u043c\\u043e\\u0440\\u0441\\u043a\\u0438\\u0439 \\u043f\\u0430\\u0440\\u043a \\u043e\\u0441\\u043d\\u043e\\u0432\\u0430\\u043d\\u043d\\u044b\\u0439 \\u043f\\u0440\\u0438\\u043d\\u0446\\u0435\\u043c \\u041e\\u043b\\u044c\\u0434\\u0435\\u043d\\u0431\\u0443\\u0440\\u0433\\u0441\\u043a\\u0438\\u043c, \\u043f\\u0440\\u0435\\u043a\\u0440\\u0430\\u0441\\u043d\\u043e\\u0435 \\u043c\\u0435\\u0441\\u0442\\u043e \\u0434\\u043b\\u044f \\u043f\\u0440\\u043e\\u0433\\u0443\\u043b\\u043e\\u043a \\u0438 \\u043e\\u0442\\u0434\\u044b\\u0445\\u0430. \\u0412 \\u043f\\u0430\\u0440\\u043a\\u0435 \\u0438\\u043c\\u0435\\u0435\\u0442\\u0441\\u044f \\u043c\\u043d\\u043e\\u0436\\u0435\\u0441\\u0442\\u0432\\u043e \\u044d\\u043a\\u0437\\u043e\\u0442\\u0438\\u0447\\u0435\\u0441\\u043a\\u0438\\u0445 \\u0440\\u0430\\u0441\\u0442\\u0435\\u043d\\u0438\\u0439, \\u043f\\u0440\\u0443\\u0434 \\u0441\\u043e \\u0441\\u043a\\u0443\\u043b\\u044c\\u043f\\u0442\\u0443\\u0440\\u043e\\u0439 \\u0441\\u0442\\u0440\\u0435\\u043b\\u0435\\u0446. \\u0412 \\u043d\\u0430\\u0447\\u0430\\u043b\\u0435 \\u043f\\u0430\\u0440\\u043a\\u0430 \\u043d\\u0430\\u0445\\u043e\\u0434\\u0438\\u0442\\u0441\\u044f \\u043c\\u043e\\u0440\\u0441\\u043a\\u0430\\u044f \\u043f\\u0440\\u0438\\u0441\\u0442\\u0430\\u043d\\u044c.\\r\\n \\r\\nhttps:\\/\\/moooga.ru\\/category\\/bali\\/\\r\\n\\u041f\\u043b\\u0430\\u0442\\u043e \\u0413\\u0443\\u043d\\u0438\\u0431.\\r\\n\\u0412 \\u0423\\u0438\\u043d\\u0441\\u043a\\u043e\\u043c \\u0440\\u0430\\u0439\\u043e\\u043d\\u0435 \\u0432\\u043e\\u0437\\u043b\\u0435 \\u0441. \\u0411\\u0435\\u0440\\u0441\\u0430\\u0438 \\u043d\\u0430 \\u043f\\u043e\\u0432\\u0435\\u0440\\u0445\\u043d\\u043e\\u0441\\u0442\\u044c \\u0432\\u044b\\u0442\\u0435\\u043a\\u0430\\u0435\\u0442 \\u0438\\u0441\\u0442\\u043e\\u0447\\u043d\\u0438\\u043a \\u043c\\u0438\\u043d\\u0435\\u0440\\u0430\\u043b\\u044c\\u043d\\u043e\\u0439 \\u0432\\u043e\\u0434\\u044b. \\u041d\\u0430\\u0439\\u0442\\u0438 \\u0435\\u0433\\u043e \\u043d\\u0435\\u0441\\u043b\\u043e\\u0436\\u043d\\u043e \\u043f\\u043e \\u0445\\u0430\\u0440\\u0430\\u043a\\u0442\\u0435\\u0440\\u043d\\u043e\\u043c\\u0443 \\u0441\\u0435\\u0440\\u043e\\u0432\\u043e\\u0434\\u043e\\u0440\\u043e\\u0434\\u043d\\u043e\\u043c\\u0443 \\u00ab\\u0430\\u0440\\u043e\\u043c\\u0430\\u0442\\u0443\\u00bb. \\u0412\\u043e\\u0434\\u0430 \\u043c\\u0443\\u0442\\u043d\\u0430\\u044f \\u0441 \\u0431\\u0435\\u043b\\u0435\\u0441\\u044b\\u043c \\u043e\\u0442\\u0442\\u0435\\u043d\\u043a\\u043e\\u043c, \\u0447\\u0442\\u043e \\u043d\\u0435 \\u044f\\u0432\\u043b\\u044f\\u0435\\u0442\\u0441\\u044f \\u043f\\u0440\\u0435\\u043f\\u044f\\u0442\\u0441\\u0442\\u0432\\u0438\\u0435\\u043c \\u0434\\u043b\\u044f \\u0440\\u0430\\u0441\\u0442\\u0443\\u0449\\u0438\\u0445 \\u0432 \\u043d\\u0435\\u0439 \\u0432\\u043e\\u0434\\u043e\\u0440\\u043e\\u0441\\u043b\\u044f\\u043c. \\u0412 \\u0440\\u0430\\u0439\\u043e\\u043d\\u0435 \\u0438\\u0437\\u0432\\u0435\\u0441\\u0442\\u043d\\u043e 9 \\u0430\\u043d\\u0430\\u043b\\u043e\\u0433\\u0438\\u0447\\u043d\\u044b\\u0445 \\u0438\\u0441\\u0442\\u043e\\u0447\\u043d\\u0438\\u043a\\u043e\\u0432. \\u041e\\u0441\\u043e\\u0431\\u0435\\u043d\\u043d\\u043e\\u0441\\u0442\\u044c \\u0438\\u043c\\u0435\\u043d\\u043d\\u043e \\u044d\\u0442\\u043e\\u0433\\u043e \\u0438\\u0441\\u0442\\u043e\\u0447\\u043d\\u0438\\u043a\\u0430 \\u0432 \\u0435\\u0433\\u043e \\u043b\\u0435\\u0433\\u043a\\u043e\\u0434\\u043e\\u0441\\u0442\\u0443\\u043f\\u043d\\u043e\\u0441\\u0442\\u0438. \\u0412\\u043e\\u0434\\u0430 \\u0437\\u0434\\u0435\\u0441\\u044c \\u043f\\u0440\\u044f\\u043c\\u043e \\u043d\\u0430 \\u043f\\u043e\\u0432\\u0435\\u0440\\u0445\\u043d\\u043e\\u0441\\u0442\\u0438.\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"88435326354\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"178.168.220.14\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-11 12:51:07'),(500,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"petya.burov.90@inbox.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: https:\\/\\/hyylhmtu.ga\\/ JUYGTD105855THRT\",\"label\":\"First name\"},\"phone\":{\"value\":\"82293745668\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"azRLRxR fY5q BJsJnkE Zh7oHbC npND azXSjrO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.95.212\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-11 14:30:40'),(501,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"podgortseva.2022@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: https:\\/\\/uhlsfyhw.ga\\/ MTGJNF105855JUYEGRT\",\"label\":\"First name\"},\"phone\":{\"value\":\"86753216244\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9nut4yY pASP M2dficm Px9hG4v aUWJ dCuU2xI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.95.212\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-11 16:42:06'),(502,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Paterson\\r\\n\",\"label\":\"First name\"},\"phone\":{\"value\":\"86954739528\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello \\r\\n \\r\\nWe all know the importance that dofollow link have on any website`s ranks. \\r\\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \\r\\n \\r\\nBuy quality dofollow links from us, that will impact your ranks in a positive way \\r\\nhttps:\\/\\/www.digital-x-press.com\\/product\\/150-dofollow-backlinks\\/ \\r\\n \\r\\nBest regards \\r\\nMike Paterson\\r\\n \\r\\nsupport@digital-x-press.com\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"191.101.31.93\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-11 19:09:32'),(503,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"r6w7r5vp@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"enquimi\",\"label\":\"First name\"},\"phone\":{\"value\":\"86215216985\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Cryptocurrency rates are breaking records, which means you have the opportunity to make money on cryptocurrencies. Join our system and start making money with us. Go to system: https:\\/\\/tinyurl.com\\/yytyarhh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-12 05:24:03'),(504,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"podgortseva.2022@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: https:\\/\\/eruaszit.ga\\/ SVWVE105855NFDAW\",\"label\":\"First name\"},\"phone\":{\"value\":\"88718571491\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hhPPdZp ZlpZ jYxbmby 5M6pACr lKpJ N7eQrrI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.95.212\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-12 05:46:12'),(505,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Hilda\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Sutton\",\"label\":\"Last name\"},\"email\":{\"value\":\"HildaSutton982@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi there! \\r\\n\\r\\nI am wondering if your company needs help or interested in starting an ad campaign or improving the performance of an existing campaign on platforms like Google Ads, Bing Ads, Facebook Ads, and more by using PPC (Per-Per-Click)? I am an expert in online advertising, and I will provide and will give you guaranteed traffic to your site that can make a huge impact on sales. \\r\\n\\r\\nI look forward to hearing from you.\\n\\nSincerely,\\r\\nHilda Sutton\",\"label\":\"Message\"},\"phone\":{\"value\":\"9662466177\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"45.72.67.57\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-12 08:38:26'),(506,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dietrajsakaerjd@mail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Anthonyvat\",\"label\":\"First name\"},\"phone\":{\"value\":\"83377244597\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Excuse, that I interfere, would like to offer other decision.\\r\\n\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"54.39.29.64\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-13 09:21:36'),(507,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kingdowndensandvt@mail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Michaelanica\",\"label\":\"First name\"},\"phone\":{\"value\":\"83378546454\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Bravo, brilliant phrase and is duly\\r\\n zeenite.com<\\/a>\\r\\n\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"54.39.29.64\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-13 11:06:05'),(508,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"barthel-galabau@t-online.de\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Wesleyrof\",\"label\":\"First name\"},\"phone\":{\"value\":\"82151826244\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"In the last 15 days, I made $3,500,000 from the fall of Bitcoin by investing just $550 once *&\\\"^ \\r\\nNow it has begun to rise in price a little and now I am making money on the rise of Bitcoin %-!# \\r\\nhttp:\\/\\/www.google.com\\/url?q=http%3A%2F%2Fgo.rareerad.com%2F0bnl&sa=D&39=47&usg=AFQjCNHocQZNt5Hwt8vVZiybUqVvDGzMBQ \\r\\nThe best thing is that I do almost nothing and the money goes is passive income (_%& \\r\\nIf you want to work like me, then register, invest once from $500, press a couple of buttons and get passive income as well as enjoy life :) \\r\\nhttp:\\/\\/www.google.com\\/url?q=http%3A%2F%2Fgo.rareerad.com%2F0bnl&sa=D&13=47&usg=AFQjCNHocQZNt5Hwt8vVZiybUqVvDGzMBQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"191.101.31.65\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-14 03:46:39'),(509,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"unlyawapsor0e@mail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Jamesjef\",\"label\":\"First name\"},\"phone\":{\"value\":\"86672164449\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"I advise to you to come on a site where there is a lot of information on a theme interesting you. Will not regret.\\r\\n crying-porn<\\/a>\\r\\n\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"54.39.29.64\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-14 09:50:56'),(510,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"prescharteibasqy@mail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Albertdox\",\"label\":\"First name\"},\"phone\":{\"value\":\"81219971773\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"What nice phrase\\r\\n\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"54.39.29.64\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-14 09:57:41'),(511,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rentvelderetumbhf@mail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"AndrewSow\",\"label\":\"First name\"},\"phone\":{\"value\":\"81256961584\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Instead of criticising write the variants is better.\\r\\n\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"54.39.29.64\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-14 11:22:57'),(512,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"JosephPhade\",\"label\":\"First name\"},\"lastname\":{\"value\":\"JosephPhade\",\"label\":\"Last name\"},\"email\":{\"value\":\"fecvieta1993@mail.ru\",\"label\":\"Email\"},\"message\":{\"value\":\" \\u0414\\u043e\\u043b\\u0433\\u043e \\u0438\\u0441\\u043a\\u0430\\u043b \\u0438 \\u043d\\u0430\\u043a\\u043e\\u043d\\u0435\\u0446 \\u043d\\u0430\\u0448\\u0435\\u043b \\u0434\\u0435\\u0439\\u0441\\u0442\\u0432\\u0438\\u0442\\u0435\\u043b\\u044c\\u043d\\u043e \\u043f\\u043e\\u043b\\u0435\\u0437\\u043d\\u044b\\u0439 \\u0441\\u0430\\u0439\\u0442 \\u043f\\u0440\\u043e \\u0430\\u0432\\u0442\\u043e avtoataman.ru<\\/a> \\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"81811734731\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"178.168.220.14\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-14 22:30:25'),(513,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Horny\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Shriya\",\"label\":\"Last name\"},\"email\":{\"value\":\"ashlee.guzzi@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Horny Shriya sent you 2 messages yesterday. She is online now.\\r\\nClick the link below to view the message and reply to her.\\r\\n\\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/HornyShriya\\/\",\"label\":\"Message\"},\"phone\":{\"value\":\"9043558989\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"168.90.97.141\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-14 23:56:51'),(514,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"Anna-Maria.Holzapfel@gmx.de\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EddieDix\",\"label\":\"First name\"},\"phone\":{\"value\":\"84164281723\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Passives Einkommen Vor 16600 EUR in der Woche >>>>>>>>>>>>>>>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&87=38&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw <<<<<<<<<<<<<<<<<<<<<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"191.101.31.65\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-15 00:07:39'),(515,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Horny\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Shriya\",\"label\":\"Last name\"},\"email\":{\"value\":\"reagan.aline@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Horny Shriya sent you 2 messages yesterday. She is online now.\\r\\nClick the link below to view the message and reply to her.\\r\\n\\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/HornyShriya\\/\",\"label\":\"Message\"},\"phone\":{\"value\":\"9043558989\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"168.90.97.129\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 10:40:39'),(516,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ganeevka@yandex.ru\\r\\n\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0421\\u043e\\u043e\\u0431\\u0449\\u0430\\u0435\\u043c \\u0412\\u0430\\u043c \\u043e\\u0431 \\u043e\\u0434\\u043e\\u0431\\u0440\\u0435\\u043d\\u0438\\u0438 \\u0432\\u044b\\u0434\\u0430\\u0442\\u044c \\u0412\\u0430\\u043c \\u043d\\u0435\\u043a\\u0443\\u044e \\u0441\\u0443\\u043c\\u043c\\u0443. \\u0420\\u0435\\u043a\\u043e\\u043c\\u0435\\u043d\\u0434\\u0443\\u0435\\u043c \\u043d\\u0435\\u043c\\u0435\\u0434\\u043b\\u044f \\u0440\\u0430\\u0437\\u0431\\u0438\\u0440\\u0430\\u0442\\u044c\\u0441\\u044f \\u0441 \\u043f\\u043e\\u0434\\u0440\\u043e\\u0431\\u043d\\u043e\\u0441\\u0442\\u044f\\u043c\\u0438 \\u043f\\u0435\\u0440\\u0435\\u0439\\u0434\\u044f \\u043d\\u0430 \\u043e\\u0444\\u0438\\u0446\\u0438\\u0430\\u043b\\u044c\\u043d\\u0443\\u044e \\u0441\\u0442\\u0440\\u0430\\u043d\\u0438\\u0446\\u0443 \\u043d\\u0430\\u0448\\u0435\\u0433\\u043e \\u0441\\u0435\\u0440\\u0432\\u0438\\u0441\\u0430 \\u0432 \\u043c\\u043e\\u043c\\u0435\\u043d\\u0442 \\u0434\\u043e 2 \\u0434\\u043d\\u0435\\u0439.\\u041d\\u0435 \\u043f\\u0440\\u043e\\u043f\\u0443\\u0441\\u0442\\u0438\\u0442\\u0435 \\u043c\\u043e\\u043c\\u0435\\u043d\\u0442! . \\u0412 \\u0441\\u043b\\u0443\\u0447\\u0430\\u0435 \\u043f\\u0440\\u043e\\u0441\\u0440\\u043e\\u0447\\u043a\\u0438 \\u0412\\u0430\\u0448 \\u0434\\u043e\\u0441\\u0442\\u0443\\u043f \\u0432 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u0443 \\u0431\\u0443\\u0434\\u0435\\u0442 \\u0430\\u043d\\u043d\\u0443\\u043b\\u0438\\u0440\\u043e\\u0432\\u0430\\u043d!\\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434 \\u043d\\u0430 \\u0441\\u0442\\u0440\\u0430\\u043d\\u0438\\u0446\\u0443: www.tinyurl.com\\/y7fh2jnj\",\"label\":\"First name\"},\"phone\":{\"value\":\"85115532486\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qeu7EaS uyjX AOxwGPV TXaZeo9 vJ90 gtB6cxT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 15:19:12'),(517,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"imperatriza8888@gmail.com\\r\\n\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041d\\u0430\\u043f\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u043c \\u041f\\u0438\\u0441\\u044c\\u043c\\u043e \\u043e\\u0431 \\u043e\\u0434\\u043e\\u0431\\u0440\\u0435\\u043d\\u0438\\u0438 \\u0432\\u044b\\u0434\\u0430\\u0442\\u044c \\u0412\\u0430\\u043c \\u043d\\u0435\\u043a\\u0443\\u044e \\u0441\\u0443\\u043c\\u043c\\u0443. \\u0420\\u0435\\u043a\\u043e\\u043c\\u0435\\u043d\\u0434\\u0443\\u0435\\u043c \\u043d\\u0435 \\u043e\\u0442\\u043a\\u043b\\u0430\\u0434\\u044b\\u0432\\u0430\\u044f \\u043f\\u0440\\u043e\\u0439\\u0442\\u0438 \\u0448\\u0430\\u0433\\u0438 \\u043f\\u0440\\u043e\\u0439\\u0434\\u044f \\u043d\\u0430 \\u0433\\u043b\\u0430\\u0432\\u043d\\u0443\\u044e \\u0441\\u0442\\u0440\\u0430\\u043d\\u0438\\u0446\\u0443 \\u0432 \\u0442\\u0435\\u0447\\u0435\\u043d\\u0438\\u0435 5 \\u0447\\u0430\\u0441\\u043e\\u0432.\\u041d\\u0435 \\u0443\\u043f\\u0443\\u0441\\u0442\\u0438\\u0442\\u0435 \\u043c\\u043e\\u043c\\u0435\\u043d\\u0442 \\u043f\\u043e\\u043a\\u0430 \\u0412\\u0430\\u0448 \\u0434\\u043e\\u0441\\u0442\\u0443\\u043f \\u0432 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u0443 \\u043d\\u0435 \\u0437\\u0430\\u0431\\u043b\\u043e\\u043a\\u0438\\u0440\\u043e\\u0432\\u0430\\u043d!\\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434 \\u043d\\u0430 \\u0441\\u0442\\u0440\\u0430\\u043d\\u0438\\u0446\\u0443: www.tinyurl.com\\/y7ot8rng\",\"label\":\"First name\"},\"phone\":{\"value\":\"82616488456\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vWfu58M qhUJ 8kJk1k6 wg1u36t ZTcm 1EkNqtW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 15:26:59'),(518,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rulanazuharaeva9@gmail.com\\r\\n\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0418\\u0437\\u0432\\u0435\\u0449\\u0430\\u0435\\u043c \\u0412\\u0430\\u0441 \\u043e\\u0431 \\u043e\\u0434\\u043e\\u0431\\u0440\\u0435\\u043d\\u0438\\u0438 \\u0432\\u044b\\u0434\\u0430\\u0442\\u044c \\u0412\\u0430\\u043c \\u043d\\u0435\\u043a\\u0443\\u044e \\u0441\\u0443\\u043c\\u043c\\u0443. \\u041e\\u0431\\u0435\\u0437\\u043e\\u043f\\u0430\\u0441\\u044c\\u0442\\u0435 \\u0441\\u0435\\u0431\\u044f! \\u0431\\u0435\\u0437 \\u043f\\u0440\\u043e\\u043c\\u0435\\u0434\\u043b\\u0435\\u043d\\u0438\\u044f \\u043f\\u0440\\u043e\\u0439\\u0442\\u0438 \\u0448\\u0430\\u0433\\u0438 \\u0437\\u0430\\u0439\\u0434\\u044f \\u043d\\u0430 \\u043e\\u0444\\u0438\\u0446\\u0438\\u0430\\u043b\\u044c\\u043d\\u0443\\u044e \\u0441\\u0442\\u0440\\u0430\\u043d\\u0438\\u0446\\u0443 \\u043d\\u0430\\u0448\\u0435\\u0433\\u043e \\u0441\\u0435\\u0440\\u0432\\u0438\\u0441\\u0430 \\u0432 \\u0442\\u0435\\u0447\\u0435\\u043d\\u0438\\u0435 30 \\u043c\\u0438\\u043d\\u0443\\u0442.\\u041d\\u0435 \\u0443\\u043f\\u0443\\u0441\\u0442\\u0438\\u0442\\u0435 \\u043c\\u043e\\u043c\\u0435\\u043d\\u0442 . \\u0412 \\u0441\\u043b\\u0443\\u0447\\u0430\\u0435 \\u043f\\u0440\\u043e\\u0441\\u0440\\u043e\\u0447\\u043a\\u0438 \\u0412\\u0430\\u0448 \\u0434\\u043e\\u0441\\u0442\\u0443\\u043f \\u0432 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u0443 \\u0431\\u0443\\u0434\\u0435\\u0442 \\u0430\\u043d\\u043d\\u0443\\u043b\\u0438\\u0440\\u043e\\u0432\\u0430\\u043d!\\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434 \\u043d\\u0430 \\u0441\\u0442\\u0440\\u0430\\u043d\\u0438\\u0446\\u0443: www.tinyurl.com\\/yd55uh5r\",\"label\":\"First name\"},\"phone\":{\"value\":\"88259639492\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VnpPhNE fJLD F1LiDfz DUWjPls P7HV a66uO59\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 15:34:38'),(519,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zcassens@gmail.com\\r\\n\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u0435\\u0440\\u0435\\u0434\\u0430\\u0435\\u043c \\u0412\\u0430\\u043c \\u0441\\u0432\\u0435\\u0434\\u0435\\u043d\\u0438\\u044f \\u043e\\u0431 \\u043e\\u0434\\u043e\\u0431\\u0440\\u0435\\u043d\\u0438\\u0438 \\u0432\\u044b\\u0434\\u0430\\u0442\\u044c \\u0412\\u0430\\u043c \\u043d\\u0435\\u043a\\u0443\\u044e \\u0441\\u0443\\u043c\\u043c\\u0443. \\u0420\\u0435\\u043a\\u043e\\u043c\\u0435\\u043d\\u0434\\u0443\\u0435\\u0442\\u0441\\u044f \\u0441\\u0438\\u044e\\u043c\\u0438\\u043d\\u0443\\u0442\\u043d\\u043e \\u043e\\u0444\\u043e\\u0440\\u043c\\u0438\\u0442\\u044c \\u0434\\u0435\\u0442\\u0430\\u043b\\u0438 \\u0437\\u0430\\u0439\\u0434\\u044f \\u043d\\u0430 \\u0433\\u043b\\u0430\\u0432\\u043d\\u0443\\u044e \\u0441\\u0442\\u0440\\u0430\\u043d\\u0438\\u0446\\u0443 \\u0441\\u0435\\u0440\\u0432\\u0438\\u0441\\u0430 \\u0432 \\u0442\\u0435\\u0447\\u0435\\u043d\\u0438\\u0435 30 \\u043c\\u0438\\u043d\\u0443\\u0442.\\u041d\\u0435 \\u043f\\u0440\\u043e\\u043f\\u0443\\u0441\\u0442\\u0438\\u0442\\u0435 \\u043c\\u043e\\u043c\\u0435\\u043d\\u0442! \\u043f\\u043e\\u043a\\u0430 \\u0412\\u0430\\u0448 \\u0434\\u043e\\u0441\\u0442\\u0443\\u043f \\u0432 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u0443 \\u043d\\u0435 \\u0437\\u0430\\u0431\\u043b\\u043e\\u043a\\u0438\\u0440\\u043e\\u0432\\u0430\\u043d!\\u0417\\u0430\\u0439\\u0442\\u0438 \\u0432 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u0443: www.tinyurl.com\\/y7s7kl4f\",\"label\":\"First name\"},\"phone\":{\"value\":\"84174542218\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sfAb0E7 X81k U25v2Vd bu5XqGd 4mwH XAhInGQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 15:42:15'),(520,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"boruvko2004@gmail.com\\r\\n\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0418\\u0437\\u0432\\u0435\\u0449\\u0430\\u0435\\u043c \\u0412\\u0430\\u0441 \\u043e \\u0442\\u043e\\u043c \\u0447\\u0442\\u043e \\u043f\\u0440\\u0438\\u043d\\u044f\\u0442 \\u0432\\u0435\\u0440\\u0434\\u0438\\u043a\\u0442 \\u043e\\u0431\\u0435\\u0441\\u043f\\u0435\\u0447\\u0438\\u0442\\u044c \\u0412\\u0430\\u043c \\u043d\\u0435\\u043a\\u0443\\u044e \\u0441\\u0443\\u043c\\u043c\\u0443. \\u041e\\u0431\\u0435\\u0437\\u043e\\u043f\\u0430\\u0441\\u044c\\u0442\\u0435 \\u0441\\u0435\\u0431\\u044f! \\u041e\\u0431\\u044f\\u0437\\u0430\\u0442\\u0435\\u043b\\u044c\\u043d\\u043e \\u043e\\u0444\\u043e\\u0440\\u043c\\u0438\\u0442\\u044c \\u0434\\u0435\\u0442\\u0430\\u043b\\u0438 \\u043f\\u0440\\u043e\\u0439\\u0434\\u044f \\u043d\\u0430 \\u0433\\u043b\\u0430\\u0432\\u043d\\u0443\\u044e \\u0441\\u0442\\u0440\\u0430\\u043d\\u0438\\u0446\\u0443 \\u043f\\u043b\\u0430\\u0442\\u0435\\u0436\\u043d\\u043e\\u0433\\u043e \\u0441\\u0435\\u0440\\u0432\\u0438\\u0441\\u0430 \\u0432 \\u0442\\u0435\\u0447\\u0435\\u043d\\u0438\\u0435 5 \\u0447\\u0430\\u0441\\u043e\\u0432.\\u041d\\u0435 \\u0443\\u043f\\u0443\\u0441\\u0442\\u0438\\u0442\\u0435 \\u043c\\u043e\\u043c\\u0435\\u043d\\u0442 . \\u0412 \\u0441\\u043b\\u0443\\u0447\\u0430\\u0435 \\u043f\\u0440\\u043e\\u0441\\u0440\\u043e\\u0447\\u043a\\u0438 \\u0412\\u0430\\u0448 \\u0434\\u043e\\u0441\\u0442\\u0443\\u043f \\u0432 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u0443 \\u0431\\u0443\\u0434\\u0435\\u0442 \\u0437\\u0430\\u0431\\u043b\\u043e\\u043a\\u0438\\u0440\\u043e\\u0432\\u0430\\u043d!\\u0417\\u0430\\u0439\\u0442\\u0438 \\u0432 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u0443: www.tinyurl.com\\/yb55ew3w\",\"label\":\"First name\"},\"phone\":{\"value\":\"83558366951\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"F16JRUY TACK d6Rm35e wHT0Vv4 aw48 cWv0P1p\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 15:49:48'),(521,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tany_1@icloud.com\\r\\n\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041d\\u0430\\u043f\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u043c \\u0423\\u0432\\u0435\\u0434\\u043e\\u043c\\u043b\\u0435\\u043d\\u0438\\u0435 \\u043e \\u0442\\u043e\\u043c \\u0447\\u0442\\u043e \\u043f\\u0440\\u0438\\u043d\\u044f\\u0442 \\u0432\\u0435\\u0440\\u0434\\u0438\\u043a\\u0442 \\u043e\\u0431\\u0435\\u0441\\u043f\\u0435\\u0447\\u0438\\u0442\\u044c \\u0412\\u0430\\u043c \\u043d\\u0435\\u043a\\u0443\\u044e \\u0441\\u0443\\u043c\\u043c\\u0443. \\u0420\\u0435\\u043a\\u043e\\u043c\\u0435\\u043d\\u0434\\u0443\\u0435\\u043c \\u0441\\u0435\\u0439\\u0447\\u0430\\u0441 \\u0431\\u0435\\u0437 \\u043f\\u0440\\u043e\\u043c\\u0435\\u0434\\u043b\\u0435\\u043d\\u0438\\u044f \\u043f\\u0440\\u043e\\u0439\\u0442\\u0438 \\u0448\\u0430\\u0433\\u0438 \\u0437\\u0430\\u0439\\u0434\\u044f \\u043d\\u0430 \\u043e\\u0444\\u0438\\u0446\\u0438\\u0430\\u043b\\u044c\\u043d\\u0443\\u044e \\u0441\\u0442\\u0440\\u0430\\u043d\\u0438\\u0446\\u0443 \\u0441\\u0435\\u0440\\u0432\\u0438\\u0441\\u0430 \\u0432 \\u0442\\u0435\\u0447\\u0435\\u043d\\u0438\\u0435 30 \\u043c\\u0438\\u043d\\u0443\\u0442.\\u041d\\u0435 \\u0443\\u043f\\u0443\\u0441\\u0442\\u0438\\u0442\\u0435 \\u043c\\u043e\\u043c\\u0435\\u043d\\u0442 . \\u0412 \\u0441\\u043b\\u0443\\u0447\\u0430\\u0435 \\u043f\\u0440\\u043e\\u0441\\u0440\\u043e\\u0447\\u043a\\u0438 \\u0412\\u0430\\u0448 \\u0434\\u043e\\u0441\\u0442\\u0443\\u043f \\u0432 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u0443 \\u0431\\u0443\\u0434\\u0435\\u0442 \\u0430\\u043d\\u043d\\u0443\\u043b\\u0438\\u0440\\u043e\\u0432\\u0430\\u043d!\\u0417\\u0430\\u0439\\u0442\\u0438 \\u0432 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u0443: www.tinyurl.com\\/ybaalpfa\",\"label\":\"First name\"},\"phone\":{\"value\":\"88438373582\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xiUKQSi 6LU4 1UQMZ4G 4ih88rq Dptf 49IfPYb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 15:57:17'),(522,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vv5460081@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yblyxrxa\",\"label\":\"First name\"},\"phone\":{\"value\":\"83481392996\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MKGMx90 XjYx Z76p7ae 2eBbsBg e66p TfVvSfd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 16:00:12'),(523,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zernotreid56@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yaapmja6\",\"label\":\"First name\"},\"phone\":{\"value\":\"87972298152\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CoqHqHz qTQT K3H5YDT B85EPcr Sc9b D3GGmrE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 16:03:37'),(524,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kimyen232@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yb8qcwdw\",\"label\":\"First name\"},\"phone\":{\"value\":\"89555562312\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LsS76MQ QQQw 4yRWMat Bzz31r6 JQrY w7t9SOC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 16:08:11'),(525,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olga-miyuts197211@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yajhqrw3\",\"label\":\"First name\"},\"phone\":{\"value\":\"83198119158\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cW1VxCs 7Akn 7cZu971 hs58XwZ ff3E sSzQNoK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 16:11:35'),(526,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mussisksenia@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yck9jb5q\",\"label\":\"First name\"},\"phone\":{\"value\":\"88691425158\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ymOJfei UVGM OkrDJ9L DAvxPBw srlP 7LFnlEn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 16:16:02'),(527,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"simonsavchenko9@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y859m78b\",\"label\":\"First name\"},\"phone\":{\"value\":\"84562383511\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MCRRlW8 0sJp RBbPnUr 3qBYRYq OI6e L42owVs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 16:19:25'),(528,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"overniseents1933@cuvox.de\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EddieDix\",\"label\":\"First name\"},\"phone\":{\"value\":\"88861991531\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Schnelles Geld von 15500 EUR pro Tag >>>>>>>>>>>>>>>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&50=05&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw <<<<<<<<<<<<<<<<<<<<<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"191.101.31.65\",\"label\":\"IP Address\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"5385e0a9-da89-4a67-9f12-99a0209779a5\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2022-01-16 16:23:45'),(529,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aaleskin797@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yabsacbk\",\"label\":\"First name\"},\"phone\":{\"value\":\"82283837578\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zTd8Y1N FWDD 2HnAPSr DjZ1R7a SK5L dxmwTrt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 16:24:10'),(530,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sabanovaleks@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7jfw4n2\",\"label\":\"First name\"},\"phone\":{\"value\":\"87133651544\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YrWNFwP 8txf f3QEkE3 pQ4PUo7 sgs0 JqeXD3X\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 16:27:13'),(531,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sarafimovich@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybcm57hs\",\"label\":\"First name\"},\"phone\":{\"value\":\"87547118517\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QWloiip sCUC RFhYhFt JlKglf1 kglA Tizs9iN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 16:32:03'),(532,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sk6091138@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yczgvu8j\",\"label\":\"First name\"},\"phone\":{\"value\":\"86713149541\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"v949YlO nA2U pQ7mlXl l35Joz7 SP97 WtNehBm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 16:34:53'),(533,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"perfilova1@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y94a36u8\",\"label\":\"First name\"},\"phone\":{\"value\":\"84923918133\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"11zOYad QBv2 t2dMStR APXfj90 oXP2 LlIo57K\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 16:39:54'),(534,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"afrizal197761@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y774cx53\",\"label\":\"First name\"},\"phone\":{\"value\":\"81556292834\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZyYnTQS W024 TqA62eF JUSag76 iT8f R8qIJlJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 16:42:37'),(535,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"goloborodko.lena2011@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycy8qrj9\",\"label\":\"First name\"},\"phone\":{\"value\":\"84499138712\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wQiuSlb Xkq4 jsxgH27 72qWp8Z EmsO YpUDYoe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 16:47:31'),(536,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"udoyuliya@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybvq6pq9\",\"label\":\"First name\"},\"phone\":{\"value\":\"88416198516\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iK24j3F 6vlw lqd6LfR vJDUpHN wIHe EzyK4sQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 16:50:21'),(537,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"larisa.avdonina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybom9yle\",\"label\":\"First name\"},\"phone\":{\"value\":\"87981376553\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qaMTt5w cH7G blFCqX2 ulTapuC JMGx UGdA6mQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 16:55:12'),(538,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"smotrov.dm@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8svdzy3\",\"label\":\"First name\"},\"phone\":{\"value\":\"86846376127\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5jCHVNG STs1 xCbP4v1 mHRb4kv PgYk mMp6Mk0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 16:58:07'),(539,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mehr.9717@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yazzbu96\",\"label\":\"First name\"},\"phone\":{\"value\":\"81681182785\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QOn8Txu 9qxu HJ6zWcC MhnNZxH bZZW vooDEhn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 17:02:59'),(540,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oganesyanvolna@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9q33wn6\",\"label\":\"First name\"},\"phone\":{\"value\":\"86971122395\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bfnRkPe W8YH z9FIsuI 6fOXJcb a49x AxVuJYF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 17:06:02'),(541,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"baroma55@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8mequ3v\",\"label\":\"First name\"},\"phone\":{\"value\":\"83118162983\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AKe2vdC uFCY iuzVbWq BZDNzrm 2v85 pQYaz2t\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 17:10:46'),(542,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anna-sale-noks@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycmev3jy\",\"label\":\"First name\"},\"phone\":{\"value\":\"82739393728\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ftaK1YY 8nIF h1fyEmJ m4R6E4J UX9P 8BSwnZv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 17:14:02'),(543,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zinakaeva83@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y77ebkml\",\"label\":\"First name\"},\"phone\":{\"value\":\"86628498474\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"czRFJvx 6Qoa zsljZ4S pHskFS5 Fc3U xkzy90O\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 17:18:27'),(544,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"allapahomowa1318@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9wvfjtv\",\"label\":\"First name\"},\"phone\":{\"value\":\"88728373329\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EpUGIqo qLfa LCiR0Rf 1bhn07N oj0C ygiCw2u\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 17:22:10'),(545,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nsods1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y8gpc4kh\",\"label\":\"First name\"},\"phone\":{\"value\":\"81422214779\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9wOkSqA Ex7O vdBbaTE StYHQsF WxZN uiUJoG7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 17:26:31'),(546,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"grig.alyona@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yc5skry9\",\"label\":\"First name\"},\"phone\":{\"value\":\"87753327857\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xWsLKSQ AQBZ cLoGVPE 8PMGDll ZBlv WFuHfME\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 17:30:16'),(547,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"buryanyk1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9jt8afc\",\"label\":\"First name\"},\"phone\":{\"value\":\"89844492917\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JUTNsW1 550l J4ob2Ch XZgGZp9 EIwD 4Er6dTN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 17:34:09'),(548,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"evgen43119451@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9by6sa5\",\"label\":\"First name\"},\"phone\":{\"value\":\"83231816232\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"o2dcQJO QR1b HzdFlEu 3LBL6je fi7p 6vHmUi7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 17:38:18'),(549,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"forostian.igor@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8le74mq\",\"label\":\"First name\"},\"phone\":{\"value\":\"83332144224\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"d1L1ryK TgEj 1kz8zIL fzCqD46 wE4E t6tMOvt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 17:41:55'),(550,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fantomacos@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yct4z223\",\"label\":\"First name\"},\"phone\":{\"value\":\"83451548366\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YcQHrC7 IeLK RqwQZJV PYGaKtx GO31 ghk4q9I\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 17:46:13'),(551,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"flip-cool@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybbud7ux\",\"label\":\"First name\"},\"phone\":{\"value\":\"83793298583\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Qcbi7et WgK5 MMr5b0B AL5sbR0 meUu xlrZj8L\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 17:49:48'),(552,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"okhotinaan@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9zsct6x\",\"label\":\"First name\"},\"phone\":{\"value\":\"86713811221\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CDr1jRV o4Zm kj0n4uM q8nJzCs PUfB sBH3dGl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 17:54:14'),(553,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sergo05@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yaqyuqjm\",\"label\":\"First name\"},\"phone\":{\"value\":\"88676479688\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dcORpmH c2Qn Ej6dtpJ zAo1OGy eOyt lcEQMIg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 17:57:34'),(554,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zavitok2010@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yan49ns5\",\"label\":\"First name\"},\"phone\":{\"value\":\"89743546162\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hGIuT6F adMq z4fjBO0 f7wYvmx gCxM fQeF9GA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 18:02:24'),(555,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"budanovbogdan70@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yael8trp\",\"label\":\"First name\"},\"phone\":{\"value\":\"82497182514\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NesTjv5 wPPi D5fJ0dB gTQgvXX tyxX 7wSSHIB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 18:05:29'),(556,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dmitrijryzkov5924@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7rzwvc7\",\"label\":\"First name\"},\"phone\":{\"value\":\"88653729581\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dI6FINX 5XrE yOSVn3D FXEAom1 Hc2P zvegTP9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 18:10:10'),(557,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"baldov1996olegg@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9xyvffv\",\"label\":\"First name\"},\"phone\":{\"value\":\"86439573175\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Oi8t9uw DeRo f9g02ux MYdWqE4 KStQ a4orj5l\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 18:13:00'),(558,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nadiya951@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9h3y44x\",\"label\":\"First name\"},\"phone\":{\"value\":\"87277827276\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"T8W4Uas CNAy bVPkKw1 rquLTNl uHUD AyL2Vgy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 18:17:54'),(559,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"omelamory@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8mltb56\",\"label\":\"First name\"},\"phone\":{\"value\":\"87881849672\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5ObhhDn YCsh YvjS3AD cDFZsEE ZHUR XZ6c02A\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 18:21:14'),(560,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"solomud831@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yabzaor2\",\"label\":\"First name\"},\"phone\":{\"value\":\"82187958254\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"x54pcm1 kerB 8c4uyYn C0bEGQg EDPR vg7qqFV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 18:25:31'),(561,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ottezov@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybsom4cy\",\"label\":\"First name\"},\"phone\":{\"value\":\"81157746588\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XVeoigg N75Q 4cqrcOf ePPLsBs cMvr B7cBDlc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 18:29:06'),(562,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ta.repina2015@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yc2ay4y8\",\"label\":\"First name\"},\"phone\":{\"value\":\"81522781323\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ckrd16B An8z le2OTL1 mK8o7sp JWff 7kk3Ek2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 18:33:10'),(563,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"smolnikov.1977@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7mg8p2m\",\"label\":\"First name\"},\"phone\":{\"value\":\"83732988573\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"D0VKJN8 EAsy zUCpAhq yfKlLhc l7Qp pSPCoeU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 18:36:54'),(564,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"krytovopereca765@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybmobzfy\",\"label\":\"First name\"},\"phone\":{\"value\":\"85629976653\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"R09PICg g4Mn dyiRayg V7u6fDw AZNh IrnlNKA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 18:40:45'),(565,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bakurskijv@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8pxnxzs\",\"label\":\"First name\"},\"phone\":{\"value\":\"87731811997\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wzbGRgH 0Mvk XaGNQ4P lJGcBJB VDNy dRZqLBn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 18:44:44'),(566,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dezman0011@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybxtobgb\",\"label\":\"First name\"},\"phone\":{\"value\":\"86354926589\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OeLUCQj lys7 2wE3Zd4 efwINgW cXLr 2Lg6dao\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 18:48:27'),(567,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"veronikavaleria1907@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y99n8k5s\",\"label\":\"First name\"},\"phone\":{\"value\":\"83598133426\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hTkJawz 2vqB FMEmge5 UvlnD8g Ly3b s9Xohav\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 18:52:33'),(568,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"absolutedxo@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y7g3zms8\",\"label\":\"First name\"},\"phone\":{\"value\":\"87872699876\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"b0ZeNTw TU0h vrwHU7y AwKXyc9 FwNu qK9FkLK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 18:55:53'),(569,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"henrika.land@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y87rykqd\",\"label\":\"First name\"},\"phone\":{\"value\":\"82673446419\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ftnqLpZ YZ5z 8ypP7t0 0WK8Ojx 9Bez rAeli3W\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 19:00:22'),(570,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mugavirilinda@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb8aln5o\",\"label\":\"First name\"},\"phone\":{\"value\":\"85133863643\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vRQQM3L mip6 BmNgjou I6jCAVj J2KM YLFThS2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 19:03:19'),(571,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"artemkirin59@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7mg8p2m\",\"label\":\"First name\"},\"phone\":{\"value\":\"81763237745\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sfU4S85 CrBL BXDwbdF 8EbS9e2 cTGC CDa6vDy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 19:08:13'),(572,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tairovgulyadin1989@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd7e7lsc\",\"label\":\"First name\"},\"phone\":{\"value\":\"82252696291\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kgfGUQc 032c oXuPUqB MGrQD79 uJou oxoIZgx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 19:11:00'),(573,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hoponelove15@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yac7msmy\",\"label\":\"First name\"},\"phone\":{\"value\":\"84744473194\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Y5KZNwi Vwim m77XFoV QYRRV7Y qaei Fj748KZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 19:16:03'),(574,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"varathankumar@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycw5tpuy\",\"label\":\"First name\"},\"phone\":{\"value\":\"87815534952\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Uy2XaRW K8DN SQU7u0g gVuO930 60Gt 7BmkUgh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 19:18:32'),(575,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sitenkiyo9@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yaut2sv4\",\"label\":\"First name\"},\"phone\":{\"value\":\"81743651568\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"w2d3zyx 1Bc4 gNiXuSc GhOjpKl 135G WU2r1Sd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 19:24:03'),(576,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sergejpolesuk800@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybs4vz55\",\"label\":\"First name\"},\"phone\":{\"value\":\"87626739587\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RszHIbN hM6c 3rTaRd3 ChGubK0 PsRl ZIuLJe3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 19:26:04'),(577,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"stremi2005@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7wwsjuz\",\"label\":\"First name\"},\"phone\":{\"value\":\"84128461767\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cqdg0ZG NRuy WtY4FPA RN14HwC Ief1 rZTFO2s\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 19:31:53'),(578,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"drabirmarina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybrd6zha\",\"label\":\"First name\"},\"phone\":{\"value\":\"81778913754\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fGfnHsf HGyj Wz96MLo AyaVNmI Pb1o ym4IahK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 19:33:38'),(579,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"chyngyzakmataliev81@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8xjah97\",\"label\":\"First name\"},\"phone\":{\"value\":\"87169859646\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5F7y1eS 62n4 Gt6VwSs YFdrGMA xxz1 KlY4pjh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 19:39:44'),(580,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"prixvastenromahova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybld4lfh\",\"label\":\"First name\"},\"phone\":{\"value\":\"83362786266\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZmGYaaQ 4SUg SnQsgT3 k0kp7PC 19E2 ZreAXZx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 19:41:09'),(581,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yfxbyfkjdf.62@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8s2gasa\",\"label\":\"First name\"},\"phone\":{\"value\":\"86949488785\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cDblxmV 8Y8Y 75qP5LH Iu9FcNX mzUd oqmViF8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 19:47:19'),(582,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"djkant@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yaaqzp67\",\"label\":\"First name\"},\"phone\":{\"value\":\"88419273967\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eEgM1gc 0m2t K2RnXlS tK4Nd4M lO5g aZrj6aL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 19:48:35'),(583,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"omokhot1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycx4mblx\",\"label\":\"First name\"},\"phone\":{\"value\":\"81247989217\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zCrOerx pzQB HjHEk1C 3PT51Se B51c Z84rtvh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 19:54:59'),(584,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kurnosov.aleksey.pnz@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybl8np2c\",\"label\":\"First name\"},\"phone\":{\"value\":\"88547926778\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yaXVm0e vNlm rrFtcRR kvXJ3a5 fRgS d3UTji1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 19:56:00'),(585,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"valerialadyzenskaa31@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yanyts29\",\"label\":\"First name\"},\"phone\":{\"value\":\"82397899989\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kZz1VSL ckZH Ab0ehLr riMgG0G 2UGa 1P5K5la\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 20:02:45'),(586,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tovratargun@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yb946yzl\",\"label\":\"First name\"},\"phone\":{\"value\":\"85211282193\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"G0rIDDS UkK9 RNQwhEI aJhRSOX Emdk QxwonoD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 20:03:21'),(587,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ostapenko.dmitry@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yd8wplob\",\"label\":\"First name\"},\"phone\":{\"value\":\"88632213247\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zUeTgTx Zz6E X1dJmdL zm0nyBe c5pt GyignRU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 20:10:32'),(588,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"arslonrzmtv@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yacg8wk4\",\"label\":\"First name\"},\"phone\":{\"value\":\"87417468361\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qqi65Ie xUn9 3tYM7ej qrW6G0j n4xG UfjSJig\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 20:10:32'),(589,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexey.m.kr@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8b2ln8t\",\"label\":\"First name\"},\"phone\":{\"value\":\"88432294761\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Gj4mumI oZs5 M7c8paW EHYlIjL DgFE 00rSCbL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 20:18:14'),(590,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nurievaelvira3@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yc3kkgwv\",\"label\":\"First name\"},\"phone\":{\"value\":\"83984626268\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"s2LEVxd 9CQU DlYINaM pE3viwy O9FT hEF6t66\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 20:18:15'),(591,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"wesacooper@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yavtdwh2\",\"label\":\"First name\"},\"phone\":{\"value\":\"81614779712\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9HxKyTT qhsF jhajCgW 5aT7EAD Vdpi kRDzKV3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 20:25:51'),(592,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tolkachevalu@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybfwqakk\",\"label\":\"First name\"},\"phone\":{\"value\":\"83358122928\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0SEWQnh 0vKH jqsSrmL KtPMHDX cR2K yy9DmIJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 20:26:06'),(593,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"danil16gainullin@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7z89v7m\",\"label\":\"First name\"},\"phone\":{\"value\":\"81863488867\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XMM4Yfj PjRJ ICirzhh QvdbrM6 vAXu GniC3aV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 20:33:25'),(594,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fanskin@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybw36dar\",\"label\":\"First name\"},\"phone\":{\"value\":\"86452712596\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FrZ7HXP yPfn yike7yd zIJSdhB S9IY JarmjXW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 20:33:27'),(595,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"7865366@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybyat6zr\",\"label\":\"First name\"},\"phone\":{\"value\":\"88143615658\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IBVKipV 9xNC kIxIhXT sfGfJvN q1Od Qh6ENsz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 20:41:08'),(596,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tpenner@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9v78mj6\",\"label\":\"First name\"},\"phone\":{\"value\":\"85663634199\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sc6RN6I mjsz KNQgo1Q Qzs53ed 5tfi HB1EkWR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 20:41:08'),(597,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"inferno-man@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yd7lzoor\",\"label\":\"First name\"},\"phone\":{\"value\":\"88698381783\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YHlILPQ pbGC fgTEKWI 2GOvFou W2mf zNHPCX1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 20:48:52'),(598,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"160980@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yb74osfd\",\"label\":\"First name\"},\"phone\":{\"value\":\"87774171736\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4UK6LZK kSKB K5sbcei eEAEbSJ dDg9 inmjx6J\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 20:48:52'),(599,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sargsyananna383@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycgql5qs\",\"label\":\"First name\"},\"phone\":{\"value\":\"86467314172\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"onw9Byb lMC7 xE5uze0 h4xWzuJ inVZ Bhl4rc4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 20:56:34'),(600,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rus.solovyanchik@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7d2lzer\",\"label\":\"First name\"},\"phone\":{\"value\":\"89516973745\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FG2PgFr HRZx P5dFE1n pL5qbhw 4UfH ag63UhW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 20:56:34'),(601,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nikitina.ira2012@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yae8kom4\",\"label\":\"First name\"},\"phone\":{\"value\":\"85374788446\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ShUJLQa w88z 02KLhBJ esbMSpm qUyz N9yMrQ4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 21:04:21'),(602,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yuragki94@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya3gept5\",\"label\":\"First name\"},\"phone\":{\"value\":\"88815457265\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JlBy8m3 jsw0 BR2Urfg aiZICZV 1LGD 5LaxKDd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 21:04:21'),(603,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tokardmitro64@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8vzeg78\",\"label\":\"First name\"},\"phone\":{\"value\":\"86785659158\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zeAfqDc g45B GCNGSvb nThMWWo Wt1U 1S4AaGb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 21:12:16'),(604,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vikasitnik1@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yae8kom4\",\"label\":\"First name\"},\"phone\":{\"value\":\"86854667712\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vawBLOm rL30 yVo2pld NUOr08a wRs9 yUp104V\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 21:12:16'),(605,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vzgljadvostoka@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yanafwxc\",\"label\":\"First name\"},\"phone\":{\"value\":\"87229974858\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"03fVl02 KGwv mgLvOY3 xBYldsH VNM1 iW5aCZT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 21:20:09'),(606,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"naniev007@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybwhprrr\",\"label\":\"First name\"},\"phone\":{\"value\":\"82712286272\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SWT73s2 opp2 tdAK7vQ BzzpWhi Rc5E YMHMeG8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 21:20:31'),(607,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jpjackj@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybrvp9wv\",\"label\":\"First name\"},\"phone\":{\"value\":\"89581838237\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2YOqajj jmVp GGyHvlr NLnHEeG IJvM d7yOBt2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 21:27:51'),(608,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"evgenia.terekhina2@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9zzydfs\",\"label\":\"First name\"},\"phone\":{\"value\":\"85777483639\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ec6fH1V R1Bu HnJFUDc QN1kPO6 yTQG 15NHWNp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 21:27:51'),(609,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nataly860210@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc5ggwj2\",\"label\":\"First name\"},\"phone\":{\"value\":\"84165229192\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hUyorzV fHRC t1aqmIL sCCziVu 7afb Fd34440\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 21:35:40'),(610,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ravipkchk05@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ydax3pa9\",\"label\":\"First name\"},\"phone\":{\"value\":\"81465355886\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uKIuqoO fESD hCv51Zs dfeII4L GxsR twCKD2P\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 21:35:40'),(611,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"4068016@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8b72jmy\",\"label\":\"First name\"},\"phone\":{\"value\":\"87324714359\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2xMIu1J YmFs PyQxis0 wG9gVvh WIK9 8fJ1ahp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 21:43:26'),(612,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"unit2014ster@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8tmzxl4\",\"label\":\"First name\"},\"phone\":{\"value\":\"84844448157\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JEXVWn2 hv05 RnbVufZ mcHQ3dD dRW9 rFOfOtJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 21:43:26'),(613,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"muzaffaratasikov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7ngjslk\",\"label\":\"First name\"},\"phone\":{\"value\":\"86359872685\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XjIYaz8 Ir08 ofa5PD6 55IQDNa QBwS 72lZNrd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 21:51:13'),(614,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"diana-zaec@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ycw3gu45\",\"label\":\"First name\"},\"phone\":{\"value\":\"85748554151\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"r7wfRpJ gftq 8jtf27I IIjarjt 1cnz UcULnBp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 21:51:13'),(615,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"suhankin@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb946yzl\",\"label\":\"First name\"},\"phone\":{\"value\":\"87284536666\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"by4bIWS M2eC sYE2SA1 CF63uyY paLr oumI70U\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 21:58:50'),(616,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bagdo1988@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y6uzwyvg\",\"label\":\"First name\"},\"phone\":{\"value\":\"85981525371\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"df6v60D xaPM 6zZX8wH Nsdb2cC QYIR 9PvFzQR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 21:58:50'),(617,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"adusenov@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9ollyyp\",\"label\":\"First name\"},\"phone\":{\"value\":\"81564247424\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"F928kqa 2YkF DpBFozA w68kHAb 7ijk 5QWn4E3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 22:06:40'),(618,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"iron.d97@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yc8p42yz\",\"label\":\"First name\"},\"phone\":{\"value\":\"84478365917\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sLCbi2n Uuua 5mhJDhc a0sfNId 3fQM i0YE8sR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 22:06:40'),(619,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rahmanina620@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc3rmvy6\",\"label\":\"First name\"},\"phone\":{\"value\":\"82649814967\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pZ6HFqW VqHv DM7Ghuo 88oovUP Qdnx NBWtkFy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 22:14:27'),(620,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dasha10.11.88@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yac3xadm\",\"label\":\"First name\"},\"phone\":{\"value\":\"82685492166\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nfsziIm pObB 6sLUjfo 7Wny7iS j3qM 7PdEnEl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 22:14:28'),(621,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sarmsakovrustamjon@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybrtwv7t\",\"label\":\"First name\"},\"phone\":{\"value\":\"88585685161\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dAI04yW tX0w wVT3KZb ng4oShQ VLy8 MNNda74\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 22:22:09'),(622,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"egor.azot@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd7xbfl3\",\"label\":\"First name\"},\"phone\":{\"value\":\"84142617966\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"saSQ5bp lZjg wZE6YYh IsWAPAj POGP f7nigwh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 22:22:24'),(623,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"antipov123anatoliy@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybap3u7g\",\"label\":\"First name\"},\"phone\":{\"value\":\"87285381339\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"O0Oguk5 LBpO 2yNtkct MOrrlK5 NbHY UBocrQa\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 22:29:44'),(624,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yantso78@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ycyvqff2\",\"label\":\"First name\"},\"phone\":{\"value\":\"88917618179\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"p0PyPNm 3ugL Y464jMJ kqjx94F 9gy1 4D10h5T\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 22:29:46'),(625,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dr.shumackov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9mesp22\",\"label\":\"First name\"},\"phone\":{\"value\":\"83181869862\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5bGCrbq FSXy 1xN2yAx FcRayBi E0fS GYDHZvB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 22:37:24'),(626,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ira.gogol@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8v2vsr7\",\"label\":\"First name\"},\"phone\":{\"value\":\"84649891126\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8QZZQVa BGA3 M5Esvth Q2nYYut aKj9 rIM9psH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 22:37:24'),(627,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"brooklin63@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7faybfb\",\"label\":\"First name\"},\"phone\":{\"value\":\"84578755982\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"O39HYPP Kpwy gYOLJPk R9Forxe A8nH P2wHdlz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 22:45:12'),(628,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shram19852@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybpjb3zf\",\"label\":\"First name\"},\"phone\":{\"value\":\"81551687394\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rub4leQ H32P y4gVluM ZGWhReg l8cT Ydm0lBb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 22:45:12'),(629,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oso8@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7xu7m22\",\"label\":\"First name\"},\"phone\":{\"value\":\"83877762495\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cnDpgYO 2X7c kQk20YW kCwM0UT WDvh nQEv6a2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 22:52:54'),(630,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ibrohimzodarustam90@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybocwmdk\",\"label\":\"First name\"},\"phone\":{\"value\":\"85444619955\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HYK1hTS WMxI 91kGSXW OKEdV4f aMrI O25880n\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 22:52:54'),(631,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"velichkolarisa34@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya43h78l\",\"label\":\"First name\"},\"phone\":{\"value\":\"86537134957\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZtZZB7K ginP jKXmLPl ftXHlHz 5ml9 yLyuBOz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 23:00:37'),(632,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"levenko.evgeniy@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yb6wnfye\",\"label\":\"First name\"},\"phone\":{\"value\":\"89341114366\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2nNUkZ7 5P1n xOa0dRL 9Qjk4fK FY1v scSQ8Tm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 23:00:37'),(633,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tulecro@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y74czad6\",\"label\":\"First name\"},\"phone\":{\"value\":\"85424694885\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"h401P4Q Lyll 5ZuuVXH 2cIcCVD D6FV Ft2dAlV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 23:08:34'),(634,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"romanova.amelina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya7xtl4v\",\"label\":\"First name\"},\"phone\":{\"value\":\"81749637514\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4RLHTp4 gTSa 3wNt2k5 SsqQoXL Zw5Q FXksaqp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 23:08:34'),(635,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"9021640178aldar@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9bc2lno\",\"label\":\"First name\"},\"phone\":{\"value\":\"87767194816\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OUW3sWN KfAS gdfR5by fTT5Hec WLQc Awymp7M\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 23:16:26'),(636,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"petoyanroza8@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybgll3p5\",\"label\":\"First name\"},\"phone\":{\"value\":\"85767662932\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zH5enZl wGhO ynk9Oh4 Sis1069 sm3C qZXBWwF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 23:16:26'),(637,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alihanovanargiza3@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7wlwqgw\",\"label\":\"First name\"},\"phone\":{\"value\":\"89975243781\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"R2wVG34 YMmQ 1Ko23Xf UjwWdCM Wf7x aRQAS9u\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 23:24:11'),(638,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"antonnagov1989mail.ru@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycm5fqou\",\"label\":\"First name\"},\"phone\":{\"value\":\"85597225811\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"c16gsUb Tn9g gta9PJ9 bX45utZ qULO CSOcqVl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 23:24:15'),(639,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"karlmb4@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycw3gu45\",\"label\":\"First name\"},\"phone\":{\"value\":\"85661596258\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"L5mYG9i K1eq TcirhiH ai2uCkm oo4D 5hIKKRV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 23:32:04'),(640,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"108tatka108@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybgll3p5\",\"label\":\"First name\"},\"phone\":{\"value\":\"85749527885\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IcW7dgX dW2n haOr6xu YSfqh2n 7umS 7nMd0uP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 23:32:04'),(641,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vasilmihovk@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybcxgbwk\",\"label\":\"First name\"},\"phone\":{\"value\":\"85291729629\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0iYUrwi 7ZXa Dznrnxj PH7NhZS 1VEe ySAM3xZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 23:39:48'),(642,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"holysheva27052015@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydhl3zxu\",\"label\":\"First name\"},\"phone\":{\"value\":\"89634994445\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"arMMd41 orBy BAJOzou fcdwGeJ VcFL ld19aZI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 23:39:49'),(643,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"potapka250475@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y995jyj8\",\"label\":\"First name\"},\"phone\":{\"value\":\"83384666143\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8oAmD0x Mo9y Bamg2kA XF0pGfp 8wzv zpdvTg1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 23:47:22'),(644,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"adetunjiadewole13@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ycba3wke\",\"label\":\"First name\"},\"phone\":{\"value\":\"86234969852\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NpPYW34 fhKL xVSgV5O qM3Xn78 RBMj 8UhKXlj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 23:47:24'),(645,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rubin117@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycppd92g\",\"label\":\"First name\"},\"phone\":{\"value\":\"87362655965\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZRrSuFo nhzj tgT4A7y FAoV2DD 9dsa 7juOUYA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 23:54:56'),(646,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tom1944@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y7mgx37f\",\"label\":\"First name\"},\"phone\":{\"value\":\"82226571119\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TDXTtNo KqMq cMKwQsb 7V0ahQr sJ6V SlA8VhP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-16 23:54:58'),(647,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"matveisergeevich98@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9etbjd7\",\"label\":\"First name\"},\"phone\":{\"value\":\"81724111174\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"N987oVY lj5t zZPAUnf eoSKAvy s5y4 bm5Eqxr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 00:02:24'),(648,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ivasenkol563@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9j2fa78\",\"label\":\"First name\"},\"phone\":{\"value\":\"85299449132\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"D2h5kVu inPD UyPzsaZ P62SoBg 3jKw VeHkC8K\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 00:02:32'),(649,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aliriza13051975@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9pta7h5\",\"label\":\"First name\"},\"phone\":{\"value\":\"85986884865\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WNaeU54 mv0H Fm9ViAx GgPFvRC FOkj gJC4GPz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 00:10:00'),(650,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bratsun90@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb89ph9n\",\"label\":\"First name\"},\"phone\":{\"value\":\"81963484513\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JdjhLnU Fqie FpQxcx1 hx8z09c MSY3 C0Bdjkr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 00:10:07'),(651,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sergeystrekalov@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8njcwgo\",\"label\":\"First name\"},\"phone\":{\"value\":\"89912488874\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0EmuRqX aMVY N2YmsE2 vFp9qOr Ww45 MNE3vPe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 00:17:55'),(652,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"youflirtinc@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybdh68rk\",\"label\":\"First name\"},\"phone\":{\"value\":\"81324414658\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YVS5aHu yQaT Pm5IHTA Hquzb4U C0X1 7LjaNdj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 00:17:56'),(653,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gince624@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yck7zazh\",\"label\":\"First name\"},\"phone\":{\"value\":\"89762169464\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GyfpUbi Cmp2 HWgW6ul tdF7lso WnOJ IqVEkh6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 00:26:01'),(654,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ziynich96@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yado6ruo\",\"label\":\"First name\"},\"phone\":{\"value\":\"86874261253\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"39wBwnN qLIx XJTxRAC L9bLQSf BFur fNRitkN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 00:26:01'),(655,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sertu@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9cx9urf\",\"label\":\"First name\"},\"phone\":{\"value\":\"87439173264\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IjUEcFx DHFI Vc6s2NJ zZkonuq ExR5 McCnggU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 00:34:05'),(656,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexbigs@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybe69nrc\",\"label\":\"First name\"},\"phone\":{\"value\":\"89421833817\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hgk759t RBTn wgFCnPS krI5Sso TmmT O1DBqwP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 00:34:07'),(657,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alemin.krali.burak@yahoo.de\",\"label\":\"Email\"},\"firstname\":{\"value\":\"HenryNob\",\"label\":\"First name\"},\"phone\":{\"value\":\"84123756258\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Dies ist Ihre Chance zu verdienen von 14900 EUR pro Tag >>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&63=18&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw <<<<<<<<<<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"191.101.31.24\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 00:35:12'),(658,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"juliapopova1975@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yd3aat7u\",\"label\":\"First name\"},\"phone\":{\"value\":\"84278833353\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Jw9VZs1 qRXY c9Ve7FG aVv6TS9 zg2n 5pnLIyn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 00:42:06'),(659,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"heyguysymenise95@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y882koog\",\"label\":\"First name\"},\"phone\":{\"value\":\"82841489246\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7Vv81VS AcEt yiFrnkj ZCTwCbs EPE7 xMHvLda\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 00:42:06'),(660,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"o.smagin2015@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y7fmmgkw\",\"label\":\"First name\"},\"phone\":{\"value\":\"83364924923\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"83oXmpT W3zb C9KfBBI njpTdbT LEn7 WOYDpTT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 00:50:09'),(661,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olga.casaewa@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ycrwvwma\",\"label\":\"First name\"},\"phone\":{\"value\":\"87974469233\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ix4EwgM 9qwU d8BS6dP 2S05Z2N fj9p gErYq5S\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 00:50:11'),(662,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shahban1996321@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y7yhre4w\",\"label\":\"First name\"},\"phone\":{\"value\":\"83148481548\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SCawIYX hnFm XSROMlZ 59bCnR7 PekE RS6T8Y6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 00:58:08'),(663,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lubazhirkova14@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yayuxk45\",\"label\":\"First name\"},\"phone\":{\"value\":\"81675767863\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6LHLpIs 3M8r YlX8Dwd wVNFvPw Z5TE 4R2T6Za\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 00:58:09'),(664,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zatsarinvova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yd6tqp3w\",\"label\":\"First name\"},\"phone\":{\"value\":\"83354751171\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"soyY64S kSp6 xQQ7Pgh l8FsQ2R 2U0X GDKAUp9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 01:06:06'),(665,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"liza90zari16@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y993zxvw\",\"label\":\"First name\"},\"phone\":{\"value\":\"88634997675\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9IcopZ5 Fgja 3et0E4i Xr2Xg1U DkTW SQUczK1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 01:06:07'),(666,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nezlaya.tanya.1994@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaj3lwtk\",\"label\":\"First name\"},\"phone\":{\"value\":\"81575286966\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6iskcyA tFE0 L5iByAH LjH21gF gxhJ j04Hezx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 01:14:08'),(667,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"karinakon20@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9nmqkcm\",\"label\":\"First name\"},\"phone\":{\"value\":\"83479796558\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Qzf2wDi XQ8j NPYT6m2 zQwJDuk zKnk p7Dw3Pc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 01:14:08'),(668,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nevskai560@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc5qsf97\",\"label\":\"First name\"},\"phone\":{\"value\":\"81928175662\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"I0G7X56 flNY s3gydyQ 25gRfoe Nwyf B5taR1e\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 01:22:14'),(669,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"razokovagulnora101@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8gr4gcj\",\"label\":\"First name\"},\"phone\":{\"value\":\"83868814782\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pTxMT5R e3lM 8YhaBpd Ox9abJu 0W4w X36u3O2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 01:22:28'),(670,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"konovalov.23@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydyx9zja\",\"label\":\"First name\"},\"phone\":{\"value\":\"81955296923\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EJAWqXp 48QK ft0460b RovYgKB pUyy QYLTse3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 01:31:54'),(671,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yulia4yv@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7ks27zk\",\"label\":\"First name\"},\"phone\":{\"value\":\"87626226631\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8B8Sy55 cmGl ngEeBS9 kbcW8UR zCpS nw8asDS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 01:31:55'),(672,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"expoduba@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybr6cqb9\",\"label\":\"First name\"},\"phone\":{\"value\":\"83142411158\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jc7xqBY 377b Dx8KW94 3pzGl6K s7ZD jxmmo76\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 01:41:54'),(673,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vlad.loktionov79@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9qcrvch\",\"label\":\"First name\"},\"phone\":{\"value\":\"86142338454\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bHcEjXL rWv2 65tVOdb JFVy05u xtZS juviZz8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 01:41:58'),(674,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"spike-v@ya.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y83s68ju\",\"label\":\"First name\"},\"phone\":{\"value\":\"86652513183\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"meN0ky3 5qG8 RgfEWgk cfuYAfz GAd2 EL4pYyu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 01:51:28'),(675,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nazarvlksndr@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y843pczx\",\"label\":\"First name\"},\"phone\":{\"value\":\"86433487769\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8QGirKz 1GtU 3wRzJrH zcYFn1N 9dTf SbtoAdv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 01:51:29'),(676,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"wwwykubov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yborj3uk\",\"label\":\"First name\"},\"phone\":{\"value\":\"89829877219\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cKwYMPw RQkl 0yZIFQv kFov9nw PU4n NBrpMFJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 02:01:02'),(677,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"stassss2009@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydyzjl6o\",\"label\":\"First name\"},\"phone\":{\"value\":\"82824428757\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Vm4M2p1 iJj2 IdIzRjC ckHFwrz ILXk rPXNDmd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 02:01:03'),(678,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"eeroxina659@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y85f7vco\",\"label\":\"First name\"},\"phone\":{\"value\":\"84435671125\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5MfcKaj qBgV wiH2G7Y Tf40MRD cV3V iqR2PWh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 02:10:34'),(679,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sadulloevsahbozcon@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y77586y4\",\"label\":\"First name\"},\"phone\":{\"value\":\"81369838212\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HsDKBCR hR25 bEWuv74 IxaWwms iSFm uwDbvCY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 02:10:35'),(680,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kukuzju@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yaaayyas\",\"label\":\"First name\"},\"phone\":{\"value\":\"85382829711\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3IG6AOB 9cw2 oZRLKnb nhE5sRe WIBH 3ZtL1Mz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 02:20:00'),(681,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"skifsib@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycjph9kx\",\"label\":\"First name\"},\"phone\":{\"value\":\"86838399876\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9nAwlZX 4MKH kLq5mPE z8DiCYF yGZu C2x2V9T\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 02:20:01'),(682,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elenarajzanceva909@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybowt66q\",\"label\":\"First name\"},\"phone\":{\"value\":\"88672356929\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wFvhJn7 njgr s4v5V5z atT133h sRfj FoUHgK5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 02:29:22'),(683,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"grebenukanatolij106@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycyds8x8\",\"label\":\"First name\"},\"phone\":{\"value\":\"84135247294\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ls7L3Rw DCCy 5hWRYB0 jDO4GWd ELIY zdzGMsb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 02:29:24'),(684,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rioniil@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yastlmrt\",\"label\":\"First name\"},\"phone\":{\"value\":\"84682148732\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NO9VeN4 oKmF bvVeaoI PhuIxHi 3qm7 wqzS5YW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 02:38:00'),(685,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hjccbz8@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yaxy44zy\",\"label\":\"First name\"},\"phone\":{\"value\":\"81227843963\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"v3L2G1Z Ms9m omTGeVC ddam4la 7Q1i zcXTqn4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 02:38:02'),(686,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nikolay.nikolaivich@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yayrkob9\",\"label\":\"First name\"},\"phone\":{\"value\":\"84461468376\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Zr0ayOV C5na 7ujUzhU P2m2Kr8 t5xZ VXQdjiz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 02:46:05'),(687,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tigress.olga@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y7ngjslk\",\"label\":\"First name\"},\"phone\":{\"value\":\"81769986284\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DjduS28 F5yW 6omhg4x VUgmTDO 4ANC YrWCFFW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 02:46:06'),(688,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"akerbryge@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yb2g5h8b\",\"label\":\"First name\"},\"phone\":{\"value\":\"83492488774\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"phrA1wI b39a cPiANz1 UOT6l2w F6DP oFnyLVx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 02:54:07'),(689,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ilona.podzigun@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8srsrgw\",\"label\":\"First name\"},\"phone\":{\"value\":\"82712462694\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aNxoNeN RTDH ob8AaZg Llc64Fz NAvs OHg83KT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 02:54:08'),(690,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sharayevskaya240317@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybbjhege\",\"label\":\"First name\"},\"phone\":{\"value\":\"86341551896\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CXgUV4G YKou NFaFXSR eFPluhs deYQ cRo2zvG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 03:02:12'),(691,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"murzinivan@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydcrlnw6\",\"label\":\"First name\"},\"phone\":{\"value\":\"81536996696\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QBNuf97 j7uT zTN67Dm dYxBl7i zJcE Fg23gDX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 03:02:12'),(692,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"spartak42@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yc57m6pp\",\"label\":\"First name\"},\"phone\":{\"value\":\"83388748691\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jR5lciN h57K iJ13YzG S21r88M kTpM uvmMg53\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 03:10:16'),(693,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tapesch.viktoria@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybxa9e4m\",\"label\":\"First name\"},\"phone\":{\"value\":\"87583123127\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NEvYRWO K7Xv yXyKIx0 r821B7V g5Rn 3w4CsMh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 03:10:17'),(694,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ninaiv51@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y88g52q5\",\"label\":\"First name\"},\"phone\":{\"value\":\"85665497919\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LK2kkME k2aN QlnlxOi NSPIpzP EooW Y9nJFwb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 03:18:21'),(695,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"metla.vit@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybk83wl7\",\"label\":\"First name\"},\"phone\":{\"value\":\"88623148147\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hfaBvcB KZA0 0P1Sae4 Ps1Q3Vf 4T5o baAd1iK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 03:18:22'),(696,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"torakulovmahmud@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8p7as5j\",\"label\":\"First name\"},\"phone\":{\"value\":\"82629566253\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8exHpky FMUY xguA8wh c4gR3Ay oDbF vUq2dtp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 03:26:12'),(697,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"monsher15@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybcj8yyz\",\"label\":\"First name\"},\"phone\":{\"value\":\"83658799349\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SIhoV7M 4ndr CR4frBx xLiKxzL J9dO K5FtRYB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 03:26:12'),(698,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"super11072003@ukr.net\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycu8gke2\",\"label\":\"First name\"},\"phone\":{\"value\":\"85396673234\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lvbnoLi QXOj rrhTiFv 9vhQEu2 HMf1 LjEmGin\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 03:34:05'),(699,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"slabovicmilena@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8b3sr7z\",\"label\":\"First name\"},\"phone\":{\"value\":\"89866732838\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TqiNOHg Fvbt fFrWnvc IqC784E eHnH U5tF9oB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 03:34:06'),(700,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yarasotov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9zjqp7u\",\"label\":\"First name\"},\"phone\":{\"value\":\"81758255234\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CgYJoMd LwBW GiLD0ok O77kck7 EEwh tIu97kk\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 03:42:04'),(701,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kaptelovartem1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yaxy44zy\",\"label\":\"First name\"},\"phone\":{\"value\":\"84851771939\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"87i5my1 sgiA wAJ8ZYB 6YlwSQJ ffR3 GAOLGoA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 03:42:05'),(702,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"polovandtlt@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydenwpwr\",\"label\":\"First name\"},\"phone\":{\"value\":\"88528492418\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"V7Yjo1Y ojZm hV7Frvv LrF5RPI 8nKq cFSf49B\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 03:50:02'),(703,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aleks.liach76@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ycfjjgc9\",\"label\":\"First name\"},\"phone\":{\"value\":\"81233373515\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IMPzepJ 5Jy3 9VpNR2q 52gBjES ObEB 7pxR3pw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 03:50:04'),(704,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ks.kitova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycq2zr6b\",\"label\":\"First name\"},\"phone\":{\"value\":\"84241111361\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GDS6I3a 4XDD VU62cM1 hl3loEU A0Cy 9pRXFVz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 03:57:58'),(705,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"89538867503zzz@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y98qr29l\",\"label\":\"First name\"},\"phone\":{\"value\":\"84456464552\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eE0HfbZ HhgP VeSKh8I qAOBrmy afgE twGH79i\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 03:57:58'),(706,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"123aaaa@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y7jl39cv\",\"label\":\"First name\"},\"phone\":{\"value\":\"84636235983\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PTgbUbM FeO5 Oj9AvY7 M0T13An r9bR THkXw9X\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 04:05:56'),(707,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oleggennad17@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y7d2lzer\",\"label\":\"First name\"},\"phone\":{\"value\":\"82148692827\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BKxHCxV dS2Y UblBkgy Vzs3BbC cYOW 3tYSoYT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 04:05:57'),(708,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tolya4iy@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yc5vzxhj\",\"label\":\"First name\"},\"phone\":{\"value\":\"82469578416\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UncZqcV cr93 PUmUwvq Qglo41W kY4W u9O9of6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 04:13:57'),(709,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dash.mihailowa2015@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9u6d89r\",\"label\":\"First name\"},\"phone\":{\"value\":\"86268318663\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ucnvjDu q5vh vfFw6DO uxCEiw6 LsEW lF1d9Yy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 04:13:57'),(710,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anastasia_grivas@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydcvcc2k\",\"label\":\"First name\"},\"phone\":{\"value\":\"82373414882\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CP6V2D9 HExx 6zByslu yh2jNTM BTwf iNSO5Aw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 04:21:59'),(711,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"cyxapuk2289902@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybglxjob\",\"label\":\"First name\"},\"phone\":{\"value\":\"81562772685\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cVhrY7J utzN 0Ug9tc3 Dy4UYZy yRM6 Lah41EB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 04:22:12'),(712,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"irinaasha555@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydcfnr39\",\"label\":\"First name\"},\"phone\":{\"value\":\"87756535681\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6NNPTpJ GUoV 38cBi04 9P2r62r Lgms XS480v8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 04:29:55'),(713,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"noyhay2178@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yb73smjc\",\"label\":\"First name\"},\"phone\":{\"value\":\"84834522352\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QeY0CdP XPqa WO3MOi7 RDcp8PD e1AN d9ouVSX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 04:29:56'),(714,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ieztevan@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8d95adc\",\"label\":\"First name\"},\"phone\":{\"value\":\"84862448578\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Dg9b01P aPGN ORlG5CO CSSRcxw 0A0X ioToLvg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 04:37:55'),(715,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"virtoriaopanasenko7@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8fhmv54\",\"label\":\"First name\"},\"phone\":{\"value\":\"83739913268\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"70RJcUC Nn2H XHdBAfN BTCd0DW nFER Rlf2euP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 04:37:55'),(716,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"veronichkashostak007@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yceb9pt2\",\"label\":\"First name\"},\"phone\":{\"value\":\"86749447476\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CqVNHW9 jKHa mjmfmbQ P48WEwo pcto bAfv8KX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 04:45:50'),(717,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sherbakova.nelusa@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y7wxphd8\",\"label\":\"First name\"},\"phone\":{\"value\":\"89974679279\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UGoFcFb MDkT 0OOdlXM KGW4ubM OFbO 6bNhb1l\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 04:45:51'),(718,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kanagharajr9994097430@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7wyy68f\",\"label\":\"First name\"},\"phone\":{\"value\":\"84857211417\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yPjgFf8 LVk3 vIdMyQq sW9HEHw uUb1 YknYf1z\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 04:53:47'),(719,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"barbinjagrainvest@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8jnc2hl\",\"label\":\"First name\"},\"phone\":{\"value\":\"83293398933\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"o3WqsZd Rgvk Iv1QJG6 rzHPEBO 1djL d7EW5cX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 04:53:47'),(720,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ghost.dymov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybl8np2c\",\"label\":\"First name\"},\"phone\":{\"value\":\"87527759231\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kEXeCDN KGbV 6uN2v7m BeQjC2C UojL 6JCNJOj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 05:01:51'),(721,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"and415736@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybcm57hs\",\"label\":\"First name\"},\"phone\":{\"value\":\"82719271177\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4ZQIYvt cAsu 92mHENu XDV4ws9 wr31 eC5AZVv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 05:01:52'),(722,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shereefhh@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y89jdcsd\",\"label\":\"First name\"},\"phone\":{\"value\":\"81943948511\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BrPRZXV K5cq ekpJR2J EUxjglx dAVD vc1BbnF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 05:10:05'),(723,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rustamkris@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9nyamdo\",\"label\":\"First name\"},\"phone\":{\"value\":\"83478111875\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"h38Wuoh Jp73 lCXVLhV S07kVJq hJ5x IYGbsPU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 05:10:05'),(724,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"malish9780@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y77u8rh6\",\"label\":\"First name\"},\"phone\":{\"value\":\"87743182252\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nDUOqmb Uiej MisL8xj fQ5auHS Apb0 HYKSorM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 05:18:10'),(725,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lyubava.yn@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9eb9njh\",\"label\":\"First name\"},\"phone\":{\"value\":\"88845427779\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"44M2etj aUXj ksoucqk IhRCts7 CE21 h8YIg19\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 05:18:11'),(726,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ashatovna.01@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycsqgb27\",\"label\":\"First name\"},\"phone\":{\"value\":\"82677949691\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zqbc0Wf mA8t Sc1S5DT bT7o9Zv pQoN ajUtHuE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 05:26:14'),(727,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"faizowa.svetlana@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y7yulgtu\",\"label\":\"First name\"},\"phone\":{\"value\":\"87388454634\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tRyKuF7 7I3K aKgNI6X bPGBsXK LNCT P4j3HDh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 05:26:18'),(728,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jora.skromniy@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9ndh84s\",\"label\":\"First name\"},\"phone\":{\"value\":\"85346328965\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aNg7LoJ kPOI qm00ODz YOtGLmh vEuB BvWWWj5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 05:34:24'),(729,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"iliamialina2328@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7a2kjue\",\"label\":\"First name\"},\"phone\":{\"value\":\"81165462923\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uUzxrkJ bu2v rfKnIJL avjBXfv nTiV mkS8Ya4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 05:34:24'),(730,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vladimir.lapin.1975@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8cw8e4o\",\"label\":\"First name\"},\"phone\":{\"value\":\"82441456486\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7amXrUu TLcK Ew7Risu pF6o2O0 PqzU YlZTGUd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 05:42:33'),(731,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sipilovaveronika462@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yb5nx7vp\",\"label\":\"First name\"},\"phone\":{\"value\":\"88288811695\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8DsNXme xO85 94lLNen uCd7VGW JWKK xCdX4j2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 05:42:33'),(732,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"damir8565@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y79hahax\",\"label\":\"First name\"},\"phone\":{\"value\":\"89629711329\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"D3RRsf1 uafr 4cEXJCq jGSws6o JVuJ EWrqtrH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 05:50:37'),(733,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ssobirov08@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yau9c9o8\",\"label\":\"First name\"},\"phone\":{\"value\":\"86883363432\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hLgtCpc 6Ek4 ReVaC1S 1ZJahtZ 6DOq JdBqC8D\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 05:50:41'),(734,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"julijan81@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yb8n9sbc\",\"label\":\"First name\"},\"phone\":{\"value\":\"89968187231\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WteIxd9 Hv2z F7SdZnC uBdroAe jbp9 9l8rFZn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 05:58:39'),(735,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"katya.ibn.sharapova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yceby4xs\",\"label\":\"First name\"},\"phone\":{\"value\":\"87378858954\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"l8hIIJi drHE CFuGu9V tjsxHPn xbNA LJUsw1H\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 05:58:41'),(736,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rucik565696@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yd5jukfx\",\"label\":\"First name\"},\"phone\":{\"value\":\"82967847792\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KVhty0t XyOH ZnUVh5r p08lPFX WSd6 Fu6kPMC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 06:06:47'),(737,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"levashov215@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9tq4j3c\",\"label\":\"First name\"},\"phone\":{\"value\":\"87951953216\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pPl9pc6 MMuN ZR00Stq g49RGpL thJf 03j4qgv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 06:06:48'),(738,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ajayranga37@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybfqk2fd\",\"label\":\"First name\"},\"phone\":{\"value\":\"81369784375\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cZ9WOz8 N7cT JaKGvhL 7UzUCIE 9UwQ EpYWXqI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 06:15:00'),(739,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kernasovskaja1957@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycr935ug\",\"label\":\"First name\"},\"phone\":{\"value\":\"85811277373\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ymVXghw rq3m 67hum1i ZzaS3Y0 Lo12 9tez2mz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 06:15:00'),(740,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lunohod1970@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y824b6ep\",\"label\":\"First name\"},\"phone\":{\"value\":\"89884922877\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uYtgqbN nvAd ITO8Xhi dCG38k4 w0Gy TMTBgT0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 06:23:08'),(741,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"panovv534@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybqxyc6e\",\"label\":\"First name\"},\"phone\":{\"value\":\"85213789833\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NyqMAqb lZmC 7lCA6Q7 YFZQ3kE nVe1 0Wy64r9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 06:23:23'),(742,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"igolko0110@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9g73tv7\",\"label\":\"First name\"},\"phone\":{\"value\":\"88294935759\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"W2YsWB4 RqSC hfwoAYg S2NpG2L 0lv2 Cctq4VP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 06:31:15'),(743,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"airster@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd8479o5\",\"label\":\"First name\"},\"phone\":{\"value\":\"87581923682\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"J56R3W2 WiQ2 dtjlSKO 4Inh9QO dmnw jtW8a4f\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 06:31:17'),(744,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lubovxlibceva@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8hvxafl\",\"label\":\"First name\"},\"phone\":{\"value\":\"86937161796\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VoQkPYr 9aaC aBEe6Lz yLoRniw RnV3 c4UFncK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 06:39:24'),(745,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kirochka252@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydelprq8\",\"label\":\"First name\"},\"phone\":{\"value\":\"89979275215\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lD0idy2 Mstq vCFEFdE pHvCPgb A4Tt LcYk7Ki\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 06:39:24'),(746,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"andreyborisov1986vip@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yacghlfb\",\"label\":\"First name\"},\"phone\":{\"value\":\"89758414974\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0nDuuZn 1LI4 6AkyJtp GdcSX2F eeAm C1wNg0T\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 06:47:31'),(747,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"komkow150423@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8ftqpkb\",\"label\":\"First name\"},\"phone\":{\"value\":\"81734438858\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kv7mrvN FYyI 7yCUuhi khBV6ae fFmY riykauh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 06:47:32'),(748,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gmg0101@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yd8ocfcz\",\"label\":\"First name\"},\"phone\":{\"value\":\"87415542417\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ccAMEN1 ZtjJ yP4P3yd DdiRKWu hk5H n6Yliil\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 06:55:34'),(749,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lica1007@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9m2g8ol\",\"label\":\"First name\"},\"phone\":{\"value\":\"82415831448\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lHhvsuE 5haR 32FeOEN Ndnxj0a GHhg AUyzmKb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 06:55:35'),(750,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ote25@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y74ghkbr\",\"label\":\"First name\"},\"phone\":{\"value\":\"88613525474\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rj55no3 1Ojj 2otzIf5 BgOkKx8 FhOj 1Fm3BRB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 07:03:34'),(751,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"masana02@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ybmnxq4g\",\"label\":\"First name\"},\"phone\":{\"value\":\"81792755345\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MRaTtYL yZhB ITFAmYX gLv6KlT jEP7 Ftmk9CE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 07:03:36'),(752,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nastur85@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8xexfxy\",\"label\":\"First name\"},\"phone\":{\"value\":\"85223461969\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PAMJruX urn6 i1ODt27 CuOJQly wazl BPLtp3Z\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 07:11:43'),(753,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"preodoletvse@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8dna5fs\",\"label\":\"First name\"},\"phone\":{\"value\":\"85389693114\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"B4A0FUn fnKC lT1HMAf xmtzZv1 tUHR 4Y1KMng\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 07:11:45'),(754,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rostiksirik@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9kc5h9u\",\"label\":\"First name\"},\"phone\":{\"value\":\"85791599494\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kKLxYlH vLvT GnGAx2o H5DjqTI rgt3 f9gecuV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 07:19:55'),(755,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"narxem@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yaw3gdza\",\"label\":\"First name\"},\"phone\":{\"value\":\"82711176642\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"b6oI67K Nu4U Tbo6Ska h71CsRg cOd1 GFfXLz2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 07:19:55'),(756,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kurbanovaxava@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybff3pyx\",\"label\":\"First name\"},\"phone\":{\"value\":\"84999478849\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"p78hfDN LV5P amM1UVF czD6cic YiB9 x6TGjJg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 07:28:04'),(757,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"prostolupova63@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7kaclwx\",\"label\":\"First name\"},\"phone\":{\"value\":\"89985398354\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zbiwM40 YP3B F9cU9Ia 7BwjBxa e9RX 1FYdtFL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 07:28:05'),(758,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Scottson\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Scottson\",\"label\":\"Last name\"},\"email\":{\"value\":\"mikaelamartinov@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u041a\\u0430\\u043a \\u043f\\u0440\\u0430\\u0432\\u0438\\u043b\\u044c\\u043d\\u043e \\u0443\\u0445\\u0430\\u0436\\u0438\\u0432\\u0430\\u0442\\u044c \\u0437\\u0430 \\u0440\\u0430\\u0441\\u0442\\u0435\\u043d\\u0438\\u044f\\u043c\\u0438, \\u043e\\u0442\\u0432\\u0435\\u0442 \\u043d\\u0430 \\u044d\\u0442\\u043e\\u0442 \\u0432\\u043e\\u043f\\u0440\\u043e\\u0441 \\u043c\\u043e\\u0436\\u043d\\u043e \\u043d\\u0430\\u0439\\u0442\\u0438 \\u043d\\u0430 \\u0441\\u0430\\u0439\\u0442\\u0435 semstomm.ru<\\/a>\",\"label\":\"Message\"},\"phone\":{\"value\":\"88854479823\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"178.168.220.14\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 07:33:24'),(759,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"eberepc@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7kzjuog\",\"label\":\"First name\"},\"phone\":{\"value\":\"82971263829\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"krKya3p UJeI W86AxrK q6822kO Tb3m Q4YKM6A\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 07:36:14'),(760,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elena1212000@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yct4z223\",\"label\":\"First name\"},\"phone\":{\"value\":\"86392365432\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fgev2s0 TiZc DOdTxw2 to2LEsC jy91 pHXzr75\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 07:36:14'),(761,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"esk1983@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yab5aofr\",\"label\":\"First name\"},\"phone\":{\"value\":\"82539825545\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aETla2o hKiC bB87AMd msdGZQ4 kD6z DiOJ3tZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 07:44:23'),(762,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olzhasko07@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybleux7j\",\"label\":\"First name\"},\"phone\":{\"value\":\"88895445566\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zxnuILi TNjd wVH1obG AtutdJW Xf1S P7MNo7D\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 07:44:24'),(763,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bolgova.a@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycngeyt7\",\"label\":\"First name\"},\"phone\":{\"value\":\"87596675176\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gdhnsTL mfmX kVSBO1e rHTz4eB D9P6 NqYx0zK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 07:52:33'),(764,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zuevvlad858@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ya4hyzaa\",\"label\":\"First name\"},\"phone\":{\"value\":\"86851558551\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"K4zcZxN Tvph AEVWBPw UDZCyG9 RHg6 Zd0UGEf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 07:52:33'),(765,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bonim56789@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yb7zxhls\",\"label\":\"First name\"},\"phone\":{\"value\":\"86178782562\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eBvZoKW Prm5 a1Fc64c Q83tTLo TVtA hnjkuhX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 08:00:44'),(766,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zad.zadrot2015@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ydbke3va\",\"label\":\"First name\"},\"phone\":{\"value\":\"87791535265\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"17ldQeD 2q4e x412pxK t1fhA2E ucQN bciLiT0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 08:00:44'),(767,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gurovaekaterina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd5nl8ze\",\"label\":\"First name\"},\"phone\":{\"value\":\"85991853536\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zY03tfo DKwO yH2TXfI i4nojWW wjvt BihG8LO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 08:08:56'),(768,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"torres.2411@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8xexfxy\",\"label\":\"First name\"},\"phone\":{\"value\":\"86166121595\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WDjo812 78Q2 Qp2FXlW Ceqp6y5 p76Z 8Bd7j2S\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 08:08:57'),(769,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tomabermen@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycnd5x7a\",\"label\":\"First name\"},\"phone\":{\"value\":\"88689428933\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6mjRuex tjsK 8gNj19r FN8isWN CWpR SQGUlRS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 08:17:07'),(770,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"svirid.m1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybaa2t8w\",\"label\":\"First name\"},\"phone\":{\"value\":\"84369171624\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vfx5F7r XGTo Dr5J0Vf eyWRauZ b9Va qttyMIg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 08:17:07'),(771,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sargsian.ed@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y85xrefy\",\"label\":\"First name\"},\"phone\":{\"value\":\"84944759556\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sLTM8Hj St6Z GOMGGrS RkFFc4n tzDQ Zb8U0xY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 08:25:23'),(772,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"chebitko50@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9urxxco\",\"label\":\"First name\"},\"phone\":{\"value\":\"85358615558\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vcMGkTB X7rk mCPSj1e vn0aVhr yOsb HhWumUj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 08:25:28'),(773,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sibmac@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycomatjz\",\"label\":\"First name\"},\"phone\":{\"value\":\"82396125689\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8SZd6EV 30Ke agF3S4I fLHkDrg c9EX OdKkk2u\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 08:33:27'),(774,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"batuevagalina8@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yaak6jen\",\"label\":\"First name\"},\"phone\":{\"value\":\"85726277952\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ru1TYhJ t97k tpckSYe OErcaxU Es6I 6e4Y79F\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 08:33:27'),(775,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sergeipleshkov8399@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yck4xkyd\",\"label\":\"First name\"},\"phone\":{\"value\":\"84479936381\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nRku4Jb IIaq jXGpXQ3 OZkNjzy sZ2A nHz0fv2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 08:41:37'),(776,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sn7772@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yb6qh6t7\",\"label\":\"First name\"},\"phone\":{\"value\":\"87461252437\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RSEI92A VJv1 1dhWqlX ab76VvE tQ42 n8wKoav\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 08:41:38'),(777,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexlesh1996@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ybenbpd5\",\"label\":\"First name\"},\"phone\":{\"value\":\"88891184235\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AAkF2J1 8Yzv eJiSwHz GUEFcoo 9vdZ t9diUMA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 08:49:50'),(778,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mansur.normuminov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yb8f2jzt\",\"label\":\"First name\"},\"phone\":{\"value\":\"82813588472\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cxwiNuG MwNL lJv2Qvs BfhTFGY wg9e gQ5FFTY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 08:49:52'),(779,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bobst1961@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8p994gv\",\"label\":\"First name\"},\"phone\":{\"value\":\"84674321753\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cAa5ozQ tKWl TnVQ1QQ yzQwPXF ugGt 51AsLm5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 08:58:01'),(780,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hippiepizza@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yctbezhy\",\"label\":\"First name\"},\"phone\":{\"value\":\"87514794779\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aIFbsbg Y5Ut uyUDkfK ROeyxCU DcFx 53iojJd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 08:58:02'),(781,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"wanwan1972@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y6u838hu\",\"label\":\"First name\"},\"phone\":{\"value\":\"87231751878\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YyjJ2zB JNot YaOEirB j2oziwb 25AW 8X6KIGq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 09:06:15'),(782,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sidorczova75@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybsom4cy\",\"label\":\"First name\"},\"phone\":{\"value\":\"89997742918\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ab9h5Ik wAuj 3HJPsdF y89xC4J sxcy Vt51yNO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 09:06:16'),(783,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"roman.efim2011@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9tycjfh\",\"label\":\"First name\"},\"phone\":{\"value\":\"82566325978\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mfUi8bt CwJd 8BLqVI4 j6g5QJM fpj0 zrJrTcR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 09:14:28'),(784,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nadambayev@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yctjrosr\",\"label\":\"First name\"},\"phone\":{\"value\":\"88332668838\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1qxRXX8 inRl ypp6FBH nbeQaDT FNOm KdJTtS7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 09:14:28'),(785,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nagornaytv@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yacegks2\",\"label\":\"First name\"},\"phone\":{\"value\":\"89727584812\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HOEiWF8 cSZK ASXEtBX noG1XjT A2Q9 i4zFQwz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 09:22:28'),(786,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sch217@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y6vkfx8m\",\"label\":\"First name\"},\"phone\":{\"value\":\"84322528494\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2LbDvCy 6vWr 8DWpcDL gNUmTaT mQfY aRjes1b\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 09:22:50'),(787,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"usetina@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ydeyx54y\",\"label\":\"First name\"},\"phone\":{\"value\":\"88669696927\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bXLKiRY fW8w XVmmGPj 0nI23z6 J08O aYHPhRN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 09:30:32'); INSERT INTO `wp_vxcf_hubspot_log` VALUES (788,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"valuta222@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y7wgmo7q\",\"label\":\"First name\"},\"phone\":{\"value\":\"86421762741\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jQNQkXz fi4j CcE5Gqz 4Shfz4j kYUy 70XkC0M\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 09:30:34'),(789,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rnatalya980@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y93ps7p5\",\"label\":\"First name\"},\"phone\":{\"value\":\"86122135783\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Edv9waK 68bj hG7af7r EOHHPJh BXyt BiDVUJn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 09:38:38'),(790,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dimafg@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y82raraz\",\"label\":\"First name\"},\"phone\":{\"value\":\"87927526895\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gzj05MU kdHa AA5EzoI idSTE2L 3EBw nrQFVqd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 09:38:40'),(791,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kirov-odnt@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8mltb56\",\"label\":\"First name\"},\"phone\":{\"value\":\"82712324167\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"X3foHQ8 CCMu JDdNUb5 2bEP86O qsmC ymV7Jxa\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 09:46:48'),(792,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shamsutdinova456@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y764ldjw\",\"label\":\"First name\"},\"phone\":{\"value\":\"84333478671\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6otOlyB LNdB 53oIGTJ uyyZNqT ag4e J4YBEyS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 09:46:49'),(793,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natali220278@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y8m6sa6m\",\"label\":\"First name\"},\"phone\":{\"value\":\"85532538748\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dKauUpk gz4r W5dZTJB dfIqxL0 eDtP paC36Tn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 09:54:57'),(794,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"foma125@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8lmq8kt\",\"label\":\"First name\"},\"phone\":{\"value\":\"83657689788\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IxnAt78 nPR3 gI2auZ4 L6bg1xC YwJY IpfG2dL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 09:54:59'),(795,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"timuratadzanov28512@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybcp8bkf\",\"label\":\"First name\"},\"phone\":{\"value\":\"88133499443\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qkNRnUs 8ELF NqOSCVV NnAICvy Dv7n UHFCLbv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 10:03:08'),(796,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"viktoriy@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7exjq7t\",\"label\":\"First name\"},\"phone\":{\"value\":\"87328471919\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eaEmeMN AEIy MKLXrpk AwUqS0Q A7vX l2R4H27\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 10:03:11'),(797,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"myptcbuxes@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycbr6y67\",\"label\":\"First name\"},\"phone\":{\"value\":\"89287162761\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oCkGXxo O5rT YGc8Act r4uxJ55 w1bg fpFmNUm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 10:11:23'),(798,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zx3500@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydyzjl6o\",\"label\":\"First name\"},\"phone\":{\"value\":\"89623713446\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nJNERvf WON7 H3xnEtq eIXbvB9 xTaU 2WKFwaE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 10:11:24'),(799,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"wapokcuke79.5@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yallujan\",\"label\":\"First name\"},\"phone\":{\"value\":\"84753215454\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qNrVKH0 Ip68 7kgKktI vyBtsjR mNT4 WJbybDJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 10:19:35'),(800,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nataliaafanaseva3383@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y7saovx2\",\"label\":\"First name\"},\"phone\":{\"value\":\"88644431593\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rZsSeE3 SpAQ RPWqv7w HDJWjTw qeX2 ngD78Bg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 10:19:36'),(801,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"smiley19910601@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycpb8exx\",\"label\":\"First name\"},\"phone\":{\"value\":\"82478267611\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PtJl2v6 t7Hk xgxti56 IUToGsb rXT0 G0Ckrp6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 10:27:49'),(802,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tulegenutugazov68@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7yt22o5\",\"label\":\"First name\"},\"phone\":{\"value\":\"84775116128\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fmbQegf JUcK 5X1BQsm Vq74hPK 89wP ULxAZpU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 10:27:50'),(803,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lisitsa.tatyana@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y86omgk6\",\"label\":\"First name\"},\"phone\":{\"value\":\"86614736795\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qPXVI2y xvdh 5uXBJrG TWeUJmM FcGb Bweoyoc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 10:35:59'),(804,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alinakuvatbekova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9zcu8pw\",\"label\":\"First name\"},\"phone\":{\"value\":\"82788229381\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WoKJyvz qRXA eAW62Ga LTTO9N1 fLf5 BjF7yUu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 10:36:01'),(805,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gheniya1976@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydenwpwr\",\"label\":\"First name\"},\"phone\":{\"value\":\"85356876279\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JO0h2DT kAlw wCxTbgf CjC7FBZ MYl5 TP3vUcr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 10:43:57'),(806,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nastya.klimenok.84@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9ovwgou\",\"label\":\"First name\"},\"phone\":{\"value\":\"86582157128\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nprs0jI 8ZuS nFbtHka rgwPtCW eJqk C12pifY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 10:44:04'),(807,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lojuggrushitranoz@mail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"RobertAgime\",\"label\":\"First name\"},\"phone\":{\"value\":\"84396254641\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Very useful message\\r\\n [url=https:\\/\\/gay0day.com\\/]https:\\/\\/gay0day.com[\\/url]\\r\\n\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"54.39.29.64\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 10:51:04'),(808,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"masterov121@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y83j2qvd\",\"label\":\"First name\"},\"phone\":{\"value\":\"89266435438\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0rEPYa8 IJrK xu1eOav 3ZEdVMu JdIz IZymLvK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 10:52:04'),(809,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"cacjuice@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybp89czj\",\"label\":\"First name\"},\"phone\":{\"value\":\"86427944321\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Rq2NvnU DzSW vkk2AWp JHJG0Fs 2Fn7 PyUWrOl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 10:52:04'),(810,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mihailchudniy@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8t8d5zl\",\"label\":\"First name\"},\"phone\":{\"value\":\"89636357324\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UadL0yT zOJw nMoCR9f XPVcXWx 4ky6 uBfMtQB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 11:00:18'),(811,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"liferenko-yulya@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yb7w5cob\",\"label\":\"First name\"},\"phone\":{\"value\":\"83911619466\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xpUipuI YULj sdE7Ug9 gZf9fCo 3h3Q iVA3cUV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 11:00:20'),(812,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexdersavin@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yc52c4gj\",\"label\":\"First name\"},\"phone\":{\"value\":\"82721267224\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gVsZqvS wsBG t66SmBt FKTfe09 masb 2D4Gcar\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 11:08:31'),(813,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aslanbmw@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybbx2h4p\",\"label\":\"First name\"},\"phone\":{\"value\":\"86324349969\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VsbmQf3 Hqaj 4jEGJml FkFV8sT 3wRf wFCBvFU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 11:08:32'),(814,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vikusyakisunya@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd3ofoad\",\"label\":\"First name\"},\"phone\":{\"value\":\"88922319451\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"p1vRp0m WMcz f3u8K8s 9OIfQVC Ztk8 bnfTBAd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 11:16:42'),(815,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mirnaya@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7wxphd8\",\"label\":\"First name\"},\"phone\":{\"value\":\"89792951966\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zcdqg7B aoFy T9iZlES coUsW3E HIv1 qFFh4ep\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 11:16:45'),(816,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gulbadam.kg.96@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb29nk7u\",\"label\":\"First name\"},\"phone\":{\"value\":\"86222141279\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5Tl08X8 B6Yk byQhnSz ZjbzWjF Jhic OoUuKbw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 11:24:55'),(817,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"belov1979vladimir@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y75wkx6x\",\"label\":\"First name\"},\"phone\":{\"value\":\"82263988771\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RzqMjHO UwFd RXzwBs2 03O9F9D K1qX iuikcHb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 11:24:57'),(818,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"logvinova.iren@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ycjseg3a\",\"label\":\"First name\"},\"phone\":{\"value\":\"87589756984\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qHaZRUo Ob1u 0Oi1YPs pqkeuv8 nAlo y1Cq36X\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 11:33:15'),(819,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"violetta138@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ya8c3z4f\",\"label\":\"First name\"},\"phone\":{\"value\":\"86899757193\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BVWtu8N gGAl x8xFYd8 1OzEPYG 0AS3 6Ng0Jcm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 11:33:16'),(820,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lit8lex@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y96shnul\",\"label\":\"First name\"},\"phone\":{\"value\":\"86428517695\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wfnMzMa Elw0 P8pWsri ASzWgoT Qvzo EL6fh5w\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 11:41:24'),(821,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"7aesculap2@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ydcby8ru\",\"label\":\"First name\"},\"phone\":{\"value\":\"89284791672\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vrf1UHE 4oTD MA2U6Bn qIlPa2c Dpy1 DizKYzL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 11:41:25'),(822,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fedor.mukhachev2@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycu4hafe\",\"label\":\"First name\"},\"phone\":{\"value\":\"81328245991\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"F7JceL4 6ACJ e90HKpb xiyteqg JYdt LIPfC5V\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 11:49:31'),(823,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vasbulalex62@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8q77cax\",\"label\":\"First name\"},\"phone\":{\"value\":\"84155338955\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"30pLcFO mEY2 iq3PhNF Ph9eacA vrKJ 6yDd14N\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 11:49:34'),(824,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"urijf0403@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8z73p45\",\"label\":\"First name\"},\"phone\":{\"value\":\"83827917113\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7vNBl8d zXLD OeAcKjA b58J00p E7gN iZtRPfi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 11:57:37'),(825,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dzimych94@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd95n8yb\",\"label\":\"First name\"},\"phone\":{\"value\":\"81535796764\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rm54jiT BveY kGNuyU7 TNge3Fb LI9V Kg77pBm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 11:57:38'),(826,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"maska.moska.2018@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycqr24vw\",\"label\":\"First name\"},\"phone\":{\"value\":\"83981641621\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wVaMl4t Nvnb 7eozd2O QmeX127 ihdb eN81ddF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 12:05:44'),(827,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gydmon@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9y2z7u3\",\"label\":\"First name\"},\"phone\":{\"value\":\"89133337334\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"u2mE0YU nfuM O4RGlKe GmegNJB 0l61 DiPWEHU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 12:05:44'),(828,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mauniers@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydcd29f6\",\"label\":\"First name\"},\"phone\":{\"value\":\"89517845679\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZS6VGrt Kmtg Spff69E hDhrTMA Cire mfdZiEZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 12:13:53'),(829,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"maksavgust8@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycxbg3ry\",\"label\":\"First name\"},\"phone\":{\"value\":\"85573452757\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WKMscia Eejs sP93oCC thG355e us34 pnGzxfb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 12:13:54'),(830,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"linkipig4@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9tjpdbs\",\"label\":\"First name\"},\"phone\":{\"value\":\"87198261686\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3evQv5j ToKu SZpXlWo pR50H9G 7Esw B90L7fE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 12:22:17'),(831,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bostumakkyzyzyldyz@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7ynpxew\",\"label\":\"First name\"},\"phone\":{\"value\":\"88996341369\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bgM79de Rp1B zSVR25j zhB7ZEZ 3oTw 2zXHXmH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 12:22:19'),(832,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bevynaeli@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yd4zx2na\",\"label\":\"First name\"},\"phone\":{\"value\":\"83132368937\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WnPuY2g LaJW kLHaEH4 85TXWZ3 HL0v C5Tdycj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 12:30:15'),(833,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"irarenikova788@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9jadu4h\",\"label\":\"First name\"},\"phone\":{\"value\":\"86685352941\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CwRPsPe swrl Ko6yImw xDKACSX QkhB jHXObRE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 12:30:38'),(834,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vavka.king@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybj6f3oo\",\"label\":\"First name\"},\"phone\":{\"value\":\"82567262459\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"alvnGHt K7F0 O9sGFXk lzbNE9F fTf8 15zsMB5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 12:38:12'),(835,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yasmintoha37@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yatl5xkh\",\"label\":\"First name\"},\"phone\":{\"value\":\"81998343546\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9EvGryg jzGR jfkAgBZ eprBcfy SJ6n x2FonQr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 12:39:04'),(836,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"komasuksergij@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9etbjd7\",\"label\":\"First name\"},\"phone\":{\"value\":\"88688374357\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9UuW76y BtfU qc0drcx OAGqPDs IVUD jgD3vjx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 12:46:12'),(837,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mirgazh@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7e5tsh2\",\"label\":\"First name\"},\"phone\":{\"value\":\"87919255855\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"56ROiNW 2H1v 6jCwzEE 95QdOzz tgIS mC1kW9K\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 12:47:36'),(838,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mahinya2002@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybxevwdy\",\"label\":\"First name\"},\"phone\":{\"value\":\"81419176941\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wjfr7DB 0CWi UFyJduP DbP85Bt Oobe 4djhWr9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 12:54:04'),(839,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hayratullo22@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y984nk9t\",\"label\":\"First name\"},\"phone\":{\"value\":\"85645429218\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vMVnORN cvTK fEwESJf Hr4FUmt wPaj 2EXFyra\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 12:55:28'),(840,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"d1972parton@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycwkot98\",\"label\":\"First name\"},\"phone\":{\"value\":\"87781387481\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TARqqkU nQLX ZyuBPf1 0QRxzNA Qs72 m5io2Iw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 13:02:00'),(841,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mar1988tat@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y99u2cbt\",\"label\":\"First name\"},\"phone\":{\"value\":\"86216878328\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Enlahv5 gXca MSmY3Vb kwFWlvb dQAk 6GHnhhu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 13:03:27'),(842,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tasanbaeva.d@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybzcg5ua\",\"label\":\"First name\"},\"phone\":{\"value\":\"81743471713\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"crMwtHi r0Eg zMAAzsl 4ZL0jgx p2qL QrYlAWW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 13:10:00'),(843,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yuruk3@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yaxqpayu\",\"label\":\"First name\"},\"phone\":{\"value\":\"87998619965\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wP4AQmA wpic tgBV45g 9gxzgHW isJd XzfcbDY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 13:11:25'),(844,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"savilov278938@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycdwbtx5\",\"label\":\"First name\"},\"phone\":{\"value\":\"87744774944\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lwQAOAK Mum8 o4XUWUD pkij8ht Ifn5 XEddYTv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 13:17:56'),(845,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"romkapillar@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yb6ygzd5\",\"label\":\"First name\"},\"phone\":{\"value\":\"86119254162\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Seo2vSq CbxG 67gw3lY UD9JgGd GGtt yCL4rro\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 13:19:20'),(846,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sasaremizov715@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9segvr9\",\"label\":\"First name\"},\"phone\":{\"value\":\"87646822664\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"G7VCA8E RB06 pcac4OC IqpbTge mWKo 3IPDDow\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 14:49:15'),(847,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"p.nike16@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yat4r3gd\",\"label\":\"First name\"},\"phone\":{\"value\":\"83611176421\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AyZNmZK KbAw SwDbv0r TUaIVm3 DrHf iRqAjYT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 14:57:25'),(848,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"serchernof@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybmsjy9c\",\"label\":\"First name\"},\"phone\":{\"value\":\"82354458342\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"azg0DkZ OmEq LCD7Izl 8ZfJvqA OEP7 SKcdzG2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 15:05:35'),(849,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zainudinova427@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yahhvvj9\",\"label\":\"First name\"},\"phone\":{\"value\":\"81759133611\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DFzRM3G hgiN 7p6WkLQ iBr8SAd sUT1 tV5NX61\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 15:13:58'),(850,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vlaiko.olia@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybo97667\",\"label\":\"First name\"},\"phone\":{\"value\":\"86667298854\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5xhCIKq Nh2b eLyH3eC TFQ9yuH fiSZ 2rR53bN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 15:22:08'),(851,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aspaukstis@yahoo.es\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ya8a4pqj\",\"label\":\"First name\"},\"phone\":{\"value\":\"87522868316\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CACC4Wb kXPd Od1Q9uF 17YNhwy LujC sHuDNNj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 15:30:11'),(852,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ao200071@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9gmjybo\",\"label\":\"First name\"},\"phone\":{\"value\":\"84559242614\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"km79hoO PXoR jQ0mmy5 G2sY2yg 5zSl TqFyu0B\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 15:38:17'),(853,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"manju_choudary@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc8casez\",\"label\":\"First name\"},\"phone\":{\"value\":\"84279475148\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DphsMWH c8c4 Egst5WS G3oyFyl b3m0 QgRXIuw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 15:46:27'),(854,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natali.muxina2011@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9w3sm26\",\"label\":\"First name\"},\"phone\":{\"value\":\"83973195764\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PoX0Xrp LzDq iYFDCF5 FyFRpso 8utq 1gaaeHG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 15:54:24'),(855,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mehrulo.mirzobek.1990@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yda63jtm\",\"label\":\"First name\"},\"phone\":{\"value\":\"85343348862\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"O5zw9a8 GkXz zlzj7hj tMErbnh Taiz wZNNpp1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 16:02:22'),(856,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"varenikssss23@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yaro5vjz\",\"label\":\"First name\"},\"phone\":{\"value\":\"81297727987\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eHq3Fmd w5lh GZEFBQ3 ffnhoHv 6o5X wDLe2ew\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 16:10:24'),(857,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vol.indi@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yblfjphq\",\"label\":\"First name\"},\"phone\":{\"value\":\"89587842369\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"REZs2rz Wtnk 56mof87 VOOX9b0 xqTw IrYRCmb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 16:18:27'),(858,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sasatbhogi@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybfkrup6\",\"label\":\"First name\"},\"phone\":{\"value\":\"84679882137\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"stObqdi XAU5 8y2qjj7 Y8xdZvZ nmCH bk4aEoo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 16:26:31'),(859,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"detki0610@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y8mkz2s4\",\"label\":\"First name\"},\"phone\":{\"value\":\"89976485654\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jGYZFUV ZTIX zS3YmmW rMJvkdd 7bPU UQFtO3T\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 16:34:41'),(860,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kleopatraszm@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7h6kjbm\",\"label\":\"First name\"},\"phone\":{\"value\":\"83265674655\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AglmvhJ WFiy 7WUKdnD y44281C svgf YqFUkpx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 16:42:48'),(861,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tpirogova508@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9tees35\",\"label\":\"First name\"},\"phone\":{\"value\":\"83838172182\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GoH8tld B6Ni zpTUQdW XnumtBH EJj9 5GE2B00\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 16:50:49'),(862,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vs3944468@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8x94g5s\",\"label\":\"First name\"},\"phone\":{\"value\":\"89863262774\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tbcWdTy DMa4 cQM5i8G dLppcbO S8c5 qr3fWvH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 16:58:52'),(863,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"msushakova@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8evm48f\",\"label\":\"First name\"},\"phone\":{\"value\":\"87244759627\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iVrkWDp 1hSm 06i8zc1 eio4acf AZtt IMd1Sur\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 17:06:57'),(864,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"warskart@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7xbfhxk\",\"label\":\"First name\"},\"phone\":{\"value\":\"89191261218\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yHr9kMF DSmd LMVXOjz lzTHfCd bRDl X08iZMo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 17:15:00'),(865,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"razerstlowhp@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9tcmgb3\",\"label\":\"First name\"},\"phone\":{\"value\":\"81417727724\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BIBIfhi NAvJ dIDTkpB uUakXvL MTOu 4FNcfVI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 17:23:03'),(866,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"klim.zloy.kak@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydbdpqc2\",\"label\":\"First name\"},\"phone\":{\"value\":\"87961733334\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"c2AkUMy Orfx Wx0VhgY jVyS1yP 1DCZ ROPmbBg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 17:31:06'),(867,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ryadnovalyelya@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9a8c97f\",\"label\":\"First name\"},\"phone\":{\"value\":\"84985338228\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Pf140RV Ict5 ehzCsVg lNDHtTB ENVg 5N72E5p\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 17:39:11'),(868,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nlv181119501@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc5rlwne\",\"label\":\"First name\"},\"phone\":{\"value\":\"82128444852\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8fQJB7w c2td gcVxRIq UqJ8eYr ida2 vgQfDLp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 17:40:57'),(869,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anya.chayka.1995@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9lusvpm\",\"label\":\"First name\"},\"phone\":{\"value\":\"85547844538\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ied2TqP OVpI wkhRIF1 Tyj4uMr 5QPa dSRpIUe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 17:47:12'),(870,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"julietta16071982@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb2us7tr\",\"label\":\"First name\"},\"phone\":{\"value\":\"87212783923\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9KLYYr8 al9C F05GNwE m5o0U2X op5v 5sI8CnX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 17:48:21'),(871,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"artemanisimov96@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycsso5do\",\"label\":\"First name\"},\"phone\":{\"value\":\"88967232735\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qfjY0bq 9uTM Sh9EaMt 85j3VXi SzPg C9VgrXj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 17:55:06'),(872,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tobashov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yblrlehn\",\"label\":\"First name\"},\"phone\":{\"value\":\"81781997574\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ud1mMe4 MPDC VZopxYv lBRv7Wl oZ29 JMkfJyK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 17:55:49'),(873,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"novkvp@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybh4buxt\",\"label\":\"First name\"},\"phone\":{\"value\":\"89353131489\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Cu2pTX6 8pkt tH5lUAv YVUo0ef qNoc OwFufsS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 18:03:09'),(874,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"trickyy26@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycjn7mvk\",\"label\":\"First name\"},\"phone\":{\"value\":\"87376782514\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5yjWQmx Edft YZ8wqPi EV3DKrC DWdx wZTXjIm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 18:10:55'),(875,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tsvetkova.julia123987@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y7r66op7\",\"label\":\"First name\"},\"phone\":{\"value\":\"82999716928\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NyiECTe NXJ5 gROtLdq H0PlaLS slff XXMDsJj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 18:11:00'),(876,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vahralu@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd7bgfpf\",\"label\":\"First name\"},\"phone\":{\"value\":\"84614471688\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4JQj61f 4qPR HOWOyFK q83IX0y Kyk4 ellyAUD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 18:18:41'),(877,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"89624099520kseniay@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y73vrzpn\",\"label\":\"First name\"},\"phone\":{\"value\":\"89831947286\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cxrkuid MoiW hpXwMDp bf9jDsW YSea F0RmHn6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 18:18:45'),(878,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"odno62@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yambzttf\",\"label\":\"First name\"},\"phone\":{\"value\":\"86362895985\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tUsVmhz YJ94 QK67qRF lcecdu0 Ul3J TauMBKH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 18:26:41'),(879,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"saira7358@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yapvr6hz\",\"label\":\"First name\"},\"phone\":{\"value\":\"85165132582\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hXx6Opz 61WK pQ6OPrD YesQxvF VOje Lsbx2z6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 18:26:43'),(880,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jeff47@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybb7vfk7\",\"label\":\"First name\"},\"phone\":{\"value\":\"86391163893\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3maTGwv aXJ7 3tpbTvX 5UP7Iej vmsL bmWt2JA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 18:34:23'),(881,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sslavik1980@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycgtnqtv\",\"label\":\"First name\"},\"phone\":{\"value\":\"88966485971\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Pf7pZ0r DpJS dP0xqev iTGok58 eyrJ rILyN8R\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 18:34:32'),(882,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"s.subbotin6568@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybhnydkh\",\"label\":\"First name\"},\"phone\":{\"value\":\"85212933752\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ObYxyEO 195L sUw5H0Q cx8XQvS gwLG 5EjhIUK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 18:42:01'),(883,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"19vasilisa96@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9c8ml6o\",\"label\":\"First name\"},\"phone\":{\"value\":\"85822534258\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8Cy8CJn 8f5G sCpp4nM oOjS6LR DUW9 18ahXWt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 18:42:23'),(884,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marg.veselova@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybc2bwt5\",\"label\":\"First name\"},\"phone\":{\"value\":\"87567923114\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"E12q6jV JWKT rjEwCE1 iN3TJFv bqEs oFWshmj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 18:49:33'),(885,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mirgul.nasenova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y944pllz\",\"label\":\"First name\"},\"phone\":{\"value\":\"89256328451\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"utZR0DA ZGH3 4OotUJB tVkKEaH i6Lk f9rPZLR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 18:49:58'),(886,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sveta12sveta.rn@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9htfr23\",\"label\":\"First name\"},\"phone\":{\"value\":\"84323645242\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OpzJQEQ 0t1K kiDb6Vo U50hNtn 9Z4K 5ZOKmOC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 18:57:07'),(887,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"romanzarin2@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9vmnqwn\",\"label\":\"First name\"},\"phone\":{\"value\":\"85872391881\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SLNs3C1 2zor PNS1PSI IxM4Pmb jg1x dvrGltj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 18:57:37'),(888,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zaharcev20201@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ya8wbwub\",\"label\":\"First name\"},\"phone\":{\"value\":\"84566659333\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"S1Zp44F jeAo ZOClKHK RCu2cbW R7bu jMA5fJf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 19:04:45'),(889,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rimmovnaelka72@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yac2qtrs\",\"label\":\"First name\"},\"phone\":{\"value\":\"84573816841\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CodXpR4 KH6d DscmzJC nlLxE3n FLLz mYuIptO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 19:05:18'),(890,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bidi1996@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9rkwkec\",\"label\":\"First name\"},\"phone\":{\"value\":\"87656673689\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"muW5V9b lemr QPAkCPi E0ABSMp KwBA 0Ybd1bV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 19:13:08'),(891,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"chris.summer@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7fdgdhl\",\"label\":\"First name\"},\"phone\":{\"value\":\"81833275145\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"y1qLgCz llDV TdhyMO8 wxQlXLk srbr v89SBLC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 19:19:59'),(892,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zotov1795@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9hbf6ko\",\"label\":\"First name\"},\"phone\":{\"value\":\"87596596229\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Jla5yqc ipPB f9m1kf1 tJCpBFQ L8g4 UbvGwfa\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 19:20:50'),(893,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aldikeeva81@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7vwc3kt\",\"label\":\"First name\"},\"phone\":{\"value\":\"81239688226\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UkFPuC6 pUyv 0mdxcf0 daV8nd5 82Fi SgYkKlC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 19:27:44'),(894,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"milokumova6@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yb8exx4y\",\"label\":\"First name\"},\"phone\":{\"value\":\"82197931195\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YzHmlyk sCn3 dNgNwi6 fubTyDk QHWP VLDZHGE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 19:28:24'),(895,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dudairin@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y78z4qat\",\"label\":\"First name\"},\"phone\":{\"value\":\"89331515726\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LcGQsD7 n0aX 3ka6EQr 3odTqt8 7kA4 qktkT2T\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 19:35:17'),(896,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dreamgirl82@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yatbthhl\",\"label\":\"First name\"},\"phone\":{\"value\":\"85158415254\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HibzdxE dUdJ yLFBIPT Tdhqy96 bNSU 1m8Pxzr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 19:35:53'),(897,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gavagruzin@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9963u58\",\"label\":\"First name\"},\"phone\":{\"value\":\"88636522435\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WLUCNKX JiIm B1tPtzK TWji5So Wxgx DRojee0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 19:42:49'),(898,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aleksfokin495@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybjgrfjr\",\"label\":\"First name\"},\"phone\":{\"value\":\"89695699981\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TiZb0lF TJwu zAFAoCw jFfV4je 8HW0 VYiVcTb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 19:43:34'),(899,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"stalinvstalll@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y6v6sxp6\",\"label\":\"First name\"},\"phone\":{\"value\":\"87627267293\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ehcNCyt H5Mc MiRCXEr SQa1oJO he9S yBJksYJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 19:50:22'),(900,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mmmbaer@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yctu73nu\",\"label\":\"First name\"},\"phone\":{\"value\":\"81671432111\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"37U5fes QbNN A8AcQqV 5CNOg61 bOPA sORFr06\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 19:51:18'),(901,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"eol89@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8a2sf8v\",\"label\":\"First name\"},\"phone\":{\"value\":\"83265828932\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jatU0pt uJKc AvaMsxS QcRJzcE elDr ozC2Rr8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 19:57:52'),(902,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tank131183@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yad8noz6\",\"label\":\"First name\"},\"phone\":{\"value\":\"81222237674\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LKWKmHF pd3H 74K0wuV 5ulueKe N56F G8fkLWs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 19:59:04'),(903,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fedorov190798@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybfnk7h9\",\"label\":\"First name\"},\"phone\":{\"value\":\"85159243831\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UPHPu21 3rJb P9AufTD ccfkIlj RwN7 M5BunyN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 20:05:26'),(904,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hatlamadzianayrika@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yddvze76\",\"label\":\"First name\"},\"phone\":{\"value\":\"89964664159\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KvPaz5v B5u8 bNGWC5z CdAi0WN HVtN GhOURcq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 20:06:59'),(905,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zehirliyim_dikkat@hotmail.de\",\"label\":\"Email\"},\"firstname\":{\"value\":\"EddieDix\",\"label\":\"First name\"},\"phone\":{\"value\":\"87749573733\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Revenu passif de 13900 EUR dans la semaine >>>>>>>>>>>>>>>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&54=07&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw <<<<<<<<<<<<<<<<<<<<<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"191.101.31.48\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 20:07:53'),(906,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"socram.m.1987@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8vz35u7\",\"label\":\"First name\"},\"phone\":{\"value\":\"85247295367\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KXCvcX0 4Jkn wWvvkK0 5Y7Xw4J CAHT Fek98gF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 20:13:02'),(907,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natalia.megvegeva@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y98sdxft\",\"label\":\"First name\"},\"phone\":{\"value\":\"87587329638\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AH2egvp OZI1 gt3SqLp 0EmBPt5 aD32 wgpi16v\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 20:15:02'),(908,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ian1787@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8vqyprg\",\"label\":\"First name\"},\"phone\":{\"value\":\"85955313649\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BSagGGf n2F0 vav4GxX TDnBjIh RjiI hHSsXH4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 20:21:07'),(909,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"daumon@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybozyvwh\",\"label\":\"First name\"},\"phone\":{\"value\":\"82693948342\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Qx9dGeT Hd3O J1Fh4s8 twyC6T7 UB9j LsUvy3Q\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 20:22:54'),(910,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vl.moek@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8t8ys8k\",\"label\":\"First name\"},\"phone\":{\"value\":\"85752217425\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OKqhh2O qx2O Rj1KYxn XSQm1nV 4afZ KVCKn6m\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 20:28:41'),(911,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lsviridov@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y74kvxpf\",\"label\":\"First name\"},\"phone\":{\"value\":\"86398115955\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hvHrO31 Onch Fl60Zeh 6EhfU77 Ciom iqwQuu5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 20:30:44'),(912,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zd.regis@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ycuf7o59\",\"label\":\"First name\"},\"phone\":{\"value\":\"82739874694\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OdQEY0n Jori wHOXUoF ju0ZrtK 4GtW Ly3z5nX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 20:36:20'),(913,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aminaidr17@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9vwepmy\",\"label\":\"First name\"},\"phone\":{\"value\":\"85646724697\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QKwmjwl 5xoW EPDwgdn 0JwzRXo 455D F91uObn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 20:38:30'),(914,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"andreikuznezow2012@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9a6nmjd\",\"label\":\"First name\"},\"phone\":{\"value\":\"84278549145\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mEtP3DK zkty bmFrU5N FDf774c JUNx Fbip5Ip\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 20:43:52'),(915,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"don.melnik@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycfd6rl8\",\"label\":\"First name\"},\"phone\":{\"value\":\"89487961296\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hMMhGr8 jQ6F Gsj7ZbM Oof4jLK 3z8z WCBOsHe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 20:46:07'),(916,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bsthakare5@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8cujbh5\",\"label\":\"First name\"},\"phone\":{\"value\":\"86619424237\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3bAoZvw 0P9e 2v0yjqT OKrAOjT hcdY slYEZc1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 20:51:23'),(917,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"samoliukg@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycxk4gyh\",\"label\":\"First name\"},\"phone\":{\"value\":\"87398464623\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rT7y0Tx 5tmb SNeGugr 8bR6Eiu cBAw ITesmie\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 20:53:47'),(918,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dino-x@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybew9rav\",\"label\":\"First name\"},\"phone\":{\"value\":\"83614285882\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"22hHz3e hWT8 Y7afpgw 3PECNqE yXZq Fqjqrqt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 20:58:51'),(919,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sveto4ka0789@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y6vemszf\",\"label\":\"First name\"},\"phone\":{\"value\":\"82471436653\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VqGOp2p VKR4 nzikl9d kmkKwj9 2Rn1 vphXsYQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 21:01:38'),(920,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"galimar100@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7mu29s4\",\"label\":\"First name\"},\"phone\":{\"value\":\"87466683757\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1Kgk1if 12y9 QQth3aC ZemJbiI mFv6 w1HoOve\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 21:06:28'),(921,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jokemds@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya6gtrsz\",\"label\":\"First name\"},\"phone\":{\"value\":\"83669812923\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8hajw32 O8GT h92Ycqm OJbtQ3E nDx6 KJ595jU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 21:09:34'),(922,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sofiamarkina1777@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ydc4pc7t\",\"label\":\"First name\"},\"phone\":{\"value\":\"89821839545\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dIIMZZK s4XS c1XZrLi f02c36F UPWi X3bPNVp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 21:13:56'),(923,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alevtinkakudresheva@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycav6vtf\",\"label\":\"First name\"},\"phone\":{\"value\":\"89485293323\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zQBdRg0 FlQ3 wUID2EA 3fKuTR7 Bnzm 4HbjP9f\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 21:17:24'),(924,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"argenraimberdiev03@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9mwfm6s\",\"label\":\"First name\"},\"phone\":{\"value\":\"86515143921\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IyXmBKQ jl3P cYbamGy A2uB93T tmwk PvLruwQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 21:21:44'),(925,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"viktor.s.alekseev@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb8s4s6h\",\"label\":\"First name\"},\"phone\":{\"value\":\"85858155642\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AZMeAq2 PgG9 Mry4izj uxNjGEn D6gB 0YcjUnY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 21:25:16'),(926,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marya.akimova92@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycbzehhd\",\"label\":\"First name\"},\"phone\":{\"value\":\"82431978623\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QDyfdC8 hb0l c7cZghZ KETcxgt Yesq viMjTFE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 21:29:12'),(927,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"salfiya73@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8afq2kl\",\"label\":\"First name\"},\"phone\":{\"value\":\"89971668542\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wUvJFpZ m9kM AUcwTFH 7HLypVk ulDx yvu42TY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 21:33:08'),(928,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ishinagalina70@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycj47cyf\",\"label\":\"First name\"},\"phone\":{\"value\":\"87671629546\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rNII4Mm nKdP Ia0i6Hj SvqCHVF FJoX BZ86Mu3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 21:36:43'),(929,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"juliasolo001@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yangfqjp\",\"label\":\"First name\"},\"phone\":{\"value\":\"83128193767\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uuQj0op ReuC AahNMN5 u8rjsMZ 6OlM bnNB1YD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 21:41:02'),(930,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ooosrt@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yb3j2hxz\",\"label\":\"First name\"},\"phone\":{\"value\":\"85416315892\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2p0ndsl ro0P YNzAhBc kez3r12 RZ1t hY4Wkbl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 21:44:04'),(931,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexdiesel92@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yctseovs\",\"label\":\"First name\"},\"phone\":{\"value\":\"87861651967\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0dVuRFY nQEr kDXD02K nUVvQE1 WJ4H EMTVbVU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 21:48:53'),(932,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"necaevatatana42@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybabpjj7\",\"label\":\"First name\"},\"phone\":{\"value\":\"85232377949\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qxnQMhK ErXk 1TjESgO 5xaE0K6 nwOL pro8G91\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 21:51:32'),(933,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"antonchuxin@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8xubp9j\",\"label\":\"First name\"},\"phone\":{\"value\":\"89864634447\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DtYoGA2 r08D iIrta1u WDqCCkP NzHy srxrnC9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 21:56:34'),(934,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lian.iryna@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yb3elkkd\",\"label\":\"First name\"},\"phone\":{\"value\":\"81545832945\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bJeim1d LvxF ZMGjqDH T4N15di NH1q 9vEDfnh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 21:58:50'),(935,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yurii114@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybx5erev\",\"label\":\"First name\"},\"phone\":{\"value\":\"89969293512\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XaobEia 8pFH NMNptF2 VYubXF7 sjsW 2g9nSXV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 22:04:24'),(936,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"verbelosludtseva@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yah3nzuy\",\"label\":\"First name\"},\"phone\":{\"value\":\"83558234697\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Z3c62UH RY6T KOpYrBD fsizWe4 kONy Zx0gRJ3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 22:06:21'),(937,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"moto2015guzzi@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y93un7ka\",\"label\":\"First name\"},\"phone\":{\"value\":\"83328925873\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"50kbC41 D5Ip XZOFzYX qvqAuM1 Iltz rKDAjga\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 22:12:18'),(938,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nastyadaly69@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc2g4nol\",\"label\":\"First name\"},\"phone\":{\"value\":\"85574457572\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PJWUemm kMxu 4wWmlII DCakLEp OhkT Jdxk46O\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 22:13:44'),(939,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"araclikyan@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yaatxt8g\",\"label\":\"First name\"},\"phone\":{\"value\":\"89643461416\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ejMvfU2 hicg wRohih2 b7RuPM8 ByUw bzou4du\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 22:20:06'),(940,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"demidovmaksim174@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya9k4mjz\",\"label\":\"First name\"},\"phone\":{\"value\":\"84698672455\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TD6JIBD LtTH pkef0Vi MeykX3T fMDU uBvZ0PG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 22:21:23'),(941,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kristina.korennaya@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9q93r9j\",\"label\":\"First name\"},\"phone\":{\"value\":\"83492155813\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fgRpA1H wMLa B1Y5tRX RwFwYLp 7ZC9 9xzvOWW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 22:27:55'),(942,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"millionerka@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9mma43x\",\"label\":\"First name\"},\"phone\":{\"value\":\"83739682216\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ODD4sdJ kmz5 eKVG5vi Tkh8oUb Qpqc zy5ziBZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 22:28:30'),(943,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rezetka1991@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya5sqasr\",\"label\":\"First name\"},\"phone\":{\"value\":\"86257241563\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AKiapAt 9ZmF htjLdfb YXg4ZTe m2Cb slHlTeQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 22:35:50'),(944,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oleinik.dev@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8fne3ta\",\"label\":\"First name\"},\"phone\":{\"value\":\"84357725777\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WeoX9lf oIZh YK6X4Yo zKHCbY3 6ULq txG4oat\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 22:35:51'),(945,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"magictanya79@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y8chaman\",\"label\":\"First name\"},\"phone\":{\"value\":\"86123848996\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"z1o6i2a 6Cjw 8dy6TOO wQEHErc JBiZ yVtC7wV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 22:43:19'),(946,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dk837227@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yayndlmc\",\"label\":\"First name\"},\"phone\":{\"value\":\"86462982741\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qQGS78v Yjos zisMSVh Hb3KvIv r9vE 1g8Thpw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 22:43:25'),(947,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dmitrijkrylov4351@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yd58hj53\",\"label\":\"First name\"},\"phone\":{\"value\":\"83435188617\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"M5TCYqr LXOe PoaACVI e5joNBO ACat 0W9PsDX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 22:50:50'),(948,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olgalukashina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ybzxagb4\",\"label\":\"First name\"},\"phone\":{\"value\":\"86878332372\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8UxhbBb HbIl Rvc64JI rzy1Eka zuBy v7X1dIA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 22:51:00'),(949,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nelya151286@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9adq3kl\",\"label\":\"First name\"},\"phone\":{\"value\":\"89129684177\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"w6NXcHB 5LMa lVCSksM UVa6RBC St9J 40fiC9X\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 22:58:30'),(950,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"muhammadbesty3333@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y7yenr2s\",\"label\":\"First name\"},\"phone\":{\"value\":\"83353321935\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"81cyo33 FhoI vYQPRYl ynC5j8n Ios1 PqC8hq8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 22:58:36'),(951,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"avijitbubaipyne8013@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydcl45gv\",\"label\":\"First name\"},\"phone\":{\"value\":\"81232835328\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ngfvaJb KCFB nFCBjpj Zc6fusw 2CAO 3W471z8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 23:06:28'),(952,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"razmahninevgenij54@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9zfjmjx\",\"label\":\"First name\"},\"phone\":{\"value\":\"88985942545\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zyo2gUK TZZl ufdO3n0 QFZ2Tde sVde 1pAgbSj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 23:06:29'),(953,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elizaveta19041993@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7dvoqyx\",\"label\":\"First name\"},\"phone\":{\"value\":\"83116447577\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SCVjBVT Zkur 6cDDUkX OJ0m9Uz LoSm JD9OL8C\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 23:14:11'),(954,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"karinaayapova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y8a75jz3\",\"label\":\"First name\"},\"phone\":{\"value\":\"81977681769\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HpPkZYs 8wVr HSY4SO3 0jiCfKI 9rKq buETQnw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 23:14:12'),(955,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sanjar989808@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9tw4dmp\",\"label\":\"First name\"},\"phone\":{\"value\":\"83253741956\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nw5H21e iIlP gsNNr0p R8ezR3R 9lnM 452ykEI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 23:21:54'),(956,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"snezannamarinenko87@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7vwc3kt\",\"label\":\"First name\"},\"phone\":{\"value\":\"85653729317\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KBAIF7h 2xOV JsVTP2R 68iZwYX RGVC TMHx5fM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 23:22:05'),(957,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"artykbaevatatu@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yaat4lcg\",\"label\":\"First name\"},\"phone\":{\"value\":\"86494929499\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QI1xefS vLOJ 4eOy3et MZkIMik D2wi 0t7lfro\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 23:29:38'),(958,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"krytoyaraik@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8z86ooe\",\"label\":\"First name\"},\"phone\":{\"value\":\"86567473128\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EY9bNJw 58f2 WyPLKtm 9w8G6Ni 7Gip 8PYGzjX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 23:29:39'),(959,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anastasiysrimova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7qk2t8a\",\"label\":\"First name\"},\"phone\":{\"value\":\"89449267961\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3qYpmA3 wH57 RKjYHSR piZO5F4 mJXB 3rEJ7JD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 23:37:11'),(960,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vaxitova.97@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycbhwv2t\",\"label\":\"First name\"},\"phone\":{\"value\":\"87553414919\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1Jy6U3f xvDj fMGWcW1 VLwsbbq Dzy1 zcDPd5I\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 23:44:31'),(961,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"clivescanlan@yahoo.co.uk\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9wefqkz\",\"label\":\"First name\"},\"phone\":{\"value\":\"89237589657\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BQkJs5O xorY 7YXAEpG VAYVHN2 cXdo R3IMMHf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 23:47:59'),(962,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vvsdeva@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybx6m25o\",\"label\":\"First name\"},\"phone\":{\"value\":\"82743113787\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"THOjN0F hwEk 0vzLfwM deR9IVY TMe0 mWkHIyk\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 23:51:52'),(963,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"soldiened@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y72885fp\",\"label\":\"First name\"},\"phone\":{\"value\":\"82349923799\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MZJy1ku uT10 4qT9w07 JGocNzK yqg3 pXTy3CS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 23:55:48'),(964,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"medallo08christopher@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya3jl638\",\"label\":\"First name\"},\"phone\":{\"value\":\"81568547121\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"t7uX5uE CS6w criCtBY J38z9bm Cxc6 RDNerF7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-17 23:59:09'),(965,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kristoff1@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yd6ld2pm\",\"label\":\"First name\"},\"phone\":{\"value\":\"88246584544\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UTfO74G t3bP Lvcg0IN 8ytwIcf UAdq 6xEj27e\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 00:03:40'),(966,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alenashelepova05@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycvzgy7h\",\"label\":\"First name\"},\"phone\":{\"value\":\"83563835648\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WsfMjHZ buVO 3IXxB0N NuKyGQH TM4g ly9LWKZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 00:06:54'),(967,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mansell_s@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y73vrzpn\",\"label\":\"First name\"},\"phone\":{\"value\":\"84964848956\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"e5YgRQL 4m5T QgtIpSP jMEdgfK oHCt qYevZ9H\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 00:11:44'),(968,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"polkovnikova1963@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y7ylxrc2\",\"label\":\"First name\"},\"phone\":{\"value\":\"88784692977\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EXVqUih bP85 cL5rSUo Y0kQelT 15vd 3dMtVET\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 00:14:28'),(969,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kurbatov059@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y885wymq\",\"label\":\"First name\"},\"phone\":{\"value\":\"88233913911\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"V1W5fD8 59V6 Ctgtzcg T6nUrGl 7qjP QAVrdnG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 00:19:41'),(970,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elnurarasova939@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y7xx2vn7\",\"label\":\"First name\"},\"phone\":{\"value\":\"87628282293\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CwAKbro OAUi hTBFiXF BHtkDkf hTtR x6Bvm5w\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 00:22:18'),(971,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lanskaia1988@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yblnm4j2\",\"label\":\"First name\"},\"phone\":{\"value\":\"87673119475\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qLRghQq uBOS RF0am5w yfCnmnL h55j ePzyJ8X\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 00:29:51'),(972,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"denisovaisd@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yasfuv7d\",\"label\":\"First name\"},\"phone\":{\"value\":\"81444624628\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iCnNmjN dXOt tN6tbZw oZ5bgj8 u3Zf g3zPOOR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 00:31:12'),(973,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nika-nstom@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yby9uc7w\",\"label\":\"First name\"},\"phone\":{\"value\":\"89672382882\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oIs0W8F q2ih J3uKxM7 e9A1nhm oIZo NAp1PYG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 00:37:32'),(974,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oven5555@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y76l8coo\",\"label\":\"First name\"},\"phone\":{\"value\":\"84951979273\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zAQ2zS5 xL20 U1TRu0j CI2UCI9 YVyx MHrBzY8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 00:39:08'),(975,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vladyslav.lubenets@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y83cqubc\",\"label\":\"First name\"},\"phone\":{\"value\":\"84676835239\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6UJ4emF iQOM sJiqwK9 PlcLiWL MKmT QO92vJq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 00:45:09'),(976,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vladimirssp2017@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y74njzdz\",\"label\":\"First name\"},\"phone\":{\"value\":\"88871951567\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rwfU5oq rfDQ C3vtVDQ m2WZYUp OMPE HqgrvS8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 00:46:57'),(977,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ilonkarusanova2000@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaz62n38\",\"label\":\"First name\"},\"phone\":{\"value\":\"88438193471\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cGZXj1V YP7j LIHl4NV 8fRAARU 8ZEY YNTaB5a\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 00:52:43'),(978,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ahmatov.0510@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7lhl54r\",\"label\":\"First name\"},\"phone\":{\"value\":\"83884237765\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xu9JTuw YGZV 1AoY8cC 7kHqgOv glcU XSRRPLi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 00:54:42'),(979,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dnzharkv@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y92ofzjf\",\"label\":\"First name\"},\"phone\":{\"value\":\"88268746565\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"40Iwi4w Ae1H FVGHar1 9qMjLNm sGtX 2YTHA94\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 01:00:22'),(980,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ternovnikyuliya@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8lpu8se\",\"label\":\"First name\"},\"phone\":{\"value\":\"82338522693\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VocIire HR9T nBsSCTo aUowQ8b NdoY pjeyIVX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 01:02:31'),(981,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"steam.9182@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9ux4bmq\",\"label\":\"First name\"},\"phone\":{\"value\":\"87579659322\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1cYN3ek bJFV OE0bC3S eMcsZlO YijW vK9yvuE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 01:07:58'),(982,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"police2308911@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8ascslr\",\"label\":\"First name\"},\"phone\":{\"value\":\"88579439693\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aGn8u5Y vVVx yIUxVzN vuu2xRP KHzi r93R99I\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 01:10:17'),(983,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ian3131@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7juuh6p\",\"label\":\"First name\"},\"phone\":{\"value\":\"84659722287\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BmWOI19 WHs3 NYJn9Uy FKEDcRH QSXl s3O8LSL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 01:15:34'),(984,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vipalex10@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8pw2bqu\",\"label\":\"First name\"},\"phone\":{\"value\":\"88567329283\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wkb6Mm2 u3hB zRrYx5v QOntihh ydr6 JLrEB1C\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 01:18:08'),(985,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"doshirak95@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybep7d9n\",\"label\":\"First name\"},\"phone\":{\"value\":\"82769984386\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Iu0S9cA OmXJ 0DuWXYt ekQUwDp LNXA ThVWoU2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 01:23:31'),(986,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ahmedovafarzona00@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yco9owna\",\"label\":\"First name\"},\"phone\":{\"value\":\"89644151658\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OntYZqh 9xzf QVAVYCy jlKKs9B tPlN ek07FfD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 01:26:01'),(987,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aynur0304@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycjltul2\",\"label\":\"First name\"},\"phone\":{\"value\":\"81635352972\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"S4sNjBP 4arW hwiZwfy T3yJ789 OCP4 b6eGl0O\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 01:31:14'),(988,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nes995@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ycll7bka\",\"label\":\"First name\"},\"phone\":{\"value\":\"85863311998\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TbG4Kso Xbd6 cqwAOyK bERTIxu JLww D07oFju\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 01:34:00'),(989,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"verezomskaya.julia@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9a5rgnc\",\"label\":\"First name\"},\"phone\":{\"value\":\"81611649629\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"g52d1z7 r1D6 xQAUaXh 0y4orMR wSFK XttYxil\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 01:38:56'),(990,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lasma1976@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycjr37q8\",\"label\":\"First name\"},\"phone\":{\"value\":\"83437516249\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gUFGGB2 TNFu LIaLAEv dj1LdoB 1H1x 97yaQuC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 01:41:56'),(991,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nadezdadokudina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8ql9zum\",\"label\":\"First name\"},\"phone\":{\"value\":\"82932352661\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HSua59c Hmi1 EdsCU12 UWLiTxC ZtcC XgQwb7B\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 01:46:41'),(992,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natali0421@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9r2l5mg\",\"label\":\"First name\"},\"phone\":{\"value\":\"85897552829\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9CaeltZ AOgv CiqpS7F L8SAOJr bisG YxWjzfh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 01:49:55'),(993,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aigule587@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8o9ya2g\",\"label\":\"First name\"},\"phone\":{\"value\":\"81877749256\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YuUY0pG 5mRR vNqRWP9 E8NGS1s AsIS 0gSDlAU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 01:54:25'),(994,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sayfullind@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yam45exf\",\"label\":\"First name\"},\"phone\":{\"value\":\"87433165398\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VLYPX8M zqD0 nqw120P Wj0ABAe 8sBE 0ujVluv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 01:57:54'),(995,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"xim-tex@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y965lc6b\",\"label\":\"First name\"},\"phone\":{\"value\":\"88157244939\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HUdGw6S S2O0 EPGaeHH R6xmLQO IefN hIjLL5v\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 02:02:09'),(996,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"milenakalinina20@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycfazax5\",\"label\":\"First name\"},\"phone\":{\"value\":\"84129292318\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"18yIxsk JpKr NYaaMWS GdbDNz0 k0Vy EStUOjW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 02:06:00'),(997,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bessonovav565@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya4npmyh\",\"label\":\"First name\"},\"phone\":{\"value\":\"89555342879\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6idLPKy AYy9 4Gim7aK zjnFcAN HcmU sZ4ML3u\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 02:09:54'),(998,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"judemicah00@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8wnt8gz\",\"label\":\"First name\"},\"phone\":{\"value\":\"89227472581\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sxWIBWl WqEd rAPQFeY vYjAsrW uvyv nRXz4mc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 02:14:00'),(999,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"saitinfo.ru@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yb6ke7sg\",\"label\":\"First name\"},\"phone\":{\"value\":\"84673827153\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XEvB5G9 gIYP 9QE78Wo uclC6yK ORQI e3cPaVW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 02:17:30'),(1000,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"maxtubex@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"RichardGable\",\"label\":\"First name\"},\"phone\":{\"value\":\"89212989516\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Look new free site [url=https:\\/\\/www.slutl.com\\/]Slut Porn Tube[\\/url] \\r\\n \\r\\n[url=http:\\/\\/evaluacion-del-proceso-de-ensenanza-100.mex.tl\\/?gb=1#top]Look this free videos[\\/url]\\r\\n[url=http:\\/\\/www.moccaplus.cz\\/kontakt?form_uid=5a43e6b5b4e5a2b3c5477e9e6dc80c4f#form-72]Look this free videos[\\/url]\\r\\n[url=http:\\/\\/gb.edusite.ru\\/f16448\\/index.php?&mots_search=&lang=&skin=&test=&seeMess=1&seeNotes=1&seeAdd=0&code_erreur=vFXRoW80tY]Look this free videos[\\/url]\\r\\n[url=http:\\/\\/fusionblissproductions.com\\/2019\\/11\\/20\\/masala-steps-cult-critic-reviews\\/#comment-56945]Look this free videos[\\/url]\\r\\n[url=https:\\/\\/www.skytribe.fr\\/livredor.php?msg=1]Look this free videos[\\/url]\\r\\n[url=https:\\/\\/replicworld.com\\/forum\\/messages\\/forum3\\/topic583\\/message691\\/]Look this free videos[\\/url]\\r\\n[url=https:\\/\\/www.worldofsweets.de\\/Heidel-Euro-Sparschwein-60g.302381.html]Look this free videos[\\/url]\\r\\n[url=http:\\/\\/baby-massage.net\\/bebimate\\/#comment-9840]Look this free videos[\\/url]\\r\\n[url=http:\\/\\/svetlyy.firmsmap.ru\\/bystryy-zaem-13#reviews]Look this free videos[\\/url]\\r\\n[url=http:\\/\\/oott123.is-programmer.com\\/guestbook]Look this free videos[\\/url]\\r\\n f48f06_ \",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"188.163.64.206\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 02:18:41'),(1001,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shoothan@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybkonvpw\",\"label\":\"First name\"},\"phone\":{\"value\":\"89518252884\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HIHMGti aaYj JFaDUfz i4trmlQ buvP hiNpdHJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 02:22:04'),(1002,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"r.sidnenko@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybsqwbn3\",\"label\":\"First name\"},\"phone\":{\"value\":\"86573795324\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0Dx80tW 3v6Z BNCOsJp 5NpG5lB y5pX KlN1Z09\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 02:25:27'),(1003,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"y.aleksey23@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yafczryj\",\"label\":\"First name\"},\"phone\":{\"value\":\"82697186189\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ppgtnn8 5J7M 02wrssw expc986 oSY8 sqJ1gy6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 02:30:08'),(1004,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rkdirectselling@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7ldzaje\",\"label\":\"First name\"},\"phone\":{\"value\":\"84237283737\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9oCmsTk 88Uu 49JE1Tw 1nLtVkk lWqL RQxoR6G\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 02:33:10'),(1005,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vladvsti@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9c8ml6o\",\"label\":\"First name\"},\"phone\":{\"value\":\"83862451669\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VOiHU9P nH5Z 5ZetJ3g u1uS7Fa F83f tNqOh0o\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 02:38:13'),(1006,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"5072528@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8fktbc7\",\"label\":\"First name\"},\"phone\":{\"value\":\"81843978176\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FR6qObq maKN 6HoFDm6 qDQMzYB xY2G d76dPUv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 02:40:55'),(1007,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olga070974@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycrxnsnl\",\"label\":\"First name\"},\"phone\":{\"value\":\"83656224254\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"508uOlo 9PrB ykUoRkY yKJXz2X nj3Q 0zmyaL6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 02:46:12'),(1008,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alibaba@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ybudjfyd\",\"label\":\"First name\"},\"phone\":{\"value\":\"87192925763\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cEnU3YJ zY9t TxrW4Mp RtV3NFM tRgQ zq43fmr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 02:48:32'),(1009,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"micaevawhim@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9sxjdfz\",\"label\":\"First name\"},\"phone\":{\"value\":\"87126854345\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eQKENaS GlLs EarIdWM 65lX8SP 7vkU YaPG1Zs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 02:54:17'),(1010,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"avf65@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y8bomgqr\",\"label\":\"First name\"},\"phone\":{\"value\":\"89624611986\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zbKTKoE X4MA hJ32ptN 2T0z5C2 hYsU VvPJF0E\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 02:56:08'),(1011,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"arsenteva27121993@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y75dj69b\",\"label\":\"First name\"},\"phone\":{\"value\":\"88146151838\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PMQCbQZ BftE hg0ChBw sUMm6ob zM0d ji1zX2z\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 03:02:21'),(1012,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lenaponama@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd4fx7p6\",\"label\":\"First name\"},\"phone\":{\"value\":\"86724256816\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MTm6kFG 4iDI rwNwa44 GlOuYtV G1YU CD5M7AU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 03:03:42'),(1013,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yskurb0261@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybpef4o9\",\"label\":\"First name\"},\"phone\":{\"value\":\"85937756832\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tMxMjZ8 WNPU RC5VSYS SmFjTTM ybTN gHAezwR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 03:10:35'),(1014,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alikdallakan949@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yandys6l\",\"label\":\"First name\"},\"phone\":{\"value\":\"86776577857\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hcRuf2b 0DAK 9izUwPc XdERuHv BRue vJXCIGp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 03:11:16'),(1015,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mbelogur@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yagmznrz\",\"label\":\"First name\"},\"phone\":{\"value\":\"87721798361\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Sn2POwa 3UQM 5NHeKXJ 4qAPigH KJzx ZiysgWH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 03:18:41'),(1016,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nks-1986@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9c8ml6o\",\"label\":\"First name\"},\"phone\":{\"value\":\"89771582111\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FFsS9me Nlfl o7Lkgc6 zK55vPI TLTJ aMCGYzH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 03:18:43'),(1017,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ramilgabibov123@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7juuh6p\",\"label\":\"First name\"},\"phone\":{\"value\":\"87979858862\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aCqKKX2 KzJ1 SNomBFv xbszguZ tBtU LVnb8Qt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 03:26:33'),(1018,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vova.eshel.56@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yc7gc94a\",\"label\":\"First name\"},\"phone\":{\"value\":\"83856466299\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mMvwGP9 6vqy sHymcJF uCdesnG eJ6L VF9KF7B\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 03:26:33'),(1019,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kuramshinov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y7mvrlk6\",\"label\":\"First name\"},\"phone\":{\"value\":\"86225976294\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"auLcK3q 7PSC ol4LxiZ Yqy4SE8 lb4Q yJScy5H\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 03:34:19'),(1020,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mariasarbaseva2@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yaoqqhn8\",\"label\":\"First name\"},\"phone\":{\"value\":\"86268188189\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vu4Ds26 2Bdf JhRhXHz 8yG5GLg R1x6 lLRFh1F\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 03:34:21'),(1021,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lenaseregina89@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9a5rgnc\",\"label\":\"First name\"},\"phone\":{\"value\":\"84291193329\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2EsUeJV FdoP lms5WIV Sv97ENK 6mOn THnbury\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 03:42:05'),(1022,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"artyomzorkalcev@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yagggx93\",\"label\":\"First name\"},\"phone\":{\"value\":\"81441923586\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ztaFFZ2 JOSS PXd8xfN Y5ZBhV8 w37X m04dVT5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 03:42:06'),(1023,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"endyava@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9h6g66a\",\"label\":\"First name\"},\"phone\":{\"value\":\"83518446953\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eUJ0LPx I0ub nLzE8iB ZCAZAQL 6Wwn QnZIJ8n\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 03:49:54'),(1024,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zacrytaya.tat@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybu32s2q\",\"label\":\"First name\"},\"phone\":{\"value\":\"86648327556\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TEg9qeA YwgA weIXVYm TAYZacw ycph SRje0cs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 03:49:55'),(1025,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"luikang26@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9zq6r4c\",\"label\":\"First name\"},\"phone\":{\"value\":\"86725929822\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kmWzhPy 9CSq Tk0H9BF FJ4oYCD qR7G KhOjrzW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 03:57:44'),(1026,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kholmurodov1990@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybmuf55e\",\"label\":\"First name\"},\"phone\":{\"value\":\"87296891543\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"W0rFfA0 ooQV Pu1rXlI 2RMskbx cE9t 49S0IxP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 03:57:44'),(1027,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ivanka.stahovskaya@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ycxd5r49\",\"label\":\"First name\"},\"phone\":{\"value\":\"87238557925\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"k91wbQg 5Rpu tbKbUnb 1QMzOT4 TzJw 6JGxTB4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 04:05:34'),(1028,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"maris1601@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y96r6fkj\",\"label\":\"First name\"},\"phone\":{\"value\":\"81586347627\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NSeRgr1 y9Yj pMNS9yi ioeSlGF ohqw z4yICEX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 04:05:35'),(1029,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"demcenkoaleksej995@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y89el657\",\"label\":\"First name\"},\"phone\":{\"value\":\"89496134374\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1dPjNfN Zi6l aOZ2KET lco2sVT Lrr7 QrcO6Ek\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 04:13:13'),(1030,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"abashidzemeri@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7qq5c9h\",\"label\":\"First name\"},\"phone\":{\"value\":\"81345629381\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QmjaW89 tzoi d9N9YpO P3oSN2O EepC lL6POrB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 04:13:19'),(1031,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rktumc@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yagahyrl\",\"label\":\"First name\"},\"phone\":{\"value\":\"81724726247\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0Zc8rL6 9f91 0RXi6qS tWMYoVu xsWl rryRbAC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 04:21:00'),(1032,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anastasiarubcova167@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8thpquv\",\"label\":\"First name\"},\"phone\":{\"value\":\"82179743595\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xaj2nYQ oqpV 5bj8VqM GbUpCpu A8MJ iLsyYpz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 04:21:15'),(1033,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"swet.rozhkowa@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaknly7k\",\"label\":\"First name\"},\"phone\":{\"value\":\"82822126389\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nK2ioL2 qFon sLIIypj KEAdnme e536 zSMWPAY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 04:28:52'),(1034,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"malish.zp@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yd5x7ud2\",\"label\":\"First name\"},\"phone\":{\"value\":\"84463549242\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"R8yw6q3 VXNw 6DbIVTF nPp4HfS A9kn B9C7MNn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 04:28:53'),(1035,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"abusaidqodirov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yavyuqqa\",\"label\":\"First name\"},\"phone\":{\"value\":\"85165829896\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xaTM0dR MDi4 kGsdnZG a4TXajl nJGq UCwqA57\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 04:36:39'),(1036,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"abdumutaliba66@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycpzw87x\",\"label\":\"First name\"},\"phone\":{\"value\":\"85869621286\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DJTutge lvoa FtJNJ5p gQqB542 WUcF hsR6hRh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 04:36:39'),(1037,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aruzhanzeinullina02@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yceros9k\",\"label\":\"First name\"},\"phone\":{\"value\":\"81172383284\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"W3lMWQF 0cYn RBe6Bp7 H31JjZJ S2kX eOl2XW0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 04:44:24'),(1038,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olga.tuvaleva@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8pcd4og\",\"label\":\"First name\"},\"phone\":{\"value\":\"85684221666\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9YB85Lx 6444 dlleGgv 0rUY2AI 2dre 9YAEntH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 04:44:25'),(1039,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tima.doter@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9akshlt\",\"label\":\"First name\"},\"phone\":{\"value\":\"87917731227\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HwKvXlt vH6q NUqP9wT 53PYtPY BNs2 dDtwPOj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 04:52:12'),(1040,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"a0618@ya.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yckhwyz2\",\"label\":\"First name\"},\"phone\":{\"value\":\"85352689837\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3kw1HvY cYBt Ut2uJZk ax6rVHV gWIM GDmY9Qs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 04:52:13'),(1041,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zulfiyasirojiddin2011@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycvc9q2a\",\"label\":\"First name\"},\"phone\":{\"value\":\"81634966317\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"82LX9p5 xLs2 k3Lp38A VcEmUDJ yCMc FTh2nt7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 05:00:02'),(1042,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mukeshmadcrazy@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc563lov\",\"label\":\"First name\"},\"phone\":{\"value\":\"89581932858\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lylCKT8 dSN8 B6Q04H2 3xe7pTr OKjD wfHMuoH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 05:00:02'),(1043,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rerusalimoff@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7h8gn7o\",\"label\":\"First name\"},\"phone\":{\"value\":\"85751681526\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WcGXMkW 6kbA 7YBB6Z9 tzpaU2O 5MWT EKS2FfV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 05:07:52'),(1044,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"arturlitvin1999@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y8s87gjg\",\"label\":\"First name\"},\"phone\":{\"value\":\"87582291698\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EySI3cd 5wcp wT4o0E1 1XJ9GiR ZUpb Sqt3Z2a\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 05:07:55'),(1045,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"myra.dik123.ma956@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9htfr23\",\"label\":\"First name\"},\"phone\":{\"value\":\"83919583387\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pSjloLG 3n8D Z9rybie meXJBj0 VrD8 xYlZmfy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 05:15:45'),(1046,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rocheva.viktoria92@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7pq7gxl\",\"label\":\"First name\"},\"phone\":{\"value\":\"88485889711\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wiNpR7k Csvt wMiRWMw vQL1UWz NA5I xdYx9Ss\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 05:15:46'),(1047,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nat25843162@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7jhz2ta\",\"label\":\"First name\"},\"phone\":{\"value\":\"81545789749\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7QPQNrb CcaS GYOEep7 5XXJAmB gzyX Pdff9B4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 05:23:45'),(1048,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"axo3113.uz@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y877mwj7\",\"label\":\"First name\"},\"phone\":{\"value\":\"83668324713\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZRydUCI GNnX HFB4Aja pAraGje 8eaR K5ROx01\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 05:23:46'),(1049,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"787feniks@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yakoh73l\",\"label\":\"First name\"},\"phone\":{\"value\":\"82969113477\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rYDjGkh g2ug lUoRX7O Z9bwnXf 2hEz ThGq5tn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 05:31:41'),(1050,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"raziya65@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9jmjwt4\",\"label\":\"First name\"},\"phone\":{\"value\":\"87649153479\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jJ8urV7 jPV7 O4Kdeiu pO0Q0Sd iybI 3CQIieI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 05:31:46'),(1051,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oleg271070@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybew9rav\",\"label\":\"First name\"},\"phone\":{\"value\":\"86517898537\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Duj8dim e2yf eLzghNR GHyClje OorD shLz27C\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 05:39:36'),(1052,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nadya.pshenichnaya.95@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y78qsrx6\",\"label\":\"First name\"},\"phone\":{\"value\":\"89315919289\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wEI3UIG uAN3 s2fTMyG QvIy7cd czRq YxfCFuA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 05:39:39'),(1053,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shaydulloevbobojon@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ya43ezqr\",\"label\":\"First name\"},\"phone\":{\"value\":\"84774821636\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DEcvT9o vDgo JuOtI0v P75zBkH Amoa wrbJV1X\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 05:47:23'),(1054,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"edemski.misha@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8awjfb7\",\"label\":\"First name\"},\"phone\":{\"value\":\"83499231626\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oFWIN98 0euj ZIXki7Y rmgqLWJ HMqr LZRm8Sd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 05:47:25'),(1055,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dreyes2301@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y7z9wlhu\",\"label\":\"First name\"},\"phone\":{\"value\":\"85569189892\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hQ7FjV1 DUWQ h5h7nr4 NrkRNZv 8IqG puJ7F7y\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 05:54:57'),(1056,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ekaterina-mishustina@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybjjn9vm\",\"label\":\"First name\"},\"phone\":{\"value\":\"84393654186\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"B2EBE6y ShKa 0Oqtunf 4TVp60L thhD bR3p5P9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 05:55:04'),(1057,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"refercarolina@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9hzsmgo\",\"label\":\"First name\"},\"phone\":{\"value\":\"88611515937\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Sdrl5Nc fNlI 5kOsuW9 oqXotWt 8Uwj zqO1V90\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 06:02:39'),(1058,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sumsungjchernenko@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9omvacq\",\"label\":\"First name\"},\"phone\":{\"value\":\"84598327581\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IoB2NxU rO2x DLK4wJg 0GHrO74 iJla DkrNGqE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 06:02:56'),(1059,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"p.adonina@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8awfuof\",\"label\":\"First name\"},\"phone\":{\"value\":\"86834443298\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3nXUbWp tQ1n tmCrVcO 0q85A66 Tuc3 sgaHO7G\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 06:10:27'),(1060,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fantik2k@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8pcd4og\",\"label\":\"First name\"},\"phone\":{\"value\":\"83485466257\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vZtB38O BYzO v4OSydj LSY5QLk cqE0 WQvMcDi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 06:10:51'),(1061,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mariya.rahmatulaeva.80@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7wmqav6\",\"label\":\"First name\"},\"phone\":{\"value\":\"86973562957\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zgZ0NMN vQ4A KzqNb52 MHtsmoi FVkR wHVhXyy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 06:18:14'),(1062,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"daria.gerasimova002@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycvob7hw\",\"label\":\"First name\"},\"phone\":{\"value\":\"81637299163\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lex8wZ3 B6ID MEtvoWv uzS6nFM 1TDa SBqNhvs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 06:18:34'),(1063,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natalia.munteanu@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yc2x7gu3\",\"label\":\"First name\"},\"phone\":{\"value\":\"85642267334\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MW1V9ii DfY3 GaT4lcc yoKcqGb iP2l cs7n1Lm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 06:26:20'),(1064,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sochi.2017.xxx@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycjyf29c\",\"label\":\"First name\"},\"phone\":{\"value\":\"83789876693\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OfoQAIg YKWI eWsiafK a5eSCQX fi7E UTt7PxM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 06:26:24'),(1065,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elena.sevok09@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8e58hwz\",\"label\":\"First name\"},\"phone\":{\"value\":\"83279583112\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1MKFZFd ySGD evgVvzC YwEwHxo C7FG HsLTdph\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 06:34:11'),(1066,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"koleso1308@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycs52lcm\",\"label\":\"First name\"},\"phone\":{\"value\":\"81179785642\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Bifgedl ZQYX SM0zAjJ 1qqMPu5 JhBp TIQo40n\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 06:34:13'),(1067,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"svetlana.kozak@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya87kx9g\",\"label\":\"First name\"},\"phone\":{\"value\":\"87813613559\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JxdyjMN Zdxy qLGDe39 4PzwhKf kq3O Ta4rr2g\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 06:41:53'),(1068,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"wariuzzz@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8ogeze8\",\"label\":\"First name\"},\"phone\":{\"value\":\"88977136589\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tvfbt3i 13D4 jcdB0mI 6fDFc88 Xx6J UtYSUbr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 06:42:04'),(1069,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rakanibrahems9@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycaq7vfy\",\"label\":\"First name\"},\"phone\":{\"value\":\"87381269762\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BbytR2f AXqd arKl3xx aAVuIxp fm4s SyLovt7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 06:49:48'),(1070,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ivanchulkov1995@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7qq5c9h\",\"label\":\"First name\"},\"phone\":{\"value\":\"88418722129\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2dbnLtz 0oZK zy9LGOL yBUJd9l SbM3 Kl2q06N\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 06:49:49'),(1071,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"avlirzaevnofal@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yadxp4ku\",\"label\":\"First name\"},\"phone\":{\"value\":\"82617139339\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"paqSLxr yfE4 EnXirSm A1fxnq2 OW8d 6VfOX71\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 06:57:45'),(1072,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kasimmontimo@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yamfwq9k\",\"label\":\"First name\"},\"phone\":{\"value\":\"88996719116\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YRlyu17 b8Sk eU8Dd1a DuYNUBU WNKK D7N6EXJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 07:05:42'),(1073,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"phonecare898@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9wporb6\",\"label\":\"First name\"},\"phone\":{\"value\":\"84156898936\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7suSzRM rw4S XB9CdTu 5eMCKKc we5s M0FOehj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 07:05:44'),(1074,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alena.fedotova21.2017@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y86fclcs\",\"label\":\"First name\"},\"phone\":{\"value\":\"88193649134\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FaFaZn8 mY9g XXwKQcn kqEkAiz Hw6B LHr4B4K\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 07:13:49'),(1075,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"stan-97@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yb2us7tr\",\"label\":\"First name\"},\"phone\":{\"value\":\"85253143583\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FqoW24y V1k7 jNxSWw1 eqbDlSW u7oi xOIBrcT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 07:13:49'),(1076,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kf9148681@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycfd6rl8\",\"label\":\"First name\"},\"phone\":{\"value\":\"86285952358\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2pPDXNB 8o6R cg5b0nE prJkkjz o6mU js6tFth\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 07:21:53'),(1077,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"speccomp47@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yd7mwq6s\",\"label\":\"First name\"},\"phone\":{\"value\":\"83616698726\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PwtSPsm 3ibJ jJBH1w2 69jHmgj 6IE3 6A7vXMb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 07:22:03'),(1078,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lilichka144@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8adfjra\",\"label\":\"First name\"},\"phone\":{\"value\":\"88817278518\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qrgVerZ IhUa 9oOkeGb 0Gawiz4 vMgW vRaGh6C\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 07:29:55'),(1079,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ytindenis789@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yd57hl52\",\"label\":\"First name\"},\"phone\":{\"value\":\"88156646953\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lUWhT37 PJ7P ZA0E38k tWxWVo4 H7gT ahekk9E\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 07:29:55'),(1080,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Hancock\\r\\n\",\"label\":\"First name\"},\"phone\":{\"value\":\"88675885221\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Good Day \\r\\n \\r\\nIf you\'ll ever need a permanent increase in your website\'s Domain Authority score, We can help. \\r\\n \\r\\nMore info: \\r\\nhttps:\\/\\/www.strictlydigital.net\\/product\\/moz-da50-seo-plan\\/ \\r\\n \\r\\nNEW: Ahrefs DR70 plan: \\r\\nhttps:\\/\\/www.strictlydigital.net\\/product\\/ahrefs-seo-plan\\/ \\r\\n \\r\\n \\r\\nThank you \\r\\nMike Hancock\\r\\n \\r\\nmike@strictlydigital.net\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.189.114.120\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 07:37:13'),(1081,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"egor206@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybqx4lau\",\"label\":\"First name\"},\"phone\":{\"value\":\"86474793641\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oyf42uG rK72 Abl7gmU EcrKlTc 68hd rsOBZ4s\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 07:37:56'),(1082,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vva16@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yb7qlttb\",\"label\":\"First name\"},\"phone\":{\"value\":\"87823459816\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qzeSW5Q 9Fj2 ZawJTjj Co4bpaT z31S APNRrdM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 07:37:56'),(1083,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alkhasovam295@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9znpj7y\",\"label\":\"First name\"},\"phone\":{\"value\":\"87478492989\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1N4i0BP utvw 9KMbUim 7dVTbzC Dqba iNsgNno\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 07:45:57'),(1084,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fenix-svet2008@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yc2rly6y\",\"label\":\"First name\"},\"phone\":{\"value\":\"87145743411\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DxvQQOW w5k6 khiFq1O vQloO20 ajnZ YyEadfS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 07:45:57'),(1085,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"irakosolapova2106@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8evm48f\",\"label\":\"First name\"},\"phone\":{\"value\":\"83664439152\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wcK3Y6Y ui5a Nc5bxre ztrLG0a cIR2 zH60fAA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 07:53:49'),(1086,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"808hallimyam@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y96urv8n\",\"label\":\"First name\"},\"phone\":{\"value\":\"85755856663\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ErdTWcz TnNi dPLyduL iU5oMFY o8jQ 76viAFY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 07:53:50'),(1087,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"masher253545@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8l5qfbg\",\"label\":\"First name\"},\"phone\":{\"value\":\"82246396239\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mYS4tMt WY2S WJbYjJ0 TTJrzwh YW5g iSkblsH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 08:01:48'),(1088,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"all.teploff@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yamfwq9k\",\"label\":\"First name\"},\"phone\":{\"value\":\"86961663217\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YNgUesi ut0a yQxhAmE Ugn67uK RtAX ufc10qy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 08:01:48'),(1089,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"malenkaya9@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yb3uzrev\",\"label\":\"First name\"},\"phone\":{\"value\":\"89135379122\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BI95CQO F2Ke xZlSUHs 8AoJnWt wC2y dNxtKKf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 08:09:46'),(1090,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kostevichvladislav@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybv24zfl\",\"label\":\"First name\"},\"phone\":{\"value\":\"82435443113\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"s7l6xbt 9kgv BYTGtRv mXqDpOV MdtB tfp6MZt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 08:09:47'),(1091,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aleksejermolenko942@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y7al3mv8\",\"label\":\"First name\"},\"phone\":{\"value\":\"81594575322\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KXA7tqj YWBL 3TwXeR2 coHDzZJ 5nZK jQzjKLQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 08:17:45'),(1092,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexevdokimov90@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yadxp4ku\",\"label\":\"First name\"},\"phone\":{\"value\":\"87274686952\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"S67Vb5L gMXM kxInABA BzX9eeo qp34 L3cHomw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 08:17:45'),(1093,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"prasanthvayalar93@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycluva9l\",\"label\":\"First name\"},\"phone\":{\"value\":\"81115495771\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jNr95NN US44 XdneTee T3tqz9G 3Ara WQMZoto\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 08:25:40'),(1094,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lornaursua111356@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8o52x3s\",\"label\":\"First name\"},\"phone\":{\"value\":\"86874629621\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0WXhNQb nfMr kKHm6Mf 4H7NFjZ vZXC idDHeAw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 08:25:43'),(1095,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kateshap2299@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8a75jz3\",\"label\":\"First name\"},\"phone\":{\"value\":\"83744915582\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xMgZZE3 fcR6 PGhHTe1 KLoNg7e Eae9 9rnMwCb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 08:33:39'),(1096,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"wertyugfdsaqml@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybc9txbu\",\"label\":\"First name\"},\"phone\":{\"value\":\"88111562448\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"96bHjFA z8vi FbIXqvr QdJURgQ rNEg IgcKa8F\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 08:33:39'),(1097,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shahzadkhan1401@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yb2p3j64\",\"label\":\"First name\"},\"phone\":{\"value\":\"84224529217\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mkA6qe2 bdsO QqiAmRH JuM6bgo 0WgP rj0STOH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 08:41:35'),(1098,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"s.mihaylik@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd9yw3vd\",\"label\":\"First name\"},\"phone\":{\"value\":\"84392391626\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tXACSJ2 lBWy lg3lfzw 2P4NIDl gGSl cdxWYah\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 08:41:35'),(1099,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tyuba8253@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycnzwv2g\",\"label\":\"First name\"},\"phone\":{\"value\":\"83288272635\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WR511xX gmh8 evbHmdh IdEPZXI ioC9 I7iLe0T\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 08:49:33'),(1100,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sneza.egorova1994@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y77r57f2\",\"label\":\"First name\"},\"phone\":{\"value\":\"87257712151\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3h3VBTE E16H iOrsNMQ OvNx0CP UWKy vDe6Qwq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 08:49:34'),(1101,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gala.holopowa1956@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9rsd3ac\",\"label\":\"First name\"},\"phone\":{\"value\":\"83679471893\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"57N1GCO xBjs 1XR4lw9 9WJDHps A89Q 6enobOD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 08:57:25'),(1102,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"poncraschina.maria@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y772d7r7\",\"label\":\"First name\"},\"phone\":{\"value\":\"87884861598\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TvQfX9d 2WGJ 72uAWuH O1dMkDx nNgv D1gP7S4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 08:57:25'),(1103,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sultancik.qasanov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ya7my8qs\",\"label\":\"First name\"},\"phone\":{\"value\":\"85814164144\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AdYtCAG pB7W SIDvhni kqF5aXA N0J6 IgAnOqt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 09:05:26'),(1104,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"turdievsamir@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8t7yu8j\",\"label\":\"First name\"},\"phone\":{\"value\":\"84137824718\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QXmR6sD iWn1 nhrQGQZ OAgpYZH Be0a WT8X0r3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 09:05:26'),(1105,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zheludckow.aleks2014@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y76c2pku\",\"label\":\"First name\"},\"phone\":{\"value\":\"84413244266\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QIIrsZ3 DnrP JYl8Fjr t3CntDr qtgp WWbF3nS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 09:13:24'),(1106,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"e-sobolevs@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybxgywxa\",\"label\":\"First name\"},\"phone\":{\"value\":\"84872289371\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"heIDNTF gzwa xMfMvS8 noFLYeo UzBR Vp2aLMZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 09:13:24'),(1107,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sheni.18@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7wj4sa2\",\"label\":\"First name\"},\"phone\":{\"value\":\"86895275889\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VcOxS32 LN14 mKBTKxi 3jTrVV5 Z5pz KhPI5EI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 09:21:21'),(1108,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natashamishenko1977@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd8ulwm8\",\"label\":\"First name\"},\"phone\":{\"value\":\"89648331591\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ENsB0mC G84z LsxYna6 60kSpAi g7CQ Q21djnq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 09:21:32'),(1109,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"serg151090@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y892qqt2\",\"label\":\"First name\"},\"phone\":{\"value\":\"81194786653\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XkTSX5l Cdih 3HnZDDO MXHnuDb Ue3d YlMEZGX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 09:29:21'),(1110,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vasserman0000@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y928wv6e\",\"label\":\"First name\"},\"phone\":{\"value\":\"82462389828\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ar5uWDi npH9 5bygq2R VVaPRNu 2ZFZ HmgYgRx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 09:29:22'),(1111,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"danilovvalya@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybdqrj24\",\"label\":\"First name\"},\"phone\":{\"value\":\"81883253434\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QLAHgdr rcVs TGfJ2dj MO6rWck Geft U4IPCpG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 09:37:23'),(1112,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hum0918g@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8x3rdtm\",\"label\":\"First name\"},\"phone\":{\"value\":\"89562276714\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AMrfi7e eIzx Zd5AAbS t47UrTU bj3m 7Z984wE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 09:37:23'),(1113,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sturkizaza@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yddrfjlq\",\"label\":\"First name\"},\"phone\":{\"value\":\"86755356812\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nZJHgz7 dxiu 75LaKv4 2iQvo6s 66WV iRS1UFK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 09:45:23'),(1114,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tatyana.sukovata@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8dtax28\",\"label\":\"First name\"},\"phone\":{\"value\":\"84249679792\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"edidE0U J78y As4Vxmz qTKanGr xrpg QW6pLJ5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 09:45:23'),(1115,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"salas08229392@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y72vtmgr\",\"label\":\"First name\"},\"phone\":{\"value\":\"81722287549\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KkZzViK 4jzb xTbza5y hpJRNIM o1NM pEamzre\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 09:53:16'),(1116,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tupliusaslygumes@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yb3mk7hm\",\"label\":\"First name\"},\"phone\":{\"value\":\"83364195148\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HH5XBjG yrCZ 7ozudFr Hn6u6XD JEyF ZH7DkTc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 09:53:16'),(1117,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"clasherdimas355@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yd6ld2pm\",\"label\":\"First name\"},\"phone\":{\"value\":\"83997721746\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nlHb4ql tkSQ MQUeWwZ lvkMYqN FRh2 cnV04YR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 10:01:09'),(1118,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mullayarova.alina.m@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydhadpxo\",\"label\":\"First name\"},\"phone\":{\"value\":\"86595986991\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0N9i7Ni sC2E FzjQrEs X5T6pD5 zXUG Hf5HD2S\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 10:01:10'),(1119,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"maru.potanina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9wporb6\",\"label\":\"First name\"},\"phone\":{\"value\":\"87458317167\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HmmIuc5 Y0b9 ptRxp0T XCFtZIr CC3p CSXE1XM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 10:09:04'),(1120,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"asmatisakovaa@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9oyrqd2\",\"label\":\"First name\"},\"phone\":{\"value\":\"89329332553\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0vwut7o HqZT hPGwl3d HT9N1Bq bdJc QMULkp2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 10:09:06'),(1121,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"smiltena@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9pnaq36\",\"label\":\"First name\"},\"phone\":{\"value\":\"82531262287\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0FRmTOL U9Uf Cxrabhw zQWZX7U vH5C sydOFWG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 10:16:59'),(1122,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aleksandr.ivano.ivanov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y88npcdd\",\"label\":\"First name\"},\"phone\":{\"value\":\"81135893368\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0yAP8jK l94f DTRJTzR NZW7yzX MXkD BC8AQrn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 10:16:59'),(1123,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sup196078@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9nvomaf\",\"label\":\"First name\"},\"phone\":{\"value\":\"89245796434\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4MjXNza tchi M73dnqc uuErN79 hmo4 lAyrhQR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 10:25:09'),(1124,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"burko16@bk.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y976uxa8\",\"label\":\"First name\"},\"phone\":{\"value\":\"83148836237\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vBd41sj NB71 JTCYwi2 TuPXkcX eZBk 97IFIYC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 10:32:56'),(1125,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"arkadiy.slabuka@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yddl9bgj\",\"label\":\"First name\"},\"phone\":{\"value\":\"85596522692\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DN3u56w eZjb COYh6yN jqnI6fg iQcv x9SaojD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 10:32:57'),(1126,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"petro9393@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y7yd27eq\",\"label\":\"First name\"},\"phone\":{\"value\":\"88441229424\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pSuVoKk 9IiE lZIxV79 G57qZiR 7pc7 avdD9nS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 10:40:56'),(1127,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ya.anny0304@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y73narbl\",\"label\":\"First name\"},\"phone\":{\"value\":\"83161951752\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HiPAWAY iw2Y vu1ZjjN 9qUtqIV eibI SZV0u6u\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 10:40:57'),(1128,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexxxl1314@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9s7wsty\",\"label\":\"First name\"},\"phone\":{\"value\":\"86523617595\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WUYaP0d Imfs yHYMNIw SGLrPZn 0gsD tJJmNIF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 10:48:45'),(1129,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elenaduzeva846@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8mjpm33\",\"label\":\"First name\"},\"phone\":{\"value\":\"89588417953\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0vtTUrL WLY7 KErGLYE zVRZVuQ F1Io AUDK2dA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 10:48:46'),(1130,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"i.nm.os.co.w.a.nmmmmylife@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yck25jrh\",\"label\":\"First name\"},\"phone\":{\"value\":\"86915727861\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2gQOB6F MFKo KSymBSP 7iwOdOH uLvh MfKybdO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 10:56:34'),(1131,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"asyawurst23@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ychz94cu\",\"label\":\"First name\"},\"phone\":{\"value\":\"83462539557\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oZHvRxe o2ZW KmAXQMF GYcGqv0 d8ue drYxWVM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 10:56:34'),(1132,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anikonova744@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8cglpmu\",\"label\":\"First name\"},\"phone\":{\"value\":\"84953757738\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6xFFWz1 9Raq tGt5vU9 gYUzUrz kb4T 0hrAmQF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 11:04:28'),(1133,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ipkmgudt@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y84znpyn\",\"label\":\"First name\"},\"phone\":{\"value\":\"87713599935\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3W0g6pP b810 Sw9Q3iO Cn2JtSD OnZ5 e4Mu5Kq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 11:04:29'),(1134,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fotot@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycv9v8vc\",\"label\":\"First name\"},\"phone\":{\"value\":\"84798693421\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dHMUilp EViA H6aJDZL df1XP23 kSLV J7sSHeS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 11:12:24'),(1135,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"abakan0213@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7z9wlhu\",\"label\":\"First name\"},\"phone\":{\"value\":\"89919317141\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nelrhwi UvaT nvaXGD0 g9u4aAG YJJ3 CjIX3tf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 11:12:26'),(1136,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"istominaulia027@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yd6dph7l\",\"label\":\"First name\"},\"phone\":{\"value\":\"81641461669\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pU9m9w3 SuBl uA1BMt0 LHqOyPR lbdl 2j3oCXb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 11:20:23'),(1137,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"k.babisheva@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yd8cwe2l\",\"label\":\"First name\"},\"phone\":{\"value\":\"88274582714\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"S3V3Bb1 B6EX HLtPDm1 wpQwUTE u7mS 0SNjNNA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 11:20:24'),(1138,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"avthavrani6993@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yan5we5d\",\"label\":\"First name\"},\"phone\":{\"value\":\"81363176524\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iNPeBH3 cIvI DRjd1aS 5nG2CzI TBt9 MJBi7JS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 11:28:14'),(1139,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alex-f3@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycd4co7u\",\"label\":\"First name\"},\"phone\":{\"value\":\"86862783732\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AJIm99o VFOn dIPjaUO Gfa9ZrU MiIj Ge6gkk9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 11:28:14'),(1140,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nevitly101@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycfsztwx\",\"label\":\"First name\"},\"phone\":{\"value\":\"81972156894\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pnP1fOS S5MK kbhokYL ERIv468 AjBQ T3skmsy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 11:36:02'),(1141,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"siuhovevgenij42@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybcvhsu5\",\"label\":\"First name\"},\"phone\":{\"value\":\"86855744616\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"57kcYc5 CXnE StS4bgp sQBTsit hcdI d2WQlOO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 11:36:02'),(1142,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sd1022002@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9v3jvx9\",\"label\":\"First name\"},\"phone\":{\"value\":\"87275586931\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UFjKJou TZ2D V5b1vGR 8YuFLr4 ZqI2 7uw6HHN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 11:43:57'),(1143,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"armtemvu@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7gzh2bv\",\"label\":\"First name\"},\"phone\":{\"value\":\"89581742428\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kig6DnQ LvMu 8sZKTmX lMPwmgr CPsD OMahWGc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 11:43:57'),(1144,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"konovalova19991@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydeacqgb\",\"label\":\"First name\"},\"phone\":{\"value\":\"88929835615\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZgCOp4Z ncVT 6bo2s6c 5ga3S4E Cnue TSzZn0f\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 11:51:46'),(1145,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yuliya.kalpakova@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7owc9rn\",\"label\":\"First name\"},\"phone\":{\"value\":\"85862618675\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FAKLlnf sgsa piuIv2B 70AqlgY JA2L jjaaJ6d\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 11:51:46'),(1146,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"antonmedvedickov11@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydyjd5kv\",\"label\":\"First name\"},\"phone\":{\"value\":\"82222283739\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DN2Gcge 3ve7 iUUcYgB iUq5K2j fWRS 0FOwSUZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 11:59:31'),(1147,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yu.romashkina@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8zqeley\",\"label\":\"First name\"},\"phone\":{\"value\":\"85174513114\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cFQXku5 Vm8M q1muGlT XDXAI6v qFqm l1dnt9u\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 11:59:32'),(1148,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nat.17@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yb2vvny3\",\"label\":\"First name\"},\"phone\":{\"value\":\"85138126719\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Z9ZdCCY pd6z y0mpAg9 VFIAH4M IPzd wgziKWc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 12:07:28'),(1149,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mokrak1111@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycobl3jc\",\"label\":\"First name\"},\"phone\":{\"value\":\"87442943335\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6mtC2Ow TQaF pEXFDW9 guMwRnH Hize VKxJarK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 12:07:28'),(1150,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jurij.40@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7owc9rn\",\"label\":\"First name\"},\"phone\":{\"value\":\"85853773974\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gWwWOpH 0dKu Qen89x5 92l5ht3 5zMP xag8p7L\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 12:15:22'),(1151,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olexandr.tsaruk667@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9m4kzgd\",\"label\":\"First name\"},\"phone\":{\"value\":\"83425648848\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4IJCd9A zLPE qE8gJUe biet62q QuOD ESuQFoy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 12:15:23'),(1152,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marinade_18@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9n37lw7\",\"label\":\"First name\"},\"phone\":{\"value\":\"87717863569\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GjU1qOK lGUN L9Uo13O 0ifFhAx Ie3y thcTeO3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 12:23:13'),(1153,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bubnovaaleksandra@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybooj8wg\",\"label\":\"First name\"},\"phone\":{\"value\":\"86553685286\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XBsFOSF 7K0k ODmia26 C4oIdvq R0ks taQuZHC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 12:23:24'),(1154,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oksanalavrik27@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8bwl3o3\",\"label\":\"First name\"},\"phone\":{\"value\":\"88889153824\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bxmyssk oUhO wWYQoyS bYLONpG nX1l OleIFNE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 12:31:12'),(1155,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"amarantyl@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y7lry9y4\",\"label\":\"First name\"},\"phone\":{\"value\":\"81632747852\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dLctLLT rWSM a0ilYnU 3Y7gvPP 5Sr6 Tzlc8mm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 12:31:13'),(1156,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"andreyhitrow@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8to6bbd\",\"label\":\"First name\"},\"phone\":{\"value\":\"85885851191\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pWxfi4c qwGw U1vXRCb G12FKP2 fzpl DA9TSGx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 12:39:11'),(1157,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"wasek222@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yc8cxxlh\",\"label\":\"First name\"},\"phone\":{\"value\":\"87145217431\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cJ3UPv4 z93o uG71Zuk COmwQr7 y4Ok rPon65F\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 12:47:08'),(1158,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"slahzneva@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycn3vu3w\",\"label\":\"First name\"},\"phone\":{\"value\":\"81381922853\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BXOB6WC gS52 ZVvNtCr zz3N1kc 35su VlLsJ1y\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 12:47:08'),(1159,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"o.drozdova49@bk.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybcqf2t7\",\"label\":\"First name\"},\"phone\":{\"value\":\"89472285543\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Pdoauqj OTzw LlNymh2 ax4xtmW G8Rl pxbBTDe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 12:54:57'),(1160,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aslanie_34buto@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yaktr9cr\",\"label\":\"First name\"},\"phone\":{\"value\":\"83712344963\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"V3AefOe 7WAF ZfuszkC N2YrnMh sOqH GxDYrhD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 12:54:58'),(1161,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sergej976@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yalaw4fa\",\"label\":\"First name\"},\"phone\":{\"value\":\"88256144993\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"b33x9Xr xEBB B0FFIL3 fWSwinV mt5h YWlEgeQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 13:02:53'),(1162,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kuzmin.1969@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yc2rsae9\",\"label\":\"First name\"},\"phone\":{\"value\":\"88643897783\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"M6Gx9sZ gPGO xdLrihd PcmFmYo WuGB GXXeiSE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 13:02:54'),(1163,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lydia.maximova13@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y7yswe9b\",\"label\":\"First name\"},\"phone\":{\"value\":\"84489692955\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mCk6YXC T5ql uNO1NHq vrendSn 6waJ D50RCIy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 13:10:54'),(1164,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"neyman_2015@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yco5m4md\",\"label\":\"First name\"},\"phone\":{\"value\":\"82423739774\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ROCwu2i DXX1 IGX3quV 2VclUks PApq wx1LiKA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 13:10:55'),(1165,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"karinarina613@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb69r3a4\",\"label\":\"First name\"},\"phone\":{\"value\":\"87768931592\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"amrfkNX d8as fKLx9TB 1EurafM WnuF fNYF3Yv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 13:18:55'),(1166,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ash.gaming00@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydgbqkjt\",\"label\":\"First name\"},\"phone\":{\"value\":\"87911485265\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZXXmvLo pt8P TaoL09H TIqBedi FqzH uWf4xyV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 13:18:56'),(1167,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alinaoljobaeva@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yc7ktulf\",\"label\":\"First name\"},\"phone\":{\"value\":\"82682712387\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aTUazhn K74e NjbmK6L SshWZDq sg1k H4WaK1H\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 13:26:53'),(1168,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"za70@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7853dcm\",\"label\":\"First name\"},\"phone\":{\"value\":\"89783473129\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OVJwTN9 HaMw kKn3u5R y7wkyOy x2p8 TMNFPyy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 13:26:53'),(1169,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sosite.xyi@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9gkuenm\",\"label\":\"First name\"},\"phone\":{\"value\":\"83996946358\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ePJDFHO aVcx 5tAJ5kq jhkegWq X6dj uYVpA4p\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 13:34:47'),(1170,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"petrovmail88@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya86yupm\",\"label\":\"First name\"},\"phone\":{\"value\":\"85938551171\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GKWwSdv HpMk J9EykYF 0gwKUO2 gECZ VsC0ysR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 13:34:48'),(1171,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zakosarenko@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8y76g2u\",\"label\":\"First name\"},\"phone\":{\"value\":\"86223939214\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"z5NHHfS mQHy zzlUqXH AdVHmxc Thrj eoRIgNw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 13:42:49'),(1172,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sasahat@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9t45ouy\",\"label\":\"First name\"},\"phone\":{\"value\":\"86785699345\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Q31UgOv fbww h3ZANJZ F3hTUv7 fBQK VNdrd18\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 13:42:50'),(1173,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ganievaal@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yb5blzaq\",\"label\":\"First name\"},\"phone\":{\"value\":\"89594185477\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iDxkwaw 4kFb WNDpju2 tdQPXc9 EDL7 jjVcS02\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 13:51:00'),(1174,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vaariial@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybabpjj7\",\"label\":\"First name\"},\"phone\":{\"value\":\"89663369577\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ECS2kBd C5Dn xUjcxMI LWjtJfx fCb7 pRVBriG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 13:51:00'),(1175,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jesusshivaom@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7tvk573\",\"label\":\"First name\"},\"phone\":{\"value\":\"82164588716\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"v5YZ68z 9HFi If23C5P 3yYqK8V 8v2O mhTFNjR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 13:59:07'),(1176,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"galuzinacia@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ybgfjgdc\",\"label\":\"First name\"},\"phone\":{\"value\":\"81486512557\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ClFUTmX 9E29 HGfzoCs Az1VUZE G0DJ s3q9Ejj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 13:59:08'),(1177,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"arshakaren@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8qatnkz\",\"label\":\"First name\"},\"phone\":{\"value\":\"89112299719\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AL5reXj Quw1 C7ICMJC UXnQGsb xU4r YSJNh5N\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 14:07:17'),(1178,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anutek25@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8ysdp6l\",\"label\":\"First name\"},\"phone\":{\"value\":\"84655371544\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Nfjjgz8 yUe9 xiTvNkW sd0EbZg ObTH SfrHIlS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 14:07:17'),(1179,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"galina2212@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yau8dfdd\",\"label\":\"First name\"},\"phone\":{\"value\":\"89448213921\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pOn2q3o YGVx 8MIvLGv 1zYnMxT 4GoE 6gHSgcW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.132\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 14:15:15'),(1180,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"spamreklam@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7lkyj8q\",\"label\":\"First name\"},\"phone\":{\"value\":\"86298657335\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fwsZ8Rx TpHA oZDiSQe G2RY6pr qi2u 4POII5q\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 14:15:15'),(1181,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"limooksana@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7keo8m7\",\"label\":\"First name\"},\"phone\":{\"value\":\"81952374165\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5g0s0nY 90J6 RwPUhls K9HcILg 9pQn jfNKzhQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 20:37:20'),(1182,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"maksid1313@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yadt5vlp\",\"label\":\"First name\"},\"phone\":{\"value\":\"86939481361\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TZS3wrP dU7S eSLdH7S a95i3lY toRT CwGCaW4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 20:44:53'),(1183,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pol.antonyuk@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybx5q8yj\",\"label\":\"First name\"},\"phone\":{\"value\":\"87169641296\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lDnU2xw sqqF K7HHB85 7fYqKNe hmu8 HiisD2i\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 20:52:24'),(1184,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vetal.gubarev2010@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yazs983q\",\"label\":\"First name\"},\"phone\":{\"value\":\"88511637988\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OAwS4gq tH2X uP21uMX NgVwrK0 S5lw DnyBMM9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 20:57:11'),(1185,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yellowvegas1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybc6bljm\",\"label\":\"First name\"},\"phone\":{\"value\":\"86763461565\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MdkjVvn C2w0 Qx97Rlx c89Hug9 ORCH CJ51ZoP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 20:59:47'),(1186,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oleg.shumilov08@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8dzmduu\",\"label\":\"First name\"},\"phone\":{\"value\":\"87611499136\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rjrHmkm b8LH ecSyRAE eS8hv7I Upf3 RM7lQeN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 21:03:27'),(1187,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sahykolynaeva@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8q9qk85\",\"label\":\"First name\"},\"phone\":{\"value\":\"88772856471\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qdVWo6h qoH2 ojAGrMX VRIQxa8 gegT 5PWHkNv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 21:07:45'),(1188,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nwamadifo@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yavjg5mv\",\"label\":\"First name\"},\"phone\":{\"value\":\"88291264897\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4XrXOcM EU2l 75VwS7n k7Sw3Rn IfNb V1GsGAe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 21:09:38'),(1189,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"paregone@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yar99ygu\",\"label\":\"First name\"},\"phone\":{\"value\":\"84494688252\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6Xwwp0H mLXY om6JiIr 48ycyzm TkrT WWwTBwF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 21:15:15'),(1190,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ip0154746@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8frk8wo\",\"label\":\"First name\"},\"phone\":{\"value\":\"84875448848\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eMSaXgQ ghdM 9Vpsrbz 8ZiZBpo MI2b iI6tCK3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 21:15:49'),(1191,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"roger0005@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9hpjk48\",\"label\":\"First name\"},\"phone\":{\"value\":\"89128296159\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"if5zaar s2pk mr1t4wo YIsr9Z8 MM9U vQzKVXh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 21:22:17'),(1192,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sektorkvas@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yde867yl\",\"label\":\"First name\"},\"phone\":{\"value\":\"87726851356\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kLajL1I s6Ie PYbvzra 71zzTHj aV9S FoG7IO8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 21:22:37'),(1193,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"linni@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7h32e8j\",\"label\":\"First name\"},\"phone\":{\"value\":\"86624382375\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mN06KHi RFwx cDsVrYd 2vhd84l 9Xyd bNGoXhM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 21:28:32'),(1194,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"romikbiryukoff@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaznbyx7\",\"label\":\"First name\"},\"phone\":{\"value\":\"83421939749\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6mdfmPE ahWF GiVp8LO 0n3oZBZ oFJx 7g1IxnP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 21:30:04'),(1195,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"matuiza@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycfmubok\",\"label\":\"First name\"},\"phone\":{\"value\":\"85292747416\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"waGAntd BeJN fp0vxIg 4S5ddfO ybjE rs3n5sw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 21:34:51'),(1196,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"chueshov1956@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8hfxqv5\",\"label\":\"First name\"},\"phone\":{\"value\":\"84598856493\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HgBqlwW QWKu zyiPMCW gk5oe24 zd8n VgKUUC4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 21:37:44'),(1197,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"germanfrst@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yc7ugmkr\",\"label\":\"First name\"},\"phone\":{\"value\":\"82373531672\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FvXyi1B qG9x JeLVzUn 1tQ3SZ2 zmp9 ii1myQP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 21:41:10'),(1198,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"grish-cska@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybcv3l7h\",\"label\":\"First name\"},\"phone\":{\"value\":\"82718845974\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HmBOZBe bjHL 9Fjr6Gg rRd4bVK eBQx z670vjH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 21:45:15'),(1199,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dlipej46@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7jlvhng\",\"label\":\"First name\"},\"phone\":{\"value\":\"87885893277\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ySDYSU7 5rjL 5vEyXGV clsIhkb azXr S4VMaEU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 21:47:25'),(1200,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"posmereka05@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yd8849ws\",\"label\":\"First name\"},\"phone\":{\"value\":\"85126248116\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"z2g7wzn 0QI6 PVgkH4T BMy7tcr FUpT AMIr0dt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 21:52:47'),(1201,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"inchikvlas@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y7bzuoyb\",\"label\":\"First name\"},\"phone\":{\"value\":\"83837916998\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Iuj4eZ5 HE5r NQ9pXY8 tUqAoWA MHxi Y4FT5BJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 21:53:43'),(1202,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"valyuha1467@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yd5h858e\",\"label\":\"First name\"},\"phone\":{\"value\":\"81993282593\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JS8EKAH OmlJ l1BcRtS PEPO92x Z0WJ S7sQztT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 22:00:00'),(1203,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"davito.tropin@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y93cn6f2\",\"label\":\"First name\"},\"phone\":{\"value\":\"83431586283\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BvqLeyv R2ni nqqLoaK vs22mU5 04XM N6Oa884\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 22:00:25'),(1204,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olgakorgh2002@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yctqx2fz\",\"label\":\"First name\"},\"phone\":{\"value\":\"83829862648\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cEuKxte JdZa shHmm7M 33jUCfb Pnq5 aGN8gNu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 22:06:26'),(1205,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oigaagaeva33@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya2tltwb\",\"label\":\"First name\"},\"phone\":{\"value\":\"87896926997\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nOQKABq FcXE bwX0SPY 4LEhmj9 jTFy NazpzZ2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 22:08:02'),(1206,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"melnikoffa@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yd533a5v\",\"label\":\"First name\"},\"phone\":{\"value\":\"82497115536\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iaOdps5 uFuM KryrHEd vGxmIhA 37Sq 6DdEnjz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 22:12:54'),(1207,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"biriukova88@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y732pqkj\",\"label\":\"First name\"},\"phone\":{\"value\":\"85365232257\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"geVI5wl n4Wl dn2ktVe CBrXujt zel7 sbTg1O4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 22:15:42'),(1208,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tagziev.tam@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybk7u4ge\",\"label\":\"First name\"},\"phone\":{\"value\":\"86449596977\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RuSrxTJ Swp0 dagjCmC 5zITM9n mta1 vxJmqyV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 22:19:19'),(1209,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"xenaleva.84@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yajbwtzf\",\"label\":\"First name\"},\"phone\":{\"value\":\"82992398847\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FW14xj0 iORk JYgB24z BlCWitg kZQp r9Vz2Pg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 22:23:21'),(1210,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"valentinadolgova483@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yap59dzm\",\"label\":\"First name\"},\"phone\":{\"value\":\"83111445388\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2yCC1hZ f7XO eKgTfXE w6o7ZXX UjDS FvUoXyA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 22:26:01'),(1211,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"azj76k@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yca8zoka\",\"label\":\"First name\"},\"phone\":{\"value\":\"81629322477\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EW8Xkk5 JChX zldt5g0 iBHbeTM UkBm C3pgVxD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 22:30:55'),(1212,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"radik.rodionov2011@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybbk6p7m\",\"label\":\"First name\"},\"phone\":{\"value\":\"82193228656\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BtgeQup YcwR dgfx5iV AlNK4pj QSHj b62EKbe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 22:32:29'),(1213,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"xalsou@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybfr59q9\",\"label\":\"First name\"},\"phone\":{\"value\":\"89874698121\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cTlrxLP Pb0n I3JSKI2 ITyReH0 1zu4 Db1s7QX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 22:38:26'),(1214,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"valya.tarasov.86@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ydbmk4jd\",\"label\":\"First name\"},\"phone\":{\"value\":\"82495621238\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yx2jDFx 0e1h bEo1SxS 82ju2rw Gm7m Jv6TcSR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 22:38:41'),(1215,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"djtolian228@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybufm6zx\",\"label\":\"First name\"},\"phone\":{\"value\":\"88969557237\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"w9vfBXJ qwZd nxwjvcZ eIM3p7Z B2rm HzIEgCH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 22:45:02'),(1216,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kovalenko.svitlana.p@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y84lclem\",\"label\":\"First name\"},\"phone\":{\"value\":\"84946432349\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"l0sLnuI sa38 K0O0s8D YYJJT0q JVVB kcENjjO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 22:45:48'),(1217,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hajigurl2016@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycmr3oom\",\"label\":\"First name\"},\"phone\":{\"value\":\"83287285993\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7ykgquq 8m19 hl7F14f INjSoRQ irk5 IDP3vfD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 22:51:30'),(1218,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kostabulgaru6@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc3h6ec6\",\"label\":\"First name\"},\"phone\":{\"value\":\"86588973625\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zbWYwcX SWkW nhi13s7 tC4M5i5 euUY 8j17ZuU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 22:53:15'),(1219,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"inter1989inter@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9gjxt8l\",\"label\":\"First name\"},\"phone\":{\"value\":\"88191811177\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cxIXYMT DPOb N5bf5iA m0QdQ1T jUrw f89vBJ5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 22:57:52'),(1220,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"valinok87@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yarjt629\",\"label\":\"First name\"},\"phone\":{\"value\":\"89542743511\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gePd9ZF X4kL fkDCcIG eVUVbVn kXCq Fmi6f1W\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 23:00:42'),(1221,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"2pizzasm@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ya2cnvqu\",\"label\":\"First name\"},\"phone\":{\"value\":\"88665622522\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"26jd0Wa auxU C3yD0Vl 9pgw0IL l21n f2cUsq4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 23:04:24'),(1222,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nat10511885@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydh6td8g\",\"label\":\"First name\"},\"phone\":{\"value\":\"86593912438\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"W5u8mox F7HU X7TEYux 7oWb65p cYtO 321o0Ka\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 23:08:17'),(1223,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dan2408@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8oz6fkb\",\"label\":\"First name\"},\"phone\":{\"value\":\"85969462864\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vGVKCay kDa4 iD7r6Rx 9O6xEry llHC NekSz5J\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 23:10:47'),(1224,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tangira56@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8hfxqv5\",\"label\":\"First name\"},\"phone\":{\"value\":\"86843949254\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0O5OoHJ 0tOD vQPOftJ PEDwsJu sE40 Wa8fVjA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 23:15:52'),(1225,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"goa14@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9mhaezc\",\"label\":\"First name\"},\"phone\":{\"value\":\"87647365618\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wAFXbYZ 4O6P gVT5BE6 lIWSx9o JVJL yEeU6IN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 23:17:15'),(1226,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"grigoriew.zh@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycab798d\",\"label\":\"First name\"},\"phone\":{\"value\":\"82199549455\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Bm6e0MR 3LLj SPwkH88 q86rMeb 6tPt B3Ym4eE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 23:23:26'),(1227,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"veter0k89@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9bn3f54\",\"label\":\"First name\"},\"phone\":{\"value\":\"81895652891\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jwUoGPn vBSY 6lSDXAG yfH8qWJ XM2a gbTuN1N\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 23:23:46'),(1228,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"valeryasa.2707@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya8qunv6\",\"label\":\"First name\"},\"phone\":{\"value\":\"88875252882\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gFYBdW7 0Q7o w1bk48U YrDsfRC OGeZ rU4dGbs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 23:30:02'),(1229,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vasilthuk89@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycuu93sm\",\"label\":\"First name\"},\"phone\":{\"value\":\"87789281926\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fq51PZF zrP3 F8u7rci TRkd30r MEV2 8ztLtRk\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 23:30:53'),(1230,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"puzirevoleg123@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycx3alow\",\"label\":\"First name\"},\"phone\":{\"value\":\"82227986665\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EIisUW4 lnla mRqSJxA nQlm9Nj lFex Wr3gDzv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 23:36:21'),(1231,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dima.ohrana@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yap8h334\",\"label\":\"First name\"},\"phone\":{\"value\":\"83313793463\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rr4KO4n bqmD JayQZ0V BU4w4Uv Asr0 qO3tCPY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 23:38:24'),(1232,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zhereb42@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybbd4b6e\",\"label\":\"First name\"},\"phone\":{\"value\":\"86434579472\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"P9ZC3pm facI rT63gb5 0EMRda6 jlNy p4h9IOh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 23:42:41'),(1233,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vitalik.mansuroff@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycezfrqm\",\"label\":\"First name\"},\"phone\":{\"value\":\"81468184315\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"umvWafw FhVx xCXuSp4 9nRgKaj 3iL2 RAsNvh9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 23:45:53'),(1234,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"radovanovic.slavko654@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y988ulz8\",\"label\":\"First name\"},\"phone\":{\"value\":\"88818865194\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XBDS6Z2 U4lu oVYqvSN jSBeou9 oXDJ aEOvP2f\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 23:48:56'),(1235,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gromilaklass@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc894zh2\",\"label\":\"First name\"},\"phone\":{\"value\":\"87738692973\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"snM790Y Ztog dVWJAkT zAtBD35 3lDE rUOIWa1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 23:53:27'),(1236,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lex.tern.ua@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9pcyaqj\",\"label\":\"First name\"},\"phone\":{\"value\":\"81491582855\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"f2K83kY BVZJ ooHYsHQ QY3qCPO on7V yJsDTFp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-18 23:55:13'),(1237,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"radko.59@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y93ol3aw\",\"label\":\"First name\"},\"phone\":{\"value\":\"82577895863\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"utMbMqf NaZf NqyJI8Q 2khep46 5nWT Ov7bEfc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 00:01:12'),(1238,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"piskunovanatali03@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y7k6l3a3\",\"label\":\"First name\"},\"phone\":{\"value\":\"81242796514\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1VaVnsx QKTo s7zlPS5 NXLOSt4 EioE qvsORDb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 00:01:31'),(1239,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tchepikova2012@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yd533a5v\",\"label\":\"First name\"},\"phone\":{\"value\":\"82996883542\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dXd6DFT LfIF gYwnkBW ONeRZAC YVOj QMY4Omh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 00:08:06'),(1240,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"liuba_50@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yagjyc2a\",\"label\":\"First name\"},\"phone\":{\"value\":\"88246239943\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pdQKD06 1gTn q6aDkkx U0wFFX7 85Ol O2x1oSY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 00:08:49'),(1241,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kramarenko.evgenia1985@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9pcyaqj\",\"label\":\"First name\"},\"phone\":{\"value\":\"85687717836\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5wt4Xgm mIq4 Sjvay0O FS4EL6Z wDMp lZGEHYi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 00:14:46'),(1242,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"coldynia2012@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8s7uyxs\",\"label\":\"First name\"},\"phone\":{\"value\":\"87579231849\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cmHKRWk rSkV lliSHZZ A7Pu1C5 wq1i sLOmify\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 00:16:31'),(1243,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dellhp786@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybh9lho3\",\"label\":\"First name\"},\"phone\":{\"value\":\"86817542323\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XIUGH4j 8fkV Z9XYYCr XBIK6fG CHYC 0aEIVGh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 00:21:39'),(1244,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mkubyshkin@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y74j9pt9\",\"label\":\"First name\"},\"phone\":{\"value\":\"89261978395\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ppxIdBR tvKK EwBlubS g5Vu3Qs i1eA gnAuumJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 00:24:13'),(1245,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kirsanovandrey27@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybag299d\",\"label\":\"First name\"},\"phone\":{\"value\":\"82729449167\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4LDlnw0 GCHk drvO1SL fGSun2r 7dB3 gSUdhZV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 00:28:09'),(1246,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zahar.ilja@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ycowsoew\",\"label\":\"First name\"},\"phone\":{\"value\":\"87772574393\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OzrQgRy x8MG tooNgSa gUx10hW fBEj 2HjVSGL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 00:31:55'),(1247,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tminn91@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yab993sw\",\"label\":\"First name\"},\"phone\":{\"value\":\"86622764835\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PCOPBn4 z3bO TQMSMSy 1oDro1e GLEk 7U6rElx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 00:34:35'),(1248,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"demon.prod.85@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9spu3dq\",\"label\":\"First name\"},\"phone\":{\"value\":\"85731247755\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"n4dbc08 pvkH AaJZce9 v7dHK2i z2Fd afDGPAk\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 00:39:35'),(1249,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"naiela2011@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycplrkwt\",\"label\":\"First name\"},\"phone\":{\"value\":\"89683489239\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ram3wAn 59Jb FMnOAtG KQIx0XV TNaZ usZVPDg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 00:40:56'),(1250,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"furgalo@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yazeg86u\",\"label\":\"First name\"},\"phone\":{\"value\":\"84262272611\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jtv3tC1 aOA0 i9bStO1 Bg7HKTB aF8l xyzsEDj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 00:47:13'),(1251,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ladsok90@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yb4hpnwm\",\"label\":\"First name\"},\"phone\":{\"value\":\"88187899288\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"elzmOEx 20lg 2DjVAVr GuNN0BX To7H o4TTrLq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 00:47:14'),(1252,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"myschkin.vladimir@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y6v429e4\",\"label\":\"First name\"},\"phone\":{\"value\":\"82926976852\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uWU9eah W09s thp1A3b BnB8fjK 66Ap PkTKmzi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 00:53:44'),(1253,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"stasyer2906@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9xg6veq\",\"label\":\"First name\"},\"phone\":{\"value\":\"89829126289\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ywY0WQr iQdg ThclRl0 ZBDrhy1 MbUh 1gOp1wT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 00:54:36'),(1254,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"golubevanina424@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybsqs5x4\",\"label\":\"First name\"},\"phone\":{\"value\":\"84441251958\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gknGa2B RWvn ubk8LbH qFko2ux ozXZ xmYzTGa\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 01:00:11'),(1255,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sergeilygin0@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yap6a4tz\",\"label\":\"First name\"},\"phone\":{\"value\":\"84744717532\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"U3fC8xR Z3om XFChAYl LpCe99M g5eM DDSFe7G\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 01:02:14'),(1256,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"4440376@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yc47g37l\",\"label\":\"First name\"},\"phone\":{\"value\":\"88525934594\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"958jhQ5 3cZm RuXq2IC fjc9fUX iMWQ FoMmqi7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 01:06:46'),(1257,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"adamenkoolegan00@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yc9rsfwb\",\"label\":\"First name\"},\"phone\":{\"value\":\"89842661133\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iAqtZFS bSJE o4cKFJM 0nlcjo9 n32P iiPbhoX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 01:09:57'),(1258,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natalia661117@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9mhaezc\",\"label\":\"First name\"},\"phone\":{\"value\":\"84138452325\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OyNyxjb hmUm jNhp5A1 jiYMnNr LJaA AXOZlm0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 01:13:20'),(1259,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bakirovaelish@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9gofgwm\",\"label\":\"First name\"},\"phone\":{\"value\":\"87176477534\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mPW220X ddqd UbUvSJv 4MBhaLM 7ovk qxJMA36\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 01:17:40'),(1260,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jekacold60@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9mhaezc\",\"label\":\"First name\"},\"phone\":{\"value\":\"87728778683\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VZ6iUBh HdfU aR7yIqK PwnPBz1 GX5k L5XDCec\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 01:19:50'),(1261,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"king030505@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8p3tphr\",\"label\":\"First name\"},\"phone\":{\"value\":\"84273416346\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EuVa8L0 s51g IFwVBxL m4JHLNc 2VFD NoQhIha\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 01:25:16'),(1262,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Hilda\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Sutton\",\"label\":\"Last name\"},\"email\":{\"value\":\"HildaSutton982@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi there! \\r\\n\\r\\nI am wondering if your company needs help or interested in starting an ad campaign or improving the performance of an existing campaign on platforms like Google Ads, Bing Ads, Facebook Ads, and more by using PPC (Per-Per-Click)? I am an expert in online advertising, and I will provide and will give you guaranteed traffic to your site that can make a huge impact on sales. \\r\\n\\r\\nI look forward to hearing from you.\\n\\nSincerely,\\r\\nHilda Sutton\",\"label\":\"Message\"},\"phone\":{\"value\":\"9662466177\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"23.236.210.155\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 01:25:52'),(1263,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alb.antonova2015@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycv5wb74\",\"label\":\"First name\"},\"phone\":{\"value\":\"86338958715\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ecr5pHr on2s 9khYQvG qdiGhE4 4CLF fNI4Oht\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 01:26:33'),(1264,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ronova@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y73ftuc6\",\"label\":\"First name\"},\"phone\":{\"value\":\"82578632256\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ILPJZFJ 7PWJ JgJLHlG bE1eSLC Tz2h BzSZzLU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 01:32:54'),(1265,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aidos.090@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yddamzn3\",\"label\":\"First name\"},\"phone\":{\"value\":\"86699235346\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"V7ocStp bAe1 AQjIipx 0mnaloh GDzE asXsIcJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 01:32:58'),(1266,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zhanna.zaporozhkina@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8uz8cm4\",\"label\":\"First name\"},\"phone\":{\"value\":\"86637329597\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3DLVpYd alA4 Oph6f2o pIpm36d fr7P FArkyuq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 01:39:21'),(1267,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tomastep@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yby8jvma\",\"label\":\"First name\"},\"phone\":{\"value\":\"81611143727\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wlbAP26 aaIX TxlfxQs u1WBPjM WWWO TxtJbR9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 01:40:25'),(1268,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lissi097@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9x44g4y\",\"label\":\"First name\"},\"phone\":{\"value\":\"87866143698\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KhtAOsE 9ZXb WegPM6H 1bQx8pZ eqeB X6hwas9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 01:45:45'),(1269,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sannikovalenusa@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybrtulhv\",\"label\":\"First name\"},\"phone\":{\"value\":\"87341387671\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"I6fl653 iexi JuTV2zv HOTNyE4 Cegx hH6S7x4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 01:48:01'),(1270,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kuzinandrej4@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ycyoy7n2\",\"label\":\"First name\"},\"phone\":{\"value\":\"83364982314\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Lb6TFcl cC3z 9snRI3c Eq4RMyV MrYA Vu8ML7r\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 01:52:11'),(1271,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mmm2011.badaha@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yc94e8my\",\"label\":\"First name\"},\"phone\":{\"value\":\"86148811396\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"G0vOM89 xvMN MnnsF54 ssyE7KI PzIE 57FKksd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 01:55:32'),(1272,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alekcsgaskov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9ejjn5d\",\"label\":\"First name\"},\"phone\":{\"value\":\"89531435538\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XtABwVE zplR wbeI0t0 vy4fiNB SZuY Su9VPRH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 01:58:33'),(1273,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"noiprok@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y7fyzsdk\",\"label\":\"First name\"},\"phone\":{\"value\":\"82463277231\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ribDZ9Z IOtK SVa6TC1 7u40PbI sp19 G7m5a7x\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 02:03:08'),(1274,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marinaberzina555@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y7g7po3k\",\"label\":\"First name\"},\"phone\":{\"value\":\"88263939483\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"b5yAnLH yroa VkvMblq 4ZGeV6v r1hU XwgiZAb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 02:05:01'),(1275,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marinaacysina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yb2egqcl\",\"label\":\"First name\"},\"phone\":{\"value\":\"85351725369\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kD346sA NtB2 Hj0yjnX Fjav4df fzWk 5OYMEfU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 02:10:56'),(1276,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"azodaallayarovna@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yayj6kex\",\"label\":\"First name\"},\"phone\":{\"value\":\"84627249286\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UhIP09T dBpZ iT36q9z SLGIdBO fgCe TF8tfWg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 02:11:25'),(1277,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"naryn.moldir.30.11.18@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yazdfgty\",\"label\":\"First name\"},\"phone\":{\"value\":\"87373925877\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YeDjAHv BElD nxOKU4J Ew0I9q6 9tnO iG5nLBi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 02:17:52'),(1278,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vitiatv@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybfgwome\",\"label\":\"First name\"},\"phone\":{\"value\":\"89637569486\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1nS9GOV K8ya 4sOKsr9 4YSDYqE vS3v VWgH0p6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 02:18:31'),(1279,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rais.hafizov152@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7g2flre\",\"label\":\"First name\"},\"phone\":{\"value\":\"83784793464\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tRUk6P1 knm8 VjOlqM3 wZSEMZX Jcb7 6VJHLW8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 02:24:42'),(1280,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dacha100194@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8geeyhx\",\"label\":\"First name\"},\"phone\":{\"value\":\"82689116456\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7Q7cxYP E86W 0efbjUJ 60Axxig z3Iv cAinhqR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 02:26:01'),(1281,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vvs240@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y7ln52zq\",\"label\":\"First name\"},\"phone\":{\"value\":\"84215711389\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gvZmwz9 wpZe JGDmybY f7qpvfh 6AKQ 8QQkx3p\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 02:31:11'),(1282,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bobodzonovdilsod6@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y87pctun\",\"label\":\"First name\"},\"phone\":{\"value\":\"87715357242\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XRDse76 ysp4 pajjVDa g6oK8Yg ehHC c5CqnRf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 02:33:34'),(1283,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aiva.vetra@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yb7cgk7t\",\"label\":\"First name\"},\"phone\":{\"value\":\"86757684617\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WflfQWW 318M gCogPGO WAbg15L knQ2 byrzodk\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 02:37:37'),(1284,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexey.serezhnikov@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y732pqkj\",\"label\":\"First name\"},\"phone\":{\"value\":\"87334191771\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nCgxM0j AtfB VlA2Sya sGEGhVz Hn7j cpyn0zO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 02:41:11'),(1285,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"poliaelena@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yasxx9qt\",\"label\":\"First name\"},\"phone\":{\"value\":\"86233454137\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ktuVNXB aOYT 768jvJm jt3rIhN sbhC EzRFJPA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 02:44:02'),(1286,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"luda240275@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycs96276\",\"label\":\"First name\"},\"phone\":{\"value\":\"81446666661\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zOoqrMW blTY mVu4ABA wFcinVq v23Y 8R3zCrF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 02:48:46'),(1287,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"umaralievb86@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y93pcnp5\",\"label\":\"First name\"},\"phone\":{\"value\":\"81472732788\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yP2xzuz PmC8 aWORKfD OidDze2 OuIY oJHMeAH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 02:50:31'),(1288,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"latekaterina@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yd7neod8\",\"label\":\"First name\"},\"phone\":{\"value\":\"87129754294\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8STE8N4 gGKR ngSqevC YIXYRfc F5Hu ukc5Fcy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 02:56:20'),(1289,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pleshkovpartner@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yawr5c5b\",\"label\":\"First name\"},\"phone\":{\"value\":\"82927226456\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FGA6FMj 1NGY qKVfJ6J EeuGhP4 nWFJ FkOePI2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 02:56:53'),(1290,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vlad-kadoni@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybnt5c4z\",\"label\":\"First name\"},\"phone\":{\"value\":\"84362416775\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CZMTGuz N6OC nD2N6Ee NFmetpx g7ow 5R9UGAT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 03:03:23'),(1291,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aizhan.04.84@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaxk25p8\",\"label\":\"First name\"},\"phone\":{\"value\":\"83355431453\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"04aeA1P sshI rkVPYHK mRrYSah WFDY otFsHVN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 03:03:56'),(1292,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pi-tavi@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ycsb8evu\",\"label\":\"First name\"},\"phone\":{\"value\":\"82799531226\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eX9Foe8 bFpB W5bMess zp1AqCs 6b8Q 7Huu5cL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 03:09:54'),(1293,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zuhridinov74@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y864tknc\",\"label\":\"First name\"},\"phone\":{\"value\":\"81389813519\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uGgvQHd pcrO Urwv83S avAbFED 6Bb0 orDVEla\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 03:11:37'),(1294,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"irin-repin@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycspdayd\",\"label\":\"First name\"},\"phone\":{\"value\":\"83795296818\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gfiB88c Epg8 wA2MVyr XqBN80l cxSX 9S9N3p7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 03:16:27'),(1295,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rodionovaolga680@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybne8tkt\",\"label\":\"First name\"},\"phone\":{\"value\":\"85256165891\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oF4kiCS qefM 2bVjO4U I4LrBuA 4xAi UxBpBx4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 03:19:21'),(1296,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jumayewa.jeren@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ya9bk9hq\",\"label\":\"First name\"},\"phone\":{\"value\":\"88968266383\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"m0vNmyg ns1A 3hsnnk9 Bq3UouZ tXz4 gRsKPVA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 03:23:17'),(1297,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sani4ka216@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yalxcblr\",\"label\":\"First name\"},\"phone\":{\"value\":\"85537822547\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BwoFjot NgYJ nRje6yI pgsTPP7 PCZO 234PdEl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 03:26:59'),(1298,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oxunchik2@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd9yvmce\",\"label\":\"First name\"},\"phone\":{\"value\":\"83968447322\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"d2rTK9r klnE rvilB5P apQUYIf Vvol L6JzRh5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 03:29:43'),(1299,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kushovasabinao@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9t5o65o\",\"label\":\"First name\"},\"phone\":{\"value\":\"83575268842\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"V3mwYuR FSTD CMWbCGa Qi7Ef0u z1tx mkMK8Zi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 03:34:32'),(1300,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lenavas76@ya.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybuheza2\",\"label\":\"First name\"},\"phone\":{\"value\":\"81755116481\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fyv1Bvi LL0a 8TZZnor Bzdutmn Dnnj 4u6HZ4n\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 03:36:09'),(1301,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elning@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydc3xc7n\",\"label\":\"First name\"},\"phone\":{\"value\":\"82239194436\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2agxlv0 FbiV skN4YDL sPVx2C4 Rkvk IRJUgFI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 03:42:04'),(1302,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ashgevorgyan@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7camnm6\",\"label\":\"First name\"},\"phone\":{\"value\":\"81441133247\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PUSog7k rNf2 F44Vs8l svOZ7g5 HMRn uWDd7dJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 03:42:29'),(1303,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anastasiakomarova7694@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8mprnzb\",\"label\":\"First name\"},\"phone\":{\"value\":\"87684838493\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9IJ8qtA gT1b Zed2b1k xbckpTM Ri52 i8w4XcR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 03:48:57'),(1304,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vadum2015@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybluouc6\",\"label\":\"First name\"},\"phone\":{\"value\":\"84423299392\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"27WX0XK PT3C MOee98S 5p9XFkU 5r1M UbRk8tP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 03:49:38'),(1305,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kom211@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7cvtwpu\",\"label\":\"First name\"},\"phone\":{\"value\":\"82736115615\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9NP284Z QIRZ rc5wdHF vDEsO8v LxJA 0CbM0NW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 03:55:24'),(1306,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"k.aleksandr78@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yc45dnfu\",\"label\":\"First name\"},\"phone\":{\"value\":\"85621366982\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NmdxUfA wURw aHe4uTV i9KiTrl 8Uup zKMQ8EH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 03:57:08'),(1307,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"a123.889.75@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycuorg4l\",\"label\":\"First name\"},\"phone\":{\"value\":\"84554423554\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uzKvBWp lzoT gnlvgeB OWqBEM5 yDSn wagyY3b\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 04:01:49'),(1308,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vodedara74@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybbz4cfv\",\"label\":\"First name\"},\"phone\":{\"value\":\"87514117221\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5jaV6fL Lz8O j8Wfk0m mqPpcqa lKRX mpJBzur\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 04:04:49'),(1309,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dsmnikstaff@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8owbamr\",\"label\":\"First name\"},\"phone\":{\"value\":\"89272886729\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"79kaDsR HW7q cIMDSbZ gCAi8Rk WCTB kZFgexd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 04:08:16'),(1310,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"katena.ekaterin.morozova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycaz9n9l\",\"label\":\"First name\"},\"phone\":{\"value\":\"82371641223\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5Y9hYJE EAOQ nxFk5UE mqifMUk Ifsv 37i7NFv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 04:12:30'),(1311,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"clubkitchen@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd4wzjlr\",\"label\":\"First name\"},\"phone\":{\"value\":\"83934332185\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Vu0IJKW eWis bPb6TuY UL3zcEH ddCN qNyNRMP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 04:14:40'),(1312,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vikazvereva1996@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9swwhfy\",\"label\":\"First name\"},\"phone\":{\"value\":\"88111253467\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"79VDvVT jXPu pxPkyit LtVrqC6 L6jp PhOGB6F\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 04:20:17'),(1313,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"amanzhol.rahmetov2012@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y7c3k9kv\",\"label\":\"First name\"},\"phone\":{\"value\":\"87944152329\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0UBXVr3 829Y PECiwB7 8fgiNhg V2CL hGPl8uz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 04:21:25'),(1314,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tatyana.kalimullina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydbdpbq3\",\"label\":\"First name\"},\"phone\":{\"value\":\"89915938851\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ozVZHud pqTn pWxq4Ar JCGyUss qIMl OemD5Da\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 04:27:43'),(1315,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"veselov.s@me.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybk5d5a6\",\"label\":\"First name\"},\"phone\":{\"value\":\"88927116381\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IYDXGLy z22S LFfskFz VgW5Xr6 BdNd Wsymkdw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 04:27:56'),(1316,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ast9696@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9ma8xh4\",\"label\":\"First name\"},\"phone\":{\"value\":\"81921148817\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"byIUxZk P2na JYElGZj tsfMTRp Nkj4 EMY0znm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 04:34:15'),(1317,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"isa.k.m.mmm@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybham9yw\",\"label\":\"First name\"},\"phone\":{\"value\":\"88482154614\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YFkP3YL LbxL X0fsqbt dtOYzwR bmlr 3AInEg9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 04:35:29'),(1318,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"krasnodima86@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9rka9n4\",\"label\":\"First name\"},\"phone\":{\"value\":\"86849216191\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YNDVUzY C9I4 HWOqWaB mTY2KJc AHQ8 danca1b\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 04:40:42'),(1319,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nogin2607@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yaxeahyz\",\"label\":\"First name\"},\"phone\":{\"value\":\"86712979336\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5CBuMGZ YiCu tC2cBlo xTduWfP 9vsW EpuKX2M\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 04:43:05'),(1320,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bekenovav@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9dyac4l\",\"label\":\"First name\"},\"phone\":{\"value\":\"85174211621\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ofIqmXq NZEK tBeCNbJ uF8qTIw Hayg q3S50RZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 04:47:13'),(1321,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pavel.los.25@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y75669mf\",\"label\":\"First name\"},\"phone\":{\"value\":\"85928832123\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Lr5aOMY 8hOM pF68VZk 1YiCe3L Ce4G vmYf3Od\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 04:50:48'),(1322,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marvik64@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybqd93rd\",\"label\":\"First name\"},\"phone\":{\"value\":\"89469231786\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DqTxDgK akyZ WDJqG6y QfyT9PT 4Owo rUbGrvg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 04:53:40'),(1323,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vlrshnv@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydgbjn3h\",\"label\":\"First name\"},\"phone\":{\"value\":\"86848287356\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QmrFeg2 bo8u DzrtI56 gVYe76U OZgy 8a6aghP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 04:58:19'),(1324,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kaldibeknurbek@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8kol5ny\",\"label\":\"First name\"},\"phone\":{\"value\":\"88612964334\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GLal8Hl 02d2 qrh9JC9 Iaa5Dzj yTpy yxRecks\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 05:00:02'),(1325,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"borisvario.r@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yafxaeky\",\"label\":\"First name\"},\"phone\":{\"value\":\"86649571594\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LTLnwWf K1gU l6oZTxF Bkm7gyf hsMq 5MFWvrX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 05:05:56'),(1326,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olchik.kabatova@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaytqowc\",\"label\":\"First name\"},\"phone\":{\"value\":\"86773556676\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dkHjjvz 5OEj smuVCh8 VaJ59oV W2fv vycUjM1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 05:06:29'),(1327,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"congtisbifureddz@mail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Chesterlop\",\"label\":\"First name\"},\"phone\":{\"value\":\"82187471228\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"I can not participate now in discussion - it is very occupied. But I will be released - I will necessarily write that I think on this question.\\r\\n\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"54.39.29.64\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 05:09:03'),(1328,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"balachuk@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8neywm2\",\"label\":\"First name\"},\"phone\":{\"value\":\"87459121898\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7A3n0iV Hp14 zihYSW7 00mcyNy 88cQ 15PPUqY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 05:12:52'),(1329,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bon-appart@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8ohes65\",\"label\":\"First name\"},\"phone\":{\"value\":\"83473272429\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zcSBB9R DpoF TpPnxEO mJaTDsL vckE BB9iKQN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 05:13:24'),(1330,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nighwhistsitarte@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8vkkgsb\",\"label\":\"First name\"},\"phone\":{\"value\":\"89425928736\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"H8Tkvuy h3yg wgiAPXg JviPCfL vG7e f1N8Pcj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 05:19:18'),(1331,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nikita150107@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y8nwp9jz\",\"label\":\"First name\"},\"phone\":{\"value\":\"84449614464\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Y7E0mux 4ItB mv6gnC9 sSUQ94y 6EEX 6ibT8Ah\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 05:20:56'),(1332,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sanojansanojan@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yc3fo3jq\",\"label\":\"First name\"},\"phone\":{\"value\":\"89484852999\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rbGUKsz XAij QFq4sSk zMjn3g2 dbUP S4qatPQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 05:26:03'),(1333,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tarygin@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycx63oru\",\"label\":\"First name\"},\"phone\":{\"value\":\"87939317955\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gIAhm62 cQJ2 a6zLwJl ftHpbAC azbH ihogg9i\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 05:28:28'),(1334,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alex.aleni4ew@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybbtyzxw\",\"label\":\"First name\"},\"phone\":{\"value\":\"85919718685\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6RQXFJ6 bEu0 f5X5DCu HKFm8OK rrKm m47scGE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 05:32:27'),(1335,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sharina0438@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb9z8jv6\",\"label\":\"First name\"},\"phone\":{\"value\":\"88263911216\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gVjjwWA X3An hjRlAtz LwyelVd Elxd yB6xBdu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 05:36:01'),(1336,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"medelxanova074@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybvox95m\",\"label\":\"First name\"},\"phone\":{\"value\":\"89968686964\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MXVRqHZ BbCY qs8TveW EnRhIkR rHTR Tj240WP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 05:38:52'),(1337,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dajm130513@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9cnd6jk\",\"label\":\"First name\"},\"phone\":{\"value\":\"83219297143\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ijTWcsO bRtT qfbwa8w UscVsOj ao2u jregvIf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 05:43:28'),(1338,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"annaelchininova22@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yb9kpj4e\",\"label\":\"First name\"},\"phone\":{\"value\":\"84771168748\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8AKJe19 vlVL 4jZjB9S NitfJxf gZ23 8MytS8r\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 05:45:19'),(1339,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"s.karmazina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8b9lrk6\",\"label\":\"First name\"},\"phone\":{\"value\":\"83944678664\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SSCa6Rw L8Rl lOLVNao 34PngTN ZaKW C2hmACW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 05:51:07'),(1340,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"regina1308@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7e8bzxc\",\"label\":\"First name\"},\"phone\":{\"value\":\"89343311774\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"j0YxCRj a3T3 WyMYtoY QYRJS6u JZ7a 1WINuDt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 05:51:49'),(1341,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ardashevatata@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9bjzolx\",\"label\":\"First name\"},\"phone\":{\"value\":\"85186376158\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"obgXqVC JIs6 IY72eo3 Q8BNZ0f q8HD ZhbVBxS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 05:58:09'),(1342,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dianabespa459@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9axhq62\",\"label\":\"First name\"},\"phone\":{\"value\":\"82557852376\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GM5FmAM yGAH 8qcmeD9 Dwscqdf zEdk gRcE3Yy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 05:58:35'),(1343,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nsnezhena@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7vpk2b6\",\"label\":\"First name\"},\"phone\":{\"value\":\"83268674487\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KpbuiJS QRx8 nAlCA7r w9e1oKe rY7q Qxjh4mM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 06:04:40'),(1344,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"blankita3105@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7scfx26\",\"label\":\"First name\"},\"phone\":{\"value\":\"82449659899\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4A6RodW FdHD mxjFBhx gMXlmso Mr47 O9uKi31\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 06:06:02'),(1345,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bur.burtsev2010@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybfoc6nb\",\"label\":\"First name\"},\"phone\":{\"value\":\"86297591862\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"45XR5J2 lud9 7XgM4bM kPcHtKQ E6rB GaLlhCc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 06:11:09'),(1346,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"4blade7@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydyquhsj\",\"label\":\"First name\"},\"phone\":{\"value\":\"82693816819\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gNMgbA2 PsDy 6ZfsD4H HG9SNtU bQRP reIny5r\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 06:13:33'),(1347,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"i9orpotapoff@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9shcbk5\",\"label\":\"First name\"},\"phone\":{\"value\":\"88396494983\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5YDcVk8 dG8Q 42y07B6 RvqsBQh pTyJ Eg0Yukq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 06:17:35'),(1348,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vicheva1962@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yboo5y9s\",\"label\":\"First name\"},\"phone\":{\"value\":\"81619314821\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sOIaiCz 7MMs NW05TFk 7w0LHyl rCh3 RW334zT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 06:21:10'),(1349,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ulechka-j@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybd9xqpz\",\"label\":\"First name\"},\"phone\":{\"value\":\"86479118665\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cjSfETc xcVa 1PgedSA 553wep0 Lwop pM95ibB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 06:24:16'),(1350,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"valya.afonina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y7tnluyn\",\"label\":\"First name\"},\"phone\":{\"value\":\"83331749768\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Vz0QGYl 42kV 5452OLS w0KulrV OKGw QtkeXNF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 06:28:41'),(1351,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"magam700@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8jwt626\",\"label\":\"First name\"},\"phone\":{\"value\":\"83426951282\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cr0SFkF IkVz 2qT6R2t u3DnVQH 5RQZ pKIg6A7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 06:30:38'),(1352,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sherzodr76@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycqm4cec\",\"label\":\"First name\"},\"phone\":{\"value\":\"83628259173\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"l9KKVbi rIfC j8CsSBW yv0SNC3 jyK6 31WFzME\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 06:36:14'),(1353,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"an.pasha2010@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yabzpprz\",\"label\":\"First name\"},\"phone\":{\"value\":\"82874871592\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sz5fV35 UIXe bdzG8tX F4eAoN2 XZNd ww4UfhH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 06:37:02'),(1354,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elcomendant@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybommnhf\",\"label\":\"First name\"},\"phone\":{\"value\":\"82117849871\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hatmE2N N17k 4c6hC02 gF9B9wv n3IX f6jsqf7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 06:43:25'),(1355,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nik55785@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9nahovk\",\"label\":\"First name\"},\"phone\":{\"value\":\"88325811813\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NLM0Kei xWRS wcjEGe9 NcSBdAc uljK rZIvtnW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 06:43:41'),(1356,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"karahanshotabekov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybayue6u\",\"label\":\"First name\"},\"phone\":{\"value\":\"81799547149\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4MVYDx8 1B5K bKqBaD4 G2f2KSM 4PaV k9y1cyt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 06:49:55'),(1357,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nmoskovchenko@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y99uem3f\",\"label\":\"First name\"},\"phone\":{\"value\":\"88717799837\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qyXOviB 3pYZ xHsI9bP 5gB0FLo JH7a gadr37N\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 06:51:17'),(1358,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ivanichenko78@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycbf76or\",\"label\":\"First name\"},\"phone\":{\"value\":\"83354372177\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gzYmDGc 41Mr 2BXI5PO MNewmPN Srn0 5gDkCiC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 06:56:25'),(1359,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mr.sa.96@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7d3feku\",\"label\":\"First name\"},\"phone\":{\"value\":\"88347157796\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Xqc25XE 8hh3 9tJl9k4 SORz82a bsJx RupVBgN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 06:58:56'),(1360,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lyutiknast@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7u7aoae\",\"label\":\"First name\"},\"phone\":{\"value\":\"82761994332\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6VaKdPM NWWs I85cUwg 0KoKoJs sH3H cZjcFXt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 07:02:58'),(1361,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"okrasotkaneto@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7plndpk\",\"label\":\"First name\"},\"phone\":{\"value\":\"81612135368\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TuMyUYh MxQM T1eUDpA SIPhq15 2Sp1 DC61FRa\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 07:06:42'),(1362,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexparh293@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9mj2qae\",\"label\":\"First name\"},\"phone\":{\"value\":\"88286791577\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZznP8lU Xf4j oDiuLUf rnumzDJ hTFN lYQeS7a\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 07:09:28'),(1363,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"malihin51@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ycquhzq5\",\"label\":\"First name\"},\"phone\":{\"value\":\"87292941293\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uXyAdyP bUKA DQzHcYg VGXminm 9q9a QeeR9DB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 07:14:27'),(1364,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"panoffdimitrij@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8luzxdc\",\"label\":\"First name\"},\"phone\":{\"value\":\"82168975782\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"G4VG4fB qZ2R xUajlAF TXZ4OOO M65e tSPUH8h\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 07:16:04'),(1365,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vikaterlecka62@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yak5vrct\",\"label\":\"First name\"},\"phone\":{\"value\":\"85887522323\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SwBp75o beEl 3j3qn2J bL1hWgt 2L9z AqjDGEZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 07:22:09'),(1366,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lik502@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9bsdhea\",\"label\":\"First name\"},\"phone\":{\"value\":\"82422594484\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"x2IWNhp eSLw IUYw2L7 sU8qSjV WPUo t0bY9kZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 07:22:50'),(1367,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sofia.friderika.avgystina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7g7po3k\",\"label\":\"First name\"},\"phone\":{\"value\":\"87948829772\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NVltieY dUy5 4nY8Uwa KmC79CS AE4v xN4fmgX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 07:29:18'),(1368,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elagina.n.v@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycgyz7ks\",\"label\":\"First name\"},\"phone\":{\"value\":\"84866467592\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6Fd1rdJ nt6X MakzGjf 38y9YDV oXmf XJ86vdP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 07:29:48'),(1369,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ezhakova.galina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7fosh92\",\"label\":\"First name\"},\"phone\":{\"value\":\"88873113414\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RAyS6g7 6sNb ZyghPTJ Lknh1eP XALm ebimLLh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 07:35:56'),(1370,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"motostrelok2009@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydyuxlv6\",\"label\":\"First name\"},\"phone\":{\"value\":\"82644934986\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"epX6qNA iPzb hy3LVGH 0QchXrY oE3C Kzeo2Qs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 07:37:31'),(1371,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rulya198529@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yce4lxns\",\"label\":\"First name\"},\"phone\":{\"value\":\"87286285818\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"moB4VFe s766 TuP7FTl gxCjpG4 wzZj 22t2XAM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 07:42:28'),(1372,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"madik65@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycsolmk7\",\"label\":\"First name\"},\"phone\":{\"value\":\"86349428138\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"x6U8psE 4q6R cGZ8Vwv px6IPPz Ncuf 8Ue7pcn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 07:45:16'),(1373,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"inomgadoev@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydz7bk7q\",\"label\":\"First name\"},\"phone\":{\"value\":\"84238761925\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MH4BL67 MjdZ 6TnlgC6 y3b91Cj DXvz ZiYlw0F\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 07:49:01'),(1374,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"akhmaeva007@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycsolmk7\",\"label\":\"First name\"},\"phone\":{\"value\":\"88783775959\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bohprpZ 9gpR qtqLpjW 32xrXdl WdnZ PASPG7J\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 07:54:00'),(1375,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anna.galac@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yaazwfxh\",\"label\":\"First name\"},\"phone\":{\"value\":\"81638133333\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9xxye86 tWTu zMHGBa5 72C7Puj PCg9 b8x2461\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 08:02:35'),(1376,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"modin2@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7yz83yx\",\"label\":\"First name\"},\"phone\":{\"value\":\"84472172463\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dHErBY0 tNRP 6vJaqr0 tt2Mwb3 Gi9d 3wdsVlv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 08:04:43'),(1377,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"markthebestboy0@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y77qd5eu\",\"label\":\"First name\"},\"phone\":{\"value\":\"84565466833\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"f8nucuL 0rth OhAYCzD iTKRMU7 nrbl vtspq9o\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 08:10:16'),(1378,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"romantumarkin@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7h32e8j\",\"label\":\"First name\"},\"phone\":{\"value\":\"82368589123\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OQGWo5u D5jI KokKQgM n1HgHWB JR0f sxdDUfc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 08:11:10'),(1379,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bortnovol@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y923zm79\",\"label\":\"First name\"},\"phone\":{\"value\":\"85154187155\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"s7htAeW nMhR lt2ZNTt 2Q7sNRQ e3V8 tJElupo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 08:17:39'),(1380,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"geft777@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya5a7v52\",\"label\":\"First name\"},\"phone\":{\"value\":\"88737317668\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BEj8NeM 5rHb QG7wTYv qzLVPJ6 Dqa6 Pzj1rLQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 08:17:55'),(1381,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"greec.kamaz59@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9eyu4zq\",\"label\":\"First name\"},\"phone\":{\"value\":\"89324868671\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8VZWcv4 Y8WR w2ki0zD GFYD5Zi 9hkS 15nS7o1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 08:24:29'),(1382,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nadejdda1960@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yddamzn3\",\"label\":\"First name\"},\"phone\":{\"value\":\"88682176697\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"g8zAxbz noAf DCFwPXi rcHgnrz fPft ZENkCPV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 08:25:21'),(1383,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pulathasanov1987@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9vq82us\",\"label\":\"First name\"},\"phone\":{\"value\":\"88723693313\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4cMZsjX aMPz udBpec2 iiabQWy gTGp 7zBh4dY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 08:31:05'),(1384,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"abktabif@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y92dsppw\",\"label\":\"First name\"},\"phone\":{\"value\":\"85234236517\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rfLuPwv MCYi kGyjnGl 4YqcIRE XWLm nCw5lOk\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 08:32:55'),(1385,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mmmdmitrieva49@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yae4xx46\",\"label\":\"First name\"},\"phone\":{\"value\":\"87162377554\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pitQz8m lxXk rXiUEf9 1eCo7xc Sa5A yIEnQ47\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 08:37:39'),(1386,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"1nellykns@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8acjpn5\",\"label\":\"First name\"},\"phone\":{\"value\":\"83359829522\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wtTUFS5 cjS6 xs1C9Tq zhrcJiw u383 02KIEcw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 08:40:29'),(1387,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dudinka0819@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9eyu4zq\",\"label\":\"First name\"},\"phone\":{\"value\":\"89686359194\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5yntX3k PRgo 72mlbSr XaGjR7R UIxj bomDnkT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 08:44:13'),(1388,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bekovalihan06@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8gbaued\",\"label\":\"First name\"},\"phone\":{\"value\":\"88165429234\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hcrG8Pr G2Ch RaplKnb f9PCejT GIQB 95KaiER\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 08:48:06'),(1389,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"annya.volckova@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y79l8tn5\",\"label\":\"First name\"},\"phone\":{\"value\":\"81617125863\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MZWz6uZ Vo1t 68g3llj RyWfzqs XVec iPZliPe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 08:50:44'),(1390,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olya.grid2017@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yaq3qq83\",\"label\":\"First name\"},\"phone\":{\"value\":\"82695894538\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cidmgmk Y6cS yumgXS4 XbNtjt0 AyCG aMeMj5h\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 08:55:47'),(1391,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ninula.lashova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ya5976r6\",\"label\":\"First name\"},\"phone\":{\"value\":\"81294984424\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"z2o5LaK CLin z1mdEfE L7KUNmC KJJV xa7GFx2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 08:57:12'),(1392,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"irina.catwoman2012@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9hhz8v2\",\"label\":\"First name\"},\"phone\":{\"value\":\"81169761361\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9Jv7Ih6 ooZg MUpXrgs Whqsj9U qKhN BUOPrXQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 09:03:30'),(1393,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"luzin.ma1982@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7oeb89t\",\"label\":\"First name\"},\"phone\":{\"value\":\"89848474451\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jTbtcUf gvWm QYzNYqk tfnAqCD 4g2p oRChmUx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 09:03:46'),(1394,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sislakovad336@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8y9nryy\",\"label\":\"First name\"},\"phone\":{\"value\":\"81814543345\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"poiaBOr Yjld rBNCE8r ro7o0oy RKPK JDxiIbt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 09:10:32'),(1395,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nickita.xxx@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybdro3ny\",\"label\":\"First name\"},\"phone\":{\"value\":\"88679572579\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WYotgHu kChG BPwsH5L 5HUOCby XpIF JNiA12Y\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 09:11:13'),(1396,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gazizovaguzalia1971@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9mhaezc\",\"label\":\"First name\"},\"phone\":{\"value\":\"83926823989\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yKWjhzO pUuJ fBGyQyC xgeHE1Z 4zdx ErQe2cO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 09:17:17'),(1397,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"roza1987503@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycru85b9\",\"label\":\"First name\"},\"phone\":{\"value\":\"82748654179\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"j433DV9 xucj t9uZ475 2Te7lH5 8KSJ FkqmXS1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 09:18:53'),(1398,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"valentgur@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydc3owlt\",\"label\":\"First name\"},\"phone\":{\"value\":\"88443282393\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xDPhCSk PL1G zVEEsms wZfvL6Y 9LTq WnFEINw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 09:24:17'),(1399,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ymarov03051978@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8r5htrl\",\"label\":\"First name\"},\"phone\":{\"value\":\"89441837866\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TWsK7IR F4eT kDGI7U4 caZmUf5 aJIc vEKoKnr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 09:26:36'),(1400,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"llv3065@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8wl799g\",\"label\":\"First name\"},\"phone\":{\"value\":\"89574219865\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pcYDaMB 8DbW kamUXG1 mw4CHHV Mf6D YZlkH6Y\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 09:30:53'),(1401,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"serikovanton@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8xdmget\",\"label\":\"First name\"},\"phone\":{\"value\":\"89132356616\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pzzF4zJ FCDn QbzjIzM AvrFrqW UGpK SNaSK3G\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 09:34:19'),(1402,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"omega9318@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ybsjpnvt\",\"label\":\"First name\"},\"phone\":{\"value\":\"86851947633\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"09z2HZK eOpS bYSnzsF rUzNDyE M4d5 VP8wLEA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 09:37:29'),(1403,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lanvisor@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7yedbh7\",\"label\":\"First name\"},\"phone\":{\"value\":\"85837886516\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ju6Md8P 69O3 zqMQsjW K0A4vNh vRVF w69IwXg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 09:42:00'),(1404,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kornietskaya1995@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybvxbp4k\",\"label\":\"First name\"},\"phone\":{\"value\":\"87172561521\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iUPKQNE N92U 6SaKruv JrdLzuk VZ5q PE2wtUQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 09:44:10'),(1405,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"andr2809@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9zjfqmp\",\"label\":\"First name\"},\"phone\":{\"value\":\"89932553497\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"97rEZWn Axir 8FWoguY owZwQ4Q QYGg Mm0Wd5G\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 09:49:45'),(1406,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ainur291117@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycyaws7c\",\"label\":\"First name\"},\"phone\":{\"value\":\"86477343742\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JqiX5xi luhl emMOZux tIfMt0i IRcl woUmYfW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 09:50:38'),(1407,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kualyur@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yaeb2e5e\",\"label\":\"First name\"},\"phone\":{\"value\":\"88679666256\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"h5TlfPp BWqG c6Ja4fd NUDJRlT 8hNF io3Wple\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 09:57:02'),(1408,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"totl73@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybsfgdxj\",\"label\":\"First name\"},\"phone\":{\"value\":\"87597433762\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4BFkRK9 XxBF pxqscdR Wf0Uf3O NYVR S2w4Zn3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 09:57:25'),(1409,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"manoj.bangaram1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y94th6ne\",\"label\":\"First name\"},\"phone\":{\"value\":\"83439496417\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yFwrasi ya3D GNUVV0t 62JoG36 hyau EDlR8La\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 10:03:41'),(1410,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alena55505@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9el2xuq\",\"label\":\"First name\"},\"phone\":{\"value\":\"86384579744\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6LeOkI4 r55Z lfIIzMI p64VP7A fHEY YcLsSDc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 10:05:02'),(1411,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"margarita18orishi@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7dzbu4j\",\"label\":\"First name\"},\"phone\":{\"value\":\"81723289518\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6g3BWQT mByN wHIH6rE p7Nstjd tzfN d9zZZlW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 10:10:19'),(1412,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"7982438@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycvcoo8n\",\"label\":\"First name\"},\"phone\":{\"value\":\"83738721969\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XIzTi8K fuX7 9xZya9x KiMDNrP UqVP CAOzPyV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 10:12:48'),(1413,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"9351aav@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7swlhsy\",\"label\":\"First name\"},\"phone\":{\"value\":\"87987723376\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6kc95SS V6yn 5zHdhFu mtH2Y9Y q9kd ZGWEkju\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 10:16:54'),(1414,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mss0958@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaqojfua\",\"label\":\"First name\"},\"phone\":{\"value\":\"82369827282\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wueflKG iazH l0EWHXP B1zhG87 O8tE Jk1FKa3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 10:20:32'),(1415,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"korneva.zhanna@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydxysqq8\",\"label\":\"First name\"},\"phone\":{\"value\":\"83623631963\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dOaJOT5 qNJp Wqm05AM 8ethZSQ eES9 BmOBzTb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 10:23:51'),(1416,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yysveta@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y92de6bf\",\"label\":\"First name\"},\"phone\":{\"value\":\"85326488565\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"U8Ewifc jBYs vPXGsdA 9FJz9RJ 9ZxI JRFGEp8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 10:28:20'),(1417,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vrl3@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7upx9uy\",\"label\":\"First name\"},\"phone\":{\"value\":\"83713788582\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pR609ZH CZmi g4B0nFn TYYG1t1 QcxD zTF6o0L\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 10:30:30'),(1418,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"metrnametr3z@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yap9rsdm\",\"label\":\"First name\"},\"phone\":{\"value\":\"86832882139\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Iv9MoH4 i5Yo W6kLjqs l5ZIKDC m3BM fi7HINc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 10:36:05'),(1419,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nesterukekaterina834@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yb5nmznx\",\"label\":\"First name\"},\"phone\":{\"value\":\"85544628415\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lVw367L rwAu REkb7Ol uAotpdE 8uUV JtPuk4p\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 10:36:57'),(1420,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"woschod@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybufm6zx\",\"label\":\"First name\"},\"phone\":{\"value\":\"89492881148\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kBwPM8A 35m5 88otsKT X8M8n1S DqNR wu0emgr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 10:43:26'),(1421,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ctenalllka.ort@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y83oajhl\",\"label\":\"First name\"},\"phone\":{\"value\":\"86278127196\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ExhgY5j Jjhc B2EtHHg WF40TCY DYNn 7prqIv3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 10:43:41'),(1422,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"razanovaoksana652@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycqo6p63\",\"label\":\"First name\"},\"phone\":{\"value\":\"86449426134\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oCCy0Gd uZSQ 5oUMB7F oM3xwJe jJ7d TltsmES\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 10:49:57'),(1423,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"15aassdd09@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7vsd5e4\",\"label\":\"First name\"},\"phone\":{\"value\":\"83287593963\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3MazInH 1wJf WHFSmLp a5mbYMa UVAq REEMbm1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 10:51:14'),(1424,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"taradgleb@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y7gwhnof\",\"label\":\"First name\"},\"phone\":{\"value\":\"88282983295\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1SGseZw vSKl PE6tfq7 raTu3Z8 eHKW JoDjwKR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 10:56:27'),(1425,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"achalsinghrana@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y6ucx8qk\",\"label\":\"First name\"},\"phone\":{\"value\":\"87674584627\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JaHSTA1 rKdw ZNvO7t9 dpugaon ruES 8A1dtxC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 10:58:48'),(1426,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"stepan63118@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yaytqowc\",\"label\":\"First name\"},\"phone\":{\"value\":\"88844994417\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kqVKPw9 KOM4 deGvFhM ppKUaoe SIFb wfaKAFr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 11:02:56'),(1427,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"28110158laila@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y87pctun\",\"label\":\"First name\"},\"phone\":{\"value\":\"85799393757\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zS6ewGb cuqe yi3S79i FXIPx3G 2kB4 En0Mq3n\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 11:06:29'),(1428,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pantuhinasvetlana97@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yam7xqqb\",\"label\":\"First name\"},\"phone\":{\"value\":\"89324532872\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HEMZD8S PgsC 7dpGipQ L0a7BcV 72hE 27BmYnd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 11:09:21'),(1429,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"artwebinar@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7wd2oxo\",\"label\":\"First name\"},\"phone\":{\"value\":\"81198783744\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uu5UkEs WZ4g 6zkzFGd Ox3rGbd nYs6 lf6fwlT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 11:14:06'),(1430,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kromskiyda@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9kg3tn2\",\"label\":\"First name\"},\"phone\":{\"value\":\"87977191633\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Imuaw5H N55T rUCNu6f 4yqm2sI p4Oe JiABJJ6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 11:15:53'),(1431,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oman2004@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybt7mw2v\",\"label\":\"First name\"},\"phone\":{\"value\":\"89462386211\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ujjvIOn Xip7 ydlb6Yr JoQBb7H JcGh herxmIn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 11:21:49'),(1432,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"batorovdorzho@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybxsexop\",\"label\":\"First name\"},\"phone\":{\"value\":\"84573193359\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dMZq4ho kzyQ nss3otg 3rKNX6m 6aRI 5bSq6Iu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 11:22:38'),(1433,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"julya0304@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybdwxelb\",\"label\":\"First name\"},\"phone\":{\"value\":\"84383161989\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"89XiWof cqnw y89SIwI sajQDSE 6VIW 0KIewXN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 11:29:08'),(1434,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"evgeniy602@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y7xnw46u\",\"label\":\"First name\"},\"phone\":{\"value\":\"88597868536\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ye61bXX HjHg mdnsxdZ B3jY1zl Mhu1 1wTg9sF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 11:29:27'),(1435,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"io500771651@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9zlwptx\",\"label\":\"First name\"},\"phone\":{\"value\":\"89398686989\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xSWaG1C 8vyI zz7eSzT JvsnP7w 3FLk Q4dKhd1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 11:35:44'),(1436,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"amuhotarova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycngbp69\",\"label\":\"First name\"},\"phone\":{\"value\":\"89719897887\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pmVTG4w d8jO FbmoEqE ZMIrfVh vOwH 2pHwNMh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 11:37:03'),(1437,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dragon7775@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y72kk777\",\"label\":\"First name\"},\"phone\":{\"value\":\"89713725562\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ozZenCR x4q3 zj4QEg4 WChVOaj qfq1 yDIpir1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 11:42:15'),(1438,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"markelgalina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycqkqk3r\",\"label\":\"First name\"},\"phone\":{\"value\":\"84629428561\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aju9ARv kN69 nY9gkcx SKBm8yR 5tyZ lwqkNl6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 11:44:37'),(1439,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"eapekov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9gjxt8l\",\"label\":\"First name\"},\"phone\":{\"value\":\"89361975416\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uiZOO6N JzhU 9iggiq1 jTI2GSz i0Ba YexQLBx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 11:48:51'),(1440,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"armaanshaikh.as556@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7tzbrph\",\"label\":\"First name\"},\"phone\":{\"value\":\"86439971429\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DJgtwOh 41LU 3FjW5b5 lrd42uL 4TSk P89pNX3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 11:52:12'),(1441,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sonny.of.vasya@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9j6mbfk\",\"label\":\"First name\"},\"phone\":{\"value\":\"86776369888\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HwBMK5c ttyw fCTcx9M VnakRqp jBAE t6SZlH5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 11:55:19'),(1442,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"andrey-ginc@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yd8njuct\",\"label\":\"First name\"},\"phone\":{\"value\":\"84947477784\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1IJ9BQl Qfji T5JTRHO sY0LAMD mag7 BLqZujX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 11:59:43'),(1443,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"e1535san@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y82j5c8g\",\"label\":\"First name\"},\"phone\":{\"value\":\"81747173489\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8lwzjmc 8xez zGR0Tgw FUizsnc HokQ iK7Tq10\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 12:01:47'),(1444,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"perlov13@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8mefvzq\",\"label\":\"First name\"},\"phone\":{\"value\":\"83348481673\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3Kiv00p TXrK VTaMIdd 5Q5FeZK 1c95 KyzP8UB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 12:07:19'),(1445,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vitalii.daniuk@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yd4wzjlr\",\"label\":\"First name\"},\"phone\":{\"value\":\"85185115929\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5LJ4Np7 m07F GJPl6VU 4o9swCC G4Ue G0jnFBD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 12:08:17'),(1446,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hichlander@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yamfsjjl\",\"label\":\"First name\"},\"phone\":{\"value\":\"89721747873\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MJoUw2y t93J bmF7iYA mWGPE3U vt1K T9Pb6av\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 12:14:45'),(1447,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"z9654743438@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yc3h6ec6\",\"label\":\"First name\"},\"phone\":{\"value\":\"81152299553\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GwyYgDt cyud wbD1Fqv sU0cP4r lsEN v5kn358\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 12:15:01'),(1448,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ivan.anatolievi4@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8m4keek\",\"label\":\"First name\"},\"phone\":{\"value\":\"83422139525\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0QpRecy UQpU 0SrgPxx NARMnTx uYUY lEwG0fM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 12:21:44'),(1449,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vlad.nika150792@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycmpfvef\",\"label\":\"First name\"},\"phone\":{\"value\":\"86316484482\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hugnIGK jd86 CsoFnrC 5GWaQNW jRuk XxSj8S9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 12:22:41'),(1450,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"legenda.20001212@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybjx7vyy\",\"label\":\"First name\"},\"phone\":{\"value\":\"84366961844\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ijSOHv3 odfD jOTAitP ciQ0zpV wycy j3jN978\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 12:28:17'),(1451,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ludmilka.mm@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y72ka67z\",\"label\":\"First name\"},\"phone\":{\"value\":\"89878264279\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oZrrjhZ KACt SNjDiS0 jRHcxXU amxX Echqx87\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 12:30:18'),(1452,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vict.naumova@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ydcardn4\",\"label\":\"First name\"},\"phone\":{\"value\":\"88848291783\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"K09hUdz 6fxj IjzAgOa TmCkdgS hRDy txzfZIA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 12:34:50'),(1453,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lekonczewa2017@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yd8849ws\",\"label\":\"First name\"},\"phone\":{\"value\":\"83271695664\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9X1HQKO cy3u a2fqIci n59P7yK C7al U8Yo7wN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 12:37:56'),(1454,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"annet710@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb8k5qn9\",\"label\":\"First name\"},\"phone\":{\"value\":\"85817615898\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GozyN9E DOVo 51I3wH3 4a0vSuU Lqlp 0uIY13d\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 12:41:24'),(1455,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"balwantkumarsaini1998@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7v75tad\",\"label\":\"First name\"},\"phone\":{\"value\":\"84735339395\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GFW5gXy R8BR EqxE2Ac bJjtqJK KMiY EdK4DuW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 12:45:36'),(1456,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"larilyud@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8agt3lf\",\"label\":\"First name\"},\"phone\":{\"value\":\"87228927972\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"A6rqsRF SO4Q DBqt3sk j8bxNYA TFst 651tAm4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 12:47:57'),(1457,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tema.673@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7xye2pl\",\"label\":\"First name\"},\"phone\":{\"value\":\"89774136819\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tgxyPG9 8uwl k6USwcC iCuFJKm IUwy oR2didP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 12:53:16'),(1458,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"43region2009@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7rec6r9\",\"label\":\"First name\"},\"phone\":{\"value\":\"87566565672\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"THPEbPl XCuB tBWuqFz C4eSRxu 1p0N 5xhousi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 12:54:26'),(1459,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dashulya1109@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ybxsexop\",\"label\":\"First name\"},\"phone\":{\"value\":\"81888751352\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5DeLMy9 TBUv GDIZjjT AY3gObr oUvY vMHJnwp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 13:00:54'),(1460,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kudzoeva@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yb5onaxt\",\"label\":\"First name\"},\"phone\":{\"value\":\"82978578859\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zKdkQUn 9l4s ChvveNd nqc9nUg eF3p Hs0NEjy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 13:00:55'),(1461,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"adilanwar526@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycmkyane\",\"label\":\"First name\"},\"phone\":{\"value\":\"88442348658\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xxPsb97 a6Ka 2MEelUb vEmB07c yNPK iNfcjVT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 13:07:37'),(1462,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pagieff.as@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9x223ca\",\"label\":\"First name\"},\"phone\":{\"value\":\"89168898937\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6F7cnoZ HseB z21aK3R HoLIWGY qPXW 3iqxKSP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 13:08:32'),(1463,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"desantnic2012@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y98qk74s\",\"label\":\"First name\"},\"phone\":{\"value\":\"86549677569\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FY4i4zs IMvc 0QUK9cq h6HeXbS sbZx LuqCt9n\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 13:14:11'),(1464,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"selutina54@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybxelxrt\",\"label\":\"First name\"},\"phone\":{\"value\":\"82965459389\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WASVC3e S00E Ehdqoxs TgqFois cDiV vyYJ94B\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 13:16:05'),(1465,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"max.melihof@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8kagakz\",\"label\":\"First name\"},\"phone\":{\"value\":\"89961765733\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SIwXpPb 4aLG uLmfgAr N80aN7w Tiuq ycnUCoW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 13:20:45'),(1466,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nikito011602@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7qlsjp8\",\"label\":\"First name\"},\"phone\":{\"value\":\"87139865724\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EDSI7u1 DQaq Cgh2a1U jxQmgHG wgjQ KXiTNJX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 13:23:53'),(1467,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"glaznik-25@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8ptdcjs\",\"label\":\"First name\"},\"phone\":{\"value\":\"89255595882\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GA2XQ9P UB7K VrcpGjW HlyUh6S 5toH ydNOOaf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 13:27:41'),(1468,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lady140212@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycaz9n9l\",\"label\":\"First name\"},\"phone\":{\"value\":\"83958162368\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0liSqJ5 TW56 0zVMQPt uoti7P3 pw0K xBfDJeV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 13:31:32'),(1469,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nuriar@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yc7p6kbl\",\"label\":\"First name\"},\"phone\":{\"value\":\"85943193123\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"g96dyQW ee4R dYYfwio C2DoUGD mR9C SEknTZ6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 13:34:18'),(1470,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ellabobkova87@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya574r2f\",\"label\":\"First name\"},\"phone\":{\"value\":\"85553814794\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"N0xs0aI JXao 8QwCNZs Srr1Eg8 Cf0q 002L6ye\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 13:39:15'),(1471,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"naj.ru.8821@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yae4xx46\",\"label\":\"First name\"},\"phone\":{\"value\":\"83692416115\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0KoCn2j AXSK d9cKBga 3xvJW9b vuhv hc2cSWb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 13:40:57'),(1472,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"edik1384@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycaqmtle\",\"label\":\"First name\"},\"phone\":{\"value\":\"87365288564\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AGUBQQ1 vAmq YtbMqDK CUHwAvp qAKI ySd1r0T\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 13:46:58'),(1473,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Oldridge\\r\\n\",\"label\":\"First name\"},\"phone\":{\"value\":\"85127348611\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello, \\r\\n \\r\\nThere is a new Boss in town. Semrush started dominating the SEO tools for some time already. So, why not get yourself backlinks that Semrush says are good, right? \\r\\n \\r\\nIn this plan, get backlinks that Semrush says are coming from quality domains, Domains which are having 5000+ ranking keywords \\r\\n \\r\\nMore info: \\r\\nhttps:\\/\\/www.seo-treff.de\\/product\\/semrush-backlinks\\/ \\r\\n \\r\\n \\r\\nThank you \\r\\nMike Oldridge\\r\\n \\r\\nsupport@seo-treff.de\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"84.17.47.94\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 13:47:17'),(1474,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"crazyonlinesell@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9o9m6kc\",\"label\":\"First name\"},\"phone\":{\"value\":\"89925188334\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZZDeZgE P0Kh qv4P9h2 1THVzpN mjm8 AA0kq7a\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 13:47:31'),(1475,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"workmailanton2@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8yt5ocn\",\"label\":\"First name\"},\"phone\":{\"value\":\"82852883588\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8wDN103 9x3m MGUfwo6 SCIypVz 2nVs HKHR7eV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 13:54:05'),(1476,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natalusik1@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y727g3fk\",\"label\":\"First name\"},\"phone\":{\"value\":\"89521464963\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AEgrv4G iG63 FkpCZMz 06HFk7u s2n5 ljom8Cn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 13:54:38'),(1477,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dm.shevchenko2017@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y837clc7\",\"label\":\"First name\"},\"phone\":{\"value\":\"83384743858\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RClG4PT 8CBB HXYeHjP 9MWdplV Ywcg i6FWZNv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 14:00:40'),(1478,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sa-m@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7n9f4ue\",\"label\":\"First name\"},\"phone\":{\"value\":\"85733876855\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RygYZHU vvce UknsxrS 6xVjCQu v6Kj aIKr8iS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 14:02:17'),(1479,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lekomcevdmitrij39@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y7mbcbmh\",\"label\":\"First name\"},\"phone\":{\"value\":\"84777378371\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2jF55fC mu8y 6AKiYv5 FiWE1FD TciF 6dkoJvl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 14:07:22'),(1480,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"finans-gr@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycl37af2\",\"label\":\"First name\"},\"phone\":{\"value\":\"88328725689\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dAPqkjW RfbQ i1ToNWM ebmLVpY P3ed LQ97t2D\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 14:10:02'),(1481,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sanya.zhironkin@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yazpsx6f\",\"label\":\"First name\"},\"phone\":{\"value\":\"88421466459\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0dfBhS3 nttw Q6m9il8 QEurtke 2Kb9 mgelFZ6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 14:14:02'),(1482,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rychckova.iu@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8ppzl32\",\"label\":\"First name\"},\"phone\":{\"value\":\"89694362578\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"E8JBlzc upT0 agsmJVY sQZKyB9 QuIn jb74set\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 14:17:45'),(1483,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mysk2404@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yarh32wb\",\"label\":\"First name\"},\"phone\":{\"value\":\"86956782464\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YRRtKrP ph3q dDIbUTA EDH7K08 TCWg 4G7rFzg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.175\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 14:20:40'),(1484,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"irinaandanova9@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7s4yqnd\",\"label\":\"First name\"},\"phone\":{\"value\":\"82753236424\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"v91kMl8 Ut7B umvqp9Q EEeMBul OG6r mcNh3AZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 14:25:28'),(1485,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"seregaredko187@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yaxr4jqg\",\"label\":\"First name\"},\"phone\":{\"value\":\"85455256325\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"q4ikg41 Br9w ixuTsCc O0GrdIC HiS8 sjS6lK6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 14:33:13'),(1486,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zapram99@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yaj687rp\",\"label\":\"First name\"},\"phone\":{\"value\":\"81286797459\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xFVejh9 2Agu 6qa30Zx zz0H8IW mcFg PuuEqpB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 14:40:57'),(1487,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"valeriy44kos@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaxr4jqg\",\"label\":\"First name\"},\"phone\":{\"value\":\"84199132982\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gyyFjPQ DsZf Cjbj1BH XNMdClS 86vG QGOO4Tb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 14:48:40'),(1488,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lokos1957@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yauju4jm\",\"label\":\"First name\"},\"phone\":{\"value\":\"88471997576\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iEogJ4C 8YuU mrAHrJf g1ZiOLO 7ldq nMvTVsG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 14:56:30'),(1489,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ti5-s@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7e42722\",\"label\":\"First name\"},\"phone\":{\"value\":\"81697682531\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mCApZeT G8WJ OHBOZFU uu21eyr kWII uKxbtgC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 15:04:19'),(1490,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"skostin@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7esr6mu\",\"label\":\"First name\"},\"phone\":{\"value\":\"82712625152\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"m1SKmsG vaGy b8gh8Y5 TgqeC91 TzNy QBLl1UF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 15:12:19'),(1491,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"4865es@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycnejde7\",\"label\":\"First name\"},\"phone\":{\"value\":\"87229815117\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"z97lpba uzBg VpHJSEH 4VJYD8f RhuD 4gQEpdE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 15:20:08'),(1492,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"co939833@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ya4om6me\",\"label\":\"First name\"},\"phone\":{\"value\":\"86624875983\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"L8SSPHJ NkuC R1eTWtl 7TncLCv GoYm Ol8aSNy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 15:27:55'),(1493,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vera.vedenyapina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9axhq62\",\"label\":\"First name\"},\"phone\":{\"value\":\"83876538464\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SdRPW7U 8sMi Zkdqzcr UbEwsNC kEmD FspgmNY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 15:35:44'),(1494,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"safina.ylia@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yd62299t\",\"label\":\"First name\"},\"phone\":{\"value\":\"87194437222\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qFk1MVO glmh uMshvkK pcfq4fk IA5t wSjx9OR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 15:43:27'),(1495,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nikolatixon@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8dw2lj7\",\"label\":\"First name\"},\"phone\":{\"value\":\"86946543871\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"joBGPIh nkZY hfTTohM NjWDmLZ Krix IKcCCdg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 15:52:09'),(1496,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"breath.08@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybcstnxv\",\"label\":\"First name\"},\"phone\":{\"value\":\"87511518296\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6kBfoJD Lixq Nk42YiG HeUrDY8 x0KB 6rQGN8B\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 15:59:46'),(1497,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tukmacevalubov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y86u36po\",\"label\":\"First name\"},\"phone\":{\"value\":\"88543553432\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2aVWiv3 4UEz zQmK1gP a5UTg6V Gyab y5d1xHB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 16:07:38'),(1498,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mohsinzargar18@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7q46y5l\",\"label\":\"First name\"},\"phone\":{\"value\":\"88858215293\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"awJ2CTR 1gnJ 4VzTd9n r8xWXdO jqab lZsM4q2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 16:15:24'),(1499,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ifalefatu15@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yac9zsaf\",\"label\":\"First name\"},\"phone\":{\"value\":\"85987183832\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JKcrHWo tyL0 GQEfgnX Kt620IE YxEn QKecsYV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 16:23:09'),(1500,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Emma\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Miller\",\"label\":\"Last name\"},\"email\":{\"value\":\"inquiries@postmarketpublishing.net\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello,\\r\\n\\r\\nMy name is Emma, Content Writer and Outreach Manager at Post Market Publishing \\/ Outreach Master.\\r\\nI expect you receive load of emails, every day from companies promising the world and telling you why\\r\\nthey are the best.\\r\\n\\r\\nWhen it comes to our Media Placement and Link Building\\/Guest Post offering, our strategy is slightly\\r\\ndifferent. Focussing on three key pillars: Building Trust, Authority and Relevance with our clients via\\r\\nour outreach campaigns, we are proud that the results we are able to deliver speak for themselves.\\r\\n\\r\\nIf you have ever used an agency for your Guest Post Link Building, I would love you to give us a try and\\r\\ncompare our offering and service against your current strategy. You can then measure our results and\\r\\nthe performance of our campaigns for yourself.\\r\\n\\r\\nPlease let me know if you are interested, or have any aditional questions.\\r\\n\\r\\nBest regards,\\r\\nEmma Miller\\r\\nContent Writer and Outreach Manager\\r\\nOutreach Masters\",\"label\":\"Message\"},\"phone\":{\"value\":\"0341 8406474\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"23.81.60.153\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 16:26:46'),(1501,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mlm556@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y74j9pt9\",\"label\":\"First name\"},\"phone\":{\"value\":\"87571365874\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FE1YiDH 24R1 zJ9uF6a VwflRph yULw RCQST2s\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 16:30:58'),(1502,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mfkirill7@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7pb3978\",\"label\":\"First name\"},\"phone\":{\"value\":\"84651123125\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3TuaQnt vrVC z1io5Oz V3vnB3Q Shfh KFSDRfB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 16:38:51'),(1503,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pankratov.kostik@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y8nm55y6\",\"label\":\"First name\"},\"phone\":{\"value\":\"86695111525\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Wq5QUTr gEmP gAIIb8w PftEber nWce T33MVI7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 16:46:34'),(1504,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"andryushkin.alexandr@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9swwhfy\",\"label\":\"First name\"},\"phone\":{\"value\":\"89712897867\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"U0DmQoG AkUE mNfSUCb ejC7DFR 6pNL TRuV1gt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.57.70\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 16:54:15'),(1505,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kot.alex.2010@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9a2q8a5\",\"label\":\"First name\"},\"phone\":{\"value\":\"86791916148\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xU620fA jiWl dLmrW0x 0kM0puw 6U3I 7wJFswa\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 19:12:39'),(1506,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hachai1995@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y8qenkxb\",\"label\":\"First name\"},\"phone\":{\"value\":\"84675136469\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1q0UFyA Fy2c FM4cWFJ M2W5wLo iBYY 4RRLvb4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 19:21:08'),(1507,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"stepan.yusha@bk.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yclc3k5t\",\"label\":\"First name\"},\"phone\":{\"value\":\"85716453593\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZdDLMXN PiqO D3XbHrY E6v8pBm hk2V Mu9Lbqz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 19:29:18'),(1508,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"voitxxi@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8tcw6pm\",\"label\":\"First name\"},\"phone\":{\"value\":\"87314971191\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AvbebyH edOL ELQcO2H GeFhCoO pweo T4ryXpm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 19:37:33'),(1509,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"skvortsov-a51@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yam5t3s5\",\"label\":\"First name\"},\"phone\":{\"value\":\"85695615694\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Vrf9TGG pz1y PrIjGnw JV6qiNl YcM5 ZX7R4pR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 19:45:50'),(1510,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zambi89@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y7ebkofb\",\"label\":\"First name\"},\"phone\":{\"value\":\"86966817998\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"h24AAkZ fJ5j ozbHJR8 cePZOuc 4S5s rUfGbDF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 19:54:10'),(1511,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oslik91@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ya5z8yws\",\"label\":\"First name\"},\"phone\":{\"value\":\"86174247741\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TltHhUm pXDt oDr0EEB 0KQ9qkq BR9y HVPCzmE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 20:02:33'),(1512,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ivanselnickij@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8mhkjzu\",\"label\":\"First name\"},\"phone\":{\"value\":\"86542219322\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JWustDT HU5w sEx6MzM KTTNG8i 5cig oGHj2LD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 20:10:50'),(1513,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"slavikkadetov@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8tcw6pm\",\"label\":\"First name\"},\"phone\":{\"value\":\"83978153759\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cQM7cDy 1t4t kb0pNtS r8afgJV CqPu 1xJbNfY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 20:18:59'),(1514,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tontoeva91@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9om7pa5\",\"label\":\"First name\"},\"phone\":{\"value\":\"82461769479\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pELfulf QtFm BeXlpd8 Fc4W7Gv FVs2 wLlCYsA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 20:27:13'),(1515,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"andrejdedulin004@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybcu8w9x\",\"label\":\"First name\"},\"phone\":{\"value\":\"86425352211\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZYjHGQs 2n8z SN3rBcg DKV9MPe WZHq QvVptQr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 20:35:34'),(1516,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"smilegirl200@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybc3ayej\",\"label\":\"First name\"},\"phone\":{\"value\":\"86765828553\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RJJJwbD dgu9 YW6jfAk R9B6TUZ DWV4 el36IqW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 20:43:59'),(1517,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"emelinatatana112@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybu7f2zj\",\"label\":\"First name\"},\"phone\":{\"value\":\"86418457323\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"o7GgpWs NIcu Qw045Te dMVEM9O r2DD 4pHM6P0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 20:52:34'),(1518,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"muhammadpirzoda704@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9xpweyl\",\"label\":\"First name\"},\"phone\":{\"value\":\"89528273541\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xaYWaQU x6Ph BwpUvnS S6iJVu4 IdYh XgAu58D\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 21:00:50'),(1519,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"asemaayan@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8tcw6pm\",\"label\":\"First name\"},\"phone\":{\"value\":\"83384571393\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7GDcVRx I3SZ OGXS4O2 Frln9Bh mPs7 sRS13qq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 21:09:18'),(1520,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ancevicnikolaevna@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yawrbehn\",\"label\":\"First name\"},\"phone\":{\"value\":\"86286446676\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CydELUg VIiW CpQLJyv r6N713G ZkvM 3SZW7G2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 21:17:32'),(1521,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"boomerguap@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7x9e6ke\",\"label\":\"First name\"},\"phone\":{\"value\":\"86445877176\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nduE78a c4yC K0q5uwA 2yDnaFz 54iq qMAnjPq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 21:25:58'),(1522,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bahodur-zt@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycsnrxln\",\"label\":\"First name\"},\"phone\":{\"value\":\"82322434614\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pF7zhnF 3P8l TtjVuP4 9kiEtnB Csfy OItSkWV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 21:34:19'),(1523,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kostin.promclub@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9pafydt\",\"label\":\"First name\"},\"phone\":{\"value\":\"88218793915\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1XgAIsU WBJl 6JsYKJ3 6TKK5Rd XXFI XwEcjXQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 21:42:30'),(1524,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"abdullaevasumayka@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9xpweyl\",\"label\":\"First name\"},\"phone\":{\"value\":\"81725733316\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DDNsKzf y4o6 GT8O2mh EziIB2M Q9LI sgIb9kU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 21:50:49'),(1525,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zoir1993ashuro@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycttnscy\",\"label\":\"First name\"},\"phone\":{\"value\":\"82635994953\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"O2CKPSr IHWs lvhQcP9 96apdsL E0Uv JREEYCg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 21:59:17'),(1526,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"chernovaa_99@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7ebkofb\",\"label\":\"First name\"},\"phone\":{\"value\":\"86832154292\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MDpaqLJ fF6u 7HCR69T 3yMzNZ0 QMwc WnkgXb4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 22:07:38'),(1527,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zihrnov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8nvyepx\",\"label\":\"First name\"},\"phone\":{\"value\":\"88873723744\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wGBtaRh ynge 2VJP6eI y8BpSHc Ba22 h9ALhnn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 22:16:00'),(1528,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"inza1982@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7q3bc74\",\"label\":\"First name\"},\"phone\":{\"value\":\"82155435122\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oBQV7hU vqNB ROkrDoo eiTZICw zul1 n0JXXnT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 22:24:29'),(1529,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"malinina0912@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybp9llb4\",\"label\":\"First name\"},\"phone\":{\"value\":\"83768572423\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QfNnoGT 9M1y ucJaKWa J4mx6zE Y0KO GSNikCH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 22:32:42'),(1530,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"liligalstyan067@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y86xh87o\",\"label\":\"First name\"},\"phone\":{\"value\":\"82689125576\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Kp52byi WPl9 e2if3er JxhQsi5 Kh17 DqSfalm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 22:40:57'),(1531,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"eduard0202@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7m68bpn\",\"label\":\"First name\"},\"phone\":{\"value\":\"82391947932\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZflFebn ieVR JnvcLLm cG5TtQo 8TRM YFwg4T9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 22:49:17'),(1532,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dmitrijkoltasov17@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9dfl9jg\",\"label\":\"First name\"},\"phone\":{\"value\":\"84541649713\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2AANWmS TRXW UIWTN4B YqhI6MU mqEV CKxJpgk\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 22:57:38'),(1533,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tunissiana@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9husf2y\",\"label\":\"First name\"},\"phone\":{\"value\":\"89362881987\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7RXyrqt NcKH vuFR5RL KaYxA4G NBij TIz5D5x\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 23:05:47'),(1534,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tysiake@mail.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya5z8yws\",\"label\":\"First name\"},\"phone\":{\"value\":\"81833421975\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wgbNfpc XM6h UHCBnt5 CZcylnI kBk9 R1T4UzT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 23:14:01'),(1535,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"arturmazurenko82@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y87rlcyq\",\"label\":\"First name\"},\"phone\":{\"value\":\"86556284891\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iWwlviv 5DqU HhDo4kt hluKC9P RStW ug4Kyny\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 23:22:24'),(1536,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"brodyaga9590@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yawrbehn\",\"label\":\"First name\"},\"phone\":{\"value\":\"88521146252\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BRKOYyq cJfo HW0zpBs tMKbbQS nCEL PmEupPE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 23:30:39'),(1537,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"baitimirova82.com@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9ob6ya9\",\"label\":\"First name\"},\"phone\":{\"value\":\"81446654188\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ijh0ac7 hsBi yijumE3 eETEUZW wcJg VI9YUMf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-19 23:38:57'),(1538,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"WilliamEffer\",\"label\":\"First name\"},\"lastname\":{\"value\":\"WilliamEffer\",\"label\":\"Last name\"},\"email\":{\"value\":\"vasiliidubov4728@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u0412\\u043d\\u0435\\u0448\\u043d\\u0438\\u0439 \\u0432\\u0438\\u0434 \\r\\n\\u0424\\u0438\\u0430\\u0442 \\u0424\\u0440\\u0438\\u043c\\u043e\\u043d\\u0442<\\/a> \\u0438\\u043c\\u0435\\u0435\\u0442 \\u0447\\u0451\\u0442\\u043a\\u0438\\u0435 \\u0442\\u044f\\u0436\\u0451\\u043b\\u044b\\u0435 \\u0433\\u0440\\u043e\\u043c\\u043e\\u0437\\u0434\\u043a\\u0438\\u0435 \\u0444\\u043e\\u0440\\u043c\\u044b. \\u0422\\u0430\\u043a\\u043e\\u0439 \\u0432\\u043d\\u0435\\u0448\\u043d\\u0438\\u0439 \\u0432\\u0438\\u0434 \\u0430\\u0432\\u0442\\u043e\\u043c\\u043e\\u0431\\u0438\\u043b\\u044c \\u043f\\u043e\\u043b\\u0443\\u0447\\u0438\\u043b \\u0431\\u043b\\u0430\\u0433\\u043e\\u0434\\u0430\\u0440\\u044f \\u0441\\u043b\\u0438\\u044f\\u043d\\u0438\\u044e \\u0424\\u0438\\u0430\\u0442\\u0430 \\u0438 \\u0430\\u043c\\u0435\\u0440\\u0438\\u043a\\u0430\\u043d\\u0441\\u043a\\u043e\\u0433\\u043e \\u041a\\u0440\\u0430\\u0439\\u0441\\u043b\\u0435\\u0440\\u0430. \\u041d\\u0430 \\u043f\\u0435\\u0440\\u0435\\u0434\\u043d\\u0435\\u0439 \\u0447\\u0430\\u0441\\u0442\\u0438 \\u0430\\u0432\\u0442\\u043e\\u043c\\u043e\\u0431\\u0438\\u043b\\u044f \\u043c\\u043e\\u0436\\u043d\\u043e \\u0437\\u0430\\u043c\\u0435\\u0442\\u0438\\u0442\\u044c \\u0434\\u043e\\u0432\\u043e\\u043b\\u044c\\u043d\\u043e \\u0431\\u043e\\u043b\\u044c\\u0448\\u0438\\u0435 \\u0438 \\u0448\\u0438\\u0440\\u043e\\u043a\\u0438\\u0435 \\u043f\\u043e \\u0444\\u043e\\u0440\\u043c\\u0435 \\u0444\\u0430\\u0440\\u044b, \\u0430 \\u0442\\u0430\\u043a\\u0436\\u0435 \\u043e\\u0441\\u0442\\u0430\\u044e\\u0442\\u0441\\u044f \\u0437\\u0430\\u043c\\u0435\\u0447\\u0435\\u043d\\u043d\\u044b\\u043c\\u0438 \\u0440\\u0435\\u0448\\u0451\\u0442\\u043a\\u0430 \\u0440\\u0430\\u0434\\u0438\\u0430\\u0442\\u043e\\u0440\\u0430 \\u0441 \\u043b\\u043e\\u0433\\u043e\\u0442\\u0438\\u043f\\u043e\\u043c \\u0430\\u0432\\u0442\\u043e\\u043c\\u043e\\u0431\\u0438\\u043b\\u044f \\u0438 \\u043f\\u0440\\u044f\\u043c\\u044b\\u0435 \\u043a\\u0440\\u0430\\u044f \\u0431\\u0430\\u043c\\u043f\\u0435\\u0440\\u0430. \\u0417\\u0430\\u0434\\u043d\\u044f\\u044f \\u0447\\u0430\\u0441\\u0442\\u044c \\u0430\\u0432\\u0442\\u043e\\u043c\\u043e\\u0431\\u0438\\u043b\\u044f \\u043e\\u0442\\u043c\\u0435\\u0447\\u0430\\u0435\\u0442\\u0441\\u044f \\u043e\\u0441\\u0442\\u0440\\u044b\\u043c\\u0438 \\u043a\\u0440\\u0430\\u044f\\u043c\\u0438 \\u0432\\u044b\\u043f\\u0443\\u043a\\u043b\\u044b\\u0445 \\u0444\\u043e\\u043d\\u0430\\u0440\\u0435\\u0439 \\u0438 \\u0440\\u0430\\u0441\\u043f\\u043e\\u043b\\u043e\\u0436\\u0435\\u043d\\u043d\\u044b\\u043c \\u0432 \\u043d\\u0438\\u0436\\u043d\\u0435\\u0439 \\u0435\\u0433\\u043e \\u0447\\u0430\\u0441\\u0442\\u0438 \\u043e\\u0431\\u043d\\u043e\\u0432\\u043b\\u0451\\u043d\\u043d\\u044b\\u043c \\u0431\\u0430\\u043c\\u043f\\u0435\\u0440\\u043e\\u043c.\",\"label\":\"Message\"},\"phone\":{\"value\":\"82583834865\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"178.168.220.14\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 03:45:45'),(1539,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Randall\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Rose\",\"label\":\"Last name\"},\"email\":{\"value\":\"highranks4ursite@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello there,\\r\\n\\r\\nI am a social media marketer that helps companies to generate more sales using facebook and other social media platforms. I have been at this for a long time, so I know the tricks of the trade and can generally help any company to increase sales. I provide great service, but my prices are still affordable. \\r\\n\\r\\nI\'m reaching out because I want to see if you\'re interested in boosting your sales via marketing on facebook and other platforms. Please let me know if you\'re interested and I can give you some information about what I do, how I do it, and what it costs. \\r\\n\\r\\nI would love the opportunity to work with you, so please let me know if you\'re interested. \\r\\n \\n\\nRandall Rose\",\"label\":\"Message\"},\"phone\":{\"value\":\"(709) 909-3181\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"104.168.4.201\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 04:28:03'),(1540,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kschaefer-essen@t-online.de\",\"label\":\"Email\"},\"firstname\":{\"value\":\"HenryNob\",\"label\":\"First name\"},\"phone\":{\"value\":\"84672157457\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Dating for sex | Canada >>>>>>>>>>>>>> https:\\/\\/www.google.com\\/url?q=https%3A%2F%2Fvk.cc%2Fcait9s&sa=D&84=40&usg=AFQjCNH4Qw-N-tNSrY9tJ2beK_ngj3CQvg <<<<<<<<<<<<<\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"191.101.31.24\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 05:05:59'),(1541,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"q0fuxhb3@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Dycle\",\"label\":\"First name\"},\"phone\":{\"value\":\"83179842399\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hi, this is Irina. I am sending you my intimate photos as I promised. https:\\/\\/tinyurl.com\\/yaannonl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.173\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 08:15:12'),(1542,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"varunpatel1991@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yclfjlmo\",\"label\":\"First name\"},\"phone\":{\"value\":\"85715439866\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5TOVflc R8BZ HXElkzf zziuAPc uzWq JMqK3tM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 18:08:00'),(1543,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shahnoz77.76@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9axw7hr\",\"label\":\"First name\"},\"phone\":{\"value\":\"87232947552\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gJTHeuP uaor 1nUKlAa arvStei BrvV ufRSsek\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 18:18:07'),(1544,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"valeriya1998@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9ppswql\",\"label\":\"First name\"},\"phone\":{\"value\":\"85614812282\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PB2SKIA lGaV 9n2zF7d eH354iH 0jo1 FmAWsH9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 18:27:58'),(1545,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natali3305@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y96zu8yu\",\"label\":\"First name\"},\"phone\":{\"value\":\"81192667139\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"51iKsEB 6BST MhDurus oLnR08t 5hXQ fj5lruS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 18:37:15'),(1546,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"morgan.walker18@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9fffd3w\",\"label\":\"First name\"},\"phone\":{\"value\":\"85672492851\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"u18R06Y ovTq kWZMhgg fTbf03b hHrv lBNZRqU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 18:46:40'),(1547,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"chacalrsp@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ybmwmay4\",\"label\":\"First name\"},\"phone\":{\"value\":\"83789169397\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tkP39pj Wkc3 kUwMrrp 1VOpOmE eqkM O6Wuc3B\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 18:56:03'),(1548,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jujena3@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yckxl6gr\",\"label\":\"First name\"},\"phone\":{\"value\":\"81371442921\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IAFZt1g Ganz McOwiyy fIazN7F y6MV OzITT06\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 19:04:30'),(1549,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sy951164@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yas5tbtm\",\"label\":\"First name\"},\"phone\":{\"value\":\"85285219541\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lyHAp3X 6OCn EmbXqmH R1QeejF XKrP exWBfpI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 19:05:21'),(1550,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"amaleew@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y98h8djs\",\"label\":\"First name\"},\"phone\":{\"value\":\"84891968115\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nR880Zd ykht Opmky1c iBLixiE IxM5 JDRQZzj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 19:11:09'),(1551,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ellaisiva.c@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybfkha3q\",\"label\":\"First name\"},\"phone\":{\"value\":\"83362797193\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LhvBGkC ggjl ewruU2K KSd16Y8 vMPr TYsikIK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 19:14:28'),(1552,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lapovenko@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybcxrjzf\",\"label\":\"First name\"},\"phone\":{\"value\":\"86795673856\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"a3LADzI UR9Y g1Mu2AD 02Xt2hS ntqO thcyNmn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 19:17:51'),(1553,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"accggi@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybal25g5\",\"label\":\"First name\"},\"phone\":{\"value\":\"82974399167\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oDO90NV jtQZ wnHFYPH MQ3JXVD GrCA SJtCQ9c\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 19:23:34'),(1554,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"godfather1388@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yd9x3ta6\",\"label\":\"First name\"},\"phone\":{\"value\":\"84461659835\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CI4vLQi 4LMu 5EbX5nD wVgglUR 6IgU qRQeEbb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 19:24:41'),(1555,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"monisha5.tuga@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8qh3kvt\",\"label\":\"First name\"},\"phone\":{\"value\":\"83195188324\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7zVgpjh VyPA 3BaEbwh ZrmSnR4 EGWM YqGnWD4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 19:31:08'),(1556,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mukulranjan96@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycpzsu9c\",\"label\":\"First name\"},\"phone\":{\"value\":\"85773655238\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SZzIRXG wbPJ sjXKkyA UiJR6mt 0C2g iTwPco3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 19:32:48'),(1557,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alonell@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybe5zrut\",\"label\":\"First name\"},\"phone\":{\"value\":\"81372926746\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lCisHuV FITN Viro3Ey iRXmUNr IYR2 glp5Alp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 19:37:44'),(1558,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"erogozinskaya@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9mf7tnt\",\"label\":\"First name\"},\"phone\":{\"value\":\"87593281398\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NsaO1wh WFYJ 3Teg84p QmP4DHa 5B3A TQU1rDc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 19:42:03'),(1559,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"warbringer2@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya9z5mrb\",\"label\":\"First name\"},\"phone\":{\"value\":\"88889459364\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"f5B6YX6 P3aV Rd9IQqX L80imHg tHBf 2hFS9TG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 19:44:17'),(1560,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rohitdeshmukh187@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y89mrogs\",\"label\":\"First name\"},\"phone\":{\"value\":\"83517462234\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KEciotP HVKy lUQ91tp ObETLNx nTtt aI7dPMi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 19:50:48'),(1561,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kattysky@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya25bbn8\",\"label\":\"First name\"},\"phone\":{\"value\":\"89377257672\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nIjgEdA Lm8O 9YqQbne 9uoUVZS rZ6q qRLKXY0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 19:51:19'),(1562,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sashka_mzk@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9jwmm3r\",\"label\":\"First name\"},\"phone\":{\"value\":\"83371936835\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kVLLoSt kYIW 07dkTZG JDa4yua eJFO HUcR0tz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 19:57:17'),(1563,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"k.yackushckina@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybjjcma9\",\"label\":\"First name\"},\"phone\":{\"value\":\"81252633734\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZZXJxt4 tBbI nZ3FjRf zPsWL2A G4nU vtr0yu0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 20:00:53'),(1564,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zyq410@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y7vskp3k\",\"label\":\"First name\"},\"phone\":{\"value\":\"83676679784\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tmD8CCx emtQ oZpmI3p NVxOUsc Znvh UkP82t7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 20:03:50'),(1565,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"graspingtalon@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7eqk3dj\",\"label\":\"First name\"},\"phone\":{\"value\":\"82591751398\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fuZa2Wp Ajn2 zEhtkaG JrO2ZM7 4Vvv pTPcT7X\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 20:10:09'),(1566,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bvrao.vr@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yb7krc9g\",\"label\":\"First name\"},\"phone\":{\"value\":\"83223344545\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QA90gXX FEab OGvinZt NIv8POS cnTu dFxUuBQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 20:10:15'),(1567,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"depeshmode1996@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8fs6nrr\",\"label\":\"First name\"},\"phone\":{\"value\":\"89371261251\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"doyPnwM JkCI RmIW5FC 0OqRDlB pHXO traRlMp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 20:16:52'),(1568,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ivan.marsianen@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yassswpf\",\"label\":\"First name\"},\"phone\":{\"value\":\"87666737133\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"55pYU2o 07ot K9kPcsE J3548DW SOvO Cuekm12\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 20:19:18'),(1569,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marinakarpova2833@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7qm36eo\",\"label\":\"First name\"},\"phone\":{\"value\":\"84468313161\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tlWYqEV Szxk Hkv2mfQ y0iIITU mH8V ULhVnv9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 20:23:46'),(1570,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mzabytova@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8lwtbwy\",\"label\":\"First name\"},\"phone\":{\"value\":\"89253699327\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LWC7Jpc lsyf 7KCTSVw zN7qfLp WNQ6 8kTJy7n\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 20:28:27'),(1571,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"demenevkonstantin@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydcaacve\",\"label\":\"First name\"},\"phone\":{\"value\":\"86219778643\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2OcXN2C Kx07 TYvIm5t PoISR5E Fcm1 Qr0axvk\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 20:30:17'),(1572,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sh1708ua@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8qh3kvt\",\"label\":\"First name\"},\"phone\":{\"value\":\"85213766666\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tEuST4n akKh 0PxXEF2 9fvqrsF putg mbrRA1k\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 20:36:42'),(1573,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sam_smith14@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9lp88s3\",\"label\":\"First name\"},\"phone\":{\"value\":\"83986594786\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"n6lAZQX NEFU 5VvMCzQ TpVVnVo NsXl SZUiJJE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 20:37:39'),(1574,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"viktoria.kalnitzkaya@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7d77orh\",\"label\":\"First name\"},\"phone\":{\"value\":\"86666567158\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Bt2YUPF dQw0 mn0Zinf xUcWD2A dw7m mCZTPrm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 20:43:13'),(1575,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gulsadjumamuradova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9h9jgvy\",\"label\":\"First name\"},\"phone\":{\"value\":\"88415781188\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"P8ouZ2m ESh4 PfUbQdl Q5NP5Ni BlHc yY829nl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 20:46:49'),(1576,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"panafidin116@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7egmayw\",\"label\":\"First name\"},\"phone\":{\"value\":\"86762722837\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tTazEWh hDJj TjLrcjh fexNb4X HLGI zvh4jwZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 20:49:39'),(1577,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"9180624260n@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybblf38y\",\"label\":\"First name\"},\"phone\":{\"value\":\"87515835689\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Fx3NXfi bwjb jPk2af9 ZPWb9xT pPhk Le2HbTl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 20:56:01'),(1578,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"eo.antonova@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7mvd8rq\",\"label\":\"First name\"},\"phone\":{\"value\":\"85177129615\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7frWjEt cCHB zq0IEM4 nVOTUBz nGrV OH921AN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 20:56:01'),(1579,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rijithvkl@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yakfucon\",\"label\":\"First name\"},\"phone\":{\"value\":\"82971448522\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OIENzRJ 0QQa bZiAnlg HlE4Og5 p8kU DiG6DSJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 21:02:28'),(1580,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zementii1981@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yd4qvba7\",\"label\":\"First name\"},\"phone\":{\"value\":\"81898382773\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LIe8Lkv Z0Lw fEXsSgO bRTqSJQ tGQZ yhzOZP4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 21:05:27'),(1581,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"richard.p.oliver@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycsaoe77\",\"label\":\"First name\"},\"phone\":{\"value\":\"85187956858\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6nzJGsc BKBC t2SdRMa hmiA2of 99Df Bvsm96V\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 21:08:58'),(1582,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hisbad2003@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y89nup25\",\"label\":\"First name\"},\"phone\":{\"value\":\"88719418966\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RZNCQmB B63P prCQtOd RbfYunZ TK49 DXBkyUi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 21:14:45'),(1583,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pro100art@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycpx3b4f\",\"label\":\"First name\"},\"phone\":{\"value\":\"88817933921\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9SpnJPY F4BR RihJxnO 63GJUkJ 0QYV eesgXpT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 21:15:26'),(1584,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nataliaahmedieva0987@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7hjbq7f\",\"label\":\"First name\"},\"phone\":{\"value\":\"85551421426\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qaXSGLu UbCx AXx0BBM WxfbSso wAd0 ScD2xAU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 21:22:19'),(1585,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"annholmes@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7k5eobl\",\"label\":\"First name\"},\"phone\":{\"value\":\"82521574743\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BZ17DZg YkZh 7AFJSym lj437DN vTDh Irjc9Lx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 21:24:13'),(1586,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"suwan.pp0505@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7qd8dle\",\"label\":\"First name\"},\"phone\":{\"value\":\"81393562427\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FZdtT9k 5GGU 4FNMF9w o5lQVcj cFrZ 153kGFV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 21:28:41'),(1587,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sorokoumovy@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9sedktl\",\"label\":\"First name\"},\"phone\":{\"value\":\"84131629961\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6gEXhKk hDl5 N7ivSW7 lWeHe1S 87AP RTVhLwp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 21:33:18'),(1588,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vasilev.sany.vasilev@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yaqz68x2\",\"label\":\"First name\"},\"phone\":{\"value\":\"83311723526\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JxcKVit AKlp KjbxgsF BDqFGFN Rc8E MNlL3Te\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 21:35:06'),(1589,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"suvvarirajasekhar806@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybopnd9t\",\"label\":\"First name\"},\"phone\":{\"value\":\"82713142713\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tLfrxtd 6DU6 ELdc7nL KdReUdW XbQv xgryQHy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 21:41:28'),(1590,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"james.pokar@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yc2dyqb5\",\"label\":\"First name\"},\"phone\":{\"value\":\"89527438817\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2QA23sQ bw1o EdAgLwb Arx17CP yJE7 z4jScvY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 21:42:47'),(1591,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"s.rigenkova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y87jsrtg\",\"label\":\"First name\"},\"phone\":{\"value\":\"83669473135\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qbnxNP3 Y58T g9JpOZ2 ulZq3P7 4Ib4 tMEiMsh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 21:47:54'),(1592,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dariasisoeva1990@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydhte9kx\",\"label\":\"First name\"},\"phone\":{\"value\":\"89159175384\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TPviea4 qUYU xzw1lvq wnKaQLL 2Ocf GU4T3j8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 21:51:55'),(1593,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oleg20160@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y89555u8\",\"label\":\"First name\"},\"phone\":{\"value\":\"88368386367\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kYEARAi fmsO Bm0BzrE DbVdozX gAkC qDPtUjE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 21:54:19'),(1594,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"imtiyazgpathan@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybsc695v\",\"label\":\"First name\"},\"phone\":{\"value\":\"81131728777\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cYxqxtO tAdS 3BWZnq6 M6s74kW tXur Y3l8uzH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 22:00:39'),(1595,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"titovalarisaaa@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycsbreph\",\"label\":\"First name\"},\"phone\":{\"value\":\"83757419299\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AKZufOu OE06 APXR3FB 4ERmXxs W1hi xEsIUxN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 22:01:08'),(1596,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sgphotogenic@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9zjndc8\",\"label\":\"First name\"},\"phone\":{\"value\":\"83528249174\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vmWUdQm Nqde xSiJVTz kVHt3FJ Xd0l 8YmCYFf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 22:07:09'),(1597,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yosikatz@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y7l55atp\",\"label\":\"First name\"},\"phone\":{\"value\":\"85956154294\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"b834YXF HhCr vopvXmA nNDJckj XyI9 RQu8atf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 22:10:29'),(1598,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"polukarova_yu@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9ufdb2m\",\"label\":\"First name\"},\"phone\":{\"value\":\"81433431924\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9n8obV4 9ARn WKSIB71 fqbZCU9 vHHZ DIWk4nY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 22:13:36'),(1599,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dayanc.caryyew46@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7dw6j4l\",\"label\":\"First name\"},\"phone\":{\"value\":\"86242615351\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SMkJdLI F9mL wUe6GXH Vqz22Rx ZDVQ 2JbW8X4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 22:19:46'),(1600,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alenka.kiseleva93@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7aaogr8\",\"label\":\"First name\"},\"phone\":{\"value\":\"87241979849\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"H93YVC5 9RU1 SfI2ins giGQBIM 5Goz LcfBBDB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 22:20:00'),(1601,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"thomas143143143@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yd4u9752\",\"label\":\"First name\"},\"phone\":{\"value\":\"84488518374\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JD8qRsH XXDf IFHF4N9 49y98fg SIU2 tSgMZ9l\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 22:26:47'),(1602,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"konradkerhet@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ya22mr25\",\"label\":\"First name\"},\"phone\":{\"value\":\"86623821812\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3DWz6WU O5pL bYreTb9 XB7FkZ7 1oy1 F1t5gBG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 22:29:01'),(1603,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vorobei6332@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7j9v6hd\",\"label\":\"First name\"},\"phone\":{\"value\":\"89996898341\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vStYKeO C8vi 9LvHhV9 hCNMqzu 5lnC EAO5kPl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 22:33:13'),(1604,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sanchaichinchi@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y95r58e2\",\"label\":\"First name\"},\"phone\":{\"value\":\"87565925342\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"L760S7B xX8z ZPPS2pO xuYaPNR umh6 sJE3v1S\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 22:38:25'),(1605,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ludmilla156@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yauxmqug\",\"label\":\"First name\"},\"phone\":{\"value\":\"89652845852\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"j5GQn05 aN0D lCXQ2eJ e3yfBl5 hClo uHxYt9y\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 22:39:37'),(1606,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zhanar2028@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y93r2l7y\",\"label\":\"First name\"},\"phone\":{\"value\":\"85827396484\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eUt95Ku Nm6y CQbvmCU Bb90hPY XOlS NYFmIHJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 22:46:06'),(1607,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"daveteeva@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8rarry2\",\"label\":\"First name\"},\"phone\":{\"value\":\"84128823436\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RrZPi7D 2DaN VDjcOt4 gIIFtmV 7GVG xF23SLV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 22:47:37'),(1608,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bungfawelltradan@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9oauhko\",\"label\":\"First name\"},\"phone\":{\"value\":\"89936227148\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3k2G4Hr y2pO BtVHM4E cCa5Qxk Syoy 7JfNNcQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 22:52:30'),(1609,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"livestaffinghub@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Marty Tierney\",\"label\":\"First name\"},\"phone\":{\"value\":\"83667566862\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hello \\r\\n \\r\\nHello, My name is Marty and I\\u2019m a video marketing expert. My main objective here, is to help increase revenue for you by producing a High Quality 2D Animated Video to generate leads and sales for your business 24\\/7, for just $199. \\r\\n \\r\\nThe offer is only good for this week, so get your video before the deadline. \\r\\n \\r\\nWatch Our Video Now! https:\\/\\/bit.ly\\/199VideoOffer \\r\\n \\r\\nImagine, for 1 Low Affordable rate you get A CUSTOM VIDEO that will bring home the bacon for the New Year! \\r\\n \\r\\nI know this is an amazing deal, so Don\\u2019t Miss Out! \\r\\n \\r\\nI\\u2019m in, show me THE DETAILS! https:\\/\\/bit.ly\\/199VideoOffer \\r\\n \\r\\nBest, \\r\\n \\r\\nMarty Tierney \\r\\nDigital Expert & Video Producer\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"195.246.120.162\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 22:54:38'),(1610,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marilynl2387@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9tns643\",\"label\":\"First name\"},\"phone\":{\"value\":\"85734179621\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5L8TgZ4 AIyT BAFAguK GuWBL4t yOFi 4LznM2N\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 22:57:05'),(1611,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aa.teplyakov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7gyvl2o\",\"label\":\"First name\"},\"phone\":{\"value\":\"86248766834\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"13bE27C Y9zz TlbDOZV F8ieil0 1DIi hndUCix\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 22:58:51'),(1612,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rounak200@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybfwmvov\",\"label\":\"First name\"},\"phone\":{\"value\":\"89225631563\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IJmJoI3 6tDk A9QV9Zs IMv7Jhs mcrc nvNiIVi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 23:05:14'),(1613,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"farm.mfster@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9uq7aaa\",\"label\":\"First name\"},\"phone\":{\"value\":\"86629797459\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"e8AOiYT 0Dfp DuR18qS c6UnMVk yn4N q9r0d7h\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 23:06:24'),(1614,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bigobmf_11@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8urxo58\",\"label\":\"First name\"},\"phone\":{\"value\":\"88113273452\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"q9MfldN b1PP 9Ivqg4C djUZ0rM 8LA2 J7hap1m\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 23:11:40'),(1615,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sanjibchetr@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya5sbv3e\",\"label\":\"First name\"},\"phone\":{\"value\":\"82974198817\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lLUVBYw 11kw BxK6uVE mdrnPHd 4IWQ 079HzlB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 23:15:33'),(1616,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"x120ht.dem@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybjj5rlx\",\"label\":\"First name\"},\"phone\":{\"value\":\"84265355839\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WAMUH5c kbHk gIqWTG9 70hmgZ3 r4Y9 w83kLdx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 23:18:03'),(1617,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dcothron65@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7lmlyr3\",\"label\":\"First name\"},\"phone\":{\"value\":\"81758263942\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZtXtS5j FWci KOgaIyu TxyyiaH VNvt QmYP9SA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 23:24:43'),(1618,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"akuzmic634@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9zlmjqj\",\"label\":\"First name\"},\"phone\":{\"value\":\"89733325718\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Nl8P2Tu j23r X4wSeMw OvX9oKr pQUN N6evX2U\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 23:24:44'),(1619,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ppooja081996@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8njo72j\",\"label\":\"First name\"},\"phone\":{\"value\":\"85255767556\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0dKr21q csIy w9aTfNG sF5uCbE iswb GOmE4hU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 23:31:09'),(1620,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mdipierno@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycf6mvrl\",\"label\":\"First name\"},\"phone\":{\"value\":\"86526356385\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PrWk0iJ 47Xj JxutauT JpjaUu1 bGRZ TH3mEoK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 23:33:58'),(1621,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"evgenii.rogozhnikov12345@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya56yled\",\"label\":\"First name\"},\"phone\":{\"value\":\"84674682586\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1x0CU6p HrCg XoiOPHT dgQo4Oj 4n3S ojruioE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 23:37:31'),(1622,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"niko8407@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ybx2mvt7\",\"label\":\"First name\"},\"phone\":{\"value\":\"81935128527\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CWXyzw2 xDrO 2K6GINL AyAVS6I kJwx KYp1pOQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 23:43:11'),(1623,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"antonluneev@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9mxt6w4\",\"label\":\"First name\"},\"phone\":{\"value\":\"89992669593\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uFdJevF rKrv uzIHHSR TWrDW88 zljD YDjEWV8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 23:43:54'),(1624,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"steindelchris@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8fs6nrr\",\"label\":\"First name\"},\"phone\":{\"value\":\"86915559794\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WhY4i9v Gajq fanEWDP p5yB2mn 6Ige 5zQe2g7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 23:50:15'),(1625,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yakov.glaz@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y83ypdxk\",\"label\":\"First name\"},\"phone\":{\"value\":\"87656642468\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UffQ5GY 4IRH LR1c6pl uEnGaI2 6m5o Mt5jIBo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 23:52:32'),(1626,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"white.michael61@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9dgnz7g\",\"label\":\"First name\"},\"phone\":{\"value\":\"88172394654\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zSeea11 e0bV IMHbeyR voFR2xW 8HQc CIMFByF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-20 23:56:38'),(1627,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"slivkova985@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9joynwq\",\"label\":\"First name\"},\"phone\":{\"value\":\"89671118961\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"61ojcbQ 56AX ufOAD4Y MHnoElA YPov DCo9IqL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 00:02:15'),(1628,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alekhasi26@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yckxl6gr\",\"label\":\"First name\"},\"phone\":{\"value\":\"89353662955\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lZDZ5Kg vH74 XcEj9qM rKVIRqS ff7v XPswY3b\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 00:03:06'),(1629,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mohdaki00786@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yddqrc74\",\"label\":\"First name\"},\"phone\":{\"value\":\"87147459973\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yFhypYp CX67 4ZXpFFo wFxkdZL X2iR F14yvq2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 00:09:38'),(1630,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"v.v.kosaya@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8se343a\",\"label\":\"First name\"},\"phone\":{\"value\":\"88193185732\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"a0y8XN5 fIzK ps0dU3z 6E7qYzI FBBU duB1KTU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 00:11:34'),(1631,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ottoman877@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybnqswkq\",\"label\":\"First name\"},\"phone\":{\"value\":\"84468884544\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZFlWGry Euw6 X4R5L4w XitUSm0 NCSM HENu2Dk\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 00:16:09'),(1632,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"igr.eleckiy26@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y6uwb6vz\",\"label\":\"First name\"},\"phone\":{\"value\":\"83245928341\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2zZhIuV NJnz n5WJMHT rfjGEO0 pIes 7It7Tc5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 00:20:51'),(1633,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"j.rodriguez.pastor@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yctl25an\",\"label\":\"First name\"},\"phone\":{\"value\":\"81414433316\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"o81aLV1 FMIs pq5HkZc MJZitLG sTdu cN6CKmf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 00:23:02'),(1634,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anuragthakursonu@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yal5uxkg\",\"label\":\"First name\"},\"phone\":{\"value\":\"89317613575\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VRkh0Xy wGL3 Z6lv3Hw JDccOX5 qDRP Gkg1aQR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 00:29:36'),(1635,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lapulya489@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y72ft4ol\",\"label\":\"First name\"},\"phone\":{\"value\":\"89614498498\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0EGb98f WJOj qZEjhFQ VmPu09z uLA1 Rdk6gax\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 00:30:02'),(1636,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"annu23@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yay82f3v\",\"label\":\"First name\"},\"phone\":{\"value\":\"84853533886\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ps9MZvp fL60 kAJ96py tZzCMa4 TnQG ymwbERI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 00:36:09'),(1637,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anastasia.ustus@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycveguvx\",\"label\":\"First name\"},\"phone\":{\"value\":\"87311647551\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"57Jp6M8 RTJa Bxhb6Ed 2U2Iyqh 44IL glnqEJf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 00:39:14'),(1638,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"q_s074@ro.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycy55p6g\",\"label\":\"First name\"},\"phone\":{\"value\":\"83869819491\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"67KWHhc kaFS HeZFZ2c TNxj8gg O63w vqSUtxK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 00:42:41'),(1639,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oksilat95@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8zn4epa\",\"label\":\"First name\"},\"phone\":{\"value\":\"88548123752\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zQttQWF 6Cxb 0z5sikf i0WvMjY a2gG 9t8GtO2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 00:48:28'),(1640,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pincuksvsa@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9xvu5ha\",\"label\":\"First name\"},\"phone\":{\"value\":\"81839349341\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ni0KB6w iqin WbR0a4n jH77I7R n9SO ncnXFjH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 00:49:05'),(1641,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alimovbaxa@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycpx3b4f\",\"label\":\"First name\"},\"phone\":{\"value\":\"86188116552\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZT5jmIW yByS ws2o6Js mDoKKL6 G6C2 C4Hvvbg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 00:55:35'),(1642,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gru1907@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8krsn4o\",\"label\":\"First name\"},\"phone\":{\"value\":\"89663743335\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"isOMFLe kOfc Q2zrckD n7RWULT yjVq bplhk5y\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 00:57:46'),(1643,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lucianogrygonis@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8ny5fjv\",\"label\":\"First name\"},\"phone\":{\"value\":\"86687316786\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tPh1w03 zSIM oZs07H4 er0WRyh 4BhR lInnq9t\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 01:02:04'),(1644,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"c1980h@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8kcrm67\",\"label\":\"First name\"},\"phone\":{\"value\":\"87477532255\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xnyEAMo fQgv KcUrjLU lAHGRAk OcBq dzDRKYT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 01:07:05'),(1645,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aaryanch002@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybcmvyz7\",\"label\":\"First name\"},\"phone\":{\"value\":\"85767691884\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EsCS9dK 5b7H N9yqMHM oCAzF9W wJ51 wiSDg8n\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 01:08:36'),(1646,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dazevich@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ya7v4xyh\",\"label\":\"First name\"},\"phone\":{\"value\":\"86675296557\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rpy2Dfv mwMj ugKjZCi KHZpaBm PtOr z4AldwX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 01:15:14'),(1647,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tania24081951@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yaajsfqq\",\"label\":\"First name\"},\"phone\":{\"value\":\"85319947849\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qRZVCHF uqyk zUNLz8j rBatKSu AA30 RXPzq2b\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 01:16:20'),(1648,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"uighur.et@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb5czdcv\",\"label\":\"First name\"},\"phone\":{\"value\":\"88224243818\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RY16QxF USOM ehLUfw7 FMZEj6P igV7 C4dJUds\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 01:22:16'),(1649,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marinaana767@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y863zna2\",\"label\":\"First name\"},\"phone\":{\"value\":\"85227626436\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Q9pQgZn U2Ul jbJy5Rg ynCZzhq mWrN v5HJkOe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 01:25:37'),(1650,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kristinapalnueva9@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yclfcrxf\",\"label\":\"First name\"},\"phone\":{\"value\":\"89214344529\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rzMcEQt i2pE dm2m8ex mUUFo3p 8k40 ASL7rM6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 01:28:49'),(1651,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vadym907@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y6twkkde\",\"label\":\"First name\"},\"phone\":{\"value\":\"83111719115\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6UiBXc5 DlU5 Dpj9M3A eQNZcYu hTdo j1nM6y0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 01:34:48'),(1652,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yilmazmavilioglu@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yckxl6gr\",\"label\":\"First name\"},\"phone\":{\"value\":\"85593861156\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3lC2Uni Dii6 Ch0vAYv W89Cqcx B21o UzK3SxY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 01:35:27'),(1653,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vijaykumartadepalli@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yc9mbdv4\",\"label\":\"First name\"},\"phone\":{\"value\":\"89814178819\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GphJFmG Gj7U ohJY5Py cOGROLD 9S4u XUcmlKh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 01:42:03'),(1654,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"musa38170@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybd49o9w\",\"label\":\"First name\"},\"phone\":{\"value\":\"88934225156\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fFvcNJL Pev3 FsvSSFl cBs8q7U Ere8 v1Duew6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 01:43:55'),(1655,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"markelovsu@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycxn4o7w\",\"label\":\"First name\"},\"phone\":{\"value\":\"86378977414\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"STGOIDa B4Uc EQzbN0e 3K5pBny ftjw GZSHCjm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 01:48:39'),(1656,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"macuevamarina41@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y99ljo7d\",\"label\":\"First name\"},\"phone\":{\"value\":\"85937587481\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Edk3n7q loKV eew02S4 xPPM77C XWTw NaB19vF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 01:53:15'),(1657,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"quima.moreno.barragan@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybr2onvg\",\"label\":\"First name\"},\"phone\":{\"value\":\"83442351343\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Wn1mhgV UsbJ K7n3IMK EobgPiO vyPb r05jUed\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 01:55:14'),(1658,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dgorshckowa@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yak5a86b\",\"label\":\"First name\"},\"phone\":{\"value\":\"89665819642\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7YmU1Ua gpJ1 LmnxOKS l0q6qYx zx1n 56SlFXJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 02:01:44'),(1659,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ikesswany@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yajoc7q4\",\"label\":\"First name\"},\"phone\":{\"value\":\"85797962957\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"al0Y0Yl DkIF 8GDj9yA pZAWTo6 MlBK dnZVJtH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 02:02:37'),(1660,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vip196920012005@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya7v4xyh\",\"label\":\"First name\"},\"phone\":{\"value\":\"88149829215\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"quQLwV6 NcKz P5Fw6RY xXcWbC1 dvac QLk4IOo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 02:08:24'),(1661,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ermaksvoi@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y87abnte\",\"label\":\"First name\"},\"phone\":{\"value\":\"83195272871\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bmiMwEg talj 9Rb9mzk wuBdLBX GArt sv4N54B\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 02:11:54'),(1662,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"raykaur93@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y748u8xd\",\"label\":\"First name\"},\"phone\":{\"value\":\"84515264654\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rykmpj2 A9EC ztUZrax 9W2mQvu wywW wpKMyKI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 02:15:02'),(1663,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mikeandsusan@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7asku34\",\"label\":\"First name\"},\"phone\":{\"value\":\"89394714443\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TnSOhKq 6rqF aVmCVrp mb0pyzC ddiU V6pyyCF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 02:21:13'),(1664,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"roma55593@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7npjvef\",\"label\":\"First name\"},\"phone\":{\"value\":\"86226932262\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2E0PkLe I4iR bli5DQ5 gcby22f 2wnq uDZJLzu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 02:21:52'),(1665,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kristyfromjaxtn@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9ofbext\",\"label\":\"First name\"},\"phone\":{\"value\":\"89418761653\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SnyQ15a UPPO qimtEzT 2qZHKSu IgfM RGkWhm8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 02:28:34'); INSERT INTO `wp_vxcf_hubspot_log` VALUES (1666,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"wowan2319978910@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydz3gnl8\",\"label\":\"First name\"},\"phone\":{\"value\":\"85354682187\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3NUJ7Ae xgio oGRDxkY m7RJMWA UfaV RYZm94h\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 02:30:28'),(1667,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yay4me2@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7qm36eo\",\"label\":\"First name\"},\"phone\":{\"value\":\"82247529111\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"d9rCrBf 56lF ZHNxBIG JwDxrr3 c26U cgi064R\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 02:35:12'),(1668,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lazieday2003@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7nsfaor\",\"label\":\"First name\"},\"phone\":{\"value\":\"88235653346\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oUfJkZL enpm lI8gW1W TQ7EkDU Wnfd Z0RGtEC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 02:39:41'),(1669,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lora2403@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yaub9vfs\",\"label\":\"First name\"},\"phone\":{\"value\":\"85548499981\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JO3obcg hmHc Vt17Jxc zRm9TSi lIam HvvU5sR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 02:41:45'),(1670,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"speedup72@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9thf39k\",\"label\":\"First name\"},\"phone\":{\"value\":\"83511693688\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"G4J6ASi xtcB w5JjH1z IbH6zgU wpjH y8KsgvU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 02:48:27'),(1671,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"serezhakasapchuk@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybtk2aak\",\"label\":\"First name\"},\"phone\":{\"value\":\"86376362845\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zWcPsuI f4Gc FiW4KX8 n4bGSk0 c3Bk qK37LRL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 02:48:48'),(1672,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"emelyanovamedvedeva@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd3krluk\",\"label\":\"First name\"},\"phone\":{\"value\":\"88987654498\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"goXqw3a 3qLf xfFGFc6 o6XTpau ITtF HsImjdP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 02:55:04'),(1673,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"samsampyo@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y85ucf4s\",\"label\":\"First name\"},\"phone\":{\"value\":\"85298569753\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8eOVmJX 3iBj ncQimrW XVr5wOE TIk7 Tl7eUKT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 02:56:12'),(1674,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marcos_de_troya@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yaxufazj\",\"label\":\"First name\"},\"phone\":{\"value\":\"89498752188\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"e0T6xqS XYrM RLhtaHj oTyj7u7 tKGO hhffpth\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 03:01:41'),(1675,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"qeybullayevaynur3@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9eeskmr\",\"label\":\"First name\"},\"phone\":{\"value\":\"84936184439\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zBSz02a 8XAQ z37BF7x gZugpSE KVkL yMkj9Go\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 03:03:43'),(1676,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"m_munroex3@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydaub46s\",\"label\":\"First name\"},\"phone\":{\"value\":\"85865816499\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rWtOLlw hZLG 02LTzSD d9dkUZU CAlp dy9ztdS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 03:08:23'),(1677,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nicolas.arg10@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yc3h699e\",\"label\":\"First name\"},\"phone\":{\"value\":\"89613615939\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tDbzcvK AZFS 6Ass0pA KkcwBEK K2hc AcPV7w8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 03:11:14'),(1678,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"akjolbekov113@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yddqrc74\",\"label\":\"First name\"},\"phone\":{\"value\":\"81847426474\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7vk0SCc uLpN iqVIBjd eXtIiMh qj6F 31AMMOT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 03:14:59'),(1679,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kuks823@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y7bt7mh9\",\"label\":\"First name\"},\"phone\":{\"value\":\"83747274183\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uXYPmbB m4hb dhdSpIc djsPcEa TZCh bOnNIsT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 03:18:43'),(1680,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nelly31600@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8xvjlnw\",\"label\":\"First name\"},\"phone\":{\"value\":\"81653556864\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GuGGp4F Sj4i 1KgYad2 lWZiSBh N7xr cwyIV27\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 03:21:33'),(1681,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"amantedeninfas@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8j6yljs\",\"label\":\"First name\"},\"phone\":{\"value\":\"88423163564\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lXKLQKO 5Tth AUSw14p 7MX9oOR GNqo MYiODoh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 03:26:14'),(1682,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sultankulovanvar67@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8uce9l8\",\"label\":\"First name\"},\"phone\":{\"value\":\"84239382594\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uBBSznk 7gmy hiMv3wf SoeWydW JXQm UlJUK2b\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 03:28:28'),(1683,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nazarenko2276@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yapkx8ep\",\"label\":\"First name\"},\"phone\":{\"value\":\"83739218235\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"B0s730i GU4J 0hTgQID 21ZAEu3 yuos tgBAV6C\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 03:33:49'),(1684,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"akshayrathore844513@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y6vl7r9y\",\"label\":\"First name\"},\"phone\":{\"value\":\"84414338912\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"q0CbuHO mb9s bFLaKRQ QO2I3zC CR1Z GXTlvby\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 03:35:02'),(1685,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"svetlanna7061@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ybtxkcvv\",\"label\":\"First name\"},\"phone\":{\"value\":\"84414316996\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"B0fqxKE DJKQ aSREFFC Rij34su AxaP Cng5Kkb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 03:41:18'),(1686,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"donnerpetra@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y76qfj4p\",\"label\":\"First name\"},\"phone\":{\"value\":\"83923834428\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9aSIKcZ HsGB FoybCgi zdTIB18 DQi0 CRJYRL8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 03:41:28'),(1687,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vasilijcecenev@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybkdjbtv\",\"label\":\"First name\"},\"phone\":{\"value\":\"84264142172\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8Ck45Ri C4Wf Vx1jAKF KrDnk5V bzDr B14lCl5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 03:47:59'),(1688,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"prashantaier@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y837vl5r\",\"label\":\"First name\"},\"phone\":{\"value\":\"83183527631\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QECgJVH 73IQ Wv8IEru c9mvCp3 7z6Z z7Dhn2z\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 03:48:33'),(1689,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zajkinvita@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9n5xmud\",\"label\":\"First name\"},\"phone\":{\"value\":\"84844452847\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Bwxu9YF 9GE0 sixG6at nzEQlyJ c7Kn TFrenk8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 03:54:34'),(1690,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"voilukov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yamwbq7q\",\"label\":\"First name\"},\"phone\":{\"value\":\"82922422648\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"h3jQnLN Kfmx F9qo2YP X55m6z3 fcPb eCTccyC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 03:55:54'),(1691,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"isubilova1990@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8v9gbz9\",\"label\":\"First name\"},\"phone\":{\"value\":\"82348646537\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3ewxCaO By3z 2wFsWRJ Am3wz6F vyEy rJrOM1O\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 04:01:07'),(1692,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sleepless127@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybg3egvb\",\"label\":\"First name\"},\"phone\":{\"value\":\"81525992424\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"21LeY0u K6Eo CX3ARCV ai8vhq9 XDJ9 BTktun1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 04:03:20'),(1693,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vitocapone614@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8uxyqar\",\"label\":\"First name\"},\"phone\":{\"value\":\"84526338947\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KpNjPyo WoSG mqcuLAX gfHr4Lm o444 kfh9dKG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 04:07:42'),(1694,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jorobaev.u87@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybfkha3q\",\"label\":\"First name\"},\"phone\":{\"value\":\"85613892573\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AFIX0Gp JWZg Gww0TUW 3hZyQI9 vnac 8ZdZ7c3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 04:10:50'),(1695,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexander.mikhaylov81950@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7aytoxv\",\"label\":\"First name\"},\"phone\":{\"value\":\"84735211716\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MJzuIDE 7AJZ q6J0cz1 hfesTe7 32Rl igfqkNT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 04:14:14'),(1696,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"snack_pack2002@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7jug4ec\",\"label\":\"First name\"},\"phone\":{\"value\":\"81528997999\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JLX40pK ufJu v2fTf5e h2OcOjQ NBmf uFETD8g\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 04:18:12'),(1697,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"3063443@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9n3mujs\",\"label\":\"First name\"},\"phone\":{\"value\":\"88479254592\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vEAxRjV 8eLb 63NyqDZ 0J3AfbK IzwJ zFGyE3G\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 04:20:43'),(1698,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"idalisgonzalez@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y85rnugp\",\"label\":\"First name\"},\"phone\":{\"value\":\"88521694875\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GliyiiA EyUf uq91Zh8 N8EI8Nm aoQF OO1lkVD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 04:25:39'),(1699,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yaroslavpashechko9@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9wqarka\",\"label\":\"First name\"},\"phone\":{\"value\":\"85221817298\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oa9ur17 JCih ADHHIf5 vqPKJra v6Sa BjMWZtN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 04:27:26'),(1700,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vasilijkuzmin343@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y74wwteg\",\"label\":\"First name\"},\"phone\":{\"value\":\"82115543814\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EFMzKai Oh4V xkTvI7v ftJPlT9 bI9Q kT1a1ZY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 04:33:08'),(1701,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"litvinukevgenia028@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycwur2he\",\"label\":\"First name\"},\"phone\":{\"value\":\"83915875166\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hfnd5eN gfQJ kvS0Iih xhUZqJy XAMc GfuVfHd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 04:33:49'),(1702,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"armytlc@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybz4e74c\",\"label\":\"First name\"},\"phone\":{\"value\":\"89154413179\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ibv1vIy x3f8 tcVRZvV RumzrBM YSvJ nHs8YPM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 04:40:13'),(1703,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexterik@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7bfwxar\",\"label\":\"First name\"},\"phone\":{\"value\":\"83691314418\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7ecXe6z nh7z NMIQNm4 5dAUqge 6mRx tkIB4RA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 04:40:36'),(1704,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jp42042@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yd77ahqm\",\"label\":\"First name\"},\"phone\":{\"value\":\"89341483259\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dBzEJ3H TvrB dbrUzbQ 8SLOiCp sUtA idep9ER\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 04:46:41'),(1705,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"osmar_cab@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9oxh7ol\",\"label\":\"First name\"},\"phone\":{\"value\":\"85829444195\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Rapesfl 1BBb hSRoFWR MTYSjtA btY8 BFq0CRL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 04:48:02'),(1706,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"deniskamts@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yagtegsl\",\"label\":\"First name\"},\"phone\":{\"value\":\"81448968815\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"40lwb5O B1Gu IBR3d1D QBh8lIR rHuu vwuxqzZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 04:53:08'),(1707,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"feristaylor@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybrh3dn8\",\"label\":\"First name\"},\"phone\":{\"value\":\"83973492779\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Dq5wE8T cI04 OFq3dIh ajbjLNQ Dj8e uY7K7By\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 04:55:22'),(1708,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hareesh.n2@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y6ulh7nu\",\"label\":\"First name\"},\"phone\":{\"value\":\"86854774459\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8PyP7wb tidS DRbpxEq Etw9IKW RgvC lXZQD6o\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 04:59:37'),(1709,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lizovetakaronina566@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaaqynwx\",\"label\":\"First name\"},\"phone\":{\"value\":\"88793771379\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AiY0XHx FtYT Djk6sTH fKhmCbH dbhR c6TMP7n\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 05:02:50'),(1710,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"assila07@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yce7lng9\",\"label\":\"First name\"},\"phone\":{\"value\":\"85592777981\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gHKGQxE zH5k V3xjAFA 9mvsqqx qj2s bi0Dc29\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 05:06:17'),(1711,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"b.francesco1971@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8ux8lx3\",\"label\":\"First name\"},\"phone\":{\"value\":\"86784587244\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"novly2r 7LsH W0Vs86M VfL9LwI 3f5f sqjup0x\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 05:10:31'),(1712,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kasytih@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ydyaqb9x\",\"label\":\"First name\"},\"phone\":{\"value\":\"81678883638\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DfGbf2l YmNV FSUaRci zsk4Xiz yrPZ XwP1Vpz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 05:12:53'),(1713,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"golikovviktor271994@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yad8d3tq\",\"label\":\"First name\"},\"phone\":{\"value\":\"83472785283\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"g9vDTdr HuM0 LxprrO8 KBvAayn HCGy 5TVX7mO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 05:17:58'),(1714,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"id-diego@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybt98b2w\",\"label\":\"First name\"},\"phone\":{\"value\":\"84157192249\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eRDRmBv A5N9 3RzHCQc GK7cbRQ EJbn LA8u06w\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 05:19:24'),(1715,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ponacka@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yco2bvxm\",\"label\":\"First name\"},\"phone\":{\"value\":\"84943165112\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QBUdqBu BlD1 xqTQX7R 3VYwxuH E9LQ 8tlg9cr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 05:25:29'),(1716,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"deepjashan794@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ydfx5qbw\",\"label\":\"First name\"},\"phone\":{\"value\":\"81637565317\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"V7X1WKe sCve KWkM6rJ ITjBana wyKP gMpWHHu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 05:26:13'),(1717,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ramlerm5@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycyafrfm\",\"label\":\"First name\"},\"phone\":{\"value\":\"84914697944\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SrgZRMK 2uRl ThI9hkx qAU82Un OTuF gKd0L9J\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 05:32:44'),(1718,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oksana.kovalienko87@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ydx9h7l3\",\"label\":\"First name\"},\"phone\":{\"value\":\"84254377832\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TJ5GGKm bHjJ su1x3P0 FYEzzzb T1hZ yonN5ry\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 05:33:23'),(1719,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"cornpoppie@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycdccxba\",\"label\":\"First name\"},\"phone\":{\"value\":\"87365113938\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Zel4KbA rYFJ P6b68O4 PXCR93i na9D 8hZZGxg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 05:39:17'),(1720,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yolep2018@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybsopk5l\",\"label\":\"First name\"},\"phone\":{\"value\":\"88442169988\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"l5xSvyG cGZW 1x3rcIk 0f7Qi1x GJpO BQLUVsn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 05:41:11'),(1721,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexlavr2008@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd9x3ta6\",\"label\":\"First name\"},\"phone\":{\"value\":\"81387313785\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"98sjA5B AJRj A1728IJ xFyy8bb IL0o PaABAGm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 05:45:52'),(1722,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"miheenko.12357@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybp723yl\",\"label\":\"First name\"},\"phone\":{\"value\":\"86962328625\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JxMIy5D KQqp 8spRxqE bIVFTtw m0zN VP8nUG8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 05:49:00'),(1723,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"inekelaa79@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7ygrtd9\",\"label\":\"First name\"},\"phone\":{\"value\":\"88447389168\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9V9nBmn yzdU 7hd9EvX 5WgQpKO ZH5O GBPswKZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 05:52:24'),(1724,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lornatrfb@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7x8gbo4\",\"label\":\"First name\"},\"phone\":{\"value\":\"89962314477\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ixFJpD3 mBqV ztFcw8O 0UZes3K xitT JHSsbsK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 05:56:59'),(1725,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"r.v.kirychenko20@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydfdtywv\",\"label\":\"First name\"},\"phone\":{\"value\":\"82642153421\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pJd3wfB qrYO qDcu6mN WCFF67p 0rps lUckt6q\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 05:58:57'),(1726,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tomy_maxi@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yas3xwja\",\"label\":\"First name\"},\"phone\":{\"value\":\"83442152964\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MhagopQ k1oA dspACrl PrdTZEe xsYT JqxpIcb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 06:05:31'),(1727,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"florencegermier@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yc2dyqb5\",\"label\":\"First name\"},\"phone\":{\"value\":\"82119372499\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OasTYhR uBRA ZVoIHbg TJijMfy KvtC xI9cwBD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 06:06:17'),(1728,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rahulraj26111992@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7ju99p3\",\"label\":\"First name\"},\"phone\":{\"value\":\"85448173523\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UPXPQYl KY5t uSfNeqM XhRORes wbph O5oIUMd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 06:12:07'),(1729,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"irinagaranina620@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8ct8pso\",\"label\":\"First name\"},\"phone\":{\"value\":\"88419914965\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Eops1mF jKiL rh88EJ8 8Rq63wV G5RP plS5x6T\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 06:15:55'),(1730,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ktn758@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycxm8zbv\",\"label\":\"First name\"},\"phone\":{\"value\":\"81287328143\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Cwg0rlJ UXB6 folfI9q FhciMt5 sYfs pfVelE2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 06:18:43'),(1731,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mukunda_shyama@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ycxn4o7w\",\"label\":\"First name\"},\"phone\":{\"value\":\"84769658671\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MCezlrv o76q u5SPZL6 59X2VlY 0suf 7lgfggd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 06:25:39'),(1732,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shanukeluskar1234@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydf7xfkw\",\"label\":\"First name\"},\"phone\":{\"value\":\"84239562556\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0mcfkwG UkPz Bb7mqAq ssBCZqE kWg3 VDQgSm8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 06:25:44'),(1733,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mrarjunmodi@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yb9rpzsg\",\"label\":\"First name\"},\"phone\":{\"value\":\"83973561886\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xI1Bhdm e1OX Iqby700 09EK9ay ZZnk 5HfEniF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 06:32:16'),(1734,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bognarkatalin80@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y6wmyecf\",\"label\":\"First name\"},\"phone\":{\"value\":\"87444265799\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"d4MacU5 y4AO eJu7r29 Q3S7f46 Hq9w 7kNiznK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 06:35:10'),(1735,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hromovaleksej7@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y6usjlp5\",\"label\":\"First name\"},\"phone\":{\"value\":\"82155223689\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"e4DQgpn eF21 7yzh8yO gj0WufD FFMd oiKIvdB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 06:38:49'),(1736,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"revuta.elena@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8h99x4n\",\"label\":\"First name\"},\"phone\":{\"value\":\"81353967124\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1wWOzWG 7Gar QxGfDl5 2x9UQsM d7aF F9UeHl1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 06:44:36'),(1737,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ademeshkina@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybdcyghw\",\"label\":\"First name\"},\"phone\":{\"value\":\"83472546472\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ACK8dC7 nOVU TqjbRQg a2ELvuq IuKD GPygInE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 06:45:24'),(1738,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sundarmunuswamy@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yayrhcfk\",\"label\":\"First name\"},\"phone\":{\"value\":\"88741581494\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KTxiMHW oeRa riXnjsy vibHzbe gDPY K7pVmgY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 06:52:06'),(1739,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"isaacnchekwube@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8zn4epa\",\"label\":\"First name\"},\"phone\":{\"value\":\"88925729898\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HYHA6Cu gImb H6tnl4V bsFFIMr q4uR ckN2b8T\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 06:54:08'),(1740,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tayfun981@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9v8g3y2\",\"label\":\"First name\"},\"phone\":{\"value\":\"85335766889\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aj9h5np gJue erG4Sxa YXqM6Kw g3QL 7FltC23\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 06:58:42'),(1741,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"p.ostrokopytov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ydycphnb\",\"label\":\"First name\"},\"phone\":{\"value\":\"89795775782\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6w40cv8 XjhV y8c9UQ2 VTZGwaH trUI sgE618O\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 07:03:46'),(1742,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yuricuba021@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y7mpx6xa\",\"label\":\"First name\"},\"phone\":{\"value\":\"87527399157\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pJm3ae0 ltak pCzLZM9 VwubmGV 5WFv 2uJHnE1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 07:05:23'),(1743,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kitsunearichan@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycd98t8n\",\"label\":\"First name\"},\"phone\":{\"value\":\"84145568696\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RhOBSY4 IAui Xo3fQb3 NcgqMu1 qEmy XuUCctQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 07:12:00'),(1744,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sectucker@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7yszygv\",\"label\":\"First name\"},\"phone\":{\"value\":\"82745274556\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sZlOSz2 CJjt LgQsa2S XoOUgnz KBiM D5aIHUk\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 07:13:10'),(1745,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"galatjem@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7z355vy\",\"label\":\"First name\"},\"phone\":{\"value\":\"82575828785\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SMr9fxC tomF UoS8Frf pGp8ujX Ftdf tf7yVY6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 07:18:42'),(1746,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alinaogannisan1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7q9uhqj\",\"label\":\"First name\"},\"phone\":{\"value\":\"86356616181\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9M44vvT d0nw s1a27Tc 4qhYEUL 8HnE qxfLDf7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 07:22:35'),(1747,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bcope16@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7n2kazm\",\"label\":\"First name\"},\"phone\":{\"value\":\"82571118717\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ILGBpIu Nk1u x5FOdYn qu3Ricv 4g6z IkqSz4V\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 07:25:43'),(1748,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"cockalighted@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7guf5tw\",\"label\":\"First name\"},\"phone\":{\"value\":\"83351193321\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tuHiCml FteQ 2NSHvyH BV0zoV6 RCW5 weawWDs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 07:31:58'),(1749,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"singhamsingh@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yatcfhqp\",\"label\":\"First name\"},\"phone\":{\"value\":\"83872125398\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7uKoHN1 BWYM 75RYAiO 501qXcQ XqPK 5mEues5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 07:32:15'),(1750,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nataliadzen@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8rxuxmf\",\"label\":\"First name\"},\"phone\":{\"value\":\"88294567321\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9pR2QwM F0mN SLhTPoF beaWr7D cuEP wFt64QD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 07:38:53'),(1751,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"avbax50@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9powquk\",\"label\":\"First name\"},\"phone\":{\"value\":\"85985971922\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SnN4sXu AiwD e7KV88J BIxvjed UOp0 ZbZ2Q6J\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 07:41:14'),(1752,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"serikova.lyudmilochka@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9ztecyj\",\"label\":\"First name\"},\"phone\":{\"value\":\"89699462565\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mMA74GQ apnU E6rBI0I aPqiLtX rmea rBw15vP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 07:45:33'),(1753,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alsa08@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ydgxhrxt\",\"label\":\"First name\"},\"phone\":{\"value\":\"88211535947\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hd6wALk dlQX acUT0Et VtwO12q xa8A CtcpB3R\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 07:50:41'),(1754,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kseniya.kireeva2016@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybt98b2w\",\"label\":\"First name\"},\"phone\":{\"value\":\"85623386367\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tf3OL98 hlkl 7jO9a8j 9wtaT4Q OgHF EE0L39C\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 07:52:13'),(1755,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lunarguide@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9gaz8jm\",\"label\":\"First name\"},\"phone\":{\"value\":\"87675222264\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rD12Kuy fiLM LwumiWw tAcYRoh PrGp QF8atE3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 07:58:48'),(1756,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mixail44mmm@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybucnfrg\",\"label\":\"First name\"},\"phone\":{\"value\":\"81433531123\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ErYLrg1 yj2I ZjPoDqZ btdCRRT cVS5 cWQRl0a\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 08:00:08'),(1757,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"neud54@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yanoq42d\",\"label\":\"First name\"},\"phone\":{\"value\":\"86712322683\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Rdh2VAT OO4X 5gY7rkl ko11rLe jA64 oXcHG05\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 08:05:35'),(1758,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"veerendranadh07@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8jl2mzc\",\"label\":\"First name\"},\"phone\":{\"value\":\"85178792827\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nlWGDfQ XNPm 4ygcLRq bD2H6BH wQ3R ylswhDS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 08:09:29'),(1759,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"potockaaksenia4@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydewo6uf\",\"label\":\"First name\"},\"phone\":{\"value\":\"82537782275\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"L7O1qYr xF1K ubibe4G GCp0DK9 fjD3 MCMftZV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 08:12:14'),(1760,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"targetiva@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya5l2mcu\",\"label\":\"First name\"},\"phone\":{\"value\":\"86565827195\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kDgmkfH NQwA ZkLNOA4 P1jHbVX NEkT XNu2YDn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 08:18:41'),(1761,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kovvuri.durgakumar@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yda4tqc8\",\"label\":\"First name\"},\"phone\":{\"value\":\"84651319553\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fdKnm9h 8dw2 ICloh2C 75CWIuZ QTfw GZnPG13\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 08:18:51'),(1762,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"andrey88zabinets@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8yjqurn\",\"label\":\"First name\"},\"phone\":{\"value\":\"83127419337\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1Zi8ZrW wvxE gHkYnmv BpRRqGu AZut 2QLUtOd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 08:25:40'),(1763,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shaivashaigul@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9avufat\",\"label\":\"First name\"},\"phone\":{\"value\":\"87436716842\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VrfqbJB xiaJ iVpBXas 8sld3OK dHiW jH6qCQn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 08:28:15'),(1764,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dgasmin00@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yc6kz3lm\",\"label\":\"First name\"},\"phone\":{\"value\":\"81327647953\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vP3gqmC vNJv Uo0ecqA qpg9vWi 4q3A 9qeDZ1y\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 08:32:18'),(1765,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bendiuks12@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8pusz9g\",\"label\":\"First name\"},\"phone\":{\"value\":\"89649322991\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xKLr16j Wkw5 wva5YUj zd943Ao 7LLp kijfKvs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 08:37:35'),(1766,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"stshkumar41@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ydgbr9qx\",\"label\":\"First name\"},\"phone\":{\"value\":\"81812312713\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZXDmmBT 51io TO5DmEb h12GACV ZNqH FXqVVC2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 08:38:54'),(1767,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nik07121962@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9dvoj6x\",\"label\":\"First name\"},\"phone\":{\"value\":\"88267477918\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mKGwMHv YAFs r8cYVWT 3bnG76U qZ5z dke5uBd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 08:45:33'),(1768,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tursunovkirill99@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y82kkhv4\",\"label\":\"First name\"},\"phone\":{\"value\":\"86914753998\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qM00Ahh g61t 48C0cGw UlOA9Ci hYVP WZFGfpq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 08:46:59'),(1769,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jynior2008@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycmamh5e\",\"label\":\"First name\"},\"phone\":{\"value\":\"88643541839\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uPLEqgB gMa9 r1sHfq0 lpc3NQW CpJY FedBcQv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 08:52:12'),(1770,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hardkatana@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycqu2r8t\",\"label\":\"First name\"},\"phone\":{\"value\":\"86597145685\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GbtluJR quyL orgzQ7Y hw6lF42 kbBg fNrsqvM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 08:56:17'),(1771,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"charikova046@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8uxuw6s\",\"label\":\"First name\"},\"phone\":{\"value\":\"87433136615\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DRrLlkA oECR bKrnEmn TgKGE0J hTsj YzzP4mF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 08:58:49'),(1772,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"behtgoldanastasia2@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8zomvs3\",\"label\":\"First name\"},\"phone\":{\"value\":\"89855298717\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eOlgnHy n4Yt 7CRqWRW SFN0c0A wpZV uKinKXK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 09:05:30'),(1773,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"igorf2004@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9zlmjqj\",\"label\":\"First name\"},\"phone\":{\"value\":\"84948249115\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cUCFZIe MH8X IlE90rE j5MmVjw D0qf 951y0ry\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 09:05:42'),(1774,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"restauranteola14@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yc6ps5us\",\"label\":\"First name\"},\"phone\":{\"value\":\"86582855715\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ytRdY5X HnsM Ggo86in jqRumyM rmLU UoC33Qg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 09:12:11'),(1775,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aawtrans1@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9lwamtb\",\"label\":\"First name\"},\"phone\":{\"value\":\"82232273657\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LzGeFWs 6BAa zT5YKyM 2joMcqw axQd JRNuYto\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 09:15:02'),(1776,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yalakov.ilgiz2016@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ydy3nu7p\",\"label\":\"First name\"},\"phone\":{\"value\":\"85664422186\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8uuEV18 pOrM q3IMZKw faBzdIx XXJa ncuLW6o\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 09:18:53'),(1777,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"darya7660@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybkdq6j7\",\"label\":\"First name\"},\"phone\":{\"value\":\"87461856428\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZmrGdHy OdC1 URLikxF RiomyQ4 Mpsc 7hJJuIj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 09:24:28'),(1778,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"htwe2pyone2009@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7jcjo5g\",\"label\":\"First name\"},\"phone\":{\"value\":\"89344388248\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ns3k7wg lAPi pDKBahF 95R6KD2 kXVG WKYEIM8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 09:25:53'),(1779,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zhenya79-samara@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9zlfp4a\",\"label\":\"First name\"},\"phone\":{\"value\":\"83432226147\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SHNma3y RzZa KyHb4s7 lTXLtsl rwWb et8kK1l\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 09:32:33'),(1780,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"daniilbarsukovv@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybh9bblm\",\"label\":\"First name\"},\"phone\":{\"value\":\"83824986372\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XICXdTp 2nsE fVQcdYa APw6lvz WJ31 mysohFj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 09:33:50'),(1781,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gadaev.s@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8hvk6tn\",\"label\":\"First name\"},\"phone\":{\"value\":\"86929143694\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"g1POOl3 aFOQ yJxJGYH NyPQVmr cVXJ o3G4x59\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 09:39:14'),(1782,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"smirnovan10101405@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9ykb9aa\",\"label\":\"First name\"},\"phone\":{\"value\":\"85373583129\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WVtDgzI E5K5 rffffzA bX4eOjy sycc GjM4hp2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 09:43:14'),(1783,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kokadu1974@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycjalzly\",\"label\":\"First name\"},\"phone\":{\"value\":\"84226121822\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2N0srSt X9DG gBblgaX 5CByoZZ ugay qnGrkZA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 09:45:51'),(1784,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hargill_josh@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y8da6q8v\",\"label\":\"First name\"},\"phone\":{\"value\":\"86122877539\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"w6n6Lie eafB R7O7FnX 0AmgvYN o4zU VQlWLmL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 09:52:30'),(1785,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ktimofey@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y6vx7crj\",\"label\":\"First name\"},\"phone\":{\"value\":\"82538613672\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sKWYojE 1IDL Va3OwnG BpWoMux 4otP DAbF32W\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 09:52:42'),(1786,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mariika10@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybw6kow9\",\"label\":\"First name\"},\"phone\":{\"value\":\"84159725238\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NDqT1hT HUeM dNc5pmc HJ3vEgT a0xE QPE3lMb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 09:59:07'),(1787,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gryhinina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7dcolpw\",\"label\":\"First name\"},\"phone\":{\"value\":\"88869837332\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nBJAthu gG60 7uhQdxZ zlVOPh6 zXaM T56Y2Eg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 10:02:03'),(1788,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"irina.cravetz@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ybxnndam\",\"label\":\"First name\"},\"phone\":{\"value\":\"88239118676\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kW7Bl8P 3UBn tbI9isy z5oyBpt StWS LogIKE6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 10:05:50'),(1789,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anastasia.devil.16@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9qxrjnu\",\"label\":\"First name\"},\"phone\":{\"value\":\"82651282364\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MWSPFBu bOFD BOamQ8H XIiOLLz 3lvw CJS0YhQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 10:11:23'),(1790,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"simpleman7three@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycobt2xo\",\"label\":\"First name\"},\"phone\":{\"value\":\"84339475818\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AdrehHa 3OgN VAgozO5 CbiFdee LVw1 If3Em8P\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 10:12:24'),(1791,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"diwyaprakashsingh@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9n5xmud\",\"label\":\"First name\"},\"phone\":{\"value\":\"85292725291\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jbZUbOg EVxs 15km3aQ 3qaTETZ rBVL 2C8VqmS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 10:19:01'),(1792,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kripadubey9693@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycla9jdz\",\"label\":\"First name\"},\"phone\":{\"value\":\"85186174853\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PnSgUnW O6Zv HvgxT0S bjWvYuD X83h px7rlY1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 10:20:46'),(1793,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"conanobrien.mm@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yark3pop\",\"label\":\"First name\"},\"phone\":{\"value\":\"85984261636\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"C1JLnKn 3bOS WTvqvuX gfGpqcT 2X1y iNwb70H\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 10:26:01'),(1794,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alekxkononenko@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y6w58ylt\",\"label\":\"First name\"},\"phone\":{\"value\":\"84645545959\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yvIzKL6 bxiV R3VDR6W yyEjIBT ifWd y32xxgV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 10:30:06'),(1795,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"caguabdullah@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybd6oe8q\",\"label\":\"First name\"},\"phone\":{\"value\":\"82695566343\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZZh9v1c mLW8 WeTJQ3p sF1ufvl Cp8Z zH7zmKH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 10:32:36'),(1796,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"book.diva69@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8d286bm\",\"label\":\"First name\"},\"phone\":{\"value\":\"84959844239\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zK7sV2L JrLc TqtkrOu twy0GFv GY7V rZxCiXL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 10:39:05'),(1797,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rtustikas@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7uwlnot\",\"label\":\"First name\"},\"phone\":{\"value\":\"86291175593\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TYCcdBR yBMW 1oUlq2B ejaeHWW iFHR 02Wu0jL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 10:39:32'),(1798,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"butshvec1982@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9mgqdqm\",\"label\":\"First name\"},\"phone\":{\"value\":\"84564789927\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5Rz7N9J wJ3n 3TfWomO Rls1yGM n7uf ZWrPKaB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 10:45:47'),(1799,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dreyling274@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yaqkkxsu\",\"label\":\"First name\"},\"phone\":{\"value\":\"84475371983\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hBpYVOY O054 dBLkfzN JcnnZQx 536K WoNq7w7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 10:48:59'),(1800,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sanshyron@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ydzc4lp9\",\"label\":\"First name\"},\"phone\":{\"value\":\"89121264746\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Y4GLxRP KU4N 5cvFFfb GaVaAcy 1zcJ TPujD4V\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 10:52:23'),(1801,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ludmila.lubosua@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y8krsn4o\",\"label\":\"First name\"},\"phone\":{\"value\":\"87221279915\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"F2AlQDE CSEG j3QntC7 H6nwySq sduz kgrgs0B\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 10:58:23'),(1802,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"svetlana-svl@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycn4lews\",\"label\":\"First name\"},\"phone\":{\"value\":\"86542318934\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OOwWoyB OELP Bjtjqe1 R0FTKJq 3siB FCXxBnS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 10:58:45'),(1803,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dud.abhishek@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yadtdzb8\",\"label\":\"First name\"},\"phone\":{\"value\":\"83748571777\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"V7h4jmJ xjnz kmUvZpe AlkES73 jQLJ z3yRPx2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 11:05:25'),(1804,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"stomp_the_yard01@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yc5vlgb6\",\"label\":\"First name\"},\"phone\":{\"value\":\"85328677444\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SRFnCeP 5xQp kJLh51w llFpscW nt3L 9I8Loqv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 11:07:42'),(1805,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ritsu-hibi@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yavzw4v8\",\"label\":\"First name\"},\"phone\":{\"value\":\"84627787749\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"A4YLUcx O5JE mwSOzxR 8sPKqU1 u6uz oeaXDzU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 11:12:07'),(1806,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vlad.saburov.93@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd6d3s7x\",\"label\":\"First name\"},\"phone\":{\"value\":\"87883169741\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7doka81 4C4b Lf8XtCz 77QeKIz qMYO 3PxhgqF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 11:17:10'),(1807,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bojcukmark@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycldkf8d\",\"label\":\"First name\"},\"phone\":{\"value\":\"85698113898\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nr1U1Cz Qmyd cOAg6kO dB7aTEe zkmR gmOcxhA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 11:18:41'),(1808,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexandr444@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9t52jw6\",\"label\":\"First name\"},\"phone\":{\"value\":\"86682849467\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8B0yKgE Hi29 Ev5xTNM oevoRSZ zvC5 OMWRWKO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 11:25:32'),(1809,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"svoyasemya8686@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yab2pmlb\",\"label\":\"First name\"},\"phone\":{\"value\":\"88138759764\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2IoMNR9 egGk dlD9EU4 50Dawsw GgXe lNH6Wao\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 11:26:27'),(1810,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nematovadilsoda5@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya4wsd96\",\"label\":\"First name\"},\"phone\":{\"value\":\"84861693177\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IQ0IhSS LB4e t3B7IGi hoapSmg bnpw oNK7FgA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 11:32:16'),(1811,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mockingbird2401@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydx9h7l3\",\"label\":\"First name\"},\"phone\":{\"value\":\"84611346441\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Wj53ud4 G04Q QgCPgKB 2D92NYK T6uP wccT4IL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 11:35:51'),(1812,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aleksiyrudnev1966@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yb8arx59\",\"label\":\"First name\"},\"phone\":{\"value\":\"81537813181\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sUEVm0m 4x5M CISoij4 XFqa5w7 dwLA UGn4cHO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 11:38:56'),(1813,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pancakes26@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydgml9xl\",\"label\":\"First name\"},\"phone\":{\"value\":\"85632352711\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xjOYQaF oi13 A4qynIn V6ctKlV Q2SI CBY7XZW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 11:45:26'),(1814,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"espadalegend666@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7nqg4ag\",\"label\":\"First name\"},\"phone\":{\"value\":\"87922837164\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YqgrZ4v loy8 0QL0fQH pP7x3Eu Yfl0 yMAVMzx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 11:45:30'),(1815,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sinkina71@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yd5my6pu\",\"label\":\"First name\"},\"phone\":{\"value\":\"84455638355\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dbwNtgD PMam W92WOss zy3mxJK LiIl Uuplm9J\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 11:52:17'),(1816,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"neelamboys@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yattfp6k\",\"label\":\"First name\"},\"phone\":{\"value\":\"86612729392\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"txflrWY n91k MI8FVzK xFrRLXL x9rc jBucPMu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 11:54:44'),(1817,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aarodin@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yawcggb5\",\"label\":\"First name\"},\"phone\":{\"value\":\"82991536893\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"v5kyVEW qHQi OgbdaL4 3F9lboh yRNA vAmtZRo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 11:58:59'),(1818,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hopmusorok@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycblwenl\",\"label\":\"First name\"},\"phone\":{\"value\":\"86525462344\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"r11I7cf QjS7 3c3b0ce mx5Z2In faK6 gisg1mc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 12:04:13'),(1819,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"retunskih@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9daha29\",\"label\":\"First name\"},\"phone\":{\"value\":\"87935729624\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MoF4VCM Tmp5 KDm1r0o vsIQkri dh4l FGkLBkH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 12:05:47'),(1820,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rsdenson@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y7ynuaeh\",\"label\":\"First name\"},\"phone\":{\"value\":\"81512343128\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XbBgNjs PZSv y9gREI3 sqrtl1I xvuu fdRUFef\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 12:12:30'),(1821,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"groovefellaz@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yc8s4obf\",\"label\":\"First name\"},\"phone\":{\"value\":\"83324271864\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CyK5Iwo JyVl BdsczNS IFHUth9 WQ9p qr7T8RH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 12:13:37'),(1822,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yueangel111@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ya2foljb\",\"label\":\"First name\"},\"phone\":{\"value\":\"82734621631\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qA26uO1 JzZk a5YPo1A D1B4oZt hVkY 7QmjEjL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 12:19:17'),(1823,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"szyposzycky@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybuudye3\",\"label\":\"First name\"},\"phone\":{\"value\":\"81769516634\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"U6VWWRZ bwhH GqTzJGe 1FjKtSZ vtjY EODmMTw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 12:23:14'),(1824,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"regif86@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7z355vy\",\"label\":\"First name\"},\"phone\":{\"value\":\"85891611831\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QlB2ge6 wrQG R3IKCYQ 81MIvp7 IwlL 4LJHYwq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 12:26:25'),(1825,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"montassar11791@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycp7cjrw\",\"label\":\"First name\"},\"phone\":{\"value\":\"81354296215\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ebFIj8s KxaX urgsIZj chljoBK oOQB dtfGAMB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 12:32:39'),(1826,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"muhammadturanov851@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybamkmzv\",\"label\":\"First name\"},\"phone\":{\"value\":\"85884836448\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hCuo5PU VNc5 eG28fyI Y85MTSN qvmw 8hnWdVE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 12:33:05'),(1827,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nickolayanat@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y87dx8hh\",\"label\":\"First name\"},\"phone\":{\"value\":\"84176175949\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KHCUYHl IXlh hgy4W0R 97dT1N4 tv6K 1FQ2UYU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 12:42:07'),(1828,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"arzamascevai34@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9g77cor\",\"label\":\"First name\"},\"phone\":{\"value\":\"89318427766\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lW622s1 ull8 6nVMho7 nU5uWOW EIDi B2VgmeY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.132.157\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 12:51:32'),(1829,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mizuno1992@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybohag3l\",\"label\":\"First name\"},\"phone\":{\"value\":\"82796167216\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TQlJBFz uOwN tRQRnNv 4jtBhtu 0Fc2 7hFowcl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 13:41:51'),(1830,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vlad777sa@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya53rwdc\",\"label\":\"First name\"},\"phone\":{\"value\":\"82515822936\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lwOXQct pccL Rhyxyly ufzncan zJaZ RWKhaXV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 13:50:58'),(1831,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"www.magomedborz95@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaetjxge\",\"label\":\"First name\"},\"phone\":{\"value\":\"89718721766\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"x94pP5c 1d7a vvYQ1yy knKq60I nREG UGxCrbo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 13:59:43'),(1832,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marinaefremova290@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y987wahj\",\"label\":\"First name\"},\"phone\":{\"value\":\"84216753891\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"G7GQ78f mk97 90sPP5a I5wNm6b FXM2 UHA2p7A\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 14:07:57'),(1833,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"konvertnata@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9fmps3x\",\"label\":\"First name\"},\"phone\":{\"value\":\"83719829426\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"s7Kg9Pi QH5L wmQpJB3 lhS2anJ DXeQ sLp9FkF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 14:16:23'),(1834,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"maxnaxmusic@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yaygful9\",\"label\":\"First name\"},\"phone\":{\"value\":\"84614531841\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YQC3EiH Dbky uRDcMlU zAAJlGX wLEQ kByxkpa\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 14:24:42'),(1835,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"balorok@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y97uc5w7\",\"label\":\"First name\"},\"phone\":{\"value\":\"84514665853\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sngdTbT cpNc uOgHkFI j2oytXz I68U iOSxElT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 14:33:03'),(1836,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"eregina@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9j9nadj\",\"label\":\"First name\"},\"phone\":{\"value\":\"87881159452\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AMLxp1u TUPC b1h66fS GYBadfR P3Be azZdCdX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 14:41:16'),(1837,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sveta.vilyaeva@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y72dflyb\",\"label\":\"First name\"},\"phone\":{\"value\":\"87646194683\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"o3I6lg2 vbIo 4bAhnz2 5TRpbA1 TppO 297IAG2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 14:49:35'),(1838,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"cosmoresearcher@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd976jgw\",\"label\":\"First name\"},\"phone\":{\"value\":\"83187524383\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ER3wF1j FXFB HmtovSp mnUHXay Tu9a rOcTx9L\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 14:57:51'),(1839,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mary.panova80@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb3tyn9q\",\"label\":\"First name\"},\"phone\":{\"value\":\"83241145457\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"o7FufJ7 egpI Fy6ba8F TAVEDNE r8Y1 QsUaYvS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 15:06:12'),(1840,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kneelengemaxtvo@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yborukmx\",\"label\":\"First name\"},\"phone\":{\"value\":\"88623789584\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YJ6xHIM 1jxD 7zqpEtg 0kjHKoi Bwxt PMVqUGe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 15:14:43'),(1841,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"redikinamar288@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7e6hy3m\",\"label\":\"First name\"},\"phone\":{\"value\":\"89267699197\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MbZbibe pFm6 BDbTu2Z 68va9HM mixh 8ZrbUfJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"error\":\"cURL error 28: Operation timed out after 30001 milliseconds with 0 bytes received\"}','[]',1,'2022-01-21 15:23:32'),(1842,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lika0988@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycxkytau\",\"label\":\"First name\"},\"phone\":{\"value\":\"89489484771\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xCFQ3TU GK9H Oa5bRiu iIvrfjZ Lpfn GiDLzjU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 15:31:16'),(1843,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"helenazinoveva@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9gfexjt\",\"label\":\"First name\"},\"phone\":{\"value\":\"89863462566\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pww7Tvf Ka2b MCUMYKo WlUjqFI WLuV UX4qGFs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 15:39:33'),(1844,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"demon-1984@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8bumd4e\",\"label\":\"First name\"},\"phone\":{\"value\":\"84434282316\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2KFJpuN oeqG qgSlSQn TYNDcs4 zZx7 SGLYUHg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 15:47:47'),(1845,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"serzh.nadin79@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9pjupj7\",\"label\":\"First name\"},\"phone\":{\"value\":\"88311561371\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9I6tbEC bkpP xXFHY9A 95XfLhj jgzv IQJr5jl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 15:55:59'),(1846,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gkovalev683@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9c4652w\",\"label\":\"First name\"},\"phone\":{\"value\":\"85345354621\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hIwzjwL yOrg wUlJX8V KbOeBzU qaAY GPRTMcw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 16:04:17'),(1847,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"katkoluba5@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y7e5ks7l\",\"label\":\"First name\"},\"phone\":{\"value\":\"88957858484\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7qmg9AE hcNQ ikTVyR2 oYtBUcH LTeH NeGQMzC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 16:12:42'),(1848,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fesenko.irina1111@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9zoj5cf\",\"label\":\"First name\"},\"phone\":{\"value\":\"85729534467\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eQGkDlw zCTJ qK20k4w fzezeUU 2rwv pdF2UEh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 16:21:06'),(1849,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"canal68@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybhc7u7z\",\"label\":\"First name\"},\"phone\":{\"value\":\"87367813899\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"q8WJgfJ UgiT 9DL7xgE eHGDglo QVAQ t31llP7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 16:29:23'),(1850,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yan.karp25@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybqwltye\",\"label\":\"First name\"},\"phone\":{\"value\":\"84524981679\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4vonQjy Lv80 TayQr2n tHJhluy 8s3r pHvavRU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 16:37:44'),(1851,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"amaan@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb2ult27\",\"label\":\"First name\"},\"phone\":{\"value\":\"85197623856\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qe2QBVd XPjj 8tj1tdz bPz3D0D 7nOG Hqgozqp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 16:46:10'),(1852,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nikita1504@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycetas72\",\"label\":\"First name\"},\"phone\":{\"value\":\"84125387634\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Dg3MMoY bUk9 qiGlGo8 OfTnCHG WNSM cmWhKmP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 16:54:31'),(1853,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"imysko509@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9rslau9\",\"label\":\"First name\"},\"phone\":{\"value\":\"85828497174\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cVvCkK0 uCcW ZSyHabC kOKnBNz fFpJ eZrcsPx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 17:02:55'),(1854,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bluredlt@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yaycv745\",\"label\":\"First name\"},\"phone\":{\"value\":\"83311877217\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nBFOvQ3 g5eL 1vHyYcB yISR57l dSbv tpi7pYE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 17:11:11'),(1855,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vika.meiceva@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y7zbzlfc\",\"label\":\"First name\"},\"phone\":{\"value\":\"86519388872\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZSEfuXj vjoL rjg1A0e OH2zdF6 SLSP em2641t\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 17:19:25'),(1856,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ndiachkova@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya8a262w\",\"label\":\"First name\"},\"phone\":{\"value\":\"84356826215\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"E41uuR9 Oj9f 9C3Lw8Y Kd6AoTL 9RT6 tQU74V6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 17:27:45'),(1857,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sultan.zulya2016@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9k2q2bw\",\"label\":\"First name\"},\"phone\":{\"value\":\"85787823564\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oPaWq7f Vkns YTpfvne BADpKGu p2Sv CobkPHY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 17:36:08'),(1858,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kylydan2009@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y95cc8db\",\"label\":\"First name\"},\"phone\":{\"value\":\"87951867736\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"80KE0gZ dHii 1YSrdRD 63UQ6Jh z5DV VyLKeMC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 17:44:28'),(1859,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"varvaraborisova@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9vsrfea\",\"label\":\"First name\"},\"phone\":{\"value\":\"84422961488\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"J3HPQYb AqOb rdzuhAH 5j4T6hx ubQt fqFq8tf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 17:52:47'),(1860,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Lona\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Haight\",\"label\":\"Last name\"},\"email\":{\"value\":\"promotions@sms-it.co\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi,\\r\\n\\r\\nI wanted to quickly introduce you to SMS-iT, the only messaging platform built for businesses, Internet of Things (IoT), Metaverse and the Blockchain. \\r\\n\\r\\nSMS-iT\\u2122 is a simple, intuitive and powerful 2-way omnichannel messaging platform built for businesses, IoT, Metaverse, Blockchain and powered by Artificial Intelligence & Automation, with a database of 1billion+ segmented mobile #\'s of potential customers to reach using your marketing campaigns.\\r\\n\\r\\n\\\"We\'re a 2-Way Omnichannel Messaging Platform Powered by Artificial Intelligence & Automation\\\"\\r\\n\\r\\nWe make it easy and cheap to intelligently send or receive unlimited SMS, RCS, MMS, voice, chat and fax messages or engage in 1-on-1 conversations with customers.\\r\\n\\r\\nSMS-iT\\u2122 allows you to intelligently search mobile records, target potential customers, send messages, create subscribers, create groups, share media, and more with A.I. & Automation.\\r\\n\\r\\nOur IoT GSM modems which are powered by our FREE decentralized gateway is already available at the top 10 marketplaces in the United States, including Amazon, Ebay, Etsy, Wish, Tophatter, Storenvy, Bonanza, Google Shop, and Mercari.\\r\\n\\r\\nVisit us today at https:\\/\\/smsit.ai to start your FREE trial which requires NO CREDIT CARD, and comes with a FREE local or toll-free number, and credits.\\r\\n\\r\\nThank you.\\r\\n\\r\\nSMS-iT\\u2122\\r\\nsmsit.ai\",\"label\":\"Message\"},\"phone\":{\"value\":\"+16504889899\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"50.211.222.126\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 17:57:56'),(1861,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"asteriy1980@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7e4a2u3\",\"label\":\"First name\"},\"phone\":{\"value\":\"84685256679\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zPtVg00 2arE Gx80O9C cIvcwkq VwwQ itcA99l\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 18:01:02'),(1862,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"eugene.latyshev@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yapzfukg\",\"label\":\"First name\"},\"phone\":{\"value\":\"83135743319\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pLIiJnT f8P3 VK2HMRR mBGTglU EVjc WQkf6V5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 18:09:21'),(1863,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"levaomelchuk@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yb2stha5\",\"label\":\"First name\"},\"phone\":{\"value\":\"88949535645\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PwPZTOD dPOq lXrhe5s AJNOlnA 3mec JJMUbyI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 18:17:49'),(1864,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"queyronofficial@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc568bp3\",\"label\":\"First name\"},\"phone\":{\"value\":\"88368244387\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8gtgNrA MuDM CEsvZoR wBul88z 71ju geyupJt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 18:26:12'),(1865,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lischenko@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycvkv7yx\",\"label\":\"First name\"},\"phone\":{\"value\":\"88853828486\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aH0kiNy Gcxv hNzWkT3 yM3rWgB k5oS 9ELphyQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 18:34:27'),(1866,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ana.melnyk.am@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y83ua43c\",\"label\":\"First name\"},\"phone\":{\"value\":\"89122595181\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"h6ZHEzy rC7f MG8RAJX K6VqTtf oVwx 0TRumxI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 18:42:42'),(1867,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"evdokiafilipovna0205@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7zdpjlv\",\"label\":\"First name\"},\"phone\":{\"value\":\"89455834633\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8TwTU4F aAht d3MkOK3 l8v1sAM Himh e7bCCiV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 18:50:59'),(1868,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gonzoliza@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycck5neg\",\"label\":\"First name\"},\"phone\":{\"value\":\"87829636141\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vmo33Sq Akau jEsgGzs XWQM8Kv sURJ 7NcOeTU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 18:59:23'),(1869,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tanyabuzina@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7vrhs2m\",\"label\":\"First name\"},\"phone\":{\"value\":\"84285921362\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2QJVtHb azzf Qri0uQN FFqOLTp 9dhc hTybmit\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 19:20:21'),(1870,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"btv.box@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7ubxsqw\",\"label\":\"First name\"},\"phone\":{\"value\":\"82565897121\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"p6snau6 u40u xw2zjxl JbbZwZF 90oo Dmms6pd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 19:34:08'),(1871,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"palariyas12@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ydbvkbc4\",\"label\":\"First name\"},\"phone\":{\"value\":\"84543954547\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AnCCPsZ 9ZXk 5tmufNd 1LQDR2r 0nSi yGizFv8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 19:40:56'),(1872,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"muzhikovnm@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycq4u8qs\",\"label\":\"First name\"},\"phone\":{\"value\":\"89674982187\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8VYN7b9 Fe7t RDOHv60 i75ydOW CFS7 elfmmYg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 19:47:44'),(1873,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"t-punch@ya.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybhwqjja\",\"label\":\"First name\"},\"phone\":{\"value\":\"82781294226\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"h13owId JSby H1eyMpk tb7NNXH dLd9 SBg1C48\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 19:54:29'),(1874,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"volodia.stukaloff@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7c92ptz\",\"label\":\"First name\"},\"phone\":{\"value\":\"84487898726\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"S2uBBaO bBFX jAZdBYR 2aZ8vfk TY1Z vAtxNeK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 20:01:19'),(1875,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dmsavruev@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yc6hmrsm\",\"label\":\"First name\"},\"phone\":{\"value\":\"85772643293\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zAMJcz9 AdiN KR3GRUC iuQHTFz anz8 89vsXft\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 20:08:17'),(1876,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"1980lexa08@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9xwjk8e\",\"label\":\"First name\"},\"phone\":{\"value\":\"84377466482\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mPP83YX a6Pc Xc4i72f tsUBC3W Wr4U rwpOWKS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 20:15:08'),(1877,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mbalykina568@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yc7kywyt\",\"label\":\"First name\"},\"phone\":{\"value\":\"88725952759\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FsOux9N 2JxG p3cACRs uerRgYc hskA Mh2s66G\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 20:22:24'),(1878,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexandrovae1989@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yajla4as\",\"label\":\"First name\"},\"phone\":{\"value\":\"82686751739\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gXrtmyM AwCE f0PkZ5F YKvk1po nb5Q nlqVdrW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 20:29:15'),(1879,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kalchaevas@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y74r98b4\",\"label\":\"First name\"},\"phone\":{\"value\":\"85999158154\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mGDEDFY E5Md UWdeUCX ppbnwDf UTot Z1gJsSA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 20:36:07'),(1880,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sabdugany@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycorjhnc\",\"label\":\"First name\"},\"phone\":{\"value\":\"89692588461\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AQDBE34 6u9u MO0UPeq 2iEjCJr cBzk fKXjsAc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 20:43:00'),(1881,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"valentina.1667@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9fgr6ys\",\"label\":\"First name\"},\"phone\":{\"value\":\"84937644914\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZWhapgL Q6M6 709Nd67 IdiI7oc JqCU ofbgmUW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 20:49:58'),(1882,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"m_svetlova@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7pzl57j\",\"label\":\"First name\"},\"phone\":{\"value\":\"81234795112\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yB8h2Au 73s7 4tnTy0F H3IBiyo fGxE rMdpOFe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 20:56:49'),(1883,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"warengrox@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yctwbok6\",\"label\":\"First name\"},\"phone\":{\"value\":\"86578392188\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DUWv3AE XbLb 67vPRNu 3m45wqS RYXW 2hB4dWc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 21:03:49'),(1884,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"doskanaeva.a@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybo55zu9\",\"label\":\"First name\"},\"phone\":{\"value\":\"88229388481\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tYXtOxx UPv3 Z65NeP6 ARIoVwT QdcI gA3ePQF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 21:17:34'),(1885,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"globoamore@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybqv43de\",\"label\":\"First name\"},\"phone\":{\"value\":\"84672285937\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Zo1bdea d5IA RUgnaAe w6X3rMv STth qDZ9HbB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 21:24:50'),(1886,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"potehina.an@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yb8t6xgx\",\"label\":\"First name\"},\"phone\":{\"value\":\"86922853865\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XLBUMBA lsrC 3ijkpMS 6d8u6yC BC2u 1Oz2bty\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 21:31:46'),(1887,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elmira.luf@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yd3eemkg\",\"label\":\"First name\"},\"phone\":{\"value\":\"88381266676\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EG9JFgf YF3I y3kzVBD ZXXMJNS EcqO fjQ8AjR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 21:38:46'),(1888,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marinagurk7@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya94n9fw\",\"label\":\"First name\"},\"phone\":{\"value\":\"87746481283\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8c1JBVl MZlB OoahFzu n2Hwrnb IgFE tI2ciDw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 21:45:42'),(1889,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ilavada@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9ovytnh\",\"label\":\"First name\"},\"phone\":{\"value\":\"86888436731\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KGDusuT HaG9 gAzrtiy KQXnyXl B8Zs TDLAu2v\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 21:52:35'),(1890,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sodikovabubakr97@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybrmt3y9\",\"label\":\"First name\"},\"phone\":{\"value\":\"84243782683\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xIogmVA iCG1 k8HcURn GWo9THL zaS6 oHnMndD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 21:59:28'),(1891,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bibyshka1508@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd6auukp\",\"label\":\"First name\"},\"phone\":{\"value\":\"84831668967\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ewW2c8C 9Itt W95BqEt GnZgJWP Vxlz aPu5GEI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 22:06:27'),(1892,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"medintsev1966@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8m3xglw\",\"label\":\"First name\"},\"phone\":{\"value\":\"86236418724\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3bOMNx3 BVqR Tzrc1RJ l6bkOaS 9vVy bSHrKct\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 22:13:25'),(1893,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"cristina99@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yc5md4nn\",\"label\":\"First name\"},\"phone\":{\"value\":\"81688624694\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"G6YeS68 z68k tOTjPHy aWVN5xt I8sD iR02Zwf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 22:20:23'),(1894,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"apmeh4uk91@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y7cx8x38\",\"label\":\"First name\"},\"phone\":{\"value\":\"83564112486\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"X4PrHwG XTP9 AmbIQtz 00exXqI ZFmH AVWkNov\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 22:27:34'),(1895,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vitalikingener@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybnhrfmj\",\"label\":\"First name\"},\"phone\":{\"value\":\"86675974854\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aMSgQxg hwSR UQZtYEF osFhDxZ bh0N zFC9H7H\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 22:34:34'),(1896,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"75xytljs@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Dycle\",\"label\":\"First name\"},\"phone\":{\"value\":\"83611674339\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Play for free and win real money! Claim (3) Free Spins Below https:\\/\\/tinyurl.com\\/y9sv7kbs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.173\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 22:35:46'),(1897,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Marla\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Pfeffer\",\"label\":\"Last name\"},\"email\":{\"value\":\"marla.pfeffer@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"You have a nice website. Let\'s connect:\\r\\nhttps:\\/\\/www.youtube.com\\/watch?v=rcpD-y_1yFo&list=PLT7sxXigVU1DPCZxuMKGBMl81zoR4QBld&index=1\",\"label\":\"Message\"},\"phone\":{\"value\":\"081 230 41 27\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"5.157.130.2\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 22:37:37'),(1898,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lyana1176@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yc2hv9q5\",\"label\":\"First name\"},\"phone\":{\"value\":\"84659919866\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CdGal92 KsmA gNtHTvv EneHgWK 8RDR GFz0UU1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 22:41:34'),(1899,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nara.55@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7jbgr4z\",\"label\":\"First name\"},\"phone\":{\"value\":\"86362915847\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5QeY7Bj bjMQ SM9hwuA 0qzzbup vsOt 4MXgpNr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 22:48:35'),(1900,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"smaylik-led@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaua7yeu\",\"label\":\"First name\"},\"phone\":{\"value\":\"88133898675\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"404eYma 5dFy S0WWum5 UQQHQl1 AeeG OiQxMRe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 22:55:43'),(1901,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dimashevchenko10021999@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y92eb7p2\",\"label\":\"First name\"},\"phone\":{\"value\":\"84119554872\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"a0O3i3i RBos 65pXkhP dSIM9SM 8MU1 bsliSrK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 23:02:52'),(1902,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alezhka1987@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9lm65cr\",\"label\":\"First name\"},\"phone\":{\"value\":\"82499987786\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xYxVuqT gLu8 2jhwJyt v0u9GB6 A4Hi GSmOlwE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 23:10:00'),(1903,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anatolich04061964@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycl8wrnb\",\"label\":\"First name\"},\"phone\":{\"value\":\"82751187236\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gQ6fle8 UH7n o8M1GIx wJpWTmH VA9B qTKeyU8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 23:17:00'),(1904,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"petr.gavrilov71@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yddxwfzb\",\"label\":\"First name\"},\"phone\":{\"value\":\"81853937233\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xTCwuOV OCSp OjfptPp OteQcY3 PGW2 M2VAqN1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 23:24:17'),(1905,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"beki.sabyrov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y97q5sn4\",\"label\":\"First name\"},\"phone\":{\"value\":\"85435847354\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CkUNrWE N6LU oWSp5Pg Eqb2Pro P84U gj40zTU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 23:31:19'),(1906,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rrokovoy52@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yala45so\",\"label\":\"First name\"},\"phone\":{\"value\":\"82791156633\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QwOkrx9 kuci rvNq4CM dkCxWYb XQNA ja1bmlV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 23:38:23'),(1907,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tajmurazezeev@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y98932hm\",\"label\":\"First name\"},\"phone\":{\"value\":\"85669979838\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MiYTsQR paEY CF5WYHn gqe3VBI wSDv T4lmr04\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 23:45:31'),(1908,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Mario\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Lampungmeiua\",\"label\":\"Last name\"},\"email\":{\"value\":\"alice.lampungmeiua@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello\\r\\n\\r\\nIf you ever need Negative SEO to de-rank any site, you can hire us here\\r\\nhttps:\\/\\/www.speed-seo.net\\/product\\/negative-seo-service\\/\\r\\n\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"0348 7857484\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"5.254.80.194\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 23:45:51'),(1909,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"janka-janka-janka@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7wj9rnh\",\"label\":\"First name\"},\"phone\":{\"value\":\"83938253549\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mNIWvrf Xh3h ESf4hkp nXadUfK 9Dm1 dGSQgkd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 23:52:40'),(1910,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dev.forever1234@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7tj8t64\",\"label\":\"First name\"},\"phone\":{\"value\":\"87664242848\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DemeoDS qYDn 0avsXqn 9ttAnIo KUTh 7QjtI20\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-21 23:59:48'),(1911,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rastr.spb@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y89gep6o\",\"label\":\"First name\"},\"phone\":{\"value\":\"82152325226\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CAuPgza NRFI BrtbHP7 nIWve9N Oxek QTvi2Rf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 00:07:06'),(1912,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"annam.fedorova@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycsusqax\",\"label\":\"First name\"},\"phone\":{\"value\":\"88331948476\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ku63bGz tUEB ksCkzfO w7L0E1a 2FDH 6EClRsY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 00:14:18'),(1913,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"saidqulovqodirjon@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ya5emn2q\",\"label\":\"First name\"},\"phone\":{\"value\":\"81691356821\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jIFYMxN nIzE ZqSWWSQ l0m1gWE FaxA aIuTfHs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 00:21:42'),(1914,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"polinariyamasha@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y94j2g4g\",\"label\":\"First name\"},\"phone\":{\"value\":\"88825414166\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dgs3ucF w5T2 pZVoKfU vovT3yA 8CKy MuxAm7j\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 00:29:10'),(1915,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"markgolubev18@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y82exnvo\",\"label\":\"First name\"},\"phone\":{\"value\":\"89418981824\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yG9jj7j uUg3 KI02Oly EoQ6yf5 Xck5 IyKJcgc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 00:36:24'),(1916,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"boranzhan@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9nehuer\",\"label\":\"First name\"},\"phone\":{\"value\":\"83369598562\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UJLvOe8 yp9P sGEuavR q5zLYPq aO4C nlGfatz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 00:43:41'),(1917,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"josst-tema@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9nlkbg2\",\"label\":\"First name\"},\"phone\":{\"value\":\"81628396249\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lykO9X6 8Vv0 M4sThXZ IW50mpV mksN 47xt7RQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 00:51:03'),(1918,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"komarovviktor05@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8jlz9k7\",\"label\":\"First name\"},\"phone\":{\"value\":\"87582435849\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"06ZiaAY Vjgk 3oHUkeM BHijK0q LxtD 71c90Gd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 00:58:22'),(1919,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jonathan.stewart07@hotmail.co.uk\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycw8gtcp\",\"label\":\"First name\"},\"phone\":{\"value\":\"83736184759\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"spEv4ni 6bJj mwRXBaT ikJBA19 h5bh Ez5NpuK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 01:05:47'),(1920,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"madiko.markakol@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yddbjk3n\",\"label\":\"First name\"},\"phone\":{\"value\":\"84914749626\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IHNXyBb Vgzw Agt5E0d YyFiVyQ GypP UAj20Yi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 01:13:09'),(1921,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lenok2011mmm@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yaelrwn7\",\"label\":\"First name\"},\"phone\":{\"value\":\"86251244889\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ac5qVTg jrxB jsqccdH uaWO4Ds 7XRa hatFMr6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 01:20:32'),(1922,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sveta.2707@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8q8v9tn\",\"label\":\"First name\"},\"phone\":{\"value\":\"85467781722\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bSaLGOw KvkH 1GENjsP ONBkFZA BhaD A9emK1T\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 01:28:10'),(1923,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"avintin@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7rcp9yl\",\"label\":\"First name\"},\"phone\":{\"value\":\"89315879527\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hyFHIDX vLZj MfciPEO WUq5ig3 VeBj 5k1dPS6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 01:35:30'),(1924,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nashavasilisa@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7whhfvf\",\"label\":\"First name\"},\"phone\":{\"value\":\"89258861155\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"skOtHlz q4Pb KSotVQw H2CWAXK TIXk N5ZhTGK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 01:42:54'),(1925,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aleksandr.sinicyn.2012@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydf5nnup\",\"label\":\"First name\"},\"phone\":{\"value\":\"84386937965\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1tkr2S3 C3i9 UaoC0Qe ByRhMQn kGN1 840srEz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 01:50:10'),(1926,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sabelnikov93@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybfj7zdj\",\"label\":\"First name\"},\"phone\":{\"value\":\"83855285937\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FdkK64G FK88 BjIAY9N mI1ZB1j fvB9 Juu1mus\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 01:57:25'),(1927,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kuzmich8333@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7y48luv\",\"label\":\"First name\"},\"phone\":{\"value\":\"88171586599\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cL6uvK9 Rref 9zCOlZH xEfXIRG nEt0 kWd6wZ2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 02:04:36'),(1928,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ejsmonttema@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9ryxqat\",\"label\":\"First name\"},\"phone\":{\"value\":\"82561997559\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"B20taTU WCvk GoxcrHL bxHirNl zGjG qw3dKFg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 02:11:57'),(1929,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"biker-insterburg@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yaeb7s4s\",\"label\":\"First name\"},\"phone\":{\"value\":\"83817556746\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZXFj9aF hvS7 gvTnsGp eAmCybZ yH96 YKAVZGx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 02:19:18'),(1930,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nataliapetrova6077@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9ep26ex\",\"label\":\"First name\"},\"phone\":{\"value\":\"83212162511\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"l9Y7Akp 9Luw bjfLcT8 J4feg7o BXBQ FinCRWa\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 02:26:54'),(1931,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"v.ketova.83@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8cukzqk\",\"label\":\"First name\"},\"phone\":{\"value\":\"85781533533\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aqNvfRt 0stG jdIzWZH abLtBov VwEk gEG3ZXN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 02:34:22'),(1932,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"empirochka@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7fhvh78\",\"label\":\"First name\"},\"phone\":{\"value\":\"83154521832\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ifGcsEz RIEZ 7gtytuj 9GMLkTk VUhx oZmuEmO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 02:41:40'),(1933,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"misha.syrovatscky@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9h3ssrm\",\"label\":\"First name\"},\"phone\":{\"value\":\"81978959553\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8HZFKoA a2fS ScneV1z 1S7RG8b o81p C430S1b\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 02:48:55'),(1934,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"snegirev-sss@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd3jootm\",\"label\":\"First name\"},\"phone\":{\"value\":\"83846674468\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zluQImG In0B ZSGcaCs c6MUr09 Ubv1 lonQaZj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 02:56:10'),(1935,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"egormaksim@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybroleqb\",\"label\":\"First name\"},\"phone\":{\"value\":\"83915271853\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JS297wW P6wj o4LbRu7 qt2pwHX 11k4 Niao4BC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 03:03:34'),(1936,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"golosvit@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y78bwpf4\",\"label\":\"First name\"},\"phone\":{\"value\":\"86672333785\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FYSHlOx LwHJ MbRUV6A DGYh8c7 s7ES r3SuJuN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 03:10:54'),(1937,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lena5454@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y84bmz9u\",\"label\":\"First name\"},\"phone\":{\"value\":\"82145288423\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UKsfeJO vsS4 Z76LoAM hvAkaAC 9WSw rn8DV4c\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 03:17:59'),(1938,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"emaria23.09@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yag3jk6s\",\"label\":\"First name\"},\"phone\":{\"value\":\"84321981932\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pfHXEn3 4gtY KhfqHi6 AMzOOPy ATGk 10qfOTd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 03:25:26'),(1939,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"is.l-zv@ya.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybftrmvv\",\"label\":\"First name\"},\"phone\":{\"value\":\"83641347163\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7kduiCm 9c7I nRArLEF trGS0bs H8xe 5arujlP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 03:32:40'),(1940,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tionee23@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb38gjol\",\"label\":\"First name\"},\"phone\":{\"value\":\"84566951422\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"igFlfqB d2nh v45ShXf O7mgeZX Fpom t7edr9L\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 03:40:00'),(1941,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tania.alekseev2017@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycq4u8qs\",\"label\":\"First name\"},\"phone\":{\"value\":\"85357559377\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vWbDWfv L8bM lbRDvJV 1ixZTv7 uNKj use9kmH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 03:47:12'),(1942,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"miss.masheerik@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y79ar647\",\"label\":\"First name\"},\"phone\":{\"value\":\"88624544416\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Fcwo8kk JcL2 jsVp2ZP XvlMcaz J8ha TIsSrpI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 03:54:26'),(1943,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ubelova804@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9u6br4f\",\"label\":\"First name\"},\"phone\":{\"value\":\"87834791715\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Q96ar4Y puV1 cHkTMbd syt4wtI gb2w 3ENmrJA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 04:01:37'),(1944,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ilona.verstak.kud@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8ypqesx\",\"label\":\"First name\"},\"phone\":{\"value\":\"82265936596\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aXsCX7N 9glj xbl2csi nwI18ZJ aFto aVbOc69\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 04:08:55'),(1945,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yserganova@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y6ucfnpn\",\"label\":\"First name\"},\"phone\":{\"value\":\"84173116298\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AieZuCY nRkV hTMAPHJ dfYe9aq N10S cMxFhFG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 04:16:10'),(1946,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"voronkovegor35@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya5emn2q\",\"label\":\"First name\"},\"phone\":{\"value\":\"81252659933\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"npmBqUZ YjXe HvWprkm BLbobd7 Mn6o 2eNfiJf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 04:23:43'),(1947,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"covalkova.olia@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycx58egf\",\"label\":\"First name\"},\"phone\":{\"value\":\"81158827552\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9CWaCu1 Dt6Q SSXOVft vjuHP1T pgO8 4exGWxP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 04:31:02'),(1948,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"erandiwathsala10@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9z9pnzx\",\"label\":\"First name\"},\"phone\":{\"value\":\"83978667854\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HjEIj3w HhM1 YyLnbv5 5OQwcvc nGOr DHnPwze\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 04:38:22'),(1949,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lu-anastasia@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya8ukseo\",\"label\":\"First name\"},\"phone\":{\"value\":\"83763145528\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ueK7rRQ 4t6e JRNsK5Y BFkxD0h qv9x S5PclR3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 04:45:34'),(1950,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elenapavlova143@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8lb8hy4\",\"label\":\"First name\"},\"phone\":{\"value\":\"82283964873\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"D3FB9Ft DE8u 21kQYGI UmVInMd ehK1 CvkOJWu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 04:52:46'),(1951,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mirvam7000@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8f445v3\",\"label\":\"First name\"},\"phone\":{\"value\":\"87154516175\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8DWaONp eaBe kHhENJR OnOInjQ 1vAI uTvKELd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 04:59:59'),(1952,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ovcharenko.nat@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycurlep5\",\"label\":\"First name\"},\"phone\":{\"value\":\"81198543477\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mwcczbA YCKI IGdVK8L AxNSncv zA4G 7koejlZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 05:07:22'),(1953,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ranger00@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9atohol\",\"label\":\"First name\"},\"phone\":{\"value\":\"87858291516\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5mKoYxZ nwNT 1kMy18S kDAGaqy KcBI gIxHSIZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 05:14:43'),(1954,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"maryam.zanibek@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycak2uj9\",\"label\":\"First name\"},\"phone\":{\"value\":\"84299799769\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"erPMoL3 NLNQ FkXUQLo PRQkuiX YkK7 mUpM8sj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 05:22:22'),(1955,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aegev3@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yaehe3a2\",\"label\":\"First name\"},\"phone\":{\"value\":\"87847163599\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pRmTMyP c08x SgGqMmL pZRDoVI o174 8gUjf10\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 05:29:42'),(1956,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"cmat5005@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yatlwpb6\",\"label\":\"First name\"},\"phone\":{\"value\":\"87143828225\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hUls4gp vkUT UDH9lUB i3D7KbF 4KMt Box1P8A\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 05:37:02'),(1957,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ssr-08@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9nbx6un\",\"label\":\"First name\"},\"phone\":{\"value\":\"81989168391\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2ctcrzA cHGz Fx3vv8E bfBicdc 9MkW DTgg9AV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 05:44:23'),(1958,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lvv2100@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ycpbcudv\",\"label\":\"First name\"},\"phone\":{\"value\":\"88812883414\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gnnLXgn mguH vSLKmeP TgVAw2Q rXyS 6qrxwib\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 05:51:39'),(1959,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"victory.romashko@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yaa7vjz7\",\"label\":\"First name\"},\"phone\":{\"value\":\"84474874259\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"N537qjJ RCFJ EchDvkT bALC0DV e0pf Du1AdcY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 05:58:54'),(1960,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kostanay2010@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7r5msxd\",\"label\":\"First name\"},\"phone\":{\"value\":\"83396748391\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FH1RtHp nike PGMucTX KIppOji xi3J SQIKHQw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 06:06:17'),(1961,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lakhman1968@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y97j3elt\",\"label\":\"First name\"},\"phone\":{\"value\":\"88252291188\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nGANrMn Zuvg 93diwzF grUi1g8 iFD6 VsHzOng\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 06:13:46'),(1962,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sargin1716@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7rp4pc2\",\"label\":\"First name\"},\"phone\":{\"value\":\"85231281464\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"60g5k0i Dogd YQ1dHbT pNtzPyh DRhW 3dRqxOZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 06:21:07'),(1963,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"2543900085@ukr.net\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8po8oa3\",\"label\":\"First name\"},\"phone\":{\"value\":\"87243741525\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EAALHK9 GONM 9qza1Qw mlZqKHb mFSu 8aFwi0P\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 06:28:39'),(1964,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aidosmayletov6@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yav3ocrr\",\"label\":\"First name\"},\"phone\":{\"value\":\"81233229638\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BUAplgk HerP LyrxQiR bX43Q8C qbbE vW32bye\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 06:35:55'),(1965,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kseniamaxim@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybpgcftq\",\"label\":\"First name\"},\"phone\":{\"value\":\"81463452783\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"s5dLUSF 2Qui 47Hxp3j 0jMNsF4 w4hR 4ATBs2B\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 06:43:14'),(1966,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olga.ergin159@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybufrkhe\",\"label\":\"First name\"},\"phone\":{\"value\":\"89747536992\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uBKSMjz ijKJ dRgcOSV VvGvFHn VmGN VUOZYib\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 06:50:22'),(1967,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"stepan.ahmetzyanov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ybt2sbps\",\"label\":\"First name\"},\"phone\":{\"value\":\"89781563946\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uGoMprs 7852 dhwYsdK jUmBy2y XJDa A4eqAQj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 06:57:34'),(1968,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexeiivan.1963@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yb75jk62\",\"label\":\"First name\"},\"phone\":{\"value\":\"86575849251\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"H32b5xk wN5w LQV6XtE eAPLP94 y3ic ZaQoKMv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 07:04:50'),(1969,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"necmarevvlagimir@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd7pmz4d\",\"label\":\"First name\"},\"phone\":{\"value\":\"87338963242\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1PRzoxc 0eKs DfFPbHM MIS17N4 kUtt UySBats\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 07:12:12'),(1970,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gakh89@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya94n9fw\",\"label\":\"First name\"},\"phone\":{\"value\":\"84163329995\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tXxWMot NYOL oyOYVxZ SNo8d9t tdTa C3ZkSfN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 07:19:31'),(1971,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pdzozef17@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ybem5ggz\",\"label\":\"First name\"},\"phone\":{\"value\":\"82823873859\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yF5VRnV UknJ YQN2kPQ VGTpri5 1aAy 48CVBfA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 07:27:05'),(1972,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"siblux@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7ecymgu\",\"label\":\"First name\"},\"phone\":{\"value\":\"82656842498\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2S9jj4p mzXe x5vBOKg 82N5dHI Hcao 8IcuX0j\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 07:34:27'),(1973,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"amor68@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8kgrwp6\",\"label\":\"First name\"},\"phone\":{\"value\":\"88536937414\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6YorMQw ea2z XMiSmaM 4mQZ9tO 7k4E vXDD5RB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 07:41:50'),(1974,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hkfnarf@berta.com.ua\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9vvnj6f\",\"label\":\"First name\"},\"phone\":{\"value\":\"84569719572\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KlT9wcF NiZm yWwCY3G Sh250TG qqBm 97NkULY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 07:49:08'),(1975,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anisimown2001@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ya89djbx\",\"label\":\"First name\"},\"phone\":{\"value\":\"83925384498\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hRmoS8s F8H6 ewBF9py A7MsjhA zFkw DHaWkKP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 07:56:22'),(1976,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"slavaosad1976@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybmw8o6v\",\"label\":\"First name\"},\"phone\":{\"value\":\"84851786158\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ps11Nhj Cqwd EKfpTxg w91sbPM R1Kr S7W9jg2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 08:03:41'),(1977,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pipka1337322@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y6vgk6nw\",\"label\":\"First name\"},\"phone\":{\"value\":\"88451112855\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7QxhYy2 Q1Ki 3kRR6b0 Vwbjz8a MQgx E1np53W\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 08:11:20'),(1978,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"savana@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y73ap92e\",\"label\":\"First name\"},\"phone\":{\"value\":\"84387351521\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pKZWziL fmy1 e37M5yH 5ymrOJC yGdn OopWymy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 08:18:45'),(1979,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natabon@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yd3jootm\",\"label\":\"First name\"},\"phone\":{\"value\":\"87747835376\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Eu53TPJ 0YO1 hX6BUjf QWQB6AT 25gd vf9BIYl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 08:26:24'),(1980,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mfedotova93@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yd5tq2z9\",\"label\":\"First name\"},\"phone\":{\"value\":\"89211942327\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2V0QmCQ U4fQ vnegWgR 1xH2pug njcD ctIGoxe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 08:33:47'),(1981,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"solodov250885@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydbyz9f3\",\"label\":\"First name\"},\"phone\":{\"value\":\"81114639415\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UrKP8TF bdXB PgDMhsE 3jfh1b2 CaK9 Z4KTSIf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 08:41:13'),(1982,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"andrewzhukov86@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yctmkpus\",\"label\":\"First name\"},\"phone\":{\"value\":\"87417193241\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EnRKdPW Ii2P l9ZdK1d VSfkgEL csJA ACDbNw5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 08:48:38'),(1983,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hotelzuro@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycjzdedd\",\"label\":\"First name\"},\"phone\":{\"value\":\"85127839125\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"osII6MN hB6c 7qDfq35 lVU0gNw XOe3 47DbgEF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 08:56:05'),(1984,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"www.lyuka13@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y99zhkp4\",\"label\":\"First name\"},\"phone\":{\"value\":\"84961635198\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Hv2KEOo mhTa kyEScZt YHXblCH 4V8X ISsp7o9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 09:03:38'),(1985,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rocks.nitz@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8bl6xj5\",\"label\":\"First name\"},\"phone\":{\"value\":\"85487581589\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7kBtUkl m0qW zZgoBYp wAJl95g eCup gDIFUs0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 09:11:10'),(1986,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zolotinkasvetikov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd6skg7c\",\"label\":\"First name\"},\"phone\":{\"value\":\"83799441973\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"duERk8F uG3U WPp1MB6 srobsJY UC9Q DDhLRuv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 09:18:32'),(1987,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gurmail9698@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8ph6a8s\",\"label\":\"First name\"},\"phone\":{\"value\":\"83589458196\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wICSJYH 7HXv PWJnTyP OyEw4gK 9gJP aeolRoz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 09:26:15'),(1988,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kyzy1@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y72ugjsw\",\"label\":\"First name\"},\"phone\":{\"value\":\"89826341242\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZEKOjrq zefA EvO1f0e Atz2MO2 ydLR HL7HWBo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 09:33:38'),(1989,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mallenkkaya@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycf5d74e\",\"label\":\"First name\"},\"phone\":{\"value\":\"85442249528\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DJ1XU1K 0Rdb gPzwyyo OjePta8 bLbr ougOED6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 09:41:06'),(1990,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sherbinyna44@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y7v6azvv\",\"label\":\"First name\"},\"phone\":{\"value\":\"84676371565\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RTlReHn NdN4 ssYuyRU 6leDBo0 2qeg IBysCla\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 09:48:31'),(1991,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fedak.ulya99@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9bpy7tk\",\"label\":\"First name\"},\"phone\":{\"value\":\"86115779758\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bMcQcfB 52Ug LG24v8i jsMDlYN vRy1 yxw419W\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 09:55:55'),(1992,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pletinka.plet.yaroslav@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yaxbmrvy\",\"label\":\"First name\"},\"phone\":{\"value\":\"89345687166\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"a2VanlV cLKV 7kTDAsx aAw9Jad AM1a nW5J6Mo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 10:03:20'),(1993,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hazratovh70@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y89wbwy9\",\"label\":\"First name\"},\"phone\":{\"value\":\"85736798396\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ykLKMVF CSWe WxJ6LOf CN9Ggo6 wAU1 LuLeL4j\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 10:10:51'),(1994,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zolotovskaaelizaveta@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9j52dmw\",\"label\":\"First name\"},\"phone\":{\"value\":\"87595968448\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mXV8Dzi Fogg Q5e4VFK hqrwDBk 1gyI RaZvv9U\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 10:18:15'),(1995,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"katkluzheva@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybsspuok\",\"label\":\"First name\"},\"phone\":{\"value\":\"82412916747\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1t1mwfQ TSNN nFSWS3v 8qHfQAq ZFqc LA5qZWQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 10:25:54'),(1996,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kokorinaevgenia5@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya2jvqrj\",\"label\":\"First name\"},\"phone\":{\"value\":\"84994425361\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6imPMcI tEYr edkr4Lf jiuPUhI xUvv Cw2hb7B\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 10:33:22'),(1997,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sidorenkovaluda@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8vbv5yf\",\"label\":\"First name\"},\"phone\":{\"value\":\"87911471592\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yN2nATV 8iPD z8edt5r WMGxoGE 5r1w 0dVaQyK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 10:40:43'),(1998,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lelia171@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ychy9mnz\",\"label\":\"First name\"},\"phone\":{\"value\":\"86773783519\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NDhPInv Bjrr nEDaCkh ZGfaA1K SMyF vq8BmFR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 10:48:03'),(1999,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"waganpaw@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8leq7z8\",\"label\":\"First name\"},\"phone\":{\"value\":\"83379794315\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AempEGn KGFv E4dJgEq JKMCob9 fRq1 byv0dM0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 10:55:23'),(2000,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bbagi881@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yak47b5d\",\"label\":\"First name\"},\"phone\":{\"value\":\"88937745691\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"c2LIYma FNE1 Pd3TBYN MdObxXb 8eDg d2nFQ7v\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 11:02:47'),(2001,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oksprokhorova@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycmetmdm\",\"label\":\"First name\"},\"phone\":{\"value\":\"85585352598\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XP7nJUt SE2L s49KYZz 7C3Hr2Y 6lFO i1SphMS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 11:10:11'),(2002,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"val19801980@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8ddhpl5\",\"label\":\"First name\"},\"phone\":{\"value\":\"85678975781\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7ZQmR1p 7wnY hCefi3h 4lmRM2I epat I52kWDT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 11:17:36'),(2003,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hamzatovazula@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ya55ru9g\",\"label\":\"First name\"},\"phone\":{\"value\":\"85536195199\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"s0dSXTW W555 HdjD91y vIY7Hu4 1j14 XnoJIza\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 11:25:14'),(2004,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tanysha44424@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yb7atmf8\",\"label\":\"First name\"},\"phone\":{\"value\":\"81367743417\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"suAh9sL 2iGF 64MKdNi c4hf0nH FdhU QcS2ljN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 11:32:37'),(2005,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sibabaskey@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydf5nnup\",\"label\":\"First name\"},\"phone\":{\"value\":\"81324292721\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2OthBBJ 2AOE 92kVr3u hf9d9tw 1USh gg0v4xj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 11:39:53'),(2006,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rackytem@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd9zya6d\",\"label\":\"First name\"},\"phone\":{\"value\":\"82169674887\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"I2nV3Zf a92c sHbf8bh 9DSzkJG 0H5L oIHUY5e\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 11:47:15'),(2007,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ginslyu@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya4on27x\",\"label\":\"First name\"},\"phone\":{\"value\":\"83928645755\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"meu54X9 oKQ0 o1VtLu2 7g9drrP kt7v U6NhZmn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 11:54:35'),(2008,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"karginamaria50@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7p9qce9\",\"label\":\"First name\"},\"phone\":{\"value\":\"88712916458\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"E0oNf1k 8Mbm NpW1txh MTGew4D hDic WFcAUas\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 12:02:00'),(2009,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sergejbusilkin@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8vq3x3v\",\"label\":\"First name\"},\"phone\":{\"value\":\"87371966999\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"j4jQQjx qWzE Osmzz57 16T4JBC 2xTs hu8COeX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 12:09:27'),(2010,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"seregaulun64@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yb96q5yc\",\"label\":\"First name\"},\"phone\":{\"value\":\"87128111975\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5KsTrtU JAkv gtgwuqt pYYP7nU 2igy ESdb1qP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 12:16:53'),(2011,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"artur.ganeeff@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y99pkyqc\",\"label\":\"First name\"},\"phone\":{\"value\":\"81766294129\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VSpdPSA LV9K v2kEZQT EtTog4E KZdk mIFbpa3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 12:24:38'),(2012,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"osukopokuso@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yaoq2b7m\",\"label\":\"First name\"},\"phone\":{\"value\":\"85591493775\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JIbxAI0 oScp DfCdLHE 5W8koue oUB8 RsFoaLV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 12:32:08'),(2013,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dmitrijkotegov@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yafmep4c\",\"label\":\"First name\"},\"phone\":{\"value\":\"85256459466\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ibbuE3w 9KyG tABbuNx xwu5pa5 V67a SNdWGSz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 12:39:34'),(2014,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lord-protektor2009@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybsgdee6\",\"label\":\"First name\"},\"phone\":{\"value\":\"85232852374\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bS6ZN9q m52A W9xhVf9 h6JSGfC YbHW 8tHN08C\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 12:47:05'),(2015,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kolesnikovu924@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ybqkgvs2\",\"label\":\"First name\"},\"phone\":{\"value\":\"85591236778\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dN3a3Zb a9bE usBwlgN P7wd1Qf 7g6O GX7EZNF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 12:54:27'),(2016,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tairovan@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycgbayrp\",\"label\":\"First name\"},\"phone\":{\"value\":\"88747211555\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oH8aVIL NAi4 M1NOwHC d1otC5k MkjJ WMztyKu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 13:01:55'),(2017,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"e.mazepova@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ycorjhnc\",\"label\":\"First name\"},\"phone\":{\"value\":\"82471878444\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sl8a9e7 as3B uSS9tZd PDgVWkV Qdo1 BavGhAN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 13:09:28'),(2018,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"plamadyala159@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybm7goj3\",\"label\":\"First name\"},\"phone\":{\"value\":\"84845289916\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Rum3gTg tvp5 Zy37pk5 8EKEtXV Bo9k JGNB5vE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 13:16:59'),(2019,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bulavin0979253684@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybjjs9c4\",\"label\":\"First name\"},\"phone\":{\"value\":\"85556995152\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uC1N8ek GAbr hJWgwch YD0RXv5 jvzq q8QTDzl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 13:24:41'),(2020,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"katleta2005@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydbvkbc4\",\"label\":\"First name\"},\"phone\":{\"value\":\"85148425247\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bHC8gKk aiym FA4g6gd ReT45mq M3yy zXYXafr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 13:32:07'),(2021,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"manna.bubai2@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7m4fbkn\",\"label\":\"First name\"},\"phone\":{\"value\":\"85767564979\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0vf08WS PDfc kLF1tIi 5H5jtKr vnkR n9KZSmx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 13:39:40'),(2022,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mazhar38705@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yd5z9p3t\",\"label\":\"First name\"},\"phone\":{\"value\":\"81661371823\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aWAyg02 Gjon aW6yIJu GmCuLgG 0iJI exwWHFo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 13:47:11'),(2023,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"xpyct1994@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya62tw6h\",\"label\":\"First name\"},\"phone\":{\"value\":\"81116671939\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5K771o4 TvZO uo2qlDo rVAGOq2 0HoM tn8RhnF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 13:54:40'),(2024,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"katiewmaga@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycqmjrdf\",\"label\":\"First name\"},\"phone\":{\"value\":\"82384555888\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QvC2yo5 P7cI 9XDYHOr w6grPf8 wylV VvVwvbO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 14:02:08'),(2025,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sparki.pg@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7awl7m3\",\"label\":\"First name\"},\"phone\":{\"value\":\"89159784946\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"X2cbrfG G2tC 9L68Mko f7ZjOzU JLXw TvGcOjL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 14:09:34'),(2026,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"akorneva441@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd996hd3\",\"label\":\"First name\"},\"phone\":{\"value\":\"86186328774\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AxO3A6l N61t vRPgXgn JRuvTun 7DLn rZqW4I1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 14:17:04'),(2027,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lena-a53@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycyz7n8y\",\"label\":\"First name\"},\"phone\":{\"value\":\"84635439422\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tdxeYms O5rP 0kkGAcn ISynoNS QM5Y 5F1jnPn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 14:24:48'),(2028,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sergeikryu4kov@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9m3bxfa\",\"label\":\"First name\"},\"phone\":{\"value\":\"85467191112\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FBFDdqM qcYJ lxuqe4b JSFNqhl NKwp c5eguqr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 14:32:10'),(2029,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"WilliamEffer\",\"label\":\"First name\"},\"lastname\":{\"value\":\"WilliamEffer\",\"label\":\"Last name\"},\"email\":{\"value\":\"vasiliidubov4728@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u041f\\u0440\\u0438\\u0432\\u0435\\u0442 \\u043d\\u0430\\u0448\\u0435\\u043b \\u043a\\u043b\\u0430\\u0441\\u0441\\u043d\\u044b\\u0439 \\u0441\\u0430\\u0439\\u0442 \\u043f\\u0440\\u043e \\u0430\\u0432\\u0442\\u043e\\u043c\\u043e\\u0431\\u0438\\u043b\\u0438 \\u043c\\u043d\\u043e\\u0433\\u043e \\u043f\\u043e\\u043b\\u0435\\u0437\\u043d\\u043e\\u0439 \\u0438\\u043d\\u0444\\u043e\\u0440\\u043c\\u0430\\u0446\\u0438\\u0438\",\"label\":\"Message\"},\"phone\":{\"value\":\"86185773943\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"178.168.220.14\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 14:37:24'),(2030,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"svlina@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yaokp8vg\",\"label\":\"First name\"},\"phone\":{\"value\":\"84881813477\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2MFNaDz S2lu 1W74B8P caSIOJF DeEJ GO4b8Ze\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.140\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-22 14:39:35'),(2031,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hholcombcessar@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"num1592363krya\",\"label\":\"First name\"},\"phone\":{\"value\":\"83591625695\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mis1592363errtbh e0b1sch V0cx Hv6gRlw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.59\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 00:52:06'),(2032,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sergey.vid@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y6w7zwof\",\"label\":\"First name\"},\"phone\":{\"value\":\"85728972612\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QljBcIf O0yD qw0woqF avKf1nX gE95 CPeu1pQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 09:50:58'),(2033,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natalikakriv@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ya2hd8f5\",\"label\":\"First name\"},\"phone\":{\"value\":\"82743186466\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bLnCRyE t19z VS5oQTj AouNxPw UMEf H8DYeqz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 09:59:49'),(2034,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"khakim1984@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y75wcte3\",\"label\":\"First name\"},\"phone\":{\"value\":\"82835381644\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vZEEjZP zNqe cprnBd0 OwlEfce VUAH fftVFsp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:08:22'),(2035,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"piercing59@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9cjgrb8\",\"label\":\"First name\"},\"phone\":{\"value\":\"87381111563\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vc6PmRf sG6j Qw6Psij D39GjWy 60TR LaQqW9K\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:12:41'),(2036,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nehodka.97@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybkle6uw\",\"label\":\"First name\"},\"phone\":{\"value\":\"88479443448\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HaJGe0o Y8UA zoFiEQm b957wAD ibU2 UrgxazA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:16:14'),(2037,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"porozova-lp@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb2jf6uj\",\"label\":\"First name\"},\"phone\":{\"value\":\"88789793156\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zLu4mqK 3eC7 HMSIa43 xniYgNf Liyk c6rc2MP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:19:43'),(2038,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"belkov.seregej@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7e2dn38\",\"label\":\"First name\"},\"phone\":{\"value\":\"86662176819\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RtggFSq TM3H Gufq4Pr geQg1Fg vfBh FofnKJJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:23:58'),(2039,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mavrodal3@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9tj88k9\",\"label\":\"First name\"},\"phone\":{\"value\":\"89982295873\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DzFEm4d hKnL 3GiVtdk nGh5pfA jxcL onOhqqU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:25:04'),(2040,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"annakolisnicenko90@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y759cbfb\",\"label\":\"First name\"},\"phone\":{\"value\":\"83244557595\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"z3TqfIe y2q1 a2Z7TGL VylbPWc hnnh mpq5Yw1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:26:48'),(2041,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexandra.uryevna@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9z942cg\",\"label\":\"First name\"},\"phone\":{\"value\":\"82413334238\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"z6jGrvB qDzt DHVKzOq yDI1eoT hCfc WKo4jkX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:31:22'),(2042,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"photo.openbeauty@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybadm4td\",\"label\":\"First name\"},\"phone\":{\"value\":\"81339529493\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DeGa1pA wU9D 1oZzaXu p34j1DA 1yx4 UqpsSXg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:31:34'),(2043,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"m.maghularia1974@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycyn588d\",\"label\":\"First name\"},\"phone\":{\"value\":\"81129865736\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gseTqn2 ax5v 6Fn7xeN Vm2hY2s HxB0 wYGri4N\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:33:40'),(2044,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"airatabc@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycy5l56k\",\"label\":\"First name\"},\"phone\":{\"value\":\"83128653352\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SxyJpxD evHc Hqx1LEs vr56snp 0jRa W6pqgmG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:37:44'),(2045,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"viktoriadudareva180@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9alsu3y\",\"label\":\"First name\"},\"phone\":{\"value\":\"81819597861\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MMtMFNs 6h9E Dyk7pWa 0SVdgCD ozoc wqAQgjf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:38:57'),(2046,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"soldat174.89@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y86cywet\",\"label\":\"First name\"},\"phone\":{\"value\":\"88488243671\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eZhvbxR P3jZ ZYjW83w ocqXgY4 TJSv ldeDS5t\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:40:34'),(2047,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"juliaaxmad06@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yaf6agzr\",\"label\":\"First name\"},\"phone\":{\"value\":\"83397654737\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qzxqOdD nK7V W6SIZUM S4EAMa7 W5Hw jz85QY8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:44:14'),(2048,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"myrtelicht@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycxgro6h\",\"label\":\"First name\"},\"phone\":{\"value\":\"88497866734\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WIQgkiC JU6n 6WMEXar TlXQDQG XNVa 3J1kzIp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:46:28'),(2049,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rizhkov.av@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y6u9t8aa\",\"label\":\"First name\"},\"phone\":{\"value\":\"89715333788\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Fm4bGCh Ja7x b0VKkn0 NzOg5Yo 1shW NFQbP2Q\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:47:30'),(2050,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kiselevskijpavel921@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycydgfyc\",\"label\":\"First name\"},\"phone\":{\"value\":\"89768853384\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aJcwC1m 09b0 ZrMQjyx mJf9WXS gizh NFK5Pum\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:50:30'),(2051,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"cam1997@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y954spal\",\"label\":\"First name\"},\"phone\":{\"value\":\"86574656389\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mlv0iP0 aaEw K044XyM EdxGiux mZwC G3h1OTf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:50:30'),(2052,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"s4298@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8mejqcy\",\"label\":\"First name\"},\"phone\":{\"value\":\"88456481797\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4PaZ0Yl xvhH sy5RlgF 3dQiCJf 5ydg GTQHXAc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:53:59'),(2053,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"asiakhuranova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yd86tfcj\",\"label\":\"First name\"},\"phone\":{\"value\":\"87155274812\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4jaMjSr 3Xbt kMcwGQN TYVvVM7 JXdL YjIxyry\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:54:12'),(2054,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"msk-trifonov@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8x6sflo\",\"label\":\"First name\"},\"phone\":{\"value\":\"85632328521\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5tmwJq5 TPd8 OhqKu2C Ytcih19 hl33 9qiEGcG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:56:45'),(2055,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"katish983@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycu4bf2s\",\"label\":\"First name\"},\"phone\":{\"value\":\"83761591828\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jebYcxQ PMP2 cNyGB8C XwfsWXt uvSh FoLmTO2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 10:58:55'),(2056,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"petrova.56.irina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8zdv5ah\",\"label\":\"First name\"},\"phone\":{\"value\":\"83996847634\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rTqQ5wc NGSC TD0WagN dwmAaXV dcAJ erPDbei\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:01:10'),(2057,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marinakucher@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9qtmt6d\",\"label\":\"First name\"},\"phone\":{\"value\":\"85451148861\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nmvmrKr sqR4 5n5zeAt ttWHCal nnBV XrYHXBQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:01:14'),(2058,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dmit.vahruschev@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybt7vcby\",\"label\":\"First name\"},\"phone\":{\"value\":\"87128691112\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ih4TVV9 Azi0 WhdZccl tSK6exA jpXD lKBQLuH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:03:04'),(2059,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"viktoria.nikiforova2005@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7hat3bp\",\"label\":\"First name\"},\"phone\":{\"value\":\"87616519756\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bn6FU4f bXow aSzK7TY kGHlwE7 aFsv Yq4NYM0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:07:32'),(2060,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mr.gorbunoff2014@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yakfpnpg\",\"label\":\"First name\"},\"phone\":{\"value\":\"87942258636\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mzFEPh6 qE3U 5QgkA4Q z6FPPTf 52PO ykMjLFT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:08:01'),(2061,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"abzaev078@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybjtm7a4\",\"label\":\"First name\"},\"phone\":{\"value\":\"81192261752\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"InTcbGt zY7o eUfS07b u3n58ys Rvih VjZQHJv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:08:16'),(2062,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"baborykinm@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9u97tg2\",\"label\":\"First name\"},\"phone\":{\"value\":\"87689561636\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1llUs57 AoYL enlXHps IehDkp3 CgNG ZPsgEBv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:09:20'),(2063,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"khachatrian022@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9f5cuq5\",\"label\":\"First name\"},\"phone\":{\"value\":\"84214135238\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xYStgEX 5xsu C66830d WBtq26v 0C5G mEPFGpI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:14:58'),(2064,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rahimalfaelit@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8uu4lqf\",\"label\":\"First name\"},\"phone\":{\"value\":\"87276754329\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZAorx3Q SnQE qfWXQK6 FAeJzj3 hPrE 48rDpfn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:15:28'),(2065,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"apofeh@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y7x85p5k\",\"label\":\"First name\"},\"phone\":{\"value\":\"81937196129\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IYY5rOX Y5SV KHQr8nu n1h62mM xWJ5 WZzXLAa\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:15:35'),(2066,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"intek-dima@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8o9eynn\",\"label\":\"First name\"},\"phone\":{\"value\":\"89568422796\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WGzeGPj soEi EbdF2DX h1dBKr7 giVP wPnAHCH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:15:59'),(2067,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"katrina200555@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yajfqxam\",\"label\":\"First name\"},\"phone\":{\"value\":\"87843572878\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yOX8b65 Ce7q i0Vf0oQ ee7Pr7m j689 4D7Xhx9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:21:45'),(2068,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olka36755@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ycohyfan\",\"label\":\"First name\"},\"phone\":{\"value\":\"87543672715\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JEKyi2G jXdl Y7811Pz jrqgFhB IpBT i8W20nl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:21:57'),(2069,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nlsherev30@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8v2a5kq\",\"label\":\"First name\"},\"phone\":{\"value\":\"89996384797\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HNRFF2T tXrM eCrMe9b QJTPpaC PUxw ETVQGej\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:22:59'),(2070,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"collinswalters101@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybm9rudm\",\"label\":\"First name\"},\"phone\":{\"value\":\"85728878115\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"S35NXcv IdAA g91WGj3 aQ7yOUJ O0O1 wwQx3yg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:24:20'),(2071,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vvaleriyev@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yclzvb36\",\"label\":\"First name\"},\"phone\":{\"value\":\"86741461797\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xUF8ku2 iWVv EwsEnBz PPmxWZZ tDcL AAurKZo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:28:07'),(2072,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pavlovurij81@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yah3qsc6\",\"label\":\"First name\"},\"phone\":{\"value\":\"87489629194\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5iE8Y0e aC8e 3AOzORS UFc6P64 oih9 vV1fqFm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:29:05'),(2073,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anastasiaspicyna81676@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y6vtvs63\",\"label\":\"First name\"},\"phone\":{\"value\":\"86929341667\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JFm6qCD og9J KbvmwVF WFu18nP UGGY kb1ODLT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:30:33'),(2074,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ekhamadeev@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybswtfb8\",\"label\":\"First name\"},\"phone\":{\"value\":\"83114474651\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uF8zyR4 eEWa I1A87qJ 00a5ZJh 1xTg ABU2lse\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:32:55'),(2075,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"galymjan.93.2018@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8vk49m8\",\"label\":\"First name\"},\"phone\":{\"value\":\"82781777437\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"i8kPJc8 QxYO BYAYDO7 nO1s0Dl 8bky cIAgWYk\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:34:26'),(2076,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"supan_prabal@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7v7ndf6\",\"label\":\"First name\"},\"phone\":{\"value\":\"84682791676\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xg6kPiZ VolA Kos4leF MTlP7Kp NuoC bRtlCxN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:36:04'),(2077,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elena.rabota.rgs@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7oa5p4r\",\"label\":\"First name\"},\"phone\":{\"value\":\"82594351936\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OKl3n74 sDKi wt9WqXq 3mOXXbV VwHQ kSRx2Su\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:37:56'),(2078,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"belkashadow@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yayws8ad\",\"label\":\"First name\"},\"phone\":{\"value\":\"82963149393\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mONmmnG WrrS RNdH2qq tVbVbi5 Ojfw v7bgeLd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:40:43'),(2079,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"artem2144@ya.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9bov5qs\",\"label\":\"First name\"},\"phone\":{\"value\":\"85557449317\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wz4INQk xUfo e7E5r7K DvtCrhE h5jt BdEe7Ge\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:41:24'),(2080,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dasaancenko0637@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9dunoap\",\"label\":\"First name\"},\"phone\":{\"value\":\"85119925163\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tiB04UH 3Fsn TkXmzNc bSqbQl0 EQT1 sQUJsKl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:43:01'),(2081,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"big_mike_414@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybw5kr7x\",\"label\":\"First name\"},\"phone\":{\"value\":\"85629789412\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lkQZrbu GusG a2AdPkw CSDteAc OoGl W4omOWn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:45:29'),(2082,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hill5959@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd7edpdh\",\"label\":\"First name\"},\"phone\":{\"value\":\"84345374114\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GAZP6ph BwUi tdOFoHP WQXtqvQ 3JkH Iy8oEIW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:46:53'),(2083,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"harbinn@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yblvztny\",\"label\":\"First name\"},\"phone\":{\"value\":\"86647766892\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mXSPPd3 OHHw QUyS1rY LH7jvgC 4oGq GO81cnr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:49:48'),(2084,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"karel7956@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycxgqr3z\",\"label\":\"First name\"},\"phone\":{\"value\":\"82376653353\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"w84wD9A rvEP QRbIoZ4 iXHjRXc F0mW 7Cq61x7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:49:55'),(2085,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"saydulina.n@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybf2lndh\",\"label\":\"First name\"},\"phone\":{\"value\":\"81887719656\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uRb1fVj wm6J KYetLvp NidyvUT KPlH JLi4H9h\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:53:03'),(2086,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tmenovavictoria16@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycu4oq5y\",\"label\":\"First name\"},\"phone\":{\"value\":\"82773926234\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"V0sVWey IUhD wSoLlS4 n8rqMm2 CO5p 7iohzqY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:53:11'),(2087,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"abdulloevbahtovar94@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yayrcngd\",\"label\":\"First name\"},\"phone\":{\"value\":\"85172867545\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"N9Tha3g 2A8K c6tqMky m67Q3ms ud7K 9jai6LO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:56:54'),(2088,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aleksandr142005@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yczl8adk\",\"label\":\"First name\"},\"phone\":{\"value\":\"84871279271\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"U7RmTg8 eBxH L3BoHvY VlEVUMW 0Xwj 51IySOW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:58:10'),(2089,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"iggor7@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yddefmfa\",\"label\":\"First name\"},\"phone\":{\"value\":\"81383722196\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"a3aEFMH r2WX nawTGwz jEJqFeK Lorr CLhzrpY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 11:59:19'),(2090,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"summersashka@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yag83fsm\",\"label\":\"First name\"},\"phone\":{\"value\":\"83959643474\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"x3gnfou BjfF u5bu6az rg3UcBn qf6F Gy8tUqz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:00:35'),(2091,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"azalij.irina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yc48jp8q\",\"label\":\"First name\"},\"phone\":{\"value\":\"81252485337\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TmGF03n svZZ vpfO68d 0VdF5oy DulU borogxA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:03:57'),(2092,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"karlygamahanova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yagh2r3r\",\"label\":\"First name\"},\"phone\":{\"value\":\"88914443716\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"R7NkChz ltCO EJJPcer MqVSh61 8bHx QK8eiNg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:05:34'),(2093,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sheketeral.1996@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybm9rudm\",\"label\":\"First name\"},\"phone\":{\"value\":\"81693623758\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oOW1a2v l60a 6UYC0bS Y9OMFvE P2RT eA2xq9t\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:06:36'),(2094,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aakulikov86@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yacufcpu\",\"label\":\"First name\"},\"phone\":{\"value\":\"86261591775\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Tq1zSgU Zb6U SifhB8F yF88odR WHEM DEdejSP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:08:08'),(2095,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"katrinworks@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybay8ogx\",\"label\":\"First name\"},\"phone\":{\"value\":\"84527653982\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nUbVItp OgXd 9wW5NoX UWGjuaz g635 fMdOT2E\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:11:01'),(2096,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mantasgu@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd64w762\",\"label\":\"First name\"},\"phone\":{\"value\":\"88634841976\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lGxXP22 zyHO 5Ftyp5W eDaxLdJ O8kh cIGZiP6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:11:53'),(2097,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"igornevdakh777@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ya84mb4b\",\"label\":\"First name\"},\"phone\":{\"value\":\"82277982848\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8ZpOXX7 lJLT aOZbb8H dwpHWvu xgPe 09IoCkU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:15:22'),(2098,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tin906@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7vsvjlt\",\"label\":\"First name\"},\"phone\":{\"value\":\"83248715842\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"W4AlNWw 68sD rSP5oBi ECOsj9s iy8H aHRs8LE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:15:33'),(2099,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vladimirnasteka033@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8rcso3w\",\"label\":\"First name\"},\"phone\":{\"value\":\"82919146326\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"diW7i7Y sISF FItK5Xj FS1fW5r HjgR FHXnSci\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:18:04'),(2100,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ilia-gold@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8q5flz9\",\"label\":\"First name\"},\"phone\":{\"value\":\"87744112121\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9e9R5iI yJJS 1sZfl4z gObgksJ chfv 1AhRScE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:18:07'),(2101,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"petr.levin@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yabozz2j\",\"label\":\"First name\"},\"phone\":{\"value\":\"85157351981\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lLAeMY4 2ntN 6Yl9qEx zVK5L6u y8fE jruDylD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:23:10'),(2102,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kham53@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8hhk5y2\",\"label\":\"First name\"},\"phone\":{\"value\":\"87316433487\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"P1LSoHr mhEL mIGR82r ZsGh5Lv b42C 6DyHLZa\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:23:48'),(2103,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kovalko.olga@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9khdy9y\",\"label\":\"First name\"},\"phone\":{\"value\":\"87657839275\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qdk6BO3 RW8I yU8vsJd uGZfySL 4JwL C2Khlaq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:24:19'),(2104,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ninameserakova03538@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8bfyrjl\",\"label\":\"First name\"},\"phone\":{\"value\":\"87655669837\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VeHlSxp 0TEe xo12C6l 2ZhxdEV 1T7B jztkQDG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:25:16'),(2105,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"barkhatovd@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybn3u5ak\",\"label\":\"First name\"},\"phone\":{\"value\":\"89724976967\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"F2JCvSQ 1ADk ZJegRuc dDeeESm c1iF LVhTlrs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:30:30'),(2106,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"uzairsaeed68@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y88t6l7n\",\"label\":\"First name\"},\"phone\":{\"value\":\"86892885855\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DONWWH1 tumc d15wEeP GkRKWHd hn2B bQHY975\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:30:46'),(2107,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gleim1990anton@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7x6cgaj\",\"label\":\"First name\"},\"phone\":{\"value\":\"86524631574\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"B6fJpLp lFy2 sQp10wI bwtVIR4 bdTt BI8buwh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:32:12'),(2108,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pochuewa.ksenia@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yb9lgr6c\",\"label\":\"First name\"},\"phone\":{\"value\":\"84457996173\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gOmoyt9 fHgf dns6nDF sbUNSyN ahbW ZI24YH5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:32:42'),(2109,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"paveldtn76@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yarzc7za\",\"label\":\"First name\"},\"phone\":{\"value\":\"81994567149\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"J4Hf8pB kuCG V5ne0N8 Dky0Zkf UtMs 1I019mR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:36:56'),(2110,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anorboyevnuriddin@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd4jzanf\",\"label\":\"First name\"},\"phone\":{\"value\":\"83479918269\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2csofRQ 3Ppj i8SgaQE ufItRS2 NkRQ WsH4kKa\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:38:16'),(2111,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sataa1@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8wwv2tx\",\"label\":\"First name\"},\"phone\":{\"value\":\"81197275621\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"n8n9dth 69rx M0lzK3K KgEb3jd 5i4A U38PYOL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:39:09'),(2112,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"maradona1086@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybfa9nhh\",\"label\":\"First name\"},\"phone\":{\"value\":\"84237935623\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6o7FjhT n0Lk s8LnfvT E0icr9q rxMW UqNwjZ9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:41:35'),(2113,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"masharipov95@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yajtg8vl\",\"label\":\"First name\"},\"phone\":{\"value\":\"83414622842\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FxxINDX G7q1 FNOo86p ExdCSVT YnLD ny2ISp3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:43:18'),(2114,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vedeneev.ilya@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yc2zfsgb\",\"label\":\"First name\"},\"phone\":{\"value\":\"84784911877\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"te6GRSV PtOU nu5O2E4 Q7GDZBs N408 9yIBt78\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:45:50'),(2115,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"slmraju@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yaedvevl\",\"label\":\"First name\"},\"phone\":{\"value\":\"87677439728\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"al18gJi 47aG HkKFa5F jwMElSM zv1a knybsg4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:45:55'),(2116,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dossymbek.04@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yd7edpdh\",\"label\":\"First name\"},\"phone\":{\"value\":\"86944673318\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NrzweiK Lf6I FQk1PaH d3vfCHO zxCP H6cvKqZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:49:43'),(2117,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"calvinkolyan@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc5ajffq\",\"label\":\"First name\"},\"phone\":{\"value\":\"85844548945\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WMxBPaE cpba DEdiQTZ clZ3sEF bul1 DtdgEXL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:50:25'),(2118,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"markpotter2008@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycaqb7u6\",\"label\":\"First name\"},\"phone\":{\"value\":\"81664637518\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gWCLaZI Z0pZ cV0CT5z TxFVTGj 1uoH 3eIIGtr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:53:01'),(2119,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"skripkrim.okorokov@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yaso4gqq\",\"label\":\"First name\"},\"phone\":{\"value\":\"87364353184\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"A8tlWcZ hSp4 jI4fSDO 4eU6890 V9TN TsukxCJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:53:24'),(2120,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"burulaiazamatovna2004@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y7nm3yfv\",\"label\":\"First name\"},\"phone\":{\"value\":\"89697429777\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UuCn4KE qLzu O1t5RlK bnb0c2i XkIe KjfEjBb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:56:08'),(2121,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"v.kolisnik@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9olxj7m\",\"label\":\"First name\"},\"phone\":{\"value\":\"86248485398\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BJbO98f T1FQ z9faKNV uUeOPNd bDCQ QyFL1p2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 12:59:09'),(2122,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"grishingrishin2012@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yc3nu6m6\",\"label\":\"First name\"},\"phone\":{\"value\":\"89789415461\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cqvNORU LPjO ZKSh8sf apvYBEG SKJD csLcsWC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:00:01'),(2123,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ivvanova1313@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y88gr4u9\",\"label\":\"First name\"},\"phone\":{\"value\":\"85733424424\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TNFPbaG m1bh vnyrpuJ gpXeVoM Mzvf OBp0Bq5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:00:54'),(2124,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oyunmira1975@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9bhop4c\",\"label\":\"First name\"},\"phone\":{\"value\":\"85616946542\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oS4bHWy 1S0T vIo6Osx 0cy91EC Fsa6 wCIn5Do\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:02:39'),(2125,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"werneragzamov@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8a5k9c6\",\"label\":\"First name\"},\"phone\":{\"value\":\"89534959875\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xGQHAHz 9IOJ WMrOKpM GysEqku VW4H vdurP9e\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:07:06'),(2126,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shaizanov.bolat@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9v3wn4x\",\"label\":\"First name\"},\"phone\":{\"value\":\"85624131196\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2bvXVPw Pa13 owqALp9 osQokgH ow1Y Erhauqu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:07:59'),(2127,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"izabellastolir@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yd84ne8w\",\"label\":\"First name\"},\"phone\":{\"value\":\"82565471178\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"p68BUaL ZkCr 53MzUUU bvii3hQ PvIH eZMuKOy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:08:27'),(2128,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natalasuraeva6354@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7kzhcee\",\"label\":\"First name\"},\"phone\":{\"value\":\"84641138339\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"npTdGrp 39L3 EHVGfeB 9Sd3QVy 8eal 6dMW8G4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:09:04'),(2129,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mmm.centralasia@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycqpae78\",\"label\":\"First name\"},\"phone\":{\"value\":\"86343568137\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WtXHHxN eK4y Ud7nur5 PFyl2bn DzVs Gx6gQxQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:14:07'),(2130,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"duboviklera47@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y84xscxz\",\"label\":\"First name\"},\"phone\":{\"value\":\"88976162789\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cdwl5jI p9S4 99sQc2q JS73OX2 GA5w pobt3TD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:15:24'),(2131,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dsumarkov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7dfvpoj\",\"label\":\"First name\"},\"phone\":{\"value\":\"86211556795\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yaeqkPB qSdN 7K0kuKO 9d4TYig zyNQ V3uuxl6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:16:01'),(2132,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ashishaev2108@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydgs3jz5\",\"label\":\"First name\"},\"phone\":{\"value\":\"81442153671\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"28qBNzX CJzq OPuIvdx lP9DbFR bEso 2gUaMYX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:16:32'),(2133,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"osuagitocoklat@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ybafdjzg\",\"label\":\"First name\"},\"phone\":{\"value\":\"89155324649\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XkzX6mq RkOK YCAWvMH szD3E7h F7T5 HMevkew\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:21:10'),(2134,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ogoddworld@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y6vhnuah\",\"label\":\"First name\"},\"phone\":{\"value\":\"81974862411\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AvW8hgJ XgrP sOX2Vub Kl6i2rE HuxE D3wWlgH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:21:38'),(2135,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dmitrijonkov1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8rs6q25\",\"label\":\"First name\"},\"phone\":{\"value\":\"83767629722\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nA2oMWa kARS K5mBqBQ YonU37o e2UL oh7Rw3K\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:23:33'),(2136,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"selvakumar_saundra@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yd9pxm4t\",\"label\":\"First name\"},\"phone\":{\"value\":\"89367772649\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LS6uk2Y JCM6 qqeApv1 LgKQCep uSpn JhIE4QT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:25:10'),(2137,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"roza.shalke@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7na54ky\",\"label\":\"First name\"},\"phone\":{\"value\":\"85162323774\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ppam4x4 21sf HOk9Wpy aq2SbXP 633t zuQqVQp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:27:56'),(2138,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"krispetrova16@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y86a9kmr\",\"label\":\"First name\"},\"phone\":{\"value\":\"83157434339\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pXEWyVA hvGs C94oEUP Zdz3Gc6 qxQI LlbvpU8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:28:20'),(2139,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kapacinskihvladislav@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycwkwbvs\",\"label\":\"First name\"},\"phone\":{\"value\":\"83547483814\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"N0cnlPl 5cFc MjND5bV WWiNMoa F7OO k3KPQ7b\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:32:05'),(2140,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gumenskijva@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y7ex8x9x\",\"label\":\"First name\"},\"phone\":{\"value\":\"86641275669\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UWEWuSJ IaKP P1nJ5KK go7wRUj m6rB F20X2zN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:33:50'),(2141,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ilgorgapparov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7qrsloy\",\"label\":\"First name\"},\"phone\":{\"value\":\"83728959888\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jturB1L 9DcH iXmeVsk dgMRJ1g KTQV BEQTK5c\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:34:15'),(2142,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dmitrij.valerevich.1993@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8ga32r4\",\"label\":\"First name\"},\"phone\":{\"value\":\"84162451445\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"B4YEv41 AKre DZUofxD EVwroHR JAsU 0I7w9U2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:35:21'),(2143,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"barnes76@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycgags7d\",\"label\":\"First name\"},\"phone\":{\"value\":\"88112525566\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EXEGyGH CYIG VugYiuy IIuXPvY CH6p WWHqhkG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:39:44'),(2144,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"panenckowa@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9m9oqby\",\"label\":\"First name\"},\"phone\":{\"value\":\"87649626396\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WmpRRLi 24YB Snho003 XTqRSLG JHJl q2TqW6N\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:40:34'),(2145,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"milioner1973k@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y6wbvwyl\",\"label\":\"First name\"},\"phone\":{\"value\":\"87197287721\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fQ1sG2S wuv5 wJ1b3gU ktBYWjV hfwE xB8WFU2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:42:22'),(2146,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kiti-kit@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7yy9pgb\",\"label\":\"First name\"},\"phone\":{\"value\":\"83992149857\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"onRMIi5 16AM LgAHBEx 60hZ8YQ M0oQ xtikKGE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:42:34'),(2147,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"danielunogwu75@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycjuzswr\",\"label\":\"First name\"},\"phone\":{\"value\":\"89454256226\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AJT4ilb QTTR tCKRHpw dFqAcgq BLtp 89lURWN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:46:50'),(2148,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"halilova.lale15@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9rqov3e\",\"label\":\"First name\"},\"phone\":{\"value\":\"89885598392\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XMtYAoL OUil DyQpEX2 HRbJeji 4QPX 0fzffWB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:47:23'),(2149,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tsarev0561@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y75xhzmy\",\"label\":\"First name\"},\"phone\":{\"value\":\"85793129494\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"j7IGSC6 40Ro AZSZhKT JQctHiQ 9smW fE70quM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:49:19'),(2150,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rustam4708@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7o2y3t4\",\"label\":\"First name\"},\"phone\":{\"value\":\"85418144922\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6U1832E nnFR L6GoE0U FJxq4JH HZFN 3Ffgn3M\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:51:15'),(2151,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"inkaramangeldi439@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7g46cru\",\"label\":\"First name\"},\"phone\":{\"value\":\"87144887836\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MbkWyzG AVPv mG6CIiP MTofTsg HBD1 wz9GgnY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:53:07'),(2152,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dasharotar16@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7ymucm8\",\"label\":\"First name\"},\"phone\":{\"value\":\"82861969867\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2RYYlnP oAUK kNa7eav PG2jRLT C0PC wWwrwmV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:54:58'),(2153,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"wladimirrochdestwenski@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9yuju76\",\"label\":\"First name\"},\"phone\":{\"value\":\"81164962693\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RmK7i8R A8yj de1l7AD ZVPv8Tc 9Axx 73IfJ2a\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:56:18'),(2154,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"giridasanlic@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydzarnxb\",\"label\":\"First name\"},\"phone\":{\"value\":\"81546488818\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fN1OOZd gKb5 Ygzt9di opxxJNH cdqv AwQEaQb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 13:59:27'),(2155,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fanatishe@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yd8q68fq\",\"label\":\"First name\"},\"phone\":{\"value\":\"84383416571\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WhahgQJ 2kdf aSZ5zW4 xyozY2z qRtD cDPIyjx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:00:00'),(2156,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lyabzin464@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9xquuqd\",\"label\":\"First name\"},\"phone\":{\"value\":\"83854951761\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5kyvEGA BRiS vI2PjGM H9nwREL GVnN N5L0ObD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:02:38'),(2157,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ed.teplinskij@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydhd5j3w\",\"label\":\"First name\"},\"phone\":{\"value\":\"88627976728\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IM1bRPH Tzpx FhCGjTC hn0i4lx pwmw ZnWFY9o\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:03:17'),(2158,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"g.iskovskih@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7wvf99v\",\"label\":\"First name\"},\"phone\":{\"value\":\"88737394463\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"T3QwUEC 2Yi6 75dpdhu LyLfSDB KpMS bZcVNrU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:05:49'),(2159,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"iurii.khmelenko@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9xybxls\",\"label\":\"First name\"},\"phone\":{\"value\":\"88817626261\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PYPOUUh WAGM bqiwxTh LbIHHLd tZSC vHJJ6hf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:08:59'),(2160,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bessonova.98@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yao9bxmq\",\"label\":\"First name\"},\"phone\":{\"value\":\"83692658841\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dqvYzGi SMJ4 8kOEymr pGzFVk8 bj8i YTjgJ7p\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:10:18'),(2161,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olgabelocerkovska17@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydcrt6lq\",\"label\":\"First name\"},\"phone\":{\"value\":\"83313135927\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jQ7RC3m K6Ta 2tOdgox VwBTL1s EzPD orQ9vWB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:10:20'),(2162,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bam7124@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yb3bcm38\",\"label\":\"First name\"},\"phone\":{\"value\":\"84184933116\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UlfjhPC wVUj lfFmLL5 e4mjU84 ovzb BjVazak\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:12:20'),(2163,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"weezzydepo@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ychdo86m\",\"label\":\"First name\"},\"phone\":{\"value\":\"84799475479\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1vEAMoQ F8Jt wyLydIH HAfzcdM wAbF IAoibax\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:17:19'),(2164,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alekszotov@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ya3hjmr4\",\"label\":\"First name\"},\"phone\":{\"value\":\"87956771864\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RHQaDJq yh0Y 25tkSvB 9m1XpD7 fFqx yrBLMIG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:17:55'),(2165,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"igor.chvilyov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7zvb46p\",\"label\":\"First name\"},\"phone\":{\"value\":\"89664586577\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XRZgL07 PlH2 CK6kSPN xGnB0UM XgSa W9u54KS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:18:26'),(2166,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fndehaan@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yb2xkbz8\",\"label\":\"First name\"},\"phone\":{\"value\":\"82591926165\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3qvaa6k qCTi m3oyKtk eUgrGQL RfyT XBFSGsl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:18:40'),(2167,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marwan773846240mm@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7z7edbw\",\"label\":\"First name\"},\"phone\":{\"value\":\"83415278924\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"y3muK9u 3yVG m7FBNVr IQsVgUi L0AY oyYbMt3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:24:43'),(2168,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alonso27@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybuds7yc\",\"label\":\"First name\"},\"phone\":{\"value\":\"86681791284\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iEWZOql hzi1 x6tHhUr FMmkUhY rb9Q QImfhX5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:25:00'),(2169,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"irina.irabondar@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7zrqdml\",\"label\":\"First name\"},\"phone\":{\"value\":\"88763656346\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"a2VgNOK jlkW 5iXsaOr AJ7Ccsn 4rJX tTWIQXt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:26:02'),(2170,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anastasia.utkina.1998@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybgdantx\",\"label\":\"First name\"},\"phone\":{\"value\":\"81312252775\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oZ28UIi SKOk T3mmiBP 4jF3Aea ZevJ dJHJkb2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:26:39'),(2171,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mixaboss2019@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8khh3u7\",\"label\":\"First name\"},\"phone\":{\"value\":\"82641113569\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UvoFWSy xpQJ 4tHrIQq P8nQUtk xphm 8cOWQfK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:31:24'),(2172,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mos9ger@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y98cms7g\",\"label\":\"First name\"},\"phone\":{\"value\":\"89499772764\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ggfctgB vTVI U0P48Db CZUtf4L 53RL f16annx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:31:42'),(2173,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ivanovalera2203@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8rs6q25\",\"label\":\"First name\"},\"phone\":{\"value\":\"86727175193\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YkZtZ0i fb96 nc0NcJF 8l1PxRL XjCn PvombJZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:33:53'),(2174,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rodionn543@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8svuuv8\",\"label\":\"First name\"},\"phone\":{\"value\":\"83871886475\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"x4lW8Eq Pxyk MPqaFvf 7o2dDGU ueDb PKQrslS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:35:19'),(2175,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yarikk2009@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y92mhccs\",\"label\":\"First name\"},\"phone\":{\"value\":\"83684822921\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"b3eLBIb OwQT T6r2ERw zCJ4neZ DNzC nSsdfeF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:37:43'),(2176,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"djeekii@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya8j6k6y\",\"label\":\"First name\"},\"phone\":{\"value\":\"88183555921\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lQDImKS wwC5 lzBfgzs rFLxHqJ UdFo USTLe2f\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:38:39'),(2177,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"korpmens@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7oh8662\",\"label\":\"First name\"},\"phone\":{\"value\":\"87485858156\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PB1lkgo 1Lmb d9xqMEH VdzzkZk 54G9 LHSI2o6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:41:40'),(2178,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bilalmemon2010@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9c5wy83\",\"label\":\"First name\"},\"phone\":{\"value\":\"81319268421\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QxlE5W9 pdFU Bsgf8OZ slNE9iS RHmn Qf6W1xZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:44:04'),(2179,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"isaevazai@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y82ejzy8\",\"label\":\"First name\"},\"phone\":{\"value\":\"89996875366\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lQp0LcM 70dj bTfGuXO vicWeJz ag0s YzBW3Vl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:44:08'),(2180,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"esagrod@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7tr9z93\",\"label\":\"First name\"},\"phone\":{\"value\":\"86485531776\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Gss4GGn qEMb EY38VtJ asB0ebO OEAl N30cWmX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:45:41'),(2181,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"phenomenaldolphy@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y72sr7cj\",\"label\":\"First name\"},\"phone\":{\"value\":\"84261211791\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6GuLtKE JZCK mnRE3E1 p0wK4L1 7VZF MMT4Z6u\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:49:36'),(2182,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"peretsmeshnik@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y8z58s2y\",\"label\":\"First name\"},\"phone\":{\"value\":\"81621826271\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"l1aMBh5 mCoE Xli5FfN HFKlHCN USYm CV7IQ46\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:50:24'),(2183,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pataev88@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8do6wc7\",\"label\":\"First name\"},\"phone\":{\"value\":\"85899444425\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qeGI27c OGu9 odOMEW5 m3DUqAn NF8r oYzZHhX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:52:40'),(2184,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oliver_r2006@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd9t78r9\",\"label\":\"First name\"},\"phone\":{\"value\":\"84756489788\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"awYgIEp lSEj FQTaQvv uLn0PLR XBU3 ScMWPeZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:52:44'),(2185,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"iver.mdx@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yavuymgo\",\"label\":\"First name\"},\"phone\":{\"value\":\"82493583786\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YHMEDGg syoX HlAJYHG FlhPpDX BBGb HuhyAsC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:56:40'),(2186,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marina.zabrodina.1985@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y88t6l7n\",\"label\":\"First name\"},\"phone\":{\"value\":\"82616772224\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wdAuxYT K8OG 0EbLFGt lvd2kns iNmJ QYS6MWv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:57:17'),(2187,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mk0675167@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycpazqnk\",\"label\":\"First name\"},\"phone\":{\"value\":\"86686768354\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"I10idcU 18Pi ex6NCtK YDtjWC2 dzuZ YzLrpbB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 14:59:36'),(2188,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"slavapolovkin@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybqbj3wx\",\"label\":\"First name\"},\"phone\":{\"value\":\"85887135852\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wns4DEA dWN1 F0XuYtl hYqqVMa IrMv JG6BZDK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:01:24'),(2189,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bolgar-nik@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yak73dhx\",\"label\":\"First name\"},\"phone\":{\"value\":\"86488614147\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uCsrqs5 UsdL w4MwFYP 4FuNyfu vAG5 H3NAA8c\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:03:03'),(2190,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mesutcihan83@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycfoyuso\",\"label\":\"First name\"},\"phone\":{\"value\":\"87852582375\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"N4whRX9 wrul avxwTCT 2i483si fGpS 9WaolLe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:05:03'),(2191,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rusgadjiev5@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y98fbcsj\",\"label\":\"First name\"},\"phone\":{\"value\":\"81441686881\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"18TdUnp QiMN YebjqCM dfe1R4H gR6f 1H1aeej\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:06:43'),(2192,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"trummaks038@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybtllkwx\",\"label\":\"First name\"},\"phone\":{\"value\":\"85928415574\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Q7LygVe bkia LAYFb7a fwo1wDp UE26 Nv05dQX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:09:33'),(2193,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lady140212@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yapce6gj\",\"label\":\"First name\"},\"phone\":{\"value\":\"83311379673\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"raYRjLC jWD2 1zsaTZH TalQcIV dtLj rZPwzVf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:10:28'),(2194,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"perfectiv@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yaz3wveq\",\"label\":\"First name\"},\"phone\":{\"value\":\"87141493495\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2ySfcJi uUiC k2MbyAQ EjkDL8b u4WZ FfBmQH7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:13:06'),(2195,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"panhamster@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7ahm8t9\",\"label\":\"First name\"},\"phone\":{\"value\":\"87944779222\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1mdc2c4 D3Vo EoD8j8z Iq7TkgA EslT 2bkftrZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:13:56'),(2196,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"seutovagulsara13@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yctnoghd\",\"label\":\"First name\"},\"phone\":{\"value\":\"81125927993\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8XrfbF0 xiM3 dUUJZVz ML0aMdv fUxQ eRJqBwH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:16:05'),(2197,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kate.wolf.ru@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yakbsj95\",\"label\":\"First name\"},\"phone\":{\"value\":\"84469574852\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uJZkslq 4RB5 ZxeYdBf 8vmBoJ4 WVEt 1lqW5gP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:19:24'),(2198,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lubovu321@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yb2vrn8x\",\"label\":\"First name\"},\"phone\":{\"value\":\"89283393993\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"luflwFA mraH sZNJKAx LqxrqO1 InRH byyqGNF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:21:00'),(2199,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"maksat89ab@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ydht3nyg\",\"label\":\"First name\"},\"phone\":{\"value\":\"86452322772\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6YO1lnk wbRi 0j5LP55 o0F0aSr LwOl kAOSLHl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:21:03'),(2200,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gasenko7@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y87fy5ke\",\"label\":\"First name\"},\"phone\":{\"value\":\"81743447821\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cZLepNw bRJC SeQxa6K ZzjYK5g mMVR lQp4bFS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:22:31'),(2201,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lmaksimka1206@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7d5ao38\",\"label\":\"First name\"},\"phone\":{\"value\":\"87347791537\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lvFZCcP y7Om rjPOXZv yx568z2 73rP qEdQ5V8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:28:26'),(2202,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ibrahim1296@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yabbpnmw\",\"label\":\"First name\"},\"phone\":{\"value\":\"88188437978\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6Wra8n6 YMID 2nEim0H 5oahoEQ QdMw bhyvo5a\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:28:27'),(2203,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dlyaolgi2866@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yab6swfw\",\"label\":\"First name\"},\"phone\":{\"value\":\"82338897869\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xt8AtSO rUlm nLfuE7A FQxXmGi 4RlQ y7j4Vix\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:28:51'),(2204,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"margaritanikotkina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycqtxk96\",\"label\":\"First name\"},\"phone\":{\"value\":\"83549628747\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"S0n5qYh j8U1 bDEIKEM PVNNakY pPRT nUwFezZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:28:53'),(2205,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ronin2706362@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycnte86a\",\"label\":\"First name\"},\"phone\":{\"value\":\"84986762663\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GLVFLru G2ci UA7tSJO goqAQVq plNt SQpEDtT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:35:32'),(2206,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ancukaleksej8@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y73td2np\",\"label\":\"First name\"},\"phone\":{\"value\":\"89345927343\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lEWe3zV PEls XJQdPFI VG4jKDB vwWz jmHYKFC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:35:39'),(2207,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"laimik@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ya7rfhl5\",\"label\":\"First name\"},\"phone\":{\"value\":\"82785994949\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WU25Wkk rwv0 zDhU6xc o2QMLCE CpQ0 uVksV5H\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:36:42'),(2208,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"smv1905@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8hb6k53\",\"label\":\"First name\"},\"phone\":{\"value\":\"81939337432\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dTss8M4 SW3Q lKAps0n It5Y5oh JN73 2kpTfp5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:37:11'),(2209,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"89993131966v@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycy5l56k\",\"label\":\"First name\"},\"phone\":{\"value\":\"87771366359\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CJfGbeR xlVT 3EeDJUg HC3IXSo wcn7 XV2qDcB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:42:07'),(2210,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nekrasovsergej286@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9yxhsa5\",\"label\":\"First name\"},\"phone\":{\"value\":\"82437611775\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Qe2afDZ O5T8 P73iDWh 9k724QB ZX38 hIZyWkr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:42:38'),(2211,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"makovenska7991@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y99hoe4p\",\"label\":\"First name\"},\"phone\":{\"value\":\"89587528416\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yjjGVsA imlf M5l1r5L 3sU8qEx ZrvT 8FPhQSA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:44:31'),(2212,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anastasiavihareva005@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y78sfqc6\",\"label\":\"First name\"},\"phone\":{\"value\":\"82353445491\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"z3ZX64f S5bP gdw3zlC 3K3z5VF j2pL n8VwAiX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:45:50'),(2213,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"litikovasvetlana@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9nsy4bq\",\"label\":\"First name\"},\"phone\":{\"value\":\"82263241493\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OvzHlJR 9oS9 jZGEDW8 ThSQMj6 0QPw gbGA47F\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:48:46'),(2214,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jokimas@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydhnpnmb\",\"label\":\"First name\"},\"phone\":{\"value\":\"84818192775\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zaAyGFt PxFA BVuNbvT aH6InN9 6QWh XZnK1ZO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:49:40'),(2215,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anacvejba@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycncutfd\",\"label\":\"First name\"},\"phone\":{\"value\":\"81123812461\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RjzCWb0 mC9P 8jheQ2C RNxeuQo 5sEA AyGBbcR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:52:17'),(2216,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"slobodskaya.nelli@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycydgfyc\",\"label\":\"First name\"},\"phone\":{\"value\":\"88437885731\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FCCWk9C oGrd rukRNVn uGmKn7k wVjD q5YXAeB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:54:46'),(2217,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aleks.apanasick@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yadv6nlu\",\"label\":\"First name\"},\"phone\":{\"value\":\"89154585831\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"r14LCwy Lc35 nYReHyj nBJ2pHK NFDr k4VCkc4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:55:12'),(2218,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gridnevaoksana60@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7wc9frw\",\"label\":\"First name\"},\"phone\":{\"value\":\"85324541186\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mgbwpgd FP6W slC03if vxfjXBo 8i0I pSJHat4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 15:56:45'),(2219,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ayasmaaolegovna@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydxy8y5a\",\"label\":\"First name\"},\"phone\":{\"value\":\"84987724337\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8xwE8ae QBIj PyM7X3I daYlW1c 1plA g5a25EX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:00:13'),(2220,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sashatabun14@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7yp8tam\",\"label\":\"First name\"},\"phone\":{\"value\":\"89523775922\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Makrk80 HYrQ 4Mh1EfY 5PZcsNV Y4LJ Y26Hsp7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:01:45'),(2221,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lilya260374@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybhwnhgz\",\"label\":\"First name\"},\"phone\":{\"value\":\"83496346216\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xT4Ie2v vtLA ngFLCil 0PmxTBt jm0S wEslHC4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:03:49'),(2222,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anna1.dmitrieva@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybmj2466\",\"label\":\"First name\"},\"phone\":{\"value\":\"81757691537\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OO3ekYn cXCB cjrUURG LYAwquE LyJ0 ZS4UmZC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:03:50'),(2223,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aasmolo@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7foca2w\",\"label\":\"First name\"},\"phone\":{\"value\":\"88239886641\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YbJ4kzI zGYr GGIlTIa tVBeeMU mMN6 nKy0NoW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:08:11'),(2224,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tamilanmathavan@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycbgbpsv\",\"label\":\"First name\"},\"phone\":{\"value\":\"84512557935\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8F4OIXG V3Us ieWwbxP rcHDtz4 1Z2M gGZ4LFQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:08:14'),(2225,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"muhammadazizabdiev@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yaks572u\",\"label\":\"First name\"},\"phone\":{\"value\":\"84118636931\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rrIKG8G rgX7 tTfPUTy EQQwFev in61 0Y2a1Hy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:10:56'),(2226,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"titonia2009@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb8yf4dz\",\"label\":\"First name\"},\"phone\":{\"value\":\"86263724186\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7p4CBoW qeno EKl9okF rvv0xYq XZT7 efjjbEJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:12:46'),(2227,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shakrukhkhan65@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8z58s2y\",\"label\":\"First name\"},\"phone\":{\"value\":\"81551692791\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8nNkZkP tDKW iGffSqE tg06Sgq wVPA rcT6Klp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:14:37'),(2228,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"super.irene55@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7j9rel5\",\"label\":\"First name\"},\"phone\":{\"value\":\"87933879115\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xt5HbBu Opv9 zcR1cbr GzQVFg6 nwR7 mNdjNyb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:16:01'),(2229,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dasha.kuznecova997@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7bq7l7n\",\"label\":\"First name\"},\"phone\":{\"value\":\"81873737214\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QeWtfyF iNQ7 lo0SWHA ZAZq8qn upJz miNqPVy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:18:05'),(2230,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kitsaykadaniil53738@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8y4c4x9\",\"label\":\"First name\"},\"phone\":{\"value\":\"88272841125\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0Ft6KBl qDnq kuzUy2g QWrc3Xp pROc suYPEn2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:21:06'),(2231,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pasha.newzorow@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yc54khyb\",\"label\":\"First name\"},\"phone\":{\"value\":\"89917196521\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sXyH32T 7o2D qfRzZsg a99VoyQ njOy GSTjCCC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:22:03'),(2232,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"miradil030303@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y6wnuqxh\",\"label\":\"First name\"},\"phone\":{\"value\":\"87484465588\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DrLGgJm 7qz2 frepZUg mlOTiQd V2w9 ilLjkIh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:23:53'),(2233,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hlusova48@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycp4czzd\",\"label\":\"First name\"},\"phone\":{\"value\":\"86564845592\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VzYEgzf gLjH fF6zqvp uAmMjrN oExe g4gePzU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:25:30'),(2234,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kolupaeva.viktoriya@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd5ewja9\",\"label\":\"First name\"},\"phone\":{\"value\":\"84919934443\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"D2QgUFo ceUk oX7qDMJ 9DSCJ9Q xLGL L1ifCoO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:27:45'),(2235,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nata.guro@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd22y7ve\",\"label\":\"First name\"},\"phone\":{\"value\":\"83157469118\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CHANJrk l4Pa VMMlbhW Q48D2Tz v0Dc 4Vqu5zl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:31:22'),(2236,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natawaribalkina23@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yc6dbuo6\",\"label\":\"First name\"},\"phone\":{\"value\":\"82213824873\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"f8fOO22 mo6M X9dBLKw xuzwtdm cYAJ ILVGkLn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:31:42'),(2237,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"timohaappolon@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybf6xvcr\",\"label\":\"First name\"},\"phone\":{\"value\":\"81757741841\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3y4xABl B2XD 8uIMUmh tWwu4IW toew 98oe0Yf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:32:38'),(2238,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gulsa921@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7ztnatz\",\"label\":\"First name\"},\"phone\":{\"value\":\"81968617795\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ySZ4D8H MA78 JCH74Rd pMMnWk7 JS6J 7mThExe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:34:17'),(2239,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yusupovkairat42@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8jo9qgw\",\"label\":\"First name\"},\"phone\":{\"value\":\"83397751987\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oxmbFfm 2HCr 1nAvh9y XYXorT3 RRE0 ptw1sdf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:39:32'),(2240,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"muhammadev@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9bdjwku\",\"label\":\"First name\"},\"phone\":{\"value\":\"89794128666\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0prk7y4 IVY6 f24zQhD aGYReCW Or4k LyfMASK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:39:38'),(2241,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mallikharjunnagalla@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9dn8taa\",\"label\":\"First name\"},\"phone\":{\"value\":\"89429341927\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gvi4GNs j1wo E4ONMyx Fx9UZ8a 70kk 4frxfyM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:40:11'),(2242,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elvirabadanova40@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7e2wrwk\",\"label\":\"First name\"},\"phone\":{\"value\":\"88672229622\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"h69x1tq QTy4 933cTpM iz0Xodz B1Xf wXfshxe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:40:43'),(2243,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ivanm5771@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9rldvo9\",\"label\":\"First name\"},\"phone\":{\"value\":\"89595578928\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ezJyp9L AszU BlsvxQe iNGAdNN A316 hd2Bknt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:46:50'),(2244,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ketriansaha2377@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8wrqg4l\",\"label\":\"First name\"},\"phone\":{\"value\":\"83324831172\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kLrzAZW 1hA9 dkfbPsf KmR6YwM KFx9 Nl0ubty\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:47:04'),(2245,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"terina64@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7zbt6s3\",\"label\":\"First name\"},\"phone\":{\"value\":\"84656164928\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ma53OWU QqBQ 4rKVeaW NlQmBhY NJvm UBE9QBT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:47:14'),(2246,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"barklaidetolik@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yalorsxo\",\"label\":\"First name\"},\"phone\":{\"value\":\"89937757493\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4qBGKwn JKpB 1aamROu hFPckql zub3 8TRkOZK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:49:08'),(2247,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sepanskaa@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7l8vjoo\",\"label\":\"First name\"},\"phone\":{\"value\":\"85116672482\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CRtVbJc ffEA 1EojKJv 2pyhiV0 49kP zau3xx7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:53:26'),(2248,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nikitka6751@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybok8myg\",\"label\":\"First name\"},\"phone\":{\"value\":\"82789692369\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AX2vXlQ El4U POV0Ukw iMc5Rx6 S7ks AoWnuh0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:53:51'),(2249,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ivankutuzov308@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycdg7zdn\",\"label\":\"First name\"},\"phone\":{\"value\":\"82624334698\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VOnae5b olC6 hAmcfv4 c5TXCPZ R8ql dhihU3d\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:54:48'),(2250,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nastya.sen11@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yaajbrts\",\"label\":\"First name\"},\"phone\":{\"value\":\"87568626611\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RVM6fmD 5dmB LAdvgRV Tq9CPOe vLd5 GnV7d0q\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:58:13'),(2251,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vadim.mavlutov1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yc8xz5vs\",\"label\":\"First name\"},\"phone\":{\"value\":\"82166984512\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1LQAp5C loid ZmXCoMn RcnCkRa AB1C nc7R4I0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 16:59:47'),(2252,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"magertatiana@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y93cbhnr\",\"label\":\"First name\"},\"phone\":{\"value\":\"85723973365\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"k3qn6Be IJpV E9n9BLa VOCvMoV qfHW FAlry9X\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:00:47'),(2253,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"svetlanadisign@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8jz3zbp\",\"label\":\"First name\"},\"phone\":{\"value\":\"87576975781\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Kc8cqvG 5bfB LbbkVKd osxWO7d yWyb sYov7LZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:02:32'),(2254,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vlad.gusarow2011@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydebwaqs\",\"label\":\"First name\"},\"phone\":{\"value\":\"89133929597\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"I686ffT 0jRo gYyUgsc 80qKqVR rb7K 1axV4Yt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:06:11'),(2255,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"avdeev.se2017@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybl984wh\",\"label\":\"First name\"},\"phone\":{\"value\":\"82325491137\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6YvWAzN 2VvG ZPKoFyh ahzUj1e gBEt mitmhtp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:07:30'),(2256,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"golevanata1705@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7j9qhz6\",\"label\":\"First name\"},\"phone\":{\"value\":\"82375849586\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TORr5eC CSb1 bA0QAgS BTQhmC9 IET6 uJr7jwS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:07:54'),(2257,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oksanaazretovna@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yay4dwnj\",\"label\":\"First name\"},\"phone\":{\"value\":\"84885412723\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vCrMrta b34A VQOziUQ YZkrg9e gPBc SH5XjLP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:10:28'),(2258,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"france578@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybkzfla7\",\"label\":\"First name\"},\"phone\":{\"value\":\"81198343659\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8sZrN55 eATf T4cCXYJ 31N1UAI gTD8 LnCCQVv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:12:41'),(2259,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elena05021974@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9bdjwku\",\"label\":\"First name\"},\"phone\":{\"value\":\"81189355684\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"N19GuUA 8wcj LYJtn7y UQbF71H 2RLP i6iRQBW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:14:56'),(2260,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dickeyrez@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybyk8c99\",\"label\":\"First name\"},\"phone\":{\"value\":\"88754516375\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BbI2SKT osJZ NSEbvvk tNgKke8 oQ3h N6J2xPY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:16:29'),(2261,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gulnazik89.09@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ya2hd8f5\",\"label\":\"First name\"},\"phone\":{\"value\":\"85966414263\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BIF41E5 kx6c O8rQgwR hmwyAWx KSGM 345NxRi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:18:17'),(2262,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kristinagudumak123@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y96apkxw\",\"label\":\"First name\"},\"phone\":{\"value\":\"89593859386\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"j5OzhXx MTLd zhIumHY Go5sxuK X1ev xKuZAV3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:19:03'),(2263,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"msan80845@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y92y4koa\",\"label\":\"First name\"},\"phone\":{\"value\":\"84219649127\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PJvHMwH 39mY 8EROBKT gleaTNO DLTO WE8wETA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:22:03'),(2264,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rus.tit0v@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ydxh9qen\",\"label\":\"First name\"},\"phone\":{\"value\":\"81171716923\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ntxnuoc ykss E9AQDhI 5kHXMjx 0g0z 7QLc1GJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:25:23'),(2265,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"t.evdokimova2016@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybrlmzbo\",\"label\":\"First name\"},\"phone\":{\"value\":\"86588751199\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IqTlnWZ kgFY pY2ke8Z VKKc8J1 mhDb iZbXOxn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:25:28'),(2266,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"azinnatullin85@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y92mcqvx\",\"label\":\"First name\"},\"phone\":{\"value\":\"89773556983\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"njpJSCy tfaf Ko8GbLi 0fLWdCX 31j6 3SH7Nlw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:26:02'),(2267,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"drukova.kristina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yd4fwn3c\",\"label\":\"First name\"},\"phone\":{\"value\":\"85116671469\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mDFG5OS JxLz 5vxlvPE eh9VFq7 AfGK XudZ9uW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:29:38'),(2268,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yeyeyeyhehrurufuh4@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8vgjj54\",\"label\":\"First name\"},\"phone\":{\"value\":\"83942193825\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Z53CV94 Rd2m pbgY2Og 5VUXdPY 0c8y LPaopLh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:31:50'),(2269,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zaxarov212@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7x52l3x\",\"label\":\"First name\"},\"phone\":{\"value\":\"81547357483\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lDilvZ4 ZoFL 3t6pF4v IekxqzV kk8L It8b25q\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:33:52'),(2270,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zemlynuhina122m@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd55jtwv\",\"label\":\"First name\"},\"phone\":{\"value\":\"89548518516\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cZsqbCB Reec jgQQl4L 2Y0kgim IoqO At19OLl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:34:42'),(2271,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"artov09@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y75jwgxn\",\"label\":\"First name\"},\"phone\":{\"value\":\"85174934727\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"g74ygPy YJak oz0GnnQ ejamNvi cN90 gsnxvnQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:36:53'),(2272,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vgcherdantsev@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9s2o9bj\",\"label\":\"First name\"},\"phone\":{\"value\":\"86343229173\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zvU1StT 8Tit fjcg94R 3YPBNOL Cg6m ukNFJmy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:38:18'),(2273,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natalaknazeva6341@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ycq4zllx\",\"label\":\"First name\"},\"phone\":{\"value\":\"83631137385\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KjcsPiR cSqZ VeqYQRb DTqxkXM FALW pHDigZp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:41:55'),(2274,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"controlerdnd@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y799klem\",\"label\":\"First name\"},\"phone\":{\"value\":\"86635956376\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hkaJB4r hqVi 1u4u19h fK5h0vq 5Aym TzvTQkN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:43:43'),(2275,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"msmodern80@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycvldasj\",\"label\":\"First name\"},\"phone\":{\"value\":\"84637555771\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"haIVzLE GIt9 17Ii44g b7PRMKN knzG ksvfD1U\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:44:48'),(2276,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sokolova.alsok1337@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yay9oywp\",\"label\":\"First name\"},\"phone\":{\"value\":\"89978818374\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RoWup4i AmUT OgBw5IF zIz14zc z1W1 rs7ieYQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:49:51'),(2277,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mizrodion@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8ap7m8m\",\"label\":\"First name\"},\"phone\":{\"value\":\"89686952752\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7scRtNI NKzY sVNL0TU iKxwwv1 I3TC NeCmvKK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:51:08'),(2278,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"almendralreinnafe@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7d9okgd\",\"label\":\"First name\"},\"phone\":{\"value\":\"87391115489\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mlMB3ux gAka 66sACNX cxFFE0A BV6U uIWzLkD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:51:15'),(2279,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yana.ak069@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7ekqd7f\",\"label\":\"First name\"},\"phone\":{\"value\":\"82119653719\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HdQd2TO ldG7 sSXU8hZ A3smUvJ 50pd uzgliYk\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:53:30'),(2280,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"www.k1o2r3d4kord@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybxrngru\",\"label\":\"First name\"},\"phone\":{\"value\":\"83938678738\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dxse3BH SR35 USJ6VPg 9tMJGn9 dwhv clqHO7Y\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:57:29'),(2281,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zsm.elanka@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydan4v9c\",\"label\":\"First name\"},\"phone\":{\"value\":\"87448952691\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"u08k9Jm QHVV uS13zdL SEQPTyn RfWl E7XwEbF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:57:42'),(2282,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kersach@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8nv2shp\",\"label\":\"First name\"},\"phone\":{\"value\":\"86529656213\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RVMyzuF BSps JC7lRGv lR2wQk6 SuxZ 0gIfrda\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 17:58:14'),(2283,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tsaglovay@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9f385yt\",\"label\":\"First name\"},\"phone\":{\"value\":\"83985211483\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tJAtnph KdYv 2yMCHWe a1KYJlx 9gmv LwBQDl7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:03:21'),(2284,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kigan1969@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycn9hod4\",\"label\":\"First name\"},\"phone\":{\"value\":\"81589988123\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4qIZhqb HZ9O tQ7PIjn DRcblFH mxZj RqDfzS2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:03:55'),(2285,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"afshyn@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7v7ndf6\",\"label\":\"First name\"},\"phone\":{\"value\":\"85714425465\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4BUvOut ds9c 7daGq8i seVaqpg AcXg CC0P1Bn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:05:18'),(2286,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nazarmoshniaha@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycvny45q\",\"label\":\"First name\"},\"phone\":{\"value\":\"81674126487\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zbITuGV 4fFm iqK5vlj E6KkrrZ wR1f mMUaTcz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:05:25'),(2287,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"flashmotion77@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y73a3ktu\",\"label\":\"First name\"},\"phone\":{\"value\":\"85826415714\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KKftGZK gMmw z40tW16 SVXbbPk D9PD ylnlfmU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:10:28'),(2288,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"a.pahtusova@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y88uv2tq\",\"label\":\"First name\"},\"phone\":{\"value\":\"81525181228\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WKYxQYB Swdb Egw8kBo UqTOiyu Zzze qPvL3Lf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:12:30'),(2289,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"genvas1948@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yay9oywp\",\"label\":\"First name\"},\"phone\":{\"value\":\"83244189192\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OwOccQ5 VRj6 YEkMno0 z29bRi1 Iv1J QRtCGn5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:13:05'),(2290,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oscarniyazov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y6v8b8x6\",\"label\":\"First name\"},\"phone\":{\"value\":\"81147957776\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0G3rtMb GGiA f9XNFTT pK7fu3v b2KZ S80wt4j\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:13:08'),(2291,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"galynja2008@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycokolcl\",\"label\":\"First name\"},\"phone\":{\"value\":\"83519348897\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"O5UHkpx sA78 thDXUcm ygN2KLi rJij jdm9vpg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:17:02'),(2292,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anannenkov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7zbs9p4\",\"label\":\"First name\"},\"phone\":{\"value\":\"87735769149\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"C5tZkXv o4hV CRfK6fw QpRrogl ELzw dPX8Drr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:19:44'),(2293,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nikaliv@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9alsu3y\",\"label\":\"First name\"},\"phone\":{\"value\":\"86977448184\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JQ21OgM 1aw2 tSLMuCL TYflrAX m5SS JIb9m9C\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:20:53'),(2294,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mahoevibragim@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y73yre6c\",\"label\":\"First name\"},\"phone\":{\"value\":\"88313259793\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"q4Fd3k2 Xd7U Shqkth1 GDiBByS Racb DK3LWID\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:22:15'),(2295,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"litvinov-alex@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7dlrwu4\",\"label\":\"First name\"},\"phone\":{\"value\":\"87343847831\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DTYO12U l6c3 cgwuyVX Znac5jN wZwM F8tSOFc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:23:31'),(2296,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"waltraud5@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yblra4zb\",\"label\":\"First name\"},\"phone\":{\"value\":\"87238453367\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4eCEMoG jlRv it72wTB Khf7hdD RtZg Vmx0MeL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:27:09'),(2297,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zlayalayka05@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc6zmxxc\",\"label\":\"First name\"},\"phone\":{\"value\":\"84431563943\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8CpgOEd keqt Xwt4K8S s7pqpvY yvYQ fQUJy27\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:28:44'),(2298,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"denis.pedko@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybbszart\",\"label\":\"First name\"},\"phone\":{\"value\":\"82116666296\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"obRNh81 DJTA Sz3IsBC FH51HGh 8w3Z LKgYGDh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:29:53'),(2299,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"skrinkart@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9kat6az\",\"label\":\"First name\"},\"phone\":{\"value\":\"89348594291\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NKn44Xc wF7P xgOKnmL FxSU7WT fRMm NN0sPCl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:31:27'),(2300,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"goshaslam@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7d5ao38\",\"label\":\"First name\"},\"phone\":{\"value\":\"83292498681\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mmtnDzn aaUu pasaioZ Ve1rqbF FXuk HlSrPo2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:34:24'),(2301,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marina1720marina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yapzvyf2\",\"label\":\"First name\"},\"phone\":{\"value\":\"85217764788\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IVsdeDl JXSh 8XNdgO3 0M4NBV8 orQI 7Wg21Ck\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:36:17'),(2302,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lam19rus@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8zjno46\",\"label\":\"First name\"},\"phone\":{\"value\":\"82328652548\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YL0lQXv JlWm 49YzCie gmSHQWk iJCq RVfFgXn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:36:30'),(2303,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vaseokenachi1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yctg45w4\",\"label\":\"First name\"},\"phone\":{\"value\":\"88277265117\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"keksOq2 Q54x 1aFqSwq PfI3DLF mzby p3FmabC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:40:46'),(2304,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natasoldatova403@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7a3hdqq\",\"label\":\"First name\"},\"phone\":{\"value\":\"83999175418\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"L46LslW 23sv niKBRqq 3lxMif4 zwFJ 3vIDHvQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:41:36'),(2305,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rechelle.abriolmalabag@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7dwf4fg\",\"label\":\"First name\"},\"phone\":{\"value\":\"88722942144\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Nu59QYr dnOL 0yOifhi lNzwm4s LuBD RY2TMsu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:42:42'),(2306,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dawletzarlikov98@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9gy54fk\",\"label\":\"First name\"},\"phone\":{\"value\":\"82463341355\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aDcvll8 G3m7 Um4GR8y 2mKB6b9 U83z YEJO0t6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:44:19'),(2307,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vscamry21@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybxenvz5\",\"label\":\"First name\"},\"phone\":{\"value\":\"87224919289\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zhKKmGg ArEk hbS7HrV YsYAtsW 6vvJ iUrFwQw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:48:52'),(2308,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"harishbaksani1989@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yayv2tzb\",\"label\":\"First name\"},\"phone\":{\"value\":\"82143712132\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ALTDmIB K3pu HAwOLmW JhKjHTT neOr sjIAist\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:49:04'),(2309,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"seidali1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y73esqm2\",\"label\":\"First name\"},\"phone\":{\"value\":\"81787389793\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FU27Tmk KY6u z5EEtEf SrauJd1 zmJZ GWY35VB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:50:05'),(2310,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elenamarkovich92.92@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y86aahpq\",\"label\":\"First name\"},\"phone\":{\"value\":\"85436923831\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Z7FgrNq NmHK spLBmgy 1lNEMLK dqhI UBGnk9n\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:52:07'),(2311,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"skaterboyrus@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9f3qyzu\",\"label\":\"First name\"},\"phone\":{\"value\":\"87371611146\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ej8O7ta zGlj a0vymV0 bYublQ1 QaaC 5LTNcaH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:55:30'),(2312,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shkoorka@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycp8qevz\",\"label\":\"First name\"},\"phone\":{\"value\":\"89143551842\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"D5tj8hQ SdTD yBnxshv DTeUzBm wnYS ScWkdr4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:56:04'),(2313,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vikky-uz@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8zrnjdq\",\"label\":\"First name\"},\"phone\":{\"value\":\"84781573255\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ja3SG3O Nx2B J7A5cIU Vyf3xEQ z4WV HJmFvtY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:59:18'),(2314,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kkirigaia3@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybn5hvkr\",\"label\":\"First name\"},\"phone\":{\"value\":\"86326945458\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cqfxc0O wQor 38HQANk ZXwd9Ht HcEq YVZDcyJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 18:59:48'),(2315,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olynkammm@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybzuwc2t\",\"label\":\"First name\"},\"phone\":{\"value\":\"84432784657\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5I1DO83 1gDO Mu0fJHs T4ioW7E hJrS IlgY1rL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:01:53'),(2316,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mkya0888@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8nm8wre\",\"label\":\"First name\"},\"phone\":{\"value\":\"81159352358\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"A5lzaUS 7aCc LazMjhS n1fUn9t Z71M VGUmvhw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:07:38'),(2317,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tfrolcova@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybuojb7w\",\"label\":\"First name\"},\"phone\":{\"value\":\"83275553497\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9HMgjD4 RK9C EmYv8Lp 2ngsIBV iJu5 psivS6n\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:08:06'),(2318,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sumashbagalov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycuob8vz\",\"label\":\"First name\"},\"phone\":{\"value\":\"89758461354\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Mx3HNU4 FoFU euF6J0U xqkY3Vd oZmh bCYGXvi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:08:12'),(2319,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vladdybov55@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yajpq2tn\",\"label\":\"First name\"},\"phone\":{\"value\":\"83297372418\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xvdaxmK AM7c BUyXfVh LrPzpVS uOLd HexKlGq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:10:17'),(2320,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oleksviter@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9dwlzkl\",\"label\":\"First name\"},\"phone\":{\"value\":\"84259776974\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QNY74EA ERVU GkXnPOo S8FsKZF aOGx hVfsTd2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:14:28'),(2321,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mari270212@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8sz6duv\",\"label\":\"First name\"},\"phone\":{\"value\":\"89282793228\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9Cd3t9g tyFj 3SeZdVf 1jYSOBo tvz4 DxxhZTR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:15:14'),(2322,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tathadgievayasmina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8f2ul8z\",\"label\":\"First name\"},\"phone\":{\"value\":\"81532842978\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PYQEPUH HlmV GVxMmQF KRyPvUw ewg4 9nNBsWW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:16:54'),(2323,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jaksicinna@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y6v9jrse\",\"label\":\"First name\"},\"phone\":{\"value\":\"88156817759\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"x5NqQxN g5kD 1DfDcBq BMJHTLD SnfA c99EZgY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:17:23'),(2324,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vladimirovpo@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycb5t6pe\",\"label\":\"First name\"},\"phone\":{\"value\":\"82344877667\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0kGUXFr UFsm 4eCAJgF i2qEGNS ywPG uzwKm91\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:20:49'),(2325,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"svetatet@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycdqd3hz\",\"label\":\"First name\"},\"phone\":{\"value\":\"86758163693\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Pf3wih2 WaxP xf0GiVk Be3fvmL mWBT WgzT67u\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:22:50'),(2326,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gadamrahmedow12@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydyqzt4b\",\"label\":\"First name\"},\"phone\":{\"value\":\"89685963175\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lgF8oyp PBXG 88xUjQ0 M98fSQE 0NZQ JJDHpgv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:24:41'),(2327,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"agurevnin@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8p8ubz2\",\"label\":\"First name\"},\"phone\":{\"value\":\"89523487394\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cl4Vaqq mvAa ufj3i0R AZlXsIv DMQa tGXlV5t\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:25:41'),(2328,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rasmiasacar@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc6f8rv3\",\"label\":\"First name\"},\"phone\":{\"value\":\"84777229471\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FgpwNBS oC6c CIX4Arb RF1ESgl StPv afYKDi0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:27:06'),(2329,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"maximkarayatskas@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9glur4r\",\"label\":\"First name\"},\"phone\":{\"value\":\"85762635477\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6AopTby eFcr ZAKNuLw NWsG4LD geHU KBIF5MJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:30:30'),(2330,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"estelsdropbox@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8qf6k7k\",\"label\":\"First name\"},\"phone\":{\"value\":\"87591396999\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yiHUUEq hb4x nvUOIbZ JQLyGU3 GYPA 4Z9qw3Y\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:31:43'),(2331,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"smirnova.natalia123123@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycpnzcxc\",\"label\":\"First name\"},\"phone\":{\"value\":\"87852738229\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9TviWXi TmAE Z2MHmEz hvS4oSb Wvw9 e7C00LM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:33:25'),(2332,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dariyamikityuk@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ydzegd5n\",\"label\":\"First name\"},\"phone\":{\"value\":\"81882428696\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XptMzP5 iKpx IFKydH6 rBzug5d k9n0 tnCWy2P\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:34:52'),(2333,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mam4enko.d.s@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycgags7d\",\"label\":\"First name\"},\"phone\":{\"value\":\"81317164865\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UZPUqed IPKZ D7skXeW vFA98Q9 dOj7 XymE9JD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:38:17'),(2334,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dronenko.anjelik@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybu4dc8o\",\"label\":\"First name\"},\"phone\":{\"value\":\"89831964663\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iMTIgnM lhEU 6upipFS 48Gw5JG Agag Tb6toIq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:38:39'),(2335,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"romankaipov2827@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yd9j5xpv\",\"label\":\"First name\"},\"phone\":{\"value\":\"85691888269\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QCb4Xwz vHLa jHXs5bx ZLuOu2x mi7n KTRNvax\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:39:45'),(2336,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"romas.janukaitis@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yc6xj3bj\",\"label\":\"First name\"},\"phone\":{\"value\":\"82537888917\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yyhvFWE Og9N c4dwKi0 DGUAslw SiiB KyDlSdh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:43:47'),(2337,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"artyr198236@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8sb32qo\",\"label\":\"First name\"},\"phone\":{\"value\":\"86999977829\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sN3DMHD n3NP 0Zmbs3m b3VfsxY dzfi 81l0sg8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:45:42'),(2338,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kmarshad.786@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ydgnqx7h\",\"label\":\"First name\"},\"phone\":{\"value\":\"86713238279\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qCwHQDN S8AK CPvc0VB A8PMngO Jug7 YEfvUYh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:45:55'),(2339,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bhattacherjee376@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybqw38z4\",\"label\":\"First name\"},\"phone\":{\"value\":\"81885421729\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qxmFgAx VRIc C9ocdU8 REkoCdX 2Wlz 8AHgAd9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:45:57'),(2340,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nagatich@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8h86q5x\",\"label\":\"First name\"},\"phone\":{\"value\":\"84333184254\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yis3mYd wRYa 4bARZhf huz5U2h STE0 95GGCRT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:52:15'),(2341,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"on130867@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yadr43kp\",\"label\":\"First name\"},\"phone\":{\"value\":\"81427653378\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6jqJqPU tXk4 bwSd0ot jvdxpTz VTeU kXYrusC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:52:42'),(2342,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olganiv@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9uqowhs\",\"label\":\"First name\"},\"phone\":{\"value\":\"88154992889\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"J12R4H6 Tbsl S24GbV5 eVZGyFZ W6LX Xvo7g0e\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:52:45'),(2343,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"osipovavlada@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybnw2axo\",\"label\":\"First name\"},\"phone\":{\"value\":\"88245355581\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vELvHGP vKvz aFhuhqC 3d3yYoU m2yn ICxOwCX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:53:40'),(2344,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vopgavop333@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9o3su53\",\"label\":\"First name\"},\"phone\":{\"value\":\"87178377624\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tPh7kyd 5bUd a4adR0s o9LETFU 9hFa rLICAZE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:58:34'),(2345,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"salchakshenne87@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9kvcdqn\",\"label\":\"First name\"},\"phone\":{\"value\":\"81233768694\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"feaQoRm sQzS 6p1wrGm wuezPzU cL5J tMzmZc5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 19:59:50'),(2346,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kasast@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8lexxut\",\"label\":\"First name\"},\"phone\":{\"value\":\"83383759996\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"re0mdnF lo4D 0oJGomG YDjrt6q ypnR hSz4Y1U\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:01:19'),(2347,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"evgesha.evgsk@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8df72af\",\"label\":\"First name\"},\"phone\":{\"value\":\"84279191466\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JLjNOKc es78 AXJh5rm 3TBP0mK HIPr fglOQ3e\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:01:32'),(2348,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"striginalarisa@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y89msz2f\",\"label\":\"First name\"},\"phone\":{\"value\":\"85324829796\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cc6SAZG 0F32 ouPyAQQ KvSdctt GwfG vvJWQHx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:05:00'),(2349,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rasidg451@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y88bg5z4\",\"label\":\"First name\"},\"phone\":{\"value\":\"85195916943\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"U1LNRH1 xHnf MKG72Qk 5j2Ptn1 tgOR 9Cxsfmb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:06:53'),(2350,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"honor10lite08022019@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybtx9qde\",\"label\":\"First name\"},\"phone\":{\"value\":\"82187514227\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MqV7dzE aHSI 6dibCnY 6FnazfA kwgM MypKyxu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:09:02'),(2351,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ugotovskij@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya84mb4b\",\"label\":\"First name\"},\"phone\":{\"value\":\"82626452849\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NOl1cWB Wyqm uSZ3iSb 5u266iU XkSw ps9jnmV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:10:24'),(2352,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"reddog1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yamrosnw\",\"label\":\"First name\"},\"phone\":{\"value\":\"88182359835\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"flcnZTl Ri8s wo7xU9o mNwfG1R e5Kb yYYmrhD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:11:20'),(2353,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mamedovasabina0204@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8jbx77z\",\"label\":\"First name\"},\"phone\":{\"value\":\"86623621779\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TLbByVX Viep lvUvnTY Nixaq9v Tadu RkCoygh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:14:03'),(2354,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"silionmarina129@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yda5fcmp\",\"label\":\"First name\"},\"phone\":{\"value\":\"87526384575\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VrRTLxl ihJj c7QwidJ etqQ8te npI1 yhEGUxG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:16:47'),(2355,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mihajl4nna@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ycfayl83\",\"label\":\"First name\"},\"phone\":{\"value\":\"87524497722\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"g17mN52 9i3F 1QQ9T5N jwLejcv 8D1U Z9LOpwj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:17:36'),(2356,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"andreyrtischev@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y83v3h9v\",\"label\":\"First name\"},\"phone\":{\"value\":\"82449882939\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eEIcS5s vRRC b4ZqAMA u7LYsLl abBI 3PyHhUx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:19:15'),(2357,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dmb26112013@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9p4a7ye\",\"label\":\"First name\"},\"phone\":{\"value\":\"89877766122\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Fntvndx hVwt Dnv70bW TkFJqmi gjC5 1qxitef\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:21:07'),(2358,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexsmnv78@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yd22j4ff\",\"label\":\"First name\"},\"phone\":{\"value\":\"86893892253\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Lk1C6OB tQEV ApEkGy1 Z5wdxU1 kkRn yqWKXHI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:23:52'),(2359,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shipyard@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydfmk2ux\",\"label\":\"First name\"},\"phone\":{\"value\":\"82385948814\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zKPffPN 0fUo wTh38KK O43nAuW Ms0w h8U2N2g\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:24:31'),(2360,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"0yarart0@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9nhwzt6\",\"label\":\"First name\"},\"phone\":{\"value\":\"81189833788\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1t5PoSM Ae5s sTOjHZN Yr0QSKv ADcc a0AVy8A\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:28:11'),(2361,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vovaola@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9kvcdqn\",\"label\":\"First name\"},\"phone\":{\"value\":\"88599827161\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PU7UIdm niA7 ic2VRxe cshud6c vTVA pLMsJM4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:28:26'),(2362,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sinicinnikolaj53@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yckpdwn9\",\"label\":\"First name\"},\"phone\":{\"value\":\"82176723443\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LgEqiXA XJ2m e5m00kv EoXnq52 UP4G gClxZRl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:30:09'),(2363,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"davutovanargiza@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycxdaxmd\",\"label\":\"First name\"},\"phone\":{\"value\":\"83663782278\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yrAoVNF HQ8D HDEALxQ QxhvhK8 LC9N AbyeCjQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:32:11'),(2364,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"muratovaradmila8@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yauwczkc\",\"label\":\"First name\"},\"phone\":{\"value\":\"89112766147\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zB0znTd B5u3 8FP6kBS BLXUG7z zerj oSDhRJR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:35:33'),(2365,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ddmitriy.dnepr.ua@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycyc8wqb\",\"label\":\"First name\"},\"phone\":{\"value\":\"85668145449\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GQTLroE D2RU HBiZEly d9cDzy2 1Szo 9dfTnGW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:36:24'),(2366,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"valentinakrutova1994@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y6ultalh\",\"label\":\"First name\"},\"phone\":{\"value\":\"86767798493\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BoWz8Qv VMDf k7NdtVG 9jEiji6 wkju jkHi59F\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:36:57'),(2367,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"serikbekaazbaj@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycayk5ca\",\"label\":\"First name\"},\"phone\":{\"value\":\"88776477824\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pLJQJHV aJvY BDx4nhU 4yOBhlp ZiR2 8xAod9O\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:39:50'),(2368,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"prasajsaju@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7nm3yfv\",\"label\":\"First name\"},\"phone\":{\"value\":\"82735862829\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UQtvOQt uWf8 x55G2zI Ipwd3sq LRTw 25kkl2f\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:42:33'),(2369,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alla.borisencko51@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8zhfsrl\",\"label\":\"First name\"},\"phone\":{\"value\":\"86696412317\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IaENHjC 60i2 mVyEFRn oX8RDGT PY2j KdFUV3H\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:42:37'),(2370,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sestakovvladimir476@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8mmcbut\",\"label\":\"First name\"},\"phone\":{\"value\":\"88738534949\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0o6ZFWX gR4e cyaocZq PoGsFft x7pO BPCEaet\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:45:55'),(2371,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"voroninaveronika5438@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9erqnap\",\"label\":\"First name\"},\"phone\":{\"value\":\"87681969654\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"H90miR2 0w5E HBmuBMj hSKfqX3 WhS4 nzIcfS5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:47:18'),(2372,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ks1105b@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybb2xwew\",\"label\":\"First name\"},\"phone\":{\"value\":\"89258173256\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WqYPrHD 1opX U7WuJVH MPzG7GT HCh6 vQE3BC2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:48:49'),(2373,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"murzakmatova240578@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya2q745g\",\"label\":\"First name\"},\"phone\":{\"value\":\"84317548586\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SYIsjp8 mKgQ fAP6BGw lYtIFZV OSYt SNWPXIN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:49:28'),(2374,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"izaddakasumkentova@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7g3k7vz\",\"label\":\"First name\"},\"phone\":{\"value\":\"89991548668\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yKw9kKd 3SlX 5tMvhiK YcmhPbx azjY VQZPqim\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:54:43'),(2375,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"maximcharuysky84@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9jg8cas\",\"label\":\"First name\"},\"phone\":{\"value\":\"83694125211\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LNq9tvo Dxty fnlE9tn JhrcM0D Ov7I ZC7uXS8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:54:51'),(2376,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"khanigorian@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yb27864w\",\"label\":\"First name\"},\"phone\":{\"value\":\"85929239446\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KEjY3yC SGWr Knp2ExU P0KEjSE aK0E RAm31xV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:54:57'),(2377,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"serega-solnyskob@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8a7r7zp\",\"label\":\"First name\"},\"phone\":{\"value\":\"85472986459\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BSEX24O KPvd 62vjcMT my7BSUW OQhk L96cwRo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 20:56:26'),(2378,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anizopterae@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ya64xmq2\",\"label\":\"First name\"},\"phone\":{\"value\":\"87878745593\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"edb0j28 SK1o ONgLcQc e5FfdO9 bnD0 ouqrzTt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:01:19'),(2379,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ekaterinamahno325@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y77e4guo\",\"label\":\"First name\"},\"phone\":{\"value\":\"81554468542\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"d3rFzWF z9KD WjY9yyO QkUhcZs Uzuz sXBlBqN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:02:11'),(2380,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"asylbekusonov2@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycu94pf7\",\"label\":\"First name\"},\"phone\":{\"value\":\"87968945511\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Rcs6iSM ajsb HS07EZB BLArAgR nxrm CSfGv1L\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:03:28'),(2381,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dmitrijefimov91@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7ug7txd\",\"label\":\"First name\"},\"phone\":{\"value\":\"85387819687\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jpgJ1kr Z14Q RecaDp1 PKQt95N ID3r lfoi4Om\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:03:38'),(2382,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"loshackova666@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycegh9s6\",\"label\":\"First name\"},\"phone\":{\"value\":\"85561863216\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yxKkoSW SByc nXitb7M 1570HII Z7dY WhtoaN2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:07:40'),(2383,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anastasia.kochno@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yctnjv2z\",\"label\":\"First name\"},\"phone\":{\"value\":\"84722955443\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zFug2DS AhwK 7H1feqr uxBeJPd V4kO TgJfBFT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:09:41'),(2384,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ulugbekyuldashev045@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7xx685c\",\"label\":\"First name\"},\"phone\":{\"value\":\"84937436284\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hg1xjkS E1BR lwSLSyM sxawrLn KsVR f6brssh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:10:28'),(2385,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"borckowa.katya@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y73xnvjj\",\"label\":\"First name\"},\"phone\":{\"value\":\"83516984155\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VPkksw1 8aKU w2e5ok5 m1pTC94 IHpC nfSumnG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:12:28'),(2386,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tiktoyua@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7qgquo5\",\"label\":\"First name\"},\"phone\":{\"value\":\"83253222338\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qEW5UwI XoBi GTVEq61 2AcVHbC vK1J KRNhnfm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:13:58'),(2387,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sinex69@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybwg7vpc\",\"label\":\"First name\"},\"phone\":{\"value\":\"84938232417\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7UTH6dc h30J xMKuYTH 96Ev04j tMs7 OEIYALb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:17:18'),(2388,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kalifmarat@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yc4b89tt\",\"label\":\"First name\"},\"phone\":{\"value\":\"86157869725\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"T1AQqw9 zL78 9bXNrC0 n57TTgb xqUc FGSOKci\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:17:20'),(2389,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"evahard@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8fncyzp\",\"label\":\"First name\"},\"phone\":{\"value\":\"85974116836\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OdXMrhw fuEA Px8rcwB tZybOTI 41aK O7yOf5V\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:20:13'),(2390,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"for.dmitriy.b@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ya9ft83s\",\"label\":\"First name\"},\"phone\":{\"value\":\"83499536346\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cjE3bTb HaiL Scvrb8Y YQvBrcT rIUG nGLCWM6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:21:22'),(2391,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aleksandrtimkin74530@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9z7755j\",\"label\":\"First name\"},\"phone\":{\"value\":\"89972365184\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SwMvypr oRkz hOLTxkO 2e2eAoc lBJN QqctnY3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:24:42'),(2392,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bocmanlocman3@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7utlmfa\",\"label\":\"First name\"},\"phone\":{\"value\":\"84438184618\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hBRtg2v gnTp Byvqino 77bMD9v vk6t imTkZY3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:24:42'),(2393,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"spongeben12@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yanfw4rn\",\"label\":\"First name\"},\"phone\":{\"value\":\"88812266954\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IexcMLS vj4G rU2bmlm yQM3tDt F3vY 7eh3QMm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:26:27'),(2394,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"volobui79@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y98wlhfw\",\"label\":\"First name\"},\"phone\":{\"value\":\"83565222948\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WVV0gz9 zWGA 8dPx393 8GFa4y0 4Bth XDToHEq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:30:09'),(2395,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oatanasova5@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7g3jasj\",\"label\":\"First name\"},\"phone\":{\"value\":\"89565826873\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AypAOiv H6x7 G4OwqfS 3gCNpaS Llny eS2EbK6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:31:48'),(2396,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"schuma79@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7dfvpoj\",\"label\":\"First name\"},\"phone\":{\"value\":\"84143152161\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1bsf34T anmL HuQnAgE xawEcT7 Wwjp 2PQ2RRX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:32:01'),(2397,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ee671933@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ycme8y85\",\"label\":\"First name\"},\"phone\":{\"value\":\"81963317728\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cW11dPw B3mM Ch1Gsg3 P3w2UVE TvY4 NaY5k8V\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:32:37'),(2398,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"apos7@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yayws8ad\",\"label\":\"First name\"},\"phone\":{\"value\":\"81981231162\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"33s7Ai8 ABqa K3xJEhQ XNlT89h OA6v zzCTIRR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:38:51'),(2399,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"emahmut@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd89zxxm\",\"label\":\"First name\"},\"phone\":{\"value\":\"88489881852\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BOF684c b0gI nS9xZTz uPzEjFt he0B YeJY8hh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:38:58'),(2400,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"macht@yahoo.fr\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybwppt39\",\"label\":\"First name\"},\"phone\":{\"value\":\"82689527484\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mPhEbT6 UDkk r52WOuL mLeu5vm GkRE bP4NSEr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:39:13'),(2401,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pahtusenok@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y8wdh2ka\",\"label\":\"First name\"},\"phone\":{\"value\":\"81439293526\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XBmGetM owJo V6iQDhy olaou8o X4iQ BAp0vDN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:39:20'),(2402,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marirarlan05101991@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ydad3vkc\",\"label\":\"First name\"},\"phone\":{\"value\":\"88565133883\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zkExXiC XRz9 rdpqtBP WgognL7 b5jp 1NbvfFd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:45:09'),(2403,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tomasatoma@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y76c6232\",\"label\":\"First name\"},\"phone\":{\"value\":\"83766923363\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pvGyBOy HRXI kbQHumg eQzJmMM hZc6 dssEqGY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:45:54'),(2404,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"avril2009l@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8b4fk48\",\"label\":\"First name\"},\"phone\":{\"value\":\"85539786123\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eiI3QGJ nhDT i0WfSTC mJKkhJJ JLx8 5fMybHC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:46:48'),(2405,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dantist2008@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yc2qfnpv\",\"label\":\"First name\"},\"phone\":{\"value\":\"84591834424\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SlBndF2 kymP up5lx4V zCp0TzX wnX8 4Yg0IHu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:47:53'),(2406,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"serlegosta@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycn9hod4\",\"label\":\"First name\"},\"phone\":{\"value\":\"82767793129\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7EyrkgR mV2g lzuskzZ gZfMJ2q 5om7 bKT5KZZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:51:31'),(2407,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dimagerlak3@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y7vhsvjy\",\"label\":\"First name\"},\"phone\":{\"value\":\"86815572964\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"766GB6d rk7e NSzIpjS IrPbeLo 9H4N oXcjzpi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:53:02'),(2408,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vlmali4321@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y77ajqdk\",\"label\":\"First name\"},\"phone\":{\"value\":\"82924874634\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AXpWYsq DVoB REXzYrD LpeWuPW ZSNz 20rn4s8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:54:23'),(2409,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pilipenkolarisa822@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9d8f52z\",\"label\":\"First name\"},\"phone\":{\"value\":\"89414226653\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lJdTLTG YQXJ csVWg4r ZGHXpgb Wylh 7CO1UYA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:56:47'),(2410,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sergejplastinin8196@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9pj2438\",\"label\":\"First name\"},\"phone\":{\"value\":\"81545311641\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"32PbSqp B9hc O931vUq a3hCxYT Ylw5 DJS8FQ1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 21:57:56'),(2411,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kljaksa1904@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybwdzhya\",\"label\":\"First name\"},\"phone\":{\"value\":\"86541424314\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"L5EsZ2t XiNk ZPRiC9F Ay2gs6l 7vwB 0WEi6Xe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:00:12'),(2412,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ijekabatixev@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y84atbmz\",\"label\":\"First name\"},\"phone\":{\"value\":\"84493976616\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zIg4eeU usCV qQdQrLf FvG51DZ 726v YXMnDln\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:02:03'),(2413,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alinasasha07@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8hf9768\",\"label\":\"First name\"},\"phone\":{\"value\":\"81196847354\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JjXt5ig 7Uga KrZ9ROR LjIvUDF oomW kL7kH0x\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:04:20'),(2414,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ilya.shybko@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9a5zc6a\",\"label\":\"First name\"},\"phone\":{\"value\":\"84593235423\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Xb7xxz7 q1qn PHmazhd UdUutYX 6zso HBCXO2s\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:05:54'),(2415,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dkadyrr@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybxenvz5\",\"label\":\"First name\"},\"phone\":{\"value\":\"82328461318\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WcmDHl5 vvKj 5IsJpmq TFliXzk AdGu PcBbTa3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:07:22'),(2416,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alekskozyreva@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yacsnyxs\",\"label\":\"First name\"},\"phone\":{\"value\":\"84962857535\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"da7opdI QGI1 jCf3u1a ITtme0H rups oH5HkAG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:09:45'),(2417,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dychenko.max@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7wvf99v\",\"label\":\"First name\"},\"phone\":{\"value\":\"82263691475\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WKS6sre 5gRw hpIID6c nbEnKUI Vdke zKCGpU5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:10:49'),(2418,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dimasfantamas@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8yywn8t\",\"label\":\"First name\"},\"phone\":{\"value\":\"88621389326\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gh0H1y0 KlOz 3yEXiGu w0lrzKE Mh5U XHyFHsw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:14:29'),(2419,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bazilzhan.nurbek@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y85lyyek\",\"label\":\"First name\"},\"phone\":{\"value\":\"83881856134\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OhADy8T lblg 80aamhz poNtolB Wluy jcmuHc0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:14:52'),(2420,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gary.novikov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9gkaxrk\",\"label\":\"First name\"},\"phone\":{\"value\":\"89455913582\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DCwBOjN 1gpx JFIWo02 Je6Kffw Ehby MrCBTtF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:17:07'),(2421,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bulanovaklara12@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya39583x\",\"label\":\"First name\"},\"phone\":{\"value\":\"89455882756\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4ppTYE4 4go1 2eNvVwI lGOvcQ1 y0mu j4afReN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:17:25'),(2422,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"taneapavlova89@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8gue6yr\",\"label\":\"First name\"},\"phone\":{\"value\":\"86239951823\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ibTv1Cf qNRM Lyzn466 cZbj3G6 9lEK beBcRMG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:21:44'),(2423,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gariksaqanyan5@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydano35o\",\"label\":\"First name\"},\"phone\":{\"value\":\"83134992742\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IVcFUcS 2L0e dbSAvEJ Lj9WQKH sjuN oL7qudS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:23:28'),(2424,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nevesta.8001@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y75n4pzk\",\"label\":\"First name\"},\"phone\":{\"value\":\"82782245918\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nwK8xwi H20o Xkj4XEA 0RC6p4S KXNQ CagKslj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:23:49'),(2425,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fatimaalhan2@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y7xrkmh9\",\"label\":\"First name\"},\"phone\":{\"value\":\"84765578431\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PnOZjTm AmEg TtdYmXL OUMGsie hx2t gmR48RD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:25:03'),(2426,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zhanerkeamandyk@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8z3bxp5\",\"label\":\"First name\"},\"phone\":{\"value\":\"84126521265\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oMPBrn9 XR8M 4YNrXRv nlsaLEj JMNL 3ReQVPy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:29:12'),(2427,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"boos.psheno2012@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycokolcl\",\"label\":\"First name\"},\"phone\":{\"value\":\"89162641785\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"k68aS9r XDRd oMnaJAC v2hnUtT yn96 8VBtHKt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:29:47'),(2428,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"artem5613rambler@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7zjd7as\",\"label\":\"First name\"},\"phone\":{\"value\":\"81647459168\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bWZZVEe hNkP KzEQLmN Udc6NMf pjUa DvZXG25\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:32:44'),(2429,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"a.palamar4uck@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yalsczhs\",\"label\":\"First name\"},\"phone\":{\"value\":\"82989164591\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"o9cJP9o ioC6 HqTcQVj nc6RzQK xkG7 NuG6ug9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:32:48'),(2430,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"onyeboc@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybxete2w\",\"label\":\"First name\"},\"phone\":{\"value\":\"82313557456\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KLb4PD4 Gjib iuV1dlG fXPA0tv EQL0 EiTw8Jt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:36:09'),(2431,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olgamkaksimova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y76f965m\",\"label\":\"First name\"},\"phone\":{\"value\":\"82263363827\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"06hzLAS DYpW LBsEdc5 VKcvHxD toRU Jn3AlD4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:36:27'),(2432,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jiga747575@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yc7g5lbu\",\"label\":\"First name\"},\"phone\":{\"value\":\"82364836864\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GkBE8JY Iqy1 UMd3cVh 71Dq6bx qxMf tXqJzZV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:40:38'),(2433,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"xlsergei@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd9x8mhy\",\"label\":\"First name\"},\"phone\":{\"value\":\"82532594586\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FwGl9lV uQFC t3syEKf mf1MCYg hPGG ChV6Bw4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:41:41'),(2434,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"adathya1965@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb7dpoqs\",\"label\":\"First name\"},\"phone\":{\"value\":\"88884686537\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"T0jJIFR ayjf VC5AMBM iS1FkaQ 4yBA z6GVCjQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:42:35'),(2435,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"letenanta@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y937yfel\",\"label\":\"First name\"},\"phone\":{\"value\":\"89467957637\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"albWMLd vTXH m6YaUW1 Tt08f9p GV9R 5RI3Ij7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:43:42'),(2436,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alekuz85@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y7nk649y\",\"label\":\"First name\"},\"phone\":{\"value\":\"87813691963\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ESjFw7z fcA2 z6cMr98 hcsiHB9 Q3WF ftY03kV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:48:20'),(2437,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"andreymasyukov2001@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaz9ej5r\",\"label\":\"First name\"},\"phone\":{\"value\":\"88271881885\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UtjkLGS zskW aUXtd9r MFsd9gx WA5H 9lwcGMB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:48:51'),(2438,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marinkeeb0nd@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydb8hldj\",\"label\":\"First name\"},\"phone\":{\"value\":\"87882694817\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1sYYgkb WBvv FXMyi1P U6HcYNH njZi CiFnOuL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:50:41'),(2439,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"linguist-t-2013@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y89tpgzt\",\"label\":\"First name\"},\"phone\":{\"value\":\"84528285982\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ubXAgTU TH88 jNwRUlR p5FRtdg Gyr5 eVyVYQ2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:50:54'),(2440,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zamashnyukolya@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yc6f8rv3\",\"label\":\"First name\"},\"phone\":{\"value\":\"89623366546\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VKRwWZQ rfIl L9Q76pw 8V6YJdy 2ilR ci1zKch\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:55:12'),(2441,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mmalaa596@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yap6dwmq\",\"label\":\"First name\"},\"phone\":{\"value\":\"81911245253\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ceoRxiu o0Ue Mea8Npt sU0IjgS fywB Wlh5TPB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:56:00'),(2442,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"cheremisin.nikita@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yafy9z6b\",\"label\":\"First name\"},\"phone\":{\"value\":\"84931117749\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OELzPm7 4iL5 omsfQeH 5rMo8Ug 4u8S AxCtkA3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:58:07'),(2443,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sobakaya1970@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybc3s745\",\"label\":\"First name\"},\"phone\":{\"value\":\"88511925749\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Jk3jWYV 5MXW w66J4nw 6JKUqv3 5fsj hMgYSuI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 22:59:44'),(2444,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nnatali3333@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9nsfnqa\",\"label\":\"First name\"},\"phone\":{\"value\":\"84461825832\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"J42RsPd 5imn sWBgC62 xQhep58 vYcx cDMMqkI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:01:35'),(2445,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"baktiarsotvoldiev008@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybrbfosz\",\"label\":\"First name\"},\"phone\":{\"value\":\"88765341328\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SQLvicY LF2Z j6C6MZX 09jpVxB NCYd A4Jfkwf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:03:42'),(2446,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kuzvas78@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ycvnx72r\",\"label\":\"First name\"},\"phone\":{\"value\":\"87724562339\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uOEiJOm piNM V0Qed6P qkpBvvd iyLC NkWg0m5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:05:25'),(2447,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ulibnislinaru@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybe7cx8z\",\"label\":\"First name\"},\"phone\":{\"value\":\"87375773593\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RzyuuvF y7gd uF7B4r5 UAAAwiF VLrC 7bz8Tud\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:07:58'),(2448,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lovelas86660@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y6unlmdj\",\"label\":\"First name\"},\"phone\":{\"value\":\"89476296399\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aepnSri vZcx JneDuQL GHBiNj8 KpDq b1Ip01a\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:08:56'),(2449,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"popov.skal@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya8mp7q4\",\"label\":\"First name\"},\"phone\":{\"value\":\"81135755398\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wtngiHw EtF5 qPb1Lpz n1E5Uyu cFf5 ZGQcpu7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:11:26'),(2450,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"svetashy100589@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7ahm8t9\",\"label\":\"First name\"},\"phone\":{\"value\":\"82258762361\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PgxuJt7 ROIJ aopQgTl eKUVnNG DFgN Yy6yWaL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:12:36'),(2451,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"miukijhempinerobarroga@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7uj7xep\",\"label\":\"First name\"},\"phone\":{\"value\":\"87389573995\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BnrbwN6 yXIy RFfWVJ9 Sc2C1J7 ygHa WlwukSh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:14:26'),(2452,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"arkhipova.ulyana@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y799klem\",\"label\":\"First name\"},\"phone\":{\"value\":\"85188665412\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MAR1S2L f734 qPn8W7q FT97PRU CpDM N9mdiZQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:18:10'),(2453,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jursunkojoev@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yafej4fp\",\"label\":\"First name\"},\"phone\":{\"value\":\"81157567941\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cdB19dk 7QFn YgpK51R CpKr3kp H6vt shUfFVR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:19:06'),(2454,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alinur196606@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycqz8x6x\",\"label\":\"First name\"},\"phone\":{\"value\":\"89774114455\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IgnCqAf mVla niofk4e 5Xl1Tdb 8AEY p0ZBayJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:19:47'),(2455,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fabikoch@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y7krc57o\",\"label\":\"First name\"},\"phone\":{\"value\":\"83625292238\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VSlKx0p 40Ix TpGKjSi 4AW6r3f gyTN 6Bdxo0V\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:20:52'),(2456,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elzesser73@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yd5r7h5s\",\"label\":\"First name\"},\"phone\":{\"value\":\"81469827733\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"m5R2AHF yvnl VbCRj6d vWbxqFX Q7Rn f9VjDHB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:26:54'),(2457,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mihagang@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7zzunqc\",\"label\":\"First name\"},\"phone\":{\"value\":\"88557239434\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"StWR1oF HqHi OJfuzQB 1sYJiSi S0nP NJtoWDS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:27:14'),(2458,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"karinalovebabenko9@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yayyxrla\",\"label\":\"First name\"},\"phone\":{\"value\":\"89246245228\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6neMQhf sUQV KRetexA UIlUOtV m4MJ NUZ3Uil\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:27:15'),(2459,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"luniova21041993@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yb3ecg3b\",\"label\":\"First name\"},\"phone\":{\"value\":\"86469664553\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"J5E2VIq IJJr PZpKrYq cuCw7YO GG3B U7rjJQa\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:27:28'),(2460,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"grantcummins@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybzt7xar\",\"label\":\"First name\"},\"phone\":{\"value\":\"86636539497\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TEal7vI 6fxw NF3kxiF bK7BgZo qfLa xQmrfQs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:33:45'),(2461,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tolstovvlad01@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7kswyew\",\"label\":\"First name\"},\"phone\":{\"value\":\"82515953772\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9qqw8ji vVWf c78rsDY Wle0b67 qsRj AlkhCvo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:34:26'),(2462,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"viktorhr@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yawmwtx9\",\"label\":\"First name\"},\"phone\":{\"value\":\"87896284985\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pdQnIbU 4P26 MwM91ni YF7dXpw K3u2 Qwu2MPl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:34:32'),(2463,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kniptz95@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yca2a9tu\",\"label\":\"First name\"},\"phone\":{\"value\":\"89887187233\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8h8p0ux O6sN uWDfoEi 5gySfKo yDHz R6A0gTh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:36:31'),(2464,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zinovjeva.margari@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yb3wjv6w\",\"label\":\"First name\"},\"phone\":{\"value\":\"88631447732\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lvnipLS p9O2 VgZdTjK swoR15j LiC5 Z1rqIzr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:40:20'),(2465,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"darinaleksej1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yabfms6a\",\"label\":\"First name\"},\"phone\":{\"value\":\"83959731584\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"P2jmjsd AQjL z2gTUqA kuK1JVx qeGI wpS78tJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:41:38'),(2466,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nordland2008@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yb4pwo5y\",\"label\":\"First name\"},\"phone\":{\"value\":\"82885867548\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"h7wWFPN e8E4 F6ZxunB ccsRSWv 0Kp0 kGsnWy8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:41:59'),(2467,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gamma.do@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7lm3vsm\",\"label\":\"First name\"},\"phone\":{\"value\":\"82414156652\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SoqNwOf xDcI Vu3PIgo 1ZlrU58 1bvh Amw5VJo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:45:43'),(2468,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kadyke5368@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycltzflz\",\"label\":\"First name\"},\"phone\":{\"value\":\"86877554339\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0ujTa2n AuVl 0tnkG02 3TmVd9f GU6D i4tEp7F\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:46:54'),(2469,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"iinkar739@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y95tf9dm\",\"label\":\"First name\"},\"phone\":{\"value\":\"86785611462\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EZdjuW8 6yrl pedK7Pu EBnVj8N 3rAm 5iGpPHr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:49:00'),(2470,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"grantdraw@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycnukf2x\",\"label\":\"First name\"},\"phone\":{\"value\":\"84718751383\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UwLgFBw ZD05 XsBFi9f ka0A2Mb 8YK4 Xlidisl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:49:33'),(2471,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"89000559762sveta@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybw7hodu\",\"label\":\"First name\"},\"phone\":{\"value\":\"87862468835\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9WCeRkd F5WQ HLk5uW1 x42mIzg JWuC DUbwc6z\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:53:32'),(2472,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sakunthala1393@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8zmdh4k\",\"label\":\"First name\"},\"phone\":{\"value\":\"85898943264\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eEemNlO lh1e BeRUrkl e8lFHom 6mus jnfzT2p\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:54:55'),(2473,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"markdonaldo52@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yaqhjwjb\",\"label\":\"First name\"},\"phone\":{\"value\":\"88259213933\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2TVXht6 eIYF 02coap2 sw444Fx CNam wysGhV2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:56:31'),(2474,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tanat102008@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycztcvma\",\"label\":\"First name\"},\"phone\":{\"value\":\"82927768615\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SPfQkuY Qn5M 8iKLUhG BjGALqc mi6Q bpQnfoo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-23 23:57:05'),(2475,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"azis10@ya.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycvsfotr\",\"label\":\"First name\"},\"phone\":{\"value\":\"81778548756\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SMiC6T6 LJKp IqawGfu kEADf7Q gsEb dxhpM9G\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:00:10'),(2476,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"maksuta2007@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybqkjyxp\",\"label\":\"First name\"},\"phone\":{\"value\":\"87368478369\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RyldAN1 F1Tl uEmAxLG ajQDoVU XFmf imH90ju\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:04:01'),(2477,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"al.novikov66@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y92lajnz\",\"label\":\"First name\"},\"phone\":{\"value\":\"85196218325\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ng11b2F ltqw Tb3QWYo wac4FAo I45D gKunxmf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:04:27'),(2478,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nurmuhammadi2018@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycayk5ca\",\"label\":\"First name\"},\"phone\":{\"value\":\"89692725931\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gFclFVO V6xO 59BUlGX PuSRCSM l3j8 Chr9rmd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:05:02'),(2479,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shadrindenis24@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yamy7hb2\",\"label\":\"First name\"},\"phone\":{\"value\":\"86575861187\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LpLF7IS DhCj xzRkp5Q WfWw7k7 1WnL DRfiAiC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:06:56'),(2480,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"okolesnikova459@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y97cw8mc\",\"label\":\"First name\"},\"phone\":{\"value\":\"88426457792\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SPy24pS HBS7 06jSK6m oY9rYRh 509X Iu3OBbX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:11:39'),(2481,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aciddrop.adp@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybpu5nqe\",\"label\":\"First name\"},\"phone\":{\"value\":\"82341564671\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hswpK4I PRxH RHzLqmQ xO6KkLe xdYa Xl85yrc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:13:00'),(2482,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mazda4ka@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yctnoghd\",\"label\":\"First name\"},\"phone\":{\"value\":\"87581677547\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ve5V2nD HGVS WjEq5bZ G3H0Mot EdV4 yOUZr8u\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:13:37'),(2483,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"araqsya.pogosyan@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ycvuqmol\",\"label\":\"First name\"},\"phone\":{\"value\":\"89662118758\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kWeznHb uX64 s0KbjI1 06jiJAb HGRi AL86U0B\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:13:55'),(2484,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"agrarin77@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9nq3ayu\",\"label\":\"First name\"},\"phone\":{\"value\":\"82576769441\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pglLIJQ 2SKc msEFina Esmx1nu qiUp Axdv5pn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:19:21'),(2485,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dimonit047@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycs77h8n\",\"label\":\"First name\"},\"phone\":{\"value\":\"89561763868\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sWBAjHj 5ADZ AuAwpSm Z8aBmRA ztzp STx5kCs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:20:16'),(2486,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"abdulazizi9774@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydfru566\",\"label\":\"First name\"},\"phone\":{\"value\":\"88122986114\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3vT46EA Yglf 6VaDl0f SxcCMnI IUup 3eJpcJ3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:20:48'),(2487,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"maikl.treshin@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yccls9h3\",\"label\":\"First name\"},\"phone\":{\"value\":\"83888765446\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SehIdgU 1G7t i1XYUnP 7zeMts4 nTzi QgFB8T9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:23:25'),(2488,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anastasiay19962012@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7o37tze\",\"label\":\"First name\"},\"phone\":{\"value\":\"81342425396\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"x6sBEwv 3MlF lhoslAA Y28C0a4 Rpmj Nny6JL5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:26:56'),(2489,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"smarttick@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yafsn2f9\",\"label\":\"First name\"},\"phone\":{\"value\":\"82569341984\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jB0W8IS W6GF ISBOBrC Aj8oTbF 3nqD sY5uyFH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:27:11'),(2490,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kucevairina56@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycgtvpj2\",\"label\":\"First name\"},\"phone\":{\"value\":\"87884785981\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UDhvT4n qCfy Ke4Eenc rE6HMHG 2Viq J4kpDs4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:28:42'),(2491,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"milano4ka0108@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y934tmnc\",\"label\":\"First name\"},\"phone\":{\"value\":\"85314521663\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NL3sez3 yhkH cKWtchY XQy4vln bXSe p6hY1GM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:32:54'),(2492,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"samswfclumley@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9hfjnwj\",\"label\":\"First name\"},\"phone\":{\"value\":\"88221695548\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UL5kdE8 S1qs bMo4DW8 PT5w8Ab vhu5 Sykm6op\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:33:39'),(2493,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bahzah888@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9sxqfyn\",\"label\":\"First name\"},\"phone\":{\"value\":\"88122526812\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dUZ0Hqz SIBU QTnts11 HQ6NBNv SvFI cgLJJwG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:34:39'),(2494,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"liza.shepitko@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yb8u55kn\",\"label\":\"First name\"},\"phone\":{\"value\":\"88946268442\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RyADAkM CH2T xhjFlsI 4B3ELjp efqm xaa65xn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:36:36'),(2495,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"khusenov12345@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yaxw8ft8\",\"label\":\"First name\"},\"phone\":{\"value\":\"88166569953\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ymDWwyD zsDj 38M8Hzp 5IhttMz sebF Hb9R0ju\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:40:19'),(2496,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"syakowlew@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9ggjrpm\",\"label\":\"First name\"},\"phone\":{\"value\":\"86594724754\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QJossiO L7z7 n8314Gc wKQbo2k 3L8d LLHkmi6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:42:08'),(2497,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"maratnogajbaev2751@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ya3tw64z\",\"label\":\"First name\"},\"phone\":{\"value\":\"88855254987\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"21dHacA Cz2Y o8Egsyp mhTxXSY 86Gm 2JW1QSh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:42:20'),(2498,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"asryan.d99@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9qtmt6d\",\"label\":\"First name\"},\"phone\":{\"value\":\"82239235974\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"v4EncZ4 DUhC I64w9TU yfUdKd5 6CHC 2K3tqMT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:44:32'),(2499,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"saprykaanton934@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yb6k8ddv\",\"label\":\"First name\"},\"phone\":{\"value\":\"89135247194\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Z3Xo7Bd bqlu hY4DwQI Zvda9wM G5R2 cYbQLn6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:47:00'),(2500,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"katarinacehova2829@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yakhz2hz\",\"label\":\"First name\"},\"phone\":{\"value\":\"87622362613\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tAzvSyj 4Bgx 5RdYKEx LJnZ0Bb AXNO I0zQvoq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:49:40'),(2501,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"15lulechka@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7e92q2a\",\"label\":\"First name\"},\"phone\":{\"value\":\"86965655596\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0mhWeIO ksCP svtG8rM DV8FLDr qkyr fyegp8P\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:51:43'),(2502,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"russiangirl0909@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y7cqdoaa\",\"label\":\"First name\"},\"phone\":{\"value\":\"83816554622\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pKtbBf1 oeJ5 92peOjh QW8gl7e 6L0J GBrVcAj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:52:29'),(2503,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zhamilya.myrzabek@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydcappvz\",\"label\":\"First name\"},\"phone\":{\"value\":\"81886599435\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4bwMAsg M6TP iz16ftc ORxaTAM NyM8 4M9sIOP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:53:36'),(2504,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"genaspesivtsev@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yb4msmwf\",\"label\":\"First name\"},\"phone\":{\"value\":\"85451363656\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KWferdL aXiB GQak3t2 MTGsh57 aS4E SdZplDc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 00:57:06'),(2505,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tosigarpija2345@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7jshozl\",\"label\":\"First name\"},\"phone\":{\"value\":\"86782271684\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UAsRQ76 MDwz ayoEzp9 XrHLiLF NP5R Ae0reCQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:00:13'),(2506,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"adely.soso@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yb5z6a7d\",\"label\":\"First name\"},\"phone\":{\"value\":\"84663195188\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SyPHmFr TccP 6pb0ms3 GpfwLyR 7sQV xTBtXb3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:00:22'),(2507,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"monastyrsinamaria@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yctg45w4\",\"label\":\"First name\"},\"phone\":{\"value\":\"88139532487\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RmULEjj 08VG Nr68oea jKFmXa7 DeYn coMsbxT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:01:01'),(2508,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mari.elkova@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8zlxjbp\",\"label\":\"First name\"},\"phone\":{\"value\":\"85154282371\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"A5xdwBs qrfS HkvaCrr 2qJJGGb VTjV AJAukEG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:04:52'),(2509,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"larisa.antonio@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8j4hs5l\",\"label\":\"First name\"},\"phone\":{\"value\":\"82764952281\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xx7WIV6 p3dI 3GEvl7m Nqeortt K5YN kQm8EYw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:07:13'),(2510,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"uradatsenko@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9glur4r\",\"label\":\"First name\"},\"phone\":{\"value\":\"82588392544\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"S9lZARg hM6z zibQdGM K4a3CTd QSUE VMkKmKd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:08:22'),(2511,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"snezanac95@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7mtq5b2\",\"label\":\"First name\"},\"phone\":{\"value\":\"87813213871\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Epc5b9z jx6r 9aF1rPg TKG2aSU prX0 rbNFwst\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:10:53'),(2512,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"wasilin2001kas0101@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yaluhb94\",\"label\":\"First name\"},\"phone\":{\"value\":\"82139338674\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1n9v8a2 9lSo drWPxsM fzhpfzn FJyR 9Ci2Sl1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:12:58'),(2513,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"srazhadin.ermakhanov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycn9hod4\",\"label\":\"First name\"},\"phone\":{\"value\":\"84568888896\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dfUp2Lv w1Nh gPPeTkt SmPoJdX leiE KgDTarN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:14:10'),(2514,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"deniskorablev@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9u6x6vk\",\"label\":\"First name\"},\"phone\":{\"value\":\"85211815225\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8OSp8Vv S08p yM1W3mt mWDAX6b 9ei9 yWkFNpK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:16:25'),(2515,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"carmanovalyuba@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybqas2be\",\"label\":\"First name\"},\"phone\":{\"value\":\"83639849167\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"a0s6QQm oUp7 EyLFfwh zJGMdEU mODO KuIozVv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:20:25'),(2516,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aleksandr.jusupov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y94zweyo\",\"label\":\"First name\"},\"phone\":{\"value\":\"81252984161\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IcF5tPk itNZ qpA6oI9 zxxdDJJ kkMO EJtS9OS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:20:30'),(2517,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gurek4431@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaxz3kqp\",\"label\":\"First name\"},\"phone\":{\"value\":\"85298386286\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4eentXh TbPv 32b0Qcl BUq2MS6 pFO0 UnLfdI1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:20:43'),(2518,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"saidalievafarida79@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9wc27lj\",\"label\":\"First name\"},\"phone\":{\"value\":\"84118637667\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"f27kRPs Xg1u tVgl6C2 XDFcYwV woKF yq3MTGE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:24:21'),(2519,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natalaberestovamix0@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yclzvb36\",\"label\":\"First name\"},\"phone\":{\"value\":\"86298299943\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aVv6rlo Tivq atBVWRw 2uqV2aU EH7t s1JxET0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:27:09'),(2520,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zledecova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydce5xus\",\"label\":\"First name\"},\"phone\":{\"value\":\"85272571675\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Y57h6cN HcRK Isn8HhK 6fisKCh c8el uhTEK4S\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:27:52'),(2521,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oigeni.logvinov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydgs3jz5\",\"label\":\"First name\"},\"phone\":{\"value\":\"82776645826\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JFPE0wS jjKx NXgcFYG y5T9tBa MFfu lr37eTE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:29:35'),(2522,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','Error in \'fields.email\'. Invalid email address','submit','{\"email\":{\"value\":\"valeria94@mail.md\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd5luetm\",\"label\":\"First name\"},\"phone\":{\"value\":\"84171586197\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hoLlm5M Iui4 UgRMIwp 4mXd1Nw jTfr jPzXhfS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"status\":\"error\",\"message\":\"The request is not valid\",\"correlationId\":\"fad25fee-67dc-46a0-a782-7293269acf7e\",\"errors\":[{\"message\":\"Error in \'fields.email\'. Invalid email address\",\"errorType\":\"INVALID_EMAIL\"}]}','[]',0,'2022-01-24 01:32:12'),(2523,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vaceslavsoloviev588@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ya3jtv37\",\"label\":\"First name\"},\"phone\":{\"value\":\"87725878659\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IMXLsh0 Jj4F bEr00ga vrFIZ7c 29OJ HM4J2M1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:33:53'),(2524,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vdromenko@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yafmgra2\",\"label\":\"First name\"},\"phone\":{\"value\":\"88984262934\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qX8ht9P SWzO oSuthlc Sllmt4c cIKU wy7Tvv8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:35:24'),(2525,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vitakorost@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yc6b67tv\",\"label\":\"First name\"},\"phone\":{\"value\":\"85284873757\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"m5LIH5R o4Wq USsHHHL uxpS5We AcVC 7f9kg3O\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:39:18'),(2526,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"li.olesy@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybhb7n9o\",\"label\":\"First name\"},\"phone\":{\"value\":\"86259265916\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"m4yncvR CclS ha4Lyyu tHdiydM hTAj LgA1zBi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:40:11'),(2527,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bulatmusykov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9vmlom5\",\"label\":\"First name\"},\"phone\":{\"value\":\"89897618972\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zebJ8gt M5B6 MgNg44H jNE9L2D mCZ4 epfulze\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:40:39'),(2528,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"samopetrosyan6@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ychgcprp\",\"label\":\"First name\"},\"phone\":{\"value\":\"82214349119\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MxldGrw Tmtd eLPMrdJ ScB6ztQ YOsV De249n3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:43:05'),(2529,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"papu98abc@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8wy94oo\",\"label\":\"First name\"},\"phone\":{\"value\":\"86347522965\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iA3zTba 6Pe2 ipt0raG i4TpbYE IZeC gUKm1n3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:47:22'),(2530,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ankl.alex@ya.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7rvdwpv\",\"label\":\"First name\"},\"phone\":{\"value\":\"84321144143\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XrRozr9 luPR ILI1SG8 w75ssxl zGRt 4OjE3l8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:47:59'),(2531,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yalovenko1939@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycny8hmj\",\"label\":\"First name\"},\"phone\":{\"value\":\"88526815152\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bXAEYVS op9e BEFuTII f9G4PvZ r1MI DLHig9l\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:48:53'),(2532,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mortan77@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybzwj8a4\",\"label\":\"First name\"},\"phone\":{\"value\":\"88857651434\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sGRtjyJ ujcm ncli0J2 d9QiUYZ DMrW gm0R1Dg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:50:46'),(2533,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"efimov040@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y73zvdn7\",\"label\":\"First name\"},\"phone\":{\"value\":\"86537589865\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ECA9FxF dtc8 uZVq3tY JcFwAtL 1hAA DSnoGZD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:54:11'),(2534,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"noorzeba9234@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y6w7zwof\",\"label\":\"First name\"},\"phone\":{\"value\":\"85148757521\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6RDd5QQ 1ffe 7pXzLX8 hkzTZyO ePQd 0wocpoO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:55:42'),(2535,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"necka1974@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycvbgtle\",\"label\":\"First name\"},\"phone\":{\"value\":\"86232677454\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gBDBOm7 STeQ Oad9tg8 AH7Qrwh TN6E 55VOY06\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:58:19'),(2536,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"artur.tsupilo@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ya3frb22\",\"label\":\"First name\"},\"phone\":{\"value\":\"81453233979\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nwzQkJc KhZp PLA0wEm pMPS2S1 jphI LtdisYY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 01:58:31'),(2537,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gandhiji@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y8o5pbzb\",\"label\":\"First name\"},\"phone\":{\"value\":\"83824837341\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ByJhgSt mgdj 0zzbnq8 RIiqyfV 287W 0MHxypM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:00:56'),(2538,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nekipelov.roma@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yafej4fp\",\"label\":\"First name\"},\"phone\":{\"value\":\"82327665561\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"N8keeEf gqAE 5gMRN0f i59E1AM mMKb Ns76CBV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:03:40'),(2539,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rpodojnitsyn@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7e5yalc\",\"label\":\"First name\"},\"phone\":{\"value\":\"82594965823\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DTM5xQB YAHD k7pWWw9 ZHeVNL9 Iv6P mGYTMTL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:05:55'),(2540,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"irina-no4ka@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8zqunk9\",\"label\":\"First name\"},\"phone\":{\"value\":\"81139784111\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QLkX7Y9 GdiQ 8K6tT5D V1JTcPi Nkyp YXArdVs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:07:34'),(2541,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"katakaravaeva86510@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc7ngkg8\",\"label\":\"First name\"},\"phone\":{\"value\":\"83828665245\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zcPbXEX 3sFS OjNN5F9 NqrBlfj DDEw vjcVPzy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:07:57'),(2542,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"reshetnikovillia@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yammoref\",\"label\":\"First name\"},\"phone\":{\"value\":\"86943674787\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jpQLt7i C2ro wY2VvEH w78yI8p Sq1G n4GheUj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:11:48'),(2543,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natazadorina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yccm7nga\",\"label\":\"First name\"},\"phone\":{\"value\":\"85469593769\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"b5ZrilD PQ7C 9DuJTOy S14ZrId iqpA CM2orf7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:13:33'),(2544,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anastamatochkina@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybdyf5z7\",\"label\":\"First name\"},\"phone\":{\"value\":\"82318185735\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IwwzA0S s1PR 6gf5Fg2 lFiNj0B mEEa vdEDl9Z\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:14:10'); INSERT INTO `wp_vxcf_hubspot_log` VALUES (2545,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hakimsaid561@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yb2lvka7\",\"label\":\"First name\"},\"phone\":{\"value\":\"82748477781\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"G0YjafU wRGd oZfv07Q FozIIIY kItH tJ08aYI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:17:23'),(2546,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sportsman210692@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ya9xccbg\",\"label\":\"First name\"},\"phone\":{\"value\":\"85923527324\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5xJM2xD F7b0 bggogVl Ty6iomi MvvY GHnRr7V\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:19:39'),(2547,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"acher77@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ya7try9j\",\"label\":\"First name\"},\"phone\":{\"value\":\"89784417436\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ilh8jUP 01LY swdg2ZL 9CzHu5D 9A8G zEHtDRJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:20:50'),(2548,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ibragim5424@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7shsxyl\",\"label\":\"First name\"},\"phone\":{\"value\":\"84512912162\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KraCsGT JQ0b L9HM2m1 VzpqF7T Bfbh NbkkKs7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:21:11'),(2549,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zhuykova.a@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9qp2ver\",\"label\":\"First name\"},\"phone\":{\"value\":\"82564191583\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3calllq Omty dJ3gmyG l9QUJZG sCvQ qnu48Fs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:27:09'),(2550,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"i.cashin2013@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycrv86xz\",\"label\":\"First name\"},\"phone\":{\"value\":\"85883112593\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LIW2fzc Cp2Q aZDk7jT YSxQzEo gfqh sVPjqhS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:27:24'),(2551,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"paiazhanovjolon@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yatb5jyr\",\"label\":\"First name\"},\"phone\":{\"value\":\"82181866639\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6sgtc5L 3tWr Mj29dmk AklMM5w GtJH gmOlhFG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:27:28'),(2552,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olezhka.martynyukk1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y93quw7r\",\"label\":\"First name\"},\"phone\":{\"value\":\"85699562675\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kKmwlR6 4sjv U41Z6JN BzynqZN 4jtr U06dc5H\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:28:52'),(2553,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aevseeva1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9hoegpt\",\"label\":\"First name\"},\"phone\":{\"value\":\"89148825987\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HlYOheo 1L8b 3v6U3Fe szGmosh uTK8 DsgPWpW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:34:07'),(2554,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alya.bikhman@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8rs6q25\",\"label\":\"First name\"},\"phone\":{\"value\":\"83673434199\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9MFR1NV xxry DaIyo6w bfXOdem OP48 oaqgsW0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:35:03'),(2555,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"seredinnikolaj@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8knwfw4\",\"label\":\"First name\"},\"phone\":{\"value\":\"84746114671\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"H93N3fq Ha13 CWDu1xi zX7qzsb ts25 wTOwz2L\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:36:18'),(2556,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"eva.oliver.ua@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y827h4xx\",\"label\":\"First name\"},\"phone\":{\"value\":\"88269322159\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XOF375H 5ihp cSqOwbk V8nRoQw wJNj CJuAu8G\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:36:34'),(2557,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ceban_andrei90@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yc7qfouk\",\"label\":\"First name\"},\"phone\":{\"value\":\"85793146474\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AjFPJcC sQnC 2TIKCB8 gXAK2uK d9DB DVBEunx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:40:44'),(2558,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"evgdan2007@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybrkahls\",\"label\":\"First name\"},\"phone\":{\"value\":\"84426296897\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0wbqJl0 9NLh MVZRl1s xy5HfRt cKTp ozQcIOF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:42:52'),(2559,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dizel207777@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybrw9mu3\",\"label\":\"First name\"},\"phone\":{\"value\":\"87798483764\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"byM9sNZ 7zP8 lunMaHJ 15SNhWl yc0j K7Lhxpb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:45:54'),(2560,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"afdit1182@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y87ugqxf\",\"label\":\"First name\"},\"phone\":{\"value\":\"81856147585\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EX42hG3 0umb LI4GFrB 3ILXIun vTZs 7zGYPON\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:47:14'),(2561,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"burdonova.irina@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yactj6tt\",\"label\":\"First name\"},\"phone\":{\"value\":\"89923785744\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zul4EHm b4M6 dkaW4g2 6oLo8CO uyss krkRe57\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:50:40'),(2562,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zhusupovaaida9@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaj6b5zy\",\"label\":\"First name\"},\"phone\":{\"value\":\"88385527348\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QGaHc2Q sIJt Sh0m2H6 9lgpGsl xZlg 2hpnymw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:50:52'),(2563,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hnarush1989@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybjj6l6k\",\"label\":\"First name\"},\"phone\":{\"value\":\"81598917373\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mQD6jWo jeaI 4qLcoa2 HAdjxLO t3RO 00BOQev\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:53:45'),(2564,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"d.kudryashov.irk@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8we774u\",\"label\":\"First name\"},\"phone\":{\"value\":\"88292857814\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"E3Vx5Mi mJtm yr4Wumq zxOvXsO FB6G m8Q8iUU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:55:08'),(2565,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bygimenhell@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9fla4kn\",\"label\":\"First name\"},\"phone\":{\"value\":\"86975878972\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dS531jf gce9 VQEb1Or dIjKbRM BZOU 5JvEYdu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:58:18'),(2566,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vineetsingh2710@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y98o72os\",\"label\":\"First name\"},\"phone\":{\"value\":\"86483727296\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"T3hldM1 ttLp gFFkIOM vyPw3wE 0dfl ur9eHuI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 02:58:23'),(2567,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"orangeking003@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ydhxvzbc\",\"label\":\"First name\"},\"phone\":{\"value\":\"88333297569\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hLtTCxK PwQf L8yn4TN TrV8z4j 69yt mqw0Yr3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 03:00:15'),(2568,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rajenderiloveyou@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ya4jvrxb\",\"label\":\"First name\"},\"phone\":{\"value\":\"83871764384\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"D9jOYaV 1D76 IMTabpy nN2ir0I KITd IvL2vDZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 03:04:28'),(2569,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anzelikanikulina69@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8jjsxxs\",\"label\":\"First name\"},\"phone\":{\"value\":\"86569185591\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KFabIuo SYKh u4D2mrD 3CLUmfp ZGsQ 3Y4iPUw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 03:05:42'),(2570,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"cfjkl1997@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7tmxd2t\",\"label\":\"First name\"},\"phone\":{\"value\":\"89454296525\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8ygIJfj vJQX UT8hyBg suoMjvA 4K1p Ro12Fg6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.7.133\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 03:05:58'),(2571,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vl4d2123@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ydyg473q\",\"label\":\"First name\"},\"phone\":{\"value\":\"82211187555\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nrBqoTF hysV YzTLslh i8BPK0E ecv5 eYu2dQT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 03:06:49'),(2572,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nazarshodiev12345@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yamousz2\",\"label\":\"First name\"},\"phone\":{\"value\":\"84641987248\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hXL6CzF N5ro g79ZEWp ay9ppdR 8z6s lfM5G0U\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 03:13:04'),(2573,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nailhanafin@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yd6to6qu\",\"label\":\"First name\"},\"phone\":{\"value\":\"82668511374\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hyGRzC7 IPZc ToxYuJm T0jYla1 KsoO z7NLENW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 03:13:17'),(2574,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fizuli.ram@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya4b4y7y\",\"label\":\"First name\"},\"phone\":{\"value\":\"89799672989\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FgbZsVM SZqD eBoc7el ViYgzzk Ra2U ZmRo3vd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 03:13:36'),(2575,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"peremitinajulija@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8uvuxzh\",\"label\":\"First name\"},\"phone\":{\"value\":\"83959232684\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0XT35Hc PZmZ TaJuQLt 3o2jtwJ 4U8J 7ZPerfk\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 03:20:18'),(2576,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"galinapavlenko04031978@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yczyvhad\",\"label\":\"First name\"},\"phone\":{\"value\":\"82548725738\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oJrOkne F5aR BidNJp2 UfEUc5y ZESF jkvjTlQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 03:20:26'),(2577,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"reveka0205@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ybzxcdlr\",\"label\":\"First name\"},\"phone\":{\"value\":\"85413769259\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aMSPlYR g8ga 7bsYKq5 k2rM7IR TqBx xR59fcX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 03:22:39'),(2578,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"drex8863@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yd8nsakw\",\"label\":\"First name\"},\"phone\":{\"value\":\"88176267649\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ppnd6Yx KMJS Otattrp D9FCN0e Aka9 LsvhNqN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.131.167\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 03:26:46'),(2579,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sergey7vip@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yaywmppj\",\"label\":\"First name\"},\"phone\":{\"value\":\"83564223416\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"r0uITz1 lh4v JnLAFKi y4rTVD8 e1wK jL8NSq2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 03:27:49'),(2580,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"khandaulat67@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yamnxchz\",\"label\":\"First name\"},\"phone\":{\"value\":\"88584418541\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Usagkuw PS7I 0hREMXo mo6QAj0 5hGs afiMW2m\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 03:31:39'),(2581,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"danilukoksana99@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaorxj9d\",\"label\":\"First name\"},\"phone\":{\"value\":\"84894452797\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vL8lKiZ Mvqx a8bRIZ3 lFWmsZJ wgdn rAzftOj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 03:35:04'),(2582,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ludadonetz@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y72sdtad\",\"label\":\"First name\"},\"phone\":{\"value\":\"87996235199\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Cau7HWH cu78 gP8Y7at ZYH6lu3 5vE6 yyuN7tF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 03:40:51'),(2583,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mvb-1952@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9qa7yop\",\"label\":\"First name\"},\"phone\":{\"value\":\"88473681228\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bVpZsNZ XJW4 zpz246K kfSjgBJ Zf3c cVfCFak\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 03:42:24'),(2584,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gusanatoly777@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y7d5ao38\",\"label\":\"First name\"},\"phone\":{\"value\":\"84257814769\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1MTvST7 tlCa HSUkrui Grf3GMv DYWp KEVA8q8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 03:49:40'),(2585,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"potehinvladislav3@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9has7q5\",\"label\":\"First name\"},\"phone\":{\"value\":\"81647361188\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hGYcAv6 ATtq fkpqaLF V17QKx4 hARC uWM3lyp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 03:50:06'),(2586,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"al.medvedeva2011@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yd3h59e9\",\"label\":\"First name\"},\"phone\":{\"value\":\"83117649118\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lvMEbYS cNTh JYPBGCy cr3HUK2 LPPS G2JKf6P\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 03:56:52'),(2587,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aisenandrosoff@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7g36ttc\",\"label\":\"First name\"},\"phone\":{\"value\":\"88588271425\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ag9UAHd LIRX doJykCe SDHHxaI JdOJ cu0V7dz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 03:59:18'),(2588,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"smitaksingh8@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9rqoyxf\",\"label\":\"First name\"},\"phone\":{\"value\":\"88817668462\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tzLm52L 3wtA DqS8ai4 i1us2Mh 4sXA gQSb6sH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 04:04:13'),(2589,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vladislavv.pavlov@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7qp3rxe\",\"label\":\"First name\"},\"phone\":{\"value\":\"89884136167\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"43MlIuW qHbn lcIHAYZ XCP8RqR yfGi Qij3334\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 04:08:42'),(2590,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ermoschina2011@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybwhwdef\",\"label\":\"First name\"},\"phone\":{\"value\":\"85897942516\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"72TiADP vgR0 vhLnBXc mTDJxXT dc4s lsDGrx3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 04:11:39'),(2591,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"golovnoja@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycmbupw2\",\"label\":\"First name\"},\"phone\":{\"value\":\"81321846571\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aMJGgsw 5UjQ H6kOiEn ixlUKub WbY1 jwRudGv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 04:18:01'),(2592,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mihajlovnamaria01@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y99salk5\",\"label\":\"First name\"},\"phone\":{\"value\":\"83846235772\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VMMQOPF 4YiP ZgiyxZF d83qSc9 dk5N Ck2AHEg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 04:18:56'),(2593,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"schitova.marina2014@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yd8pf6s7\",\"label\":\"First name\"},\"phone\":{\"value\":\"87343738258\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ENuP4GH 691m Mu0htVb 2SlVdyH dlnV YH3tyja\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 04:26:32'),(2594,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"0550226963samir@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7cust2q\",\"label\":\"First name\"},\"phone\":{\"value\":\"84577684713\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NY2Pc6N eWeT 6bSHX9p EC1MkTm UROU P7P30Dp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 04:27:14'),(2595,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pavel.cafronov724@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybgkpztf\",\"label\":\"First name\"},\"phone\":{\"value\":\"85737483447\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hfuFr35 D9rQ XdTwe6s t4gC0i9 Rm9P 7jRgOz6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 04:33:59'),(2596,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olgafenix.ts@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8oo7pvf\",\"label\":\"First name\"},\"phone\":{\"value\":\"84477436899\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZOuUtCA GPAa jEgnUZh pbqSMwu kcdq tKtRss4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 04:36:28'),(2597,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pit14-88bull.smekin@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd7cfv3l\",\"label\":\"First name\"},\"phone\":{\"value\":\"88616165484\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pavvoDu t90m pooiVzv z0huGCV kTqI ytN4wOx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 04:41:20'),(2598,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"viktorialloyarova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yacypbzp\",\"label\":\"First name\"},\"phone\":{\"value\":\"89331338137\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0z7rjKD KCuD S4hFEl3 1DfKyn7 w2ZO jdofLkL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 04:45:41'),(2599,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ele1978999@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yate37jk\",\"label\":\"First name\"},\"phone\":{\"value\":\"81456592257\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Y38tr93 UTfc Zw84XR7 2eT3YaI ZlMz JzX4DIE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 04:48:35'),(2600,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anna.kristich@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8frmktd\",\"label\":\"First name\"},\"phone\":{\"value\":\"85131976937\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DgSzZSF wXnh oYD2nC0 EZ2YTrA FeDG H7Dj5T8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 04:54:50'),(2601,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bullit.07@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8acmnde\",\"label\":\"First name\"},\"phone\":{\"value\":\"86428186995\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kLkA0cK Rsga KrTqAu5 jDUggrX UUXi IS2Wo7g\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 04:55:52'),(2602,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"polina.elberg@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybafdjzg\",\"label\":\"First name\"},\"phone\":{\"value\":\"85247692775\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5S98PbW ejJx 7ShSlir WS9JkpK ekfp JBk1kwz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 05:03:09'),(2603,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"abdraxmanovvlad125@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yatdnqkd\",\"label\":\"First name\"},\"phone\":{\"value\":\"86773893164\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"grXqnMl x9Q8 WE7QUjr qbB8FTT AI75 EZmHXUn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 05:03:57'),(2604,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"venzerinox@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycohyfan\",\"label\":\"First name\"},\"phone\":{\"value\":\"84426522383\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KL7NSs0 ydkX iEygMyC LG5ybeB JFiX tcFFKGo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 05:10:31'),(2605,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"majerdarina8@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya3frb22\",\"label\":\"First name\"},\"phone\":{\"value\":\"85649957796\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"I4wVpMg j3N7 1afqTbe y88pgh2 xhWr v1jEaID\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 05:13:13'),(2606,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nastyape123@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8fyhnfn\",\"label\":\"First name\"},\"phone\":{\"value\":\"88351573358\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"M1kw9be uMKn HtMnpq9 TiYzA27 mAoJ uiirQD9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"185.107.80.193\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 05:17:54'),(2607,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ahaukristal@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8l6h8rf\",\"label\":\"First name\"},\"phone\":{\"value\":\"82281386227\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LJfqhNI YmG3 AhIu9mu Id2EEjB ZE74 4lEB6hw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 05:22:29'),(2608,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Horny\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Shriya\",\"label\":\"Last name\"},\"email\":{\"value\":\"kaylene.leslie54@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Horny Shriya sent you 2 pics yesterday. She is online now.\\r\\nClick the link below to view the message and reply to her.\\r\\n\\r\\nhttps:\\/\\/sexlovers.club\\/chat\\/HornyShriya\\/\",\"label\":\"Message\"},\"phone\":{\"value\":\"9043558989\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"136.0.61.3\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 05:25:10'),(2609,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fraergrag38@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7axnou8\",\"label\":\"First name\"},\"phone\":{\"value\":\"82115994377\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hVkVccp PLrO zwq6mj8 IRBakHg rnD1 0nXI6Yu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 05:31:53'),(2610,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"irena082007@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ydx3nhew\",\"label\":\"First name\"},\"phone\":{\"value\":\"88733147956\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DpBjYko lltg ogzTC6S B1BWWgo 0rT9 LVFoka3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 05:41:26'),(2611,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yongweselov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ya5p6pzd\",\"label\":\"First name\"},\"phone\":{\"value\":\"85665674454\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nDC8RA3 PDnK 0uVvvpB mlrDJuk SuuV wIpiL6F\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 05:50:49'),(2612,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vlad26042012@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y97wypyr\",\"label\":\"First name\"},\"phone\":{\"value\":\"83369923497\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oAgXOXQ PKGX pGE1AQn p8kdQBd lCq1 kJi1oXR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 06:00:18'),(2613,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aziretovakamila@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yanb7ll9\",\"label\":\"First name\"},\"phone\":{\"value\":\"84263386345\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tuX8mAT p6jV ts2hBjt QYezriA iNPI StlnQnz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 06:10:02'),(2614,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"estarostinakuznecova16@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yc9gh8nh\",\"label\":\"First name\"},\"phone\":{\"value\":\"83686741716\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8Of1QaI 4hSz bXAEfS9 KYTUOzQ 67zT hOLL8DW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 06:19:38'),(2615,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vasiavas4kin@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y95evxbw\",\"label\":\"First name\"},\"phone\":{\"value\":\"83954451879\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FNGsGAN rsEE pLSF4gs RJOrKJD fBqd HMpjGVg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 06:29:21'),(2616,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rtrt78510@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydeljwdm\",\"label\":\"First name\"},\"phone\":{\"value\":\"85475138933\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aByMinn aNuc eYWTQtm 5NKtKaf sFqv dVscbQ1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 06:38:52'),(2617,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"skuratovaleksej42@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yblkvp4m\",\"label\":\"First name\"},\"phone\":{\"value\":\"89267174918\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1M0RkaN rmAA NI5ZYbQ CnmZ3w5 zHAs VnvOQoM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 06:48:15'),(2618,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"irisha.vol@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y72dk52l\",\"label\":\"First name\"},\"phone\":{\"value\":\"85626393215\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LgR4azB jV8N hIQuJlD n18aVOT MD1P MuhLEvj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 06:57:35'),(2619,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marina1950.mmm@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8ayn4ss\",\"label\":\"First name\"},\"phone\":{\"value\":\"81329479374\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"o7HwjP4 hbf3 UfmElyJ 2KBscwQ 4ssI MfBF0e3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 07:07:04'),(2620,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natalamutilina82@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaxeyxpk\",\"label\":\"First name\"},\"phone\":{\"value\":\"83489251165\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1cM1bG5 CgS9 Fi56sbT hecuvQH WhwR WRVtaeu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 07:16:33'),(2621,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vlad.kim.199519@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ya6ux4lv\",\"label\":\"First name\"},\"phone\":{\"value\":\"87284448339\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0EJ9Lky MuU1 Kt43jVs NR1uhih sZxO AposHad\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 07:26:07'),(2622,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tatyanapopkova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9oyzltx\",\"label\":\"First name\"},\"phone\":{\"value\":\"88412684848\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sXH6nRh 6eob N38IEy2 qoTyOiJ fgje BGfvM0M\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 07:35:34'),(2623,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"valera524543@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybuojb7w\",\"label\":\"First name\"},\"phone\":{\"value\":\"88311166271\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AWpYX4U 5gZA Rfo72GD 4q2ncLf XCN8 A2gw2XR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 07:45:11'),(2624,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"blessingsthawani5@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yczpeu3x\",\"label\":\"First name\"},\"phone\":{\"value\":\"89469288393\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9RTCALm Qvpl rTcZi8c eU25BQL ygCh YaipLF8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 07:54:34'),(2625,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ivanbazhaev1319@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yaqeqamq\",\"label\":\"First name\"},\"phone\":{\"value\":\"88917917289\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ws7vnlk mYCN vh6yaqK 0xDYZCa yuen i5QX4jw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 08:04:09'),(2626,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gandera046@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y78jlxzt\",\"label\":\"First name\"},\"phone\":{\"value\":\"81874294641\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"j1PsCk5 aMYh 9Qxqh4Z RyhI3OK Yidh ODYZJOt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 08:13:38'),(2627,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alekrezepin@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybf6pxxd\",\"label\":\"First name\"},\"phone\":{\"value\":\"81563461353\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lZ7NwGc QYcn vNIvRMj Caz5Riv g8W2 HNqamBb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 08:23:16'),(2628,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tat.trunova2012@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yaynfjx2\",\"label\":\"First name\"},\"phone\":{\"value\":\"87826198169\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CaJOlkV Lv4z dONkHne z0Y0PtU 8L5N hKqR4XP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 08:32:43'),(2629,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mananarazmadze123@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y76jhvac\",\"label\":\"First name\"},\"phone\":{\"value\":\"85615458326\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lXzCxMY t36j clLLXwX ARp9miO hfA6 aEbmVjU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 08:42:12'),(2630,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shahinturanov170382@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybojt829\",\"label\":\"First name\"},\"phone\":{\"value\":\"82429343164\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"M80qi7A AAfy uGgPYL1 6Uft5A7 qdFT bj645iN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 08:51:37'),(2631,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sergijtkacuk20@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8f6fbpm\",\"label\":\"First name\"},\"phone\":{\"value\":\"83487995253\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FWgQwXC 1100 SN0DugU 6tt2m9g EXIV wEIAQ7E\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 09:00:53'),(2632,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"j.podolyako@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yd2fh6sl\",\"label\":\"First name\"},\"phone\":{\"value\":\"88229469167\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JmpE1Kh 0H5k zQnaI5n AZwIdyO nzW1 ZHCWgHl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 09:10:18'),(2633,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ashokananda.debnath@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ybgdantx\",\"label\":\"First name\"},\"phone\":{\"value\":\"86713734686\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4f0Ers8 nWNH cHqX5Rv kVBSUnL 0AAg 02cQrYb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 09:19:50'),(2634,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anromanenko96@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya2f7zku\",\"label\":\"First name\"},\"phone\":{\"value\":\"86996773953\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"l9lMSdV 2zS6 EyfnWZB VacHR51 wPTJ bOKtbWK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 09:29:20'),(2635,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jkuramoto@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8ndxsvv\",\"label\":\"First name\"},\"phone\":{\"value\":\"81123252375\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"acrOiao JpIw hLZyzMg 8wGH8Z0 5dAn FbxgEWa\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 09:38:51'),(2636,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"trezcikova759@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9vp6w7o\",\"label\":\"First name\"},\"phone\":{\"value\":\"89378829387\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"r5M7MYd Gumz P213Ec1 CfVEGQj J7vf 6kuelXp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 09:48:12'),(2637,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"svetlananikitina18@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybl984wh\",\"label\":\"First name\"},\"phone\":{\"value\":\"89577748815\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xTpiSMn fQ1P NqII6wt W9aXRjJ 6EZC Plcxgqp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 09:57:26'),(2638,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mi3antrop1337@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9nhwzt6\",\"label\":\"First name\"},\"phone\":{\"value\":\"82698193872\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"obx2gqj jxzO KZ4pzsG Go24e1n Mnkq UJktM9b\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 10:06:56'),(2639,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mkgadri0611@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybwm85j5\",\"label\":\"First name\"},\"phone\":{\"value\":\"82932558984\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"x16tDN0 40QB swATWFf CQs1wgS 83FR quAV5J2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 10:16:26'),(2640,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"irina-ivanova26@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yc3agd79\",\"label\":\"First name\"},\"phone\":{\"value\":\"88793119511\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RZs1Ja2 NZXR THhXqmZ OWHwnvz yAYe 2f0U4bD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 10:25:53'),(2641,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vakulenko.fil@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7vn6uv6\",\"label\":\"First name\"},\"phone\":{\"value\":\"84937695122\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yvaiDI2 h37x VeLNCSn 7e6esjL seAQ MOgY5pa\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 10:30:02'),(2642,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"arnautdima@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8jakq8b\",\"label\":\"First name\"},\"phone\":{\"value\":\"84751155954\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GB4hj0S P3pJ SXSF8pa WfWd9l3 nITd UVU6GJ9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 10:35:17'),(2643,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"moskovskii.a@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7u5c6bv\",\"label\":\"First name\"},\"phone\":{\"value\":\"82459664494\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xXs40Ph xTnH heyao5t iSmTRiE 87xD oTXPyr5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 10:38:31'),(2644,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vasatander@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybn4fodc\",\"label\":\"First name\"},\"phone\":{\"value\":\"85497228887\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oeYJNHb X23G YSEKCwG nCWLi18 mUO9 hZgL7qF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 10:44:46'),(2645,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"skripka5642@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc9ppcjx\",\"label\":\"First name\"},\"phone\":{\"value\":\"87361729975\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MhxoHzW M5ER BebSLmA Ov82C0x wwsd oRbRYWn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 10:46:36'),(2646,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"artysh2001qwerty@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ya9ft83s\",\"label\":\"First name\"},\"phone\":{\"value\":\"87692195821\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SurFSxN QYY1 yvS5PWZ kkoLqie PqbT iVaVySx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 10:54:13'),(2647,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"urken8393@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7j8v8p4\",\"label\":\"First name\"},\"phone\":{\"value\":\"88595343589\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0q2LMdB f6aW zrMQeta 2vLs9w2 cUfh qcgqYvW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 10:54:28'),(2648,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"thernayavihnya@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycz85mzj\",\"label\":\"First name\"},\"phone\":{\"value\":\"84514312459\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rqgrIJi 5Av2 PMCRCFJ UXrWI88 kdN0 G7BhcsB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 11:02:35'),(2649,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kadyrov986220@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9fyfq9r\",\"label\":\"First name\"},\"phone\":{\"value\":\"84921423952\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Bder0na p81r k8mdNKs FhrNCm0 WVDv zr6y27W\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"62.112.9.166\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 11:03:19'),(2650,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fasethil@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yce27tas\",\"label\":\"First name\"},\"phone\":{\"value\":\"83275262669\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OU6HeIM hoDV 6XtTB4G yPz8Yma 1rWk 0YAsM26\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 11:10:39'),(2651,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zaanna143@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybj34su7\",\"label\":\"First name\"},\"phone\":{\"value\":\"84667217254\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LHxpl90 MGNf tPONgpV FOjzKZN kL5d SCU6Oez\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 11:18:40'),(2652,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"djamilia@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ydfru566\",\"label\":\"First name\"},\"phone\":{\"value\":\"84761363117\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2ODJmvV sj0U 0IOeGUW 4DDWbn0 UmKm tBDs02C\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 11:26:44'),(2653,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"crodilgen@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ycb6kr6k\",\"label\":\"First name\"},\"phone\":{\"value\":\"81368587318\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"u0qTsRe DPfG aJphP5T t6O2j4l ygpe xX9qrkl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 11:34:45'),(2654,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anutotka98@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7f57dnw\",\"label\":\"First name\"},\"phone\":{\"value\":\"85472954865\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LvRVvJ4 2WUK 1fZsoPO YxfyYoq N9JO V4yG8B0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 11:42:44'),(2655,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elena.gra4ova74@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9u3q8py\",\"label\":\"First name\"},\"phone\":{\"value\":\"83987815641\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8pThaCO 2Vcx 7Y1mD7h oRGqTlq tVvL RjVgzsE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 11:50:53'),(2656,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tasha554@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7tbd8hh\",\"label\":\"First name\"},\"phone\":{\"value\":\"82699155393\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"G33O91p oIB4 Sel17fh Afs0rUD BSNN Nj7U4M0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 11:58:55'),(2657,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shafigullinrenat@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybtn9e97\",\"label\":\"First name\"},\"phone\":{\"value\":\"85645751778\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ndh4u6t mp0j 3h0tlQj EQE9PI0 Djxb khOq0Wy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 12:07:01'),(2658,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"raiymkulova18@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ycfwtnmy\",\"label\":\"First name\"},\"phone\":{\"value\":\"83676222622\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SS7WXLz WBgh 3NdgLyR ldXzeXQ ckmk T4NAPG3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 12:15:11'),(2659,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gryaznof2010@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycyhegkm\",\"label\":\"First name\"},\"phone\":{\"value\":\"87421236968\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ra65zeq bPj0 Rhru818 V0FLFAl ogq2 JyLRHJ7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 12:23:21'),(2660,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vitaliy.savenko.1982@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8lexxut\",\"label\":\"First name\"},\"phone\":{\"value\":\"82445432543\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LEnkdjF gCmq BZen3fX LLOJZvu VyZj foSWHkG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 12:31:24'),(2661,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"andreeva001.anya@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycsvrven\",\"label\":\"First name\"},\"phone\":{\"value\":\"81246996675\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2Mit9B7 W67q 4aSYGvL 93TyylL IU2I ttx1rSd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 12:39:24'),(2662,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sherzodbang@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9vy9u3j\",\"label\":\"First name\"},\"phone\":{\"value\":\"86522659359\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WPGnwzk 0plL 9lYUs4j td9IsPh tZec InfCrmc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 12:47:17'),(2663,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"evlampiy89@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8t5hh5l\",\"label\":\"First name\"},\"phone\":{\"value\":\"83294638549\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cnn56Zd ihkk rroVl1m FoUi9qK fZCO Qfb8HrK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 12:55:16'),(2664,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yanulichek@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7g3k7vz\",\"label\":\"First name\"},\"phone\":{\"value\":\"81576698944\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1MIgdfl 7w5R qhMTcvP Gztz23K z1lj 1p8pLq7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 13:03:15'),(2665,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"irakorniyenka@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8ovnzyt\",\"label\":\"First name\"},\"phone\":{\"value\":\"87154753929\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"v9Z4DIr 52Pg qCL9OQP Kku1ZEh elpl LDey5RV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 13:11:21'),(2666,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"m.polelyukhin@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9gnn5tt\",\"label\":\"First name\"},\"phone\":{\"value\":\"82989884248\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JxUXbjR znfn qoeBe8y xYnuNTj Nw52 MEomcxl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 13:19:21'),(2667,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kulyabr@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y8mejqcy\",\"label\":\"First name\"},\"phone\":{\"value\":\"81714762771\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IGFtlhm RgFb fyRUOi2 RD9KZ8m y7e9 fPAyACz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 13:27:22'),(2668,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yugden78@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9ru9lkz\",\"label\":\"First name\"},\"phone\":{\"value\":\"82349614814\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"W22HVJk Qoc3 NIkmTdY mSF8cHq CABL SSjuAyd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 13:35:26'),(2669,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"baky.toktogulov.20@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yab53knu\",\"label\":\"First name\"},\"phone\":{\"value\":\"85937417944\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RdajlE0 3sSY 4nxy96B 8FSRP0Q U6Fo 22gIwsg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 13:43:23'),(2670,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vrozeta@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9ylzgmf\",\"label\":\"First name\"},\"phone\":{\"value\":\"87232824447\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YzD0rKz CxGR SkKaEHH YN4wOru mdFp OpByYw4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 15:47:44'),(2671,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lash.djanba93@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydxdrj2s\",\"label\":\"First name\"},\"phone\":{\"value\":\"89278275184\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JtJ5At2 ggil FUdvnmr z2ZK7hJ p81N VDIN4oD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 15:55:07'),(2672,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"prad61@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yb887s53\",\"label\":\"First name\"},\"phone\":{\"value\":\"81714773766\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AaFOTDp mcZb dbUAxKO cim6Ri3 r8zR kwnKBaJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 15:57:03'),(2673,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"greed011593@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8tbg7gf\",\"label\":\"First name\"},\"phone\":{\"value\":\"86398691186\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1tzoAcc 5jeX psal1Rl XznfzRg 6nr3 1MYRTgW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:02:41'),(2674,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lemesonokulana7@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybnh4maf\",\"label\":\"First name\"},\"phone\":{\"value\":\"88962895655\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dpyQ1F5 CzBc ytFAR9c sBvZqBS QQaC OJxxHQA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:06:11'),(2675,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"karacasha2013@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya3x2ufa\",\"label\":\"First name\"},\"phone\":{\"value\":\"83651177453\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"26zGW80 Puhq 8yASDY1 Cm2MMmo XW0g dHgsdQP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:10:13'),(2676,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"semenigumnov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya6vdysd\",\"label\":\"First name\"},\"phone\":{\"value\":\"84885151363\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AUYlSL5 cOsK CJqUuSK jWuHLRg ehhD F8VRUQG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:15:11'),(2677,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"9middles@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y75efqx3\",\"label\":\"First name\"},\"phone\":{\"value\":\"82213419588\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NCBOx9L Sy3z H8gdAES DsJLSvS cGDE O0Zl0RP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:17:20'),(2678,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kovalchukuv9@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybuldqje\",\"label\":\"First name\"},\"phone\":{\"value\":\"87125838549\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"stPBFVF osMR kxxUlJe 7eh1w29 Ie8H ICmTNDK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:24:12'),(2679,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sementrunov566@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yct5mrlz\",\"label\":\"First name\"},\"phone\":{\"value\":\"85444686198\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fQDtgmV nOJE zTGC97x FjbBiZA I46A S95yYdp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:24:18'),(2680,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bbradleyyjaxon@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Hi, this is Jeniffer. I am sending you my intimate photos as I promised. https:\\/\\/tinyurl.com\\/02vzpQYc JUYEGRT13640MTGJNF\",\"label\":\"First name\"},\"phone\":{\"value\":\"88513177635\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"M2ssvk1 xckq GjsJjDW pC4rDNP T1e3 bssZAIU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:30:15'),(2681,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tuzvinei@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y96gjotv\",\"label\":\"First name\"},\"phone\":{\"value\":\"84515539388\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NLBLPb3 hylz PmwP2Ll BorbfFD WfCM aPWHP7V\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:31:26'),(2682,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"just.4u@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ya784xho\",\"label\":\"First name\"},\"phone\":{\"value\":\"83745839916\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"86LaR6a t8GC QKWUhQ6 68bLmfs vQEs cyvwSXh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:33:03'),(2683,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"igor.moskvilin@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y78lrccf\",\"label\":\"First name\"},\"phone\":{\"value\":\"88863655947\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HVyQZH9 vKFK UG8yw46 C4WCGcg xrsf Xv8K39R\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:35:54'),(2684,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alfiya.daminova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ydz94rdz\",\"label\":\"First name\"},\"phone\":{\"value\":\"85394134589\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KvJEjVI PDxf tdcDY2l Wnzm0B6 5df0 M0LKtT6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:38:31'),(2685,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bbradleyyjaxon@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Hi, this is Jenny. I am sending you my intimate photos as I promised. https:\\/\\/tinyurl.com\\/JpPsDQB7 JUYEGRT13640NFDAW\",\"label\":\"First name\"},\"phone\":{\"value\":\"85675362966\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6Ak16YY c7wq mtwxbo5 pzWaGJb SKC1 5rBf5Fy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:40:19'),(2686,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vikason252@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8jj34gy\",\"label\":\"First name\"},\"phone\":{\"value\":\"81688846563\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fVp4OuF rZSa WzzzmUo GkZtIuR U6Kk XWKMd8T\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:42:05'),(2687,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marinaponomarewa1980@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9sa4dbr\",\"label\":\"First name\"},\"phone\":{\"value\":\"87189374782\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TnLTbnM q1Br Gx5ahIS Amn1Oae lHt6 oqQ2Dgf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:42:55'),(2688,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marionik22@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9pb6xb8\",\"label\":\"First name\"},\"phone\":{\"value\":\"83796928656\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4tnt1H4 SsBd OfWIwDO T1ljJKl 4QYB fDzZKLn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:45:34'),(2689,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"liagush8@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yclhgma4\",\"label\":\"First name\"},\"phone\":{\"value\":\"84998611122\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xhPZgL5 wPYv aQC91LB cOMPNMc oioV RPwAMpn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:49:57'),(2690,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shyma-a-a@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ya5zdq3r\",\"label\":\"First name\"},\"phone\":{\"value\":\"86763816615\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DYrg6rS AnRC dyMVUEq 6IzENbU 1Aoc ksv4OND\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:50:59'),(2691,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sencenkod0@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybvux3xr\",\"label\":\"First name\"},\"phone\":{\"value\":\"89115318972\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ca2pY0E 4oF6 x1EZlpf 3OEFrEK Wbau s3scqjW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:52:35'),(2692,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nazinanatoly@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yd6728u4\",\"label\":\"First name\"},\"phone\":{\"value\":\"89752589631\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"60d6K7H S7qM jaNx98z g65OdbW aIvL 974Os3D\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:56:58'),(2693,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lps2953@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9dbvc3n\",\"label\":\"First name\"},\"phone\":{\"value\":\"83938246392\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ejkreaK iAaS dMZJLMv fofJUif kbRO Bj5Ehf8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:59:23'),(2694,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zzzxumukzzz@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yc9lhknx\",\"label\":\"First name\"},\"phone\":{\"value\":\"89449362938\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CxxDZYT AnOM qOkrlSE HDFdIoJ 43bW je3S8jt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 16:59:54'),(2695,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"adeeply@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycsjg43k\",\"label\":\"First name\"},\"phone\":{\"value\":\"87732519391\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xNOVhjL uOh3 P1q0Db5 oqNvhCm wMqN AQzDMa1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:04:05'),(2696,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zhanna230207@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydyttvuy\",\"label\":\"First name\"},\"phone\":{\"value\":\"87261324716\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nJZGOH0 vplp H2ZWHeJ IhFmvoD jkP1 wNy0jxZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:06:25'),(2697,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexandr.gurskij@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y6vm6cpw\",\"label\":\"First name\"},\"phone\":{\"value\":\"85827647114\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LCpcL9J 6ubS GcnTQJU bUIyQLP uWfW KARzdxO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:08:49'),(2698,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"umatalievbayel1111@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybnedddf\",\"label\":\"First name\"},\"phone\":{\"value\":\"86831553415\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8SmIatb Gg3X oB0JFJs o8XSwpt 7b8A R23Blr6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:11:19'),(2699,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"volodymyrnegrich@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7p2jcra\",\"label\":\"First name\"},\"phone\":{\"value\":\"81499632985\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Rcsa4Sf Mz1b gc7Pfvo Dc4xbk4 5P6j XL8KAW9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:13:26'),(2700,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elizcatlc@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yc3g2u34\",\"label\":\"First name\"},\"phone\":{\"value\":\"89497636894\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3ougLLt U90k sISqc64 jX2RunJ H7tP kwDSpgJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:17:52'),(2701,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sanek.mazhirin@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y86ab6p4\",\"label\":\"First name\"},\"phone\":{\"value\":\"83155959841\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"doisQIN WnX3 Ka4cbNS 60Qlz9d hoGt ZWnS68m\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:18:20'),(2702,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ninaselivanova034@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybfvfg59\",\"label\":\"First name\"},\"phone\":{\"value\":\"83176627759\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tXywENB VG12 9yiyYqs abggQNN hFvf HswA6uM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:20:22'),(2703,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ejik3136@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y96l8s3r\",\"label\":\"First name\"},\"phone\":{\"value\":\"85979178864\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5d83HeU Z09R aUNsZ7h vAAqBs8 wIOW bl6O5HP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:25:45'),(2704,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ota980@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8ydkbyg\",\"label\":\"First name\"},\"phone\":{\"value\":\"87234835399\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"V6A8mc1 nT5V 7I798o3 blAnAuf oZQG mH3zJnA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:26:52'),(2705,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"n.s.chur@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8hc8j8u\",\"label\":\"First name\"},\"phone\":{\"value\":\"81575461187\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BhdTQZD gMtk A8KNuqI xJo5TnT ook5 7hSaPWX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:27:19'),(2706,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"cokur988@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yb6boajl\",\"label\":\"First name\"},\"phone\":{\"value\":\"87221314457\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3wTC21h 9zsT HvmKq4V sUR55xA jvAs Q3yElda\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:32:47'),(2707,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"juju.serdyuk@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya3f3vdr\",\"label\":\"First name\"},\"phone\":{\"value\":\"81883845959\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XNXSNA2 Ger4 I1iUB1v 8Ly72kC eO5r 8l61GxH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:34:19'),(2708,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"syxorykovaanna2008@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9rbrad5\",\"label\":\"First name\"},\"phone\":{\"value\":\"89771179276\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EkKFYc4 vWBE DHcEenz TgST9Pb jNa6 2C8X7Bq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:35:41'),(2709,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"protanker25@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yaz4xke4\",\"label\":\"First name\"},\"phone\":{\"value\":\"83743954746\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"izTMKb6 tZ9v mVw11Sf nGA0jd1 vN70 cW92BFx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:39:47'),(2710,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sofaalyokhina86@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycb46b5l\",\"label\":\"First name\"},\"phone\":{\"value\":\"88927762872\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GjRLZQq Y6fn 6LcEs7h yTzljsX TBbU kFgB4xo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:41:18'),(2711,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"improvizaciya@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y765p93f\",\"label\":\"First name\"},\"phone\":{\"value\":\"88224757586\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1OSgi6P NiiC inz0tZ9 2Fjg6wH XVXj cP3K9pX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:44:51'),(2712,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ivanculikov@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7anxu7p\",\"label\":\"First name\"},\"phone\":{\"value\":\"85778767576\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Td5ZBRH CqTo WKNqShD jHsknzF vjrq knFcGJ7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:46:50'),(2713,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jdm2014@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8pqpncf\",\"label\":\"First name\"},\"phone\":{\"value\":\"86589538732\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3CFSuAU pi2R V9cIzI7 t5eruFc CndV N5wcZhI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:48:21'),(2714,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"porhene56@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yc9fkgeg\",\"label\":\"First name\"},\"phone\":{\"value\":\"85536583913\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wzjtu2c 8lKe yXWJTxV z0EJ7W5 fl22 pWoMWKw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:53:57'),(2715,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"evalino4ka@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9q7mret\",\"label\":\"First name\"},\"phone\":{\"value\":\"82156249553\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AWVEPnV C537 CHVTgQe EspLha2 fjnj pCEfIIj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:54:08'),(2716,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mahachkala55584@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb83d9dd\",\"label\":\"First name\"},\"phone\":{\"value\":\"83538763378\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qVZbzkL lYai aVo6Hb2 PIhRXkz mEWl ooG8txQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 17:55:22'),(2717,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"larisa.khomyakova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yas6fk6h\",\"label\":\"First name\"},\"phone\":{\"value\":\"83275658121\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CfVJ2Ag T5nF uuOGtBJ o3Ah8gy eE3h RAFX4YI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:01:09'),(2718,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"raisat241082@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8s7boz6\",\"label\":\"First name\"},\"phone\":{\"value\":\"88818536455\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BXTTEzS d4xF ABYoYx4 Mj2hcS1 kVel 2AIMpxS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:02:13'),(2719,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"89061086201m@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd6emxlq\",\"label\":\"First name\"},\"phone\":{\"value\":\"84669584331\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bIeguPH JrRd atp5LLy gQTd7CF pCSo Vq1cWry\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:03:06'),(2720,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"damatex@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yct84wls\",\"label\":\"First name\"},\"phone\":{\"value\":\"85856514253\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kvfrmrd fWzg FsWXu54 fVVwaWv GIg7 rnj48p4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:08:31'),(2721,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"franceangel78@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yazmb53y\",\"label\":\"First name\"},\"phone\":{\"value\":\"83491222587\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8i7LfZg Ew9d tEhokG6 9InQyT0 v4tJ GG5Iqur\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:09:03'),(2722,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shuliakanna1908@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc63r3jx\",\"label\":\"First name\"},\"phone\":{\"value\":\"84821112235\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tumgsY0 wm3j XRZq2eP d24izZI DX8E ztqIowA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:12:25'),(2723,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ukorobejnikov48@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7xoz7ex\",\"label\":\"First name\"},\"phone\":{\"value\":\"87431517439\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"k9AXbJL w28E 72uVNlN lDGTnCU 8l8q ZolXYw8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:15:46'),(2724,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"boss.148890@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ybrgz9ab\",\"label\":\"First name\"},\"phone\":{\"value\":\"85281419575\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UR3ozCR mZdD w92hGuW gfaaxgt 3NF8 x0IRLD1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:15:53'),(2725,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kaban.vadim32@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7txxbbc\",\"label\":\"First name\"},\"phone\":{\"value\":\"85336331348\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tfKqibH H6d7 ezFAEPL 9bcvMOt 138q UI6btOa\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:21:20'),(2726,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kiselesvatanj0987@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yawc56kh\",\"label\":\"First name\"},\"phone\":{\"value\":\"84224356881\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"audxAX8 Vrws gh0PBPm lzI7wcv 4sL9 nU5zdim\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:22:54'),(2727,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"killer1995b@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8qtdycd\",\"label\":\"First name\"},\"phone\":{\"value\":\"87433939455\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cVJnsqw GQu5 r8uitdy 0x3cGRr 1ZcU T3ZYQHL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:22:59'),(2728,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"boeing744@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc577z6f\",\"label\":\"First name\"},\"phone\":{\"value\":\"86982535912\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1IoLpB4 nmid K1eLcMh JAqVIEE iMBP tIVpM0C\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:29:53'),(2729,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"qalamfurova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y85a6xpg\",\"label\":\"First name\"},\"phone\":{\"value\":\"88357664112\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kYOaghQ kW98 KAPmUdu SjCCMLt Os7B 34oz3j7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:30:13'),(2730,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ilgizabdimitalipov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yaoc3sm3\",\"label\":\"First name\"},\"phone\":{\"value\":\"82176417895\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DxNP6eb kRjW 5CNnpWb L8skQr1 c3CD bS2FxAL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:30:21'),(2731,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lizaart55162@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y88er8ar\",\"label\":\"First name\"},\"phone\":{\"value\":\"82598611935\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JPOgiGi 0AZX SlBnS8V A5uKSl3 OqlU sXcBxn1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:36:58'),(2732,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Chad\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Mason\",\"label\":\"Last name\"},\"email\":{\"value\":\"chad.mason270@hotmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello there!\\r\\n\\r\\nI\'m a freelance digital marketing specialist, and I\'m offering you my SEO services at an affordable price. My eight years of experience in this field have taught me everything there is to know about getting websites to the top of search engine results. Making sure that your business website appears on top of search results is essential since not only can this can increase the amount of traffic you get, but it also boosts growth.\\r\\n\\r\\nI know about all the algorithms utilized by Google like the back of my hand and I know exactly what strategies can make your site rank higher in search engines. If you\'re interested, I\'ll provide you with a free consultation to conduct an assessment about where your site currently stands, what needs to be done, and what to expect in terms of results if you\'re interested. \\r\\n\\r\\nAll the information that I\'ll be giving you will be helpful for your business whether or not you want to take advantage of my services. Kindly reply to let me know what you think. Talk to you soon! \\n\\nChad Mason\",\"label\":\"Message\"},\"phone\":{\"value\":\"(342) 565-7781\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.173.178.155\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:36:59'),(2733,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ser.shurupoff@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycjnczg2\",\"label\":\"First name\"},\"phone\":{\"value\":\"87315729542\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fSrTrDG Etk3 uYwNFPa 1klb7x8 wbJO pXrY1DB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:37:09'),(2734,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pavel164rus1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8vtr34w\",\"label\":\"First name\"},\"phone\":{\"value\":\"88561988339\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UT87F46 J8cR mrNxA2e gTGuG9y kV3V 0UcyC2p\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:39:11'),(2735,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tss1998@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9y7dljw\",\"label\":\"First name\"},\"phone\":{\"value\":\"89792985266\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"y4rnr6m f75o vd6SduS MbDR6Gx Vnmv y4u82CX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:44:06'),(2736,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"osmanalievanazira@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yc5js8ak\",\"label\":\"First name\"},\"phone\":{\"value\":\"82962177466\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nolvq8N ndmv PalCR5c wSlvvb1 3frk SFnM3ly\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:44:11'),(2737,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lukmanovrenat616@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybnh4maf\",\"label\":\"First name\"},\"phone\":{\"value\":\"88396497215\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HGRUMYA nZk8 MLiLynp d2wJnd5 yhRf f9yJPOZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:48:24'),(2738,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vovachepetov.1588@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb3gal36\",\"label\":\"First name\"},\"phone\":{\"value\":\"81393299917\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"O6zsmkN cL7X KDfJLcx MoIXV9H fuIW HTtLur4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:51:07'),(2739,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"for.romanna@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd2f9aot\",\"label\":\"First name\"},\"phone\":{\"value\":\"83547751997\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OMezNra xfgK 7JveCIy aFgVsQr L3En Cohl543\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:51:18'),(2740,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"makushkin.mischa@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7reoxak\",\"label\":\"First name\"},\"phone\":{\"value\":\"82177277522\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eofn02F CyCq S6sA4eF ijSAt62 Rszm MlfTl9q\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:57:22'),(2741,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"otukjdcrfz@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybw3kukz\",\"label\":\"First name\"},\"phone\":{\"value\":\"83471897553\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aGSsjRs SqiW BHqrCPg dAze7il IR5H WZ5Nc10\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:57:56'),(2742,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"novwolna@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y87r9pfb\",\"label\":\"First name\"},\"phone\":{\"value\":\"88519878131\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OI6G5qg d5iY vsRC2km S1CtpLv dqq0 dDGL8iO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 18:58:06'),(2743,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"faleevdenis@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yblkfm76\",\"label\":\"First name\"},\"phone\":{\"value\":\"81614957853\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mEZtTuk Ktbp aoyBqzG CyXaJv1 qtlY bJvRewg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:05:11'),(2744,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tukeevaskar27@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y6w5r9vo\",\"label\":\"First name\"},\"phone\":{\"value\":\"84589496936\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"66I6j3k Jc5C X2y8jjC 4oKwN4X dpdp vaezqvZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:05:14'),(2745,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vyaheslav22.12.93@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9bcs433\",\"label\":\"First name\"},\"phone\":{\"value\":\"89881672611\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aWZ13X7 MqNb i1Jv95J Q1nmBPE sT10 gKhZyK2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:06:16'),(2746,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"grfilin@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ya6wrfhr\",\"label\":\"First name\"},\"phone\":{\"value\":\"85358551144\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LNyGT3a rJVM YdJeteh ue3djVb O0aA jHQYgAm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:12:25'),(2747,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"777stf@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yb8lbyqo\",\"label\":\"First name\"},\"phone\":{\"value\":\"86286266669\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IYsykI6 nkdx rLK6ysO ES528lE euak jRXO1jO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:12:26'),(2748,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alfiatekaeva@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7fgchw3\",\"label\":\"First name\"},\"phone\":{\"value\":\"87544984263\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2gKkWzb IJsW SlvWwoo ewd2YYY Q2hD FBDaMFR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:15:27'),(2749,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kostitsina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ycfuxl6z\",\"label\":\"First name\"},\"phone\":{\"value\":\"86644272536\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UjnkdWv KEGF 9RvjpNj qwvhqUb FnUs qo0Qbnc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:19:37'),(2750,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"akramibragimov388@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yajbmqth\",\"label\":\"First name\"},\"phone\":{\"value\":\"82466118677\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AD8ZNkH RHEv ANfyoUF XeOGZPv z5lo 5Lwltt2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:19:40'),(2751,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ksyushazemlyankina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7c995df\",\"label\":\"First name\"},\"phone\":{\"value\":\"89119364737\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MphshPo rYax lqOOlQc z5sjwzw DS17 wN0TKbi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:24:43'),(2752,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"peko6702@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9m2a9xz\",\"label\":\"First name\"},\"phone\":{\"value\":\"83686292438\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cJHxvcg UCuM N4bhD4Q gJ836tO Z3KZ syrsdv1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:26:45'),(2753,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"crasnikovaiulia@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9ak47aa\",\"label\":\"First name\"},\"phone\":{\"value\":\"84861759316\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Pz5GqP0 v4lX DsK832Z 5f0xu7C pUsl s2y89ZX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:26:58'),(2754,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"albinakanapiyanova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yajpy7bt\",\"label\":\"First name\"},\"phone\":{\"value\":\"88792113691\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"B9XM07c WJRf pEpQpRJ iaZUket iiaC pul9Rfi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:33:48'),(2755,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"korotkova.iuliia.91@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y93pdj5s\",\"label\":\"First name\"},\"phone\":{\"value\":\"89427776564\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kpbPKrL ROr8 9VN0UfQ nuPXrHF Loc4 pwrN0z6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:33:51'),(2756,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"azizvahobov1995@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y87eu94u\",\"label\":\"First name\"},\"phone\":{\"value\":\"85665488851\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6a7xvHk CwVE vQfiiiK rB86M0e reUh TSAJaiV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:34:02'),(2757,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kimsemen34@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9s5ttjf\",\"label\":\"First name\"},\"phone\":{\"value\":\"81937871776\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kEJ2ML6 2qpd VYiDfqG 888AMdz Lvc2 KAN5UCC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:41:09'),(2758,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"volodin.miah@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yccprx2o\",\"label\":\"First name\"},\"phone\":{\"value\":\"84295132994\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XoTockU 2l5W ddUt7Qy omJpoCz Cn5b SndmTda\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:41:22'),(2759,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ivognew@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yceyhrvw\",\"label\":\"First name\"},\"phone\":{\"value\":\"87939854628\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2JYAAqR MvPG jeg0g6a NnzRqV6 Hdmn Zac7vct\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:42:48'),(2760,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"proval77@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9hy2pks\",\"label\":\"First name\"},\"phone\":{\"value\":\"85823135251\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tRJTFKf nKRY UHuuLFz NVX4Ldz Y6q4 gCSJ4NY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:48:27'),(2761,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nurdoolotkenesbekov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybpotagj\",\"label\":\"First name\"},\"phone\":{\"value\":\"82288654933\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sHnMLyE z4Ea mhea3no qerVQX0 eR7E 81BHkc5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:48:44'),(2762,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"amischa24@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya6h86pu\",\"label\":\"First name\"},\"phone\":{\"value\":\"86536597137\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KiUusg9 whwy USH2Ikh 2sgjTgF woOz gvRo3aW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:51:56'),(2763,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zaur.omarow@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybsfr9dv\",\"label\":\"First name\"},\"phone\":{\"value\":\"82978293879\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KNIWlJM RO7A DvHMgqT 2p4kupx 7AFV GWAJ0NT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:55:31'),(2764,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lanah198427@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaswwvje\",\"label\":\"First name\"},\"phone\":{\"value\":\"85999728678\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Z2Qa0mj vcaz JsYuJpU FJj3vEb pxq8 l1mmArL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 19:55:59'),(2765,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"31garag@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycjwolwq\",\"label\":\"First name\"},\"phone\":{\"value\":\"83771971183\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IIfBvvE ewGw 6tPnmxR DNiUiEq cbMO DzsMW2g\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:01:03'),(2766,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"irincatum@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yb83d9dd\",\"label\":\"First name\"},\"phone\":{\"value\":\"83361592436\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YOnYUHZ enS3 thVUe2w 8rRAUbr jo6V ZKbLwHc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:02:37'),(2767,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"katyushka2608@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8c6sd9q\",\"label\":\"First name\"},\"phone\":{\"value\":\"88421117275\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XfgQPQA b4wg 3sRIbdE j6ELGM4 pFD2 vso1Fqx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:03:20'),(2768,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olg.luzgina@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y7gk62ro\",\"label\":\"First name\"},\"phone\":{\"value\":\"86622329565\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"c2jCwcE fUDs Sb6NWHh vV5GlH4 LJbl FvhU3Ij\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:09:41'),(2769,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"petrvasilev1999@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8t7d95v\",\"label\":\"First name\"},\"phone\":{\"value\":\"85752167366\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ncryOV1 kfKK JzdTl9r owBkQdX xLoB 5I9tnwn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:10:22'),(2770,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"matveyrayken@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yba6kcrg\",\"label\":\"First name\"},\"phone\":{\"value\":\"87918678747\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GC2F0dv ffZS yXWHCWg PLYdjUr 57gi bziJuyT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:10:51'),(2771,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexhardybrand@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9rpl7dx\",\"label\":\"First name\"},\"phone\":{\"value\":\"88154152395\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cMAbTi3 2FM0 oe5N3uh wChVnpz vmUb EW1LWXx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:16:47'),(2772,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vega751@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yaznu47a\",\"label\":\"First name\"},\"phone\":{\"value\":\"86117683451\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iOPbYPs h1Al XE4p8EE 4x3oOJk DJK6 Dd4oQMG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:18:21'),(2773,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"seglov54@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybfxyoro\",\"label\":\"First name\"},\"phone\":{\"value\":\"84844533359\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SXmBMZV wdE1 ci036jm A0ikj8e hy9Z ZYwdgoO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:19:14'),(2774,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"stepan.bogdanov9507@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y77dtw3b\",\"label\":\"First name\"},\"phone\":{\"value\":\"88214656588\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tWPKLPq VqSS eW5siDF id7r54p j7Vn vazCuPJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:23:50'),(2775,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nadezda1233n@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9mbrs23\",\"label\":\"First name\"},\"phone\":{\"value\":\"82398245489\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"q2gozX3 3Ewf 2Jz5uFO LKqZULw vO3j VSdArUv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:26:07'),(2776,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bayrammedow7@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7pthdzp\",\"label\":\"First name\"},\"phone\":{\"value\":\"83216919935\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WQydAQw z5hk Kl64mZa 7VhpctK 6JWG p7XPhQG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:28:13'),(2777,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ekaterinatrubicina325@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7t4wfhu\",\"label\":\"First name\"},\"phone\":{\"value\":\"88565652345\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AcovEka zKlv HhpkWij gmueFju sZCU GrSieKG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:30:45'),(2778,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dim.pra@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8r5mdk7\",\"label\":\"First name\"},\"phone\":{\"value\":\"84169915599\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fH8QdNU aJwT ZASd7xg MAzrXSU 78uF 1B0mdJk\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:33:40'),(2779,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mucooganan321@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y948ofbv\",\"label\":\"First name\"},\"phone\":{\"value\":\"81699144437\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5qeEhT6 7EP6 uDFBXLZ SUi4RBl 3A5l YOBqjSq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:37:13'),(2780,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"amit001201kumar@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8x3rrod\",\"label\":\"First name\"},\"phone\":{\"value\":\"88132964326\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tPev45m ezPl AqF6PeF f32Wr1c N3mI D9msxcB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:37:32'),(2781,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"flm-misha@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y77hmte6\",\"label\":\"First name\"},\"phone\":{\"value\":\"83232575332\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Gkfrg4Y EQmC GuAGfEV t6UBGvK iOjS Lph9heK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:41:07'),(2782,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nataha.kutik@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y955crue\",\"label\":\"First name\"},\"phone\":{\"value\":\"89291789378\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HDI56UE 95dI TWyAifL d2cxdla eyXn tDo27hc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:44:27'),(2783,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"irina.bombenkova40@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yb2wuuo5\",\"label\":\"First name\"},\"phone\":{\"value\":\"85387726734\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XNvAnuW HMr0 rlcIc9C oJgWYzI 8UBF LOGZLsx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:45:54'),(2784,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"orestdrag@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y6wb4c7u\",\"label\":\"First name\"},\"phone\":{\"value\":\"87726775274\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xKOpRWd tGDG dJaxO34 Doysz0j kvDN b9Y3hwk\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:48:45'),(2785,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nastasia.grigoritse@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yc3dzxqu\",\"label\":\"First name\"},\"phone\":{\"value\":\"88264786267\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cyxAX5m WrwO CkBMw2O 2DqN6kE OMzN aXt2nvO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:51:23'),(2786,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rimmarimma@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycrrqsom\",\"label\":\"First name\"},\"phone\":{\"value\":\"85771699946\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"V5FuKKN 96ae mrytzj6 hKkXuSR Kyuw 71Ungge\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:54:49'),(2787,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lakhel.aboubakr@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8ntc2sx\",\"label\":\"First name\"},\"phone\":{\"value\":\"83236382684\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uHO7V9E 87lE 4TjqtkS UJG1x9U Hg9o 4oPzrDa\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:56:13'),(2788,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alenank@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8zeknf4\",\"label\":\"First name\"},\"phone\":{\"value\":\"81875315821\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NQCPYTc ipX6 3DiuorD IduqPS0 IaDB JaUmXBz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 20:58:21'),(2789,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dkorolev517@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybwt2ngl\",\"label\":\"First name\"},\"phone\":{\"value\":\"87534955616\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1zSCxGQ GF3r nFbNRjY AKPPU7S C7Ve aEIVLdX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:03:44'),(2790,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hramovanadezda49@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaaub5aq\",\"label\":\"First name\"},\"phone\":{\"value\":\"84581927945\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dim5676 gUS8 qBTPyWZ RqAF0ij 3UpU DKQS1SB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:03:56'),(2791,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tatiankaya2009@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7lyvlsp\",\"label\":\"First name\"},\"phone\":{\"value\":\"89498597613\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LTvRWnd flTp jSdHGmA 2oSi2zx fWFC Unq1TbW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:05:19'),(2792,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rubensamama@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8n6rydo\",\"label\":\"First name\"},\"phone\":{\"value\":\"81733974919\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"x1CldjA QMQC 4Kd2P9T kPCzXlo k1uV 2DgTvDe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:11:24'),(2793,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"idevilische@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y86egtbz\",\"label\":\"First name\"},\"phone\":{\"value\":\"83421669676\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qMGSSBw 0PWJ 1lKjp5n nWPwRZT StBR jTj0aoL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:12:02'),(2794,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"markovka22@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7ogz4r6\",\"label\":\"First name\"},\"phone\":{\"value\":\"86957366881\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7CBvjSy hIL0 pllj752 sNdQAGv SSj0 1QBgB5S\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:12:45'),(2795,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dulinaalex@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybb3e7uq\",\"label\":\"First name\"},\"phone\":{\"value\":\"89143799218\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OljVqSU kF4i kxkrHHT cHI9KL8 oBjT pstDn94\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:18:46'),(2796,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shihoval@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybmvuqxe\",\"label\":\"First name\"},\"phone\":{\"value\":\"89537417646\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"T6wolFi DY2W GBYsTDR kSv59Ry y7fA HpKL5tg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:18:51'),(2797,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ganievaruzanna@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y835w33g\",\"label\":\"First name\"},\"phone\":{\"value\":\"83683438782\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"X3ps9yT qbg6 2LqmFKY okUg2zF 5ZlY tfv3Tol\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:21:52'),(2798,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"f4507@ya.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybaeapvy\",\"label\":\"First name\"},\"phone\":{\"value\":\"89159167976\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kCw8Of4 gLbP ImacMXk 6OVE3r1 nQeb ev7Ou8x\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:25:48'),(2799,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zagibalovdenis8@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9mfczj7\",\"label\":\"First name\"},\"phone\":{\"value\":\"88677719575\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uoK8zWR Jc1k oPFL2hX e6noRV5 d4AF DlHF02m\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:26:33'),(2800,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gosha.vens@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ya6rsbb9\",\"label\":\"First name\"},\"phone\":{\"value\":\"89358473863\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KU8NVPY pj7e ENUEfNF xhrldaa Uv7J sK3bgNJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:30:57'),(2801,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"razinkin.alex-meat@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybghy7ku\",\"label\":\"First name\"},\"phone\":{\"value\":\"81158117816\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZJXDwN4 YWN4 G0WaBtm 4QE3Ea2 sc5o A9y3FBr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:32:38'),(2802,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dragavita@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9rpx8an\",\"label\":\"First name\"},\"phone\":{\"value\":\"89686395761\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"77zAhQy euXj tNJHhhL bpD7Ljr Do19 uPjSknh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:33:55'),(2803,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kohonova2017@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y7sftxz5\",\"label\":\"First name\"},\"phone\":{\"value\":\"89464146659\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"g2Wqq1J NGh6 qxHPUSr wS16fy6 zIot Qv9OEok\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:39:18'),(2804,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aks.aziko888@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y93vyjhm\",\"label\":\"First name\"},\"phone\":{\"value\":\"83749847256\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NCzF2ev FIJg FwkayoK YkC0wrW eDsb 6c0Bgzg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:39:54'),(2805,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dsajdaliev7@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9ok3qvl\",\"label\":\"First name\"},\"phone\":{\"value\":\"85493642925\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SB1jE1H roFi 3mstOgV zBBjkj2 SvzU TXef5fs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:41:23'),(2806,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"schastliv490@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybvfdlgr\",\"label\":\"First name\"},\"phone\":{\"value\":\"89668855436\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JwrCEiw HVE0 gcr4A3u hsWo4pM WsEc iYKtabQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:46:02'),(2807,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kubishkjna63@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9n8ttw4\",\"label\":\"First name\"},\"phone\":{\"value\":\"83344211769\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UkNJCU2 TJAg WAsxjPU TikMLkf V8WZ qwM0UZ3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:48:38'),(2808,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"grisavoroncov4262@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9sn3vlj\",\"label\":\"First name\"},\"phone\":{\"value\":\"83585635817\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5mCsxA6 v0oR ByWWUGx QWyY6Ib gvwa nqS2RR1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:48:38'),(2809,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"wot.roma.ru@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9tfbequ\",\"label\":\"First name\"},\"phone\":{\"value\":\"81761494513\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tITFtcQ LXJV y5MBlhT ecyQvCO dOgj ZtAbWfr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:52:50'),(2810,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"www160366@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycueyrc6\",\"label\":\"First name\"},\"phone\":{\"value\":\"88623287471\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DSkC4y3 UFec 8SGupKj OU9mKYs XXwt 555mFlT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:56:10'),(2811,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olegkan2009@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yc23wr7j\",\"label\":\"First name\"},\"phone\":{\"value\":\"81134452414\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"js8YId4 0IwN e512eAq pRUePl3 7meV MgQG2Nz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:57:12'),(2812,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ponomarev-vas@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yabobx86\",\"label\":\"First name\"},\"phone\":{\"value\":\"82818342874\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gntOgf9 hca5 v4mGXWv PaYiNy7 I234 4syYAG6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 21:59:41'),(2813,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tursunarai@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd2f9aot\",\"label\":\"First name\"},\"phone\":{\"value\":\"83759564584\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0zD62T2 NzwQ G8wDU3e OnfE28a fLcU SkkSVK6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:03:41'),(2814,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nikolaeva.danika2007@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybrvu8bg\",\"label\":\"First name\"},\"phone\":{\"value\":\"83785844365\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"G8Ua9U3 UXab rWtrEDu lEYkN0i w9BM 6CnYZXu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:05:53'),(2815,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"brentrulesyou@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc4w8v96\",\"label\":\"First name\"},\"phone\":{\"value\":\"83794948435\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yFt2pxd jMiP Ycrty2u i3G1Z65 lNe4 v1C7xoN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:06:26'),(2816,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bendy999@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybge6acy\",\"label\":\"First name\"},\"phone\":{\"value\":\"81825859862\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XjYl44E aKQ7 wBDCGPv pb0V5uN bzJv NCGMoYB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:11:14'),(2817,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"urmatermekov1590@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7mfr3gc\",\"label\":\"First name\"},\"phone\":{\"value\":\"87894139648\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4trI8kw Hz6p YV5iU7m CGh0GBx R55Z d7MYzOc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:13:13'),(2818,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"astahkina4531@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y783e3el\",\"label\":\"First name\"},\"phone\":{\"value\":\"82763619164\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kJUr9xC e53R yJ6VDfL gBjyd1E FOTM RZgIHnU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:14:34'),(2819,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nikolaevamarinav@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaso55q4\",\"label\":\"First name\"},\"phone\":{\"value\":\"89857983916\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"96by4hQ 0ZX8 7WYcpBK re7BSAe 7Cu2 Ufk9ov6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:18:48'),(2820,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tropinaleksandr94@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybzcun7y\",\"label\":\"First name\"},\"phone\":{\"value\":\"89758448799\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AJZ4OYP MgmL Geb4FXf 0qTdVkp SAyy 2bHhkVI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:20:06'),(2821,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zhirnowa.ira2010@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9hxhhrf\",\"label\":\"First name\"},\"phone\":{\"value\":\"83212572433\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"S2vqjqB 3GZK Vts4bqo 5qyzm2t cpFp vOJBLNd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:23:29'),(2822,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elena-stulina@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yc22jal4\",\"label\":\"First name\"},\"phone\":{\"value\":\"83219649681\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4c4DxGn xfC7 LbiBoiT VUVj2SC qrZX ArTxjrC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:26:40'),(2823,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vadimfedotov1997@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7jag2mq\",\"label\":\"First name\"},\"phone\":{\"value\":\"87918414829\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pA7bOvC ROix duWcWNU CyXeid1 csY2 7GxASkY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:26:48'),(2824,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sinenko.natali@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y6wadltn\",\"label\":\"First name\"},\"phone\":{\"value\":\"84636129981\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dmLxBPM 9RSP vAGH84m wSQNWbT l2jM 3nL64pc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:32:36'),(2825,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"saianatsydypova04@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yaceal3w\",\"label\":\"First name\"},\"phone\":{\"value\":\"81946295344\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tC3U3Gy c1ML NA4DUeo iMiCWjy oTEd 9ohDndg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:33:36'),(2826,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"artur0570@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yddr5soo\",\"label\":\"First name\"},\"phone\":{\"value\":\"89624588534\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9saNAQH HIvX xhlFo9x foqH608 nqk7 Hy8Vr14\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:34:01'),(2827,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"evgenia10071@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yc6lw5n3\",\"label\":\"First name\"},\"phone\":{\"value\":\"81873577795\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PePhMkU RciE C43kw2E OUMDRVa jgBz ijz4dEW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:40:25'),(2828,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vrublevskaamargarita5@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7o8slqk\",\"label\":\"First name\"},\"phone\":{\"value\":\"86843915155\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AmXDEQB Myky vVa7XGb 8I4aEXh UyCa rZfOhom\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:41:19'),(2829,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shamil0610200@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybfl9xvf\",\"label\":\"First name\"},\"phone\":{\"value\":\"85364715574\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"urEY1TQ YmQ5 hyrRoKE dpJsKXs w58f pE7HoUX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:41:32'),(2830,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"djeka2019@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7vcc8ze\",\"label\":\"First name\"},\"phone\":{\"value\":\"82292713865\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"r0kLX8v ybjS udxgghu z11EP7p LHFN Ht8Md2C\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:47:21'),(2831,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bor218@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8rqtmnv\",\"label\":\"First name\"},\"phone\":{\"value\":\"84628728731\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7vQ89Ad zvUW iGyG5MU 8JU7sOh 20dK oxFP5ZL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:48:48'),(2832,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vitaliya2393@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya4u6hx3\",\"label\":\"First name\"},\"phone\":{\"value\":\"84975125444\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bs5YWLw PHHg cBwAJSb GT2qWqK GfNM W8BMEer\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:50:31'),(2833,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bobomolo@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7fc29ur\",\"label\":\"First name\"},\"phone\":{\"value\":\"81739711489\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yZflHGZ hlKt fhCCnOu wZGyPHq ceTF xMFx19g\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:54:08'),(2834,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"milo4westwood@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybrfy4cx\",\"label\":\"First name\"},\"phone\":{\"value\":\"88866121516\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OvDuFSv LUMu hfDxusL 6bAUhTP V6EK KIqgfVV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:56:14'),(2835,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"200026.ru@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycetrz3v\",\"label\":\"First name\"},\"phone\":{\"value\":\"86567699367\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"havYVUi 2MBT hQ85TF5 KfojYDH ocdm 7jn1ldh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 22:59:23'),(2836,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sokusen@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yc94azkt\",\"label\":\"First name\"},\"phone\":{\"value\":\"83218519931\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zL7ZRbl Bl0I JF0z7cD HHTYBxM 7cog 3wbhFb9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:00:58'),(2837,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yshankar240@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yb9mcdmd\",\"label\":\"First name\"},\"phone\":{\"value\":\"88215971426\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OhYT73e IMBA Kb8y8z3 Q1FtF89 jUzz 8aQ7xOj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:03:49'),(2838,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Michealvef\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Michealvef\",\"label\":\"Last name\"},\"email\":{\"value\":\"stantonjarbo@rambler.ru\",\"label\":\"Email\"},\"message\":{\"value\":\"\\u041d\\u043e\\u0432\\u043e\\u0441\\u0442\\u0438 \\u0438\\u043d\\u0432\\u0435\\u0441\\u0442\\u0438\\u0446\\u0438\\u0439 \\u0438 \\u0444\\u0438\\u043d\\u0430\\u043d\\u0441\\u043e\\u0432 \\u0437\\u0434\\u0435\\u0441\\u044c aniglobal.ru<\\/a> \",\"label\":\"Message\"},\"phone\":{\"value\":\"82597946266\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"178.168.220.14\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:06:33'),(2839,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"viktor.volkov.86@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydb29tpd\",\"label\":\"First name\"},\"phone\":{\"value\":\"86295128952\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TreTNTc LV4N R19I16W 6l7H0Cs GEKt 7pYUiXG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:07:45'),(2840,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vadimkozak1212@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yamuewec\",\"label\":\"First name\"},\"phone\":{\"value\":\"87568516385\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"d0XFu7G PfSD LxI38t2 HSSxROA 0WcZ 194wPqh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:08:18'),(2841,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tatka4ydo@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7jpaoxh\",\"label\":\"First name\"},\"phone\":{\"value\":\"88418957299\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UQAG7Tp esBw rGZEMk9 phKZNlo crKR pwZVurW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:11:28'),(2842,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"artemkosorukov999@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8xhwmqt\",\"label\":\"First name\"},\"phone\":{\"value\":\"85557412181\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TJ7OCzZ NXYF Q4gi9Vy bc9gVac CYwz 1IDQIL3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:14:40'),(2843,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dva31@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ycllleqj\",\"label\":\"First name\"},\"phone\":{\"value\":\"81774459532\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"maA8uQi Ng29 sED7lxX BJFOZji gYOA OeghOVz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:17:15'),(2844,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ketrin1537@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yavs5e95\",\"label\":\"First name\"},\"phone\":{\"value\":\"85458492776\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"y6aR5Dx U693 2WKP8Ut BtmJt5B eJBN DVlpIUY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:19:03'),(2845,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"m.shaxboz055@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yb2j8j65\",\"label\":\"First name\"},\"phone\":{\"value\":\"84452869247\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pE41NOc j1zj ZUCh2CP BDegVl5 rTf3 frDhwm9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:21:30'),(2846,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fedahhadjiev@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7lwblse\",\"label\":\"First name\"},\"phone\":{\"value\":\"87858111169\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UaPuFqB Yv8J hvqtJb1 UxQQqtj Cxr3 tG4WMSo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:26:09'),(2847,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fedorzinger10@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yajwu3x8\",\"label\":\"First name\"},\"phone\":{\"value\":\"89135761878\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZwZadZL Xhn8 PQgA92o eEJYytz Bace xBkELsP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:26:40'),(2848,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nursultan.sadyk@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybxtzbp8\",\"label\":\"First name\"},\"phone\":{\"value\":\"87239882438\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"f0t9rj6 G4Uk G3NCfR5 SMXxbod kZak kQZazxi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:28:15'),(2849,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alinabozhenova99@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9qml44g\",\"label\":\"First name\"},\"phone\":{\"value\":\"87219498419\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3LMzXaw fUak 9jMMdBm VpD1bqH ogk5 3UUkI9G\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:34:06'),(2850,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elisabeteq@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y79cpud6\",\"label\":\"First name\"},\"phone\":{\"value\":\"82489156775\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UrCHBTp p2tR B4Die2p fCgOd8F HcFq kd108Uq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:34:46'),(2851,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aminaappoeva@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y99bal55\",\"label\":\"First name\"},\"phone\":{\"value\":\"87973862377\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"d1RIeFb WyUQ yuxoq1M wDKMjcv SbtJ 51Up9dE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:34:53'),(2852,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"n.havina35@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycfjdgl6\",\"label\":\"First name\"},\"phone\":{\"value\":\"82897383769\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jYJNl5H lhqL bAQOLx4 HdSdhIB VqDT 9uqe6h0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:41:36'),(2853,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tolegenabdihanov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9929fo2\",\"label\":\"First name\"},\"phone\":{\"value\":\"86729678891\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lCb6mz0 FKKs soaCmBK ZqQli1x tovt QSw30Vj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:41:39'),(2854,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natali.18.17@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y99chp3r\",\"label\":\"First name\"},\"phone\":{\"value\":\"81414638562\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"N9dIXi6 a96s 0RdIj0N Habj6Jt FaIQ RtdxoHu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:43:26'),(2855,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lili.onyshkevych@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydcjnyu4\",\"label\":\"First name\"},\"phone\":{\"value\":\"81328874173\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NMRUOAb i0gd BYOIgOF 5fPkzVZ N7Bk 2So5vy0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:48:24'),(2856,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"buvaysari@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd6728u4\",\"label\":\"First name\"},\"phone\":{\"value\":\"83175445491\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Fvwb5Es i6NI LD0Tqqd bfxNxvz j9qg 39AeAna\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:48:43'),(2857,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"345said345@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yapskruq\",\"label\":\"First name\"},\"phone\":{\"value\":\"81119661251\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lEiBpY9 7gk3 ZAH3znf xl5D9ph Os6E 6xXLeFt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:52:09'),(2858,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"annademid.ova@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya3x2ufa\",\"label\":\"First name\"},\"phone\":{\"value\":\"89943654382\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vihq9PV rb1o Ntm24aX SBqwGv6 cBRg JUsJmBM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:55:09'),(2859,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"farruxufc1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yakslcjo\",\"label\":\"First name\"},\"phone\":{\"value\":\"82361977642\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WuHxXyh iJPh zOBDymW RxV25QF gzKP yNhcOEE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-24 23:55:49'),(2860,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"orlov.e95@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9ucoeqj\",\"label\":\"First name\"},\"phone\":{\"value\":\"88819178755\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TMHYztP 2Uva cnjdqsV Fo4GO9y iL5G YcksIAt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:01:11'),(2861,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"walik03@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaka9xot\",\"label\":\"First name\"},\"phone\":{\"value\":\"87237681181\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KwTx8WI WmFl ekp7J8R 8eHtOXM ga9i 9K78yJE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:01:51'),(2862,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bocharov22@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8ausegs\",\"label\":\"First name\"},\"phone\":{\"value\":\"88152318222\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MaqdOKS 8usU tSdc6cJ oRI4M0z oQpx 9wwwTsY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:03:12'),(2863,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"at4664876@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7ac5zsm\",\"label\":\"First name\"},\"phone\":{\"value\":\"88815214727\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"p36gX82 Etpk IjYsOe0 kw3dBDZ 5uwf fgm2anJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:08:43'),(2864,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kochumeev@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y965ecz6\",\"label\":\"First name\"},\"phone\":{\"value\":\"86653215434\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cJnPhAg OPYm 3YC6kz8 vkBzA20 Rrpu qKNvg5s\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:10:08'),(2865,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"avroraplus@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yb9xnz45\",\"label\":\"First name\"},\"phone\":{\"value\":\"82713622885\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1mgDGT7 iJMl iV7TzQV 0L9WF06 4ghl 4rHcji5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:10:40'),(2866,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vitalijcumak47@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8ennv5u\",\"label\":\"First name\"},\"phone\":{\"value\":\"82763267323\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pTNU9ZT nSg8 5nqzYX0 uwaOh7V CItI RfSayRB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:15:47'),(2867,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mjunusova1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yadv2r6d\",\"label\":\"First name\"},\"phone\":{\"value\":\"88545635187\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"91HQzEe JhLH A6fCBXl Ca5dUJQ qRR3 YOtLbMk\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:18:18'),(2868,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zzed555@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybcs7p6d\",\"label\":\"First name\"},\"phone\":{\"value\":\"87232395138\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KJ3fZyg kLKX tA8PHJZ MEP7OyK dOs1 QZ7dmeT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:19:13'),(2869,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vf6044011@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ychlg7ch\",\"label\":\"First name\"},\"phone\":{\"value\":\"82313351629\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3LlVIbr Feur yvuPmtB z2O7AL8 2paC rZCgj6L\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:22:41'),(2870,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zavadskijkosta6@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya8lxzxd\",\"label\":\"First name\"},\"phone\":{\"value\":\"82245699271\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Kmn9kbm PpCM pcsTbf6 1zUPZlk QiEt 1Ut0Xgk\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:26:10'),(2871,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rokkiarchi@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8qx9tka\",\"label\":\"First name\"},\"phone\":{\"value\":\"83193559772\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"U9zf5PN 6CfG Y9T5ynP QJmc1xB z0AF ObvWlcf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:28:16'),(2872,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bappamondalshimurali@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7qemfms\",\"label\":\"First name\"},\"phone\":{\"value\":\"89131123634\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"C6oU2Ez JgLw EF1Rqu7 psiPsbj TZP7 PzpgXSz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:29:27'),(2873,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"keksov2016@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaqcq2qw\",\"label\":\"First name\"},\"phone\":{\"value\":\"81666561789\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"a90x865 kWhb U4dkDmb OdBL3IW 0wDj y0eBJjr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:33:51'),(2874,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"chirva.marina2015@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yal93edw\",\"label\":\"First name\"},\"phone\":{\"value\":\"86795197563\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pqEZj5L 9ygY 3de4fur CK928i7 nPMc 6RNGCeg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:36:22'),(2875,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"uriibocharov52@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydeypkgd\",\"label\":\"First name\"},\"phone\":{\"value\":\"82741462267\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fNci0sN dgI5 YoXnFmT ITrT01y 54AK nMZhZPC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:37:17'),(2876,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aleks.artem24@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycyq9vda\",\"label\":\"First name\"},\"phone\":{\"value\":\"86281515935\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vnZfWwj 9AqF OBnxG64 WZ5QjBO 30ZV ZKSXOV8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:41:30'),(2877,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alenasimisinova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y745udlm\",\"label\":\"First name\"},\"phone\":{\"value\":\"84371525612\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lHPIsxP bLJB BIQiiSz AkTi9v3 gbBu MblZ83I\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:43:11'),(2878,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rashev.grandplaza@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y98cr5zn\",\"label\":\"First name\"},\"phone\":{\"value\":\"81599664128\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tfdl0MZ uJEH 8yviD84 aO0RGYM dhAm Wy3I1z0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:46:20'),(2879,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nowmar17@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y986wpj3\",\"label\":\"First name\"},\"phone\":{\"value\":\"86121757736\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rQpcpXX lThK 9WPfO6B PHQzLqw k0QO I5Yqojw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:49:09'),(2880,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dedpool2291@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y7eferfa\",\"label\":\"First name\"},\"phone\":{\"value\":\"85657281516\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GVqlfdx 3818 EVoMak1 j2mGc1C Z9ob 3JsmBdJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:49:59'),(2881,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"trodat260666@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaq4fko3\",\"label\":\"First name\"},\"phone\":{\"value\":\"87681933157\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zLaILlt Jsh2 JLxkw3C UqUZ42v Zkeb FY2Xn7z\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:55:27'),(2882,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"idobaevaolesa@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y97f7pv8\",\"label\":\"First name\"},\"phone\":{\"value\":\"82191362736\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5RqifC3 4fnx DI9Z1H6 qQWZlby 5ixA MtBvRMt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:56:38'),(2883,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nazyrovaelina15@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9q4nbo5\",\"label\":\"First name\"},\"phone\":{\"value\":\"88488634661\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FXUrlol Zq97 xlO0Tm2 9K8n4Hz l8iH P7fAyoB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 00:56:39'),(2884,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"karinalakomaya05@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybjv7y7q\",\"label\":\"First name\"},\"phone\":{\"value\":\"89855445634\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LjdE7i1 BhMG xA0jiUA SJo7AON jRCB e9FqmqC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:03:38'),(2885,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bulytova80@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9gv7sbw\",\"label\":\"First name\"},\"phone\":{\"value\":\"81455738256\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"g9n0k0L cqHe oXnAROB WGhax1y 11nZ 9VKx3au\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:04:02'),(2886,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexandr.net17@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9hwbvgz\",\"label\":\"First name\"},\"phone\":{\"value\":\"84157954372\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UKBxyyK uMUS QCRiJ5e hQ63ivc KWxK 32a94Zs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:04:29'),(2887,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"leo9992@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y89h6chy\",\"label\":\"First name\"},\"phone\":{\"value\":\"83754544795\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ohTazWa UhX2 nlnbukV bXdOkiQ 5c0u VlaUwCj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:10:45'),(2888,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"timvaluta@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8p28uzb\",\"label\":\"First name\"},\"phone\":{\"value\":\"82823296522\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ayHzjH7 6ayE OAUBHut tBPADGB D59D 9Q0czvV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:11:23'),(2889,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aijanka0791@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yd72t9ph\",\"label\":\"First name\"},\"phone\":{\"value\":\"86191769263\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iRKXXkF Krzf 6BlVn2R ewLULpk V9wt xbcln9T\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:13:27'),(2890,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"metleva93@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7f3m3jy\",\"label\":\"First name\"},\"phone\":{\"value\":\"84841792956\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tYKncFm W40T vBitp64 DehrWQW 3TN1 0jAV4wl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:17:42'),(2891,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"michelle524eb@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ycotfhne\",\"label\":\"First name\"},\"phone\":{\"value\":\"89673718685\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"X0UwTvy GWBs vIL8t3q VUq546T fRTe ugbJLkd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:18:52'),(2892,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dmitrij.paraskiva@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yatt8ztb\",\"label\":\"First name\"},\"phone\":{\"value\":\"81218826363\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"X9hSZ0V Ix6X oi3XI6w AAaM8fh l4kh iXGPdWW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:22:41'),(2893,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"goldfootball7@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yd3qmkc6\",\"label\":\"First name\"},\"phone\":{\"value\":\"88571416554\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4EvCGyo bLts JVOjd9r cgXj2Uh upbq LHOUBZg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:24:52'),(2894,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"snitko.nast@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8g5npg9\",\"label\":\"First name\"},\"phone\":{\"value\":\"87747678183\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"E3gi7pP 6M4P oiM0igF 2xfCaO5 btdC 1Bkk5Ec\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:26:50'),(2895,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bigus0908@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd7phwzm\",\"label\":\"First name\"},\"phone\":{\"value\":\"87839867864\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RFgBktT G5Pm PWwrekU KSZ53YD gF6f upun2ap\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:31:51'),(2896,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"myroslavkoval22@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9rbrad5\",\"label\":\"First name\"},\"phone\":{\"value\":\"83692626428\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JeYtTTL gIlE u5JnhCX cjrtwt0 CwnX l4vAWCP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:32:05'),(2897,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"asdzxc1986.w@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ycq4jakb\",\"label\":\"First name\"},\"phone\":{\"value\":\"87114287953\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DZx38Ro hPEX Lmduf3v G3sWHWh bWRq hz40lRu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:34:33'),(2898,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"salamkooriyad@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycda8bsk\",\"label\":\"First name\"},\"phone\":{\"value\":\"81493923583\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tpbpaHY W2NF 2lUcy3R O2gFZye mUc9 QN0fFFE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:38:58'),(2899,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"grisinden4@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybr5ctvj\",\"label\":\"First name\"},\"phone\":{\"value\":\"81989776714\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IjR974S G8uk Os5wCc1 GD9z4Nq hiwg Vmkfg9M\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:41:12'),(2900,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"softaltern3@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybjyrpjx\",\"label\":\"First name\"},\"phone\":{\"value\":\"89281615773\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RkDK84L NCdd zO6cwpN 22TsUJV mYYJ 8v38Xw6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:42:12'),(2901,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vijayskv@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybhutm8h\",\"label\":\"First name\"},\"phone\":{\"value\":\"82149842313\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EBBGva8 fr52 bN8Ov5v ky992vY iB1I 9BjS5v6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:46:02'),(2902,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gammelviktoria93@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8sjwemb\",\"label\":\"First name\"},\"phone\":{\"value\":\"84775944969\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5xoL4PQ hw4V 2gEHGkS ypSHNlc dOTG VD3QkoY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:49:51'),(2903,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yul.yuliya2011@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybjulqed\",\"label\":\"First name\"},\"phone\":{\"value\":\"85764787154\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0e6Zebw g34u QJnqP2H iLeKHwe LfqX OU1Yh7f\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:50:20'),(2904,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"loznyan.juli4@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7qsrapb\",\"label\":\"First name\"},\"phone\":{\"value\":\"81313557789\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GwWyM32 ZUWA Fg5Im4z 4lnh5Nj KZIv koxcP7V\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:53:04'),(2905,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tawfeeqahanger@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yc5bfyvr\",\"label\":\"First name\"},\"phone\":{\"value\":\"87961574391\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"m575uf3 JHUY znf2vfx pXLyWSh HZvF dfcjaw4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:57:36'),(2906,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lusihay74@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yalsx3w8\",\"label\":\"First name\"},\"phone\":{\"value\":\"81943959572\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dLbrlH5 4PZE 2YtGZDN ebNigKG Sm8c Dbd1Ira\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:59:40'),(2907,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mrivanromanenko@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yasd9rey\",\"label\":\"First name\"},\"phone\":{\"value\":\"84155782357\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vuFbCv8 weui FU3rm7k bkw38uj Ebao qS1szFa\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 01:59:57'),(2908,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pulev0068@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ycswa6sz\",\"label\":\"First name\"},\"phone\":{\"value\":\"86894579178\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UTupEXp dWEF ASk7iUP yoWC7aI DM3x i4bmHcm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:05:32'),(2909,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"foxxxl81@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yc878gns\",\"label\":\"First name\"},\"phone\":{\"value\":\"84982738445\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2pzkfK6 rkiM EZShoDe k74oXLr bN1b 7b5rzQw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:07:06'),(2910,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ededov@me.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybuql4jn\",\"label\":\"First name\"},\"phone\":{\"value\":\"84935731997\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sqdm9hH SWik zNCIEF0 Iz9rSrC TwyA r0VpMFk\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:08:53'),(2911,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ladybax21@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydx8pnkd\",\"label\":\"First name\"},\"phone\":{\"value\":\"85872812821\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SHWhbyN rj8Q U7JqEh4 37mNtsk nqpB ZTu50TD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:13:25'),(2912,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"brajkina-olga@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9t6gmxk\",\"label\":\"First name\"},\"phone\":{\"value\":\"83469847764\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YDSDzcT NCMq iBySRGh KvlJZVz 7UMA oBjNCZx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:14:05'),(2913,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"katibli88@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9fqoh83\",\"label\":\"First name\"},\"phone\":{\"value\":\"87482688237\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qefm8Em yAvE LRehSBM wbfwsi7 7Z8o nlBx4DK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:18:16'),(2914,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"eg.filippow@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybwanblq\",\"label\":\"First name\"},\"phone\":{\"value\":\"85662282922\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VV7igrw jfMq C6Pzswr pKZixjp uSt5 p4gMzik\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:21:01'),(2915,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"legusov2016@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ya8lxzxd\",\"label\":\"First name\"},\"phone\":{\"value\":\"86551188455\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6r37s4e 7Efr waadx5t jgWGf7N 3jzZ owgK2HI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:21:08'),(2916,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ritaiva94@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybjpbo57\",\"label\":\"First name\"},\"phone\":{\"value\":\"86959513278\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ikZAgpF vU7d RRpgVV8 U9Eq0yG txW3 njnqU4g\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:27:26'),(2917,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sveta.arhipova.82@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9wolpj4\",\"label\":\"First name\"},\"phone\":{\"value\":\"89338426195\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"V5wJ8nC 9UPN FqMP1ov m1McGs1 n2Aj SIvREoD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:27:52'),(2918,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"samsonov164@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9399wnh\",\"label\":\"First name\"},\"phone\":{\"value\":\"84212386775\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zA7jpz2 jkwF UdwFQj5 EnJSKjU UNbo aaA2qMm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:28:56'),(2919,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"timir.sib@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y6wupm7c\",\"label\":\"First name\"},\"phone\":{\"value\":\"83526814338\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"d6TX5w2 zA4u XE1iRr0 lcLHlfS M95K KcyQuNg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:34:56'),(2920,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mrriddik88@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yb887s53\",\"label\":\"First name\"},\"phone\":{\"value\":\"81469237774\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LZfcvjx TwKK Vv0TMI8 5a8128x nzyA 0fHKL4y\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:36:25'),(2921,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ishalinden8@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9d878vq\",\"label\":\"First name\"},\"phone\":{\"value\":\"87137483417\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CduT7K9 ZT4p 8u1kK7v wv5ze2d ROzm rhA7js0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:36:31'),(2922,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sosik01@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9nf9hp4\",\"label\":\"First name\"},\"phone\":{\"value\":\"82319965387\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZCUYsYL IJkv xHks4Xj Q1wAWC1 ZQoH tg3SlYB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:42:02'),(2923,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zubairhaba2@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y76fpbmg\",\"label\":\"First name\"},\"phone\":{\"value\":\"88867399683\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"efnW0xD uiuA WGWMWzf YE5eKIF D4Ln UsUIfW8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:44:12'),(2924,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zamsidabdukarimov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybyct7vb\",\"label\":\"First name\"},\"phone\":{\"value\":\"88688659834\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pJGkGdn 6LpW SD8IRqf OG8qxEa 1P5x 3flCH0z\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:45:13'),(2925,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sd@hotmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc276jm2\",\"label\":\"First name\"},\"phone\":{\"value\":\"83713277428\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nUdhEcu lZj8 oQHN67Q KAUYbFc nQUT LJckhWI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:49:04'),(2926,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"boriselnikov04459@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7bv4n4m\",\"label\":\"First name\"},\"phone\":{\"value\":\"86385394344\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"b9MMQuL NSur tVHoRa0 8vRJrO7 Rkuy 2fkmwuO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:51:48'),(2927,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"katty-m2008@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y6u3raga\",\"label\":\"First name\"},\"phone\":{\"value\":\"86363695435\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4o8MlvG EZK7 fPiHwbj kNK7o0c vc21 5rEjiU6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:54:20'),(2928,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"samuray20041@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9n2xszm\",\"label\":\"First name\"},\"phone\":{\"value\":\"86712837444\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZPByqoQ atLY DPWiYEj ZUcjwRi RvJt oZEyCkQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:56:04'),(2929,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nurmamataliev90@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8rxcbby\",\"label\":\"First name\"},\"phone\":{\"value\":\"88551742326\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wr2SlID DjEE fHvEqEc H13QQD3 Xs0X rvzoMon\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 02:59:28'),(2930,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lshirjakina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydeb5l33\",\"label\":\"First name\"},\"phone\":{\"value\":\"83644243726\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fmEUojp 9Pdj hTZDEJu qbzmM8p iQNB wqxHXDb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:03:01'),(2931,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olgaryk951@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yblnxzgd\",\"label\":\"First name\"},\"phone\":{\"value\":\"88472957315\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vNFk2Ow J0T9 wnTz8tK dFmpUpB MicA CcNcGQt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:03:36'),(2932,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kindsfater@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8wmr3rf\",\"label\":\"First name\"},\"phone\":{\"value\":\"85453775687\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9DjXwjL aJcm Rw1ugMi ynRX60Q 5mcI If7iX0C\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:07:21'),(2933,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"asja28bogus11@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8fffuqp\",\"label\":\"First name\"},\"phone\":{\"value\":\"87543979487\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Fwan0ck fXjE dQ8VGGn 7AZRrpD KOD4 sZo5O0g\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:10:11'),(2934,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marcunkevuchus.svetlana@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ya4vvsp5\",\"label\":\"First name\"},\"phone\":{\"value\":\"85635593764\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FItV8cL 9Avx 8pfrBXF iXgI4PS 3WrB mNjJlhB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:12:55'),(2935,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rimma77@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yb9dhkt3\",\"label\":\"First name\"},\"phone\":{\"value\":\"88661751436\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XEmjJCK JhXv 4SDqJlx feDThWd s3Gu dt7tcIx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:15:11'),(2936,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"egorkozlovskii2008@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yaqaauqm\",\"label\":\"First name\"},\"phone\":{\"value\":\"81674133984\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4CHvsat ZY5P 5rnpbTp vEHAqkP O8Ss NlBa1CK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:17:40'),(2937,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"azadovskaia@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7el2rr4\",\"label\":\"First name\"},\"phone\":{\"value\":\"84541647683\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IMPa9uP 4PmF 48KAm2E hrRonvD kmO1 JUJt0u5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:22:21'),(2938,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vagin999.vagin@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ydfl9wzq\",\"label\":\"First name\"},\"phone\":{\"value\":\"82889365726\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kWdq3Ir zm36 4YDXVE1 Wdx8DHh OyI1 zBd49JX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:22:55'),(2939,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kolesnikovaanastasia@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7wst7r4\",\"label\":\"First name\"},\"phone\":{\"value\":\"81123579147\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"r9RmEnj g6LY WU1MPYf OjvHcfp X4iD SG9Ip4H\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:24:56'),(2940,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"naora665@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yaesjfhv\",\"label\":\"First name\"},\"phone\":{\"value\":\"86521419376\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OxQ3hOg 93MQ qMltVrE 5PuviKH va49 iI2qNge\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:30:48'),(2941,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fedorfil@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9f6dexd\",\"label\":\"First name\"},\"phone\":{\"value\":\"82958956168\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Vlb2ZV3 piaN hEjTzPi c2lwL6f nXwi vPXq0dP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:31:31'),(2942,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rzaeva.olia@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yct5mrlz\",\"label\":\"First name\"},\"phone\":{\"value\":\"88211656367\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3TAzGfL o3oP shN9Eth 1MWuNjR amiO jQiFqx6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:31:49'),(2943,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tanja.eremina278@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybzj3vc8\",\"label\":\"First name\"},\"phone\":{\"value\":\"82939987915\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"86vvlf6 EYQj vuDbycA Mbdl7WX WmeT mEkUlg2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:38:35'),(2944,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ripjoey8607@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y78pqmb3\",\"label\":\"First name\"},\"phone\":{\"value\":\"81731548832\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cqQDjh5 MDoI RQNf2d7 TD8RwW9 F11B TYtUD80\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:38:36'),(2945,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natalijcajkina56722@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybjulqed\",\"label\":\"First name\"},\"phone\":{\"value\":\"86473374928\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zp0xL2X N3Fz fp4sqa7 cJ6fWTF Vn20 Q7veCDX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:40:36'),(2946,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aleksets872@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9m9cnyq\",\"label\":\"First name\"},\"phone\":{\"value\":\"81128365179\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pdzNi0t mHv0 UbtU6Fn ZILZk7i GSZt WCIiVsP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:45:46'),(2947,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"murodbekpozilov51@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9929fo2\",\"label\":\"First name\"},\"phone\":{\"value\":\"82637233813\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1m4jhgk S4ng 0FWGio1 kUR6iUC S2CG rAlQLVr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:46:09'),(2948,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rambler2011robot@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9yfpusq\",\"label\":\"First name\"},\"phone\":{\"value\":\"82178529484\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Pv8IbOd r9Yq HvL7L9r HEuXB2h gRiA ix7GPJi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:49:48'),(2949,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"takahoartur@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ydfcljd9\",\"label\":\"First name\"},\"phone\":{\"value\":\"87214833956\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6npedtI VjIv mdLHgBK RW4p8Pc 5iJr lXOXdaz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:52:54'),(2950,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nikitabirmaher07538@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9rn7tzl\",\"label\":\"First name\"},\"phone\":{\"value\":\"82899427793\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ILKpQKv yVod FPVtr3X GL8YeD6 AkhA 9ZR43Ms\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:53:44'),(2951,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"p89191225488@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybekjh8d\",\"label\":\"First name\"},\"phone\":{\"value\":\"82838159112\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JEVRRd1 3wQg 5NKMTee ujYJMnu nYC0 Y4TosEt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:59:05'),(2952,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"slavka-7@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y74mnqc8\",\"label\":\"First name\"},\"phone\":{\"value\":\"85595744422\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"73rtIJQ VkYu C7OtjGy w1o1sTy dnZd 08WubcM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 03:59:53'),(2953,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"u517ou@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yayq3h85\",\"label\":\"First name\"},\"phone\":{\"value\":\"81283542913\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HNusD6Y OK2f c0AsU4T e9Traqq fTIZ bXH8lCZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:01:21'),(2954,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"karolishka24@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yb35nghr\",\"label\":\"First name\"},\"phone\":{\"value\":\"84384921932\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JFNmw3T 8QBZ NMDpOCk piDL48C sqM4 k8r31EV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:07:06'),(2955,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"daramattinen@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9nb9anh\",\"label\":\"First name\"},\"phone\":{\"value\":\"86613896844\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2MC6FMv Pvcf E4bnhmu Y24FxNl MHJA bLKesTt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:08:24'),(2956,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"romanpotor871@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd2bok7p\",\"label\":\"First name\"},\"phone\":{\"value\":\"81424942659\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fZQyQE6 7Wpw oCAeTYW YaZGHBG dAfJ oSN4Ine\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:09:12'),(2957,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexfox0073@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y6wpu6cn\",\"label\":\"First name\"},\"phone\":{\"value\":\"85221264622\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8pH2zp2 qUls Bqw7RFT VMFcAS0 Z7sO 3E9HoOu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:14:11'),(2958,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fxtr2009@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y75rz2zp\",\"label\":\"First name\"},\"phone\":{\"value\":\"86649512229\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5MXdd0R rw5G lGcKvfv 4ODR6ao d1XP CDYTCNl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:16:54'),(2959,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gaponm@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yamjrrtx\",\"label\":\"First name\"},\"phone\":{\"value\":\"89586468493\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sORSOTv bC6e 4zXnySZ csMNAcL jtbs cdm87Mn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:17:32'),(2960,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zzz95@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9hy2pks\",\"label\":\"First name\"},\"phone\":{\"value\":\"88237288211\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VYjeZ1k p3Q9 OLMdHRl SJJv8rb x3h0 KucJwLM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:21:21'),(2961,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexalex199303@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybjj2oo3\",\"label\":\"First name\"},\"phone\":{\"value\":\"81262435612\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rukWI4D rPoi DRwxPwc o41q5UV yqcz w4Crf69\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:24:54'),(2962,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tp11kolki@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8jj34gy\",\"label\":\"First name\"},\"phone\":{\"value\":\"86945128742\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"S7qnqaP WYeE RrXy2dm 1dx6mLM qwIh b2arkwS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:26:44'),(2963,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"petrowna71@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yalszbpl\",\"label\":\"First name\"},\"phone\":{\"value\":\"85886539712\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"J86jzvJ Q3AL MIYyCqG H6tCJ9A GwN6 BOl5eVe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:28:20'),(2964,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"twixoffi@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yanz26zp\",\"label\":\"First name\"},\"phone\":{\"value\":\"82175227797\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2MvDhnH jqA6 5mTdu7n RGtNbz6 NT0W WZLPMyV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:32:42'),(2965,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lep-nat@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybdle5gm\",\"label\":\"First name\"},\"phone\":{\"value\":\"87384828155\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bPGsJhl Sc39 tM7Afdh lj3tU1G BtKx iDA8AOo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:35:22'),(2966,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"romanbussines07@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycbcy9oy\",\"label\":\"First name\"},\"phone\":{\"value\":\"81732516175\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kbOmc9I VCXk bazpxga ZT9OrlB yWGP Y0rQ6mJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:35:53'),(2967,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"cancancan140758@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8aco9fo\",\"label\":\"First name\"},\"phone\":{\"value\":\"86433415784\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sBo3GkY r8Cj DhEM4X0 747h5Fq WLr4 Uu0azl9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:40:25'),(2968,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fkurmanova14@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8775yse\",\"label\":\"First name\"},\"phone\":{\"value\":\"81397565286\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LU9kKBy jVNO oapx5xb 7Vbo0Cv wvZJ oDbRhNZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:42:34'),(2969,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sav02100@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybh4n8v8\",\"label\":\"First name\"},\"phone\":{\"value\":\"83178849621\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sZ24Zok 8xVp 5EWCxZK Q7uyjle 7KkL bqQjHLw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:45:01'),(2970,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kamor06@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybjqjp6s\",\"label\":\"First name\"},\"phone\":{\"value\":\"84198652775\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Aj4oZkz TA8Q xS3juJP NOYPE71 l3V5 6Dv9UlO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:48:08'),(2971,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"riavolk3@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yawdycgz\",\"label\":\"First name\"},\"phone\":{\"value\":\"86921119185\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rUYYMvb uxOj MjqMpDH 72Hv12b w5Vg 3YDbimh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:49:35'),(2972,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ncplatzdarm@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7y4hpnp\",\"label\":\"First name\"},\"phone\":{\"value\":\"85318119314\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wygWaSL tEQg bOskony PZsRM7q ymWH 8LRlLmp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:54:12'),(2973,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zhasmin32@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y8dwloqa\",\"label\":\"First name\"},\"phone\":{\"value\":\"81652495351\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kFSLH5S DUBG i3QaECl XXFwbaH 2PUP oyj2iR5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:55:42'),(2974,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olgakovrigina75@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybotpwwd\",\"label\":\"First name\"},\"phone\":{\"value\":\"81185892629\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WOhqAv7 Rk0p Wg65yLA J0xIEcK UzTT FPsYaEr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 04:56:26'),(2975,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ajadakaranga19@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yahq592y\",\"label\":\"First name\"},\"phone\":{\"value\":\"83225674325\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XeCTOTm b8rH LExshP1 zV3i4cm XN6L R9P1HL9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:03:17'),(2976,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"geraochka@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9ywdsyz\",\"label\":\"First name\"},\"phone\":{\"value\":\"86466469571\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9QLV3zb 5igK xsRvmen c4dr4g4 1E2c csOKtBO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:03:21'),(2977,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"z.t.d.91.01@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ya6rsbb9\",\"label\":\"First name\"},\"phone\":{\"value\":\"86895354543\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"I1reenu Yr4Q efr6LQu ImxjsCQ mMcf dbinp1Q\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:03:23'),(2978,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"permi-sergej@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y79amkzg\",\"label\":\"First name\"},\"phone\":{\"value\":\"86441345397\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DKe3I7i guks 9hNxMrb 0XivCD3 6rFL WEcMdyd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:10:31'),(2979,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pechorine@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yclvlhck\",\"label\":\"First name\"},\"phone\":{\"value\":\"86519687178\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EwyDGY9 Ho1o fvR4cv3 5b5J9rs m3L7 YuafHOv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:10:54'),(2980,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"seraphimkorzh@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8hhwatl\",\"label\":\"First name\"},\"phone\":{\"value\":\"86839123449\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DK7iLcG gYXx aG4J0y0 WqAGx3k vdKz eryJEBS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:12:24'),(2981,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"b130hy161@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y85zbxaz\",\"label\":\"First name\"},\"phone\":{\"value\":\"81671777895\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"d4RleEB RvV4 XMIMtHr uPDmW2r Yaiv aNK8fqD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:17:46'),(2982,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"misha22.97@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybbb6f79\",\"label\":\"First name\"},\"phone\":{\"value\":\"82819169297\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Wsc4JWH 0qk4 xi2M1tU Qy3wA3X wi3S oGoQYee\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:18:26'),(2983,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"super.ilya07@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9gu2zj8\",\"label\":\"First name\"},\"phone\":{\"value\":\"85743948532\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mddEuJZ VWd7 aDRlivI dWjfJtI HZGF q7m9Dyd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:21:41'),(2984,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"selestovairina455@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9p9dlj6\",\"label\":\"First name\"},\"phone\":{\"value\":\"85611991338\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Iu7yooo 1HTu SvtwtTU UVkh0UP j6HV 6LXYYXR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:24:46'),(2985,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"e.evgenjevna2015@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yavqd2h3\",\"label\":\"First name\"},\"phone\":{\"value\":\"81474291864\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wBWfOCF lSHr TeoJGgw 8Ww3CQ5 bWIi eSvrTNv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:26:23'),(2986,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"m9607008516@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y6unbw3t\",\"label\":\"First name\"},\"phone\":{\"value\":\"87678684754\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WC3bVtP NI6z XPPaNwX hmWKbvQ CpFm cAaZ5Ug\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:31:13'),(2987,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vladkrasnyjjj@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9lqfg78\",\"label\":\"First name\"},\"phone\":{\"value\":\"86756569787\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fg7vL3M UFXd BnJvJCH capPQDo L0GX rpJjGkh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:31:51'),(2988,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"andrijbodnik@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7zft5q2\",\"label\":\"First name\"},\"phone\":{\"value\":\"81931642223\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UW8Z4ok CPdL JkFzx5f 1peurew fqjM TX9uPnc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:34:07'),(2989,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olgabondar2906@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y987656t\",\"label\":\"First name\"},\"phone\":{\"value\":\"86784266188\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wQoVtm2 lQgX PBreemC euBAwSk ZqB9 hErWe5T\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:38:50'),(2990,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kudaiberdieva23@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yd3nfrun\",\"label\":\"First name\"},\"phone\":{\"value\":\"85398171632\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yQzeLiA NVXT tVWw9wM 3YIcszC 5syF d3mnVGk\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:40:21'),(2991,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elia.zackarina@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9929fo2\",\"label\":\"First name\"},\"phone\":{\"value\":\"84985935823\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"MmFbvR6 IL05 YacUmie P9VBstP rDPg wMl9aef\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:41:44'),(2992,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"uristka09@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yam7ym7y\",\"label\":\"First name\"},\"phone\":{\"value\":\"81447213344\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QzIOzGu N4jL Wrex34u hw1q6RS REvd ST2r0Ym\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:45:54'),(2993,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"irina4407@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y6u52bhv\",\"label\":\"First name\"},\"phone\":{\"value\":\"81163921775\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eIGeY87 mrDC YA3Jhq2 7bxnmeY FMl8 AvUlwmX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:49:19'),(2994,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mchendeva@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9jazsg2\",\"label\":\"First name\"},\"phone\":{\"value\":\"84623811368\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"v1VUQWC rEsA OTPCNTG g15JlKk uHN8 HP7iPTF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:49:29'),(2995,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"osilajablessing85@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybmo5znv\",\"label\":\"First name\"},\"phone\":{\"value\":\"89562627651\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3OjJ4Zv h2XB jArbhuL ZQC66K6 o5pE JKGzLB6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:52:50'),(2996,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marinaribun78@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yadppou7\",\"label\":\"First name\"},\"phone\":{\"value\":\"88111315659\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TvjOjDM tN9G nstvzGC brtHRLS cvsl oZ4MYUJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:56:58'),(2997,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"samuel.deteminy@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9ldhp3e\",\"label\":\"First name\"},\"phone\":{\"value\":\"86319991627\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"28VXMUE QSb5 U4x89sv s9PT5AB iVuJ 1RsLvBH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:58:27'),(2998,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"laya16@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y75av2fw\",\"label\":\"First name\"},\"phone\":{\"value\":\"83429724223\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9VRbAFd 5p2t 2ib2cB8 O4GnGNJ oubA NzHVOUF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 05:59:41'),(2999,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"karapet99999@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9mraff4\",\"label\":\"First name\"},\"phone\":{\"value\":\"84633335643\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"i6mDKjf GoKy zBdkP44 q9hfr9T InYl gYVs60J\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:04:45'),(3000,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"svem91@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7qydqgd\",\"label\":\"First name\"},\"phone\":{\"value\":\"89619317485\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"T0pHhhY kcUp DjpOwpN jERPYDD 2FCA b6979Pt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:06:40'),(3001,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lyapin0001@ya.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ydxlp8u5\",\"label\":\"First name\"},\"phone\":{\"value\":\"88444149536\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IhPIdDz VV32 GMKQn55 j9En3Ii TH5G KkhH23Q\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:07:31'),(3002,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"wiseant@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybxnkadp\",\"label\":\"First name\"},\"phone\":{\"value\":\"87628784919\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vytDfsE RFqr RvILarj g0XnARs gMUu 5GzSaxQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:12:30'),(3003,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"miroshnichenko666@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc5sera6\",\"label\":\"First name\"},\"phone\":{\"value\":\"87889428338\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6ZaY8sU 3joL Vo8nloO dC6fpBo WtFc azB87Tu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:13:38'),(3004,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"andrejlisovoj1995@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9nwdszb\",\"label\":\"First name\"},\"phone\":{\"value\":\"81798571635\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GODkgRU SGmi 21ejgVY 7P9dEaa iKax 416MAgD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:16:36'),(3005,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ritulja-karpva@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycotfhne\",\"label\":\"First name\"},\"phone\":{\"value\":\"89923461423\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"f6k6gJP IOZq QUqIrcw Z8LjTxL 6mJg PvXxdRg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:20:17'),(3006,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"svetka.88goretskaya@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yassascz\",\"label\":\"First name\"},\"phone\":{\"value\":\"87317173228\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VdBqE6H VOwx dYVjX3b 1bbsmJq az23 GgS5t4R\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:20:27'),(3007,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mihno.iura@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yctfoodh\",\"label\":\"First name\"},\"phone\":{\"value\":\"83778262283\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BrbyYZV v4cU KADKk53 KU8wEVj fVWX 7Mu3kkT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:25:52'),(3008,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"galazai47@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8spya4q\",\"label\":\"First name\"},\"phone\":{\"value\":\"88113771797\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FrznzGp 4rJF 60QUUfE p27NOPw 5oZk UfvDb4Q\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:27:24'),(3009,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pluzhnikiva914@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yb5rypxy\",\"label\":\"First name\"},\"phone\":{\"value\":\"87722444466\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ePdCXUc rR6M Xc7wVLr rrddYEc WJLN ToG3a2Q\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:28:04'),(3010,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"raketaaad@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9dbvc3n\",\"label\":\"First name\"},\"phone\":{\"value\":\"83459461697\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hRfa3fx Zb2N jnyJK7j vZCCAZw Jcuv FMsiDS1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:34:15'),(3011,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sukurovb192@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y98p6lt4\",\"label\":\"First name\"},\"phone\":{\"value\":\"87189868646\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xGbIJLw r3Qn Q2JjnXf e4taRSQ eWlN PwML22c\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:34:59'),(3012,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ussa8usa@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybblcxb4\",\"label\":\"First name\"},\"phone\":{\"value\":\"82571329744\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PQUHv1d llER Onmh9AT LWr3uf6 Jhh9 fEN51rE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:35:43'),(3013,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"volodia4217@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydae2klm\",\"label\":\"First name\"},\"phone\":{\"value\":\"83692785969\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ue29Yfc NFjK BopzPlb kA4VTjQ I2X9 2KNa9RI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:41:12'),(3014,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"umbetov72@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7yxdx7a\",\"label\":\"First name\"},\"phone\":{\"value\":\"87435663715\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jnxhmQM alSk XdRsiBS lJNoS0s WZv7 lsflUmc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:43:16'),(3015,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mashanya93@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycbvg72n\",\"label\":\"First name\"},\"phone\":{\"value\":\"88242933683\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oAsccoH VrvM 84f96yo eAbVBWZ 8elB wO5RYgl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:43:54'),(3016,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jkmuf07071988@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y99bal55\",\"label\":\"First name\"},\"phone\":{\"value\":\"87146954251\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lq6BP1z TKcF hvC3Iev oVwlLlj INjF 00jWSho\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:48:09'),(3017,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"murtazalieva_96@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y7fknn3b\",\"label\":\"First name\"},\"phone\":{\"value\":\"86885271979\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fjxlKaR wjwm az10i8g gc10O6g YvFh YpXbaO6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:50:58'),(3018,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"2426737@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7b8mcwa\",\"label\":\"First name\"},\"phone\":{\"value\":\"83614435265\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KPMSKjD pJfp zsMFSSM zSXiRZv dvK5 iRtewXP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:52:56'),(3019,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bserege@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9wg8j7b\",\"label\":\"First name\"},\"phone\":{\"value\":\"86834765359\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aANh5fS H2LK fOlikC0 ClN3IiE caFn dCAGA9N\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:55:04'),(3020,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"afirceva@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7sunlst\",\"label\":\"First name\"},\"phone\":{\"value\":\"87416122593\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Wmm6L8P ECWD 8i5lvvI cPJ7tvT 1LLb psOdaqb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 06:58:41'),(3021,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"turbodrom@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8rq6tfn\",\"label\":\"First name\"},\"phone\":{\"value\":\"82896384189\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Jthkv81 rLYR i4EXW3w W9smpUe bDXx JVwL0to\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:01:55'),(3022,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rek18031990@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8zevlhp\",\"label\":\"First name\"},\"phone\":{\"value\":\"81171778231\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"y2p5ZTC FLpN kVBBJpw qBLdFMI L5DR XFvis8j\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:02:12'),(3023,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"learietammy@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ya6g99kw\",\"label\":\"First name\"},\"phone\":{\"value\":\"85395458276\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1HboDQF 8rRg Z7Pvs2x fKpMsbI lPOr YBwL7sQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:06:27'),(3024,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ariana.gruzdeva123@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ycq245ky\",\"label\":\"First name\"},\"phone\":{\"value\":\"89535817821\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WV5SauD cOFT OFqkQtw avKQSZe t5vw WfbfS20\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:08:57'),(3025,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"knv1103@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8boxuo5\",\"label\":\"First name\"},\"phone\":{\"value\":\"82638618654\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6J6gkY9 iTgo rn4EjDU eV89z6W W4yU ROhVa01\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:11:21'),(3026,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tanyachernova@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycd6vs57\",\"label\":\"First name\"},\"phone\":{\"value\":\"81247722354\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"V87jyBE rC6i MGSh5D8 zl9fgTa uy6r 8yhBHtW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:14:20'),(3027,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tatianatrtrtr@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yd9g4csk\",\"label\":\"First name\"},\"phone\":{\"value\":\"85813258438\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VfnAXaD CQkk NTJzbVA SllMbX5 7wsP QzqRwNz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:15:59'),(3028,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"patrick.twesigye@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd72t9ph\",\"label\":\"First name\"},\"phone\":{\"value\":\"89994884987\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ndXeKZm oupO 9ERVSqa KaJ6kX5 MsqQ R7FUCTd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:20:33'),(3029,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tregybov.651@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yasvm68t\",\"label\":\"First name\"},\"phone\":{\"value\":\"88553936725\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"f6dCteT fJNO CqyHdZl 26oN4ym qUnR nmNDdy2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:22:12'),(3030,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ksm4512@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y87n28mw\",\"label\":\"First name\"},\"phone\":{\"value\":\"87543543233\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8yRAmLE fuap 5byZArP cSAWScx VZf7 qC2KhlM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:22:58'),(3031,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"axmed.dokhov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9w49p8f\",\"label\":\"First name\"},\"phone\":{\"value\":\"89777231631\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6Il5Kci UZwn kkvSg61 sKKz70q oOHK B8G5q4H\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:29:45'),(3032,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"cerkasovaevgenia57@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc82rkan\",\"label\":\"First name\"},\"phone\":{\"value\":\"89196698375\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"w8gbrv3 7qsT HlUcH9k Ue75Wyf 2Teb MMVtTaD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:29:50'),(3033,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"cris.02698@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya4bzy8z\",\"label\":\"First name\"},\"phone\":{\"value\":\"81815147558\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qwjYd1a mlQv abTZSu7 6QSVGvT 8xKk jFvS0eW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:30:11'),(3034,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ansubbota1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yb3gal36\",\"label\":\"First name\"},\"phone\":{\"value\":\"89886872688\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6dCdaq2 N8ai om5UgaE LZes4Xw n3WT 7f4yMPb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:37:04'),(3035,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alexey0725@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yclvlhck\",\"label\":\"First name\"},\"phone\":{\"value\":\"83656215867\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YuIAx3e 4oFv xbgucbO 18xzUTz HI5L EvlQ3Lx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:37:46'),(3036,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"navruz50@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yas5m5jd\",\"label\":\"First name\"},\"phone\":{\"value\":\"85321166579\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KEWnjf3 1JoN 8WUeUm2 hVK39V3 3oUf Ah6ryiI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:38:39'),(3037,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sergej26omon@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ya7zd7xf\",\"label\":\"First name\"},\"phone\":{\"value\":\"83617573556\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"U15Y9EA cTD6 mfUTkzh 3wNFdQd wpLZ f00UQ5C\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:44:12'),(3038,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"orkys1993@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybzev8pr\",\"label\":\"First name\"},\"phone\":{\"value\":\"89976425721\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"y5EyFtH OyhN vV1DAAM pECmU5e 028S sGazXrH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:45:24'),(3039,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gk5233@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7z5t37y\",\"label\":\"First name\"},\"phone\":{\"value\":\"86647328839\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6nu3M3Q Gqwy rKTCoSK BvJzY0e dBiY v2U5fIu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:47:45'),(3040,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"irinakarmaenkova1619@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9baa7qt\",\"label\":\"First name\"},\"phone\":{\"value\":\"82594113387\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"p218aGJ ehtY iSOzo1z wUh0XqT sdQ9 nX0bRir\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:51:16'),(3041,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"eldorado14092018@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycb4ehwc\",\"label\":\"First name\"},\"phone\":{\"value\":\"87932943351\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GVckZIY UtT8 vel4MKB dhXswjb LLeT Eeo3U1J\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:53:06'),(3042,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sashakoval884@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycskfy8z\",\"label\":\"First name\"},\"phone\":{\"value\":\"88132645572\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"d46ENxf Nf8X e8FhPqJ Pf0I9hi X5DR 7ygpcVf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:56:59'),(3043,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"evgecha-81@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y88v6yjt\",\"label\":\"First name\"},\"phone\":{\"value\":\"86912254989\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Tp5Xipv dcke 5mfnZKN A6uJlkx o9zw unlGmEi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 07:58:17'),(3044,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"grinkevicdmitrij821@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yajbmqth\",\"label\":\"First name\"},\"phone\":{\"value\":\"82972762527\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"l0jgtYw 3E0O lHgl8Kk MVLEf1s qqbe JG6nPFo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:00:56'),(3045,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"baglanturgimbekov9@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydchun52\",\"label\":\"First name\"},\"phone\":{\"value\":\"89463421162\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BONlbXb uL31 1rWj2Gs FWCSYIJ 77iN wR1uFey\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:05:28'),(3046,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olgacvetkova248@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycgu25ra\",\"label\":\"First name\"},\"phone\":{\"value\":\"88241286894\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wqSCwY6 bEAu ZJOwJg0 6l0ajGG FUPv rYp0hML\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:05:58'),(3047,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kadievsamil77@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydhd7569\",\"label\":\"First name\"},\"phone\":{\"value\":\"89935898453\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Lvsw7lk wLuU paVnahI 7Hclj1Y xKKL 5t7yszT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:08:43'),(3048,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tokanara@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yczkalyk\",\"label\":\"First name\"},\"phone\":{\"value\":\"87867514217\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iG6GJ8O zIRG uNcMi6O jBMIfZe lx8h LxSkHid\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:12:38'),(3049,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"marinakhachalova@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ydgpvq7g\",\"label\":\"First name\"},\"phone\":{\"value\":\"87766744171\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LNzzquR zDi3 UHqNTek ZUrHgRz yM3Y fGsJkNr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:14:59'),(3050,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"leskivoleg8@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7qo7yod\",\"label\":\"First name\"},\"phone\":{\"value\":\"83471275393\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yi2tFpK 2hzQ 1Ix1Y73 HRdrpTi qLBZ IXOlYfm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:16:27'),(3051,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"viktoryatatarenko9134@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybqreraj\",\"label\":\"First name\"},\"phone\":{\"value\":\"82485151849\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4QtoHsm J2nc 1ZmaAfh jWtIoVu RsPl 9LkGUbu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:19:42'),(3052,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jana.top@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8furtru\",\"label\":\"First name\"},\"phone\":{\"value\":\"84422324977\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eIoRfJH 6zHi gzKMeZ9 dsvzL8h KHqA VBR9Oad\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:24:05'),(3053,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tryshkovm@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8hrhry5\",\"label\":\"First name\"},\"phone\":{\"value\":\"87526949699\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"i17GTbs Q2RL 8Rux47D czC5atl izBv oyFC70j\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:24:14'),(3054,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rimma160170@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y79vxnq6\",\"label\":\"First name\"},\"phone\":{\"value\":\"87966752914\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jlLjPmk 9ume uPOt1J2 tvHeKnk 4Wys kcGmzVe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:26:50'),(3055,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fajzullotostonov31300@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yddle7yy\",\"label\":\"First name\"},\"phone\":{\"value\":\"88751235652\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HH0rW5K NCen FCqdeM2 GDyxnmE 77ld IdBGKt8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:32:04'),(3056,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"xfhhcddggxd@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ycmpn6fv\",\"label\":\"First name\"},\"phone\":{\"value\":\"88175296927\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bBtPe5N 5shb myO0WrU 4hKL2zR rF8W 4Dqrzy8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:32:53'),(3057,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"beksayidov90a@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y77nkupm\",\"label\":\"First name\"},\"phone\":{\"value\":\"88463642973\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"s63l5mu IdBD oxLx2r6 3uf497q 2EVo wN7qgg9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:33:53'),(3058,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"adedjanto@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ycfoh69j\",\"label\":\"First name\"},\"phone\":{\"value\":\"84849322129\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RX2bA9m ZkeE 6w3Nbg8 YgxhzF5 PCb0 VMdXP88\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:39:51'),(3059,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ermaviv@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycr68lza\",\"label\":\"First name\"},\"phone\":{\"value\":\"87264598565\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HFBCI5o WEyT PwQsjSS 5H3KDrx QHAo nazqxwp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:40:59'),(3060,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"valeriam20041@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycr5ndou\",\"label\":\"First name\"},\"phone\":{\"value\":\"89252839285\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LQVS3HN 1w2i bO99OFC EndZbFr BFi0 qPrC8GS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:41:43'),(3061,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kirkinpuzel666@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y8g98gxd\",\"label\":\"First name\"},\"phone\":{\"value\":\"85459544274\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nuRmbos xl8A NyDihDP 0BQ5R5s KcT3 siDLBe1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:47:40'),(3062,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gorohowaekaterina@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd4msgd6\",\"label\":\"First name\"},\"phone\":{\"value\":\"88797494579\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ETtMZ5o ZuLH nRhDf4K TvJ87NU 932E xb7oSAT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:48:04'),(3063,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"korolevagalin@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yadcjqwm\",\"label\":\"First name\"},\"phone\":{\"value\":\"82268533755\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HckcXDF 5HLw AWxZOWg 1R8OdTZ 8qe7 y8CVEO3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:50:47'),(3064,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"levcaun@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y6wub2ps\",\"label\":\"First name\"},\"phone\":{\"value\":\"87492834849\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0TPb8dl GTFh NZ8wLxy w9q3Hsh FOWB xoXp960\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:55:17'),(3065,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"namco9@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yawyq8st\",\"label\":\"First name\"},\"phone\":{\"value\":\"86855888868\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"g4A1KoY IDxV cHFO0rq 2AZS8xw 2nOP g8gHjbk\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:55:24'),(3066,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kudelnikoveugeniy@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycej7dzj\",\"label\":\"First name\"},\"phone\":{\"value\":\"89449851696\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Oiw9Ivu 0AxV WX7epjx XPQpYWL 1eQ2 lvn3Vfs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 08:59:54'),(3067,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"eastsider@ya.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yajuthef\",\"label\":\"First name\"},\"phone\":{\"value\":\"88896172767\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"casxpXW 2kz2 QlhPdgK JRh4wjY AQxJ PNveiia\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:02:28'),(3068,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"romantsova.galka@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y7e46nrl\",\"label\":\"First name\"},\"phone\":{\"value\":\"88666157523\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"z40H2G4 qvpV B7V1BKj qP3iCkL dxMc nP6xWZC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:02:52'),(3069,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lilit.om858@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yaaczsf9\",\"label\":\"First name\"},\"phone\":{\"value\":\"83141182713\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"z0QO6Mo 2381 qyQ2cEM ncApk1Y Mc6Q 79OVtFe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:09:21'),(3070,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"svalen74@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9pr375q\",\"label\":\"First name\"},\"phone\":{\"value\":\"87712451993\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8LM8qSN wFBi KO5Il1P rmZid8l siVg d2vsL8E\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:09:40'),(3071,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lagytkindenis@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y88zk5lm\",\"label\":\"First name\"},\"phone\":{\"value\":\"82643116543\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AKMaiQP 0c8V AkCvKZF LLorY5L rhao bhF64K4\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:10:29'),(3072,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jkzbqc@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya6kxcpt\",\"label\":\"First name\"},\"phone\":{\"value\":\"82442873166\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7W6WPGP ckGQ jij1rTJ Tn9weZY w50e 2oJRDxU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:16:56'),(3073,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bonganimabuzawhacko49@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yby56oup\",\"label\":\"First name\"},\"phone\":{\"value\":\"81564171971\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"N36NpXU kUxj OXqOnXC BjQJ2Ic Ok6M ehfZ725\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:18:06'),(3074,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"margarita21764@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yabm34vl\",\"label\":\"First name\"},\"phone\":{\"value\":\"84396482985\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"S5MAycn YN2b Tsdjrgt XmJUFu0 i3x7 xwnscBJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:18:22'),(3075,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"familyarskaya.k@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd9wupj6\",\"label\":\"First name\"},\"phone\":{\"value\":\"89659158794\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"i0qTzib 0QtM 33JVX3w mRwshyt rO2i 6f1i4XC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:24:06'),(3076,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lion870928@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yacsnnx6\",\"label\":\"First name\"},\"phone\":{\"value\":\"86675354686\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GM9utv6 UG5F dS1xWlc kXOYpDY tm2Z lP6u7YO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:25:58'),(3077,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"merindajul@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybccazbs\",\"label\":\"First name\"},\"phone\":{\"value\":\"88886218576\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7fSOsFR GKY1 hyPZzvB vlrMHFK CWkZ Lc6QBwN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:27:32'),(3078,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gurzasava@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7rhupp3\",\"label\":\"First name\"},\"phone\":{\"value\":\"84277918388\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AETUG7A T3RL uzJ7VSk VnLvX3r PBbl AnX9N1z\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:31:13'),(3079,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olesya.ch38@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8wmr3rf\",\"label\":\"First name\"},\"phone\":{\"value\":\"88233231316\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"il6o8BS FrSO P5WIRL9 yT0mPYQ uDQG eH32OuY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:33:40'),(3080,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"maysonlive1@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya4u989x\",\"label\":\"First name\"},\"phone\":{\"value\":\"89357823342\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QtWaSXQ 2PT2 6GKTGmf kPNpEyf e8Sh DxVp4o6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:37:40'),(3081,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"misscar@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yashnnr6\",\"label\":\"First name\"},\"phone\":{\"value\":\"89748767564\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KR9QVdT kBiO JtPEifr RQU2hc3 GQxC VoKpkDH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:38:16'),(3082,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"usukhrob@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y86oul94\",\"label\":\"First name\"},\"phone\":{\"value\":\"81118149925\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jSUEtOM 48Wi 5vybFsZ wcEzIkf DJ36 Q1uvy39\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:41:25'),(3083,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ola318404@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yal2yxco\",\"label\":\"First name\"},\"phone\":{\"value\":\"83482931365\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xvr3wog F25u 8AAh90b JMjf1Kq Pw5I tfhM0P5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:45:27'),(3084,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"akmaluldasev09@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9obqbsp\",\"label\":\"First name\"},\"phone\":{\"value\":\"86135491795\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aq7GoAe FMDb 191C7uy zvPYrLu KdBP uJ3jdaI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:46:55'),(3085,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ludaed6666@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9xqvjpo\",\"label\":\"First name\"},\"phone\":{\"value\":\"81266598364\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UWHlwO8 Ks98 LOFyR9o 5bmNxHP i6IJ cIA0911\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:49:15'),(3086,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alpinist3105vova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yd383stz\",\"label\":\"First name\"},\"phone\":{\"value\":\"85287264391\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GXPxD3j Ojqs fkx6KO2 YarPcA1 5XHz Z3wbOoT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:53:05'),(3087,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"delihbleik@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yddh5q5n\",\"label\":\"First name\"},\"phone\":{\"value\":\"82763119679\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pe7riXO FhDg 20XV8MS 546aBkz HyYG KLLNvTo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:56:13'),(3088,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anisenkoasia53a@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd2te5rc\",\"label\":\"First name\"},\"phone\":{\"value\":\"85676982155\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EkOtPTQ JMWI 74plPw8 YnypRSf ef64 a5AFPp1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 09:56:58'),(3089,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lingenfelter256@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yb35nghr\",\"label\":\"First name\"},\"phone\":{\"value\":\"83687277676\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yyNazEl YqNx QPjWSpN G9F9vzU bThj oQgTEV1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 10:00:34'),(3090,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sipsovaoksana@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yb8lbyqo\",\"label\":\"First name\"},\"phone\":{\"value\":\"81922955718\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"oSmqlOS pxcL 1OUTGTI fhnSyuz 3YAU 0wDyoed\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 10:04:44'),(3091,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rusten490@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8qqr8x7\",\"label\":\"First name\"},\"phone\":{\"value\":\"83368664239\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dvl5VZK j0nb EseCsYr PzwMbry uvX8 S2ToTfv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 10:05:21'),(3092,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gifo02@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8qyoa9o\",\"label\":\"First name\"},\"phone\":{\"value\":\"89799194652\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nif5Alr sJSE 1sa4xsb 7Wscpo8 iVO7 COoVazc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 10:07:51'),(3093,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gamidro@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yb4zuw34\",\"label\":\"First name\"},\"phone\":{\"value\":\"88331515736\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fIVkLHQ lYKC TrBGJQg nYLUwqO BkiW ILabcIw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 10:12:34'),(3094,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"milanadava6@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8y4pz86\",\"label\":\"First name\"},\"phone\":{\"value\":\"85917897887\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rjdtcSC yKxv mqWiqCN sL5RE2D 4VQF BgsKcgh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 10:14:30'),(3095,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"glebsokhnenko@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ya6aoxz2\",\"label\":\"First name\"},\"phone\":{\"value\":\"81685595845\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zdqCSax b9CE Jpy6FFa AzITern Y6II FutQvT9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 10:15:05'),(3096,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"demenik12345@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yaj5yw9q\",\"label\":\"First name\"},\"phone\":{\"value\":\"86719196244\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hKVSTO8 tNz2 YynNLkf IAkWwjO xinS 5kN7lnY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 10:20:29'),(3097,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"baharevamarina48@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd85qlp4\",\"label\":\"First name\"},\"phone\":{\"value\":\"82433486627\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"c35RLJ8 Po1M 5JpG9J2 VUFWEjK 76YG ZBfh7D9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 10:22:16'),(3098,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sazykinatatana8@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycf5jjlb\",\"label\":\"First name\"},\"phone\":{\"value\":\"83995919422\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"sRBKW4y ZR8c 11QVKd7 tFLxjPZ yDzo qxAgeBC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 10:23:37'),(3099,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sysoevao55@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9c42qxh\",\"label\":\"First name\"},\"phone\":{\"value\":\"84371454381\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HI1GLP4 C7wG EODqQAb M0adF3q 4hJm W7tmL97\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 10:28:35'),(3100,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"efedyukina.9422@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8pdrw8l\",\"label\":\"First name\"},\"phone\":{\"value\":\"82264653943\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Fm4UJiS I6yu eyFMiCu 9k0Jhjw XtNj Bj3mHPJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 10:33:00'),(3101,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"savancuk326@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9ehlr68\",\"label\":\"First name\"},\"phone\":{\"value\":\"84351884742\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3yZGSHp qVh6 vR0ZfRc Kbf3GNv T8jW M5yTtLo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 10:36:21'),(3102,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vovkasokolov69@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybn4ru8v\",\"label\":\"First name\"},\"phone\":{\"value\":\"89512713866\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2B4hYgI ZAwN J16rUHt tWtuJzn 64f5 EFRbfgK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 10:42:20'),(3103,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sergkuzn3t50v@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ych5r7bn\",\"label\":\"First name\"},\"phone\":{\"value\":\"83847488815\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JKYbmWh 5JVJ F02rW9G HxPzb6v RrPO XSBoDkU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 10:44:11'),(3104,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sasha__mayer@outlook.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybyct7vb\",\"label\":\"First name\"},\"phone\":{\"value\":\"84481588629\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QDKc71q S3ar I9Zso13 EbULZ7h OidM hmO9RTR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 10:51:44'),(3105,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aptievanadezda@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc43psge\",\"label\":\"First name\"},\"phone\":{\"value\":\"82965886668\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DWRmwaU BpMy UdMPDZo xZbG958 Oh7n 9Ij19gF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 10:51:55'),(3106,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"henrygohgoh@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y82xsnx9\",\"label\":\"First name\"},\"phone\":{\"value\":\"85134186624\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XqRcpUZ ugwz wukZfpU 7g9blPU aO3o uWndXBB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 10:59:47'),(3107,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oksana.12se12@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8hhtjko\",\"label\":\"First name\"},\"phone\":{\"value\":\"82782718611\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kgJwVnl WGt4 NWv5OAu UtemE3S HtDg unS5pQB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 11:00:39'),(3108,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aryginamaa@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybl9m5yy\",\"label\":\"First name\"},\"phone\":{\"value\":\"85599391421\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"bChNhW5 NgQl AMa22kQ F0BcIPS vWbn yICM3qe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 11:07:50'),(3109,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ghe56@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd4axgz9\",\"label\":\"First name\"},\"phone\":{\"value\":\"86373954256\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zt9QYeP YE26 TEsHGkH VP5J5iK ewoi Ea345HD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 11:10:00'),(3110,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"irina.abramova2@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd2748co\",\"label\":\"First name\"},\"phone\":{\"value\":\"84949445214\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CZpII77 8zpz jCGwiL0 qy9aH6p Abqx nktzyls\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 11:15:25'),(3111,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ivlev29@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yae5jrm5\",\"label\":\"First name\"},\"phone\":{\"value\":\"89869633241\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tQkremn nBSF P2IdWFo VgUZed8 hUgX Iyrphf9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 11:15:40'),(3112,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"motya183@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7zcspwc\",\"label\":\"First name\"},\"phone\":{\"value\":\"81269346293\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4CylbFd gDaH PQvC3Of 9BUUL5S O6cS m4QBarQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 11:19:21'),(3113,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pshzyjdf2008@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ycukupvz\",\"label\":\"First name\"},\"phone\":{\"value\":\"82799563219\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qAwJX5C dxHq 5SITzqv ANJ4vEu A8Y1 mbokATC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 11:23:26'),(3114,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"egorpilipenkov323@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yal9bl7n\",\"label\":\"First name\"},\"phone\":{\"value\":\"87233332562\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"J0TTyS7 o9aN HtPL4C8 8Q0gTGn TX3b UvZq4xm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 11:23:42'),(3115,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"liulkov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7cp6c8x\",\"label\":\"First name\"},\"phone\":{\"value\":\"85828227269\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iXwa0RM Vxm1 29i3Ipp 1F8UzWB nUzP tE1xYvB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 11:28:39'),(3116,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"games_balance@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8ox4ubp\",\"label\":\"First name\"},\"phone\":{\"value\":\"87221852527\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7MdODFD NbLv L0sENZS cgbWPjM OxfX CIltqeT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 11:31:24'),(3117,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olga.ermolick@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yb6boajl\",\"label\":\"First name\"},\"phone\":{\"value\":\"87255948995\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"v1JTgTN drGV rsYM6CA S18p4VQ b7w5 Z2f0Hz0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 11:31:24'),(3118,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"olgamartynevskaa0@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ya4qlqfw\",\"label\":\"First name\"},\"phone\":{\"value\":\"88245663654\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"H70I0Ge rBrD m3lDTAW WPtv6Iz mw5j UwrHE3T\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 11:37:58'),(3119,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"t.olhov@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yaenw3mu\",\"label\":\"First name\"},\"phone\":{\"value\":\"83426991126\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"be6Ed5s wCoc LxoC5oU Ikz29QS 5U8y Q8Cig8K\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 11:39:18'),(3120,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"abd1alsu@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya7q5e9v\",\"label\":\"First name\"},\"phone\":{\"value\":\"89371281614\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"90gRLz8 Rt2t 3EZmkIY vuHF4n6 UkdE B7AhleA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 11:39:19'),(3121,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"wimperbaum@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycmowdal\",\"label\":\"First name\"},\"phone\":{\"value\":\"85255413263\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"csOAF8h 94sA RLJuMIX Kdtw49Z YSFg JzZJ8Sb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 11:47:06'),(3122,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"chantsaa33@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydbd584g\",\"label\":\"First name\"},\"phone\":{\"value\":\"86555556442\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GyaT8kY 653l KbjHfqC TIsDTei JTaX vwrdKhq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 11:47:06'),(3123,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"foxflame@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y6wadltn\",\"label\":\"First name\"},\"phone\":{\"value\":\"83862944922\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FVXFyDW M8vU pQnrnMw PijGXWP IXiA wODLFbz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 11:47:17'),(3124,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"holmogoroff79@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y89op4bl\",\"label\":\"First name\"},\"phone\":{\"value\":\"89464233434\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OLArVix 7JdF STJClPu cdYc9fC MgF5 zTF13Uz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 11:55:05'),(3125,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"isita_1989@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya2j696z\",\"label\":\"First name\"},\"phone\":{\"value\":\"81569234917\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7E9qAAF 2rqL 60UvD7d 4b3EzDu aCSu DPD2aUz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 11:55:06'),(3126,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"glims07@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yar3ayd6\",\"label\":\"First name\"},\"phone\":{\"value\":\"87198841414\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"TOQ9ys7 KYF3 NSjJOfX c2LIWra d0aH ARJrh4S\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 11:56:08'),(3127,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"foxman130@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9t5e3gq\",\"label\":\"First name\"},\"phone\":{\"value\":\"87533565725\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ii1SmZM Im6K WzFCDUW NnTTmek BhJG wjTE6xX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 12:03:09'),(3128,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"leonoffaleksander@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yau7u9yf\",\"label\":\"First name\"},\"phone\":{\"value\":\"81255281796\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GEUssNl Mc8I jKZD3OV K8bVYmn u9HN mRpXOSU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 12:03:09'),(3129,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zaj12039rus@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yc35fphp\",\"label\":\"First name\"},\"phone\":{\"value\":\"83574217245\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vboAOyd nQ9A f6K2TTw 2fmV7ND ZNJh 7Ty1Ygf\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 12:05:17'),(3130,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vard.myan@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycftcm48\",\"label\":\"First name\"},\"phone\":{\"value\":\"85939968655\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pfsVNQG Gqiw L8cmOoS ZXgQ5xt mhwt nTfk5qy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 12:11:12'),(3131,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mihailmelnyj@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yay9wrvo\",\"label\":\"First name\"},\"phone\":{\"value\":\"89911848574\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DXHpf99 GZpH 7unRmNm yoNe6oS uL3b cXmrJzD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 12:11:12'),(3132,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alla.solnceva@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9xnv6wy\",\"label\":\"First name\"},\"phone\":{\"value\":\"86549241498\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iXmBWDj 96EW uHR5iM6 T3wITft 82I1 RvzRTBh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 12:14:36'),(3133,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"89892647473irina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb6f2zlt\",\"label\":\"First name\"},\"phone\":{\"value\":\"86916139426\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0lbgsFn rSw1 V4narmh l1Lb8X1 azUK j6oaGJW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 12:19:18'),(3134,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lesyabelka1989@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7beptsk\",\"label\":\"First name\"},\"phone\":{\"value\":\"83877317599\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6s58MRj gHyy oCgmWow KUDw2ZS nZbf VRcjgSe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 12:19:19'),(3135,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rmamaev196@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yb6ajxqu\",\"label\":\"First name\"},\"phone\":{\"value\":\"86829324525\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"xnL9pQy 0jbo Trwn9l2 lczuPHY ORF8 wutJBPZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 12:23:56'),(3136,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"adelya21@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd8xwu9a\",\"label\":\"First name\"},\"phone\":{\"value\":\"84477434671\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"l24F3iy qISO WC3skYK iHwL1kU DP9P B0Dd40M\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 12:27:16'),(3137,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sahenka1988semina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yafgqolm\",\"label\":\"First name\"},\"phone\":{\"value\":\"82471741377\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1GmzlpM AeDR 4j0zIOq M5y4Aqw YvrV CooNPE6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 12:27:18'),(3138,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ludm6868@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yd53f3m9\",\"label\":\"First name\"},\"phone\":{\"value\":\"86813247158\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ngbpc4z RyJE WJgpRac VrDxdCV HYHx os9zHMu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 12:33:19'),(3139,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"donskova1@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y93w354e\",\"label\":\"First name\"},\"phone\":{\"value\":\"88584697789\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CD9KMdE A8Hl Rguhjke GIykoY0 XlPL 638HFCN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 12:35:12'),(3140,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lagutkina.irinka@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9uupszq\",\"label\":\"First name\"},\"phone\":{\"value\":\"82895762465\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"XBftABp bUGT arepjM9 DaotK7k p7mu R6Zq7TY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 12:35:13'),(3141,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sivernadezda706@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc6x6lpw\",\"label\":\"First name\"},\"phone\":{\"value\":\"83299314967\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9pxsR4m NBkH pquEQLW K4EQRqR 8SAM fhUlp26\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 12:42:39'),(3142,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lokos-07@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yb4xkbk4\",\"label\":\"First name\"},\"phone\":{\"value\":\"84422693534\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"hzkOcmb Qmf6 DtDyUR7 M1QLUlh 5ZVt QvNE7ef\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 12:43:00'),(3143,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"inn140@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd54n4nu\",\"label\":\"First name\"},\"phone\":{\"value\":\"85313125844\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jlb2hzj 82AF KcndgWU 7qAWJCg TJW6 EiX7res\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 12:43:06'),(3144,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kradim600@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yblf7b9s\",\"label\":\"First name\"},\"phone\":{\"value\":\"88892568288\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pYaC8JJ 7MAB N3dv3oM cRU3NVG E2Jo 0UGiGus\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 12:51:05'),(3145,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"cjstevens@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycaynzkz\",\"label\":\"First name\"},\"phone\":{\"value\":\"87542357121\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KqjhW35 7IXR HxF8wlV 97x4kDJ Bmuf s4xxO42\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 12:51:56'),(3146,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bochtyr@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8by6mj3\",\"label\":\"First name\"},\"phone\":{\"value\":\"88112253546\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Lgkkxux L592 xX6sUgF LVMGQU0 HfhN DFQ2YF1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 12:58:57'),(3147,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"katsuko1995@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ya3mhahn\",\"label\":\"First name\"},\"phone\":{\"value\":\"81719144228\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"x41Maw4 z8Ac Z8qdh0t qONCW3o fZmo UuCKHUI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 13:01:04'),(3148,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"evgenia.druk.89@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yc4u3oef\",\"label\":\"First name\"},\"phone\":{\"value\":\"83198746488\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4p9amEy g61l WYroZw1 bblHXTl GBPO tUyGTNH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 13:06:56'),(3149,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aleck.bartasow@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yb6vnzlo\",\"label\":\"First name\"},\"phone\":{\"value\":\"84945385269\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ywS2nlp GtH6 RN15Ulp gOhfYai OIOA fHohAT0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 13:10:28'),(3150,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alex01fox@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yad4qjq4\",\"label\":\"First name\"},\"phone\":{\"value\":\"89127235422\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YZv98zS IV62 bTaY8QA cuciRoi NySd 73HXMrB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 13:14:45'),(3151,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"iryna.diakiv@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yd6lr5vv\",\"label\":\"First name\"},\"phone\":{\"value\":\"83388854358\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ihxWiTp wULe IgGahGQ qbPwxm5 zC6J 8j2fzK3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 13:19:46'),(3152,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sisak.tntu@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb8jc7jq\",\"label\":\"First name\"},\"phone\":{\"value\":\"84573465568\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UG9Z9Lm k1cW oYFWnGo 2vdIlaN ar64 EFuJvvX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 13:22:35'),(3153,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"asiyatgadzhieva@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7q3h3b3\",\"label\":\"First name\"},\"phone\":{\"value\":\"84173848797\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"067qgLc fUPR YutEFfR PNdlMhj XMYr j8GkRsb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 13:29:11'),(3154,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"saido01011995@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y7pw8jlm\",\"label\":\"First name\"},\"phone\":{\"value\":\"83816452184\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"F46oKcX oRpq 6SrWypt o69mR0I FeXg md2fk3S\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 13:30:28'),(3155,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ignatedik@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yay9wrvo\",\"label\":\"First name\"},\"phone\":{\"value\":\"82735278322\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ptgu6iP JFGX H0HtPkH 5m6J02K IXdY P1sFrvn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 13:38:08'),(3156,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"stanislavko@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yba9blog\",\"label\":\"First name\"},\"phone\":{\"value\":\"82362236568\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ScWHGj0 R0gF 4k6IwF7 lSvDep9 McKn lpN2eJe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 13:38:28'),(3157,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"wildcat8@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yb35alf5\",\"label\":\"First name\"},\"phone\":{\"value\":\"87374168687\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qI6bUGC mOkw UrLQqUW PBBy43G wWDs 822gHOX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 13:46:07'),(3158,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nikolashka934@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yajpy7bt\",\"label\":\"First name\"},\"phone\":{\"value\":\"83734999415\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"J59BCez 1kLY hbKK6pP PwhuYur NjHS ndfix6x\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 13:47:27'),(3159,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hunk1982@ya.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8pd463b\",\"label\":\"First name\"},\"phone\":{\"value\":\"81855735325\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6lkDa92 OyR7 rm5rz7M dpFWrP7 LEcx 1VX2MTp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 13:53:57'),(3160,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"korneybs@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yauaddvr\",\"label\":\"First name\"},\"phone\":{\"value\":\"82281537429\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zT1gxf5 lftc mT2uIxP n0Xzchb lzva IMRdbty\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 13:56:39'),(3161,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lida.kf@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ya22lxfk\",\"label\":\"First name\"},\"phone\":{\"value\":\"82136757872\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0V7jnpx vg90 eVsPI71 XXYMxyN x0Mw eMcogci\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 14:01:52'),(3162,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mariemeleva@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb6ajxqu\",\"label\":\"First name\"},\"phone\":{\"value\":\"87389341338\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tybNhIK sSWD n7UrxBA lIh2cfY 5cWk 0pRZ7fL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 14:05:57'),(3163,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sergejsubbotin166@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7d3s2d4\",\"label\":\"First name\"},\"phone\":{\"value\":\"84786272889\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VhoJ69u JXvs jqYH7iB zo2Sb4O N2Pw zfVl36w\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 14:09:44'),(3164,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"moshkoav@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y7fz4to5\",\"label\":\"First name\"},\"phone\":{\"value\":\"85189494994\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AFTKwh2 Ywxn PBrArhl uQapjQa LiJK 1on7dVt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 14:15:13'),(3165,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"katerina.shpet@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc4oqm59\",\"label\":\"First name\"},\"phone\":{\"value\":\"84289849491\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VFDbNvz ZcIp 0VwhZvV 0LeXHJD 76CS YpyHMmB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 14:17:33'),(3166,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"parvizkamolov16@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yc7mxnas\",\"label\":\"First name\"},\"phone\":{\"value\":\"81796778157\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DbOin6x OPLI x40IZem JhVXbm5 mWbk jMoExKl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 14:24:28'),(3167,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kronah@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7pw8jlm\",\"label\":\"First name\"},\"phone\":{\"value\":\"89957314265\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7vRtxeL n8Ac xABkMts sXQ9ddM zjjb hCpdbBB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 14:25:15'),(3168,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aleborovik@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7g23m5f\",\"label\":\"First name\"},\"phone\":{\"value\":\"81716196733\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ec5x7dv n4v8 JBfrfsV aVptyKy 7ZMH XopxGgN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 14:33:09'),(3169,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rom.kalyuga@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycsnwopm\",\"label\":\"First name\"},\"phone\":{\"value\":\"81715275187\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LJ5PDmy WlFO cBKNZ4e PkFqXFt eIvz Li87fZR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 14:33:39'),(3170,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fatalea3709@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9obvojg\",\"label\":\"First name\"},\"phone\":{\"value\":\"88996299846\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RtjU5Sn gB5O 0uE7mxP isMXp2i gwhO pxwVifb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 14:41:51'),(3171,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nreutin@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7zrxlys\",\"label\":\"First name\"},\"phone\":{\"value\":\"84487614786\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1MgvJ2s Dk65 Ao5FAFl btn2QaH 6yni AVedWhq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 14:43:11'),(3172,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jafarmusaev4@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ych2hkr7\",\"label\":\"First name\"},\"phone\":{\"value\":\"87623943768\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cFIy3S9 eAQ1 ADPSb3v Aj9MYF3 zAOf IxvbyBO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 14:50:34'),(3173,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"galimnurumov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycm9snua\",\"label\":\"First name\"},\"phone\":{\"value\":\"89979849451\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nWFUcck LCvZ 3vfUi24 3be4NGm pcEs 0Pn66Ol\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 14:51:55'),(3174,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nora.fler2018@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y78qgcp8\",\"label\":\"First name\"},\"phone\":{\"value\":\"82543858319\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QSlcMeC JouJ Pzr9uzv 7Ykh8s8 hHXQ 5atRxen\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 14:58:35'),(3175,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aanrico@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7o5vx8r\",\"label\":\"First name\"},\"phone\":{\"value\":\"86645364254\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1ZvL9tX 715q CJlinPe Ur47Ron CNGZ znbObYo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 15:01:15'),(3176,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"beartobear97@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yctjte2t\",\"label\":\"First name\"},\"phone\":{\"value\":\"81971416871\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cAXXnvD 6pWT YOnTVyw fGlyHbo Yi9O 9JVyFCo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 15:06:35'),(3177,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"popovoleh82ru@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yajpy7bt\",\"label\":\"First name\"},\"phone\":{\"value\":\"88325645355\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KM4XnxV USrt Xph8xZM CVetrGu 4onm rNJnkld\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 15:10:56'),(3178,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bmk-alena@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ydxygr49\",\"label\":\"First name\"},\"phone\":{\"value\":\"87738776567\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YygPYmJ xiwi RGQHMTa vTL98yF GCTx 75u3t7j\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 15:14:34'),(3179,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lena-lashina@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yaqppl3o\",\"label\":\"First name\"},\"phone\":{\"value\":\"88151947269\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CZ9Uf92 jj5J 3pbZZab DESW1bY rtcp miIaprZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 15:20:12'),(3180,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"evge7777@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9jjjyx3\",\"label\":\"First name\"},\"phone\":{\"value\":\"89571895211\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"g5wkoI0 JLlY Q2oNuv2 GMNvYzo rCWe k8kyKJe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 15:22:23'),(3181,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"obshaga63@ya.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybpzb75p\",\"label\":\"First name\"},\"phone\":{\"value\":\"87872558944\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CWh6ASy 3BmW c4bNlJW HIY8n2V suwM LHpyfwE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 15:29:25'),(3182,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vshuliev@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydcglm6c\",\"label\":\"First name\"},\"phone\":{\"value\":\"85397832327\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"eJO5Srb sAES FARsf8N gcr5sZQ WZAp hpIPRt2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 15:30:04'),(3183,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"galinasmirn@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ya62czz4\",\"label\":\"First name\"},\"phone\":{\"value\":\"89486165396\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LITayWx 7qWA 1PoaaES lwiwzsw 4gbY lmJPxB1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 15:37:52'),(3184,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"xperiasp320@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya2whmlu\",\"label\":\"First name\"},\"phone\":{\"value\":\"88763238941\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mPb8gqJ V8mI bZyksRu YdAztf4 fyK0 ajKK249\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 15:38:26'),(3185,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"surkova.natalia@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7p26hol\",\"label\":\"First name\"},\"phone\":{\"value\":\"83118224582\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VDK69Uy HQpG bcYpbvJ 510zDUf Yhb4 GabIrKR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 15:45:38'),(3186,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sholpan198808@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8ybrw9e\",\"label\":\"First name\"},\"phone\":{\"value\":\"88452567732\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"L6mDKx3 E6lx XJCm4D5 fskg1lk p162 BFYF5Ql\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 15:47:32'),(3187,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"razumnikh.juli@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yb4j632p\",\"label\":\"First name\"},\"phone\":{\"value\":\"84287313755\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ODDzsUp ZNjI gUI6rfF kFOpx4A GFKz nvH4Ets\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 15:53:36'),(3188,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"eohotnik11@icloud.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yakzzzoq\",\"label\":\"First name\"},\"phone\":{\"value\":\"87115485477\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"u4pZaIl Qkru SSL7Ck6 kgSFrJI Bekb SVctxMV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 15:56:41'),(3189,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vibornovana@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y7o489vj\",\"label\":\"First name\"},\"phone\":{\"value\":\"86867889416\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jBPZwAn y6lL cgrdskX KHnethI Sa5A hWvUIut\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 16:01:28'),(3190,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"autval@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8m8gvf2\",\"label\":\"First name\"},\"phone\":{\"value\":\"88821295818\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9ek60Gr 6JIu 1DQU3Zl NSx4A2t 3Ikr D5RG0vg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 16:05:58'),(3191,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"burningbush804@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8pd463b\",\"label\":\"First name\"},\"phone\":{\"value\":\"88374798528\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pYn1L3N CAQk 2xbGVX1 FAqvZV8 y8Tn 5WhACv6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 16:09:28'),(3192,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"borchaninov.eu@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8usyv4x\",\"label\":\"First name\"},\"phone\":{\"value\":\"85783265571\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SBqoZ94 aMrq AhR2LXb kzmnTJf Qxts uzfAWCR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 16:17:29'),(3193,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"papados206@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycluztyn\",\"label\":\"First name\"},\"phone\":{\"value\":\"83578877642\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BhAg00o scP6 QNwn9U0 gF0xKS0 RrRK HxfpP0C\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 16:25:21'),(3194,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"twinyulia@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycmmasmz\",\"label\":\"First name\"},\"phone\":{\"value\":\"86962872557\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cv676n7 FkLr hEhcNul FFMR0z7 Hq08 wv7I6lP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 16:33:13'),(3195,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sochneva.natali@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yb2tfsls\",\"label\":\"First name\"},\"phone\":{\"value\":\"81676751739\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Cs6fZWd NteD PChuOMa AGJ5hUh sA56 13yyHoL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 16:41:11'),(3196,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"in.konchits@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8qa68xc\",\"label\":\"First name\"},\"phone\":{\"value\":\"82137348753\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mvHkgeJ 6vDa PYTn9tb wxbqDzg Y4fV Rc5E9Ox\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 16:49:04'),(3197,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"stocktrader@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycxbqeta\",\"label\":\"First name\"},\"phone\":{\"value\":\"83669791612\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"tZvFvJc 1C5I cfhPmCK 5rfetv5 8FvM lLyASOq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 16:57:02'),(3198,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lobacheva1981@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ychwjmo8\",\"label\":\"First name\"},\"phone\":{\"value\":\"84946983417\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"or2xG8u gSV9 W9BgxCo UgDGPS5 DtRp AATtl8s\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 17:04:49'),(3199,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"fyutk6661@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ya6um8n3\",\"label\":\"First name\"},\"phone\":{\"value\":\"89164473531\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"kVyqukz 77Xs 4w5jO75 S14KhCS FS0s qTqFEQw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 17:12:39'),(3200,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vlasenko161197@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yabe76g6\",\"label\":\"First name\"},\"phone\":{\"value\":\"82621666986\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YmNccyx HHN0 9iC1EY6 nP36Zze Gw8f h3owTsC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 17:20:34'),(3201,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"borius.sofia@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybkfgooo\",\"label\":\"First name\"},\"phone\":{\"value\":\"85498868759\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5UossSH G2UO rnTEzPb u2DypKU eJ40 LMibNhb\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 17:28:28'),(3202,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"minkinamasha@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ya4pvxam\",\"label\":\"First name\"},\"phone\":{\"value\":\"86251189526\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"73aVA8e Ymjx 6TL41VZ QzUjArp mlGv 5R3GqTP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 17:36:23'),(3203,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sokovata@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yd43ttrt\",\"label\":\"First name\"},\"phone\":{\"value\":\"82884672116\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RJrehhX 5kh7 zjBjC4o K2pf0RJ LYT3 MuDWRko\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 17:44:12'),(3204,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bashsoldat@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8xpzelg\",\"label\":\"First name\"},\"phone\":{\"value\":\"87652169928\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"usAiGmY CSSr u3ZivYt AtHCXOQ NJjx cx01Whj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 17:52:07'),(3205,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"karina.pyatkova@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8erowgd\",\"label\":\"First name\"},\"phone\":{\"value\":\"87641197733\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lMvBA3o MLJ9 g9f5QXz QEGFUog lgLq JyXeo6U\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 17:59:56'),(3206,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"barsa0116@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yayrmdzb\",\"label\":\"First name\"},\"phone\":{\"value\":\"89741983514\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VbiJk2K mWoG gXaocL7 vRxpZs9 LoV0 GIK0rot\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 18:07:56'),(3207,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rasulovrustam303@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8nyagmm\",\"label\":\"First name\"},\"phone\":{\"value\":\"86123923371\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"npzAIJc fdN1 mpwuYgU suqsNV7 zPni 2dlHWXc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 18:15:50'),(3208,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"romarioagro9@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yady8t9x\",\"label\":\"First name\"},\"phone\":{\"value\":\"81769255262\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"t1MFkUl PrEe 7W2F5Ib igYj7tz kJjZ OipmQb6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 18:23:43'),(3209,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gls@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y8rsxwjk\",\"label\":\"First name\"},\"phone\":{\"value\":\"82412189117\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2DPvZWp ZITj 3yDFFWx ZzkV6jk F6yM 4rgh8YD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 18:31:48'),(3210,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"letscatchthemilkyway@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yddw9fjy\",\"label\":\"First name\"},\"phone\":{\"value\":\"89354233943\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Rnd5gbK hI4s pRxEeTS YbKUOs1 7ouT g54WKSw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 18:39:32'),(3211,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"l.lavruhina2014@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybbueu42\",\"label\":\"First name\"},\"phone\":{\"value\":\"86119395513\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IZRRcNM Q95a L1BT2eg lLpkCKn 3kNg sD0TFYB\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 18:47:41'),(3212,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bychkova777@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y98stp3w\",\"label\":\"First name\"},\"phone\":{\"value\":\"89366254312\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zS88mQX pZrS N1kIE1n PQ1b6hU BiMq LVeT2Kl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 18:55:37'),(3213,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kachtasveta@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8fwplan\",\"label\":\"First name\"},\"phone\":{\"value\":\"81349429169\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Plc6yee oD7I ZDHwJml 445KEW9 4GEo PVbpyln\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 19:03:31'),(3214,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"palato4nicha@rambler.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y83pjd5t\",\"label\":\"First name\"},\"phone\":{\"value\":\"89661398167\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2VJI8BQ Zm4R DpeEhG8 fbPi0G7 xNV4 b2C5Dk3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 19:11:26'),(3215,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ruslan-velkov@yandex.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9ob2znf\",\"label\":\"First name\"},\"phone\":{\"value\":\"81792251124\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RqqiYIy 1n0e YuQtx7o vcXEfiU sf3B mEVTr2n\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 19:19:16'),(3216,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"webbalessandro2000@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041d\\u0430\\u0448\\u0430 \\u043f\\u043b\\u0430\\u0442\\u0444\\u043e\\u0440\\u043c\\u0430 \\u0432 \\u043e\\u043f\\u0430\\u0441\\u043d\\u043e\\u0441\\u0442\\u0438! \\u0413\\u043e\\u0440\\u0430\\u0434\\u043c\\u0438\\u043d\\u0438\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u044f \\u043f\\u044b\\u0442\\u0430\\u0435\\u0442\\u0441\\u044f \\u0437\\u0430\\u043a\\u0440\\u044b\\u0442\\u044c \\u043d\\u0430\\u0448\\u0443 \\u0438\\u043d\\u0432\\u0435\\u0441\\u0442\\u0438\\u0446\\u0438\\u043e\\u043d\\u043d\\u0443\\u044e \\u043f\\u043b\\u0430\\u0442\\u0444\\u043e\\u0440\\u043c\\u0443, \\u043f\\u043e\\u0441\\u043a\\u043e\\u043b\\u044c\\u043a\\u0443 \\u0441\\u0447\\u0438\\u0442\\u0430\\u044e\\u0442, \\u0447\\u0442\\u043e \\\"\\u0442\\u0430\\u043a \\u043b\\u0435\\u0433\\u043a\\u043e \\u0438 \\u0431\\u044b\\u0441\\u0442\\u0440\\u043e \\u0443\\u043b\\u0443\\u0447\\u0448\\u0438\\u0442\\u044c \\u043c\\u0430\\u0442\\u0435\\u0440\\u0438\\u0430\\u043b\\u044c\\u043d\\u043e\\u0435 \\u043f\\u043e\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0435 \\u043d\\u0435\\u0432\\u043e\\u0437\\u043c\\u043e\\u0436\\u043d\\u043e\\\". \\u041d\\u043e \\u0442\\u044b\\u0441\\u044f\\u0447\\u0438 \\u043b\\u044e\\u0434\\u0435\\u0439 \\u0443\\u0436\\u0435 \\u0443\\u0431\\u0435\\u0434\\u0438\\u043b\\u0438\\u0441\\u044c \\u0432 \\u044d\\u0444\\u0444\\u0435\\u043a\\u0442\\u0438\\u0432\\u043d\\u043e\\u0441\\u0442\\u0438 \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u043f\\u043b\\u0430\\u0442\\u0444\\u043e\\u0440\\u043c\\u044b, \\u0432\\u0435\\u0434\\u044c \\u0437\\u0430\\u043a\\u0438\\u043d\\u0443\\u0432 \\u043c\\u0438\\u043d\\u0438\\u043c\\u0430\\u043b\\u044c\\u043d\\u044b\\u0439 \\u043f\\u043e\\u0440\\u043e\\u0433 \\u0432 19 000 \\u0440\\u0443\\u0431\\u043b\\u0435\\u0439, \\u043e\\u043d\\u0438 \\u043f\\u043e\\u043b\\u0443\\u0447\\u0438\\u043b\\u0438 \\u0432 \\u043d\\u0435\\u0441\\u043a\\u043e\\u043b\\u044c\\u043a\\u043e \\u0440\\u0430\\u0437 \\u0431\\u043e\\u043b\\u044c\\u0448\\u0435 \\u0437\\u0430 \\u043d\\u0435\\u0434\\u0435\\u043b\\u044e! \\u0420\\u0435\\u0433\\u0438\\u0441\\u0442\\u0440\\u0438\\u0440\\u0443\\u0439\\u0441\\u044f \\u0432 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u0435 \\u0438 \\u043f\\u043e\\u043f\\u043e\\u043b\\u043d\\u044f\\u0439 \\u0431\\u0430\\u043b\\u0430\\u043d\\u0441 \\u043e\\u0442 19000\\u0440 \\u0438 \\u0443\\u0431\\u0435\\u0434\\u0438\\u0441\\u044c \\u0432 \\u044d\\u0442\\u043e\\u043c \\u043f\\u0435\\u0440\\u0435\\u0439\\u0434\\u044f \\u043f\\u043e \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/n733qMJl SVWVE80545THRT\",\"label\":\"First name\"},\"phone\":{\"value\":\"81896587853\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vKXfkGI YHyZ rXGYI21 l9MS5TV 7z1P 94Uk1dh\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 20:10:33'),(3217,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"webbalessandro2000@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041d\\u0430\\u0448\\u0430 \\u043f\\u043b\\u0430\\u0442\\u0444\\u043e\\u0440\\u043c\\u0430 \\u0432 \\u043e\\u043f\\u0430\\u0441\\u043d\\u043e\\u0441\\u0442\\u0438! \\u0413\\u043e\\u0440\\u0430\\u0434\\u043c\\u0438\\u043d\\u0438\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u044f \\u043f\\u044b\\u0442\\u0430\\u0435\\u0442\\u0441\\u044f \\u0437\\u0430\\u043a\\u0440\\u044b\\u0442\\u044c \\u043d\\u0430\\u0448\\u0443 \\u0438\\u043d\\u0432\\u0435\\u0441\\u0442\\u0438\\u0446\\u0438\\u043e\\u043d\\u043d\\u0443\\u044e \\u043f\\u043b\\u0430\\u0442\\u0444\\u043e\\u0440\\u043c\\u0443, \\u043f\\u043e\\u0441\\u043a\\u043e\\u043b\\u044c\\u043a\\u0443 \\u0441\\u0447\\u0438\\u0442\\u0430\\u044e\\u0442, \\u0447\\u0442\\u043e \\\"\\u0442\\u0430\\u043a \\u043b\\u0435\\u0433\\u043a\\u043e \\u0438 \\u0431\\u044b\\u0441\\u0442\\u0440\\u043e \\u0443\\u043b\\u0443\\u0447\\u0448\\u0438\\u0442\\u044c \\u043c\\u0430\\u0442\\u0435\\u0440\\u0438\\u0430\\u043b\\u044c\\u043d\\u043e\\u0435 \\u043f\\u043e\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0435 \\u043d\\u0435\\u0432\\u043e\\u0437\\u043c\\u043e\\u0436\\u043d\\u043e\\\". \\u041d\\u043e \\u0442\\u044b\\u0441\\u044f\\u0447\\u0438 \\u043b\\u044e\\u0434\\u0435\\u0439 \\u0443\\u0436\\u0435 \\u0443\\u0431\\u0435\\u0434\\u0438\\u043b\\u0438\\u0441\\u044c \\u0432 \\u044d\\u0444\\u0444\\u0435\\u043a\\u0442\\u0438\\u0432\\u043d\\u043e\\u0441\\u0442\\u0438 \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u043f\\u043b\\u0430\\u0442\\u0444\\u043e\\u0440\\u043c\\u044b, \\u0432\\u0435\\u0434\\u044c \\u0437\\u0430\\u043a\\u0438\\u043d\\u0443\\u0432 \\u043c\\u0438\\u043d\\u0438\\u043c\\u0430\\u043b\\u044c\\u043d\\u044b\\u0439 \\u043f\\u043e\\u0440\\u043e\\u0433 \\u0432 19 000 \\u0440\\u0443\\u0431\\u043b\\u0435\\u0439, \\u043e\\u043d\\u0438 \\u043f\\u043e\\u043b\\u0443\\u0447\\u0438\\u043b\\u0438 \\u0432 \\u043d\\u0435\\u0441\\u043a\\u043e\\u043b\\u044c\\u043a\\u043e \\u0440\\u0430\\u0437 \\u0431\\u043e\\u043b\\u044c\\u0448\\u0435 \\u0437\\u0430 \\u043d\\u0435\\u0434\\u0435\\u043b\\u044e! \\u0420\\u0435\\u0433\\u0438\\u0441\\u0442\\u0440\\u0438\\u0440\\u0443\\u0439\\u0441\\u044f \\u0432 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u0435 \\u0438 \\u043f\\u043e\\u043f\\u043e\\u043b\\u043d\\u044f\\u0439 \\u0431\\u0430\\u043b\\u0430\\u043d\\u0441 \\u043e\\u0442 19000\\u0440 \\u0438 \\u0443\\u0431\\u0435\\u0434\\u0438\\u0441\\u044c \\u0432 \\u044d\\u0442\\u043e\\u043c \\u043f\\u0435\\u0440\\u0435\\u0439\\u0434\\u044f \\u043f\\u043e \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/GAPo4JWI TUJE80545JUYEGRT\",\"label\":\"First name\"},\"phone\":{\"value\":\"86353318596\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zV5nHsb WoT7 R0zyVae qJCtR0w aNJG c9Rd4dq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-25 22:34:50'),(3218,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"webbalessandro2000@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041d\\u0430\\u0448\\u0430 \\u043f\\u043b\\u0430\\u0442\\u0444\\u043e\\u0440\\u043c\\u0430 \\u0432 \\u043e\\u043f\\u0430\\u0441\\u043d\\u043e\\u0441\\u0442\\u0438! \\u0413\\u043e\\u0440\\u0430\\u0434\\u043c\\u0438\\u043d\\u0438\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u044f \\u043f\\u044b\\u0442\\u0430\\u0435\\u0442\\u0441\\u044f \\u0437\\u0430\\u043a\\u0440\\u044b\\u0442\\u044c \\u043d\\u0430\\u0448\\u0443 \\u0438\\u043d\\u0432\\u0435\\u0441\\u0442\\u0438\\u0446\\u0438\\u043e\\u043d\\u043d\\u0443\\u044e \\u043f\\u043b\\u0430\\u0442\\u0444\\u043e\\u0440\\u043c\\u0443, \\u043f\\u043e\\u0441\\u043a\\u043e\\u043b\\u044c\\u043a\\u0443 \\u0441\\u0447\\u0438\\u0442\\u0430\\u044e\\u0442, \\u0447\\u0442\\u043e \\\"\\u0442\\u0430\\u043a \\u043b\\u0435\\u0433\\u043a\\u043e \\u0438 \\u0431\\u044b\\u0441\\u0442\\u0440\\u043e \\u0443\\u043b\\u0443\\u0447\\u0448\\u0438\\u0442\\u044c \\u043c\\u0430\\u0442\\u0435\\u0440\\u0438\\u0430\\u043b\\u044c\\u043d\\u043e\\u0435 \\u043f\\u043e\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0435 \\u043d\\u0435\\u0432\\u043e\\u0437\\u043c\\u043e\\u0436\\u043d\\u043e\\\". \\u041d\\u043e \\u0442\\u044b\\u0441\\u044f\\u0447\\u0438 \\u043b\\u044e\\u0434\\u0435\\u0439 \\u0443\\u0436\\u0435 \\u0443\\u0431\\u0435\\u0434\\u0438\\u043b\\u0438\\u0441\\u044c \\u0432 \\u044d\\u0444\\u0444\\u0435\\u043a\\u0442\\u0438\\u0432\\u043d\\u043e\\u0441\\u0442\\u0438 \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u043f\\u043b\\u0430\\u0442\\u0444\\u043e\\u0440\\u043c\\u044b, \\u0432\\u0435\\u0434\\u044c \\u0437\\u0430\\u043a\\u0438\\u043d\\u0443\\u0432 \\u043c\\u0438\\u043d\\u0438\\u043c\\u0430\\u043b\\u044c\\u043d\\u044b\\u0439 \\u043f\\u043e\\u0440\\u043e\\u0433 \\u0432 19 000 \\u0440\\u0443\\u0431\\u043b\\u0435\\u0439, \\u043e\\u043d\\u0438 \\u043f\\u043e\\u043b\\u0443\\u0447\\u0438\\u043b\\u0438 \\u0432 \\u043d\\u0435\\u0441\\u043a\\u043e\\u043b\\u044c\\u043a\\u043e \\u0440\\u0430\\u0437 \\u0431\\u043e\\u043b\\u044c\\u0448\\u0435 \\u0437\\u0430 \\u043d\\u0435\\u0434\\u0435\\u043b\\u044e! \\u0420\\u0435\\u0433\\u0438\\u0441\\u0442\\u0440\\u0438\\u0440\\u0443\\u0439\\u0441\\u044f \\u0432 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u0435 \\u0438 \\u043f\\u043e\\u043f\\u043e\\u043b\\u043d\\u044f\\u0439 \\u0431\\u0430\\u043b\\u0430\\u043d\\u0441 \\u043e\\u0442 19000\\u0440 \\u0438 \\u0443\\u0431\\u0435\\u0434\\u0438\\u0441\\u044c \\u0432 \\u044d\\u0442\\u043e\\u043c \\u043f\\u0435\\u0440\\u0435\\u0439\\u0434\\u044f \\u043f\\u043e \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/lCrHf86Z THRT80545MTGJNF\",\"label\":\"First name\"},\"phone\":{\"value\":\"83362347675\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GhaCH6u QdXm AAZocgJ Tbz9mNO HOM6 7WQEXg9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 07:47:50'),(3219,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vjreji@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yawo96vm\",\"label\":\"First name\"},\"phone\":{\"value\":\"88793857569\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"EYl8nos Cg2D uDMA3lB mSutUW1 YTna 97HaQzQ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 16:28:48'),(3220,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zoya.melesh57@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycyx533e\",\"label\":\"First name\"},\"phone\":{\"value\":\"87876492715\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Stpkofb ezU8 ryOcAvD l2bGUXT 4kTZ ZCMZFTe\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 16:39:37'),(3221,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kuralai.20.05.80@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8pqh7d6\",\"label\":\"First name\"},\"phone\":{\"value\":\"87653861519\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UQmZ2qS zo4a PBF7S62 ISKtUnl aJVn Wox5ho2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 16:47:36'),(3222,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mishra.anand306@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9mclujl\",\"label\":\"First name\"},\"phone\":{\"value\":\"81992486689\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3jsZfOs UPlU l6Co2fB ZmD2z6F DtDe VqLITnl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 16:55:30'),(3223,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ericsson7q7@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y9zb5xp2\",\"label\":\"First name\"},\"phone\":{\"value\":\"88793825963\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vBKeopv fpzP tmVl7Hd l2y54Tj lGOU zfO5wWR\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 17:03:27'),(3224,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"posternakv@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8fsdrqh\",\"label\":\"First name\"},\"phone\":{\"value\":\"81518536856\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KD7uxqD faBk VGwDrbk u5Q2kVV qKq9 OTWiWXM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 17:08:22'),(3225,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"1973svd@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ycaecqp3\",\"label\":\"First name\"},\"phone\":{\"value\":\"84847527998\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yBFEJyZ 6Iop F2Ci6F1 Sc23jW9 Kh4v 7hxu5GD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 17:11:27'),(3226,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nainakhatod@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yajldybr\",\"label\":\"First name\"},\"phone\":{\"value\":\"82194819112\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"63RVNaY I5Is 5TD2c3S fdjyT87 uPJi e5NlTy1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 17:16:07'),(3227,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"surkovalexej@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y98noyv6\",\"label\":\"First name\"},\"phone\":{\"value\":\"82642342897\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9owf7ur Bkk9 El4sdDk m75Hqba MZHz KXTsGiz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 17:20:09'),(3228,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gunitalvarez@yahoo.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yapg4t4e\",\"label\":\"First name\"},\"phone\":{\"value\":\"86885391359\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PP3Faqk 40nI 1TqjeeU RHuMmUf LCvJ QqMzgdg\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 17:23:55'),(3229,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"seigerin@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybndxhoe\",\"label\":\"First name\"},\"phone\":{\"value\":\"85552196811\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"RfyTx28 ZAIn BvwGKv0 Gp7T7Nh sx3n WNc7rKZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 17:28:07'),(3230,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tairovtt@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8be6gzt\",\"label\":\"First name\"},\"phone\":{\"value\":\"85373413152\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"C133DvW pQkG viviXZR BsJkOcX lbWA p1Ektmz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 17:31:37'),(3231,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tamanho1905@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb4jaf65\",\"label\":\"First name\"},\"phone\":{\"value\":\"88641736374\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yYMeg2a 6b3n ei0qkLC MQ8eRd8 14LG h4GUG8v\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 17:35:58'),(3232,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"minuzod@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9cror6t\",\"label\":\"First name\"},\"phone\":{\"value\":\"87997917554\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nVQeefJ jKbZ Ne5fklQ sdsVnlK QbzQ TtpXiIk\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 17:37:45'),(3233,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elenalaiko13@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydbmsfjq\",\"label\":\"First name\"},\"phone\":{\"value\":\"83654467698\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AKnWqYV PqDW kRJ8ENv S9JONNj OpXU 9Gj7GTn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 17:39:18'),(3234,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rkolumbet@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yb4jaf65\",\"label\":\"First name\"},\"phone\":{\"value\":\"86434823659\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LBZl9Be woj0 fM2mbBb wHSfiqu Eth6 MHLs571\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 17:43:43'),(3235,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"musolitinvova@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yd3cqg8o\",\"label\":\"First name\"},\"phone\":{\"value\":\"81923577562\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0i3ugYW uizT vRwAlUz hdI9eCA CvVr yBq9y6V\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 17:44:26'),(3236,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"oppa78@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y73jvgwq\",\"label\":\"First name\"},\"phone\":{\"value\":\"87173875118\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aZ8jKJ6 7KJK 1n0vHF5 NeZnRAm 8evy 7k8GSsr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 17:44:28'),(3237,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"azizbeknysanali@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ya5ghvsr\",\"label\":\"First name\"},\"phone\":{\"value\":\"84481376999\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"QxwZPQJ VE9D RZ3V7Nc 8drudke kGvM BPYFqCj\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 17:46:57'),(3238,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"af4539246@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybyhung4\",\"label\":\"First name\"},\"phone\":{\"value\":\"86166272833\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZRawaRl cD62 tG7FnKD GRqQzKz CwSh rWx6qWn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 17:51:21'),(3239,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kumar111sanjay@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yb7qdroq\",\"label\":\"First name\"},\"phone\":{\"value\":\"86638222554\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CVTAQJC f2vZ fCc8vDY TM6b8nj Mp5h n12MmCH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 17:51:27'),(3240,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alex29490@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybesfu22\",\"label\":\"First name\"},\"phone\":{\"value\":\"88644698869\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"FnZ8QAL 5DlF sY3D17M gUQ7ha2 CsG9 219XouN\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 17:53:20'),(3241,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tviggg@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y8q7jq88\",\"label\":\"First name\"},\"phone\":{\"value\":\"81224198873\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HQgkObY Yf9d AzmO7Lo I6PJYsq cP8s 5Rq8oej\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 17:54:37'),(3242,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kononenkoanechka@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8vtw5p4\",\"label\":\"First name\"},\"phone\":{\"value\":\"82236634677\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nnMWIZf Dluy BpvT6vl 7ujdL6R 81cH YemEhC1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 17:58:13'),(3243,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bowidhee@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8fgwqjz\",\"label\":\"First name\"},\"phone\":{\"value\":\"84611716326\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qwpfE2b MSeO cVzfKvH A9jS79u cbsx nxrz0W0\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 17:58:57'),(3244,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ahdriu778@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9urmx95\",\"label\":\"First name\"},\"phone\":{\"value\":\"84873648379\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HChLHlc G0Qi SnkTygG fli72pa rsaV e5ZCMDW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:02:10'),(3245,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"cooper.natasha1983@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yd94632y\",\"label\":\"First name\"},\"phone\":{\"value\":\"82563734261\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UDqhBKi 1EEw TTMUfKO qBdIJ76 jvqg r1AqC6x\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"190.2.146.232\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:02:23'),(3246,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"khanmoiz97@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yd7m5bln\",\"label\":\"First name\"},\"phone\":{\"value\":\"86256622677\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"aHsS4wD ilb6 Ravw7X4 hlca8tN pnS2 5mi7ENn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:05:13'),(3247,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pranab.smile2@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9m2uvua\",\"label\":\"First name\"},\"phone\":{\"value\":\"85882963171\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"WBrHfMG SiTQ mZNwNyy qpdDZlu J4Op 8zhnOxT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:07:56'),(3248,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bboonniioo@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9tfxmk7\",\"label\":\"First name\"},\"phone\":{\"value\":\"86151496895\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"VHKcSum fvK2 1aAQ5Mx GR8CtIV EIe4 TClSuTM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:10:11'),(3249,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kam06.cm@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8wld7ab\",\"label\":\"First name\"},\"phone\":{\"value\":\"83782894378\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"b4EKxS8 8Rh2 EB4yKOq m9IUZo1 SPvs Pjj2lhX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:12:12'),(3250,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"merman985@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yceoogcw\",\"label\":\"First name\"},\"phone\":{\"value\":\"89464947235\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DcVpQhO THgV ALtoI7e 6Ltcx3S s4p1 LYuDlNn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:17:07'),(3251,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"l.anoshin@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9m5698b\",\"label\":\"First name\"},\"phone\":{\"value\":\"85858757477\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"PyPLPHz UATs 3SbCTsx BXWpHsD F3mj 21nt9IF\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:17:47'),(3252,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alikgargon2004@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ycvzhpzd\",\"label\":\"First name\"},\"phone\":{\"value\":\"88524796715\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vikv8J6 PaRL AmO2Xs3 2R8wFXU 9toH 0Jc7T86\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:19:03'),(3253,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"turakulovmashhur@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaj357vr\",\"label\":\"First name\"},\"phone\":{\"value\":\"84444429687\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"otqWRHF bBSj B1Id31s abfDgb6 6PpC zWXhoRq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:25:29'),(3254,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hydronasbg@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8hjg2ua\",\"label\":\"First name\"},\"phone\":{\"value\":\"85987743726\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dF4v441 hKi2 iDcxQMg PMeU7zL bwOG 1Ik5mQu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:25:52'),(3255,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dmitriykiryanoff@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y85ncjkf\",\"label\":\"First name\"},\"phone\":{\"value\":\"87656983773\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"t11rZwp OWA1 Q10XGPf tb93QxN CBwf LOgUHGY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:26:15'),(3256,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"valyachigrik96@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybt79p7e\",\"label\":\"First name\"},\"phone\":{\"value\":\"81479241254\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uuSSkQQ RAgF rFX5kEK 6L6QewQ ikzB UpVBdkO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:32:42'),(3257,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lewa.100.420@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y9sub4xk\",\"label\":\"First name\"},\"phone\":{\"value\":\"81766585668\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zdOq85Q IWd7 ZuWKSSw pTfXVex DQGv ZrmR8qt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:33:06'),(3258,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"danno721@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y7nf9727\",\"label\":\"First name\"},\"phone\":{\"value\":\"89717834534\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uwDdXeA aphg 07zxZir oBM9elx lq6e o7L3ltp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:35:25'),(3259,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sizkoelena@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/y9eh43z5\",\"label\":\"First name\"},\"phone\":{\"value\":\"85588245883\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DEqkEd7 NC8e pwnLtsS Xzn7a8a wdYI vRiJKb6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:39:31'),(3260,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"victor.tomas.moy@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybjzgpnm\",\"label\":\"First name\"},\"phone\":{\"value\":\"86331757163\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fNN1oGE WfI9 3LAf7pC yrDZy7m oplR z9nimfV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:40:42'),(3261,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"a9773307480@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybuqynhq\",\"label\":\"First name\"},\"phone\":{\"value\":\"88116852464\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nYJbg4E OfUX zP5pixK KC42vJM n50Z aQ4WlYm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:44:39'),(3262,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nsafonova262@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybn2qvpg\",\"label\":\"First name\"},\"phone\":{\"value\":\"82131493982\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gbmuf4M pixE qjJvnZ0 NQoSU1S btoQ u4XZoqp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:46:26'),(3263,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jf.romero.v10@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7sy2f6b\",\"label\":\"First name\"},\"phone\":{\"value\":\"86612514563\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iD24xqT kzVR XhoEZ4c 6KsQptR dSjv Xvd0eOy\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:48:26'),(3264,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"seidanaidana171@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7gwnlpa\",\"label\":\"First name\"},\"phone\":{\"value\":\"84884222273\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"uiW1VCH x0Xw vrlL7sA 8ayt0DT sG8c YBitpQu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:53:11'),(3265,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"nastiasoloveva9@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ya22pcjx\",\"label\":\"First name\"},\"phone\":{\"value\":\"85184451825\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2BcUBX6 kLdq K91YAEk y7tdPtx JD0r hLFr1Z7\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:54:06'),(3266,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"texcanbooks@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yaouxtsd\",\"label\":\"First name\"},\"phone\":{\"value\":\"81542245175\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fz6nMWw 9OcF PGq5Ts8 p09YJ8b 2Dld LJi9kQv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 18:56:06'),(3267,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"iaudio@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y9eucpok\",\"label\":\"First name\"},\"phone\":{\"value\":\"89161899621\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"M7NtksD kyJ1 j9U3yna sIyTCFt LUVk MfoByyD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:00:09'),(3268,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bobelliottsmith26@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9ygt4ay\",\"label\":\"First name\"},\"phone\":{\"value\":\"86136975612\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"o65aFzM vGLB hUm64AT prUx5QI 7hVY fWZJ3Zt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:03:18'),(3269,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"natastar67@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/yam9cele\",\"label\":\"First name\"},\"phone\":{\"value\":\"81219427953\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vMjg8zY GIz8 ibGfEZs jFibwYq Hqbc rc3Ld5F\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:03:42'),(3270,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anonsex99@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/yceehuey\",\"label\":\"First name\"},\"phone\":{\"value\":\"88729532945\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2d0vGuh Wmug bbuGm7Y zuwcjyO QZvs wjn3h0t\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:07:23'),(3271,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mihailanikin252@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8qj33ml\",\"label\":\"First name\"},\"phone\":{\"value\":\"81437822566\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"pFIhWVg BT9L ic0nf6e hE3rBWA pF0N Lzyyree\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:11:46'),(3272,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"monkey5979@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y98d3ucr\",\"label\":\"First name\"},\"phone\":{\"value\":\"89838513377\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8TpWthZ xdex hc4mA4K 05f7DF7 jQG9 ZNkopC1\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:12:42'),(3273,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"minoxin52@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yb42cd8k\",\"label\":\"First name\"},\"phone\":{\"value\":\"88297989561\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"3jFt7Z7 rv0F OgCfDTd 8fRIVuy 9clz w1jtjmY\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:14:33'),(3274,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"beepka@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycostznx\",\"label\":\"First name\"},\"phone\":{\"value\":\"85324226675\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ri3Wu7j WNRy EzMv6ek Pe0I7e1 JSX2 JOupBCq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:19:27'),(3275,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"soumitrarc101010@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ycmnow8d\",\"label\":\"First name\"},\"phone\":{\"value\":\"88894611949\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5OdaIE4 M2x6 GN0NhLk uw1TDcY 7bj2 THmiVeS\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:21:27'),(3276,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"lotanaris@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ycxmhvz2\",\"label\":\"First name\"},\"phone\":{\"value\":\"88861169281\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"D7y7xSg PM2t iJe1w38 5JyvCDF EK7s 5ovjKhl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:21:59'),(3277,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shishkova.vikusya@inbox.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041d\\u0430\\u0448\\u0430 \\u043f\\u043b\\u0430\\u0442\\u0444\\u043e\\u0440\\u043c\\u0430 \\u0432 \\u043e\\u043f\\u0430\\u0441\\u043d\\u043e\\u0441\\u0442\\u0438! \\u0413\\u043e\\u0440\\u0430\\u0434\\u043c\\u0438\\u043d\\u0438\\u0441\\u0442\\u0440\\u0430\\u0446\\u0438\\u044f \\u043f\\u044b\\u0442\\u0430\\u0435\\u0442\\u0441\\u044f \\u0437\\u0430\\u043a\\u0440\\u044b\\u0442\\u044c \\u043d\\u0430\\u0448\\u0443 \\u0438\\u043d\\u0432\\u0435\\u0441\\u0442\\u0438\\u0446\\u0438\\u043e\\u043d\\u043d\\u0443\\u044e \\u043f\\u043b\\u0430\\u0442\\u0444\\u043e\\u0440\\u043c\\u0443, \\u043f\\u043e\\u0441\\u043a\\u043e\\u043b\\u044c\\u043a\\u0443 \\u0441\\u0447\\u0438\\u0442\\u0430\\u044e\\u0442, \\u0447\\u0442\\u043e \\\"\\u0442\\u0430\\u043a \\u043b\\u0435\\u0433\\u043a\\u043e \\u0438 \\u0431\\u044b\\u0441\\u0442\\u0440\\u043e \\u0443\\u043b\\u0443\\u0447\\u0448\\u0438\\u0442\\u044c \\u043c\\u0430\\u0442\\u0435\\u0440\\u0438\\u0430\\u043b\\u044c\\u043d\\u043e\\u0435 \\u043f\\u043e\\u043b\\u043e\\u0436\\u0435\\u043d\\u0438\\u0435 \\u043d\\u0435\\u0432\\u043e\\u0437\\u043c\\u043e\\u0436\\u043d\\u043e\\\". \\u041d\\u043e \\u0442\\u044b\\u0441\\u044f\\u0447\\u0438 \\u043b\\u044e\\u0434\\u0435\\u0439 \\u0443\\u0436\\u0435 \\u0443\\u0431\\u0435\\u0434\\u0438\\u043b\\u0438\\u0441\\u044c \\u0432 \\u044d\\u0444\\u0444\\u0435\\u043a\\u0442\\u0438\\u0432\\u043d\\u043e\\u0441\\u0442\\u0438 \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u043f\\u043b\\u0430\\u0442\\u0444\\u043e\\u0440\\u043c\\u044b, \\u0432\\u0435\\u0434\\u044c \\u0437\\u0430\\u043a\\u0438\\u043d\\u0443\\u0432 \\u043c\\u0438\\u043d\\u0438\\u043c\\u0430\\u043b\\u044c\\u043d\\u044b\\u0439 \\u043f\\u043e\\u0440\\u043e\\u0433 \\u0432 19 000 \\u0440\\u0443\\u0431\\u043b\\u0435\\u0439, \\u043e\\u043d\\u0438 \\u043f\\u043e\\u043b\\u0443\\u0447\\u0438\\u043b\\u0438 \\u0432 \\u043d\\u0435\\u0441\\u043a\\u043e\\u043b\\u044c\\u043a\\u043e \\u0440\\u0430\\u0437 \\u0431\\u043e\\u043b\\u044c\\u0448\\u0435 \\u0437\\u0430 \\u043d\\u0435\\u0434\\u0435\\u043b\\u044e! \\u0420\\u0435\\u0433\\u0438\\u0441\\u0442\\u0440\\u0438\\u0440\\u0443\\u0439\\u0441\\u044f \\u0432 \\u0441\\u0438\\u0441\\u0442\\u0435\\u043c\\u0435 \\u0438 \\u043f\\u043e\\u043f\\u043e\\u043b\\u043d\\u044f\\u0439 \\u0431\\u0430\\u043b\\u0430\\u043d\\u0441 \\u043e\\u0442 19000\\u0440 \\u0438 \\u0443\\u0431\\u0435\\u0434\\u0438\\u0441\\u044c \\u0432 \\u044d\\u0442\\u043e\\u043c \\u043f\\u0435\\u0440\\u0435\\u0439\\u0434\\u044f \\u043f\\u043e \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: https:\\/\\/www.google.com\\/url?q=%68%74%74%70%3a%2f%2f%77%77%77%2e%74%69%6e%79%75%72%6c%2e%63%6f%6d%2f%79%63%6e%35%63%65%6b%67&source=gmail&ust=1643305972968000&usg=AOvVaw3GTzrzP_J40jpFMqBatEjV NFDAW80545TUJE\",\"label\":\"First name\"},\"phone\":{\"value\":\"86692527884\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vkYQDUv fSb5 xC9Mpqg kET7GeK Etwv 4h7KaqG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:22:06'),(3278,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anvesh.bujji2617@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybol5mpq\",\"label\":\"First name\"},\"phone\":{\"value\":\"84798742456\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KA0r4l1 9463 KpHUN8E VDBj5ne BXm2 PFKa2oz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:27:09'),(3279,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"7089129438h@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybo562vn\",\"label\":\"First name\"},\"phone\":{\"value\":\"81113916285\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6rlrFj0 eI1J Pu7lXhG ASv3T4m 8FfE Y01lerE\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:28:21'),(3280,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"misha.vozniak@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydzxuohx\",\"label\":\"First name\"},\"phone\":{\"value\":\"87433342843\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"k9PDgtD SAr1 KKB3ELb QZYXhWv E8Ig zl9vwSO\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:31:17'),(3281,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"garuway@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yaa75an5\",\"label\":\"First name\"},\"phone\":{\"value\":\"83626533253\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"U5e8AcM LP0k TFN1qv0 VU3tdpq veox Li8l31z\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:34:43'),(3282,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"carmenroigalonso@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8fnjkb6\",\"label\":\"First name\"},\"phone\":{\"value\":\"83138581874\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"IUHjWw2 WDO2 5OcNtiV 721oXeb sffG vDcvS5S\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:35:17'),(3283,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ribakov.ry@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8vdaf8h\",\"label\":\"First name\"},\"phone\":{\"value\":\"82965794916\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"DkyGg2c q8eb MVRP9Qc nFmds7r W1GZ iz5cbJ9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:40:29'),(3284,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hayrullopardaev260@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yarhjw2r\",\"label\":\"First name\"},\"phone\":{\"value\":\"86341184669\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rRWonyJ RP7b WXcB623 sOTuPZO WTNp NmPGQNT\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:42:10'),(3285,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"taryan54@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7jxwjk5\",\"label\":\"First name\"},\"phone\":{\"value\":\"81798854215\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZHLkih6 WtkW UutjqGs Hhqc5Wj nkP5 AUoJpAX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:42:25'),(3286,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tezelbrus1990@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y773eu54\",\"label\":\"First name\"},\"phone\":{\"value\":\"85957384574\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"OH4qonu EMeT EnbqjZT vVXsRMP wda1 xSE8ytc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:49:09'),(3287,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hellkeeper82@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8e7fw4m\",\"label\":\"First name\"},\"phone\":{\"value\":\"88515934163\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"HkxZerp aEwS K98geWt 7TihwC5 7xCu RQaVJdJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:49:51'),(3288,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"viktorop34nov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y89se6w5\",\"label\":\"First name\"},\"phone\":{\"value\":\"87545425633\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YMjWOJZ 2TcB rWW8Lld JzQqvWJ Rr2B lVNeGsu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:49:58'),(3289,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dajana76@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7299rqm\",\"label\":\"First name\"},\"phone\":{\"value\":\"81635886617\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lmZQbwO cLyH GwibmrJ 5mdkSXS GO43 WpqIv2H\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:56:10'),(3290,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anujm0@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y85xamh8\",\"label\":\"First name\"},\"phone\":{\"value\":\"81124683459\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Ebbm8TJ aXvJ o17U1fu fbImPCm Uilj EwvdxkA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:57:29'),(3291,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"majgul68@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ya9c8rs8\",\"label\":\"First name\"},\"phone\":{\"value\":\"83162372316\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"o6o38In wxvC NSyRHzM o6lNq86 M4Qh QBi5g43\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 19:59:06'),(3292,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"veta1495@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ybeqym4o\",\"label\":\"First name\"},\"phone\":{\"value\":\"88544547869\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"d2IBRRW YvY7 y5SGh2p JLemn9f Md8R mLp5Cuw\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:03:03'),(3293,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aleksander940304@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ybmryzvo\",\"label\":\"First name\"},\"phone\":{\"value\":\"87618447777\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5HCZ0yd jPug 4arU82c x4gSvw1 Gqd7 DP3cCtn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:05:08'),(3294,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"asmitsingh73@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yaft44kk\",\"label\":\"First name\"},\"phone\":{\"value\":\"89992645366\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6ua4vGV Xmmf s1iDH52 Tq6kqNe f0x9 gkKFT6q\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:08:36'),(3295,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"abika.vnik.ildar@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yaxzpqxn\",\"label\":\"First name\"},\"phone\":{\"value\":\"84441152581\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"7kwiXd4 JkTy s2Ruuhh G8s2x28 ybmD KQHlbxI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:10:05'),(3296,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"crystal.a.mejia@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yafbuhjw\",\"label\":\"First name\"},\"phone\":{\"value\":\"87885349285\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GjJDroC td09 mjr23lk julZveW KOfi G26uY7d\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:13:09'),(3297,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alex.ivanin287@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/yax36h8q\",\"label\":\"First name\"},\"phone\":{\"value\":\"84947189474\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mwio7y6 sHZi f7yBkL8 VqtUEon 9RI6 Tnnf9nu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:16:59'),(3298,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jasminetoffa@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y94keqbz\",\"label\":\"First name\"},\"phone\":{\"value\":\"84249171659\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"KPLqQLm 4uhB VbXIbPz SeYwfA7 Lgtb w0bdDcx\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:18:10'),(3299,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shivshan.kapoor@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ycu7o6l2\",\"label\":\"First name\"},\"phone\":{\"value\":\"88375227673\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"mSEiCk9 6oF6 nw81DVV oIcocTI 0rlw l2awb4n\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:20:56'),(3300,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"super.e1967@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yaxvg7dp\",\"label\":\"First name\"},\"phone\":{\"value\":\"84973434216\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6uKCfEj MrRq VpvkGRt uDns71o t71m sXWFiK3\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:23:55'),(3301,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"raudirina@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9tnyzou\",\"label\":\"First name\"},\"phone\":{\"value\":\"87922897665\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6gBXCn0 PlEl x1cAx0z ZS02uhd 77hr LXrIfxl\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:27:38'),(3302,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dasavolosenko33@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ya7cpchj\",\"label\":\"First name\"},\"phone\":{\"value\":\"83598134141\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"jqK2wYf U8CU u6W3fhn gGLeppY is9Z teJjmOr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:28:36'),(3303,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"irinapodumeeva@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yanuq544\",\"label\":\"First name\"},\"phone\":{\"value\":\"88692989427\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"zYEogLu RmIN vytBXTQ hMvqQCB 2RLp BVWTulq\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:30:51'),(3304,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gereixanov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y7fuosl9\",\"label\":\"First name\"},\"phone\":{\"value\":\"86939193155\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JOHt745 qO2E MCHUDW3 r5wK7gN OcI2 nLqR2Va\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:36:24'),(3305,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"grishailiyash@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycvsobhb\",\"label\":\"First name\"},\"phone\":{\"value\":\"83546372132\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"AQsAl6B hoGy uVrkLSL A8CJY84 oemj mi9QbAI\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:37:20'),(3306,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"el1234ena@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yb487nb6\",\"label\":\"First name\"},\"phone\":{\"value\":\"81743653785\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"i4BLAwA enoA cEeAAAR JaDvGtq fvjf uRy9oHd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:37:41'),(3307,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"labarter119@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ybcc72su\",\"label\":\"First name\"},\"phone\":{\"value\":\"81223762416\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BgFMf11 whro jDP6PeX WrcyXfl nq69 0lms5HA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:44:04'),(3308,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"anastasanapa911@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybvujp2g\",\"label\":\"First name\"},\"phone\":{\"value\":\"82886213681\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"8ZhEJUs h0W0 5WdetTd xtySmz0 BgYu WWyOQcW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:44:33'),(3309,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"mimi97232@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9jptl8n\",\"label\":\"First name\"},\"phone\":{\"value\":\"81326583539\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cSNv1m2 fBkF IGdSE7t 0T5c1JP b1qp j4bKMY6\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:46:00'),(3310,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"djkorkis@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y75uz2eq\",\"label\":\"First name\"},\"phone\":{\"value\":\"84675887476\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"s2MnyAX LyqN LRDSnV6 Lar692E VgFA uDnnkha\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:51:26'),(3311,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sotastore@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9flluzk\",\"label\":\"First name\"},\"phone\":{\"value\":\"84164375239\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0Gbw6Ng cSYG 8AXcZgl GEFWwkx 5C5k ze4jSTV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:51:42'),(3312,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vasilijpanasenko2852@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybbody28\",\"label\":\"First name\"},\"phone\":{\"value\":\"83295914946\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"0xMJkQL XmJO CxlHUpx ZYSJLxx LfFo nFJyaia\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:54:05'),(3313,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"uzakovatanu9@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y8wx5v6k\",\"label\":\"First name\"},\"phone\":{\"value\":\"87566885812\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZEmu0eB 6gAU pneFh4n slxtvn6 sVSL KtBI11w\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:58:16'),(3314,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"alekseikotov370@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8s2k2vb\",\"label\":\"First name\"},\"phone\":{\"value\":\"84949484451\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nnw795K pAzT YwT0hHm cV7mYh3 yMVe 29U4AAP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 20:59:10'),(3315,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ekst.spb@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yakg6pur\",\"label\":\"First name\"},\"phone\":{\"value\":\"88434238786\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iUfT90r ia04 R0UyTtM JpSyGmE 94qk olGmy5q\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:02:08'),(3316,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bekezhanova063@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7rglemr\",\"label\":\"First name\"},\"phone\":{\"value\":\"87744364643\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iPj0tZJ BqwX 9Mt4dwk M9LCXqb VzMA TdduHt9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:05:08'),(3317,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"orlik.kathy@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/ybohkw8m\",\"label\":\"First name\"},\"phone\":{\"value\":\"88926843646\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yN6CBAZ zhWJ ShznBI0 hlX1Ths yW8E VX2NOfC\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:06:48'),(3318,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kimlena994@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/yb5lmjcc\",\"label\":\"First name\"},\"phone\":{\"value\":\"88832848199\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"emsWhXp iK9v Km6CVk0 ujFA3LF Hvsq jWHdxuz\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:10:13'),(3319,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"balbeerluna@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ya6bp9y8\",\"label\":\"First name\"},\"phone\":{\"value\":\"82368738825\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"CwId1WF GhZG NAT8dvZ m4kXJn3 nU0s q3c6WV5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:11:52'),(3320,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"salaevaaltyn01@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9jgwj7w\",\"label\":\"First name\"},\"phone\":{\"value\":\"88679681331\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6toYTz9 yh1F RwPx6sO CXrgTtU dUud sdpAiT9\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:14:47'),(3321,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vanastrizov529@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yc7qobz4\",\"label\":\"First name\"},\"phone\":{\"value\":\"89898895223\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"SncNShE q0o4 sh7wkTk 8Gkeybh hN2J Es6XpBs\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:18:28'),(3322,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"svyrovoleg@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y83lnefz\",\"label\":\"First name\"},\"phone\":{\"value\":\"85588238471\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wYKiQFH Vpzk MbS7ENx Lme1Mfa sN4i QtJELmM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:18:29'),(3323,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"shahzodholmatov100@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7p9byls\",\"label\":\"First name\"},\"phone\":{\"value\":\"86274432289\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"cDuDZSx 5ZxU nhAM8FA xcqBlrh Jrij 5xcpfa8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:22:35'),(3324,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"daurencom777@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8tv37f9\",\"label\":\"First name\"},\"phone\":{\"value\":\"85585132813\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"iSc1fNa Kz0F 1RUT1zd Qx8flvn ixWL mLonxqm\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:25:20'),(3325,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bondarevatatana938@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8bp6sea\",\"label\":\"First name\"},\"phone\":{\"value\":\"89525548246\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GC4VEPH n0Tr Vm1FNK4 SBYyMY8 sckV BT7eyNd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:26:18'),(3326,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"grmatoh@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yabxmm32\",\"label\":\"First name\"},\"phone\":{\"value\":\"88553189586\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"J0bJ8XF AICy Apae8f4 JO2n5te e3Pp sLjxkEr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:30:16'),(3327,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zazaboom88@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/ybmbyw4l\",\"label\":\"First name\"},\"phone\":{\"value\":\"83389117665\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NqUOhxO hAcz oUIIzxf CkkMpdN R804 exjyWtG\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:32:05'),(3328,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vishalkarde777@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yb6y22mq\",\"label\":\"First name\"},\"phone\":{\"value\":\"88697557183\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"UdAqfo5 7j1j f7CHEX5 HbURfLi bLxS 1qVfard\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:35:05'),(3329,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"coolrajputamit05@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y7hzmoa4\",\"label\":\"First name\"},\"phone\":{\"value\":\"81151545122\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"x3C6lE4 jfDO QqHnooD mSar6LE MpEu x4RxWeV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:37:53'),(3330,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rawatbms999@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybqeb7o9\",\"label\":\"First name\"},\"phone\":{\"value\":\"84321851934\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BzDBQel u8Sj iCMqIoI vzOEZry 46Ch NlCrcYc\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:38:42'),(3331,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"emerson.ireland@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y84j83m6\",\"label\":\"First name\"},\"phone\":{\"value\":\"81878887425\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"lnwpFs1 VwDE KfOBd0t np2oF4g IdSb 8qEwGMn\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:44:32'),(3332,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"daniarbasenov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yalcq7z8\",\"label\":\"First name\"},\"phone\":{\"value\":\"81857142165\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YBTbJkm ox1M 7E0ZMUb Qgcjp5R u8Jl OCXWeRr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:45:13'),(3333,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ustimenko90ua@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442. \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u0433\\u043e \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430: www.tinyurl.com\\/y8pbw5xl\",\"label\":\"First name\"},\"phone\":{\"value\":\"87969676299\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wvEP8Xh sCKP xaHdNke kGvQEgi zgEB VPAKzqH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:45:29'),(3334,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"jainpuneet85@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y8xw9kgh\",\"label\":\"First name\"},\"phone\":{\"value\":\"87398174456\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"K6kKYxR sbOl 017XkzQ bDIE7ak 3v6u QABPZDd\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:51:59'),(3335,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"hrenov79@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8jkpxp5\",\"label\":\"First name\"},\"phone\":{\"value\":\"86654585346\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"fGBLfH5 FS9T MBCz4ZI e1i3rWg OWLS 6fsgixt\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:52:54'),(3336,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dzub22ster@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y6ustyv9\",\"label\":\"First name\"},\"phone\":{\"value\":\"86858451491\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"1XRTVMx 9NNV 4F6LIaj 2TKhyxl 716y GkmgPHW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:54:01'),(3337,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"ajekseev.dimon86@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9y8eu35\",\"label\":\"First name\"},\"phone\":{\"value\":\"86628563465\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ZwirRf7 gPuP 6mE0F7H uGggyMb OOa1 z3mugTL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 21:58:47'),(3338,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gopikishan8989@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y75aka99\",\"label\":\"First name\"},\"phone\":{\"value\":\"86233327576\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"L9eJCmw Wjev QCNxRFr 7B4S28U 9Tgw J7ea9BW\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:00:27'),(3339,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dk.krasikov@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u043bo\\u0442epe\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9v7entl\",\"label\":\"First name\"},\"phone\":{\"value\":\"82233836239\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"4cs5690 0FLR UjMsIaq vAAhAUx V8nv 0DvCVgA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:03:13'),(3340,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"madukhan786@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y9gkw6yz\",\"label\":\"First name\"},\"phone\":{\"value\":\"87554425259\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"ETsg5CB L78v lFaMBHu AnLJlOy lLv8 TZEfZq5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:05:34'),(3341,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rsveta64@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y75u27kv\",\"label\":\"First name\"},\"phone\":{\"value\":\"83857964875\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"qZelxxP krkg poQJEc2 2EU7AlP TQPJ 36XCDXD\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:08:27'),(3342,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"demina2003@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y7ok56mz\",\"label\":\"First name\"},\"phone\":{\"value\":\"86967177822\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6VFTXaw pzYp zsFwxs8 gM0gqTp 7q32 QSjpclJ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:12:19'),(3343,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pramodk.pkk@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yanfbzj6\",\"label\":\"First name\"},\"phone\":{\"value\":\"83171155575\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"nNnUKXR JjJK EjJil0W 5eyLyrZ GHFI clpQFGU\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:12:36'),(3344,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"newrgu9038@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydg6obfh\",\"label\":\"First name\"},\"phone\":{\"value\":\"84461384519\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"6th91g2 RpoH LbLNL0Y JknP1C7 pQ0U 71zj2RL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:16:08'),(3345,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"no-replyNuavemax@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Mike Albertson\\r\\n\",\"label\":\"First name\"},\"phone\":{\"value\":\"88397232929\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Howdy \\r\\n \\r\\nWe will improve your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \\r\\n \\r\\nPlease check our services below, we offer Local SEO at cheap rates. \\r\\nhttps:\\/\\/speed-seo.net\\/product\\/local-seo-package\\/ \\r\\n \\r\\nNEW: \\r\\nhttps:\\/\\/www.speed-seo.net\\/product\\/zip-codes-gmaps-citations\\/ \\r\\n \\r\\nregards \\r\\nMike Albertson\\r\\n \\r\\nSpeed SEO Digital Agency\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"138.199.56.242\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:17:36'),(3346,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"aiaylimmamirjankizi@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ycsutabe\",\"label\":\"First name\"},\"phone\":{\"value\":\"83686284629\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"rNiYycK rJbd RNPnbF6 XD11AHw fFXo YUqHN7y\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:19:04'),(3347,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"udayvish7@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/y8xf2m6h\",\"label\":\"First name\"},\"phone\":{\"value\":\"83167688389\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"er4MsMg tOc3 JOccOp1 JSJOzXh pYcb hP1iwCp\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:22:16'),(3348,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"stevie.walden@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e \\u043a \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u043e\\u043c\\u0443 \\u0442\\u0438\\u0440\\u0430\\u0436\\u0443 \\u043f\\u043e \\u0434\\u0430\\u043d\\u043d\\u043e\\u0439 \\u0441\\u0441\\u044b\\u043b\\u043a\\u0435: www.tinyurl.com\\/ycqfkad6\",\"label\":\"First name\"},\"phone\":{\"value\":\"83152563329\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"v83ela5 cnNQ ZDIfv3x mlZsUSX Ud41 YtWwdEr\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:23:50'),(3349,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"arunprasath179@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y9rpqax5\",\"label\":\"First name\"},\"phone\":{\"value\":\"89964576373\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"LDGiYfV LqOH T1F9SFr xs9yPUB xR4H rRknoN8\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:25:49'),(3350,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"yermin.stanislav@inbox.ru\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0412\\u0430\\u0448\\u0430 \\u0432\\u044b\\u043f\\u043b\\u0430\\u0442\\u0430 \\u043e\\u0436\\u0438\\u0434\\u0430\\u0435\\u0442 \\u0432\\u0430\\u0441. \\u0416\\u0434\\u0435\\u043c \\u043e\\u0442 \\u0432\\u0430\\u0441 \\u043e\\u0442\\u0432\\u0435\\u0442\\u0430. \\u041d\\u0430\\u043f\\u0438\\u0448\\u0438\\u0442\\u0435 \\u043d\\u0430\\u043c \\u043d\\u0430 email rasmussenjaxxon1997@gmail.com \\u043b\\u044e\\u0431\\u043e\\u0435 \\u0441\\u043e\\u043e\\u0431\\u0449\\u0435\\u043d\\u0438\\u0435 \\u0438 \\u043c\\u044b \\u0441 \\u0432\\u0430\\u043c\\u0438 \\u0441\\u0432\\u044f\\u0436\\u0435\\u043c\\u0441\\u044f \\u0434\\u043b\\u044f \\u043e\\u0442\\u043f\\u0440\\u0430\\u0432\\u043a\\u0438 \\u0432\\u0430\\u043c \\u0432\\u044b\\u043f\\u043b\\u0430\\u0442\\u044b. \\u0421\\u043f\\u0430\\u0441\\u0438\\u0431\\u043e THRT80545NFDAW\",\"label\":\"First name\"},\"phone\":{\"value\":\"81325936594\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"NNNjJZ7 uqMF Xk2MgSw S3QxhCg kSWx VcSXn5K\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:28:01'),(3351,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"pocketaces8490@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y7x9ysqv\",\"label\":\"First name\"},\"phone\":{\"value\":\"87512473338\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"gQ6KWws LUv0 0wTne1W RVgWeyc 21iB zPlQ6H2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:31:25'),(3352,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gulasamhalova15983@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/ydbw3fn5\",\"label\":\"First name\"},\"phone\":{\"value\":\"81197935241\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"izpOdMf 5SAp pxoWXKu jmqis1R fUOk 7NTqqUL\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:31:38'),(3353,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"skapadi749@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0411\\u0438\\u043b\\u0435\\u0442 \\u043d\\u0430 \\u0412\\u0430\\u0448\\u0435 \\u0438\\u043c\\u044f \\u043e\\u043a\\u0430\\u0437\\u0430\\u043b\\u0441\\u044f \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/yb9abcju\",\"label\":\"First name\"},\"phone\":{\"value\":\"86366238828\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"dsldxbb ttoM 7LJHzj1 2TCKMha wTF3 wZZ6opv\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:32:28'),(3354,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"elsuryoyo@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041c\\u044b \\u0434\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e. \\u0423\\u0441\\u043f\\u0435\\u0445\\u043e\\u0432 \\u0432 \\u0440\\u043e\\u0437\\u044b\\u0433\\u0440\\u044b\\u0448\\u0435! \\u0417\\u0430\\u0431\\u0440\\u0430\\u0442\\u044c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9hg8t6h\",\"label\":\"First name\"},\"phone\":{\"value\":\"87989692229\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"L35n4ux AFdx RUXYpPM RNE0laB kkqL gOF1deX\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:39:07'),(3355,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"bazarbaevan@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c, \\u0443 \\u0432\\u0430\\u0441 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u0430\\u044f \\u043a\\u043e\\u043c\\u0431\\u0438\\u043d\\u0430\\u0446\\u0438\\u044f \\u0431\\u0438\\u043b\\u0435\\u0442\\u0430 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e \\u0441\\u043e\\u0432\\u043f\\u0430\\u043b\\u0430! \\u041f\\u0435\\u0440\\u0435\\u0439\\u0442\\u0438 \\u043a \\u043f\\u043e\\u043b\\u0443\\u0447\\u0435\\u043d\\u0438\\u044e \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u0430: www.tinyurl.com\\/ydcmux7z\",\"label\":\"First name\"},\"phone\":{\"value\":\"85632131325\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"yJMO9oN xUh3 Hpc6V3L wDBjYwK wc2L J4W6MGK\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:39:17'),(3356,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"govindsharma2472@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/ybdzh4ta\",\"label\":\"First name\"},\"phone\":{\"value\":\"87686961516\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vlfyevA 0b5n UlIq54Q V6oQQIr oEHo Kd4svyM\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:40:55'),(3357,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"javieroh64@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybdnmhvh\",\"label\":\"First name\"},\"phone\":{\"value\":\"87893292932\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"GZzWk7J nFJP g7VCZDd x58g7EA OiEH t3RbwYZ\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:45:55'),(3358,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"vaidas.su@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u043e\\u0431\\u0440\\u044b\\u0439 \\u0434\\u0435\\u043d\\u044c! \\u041d\\u0430\\u043f\\u043e\\u043c\\u0438\\u043d\\u0430\\u0435\\u043c \\u043e \\u0412\\u0430\\u0448\\u0435\\u043c \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u043e\\u043c \\u0431\\u0438\\u043b\\u0435\\u0442\\u0435 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0441\\u0432\\u043e\\u0439 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448: www.tinyurl.com\\/y834e6v4\",\"label\":\"First name\"},\"phone\":{\"value\":\"81242135639\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"9G8338L J0kc N5u4Vfl I4Hao0d HLkW 81eZpxV\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:49:07'),(3359,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"kasatik09@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/yctcgpnh\",\"label\":\"First name\"},\"phone\":{\"value\":\"89434732721\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"my9SHK7 YpuR yeIAd1T LeekQCx u46s yzR3WxA\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:50:35'),(3360,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"tonhobiar@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0412\\u0430\\u043c \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u0416\\u0435\\u043b\\u0430\\u0435\\u043c \\u0432\\u0430\\u043c \\u043f\\u043e\\u0431\\u0435\\u0434\\u044b! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/y9zgslkm\",\"label\":\"First name\"},\"phone\":{\"value\":\"81358963982\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"5Adjxaa TSBC yvMjd35 ii7uMtg oKEg nWgsOFu\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:52:38'),(3361,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"irinasster@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7afyj3f\",\"label\":\"First name\"},\"phone\":{\"value\":\"83392638895\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"2EgsbFc CLBJ irEkImv eFqoX7j 6ih6 yEJri3o\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:57:05'),(3362,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"zlulka9@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u041f\\u043e\\u043b\\u0443\\u0447\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y8ybm3qv\",\"label\":\"First name\"},\"phone\":{\"value\":\"88851729854\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Y5oYJ8f tcEk 5VnIfB0 sUiyg84 H6rr 1NShWVP\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:59:10'),(3363,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"gautamsanjeet95@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0412\\u0430\\u0448 \\u043f\\u043e\\u0434\\u0430\\u0440\\u043e\\u0447\\u043d\\u044b\\u0439 \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u041e\\u0421\\u041b\\u041e\\u0422\\u041e: www.tinyurl.com\\/y7wztq5h\",\"label\":\"First name\"},\"phone\":{\"value\":\"85626893465\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"JDsEG9y 8hGA AEOiRXs JK1z93O CcJl U0gquW2\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 22:59:57'),(3364,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"rmrus816@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/yahbk8qa\",\"label\":\"First name\"},\"phone\":{\"value\":\"81773227494\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"wwquicB 1HzZ mqkAXRZ pv95rFZ guj3 WGAvhn5\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 23:05:46'),(3365,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"juicyboosie@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044d\\u043b\\u0435\\u043a\\u0442\\u0440\\u043e\\u043d\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e. \\u0418\\u0441\\u043f\\u044b\\u0442\\u0430\\u0439\\u0442\\u0435 \\u0443\\u0434\\u0430\\u0447\\u0443! \\u0417\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435 \\u0432\\u0430\\u0448 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ybetarzp\",\"label\":\"First name\"},\"phone\":{\"value\":\"82625543125\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"BEGSlYS Z6vO xAaPn9l iPrCA68 aW1m QFCmeJo\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"46.166.182.115\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 23:05:55'),(3366,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"sanaevbaktybek@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u041f\\u043e\\u0437\\u0434\\u0440\\u0430\\u0432\\u043b\\u044f\\u0435\\u043c \\u0412\\u0430\\u0441 \\u0441 \\u041f\\u043e\\u0431\\u0435\\u0434\\u043e\\u0439 \\u0432 \\u0413\\u043e\\u0441\\u041b\\u043e\\u0442\\u043e! \\u041e\\u0442\\u043a\\u0440\\u044b\\u0442\\u044c \\u0412\\u0430\\u0448 \\u0432\\u044b\\u0438\\u0433\\u0440\\u044b\\u0448\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442: www.tinyurl.com\\/ydhudxwt\",\"label\":\"First name\"},\"phone\":{\"value\":\"83933487165\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"YB9dHG3 Bewj i8Iu8TX ycFufyf 2QY8 H299JNi\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"192.40.57.56\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 23:09:24'),(3367,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"dog.fencee@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"\\u0414\\u0430\\u0440\\u0438\\u043c \\u0412\\u0430\\u043c \\u044e\\u0431\\u0438\\u043b\\u0435\\u0439\\u043d\\u044b\\u0439 \\u043b\\u043e\\u0442\\u0435\\u0440\\u0435\\u0439\\u043d\\u044b\\u0439 \\u0431\\u0438\\u043b\\u0435\\u0442! \\u041f\\u0435\\u0440\\u0435\\u0445\\u043e\\u0434\\u0438\\u0442\\u0435 \\u0438 \\u0437\\u0430\\u0431\\u0435\\u0440\\u0438\\u0442\\u0435: www.tinyurl.com\\/y8tn4kzx\",\"label\":\"First name\"},\"phone\":{\"value\":\"88886252825\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"vKWdhEL lKqK GnKitPg szXRwfj 2iFu y2b65sH\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"107.181.180.174\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-01-26 23:12:37'),(3368,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Aniket\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Jain\",\"label\":\"Last name\"},\"email\":{\"value\":\"minedinemeals@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Please snd me your proposal.\",\"label\":\"Message\"},\"phone\":{\"value\":\"9719451519\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"103.140.185.69\",\"label\":\"IP Address\"},\"hutk\":{\"value\":\"4eb9955e2462d8c247c58a388dc9b3ba\",\"label\":\"Cookie\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-02-07 07:22:52'),(3369,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Ciara\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Dinnen\",\"label\":\"Last name\"},\"email\":{\"value\":\"ciara.donnen22@outlook.com\",\"label\":\"Email\"},\"message\":{\"value\":\"I need your help to grow my business\",\"label\":\"Message\"},\"phone\":{\"value\":\"6362124454\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"197.210.53.55\",\"label\":\"IP Address\"},\"hutk\":{\"value\":\"8f83d02bfbd4887b4ae394a5ce557ed1\",\"label\":\"Cookie\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-02-22 11:26:40'),(3370,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Katia Regina\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Bassotto\",\"label\":\"Last name\"},\"email\":{\"value\":\"katia92_9@outlook.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Good morning,\\r\\n\\r\\nHope you are doing well.\\r\\nI sent my application to Business Analyst by Linkedin.\\r\\nI read that it is necessary apply to the form: https:\\/\\/forms.gle\\/vMpVimA9hkJeGXFv5, but It was not possible to open it. Could you please give me permission to the form? \\r\\nMy gmail account is: katia92@unochapeco.edu.br\\r\\n\\r\\nThank you so much.\\r\\nKatia R. Bassotto.\",\"label\":\"Message\"},\"phone\":{\"value\":\"55 49 9 85017514\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"170.84.58.114\",\"label\":\"IP Address\"},\"hutk\":{\"value\":\"2b9a17150c3d70b27991fb41a01ba6b1\",\"label\":\"Cookie\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-03-06 14:29:49'),(3371,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"davidBak@emero-salon.online\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Davidkef\",\"label\":\"First name\"},\"phone\":{\"value\":\"88848374885\",\"label\":\"Phone number\"},\"company\":{\"value\":\"google\",\"label\":\"Company name\"},\"message\":{\"value\":\"Of all the surprises that President Vladimir Putin has encountered since he invaded Ukraine last month, perhaps the biggest has been that Russia is yet to gain air superiority. plsHelpUkraine03202217\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"158.255.215.187\",\"label\":\"IP Address\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-03-18 14:43:55'),(3372,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Sam\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Feldotto\",\"label\":\"Last name\"},\"email\":{\"value\":\"sales@saleshive.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hello - I\\u2019ve been trying to reach your VP of Sales to discuss scaling your B2B cold calling campaigns with our remote SDRs. Please book a time in my calendar here: saleshive.com\\/sam-feldotto OR send me an email at sam-feldotto@saleshive.com Have a great day!\\r\\n\",\"label\":\"Message\"},\"phone\":{\"value\":\"(888) 333-3096\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"119.94.5.2\",\"label\":\"IP Address\"},\"hutk\":{\"value\":\"cbb931690f469c3fa64c5173f3cb49c0\",\"label\":\"Cookie\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-03-22 15:22:19'),(3373,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Ciara\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Dinnen\",\"label\":\"Last name\"},\"email\":{\"value\":\"ciara.dinnen25@outlook.com\",\"label\":\"Email\"},\"message\":{\"value\":\"I need an App Developer\",\"label\":\"Message\"},\"phone\":{\"value\":\"6362124454\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"102.89.40.24\",\"label\":\"IP Address\"},\"hutk\":{\"value\":\"f69f341ffa0b0628db013e133376ded4\",\"label\":\"Cookie\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-04-25 11:22:32'),(3374,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Bob\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Downey\",\"label\":\"Last name\"},\"email\":{\"value\":\"bdowney@downtowncopiers.com\",\"label\":\"Email\"},\"message\":{\"value\":\"this is for Robert - regarding the Apple MacBook Pro sent back last day. We had issues re-installing the OS. We need to get it working to complete our lease retrun acceptance. Can you help?\",\"label\":\"Message\"},\"phone\":{\"value\":\"4165781973\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"216.58.40.231\",\"label\":\"IP Address\"},\"hutk\":{\"value\":\"38ee06757801229ab7ad7c00d8064a60\",\"label\":\"Cookie\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-04-25 17:00:58'),(3375,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Pavan\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Kumar\",\"label\":\"Last name\"},\"email\":{\"value\":\"pavan189907.kumar@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hey, I am trying to look out for your company offerings in terms of Kubernetes and your pricing.\",\"label\":\"Message\"},\"phone\":{\"value\":\"07986483605\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"2405:201:c026:837:bce6:cb21:887a:ef41\",\"label\":\"IP Address\"},\"hutk\":{\"value\":\"d345517f9e80099d4121f4038e72abae\",\"label\":\"Cookie\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-05-01 09:46:42'),(3376,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Wayne\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Henhoeffer\",\"label\":\"Last name\"},\"email\":{\"value\":\"wayne@legacyautocredit.ca\",\"label\":\"Email\"},\"message\":{\"value\":\"We are an in-house leasing company that is looking to offer our leasing solutions to outside dealers. We are also looking to develop our repair loans. Ideally we can find a solution that can do both but if not the repair loans would be the focus with your company.\",\"label\":\"Message\"},\"phone\":{\"value\":\"519-889-2283\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"216.110.252.89\",\"label\":\"IP Address\"},\"hutk\":{\"value\":\"5e886af02507ad6735a54daf167336e6\",\"label\":\"Cookie\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-05-20 20:43:39'),(3377,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Robert\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Golabek\",\"label\":\"Last name\"},\"email\":{\"value\":\"robertski@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"test\",\"label\":\"Message\"},\"phone\":{\"value\":\"4166710030\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"2607:fea8:12e0:2a8:15f6:c8dc:b481:60b7\",\"label\":\"IP Address\"},\"hutk\":{\"value\":\"a1e3df65435f5c8e55c290b41363134c\",\"label\":\"Cookie\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-05-20 22:20:24'),(3378,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Trent\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Broderick\",\"label\":\"Last name\"},\"email\":{\"value\":\"trent@kubecost.com\",\"label\":\"Email\"},\"message\":{\"value\":\"Hi, I wanted to reach out to discuss bolstering your managed Kubernetes consulting service by adding cost monitoring and allocation to your tool belt. We, at Kubecost, have heard from plenty of consultants that their end users are concerned about Kubernetes costs, and current tools like Cost Explorer just aren\'t cutting it. We went ahead and build out a referral and reseller program for companies like you who want to be able to provide a full 360-degree solution for your end-users. If you\'re interested in partnering to help expand your portfolio of services, let\'s find some time to meet via zoom!\",\"label\":\"Message\"},\"phone\":{\"value\":\"7328568606\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"148.76.137.67\",\"label\":\"IP Address\"},\"hutk\":{\"value\":\"1540cfdf271d17aa2ea7f8b91e45e4fb\",\"label\":\"Cookie\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-05-25 17:14:07'),(3379,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Rick\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Carlson\",\"label\":\"Last name\"},\"email\":{\"value\":\"RC0322@ProNovaPartners.com\",\"label\":\"Email\"},\"message\":{\"value\":\"ProNova Partners would like to collaborate with you on the sale of your business ASAP. Buyer demand is sky-high for our offerings - we closed ALMOST ALL of the new engagements we were hired for nationwide in 2021 despite the pandemic. Valuations are ridiculous {STILL}, our closing timeframes are short, and the good times I\'m afraid won\'t last forever. Interest rates will rise eventually, which will make it increasingly harder for Buyers to leverage up & pay 4-9x (PLUS) NET income on the best opportunities, plus there lies the possiblity of long term capital gains taxes on the sale of your business nearly doubling in 2023....The time is now!\\r\\n\\r\\nIf you\'re interested in selling or just checking in on the valuation of your enterprise, please feel free to reach out to me directly to book an appointment {CONFIDENTIALLY} to explore further: https:\\/\\/www.calendly.com\\/rickcarlson\\r\\n\\r\\nOn our end - we had 33 closings in 2021, with a dozen more (ranging from $225k to $15MM all-cash) closings scheduled by August 1st and we\'re running low on salable inventory again.\\u00a0 M&A marches onward despite these uncertain times!!\\u00a0 \\r\\n\\r\\nI\'d ideally like to take some time to begin a discussion on the sale of your Company & we can commence \'packaging\' this opportunity together so we can hopefully go to market and close by year-end.\\u00a0 If you disagree, for whatever reason, hopefully just give me a follow up date that you think makes sense and I can circle back with you at that time.\\u00a0 \\r\\n\\r\\nBut why ProNova Partners?\\r\\n\\r\\n- We have plenty of cash buyers that are active & decisive acquirers for good inventory. \\r\\n- We possess the network and the experiences to orchestrate virtually any transaction from initial consultation to the close of escrow in a timely manner.\\r\\n- We pay for upgraded advertising which in turn ensures maximum exposure to your business far beyond our company database of 32,142+ buyers looking for interesting targets.\\r\\n- We specialize in highly-sensitive and confidential sales and recognize its importance, therefore all buyers have an NDA on file with us.\\r\\n- We work together with our highly skilled team to produce top-tier marketing materials and pitch books that impel buyers to write offers.\\r\\n- We are experts in valuation - by applying the correct valuation strategy to your firm, we can therefore negotiate the highest possible price for your business.\\r\\n- We understand the importance of time to close, and considering all of the above we also have an average 90 days to close for our buyers \\/ sellers.\\r\\n- We are a success fee firm, unless we close the transaction for you, there is no charge to you.\\r\\n\\r\\nIs your legacy something you want to procrastinate with? \\r\\n\\r\\nOr take some baby steps, 76% of business owners regret their exit after just one year. That shouldn\\u2019t happen to you. Secure your free PREScore\\u2122 to see if regret is in your horizon by answering 12 simple questions: https:\\/\\/www.pronovapartners.com\\/\\r\\n\\r\\nWhat\'s your magic #? What\'s your exit plan strategy? What are you waiting for?\\r\\n\\r\\n~~ If you want to buy!!! ~~\\r\\n\\r\\nSome of our recent new engagements just listed from \'Q2 include: \\r\\n\\r\\nGovernment specialized logistics assistive tech company for sale, submit the NDA HERE--------->https:\\/\\/pronovapartners.com\\/engagement\\/government-specialized-logistics-assistive-tech-company-for-sale\\/\\r\\nReal Estate Included Heavy Equipment and Construction Dealership for sale, submit the NDA HERE--------->https:\\/\\/pronovapartners.com\\/engagement\\/real-estate-included-ohio-heavy-equipment-dealership-for-sale\\/\\r\\nFortune 500 Client Calibration & Testing Business, submit the NDA HERE--------->https:\\/\\/pronovapartners.com\\/engagement\\/fortune-500-client-calibration-and-testing-business-for-sale\\/\\r\\nA sales recruiting firm with high traffic websites, submit the NDA HERE--------->https:\\/\\/pronovapartners.com\\/engagement\\/sales-recruiting-firm-with-high-traffic-websites-for-sale\\/\\r\\nA Material mixing processing equipment auction with $1.2MM FFE for sale w\\/bids ude by 6\\/27\\/22, submit the NDA HERE--------->https:\\/\\/pronovapartners.com\\/engagement\\/1-point-2-mm-ffe-material-mixing-processing-equipment-auction-bids-due-june-27th\\/\\r\\n$2MM NET Costa Rican Car Dealership Group with rental fleet, financing & repair revenue streams, submit the NDA HERE--------->https:\\/\\/pronovapartners.com\\/engagement\\/multi-location-costa-rican-car-dealership-group\\/\\r\\nLife saving medical device company for major heart surgery, submit the NDA HERE--------->https:\\/\\/pronovapartners.com\\/engagement\\/fortune-500-client-calibration-and-testing-business-for-sale\\/\\r\\nHigh Net Wholesale Lumber Business, submit the NDA HERE--------->https:\\/\\/pronovapartners.com\\/engagement\\/high-net-wholesale-lumber-business-for-sale\\/\\r\\nHigh Net ($5MM) Aerospace Focused Composite Products Manufacturer (Sole Source) from a 100,000 SqFt building, {EMAIL DIRECTLY - NOT PUBLICLY MARKETED ON PRONOVA\'S SITE}\\r\\n\\r\\nOr check out one of our other 115+ active engagements across all SIC codes \\/ geographies \\/ valuations! You can also bookmark our website, https:\\/\\/www.pronovpartners.com\\/engagements\\/ to check in on future deals anytime.\\r\\n\\r\\nCheers,\\r\\n\\r\\n-Rick.\\r\\n-- \\r\\nRick Carlson\\r\\nCEO\\r\\nProNova Partners\\r\\n825 Wilshire Blvd., Suite 536\\r\\nSanta Monica, CA 90401\\r\\nPhone: 830-465-4676\\r\\nEmail: RC0322@ProNovaPartners.com\\r\\nWeb: https:\\/\\/www.ProNovaPartners.com\",\"label\":\"Message\"},\"phone\":{\"value\":\"8304654676\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"103.115.255.172\",\"label\":\"IP Address\"},\"hutk\":{\"value\":\"9fe0650c0b436c93ea582f3517fbac1d\",\"label\":\"Cookie\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-06-02 19:29:36'),(3380,0,'cf_3586',5,0,'','vxf_2fc1eb6d-7443-4bf4-af4e-c468933625c7','','','submit','{\"email\":{\"value\":\"robertski@gmail.com\",\"label\":\"Email\"},\"firstname\":{\"value\":\"Robert Golabek\",\"label\":\"First name\"},\"phone\":{\"value\":\"4166710030\",\"label\":\"Phone number\"},\"company\":{\"value\":\"test\",\"label\":\"Company name\"},\"message\":{\"value\":\"aaaaaaa\",\"label\":\"Message\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Home\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"2607:fea8:12e0:ce7:dd52:f2d4:d41c:1d5b\",\"label\":\"IP Address\"},\"hutk\":{\"value\":\"52f0f532f07661fd5d1c4b2ed853d0aa\",\"label\":\"Cookie\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-06-16 00:48:12'),(3381,0,'cf_8',1,0,'','vxf_d3abe351-fdf3-4da0-9d30-6533a80af89e','','','submit','{\"firstname\":{\"value\":\"Robert\",\"label\":\"First name\"},\"lastname\":{\"value\":\"Golabek\",\"label\":\"Last name\"},\"email\":{\"value\":\"robertski@gmail.com\",\"label\":\"Email\"},\"message\":{\"value\":\"test24\",\"label\":\"Message\"},\"phone\":{\"value\":\"4166710030\",\"label\":\"Phone number\"},\"vx_url\":{\"value\":\"https:\\/\\/translucent.local\\/contact\\/\",\"label\":\"Page URL\"},\"vx_title\":{\"value\":\"Contact Us\",\"label\":\"Form Name\"},\"vx_ip\":{\"value\":\"2607:fea8:12e0:ce7:dd52:f2d4:d41c:1d5b\",\"label\":\"IP Address\"},\"hutk\":{\"value\":\"52f0f532f07661fd5d1c4b2ed853d0aa\",\"label\":\"Cookie\"}}','{\"inlineMessage\":\"Thanks for submitting the form.\"}','[]',1,'2022-06-16 00:48:25'); /*!40000 ALTER TABLE `wp_vxcf_hubspot_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_comments_subscription` -- DROP TABLE IF EXISTS `wp_wc_comments_subscription`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_comments_subscription` ( `id` int(11) NOT NULL AUTO_INCREMENT, `email` varchar(255) NOT NULL, `subscribtion_id` int(11) NOT NULL, `post_id` int(11) NOT NULL, `subscribtion_type` varchar(255) NOT NULL, `activation_key` varchar(255) NOT NULL, `confirm` tinyint(4) DEFAULT 0, `subscription_date` timestamp NULL DEFAULT current_timestamp(), `imported_from` varchar(25) NOT NULL DEFAULT '', PRIMARY KEY (`id`), UNIQUE KEY `subscribe_unique_index` (`subscribtion_id`,`email`,`post_id`), KEY `subscribtion_id` (`subscribtion_id`), KEY `post_id` (`post_id`), KEY `confirm` (`confirm`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_comments_subscription` -- LOCK TABLES `wp_wc_comments_subscription` WRITE; /*!40000 ALTER TABLE `wp_wc_comments_subscription` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_comments_subscription` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_feedback_forms` -- DROP TABLE IF EXISTS `wp_wc_feedback_forms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_feedback_forms` ( `id` int(11) NOT NULL AUTO_INCREMENT, `post_id` int(11) NOT NULL DEFAULT 0, `unique_id` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL, `question` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `opened` tinyint(4) unsigned NOT NULL DEFAULT 0, `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `unique_id` (`unique_id`), KEY `post_id` (`post_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_feedback_forms` -- LOCK TABLES `wp_wc_feedback_forms` WRITE; /*!40000 ALTER TABLE `wp_wc_feedback_forms` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_feedback_forms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_follow_users` -- DROP TABLE IF EXISTS `wp_wc_follow_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_follow_users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `post_id` int(11) NOT NULL DEFAULT 0, `user_id` int(11) NOT NULL DEFAULT 0, `user_email` varchar(125) NOT NULL, `user_name` varchar(255) NOT NULL, `follower_id` int(11) NOT NULL DEFAULT 0, `follower_email` varchar(125) NOT NULL, `follower_name` varchar(255) NOT NULL, `activation_key` varchar(32) NOT NULL, `confirm` tinyint(1) NOT NULL DEFAULT 0, `follow_timestamp` int(11) NOT NULL, `follow_date` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`id`), UNIQUE KEY `follow_unique_key` (`user_email`,`follower_email`), KEY `post_id` (`post_id`), KEY `user_id` (`user_id`), KEY `user_email` (`user_email`), KEY `follower_id` (`follower_id`), KEY `follower_email` (`follower_email`), KEY `confirm` (`confirm`), KEY `follow_timestamp` (`follow_timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_follow_users` -- LOCK TABLES `wp_wc_follow_users` WRITE; /*!40000 ALTER TABLE `wp_wc_follow_users` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_follow_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_phrases` -- DROP TABLE IF EXISTS `wp_wc_phrases`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_phrases` ( `id` int(11) NOT NULL AUTO_INCREMENT, `phrase_key` varchar(255) NOT NULL, `phrase_value` text NOT NULL, PRIMARY KEY (`id`), KEY `phrase_key` (`phrase_key`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_phrases` -- LOCK TABLES `wp_wc_phrases` WRITE; /*!40000 ALTER TABLE `wp_wc_phrases` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_phrases` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_users_rated` -- DROP TABLE IF EXISTS `wp_wc_users_rated`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_users_rated` ( `id` int(11) NOT NULL AUTO_INCREMENT, `post_id` int(11) NOT NULL DEFAULT 0, `user_id` int(11) NOT NULL DEFAULT 0, `user_ip` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `rating` int(11) NOT NULL, `date` int(11) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `post_id` (`post_id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_users_rated` -- LOCK TABLES `wp_wc_users_rated` WRITE; /*!40000 ALTER TABLE `wp_wc_users_rated` DISABLE KEYS */; INSERT INTO `wp_wc_users_rated` VALUES (1,2177,0,'88b6a73ad67780fde449561a2c9f207a',5,1616291696),(2,1692,0,'88b6a73ad67780fde449561a2c9f207a',5,1616928071),(3,2463,0,'88b6a73ad67780fde449561a2c9f207a',5,1617713563),(4,2470,0,'88b6a73ad67780fde449561a2c9f207a',5,1617820146),(5,2563,0,'1ebfd08de5e14c13ff777f011c174c90',5,1618522554),(6,2804,9,'',5,1619433228),(7,2804,0,'4ea90827912e690ed259d766fb318d30',5,1629568336),(8,3670,9,'',5,1638527899),(9,1213,0,'8d6c96d0607a02c05a9f095746dde153',5,1640845860); /*!40000 ALTER TABLE `wp_wc_users_rated` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_users_voted` -- DROP TABLE IF EXISTS `wp_wc_users_voted`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_users_voted` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` varchar(255) NOT NULL, `comment_id` int(11) NOT NULL, `vote_type` int(11) DEFAULT NULL, `is_guest` tinyint(1) DEFAULT 0, `post_id` bigint(20) unsigned NOT NULL DEFAULT 0, `date` int(11) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `user_id` (`user_id`), KEY `comment_id` (`comment_id`), KEY `vote_type` (`vote_type`), KEY `is_guest` (`is_guest`), KEY `post_id` (`post_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_users_voted` -- LOCK TABLES `wp_wc_users_voted` WRITE; /*!40000 ALTER TABLE `wp_wc_users_voted` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_users_voted` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wp_phpmyadmin_extension__errors_log` -- DROP TABLE IF EXISTS `wp_wp_phpmyadmin_extension__errors_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wp_phpmyadmin_extension__errors_log` ( `id` int(50) NOT NULL AUTO_INCREMENT, `gmdate` datetime DEFAULT NULL, `function_name` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `function_args` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, `message` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wp_phpmyadmin_extension__errors_log` -- LOCK TABLES `wp_wp_phpmyadmin_extension__errors_log` WRITE; /*!40000 ALTER TABLE `wp_wp_phpmyadmin_extension__errors_log` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wp_phpmyadmin_extension__errors_log` 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 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `backup_date` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_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_wpgmza` -- DROP TABLE IF EXISTS `wp_wpgmza`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpgmza` ( `id` int(11) NOT NULL AUTO_INCREMENT, `map_id` int(11) NOT NULL, `address` varchar(700) NOT NULL, `description` mediumtext NOT NULL, `pic` varchar(700) NOT NULL, `link` varchar(2083) NOT NULL, `icon` varchar(700) NOT NULL, `lat` varchar(100) NOT NULL, `lng` varchar(100) NOT NULL, `anim` varchar(3) NOT NULL, `title` varchar(700) NOT NULL, `infoopen` varchar(3) NOT NULL, `category` varchar(500) NOT NULL, `approved` tinyint(1) DEFAULT 1, `retina` tinyint(1) DEFAULT 0, `type` tinyint(1) DEFAULT 0, `did` varchar(500) NOT NULL, `other_data` longtext NOT NULL, `latlng` point DEFAULT NULL, `sticky` tinyint(1) DEFAULT 0, `layergroup` int(3) DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpgmza` -- LOCK TABLES `wp_wpgmza` WRITE; /*!40000 ALTER TABLE `wp_wpgmza` DISABLE KEYS */; INSERT INTO `wp_wpgmza` VALUES (1,1,'18 King Street East, Toronto, ON M5C 1C4, Canada','','','','','43.6496485','-79.37708950000001','2','','0','',1,0,0,'','','\0\0\0\0\0\0\0\'E@;\"S',0,0); /*!40000 ALTER TABLE `wp_wpgmza` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpgmza_admin_notices` -- DROP TABLE IF EXISTS `wp_wpgmza_admin_notices`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpgmza_admin_notices` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active_date` datetime DEFAULT NULL, `options` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `dismissed` tinyint(1) DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpgmza_admin_notices` -- LOCK TABLES `wp_wpgmza_admin_notices` WRITE; /*!40000 ALTER TABLE `wp_wpgmza_admin_notices` DISABLE KEYS */; INSERT INTO `wp_wpgmza_admin_notices` VALUES (1,'switch_engines','switch_engines','2022-06-20 17:53:25','{\"link\":\"admin.php?page=wp-google-maps-menu-settings\",\"link_label\":\"Go to Settings\",\"ajax_action\":\"swap_internal_engine\",\"ajax_label\":\"Switch Now\",\"title\":\"switch_engines\"}',1); /*!40000 ALTER TABLE `wp_wpgmza_admin_notices` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpgmza_categories` -- DROP TABLE IF EXISTS `wp_wpgmza_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpgmza_categories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `active` tinyint(1) NOT NULL, `category_name` varchar(50) NOT NULL, `category_icon` varchar(700) NOT NULL, `retina` tinyint(1) DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpgmza_categories` -- LOCK TABLES `wp_wpgmza_categories` WRITE; /*!40000 ALTER TABLE `wp_wpgmza_categories` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wpgmza_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpgmza_category_maps` -- DROP TABLE IF EXISTS `wp_wpgmza_category_maps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpgmza_category_maps` ( `id` int(11) NOT NULL AUTO_INCREMENT, `cat_id` int(11) NOT NULL, `map_id` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpgmza_category_maps` -- LOCK TABLES `wp_wpgmza_category_maps` WRITE; /*!40000 ALTER TABLE `wp_wpgmza_category_maps` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wpgmza_category_maps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpgmza_circles` -- DROP TABLE IF EXISTS `wp_wpgmza_circles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpgmza_circles` ( `id` int(11) NOT NULL AUTO_INCREMENT, `map_id` int(11) NOT NULL, `name` text DEFAULT NULL, `center` point DEFAULT NULL, `radius` float DEFAULT NULL, `color` varchar(16) DEFAULT NULL, `opacity` float DEFAULT NULL, `lineColor` varchar(16) DEFAULT NULL, `lineOpacity` float DEFAULT 0, `description` text DEFAULT NULL, `hoverEnabled` tinyint(1) DEFAULT 0, `ohFillColor` varchar(16) DEFAULT NULL, `ohLineColor` varchar(16) DEFAULT NULL, `ohFillOpacity` float DEFAULT NULL, `ohLineOpacity` float DEFAULT NULL, `link` varchar(700) NOT NULL, `layergroup` int(3) DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpgmza_circles` -- LOCK TABLES `wp_wpgmza_circles` WRITE; /*!40000 ALTER TABLE `wp_wpgmza_circles` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wpgmza_circles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpgmza_image_overlays` -- DROP TABLE IF EXISTS `wp_wpgmza_image_overlays`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpgmza_image_overlays` ( `id` int(11) NOT NULL AUTO_INCREMENT, `map_id` int(11) NOT NULL, `name` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cornerA` point DEFAULT NULL, `cornerB` point DEFAULT NULL, `image` varchar(700) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `opacity` float DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpgmza_image_overlays` -- LOCK TABLES `wp_wpgmza_image_overlays` WRITE; /*!40000 ALTER TABLE `wp_wpgmza_image_overlays` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wpgmza_image_overlays` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpgmza_maps` -- DROP TABLE IF EXISTS `wp_wpgmza_maps`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpgmza_maps` ( `id` int(11) NOT NULL AUTO_INCREMENT, `map_title` varchar(256) NOT NULL, `map_width` varchar(6) NOT NULL, `map_height` varchar(6) NOT NULL, `map_start_lat` varchar(700) NOT NULL, `map_start_lng` varchar(700) NOT NULL, `map_start_location` varchar(700) NOT NULL, `map_start_zoom` int(10) NOT NULL, `default_marker` varchar(700) NOT NULL, `type` int(10) NOT NULL, `alignment` int(10) NOT NULL, `directions_enabled` int(10) NOT NULL, `styling_enabled` int(10) NOT NULL, `styling_json` mediumtext NOT NULL, `active` int(1) NOT NULL, `kml` varchar(700) NOT NULL, `bicycle` int(10) NOT NULL, `traffic` int(10) NOT NULL, `dbox` int(10) NOT NULL, `dbox_width` varchar(10) NOT NULL, `listmarkers` int(10) NOT NULL, `listmarkers_advanced` int(10) NOT NULL, `filterbycat` tinyint(1) NOT NULL, `ugm_enabled` int(10) NOT NULL, `ugm_category_enabled` tinyint(1) NOT NULL, `fusion` varchar(100) NOT NULL, `map_width_type` varchar(3) NOT NULL, `map_height_type` varchar(3) NOT NULL, `mass_marker_support` int(10) NOT NULL, `ugm_access` int(10) NOT NULL, `order_markers_by` int(10) NOT NULL, `order_markers_choice` int(10) NOT NULL, `show_user_location` int(3) NOT NULL, `default_to` varchar(700) NOT NULL, `other_settings` longtext NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpgmza_maps` -- LOCK TABLES `wp_wpgmza_maps` WRITE; /*!40000 ALTER TABLE `wp_wpgmza_maps` DISABLE KEYS */; INSERT INTO `wp_wpgmza_maps` VALUES (1,'Translucent','100','600','43.6496485','-79.37708950000001','43.64115811164498,-79.37326108053253',16,'0',1,1,1,0,'',0,'',0,0,1,'100',0,0,0,0,0,'','%','px',1,0,0,0,0,'','a:80:{s:21:\"store_locator_enabled\";b:1;s:22:\"store_locator_distance\";b:1;s:28:\"store_locator_default_radius\";s:2:\"10\";s:31:\"store_locator_not_found_message\";s:0:\"\";s:20:\"store_locator_bounce\";i:1;s:26:\"store_locator_query_string\";s:0:\"\";s:29:\"store_locator_default_address\";s:0:\"\";s:29:\"wpgmza_store_locator_restrict\";s:0:\"\";s:19:\"store_locator_style\";s:6:\"modern\";s:33:\"wpgmza_store_locator_radius_style\";s:6:\"modern\";s:12:\"map_max_zoom\";s:1:\"1\";s:15:\"transport_layer\";b:0;s:17:\"wpgmza_theme_data\";s:1007:\"[{\\\"featureType\\\":\\\"landscape\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":51},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":30},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":40},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"on\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]}]\";s:22:\"wpgmza_theme_selection\";i:3;s:30:\"wpgmza_show_points_of_interest\";i:1;s:6:\"action\";s:15:\"wpgmza_save_map\";s:11:\"redirect_to\";s:24:\"/wp-admin/admin-post.php\";s:6:\"map_id\";s:1:\"1\";s:12:\"http_referer\";s:73:\"/wp-admin/admin.php?page=wp-google-maps-menu&action=edit&map_id=1\";s:9:\"wpgmza_id\";s:1:\"1\";s:21:\"wpgmza_start_location\";s:29:\"43.6496485,-79.37708950000001\";s:17:\"wpgmza_start_zoom\";s:2:\"16\";s:25:\"store_locator_search_area\";s:6:\"radial\";s:35:\"wpgmza_store_locator_default_radius\";s:2:\"10\";s:32:\"store_locator_auto_area_max_zoom\";s:0:\"\";s:29:\"wpgmza_store_locator_position\";b:0;s:27:\"store_locator_show_distance\";b:0;s:22:\"store_locator_category\";b:0;s:39:\"wpgmza_store_locator_use_their_location\";b:0;s:27:\"wpgmza_store_locator_bounce\";b:0;s:19:\"wpgmza_sl_animation\";N;s:39:\"wpgmza_store_locator_hide_before_search\";b:0;s:25:\"store_locator_name_search\";b:0;s:25:\"store_locator_name_string\";s:0:\"\";s:15:\"sl_stroke_color\";s:0:\"\";s:17:\"sl_stroke_opacity\";s:0:\"\";s:13:\"sl_fill_color\";s:0:\"\";s:15:\"sl_fill_opacity\";s:0:\"\";s:16:\"wpgmza_map_align\";s:1:\"1\";s:40:\"jump_to_nearest_marker_on_initialization\";b:0;s:35:\"automatically_pan_to_users_location\";b:0;s:34:\"override_users_location_zoom_level\";b:0;s:35:\"override_users_location_zoom_levels\";s:0:\"\";s:27:\"show_distance_from_location\";b:0;s:12:\"map_min_zoom\";s:1:\"0\";s:15:\"click_open_link\";b:0;s:26:\"fit_maps_bounds_to_markers\";b:0;s:42:\"fit_maps_bounds_to_markers_after_filtering\";b:0;s:22:\"hide_point_of_interest\";b:0;s:27:\"wpgmza_zoom_on_marker_click\";b:0;s:34:\"wpgmza_zoom_on_marker_click_slider\";s:0:\"\";s:29:\"close_infowindow_on_map_click\";b:0;s:23:\"disable_lightbox_images\";b:0;s:24:\"use_Raw_Jpeg_Coordinates\";b:0;s:14:\"polygon_labels\";b:0;s:28:\"disable_polygon_info_windows\";b:0;s:21:\"enable_marker_ratings\";b:0;s:33:\"only_load_markers_within_viewport\";b:0;s:16:\"iw_primary_color\";s:0:\"\";s:15:\"iw_accent_color\";s:0:\"\";s:13:\"iw_text_color\";s:0:\"\";s:21:\"wpgmza_listmarkers_by\";s:1:\"0\";s:30:\"wpgmza_marker_listing_position\";b:0;s:18:\"wpgmza_push_in_map\";b:0;s:28:\"wpgmza_push_in_map_placement\";N;s:24:\"wpgmza_push_in_map_width\";s:0:\"\";s:25:\"wpgmza_push_in_map_height\";s:0:\"\";s:37:\"zoom_level_on_marker_listing_override\";b:0;s:34:\"zoom_level_on_marker_listing_click\";s:0:\"\";s:27:\"datatable_no_result_message\";s:0:\"\";s:26:\"remove_search_box_datables\";b:0;s:26:\"dataTable_pagination_style\";N;s:23:\"datatable_search_string\";s:0:\"\";s:22:\"datatable_result_start\";s:0:\"\";s:19:\"datatable_result_of\";s:0:\"\";s:19:\"datatable_result_to\";s:0:\"\";s:22:\"datatable_result_total\";s:0:\"\";s:21:\"datatable_result_show\";s:0:\"\";s:24:\"datatable_result_entries\";s:0:\"\";s:14:\"wpgmza_savemap\";s:11:\"Save Map »\";}'); /*!40000 ALTER TABLE `wp_wpgmza_maps` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpgmza_point_labels` -- DROP TABLE IF EXISTS `wp_wpgmza_point_labels`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpgmza_point_labels` ( `id` int(11) NOT NULL AUTO_INCREMENT, `map_id` int(11) NOT NULL, `name` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `center` point DEFAULT NULL, `fillColor` varchar(16) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `lineColor` varchar(16) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `opacity` float DEFAULT NULL, `fontSize` varchar(3) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpgmza_point_labels` -- LOCK TABLES `wp_wpgmza_point_labels` WRITE; /*!40000 ALTER TABLE `wp_wpgmza_point_labels` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wpgmza_point_labels` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpgmza_polygon` -- DROP TABLE IF EXISTS `wp_wpgmza_polygon`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpgmza_polygon` ( `id` int(11) NOT NULL AUTO_INCREMENT, `map_id` int(11) NOT NULL, `polydata` longtext NOT NULL, `innerpolydata` longtext NOT NULL, `linecolor` varchar(7) NOT NULL, `lineopacity` varchar(7) NOT NULL, `fillcolor` varchar(7) NOT NULL, `opacity` varchar(3) NOT NULL, `title` varchar(250) NOT NULL, `link` varchar(700) NOT NULL, `ohfillcolor` varchar(7) NOT NULL, `ohlinecolor` varchar(7) NOT NULL, `ohopacity` varchar(3) NOT NULL, `polyname` varchar(100) NOT NULL, `description` text NOT NULL, `linethickness` varchar(3) NOT NULL, `layergroup` int(3) DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpgmza_polygon` -- LOCK TABLES `wp_wpgmza_polygon` WRITE; /*!40000 ALTER TABLE `wp_wpgmza_polygon` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wpgmza_polygon` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpgmza_polylines` -- DROP TABLE IF EXISTS `wp_wpgmza_polylines`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpgmza_polylines` ( `id` int(11) NOT NULL AUTO_INCREMENT, `map_id` int(11) NOT NULL, `polydata` longtext NOT NULL, `linecolor` varchar(7) NOT NULL, `linethickness` varchar(3) NOT NULL, `opacity` varchar(3) NOT NULL, `polyname` varchar(100) NOT NULL, `layergroup` int(3) DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpgmza_polylines` -- LOCK TABLES `wp_wpgmza_polylines` WRITE; /*!40000 ALTER TABLE `wp_wpgmza_polylines` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wpgmza_polylines` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpgmza_rectangles` -- DROP TABLE IF EXISTS `wp_wpgmza_rectangles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpgmza_rectangles` ( `id` int(11) NOT NULL AUTO_INCREMENT, `map_id` int(11) NOT NULL, `name` text DEFAULT NULL, `cornerA` point DEFAULT NULL, `cornerB` point DEFAULT NULL, `color` varchar(16) DEFAULT NULL, `opacity` float DEFAULT NULL, `lineColor` varchar(16) DEFAULT NULL, `lineOpacity` float DEFAULT 0, `description` text DEFAULT NULL, `hoverEnabled` tinyint(1) DEFAULT 0, `ohFillColor` varchar(16) DEFAULT NULL, `ohLineColor` varchar(16) DEFAULT NULL, `ohFillOpacity` float DEFAULT NULL, `ohLineOpacity` float DEFAULT NULL, `link` varchar(700) NOT NULL, `layergroup` int(3) DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpgmza_rectangles` -- LOCK TABLES `wp_wpgmza_rectangles` WRITE; /*!40000 ALTER TABLE `wp_wpgmza_rectangles` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wpgmza_rectangles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpr_rucss_resources` -- DROP TABLE IF EXISTS `wp_wpr_rucss_resources`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpr_rucss_resources` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `url` varchar(2000) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `type` varchar(5) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `media` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT 'all', `content` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `hash` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `prewarmup` tinyint(1) unsigned DEFAULT 0, `warmup_status` tinyint(1) unsigned DEFAULT 0, `modified` datetime DEFAULT '0000-00-00 00:00:00', `last_accessed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), KEY `hash` (`hash`), KEY `url` (`url`(150)), KEY `type` (`type`), KEY `last_accessed` (`last_accessed`) ) ENGINE=InnoDB AUTO_INCREMENT=442 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpr_rucss_resources` -- LOCK TABLES `wp_wpr_rucss_resources` WRITE; /*!40000 ALTER TABLE `wp_wpr_rucss_resources` DISABLE KEYS */; INSERT INTO `wp_wpr_rucss_resources` VALUES (5,'https://translucent.local/wp-content/themes/translucent/js/jquery-1.11.0.min.js','js','','/*! jQuery v1.11.0 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */\n!function(a,b){\"object\"==typeof module&&\"object\"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error(\"jQuery requires a window with a document\");return b(a)}:b(a)}(\"undefined\"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k=\"\".trim,l={},m=\"1.11.0\",n=function(a,b){return new n.fn.init(a,b)},o=/^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g,p=/^-ms-/,q=/-([\\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:\"\",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return n.each(this,a,b)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for(\"boolean\"==typeof g&&(j=g,g=arguments[h]||{},h++),\"object\"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(n.isPlainObject(c)||(b=n.isArray(c)))?(b?(b=!1,f=a&&n.isArray(a)?a:[]):f=a&&n.isPlainObject(a)?a:{},g[d]=n.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},n.extend({expando:\"jQuery\"+(m+Math.random()).replace(/\\D/g,\"\"),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return\"function\"===n.type(a)},isArray:Array.isArray||function(a){return\"array\"===n.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||\"object\"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,\"constructor\")&&!j.call(a.constructor.prototype,\"isPrototypeOf\"))return!1}catch(c){return!1}if(l.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+\"\":\"object\"==typeof a||\"function\"==typeof a?h[i.call(a)]||\"object\":typeof a},globalEval:function(b){b&&n.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(p,\"ms-\").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:k&&!k.call(\"\\ufeff\\xa0\")?function(a){return null==a?\"\":k.call(a)}:function(a){return null==a?\"\":(a+\"\").replace(o,\"\")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,\"string\"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return\"string\"==typeof b&&(f=a[b],b=a,a=f),n.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||n.guid++,e):void 0},now:function(){return+new Date},support:l}),n.each(\"Boolean Number String Function Array Date RegExp Object Error\".split(\" \"),function(a,b){h[\"[object \"+b+\"]\"]=b.toLowerCase()});function s(a){var b=a.length,c=n.type(a);return\"function\"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:\"array\"===c||0===b||\"number\"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s=\"sizzle\"+-new Date,t=a.document,u=0,v=0,w=eb(),x=eb(),y=eb(),z=function(a,b){return a===b&&(j=!0),0},A=\"undefined\",B=1<<31,C={}.hasOwnProperty,D=[],E=D.pop,F=D.push,G=D.push,H=D.slice,I=D.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},J=\"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped\",K=\"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",L=\"(?:\\\\\\\\.|[\\\\w-]|[^\\\\x00-\\\\xa0])+\",M=L.replace(\"w\",\"w#\"),N=\"\\\\[\"+K+\"*(\"+L+\")\"+K+\"*(?:([*^$|!~]?=)\"+K+\"*(?:([\'\\\"])((?:\\\\\\\\.|[^\\\\\\\\])*?)\\\\3|(\"+M+\")|)|)\"+K+\"*\\\\]\",O=\":(\"+L+\")(?:\\\\((([\'\\\"])((?:\\\\\\\\.|[^\\\\\\\\])*?)\\\\3|((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\"+N.replace(3,8)+\")*)|.*)\\\\)|)\",P=new RegExp(\"^\"+K+\"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\"+K+\"+$\",\"g\"),Q=new RegExp(\"^\"+K+\"*,\"+K+\"*\"),R=new RegExp(\"^\"+K+\"*([>+~]|\"+K+\")\"+K+\"*\"),S=new RegExp(\"=\"+K+\"*([^\\\\]\'\\\"]*?)\"+K+\"*\\\\]\",\"g\"),T=new RegExp(O),U=new RegExp(\"^\"+M+\"$\"),V={ID:new RegExp(\"^#(\"+L+\")\"),CLASS:new RegExp(\"^\\\\.(\"+L+\")\"),TAG:new RegExp(\"^(\"+L.replace(\"w\",\"w*\")+\")\"),ATTR:new RegExp(\"^\"+N),PSEUDO:new RegExp(\"^\"+O),CHILD:new RegExp(\"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\"+K+\"*(even|odd|(([+-]|)(\\\\d*)n|)\"+K+\"*(?:([+-]|)\"+K+\"*(\\\\d+)|))\"+K+\"*\\\\)|)\",\"i\"),bool:new RegExp(\"^(?:\"+J+\")$\",\"i\"),needsContext:new RegExp(\"^\"+K+\"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\"+K+\"*((?:-\\\\d)?\\\\d*)\"+K+\"*\\\\)|)(?=[^-]|$)\",\"i\")},W=/^(?:input|select|textarea|button)$/i,X=/^h\\d$/i,Y=/^[^{]+\\{\\s*\\[native \\w/,Z=/^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,$=/[+~]/,_=/\'|\\\\/g,ab=new RegExp(\"\\\\\\\\([\\\\da-f]{1,6}\"+K+\"?|(\"+K+\")|.)\",\"ig\"),bb=function(a,b,c){var d=\"0x\"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{G.apply(D=H.call(t.childNodes),t.childNodes),D[t.childNodes.length].nodeType}catch(cb){G={apply:D.length?function(a,b){F.apply(a,H.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function db(a,b,d,e){var f,g,h,i,j,m,p,q,u,v;if((b?b.ownerDocument||b:t)!==l&&k(b),b=b||l,d=d||[],!a||\"string\"!=typeof a)return d;if(1!==(i=b.nodeType)&&9!==i)return[];if(n&&!e){if(f=Z.exec(a))if(h=f[1]){if(9===i){if(g=b.getElementById(h),!g||!g.parentNode)return d;if(g.id===h)return d.push(g),d}else if(b.ownerDocument&&(g=b.ownerDocument.getElementById(h))&&r(b,g)&&g.id===h)return d.push(g),d}else{if(f[2])return G.apply(d,b.getElementsByTagName(a)),d;if((h=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return G.apply(d,b.getElementsByClassName(h)),d}if(c.qsa&&(!o||!o.test(a))){if(q=p=s,u=b,v=9===i&&a,1===i&&\"object\"!==b.nodeName.toLowerCase()){m=ob(a),(p=b.getAttribute(\"id\"))?q=p.replace(_,\"\\\\$&\"):b.setAttribute(\"id\",q),q=\"[id=\'\"+q+\"\'] \",j=m.length;while(j--)m[j]=q+pb(m[j]);u=$.test(a)&&mb(b.parentNode)||b,v=m.join(\",\")}if(v)try{return G.apply(d,u.querySelectorAll(v)),d}catch(w){}finally{p||b.removeAttribute(\"id\")}}}return xb(a.replace(P,\"$1\"),b,d,e)}function eb(){var a=[];function b(c,e){return a.push(c+\" \")>d.cacheLength&&delete b[a.shift()],b[c+\" \"]=e}return b}function fb(a){return a[s]=!0,a}function gb(a){var b=l.createElement(\"div\");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function hb(a,b){var c=a.split(\"|\"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function ib(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||B)-(~a.sourceIndex||B);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function jb(a){return function(b){var c=b.nodeName.toLowerCase();return\"input\"===c&&b.type===a}}function kb(a){return function(b){var c=b.nodeName.toLowerCase();return(\"input\"===c||\"button\"===c)&&b.type===a}}function lb(a){return fb(function(b){return b=+b,fb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function mb(a){return a&&typeof a.getElementsByTagName!==A&&a}c=db.support={},f=db.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?\"HTML\"!==b.nodeName:!1},k=db.setDocument=function(a){var b,e=a?a.ownerDocument||a:t,g=e.defaultView;return e!==l&&9===e.nodeType&&e.documentElement?(l=e,m=e.documentElement,n=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener(\"unload\",function(){k()},!1):g.attachEvent&&g.attachEvent(\"onunload\",function(){k()})),c.attributes=gb(function(a){return a.className=\"i\",!a.getAttribute(\"className\")}),c.getElementsByTagName=gb(function(a){return a.appendChild(e.createComment(\"\")),!a.getElementsByTagName(\"*\").length}),c.getElementsByClassName=Y.test(e.getElementsByClassName)&&gb(function(a){return a.innerHTML=\"
\",a.firstChild.className=\"i\",2===a.getElementsByClassName(\"i\").length}),c.getById=gb(function(a){return m.appendChild(a).id=s,!e.getElementsByName||!e.getElementsByName(s).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==A&&n){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ab,bb);return function(a){return a.getAttribute(\"id\")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ab,bb);return function(a){var c=typeof a.getAttributeNode!==A&&a.getAttributeNode(\"id\");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==A?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if(\"*\"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==A&&n?b.getElementsByClassName(a):void 0},p=[],o=[],(c.qsa=Y.test(e.querySelectorAll))&&(gb(function(a){a.innerHTML=\"\",a.querySelectorAll(\"[t^=\'\']\").length&&o.push(\"[*^$]=\"+K+\"*(?:\'\'|\\\"\\\")\"),a.querySelectorAll(\"[selected]\").length||o.push(\"\\\\[\"+K+\"*(?:value|\"+J+\")\"),a.querySelectorAll(\":checked\").length||o.push(\":checked\")}),gb(function(a){var b=e.createElement(\"input\");b.setAttribute(\"type\",\"hidden\"),a.appendChild(b).setAttribute(\"name\",\"D\"),a.querySelectorAll(\"[name=d]\").length&&o.push(\"name\"+K+\"*[*^$|!~]?=\"),a.querySelectorAll(\":enabled\").length||o.push(\":enabled\",\":disabled\"),a.querySelectorAll(\"*,:x\"),o.push(\",.*:\")})),(c.matchesSelector=Y.test(q=m.webkitMatchesSelector||m.mozMatchesSelector||m.oMatchesSelector||m.msMatchesSelector))&&gb(function(a){c.disconnectedMatch=q.call(a,\"div\"),q.call(a,\"[s!=\'\']:x\"),p.push(\"!=\",O)}),o=o.length&&new RegExp(o.join(\"|\")),p=p.length&&new RegExp(p.join(\"|\")),b=Y.test(m.compareDocumentPosition),r=b||Y.test(m.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},z=b?function(a,b){if(a===b)return j=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===t&&r(t,a)?-1:b===e||b.ownerDocument===t&&r(t,b)?1:i?I.call(i,a)-I.call(i,b):0:4&d?-1:1)}:function(a,b){if(a===b)return j=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],k=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:i?I.call(i,a)-I.call(i,b):0;if(f===g)return ib(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)k.unshift(c);while(h[d]===k[d])d++;return d?ib(h[d],k[d]):h[d]===t?-1:k[d]===t?1:0},e):l},db.matches=function(a,b){return db(a,null,null,b)},db.matchesSelector=function(a,b){if((a.ownerDocument||a)!==l&&k(a),b=b.replace(S,\"=\'$1\']\"),!(!c.matchesSelector||!n||p&&p.test(b)||o&&o.test(b)))try{var d=q.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return db(b,l,null,[a]).length>0},db.contains=function(a,b){return(a.ownerDocument||a)!==l&&k(a),r(a,b)},db.attr=function(a,b){(a.ownerDocument||a)!==l&&k(a);var e=d.attrHandle[b.toLowerCase()],f=e&&C.call(d.attrHandle,b.toLowerCase())?e(a,b,!n):void 0;return void 0!==f?f:c.attributes||!n?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},db.error=function(a){throw new Error(\"Syntax error, unrecognized expression: \"+a)},db.uniqueSort=function(a){var b,d=[],e=0,f=0;if(j=!c.detectDuplicates,i=!c.sortStable&&a.slice(0),a.sort(z),j){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return i=null,a},e=db.getText=function(a){var b,c=\"\",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if(\"string\"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=db.selectors={cacheLength:50,createPseudo:fb,match:V,attrHandle:{},find:{},relative:{\">\":{dir:\"parentNode\",first:!0},\" \":{dir:\"parentNode\"},\"+\":{dir:\"previousSibling\",first:!0},\"~\":{dir:\"previousSibling\"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ab,bb),a[3]=(a[4]||a[5]||\"\").replace(ab,bb),\"~=\"===a[2]&&(a[3]=\" \"+a[3]+\" \"),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),\"nth\"===a[1].slice(0,3)?(a[3]||db.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*(\"even\"===a[3]||\"odd\"===a[3])),a[5]=+(a[7]+a[8]||\"odd\"===a[3])):a[3]&&db.error(a[0]),a},PSEUDO:function(a){var b,c=!a[5]&&a[2];return V.CHILD.test(a[0])?null:(a[3]&&void 0!==a[4]?a[2]=a[4]:c&&T.test(c)&&(b=ob(c,!0))&&(b=c.indexOf(\")\",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ab,bb).toLowerCase();return\"*\"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=w[a+\" \"];return b||(b=new RegExp(\"(^|\"+K+\")\"+a+\"(\"+K+\"|$)\"))&&w(a,function(a){return b.test(\"string\"==typeof a.className&&a.className||typeof a.getAttribute!==A&&a.getAttribute(\"class\")||\"\")})},ATTR:function(a,b,c){return function(d){var e=db.attr(d,a);return null==e?\"!=\"===b:b?(e+=\"\",\"=\"===b?e===c:\"!=\"===b?e!==c:\"^=\"===b?c&&0===e.indexOf(c):\"*=\"===b?c&&e.indexOf(c)>-1:\"$=\"===b?c&&e.slice(-c.length)===c:\"~=\"===b?(\" \"+e+\" \").indexOf(c)>-1:\"|=\"===b?e===c||e.slice(0,c.length+1)===c+\"-\":!1):!0}},CHILD:function(a,b,c,d,e){var f=\"nth\"!==a.slice(0,3),g=\"last\"!==a.slice(-4),h=\"of-type\"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?\"nextSibling\":\"previousSibling\",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),t=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p=\"only\"===a&&!o&&\"nextSibling\"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&t){k=q[s]||(q[s]={}),j=k[a]||[],n=j[0]===u&&j[1],m=j[0]===u&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[u,n,m];break}}else if(t&&(j=(b[s]||(b[s]={}))[a])&&j[0]===u)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(t&&((l[s]||(l[s]={}))[a]=[u,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||db.error(\"unsupported pseudo: \"+a);return e[s]?e(b):e.length>1?(c=[a,a,\"\",b],d.setFilters.hasOwnProperty(a.toLowerCase())?fb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=I.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:fb(function(a){var b=[],c=[],d=g(a.replace(P,\"$1\"));return d[s]?fb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:fb(function(a){return function(b){return db(a,b).length>0}}),contains:fb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:fb(function(a){return U.test(a||\"\")||db.error(\"unsupported lang: \"+a),a=a.replace(ab,bb).toLowerCase(),function(b){var c;do if(c=n?b.lang:b.getAttribute(\"xml:lang\")||b.getAttribute(\"lang\"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+\"-\");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===m},focus:function(a){return a===l.activeElement&&(!l.hasFocus||l.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return\"input\"===b&&!!a.checked||\"option\"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return X.test(a.nodeName)},input:function(a){return W.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return\"input\"===b&&\"button\"===a.type||\"button\"===b},text:function(a){var b;return\"input\"===a.nodeName.toLowerCase()&&\"text\"===a.type&&(null==(b=a.getAttribute(\"type\"))||\"text\"===b.toLowerCase())},first:lb(function(){return[0]}),last:lb(function(a,b){return[b-1]}),eq:lb(function(a,b,c){return[0>c?c+b:c]}),even:lb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:lb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:lb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:lb(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function qb(a,b,c){var d=b.dir,e=c&&\"parentNode\"===d,f=v++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[u,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[s]||(b[s]={}),(h=i[d])&&h[0]===u&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function rb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function sb(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function tb(a,b,c,d,e,f){return d&&!d[s]&&(d=tb(d)),e&&!e[s]&&(e=tb(e,f)),fb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||wb(b||\"*\",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:sb(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=sb(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?I.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=sb(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):G.apply(g,r)})}function ub(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],i=g||d.relative[\" \"],j=g?1:0,k=qb(function(a){return a===b},i,!0),l=qb(function(a){return I.call(b,a)>-1},i,!0),m=[function(a,c,d){return!g&&(d||c!==h)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>j;j++)if(c=d.relative[a[j].type])m=[qb(rb(m),c)];else{if(c=d.filter[a[j].type].apply(null,a[j].matches),c[s]){for(e=++j;f>e;e++)if(d.relative[a[e].type])break;return tb(j>1&&rb(m),j>1&&pb(a.slice(0,j-1).concat({value:\" \"===a[j-2].type?\"*\":\"\"})).replace(P,\"$1\"),c,e>j&&ub(a.slice(j,e)),f>e&&ub(a=a.slice(e)),f>e&&pb(a))}m.push(c)}return rb(m)}function vb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,i,j,k){var m,n,o,p=0,q=\"0\",r=f&&[],s=[],t=h,v=f||e&&d.find.TAG(\"*\",k),w=u+=null==t?1:Math.random()||.1,x=v.length;for(k&&(h=g!==l&&g);q!==x&&null!=(m=v[q]);q++){if(e&&m){n=0;while(o=a[n++])if(o(m,g,i)){j.push(m);break}k&&(u=w)}c&&((m=!o&&m)&&p--,f&&r.push(m))}if(p+=q,c&&q!==p){n=0;while(o=b[n++])o(r,s,g,i);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=E.call(j));s=sb(s)}G.apply(j,s),k&&!f&&s.length>0&&p+b.length>1&&db.uniqueSort(j)}return k&&(u=w,h=t),r};return c?fb(f):f}g=db.compile=function(a,b){var c,d=[],e=[],f=y[a+\" \"];if(!f){b||(b=ob(a)),c=b.length;while(c--)f=ub(b[c]),f[s]?d.push(f):e.push(f);f=y(a,vb(e,d))}return f};function wb(a,b,c){for(var d=0,e=b.length;e>d;d++)db(a,b[d],c);return c}function xb(a,b,e,f){var h,i,j,k,l,m=ob(a);if(!f&&1===m.length){if(i=m[0]=m[0].slice(0),i.length>2&&\"ID\"===(j=i[0]).type&&c.getById&&9===b.nodeType&&n&&d.relative[i[1].type]){if(b=(d.find.ID(j.matches[0].replace(ab,bb),b)||[])[0],!b)return e;a=a.slice(i.shift().value.length)}h=V.needsContext.test(a)?0:i.length;while(h--){if(j=i[h],d.relative[k=j.type])break;if((l=d.find[k])&&(f=l(j.matches[0].replace(ab,bb),$.test(i[0].type)&&mb(b.parentNode)||b))){if(i.splice(h,1),a=f.length&&pb(i),!a)return G.apply(e,f),e;break}}}return g(a,m)(f,b,!n,e,$.test(a)&&mb(b.parentNode)||b),e}return c.sortStable=s.split(\"\").sort(z).join(\"\")===s,c.detectDuplicates=!!j,k(),c.sortDetached=gb(function(a){return 1&a.compareDocumentPosition(l.createElement(\"div\"))}),gb(function(a){return a.innerHTML=\"
\",\"#\"===a.firstChild.getAttribute(\"href\")})||hb(\"type|href|height|width\",function(a,b,c){return c?void 0:a.getAttribute(b,\"type\"===b.toLowerCase()?1:2)}),c.attributes&&gb(function(a){return a.innerHTML=\"\",a.firstChild.setAttribute(\"value\",\"\"),\"\"===a.firstChild.getAttribute(\"value\")})||hb(\"value\",function(a,b,c){return c||\"input\"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),gb(function(a){return null==a.getAttribute(\"disabled\")})||hb(J,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),db}(a);n.find=t,n.expr=t.selectors,n.expr[\":\"]=n.expr.pseudos,n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=n.expr.match.needsContext,v=/^<(\\w+)\\s*\\/?>(?:<\\/\\1>|)$/,w=/^.[^:#\\[\\.,]*$/;function x(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if(\"string\"==typeof b){if(w.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return n.inArray(a,b)>=0!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=\":not(\"+a+\")\"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if(\"string\"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;e>b;b++)if(n.contains(d[b],this))return!0}));for(b=0;e>b;b++)n.find(a,d[b],c);return c=this.pushStack(e>1?n.unique(c):c),c.selector=this.selector?this.selector+\" \"+a:a,c},filter:function(a){return this.pushStack(x(this,a||[],!1))},not:function(a){return this.pushStack(x(this,a||[],!0))},is:function(a){return!!x(this,\"string\"==typeof a&&u.test(a)?n(a):a||[],!1).length}});var y,z=a.document,A=/^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]*))$/,B=n.fn.init=function(a,b){var c,d;if(!a)return this;if(\"string\"==typeof a){if(c=\"<\"===a.charAt(0)&&\">\"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:A.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||y).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:z,!0)),v.test(c[1])&&n.isPlainObject(b))for(c in b)n.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}if(d=z.getElementById(c[2]),d&&d.parentNode){if(d.id!==c[2])return y.find(a);this.length=1,this[0]=d}return this.context=z,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?\"undefined\"!=typeof y.ready?y.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};B.prototype=n.fn,y=n(z);var C=/^(?:parents|prev(?:Until|All))/,D={children:!0,contents:!0,next:!0,prev:!0};n.extend({dir:function(a,b,c){var d=[],e=a[b];while(e&&9!==e.nodeType&&(void 0===c||1!==e.nodeType||!n(e).is(c)))1===e.nodeType&&d.push(e),e=e[b];return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),n.fn.extend({has:function(a){var b,c=n(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(n.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=u.test(a)||\"string\"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.unique(f):f)},index:function(a){return a?\"string\"==typeof a?n.inArray(this[0],n(a)):n.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.unique(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function E(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return n.dir(a,\"parentNode\")},parentsUntil:function(a,b,c){return n.dir(a,\"parentNode\",c)},next:function(a){return E(a,\"nextSibling\")},prev:function(a){return E(a,\"previousSibling\")},nextAll:function(a){return n.dir(a,\"nextSibling\")},prevAll:function(a){return n.dir(a,\"previousSibling\")},nextUntil:function(a,b,c){return n.dir(a,\"nextSibling\",c)},prevUntil:function(a,b,c){return n.dir(a,\"previousSibling\",c)},siblings:function(a){return n.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return n.sibling(a.firstChild)},contents:function(a){return n.nodeName(a,\"iframe\")?a.contentDocument||a.contentWindow.document:n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return\"Until\"!==a.slice(-5)&&(d=c),d&&\"string\"==typeof d&&(e=n.filter(d,e)),this.length>1&&(D[a]||(e=n.unique(e)),C.test(a)&&(e=e.reverse())),this.pushStack(e)}});var F=/\\S+/g,G={};function H(a){var b=G[a]={};return n.each(a.match(F)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a=\"string\"==typeof a?G[a]||H(a):n.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(c=a.memory&&l,d=!0,f=g||0,g=0,e=h.length,b=!0;h&&e>f;f++)if(h[f].apply(l[0],l[1])===!1&&a.stopOnFalse){c=!1;break}b=!1,h&&(i?i.length&&j(i.shift()):c?h=[]:k.disable())},k={add:function(){if(h){var d=h.length;!function f(b){n.each(b,function(b,c){var d=n.type(c);\"function\"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&\"string\"!==d&&f(c)})}(arguments),b?e=h.length:c&&(g=d,j(c))}return this},remove:function(){return h&&n.each(arguments,function(a,c){var d;while((d=n.inArray(c,h,d))>-1)h.splice(d,1),b&&(e>=d&&e--,f>=d&&f--)}),this},has:function(a){return a?n.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],e=0,this},disable:function(){return h=i=c=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,c||k.disable(),this},locked:function(){return!i},fireWith:function(a,c){return!h||d&&!i||(c=c||[],c=[a,c.slice?c.slice():c],b?i.push(c):j(c)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!d}};return k},n.extend({Deferred:function(a){var b=[[\"resolve\",\"done\",n.Callbacks(\"once memory\"),\"resolved\"],[\"reject\",\"fail\",n.Callbacks(\"once memory\"),\"rejected\"],[\"notify\",\"progress\",n.Callbacks(\"memory\")]],c=\"pending\",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+\"With\"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+\"With\"](this===e?d:this,arguments),this},e[f[0]+\"With\"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&n.isFunction(a.promise)?e:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var I;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){if(a===!0?!--n.readyWait:!n.isReady){if(!z.body)return setTimeout(n.ready);n.isReady=!0,a!==!0&&--n.readyWait>0||(I.resolveWith(z,[n]),n.fn.trigger&&n(z).trigger(\"ready\").off(\"ready\"))}}});function J(){z.addEventListener?(z.removeEventListener(\"DOMContentLoaded\",K,!1),a.removeEventListener(\"load\",K,!1)):(z.detachEvent(\"onreadystatechange\",K),a.detachEvent(\"onload\",K))}function K(){(z.addEventListener||\"load\"===event.type||\"complete\"===z.readyState)&&(J(),n.ready())}n.ready.promise=function(b){if(!I)if(I=n.Deferred(),\"complete\"===z.readyState)setTimeout(n.ready);else if(z.addEventListener)z.addEventListener(\"DOMContentLoaded\",K,!1),a.addEventListener(\"load\",K,!1);else{z.attachEvent(\"onreadystatechange\",K),a.attachEvent(\"onload\",K);var c=!1;try{c=null==a.frameElement&&z.documentElement}catch(d){}c&&c.doScroll&&!function e(){if(!n.isReady){try{c.doScroll(\"left\")}catch(a){return setTimeout(e,50)}J(),n.ready()}}()}return I.promise(b)};var L=\"undefined\",M;for(M in n(l))break;l.ownLast=\"0\"!==M,l.inlineBlockNeedsLayout=!1,n(function(){var a,b,c=z.getElementsByTagName(\"body\")[0];c&&(a=z.createElement(\"div\"),a.style.cssText=\"border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px\",b=z.createElement(\"div\"),c.appendChild(a).appendChild(b),typeof b.style.zoom!==L&&(b.style.cssText=\"border:0;margin:0;width:1px;padding:1px;display:inline;zoom:1\",(l.inlineBlockNeedsLayout=3===b.offsetWidth)&&(c.style.zoom=1)),c.removeChild(a),a=b=null)}),function(){var a=z.createElement(\"div\");if(null==l.deleteExpando){l.deleteExpando=!0;try{delete a.test}catch(b){l.deleteExpando=!1}}a=null}(),n.acceptData=function(a){var b=n.noData[(a.nodeName+\" \").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute(\"classid\")===b};var N=/^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,O=/([A-Z])/g;function P(a,b,c){if(void 0===c&&1===a.nodeType){var d=\"data-\"+b.replace(O,\"-$1\").toLowerCase();if(c=a.getAttribute(d),\"string\"==typeof c){try{c=\"true\"===c?!0:\"false\"===c?!1:\"null\"===c?null:+c+\"\"===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}n.data(a,b,c)}else c=void 0}return c}function Q(a){var b;for(b in a)if((\"data\"!==b||!n.isEmptyObject(a[b]))&&\"toJSON\"!==b)return!1;return!0}function R(a,b,d,e){if(n.acceptData(a)){var f,g,h=n.expando,i=a.nodeType,j=i?n.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||\"string\"!=typeof b)return k||(k=i?a[h]=c.pop()||n.guid++:h),j[k]||(j[k]=i?{}:{toJSON:n.noop}),(\"object\"==typeof b||\"function\"==typeof b)&&(e?j[k]=n.extend(j[k],b):j[k].data=n.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[n.camelCase(b)]=d),\"string\"==typeof b?(f=g[b],null==f&&(f=g[n.camelCase(b)])):f=g,f}}function S(a,b,c){if(n.acceptData(a)){var d,e,f=a.nodeType,g=f?n.cache:a,h=f?a[n.expando]:n.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){n.isArray(b)?b=b.concat(n.map(b,n.camelCase)):b in d?b=[b]:(b=n.camelCase(b),b=b in d?[b]:b.split(\" \")),e=b.length;while(e--)delete d[b[e]];if(c?!Q(d):!n.isEmptyObject(d))return}(c||(delete g[h].data,Q(g[h])))&&(f?n.cleanData([a],!0):l.deleteExpando||g!=g.window?delete g[h]:g[h]=null)}}}n.extend({cache:{},noData:{\"applet \":!0,\"embed \":!0,\"object \":\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"},hasData:function(a){return a=a.nodeType?n.cache[a[n.expando]]:a[n.expando],!!a&&!Q(a)},data:function(a,b,c){return R(a,b,c)},removeData:function(a,b){return S(a,b)},_data:function(a,b,c){return R(a,b,c,!0)},_removeData:function(a,b){return S(a,b,!0)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=n.data(f),1===f.nodeType&&!n._data(f,\"parsedAttrs\"))){c=g.length;while(c--)d=g[c].name,0===d.indexOf(\"data-\")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d]));n._data(f,\"parsedAttrs\",!0)}return e}return\"object\"==typeof a?this.each(function(){n.data(this,a)}):arguments.length>1?this.each(function(){n.data(this,a,b)}):f?P(f,a,n.data(f,a)):void 0},removeData:function(a){return this.each(function(){n.removeData(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||\"fx\")+\"queue\",d=n._data(a,b),c&&(!d||n.isArray(c)?d=n._data(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||\"fx\";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};\"inprogress\"===e&&(e=c.shift(),d--),e&&(\"fx\"===b&&c.unshift(\"inprogress\"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+\"queueHooks\";return n._data(a,c)||n._data(a,c,{empty:n.Callbacks(\"once memory\").add(function(){n._removeData(a,b+\"queue\"),n._removeData(a,c)})})}}),n.fn.extend({queue:function(a,b){var c=2;return\"string\"!=typeof a&&(b=a,a=\"fx\",c--),arguments.lengthh;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},X=/^(?:checkbox|radio)$/i;!function(){var a=z.createDocumentFragment(),b=z.createElement(\"div\"),c=z.createElement(\"input\");if(b.setAttribute(\"className\",\"t\"),b.innerHTML=\"
a\",l.leadingWhitespace=3===b.firstChild.nodeType,l.tbody=!b.getElementsByTagName(\"tbody\").length,l.htmlSerialize=!!b.getElementsByTagName(\"link\").length,l.html5Clone=\"<:nav>\"!==z.createElement(\"nav\").cloneNode(!0).outerHTML,c.type=\"checkbox\",c.checked=!0,a.appendChild(c),l.appendChecked=c.checked,b.innerHTML=\"\",l.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue,a.appendChild(b),b.innerHTML=\"\",l.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,l.noCloneEvent=!0,b.attachEvent&&(b.attachEvent(\"onclick\",function(){l.noCloneEvent=!1}),b.cloneNode(!0).click()),null==l.deleteExpando){l.deleteExpando=!0;try{delete b.test}catch(d){l.deleteExpando=!1}}a=b=c=null}(),function(){var b,c,d=z.createElement(\"div\");for(b in{submit:!0,change:!0,focusin:!0})c=\"on\"+b,(l[b+\"Bubbles\"]=c in a)||(d.setAttribute(c,\"t\"),l[b+\"Bubbles\"]=d.attributes[c].expando===!1);d=null}();var Y=/^(?:input|select|textarea)$/i,Z=/^key/,$=/^(?:mouse|contextmenu)|click/,_=/^(?:focusinfocus|focusoutblur)$/,ab=/^([^.]*)(?:\\.(.+)|)$/;function bb(){return!0}function cb(){return!1}function db(){try{return z.activeElement}catch(a){}}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=n.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return typeof n===L||a&&n.event.triggered===a.type?void 0:n.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||\"\").match(F)||[\"\"],h=b.length;while(h--)f=ab.exec(b[h])||[],o=q=f[1],p=(f[2]||\"\").split(\".\").sort(),o&&(j=n.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=n.event.special[o]||{},l=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(\".\")},i),(m=g[o])||(m=g[o]=[],m.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent(\"on\"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,l):m.push(l),n.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n.hasData(a)&&n._data(a);if(r&&(k=r.events)){b=(b||\"\").match(F)||[\"\"],j=b.length;while(j--)if(h=ab.exec(b[j])||[],o=q=h[1],p=(h[2]||\"\").split(\".\").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=k[o]||[],h=h[2]&&new RegExp(\"(^|\\\\.)\"+p.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"),i=f=m.length;while(f--)g=m[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&(\"**\"!==d||!g.selector)||(m.splice(f,1),g.selector&&m.delegateCount--,l.remove&&l.remove.call(a,g));i&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(k)&&(delete r.handle,n._removeData(a,\"events\"))}},trigger:function(b,c,d,e){var f,g,h,i,k,l,m,o=[d||z],p=j.call(b,\"type\")?b.type:b,q=j.call(b,\"namespace\")?b.namespace.split(\".\"):[];if(h=l=d=d||z,3!==d.nodeType&&8!==d.nodeType&&!_.test(p+n.event.triggered)&&(p.indexOf(\".\")>=0&&(q=p.split(\".\"),p=q.shift(),q.sort()),g=p.indexOf(\":\")<0&&\"on\"+p,b=b[n.expando]?b:new n.Event(p,\"object\"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=q.join(\".\"),b.namespace_re=b.namespace?new RegExp(\"(^|\\\\.)\"+q.join(\"\\\\.(?:.*\\\\.|)\")+\"(\\\\.|$)\"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:n.makeArray(c,[b]),k=n.event.special[p]||{},e||!k.trigger||k.trigger.apply(d,c)!==!1)){if(!e&&!k.noBubble&&!n.isWindow(d)){for(i=k.delegateType||p,_.test(i+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),l=h;l===(d.ownerDocument||z)&&o.push(l.defaultView||l.parentWindow||a)}m=0;while((h=o[m++])&&!b.isPropagationStopped())b.type=m>1?i:k.bindType||p,f=(n._data(h,\"events\")||{})[b.type]&&n._data(h,\"handle\"),f&&f.apply(h,c),f=g&&h[g],f&&f.apply&&n.acceptData(h)&&(b.result=f.apply(h,c),b.result===!1&&b.preventDefault());if(b.type=p,!e&&!b.isDefaultPrevented()&&(!k._default||k._default.apply(o.pop(),c)===!1)&&n.acceptData(d)&&g&&d[p]&&!n.isWindow(d)){l=d[g],l&&(d[g]=null),n.event.triggered=p;try{d[p]()}catch(r){}n.event.triggered=void 0,l&&(d[g]=l)}return b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(n._data(this,\"events\")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,g=0;while((e=f.handlers[g++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(e.namespace))&&(a.handleObj=e,a.data=e.data,c=((n.event.special[e.origType]||{}).handle||e.handler).apply(f.elem,i),void 0!==c&&(a.result=c)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||\"click\"!==a.type))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||\"click\"!==a.type)){for(e=[],f=0;h>f;f++)d=b[f],c=d.selector+\" \",void 0===e[c]&&(e[c]=d.needsContext?n(c,this).index(i)>=0:n.find(c,this,null,[i]).length),e[c]&&e.push(d);e.length&&g.push({elem:i,handlers:e})}return h]\",\"i\"),ib=/^\\s+/,jb=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:]+)[^>]*)\\/>/gi,kb=/<([\\w:]+)/,lb=/\\s*$/g,sb={option:[1,\"\"],legend:[1,\"
\",\"
\"],area:[1,\"\",\"\"],param:[1,\"\",\"\"],thead:[1,\"\",\"
\"],tr:[2,\"\",\"
\"],col:[2,\"\",\"
\"],td:[3,\"\",\"
\"],_default:l.htmlSerialize?[0,\"\",\"\"]:[1,\"X
\",\"
\"]},tb=eb(z),ub=tb.appendChild(z.createElement(\"div\"));sb.optgroup=sb.option,sb.tbody=sb.tfoot=sb.colgroup=sb.caption=sb.thead,sb.th=sb.td;function vb(a,b){var c,d,e=0,f=typeof a.getElementsByTagName!==L?a.getElementsByTagName(b||\"*\"):typeof a.querySelectorAll!==L?a.querySelectorAll(b||\"*\"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||n.nodeName(d,b)?f.push(d):n.merge(f,vb(d,b));return void 0===b||b&&n.nodeName(a,b)?n.merge([a],f):f}function wb(a){X.test(a.type)&&(a.defaultChecked=a.checked)}function xb(a,b){return n.nodeName(a,\"table\")&&n.nodeName(11!==b.nodeType?b:b.firstChild,\"tr\")?a.getElementsByTagName(\"tbody\")[0]||a.appendChild(a.ownerDocument.createElement(\"tbody\")):a}function yb(a){return a.type=(null!==n.find.attr(a,\"type\"))+\"/\"+a.type,a}function zb(a){var b=qb.exec(a.type);return b?a.type=b[1]:a.removeAttribute(\"type\"),a}function Ab(a,b){for(var c,d=0;null!=(c=a[d]);d++)n._data(c,\"globalEval\",!b||n._data(b[d],\"globalEval\"))}function Bb(a,b){if(1===b.nodeType&&n.hasData(a)){var c,d,e,f=n._data(a),g=n._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)n.event.add(b,c,h[c][d])}g.data&&(g.data=n.extend({},g.data))}}function Cb(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!l.noCloneEvent&&b[n.expando]){e=n._data(b);for(d in e.events)n.removeEvent(b,d,e.handle);b.removeAttribute(n.expando)}\"script\"===c&&b.text!==a.text?(yb(b).text=a.text,zb(b)):\"object\"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),l.html5Clone&&a.innerHTML&&!n.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):\"input\"===c&&X.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):\"option\"===c?b.defaultSelected=b.selected=a.defaultSelected:(\"input\"===c||\"textarea\"===c)&&(b.defaultValue=a.defaultValue)}}n.extend({clone:function(a,b,c){var d,e,f,g,h,i=n.contains(a.ownerDocument,a);if(l.html5Clone||n.isXMLDoc(a)||!hb.test(\"<\"+a.nodeName+\">\")?f=a.cloneNode(!0):(ub.innerHTML=a.outerHTML,ub.removeChild(f=ub.firstChild)),!(l.noCloneEvent&&l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(d=vb(f),h=vb(a),g=0;null!=(e=h[g]);++g)d[g]&&Cb(e,d[g]);if(b)if(c)for(h=h||vb(a),d=d||vb(f),g=0;null!=(e=h[g]);g++)Bb(e,d[g]);else Bb(a,f);return d=vb(f,\"script\"),d.length>0&&Ab(d,!i&&vb(a,\"script\")),d=h=e=null,f},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k,m=a.length,o=eb(b),p=[],q=0;m>q;q++)if(f=a[q],f||0===f)if(\"object\"===n.type(f))n.merge(p,f.nodeType?[f]:f);else if(mb.test(f)){h=h||o.appendChild(b.createElement(\"div\")),i=(kb.exec(f)||[\"\",\"\"])[1].toLowerCase(),k=sb[i]||sb._default,h.innerHTML=k[1]+f.replace(jb,\"<$1>\")+k[2],e=k[0];while(e--)h=h.lastChild;if(!l.leadingWhitespace&&ib.test(f)&&p.push(b.createTextNode(ib.exec(f)[0])),!l.tbody){f=\"table\"!==i||lb.test(f)?\"\"!==k[1]||lb.test(f)?0:h:h.firstChild,e=f&&f.childNodes.length;while(e--)n.nodeName(j=f.childNodes[e],\"tbody\")&&!j.childNodes.length&&f.removeChild(j)}n.merge(p,h.childNodes),h.textContent=\"\";while(h.firstChild)h.removeChild(h.firstChild);h=o.lastChild}else p.push(b.createTextNode(f));h&&o.removeChild(h),l.appendChecked||n.grep(vb(p,\"input\"),wb),q=0;while(f=p[q++])if((!d||-1===n.inArray(f,d))&&(g=n.contains(f.ownerDocument,f),h=vb(o.appendChild(f),\"script\"),g&&Ab(h),c)){e=0;while(f=h[e++])pb.test(f.type||\"\")&&c.push(f)}return h=null,o},cleanData:function(a,b){for(var d,e,f,g,h=0,i=n.expando,j=n.cache,k=l.deleteExpando,m=n.event.special;null!=(d=a[h]);h++)if((b||n.acceptData(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)m[e]?n.event.remove(d,e):n.removeEvent(d,e,g.handle);j[f]&&(delete j[f],k?delete d[i]:typeof d.removeAttribute!==L?d.removeAttribute(i):d[i]=null,c.push(f))}}}),n.fn.extend({text:function(a){return W(this,function(a){return void 0===a?n.text(this):this.empty().append((this[0]&&this[0].ownerDocument||z).createTextNode(a))},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=xb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=xb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?n.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||n.cleanData(vb(c)),c.parentNode&&(b&&n.contains(c.ownerDocument,c)&&Ab(vb(c,\"script\")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&n.cleanData(vb(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&n.nodeName(a,\"select\")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return W(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(gb,\"\"):void 0;if(!(\"string\"!=typeof a||nb.test(a)||!l.htmlSerialize&&hb.test(a)||!l.leadingWhitespace&&ib.test(a)||sb[(kb.exec(a)||[\"\",\"\"])[1].toLowerCase()])){a=a.replace(jb,\"<$1>\");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(vb(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,n.cleanData(vb(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,k=this.length,m=this,o=k-1,p=a[0],q=n.isFunction(p);if(q||k>1&&\"string\"==typeof p&&!l.checkClone&&ob.test(p))return this.each(function(c){var d=m.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(k&&(i=n.buildFragment(a,this[0].ownerDocument,!1,this),c=i.firstChild,1===i.childNodes.length&&(i=c),c)){for(g=n.map(vb(i,\"script\"),yb),f=g.length;k>j;j++)d=i,j!==o&&(d=n.clone(d,!0,!0),f&&n.merge(g,vb(d,\"script\"))),b.call(this[j],d,j);if(f)for(h=g[g.length-1].ownerDocument,n.map(g,zb),j=0;f>j;j++)d=g[j],pb.test(d.type||\"\")&&!n._data(d,\"globalEval\")&&n.contains(h,d)&&(d.src?n._evalUrl&&n._evalUrl(d.src):n.globalEval((d.text||d.textContent||d.innerHTML||\"\").replace(rb,\"\")));i=c=null}return this}}),n.each({appendTo:\"append\",prependTo:\"prepend\",insertBefore:\"before\",insertAfter:\"after\",replaceAll:\"replaceWith\"},function(a,b){n.fn[a]=function(a){for(var c,d=0,e=[],g=n(a),h=g.length-1;h>=d;d++)c=d===h?this:this.clone(!0),n(g[d])[b](c),f.apply(e,c.get());return this.pushStack(e)}});var Db,Eb={};function Fb(b,c){var d=n(c.createElement(b)).appendTo(c.body),e=a.getDefaultComputedStyle?a.getDefaultComputedStyle(d[0]).display:n.css(d[0],\"display\");return d.detach(),e}function Gb(a){var b=z,c=Eb[a];return c||(c=Fb(a,b),\"none\"!==c&&c||(Db=(Db||n(\"\'),c.attr(\"height\",h),c.attr(\"width\",g),\"youtube\"===f.type?c.attr(\"src\",\"//www.youtube.com/embed/\"+f.id+\"?autoplay=1&rel=0&v=\"+f.id):\"vimeo\"===f.type?c.attr(\"src\",\"//player.vimeo.com/video/\"+f.id+\"?autoplay=1\"):\"vzaar\"===f.type&&c.attr(\"src\",\"//view.vzaar.com/\"+f.id+\"/player?autoplay=true\"),a(c).wrap(\'
\').insertAfter(e.find(\".owl-video\")),this._playing=e.addClass(\"owl-video-playing\"))},e.prototype.isInFullScreen=function(){var b=c.fullscreenElement||c.mozFullScreenElement||c.webkitFullscreenElement;return b&&a(b).parent().hasClass(\"owl-video-frame\")},e.prototype.destroy=function(){var a,b;this._core.$element.off(\"click.owl.video\");for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))\"function\"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Video=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this.core=b,this.core.options=a.extend({},e.Defaults,this.core.options),this.swapping=!0,this.previous=d,this.next=d,this.handlers={\"change.owl.carousel\":a.proxy(function(a){a.namespace&&\"position\"==a.property.name&&(this.previous=this.core.current(),this.next=a.property.value)},this),\"drag.owl.carousel dragged.owl.carousel translated.owl.carousel\":a.proxy(function(a){a.namespace&&(this.swapping=\"translated\"==a.type)},this),\"translate.owl.carousel\":a.proxy(function(a){a.namespace&&this.swapping&&(this.core.options.animateOut||this.core.options.animateIn)&&this.swap()},this)},this.core.$element.on(this.handlers)};e.Defaults={animateOut:!1,animateIn:!1},e.prototype.swap=function(){if(1===this.core.settings.items&&a.support.animation&&a.support.transition){this.core.speed(0);var b,c=a.proxy(this.clear,this),d=this.core.$stage.children().eq(this.previous),e=this.core.$stage.children().eq(this.next),f=this.core.settings.animateIn,g=this.core.settings.animateOut;this.core.current()!==this.previous&&(g&&(b=this.core.coordinates(this.previous)-this.core.coordinates(this.next),d.one(a.support.animation.end,c).css({left:b+\"px\"}).addClass(\"animated owl-animated-out\").addClass(g)),f&&e.one(a.support.animation.end,c).addClass(\"animated owl-animated-in\").addClass(f))}},e.prototype.clear=function(b){a(b.target).css({left:\"\"}).removeClass(\"animated owl-animated-out owl-animated-in\").removeClass(this.core.settings.animateIn).removeClass(this.core.settings.animateOut),this.core.onTransitionEnd()},e.prototype.destroy=function(){var a,b;for(a in this.handlers)this.core.$element.off(a,this.handlers[a]);for(b in Object.getOwnPropertyNames(this))\"function\"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.Animate=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){var e=function(b){this._core=b,this._call=null,this._time=0,this._timeout=0,this._paused=!0,this._handlers={\"changed.owl.carousel\":a.proxy(function(a){a.namespace&&\"settings\"===a.property.name?this._core.settings.autoplay?this.play():this.stop():a.namespace&&\"position\"===a.property.name&&this._paused&&(this._time=0)},this),\"initialized.owl.carousel\":a.proxy(function(a){a.namespace&&this._core.settings.autoplay&&this.play()},this),\"play.owl.autoplay\":a.proxy(function(a,b,c){a.namespace&&this.play(b,c)},this),\"stop.owl.autoplay\":a.proxy(function(a){a.namespace&&this.stop()},this),\"mouseover.owl.autoplay\":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is(\"rotating\")&&this.pause()},this),\"mouseleave.owl.autoplay\":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is(\"rotating\")&&this.play()},this),\"touchstart.owl.core\":a.proxy(function(){this._core.settings.autoplayHoverPause&&this._core.is(\"rotating\")&&this.pause()},this),\"touchend.owl.core\":a.proxy(function(){this._core.settings.autoplayHoverPause&&this.play()},this)},this._core.$element.on(this._handlers),this._core.options=a.extend({},e.Defaults,this._core.options)};e.Defaults={autoplay:!1,autoplayTimeout:5e3,autoplayHoverPause:!1,autoplaySpeed:!1},e.prototype._next=function(d){this._call=b.setTimeout(a.proxy(this._next,this,d),this._timeout*(Math.round(this.read()/this._timeout)+1)-this.read()),this._core.is(\"interacting\")||c.hidden||this._core.next(d||this._core.settings.autoplaySpeed)},e.prototype.read=function(){return(new Date).getTime()-this._time},e.prototype.play=function(c,d){var e;this._core.is(\"rotating\")||this._core.enter(\"rotating\"),c=c||this._core.settings.autoplayTimeout,e=Math.min(this._time%(this._timeout||c),c),this._paused?(this._time=this.read(),this._paused=!1):b.clearTimeout(this._call),this._time+=this.read()%c-e,this._timeout=c,this._call=b.setTimeout(a.proxy(this._next,this,d),c-e)},e.prototype.stop=function(){this._core.is(\"rotating\")&&(this._time=0,this._paused=!0,b.clearTimeout(this._call),this._core.leave(\"rotating\"))},e.prototype.pause=function(){this._core.is(\"rotating\")&&!this._paused&&(this._time=this.read(),this._paused=!0,b.clearTimeout(this._call))},e.prototype.destroy=function(){var a,b;this.stop();for(a in this._handlers)this._core.$element.off(a,this._handlers[a]);for(b in Object.getOwnPropertyNames(this))\"function\"!=typeof this[b]&&(this[b]=null)},a.fn.owlCarousel.Constructor.Plugins.autoplay=e}(window.Zepto||window.jQuery,window,document),function(a,b,c,d){\"use strict\";var e=function(b){this._core=b,this._initialized=!1,this._pages=[],this._controls={},this._templates=[],this.$element=this._core.$element,this._overrides={next:this._core.next,prev:this._core.prev,to:this._core.to},this._handlers={\"prepared.owl.carousel\":a.proxy(function(b){b.namespace&&this._core.settings.dotsData&&this._templates.push(\'
\'+a(b.content).find(\"[data-dot]\").addBack(\"[data-dot]\").attr(\"data-dot\")+\"
\")},this),\"added.owl.carousel\":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,0,this._templates.pop())},this),\"remove.owl.carousel\":a.proxy(function(a){a.namespace&&this._core.settings.dotsData&&this._templates.splice(a.position,1)},this),\"changed.owl.carousel\":a.proxy(function(a){a.namespace&&\"position\"==a.property.name&&this.draw()},this),\"initialized.owl.carousel\":a.proxy(function(a){a.namespace&&!this._initialized&&(this._core.trigger(\"initialize\",null,\"navigation\"),this.initialize(),this.update(),this.draw(),this._initialized=!0,this._core.trigger(\"initialized\",null,\"navigation\"))},this),\"refreshed.owl.carousel\":a.proxy(function(a){a.namespace&&this._initialized&&(this._core.trigger(\"refresh\",null,\"navigation\"),this.update(),this.draw(),this._core.trigger(\"refreshed\",null,\"navigation\"))},this)},this._core.options=a.extend({},e.Defaults,this._core.options),this.$element.on(this._handlers)};e.Defaults={nav:!1,navText:[\'\',\'\'],navSpeed:!1,navElement:\'button type=\"button\" role=\"presentation\"\',navContainer:!1,navContainerClass:\"owl-nav\",navClass:[\"owl-prev\",\"owl-next\"],slideBy:1,dotClass:\"owl-dot\",dotsClass:\"owl-dots\",dots:!0,dotsEach:!1,dotsData:!1,dotsSpeed:!1,dotsContainer:!1},e.prototype.initialize=function(){var b,c=this._core.settings;this._controls.$relative=(c.navContainer?a(c.navContainer):a(\"
\").addClass(c.navContainerClass).appendTo(this.$element)).addClass(\"disabled\"),this._controls.$previous=a(\"<\"+c.navElement+\">\").addClass(c.navClass[0]).html(c.navText[0]).prependTo(this._controls.$relative).on(\"click\",a.proxy(function(a){this.prev(c.navSpeed)},this)),this._controls.$next=a(\"<\"+c.navElement+\">\").addClass(c.navClass[1]).html(c.navText[1]).appendTo(this._controls.$relative).on(\"click\",a.proxy(function(a){this.next(c.navSpeed)},this)),c.dotsData||(this._templates=[a(\'
\');var n=\"video, rs-poster, .tp-video-play-button\";void 0!==s.poster&&s.controls&&(n=\".tp-video-play-button\"),e.find(n).on(\"click\",function(){!1===s.loop&&s.esec>0&&s.esec<=s.video.currentTime||(e.hasClass(\"videoisplaying\")?i.stopVideo(e,t):i.playVideo(e,t,!0))})}(e.hasClass(\"rs-fsv\")||s.bgvideo)&&(s.bgvideo||e.hasClass(\"rs-fsv\")?(s.html5vid.addClass(\"fullcoveredvideo\"),void 0!==s.ratio&&1!=s.ratio.split(\":\").length||(s.ratio=\"16:9\"),i.prepareCoveredVideo(t)):s.html5vid.addClass(\"rs-fsv\")),a(s.video,\"canplaythrough\",function(){i.preLoadAudioDone(e,t,\"canplaythrough\")}),a(s.video,\"canplay\",function(){i.preLoadAudioDone(e,t,\"canplay\")}),a(s.video,\"progress\",function(){i.preLoadAudioDone(e,t,\"progress\")}),a(s.video,\"pause\",function(){i.ISM&&b(s,1)}),a(s.video,\"timeupdate\",function(e){this.BGrendered=!0,p(t,s),-1===s.esec&&s.loop&&1==window.isSafari11&&(s.esec=s.video.duration-.075),void 0!==s.lastCurrentTime?s.fps=s.video.currentTime-s.lastCurrentTime:s.fps=.1,s.lastCurrentTime=s.video.currentTime,0!=s.esec&&-1!=s.esec&&s.esec1?s.volcache/100:s.volcache,\"mute\"==s.volume?s.video.muted=!0:null!=s.volcache&&(s.video.volume=s.volcache)),e.addClass(\"videoisplaying\"),y(e,t),clearTimeout(s.showCoverSoon),!0!==s.pausetimer||\"audio\"==s.tag?(i[t].stopByVideo=!1,i[t].c.trigger(\"revolution.slide.onvideostop\",r(s.video,\"html5\",s))):(i[t].stopByVideo=!0,i[t].c.trigger(\"revolution.slide.onvideoplay\",r(s.video,\"html5\",s))),s.pausetimer&&\"playing\"==i[t].sliderstatus&&(i[t].stopByVideo=!0,i[t].c.trigger(\"stoptimer\")),i.toggleState(s.videotoggledby)}),a(s.video,\"seeked\",function(){s.seeking=!1}),a(s.video,\"seeking\",function(){s.seeking=!0}),a(s.video,\"pause\",function(a){s.cSS=\"paused\",p(t,s),e.removeClass(\"videoisplaying\"),s.bgvideo&&(s.nBG.drawVideoCanvasImagesRecall=!1,s.nBG.videoisplaying=!1),i[t].stopByVideo=!1,w(e,t),\"audio\"!=s.tag&&i[t].c.trigger(\"starttimer\"),i[t].c.trigger(\"revolution.slide.onvideostop\",r(s.video,\"html5\",s)),null!=i[t].videoIsPlaying&&i[t].videoIsPlaying.attr(\"id\")!=e.attr(\"id\")||i.unToggleState(s.videotoggledby)}),a(s.video,\"ended\",function(){s.cSS=\"paused\",h(),p(t,s),w(e,t),i[t].stopByVideo=!1,w(e,t),\"audio\"!=s.tag&&i[t].c.trigger(\"starttimer\"),i[t].c.trigger(\"revolution.slide.onvideostop\",r(s.video,\"html5\",e.data())),s.nse&&s.video.currentTime>0&&(1==!i[t].jcnah&&(s.nseTriggered=!0,i[t].c.revnext(),i[t].jcnah=!0),setTimeout(function(){i[t].jcnah=!1},1500)),e.removeClass(\"videoisplaying\"),s.bgvideo&&(s.nBG.drawVideoCanvasImagesRecall=!1,s.nBG.videoisplaying=!1),!0!==i[t].inviewport&&void 0!==i[t].inviewport||(i[t].lastplayedvideos=[])})},v=function(e){return\"t\"===e||!0===e||\"true\"===e||\"f\"!==e&&!1!==e&&\"false\"!==e&&e},f=function(e,i,a){e.audio=\"audio\"===i;var r=void 0===e.video?[]:e.video.split(\";\"),o={volume:e.audio?1:\"mute\",pload:\"auto\",ratio:\"16:9\",loop:!0,aplay:\"true\",fitCover:!0,afs:!0,controls:!1,nse:!0,npom:!1,opom:!1,inline:!0,notonmobile:!1,start:-1,end:-1,doverlay:\"none\",doverlaysize:1,doverlaycolora:\"transparent\",doverlaycolorb:\"#000000\",scop:!1,rwd:!0,speed:1,ploadwait:5,stopAV:1!==e.bgvideo,noInt:!1,volcache:75};for(var s in r)if(r.hasOwnProperty(s)){var n=r[s].split(\":\");switch(n[0]){case\"v\":o.volume=n[1];break;case\"vd\":o.volcache=n[1];break;case\"p\":o.pload=n[1];break;case\"ar\":o.ratio=n[1]+(void 0!==n[2]?\":\"+n[2]:\"\");break;case\"ap\":o.aplay=v(n[1]);break;case\"vfc\":o.fitCover=v(n[1]);break;case\"afs\":o.afs=v(n[1]);break;case\"vc\":o.controls=n[1];break;case\"nse\":o.nse=v(n[1]);break;case\"npom\":o.npom=v(n[1]);break;case\"opom\":o.opom=v(n[1]);break;case\"t\":o.vtype=n[1];break;case\"inl\":o.inline=v(n[1]);break;case\"nomo\":o.notonmobile=v(n[1]);break;case\"sta\":o.start=n[1]+(void 0!==n[2]?\":\"+n[2]:\"\");break;case\"end\":o.end=n[1]+(void 0!==n[2]?\":\"+n[2]:\"\");break;case\"do\":o.doverlay=n[1];break;case\"dos\":o.doverlaysize=n[1];break;case\"doca\":o.doverlaycolora=n[1];break;case\"docb\":o.doverlaycolorb=n[1];break;case\"scop\":o.scop=v(n[1]);break;case\"rwd\":o.rwd=v(n[1]);break;case\"sp\":o.speed=n[1];break;case\"vw\":o.ploadwait=parseInt(n[1],0)||5;break;case\"sav\":o.stopAV=v(n[1]);break;case\"noint\":o.noInt=v(n[1]);break;case\"l\":o.loopcache=n[1],o.loop=\"loop\"===n[1]||\"loopandnoslidestop\"===n[1]||\"none\"!==n[1]&&v(n[1]);break;case\"ptimer\":o.pausetimer=v(n[1]);break;case\"sat\":o.waitToSlideTrans=v(n[1])}}return null==e.mp4&&null==e.webm&&(o.fitCover=!1),void 0!==e.bgvideo&&(o.bgvideo=e.bgvideo),o.noInt&&(o.controls=!1),void 0!==e.mp4&&(o.mp4=e.mp4),void 0!==e.videomp4&&(o.mp4=e.videomp4),void 0!==e.ytid&&(o.ytid=e.ytid),void 0!==e.ogv&&(o.ogv=e.ogv),void 0!==e.webm&&(o.webm=e.webm),void 0!==e.vimeoid&&(o.vimeoid=e.vimeoid),void 0!==e.vatr&&(o.vatr=e.vatr),void 0!==e.videoattributes&&(o.vatr=e.videoattributes),void 0!==e.poster&&(o.poster=e.poster),o.slideid=a,o.aplay=\"true\"===o.aplay||o.aplay,1===o.bgvideo&&(o.volume=\"mute\"),o.ssec=t(o.start),o.esec=t(o.end),o.pausetimer=void 0===o.pausetimer?\"loopandnoslidestop\"!==o.loopcache:o.pausetimer,o.inColumn=e._incolumn,o.audio=e.audio,!0!==o.loop&&\"true\"!==o.loop||!0!==o.nse&&\"true\"!==o.nse||(o.loop=!1),o},y=function(e,t){if(i[t].playingvideos=void 0===i[t].playingvideos?new Array:i[t].playingvideos,i[t].videos[e[0].id].stopAV&&void 0!==i[t].playingvideos&&i[t].playingvideos.length>0)for(var a in i[t].lastplayedvideos=jQuery.extend(!0,[],i[t].playingvideos),i[t].playingvideos)i[t].playingvideos.hasOwnProperty(a)&&i.stopVideo(i[t].playingvideos[a],t);i[t].playingvideos.push(e),i[t].videoIsPlaying=e},w=function(e,t){void 0!==i[t]&&void 0!==i[t]&&null!=i[t].playingvideos&&jQuery.inArray(e,i[t].playingvideos)>=0&&i[t].playingvideos.splice(jQuery.inArray(e,i[t].playingvideos),1)},b=function(e,t){if(void 0!==e&&(void 0===t&&(t=0),i.ISM&&!e.bgvideo)){e.playPauseBtnTween&&e.playPauseBtnTween.kill&&e.playPauseBtnTween.kill();var a=i.closestNode(e.video,\"RS-LAYER\"),r=e.controls?1:0,o=e.controls?0:.3;e.controls&&e.poster&&0===t&&(o=0,r=0),a&&(e.playPauseBtnTween=tpGS.gsap.to(a.querySelector(\".tp-video-play-button\"),{duration:o,delay:r,opacity:t}))}};window.RS_MODULES=window.RS_MODULES||{},window.RS_MODULES.video={loaded:!0,version:\"6.5.6\"},window.RS_MODULES.checkMinimal&&window.RS_MODULES.checkMinimal()}(jQuery)','3b5765b59eeff6be06c33b6fe34fd36c',1,1,'2021-12-03 16:50:14','2022-01-19 20:36:58'),(261,'https://translucent.local/wp-content/themes/translucent/component-page/cloud-native/cloud-native.js','js','','$(document).ready(function(){$(\".cp-cloud-native__slider\").owlCarousel({items:1,loop:!0,nav:!1,dots:!0,autoplay:!0,margin:10,responsive:{0:{stagePadding:35,loop:!1,items:1,autoplay:!1,},600:{stagePadding:0,},},})})','6afbff761ab31832a1e9823cd1a71e08',1,1,'2021-12-03 16:50:21','2022-01-19 20:36:58'),(262,'https://translucent.local/wp-content/themes/translucent/component-page/our-process/our-process.js','js','','$(document).ready(function(){$(\".cp-our-process__slider\").owlCarousel({loop:!1,margin:30,nav:!1,responsive:{0:{items:1,},600:{items:3,},1000:{items:3,},},})})','64da8eca3113bfe14817e7a40552ea2a',1,1,'2021-12-03 16:50:22','2022-01-19 20:36:58'),(263,'https://translucent.local/wp-content/themes/translucent/component-page/services/services.js','js','','$(document).ready(function(){$(\"#collapseOne\").on(\"show.bs.collapse\",function(){$(\"#headingOne\").css(\"display\",\"none\");$(\"#headingTwo\").css(\"display\",\"block\");$(\"#headingThree\").css(\"display\",\"block\");$(\"#headingTwo\").css(\"background\",\"#23bbff\")});$(\"#collapseTwo\").on(\"show.bs.collapse\",function(){$(\"#headingOne\").css(\"display\",\"block\");$(\"#headingTwo\").css(\"display\",\"none\");$(\"#headingThree\").css(\"display\",\"block\")});$(\"#collapseThree\").on(\"show.bs.collapse\",function(){$(\"#headingOne\").css(\"display\",\"block\");$(\"#headingTwo\").css(\"display\",\"block\");$(\"#headingTwo\").css(\"background\",\"transparent linear-gradient(180deg, #27D9CB 0%, #A1F266 100%) 0% 0% no-repeat padding-box\");$(\"#headingThree\").css(\"display\",\"none\")})})','23311a1c714ab2b4abbf07cabcf273a9',1,1,'2021-12-03 16:50:22','2022-01-19 20:36:58'),(264,'https://translucent.local/wp-content/themes/translucent/component-page/our-clients/our-clients.js','js','','$(document).ready(function(){$(\".cp-our-clients__slider\").owlCarousel({loop:!1,margin:0,nav:!1,dots:!0,items:1,});var owlOurClients=$(\".cp-our-clients__slider\");owlOurClients.owlCarousel();$(\".cp-our-clients__button--our-clients\").click(function(){owlOurClients.trigger(\"next.owl.carousel\");$(\".cp-our-clients__button--our-clients\").css(\"display\",\"none\");$(\".cp-our-clients__button--our-partners\").css(\"display\",\"block\")});$(\".cp-our-clients__button--our-partners\").click(function(){owlOurClients.trigger(\"prev.owl.carousel\",[300]);$(\".cp-our-clients__button--our-clients\").css(\"display\",\"block\");$(\".cp-our-clients__button--our-partners\").css(\"display\",\"none\")});$(\".cp-our-clients__slider-child\").owlCarousel({loop:!0,nav:!1,dots:!1,autoplay:!0,margin:0,items:4,responsive:{0:{items:3,},600:{items:4,},1000:{items:4,},},})})','b968bd832ce68619d9817fa888d5eb2c',1,1,'2021-12-03 16:50:22','2022-01-19 20:36:58'),(282,'https://translucent.local/wp-content/plugins/youtube-embed-plus/scripts/ytprefs.min.js?ver=14.0.1.1','js','','(function(a,b){a._EPYT_=a._EPYT_||{ajaxurl:\"/wp-admin/admin-ajax.php\",security:\"\",gallery_scrolloffset:100,eppathtoscripts:\"/wp-content/plugins/youtube-embed-plus/scripts/\",eppath:\"/wp-content/plugins/youtube-embed-plus/\",epresponsiveselector:[\"iframe.__youtube_prefs_widget__\"],epdovol:!0,evselector:\'iframe.__youtube_prefs__[src], iframe[src*=\"youtube.com/embed/\"], iframe[src*=\"youtube-nocookie.com/embed/\"]\',stopMobileBuffer:!0,ajax_compat:!1,usingdefault:!0,ytapi_load:\"light\",pause_others:!1};a._EPYT_.touchmoved=!1;a._EPYT_.apiVideos=a._EPYT_.apiVideos||{};if(a.location.toString().indexOf(\"https://\")===0){a._EPYT_.ajaxurl=a._EPYT_.ajaxurl.replace(\"http://\",\"https://\")}a._EPYT_.pageLoaded=!1;b(a).on(\"load._EPYT_\",function(){a._EPYT_.pageLoaded=!0});if(!document.querySelectorAll){document.querySelectorAll=function(d){var f=document,e=f.documentElement.firstChild,c=f.createElement(\"STYLE\");e.appendChild(c);f.__qsaels=[];c.styleSheet.cssText=d+\"{x:expression(document.__qsaels.push(this))}\";a.scrollBy(0,0);return f.__qsaels}}if(typeof a._EPADashboard_===\"undefined\"){a._EPADashboard_={initStarted:!1,checkCount:0,onPlayerReady:function(h){try{if(typeof _EPYT_.epdovol!==\"undefined\"&&_EPYT_.epdovol){var f=parseInt(h.target.getIframe().getAttribute(\"data-vol\"));if(!isNaN(f)){if(f===0){h.target.mute()}else{if(h.target.isMuted()){h.target.unMute()}h.target.setVolume(f)}}}var e=parseInt(h.target.getIframe().getAttribute(\"data-epautoplay\"));if(!isNaN(e)&&e===1){h.target.playVideo()}}catch(g){}try{var d=h.target.getIframe().getAttribute(\"id\");a._EPYT_.apiVideos[d]=h.target}catch(c){}},onPlayerStateChange:function(f){var e=f.target.getIframe();if(a._EPYT_.pause_others&&f.data===a.YT.PlayerState.PLAYING){a._EPADashboard_.pauseOthers(f.target)}if(f.data===a.YT.PlayerState.PLAYING&&f.target.ponce!==!0&&e.src.indexOf(\"autoplay=1\")===-1){f.target.ponce=!0}if(f.data===a.YT.PlayerState.ENDED&&b(e).data(\"relstop\")==\"1\"){if(typeof f.target.stopVideo===\"function\"){f.target.stopVideo()}else{var g=b(e).clone(!0).off();g.attr(\"src\",a._EPADashboard_.cleanSrc(g.attr(\"src\").replace(\"autoplay=1\",\"autoplay=0\")));b(e).replaceWith(g);a._EPADashboard_.setupevents(g.attr(\"id\"));e=g.get(0)}}var c=b(e).closest(\".epyt-gallery\");if(!c.length){c=b(\"#\"+b(e).data(\"epytgalleryid\"))}if(c.length){var d=c.find(\".epyt-pagebutton\").first().data(\"autonext\")==\"1\";if(d&&f.data===a.YT.PlayerState.ENDED){var h=c.find(\".epyt-current-video\");if(!h.length){h=c.find(\".epyt-gallery-thumb\").first()}var i=h.find(\" ~ .epyt-gallery-thumb\").first();if(i.length){i.trigger(\"click\")}else{c.find(\'.epyt-pagebutton.epyt-next[data-pagetoken!=\"\"][data-pagetoken]\').first().trigger(\"click\")}}}},isMobile:function(){return/Mobi|Android/i.test(navigator.userAgent)},videoEqual:function(d,c){if(d.getIframe&&c.getIframe&&d.getIframe().id===c.getIframe().id){return!0}return!1},pauseOthers:function(e){if(!e){return}for(var d in a._EPYT_.apiVideos){var c=a._EPYT_.apiVideos[d];if(c&&typeof c.pauseVideo===\"function\"&&c!=e&&!_EPADashboard_.videoEqual(c,e)&&typeof c.getPlayerState===\"function\"&&[YT.PlayerState.BUFFERING,a.YT.PlayerState.PLAYING].indexOf(c.getPlayerState())>=0){c.pauseVideo()}}},justid:function(c){return new RegExp(\"[\\\\?&]v=([^&#]*)\").exec(c)[1]},setupevents:function(e){if(typeof(a.YT)!==\"undefined\"&&a.YT!==null&&a.YT.loaded){var c=document.getElementById(e);if(!c.epytsetupdone){a._EPADashboard_.log(\"Setting up YT API events: \"+e);c.epytsetupdone=!0;var d={events:{onReady:a._EPADashboard_.onPlayerReady,onStateChange:a._EPADashboard_.onPlayerStateChange},host:(c.src||\"\").indexOf(\"nocookie\")>0?\"https://www.youtube-nocookie.com\":\"https://www.youtube.com\"};return new a.YT.Player(e,d)}}},apiInit:function(){if(typeof(a.YT)!==\"undefined\"){a._EPADashboard_.initStarted=!0;var c=document.querySelectorAll(_EPYT_.evselector);for(var d=0;d=5||a._EPADashboard_.initStarted){clearInterval(a._EPADashboard_.checkInterval)}else{a._EPADashboard_.apiInit();a._EPADashboard_.log(\"YT API init check\")}},1000)},selectText:function(e){if(document.selection){var c=document.body.createTextRange();c.moveToElementText(e);c.select()}else{if(a.getSelection){var d=a.getSelection();var c=document.createRange();c.selectNode(e);d.removeAllRanges();d.addRange(c)}}},setVidSrc:function(c,d){if(c.is(\".epyt-facade\")){c.attr(\"data-facadesrc\",a._EPADashboard_.cleanSrc(d));c.trigger(\"click\")}else{c.attr(\"src\",a._EPADashboard_.cleanSrc(d));c.get(0).epytsetupdone=!1;a._EPADashboard_.setupevents(c.attr(\"id\"))}},cleanSrc:function(d){var c=d.replace(\"enablejsapi=1?enablejsapi=1\",\"enablejsapi=1\");return c},loadYTAPI:function(){if(typeof a.YT===\"undefined\"){if(a._EPYT_.ytapi_load!==\"never\"&&(a._EPYT_.ytapi_load===\"always\"||b(\'iframe[src*=\"youtube.com/embed/\"], iframe[data-src*=\"youtube.com/embed/\"], .__youtube_prefs__\').length)){var c=document.createElement(\"script\");c.src=\"https://www.youtube.com/iframe_api\";c.type=\"text/javascript\";document.getElementsByTagName(\"head\")[0].appendChild(c)}}else{if(a.YT.loaded){if(a._EPYT_.pageLoaded){a._EPADashboard_.apiInit();a._EPADashboard_.log(\"YT API available\")}else{b(a).on(\"load._EPYT_\",function(){a._EPADashboard_.apiInit();a._EPADashboard_.log(\"YT API available 2\")})}}}},pageReady:function(){b(\".epyt-gallery\").each(function(){var f=b(this);if(!f.data(\"epytevents\")||!b(\"body\").hasClass(\"block-editor-page\")){f.data(\"epytevents\",\"1\");var e=b(this).find(\"iframe, div.__youtube_prefs_gdpr__, div.epyt-facade\").first();var c=e.data(\"src\")||e.data(\"facadesrc\")||e.attr(\"src\");if(!c){c=e.data(\"ep-src\")}var d=b(this).find(\".epyt-gallery-list .epyt-gallery-thumb\").first().data(\"videoid\");if(typeof(c)!==\"undefined\"){c=c.replace(d,\"GALLERYVIDEOID\");f.data(\"ep-gallerysrc\",c)}else{if(e.hasClass(\"__youtube_prefs_gdpr__\")){f.data(\"ep-gallerysrc\",\"\")}}f.on(\"click touchend\",\".epyt-gallery-list .epyt-gallery-thumb\",function(k){e=f.find(\"iframe, div.__youtube_prefs_gdpr__, div.epyt-facade\").first();if(a._EPYT_.touchmoved){return}if(!b(this).hasClass(\"epyt-current-video\")){f.find(\".epyt-gallery-list .epyt-gallery-thumb\").removeClass(\"epyt-current-video\");b(this).addClass(\"epyt-current-video\");var g=b(this).data(\"videoid\");f.data(\"currvid\",g);var l=f.data(\"ep-gallerysrc\").replace(\"GALLERYVIDEOID\",g);var j=f.find(\".epyt-pagebutton\").first().data(\"thumbplay\");if(j!==\"0\"&&j!==0){if(l.indexOf(\"autoplay\")>0){l=l.replace(\"autoplay=0\",\"autoplay=1\")}else{l+=\"&autoplay=1\"}e.addClass(\"epyt-thumbplay\")}var h=Math.max(b(\"body\").scrollTop(),b(\"html\").scrollTop());var i=e.offset().top-parseInt(_EPYT_.gallery_scrolloffset);if(h>i){b(\"html, body\").animate({scrollTop:i},500,function(){a._EPADashboard_.setVidSrc(e,l)})}else{a._EPADashboard_.setVidSrc(e,l)}}}).on(\"touchmove\",function(g){a._EPYT_.touchmoved=!0}).on(\"touchstart\",function(){a._EPYT_.touchmoved=!1}).on(\"keydown\",\".epyt-gallery-list .epyt-gallery-thumb, .epyt-pagebutton\",function(h){var g=h.which;if((g===13)||(g===32)){h.preventDefault();b(this).trigger(\"click\")}});f.on(\"mouseenter\",\".epyt-gallery-list .epyt-gallery-thumb\",function(){b(this).addClass(\"hover\")});f.on(\"mouseleave\",\".epyt-gallery-list .epyt-gallery-thumb\",function(){b(this).removeClass(\"hover\")});f.on(\"click touchend\",\".epyt-pagebutton\",function(k){if(a._EPYT_.touchmoved){return}if(!f.find(\".epyt-gallery-list\").hasClass(\"epyt-loading\")){f.find(\".epyt-gallery-list\").addClass(\"epyt-loading\");var g=typeof(k.originalEvent)!==\"undefined\";var j={action:\"my_embedplus_gallery_page\",security:_EPYT_.security,options:{playlistId:b(this).data(\"playlistid\"),pageToken:b(this).data(\"pagetoken\"),pageSize:b(this).data(\"pagesize\"),columns:b(this).data(\"epcolumns\"),showTitle:b(this).data(\"showtitle\"),showPaging:b(this).data(\"showpaging\"),autonext:b(this).data(\"autonext\"),thumbplay:b(this).data(\"thumbplay\")}};var h=b(this).hasClass(\"epyt-next\");var i=parseInt(f.data(\"currpage\")+\"\");i+=h?1:-1;f.data(\"currpage\",i);b.post(_EPYT_.ajaxurl,j,function(l){f.find(\".epyt-gallery-list\").html(l);f.find(\".epyt-current\").each(function(){b(this).text(f.data(\"currpage\"))});f.find(\'.epyt-gallery-thumb[data-videoid=\"\'+f.data(\"currvid\")+\'\"]\').addClass(\"epyt-current-video\");if(f.find(\".epyt-pagebutton\").first().data(\"autonext\")==\"1\"&&!g){f.find(\".epyt-gallery-thumb\").first().trigger(\"click\")}}).fail(function(){alert(\"Sorry, there was an error loading the next page.\")}).always(function(){f.find(\".epyt-gallery-list\").removeClass(\"epyt-loading\");if(f.find(\".epyt-pagebutton\").first().data(\"autonext\")!=\"1\"){var l=Math.max(b(\"body\").scrollTop(),b(\"html\").scrollTop());var m=f.find(\".epyt-gallery-list\").offset().top-parseInt(_EPYT_.gallery_scrolloffset);if(l>m){b(\"html, body\").animate({scrollTop:m},500)}}})}}).on(\"touchmove\",function(g){a._EPYT_.touchmoved=!0}).on(\"touchstart\",function(){a._EPYT_.touchmoved=!1})}});b(\".__youtube_prefs_gdpr__.epyt-is-override\").each(function(){b(this).parent(\".wp-block-embed__wrapper\").addClass(\"epyt-is-override__wrapper\")});b(\"button.__youtube_prefs_gdpr__\").on(\"click\",function(c){c.preventDefault();if(b.cookie){b.cookie(\"ytprefs_gdpr_consent\",\"1\",{expires:30,path:\"/\"});a.top.location.reload()}});b(\"img.epyt-facade-poster\").one(\"load\",function(){if(this.naturalHeight<200){var c=b(this).attr(\"src\");b(this).attr(\"src\",c.replace(\"maxresdefault\",\"hqdefault\"))}}).each(function(){if(this.complete){b(this).trigger(\"load\")}});b(\".epyt-facade-poster[data-facadeoembed]\").each(function(){var c=b(this);var d=\"https://www.youtube.com/\"+c.data(\"facadeoembed\");b.get(\"https://youtube.com/oembed\",{url:d,format:\"json\"},function(e){c.attr(\"src\",e.thumbnail_url)},\"json\").fail(function(){}).always(function(){})});b(\".epyt-facade\").on(\"click\",function(j){var h=b(this);var d=h.attr(\"data-facadesrc\");d=a._EPADashboard_.cleanSrc(d);var f=document.createElement(\"iframe\");for(var c=0;c=0||g.name.toLowerCase().indexOf(\"data-\")==0){b(f).attr(g.name,g.value)}}b(f).removeClass(\"epyt-facade\");b(f).attr(\"allowfullscreen\",\"\").attr(\"title\",h.find(\"img\").attr(\"alt\")).attr(\"allow\",\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\");a._EPADashboard_.loadYTAPI();h.replaceWith(f);b(f).attr(\"src\",d);a._EPADashboard_.setupevents(b(f).attr(\"id\"));setTimeout(function(){b(b(f).parent()).fitVidsEP()},1)})}}}a.onYouTubeIframeAPIReady=typeof a.onYouTubeIframeAPIReady!==\"undefined\"?a.onYouTubeIframeAPIReady:function(){if(a._EPYT_.pageLoaded){a._EPADashboard_.apiInit();a._EPADashboard_.log(\"YT API ready\")}else{b(a).on(\"load._EPYT_\",function(){a._EPADashboard_.apiInit();a._EPADashboard_.log(\"YT API ready 2\")})}};a._EPADashboard_.loadYTAPI();if(a._EPYT_.pageLoaded){a._EPADashboard_.doubleCheck()}else{b(a).on(\"load._EPYT_\",function(){a._EPADashboard_.doubleCheck()})}b(document).ready(function(){a._EPADashboard_.pageReady();a._EPADashboard_.loadYTAPI();if(a._EPYT_.ajax_compat){b(a).on(\"load._EPYT_\",function(){b(document).ajaxSuccess(function(d,f,c){if(f&&f.responseText&&f.responseText.indexOf(\"